test-zig-cc

Unnamed repository; edit this file 'description' to name the repository.
Log | Tree | Refs | README | LICENSE

commit d0cdfd013e5f2d1d8028ea45945fe4c4ee84c171 (tree)
parent a6083e555cb6dbe43c616126fb52d5d0565a14ab
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date:   Sun, 11 Dec 2022 20:54:28 +0200

profiling results

Diffstat:
MWORKSPACE | 4++--
Aresults/llvm-hermetic-j1.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aresults/llvm-hermetic-j8.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Dresults/llvm-j1-hermetic.svg | 492-------------------------------------------------------------------------------
Aresults/llvm-j1.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aresults/llvm-j8.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Dresults/llvm-nosandbox-j1.svg | 492-------------------------------------------------------------------------------
Aresults/llvm-sysroot-hermetic-j1.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aresults/llvm-sysroot-hermetic-j8.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aresults/llvm-sysroot-j1.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aresults/llvm-sysroot-j8.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aresults/profile.log | 923+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aresults/profile.sh | 30++++++++++++++++++++++++++++++
Dresults/profiling.txt | 1-
Aresults/zigcc-hermetic-j1.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aresults/zigcc-hermetic-j8.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Mresults/zigcc-j1.svg | 6+++---
Aresults/zigcc-j8.svg | 492+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Dresults/zigcc-nonhermetic-j1.svg | 492-------------------------------------------------------------------------------
Dresults/zigcc-nosandbox-j1.svg | 492-------------------------------------------------------------------------------
20 files changed, 6370 insertions(+), 1974 deletions(-)

diff --git a/WORKSPACE b/WORKSPACE @@ -59,11 +59,11 @@ load("@llvm_toolchain_with_sysroot//:toolchains.bzl", "llvm_register_toolchains" ### ZIG -BAZEL_ZIG_CC_VERSION = "70ef4dd54e8caafbc5ba93808d6cfe16d6c75290" +BAZEL_ZIG_CC_VERSION = "1fb93e089c4e2cfa52ac92f8dae4635c82df6d0a" http_archive( name = "bazel-zig-cc", - sha256 = "128cb23d433d7b6aa8ddb44a8c295eaff7f9f6742f8b582abff7631f8a977390", + sha256 = "5ab6451124cad1204558f02c9f88d9642abaf71bb2b1768498dfe6544ea8f653", strip_prefix = "bazel-zig-cc-{}".format(BAZEL_ZIG_CC_VERSION), urls = [ "https://git.sr.ht/~motiejus/bazel-zig-cc/archive/{}.tar.gz".format(BAZEL_ZIG_CC_VERSION), diff --git a/results/llvm-hermetic-j1.svg b/results/llvm-hermetic-j1.svg @@ -0,0 +1,491 @@ +<?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="1078" onload="init(evt)" viewBox="0 0 1200 1078" 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="1078" 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="1061.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="1061.00"> </text><svg id="frames" x="10" width="1180" total_samples="150258"><g><title>[perf-943567.map] (25 samples, 0.02%)</title><rect x="0.0007%" y="997" width="0.0166%" height="15" fill="rgb(227,0,7)" fg:x="1" fg:w="25"/><text x="0.2507%" y="1007.50"></text></g><g><title>ActionLookupVal (49 samples, 0.03%)</title><rect x="0.0000%" y="1013" width="0.0326%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="49"/><text x="0.2500%" y="1023.50"></text></g><g><title>__GI___clone (23 samples, 0.02%)</title><rect x="0.0173%" y="997" width="0.0153%" height="15" fill="rgb(221,193,54)" fg:x="26" fg:w="23"/><text x="0.2673%" y="1007.50"></text></g><g><title>start_thread (23 samples, 0.02%)</title><rect x="0.0173%" y="981" width="0.0153%" height="15" fill="rgb(248,212,6)" fg:x="26" fg:w="23"/><text x="0.2673%" y="991.50"></text></g><g><title>thread_native_entry (20 samples, 0.01%)</title><rect x="0.0193%" y="965" width="0.0133%" height="15" fill="rgb(208,68,35)" fg:x="29" fg:w="20"/><text x="0.2693%" y="975.50"></text></g><g><title>Thread::call_run (20 samples, 0.01%)</title><rect x="0.0193%" y="949" width="0.0133%" height="15" fill="rgb(232,128,0)" fg:x="29" fg:w="20"/><text x="0.2693%" y="959.50"></text></g><g><title>JavaThread::thread_main_inner (20 samples, 0.01%)</title><rect x="0.0193%" y="933" width="0.0133%" height="15" fill="rgb(207,160,47)" fg:x="29" fg:w="20"/><text x="0.2693%" y="943.50"></text></g><g><title>ThreadsSMRSupport::smr_delete (16 samples, 0.01%)</title><rect x="0.0220%" y="917" width="0.0106%" height="15" fill="rgb(228,23,34)" fg:x="33" fg:w="16"/><text x="0.2720%" y="927.50"></text></g><g><title>_dl_update_slotinfo (110 samples, 0.07%)</title><rect x="0.5890%" y="981" width="0.0732%" height="15" fill="rgb(218,30,26)" fg:x="885" fg:w="110"/><text x="0.8390%" y="991.50"></text></g><g><title>resource_allocate_bytes (19 samples, 0.01%)</title><rect x="0.7374%" y="981" width="0.0126%" height="15" fill="rgb(220,122,19)" fg:x="1108" fg:w="19"/><text x="0.9874%" y="991.50"></text></g><g><title>update_get_addr (30 samples, 0.02%)</title><rect x="0.7607%" y="981" width="0.0200%" height="15" fill="rgb(250,228,42)" fg:x="1143" fg:w="30"/><text x="1.0107%" y="991.50"></text></g><g><title>[anon] (1,081 samples, 0.72%)</title><rect x="0.0632%" y="997" width="0.7194%" height="15" fill="rgb(240,193,28)" fg:x="95" fg:w="1081"/><text x="0.3132%" y="1007.50"></text></g><g><title>[perf-943567.map] (137 samples, 0.09%)</title><rect x="0.7873%" y="997" width="0.0912%" height="15" fill="rgb(216,20,37)" fg:x="1183" fg:w="137"/><text x="1.0373%" y="1007.50"></text></g><g><title>_dl_update_slotinfo (21 samples, 0.01%)</title><rect x="0.9151%" y="981" width="0.0140%" height="15" fill="rgb(206,188,39)" fg:x="1375" fg:w="21"/><text x="1.1651%" y="991.50"></text></g><g><title>[unknown] (91 samples, 0.06%)</title><rect x="0.8785%" y="997" width="0.0606%" height="15" fill="rgb(217,207,13)" fg:x="1320" fg:w="91"/><text x="1.1285%" y="1007.50"></text></g><g><title>CompileBroker::collect_statistics (17 samples, 0.01%)</title><rect x="0.9710%" y="885" width="0.0113%" height="15" fill="rgb(231,73,38)" fg:x="1459" fg:w="17"/><text x="1.2210%" y="895.50"></text></g><g><title>jio_vsnprintf (39 samples, 0.03%)</title><rect x="0.9870%" y="853" width="0.0260%" height="15" fill="rgb(225,20,46)" fg:x="1483" fg:w="39"/><text x="1.2370%" y="863.50"></text></g><g><title>os::vsnprintf (38 samples, 0.03%)</title><rect x="0.9876%" y="837" width="0.0253%" height="15" fill="rgb(210,31,41)" fg:x="1484" fg:w="38"/><text x="1.2376%" y="847.50"></text></g><g><title>__vsnprintf_internal (37 samples, 0.02%)</title><rect x="0.9883%" y="821" width="0.0246%" height="15" fill="rgb(221,200,47)" fg:x="1485" fg:w="37"/><text x="1.2383%" y="831.50"></text></g><g><title>__vfprintf_internal (35 samples, 0.02%)</title><rect x="0.9896%" y="805" width="0.0233%" height="15" fill="rgb(226,26,5)" fg:x="1487" fg:w="35"/><text x="1.2396%" y="815.50"></text></g><g><title>CompileBroker::post_compile (48 samples, 0.03%)</title><rect x="0.9823%" y="885" width="0.0319%" height="15" fill="rgb(249,33,26)" fg:x="1476" fg:w="48"/><text x="1.2323%" y="895.50"></text></g><g><title>StringEventLog::log (46 samples, 0.03%)</title><rect x="0.9836%" y="869" width="0.0306%" height="15" fill="rgb(235,183,28)" fg:x="1478" fg:w="46"/><text x="1.2336%" y="879.50"></text></g><g><title>CompileBroker::set_last_compile (17 samples, 0.01%)</title><rect x="1.0143%" y="885" width="0.0113%" height="15" fill="rgb(221,5,38)" fg:x="1524" fg:w="17"/><text x="1.2643%" y="895.50"></text></g><g><title>Symbol::print_symbol_on (30 samples, 0.02%)</title><rect x="1.0342%" y="853" width="0.0200%" height="15" fill="rgb(247,18,42)" fg:x="1554" fg:w="30"/><text x="1.2842%" y="863.50"></text></g><g><title>Method::print_short_name (55 samples, 0.04%)</title><rect x="1.0276%" y="869" width="0.0366%" height="15" fill="rgb(241,131,45)" fg:x="1544" fg:w="55"/><text x="1.2776%" y="879.50"></text></g><g><title>os::vsnprintf (22 samples, 0.01%)</title><rect x="1.0722%" y="837" width="0.0146%" height="15" fill="rgb(249,31,29)" fg:x="1611" fg:w="22"/><text x="1.3222%" y="847.50"></text></g><g><title>__vsnprintf_internal (22 samples, 0.01%)</title><rect x="1.0722%" y="821" width="0.0146%" height="15" fill="rgb(225,111,53)" fg:x="1611" fg:w="22"/><text x="1.3222%" y="831.50"></text></g><g><title>__vfprintf_internal (21 samples, 0.01%)</title><rect x="1.0728%" y="805" width="0.0140%" height="15" fill="rgb(238,160,17)" fg:x="1612" fg:w="21"/><text x="1.3228%" y="815.50"></text></g><g><title>CompileTask::print (100 samples, 0.07%)</title><rect x="1.0256%" y="885" width="0.0666%" height="15" fill="rgb(214,148,48)" fg:x="1541" fg:w="100"/><text x="1.2756%" y="895.50"></text></g><g><title>outputStream::print (42 samples, 0.03%)</title><rect x="1.0642%" y="869" width="0.0280%" height="15" fill="rgb(232,36,49)" fg:x="1599" fg:w="42"/><text x="1.3142%" y="879.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (42 samples, 0.03%)</title><rect x="1.0642%" y="853" width="0.0280%" height="15" fill="rgb(209,103,24)" fg:x="1599" fg:w="42"/><text x="1.3142%" y="863.50"></text></g><g><title>BlockBegin::iterate_preorder (21 samples, 0.01%)</title><rect x="1.1680%" y="709" width="0.0140%" height="15" fill="rgb(229,88,8)" fg:x="1755" fg:w="21"/><text x="1.4180%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (31 samples, 0.02%)</title><rect x="1.1660%" y="725" width="0.0206%" height="15" fill="rgb(213,181,19)" fg:x="1752" fg:w="31"/><text x="1.4160%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (60 samples, 0.04%)</title><rect x="1.1647%" y="741" width="0.0399%" height="15" fill="rgb(254,191,54)" fg:x="1750" fg:w="60"/><text x="1.4147%" y="751.50"></text></g><g><title>SubstitutionResolver::block_do (27 samples, 0.02%)</title><rect x="1.1866%" y="725" width="0.0180%" height="15" fill="rgb(241,83,37)" fg:x="1783" fg:w="27"/><text x="1.4366%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (104 samples, 0.07%)</title><rect x="1.1607%" y="757" width="0.0692%" height="15" fill="rgb(233,36,39)" fg:x="1744" fg:w="104"/><text x="1.4107%" y="767.50"></text></g><g><title>SubstitutionResolver::block_do (38 samples, 0.03%)</title><rect x="1.2046%" y="741" width="0.0253%" height="15" fill="rgb(226,3,54)" fg:x="1810" fg:w="38"/><text x="1.4546%" y="751.50"></text></g><g><title>BlockBegin::iterate_preorder (158 samples, 0.11%)</title><rect x="1.1560%" y="773" width="0.1052%" height="15" fill="rgb(245,192,40)" fg:x="1737" fg:w="158"/><text x="1.4060%" y="783.50"></text></g><g><title>SubstitutionResolver::block_do (47 samples, 0.03%)</title><rect x="1.2299%" y="757" width="0.0313%" height="15" fill="rgb(238,167,29)" fg:x="1848" fg:w="47"/><text x="1.4799%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (165 samples, 0.11%)</title><rect x="1.1527%" y="789" width="0.1098%" height="15" fill="rgb(232,182,51)" fg:x="1732" fg:w="165"/><text x="1.4027%" y="799.50"></text></g><g><title>ValueMap::ValueMap (23 samples, 0.02%)</title><rect x="1.2645%" y="789" width="0.0153%" height="15" fill="rgb(231,60,39)" fg:x="1900" fg:w="23"/><text x="1.5145%" y="799.50"></text></g><g><title>ValueMap::find_insert (38 samples, 0.03%)</title><rect x="1.2798%" y="789" width="0.0253%" height="15" fill="rgb(208,69,12)" fg:x="1923" fg:w="38"/><text x="1.5298%" y="799.50"></text></g><g><title>ValueMap::kill_memory (22 samples, 0.01%)</title><rect x="1.3104%" y="789" width="0.0146%" height="15" fill="rgb(235,93,37)" fg:x="1969" fg:w="22"/><text x="1.5604%" y="799.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (319 samples, 0.21%)</title><rect x="1.1167%" y="805" width="0.2123%" height="15" fill="rgb(213,116,39)" fg:x="1678" fg:w="319"/><text x="1.3667%" y="815.50"></text></g><g><title>BlockBegin::iterate_preorder (23 samples, 0.02%)</title><rect x="1.3450%" y="693" width="0.0153%" height="15" fill="rgb(222,207,29)" fg:x="2021" fg:w="23"/><text x="1.5950%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (32 samples, 0.02%)</title><rect x="1.3444%" y="709" width="0.0213%" height="15" fill="rgb(206,96,30)" fg:x="2020" fg:w="32"/><text x="1.5944%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (48 samples, 0.03%)</title><rect x="1.3424%" y="725" width="0.0319%" height="15" fill="rgb(218,138,4)" fg:x="2017" fg:w="48"/><text x="1.5924%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (66 samples, 0.04%)</title><rect x="1.3397%" y="741" width="0.0439%" height="15" fill="rgb(250,191,14)" fg:x="2013" fg:w="66"/><text x="1.5897%" y="751.50"></text></g><g><title>BlockBegin::iterate_preorder (82 samples, 0.05%)</title><rect x="1.3344%" y="757" width="0.0546%" height="15" fill="rgb(239,60,40)" fg:x="2005" fg:w="82"/><text x="1.5844%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (87 samples, 0.06%)</title><rect x="1.3330%" y="773" width="0.0579%" height="15" fill="rgb(206,27,48)" fg:x="2003" fg:w="87"/><text x="1.5830%" y="783.50"></text></g><g><title>BlockListBuilder::make_block_at (17 samples, 0.01%)</title><rect x="1.4182%" y="741" width="0.0113%" height="15" fill="rgb(225,35,8)" fg:x="2131" fg:w="17"/><text x="1.6682%" y="751.50"></text></g><g><title>ciMethod::get_method_blocks (23 samples, 0.02%)</title><rect x="1.4728%" y="693" width="0.0153%" height="15" fill="rgb(250,213,24)" fg:x="2213" fg:w="23"/><text x="1.7228%" y="703.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (23 samples, 0.02%)</title><rect x="1.4728%" y="677" width="0.0153%" height="15" fill="rgb(247,123,22)" fg:x="2213" fg:w="23"/><text x="1.7228%" y="687.50"></text></g><g><title>ciMethodBlocks::do_analysis (19 samples, 0.01%)</title><rect x="1.4755%" y="661" width="0.0126%" height="15" fill="rgb(231,138,38)" fg:x="2217" fg:w="19"/><text x="1.7255%" y="671.50"></text></g><g><title>MethodLiveness::init_basic_blocks (52 samples, 0.03%)</title><rect x="1.4542%" y="709" width="0.0346%" height="15" fill="rgb(231,145,46)" fg:x="2185" fg:w="52"/><text x="1.7042%" y="719.50"></text></g><g><title>BlockListBuilder::set_leaders (126 samples, 0.08%)</title><rect x="1.4062%" y="757" width="0.0839%" height="15" fill="rgb(251,118,11)" fg:x="2113" fg:w="126"/><text x="1.6562%" y="767.50"></text></g><g><title>ciMethod::bci_block_start (90 samples, 0.06%)</title><rect x="1.4302%" y="741" width="0.0599%" height="15" fill="rgb(217,147,25)" fg:x="2149" fg:w="90"/><text x="1.6802%" y="751.50"></text></g><g><title>MethodLiveness::compute_liveness (88 samples, 0.06%)</title><rect x="1.4315%" y="725" width="0.0586%" height="15" fill="rgb(247,81,37)" fg:x="2151" fg:w="88"/><text x="1.6815%" y="735.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (141 samples, 0.09%)</title><rect x="1.3976%" y="773" width="0.0938%" height="15" fill="rgb(209,12,38)" fg:x="2100" fg:w="141"/><text x="1.6476%" y="783.50"></text></g><g><title>ValueStack::ValueStack (19 samples, 0.01%)</title><rect x="1.5034%" y="741" width="0.0126%" height="15" fill="rgb(227,1,9)" fg:x="2259" fg:w="19"/><text x="1.7534%" y="751.50"></text></g><g><title>GraphBuilder::connect_to_end (26 samples, 0.02%)</title><rect x="1.4994%" y="757" width="0.0173%" height="15" fill="rgb(248,47,43)" fg:x="2253" fg:w="26"/><text x="1.7494%" y="767.50"></text></g><g><title>ValueStack::ValueStack (19 samples, 0.01%)</title><rect x="1.5433%" y="725" width="0.0126%" height="15" fill="rgb(221,10,30)" fg:x="2319" fg:w="19"/><text x="1.7933%" y="735.50"></text></g><g><title>BlockBegin::try_merge (41 samples, 0.03%)</title><rect x="1.5374%" y="741" width="0.0273%" height="15" fill="rgb(210,229,1)" fg:x="2310" fg:w="41"/><text x="1.7874%" y="751.50"></text></g><g><title>SymbolTable::lookup (20 samples, 0.01%)</title><rect x="1.6292%" y="645" width="0.0133%" height="15" fill="rgb(222,148,37)" fg:x="2448" fg:w="20"/><text x="1.8792%" y="655.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (20 samples, 0.01%)</title><rect x="1.6445%" y="645" width="0.0133%" height="15" fill="rgb(234,67,33)" fg:x="2471" fg:w="20"/><text x="1.8945%" y="655.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (57 samples, 0.04%)</title><rect x="1.6265%" y="661" width="0.0379%" height="15" fill="rgb(247,98,35)" fg:x="2444" fg:w="57"/><text x="1.8765%" y="671.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (65 samples, 0.04%)</title><rect x="1.6252%" y="677" width="0.0433%" height="15" fill="rgb(247,138,52)" fg:x="2442" fg:w="65"/><text x="1.8752%" y="687.50"></text></g><g><title>ciField::ciField (110 samples, 0.07%)</title><rect x="1.6079%" y="693" width="0.0732%" height="15" fill="rgb(213,79,30)" fg:x="2416" fg:w="110"/><text x="1.8579%" y="703.50"></text></g><g><title>ciEnv::get_field_by_index (120 samples, 0.08%)</title><rect x="1.6032%" y="709" width="0.0799%" height="15" fill="rgb(246,177,23)" fg:x="2409" fg:w="120"/><text x="1.8532%" y="719.50"></text></g><g><title>ciBytecodeStream::get_field (138 samples, 0.09%)</title><rect x="1.6032%" y="725" width="0.0918%" height="15" fill="rgb(230,62,27)" fg:x="2409" fg:w="138"/><text x="1.8532%" y="735.50"></text></g><g><title>ciField::will_link (18 samples, 0.01%)</title><rect x="1.6831%" y="709" width="0.0120%" height="15" fill="rgb(216,154,8)" fg:x="2529" fg:w="18"/><text x="1.9331%" y="719.50"></text></g><g><title>GraphBuilder::access_field (196 samples, 0.13%)</title><rect x="1.5720%" y="741" width="0.1304%" height="15" fill="rgb(244,35,45)" fg:x="2362" fg:w="196"/><text x="1.8220%" y="751.50"></text></g><g><title>GraphBuilder::if_node (23 samples, 0.02%)</title><rect x="1.7210%" y="741" width="0.0153%" height="15" fill="rgb(251,115,12)" fg:x="2586" fg:w="23"/><text x="1.9710%" y="751.50"></text></g><g><title>GraphBuilder::append_with_bci (20 samples, 0.01%)</title><rect x="1.7656%" y="725" width="0.0133%" height="15" fill="rgb(240,54,50)" fg:x="2653" fg:w="20"/><text x="2.0156%" y="735.50"></text></g><g><title>GraphBuilder::args_list_for_profiling (18 samples, 0.01%)</title><rect x="1.8222%" y="693" width="0.0120%" height="15" fill="rgb(233,84,52)" fg:x="2738" fg:w="18"/><text x="2.0722%" y="703.50"></text></g><g><title>ValueStack::ValueStack (18 samples, 0.01%)</title><rect x="1.8635%" y="645" width="0.0120%" height="15" fill="rgb(207,117,47)" fg:x="2800" fg:w="18"/><text x="2.1135%" y="655.50"></text></g><g><title>BlockBegin::try_merge (47 samples, 0.03%)</title><rect x="1.8575%" y="661" width="0.0313%" height="15" fill="rgb(249,43,39)" fg:x="2791" fg:w="47"/><text x="2.1075%" y="671.50"></text></g><g><title>ciMethod::liveness_at_bci (19 samples, 0.01%)</title><rect x="1.8761%" y="645" width="0.0126%" height="15" fill="rgb(209,38,44)" fg:x="2819" fg:w="19"/><text x="2.1261%" y="655.50"></text></g><g><title>MethodLiveness::get_liveness_at (18 samples, 0.01%)</title><rect x="1.8768%" y="629" width="0.0120%" height="15" fill="rgb(236,212,23)" fg:x="2820" fg:w="18"/><text x="2.1268%" y="639.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (36 samples, 0.02%)</title><rect x="1.9280%" y="581" width="0.0240%" height="15" fill="rgb(242,79,21)" fg:x="2897" fg:w="36"/><text x="2.1780%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (48 samples, 0.03%)</title><rect x="1.9227%" y="597" width="0.0319%" height="15" fill="rgb(211,96,35)" fg:x="2889" fg:w="48"/><text x="2.1727%" y="607.50"></text></g><g><title>ciField::ciField (74 samples, 0.05%)</title><rect x="1.9140%" y="613" width="0.0492%" height="15" fill="rgb(253,215,40)" fg:x="2876" fg:w="74"/><text x="2.1640%" y="623.50"></text></g><g><title>ciEnv::get_field_by_index (83 samples, 0.06%)</title><rect x="1.9107%" y="629" width="0.0552%" height="15" fill="rgb(211,81,21)" fg:x="2871" fg:w="83"/><text x="2.1607%" y="639.50"></text></g><g><title>ciBytecodeStream::get_field (100 samples, 0.07%)</title><rect x="1.9094%" y="645" width="0.0666%" height="15" fill="rgb(208,190,38)" fg:x="2869" fg:w="100"/><text x="2.1594%" y="655.50"></text></g><g><title>GraphBuilder::access_field (131 samples, 0.09%)</title><rect x="1.8941%" y="661" width="0.0872%" height="15" fill="rgb(235,213,38)" fg:x="2846" fg:w="131"/><text x="2.1441%" y="671.50"></text></g><g><title>BlockBegin::try_merge (22 samples, 0.01%)</title><rect x="2.0578%" y="581" width="0.0146%" height="15" fill="rgb(237,122,38)" fg:x="3092" fg:w="22"/><text x="2.3078%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (17 samples, 0.01%)</title><rect x="2.0897%" y="501" width="0.0113%" height="15" fill="rgb(244,218,35)" fg:x="3140" fg:w="17"/><text x="2.3397%" y="511.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (20 samples, 0.01%)</title><rect x="2.0884%" y="517" width="0.0133%" height="15" fill="rgb(240,68,47)" fg:x="3138" fg:w="20"/><text x="2.3384%" y="527.50"></text></g><g><title>ciField::ciField (35 samples, 0.02%)</title><rect x="2.0844%" y="533" width="0.0233%" height="15" fill="rgb(210,16,53)" fg:x="3132" fg:w="35"/><text x="2.3344%" y="543.50"></text></g><g><title>ciEnv::get_field_by_index (37 samples, 0.02%)</title><rect x="2.0837%" y="549" width="0.0246%" height="15" fill="rgb(235,124,12)" fg:x="3131" fg:w="37"/><text x="2.3337%" y="559.50"></text></g><g><title>ciBytecodeStream::get_field (49 samples, 0.03%)</title><rect x="2.0837%" y="565" width="0.0326%" height="15" fill="rgb(224,169,11)" fg:x="3131" fg:w="49"/><text x="2.3337%" y="575.50"></text></g><g><title>GraphBuilder::access_field (68 samples, 0.05%)</title><rect x="2.0751%" y="581" width="0.0453%" height="15" fill="rgb(250,166,2)" fg:x="3118" fg:w="68"/><text x="2.3251%" y="591.50"></text></g><g><title>GraphBuilder::access_field (32 samples, 0.02%)</title><rect x="2.1689%" y="501" width="0.0213%" height="15" fill="rgb(242,216,29)" fg:x="3259" fg:w="32"/><text x="2.4189%" y="511.50"></text></g><g><title>GraphBuilder::invoke (18 samples, 0.01%)</title><rect x="2.2302%" y="341" width="0.0120%" height="15" fill="rgb(230,116,27)" fg:x="3351" fg:w="18"/><text x="2.4802%" y="351.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (22 samples, 0.01%)</title><rect x="2.2288%" y="373" width="0.0146%" height="15" fill="rgb(228,99,48)" fg:x="3349" fg:w="22"/><text x="2.4788%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (22 samples, 0.01%)</title><rect x="2.2288%" y="357" width="0.0146%" height="15" fill="rgb(253,11,6)" fg:x="3349" fg:w="22"/><text x="2.4788%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (33 samples, 0.02%)</title><rect x="2.2268%" y="405" width="0.0220%" height="15" fill="rgb(247,143,39)" fg:x="3346" fg:w="33"/><text x="2.4768%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (33 samples, 0.02%)</title><rect x="2.2268%" y="389" width="0.0220%" height="15" fill="rgb(236,97,10)" fg:x="3346" fg:w="33"/><text x="2.4768%" y="399.50"></text></g><g><title>GraphBuilder::invoke (52 samples, 0.03%)</title><rect x="2.2248%" y="421" width="0.0346%" height="15" fill="rgb(233,208,19)" fg:x="3343" fg:w="52"/><text x="2.4748%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (88 samples, 0.06%)</title><rect x="2.2075%" y="453" width="0.0586%" height="15" fill="rgb(216,164,2)" fg:x="3317" fg:w="88"/><text x="2.4575%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (85 samples, 0.06%)</title><rect x="2.2095%" y="437" width="0.0566%" height="15" fill="rgb(220,129,5)" fg:x="3320" fg:w="85"/><text x="2.4595%" y="447.50"></text></g><g><title>GraphBuilder::push_scope (17 samples, 0.01%)</title><rect x="2.2661%" y="453" width="0.0113%" height="15" fill="rgb(242,17,10)" fg:x="3405" fg:w="17"/><text x="2.5161%" y="463.50"></text></g><g><title>GraphBuilder::try_inline_full (123 samples, 0.08%)</title><rect x="2.2042%" y="469" width="0.0819%" height="15" fill="rgb(242,107,0)" fg:x="3312" fg:w="123"/><text x="2.4542%" y="479.50"></text></g><g><title>GraphBuilder::try_inline (133 samples, 0.09%)</title><rect x="2.2029%" y="485" width="0.0885%" height="15" fill="rgb(251,28,31)" fg:x="3310" fg:w="133"/><text x="2.4529%" y="495.50"></text></g><g><title>ciBytecodeStream::get_method (25 samples, 0.02%)</title><rect x="2.2947%" y="485" width="0.0166%" height="15" fill="rgb(233,223,10)" fg:x="3448" fg:w="25"/><text x="2.5447%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (22 samples, 0.01%)</title><rect x="2.2967%" y="469" width="0.0146%" height="15" fill="rgb(215,21,27)" fg:x="3451" fg:w="22"/><text x="2.5467%" y="479.50"></text></g><g><title>GraphBuilder::invoke (180 samples, 0.12%)</title><rect x="2.1969%" y="501" width="0.1198%" height="15" fill="rgb(232,23,21)" fg:x="3301" fg:w="180"/><text x="2.4469%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (261 samples, 0.17%)</title><rect x="2.1550%" y="533" width="0.1737%" height="15" fill="rgb(244,5,23)" fg:x="3238" fg:w="261"/><text x="2.4050%" y="543.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (258 samples, 0.17%)</title><rect x="2.1570%" y="517" width="0.1717%" height="15" fill="rgb(226,81,46)" fg:x="3241" fg:w="258"/><text x="2.4070%" y="527.50"></text></g><g><title>BlockListBuilder::set_leaders (17 samples, 0.01%)</title><rect x="2.3313%" y="501" width="0.0113%" height="15" fill="rgb(247,70,30)" fg:x="3503" fg:w="17"/><text x="2.5813%" y="511.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (22 samples, 0.01%)</title><rect x="2.3300%" y="517" width="0.0146%" height="15" fill="rgb(212,68,19)" fg:x="3501" fg:w="22"/><text x="2.5800%" y="527.50"></text></g><g><title>GraphBuilder::push_scope (37 samples, 0.02%)</title><rect x="2.3300%" y="533" width="0.0246%" height="15" fill="rgb(240,187,13)" fg:x="3501" fg:w="37"/><text x="2.5800%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (20 samples, 0.01%)</title><rect x="2.3579%" y="517" width="0.0133%" height="15" fill="rgb(223,113,26)" fg:x="3543" fg:w="20"/><text x="2.6079%" y="527.50"></text></g><g><title>ciMethod::ensure_method_data (23 samples, 0.02%)</title><rect x="2.3566%" y="533" width="0.0153%" height="15" fill="rgb(206,192,2)" fg:x="3541" fg:w="23"/><text x="2.6066%" y="543.50"></text></g><g><title>GraphBuilder::try_inline_full (333 samples, 0.22%)</title><rect x="2.1510%" y="549" width="0.2216%" height="15" fill="rgb(241,108,4)" fg:x="3232" fg:w="333"/><text x="2.4010%" y="559.50"></text></g><g><title>GraphBuilder::try_inline_full (16 samples, 0.01%)</title><rect x="2.3779%" y="437" width="0.0106%" height="15" fill="rgb(247,173,49)" fg:x="3573" fg:w="16"/><text x="2.6279%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (18 samples, 0.01%)</title><rect x="2.3779%" y="453" width="0.0120%" height="15" fill="rgb(224,114,35)" fg:x="3573" fg:w="18"/><text x="2.6279%" y="463.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (26 samples, 0.02%)</title><rect x="2.3746%" y="501" width="0.0173%" height="15" fill="rgb(245,159,27)" fg:x="3568" fg:w="26"/><text x="2.6246%" y="511.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (25 samples, 0.02%)</title><rect x="2.3752%" y="485" width="0.0166%" height="15" fill="rgb(245,172,44)" fg:x="3569" fg:w="25"/><text x="2.6252%" y="495.50"></text></g><g><title>GraphBuilder::invoke (21 samples, 0.01%)</title><rect x="2.3779%" y="469" width="0.0140%" height="15" fill="rgb(236,23,11)" fg:x="3573" fg:w="21"/><text x="2.6279%" y="479.50"></text></g><g><title>GraphBuilder::try_inline (27 samples, 0.02%)</title><rect x="2.3746%" y="533" width="0.0180%" height="15" fill="rgb(205,117,38)" fg:x="3568" fg:w="27"/><text x="2.6246%" y="543.50"></text></g><g><title>GraphBuilder::try_inline_full (27 samples, 0.02%)</title><rect x="2.3746%" y="517" width="0.0180%" height="15" fill="rgb(237,72,25)" fg:x="3568" fg:w="27"/><text x="2.6246%" y="527.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (28 samples, 0.02%)</title><rect x="2.3746%" y="549" width="0.0186%" height="15" fill="rgb(244,70,9)" fg:x="3568" fg:w="28"/><text x="2.6246%" y="559.50"></text></g><g><title>GraphBuilder::try_inline (368 samples, 0.24%)</title><rect x="2.1490%" y="565" width="0.2449%" height="15" fill="rgb(217,125,39)" fg:x="3229" fg:w="368"/><text x="2.3990%" y="575.50"></text></g><g><title>ciEnv::lookup_method (19 samples, 0.01%)</title><rect x="2.4105%" y="533" width="0.0126%" height="15" fill="rgb(235,36,10)" fg:x="3622" fg:w="19"/><text x="2.6605%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (73 samples, 0.05%)</title><rect x="2.4032%" y="549" width="0.0486%" height="15" fill="rgb(251,123,47)" fg:x="3611" fg:w="73"/><text x="2.6532%" y="559.50"></text></g><g><title>ciObjectFactory::get_metadata (43 samples, 0.03%)</title><rect x="2.4232%" y="533" width="0.0286%" height="15" fill="rgb(221,13,13)" fg:x="3641" fg:w="43"/><text x="2.6732%" y="543.50"></text></g><g><title>ciObjectFactory::create_new_metadata (37 samples, 0.02%)</title><rect x="2.4272%" y="517" width="0.0246%" height="15" fill="rgb(238,131,9)" fg:x="3647" fg:w="37"/><text x="2.6772%" y="527.50"></text></g><g><title>ciMethod::ciMethod (37 samples, 0.02%)</title><rect x="2.4272%" y="501" width="0.0246%" height="15" fill="rgb(211,50,8)" fg:x="3647" fg:w="37"/><text x="2.6772%" y="511.50"></text></g><g><title>ciSignature::ciSignature (26 samples, 0.02%)</title><rect x="2.4345%" y="485" width="0.0173%" height="15" fill="rgb(245,182,24)" fg:x="3658" fg:w="26"/><text x="2.6845%" y="495.50"></text></g><g><title>ciBytecodeStream::get_method (80 samples, 0.05%)</title><rect x="2.3992%" y="565" width="0.0532%" height="15" fill="rgb(242,14,37)" fg:x="3605" fg:w="80"/><text x="2.6492%" y="575.50"></text></g><g><title>GraphBuilder::invoke (485 samples, 0.32%)</title><rect x="2.1403%" y="581" width="0.3228%" height="15" fill="rgb(246,228,12)" fg:x="3216" fg:w="485"/><text x="2.3903%" y="591.50"></text></g><g><title>GraphBuilder::method_return (16 samples, 0.01%)</title><rect x="2.4651%" y="581" width="0.0106%" height="15" fill="rgb(213,55,15)" fg:x="3704" fg:w="16"/><text x="2.7151%" y="591.50"></text></g><g><title>GraphBuilder::new_instance (16 samples, 0.01%)</title><rect x="2.4757%" y="581" width="0.0106%" height="15" fill="rgb(209,9,3)" fg:x="3720" fg:w="16"/><text x="2.7257%" y="591.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (664 samples, 0.44%)</title><rect x="2.0478%" y="597" width="0.4419%" height="15" fill="rgb(230,59,30)" fg:x="3077" fg:w="664"/><text x="2.2978%" y="607.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (668 samples, 0.44%)</title><rect x="2.0458%" y="613" width="0.4446%" height="15" fill="rgb(209,121,21)" fg:x="3074" fg:w="668"/><text x="2.2958%" y="623.50"></text></g><g><title>MethodLiveness::compute_liveness (29 samples, 0.02%)</title><rect x="2.5057%" y="549" width="0.0193%" height="15" fill="rgb(220,109,13)" fg:x="3765" fg:w="29"/><text x="2.7557%" y="559.50"></text></g><g><title>MethodLiveness::init_basic_blocks (20 samples, 0.01%)</title><rect x="2.5117%" y="533" width="0.0133%" height="15" fill="rgb(232,18,1)" fg:x="3774" fg:w="20"/><text x="2.7617%" y="543.50"></text></g><g><title>BlockListBuilder::set_leaders (39 samples, 0.03%)</title><rect x="2.4997%" y="581" width="0.0260%" height="15" fill="rgb(215,41,42)" fg:x="3756" fg:w="39"/><text x="2.7497%" y="591.50"></text></g><g><title>ciMethod::bci_block_start (30 samples, 0.02%)</title><rect x="2.5057%" y="565" width="0.0200%" height="15" fill="rgb(224,123,36)" fg:x="3765" fg:w="30"/><text x="2.7557%" y="575.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (51 samples, 0.03%)</title><rect x="2.4937%" y="597" width="0.0339%" height="15" fill="rgb(240,125,3)" fg:x="3747" fg:w="51"/><text x="2.7437%" y="607.50"></text></g><g><title>GraphBuilder::push_scope (70 samples, 0.05%)</title><rect x="2.4917%" y="613" width="0.0466%" height="15" fill="rgb(205,98,50)" fg:x="3744" fg:w="70"/><text x="2.7417%" y="623.50"></text></g><g><title>Method::build_interpreter_method_data (17 samples, 0.01%)</title><rect x="2.5483%" y="581" width="0.0113%" height="15" fill="rgb(205,185,37)" fg:x="3829" fg:w="17"/><text x="2.7983%" y="591.50"></text></g><g><title>MethodData::allocate (16 samples, 0.01%)</title><rect x="2.5489%" y="565" width="0.0106%" height="15" fill="rgb(238,207,15)" fg:x="3830" fg:w="16"/><text x="2.7989%" y="575.50"></text></g><g><title>ciMethodData::load_data (33 samples, 0.02%)</title><rect x="2.5596%" y="581" width="0.0220%" height="15" fill="rgb(213,199,42)" fg:x="3846" fg:w="33"/><text x="2.8096%" y="591.50"></text></g><g><title>ciMethod::ensure_method_data (68 samples, 0.05%)</title><rect x="2.5456%" y="613" width="0.0453%" height="15" fill="rgb(235,201,11)" fg:x="3825" fg:w="68"/><text x="2.7956%" y="623.50"></text></g><g><title>ciMethod::ensure_method_data (66 samples, 0.04%)</title><rect x="2.5470%" y="597" width="0.0439%" height="15" fill="rgb(207,46,11)" fg:x="3827" fg:w="66"/><text x="2.7970%" y="607.50"></text></g><g><title>GraphBuilder::try_inline_full (843 samples, 0.56%)</title><rect x="2.0325%" y="629" width="0.5610%" height="15" fill="rgb(241,35,35)" fg:x="3054" fg:w="843"/><text x="2.2825%" y="639.50"></text></g><g><title>GraphBuilder::try_inline (21 samples, 0.01%)</title><rect x="2.5995%" y="533" width="0.0140%" height="15" fill="rgb(243,32,47)" fg:x="3906" fg:w="21"/><text x="2.8495%" y="543.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (26 samples, 0.02%)</title><rect x="2.5969%" y="581" width="0.0173%" height="15" fill="rgb(247,202,23)" fg:x="3902" fg:w="26"/><text x="2.8469%" y="591.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (26 samples, 0.02%)</title><rect x="2.5969%" y="565" width="0.0173%" height="15" fill="rgb(219,102,11)" fg:x="3902" fg:w="26"/><text x="2.8469%" y="575.50"></text></g><g><title>GraphBuilder::invoke (22 samples, 0.01%)</title><rect x="2.5995%" y="549" width="0.0146%" height="15" fill="rgb(243,110,44)" fg:x="3906" fg:w="22"/><text x="2.8495%" y="559.50"></text></g><g><title>GraphBuilder::try_inline (28 samples, 0.02%)</title><rect x="2.5969%" y="613" width="0.0186%" height="15" fill="rgb(222,74,54)" fg:x="3902" fg:w="28"/><text x="2.8469%" y="623.50"></text></g><g><title>GraphBuilder::try_inline_full (28 samples, 0.02%)</title><rect x="2.5969%" y="597" width="0.0186%" height="15" fill="rgb(216,99,12)" fg:x="3902" fg:w="28"/><text x="2.8469%" y="607.50"></text></g><g><title>GraphBuilder::try_inline (889 samples, 0.59%)</title><rect x="2.0272%" y="645" width="0.5916%" height="15" fill="rgb(226,22,26)" fg:x="3046" fg:w="889"/><text x="2.2772%" y="655.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (33 samples, 0.02%)</title><rect x="2.5969%" y="629" width="0.0220%" height="15" fill="rgb(217,163,10)" fg:x="3902" fg:w="33"/><text x="2.8469%" y="639.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (17 samples, 0.01%)</title><rect x="2.6474%" y="597" width="0.0113%" height="15" fill="rgb(213,25,53)" fg:x="3978" fg:w="17"/><text x="2.8974%" y="607.50"></text></g><g><title>LinkResolver::resolve_method (17 samples, 0.01%)</title><rect x="2.6474%" y="581" width="0.0113%" height="15" fill="rgb(252,105,26)" fg:x="3978" fg:w="17"/><text x="2.8974%" y="591.50"></text></g><g><title>ciEnv::lookup_method (43 samples, 0.03%)</title><rect x="2.6474%" y="613" width="0.0286%" height="15" fill="rgb(220,39,43)" fg:x="3978" fg:w="43"/><text x="2.8974%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (23 samples, 0.02%)</title><rect x="2.7093%" y="549" width="0.0153%" height="15" fill="rgb(229,68,48)" fg:x="4071" fg:w="23"/><text x="2.9593%" y="559.50"></text></g><g><title>ciMethod::ciMethod (58 samples, 0.04%)</title><rect x="2.6894%" y="581" width="0.0386%" height="15" fill="rgb(252,8,32)" fg:x="4041" fg:w="58"/><text x="2.9394%" y="591.50"></text></g><g><title>ciSignature::ciSignature (49 samples, 0.03%)</title><rect x="2.6954%" y="565" width="0.0326%" height="15" fill="rgb(223,20,43)" fg:x="4050" fg:w="49"/><text x="2.9454%" y="575.50"></text></g><g><title>ciObjectFactory::get_metadata (81 samples, 0.05%)</title><rect x="2.6761%" y="613" width="0.0539%" height="15" fill="rgb(229,81,49)" fg:x="4021" fg:w="81"/><text x="2.9261%" y="623.50"></text></g><g><title>ciObjectFactory::create_new_metadata (69 samples, 0.05%)</title><rect x="2.6841%" y="597" width="0.0459%" height="15" fill="rgb(236,28,36)" fg:x="4033" fg:w="69"/><text x="2.9341%" y="607.50"></text></g><g><title>ciEnv::get_method_by_index_impl (142 samples, 0.09%)</title><rect x="2.6375%" y="629" width="0.0945%" height="15" fill="rgb(249,185,26)" fg:x="3963" fg:w="142"/><text x="2.8875%" y="639.50"></text></g><g><title>ciBytecodeStream::get_method (150 samples, 0.10%)</title><rect x="2.6328%" y="645" width="0.0998%" height="15" fill="rgb(249,174,33)" fg:x="3956" fg:w="150"/><text x="2.8828%" y="655.50"></text></g><g><title>ciMethod::find_monomorphic_target (16 samples, 0.01%)</title><rect x="2.7400%" y="645" width="0.0106%" height="15" fill="rgb(233,201,37)" fg:x="4117" fg:w="16"/><text x="2.9900%" y="655.50"></text></g><g><title>GraphBuilder::invoke (1,121 samples, 0.75%)</title><rect x="2.0065%" y="661" width="0.7461%" height="15" fill="rgb(221,78,26)" fg:x="3015" fg:w="1121"/><text x="2.2565%" y="671.50"></text></g><g><title>GraphBuilder::method_return (38 samples, 0.03%)</title><rect x="2.7539%" y="661" width="0.0253%" height="15" fill="rgb(250,127,30)" fg:x="4138" fg:w="38"/><text x="3.0039%" y="671.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,434 samples, 0.95%)</title><rect x="1.8348%" y="693" width="0.9544%" height="15" fill="rgb(230,49,44)" fg:x="2757" fg:w="1434"/><text x="2.0848%" y="703.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,427 samples, 0.95%)</title><rect x="1.8395%" y="677" width="0.9497%" height="15" fill="rgb(229,67,23)" fg:x="2764" fg:w="1427"/><text x="2.0895%" y="687.50"></text></g><g><title>MethodLiveness::init_basic_blocks (25 samples, 0.02%)</title><rect x="2.8298%" y="613" width="0.0166%" height="15" fill="rgb(249,83,47)" fg:x="4252" fg:w="25"/><text x="3.0798%" y="623.50"></text></g><g><title>MethodLiveness::compute_liveness (37 samples, 0.02%)</title><rect x="2.8225%" y="629" width="0.0246%" height="15" fill="rgb(215,43,3)" fg:x="4241" fg:w="37"/><text x="3.0725%" y="639.50"></text></g><g><title>BlockListBuilder::set_leaders (61 samples, 0.04%)</title><rect x="2.8072%" y="661" width="0.0406%" height="15" fill="rgb(238,154,13)" fg:x="4218" fg:w="61"/><text x="3.0572%" y="671.50"></text></g><g><title>ciMethod::bci_block_start (39 samples, 0.03%)</title><rect x="2.8218%" y="645" width="0.0260%" height="15" fill="rgb(219,56,2)" fg:x="4240" fg:w="39"/><text x="3.0718%" y="655.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (75 samples, 0.05%)</title><rect x="2.8012%" y="677" width="0.0499%" height="15" fill="rgb(233,0,4)" fg:x="4209" fg:w="75"/><text x="3.0512%" y="687.50"></text></g><g><title>BlockListBuilder::mark_loops (19 samples, 0.01%)</title><rect x="2.8511%" y="677" width="0.0126%" height="15" fill="rgb(235,30,7)" fg:x="4284" fg:w="19"/><text x="3.1011%" y="687.50"></text></g><g><title>GraphBuilder::push_scope (133 samples, 0.09%)</title><rect x="2.7959%" y="693" width="0.0885%" height="15" fill="rgb(250,79,13)" fg:x="4201" fg:w="133"/><text x="3.0459%" y="703.50"></text></g><g><title>MethodData::initialize (27 samples, 0.02%)</title><rect x="2.9143%" y="629" width="0.0180%" height="15" fill="rgb(211,146,34)" fg:x="4379" fg:w="27"/><text x="3.1643%" y="639.50"></text></g><g><title>Method::build_interpreter_method_data (49 samples, 0.03%)</title><rect x="2.9003%" y="661" width="0.0326%" height="15" fill="rgb(228,22,38)" fg:x="4358" fg:w="49"/><text x="3.1503%" y="671.50"></text></g><g><title>MethodData::allocate (49 samples, 0.03%)</title><rect x="2.9003%" y="645" width="0.0326%" height="15" fill="rgb(235,168,5)" fg:x="4358" fg:w="49"/><text x="3.1503%" y="655.50"></text></g><g><title>ciMethodData::load_data (50 samples, 0.03%)</title><rect x="2.9336%" y="661" width="0.0333%" height="15" fill="rgb(221,155,16)" fg:x="4408" fg:w="50"/><text x="3.1836%" y="671.50"></text></g><g><title>ciMethod::ensure_method_data (113 samples, 0.08%)</title><rect x="2.8997%" y="677" width="0.0752%" height="15" fill="rgb(215,215,53)" fg:x="4357" fg:w="113"/><text x="3.1497%" y="687.50"></text></g><g><title>ciMethod::ensure_method_data (120 samples, 0.08%)</title><rect x="2.8957%" y="693" width="0.0799%" height="15" fill="rgb(223,4,10)" fg:x="4351" fg:w="120"/><text x="3.1457%" y="703.50"></text></g><g><title>GraphBuilder::try_inline_full (1,779 samples, 1.18%)</title><rect x="1.7962%" y="709" width="1.1840%" height="15" fill="rgb(234,103,6)" fg:x="2699" fg:w="1779"/><text x="2.0462%" y="719.50"></text></g><g><title>GraphBuilder::try_inline (1,801 samples, 1.20%)</title><rect x="1.7903%" y="725" width="1.1986%" height="15" fill="rgb(227,97,0)" fg:x="2690" fg:w="1801"/><text x="2.0403%" y="735.50"></text></g><g><title>ciBytecodeStream::get_declared_method_holder (33 samples, 0.02%)</title><rect x="3.0015%" y="725" width="0.0220%" height="15" fill="rgb(234,150,53)" fg:x="4510" fg:w="33"/><text x="3.2515%" y="735.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (19 samples, 0.01%)</title><rect x="3.0394%" y="693" width="0.0126%" height="15" fill="rgb(228,201,54)" fg:x="4567" fg:w="19"/><text x="3.2894%" y="703.50"></text></g><g><title>LinkResolver::resolve_interface_method (16 samples, 0.01%)</title><rect x="3.0534%" y="661" width="0.0106%" height="15" fill="rgb(222,22,37)" fg:x="4588" fg:w="16"/><text x="3.3034%" y="671.50"></text></g><g><title>LinkResolver::linktime_resolve_interface_method_or_null (19 samples, 0.01%)</title><rect x="3.0521%" y="677" width="0.0126%" height="15" fill="rgb(237,53,32)" fg:x="4586" fg:w="19"/><text x="3.3021%" y="687.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (23 samples, 0.02%)</title><rect x="3.0727%" y="645" width="0.0153%" height="15" fill="rgb(233,25,53)" fg:x="4617" fg:w="23"/><text x="3.3227%" y="655.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (20 samples, 0.01%)</title><rect x="3.0747%" y="629" width="0.0133%" height="15" fill="rgb(210,40,34)" fg:x="4620" fg:w="20"/><text x="3.3247%" y="639.50"></text></g><g><title>InstanceKlass::find_method_index (19 samples, 0.01%)</title><rect x="3.0754%" y="613" width="0.0126%" height="15" fill="rgb(241,220,44)" fg:x="4621" fg:w="19"/><text x="3.3254%" y="623.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (38 samples, 0.03%)</title><rect x="3.0647%" y="677" width="0.0253%" height="15" fill="rgb(235,28,35)" fg:x="4605" fg:w="38"/><text x="3.3147%" y="687.50"></text></g><g><title>LinkResolver::resolve_method (36 samples, 0.02%)</title><rect x="3.0661%" y="661" width="0.0240%" height="15" fill="rgb(210,56,17)" fg:x="4607" fg:w="36"/><text x="3.3161%" y="671.50"></text></g><g><title>LinkResolver::resolve_static_call_or_null (24 samples, 0.02%)</title><rect x="3.0967%" y="677" width="0.0160%" height="15" fill="rgb(224,130,29)" fg:x="4653" fg:w="24"/><text x="3.3467%" y="687.50"></text></g><g><title>LinkResolver::resolve_static_call (23 samples, 0.02%)</title><rect x="3.0973%" y="661" width="0.0153%" height="15" fill="rgb(235,212,8)" fg:x="4654" fg:w="23"/><text x="3.3473%" y="671.50"></text></g><g><title>LinkResolver::resolve_method (19 samples, 0.01%)</title><rect x="3.1000%" y="645" width="0.0126%" height="15" fill="rgb(223,33,50)" fg:x="4658" fg:w="19"/><text x="3.3500%" y="655.50"></text></g><g><title>ciEnv::lookup_method (93 samples, 0.06%)</title><rect x="3.0521%" y="693" width="0.0619%" height="15" fill="rgb(219,149,13)" fg:x="4586" fg:w="93"/><text x="3.3021%" y="703.50"></text></g><g><title>SignatureStream::as_symbol (28 samples, 0.02%)</title><rect x="3.1566%" y="629" width="0.0186%" height="15" fill="rgb(250,156,29)" fg:x="4743" fg:w="28"/><text x="3.4066%" y="639.50"></text></g><g><title>SymbolTable::lookup (27 samples, 0.02%)</title><rect x="3.1572%" y="613" width="0.0180%" height="15" fill="rgb(216,193,19)" fg:x="4744" fg:w="27"/><text x="3.4072%" y="623.50"></text></g><g><title>Dictionary::find (18 samples, 0.01%)</title><rect x="3.1872%" y="597" width="0.0120%" height="15" fill="rgb(216,135,14)" fg:x="4789" fg:w="18"/><text x="3.4372%" y="607.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (24 samples, 0.02%)</title><rect x="3.1859%" y="613" width="0.0160%" height="15" fill="rgb(241,47,5)" fg:x="4787" fg:w="24"/><text x="3.4359%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (46 samples, 0.03%)</title><rect x="3.1799%" y="629" width="0.0306%" height="15" fill="rgb(233,42,35)" fg:x="4778" fg:w="46"/><text x="3.4299%" y="639.50"></text></g><g><title>ciMethod::ciMethod (131 samples, 0.09%)</title><rect x="3.1306%" y="661" width="0.0872%" height="15" fill="rgb(231,13,6)" fg:x="4704" fg:w="131"/><text x="3.3806%" y="671.50"></text></g><g><title>ciSignature::ciSignature (108 samples, 0.07%)</title><rect x="3.1459%" y="645" width="0.0719%" height="15" fill="rgb(207,181,40)" fg:x="4727" fg:w="108"/><text x="3.3959%" y="655.50"></text></g><g><title>ciObjectFactory::get_metadata (157 samples, 0.10%)</title><rect x="3.1140%" y="693" width="0.1045%" height="15" fill="rgb(254,173,49)" fg:x="4679" fg:w="157"/><text x="3.3640%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (138 samples, 0.09%)</title><rect x="3.1266%" y="677" width="0.0918%" height="15" fill="rgb(221,1,38)" fg:x="4698" fg:w="138"/><text x="3.3766%" y="687.50"></text></g><g><title>ciEnv::get_method_by_index_impl (286 samples, 0.19%)</title><rect x="3.0328%" y="709" width="0.1903%" height="15" fill="rgb(206,124,46)" fg:x="4557" fg:w="286"/><text x="3.2828%" y="719.50"></text></g><g><title>ciBytecodeStream::get_method (301 samples, 0.20%)</title><rect x="3.0235%" y="725" width="0.2003%" height="15" fill="rgb(249,21,11)" fg:x="4543" fg:w="301"/><text x="3.2735%" y="735.50"></text></g><g><title>InstanceKlass::find_instance_method (19 samples, 0.01%)</title><rect x="3.2384%" y="661" width="0.0126%" height="15" fill="rgb(222,201,40)" fg:x="4866" fg:w="19"/><text x="3.4884%" y="671.50"></text></g><g><title>InstanceKlass::find_method_index (19 samples, 0.01%)</title><rect x="3.2384%" y="645" width="0.0126%" height="15" fill="rgb(235,61,29)" fg:x="4866" fg:w="19"/><text x="3.4884%" y="655.50"></text></g><g><title>Dependencies::find_unique_concrete_method (24 samples, 0.02%)</title><rect x="3.2358%" y="709" width="0.0160%" height="15" fill="rgb(219,207,3)" fg:x="4862" fg:w="24"/><text x="3.4858%" y="719.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (23 samples, 0.02%)</title><rect x="3.2364%" y="693" width="0.0153%" height="15" fill="rgb(222,56,46)" fg:x="4863" fg:w="23"/><text x="3.4864%" y="703.50"></text></g><g><title>ClassHierarchyWalker::is_witness (23 samples, 0.02%)</title><rect x="3.2364%" y="677" width="0.0153%" height="15" fill="rgb(239,76,54)" fg:x="4863" fg:w="23"/><text x="3.4864%" y="687.50"></text></g><g><title>ciMethod::find_monomorphic_target (35 samples, 0.02%)</title><rect x="3.2358%" y="725" width="0.0233%" height="15" fill="rgb(231,124,27)" fg:x="4862" fg:w="35"/><text x="3.4858%" y="735.50"></text></g><g><title>GraphBuilder::invoke (2,280 samples, 1.52%)</title><rect x="1.7457%" y="741" width="1.5174%" height="15" fill="rgb(249,195,6)" fg:x="2623" fg:w="2280"/><text x="1.9957%" y="751.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,681 samples, 1.78%)</title><rect x="1.5167%" y="757" width="1.7843%" height="15" fill="rgb(237,174,47)" fg:x="2279" fg:w="2681"/><text x="1.7667%" y="767.50">G..</text></g><g><title>GraphBuilder::iterate_all_blocks (2,717 samples, 1.81%)</title><rect x="1.4961%" y="773" width="1.8082%" height="15" fill="rgb(206,201,31)" fg:x="2248" fg:w="2717"/><text x="1.7461%" y="783.50">G..</text></g><g><title>GraphBuilder::setup_start_block (33 samples, 0.02%)</title><rect x="3.3056%" y="773" width="0.0220%" height="15" fill="rgb(231,57,52)" fg:x="4967" fg:w="33"/><text x="3.5556%" y="783.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,017 samples, 2.01%)</title><rect x="1.3317%" y="789" width="2.0079%" height="15" fill="rgb(248,177,22)" fg:x="2001" fg:w="3017"/><text x="1.5817%" y="799.50">G..</text></g><g><title>IR::IR (3,030 samples, 2.02%)</title><rect x="1.3290%" y="805" width="2.0165%" height="15" fill="rgb(215,211,37)" fg:x="1997" fg:w="3030"/><text x="1.5790%" y="815.50">I..</text></g><g><title>ComputeLinearScanOrder::sort_into_work_list (16 samples, 0.01%)</title><rect x="3.3649%" y="757" width="0.0106%" height="15" fill="rgb(241,128,51)" fg:x="5056" fg:w="16"/><text x="3.6149%" y="767.50"></text></g><g><title>ComputeLinearScanOrder::compute_order (40 samples, 0.03%)</title><rect x="3.3509%" y="773" width="0.0266%" height="15" fill="rgb(227,165,31)" fg:x="5035" fg:w="40"/><text x="3.6009%" y="783.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (64 samples, 0.04%)</title><rect x="3.3456%" y="789" width="0.0426%" height="15" fill="rgb(228,167,24)" fg:x="5027" fg:w="64"/><text x="3.5956%" y="799.50"></text></g><g><title>IR::compute_code (72 samples, 0.05%)</title><rect x="3.3456%" y="805" width="0.0479%" height="15" fill="rgb(228,143,12)" fg:x="5027" fg:w="72"/><text x="3.5956%" y="815.50"></text></g><g><title>BlockList::iterate_backward (81 samples, 0.05%)</title><rect x="3.3968%" y="789" width="0.0539%" height="15" fill="rgb(249,149,8)" fg:x="5104" fg:w="81"/><text x="3.6468%" y="799.50"></text></g><g><title>UseCountComputer::block_do (77 samples, 0.05%)</title><rect x="3.3995%" y="773" width="0.0512%" height="15" fill="rgb(243,35,44)" fg:x="5108" fg:w="77"/><text x="3.6495%" y="783.50"></text></g><g><title>ValueStack::values_do (37 samples, 0.02%)</title><rect x="3.4261%" y="757" width="0.0246%" height="15" fill="rgb(246,89,9)" fg:x="5148" fg:w="37"/><text x="3.6761%" y="767.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (24 samples, 0.02%)</title><rect x="3.4507%" y="789" width="0.0160%" height="15" fill="rgb(233,213,13)" fg:x="5185" fg:w="24"/><text x="3.7007%" y="799.50"></text></g><g><title>IR::compute_use_counts (112 samples, 0.07%)</title><rect x="3.3935%" y="805" width="0.0745%" height="15" fill="rgb(233,141,41)" fg:x="5099" fg:w="112"/><text x="3.6435%" y="815.50"></text></g><g><title>NullCheckEliminator::iterate_one (134 samples, 0.09%)</title><rect x="3.4807%" y="773" width="0.0892%" height="15" fill="rgb(239,167,4)" fg:x="5230" fg:w="134"/><text x="3.7307%" y="783.50"></text></g><g><title>IR::eliminate_null_checks (163 samples, 0.11%)</title><rect x="3.4680%" y="805" width="0.1085%" height="15" fill="rgb(209,217,16)" fg:x="5211" fg:w="163"/><text x="3.7180%" y="815.50"></text></g><g><title>Optimizer::eliminate_null_checks (163 samples, 0.11%)</title><rect x="3.4680%" y="789" width="0.1085%" height="15" fill="rgb(219,88,35)" fg:x="5211" fg:w="163"/><text x="3.7180%" y="799.50"></text></g><g><title>BlockBegin::iterate_preorder (19 samples, 0.01%)</title><rect x="3.5865%" y="725" width="0.0126%" height="15" fill="rgb(220,193,23)" fg:x="5389" fg:w="19"/><text x="3.8365%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (27 samples, 0.02%)</title><rect x="3.5865%" y="741" width="0.0180%" height="15" fill="rgb(230,90,52)" fg:x="5389" fg:w="27"/><text x="3.8365%" y="751.50"></text></g><g><title>IR::optimize_blocks (50 samples, 0.03%)</title><rect x="3.5765%" y="805" width="0.0333%" height="15" fill="rgb(252,106,19)" fg:x="5374" fg:w="50"/><text x="3.8265%" y="815.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (39 samples, 0.03%)</title><rect x="3.5838%" y="789" width="0.0260%" height="15" fill="rgb(206,74,20)" fg:x="5385" fg:w="39"/><text x="3.8338%" y="799.50"></text></g><g><title>BlockBegin::iterate_preorder (39 samples, 0.03%)</title><rect x="3.5838%" y="773" width="0.0260%" height="15" fill="rgb(230,138,44)" fg:x="5385" fg:w="39"/><text x="3.8338%" y="783.50"></text></g><g><title>BlockBegin::iterate_preorder (39 samples, 0.03%)</title><rect x="3.5838%" y="757" width="0.0260%" height="15" fill="rgb(235,182,43)" fg:x="5385" fg:w="39"/><text x="3.8338%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (17 samples, 0.01%)</title><rect x="3.6178%" y="789" width="0.0113%" height="15" fill="rgb(242,16,51)" fg:x="5436" fg:w="17"/><text x="3.8678%" y="799.50"></text></g><g><title>BlockBegin::iterate_preorder (17 samples, 0.01%)</title><rect x="3.6178%" y="773" width="0.0113%" height="15" fill="rgb(248,9,4)" fg:x="5436" fg:w="17"/><text x="3.8678%" y="783.50"></text></g><g><title>IR::split_critical_edges (32 samples, 0.02%)</title><rect x="3.6098%" y="805" width="0.0213%" height="15" fill="rgb(210,31,22)" fg:x="5424" fg:w="32"/><text x="3.8598%" y="815.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (18 samples, 0.01%)</title><rect x="3.6391%" y="741" width="0.0120%" height="15" fill="rgb(239,54,39)" fg:x="5468" fg:w="18"/><text x="3.8891%" y="751.50"></text></g><g><title>RangeCheckElimination::eliminate (30 samples, 0.02%)</title><rect x="3.6324%" y="805" width="0.0200%" height="15" fill="rgb(230,99,41)" fg:x="5458" fg:w="30"/><text x="3.8824%" y="815.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (20 samples, 0.01%)</title><rect x="3.6391%" y="789" width="0.0133%" height="15" fill="rgb(253,106,12)" fg:x="5468" fg:w="20"/><text x="3.8891%" y="799.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (20 samples, 0.01%)</title><rect x="3.6391%" y="773" width="0.0133%" height="15" fill="rgb(213,46,41)" fg:x="5468" fg:w="20"/><text x="3.8891%" y="783.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (20 samples, 0.01%)</title><rect x="3.6391%" y="757" width="0.0133%" height="15" fill="rgb(215,133,35)" fg:x="5468" fg:w="20"/><text x="3.8891%" y="767.50"></text></g><g><title>Compilation::build_hir (3,818 samples, 2.54%)</title><rect x="1.1141%" y="821" width="2.5410%" height="15" fill="rgb(213,28,5)" fg:x="1674" fg:w="3818"/><text x="1.3641%" y="831.50">Co..</text></g><g><title>LIR_Assembler::add_call_info (24 samples, 0.02%)</title><rect x="3.7223%" y="773" width="0.0160%" height="15" fill="rgb(215,77,49)" fg:x="5593" fg:w="24"/><text x="3.9723%" y="783.50"></text></g><g><title>CodeEmitInfo::record_debug_info (24 samples, 0.02%)</title><rect x="3.7223%" y="757" width="0.0160%" height="15" fill="rgb(248,100,22)" fg:x="5593" fg:w="24"/><text x="3.9723%" y="767.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (26 samples, 0.02%)</title><rect x="3.7476%" y="725" width="0.0173%" height="15" fill="rgb(208,67,9)" fg:x="5631" fg:w="26"/><text x="3.9976%" y="735.50"></text></g><g><title>DebugInformationRecorder::describe_scope (18 samples, 0.01%)</title><rect x="3.7649%" y="725" width="0.0120%" height="15" fill="rgb(219,133,21)" fg:x="5657" fg:w="18"/><text x="4.0149%" y="735.50"></text></g><g><title>CodeEmitInfo::record_debug_info (61 samples, 0.04%)</title><rect x="3.7436%" y="741" width="0.0406%" height="15" fill="rgb(246,46,29)" fg:x="5625" fg:w="61"/><text x="3.9936%" y="751.50"></text></g><g><title>LIR_Assembler::add_call_info (63 samples, 0.04%)</title><rect x="3.7436%" y="757" width="0.0419%" height="15" fill="rgb(246,185,52)" fg:x="5625" fg:w="63"/><text x="3.9936%" y="767.50"></text></g><g><title>LIR_Assembler::call (79 samples, 0.05%)</title><rect x="3.7389%" y="773" width="0.0526%" height="15" fill="rgb(252,136,11)" fg:x="5618" fg:w="79"/><text x="3.9889%" y="783.50"></text></g><g><title>LIR_Assembler::emit_static_call_stub (21 samples, 0.01%)</title><rect x="3.7915%" y="773" width="0.0140%" height="15" fill="rgb(219,138,53)" fg:x="5697" fg:w="21"/><text x="4.0415%" y="783.50"></text></g><g><title>LIR_Assembler::emit_call (135 samples, 0.09%)</title><rect x="3.7196%" y="789" width="0.0898%" height="15" fill="rgb(211,51,23)" fg:x="5589" fg:w="135"/><text x="3.9696%" y="799.50"></text></g><g><title>C1_MacroAssembler::inline_cache_check (17 samples, 0.01%)</title><rect x="3.8148%" y="757" width="0.0113%" height="15" fill="rgb(247,221,28)" fg:x="5732" fg:w="17"/><text x="4.0648%" y="767.50"></text></g><g><title>LIR_Assembler::check_icache (19 samples, 0.01%)</title><rect x="3.8141%" y="773" width="0.0126%" height="15" fill="rgb(251,222,45)" fg:x="5731" fg:w="19"/><text x="4.0641%" y="783.50"></text></g><g><title>LIR_Assembler::emit_op0 (27 samples, 0.02%)</title><rect x="3.8094%" y="789" width="0.0180%" height="15" fill="rgb(217,162,53)" fg:x="5724" fg:w="27"/><text x="4.0594%" y="799.50"></text></g><g><title>LIR_Assembler::mem2reg (28 samples, 0.02%)</title><rect x="3.8594%" y="773" width="0.0186%" height="15" fill="rgb(229,93,14)" fg:x="5799" fg:w="28"/><text x="4.1094%" y="783.50"></text></g><g><title>LIR_Assembler::move_op (16 samples, 0.01%)</title><rect x="3.8780%" y="773" width="0.0106%" height="15" fill="rgb(209,67,49)" fg:x="5827" fg:w="16"/><text x="4.1280%" y="783.50"></text></g><g><title>LIR_Assembler::emit_op1 (139 samples, 0.09%)</title><rect x="3.8274%" y="789" width="0.0925%" height="15" fill="rgb(213,87,29)" fg:x="5751" fg:w="139"/><text x="4.0774%" y="799.50"></text></g><g><title>LIR_Assembler::emit_op2 (17 samples, 0.01%)</title><rect x="3.9199%" y="789" width="0.0113%" height="15" fill="rgb(205,151,52)" fg:x="5890" fg:w="17"/><text x="4.1699%" y="799.50"></text></g><g><title>LIR_Assembler::type_profile_helper (19 samples, 0.01%)</title><rect x="3.9412%" y="773" width="0.0126%" height="15" fill="rgb(253,215,39)" fg:x="5922" fg:w="19"/><text x="4.1912%" y="783.50"></text></g><g><title>LIR_Assembler::emit_profile_call (57 samples, 0.04%)</title><rect x="3.9319%" y="789" width="0.0379%" height="15" fill="rgb(221,220,41)" fg:x="5908" fg:w="57"/><text x="4.1819%" y="799.50"></text></g><g><title>LIR_OpAllocObj::emit_code (17 samples, 0.01%)</title><rect x="3.9938%" y="789" width="0.0113%" height="15" fill="rgb(218,133,21)" fg:x="6001" fg:w="17"/><text x="4.2438%" y="799.50"></text></g><g><title>LIR_Assembler::emit_alloc_obj (17 samples, 0.01%)</title><rect x="3.9938%" y="773" width="0.0113%" height="15" fill="rgb(221,193,43)" fg:x="6001" fg:w="17"/><text x="4.2438%" y="783.50"></text></g><g><title>LIR_Assembler::emit_typecheck_helper (24 samples, 0.02%)</title><rect x="4.0144%" y="757" width="0.0160%" height="15" fill="rgb(240,128,52)" fg:x="6032" fg:w="24"/><text x="4.2644%" y="767.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (38 samples, 0.03%)</title><rect x="4.0138%" y="789" width="0.0253%" height="15" fill="rgb(253,114,12)" fg:x="6031" fg:w="38"/><text x="4.2638%" y="799.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (38 samples, 0.03%)</title><rect x="4.0138%" y="773" width="0.0253%" height="15" fill="rgb(215,223,47)" fg:x="6031" fg:w="38"/><text x="4.2638%" y="783.50"></text></g><g><title>LIR_Assembler::emit_code (569 samples, 0.38%)</title><rect x="3.6664%" y="805" width="0.3787%" height="15" fill="rgb(248,225,23)" fg:x="5509" fg:w="569"/><text x="3.9164%" y="815.50"></text></g><g><title>MacroAssembler::stop (24 samples, 0.02%)</title><rect x="4.0630%" y="789" width="0.0160%" height="15" fill="rgb(250,108,0)" fg:x="6105" fg:w="24"/><text x="4.3130%" y="799.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (33 samples, 0.02%)</title><rect x="4.0577%" y="805" width="0.0220%" height="15" fill="rgb(228,208,7)" fg:x="6097" fg:w="33"/><text x="4.3077%" y="815.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (26 samples, 0.02%)</title><rect x="4.1116%" y="725" width="0.0173%" height="15" fill="rgb(244,45,10)" fg:x="6178" fg:w="26"/><text x="4.3616%" y="735.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (49 samples, 0.03%)</title><rect x="4.1003%" y="741" width="0.0326%" height="15" fill="rgb(207,125,25)" fg:x="6161" fg:w="49"/><text x="4.3503%" y="751.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (18 samples, 0.01%)</title><rect x="4.1409%" y="725" width="0.0120%" height="15" fill="rgb(210,195,18)" fg:x="6222" fg:w="18"/><text x="4.3909%" y="735.50"></text></g><g><title>DebugInformationRecorder::describe_scope (41 samples, 0.03%)</title><rect x="4.1329%" y="741" width="0.0273%" height="15" fill="rgb(249,80,12)" fg:x="6210" fg:w="41"/><text x="4.3829%" y="751.50"></text></g><g><title>LIR_Assembler::add_call_info (112 samples, 0.07%)</title><rect x="4.0936%" y="773" width="0.0745%" height="15" fill="rgb(221,65,9)" fg:x="6151" fg:w="112"/><text x="4.3436%" y="783.50"></text></g><g><title>CodeEmitInfo::record_debug_info (111 samples, 0.07%)</title><rect x="4.0943%" y="757" width="0.0739%" height="15" fill="rgb(235,49,36)" fg:x="6152" fg:w="111"/><text x="4.3443%" y="767.50"></text></g><g><title>CounterOverflowStub::emit_code (139 samples, 0.09%)</title><rect x="4.0890%" y="789" width="0.0925%" height="15" fill="rgb(225,32,20)" fg:x="6144" fg:w="139"/><text x="4.3390%" y="799.50"></text></g><g><title>CodeEmitInfo::record_debug_info (41 samples, 0.03%)</title><rect x="4.1915%" y="757" width="0.0273%" height="15" fill="rgb(215,141,46)" fg:x="6298" fg:w="41"/><text x="4.4415%" y="767.50"></text></g><g><title>LIR_Assembler::add_call_info (42 samples, 0.03%)</title><rect x="4.1915%" y="773" width="0.0280%" height="15" fill="rgb(250,160,47)" fg:x="6298" fg:w="42"/><text x="4.4415%" y="783.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (51 samples, 0.03%)</title><rect x="4.1875%" y="789" width="0.0339%" height="15" fill="rgb(216,222,40)" fg:x="6292" fg:w="51"/><text x="4.4375%" y="799.50"></text></g><g><title>LIR_Assembler::add_call_info (19 samples, 0.01%)</title><rect x="4.2254%" y="773" width="0.0126%" height="15" fill="rgb(234,217,39)" fg:x="6349" fg:w="19"/><text x="4.4754%" y="783.50"></text></g><g><title>CodeEmitInfo::record_debug_info (19 samples, 0.01%)</title><rect x="4.2254%" y="757" width="0.0126%" height="15" fill="rgb(207,178,40)" fg:x="6349" fg:w="19"/><text x="4.4754%" y="767.50"></text></g><g><title>NewInstanceStub::emit_code (23 samples, 0.02%)</title><rect x="4.2254%" y="789" width="0.0153%" height="15" fill="rgb(221,136,13)" fg:x="6349" fg:w="23"/><text x="4.4754%" y="799.50"></text></g><g><title>LIR_Assembler::add_call_info (16 samples, 0.01%)</title><rect x="4.2434%" y="773" width="0.0106%" height="15" fill="rgb(249,199,10)" fg:x="6376" fg:w="16"/><text x="4.4934%" y="783.50"></text></g><g><title>CodeEmitInfo::record_debug_info (16 samples, 0.01%)</title><rect x="4.2434%" y="757" width="0.0106%" height="15" fill="rgb(249,222,13)" fg:x="6376" fg:w="16"/><text x="4.4934%" y="767.50"></text></g><g><title>PatchingStub::emit_code (25 samples, 0.02%)</title><rect x="4.2420%" y="789" width="0.0166%" height="15" fill="rgb(244,185,38)" fg:x="6374" fg:w="25"/><text x="4.4920%" y="799.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (290 samples, 0.19%)</title><rect x="4.0796%" y="805" width="0.1930%" height="15" fill="rgb(236,202,9)" fg:x="6130" fg:w="290"/><text x="4.3296%" y="815.50"></text></g><g><title>SimpleExceptionStub::emit_code (18 samples, 0.01%)</title><rect x="4.2607%" y="789" width="0.0120%" height="15" fill="rgb(250,229,37)" fg:x="6402" fg:w="18"/><text x="4.5107%" y="799.50"></text></g><g><title>Compilation::emit_code_body (936 samples, 0.62%)</title><rect x="3.6550%" y="821" width="0.6229%" height="15" fill="rgb(206,174,23)" fg:x="5492" fg:w="936"/><text x="3.9050%" y="831.50"></text></g><g><title>LIRGenerator::block_do_prolog (16 samples, 0.01%)</title><rect x="4.2966%" y="773" width="0.0106%" height="15" fill="rgb(211,33,43)" fg:x="6456" fg:w="16"/><text x="4.5466%" y="783.50"></text></g><g><title>GrowableArray&lt;Instruction*&gt;::grow (26 samples, 0.02%)</title><rect x="4.3246%" y="757" width="0.0173%" height="15" fill="rgb(245,58,50)" fg:x="6498" fg:w="26"/><text x="4.5746%" y="767.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (19 samples, 0.01%)</title><rect x="4.3419%" y="741" width="0.0126%" height="15" fill="rgb(244,68,36)" fg:x="6524" fg:w="19"/><text x="4.5919%" y="751.50"></text></g><g><title>LIRGenerator::increment_event_counter (23 samples, 0.02%)</title><rect x="4.3419%" y="757" width="0.0153%" height="15" fill="rgb(232,229,15)" fg:x="6524" fg:w="23"/><text x="4.5919%" y="767.50"></text></g><g><title>LIRGenerator::do_Base (85 samples, 0.06%)</title><rect x="4.3119%" y="773" width="0.0566%" height="15" fill="rgb(254,30,23)" fg:x="6479" fg:w="85"/><text x="4.5619%" y="783.50"></text></g><g><title>LIRGenerator::move_to_phi (46 samples, 0.03%)</title><rect x="4.3938%" y="741" width="0.0306%" height="15" fill="rgb(235,160,14)" fg:x="6602" fg:w="46"/><text x="4.6438%" y="751.50"></text></g><g><title>PhiResolver::create_node (40 samples, 0.03%)</title><rect x="4.3978%" y="725" width="0.0266%" height="15" fill="rgb(212,155,44)" fg:x="6608" fg:w="40"/><text x="4.6478%" y="735.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (34 samples, 0.02%)</title><rect x="4.4949%" y="725" width="0.0226%" height="15" fill="rgb(226,2,50)" fg:x="6754" fg:w="34"/><text x="4.7449%" y="735.50"></text></g><g><title>PhiResolverState::reset (133 samples, 0.09%)</title><rect x="4.4297%" y="741" width="0.0885%" height="15" fill="rgb(234,177,6)" fg:x="6656" fg:w="133"/><text x="4.6797%" y="751.50"></text></g><g><title>LIRGenerator::move_to_phi (201 samples, 0.13%)</title><rect x="4.3851%" y="757" width="0.1338%" height="15" fill="rgb(217,24,9)" fg:x="6589" fg:w="201"/><text x="4.6351%" y="767.50"></text></g><g><title>LIRGenerator::do_Goto (231 samples, 0.15%)</title><rect x="4.3745%" y="773" width="0.1537%" height="15" fill="rgb(220,13,46)" fg:x="6573" fg:w="231"/><text x="4.6245%" y="783.50"></text></g><g><title>LIRGenerator::profile_branch (26 samples, 0.02%)</title><rect x="4.5409%" y="757" width="0.0173%" height="15" fill="rgb(239,221,27)" fg:x="6823" fg:w="26"/><text x="4.7909%" y="767.50"></text></g><g><title>LIRGenerator::do_If (53 samples, 0.04%)</title><rect x="4.5282%" y="773" width="0.0353%" height="15" fill="rgb(222,198,25)" fg:x="6804" fg:w="53"/><text x="4.7782%" y="783.50"></text></g><g><title>FrameMap::java_calling_convention (18 samples, 0.01%)</title><rect x="4.5721%" y="757" width="0.0120%" height="15" fill="rgb(211,99,13)" fg:x="6870" fg:w="18"/><text x="4.8221%" y="767.50"></text></g><g><title>LIRGenerator::invoke_load_arguments (18 samples, 0.01%)</title><rect x="4.5841%" y="757" width="0.0120%" height="15" fill="rgb(232,111,31)" fg:x="6888" fg:w="18"/><text x="4.8341%" y="767.50"></text></g><g><title>LIRItem::load_item_force (16 samples, 0.01%)</title><rect x="4.5854%" y="741" width="0.0106%" height="15" fill="rgb(245,82,37)" fg:x="6890" fg:w="16"/><text x="4.8354%" y="751.50"></text></g><g><title>LIRGenerator::invoke_visit_arguments (18 samples, 0.01%)</title><rect x="4.5961%" y="757" width="0.0120%" height="15" fill="rgb(227,149,46)" fg:x="6906" fg:w="18"/><text x="4.8461%" y="767.50"></text></g><g><title>MethodLiveness::get_liveness_at (37 samples, 0.02%)</title><rect x="4.6214%" y="725" width="0.0246%" height="15" fill="rgb(218,36,50)" fg:x="6944" fg:w="37"/><text x="4.8714%" y="735.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (29 samples, 0.02%)</title><rect x="4.6267%" y="709" width="0.0193%" height="15" fill="rgb(226,80,48)" fg:x="6952" fg:w="29"/><text x="4.8767%" y="719.50"></text></g><g><title>LIRGenerator::state_for (54 samples, 0.04%)</title><rect x="4.6107%" y="757" width="0.0359%" height="15" fill="rgb(238,224,15)" fg:x="6928" fg:w="54"/><text x="4.8607%" y="767.50"></text></g><g><title>ciMethod::liveness_at_bci (41 samples, 0.03%)</title><rect x="4.6194%" y="741" width="0.0273%" height="15" fill="rgb(241,136,10)" fg:x="6941" fg:w="41"/><text x="4.8694%" y="751.50"></text></g><g><title>LIRGenerator::do_Invoke (125 samples, 0.08%)</title><rect x="4.5655%" y="773" width="0.0832%" height="15" fill="rgb(208,32,45)" fg:x="6860" fg:w="125"/><text x="4.8155%" y="783.50"></text></g><g><title>LIRGenerator::do_LoadField (20 samples, 0.01%)</title><rect x="4.6487%" y="773" width="0.0133%" height="15" fill="rgb(207,135,9)" fg:x="6985" fg:w="20"/><text x="4.8987%" y="783.50"></text></g><g><title>LIRGenerator::do_NewInstance (35 samples, 0.02%)</title><rect x="4.6653%" y="773" width="0.0233%" height="15" fill="rgb(206,86,44)" fg:x="7010" fg:w="35"/><text x="4.9153%" y="783.50"></text></g><g><title>LIRGenerator::state_for (16 samples, 0.01%)</title><rect x="4.6780%" y="757" width="0.0106%" height="15" fill="rgb(245,177,15)" fg:x="7029" fg:w="16"/><text x="4.9280%" y="767.50"></text></g><g><title>LIRGenerator::do_ProfileCall (23 samples, 0.02%)</title><rect x="4.7019%" y="773" width="0.0153%" height="15" fill="rgb(206,64,50)" fg:x="7065" fg:w="23"/><text x="4.9519%" y="783.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (24 samples, 0.02%)</title><rect x="4.7192%" y="757" width="0.0160%" height="15" fill="rgb(234,36,40)" fg:x="7091" fg:w="24"/><text x="4.9692%" y="767.50"></text></g><g><title>MethodLiveness::get_liveness_at (21 samples, 0.01%)</title><rect x="4.7445%" y="725" width="0.0140%" height="15" fill="rgb(213,64,8)" fg:x="7129" fg:w="21"/><text x="4.9945%" y="735.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (17 samples, 0.01%)</title><rect x="4.7472%" y="709" width="0.0113%" height="15" fill="rgb(210,75,36)" fg:x="7133" fg:w="17"/><text x="4.9972%" y="719.50"></text></g><g><title>LIRGenerator::state_for (36 samples, 0.02%)</title><rect x="4.7352%" y="757" width="0.0240%" height="15" fill="rgb(229,88,21)" fg:x="7115" fg:w="36"/><text x="4.9852%" y="767.50"></text></g><g><title>ciMethod::liveness_at_bci (24 samples, 0.02%)</title><rect x="4.7432%" y="741" width="0.0160%" height="15" fill="rgb(252,204,47)" fg:x="7127" fg:w="24"/><text x="4.9932%" y="751.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (66 samples, 0.04%)</title><rect x="4.7172%" y="773" width="0.0439%" height="15" fill="rgb(208,77,27)" fg:x="7088" fg:w="66"/><text x="4.9672%" y="783.50"></text></g><g><title>LIRGenerator::access_store_at (22 samples, 0.01%)</title><rect x="4.7718%" y="757" width="0.0146%" height="15" fill="rgb(221,76,26)" fg:x="7170" fg:w="22"/><text x="5.0218%" y="767.50"></text></g><g><title>LIRGenerator::do_StoreField (27 samples, 0.02%)</title><rect x="4.7698%" y="773" width="0.0180%" height="15" fill="rgb(225,139,18)" fg:x="7167" fg:w="27"/><text x="5.0198%" y="783.50"></text></g><g><title>LIRGenerator::block_do (785 samples, 0.52%)</title><rect x="4.2826%" y="789" width="0.5224%" height="15" fill="rgb(230,137,11)" fg:x="6435" fg:w="785"/><text x="4.5326%" y="799.50"></text></g><g><title>BlockList::iterate_forward (790 samples, 0.53%)</title><rect x="4.2813%" y="805" width="0.5258%" height="15" fill="rgb(212,28,1)" fg:x="6433" fg:w="790"/><text x="4.5313%" y="815.50"></text></g><g><title>ControlFlowOptimizer::delete_empty_blocks (17 samples, 0.01%)</title><rect x="4.8091%" y="789" width="0.0113%" height="15" fill="rgb(248,164,17)" fg:x="7226" fg:w="17"/><text x="5.0591%" y="799.50"></text></g><g><title>ControlFlowOptimizer::optimize (29 samples, 0.02%)</title><rect x="4.8071%" y="805" width="0.0193%" height="15" fill="rgb(222,171,42)" fg:x="7223" fg:w="29"/><text x="5.0571%" y="815.50"></text></g><g><title>IntervalWalker::walk_to (88 samples, 0.06%)</title><rect x="4.8789%" y="757" width="0.0586%" height="15" fill="rgb(243,84,45)" fg:x="7331" fg:w="88"/><text x="5.1289%" y="767.50"></text></g><g><title>IntervalWalker::append_to_unhandled (28 samples, 0.02%)</title><rect x="4.9927%" y="725" width="0.0186%" height="15" fill="rgb(252,49,23)" fg:x="7502" fg:w="28"/><text x="5.2427%" y="735.50"></text></g><g><title>LinearScanWalker::find_free_reg (99 samples, 0.07%)</title><rect x="5.0114%" y="725" width="0.0659%" height="15" fill="rgb(215,19,7)" fg:x="7530" fg:w="99"/><text x="5.2614%" y="735.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_any (20 samples, 0.01%)</title><rect x="5.0773%" y="725" width="0.0133%" height="15" fill="rgb(238,81,41)" fg:x="7629" fg:w="20"/><text x="5.3273%" y="735.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (123 samples, 0.08%)</title><rect x="5.0906%" y="725" width="0.0819%" height="15" fill="rgb(210,199,37)" fg:x="7649" fg:w="123"/><text x="5.3406%" y="735.50"></text></g><g><title>Interval::new_split_child (21 samples, 0.01%)</title><rect x="5.1891%" y="693" width="0.0140%" height="15" fill="rgb(244,192,49)" fg:x="7797" fg:w="21"/><text x="5.4391%" y="703.50"></text></g><g><title>Interval::split (38 samples, 0.03%)</title><rect x="5.1784%" y="709" width="0.0253%" height="15" fill="rgb(226,211,11)" fg:x="7781" fg:w="38"/><text x="5.4284%" y="719.50"></text></g><g><title>LinearScanWalker::split_before_usage (54 samples, 0.04%)</title><rect x="5.1724%" y="725" width="0.0359%" height="15" fill="rgb(236,162,54)" fg:x="7772" fg:w="54"/><text x="5.4224%" y="735.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (385 samples, 0.26%)</title><rect x="4.9555%" y="741" width="0.2562%" height="15" fill="rgb(220,229,9)" fg:x="7446" fg:w="385"/><text x="5.2055%" y="751.50"></text></g><g><title>IntervalWalker::append_to_unhandled (21 samples, 0.01%)</title><rect x="5.2383%" y="709" width="0.0140%" height="15" fill="rgb(250,87,22)" fg:x="7871" fg:w="21"/><text x="5.4883%" y="719.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (51 samples, 0.03%)</title><rect x="5.2357%" y="725" width="0.0339%" height="15" fill="rgb(239,43,17)" fg:x="7867" fg:w="51"/><text x="5.4857%" y="735.50"></text></g><g><title>LinearScanWalker::split_before_usage (26 samples, 0.02%)</title><rect x="5.2523%" y="709" width="0.0173%" height="15" fill="rgb(231,177,25)" fg:x="7892" fg:w="26"/><text x="5.5023%" y="719.50"></text></g><g><title>Interval::split_child_before_op_id (18 samples, 0.01%)</title><rect x="5.2709%" y="709" width="0.0120%" height="15" fill="rgb(219,179,1)" fg:x="7920" fg:w="18"/><text x="5.5209%" y="719.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (109 samples, 0.07%)</title><rect x="5.2117%" y="741" width="0.0725%" height="15" fill="rgb(238,219,53)" fg:x="7831" fg:w="109"/><text x="5.4617%" y="751.50"></text></g><g><title>LinearScanWalker::split_for_spilling (22 samples, 0.01%)</title><rect x="5.2696%" y="725" width="0.0146%" height="15" fill="rgb(232,167,36)" fg:x="7918" fg:w="22"/><text x="5.5196%" y="735.50"></text></g><g><title>LinearScanWalker::insert_move (30 samples, 0.02%)</title><rect x="5.3009%" y="741" width="0.0200%" height="15" fill="rgb(244,19,51)" fg:x="7965" fg:w="30"/><text x="5.5509%" y="751.50"></text></g><g><title>LinearScanWalker::activate_current (582 samples, 0.39%)</title><rect x="4.9375%" y="757" width="0.3873%" height="15" fill="rgb(224,6,22)" fg:x="7419" fg:w="582"/><text x="5.1875%" y="767.50"></text></g><g><title>IntervalWalker::walk_to (723 samples, 0.48%)</title><rect x="4.8450%" y="773" width="0.4812%" height="15" fill="rgb(224,145,5)" fg:x="7280" fg:w="723"/><text x="5.0950%" y="783.50"></text></g><g><title>__tls_get_addr (17 samples, 0.01%)</title><rect x="5.3521%" y="741" width="0.0113%" height="15" fill="rgb(234,130,49)" fg:x="8042" fg:w="17"/><text x="5.6021%" y="751.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (54 samples, 0.04%)</title><rect x="5.3282%" y="773" width="0.0359%" height="15" fill="rgb(254,6,2)" fg:x="8006" fg:w="54"/><text x="5.5782%" y="783.50"></text></g><g><title>resource_allocate_bytes (33 samples, 0.02%)</title><rect x="5.3421%" y="757" width="0.0220%" height="15" fill="rgb(208,96,46)" fg:x="8027" fg:w="33"/><text x="5.5921%" y="767.50"></text></g><g><title>LinearScan::allocate_registers (793 samples, 0.53%)</title><rect x="4.8390%" y="789" width="0.5278%" height="15" fill="rgb(239,3,39)" fg:x="7271" fg:w="793"/><text x="5.0890%" y="799.50"></text></g><g><title>LIR_OpVisitState::visit (65 samples, 0.04%)</title><rect x="5.4653%" y="757" width="0.0433%" height="15" fill="rgb(233,210,1)" fg:x="8212" fg:w="65"/><text x="5.7153%" y="767.50"></text></g><g><title>LIR_OpVisitState::append (24 samples, 0.02%)</title><rect x="5.4926%" y="741" width="0.0160%" height="15" fill="rgb(244,137,37)" fg:x="8253" fg:w="24"/><text x="5.7426%" y="751.50"></text></g><g><title>Interval::split_child_at_op_id (28 samples, 0.02%)</title><rect x="5.5258%" y="741" width="0.0186%" height="15" fill="rgb(240,136,2)" fg:x="8303" fg:w="28"/><text x="5.7758%" y="751.50"></text></g><g><title>LinearScan::color_lir_opr (63 samples, 0.04%)</title><rect x="5.5085%" y="757" width="0.0419%" height="15" fill="rgb(239,18,37)" fg:x="8277" fg:w="63"/><text x="5.7585%" y="767.50"></text></g><g><title>LinearScan::append_scope_value (19 samples, 0.01%)</title><rect x="5.5664%" y="741" width="0.0126%" height="15" fill="rgb(218,185,22)" fg:x="8364" fg:w="19"/><text x="5.8164%" y="751.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (31 samples, 0.02%)</title><rect x="5.6010%" y="725" width="0.0206%" height="15" fill="rgb(225,218,4)" fg:x="8416" fg:w="31"/><text x="5.8510%" y="735.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (69 samples, 0.05%)</title><rect x="5.5837%" y="741" width="0.0459%" height="15" fill="rgb(230,182,32)" fg:x="8390" fg:w="69"/><text x="5.8337%" y="751.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (139 samples, 0.09%)</title><rect x="5.5505%" y="757" width="0.0925%" height="15" fill="rgb(242,56,43)" fg:x="8340" fg:w="139"/><text x="5.8005%" y="767.50"></text></g><g><title>IntervalWalker::walk_to (65 samples, 0.04%)</title><rect x="5.6809%" y="725" width="0.0433%" height="15" fill="rgb(233,99,24)" fg:x="8536" fg:w="65"/><text x="5.9309%" y="735.50"></text></g><g><title>LinearScan::compute_oop_map (144 samples, 0.10%)</title><rect x="5.6563%" y="741" width="0.0958%" height="15" fill="rgb(234,209,42)" fg:x="8499" fg:w="144"/><text x="5.9063%" y="751.50"></text></g><g><title>LinearScan::compute_oop_map (165 samples, 0.11%)</title><rect x="5.6430%" y="757" width="0.1098%" height="15" fill="rgb(227,7,12)" fg:x="8479" fg:w="165"/><text x="5.8930%" y="767.50"></text></g><g><title>LinearScan::assign_reg_num (569 samples, 0.38%)</title><rect x="5.3748%" y="773" width="0.3787%" height="15" fill="rgb(245,203,43)" fg:x="8076" fg:w="569"/><text x="5.6248%" y="783.50"></text></g><g><title>LinearScan::assign_reg_num (602 samples, 0.40%)</title><rect x="5.3668%" y="789" width="0.4006%" height="15" fill="rgb(238,205,33)" fg:x="8064" fg:w="602"/><text x="5.6168%" y="799.50"></text></g><g><title>LinearScan::init_compute_oop_maps (18 samples, 0.01%)</title><rect x="5.7554%" y="773" width="0.0120%" height="15" fill="rgb(231,56,7)" fg:x="8648" fg:w="18"/><text x="6.0054%" y="783.50"></text></g><g><title>BitMap::get_next_one_offset (32 samples, 0.02%)</title><rect x="5.8872%" y="773" width="0.0213%" height="15" fill="rgb(244,186,29)" fg:x="8846" fg:w="32"/><text x="6.1372%" y="783.50"></text></g><g><title>Interval::add_use_pos (16 samples, 0.01%)</title><rect x="5.9158%" y="773" width="0.0106%" height="15" fill="rgb(234,111,31)" fg:x="8889" fg:w="16"/><text x="6.1658%" y="783.50"></text></g><g><title>LIR_OpVisitState::visit (74 samples, 0.05%)</title><rect x="5.9351%" y="773" width="0.0492%" height="15" fill="rgb(241,149,10)" fg:x="8918" fg:w="74"/><text x="6.1851%" y="783.50"></text></g><g><title>LIR_OpVisitState::append (25 samples, 0.02%)</title><rect x="5.9677%" y="757" width="0.0166%" height="15" fill="rgb(249,206,44)" fg:x="8967" fg:w="25"/><text x="6.2177%" y="767.50"></text></g><g><title>LinearScan::add_def (57 samples, 0.04%)</title><rect x="5.9844%" y="773" width="0.0379%" height="15" fill="rgb(251,153,30)" fg:x="8992" fg:w="57"/><text x="6.2344%" y="783.50"></text></g><g><title>LinearScan::add_register_hints (24 samples, 0.02%)</title><rect x="6.0223%" y="773" width="0.0160%" height="15" fill="rgb(239,152,38)" fg:x="9049" fg:w="24"/><text x="6.2723%" y="783.50"></text></g><g><title>Interval::add_range (27 samples, 0.02%)</title><rect x="6.0436%" y="757" width="0.0180%" height="15" fill="rgb(249,139,47)" fg:x="9081" fg:w="27"/><text x="6.2936%" y="767.50"></text></g><g><title>Interval::Interval (20 samples, 0.01%)</title><rect x="6.0662%" y="741" width="0.0133%" height="15" fill="rgb(244,64,35)" fg:x="9115" fg:w="20"/><text x="6.3162%" y="751.50"></text></g><g><title>LinearScan::add_temp (69 samples, 0.05%)</title><rect x="6.0383%" y="773" width="0.0459%" height="15" fill="rgb(216,46,15)" fg:x="9073" fg:w="69"/><text x="6.2883%" y="783.50"></text></g><g><title>LinearScan::create_interval (34 samples, 0.02%)</title><rect x="6.0616%" y="757" width="0.0226%" height="15" fill="rgb(250,74,19)" fg:x="9108" fg:w="34"/><text x="6.3116%" y="767.50"></text></g><g><title>Interval::add_range (44 samples, 0.03%)</title><rect x="6.1175%" y="757" width="0.0293%" height="15" fill="rgb(249,42,33)" fg:x="9192" fg:w="44"/><text x="6.3675%" y="767.50"></text></g><g><title>Interval::Interval (47 samples, 0.03%)</title><rect x="6.1521%" y="741" width="0.0313%" height="15" fill="rgb(242,149,17)" fg:x="9244" fg:w="47"/><text x="6.4021%" y="751.50"></text></g><g><title>resource_allocate_bytes (22 samples, 0.01%)</title><rect x="6.1687%" y="725" width="0.0146%" height="15" fill="rgb(244,29,21)" fg:x="9269" fg:w="22"/><text x="6.4187%" y="735.50"></text></g><g><title>LinearScan::add_use (155 samples, 0.10%)</title><rect x="6.0842%" y="773" width="0.1032%" height="15" fill="rgb(220,130,37)" fg:x="9142" fg:w="155"/><text x="6.3342%" y="783.50"></text></g><g><title>LinearScan::create_interval (61 samples, 0.04%)</title><rect x="6.1468%" y="757" width="0.0406%" height="15" fill="rgb(211,67,2)" fg:x="9236" fg:w="61"/><text x="6.3968%" y="767.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (24 samples, 0.02%)</title><rect x="6.1940%" y="773" width="0.0160%" height="15" fill="rgb(235,68,52)" fg:x="9307" fg:w="24"/><text x="6.4440%" y="783.50"></text></g><g><title>LinearScan::use_kind_of_output_operand (20 samples, 0.01%)</title><rect x="6.2100%" y="773" width="0.0133%" height="15" fill="rgb(246,142,3)" fg:x="9331" fg:w="20"/><text x="6.4600%" y="783.50"></text></g><g><title>LinearScan::build_intervals (691 samples, 0.46%)</title><rect x="5.7674%" y="789" width="0.4599%" height="15" fill="rgb(241,25,7)" fg:x="8666" fg:w="691"/><text x="6.0174%" y="799.50"></text></g><g><title>LinearScan::compute_global_live_sets (54 samples, 0.04%)</title><rect x="6.2273%" y="789" width="0.0359%" height="15" fill="rgb(242,119,39)" fg:x="9357" fg:w="54"/><text x="6.4773%" y="799.50"></text></g><g><title>LIR_OpVisitState::visit (90 samples, 0.06%)</title><rect x="6.3424%" y="773" width="0.0599%" height="15" fill="rgb(241,98,45)" fg:x="9530" fg:w="90"/><text x="6.5924%" y="783.50"></text></g><g><title>LIR_OpVisitState::append (24 samples, 0.02%)</title><rect x="6.3863%" y="757" width="0.0160%" height="15" fill="rgb(254,28,30)" fg:x="9596" fg:w="24"/><text x="6.6363%" y="767.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (33 samples, 0.02%)</title><rect x="6.4090%" y="773" width="0.0220%" height="15" fill="rgb(241,142,54)" fg:x="9630" fg:w="33"/><text x="6.6590%" y="783.50"></text></g><g><title>resource_allocate_bytes (19 samples, 0.01%)</title><rect x="6.4183%" y="757" width="0.0126%" height="15" fill="rgb(222,85,15)" fg:x="9644" fg:w="19"/><text x="6.6683%" y="767.50"></text></g><g><title>LinearScan::compute_local_live_sets (253 samples, 0.17%)</title><rect x="6.2632%" y="789" width="0.1684%" height="15" fill="rgb(210,85,47)" fg:x="9411" fg:w="253"/><text x="6.5132%" y="799.50"></text></g><g><title>LinearScan::eliminate_spill_moves (50 samples, 0.03%)</title><rect x="6.4316%" y="789" width="0.0333%" height="15" fill="rgb(224,206,25)" fg:x="9664" fg:w="50"/><text x="6.6816%" y="799.50"></text></g><g><title>LinearScan::number_instructions (45 samples, 0.03%)</title><rect x="6.4649%" y="789" width="0.0299%" height="15" fill="rgb(243,201,19)" fg:x="9714" fg:w="45"/><text x="6.7149%" y="799.50"></text></g><g><title>BitMap::get_next_one_offset (19 samples, 0.01%)</title><rect x="6.5368%" y="757" width="0.0126%" height="15" fill="rgb(236,59,4)" fg:x="9822" fg:w="19"/><text x="6.7868%" y="767.50"></text></g><g><title>Interval::split_child_at_op_id (23 samples, 0.02%)</title><rect x="6.5494%" y="757" width="0.0153%" height="15" fill="rgb(254,179,45)" fg:x="9841" fg:w="23"/><text x="6.7994%" y="767.50"></text></g><g><title>LinearScan::resolve_collect_mappings (77 samples, 0.05%)</title><rect x="6.5141%" y="773" width="0.0512%" height="15" fill="rgb(226,14,10)" fg:x="9788" fg:w="77"/><text x="6.7641%" y="783.50"></text></g><g><title>LinearScan::resolve_data_flow (119 samples, 0.08%)</title><rect x="6.4962%" y="789" width="0.0792%" height="15" fill="rgb(244,27,41)" fg:x="9761" fg:w="119"/><text x="6.7462%" y="799.50"></text></g><g><title>LinearScan::resolve_exception_handlers (33 samples, 0.02%)</title><rect x="6.5754%" y="789" width="0.0220%" height="15" fill="rgb(235,35,32)" fg:x="9880" fg:w="33"/><text x="6.8254%" y="799.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (43 samples, 0.03%)</title><rect x="6.5980%" y="789" width="0.0286%" height="15" fill="rgb(218,68,31)" fg:x="9914" fg:w="43"/><text x="6.8480%" y="799.50"></text></g><g><title>__GI___qsort_r (25 samples, 0.02%)</title><rect x="6.6100%" y="773" width="0.0166%" height="15" fill="rgb(207,120,37)" fg:x="9932" fg:w="25"/><text x="6.8600%" y="783.50"></text></g><g><title>msort_with_tmp (22 samples, 0.01%)</title><rect x="6.6120%" y="757" width="0.0146%" height="15" fill="rgb(227,98,0)" fg:x="9935" fg:w="22"/><text x="6.8620%" y="767.50"></text></g><g><title>msort_with_tmp (22 samples, 0.01%)</title><rect x="6.6120%" y="741" width="0.0146%" height="15" fill="rgb(207,7,3)" fg:x="9935" fg:w="22"/><text x="6.8620%" y="751.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="6.6140%" y="725" width="0.0126%" height="15" fill="rgb(206,98,19)" fg:x="9938" fg:w="19"/><text x="6.8640%" y="735.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="6.6140%" y="709" width="0.0126%" height="15" fill="rgb(217,5,26)" fg:x="9938" fg:w="19"/><text x="6.8640%" y="719.50"></text></g><g><title>msort_with_tmp (17 samples, 0.01%)</title><rect x="6.6153%" y="693" width="0.0113%" height="15" fill="rgb(235,190,38)" fg:x="9940" fg:w="17"/><text x="6.8653%" y="703.50"></text></g><g><title>msort_with_tmp (16 samples, 0.01%)</title><rect x="6.6160%" y="677" width="0.0106%" height="15" fill="rgb(247,86,24)" fg:x="9941" fg:w="16"/><text x="6.8660%" y="687.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (34 samples, 0.02%)</title><rect x="6.6266%" y="789" width="0.0226%" height="15" fill="rgb(205,101,16)" fg:x="9957" fg:w="34"/><text x="6.8766%" y="799.50"></text></g><g><title>LinearScan::do_linear_scan (2,737 samples, 1.82%)</title><rect x="4.8290%" y="805" width="1.8215%" height="15" fill="rgb(246,168,33)" fg:x="7256" fg:w="2737"/><text x="5.0790%" y="815.50">L..</text></g><g><title>Compilation::emit_lir (3,567 samples, 2.37%)</title><rect x="4.2780%" y="821" width="2.3739%" height="15" fill="rgb(231,114,1)" fg:x="6428" fg:w="3567"/><text x="4.5280%" y="831.50">Co..</text></g><g><title>MethodData::compute_allocation_size_in_bytes (16 samples, 0.01%)</title><rect x="6.6699%" y="757" width="0.0106%" height="15" fill="rgb(207,184,53)" fg:x="10022" fg:w="16"/><text x="6.9199%" y="767.50"></text></g><g><title>MethodData::post_initialize (18 samples, 0.01%)</title><rect x="6.6872%" y="741" width="0.0120%" height="15" fill="rgb(224,95,51)" fg:x="10048" fg:w="18"/><text x="6.9372%" y="751.50"></text></g><g><title>MethodData::initialize (32 samples, 0.02%)</title><rect x="6.6805%" y="757" width="0.0213%" height="15" fill="rgb(212,188,45)" fg:x="10038" fg:w="32"/><text x="6.9305%" y="767.50"></text></g><g><title>MethodData::allocate (61 samples, 0.04%)</title><rect x="6.6619%" y="773" width="0.0406%" height="15" fill="rgb(223,154,38)" fg:x="10010" fg:w="61"/><text x="6.9119%" y="783.50"></text></g><g><title>Method::build_interpreter_method_data (62 samples, 0.04%)</title><rect x="6.6619%" y="789" width="0.0413%" height="15" fill="rgb(251,22,52)" fg:x="10010" fg:w="62"/><text x="6.9119%" y="799.50"></text></g><g><title>ciMethodData::load_data (36 samples, 0.02%)</title><rect x="6.7031%" y="789" width="0.0240%" height="15" fill="rgb(229,209,22)" fg:x="10072" fg:w="36"/><text x="6.9531%" y="799.50"></text></g><g><title>Compilation::compile_java_method (8,445 samples, 5.62%)</title><rect x="1.1094%" y="837" width="5.6203%" height="15" fill="rgb(234,138,34)" fg:x="1667" fg:w="8445"/><text x="1.3594%" y="847.50">Compila..</text></g><g><title>ciMethod::ensure_method_data (103 samples, 0.07%)</title><rect x="6.6612%" y="821" width="0.0685%" height="15" fill="rgb(212,95,11)" fg:x="10009" fg:w="103"/><text x="6.9112%" y="831.50"></text></g><g><title>ciMethod::ensure_method_data (102 samples, 0.07%)</title><rect x="6.6619%" y="805" width="0.0679%" height="15" fill="rgb(240,179,47)" fg:x="10010" fg:w="102"/><text x="6.9119%" y="815.50"></text></g><g><title>Dependencies::initialize (20 samples, 0.01%)</title><rect x="6.7391%" y="821" width="0.0133%" height="15" fill="rgb(240,163,11)" fg:x="10126" fg:w="20"/><text x="6.9891%" y="831.50"></text></g><g><title>Compilation::initialize (35 samples, 0.02%)</title><rect x="6.7298%" y="837" width="0.0233%" height="15" fill="rgb(236,37,12)" fg:x="10112" fg:w="35"/><text x="6.9798%" y="847.50"></text></g><g><title>CodeBuffer::finalize_oop_references (71 samples, 0.05%)</title><rect x="6.7877%" y="805" width="0.0473%" height="15" fill="rgb(232,164,16)" fg:x="10199" fg:w="71"/><text x="7.0377%" y="815.50"></text></g><g><title>CodeHeap::allocate (21 samples, 0.01%)</title><rect x="6.8356%" y="789" width="0.0140%" height="15" fill="rgb(244,205,15)" fg:x="10271" fg:w="21"/><text x="7.0856%" y="799.50"></text></g><g><title>CodeHeap::expand_by (19 samples, 0.01%)</title><rect x="6.8496%" y="789" width="0.0126%" height="15" fill="rgb(223,117,47)" fg:x="10292" fg:w="19"/><text x="7.0996%" y="799.50"></text></g><g><title>VirtualSpace::expand_by (19 samples, 0.01%)</title><rect x="6.8496%" y="773" width="0.0126%" height="15" fill="rgb(244,107,35)" fg:x="10292" fg:w="19"/><text x="7.0996%" y="783.50"></text></g><g><title>os::commit_memory (18 samples, 0.01%)</title><rect x="6.8502%" y="757" width="0.0120%" height="15" fill="rgb(205,140,8)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="767.50"></text></g><g><title>os::pd_commit_memory (18 samples, 0.01%)</title><rect x="6.8502%" y="741" width="0.0120%" height="15" fill="rgb(228,84,46)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="751.50"></text></g><g><title>__GI___mmap64 (18 samples, 0.01%)</title><rect x="6.8502%" y="725" width="0.0120%" height="15" fill="rgb(254,188,9)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="735.50"></text></g><g><title>__GI___mmap64 (18 samples, 0.01%)</title><rect x="6.8502%" y="709" width="0.0120%" height="15" fill="rgb(206,112,54)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="6.8502%" y="693" width="0.0120%" height="15" fill="rgb(216,84,49)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="703.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="6.8502%" y="677" width="0.0120%" height="15" fill="rgb(214,194,35)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="687.50"></text></g><g><title>vm_mmap_pgoff (18 samples, 0.01%)</title><rect x="6.8502%" y="661" width="0.0120%" height="15" fill="rgb(249,28,3)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="671.50"></text></g><g><title>do_mmap (18 samples, 0.01%)</title><rect x="6.8502%" y="645" width="0.0120%" height="15" fill="rgb(222,56,52)" fg:x="10293" fg:w="18"/><text x="7.1002%" y="655.50"></text></g><g><title>mmap_region (17 samples, 0.01%)</title><rect x="6.8509%" y="629" width="0.0113%" height="15" fill="rgb(245,217,50)" fg:x="10294" fg:w="17"/><text x="7.1009%" y="639.50"></text></g><g><title>CodeCache::allocate (46 samples, 0.03%)</title><rect x="6.8349%" y="805" width="0.0306%" height="15" fill="rgb(213,201,24)" fg:x="10270" fg:w="46"/><text x="7.0849%" y="815.50"></text></g><g><title>__pthread_cond_signal (16 samples, 0.01%)</title><rect x="6.8802%" y="805" width="0.0106%" height="15" fill="rgb(248,116,28)" fg:x="10338" fg:w="16"/><text x="7.1302%" y="815.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (28 samples, 0.02%)</title><rect x="6.9015%" y="757" width="0.0186%" height="15" fill="rgb(219,72,43)" fg:x="10370" fg:w="28"/><text x="7.1515%" y="767.50"></text></g><g><title>Relocation::pd_call_destination (23 samples, 0.02%)</title><rect x="6.9048%" y="741" width="0.0153%" height="15" fill="rgb(209,138,14)" fg:x="10375" fg:w="23"/><text x="7.1548%" y="751.50"></text></g><g><title>asm_exc_page_fault (19 samples, 0.01%)</title><rect x="6.9441%" y="741" width="0.0126%" height="15" fill="rgb(222,18,33)" fg:x="10434" fg:w="19"/><text x="7.1941%" y="751.50"></text></g><g><title>exc_page_fault (19 samples, 0.01%)</title><rect x="6.9441%" y="725" width="0.0126%" height="15" fill="rgb(213,199,7)" fg:x="10434" fg:w="19"/><text x="7.1941%" y="735.50"></text></g><g><title>do_user_addr_fault (19 samples, 0.01%)</title><rect x="6.9441%" y="709" width="0.0126%" height="15" fill="rgb(250,110,10)" fg:x="10434" fg:w="19"/><text x="7.1941%" y="719.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (35 samples, 0.02%)</title><rect x="6.9361%" y="757" width="0.0233%" height="15" fill="rgb(248,123,6)" fg:x="10422" fg:w="35"/><text x="7.1861%" y="767.50"></text></g><g><title>CodeBuffer::relocate_code_to (103 samples, 0.07%)</title><rect x="6.8935%" y="773" width="0.0685%" height="15" fill="rgb(206,91,31)" fg:x="10358" fg:w="103"/><text x="7.1435%" y="783.50"></text></g><g><title>CodeBuffer::copy_code_to (114 samples, 0.08%)</title><rect x="6.8915%" y="789" width="0.0759%" height="15" fill="rgb(211,154,13)" fg:x="10355" fg:w="114"/><text x="7.1415%" y="799.50"></text></g><g><title>CodeBlob::CodeBlob (31 samples, 0.02%)</title><rect x="6.9727%" y="773" width="0.0206%" height="15" fill="rgb(225,148,7)" fg:x="10477" fg:w="31"/><text x="7.2227%" y="783.50"></text></g><g><title>ImmutableOopMapSet::build_from (30 samples, 0.02%)</title><rect x="6.9733%" y="757" width="0.0200%" height="15" fill="rgb(220,160,43)" fg:x="10478" fg:w="30"/><text x="7.2233%" y="767.50"></text></g><g><title>CompiledMethod::CompiledMethod (38 samples, 0.03%)</title><rect x="6.9727%" y="789" width="0.0253%" height="15" fill="rgb(213,52,39)" fg:x="10477" fg:w="38"/><text x="7.2227%" y="799.50"></text></g><g><title>G1CodeRootSet::add (35 samples, 0.02%)</title><rect x="7.0086%" y="757" width="0.0233%" height="15" fill="rgb(243,137,7)" fg:x="10531" fg:w="35"/><text x="7.2586%" y="767.50"></text></g><g><title>G1CollectedHeap::register_nmethod (51 samples, 0.03%)</title><rect x="7.0040%" y="789" width="0.0339%" height="15" fill="rgb(230,79,13)" fg:x="10524" fg:w="51"/><text x="7.2540%" y="799.50"></text></g><g><title>nmethod::oops_do (51 samples, 0.03%)</title><rect x="7.0040%" y="773" width="0.0339%" height="15" fill="rgb(247,105,23)" fg:x="10524" fg:w="51"/><text x="7.2540%" y="783.50"></text></g><g><title>nmethod::nmethod (262 samples, 0.17%)</title><rect x="6.8908%" y="805" width="0.1744%" height="15" fill="rgb(223,179,41)" fg:x="10354" fg:w="262"/><text x="7.1408%" y="815.50"></text></g><g><title>nmethod::fix_oop_relocations (23 samples, 0.02%)</title><rect x="7.0499%" y="789" width="0.0153%" height="15" fill="rgb(218,9,34)" fg:x="10593" fg:w="23"/><text x="7.2999%" y="799.50"></text></g><g><title>nmethod::new_nmethod (424 samples, 0.28%)</title><rect x="6.7843%" y="821" width="0.2822%" height="15" fill="rgb(222,106,8)" fg:x="10194" fg:w="424"/><text x="7.0343%" y="831.50"></text></g><g><title>ciEnv::register_method (470 samples, 0.31%)</title><rect x="6.7544%" y="837" width="0.3128%" height="15" fill="rgb(211,220,0)" fg:x="10149" fg:w="470"/><text x="7.0044%" y="847.50"></text></g><g><title>Compilation::compile_method (8,959 samples, 5.96%)</title><rect x="1.1061%" y="853" width="5.9624%" height="15" fill="rgb(229,52,16)" fg:x="1662" fg:w="8959"/><text x="1.3561%" y="863.50">Compilat..</text></g><g><title>Compilation::Compilation (8,969 samples, 5.97%)</title><rect x="1.1041%" y="869" width="5.9691%" height="15" fill="rgb(212,155,18)" fg:x="1659" fg:w="8969"/><text x="1.3541%" y="879.50">Compilat..</text></g><g><title>Compiler::compile_method (8,989 samples, 5.98%)</title><rect x="1.0928%" y="885" width="5.9824%" height="15" fill="rgb(242,21,14)" fg:x="1642" fg:w="8989"/><text x="1.3428%" y="895.50">Compiler..</text></g><g><title>StringEventLog::log (16 samples, 0.01%)</title><rect x="7.0885%" y="885" width="0.0106%" height="15" fill="rgb(222,19,48)" fg:x="10651" fg:w="16"/><text x="7.3385%" y="895.50"></text></g><g><title>ciObjectFactory::ciObjectFactory (39 samples, 0.03%)</title><rect x="7.1124%" y="869" width="0.0260%" height="15" fill="rgb(232,45,27)" fg:x="10687" fg:w="39"/><text x="7.3624%" y="879.50"></text></g><g><title>ciObjectFactory::get (41 samples, 0.03%)</title><rect x="7.1384%" y="869" width="0.0273%" height="15" fill="rgb(249,103,42)" fg:x="10726" fg:w="41"/><text x="7.3884%" y="879.50"></text></g><g><title>ciObjectFactory::get_metadata (26 samples, 0.02%)</title><rect x="7.1484%" y="853" width="0.0173%" height="15" fill="rgb(246,81,33)" fg:x="10741" fg:w="26"/><text x="7.3984%" y="863.50"></text></g><g><title>ciObjectFactory::create_new_metadata (26 samples, 0.02%)</title><rect x="7.1484%" y="837" width="0.0173%" height="15" fill="rgb(252,33,42)" fg:x="10741" fg:w="26"/><text x="7.3984%" y="847.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (22 samples, 0.01%)</title><rect x="7.1510%" y="821" width="0.0146%" height="15" fill="rgb(209,212,41)" fg:x="10745" fg:w="22"/><text x="7.4010%" y="831.50"></text></g><g><title>ciEnv::ciEnv (92 samples, 0.06%)</title><rect x="7.1058%" y="885" width="0.0612%" height="15" fill="rgb(207,154,6)" fg:x="10677" fg:w="92"/><text x="7.3558%" y="895.50"></text></g><g><title>SignatureStream::as_symbol (31 samples, 0.02%)</title><rect x="7.1823%" y="805" width="0.0206%" height="15" fill="rgb(223,64,47)" fg:x="10792" fg:w="31"/><text x="7.4323%" y="815.50"></text></g><g><title>SymbolTable::lookup (29 samples, 0.02%)</title><rect x="7.1836%" y="789" width="0.0193%" height="15" fill="rgb(211,161,38)" fg:x="10794" fg:w="29"/><text x="7.4336%" y="799.50"></text></g><g><title>Dictionary::find (16 samples, 0.01%)</title><rect x="7.2123%" y="773" width="0.0106%" height="15" fill="rgb(219,138,40)" fg:x="10837" fg:w="16"/><text x="7.4623%" y="783.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (19 samples, 0.01%)</title><rect x="7.2123%" y="789" width="0.0126%" height="15" fill="rgb(241,228,46)" fg:x="10837" fg:w="19"/><text x="7.4623%" y="799.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (35 samples, 0.02%)</title><rect x="7.2089%" y="805" width="0.0233%" height="15" fill="rgb(223,209,38)" fg:x="10832" fg:w="35"/><text x="7.4589%" y="815.50"></text></g><g><title>ciMethod::ciMethod (102 samples, 0.07%)</title><rect x="7.1703%" y="837" width="0.0679%" height="15" fill="rgb(236,164,45)" fg:x="10774" fg:w="102"/><text x="7.4203%" y="847.50"></text></g><g><title>ciSignature::ciSignature (91 samples, 0.06%)</title><rect x="7.1777%" y="821" width="0.0606%" height="15" fill="rgb(231,15,5)" fg:x="10785" fg:w="91"/><text x="7.4277%" y="831.50"></text></g><g><title>ciEnv::get_method_from_handle (117 samples, 0.08%)</title><rect x="7.1670%" y="885" width="0.0779%" height="15" fill="rgb(252,35,15)" fg:x="10769" fg:w="117"/><text x="7.4170%" y="895.50"></text></g><g><title>ciObjectFactory::get_metadata (115 samples, 0.08%)</title><rect x="7.1683%" y="869" width="0.0765%" height="15" fill="rgb(248,181,18)" fg:x="10771" fg:w="115"/><text x="7.4183%" y="879.50"></text></g><g><title>ciObjectFactory::create_new_metadata (114 samples, 0.08%)</title><rect x="7.1690%" y="853" width="0.0759%" height="15" fill="rgb(233,39,42)" fg:x="10772" fg:w="114"/><text x="7.4190%" y="863.50"></text></g><g><title>ciEnv::~ciEnv (24 samples, 0.02%)</title><rect x="7.2449%" y="885" width="0.0160%" height="15" fill="rgb(238,110,33)" fg:x="10886" fg:w="24"/><text x="7.4949%" y="895.50"></text></g><g><title>ciObjectFactory::remove_symbols (20 samples, 0.01%)</title><rect x="7.2475%" y="869" width="0.0133%" height="15" fill="rgb(233,195,10)" fg:x="10890" fg:w="20"/><text x="7.4975%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (9,470 samples, 6.30%)</title><rect x="0.9590%" y="901" width="6.3025%" height="15" fill="rgb(254,105,3)" fg:x="1441" fg:w="9470"/><text x="1.2090%" y="911.50">CompileB..</text></g><g><title>__do_sys_sysinfo (17 samples, 0.01%)</title><rect x="7.2688%" y="821" width="0.0113%" height="15" fill="rgb(221,225,9)" fg:x="10922" fg:w="17"/><text x="7.5188%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="7.2688%" y="853" width="0.0120%" height="15" fill="rgb(224,227,45)" fg:x="10922" fg:w="18"/><text x="7.5188%" y="863.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="7.2688%" y="837" width="0.0120%" height="15" fill="rgb(229,198,43)" fg:x="10922" fg:w="18"/><text x="7.5188%" y="847.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (30 samples, 0.02%)</title><rect x="7.2615%" y="901" width="0.0200%" height="15" fill="rgb(206,209,35)" fg:x="10911" fg:w="30"/><text x="7.5115%" y="911.50"></text></g><g><title>os::available_memory (20 samples, 0.01%)</title><rect x="7.2682%" y="885" width="0.0133%" height="15" fill="rgb(245,195,53)" fg:x="10921" fg:w="20"/><text x="7.5182%" y="895.50"></text></g><g><title>__sysinfo (19 samples, 0.01%)</title><rect x="7.2688%" y="869" width="0.0126%" height="15" fill="rgb(240,92,26)" fg:x="10922" fg:w="19"/><text x="7.5188%" y="879.50"></text></g><g><title>CompileTask::select_for_compilation (18 samples, 0.01%)</title><rect x="7.2868%" y="885" width="0.0120%" height="15" fill="rgb(207,40,23)" fg:x="10949" fg:w="18"/><text x="7.5368%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="7.3274%" y="645" width="0.0226%" height="15" fill="rgb(223,111,35)" fg:x="11010" fg:w="34"/><text x="7.5774%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="7.3274%" y="629" width="0.0226%" height="15" fill="rgb(229,147,28)" fg:x="11010" fg:w="34"/><text x="7.5774%" y="639.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="7.3274%" y="613" width="0.0226%" height="15" fill="rgb(211,29,28)" fg:x="11010" fg:w="34"/><text x="7.5774%" y="623.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="7.3274%" y="661" width="0.0246%" height="15" fill="rgb(228,72,33)" fg:x="11010" fg:w="37"/><text x="7.5774%" y="671.50"></text></g><g><title>futex_wait_queue_me (61 samples, 0.04%)</title><rect x="7.3148%" y="709" width="0.0406%" height="15" fill="rgb(205,214,31)" fg:x="10991" fg:w="61"/><text x="7.5648%" y="719.50"></text></g><g><title>schedule (57 samples, 0.04%)</title><rect x="7.3174%" y="693" width="0.0379%" height="15" fill="rgb(224,111,15)" fg:x="10995" fg:w="57"/><text x="7.5674%" y="703.50"></text></g><g><title>__schedule (56 samples, 0.04%)</title><rect x="7.3181%" y="677" width="0.0373%" height="15" fill="rgb(253,21,26)" fg:x="10996" fg:w="56"/><text x="7.5681%" y="687.50"></text></g><g><title>do_futex (68 samples, 0.05%)</title><rect x="7.3128%" y="741" width="0.0453%" height="15" fill="rgb(245,139,43)" fg:x="10988" fg:w="68"/><text x="7.5628%" y="751.50"></text></g><g><title>futex_wait (68 samples, 0.05%)</title><rect x="7.3128%" y="725" width="0.0453%" height="15" fill="rgb(252,170,7)" fg:x="10988" fg:w="68"/><text x="7.5628%" y="735.50"></text></g><g><title>do_syscall_64 (69 samples, 0.05%)</title><rect x="7.3128%" y="773" width="0.0459%" height="15" fill="rgb(231,118,14)" fg:x="10988" fg:w="69"/><text x="7.5628%" y="783.50"></text></g><g><title>__x64_sys_futex (69 samples, 0.05%)</title><rect x="7.3128%" y="757" width="0.0459%" height="15" fill="rgb(238,83,0)" fg:x="10988" fg:w="69"/><text x="7.5628%" y="767.50"></text></g><g><title>__pthread_cond_timedwait (78 samples, 0.05%)</title><rect x="7.3074%" y="837" width="0.0519%" height="15" fill="rgb(221,39,39)" fg:x="10980" fg:w="78"/><text x="7.5574%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (78 samples, 0.05%)</title><rect x="7.3074%" y="821" width="0.0519%" height="15" fill="rgb(222,119,46)" fg:x="10980" fg:w="78"/><text x="7.5574%" y="831.50"></text></g><g><title>futex_abstimed_wait_cancelable (76 samples, 0.05%)</title><rect x="7.3088%" y="805" width="0.0506%" height="15" fill="rgb(222,165,49)" fg:x="10982" fg:w="76"/><text x="7.5588%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (71 samples, 0.05%)</title><rect x="7.3121%" y="789" width="0.0473%" height="15" fill="rgb(219,113,52)" fg:x="10987" fg:w="71"/><text x="7.5621%" y="799.50"></text></g><g><title>Monitor::wait (88 samples, 0.06%)</title><rect x="7.3054%" y="885" width="0.0586%" height="15" fill="rgb(214,7,15)" fg:x="10977" fg:w="88"/><text x="7.5554%" y="895.50"></text></g><g><title>Monitor::IWait (87 samples, 0.06%)</title><rect x="7.3061%" y="869" width="0.0579%" height="15" fill="rgb(235,32,4)" fg:x="10978" fg:w="87"/><text x="7.5561%" y="879.50"></text></g><g><title>os::PlatformEvent::park (85 samples, 0.06%)</title><rect x="7.3074%" y="853" width="0.0566%" height="15" fill="rgb(238,90,54)" fg:x="10980" fg:w="85"/><text x="7.5574%" y="863.50"></text></g><g><title>CompileTask::is_unloaded (16 samples, 0.01%)</title><rect x="7.3873%" y="869" width="0.0106%" height="15" fill="rgb(213,208,19)" fg:x="11100" fg:w="16"/><text x="7.6373%" y="879.50"></text></g><g><title>TieredThresholdPolicy::select_task (59 samples, 0.04%)</title><rect x="7.3640%" y="885" width="0.0393%" height="15" fill="rgb(233,156,4)" fg:x="11065" fg:w="59"/><text x="7.6140%" y="895.50"></text></g><g><title>CompileQueue::get (188 samples, 0.13%)</title><rect x="7.2815%" y="901" width="0.1251%" height="15" fill="rgb(207,194,5)" fg:x="10941" fg:w="188"/><text x="7.5315%" y="911.50"></text></g><g><title>CompileBroker::compiler_thread_loop (9,703 samples, 6.46%)</title><rect x="0.9557%" y="917" width="6.4576%" height="15" fill="rgb(206,111,30)" fg:x="1436" fg:w="9703"/><text x="1.2057%" y="927.50">CompileB..</text></g><g><title>Thread::call_run (9,705 samples, 6.46%)</title><rect x="0.9550%" y="949" width="6.4589%" height="15" fill="rgb(243,70,54)" fg:x="1435" fg:w="9705"/><text x="1.2050%" y="959.50">Thread::..</text></g><g><title>JavaThread::thread_main_inner (9,704 samples, 6.46%)</title><rect x="0.9557%" y="933" width="6.4582%" height="15" fill="rgb(242,28,8)" fg:x="1436" fg:w="9704"/><text x="1.2057%" y="943.50">JavaThre..</text></g><g><title>__GI___clone (9,726 samples, 6.47%)</title><rect x="0.9424%" y="997" width="6.4729%" height="15" fill="rgb(219,106,18)" fg:x="1416" fg:w="9726"/><text x="1.1924%" y="1007.50">__GI___c..</text></g><g><title>start_thread (9,714 samples, 6.46%)</title><rect x="0.9504%" y="981" width="6.4649%" height="15" fill="rgb(244,222,10)" fg:x="1428" fg:w="9714"/><text x="1.2004%" y="991.50">start_th..</text></g><g><title>thread_native_entry (9,714 samples, 6.46%)</title><rect x="0.9504%" y="965" width="6.4649%" height="15" fill="rgb(236,179,52)" fg:x="1428" fg:w="9714"/><text x="1.2004%" y="975.50">thread_n..</text></g><g><title>C1_CompilerThre (11,126 samples, 7.40%)</title><rect x="0.0326%" y="1013" width="7.4046%" height="15" fill="rgb(213,23,39)" fg:x="49" fg:w="11126"/><text x="0.2826%" y="1023.50">C1_Compile..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (27 samples, 0.02%)</title><rect x="7.4751%" y="997" width="0.0180%" height="15" fill="rgb(238,48,10)" fg:x="11232" fg:w="27"/><text x="7.7251%" y="1007.50"></text></g><g><title>RegMask::is_UP (26 samples, 0.02%)</title><rect x="7.4758%" y="981" width="0.0173%" height="15" fill="rgb(251,196,23)" fg:x="11233" fg:w="26"/><text x="7.7258%" y="991.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (21 samples, 0.01%)</title><rect x="7.4938%" y="997" width="0.0140%" height="15" fill="rgb(250,152,24)" fg:x="11260" fg:w="21"/><text x="7.7438%" y="1007.50"></text></g><g><title>ProjNode::pinned (54 samples, 0.04%)</title><rect x="7.5410%" y="981" width="0.0359%" height="15" fill="rgb(209,150,17)" fg:x="11331" fg:w="54"/><text x="7.7910%" y="991.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (55 samples, 0.04%)</title><rect x="7.5410%" y="997" width="0.0366%" height="15" fill="rgb(234,202,34)" fg:x="11331" fg:w="55"/><text x="7.7910%" y="1007.50"></text></g><g><title>CProjNode::is_CFG (26 samples, 0.02%)</title><rect x="7.6755%" y="981" width="0.0173%" height="15" fill="rgb(253,148,53)" fg:x="11533" fg:w="26"/><text x="7.9255%" y="991.50"></text></g><g><title>CallStaticJavaNode::Opcode (19 samples, 0.01%)</title><rect x="7.7101%" y="981" width="0.0126%" height="15" fill="rgb(218,129,16)" fg:x="11585" fg:w="19"/><text x="7.9601%" y="991.50"></text></g><g><title>IfTrueNode::Opcode (17 samples, 0.01%)</title><rect x="7.9057%" y="981" width="0.0113%" height="15" fill="rgb(216,85,19)" fg:x="11879" fg:w="17"/><text x="8.1557%" y="991.50"></text></g><g><title>IndexSetIterator::advance_and_next (21 samples, 0.01%)</title><rect x="7.9257%" y="981" width="0.0140%" height="15" fill="rgb(235,228,7)" fg:x="11909" fg:w="21"/><text x="8.1757%" y="991.50"></text></g><g><title>MultiNode::is_CFG (55 samples, 0.04%)</title><rect x="8.1606%" y="981" width="0.0366%" height="15" fill="rgb(245,175,0)" fg:x="12262" fg:w="55"/><text x="8.4106%" y="991.50"></text></g><g><title>Node::is_CFG (58 samples, 0.04%)</title><rect x="8.2352%" y="981" width="0.0386%" height="15" fill="rgb(208,168,36)" fg:x="12374" fg:w="58"/><text x="8.4852%" y="991.50"></text></g><g><title>Node::pinned (28 samples, 0.02%)</title><rect x="8.2971%" y="981" width="0.0186%" height="15" fill="rgb(246,171,24)" fg:x="12467" fg:w="28"/><text x="8.5471%" y="991.50"></text></g><g><title>PhiNode::Opcode (31 samples, 0.02%)</title><rect x="8.4694%" y="981" width="0.0206%" height="15" fill="rgb(215,142,24)" fg:x="12726" fg:w="31"/><text x="8.7194%" y="991.50"></text></g><g><title>ProjNode::Opcode (18 samples, 0.01%)</title><rect x="8.5054%" y="981" width="0.0120%" height="15" fill="rgb(250,187,7)" fg:x="12780" fg:w="18"/><text x="8.7554%" y="991.50"></text></g><g><title>ProjNode::is_CFG (23 samples, 0.02%)</title><rect x="8.5180%" y="981" width="0.0153%" height="15" fill="rgb(228,66,33)" fg:x="12799" fg:w="23"/><text x="8.7680%" y="991.50"></text></g><g><title>ProjNode::pinned (25 samples, 0.02%)</title><rect x="8.5333%" y="981" width="0.0166%" height="15" fill="rgb(234,215,21)" fg:x="12822" fg:w="25"/><text x="8.7833%" y="991.50"></text></g><g><title>RegionNode::Opcode (19 samples, 0.01%)</title><rect x="8.5886%" y="981" width="0.0126%" height="15" fill="rgb(222,191,20)" fg:x="12905" fg:w="19"/><text x="8.8386%" y="991.50"></text></g><g><title>RegionNode::is_CFG (36 samples, 0.02%)</title><rect x="8.6105%" y="981" width="0.0240%" height="15" fill="rgb(245,79,54)" fg:x="12938" fg:w="36"/><text x="8.8605%" y="991.50"></text></g><g><title>TypeNode::bottom_type (16 samples, 0.01%)</title><rect x="8.7895%" y="981" width="0.0106%" height="15" fill="rgb(240,10,37)" fg:x="13207" fg:w="16"/><text x="9.0395%" y="991.50"></text></g><g><title>_dl_update_slotinfo (144 samples, 0.10%)</title><rect x="8.8581%" y="981" width="0.0958%" height="15" fill="rgb(214,192,32)" fg:x="13310" fg:w="144"/><text x="9.1081%" y="991.50"></text></g><g><title>find_lowest_bit (26 samples, 0.02%)</title><rect x="9.0551%" y="981" width="0.0173%" height="15" fill="rgb(209,36,54)" fg:x="13606" fg:w="26"/><text x="9.3051%" y="991.50"></text></g><g><title>update_get_addr (47 samples, 0.03%)</title><rect x="9.2095%" y="981" width="0.0313%" height="15" fill="rgb(220,10,11)" fg:x="13838" fg:w="47"/><text x="9.4595%" y="991.50"></text></g><g><title>[anon] (2,469 samples, 1.64%)</title><rect x="7.5983%" y="997" width="1.6432%" height="15" fill="rgb(221,106,17)" fg:x="11417" fg:w="2469"/><text x="7.8483%" y="1007.50"></text></g><g><title>[perf-943567.map] (22 samples, 0.01%)</title><rect x="9.2421%" y="997" width="0.0146%" height="15" fill="rgb(251,142,44)" fg:x="13887" fg:w="22"/><text x="9.4921%" y="1007.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (20 samples, 0.01%)</title><rect x="9.2760%" y="725" width="0.0133%" height="15" fill="rgb(238,13,15)" fg:x="13938" fg:w="20"/><text x="9.5260%" y="735.50"></text></g><g><title>ciTypeFlow::df_flow_types (22 samples, 0.01%)</title><rect x="9.2754%" y="757" width="0.0146%" height="15" fill="rgb(208,107,27)" fg:x="13937" fg:w="22"/><text x="9.5254%" y="767.50"></text></g><g><title>ciTypeFlow::flow_block (22 samples, 0.01%)</title><rect x="9.2754%" y="741" width="0.0146%" height="15" fill="rgb(205,136,37)" fg:x="13937" fg:w="22"/><text x="9.5254%" y="751.50"></text></g><g><title>Compile::call_generator (32 samples, 0.02%)</title><rect x="9.2694%" y="837" width="0.0213%" height="15" fill="rgb(250,205,27)" fg:x="13928" fg:w="32"/><text x="9.5194%" y="847.50"></text></g><g><title>InlineTree::ok_to_inline (32 samples, 0.02%)</title><rect x="9.2694%" y="821" width="0.0213%" height="15" fill="rgb(210,80,43)" fg:x="13928" fg:w="32"/><text x="9.5194%" y="831.50"></text></g><g><title>ciMethod::get_flow_analysis (27 samples, 0.02%)</title><rect x="9.2727%" y="805" width="0.0180%" height="15" fill="rgb(247,160,36)" fg:x="13933" fg:w="27"/><text x="9.5227%" y="815.50"></text></g><g><title>ciTypeFlow::do_flow (24 samples, 0.02%)</title><rect x="9.2747%" y="789" width="0.0160%" height="15" fill="rgb(234,13,49)" fg:x="13936" fg:w="24"/><text x="9.5247%" y="799.50"></text></g><g><title>ciTypeFlow::flow_types (24 samples, 0.02%)</title><rect x="9.2747%" y="773" width="0.0160%" height="15" fill="rgb(234,122,0)" fg:x="13936" fg:w="24"/><text x="9.5247%" y="783.50"></text></g><g><title>ciEnv::get_field_by_index (23 samples, 0.02%)</title><rect x="9.3027%" y="693" width="0.0153%" height="15" fill="rgb(207,146,38)" fg:x="13978" fg:w="23"/><text x="9.5527%" y="703.50"></text></g><g><title>ciField::ciField (20 samples, 0.01%)</title><rect x="9.3047%" y="677" width="0.0133%" height="15" fill="rgb(207,177,25)" fg:x="13981" fg:w="20"/><text x="9.5547%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (25 samples, 0.02%)</title><rect x="9.3027%" y="725" width="0.0166%" height="15" fill="rgb(211,178,42)" fg:x="13978" fg:w="25"/><text x="9.5527%" y="735.50"></text></g><g><title>ciBytecodeStream::get_field (25 samples, 0.02%)</title><rect x="9.3027%" y="709" width="0.0166%" height="15" fill="rgb(230,69,54)" fg:x="13978" fg:w="25"/><text x="9.5527%" y="719.50"></text></g><g><title>ciMethod::ciMethod (24 samples, 0.02%)</title><rect x="9.3373%" y="645" width="0.0160%" height="15" fill="rgb(214,135,41)" fg:x="14030" fg:w="24"/><text x="9.5873%" y="655.50"></text></g><g><title>ciSignature::ciSignature (19 samples, 0.01%)</title><rect x="9.3406%" y="629" width="0.0126%" height="15" fill="rgb(237,67,25)" fg:x="14035" fg:w="19"/><text x="9.5906%" y="639.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (52 samples, 0.03%)</title><rect x="9.3193%" y="725" width="0.0346%" height="15" fill="rgb(222,189,50)" fg:x="14003" fg:w="52"/><text x="9.5693%" y="735.50"></text></g><g><title>ciBytecodeStream::get_method (52 samples, 0.03%)</title><rect x="9.3193%" y="709" width="0.0346%" height="15" fill="rgb(245,148,34)" fg:x="14003" fg:w="52"/><text x="9.5693%" y="719.50"></text></g><g><title>ciEnv::get_method_by_index_impl (48 samples, 0.03%)</title><rect x="9.3220%" y="693" width="0.0319%" height="15" fill="rgb(222,29,6)" fg:x="14007" fg:w="48"/><text x="9.5720%" y="703.50"></text></g><g><title>ciObjectFactory::get_metadata (27 samples, 0.02%)</title><rect x="9.3359%" y="677" width="0.0180%" height="15" fill="rgb(221,189,43)" fg:x="14028" fg:w="27"/><text x="9.5859%" y="687.50"></text></g><g><title>ciObjectFactory::create_new_metadata (27 samples, 0.02%)</title><rect x="9.3359%" y="661" width="0.0180%" height="15" fill="rgb(207,36,27)" fg:x="14028" fg:w="27"/><text x="9.5859%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (83 samples, 0.06%)</title><rect x="9.3000%" y="741" width="0.0552%" height="15" fill="rgb(217,90,24)" fg:x="13974" fg:w="83"/><text x="9.5500%" y="751.50"></text></g><g><title>ciTypeFlow::df_flow_types (96 samples, 0.06%)</title><rect x="9.2940%" y="773" width="0.0639%" height="15" fill="rgb(224,66,35)" fg:x="13965" fg:w="96"/><text x="9.5440%" y="783.50"></text></g><g><title>ciTypeFlow::flow_block (96 samples, 0.06%)</title><rect x="9.2940%" y="757" width="0.0639%" height="15" fill="rgb(221,13,50)" fg:x="13965" fg:w="96"/><text x="9.5440%" y="767.50"></text></g><g><title>InlineTree::ok_to_inline (104 samples, 0.07%)</title><rect x="9.2907%" y="837" width="0.0692%" height="15" fill="rgb(236,68,49)" fg:x="13960" fg:w="104"/><text x="9.5407%" y="847.50"></text></g><g><title>ciMethod::get_flow_analysis (101 samples, 0.07%)</title><rect x="9.2927%" y="821" width="0.0672%" height="15" fill="rgb(229,146,28)" fg:x="13963" fg:w="101"/><text x="9.5427%" y="831.50"></text></g><g><title>ciTypeFlow::do_flow (101 samples, 0.07%)</title><rect x="9.2927%" y="805" width="0.0672%" height="15" fill="rgb(225,31,38)" fg:x="13963" fg:w="101"/><text x="9.5427%" y="815.50"></text></g><g><title>ciTypeFlow::flow_types (101 samples, 0.07%)</title><rect x="9.2927%" y="789" width="0.0672%" height="15" fill="rgb(250,208,3)" fg:x="13963" fg:w="101"/><text x="9.5427%" y="799.50"></text></g><g><title>Compile::call_generator (139 samples, 0.09%)</title><rect x="9.2694%" y="853" width="0.0925%" height="15" fill="rgb(246,54,23)" fg:x="13928" fg:w="139"/><text x="9.5194%" y="863.50"></text></g><g><title>InlineTree::should_not_inline (18 samples, 0.01%)</title><rect x="9.4025%" y="709" width="0.0120%" height="15" fill="rgb(243,76,11)" fg:x="14128" fg:w="18"/><text x="9.6525%" y="719.50"></text></g><g><title>InlineTree::try_to_inline (22 samples, 0.01%)</title><rect x="9.4005%" y="725" width="0.0146%" height="15" fill="rgb(245,21,50)" fg:x="14125" fg:w="22"/><text x="9.6505%" y="735.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (27 samples, 0.02%)</title><rect x="9.4384%" y="629" width="0.0180%" height="15" fill="rgb(228,9,43)" fg:x="14182" fg:w="27"/><text x="9.6884%" y="639.50"></text></g><g><title>ciBytecodeStream::get_method (26 samples, 0.02%)</title><rect x="9.4391%" y="613" width="0.0173%" height="15" fill="rgb(208,100,47)" fg:x="14183" fg:w="26"/><text x="9.6891%" y="623.50"></text></g><g><title>ciEnv::get_method_by_index_impl (26 samples, 0.02%)</title><rect x="9.4391%" y="597" width="0.0173%" height="15" fill="rgb(232,26,8)" fg:x="14183" fg:w="26"/><text x="9.6891%" y="607.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (45 samples, 0.03%)</title><rect x="9.4298%" y="645" width="0.0299%" height="15" fill="rgb(216,166,38)" fg:x="14169" fg:w="45"/><text x="9.6798%" y="655.50"></text></g><g><title>ciTypeFlow::flow_block (54 samples, 0.04%)</title><rect x="9.4251%" y="661" width="0.0359%" height="15" fill="rgb(251,202,51)" fg:x="14162" fg:w="54"/><text x="9.6751%" y="671.50"></text></g><g><title>ciTypeFlow::df_flow_types (66 samples, 0.04%)</title><rect x="9.4178%" y="677" width="0.0439%" height="15" fill="rgb(254,216,34)" fg:x="14151" fg:w="66"/><text x="9.6678%" y="687.50"></text></g><g><title>ciTypeFlow::do_flow (74 samples, 0.05%)</title><rect x="9.4171%" y="709" width="0.0492%" height="15" fill="rgb(251,32,27)" fg:x="14150" fg:w="74"/><text x="9.6671%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (74 samples, 0.05%)</title><rect x="9.4171%" y="693" width="0.0492%" height="15" fill="rgb(208,127,28)" fg:x="14150" fg:w="74"/><text x="9.6671%" y="703.50"></text></g><g><title>InlineTree::ok_to_inline (101 samples, 0.07%)</title><rect x="9.4005%" y="741" width="0.0672%" height="15" fill="rgb(224,137,22)" fg:x="14125" fg:w="101"/><text x="9.6505%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (79 samples, 0.05%)</title><rect x="9.4151%" y="725" width="0.0526%" height="15" fill="rgb(254,70,32)" fg:x="14147" fg:w="79"/><text x="9.6651%" y="735.50"></text></g><g><title>Compile::call_generator (122 samples, 0.08%)</title><rect x="9.3885%" y="757" width="0.0812%" height="15" fill="rgb(229,75,37)" fg:x="14107" fg:w="122"/><text x="9.6385%" y="767.50"></text></g><g><title>LibraryIntrinsic::generate (24 samples, 0.02%)</title><rect x="9.4890%" y="757" width="0.0160%" height="15" fill="rgb(252,64,23)" fg:x="14258" fg:w="24"/><text x="9.7390%" y="767.50"></text></g><g><title>LibraryCallKit::try_to_inline (24 samples, 0.02%)</title><rect x="9.4890%" y="741" width="0.0160%" height="15" fill="rgb(232,162,48)" fg:x="14258" fg:w="24"/><text x="9.7390%" y="751.50"></text></g><g><title>Parse::create_entry_map (18 samples, 0.01%)</title><rect x="9.5143%" y="725" width="0.0120%" height="15" fill="rgb(246,160,12)" fg:x="14296" fg:w="18"/><text x="9.7643%" y="735.50"></text></g><g><title>ciTypeFlow::flow_block (17 samples, 0.01%)</title><rect x="9.5742%" y="565" width="0.0113%" height="15" fill="rgb(247,166,0)" fg:x="14386" fg:w="17"/><text x="9.8242%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (24 samples, 0.02%)</title><rect x="9.5702%" y="581" width="0.0160%" height="15" fill="rgb(249,219,21)" fg:x="14380" fg:w="24"/><text x="9.8202%" y="591.50"></text></g><g><title>ciTypeFlow::do_flow (30 samples, 0.02%)</title><rect x="9.5682%" y="613" width="0.0200%" height="15" fill="rgb(205,209,3)" fg:x="14377" fg:w="30"/><text x="9.8182%" y="623.50"></text></g><g><title>ciTypeFlow::flow_types (30 samples, 0.02%)</title><rect x="9.5682%" y="597" width="0.0200%" height="15" fill="rgb(243,44,1)" fg:x="14377" fg:w="30"/><text x="9.8182%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (44 samples, 0.03%)</title><rect x="9.5596%" y="645" width="0.0293%" height="15" fill="rgb(206,159,16)" fg:x="14364" fg:w="44"/><text x="9.8096%" y="655.50"></text></g><g><title>ciMethod::get_flow_analysis (35 samples, 0.02%)</title><rect x="9.5655%" y="629" width="0.0233%" height="15" fill="rgb(244,77,30)" fg:x="14373" fg:w="35"/><text x="9.8155%" y="639.50"></text></g><g><title>Compile::call_generator (58 samples, 0.04%)</title><rect x="9.5522%" y="661" width="0.0386%" height="15" fill="rgb(218,69,12)" fg:x="14353" fg:w="58"/><text x="9.8022%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (16 samples, 0.01%)</title><rect x="9.6634%" y="549" width="0.0106%" height="15" fill="rgb(212,87,7)" fg:x="14520" fg:w="16"/><text x="9.9134%" y="559.50"></text></g><g><title>Compile::call_generator (23 samples, 0.02%)</title><rect x="9.6594%" y="565" width="0.0153%" height="15" fill="rgb(245,114,25)" fg:x="14514" fg:w="23"/><text x="9.9094%" y="575.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.03%)</title><rect x="9.6980%" y="517" width="0.0306%" height="15" fill="rgb(210,61,42)" fg:x="14572" fg:w="46"/><text x="9.9480%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.03%)</title><rect x="9.7026%" y="501" width="0.0260%" height="15" fill="rgb(211,52,33)" fg:x="14579" fg:w="39"/><text x="9.9526%" y="511.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.03%)</title><rect x="9.6980%" y="533" width="0.0326%" height="15" fill="rgb(234,58,33)" fg:x="14572" fg:w="49"/><text x="9.9480%" y="543.50"></text></g><g><title>ParseGenerator::generate (77 samples, 0.05%)</title><rect x="9.6873%" y="565" width="0.0512%" height="15" fill="rgb(220,115,36)" fg:x="14556" fg:w="77"/><text x="9.9373%" y="575.50"></text></g><g><title>Parse::Parse (76 samples, 0.05%)</title><rect x="9.6880%" y="549" width="0.0506%" height="15" fill="rgb(243,153,54)" fg:x="14557" fg:w="76"/><text x="9.9380%" y="559.50"></text></g><g><title>Parse::do_call (139 samples, 0.09%)</title><rect x="9.6574%" y="581" width="0.0925%" height="15" fill="rgb(251,47,18)" fg:x="14511" fg:w="139"/><text x="9.9074%" y="591.50"></text></g><g><title>Parse::do_get_xxx (26 samples, 0.02%)</title><rect x="9.7572%" y="565" width="0.0173%" height="15" fill="rgb(242,102,42)" fg:x="14661" fg:w="26"/><text x="10.0072%" y="575.50"></text></g><g><title>GraphKit::access_store_at (19 samples, 0.01%)</title><rect x="9.7752%" y="549" width="0.0126%" height="15" fill="rgb(234,31,38)" fg:x="14688" fg:w="19"/><text x="10.0252%" y="559.50"></text></g><g><title>BarrierSetC2::store_at (19 samples, 0.01%)</title><rect x="9.7752%" y="533" width="0.0126%" height="15" fill="rgb(221,117,51)" fg:x="14688" fg:w="19"/><text x="10.0252%" y="543.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (18 samples, 0.01%)</title><rect x="9.7759%" y="517" width="0.0120%" height="15" fill="rgb(212,20,18)" fg:x="14689" fg:w="18"/><text x="10.0259%" y="527.50"></text></g><g><title>Parse::do_put_xxx (22 samples, 0.01%)</title><rect x="9.7745%" y="565" width="0.0146%" height="15" fill="rgb(245,133,36)" fg:x="14687" fg:w="22"/><text x="10.0245%" y="575.50"></text></g><g><title>Parse::do_field_access (55 samples, 0.04%)</title><rect x="9.7559%" y="581" width="0.0366%" height="15" fill="rgb(212,6,19)" fg:x="14659" fg:w="55"/><text x="10.0059%" y="591.50"></text></g><g><title>Parse::do_one_block (276 samples, 0.18%)</title><rect x="9.6354%" y="613" width="0.1837%" height="15" fill="rgb(218,1,36)" fg:x="14478" fg:w="276"/><text x="9.8854%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (271 samples, 0.18%)</title><rect x="9.6388%" y="597" width="0.1804%" height="15" fill="rgb(246,84,54)" fg:x="14483" fg:w="271"/><text x="9.8888%" y="607.50"></text></g><g><title>Parse::do_all_blocks (279 samples, 0.19%)</title><rect x="9.6348%" y="629" width="0.1857%" height="15" fill="rgb(242,110,6)" fg:x="14477" fg:w="279"/><text x="9.8848%" y="639.50"></text></g><g><title>Parse::Parse (320 samples, 0.21%)</title><rect x="9.6181%" y="645" width="0.2130%" height="15" fill="rgb(214,47,5)" fg:x="14452" fg:w="320"/><text x="9.8681%" y="655.50"></text></g><g><title>ParseGenerator::generate (321 samples, 0.21%)</title><rect x="9.6181%" y="661" width="0.2136%" height="15" fill="rgb(218,159,25)" fg:x="14452" fg:w="321"/><text x="9.8681%" y="671.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="9.8364%" y="597" width="0.0126%" height="15" fill="rgb(215,211,28)" fg:x="14780" fg:w="19"/><text x="10.0864%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="9.8371%" y="581" width="0.0120%" height="15" fill="rgb(238,59,32)" fg:x="14781" fg:w="18"/><text x="10.0871%" y="591.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="9.8364%" y="613" width="0.0133%" height="15" fill="rgb(226,82,3)" fg:x="14780" fg:w="20"/><text x="10.0864%" y="623.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="9.8351%" y="645" width="0.0160%" height="15" fill="rgb(240,164,32)" fg:x="14778" fg:w="24"/><text x="10.0851%" y="655.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="9.8351%" y="629" width="0.0160%" height="15" fill="rgb(232,46,7)" fg:x="14778" fg:w="24"/><text x="10.0851%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (37 samples, 0.02%)</title><rect x="9.8318%" y="661" width="0.0246%" height="15" fill="rgb(229,129,53)" fg:x="14773" fg:w="37"/><text x="10.0818%" y="671.50"></text></g><g><title>Parse::do_call (480 samples, 0.32%)</title><rect x="9.5516%" y="677" width="0.3195%" height="15" fill="rgb(234,188,29)" fg:x="14352" fg:w="480"/><text x="9.8016%" y="687.50"></text></g><g><title>Parse::do_get_xxx (32 samples, 0.02%)</title><rect x="9.8810%" y="661" width="0.0213%" height="15" fill="rgb(246,141,4)" fg:x="14847" fg:w="32"/><text x="10.1310%" y="671.50"></text></g><g><title>GraphKit::access_store_at (28 samples, 0.02%)</title><rect x="9.9030%" y="645" width="0.0186%" height="15" fill="rgb(229,23,39)" fg:x="14880" fg:w="28"/><text x="10.1530%" y="655.50"></text></g><g><title>BarrierSetC2::store_at (27 samples, 0.02%)</title><rect x="9.9036%" y="629" width="0.0180%" height="15" fill="rgb(206,12,3)" fg:x="14881" fg:w="27"/><text x="10.1536%" y="639.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (27 samples, 0.02%)</title><rect x="9.9036%" y="613" width="0.0180%" height="15" fill="rgb(252,226,20)" fg:x="14881" fg:w="27"/><text x="10.1536%" y="623.50"></text></g><g><title>Parse::do_put_xxx (30 samples, 0.02%)</title><rect x="9.9023%" y="661" width="0.0200%" height="15" fill="rgb(216,123,35)" fg:x="14879" fg:w="30"/><text x="10.1523%" y="671.50"></text></g><g><title>Parse::do_field_access (74 samples, 0.05%)</title><rect x="9.8770%" y="677" width="0.0492%" height="15" fill="rgb(212,68,40)" fg:x="14841" fg:w="74"/><text x="10.1270%" y="687.50"></text></g><g><title>Parse::do_if (16 samples, 0.01%)</title><rect x="9.9263%" y="677" width="0.0106%" height="15" fill="rgb(254,125,32)" fg:x="14915" fg:w="16"/><text x="10.1763%" y="687.50"></text></g><g><title>Parse::do_one_block (645 samples, 0.43%)</title><rect x="9.5296%" y="709" width="0.4293%" height="15" fill="rgb(253,97,22)" fg:x="14319" fg:w="645"/><text x="9.7796%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (631 samples, 0.42%)</title><rect x="9.5389%" y="693" width="0.4199%" height="15" fill="rgb(241,101,14)" fg:x="14333" fg:w="631"/><text x="9.7889%" y="703.50"></text></g><g><title>Parse::do_all_blocks (662 samples, 0.44%)</title><rect x="9.5263%" y="725" width="0.4406%" height="15" fill="rgb(238,103,29)" fg:x="14314" fg:w="662"/><text x="9.7763%" y="735.50"></text></g><g><title>ParseGenerator::generate (716 samples, 0.48%)</title><rect x="9.5057%" y="757" width="0.4765%" height="15" fill="rgb(233,195,47)" fg:x="14283" fg:w="716"/><text x="9.7557%" y="767.50"></text></g><g><title>Parse::Parse (716 samples, 0.48%)</title><rect x="9.5057%" y="741" width="0.4765%" height="15" fill="rgb(246,218,30)" fg:x="14283" fg:w="716"/><text x="9.7557%" y="751.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="10.0048%" y="613" width="0.0220%" height="15" fill="rgb(219,145,47)" fg:x="15033" fg:w="33"/><text x="10.2548%" y="623.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="10.0048%" y="597" width="0.0220%" height="15" fill="rgb(243,12,26)" fg:x="15033" fg:w="33"/><text x="10.2548%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="10.0048%" y="581" width="0.0220%" height="15" fill="rgb(214,87,16)" fg:x="15033" fg:w="33"/><text x="10.2548%" y="591.50"></text></g><g><title>ParseGenerator::generate (40 samples, 0.03%)</title><rect x="10.0015%" y="645" width="0.0266%" height="15" fill="rgb(208,99,42)" fg:x="15028" fg:w="40"/><text x="10.2515%" y="655.50"></text></g><g><title>Parse::Parse (40 samples, 0.03%)</title><rect x="10.0015%" y="629" width="0.0266%" height="15" fill="rgb(253,99,2)" fg:x="15028" fg:w="40"/><text x="10.2515%" y="639.50"></text></g><g><title>Parse::do_call (60 samples, 0.04%)</title><rect x="9.9935%" y="661" width="0.0399%" height="15" fill="rgb(220,168,23)" fg:x="15016" fg:w="60"/><text x="10.2435%" y="671.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.05%)</title><rect x="9.9915%" y="709" width="0.0532%" height="15" fill="rgb(242,38,24)" fg:x="15013" fg:w="80"/><text x="10.2415%" y="719.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.05%)</title><rect x="9.9915%" y="693" width="0.0532%" height="15" fill="rgb(225,182,9)" fg:x="15013" fg:w="80"/><text x="10.2415%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.05%)</title><rect x="9.9915%" y="677" width="0.0532%" height="15" fill="rgb(243,178,37)" fg:x="15013" fg:w="80"/><text x="10.2415%" y="687.50"></text></g><g><title>ParseGenerator::generate (91 samples, 0.06%)</title><rect x="9.9875%" y="741" width="0.0606%" height="15" fill="rgb(232,139,19)" fg:x="15007" fg:w="91"/><text x="10.2375%" y="751.50"></text></g><g><title>Parse::Parse (90 samples, 0.06%)</title><rect x="9.9882%" y="725" width="0.0599%" height="15" fill="rgb(225,201,24)" fg:x="15008" fg:w="90"/><text x="10.2382%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (19 samples, 0.01%)</title><rect x="10.0487%" y="741" width="0.0126%" height="15" fill="rgb(221,47,46)" fg:x="15099" fg:w="19"/><text x="10.2987%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (121 samples, 0.08%)</title><rect x="9.9822%" y="757" width="0.0805%" height="15" fill="rgb(249,23,13)" fg:x="14999" fg:w="121"/><text x="10.2322%" y="767.50"></text></g><g><title>Parse::do_call (1,035 samples, 0.69%)</title><rect x="9.3885%" y="773" width="0.6888%" height="15" fill="rgb(219,9,5)" fg:x="14107" fg:w="1035"/><text x="9.6385%" y="783.50"></text></g><g><title>Parse::do_get_xxx (24 samples, 0.02%)</title><rect x="10.0873%" y="757" width="0.0160%" height="15" fill="rgb(254,171,16)" fg:x="15157" fg:w="24"/><text x="10.3373%" y="767.50"></text></g><g><title>GraphKit::access_store_at (38 samples, 0.03%)</title><rect x="10.1046%" y="741" width="0.0253%" height="15" fill="rgb(230,171,20)" fg:x="15183" fg:w="38"/><text x="10.3546%" y="751.50"></text></g><g><title>BarrierSetC2::store_at (38 samples, 0.03%)</title><rect x="10.1046%" y="725" width="0.0253%" height="15" fill="rgb(210,71,41)" fg:x="15183" fg:w="38"/><text x="10.3546%" y="735.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (36 samples, 0.02%)</title><rect x="10.1060%" y="709" width="0.0240%" height="15" fill="rgb(206,173,20)" fg:x="15185" fg:w="36"/><text x="10.3560%" y="719.50"></text></g><g><title>G1BarrierSetC2::pre_barrier (18 samples, 0.01%)</title><rect x="10.1179%" y="693" width="0.0120%" height="15" fill="rgb(233,88,34)" fg:x="15203" fg:w="18"/><text x="10.3679%" y="703.50"></text></g><g><title>Parse::do_put_xxx (41 samples, 0.03%)</title><rect x="10.1033%" y="757" width="0.0273%" height="15" fill="rgb(223,209,46)" fg:x="15181" fg:w="41"/><text x="10.3533%" y="767.50"></text></g><g><title>Parse::do_field_access (71 samples, 0.05%)</title><rect x="10.0847%" y="773" width="0.0473%" height="15" fill="rgb(250,43,18)" fg:x="15153" fg:w="71"/><text x="10.3347%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,181 samples, 0.79%)</title><rect x="9.3705%" y="821" width="0.7860%" height="15" fill="rgb(208,13,10)" fg:x="14080" fg:w="1181"/><text x="9.6205%" y="831.50"></text></g><g><title>Parse::do_one_block (1,181 samples, 0.79%)</title><rect x="9.3705%" y="805" width="0.7860%" height="15" fill="rgb(212,200,36)" fg:x="14080" fg:w="1181"/><text x="9.6205%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (1,178 samples, 0.78%)</title><rect x="9.3725%" y="789" width="0.7840%" height="15" fill="rgb(225,90,30)" fg:x="14083" fg:w="1178"/><text x="9.6225%" y="799.50"></text></g><g><title>ParseGenerator::generate (1,191 samples, 0.79%)</title><rect x="9.3646%" y="853" width="0.7926%" height="15" fill="rgb(236,182,39)" fg:x="14071" fg:w="1191"/><text x="9.6146%" y="863.50"></text></g><g><title>Parse::Parse (1,191 samples, 0.79%)</title><rect x="9.3646%" y="837" width="0.7926%" height="15" fill="rgb(212,144,35)" fg:x="14071" fg:w="1191"/><text x="9.6146%" y="847.50"></text></g><g><title>ciTypeFlow::df_flow_types (17 samples, 0.01%)</title><rect x="10.1692%" y="661" width="0.0113%" height="15" fill="rgb(228,63,44)" fg:x="15280" fg:w="17"/><text x="10.4192%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (25 samples, 0.02%)</title><rect x="10.1645%" y="725" width="0.0166%" height="15" fill="rgb(228,109,6)" fg:x="15273" fg:w="25"/><text x="10.4145%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (19 samples, 0.01%)</title><rect x="10.1685%" y="709" width="0.0126%" height="15" fill="rgb(238,117,24)" fg:x="15279" fg:w="19"/><text x="10.4185%" y="719.50"></text></g><g><title>ciTypeFlow::do_flow (18 samples, 0.01%)</title><rect x="10.1692%" y="693" width="0.0120%" height="15" fill="rgb(242,26,26)" fg:x="15280" fg:w="18"/><text x="10.4192%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (18 samples, 0.01%)</title><rect x="10.1692%" y="677" width="0.0120%" height="15" fill="rgb(221,92,48)" fg:x="15280" fg:w="18"/><text x="10.4192%" y="687.50"></text></g><g><title>Compile::call_generator (28 samples, 0.02%)</title><rect x="10.1632%" y="741" width="0.0186%" height="15" fill="rgb(209,209,32)" fg:x="15271" fg:w="28"/><text x="10.4132%" y="751.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="10.2124%" y="597" width="0.0213%" height="15" fill="rgb(221,70,22)" fg:x="15345" fg:w="32"/><text x="10.4624%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="10.2131%" y="581" width="0.0206%" height="15" fill="rgb(248,145,5)" fg:x="15346" fg:w="31"/><text x="10.4631%" y="591.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="10.2124%" y="613" width="0.0226%" height="15" fill="rgb(226,116,26)" fg:x="15345" fg:w="34"/><text x="10.4624%" y="623.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="10.2098%" y="645" width="0.0273%" height="15" fill="rgb(244,5,17)" fg:x="15341" fg:w="41"/><text x="10.4598%" y="655.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="10.2098%" y="629" width="0.0273%" height="15" fill="rgb(252,159,33)" fg:x="15341" fg:w="41"/><text x="10.4598%" y="639.50"></text></g><g><title>Parse::do_call (63 samples, 0.04%)</title><rect x="10.1998%" y="661" width="0.0419%" height="15" fill="rgb(206,71,0)" fg:x="15326" fg:w="63"/><text x="10.4498%" y="671.50"></text></g><g><title>Parse::do_field_access (17 samples, 0.01%)</title><rect x="10.2424%" y="661" width="0.0113%" height="15" fill="rgb(233,118,54)" fg:x="15390" fg:w="17"/><text x="10.4924%" y="671.50"></text></g><g><title>Parse::do_one_block (106 samples, 0.07%)</title><rect x="10.1945%" y="693" width="0.0705%" height="15" fill="rgb(234,83,48)" fg:x="15318" fg:w="106"/><text x="10.4445%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.07%)</title><rect x="10.1965%" y="677" width="0.0685%" height="15" fill="rgb(228,3,54)" fg:x="15321" fg:w="103"/><text x="10.4465%" y="687.50"></text></g><g><title>Parse::do_all_blocks (109 samples, 0.07%)</title><rect x="10.1938%" y="709" width="0.0725%" height="15" fill="rgb(226,155,13)" fg:x="15317" fg:w="109"/><text x="10.4438%" y="719.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.08%)</title><rect x="10.1885%" y="741" width="0.0799%" height="15" fill="rgb(241,28,37)" fg:x="15309" fg:w="120"/><text x="10.4385%" y="751.50"></text></g><g><title>Parse::Parse (120 samples, 0.08%)</title><rect x="10.1885%" y="725" width="0.0799%" height="15" fill="rgb(233,93,10)" fg:x="15309" fg:w="120"/><text x="10.4385%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (18 samples, 0.01%)</title><rect x="10.2683%" y="741" width="0.0120%" height="15" fill="rgb(225,113,19)" fg:x="15429" fg:w="18"/><text x="10.5183%" y="751.50"></text></g><g><title>Parse::do_call (183 samples, 0.12%)</title><rect x="10.1625%" y="757" width="0.1218%" height="15" fill="rgb(241,2,18)" fg:x="15270" fg:w="183"/><text x="10.4125%" y="767.50"></text></g><g><title>Parse::do_all_blocks (215 samples, 0.14%)</title><rect x="10.1592%" y="805" width="0.1431%" height="15" fill="rgb(228,207,21)" fg:x="15265" fg:w="215"/><text x="10.4092%" y="815.50"></text></g><g><title>Parse::do_one_block (215 samples, 0.14%)</title><rect x="10.1592%" y="789" width="0.1431%" height="15" fill="rgb(213,211,35)" fg:x="15265" fg:w="215"/><text x="10.4092%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (214 samples, 0.14%)</title><rect x="10.1599%" y="773" width="0.1424%" height="15" fill="rgb(209,83,10)" fg:x="15266" fg:w="214"/><text x="10.4099%" y="783.50"></text></g><g><title>ParseGenerator::generate (217 samples, 0.14%)</title><rect x="10.1585%" y="837" width="0.1444%" height="15" fill="rgb(209,164,1)" fg:x="15264" fg:w="217"/><text x="10.4085%" y="847.50"></text></g><g><title>Parse::Parse (217 samples, 0.14%)</title><rect x="10.1585%" y="821" width="0.1444%" height="15" fill="rgb(213,184,43)" fg:x="15264" fg:w="217"/><text x="10.4085%" y="831.50"></text></g><g><title>Parse::do_call (30 samples, 0.02%)</title><rect x="10.3056%" y="741" width="0.0200%" height="15" fill="rgb(231,61,34)" fg:x="15485" fg:w="30"/><text x="10.5556%" y="751.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.02%)</title><rect x="10.3036%" y="773" width="0.0240%" height="15" fill="rgb(235,75,3)" fg:x="15482" fg:w="36"/><text x="10.5536%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.02%)</title><rect x="10.3043%" y="757" width="0.0233%" height="15" fill="rgb(220,106,47)" fg:x="15483" fg:w="35"/><text x="10.5543%" y="767.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.03%)</title><rect x="10.3029%" y="821" width="0.0253%" height="15" fill="rgb(210,196,33)" fg:x="15481" fg:w="38"/><text x="10.5529%" y="831.50"></text></g><g><title>Parse::Parse (38 samples, 0.03%)</title><rect x="10.3029%" y="805" width="0.0253%" height="15" fill="rgb(229,154,42)" fg:x="15481" fg:w="38"/><text x="10.5529%" y="815.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="10.3036%" y="789" width="0.0246%" height="15" fill="rgb(228,114,26)" fg:x="15482" fg:w="37"/><text x="10.5536%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (39 samples, 0.03%)</title><rect x="10.3029%" y="837" width="0.0260%" height="15" fill="rgb(208,144,1)" fg:x="15481" fg:w="39"/><text x="10.5529%" y="847.50"></text></g><g><title>PredictedCallGenerator::generate (259 samples, 0.17%)</title><rect x="10.1572%" y="853" width="0.1724%" height="15" fill="rgb(239,112,37)" fg:x="15262" fg:w="259"/><text x="10.4072%" y="863.50"></text></g><g><title>Parse::do_call (1,599 samples, 1.06%)</title><rect x="9.2694%" y="869" width="1.0642%" height="15" fill="rgb(210,96,50)" fg:x="13928" fg:w="1599"/><text x="9.5194%" y="879.50"></text></g><g><title>C2Compiler::compile_method (1,625 samples, 1.08%)</title><rect x="9.2581%" y="981" width="1.0815%" height="15" fill="rgb(222,178,2)" fg:x="13911" fg:w="1625"/><text x="9.5081%" y="991.50"></text></g><g><title>Compile::Compile (1,625 samples, 1.08%)</title><rect x="9.2581%" y="965" width="1.0815%" height="15" fill="rgb(226,74,18)" fg:x="13911" fg:w="1625"/><text x="9.5081%" y="975.50"></text></g><g><title>ParseGenerator::generate (1,611 samples, 1.07%)</title><rect x="9.2674%" y="949" width="1.0722%" height="15" fill="rgb(225,67,54)" fg:x="13925" fg:w="1611"/><text x="9.5174%" y="959.50"></text></g><g><title>Parse::Parse (1,611 samples, 1.07%)</title><rect x="9.2674%" y="933" width="1.0722%" height="15" fill="rgb(251,92,32)" fg:x="13925" fg:w="1611"/><text x="9.5174%" y="943.50"></text></g><g><title>Parse::do_all_blocks (1,611 samples, 1.07%)</title><rect x="9.2674%" y="917" width="1.0722%" height="15" fill="rgb(228,149,22)" fg:x="13925" fg:w="1611"/><text x="9.5174%" y="927.50"></text></g><g><title>Parse::do_one_block (1,611 samples, 1.07%)</title><rect x="9.2674%" y="901" width="1.0722%" height="15" fill="rgb(243,54,13)" fg:x="13925" fg:w="1611"/><text x="9.5174%" y="911.50"></text></g><g><title>Parse::do_one_bytecode (1,611 samples, 1.07%)</title><rect x="9.2674%" y="885" width="1.0722%" height="15" fill="rgb(243,180,28)" fg:x="13925" fg:w="1611"/><text x="9.5174%" y="895.50"></text></g><g><title>MachSpillCopyNode::implementation (37 samples, 0.02%)</title><rect x="10.3402%" y="901" width="0.0246%" height="15" fill="rgb(208,167,24)" fg:x="15537" fg:w="37"/><text x="10.5902%" y="911.50"></text></g><g><title>Compile::Output (42 samples, 0.03%)</title><rect x="10.3395%" y="965" width="0.0280%" height="15" fill="rgb(245,73,45)" fg:x="15536" fg:w="42"/><text x="10.5895%" y="975.50"></text></g><g><title>Compile::init_buffer (42 samples, 0.03%)</title><rect x="10.3395%" y="949" width="0.0280%" height="15" fill="rgb(237,203,48)" fg:x="15536" fg:w="42"/><text x="10.5895%" y="959.50"></text></g><g><title>Compile::shorten_branches (41 samples, 0.03%)</title><rect x="10.3402%" y="933" width="0.0273%" height="15" fill="rgb(211,197,16)" fg:x="15537" fg:w="41"/><text x="10.5902%" y="943.50"></text></g><g><title>Compile::scratch_emit_size (41 samples, 0.03%)</title><rect x="10.3402%" y="917" width="0.0273%" height="15" fill="rgb(243,99,51)" fg:x="15537" fg:w="41"/><text x="10.5902%" y="927.50"></text></g><g><title>PhaseCFG::schedule_late (31 samples, 0.02%)</title><rect x="10.3768%" y="933" width="0.0206%" height="15" fill="rgb(215,123,29)" fg:x="15592" fg:w="31"/><text x="10.6268%" y="943.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (31 samples, 0.02%)</title><rect x="10.3768%" y="917" width="0.0206%" height="15" fill="rgb(239,186,37)" fg:x="15592" fg:w="31"/><text x="10.6268%" y="927.50"></text></g><g><title>MachNode::adr_type (19 samples, 0.01%)</title><rect x="10.3848%" y="901" width="0.0126%" height="15" fill="rgb(252,136,39)" fg:x="15604" fg:w="19"/><text x="10.6348%" y="911.50"></text></g><g><title>TypeInstPtr::add_offset (16 samples, 0.01%)</title><rect x="10.3868%" y="885" width="0.0106%" height="15" fill="rgb(223,213,32)" fg:x="15607" fg:w="16"/><text x="10.6368%" y="895.50"></text></g><g><title>PhaseCFG::sched_call (123 samples, 0.08%)</title><rect x="10.3974%" y="917" width="0.0819%" height="15" fill="rgb(233,115,5)" fg:x="15623" fg:w="123"/><text x="10.6474%" y="927.50"></text></g><g><title>PhaseCFG::schedule_local (124 samples, 0.08%)</title><rect x="10.3974%" y="933" width="0.0825%" height="15" fill="rgb(207,226,44)" fg:x="15623" fg:w="124"/><text x="10.6474%" y="943.50"></text></g><g><title>PhaseCFG::do_global_code_motion (164 samples, 0.11%)</title><rect x="10.3755%" y="965" width="0.1091%" height="15" fill="rgb(208,126,0)" fg:x="15590" fg:w="164"/><text x="10.6255%" y="975.50"></text></g><g><title>PhaseCFG::global_code_motion (164 samples, 0.11%)</title><rect x="10.3755%" y="949" width="0.1091%" height="15" fill="rgb(244,66,21)" fg:x="15590" fg:w="164"/><text x="10.6255%" y="959.50"></text></g><g><title>Node::add_req (19 samples, 0.01%)</title><rect x="10.4966%" y="901" width="0.0126%" height="15" fill="rgb(222,97,12)" fg:x="15772" fg:w="19"/><text x="10.7466%" y="911.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (37 samples, 0.02%)</title><rect x="10.4866%" y="917" width="0.0246%" height="15" fill="rgb(219,213,19)" fg:x="15757" fg:w="37"/><text x="10.7366%" y="927.50"></text></g><g><title>PhaseChaitin::Split (42 samples, 0.03%)</title><rect x="10.4846%" y="949" width="0.0280%" height="15" fill="rgb(252,169,30)" fg:x="15754" fg:w="42"/><text x="10.7346%" y="959.50"></text></g><g><title>PhaseChaitin::split_USE (39 samples, 0.03%)</title><rect x="10.4866%" y="933" width="0.0260%" height="15" fill="rgb(206,32,51)" fg:x="15757" fg:w="39"/><text x="10.7366%" y="943.50"></text></g><g><title>Compile::Code_Gen (264 samples, 0.18%)</title><rect x="10.3395%" y="981" width="0.1757%" height="15" fill="rgb(250,172,42)" fg:x="15536" fg:w="264"/><text x="10.5895%" y="991.50"></text></g><g><title>PhaseChaitin::Register_Allocate (46 samples, 0.03%)</title><rect x="10.4846%" y="965" width="0.0306%" height="15" fill="rgb(209,34,43)" fg:x="15754" fg:w="46"/><text x="10.7346%" y="975.50"></text></g><g><title>OopFlow::build_oop_map (96 samples, 0.06%)</title><rect x="10.8014%" y="901" width="0.0639%" height="15" fill="rgb(223,11,35)" fg:x="16230" fg:w="96"/><text x="11.0514%" y="911.50"></text></g><g><title>OopFlow::compute_reach (158 samples, 0.11%)</title><rect x="10.7608%" y="917" width="0.1052%" height="15" fill="rgb(251,219,26)" fg:x="16169" fg:w="158"/><text x="11.0108%" y="927.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (62 samples, 0.04%)</title><rect x="10.8720%" y="917" width="0.0413%" height="15" fill="rgb(231,119,3)" fg:x="16336" fg:w="62"/><text x="11.1220%" y="927.50"></text></g><g><title>Compile::BuildOopMaps (585 samples, 0.39%)</title><rect x="10.5246%" y="933" width="0.3893%" height="15" fill="rgb(216,97,11)" fg:x="15814" fg:w="585"/><text x="10.7746%" y="943.50"></text></g><g><title>BufferBlob::create (22 samples, 0.01%)</title><rect x="10.9219%" y="901" width="0.0146%" height="15" fill="rgb(223,59,9)" fg:x="16411" fg:w="22"/><text x="11.1719%" y="911.50"></text></g><g><title>Compile::init_scratch_buffer_blob (24 samples, 0.02%)</title><rect x="10.9219%" y="917" width="0.0160%" height="15" fill="rgb(233,93,31)" fg:x="16411" fg:w="24"/><text x="11.1719%" y="927.50"></text></g><g><title>Compile::scratch_emit_size (114 samples, 0.08%)</title><rect x="11.0104%" y="901" width="0.0759%" height="15" fill="rgb(239,81,33)" fg:x="16544" fg:w="114"/><text x="11.2604%" y="911.50"></text></g><g><title>Compile::shorten_branches (242 samples, 0.16%)</title><rect x="10.9379%" y="917" width="0.1611%" height="15" fill="rgb(213,120,34)" fg:x="16435" fg:w="242"/><text x="11.1879%" y="927.50"></text></g><g><title>Compile::init_buffer (279 samples, 0.19%)</title><rect x="10.9139%" y="933" width="0.1857%" height="15" fill="rgb(243,49,53)" fg:x="16399" fg:w="279"/><text x="11.1639%" y="943.50"></text></g><g><title>Compile::Output (874 samples, 0.58%)</title><rect x="10.5192%" y="949" width="0.5817%" height="15" fill="rgb(247,216,33)" fg:x="15806" fg:w="874"/><text x="10.7692%" y="959.50"></text></g><g><title>Compile::FillExceptionTables (20 samples, 0.01%)</title><rect x="11.1695%" y="933" width="0.0133%" height="15" fill="rgb(226,26,14)" fg:x="16783" fg:w="20"/><text x="11.4195%" y="943.50"></text></g><g><title>Compile::FillLocArray (32 samples, 0.02%)</title><rect x="11.1974%" y="917" width="0.0213%" height="15" fill="rgb(215,49,53)" fg:x="16825" fg:w="32"/><text x="11.4474%" y="927.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (27 samples, 0.02%)</title><rect x="11.2234%" y="901" width="0.0180%" height="15" fill="rgb(245,162,40)" fg:x="16864" fg:w="27"/><text x="11.4734%" y="911.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (36 samples, 0.02%)</title><rect x="11.2207%" y="917" width="0.0240%" height="15" fill="rgb(229,68,17)" fg:x="16860" fg:w="36"/><text x="11.4707%" y="927.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (30 samples, 0.02%)</title><rect x="11.2493%" y="901" width="0.0200%" height="15" fill="rgb(213,182,10)" fg:x="16903" fg:w="30"/><text x="11.4993%" y="911.50"></text></g><g><title>DebugInformationRecorder::describe_scope (40 samples, 0.03%)</title><rect x="11.2447%" y="917" width="0.0266%" height="15" fill="rgb(245,125,30)" fg:x="16896" fg:w="40"/><text x="11.4947%" y="927.50"></text></g><g><title>Compile::Process_OopMap_Node (156 samples, 0.10%)</title><rect x="11.1828%" y="933" width="0.1038%" height="15" fill="rgb(232,202,2)" fg:x="16803" fg:w="156"/><text x="11.4328%" y="943.50"></text></g><g><title>Compile::valid_bundle_info (44 samples, 0.03%)</title><rect x="11.2912%" y="933" width="0.0293%" height="15" fill="rgb(237,140,51)" fg:x="16966" fg:w="44"/><text x="11.5412%" y="943.50"></text></g><g><title>MachSpillCopyNode::implementation (16 samples, 0.01%)</title><rect x="11.3272%" y="933" width="0.0106%" height="15" fill="rgb(236,157,25)" fg:x="17020" fg:w="16"/><text x="11.5772%" y="943.50"></text></g><g><title>Compile::fill_buffer (412 samples, 0.27%)</title><rect x="11.1029%" y="949" width="0.2742%" height="15" fill="rgb(219,209,0)" fg:x="16683" fg:w="412"/><text x="11.3529%" y="959.50"></text></g><g><title>Matcher::init_first_stack_mask (38 samples, 0.03%)</title><rect x="11.4024%" y="917" width="0.0253%" height="15" fill="rgb(240,116,54)" fg:x="17133" fg:w="38"/><text x="11.6524%" y="927.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (44 samples, 0.03%)</title><rect x="11.4004%" y="933" width="0.0293%" height="15" fill="rgb(216,10,36)" fg:x="17130" fg:w="44"/><text x="11.6504%" y="943.50"></text></g><g><title>Matcher::is_bmi_pattern (25 samples, 0.02%)</title><rect x="11.5861%" y="917" width="0.0166%" height="15" fill="rgb(222,72,44)" fg:x="17409" fg:w="25"/><text x="11.8361%" y="927.50"></text></g><g><title>Matcher::find_shared (275 samples, 0.18%)</title><rect x="11.4297%" y="933" width="0.1830%" height="15" fill="rgb(232,159,9)" fg:x="17174" fg:w="275"/><text x="11.6797%" y="943.50"></text></g><g><title>Arena::contains (424 samples, 0.28%)</title><rect x="11.7877%" y="917" width="0.2822%" height="15" fill="rgb(210,39,32)" fg:x="17712" fg:w="424"/><text x="12.0377%" y="927.50"></text></g><g><title>Matcher::collect_null_checks (18 samples, 0.01%)</title><rect x="12.0772%" y="917" width="0.0120%" height="15" fill="rgb(216,194,45)" fg:x="18147" fg:w="18"/><text x="12.3272%" y="927.50"></text></g><g><title>Node::add_req (34 samples, 0.02%)</title><rect x="12.1411%" y="885" width="0.0226%" height="15" fill="rgb(218,18,35)" fg:x="18243" fg:w="34"/><text x="12.3911%" y="895.50"></text></g><g><title>Matcher::match_tree (92 samples, 0.06%)</title><rect x="12.1038%" y="901" width="0.0612%" height="15" fill="rgb(207,83,51)" fg:x="18187" fg:w="92"/><text x="12.3538%" y="911.50"></text></g><g><title>Matcher::match_sfpt (122 samples, 0.08%)</title><rect x="12.0892%" y="917" width="0.0812%" height="15" fill="rgb(225,63,43)" fg:x="18165" fg:w="122"/><text x="12.3392%" y="927.50"></text></g><g><title>Matcher::Label_Root (38 samples, 0.03%)</title><rect x="12.3641%" y="853" width="0.0253%" height="15" fill="rgb(207,57,36)" fg:x="18578" fg:w="38"/><text x="12.6141%" y="863.50"></text></g><g><title>State::DFA (18 samples, 0.01%)</title><rect x="12.3774%" y="837" width="0.0120%" height="15" fill="rgb(216,99,33)" fg:x="18598" fg:w="18"/><text x="12.6274%" y="847.50"></text></g><g><title>State::DFA (44 samples, 0.03%)</title><rect x="12.3894%" y="853" width="0.0293%" height="15" fill="rgb(225,42,16)" fg:x="18616" fg:w="44"/><text x="12.6394%" y="863.50"></text></g><g><title>Matcher::Label_Root (104 samples, 0.07%)</title><rect x="12.3514%" y="869" width="0.0692%" height="15" fill="rgb(220,201,45)" fg:x="18559" fg:w="104"/><text x="12.6014%" y="879.50"></text></g><g><title>State::_sub_Op_AddP (24 samples, 0.02%)</title><rect x="12.4266%" y="853" width="0.0160%" height="15" fill="rgb(225,33,4)" fg:x="18672" fg:w="24"/><text x="12.6766%" y="863.50"></text></g><g><title>State::DFA (41 samples, 0.03%)</title><rect x="12.4220%" y="869" width="0.0273%" height="15" fill="rgb(224,33,50)" fg:x="18665" fg:w="41"/><text x="12.6720%" y="879.50"></text></g><g><title>Matcher::Label_Root (210 samples, 0.14%)</title><rect x="12.3135%" y="885" width="0.1398%" height="15" fill="rgb(246,198,51)" fg:x="18502" fg:w="210"/><text x="12.5635%" y="895.50"></text></g><g><title>State::DFA (21 samples, 0.01%)</title><rect x="12.4559%" y="885" width="0.0140%" height="15" fill="rgb(205,22,4)" fg:x="18716" fg:w="21"/><text x="12.7059%" y="895.50"></text></g><g><title>Matcher::Label_Root (330 samples, 0.22%)</title><rect x="12.2662%" y="901" width="0.2196%" height="15" fill="rgb(206,3,8)" fg:x="18431" fg:w="330"/><text x="12.5162%" y="911.50"></text></g><g><title>Matcher::ReduceInst (21 samples, 0.01%)</title><rect x="12.5225%" y="837" width="0.0140%" height="15" fill="rgb(251,23,15)" fg:x="18816" fg:w="21"/><text x="12.7725%" y="847.50"></text></g><g><title>Matcher::ReduceInst_Interior (45 samples, 0.03%)</title><rect x="12.5205%" y="853" width="0.0299%" height="15" fill="rgb(252,88,28)" fg:x="18813" fg:w="45"/><text x="12.7705%" y="863.50"></text></g><g><title>State::MachOperGenerator (16 samples, 0.01%)</title><rect x="12.5398%" y="837" width="0.0106%" height="15" fill="rgb(212,127,14)" fg:x="18842" fg:w="16"/><text x="12.7898%" y="847.50"></text></g><g><title>Matcher::ReduceInst (75 samples, 0.05%)</title><rect x="12.5138%" y="869" width="0.0499%" height="15" fill="rgb(247,145,37)" fg:x="18803" fg:w="75"/><text x="12.7638%" y="879.50"></text></g><g><title>Matcher::ReduceOper (17 samples, 0.01%)</title><rect x="12.5664%" y="869" width="0.0113%" height="15" fill="rgb(209,117,53)" fg:x="18882" fg:w="17"/><text x="12.8164%" y="879.50"></text></g><g><title>Matcher::ReduceInst_Interior (142 samples, 0.09%)</title><rect x="12.5012%" y="885" width="0.0945%" height="15" fill="rgb(212,90,42)" fg:x="18784" fg:w="142"/><text x="12.7512%" y="895.50"></text></g><g><title>State::MachOperGenerator (25 samples, 0.02%)</title><rect x="12.5790%" y="869" width="0.0166%" height="15" fill="rgb(218,164,37)" fg:x="18901" fg:w="25"/><text x="12.8290%" y="879.50"></text></g><g><title>State::MachNodeGenerator (41 samples, 0.03%)</title><rect x="12.6070%" y="885" width="0.0273%" height="15" fill="rgb(246,65,34)" fg:x="18943" fg:w="41"/><text x="12.8570%" y="895.50"></text></g><g><title>State::MachOperGenerator (17 samples, 0.01%)</title><rect x="12.6343%" y="885" width="0.0113%" height="15" fill="rgb(231,100,33)" fg:x="18984" fg:w="17"/><text x="12.8843%" y="895.50"></text></g><g><title>Matcher::ReduceInst (251 samples, 0.17%)</title><rect x="12.4859%" y="901" width="0.1670%" height="15" fill="rgb(228,126,14)" fg:x="18761" fg:w="251"/><text x="12.7359%" y="911.50"></text></g><g><title>Matcher::match_tree (742 samples, 0.49%)</title><rect x="12.1704%" y="917" width="0.4938%" height="15" fill="rgb(215,173,21)" fg:x="18287" fg:w="742"/><text x="12.4204%" y="927.50"></text></g><g><title>Node::clone (50 samples, 0.03%)</title><rect x="12.6695%" y="917" width="0.0333%" height="15" fill="rgb(210,6,40)" fg:x="19037" fg:w="50"/><text x="12.9195%" y="927.50"></text></g><g><title>Node::out_grow (35 samples, 0.02%)</title><rect x="12.7028%" y="917" width="0.0233%" height="15" fill="rgb(212,48,18)" fg:x="19087" fg:w="35"/><text x="12.9528%" y="927.50"></text></g><g><title>Matcher::xform (1,672 samples, 1.11%)</title><rect x="11.6174%" y="933" width="1.1128%" height="15" fill="rgb(230,214,11)" fg:x="17456" fg:w="1672"/><text x="11.8674%" y="943.50"></text></g><g><title>Matcher::match (2,026 samples, 1.35%)</title><rect x="11.3838%" y="949" width="1.3483%" height="15" fill="rgb(254,105,39)" fg:x="17105" fg:w="2026"/><text x="11.6338%" y="959.50"></text></g><g><title>PhaseBlockLayout::find_edges (50 samples, 0.03%)</title><rect x="12.7341%" y="933" width="0.0333%" height="15" fill="rgb(245,158,5)" fg:x="19134" fg:w="50"/><text x="12.9841%" y="943.50"></text></g><g><title>PhaseBlockLayout::grow_traces (48 samples, 0.03%)</title><rect x="12.7674%" y="933" width="0.0319%" height="15" fill="rgb(249,208,11)" fg:x="19184" fg:w="48"/><text x="13.0174%" y="943.50"></text></g><g><title>__GI___qsort_r (30 samples, 0.02%)</title><rect x="12.7794%" y="917" width="0.0200%" height="15" fill="rgb(210,39,28)" fg:x="19202" fg:w="30"/><text x="13.0294%" y="927.50"></text></g><g><title>msort_with_tmp (28 samples, 0.02%)</title><rect x="12.7807%" y="901" width="0.0186%" height="15" fill="rgb(211,56,53)" fg:x="19204" fg:w="28"/><text x="13.0307%" y="911.50"></text></g><g><title>msort_with_tmp (28 samples, 0.02%)</title><rect x="12.7807%" y="885" width="0.0186%" height="15" fill="rgb(226,201,30)" fg:x="19204" fg:w="28"/><text x="13.0307%" y="895.50"></text></g><g><title>msort_with_tmp (24 samples, 0.02%)</title><rect x="12.7833%" y="869" width="0.0160%" height="15" fill="rgb(239,101,34)" fg:x="19208" fg:w="24"/><text x="13.0333%" y="879.50"></text></g><g><title>msort_with_tmp (24 samples, 0.02%)</title><rect x="12.7833%" y="853" width="0.0160%" height="15" fill="rgb(226,209,5)" fg:x="19208" fg:w="24"/><text x="13.0333%" y="863.50"></text></g><g><title>msort_with_tmp (23 samples, 0.02%)</title><rect x="12.7840%" y="837" width="0.0153%" height="15" fill="rgb(250,105,47)" fg:x="19209" fg:w="23"/><text x="13.0340%" y="847.50"></text></g><g><title>msort_with_tmp (23 samples, 0.02%)</title><rect x="12.7840%" y="821" width="0.0153%" height="15" fill="rgb(230,72,3)" fg:x="19209" fg:w="23"/><text x="13.0340%" y="831.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="12.7867%" y="805" width="0.0126%" height="15" fill="rgb(232,218,39)" fg:x="19213" fg:w="19"/><text x="13.0367%" y="815.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="12.7867%" y="789" width="0.0126%" height="15" fill="rgb(248,166,6)" fg:x="19213" fg:w="19"/><text x="13.0367%" y="799.50"></text></g><g><title>msort_with_tmp (16 samples, 0.01%)</title><rect x="12.7887%" y="773" width="0.0106%" height="15" fill="rgb(247,89,20)" fg:x="19216" fg:w="16"/><text x="13.0387%" y="783.50"></text></g><g><title>PhaseBlockLayout::merge_traces (16 samples, 0.01%)</title><rect x="12.7993%" y="933" width="0.0106%" height="15" fill="rgb(248,130,54)" fg:x="19232" fg:w="16"/><text x="13.0493%" y="943.50"></text></g><g><title>Trace::fixup_blocks (16 samples, 0.01%)</title><rect x="12.8100%" y="917" width="0.0106%" height="15" fill="rgb(234,196,4)" fg:x="19248" fg:w="16"/><text x="13.0600%" y="927.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (137 samples, 0.09%)</title><rect x="12.7321%" y="949" width="0.0912%" height="15" fill="rgb(250,143,31)" fg:x="19131" fg:w="137"/><text x="12.9821%" y="959.50"></text></g><g><title>PhaseBlockLayout::reorder_traces (20 samples, 0.01%)</title><rect x="12.8100%" y="933" width="0.0133%" height="15" fill="rgb(211,110,34)" fg:x="19248" fg:w="20"/><text x="13.0600%" y="943.50"></text></g><g><title>PhaseCFG::PhaseCFG (95 samples, 0.06%)</title><rect x="12.8233%" y="949" width="0.0632%" height="15" fill="rgb(215,124,48)" fg:x="19268" fg:w="95"/><text x="13.0733%" y="959.50"></text></g><g><title>PhaseCFG::build_cfg (92 samples, 0.06%)</title><rect x="12.8253%" y="933" width="0.0612%" height="15" fill="rgb(216,46,13)" fg:x="19271" fg:w="92"/><text x="13.0753%" y="943.50"></text></g><g><title>PhaseCFG::do_DFS (36 samples, 0.02%)</title><rect x="12.9071%" y="917" width="0.0240%" height="15" fill="rgb(205,184,25)" fg:x="19394" fg:w="36"/><text x="13.1571%" y="927.50"></text></g><g><title>Block_Stack::most_frequent_successor (21 samples, 0.01%)</title><rect x="12.9171%" y="901" width="0.0140%" height="15" fill="rgb(228,1,10)" fg:x="19409" fg:w="21"/><text x="13.1671%" y="911.50"></text></g><g><title>PhaseCFG::build_dominator_tree (71 samples, 0.05%)</title><rect x="12.8865%" y="933" width="0.0473%" height="15" fill="rgb(213,116,27)" fg:x="19363" fg:w="71"/><text x="13.1365%" y="943.50"></text></g><g><title>CFGLoop::compute_freq (16 samples, 0.01%)</title><rect x="12.9384%" y="917" width="0.0106%" height="15" fill="rgb(241,95,50)" fg:x="19441" fg:w="16"/><text x="13.1884%" y="927.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (41 samples, 0.03%)</title><rect x="12.9338%" y="933" width="0.0273%" height="15" fill="rgb(238,48,32)" fg:x="19434" fg:w="41"/><text x="13.1838%" y="943.50"></text></g><g><title>PhaseCFG::implicit_null_check (37 samples, 0.02%)</title><rect x="13.1361%" y="917" width="0.0246%" height="15" fill="rgb(235,113,49)" fg:x="19738" fg:w="37"/><text x="13.3861%" y="927.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (33 samples, 0.02%)</title><rect x="13.1627%" y="917" width="0.0220%" height="15" fill="rgb(205,127,43)" fg:x="19778" fg:w="33"/><text x="13.4127%" y="927.50"></text></g><g><title>Node_Backward_Iterator::next (200 samples, 0.13%)</title><rect x="13.2366%" y="901" width="0.1331%" height="15" fill="rgb(250,162,2)" fg:x="19889" fg:w="200"/><text x="13.4866%" y="911.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (73 samples, 0.05%)</title><rect x="13.3697%" y="901" width="0.0486%" height="15" fill="rgb(220,13,41)" fg:x="20089" fg:w="73"/><text x="13.6197%" y="911.50"></text></g><g><title>MachNode::adr_type (31 samples, 0.02%)</title><rect x="13.4668%" y="885" width="0.0206%" height="15" fill="rgb(249,221,25)" fg:x="20235" fg:w="31"/><text x="13.7168%" y="895.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (119 samples, 0.08%)</title><rect x="13.4183%" y="901" width="0.0792%" height="15" fill="rgb(215,208,19)" fg:x="20162" fg:w="119"/><text x="13.6683%" y="911.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (58 samples, 0.04%)</title><rect x="13.4975%" y="901" width="0.0386%" height="15" fill="rgb(236,175,2)" fg:x="20281" fg:w="58"/><text x="13.7475%" y="911.50"></text></g><g><title>Node_Array::insert (28 samples, 0.02%)</title><rect x="13.5174%" y="885" width="0.0186%" height="15" fill="rgb(241,52,2)" fg:x="20311" fg:w="28"/><text x="13.7674%" y="895.50"></text></g><g><title>PhaseCFG::schedule_late (530 samples, 0.35%)</title><rect x="13.1847%" y="917" width="0.3527%" height="15" fill="rgb(248,140,14)" fg:x="19811" fg:w="530"/><text x="13.4347%" y="927.50"></text></g><g><title>Node::is_iteratively_computed (18 samples, 0.01%)</title><rect x="13.6505%" y="901" width="0.0120%" height="15" fill="rgb(253,22,42)" fg:x="20511" fg:w="18"/><text x="13.9005%" y="911.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (45 samples, 0.03%)</title><rect x="13.6625%" y="901" width="0.0299%" height="15" fill="rgb(234,61,47)" fg:x="20529" fg:w="45"/><text x="13.9125%" y="911.50"></text></g><g><title>PhaseCFG::needed_for_next_call (29 samples, 0.02%)</title><rect x="13.6924%" y="901" width="0.0193%" height="15" fill="rgb(208,226,15)" fg:x="20574" fg:w="29"/><text x="13.9424%" y="911.50"></text></g><g><title>PhaseCFG::select (74 samples, 0.05%)</title><rect x="13.7117%" y="901" width="0.0492%" height="15" fill="rgb(217,221,4)" fg:x="20603" fg:w="74"/><text x="13.9617%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (17 samples, 0.01%)</title><rect x="13.7670%" y="885" width="0.0113%" height="15" fill="rgb(212,174,34)" fg:x="20686" fg:w="17"/><text x="14.0170%" y="895.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (55 samples, 0.04%)</title><rect x="13.7610%" y="901" width="0.0366%" height="15" fill="rgb(253,83,4)" fg:x="20677" fg:w="55"/><text x="14.0110%" y="911.50"></text></g><g><title>PhaseChaitin::raise_pressure (29 samples, 0.02%)</title><rect x="13.7783%" y="885" width="0.0193%" height="15" fill="rgb(250,195,49)" fg:x="20703" fg:w="29"/><text x="14.0283%" y="895.50"></text></g><g><title>RegMask::is_UP (21 samples, 0.01%)</title><rect x="13.7836%" y="869" width="0.0140%" height="15" fill="rgb(241,192,25)" fg:x="20711" fg:w="21"/><text x="14.0336%" y="879.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (32 samples, 0.02%)</title><rect x="13.7976%" y="901" width="0.0213%" height="15" fill="rgb(208,124,10)" fg:x="20732" fg:w="32"/><text x="14.0476%" y="911.50"></text></g><g><title>PhaseCFG::schedule_local (431 samples, 0.29%)</title><rect x="13.5374%" y="917" width="0.2868%" height="15" fill="rgb(222,33,0)" fg:x="20341" fg:w="431"/><text x="13.7874%" y="927.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (18 samples, 0.01%)</title><rect x="13.8242%" y="917" width="0.0120%" height="15" fill="rgb(234,209,28)" fg:x="20772" fg:w="18"/><text x="14.0742%" y="927.50"></text></g><g><title>MachNode::ideal_reg (19 samples, 0.01%)</title><rect x="13.9700%" y="901" width="0.0126%" height="15" fill="rgb(224,11,23)" fg:x="20991" fg:w="19"/><text x="14.2200%" y="911.50"></text></g><g><title>RegMask::Size (78 samples, 0.05%)</title><rect x="13.9959%" y="901" width="0.0519%" height="15" fill="rgb(232,99,1)" fg:x="21030" fg:w="78"/><text x="14.2459%" y="911.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (346 samples, 0.23%)</title><rect x="13.8462%" y="917" width="0.2303%" height="15" fill="rgb(237,95,45)" fg:x="20805" fg:w="346"/><text x="14.0962%" y="927.50"></text></g><g><title>PhaseChaitin::mark_ssa (58 samples, 0.04%)</title><rect x="14.0765%" y="917" width="0.0386%" height="15" fill="rgb(208,109,11)" fg:x="21151" fg:w="58"/><text x="14.3265%" y="927.50"></text></g><g><title>IndexSet::initialize (84 samples, 0.06%)</title><rect x="14.1410%" y="901" width="0.0559%" height="15" fill="rgb(216,190,48)" fg:x="21248" fg:w="84"/><text x="14.3910%" y="911.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="14.2082%" y="837" width="0.0113%" height="15" fill="rgb(251,171,36)" fg:x="21349" fg:w="17"/><text x="14.4582%" y="847.50"></text></g><g><title>asm_exc_page_fault (18 samples, 0.01%)</title><rect x="14.2082%" y="885" width="0.0120%" height="15" fill="rgb(230,62,22)" fg:x="21349" fg:w="18"/><text x="14.4582%" y="895.50"></text></g><g><title>exc_page_fault (18 samples, 0.01%)</title><rect x="14.2082%" y="869" width="0.0120%" height="15" fill="rgb(225,114,35)" fg:x="21349" fg:w="18"/><text x="14.4582%" y="879.50"></text></g><g><title>do_user_addr_fault (18 samples, 0.01%)</title><rect x="14.2082%" y="853" width="0.0120%" height="15" fill="rgb(215,118,42)" fg:x="21349" fg:w="18"/><text x="14.4582%" y="863.50"></text></g><g><title>[libc-2.31.so] (37 samples, 0.02%)</title><rect x="14.1969%" y="901" width="0.0246%" height="15" fill="rgb(243,119,21)" fg:x="21332" fg:w="37"/><text x="14.4469%" y="911.50"></text></g><g><title>PhaseIFG::init (161 samples, 0.11%)</title><rect x="14.1151%" y="917" width="0.1071%" height="15" fill="rgb(252,177,53)" fg:x="21209" fg:w="161"/><text x="14.3651%" y="927.50"></text></g><g><title>IndexSet::initialize (35 samples, 0.02%)</title><rect x="14.3460%" y="901" width="0.0233%" height="15" fill="rgb(237,209,29)" fg:x="21556" fg:w="35"/><text x="14.5960%" y="911.50"></text></g><g><title>IndexSet::alloc_block_containing (42 samples, 0.03%)</title><rect x="14.4092%" y="885" width="0.0280%" height="15" fill="rgb(212,65,23)" fg:x="21651" fg:w="42"/><text x="14.6592%" y="895.50"></text></g><g><title>PhaseLive::add_livein (143 samples, 0.10%)</title><rect x="14.3700%" y="901" width="0.0952%" height="15" fill="rgb(230,222,46)" fg:x="21592" fg:w="143"/><text x="14.6200%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (42 samples, 0.03%)</title><rect x="14.4372%" y="885" width="0.0280%" height="15" fill="rgb(215,135,32)" fg:x="21693" fg:w="42"/><text x="14.6872%" y="895.50"></text></g><g><title>IndexSet::alloc_block_containing (38 samples, 0.03%)</title><rect x="14.5570%" y="885" width="0.0253%" height="15" fill="rgb(246,101,22)" fg:x="21873" fg:w="38"/><text x="14.8070%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (67 samples, 0.04%)</title><rect x="14.5889%" y="885" width="0.0446%" height="15" fill="rgb(206,107,13)" fg:x="21921" fg:w="67"/><text x="14.8389%" y="895.50"></text></g><g><title>PhaseLive::add_liveout (256 samples, 0.17%)</title><rect x="14.4651%" y="901" width="0.1704%" height="15" fill="rgb(250,100,44)" fg:x="21735" fg:w="256"/><text x="14.7151%" y="911.50"></text></g><g><title>PhaseLive::compute (622 samples, 0.41%)</title><rect x="14.2222%" y="917" width="0.4140%" height="15" fill="rgb(231,147,38)" fg:x="21370" fg:w="622"/><text x="14.4722%" y="927.50"></text></g><g><title>PhaseCFG::do_global_code_motion (2,644 samples, 1.76%)</title><rect x="12.8865%" y="949" width="1.7596%" height="15" fill="rgb(229,8,40)" fg:x="19363" fg:w="2644"/><text x="13.1365%" y="959.50"></text></g><g><title>PhaseCFG::global_code_motion (2,532 samples, 1.69%)</title><rect x="12.9610%" y="933" width="1.6851%" height="15" fill="rgb(221,135,30)" fg:x="19475" fg:w="2532"/><text x="13.2110%" y="943.50"></text></g><g><title>PhaseCFG::fixup_flow (21 samples, 0.01%)</title><rect x="14.6461%" y="949" width="0.0140%" height="15" fill="rgb(249,193,18)" fg:x="22007" fg:w="21"/><text x="14.8961%" y="959.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (48 samples, 0.03%)</title><rect x="14.6601%" y="949" width="0.0319%" height="15" fill="rgb(209,133,39)" fg:x="22028" fg:w="48"/><text x="14.9101%" y="959.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (841 samples, 0.56%)</title><rect x="14.7639%" y="933" width="0.5597%" height="15" fill="rgb(232,100,14)" fg:x="22184" fg:w="841"/><text x="15.0139%" y="943.50"></text></g><g><title>IndexSetIterator::advance_and_next (229 samples, 0.15%)</title><rect x="15.6131%" y="917" width="0.1524%" height="15" fill="rgb(224,185,1)" fg:x="23460" fg:w="229"/><text x="15.8631%" y="927.50"></text></g><g><title>RegMask::find_first_set (25 samples, 0.02%)</title><rect x="15.8148%" y="901" width="0.0166%" height="15" fill="rgb(223,139,8)" fg:x="23763" fg:w="25"/><text x="16.0648%" y="911.50"></text></g><g><title>PhaseChaitin::bias_color (112 samples, 0.07%)</title><rect x="15.7655%" y="917" width="0.0745%" height="15" fill="rgb(232,213,38)" fg:x="23689" fg:w="112"/><text x="16.0155%" y="927.50"></text></g><g><title>IndexSet::alloc_block_containing (28 samples, 0.02%)</title><rect x="15.9972%" y="901" width="0.0186%" height="15" fill="rgb(207,94,22)" fg:x="24037" fg:w="28"/><text x="16.2472%" y="911.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (42 samples, 0.03%)</title><rect x="16.0158%" y="901" width="0.0280%" height="15" fill="rgb(219,183,54)" fg:x="24065" fg:w="42"/><text x="16.2658%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (285 samples, 0.19%)</title><rect x="16.0437%" y="901" width="0.1897%" height="15" fill="rgb(216,185,54)" fg:x="24107" fg:w="285"/><text x="16.2937%" y="911.50"></text></g><g><title>PhaseIFG::re_insert (595 samples, 0.40%)</title><rect x="15.8447%" y="917" width="0.3960%" height="15" fill="rgb(254,217,39)" fg:x="23808" fg:w="595"/><text x="16.0947%" y="927.50"></text></g><g><title>RegMask::clear_to_sets (121 samples, 0.08%)</title><rect x="16.2407%" y="917" width="0.0805%" height="15" fill="rgb(240,178,23)" fg:x="24403" fg:w="121"/><text x="16.4907%" y="927.50"></text></g><g><title>PhaseChaitin::Select (1,502 samples, 1.00%)</title><rect x="15.3236%" y="933" width="0.9996%" height="15" fill="rgb(218,11,47)" fg:x="23025" fg:w="1502"/><text x="15.5736%" y="943.50"></text></g><g><title>IndexSetIterator::advance_and_next (251 samples, 0.17%)</title><rect x="16.4584%" y="917" width="0.1670%" height="15" fill="rgb(218,51,51)" fg:x="24730" fg:w="251"/><text x="16.7084%" y="927.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (56 samples, 0.04%)</title><rect x="16.8144%" y="901" width="0.0373%" height="15" fill="rgb(238,126,27)" fg:x="25265" fg:w="56"/><text x="17.0644%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (315 samples, 0.21%)</title><rect x="16.8517%" y="901" width="0.2096%" height="15" fill="rgb(249,202,22)" fg:x="25321" fg:w="315"/><text x="17.1017%" y="911.50"></text></g><g><title>PhaseChaitin::Simplify (1,117 samples, 0.74%)</title><rect x="16.3233%" y="933" width="0.7434%" height="15" fill="rgb(254,195,49)" fg:x="24527" fg:w="1117"/><text x="16.5733%" y="943.50"></text></g><g><title>PhaseIFG::remove_node (663 samples, 0.44%)</title><rect x="16.6254%" y="917" width="0.4412%" height="15" fill="rgb(208,123,14)" fg:x="24981" fg:w="663"/><text x="16.8754%" y="927.50"></text></g><g><title>CProjNode::is_block_proj (24 samples, 0.02%)</title><rect x="18.2786%" y="917" width="0.0160%" height="15" fill="rgb(224,200,8)" fg:x="27465" fg:w="24"/><text x="18.5286%" y="927.50"></text></g><g><title>MachNode::ideal_reg (26 samples, 0.02%)</title><rect x="18.3804%" y="901" width="0.0173%" height="15" fill="rgb(217,61,36)" fg:x="27618" fg:w="26"/><text x="18.6304%" y="911.50"></text></g><g><title>MachNode::rematerialize (129 samples, 0.09%)</title><rect x="18.3172%" y="917" width="0.0859%" height="15" fill="rgb(206,35,45)" fg:x="27523" fg:w="129"/><text x="18.5672%" y="927.50"></text></g><g><title>Node::rematerialize (100 samples, 0.07%)</title><rect x="18.4163%" y="917" width="0.0666%" height="15" fill="rgb(217,65,33)" fg:x="27672" fg:w="100"/><text x="18.6663%" y="927.50"></text></g><g><title>Node::replace_by (20 samples, 0.01%)</title><rect x="18.4829%" y="917" width="0.0133%" height="15" fill="rgb(222,158,48)" fg:x="27772" fg:w="20"/><text x="18.7329%" y="927.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (19 samples, 0.01%)</title><rect x="18.5255%" y="901" width="0.0126%" height="15" fill="rgb(254,2,54)" fg:x="27836" fg:w="19"/><text x="18.7755%" y="911.50"></text></g><g><title>PhaseChaitin::split_DEF (27 samples, 0.02%)</title><rect x="18.5235%" y="917" width="0.0180%" height="15" fill="rgb(250,143,38)" fg:x="27833" fg:w="27"/><text x="18.7735%" y="927.50"></text></g><g><title>PhaseChaitin::clone_projs (16 samples, 0.01%)</title><rect x="18.5468%" y="901" width="0.0106%" height="15" fill="rgb(248,25,0)" fg:x="27868" fg:w="16"/><text x="18.7968%" y="911.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (28 samples, 0.02%)</title><rect x="18.5414%" y="917" width="0.0186%" height="15" fill="rgb(206,152,27)" fg:x="27860" fg:w="28"/><text x="18.7914%" y="927.50"></text></g><g><title>RegMask::is_aligned_pairs (29 samples, 0.02%)</title><rect x="18.6047%" y="885" width="0.0193%" height="15" fill="rgb(240,77,30)" fg:x="27955" fg:w="29"/><text x="18.8547%" y="895.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (53 samples, 0.04%)</title><rect x="18.5907%" y="901" width="0.0353%" height="15" fill="rgb(231,5,3)" fg:x="27934" fg:w="53"/><text x="18.8407%" y="911.50"></text></g><g><title>PhaseChaitin::insert_proj (22 samples, 0.01%)</title><rect x="18.6260%" y="901" width="0.0146%" height="15" fill="rgb(207,226,32)" fg:x="27987" fg:w="22"/><text x="18.8760%" y="911.50"></text></g><g><title>Node_Array::insert (17 samples, 0.01%)</title><rect x="18.6293%" y="885" width="0.0113%" height="15" fill="rgb(222,207,47)" fg:x="27992" fg:w="17"/><text x="18.8793%" y="895.50"></text></g><g><title>PhaseChaitin::split_USE (125 samples, 0.08%)</title><rect x="18.5601%" y="917" width="0.0832%" height="15" fill="rgb(229,115,45)" fg:x="27888" fg:w="125"/><text x="18.8101%" y="927.50"></text></g><g><title>RegMask::Size (18 samples, 0.01%)</title><rect x="18.6486%" y="917" width="0.0120%" height="15" fill="rgb(224,191,6)" fg:x="28021" fg:w="18"/><text x="18.8986%" y="927.50"></text></g><g><title>PhaseChaitin::Split (2,425 samples, 1.61%)</title><rect x="17.0666%" y="933" width="1.6139%" height="15" fill="rgb(230,227,24)" fg:x="25644" fg:w="2425"/><text x="17.3166%" y="943.50"></text></g><g><title>__tls_get_addr (21 samples, 0.01%)</title><rect x="19.2402%" y="901" width="0.0140%" height="15" fill="rgb(228,80,19)" fg:x="28910" fg:w="21"/><text x="19.4902%" y="911.50"></text></g><g><title>IndexSet::IndexSet (223 samples, 0.15%)</title><rect x="19.1138%" y="917" width="0.1484%" height="15" fill="rgb(247,229,0)" fg:x="28720" fg:w="223"/><text x="19.3638%" y="927.50"></text></g><g><title>MachNode::rematerialize (62 samples, 0.04%)</title><rect x="19.2695%" y="917" width="0.0413%" height="15" fill="rgb(237,194,15)" fg:x="28954" fg:w="62"/><text x="19.5195%" y="927.50"></text></g><g><title>IndexSet::alloc_block_containing (39 samples, 0.03%)</title><rect x="19.5311%" y="901" width="0.0260%" height="15" fill="rgb(219,203,20)" fg:x="29347" fg:w="39"/><text x="19.7811%" y="911.50"></text></g><g><title>__tls_get_addr (16 samples, 0.01%)</title><rect x="19.5464%" y="885" width="0.0106%" height="15" fill="rgb(234,128,8)" fg:x="29370" fg:w="16"/><text x="19.7964%" y="895.50"></text></g><g><title>JVMState::debug_start (28 samples, 0.02%)</title><rect x="19.5570%" y="901" width="0.0186%" height="15" fill="rgb(248,202,8)" fg:x="29386" fg:w="28"/><text x="19.8070%" y="911.50"></text></g><g><title>MachNode::rematerialize (69 samples, 0.05%)</title><rect x="19.5770%" y="901" width="0.0459%" height="15" fill="rgb(206,104,37)" fg:x="29416" fg:w="69"/><text x="19.8270%" y="911.50"></text></g><g><title>PhaseChaitin::raise_pressure (110 samples, 0.07%)</title><rect x="19.6289%" y="901" width="0.0732%" height="15" fill="rgb(223,8,27)" fg:x="29494" fg:w="110"/><text x="19.8789%" y="911.50"></text></g><g><title>RegMask::is_UP (35 samples, 0.02%)</title><rect x="19.6788%" y="885" width="0.0233%" height="15" fill="rgb(216,217,28)" fg:x="29569" fg:w="35"/><text x="19.9288%" y="895.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (581 samples, 0.39%)</title><rect x="19.3208%" y="917" width="0.3867%" height="15" fill="rgb(249,199,1)" fg:x="29031" fg:w="581"/><text x="19.5708%" y="927.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (22 samples, 0.01%)</title><rect x="19.7074%" y="917" width="0.0146%" height="15" fill="rgb(240,85,17)" fg:x="29612" fg:w="22"/><text x="19.9574%" y="927.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (34 samples, 0.02%)</title><rect x="19.7221%" y="917" width="0.0226%" height="15" fill="rgb(206,108,45)" fg:x="29634" fg:w="34"/><text x="19.9721%" y="927.50"></text></g><g><title>RegMask::Size (22 samples, 0.01%)</title><rect x="19.7301%" y="901" width="0.0146%" height="15" fill="rgb(245,210,41)" fg:x="29646" fg:w="22"/><text x="19.9801%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (115 samples, 0.08%)</title><rect x="19.8645%" y="901" width="0.0765%" height="15" fill="rgb(206,13,37)" fg:x="29848" fg:w="115"/><text x="20.1145%" y="911.50"></text></g><g><title>RegMask::is_UP (47 samples, 0.03%)</title><rect x="19.9410%" y="901" width="0.0313%" height="15" fill="rgb(250,61,18)" fg:x="29963" fg:w="47"/><text x="20.1910%" y="911.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (343 samples, 0.23%)</title><rect x="19.7447%" y="917" width="0.2283%" height="15" fill="rgb(235,172,48)" fg:x="29668" fg:w="343"/><text x="19.9947%" y="927.50"></text></g><g><title>__tls_get_addr (25 samples, 0.02%)</title><rect x="20.9932%" y="885" width="0.0166%" height="15" fill="rgb(249,201,17)" fg:x="31544" fg:w="25"/><text x="21.2432%" y="895.50"></text></g><g><title>update_get_addr (18 samples, 0.01%)</title><rect x="20.9979%" y="869" width="0.0120%" height="15" fill="rgb(219,208,6)" fg:x="31551" fg:w="18"/><text x="21.2479%" y="879.50"></text></g><g><title>IndexSet::alloc_block_containing (93 samples, 0.06%)</title><rect x="20.9500%" y="901" width="0.0619%" height="15" fill="rgb(248,31,23)" fg:x="31479" fg:w="93"/><text x="21.2000%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (636 samples, 0.42%)</title><rect x="21.0159%" y="901" width="0.4233%" height="15" fill="rgb(245,15,42)" fg:x="31578" fg:w="636"/><text x="21.2659%" y="911.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,205 samples, 1.47%)</title><rect x="19.9730%" y="917" width="1.4675%" height="15" fill="rgb(222,217,39)" fg:x="30011" fg:w="2205"/><text x="20.2230%" y="927.50"></text></g><g><title>PhaseChaitin::lower_pressure (70 samples, 0.05%)</title><rect x="21.4405%" y="917" width="0.0466%" height="15" fill="rgb(210,219,27)" fg:x="32216" fg:w="70"/><text x="21.6905%" y="927.50"></text></g><g><title>RegMask::is_UP (19 samples, 0.01%)</title><rect x="21.4744%" y="901" width="0.0126%" height="15" fill="rgb(252,166,36)" fg:x="32267" fg:w="19"/><text x="21.7244%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (194 samples, 0.13%)</title><rect x="21.7399%" y="901" width="0.1291%" height="15" fill="rgb(245,132,34)" fg:x="32666" fg:w="194"/><text x="21.9899%" y="911.50"></text></g><g><title>RegMask::Size (232 samples, 0.15%)</title><rect x="21.8691%" y="901" width="0.1544%" height="15" fill="rgb(236,54,3)" fg:x="32860" fg:w="232"/><text x="22.1191%" y="911.50"></text></g><g><title>RegMask::smear_to_sets (471 samples, 0.31%)</title><rect x="22.0235%" y="901" width="0.3135%" height="15" fill="rgb(241,173,43)" fg:x="33092" fg:w="471"/><text x="22.2735%" y="911.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,283 samples, 0.85%)</title><rect x="21.4870%" y="917" width="0.8539%" height="15" fill="rgb(215,190,9)" fg:x="32286" fg:w="1283"/><text x="21.7370%" y="927.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (18 samples, 0.01%)</title><rect x="22.3409%" y="917" width="0.0120%" height="15" fill="rgb(242,101,16)" fg:x="33569" fg:w="18"/><text x="22.5909%" y="927.50"></text></g><g><title>RegMask::smear_to_sets (22 samples, 0.01%)</title><rect x="22.3595%" y="917" width="0.0146%" height="15" fill="rgb(223,190,21)" fg:x="33597" fg:w="22"/><text x="22.6095%" y="927.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (5,553 samples, 3.70%)</title><rect x="18.6812%" y="933" width="3.6956%" height="15" fill="rgb(215,228,25)" fg:x="28070" fg:w="5553"/><text x="18.9312%" y="943.50">Phas..</text></g><g><title>IndexSet::alloc_block_containing (19 samples, 0.01%)</title><rect x="22.5685%" y="901" width="0.0126%" height="15" fill="rgb(225,36,22)" fg:x="33911" fg:w="19"/><text x="22.8185%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (51 samples, 0.03%)</title><rect x="22.5818%" y="901" width="0.0339%" height="15" fill="rgb(251,106,46)" fg:x="33931" fg:w="51"/><text x="22.8318%" y="911.50"></text></g><g><title>PhaseChaitin::interfere_with_live (266 samples, 0.18%)</title><rect x="22.4401%" y="917" width="0.1770%" height="15" fill="rgb(208,90,1)" fg:x="33718" fg:w="266"/><text x="22.6901%" y="927.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (365 samples, 0.24%)</title><rect x="22.3768%" y="933" width="0.2429%" height="15" fill="rgb(243,10,4)" fg:x="33623" fg:w="365"/><text x="22.6268%" y="943.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (86 samples, 0.06%)</title><rect x="22.6198%" y="933" width="0.0572%" height="15" fill="rgb(212,137,27)" fg:x="33988" fg:w="86"/><text x="22.8698%" y="943.50"></text></g><g><title>find_hihghest_bit (31 samples, 0.02%)</title><rect x="22.6564%" y="917" width="0.0206%" height="15" fill="rgb(231,220,49)" fg:x="34043" fg:w="31"/><text x="22.9064%" y="927.50"></text></g><g><title>PhaseChaitin::compact (37 samples, 0.02%)</title><rect x="22.6777%" y="933" width="0.0246%" height="15" fill="rgb(237,96,20)" fg:x="34075" fg:w="37"/><text x="22.9277%" y="943.50"></text></g><g><title>PhaseChaitin::de_ssa (69 samples, 0.05%)</title><rect x="22.7023%" y="933" width="0.0459%" height="15" fill="rgb(239,229,30)" fg:x="34112" fg:w="69"/><text x="22.9523%" y="943.50"></text></g><g><title>PhaseChaitin::fixup_spills (46 samples, 0.03%)</title><rect x="22.7495%" y="933" width="0.0306%" height="15" fill="rgb(219,65,33)" fg:x="34183" fg:w="46"/><text x="22.9995%" y="943.50"></text></g><g><title>MachCallJavaNode::in_RegMask (57 samples, 0.04%)</title><rect x="23.6846%" y="917" width="0.0379%" height="15" fill="rgb(243,134,7)" fg:x="35588" fg:w="57"/><text x="23.9346%" y="927.50"></text></g><g><title>MachNode::ideal_reg (53 samples, 0.04%)</title><rect x="23.7252%" y="917" width="0.0353%" height="15" fill="rgb(216,177,54)" fg:x="35649" fg:w="53"/><text x="23.9752%" y="927.50"></text></g><g><title>MachNode::in_RegMask (54 samples, 0.04%)</title><rect x="23.7605%" y="917" width="0.0359%" height="15" fill="rgb(211,160,20)" fg:x="35702" fg:w="54"/><text x="24.0105%" y="927.50"></text></g><g><title>MachProjNode::bottom_type (25 samples, 0.02%)</title><rect x="23.7977%" y="917" width="0.0166%" height="15" fill="rgb(239,85,39)" fg:x="35758" fg:w="25"/><text x="24.0477%" y="927.50"></text></g><g><title>MachSpillCopyNode::ideal_reg (17 samples, 0.01%)</title><rect x="23.8150%" y="917" width="0.0113%" height="15" fill="rgb(232,125,22)" fg:x="35784" fg:w="17"/><text x="24.0650%" y="927.50"></text></g><g><title>PhiNode::in_RegMask (30 samples, 0.02%)</title><rect x="23.8277%" y="917" width="0.0200%" height="15" fill="rgb(244,57,34)" fg:x="35803" fg:w="30"/><text x="24.0777%" y="927.50"></text></g><g><title>RegMask::Size (894 samples, 0.59%)</title><rect x="23.8530%" y="917" width="0.5950%" height="15" fill="rgb(214,203,32)" fg:x="35841" fg:w="894"/><text x="24.1030%" y="927.50"></text></g><g><title>RegMask::clear_to_sets (125 samples, 0.08%)</title><rect x="24.4479%" y="917" width="0.0832%" height="15" fill="rgb(207,58,43)" fg:x="36735" fg:w="125"/><text x="24.6979%" y="927.50"></text></g><g><title>RegMask::is_aligned_pairs (64 samples, 0.04%)</title><rect x="24.5311%" y="917" width="0.0426%" height="15" fill="rgb(215,193,15)" fg:x="36860" fg:w="64"/><text x="24.7811%" y="927.50"></text></g><g><title>RegMask::is_bound1 (99 samples, 0.07%)</title><rect x="24.5737%" y="917" width="0.0659%" height="15" fill="rgb(232,15,44)" fg:x="36924" fg:w="99"/><text x="24.8237%" y="927.50"></text></g><g><title>RegMask::is_bound_pair (48 samples, 0.03%)</title><rect x="24.6396%" y="917" width="0.0319%" height="15" fill="rgb(212,3,48)" fg:x="37023" fg:w="48"/><text x="24.8896%" y="927.50"></text></g><g><title>RegMask::is_vector (25 samples, 0.02%)</title><rect x="24.6716%" y="917" width="0.0166%" height="15" fill="rgb(218,128,7)" fg:x="37071" fg:w="25"/><text x="24.9216%" y="927.50"></text></g><g><title>Dict::Insert (25 samples, 0.02%)</title><rect x="24.6915%" y="901" width="0.0166%" height="15" fill="rgb(226,216,39)" fg:x="37101" fg:w="25"/><text x="24.9415%" y="911.50"></text></g><g><title>Type::hashcons (30 samples, 0.02%)</title><rect x="24.6889%" y="917" width="0.0200%" height="15" fill="rgb(243,47,51)" fg:x="37097" fg:w="30"/><text x="24.9389%" y="927.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (2,971 samples, 1.98%)</title><rect x="22.7802%" y="933" width="1.9773%" height="15" fill="rgb(241,183,40)" fg:x="34229" fg:w="2971"/><text x="23.0302%" y="943.50">P..</text></g><g><title>PhaseChaitin::merge_multidefs (385 samples, 0.26%)</title><rect x="24.7574%" y="933" width="0.2562%" height="15" fill="rgb(231,217,32)" fg:x="37200" fg:w="385"/><text x="25.0074%" y="943.50"></text></g><g><title>Node::replace_by (18 samples, 0.01%)</title><rect x="25.8602%" y="917" width="0.0120%" height="15" fill="rgb(229,61,38)" fg:x="38857" fg:w="18"/><text x="26.1102%" y="927.50"></text></g><g><title>RegMask::Size (18 samples, 0.01%)</title><rect x="26.7507%" y="885" width="0.0120%" height="15" fill="rgb(225,210,5)" fg:x="40195" fg:w="18"/><text x="27.0007%" y="895.50"></text></g><g><title>PhaseChaitin::use_prior_register (68 samples, 0.05%)</title><rect x="26.7234%" y="901" width="0.0453%" height="15" fill="rgb(231,79,45)" fg:x="40154" fg:w="68"/><text x="26.9734%" y="911.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (24 samples, 0.02%)</title><rect x="26.7686%" y="901" width="0.0160%" height="15" fill="rgb(224,100,7)" fg:x="40222" fg:w="24"/><text x="27.0186%" y="911.50"></text></g><g><title>PhaseChaitin::elide_copy (1,361 samples, 0.91%)</title><rect x="25.8815%" y="917" width="0.9058%" height="15" fill="rgb(241,198,18)" fg:x="38889" fg:w="1361"/><text x="26.1315%" y="927.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (26 samples, 0.02%)</title><rect x="26.7946%" y="917" width="0.0173%" height="15" fill="rgb(252,97,53)" fg:x="40261" fg:w="26"/><text x="27.0446%" y="927.50"></text></g><g><title>[libc-2.31.so] (66 samples, 0.04%)</title><rect x="26.8132%" y="917" width="0.0439%" height="15" fill="rgb(220,88,7)" fg:x="40289" fg:w="66"/><text x="27.0632%" y="927.50"></text></g><g><title>find_lowest_bit (223 samples, 0.15%)</title><rect x="26.8605%" y="917" width="0.1484%" height="15" fill="rgb(213,176,14)" fg:x="40360" fg:w="223"/><text x="27.1105%" y="927.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (3,002 samples, 2.00%)</title><rect x="25.0136%" y="933" width="1.9979%" height="15" fill="rgb(246,73,7)" fg:x="37585" fg:w="3002"/><text x="25.2636%" y="943.50">P..</text></g><g><title>IndexSet::IndexSet (28 samples, 0.02%)</title><rect x="27.0788%" y="917" width="0.0186%" height="15" fill="rgb(245,64,36)" fg:x="40688" fg:w="28"/><text x="27.3288%" y="927.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (153 samples, 0.10%)</title><rect x="27.0122%" y="933" width="0.1018%" height="15" fill="rgb(245,80,10)" fg:x="40588" fg:w="153"/><text x="27.2622%" y="943.50"></text></g><g><title>PhaseIFG::Union (39 samples, 0.03%)</title><rect x="27.1719%" y="885" width="0.0260%" height="15" fill="rgb(232,107,50)" fg:x="40828" fg:w="39"/><text x="27.4219%" y="895.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (121 samples, 0.08%)</title><rect x="27.1187%" y="917" width="0.0805%" height="15" fill="rgb(253,3,0)" fg:x="40748" fg:w="121"/><text x="27.3687%" y="927.50"></text></g><g><title>PhaseCoalesce::combine_these_two (56 samples, 0.04%)</title><rect x="27.1619%" y="901" width="0.0373%" height="15" fill="rgb(212,99,53)" fg:x="40813" fg:w="56"/><text x="27.4119%" y="911.50"></text></g><g><title>PhaseCFG::is_uncommon (102 samples, 0.07%)</title><rect x="27.2212%" y="901" width="0.0679%" height="15" fill="rgb(249,111,54)" fg:x="40902" fg:w="102"/><text x="27.4712%" y="911.50"></text></g><g><title>Block::has_uncommon_code (23 samples, 0.02%)</title><rect x="27.2738%" y="885" width="0.0153%" height="15" fill="rgb(249,55,30)" fg:x="40981" fg:w="23"/><text x="27.5238%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (34 samples, 0.02%)</title><rect x="27.4228%" y="869" width="0.0226%" height="15" fill="rgb(237,47,42)" fg:x="41205" fg:w="34"/><text x="27.6728%" y="879.50"></text></g><g><title>IndexSet::lrg_union (203 samples, 0.14%)</title><rect x="27.3117%" y="885" width="0.1351%" height="15" fill="rgb(211,20,18)" fg:x="41038" fg:w="203"/><text x="27.5617%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (21 samples, 0.01%)</title><rect x="27.5539%" y="869" width="0.0140%" height="15" fill="rgb(231,203,46)" fg:x="41402" fg:w="21"/><text x="27.8039%" y="879.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (174 samples, 0.12%)</title><rect x="27.4541%" y="885" width="0.1158%" height="15" fill="rgb(237,142,3)" fg:x="41252" fg:w="174"/><text x="27.7041%" y="895.50"></text></g><g><title>PhaseIFG::effective_degree (53 samples, 0.04%)</title><rect x="27.5699%" y="885" width="0.0353%" height="15" fill="rgb(241,107,1)" fg:x="41426" fg:w="53"/><text x="27.8199%" y="895.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (756 samples, 0.50%)</title><rect x="27.1140%" y="933" width="0.5031%" height="15" fill="rgb(229,83,13)" fg:x="40741" fg:w="756"/><text x="27.3640%" y="943.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (628 samples, 0.42%)</title><rect x="27.1992%" y="917" width="0.4179%" height="15" fill="rgb(241,91,40)" fg:x="40869" fg:w="628"/><text x="27.4492%" y="927.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (493 samples, 0.33%)</title><rect x="27.2891%" y="901" width="0.3281%" height="15" fill="rgb(225,3,45)" fg:x="41004" fg:w="493"/><text x="27.5391%" y="911.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (31 samples, 0.02%)</title><rect x="27.8162%" y="917" width="0.0206%" height="15" fill="rgb(244,223,14)" fg:x="41796" fg:w="31"/><text x="28.0662%" y="927.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (695 samples, 0.46%)</title><rect x="27.6178%" y="933" width="0.4625%" height="15" fill="rgb(224,124,37)" fg:x="41498" fg:w="695"/><text x="27.8678%" y="943.50"></text></g><g><title>IndexSetIterator::advance_and_next (366 samples, 0.24%)</title><rect x="27.8368%" y="917" width="0.2436%" height="15" fill="rgb(251,171,30)" fg:x="41827" fg:w="366"/><text x="28.0868%" y="927.50"></text></g><g><title>__tls_get_addr (16 samples, 0.01%)</title><rect x="28.2687%" y="901" width="0.0106%" height="15" fill="rgb(236,46,54)" fg:x="42476" fg:w="16"/><text x="28.5187%" y="911.50"></text></g><g><title>IndexSet::alloc_block_containing (49 samples, 0.03%)</title><rect x="28.2474%" y="917" width="0.0326%" height="15" fill="rgb(245,213,5)" fg:x="42444" fg:w="49"/><text x="28.4974%" y="927.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (68 samples, 0.05%)</title><rect x="28.2800%" y="917" width="0.0453%" height="15" fill="rgb(230,144,27)" fg:x="42493" fg:w="68"/><text x="28.5300%" y="927.50"></text></g><g><title>IndexSetIterator::advance_and_next (279 samples, 0.19%)</title><rect x="28.3253%" y="917" width="0.1857%" height="15" fill="rgb(220,86,6)" fg:x="42561" fg:w="279"/><text x="28.5753%" y="927.50"></text></g><g><title>PhaseIFG::SquareUp (649 samples, 0.43%)</title><rect x="28.0804%" y="933" width="0.4319%" height="15" fill="rgb(240,20,13)" fg:x="42193" fg:w="649"/><text x="28.3304%" y="943.50"></text></g><g><title>IndexSet::initialize (139 samples, 0.09%)</title><rect x="28.5669%" y="917" width="0.0925%" height="15" fill="rgb(217,89,34)" fg:x="42924" fg:w="139"/><text x="28.8169%" y="927.50"></text></g><g><title>PhaseIFG::init (263 samples, 0.18%)</title><rect x="28.5123%" y="933" width="0.1750%" height="15" fill="rgb(229,13,5)" fg:x="42842" fg:w="263"/><text x="28.7623%" y="943.50"></text></g><g><title>[libc-2.31.so] (41 samples, 0.03%)</title><rect x="28.6600%" y="917" width="0.0273%" height="15" fill="rgb(244,67,35)" fg:x="43064" fg:w="41"/><text x="28.9100%" y="927.50"></text></g><g><title>IndexSet::alloc_block_containing (51 samples, 0.03%)</title><rect x="29.2989%" y="917" width="0.0339%" height="15" fill="rgb(221,40,2)" fg:x="44024" fg:w="51"/><text x="29.5489%" y="927.50"></text></g><g><title>IndexSet::free_block (32 samples, 0.02%)</title><rect x="29.3329%" y="917" width="0.0213%" height="15" fill="rgb(237,157,21)" fg:x="44075" fg:w="32"/><text x="29.5829%" y="927.50"></text></g><g><title>IndexSet::initialize (97 samples, 0.06%)</title><rect x="29.3542%" y="917" width="0.0646%" height="15" fill="rgb(222,94,11)" fg:x="44107" fg:w="97"/><text x="29.6042%" y="927.50"></text></g><g><title>__tls_get_addr (45 samples, 0.03%)</title><rect x="29.8513%" y="885" width="0.0299%" height="15" fill="rgb(249,113,6)" fg:x="44854" fg:w="45"/><text x="30.1013%" y="895.50"></text></g><g><title>update_get_addr (27 samples, 0.02%)</title><rect x="29.8633%" y="869" width="0.0180%" height="15" fill="rgb(238,137,36)" fg:x="44872" fg:w="27"/><text x="30.1133%" y="879.50"></text></g><g><title>_dl_update_slotinfo (21 samples, 0.01%)</title><rect x="29.8673%" y="853" width="0.0140%" height="15" fill="rgb(210,102,26)" fg:x="44878" fg:w="21"/><text x="30.1173%" y="863.50"></text></g><g><title>IndexSet::alloc_block_containing (165 samples, 0.11%)</title><rect x="29.7755%" y="901" width="0.1098%" height="15" fill="rgb(218,30,30)" fg:x="44740" fg:w="165"/><text x="30.0255%" y="911.50"></text></g><g><title>IndexSet::initialize (31 samples, 0.02%)</title><rect x="29.8853%" y="901" width="0.0206%" height="15" fill="rgb(214,67,26)" fg:x="44905" fg:w="31"/><text x="30.1353%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (216 samples, 0.14%)</title><rect x="29.9072%" y="901" width="0.1438%" height="15" fill="rgb(251,9,53)" fg:x="44938" fg:w="216"/><text x="30.1572%" y="911.50"></text></g><g><title>PhaseLive::add_liveout (963 samples, 0.64%)</title><rect x="29.4201%" y="917" width="0.6409%" height="15" fill="rgb(228,204,25)" fg:x="44206" fg:w="963"/><text x="29.6701%" y="927.50"></text></g><g><title>PhaseLive::compute (2,070 samples, 1.38%)</title><rect x="28.6880%" y="933" width="1.3776%" height="15" fill="rgb(207,153,8)" fg:x="43106" fg:w="2070"/><text x="28.9380%" y="943.50"></text></g><g><title>RegMask::Size (39 samples, 0.03%)</title><rect x="30.0703%" y="933" width="0.0260%" height="15" fill="rgb(242,9,16)" fg:x="45183" fg:w="39"/><text x="30.3203%" y="943.50"></text></g><g><title>find_lowest_bit (27 samples, 0.02%)</title><rect x="30.1115%" y="933" width="0.0180%" height="15" fill="rgb(217,211,10)" fg:x="45245" fg:w="27"/><text x="30.3615%" y="943.50"></text></g><g><title>PhaseChaitin::Register_Allocate (23,190 samples, 15.43%)</title><rect x="14.7000%" y="949" width="15.4335%" height="15" fill="rgb(219,228,52)" fg:x="22088" fg:w="23190"/><text x="14.9500%" y="959.50">PhaseChaitin::Register_A..</text></g><g><title>Compile::Code_Gen (29,518 samples, 19.64%)</title><rect x="10.5152%" y="965" width="19.6449%" height="15" fill="rgb(231,92,29)" fg:x="15800" fg:w="29518"/><text x="10.7652%" y="975.50">Compile::Code_Gen</text></g><g><title>PhasePeephole::do_transform (38 samples, 0.03%)</title><rect x="30.1348%" y="949" width="0.0253%" height="15" fill="rgb(232,8,23)" fg:x="45280" fg:w="38"/><text x="30.3848%" y="959.50"></text></g><g><title>Compile::call_generator (20 samples, 0.01%)</title><rect x="30.1648%" y="677" width="0.0133%" height="15" fill="rgb(216,211,34)" fg:x="45325" fg:w="20"/><text x="30.4148%" y="687.50"></text></g><g><title>ciTypeFlow::df_flow_types (16 samples, 0.01%)</title><rect x="30.1814%" y="501" width="0.0106%" height="15" fill="rgb(236,151,0)" fg:x="45350" fg:w="16"/><text x="30.4314%" y="511.50"></text></g><g><title>ciTypeFlow::flow_block (16 samples, 0.01%)</title><rect x="30.1814%" y="485" width="0.0106%" height="15" fill="rgb(209,168,3)" fg:x="45350" fg:w="16"/><text x="30.4314%" y="495.50"></text></g><g><title>Compile::call_generator (22 samples, 0.01%)</title><rect x="30.1781%" y="581" width="0.0146%" height="15" fill="rgb(208,129,28)" fg:x="45345" fg:w="22"/><text x="30.4281%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (17 samples, 0.01%)</title><rect x="30.1814%" y="565" width="0.0113%" height="15" fill="rgb(229,78,22)" fg:x="45350" fg:w="17"/><text x="30.4314%" y="575.50"></text></g><g><title>ciMethod::get_flow_analysis (17 samples, 0.01%)</title><rect x="30.1814%" y="549" width="0.0113%" height="15" fill="rgb(228,187,13)" fg:x="45350" fg:w="17"/><text x="30.4314%" y="559.50"></text></g><g><title>ciTypeFlow::do_flow (17 samples, 0.01%)</title><rect x="30.1814%" y="533" width="0.0113%" height="15" fill="rgb(240,119,24)" fg:x="45350" fg:w="17"/><text x="30.4314%" y="543.50"></text></g><g><title>ciTypeFlow::flow_types (17 samples, 0.01%)</title><rect x="30.1814%" y="517" width="0.0113%" height="15" fill="rgb(209,194,42)" fg:x="45350" fg:w="17"/><text x="30.4314%" y="527.50"></text></g><g><title>Compile::call_generator (22 samples, 0.01%)</title><rect x="30.2074%" y="485" width="0.0146%" height="15" fill="rgb(247,200,46)" fg:x="45389" fg:w="22"/><text x="30.4574%" y="495.50"></text></g><g><title>InlineTree::ok_to_inline (20 samples, 0.01%)</title><rect x="30.2087%" y="469" width="0.0133%" height="15" fill="rgb(218,76,16)" fg:x="45391" fg:w="20"/><text x="30.4587%" y="479.50"></text></g><g><title>ciMethod::get_flow_analysis (16 samples, 0.01%)</title><rect x="30.2114%" y="453" width="0.0106%" height="15" fill="rgb(225,21,48)" fg:x="45395" fg:w="16"/><text x="30.4614%" y="463.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="30.3045%" y="245" width="0.0186%" height="15" fill="rgb(239,223,50)" fg:x="45535" fg:w="28"/><text x="30.5545%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="30.3059%" y="229" width="0.0173%" height="15" fill="rgb(244,45,21)" fg:x="45537" fg:w="26"/><text x="30.5559%" y="239.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="30.3032%" y="261" width="0.0220%" height="15" fill="rgb(232,33,43)" fg:x="45533" fg:w="33"/><text x="30.5532%" y="271.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="30.3019%" y="293" width="0.0273%" height="15" fill="rgb(209,8,3)" fg:x="45531" fg:w="41"/><text x="30.5519%" y="303.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="30.3019%" y="277" width="0.0273%" height="15" fill="rgb(214,25,53)" fg:x="45531" fg:w="41"/><text x="30.5519%" y="287.50"></text></g><g><title>Parse::do_call (70 samples, 0.05%)</title><rect x="30.2872%" y="309" width="0.0466%" height="15" fill="rgb(254,186,54)" fg:x="45509" fg:w="70"/><text x="30.5372%" y="319.50"></text></g><g><title>Parse::do_field_access (21 samples, 0.01%)</title><rect x="30.3338%" y="309" width="0.0140%" height="15" fill="rgb(208,174,49)" fg:x="45579" fg:w="21"/><text x="30.5838%" y="319.50"></text></g><g><title>Parse::do_all_blocks (114 samples, 0.08%)</title><rect x="30.2812%" y="357" width="0.0759%" height="15" fill="rgb(233,191,51)" fg:x="45500" fg:w="114"/><text x="30.5312%" y="367.50"></text></g><g><title>Parse::do_one_block (114 samples, 0.08%)</title><rect x="30.2812%" y="341" width="0.0759%" height="15" fill="rgb(222,134,10)" fg:x="45500" fg:w="114"/><text x="30.5312%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (111 samples, 0.07%)</title><rect x="30.2832%" y="325" width="0.0739%" height="15" fill="rgb(230,226,20)" fg:x="45503" fg:w="111"/><text x="30.5332%" y="335.50"></text></g><g><title>ParseGenerator::generate (128 samples, 0.09%)</title><rect x="30.2773%" y="389" width="0.0852%" height="15" fill="rgb(251,111,25)" fg:x="45494" fg:w="128"/><text x="30.5273%" y="399.50"></text></g><g><title>Parse::Parse (128 samples, 0.09%)</title><rect x="30.2773%" y="373" width="0.0852%" height="15" fill="rgb(224,40,46)" fg:x="45494" fg:w="128"/><text x="30.5273%" y="383.50"></text></g><g><title>Parse::do_call (190 samples, 0.13%)</title><rect x="30.2546%" y="405" width="0.1264%" height="15" fill="rgb(236,108,47)" fg:x="45460" fg:w="190"/><text x="30.5046%" y="415.50"></text></g><g><title>Parse::do_field_access (19 samples, 0.01%)</title><rect x="30.3811%" y="405" width="0.0126%" height="15" fill="rgb(234,93,0)" fg:x="45650" fg:w="19"/><text x="30.6311%" y="415.50"></text></g><g><title>Parse::do_one_block (252 samples, 0.17%)</title><rect x="30.2460%" y="437" width="0.1677%" height="15" fill="rgb(224,213,32)" fg:x="45447" fg:w="252"/><text x="30.4960%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (249 samples, 0.17%)</title><rect x="30.2480%" y="421" width="0.1657%" height="15" fill="rgb(251,11,48)" fg:x="45450" fg:w="249"/><text x="30.4980%" y="431.50"></text></g><g><title>Parse::do_all_blocks (255 samples, 0.17%)</title><rect x="30.2446%" y="453" width="0.1697%" height="15" fill="rgb(236,173,5)" fg:x="45445" fg:w="255"/><text x="30.4946%" y="463.50"></text></g><g><title>Parse::Parse (269 samples, 0.18%)</title><rect x="30.2393%" y="469" width="0.1790%" height="15" fill="rgb(230,95,12)" fg:x="45437" fg:w="269"/><text x="30.4893%" y="479.50"></text></g><g><title>ParseGenerator::generate (270 samples, 0.18%)</title><rect x="30.2393%" y="485" width="0.1797%" height="15" fill="rgb(232,209,1)" fg:x="45437" fg:w="270"/><text x="30.4893%" y="495.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="30.4243%" y="389" width="0.0126%" height="15" fill="rgb(232,6,1)" fg:x="45715" fg:w="19"/><text x="30.6743%" y="399.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.01%)</title><rect x="30.4237%" y="437" width="0.0146%" height="15" fill="rgb(210,224,50)" fg:x="45714" fg:w="22"/><text x="30.6737%" y="447.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="30.4237%" y="421" width="0.0146%" height="15" fill="rgb(228,127,35)" fg:x="45714" fg:w="22"/><text x="30.6737%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="30.4237%" y="405" width="0.0146%" height="15" fill="rgb(245,102,45)" fg:x="45714" fg:w="22"/><text x="30.6737%" y="415.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="30.4230%" y="469" width="0.0166%" height="15" fill="rgb(214,1,49)" fg:x="45713" fg:w="25"/><text x="30.6730%" y="479.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="30.4230%" y="453" width="0.0166%" height="15" fill="rgb(226,163,40)" fg:x="45713" fg:w="25"/><text x="30.6730%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (34 samples, 0.02%)</title><rect x="30.4190%" y="485" width="0.0226%" height="15" fill="rgb(239,212,28)" fg:x="45707" fg:w="34"/><text x="30.6690%" y="495.50"></text></g><g><title>Parse::do_call (360 samples, 0.24%)</title><rect x="30.2074%" y="501" width="0.2396%" height="15" fill="rgb(220,20,13)" fg:x="45389" fg:w="360"/><text x="30.4574%" y="511.50"></text></g><g><title>Parse::do_field_access (23 samples, 0.02%)</title><rect x="30.4476%" y="501" width="0.0153%" height="15" fill="rgb(210,164,35)" fg:x="45750" fg:w="23"/><text x="30.6976%" y="511.50"></text></g><g><title>Parse::do_one_block (415 samples, 0.28%)</title><rect x="30.1981%" y="533" width="0.2762%" height="15" fill="rgb(248,109,41)" fg:x="45375" fg:w="415"/><text x="30.4481%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (413 samples, 0.27%)</title><rect x="30.1994%" y="517" width="0.2749%" height="15" fill="rgb(238,23,50)" fg:x="45377" fg:w="413"/><text x="30.4494%" y="527.50"></text></g><g><title>ParseGenerator::generate (422 samples, 0.28%)</title><rect x="30.1941%" y="581" width="0.2809%" height="15" fill="rgb(211,48,49)" fg:x="45369" fg:w="422"/><text x="30.4441%" y="591.50"></text></g><g><title>Parse::Parse (422 samples, 0.28%)</title><rect x="30.1941%" y="565" width="0.2809%" height="15" fill="rgb(223,36,21)" fg:x="45369" fg:w="422"/><text x="30.4441%" y="575.50"></text></g><g><title>Parse::do_all_blocks (416 samples, 0.28%)</title><rect x="30.1981%" y="549" width="0.2769%" height="15" fill="rgb(207,123,46)" fg:x="45375" fg:w="416"/><text x="30.4481%" y="559.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="30.4796%" y="373" width="0.0106%" height="15" fill="rgb(240,218,32)" fg:x="45798" fg:w="16"/><text x="30.7296%" y="383.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="30.4796%" y="357" width="0.0106%" height="15" fill="rgb(252,5,43)" fg:x="45798" fg:w="16"/><text x="30.7296%" y="367.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="30.4789%" y="389" width="0.0126%" height="15" fill="rgb(252,84,19)" fg:x="45797" fg:w="19"/><text x="30.7289%" y="399.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="30.4789%" y="421" width="0.0173%" height="15" fill="rgb(243,152,39)" fg:x="45797" fg:w="26"/><text x="30.7289%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="30.4789%" y="405" width="0.0173%" height="15" fill="rgb(234,160,15)" fg:x="45797" fg:w="26"/><text x="30.7289%" y="415.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="30.4776%" y="469" width="0.0193%" height="15" fill="rgb(237,34,20)" fg:x="45795" fg:w="29"/><text x="30.7276%" y="479.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="30.4776%" y="453" width="0.0193%" height="15" fill="rgb(229,97,13)" fg:x="45795" fg:w="29"/><text x="30.7276%" y="463.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="30.4782%" y="437" width="0.0186%" height="15" fill="rgb(234,71,50)" fg:x="45796" fg:w="28"/><text x="30.7282%" y="447.50"></text></g><g><title>Parse::do_call (38 samples, 0.03%)</title><rect x="30.4756%" y="485" width="0.0253%" height="15" fill="rgb(253,155,4)" fg:x="45792" fg:w="38"/><text x="30.7256%" y="495.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="30.4749%" y="565" width="0.0273%" height="15" fill="rgb(222,185,37)" fg:x="45791" fg:w="41"/><text x="30.7249%" y="575.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="30.4749%" y="549" width="0.0273%" height="15" fill="rgb(251,177,13)" fg:x="45791" fg:w="41"/><text x="30.7249%" y="559.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.03%)</title><rect x="30.4749%" y="533" width="0.0273%" height="15" fill="rgb(250,179,40)" fg:x="45791" fg:w="41"/><text x="30.7249%" y="543.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.03%)</title><rect x="30.4749%" y="517" width="0.0273%" height="15" fill="rgb(242,44,2)" fg:x="45791" fg:w="41"/><text x="30.7249%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (40 samples, 0.03%)</title><rect x="30.4756%" y="501" width="0.0266%" height="15" fill="rgb(216,177,13)" fg:x="45792" fg:w="40"/><text x="30.7256%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (47 samples, 0.03%)</title><rect x="30.4749%" y="581" width="0.0313%" height="15" fill="rgb(216,106,43)" fg:x="45791" fg:w="47"/><text x="30.7249%" y="591.50"></text></g><g><title>Parse::do_call (496 samples, 0.33%)</title><rect x="30.1781%" y="597" width="0.3301%" height="15" fill="rgb(216,183,2)" fg:x="45345" fg:w="496"/><text x="30.4281%" y="607.50"></text></g><g><title>ParseGenerator::generate (505 samples, 0.34%)</title><rect x="30.1781%" y="677" width="0.3361%" height="15" fill="rgb(249,75,3)" fg:x="45345" fg:w="505"/><text x="30.4281%" y="687.50"></text></g><g><title>Parse::Parse (505 samples, 0.34%)</title><rect x="30.1781%" y="661" width="0.3361%" height="15" fill="rgb(219,67,39)" fg:x="45345" fg:w="505"/><text x="30.4281%" y="671.50"></text></g><g><title>Parse::do_all_blocks (505 samples, 0.34%)</title><rect x="30.1781%" y="645" width="0.3361%" height="15" fill="rgb(253,228,2)" fg:x="45345" fg:w="505"/><text x="30.4281%" y="655.50"></text></g><g><title>Parse::do_one_block (505 samples, 0.34%)</title><rect x="30.1781%" y="629" width="0.3361%" height="15" fill="rgb(235,138,27)" fg:x="45345" fg:w="505"/><text x="30.4281%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (505 samples, 0.34%)</title><rect x="30.1781%" y="613" width="0.3361%" height="15" fill="rgb(236,97,51)" fg:x="45345" fg:w="505"/><text x="30.4281%" y="623.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="30.5282%" y="373" width="0.0106%" height="15" fill="rgb(240,80,30)" fg:x="45871" fg:w="16"/><text x="30.7782%" y="383.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="30.5282%" y="357" width="0.0106%" height="15" fill="rgb(230,178,19)" fg:x="45871" fg:w="16"/><text x="30.7782%" y="367.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="30.5262%" y="389" width="0.0153%" height="15" fill="rgb(210,190,27)" fg:x="45868" fg:w="23"/><text x="30.7762%" y="399.50"></text></g><g><title>Parse::do_one_block (38 samples, 0.03%)</title><rect x="30.5248%" y="421" width="0.0253%" height="15" fill="rgb(222,107,31)" fg:x="45866" fg:w="38"/><text x="30.7748%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.03%)</title><rect x="30.5248%" y="405" width="0.0253%" height="15" fill="rgb(216,127,34)" fg:x="45866" fg:w="38"/><text x="30.7748%" y="415.50"></text></g><g><title>Parse::do_all_blocks (40 samples, 0.03%)</title><rect x="30.5248%" y="437" width="0.0266%" height="15" fill="rgb(234,116,52)" fg:x="45866" fg:w="40"/><text x="30.7748%" y="447.50"></text></g><g><title>ParseGenerator::generate (45 samples, 0.03%)</title><rect x="30.5222%" y="469" width="0.0299%" height="15" fill="rgb(222,124,15)" fg:x="45862" fg:w="45"/><text x="30.7722%" y="479.50"></text></g><g><title>Parse::Parse (45 samples, 0.03%)</title><rect x="30.5222%" y="453" width="0.0299%" height="15" fill="rgb(231,179,28)" fg:x="45862" fg:w="45"/><text x="30.7722%" y="463.50"></text></g><g><title>Parse::do_call (57 samples, 0.04%)</title><rect x="30.5188%" y="485" width="0.0379%" height="15" fill="rgb(226,93,45)" fg:x="45857" fg:w="57"/><text x="30.7688%" y="495.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.05%)</title><rect x="30.5182%" y="565" width="0.0459%" height="15" fill="rgb(215,8,51)" fg:x="45856" fg:w="69"/><text x="30.7682%" y="575.50"></text></g><g><title>Parse::Parse (69 samples, 0.05%)</title><rect x="30.5182%" y="549" width="0.0459%" height="15" fill="rgb(223,106,5)" fg:x="45856" fg:w="69"/><text x="30.7682%" y="559.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.05%)</title><rect x="30.5182%" y="533" width="0.0459%" height="15" fill="rgb(250,191,5)" fg:x="45856" fg:w="69"/><text x="30.7682%" y="543.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.05%)</title><rect x="30.5182%" y="517" width="0.0459%" height="15" fill="rgb(242,132,44)" fg:x="45856" fg:w="69"/><text x="30.7682%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.05%)</title><rect x="30.5182%" y="501" width="0.0459%" height="15" fill="rgb(251,152,29)" fg:x="45856" fg:w="69"/><text x="30.7682%" y="511.50"></text></g><g><title>Parse::do_call (80 samples, 0.05%)</title><rect x="30.5142%" y="581" width="0.0532%" height="15" fill="rgb(218,179,5)" fg:x="45850" fg:w="80"/><text x="30.7642%" y="591.50"></text></g><g><title>ParseGenerator::generate (82 samples, 0.05%)</title><rect x="30.5142%" y="661" width="0.0546%" height="15" fill="rgb(227,67,19)" fg:x="45850" fg:w="82"/><text x="30.7642%" y="671.50"></text></g><g><title>Parse::Parse (82 samples, 0.05%)</title><rect x="30.5142%" y="645" width="0.0546%" height="15" fill="rgb(233,119,31)" fg:x="45850" fg:w="82"/><text x="30.7642%" y="655.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.05%)</title><rect x="30.5142%" y="629" width="0.0546%" height="15" fill="rgb(241,120,22)" fg:x="45850" fg:w="82"/><text x="30.7642%" y="639.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.05%)</title><rect x="30.5142%" y="613" width="0.0546%" height="15" fill="rgb(224,102,30)" fg:x="45850" fg:w="82"/><text x="30.7642%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.05%)</title><rect x="30.5142%" y="597" width="0.0546%" height="15" fill="rgb(210,164,37)" fg:x="45850" fg:w="82"/><text x="30.7642%" y="607.50"></text></g><g><title>Parse::do_call (613 samples, 0.41%)</title><rect x="30.1648%" y="693" width="0.4080%" height="15" fill="rgb(226,191,16)" fg:x="45325" fg:w="613"/><text x="30.4148%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (88 samples, 0.06%)</title><rect x="30.5142%" y="677" width="0.0586%" height="15" fill="rgb(214,40,45)" fg:x="45850" fg:w="88"/><text x="30.7642%" y="687.50"></text></g><g><title>Parse::do_all_blocks (615 samples, 0.41%)</title><rect x="30.1648%" y="741" width="0.4093%" height="15" fill="rgb(244,29,26)" fg:x="45325" fg:w="615"/><text x="30.4148%" y="751.50"></text></g><g><title>Parse::do_one_block (615 samples, 0.41%)</title><rect x="30.1648%" y="725" width="0.4093%" height="15" fill="rgb(216,16,5)" fg:x="45325" fg:w="615"/><text x="30.4148%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (615 samples, 0.41%)</title><rect x="30.1648%" y="709" width="0.4093%" height="15" fill="rgb(249,76,35)" fg:x="45325" fg:w="615"/><text x="30.4148%" y="719.50"></text></g><g><title>ParseGenerator::generate (616 samples, 0.41%)</title><rect x="30.1648%" y="773" width="0.4100%" height="15" fill="rgb(207,11,44)" fg:x="45325" fg:w="616"/><text x="30.4148%" y="783.50"></text></g><g><title>Parse::Parse (616 samples, 0.41%)</title><rect x="30.1648%" y="757" width="0.4100%" height="15" fill="rgb(228,190,49)" fg:x="45325" fg:w="616"/><text x="30.4148%" y="767.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="30.5914%" y="421" width="0.0106%" height="15" fill="rgb(214,173,12)" fg:x="45966" fg:w="16"/><text x="30.8414%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="30.5914%" y="405" width="0.0106%" height="15" fill="rgb(218,26,35)" fg:x="45966" fg:w="16"/><text x="30.8414%" y="415.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="30.5914%" y="437" width="0.0113%" height="15" fill="rgb(220,200,19)" fg:x="45966" fg:w="17"/><text x="30.8414%" y="447.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="30.5901%" y="469" width="0.0140%" height="15" fill="rgb(239,95,49)" fg:x="45964" fg:w="21"/><text x="30.8401%" y="479.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="30.5901%" y="453" width="0.0140%" height="15" fill="rgb(235,85,53)" fg:x="45964" fg:w="21"/><text x="30.8401%" y="463.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="30.5834%" y="485" width="0.0226%" height="15" fill="rgb(233,133,31)" fg:x="45954" fg:w="34"/><text x="30.8334%" y="495.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.03%)</title><rect x="30.5821%" y="565" width="0.0319%" height="15" fill="rgb(218,25,20)" fg:x="45952" fg:w="48"/><text x="30.8321%" y="575.50"></text></g><g><title>Parse::Parse (48 samples, 0.03%)</title><rect x="30.5821%" y="549" width="0.0319%" height="15" fill="rgb(252,210,38)" fg:x="45952" fg:w="48"/><text x="30.8321%" y="559.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.03%)</title><rect x="30.5821%" y="533" width="0.0319%" height="15" fill="rgb(242,134,21)" fg:x="45952" fg:w="48"/><text x="30.8321%" y="543.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.03%)</title><rect x="30.5821%" y="517" width="0.0319%" height="15" fill="rgb(213,28,48)" fg:x="45952" fg:w="48"/><text x="30.8321%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.03%)</title><rect x="30.5821%" y="501" width="0.0319%" height="15" fill="rgb(250,196,2)" fg:x="45952" fg:w="48"/><text x="30.8321%" y="511.50"></text></g><g><title>Parse::do_call (57 samples, 0.04%)</title><rect x="30.5787%" y="581" width="0.0379%" height="15" fill="rgb(227,5,17)" fg:x="45947" fg:w="57"/><text x="30.8287%" y="591.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.04%)</title><rect x="30.5781%" y="661" width="0.0433%" height="15" fill="rgb(221,226,24)" fg:x="45946" fg:w="65"/><text x="30.8281%" y="671.50"></text></g><g><title>Parse::Parse (65 samples, 0.04%)</title><rect x="30.5781%" y="645" width="0.0433%" height="15" fill="rgb(211,5,48)" fg:x="45946" fg:w="65"/><text x="30.8281%" y="655.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.04%)</title><rect x="30.5787%" y="629" width="0.0426%" height="15" fill="rgb(219,150,6)" fg:x="45947" fg:w="64"/><text x="30.8287%" y="639.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.04%)</title><rect x="30.5787%" y="613" width="0.0426%" height="15" fill="rgb(251,46,16)" fg:x="45947" fg:w="64"/><text x="30.8287%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.04%)</title><rect x="30.5787%" y="597" width="0.0426%" height="15" fill="rgb(220,204,40)" fg:x="45947" fg:w="64"/><text x="30.8287%" y="607.50"></text></g><g><title>ParseGenerator::generate (79 samples, 0.05%)</title><rect x="30.5747%" y="757" width="0.0526%" height="15" fill="rgb(211,85,2)" fg:x="45941" fg:w="79"/><text x="30.8247%" y="767.50"></text></g><g><title>Parse::Parse (79 samples, 0.05%)</title><rect x="30.5747%" y="741" width="0.0526%" height="15" fill="rgb(229,17,7)" fg:x="45941" fg:w="79"/><text x="30.8247%" y="751.50"></text></g><g><title>Parse::do_all_blocks (79 samples, 0.05%)</title><rect x="30.5747%" y="725" width="0.0526%" height="15" fill="rgb(239,72,28)" fg:x="45941" fg:w="79"/><text x="30.8247%" y="735.50"></text></g><g><title>Parse::do_one_block (79 samples, 0.05%)</title><rect x="30.5747%" y="709" width="0.0526%" height="15" fill="rgb(230,47,54)" fg:x="45941" fg:w="79"/><text x="30.8247%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (78 samples, 0.05%)</title><rect x="30.5754%" y="693" width="0.0519%" height="15" fill="rgb(214,50,8)" fg:x="45942" fg:w="78"/><text x="30.8254%" y="703.50"></text></g><g><title>Parse::do_call (78 samples, 0.05%)</title><rect x="30.5754%" y="677" width="0.0519%" height="15" fill="rgb(216,198,43)" fg:x="45942" fg:w="78"/><text x="30.8254%" y="687.50"></text></g><g><title>ParseGenerator::generate (708 samples, 0.47%)</title><rect x="30.1635%" y="869" width="0.4712%" height="15" fill="rgb(234,20,35)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="879.50"></text></g><g><title>Parse::Parse (708 samples, 0.47%)</title><rect x="30.1635%" y="853" width="0.4712%" height="15" fill="rgb(254,45,19)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="863.50"></text></g><g><title>Parse::do_all_blocks (708 samples, 0.47%)</title><rect x="30.1635%" y="837" width="0.4712%" height="15" fill="rgb(219,14,44)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="847.50"></text></g><g><title>Parse::do_one_block (708 samples, 0.47%)</title><rect x="30.1635%" y="821" width="0.4712%" height="15" fill="rgb(217,220,26)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (708 samples, 0.47%)</title><rect x="30.1635%" y="805" width="0.4712%" height="15" fill="rgb(213,158,28)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="815.50"></text></g><g><title>Parse::do_call (708 samples, 0.47%)</title><rect x="30.1635%" y="789" width="0.4712%" height="15" fill="rgb(252,51,52)" fg:x="45323" fg:w="708"/><text x="30.4135%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (90 samples, 0.06%)</title><rect x="30.5747%" y="773" width="0.0599%" height="15" fill="rgb(246,89,16)" fg:x="45941" fg:w="90"/><text x="30.8247%" y="783.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="30.6692%" y="373" width="0.0126%" height="15" fill="rgb(216,158,49)" fg:x="46083" fg:w="19"/><text x="30.9192%" y="383.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="30.6692%" y="357" width="0.0126%" height="15" fill="rgb(236,107,19)" fg:x="46083" fg:w="19"/><text x="30.9192%" y="367.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="30.6712%" y="341" width="0.0106%" height="15" fill="rgb(228,185,30)" fg:x="46086" fg:w="16"/><text x="30.9212%" y="351.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="30.6646%" y="389" width="0.0186%" height="15" fill="rgb(246,134,8)" fg:x="46076" fg:w="28"/><text x="30.9146%" y="399.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.03%)</title><rect x="30.6619%" y="421" width="0.0299%" height="15" fill="rgb(214,143,50)" fg:x="46072" fg:w="45"/><text x="30.9119%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.03%)</title><rect x="30.6626%" y="405" width="0.0293%" height="15" fill="rgb(228,75,8)" fg:x="46073" fg:w="44"/><text x="30.9126%" y="415.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.03%)</title><rect x="30.6619%" y="437" width="0.0306%" height="15" fill="rgb(207,175,4)" fg:x="46072" fg:w="46"/><text x="30.9119%" y="447.50"></text></g><g><title>Parse::Parse (53 samples, 0.04%)</title><rect x="30.6586%" y="453" width="0.0353%" height="15" fill="rgb(205,108,24)" fg:x="46067" fg:w="53"/><text x="30.9086%" y="463.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.04%)</title><rect x="30.6579%" y="469" width="0.0366%" height="15" fill="rgb(244,120,49)" fg:x="46066" fg:w="55"/><text x="30.9079%" y="479.50"></text></g><g><title>Parse::do_call (70 samples, 0.05%)</title><rect x="30.6513%" y="485" width="0.0466%" height="15" fill="rgb(223,47,38)" fg:x="46056" fg:w="70"/><text x="30.9013%" y="495.50"></text></g><g><title>Parse::do_one_block (86 samples, 0.06%)</title><rect x="30.6493%" y="517" width="0.0572%" height="15" fill="rgb(229,179,11)" fg:x="46053" fg:w="86"/><text x="30.8993%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.06%)</title><rect x="30.6493%" y="501" width="0.0572%" height="15" fill="rgb(231,122,1)" fg:x="46053" fg:w="86"/><text x="30.8993%" y="511.50"></text></g><g><title>Parse::do_all_blocks (88 samples, 0.06%)</title><rect x="30.6486%" y="533" width="0.0586%" height="15" fill="rgb(245,119,9)" fg:x="46052" fg:w="88"/><text x="30.8986%" y="543.50"></text></g><g><title>ParseGenerator::generate (90 samples, 0.06%)</title><rect x="30.6480%" y="565" width="0.0599%" height="15" fill="rgb(241,163,25)" fg:x="46051" fg:w="90"/><text x="30.8980%" y="575.50"></text></g><g><title>Parse::Parse (90 samples, 0.06%)</title><rect x="30.6480%" y="549" width="0.0599%" height="15" fill="rgb(217,214,3)" fg:x="46051" fg:w="90"/><text x="30.8980%" y="559.50"></text></g><g><title>Parse::do_call (105 samples, 0.07%)</title><rect x="30.6413%" y="581" width="0.0699%" height="15" fill="rgb(240,86,28)" fg:x="46041" fg:w="105"/><text x="30.8913%" y="591.50"></text></g><g><title>ParseGenerator::generate (108 samples, 0.07%)</title><rect x="30.6413%" y="661" width="0.0719%" height="15" fill="rgb(215,47,9)" fg:x="46041" fg:w="108"/><text x="30.8913%" y="671.50"></text></g><g><title>Parse::Parse (108 samples, 0.07%)</title><rect x="30.6413%" y="645" width="0.0719%" height="15" fill="rgb(252,25,45)" fg:x="46041" fg:w="108"/><text x="30.8913%" y="655.50"></text></g><g><title>Parse::do_all_blocks (108 samples, 0.07%)</title><rect x="30.6413%" y="629" width="0.0719%" height="15" fill="rgb(251,164,9)" fg:x="46041" fg:w="108"/><text x="30.8913%" y="639.50"></text></g><g><title>Parse::do_one_block (108 samples, 0.07%)</title><rect x="30.6413%" y="613" width="0.0719%" height="15" fill="rgb(233,194,0)" fg:x="46041" fg:w="108"/><text x="30.8913%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (108 samples, 0.07%)</title><rect x="30.6413%" y="597" width="0.0719%" height="15" fill="rgb(249,111,24)" fg:x="46041" fg:w="108"/><text x="30.8913%" y="607.50"></text></g><g><title>ParseGenerator::generate (128 samples, 0.09%)</title><rect x="30.6360%" y="757" width="0.0852%" height="15" fill="rgb(250,223,3)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="767.50"></text></g><g><title>Parse::Parse (128 samples, 0.09%)</title><rect x="30.6360%" y="741" width="0.0852%" height="15" fill="rgb(236,178,37)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="751.50"></text></g><g><title>Parse::do_all_blocks (128 samples, 0.09%)</title><rect x="30.6360%" y="725" width="0.0852%" height="15" fill="rgb(241,158,50)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="735.50"></text></g><g><title>Parse::do_one_block (128 samples, 0.09%)</title><rect x="30.6360%" y="709" width="0.0852%" height="15" fill="rgb(213,121,41)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (128 samples, 0.09%)</title><rect x="30.6360%" y="693" width="0.0852%" height="15" fill="rgb(240,92,3)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="703.50"></text></g><g><title>Parse::do_call (128 samples, 0.09%)</title><rect x="30.6360%" y="677" width="0.0852%" height="15" fill="rgb(205,123,3)" fg:x="46033" fg:w="128"/><text x="30.8860%" y="687.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="30.7212%" y="741" width="0.0106%" height="15" fill="rgb(205,97,47)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="751.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="30.7212%" y="725" width="0.0106%" height="15" fill="rgb(247,152,14)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="735.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="30.7212%" y="709" width="0.0106%" height="15" fill="rgb(248,195,53)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="719.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="30.7212%" y="693" width="0.0106%" height="15" fill="rgb(226,201,16)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="30.7212%" y="677" width="0.0106%" height="15" fill="rgb(205,98,0)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="687.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="30.7212%" y="661" width="0.0106%" height="15" fill="rgb(214,191,48)" fg:x="46161" fg:w="16"/><text x="30.9712%" y="671.50"></text></g><g><title>ParseGenerator::generate (150 samples, 0.10%)</title><rect x="30.6346%" y="853" width="0.0998%" height="15" fill="rgb(237,112,39)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="863.50"></text></g><g><title>Parse::Parse (150 samples, 0.10%)</title><rect x="30.6346%" y="837" width="0.0998%" height="15" fill="rgb(247,203,27)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="847.50"></text></g><g><title>Parse::do_all_blocks (150 samples, 0.10%)</title><rect x="30.6346%" y="821" width="0.0998%" height="15" fill="rgb(235,124,28)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="831.50"></text></g><g><title>Parse::do_one_block (150 samples, 0.10%)</title><rect x="30.6346%" y="805" width="0.0998%" height="15" fill="rgb(208,207,46)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (150 samples, 0.10%)</title><rect x="30.6346%" y="789" width="0.0998%" height="15" fill="rgb(234,176,4)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="799.50"></text></g><g><title>Parse::do_call (150 samples, 0.10%)</title><rect x="30.6346%" y="773" width="0.0998%" height="15" fill="rgb(230,133,28)" fg:x="46031" fg:w="150"/><text x="30.8846%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (20 samples, 0.01%)</title><rect x="30.7212%" y="757" width="0.0133%" height="15" fill="rgb(211,137,40)" fg:x="46161" fg:w="20"/><text x="30.9712%" y="767.50"></text></g><g><title>ParseGenerator::generate (885 samples, 0.59%)</title><rect x="30.1635%" y="965" width="0.5890%" height="15" fill="rgb(254,35,13)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="975.50"></text></g><g><title>Parse::Parse (885 samples, 0.59%)</title><rect x="30.1635%" y="949" width="0.5890%" height="15" fill="rgb(225,49,51)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="959.50"></text></g><g><title>Parse::do_all_blocks (885 samples, 0.59%)</title><rect x="30.1635%" y="933" width="0.5890%" height="15" fill="rgb(251,10,15)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="943.50"></text></g><g><title>Parse::do_one_block (885 samples, 0.59%)</title><rect x="30.1635%" y="917" width="0.5890%" height="15" fill="rgb(228,207,15)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="927.50"></text></g><g><title>Parse::do_one_bytecode (885 samples, 0.59%)</title><rect x="30.1635%" y="901" width="0.5890%" height="15" fill="rgb(241,99,19)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="911.50"></text></g><g><title>Parse::do_call (885 samples, 0.59%)</title><rect x="30.1635%" y="885" width="0.5890%" height="15" fill="rgb(207,104,49)" fg:x="45323" fg:w="885"/><text x="30.4135%" y="895.50"></text></g><g><title>PredictedCallGenerator::generate (177 samples, 0.12%)</title><rect x="30.6346%" y="869" width="0.1178%" height="15" fill="rgb(234,99,18)" fg:x="46031" fg:w="177"/><text x="30.8846%" y="879.50"></text></g><g><title>PredictedCallGenerator::generate (27 samples, 0.02%)</title><rect x="30.7345%" y="853" width="0.0180%" height="15" fill="rgb(213,191,49)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="863.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="30.7345%" y="837" width="0.0180%" height="15" fill="rgb(210,226,19)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="847.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="30.7345%" y="821" width="0.0180%" height="15" fill="rgb(229,97,18)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="831.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="30.7345%" y="805" width="0.0180%" height="15" fill="rgb(211,167,15)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="815.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="30.7345%" y="789" width="0.0180%" height="15" fill="rgb(210,169,34)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="30.7345%" y="773" width="0.0180%" height="15" fill="rgb(241,121,31)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="783.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="30.7345%" y="757" width="0.0180%" height="15" fill="rgb(232,40,11)" fg:x="46181" fg:w="27"/><text x="30.9845%" y="767.50"></text></g><g><title>Compile::Compile (30,415 samples, 20.24%)</title><rect x="10.5152%" y="981" width="20.2419%" height="15" fill="rgb(205,86,26)" fg:x="15800" fg:w="30415"/><text x="10.7652%" y="991.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (88 samples, 0.06%)</title><rect x="30.8303%" y="933" width="0.0586%" height="15" fill="rgb(231,126,28)" fg:x="46325" fg:w="88"/><text x="31.0803%" y="943.50"></text></g><g><title>Compile::final_graph_reshaping (203 samples, 0.14%)</title><rect x="30.7578%" y="965" width="0.1351%" height="15" fill="rgb(219,221,18)" fg:x="46216" fg:w="203"/><text x="31.0078%" y="975.50"></text></g><g><title>Compile::final_graph_reshaping_walk (201 samples, 0.13%)</title><rect x="30.7591%" y="949" width="0.1338%" height="15" fill="rgb(211,40,0)" fg:x="46218" fg:w="201"/><text x="31.0091%" y="959.50"></text></g><g><title>PhaseIterGVN::optimize (30 samples, 0.02%)</title><rect x="30.9814%" y="949" width="0.0200%" height="15" fill="rgb(239,85,43)" fg:x="46552" fg:w="30"/><text x="31.2314%" y="959.50"></text></g><g><title>PhaseIterGVN::transform_old (28 samples, 0.02%)</title><rect x="30.9827%" y="933" width="0.0186%" height="15" fill="rgb(231,55,21)" fg:x="46554" fg:w="28"/><text x="31.2327%" y="943.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (36 samples, 0.02%)</title><rect x="31.0013%" y="949" width="0.0240%" height="15" fill="rgb(225,184,43)" fg:x="46582" fg:w="36"/><text x="31.2513%" y="959.50"></text></g><g><title>Compile::remove_speculative_types (190 samples, 0.13%)</title><rect x="30.9042%" y="965" width="0.1264%" height="15" fill="rgb(251,158,41)" fg:x="46436" fg:w="190"/><text x="31.1542%" y="975.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (16 samples, 0.01%)</title><rect x="31.0712%" y="901" width="0.0106%" height="15" fill="rgb(234,159,37)" fg:x="46687" fg:w="16"/><text x="31.3212%" y="911.50"></text></g><g><title>ciMethod::get_bcea (17 samples, 0.01%)</title><rect x="31.0712%" y="917" width="0.0113%" height="15" fill="rgb(216,204,22)" fg:x="46687" fg:w="17"/><text x="31.3212%" y="927.50"></text></g><g><title>ConnectionGraph::add_call_node (18 samples, 0.01%)</title><rect x="31.0712%" y="933" width="0.0120%" height="15" fill="rgb(214,17,3)" fg:x="46687" fg:w="18"/><text x="31.3212%" y="943.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (18 samples, 0.01%)</title><rect x="31.0905%" y="869" width="0.0120%" height="15" fill="rgb(212,111,17)" fg:x="46716" fg:w="18"/><text x="31.3405%" y="879.50"></text></g><g><title>BCEscapeAnalyzer::iterate_blocks (18 samples, 0.01%)</title><rect x="31.0905%" y="853" width="0.0120%" height="15" fill="rgb(221,157,24)" fg:x="46716" fg:w="18"/><text x="31.3405%" y="863.50"></text></g><g><title>BCEscapeAnalyzer::iterate_one_block (17 samples, 0.01%)</title><rect x="31.0912%" y="837" width="0.0113%" height="15" fill="rgb(252,16,13)" fg:x="46717" fg:w="17"/><text x="31.3412%" y="847.50"></text></g><g><title>ConnectionGraph::process_call_arguments (22 samples, 0.01%)</title><rect x="31.0885%" y="917" width="0.0146%" height="15" fill="rgb(221,62,2)" fg:x="46713" fg:w="22"/><text x="31.3385%" y="927.50"></text></g><g><title>ciMethod::get_bcea (20 samples, 0.01%)</title><rect x="31.0899%" y="901" width="0.0133%" height="15" fill="rgb(247,87,22)" fg:x="46715" fg:w="20"/><text x="31.3399%" y="911.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (20 samples, 0.01%)</title><rect x="31.0899%" y="885" width="0.0133%" height="15" fill="rgb(215,73,9)" fg:x="46715" fg:w="20"/><text x="31.3399%" y="895.50"></text></g><g><title>ConnectionGraph::add_final_edges (33 samples, 0.02%)</title><rect x="31.0832%" y="933" width="0.0220%" height="15" fill="rgb(207,175,33)" fg:x="46705" fg:w="33"/><text x="31.3332%" y="943.50"></text></g><g><title>ConnectionGraph::is_oop_field (17 samples, 0.01%)</title><rect x="31.1338%" y="901" width="0.0113%" height="15" fill="rgb(243,129,54)" fg:x="46781" fg:w="17"/><text x="31.3838%" y="911.50"></text></g><g><title>ConnectionGraph::add_field (24 samples, 0.02%)</title><rect x="31.1305%" y="917" width="0.0160%" height="15" fill="rgb(227,119,45)" fg:x="46776" fg:w="24"/><text x="31.3805%" y="927.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (68 samples, 0.05%)</title><rect x="31.1072%" y="933" width="0.0453%" height="15" fill="rgb(205,109,36)" fg:x="46741" fg:w="68"/><text x="31.3572%" y="943.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (57 samples, 0.04%)</title><rect x="31.1671%" y="917" width="0.0379%" height="15" fill="rgb(205,6,39)" fg:x="46831" fg:w="57"/><text x="31.4171%" y="927.50"></text></g><g><title>ConnectionGraph::add_java_object_edges (19 samples, 0.01%)</title><rect x="31.2050%" y="917" width="0.0126%" height="15" fill="rgb(221,32,16)" fg:x="46888" fg:w="19"/><text x="31.4550%" y="927.50"></text></g><g><title>ConnectionGraph::find_non_escaped_objects (18 samples, 0.01%)</title><rect x="31.2176%" y="917" width="0.0120%" height="15" fill="rgb(228,144,50)" fg:x="46907" fg:w="18"/><text x="31.4676%" y="927.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (115 samples, 0.08%)</title><rect x="31.1537%" y="933" width="0.0765%" height="15" fill="rgb(229,201,53)" fg:x="46811" fg:w="115"/><text x="31.4037%" y="943.50"></text></g><g><title>ConnectionGraph::find_inst_mem (19 samples, 0.01%)</title><rect x="31.2542%" y="853" width="0.0126%" height="15" fill="rgb(249,153,27)" fg:x="46962" fg:w="19"/><text x="31.5042%" y="863.50"></text></g><g><title>ConnectionGraph::split_memory_phi (21 samples, 0.01%)</title><rect x="31.2536%" y="869" width="0.0140%" height="15" fill="rgb(227,106,25)" fg:x="46961" fg:w="21"/><text x="31.5036%" y="879.50"></text></g><g><title>ConnectionGraph::split_memory_phi (36 samples, 0.02%)</title><rect x="31.2443%" y="901" width="0.0240%" height="15" fill="rgb(230,65,29)" fg:x="46947" fg:w="36"/><text x="31.4943%" y="911.50"></text></g><g><title>ConnectionGraph::find_inst_mem (28 samples, 0.02%)</title><rect x="31.2496%" y="885" width="0.0186%" height="15" fill="rgb(221,57,46)" fg:x="46955" fg:w="28"/><text x="31.4996%" y="895.50"></text></g><g><title>ConnectionGraph::find_inst_mem (50 samples, 0.03%)</title><rect x="31.2363%" y="917" width="0.0333%" height="15" fill="rgb(229,161,17)" fg:x="46935" fg:w="50"/><text x="31.4863%" y="927.50"></text></g><g><title>ConnectionGraph::split_unique_types (69 samples, 0.05%)</title><rect x="31.2329%" y="933" width="0.0459%" height="15" fill="rgb(222,213,11)" fg:x="46930" fg:w="69"/><text x="31.4829%" y="943.50"></text></g><g><title>ConnectionGraph::compute_escape (378 samples, 0.25%)</title><rect x="31.0313%" y="949" width="0.2516%" height="15" fill="rgb(235,35,13)" fg:x="46627" fg:w="378"/><text x="31.2813%" y="959.50"></text></g><g><title>ConnectionGraph::do_analysis (381 samples, 0.25%)</title><rect x="31.0313%" y="965" width="0.2536%" height="15" fill="rgb(233,158,34)" fg:x="46627" fg:w="381"/><text x="31.2813%" y="975.50"></text></g><g><title>AddPNode::bottom_type (17 samples, 0.01%)</title><rect x="31.4559%" y="949" width="0.0113%" height="15" fill="rgb(215,151,48)" fg:x="47265" fg:w="17"/><text x="31.7059%" y="959.50"></text></g><g><title>PhiNode::Value (37 samples, 0.02%)</title><rect x="31.5351%" y="949" width="0.0246%" height="15" fill="rgb(229,84,14)" fg:x="47384" fg:w="37"/><text x="31.7851%" y="959.50"></text></g><g><title>Type::hashcons (17 samples, 0.01%)</title><rect x="31.5757%" y="949" width="0.0113%" height="15" fill="rgb(229,68,14)" fg:x="47445" fg:w="17"/><text x="31.8257%" y="959.50"></text></g><g><title>TypeAryPtr::add_offset (17 samples, 0.01%)</title><rect x="31.5870%" y="949" width="0.0113%" height="15" fill="rgb(243,106,26)" fg:x="47462" fg:w="17"/><text x="31.8370%" y="959.50"></text></g><g><title>TypeInstPtr::add_offset (27 samples, 0.02%)</title><rect x="31.5983%" y="949" width="0.0180%" height="15" fill="rgb(206,45,38)" fg:x="47479" fg:w="27"/><text x="31.8483%" y="959.50"></text></g><g><title>PhaseCCP::analyze (521 samples, 0.35%)</title><rect x="31.2862%" y="965" width="0.3467%" height="15" fill="rgb(226,6,15)" fg:x="47010" fg:w="521"/><text x="31.5362%" y="975.50"></text></g><g><title>PhaseCCP::transform_once (72 samples, 0.05%)</title><rect x="31.6915%" y="933" width="0.0479%" height="15" fill="rgb(232,22,54)" fg:x="47619" fg:w="72"/><text x="31.9415%" y="943.50"></text></g><g><title>PhaseCCP::do_transform (161 samples, 0.11%)</title><rect x="31.6329%" y="965" width="0.1071%" height="15" fill="rgb(229,222,32)" fg:x="47531" fg:w="161"/><text x="31.8829%" y="975.50"></text></g><g><title>PhaseCCP::transform (161 samples, 0.11%)</title><rect x="31.6329%" y="949" width="0.1071%" height="15" fill="rgb(228,62,29)" fg:x="47531" fg:w="161"/><text x="31.8829%" y="959.50"></text></g><g><title>IdealLoopTree::counted_loop (17 samples, 0.01%)</title><rect x="31.7727%" y="885" width="0.0113%" height="15" fill="rgb(251,103,34)" fg:x="47741" fg:w="17"/><text x="32.0227%" y="895.50"></text></g><g><title>IdealLoopTree::counted_loop (20 samples, 0.01%)</title><rect x="31.7720%" y="901" width="0.0133%" height="15" fill="rgb(233,12,30)" fg:x="47740" fg:w="20"/><text x="32.0220%" y="911.50"></text></g><g><title>IdealLoopTree::counted_loop (28 samples, 0.02%)</title><rect x="31.7720%" y="917" width="0.0186%" height="15" fill="rgb(238,52,0)" fg:x="47740" fg:w="28"/><text x="32.0220%" y="927.50"></text></g><g><title>IdealLoopTree::counted_loop (42 samples, 0.03%)</title><rect x="31.7720%" y="949" width="0.0280%" height="15" fill="rgb(223,98,5)" fg:x="47740" fg:w="42"/><text x="32.0220%" y="959.50"></text></g><g><title>IdealLoopTree::counted_loop (42 samples, 0.03%)</title><rect x="31.7720%" y="933" width="0.0280%" height="15" fill="rgb(228,75,37)" fg:x="47740" fg:w="42"/><text x="32.0220%" y="943.50"></text></g><g><title>IdealLoopTree::iteration_split (18 samples, 0.01%)</title><rect x="31.8120%" y="789" width="0.0120%" height="15" fill="rgb(205,115,49)" fg:x="47800" fg:w="18"/><text x="32.0620%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (21 samples, 0.01%)</title><rect x="31.8120%" y="805" width="0.0140%" height="15" fill="rgb(250,154,43)" fg:x="47800" fg:w="21"/><text x="32.0620%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (31 samples, 0.02%)</title><rect x="31.8113%" y="821" width="0.0206%" height="15" fill="rgb(226,43,29)" fg:x="47799" fg:w="31"/><text x="32.0613%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split (37 samples, 0.02%)</title><rect x="31.8100%" y="837" width="0.0246%" height="15" fill="rgb(249,228,39)" fg:x="47797" fg:w="37"/><text x="32.0600%" y="847.50"></text></g><g><title>IdealLoopTree::iteration_split (41 samples, 0.03%)</title><rect x="31.8093%" y="853" width="0.0273%" height="15" fill="rgb(216,79,43)" fg:x="47796" fg:w="41"/><text x="32.0593%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split (52 samples, 0.03%)</title><rect x="31.8073%" y="869" width="0.0346%" height="15" fill="rgb(228,95,12)" fg:x="47793" fg:w="52"/><text x="32.0573%" y="879.50"></text></g><g><title>IdealLoopTree::iteration_split (58 samples, 0.04%)</title><rect x="31.8066%" y="885" width="0.0386%" height="15" fill="rgb(249,221,15)" fg:x="47792" fg:w="58"/><text x="32.0566%" y="895.50"></text></g><g><title>IdealLoopTree::iteration_split (67 samples, 0.04%)</title><rect x="31.8066%" y="901" width="0.0446%" height="15" fill="rgb(233,34,13)" fg:x="47792" fg:w="67"/><text x="32.0566%" y="911.50"></text></g><g><title>PhaseIdealLoop::do_unroll (20 samples, 0.01%)</title><rect x="31.8559%" y="885" width="0.0133%" height="15" fill="rgb(214,103,39)" fg:x="47866" fg:w="20"/><text x="32.1059%" y="895.50"></text></g><g><title>IdealLoopTree::iteration_split (104 samples, 0.07%)</title><rect x="31.8053%" y="917" width="0.0692%" height="15" fill="rgb(251,126,39)" fg:x="47790" fg:w="104"/><text x="32.0553%" y="927.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (35 samples, 0.02%)</title><rect x="31.8512%" y="901" width="0.0233%" height="15" fill="rgb(214,216,36)" fg:x="47859" fg:w="35"/><text x="32.1012%" y="911.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (24 samples, 0.02%)</title><rect x="31.8745%" y="917" width="0.0160%" height="15" fill="rgb(220,221,8)" fg:x="47894" fg:w="24"/><text x="32.1245%" y="927.50"></text></g><g><title>PhaseIdealLoop::insert_pre_post_loops (18 samples, 0.01%)</title><rect x="31.8785%" y="901" width="0.0120%" height="15" fill="rgb(240,216,3)" fg:x="47900" fg:w="18"/><text x="32.1285%" y="911.50"></text></g><g><title>IdealLoopTree::iteration_split (136 samples, 0.09%)</title><rect x="31.8026%" y="933" width="0.0905%" height="15" fill="rgb(232,218,17)" fg:x="47786" fg:w="136"/><text x="32.0526%" y="943.50"></text></g><g><title>IdealLoopTree::iteration_split (153 samples, 0.10%)</title><rect x="31.8000%" y="949" width="0.1018%" height="15" fill="rgb(229,163,45)" fg:x="47782" fg:w="153"/><text x="32.0500%" y="959.50"></text></g><g><title>IdealLoopTree::loop_predication (32 samples, 0.02%)</title><rect x="31.9031%" y="917" width="0.0213%" height="15" fill="rgb(231,110,42)" fg:x="47937" fg:w="32"/><text x="32.1531%" y="927.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (20 samples, 0.01%)</title><rect x="31.9111%" y="901" width="0.0133%" height="15" fill="rgb(208,170,48)" fg:x="47949" fg:w="20"/><text x="32.1611%" y="911.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (19 samples, 0.01%)</title><rect x="31.9331%" y="901" width="0.0126%" height="15" fill="rgb(239,116,25)" fg:x="47982" fg:w="19"/><text x="32.1831%" y="911.50"></text></g><g><title>IdealLoopTree::loop_predication (75 samples, 0.05%)</title><rect x="31.9025%" y="933" width="0.0499%" height="15" fill="rgb(219,200,50)" fg:x="47936" fg:w="75"/><text x="32.1525%" y="943.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (42 samples, 0.03%)</title><rect x="31.9244%" y="917" width="0.0280%" height="15" fill="rgb(245,200,0)" fg:x="47969" fg:w="42"/><text x="32.1744%" y="927.50"></text></g><g><title>PathFrequency::to (22 samples, 0.01%)</title><rect x="31.9597%" y="917" width="0.0146%" height="15" fill="rgb(245,119,33)" fg:x="48022" fg:w="22"/><text x="32.2097%" y="927.50"></text></g><g><title>PathFrequency::to (19 samples, 0.01%)</title><rect x="31.9763%" y="901" width="0.0126%" height="15" fill="rgb(231,125,12)" fg:x="48047" fg:w="19"/><text x="32.2263%" y="911.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (44 samples, 0.03%)</title><rect x="31.9743%" y="917" width="0.0293%" height="15" fill="rgb(216,96,41)" fg:x="48044" fg:w="44"/><text x="32.2243%" y="927.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (25 samples, 0.02%)</title><rect x="32.0036%" y="917" width="0.0166%" height="15" fill="rgb(248,43,45)" fg:x="48088" fg:w="25"/><text x="32.2536%" y="927.50"></text></g><g><title>IdealLoopTree::loop_predication (190 samples, 0.13%)</title><rect x="31.9018%" y="949" width="0.1264%" height="15" fill="rgb(217,222,7)" fg:x="47935" fg:w="190"/><text x="32.1518%" y="959.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (114 samples, 0.08%)</title><rect x="31.9524%" y="933" width="0.0759%" height="15" fill="rgb(233,28,6)" fg:x="48011" fg:w="114"/><text x="32.2024%" y="943.50"></text></g><g><title>NTarjan::DFS (242 samples, 0.16%)</title><rect x="32.4329%" y="933" width="0.1611%" height="15" fill="rgb(231,218,15)" fg:x="48733" fg:w="242"/><text x="32.6829%" y="943.50"></text></g><g><title>asm_exc_page_fault (24 samples, 0.02%)</title><rect x="32.6046%" y="933" width="0.0160%" height="15" fill="rgb(226,171,48)" fg:x="48991" fg:w="24"/><text x="32.8546%" y="943.50"></text></g><g><title>exc_page_fault (23 samples, 0.02%)</title><rect x="32.6053%" y="917" width="0.0153%" height="15" fill="rgb(235,201,9)" fg:x="48992" fg:w="23"/><text x="32.8553%" y="927.50"></text></g><g><title>do_user_addr_fault (23 samples, 0.02%)</title><rect x="32.6053%" y="901" width="0.0153%" height="15" fill="rgb(217,80,15)" fg:x="48992" fg:w="23"/><text x="32.8553%" y="911.50"></text></g><g><title>handle_mm_fault (22 samples, 0.01%)</title><rect x="32.6059%" y="885" width="0.0146%" height="15" fill="rgb(219,152,8)" fg:x="48993" fg:w="22"/><text x="32.8559%" y="895.50"></text></g><g><title>PhaseIdealLoop::Dominators (863 samples, 0.57%)</title><rect x="32.0535%" y="949" width="0.5743%" height="15" fill="rgb(243,107,38)" fg:x="48163" fg:w="863"/><text x="32.3035%" y="959.50"></text></g><g><title>PhaseIdealLoop::dom_depth (54 samples, 0.04%)</title><rect x="33.2981%" y="901" width="0.0359%" height="15" fill="rgb(231,17,5)" fg:x="50033" fg:w="54"/><text x="33.5481%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (136 samples, 0.09%)</title><rect x="33.3340%" y="901" width="0.0905%" height="15" fill="rgb(209,25,54)" fg:x="50087" fg:w="136"/><text x="33.5840%" y="911.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (329 samples, 0.22%)</title><rect x="33.2069%" y="933" width="0.2190%" height="15" fill="rgb(219,0,2)" fg:x="49896" fg:w="329"/><text x="33.4569%" y="943.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (293 samples, 0.19%)</title><rect x="33.2308%" y="917" width="0.1950%" height="15" fill="rgb(246,9,5)" fg:x="49932" fg:w="293"/><text x="33.4808%" y="927.50"></text></g><g><title>PhiNode::pinned (27 samples, 0.02%)</title><rect x="33.4265%" y="933" width="0.0180%" height="15" fill="rgb(226,159,4)" fg:x="50226" fg:w="27"/><text x="33.6765%" y="943.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,252 samples, 0.83%)</title><rect x="32.6279%" y="949" width="0.8332%" height="15" fill="rgb(219,175,34)" fg:x="49026" fg:w="1252"/><text x="32.8779%" y="959.50"></text></g><g><title>Node_List::push (19 samples, 0.01%)</title><rect x="34.0627%" y="933" width="0.0126%" height="15" fill="rgb(236,10,46)" fg:x="51182" fg:w="19"/><text x="34.3127%" y="943.50"></text></g><g><title>Node::unique_ctrl_out (63 samples, 0.04%)</title><rect x="34.3948%" y="917" width="0.0419%" height="15" fill="rgb(240,211,16)" fg:x="51681" fg:w="63"/><text x="34.6448%" y="927.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (60 samples, 0.04%)</title><rect x="34.4388%" y="917" width="0.0399%" height="15" fill="rgb(205,3,43)" fg:x="51747" fg:w="60"/><text x="34.6888%" y="927.50"></text></g><g><title>PhaseIdealLoop::dom_depth (51 samples, 0.03%)</title><rect x="34.7808%" y="869" width="0.0339%" height="15" fill="rgb(245,7,22)" fg:x="52261" fg:w="51"/><text x="35.0308%" y="879.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (224 samples, 0.15%)</title><rect x="34.7402%" y="885" width="0.1491%" height="15" fill="rgb(239,132,32)" fg:x="52200" fg:w="224"/><text x="34.9902%" y="895.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (112 samples, 0.07%)</title><rect x="34.8148%" y="869" width="0.0745%" height="15" fill="rgb(228,202,34)" fg:x="52312" fg:w="112"/><text x="35.0648%" y="879.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (322 samples, 0.21%)</title><rect x="34.6937%" y="901" width="0.2143%" height="15" fill="rgb(254,200,22)" fg:x="52130" fg:w="322"/><text x="34.9437%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (28 samples, 0.02%)</title><rect x="34.8893%" y="885" width="0.0186%" height="15" fill="rgb(219,10,39)" fg:x="52424" fg:w="28"/><text x="35.1393%" y="895.50"></text></g><g><title>PhaseIdealLoop::dom_depth (24 samples, 0.02%)</title><rect x="34.9459%" y="885" width="0.0160%" height="15" fill="rgb(226,210,39)" fg:x="52509" fg:w="24"/><text x="35.1959%" y="895.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (94 samples, 0.06%)</title><rect x="34.9093%" y="901" width="0.0626%" height="15" fill="rgb(208,219,16)" fg:x="52454" fg:w="94"/><text x="35.1593%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (18 samples, 0.01%)</title><rect x="34.9718%" y="901" width="0.0120%" height="15" fill="rgb(216,158,51)" fg:x="52548" fg:w="18"/><text x="35.2218%" y="911.50"></text></g><g><title>PhaseIdealLoop::dom_depth (421 samples, 0.28%)</title><rect x="35.9987%" y="885" width="0.2802%" height="15" fill="rgb(233,14,44)" fg:x="54091" fg:w="421"/><text x="36.2487%" y="895.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,949 samples, 1.30%)</title><rect x="34.9838%" y="901" width="1.2971%" height="15" fill="rgb(237,97,39)" fg:x="52566" fg:w="1949"/><text x="35.2338%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,718 samples, 1.81%)</title><rect x="34.4787%" y="917" width="1.8089%" height="15" fill="rgb(218,198,43)" fg:x="51807" fg:w="2718"/><text x="34.7287%" y="927.50">P..</text></g><g><title>PhaseIdealLoop::get_loop (27 samples, 0.02%)</title><rect x="36.2876%" y="917" width="0.0180%" height="15" fill="rgb(231,104,20)" fg:x="54525" fg:w="27"/><text x="36.5376%" y="927.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (3,374 samples, 2.25%)</title><rect x="34.0754%" y="933" width="2.2455%" height="15" fill="rgb(254,36,13)" fg:x="51201" fg:w="3374"/><text x="34.3254%" y="943.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_late (4,319 samples, 2.87%)</title><rect x="33.4611%" y="949" width="2.8744%" height="15" fill="rgb(248,14,50)" fg:x="50278" fg:w="4319"/><text x="33.7111%" y="959.50">Ph..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (150 samples, 0.10%)</title><rect x="36.6543%" y="933" width="0.0998%" height="15" fill="rgb(217,107,29)" fg:x="55076" fg:w="150"/><text x="36.9043%" y="943.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (643 samples, 0.43%)</title><rect x="36.3368%" y="949" width="0.4279%" height="15" fill="rgb(251,169,33)" fg:x="54599" fg:w="643"/><text x="36.5868%" y="959.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (21 samples, 0.01%)</title><rect x="36.7674%" y="949" width="0.0140%" height="15" fill="rgb(217,108,32)" fg:x="55246" fg:w="21"/><text x="37.0174%" y="959.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (21 samples, 0.01%)</title><rect x="36.7674%" y="933" width="0.0140%" height="15" fill="rgb(219,66,42)" fg:x="55246" fg:w="21"/><text x="37.0174%" y="943.50"></text></g><g><title>PhaseIdealLoop::handle_use (32 samples, 0.02%)</title><rect x="37.0463%" y="917" width="0.0213%" height="15" fill="rgb(206,180,7)" fg:x="55665" fg:w="32"/><text x="37.2963%" y="927.50"></text></g><g><title>PhaseIdealLoop::spinup (25 samples, 0.02%)</title><rect x="37.0509%" y="901" width="0.0166%" height="15" fill="rgb(208,226,31)" fg:x="55672" fg:w="25"/><text x="37.3009%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (19 samples, 0.01%)</title><rect x="37.0869%" y="901" width="0.0126%" height="15" fill="rgb(218,26,49)" fg:x="55726" fg:w="19"/><text x="37.3369%" y="911.50"></text></g><g><title>PhaseIterGVN::subsume_node (20 samples, 0.01%)</title><rect x="37.0869%" y="917" width="0.0133%" height="15" fill="rgb(233,197,48)" fg:x="55726" fg:w="20"/><text x="37.3369%" y="927.50"></text></g><g><title>PhaseIdealLoop::do_split_if (87 samples, 0.06%)</title><rect x="37.0430%" y="933" width="0.0579%" height="15" fill="rgb(252,181,51)" fg:x="55660" fg:w="87"/><text x="37.2930%" y="943.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (18 samples, 0.01%)</title><rect x="37.1627%" y="917" width="0.0120%" height="15" fill="rgb(253,90,19)" fg:x="55840" fg:w="18"/><text x="37.4127%" y="927.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (19 samples, 0.01%)</title><rect x="37.1940%" y="917" width="0.0126%" height="15" fill="rgb(215,171,30)" fg:x="55887" fg:w="19"/><text x="37.4440%" y="927.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (180 samples, 0.12%)</title><rect x="37.1035%" y="933" width="0.1198%" height="15" fill="rgb(214,222,9)" fg:x="55751" fg:w="180"/><text x="37.3535%" y="943.50"></text></g><g><title>ConstraintCastNode::dominating_cast (41 samples, 0.03%)</title><rect x="37.2792%" y="917" width="0.0273%" height="15" fill="rgb(223,3,22)" fg:x="56015" fg:w="41"/><text x="37.5292%" y="927.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (29 samples, 0.02%)</title><rect x="37.3171%" y="917" width="0.0193%" height="15" fill="rgb(225,196,46)" fg:x="56072" fg:w="29"/><text x="37.5671%" y="927.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (64 samples, 0.04%)</title><rect x="37.3364%" y="917" width="0.0426%" height="15" fill="rgb(209,110,37)" fg:x="56101" fg:w="64"/><text x="37.5864%" y="927.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (20 samples, 0.01%)</title><rect x="37.3657%" y="901" width="0.0133%" height="15" fill="rgb(249,89,12)" fg:x="56145" fg:w="20"/><text x="37.6157%" y="911.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (128 samples, 0.09%)</title><rect x="37.3804%" y="917" width="0.0852%" height="15" fill="rgb(226,27,33)" fg:x="56167" fg:w="128"/><text x="37.6304%" y="927.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (44 samples, 0.03%)</title><rect x="37.4363%" y="901" width="0.0293%" height="15" fill="rgb(213,82,22)" fg:x="56251" fg:w="44"/><text x="37.6863%" y="911.50"></text></g><g><title>Unique_Node_List::remove (27 samples, 0.02%)</title><rect x="37.5294%" y="885" width="0.0180%" height="15" fill="rgb(248,140,0)" fg:x="56391" fg:w="27"/><text x="37.7794%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (53 samples, 0.04%)</title><rect x="37.5128%" y="901" width="0.0353%" height="15" fill="rgb(228,106,3)" fg:x="56366" fg:w="53"/><text x="37.7628%" y="911.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (143 samples, 0.10%)</title><rect x="37.4656%" y="917" width="0.0952%" height="15" fill="rgb(209,23,37)" fg:x="56295" fg:w="143"/><text x="37.7156%" y="927.50"></text></g><g><title>PhaseIdealLoop::try_move_store_before_loop (23 samples, 0.02%)</title><rect x="37.5607%" y="917" width="0.0153%" height="15" fill="rgb(241,93,50)" fg:x="56438" fg:w="23"/><text x="37.8107%" y="927.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (551 samples, 0.37%)</title><rect x="37.2233%" y="933" width="0.3667%" height="15" fill="rgb(253,46,43)" fg:x="55931" fg:w="551"/><text x="37.4733%" y="943.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,206 samples, 0.80%)</title><rect x="36.7894%" y="949" width="0.8026%" height="15" fill="rgb(226,206,43)" fg:x="55279" fg:w="1206"/><text x="37.0394%" y="959.50"></text></g><g><title>AddNode::Value (16 samples, 0.01%)</title><rect x="37.6832%" y="917" width="0.0106%" height="15" fill="rgb(217,54,7)" fg:x="56622" fg:w="16"/><text x="37.9332%" y="927.50"></text></g><g><title>AddNode::add_of_identity (16 samples, 0.01%)</title><rect x="37.6832%" y="901" width="0.0106%" height="15" fill="rgb(223,5,52)" fg:x="56622" fg:w="16"/><text x="37.9332%" y="911.50"></text></g><g><title>CallNode::Ideal (21 samples, 0.01%)</title><rect x="37.7111%" y="917" width="0.0140%" height="15" fill="rgb(206,52,46)" fg:x="56664" fg:w="21"/><text x="37.9611%" y="927.50"></text></g><g><title>Node::remove_dead_region (21 samples, 0.01%)</title><rect x="37.7111%" y="901" width="0.0140%" height="15" fill="rgb(253,136,11)" fg:x="56664" fg:w="21"/><text x="37.9611%" y="911.50"></text></g><g><title>Dict::Insert (16 samples, 0.01%)</title><rect x="37.7324%" y="869" width="0.0106%" height="15" fill="rgb(208,106,33)" fg:x="56696" fg:w="16"/><text x="37.9824%" y="879.50"></text></g><g><title>Type::hashcons (18 samples, 0.01%)</title><rect x="37.7324%" y="885" width="0.0120%" height="15" fill="rgb(206,54,4)" fg:x="56696" fg:w="18"/><text x="37.9824%" y="895.50"></text></g><g><title>CastIINode::Value (28 samples, 0.02%)</title><rect x="37.7298%" y="917" width="0.0186%" height="15" fill="rgb(213,3,15)" fg:x="56692" fg:w="28"/><text x="37.9798%" y="927.50"></text></g><g><title>TypeInt::filter_helper (25 samples, 0.02%)</title><rect x="37.7318%" y="901" width="0.0166%" height="15" fill="rgb(252,211,39)" fg:x="56695" fg:w="25"/><text x="37.9818%" y="911.50"></text></g><g><title>ConstraintCastNode::Identity (21 samples, 0.01%)</title><rect x="37.7597%" y="917" width="0.0140%" height="15" fill="rgb(223,6,36)" fg:x="56737" fg:w="21"/><text x="38.0097%" y="927.50"></text></g><g><title>ConvI2LNode::Value (25 samples, 0.02%)</title><rect x="37.7837%" y="917" width="0.0166%" height="15" fill="rgb(252,169,45)" fg:x="56773" fg:w="25"/><text x="38.0337%" y="927.50"></text></g><g><title>IfNode::Ideal (23 samples, 0.02%)</title><rect x="37.8016%" y="917" width="0.0153%" height="15" fill="rgb(212,48,26)" fg:x="56800" fg:w="23"/><text x="38.0516%" y="927.50"></text></g><g><title>MemNode::Ideal_common (21 samples, 0.01%)</title><rect x="37.8296%" y="901" width="0.0140%" height="15" fill="rgb(251,102,48)" fg:x="56842" fg:w="21"/><text x="38.0796%" y="911.50"></text></g><g><title>MemNode::find_previous_store (22 samples, 0.01%)</title><rect x="37.8476%" y="901" width="0.0146%" height="15" fill="rgb(243,208,16)" fg:x="56869" fg:w="22"/><text x="38.0976%" y="911.50"></text></g><g><title>LoadNode::Ideal (59 samples, 0.04%)</title><rect x="37.8243%" y="917" width="0.0393%" height="15" fill="rgb(219,96,24)" fg:x="56834" fg:w="59"/><text x="38.0743%" y="927.50"></text></g><g><title>NodeHash::grow (30 samples, 0.02%)</title><rect x="37.9301%" y="901" width="0.0200%" height="15" fill="rgb(219,33,29)" fg:x="56993" fg:w="30"/><text x="38.1801%" y="911.50"></text></g><g><title>NodeHash::hash_find_insert (98 samples, 0.07%)</title><rect x="37.8882%" y="917" width="0.0652%" height="15" fill="rgb(223,176,5)" fg:x="56930" fg:w="98"/><text x="38.1382%" y="927.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (60 samples, 0.04%)</title><rect x="37.9541%" y="917" width="0.0399%" height="15" fill="rgb(228,140,14)" fg:x="57029" fg:w="60"/><text x="38.2041%" y="927.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (39 samples, 0.03%)</title><rect x="38.0093%" y="901" width="0.0260%" height="15" fill="rgb(217,179,31)" fg:x="57112" fg:w="39"/><text x="38.2593%" y="911.50"></text></g><g><title>PhaseIterGVN::subsume_node (69 samples, 0.05%)</title><rect x="37.9940%" y="917" width="0.0459%" height="15" fill="rgb(230,9,30)" fg:x="57089" fg:w="69"/><text x="38.2440%" y="927.50"></text></g><g><title>PhiNode::Ideal (47 samples, 0.03%)</title><rect x="38.0406%" y="917" width="0.0313%" height="15" fill="rgb(230,136,20)" fg:x="57159" fg:w="47"/><text x="38.2906%" y="927.50"></text></g><g><title>PhiNode::Value (18 samples, 0.01%)</title><rect x="38.0745%" y="917" width="0.0120%" height="15" fill="rgb(215,210,22)" fg:x="57210" fg:w="18"/><text x="38.3245%" y="927.50"></text></g><g><title>PhaseIterGVN::subsume_node (16 samples, 0.01%)</title><rect x="38.1271%" y="901" width="0.0106%" height="15" fill="rgb(218,43,5)" fg:x="57289" fg:w="16"/><text x="38.3771%" y="911.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (18 samples, 0.01%)</title><rect x="38.1377%" y="901" width="0.0120%" height="15" fill="rgb(216,11,5)" fg:x="57305" fg:w="18"/><text x="38.3877%" y="911.50"></text></g><g><title>RegionNode::is_unreachable_region (94 samples, 0.06%)</title><rect x="38.1497%" y="901" width="0.0626%" height="15" fill="rgb(209,82,29)" fg:x="57323" fg:w="94"/><text x="38.3997%" y="911.50"></text></g><g><title>RegionNode::Ideal (167 samples, 0.11%)</title><rect x="38.1025%" y="917" width="0.1111%" height="15" fill="rgb(244,115,12)" fg:x="57252" fg:w="167"/><text x="38.3525%" y="927.50"></text></g><g><title>InitializeNode::detect_init_independence (19 samples, 0.01%)</title><rect x="38.2183%" y="693" width="0.0126%" height="15" fill="rgb(222,82,18)" fg:x="57426" fg:w="19"/><text x="38.4683%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (23 samples, 0.02%)</title><rect x="38.2183%" y="709" width="0.0153%" height="15" fill="rgb(249,227,8)" fg:x="57426" fg:w="23"/><text x="38.4683%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="38.2183%" y="725" width="0.0160%" height="15" fill="rgb(253,141,45)" fg:x="57426" fg:w="24"/><text x="38.4683%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (26 samples, 0.02%)</title><rect x="38.2183%" y="741" width="0.0173%" height="15" fill="rgb(234,184,4)" fg:x="57426" fg:w="26"/><text x="38.4683%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (27 samples, 0.02%)</title><rect x="38.2183%" y="757" width="0.0180%" height="15" fill="rgb(218,194,23)" fg:x="57426" fg:w="27"/><text x="38.4683%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (32 samples, 0.02%)</title><rect x="38.2183%" y="773" width="0.0213%" height="15" fill="rgb(235,66,41)" fg:x="57426" fg:w="32"/><text x="38.4683%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.02%)</title><rect x="38.2183%" y="789" width="0.0246%" height="15" fill="rgb(245,217,1)" fg:x="57426" fg:w="37"/><text x="38.4683%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (39 samples, 0.03%)</title><rect x="38.2183%" y="805" width="0.0260%" height="15" fill="rgb(229,91,1)" fg:x="57426" fg:w="39"/><text x="38.4683%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (41 samples, 0.03%)</title><rect x="38.2183%" y="821" width="0.0273%" height="15" fill="rgb(207,101,30)" fg:x="57426" fg:w="41"/><text x="38.4683%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (43 samples, 0.03%)</title><rect x="38.2183%" y="837" width="0.0286%" height="15" fill="rgb(223,82,49)" fg:x="57426" fg:w="43"/><text x="38.4683%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (48 samples, 0.03%)</title><rect x="38.2183%" y="853" width="0.0319%" height="15" fill="rgb(218,167,17)" fg:x="57426" fg:w="48"/><text x="38.4683%" y="863.50"></text></g><g><title>InitializeNode::can_capture_store (52 samples, 0.03%)</title><rect x="38.2183%" y="901" width="0.0346%" height="15" fill="rgb(208,103,14)" fg:x="57426" fg:w="52"/><text x="38.4683%" y="911.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.03%)</title><rect x="38.2183%" y="885" width="0.0346%" height="15" fill="rgb(238,20,8)" fg:x="57426" fg:w="52"/><text x="38.4683%" y="895.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.03%)</title><rect x="38.2183%" y="869" width="0.0346%" height="15" fill="rgb(218,80,54)" fg:x="57426" fg:w="52"/><text x="38.4683%" y="879.50"></text></g><g><title>StoreNode::Ideal (59 samples, 0.04%)</title><rect x="38.2176%" y="917" width="0.0393%" height="15" fill="rgb(240,144,17)" fg:x="57425" fg:w="59"/><text x="38.4676%" y="927.50"></text></g><g><title>PhaseIterGVN::transform_old (993 samples, 0.66%)</title><rect x="37.6200%" y="933" width="0.6609%" height="15" fill="rgb(245,27,50)" fg:x="56527" fg:w="993"/><text x="37.8700%" y="943.50"></text></g><g><title>PhaseIterGVN::optimize (1,045 samples, 0.70%)</title><rect x="37.5927%" y="949" width="0.6955%" height="15" fill="rgb(251,51,7)" fg:x="56486" fg:w="1045"/><text x="37.8427%" y="959.50"></text></g><g><title>SuperWord::find_adjacent_refs (22 samples, 0.01%)</title><rect x="38.3141%" y="917" width="0.0146%" height="15" fill="rgb(245,217,29)" fg:x="57570" fg:w="22"/><text x="38.5641%" y="927.50"></text></g><g><title>SuperWord::transform_loop (36 samples, 0.02%)</title><rect x="38.3081%" y="949" width="0.0240%" height="15" fill="rgb(221,176,29)" fg:x="57561" fg:w="36"/><text x="38.5581%" y="959.50"></text></g><g><title>SuperWord::SLP_extract (36 samples, 0.02%)</title><rect x="38.3081%" y="933" width="0.0240%" height="15" fill="rgb(212,180,24)" fg:x="57561" fg:w="36"/><text x="38.5581%" y="943.50"></text></g><g><title>[libc-2.31.so] (23 samples, 0.02%)</title><rect x="38.3334%" y="949" width="0.0153%" height="15" fill="rgb(254,24,2)" fg:x="57599" fg:w="23"/><text x="38.5834%" y="959.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (9,917 samples, 6.60%)</title><rect x="31.7501%" y="965" width="6.6000%" height="15" fill="rgb(230,100,2)" fg:x="47707" fg:w="9917"/><text x="32.0001%" y="975.50">PhaseIdea..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (101 samples, 0.07%)</title><rect x="38.3500%" y="965" width="0.0672%" height="15" fill="rgb(219,142,25)" fg:x="57624" fg:w="101"/><text x="38.6000%" y="975.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (57 samples, 0.04%)</title><rect x="38.3793%" y="949" width="0.0379%" height="15" fill="rgb(240,73,43)" fg:x="57668" fg:w="57"/><text x="38.6293%" y="959.50"></text></g><g><title>CallNode::Ideal (23 samples, 0.02%)</title><rect x="38.5517%" y="933" width="0.0153%" height="15" fill="rgb(214,114,15)" fg:x="57927" fg:w="23"/><text x="38.8017%" y="943.50"></text></g><g><title>Node::remove_dead_region (22 samples, 0.01%)</title><rect x="38.5524%" y="917" width="0.0146%" height="15" fill="rgb(207,130,4)" fg:x="57928" fg:w="22"/><text x="38.8024%" y="927.50"></text></g><g><title>IfNode::fold_compares (16 samples, 0.01%)</title><rect x="38.6276%" y="917" width="0.0106%" height="15" fill="rgb(221,25,40)" fg:x="58041" fg:w="16"/><text x="38.8776%" y="927.50"></text></g><g><title>IfNode::search_identical (27 samples, 0.02%)</title><rect x="38.6382%" y="917" width="0.0180%" height="15" fill="rgb(241,184,7)" fg:x="58057" fg:w="27"/><text x="38.8882%" y="927.50"></text></g><g><title>PhaseIterGVN::subsume_node (67 samples, 0.04%)</title><rect x="38.6715%" y="917" width="0.0446%" height="15" fill="rgb(235,159,4)" fg:x="58107" fg:w="67"/><text x="38.9215%" y="927.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (60 samples, 0.04%)</title><rect x="38.6761%" y="901" width="0.0399%" height="15" fill="rgb(214,87,48)" fg:x="58114" fg:w="60"/><text x="38.9261%" y="911.50"></text></g><g><title>Unique_Node_List::remove (54 samples, 0.04%)</title><rect x="38.6801%" y="885" width="0.0359%" height="15" fill="rgb(246,198,24)" fg:x="58120" fg:w="54"/><text x="38.9301%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (31 samples, 0.02%)</title><rect x="38.7367%" y="901" width="0.0206%" height="15" fill="rgb(209,66,40)" fg:x="58205" fg:w="31"/><text x="38.9867%" y="911.50"></text></g><g><title>Unique_Node_List::remove (23 samples, 0.02%)</title><rect x="38.7420%" y="885" width="0.0153%" height="15" fill="rgb(233,147,39)" fg:x="58213" fg:w="23"/><text x="38.9920%" y="895.50"></text></g><g><title>IfNode::Ideal (228 samples, 0.15%)</title><rect x="38.6096%" y="933" width="0.1517%" height="15" fill="rgb(231,145,52)" fg:x="58014" fg:w="228"/><text x="38.8596%" y="943.50"></text></g><g><title>split_if (61 samples, 0.04%)</title><rect x="38.7207%" y="917" width="0.0406%" height="15" fill="rgb(206,20,26)" fg:x="58181" fg:w="61"/><text x="38.9707%" y="927.50"></text></g><g><title>MemNode::Ideal_common (40 samples, 0.03%)</title><rect x="38.7886%" y="917" width="0.0266%" height="15" fill="rgb(238,220,4)" fg:x="58283" fg:w="40"/><text x="39.0386%" y="927.50"></text></g><g><title>MemNode::all_controls_dominate (25 samples, 0.02%)</title><rect x="38.8206%" y="901" width="0.0166%" height="15" fill="rgb(252,195,42)" fg:x="58331" fg:w="25"/><text x="39.0706%" y="911.50"></text></g><g><title>Node::dominates (23 samples, 0.02%)</title><rect x="38.8219%" y="885" width="0.0153%" height="15" fill="rgb(209,10,6)" fg:x="58333" fg:w="23"/><text x="39.0719%" y="895.50"></text></g><g><title>MemNode::find_previous_store (44 samples, 0.03%)</title><rect x="38.8172%" y="917" width="0.0293%" height="15" fill="rgb(229,3,52)" fg:x="58326" fg:w="44"/><text x="39.0672%" y="927.50"></text></g><g><title>LoadNode::Ideal (110 samples, 0.07%)</title><rect x="38.7746%" y="933" width="0.0732%" height="15" fill="rgb(253,49,37)" fg:x="58262" fg:w="110"/><text x="39.0246%" y="943.50"></text></g><g><title>LoadNode::is_instance_field_load_with_local_phi (17 samples, 0.01%)</title><rect x="38.8478%" y="917" width="0.0113%" height="15" fill="rgb(240,103,49)" fg:x="58372" fg:w="17"/><text x="39.0978%" y="927.50"></text></g><g><title>LoadNode::Identity (22 samples, 0.01%)</title><rect x="38.8478%" y="933" width="0.0146%" height="15" fill="rgb(250,182,30)" fg:x="58372" fg:w="22"/><text x="39.0978%" y="943.50"></text></g><g><title>MergeMemNode::Ideal (36 samples, 0.02%)</title><rect x="38.8791%" y="933" width="0.0240%" height="15" fill="rgb(248,8,30)" fg:x="58419" fg:w="36"/><text x="39.1291%" y="943.50"></text></g><g><title>NodeHash::grow (44 samples, 0.03%)</title><rect x="38.9663%" y="917" width="0.0293%" height="15" fill="rgb(237,120,30)" fg:x="58550" fg:w="44"/><text x="39.2163%" y="927.50"></text></g><g><title>NodeHash::hash_find_insert (136 samples, 0.09%)</title><rect x="38.9104%" y="933" width="0.0905%" height="15" fill="rgb(221,146,34)" fg:x="58466" fg:w="136"/><text x="39.1604%" y="943.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (43 samples, 0.03%)</title><rect x="39.0009%" y="933" width="0.0286%" height="15" fill="rgb(242,55,13)" fg:x="58602" fg:w="43"/><text x="39.2509%" y="943.50"></text></g><g><title>Node::replace_edge (17 samples, 0.01%)</title><rect x="39.0908%" y="901" width="0.0113%" height="15" fill="rgb(242,112,31)" fg:x="58737" fg:w="17"/><text x="39.3408%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (63 samples, 0.04%)</title><rect x="39.0721%" y="917" width="0.0419%" height="15" fill="rgb(249,192,27)" fg:x="58709" fg:w="63"/><text x="39.3221%" y="927.50"></text></g><g><title>Unique_Node_List::remove (18 samples, 0.01%)</title><rect x="39.1021%" y="901" width="0.0120%" height="15" fill="rgb(208,204,44)" fg:x="58754" fg:w="18"/><text x="39.3521%" y="911.50"></text></g><g><title>PhaseIterGVN::subsume_node (137 samples, 0.09%)</title><rect x="39.0295%" y="933" width="0.0912%" height="15" fill="rgb(208,93,54)" fg:x="58645" fg:w="137"/><text x="39.2795%" y="943.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (31 samples, 0.02%)</title><rect x="39.1626%" y="917" width="0.0206%" height="15" fill="rgb(242,1,31)" fg:x="58845" fg:w="31"/><text x="39.4126%" y="927.50"></text></g><g><title>PhiNode::unique_input (18 samples, 0.01%)</title><rect x="39.1846%" y="917" width="0.0120%" height="15" fill="rgb(241,83,25)" fg:x="58878" fg:w="18"/><text x="39.4346%" y="927.50"></text></g><g><title>PhiNode::Ideal (112 samples, 0.07%)</title><rect x="39.1234%" y="933" width="0.0745%" height="15" fill="rgb(205,169,50)" fg:x="58786" fg:w="112"/><text x="39.3734%" y="943.50"></text></g><g><title>PhiNode::Value (34 samples, 0.02%)</title><rect x="39.2032%" y="933" width="0.0226%" height="15" fill="rgb(239,186,37)" fg:x="58906" fg:w="34"/><text x="39.4532%" y="943.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (108 samples, 0.07%)</title><rect x="39.2924%" y="901" width="0.0719%" height="15" fill="rgb(205,221,10)" fg:x="59040" fg:w="108"/><text x="39.5424%" y="911.50"></text></g><g><title>Unique_Node_List::remove (92 samples, 0.06%)</title><rect x="39.3031%" y="885" width="0.0612%" height="15" fill="rgb(218,196,15)" fg:x="59056" fg:w="92"/><text x="39.5531%" y="895.50"></text></g><g><title>PhaseIterGVN::subsume_node (121 samples, 0.08%)</title><rect x="39.2871%" y="917" width="0.0805%" height="15" fill="rgb(218,196,35)" fg:x="59032" fg:w="121"/><text x="39.5371%" y="927.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (18 samples, 0.01%)</title><rect x="39.3683%" y="917" width="0.0120%" height="15" fill="rgb(233,63,24)" fg:x="59154" fg:w="18"/><text x="39.6183%" y="927.50"></text></g><g><title>RegionNode::is_unreachable_region (79 samples, 0.05%)</title><rect x="39.3803%" y="917" width="0.0526%" height="15" fill="rgb(225,8,4)" fg:x="59172" fg:w="79"/><text x="39.6303%" y="927.50"></text></g><g><title>RegionNode::Ideal (297 samples, 0.20%)</title><rect x="39.2385%" y="933" width="0.1977%" height="15" fill="rgb(234,105,35)" fg:x="58959" fg:w="297"/><text x="39.4885%" y="943.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="39.4501%" y="629" width="0.0160%" height="15" fill="rgb(236,21,32)" fg:x="59277" fg:w="24"/><text x="39.7001%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (27 samples, 0.02%)</title><rect x="39.4501%" y="645" width="0.0180%" height="15" fill="rgb(228,109,6)" fg:x="59277" fg:w="27"/><text x="39.7001%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (33 samples, 0.02%)</title><rect x="39.4501%" y="661" width="0.0220%" height="15" fill="rgb(229,215,31)" fg:x="59277" fg:w="33"/><text x="39.7001%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (42 samples, 0.03%)</title><rect x="39.4501%" y="677" width="0.0280%" height="15" fill="rgb(221,52,54)" fg:x="59277" fg:w="42"/><text x="39.7001%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.03%)</title><rect x="39.4501%" y="693" width="0.0326%" height="15" fill="rgb(252,129,43)" fg:x="59277" fg:w="49"/><text x="39.7001%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (57 samples, 0.04%)</title><rect x="39.4501%" y="709" width="0.0379%" height="15" fill="rgb(248,183,27)" fg:x="59277" fg:w="57"/><text x="39.7001%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (65 samples, 0.04%)</title><rect x="39.4501%" y="725" width="0.0433%" height="15" fill="rgb(250,0,22)" fg:x="59277" fg:w="65"/><text x="39.7001%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (71 samples, 0.05%)</title><rect x="39.4501%" y="741" width="0.0473%" height="15" fill="rgb(213,166,10)" fg:x="59277" fg:w="71"/><text x="39.7001%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.05%)</title><rect x="39.4495%" y="757" width="0.0532%" height="15" fill="rgb(207,163,36)" fg:x="59276" fg:w="80"/><text x="39.6995%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (86 samples, 0.06%)</title><rect x="39.4495%" y="773" width="0.0572%" height="15" fill="rgb(208,122,22)" fg:x="59276" fg:w="86"/><text x="39.6995%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (97 samples, 0.06%)</title><rect x="39.4495%" y="789" width="0.0646%" height="15" fill="rgb(207,104,49)" fg:x="59276" fg:w="97"/><text x="39.6995%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (106 samples, 0.07%)</title><rect x="39.4495%" y="805" width="0.0705%" height="15" fill="rgb(248,211,50)" fg:x="59276" fg:w="106"/><text x="39.6995%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (117 samples, 0.08%)</title><rect x="39.4488%" y="821" width="0.0779%" height="15" fill="rgb(217,13,45)" fg:x="59275" fg:w="117"/><text x="39.6988%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (120 samples, 0.08%)</title><rect x="39.4488%" y="837" width="0.0799%" height="15" fill="rgb(211,216,49)" fg:x="59275" fg:w="120"/><text x="39.6988%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (125 samples, 0.08%)</title><rect x="39.4488%" y="853" width="0.0832%" height="15" fill="rgb(221,58,53)" fg:x="59275" fg:w="125"/><text x="39.6988%" y="863.50"></text></g><g><title>Node::dominates (17 samples, 0.01%)</title><rect x="39.5333%" y="837" width="0.0113%" height="15" fill="rgb(220,112,41)" fg:x="59402" fg:w="17"/><text x="39.7833%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (146 samples, 0.10%)</title><rect x="39.4481%" y="869" width="0.0972%" height="15" fill="rgb(236,38,28)" fg:x="59274" fg:w="146"/><text x="39.6981%" y="879.50"></text></g><g><title>MemNode::all_controls_dominate (20 samples, 0.01%)</title><rect x="39.5320%" y="853" width="0.0133%" height="15" fill="rgb(227,195,22)" fg:x="59400" fg:w="20"/><text x="39.7820%" y="863.50"></text></g><g><title>Node::dominates (17 samples, 0.01%)</title><rect x="39.5453%" y="853" width="0.0113%" height="15" fill="rgb(214,55,33)" fg:x="59420" fg:w="17"/><text x="39.7953%" y="863.50"></text></g><g><title>InitializeNode::detect_init_independence (164 samples, 0.11%)</title><rect x="39.4481%" y="885" width="0.1091%" height="15" fill="rgb(248,80,13)" fg:x="59274" fg:w="164"/><text x="39.6981%" y="895.50"></text></g><g><title>MemNode::all_controls_dominate (18 samples, 0.01%)</title><rect x="39.5453%" y="869" width="0.0120%" height="15" fill="rgb(238,52,6)" fg:x="59420" fg:w="18"/><text x="39.7953%" y="879.50"></text></g><g><title>InitializeNode::can_capture_store (166 samples, 0.11%)</title><rect x="39.4475%" y="917" width="0.1105%" height="15" fill="rgb(224,198,47)" fg:x="59273" fg:w="166"/><text x="39.6975%" y="927.50"></text></g><g><title>InitializeNode::detect_init_independence (165 samples, 0.11%)</title><rect x="39.4481%" y="901" width="0.1098%" height="15" fill="rgb(233,171,20)" fg:x="59274" fg:w="165"/><text x="39.6981%" y="911.50"></text></g><g><title>StoreNode::Ideal (202 samples, 0.13%)</title><rect x="39.4455%" y="933" width="0.1344%" height="15" fill="rgb(241,30,25)" fg:x="59270" fg:w="202"/><text x="39.6955%" y="943.50"></text></g><g><title>MemNode::Ideal_common (33 samples, 0.02%)</title><rect x="39.5580%" y="917" width="0.0220%" height="15" fill="rgb(207,171,38)" fg:x="59439" fg:w="33"/><text x="39.8080%" y="927.50"></text></g><g><title>PhaseIterGVN::transform_old (1,733 samples, 1.15%)</title><rect x="38.4539%" y="949" width="1.1533%" height="15" fill="rgb(234,70,1)" fg:x="57780" fg:w="1733"/><text x="38.7039%" y="959.50"></text></g><g><title>PhaseIterGVN::optimize (1,798 samples, 1.20%)</title><rect x="38.4173%" y="965" width="1.1966%" height="15" fill="rgb(232,178,18)" fg:x="57725" fg:w="1798"/><text x="38.6673%" y="975.50"></text></g><g><title>PhaseMacroExpand::eliminate_macro_nodes (21 samples, 0.01%)</title><rect x="39.6139%" y="965" width="0.0140%" height="15" fill="rgb(241,78,40)" fg:x="59523" fg:w="21"/><text x="39.8639%" y="975.50"></text></g><g><title>PhaseMacroExpand::eliminate_allocate_node (21 samples, 0.01%)</title><rect x="39.6139%" y="949" width="0.0140%" height="15" fill="rgb(222,35,25)" fg:x="59523" fg:w="21"/><text x="39.8639%" y="959.50"></text></g><g><title>IfNode::Ideal (32 samples, 0.02%)</title><rect x="39.6731%" y="917" width="0.0213%" height="15" fill="rgb(207,92,16)" fg:x="59612" fg:w="32"/><text x="39.9231%" y="927.50"></text></g><g><title>PhaseIterGVN::subsume_node (16 samples, 0.01%)</title><rect x="39.7217%" y="917" width="0.0106%" height="15" fill="rgb(216,59,51)" fg:x="59685" fg:w="16"/><text x="39.9717%" y="927.50"></text></g><g><title>PhaseIterGVN::optimize (194 samples, 0.13%)</title><rect x="39.6325%" y="949" width="0.1291%" height="15" fill="rgb(213,80,28)" fg:x="59551" fg:w="194"/><text x="39.8825%" y="959.50"></text></g><g><title>PhaseIterGVN::transform_old (187 samples, 0.12%)</title><rect x="39.6372%" y="933" width="0.1245%" height="15" fill="rgb(220,93,7)" fg:x="59558" fg:w="187"/><text x="39.8872%" y="943.50"></text></g><g><title>PhaseIterGVN::subsume_node (18 samples, 0.01%)</title><rect x="39.7802%" y="933" width="0.0120%" height="15" fill="rgb(225,24,44)" fg:x="59773" fg:w="18"/><text x="40.0302%" y="943.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (17 samples, 0.01%)</title><rect x="39.7809%" y="917" width="0.0113%" height="15" fill="rgb(243,74,40)" fg:x="59774" fg:w="17"/><text x="40.0309%" y="927.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (65 samples, 0.04%)</title><rect x="39.7636%" y="949" width="0.0433%" height="15" fill="rgb(228,39,7)" fg:x="59748" fg:w="65"/><text x="40.0136%" y="959.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (290 samples, 0.19%)</title><rect x="39.6278%" y="965" width="0.1930%" height="15" fill="rgb(227,79,8)" fg:x="59544" fg:w="290"/><text x="39.8778%" y="975.50"></text></g><g><title>Compile::identify_useful_nodes (49 samples, 0.03%)</title><rect x="39.8348%" y="933" width="0.0326%" height="15" fill="rgb(236,58,11)" fg:x="59855" fg:w="49"/><text x="40.0848%" y="943.50"></text></g><g><title>Compile::remove_useless_nodes (43 samples, 0.03%)</title><rect x="39.8674%" y="933" width="0.0286%" height="15" fill="rgb(249,63,35)" fg:x="59904" fg:w="43"/><text x="40.1174%" y="943.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (112 samples, 0.07%)</title><rect x="39.8295%" y="949" width="0.0745%" height="15" fill="rgb(252,114,16)" fg:x="59847" fg:w="112"/><text x="40.0795%" y="959.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (127 samples, 0.08%)</title><rect x="39.8208%" y="965" width="0.0845%" height="15" fill="rgb(254,151,24)" fg:x="59834" fg:w="127"/><text x="40.0708%" y="975.50"></text></g><g><title>Compile::Optimize (13,752 samples, 9.15%)</title><rect x="30.7571%" y="981" width="9.1523%" height="15" fill="rgb(253,54,39)" fg:x="46215" fg:w="13752"/><text x="31.0071%" y="991.50">Compile::Opti..</text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="39.9340%" y="837" width="0.0180%" height="15" fill="rgb(243,25,45)" fg:x="60004" fg:w="27"/><text x="40.1840%" y="847.50"></text></g><g><title>Parse::do_field_access (24 samples, 0.02%)</title><rect x="39.9546%" y="837" width="0.0160%" height="15" fill="rgb(234,134,9)" fg:x="60035" fg:w="24"/><text x="40.2046%" y="847.50"></text></g><g><title>Parse::do_if (18 samples, 0.01%)</title><rect x="39.9706%" y="837" width="0.0120%" height="15" fill="rgb(227,166,31)" fg:x="60059" fg:w="18"/><text x="40.2206%" y="847.50"></text></g><g><title>Parse::do_one_block (123 samples, 0.08%)</title><rect x="39.9133%" y="869" width="0.0819%" height="15" fill="rgb(245,143,41)" fg:x="59973" fg:w="123"/><text x="40.1633%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (112 samples, 0.07%)</title><rect x="39.9207%" y="853" width="0.0745%" height="15" fill="rgb(238,181,32)" fg:x="59984" fg:w="112"/><text x="40.1707%" y="863.50"></text></g><g><title>Parse::do_all_blocks (124 samples, 0.08%)</title><rect x="39.9133%" y="885" width="0.0825%" height="15" fill="rgb(224,113,18)" fg:x="59973" fg:w="124"/><text x="40.1633%" y="895.50"></text></g><g><title>ParseGenerator::generate (131 samples, 0.09%)</title><rect x="39.9133%" y="917" width="0.0872%" height="15" fill="rgb(240,229,28)" fg:x="59973" fg:w="131"/><text x="40.1633%" y="927.50"></text></g><g><title>Parse::Parse (131 samples, 0.09%)</title><rect x="39.9133%" y="901" width="0.0872%" height="15" fill="rgb(250,185,3)" fg:x="59973" fg:w="131"/><text x="40.1633%" y="911.50"></text></g><g><title>CompileBroker::compiler_thread_loop (148 samples, 0.10%)</title><rect x="39.9100%" y="981" width="0.0985%" height="15" fill="rgb(212,59,25)" fg:x="59968" fg:w="148"/><text x="40.1600%" y="991.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (148 samples, 0.10%)</title><rect x="39.9100%" y="965" width="0.0985%" height="15" fill="rgb(221,87,20)" fg:x="59968" fg:w="148"/><text x="40.1600%" y="975.50"></text></g><g><title>C2Compiler::compile_method (148 samples, 0.10%)</title><rect x="39.9100%" y="949" width="0.0985%" height="15" fill="rgb(213,74,28)" fg:x="59968" fg:w="148"/><text x="40.1600%" y="959.50"></text></g><g><title>Compile::Compile (148 samples, 0.10%)</title><rect x="39.9100%" y="933" width="0.0985%" height="15" fill="rgb(224,132,34)" fg:x="59968" fg:w="148"/><text x="40.1600%" y="943.50"></text></g><g><title>ciField::ciField (18 samples, 0.01%)</title><rect x="40.0092%" y="757" width="0.0120%" height="15" fill="rgb(222,101,24)" fg:x="60117" fg:w="18"/><text x="40.2592%" y="767.50"></text></g><g><title>ciEnv::get_field_by_index (19 samples, 0.01%)</title><rect x="40.0092%" y="773" width="0.0126%" height="15" fill="rgb(254,142,4)" fg:x="60117" fg:w="19"/><text x="40.2592%" y="783.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (21 samples, 0.01%)</title><rect x="40.0092%" y="805" width="0.0140%" height="15" fill="rgb(230,229,49)" fg:x="60117" fg:w="21"/><text x="40.2592%" y="815.50"></text></g><g><title>ciBytecodeStream::get_field (21 samples, 0.01%)</title><rect x="40.0092%" y="789" width="0.0140%" height="15" fill="rgb(238,70,47)" fg:x="60117" fg:w="21"/><text x="40.2592%" y="799.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (21 samples, 0.01%)</title><rect x="40.0232%" y="805" width="0.0140%" height="15" fill="rgb(231,160,17)" fg:x="60138" fg:w="21"/><text x="40.2732%" y="815.50"></text></g><g><title>ciBytecodeStream::get_method (21 samples, 0.01%)</title><rect x="40.0232%" y="789" width="0.0140%" height="15" fill="rgb(218,68,53)" fg:x="60138" fg:w="21"/><text x="40.2732%" y="799.50"></text></g><g><title>ciEnv::get_method_by_index_impl (20 samples, 0.01%)</title><rect x="40.0238%" y="773" width="0.0133%" height="15" fill="rgb(236,111,10)" fg:x="60139" fg:w="20"/><text x="40.2738%" y="783.50"></text></g><g><title>ciObjectFactory::get_metadata (16 samples, 0.01%)</title><rect x="40.0265%" y="757" width="0.0106%" height="15" fill="rgb(224,34,41)" fg:x="60143" fg:w="16"/><text x="40.2765%" y="767.50"></text></g><g><title>ciTypeFlow::df_flow_types (46 samples, 0.03%)</title><rect x="40.0085%" y="853" width="0.0306%" height="15" fill="rgb(241,118,19)" fg:x="60116" fg:w="46"/><text x="40.2585%" y="863.50"></text></g><g><title>ciTypeFlow::flow_block (46 samples, 0.03%)</title><rect x="40.0085%" y="837" width="0.0306%" height="15" fill="rgb(238,129,25)" fg:x="60116" fg:w="46"/><text x="40.2585%" y="847.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (46 samples, 0.03%)</title><rect x="40.0085%" y="821" width="0.0306%" height="15" fill="rgb(238,22,31)" fg:x="60116" fg:w="46"/><text x="40.2585%" y="831.50"></text></g><g><title>CallGenerator::for_inline (48 samples, 0.03%)</title><rect x="40.0085%" y="933" width="0.0319%" height="15" fill="rgb(222,174,48)" fg:x="60116" fg:w="48"/><text x="40.2585%" y="943.50"></text></g><g><title>InlineTree::check_can_parse (48 samples, 0.03%)</title><rect x="40.0085%" y="917" width="0.0319%" height="15" fill="rgb(206,152,40)" fg:x="60116" fg:w="48"/><text x="40.2585%" y="927.50"></text></g><g><title>ciMethod::get_flow_analysis (48 samples, 0.03%)</title><rect x="40.0085%" y="901" width="0.0319%" height="15" fill="rgb(218,99,54)" fg:x="60116" fg:w="48"/><text x="40.2585%" y="911.50"></text></g><g><title>ciTypeFlow::do_flow (48 samples, 0.03%)</title><rect x="40.0085%" y="885" width="0.0319%" height="15" fill="rgb(220,174,26)" fg:x="60116" fg:w="48"/><text x="40.2585%" y="895.50"></text></g><g><title>ciTypeFlow::flow_types (48 samples, 0.03%)</title><rect x="40.0085%" y="869" width="0.0319%" height="15" fill="rgb(245,116,9)" fg:x="60116" fg:w="48"/><text x="40.2585%" y="879.50"></text></g><g><title>InlineTree::try_to_inline (16 samples, 0.01%)</title><rect x="40.0744%" y="805" width="0.0106%" height="15" fill="rgb(209,72,35)" fg:x="60215" fg:w="16"/><text x="40.3244%" y="815.50"></text></g><g><title>InlineTree::ok_to_inline (47 samples, 0.03%)</title><rect x="40.0724%" y="821" width="0.0313%" height="15" fill="rgb(226,126,21)" fg:x="60212" fg:w="47"/><text x="40.3224%" y="831.50"></text></g><g><title>ciMethod::get_flow_analysis (28 samples, 0.02%)</title><rect x="40.0851%" y="805" width="0.0186%" height="15" fill="rgb(227,192,1)" fg:x="60231" fg:w="28"/><text x="40.3351%" y="815.50"></text></g><g><title>ciTypeFlow::do_flow (19 samples, 0.01%)</title><rect x="40.0910%" y="789" width="0.0126%" height="15" fill="rgb(237,180,29)" fg:x="60240" fg:w="19"/><text x="40.3410%" y="799.50"></text></g><g><title>ciTypeFlow::flow_types (19 samples, 0.01%)</title><rect x="40.0910%" y="773" width="0.0126%" height="15" fill="rgb(230,197,35)" fg:x="60240" fg:w="19"/><text x="40.3410%" y="783.50"></text></g><g><title>Compile::call_generator (57 samples, 0.04%)</title><rect x="40.0684%" y="837" width="0.0379%" height="15" fill="rgb(246,193,31)" fg:x="60206" fg:w="57"/><text x="40.3184%" y="847.50"></text></g><g><title>GraphKit::round_double_arguments (17 samples, 0.01%)</title><rect x="40.1243%" y="837" width="0.0113%" height="15" fill="rgb(241,36,4)" fg:x="60290" fg:w="17"/><text x="40.3743%" y="847.50"></text></g><g><title>TypeFunc::make (17 samples, 0.01%)</title><rect x="40.1243%" y="821" width="0.0113%" height="15" fill="rgb(241,130,17)" fg:x="60290" fg:w="17"/><text x="40.3743%" y="831.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="40.1829%" y="757" width="0.0113%" height="15" fill="rgb(206,137,32)" fg:x="60378" fg:w="17"/><text x="40.4329%" y="767.50"></text></g><g><title>Parse::do_field_access (20 samples, 0.01%)</title><rect x="40.1949%" y="757" width="0.0133%" height="15" fill="rgb(237,228,51)" fg:x="60396" fg:w="20"/><text x="40.4449%" y="767.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.06%)</title><rect x="40.1636%" y="789" width="0.0639%" height="15" fill="rgb(243,6,42)" fg:x="60349" fg:w="96"/><text x="40.4136%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.06%)</title><rect x="40.1702%" y="773" width="0.0572%" height="15" fill="rgb(251,74,28)" fg:x="60359" fg:w="86"/><text x="40.4202%" y="783.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.07%)</title><rect x="40.1629%" y="805" width="0.0732%" height="15" fill="rgb(218,20,49)" fg:x="60348" fg:w="110"/><text x="40.4129%" y="815.50"></text></g><g><title>Parse::do_exits (17 samples, 0.01%)</title><rect x="40.2361%" y="805" width="0.0113%" height="15" fill="rgb(238,28,14)" fg:x="60458" fg:w="17"/><text x="40.4861%" y="815.50"></text></g><g><title>ParseGenerator::generate (168 samples, 0.11%)</title><rect x="40.1456%" y="837" width="0.1118%" height="15" fill="rgb(229,40,46)" fg:x="60322" fg:w="168"/><text x="40.3956%" y="847.50"></text></g><g><title>Parse::Parse (168 samples, 0.11%)</title><rect x="40.1456%" y="821" width="0.1118%" height="15" fill="rgb(244,195,20)" fg:x="60322" fg:w="168"/><text x="40.3956%" y="831.50"></text></g><g><title>PredictedCallGenerator::generate (38 samples, 0.03%)</title><rect x="40.2574%" y="837" width="0.0253%" height="15" fill="rgb(253,56,35)" fg:x="60490" fg:w="38"/><text x="40.5074%" y="847.50"></text></g><g><title>Parse::do_call (342 samples, 0.23%)</title><rect x="40.0684%" y="853" width="0.2276%" height="15" fill="rgb(210,149,44)" fg:x="60206" fg:w="342"/><text x="40.3184%" y="863.50"></text></g><g><title>GraphKit::access_load_at (22 samples, 0.01%)</title><rect x="40.3147%" y="821" width="0.0146%" height="15" fill="rgb(240,135,12)" fg:x="60576" fg:w="22"/><text x="40.5647%" y="831.50"></text></g><g><title>BarrierSetC2::load_at (22 samples, 0.01%)</title><rect x="40.3147%" y="805" width="0.0146%" height="15" fill="rgb(251,24,50)" fg:x="60576" fg:w="22"/><text x="40.5647%" y="815.50"></text></g><g><title>G1BarrierSetC2::load_at_resolved (22 samples, 0.01%)</title><rect x="40.3147%" y="789" width="0.0146%" height="15" fill="rgb(243,200,47)" fg:x="60576" fg:w="22"/><text x="40.5647%" y="799.50"></text></g><g><title>BarrierSetC2::load_at_resolved (22 samples, 0.01%)</title><rect x="40.3147%" y="773" width="0.0146%" height="15" fill="rgb(224,166,26)" fg:x="60576" fg:w="22"/><text x="40.5647%" y="783.50"></text></g><g><title>GraphKit::make_load (21 samples, 0.01%)</title><rect x="40.3153%" y="757" width="0.0140%" height="15" fill="rgb(233,0,47)" fg:x="60577" fg:w="21"/><text x="40.5653%" y="767.50"></text></g><g><title>Parse::do_get_xxx (34 samples, 0.02%)</title><rect x="40.3093%" y="837" width="0.0226%" height="15" fill="rgb(253,80,5)" fg:x="60568" fg:w="34"/><text x="40.5593%" y="847.50"></text></g><g><title>GraphKit::access_store_at (18 samples, 0.01%)</title><rect x="40.3320%" y="821" width="0.0120%" height="15" fill="rgb(214,133,25)" fg:x="60602" fg:w="18"/><text x="40.5820%" y="831.50"></text></g><g><title>BarrierSetC2::store_at (18 samples, 0.01%)</title><rect x="40.3320%" y="805" width="0.0120%" height="15" fill="rgb(209,27,14)" fg:x="60602" fg:w="18"/><text x="40.5820%" y="815.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (17 samples, 0.01%)</title><rect x="40.3326%" y="789" width="0.0113%" height="15" fill="rgb(219,102,51)" fg:x="60603" fg:w="17"/><text x="40.5826%" y="799.50"></text></g><g><title>Parse::do_put_xxx (19 samples, 0.01%)</title><rect x="40.3320%" y="837" width="0.0126%" height="15" fill="rgb(237,18,16)" fg:x="60602" fg:w="19"/><text x="40.5820%" y="847.50"></text></g><g><title>Parse::do_field_access (65 samples, 0.04%)</title><rect x="40.3040%" y="853" width="0.0433%" height="15" fill="rgb(241,85,17)" fg:x="60560" fg:w="65"/><text x="40.5540%" y="863.50"></text></g><g><title>Parse::do_if (16 samples, 0.01%)</title><rect x="40.3473%" y="853" width="0.0106%" height="15" fill="rgb(236,90,42)" fg:x="60625" fg:w="16"/><text x="40.5973%" y="863.50"></text></g><g><title>Parse::do_all_blocks (502 samples, 0.33%)</title><rect x="40.0451%" y="901" width="0.3341%" height="15" fill="rgb(249,57,21)" fg:x="60171" fg:w="502"/><text x="40.2951%" y="911.50"></text></g><g><title>Parse::do_one_block (501 samples, 0.33%)</title><rect x="40.0458%" y="885" width="0.3334%" height="15" fill="rgb(243,12,36)" fg:x="60172" fg:w="501"/><text x="40.2958%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (496 samples, 0.33%)</title><rect x="40.0491%" y="869" width="0.3301%" height="15" fill="rgb(253,128,47)" fg:x="60177" fg:w="496"/><text x="40.2991%" y="879.50"></text></g><g><title>ParseGenerator::generate (509 samples, 0.34%)</title><rect x="40.0451%" y="933" width="0.3388%" height="15" fill="rgb(207,33,20)" fg:x="60171" fg:w="509"/><text x="40.2951%" y="943.50"></text></g><g><title>Parse::Parse (509 samples, 0.34%)</title><rect x="40.0451%" y="917" width="0.3388%" height="15" fill="rgb(233,215,35)" fg:x="60171" fg:w="509"/><text x="40.2951%" y="927.50"></text></g><g><title>CodeBuffer::copy_code_to (16 samples, 0.01%)</title><rect x="40.3839%" y="885" width="0.0106%" height="15" fill="rgb(249,188,52)" fg:x="60680" fg:w="16"/><text x="40.6339%" y="895.50"></text></g><g><title>CodeBuffer::relocate_code_to (16 samples, 0.01%)</title><rect x="40.3839%" y="869" width="0.0106%" height="15" fill="rgb(225,12,32)" fg:x="60680" fg:w="16"/><text x="40.6339%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (586 samples, 0.39%)</title><rect x="40.0085%" y="981" width="0.3900%" height="15" fill="rgb(247,98,14)" fg:x="60116" fg:w="586"/><text x="40.2585%" y="991.50"></text></g><g><title>C2Compiler::compile_method (586 samples, 0.39%)</title><rect x="40.0085%" y="965" width="0.3900%" height="15" fill="rgb(247,219,48)" fg:x="60116" fg:w="586"/><text x="40.2585%" y="975.50"></text></g><g><title>Compile::Compile (586 samples, 0.39%)</title><rect x="40.0085%" y="949" width="0.3900%" height="15" fill="rgb(253,60,48)" fg:x="60116" fg:w="586"/><text x="40.2585%" y="959.50"></text></g><g><title>ciEnv::register_method (22 samples, 0.01%)</title><rect x="40.3839%" y="933" width="0.0146%" height="15" fill="rgb(245,15,52)" fg:x="60680" fg:w="22"/><text x="40.6339%" y="943.50"></text></g><g><title>nmethod::new_nmethod (22 samples, 0.01%)</title><rect x="40.3839%" y="917" width="0.0146%" height="15" fill="rgb(220,133,28)" fg:x="60680" fg:w="22"/><text x="40.6339%" y="927.50"></text></g><g><title>nmethod::nmethod (22 samples, 0.01%)</title><rect x="40.3839%" y="901" width="0.0146%" height="15" fill="rgb(217,180,4)" fg:x="60680" fg:w="22"/><text x="40.6339%" y="911.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="40.4265%" y="853" width="0.0186%" height="15" fill="rgb(251,24,1)" fg:x="60744" fg:w="28"/><text x="40.6765%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.4271%" y="837" width="0.0180%" height="15" fill="rgb(212,185,49)" fg:x="60745" fg:w="27"/><text x="40.6771%" y="847.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="40.4258%" y="869" width="0.0226%" height="15" fill="rgb(215,175,22)" fg:x="60743" fg:w="34"/><text x="40.6758%" y="879.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.03%)</title><rect x="40.4251%" y="901" width="0.0293%" height="15" fill="rgb(250,205,14)" fg:x="60742" fg:w="44"/><text x="40.6751%" y="911.50"></text></g><g><title>Parse::Parse (44 samples, 0.03%)</title><rect x="40.4251%" y="885" width="0.0293%" height="15" fill="rgb(225,211,22)" fg:x="60742" fg:w="44"/><text x="40.6751%" y="895.50"></text></g><g><title>JavaThread::thread_main_inner (52 samples, 0.03%)</title><rect x="40.4225%" y="981" width="0.0346%" height="15" fill="rgb(251,179,42)" fg:x="60738" fg:w="52"/><text x="40.6725%" y="991.50"></text></g><g><title>CompileBroker::compiler_thread_loop (52 samples, 0.03%)</title><rect x="40.4225%" y="965" width="0.0346%" height="15" fill="rgb(208,216,51)" fg:x="60738" fg:w="52"/><text x="40.6725%" y="975.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (52 samples, 0.03%)</title><rect x="40.4225%" y="949" width="0.0346%" height="15" fill="rgb(235,36,11)" fg:x="60738" fg:w="52"/><text x="40.6725%" y="959.50"></text></g><g><title>C2Compiler::compile_method (52 samples, 0.03%)</title><rect x="40.4225%" y="933" width="0.0346%" height="15" fill="rgb(213,189,28)" fg:x="60738" fg:w="52"/><text x="40.6725%" y="943.50"></text></g><g><title>Compile::Compile (52 samples, 0.03%)</title><rect x="40.4225%" y="917" width="0.0346%" height="15" fill="rgb(227,203,42)" fg:x="60738" fg:w="52"/><text x="40.6725%" y="927.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="40.4624%" y="421" width="0.0133%" height="15" fill="rgb(244,72,36)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="431.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="40.4624%" y="405" width="0.0133%" height="15" fill="rgb(213,53,17)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="415.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="40.4624%" y="389" width="0.0133%" height="15" fill="rgb(207,167,3)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="399.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="40.4624%" y="373" width="0.0133%" height="15" fill="rgb(216,98,30)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="40.4624%" y="357" width="0.0133%" height="15" fill="rgb(236,123,15)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="367.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="40.4624%" y="341" width="0.0133%" height="15" fill="rgb(248,81,50)" fg:x="60798" fg:w="20"/><text x="40.7124%" y="351.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="40.4631%" y="325" width="0.0126%" height="15" fill="rgb(214,120,4)" fg:x="60799" fg:w="19"/><text x="40.7131%" y="335.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="40.4631%" y="309" width="0.0126%" height="15" fill="rgb(208,179,34)" fg:x="60799" fg:w="19"/><text x="40.7131%" y="319.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="40.4631%" y="293" width="0.0126%" height="15" fill="rgb(227,140,7)" fg:x="60799" fg:w="19"/><text x="40.7131%" y="303.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="40.4631%" y="277" width="0.0126%" height="15" fill="rgb(214,22,6)" fg:x="60799" fg:w="19"/><text x="40.7131%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="40.4631%" y="261" width="0.0126%" height="15" fill="rgb(207,137,27)" fg:x="60799" fg:w="19"/><text x="40.7131%" y="271.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="40.4624%" y="517" width="0.0140%" height="15" fill="rgb(210,8,46)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="527.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="40.4624%" y="501" width="0.0140%" height="15" fill="rgb(240,16,54)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="511.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="40.4624%" y="485" width="0.0140%" height="15" fill="rgb(211,209,29)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="495.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="40.4624%" y="469" width="0.0140%" height="15" fill="rgb(226,228,24)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="40.4624%" y="453" width="0.0140%" height="15" fill="rgb(222,84,9)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="463.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="40.4624%" y="437" width="0.0140%" height="15" fill="rgb(234,203,30)" fg:x="60798" fg:w="21"/><text x="40.7124%" y="447.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="40.4624%" y="613" width="0.0160%" height="15" fill="rgb(238,109,14)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="623.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="40.4624%" y="597" width="0.0160%" height="15" fill="rgb(233,206,34)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="607.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="40.4624%" y="581" width="0.0160%" height="15" fill="rgb(220,167,47)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="591.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="40.4624%" y="565" width="0.0160%" height="15" fill="rgb(238,105,10)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="40.4624%" y="549" width="0.0160%" height="15" fill="rgb(213,227,17)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="559.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="40.4624%" y="533" width="0.0160%" height="15" fill="rgb(217,132,38)" fg:x="60798" fg:w="24"/><text x="40.7124%" y="543.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="40.4624%" y="805" width="0.0173%" height="15" fill="rgb(242,146,4)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="815.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="40.4624%" y="789" width="0.0173%" height="15" fill="rgb(212,61,9)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="799.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="40.4624%" y="773" width="0.0173%" height="15" fill="rgb(247,126,22)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="783.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="40.4624%" y="757" width="0.0173%" height="15" fill="rgb(220,196,2)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="40.4624%" y="741" width="0.0173%" height="15" fill="rgb(208,46,4)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="751.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="40.4624%" y="725" width="0.0173%" height="15" fill="rgb(252,104,46)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="735.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="40.4624%" y="709" width="0.0173%" height="15" fill="rgb(237,152,48)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="719.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="40.4624%" y="693" width="0.0173%" height="15" fill="rgb(221,59,37)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="703.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="40.4624%" y="677" width="0.0173%" height="15" fill="rgb(209,202,51)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="687.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="40.4624%" y="661" width="0.0173%" height="15" fill="rgb(228,81,30)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="40.4624%" y="645" width="0.0173%" height="15" fill="rgb(227,42,39)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="655.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="40.4624%" y="629" width="0.0173%" height="15" fill="rgb(221,26,2)" fg:x="60798" fg:w="26"/><text x="40.7124%" y="639.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="40.4624%" y="901" width="0.0180%" height="15" fill="rgb(254,61,31)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="911.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="40.4624%" y="885" width="0.0180%" height="15" fill="rgb(222,173,38)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="895.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="40.4624%" y="869" width="0.0180%" height="15" fill="rgb(218,50,12)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="879.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="40.4624%" y="853" width="0.0180%" height="15" fill="rgb(223,88,40)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.4624%" y="837" width="0.0180%" height="15" fill="rgb(237,54,19)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="847.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="40.4624%" y="821" width="0.0180%" height="15" fill="rgb(251,129,25)" fg:x="60798" fg:w="27"/><text x="40.7124%" y="831.50"></text></g><g><title>Parse::Parse (30 samples, 0.02%)</title><rect x="40.4624%" y="981" width="0.0200%" height="15" fill="rgb(238,97,19)" fg:x="60798" fg:w="30"/><text x="40.7124%" y="991.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.02%)</title><rect x="40.4624%" y="965" width="0.0200%" height="15" fill="rgb(240,169,18)" fg:x="60798" fg:w="30"/><text x="40.7124%" y="975.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.02%)</title><rect x="40.4624%" y="949" width="0.0200%" height="15" fill="rgb(230,187,49)" fg:x="60798" fg:w="30"/><text x="40.7124%" y="959.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.02%)</title><rect x="40.4624%" y="933" width="0.0200%" height="15" fill="rgb(209,44,26)" fg:x="60798" fg:w="30"/><text x="40.7124%" y="943.50"></text></g><g><title>Parse::do_call (30 samples, 0.02%)</title><rect x="40.4624%" y="917" width="0.0200%" height="15" fill="rgb(244,0,6)" fg:x="60798" fg:w="30"/><text x="40.7124%" y="927.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="40.4857%" y="261" width="0.0113%" height="15" fill="rgb(248,18,21)" fg:x="60833" fg:w="17"/><text x="40.7357%" y="271.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="40.4824%" y="533" width="0.0166%" height="15" fill="rgb(245,180,19)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="543.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="40.4824%" y="517" width="0.0166%" height="15" fill="rgb(252,118,36)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="527.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.02%)</title><rect x="40.4824%" y="501" width="0.0166%" height="15" fill="rgb(210,224,19)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="511.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="40.4824%" y="485" width="0.0166%" height="15" fill="rgb(218,30,24)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="40.4824%" y="469" width="0.0166%" height="15" fill="rgb(219,75,50)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="479.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="40.4824%" y="453" width="0.0166%" height="15" fill="rgb(234,72,50)" fg:x="60828" fg:w="25"/><text x="40.7324%" y="463.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="40.4837%" y="437" width="0.0153%" height="15" fill="rgb(219,100,48)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="447.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="40.4837%" y="421" width="0.0153%" height="15" fill="rgb(253,5,41)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="431.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="40.4837%" y="405" width="0.0153%" height="15" fill="rgb(247,181,11)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="415.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="40.4837%" y="389" width="0.0153%" height="15" fill="rgb(222,223,25)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="40.4837%" y="373" width="0.0153%" height="15" fill="rgb(214,198,28)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="383.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="40.4837%" y="357" width="0.0153%" height="15" fill="rgb(230,46,43)" fg:x="60830" fg:w="23"/><text x="40.7337%" y="367.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="40.4850%" y="341" width="0.0140%" height="15" fill="rgb(233,65,53)" fg:x="60832" fg:w="21"/><text x="40.7350%" y="351.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="40.4850%" y="325" width="0.0140%" height="15" fill="rgb(221,121,27)" fg:x="60832" fg:w="21"/><text x="40.7350%" y="335.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="40.4850%" y="309" width="0.0140%" height="15" fill="rgb(247,70,47)" fg:x="60832" fg:w="21"/><text x="40.7350%" y="319.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="40.4850%" y="293" width="0.0140%" height="15" fill="rgb(228,85,35)" fg:x="60832" fg:w="21"/><text x="40.7350%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="40.4850%" y="277" width="0.0140%" height="15" fill="rgb(209,50,18)" fg:x="60832" fg:w="21"/><text x="40.7350%" y="287.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="40.4824%" y="629" width="0.0186%" height="15" fill="rgb(250,19,35)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="639.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="40.4824%" y="613" width="0.0186%" height="15" fill="rgb(253,107,29)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="623.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="40.4824%" y="597" width="0.0186%" height="15" fill="rgb(252,179,29)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="607.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="40.4824%" y="581" width="0.0186%" height="15" fill="rgb(238,194,6)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="40.4824%" y="565" width="0.0186%" height="15" fill="rgb(238,164,29)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="575.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="40.4824%" y="549" width="0.0186%" height="15" fill="rgb(224,25,9)" fg:x="60828" fg:w="28"/><text x="40.7324%" y="559.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="40.4824%" y="725" width="0.0193%" height="15" fill="rgb(244,153,23)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="735.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="40.4824%" y="709" width="0.0193%" height="15" fill="rgb(212,203,14)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="719.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.02%)</title><rect x="40.4824%" y="693" width="0.0193%" height="15" fill="rgb(220,164,20)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="703.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.02%)</title><rect x="40.4824%" y="677" width="0.0193%" height="15" fill="rgb(222,203,48)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.02%)</title><rect x="40.4824%" y="661" width="0.0193%" height="15" fill="rgb(215,159,22)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="671.50"></text></g><g><title>Parse::do_call (29 samples, 0.02%)</title><rect x="40.4824%" y="645" width="0.0193%" height="15" fill="rgb(216,183,47)" fg:x="60828" fg:w="29"/><text x="40.7324%" y="655.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.02%)</title><rect x="40.4824%" y="821" width="0.0206%" height="15" fill="rgb(229,195,25)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="831.50"></text></g><g><title>Parse::Parse (31 samples, 0.02%)</title><rect x="40.4824%" y="805" width="0.0206%" height="15" fill="rgb(224,132,51)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="815.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.02%)</title><rect x="40.4824%" y="789" width="0.0206%" height="15" fill="rgb(240,63,7)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="799.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.02%)</title><rect x="40.4824%" y="773" width="0.0206%" height="15" fill="rgb(249,182,41)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="40.4824%" y="757" width="0.0206%" height="15" fill="rgb(243,47,26)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="767.50"></text></g><g><title>Parse::do_call (31 samples, 0.02%)</title><rect x="40.4824%" y="741" width="0.0206%" height="15" fill="rgb(233,48,2)" fg:x="60828" fg:w="31"/><text x="40.7324%" y="751.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.02%)</title><rect x="40.4824%" y="917" width="0.0220%" height="15" fill="rgb(244,165,34)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="927.50"></text></g><g><title>Parse::Parse (33 samples, 0.02%)</title><rect x="40.4824%" y="901" width="0.0220%" height="15" fill="rgb(207,89,7)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="911.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="40.4824%" y="885" width="0.0220%" height="15" fill="rgb(244,117,36)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="895.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="40.4824%" y="869" width="0.0220%" height="15" fill="rgb(226,144,34)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="40.4824%" y="853" width="0.0220%" height="15" fill="rgb(213,23,19)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="863.50"></text></g><g><title>Parse::do_call (33 samples, 0.02%)</title><rect x="40.4824%" y="837" width="0.0220%" height="15" fill="rgb(217,75,12)" fg:x="60828" fg:w="33"/><text x="40.7324%" y="847.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="40.4824%" y="981" width="0.0246%" height="15" fill="rgb(224,159,17)" fg:x="60828" fg:w="37"/><text x="40.7324%" y="991.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.02%)</title><rect x="40.4824%" y="965" width="0.0246%" height="15" fill="rgb(217,118,1)" fg:x="60828" fg:w="37"/><text x="40.7324%" y="975.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.02%)</title><rect x="40.4824%" y="949" width="0.0246%" height="15" fill="rgb(232,180,48)" fg:x="60828" fg:w="37"/><text x="40.7324%" y="959.50"></text></g><g><title>Parse::do_call (37 samples, 0.02%)</title><rect x="40.4824%" y="933" width="0.0246%" height="15" fill="rgb(230,27,33)" fg:x="60828" fg:w="37"/><text x="40.7324%" y="943.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="40.5170%" y="213" width="0.0106%" height="15" fill="rgb(205,31,21)" fg:x="60880" fg:w="16"/><text x="40.7670%" y="223.50"></text></g><g><title>Parse::do_call (37 samples, 0.02%)</title><rect x="40.5110%" y="309" width="0.0246%" height="15" fill="rgb(253,59,4)" fg:x="60871" fg:w="37"/><text x="40.7610%" y="319.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.02%)</title><rect x="40.5123%" y="293" width="0.0233%" height="15" fill="rgb(224,201,9)" fg:x="60873" fg:w="35"/><text x="40.7623%" y="303.50"></text></g><g><title>Parse::Parse (35 samples, 0.02%)</title><rect x="40.5123%" y="277" width="0.0233%" height="15" fill="rgb(229,206,30)" fg:x="60873" fg:w="35"/><text x="40.7623%" y="287.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="40.5130%" y="261" width="0.0226%" height="15" fill="rgb(212,67,47)" fg:x="60874" fg:w="34"/><text x="40.7630%" y="271.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="40.5130%" y="245" width="0.0226%" height="15" fill="rgb(211,96,50)" fg:x="60874" fg:w="34"/><text x="40.7630%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="40.5136%" y="229" width="0.0220%" height="15" fill="rgb(252,114,18)" fg:x="60875" fg:w="33"/><text x="40.7636%" y="239.50"></text></g><g><title>ParseGenerator::generate (43 samples, 0.03%)</title><rect x="40.5097%" y="389" width="0.0286%" height="15" fill="rgb(223,58,37)" fg:x="60869" fg:w="43"/><text x="40.7597%" y="399.50"></text></g><g><title>Parse::Parse (43 samples, 0.03%)</title><rect x="40.5097%" y="373" width="0.0286%" height="15" fill="rgb(237,70,4)" fg:x="60869" fg:w="43"/><text x="40.7597%" y="383.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.03%)</title><rect x="40.5103%" y="357" width="0.0280%" height="15" fill="rgb(244,85,46)" fg:x="60870" fg:w="42"/><text x="40.7603%" y="367.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.03%)</title><rect x="40.5103%" y="341" width="0.0280%" height="15" fill="rgb(223,39,52)" fg:x="60870" fg:w="42"/><text x="40.7603%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.03%)</title><rect x="40.5103%" y="325" width="0.0280%" height="15" fill="rgb(218,200,14)" fg:x="60870" fg:w="42"/><text x="40.7603%" y="335.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.03%)</title><rect x="40.5070%" y="485" width="0.0319%" height="15" fill="rgb(208,171,16)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="495.50"></text></g><g><title>Parse::Parse (48 samples, 0.03%)</title><rect x="40.5070%" y="469" width="0.0319%" height="15" fill="rgb(234,200,18)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="479.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.03%)</title><rect x="40.5070%" y="453" width="0.0319%" height="15" fill="rgb(228,45,11)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="463.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.03%)</title><rect x="40.5070%" y="437" width="0.0319%" height="15" fill="rgb(237,182,11)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.03%)</title><rect x="40.5070%" y="421" width="0.0319%" height="15" fill="rgb(241,175,49)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="431.50"></text></g><g><title>Parse::do_call (48 samples, 0.03%)</title><rect x="40.5070%" y="405" width="0.0319%" height="15" fill="rgb(247,38,35)" fg:x="60865" fg:w="48"/><text x="40.7570%" y="415.50"></text></g><g><title>ParseGenerator::generate (51 samples, 0.03%)</title><rect x="40.5070%" y="581" width="0.0339%" height="15" fill="rgb(228,39,49)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="591.50"></text></g><g><title>Parse::Parse (51 samples, 0.03%)</title><rect x="40.5070%" y="565" width="0.0339%" height="15" fill="rgb(226,101,26)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="575.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.03%)</title><rect x="40.5070%" y="549" width="0.0339%" height="15" fill="rgb(206,141,19)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="559.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.03%)</title><rect x="40.5070%" y="533" width="0.0339%" height="15" fill="rgb(211,200,13)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.03%)</title><rect x="40.5070%" y="517" width="0.0339%" height="15" fill="rgb(241,121,6)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="527.50"></text></g><g><title>Parse::do_call (51 samples, 0.03%)</title><rect x="40.5070%" y="501" width="0.0339%" height="15" fill="rgb(234,221,29)" fg:x="60865" fg:w="51"/><text x="40.7570%" y="511.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.04%)</title><rect x="40.5070%" y="677" width="0.0379%" height="15" fill="rgb(229,136,5)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="687.50"></text></g><g><title>Parse::Parse (57 samples, 0.04%)</title><rect x="40.5070%" y="661" width="0.0379%" height="15" fill="rgb(238,36,11)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="671.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.04%)</title><rect x="40.5070%" y="645" width="0.0379%" height="15" fill="rgb(251,55,41)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="655.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.04%)</title><rect x="40.5070%" y="629" width="0.0379%" height="15" fill="rgb(242,34,40)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.04%)</title><rect x="40.5070%" y="613" width="0.0379%" height="15" fill="rgb(215,42,17)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="623.50"></text></g><g><title>Parse::do_call (57 samples, 0.04%)</title><rect x="40.5070%" y="597" width="0.0379%" height="15" fill="rgb(207,44,46)" fg:x="60865" fg:w="57"/><text x="40.7570%" y="607.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.04%)</title><rect x="40.5070%" y="773" width="0.0413%" height="15" fill="rgb(211,206,28)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="783.50"></text></g><g><title>Parse::Parse (62 samples, 0.04%)</title><rect x="40.5070%" y="757" width="0.0413%" height="15" fill="rgb(237,167,16)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="767.50"></text></g><g><title>Parse::do_all_blocks (62 samples, 0.04%)</title><rect x="40.5070%" y="741" width="0.0413%" height="15" fill="rgb(233,66,6)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="751.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.04%)</title><rect x="40.5070%" y="725" width="0.0413%" height="15" fill="rgb(246,123,29)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (62 samples, 0.04%)</title><rect x="40.5070%" y="709" width="0.0413%" height="15" fill="rgb(209,62,40)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="719.50"></text></g><g><title>Parse::do_call (62 samples, 0.04%)</title><rect x="40.5070%" y="693" width="0.0413%" height="15" fill="rgb(218,4,25)" fg:x="60865" fg:w="62"/><text x="40.7570%" y="703.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.04%)</title><rect x="40.5070%" y="869" width="0.0446%" height="15" fill="rgb(253,91,49)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="879.50"></text></g><g><title>Parse::Parse (67 samples, 0.04%)</title><rect x="40.5070%" y="853" width="0.0446%" height="15" fill="rgb(228,155,29)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="863.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.04%)</title><rect x="40.5070%" y="837" width="0.0446%" height="15" fill="rgb(243,57,37)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="847.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.04%)</title><rect x="40.5070%" y="821" width="0.0446%" height="15" fill="rgb(244,167,17)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (67 samples, 0.04%)</title><rect x="40.5070%" y="805" width="0.0446%" height="15" fill="rgb(207,181,38)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="815.50"></text></g><g><title>Parse::do_call (67 samples, 0.04%)</title><rect x="40.5070%" y="789" width="0.0446%" height="15" fill="rgb(211,8,23)" fg:x="60865" fg:w="67"/><text x="40.7570%" y="799.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.05%)</title><rect x="40.5070%" y="965" width="0.0453%" height="15" fill="rgb(235,11,44)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="975.50"></text></g><g><title>Parse::Parse (68 samples, 0.05%)</title><rect x="40.5070%" y="949" width="0.0453%" height="15" fill="rgb(248,18,52)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="959.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.05%)</title><rect x="40.5070%" y="933" width="0.0453%" height="15" fill="rgb(208,4,7)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="943.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.05%)</title><rect x="40.5070%" y="917" width="0.0453%" height="15" fill="rgb(240,17,39)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="927.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.05%)</title><rect x="40.5070%" y="901" width="0.0453%" height="15" fill="rgb(207,170,3)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="911.50"></text></g><g><title>Parse::do_call (68 samples, 0.05%)</title><rect x="40.5070%" y="885" width="0.0453%" height="15" fill="rgb(236,100,52)" fg:x="60865" fg:w="68"/><text x="40.7570%" y="895.50"></text></g><g><title>Parse::do_call (77 samples, 0.05%)</title><rect x="40.5070%" y="981" width="0.0512%" height="15" fill="rgb(246,78,51)" fg:x="60865" fg:w="77"/><text x="40.7570%" y="991.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="40.5589%" y="453" width="0.0126%" height="15" fill="rgb(211,17,15)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="463.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="40.5589%" y="437" width="0.0126%" height="15" fill="rgb(209,59,46)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="447.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="40.5589%" y="421" width="0.0126%" height="15" fill="rgb(210,92,25)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="431.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="40.5589%" y="405" width="0.0126%" height="15" fill="rgb(238,174,52)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="40.5589%" y="389" width="0.0126%" height="15" fill="rgb(230,73,7)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="399.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="40.5589%" y="373" width="0.0126%" height="15" fill="rgb(243,124,40)" fg:x="60943" fg:w="19"/><text x="40.8089%" y="383.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="40.5596%" y="357" width="0.0120%" height="15" fill="rgb(244,170,11)" fg:x="60944" fg:w="18"/><text x="40.8096%" y="367.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="40.5596%" y="341" width="0.0120%" height="15" fill="rgb(207,114,54)" fg:x="60944" fg:w="18"/><text x="40.8096%" y="351.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="40.5596%" y="325" width="0.0120%" height="15" fill="rgb(205,42,20)" fg:x="60944" fg:w="18"/><text x="40.8096%" y="335.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="40.5596%" y="309" width="0.0120%" height="15" fill="rgb(230,30,28)" fg:x="60944" fg:w="18"/><text x="40.8096%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="40.5596%" y="293" width="0.0120%" height="15" fill="rgb(205,73,54)" fg:x="60944" fg:w="18"/><text x="40.8096%" y="303.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.01%)</title><rect x="40.5582%" y="549" width="0.0146%" height="15" fill="rgb(254,227,23)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="559.50"></text></g><g><title>Parse::Parse (22 samples, 0.01%)</title><rect x="40.5582%" y="533" width="0.0146%" height="15" fill="rgb(228,202,34)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="543.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.01%)</title><rect x="40.5582%" y="517" width="0.0146%" height="15" fill="rgb(222,225,37)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="527.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="40.5582%" y="501" width="0.0146%" height="15" fill="rgb(221,14,54)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="40.5582%" y="485" width="0.0146%" height="15" fill="rgb(254,102,2)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="495.50"></text></g><g><title>Parse::do_call (22 samples, 0.01%)</title><rect x="40.5582%" y="469" width="0.0146%" height="15" fill="rgb(232,104,17)" fg:x="60942" fg:w="22"/><text x="40.8082%" y="479.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="40.5582%" y="645" width="0.0160%" height="15" fill="rgb(250,220,14)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="655.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="40.5582%" y="629" width="0.0160%" height="15" fill="rgb(241,158,9)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="639.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="40.5582%" y="613" width="0.0160%" height="15" fill="rgb(246,9,43)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="623.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="40.5582%" y="597" width="0.0160%" height="15" fill="rgb(206,73,33)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="40.5582%" y="581" width="0.0160%" height="15" fill="rgb(222,79,8)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="591.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="40.5582%" y="565" width="0.0160%" height="15" fill="rgb(234,8,54)" fg:x="60942" fg:w="24"/><text x="40.8082%" y="575.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="40.5582%" y="837" width="0.0180%" height="15" fill="rgb(209,134,38)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="847.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="40.5582%" y="821" width="0.0180%" height="15" fill="rgb(230,127,29)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="831.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="40.5582%" y="805" width="0.0180%" height="15" fill="rgb(242,44,41)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="815.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="40.5582%" y="789" width="0.0180%" height="15" fill="rgb(222,56,43)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.5582%" y="773" width="0.0180%" height="15" fill="rgb(238,39,47)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="783.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="40.5582%" y="757" width="0.0180%" height="15" fill="rgb(226,79,43)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="767.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="40.5582%" y="741" width="0.0180%" height="15" fill="rgb(242,105,53)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="751.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="40.5582%" y="725" width="0.0180%" height="15" fill="rgb(251,132,46)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="735.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="40.5582%" y="709" width="0.0180%" height="15" fill="rgb(231,77,14)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="719.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="40.5582%" y="693" width="0.0180%" height="15" fill="rgb(240,135,9)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.5582%" y="677" width="0.0180%" height="15" fill="rgb(248,109,14)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="687.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="40.5582%" y="661" width="0.0180%" height="15" fill="rgb(227,146,52)" fg:x="60942" fg:w="27"/><text x="40.8082%" y="671.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="40.5582%" y="933" width="0.0193%" height="15" fill="rgb(232,54,3)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="943.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="40.5582%" y="917" width="0.0193%" height="15" fill="rgb(229,201,43)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="927.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.02%)</title><rect x="40.5582%" y="901" width="0.0193%" height="15" fill="rgb(252,161,33)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="911.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.02%)</title><rect x="40.5582%" y="885" width="0.0193%" height="15" fill="rgb(226,146,40)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.02%)</title><rect x="40.5582%" y="869" width="0.0193%" height="15" fill="rgb(219,47,25)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="879.50"></text></g><g><title>Parse::do_call (29 samples, 0.02%)</title><rect x="40.5582%" y="853" width="0.0193%" height="15" fill="rgb(250,135,13)" fg:x="60942" fg:w="29"/><text x="40.8082%" y="863.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="40.5582%" y="981" width="0.0213%" height="15" fill="rgb(219,229,18)" fg:x="60942" fg:w="32"/><text x="40.8082%" y="991.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.02%)</title><rect x="40.5582%" y="965" width="0.0213%" height="15" fill="rgb(217,152,27)" fg:x="60942" fg:w="32"/><text x="40.8082%" y="975.50"></text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="40.5582%" y="949" width="0.0213%" height="15" fill="rgb(225,71,47)" fg:x="60942" fg:w="32"/><text x="40.8082%" y="959.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="40.5815%" y="293" width="0.0106%" height="15" fill="rgb(220,139,14)" fg:x="60977" fg:w="16"/><text x="40.8315%" y="303.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="40.5795%" y="469" width="0.0133%" height="15" fill="rgb(247,54,32)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="479.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="40.5795%" y="453" width="0.0133%" height="15" fill="rgb(252,131,39)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="463.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="40.5795%" y="437" width="0.0133%" height="15" fill="rgb(210,108,39)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="447.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="40.5795%" y="421" width="0.0133%" height="15" fill="rgb(205,23,29)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="40.5795%" y="405" width="0.0133%" height="15" fill="rgb(246,139,46)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="415.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="40.5795%" y="389" width="0.0133%" height="15" fill="rgb(250,81,26)" fg:x="60974" fg:w="20"/><text x="40.8295%" y="399.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="40.5815%" y="373" width="0.0113%" height="15" fill="rgb(214,104,7)" fg:x="60977" fg:w="17"/><text x="40.8315%" y="383.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="40.5815%" y="357" width="0.0113%" height="15" fill="rgb(233,189,8)" fg:x="60977" fg:w="17"/><text x="40.8315%" y="367.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="40.5815%" y="341" width="0.0113%" height="15" fill="rgb(228,141,17)" fg:x="60977" fg:w="17"/><text x="40.8315%" y="351.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="40.5815%" y="325" width="0.0113%" height="15" fill="rgb(247,157,1)" fg:x="60977" fg:w="17"/><text x="40.8315%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="40.5815%" y="309" width="0.0113%" height="15" fill="rgb(249,225,5)" fg:x="60977" fg:w="17"/><text x="40.8315%" y="319.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="40.5795%" y="565" width="0.0160%" height="15" fill="rgb(242,55,13)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="575.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="40.5795%" y="549" width="0.0160%" height="15" fill="rgb(230,49,50)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="559.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="40.5795%" y="533" width="0.0160%" height="15" fill="rgb(241,111,38)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="543.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="40.5795%" y="517" width="0.0160%" height="15" fill="rgb(252,155,4)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="40.5795%" y="501" width="0.0160%" height="15" fill="rgb(212,69,32)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="511.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="40.5795%" y="485" width="0.0160%" height="15" fill="rgb(243,107,47)" fg:x="60974" fg:w="24"/><text x="40.8295%" y="495.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="40.5795%" y="661" width="0.0166%" height="15" fill="rgb(247,130,12)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="671.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="40.5795%" y="645" width="0.0166%" height="15" fill="rgb(233,74,16)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="655.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.02%)</title><rect x="40.5795%" y="629" width="0.0166%" height="15" fill="rgb(208,58,18)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="639.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="40.5795%" y="613" width="0.0166%" height="15" fill="rgb(242,225,1)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="40.5795%" y="597" width="0.0166%" height="15" fill="rgb(249,39,40)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="607.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="40.5795%" y="581" width="0.0166%" height="15" fill="rgb(207,72,44)" fg:x="60974" fg:w="25"/><text x="40.8295%" y="591.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="40.5795%" y="757" width="0.0180%" height="15" fill="rgb(215,193,12)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="767.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="40.5795%" y="741" width="0.0180%" height="15" fill="rgb(248,41,39)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="751.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="40.5795%" y="725" width="0.0180%" height="15" fill="rgb(253,85,4)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="735.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="40.5795%" y="709" width="0.0180%" height="15" fill="rgb(243,70,31)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.5795%" y="693" width="0.0180%" height="15" fill="rgb(253,195,26)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="703.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="40.5795%" y="677" width="0.0180%" height="15" fill="rgb(243,42,11)" fg:x="60974" fg:w="27"/><text x="40.8295%" y="687.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.02%)</title><rect x="40.5795%" y="853" width="0.0220%" height="15" fill="rgb(239,66,17)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="863.50"></text></g><g><title>Parse::Parse (33 samples, 0.02%)</title><rect x="40.5795%" y="837" width="0.0220%" height="15" fill="rgb(217,132,21)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="847.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="40.5795%" y="821" width="0.0220%" height="15" fill="rgb(252,202,21)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="831.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="40.5795%" y="805" width="0.0220%" height="15" fill="rgb(233,98,36)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="40.5795%" y="789" width="0.0220%" height="15" fill="rgb(216,153,54)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="799.50"></text></g><g><title>Parse::do_call (33 samples, 0.02%)</title><rect x="40.5795%" y="773" width="0.0220%" height="15" fill="rgb(250,99,7)" fg:x="60974" fg:w="33"/><text x="40.8295%" y="783.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.02%)</title><rect x="40.5795%" y="949" width="0.0233%" height="15" fill="rgb(207,56,50)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="959.50"></text></g><g><title>Parse::Parse (35 samples, 0.02%)</title><rect x="40.5795%" y="933" width="0.0233%" height="15" fill="rgb(244,61,34)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="943.50"></text></g><g><title>Parse::do_all_blocks (35 samples, 0.02%)</title><rect x="40.5795%" y="917" width="0.0233%" height="15" fill="rgb(241,50,38)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="927.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.02%)</title><rect x="40.5795%" y="901" width="0.0233%" height="15" fill="rgb(212,166,30)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="911.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.02%)</title><rect x="40.5795%" y="885" width="0.0233%" height="15" fill="rgb(249,127,32)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="895.50"></text></g><g><title>Parse::do_call (35 samples, 0.02%)</title><rect x="40.5795%" y="869" width="0.0233%" height="15" fill="rgb(209,103,0)" fg:x="60974" fg:w="35"/><text x="40.8295%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.02%)</title><rect x="40.5795%" y="981" width="0.0240%" height="15" fill="rgb(238,209,51)" fg:x="60974" fg:w="36"/><text x="40.8295%" y="991.50"></text></g><g><title>Parse::do_call (36 samples, 0.02%)</title><rect x="40.5795%" y="965" width="0.0240%" height="15" fill="rgb(237,56,23)" fg:x="60974" fg:w="36"/><text x="40.8295%" y="975.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="40.6341%" y="213" width="0.0160%" height="15" fill="rgb(215,153,46)" fg:x="61056" fg:w="24"/><text x="40.8841%" y="223.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="40.6341%" y="197" width="0.0160%" height="15" fill="rgb(224,49,31)" fg:x="61056" fg:w="24"/><text x="40.8841%" y="207.50"></text></g><g><title>Parse::do_call (52 samples, 0.03%)</title><rect x="40.6181%" y="229" width="0.0346%" height="15" fill="rgb(250,18,42)" fg:x="61032" fg:w="52"/><text x="40.8681%" y="239.50"></text></g><g><title>Parse::do_call (85 samples, 0.06%)</title><rect x="40.6068%" y="325" width="0.0566%" height="15" fill="rgb(215,176,39)" fg:x="61015" fg:w="85"/><text x="40.8568%" y="335.50"></text></g><g><title>ParseGenerator::generate (73 samples, 0.05%)</title><rect x="40.6148%" y="309" width="0.0486%" height="15" fill="rgb(223,77,29)" fg:x="61027" fg:w="73"/><text x="40.8648%" y="319.50"></text></g><g><title>Parse::Parse (73 samples, 0.05%)</title><rect x="40.6148%" y="293" width="0.0486%" height="15" fill="rgb(234,94,52)" fg:x="61027" fg:w="73"/><text x="40.8648%" y="303.50"></text></g><g><title>Parse::do_all_blocks (73 samples, 0.05%)</title><rect x="40.6148%" y="277" width="0.0486%" height="15" fill="rgb(220,154,50)" fg:x="61027" fg:w="73"/><text x="40.8648%" y="287.50"></text></g><g><title>Parse::do_one_block (73 samples, 0.05%)</title><rect x="40.6148%" y="261" width="0.0486%" height="15" fill="rgb(212,11,10)" fg:x="61027" fg:w="73"/><text x="40.8648%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (72 samples, 0.05%)</title><rect x="40.6155%" y="245" width="0.0479%" height="15" fill="rgb(205,166,19)" fg:x="61028" fg:w="72"/><text x="40.8655%" y="255.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.06%)</title><rect x="40.6068%" y="405" width="0.0579%" height="15" fill="rgb(244,198,16)" fg:x="61015" fg:w="87"/><text x="40.8568%" y="415.50"></text></g><g><title>Parse::Parse (87 samples, 0.06%)</title><rect x="40.6068%" y="389" width="0.0579%" height="15" fill="rgb(219,69,12)" fg:x="61015" fg:w="87"/><text x="40.8568%" y="399.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.06%)</title><rect x="40.6068%" y="373" width="0.0579%" height="15" fill="rgb(245,30,7)" fg:x="61015" fg:w="87"/><text x="40.8568%" y="383.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.06%)</title><rect x="40.6068%" y="357" width="0.0579%" height="15" fill="rgb(218,221,48)" fg:x="61015" fg:w="87"/><text x="40.8568%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.06%)</title><rect x="40.6068%" y="341" width="0.0579%" height="15" fill="rgb(216,66,15)" fg:x="61015" fg:w="87"/><text x="40.8568%" y="351.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.06%)</title><rect x="40.6042%" y="501" width="0.0639%" height="15" fill="rgb(226,122,50)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="511.50"></text></g><g><title>Parse::Parse (96 samples, 0.06%)</title><rect x="40.6042%" y="485" width="0.0639%" height="15" fill="rgb(239,156,16)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="495.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.06%)</title><rect x="40.6042%" y="469" width="0.0639%" height="15" fill="rgb(224,27,38)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="479.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.06%)</title><rect x="40.6042%" y="453" width="0.0639%" height="15" fill="rgb(224,39,27)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.06%)</title><rect x="40.6042%" y="437" width="0.0639%" height="15" fill="rgb(215,92,29)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="447.50"></text></g><g><title>Parse::do_call (96 samples, 0.06%)</title><rect x="40.6042%" y="421" width="0.0639%" height="15" fill="rgb(207,159,16)" fg:x="61011" fg:w="96"/><text x="40.8542%" y="431.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.07%)</title><rect x="40.6035%" y="597" width="0.0705%" height="15" fill="rgb(238,163,47)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="607.50"></text></g><g><title>Parse::Parse (106 samples, 0.07%)</title><rect x="40.6035%" y="581" width="0.0705%" height="15" fill="rgb(219,91,49)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="591.50"></text></g><g><title>Parse::do_all_blocks (106 samples, 0.07%)</title><rect x="40.6035%" y="565" width="0.0705%" height="15" fill="rgb(227,167,31)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="575.50"></text></g><g><title>Parse::do_one_block (106 samples, 0.07%)</title><rect x="40.6035%" y="549" width="0.0705%" height="15" fill="rgb(234,80,54)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (106 samples, 0.07%)</title><rect x="40.6035%" y="533" width="0.0705%" height="15" fill="rgb(212,114,2)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="543.50"></text></g><g><title>Parse::do_call (106 samples, 0.07%)</title><rect x="40.6035%" y="517" width="0.0705%" height="15" fill="rgb(234,50,24)" fg:x="61010" fg:w="106"/><text x="40.8535%" y="527.50"></text></g><g><title>ParseGenerator::generate (113 samples, 0.08%)</title><rect x="40.6035%" y="693" width="0.0752%" height="15" fill="rgb(221,68,8)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="703.50"></text></g><g><title>Parse::Parse (113 samples, 0.08%)</title><rect x="40.6035%" y="677" width="0.0752%" height="15" fill="rgb(254,180,31)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="687.50"></text></g><g><title>Parse::do_all_blocks (113 samples, 0.08%)</title><rect x="40.6035%" y="661" width="0.0752%" height="15" fill="rgb(247,130,50)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="671.50"></text></g><g><title>Parse::do_one_block (113 samples, 0.08%)</title><rect x="40.6035%" y="645" width="0.0752%" height="15" fill="rgb(211,109,4)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (113 samples, 0.08%)</title><rect x="40.6035%" y="629" width="0.0752%" height="15" fill="rgb(238,50,21)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="639.50"></text></g><g><title>Parse::do_call (113 samples, 0.08%)</title><rect x="40.6035%" y="613" width="0.0752%" height="15" fill="rgb(225,57,45)" fg:x="61010" fg:w="113"/><text x="40.8535%" y="623.50"></text></g><g><title>ParseGenerator::generate (123 samples, 0.08%)</title><rect x="40.6035%" y="789" width="0.0819%" height="15" fill="rgb(209,196,50)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="799.50"></text></g><g><title>Parse::Parse (123 samples, 0.08%)</title><rect x="40.6035%" y="773" width="0.0819%" height="15" fill="rgb(242,140,13)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="783.50"></text></g><g><title>Parse::do_all_blocks (123 samples, 0.08%)</title><rect x="40.6035%" y="757" width="0.0819%" height="15" fill="rgb(217,111,7)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="767.50"></text></g><g><title>Parse::do_one_block (123 samples, 0.08%)</title><rect x="40.6035%" y="741" width="0.0819%" height="15" fill="rgb(253,193,51)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (123 samples, 0.08%)</title><rect x="40.6035%" y="725" width="0.0819%" height="15" fill="rgb(252,70,29)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="735.50"></text></g><g><title>Parse::do_call (123 samples, 0.08%)</title><rect x="40.6035%" y="709" width="0.0819%" height="15" fill="rgb(232,127,12)" fg:x="61010" fg:w="123"/><text x="40.8535%" y="719.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="40.6854%" y="773" width="0.0120%" height="15" fill="rgb(211,180,21)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="783.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="40.6854%" y="757" width="0.0120%" height="15" fill="rgb(229,72,13)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="767.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="40.6854%" y="741" width="0.0120%" height="15" fill="rgb(240,211,49)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="751.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="40.6854%" y="725" width="0.0120%" height="15" fill="rgb(219,149,40)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="40.6854%" y="709" width="0.0120%" height="15" fill="rgb(210,127,46)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="719.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="40.6854%" y="693" width="0.0120%" height="15" fill="rgb(220,106,7)" fg:x="61133" fg:w="18"/><text x="40.9354%" y="703.50"></text></g><g><title>ParseGenerator::generate (144 samples, 0.10%)</title><rect x="40.6035%" y="885" width="0.0958%" height="15" fill="rgb(249,31,22)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="895.50"></text></g><g><title>Parse::Parse (144 samples, 0.10%)</title><rect x="40.6035%" y="869" width="0.0958%" height="15" fill="rgb(253,1,49)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="879.50"></text></g><g><title>Parse::do_all_blocks (144 samples, 0.10%)</title><rect x="40.6035%" y="853" width="0.0958%" height="15" fill="rgb(227,144,33)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="863.50"></text></g><g><title>Parse::do_one_block (144 samples, 0.10%)</title><rect x="40.6035%" y="837" width="0.0958%" height="15" fill="rgb(249,163,44)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (144 samples, 0.10%)</title><rect x="40.6035%" y="821" width="0.0958%" height="15" fill="rgb(234,15,39)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="831.50"></text></g><g><title>Parse::do_call (144 samples, 0.10%)</title><rect x="40.6035%" y="805" width="0.0958%" height="15" fill="rgb(207,66,16)" fg:x="61010" fg:w="144"/><text x="40.8535%" y="815.50"></text></g><g><title>PredictedCallGenerator::generate (21 samples, 0.01%)</title><rect x="40.6854%" y="789" width="0.0140%" height="15" fill="rgb(233,112,24)" fg:x="61133" fg:w="21"/><text x="40.9354%" y="799.50"></text></g><g><title>ParseGenerator::generate (162 samples, 0.11%)</title><rect x="40.6035%" y="981" width="0.1078%" height="15" fill="rgb(230,90,22)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="991.50"></text></g><g><title>Parse::Parse (162 samples, 0.11%)</title><rect x="40.6035%" y="965" width="0.1078%" height="15" fill="rgb(229,61,13)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="975.50"></text></g><g><title>Parse::do_all_blocks (162 samples, 0.11%)</title><rect x="40.6035%" y="949" width="0.1078%" height="15" fill="rgb(225,57,24)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="959.50"></text></g><g><title>Parse::do_one_block (162 samples, 0.11%)</title><rect x="40.6035%" y="933" width="0.1078%" height="15" fill="rgb(208,169,48)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="943.50"></text></g><g><title>Parse::do_one_bytecode (162 samples, 0.11%)</title><rect x="40.6035%" y="917" width="0.1078%" height="15" fill="rgb(244,218,51)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="927.50"></text></g><g><title>Parse::do_call (162 samples, 0.11%)</title><rect x="40.6035%" y="901" width="0.1078%" height="15" fill="rgb(214,148,10)" fg:x="61010" fg:w="162"/><text x="40.8535%" y="911.50"></text></g><g><title>PredictedCallGenerator::generate (18 samples, 0.01%)</title><rect x="40.6993%" y="885" width="0.0120%" height="15" fill="rgb(225,174,27)" fg:x="61154" fg:w="18"/><text x="40.9493%" y="895.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="40.7379%" y="837" width="0.0106%" height="15" fill="rgb(230,96,26)" fg:x="61212" fg:w="16"/><text x="40.9879%" y="847.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="40.7359%" y="853" width="0.0173%" height="15" fill="rgb(232,10,30)" fg:x="61209" fg:w="26"/><text x="40.9859%" y="863.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.02%)</title><rect x="40.7333%" y="885" width="0.0220%" height="15" fill="rgb(222,8,50)" fg:x="61205" fg:w="33"/><text x="40.9833%" y="895.50"></text></g><g><title>Parse::Parse (33 samples, 0.02%)</title><rect x="40.7333%" y="869" width="0.0220%" height="15" fill="rgb(213,81,27)" fg:x="61205" fg:w="33"/><text x="40.9833%" y="879.50"></text></g><g><title>Thread::call_run (58 samples, 0.04%)</title><rect x="40.7279%" y="981" width="0.0386%" height="15" fill="rgb(245,50,10)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="991.50"></text></g><g><title>JavaThread::thread_main_inner (58 samples, 0.04%)</title><rect x="40.7279%" y="965" width="0.0386%" height="15" fill="rgb(216,100,18)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="975.50"></text></g><g><title>CompileBroker::compiler_thread_loop (58 samples, 0.04%)</title><rect x="40.7279%" y="949" width="0.0386%" height="15" fill="rgb(236,147,54)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="959.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (58 samples, 0.04%)</title><rect x="40.7279%" y="933" width="0.0386%" height="15" fill="rgb(205,143,26)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="943.50"></text></g><g><title>C2Compiler::compile_method (58 samples, 0.04%)</title><rect x="40.7279%" y="917" width="0.0386%" height="15" fill="rgb(236,26,9)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="927.50"></text></g><g><title>Compile::Compile (58 samples, 0.04%)</title><rect x="40.7279%" y="901" width="0.0386%" height="15" fill="rgb(221,165,53)" fg:x="61197" fg:w="58"/><text x="40.9779%" y="911.50"></text></g><g><title>ciEnv::register_method (17 samples, 0.01%)</title><rect x="40.7552%" y="885" width="0.0113%" height="15" fill="rgb(214,110,17)" fg:x="61238" fg:w="17"/><text x="41.0052%" y="895.50"></text></g><g><title>nmethod::new_nmethod (17 samples, 0.01%)</title><rect x="40.7552%" y="869" width="0.0113%" height="15" fill="rgb(237,197,12)" fg:x="61238" fg:w="17"/><text x="41.0052%" y="879.50"></text></g><g><title>_dl_update_slotinfo (40 samples, 0.03%)</title><rect x="40.7779%" y="981" width="0.0266%" height="15" fill="rgb(205,84,17)" fg:x="61272" fg:w="40"/><text x="41.0279%" y="991.50"></text></g><g><title>CallGenerator::for_inline (22 samples, 0.01%)</title><rect x="40.8138%" y="853" width="0.0146%" height="15" fill="rgb(237,18,45)" fg:x="61326" fg:w="22"/><text x="41.0638%" y="863.50"></text></g><g><title>InlineTree::check_can_parse (22 samples, 0.01%)</title><rect x="40.8138%" y="837" width="0.0146%" height="15" fill="rgb(221,87,14)" fg:x="61326" fg:w="22"/><text x="41.0638%" y="847.50"></text></g><g><title>ciMethod::get_flow_analysis (22 samples, 0.01%)</title><rect x="40.8138%" y="821" width="0.0146%" height="15" fill="rgb(238,186,15)" fg:x="61326" fg:w="22"/><text x="41.0638%" y="831.50"></text></g><g><title>ciTypeFlow::do_flow (19 samples, 0.01%)</title><rect x="40.8158%" y="805" width="0.0126%" height="15" fill="rgb(208,115,11)" fg:x="61329" fg:w="19"/><text x="41.0658%" y="815.50"></text></g><g><title>ciTypeFlow::flow_types (19 samples, 0.01%)</title><rect x="40.8158%" y="789" width="0.0126%" height="15" fill="rgb(254,175,0)" fg:x="61329" fg:w="19"/><text x="41.0658%" y="799.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="40.8311%" y="853" width="0.0166%" height="15" fill="rgb(227,24,42)" fg:x="61352" fg:w="25"/><text x="41.0811%" y="863.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="40.8311%" y="837" width="0.0166%" height="15" fill="rgb(223,211,37)" fg:x="61352" fg:w="25"/><text x="41.0811%" y="847.50"></text></g><g><title>ciEnv::register_method (17 samples, 0.01%)</title><rect x="40.8477%" y="853" width="0.0113%" height="15" fill="rgb(235,49,27)" fg:x="61377" fg:w="17"/><text x="41.0977%" y="863.50"></text></g><g><title>start_thread (69 samples, 0.05%)</title><rect x="40.8138%" y="981" width="0.0459%" height="15" fill="rgb(254,97,51)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="991.50"></text></g><g><title>thread_native_entry (69 samples, 0.05%)</title><rect x="40.8138%" y="965" width="0.0459%" height="15" fill="rgb(249,51,40)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="975.50"></text></g><g><title>Thread::call_run (69 samples, 0.05%)</title><rect x="40.8138%" y="949" width="0.0459%" height="15" fill="rgb(210,128,45)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="959.50"></text></g><g><title>JavaThread::thread_main_inner (69 samples, 0.05%)</title><rect x="40.8138%" y="933" width="0.0459%" height="15" fill="rgb(224,137,50)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="943.50"></text></g><g><title>CompileBroker::compiler_thread_loop (69 samples, 0.05%)</title><rect x="40.8138%" y="917" width="0.0459%" height="15" fill="rgb(242,15,9)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="927.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (69 samples, 0.05%)</title><rect x="40.8138%" y="901" width="0.0459%" height="15" fill="rgb(233,187,41)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="911.50"></text></g><g><title>C2Compiler::compile_method (69 samples, 0.05%)</title><rect x="40.8138%" y="885" width="0.0459%" height="15" fill="rgb(227,2,29)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="895.50"></text></g><g><title>Compile::Compile (69 samples, 0.05%)</title><rect x="40.8138%" y="869" width="0.0459%" height="15" fill="rgb(222,70,3)" fg:x="61326" fg:w="69"/><text x="41.0638%" y="879.50"></text></g><g><title>[unknown] (47,504 samples, 31.61%)</title><rect x="9.2567%" y="997" width="31.6150%" height="15" fill="rgb(213,11,42)" fg:x="13909" fg:w="47504"/><text x="9.5067%" y="1007.50">[unknown]</text></g><g><title>thread_native_entry (18 samples, 0.01%)</title><rect x="40.8597%" y="981" width="0.0120%" height="15" fill="rgb(225,150,9)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="991.50"></text></g><g><title>Thread::call_run (18 samples, 0.01%)</title><rect x="40.8597%" y="965" width="0.0120%" height="15" fill="rgb(230,162,45)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="975.50"></text></g><g><title>JavaThread::thread_main_inner (18 samples, 0.01%)</title><rect x="40.8597%" y="949" width="0.0120%" height="15" fill="rgb(222,14,52)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="959.50"></text></g><g><title>CompileBroker::compiler_thread_loop (18 samples, 0.01%)</title><rect x="40.8597%" y="933" width="0.0120%" height="15" fill="rgb(254,198,14)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="943.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (18 samples, 0.01%)</title><rect x="40.8597%" y="917" width="0.0120%" height="15" fill="rgb(220,217,30)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="927.50"></text></g><g><title>C2Compiler::compile_method (18 samples, 0.01%)</title><rect x="40.8597%" y="901" width="0.0120%" height="15" fill="rgb(215,146,41)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="911.50"></text></g><g><title>Compile::Compile (18 samples, 0.01%)</title><rect x="40.8597%" y="885" width="0.0120%" height="15" fill="rgb(217,27,36)" fg:x="61395" fg:w="18"/><text x="41.1097%" y="895.50"></text></g><g><title>ret_from_fork (18 samples, 0.01%)</title><rect x="40.8770%" y="981" width="0.0120%" height="15" fill="rgb(219,218,39)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="991.50"></text></g><g><title>schedule_tail (18 samples, 0.01%)</title><rect x="40.8770%" y="965" width="0.0120%" height="15" fill="rgb(219,4,42)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="975.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="40.8770%" y="949" width="0.0120%" height="15" fill="rgb(249,119,36)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="40.8770%" y="933" width="0.0120%" height="15" fill="rgb(209,23,33)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="40.8770%" y="917" width="0.0120%" height="15" fill="rgb(211,10,0)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="927.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="40.8770%" y="901" width="0.0120%" height="15" fill="rgb(208,99,37)" fg:x="61421" fg:w="18"/><text x="41.1270%" y="911.50"></text></g><g><title>Dict::Insert (49 samples, 0.03%)</title><rect x="40.9396%" y="821" width="0.0326%" height="15" fill="rgb(213,132,31)" fg:x="61515" fg:w="49"/><text x="41.1896%" y="831.50"></text></g><g><title>Type::Initialize (60 samples, 0.04%)</title><rect x="40.9389%" y="837" width="0.0399%" height="15" fill="rgb(243,129,40)" fg:x="61514" fg:w="60"/><text x="41.1889%" y="847.50"></text></g><g><title>CompileWrapper::CompileWrapper (62 samples, 0.04%)</title><rect x="40.9383%" y="853" width="0.0413%" height="15" fill="rgb(210,66,33)" fg:x="61513" fg:w="62"/><text x="41.1883%" y="863.50"></text></g><g><title>Compile::identify_useful_nodes (133 samples, 0.09%)</title><rect x="41.0061%" y="837" width="0.0885%" height="15" fill="rgb(209,189,4)" fg:x="61615" fg:w="133"/><text x="41.2561%" y="847.50"></text></g><g><title>Compile::remove_useless_nodes (131 samples, 0.09%)</title><rect x="41.0947%" y="837" width="0.0872%" height="15" fill="rgb(214,107,37)" fg:x="61748" fg:w="131"/><text x="41.3447%" y="847.50"></text></g><g><title>Compile::update_dead_node_list (19 samples, 0.01%)</title><rect x="41.1818%" y="837" width="0.0126%" height="15" fill="rgb(245,88,54)" fg:x="61879" fg:w="19"/><text x="41.4318%" y="847.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (337 samples, 0.22%)</title><rect x="40.9828%" y="853" width="0.2243%" height="15" fill="rgb(205,146,20)" fg:x="61580" fg:w="337"/><text x="41.2328%" y="863.50"></text></g><g><title>Unique_Node_List::remove_useless_nodes (18 samples, 0.01%)</title><rect x="41.1951%" y="837" width="0.0120%" height="15" fill="rgb(220,161,25)" fg:x="61899" fg:w="18"/><text x="41.4451%" y="847.50"></text></g><g><title>Compile::Compile (486 samples, 0.32%)</title><rect x="40.9070%" y="869" width="0.3234%" height="15" fill="rgb(215,152,15)" fg:x="61466" fg:w="486"/><text x="41.1570%" y="879.50"></text></g><g><title>C2Compiler::compile_method (496 samples, 0.33%)</title><rect x="40.9010%" y="885" width="0.3301%" height="15" fill="rgb(233,192,44)" fg:x="61457" fg:w="496"/><text x="41.1510%" y="895.50"></text></g><g><title>CompileTask::print (21 samples, 0.01%)</title><rect x="41.2477%" y="885" width="0.0140%" height="15" fill="rgb(240,170,46)" fg:x="61978" fg:w="21"/><text x="41.4977%" y="895.50"></text></g><g><title>ciMethod::ciMethod (24 samples, 0.02%)</title><rect x="41.2770%" y="837" width="0.0160%" height="15" fill="rgb(207,104,33)" fg:x="62022" fg:w="24"/><text x="41.5270%" y="847.50"></text></g><g><title>ciSignature::ciSignature (21 samples, 0.01%)</title><rect x="41.2790%" y="821" width="0.0140%" height="15" fill="rgb(219,21,39)" fg:x="62025" fg:w="21"/><text x="41.5290%" y="831.50"></text></g><g><title>ciEnv::get_method_from_handle (25 samples, 0.02%)</title><rect x="41.2770%" y="885" width="0.0166%" height="15" fill="rgb(214,133,29)" fg:x="62022" fg:w="25"/><text x="41.5270%" y="895.50"></text></g><g><title>ciObjectFactory::get_metadata (25 samples, 0.02%)</title><rect x="41.2770%" y="869" width="0.0166%" height="15" fill="rgb(226,93,6)" fg:x="62022" fg:w="25"/><text x="41.5270%" y="879.50"></text></g><g><title>ciObjectFactory::create_new_metadata (25 samples, 0.02%)</title><rect x="41.2770%" y="853" width="0.0166%" height="15" fill="rgb(252,222,34)" fg:x="62022" fg:w="25"/><text x="41.5270%" y="863.50"></text></g><g><title>ciEnv::~ciEnv (16 samples, 0.01%)</title><rect x="41.2936%" y="885" width="0.0106%" height="15" fill="rgb(252,92,48)" fg:x="62047" fg:w="16"/><text x="41.5436%" y="895.50"></text></g><g><title>ciObjectFactory::remove_symbols (16 samples, 0.01%)</title><rect x="41.2936%" y="869" width="0.0106%" height="15" fill="rgb(245,223,24)" fg:x="62047" fg:w="16"/><text x="41.5436%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (614 samples, 0.41%)</title><rect x="40.8963%" y="901" width="0.4086%" height="15" fill="rgb(205,176,3)" fg:x="61450" fg:w="614"/><text x="41.1463%" y="911.50"></text></g><g><title>__pthread_cond_signal (22 samples, 0.01%)</title><rect x="41.3289%" y="853" width="0.0146%" height="15" fill="rgb(235,151,15)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="863.50"></text></g><g><title>futex_wake (22 samples, 0.01%)</title><rect x="41.3289%" y="837" width="0.0146%" height="15" fill="rgb(237,209,11)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="41.3289%" y="821" width="0.0146%" height="15" fill="rgb(243,227,24)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="831.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="41.3289%" y="805" width="0.0146%" height="15" fill="rgb(239,193,16)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="815.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.01%)</title><rect x="41.3289%" y="789" width="0.0146%" height="15" fill="rgb(231,27,9)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="799.50"></text></g><g><title>do_futex (22 samples, 0.01%)</title><rect x="41.3289%" y="773" width="0.0146%" height="15" fill="rgb(219,169,10)" fg:x="62100" fg:w="22"/><text x="41.5789%" y="783.50"></text></g><g><title>futex_wake (21 samples, 0.01%)</title><rect x="41.3296%" y="757" width="0.0140%" height="15" fill="rgb(244,229,43)" fg:x="62101" fg:w="21"/><text x="41.5796%" y="767.50"></text></g><g><title>wake_up_q (19 samples, 0.01%)</title><rect x="41.3309%" y="741" width="0.0126%" height="15" fill="rgb(254,38,20)" fg:x="62103" fg:w="19"/><text x="41.5809%" y="751.50"></text></g><g><title>try_to_wake_up (19 samples, 0.01%)</title><rect x="41.3309%" y="725" width="0.0126%" height="15" fill="rgb(250,47,30)" fg:x="62103" fg:w="19"/><text x="41.5809%" y="735.50"></text></g><g><title>hrtimer_start_range_ns (16 samples, 0.01%)</title><rect x="41.3622%" y="693" width="0.0106%" height="15" fill="rgb(224,124,36)" fg:x="62150" fg:w="16"/><text x="41.6122%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (143 samples, 0.10%)</title><rect x="41.3855%" y="645" width="0.0952%" height="15" fill="rgb(246,68,51)" fg:x="62185" fg:w="143"/><text x="41.6355%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (142 samples, 0.09%)</title><rect x="41.3861%" y="629" width="0.0945%" height="15" fill="rgb(253,43,49)" fg:x="62186" fg:w="142"/><text x="41.6361%" y="639.50"></text></g><g><title>native_write_msr (142 samples, 0.09%)</title><rect x="41.3861%" y="613" width="0.0945%" height="15" fill="rgb(219,54,36)" fg:x="62186" fg:w="142"/><text x="41.6361%" y="623.50"></text></g><g><title>finish_task_switch (152 samples, 0.10%)</title><rect x="41.3828%" y="661" width="0.1012%" height="15" fill="rgb(227,133,34)" fg:x="62181" fg:w="152"/><text x="41.6328%" y="671.50"></text></g><g><title>futex_wait_queue_me (194 samples, 0.13%)</title><rect x="41.3602%" y="709" width="0.1291%" height="15" fill="rgb(247,227,15)" fg:x="62147" fg:w="194"/><text x="41.6102%" y="719.50"></text></g><g><title>schedule (175 samples, 0.12%)</title><rect x="41.3728%" y="693" width="0.1165%" height="15" fill="rgb(229,96,14)" fg:x="62166" fg:w="175"/><text x="41.6228%" y="703.50"></text></g><g><title>__schedule (174 samples, 0.12%)</title><rect x="41.3735%" y="677" width="0.1158%" height="15" fill="rgb(220,79,17)" fg:x="62167" fg:w="174"/><text x="41.6235%" y="687.50"></text></g><g><title>do_futex (206 samples, 0.14%)</title><rect x="41.3575%" y="741" width="0.1371%" height="15" fill="rgb(205,131,53)" fg:x="62143" fg:w="206"/><text x="41.6075%" y="751.50"></text></g><g><title>futex_wait (204 samples, 0.14%)</title><rect x="41.3589%" y="725" width="0.1358%" height="15" fill="rgb(209,50,29)" fg:x="62145" fg:w="204"/><text x="41.6089%" y="735.50"></text></g><g><title>do_syscall_64 (212 samples, 0.14%)</title><rect x="41.3555%" y="773" width="0.1411%" height="15" fill="rgb(245,86,46)" fg:x="62140" fg:w="212"/><text x="41.6055%" y="783.50"></text></g><g><title>__x64_sys_futex (211 samples, 0.14%)</title><rect x="41.3562%" y="757" width="0.1404%" height="15" fill="rgb(235,66,46)" fg:x="62141" fg:w="211"/><text x="41.6062%" y="767.50"></text></g><g><title>__pthread_cond_timedwait (233 samples, 0.16%)</title><rect x="41.3456%" y="837" width="0.1551%" height="15" fill="rgb(232,148,31)" fg:x="62125" fg:w="233"/><text x="41.5956%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (233 samples, 0.16%)</title><rect x="41.3456%" y="821" width="0.1551%" height="15" fill="rgb(217,149,8)" fg:x="62125" fg:w="233"/><text x="41.5956%" y="831.50"></text></g><g><title>futex_abstimed_wait_cancelable (229 samples, 0.15%)</title><rect x="41.3482%" y="805" width="0.1524%" height="15" fill="rgb(209,183,11)" fg:x="62129" fg:w="229"/><text x="41.5982%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (218 samples, 0.15%)</title><rect x="41.3555%" y="789" width="0.1451%" height="15" fill="rgb(208,55,20)" fg:x="62140" fg:w="218"/><text x="41.6055%" y="799.50"></text></g><g><title>os::PlatformEvent::park (254 samples, 0.17%)</title><rect x="41.3436%" y="853" width="0.1690%" height="15" fill="rgb(218,39,14)" fg:x="62122" fg:w="254"/><text x="41.5936%" y="863.50"></text></g><g><title>Monitor::wait (298 samples, 0.20%)</title><rect x="41.3163%" y="885" width="0.1983%" height="15" fill="rgb(216,169,33)" fg:x="62081" fg:w="298"/><text x="41.5663%" y="895.50"></text></g><g><title>Monitor::IWait (290 samples, 0.19%)</title><rect x="41.3216%" y="869" width="0.1930%" height="15" fill="rgb(233,80,24)" fg:x="62089" fg:w="290"/><text x="41.5716%" y="879.50"></text></g><g><title>TieredThresholdPolicy::select_task (19 samples, 0.01%)</title><rect x="41.5146%" y="885" width="0.0126%" height="15" fill="rgb(213,179,31)" fg:x="62379" fg:w="19"/><text x="41.7646%" y="895.50"></text></g><g><title>CompileQueue::get (334 samples, 0.22%)</title><rect x="41.3089%" y="901" width="0.2223%" height="15" fill="rgb(209,19,5)" fg:x="62070" fg:w="334"/><text x="41.5589%" y="911.50"></text></g><g><title>Thread::call_run (961 samples, 0.64%)</title><rect x="40.8943%" y="949" width="0.6396%" height="15" fill="rgb(219,18,35)" fg:x="61447" fg:w="961"/><text x="41.1443%" y="959.50"></text></g><g><title>JavaThread::thread_main_inner (959 samples, 0.64%)</title><rect x="40.8957%" y="933" width="0.6382%" height="15" fill="rgb(209,169,16)" fg:x="61449" fg:w="959"/><text x="41.1457%" y="943.50"></text></g><g><title>CompileBroker::compiler_thread_loop (959 samples, 0.64%)</title><rect x="40.8957%" y="917" width="0.6382%" height="15" fill="rgb(245,90,51)" fg:x="61449" fg:w="959"/><text x="41.1457%" y="927.50"></text></g><g><title>__GI___clone (990 samples, 0.66%)</title><rect x="40.8764%" y="997" width="0.6589%" height="15" fill="rgb(220,99,45)" fg:x="61420" fg:w="990"/><text x="41.1264%" y="1007.50"></text></g><g><title>start_thread (971 samples, 0.65%)</title><rect x="40.8890%" y="981" width="0.6462%" height="15" fill="rgb(249,89,25)" fg:x="61439" fg:w="971"/><text x="41.1390%" y="991.50"></text></g><g><title>thread_native_entry (971 samples, 0.65%)</title><rect x="40.8890%" y="965" width="0.6462%" height="15" fill="rgb(239,193,0)" fg:x="61439" fg:w="971"/><text x="41.1390%" y="975.50"></text></g><g><title>asm_exc_page_fault (56 samples, 0.04%)</title><rect x="41.5439%" y="997" width="0.0373%" height="15" fill="rgb(231,126,1)" fg:x="62423" fg:w="56"/><text x="41.7939%" y="1007.50"></text></g><g><title>C2_CompilerThre (51,346 samples, 34.17%)</title><rect x="7.4372%" y="1013" width="34.1719%" height="15" fill="rgb(243,166,3)" fg:x="11175" fg:w="51346"/><text x="7.6872%" y="1023.50">C2_CompilerThre</text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="41.6417%" y="677" width="0.0120%" height="15" fill="rgb(223,22,34)" fg:x="62570" fg:w="18"/><text x="41.8917%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="41.6417%" y="661" width="0.0120%" height="15" fill="rgb(251,52,51)" fg:x="62570" fg:w="18"/><text x="41.8917%" y="671.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="41.6417%" y="645" width="0.0120%" height="15" fill="rgb(221,165,28)" fg:x="62570" fg:w="18"/><text x="41.8917%" y="655.50"></text></g><g><title>__pthread_cond_wait (20 samples, 0.01%)</title><rect x="41.6417%" y="869" width="0.0133%" height="15" fill="rgb(218,121,47)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (20 samples, 0.01%)</title><rect x="41.6417%" y="853" width="0.0133%" height="15" fill="rgb(209,120,9)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="863.50"></text></g><g><title>futex_wait_cancelable (20 samples, 0.01%)</title><rect x="41.6417%" y="837" width="0.0133%" height="15" fill="rgb(236,68,12)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="41.6417%" y="821" width="0.0133%" height="15" fill="rgb(225,194,26)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="831.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="41.6417%" y="805" width="0.0133%" height="15" fill="rgb(231,84,39)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="815.50"></text></g><g><title>__x64_sys_futex (20 samples, 0.01%)</title><rect x="41.6417%" y="789" width="0.0133%" height="15" fill="rgb(210,11,45)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="799.50"></text></g><g><title>do_futex (20 samples, 0.01%)</title><rect x="41.6417%" y="773" width="0.0133%" height="15" fill="rgb(224,54,52)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="783.50"></text></g><g><title>futex_wait (20 samples, 0.01%)</title><rect x="41.6417%" y="757" width="0.0133%" height="15" fill="rgb(238,102,14)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="767.50"></text></g><g><title>futex_wait_queue_me (20 samples, 0.01%)</title><rect x="41.6417%" y="741" width="0.0133%" height="15" fill="rgb(243,160,52)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="751.50"></text></g><g><title>schedule (20 samples, 0.01%)</title><rect x="41.6417%" y="725" width="0.0133%" height="15" fill="rgb(216,114,19)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="735.50"></text></g><g><title>__schedule (20 samples, 0.01%)</title><rect x="41.6417%" y="709" width="0.0133%" height="15" fill="rgb(244,166,37)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="719.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="41.6417%" y="693" width="0.0133%" height="15" fill="rgb(246,29,44)" fg:x="62570" fg:w="20"/><text x="41.8917%" y="703.50"></text></g><g><title>Monitor::IWait (21 samples, 0.01%)</title><rect x="41.6417%" y="901" width="0.0140%" height="15" fill="rgb(215,56,53)" fg:x="62570" fg:w="21"/><text x="41.8917%" y="911.50"></text></g><g><title>os::PlatformEvent::park (21 samples, 0.01%)</title><rect x="41.6417%" y="885" width="0.0140%" height="15" fill="rgb(217,60,2)" fg:x="62570" fg:w="21"/><text x="41.8917%" y="895.50"></text></g><g><title>InterpreterRuntime::monitorenter (27 samples, 0.02%)</title><rect x="41.6397%" y="981" width="0.0180%" height="15" fill="rgb(207,26,24)" fg:x="62567" fg:w="27"/><text x="41.8897%" y="991.50"></text></g><g><title>ObjectSynchronizer::fast_enter (27 samples, 0.02%)</title><rect x="41.6397%" y="965" width="0.0180%" height="15" fill="rgb(252,210,15)" fg:x="62567" fg:w="27"/><text x="41.8897%" y="975.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (27 samples, 0.02%)</title><rect x="41.6397%" y="949" width="0.0180%" height="15" fill="rgb(253,209,26)" fg:x="62567" fg:w="27"/><text x="41.8897%" y="959.50"></text></g><g><title>VMThread::execute (27 samples, 0.02%)</title><rect x="41.6397%" y="933" width="0.0180%" height="15" fill="rgb(238,170,14)" fg:x="62567" fg:w="27"/><text x="41.8897%" y="943.50"></text></g><g><title>Monitor::wait (24 samples, 0.02%)</title><rect x="41.6417%" y="917" width="0.0160%" height="15" fill="rgb(216,178,15)" fg:x="62570" fg:w="24"/><text x="41.8917%" y="927.50"></text></g><g><title>futex_wait_queue_me (19 samples, 0.01%)</title><rect x="41.6643%" y="821" width="0.0126%" height="15" fill="rgb(250,197,2)" fg:x="62604" fg:w="19"/><text x="41.9143%" y="831.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="41.6663%" y="805" width="0.0106%" height="15" fill="rgb(212,70,42)" fg:x="62607" fg:w="16"/><text x="41.9163%" y="815.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="41.6663%" y="789" width="0.0106%" height="15" fill="rgb(227,213,9)" fg:x="62607" fg:w="16"/><text x="41.9163%" y="799.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="41.6630%" y="885" width="0.0153%" height="15" fill="rgb(245,99,25)" fg:x="62602" fg:w="23"/><text x="41.9130%" y="895.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="41.6630%" y="869" width="0.0153%" height="15" fill="rgb(250,82,29)" fg:x="62602" fg:w="23"/><text x="41.9130%" y="879.50"></text></g><g><title>do_futex (22 samples, 0.01%)</title><rect x="41.6637%" y="853" width="0.0146%" height="15" fill="rgb(241,226,54)" fg:x="62603" fg:w="22"/><text x="41.9137%" y="863.50"></text></g><g><title>futex_wait (21 samples, 0.01%)</title><rect x="41.6643%" y="837" width="0.0140%" height="15" fill="rgb(221,99,41)" fg:x="62604" fg:w="21"/><text x="41.9143%" y="847.50"></text></g><g><title>__pthread_cond_timedwait (26 samples, 0.02%)</title><rect x="41.6617%" y="949" width="0.0173%" height="15" fill="rgb(213,90,21)" fg:x="62600" fg:w="26"/><text x="41.9117%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (26 samples, 0.02%)</title><rect x="41.6617%" y="933" width="0.0173%" height="15" fill="rgb(205,208,24)" fg:x="62600" fg:w="26"/><text x="41.9117%" y="943.50"></text></g><g><title>futex_abstimed_wait_cancelable (26 samples, 0.02%)</title><rect x="41.6617%" y="917" width="0.0173%" height="15" fill="rgb(246,31,12)" fg:x="62600" fg:w="26"/><text x="41.9117%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="41.6630%" y="901" width="0.0160%" height="15" fill="rgb(213,154,6)" fg:x="62602" fg:w="24"/><text x="41.9130%" y="911.50"></text></g><g><title>Unsafe_Park (28 samples, 0.02%)</title><rect x="41.6617%" y="981" width="0.0186%" height="15" fill="rgb(222,163,29)" fg:x="62600" fg:w="28"/><text x="41.9117%" y="991.50"></text></g><g><title>Parker::park (28 samples, 0.02%)</title><rect x="41.6617%" y="965" width="0.0186%" height="15" fill="rgb(227,201,8)" fg:x="62600" fg:w="28"/><text x="41.9117%" y="975.50"></text></g><g><title>[perf-943567.map] (110 samples, 0.07%)</title><rect x="41.6118%" y="997" width="0.0732%" height="15" fill="rgb(233,9,32)" fg:x="62525" fg:w="110"/><text x="41.8618%" y="1007.50"></text></g><g><title>[unknown] (18 samples, 0.01%)</title><rect x="41.6850%" y="997" width="0.0120%" height="15" fill="rgb(217,54,24)" fg:x="62635" fg:w="18"/><text x="41.9350%" y="1007.50"></text></g><g><title>readBytes (17 samples, 0.01%)</title><rect x="41.6856%" y="981" width="0.0113%" height="15" fill="rgb(235,192,0)" fg:x="62636" fg:w="17"/><text x="41.9356%" y="991.50"></text></g><g><title>Command-Accumul (133 samples, 0.09%)</title><rect x="41.6091%" y="1013" width="0.0885%" height="15" fill="rgb(235,45,9)" fg:x="62521" fg:w="133"/><text x="41.8591%" y="1023.50"></text></g><g><title>[perf-943567.map] (22 samples, 0.01%)</title><rect x="41.6976%" y="997" width="0.0146%" height="15" fill="rgb(246,42,40)" fg:x="62654" fg:w="22"/><text x="41.9476%" y="1007.50"></text></g><g><title>Common-Cleaner (23 samples, 0.02%)</title><rect x="41.6976%" y="1013" width="0.0153%" height="15" fill="rgb(248,111,24)" fg:x="62654" fg:w="23"/><text x="41.9476%" y="1023.50"></text></g><g><title>[anon] (16 samples, 0.01%)</title><rect x="41.7256%" y="997" width="0.0106%" height="15" fill="rgb(249,65,22)" fg:x="62696" fg:w="16"/><text x="41.9756%" y="1007.50"></text></g><g><title>dequeue_task_fair (26 samples, 0.02%)</title><rect x="42.0716%" y="773" width="0.0173%" height="15" fill="rgb(238,111,51)" fg:x="63216" fg:w="26"/><text x="42.3216%" y="783.50"></text></g><g><title>dequeue_entity (19 samples, 0.01%)</title><rect x="42.0763%" y="757" width="0.0126%" height="15" fill="rgb(250,118,22)" fg:x="63223" fg:w="19"/><text x="42.3263%" y="767.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="42.0889%" y="773" width="0.0126%" height="15" fill="rgb(234,84,26)" fg:x="63242" fg:w="19"/><text x="42.3389%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.01%)</title><rect x="42.0909%" y="757" width="0.0106%" height="15" fill="rgb(243,172,12)" fg:x="63245" fg:w="16"/><text x="42.3409%" y="767.50"></text></g><g><title>futex_wait_queue_me (73 samples, 0.05%)</title><rect x="42.0650%" y="821" width="0.0486%" height="15" fill="rgb(236,150,49)" fg:x="63206" fg:w="73"/><text x="42.3150%" y="831.50"></text></g><g><title>schedule (68 samples, 0.05%)</title><rect x="42.0683%" y="805" width="0.0453%" height="15" fill="rgb(225,197,26)" fg:x="63211" fg:w="68"/><text x="42.3183%" y="815.50"></text></g><g><title>__schedule (68 samples, 0.05%)</title><rect x="42.0683%" y="789" width="0.0453%" height="15" fill="rgb(214,17,42)" fg:x="63211" fg:w="68"/><text x="42.3183%" y="799.50"></text></g><g><title>__x64_sys_futex (92 samples, 0.06%)</title><rect x="42.0610%" y="869" width="0.0612%" height="15" fill="rgb(224,165,40)" fg:x="63200" fg:w="92"/><text x="42.3110%" y="879.50"></text></g><g><title>do_futex (88 samples, 0.06%)</title><rect x="42.0637%" y="853" width="0.0586%" height="15" fill="rgb(246,100,4)" fg:x="63204" fg:w="88"/><text x="42.3137%" y="863.50"></text></g><g><title>futex_wait (88 samples, 0.06%)</title><rect x="42.0637%" y="837" width="0.0586%" height="15" fill="rgb(222,103,0)" fg:x="63204" fg:w="88"/><text x="42.3137%" y="847.50"></text></g><g><title>do_syscall_64 (94 samples, 0.06%)</title><rect x="42.0603%" y="885" width="0.0626%" height="15" fill="rgb(227,189,26)" fg:x="63199" fg:w="94"/><text x="42.3103%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (95 samples, 0.06%)</title><rect x="42.0603%" y="901" width="0.0632%" height="15" fill="rgb(214,202,17)" fg:x="63199" fg:w="95"/><text x="42.3103%" y="911.50"></text></g><g><title>__pthread_cond_timedwait (111 samples, 0.07%)</title><rect x="42.0503%" y="949" width="0.0739%" height="15" fill="rgb(229,111,3)" fg:x="63184" fg:w="111"/><text x="42.3003%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (111 samples, 0.07%)</title><rect x="42.0503%" y="933" width="0.0739%" height="15" fill="rgb(229,172,15)" fg:x="63184" fg:w="111"/><text x="42.3003%" y="943.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.07%)</title><rect x="42.0537%" y="917" width="0.0705%" height="15" fill="rgb(230,224,35)" fg:x="63189" fg:w="106"/><text x="42.3037%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.02%)</title><rect x="42.1275%" y="757" width="0.0206%" height="15" fill="rgb(251,141,6)" fg:x="63300" fg:w="31"/><text x="42.3775%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="42.1282%" y="741" width="0.0200%" height="15" fill="rgb(225,208,6)" fg:x="63301" fg:w="30"/><text x="42.3782%" y="751.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="42.1282%" y="725" width="0.0200%" height="15" fill="rgb(246,181,16)" fg:x="63301" fg:w="30"/><text x="42.3782%" y="735.50"></text></g><g><title>finish_task_switch (32 samples, 0.02%)</title><rect x="42.1275%" y="773" width="0.0213%" height="15" fill="rgb(227,129,36)" fg:x="63300" fg:w="32"/><text x="42.3775%" y="783.50"></text></g><g><title>do_syscall_64 (40 samples, 0.03%)</title><rect x="42.1242%" y="885" width="0.0266%" height="15" fill="rgb(248,117,24)" fg:x="63295" fg:w="40"/><text x="42.3742%" y="895.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.03%)</title><rect x="42.1249%" y="869" width="0.0260%" height="15" fill="rgb(214,185,35)" fg:x="63296" fg:w="39"/><text x="42.3749%" y="879.50"></text></g><g><title>do_futex (39 samples, 0.03%)</title><rect x="42.1249%" y="853" width="0.0260%" height="15" fill="rgb(236,150,34)" fg:x="63296" fg:w="39"/><text x="42.3749%" y="863.50"></text></g><g><title>futex_wait (38 samples, 0.03%)</title><rect x="42.1255%" y="837" width="0.0253%" height="15" fill="rgb(243,228,27)" fg:x="63297" fg:w="38"/><text x="42.3755%" y="847.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.02%)</title><rect x="42.1262%" y="821" width="0.0246%" height="15" fill="rgb(245,77,44)" fg:x="63298" fg:w="37"/><text x="42.3762%" y="831.50"></text></g><g><title>schedule (37 samples, 0.02%)</title><rect x="42.1262%" y="805" width="0.0246%" height="15" fill="rgb(235,214,42)" fg:x="63298" fg:w="37"/><text x="42.3762%" y="815.50"></text></g><g><title>__schedule (37 samples, 0.02%)</title><rect x="42.1262%" y="789" width="0.0246%" height="15" fill="rgb(221,74,3)" fg:x="63298" fg:w="37"/><text x="42.3762%" y="799.50"></text></g><g><title>__pthread_cond_wait (41 samples, 0.03%)</title><rect x="42.1242%" y="949" width="0.0273%" height="15" fill="rgb(206,121,29)" fg:x="63295" fg:w="41"/><text x="42.3742%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (41 samples, 0.03%)</title><rect x="42.1242%" y="933" width="0.0273%" height="15" fill="rgb(249,131,53)" fg:x="63295" fg:w="41"/><text x="42.3742%" y="943.50"></text></g><g><title>futex_wait_cancelable (41 samples, 0.03%)</title><rect x="42.1242%" y="917" width="0.0273%" height="15" fill="rgb(236,170,29)" fg:x="63295" fg:w="41"/><text x="42.3742%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="42.1242%" y="901" width="0.0273%" height="15" fill="rgb(247,96,15)" fg:x="63295" fg:w="41"/><text x="42.3742%" y="911.50"></text></g><g><title>Parker::park (184 samples, 0.12%)</title><rect x="42.0424%" y="965" width="0.1225%" height="15" fill="rgb(211,210,7)" fg:x="63172" fg:w="184"/><text x="42.2924%" y="975.50"></text></g><g><title>Unsafe_Park (189 samples, 0.13%)</title><rect x="42.0397%" y="981" width="0.1258%" height="15" fill="rgb(240,88,50)" fg:x="63168" fg:w="189"/><text x="42.2897%" y="991.50"></text></g><g><title>[perf-943567.map] (649 samples, 0.43%)</title><rect x="41.7362%" y="997" width="0.4319%" height="15" fill="rgb(209,229,26)" fg:x="62712" fg:w="649"/><text x="41.9862%" y="1007.50"></text></g><g><title>ForkJoinPool.co (682 samples, 0.45%)</title><rect x="41.7249%" y="1013" width="0.4539%" height="15" fill="rgb(210,68,23)" fg:x="62695" fg:w="682"/><text x="41.9749%" y="1023.50"></text></g><g><title>G1CMRootRegionScanTask::work (18 samples, 0.01%)</title><rect x="42.1795%" y="917" width="0.0120%" height="15" fill="rgb(229,180,13)" fg:x="63378" fg:w="18"/><text x="42.4295%" y="927.50"></text></g><g><title>G1ConcurrentMark::scan_root_region (18 samples, 0.01%)</title><rect x="42.1795%" y="901" width="0.0120%" height="15" fill="rgb(236,53,44)" fg:x="63378" fg:w="18"/><text x="42.4295%" y="911.50"></text></g><g><title>__GI___clone (44 samples, 0.03%)</title><rect x="42.1788%" y="997" width="0.0293%" height="15" fill="rgb(244,214,29)" fg:x="63377" fg:w="44"/><text x="42.4288%" y="1007.50"></text></g><g><title>start_thread (44 samples, 0.03%)</title><rect x="42.1788%" y="981" width="0.0293%" height="15" fill="rgb(220,75,29)" fg:x="63377" fg:w="44"/><text x="42.4288%" y="991.50"></text></g><g><title>thread_native_entry (44 samples, 0.03%)</title><rect x="42.1788%" y="965" width="0.0293%" height="15" fill="rgb(214,183,37)" fg:x="63377" fg:w="44"/><text x="42.4288%" y="975.50"></text></g><g><title>Thread::call_run (44 samples, 0.03%)</title><rect x="42.1788%" y="949" width="0.0293%" height="15" fill="rgb(239,117,29)" fg:x="63377" fg:w="44"/><text x="42.4288%" y="959.50"></text></g><g><title>GangWorker::loop (44 samples, 0.03%)</title><rect x="42.1788%" y="933" width="0.0293%" height="15" fill="rgb(237,171,35)" fg:x="63377" fg:w="44"/><text x="42.4288%" y="943.50"></text></g><g><title>G1_Conc#0 (48 samples, 0.03%)</title><rect x="42.1788%" y="1013" width="0.0319%" height="15" fill="rgb(229,178,53)" fg:x="63377" fg:w="48"/><text x="42.4288%" y="1023.50"></text></g><g><title>G1CMRootRegionScanTask::work (19 samples, 0.01%)</title><rect x="42.2114%" y="917" width="0.0126%" height="15" fill="rgb(210,102,19)" fg:x="63426" fg:w="19"/><text x="42.4614%" y="927.50"></text></g><g><title>G1ConcurrentMark::scan_root_region (19 samples, 0.01%)</title><rect x="42.2114%" y="901" width="0.0126%" height="15" fill="rgb(235,127,22)" fg:x="63426" fg:w="19"/><text x="42.4614%" y="911.50"></text></g><g><title>__GI___clone (27 samples, 0.02%)</title><rect x="42.2107%" y="997" width="0.0180%" height="15" fill="rgb(244,31,31)" fg:x="63425" fg:w="27"/><text x="42.4607%" y="1007.50"></text></g><g><title>start_thread (27 samples, 0.02%)</title><rect x="42.2107%" y="981" width="0.0180%" height="15" fill="rgb(231,43,21)" fg:x="63425" fg:w="27"/><text x="42.4607%" y="991.50"></text></g><g><title>thread_native_entry (27 samples, 0.02%)</title><rect x="42.2107%" y="965" width="0.0180%" height="15" fill="rgb(217,131,35)" fg:x="63425" fg:w="27"/><text x="42.4607%" y="975.50"></text></g><g><title>Thread::call_run (27 samples, 0.02%)</title><rect x="42.2107%" y="949" width="0.0180%" height="15" fill="rgb(221,149,4)" fg:x="63425" fg:w="27"/><text x="42.4607%" y="959.50"></text></g><g><title>GangWorker::loop (27 samples, 0.02%)</title><rect x="42.2107%" y="933" width="0.0180%" height="15" fill="rgb(232,170,28)" fg:x="63425" fg:w="27"/><text x="42.4607%" y="943.50"></text></g><g><title>G1_Conc#1 (28 samples, 0.02%)</title><rect x="42.2107%" y="1013" width="0.0186%" height="15" fill="rgb(238,56,10)" fg:x="63425" fg:w="28"/><text x="42.4607%" y="1023.50"></text></g><g><title>Thread::call_run (16 samples, 0.01%)</title><rect x="42.2340%" y="949" width="0.0106%" height="15" fill="rgb(235,196,14)" fg:x="63460" fg:w="16"/><text x="42.4840%" y="959.50"></text></g><g><title>ConcurrentGCThread::run (16 samples, 0.01%)</title><rect x="42.2340%" y="933" width="0.0106%" height="15" fill="rgb(216,45,48)" fg:x="63460" fg:w="16"/><text x="42.4840%" y="943.50"></text></g><g><title>G1_Main_Marker (24 samples, 0.02%)</title><rect x="42.2294%" y="1013" width="0.0160%" height="15" fill="rgb(238,213,17)" fg:x="63453" fg:w="24"/><text x="42.4794%" y="1023.50"></text></g><g><title>__GI___clone (23 samples, 0.02%)</title><rect x="42.2300%" y="997" width="0.0153%" height="15" fill="rgb(212,13,2)" fg:x="63454" fg:w="23"/><text x="42.4800%" y="1007.50"></text></g><g><title>start_thread (17 samples, 0.01%)</title><rect x="42.2340%" y="981" width="0.0113%" height="15" fill="rgb(240,114,20)" fg:x="63460" fg:w="17"/><text x="42.4840%" y="991.50"></text></g><g><title>thread_native_entry (17 samples, 0.01%)</title><rect x="42.2340%" y="965" width="0.0113%" height="15" fill="rgb(228,41,40)" fg:x="63460" fg:w="17"/><text x="42.4840%" y="975.50"></text></g><g><title>G1_Refine#0 (27 samples, 0.02%)</title><rect x="42.2453%" y="1013" width="0.0180%" height="15" fill="rgb(244,132,35)" fg:x="63477" fg:w="27"/><text x="42.4953%" y="1023.50"></text></g><g><title>__GI___clone (25 samples, 0.02%)</title><rect x="42.2467%" y="997" width="0.0166%" height="15" fill="rgb(253,189,4)" fg:x="63479" fg:w="25"/><text x="42.4967%" y="1007.50"></text></g><g><title>start_thread (25 samples, 0.02%)</title><rect x="42.2467%" y="981" width="0.0166%" height="15" fill="rgb(224,37,19)" fg:x="63479" fg:w="25"/><text x="42.4967%" y="991.50"></text></g><g><title>thread_native_entry (25 samples, 0.02%)</title><rect x="42.2467%" y="965" width="0.0166%" height="15" fill="rgb(235,223,18)" fg:x="63479" fg:w="25"/><text x="42.4967%" y="975.50"></text></g><g><title>Thread::call_run (25 samples, 0.02%)</title><rect x="42.2467%" y="949" width="0.0166%" height="15" fill="rgb(235,163,25)" fg:x="63479" fg:w="25"/><text x="42.4967%" y="959.50"></text></g><g><title>ConcurrentGCThread::run (25 samples, 0.02%)</title><rect x="42.2467%" y="933" width="0.0166%" height="15" fill="rgb(217,145,28)" fg:x="63479" fg:w="25"/><text x="42.4967%" y="943.50"></text></g><g><title>Monitor::wait (16 samples, 0.01%)</title><rect x="42.2779%" y="901" width="0.0106%" height="15" fill="rgb(223,223,32)" fg:x="63526" fg:w="16"/><text x="42.5279%" y="911.50"></text></g><g><title>Monitor::IWait (16 samples, 0.01%)</title><rect x="42.2779%" y="885" width="0.0106%" height="15" fill="rgb(227,189,39)" fg:x="63526" fg:w="16"/><text x="42.5279%" y="895.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="42.2779%" y="869" width="0.0106%" height="15" fill="rgb(248,10,22)" fg:x="63526" fg:w="16"/><text x="42.5279%" y="879.50"></text></g><g><title>__pthread_cond_timedwait (16 samples, 0.01%)</title><rect x="42.2779%" y="853" width="0.0106%" height="15" fill="rgb(248,46,39)" fg:x="63526" fg:w="16"/><text x="42.5279%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="42.2779%" y="837" width="0.0106%" height="15" fill="rgb(248,113,48)" fg:x="63526" fg:w="16"/><text x="42.5279%" y="847.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (25 samples, 0.02%)</title><rect x="42.2740%" y="917" width="0.0166%" height="15" fill="rgb(245,16,25)" fg:x="63520" fg:w="25"/><text x="42.5240%" y="927.50"></text></g><g><title>G1_Young_RemSet (33 samples, 0.02%)</title><rect x="42.2740%" y="1013" width="0.0220%" height="15" fill="rgb(249,152,16)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="1023.50"></text></g><g><title>__GI___clone (33 samples, 0.02%)</title><rect x="42.2740%" y="997" width="0.0220%" height="15" fill="rgb(250,16,1)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="1007.50"></text></g><g><title>start_thread (33 samples, 0.02%)</title><rect x="42.2740%" y="981" width="0.0220%" height="15" fill="rgb(249,138,3)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="991.50"></text></g><g><title>thread_native_entry (33 samples, 0.02%)</title><rect x="42.2740%" y="965" width="0.0220%" height="15" fill="rgb(227,71,41)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="975.50"></text></g><g><title>Thread::call_run (33 samples, 0.02%)</title><rect x="42.2740%" y="949" width="0.0220%" height="15" fill="rgb(209,184,23)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="959.50"></text></g><g><title>ConcurrentGCThread::run (33 samples, 0.02%)</title><rect x="42.2740%" y="933" width="0.0220%" height="15" fill="rgb(223,215,31)" fg:x="63520" fg:w="33"/><text x="42.5240%" y="943.50"></text></g><g><title>G1ParScanThreadState::trim_queue (74 samples, 0.05%)</title><rect x="42.3112%" y="885" width="0.0492%" height="15" fill="rgb(210,146,28)" fg:x="63576" fg:w="74"/><text x="42.5612%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (50 samples, 0.03%)</title><rect x="42.3272%" y="869" width="0.0333%" height="15" fill="rgb(209,183,41)" fg:x="63600" fg:w="50"/><text x="42.5772%" y="879.50"></text></g><g><title>SpinPause (21 samples, 0.01%)</title><rect x="42.3625%" y="885" width="0.0140%" height="15" fill="rgb(209,224,45)" fg:x="63653" fg:w="21"/><text x="42.6125%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (102 samples, 0.07%)</title><rect x="42.3092%" y="901" width="0.0679%" height="15" fill="rgb(224,209,51)" fg:x="63573" fg:w="102"/><text x="42.5592%" y="911.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (24 samples, 0.02%)</title><rect x="42.3771%" y="805" width="0.0160%" height="15" fill="rgb(223,17,39)" fg:x="63675" fg:w="24"/><text x="42.6271%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (23 samples, 0.02%)</title><rect x="42.3778%" y="789" width="0.0153%" height="15" fill="rgb(234,204,37)" fg:x="63676" fg:w="23"/><text x="42.6278%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (25 samples, 0.02%)</title><rect x="42.3771%" y="821" width="0.0166%" height="15" fill="rgb(236,120,5)" fg:x="63675" fg:w="25"/><text x="42.6271%" y="831.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (26 samples, 0.02%)</title><rect x="42.3771%" y="901" width="0.0173%" height="15" fill="rgb(248,97,27)" fg:x="63675" fg:w="26"/><text x="42.6271%" y="911.50"></text></g><g><title>G1RemSet::update_rem_set (26 samples, 0.02%)</title><rect x="42.3771%" y="885" width="0.0173%" height="15" fill="rgb(240,66,17)" fg:x="63675" fg:w="26"/><text x="42.6271%" y="895.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (26 samples, 0.02%)</title><rect x="42.3771%" y="869" width="0.0173%" height="15" fill="rgb(210,79,3)" fg:x="63675" fg:w="26"/><text x="42.6271%" y="879.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (26 samples, 0.02%)</title><rect x="42.3771%" y="853" width="0.0173%" height="15" fill="rgb(214,176,27)" fg:x="63675" fg:w="26"/><text x="42.6271%" y="863.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (26 samples, 0.02%)</title><rect x="42.3771%" y="837" width="0.0173%" height="15" fill="rgb(235,185,3)" fg:x="63675" fg:w="26"/><text x="42.6271%" y="847.50"></text></g><g><title>G1RemSet::scan_rem_set (33 samples, 0.02%)</title><rect x="42.3944%" y="901" width="0.0220%" height="15" fill="rgb(227,24,12)" fg:x="63701" fg:w="33"/><text x="42.6444%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (33 samples, 0.02%)</title><rect x="42.3944%" y="885" width="0.0220%" height="15" fill="rgb(252,169,48)" fg:x="63701" fg:w="33"/><text x="42.6444%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (33 samples, 0.02%)</title><rect x="42.3944%" y="869" width="0.0220%" height="15" fill="rgb(212,65,1)" fg:x="63701" fg:w="33"/><text x="42.6444%" y="879.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (24 samples, 0.02%)</title><rect x="42.4004%" y="853" width="0.0160%" height="15" fill="rgb(242,39,24)" fg:x="63710" fg:w="24"/><text x="42.6504%" y="863.50"></text></g><g><title>G1CodeRootSet::nmethods_do (24 samples, 0.02%)</title><rect x="42.4004%" y="837" width="0.0160%" height="15" fill="rgb(249,32,23)" fg:x="63710" fg:w="24"/><text x="42.6504%" y="847.50"></text></g><g><title>G1CodeBlobClosure::do_code_blob (24 samples, 0.02%)</title><rect x="42.4004%" y="821" width="0.0160%" height="15" fill="rgb(251,195,23)" fg:x="63710" fg:w="24"/><text x="42.6504%" y="831.50"></text></g><g><title>nmethod::oops_do (23 samples, 0.02%)</title><rect x="42.4011%" y="805" width="0.0153%" height="15" fill="rgb(236,174,8)" fg:x="63711" fg:w="23"/><text x="42.6511%" y="815.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (26 samples, 0.02%)</title><rect x="42.4323%" y="773" width="0.0173%" height="15" fill="rgb(220,197,8)" fg:x="63758" fg:w="26"/><text x="42.6823%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="42.4357%" y="757" width="0.0140%" height="15" fill="rgb(240,108,37)" fg:x="63763" fg:w="21"/><text x="42.6857%" y="767.50"></text></g><g><title>InterpreterOopMap::iterate_oop (38 samples, 0.03%)</title><rect x="42.4250%" y="805" width="0.0253%" height="15" fill="rgb(232,176,24)" fg:x="63747" fg:w="38"/><text x="42.6750%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (37 samples, 0.02%)</title><rect x="42.4257%" y="789" width="0.0246%" height="15" fill="rgb(243,35,29)" fg:x="63748" fg:w="37"/><text x="42.6757%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (55 samples, 0.04%)</title><rect x="42.4164%" y="885" width="0.0366%" height="15" fill="rgb(210,37,18)" fg:x="63734" fg:w="55"/><text x="42.6664%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (55 samples, 0.04%)</title><rect x="42.4164%" y="869" width="0.0366%" height="15" fill="rgb(224,184,40)" fg:x="63734" fg:w="55"/><text x="42.6664%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (55 samples, 0.04%)</title><rect x="42.4164%" y="853" width="0.0366%" height="15" fill="rgb(236,39,29)" fg:x="63734" fg:w="55"/><text x="42.6664%" y="863.50"></text></g><g><title>JavaThread::oops_do (55 samples, 0.04%)</title><rect x="42.4164%" y="837" width="0.0366%" height="15" fill="rgb(232,48,39)" fg:x="63734" fg:w="55"/><text x="42.6664%" y="847.50"></text></g><g><title>frame::oops_interpreted_do (44 samples, 0.03%)</title><rect x="42.4237%" y="821" width="0.0293%" height="15" fill="rgb(236,34,42)" fg:x="63745" fg:w="44"/><text x="42.6737%" y="831.50"></text></g><g><title>G1ParTask::work (232 samples, 0.15%)</title><rect x="42.3092%" y="917" width="0.1544%" height="15" fill="rgb(243,106,37)" fg:x="63573" fg:w="232"/><text x="42.5592%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (71 samples, 0.05%)</title><rect x="42.4164%" y="901" width="0.0473%" height="15" fill="rgb(218,96,6)" fg:x="63734" fg:w="71"/><text x="42.6664%" y="911.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (16 samples, 0.01%)</title><rect x="42.4530%" y="885" width="0.0106%" height="15" fill="rgb(235,130,12)" fg:x="63789" fg:w="16"/><text x="42.7030%" y="895.50"></text></g><g><title>G1STWRefProcTaskProxy::work (21 samples, 0.01%)</title><rect x="42.4663%" y="917" width="0.0140%" height="15" fill="rgb(231,95,0)" fg:x="63809" fg:w="21"/><text x="42.7163%" y="927.50"></text></g><g><title>JavaThread::nmethods_do (20 samples, 0.01%)</title><rect x="42.4823%" y="885" width="0.0133%" height="15" fill="rgb(228,12,23)" fg:x="63833" fg:w="20"/><text x="42.7323%" y="895.50"></text></g><g><title>frame::sender (17 samples, 0.01%)</title><rect x="42.4843%" y="869" width="0.0113%" height="15" fill="rgb(216,12,1)" fg:x="63836" fg:w="17"/><text x="42.7343%" y="879.50"></text></g><g><title>ParallelSPCleanupTask::work (26 samples, 0.02%)</title><rect x="42.4803%" y="917" width="0.0173%" height="15" fill="rgb(219,59,3)" fg:x="63830" fg:w="26"/><text x="42.7303%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (25 samples, 0.02%)</title><rect x="42.4809%" y="901" width="0.0166%" height="15" fill="rgb(215,208,46)" fg:x="63831" fg:w="25"/><text x="42.7309%" y="911.50"></text></g><g><title>finish_task_switch (68 samples, 0.05%)</title><rect x="42.5042%" y="709" width="0.0453%" height="15" fill="rgb(254,224,29)" fg:x="63866" fg:w="68"/><text x="42.7542%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.04%)</title><rect x="42.5056%" y="693" width="0.0439%" height="15" fill="rgb(232,14,29)" fg:x="63868" fg:w="66"/><text x="42.7556%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.04%)</title><rect x="42.5062%" y="677" width="0.0433%" height="15" fill="rgb(208,45,52)" fg:x="63869" fg:w="65"/><text x="42.7562%" y="687.50"></text></g><g><title>native_write_msr (64 samples, 0.04%)</title><rect x="42.5069%" y="661" width="0.0426%" height="15" fill="rgb(234,191,28)" fg:x="63870" fg:w="64"/><text x="42.7569%" y="671.50"></text></g><g><title>futex_wait_queue_me (77 samples, 0.05%)</title><rect x="42.5009%" y="757" width="0.0512%" height="15" fill="rgb(244,67,43)" fg:x="63861" fg:w="77"/><text x="42.7509%" y="767.50"></text></g><g><title>schedule (76 samples, 0.05%)</title><rect x="42.5016%" y="741" width="0.0506%" height="15" fill="rgb(236,189,24)" fg:x="63862" fg:w="76"/><text x="42.7516%" y="751.50"></text></g><g><title>__schedule (75 samples, 0.05%)</title><rect x="42.5022%" y="725" width="0.0499%" height="15" fill="rgb(239,214,33)" fg:x="63863" fg:w="75"/><text x="42.7522%" y="735.50"></text></g><g><title>do_syscall_64 (79 samples, 0.05%)</title><rect x="42.5009%" y="821" width="0.0526%" height="15" fill="rgb(226,176,41)" fg:x="63861" fg:w="79"/><text x="42.7509%" y="831.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.05%)</title><rect x="42.5009%" y="805" width="0.0526%" height="15" fill="rgb(248,47,8)" fg:x="63861" fg:w="79"/><text x="42.7509%" y="815.50"></text></g><g><title>do_futex (79 samples, 0.05%)</title><rect x="42.5009%" y="789" width="0.0526%" height="15" fill="rgb(218,81,44)" fg:x="63861" fg:w="79"/><text x="42.7509%" y="799.50"></text></g><g><title>futex_wait (79 samples, 0.05%)</title><rect x="42.5009%" y="773" width="0.0526%" height="15" fill="rgb(213,98,6)" fg:x="63861" fg:w="79"/><text x="42.7509%" y="783.50"></text></g><g><title>GC_Thread#0 (389 samples, 0.26%)</title><rect x="42.2959%" y="1013" width="0.2589%" height="15" fill="rgb(222,85,22)" fg:x="63553" fg:w="389"/><text x="42.5459%" y="1023.50"></text></g><g><title>__GI___clone (380 samples, 0.25%)</title><rect x="42.3019%" y="997" width="0.2529%" height="15" fill="rgb(239,46,39)" fg:x="63562" fg:w="380"/><text x="42.5519%" y="1007.50"></text></g><g><title>start_thread (380 samples, 0.25%)</title><rect x="42.3019%" y="981" width="0.2529%" height="15" fill="rgb(237,12,29)" fg:x="63562" fg:w="380"/><text x="42.5519%" y="991.50"></text></g><g><title>thread_native_entry (380 samples, 0.25%)</title><rect x="42.3019%" y="965" width="0.2529%" height="15" fill="rgb(214,77,8)" fg:x="63562" fg:w="380"/><text x="42.5519%" y="975.50"></text></g><g><title>Thread::call_run (380 samples, 0.25%)</title><rect x="42.3019%" y="949" width="0.2529%" height="15" fill="rgb(217,168,37)" fg:x="63562" fg:w="380"/><text x="42.5519%" y="959.50"></text></g><g><title>GangWorker::loop (380 samples, 0.25%)</title><rect x="42.3019%" y="933" width="0.2529%" height="15" fill="rgb(221,217,23)" fg:x="63562" fg:w="380"/><text x="42.5519%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (86 samples, 0.06%)</title><rect x="42.4976%" y="917" width="0.0572%" height="15" fill="rgb(243,229,36)" fg:x="63856" fg:w="86"/><text x="42.7476%" y="927.50"></text></g><g><title>PosixSemaphore::wait (86 samples, 0.06%)</title><rect x="42.4976%" y="901" width="0.0572%" height="15" fill="rgb(251,163,40)" fg:x="63856" fg:w="86"/><text x="42.7476%" y="911.50"></text></g><g><title>__new_sem_wait_slow (83 samples, 0.06%)</title><rect x="42.4996%" y="885" width="0.0552%" height="15" fill="rgb(237,222,12)" fg:x="63859" fg:w="83"/><text x="42.7496%" y="895.50"></text></g><g><title>do_futex_wait (82 samples, 0.05%)</title><rect x="42.5002%" y="869" width="0.0546%" height="15" fill="rgb(248,132,6)" fg:x="63860" fg:w="82"/><text x="42.7502%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (82 samples, 0.05%)</title><rect x="42.5002%" y="853" width="0.0546%" height="15" fill="rgb(227,167,50)" fg:x="63860" fg:w="82"/><text x="42.7502%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.05%)</title><rect x="42.5009%" y="837" width="0.0539%" height="15" fill="rgb(242,84,37)" fg:x="63861" fg:w="81"/><text x="42.7509%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="42.5774%" y="869" width="0.0140%" height="15" fill="rgb(212,4,50)" fg:x="63976" fg:w="21"/><text x="42.8274%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue (33 samples, 0.02%)</title><rect x="42.5708%" y="885" width="0.0220%" height="15" fill="rgb(230,228,32)" fg:x="63966" fg:w="33"/><text x="42.8208%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (38 samples, 0.03%)</title><rect x="42.5694%" y="901" width="0.0253%" height="15" fill="rgb(248,217,23)" fg:x="63964" fg:w="38"/><text x="42.8194%" y="911.50"></text></g><g><title>G1ParCopyClosure&lt;(G1Barrier)1, (G1Mark)0&gt;::do_oop (24 samples, 0.02%)</title><rect x="42.5994%" y="821" width="0.0160%" height="15" fill="rgb(238,197,32)" fg:x="64009" fg:w="24"/><text x="42.8494%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (20 samples, 0.01%)</title><rect x="42.6021%" y="805" width="0.0133%" height="15" fill="rgb(236,106,1)" fg:x="64013" fg:w="20"/><text x="42.8521%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (39 samples, 0.03%)</title><rect x="42.6234%" y="789" width="0.0260%" height="15" fill="rgb(219,228,13)" fg:x="64045" fg:w="39"/><text x="42.8734%" y="799.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (81 samples, 0.05%)</title><rect x="42.5961%" y="869" width="0.0539%" height="15" fill="rgb(238,30,35)" fg:x="64004" fg:w="81"/><text x="42.8461%" y="879.50"></text></g><g><title>G1CLDScanClosure::do_cld (80 samples, 0.05%)</title><rect x="42.5967%" y="853" width="0.0532%" height="15" fill="rgb(236,70,23)" fg:x="64005" fg:w="80"/><text x="42.8467%" y="863.50"></text></g><g><title>ClassLoaderData::oops_do (80 samples, 0.05%)</title><rect x="42.5967%" y="837" width="0.0532%" height="15" fill="rgb(249,104,48)" fg:x="64005" fg:w="80"/><text x="42.8467%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (52 samples, 0.03%)</title><rect x="42.6154%" y="821" width="0.0346%" height="15" fill="rgb(254,117,50)" fg:x="64033" fg:w="52"/><text x="42.8654%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (48 samples, 0.03%)</title><rect x="42.6180%" y="805" width="0.0319%" height="15" fill="rgb(223,152,4)" fg:x="64037" fg:w="48"/><text x="42.8680%" y="815.50"></text></g><g><title>frame::oops_do_internal (20 samples, 0.01%)</title><rect x="42.6586%" y="821" width="0.0133%" height="15" fill="rgb(245,6,2)" fg:x="64098" fg:w="20"/><text x="42.9086%" y="831.50"></text></g><g><title>OopMapSet::oops_do (20 samples, 0.01%)</title><rect x="42.6586%" y="805" width="0.0133%" height="15" fill="rgb(249,150,24)" fg:x="64098" fg:w="20"/><text x="42.9086%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="42.6586%" y="789" width="0.0133%" height="15" fill="rgb(228,185,42)" fg:x="64098" fg:w="20"/><text x="42.9086%" y="799.50"></text></g><g><title>asm_exc_page_fault (16 samples, 0.01%)</title><rect x="42.6966%" y="741" width="0.0106%" height="15" fill="rgb(226,39,33)" fg:x="64155" fg:w="16"/><text x="42.9466%" y="751.50"></text></g><g><title>exc_page_fault (16 samples, 0.01%)</title><rect x="42.6966%" y="725" width="0.0106%" height="15" fill="rgb(221,166,19)" fg:x="64155" fg:w="16"/><text x="42.9466%" y="735.50"></text></g><g><title>do_user_addr_fault (16 samples, 0.01%)</title><rect x="42.6966%" y="709" width="0.0106%" height="15" fill="rgb(209,109,2)" fg:x="64155" fg:w="16"/><text x="42.9466%" y="719.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="42.6966%" y="693" width="0.0106%" height="15" fill="rgb(252,216,26)" fg:x="64155" fg:w="16"/><text x="42.9466%" y="703.50"></text></g><g><title>do_huge_pmd_anonymous_page (16 samples, 0.01%)</title><rect x="42.6966%" y="677" width="0.0106%" height="15" fill="rgb(227,173,36)" fg:x="64155" fg:w="16"/><text x="42.9466%" y="687.50"></text></g><g><title>InterpreterOopMap::iterate_oop (53 samples, 0.04%)</title><rect x="42.6726%" y="805" width="0.0353%" height="15" fill="rgb(209,90,7)" fg:x="64119" fg:w="53"/><text x="42.9226%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.04%)</title><rect x="42.6726%" y="789" width="0.0353%" height="15" fill="rgb(250,194,11)" fg:x="64119" fg:w="53"/><text x="42.9226%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (45 samples, 0.03%)</title><rect x="42.6779%" y="773" width="0.0299%" height="15" fill="rgb(220,72,50)" fg:x="64127" fg:w="45"/><text x="42.9279%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (41 samples, 0.03%)</title><rect x="42.6806%" y="757" width="0.0273%" height="15" fill="rgb(222,106,48)" fg:x="64131" fg:w="41"/><text x="42.9306%" y="767.50"></text></g><g><title>G1RootProcessor::process_java_roots (173 samples, 0.12%)</title><rect x="42.5961%" y="885" width="0.1151%" height="15" fill="rgb(216,220,45)" fg:x="64004" fg:w="173"/><text x="42.8461%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (92 samples, 0.06%)</title><rect x="42.6500%" y="869" width="0.0612%" height="15" fill="rgb(234,112,18)" fg:x="64085" fg:w="92"/><text x="42.9000%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (92 samples, 0.06%)</title><rect x="42.6500%" y="853" width="0.0612%" height="15" fill="rgb(206,179,9)" fg:x="64085" fg:w="92"/><text x="42.9000%" y="863.50"></text></g><g><title>JavaThread::oops_do (86 samples, 0.06%)</title><rect x="42.6540%" y="837" width="0.0572%" height="15" fill="rgb(215,115,40)" fg:x="64091" fg:w="86"/><text x="42.9040%" y="847.50"></text></g><g><title>frame::oops_interpreted_do (59 samples, 0.04%)</title><rect x="42.6719%" y="821" width="0.0393%" height="15" fill="rgb(222,69,34)" fg:x="64118" fg:w="59"/><text x="42.9219%" y="831.50"></text></g><g><title>G1ParTask::work (218 samples, 0.15%)</title><rect x="42.5694%" y="917" width="0.1451%" height="15" fill="rgb(209,161,10)" fg:x="63964" fg:w="218"/><text x="42.8194%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (178 samples, 0.12%)</title><rect x="42.5961%" y="901" width="0.1185%" height="15" fill="rgb(217,6,38)" fg:x="64004" fg:w="178"/><text x="42.8461%" y="911.50"></text></g><g><title>ParallelSPCleanupTask::work (16 samples, 0.01%)</title><rect x="42.7305%" y="917" width="0.0106%" height="15" fill="rgb(229,229,48)" fg:x="64206" fg:w="16"/><text x="42.9805%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.05%)</title><rect x="42.7511%" y="693" width="0.0539%" height="15" fill="rgb(225,21,28)" fg:x="64237" fg:w="81"/><text x="43.0011%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (80 samples, 0.05%)</title><rect x="42.7518%" y="677" width="0.0532%" height="15" fill="rgb(206,33,13)" fg:x="64238" fg:w="80"/><text x="43.0018%" y="687.50"></text></g><g><title>native_write_msr (79 samples, 0.05%)</title><rect x="42.7525%" y="661" width="0.0526%" height="15" fill="rgb(242,178,17)" fg:x="64239" fg:w="79"/><text x="43.0025%" y="671.50"></text></g><g><title>finish_task_switch (85 samples, 0.06%)</title><rect x="42.7498%" y="709" width="0.0566%" height="15" fill="rgb(220,162,5)" fg:x="64235" fg:w="85"/><text x="42.9998%" y="719.50"></text></g><g><title>do_syscall_64 (100 samples, 0.07%)</title><rect x="42.7458%" y="821" width="0.0666%" height="15" fill="rgb(210,33,43)" fg:x="64229" fg:w="100"/><text x="42.9958%" y="831.50"></text></g><g><title>__x64_sys_futex (100 samples, 0.07%)</title><rect x="42.7458%" y="805" width="0.0666%" height="15" fill="rgb(216,116,54)" fg:x="64229" fg:w="100"/><text x="42.9958%" y="815.50"></text></g><g><title>do_futex (100 samples, 0.07%)</title><rect x="42.7458%" y="789" width="0.0666%" height="15" fill="rgb(249,92,24)" fg:x="64229" fg:w="100"/><text x="42.9958%" y="799.50"></text></g><g><title>futex_wait (99 samples, 0.07%)</title><rect x="42.7465%" y="773" width="0.0659%" height="15" fill="rgb(231,189,14)" fg:x="64230" fg:w="99"/><text x="42.9965%" y="783.50"></text></g><g><title>futex_wait_queue_me (99 samples, 0.07%)</title><rect x="42.7465%" y="757" width="0.0659%" height="15" fill="rgb(230,8,41)" fg:x="64230" fg:w="99"/><text x="42.9965%" y="767.50"></text></g><g><title>schedule (97 samples, 0.06%)</title><rect x="42.7478%" y="741" width="0.0646%" height="15" fill="rgb(249,7,27)" fg:x="64232" fg:w="97"/><text x="42.9978%" y="751.50"></text></g><g><title>__schedule (97 samples, 0.06%)</title><rect x="42.7478%" y="725" width="0.0646%" height="15" fill="rgb(232,86,5)" fg:x="64232" fg:w="97"/><text x="42.9978%" y="735.50"></text></g><g><title>GC_Thread#1 (390 samples, 0.26%)</title><rect x="42.5548%" y="1013" width="0.2596%" height="15" fill="rgb(224,175,18)" fg:x="63942" fg:w="390"/><text x="42.8048%" y="1023.50"></text></g><g><title>__GI___clone (378 samples, 0.25%)</title><rect x="42.5628%" y="997" width="0.2516%" height="15" fill="rgb(220,129,12)" fg:x="63954" fg:w="378"/><text x="42.8128%" y="1007.50"></text></g><g><title>start_thread (378 samples, 0.25%)</title><rect x="42.5628%" y="981" width="0.2516%" height="15" fill="rgb(210,19,36)" fg:x="63954" fg:w="378"/><text x="42.8128%" y="991.50"></text></g><g><title>thread_native_entry (378 samples, 0.25%)</title><rect x="42.5628%" y="965" width="0.2516%" height="15" fill="rgb(219,96,14)" fg:x="63954" fg:w="378"/><text x="42.8128%" y="975.50"></text></g><g><title>Thread::call_run (378 samples, 0.25%)</title><rect x="42.5628%" y="949" width="0.2516%" height="15" fill="rgb(249,106,1)" fg:x="63954" fg:w="378"/><text x="42.8128%" y="959.50"></text></g><g><title>GangWorker::loop (378 samples, 0.25%)</title><rect x="42.5628%" y="933" width="0.2516%" height="15" fill="rgb(249,155,20)" fg:x="63954" fg:w="378"/><text x="42.8128%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (109 samples, 0.07%)</title><rect x="42.7418%" y="917" width="0.0725%" height="15" fill="rgb(244,168,9)" fg:x="64223" fg:w="109"/><text x="42.9918%" y="927.50"></text></g><g><title>PosixSemaphore::wait (108 samples, 0.07%)</title><rect x="42.7425%" y="901" width="0.0719%" height="15" fill="rgb(216,23,50)" fg:x="64224" fg:w="108"/><text x="42.9925%" y="911.50"></text></g><g><title>__new_sem_wait_slow (108 samples, 0.07%)</title><rect x="42.7425%" y="885" width="0.0719%" height="15" fill="rgb(224,219,20)" fg:x="64224" fg:w="108"/><text x="42.9925%" y="895.50"></text></g><g><title>do_futex_wait (107 samples, 0.07%)</title><rect x="42.7431%" y="869" width="0.0712%" height="15" fill="rgb(222,156,15)" fg:x="64225" fg:w="107"/><text x="42.9931%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (107 samples, 0.07%)</title><rect x="42.7431%" y="853" width="0.0712%" height="15" fill="rgb(231,97,17)" fg:x="64225" fg:w="107"/><text x="42.9931%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (103 samples, 0.07%)</title><rect x="42.7458%" y="837" width="0.0685%" height="15" fill="rgb(218,70,48)" fg:x="64229" fg:w="103"/><text x="42.9958%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (48 samples, 0.03%)</title><rect x="42.8483%" y="869" width="0.0319%" height="15" fill="rgb(212,196,52)" fg:x="64383" fg:w="48"/><text x="43.0983%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue (75 samples, 0.05%)</title><rect x="42.8317%" y="885" width="0.0499%" height="15" fill="rgb(243,203,18)" fg:x="64358" fg:w="75"/><text x="43.0817%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (122 samples, 0.08%)</title><rect x="42.8303%" y="901" width="0.0812%" height="15" fill="rgb(252,125,41)" fg:x="64356" fg:w="122"/><text x="43.0803%" y="911.50"></text></g><g><title>SpinPause (41 samples, 0.03%)</title><rect x="42.8842%" y="885" width="0.0273%" height="15" fill="rgb(223,180,33)" fg:x="64437" fg:w="41"/><text x="43.1342%" y="895.50"></text></g><g><title>G1CodeBlobClosure::HeapRegionGatheringOopClosure::do_oop (19 samples, 0.01%)</title><rect x="42.9262%" y="789" width="0.0126%" height="15" fill="rgb(254,159,46)" fg:x="64500" fg:w="19"/><text x="43.1762%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (19 samples, 0.01%)</title><rect x="42.9262%" y="773" width="0.0126%" height="15" fill="rgb(254,38,10)" fg:x="64500" fg:w="19"/><text x="43.1762%" y="783.50"></text></g><g><title>G1CodeBlobClosure::do_code_blob (29 samples, 0.02%)</title><rect x="42.9228%" y="821" width="0.0193%" height="15" fill="rgb(208,217,32)" fg:x="64495" fg:w="29"/><text x="43.1728%" y="831.50"></text></g><g><title>nmethod::oops_do (27 samples, 0.02%)</title><rect x="42.9242%" y="805" width="0.0180%" height="15" fill="rgb(221,120,13)" fg:x="64497" fg:w="27"/><text x="43.1742%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (39 samples, 0.03%)</title><rect x="42.9182%" y="901" width="0.0260%" height="15" fill="rgb(246,54,52)" fg:x="64488" fg:w="39"/><text x="43.1682%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (39 samples, 0.03%)</title><rect x="42.9182%" y="885" width="0.0260%" height="15" fill="rgb(242,34,25)" fg:x="64488" fg:w="39"/><text x="43.1682%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (39 samples, 0.03%)</title><rect x="42.9182%" y="869" width="0.0260%" height="15" fill="rgb(247,209,9)" fg:x="64488" fg:w="39"/><text x="43.1682%" y="879.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (33 samples, 0.02%)</title><rect x="42.9222%" y="853" width="0.0220%" height="15" fill="rgb(228,71,26)" fg:x="64494" fg:w="33"/><text x="43.1722%" y="863.50"></text></g><g><title>G1CodeRootSet::nmethods_do (33 samples, 0.02%)</title><rect x="42.9222%" y="837" width="0.0220%" height="15" fill="rgb(222,145,49)" fg:x="64494" fg:w="33"/><text x="43.1722%" y="847.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (18 samples, 0.01%)</title><rect x="42.9441%" y="885" width="0.0120%" height="15" fill="rgb(218,121,17)" fg:x="64527" fg:w="18"/><text x="43.1941%" y="895.50"></text></g><g><title>G1CLDScanClosure::do_cld (18 samples, 0.01%)</title><rect x="42.9441%" y="869" width="0.0120%" height="15" fill="rgb(244,50,7)" fg:x="64527" fg:w="18"/><text x="43.1941%" y="879.50"></text></g><g><title>ClassLoaderData::oops_do (18 samples, 0.01%)</title><rect x="42.9441%" y="853" width="0.0120%" height="15" fill="rgb(246,229,37)" fg:x="64527" fg:w="18"/><text x="43.1941%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (17 samples, 0.01%)</title><rect x="42.9448%" y="837" width="0.0113%" height="15" fill="rgb(225,18,5)" fg:x="64528" fg:w="17"/><text x="43.1948%" y="847.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (17 samples, 0.01%)</title><rect x="42.9448%" y="821" width="0.0113%" height="15" fill="rgb(213,204,8)" fg:x="64528" fg:w="17"/><text x="43.1948%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="42.9448%" y="805" width="0.0113%" height="15" fill="rgb(238,103,6)" fg:x="64528" fg:w="17"/><text x="43.1948%" y="815.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (29 samples, 0.02%)</title><rect x="42.9681%" y="805" width="0.0193%" height="15" fill="rgb(222,25,35)" fg:x="64563" fg:w="29"/><text x="43.2181%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (23 samples, 0.02%)</title><rect x="42.9721%" y="789" width="0.0153%" height="15" fill="rgb(213,203,35)" fg:x="64569" fg:w="23"/><text x="43.2221%" y="799.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (50 samples, 0.03%)</title><rect x="42.9561%" y="869" width="0.0333%" height="15" fill="rgb(221,79,53)" fg:x="64545" fg:w="50"/><text x="43.2061%" y="879.50"></text></g><g><title>G1CLDScanClosure::do_cld (50 samples, 0.03%)</title><rect x="42.9561%" y="853" width="0.0333%" height="15" fill="rgb(243,200,35)" fg:x="64545" fg:w="50"/><text x="43.2061%" y="863.50"></text></g><g><title>ClassLoaderData::oops_do (50 samples, 0.03%)</title><rect x="42.9561%" y="837" width="0.0333%" height="15" fill="rgb(248,60,25)" fg:x="64545" fg:w="50"/><text x="43.2061%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (36 samples, 0.02%)</title><rect x="42.9654%" y="821" width="0.0240%" height="15" fill="rgb(227,53,46)" fg:x="64559" fg:w="36"/><text x="43.2154%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (37 samples, 0.02%)</title><rect x="43.0040%" y="773" width="0.0246%" height="15" fill="rgb(216,120,32)" fg:x="64617" fg:w="37"/><text x="43.2540%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (28 samples, 0.02%)</title><rect x="43.0100%" y="757" width="0.0186%" height="15" fill="rgb(220,134,1)" fg:x="64626" fg:w="28"/><text x="43.2600%" y="767.50"></text></g><g><title>InterpreterOopMap::iterate_oop (50 samples, 0.03%)</title><rect x="42.9974%" y="805" width="0.0333%" height="15" fill="rgb(237,168,5)" fg:x="64607" fg:w="50"/><text x="43.2474%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (50 samples, 0.03%)</title><rect x="42.9974%" y="789" width="0.0333%" height="15" fill="rgb(231,100,33)" fg:x="64607" fg:w="50"/><text x="43.2474%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (114 samples, 0.08%)</title><rect x="42.9561%" y="885" width="0.0759%" height="15" fill="rgb(236,177,47)" fg:x="64545" fg:w="114"/><text x="43.2061%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (64 samples, 0.04%)</title><rect x="42.9894%" y="869" width="0.0426%" height="15" fill="rgb(235,7,49)" fg:x="64595" fg:w="64"/><text x="43.2394%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (64 samples, 0.04%)</title><rect x="42.9894%" y="853" width="0.0426%" height="15" fill="rgb(232,119,22)" fg:x="64595" fg:w="64"/><text x="43.2394%" y="863.50"></text></g><g><title>JavaThread::oops_do (64 samples, 0.04%)</title><rect x="42.9894%" y="837" width="0.0426%" height="15" fill="rgb(254,73,53)" fg:x="64595" fg:w="64"/><text x="43.2394%" y="847.50"></text></g><g><title>frame::oops_interpreted_do (52 samples, 0.03%)</title><rect x="42.9974%" y="821" width="0.0346%" height="15" fill="rgb(251,35,20)" fg:x="64607" fg:w="52"/><text x="43.2474%" y="831.50"></text></g><g><title>G1ParTask::work (322 samples, 0.21%)</title><rect x="42.8303%" y="917" width="0.2143%" height="15" fill="rgb(241,119,20)" fg:x="64356" fg:w="322"/><text x="43.0803%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (151 samples, 0.10%)</title><rect x="42.9441%" y="901" width="0.1005%" height="15" fill="rgb(207,102,14)" fg:x="64527" fg:w="151"/><text x="43.1941%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="43.0746%" y="693" width="0.0260%" height="15" fill="rgb(248,201,50)" fg:x="64723" fg:w="39"/><text x="43.3246%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="43.0759%" y="677" width="0.0246%" height="15" fill="rgb(222,185,44)" fg:x="64725" fg:w="37"/><text x="43.3259%" y="687.50"></text></g><g><title>native_write_msr (37 samples, 0.02%)</title><rect x="43.0759%" y="661" width="0.0246%" height="15" fill="rgb(218,107,18)" fg:x="64725" fg:w="37"/><text x="43.3259%" y="671.50"></text></g><g><title>finish_task_switch (40 samples, 0.03%)</title><rect x="43.0746%" y="709" width="0.0266%" height="15" fill="rgb(237,177,39)" fg:x="64723" fg:w="40"/><text x="43.3246%" y="719.50"></text></g><g><title>do_syscall_64 (59 samples, 0.04%)</title><rect x="43.0693%" y="821" width="0.0393%" height="15" fill="rgb(246,69,6)" fg:x="64715" fg:w="59"/><text x="43.3193%" y="831.50"></text></g><g><title>__x64_sys_futex (59 samples, 0.04%)</title><rect x="43.0693%" y="805" width="0.0393%" height="15" fill="rgb(234,208,37)" fg:x="64715" fg:w="59"/><text x="43.3193%" y="815.50"></text></g><g><title>do_futex (59 samples, 0.04%)</title><rect x="43.0693%" y="789" width="0.0393%" height="15" fill="rgb(225,4,6)" fg:x="64715" fg:w="59"/><text x="43.3193%" y="799.50"></text></g><g><title>futex_wait (58 samples, 0.04%)</title><rect x="43.0699%" y="773" width="0.0386%" height="15" fill="rgb(233,45,0)" fg:x="64716" fg:w="58"/><text x="43.3199%" y="783.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.04%)</title><rect x="43.0706%" y="757" width="0.0379%" height="15" fill="rgb(226,136,5)" fg:x="64717" fg:w="57"/><text x="43.3206%" y="767.50"></text></g><g><title>schedule (57 samples, 0.04%)</title><rect x="43.0706%" y="741" width="0.0379%" height="15" fill="rgb(211,91,47)" fg:x="64717" fg:w="57"/><text x="43.3206%" y="751.50"></text></g><g><title>__schedule (56 samples, 0.04%)</title><rect x="43.0713%" y="725" width="0.0373%" height="15" fill="rgb(242,88,51)" fg:x="64718" fg:w="56"/><text x="43.3213%" y="735.50"></text></g><g><title>GangWorker::loop (434 samples, 0.29%)</title><rect x="42.8223%" y="933" width="0.2888%" height="15" fill="rgb(230,91,28)" fg:x="64344" fg:w="434"/><text x="43.0723%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (64 samples, 0.04%)</title><rect x="43.0686%" y="917" width="0.0426%" height="15" fill="rgb(254,186,29)" fg:x="64714" fg:w="64"/><text x="43.3186%" y="927.50"></text></g><g><title>PosixSemaphore::wait (63 samples, 0.04%)</title><rect x="43.0693%" y="901" width="0.0419%" height="15" fill="rgb(238,6,4)" fg:x="64715" fg:w="63"/><text x="43.3193%" y="911.50"></text></g><g><title>__new_sem_wait_slow (63 samples, 0.04%)</title><rect x="43.0693%" y="885" width="0.0419%" height="15" fill="rgb(221,151,16)" fg:x="64715" fg:w="63"/><text x="43.3193%" y="895.50"></text></g><g><title>do_futex_wait (63 samples, 0.04%)</title><rect x="43.0693%" y="869" width="0.0419%" height="15" fill="rgb(251,143,52)" fg:x="64715" fg:w="63"/><text x="43.3193%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (63 samples, 0.04%)</title><rect x="43.0693%" y="853" width="0.0419%" height="15" fill="rgb(206,90,15)" fg:x="64715" fg:w="63"/><text x="43.3193%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="43.0693%" y="837" width="0.0419%" height="15" fill="rgb(218,35,8)" fg:x="64715" fg:w="63"/><text x="43.3193%" y="847.50"></text></g><g><title>GC_Thread#2 (447 samples, 0.30%)</title><rect x="42.8144%" y="1013" width="0.2975%" height="15" fill="rgb(239,215,6)" fg:x="64332" fg:w="447"/><text x="43.0644%" y="1023.50"></text></g><g><title>__GI___clone (435 samples, 0.29%)</title><rect x="42.8223%" y="997" width="0.2895%" height="15" fill="rgb(245,116,39)" fg:x="64344" fg:w="435"/><text x="43.0723%" y="1007.50"></text></g><g><title>start_thread (435 samples, 0.29%)</title><rect x="42.8223%" y="981" width="0.2895%" height="15" fill="rgb(242,65,28)" fg:x="64344" fg:w="435"/><text x="43.0723%" y="991.50"></text></g><g><title>thread_native_entry (435 samples, 0.29%)</title><rect x="42.8223%" y="965" width="0.2895%" height="15" fill="rgb(252,132,53)" fg:x="64344" fg:w="435"/><text x="43.0723%" y="975.50"></text></g><g><title>Thread::call_run (435 samples, 0.29%)</title><rect x="42.8223%" y="949" width="0.2895%" height="15" fill="rgb(224,159,50)" fg:x="64344" fg:w="435"/><text x="43.0723%" y="959.50"></text></g><g><title>G1ParScanThreadState::trim_queue (46 samples, 0.03%)</title><rect x="43.1252%" y="885" width="0.0306%" height="15" fill="rgb(224,93,4)" fg:x="64799" fg:w="46"/><text x="43.3752%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="43.1365%" y="869" width="0.0193%" height="15" fill="rgb(208,81,34)" fg:x="64816" fg:w="29"/><text x="43.3865%" y="879.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (81 samples, 0.05%)</title><rect x="43.1192%" y="901" width="0.0539%" height="15" fill="rgb(233,92,54)" fg:x="64790" fg:w="81"/><text x="43.3692%" y="911.50"></text></g><g><title>SpinPause (23 samples, 0.02%)</title><rect x="43.1578%" y="885" width="0.0153%" height="15" fill="rgb(237,21,14)" fg:x="64848" fg:w="23"/><text x="43.4078%" y="895.50"></text></g><g><title>G1RemSet::scan_rem_set (16 samples, 0.01%)</title><rect x="43.1731%" y="901" width="0.0106%" height="15" fill="rgb(249,128,51)" fg:x="64871" fg:w="16"/><text x="43.4231%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (16 samples, 0.01%)</title><rect x="43.1731%" y="885" width="0.0106%" height="15" fill="rgb(223,129,24)" fg:x="64871" fg:w="16"/><text x="43.4231%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (16 samples, 0.01%)</title><rect x="43.1731%" y="869" width="0.0106%" height="15" fill="rgb(231,168,25)" fg:x="64871" fg:w="16"/><text x="43.4231%" y="879.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (16 samples, 0.01%)</title><rect x="43.1731%" y="853" width="0.0106%" height="15" fill="rgb(224,39,20)" fg:x="64871" fg:w="16"/><text x="43.4231%" y="863.50"></text></g><g><title>G1CodeRootSet::nmethods_do (16 samples, 0.01%)</title><rect x="43.1731%" y="837" width="0.0106%" height="15" fill="rgb(225,152,53)" fg:x="64871" fg:w="16"/><text x="43.4231%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (17 samples, 0.01%)</title><rect x="43.2310%" y="741" width="0.0113%" height="15" fill="rgb(252,17,24)" fg:x="64958" fg:w="17"/><text x="43.4810%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (71 samples, 0.05%)</title><rect x="43.2097%" y="773" width="0.0473%" height="15" fill="rgb(250,114,30)" fg:x="64926" fg:w="71"/><text x="43.4597%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (64 samples, 0.04%)</title><rect x="43.2143%" y="757" width="0.0426%" height="15" fill="rgb(229,5,4)" fg:x="64933" fg:w="64"/><text x="43.4643%" y="767.50"></text></g><g><title>InterpreterOopMap::iterate_oop (83 samples, 0.06%)</title><rect x="43.2030%" y="805" width="0.0552%" height="15" fill="rgb(225,176,49)" fg:x="64916" fg:w="83"/><text x="43.4530%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (82 samples, 0.05%)</title><rect x="43.2037%" y="789" width="0.0546%" height="15" fill="rgb(224,221,49)" fg:x="64917" fg:w="82"/><text x="43.4537%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (118 samples, 0.08%)</title><rect x="43.1871%" y="885" width="0.0785%" height="15" fill="rgb(253,169,27)" fg:x="64892" fg:w="118"/><text x="43.4371%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (118 samples, 0.08%)</title><rect x="43.1871%" y="869" width="0.0785%" height="15" fill="rgb(211,206,16)" fg:x="64892" fg:w="118"/><text x="43.4371%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (118 samples, 0.08%)</title><rect x="43.1871%" y="853" width="0.0785%" height="15" fill="rgb(244,87,35)" fg:x="64892" fg:w="118"/><text x="43.4371%" y="863.50"></text></g><g><title>JavaThread::oops_do (118 samples, 0.08%)</title><rect x="43.1871%" y="837" width="0.0785%" height="15" fill="rgb(246,28,10)" fg:x="64892" fg:w="118"/><text x="43.4371%" y="847.50"></text></g><g><title>frame::oops_interpreted_do (97 samples, 0.06%)</title><rect x="43.2010%" y="821" width="0.0646%" height="15" fill="rgb(229,12,44)" fg:x="64913" fg:w="97"/><text x="43.4510%" y="831.50"></text></g><g><title>G1ParTask::work (224 samples, 0.15%)</title><rect x="43.1192%" y="917" width="0.1491%" height="15" fill="rgb(210,145,37)" fg:x="64790" fg:w="224"/><text x="43.3692%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (127 samples, 0.08%)</title><rect x="43.1837%" y="901" width="0.0845%" height="15" fill="rgb(227,112,52)" fg:x="64887" fg:w="127"/><text x="43.4337%" y="911.50"></text></g><g><title>G1ParallelCleaningTask::work (16 samples, 0.01%)</title><rect x="43.2682%" y="917" width="0.0106%" height="15" fill="rgb(238,155,34)" fg:x="65014" fg:w="16"/><text x="43.5182%" y="927.50"></text></g><g><title>G1STWRefProcTaskProxy::work (20 samples, 0.01%)</title><rect x="43.2789%" y="917" width="0.0133%" height="15" fill="rgb(239,226,36)" fg:x="65030" fg:w="20"/><text x="43.5289%" y="927.50"></text></g><g><title>ParallelSPCleanupTask::work (23 samples, 0.02%)</title><rect x="43.2922%" y="917" width="0.0153%" height="15" fill="rgb(230,16,23)" fg:x="65050" fg:w="23"/><text x="43.5422%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (18 samples, 0.01%)</title><rect x="43.2955%" y="901" width="0.0120%" height="15" fill="rgb(236,171,36)" fg:x="65055" fg:w="18"/><text x="43.5455%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.04%)</title><rect x="43.3135%" y="693" width="0.0379%" height="15" fill="rgb(221,22,14)" fg:x="65082" fg:w="57"/><text x="43.5635%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.04%)</title><rect x="43.3148%" y="677" width="0.0366%" height="15" fill="rgb(242,43,11)" fg:x="65084" fg:w="55"/><text x="43.5648%" y="687.50"></text></g><g><title>native_write_msr (55 samples, 0.04%)</title><rect x="43.3148%" y="661" width="0.0366%" height="15" fill="rgb(232,69,23)" fg:x="65084" fg:w="55"/><text x="43.5648%" y="671.50"></text></g><g><title>finish_task_switch (63 samples, 0.04%)</title><rect x="43.3128%" y="709" width="0.0419%" height="15" fill="rgb(216,180,54)" fg:x="65081" fg:w="63"/><text x="43.5628%" y="719.50"></text></g><g><title>do_syscall_64 (73 samples, 0.05%)</title><rect x="43.3095%" y="821" width="0.0486%" height="15" fill="rgb(216,5,24)" fg:x="65076" fg:w="73"/><text x="43.5595%" y="831.50"></text></g><g><title>__x64_sys_futex (73 samples, 0.05%)</title><rect x="43.3095%" y="805" width="0.0486%" height="15" fill="rgb(225,89,9)" fg:x="65076" fg:w="73"/><text x="43.5595%" y="815.50"></text></g><g><title>do_futex (73 samples, 0.05%)</title><rect x="43.3095%" y="789" width="0.0486%" height="15" fill="rgb(243,75,33)" fg:x="65076" fg:w="73"/><text x="43.5595%" y="799.50"></text></g><g><title>futex_wait (73 samples, 0.05%)</title><rect x="43.3095%" y="773" width="0.0486%" height="15" fill="rgb(247,141,45)" fg:x="65076" fg:w="73"/><text x="43.5595%" y="783.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.05%)</title><rect x="43.3102%" y="757" width="0.0479%" height="15" fill="rgb(232,177,36)" fg:x="65077" fg:w="72"/><text x="43.5602%" y="767.50"></text></g><g><title>schedule (72 samples, 0.05%)</title><rect x="43.3102%" y="741" width="0.0479%" height="15" fill="rgb(219,125,36)" fg:x="65077" fg:w="72"/><text x="43.5602%" y="751.50"></text></g><g><title>__schedule (72 samples, 0.05%)</title><rect x="43.3102%" y="725" width="0.0479%" height="15" fill="rgb(227,94,9)" fg:x="65077" fg:w="72"/><text x="43.5602%" y="735.50"></text></g><g><title>__GI___clone (369 samples, 0.25%)</title><rect x="43.1145%" y="997" width="0.2456%" height="15" fill="rgb(240,34,52)" fg:x="64783" fg:w="369"/><text x="43.3645%" y="1007.50"></text></g><g><title>start_thread (369 samples, 0.25%)</title><rect x="43.1145%" y="981" width="0.2456%" height="15" fill="rgb(216,45,12)" fg:x="64783" fg:w="369"/><text x="43.3645%" y="991.50"></text></g><g><title>thread_native_entry (369 samples, 0.25%)</title><rect x="43.1145%" y="965" width="0.2456%" height="15" fill="rgb(246,21,19)" fg:x="64783" fg:w="369"/><text x="43.3645%" y="975.50"></text></g><g><title>Thread::call_run (369 samples, 0.25%)</title><rect x="43.1145%" y="949" width="0.2456%" height="15" fill="rgb(213,98,42)" fg:x="64783" fg:w="369"/><text x="43.3645%" y="959.50"></text></g><g><title>GangWorker::loop (369 samples, 0.25%)</title><rect x="43.1145%" y="933" width="0.2456%" height="15" fill="rgb(250,136,47)" fg:x="64783" fg:w="369"/><text x="43.3645%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (77 samples, 0.05%)</title><rect x="43.3088%" y="917" width="0.0512%" height="15" fill="rgb(251,124,27)" fg:x="65075" fg:w="77"/><text x="43.5588%" y="927.50"></text></g><g><title>PosixSemaphore::wait (77 samples, 0.05%)</title><rect x="43.3088%" y="901" width="0.0512%" height="15" fill="rgb(229,180,14)" fg:x="65075" fg:w="77"/><text x="43.5588%" y="911.50"></text></g><g><title>__new_sem_wait_slow (77 samples, 0.05%)</title><rect x="43.3088%" y="885" width="0.0512%" height="15" fill="rgb(245,216,25)" fg:x="65075" fg:w="77"/><text x="43.5588%" y="895.50"></text></g><g><title>do_futex_wait (76 samples, 0.05%)</title><rect x="43.3095%" y="869" width="0.0506%" height="15" fill="rgb(251,43,5)" fg:x="65076" fg:w="76"/><text x="43.5595%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (76 samples, 0.05%)</title><rect x="43.3095%" y="853" width="0.0506%" height="15" fill="rgb(250,128,24)" fg:x="65076" fg:w="76"/><text x="43.5595%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.05%)</title><rect x="43.3095%" y="837" width="0.0506%" height="15" fill="rgb(217,117,27)" fg:x="65076" fg:w="76"/><text x="43.5595%" y="847.50"></text></g><g><title>GC_Thread#3 (374 samples, 0.25%)</title><rect x="43.1118%" y="1013" width="0.2489%" height="15" fill="rgb(245,147,4)" fg:x="64779" fg:w="374"/><text x="43.3618%" y="1023.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="43.3940%" y="869" width="0.0193%" height="15" fill="rgb(242,201,35)" fg:x="65203" fg:w="29"/><text x="43.6440%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue (58 samples, 0.04%)</title><rect x="43.3754%" y="885" width="0.0386%" height="15" fill="rgb(218,181,1)" fg:x="65175" fg:w="58"/><text x="43.6254%" y="895.50"></text></g><g><title>SpinPause (21 samples, 0.01%)</title><rect x="43.4140%" y="885" width="0.0140%" height="15" fill="rgb(222,6,29)" fg:x="65233" fg:w="21"/><text x="43.6640%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (95 samples, 0.06%)</title><rect x="43.3654%" y="901" width="0.0632%" height="15" fill="rgb(208,186,3)" fg:x="65160" fg:w="95"/><text x="43.6154%" y="911.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (25 samples, 0.02%)</title><rect x="43.4293%" y="821" width="0.0166%" height="15" fill="rgb(216,36,26)" fg:x="65256" fg:w="25"/><text x="43.6793%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (20 samples, 0.01%)</title><rect x="43.4326%" y="805" width="0.0133%" height="15" fill="rgb(248,201,23)" fg:x="65261" fg:w="20"/><text x="43.6826%" y="815.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (26 samples, 0.02%)</title><rect x="43.4293%" y="901" width="0.0173%" height="15" fill="rgb(251,170,31)" fg:x="65256" fg:w="26"/><text x="43.6793%" y="911.50"></text></g><g><title>G1RemSet::update_rem_set (26 samples, 0.02%)</title><rect x="43.4293%" y="885" width="0.0173%" height="15" fill="rgb(207,110,25)" fg:x="65256" fg:w="26"/><text x="43.6793%" y="895.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (26 samples, 0.02%)</title><rect x="43.4293%" y="869" width="0.0173%" height="15" fill="rgb(250,54,15)" fg:x="65256" fg:w="26"/><text x="43.6793%" y="879.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (26 samples, 0.02%)</title><rect x="43.4293%" y="853" width="0.0173%" height="15" fill="rgb(227,68,33)" fg:x="65256" fg:w="26"/><text x="43.6793%" y="863.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (26 samples, 0.02%)</title><rect x="43.4293%" y="837" width="0.0173%" height="15" fill="rgb(238,34,41)" fg:x="65256" fg:w="26"/><text x="43.6793%" y="847.50"></text></g><g><title>frame::oops_do_internal (32 samples, 0.02%)</title><rect x="43.4646%" y="821" width="0.0213%" height="15" fill="rgb(220,11,15)" fg:x="65309" fg:w="32"/><text x="43.7146%" y="831.50"></text></g><g><title>OopMapSet::oops_do (32 samples, 0.02%)</title><rect x="43.4646%" y="805" width="0.0213%" height="15" fill="rgb(246,111,35)" fg:x="65309" fg:w="32"/><text x="43.7146%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (32 samples, 0.02%)</title><rect x="43.4646%" y="789" width="0.0213%" height="15" fill="rgb(209,88,53)" fg:x="65309" fg:w="32"/><text x="43.7146%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (22 samples, 0.01%)</title><rect x="43.4712%" y="773" width="0.0146%" height="15" fill="rgb(231,185,47)" fg:x="65319" fg:w="22"/><text x="43.7212%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (20 samples, 0.01%)</title><rect x="43.4726%" y="757" width="0.0133%" height="15" fill="rgb(233,154,1)" fg:x="65321" fg:w="20"/><text x="43.7226%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="43.4859%" y="805" width="0.0133%" height="15" fill="rgb(225,15,46)" fg:x="65341" fg:w="20"/><text x="43.7359%" y="815.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (18 samples, 0.01%)</title><rect x="43.4872%" y="789" width="0.0120%" height="15" fill="rgb(211,135,41)" fg:x="65343" fg:w="18"/><text x="43.7372%" y="799.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="43.4879%" y="773" width="0.0113%" height="15" fill="rgb(208,54,0)" fg:x="65344" fg:w="17"/><text x="43.7379%" y="783.50"></text></g><g><title>frame::oops_interpreted_do (22 samples, 0.01%)</title><rect x="43.4859%" y="821" width="0.0146%" height="15" fill="rgb(244,136,14)" fg:x="65341" fg:w="22"/><text x="43.7359%" y="831.50"></text></g><g><title>G1RootProcessor::process_java_roots (74 samples, 0.05%)</title><rect x="43.4519%" y="885" width="0.0492%" height="15" fill="rgb(241,56,14)" fg:x="65290" fg:w="74"/><text x="43.7019%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (74 samples, 0.05%)</title><rect x="43.4519%" y="869" width="0.0492%" height="15" fill="rgb(205,80,24)" fg:x="65290" fg:w="74"/><text x="43.7019%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (74 samples, 0.05%)</title><rect x="43.4519%" y="853" width="0.0492%" height="15" fill="rgb(220,57,4)" fg:x="65290" fg:w="74"/><text x="43.7019%" y="863.50"></text></g><g><title>JavaThread::oops_do (74 samples, 0.05%)</title><rect x="43.4519%" y="837" width="0.0492%" height="15" fill="rgb(226,193,50)" fg:x="65290" fg:w="74"/><text x="43.7019%" y="847.50"></text></g><g><title>G1ParTask::work (218 samples, 0.15%)</title><rect x="43.3654%" y="917" width="0.1451%" height="15" fill="rgb(231,168,22)" fg:x="65160" fg:w="218"/><text x="43.6154%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (89 samples, 0.06%)</title><rect x="43.4513%" y="901" width="0.0592%" height="15" fill="rgb(254,215,14)" fg:x="65289" fg:w="89"/><text x="43.7013%" y="911.50"></text></g><g><title>G1STWRefProcTaskProxy::work (16 samples, 0.01%)</title><rect x="43.5191%" y="917" width="0.0106%" height="15" fill="rgb(211,115,16)" fg:x="65391" fg:w="16"/><text x="43.7691%" y="927.50"></text></g><g><title>ParallelSPCleanupTask::work (22 samples, 0.01%)</title><rect x="43.5305%" y="917" width="0.0146%" height="15" fill="rgb(236,210,16)" fg:x="65408" fg:w="22"/><text x="43.7805%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (20 samples, 0.01%)</title><rect x="43.5318%" y="901" width="0.0133%" height="15" fill="rgb(221,94,12)" fg:x="65410" fg:w="20"/><text x="43.7818%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.02%)</title><rect x="43.5484%" y="693" width="0.0246%" height="15" fill="rgb(235,218,49)" fg:x="65435" fg:w="37"/><text x="43.7984%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="43.5484%" y="677" width="0.0246%" height="15" fill="rgb(217,114,14)" fg:x="65435" fg:w="37"/><text x="43.7984%" y="687.50"></text></g><g><title>native_write_msr (37 samples, 0.02%)</title><rect x="43.5484%" y="661" width="0.0246%" height="15" fill="rgb(216,145,22)" fg:x="65435" fg:w="37"/><text x="43.7984%" y="671.50"></text></g><g><title>finish_task_switch (39 samples, 0.03%)</title><rect x="43.5478%" y="709" width="0.0260%" height="15" fill="rgb(217,112,39)" fg:x="65434" fg:w="39"/><text x="43.7978%" y="719.50"></text></g><g><title>do_syscall_64 (50 samples, 0.03%)</title><rect x="43.5458%" y="821" width="0.0333%" height="15" fill="rgb(225,85,32)" fg:x="65431" fg:w="50"/><text x="43.7958%" y="831.50"></text></g><g><title>__x64_sys_futex (49 samples, 0.03%)</title><rect x="43.5464%" y="805" width="0.0326%" height="15" fill="rgb(245,209,47)" fg:x="65432" fg:w="49"/><text x="43.7964%" y="815.50"></text></g><g><title>do_futex (49 samples, 0.03%)</title><rect x="43.5464%" y="789" width="0.0326%" height="15" fill="rgb(218,220,15)" fg:x="65432" fg:w="49"/><text x="43.7964%" y="799.50"></text></g><g><title>futex_wait (48 samples, 0.03%)</title><rect x="43.5471%" y="773" width="0.0319%" height="15" fill="rgb(222,202,31)" fg:x="65433" fg:w="48"/><text x="43.7971%" y="783.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.03%)</title><rect x="43.5471%" y="757" width="0.0319%" height="15" fill="rgb(243,203,4)" fg:x="65433" fg:w="48"/><text x="43.7971%" y="767.50"></text></g><g><title>schedule (48 samples, 0.03%)</title><rect x="43.5471%" y="741" width="0.0319%" height="15" fill="rgb(237,92,17)" fg:x="65433" fg:w="48"/><text x="43.7971%" y="751.50"></text></g><g><title>__schedule (48 samples, 0.03%)</title><rect x="43.5471%" y="725" width="0.0319%" height="15" fill="rgb(231,119,7)" fg:x="65433" fg:w="48"/><text x="43.7971%" y="735.50"></text></g><g><title>__GI___clone (327 samples, 0.22%)</title><rect x="43.3634%" y="997" width="0.2176%" height="15" fill="rgb(237,82,41)" fg:x="65157" fg:w="327"/><text x="43.6134%" y="1007.50"></text></g><g><title>start_thread (327 samples, 0.22%)</title><rect x="43.3634%" y="981" width="0.2176%" height="15" fill="rgb(226,81,48)" fg:x="65157" fg:w="327"/><text x="43.6134%" y="991.50"></text></g><g><title>thread_native_entry (327 samples, 0.22%)</title><rect x="43.3634%" y="965" width="0.2176%" height="15" fill="rgb(234,70,51)" fg:x="65157" fg:w="327"/><text x="43.6134%" y="975.50"></text></g><g><title>Thread::call_run (327 samples, 0.22%)</title><rect x="43.3634%" y="949" width="0.2176%" height="15" fill="rgb(251,86,4)" fg:x="65157" fg:w="327"/><text x="43.6134%" y="959.50"></text></g><g><title>GangWorker::loop (327 samples, 0.22%)</title><rect x="43.3634%" y="933" width="0.2176%" height="15" fill="rgb(244,144,28)" fg:x="65157" fg:w="327"/><text x="43.6134%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (53 samples, 0.04%)</title><rect x="43.5458%" y="917" width="0.0353%" height="15" fill="rgb(232,161,39)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="927.50"></text></g><g><title>PosixSemaphore::wait (53 samples, 0.04%)</title><rect x="43.5458%" y="901" width="0.0353%" height="15" fill="rgb(247,34,51)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="911.50"></text></g><g><title>__new_sem_wait_slow (53 samples, 0.04%)</title><rect x="43.5458%" y="885" width="0.0353%" height="15" fill="rgb(225,132,2)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="895.50"></text></g><g><title>do_futex_wait (53 samples, 0.04%)</title><rect x="43.5458%" y="869" width="0.0353%" height="15" fill="rgb(209,159,44)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (53 samples, 0.04%)</title><rect x="43.5458%" y="853" width="0.0353%" height="15" fill="rgb(251,214,1)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.04%)</title><rect x="43.5458%" y="837" width="0.0353%" height="15" fill="rgb(247,84,47)" fg:x="65431" fg:w="53"/><text x="43.7958%" y="847.50"></text></g><g><title>GC_Thread#4 (332 samples, 0.22%)</title><rect x="43.3608%" y="1013" width="0.2210%" height="15" fill="rgb(240,111,43)" fg:x="65153" fg:w="332"/><text x="43.6108%" y="1023.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (40 samples, 0.03%)</title><rect x="43.6117%" y="869" width="0.0266%" height="15" fill="rgb(215,214,35)" fg:x="65530" fg:w="40"/><text x="43.8617%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue (60 samples, 0.04%)</title><rect x="43.5990%" y="885" width="0.0399%" height="15" fill="rgb(248,207,23)" fg:x="65511" fg:w="60"/><text x="43.8490%" y="895.50"></text></g><g><title>SpinPause (38 samples, 0.03%)</title><rect x="43.6423%" y="885" width="0.0253%" height="15" fill="rgb(214,186,4)" fg:x="65576" fg:w="38"/><text x="43.8923%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (114 samples, 0.08%)</title><rect x="43.5924%" y="901" width="0.0759%" height="15" fill="rgb(220,133,22)" fg:x="65501" fg:w="114"/><text x="43.8424%" y="911.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (29 samples, 0.02%)</title><rect x="43.6682%" y="821" width="0.0193%" height="15" fill="rgb(239,134,19)" fg:x="65615" fg:w="29"/><text x="43.9182%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (26 samples, 0.02%)</title><rect x="43.6702%" y="805" width="0.0173%" height="15" fill="rgb(250,140,9)" fg:x="65618" fg:w="26"/><text x="43.9202%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (25 samples, 0.02%)</title><rect x="43.6709%" y="789" width="0.0166%" height="15" fill="rgb(225,59,14)" fg:x="65619" fg:w="25"/><text x="43.9209%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (31 samples, 0.02%)</title><rect x="43.6682%" y="901" width="0.0206%" height="15" fill="rgb(214,152,51)" fg:x="65615" fg:w="31"/><text x="43.9182%" y="911.50"></text></g><g><title>G1RemSet::update_rem_set (31 samples, 0.02%)</title><rect x="43.6682%" y="885" width="0.0206%" height="15" fill="rgb(251,227,43)" fg:x="65615" fg:w="31"/><text x="43.9182%" y="895.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (31 samples, 0.02%)</title><rect x="43.6682%" y="869" width="0.0206%" height="15" fill="rgb(241,96,17)" fg:x="65615" fg:w="31"/><text x="43.9182%" y="879.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (31 samples, 0.02%)</title><rect x="43.6682%" y="853" width="0.0206%" height="15" fill="rgb(234,198,43)" fg:x="65615" fg:w="31"/><text x="43.9182%" y="863.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (31 samples, 0.02%)</title><rect x="43.6682%" y="837" width="0.0206%" height="15" fill="rgb(220,108,29)" fg:x="65615" fg:w="31"/><text x="43.9182%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (22 samples, 0.01%)</title><rect x="43.6889%" y="821" width="0.0146%" height="15" fill="rgb(226,163,33)" fg:x="65646" fg:w="22"/><text x="43.9389%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (19 samples, 0.01%)</title><rect x="43.6909%" y="805" width="0.0126%" height="15" fill="rgb(205,194,45)" fg:x="65649" fg:w="19"/><text x="43.9409%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="43.6922%" y="789" width="0.0113%" height="15" fill="rgb(206,143,44)" fg:x="65651" fg:w="17"/><text x="43.9422%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (23 samples, 0.02%)</title><rect x="43.6889%" y="837" width="0.0153%" height="15" fill="rgb(236,136,36)" fg:x="65646" fg:w="23"/><text x="43.9389%" y="847.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (24 samples, 0.02%)</title><rect x="43.6889%" y="853" width="0.0160%" height="15" fill="rgb(249,172,42)" fg:x="65646" fg:w="24"/><text x="43.9389%" y="863.50"></text></g><g><title>G1RemSet::scan_rem_set (36 samples, 0.02%)</title><rect x="43.6889%" y="901" width="0.0240%" height="15" fill="rgb(216,139,23)" fg:x="65646" fg:w="36"/><text x="43.9389%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (36 samples, 0.02%)</title><rect x="43.6889%" y="885" width="0.0240%" height="15" fill="rgb(207,166,20)" fg:x="65646" fg:w="36"/><text x="43.9389%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (36 samples, 0.02%)</title><rect x="43.6889%" y="869" width="0.0240%" height="15" fill="rgb(210,209,22)" fg:x="65646" fg:w="36"/><text x="43.9389%" y="879.50"></text></g><g><title>JNIHandleBlock::oops_do (22 samples, 0.01%)</title><rect x="43.7241%" y="821" width="0.0146%" height="15" fill="rgb(232,118,20)" fg:x="65699" fg:w="22"/><text x="43.9741%" y="831.50"></text></g><g><title>G1RootProcessor::process_java_roots (57 samples, 0.04%)</title><rect x="43.7128%" y="885" width="0.0379%" height="15" fill="rgb(238,113,42)" fg:x="65682" fg:w="57"/><text x="43.9628%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (57 samples, 0.04%)</title><rect x="43.7128%" y="869" width="0.0379%" height="15" fill="rgb(231,42,5)" fg:x="65682" fg:w="57"/><text x="43.9628%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (57 samples, 0.04%)</title><rect x="43.7128%" y="853" width="0.0379%" height="15" fill="rgb(243,166,24)" fg:x="65682" fg:w="57"/><text x="43.9628%" y="863.50"></text></g><g><title>JavaThread::oops_do (57 samples, 0.04%)</title><rect x="43.7128%" y="837" width="0.0379%" height="15" fill="rgb(237,226,12)" fg:x="65682" fg:w="57"/><text x="43.9628%" y="847.50"></text></g><g><title>frame::oops_interpreted_do (17 samples, 0.01%)</title><rect x="43.7394%" y="821" width="0.0113%" height="15" fill="rgb(229,133,24)" fg:x="65722" fg:w="17"/><text x="43.9894%" y="831.50"></text></g><g><title>JNIHandles::oops_do (17 samples, 0.01%)</title><rect x="43.7507%" y="869" width="0.0113%" height="15" fill="rgb(238,33,43)" fg:x="65739" fg:w="17"/><text x="44.0007%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (17 samples, 0.01%)</title><rect x="43.7507%" y="853" width="0.0113%" height="15" fill="rgb(227,59,38)" fg:x="65739" fg:w="17"/><text x="44.0007%" y="863.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (16 samples, 0.01%)</title><rect x="43.7514%" y="837" width="0.0106%" height="15" fill="rgb(230,97,0)" fg:x="65740" fg:w="16"/><text x="44.0014%" y="847.50"></text></g><g><title>G1RootProcessor::process_vm_roots (29 samples, 0.02%)</title><rect x="43.7507%" y="885" width="0.0193%" height="15" fill="rgb(250,173,50)" fg:x="65739" fg:w="29"/><text x="44.0007%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (99 samples, 0.07%)</title><rect x="43.7128%" y="901" width="0.0659%" height="15" fill="rgb(240,15,50)" fg:x="65682" fg:w="99"/><text x="43.9628%" y="911.50"></text></g><g><title>G1ParTask::work (281 samples, 0.19%)</title><rect x="43.5924%" y="917" width="0.1870%" height="15" fill="rgb(221,93,22)" fg:x="65501" fg:w="281"/><text x="43.8424%" y="927.50"></text></g><g><title>G1STWRefProcTaskProxy::work (20 samples, 0.01%)</title><rect x="43.7893%" y="917" width="0.0133%" height="15" fill="rgb(245,180,53)" fg:x="65797" fg:w="20"/><text x="44.0393%" y="927.50"></text></g><g><title>RefProcPhase3Task::work (16 samples, 0.01%)</title><rect x="43.7920%" y="901" width="0.0106%" height="15" fill="rgb(231,88,51)" fg:x="65801" fg:w="16"/><text x="44.0420%" y="911.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (16 samples, 0.01%)</title><rect x="43.7920%" y="885" width="0.0106%" height="15" fill="rgb(240,58,21)" fg:x="65801" fg:w="16"/><text x="44.0420%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (16 samples, 0.01%)</title><rect x="43.7920%" y="869" width="0.0106%" height="15" fill="rgb(237,21,10)" fg:x="65801" fg:w="16"/><text x="44.0420%" y="879.50"></text></g><g><title>SpinPause (16 samples, 0.01%)</title><rect x="43.7920%" y="853" width="0.0106%" height="15" fill="rgb(218,43,11)" fg:x="65801" fg:w="16"/><text x="44.0420%" y="863.50"></text></g><g><title>ParallelSPCleanupTask::work (22 samples, 0.01%)</title><rect x="43.8040%" y="917" width="0.0146%" height="15" fill="rgb(218,221,29)" fg:x="65819" fg:w="22"/><text x="44.0540%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (17 samples, 0.01%)</title><rect x="43.8073%" y="901" width="0.0113%" height="15" fill="rgb(214,118,42)" fg:x="65824" fg:w="17"/><text x="44.0573%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.03%)</title><rect x="43.8213%" y="693" width="0.0333%" height="15" fill="rgb(251,200,26)" fg:x="65845" fg:w="50"/><text x="44.0713%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.03%)</title><rect x="43.8226%" y="677" width="0.0319%" height="15" fill="rgb(237,101,39)" fg:x="65847" fg:w="48"/><text x="44.0726%" y="687.50"></text></g><g><title>native_write_msr (48 samples, 0.03%)</title><rect x="43.8226%" y="661" width="0.0319%" height="15" fill="rgb(251,117,11)" fg:x="65847" fg:w="48"/><text x="44.0726%" y="671.50"></text></g><g><title>finish_task_switch (53 samples, 0.04%)</title><rect x="43.8213%" y="709" width="0.0353%" height="15" fill="rgb(216,223,23)" fg:x="65845" fg:w="53"/><text x="44.0713%" y="719.50"></text></g><g><title>do_syscall_64 (60 samples, 0.04%)</title><rect x="43.8200%" y="821" width="0.0399%" height="15" fill="rgb(251,54,12)" fg:x="65843" fg:w="60"/><text x="44.0700%" y="831.50"></text></g><g><title>__x64_sys_futex (60 samples, 0.04%)</title><rect x="43.8200%" y="805" width="0.0399%" height="15" fill="rgb(254,176,54)" fg:x="65843" fg:w="60"/><text x="44.0700%" y="815.50"></text></g><g><title>do_futex (60 samples, 0.04%)</title><rect x="43.8200%" y="789" width="0.0399%" height="15" fill="rgb(210,32,8)" fg:x="65843" fg:w="60"/><text x="44.0700%" y="799.50"></text></g><g><title>futex_wait (59 samples, 0.04%)</title><rect x="43.8206%" y="773" width="0.0393%" height="15" fill="rgb(235,52,38)" fg:x="65844" fg:w="59"/><text x="44.0706%" y="783.50"></text></g><g><title>futex_wait_queue_me (59 samples, 0.04%)</title><rect x="43.8206%" y="757" width="0.0393%" height="15" fill="rgb(231,4,44)" fg:x="65844" fg:w="59"/><text x="44.0706%" y="767.50"></text></g><g><title>schedule (59 samples, 0.04%)</title><rect x="43.8206%" y="741" width="0.0393%" height="15" fill="rgb(249,2,32)" fg:x="65844" fg:w="59"/><text x="44.0706%" y="751.50"></text></g><g><title>__schedule (59 samples, 0.04%)</title><rect x="43.8206%" y="725" width="0.0393%" height="15" fill="rgb(224,65,26)" fg:x="65844" fg:w="59"/><text x="44.0706%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.04%)</title><rect x="43.8200%" y="837" width="0.0413%" height="15" fill="rgb(250,73,40)" fg:x="65843" fg:w="62"/><text x="44.0700%" y="847.50"></text></g><g><title>__GI___clone (414 samples, 0.28%)</title><rect x="43.5864%" y="997" width="0.2755%" height="15" fill="rgb(253,177,16)" fg:x="65492" fg:w="414"/><text x="43.8364%" y="1007.50"></text></g><g><title>start_thread (414 samples, 0.28%)</title><rect x="43.5864%" y="981" width="0.2755%" height="15" fill="rgb(217,32,34)" fg:x="65492" fg:w="414"/><text x="43.8364%" y="991.50"></text></g><g><title>thread_native_entry (414 samples, 0.28%)</title><rect x="43.5864%" y="965" width="0.2755%" height="15" fill="rgb(212,7,10)" fg:x="65492" fg:w="414"/><text x="43.8364%" y="975.50"></text></g><g><title>Thread::call_run (414 samples, 0.28%)</title><rect x="43.5864%" y="949" width="0.2755%" height="15" fill="rgb(245,89,8)" fg:x="65492" fg:w="414"/><text x="43.8364%" y="959.50"></text></g><g><title>GangWorker::loop (414 samples, 0.28%)</title><rect x="43.5864%" y="933" width="0.2755%" height="15" fill="rgb(237,16,53)" fg:x="65492" fg:w="414"/><text x="43.8364%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (64 samples, 0.04%)</title><rect x="43.8193%" y="917" width="0.0426%" height="15" fill="rgb(250,204,30)" fg:x="65842" fg:w="64"/><text x="44.0693%" y="927.50"></text></g><g><title>PosixSemaphore::wait (64 samples, 0.04%)</title><rect x="43.8193%" y="901" width="0.0426%" height="15" fill="rgb(208,77,27)" fg:x="65842" fg:w="64"/><text x="44.0693%" y="911.50"></text></g><g><title>__new_sem_wait_slow (63 samples, 0.04%)</title><rect x="43.8200%" y="885" width="0.0419%" height="15" fill="rgb(250,204,28)" fg:x="65843" fg:w="63"/><text x="44.0700%" y="895.50"></text></g><g><title>do_futex_wait (63 samples, 0.04%)</title><rect x="43.8200%" y="869" width="0.0419%" height="15" fill="rgb(244,63,21)" fg:x="65843" fg:w="63"/><text x="44.0700%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (63 samples, 0.04%)</title><rect x="43.8200%" y="853" width="0.0419%" height="15" fill="rgb(236,85,44)" fg:x="65843" fg:w="63"/><text x="44.0700%" y="863.50"></text></g><g><title>GC_Thread#5 (425 samples, 0.28%)</title><rect x="43.5817%" y="1013" width="0.2828%" height="15" fill="rgb(215,98,4)" fg:x="65485" fg:w="425"/><text x="43.8317%" y="1023.50"></text></g><g><title>G1ParScanThreadState::trim_queue (62 samples, 0.04%)</title><rect x="43.8839%" y="885" width="0.0413%" height="15" fill="rgb(235,38,11)" fg:x="65939" fg:w="62"/><text x="44.1339%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (39 samples, 0.03%)</title><rect x="43.8992%" y="869" width="0.0260%" height="15" fill="rgb(254,186,25)" fg:x="65962" fg:w="39"/><text x="44.1492%" y="879.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (87 samples, 0.06%)</title><rect x="43.8799%" y="901" width="0.0579%" height="15" fill="rgb(225,55,31)" fg:x="65933" fg:w="87"/><text x="44.1299%" y="911.50"></text></g><g><title>SpinPause (17 samples, 0.01%)</title><rect x="43.9264%" y="885" width="0.0113%" height="15" fill="rgb(211,15,21)" fg:x="66003" fg:w="17"/><text x="44.1764%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (20 samples, 0.01%)</title><rect x="43.9391%" y="853" width="0.0133%" height="15" fill="rgb(215,187,41)" fg:x="66022" fg:w="20"/><text x="44.1891%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (20 samples, 0.01%)</title><rect x="43.9391%" y="837" width="0.0133%" height="15" fill="rgb(248,69,32)" fg:x="66022" fg:w="20"/><text x="44.1891%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="43.9391%" y="821" width="0.0133%" height="15" fill="rgb(252,102,52)" fg:x="66022" fg:w="20"/><text x="44.1891%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (16 samples, 0.01%)</title><rect x="43.9418%" y="805" width="0.0106%" height="15" fill="rgb(253,140,32)" fg:x="66026" fg:w="16"/><text x="44.1918%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (33 samples, 0.02%)</title><rect x="43.9391%" y="901" width="0.0220%" height="15" fill="rgb(216,56,42)" fg:x="66022" fg:w="33"/><text x="44.1891%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (33 samples, 0.02%)</title><rect x="43.9391%" y="885" width="0.0220%" height="15" fill="rgb(216,184,14)" fg:x="66022" fg:w="33"/><text x="44.1891%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (33 samples, 0.02%)</title><rect x="43.9391%" y="869" width="0.0220%" height="15" fill="rgb(237,187,27)" fg:x="66022" fg:w="33"/><text x="44.1891%" y="879.50"></text></g><g><title>G1ParCopyClosure&lt;(G1Barrier)1, (G1Mark)0&gt;::do_oop (16 samples, 0.01%)</title><rect x="43.9631%" y="821" width="0.0106%" height="15" fill="rgb(219,65,3)" fg:x="66058" fg:w="16"/><text x="44.2131%" y="831.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (67 samples, 0.04%)</title><rect x="43.9617%" y="869" width="0.0446%" height="15" fill="rgb(245,83,25)" fg:x="66056" fg:w="67"/><text x="44.2117%" y="879.50"></text></g><g><title>G1CLDScanClosure::do_cld (67 samples, 0.04%)</title><rect x="43.9617%" y="853" width="0.0446%" height="15" fill="rgb(214,205,45)" fg:x="66056" fg:w="67"/><text x="44.2117%" y="863.50"></text></g><g><title>ClassLoaderData::oops_do (67 samples, 0.04%)</title><rect x="43.9617%" y="837" width="0.0446%" height="15" fill="rgb(241,20,18)" fg:x="66056" fg:w="67"/><text x="44.2117%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (49 samples, 0.03%)</title><rect x="43.9737%" y="821" width="0.0326%" height="15" fill="rgb(232,163,23)" fg:x="66074" fg:w="49"/><text x="44.2237%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (40 samples, 0.03%)</title><rect x="43.9797%" y="805" width="0.0266%" height="15" fill="rgb(214,5,46)" fg:x="66083" fg:w="40"/><text x="44.2297%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="43.9870%" y="789" width="0.0193%" height="15" fill="rgb(229,78,17)" fg:x="66094" fg:w="29"/><text x="44.2370%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (82 samples, 0.05%)</title><rect x="43.9617%" y="885" width="0.0546%" height="15" fill="rgb(248,89,10)" fg:x="66056" fg:w="82"/><text x="44.2117%" y="895.50"></text></g><g><title>G1ParTask::work (227 samples, 0.15%)</title><rect x="43.8799%" y="917" width="0.1511%" height="15" fill="rgb(248,54,15)" fg:x="65933" fg:w="227"/><text x="44.1299%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (105 samples, 0.07%)</title><rect x="43.9611%" y="901" width="0.0699%" height="15" fill="rgb(223,116,6)" fg:x="66055" fg:w="105"/><text x="44.2111%" y="911.50"></text></g><g><title>G1STWRefProcTaskProxy::work (16 samples, 0.01%)</title><rect x="44.0383%" y="917" width="0.0106%" height="15" fill="rgb(205,125,38)" fg:x="66171" fg:w="16"/><text x="44.2883%" y="927.50"></text></g><g><title>ParallelSPCleanupTask::work (21 samples, 0.01%)</title><rect x="44.0489%" y="917" width="0.0140%" height="15" fill="rgb(251,78,38)" fg:x="66187" fg:w="21"/><text x="44.2989%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (18 samples, 0.01%)</title><rect x="44.0509%" y="901" width="0.0120%" height="15" fill="rgb(253,78,28)" fg:x="66190" fg:w="18"/><text x="44.3009%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.03%)</title><rect x="44.0682%" y="693" width="0.0286%" height="15" fill="rgb(209,120,3)" fg:x="66216" fg:w="43"/><text x="44.3182%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.03%)</title><rect x="44.0682%" y="677" width="0.0286%" height="15" fill="rgb(238,229,9)" fg:x="66216" fg:w="43"/><text x="44.3182%" y="687.50"></text></g><g><title>native_write_msr (43 samples, 0.03%)</title><rect x="44.0682%" y="661" width="0.0286%" height="15" fill="rgb(253,159,18)" fg:x="66216" fg:w="43"/><text x="44.3182%" y="671.50"></text></g><g><title>finish_task_switch (46 samples, 0.03%)</title><rect x="44.0675%" y="709" width="0.0306%" height="15" fill="rgb(244,42,34)" fg:x="66215" fg:w="46"/><text x="44.3175%" y="719.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.04%)</title><rect x="44.0649%" y="757" width="0.0359%" height="15" fill="rgb(224,8,7)" fg:x="66211" fg:w="54"/><text x="44.3149%" y="767.50"></text></g><g><title>schedule (53 samples, 0.04%)</title><rect x="44.0655%" y="741" width="0.0353%" height="15" fill="rgb(210,201,45)" fg:x="66212" fg:w="53"/><text x="44.3155%" y="751.50"></text></g><g><title>__schedule (53 samples, 0.04%)</title><rect x="44.0655%" y="725" width="0.0353%" height="15" fill="rgb(252,185,21)" fg:x="66212" fg:w="53"/><text x="44.3155%" y="735.50"></text></g><g><title>do_syscall_64 (58 samples, 0.04%)</title><rect x="44.0642%" y="821" width="0.0386%" height="15" fill="rgb(223,131,1)" fg:x="66210" fg:w="58"/><text x="44.3142%" y="831.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.04%)</title><rect x="44.0642%" y="805" width="0.0386%" height="15" fill="rgb(245,141,16)" fg:x="66210" fg:w="58"/><text x="44.3142%" y="815.50"></text></g><g><title>do_futex (58 samples, 0.04%)</title><rect x="44.0642%" y="789" width="0.0386%" height="15" fill="rgb(229,55,45)" fg:x="66210" fg:w="58"/><text x="44.3142%" y="799.50"></text></g><g><title>futex_wait (57 samples, 0.04%)</title><rect x="44.0649%" y="773" width="0.0379%" height="15" fill="rgb(208,92,15)" fg:x="66211" fg:w="57"/><text x="44.3149%" y="783.50"></text></g><g><title>__GI___clone (353 samples, 0.23%)</title><rect x="43.8705%" y="997" width="0.2349%" height="15" fill="rgb(234,185,47)" fg:x="65919" fg:w="353"/><text x="44.1205%" y="1007.50"></text></g><g><title>start_thread (353 samples, 0.23%)</title><rect x="43.8705%" y="981" width="0.2349%" height="15" fill="rgb(253,104,50)" fg:x="65919" fg:w="353"/><text x="44.1205%" y="991.50"></text></g><g><title>thread_native_entry (353 samples, 0.23%)</title><rect x="43.8705%" y="965" width="0.2349%" height="15" fill="rgb(205,70,7)" fg:x="65919" fg:w="353"/><text x="44.1205%" y="975.50"></text></g><g><title>Thread::call_run (353 samples, 0.23%)</title><rect x="43.8705%" y="949" width="0.2349%" height="15" fill="rgb(240,178,43)" fg:x="65919" fg:w="353"/><text x="44.1205%" y="959.50"></text></g><g><title>GangWorker::loop (353 samples, 0.23%)</title><rect x="43.8705%" y="933" width="0.2349%" height="15" fill="rgb(214,112,2)" fg:x="65919" fg:w="353"/><text x="44.1205%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (62 samples, 0.04%)</title><rect x="44.0642%" y="917" width="0.0413%" height="15" fill="rgb(206,46,17)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="927.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.04%)</title><rect x="44.0642%" y="901" width="0.0413%" height="15" fill="rgb(225,220,16)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="911.50"></text></g><g><title>__new_sem_wait_slow (62 samples, 0.04%)</title><rect x="44.0642%" y="885" width="0.0413%" height="15" fill="rgb(238,65,40)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="895.50"></text></g><g><title>do_futex_wait (62 samples, 0.04%)</title><rect x="44.0642%" y="869" width="0.0413%" height="15" fill="rgb(230,151,21)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (62 samples, 0.04%)</title><rect x="44.0642%" y="853" width="0.0413%" height="15" fill="rgb(218,58,49)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.04%)</title><rect x="44.0642%" y="837" width="0.0413%" height="15" fill="rgb(219,179,14)" fg:x="66210" fg:w="62"/><text x="44.3142%" y="847.50"></text></g><g><title>GC_Thread#6 (365 samples, 0.24%)</title><rect x="43.8646%" y="1013" width="0.2429%" height="15" fill="rgb(223,72,1)" fg:x="65910" fg:w="365"/><text x="44.1146%" y="1023.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (58 samples, 0.04%)</title><rect x="44.1387%" y="869" width="0.0386%" height="15" fill="rgb(238,126,10)" fg:x="66322" fg:w="58"/><text x="44.3887%" y="879.50"></text></g><g><title>asm_exc_page_fault (22 samples, 0.01%)</title><rect x="44.1627%" y="853" width="0.0146%" height="15" fill="rgb(224,206,38)" fg:x="66358" fg:w="22"/><text x="44.4127%" y="863.50"></text></g><g><title>exc_page_fault (22 samples, 0.01%)</title><rect x="44.1627%" y="837" width="0.0146%" height="15" fill="rgb(212,201,54)" fg:x="66358" fg:w="22"/><text x="44.4127%" y="847.50"></text></g><g><title>do_user_addr_fault (22 samples, 0.01%)</title><rect x="44.1627%" y="821" width="0.0146%" height="15" fill="rgb(218,154,48)" fg:x="66358" fg:w="22"/><text x="44.4127%" y="831.50"></text></g><g><title>handle_mm_fault (22 samples, 0.01%)</title><rect x="44.1627%" y="805" width="0.0146%" height="15" fill="rgb(232,93,24)" fg:x="66358" fg:w="22"/><text x="44.4127%" y="815.50"></text></g><g><title>do_huge_pmd_anonymous_page (22 samples, 0.01%)</title><rect x="44.1627%" y="789" width="0.0146%" height="15" fill="rgb(245,30,21)" fg:x="66358" fg:w="22"/><text x="44.4127%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue (83 samples, 0.06%)</title><rect x="44.1248%" y="885" width="0.0552%" height="15" fill="rgb(242,148,29)" fg:x="66301" fg:w="83"/><text x="44.3748%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (133 samples, 0.09%)</title><rect x="44.1208%" y="901" width="0.0885%" height="15" fill="rgb(244,153,54)" fg:x="66295" fg:w="133"/><text x="44.3708%" y="911.50"></text></g><g><title>SpinPause (37 samples, 0.02%)</title><rect x="44.1847%" y="885" width="0.0246%" height="15" fill="rgb(252,87,22)" fg:x="66391" fg:w="37"/><text x="44.4347%" y="895.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (22 samples, 0.01%)</title><rect x="44.2093%" y="901" width="0.0146%" height="15" fill="rgb(210,51,29)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="911.50"></text></g><g><title>G1RemSet::update_rem_set (22 samples, 0.01%)</title><rect x="44.2093%" y="885" width="0.0146%" height="15" fill="rgb(242,136,47)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="895.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (22 samples, 0.01%)</title><rect x="44.2093%" y="869" width="0.0146%" height="15" fill="rgb(238,68,4)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="879.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (22 samples, 0.01%)</title><rect x="44.2093%" y="853" width="0.0146%" height="15" fill="rgb(242,161,30)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="863.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (22 samples, 0.01%)</title><rect x="44.2093%" y="837" width="0.0146%" height="15" fill="rgb(218,58,44)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (22 samples, 0.01%)</title><rect x="44.2093%" y="821" width="0.0146%" height="15" fill="rgb(252,125,32)" fg:x="66428" fg:w="22"/><text x="44.4593%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (16 samples, 0.01%)</title><rect x="44.2133%" y="805" width="0.0106%" height="15" fill="rgb(219,178,0)" fg:x="66434" fg:w="16"/><text x="44.4633%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (33 samples, 0.02%)</title><rect x="44.2239%" y="901" width="0.0220%" height="15" fill="rgb(213,152,7)" fg:x="66450" fg:w="33"/><text x="44.4739%" y="911.50"></text></g><g><title>G1CollectionSet::iterate_from (33 samples, 0.02%)</title><rect x="44.2239%" y="885" width="0.0220%" height="15" fill="rgb(249,109,34)" fg:x="66450" fg:w="33"/><text x="44.4739%" y="895.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (33 samples, 0.02%)</title><rect x="44.2239%" y="869" width="0.0220%" height="15" fill="rgb(232,96,21)" fg:x="66450" fg:w="33"/><text x="44.4739%" y="879.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (18 samples, 0.01%)</title><rect x="44.2339%" y="853" width="0.0120%" height="15" fill="rgb(228,27,39)" fg:x="66465" fg:w="18"/><text x="44.4839%" y="863.50"></text></g><g><title>G1CodeRootSet::nmethods_do (18 samples, 0.01%)</title><rect x="44.2339%" y="837" width="0.0120%" height="15" fill="rgb(211,182,52)" fg:x="66465" fg:w="18"/><text x="44.4839%" y="847.50"></text></g><g><title>HandleArea::oops_do (22 samples, 0.01%)</title><rect x="44.2466%" y="821" width="0.0146%" height="15" fill="rgb(234,178,38)" fg:x="66484" fg:w="22"/><text x="44.4966%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (16 samples, 0.01%)</title><rect x="44.2632%" y="789" width="0.0106%" height="15" fill="rgb(221,111,3)" fg:x="66509" fg:w="16"/><text x="44.5132%" y="799.50"></text></g><g><title>JNIHandleBlock::oops_do (20 samples, 0.01%)</title><rect x="44.2612%" y="821" width="0.0133%" height="15" fill="rgb(228,175,21)" fg:x="66506" fg:w="20"/><text x="44.5112%" y="831.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (18 samples, 0.01%)</title><rect x="44.2625%" y="805" width="0.0120%" height="15" fill="rgb(228,174,43)" fg:x="66508" fg:w="18"/><text x="44.5125%" y="815.50"></text></g><g><title>G1RootProcessor::process_java_roots (56 samples, 0.04%)</title><rect x="44.2466%" y="885" width="0.0373%" height="15" fill="rgb(211,191,0)" fg:x="66484" fg:w="56"/><text x="44.4966%" y="895.50"></text></g><g><title>Threads::possibly_parallel_oops_do (56 samples, 0.04%)</title><rect x="44.2466%" y="869" width="0.0373%" height="15" fill="rgb(253,117,3)" fg:x="66484" fg:w="56"/><text x="44.4966%" y="879.50"></text></g><g><title>Threads::possibly_parallel_threads_do (56 samples, 0.04%)</title><rect x="44.2466%" y="853" width="0.0373%" height="15" fill="rgb(241,127,19)" fg:x="66484" fg:w="56"/><text x="44.4966%" y="863.50"></text></g><g><title>JavaThread::oops_do (56 samples, 0.04%)</title><rect x="44.2466%" y="837" width="0.0373%" height="15" fill="rgb(218,103,12)" fg:x="66484" fg:w="56"/><text x="44.4966%" y="847.50"></text></g><g><title>G1ParTask::work (268 samples, 0.18%)</title><rect x="44.1208%" y="917" width="0.1784%" height="15" fill="rgb(236,214,43)" fg:x="66295" fg:w="268"/><text x="44.3708%" y="927.50"></text></g><g><title>G1RootProcessor::evacuate_roots (80 samples, 0.05%)</title><rect x="44.2459%" y="901" width="0.0532%" height="15" fill="rgb(244,144,19)" fg:x="66483" fg:w="80"/><text x="44.4959%" y="911.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (23 samples, 0.02%)</title><rect x="44.2838%" y="885" width="0.0153%" height="15" fill="rgb(246,188,10)" fg:x="66540" fg:w="23"/><text x="44.5338%" y="895.50"></text></g><g><title>G1STWRefProcTaskProxy::work (25 samples, 0.02%)</title><rect x="44.3005%" y="917" width="0.0166%" height="15" fill="rgb(212,193,33)" fg:x="66565" fg:w="25"/><text x="44.5505%" y="927.50"></text></g><g><title>RefProcPhase3Task::work (17 samples, 0.01%)</title><rect x="44.3058%" y="901" width="0.0113%" height="15" fill="rgb(241,51,29)" fg:x="66573" fg:w="17"/><text x="44.5558%" y="911.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (17 samples, 0.01%)</title><rect x="44.3058%" y="885" width="0.0113%" height="15" fill="rgb(211,58,19)" fg:x="66573" fg:w="17"/><text x="44.5558%" y="895.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (17 samples, 0.01%)</title><rect x="44.3058%" y="869" width="0.0113%" height="15" fill="rgb(229,111,26)" fg:x="66573" fg:w="17"/><text x="44.5558%" y="879.50"></text></g><g><title>SpinPause (16 samples, 0.01%)</title><rect x="44.3065%" y="853" width="0.0106%" height="15" fill="rgb(213,115,40)" fg:x="66574" fg:w="16"/><text x="44.5565%" y="863.50"></text></g><g><title>ParallelSPCleanupTask::work (21 samples, 0.01%)</title><rect x="44.3178%" y="917" width="0.0140%" height="15" fill="rgb(209,56,44)" fg:x="66591" fg:w="21"/><text x="44.5678%" y="927.50"></text></g><g><title>Threads::possibly_parallel_threads_do (19 samples, 0.01%)</title><rect x="44.3191%" y="901" width="0.0126%" height="15" fill="rgb(230,108,32)" fg:x="66593" fg:w="19"/><text x="44.5691%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.04%)</title><rect x="44.3391%" y="693" width="0.0366%" height="15" fill="rgb(216,165,31)" fg:x="66623" fg:w="55"/><text x="44.5891%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.04%)</title><rect x="44.3397%" y="677" width="0.0359%" height="15" fill="rgb(218,122,21)" fg:x="66624" fg:w="54"/><text x="44.5897%" y="687.50"></text></g><g><title>native_write_msr (54 samples, 0.04%)</title><rect x="44.3397%" y="661" width="0.0359%" height="15" fill="rgb(223,224,47)" fg:x="66624" fg:w="54"/><text x="44.5897%" y="671.50"></text></g><g><title>finish_task_switch (58 samples, 0.04%)</title><rect x="44.3384%" y="709" width="0.0386%" height="15" fill="rgb(238,102,44)" fg:x="66622" fg:w="58"/><text x="44.5884%" y="719.50"></text></g><g><title>do_syscall_64 (66 samples, 0.04%)</title><rect x="44.3344%" y="821" width="0.0439%" height="15" fill="rgb(236,46,40)" fg:x="66616" fg:w="66"/><text x="44.5844%" y="831.50"></text></g><g><title>__x64_sys_futex (64 samples, 0.04%)</title><rect x="44.3357%" y="805" width="0.0426%" height="15" fill="rgb(247,202,50)" fg:x="66618" fg:w="64"/><text x="44.5857%" y="815.50"></text></g><g><title>do_futex (64 samples, 0.04%)</title><rect x="44.3357%" y="789" width="0.0426%" height="15" fill="rgb(209,99,20)" fg:x="66618" fg:w="64"/><text x="44.5857%" y="799.50"></text></g><g><title>futex_wait (64 samples, 0.04%)</title><rect x="44.3357%" y="773" width="0.0426%" height="15" fill="rgb(252,27,34)" fg:x="66618" fg:w="64"/><text x="44.5857%" y="783.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.04%)</title><rect x="44.3357%" y="757" width="0.0426%" height="15" fill="rgb(215,206,23)" fg:x="66618" fg:w="64"/><text x="44.5857%" y="767.50"></text></g><g><title>schedule (62 samples, 0.04%)</title><rect x="44.3371%" y="741" width="0.0413%" height="15" fill="rgb(212,135,36)" fg:x="66620" fg:w="62"/><text x="44.5871%" y="751.50"></text></g><g><title>__schedule (62 samples, 0.04%)</title><rect x="44.3371%" y="725" width="0.0413%" height="15" fill="rgb(240,189,1)" fg:x="66620" fg:w="62"/><text x="44.5871%" y="735.50"></text></g><g><title>__GI___clone (403 samples, 0.27%)</title><rect x="44.1121%" y="997" width="0.2682%" height="15" fill="rgb(242,56,20)" fg:x="66282" fg:w="403"/><text x="44.3621%" y="1007.50"></text></g><g><title>start_thread (403 samples, 0.27%)</title><rect x="44.1121%" y="981" width="0.2682%" height="15" fill="rgb(247,132,33)" fg:x="66282" fg:w="403"/><text x="44.3621%" y="991.50"></text></g><g><title>thread_native_entry (403 samples, 0.27%)</title><rect x="44.1121%" y="965" width="0.2682%" height="15" fill="rgb(208,149,11)" fg:x="66282" fg:w="403"/><text x="44.3621%" y="975.50"></text></g><g><title>Thread::call_run (403 samples, 0.27%)</title><rect x="44.1121%" y="949" width="0.2682%" height="15" fill="rgb(211,33,11)" fg:x="66282" fg:w="403"/><text x="44.3621%" y="959.50"></text></g><g><title>GangWorker::loop (403 samples, 0.27%)</title><rect x="44.1121%" y="933" width="0.2682%" height="15" fill="rgb(221,29,38)" fg:x="66282" fg:w="403"/><text x="44.3621%" y="943.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (70 samples, 0.05%)</title><rect x="44.3337%" y="917" width="0.0466%" height="15" fill="rgb(206,182,49)" fg:x="66615" fg:w="70"/><text x="44.5837%" y="927.50"></text></g><g><title>PosixSemaphore::wait (70 samples, 0.05%)</title><rect x="44.3337%" y="901" width="0.0466%" height="15" fill="rgb(216,140,1)" fg:x="66615" fg:w="70"/><text x="44.5837%" y="911.50"></text></g><g><title>__new_sem_wait_slow (69 samples, 0.05%)</title><rect x="44.3344%" y="885" width="0.0459%" height="15" fill="rgb(232,57,40)" fg:x="66616" fg:w="69"/><text x="44.5844%" y="895.50"></text></g><g><title>do_futex_wait (69 samples, 0.05%)</title><rect x="44.3344%" y="869" width="0.0459%" height="15" fill="rgb(224,186,18)" fg:x="66616" fg:w="69"/><text x="44.5844%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (69 samples, 0.05%)</title><rect x="44.3344%" y="853" width="0.0459%" height="15" fill="rgb(215,121,11)" fg:x="66616" fg:w="69"/><text x="44.5844%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.05%)</title><rect x="44.3344%" y="837" width="0.0459%" height="15" fill="rgb(245,147,10)" fg:x="66616" fg:w="69"/><text x="44.5844%" y="847.50"></text></g><g><title>GC_Thread#7 (413 samples, 0.27%)</title><rect x="44.1075%" y="1013" width="0.2749%" height="15" fill="rgb(238,153,13)" fg:x="66275" fg:w="413"/><text x="44.3575%" y="1023.50"></text></g><g><title>JVM_WaitForReferencePendingList (16 samples, 0.01%)</title><rect x="44.3863%" y="981" width="0.0106%" height="15" fill="rgb(233,108,0)" fg:x="66694" fg:w="16"/><text x="44.6363%" y="991.50"></text></g><g><title>Reference_Handl (22 samples, 0.01%)</title><rect x="44.3837%" y="1013" width="0.0146%" height="15" fill="rgb(212,157,17)" fg:x="66690" fg:w="22"/><text x="44.6337%" y="1023.50"></text></g><g><title>[perf-943567.map] (22 samples, 0.01%)</title><rect x="44.3837%" y="997" width="0.0146%" height="15" fill="rgb(225,213,38)" fg:x="66690" fg:w="22"/><text x="44.6337%" y="1007.50"></text></g><g><title>InterpreterRuntime::_new (16 samples, 0.01%)</title><rect x="44.4396%" y="981" width="0.0106%" height="15" fill="rgb(248,16,11)" fg:x="66774" fg:w="16"/><text x="44.6896%" y="991.50"></text></g><g><title>[perf-943567.map] (93 samples, 0.06%)</title><rect x="44.4043%" y="997" width="0.0619%" height="15" fill="rgb(241,33,4)" fg:x="66721" fg:w="93"/><text x="44.6543%" y="1007.50"></text></g><g><title>Service_Thread (119 samples, 0.08%)</title><rect x="44.3990%" y="1013" width="0.0792%" height="15" fill="rgb(222,26,43)" fg:x="66713" fg:w="119"/><text x="44.6490%" y="1023.50"></text></g><g><title>__perf_event_task_sched_in (153 samples, 0.10%)</title><rect x="44.5460%" y="661" width="0.1018%" height="15" fill="rgb(243,29,36)" fg:x="66934" fg:w="153"/><text x="44.7960%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (149 samples, 0.10%)</title><rect x="44.5487%" y="645" width="0.0992%" height="15" fill="rgb(241,9,27)" fg:x="66938" fg:w="149"/><text x="44.7987%" y="655.50"></text></g><g><title>native_write_msr (148 samples, 0.10%)</title><rect x="44.5494%" y="629" width="0.0985%" height="15" fill="rgb(205,117,26)" fg:x="66939" fg:w="148"/><text x="44.7994%" y="639.50"></text></g><g><title>finish_task_switch (164 samples, 0.11%)</title><rect x="44.5447%" y="677" width="0.1091%" height="15" fill="rgb(209,80,39)" fg:x="66932" fg:w="164"/><text x="44.7947%" y="687.50"></text></g><g><title>futex_wait_queue_me (217 samples, 0.14%)</title><rect x="44.5214%" y="725" width="0.1444%" height="15" fill="rgb(239,155,6)" fg:x="66897" fg:w="217"/><text x="44.7714%" y="735.50"></text></g><g><title>schedule (204 samples, 0.14%)</title><rect x="44.5301%" y="709" width="0.1358%" height="15" fill="rgb(212,104,12)" fg:x="66910" fg:w="204"/><text x="44.7801%" y="719.50"></text></g><g><title>__schedule (203 samples, 0.14%)</title><rect x="44.5307%" y="693" width="0.1351%" height="15" fill="rgb(234,204,3)" fg:x="66911" fg:w="203"/><text x="44.7807%" y="703.50"></text></g><g><title>do_futex (228 samples, 0.15%)</title><rect x="44.5201%" y="757" width="0.1517%" height="15" fill="rgb(251,218,7)" fg:x="66895" fg:w="228"/><text x="44.7701%" y="767.50"></text></g><g><title>futex_wait (228 samples, 0.15%)</title><rect x="44.5201%" y="741" width="0.1517%" height="15" fill="rgb(221,81,32)" fg:x="66895" fg:w="228"/><text x="44.7701%" y="751.50"></text></g><g><title>do_syscall_64 (239 samples, 0.16%)</title><rect x="44.5154%" y="789" width="0.1591%" height="15" fill="rgb(214,152,26)" fg:x="66888" fg:w="239"/><text x="44.7654%" y="799.50"></text></g><g><title>__x64_sys_futex (236 samples, 0.16%)</title><rect x="44.5174%" y="773" width="0.1571%" height="15" fill="rgb(223,22,3)" fg:x="66891" fg:w="236"/><text x="44.7674%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (248 samples, 0.17%)</title><rect x="44.5154%" y="805" width="0.1650%" height="15" fill="rgb(207,174,7)" fg:x="66888" fg:w="248"/><text x="44.7654%" y="815.50"></text></g><g><title>__pthread_cond_timedwait (260 samples, 0.17%)</title><rect x="44.5088%" y="853" width="0.1730%" height="15" fill="rgb(224,19,52)" fg:x="66878" fg:w="260"/><text x="44.7588%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (260 samples, 0.17%)</title><rect x="44.5088%" y="837" width="0.1730%" height="15" fill="rgb(228,24,14)" fg:x="66878" fg:w="260"/><text x="44.7588%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (256 samples, 0.17%)</title><rect x="44.5114%" y="821" width="0.1704%" height="15" fill="rgb(230,153,43)" fg:x="66882" fg:w="256"/><text x="44.7614%" y="831.50"></text></g><g><title>Monitor::IWait (293 samples, 0.19%)</title><rect x="44.4948%" y="885" width="0.1950%" height="15" fill="rgb(231,106,12)" fg:x="66857" fg:w="293"/><text x="44.7448%" y="895.50"></text></g><g><title>os::PlatformEvent::park (288 samples, 0.19%)</title><rect x="44.4981%" y="869" width="0.1917%" height="15" fill="rgb(215,92,2)" fg:x="66862" fg:w="288"/><text x="44.7481%" y="879.50"></text></g><g><title>Monitor::wait (298 samples, 0.20%)</title><rect x="44.4921%" y="901" width="0.1983%" height="15" fill="rgb(249,143,25)" fg:x="66853" fg:w="298"/><text x="44.7421%" y="911.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (48 samples, 0.03%)</title><rect x="44.7031%" y="853" width="0.0319%" height="15" fill="rgb(252,7,35)" fg:x="67170" fg:w="48"/><text x="44.9531%" y="863.50"></text></g><g><title>NMethodSweeper::process_compiled_method (62 samples, 0.04%)</title><rect x="44.7011%" y="869" width="0.0413%" height="15" fill="rgb(216,69,40)" fg:x="67167" fg:w="62"/><text x="44.9511%" y="879.50"></text></g><g><title>NMethodSweeper::possibly_sweep (82 samples, 0.05%)</title><rect x="44.6905%" y="901" width="0.0546%" height="15" fill="rgb(240,36,33)" fg:x="67151" fg:w="82"/><text x="44.9405%" y="911.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (76 samples, 0.05%)</title><rect x="44.6945%" y="885" width="0.0506%" height="15" fill="rgb(231,128,14)" fg:x="67157" fg:w="76"/><text x="44.9445%" y="895.50"></text></g><g><title>__GI___clone (394 samples, 0.26%)</title><rect x="44.4842%" y="997" width="0.2622%" height="15" fill="rgb(245,143,14)" fg:x="66841" fg:w="394"/><text x="44.7342%" y="1007.50"></text></g><g><title>start_thread (394 samples, 0.26%)</title><rect x="44.4842%" y="981" width="0.2622%" height="15" fill="rgb(222,130,28)" fg:x="66841" fg:w="394"/><text x="44.7342%" y="991.50"></text></g><g><title>thread_native_entry (394 samples, 0.26%)</title><rect x="44.4842%" y="965" width="0.2622%" height="15" fill="rgb(212,10,48)" fg:x="66841" fg:w="394"/><text x="44.7342%" y="975.50"></text></g><g><title>Thread::call_run (394 samples, 0.26%)</title><rect x="44.4842%" y="949" width="0.2622%" height="15" fill="rgb(254,118,45)" fg:x="66841" fg:w="394"/><text x="44.7342%" y="959.50"></text></g><g><title>JavaThread::thread_main_inner (394 samples, 0.26%)</title><rect x="44.4842%" y="933" width="0.2622%" height="15" fill="rgb(228,6,45)" fg:x="66841" fg:w="394"/><text x="44.7342%" y="943.50"></text></g><g><title>NMethodSweeper::sweeper_loop (392 samples, 0.26%)</title><rect x="44.4855%" y="917" width="0.2609%" height="15" fill="rgb(241,18,35)" fg:x="66843" fg:w="392"/><text x="44.7355%" y="927.50"></text></g><g><title>Sweeper_thread (408 samples, 0.27%)</title><rect x="44.4782%" y="1013" width="0.2715%" height="15" fill="rgb(227,214,53)" fg:x="66832" fg:w="408"/><text x="44.7282%" y="1023.50"></text></g><g><title>JVM_Sleep (27 samples, 0.02%)</title><rect x="44.8149%" y="981" width="0.0180%" height="15" fill="rgb(224,107,51)" fg:x="67338" fg:w="27"/><text x="45.0649%" y="991.50"></text></g><g><title>os::sleep (27 samples, 0.02%)</title><rect x="44.8149%" y="965" width="0.0180%" height="15" fill="rgb(248,60,28)" fg:x="67338" fg:w="27"/><text x="45.0649%" y="975.50"></text></g><g><title>os::PlatformEvent::park (18 samples, 0.01%)</title><rect x="44.8209%" y="949" width="0.0120%" height="15" fill="rgb(249,101,23)" fg:x="67347" fg:w="18"/><text x="45.0709%" y="959.50"></text></g><g><title>__pthread_cond_timedwait (18 samples, 0.01%)</title><rect x="44.8209%" y="933" width="0.0120%" height="15" fill="rgb(228,51,19)" fg:x="67347" fg:w="18"/><text x="45.0709%" y="943.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="44.8216%" y="917" width="0.0113%" height="15" fill="rgb(213,20,6)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="927.50"></text></g><g><title>futex_abstimed_wait_cancelable (17 samples, 0.01%)</title><rect x="44.8216%" y="901" width="0.0113%" height="15" fill="rgb(212,124,10)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="44.8216%" y="885" width="0.0113%" height="15" fill="rgb(248,3,40)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="895.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="44.8216%" y="869" width="0.0113%" height="15" fill="rgb(223,178,23)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="879.50"></text></g><g><title>__x64_sys_futex (17 samples, 0.01%)</title><rect x="44.8216%" y="853" width="0.0113%" height="15" fill="rgb(240,132,45)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="863.50"></text></g><g><title>do_futex (17 samples, 0.01%)</title><rect x="44.8216%" y="837" width="0.0113%" height="15" fill="rgb(245,164,36)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="847.50"></text></g><g><title>futex_wait (17 samples, 0.01%)</title><rect x="44.8216%" y="821" width="0.0113%" height="15" fill="rgb(231,188,53)" fg:x="67348" fg:w="17"/><text x="45.0716%" y="831.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="44.8222%" y="805" width="0.0106%" height="15" fill="rgb(237,198,39)" fg:x="67349" fg:w="16"/><text x="45.0722%" y="815.50"></text></g><g><title>get_cpu_load (19 samples, 0.01%)</title><rect x="44.8449%" y="981" width="0.0126%" height="15" fill="rgb(223,120,35)" fg:x="67383" fg:w="19"/><text x="45.0949%" y="991.50"></text></g><g><title>get_cpuload_internal (19 samples, 0.01%)</title><rect x="44.8449%" y="965" width="0.0126%" height="15" fill="rgb(253,107,49)" fg:x="67383" fg:w="19"/><text x="45.0949%" y="975.50"></text></g><g><title>get_totalticks (19 samples, 0.01%)</title><rect x="44.8449%" y="949" width="0.0126%" height="15" fill="rgb(216,44,31)" fg:x="67383" fg:w="19"/><text x="45.0949%" y="959.50"></text></g><g><title>[perf-943567.map] (154 samples, 0.10%)</title><rect x="44.7557%" y="997" width="0.1025%" height="15" fill="rgb(253,87,21)" fg:x="67249" fg:w="154"/><text x="45.0057%" y="1007.50"></text></g><g><title>Thread-0 (170 samples, 0.11%)</title><rect x="44.7497%" y="1013" width="0.1131%" height="15" fill="rgb(226,18,2)" fg:x="67240" fg:w="170"/><text x="44.9997%" y="1023.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="44.8728%" y="661" width="0.0126%" height="15" fill="rgb(216,8,46)" fg:x="67425" fg:w="19"/><text x="45.1228%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="44.8728%" y="645" width="0.0126%" height="15" fill="rgb(226,140,39)" fg:x="67425" fg:w="19"/><text x="45.1228%" y="655.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="44.8728%" y="629" width="0.0126%" height="15" fill="rgb(221,194,54)" fg:x="67425" fg:w="19"/><text x="45.1228%" y="639.50"></text></g><g><title>finish_task_switch (23 samples, 0.02%)</title><rect x="44.8708%" y="677" width="0.0153%" height="15" fill="rgb(213,92,11)" fg:x="67422" fg:w="23"/><text x="45.1208%" y="687.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="44.8702%" y="789" width="0.0186%" height="15" fill="rgb(229,162,46)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="799.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.02%)</title><rect x="44.8702%" y="773" width="0.0186%" height="15" fill="rgb(214,111,36)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="783.50"></text></g><g><title>do_futex (28 samples, 0.02%)</title><rect x="44.8702%" y="757" width="0.0186%" height="15" fill="rgb(207,6,21)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="767.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="44.8702%" y="741" width="0.0186%" height="15" fill="rgb(213,127,38)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="751.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="44.8702%" y="725" width="0.0186%" height="15" fill="rgb(238,118,32)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="735.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="44.8702%" y="709" width="0.0186%" height="15" fill="rgb(240,139,39)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="719.50"></text></g><g><title>__schedule (28 samples, 0.02%)</title><rect x="44.8702%" y="693" width="0.0186%" height="15" fill="rgb(235,10,37)" fg:x="67421" fg:w="28"/><text x="45.1202%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (32 samples, 0.02%)</title><rect x="44.8688%" y="853" width="0.0213%" height="15" fill="rgb(249,171,38)" fg:x="67419" fg:w="32"/><text x="45.1188%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.02%)</title><rect x="44.8688%" y="837" width="0.0213%" height="15" fill="rgb(242,144,32)" fg:x="67419" fg:w="32"/><text x="45.1188%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (30 samples, 0.02%)</title><rect x="44.8702%" y="821" width="0.0200%" height="15" fill="rgb(217,117,21)" fg:x="67421" fg:w="30"/><text x="45.1202%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.02%)</title><rect x="44.8702%" y="805" width="0.0200%" height="15" fill="rgb(249,87,1)" fg:x="67421" fg:w="30"/><text x="45.1202%" y="815.50"></text></g><g><title>VM_Periodic_Tas (43 samples, 0.03%)</title><rect x="44.8628%" y="1013" width="0.0286%" height="15" fill="rgb(248,196,48)" fg:x="67410" fg:w="43"/><text x="45.1128%" y="1023.50"></text></g><g><title>__GI___clone (38 samples, 0.03%)</title><rect x="44.8662%" y="997" width="0.0253%" height="15" fill="rgb(251,206,33)" fg:x="67415" fg:w="38"/><text x="45.1162%" y="1007.50"></text></g><g><title>start_thread (38 samples, 0.03%)</title><rect x="44.8662%" y="981" width="0.0253%" height="15" fill="rgb(232,141,28)" fg:x="67415" fg:w="38"/><text x="45.1162%" y="991.50"></text></g><g><title>thread_native_entry (38 samples, 0.03%)</title><rect x="44.8662%" y="965" width="0.0253%" height="15" fill="rgb(209,167,14)" fg:x="67415" fg:w="38"/><text x="45.1162%" y="975.50"></text></g><g><title>Thread::call_run (38 samples, 0.03%)</title><rect x="44.8662%" y="949" width="0.0253%" height="15" fill="rgb(225,11,50)" fg:x="67415" fg:w="38"/><text x="45.1162%" y="959.50"></text></g><g><title>WatcherThread::run (38 samples, 0.03%)</title><rect x="44.8662%" y="933" width="0.0253%" height="15" fill="rgb(209,50,20)" fg:x="67415" fg:w="38"/><text x="45.1162%" y="943.50"></text></g><g><title>WatcherThread::sleep (34 samples, 0.02%)</title><rect x="44.8688%" y="917" width="0.0226%" height="15" fill="rgb(212,17,46)" fg:x="67419" fg:w="34"/><text x="45.1188%" y="927.50"></text></g><g><title>Monitor::wait (34 samples, 0.02%)</title><rect x="44.8688%" y="901" width="0.0226%" height="15" fill="rgb(216,101,39)" fg:x="67419" fg:w="34"/><text x="45.1188%" y="911.50"></text></g><g><title>Monitor::IWait (34 samples, 0.02%)</title><rect x="44.8688%" y="885" width="0.0226%" height="15" fill="rgb(212,228,48)" fg:x="67419" fg:w="34"/><text x="45.1188%" y="895.50"></text></g><g><title>os::PlatformEvent::park (34 samples, 0.02%)</title><rect x="44.8688%" y="869" width="0.0226%" height="15" fill="rgb(250,6,50)" fg:x="67419" fg:w="34"/><text x="45.1188%" y="879.50"></text></g><g><title>[unknown] (57 samples, 0.04%)</title><rect x="44.9001%" y="997" width="0.0379%" height="15" fill="rgb(250,160,48)" fg:x="67466" fg:w="57"/><text x="45.1501%" y="1007.50"></text></g><g><title>vframe::sender (53 samples, 0.04%)</title><rect x="44.9028%" y="981" width="0.0353%" height="15" fill="rgb(244,216,33)" fg:x="67470" fg:w="53"/><text x="45.1528%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.02%)</title><rect x="44.9394%" y="933" width="0.0160%" height="15" fill="rgb(207,157,5)" fg:x="67525" fg:w="24"/><text x="45.1894%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="44.9394%" y="917" width="0.0160%" height="15" fill="rgb(228,199,8)" fg:x="67525" fg:w="24"/><text x="45.1894%" y="927.50"></text></g><g><title>native_write_msr (23 samples, 0.02%)</title><rect x="44.9400%" y="901" width="0.0153%" height="15" fill="rgb(227,80,20)" fg:x="67526" fg:w="23"/><text x="45.1900%" y="911.50"></text></g><g><title>ret_from_fork (25 samples, 0.02%)</title><rect x="44.9394%" y="981" width="0.0166%" height="15" fill="rgb(222,9,33)" fg:x="67525" fg:w="25"/><text x="45.1894%" y="991.50"></text></g><g><title>schedule_tail (25 samples, 0.02%)</title><rect x="44.9394%" y="965" width="0.0166%" height="15" fill="rgb(239,44,28)" fg:x="67525" fg:w="25"/><text x="45.1894%" y="975.50"></text></g><g><title>finish_task_switch (25 samples, 0.02%)</title><rect x="44.9394%" y="949" width="0.0166%" height="15" fill="rgb(249,187,43)" fg:x="67525" fg:w="25"/><text x="45.1894%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.05%)</title><rect x="44.9786%" y="661" width="0.0459%" height="15" fill="rgb(216,141,28)" fg:x="67584" fg:w="69"/><text x="45.2286%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.04%)</title><rect x="44.9806%" y="645" width="0.0439%" height="15" fill="rgb(230,154,53)" fg:x="67587" fg:w="66"/><text x="45.2306%" y="655.50"></text></g><g><title>native_write_msr (65 samples, 0.04%)</title><rect x="44.9813%" y="629" width="0.0433%" height="15" fill="rgb(227,82,4)" fg:x="67588" fg:w="65"/><text x="45.2313%" y="639.50"></text></g><g><title>finish_task_switch (74 samples, 0.05%)</title><rect x="44.9773%" y="677" width="0.0492%" height="15" fill="rgb(220,107,16)" fg:x="67582" fg:w="74"/><text x="45.2273%" y="687.50"></text></g><g><title>__pthread_cond_timedwait (81 samples, 0.05%)</title><rect x="44.9753%" y="853" width="0.0539%" height="15" fill="rgb(207,187,2)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (81 samples, 0.05%)</title><rect x="44.9753%" y="837" width="0.0539%" height="15" fill="rgb(210,162,52)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (81 samples, 0.05%)</title><rect x="44.9753%" y="821" width="0.0539%" height="15" fill="rgb(217,216,49)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.05%)</title><rect x="44.9753%" y="805" width="0.0539%" height="15" fill="rgb(218,146,49)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="815.50"></text></g><g><title>do_syscall_64 (81 samples, 0.05%)</title><rect x="44.9753%" y="789" width="0.0539%" height="15" fill="rgb(216,55,40)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="799.50"></text></g><g><title>__x64_sys_futex (81 samples, 0.05%)</title><rect x="44.9753%" y="773" width="0.0539%" height="15" fill="rgb(208,196,21)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="783.50"></text></g><g><title>do_futex (81 samples, 0.05%)</title><rect x="44.9753%" y="757" width="0.0539%" height="15" fill="rgb(242,117,42)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="767.50"></text></g><g><title>futex_wait (81 samples, 0.05%)</title><rect x="44.9753%" y="741" width="0.0539%" height="15" fill="rgb(210,11,23)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="751.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.05%)</title><rect x="44.9753%" y="725" width="0.0539%" height="15" fill="rgb(217,110,2)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="735.50"></text></g><g><title>schedule (81 samples, 0.05%)</title><rect x="44.9753%" y="709" width="0.0539%" height="15" fill="rgb(229,77,54)" fg:x="67579" fg:w="81"/><text x="45.2253%" y="719.50"></text></g><g><title>__schedule (80 samples, 0.05%)</title><rect x="44.9760%" y="693" width="0.0532%" height="15" fill="rgb(218,53,16)" fg:x="67580" fg:w="80"/><text x="45.2260%" y="703.50"></text></g><g><title>Monitor::wait (83 samples, 0.06%)</title><rect x="44.9746%" y="901" width="0.0552%" height="15" fill="rgb(215,38,13)" fg:x="67578" fg:w="83"/><text x="45.2246%" y="911.50"></text></g><g><title>Monitor::IWait (83 samples, 0.06%)</title><rect x="44.9746%" y="885" width="0.0552%" height="15" fill="rgb(235,42,18)" fg:x="67578" fg:w="83"/><text x="45.2246%" y="895.50"></text></g><g><title>os::PlatformEvent::park (83 samples, 0.06%)</title><rect x="44.9746%" y="869" width="0.0552%" height="15" fill="rgb(219,66,54)" fg:x="67578" fg:w="83"/><text x="45.2246%" y="879.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="45.0632%" y="661" width="0.0140%" height="15" fill="rgb(222,205,4)" fg:x="67711" fg:w="21"/><text x="45.3132%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="45.0638%" y="645" width="0.0133%" height="15" fill="rgb(227,213,46)" fg:x="67712" fg:w="20"/><text x="45.3138%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="45.0638%" y="629" width="0.0133%" height="15" fill="rgb(250,145,42)" fg:x="67712" fg:w="20"/><text x="45.3138%" y="639.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="45.0638%" y="613" width="0.0133%" height="15" fill="rgb(219,15,2)" fg:x="67712" fg:w="20"/><text x="45.3138%" y="623.50"></text></g><g><title>Monitor::wait (28 samples, 0.02%)</title><rect x="45.0592%" y="885" width="0.0186%" height="15" fill="rgb(231,181,52)" fg:x="67705" fg:w="28"/><text x="45.3092%" y="895.50"></text></g><g><title>Monitor::IWait (28 samples, 0.02%)</title><rect x="45.0592%" y="869" width="0.0186%" height="15" fill="rgb(235,1,42)" fg:x="67705" fg:w="28"/><text x="45.3092%" y="879.50"></text></g><g><title>os::PlatformEvent::park (24 samples, 0.02%)</title><rect x="45.0618%" y="853" width="0.0160%" height="15" fill="rgb(249,88,27)" fg:x="67709" fg:w="24"/><text x="45.3118%" y="863.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.02%)</title><rect x="45.0618%" y="837" width="0.0160%" height="15" fill="rgb(235,145,16)" fg:x="67709" fg:w="24"/><text x="45.3118%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="45.0618%" y="821" width="0.0160%" height="15" fill="rgb(237,114,19)" fg:x="67709" fg:w="24"/><text x="45.3118%" y="831.50"></text></g><g><title>futex_wait_cancelable (23 samples, 0.02%)</title><rect x="45.0625%" y="805" width="0.0153%" height="15" fill="rgb(238,51,50)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="45.0625%" y="789" width="0.0153%" height="15" fill="rgb(205,194,25)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="799.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="45.0625%" y="773" width="0.0153%" height="15" fill="rgb(215,203,17)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="783.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="45.0625%" y="757" width="0.0153%" height="15" fill="rgb(233,112,49)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="767.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="45.0625%" y="741" width="0.0153%" height="15" fill="rgb(241,130,26)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="751.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="45.0625%" y="725" width="0.0153%" height="15" fill="rgb(252,223,19)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="735.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="45.0625%" y="709" width="0.0153%" height="15" fill="rgb(211,95,25)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="719.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="45.0625%" y="693" width="0.0153%" height="15" fill="rgb(251,182,27)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="703.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="45.0625%" y="677" width="0.0153%" height="15" fill="rgb(238,24,4)" fg:x="67710" fg:w="23"/><text x="45.3125%" y="687.50"></text></g><g><title>ttwu_do_activate (21 samples, 0.01%)</title><rect x="45.1097%" y="677" width="0.0140%" height="15" fill="rgb(224,220,25)" fg:x="67781" fg:w="21"/><text x="45.3597%" y="687.50"></text></g><g><title>PosixSemaphore::signal (57 samples, 0.04%)</title><rect x="45.0871%" y="837" width="0.0379%" height="15" fill="rgb(239,133,26)" fg:x="67747" fg:w="57"/><text x="45.3371%" y="847.50"></text></g><g><title>__new_sem_post (57 samples, 0.04%)</title><rect x="45.0871%" y="821" width="0.0379%" height="15" fill="rgb(211,94,48)" fg:x="67747" fg:w="57"/><text x="45.3371%" y="831.50"></text></g><g><title>futex_wake (57 samples, 0.04%)</title><rect x="45.0871%" y="805" width="0.0379%" height="15" fill="rgb(239,87,6)" fg:x="67747" fg:w="57"/><text x="45.3371%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.04%)</title><rect x="45.0878%" y="789" width="0.0373%" height="15" fill="rgb(227,62,0)" fg:x="67748" fg:w="56"/><text x="45.3378%" y="799.50"></text></g><g><title>do_syscall_64 (56 samples, 0.04%)</title><rect x="45.0878%" y="773" width="0.0373%" height="15" fill="rgb(211,226,4)" fg:x="67748" fg:w="56"/><text x="45.3378%" y="783.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.04%)</title><rect x="45.0878%" y="757" width="0.0373%" height="15" fill="rgb(253,38,52)" fg:x="67748" fg:w="56"/><text x="45.3378%" y="767.50"></text></g><g><title>do_futex (56 samples, 0.04%)</title><rect x="45.0878%" y="741" width="0.0373%" height="15" fill="rgb(229,126,40)" fg:x="67748" fg:w="56"/><text x="45.3378%" y="751.50"></text></g><g><title>futex_wake (55 samples, 0.04%)</title><rect x="45.0884%" y="725" width="0.0366%" height="15" fill="rgb(229,165,44)" fg:x="67749" fg:w="55"/><text x="45.3384%" y="735.50"></text></g><g><title>wake_up_q (44 samples, 0.03%)</title><rect x="45.0958%" y="709" width="0.0293%" height="15" fill="rgb(247,95,47)" fg:x="67760" fg:w="44"/><text x="45.3458%" y="719.50"></text></g><g><title>try_to_wake_up (44 samples, 0.03%)</title><rect x="45.0958%" y="693" width="0.0293%" height="15" fill="rgb(216,140,30)" fg:x="67760" fg:w="44"/><text x="45.3458%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.03%)</title><rect x="45.1277%" y="629" width="0.0319%" height="15" fill="rgb(246,214,8)" fg:x="67808" fg:w="48"/><text x="45.3777%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.03%)</title><rect x="45.1290%" y="613" width="0.0306%" height="15" fill="rgb(227,224,15)" fg:x="67810" fg:w="46"/><text x="45.3790%" y="623.50"></text></g><g><title>native_write_msr (44 samples, 0.03%)</title><rect x="45.1304%" y="597" width="0.0293%" height="15" fill="rgb(233,175,4)" fg:x="67812" fg:w="44"/><text x="45.3804%" y="607.50"></text></g><g><title>finish_task_switch (50 samples, 0.03%)</title><rect x="45.1277%" y="645" width="0.0333%" height="15" fill="rgb(221,66,45)" fg:x="67808" fg:w="50"/><text x="45.3777%" y="655.50"></text></g><g><title>futex_wait_queue_me (59 samples, 0.04%)</title><rect x="45.1264%" y="693" width="0.0393%" height="15" fill="rgb(221,178,18)" fg:x="67806" fg:w="59"/><text x="45.3764%" y="703.50"></text></g><g><title>schedule (59 samples, 0.04%)</title><rect x="45.1264%" y="677" width="0.0393%" height="15" fill="rgb(213,81,29)" fg:x="67806" fg:w="59"/><text x="45.3764%" y="687.50"></text></g><g><title>__schedule (59 samples, 0.04%)</title><rect x="45.1264%" y="661" width="0.0393%" height="15" fill="rgb(220,89,49)" fg:x="67806" fg:w="59"/><text x="45.3764%" y="671.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (128 samples, 0.09%)</title><rect x="45.0811%" y="885" width="0.0852%" height="15" fill="rgb(227,60,33)" fg:x="67738" fg:w="128"/><text x="45.3311%" y="895.50"></text></g><g><title>WorkGang::run_task (120 samples, 0.08%)</title><rect x="45.0865%" y="869" width="0.0799%" height="15" fill="rgb(205,113,12)" fg:x="67746" fg:w="120"/><text x="45.3365%" y="879.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (119 samples, 0.08%)</title><rect x="45.0871%" y="853" width="0.0792%" height="15" fill="rgb(211,32,1)" fg:x="67747" fg:w="119"/><text x="45.3371%" y="863.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.04%)</title><rect x="45.1251%" y="837" width="0.0413%" height="15" fill="rgb(246,2,12)" fg:x="67804" fg:w="62"/><text x="45.3751%" y="847.50"></text></g><g><title>__new_sem_wait_slow (62 samples, 0.04%)</title><rect x="45.1251%" y="821" width="0.0413%" height="15" fill="rgb(243,37,27)" fg:x="67804" fg:w="62"/><text x="45.3751%" y="831.50"></text></g><g><title>do_futex_wait (62 samples, 0.04%)</title><rect x="45.1251%" y="805" width="0.0413%" height="15" fill="rgb(248,211,31)" fg:x="67804" fg:w="62"/><text x="45.3751%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (62 samples, 0.04%)</title><rect x="45.1251%" y="789" width="0.0413%" height="15" fill="rgb(242,146,47)" fg:x="67804" fg:w="62"/><text x="45.3751%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.04%)</title><rect x="45.1264%" y="773" width="0.0399%" height="15" fill="rgb(206,70,20)" fg:x="67806" fg:w="60"/><text x="45.3764%" y="783.50"></text></g><g><title>do_syscall_64 (60 samples, 0.04%)</title><rect x="45.1264%" y="757" width="0.0399%" height="15" fill="rgb(215,10,51)" fg:x="67806" fg:w="60"/><text x="45.3764%" y="767.50"></text></g><g><title>__x64_sys_futex (60 samples, 0.04%)</title><rect x="45.1264%" y="741" width="0.0399%" height="15" fill="rgb(243,178,53)" fg:x="67806" fg:w="60"/><text x="45.3764%" y="751.50"></text></g><g><title>do_futex (60 samples, 0.04%)</title><rect x="45.1264%" y="725" width="0.0399%" height="15" fill="rgb(233,221,20)" fg:x="67806" fg:w="60"/><text x="45.3764%" y="735.50"></text></g><g><title>futex_wait (60 samples, 0.04%)</title><rect x="45.1264%" y="709" width="0.0399%" height="15" fill="rgb(218,95,35)" fg:x="67806" fg:w="60"/><text x="45.3764%" y="719.50"></text></g><g><title>__GI___sched_yield (21 samples, 0.01%)</title><rect x="45.1723%" y="885" width="0.0140%" height="15" fill="rgb(229,13,5)" fg:x="67875" fg:w="21"/><text x="45.4223%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="45.1750%" y="869" width="0.0113%" height="15" fill="rgb(252,164,30)" fg:x="67879" fg:w="17"/><text x="45.4250%" y="879.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="45.1756%" y="853" width="0.0106%" height="15" fill="rgb(232,68,36)" fg:x="67880" fg:w="16"/><text x="45.4256%" y="863.50"></text></g><g><title>__x64_sys_sched_yield (16 samples, 0.01%)</title><rect x="45.1756%" y="837" width="0.0106%" height="15" fill="rgb(219,59,54)" fg:x="67880" fg:w="16"/><text x="45.4256%" y="847.50"></text></g><g><title>SafepointSynchronize::begin (242 samples, 0.16%)</title><rect x="45.0299%" y="901" width="0.1611%" height="15" fill="rgb(250,92,33)" fg:x="67661" fg:w="242"/><text x="45.2799%" y="911.50"></text></g><g><title>VM_CGC_Operation::doit (17 samples, 0.01%)</title><rect x="45.2129%" y="869" width="0.0113%" height="15" fill="rgb(229,162,54)" fg:x="67936" fg:w="17"/><text x="45.4629%" y="879.50"></text></g><g><title>G1ConcurrentMark::remark (17 samples, 0.01%)</title><rect x="45.2129%" y="853" width="0.0113%" height="15" fill="rgb(244,114,52)" fg:x="67936" fg:w="17"/><text x="45.4629%" y="863.50"></text></g><g><title>VM_CollectForMetadataAllocation::doit (16 samples, 0.01%)</title><rect x="45.2242%" y="869" width="0.0106%" height="15" fill="rgb(212,211,43)" fg:x="67953" fg:w="16"/><text x="45.4742%" y="879.50"></text></g><g><title>VM_CollectForMetadataAllocation::initiate_concurrent_GC (16 samples, 0.01%)</title><rect x="45.2242%" y="853" width="0.0106%" height="15" fill="rgb(226,147,8)" fg:x="67953" fg:w="16"/><text x="45.4742%" y="863.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (16 samples, 0.01%)</title><rect x="45.2242%" y="837" width="0.0106%" height="15" fill="rgb(226,23,13)" fg:x="67953" fg:w="16"/><text x="45.4742%" y="847.50"></text></g><g><title>CodeHeap::next_used (33 samples, 0.02%)</title><rect x="45.2415%" y="821" width="0.0220%" height="15" fill="rgb(240,63,4)" fg:x="67979" fg:w="33"/><text x="45.4915%" y="831.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (50 samples, 0.03%)</title><rect x="45.2349%" y="853" width="0.0333%" height="15" fill="rgb(221,1,32)" fg:x="67969" fg:w="50"/><text x="45.4849%" y="863.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (46 samples, 0.03%)</title><rect x="45.2375%" y="837" width="0.0306%" height="15" fill="rgb(242,117,10)" fg:x="67973" fg:w="46"/><text x="45.4875%" y="847.50"></text></g><g><title>VM_Deoptimize::doit (56 samples, 0.04%)</title><rect x="45.2349%" y="869" width="0.0373%" height="15" fill="rgb(249,172,44)" fg:x="67969" fg:w="56"/><text x="45.4849%" y="879.50"></text></g><g><title>VM_Operation::evaluate (132 samples, 0.09%)</title><rect x="45.2042%" y="885" width="0.0878%" height="15" fill="rgb(244,46,45)" fg:x="67923" fg:w="132"/><text x="45.4542%" y="895.50"></text></g><g><title>VMThread::evaluate_operation (136 samples, 0.09%)</title><rect x="45.2029%" y="901" width="0.0905%" height="15" fill="rgb(206,43,17)" fg:x="67921" fg:w="136"/><text x="45.4529%" y="911.50"></text></g><g><title>Thread::call_run (509 samples, 0.34%)</title><rect x="44.9580%" y="949" width="0.3388%" height="15" fill="rgb(239,218,39)" fg:x="67553" fg:w="509"/><text x="45.2080%" y="959.50"></text></g><g><title>VMThread::run (509 samples, 0.34%)</title><rect x="44.9580%" y="933" width="0.3388%" height="15" fill="rgb(208,169,54)" fg:x="67553" fg:w="509"/><text x="45.2080%" y="943.50"></text></g><g><title>VMThread::loop (508 samples, 0.34%)</title><rect x="44.9587%" y="917" width="0.3381%" height="15" fill="rgb(247,25,42)" fg:x="67554" fg:w="508"/><text x="45.2087%" y="927.50"></text></g><g><title>__GI___clone (541 samples, 0.36%)</title><rect x="44.9380%" y="997" width="0.3600%" height="15" fill="rgb(226,23,31)" fg:x="67523" fg:w="541"/><text x="45.1880%" y="1007.50"></text></g><g><title>start_thread (514 samples, 0.34%)</title><rect x="44.9560%" y="981" width="0.3421%" height="15" fill="rgb(247,16,28)" fg:x="67550" fg:w="514"/><text x="45.2060%" y="991.50"></text></g><g><title>thread_native_entry (513 samples, 0.34%)</title><rect x="44.9567%" y="965" width="0.3414%" height="15" fill="rgb(231,147,38)" fg:x="67551" fg:w="513"/><text x="45.2067%" y="975.50"></text></g><g><title>VM_Thread (615 samples, 0.41%)</title><rect x="44.8915%" y="1013" width="0.4093%" height="15" fill="rgb(253,81,48)" fg:x="67453" fg:w="615"/><text x="45.1415%" y="1023.50"></text></g><g><title>__perf_event_task_sched_in (103 samples, 0.07%)</title><rect x="45.4498%" y="837" width="0.0685%" height="15" fill="rgb(249,222,43)" fg:x="68292" fg:w="103"/><text x="45.6998%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (101 samples, 0.07%)</title><rect x="45.4512%" y="821" width="0.0672%" height="15" fill="rgb(221,3,27)" fg:x="68294" fg:w="101"/><text x="45.7012%" y="831.50"></text></g><g><title>native_write_msr (101 samples, 0.07%)</title><rect x="45.4512%" y="805" width="0.0672%" height="15" fill="rgb(228,180,5)" fg:x="68294" fg:w="101"/><text x="45.7012%" y="815.50"></text></g><g><title>finish_task_switch (113 samples, 0.08%)</title><rect x="45.4472%" y="853" width="0.0752%" height="15" fill="rgb(227,131,42)" fg:x="68288" fg:w="113"/><text x="45.6972%" y="863.50"></text></g><g><title>futex_wait (127 samples, 0.08%)</title><rect x="45.4398%" y="917" width="0.0845%" height="15" fill="rgb(212,3,39)" fg:x="68277" fg:w="127"/><text x="45.6898%" y="927.50"></text></g><g><title>futex_wait_queue_me (123 samples, 0.08%)</title><rect x="45.4425%" y="901" width="0.0819%" height="15" fill="rgb(226,45,5)" fg:x="68281" fg:w="123"/><text x="45.6925%" y="911.50"></text></g><g><title>schedule (122 samples, 0.08%)</title><rect x="45.4432%" y="885" width="0.0812%" height="15" fill="rgb(215,167,45)" fg:x="68282" fg:w="122"/><text x="45.6932%" y="895.50"></text></g><g><title>__schedule (121 samples, 0.08%)</title><rect x="45.4438%" y="869" width="0.0805%" height="15" fill="rgb(250,218,53)" fg:x="68283" fg:w="121"/><text x="45.6938%" y="879.50"></text></g><g><title>__x64_sys_futex (133 samples, 0.09%)</title><rect x="45.4392%" y="949" width="0.0885%" height="15" fill="rgb(207,140,0)" fg:x="68276" fg:w="133"/><text x="45.6892%" y="959.50"></text></g><g><title>do_futex (133 samples, 0.09%)</title><rect x="45.4392%" y="933" width="0.0885%" height="15" fill="rgb(238,133,51)" fg:x="68276" fg:w="133"/><text x="45.6892%" y="943.50"></text></g><g><title>finish_task_switch (31 samples, 0.02%)</title><rect x="45.5330%" y="869" width="0.0206%" height="15" fill="rgb(218,203,53)" fg:x="68417" fg:w="31"/><text x="45.7830%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (29 samples, 0.02%)</title><rect x="45.5343%" y="853" width="0.0193%" height="15" fill="rgb(226,184,25)" fg:x="68419" fg:w="29"/><text x="45.7843%" y="863.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="45.5350%" y="837" width="0.0186%" height="15" fill="rgb(231,121,21)" fg:x="68420" fg:w="28"/><text x="45.7850%" y="847.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="45.5350%" y="821" width="0.0186%" height="15" fill="rgb(251,14,34)" fg:x="68420" fg:w="28"/><text x="45.7850%" y="831.50"></text></g><g><title>__x64_sys_nanosleep (35 samples, 0.02%)</title><rect x="45.5310%" y="949" width="0.0233%" height="15" fill="rgb(249,193,11)" fg:x="68414" fg:w="35"/><text x="45.7810%" y="959.50"></text></g><g><title>hrtimer_nanosleep (35 samples, 0.02%)</title><rect x="45.5310%" y="933" width="0.0233%" height="15" fill="rgb(220,172,37)" fg:x="68414" fg:w="35"/><text x="45.7810%" y="943.50"></text></g><g><title>do_nanosleep (35 samples, 0.02%)</title><rect x="45.5310%" y="917" width="0.0233%" height="15" fill="rgb(231,229,43)" fg:x="68414" fg:w="35"/><text x="45.7810%" y="927.50"></text></g><g><title>schedule (34 samples, 0.02%)</title><rect x="45.5317%" y="901" width="0.0226%" height="15" fill="rgb(250,161,5)" fg:x="68415" fg:w="34"/><text x="45.7817%" y="911.50"></text></g><g><title>__schedule (34 samples, 0.02%)</title><rect x="45.5317%" y="885" width="0.0226%" height="15" fill="rgb(218,225,18)" fg:x="68415" fg:w="34"/><text x="45.7817%" y="895.50"></text></g><g><title>do_syscall_64 (203 samples, 0.14%)</title><rect x="45.4259%" y="965" width="0.1351%" height="15" fill="rgb(245,45,42)" fg:x="68256" fg:w="203"/><text x="45.6759%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (206 samples, 0.14%)</title><rect x="45.4259%" y="981" width="0.1371%" height="15" fill="rgb(211,115,1)" fg:x="68256" fg:w="206"/><text x="45.6759%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.03%)</title><rect x="45.5656%" y="933" width="0.0293%" height="15" fill="rgb(248,133,52)" fg:x="68466" fg:w="44"/><text x="45.8156%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (44 samples, 0.03%)</title><rect x="45.5656%" y="917" width="0.0293%" height="15" fill="rgb(238,100,21)" fg:x="68466" fg:w="44"/><text x="45.8156%" y="927.50"></text></g><g><title>native_write_msr (44 samples, 0.03%)</title><rect x="45.5656%" y="901" width="0.0293%" height="15" fill="rgb(247,144,11)" fg:x="68466" fg:w="44"/><text x="45.8156%" y="911.50"></text></g><g><title>ret_from_fork (48 samples, 0.03%)</title><rect x="45.5636%" y="981" width="0.0319%" height="15" fill="rgb(206,164,16)" fg:x="68463" fg:w="48"/><text x="45.8136%" y="991.50"></text></g><g><title>schedule_tail (48 samples, 0.03%)</title><rect x="45.5636%" y="965" width="0.0319%" height="15" fill="rgb(222,34,3)" fg:x="68463" fg:w="48"/><text x="45.8136%" y="975.50"></text></g><g><title>finish_task_switch (48 samples, 0.03%)</title><rect x="45.5636%" y="949" width="0.0319%" height="15" fill="rgb(248,82,4)" fg:x="68463" fg:w="48"/><text x="45.8136%" y="959.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (435 samples, 0.29%)</title><rect x="45.3067%" y="997" width="0.2895%" height="15" fill="rgb(228,81,46)" fg:x="68077" fg:w="435"/><text x="45.5567%" y="1007.50"></text></g><g><title>__libc_start_main (20 samples, 0.01%)</title><rect x="45.5982%" y="981" width="0.0133%" height="15" fill="rgb(227,67,47)" fg:x="68515" fg:w="20"/><text x="45.8482%" y="991.50"></text></g><g><title>_start (35 samples, 0.02%)</title><rect x="45.5982%" y="997" width="0.0233%" height="15" fill="rgb(215,93,53)" fg:x="68515" fg:w="35"/><text x="45.8482%" y="1007.50"></text></g><g><title>bazel (488 samples, 0.32%)</title><rect x="45.3054%" y="1013" width="0.3248%" height="15" fill="rgb(248,194,39)" fg:x="68075" fg:w="488"/><text x="45.5554%" y="1023.50"></text></g><g><title>[libstdc++.so.6.0.28] (16 samples, 0.01%)</title><rect x="45.6428%" y="933" width="0.0106%" height="15" fill="rgb(215,5,19)" fg:x="68582" fg:w="16"/><text x="45.8928%" y="943.50"></text></g><g><title>_dl_start_user (17 samples, 0.01%)</title><rect x="45.6428%" y="997" width="0.0113%" height="15" fill="rgb(226,215,51)" fg:x="68582" fg:w="17"/><text x="45.8928%" y="1007.50"></text></g><g><title>_dl_init (17 samples, 0.01%)</title><rect x="45.6428%" y="981" width="0.0113%" height="15" fill="rgb(225,56,26)" fg:x="68582" fg:w="17"/><text x="45.8928%" y="991.50"></text></g><g><title>call_init (17 samples, 0.01%)</title><rect x="45.6428%" y="965" width="0.0113%" height="15" fill="rgb(222,75,29)" fg:x="68582" fg:w="17"/><text x="45.8928%" y="975.50"></text></g><g><title>call_init (17 samples, 0.01%)</title><rect x="45.6428%" y="949" width="0.0113%" height="15" fill="rgb(236,139,6)" fg:x="68582" fg:w="17"/><text x="45.8928%" y="959.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (21 samples, 0.01%)</title><rect x="45.6561%" y="949" width="0.0140%" height="15" fill="rgb(223,137,36)" fg:x="68602" fg:w="21"/><text x="45.9061%" y="959.50"></text></g><g><title>__libc_start_main (25 samples, 0.02%)</title><rect x="45.6541%" y="981" width="0.0166%" height="15" fill="rgb(226,99,2)" fg:x="68599" fg:w="25"/><text x="45.9041%" y="991.50"></text></g><g><title>main (22 samples, 0.01%)</title><rect x="45.6561%" y="965" width="0.0146%" height="15" fill="rgb(206,133,23)" fg:x="68602" fg:w="22"/><text x="45.9061%" y="975.50"></text></g><g><title>_dl_map_segments (23 samples, 0.02%)</title><rect x="45.6828%" y="837" width="0.0153%" height="15" fill="rgb(243,173,15)" fg:x="68642" fg:w="23"/><text x="45.9328%" y="847.50"></text></g><g><title>__mmap64 (19 samples, 0.01%)</title><rect x="45.6854%" y="821" width="0.0126%" height="15" fill="rgb(228,69,28)" fg:x="68646" fg:w="19"/><text x="45.9354%" y="831.50"></text></g><g><title>__mmap64 (19 samples, 0.01%)</title><rect x="45.6854%" y="805" width="0.0126%" height="15" fill="rgb(212,51,22)" fg:x="68646" fg:w="19"/><text x="45.9354%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="45.6854%" y="789" width="0.0126%" height="15" fill="rgb(227,113,0)" fg:x="68646" fg:w="19"/><text x="45.9354%" y="799.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="45.6854%" y="773" width="0.0126%" height="15" fill="rgb(252,84,27)" fg:x="68646" fg:w="19"/><text x="45.9354%" y="783.50"></text></g><g><title>ksys_mmap_pgoff (18 samples, 0.01%)</title><rect x="45.6861%" y="757" width="0.0120%" height="15" fill="rgb(223,145,39)" fg:x="68647" fg:w="18"/><text x="45.9361%" y="767.50"></text></g><g><title>vm_mmap_pgoff (18 samples, 0.01%)</title><rect x="45.6861%" y="741" width="0.0120%" height="15" fill="rgb(239,219,30)" fg:x="68647" fg:w="18"/><text x="45.9361%" y="751.50"></text></g><g><title>do_mmap (17 samples, 0.01%)</title><rect x="45.6868%" y="725" width="0.0113%" height="15" fill="rgb(224,196,39)" fg:x="68648" fg:w="17"/><text x="45.9368%" y="735.50"></text></g><g><title>mmap_region (17 samples, 0.01%)</title><rect x="45.6868%" y="709" width="0.0113%" height="15" fill="rgb(205,35,43)" fg:x="68648" fg:w="17"/><text x="45.9368%" y="719.50"></text></g><g><title>_dl_map_object_from_fd (30 samples, 0.02%)</title><rect x="45.6814%" y="853" width="0.0200%" height="15" fill="rgb(228,201,21)" fg:x="68640" fg:w="30"/><text x="45.9314%" y="863.50"></text></g><g><title>_dl_map_object_deps (48 samples, 0.03%)</title><rect x="45.6761%" y="917" width="0.0319%" height="15" fill="rgb(237,118,16)" fg:x="68632" fg:w="48"/><text x="45.9261%" y="927.50"></text></g><g><title>_dl_catch_exception (48 samples, 0.03%)</title><rect x="45.6761%" y="901" width="0.0319%" height="15" fill="rgb(241,17,19)" fg:x="68632" fg:w="48"/><text x="45.9261%" y="911.50"></text></g><g><title>openaux (48 samples, 0.03%)</title><rect x="45.6761%" y="885" width="0.0319%" height="15" fill="rgb(214,10,25)" fg:x="68632" fg:w="48"/><text x="45.9261%" y="895.50"></text></g><g><title>_dl_map_object (48 samples, 0.03%)</title><rect x="45.6761%" y="869" width="0.0319%" height="15" fill="rgb(238,37,29)" fg:x="68632" fg:w="48"/><text x="45.9261%" y="879.50"></text></g><g><title>dl_new_hash (33 samples, 0.02%)</title><rect x="45.7433%" y="853" width="0.0220%" height="15" fill="rgb(253,83,25)" fg:x="68733" fg:w="33"/><text x="45.9933%" y="863.50"></text></g><g><title>check_match (16 samples, 0.01%)</title><rect x="45.7833%" y="837" width="0.0106%" height="15" fill="rgb(234,192,12)" fg:x="68793" fg:w="16"/><text x="46.0333%" y="847.50"></text></g><g><title>_dl_lookup_symbol_x (85 samples, 0.06%)</title><rect x="45.7420%" y="869" width="0.0566%" height="15" fill="rgb(241,216,45)" fg:x="68731" fg:w="85"/><text x="45.9920%" y="879.50"></text></g><g><title>do_lookup_x (50 samples, 0.03%)</title><rect x="45.7653%" y="853" width="0.0333%" height="15" fill="rgb(242,22,33)" fg:x="68766" fg:w="50"/><text x="46.0153%" y="863.50"></text></g><g><title>elf_machine_rela (110 samples, 0.07%)</title><rect x="45.7260%" y="885" width="0.0732%" height="15" fill="rgb(231,105,49)" fg:x="68707" fg:w="110"/><text x="45.9760%" y="895.50"></text></g><g><title>_dl_relocate_object (142 samples, 0.09%)</title><rect x="45.7107%" y="917" width="0.0945%" height="15" fill="rgb(218,204,15)" fg:x="68684" fg:w="142"/><text x="45.9607%" y="927.50"></text></g><g><title>elf_dynamic_do_Rela (136 samples, 0.09%)</title><rect x="45.7147%" y="901" width="0.0905%" height="15" fill="rgb(235,138,41)" fg:x="68690" fg:w="136"/><text x="45.9647%" y="911.50"></text></g><g><title>[ld-2.31.so] (206 samples, 0.14%)</title><rect x="45.6708%" y="933" width="0.1371%" height="15" fill="rgb(246,0,9)" fg:x="68624" fg:w="206"/><text x="45.9208%" y="943.50"></text></g><g><title>_dl_start_final (213 samples, 0.14%)</title><rect x="45.6708%" y="965" width="0.1418%" height="15" fill="rgb(210,74,4)" fg:x="68624" fg:w="213"/><text x="45.9208%" y="975.50"></text></g><g><title>_dl_sysdep_start (213 samples, 0.14%)</title><rect x="45.6708%" y="949" width="0.1418%" height="15" fill="rgb(250,60,41)" fg:x="68624" fg:w="213"/><text x="45.9208%" y="959.50"></text></g><g><title>_dl_start (215 samples, 0.14%)</title><rect x="45.6708%" y="981" width="0.1431%" height="15" fill="rgb(220,115,12)" fg:x="68624" fg:w="215"/><text x="45.9208%" y="991.50"></text></g><g><title>_start (244 samples, 0.16%)</title><rect x="45.6541%" y="997" width="0.1624%" height="15" fill="rgb(237,100,13)" fg:x="68599" fg:w="244"/><text x="45.9041%" y="1007.50"></text></g><g><title>__x64_sys_execve (16 samples, 0.01%)</title><rect x="45.8219%" y="965" width="0.0106%" height="15" fill="rgb(213,55,26)" fg:x="68851" fg:w="16"/><text x="46.0719%" y="975.50"></text></g><g><title>do_execveat_common (16 samples, 0.01%)</title><rect x="45.8219%" y="949" width="0.0106%" height="15" fill="rgb(216,17,4)" fg:x="68851" fg:w="16"/><text x="46.0719%" y="959.50"></text></g><g><title>bprm_execve (16 samples, 0.01%)</title><rect x="45.8219%" y="933" width="0.0106%" height="15" fill="rgb(220,153,47)" fg:x="68851" fg:w="16"/><text x="46.0719%" y="943.50"></text></g><g><title>load_elf_binary (16 samples, 0.01%)</title><rect x="45.8219%" y="917" width="0.0106%" height="15" fill="rgb(215,131,9)" fg:x="68851" fg:w="16"/><text x="46.0719%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="45.8219%" y="997" width="0.0220%" height="15" fill="rgb(233,46,42)" fg:x="68851" fg:w="33"/><text x="46.0719%" y="1007.50"></text></g><g><title>do_syscall_64 (33 samples, 0.02%)</title><rect x="45.8219%" y="981" width="0.0220%" height="15" fill="rgb(226,86,7)" fg:x="68851" fg:w="33"/><text x="46.0719%" y="991.50"></text></g><g><title>__x64_sys_exit_group (17 samples, 0.01%)</title><rect x="45.8325%" y="965" width="0.0113%" height="15" fill="rgb(239,226,21)" fg:x="68867" fg:w="17"/><text x="46.0825%" y="975.50"></text></g><g><title>do_group_exit (17 samples, 0.01%)</title><rect x="45.8325%" y="949" width="0.0113%" height="15" fill="rgb(244,137,22)" fg:x="68867" fg:w="17"/><text x="46.0825%" y="959.50"></text></g><g><title>do_exit (17 samples, 0.01%)</title><rect x="45.8325%" y="933" width="0.0113%" height="15" fill="rgb(211,139,35)" fg:x="68867" fg:w="17"/><text x="46.0825%" y="943.50"></text></g><g><title>build-runfiles (321 samples, 0.21%)</title><rect x="45.6308%" y="1013" width="0.2136%" height="15" fill="rgb(214,62,50)" fg:x="68564" fg:w="321"/><text x="45.8808%" y="1023.50"></text></g><g><title>do_mmap (18 samples, 0.01%)</title><rect x="45.8824%" y="549" width="0.0120%" height="15" fill="rgb(212,113,44)" fg:x="68942" fg:w="18"/><text x="46.1324%" y="559.50"></text></g><g><title>mmap_region (18 samples, 0.01%)</title><rect x="45.8824%" y="533" width="0.0120%" height="15" fill="rgb(226,150,43)" fg:x="68942" fg:w="18"/><text x="46.1324%" y="543.50"></text></g><g><title>ksys_mmap_pgoff (19 samples, 0.01%)</title><rect x="45.8824%" y="581" width="0.0126%" height="15" fill="rgb(250,71,37)" fg:x="68942" fg:w="19"/><text x="46.1324%" y="591.50"></text></g><g><title>vm_mmap_pgoff (19 samples, 0.01%)</title><rect x="45.8824%" y="565" width="0.0126%" height="15" fill="rgb(219,76,19)" fg:x="68942" fg:w="19"/><text x="46.1324%" y="575.50"></text></g><g><title>_dl_map_segments (21 samples, 0.01%)</title><rect x="45.8824%" y="661" width="0.0140%" height="15" fill="rgb(250,39,11)" fg:x="68942" fg:w="21"/><text x="46.1324%" y="671.50"></text></g><g><title>__mmap64 (21 samples, 0.01%)</title><rect x="45.8824%" y="645" width="0.0140%" height="15" fill="rgb(230,64,31)" fg:x="68942" fg:w="21"/><text x="46.1324%" y="655.50"></text></g><g><title>__mmap64 (21 samples, 0.01%)</title><rect x="45.8824%" y="629" width="0.0140%" height="15" fill="rgb(208,222,23)" fg:x="68942" fg:w="21"/><text x="46.1324%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="45.8824%" y="613" width="0.0140%" height="15" fill="rgb(227,125,18)" fg:x="68942" fg:w="21"/><text x="46.1324%" y="623.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="45.8824%" y="597" width="0.0140%" height="15" fill="rgb(234,210,9)" fg:x="68942" fg:w="21"/><text x="46.1324%" y="607.50"></text></g><g><title>_dl_map_object_from_fd (25 samples, 0.02%)</title><rect x="45.8818%" y="677" width="0.0166%" height="15" fill="rgb(217,127,24)" fg:x="68941" fg:w="25"/><text x="46.1318%" y="687.50"></text></g><g><title>_dl_map_object (27 samples, 0.02%)</title><rect x="45.8818%" y="693" width="0.0180%" height="15" fill="rgb(239,141,48)" fg:x="68941" fg:w="27"/><text x="46.1318%" y="703.50"></text></g><g><title>__GI___nss_lookup (30 samples, 0.02%)</title><rect x="45.8818%" y="869" width="0.0200%" height="15" fill="rgb(227,109,8)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="879.50"></text></g><g><title>__GI___nss_lookup_function (30 samples, 0.02%)</title><rect x="45.8818%" y="853" width="0.0200%" height="15" fill="rgb(235,184,23)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="863.50"></text></g><g><title>nss_load_library (30 samples, 0.02%)</title><rect x="45.8818%" y="837" width="0.0200%" height="15" fill="rgb(227,226,48)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="847.50"></text></g><g><title>__GI___libc_dlopen_mode (30 samples, 0.02%)</title><rect x="45.8818%" y="821" width="0.0200%" height="15" fill="rgb(206,150,11)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="831.50"></text></g><g><title>dlerror_run (30 samples, 0.02%)</title><rect x="45.8818%" y="805" width="0.0200%" height="15" fill="rgb(254,2,33)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="815.50"></text></g><g><title>__GI__dl_catch_error (30 samples, 0.02%)</title><rect x="45.8818%" y="789" width="0.0200%" height="15" fill="rgb(243,160,20)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="799.50"></text></g><g><title>__GI__dl_catch_exception (30 samples, 0.02%)</title><rect x="45.8818%" y="773" width="0.0200%" height="15" fill="rgb(218,208,30)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="783.50"></text></g><g><title>do_dlopen (30 samples, 0.02%)</title><rect x="45.8818%" y="757" width="0.0200%" height="15" fill="rgb(224,120,49)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="767.50"></text></g><g><title>_dl_open (30 samples, 0.02%)</title><rect x="45.8818%" y="741" width="0.0200%" height="15" fill="rgb(246,12,2)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="751.50"></text></g><g><title>__GI__dl_catch_exception (30 samples, 0.02%)</title><rect x="45.8818%" y="725" width="0.0200%" height="15" fill="rgb(236,117,3)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="735.50"></text></g><g><title>dl_open_worker (30 samples, 0.02%)</title><rect x="45.8818%" y="709" width="0.0200%" height="15" fill="rgb(216,128,52)" fg:x="68941" fg:w="30"/><text x="46.1318%" y="719.50"></text></g><g><title>getpwuid (42 samples, 0.03%)</title><rect x="45.8818%" y="901" width="0.0280%" height="15" fill="rgb(246,145,19)" fg:x="68941" fg:w="42"/><text x="46.1318%" y="911.50"></text></g><g><title>__getpwuid_r (42 samples, 0.03%)</title><rect x="45.8818%" y="885" width="0.0280%" height="15" fill="rgb(222,11,46)" fg:x="68941" fg:w="42"/><text x="46.1318%" y="895.50"></text></g><g><title>[bash] (50 samples, 0.03%)</title><rect x="45.8784%" y="917" width="0.0333%" height="15" fill="rgb(245,82,36)" fg:x="68936" fg:w="50"/><text x="46.1284%" y="927.50"></text></g><g><title>initialize_shell_variables (58 samples, 0.04%)</title><rect x="45.8784%" y="933" width="0.0386%" height="15" fill="rgb(250,73,51)" fg:x="68936" fg:w="58"/><text x="46.1284%" y="943.50"></text></g><g><title>[bash] (88 samples, 0.06%)</title><rect x="45.8684%" y="949" width="0.0586%" height="15" fill="rgb(221,189,23)" fg:x="68921" fg:w="88"/><text x="46.1184%" y="959.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="45.9416%" y="885" width="0.0133%" height="15" fill="rgb(210,33,7)" fg:x="69031" fg:w="20"/><text x="46.1916%" y="895.50"></text></g><g><title>execute_command (21 samples, 0.01%)</title><rect x="45.9416%" y="901" width="0.0140%" height="15" fill="rgb(210,107,22)" fg:x="69031" fg:w="21"/><text x="46.1916%" y="911.50"></text></g><g><title>execute_command (26 samples, 0.02%)</title><rect x="45.9403%" y="933" width="0.0173%" height="15" fill="rgb(222,116,37)" fg:x="69029" fg:w="26"/><text x="46.1903%" y="943.50"></text></g><g><title>execute_command_internal (26 samples, 0.02%)</title><rect x="45.9403%" y="917" width="0.0173%" height="15" fill="rgb(254,17,48)" fg:x="69029" fg:w="26"/><text x="46.1903%" y="927.50"></text></g><g><title>reader_loop (51 samples, 0.03%)</title><rect x="45.9403%" y="949" width="0.0339%" height="15" fill="rgb(224,36,32)" fg:x="69029" fg:w="51"/><text x="46.1903%" y="959.50"></text></g><g><title>read_command (25 samples, 0.02%)</title><rect x="45.9576%" y="933" width="0.0166%" height="15" fill="rgb(232,90,46)" fg:x="69055" fg:w="25"/><text x="46.2076%" y="943.50"></text></g><g><title>parse_command (25 samples, 0.02%)</title><rect x="45.9576%" y="917" width="0.0166%" height="15" fill="rgb(241,66,40)" fg:x="69055" fg:w="25"/><text x="46.2076%" y="927.50"></text></g><g><title>yyparse (25 samples, 0.02%)</title><rect x="45.9576%" y="901" width="0.0166%" height="15" fill="rgb(249,184,29)" fg:x="69055" fg:w="25"/><text x="46.2076%" y="911.50"></text></g><g><title>[bash] (21 samples, 0.01%)</title><rect x="45.9603%" y="885" width="0.0140%" height="15" fill="rgb(231,181,1)" fg:x="69059" fg:w="21"/><text x="46.2103%" y="895.50"></text></g><g><title>set_default_locale (25 samples, 0.02%)</title><rect x="45.9769%" y="949" width="0.0166%" height="15" fill="rgb(224,94,2)" fg:x="69084" fg:w="25"/><text x="46.2269%" y="959.50"></text></g><g><title>xmalloc (18 samples, 0.01%)</title><rect x="45.9816%" y="933" width="0.0120%" height="15" fill="rgb(229,170,15)" fg:x="69091" fg:w="18"/><text x="46.2316%" y="943.50"></text></g><g><title>malloc_hook_ini (17 samples, 0.01%)</title><rect x="45.9822%" y="917" width="0.0113%" height="15" fill="rgb(240,127,35)" fg:x="69092" fg:w="17"/><text x="46.2322%" y="927.50"></text></g><g><title>ptmalloc_init (17 samples, 0.01%)</title><rect x="45.9822%" y="901" width="0.0113%" height="15" fill="rgb(248,196,34)" fg:x="69092" fg:w="17"/><text x="46.2322%" y="911.50"></text></g><g><title>ptmalloc_init (17 samples, 0.01%)</title><rect x="45.9822%" y="885" width="0.0113%" height="15" fill="rgb(236,137,7)" fg:x="69092" fg:w="17"/><text x="46.2322%" y="895.50"></text></g><g><title>__GI__dl_addr (16 samples, 0.01%)</title><rect x="45.9829%" y="869" width="0.0106%" height="15" fill="rgb(235,127,16)" fg:x="69093" fg:w="16"/><text x="46.2329%" y="879.50"></text></g><g><title>__libc_start_main (196 samples, 0.13%)</title><rect x="45.8684%" y="981" width="0.1304%" height="15" fill="rgb(250,192,54)" fg:x="68921" fg:w="196"/><text x="46.1184%" y="991.50"></text></g><g><title>main (196 samples, 0.13%)</title><rect x="45.8684%" y="965" width="0.1304%" height="15" fill="rgb(218,98,20)" fg:x="68921" fg:w="196"/><text x="46.1184%" y="975.50"></text></g><g><title>_dl_map_segments (32 samples, 0.02%)</title><rect x="46.0035%" y="837" width="0.0213%" height="15" fill="rgb(230,176,47)" fg:x="69124" fg:w="32"/><text x="46.2535%" y="847.50"></text></g><g><title>__mmap64 (26 samples, 0.02%)</title><rect x="46.0075%" y="821" width="0.0173%" height="15" fill="rgb(244,2,33)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="831.50"></text></g><g><title>__mmap64 (26 samples, 0.02%)</title><rect x="46.0075%" y="805" width="0.0173%" height="15" fill="rgb(231,100,17)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="46.0075%" y="789" width="0.0173%" height="15" fill="rgb(245,23,12)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="799.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="46.0075%" y="773" width="0.0173%" height="15" fill="rgb(249,55,22)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="783.50"></text></g><g><title>ksys_mmap_pgoff (26 samples, 0.02%)</title><rect x="46.0075%" y="757" width="0.0173%" height="15" fill="rgb(207,134,9)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="767.50"></text></g><g><title>vm_mmap_pgoff (26 samples, 0.02%)</title><rect x="46.0075%" y="741" width="0.0173%" height="15" fill="rgb(218,134,0)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="751.50"></text></g><g><title>do_mmap (26 samples, 0.02%)</title><rect x="46.0075%" y="725" width="0.0173%" height="15" fill="rgb(213,212,33)" fg:x="69130" fg:w="26"/><text x="46.2575%" y="735.50"></text></g><g><title>mmap_region (25 samples, 0.02%)</title><rect x="46.0082%" y="709" width="0.0166%" height="15" fill="rgb(252,106,18)" fg:x="69131" fg:w="25"/><text x="46.2582%" y="719.50"></text></g><g><title>_dl_map_object_from_fd (42 samples, 0.03%)</title><rect x="46.0022%" y="853" width="0.0280%" height="15" fill="rgb(208,126,42)" fg:x="69122" fg:w="42"/><text x="46.2522%" y="863.50"></text></g><g><title>_dl_map_object_deps (54 samples, 0.04%)</title><rect x="46.0009%" y="917" width="0.0359%" height="15" fill="rgb(246,175,29)" fg:x="69120" fg:w="54"/><text x="46.2509%" y="927.50"></text></g><g><title>_dl_catch_exception (53 samples, 0.04%)</title><rect x="46.0015%" y="901" width="0.0353%" height="15" fill="rgb(215,13,50)" fg:x="69121" fg:w="53"/><text x="46.2515%" y="911.50"></text></g><g><title>openaux (53 samples, 0.04%)</title><rect x="46.0015%" y="885" width="0.0353%" height="15" fill="rgb(216,172,15)" fg:x="69121" fg:w="53"/><text x="46.2515%" y="895.50"></text></g><g><title>_dl_map_object (53 samples, 0.04%)</title><rect x="46.0015%" y="869" width="0.0353%" height="15" fill="rgb(212,103,13)" fg:x="69121" fg:w="53"/><text x="46.2515%" y="879.50"></text></g><g><title>_dl_lookup_symbol_x (37 samples, 0.02%)</title><rect x="46.0648%" y="869" width="0.0246%" height="15" fill="rgb(231,171,36)" fg:x="69216" fg:w="37"/><text x="46.3148%" y="879.50"></text></g><g><title>do_lookup_x (28 samples, 0.02%)</title><rect x="46.0708%" y="853" width="0.0186%" height="15" fill="rgb(250,123,20)" fg:x="69225" fg:w="28"/><text x="46.3208%" y="863.50"></text></g><g><title>elf_machine_rela (48 samples, 0.03%)</title><rect x="46.0581%" y="885" width="0.0319%" height="15" fill="rgb(212,53,50)" fg:x="69206" fg:w="48"/><text x="46.3081%" y="895.50"></text></g><g><title>_dl_relocate_object (93 samples, 0.06%)</title><rect x="46.0395%" y="917" width="0.0619%" height="15" fill="rgb(243,54,12)" fg:x="69178" fg:w="93"/><text x="46.2895%" y="927.50"></text></g><g><title>elf_dynamic_do_Rela (82 samples, 0.05%)</title><rect x="46.0468%" y="901" width="0.0546%" height="15" fill="rgb(234,101,34)" fg:x="69189" fg:w="82"/><text x="46.2968%" y="911.50"></text></g><g><title>elf_machine_rela_relative (17 samples, 0.01%)</title><rect x="46.0901%" y="885" width="0.0113%" height="15" fill="rgb(254,67,22)" fg:x="69254" fg:w="17"/><text x="46.3401%" y="895.50"></text></g><g><title>[ld-2.31.so] (155 samples, 0.10%)</title><rect x="46.0002%" y="933" width="0.1032%" height="15" fill="rgb(250,35,47)" fg:x="69119" fg:w="155"/><text x="46.2502%" y="943.50"></text></g><g><title>_dl_start_final (161 samples, 0.11%)</title><rect x="45.9989%" y="965" width="0.1071%" height="15" fill="rgb(226,126,38)" fg:x="69117" fg:w="161"/><text x="46.2489%" y="975.50"></text></g><g><title>_dl_sysdep_start (160 samples, 0.11%)</title><rect x="45.9995%" y="949" width="0.1065%" height="15" fill="rgb(216,138,53)" fg:x="69118" fg:w="160"/><text x="46.2495%" y="959.50"></text></g><g><title>_dl_start (166 samples, 0.11%)</title><rect x="45.9989%" y="981" width="0.1105%" height="15" fill="rgb(246,199,43)" fg:x="69117" fg:w="166"/><text x="46.2489%" y="991.50"></text></g><g><title>_start (366 samples, 0.24%)</title><rect x="45.8678%" y="997" width="0.2436%" height="15" fill="rgb(232,125,11)" fg:x="68920" fg:w="366"/><text x="46.1178%" y="1007.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="46.1114%" y="997" width="0.0113%" height="15" fill="rgb(218,219,45)" fg:x="69286" fg:w="17"/><text x="46.3614%" y="1007.50"></text></g><g><title>begin_new_exec (24 samples, 0.02%)</title><rect x="46.1293%" y="901" width="0.0160%" height="15" fill="rgb(216,102,54)" fg:x="69313" fg:w="24"/><text x="46.3793%" y="911.50"></text></g><g><title>mmput (24 samples, 0.02%)</title><rect x="46.1293%" y="885" width="0.0160%" height="15" fill="rgb(250,228,7)" fg:x="69313" fg:w="24"/><text x="46.3793%" y="895.50"></text></g><g><title>exit_mmap (24 samples, 0.02%)</title><rect x="46.1293%" y="869" width="0.0160%" height="15" fill="rgb(226,125,25)" fg:x="69313" fg:w="24"/><text x="46.3793%" y="879.50"></text></g><g><title>elf_map (17 samples, 0.01%)</title><rect x="46.1453%" y="901" width="0.0113%" height="15" fill="rgb(224,165,27)" fg:x="69337" fg:w="17"/><text x="46.3953%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="46.1233%" y="997" width="0.0419%" height="15" fill="rgb(233,86,3)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="1007.50"></text></g><g><title>do_syscall_64 (63 samples, 0.04%)</title><rect x="46.1233%" y="981" width="0.0419%" height="15" fill="rgb(228,116,20)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="991.50"></text></g><g><title>__x64_sys_execve (63 samples, 0.04%)</title><rect x="46.1233%" y="965" width="0.0419%" height="15" fill="rgb(209,192,17)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="975.50"></text></g><g><title>do_execveat_common (63 samples, 0.04%)</title><rect x="46.1233%" y="949" width="0.0419%" height="15" fill="rgb(224,88,34)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="959.50"></text></g><g><title>bprm_execve (63 samples, 0.04%)</title><rect x="46.1233%" y="933" width="0.0419%" height="15" fill="rgb(233,38,6)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="943.50"></text></g><g><title>load_elf_binary (63 samples, 0.04%)</title><rect x="46.1233%" y="917" width="0.0419%" height="15" fill="rgb(212,59,30)" fg:x="69304" fg:w="63"/><text x="46.3733%" y="927.50"></text></g><g><title>cc_wrapper.sh (483 samples, 0.32%)</title><rect x="45.8445%" y="1013" width="0.3214%" height="15" fill="rgb(213,80,3)" fg:x="68885" fg:w="483"/><text x="46.0945%" y="1023.50"></text></g><g><title>[[stack]] (18 samples, 0.01%)</title><rect x="46.1706%" y="997" width="0.0120%" height="15" fill="rgb(251,178,7)" fg:x="69375" fg:w="18"/><text x="46.4206%" y="1007.50"></text></g><g><title>filemap_map_pages (44 samples, 0.03%)</title><rect x="47.4158%" y="901" width="0.0293%" height="15" fill="rgb(213,154,26)" fg:x="71246" fg:w="44"/><text x="47.6658%" y="911.50"></text></g><g><title>handle_mm_fault (71 samples, 0.05%)</title><rect x="47.4045%" y="917" width="0.0473%" height="15" fill="rgb(238,165,49)" fg:x="71229" fg:w="71"/><text x="47.6545%" y="927.50"></text></g><g><title>asm_exc_page_fault (78 samples, 0.05%)</title><rect x="47.4011%" y="965" width="0.0519%" height="15" fill="rgb(248,91,46)" fg:x="71224" fg:w="78"/><text x="47.6511%" y="975.50"></text></g><g><title>exc_page_fault (77 samples, 0.05%)</title><rect x="47.4018%" y="949" width="0.0512%" height="15" fill="rgb(244,21,52)" fg:x="71225" fg:w="77"/><text x="47.6518%" y="959.50"></text></g><g><title>do_user_addr_fault (77 samples, 0.05%)</title><rect x="47.4018%" y="933" width="0.0512%" height="15" fill="rgb(247,122,20)" fg:x="71225" fg:w="77"/><text x="47.6518%" y="943.50"></text></g><g><title>[libc-2.31.so] (217 samples, 0.14%)</title><rect x="47.3140%" y="981" width="0.1444%" height="15" fill="rgb(218,27,9)" fg:x="71093" fg:w="217"/><text x="47.5640%" y="991.50"></text></g><g><title>filename_lookup (21 samples, 0.01%)</title><rect x="47.4597%" y="917" width="0.0140%" height="15" fill="rgb(246,7,6)" fg:x="71312" fg:w="21"/><text x="47.7097%" y="927.50"></text></g><g><title>path_lookupat (20 samples, 0.01%)</title><rect x="47.4604%" y="901" width="0.0133%" height="15" fill="rgb(227,135,54)" fg:x="71313" fg:w="20"/><text x="47.7104%" y="911.50"></text></g><g><title>__GI___access (33 samples, 0.02%)</title><rect x="47.4584%" y="981" width="0.0220%" height="15" fill="rgb(247,14,11)" fg:x="71310" fg:w="33"/><text x="47.7084%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="47.4584%" y="965" width="0.0220%" height="15" fill="rgb(206,149,34)" fg:x="71310" fg:w="33"/><text x="47.7084%" y="975.50"></text></g><g><title>do_syscall_64 (33 samples, 0.02%)</title><rect x="47.4584%" y="949" width="0.0220%" height="15" fill="rgb(227,228,4)" fg:x="71310" fg:w="33"/><text x="47.7084%" y="959.50"></text></g><g><title>do_faccessat (33 samples, 0.02%)</title><rect x="47.4584%" y="933" width="0.0220%" height="15" fill="rgb(238,218,28)" fg:x="71310" fg:w="33"/><text x="47.7084%" y="943.50"></text></g><g><title>filename_lookup (21 samples, 0.01%)</title><rect x="47.5269%" y="901" width="0.0140%" height="15" fill="rgb(252,86,40)" fg:x="71413" fg:w="21"/><text x="47.7769%" y="911.50"></text></g><g><title>path_lookupat (20 samples, 0.01%)</title><rect x="47.5276%" y="885" width="0.0133%" height="15" fill="rgb(251,225,11)" fg:x="71414" fg:w="20"/><text x="47.7776%" y="895.50"></text></g><g><title>__GI___readlink (31 samples, 0.02%)</title><rect x="47.5269%" y="981" width="0.0206%" height="15" fill="rgb(206,46,49)" fg:x="71413" fg:w="31"/><text x="47.7769%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="47.5269%" y="965" width="0.0206%" height="15" fill="rgb(245,128,24)" fg:x="71413" fg:w="31"/><text x="47.7769%" y="975.50"></text></g><g><title>do_syscall_64 (31 samples, 0.02%)</title><rect x="47.5269%" y="949" width="0.0206%" height="15" fill="rgb(219,177,34)" fg:x="71413" fg:w="31"/><text x="47.7769%" y="959.50"></text></g><g><title>__x64_sys_readlink (31 samples, 0.02%)</title><rect x="47.5269%" y="933" width="0.0206%" height="15" fill="rgb(218,60,48)" fg:x="71413" fg:w="31"/><text x="47.7769%" y="943.50"></text></g><g><title>do_readlinkat (31 samples, 0.02%)</title><rect x="47.5269%" y="917" width="0.0206%" height="15" fill="rgb(221,11,5)" fg:x="71413" fg:w="31"/><text x="47.7769%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.03%)</title><rect x="47.5575%" y="837" width="0.0273%" height="15" fill="rgb(220,148,13)" fg:x="71459" fg:w="41"/><text x="47.8075%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (41 samples, 0.03%)</title><rect x="47.5575%" y="821" width="0.0273%" height="15" fill="rgb(210,16,3)" fg:x="71459" fg:w="41"/><text x="47.8075%" y="831.50"></text></g><g><title>native_write_msr (41 samples, 0.03%)</title><rect x="47.5575%" y="805" width="0.0273%" height="15" fill="rgb(236,80,2)" fg:x="71459" fg:w="41"/><text x="47.8075%" y="815.50"></text></g><g><title>schedule (45 samples, 0.03%)</title><rect x="47.5562%" y="885" width="0.0299%" height="15" fill="rgb(239,129,19)" fg:x="71457" fg:w="45"/><text x="47.8062%" y="895.50"></text></g><g><title>__schedule (44 samples, 0.03%)</title><rect x="47.5569%" y="869" width="0.0293%" height="15" fill="rgb(220,106,35)" fg:x="71458" fg:w="44"/><text x="47.8069%" y="879.50"></text></g><g><title>finish_task_switch (44 samples, 0.03%)</title><rect x="47.5569%" y="853" width="0.0293%" height="15" fill="rgb(252,139,45)" fg:x="71458" fg:w="44"/><text x="47.8069%" y="863.50"></text></g><g><title>__GI___wait4 (60 samples, 0.04%)</title><rect x="47.5529%" y="981" width="0.0399%" height="15" fill="rgb(229,8,36)" fg:x="71452" fg:w="60"/><text x="47.8029%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.04%)</title><rect x="47.5529%" y="965" width="0.0399%" height="15" fill="rgb(230,126,33)" fg:x="71452" fg:w="60"/><text x="47.8029%" y="975.50"></text></g><g><title>do_syscall_64 (60 samples, 0.04%)</title><rect x="47.5529%" y="949" width="0.0399%" height="15" fill="rgb(239,140,21)" fg:x="71452" fg:w="60"/><text x="47.8029%" y="959.50"></text></g><g><title>__do_sys_wait4 (59 samples, 0.04%)</title><rect x="47.5535%" y="933" width="0.0393%" height="15" fill="rgb(254,104,9)" fg:x="71453" fg:w="59"/><text x="47.8035%" y="943.50"></text></g><g><title>kernel_wait4 (59 samples, 0.04%)</title><rect x="47.5535%" y="917" width="0.0393%" height="15" fill="rgb(239,52,14)" fg:x="71453" fg:w="59"/><text x="47.8035%" y="927.50"></text></g><g><title>do_wait (58 samples, 0.04%)</title><rect x="47.5542%" y="901" width="0.0386%" height="15" fill="rgb(208,227,44)" fg:x="71454" fg:w="58"/><text x="47.8042%" y="911.50"></text></g><g><title>filename_lookup (26 samples, 0.02%)</title><rect x="47.5975%" y="901" width="0.0173%" height="15" fill="rgb(246,18,19)" fg:x="71519" fg:w="26"/><text x="47.8475%" y="911.50"></text></g><g><title>path_lookupat (25 samples, 0.02%)</title><rect x="47.5981%" y="885" width="0.0166%" height="15" fill="rgb(235,228,25)" fg:x="71520" fg:w="25"/><text x="47.8481%" y="895.50"></text></g><g><title>__GI___xstat (52 samples, 0.03%)</title><rect x="47.5928%" y="981" width="0.0346%" height="15" fill="rgb(240,156,20)" fg:x="71512" fg:w="52"/><text x="47.8428%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.03%)</title><rect x="47.5948%" y="965" width="0.0326%" height="15" fill="rgb(224,8,20)" fg:x="71515" fg:w="49"/><text x="47.8448%" y="975.50"></text></g><g><title>do_syscall_64 (49 samples, 0.03%)</title><rect x="47.5948%" y="949" width="0.0326%" height="15" fill="rgb(214,12,52)" fg:x="71515" fg:w="49"/><text x="47.8448%" y="959.50"></text></g><g><title>__do_sys_newstat (49 samples, 0.03%)</title><rect x="47.5948%" y="933" width="0.0326%" height="15" fill="rgb(211,220,47)" fg:x="71515" fg:w="49"/><text x="47.8448%" y="943.50"></text></g><g><title>vfs_statx (47 samples, 0.03%)</title><rect x="47.5961%" y="917" width="0.0313%" height="15" fill="rgb(250,173,5)" fg:x="71517" fg:w="47"/><text x="47.8461%" y="927.50"></text></g><g><title>user_path_at_empty (17 samples, 0.01%)</title><rect x="47.6161%" y="901" width="0.0113%" height="15" fill="rgb(250,125,52)" fg:x="71547" fg:w="17"/><text x="47.8661%" y="911.50"></text></g><g><title>getname_flags.part.0 (17 samples, 0.01%)</title><rect x="47.6161%" y="885" width="0.0113%" height="15" fill="rgb(209,133,18)" fg:x="71547" fg:w="17"/><text x="47.8661%" y="895.50"></text></g><g><title>btrfs_create (16 samples, 0.01%)</title><rect x="47.6667%" y="869" width="0.0106%" height="15" fill="rgb(216,173,22)" fg:x="71623" fg:w="16"/><text x="47.9167%" y="879.50"></text></g><g><title>do_filp_open (49 samples, 0.03%)</title><rect x="47.6620%" y="901" width="0.0326%" height="15" fill="rgb(205,3,22)" fg:x="71616" fg:w="49"/><text x="47.9120%" y="911.50"></text></g><g><title>path_openat (48 samples, 0.03%)</title><rect x="47.6627%" y="885" width="0.0319%" height="15" fill="rgb(248,22,20)" fg:x="71617" fg:w="48"/><text x="47.9127%" y="895.50"></text></g><g><title>do_syscall_64 (54 samples, 0.04%)</title><rect x="47.6600%" y="949" width="0.0359%" height="15" fill="rgb(233,6,29)" fg:x="71613" fg:w="54"/><text x="47.9100%" y="959.50"></text></g><g><title>__x64_sys_openat (54 samples, 0.04%)</title><rect x="47.6600%" y="933" width="0.0359%" height="15" fill="rgb(240,22,54)" fg:x="71613" fg:w="54"/><text x="47.9100%" y="943.50"></text></g><g><title>do_sys_openat2 (54 samples, 0.04%)</title><rect x="47.6600%" y="917" width="0.0359%" height="15" fill="rgb(231,133,32)" fg:x="71613" fg:w="54"/><text x="47.9100%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.04%)</title><rect x="47.6600%" y="965" width="0.0366%" height="15" fill="rgb(248,193,4)" fg:x="71613" fg:w="55"/><text x="47.9100%" y="975.50"></text></g><g><title>__libc_open64 (56 samples, 0.04%)</title><rect x="47.6600%" y="981" width="0.0373%" height="15" fill="rgb(211,178,46)" fg:x="71613" fg:w="56"/><text x="47.9100%" y="991.50"></text></g><g><title>__GI___open64_nocancel (16 samples, 0.01%)</title><rect x="47.7193%" y="965" width="0.0106%" height="15" fill="rgb(224,5,42)" fg:x="71702" fg:w="16"/><text x="47.9693%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="47.7193%" y="949" width="0.0106%" height="15" fill="rgb(239,176,25)" fg:x="71702" fg:w="16"/><text x="47.9693%" y="959.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="47.7193%" y="933" width="0.0106%" height="15" fill="rgb(245,187,50)" fg:x="71702" fg:w="16"/><text x="47.9693%" y="943.50"></text></g><g><title>__x64_sys_openat (16 samples, 0.01%)</title><rect x="47.7193%" y="917" width="0.0106%" height="15" fill="rgb(248,24,15)" fg:x="71702" fg:w="16"/><text x="47.9693%" y="927.50"></text></g><g><title>do_sys_openat2 (16 samples, 0.01%)</title><rect x="47.7193%" y="901" width="0.0106%" height="15" fill="rgb(205,166,13)" fg:x="71702" fg:w="16"/><text x="47.9693%" y="911.50"></text></g><g><title>__opendir (18 samples, 0.01%)</title><rect x="47.7193%" y="981" width="0.0120%" height="15" fill="rgb(208,114,23)" fg:x="71702" fg:w="18"/><text x="47.9693%" y="991.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="47.7379%" y="933" width="0.0166%" height="15" fill="rgb(239,127,18)" fg:x="71730" fg:w="25"/><text x="47.9879%" y="943.50"></text></g><g><title>__x64_sys_futex (25 samples, 0.02%)</title><rect x="47.7379%" y="917" width="0.0166%" height="15" fill="rgb(219,154,28)" fg:x="71730" fg:w="25"/><text x="47.9879%" y="927.50"></text></g><g><title>do_futex (24 samples, 0.02%)</title><rect x="47.7386%" y="901" width="0.0160%" height="15" fill="rgb(225,157,23)" fg:x="71731" fg:w="24"/><text x="47.9886%" y="911.50"></text></g><g><title>futex_wake (24 samples, 0.02%)</title><rect x="47.7386%" y="885" width="0.0160%" height="15" fill="rgb(219,8,6)" fg:x="71731" fg:w="24"/><text x="47.9886%" y="895.50"></text></g><g><title>__pthread_once_slow (36 samples, 0.02%)</title><rect x="47.7312%" y="981" width="0.0240%" height="15" fill="rgb(212,47,6)" fg:x="71720" fg:w="36"/><text x="47.9812%" y="991.50"></text></g><g><title>futex_wake (33 samples, 0.02%)</title><rect x="47.7332%" y="965" width="0.0220%" height="15" fill="rgb(224,190,4)" fg:x="71723" fg:w="33"/><text x="47.9832%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="47.7372%" y="949" width="0.0180%" height="15" fill="rgb(239,183,29)" fg:x="71729" fg:w="27"/><text x="47.9872%" y="959.50"></text></g><g><title>[ld-2.31.so] (22 samples, 0.01%)</title><rect x="47.7599%" y="965" width="0.0146%" height="15" fill="rgb(213,57,7)" fg:x="71763" fg:w="22"/><text x="48.0099%" y="975.50"></text></g><g><title>_dl_lookup_symbol_x (22 samples, 0.01%)</title><rect x="47.7599%" y="949" width="0.0146%" height="15" fill="rgb(216,148,1)" fg:x="71763" fg:w="22"/><text x="48.0099%" y="959.50"></text></g><g><title>_dl_runtime_resolve_xsavec (31 samples, 0.02%)</title><rect x="47.7565%" y="981" width="0.0206%" height="15" fill="rgb(236,182,29)" fg:x="71758" fg:w="31"/><text x="48.0065%" y="991.50"></text></g><g><title>_int_free (26 samples, 0.02%)</title><rect x="47.7772%" y="981" width="0.0173%" height="15" fill="rgb(244,120,48)" fg:x="71789" fg:w="26"/><text x="48.0272%" y="991.50"></text></g><g><title>__alloc_pages_nodemask (17 samples, 0.01%)</title><rect x="47.8191%" y="901" width="0.0113%" height="15" fill="rgb(206,71,34)" fg:x="71852" fg:w="17"/><text x="48.0691%" y="911.50"></text></g><g><title>get_page_from_freelist (16 samples, 0.01%)</title><rect x="47.8198%" y="885" width="0.0106%" height="15" fill="rgb(242,32,6)" fg:x="71853" fg:w="16"/><text x="48.0698%" y="895.50"></text></g><g><title>alloc_pages_vma (19 samples, 0.01%)</title><rect x="47.8191%" y="917" width="0.0126%" height="15" fill="rgb(241,35,3)" fg:x="71852" fg:w="19"/><text x="48.0691%" y="927.50"></text></g><g><title>__mod_memcg_lruvec_state (30 samples, 0.02%)</title><rect x="47.9855%" y="869" width="0.0200%" height="15" fill="rgb(222,62,19)" fg:x="72102" fg:w="30"/><text x="48.2355%" y="879.50"></text></g><g><title>page_add_file_rmap (80 samples, 0.05%)</title><rect x="47.9555%" y="885" width="0.0532%" height="15" fill="rgb(223,110,41)" fg:x="72057" fg:w="80"/><text x="48.2055%" y="895.50"></text></g><g><title>alloc_set_pte (116 samples, 0.08%)</title><rect x="47.9356%" y="901" width="0.0772%" height="15" fill="rgb(208,224,4)" fg:x="72027" fg:w="116"/><text x="48.1856%" y="911.50"></text></g><g><title>unlock_page (24 samples, 0.02%)</title><rect x="48.0134%" y="901" width="0.0160%" height="15" fill="rgb(241,137,19)" fg:x="72144" fg:w="24"/><text x="48.2634%" y="911.50"></text></g><g><title>filemap_map_pages (312 samples, 0.21%)</title><rect x="47.8344%" y="917" width="0.2076%" height="15" fill="rgb(244,24,17)" fg:x="71875" fg:w="312"/><text x="48.0844%" y="927.50"></text></g><g><title>xas_find (19 samples, 0.01%)</title><rect x="48.0294%" y="901" width="0.0126%" height="15" fill="rgb(245,178,49)" fg:x="72168" fg:w="19"/><text x="48.2794%" y="911.50"></text></g><g><title>xas_load (18 samples, 0.01%)</title><rect x="48.0301%" y="885" width="0.0120%" height="15" fill="rgb(219,160,38)" fg:x="72169" fg:w="18"/><text x="48.2801%" y="895.50"></text></g><g><title>handle_mm_fault (393 samples, 0.26%)</title><rect x="47.8024%" y="933" width="0.2616%" height="15" fill="rgb(228,137,14)" fg:x="71827" fg:w="393"/><text x="48.0524%" y="943.50"></text></g><g><title>exc_page_fault (404 samples, 0.27%)</title><rect x="47.7965%" y="965" width="0.2689%" height="15" fill="rgb(237,134,11)" fg:x="71818" fg:w="404"/><text x="48.0465%" y="975.50"></text></g><g><title>do_user_addr_fault (402 samples, 0.27%)</title><rect x="47.7978%" y="949" width="0.2675%" height="15" fill="rgb(211,126,44)" fg:x="71820" fg:w="402"/><text x="48.0478%" y="959.50"></text></g><g><title>asm_exc_page_fault (409 samples, 0.27%)</title><rect x="47.7951%" y="981" width="0.2722%" height="15" fill="rgb(226,171,33)" fg:x="71816" fg:w="409"/><text x="48.0451%" y="991.50"></text></g><g><title>error_entry (31 samples, 0.02%)</title><rect x="48.0673%" y="981" width="0.0206%" height="15" fill="rgb(253,99,13)" fg:x="72225" fg:w="31"/><text x="48.3173%" y="991.50"></text></g><g><title>sync_regs (31 samples, 0.02%)</title><rect x="48.0673%" y="965" width="0.0206%" height="15" fill="rgb(244,48,7)" fg:x="72225" fg:w="31"/><text x="48.3173%" y="975.50"></text></g><g><title>alloc_pages_vma (20 samples, 0.01%)</title><rect x="48.1598%" y="869" width="0.0133%" height="15" fill="rgb(244,217,54)" fg:x="72364" fg:w="20"/><text x="48.4098%" y="879.50"></text></g><g><title>__alloc_pages_nodemask (16 samples, 0.01%)</title><rect x="48.1625%" y="853" width="0.0106%" height="15" fill="rgb(224,15,18)" fg:x="72368" fg:w="16"/><text x="48.4125%" y="863.50"></text></g><g><title>asm_exc_page_fault (45 samples, 0.03%)</title><rect x="48.1525%" y="933" width="0.0299%" height="15" fill="rgb(244,99,12)" fg:x="72353" fg:w="45"/><text x="48.4025%" y="943.50"></text></g><g><title>exc_page_fault (45 samples, 0.03%)</title><rect x="48.1525%" y="917" width="0.0299%" height="15" fill="rgb(233,226,8)" fg:x="72353" fg:w="45"/><text x="48.4025%" y="927.50"></text></g><g><title>do_user_addr_fault (45 samples, 0.03%)</title><rect x="48.1525%" y="901" width="0.0299%" height="15" fill="rgb(229,211,3)" fg:x="72353" fg:w="45"/><text x="48.4025%" y="911.50"></text></g><g><title>handle_mm_fault (43 samples, 0.03%)</title><rect x="48.1538%" y="885" width="0.0286%" height="15" fill="rgb(216,140,21)" fg:x="72355" fg:w="43"/><text x="48.4038%" y="895.50"></text></g><g><title>_int_malloc (133 samples, 0.09%)</title><rect x="48.1126%" y="949" width="0.0885%" height="15" fill="rgb(234,122,30)" fg:x="72293" fg:w="133"/><text x="48.3626%" y="959.50"></text></g><g><title>__GI___libc_malloc (166 samples, 0.11%)</title><rect x="48.0986%" y="965" width="0.1105%" height="15" fill="rgb(236,25,46)" fg:x="72272" fg:w="166"/><text x="48.3486%" y="975.50"></text></g><g><title>operator new (172 samples, 0.11%)</title><rect x="48.0973%" y="981" width="0.1145%" height="15" fill="rgb(217,52,54)" fg:x="72270" fg:w="172"/><text x="48.3473%" y="991.50"></text></g><g><title>[clang] (3,091 samples, 2.06%)</title><rect x="46.1846%" y="997" width="2.0571%" height="15" fill="rgb(222,29,26)" fg:x="69396" fg:w="3091"/><text x="46.4346%" y="1007.50">[..</text></g><g><title>__GI___libc_sigaction (22 samples, 0.01%)</title><rect x="48.2577%" y="965" width="0.0146%" height="15" fill="rgb(216,177,29)" fg:x="72511" fg:w="22"/><text x="48.5077%" y="975.50"></text></g><g><title>__spawni_child (37 samples, 0.02%)</title><rect x="48.2577%" y="981" width="0.0246%" height="15" fill="rgb(247,136,51)" fg:x="72511" fg:w="37"/><text x="48.5077%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (143 samples, 0.10%)</title><rect x="48.2929%" y="933" width="0.0952%" height="15" fill="rgb(231,47,47)" fg:x="72564" fg:w="143"/><text x="48.5429%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (141 samples, 0.09%)</title><rect x="48.2943%" y="917" width="0.0938%" height="15" fill="rgb(211,192,36)" fg:x="72566" fg:w="141"/><text x="48.5443%" y="927.50"></text></g><g><title>native_write_msr (141 samples, 0.09%)</title><rect x="48.2943%" y="901" width="0.0938%" height="15" fill="rgb(229,156,32)" fg:x="72566" fg:w="141"/><text x="48.5443%" y="911.50"></text></g><g><title>schedule_tail (156 samples, 0.10%)</title><rect x="48.2883%" y="965" width="0.1038%" height="15" fill="rgb(248,213,20)" fg:x="72557" fg:w="156"/><text x="48.5383%" y="975.50"></text></g><g><title>finish_task_switch (156 samples, 0.10%)</title><rect x="48.2883%" y="949" width="0.1038%" height="15" fill="rgb(217,64,7)" fg:x="72557" fg:w="156"/><text x="48.5383%" y="959.50"></text></g><g><title>__GI___clone (204 samples, 0.14%)</title><rect x="48.2570%" y="997" width="0.1358%" height="15" fill="rgb(232,142,8)" fg:x="72510" fg:w="204"/><text x="48.5070%" y="1007.50"></text></g><g><title>ret_from_fork (159 samples, 0.11%)</title><rect x="48.2869%" y="981" width="0.1058%" height="15" fill="rgb(224,92,44)" fg:x="72555" fg:w="159"/><text x="48.5369%" y="991.50"></text></g><g><title>[libstdc++.so.6.0.28] (19 samples, 0.01%)</title><rect x="48.3954%" y="933" width="0.0126%" height="15" fill="rgb(214,169,17)" fg:x="72718" fg:w="19"/><text x="48.6454%" y="943.50"></text></g><g><title>_dl_start_user (25 samples, 0.02%)</title><rect x="48.3941%" y="997" width="0.0166%" height="15" fill="rgb(210,59,37)" fg:x="72716" fg:w="25"/><text x="48.6441%" y="1007.50"></text></g><g><title>_dl_init (25 samples, 0.02%)</title><rect x="48.3941%" y="981" width="0.0166%" height="15" fill="rgb(214,116,48)" fg:x="72716" fg:w="25"/><text x="48.6441%" y="991.50"></text></g><g><title>call_init (23 samples, 0.02%)</title><rect x="48.3954%" y="965" width="0.0153%" height="15" fill="rgb(244,191,6)" fg:x="72718" fg:w="23"/><text x="48.6454%" y="975.50"></text></g><g><title>call_init (23 samples, 0.02%)</title><rect x="48.3954%" y="949" width="0.0153%" height="15" fill="rgb(241,50,52)" fg:x="72718" fg:w="23"/><text x="48.6454%" y="959.50"></text></g><g><title>__do_munmap (19 samples, 0.01%)</title><rect x="48.4260%" y="693" width="0.0126%" height="15" fill="rgb(236,75,39)" fg:x="72764" fg:w="19"/><text x="48.6760%" y="703.50"></text></g><g><title>do_mmap (39 samples, 0.03%)</title><rect x="48.4247%" y="725" width="0.0260%" height="15" fill="rgb(236,99,0)" fg:x="72762" fg:w="39"/><text x="48.6747%" y="735.50"></text></g><g><title>mmap_region (37 samples, 0.02%)</title><rect x="48.4260%" y="709" width="0.0246%" height="15" fill="rgb(207,202,15)" fg:x="72764" fg:w="37"/><text x="48.6760%" y="719.50"></text></g><g><title>ksys_mmap_pgoff (42 samples, 0.03%)</title><rect x="48.4240%" y="757" width="0.0280%" height="15" fill="rgb(233,207,14)" fg:x="72761" fg:w="42"/><text x="48.6740%" y="767.50"></text></g><g><title>vm_mmap_pgoff (41 samples, 0.03%)</title><rect x="48.4247%" y="741" width="0.0273%" height="15" fill="rgb(226,27,51)" fg:x="72762" fg:w="41"/><text x="48.6747%" y="751.50"></text></g><g><title>_dl_map_segments (53 samples, 0.04%)</title><rect x="48.4201%" y="837" width="0.0353%" height="15" fill="rgb(206,104,42)" fg:x="72755" fg:w="53"/><text x="48.6701%" y="847.50"></text></g><g><title>__mmap64 (47 samples, 0.03%)</title><rect x="48.4240%" y="821" width="0.0313%" height="15" fill="rgb(212,225,4)" fg:x="72761" fg:w="47"/><text x="48.6740%" y="831.50"></text></g><g><title>__mmap64 (47 samples, 0.03%)</title><rect x="48.4240%" y="805" width="0.0313%" height="15" fill="rgb(233,96,42)" fg:x="72761" fg:w="47"/><text x="48.6740%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.03%)</title><rect x="48.4240%" y="789" width="0.0313%" height="15" fill="rgb(229,21,32)" fg:x="72761" fg:w="47"/><text x="48.6740%" y="799.50"></text></g><g><title>do_syscall_64 (47 samples, 0.03%)</title><rect x="48.4240%" y="773" width="0.0313%" height="15" fill="rgb(226,216,24)" fg:x="72761" fg:w="47"/><text x="48.6740%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (74 samples, 0.05%)</title><rect x="48.4201%" y="853" width="0.0492%" height="15" fill="rgb(221,163,17)" fg:x="72755" fg:w="74"/><text x="48.6701%" y="863.50"></text></g><g><title>do_filp_open (20 samples, 0.01%)</title><rect x="48.4720%" y="741" width="0.0133%" height="15" fill="rgb(216,216,42)" fg:x="72833" fg:w="20"/><text x="48.7220%" y="751.50"></text></g><g><title>path_openat (20 samples, 0.01%)</title><rect x="48.4720%" y="725" width="0.0133%" height="15" fill="rgb(240,118,7)" fg:x="72833" fg:w="20"/><text x="48.7220%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="48.4713%" y="805" width="0.0146%" height="15" fill="rgb(221,67,37)" fg:x="72832" fg:w="22"/><text x="48.7213%" y="815.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="48.4713%" y="789" width="0.0146%" height="15" fill="rgb(241,32,44)" fg:x="72832" fg:w="22"/><text x="48.7213%" y="799.50"></text></g><g><title>__x64_sys_openat (22 samples, 0.01%)</title><rect x="48.4713%" y="773" width="0.0146%" height="15" fill="rgb(235,204,43)" fg:x="72832" fg:w="22"/><text x="48.7213%" y="783.50"></text></g><g><title>do_sys_openat2 (22 samples, 0.01%)</title><rect x="48.4713%" y="757" width="0.0146%" height="15" fill="rgb(213,116,10)" fg:x="72832" fg:w="22"/><text x="48.7213%" y="767.50"></text></g><g><title>__GI___open64_nocancel (23 samples, 0.02%)</title><rect x="48.4713%" y="821" width="0.0153%" height="15" fill="rgb(239,15,48)" fg:x="72832" fg:w="23"/><text x="48.7213%" y="831.50"></text></g><g><title>open_path (28 samples, 0.02%)</title><rect x="48.4693%" y="853" width="0.0186%" height="15" fill="rgb(207,123,36)" fg:x="72829" fg:w="28"/><text x="48.7193%" y="863.50"></text></g><g><title>open_verify (25 samples, 0.02%)</title><rect x="48.4713%" y="837" width="0.0166%" height="15" fill="rgb(209,103,30)" fg:x="72832" fg:w="25"/><text x="48.7213%" y="847.50"></text></g><g><title>_dl_catch_exception (104 samples, 0.07%)</title><rect x="48.4194%" y="901" width="0.0692%" height="15" fill="rgb(238,100,19)" fg:x="72754" fg:w="104"/><text x="48.6694%" y="911.50"></text></g><g><title>openaux (104 samples, 0.07%)</title><rect x="48.4194%" y="885" width="0.0692%" height="15" fill="rgb(244,30,14)" fg:x="72754" fg:w="104"/><text x="48.6694%" y="895.50"></text></g><g><title>_dl_map_object (103 samples, 0.07%)</title><rect x="48.4201%" y="869" width="0.0685%" height="15" fill="rgb(249,174,6)" fg:x="72755" fg:w="103"/><text x="48.6701%" y="879.50"></text></g><g><title>_dl_map_object_deps (107 samples, 0.07%)</title><rect x="48.4194%" y="917" width="0.0712%" height="15" fill="rgb(235,213,41)" fg:x="72754" fg:w="107"/><text x="48.6694%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="48.4933%" y="869" width="0.0126%" height="15" fill="rgb(213,118,6)" fg:x="72865" fg:w="19"/><text x="48.7433%" y="879.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="48.4933%" y="853" width="0.0126%" height="15" fill="rgb(235,44,51)" fg:x="72865" fg:w="19"/><text x="48.7433%" y="863.50"></text></g><g><title>__x64_sys_mprotect (19 samples, 0.01%)</title><rect x="48.4933%" y="837" width="0.0126%" height="15" fill="rgb(217,9,53)" fg:x="72865" fg:w="19"/><text x="48.7433%" y="847.50"></text></g><g><title>do_mprotect_pkey (19 samples, 0.01%)</title><rect x="48.4933%" y="821" width="0.0126%" height="15" fill="rgb(237,172,34)" fg:x="72865" fg:w="19"/><text x="48.7433%" y="831.50"></text></g><g><title>mprotect_fixup (18 samples, 0.01%)</title><rect x="48.4939%" y="805" width="0.0120%" height="15" fill="rgb(206,206,11)" fg:x="72866" fg:w="18"/><text x="48.7439%" y="815.50"></text></g><g><title>_dl_protect_relro (21 samples, 0.01%)</title><rect x="48.4926%" y="901" width="0.0140%" height="15" fill="rgb(214,149,29)" fg:x="72864" fg:w="21"/><text x="48.7426%" y="911.50"></text></g><g><title>__mprotect (21 samples, 0.01%)</title><rect x="48.4926%" y="885" width="0.0140%" height="15" fill="rgb(208,123,3)" fg:x="72864" fg:w="21"/><text x="48.7426%" y="895.50"></text></g><g><title>dl_new_hash (56 samples, 0.04%)</title><rect x="48.5605%" y="853" width="0.0373%" height="15" fill="rgb(229,126,4)" fg:x="72966" fg:w="56"/><text x="48.8105%" y="863.50"></text></g><g><title>check_match (16 samples, 0.01%)</title><rect x="48.6676%" y="837" width="0.0106%" height="15" fill="rgb(222,92,36)" fg:x="73127" fg:w="16"/><text x="48.9176%" y="847.50"></text></g><g><title>_dl_lookup_symbol_x (183 samples, 0.12%)</title><rect x="48.5591%" y="869" width="0.1218%" height="15" fill="rgb(216,39,41)" fg:x="72964" fg:w="183"/><text x="48.8091%" y="879.50"></text></g><g><title>do_lookup_x (125 samples, 0.08%)</title><rect x="48.5977%" y="853" width="0.0832%" height="15" fill="rgb(253,127,28)" fg:x="73022" fg:w="125"/><text x="48.8477%" y="863.50"></text></g><g><title>alloc_pages_vma (22 samples, 0.01%)</title><rect x="48.7016%" y="805" width="0.0146%" height="15" fill="rgb(249,152,51)" fg:x="73178" fg:w="22"/><text x="48.9516%" y="815.50"></text></g><g><title>__alloc_pages_nodemask (22 samples, 0.01%)</title><rect x="48.7016%" y="789" width="0.0146%" height="15" fill="rgb(209,123,42)" fg:x="73178" fg:w="22"/><text x="48.9516%" y="799.50"></text></g><g><title>get_page_from_freelist (20 samples, 0.01%)</title><rect x="48.7029%" y="773" width="0.0133%" height="15" fill="rgb(241,118,22)" fg:x="73180" fg:w="20"/><text x="48.9529%" y="783.50"></text></g><g><title>copy_page (46 samples, 0.03%)</title><rect x="48.7182%" y="805" width="0.0306%" height="15" fill="rgb(208,25,7)" fg:x="73203" fg:w="46"/><text x="48.9682%" y="815.50"></text></g><g><title>exc_page_fault (133 samples, 0.09%)</title><rect x="48.6816%" y="853" width="0.0885%" height="15" fill="rgb(243,144,39)" fg:x="73148" fg:w="133"/><text x="48.9316%" y="863.50"></text></g><g><title>do_user_addr_fault (131 samples, 0.09%)</title><rect x="48.6829%" y="837" width="0.0872%" height="15" fill="rgb(250,50,5)" fg:x="73150" fg:w="131"/><text x="48.9329%" y="847.50"></text></g><g><title>handle_mm_fault (126 samples, 0.08%)</title><rect x="48.6863%" y="821" width="0.0839%" height="15" fill="rgb(207,67,11)" fg:x="73155" fg:w="126"/><text x="48.9363%" y="831.50"></text></g><g><title>asm_exc_page_fault (143 samples, 0.10%)</title><rect x="48.6809%" y="869" width="0.0952%" height="15" fill="rgb(245,204,40)" fg:x="73147" fg:w="143"/><text x="48.9309%" y="879.50"></text></g><g><title>elf_machine_rela (393 samples, 0.26%)</title><rect x="48.5205%" y="885" width="0.2616%" height="15" fill="rgb(238,228,24)" fg:x="72906" fg:w="393"/><text x="48.7705%" y="895.50"></text></g><g><title>elf_dynamic_do_Rela (419 samples, 0.28%)</title><rect x="48.5066%" y="901" width="0.2789%" height="15" fill="rgb(217,116,22)" fg:x="72885" fg:w="419"/><text x="48.7566%" y="911.50"></text></g><g><title>_dl_relocate_object (442 samples, 0.29%)</title><rect x="48.4926%" y="917" width="0.2942%" height="15" fill="rgb(234,98,12)" fg:x="72864" fg:w="442"/><text x="48.7426%" y="927.50"></text></g><g><title>[ld-2.31.so] (563 samples, 0.37%)</title><rect x="48.4154%" y="933" width="0.3747%" height="15" fill="rgb(242,170,50)" fg:x="72748" fg:w="563"/><text x="48.6654%" y="943.50"></text></g><g><title>_dl_start_final (568 samples, 0.38%)</title><rect x="48.4154%" y="965" width="0.3780%" height="15" fill="rgb(235,7,5)" fg:x="72748" fg:w="568"/><text x="48.6654%" y="975.50"></text></g><g><title>_dl_sysdep_start (568 samples, 0.38%)</title><rect x="48.4154%" y="949" width="0.3780%" height="15" fill="rgb(241,114,28)" fg:x="72748" fg:w="568"/><text x="48.6654%" y="959.50"></text></g><g><title>_dl_start (572 samples, 0.38%)</title><rect x="48.4154%" y="981" width="0.3807%" height="15" fill="rgb(246,112,42)" fg:x="72748" fg:w="572"/><text x="48.6654%" y="991.50"></text></g><g><title>_start (574 samples, 0.38%)</title><rect x="48.4147%" y="997" width="0.3820%" height="15" fill="rgb(248,228,14)" fg:x="72747" fg:w="574"/><text x="48.6647%" y="1007.50"></text></g><g><title>asm_exc_page_fault (170 samples, 0.11%)</title><rect x="48.7967%" y="997" width="0.1131%" height="15" fill="rgb(208,133,18)" fg:x="73321" fg:w="170"/><text x="49.0467%" y="1007.50"></text></g><g><title>free_unref_page_list (18 samples, 0.01%)</title><rect x="48.9405%" y="853" width="0.0120%" height="15" fill="rgb(207,35,49)" fg:x="73537" fg:w="18"/><text x="49.1905%" y="863.50"></text></g><g><title>tlb_finish_mmu (42 samples, 0.03%)</title><rect x="48.9258%" y="885" width="0.0280%" height="15" fill="rgb(205,68,36)" fg:x="73515" fg:w="42"/><text x="49.1758%" y="895.50"></text></g><g><title>release_pages (37 samples, 0.02%)</title><rect x="48.9292%" y="869" width="0.0246%" height="15" fill="rgb(245,62,40)" fg:x="73520" fg:w="37"/><text x="49.1792%" y="879.50"></text></g><g><title>__mod_lruvec_state (19 samples, 0.01%)</title><rect x="49.0749%" y="837" width="0.0126%" height="15" fill="rgb(228,27,24)" fg:x="73739" fg:w="19"/><text x="49.3249%" y="847.50"></text></g><g><title>__mod_memcg_lruvec_state (30 samples, 0.02%)</title><rect x="49.0876%" y="837" width="0.0200%" height="15" fill="rgb(253,19,12)" fg:x="73758" fg:w="30"/><text x="49.3376%" y="847.50"></text></g><g><title>page_remove_rmap (137 samples, 0.09%)</title><rect x="49.0263%" y="853" width="0.0912%" height="15" fill="rgb(232,28,20)" fg:x="73666" fg:w="137"/><text x="49.2763%" y="863.50"></text></g><g><title>free_pages_and_swap_cache (21 samples, 0.01%)</title><rect x="49.1175%" y="837" width="0.0140%" height="15" fill="rgb(218,35,51)" fg:x="73803" fg:w="21"/><text x="49.3675%" y="847.50"></text></g><g><title>tlb_flush_mmu (66 samples, 0.04%)</title><rect x="49.1175%" y="853" width="0.0439%" height="15" fill="rgb(212,90,40)" fg:x="73803" fg:w="66"/><text x="49.3675%" y="863.50"></text></g><g><title>release_pages (45 samples, 0.03%)</title><rect x="49.1315%" y="837" width="0.0299%" height="15" fill="rgb(220,172,12)" fg:x="73824" fg:w="45"/><text x="49.3815%" y="847.50"></text></g><g><title>mmput (375 samples, 0.25%)</title><rect x="48.9185%" y="917" width="0.2496%" height="15" fill="rgb(226,159,20)" fg:x="73504" fg:w="375"/><text x="49.1685%" y="927.50"></text></g><g><title>exit_mmap (375 samples, 0.25%)</title><rect x="48.9185%" y="901" width="0.2496%" height="15" fill="rgb(234,205,16)" fg:x="73504" fg:w="375"/><text x="49.1685%" y="911.50"></text></g><g><title>unmap_vmas (322 samples, 0.21%)</title><rect x="48.9538%" y="885" width="0.2143%" height="15" fill="rgb(207,9,39)" fg:x="73557" fg:w="322"/><text x="49.2038%" y="895.50"></text></g><g><title>unmap_page_range (322 samples, 0.21%)</title><rect x="48.9538%" y="869" width="0.2143%" height="15" fill="rgb(249,143,15)" fg:x="73557" fg:w="322"/><text x="49.2038%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (395 samples, 0.26%)</title><rect x="48.9099%" y="997" width="0.2629%" height="15" fill="rgb(253,133,29)" fg:x="73491" fg:w="395"/><text x="49.1599%" y="1007.50"></text></g><g><title>do_syscall_64 (395 samples, 0.26%)</title><rect x="48.9099%" y="981" width="0.2629%" height="15" fill="rgb(221,187,0)" fg:x="73491" fg:w="395"/><text x="49.1599%" y="991.50"></text></g><g><title>__x64_sys_exit_group (382 samples, 0.25%)</title><rect x="48.9185%" y="965" width="0.2542%" height="15" fill="rgb(205,204,26)" fg:x="73504" fg:w="382"/><text x="49.1685%" y="975.50"></text></g><g><title>do_group_exit (382 samples, 0.25%)</title><rect x="48.9185%" y="949" width="0.2542%" height="15" fill="rgb(224,68,54)" fg:x="73504" fg:w="382"/><text x="49.1685%" y="959.50"></text></g><g><title>do_exit (382 samples, 0.25%)</title><rect x="48.9185%" y="933" width="0.2542%" height="15" fill="rgb(209,67,4)" fg:x="73504" fg:w="382"/><text x="49.1685%" y="943.50"></text></g><g><title>clang (4,522 samples, 3.01%)</title><rect x="46.1659%" y="1013" width="3.0095%" height="15" fill="rgb(228,229,18)" fg:x="69368" fg:w="4522"/><text x="46.4159%" y="1023.50">cla..</text></g><g><title>cli-update-thre (23 samples, 0.02%)</title><rect x="49.1754%" y="1013" width="0.0153%" height="15" fill="rgb(231,89,13)" fg:x="73890" fg:w="23"/><text x="49.4254%" y="1023.50"></text></g><g><title>[perf-943567.map] (23 samples, 0.02%)</title><rect x="49.1754%" y="997" width="0.0153%" height="15" fill="rgb(210,182,18)" fg:x="73890" fg:w="23"/><text x="49.4254%" y="1007.50"></text></g><g><title>Monitor::wait (16 samples, 0.01%)</title><rect x="49.2513%" y="917" width="0.0106%" height="15" fill="rgb(240,105,2)" fg:x="74004" fg:w="16"/><text x="49.5013%" y="927.50"></text></g><g><title>JVM_IHashCode (18 samples, 0.01%)</title><rect x="49.2506%" y="981" width="0.0120%" height="15" fill="rgb(207,170,50)" fg:x="74003" fg:w="18"/><text x="49.5006%" y="991.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (18 samples, 0.01%)</title><rect x="49.2506%" y="965" width="0.0120%" height="15" fill="rgb(232,133,24)" fg:x="74003" fg:w="18"/><text x="49.5006%" y="975.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (18 samples, 0.01%)</title><rect x="49.2506%" y="949" width="0.0120%" height="15" fill="rgb(235,166,27)" fg:x="74003" fg:w="18"/><text x="49.5006%" y="959.50"></text></g><g><title>VMThread::execute (18 samples, 0.01%)</title><rect x="49.2506%" y="933" width="0.0120%" height="15" fill="rgb(209,19,13)" fg:x="74003" fg:w="18"/><text x="49.5006%" y="943.50"></text></g><g><title>[perf-943567.map] (116 samples, 0.08%)</title><rect x="49.1921%" y="997" width="0.0772%" height="15" fill="rgb(226,79,39)" fg:x="73915" fg:w="116"/><text x="49.4421%" y="1007.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="49.2713%" y="933" width="0.0113%" height="15" fill="rgb(222,163,10)" fg:x="74034" fg:w="17"/><text x="49.5213%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="49.2713%" y="917" width="0.0113%" height="15" fill="rgb(214,44,19)" fg:x="74034" fg:w="17"/><text x="49.5213%" y="927.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="49.2713%" y="901" width="0.0113%" height="15" fill="rgb(210,217,13)" fg:x="74034" fg:w="17"/><text x="49.5213%" y="911.50"></text></g><g><title>ret_from_fork (20 samples, 0.01%)</title><rect x="49.2706%" y="981" width="0.0133%" height="15" fill="rgb(237,61,54)" fg:x="74033" fg:w="20"/><text x="49.5206%" y="991.50"></text></g><g><title>schedule_tail (19 samples, 0.01%)</title><rect x="49.2713%" y="965" width="0.0126%" height="15" fill="rgb(226,184,24)" fg:x="74034" fg:w="19"/><text x="49.5213%" y="975.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="49.2713%" y="949" width="0.0126%" height="15" fill="rgb(223,226,4)" fg:x="74034" fg:w="19"/><text x="49.5213%" y="959.50"></text></g><g><title>__GI___clone (47 samples, 0.03%)</title><rect x="49.2706%" y="997" width="0.0313%" height="15" fill="rgb(210,26,41)" fg:x="74033" fg:w="47"/><text x="49.5206%" y="1007.50"></text></g><g><title>start_thread (27 samples, 0.02%)</title><rect x="49.2839%" y="981" width="0.0180%" height="15" fill="rgb(220,221,6)" fg:x="74053" fg:w="27"/><text x="49.5339%" y="991.50"></text></g><g><title>thread_native_entry (16 samples, 0.01%)</title><rect x="49.2912%" y="965" width="0.0106%" height="15" fill="rgb(225,89,49)" fg:x="74064" fg:w="16"/><text x="49.5412%" y="975.50"></text></g><g><title>find-action-loo (169 samples, 0.11%)</title><rect x="49.1907%" y="1013" width="0.1125%" height="15" fill="rgb(218,70,45)" fg:x="73913" fg:w="169"/><text x="49.4407%" y="1023.50"></text></g><g><title>[perf-943567.map] (41 samples, 0.03%)</title><rect x="49.3079%" y="997" width="0.0273%" height="15" fill="rgb(238,166,21)" fg:x="74089" fg:w="41"/><text x="49.5579%" y="1007.50"></text></g><g><title>globbing_pool-0 (59 samples, 0.04%)</title><rect x="49.3032%" y="1013" width="0.0393%" height="15" fill="rgb(224,141,44)" fg:x="74082" fg:w="59"/><text x="49.5532%" y="1023.50"></text></g><g><title>[libunix_jni.so] (30 samples, 0.02%)</title><rect x="49.3445%" y="997" width="0.0200%" height="15" fill="rgb(230,12,49)" fg:x="74144" fg:w="30"/><text x="49.5945%" y="1007.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.03%)</title><rect x="49.4549%" y="725" width="0.0280%" height="15" fill="rgb(212,174,12)" fg:x="74310" fg:w="42"/><text x="49.7049%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.03%)</title><rect x="49.4549%" y="709" width="0.0280%" height="15" fill="rgb(246,67,9)" fg:x="74310" fg:w="42"/><text x="49.7049%" y="719.50"></text></g><g><title>native_write_msr (42 samples, 0.03%)</title><rect x="49.4549%" y="693" width="0.0280%" height="15" fill="rgb(239,35,23)" fg:x="74310" fg:w="42"/><text x="49.7049%" y="703.50"></text></g><g><title>__pthread_cond_wait (45 samples, 0.03%)</title><rect x="49.4543%" y="917" width="0.0299%" height="15" fill="rgb(211,167,0)" fg:x="74309" fg:w="45"/><text x="49.7043%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (45 samples, 0.03%)</title><rect x="49.4543%" y="901" width="0.0299%" height="15" fill="rgb(225,119,45)" fg:x="74309" fg:w="45"/><text x="49.7043%" y="911.50"></text></g><g><title>futex_wait_cancelable (44 samples, 0.03%)</title><rect x="49.4549%" y="885" width="0.0293%" height="15" fill="rgb(210,162,6)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.03%)</title><rect x="49.4549%" y="869" width="0.0293%" height="15" fill="rgb(208,118,35)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="879.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="49.4549%" y="853" width="0.0293%" height="15" fill="rgb(239,4,53)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="863.50"></text></g><g><title>__x64_sys_futex (44 samples, 0.03%)</title><rect x="49.4549%" y="837" width="0.0293%" height="15" fill="rgb(213,130,21)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="847.50"></text></g><g><title>do_futex (44 samples, 0.03%)</title><rect x="49.4549%" y="821" width="0.0293%" height="15" fill="rgb(235,148,0)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="831.50"></text></g><g><title>futex_wait (44 samples, 0.03%)</title><rect x="49.4549%" y="805" width="0.0293%" height="15" fill="rgb(244,224,18)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="815.50"></text></g><g><title>futex_wait_queue_me (44 samples, 0.03%)</title><rect x="49.4549%" y="789" width="0.0293%" height="15" fill="rgb(211,214,4)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="799.50"></text></g><g><title>schedule (44 samples, 0.03%)</title><rect x="49.4549%" y="773" width="0.0293%" height="15" fill="rgb(206,119,25)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="783.50"></text></g><g><title>__schedule (44 samples, 0.03%)</title><rect x="49.4549%" y="757" width="0.0293%" height="15" fill="rgb(243,93,47)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="767.50"></text></g><g><title>finish_task_switch (44 samples, 0.03%)</title><rect x="49.4549%" y="741" width="0.0293%" height="15" fill="rgb(224,194,6)" fg:x="74310" fg:w="44"/><text x="49.7049%" y="751.50"></text></g><g><title>Monitor::lock (48 samples, 0.03%)</title><rect x="49.4529%" y="965" width="0.0319%" height="15" fill="rgb(243,229,6)" fg:x="74307" fg:w="48"/><text x="49.7029%" y="975.50"></text></g><g><title>Monitor::ILock (48 samples, 0.03%)</title><rect x="49.4529%" y="949" width="0.0319%" height="15" fill="rgb(207,23,50)" fg:x="74307" fg:w="48"/><text x="49.7029%" y="959.50"></text></g><g><title>os::PlatformEvent::park (47 samples, 0.03%)</title><rect x="49.4536%" y="933" width="0.0313%" height="15" fill="rgb(253,192,32)" fg:x="74308" fg:w="47"/><text x="49.7036%" y="943.50"></text></g><g><title>JVM_StartThread (62 samples, 0.04%)</title><rect x="49.4496%" y="981" width="0.0413%" height="15" fill="rgb(213,21,6)" fg:x="74302" fg:w="62"/><text x="49.6996%" y="991.50"></text></g><g><title>Unsafe_Park (19 samples, 0.01%)</title><rect x="49.4929%" y="981" width="0.0126%" height="15" fill="rgb(243,151,13)" fg:x="74367" fg:w="19"/><text x="49.7429%" y="991.50"></text></g><g><title>Parker::park (19 samples, 0.01%)</title><rect x="49.4929%" y="965" width="0.0126%" height="15" fill="rgb(233,165,41)" fg:x="74367" fg:w="19"/><text x="49.7429%" y="975.50"></text></g><g><title>__pthread_cond_wait (18 samples, 0.01%)</title><rect x="49.4935%" y="949" width="0.0120%" height="15" fill="rgb(246,176,45)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (18 samples, 0.01%)</title><rect x="49.4935%" y="933" width="0.0120%" height="15" fill="rgb(217,170,52)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="943.50"></text></g><g><title>futex_wait_cancelable (18 samples, 0.01%)</title><rect x="49.4935%" y="917" width="0.0120%" height="15" fill="rgb(214,203,54)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="49.4935%" y="901" width="0.0120%" height="15" fill="rgb(248,215,49)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="911.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="49.4935%" y="885" width="0.0120%" height="15" fill="rgb(208,46,10)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="895.50"></text></g><g><title>__x64_sys_futex (18 samples, 0.01%)</title><rect x="49.4935%" y="869" width="0.0120%" height="15" fill="rgb(254,5,31)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="879.50"></text></g><g><title>do_futex (18 samples, 0.01%)</title><rect x="49.4935%" y="853" width="0.0120%" height="15" fill="rgb(222,104,33)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="863.50"></text></g><g><title>futex_wait (18 samples, 0.01%)</title><rect x="49.4935%" y="837" width="0.0120%" height="15" fill="rgb(248,49,16)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="847.50"></text></g><g><title>futex_wait_queue_me (18 samples, 0.01%)</title><rect x="49.4935%" y="821" width="0.0120%" height="15" fill="rgb(232,198,41)" fg:x="74368" fg:w="18"/><text x="49.7435%" y="831.50"></text></g><g><title>schedule (17 samples, 0.01%)</title><rect x="49.4942%" y="805" width="0.0113%" height="15" fill="rgb(214,125,3)" fg:x="74369" fg:w="17"/><text x="49.7442%" y="815.50"></text></g><g><title>__schedule (17 samples, 0.01%)</title><rect x="49.4942%" y="789" width="0.0113%" height="15" fill="rgb(229,220,28)" fg:x="74369" fg:w="17"/><text x="49.7442%" y="799.50"></text></g><g><title>finish_task_switch (17 samples, 0.01%)</title><rect x="49.4942%" y="773" width="0.0113%" height="15" fill="rgb(222,64,37)" fg:x="74369" fg:w="17"/><text x="49.7442%" y="783.50"></text></g><g><title>[perf-943567.map] (218 samples, 0.15%)</title><rect x="49.3644%" y="997" width="0.1451%" height="15" fill="rgb(249,184,13)" fg:x="74174" fg:w="218"/><text x="49.6144%" y="1007.50"></text></g><g><title>Monitor::wait (16 samples, 0.01%)</title><rect x="49.5235%" y="949" width="0.0106%" height="15" fill="rgb(252,176,6)" fg:x="74413" fg:w="16"/><text x="49.7735%" y="959.50"></text></g><g><title>Monitor::IWait (16 samples, 0.01%)</title><rect x="49.5235%" y="933" width="0.0106%" height="15" fill="rgb(228,153,7)" fg:x="74413" fg:w="16"/><text x="49.7735%" y="943.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="49.5235%" y="917" width="0.0106%" height="15" fill="rgb(242,193,5)" fg:x="74413" fg:w="16"/><text x="49.7735%" y="927.50"></text></g><g><title>globbing_pool-1 (293 samples, 0.19%)</title><rect x="49.3425%" y="1013" width="0.1950%" height="15" fill="rgb(232,140,9)" fg:x="74141" fg:w="293"/><text x="49.5925%" y="1023.50"></text></g><g><title>__GI___clone (40 samples, 0.03%)</title><rect x="49.5108%" y="997" width="0.0266%" height="15" fill="rgb(213,222,16)" fg:x="74394" fg:w="40"/><text x="49.7608%" y="1007.50"></text></g><g><title>start_thread (21 samples, 0.01%)</title><rect x="49.5235%" y="981" width="0.0140%" height="15" fill="rgb(222,75,50)" fg:x="74413" fg:w="21"/><text x="49.7735%" y="991.50"></text></g><g><title>thread_native_entry (21 samples, 0.01%)</title><rect x="49.5235%" y="965" width="0.0140%" height="15" fill="rgb(205,180,2)" fg:x="74413" fg:w="21"/><text x="49.7735%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.02%)</title><rect x="49.5974%" y="725" width="0.0186%" height="15" fill="rgb(216,34,7)" fg:x="74524" fg:w="28"/><text x="49.8474%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="49.5974%" y="709" width="0.0186%" height="15" fill="rgb(253,16,32)" fg:x="74524" fg:w="28"/><text x="49.8474%" y="719.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="49.5974%" y="693" width="0.0186%" height="15" fill="rgb(208,97,28)" fg:x="74524" fg:w="28"/><text x="49.8474%" y="703.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="49.5974%" y="741" width="0.0193%" height="15" fill="rgb(225,92,11)" fg:x="74524" fg:w="29"/><text x="49.8474%" y="751.50"></text></g><g><title>__pthread_cond_wait (31 samples, 0.02%)</title><rect x="49.5967%" y="917" width="0.0206%" height="15" fill="rgb(243,38,12)" fg:x="74523" fg:w="31"/><text x="49.8467%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (31 samples, 0.02%)</title><rect x="49.5967%" y="901" width="0.0206%" height="15" fill="rgb(208,139,16)" fg:x="74523" fg:w="31"/><text x="49.8467%" y="911.50"></text></g><g><title>futex_wait_cancelable (30 samples, 0.02%)</title><rect x="49.5974%" y="885" width="0.0200%" height="15" fill="rgb(227,24,9)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.02%)</title><rect x="49.5974%" y="869" width="0.0200%" height="15" fill="rgb(206,62,11)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="879.50"></text></g><g><title>do_syscall_64 (30 samples, 0.02%)</title><rect x="49.5974%" y="853" width="0.0200%" height="15" fill="rgb(228,134,27)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="863.50"></text></g><g><title>__x64_sys_futex (30 samples, 0.02%)</title><rect x="49.5974%" y="837" width="0.0200%" height="15" fill="rgb(205,55,33)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="847.50"></text></g><g><title>do_futex (30 samples, 0.02%)</title><rect x="49.5974%" y="821" width="0.0200%" height="15" fill="rgb(243,75,43)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="831.50"></text></g><g><title>futex_wait (30 samples, 0.02%)</title><rect x="49.5974%" y="805" width="0.0200%" height="15" fill="rgb(223,27,42)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="815.50"></text></g><g><title>futex_wait_queue_me (30 samples, 0.02%)</title><rect x="49.5974%" y="789" width="0.0200%" height="15" fill="rgb(232,189,33)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="799.50"></text></g><g><title>schedule (30 samples, 0.02%)</title><rect x="49.5974%" y="773" width="0.0200%" height="15" fill="rgb(210,9,39)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="783.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="49.5974%" y="757" width="0.0200%" height="15" fill="rgb(242,85,26)" fg:x="74524" fg:w="30"/><text x="49.8474%" y="767.50"></text></g><g><title>Monitor::lock (32 samples, 0.02%)</title><rect x="49.5967%" y="965" width="0.0213%" height="15" fill="rgb(248,44,4)" fg:x="74523" fg:w="32"/><text x="49.8467%" y="975.50"></text></g><g><title>Monitor::ILock (32 samples, 0.02%)</title><rect x="49.5967%" y="949" width="0.0213%" height="15" fill="rgb(250,96,46)" fg:x="74523" fg:w="32"/><text x="49.8467%" y="959.50"></text></g><g><title>os::PlatformEvent::park (32 samples, 0.02%)</title><rect x="49.5967%" y="933" width="0.0213%" height="15" fill="rgb(229,116,26)" fg:x="74523" fg:w="32"/><text x="49.8467%" y="943.50"></text></g><g><title>JVM_StartThread (51 samples, 0.03%)</title><rect x="49.5934%" y="981" width="0.0339%" height="15" fill="rgb(246,94,34)" fg:x="74518" fg:w="51"/><text x="49.8434%" y="991.50"></text></g><g><title>finish_task_switch (16 samples, 0.01%)</title><rect x="49.6280%" y="773" width="0.0106%" height="15" fill="rgb(251,73,21)" fg:x="74570" fg:w="16"/><text x="49.8780%" y="783.50"></text></g><g><title>Unsafe_Park (19 samples, 0.01%)</title><rect x="49.6280%" y="981" width="0.0126%" height="15" fill="rgb(254,121,25)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="991.50"></text></g><g><title>Parker::park (19 samples, 0.01%)</title><rect x="49.6280%" y="965" width="0.0126%" height="15" fill="rgb(215,161,49)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="975.50"></text></g><g><title>__pthread_cond_wait (19 samples, 0.01%)</title><rect x="49.6280%" y="949" width="0.0126%" height="15" fill="rgb(221,43,13)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (19 samples, 0.01%)</title><rect x="49.6280%" y="933" width="0.0126%" height="15" fill="rgb(249,5,37)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="943.50"></text></g><g><title>futex_wait_cancelable (19 samples, 0.01%)</title><rect x="49.6280%" y="917" width="0.0126%" height="15" fill="rgb(226,25,44)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="49.6280%" y="901" width="0.0126%" height="15" fill="rgb(238,189,16)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="911.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="49.6280%" y="885" width="0.0126%" height="15" fill="rgb(251,186,8)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="895.50"></text></g><g><title>__x64_sys_futex (19 samples, 0.01%)</title><rect x="49.6280%" y="869" width="0.0126%" height="15" fill="rgb(254,34,31)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="879.50"></text></g><g><title>do_futex (19 samples, 0.01%)</title><rect x="49.6280%" y="853" width="0.0126%" height="15" fill="rgb(225,215,27)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="863.50"></text></g><g><title>futex_wait (19 samples, 0.01%)</title><rect x="49.6280%" y="837" width="0.0126%" height="15" fill="rgb(221,192,48)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="847.50"></text></g><g><title>futex_wait_queue_me (19 samples, 0.01%)</title><rect x="49.6280%" y="821" width="0.0126%" height="15" fill="rgb(219,137,20)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="831.50"></text></g><g><title>schedule (19 samples, 0.01%)</title><rect x="49.6280%" y="805" width="0.0126%" height="15" fill="rgb(219,84,11)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="815.50"></text></g><g><title>__schedule (19 samples, 0.01%)</title><rect x="49.6280%" y="789" width="0.0126%" height="15" fill="rgb(224,10,23)" fg:x="74570" fg:w="19"/><text x="49.8780%" y="799.50"></text></g><g><title>[perf-943567.map] (145 samples, 0.10%)</title><rect x="49.5481%" y="997" width="0.0965%" height="15" fill="rgb(248,22,39)" fg:x="74450" fg:w="145"/><text x="49.7981%" y="1007.50"></text></g><g><title>__perf_event_task_sched_in (38 samples, 0.03%)</title><rect x="49.6493%" y="933" width="0.0253%" height="15" fill="rgb(212,154,20)" fg:x="74602" fg:w="38"/><text x="49.8993%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="49.6499%" y="917" width="0.0246%" height="15" fill="rgb(236,199,50)" fg:x="74603" fg:w="37"/><text x="49.8999%" y="927.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="49.6506%" y="901" width="0.0240%" height="15" fill="rgb(211,9,17)" fg:x="74604" fg:w="36"/><text x="49.9006%" y="911.50"></text></g><g><title>schedule_tail (42 samples, 0.03%)</title><rect x="49.6486%" y="965" width="0.0280%" height="15" fill="rgb(243,216,36)" fg:x="74601" fg:w="42"/><text x="49.8986%" y="975.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="49.6486%" y="949" width="0.0280%" height="15" fill="rgb(250,2,10)" fg:x="74601" fg:w="42"/><text x="49.8986%" y="959.50"></text></g><g><title>ret_from_fork (44 samples, 0.03%)</title><rect x="49.6479%" y="981" width="0.0293%" height="15" fill="rgb(226,50,48)" fg:x="74600" fg:w="44"/><text x="49.8979%" y="991.50"></text></g><g><title>globbing_pool-2 (218 samples, 0.15%)</title><rect x="49.5375%" y="1013" width="0.1451%" height="15" fill="rgb(243,81,16)" fg:x="74434" fg:w="218"/><text x="49.7875%" y="1023.50"></text></g><g><title>__GI___clone (56 samples, 0.04%)</title><rect x="49.6453%" y="997" width="0.0373%" height="15" fill="rgb(250,14,2)" fg:x="74596" fg:w="56"/><text x="49.8953%" y="1007.50"></text></g><g><title>JVM_StartThread (20 samples, 0.01%)</title><rect x="49.7531%" y="981" width="0.0133%" height="15" fill="rgb(233,135,29)" fg:x="74758" fg:w="20"/><text x="50.0031%" y="991.50"></text></g><g><title>os::create_thread (16 samples, 0.01%)</title><rect x="49.7558%" y="965" width="0.0106%" height="15" fill="rgb(224,64,43)" fg:x="74762" fg:w="16"/><text x="50.0058%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.02%)</title><rect x="49.7684%" y="757" width="0.0220%" height="15" fill="rgb(238,84,13)" fg:x="74781" fg:w="33"/><text x="50.0184%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.02%)</title><rect x="49.7684%" y="741" width="0.0220%" height="15" fill="rgb(253,48,26)" fg:x="74781" fg:w="33"/><text x="50.0184%" y="751.50"></text></g><g><title>native_write_msr (33 samples, 0.02%)</title><rect x="49.7684%" y="725" width="0.0220%" height="15" fill="rgb(205,223,31)" fg:x="74781" fg:w="33"/><text x="50.0184%" y="735.50"></text></g><g><title>do_syscall_64 (40 samples, 0.03%)</title><rect x="49.7664%" y="885" width="0.0266%" height="15" fill="rgb(221,41,32)" fg:x="74778" fg:w="40"/><text x="50.0164%" y="895.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.03%)</title><rect x="49.7671%" y="869" width="0.0260%" height="15" fill="rgb(213,158,31)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="879.50"></text></g><g><title>do_futex (39 samples, 0.03%)</title><rect x="49.7671%" y="853" width="0.0260%" height="15" fill="rgb(245,126,43)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="863.50"></text></g><g><title>futex_wait (39 samples, 0.03%)</title><rect x="49.7671%" y="837" width="0.0260%" height="15" fill="rgb(227,7,22)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="847.50"></text></g><g><title>futex_wait_queue_me (39 samples, 0.03%)</title><rect x="49.7671%" y="821" width="0.0260%" height="15" fill="rgb(252,90,44)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="831.50"></text></g><g><title>schedule (39 samples, 0.03%)</title><rect x="49.7671%" y="805" width="0.0260%" height="15" fill="rgb(253,91,0)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="815.50"></text></g><g><title>__schedule (39 samples, 0.03%)</title><rect x="49.7671%" y="789" width="0.0260%" height="15" fill="rgb(252,175,49)" fg:x="74779" fg:w="39"/><text x="50.0171%" y="799.50"></text></g><g><title>finish_task_switch (38 samples, 0.03%)</title><rect x="49.7677%" y="773" width="0.0253%" height="15" fill="rgb(246,150,1)" fg:x="74780" fg:w="38"/><text x="50.0177%" y="783.50"></text></g><g><title>Unsafe_Park (41 samples, 0.03%)</title><rect x="49.7664%" y="981" width="0.0273%" height="15" fill="rgb(241,192,25)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="991.50"></text></g><g><title>Parker::park (41 samples, 0.03%)</title><rect x="49.7664%" y="965" width="0.0273%" height="15" fill="rgb(239,187,11)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="975.50"></text></g><g><title>__pthread_cond_wait (41 samples, 0.03%)</title><rect x="49.7664%" y="949" width="0.0273%" height="15" fill="rgb(218,202,51)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (41 samples, 0.03%)</title><rect x="49.7664%" y="933" width="0.0273%" height="15" fill="rgb(225,176,8)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="943.50"></text></g><g><title>futex_wait_cancelable (41 samples, 0.03%)</title><rect x="49.7664%" y="917" width="0.0273%" height="15" fill="rgb(219,122,41)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="49.7664%" y="901" width="0.0273%" height="15" fill="rgb(248,140,20)" fg:x="74778" fg:w="41"/><text x="50.0164%" y="911.50"></text></g><g><title>[perf-943567.map] (157 samples, 0.10%)</title><rect x="49.6939%" y="997" width="0.1045%" height="15" fill="rgb(245,41,37)" fg:x="74669" fg:w="157"/><text x="49.9439%" y="1007.50"></text></g><g><title>__GI___clone (20 samples, 0.01%)</title><rect x="49.7983%" y="997" width="0.0133%" height="15" fill="rgb(235,82,39)" fg:x="74826" fg:w="20"/><text x="50.0483%" y="1007.50"></text></g><g><title>globbing_pool-3 (195 samples, 0.13%)</title><rect x="49.6825%" y="1013" width="0.1298%" height="15" fill="rgb(230,108,42)" fg:x="74652" fg:w="195"/><text x="49.9325%" y="1023.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="49.8503%" y="757" width="0.0126%" height="15" fill="rgb(215,150,50)" fg:x="74904" fg:w="19"/><text x="50.1003%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="49.8503%" y="741" width="0.0126%" height="15" fill="rgb(233,212,5)" fg:x="74904" fg:w="19"/><text x="50.1003%" y="751.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="49.8503%" y="725" width="0.0126%" height="15" fill="rgb(245,80,22)" fg:x="74904" fg:w="19"/><text x="50.1003%" y="735.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="49.8496%" y="773" width="0.0140%" height="15" fill="rgb(238,129,16)" fg:x="74903" fg:w="21"/><text x="50.0996%" y="783.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="49.8489%" y="885" width="0.0153%" height="15" fill="rgb(240,19,0)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="895.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="49.8489%" y="869" width="0.0153%" height="15" fill="rgb(232,42,35)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="879.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="49.8489%" y="853" width="0.0153%" height="15" fill="rgb(223,130,24)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="863.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="49.8489%" y="837" width="0.0153%" height="15" fill="rgb(237,16,22)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="847.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="49.8489%" y="821" width="0.0153%" height="15" fill="rgb(248,192,20)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="831.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="49.8489%" y="805" width="0.0153%" height="15" fill="rgb(233,167,2)" fg:x="74902" fg:w="23"/><text x="50.0989%" y="815.50"></text></g><g><title>__schedule (22 samples, 0.01%)</title><rect x="49.8496%" y="789" width="0.0146%" height="15" fill="rgb(252,71,44)" fg:x="74903" fg:w="22"/><text x="50.0996%" y="799.50"></text></g><g><title>Unsafe_Park (24 samples, 0.02%)</title><rect x="49.8489%" y="981" width="0.0160%" height="15" fill="rgb(238,37,47)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="991.50"></text></g><g><title>Parker::park (24 samples, 0.02%)</title><rect x="49.8489%" y="965" width="0.0160%" height="15" fill="rgb(214,202,54)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="975.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.02%)</title><rect x="49.8489%" y="949" width="0.0160%" height="15" fill="rgb(254,165,40)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="49.8489%" y="933" width="0.0160%" height="15" fill="rgb(246,173,38)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="943.50"></text></g><g><title>futex_wait_cancelable (24 samples, 0.02%)</title><rect x="49.8489%" y="917" width="0.0160%" height="15" fill="rgb(215,3,27)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="49.8489%" y="901" width="0.0160%" height="15" fill="rgb(239,169,51)" fg:x="74902" fg:w="24"/><text x="50.0989%" y="911.50"></text></g><g><title>[perf-943567.map] (68 samples, 0.05%)</title><rect x="49.8223%" y="997" width="0.0453%" height="15" fill="rgb(212,5,25)" fg:x="74862" fg:w="68"/><text x="50.0723%" y="1007.50"></text></g><g><title>tlb_flush_mmu (25 samples, 0.02%)</title><rect x="49.8869%" y="821" width="0.0166%" height="15" fill="rgb(243,45,17)" fg:x="74959" fg:w="25"/><text x="50.1369%" y="831.50"></text></g><g><title>release_pages (23 samples, 0.02%)</title><rect x="49.8882%" y="805" width="0.0153%" height="15" fill="rgb(242,97,9)" fg:x="74961" fg:w="23"/><text x="50.1382%" y="815.50"></text></g><g><title>globbing_pool-4 (138 samples, 0.09%)</title><rect x="49.8123%" y="1013" width="0.0918%" height="15" fill="rgb(228,71,31)" fg:x="74847" fg:w="138"/><text x="50.0623%" y="1023.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.03%)</title><rect x="49.8775%" y="997" width="0.0266%" height="15" fill="rgb(252,184,16)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="1007.50"></text></g><g><title>syscall_exit_to_user_mode (40 samples, 0.03%)</title><rect x="49.8775%" y="981" width="0.0266%" height="15" fill="rgb(236,169,46)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="991.50"></text></g><g><title>exit_to_user_mode_prepare (40 samples, 0.03%)</title><rect x="49.8775%" y="965" width="0.0266%" height="15" fill="rgb(207,17,47)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="975.50"></text></g><g><title>arch_do_signal (40 samples, 0.03%)</title><rect x="49.8775%" y="949" width="0.0266%" height="15" fill="rgb(206,201,28)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="959.50"></text></g><g><title>get_signal (40 samples, 0.03%)</title><rect x="49.8775%" y="933" width="0.0266%" height="15" fill="rgb(224,184,23)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="943.50"></text></g><g><title>do_group_exit (40 samples, 0.03%)</title><rect x="49.8775%" y="917" width="0.0266%" height="15" fill="rgb(208,139,48)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="927.50"></text></g><g><title>do_exit (40 samples, 0.03%)</title><rect x="49.8775%" y="901" width="0.0266%" height="15" fill="rgb(208,130,10)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="911.50"></text></g><g><title>mmput (40 samples, 0.03%)</title><rect x="49.8775%" y="885" width="0.0266%" height="15" fill="rgb(211,213,45)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="895.50"></text></g><g><title>exit_mmap (40 samples, 0.03%)</title><rect x="49.8775%" y="869" width="0.0266%" height="15" fill="rgb(235,100,30)" fg:x="74945" fg:w="40"/><text x="50.1275%" y="879.50"></text></g><g><title>unmap_vmas (38 samples, 0.03%)</title><rect x="49.8789%" y="853" width="0.0253%" height="15" fill="rgb(206,144,31)" fg:x="74947" fg:w="38"/><text x="50.1289%" y="863.50"></text></g><g><title>unmap_page_range (38 samples, 0.03%)</title><rect x="49.8789%" y="837" width="0.0253%" height="15" fill="rgb(224,200,26)" fg:x="74947" fg:w="38"/><text x="50.1289%" y="847.50"></text></g><g><title>[perf-943567.map] (67 samples, 0.04%)</title><rect x="49.9135%" y="997" width="0.0446%" height="15" fill="rgb(247,104,53)" fg:x="74999" fg:w="67"/><text x="50.1635%" y="1007.50"></text></g><g><title>globbing_pool-5 (91 samples, 0.06%)</title><rect x="49.9042%" y="1013" width="0.0606%" height="15" fill="rgb(220,14,17)" fg:x="74985" fg:w="91"/><text x="50.1542%" y="1023.50"></text></g><g><title>Monitor::lock (16 samples, 0.01%)</title><rect x="49.9933%" y="965" width="0.0106%" height="15" fill="rgb(230,140,40)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="975.50"></text></g><g><title>Monitor::ILock (16 samples, 0.01%)</title><rect x="49.9933%" y="949" width="0.0106%" height="15" fill="rgb(229,2,41)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="959.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="49.9933%" y="933" width="0.0106%" height="15" fill="rgb(232,89,16)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="943.50"></text></g><g><title>__pthread_cond_wait (16 samples, 0.01%)</title><rect x="49.9933%" y="917" width="0.0106%" height="15" fill="rgb(247,59,52)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="49.9933%" y="901" width="0.0106%" height="15" fill="rgb(226,110,21)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="911.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="49.9933%" y="885" width="0.0106%" height="15" fill="rgb(224,176,43)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="49.9933%" y="869" width="0.0106%" height="15" fill="rgb(221,73,6)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="879.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="49.9933%" y="853" width="0.0106%" height="15" fill="rgb(232,78,19)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="863.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="49.9933%" y="837" width="0.0106%" height="15" fill="rgb(233,112,48)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="847.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="49.9933%" y="821" width="0.0106%" height="15" fill="rgb(243,131,47)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="831.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="49.9933%" y="805" width="0.0106%" height="15" fill="rgb(226,51,1)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="815.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="49.9933%" y="789" width="0.0106%" height="15" fill="rgb(247,58,7)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="799.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="49.9933%" y="773" width="0.0106%" height="15" fill="rgb(209,7,32)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="783.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="49.9933%" y="757" width="0.0106%" height="15" fill="rgb(209,39,41)" fg:x="75119" fg:w="16"/><text x="50.2433%" y="767.50"></text></g><g><title>JVM_StartThread (24 samples, 0.02%)</title><rect x="49.9927%" y="981" width="0.0160%" height="15" fill="rgb(226,182,46)" fg:x="75118" fg:w="24"/><text x="50.2427%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="50.0093%" y="757" width="0.0140%" height="15" fill="rgb(230,219,10)" fg:x="75143" fg:w="21"/><text x="50.2593%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="50.0100%" y="741" width="0.0133%" height="15" fill="rgb(227,175,30)" fg:x="75144" fg:w="20"/><text x="50.2600%" y="751.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="50.0100%" y="725" width="0.0133%" height="15" fill="rgb(217,2,50)" fg:x="75144" fg:w="20"/><text x="50.2600%" y="735.50"></text></g><g><title>Unsafe_Park (24 samples, 0.02%)</title><rect x="50.0087%" y="981" width="0.0160%" height="15" fill="rgb(229,160,0)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="991.50"></text></g><g><title>Parker::park (24 samples, 0.02%)</title><rect x="50.0087%" y="965" width="0.0160%" height="15" fill="rgb(207,78,37)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="975.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.02%)</title><rect x="50.0087%" y="949" width="0.0160%" height="15" fill="rgb(225,57,0)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="50.0087%" y="933" width="0.0160%" height="15" fill="rgb(232,154,2)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="943.50"></text></g><g><title>futex_wait_cancelable (24 samples, 0.02%)</title><rect x="50.0087%" y="917" width="0.0160%" height="15" fill="rgb(241,212,25)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="50.0087%" y="901" width="0.0160%" height="15" fill="rgb(226,69,20)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="911.50"></text></g><g><title>do_syscall_64 (24 samples, 0.02%)</title><rect x="50.0087%" y="885" width="0.0160%" height="15" fill="rgb(247,184,54)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="895.50"></text></g><g><title>__x64_sys_futex (24 samples, 0.02%)</title><rect x="50.0087%" y="869" width="0.0160%" height="15" fill="rgb(210,145,0)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="879.50"></text></g><g><title>do_futex (24 samples, 0.02%)</title><rect x="50.0087%" y="853" width="0.0160%" height="15" fill="rgb(253,82,12)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="863.50"></text></g><g><title>futex_wait (24 samples, 0.02%)</title><rect x="50.0087%" y="837" width="0.0160%" height="15" fill="rgb(245,42,11)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="847.50"></text></g><g><title>futex_wait_queue_me (24 samples, 0.02%)</title><rect x="50.0087%" y="821" width="0.0160%" height="15" fill="rgb(219,147,32)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="831.50"></text></g><g><title>schedule (24 samples, 0.02%)</title><rect x="50.0087%" y="805" width="0.0160%" height="15" fill="rgb(246,12,7)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="815.50"></text></g><g><title>__schedule (24 samples, 0.02%)</title><rect x="50.0087%" y="789" width="0.0160%" height="15" fill="rgb(243,50,9)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="799.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="50.0087%" y="773" width="0.0160%" height="15" fill="rgb(219,149,6)" fg:x="75142" fg:w="24"/><text x="50.2587%" y="783.50"></text></g><g><title>[perf-943567.map] (83 samples, 0.06%)</title><rect x="49.9701%" y="997" width="0.0552%" height="15" fill="rgb(241,51,42)" fg:x="75084" fg:w="83"/><text x="50.2201%" y="1007.50"></text></g><g><title>__GI___clone (20 samples, 0.01%)</title><rect x="50.0253%" y="997" width="0.0133%" height="15" fill="rgb(226,128,27)" fg:x="75167" fg:w="20"/><text x="50.2753%" y="1007.50"></text></g><g><title>globbing_pool-6 (112 samples, 0.07%)</title><rect x="49.9647%" y="1013" width="0.0745%" height="15" fill="rgb(244,144,4)" fg:x="75076" fg:w="112"/><text x="50.2147%" y="1023.50"></text></g><g><title>JVM_StartThread (17 samples, 0.01%)</title><rect x="50.1091%" y="981" width="0.0113%" height="15" fill="rgb(221,4,13)" fg:x="75293" fg:w="17"/><text x="50.3591%" y="991.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="50.1258%" y="885" width="0.0106%" height="15" fill="rgb(208,170,28)" fg:x="75318" fg:w="16"/><text x="50.3758%" y="895.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="50.1258%" y="869" width="0.0106%" height="15" fill="rgb(226,131,13)" fg:x="75318" fg:w="16"/><text x="50.3758%" y="879.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="50.1258%" y="853" width="0.0106%" height="15" fill="rgb(215,72,41)" fg:x="75318" fg:w="16"/><text x="50.3758%" y="863.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="50.1258%" y="837" width="0.0106%" height="15" fill="rgb(243,108,20)" fg:x="75318" fg:w="16"/><text x="50.3758%" y="847.50"></text></g><g><title>__pthread_cond_wait (18 samples, 0.01%)</title><rect x="50.1251%" y="949" width="0.0120%" height="15" fill="rgb(230,189,17)" fg:x="75317" fg:w="18"/><text x="50.3751%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (18 samples, 0.01%)</title><rect x="50.1251%" y="933" width="0.0120%" height="15" fill="rgb(220,50,17)" fg:x="75317" fg:w="18"/><text x="50.3751%" y="943.50"></text></g><g><title>futex_wait_cancelable (18 samples, 0.01%)</title><rect x="50.1251%" y="917" width="0.0120%" height="15" fill="rgb(248,152,48)" fg:x="75317" fg:w="18"/><text x="50.3751%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="50.1258%" y="901" width="0.0113%" height="15" fill="rgb(244,91,11)" fg:x="75318" fg:w="17"/><text x="50.3758%" y="911.50"></text></g><g><title>Unsafe_Park (19 samples, 0.01%)</title><rect x="50.1251%" y="981" width="0.0126%" height="15" fill="rgb(220,157,5)" fg:x="75317" fg:w="19"/><text x="50.3751%" y="991.50"></text></g><g><title>Parker::park (19 samples, 0.01%)</title><rect x="50.1251%" y="965" width="0.0126%" height="15" fill="rgb(253,137,8)" fg:x="75317" fg:w="19"/><text x="50.3751%" y="975.50"></text></g><g><title>[perf-943567.map] (131 samples, 0.09%)</title><rect x="50.0519%" y="997" width="0.0872%" height="15" fill="rgb(217,137,51)" fg:x="75207" fg:w="131"/><text x="50.3019%" y="1007.50"></text></g><g><title>Monitor::wait (22 samples, 0.01%)</title><rect x="50.1464%" y="949" width="0.0146%" height="15" fill="rgb(218,209,53)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="959.50"></text></g><g><title>Monitor::IWait (22 samples, 0.01%)</title><rect x="50.1464%" y="933" width="0.0146%" height="15" fill="rgb(249,137,25)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="943.50"></text></g><g><title>os::PlatformEvent::park (22 samples, 0.01%)</title><rect x="50.1464%" y="917" width="0.0146%" height="15" fill="rgb(239,155,26)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="927.50"></text></g><g><title>__pthread_cond_wait (22 samples, 0.01%)</title><rect x="50.1464%" y="901" width="0.0146%" height="15" fill="rgb(227,85,46)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (22 samples, 0.01%)</title><rect x="50.1464%" y="885" width="0.0146%" height="15" fill="rgb(251,107,43)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="895.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.01%)</title><rect x="50.1464%" y="869" width="0.0146%" height="15" fill="rgb(234,170,33)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="50.1464%" y="853" width="0.0146%" height="15" fill="rgb(206,29,35)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="863.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="50.1464%" y="837" width="0.0146%" height="15" fill="rgb(227,138,25)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="847.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.01%)</title><rect x="50.1464%" y="821" width="0.0146%" height="15" fill="rgb(249,131,35)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="831.50"></text></g><g><title>do_futex (22 samples, 0.01%)</title><rect x="50.1464%" y="805" width="0.0146%" height="15" fill="rgb(239,6,40)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="815.50"></text></g><g><title>futex_wait (22 samples, 0.01%)</title><rect x="50.1464%" y="789" width="0.0146%" height="15" fill="rgb(246,136,47)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="799.50"></text></g><g><title>futex_wait_queue_me (22 samples, 0.01%)</title><rect x="50.1464%" y="773" width="0.0146%" height="15" fill="rgb(253,58,26)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="783.50"></text></g><g><title>schedule (22 samples, 0.01%)</title><rect x="50.1464%" y="757" width="0.0146%" height="15" fill="rgb(237,141,10)" fg:x="75349" fg:w="22"/><text x="50.3964%" y="767.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="50.1471%" y="741" width="0.0140%" height="15" fill="rgb(234,156,12)" fg:x="75350" fg:w="21"/><text x="50.3971%" y="751.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="50.1471%" y="725" width="0.0140%" height="15" fill="rgb(243,224,36)" fg:x="75350" fg:w="21"/><text x="50.3971%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="50.1477%" y="709" width="0.0133%" height="15" fill="rgb(205,229,51)" fg:x="75351" fg:w="20"/><text x="50.3977%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="50.1477%" y="693" width="0.0133%" height="15" fill="rgb(223,189,4)" fg:x="75351" fg:w="20"/><text x="50.3977%" y="703.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="50.1477%" y="677" width="0.0133%" height="15" fill="rgb(249,167,54)" fg:x="75351" fg:w="20"/><text x="50.3977%" y="687.50"></text></g><g><title>__GI___clone (38 samples, 0.03%)</title><rect x="50.1398%" y="997" width="0.0253%" height="15" fill="rgb(218,34,28)" fg:x="75339" fg:w="38"/><text x="50.3898%" y="1007.50"></text></g><g><title>start_thread (29 samples, 0.02%)</title><rect x="50.1457%" y="981" width="0.0193%" height="15" fill="rgb(232,109,42)" fg:x="75348" fg:w="29"/><text x="50.3957%" y="991.50"></text></g><g><title>thread_native_entry (29 samples, 0.02%)</title><rect x="50.1457%" y="965" width="0.0193%" height="15" fill="rgb(248,214,46)" fg:x="75348" fg:w="29"/><text x="50.3957%" y="975.50"></text></g><g><title>globbing_pool-7 (190 samples, 0.13%)</title><rect x="50.0393%" y="1013" width="0.1264%" height="15" fill="rgb(244,216,40)" fg:x="75188" fg:w="190"/><text x="50.2893%" y="1023.50"></text></g><g><title>JVM_StartThread (17 samples, 0.01%)</title><rect x="50.1837%" y="981" width="0.0113%" height="15" fill="rgb(231,226,31)" fg:x="75405" fg:w="17"/><text x="50.4337%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (38 samples, 0.03%)</title><rect x="50.2030%" y="757" width="0.0253%" height="15" fill="rgb(238,38,43)" fg:x="75434" fg:w="38"/><text x="50.4530%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (38 samples, 0.03%)</title><rect x="50.2030%" y="741" width="0.0253%" height="15" fill="rgb(208,88,43)" fg:x="75434" fg:w="38"/><text x="50.4530%" y="751.50"></text></g><g><title>native_write_msr (38 samples, 0.03%)</title><rect x="50.2030%" y="725" width="0.0253%" height="15" fill="rgb(205,136,37)" fg:x="75434" fg:w="38"/><text x="50.4530%" y="735.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="50.2017%" y="773" width="0.0280%" height="15" fill="rgb(237,34,14)" fg:x="75432" fg:w="42"/><text x="50.4517%" y="783.50"></text></g><g><title>do_syscall_64 (46 samples, 0.03%)</title><rect x="50.2010%" y="885" width="0.0306%" height="15" fill="rgb(236,193,44)" fg:x="75431" fg:w="46"/><text x="50.4510%" y="895.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.03%)</title><rect x="50.2010%" y="869" width="0.0306%" height="15" fill="rgb(231,48,10)" fg:x="75431" fg:w="46"/><text x="50.4510%" y="879.50"></text></g><g><title>do_futex (46 samples, 0.03%)</title><rect x="50.2010%" y="853" width="0.0306%" height="15" fill="rgb(213,141,34)" fg:x="75431" fg:w="46"/><text x="50.4510%" y="863.50"></text></g><g><title>futex_wait (46 samples, 0.03%)</title><rect x="50.2010%" y="837" width="0.0306%" height="15" fill="rgb(249,130,34)" fg:x="75431" fg:w="46"/><text x="50.4510%" y="847.50"></text></g><g><title>futex_wait_queue_me (45 samples, 0.03%)</title><rect x="50.2017%" y="821" width="0.0299%" height="15" fill="rgb(219,42,41)" fg:x="75432" fg:w="45"/><text x="50.4517%" y="831.50"></text></g><g><title>schedule (45 samples, 0.03%)</title><rect x="50.2017%" y="805" width="0.0299%" height="15" fill="rgb(224,100,54)" fg:x="75432" fg:w="45"/><text x="50.4517%" y="815.50"></text></g><g><title>__schedule (45 samples, 0.03%)</title><rect x="50.2017%" y="789" width="0.0299%" height="15" fill="rgb(229,200,27)" fg:x="75432" fg:w="45"/><text x="50.4517%" y="799.50"></text></g><g><title>Unsafe_Park (56 samples, 0.04%)</title><rect x="50.1950%" y="981" width="0.0373%" height="15" fill="rgb(217,118,10)" fg:x="75422" fg:w="56"/><text x="50.4450%" y="991.50"></text></g><g><title>Parker::park (56 samples, 0.04%)</title><rect x="50.1950%" y="965" width="0.0373%" height="15" fill="rgb(206,22,3)" fg:x="75422" fg:w="56"/><text x="50.4450%" y="975.50"></text></g><g><title>__pthread_cond_wait (47 samples, 0.03%)</title><rect x="50.2010%" y="949" width="0.0313%" height="15" fill="rgb(232,163,46)" fg:x="75431" fg:w="47"/><text x="50.4510%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (47 samples, 0.03%)</title><rect x="50.2010%" y="933" width="0.0313%" height="15" fill="rgb(206,95,13)" fg:x="75431" fg:w="47"/><text x="50.4510%" y="943.50"></text></g><g><title>futex_wait_cancelable (47 samples, 0.03%)</title><rect x="50.2010%" y="917" width="0.0313%" height="15" fill="rgb(253,154,18)" fg:x="75431" fg:w="47"/><text x="50.4510%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.03%)</title><rect x="50.2010%" y="901" width="0.0313%" height="15" fill="rgb(219,32,23)" fg:x="75431" fg:w="47"/><text x="50.4510%" y="911.50"></text></g><g><title>[perf-943567.map] (101 samples, 0.07%)</title><rect x="50.1684%" y="997" width="0.0672%" height="15" fill="rgb(230,191,45)" fg:x="75382" fg:w="101"/><text x="50.4184%" y="1007.50"></text></g><g><title>globbing_pool-8 (106 samples, 0.07%)</title><rect x="50.1657%" y="1013" width="0.0705%" height="15" fill="rgb(229,64,36)" fg:x="75378" fg:w="106"/><text x="50.4157%" y="1023.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="50.2496%" y="757" width="0.0140%" height="15" fill="rgb(205,129,25)" fg:x="75504" fg:w="21"/><text x="50.4996%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="50.2496%" y="741" width="0.0140%" height="15" fill="rgb(254,112,7)" fg:x="75504" fg:w="21"/><text x="50.4996%" y="751.50"></text></g><g><title>native_write_msr (21 samples, 0.01%)</title><rect x="50.2496%" y="725" width="0.0140%" height="15" fill="rgb(226,53,48)" fg:x="75504" fg:w="21"/><text x="50.4996%" y="735.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="50.2489%" y="773" width="0.0160%" height="15" fill="rgb(214,153,38)" fg:x="75503" fg:w="24"/><text x="50.4989%" y="783.50"></text></g><g><title>Unsafe_Park (28 samples, 0.02%)</title><rect x="50.2476%" y="981" width="0.0186%" height="15" fill="rgb(243,101,7)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="991.50"></text></g><g><title>Parker::park (28 samples, 0.02%)</title><rect x="50.2476%" y="965" width="0.0186%" height="15" fill="rgb(240,140,22)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="975.50"></text></g><g><title>__pthread_cond_wait (28 samples, 0.02%)</title><rect x="50.2476%" y="949" width="0.0186%" height="15" fill="rgb(235,114,2)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (28 samples, 0.02%)</title><rect x="50.2476%" y="933" width="0.0186%" height="15" fill="rgb(242,59,12)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="943.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.02%)</title><rect x="50.2476%" y="917" width="0.0186%" height="15" fill="rgb(252,134,9)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="50.2476%" y="901" width="0.0186%" height="15" fill="rgb(236,4,44)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="911.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="50.2476%" y="885" width="0.0186%" height="15" fill="rgb(254,172,41)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="895.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.02%)</title><rect x="50.2476%" y="869" width="0.0186%" height="15" fill="rgb(244,63,20)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="879.50"></text></g><g><title>do_futex (28 samples, 0.02%)</title><rect x="50.2476%" y="853" width="0.0186%" height="15" fill="rgb(250,73,31)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="863.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="50.2476%" y="837" width="0.0186%" height="15" fill="rgb(241,38,36)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="847.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="50.2476%" y="821" width="0.0186%" height="15" fill="rgb(245,211,2)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="831.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="50.2476%" y="805" width="0.0186%" height="15" fill="rgb(206,120,28)" fg:x="75501" fg:w="28"/><text x="50.4976%" y="815.50"></text></g><g><title>__schedule (27 samples, 0.02%)</title><rect x="50.2482%" y="789" width="0.0180%" height="15" fill="rgb(211,59,34)" fg:x="75502" fg:w="27"/><text x="50.4982%" y="799.50"></text></g><g><title>[perf-943567.map] (43 samples, 0.03%)</title><rect x="50.2389%" y="997" width="0.0286%" height="15" fill="rgb(233,168,5)" fg:x="75488" fg:w="43"/><text x="50.4889%" y="1007.50"></text></g><g><title>globbing_pool-9 (49 samples, 0.03%)</title><rect x="50.2363%" y="1013" width="0.0326%" height="15" fill="rgb(234,33,13)" fg:x="75484" fg:w="49"/><text x="50.4863%" y="1023.50"></text></g><g><title>[anon] (248 samples, 0.17%)</title><rect x="50.2742%" y="997" width="0.1650%" height="15" fill="rgb(231,150,26)" fg:x="75541" fg:w="248"/><text x="50.5242%" y="1007.50"></text></g><g><title>[libunix_jni.so] (16 samples, 0.01%)</title><rect x="50.4392%" y="997" width="0.0106%" height="15" fill="rgb(217,191,4)" fg:x="75789" fg:w="16"/><text x="50.6892%" y="1007.50"></text></g><g><title>ClassFileParser::parse_constant_pool (38 samples, 0.03%)</title><rect x="51.7603%" y="837" width="0.0253%" height="15" fill="rgb(246,198,38)" fg:x="77774" fg:w="38"/><text x="52.0103%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (37 samples, 0.02%)</title><rect x="51.7610%" y="821" width="0.0246%" height="15" fill="rgb(245,64,37)" fg:x="77775" fg:w="37"/><text x="52.0110%" y="831.50"></text></g><g><title>SymbolTable::lookup_only (31 samples, 0.02%)</title><rect x="51.7650%" y="805" width="0.0206%" height="15" fill="rgb(250,30,36)" fg:x="77781" fg:w="31"/><text x="52.0150%" y="815.50"></text></g><g><title>ClassFileParser::ClassFileParser (62 samples, 0.04%)</title><rect x="51.7596%" y="869" width="0.0413%" height="15" fill="rgb(217,86,53)" fg:x="77773" fg:w="62"/><text x="52.0096%" y="879.50"></text></g><g><title>ClassFileParser::parse_stream (62 samples, 0.04%)</title><rect x="51.7596%" y="853" width="0.0413%" height="15" fill="rgb(228,157,16)" fg:x="77773" fg:w="62"/><text x="52.0096%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (21 samples, 0.01%)</title><rect x="51.8142%" y="789" width="0.0140%" height="15" fill="rgb(217,59,31)" fg:x="77855" fg:w="21"/><text x="52.0642%" y="799.50"></text></g><g><title>ClassLoader::load_class (25 samples, 0.02%)</title><rect x="51.8122%" y="805" width="0.0166%" height="15" fill="rgb(237,138,41)" fg:x="77852" fg:w="25"/><text x="52.0622%" y="815.50"></text></g><g><title>ClassLoader::load_class (123 samples, 0.08%)</title><rect x="51.7477%" y="901" width="0.0819%" height="15" fill="rgb(227,91,49)" fg:x="77755" fg:w="123"/><text x="51.9977%" y="911.50"></text></g><g><title>KlassFactory::create_from_stream (105 samples, 0.07%)</title><rect x="51.7596%" y="885" width="0.0699%" height="15" fill="rgb(247,21,44)" fg:x="77773" fg:w="105"/><text x="52.0096%" y="895.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (29 samples, 0.02%)</title><rect x="51.8102%" y="869" width="0.0193%" height="15" fill="rgb(219,210,51)" fg:x="77849" fg:w="29"/><text x="52.0602%" y="879.50"></text></g><g><title>SystemDictionary::resolve_super_or_fail (27 samples, 0.02%)</title><rect x="51.8116%" y="853" width="0.0180%" height="15" fill="rgb(209,140,6)" fg:x="77851" fg:w="27"/><text x="52.0616%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (26 samples, 0.02%)</title><rect x="51.8122%" y="837" width="0.0173%" height="15" fill="rgb(221,188,24)" fg:x="77852" fg:w="26"/><text x="52.0622%" y="847.50"></text></g><g><title>SystemDictionary::load_instance_class (26 samples, 0.02%)</title><rect x="51.8122%" y="821" width="0.0173%" height="15" fill="rgb(232,154,20)" fg:x="77852" fg:w="26"/><text x="52.0622%" y="831.50"></text></g><g><title>ConstantPool::klass_at_impl (156 samples, 0.10%)</title><rect x="51.7377%" y="965" width="0.1038%" height="15" fill="rgb(244,137,50)" fg:x="77740" fg:w="156"/><text x="51.9877%" y="975.50"></text></g><g><title>SystemDictionary::resolve_or_fail (152 samples, 0.10%)</title><rect x="51.7403%" y="949" width="0.1012%" height="15" fill="rgb(225,185,43)" fg:x="77744" fg:w="152"/><text x="51.9903%" y="959.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (152 samples, 0.10%)</title><rect x="51.7403%" y="933" width="0.1012%" height="15" fill="rgb(213,205,38)" fg:x="77744" fg:w="152"/><text x="51.9903%" y="943.50"></text></g><g><title>SystemDictionary::load_instance_class (141 samples, 0.09%)</title><rect x="51.7477%" y="917" width="0.0938%" height="15" fill="rgb(236,73,12)" fg:x="77755" fg:w="141"/><text x="51.9977%" y="927.50"></text></g><g><title>InstanceKlass::link_class_impl (28 samples, 0.02%)</title><rect x="51.8462%" y="933" width="0.0186%" height="15" fill="rgb(235,219,13)" fg:x="77903" fg:w="28"/><text x="52.0962%" y="943.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (30 samples, 0.02%)</title><rect x="51.8661%" y="885" width="0.0200%" height="15" fill="rgb(218,59,36)" fg:x="77933" fg:w="30"/><text x="52.1161%" y="895.50"></text></g><g><title>Method::link_method (33 samples, 0.02%)</title><rect x="51.8648%" y="917" width="0.0220%" height="15" fill="rgb(205,110,39)" fg:x="77931" fg:w="33"/><text x="52.1148%" y="927.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (32 samples, 0.02%)</title><rect x="51.8655%" y="901" width="0.0213%" height="15" fill="rgb(218,206,42)" fg:x="77932" fg:w="32"/><text x="52.1155%" y="911.50"></text></g><g><title>InstanceKlass::link_methods (34 samples, 0.02%)</title><rect x="51.8648%" y="933" width="0.0226%" height="15" fill="rgb(248,125,24)" fg:x="77931" fg:w="34"/><text x="52.1148%" y="943.50"></text></g><g><title>Rewriter::rewrite_bytecodes (33 samples, 0.02%)</title><rect x="51.8981%" y="901" width="0.0220%" height="15" fill="rgb(242,28,27)" fg:x="77981" fg:w="33"/><text x="52.1481%" y="911.50"></text></g><g><title>Rewriter::scan_method (19 samples, 0.01%)</title><rect x="51.9074%" y="885" width="0.0126%" height="15" fill="rgb(216,228,15)" fg:x="77995" fg:w="19"/><text x="52.1574%" y="895.50"></text></g><g><title>Rewriter::rewrite (48 samples, 0.03%)</title><rect x="51.8888%" y="933" width="0.0319%" height="15" fill="rgb(235,116,46)" fg:x="77967" fg:w="48"/><text x="52.1388%" y="943.50"></text></g><g><title>Rewriter::Rewriter (47 samples, 0.03%)</title><rect x="51.8894%" y="917" width="0.0313%" height="15" fill="rgb(224,18,32)" fg:x="77968" fg:w="47"/><text x="52.1394%" y="927.50"></text></g><g><title>InstanceKlass::link_class_impl (139 samples, 0.09%)</title><rect x="51.8462%" y="949" width="0.0925%" height="15" fill="rgb(252,5,12)" fg:x="77903" fg:w="139"/><text x="52.0962%" y="959.50"></text></g><g><title>InstanceKlass::initialize_impl (145 samples, 0.10%)</title><rect x="51.8442%" y="965" width="0.0965%" height="15" fill="rgb(251,36,5)" fg:x="77900" fg:w="145"/><text x="52.0942%" y="975.50"></text></g><g><title>InterpreterRuntime::_new (316 samples, 0.21%)</title><rect x="51.7363%" y="981" width="0.2103%" height="15" fill="rgb(217,53,14)" fg:x="77738" fg:w="316"/><text x="51.9863%" y="991.50"></text></g><g><title>InterpreterRuntime::anewarray (34 samples, 0.02%)</title><rect x="51.9467%" y="981" width="0.0226%" height="15" fill="rgb(215,86,45)" fg:x="78054" fg:w="34"/><text x="52.1967%" y="991.50"></text></g><g><title>InterpreterRuntime::build_method_counters (21 samples, 0.01%)</title><rect x="51.9699%" y="981" width="0.0140%" height="15" fill="rgb(242,169,11)" fg:x="78089" fg:w="21"/><text x="52.2199%" y="991.50"></text></g><g><title>Method::build_method_counters (17 samples, 0.01%)</title><rect x="51.9726%" y="965" width="0.0113%" height="15" fill="rgb(211,213,45)" fg:x="78093" fg:w="17"/><text x="52.2226%" y="975.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (56 samples, 0.04%)</title><rect x="51.9839%" y="981" width="0.0373%" height="15" fill="rgb(205,88,11)" fg:x="78110" fg:w="56"/><text x="52.2339%" y="991.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (56 samples, 0.04%)</title><rect x="51.9839%" y="965" width="0.0373%" height="15" fill="rgb(252,69,26)" fg:x="78110" fg:w="56"/><text x="52.2339%" y="975.50"></text></g><g><title>TieredThresholdPolicy::event (47 samples, 0.03%)</title><rect x="51.9899%" y="949" width="0.0313%" height="15" fill="rgb(246,123,37)" fg:x="78119" fg:w="47"/><text x="52.2399%" y="959.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (43 samples, 0.03%)</title><rect x="51.9926%" y="933" width="0.0286%" height="15" fill="rgb(212,205,5)" fg:x="78123" fg:w="43"/><text x="52.2426%" y="943.50"></text></g><g><title>InterpreterRuntime::ldc (24 samples, 0.02%)</title><rect x="52.0212%" y="981" width="0.0160%" height="15" fill="rgb(253,148,0)" fg:x="78166" fg:w="24"/><text x="52.2712%" y="991.50"></text></g><g><title>ClassLoader::load_class (21 samples, 0.01%)</title><rect x="52.0744%" y="869" width="0.0140%" height="15" fill="rgb(239,22,4)" fg:x="78246" fg:w="21"/><text x="52.3244%" y="879.50"></text></g><g><title>KlassFactory::create_from_stream (18 samples, 0.01%)</title><rect x="52.0764%" y="853" width="0.0120%" height="15" fill="rgb(226,26,53)" fg:x="78249" fg:w="18"/><text x="52.3264%" y="863.50"></text></g><g><title>ConstantPool::klass_ref_at (29 samples, 0.02%)</title><rect x="52.0704%" y="933" width="0.0193%" height="15" fill="rgb(225,229,45)" fg:x="78240" fg:w="29"/><text x="52.3204%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_fail (27 samples, 0.02%)</title><rect x="52.0718%" y="917" width="0.0180%" height="15" fill="rgb(220,60,37)" fg:x="78242" fg:w="27"/><text x="52.3218%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (25 samples, 0.02%)</title><rect x="52.0731%" y="901" width="0.0166%" height="15" fill="rgb(217,180,35)" fg:x="78244" fg:w="25"/><text x="52.3231%" y="911.50"></text></g><g><title>SystemDictionary::load_instance_class (23 samples, 0.02%)</title><rect x="52.0744%" y="885" width="0.0153%" height="15" fill="rgb(229,7,53)" fg:x="78246" fg:w="23"/><text x="52.3244%" y="895.50"></text></g><g><title>InstanceKlass::find_local_field (19 samples, 0.01%)</title><rect x="52.0917%" y="901" width="0.0126%" height="15" fill="rgb(254,137,3)" fg:x="78272" fg:w="19"/><text x="52.3417%" y="911.50"></text></g><g><title>InstanceKlass::find_field (22 samples, 0.01%)</title><rect x="52.0904%" y="917" width="0.0146%" height="15" fill="rgb(215,140,41)" fg:x="78270" fg:w="22"/><text x="52.3404%" y="927.50"></text></g><g><title>Rewriter::rewrite (16 samples, 0.01%)</title><rect x="52.1117%" y="885" width="0.0106%" height="15" fill="rgb(250,80,15)" fg:x="78302" fg:w="16"/><text x="52.3617%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (33 samples, 0.02%)</title><rect x="52.1057%" y="901" width="0.0220%" height="15" fill="rgb(252,191,6)" fg:x="78293" fg:w="33"/><text x="52.3557%" y="911.50"></text></g><g><title>InstanceKlass::initialize_impl (35 samples, 0.02%)</title><rect x="52.1050%" y="917" width="0.0233%" height="15" fill="rgb(246,217,18)" fg:x="78292" fg:w="35"/><text x="52.3550%" y="927.50"></text></g><g><title>LinkResolver::resolve_field (63 samples, 0.04%)</title><rect x="52.0897%" y="933" width="0.0419%" height="15" fill="rgb(223,93,7)" fg:x="78269" fg:w="63"/><text x="52.3397%" y="943.50"></text></g><g><title>LinkResolver::resolve_field_access (96 samples, 0.06%)</title><rect x="52.0691%" y="949" width="0.0639%" height="15" fill="rgb(225,55,52)" fg:x="78238" fg:w="96"/><text x="52.3191%" y="959.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (111 samples, 0.07%)</title><rect x="52.0625%" y="965" width="0.0739%" height="15" fill="rgb(240,31,24)" fg:x="78228" fg:w="111"/><text x="52.3125%" y="975.50"></text></g><g><title>ClassFileParser::parse_constant_pool (35 samples, 0.02%)</title><rect x="52.1756%" y="805" width="0.0233%" height="15" fill="rgb(205,56,52)" fg:x="78398" fg:w="35"/><text x="52.4256%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (35 samples, 0.02%)</title><rect x="52.1756%" y="789" width="0.0233%" height="15" fill="rgb(246,146,12)" fg:x="78398" fg:w="35"/><text x="52.4256%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (27 samples, 0.02%)</title><rect x="52.1809%" y="773" width="0.0180%" height="15" fill="rgb(239,84,36)" fg:x="78406" fg:w="27"/><text x="52.4309%" y="783.50"></text></g><g><title>ClassFileParser::ClassFileParser (44 samples, 0.03%)</title><rect x="52.1756%" y="837" width="0.0293%" height="15" fill="rgb(207,41,40)" fg:x="78398" fg:w="44"/><text x="52.4256%" y="847.50"></text></g><g><title>ClassFileParser::parse_stream (44 samples, 0.03%)</title><rect x="52.1756%" y="821" width="0.0293%" height="15" fill="rgb(241,179,25)" fg:x="78398" fg:w="44"/><text x="52.4256%" y="831.50"></text></g><g><title>ClassLoader::load_class (54 samples, 0.04%)</title><rect x="52.1743%" y="869" width="0.0359%" height="15" fill="rgb(210,0,34)" fg:x="78396" fg:w="54"/><text x="52.4243%" y="879.50"></text></g><g><title>KlassFactory::create_from_stream (52 samples, 0.03%)</title><rect x="52.1756%" y="853" width="0.0346%" height="15" fill="rgb(225,217,29)" fg:x="78398" fg:w="52"/><text x="52.4256%" y="863.50"></text></g><g><title>ConstantPool::klass_ref_at (78 samples, 0.05%)</title><rect x="52.1603%" y="933" width="0.0519%" height="15" fill="rgb(216,191,38)" fg:x="78375" fg:w="78"/><text x="52.4103%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_fail (68 samples, 0.05%)</title><rect x="52.1669%" y="917" width="0.0453%" height="15" fill="rgb(232,140,52)" fg:x="78385" fg:w="68"/><text x="52.4169%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (67 samples, 0.04%)</title><rect x="52.1676%" y="901" width="0.0446%" height="15" fill="rgb(223,158,51)" fg:x="78386" fg:w="67"/><text x="52.4176%" y="911.50"></text></g><g><title>SystemDictionary::load_instance_class (59 samples, 0.04%)</title><rect x="52.1729%" y="885" width="0.0393%" height="15" fill="rgb(235,29,51)" fg:x="78394" fg:w="59"/><text x="52.4229%" y="895.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (23 samples, 0.02%)</title><rect x="52.2195%" y="933" width="0.0153%" height="15" fill="rgb(215,181,18)" fg:x="78464" fg:w="23"/><text x="52.4695%" y="943.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (23 samples, 0.02%)</title><rect x="52.2421%" y="917" width="0.0153%" height="15" fill="rgb(227,125,34)" fg:x="78498" fg:w="23"/><text x="52.4921%" y="927.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (41 samples, 0.03%)</title><rect x="52.2348%" y="933" width="0.0273%" height="15" fill="rgb(230,197,49)" fg:x="78487" fg:w="41"/><text x="52.4848%" y="943.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (16 samples, 0.01%)</title><rect x="52.2714%" y="837" width="0.0106%" height="15" fill="rgb(239,141,16)" fg:x="78542" fg:w="16"/><text x="52.5214%" y="847.50"></text></g><g><title>InstanceKlass::link_methods (17 samples, 0.01%)</title><rect x="52.2714%" y="885" width="0.0113%" height="15" fill="rgb(225,105,43)" fg:x="78542" fg:w="17"/><text x="52.5214%" y="895.50"></text></g><g><title>Method::link_method (17 samples, 0.01%)</title><rect x="52.2714%" y="869" width="0.0113%" height="15" fill="rgb(214,131,14)" fg:x="78542" fg:w="17"/><text x="52.5214%" y="879.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (17 samples, 0.01%)</title><rect x="52.2714%" y="853" width="0.0113%" height="15" fill="rgb(229,177,11)" fg:x="78542" fg:w="17"/><text x="52.5214%" y="863.50"></text></g><g><title>Rewriter::rewrite_bytecodes (27 samples, 0.02%)</title><rect x="52.2874%" y="853" width="0.0180%" height="15" fill="rgb(231,180,14)" fg:x="78566" fg:w="27"/><text x="52.5374%" y="863.50"></text></g><g><title>Rewriter::scan_method (16 samples, 0.01%)</title><rect x="52.2947%" y="837" width="0.0106%" height="15" fill="rgb(232,88,2)" fg:x="78577" fg:w="16"/><text x="52.5447%" y="847.50"></text></g><g><title>Rewriter::rewrite (35 samples, 0.02%)</title><rect x="52.2834%" y="885" width="0.0233%" height="15" fill="rgb(205,220,8)" fg:x="78560" fg:w="35"/><text x="52.5334%" y="895.50"></text></g><g><title>Rewriter::Rewriter (34 samples, 0.02%)</title><rect x="52.2841%" y="869" width="0.0226%" height="15" fill="rgb(225,23,53)" fg:x="78561" fg:w="34"/><text x="52.5341%" y="879.50"></text></g><g><title>InstanceKlass::link_class_impl (73 samples, 0.05%)</title><rect x="52.2648%" y="901" width="0.0486%" height="15" fill="rgb(213,62,29)" fg:x="78532" fg:w="73"/><text x="52.5148%" y="911.50"></text></g><g><title>InstanceKlass::initialize_impl (75 samples, 0.05%)</title><rect x="52.2641%" y="917" width="0.0499%" height="15" fill="rgb(227,75,7)" fg:x="78531" fg:w="75"/><text x="52.5141%" y="927.50"></text></g><g><title>LinkResolver::resolve_method (17 samples, 0.01%)</title><rect x="52.3154%" y="917" width="0.0113%" height="15" fill="rgb(207,105,14)" fg:x="78608" fg:w="17"/><text x="52.5654%" y="927.50"></text></g><g><title>LinkResolver::resolve_static_call (98 samples, 0.07%)</title><rect x="52.2621%" y="933" width="0.0652%" height="15" fill="rgb(245,62,29)" fg:x="78528" fg:w="98"/><text x="52.5121%" y="943.50"></text></g><g><title>LinkResolver::resolve_invoke (261 samples, 0.17%)</title><rect x="52.1596%" y="949" width="0.1737%" height="15" fill="rgb(236,202,4)" fg:x="78374" fg:w="261"/><text x="52.4096%" y="959.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (308 samples, 0.20%)</title><rect x="52.1363%" y="965" width="0.2050%" height="15" fill="rgb(250,67,1)" fg:x="78339" fg:w="308"/><text x="52.3863%" y="975.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (31 samples, 0.02%)</title><rect x="52.3446%" y="901" width="0.0206%" height="15" fill="rgb(253,115,44)" fg:x="78652" fg:w="31"/><text x="52.5946%" y="911.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (31 samples, 0.02%)</title><rect x="52.3446%" y="885" width="0.0206%" height="15" fill="rgb(251,139,18)" fg:x="78652" fg:w="31"/><text x="52.5946%" y="895.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (21 samples, 0.01%)</title><rect x="52.3513%" y="869" width="0.0140%" height="15" fill="rgb(218,22,32)" fg:x="78662" fg:w="21"/><text x="52.6013%" y="879.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (42 samples, 0.03%)</title><rect x="52.3446%" y="917" width="0.0280%" height="15" fill="rgb(243,53,5)" fg:x="78652" fg:w="42"/><text x="52.5946%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (61 samples, 0.04%)</title><rect x="52.3413%" y="965" width="0.0406%" height="15" fill="rgb(227,56,16)" fg:x="78647" fg:w="61"/><text x="52.5913%" y="975.50"></text></g><g><title>LinkResolver::resolve_invoke (57 samples, 0.04%)</title><rect x="52.3440%" y="949" width="0.0379%" height="15" fill="rgb(245,53,0)" fg:x="78651" fg:w="57"/><text x="52.5940%" y="959.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (57 samples, 0.04%)</title><rect x="52.3440%" y="933" width="0.0379%" height="15" fill="rgb(216,170,35)" fg:x="78651" fg:w="57"/><text x="52.5940%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (489 samples, 0.33%)</title><rect x="52.0591%" y="981" width="0.3254%" height="15" fill="rgb(211,200,8)" fg:x="78223" fg:w="489"/><text x="52.3091%" y="991.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (31 samples, 0.02%)</title><rect x="52.3859%" y="965" width="0.0206%" height="15" fill="rgb(228,204,44)" fg:x="78714" fg:w="31"/><text x="52.6359%" y="975.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (30 samples, 0.02%)</title><rect x="52.3866%" y="949" width="0.0200%" height="15" fill="rgb(214,121,17)" fg:x="78715" fg:w="30"/><text x="52.6366%" y="959.50"></text></g><g><title>ConstantPool::string_at_impl (27 samples, 0.02%)</title><rect x="52.3886%" y="933" width="0.0180%" height="15" fill="rgb(233,64,38)" fg:x="78718" fg:w="27"/><text x="52.6386%" y="943.50"></text></g><g><title>StringTable::intern (25 samples, 0.02%)</title><rect x="52.3899%" y="917" width="0.0166%" height="15" fill="rgb(253,54,19)" fg:x="78720" fg:w="25"/><text x="52.6399%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (34 samples, 0.02%)</title><rect x="52.3846%" y="981" width="0.0226%" height="15" fill="rgb(253,94,18)" fg:x="78712" fg:w="34"/><text x="52.6346%" y="991.50"></text></g><g><title>JVM_FindLoadedClass (32 samples, 0.02%)</title><rect x="52.4325%" y="981" width="0.0213%" height="15" fill="rgb(227,57,52)" fg:x="78784" fg:w="32"/><text x="52.6825%" y="991.50"></text></g><g><title>InstanceKlass::link_class_impl (18 samples, 0.01%)</title><rect x="52.4584%" y="949" width="0.0120%" height="15" fill="rgb(230,228,50)" fg:x="78823" fg:w="18"/><text x="52.7084%" y="959.50"></text></g><g><title>JVM_GetClassDeclaredConstructors (21 samples, 0.01%)</title><rect x="52.4584%" y="981" width="0.0140%" height="15" fill="rgb(217,205,27)" fg:x="78823" fg:w="21"/><text x="52.7084%" y="991.50"></text></g><g><title>get_class_declared_methods_helper (21 samples, 0.01%)</title><rect x="52.4584%" y="965" width="0.0140%" height="15" fill="rgb(252,71,50)" fg:x="78823" fg:w="21"/><text x="52.7084%" y="975.50"></text></g><g><title>get_parameter_types (22 samples, 0.01%)</title><rect x="52.4897%" y="933" width="0.0146%" height="15" fill="rgb(209,86,4)" fg:x="78870" fg:w="22"/><text x="52.7397%" y="943.50"></text></g><g><title>JVM_GetClassDeclaredMethods (40 samples, 0.03%)</title><rect x="52.4784%" y="981" width="0.0266%" height="15" fill="rgb(229,94,0)" fg:x="78853" fg:w="40"/><text x="52.7284%" y="991.50"></text></g><g><title>get_class_declared_methods_helper (40 samples, 0.03%)</title><rect x="52.4784%" y="965" width="0.0266%" height="15" fill="rgb(252,223,21)" fg:x="78853" fg:w="40"/><text x="52.7284%" y="975.50"></text></g><g><title>Reflection::new_method (30 samples, 0.02%)</title><rect x="52.4851%" y="949" width="0.0200%" height="15" fill="rgb(230,210,4)" fg:x="78863" fg:w="30"/><text x="52.7351%" y="959.50"></text></g><g><title>JVM_InitClassName (23 samples, 0.02%)</title><rect x="52.5077%" y="981" width="0.0153%" height="15" fill="rgb(240,149,38)" fg:x="78897" fg:w="23"/><text x="52.7577%" y="991.50"></text></g><g><title>java_lang_Class::name (21 samples, 0.01%)</title><rect x="52.5090%" y="965" width="0.0140%" height="15" fill="rgb(254,105,20)" fg:x="78899" fg:w="21"/><text x="52.7590%" y="975.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.02%)</title><rect x="52.5403%" y="917" width="0.0180%" height="15" fill="rgb(253,87,46)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="52.5403%" y="901" width="0.0180%" height="15" fill="rgb(253,116,33)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="911.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.02%)</title><rect x="52.5403%" y="885" width="0.0180%" height="15" fill="rgb(229,198,5)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="52.5403%" y="869" width="0.0180%" height="15" fill="rgb(242,38,37)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="879.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="52.5403%" y="853" width="0.0180%" height="15" fill="rgb(242,69,53)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="863.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="52.5403%" y="837" width="0.0180%" height="15" fill="rgb(249,80,16)" fg:x="78946" fg:w="27"/><text x="52.7903%" y="847.50"></text></g><g><title>do_futex (26 samples, 0.02%)</title><rect x="52.5410%" y="821" width="0.0173%" height="15" fill="rgb(206,128,11)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="831.50"></text></g><g><title>futex_wait (26 samples, 0.02%)</title><rect x="52.5410%" y="805" width="0.0173%" height="15" fill="rgb(212,35,20)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="815.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.02%)</title><rect x="52.5410%" y="789" width="0.0173%" height="15" fill="rgb(236,79,13)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="799.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="52.5410%" y="773" width="0.0173%" height="15" fill="rgb(233,123,3)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="783.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="52.5410%" y="757" width="0.0173%" height="15" fill="rgb(214,93,52)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="767.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="52.5410%" y="741" width="0.0173%" height="15" fill="rgb(251,37,40)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.02%)</title><rect x="52.5410%" y="725" width="0.0173%" height="15" fill="rgb(227,80,54)" fg:x="78947" fg:w="26"/><text x="52.7910%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.02%)</title><rect x="52.5416%" y="709" width="0.0166%" height="15" fill="rgb(254,48,11)" fg:x="78948" fg:w="25"/><text x="52.7916%" y="719.50"></text></g><g><title>native_write_msr (25 samples, 0.02%)</title><rect x="52.5416%" y="693" width="0.0166%" height="15" fill="rgb(235,193,26)" fg:x="78948" fg:w="25"/><text x="52.7916%" y="703.50"></text></g><g><title>JVM_MonitorWait (32 samples, 0.02%)</title><rect x="52.5383%" y="981" width="0.0213%" height="15" fill="rgb(229,99,21)" fg:x="78943" fg:w="32"/><text x="52.7883%" y="991.50"></text></g><g><title>ObjectSynchronizer::wait (32 samples, 0.02%)</title><rect x="52.5383%" y="965" width="0.0213%" height="15" fill="rgb(211,140,41)" fg:x="78943" fg:w="32"/><text x="52.7883%" y="975.50"></text></g><g><title>ObjectMonitor::wait (31 samples, 0.02%)</title><rect x="52.5390%" y="949" width="0.0206%" height="15" fill="rgb(240,227,30)" fg:x="78944" fg:w="31"/><text x="52.7890%" y="959.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.02%)</title><rect x="52.5403%" y="933" width="0.0193%" height="15" fill="rgb(215,224,45)" fg:x="78946" fg:w="29"/><text x="52.7903%" y="943.50"></text></g><g><title>Java_java_io_RandomAccessFile_seek0 (19 samples, 0.01%)</title><rect x="52.5696%" y="981" width="0.0126%" height="15" fill="rgb(206,123,31)" fg:x="78990" fg:w="19"/><text x="52.8196%" y="991.50"></text></g><g><title>SymbolTable::add (44 samples, 0.03%)</title><rect x="52.6381%" y="837" width="0.0293%" height="15" fill="rgb(210,138,16)" fg:x="79093" fg:w="44"/><text x="52.8881%" y="847.50"></text></g><g><title>SymbolTable::basic_add (42 samples, 0.03%)</title><rect x="52.6395%" y="821" width="0.0280%" height="15" fill="rgb(228,57,28)" fg:x="79095" fg:w="42"/><text x="52.8895%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (518 samples, 0.34%)</title><rect x="52.6188%" y="853" width="0.3447%" height="15" fill="rgb(242,170,10)" fg:x="79064" fg:w="518"/><text x="52.8688%" y="863.50"></text></g><g><title>SymbolTable::lookup_only (445 samples, 0.30%)</title><rect x="52.6674%" y="837" width="0.2962%" height="15" fill="rgb(228,214,39)" fg:x="79137" fg:w="445"/><text x="52.9174%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool (547 samples, 0.36%)</title><rect x="52.6042%" y="869" width="0.3640%" height="15" fill="rgb(218,179,33)" fg:x="79042" fg:w="547"/><text x="52.8542%" y="879.50"></text></g><g><title>ClassFileParser::copy_localvariable_table (24 samples, 0.02%)</title><rect x="53.0048%" y="837" width="0.0160%" height="15" fill="rgb(235,193,39)" fg:x="79644" fg:w="24"/><text x="53.2548%" y="847.50"></text></g><g><title>ConstMethod::allocate (28 samples, 0.02%)</title><rect x="53.0301%" y="821" width="0.0186%" height="15" fill="rgb(219,221,36)" fg:x="79682" fg:w="28"/><text x="53.2801%" y="831.50"></text></g><g><title>Metaspace::allocate (19 samples, 0.01%)</title><rect x="53.0361%" y="805" width="0.0126%" height="15" fill="rgb(248,218,19)" fg:x="79691" fg:w="19"/><text x="53.2861%" y="815.50"></text></g><g><title>Method::allocate (43 samples, 0.03%)</title><rect x="53.0295%" y="837" width="0.0286%" height="15" fill="rgb(205,50,9)" fg:x="79681" fg:w="43"/><text x="53.2795%" y="847.50"></text></g><g><title>ClassFileParser::parse_method (139 samples, 0.09%)</title><rect x="52.9815%" y="853" width="0.0925%" height="15" fill="rgb(238,81,28)" fg:x="79609" fg:w="139"/><text x="53.2315%" y="863.50"></text></g><g><title>ClassFileParser::parse_methods (140 samples, 0.09%)</title><rect x="52.9815%" y="869" width="0.0932%" height="15" fill="rgb(235,110,19)" fg:x="79609" fg:w="140"/><text x="53.2315%" y="879.50"></text></g><g><title>[libc-2.31.so] (16 samples, 0.01%)</title><rect x="53.0767%" y="837" width="0.0106%" height="15" fill="rgb(214,7,14)" fg:x="79752" fg:w="16"/><text x="53.3267%" y="847.50"></text></g><g><title>asm_exc_page_fault (16 samples, 0.01%)</title><rect x="53.0767%" y="821" width="0.0106%" height="15" fill="rgb(211,77,3)" fg:x="79752" fg:w="16"/><text x="53.3267%" y="831.50"></text></g><g><title>ConstantPool::allocate (23 samples, 0.02%)</title><rect x="53.0754%" y="869" width="0.0153%" height="15" fill="rgb(229,5,9)" fg:x="79750" fg:w="23"/><text x="53.3254%" y="879.50"></text></g><g><title>Metaspace::allocate (22 samples, 0.01%)</title><rect x="53.0760%" y="853" width="0.0146%" height="15" fill="rgb(225,90,11)" fg:x="79751" fg:w="22"/><text x="53.3260%" y="863.50"></text></g><g><title>ClassFileParser::parse_stream (739 samples, 0.49%)</title><rect x="52.5995%" y="885" width="0.4918%" height="15" fill="rgb(242,56,8)" fg:x="79035" fg:w="739"/><text x="52.8495%" y="895.50"></text></g><g><title>ClassFileParser::ClassFileParser (742 samples, 0.49%)</title><rect x="52.5982%" y="901" width="0.4938%" height="15" fill="rgb(249,212,39)" fg:x="79033" fg:w="742"/><text x="52.8482%" y="911.50"></text></g><g><title>InstanceKlass::find_method (28 samples, 0.02%)</title><rect x="53.1280%" y="837" width="0.0186%" height="15" fill="rgb(236,90,9)" fg:x="79829" fg:w="28"/><text x="53.3780%" y="847.50"></text></g><g><title>InstanceKlass::find_method_index (27 samples, 0.02%)</title><rect x="53.1286%" y="821" width="0.0180%" height="15" fill="rgb(206,88,35)" fg:x="79830" fg:w="27"/><text x="53.3786%" y="831.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (95 samples, 0.06%)</title><rect x="53.1087%" y="853" width="0.0632%" height="15" fill="rgb(205,126,30)" fg:x="79800" fg:w="95"/><text x="53.3587%" y="863.50"></text></g><g><title>resource_allocate_bytes (36 samples, 0.02%)</title><rect x="53.1479%" y="837" width="0.0240%" height="15" fill="rgb(230,176,12)" fg:x="79859" fg:w="36"/><text x="53.3979%" y="847.50"></text></g><g><title>DefaultMethods::generate_default_methods (129 samples, 0.09%)</title><rect x="53.0973%" y="869" width="0.0859%" height="15" fill="rgb(243,19,9)" fg:x="79783" fg:w="129"/><text x="53.3473%" y="879.50"></text></g><g><title>ClassFileParser::fill_instance_klass (169 samples, 0.11%)</title><rect x="53.0920%" y="885" width="0.1125%" height="15" fill="rgb(245,171,17)" fg:x="79775" fg:w="169"/><text x="53.3420%" y="895.50"></text></g><g><title>ClassFileParser::create_instance_klass (184 samples, 0.12%)</title><rect x="53.0920%" y="901" width="0.1225%" height="15" fill="rgb(227,52,21)" fg:x="79775" fg:w="184"/><text x="53.3420%" y="911.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (43 samples, 0.03%)</title><rect x="53.2145%" y="901" width="0.0286%" height="15" fill="rgb(238,69,14)" fg:x="79959" fg:w="43"/><text x="53.4645%" y="911.50"></text></g><g><title>klassVtable::compute_vtable_size_and_num_mirandas (17 samples, 0.01%)</title><rect x="53.2318%" y="885" width="0.0113%" height="15" fill="rgb(241,156,39)" fg:x="79985" fg:w="17"/><text x="53.4818%" y="895.50"></text></g><g><title>KlassFactory::create_from_stream (971 samples, 0.65%)</title><rect x="52.5982%" y="917" width="0.6462%" height="15" fill="rgb(212,227,28)" fg:x="79033" fg:w="971"/><text x="52.8482%" y="927.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (30 samples, 0.02%)</title><rect x="53.2444%" y="917" width="0.0200%" height="15" fill="rgb(209,118,27)" fg:x="80004" fg:w="30"/><text x="53.4944%" y="927.50"></text></g><g><title>SystemDictionary::define_instance_class (27 samples, 0.02%)</title><rect x="53.2464%" y="901" width="0.0180%" height="15" fill="rgb(226,102,5)" fg:x="80007" fg:w="27"/><text x="53.4964%" y="911.50"></text></g><g><title>JVM_DefineClassWithSource (1,023 samples, 0.68%)</title><rect x="52.5869%" y="965" width="0.6808%" height="15" fill="rgb(223,34,3)" fg:x="79016" fg:w="1023"/><text x="52.8369%" y="975.50"></text></g><g><title>jvm_define_class_common (1,023 samples, 0.68%)</title><rect x="52.5869%" y="949" width="0.6808%" height="15" fill="rgb(221,81,38)" fg:x="79016" fg:w="1023"/><text x="52.8369%" y="959.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,008 samples, 0.67%)</title><rect x="52.5969%" y="933" width="0.6708%" height="15" fill="rgb(236,219,28)" fg:x="79031" fg:w="1008"/><text x="52.8469%" y="943.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,053 samples, 0.70%)</title><rect x="52.5862%" y="981" width="0.7008%" height="15" fill="rgb(213,200,14)" fg:x="79015" fg:w="1053"/><text x="52.8362%" y="991.50"></text></g><g><title>ClassFileParser::parse_constant_pool (16 samples, 0.01%)</title><rect x="53.3090%" y="837" width="0.0106%" height="15" fill="rgb(240,33,19)" fg:x="80101" fg:w="16"/><text x="53.5590%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (16 samples, 0.01%)</title><rect x="53.3090%" y="821" width="0.0106%" height="15" fill="rgb(233,113,27)" fg:x="80101" fg:w="16"/><text x="53.5590%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (24 samples, 0.02%)</title><rect x="53.3083%" y="869" width="0.0160%" height="15" fill="rgb(220,221,18)" fg:x="80100" fg:w="24"/><text x="53.5583%" y="879.50"></text></g><g><title>ClassFileParser::parse_stream (24 samples, 0.02%)</title><rect x="53.3083%" y="853" width="0.0160%" height="15" fill="rgb(238,92,8)" fg:x="80100" fg:w="24"/><text x="53.5583%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (29 samples, 0.02%)</title><rect x="53.3083%" y="885" width="0.0193%" height="15" fill="rgb(222,164,16)" fg:x="80100" fg:w="29"/><text x="53.5583%" y="895.50"></text></g><g><title>ClassLoader::load_class (48 samples, 0.03%)</title><rect x="53.2983%" y="901" width="0.0319%" height="15" fill="rgb(241,119,3)" fg:x="80085" fg:w="48"/><text x="53.5483%" y="911.50"></text></g><g><title>JVM_FindClassFromBootLoader (77 samples, 0.05%)</title><rect x="53.2883%" y="965" width="0.0512%" height="15" fill="rgb(241,44,8)" fg:x="80070" fg:w="77"/><text x="53.5383%" y="975.50"></text></g><g><title>SystemDictionary::resolve_or_null (72 samples, 0.05%)</title><rect x="53.2917%" y="949" width="0.0479%" height="15" fill="rgb(230,36,40)" fg:x="80075" fg:w="72"/><text x="53.5417%" y="959.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (72 samples, 0.05%)</title><rect x="53.2917%" y="933" width="0.0479%" height="15" fill="rgb(243,16,36)" fg:x="80075" fg:w="72"/><text x="53.5417%" y="943.50"></text></g><g><title>SystemDictionary::load_instance_class (62 samples, 0.04%)</title><rect x="53.2983%" y="917" width="0.0413%" height="15" fill="rgb(231,4,26)" fg:x="80085" fg:w="62"/><text x="53.5483%" y="927.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (90 samples, 0.06%)</title><rect x="53.2870%" y="981" width="0.0599%" height="15" fill="rgb(240,9,31)" fg:x="80068" fg:w="90"/><text x="53.5370%" y="991.50"></text></g><g><title>Java_java_lang_Class_forName0 (23 samples, 0.02%)</title><rect x="53.3469%" y="981" width="0.0153%" height="15" fill="rgb(207,173,15)" fg:x="80158" fg:w="23"/><text x="53.5969%" y="991.50"></text></g><g><title>MHN_resolve_Mem (24 samples, 0.02%)</title><rect x="53.3769%" y="981" width="0.0160%" height="15" fill="rgb(224,192,53)" fg:x="80203" fg:w="24"/><text x="53.6269%" y="991.50"></text></g><g><title>MethodHandles::resolve_MemberName (23 samples, 0.02%)</title><rect x="53.3775%" y="965" width="0.0153%" height="15" fill="rgb(223,67,28)" fg:x="80204" fg:w="23"/><text x="53.6275%" y="975.50"></text></g><g><title>ClassFileParser::ClassFileParser (29 samples, 0.02%)</title><rect x="53.4421%" y="933" width="0.0193%" height="15" fill="rgb(211,20,47)" fg:x="80301" fg:w="29"/><text x="53.6921%" y="943.50"></text></g><g><title>ClassFileParser::parse_stream (29 samples, 0.02%)</title><rect x="53.4421%" y="917" width="0.0193%" height="15" fill="rgb(240,228,2)" fg:x="80301" fg:w="29"/><text x="53.6921%" y="927.50"></text></g><g><title>KlassFactory::create_from_stream (41 samples, 0.03%)</title><rect x="53.4421%" y="949" width="0.0273%" height="15" fill="rgb(248,151,12)" fg:x="80301" fg:w="41"/><text x="53.6921%" y="959.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (63 samples, 0.04%)</title><rect x="53.4288%" y="981" width="0.0419%" height="15" fill="rgb(244,8,39)" fg:x="80281" fg:w="63"/><text x="53.6788%" y="991.50"></text></g><g><title>SystemDictionary::parse_stream (61 samples, 0.04%)</title><rect x="53.4301%" y="965" width="0.0406%" height="15" fill="rgb(222,26,8)" fg:x="80283" fg:w="61"/><text x="53.6801%" y="975.50"></text></g><g><title>[perf-943567.map] (4,580 samples, 3.05%)</title><rect x="50.4499%" y="997" width="3.0481%" height="15" fill="rgb(213,106,44)" fg:x="75805" fg:w="4580"/><text x="50.6999%" y="1007.50">[pe..</text></g><g><title>SharedRuntime::find_callee_info_helper (26 samples, 0.02%)</title><rect x="53.5266%" y="965" width="0.0173%" height="15" fill="rgb(214,129,20)" fg:x="80428" fg:w="26"/><text x="53.7766%" y="975.50"></text></g><g><title>frame::sender (16 samples, 0.01%)</title><rect x="53.5333%" y="949" width="0.0106%" height="15" fill="rgb(212,32,13)" fg:x="80438" fg:w="16"/><text x="53.7833%" y="959.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (40 samples, 0.03%)</title><rect x="53.5193%" y="981" width="0.0266%" height="15" fill="rgb(208,168,33)" fg:x="80417" fg:w="40"/><text x="53.7693%" y="991.50"></text></g><g><title>copy_page_to_iter (17 samples, 0.01%)</title><rect x="53.5765%" y="821" width="0.0113%" height="15" fill="rgb(231,207,8)" fg:x="80503" fg:w="17"/><text x="53.8265%" y="831.50"></text></g><g><title>generic_file_buffered_read (39 samples, 0.03%)</title><rect x="53.5752%" y="837" width="0.0260%" height="15" fill="rgb(235,219,23)" fg:x="80501" fg:w="39"/><text x="53.8252%" y="847.50"></text></g><g><title>new_sync_read (43 samples, 0.03%)</title><rect x="53.5732%" y="853" width="0.0286%" height="15" fill="rgb(226,216,26)" fg:x="80498" fg:w="43"/><text x="53.8232%" y="863.50"></text></g><g><title>ksys_read (52 samples, 0.03%)</title><rect x="53.5685%" y="885" width="0.0346%" height="15" fill="rgb(239,137,16)" fg:x="80491" fg:w="52"/><text x="53.8185%" y="895.50"></text></g><g><title>vfs_read (46 samples, 0.03%)</title><rect x="53.5725%" y="869" width="0.0306%" height="15" fill="rgb(207,12,36)" fg:x="80497" fg:w="46"/><text x="53.8225%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.04%)</title><rect x="53.5685%" y="917" width="0.0353%" height="15" fill="rgb(210,214,24)" fg:x="80491" fg:w="53"/><text x="53.8185%" y="927.50"></text></g><g><title>do_syscall_64 (53 samples, 0.04%)</title><rect x="53.5685%" y="901" width="0.0353%" height="15" fill="rgb(206,56,30)" fg:x="80491" fg:w="53"/><text x="53.8185%" y="911.50"></text></g><g><title>handleRead (60 samples, 0.04%)</title><rect x="53.5645%" y="965" width="0.0399%" height="15" fill="rgb(228,143,26)" fg:x="80485" fg:w="60"/><text x="53.8145%" y="975.50"></text></g><g><title>__libc_read (59 samples, 0.04%)</title><rect x="53.5652%" y="949" width="0.0393%" height="15" fill="rgb(216,218,46)" fg:x="80486" fg:w="59"/><text x="53.8152%" y="959.50"></text></g><g><title>__libc_read (59 samples, 0.04%)</title><rect x="53.5652%" y="933" width="0.0393%" height="15" fill="rgb(206,6,19)" fg:x="80486" fg:w="59"/><text x="53.8152%" y="943.50"></text></g><g><title>readBytes (69 samples, 0.05%)</title><rect x="53.5639%" y="981" width="0.0459%" height="15" fill="rgb(239,177,51)" fg:x="80484" fg:w="69"/><text x="53.8139%" y="991.50"></text></g><g><title>[unknown] (172 samples, 0.11%)</title><rect x="53.4980%" y="997" width="0.1145%" height="15" fill="rgb(216,55,25)" fg:x="80385" fg:w="172"/><text x="53.7480%" y="1007.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="53.6138%" y="981" width="0.0106%" height="15" fill="rgb(231,163,29)" fg:x="80559" fg:w="16"/><text x="53.8638%" y="991.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="53.6138%" y="965" width="0.0106%" height="15" fill="rgb(232,149,50)" fg:x="80559" fg:w="16"/><text x="53.8638%" y="975.50"></text></g><g><title>__do_sys_clone (16 samples, 0.01%)</title><rect x="53.6138%" y="949" width="0.0106%" height="15" fill="rgb(223,142,48)" fg:x="80559" fg:w="16"/><text x="53.8638%" y="959.50"></text></g><g><title>kernel_clone (16 samples, 0.01%)</title><rect x="53.6138%" y="933" width="0.0106%" height="15" fill="rgb(245,83,23)" fg:x="80559" fg:w="16"/><text x="53.8638%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (221 samples, 0.15%)</title><rect x="53.6318%" y="933" width="0.1471%" height="15" fill="rgb(224,63,2)" fg:x="80586" fg:w="221"/><text x="53.8818%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (215 samples, 0.14%)</title><rect x="53.6357%" y="917" width="0.1431%" height="15" fill="rgb(218,65,53)" fg:x="80592" fg:w="215"/><text x="53.8857%" y="927.50"></text></g><g><title>native_write_msr (213 samples, 0.14%)</title><rect x="53.6371%" y="901" width="0.1418%" height="15" fill="rgb(221,84,29)" fg:x="80594" fg:w="213"/><text x="53.8871%" y="911.50"></text></g><g><title>schedule_tail (237 samples, 0.16%)</title><rect x="53.6278%" y="965" width="0.1577%" height="15" fill="rgb(234,0,32)" fg:x="80580" fg:w="237"/><text x="53.8778%" y="975.50"></text></g><g><title>finish_task_switch (236 samples, 0.16%)</title><rect x="53.6284%" y="949" width="0.1571%" height="15" fill="rgb(206,20,16)" fg:x="80581" fg:w="236"/><text x="53.8784%" y="959.50"></text></g><g><title>ret_from_fork (244 samples, 0.16%)</title><rect x="53.6244%" y="981" width="0.1624%" height="15" fill="rgb(244,172,18)" fg:x="80575" fg:w="244"/><text x="53.8744%" y="991.50"></text></g><g><title>SystemDictionary::initialize_preloaded_classes (21 samples, 0.01%)</title><rect x="53.7961%" y="869" width="0.0140%" height="15" fill="rgb(254,133,1)" fg:x="80833" fg:w="21"/><text x="54.0461%" y="879.50"></text></g><g><title>SystemDictionary::initialize_wk_klasses_until (21 samples, 0.01%)</title><rect x="53.7961%" y="853" width="0.0140%" height="15" fill="rgb(222,206,41)" fg:x="80833" fg:w="21"/><text x="54.0461%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (21 samples, 0.01%)</title><rect x="53.7961%" y="837" width="0.0140%" height="15" fill="rgb(212,3,42)" fg:x="80833" fg:w="21"/><text x="54.0461%" y="847.50"></text></g><g><title>SystemDictionary::load_instance_class (21 samples, 0.01%)</title><rect x="53.7961%" y="821" width="0.0140%" height="15" fill="rgb(241,11,4)" fg:x="80833" fg:w="21"/><text x="54.0461%" y="831.50"></text></g><g><title>ClassLoader::load_class (21 samples, 0.01%)</title><rect x="53.7961%" y="805" width="0.0140%" height="15" fill="rgb(205,19,26)" fg:x="80833" fg:w="21"/><text x="54.0461%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (20 samples, 0.01%)</title><rect x="53.7968%" y="789" width="0.0133%" height="15" fill="rgb(210,179,32)" fg:x="80834" fg:w="20"/><text x="54.0468%" y="799.50"></text></g><g><title>universe2_init (24 samples, 0.02%)</title><rect x="53.7955%" y="901" width="0.0160%" height="15" fill="rgb(227,116,49)" fg:x="80832" fg:w="24"/><text x="54.0455%" y="911.50"></text></g><g><title>Universe::genesis (24 samples, 0.02%)</title><rect x="53.7955%" y="885" width="0.0160%" height="15" fill="rgb(211,146,6)" fg:x="80832" fg:w="24"/><text x="54.0455%" y="895.50"></text></g><g><title>init_globals (48 samples, 0.03%)</title><rect x="53.7901%" y="917" width="0.0319%" height="15" fill="rgb(219,44,39)" fg:x="80824" fg:w="48"/><text x="54.0401%" y="927.50"></text></g><g><title>JNI_CreateJavaVM (54 samples, 0.04%)</title><rect x="53.7868%" y="949" width="0.0359%" height="15" fill="rgb(234,128,11)" fg:x="80819" fg:w="54"/><text x="54.0368%" y="959.50"></text></g><g><title>Threads::create_vm (54 samples, 0.04%)</title><rect x="53.7868%" y="933" width="0.0359%" height="15" fill="rgb(220,183,53)" fg:x="80819" fg:w="54"/><text x="54.0368%" y="943.50"></text></g><g><title>JavaMain (55 samples, 0.04%)</title><rect x="53.7868%" y="965" width="0.0366%" height="15" fill="rgb(213,219,32)" fg:x="80819" fg:w="55"/><text x="54.0368%" y="975.50"></text></g><g><title>Monitor::wait (17 samples, 0.01%)</title><rect x="53.8268%" y="949" width="0.0113%" height="15" fill="rgb(232,156,16)" fg:x="80879" fg:w="17"/><text x="54.0768%" y="959.50"></text></g><g><title>Monitor::IWait (17 samples, 0.01%)</title><rect x="53.8268%" y="933" width="0.0113%" height="15" fill="rgb(246,135,34)" fg:x="80879" fg:w="17"/><text x="54.0768%" y="943.50"></text></g><g><title>Thread::call_run (21 samples, 0.01%)</title><rect x="53.8381%" y="949" width="0.0140%" height="15" fill="rgb(241,99,0)" fg:x="80896" fg:w="21"/><text x="54.0881%" y="959.50"></text></g><g><title>JavaThread::run (21 samples, 0.01%)</title><rect x="53.8381%" y="933" width="0.0140%" height="15" fill="rgb(222,103,45)" fg:x="80896" fg:w="21"/><text x="54.0881%" y="943.50"></text></g><g><title>pthread_getattr_np (17 samples, 0.01%)</title><rect x="53.8527%" y="917" width="0.0113%" height="15" fill="rgb(212,57,4)" fg:x="80918" fg:w="17"/><text x="54.1027%" y="927.50"></text></g><g><title>os::current_stack_base (18 samples, 0.01%)</title><rect x="53.8527%" y="933" width="0.0120%" height="15" fill="rgb(215,68,47)" fg:x="80918" fg:w="18"/><text x="54.1027%" y="943.50"></text></g><g><title>Thread::record_stack_base_and_size (20 samples, 0.01%)</title><rect x="53.8520%" y="949" width="0.0133%" height="15" fill="rgb(230,84,2)" fg:x="80917" fg:w="20"/><text x="54.1020%" y="959.50"></text></g><g><title>__GI___clone (381 samples, 0.25%)</title><rect x="53.6125%" y="997" width="0.2536%" height="15" fill="rgb(220,102,14)" fg:x="80557" fg:w="381"/><text x="53.8625%" y="1007.50"></text></g><g><title>start_thread (119 samples, 0.08%)</title><rect x="53.7868%" y="981" width="0.0792%" height="15" fill="rgb(240,10,32)" fg:x="80819" fg:w="119"/><text x="54.0368%" y="991.50"></text></g><g><title>thread_native_entry (59 samples, 0.04%)</title><rect x="53.8268%" y="965" width="0.0393%" height="15" fill="rgb(215,47,27)" fg:x="80879" fg:w="59"/><text x="54.0768%" y="975.50"></text></g><g><title>java (5,428 samples, 3.61%)</title><rect x="50.2689%" y="1013" width="3.6125%" height="15" fill="rgb(233,188,43)" fg:x="75533" fg:w="5428"/><text x="50.5189%" y="1023.50">java</text></g><g><title>[[heap]] (32 samples, 0.02%)</title><rect x="53.8813%" y="997" width="0.0213%" height="15" fill="rgb(253,190,1)" fg:x="80961" fg:w="32"/><text x="54.1313%" y="1007.50"></text></g><g><title>filemap_map_pages (27 samples, 0.02%)</title><rect x="54.6300%" y="901" width="0.0180%" height="15" fill="rgb(206,114,52)" fg:x="82086" fg:w="27"/><text x="54.8800%" y="911.50"></text></g><g><title>asm_exc_page_fault (34 samples, 0.02%)</title><rect x="54.6260%" y="965" width="0.0226%" height="15" fill="rgb(233,120,37)" fg:x="82080" fg:w="34"/><text x="54.8760%" y="975.50"></text></g><g><title>exc_page_fault (34 samples, 0.02%)</title><rect x="54.6260%" y="949" width="0.0226%" height="15" fill="rgb(214,52,39)" fg:x="82080" fg:w="34"/><text x="54.8760%" y="959.50"></text></g><g><title>do_user_addr_fault (34 samples, 0.02%)</title><rect x="54.6260%" y="933" width="0.0226%" height="15" fill="rgb(223,80,29)" fg:x="82080" fg:w="34"/><text x="54.8760%" y="943.50"></text></g><g><title>handle_mm_fault (31 samples, 0.02%)</title><rect x="54.6280%" y="917" width="0.0206%" height="15" fill="rgb(230,101,40)" fg:x="82083" fg:w="31"/><text x="54.8780%" y="927.50"></text></g><g><title>[libc-2.31.so] (130 samples, 0.09%)</title><rect x="54.5635%" y="981" width="0.0865%" height="15" fill="rgb(219,211,8)" fg:x="81986" fg:w="130"/><text x="54.8135%" y="991.50"></text></g><g><title>__GI___access (21 samples, 0.01%)</title><rect x="54.6500%" y="981" width="0.0140%" height="15" fill="rgb(252,126,28)" fg:x="82116" fg:w="21"/><text x="54.9000%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="54.6500%" y="965" width="0.0140%" height="15" fill="rgb(215,56,38)" fg:x="82116" fg:w="21"/><text x="54.9000%" y="975.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="54.6500%" y="949" width="0.0140%" height="15" fill="rgb(249,55,44)" fg:x="82116" fg:w="21"/><text x="54.9000%" y="959.50"></text></g><g><title>do_faccessat (21 samples, 0.01%)</title><rect x="54.6500%" y="933" width="0.0140%" height="15" fill="rgb(220,221,32)" fg:x="82116" fg:w="21"/><text x="54.9000%" y="943.50"></text></g><g><title>__GI___libc_free (19 samples, 0.01%)</title><rect x="54.6660%" y="981" width="0.0126%" height="15" fill="rgb(212,216,41)" fg:x="82140" fg:w="19"/><text x="54.9160%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (197 samples, 0.13%)</title><rect x="54.7971%" y="805" width="0.1311%" height="15" fill="rgb(228,213,43)" fg:x="82337" fg:w="197"/><text x="55.0471%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (194 samples, 0.13%)</title><rect x="54.7991%" y="789" width="0.1291%" height="15" fill="rgb(211,31,26)" fg:x="82340" fg:w="194"/><text x="55.0491%" y="799.50"></text></g><g><title>native_write_msr (194 samples, 0.13%)</title><rect x="54.7991%" y="773" width="0.1291%" height="15" fill="rgb(229,202,19)" fg:x="82340" fg:w="194"/><text x="55.0491%" y="783.50"></text></g><g><title>finish_task_switch (208 samples, 0.14%)</title><rect x="54.7904%" y="821" width="0.1384%" height="15" fill="rgb(229,105,46)" fg:x="82327" fg:w="208"/><text x="55.0404%" y="831.50"></text></g><g><title>futex_wait_queue_me (243 samples, 0.16%)</title><rect x="54.7745%" y="869" width="0.1617%" height="15" fill="rgb(235,108,1)" fg:x="82303" fg:w="243"/><text x="55.0245%" y="879.50"></text></g><g><title>schedule (238 samples, 0.16%)</title><rect x="54.7778%" y="853" width="0.1584%" height="15" fill="rgb(245,111,35)" fg:x="82308" fg:w="238"/><text x="55.0278%" y="863.50"></text></g><g><title>__schedule (236 samples, 0.16%)</title><rect x="54.7791%" y="837" width="0.1571%" height="15" fill="rgb(219,185,31)" fg:x="82310" fg:w="236"/><text x="55.0291%" y="847.50"></text></g><g><title>do_syscall_64 (279 samples, 0.19%)</title><rect x="54.7658%" y="933" width="0.1857%" height="15" fill="rgb(214,4,43)" fg:x="82290" fg:w="279"/><text x="55.0158%" y="943.50"></text></g><g><title>__x64_sys_futex (279 samples, 0.19%)</title><rect x="54.7658%" y="917" width="0.1857%" height="15" fill="rgb(235,227,40)" fg:x="82290" fg:w="279"/><text x="55.0158%" y="927.50"></text></g><g><title>do_futex (277 samples, 0.18%)</title><rect x="54.7671%" y="901" width="0.1843%" height="15" fill="rgb(230,88,30)" fg:x="82292" fg:w="277"/><text x="55.0171%" y="911.50"></text></g><g><title>futex_wait (270 samples, 0.18%)</title><rect x="54.7718%" y="885" width="0.1797%" height="15" fill="rgb(216,217,1)" fg:x="82299" fg:w="270"/><text x="55.0218%" y="895.50"></text></g><g><title>futex_wait_setup (23 samples, 0.02%)</title><rect x="54.9362%" y="869" width="0.0153%" height="15" fill="rgb(248,139,50)" fg:x="82546" fg:w="23"/><text x="55.1862%" y="879.50"></text></g><g><title>__GI___pthread_mutex_lock (382 samples, 0.25%)</title><rect x="54.7006%" y="981" width="0.2542%" height="15" fill="rgb(233,1,21)" fg:x="82192" fg:w="382"/><text x="54.9506%" y="991.50"></text></g><g><title>__lll_lock_wait (293 samples, 0.19%)</title><rect x="54.7598%" y="965" width="0.1950%" height="15" fill="rgb(215,183,12)" fg:x="82281" fg:w="293"/><text x="55.0098%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (285 samples, 0.19%)</title><rect x="54.7651%" y="949" width="0.1897%" height="15" fill="rgb(229,104,42)" fg:x="82289" fg:w="285"/><text x="55.0151%" y="959.50"></text></g><g><title>do_filp_open (20 samples, 0.01%)</title><rect x="54.9941%" y="901" width="0.0133%" height="15" fill="rgb(243,34,48)" fg:x="82633" fg:w="20"/><text x="55.2441%" y="911.50"></text></g><g><title>path_openat (20 samples, 0.01%)</title><rect x="54.9941%" y="885" width="0.0133%" height="15" fill="rgb(239,11,44)" fg:x="82633" fg:w="20"/><text x="55.2441%" y="895.50"></text></g><g><title>__libc_open64 (25 samples, 0.02%)</title><rect x="54.9927%" y="981" width="0.0166%" height="15" fill="rgb(231,98,35)" fg:x="82631" fg:w="25"/><text x="55.2427%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="54.9927%" y="965" width="0.0166%" height="15" fill="rgb(233,28,25)" fg:x="82631" fg:w="25"/><text x="55.2427%" y="975.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="54.9927%" y="949" width="0.0166%" height="15" fill="rgb(234,123,11)" fg:x="82631" fg:w="25"/><text x="55.2427%" y="959.50"></text></g><g><title>__x64_sys_openat (25 samples, 0.02%)</title><rect x="54.9927%" y="933" width="0.0166%" height="15" fill="rgb(220,69,3)" fg:x="82631" fg:w="25"/><text x="55.2427%" y="943.50"></text></g><g><title>do_sys_openat2 (25 samples, 0.02%)</title><rect x="54.9927%" y="917" width="0.0166%" height="15" fill="rgb(214,64,36)" fg:x="82631" fg:w="25"/><text x="55.2427%" y="927.50"></text></g><g><title>ttwu_do_activate (25 samples, 0.02%)</title><rect x="55.1505%" y="853" width="0.0166%" height="15" fill="rgb(211,138,32)" fg:x="82868" fg:w="25"/><text x="55.4005%" y="863.50"></text></g><g><title>__x64_sys_futex (173 samples, 0.12%)</title><rect x="55.0600%" y="933" width="0.1151%" height="15" fill="rgb(213,118,47)" fg:x="82732" fg:w="173"/><text x="55.3100%" y="943.50"></text></g><g><title>do_futex (171 samples, 0.11%)</title><rect x="55.0613%" y="917" width="0.1138%" height="15" fill="rgb(243,124,49)" fg:x="82734" fg:w="171"/><text x="55.3113%" y="927.50"></text></g><g><title>futex_wake (165 samples, 0.11%)</title><rect x="55.0653%" y="901" width="0.1098%" height="15" fill="rgb(221,30,28)" fg:x="82740" fg:w="165"/><text x="55.3153%" y="911.50"></text></g><g><title>wake_up_q (102 samples, 0.07%)</title><rect x="55.1072%" y="885" width="0.0679%" height="15" fill="rgb(246,37,13)" fg:x="82803" fg:w="102"/><text x="55.3572%" y="895.50"></text></g><g><title>try_to_wake_up (99 samples, 0.07%)</title><rect x="55.1092%" y="869" width="0.0659%" height="15" fill="rgb(249,66,14)" fg:x="82806" fg:w="99"/><text x="55.3592%" y="879.50"></text></g><g><title>do_syscall_64 (181 samples, 0.12%)</title><rect x="55.0573%" y="949" width="0.1205%" height="15" fill="rgb(213,166,5)" fg:x="82728" fg:w="181"/><text x="55.3073%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (193 samples, 0.13%)</title><rect x="55.0540%" y="965" width="0.1284%" height="15" fill="rgb(221,66,24)" fg:x="82723" fg:w="193"/><text x="55.3040%" y="975.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (259 samples, 0.17%)</title><rect x="55.0147%" y="981" width="0.1724%" height="15" fill="rgb(210,132,17)" fg:x="82664" fg:w="259"/><text x="55.2647%" y="991.50"></text></g><g><title>__pthread_once_slow (16 samples, 0.01%)</title><rect x="55.1871%" y="981" width="0.0106%" height="15" fill="rgb(243,202,5)" fg:x="82923" fg:w="16"/><text x="55.4371%" y="991.50"></text></g><g><title>_dl_runtime_resolve_xsavec (17 samples, 0.01%)</title><rect x="55.1977%" y="981" width="0.0113%" height="15" fill="rgb(233,70,48)" fg:x="82939" fg:w="17"/><text x="55.4477%" y="991.50"></text></g><g><title>_int_free (76 samples, 0.05%)</title><rect x="55.2090%" y="981" width="0.0506%" height="15" fill="rgb(238,41,26)" fg:x="82956" fg:w="76"/><text x="55.4590%" y="991.50"></text></g><g><title>__alloc_pages_nodemask (16 samples, 0.01%)</title><rect x="55.2756%" y="901" width="0.0106%" height="15" fill="rgb(241,19,31)" fg:x="83056" fg:w="16"/><text x="55.5256%" y="911.50"></text></g><g><title>alloc_pages_vma (17 samples, 0.01%)</title><rect x="55.2756%" y="917" width="0.0113%" height="15" fill="rgb(214,76,10)" fg:x="83056" fg:w="17"/><text x="55.5256%" y="927.50"></text></g><g><title>alloc_set_pte (34 samples, 0.02%)</title><rect x="55.3242%" y="901" width="0.0226%" height="15" fill="rgb(254,202,22)" fg:x="83129" fg:w="34"/><text x="55.5742%" y="911.50"></text></g><g><title>page_add_file_rmap (22 samples, 0.01%)</title><rect x="55.3322%" y="885" width="0.0146%" height="15" fill="rgb(214,72,24)" fg:x="83141" fg:w="22"/><text x="55.5822%" y="895.50"></text></g><g><title>filemap_map_pages (107 samples, 0.07%)</title><rect x="55.2869%" y="917" width="0.0712%" height="15" fill="rgb(221,92,46)" fg:x="83073" fg:w="107"/><text x="55.5369%" y="927.50"></text></g><g><title>handle_mm_fault (168 samples, 0.11%)</title><rect x="55.2636%" y="933" width="0.1118%" height="15" fill="rgb(246,13,50)" fg:x="83038" fg:w="168"/><text x="55.5136%" y="943.50"></text></g><g><title>do_user_addr_fault (174 samples, 0.12%)</title><rect x="55.2610%" y="949" width="0.1158%" height="15" fill="rgb(240,165,38)" fg:x="83034" fg:w="174"/><text x="55.5110%" y="959.50"></text></g><g><title>exc_page_fault (176 samples, 0.12%)</title><rect x="55.2603%" y="965" width="0.1171%" height="15" fill="rgb(241,24,51)" fg:x="83033" fg:w="176"/><text x="55.5103%" y="975.50"></text></g><g><title>asm_exc_page_fault (179 samples, 0.12%)</title><rect x="55.2596%" y="981" width="0.1191%" height="15" fill="rgb(227,51,44)" fg:x="83032" fg:w="179"/><text x="55.5096%" y="991.50"></text></g><g><title>asm_exc_page_fault (29 samples, 0.02%)</title><rect x="55.4573%" y="933" width="0.0193%" height="15" fill="rgb(231,121,3)" fg:x="83329" fg:w="29"/><text x="55.7073%" y="943.50"></text></g><g><title>exc_page_fault (28 samples, 0.02%)</title><rect x="55.4579%" y="917" width="0.0186%" height="15" fill="rgb(245,3,41)" fg:x="83330" fg:w="28"/><text x="55.7079%" y="927.50"></text></g><g><title>do_user_addr_fault (28 samples, 0.02%)</title><rect x="55.4579%" y="901" width="0.0186%" height="15" fill="rgb(214,13,26)" fg:x="83330" fg:w="28"/><text x="55.7079%" y="911.50"></text></g><g><title>handle_mm_fault (24 samples, 0.02%)</title><rect x="55.4606%" y="885" width="0.0160%" height="15" fill="rgb(252,75,11)" fg:x="83334" fg:w="24"/><text x="55.7106%" y="895.50"></text></g><g><title>_int_malloc (99 samples, 0.07%)</title><rect x="55.4247%" y="949" width="0.0659%" height="15" fill="rgb(218,226,17)" fg:x="83280" fg:w="99"/><text x="55.6747%" y="959.50"></text></g><g><title>tcache_get (27 samples, 0.02%)</title><rect x="55.4906%" y="949" width="0.0180%" height="15" fill="rgb(248,89,38)" fg:x="83379" fg:w="27"/><text x="55.7406%" y="959.50"></text></g><g><title>[libc-2.31.so] (20 samples, 0.01%)</title><rect x="55.5099%" y="869" width="0.0133%" height="15" fill="rgb(237,73,46)" fg:x="83408" fg:w="20"/><text x="55.7599%" y="879.50"></text></g><g><title>__GI___mprotect (19 samples, 0.01%)</title><rect x="55.5105%" y="853" width="0.0126%" height="15" fill="rgb(242,78,33)" fg:x="83409" fg:w="19"/><text x="55.7605%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="55.5112%" y="837" width="0.0120%" height="15" fill="rgb(235,60,3)" fg:x="83410" fg:w="18"/><text x="55.7612%" y="847.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="55.5112%" y="821" width="0.0120%" height="15" fill="rgb(216,172,19)" fg:x="83410" fg:w="18"/><text x="55.7612%" y="831.50"></text></g><g><title>__x64_sys_mprotect (18 samples, 0.01%)</title><rect x="55.5112%" y="805" width="0.0120%" height="15" fill="rgb(227,6,42)" fg:x="83410" fg:w="18"/><text x="55.7612%" y="815.50"></text></g><g><title>do_mprotect_pkey (18 samples, 0.01%)</title><rect x="55.5112%" y="789" width="0.0120%" height="15" fill="rgb(223,207,42)" fg:x="83410" fg:w="18"/><text x="55.7612%" y="799.50"></text></g><g><title>mprotect_fixup (16 samples, 0.01%)</title><rect x="55.5125%" y="773" width="0.0106%" height="15" fill="rgb(246,138,30)" fg:x="83412" fg:w="16"/><text x="55.7625%" y="783.50"></text></g><g><title>perf_iterate_sb (17 samples, 0.01%)</title><rect x="55.5371%" y="725" width="0.0113%" height="15" fill="rgb(251,199,47)" fg:x="83449" fg:w="17"/><text x="55.7871%" y="735.50"></text></g><g><title>perf_event_mmap (20 samples, 0.01%)</title><rect x="55.5358%" y="741" width="0.0133%" height="15" fill="rgb(228,218,44)" fg:x="83447" fg:w="20"/><text x="55.7858%" y="751.50"></text></g><g><title>do_mmap (54 samples, 0.04%)</title><rect x="55.5245%" y="773" width="0.0359%" height="15" fill="rgb(220,68,6)" fg:x="83430" fg:w="54"/><text x="55.7745%" y="783.50"></text></g><g><title>mmap_region (40 samples, 0.03%)</title><rect x="55.5338%" y="757" width="0.0266%" height="15" fill="rgb(240,60,26)" fg:x="83444" fg:w="40"/><text x="55.7838%" y="767.50"></text></g><g><title>__GI___mmap64 (62 samples, 0.04%)</title><rect x="55.5232%" y="853" width="0.0413%" height="15" fill="rgb(211,200,19)" fg:x="83428" fg:w="62"/><text x="55.7732%" y="863.50"></text></g><g><title>__GI___mmap64 (62 samples, 0.04%)</title><rect x="55.5232%" y="837" width="0.0413%" height="15" fill="rgb(242,145,30)" fg:x="83428" fg:w="62"/><text x="55.7732%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.04%)</title><rect x="55.5232%" y="821" width="0.0413%" height="15" fill="rgb(225,64,13)" fg:x="83428" fg:w="62"/><text x="55.7732%" y="831.50"></text></g><g><title>do_syscall_64 (62 samples, 0.04%)</title><rect x="55.5232%" y="805" width="0.0413%" height="15" fill="rgb(218,103,35)" fg:x="83428" fg:w="62"/><text x="55.7732%" y="815.50"></text></g><g><title>vm_mmap_pgoff (60 samples, 0.04%)</title><rect x="55.5245%" y="789" width="0.0399%" height="15" fill="rgb(216,93,46)" fg:x="83430" fg:w="60"/><text x="55.7745%" y="799.50"></text></g><g><title>__do_munmap (16 samples, 0.01%)</title><rect x="55.5644%" y="773" width="0.0106%" height="15" fill="rgb(225,159,27)" fg:x="83490" fg:w="16"/><text x="55.8144%" y="783.50"></text></g><g><title>__vm_munmap (20 samples, 0.01%)</title><rect x="55.5644%" y="789" width="0.0133%" height="15" fill="rgb(225,204,11)" fg:x="83490" fg:w="20"/><text x="55.8144%" y="799.50"></text></g><g><title>__GI_munmap (21 samples, 0.01%)</title><rect x="55.5644%" y="853" width="0.0140%" height="15" fill="rgb(205,56,4)" fg:x="83490" fg:w="21"/><text x="55.8144%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="55.5644%" y="837" width="0.0140%" height="15" fill="rgb(206,6,35)" fg:x="83490" fg:w="21"/><text x="55.8144%" y="847.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="55.5644%" y="821" width="0.0140%" height="15" fill="rgb(247,73,52)" fg:x="83490" fg:w="21"/><text x="55.8144%" y="831.50"></text></g><g><title>__x64_sys_munmap (21 samples, 0.01%)</title><rect x="55.5644%" y="805" width="0.0140%" height="15" fill="rgb(246,97,4)" fg:x="83490" fg:w="21"/><text x="55.8144%" y="815.50"></text></g><g><title>__GI___libc_malloc (291 samples, 0.19%)</title><rect x="55.3967%" y="965" width="0.1937%" height="15" fill="rgb(212,37,15)" fg:x="83238" fg:w="291"/><text x="55.6467%" y="975.50"></text></g><g><title>tcache_init (123 samples, 0.08%)</title><rect x="55.5085%" y="949" width="0.0819%" height="15" fill="rgb(208,130,40)" fg:x="83406" fg:w="123"/><text x="55.7585%" y="959.50"></text></g><g><title>tcache_init (123 samples, 0.08%)</title><rect x="55.5085%" y="933" width="0.0819%" height="15" fill="rgb(236,55,29)" fg:x="83406" fg:w="123"/><text x="55.7585%" y="943.50"></text></g><g><title>arena_get2 (123 samples, 0.08%)</title><rect x="55.5085%" y="917" width="0.0819%" height="15" fill="rgb(209,156,45)" fg:x="83406" fg:w="123"/><text x="55.7585%" y="927.50"></text></g><g><title>arena_get2 (122 samples, 0.08%)</title><rect x="55.5092%" y="901" width="0.0812%" height="15" fill="rgb(249,107,4)" fg:x="83407" fg:w="122"/><text x="55.7592%" y="911.50"></text></g><g><title>_int_new_arena (122 samples, 0.08%)</title><rect x="55.5092%" y="885" width="0.0812%" height="15" fill="rgb(227,7,13)" fg:x="83407" fg:w="122"/><text x="55.7592%" y="895.50"></text></g><g><title>new_heap (101 samples, 0.07%)</title><rect x="55.5232%" y="869" width="0.0672%" height="15" fill="rgb(250,129,14)" fg:x="83428" fg:w="101"/><text x="55.7732%" y="879.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="55.5791%" y="853" width="0.0113%" height="15" fill="rgb(229,92,13)" fg:x="83512" fg:w="17"/><text x="55.8291%" y="863.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="55.5791%" y="837" width="0.0113%" height="15" fill="rgb(245,98,39)" fg:x="83512" fg:w="17"/><text x="55.8291%" y="847.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="55.5791%" y="821" width="0.0113%" height="15" fill="rgb(234,135,48)" fg:x="83512" fg:w="17"/><text x="55.8291%" y="831.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="55.5791%" y="805" width="0.0113%" height="15" fill="rgb(230,98,28)" fg:x="83512" fg:w="17"/><text x="55.8291%" y="815.50"></text></g><g><title>operator new (306 samples, 0.20%)</title><rect x="55.3947%" y="981" width="0.2036%" height="15" fill="rgb(223,121,0)" fg:x="83235" fg:w="306"/><text x="55.6447%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="55.6110%" y="933" width="0.0126%" height="15" fill="rgb(234,173,33)" fg:x="83560" fg:w="19"/><text x="55.8610%" y="943.50"></text></g><g><title>__pthread_cond_broadcast (21 samples, 0.01%)</title><rect x="55.6104%" y="965" width="0.0140%" height="15" fill="rgb(245,47,8)" fg:x="83559" fg:w="21"/><text x="55.8604%" y="975.50"></text></g><g><title>futex_wake (21 samples, 0.01%)</title><rect x="55.6104%" y="949" width="0.0140%" height="15" fill="rgb(205,17,20)" fg:x="83559" fg:w="21"/><text x="55.8604%" y="959.50"></text></g><g><title>std::condition_variable::notify_all (23 samples, 0.02%)</title><rect x="55.6104%" y="981" width="0.0153%" height="15" fill="rgb(232,151,16)" fg:x="83559" fg:w="23"/><text x="55.8604%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (115 samples, 0.08%)</title><rect x="55.6616%" y="757" width="0.0765%" height="15" fill="rgb(208,30,32)" fg:x="83636" fg:w="115"/><text x="55.9116%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.07%)</title><rect x="55.6636%" y="741" width="0.0745%" height="15" fill="rgb(254,26,3)" fg:x="83639" fg:w="112"/><text x="55.9136%" y="751.50"></text></g><g><title>native_write_msr (110 samples, 0.07%)</title><rect x="55.6649%" y="725" width="0.0732%" height="15" fill="rgb(240,177,30)" fg:x="83641" fg:w="110"/><text x="55.9149%" y="735.50"></text></g><g><title>finish_task_switch (118 samples, 0.08%)</title><rect x="55.6609%" y="773" width="0.0785%" height="15" fill="rgb(248,76,44)" fg:x="83635" fg:w="118"/><text x="55.9109%" y="783.50"></text></g><g><title>futex_wait_queue_me (162 samples, 0.11%)</title><rect x="55.6450%" y="821" width="0.1078%" height="15" fill="rgb(241,186,54)" fg:x="83611" fg:w="162"/><text x="55.8950%" y="831.50"></text></g><g><title>schedule (155 samples, 0.10%)</title><rect x="55.6496%" y="805" width="0.1032%" height="15" fill="rgb(249,171,29)" fg:x="83618" fg:w="155"/><text x="55.8996%" y="815.50"></text></g><g><title>__schedule (155 samples, 0.10%)</title><rect x="55.6496%" y="789" width="0.1032%" height="15" fill="rgb(237,151,44)" fg:x="83618" fg:w="155"/><text x="55.8996%" y="799.50"></text></g><g><title>do_syscall_64 (172 samples, 0.11%)</title><rect x="55.6410%" y="885" width="0.1145%" height="15" fill="rgb(228,174,30)" fg:x="83605" fg:w="172"/><text x="55.8910%" y="895.50"></text></g><g><title>__x64_sys_futex (172 samples, 0.11%)</title><rect x="55.6410%" y="869" width="0.1145%" height="15" fill="rgb(252,14,37)" fg:x="83605" fg:w="172"/><text x="55.8910%" y="879.50"></text></g><g><title>do_futex (172 samples, 0.11%)</title><rect x="55.6410%" y="853" width="0.1145%" height="15" fill="rgb(207,111,40)" fg:x="83605" fg:w="172"/><text x="55.8910%" y="863.50"></text></g><g><title>futex_wait (171 samples, 0.11%)</title><rect x="55.6416%" y="837" width="0.1138%" height="15" fill="rgb(248,171,54)" fg:x="83606" fg:w="171"/><text x="55.8916%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (175 samples, 0.12%)</title><rect x="55.6403%" y="901" width="0.1165%" height="15" fill="rgb(211,127,2)" fg:x="83604" fg:w="175"/><text x="55.8903%" y="911.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (182 samples, 0.12%)</title><rect x="55.6363%" y="949" width="0.1211%" height="15" fill="rgb(236,87,47)" fg:x="83598" fg:w="182"/><text x="55.8863%" y="959.50"></text></g><g><title>futex_wait_simple (176 samples, 0.12%)</title><rect x="55.6403%" y="933" width="0.1171%" height="15" fill="rgb(223,190,45)" fg:x="83604" fg:w="176"/><text x="55.8903%" y="943.50"></text></g><g><title>futex_wait (176 samples, 0.12%)</title><rect x="55.6403%" y="917" width="0.1171%" height="15" fill="rgb(215,5,16)" fg:x="83604" fg:w="176"/><text x="55.8903%" y="927.50"></text></g><g><title>mark_wake_futex (38 samples, 0.03%)</title><rect x="55.7920%" y="853" width="0.0253%" height="15" fill="rgb(252,82,33)" fg:x="83832" fg:w="38"/><text x="56.0420%" y="863.50"></text></g><g><title>_raw_spin_lock (23 samples, 0.02%)</title><rect x="55.8360%" y="821" width="0.0153%" height="15" fill="rgb(247,213,44)" fg:x="83898" fg:w="23"/><text x="56.0860%" y="831.50"></text></g><g><title>native_queued_spin_lock_slowpath (19 samples, 0.01%)</title><rect x="55.8386%" y="805" width="0.0126%" height="15" fill="rgb(205,196,44)" fg:x="83902" fg:w="19"/><text x="56.0886%" y="815.50"></text></g><g><title>select_task_rq_fair (79 samples, 0.05%)</title><rect x="55.8606%" y="821" width="0.0526%" height="15" fill="rgb(237,96,54)" fg:x="83935" fg:w="79"/><text x="56.1106%" y="831.50"></text></g><g><title>update_cfs_rq_h_load (32 samples, 0.02%)</title><rect x="55.8919%" y="805" width="0.0213%" height="15" fill="rgb(230,113,34)" fg:x="83982" fg:w="32"/><text x="56.1419%" y="815.50"></text></g><g><title>enqueue_entity (84 samples, 0.06%)</title><rect x="55.9278%" y="789" width="0.0559%" height="15" fill="rgb(221,224,12)" fg:x="84036" fg:w="84"/><text x="56.1778%" y="799.50"></text></g><g><title>update_load_avg (27 samples, 0.02%)</title><rect x="55.9657%" y="773" width="0.0180%" height="15" fill="rgb(219,112,44)" fg:x="84093" fg:w="27"/><text x="56.2157%" y="783.50"></text></g><g><title>enqueue_task_fair (98 samples, 0.07%)</title><rect x="55.9198%" y="805" width="0.0652%" height="15" fill="rgb(210,31,13)" fg:x="84024" fg:w="98"/><text x="56.1698%" y="815.50"></text></g><g><title>ttwu_do_activate (200 samples, 0.13%)</title><rect x="55.9152%" y="821" width="0.1331%" height="15" fill="rgb(230,25,16)" fg:x="84017" fg:w="200"/><text x="56.1652%" y="831.50"></text></g><g><title>psi_task_change (95 samples, 0.06%)</title><rect x="55.9850%" y="805" width="0.0632%" height="15" fill="rgb(246,108,53)" fg:x="84122" fg:w="95"/><text x="56.2350%" y="815.50"></text></g><g><title>psi_group_change (85 samples, 0.06%)</title><rect x="55.9917%" y="789" width="0.0566%" height="15" fill="rgb(241,172,50)" fg:x="84132" fg:w="85"/><text x="56.2417%" y="799.50"></text></g><g><title>record_times (19 samples, 0.01%)</title><rect x="56.0356%" y="773" width="0.0126%" height="15" fill="rgb(235,141,10)" fg:x="84198" fg:w="19"/><text x="56.2856%" y="783.50"></text></g><g><title>do_syscall_64 (449 samples, 0.30%)</title><rect x="55.7681%" y="917" width="0.2988%" height="15" fill="rgb(220,174,43)" fg:x="83796" fg:w="449"/><text x="56.0181%" y="927.50"></text></g><g><title>__x64_sys_futex (446 samples, 0.30%)</title><rect x="55.7701%" y="901" width="0.2968%" height="15" fill="rgb(215,181,40)" fg:x="83799" fg:w="446"/><text x="56.0201%" y="911.50"></text></g><g><title>do_futex (443 samples, 0.29%)</title><rect x="55.7721%" y="885" width="0.2948%" height="15" fill="rgb(230,97,2)" fg:x="83802" fg:w="443"/><text x="56.0221%" y="895.50"></text></g><g><title>futex_wake (439 samples, 0.29%)</title><rect x="55.7747%" y="869" width="0.2922%" height="15" fill="rgb(211,25,27)" fg:x="83806" fg:w="439"/><text x="56.0247%" y="879.50"></text></g><g><title>wake_up_q (374 samples, 0.25%)</title><rect x="55.8180%" y="853" width="0.2489%" height="15" fill="rgb(230,87,26)" fg:x="83871" fg:w="374"/><text x="56.0680%" y="863.50"></text></g><g><title>try_to_wake_up (361 samples, 0.24%)</title><rect x="55.8266%" y="837" width="0.2403%" height="15" fill="rgb(227,160,17)" fg:x="83884" fg:w="361"/><text x="56.0766%" y="847.50"></text></g><g><title>std::condition_variable::notify_one (664 samples, 0.44%)</title><rect x="55.6257%" y="981" width="0.4419%" height="15" fill="rgb(244,85,34)" fg:x="83582" fg:w="664"/><text x="55.8757%" y="991.50"></text></g><g><title>__pthread_cond_signal (663 samples, 0.44%)</title><rect x="55.6263%" y="965" width="0.4412%" height="15" fill="rgb(207,70,0)" fg:x="83583" fg:w="663"/><text x="55.8763%" y="975.50"></text></g><g><title>futex_wake (463 samples, 0.31%)</title><rect x="55.7594%" y="949" width="0.3081%" height="15" fill="rgb(223,129,7)" fg:x="83783" fg:w="463"/><text x="56.0094%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (452 samples, 0.30%)</title><rect x="55.7667%" y="933" width="0.3008%" height="15" fill="rgb(246,105,7)" fg:x="83794" fg:w="452"/><text x="56.0167%" y="943.50"></text></g><g><title>__condvar_confirm_wakeup (17 samples, 0.01%)</title><rect x="56.1108%" y="933" width="0.0113%" height="15" fill="rgb(215,154,42)" fg:x="84311" fg:w="17"/><text x="56.3608%" y="943.50"></text></g><g><title>mark_wake_futex (27 samples, 0.02%)</title><rect x="56.1987%" y="821" width="0.0180%" height="15" fill="rgb(220,215,30)" fg:x="84443" fg:w="27"/><text x="56.4487%" y="831.50"></text></g><g><title>select_task_rq_fair (48 samples, 0.03%)</title><rect x="56.2406%" y="789" width="0.0319%" height="15" fill="rgb(228,81,51)" fg:x="84506" fg:w="48"/><text x="56.4906%" y="799.50"></text></g><g><title>update_cfs_rq_h_load (21 samples, 0.01%)</title><rect x="56.2586%" y="773" width="0.0140%" height="15" fill="rgb(247,71,54)" fg:x="84533" fg:w="21"/><text x="56.5086%" y="783.50"></text></g><g><title>enqueue_entity (50 samples, 0.03%)</title><rect x="56.2845%" y="757" width="0.0333%" height="15" fill="rgb(234,176,34)" fg:x="84572" fg:w="50"/><text x="56.5345%" y="767.50"></text></g><g><title>enqueue_task_fair (65 samples, 0.04%)</title><rect x="56.2752%" y="773" width="0.0433%" height="15" fill="rgb(241,103,54)" fg:x="84558" fg:w="65"/><text x="56.5252%" y="783.50"></text></g><g><title>ttwu_do_activate (143 samples, 0.10%)</title><rect x="56.2725%" y="789" width="0.0952%" height="15" fill="rgb(228,22,34)" fg:x="84554" fg:w="143"/><text x="56.5225%" y="799.50"></text></g><g><title>psi_task_change (74 samples, 0.05%)</title><rect x="56.3185%" y="773" width="0.0492%" height="15" fill="rgb(241,179,48)" fg:x="84623" fg:w="74"/><text x="56.5685%" y="783.50"></text></g><g><title>psi_group_change (59 samples, 0.04%)</title><rect x="56.3284%" y="757" width="0.0393%" height="15" fill="rgb(235,167,37)" fg:x="84638" fg:w="59"/><text x="56.5784%" y="767.50"></text></g><g><title>do_syscall_64 (346 samples, 0.23%)</title><rect x="56.1601%" y="885" width="0.2303%" height="15" fill="rgb(213,109,30)" fg:x="84385" fg:w="346"/><text x="56.4101%" y="895.50"></text></g><g><title>__x64_sys_futex (339 samples, 0.23%)</title><rect x="56.1647%" y="869" width="0.2256%" height="15" fill="rgb(222,172,16)" fg:x="84392" fg:w="339"/><text x="56.4147%" y="879.50"></text></g><g><title>do_futex (337 samples, 0.22%)</title><rect x="56.1661%" y="853" width="0.2243%" height="15" fill="rgb(233,192,5)" fg:x="84394" fg:w="337"/><text x="56.4161%" y="863.50"></text></g><g><title>futex_wake (333 samples, 0.22%)</title><rect x="56.1687%" y="837" width="0.2216%" height="15" fill="rgb(247,189,41)" fg:x="84398" fg:w="333"/><text x="56.4187%" y="847.50"></text></g><g><title>wake_up_q (259 samples, 0.17%)</title><rect x="56.2180%" y="821" width="0.1724%" height="15" fill="rgb(218,134,47)" fg:x="84472" fg:w="259"/><text x="56.4680%" y="831.50"></text></g><g><title>try_to_wake_up (252 samples, 0.17%)</title><rect x="56.2226%" y="805" width="0.1677%" height="15" fill="rgb(216,29,3)" fg:x="84479" fg:w="252"/><text x="56.4726%" y="815.50"></text></g><g><title>update_rq_clock (17 samples, 0.01%)</title><rect x="56.3790%" y="789" width="0.0113%" height="15" fill="rgb(246,140,12)" fg:x="84714" fg:w="17"/><text x="56.6290%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (351 samples, 0.23%)</title><rect x="56.1574%" y="901" width="0.2336%" height="15" fill="rgb(230,136,11)" fg:x="84381" fg:w="351"/><text x="56.4074%" y="911.50"></text></g><g><title>__condvar_dec_grefs (405 samples, 0.27%)</title><rect x="56.1221%" y="933" width="0.2695%" height="15" fill="rgb(247,22,47)" fg:x="84328" fg:w="405"/><text x="56.3721%" y="943.50"></text></g><g><title>futex_wake (365 samples, 0.24%)</title><rect x="56.1488%" y="917" width="0.2429%" height="15" fill="rgb(218,84,22)" fg:x="84368" fg:w="365"/><text x="56.3988%" y="927.50"></text></g><g><title>_raw_spin_lock (16 samples, 0.01%)</title><rect x="56.4469%" y="837" width="0.0106%" height="15" fill="rgb(216,87,39)" fg:x="84816" fg:w="16"/><text x="56.6969%" y="847.50"></text></g><g><title>__x64_sys_futex (78 samples, 0.05%)</title><rect x="56.4230%" y="885" width="0.0519%" height="15" fill="rgb(221,178,8)" fg:x="84780" fg:w="78"/><text x="56.6730%" y="895.50"></text></g><g><title>do_futex (77 samples, 0.05%)</title><rect x="56.4236%" y="869" width="0.0512%" height="15" fill="rgb(230,42,11)" fg:x="84781" fg:w="77"/><text x="56.6736%" y="879.50"></text></g><g><title>futex_wake (74 samples, 0.05%)</title><rect x="56.4256%" y="853" width="0.0492%" height="15" fill="rgb(237,229,4)" fg:x="84784" fg:w="74"/><text x="56.6756%" y="863.50"></text></g><g><title>do_syscall_64 (84 samples, 0.06%)</title><rect x="56.4203%" y="901" width="0.0559%" height="15" fill="rgb(222,31,33)" fg:x="84776" fg:w="84"/><text x="56.6703%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.06%)</title><rect x="56.4163%" y="917" width="0.0606%" height="15" fill="rgb(210,17,39)" fg:x="84770" fg:w="91"/><text x="56.6663%" y="927.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (119 samples, 0.08%)</title><rect x="56.4010%" y="933" width="0.0792%" height="15" fill="rgb(244,93,20)" fg:x="84747" fg:w="119"/><text x="56.6510%" y="943.50"></text></g><g><title>__pthread_disable_asynccancel (34 samples, 0.02%)</title><rect x="56.5015%" y="917" width="0.0226%" height="15" fill="rgb(210,40,47)" fg:x="84898" fg:w="34"/><text x="56.7515%" y="927.50"></text></g><g><title>plist_add (30 samples, 0.02%)</title><rect x="56.6778%" y="821" width="0.0200%" height="15" fill="rgb(239,211,47)" fg:x="85163" fg:w="30"/><text x="56.9278%" y="831.50"></text></g><g><title>__list_add_valid (17 samples, 0.01%)</title><rect x="56.6865%" y="805" width="0.0113%" height="15" fill="rgb(251,223,49)" fg:x="85176" fg:w="17"/><text x="56.9365%" y="815.50"></text></g><g><title>__perf_event_task_sched_out (25 samples, 0.02%)</title><rect x="56.7584%" y="789" width="0.0166%" height="15" fill="rgb(221,149,5)" fg:x="85284" fg:w="25"/><text x="57.0084%" y="799.50"></text></g><g><title>update_cfs_group (27 samples, 0.02%)</title><rect x="56.8283%" y="757" width="0.0180%" height="15" fill="rgb(219,224,51)" fg:x="85389" fg:w="27"/><text x="57.0783%" y="767.50"></text></g><g><title>__calc_delta (17 samples, 0.01%)</title><rect x="56.8689%" y="741" width="0.0113%" height="15" fill="rgb(223,7,8)" fg:x="85450" fg:w="17"/><text x="57.1189%" y="751.50"></text></g><g><title>cpuacct_charge (19 samples, 0.01%)</title><rect x="56.8842%" y="741" width="0.0126%" height="15" fill="rgb(241,217,22)" fg:x="85473" fg:w="19"/><text x="57.1342%" y="751.50"></text></g><g><title>update_curr (80 samples, 0.05%)</title><rect x="56.8462%" y="757" width="0.0532%" height="15" fill="rgb(248,209,0)" fg:x="85416" fg:w="80"/><text x="57.0962%" y="767.50"></text></g><g><title>__update_load_avg_cfs_rq (18 samples, 0.01%)</title><rect x="56.9181%" y="741" width="0.0120%" height="15" fill="rgb(217,205,4)" fg:x="85524" fg:w="18"/><text x="57.1681%" y="751.50"></text></g><g><title>__update_load_avg_se (26 samples, 0.02%)</title><rect x="56.9301%" y="741" width="0.0173%" height="15" fill="rgb(228,124,39)" fg:x="85542" fg:w="26"/><text x="57.1801%" y="751.50"></text></g><g><title>dequeue_entity (214 samples, 0.14%)</title><rect x="56.8063%" y="773" width="0.1424%" height="15" fill="rgb(250,116,42)" fg:x="85356" fg:w="214"/><text x="57.0563%" y="783.50"></text></g><g><title>update_load_avg (74 samples, 0.05%)</title><rect x="56.8995%" y="757" width="0.0492%" height="15" fill="rgb(223,202,9)" fg:x="85496" fg:w="74"/><text x="57.1495%" y="767.50"></text></g><g><title>dequeue_task_fair (252 samples, 0.17%)</title><rect x="56.7843%" y="789" width="0.1677%" height="15" fill="rgb(242,222,40)" fg:x="85323" fg:w="252"/><text x="57.0343%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (7,364 samples, 4.90%)</title><rect x="57.0519%" y="773" width="4.9009%" height="15" fill="rgb(229,99,46)" fg:x="85725" fg:w="7364"/><text x="57.3019%" y="783.50">__perf..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (7,305 samples, 4.86%)</title><rect x="57.0911%" y="757" width="4.8616%" height="15" fill="rgb(225,56,46)" fg:x="85784" fg:w="7305"/><text x="57.3411%" y="767.50">__inte..</text></g><g><title>native_write_msr (7,277 samples, 4.84%)</title><rect x="57.1098%" y="741" width="4.8430%" height="15" fill="rgb(227,94,5)" fg:x="85812" fg:w="7277"/><text x="57.3598%" y="751.50">native..</text></g><g><title>enqueue_task_fair (20 samples, 0.01%)</title><rect x="62.0280%" y="549" width="0.0133%" height="15" fill="rgb(205,112,38)" fg:x="93202" fg:w="20"/><text x="62.2780%" y="559.50"></text></g><g><title>enqueue_entity (19 samples, 0.01%)</title><rect x="62.0286%" y="533" width="0.0126%" height="15" fill="rgb(231,133,46)" fg:x="93203" fg:w="19"/><text x="62.2786%" y="543.50"></text></g><g><title>ttwu_do_activate (31 samples, 0.02%)</title><rect x="62.0266%" y="565" width="0.0206%" height="15" fill="rgb(217,16,9)" fg:x="93200" fg:w="31"/><text x="62.2766%" y="575.50"></text></g><g><title>__wake_up_common (59 samples, 0.04%)</title><rect x="62.0087%" y="613" width="0.0393%" height="15" fill="rgb(249,173,9)" fg:x="93173" fg:w="59"/><text x="62.2587%" y="623.50"></text></g><g><title>pollwake (54 samples, 0.04%)</title><rect x="62.0120%" y="597" width="0.0359%" height="15" fill="rgb(205,163,53)" fg:x="93178" fg:w="54"/><text x="62.2620%" y="607.50"></text></g><g><title>try_to_wake_up (53 samples, 0.04%)</title><rect x="62.0127%" y="581" width="0.0353%" height="15" fill="rgb(217,54,41)" fg:x="93179" fg:w="53"/><text x="62.2627%" y="591.50"></text></g><g><title>irq_work_run (69 samples, 0.05%)</title><rect x="62.0040%" y="709" width="0.0459%" height="15" fill="rgb(228,216,12)" fg:x="93166" fg:w="69"/><text x="62.2540%" y="719.50"></text></g><g><title>irq_work_run_list (69 samples, 0.05%)</title><rect x="62.0040%" y="693" width="0.0459%" height="15" fill="rgb(244,228,15)" fg:x="93166" fg:w="69"/><text x="62.2540%" y="703.50"></text></g><g><title>irq_work_single (68 samples, 0.05%)</title><rect x="62.0047%" y="677" width="0.0453%" height="15" fill="rgb(221,176,53)" fg:x="93167" fg:w="68"/><text x="62.2547%" y="687.50"></text></g><g><title>perf_pending_event (67 samples, 0.04%)</title><rect x="62.0054%" y="661" width="0.0446%" height="15" fill="rgb(205,94,34)" fg:x="93168" fg:w="67"/><text x="62.2554%" y="671.50"></text></g><g><title>perf_event_wakeup (65 samples, 0.04%)</title><rect x="62.0067%" y="645" width="0.0433%" height="15" fill="rgb(213,110,48)" fg:x="93170" fg:w="65"/><text x="62.2567%" y="655.50"></text></g><g><title>__wake_up_common_lock (63 samples, 0.04%)</title><rect x="62.0080%" y="629" width="0.0419%" height="15" fill="rgb(236,142,28)" fg:x="93172" fg:w="63"/><text x="62.2580%" y="639.50"></text></g><g><title>asm_call_sysvec_on_stack (86 samples, 0.06%)</title><rect x="61.9940%" y="741" width="0.0572%" height="15" fill="rgb(225,135,29)" fg:x="93151" fg:w="86"/><text x="62.2440%" y="751.50"></text></g><g><title>__sysvec_irq_work (72 samples, 0.05%)</title><rect x="62.0034%" y="725" width="0.0479%" height="15" fill="rgb(252,45,31)" fg:x="93165" fg:w="72"/><text x="62.2534%" y="735.50"></text></g><g><title>asm_sysvec_irq_work (139 samples, 0.09%)</title><rect x="61.9621%" y="773" width="0.0925%" height="15" fill="rgb(211,187,50)" fg:x="93103" fg:w="139"/><text x="62.2121%" y="783.50"></text></g><g><title>sysvec_irq_work (99 samples, 0.07%)</title><rect x="61.9887%" y="757" width="0.0659%" height="15" fill="rgb(229,109,7)" fg:x="93143" fg:w="99"/><text x="62.2387%" y="767.50"></text></g><g><title>finish_task_switch (7,676 samples, 5.11%)</title><rect x="56.9520%" y="789" width="5.1085%" height="15" fill="rgb(251,131,51)" fg:x="85575" fg:w="7676"/><text x="57.2020%" y="799.50">finish..</text></g><g><title>load_balance (17 samples, 0.01%)</title><rect x="62.0772%" y="757" width="0.0113%" height="15" fill="rgb(251,180,35)" fg:x="93276" fg:w="17"/><text x="62.3272%" y="767.50"></text></g><g><title>newidle_balance (39 samples, 0.03%)</title><rect x="62.0633%" y="773" width="0.0260%" height="15" fill="rgb(211,46,32)" fg:x="93255" fg:w="39"/><text x="62.3133%" y="783.50"></text></g><g><title>pick_next_task_fair (46 samples, 0.03%)</title><rect x="62.0606%" y="789" width="0.0306%" height="15" fill="rgb(248,123,17)" fg:x="93251" fg:w="46"/><text x="62.3106%" y="799.50"></text></g><g><title>pick_next_task_idle (20 samples, 0.01%)</title><rect x="62.0912%" y="789" width="0.0133%" height="15" fill="rgb(227,141,18)" fg:x="93297" fg:w="20"/><text x="62.3412%" y="799.50"></text></g><g><title>psi_task_change (190 samples, 0.13%)</title><rect x="62.1045%" y="789" width="0.1264%" height="15" fill="rgb(216,102,9)" fg:x="93317" fg:w="190"/><text x="62.3545%" y="799.50"></text></g><g><title>psi_group_change (166 samples, 0.11%)</title><rect x="62.1205%" y="773" width="0.1105%" height="15" fill="rgb(253,47,13)" fg:x="93341" fg:w="166"/><text x="62.3705%" y="783.50"></text></g><g><title>record_times (44 samples, 0.03%)</title><rect x="62.2017%" y="757" width="0.0293%" height="15" fill="rgb(226,93,23)" fg:x="93463" fg:w="44"/><text x="62.4517%" y="767.50"></text></g><g><title>sched_clock_cpu (36 samples, 0.02%)</title><rect x="62.2070%" y="741" width="0.0240%" height="15" fill="rgb(247,104,17)" fg:x="93471" fg:w="36"/><text x="62.4570%" y="751.50"></text></g><g><title>sched_clock (29 samples, 0.02%)</title><rect x="62.2117%" y="725" width="0.0193%" height="15" fill="rgb(233,203,26)" fg:x="93478" fg:w="29"/><text x="62.4617%" y="735.50"></text></g><g><title>native_sched_clock (28 samples, 0.02%)</title><rect x="62.2123%" y="709" width="0.0186%" height="15" fill="rgb(244,98,49)" fg:x="93479" fg:w="28"/><text x="62.4623%" y="719.50"></text></g><g><title>futex_wait_queue_me (8,428 samples, 5.61%)</title><rect x="56.6412%" y="837" width="5.6090%" height="15" fill="rgb(235,134,22)" fg:x="85108" fg:w="8428"/><text x="56.8912%" y="847.50">futex_w..</text></g><g><title>schedule (8,343 samples, 5.55%)</title><rect x="56.6978%" y="821" width="5.5524%" height="15" fill="rgb(221,70,32)" fg:x="85193" fg:w="8343"/><text x="56.9478%" y="831.50">schedule</text></g><g><title>__schedule (8,317 samples, 5.54%)</title><rect x="56.7151%" y="805" width="5.5351%" height="15" fill="rgb(238,15,50)" fg:x="85219" fg:w="8317"/><text x="56.9651%" y="815.50">__sched..</text></g><g><title>update_rq_clock (18 samples, 0.01%)</title><rect x="62.2383%" y="789" width="0.0120%" height="15" fill="rgb(215,221,48)" fg:x="93518" fg:w="18"/><text x="62.4883%" y="799.50"></text></g><g><title>__get_user_nocheck_4 (18 samples, 0.01%)</title><rect x="62.2815%" y="821" width="0.0120%" height="15" fill="rgb(236,73,3)" fg:x="93583" fg:w="18"/><text x="62.5315%" y="831.50"></text></g><g><title>__x64_sys_futex (8,651 samples, 5.76%)</title><rect x="56.5574%" y="885" width="5.7574%" height="15" fill="rgb(250,107,11)" fg:x="84982" fg:w="8651"/><text x="56.8074%" y="895.50">__x64_s..</text></g><g><title>do_futex (8,627 samples, 5.74%)</title><rect x="56.5734%" y="869" width="5.7415%" height="15" fill="rgb(242,39,14)" fg:x="85006" fg:w="8627"/><text x="56.8234%" y="879.50">do_futex</text></g><g><title>futex_wait (8,594 samples, 5.72%)</title><rect x="56.5953%" y="853" width="5.7195%" height="15" fill="rgb(248,164,37)" fg:x="85039" fg:w="8594"/><text x="56.8453%" y="863.50">futex_w..</text></g><g><title>futex_wait_setup (97 samples, 0.06%)</title><rect x="62.2503%" y="837" width="0.0646%" height="15" fill="rgb(217,60,12)" fg:x="93536" fg:w="97"/><text x="62.5003%" y="847.50"></text></g><g><title>do_syscall_64 (8,669 samples, 5.77%)</title><rect x="56.5481%" y="901" width="5.7694%" height="15" fill="rgb(240,125,29)" fg:x="84968" fg:w="8669"/><text x="56.7981%" y="911.50">do_sysc..</text></g><g><title>entry_SYSCALL_64_after_hwframe (8,823 samples, 5.87%)</title><rect x="56.5381%" y="917" width="5.8719%" height="15" fill="rgb(208,207,28)" fg:x="84953" fg:w="8823"/><text x="56.7881%" y="927.50">entry_S..</text></g><g><title>syscall_exit_to_user_mode (139 samples, 0.09%)</title><rect x="62.3175%" y="901" width="0.0925%" height="15" fill="rgb(209,159,27)" fg:x="93637" fg:w="139"/><text x="62.5675%" y="911.50"></text></g><g><title>exit_to_user_mode_prepare (130 samples, 0.09%)</title><rect x="62.3235%" y="885" width="0.0865%" height="15" fill="rgb(251,176,53)" fg:x="93646" fg:w="130"/><text x="62.5735%" y="895.50"></text></g><g><title>switch_fpu_return (119 samples, 0.08%)</title><rect x="62.3308%" y="869" width="0.0792%" height="15" fill="rgb(211,85,7)" fg:x="93657" fg:w="119"/><text x="62.5808%" y="879.50"></text></g><g><title>copy_kernel_to_fpregs (88 samples, 0.06%)</title><rect x="62.3514%" y="853" width="0.0586%" height="15" fill="rgb(216,64,54)" fg:x="93688" fg:w="88"/><text x="62.6014%" y="863.50"></text></g><g><title>__pthread_cond_wait (9,529 samples, 6.34%)</title><rect x="56.0782%" y="965" width="6.3418%" height="15" fill="rgb(217,54,24)" fg:x="84262" fg:w="9529"/><text x="56.3282%" y="975.50">__pthrea..</text></g><g><title>__pthread_cond_wait_common (9,529 samples, 6.34%)</title><rect x="56.0782%" y="949" width="6.3418%" height="15" fill="rgb(208,206,53)" fg:x="84262" fg:w="9529"/><text x="56.3282%" y="959.50">__pthrea..</text></g><g><title>futex_wait_cancelable (8,923 samples, 5.94%)</title><rect x="56.4815%" y="933" width="5.9385%" height="15" fill="rgb(251,74,39)" fg:x="84868" fg:w="8923"/><text x="56.7315%" y="943.50">futex_wa..</text></g><g><title>__perf_event_task_sched_in (145 samples, 0.10%)</title><rect x="62.4706%" y="789" width="0.0965%" height="15" fill="rgb(226,47,5)" fg:x="93867" fg:w="145"/><text x="62.7206%" y="799.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (143 samples, 0.10%)</title><rect x="62.4719%" y="773" width="0.0952%" height="15" fill="rgb(234,111,33)" fg:x="93869" fg:w="143"/><text x="62.7219%" y="783.50"></text></g><g><title>native_write_msr (142 samples, 0.09%)</title><rect x="62.4725%" y="757" width="0.0945%" height="15" fill="rgb(251,14,10)" fg:x="93870" fg:w="142"/><text x="62.7225%" y="767.50"></text></g><g><title>finish_task_switch (156 samples, 0.10%)</title><rect x="62.4652%" y="805" width="0.1038%" height="15" fill="rgb(232,43,0)" fg:x="93859" fg:w="156"/><text x="62.7152%" y="815.50"></text></g><g><title>futex_wait_queue_me (208 samples, 0.14%)</title><rect x="62.4439%" y="853" width="0.1384%" height="15" fill="rgb(222,68,43)" fg:x="93827" fg:w="208"/><text x="62.6939%" y="863.50"></text></g><g><title>schedule (202 samples, 0.13%)</title><rect x="62.4479%" y="837" width="0.1344%" height="15" fill="rgb(217,24,23)" fg:x="93833" fg:w="202"/><text x="62.6979%" y="847.50"></text></g><g><title>__schedule (199 samples, 0.13%)</title><rect x="62.4499%" y="821" width="0.1324%" height="15" fill="rgb(229,209,14)" fg:x="93836" fg:w="199"/><text x="62.6999%" y="831.50"></text></g><g><title>do_syscall_64 (241 samples, 0.16%)</title><rect x="62.4373%" y="917" width="0.1604%" height="15" fill="rgb(250,149,48)" fg:x="93817" fg:w="241"/><text x="62.6873%" y="927.50"></text></g><g><title>__x64_sys_futex (240 samples, 0.16%)</title><rect x="62.4379%" y="901" width="0.1597%" height="15" fill="rgb(210,120,37)" fg:x="93818" fg:w="240"/><text x="62.6879%" y="911.50"></text></g><g><title>do_futex (240 samples, 0.16%)</title><rect x="62.4379%" y="885" width="0.1597%" height="15" fill="rgb(210,21,8)" fg:x="93818" fg:w="240"/><text x="62.6879%" y="895.50"></text></g><g><title>futex_wait (237 samples, 0.16%)</title><rect x="62.4399%" y="869" width="0.1577%" height="15" fill="rgb(243,145,7)" fg:x="93821" fg:w="237"/><text x="62.6899%" y="879.50"></text></g><g><title>futex_wait_setup (23 samples, 0.02%)</title><rect x="62.5824%" y="853" width="0.0153%" height="15" fill="rgb(238,178,32)" fg:x="94035" fg:w="23"/><text x="62.8324%" y="863.50"></text></g><g><title>__pthread_mutex_cond_lock (270 samples, 0.18%)</title><rect x="62.4200%" y="965" width="0.1797%" height="15" fill="rgb(222,4,10)" fg:x="93791" fg:w="270"/><text x="62.6700%" y="975.50"></text></g><g><title>__lll_lock_wait (254 samples, 0.17%)</title><rect x="62.4306%" y="949" width="0.1690%" height="15" fill="rgb(239,7,37)" fg:x="93807" fg:w="254"/><text x="62.6806%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (245 samples, 0.16%)</title><rect x="62.4366%" y="933" width="0.1631%" height="15" fill="rgb(215,31,37)" fg:x="93816" fg:w="245"/><text x="62.6866%" y="943.50"></text></g><g><title>std::condition_variable::wait (9,819 samples, 6.53%)</title><rect x="56.0676%" y="981" width="6.5348%" height="15" fill="rgb(224,83,33)" fg:x="84246" fg:w="9819"/><text x="56.3176%" y="991.50">std::cond..</text></g><g><title>alloc_pages_vma (38 samples, 0.03%)</title><rect x="62.6096%" y="853" width="0.0253%" height="15" fill="rgb(239,55,3)" fg:x="94076" fg:w="38"/><text x="62.8596%" y="863.50"></text></g><g><title>__alloc_pages_nodemask (38 samples, 0.03%)</title><rect x="62.6096%" y="837" width="0.0253%" height="15" fill="rgb(247,92,11)" fg:x="94076" fg:w="38"/><text x="62.8596%" y="847.50"></text></g><g><title>get_page_from_freelist (38 samples, 0.03%)</title><rect x="62.6096%" y="821" width="0.0253%" height="15" fill="rgb(239,200,7)" fg:x="94076" fg:w="38"/><text x="62.8596%" y="831.50"></text></g><g><title>prep_new_page (37 samples, 0.02%)</title><rect x="62.6103%" y="805" width="0.0246%" height="15" fill="rgb(227,115,8)" fg:x="94077" fg:w="37"/><text x="62.8603%" y="815.50"></text></g><g><title>kernel_init_free_pages (37 samples, 0.02%)</title><rect x="62.6103%" y="789" width="0.0246%" height="15" fill="rgb(215,189,27)" fg:x="94077" fg:w="37"/><text x="62.8603%" y="799.50"></text></g><g><title>clear_page_erms (37 samples, 0.02%)</title><rect x="62.6103%" y="773" width="0.0246%" height="15" fill="rgb(251,216,39)" fg:x="94077" fg:w="37"/><text x="62.8603%" y="783.50"></text></g><g><title>do_huge_pmd_anonymous_page (58 samples, 0.04%)</title><rect x="62.6090%" y="869" width="0.0386%" height="15" fill="rgb(207,29,47)" fg:x="94075" fg:w="58"/><text x="62.8590%" y="879.50"></text></g><g><title>clear_huge_page (19 samples, 0.01%)</title><rect x="62.6349%" y="853" width="0.0126%" height="15" fill="rgb(210,71,34)" fg:x="94114" fg:w="19"/><text x="62.8849%" y="863.50"></text></g><g><title>clear_subpage (19 samples, 0.01%)</title><rect x="62.6349%" y="837" width="0.0126%" height="15" fill="rgb(253,217,51)" fg:x="94114" fg:w="19"/><text x="62.8849%" y="847.50"></text></g><g><title>clear_page_erms (17 samples, 0.01%)</title><rect x="62.6363%" y="821" width="0.0113%" height="15" fill="rgb(222,117,46)" fg:x="94116" fg:w="17"/><text x="62.8863%" y="831.50"></text></g><g><title>handle_mm_fault (62 samples, 0.04%)</title><rect x="62.6070%" y="885" width="0.0413%" height="15" fill="rgb(226,132,6)" fg:x="94072" fg:w="62"/><text x="62.8570%" y="895.50"></text></g><g><title>asm_exc_page_fault (63 samples, 0.04%)</title><rect x="62.6070%" y="933" width="0.0419%" height="15" fill="rgb(254,145,51)" fg:x="94072" fg:w="63"/><text x="62.8570%" y="943.50"></text></g><g><title>exc_page_fault (63 samples, 0.04%)</title><rect x="62.6070%" y="917" width="0.0419%" height="15" fill="rgb(231,199,27)" fg:x="94072" fg:w="63"/><text x="62.8570%" y="927.50"></text></g><g><title>do_user_addr_fault (63 samples, 0.04%)</title><rect x="62.6070%" y="901" width="0.0419%" height="15" fill="rgb(245,158,14)" fg:x="94072" fg:w="63"/><text x="62.8570%" y="911.50"></text></g><g><title>allocate_stack (75 samples, 0.05%)</title><rect x="62.6023%" y="949" width="0.0499%" height="15" fill="rgb(240,113,14)" fg:x="94065" fg:w="75"/><text x="62.8523%" y="959.50"></text></g><g><title>__pthread_create_2_1 (77 samples, 0.05%)</title><rect x="62.6023%" y="965" width="0.0512%" height="15" fill="rgb(210,20,13)" fg:x="94065" fg:w="77"/><text x="62.8523%" y="975.50"></text></g><g><title>[ld.lld] (13,123 samples, 8.73%)</title><rect x="53.9206%" y="997" width="8.7336%" height="15" fill="rgb(241,144,13)" fg:x="81020" fg:w="13123"/><text x="54.1706%" y="1007.50">[ld.lld]</text></g><g><title>std::thread::_M_start_thread (78 samples, 0.05%)</title><rect x="62.6023%" y="981" width="0.0519%" height="15" fill="rgb(235,43,34)" fg:x="94065" fg:w="78"/><text x="62.8523%" y="991.50"></text></g><g><title>__vmalloc_node_range (16 samples, 0.01%)</title><rect x="62.6616%" y="885" width="0.0106%" height="15" fill="rgb(208,36,20)" fg:x="94154" fg:w="16"/><text x="62.9116%" y="895.50"></text></g><g><title>inherit_task_group.isra.0 (25 samples, 0.02%)</title><rect x="62.6802%" y="869" width="0.0166%" height="15" fill="rgb(239,204,10)" fg:x="94182" fg:w="25"/><text x="62.9302%" y="879.50"></text></g><g><title>inherit_event.constprop.0 (24 samples, 0.02%)</title><rect x="62.6809%" y="853" width="0.0160%" height="15" fill="rgb(217,84,43)" fg:x="94183" fg:w="24"/><text x="62.9309%" y="863.50"></text></g><g><title>perf_event_alloc (23 samples, 0.02%)</title><rect x="62.6815%" y="837" width="0.0153%" height="15" fill="rgb(241,170,50)" fg:x="94184" fg:w="23"/><text x="62.9315%" y="847.50"></text></g><g><title>perf_event_init_task (27 samples, 0.02%)</title><rect x="62.6802%" y="885" width="0.0180%" height="15" fill="rgb(226,205,29)" fg:x="94182" fg:w="27"/><text x="62.9302%" y="895.50"></text></g><g><title>copy_process (61 samples, 0.04%)</title><rect x="62.6596%" y="901" width="0.0406%" height="15" fill="rgb(233,113,1)" fg:x="94151" fg:w="61"/><text x="62.9096%" y="911.50"></text></g><g><title>__do_sys_clone (65 samples, 0.04%)</title><rect x="62.6589%" y="933" width="0.0433%" height="15" fill="rgb(253,98,13)" fg:x="94150" fg:w="65"/><text x="62.9089%" y="943.50"></text></g><g><title>kernel_clone (65 samples, 0.04%)</title><rect x="62.6589%" y="917" width="0.0433%" height="15" fill="rgb(211,115,12)" fg:x="94150" fg:w="65"/><text x="62.9089%" y="927.50"></text></g><g><title>__GI___clone (66 samples, 0.04%)</title><rect x="62.6589%" y="981" width="0.0439%" height="15" fill="rgb(208,12,16)" fg:x="94150" fg:w="66"/><text x="62.9089%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.04%)</title><rect x="62.6589%" y="965" width="0.0439%" height="15" fill="rgb(237,193,54)" fg:x="94150" fg:w="66"/><text x="62.9089%" y="975.50"></text></g><g><title>do_syscall_64 (66 samples, 0.04%)</title><rect x="62.6589%" y="949" width="0.0439%" height="15" fill="rgb(243,22,42)" fg:x="94150" fg:w="66"/><text x="62.9089%" y="959.50"></text></g><g><title>[unknown] (90 samples, 0.06%)</title><rect x="62.6562%" y="997" width="0.0599%" height="15" fill="rgb(233,151,36)" fg:x="94146" fg:w="90"/><text x="62.9062%" y="1007.50"></text></g><g><title>__perf_event_task_sched_in (1,257 samples, 0.84%)</title><rect x="62.7467%" y="933" width="0.8366%" height="15" fill="rgb(237,57,45)" fg:x="94282" fg:w="1257"/><text x="62.9967%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,232 samples, 0.82%)</title><rect x="62.7634%" y="917" width="0.8199%" height="15" fill="rgb(221,88,17)" fg:x="94307" fg:w="1232"/><text x="63.0134%" y="927.50"></text></g><g><title>native_write_msr (1,230 samples, 0.82%)</title><rect x="62.7647%" y="901" width="0.8186%" height="15" fill="rgb(230,79,15)" fg:x="94309" fg:w="1230"/><text x="63.0147%" y="911.50"></text></g><g><title>asm_sysvec_irq_work (22 samples, 0.01%)</title><rect x="63.5860%" y="933" width="0.0146%" height="15" fill="rgb(213,57,13)" fg:x="95543" fg:w="22"/><text x="63.8360%" y="943.50"></text></g><g><title>sysvec_irq_work (17 samples, 0.01%)</title><rect x="63.5893%" y="917" width="0.0113%" height="15" fill="rgb(222,116,39)" fg:x="95548" fg:w="17"/><text x="63.8393%" y="927.50"></text></g><g><title>asm_call_sysvec_on_stack (17 samples, 0.01%)</title><rect x="63.5893%" y="901" width="0.0113%" height="15" fill="rgb(245,107,2)" fg:x="95548" fg:w="17"/><text x="63.8393%" y="911.50"></text></g><g><title>schedule_tail (1,314 samples, 0.87%)</title><rect x="62.7274%" y="965" width="0.8745%" height="15" fill="rgb(238,1,10)" fg:x="94253" fg:w="1314"/><text x="62.9774%" y="975.50"></text></g><g><title>finish_task_switch (1,309 samples, 0.87%)</title><rect x="62.7308%" y="949" width="0.8712%" height="15" fill="rgb(249,4,48)" fg:x="94258" fg:w="1309"/><text x="62.9808%" y="959.50"></text></g><g><title>ret_from_fork (1,334 samples, 0.89%)</title><rect x="62.7221%" y="981" width="0.8878%" height="15" fill="rgb(223,151,18)" fg:x="94245" fg:w="1334"/><text x="62.9721%" y="991.50"></text></g><g><title>__libc_thread_freeres (23 samples, 0.02%)</title><rect x="63.6239%" y="965" width="0.0153%" height="15" fill="rgb(227,65,43)" fg:x="95600" fg:w="23"/><text x="63.8739%" y="975.50"></text></g><g><title>flush_tlb_mm_range (33 samples, 0.02%)</title><rect x="63.6585%" y="837" width="0.0220%" height="15" fill="rgb(218,40,45)" fg:x="95652" fg:w="33"/><text x="63.9085%" y="847.50"></text></g><g><title>smp_call_function_many_cond (31 samples, 0.02%)</title><rect x="63.6598%" y="821" width="0.0206%" height="15" fill="rgb(252,121,31)" fg:x="95654" fg:w="31"/><text x="63.9098%" y="831.50"></text></g><g><title>tlb_finish_mmu (36 samples, 0.02%)</title><rect x="63.6578%" y="853" width="0.0240%" height="15" fill="rgb(219,158,43)" fg:x="95651" fg:w="36"/><text x="63.9078%" y="863.50"></text></g><g><title>advise_stack_range (72 samples, 0.05%)</title><rect x="63.6512%" y="965" width="0.0479%" height="15" fill="rgb(231,162,42)" fg:x="95641" fg:w="72"/><text x="63.9012%" y="975.50"></text></g><g><title>__GI_madvise (70 samples, 0.05%)</title><rect x="63.6525%" y="949" width="0.0466%" height="15" fill="rgb(217,179,25)" fg:x="95643" fg:w="70"/><text x="63.9025%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.05%)</title><rect x="63.6532%" y="933" width="0.0459%" height="15" fill="rgb(206,212,31)" fg:x="95644" fg:w="69"/><text x="63.9032%" y="943.50"></text></g><g><title>do_syscall_64 (69 samples, 0.05%)</title><rect x="63.6532%" y="917" width="0.0459%" height="15" fill="rgb(235,144,12)" fg:x="95644" fg:w="69"/><text x="63.9032%" y="927.50"></text></g><g><title>__x64_sys_madvise (69 samples, 0.05%)</title><rect x="63.6532%" y="901" width="0.0459%" height="15" fill="rgb(213,51,10)" fg:x="95644" fg:w="69"/><text x="63.9032%" y="911.50"></text></g><g><title>do_madvise.part.0 (69 samples, 0.05%)</title><rect x="63.6532%" y="885" width="0.0459%" height="15" fill="rgb(231,145,14)" fg:x="95644" fg:w="69"/><text x="63.9032%" y="895.50"></text></g><g><title>zap_page_range (66 samples, 0.04%)</title><rect x="63.6552%" y="869" width="0.0439%" height="15" fill="rgb(235,15,28)" fg:x="95647" fg:w="66"/><text x="63.9052%" y="879.50"></text></g><g><title>unmap_page_range (25 samples, 0.02%)</title><rect x="63.6825%" y="853" width="0.0166%" height="15" fill="rgb(237,206,10)" fg:x="95688" fg:w="25"/><text x="63.9325%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="63.7004%" y="965" width="0.0106%" height="15" fill="rgb(236,227,27)" fg:x="95715" fg:w="16"/><text x="63.9504%" y="975.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="63.7004%" y="949" width="0.0106%" height="15" fill="rgb(246,83,35)" fg:x="95715" fg:w="16"/><text x="63.9504%" y="959.50"></text></g><g><title>__GI___clone (1,496 samples, 1.00%)</title><rect x="62.7161%" y="997" width="0.9956%" height="15" fill="rgb(220,136,24)" fg:x="94236" fg:w="1496"/><text x="62.9661%" y="1007.50"></text></g><g><title>start_thread (153 samples, 0.10%)</title><rect x="63.6099%" y="981" width="0.1018%" height="15" fill="rgb(217,3,25)" fg:x="95579" fg:w="153"/><text x="63.8599%" y="991.50"></text></g><g><title>__split_vma (18 samples, 0.01%)</title><rect x="63.7324%" y="677" width="0.0120%" height="15" fill="rgb(239,24,14)" fg:x="95763" fg:w="18"/><text x="63.9824%" y="687.50"></text></g><g><title>__do_munmap (21 samples, 0.01%)</title><rect x="63.7324%" y="693" width="0.0140%" height="15" fill="rgb(244,16,53)" fg:x="95763" fg:w="21"/><text x="63.9824%" y="703.50"></text></g><g><title>do_mmap (34 samples, 0.02%)</title><rect x="63.7304%" y="725" width="0.0226%" height="15" fill="rgb(208,175,44)" fg:x="95760" fg:w="34"/><text x="63.9804%" y="735.50"></text></g><g><title>mmap_region (33 samples, 0.02%)</title><rect x="63.7310%" y="709" width="0.0220%" height="15" fill="rgb(252,18,48)" fg:x="95761" fg:w="33"/><text x="63.9810%" y="719.50"></text></g><g><title>ksys_mmap_pgoff (35 samples, 0.02%)</title><rect x="63.7304%" y="757" width="0.0233%" height="15" fill="rgb(234,199,32)" fg:x="95760" fg:w="35"/><text x="63.9804%" y="767.50"></text></g><g><title>vm_mmap_pgoff (35 samples, 0.02%)</title><rect x="63.7304%" y="741" width="0.0233%" height="15" fill="rgb(225,77,54)" fg:x="95760" fg:w="35"/><text x="63.9804%" y="751.50"></text></g><g><title>_dl_map_segments (41 samples, 0.03%)</title><rect x="63.7271%" y="837" width="0.0273%" height="15" fill="rgb(225,42,25)" fg:x="95755" fg:w="41"/><text x="63.9771%" y="847.50"></text></g><g><title>__mmap64 (36 samples, 0.02%)</title><rect x="63.7304%" y="821" width="0.0240%" height="15" fill="rgb(242,227,46)" fg:x="95760" fg:w="36"/><text x="63.9804%" y="831.50"></text></g><g><title>__mmap64 (36 samples, 0.02%)</title><rect x="63.7304%" y="805" width="0.0240%" height="15" fill="rgb(246,197,35)" fg:x="95760" fg:w="36"/><text x="63.9804%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="63.7304%" y="789" width="0.0240%" height="15" fill="rgb(215,159,26)" fg:x="95760" fg:w="36"/><text x="63.9804%" y="799.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="63.7304%" y="773" width="0.0240%" height="15" fill="rgb(212,194,50)" fg:x="95760" fg:w="36"/><text x="63.9804%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (62 samples, 0.04%)</title><rect x="63.7257%" y="853" width="0.0413%" height="15" fill="rgb(246,132,1)" fg:x="95753" fg:w="62"/><text x="63.9757%" y="863.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="63.7710%" y="789" width="0.0113%" height="15" fill="rgb(217,71,7)" fg:x="95821" fg:w="17"/><text x="64.0210%" y="799.50"></text></g><g><title>__x64_sys_openat (17 samples, 0.01%)</title><rect x="63.7710%" y="773" width="0.0113%" height="15" fill="rgb(252,59,32)" fg:x="95821" fg:w="17"/><text x="64.0210%" y="783.50"></text></g><g><title>do_sys_openat2 (17 samples, 0.01%)</title><rect x="63.7710%" y="757" width="0.0113%" height="15" fill="rgb(253,204,25)" fg:x="95821" fg:w="17"/><text x="64.0210%" y="767.50"></text></g><g><title>open_path (25 samples, 0.02%)</title><rect x="63.7670%" y="853" width="0.0166%" height="15" fill="rgb(232,21,16)" fg:x="95815" fg:w="25"/><text x="64.0170%" y="863.50"></text></g><g><title>open_verify (19 samples, 0.01%)</title><rect x="63.7710%" y="837" width="0.0126%" height="15" fill="rgb(248,90,29)" fg:x="95821" fg:w="19"/><text x="64.0210%" y="847.50"></text></g><g><title>__GI___open64_nocancel (19 samples, 0.01%)</title><rect x="63.7710%" y="821" width="0.0126%" height="15" fill="rgb(249,223,7)" fg:x="95821" fg:w="19"/><text x="64.0210%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="63.7710%" y="805" width="0.0126%" height="15" fill="rgb(231,119,42)" fg:x="95821" fg:w="19"/><text x="64.0210%" y="815.50"></text></g><g><title>_dl_catch_exception (91 samples, 0.06%)</title><rect x="63.7244%" y="901" width="0.0606%" height="15" fill="rgb(215,41,35)" fg:x="95751" fg:w="91"/><text x="63.9744%" y="911.50"></text></g><g><title>openaux (90 samples, 0.06%)</title><rect x="63.7251%" y="885" width="0.0599%" height="15" fill="rgb(220,44,45)" fg:x="95752" fg:w="90"/><text x="63.9751%" y="895.50"></text></g><g><title>_dl_map_object (90 samples, 0.06%)</title><rect x="63.7251%" y="869" width="0.0599%" height="15" fill="rgb(253,197,36)" fg:x="95752" fg:w="90"/><text x="63.9751%" y="879.50"></text></g><g><title>_dl_map_object_deps (95 samples, 0.06%)</title><rect x="63.7244%" y="917" width="0.0632%" height="15" fill="rgb(245,225,54)" fg:x="95751" fg:w="95"/><text x="63.9744%" y="927.50"></text></g><g><title>dl_new_hash (34 samples, 0.02%)</title><rect x="63.8236%" y="853" width="0.0226%" height="15" fill="rgb(239,94,37)" fg:x="95900" fg:w="34"/><text x="64.0736%" y="863.50"></text></g><g><title>_dl_lookup_symbol_x (105 samples, 0.07%)</title><rect x="63.8216%" y="869" width="0.0699%" height="15" fill="rgb(242,217,10)" fg:x="95897" fg:w="105"/><text x="64.0716%" y="879.50"></text></g><g><title>do_lookup_x (68 samples, 0.05%)</title><rect x="63.8462%" y="853" width="0.0453%" height="15" fill="rgb(250,193,7)" fg:x="95934" fg:w="68"/><text x="64.0962%" y="863.50"></text></g><g><title>exc_page_fault (23 samples, 0.02%)</title><rect x="63.8914%" y="853" width="0.0153%" height="15" fill="rgb(230,104,19)" fg:x="96002" fg:w="23"/><text x="64.1414%" y="863.50"></text></g><g><title>do_user_addr_fault (23 samples, 0.02%)</title><rect x="63.8914%" y="837" width="0.0153%" height="15" fill="rgb(230,181,4)" fg:x="96002" fg:w="23"/><text x="64.1414%" y="847.50"></text></g><g><title>handle_mm_fault (22 samples, 0.01%)</title><rect x="63.8921%" y="821" width="0.0146%" height="15" fill="rgb(216,219,49)" fg:x="96003" fg:w="22"/><text x="64.1421%" y="831.50"></text></g><g><title>asm_exc_page_fault (24 samples, 0.02%)</title><rect x="63.8914%" y="869" width="0.0160%" height="15" fill="rgb(254,144,0)" fg:x="96002" fg:w="24"/><text x="64.1414%" y="879.50"></text></g><g><title>elf_machine_rela (158 samples, 0.11%)</title><rect x="63.8043%" y="885" width="0.1052%" height="15" fill="rgb(205,209,38)" fg:x="95871" fg:w="158"/><text x="64.0543%" y="895.50"></text></g><g><title>elf_dynamic_do_Rela (176 samples, 0.12%)</title><rect x="63.7976%" y="901" width="0.1171%" height="15" fill="rgb(240,21,42)" fg:x="95861" fg:w="176"/><text x="64.0476%" y="911.50"></text></g><g><title>_dl_relocate_object (182 samples, 0.12%)</title><rect x="63.7943%" y="917" width="0.1211%" height="15" fill="rgb(241,132,3)" fg:x="95856" fg:w="182"/><text x="64.0443%" y="927.50"></text></g><g><title>[ld-2.31.so] (297 samples, 0.20%)</title><rect x="63.7217%" y="933" width="0.1977%" height="15" fill="rgb(225,14,2)" fg:x="95747" fg:w="297"/><text x="63.9717%" y="943.50"></text></g><g><title>_dl_start (299 samples, 0.20%)</title><rect x="63.7217%" y="981" width="0.1990%" height="15" fill="rgb(210,141,35)" fg:x="95747" fg:w="299"/><text x="63.9717%" y="991.50"></text></g><g><title>_dl_start_final (299 samples, 0.20%)</title><rect x="63.7217%" y="965" width="0.1990%" height="15" fill="rgb(251,14,44)" fg:x="95747" fg:w="299"/><text x="63.9717%" y="975.50"></text></g><g><title>_dl_sysdep_start (299 samples, 0.20%)</title><rect x="63.7217%" y="949" width="0.1990%" height="15" fill="rgb(247,48,18)" fg:x="95747" fg:w="299"/><text x="63.9717%" y="959.50"></text></g><g><title>_start (301 samples, 0.20%)</title><rect x="63.7217%" y="997" width="0.2003%" height="15" fill="rgb(225,0,40)" fg:x="95747" fg:w="301"/><text x="63.9717%" y="1007.50"></text></g><g><title>asm_exc_page_fault (79 samples, 0.05%)</title><rect x="63.9221%" y="997" width="0.0526%" height="15" fill="rgb(221,31,33)" fg:x="96048" fg:w="79"/><text x="64.1721%" y="1007.50"></text></g><g><title>__x64_sys_execve (23 samples, 0.02%)</title><rect x="63.9826%" y="965" width="0.0153%" height="15" fill="rgb(237,42,40)" fg:x="96139" fg:w="23"/><text x="64.2326%" y="975.50"></text></g><g><title>do_execveat_common (23 samples, 0.02%)</title><rect x="63.9826%" y="949" width="0.0153%" height="15" fill="rgb(233,51,29)" fg:x="96139" fg:w="23"/><text x="64.2326%" y="959.50"></text></g><g><title>bprm_execve (23 samples, 0.02%)</title><rect x="63.9826%" y="933" width="0.0153%" height="15" fill="rgb(226,58,20)" fg:x="96139" fg:w="23"/><text x="64.2326%" y="943.50"></text></g><g><title>load_elf_binary (23 samples, 0.02%)</title><rect x="63.9826%" y="917" width="0.0153%" height="15" fill="rgb(208,98,7)" fg:x="96139" fg:w="23"/><text x="64.2326%" y="927.50"></text></g><g><title>page_remove_rmap (37 samples, 0.02%)</title><rect x="64.0399%" y="853" width="0.0246%" height="15" fill="rgb(228,143,44)" fg:x="96225" fg:w="37"/><text x="64.2899%" y="863.50"></text></g><g><title>tlb_flush_mmu (30 samples, 0.02%)</title><rect x="64.0645%" y="853" width="0.0200%" height="15" fill="rgb(246,55,38)" fg:x="96262" fg:w="30"/><text x="64.3145%" y="863.50"></text></g><g><title>release_pages (20 samples, 0.01%)</title><rect x="64.0711%" y="837" width="0.0133%" height="15" fill="rgb(247,87,16)" fg:x="96272" fg:w="20"/><text x="64.3211%" y="847.50"></text></g><g><title>unmap_page_range (113 samples, 0.08%)</title><rect x="64.0132%" y="869" width="0.0752%" height="15" fill="rgb(234,129,42)" fg:x="96185" fg:w="113"/><text x="64.2632%" y="879.50"></text></g><g><title>__x64_sys_exit_group (134 samples, 0.09%)</title><rect x="63.9999%" y="965" width="0.0892%" height="15" fill="rgb(220,82,16)" fg:x="96165" fg:w="134"/><text x="64.2499%" y="975.50"></text></g><g><title>do_group_exit (134 samples, 0.09%)</title><rect x="63.9999%" y="949" width="0.0892%" height="15" fill="rgb(211,88,4)" fg:x="96165" fg:w="134"/><text x="64.2499%" y="959.50"></text></g><g><title>do_exit (134 samples, 0.09%)</title><rect x="63.9999%" y="933" width="0.0892%" height="15" fill="rgb(248,151,21)" fg:x="96165" fg:w="134"/><text x="64.2499%" y="943.50"></text></g><g><title>mmput (128 samples, 0.09%)</title><rect x="64.0039%" y="917" width="0.0852%" height="15" fill="rgb(238,163,6)" fg:x="96171" fg:w="128"/><text x="64.2539%" y="927.50"></text></g><g><title>exit_mmap (128 samples, 0.09%)</title><rect x="64.0039%" y="901" width="0.0852%" height="15" fill="rgb(209,183,11)" fg:x="96171" fg:w="128"/><text x="64.2539%" y="911.50"></text></g><g><title>unmap_vmas (114 samples, 0.08%)</title><rect x="64.0132%" y="885" width="0.0759%" height="15" fill="rgb(219,37,20)" fg:x="96185" fg:w="114"/><text x="64.2632%" y="895.50"></text></g><g><title>do_syscall_64 (183 samples, 0.12%)</title><rect x="63.9826%" y="981" width="0.1218%" height="15" fill="rgb(210,158,4)" fg:x="96139" fg:w="183"/><text x="64.2326%" y="991.50"></text></g><g><title>page_remove_rmap (47 samples, 0.03%)</title><rect x="64.1417%" y="821" width="0.0313%" height="15" fill="rgb(221,167,53)" fg:x="96378" fg:w="47"/><text x="64.3917%" y="831.50"></text></g><g><title>tlb_flush_mmu (33 samples, 0.02%)</title><rect x="64.1730%" y="821" width="0.0220%" height="15" fill="rgb(237,151,45)" fg:x="96425" fg:w="33"/><text x="64.4230%" y="831.50"></text></g><g><title>release_pages (24 samples, 0.02%)</title><rect x="64.1789%" y="805" width="0.0160%" height="15" fill="rgb(231,39,3)" fg:x="96434" fg:w="24"/><text x="64.4289%" y="815.50"></text></g><g><title>mmput (138 samples, 0.09%)</title><rect x="64.1051%" y="885" width="0.0918%" height="15" fill="rgb(212,167,28)" fg:x="96323" fg:w="138"/><text x="64.3551%" y="895.50"></text></g><g><title>exit_mmap (138 samples, 0.09%)</title><rect x="64.1051%" y="869" width="0.0918%" height="15" fill="rgb(232,178,8)" fg:x="96323" fg:w="138"/><text x="64.3551%" y="879.50"></text></g><g><title>unmap_vmas (128 samples, 0.09%)</title><rect x="64.1117%" y="853" width="0.0852%" height="15" fill="rgb(225,151,20)" fg:x="96333" fg:w="128"/><text x="64.3617%" y="863.50"></text></g><g><title>unmap_page_range (128 samples, 0.09%)</title><rect x="64.1117%" y="837" width="0.0852%" height="15" fill="rgb(238,3,37)" fg:x="96333" fg:w="128"/><text x="64.3617%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (335 samples, 0.22%)</title><rect x="63.9753%" y="997" width="0.2229%" height="15" fill="rgb(251,147,42)" fg:x="96128" fg:w="335"/><text x="64.2253%" y="1007.50"></text></g><g><title>syscall_exit_to_user_mode (141 samples, 0.09%)</title><rect x="64.1044%" y="981" width="0.0938%" height="15" fill="rgb(208,173,10)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="991.50"></text></g><g><title>exit_to_user_mode_prepare (141 samples, 0.09%)</title><rect x="64.1044%" y="965" width="0.0938%" height="15" fill="rgb(246,225,4)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="975.50"></text></g><g><title>arch_do_signal (141 samples, 0.09%)</title><rect x="64.1044%" y="949" width="0.0938%" height="15" fill="rgb(248,102,6)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="959.50"></text></g><g><title>get_signal (141 samples, 0.09%)</title><rect x="64.1044%" y="933" width="0.0938%" height="15" fill="rgb(232,6,21)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="943.50"></text></g><g><title>do_group_exit (141 samples, 0.09%)</title><rect x="64.1044%" y="917" width="0.0938%" height="15" fill="rgb(221,179,22)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="927.50"></text></g><g><title>do_exit (141 samples, 0.09%)</title><rect x="64.1044%" y="901" width="0.0938%" height="15" fill="rgb(252,50,20)" fg:x="96322" fg:w="141"/><text x="64.3544%" y="911.50"></text></g><g><title>ld.lld (15,530 samples, 10.34%)</title><rect x="53.8813%" y="1013" width="10.3356%" height="15" fill="rgb(222,56,38)" fg:x="80961" fg:w="15530"/><text x="54.1313%" y="1023.50">ld.lld</text></g><g><title>[[heap]] (33 samples, 0.02%)</title><rect x="64.2169%" y="997" width="0.0220%" height="15" fill="rgb(206,193,29)" fg:x="96491" fg:w="33"/><text x="64.4669%" y="1007.50"></text></g><g><title>[bash] (21 samples, 0.01%)</title><rect x="64.2388%" y="981" width="0.0140%" height="15" fill="rgb(239,192,45)" fg:x="96524" fg:w="21"/><text x="64.4888%" y="991.50"></text></g><g><title>[[stack]] (26 samples, 0.02%)</title><rect x="64.2388%" y="997" width="0.0173%" height="15" fill="rgb(254,18,36)" fg:x="96524" fg:w="26"/><text x="64.4888%" y="1007.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="64.2608%" y="997" width="0.0126%" height="15" fill="rgb(221,127,11)" fg:x="96557" fg:w="19"/><text x="64.5108%" y="1007.50"></text></g><g><title>arch_fork (20 samples, 0.01%)</title><rect x="64.2908%" y="165" width="0.0133%" height="15" fill="rgb(234,146,35)" fg:x="96602" fg:w="20"/><text x="64.5408%" y="175.50"></text></g><g><title>ret_from_fork (20 samples, 0.01%)</title><rect x="64.2908%" y="149" width="0.0133%" height="15" fill="rgb(254,201,37)" fg:x="96602" fg:w="20"/><text x="64.5408%" y="159.50"></text></g><g><title>schedule_tail (20 samples, 0.01%)</title><rect x="64.2908%" y="133" width="0.0133%" height="15" fill="rgb(211,202,23)" fg:x="96602" fg:w="20"/><text x="64.5408%" y="143.50"></text></g><g><title>finish_task_switch (17 samples, 0.01%)</title><rect x="64.2927%" y="117" width="0.0113%" height="15" fill="rgb(237,91,2)" fg:x="96605" fg:w="17"/><text x="64.5427%" y="127.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="64.2927%" y="101" width="0.0113%" height="15" fill="rgb(226,228,36)" fg:x="96605" fg:w="17"/><text x="64.5427%" y="111.50"></text></g><g><title>[bash] (22 samples, 0.01%)</title><rect x="64.2908%" y="213" width="0.0146%" height="15" fill="rgb(213,63,50)" fg:x="96602" fg:w="22"/><text x="64.5408%" y="223.50"></text></g><g><title>make_child (22 samples, 0.01%)</title><rect x="64.2908%" y="197" width="0.0146%" height="15" fill="rgb(235,194,19)" fg:x="96602" fg:w="22"/><text x="64.5408%" y="207.50"></text></g><g><title>__libc_fork (22 samples, 0.01%)</title><rect x="64.2908%" y="181" width="0.0146%" height="15" fill="rgb(207,204,18)" fg:x="96602" fg:w="22"/><text x="64.5408%" y="191.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="64.2894%" y="869" width="0.0166%" height="15" fill="rgb(248,8,7)" fg:x="96600" fg:w="25"/><text x="64.5394%" y="879.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.2894%" y="853" width="0.0166%" height="15" fill="rgb(223,145,47)" fg:x="96600" fg:w="25"/><text x="64.5394%" y="863.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.2894%" y="837" width="0.0166%" height="15" fill="rgb(228,84,11)" fg:x="96600" fg:w="25"/><text x="64.5394%" y="847.50"></text></g><g><title>execute_command_internal (24 samples, 0.02%)</title><rect x="64.2901%" y="821" width="0.0160%" height="15" fill="rgb(218,76,45)" fg:x="96601" fg:w="24"/><text x="64.5401%" y="831.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="805" width="0.0153%" height="15" fill="rgb(223,80,15)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="815.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="789" width="0.0153%" height="15" fill="rgb(219,218,33)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="799.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="773" width="0.0153%" height="15" fill="rgb(208,51,11)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="783.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="757" width="0.0153%" height="15" fill="rgb(229,165,39)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="767.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="741" width="0.0153%" height="15" fill="rgb(241,100,24)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="751.50"></text></g><g><title>evalstring (23 samples, 0.02%)</title><rect x="64.2908%" y="725" width="0.0153%" height="15" fill="rgb(228,14,23)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="735.50"></text></g><g><title>parse_and_execute (23 samples, 0.02%)</title><rect x="64.2908%" y="709" width="0.0153%" height="15" fill="rgb(247,116,52)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="719.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="693" width="0.0153%" height="15" fill="rgb(216,149,33)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="703.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="677" width="0.0153%" height="15" fill="rgb(238,142,29)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="687.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="661" width="0.0153%" height="15" fill="rgb(224,83,40)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="671.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="645" width="0.0153%" height="15" fill="rgb(234,165,11)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="655.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="629" width="0.0153%" height="15" fill="rgb(215,96,23)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="639.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="613" width="0.0153%" height="15" fill="rgb(233,179,26)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="623.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="597" width="0.0153%" height="15" fill="rgb(225,129,33)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="607.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="581" width="0.0153%" height="15" fill="rgb(237,49,13)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="591.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="565" width="0.0153%" height="15" fill="rgb(211,3,31)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="575.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="549" width="0.0153%" height="15" fill="rgb(216,152,19)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="559.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="533" width="0.0153%" height="15" fill="rgb(251,121,35)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="543.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="517" width="0.0153%" height="15" fill="rgb(210,217,47)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="527.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="501" width="0.0153%" height="15" fill="rgb(244,116,22)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="511.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="485" width="0.0153%" height="15" fill="rgb(228,17,21)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="495.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="469" width="0.0153%" height="15" fill="rgb(240,149,34)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="479.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="453" width="0.0153%" height="15" fill="rgb(208,125,47)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="463.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="437" width="0.0153%" height="15" fill="rgb(249,186,39)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="447.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="421" width="0.0153%" height="15" fill="rgb(240,220,33)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="431.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="405" width="0.0153%" height="15" fill="rgb(243,110,23)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="415.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="389" width="0.0153%" height="15" fill="rgb(219,163,46)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="399.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="373" width="0.0153%" height="15" fill="rgb(216,126,30)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="383.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="357" width="0.0153%" height="15" fill="rgb(208,139,11)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="367.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="341" width="0.0153%" height="15" fill="rgb(213,118,36)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="351.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="325" width="0.0153%" height="15" fill="rgb(226,43,17)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="335.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="309" width="0.0153%" height="15" fill="rgb(254,217,4)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="319.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="293" width="0.0153%" height="15" fill="rgb(210,134,47)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="303.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="64.2908%" y="277" width="0.0153%" height="15" fill="rgb(237,24,49)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="287.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="261" width="0.0153%" height="15" fill="rgb(251,39,46)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="271.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="64.2908%" y="245" width="0.0153%" height="15" fill="rgb(251,220,3)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="255.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="64.2908%" y="229" width="0.0153%" height="15" fill="rgb(228,105,12)" fg:x="96602" fg:w="23"/><text x="64.5408%" y="239.50"></text></g><g><title>execute_command (28 samples, 0.02%)</title><rect x="64.2894%" y="917" width="0.0186%" height="15" fill="rgb(215,196,1)" fg:x="96600" fg:w="28"/><text x="64.5394%" y="927.50"></text></g><g><title>execute_command_internal (28 samples, 0.02%)</title><rect x="64.2894%" y="901" width="0.0186%" height="15" fill="rgb(214,33,39)" fg:x="96600" fg:w="28"/><text x="64.5394%" y="911.50"></text></g><g><title>[bash] (28 samples, 0.02%)</title><rect x="64.2894%" y="885" width="0.0186%" height="15" fill="rgb(220,19,52)" fg:x="96600" fg:w="28"/><text x="64.5394%" y="895.50"></text></g><g><title>[bash] (52 samples, 0.03%)</title><rect x="64.2741%" y="981" width="0.0346%" height="15" fill="rgb(221,78,38)" fg:x="96577" fg:w="52"/><text x="64.5241%" y="991.50"></text></g><g><title>execute_command_internal (33 samples, 0.02%)</title><rect x="64.2868%" y="965" width="0.0220%" height="15" fill="rgb(253,30,16)" fg:x="96596" fg:w="33"/><text x="64.5368%" y="975.50"></text></g><g><title>execute_command_internal (29 samples, 0.02%)</title><rect x="64.2894%" y="949" width="0.0193%" height="15" fill="rgb(242,65,0)" fg:x="96600" fg:w="29"/><text x="64.5394%" y="959.50"></text></g><g><title>[bash] (29 samples, 0.02%)</title><rect x="64.2894%" y="933" width="0.0193%" height="15" fill="rgb(235,201,12)" fg:x="96600" fg:w="29"/><text x="64.5394%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="64.3467%" y="197" width="0.0260%" height="15" fill="rgb(233,161,9)" fg:x="96686" fg:w="39"/><text x="64.5967%" y="207.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.03%)</title><rect x="64.3467%" y="181" width="0.0260%" height="15" fill="rgb(241,207,41)" fg:x="96686" fg:w="39"/><text x="64.5967%" y="191.50"></text></g><g><title>native_write_msr (39 samples, 0.03%)</title><rect x="64.3467%" y="165" width="0.0260%" height="15" fill="rgb(212,69,46)" fg:x="96686" fg:w="39"/><text x="64.5967%" y="175.50"></text></g><g><title>__libc_fork (56 samples, 0.04%)</title><rect x="64.3360%" y="277" width="0.0373%" height="15" fill="rgb(239,69,45)" fg:x="96670" fg:w="56"/><text x="64.5860%" y="287.50"></text></g><g><title>arch_fork (55 samples, 0.04%)</title><rect x="64.3367%" y="261" width="0.0366%" height="15" fill="rgb(242,117,48)" fg:x="96671" fg:w="55"/><text x="64.5867%" y="271.50"></text></g><g><title>ret_from_fork (48 samples, 0.03%)</title><rect x="64.3413%" y="245" width="0.0319%" height="15" fill="rgb(228,41,36)" fg:x="96678" fg:w="48"/><text x="64.5913%" y="255.50"></text></g><g><title>schedule_tail (48 samples, 0.03%)</title><rect x="64.3413%" y="229" width="0.0319%" height="15" fill="rgb(212,3,32)" fg:x="96678" fg:w="48"/><text x="64.5913%" y="239.50"></text></g><g><title>finish_task_switch (43 samples, 0.03%)</title><rect x="64.3447%" y="213" width="0.0286%" height="15" fill="rgb(233,41,49)" fg:x="96683" fg:w="43"/><text x="64.5947%" y="223.50"></text></g><g><title>make_child (60 samples, 0.04%)</title><rect x="64.3347%" y="293" width="0.0399%" height="15" fill="rgb(252,170,49)" fg:x="96668" fg:w="60"/><text x="64.5847%" y="303.50"></text></g><g><title>execute_command (65 samples, 0.04%)</title><rect x="64.3327%" y="949" width="0.0433%" height="15" fill="rgb(229,53,26)" fg:x="96665" fg:w="65"/><text x="64.5827%" y="959.50"></text></g><g><title>execute_command_internal (65 samples, 0.04%)</title><rect x="64.3327%" y="933" width="0.0433%" height="15" fill="rgb(217,157,12)" fg:x="96665" fg:w="65"/><text x="64.5827%" y="943.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="917" width="0.0413%" height="15" fill="rgb(227,17,9)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="927.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="901" width="0.0413%" height="15" fill="rgb(218,84,12)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="911.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="885" width="0.0413%" height="15" fill="rgb(212,79,24)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="895.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="869" width="0.0413%" height="15" fill="rgb(217,222,37)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="879.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="853" width="0.0413%" height="15" fill="rgb(246,208,8)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="863.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="837" width="0.0413%" height="15" fill="rgb(244,133,10)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="847.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="821" width="0.0413%" height="15" fill="rgb(209,219,41)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="831.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="64.3347%" y="805" width="0.0413%" height="15" fill="rgb(253,175,45)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="815.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="789" width="0.0413%" height="15" fill="rgb(235,100,37)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="799.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="773" width="0.0413%" height="15" fill="rgb(225,87,19)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="783.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="757" width="0.0413%" height="15" fill="rgb(217,152,17)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="767.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="741" width="0.0413%" height="15" fill="rgb(235,72,13)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="751.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="725" width="0.0413%" height="15" fill="rgb(233,140,18)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="735.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="709" width="0.0413%" height="15" fill="rgb(207,212,28)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="719.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="693" width="0.0413%" height="15" fill="rgb(220,130,25)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="703.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="677" width="0.0413%" height="15" fill="rgb(205,55,34)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="687.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="661" width="0.0413%" height="15" fill="rgb(237,54,35)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="671.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="645" width="0.0413%" height="15" fill="rgb(208,67,23)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="655.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="629" width="0.0413%" height="15" fill="rgb(206,207,50)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="639.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="613" width="0.0413%" height="15" fill="rgb(213,211,42)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="623.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="64.3347%" y="597" width="0.0413%" height="15" fill="rgb(252,197,50)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="607.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="581" width="0.0413%" height="15" fill="rgb(251,211,41)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="591.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="565" width="0.0413%" height="15" fill="rgb(229,211,5)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="575.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="64.3347%" y="549" width="0.0413%" height="15" fill="rgb(239,36,31)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="559.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="533" width="0.0413%" height="15" fill="rgb(248,67,31)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="543.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="517" width="0.0413%" height="15" fill="rgb(249,55,44)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="527.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="64.3347%" y="501" width="0.0413%" height="15" fill="rgb(216,82,12)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="511.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="485" width="0.0413%" height="15" fill="rgb(242,174,1)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="495.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="469" width="0.0413%" height="15" fill="rgb(208,120,29)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="479.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="64.3347%" y="453" width="0.0413%" height="15" fill="rgb(221,105,43)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="463.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="437" width="0.0413%" height="15" fill="rgb(234,124,22)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="447.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="421" width="0.0413%" height="15" fill="rgb(212,23,30)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="431.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="64.3347%" y="405" width="0.0413%" height="15" fill="rgb(219,122,53)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="415.50"></text></g><g><title>expand_words (62 samples, 0.04%)</title><rect x="64.3347%" y="389" width="0.0413%" height="15" fill="rgb(248,84,24)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="399.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="373" width="0.0413%" height="15" fill="rgb(245,115,18)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="383.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="357" width="0.0413%" height="15" fill="rgb(227,176,51)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="367.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="341" width="0.0413%" height="15" fill="rgb(229,63,42)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="351.50"></text></g><g><title>[bash] (62 samples, 0.04%)</title><rect x="64.3347%" y="325" width="0.0413%" height="15" fill="rgb(247,202,24)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="335.50"></text></g><g><title>command_substitute (62 samples, 0.04%)</title><rect x="64.3347%" y="309" width="0.0413%" height="15" fill="rgb(244,173,20)" fg:x="96668" fg:w="62"/><text x="64.5847%" y="319.50"></text></g><g><title>sched_exec (18 samples, 0.01%)</title><rect x="64.3946%" y="181" width="0.0120%" height="15" fill="rgb(242,81,47)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="191.50"></text></g><g><title>stop_one_cpu (18 samples, 0.01%)</title><rect x="64.3946%" y="165" width="0.0120%" height="15" fill="rgb(231,185,54)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="175.50"></text></g><g><title>_cond_resched (18 samples, 0.01%)</title><rect x="64.3946%" y="149" width="0.0120%" height="15" fill="rgb(243,55,32)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="159.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="64.3946%" y="133" width="0.0120%" height="15" fill="rgb(208,167,19)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="143.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="64.3946%" y="117" width="0.0120%" height="15" fill="rgb(231,72,35)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="127.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="64.3946%" y="101" width="0.0120%" height="15" fill="rgb(250,173,51)" fg:x="96758" fg:w="18"/><text x="64.6446%" y="111.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (16 samples, 0.01%)</title><rect x="64.3959%" y="85" width="0.0106%" height="15" fill="rgb(209,5,22)" fg:x="96760" fg:w="16"/><text x="64.6459%" y="95.50"></text></g><g><title>bprm_execve (25 samples, 0.02%)</title><rect x="64.3926%" y="197" width="0.0166%" height="15" fill="rgb(250,174,19)" fg:x="96755" fg:w="25"/><text x="64.6426%" y="207.50"></text></g><g><title>shell_execve (28 samples, 0.02%)</title><rect x="64.3919%" y="293" width="0.0186%" height="15" fill="rgb(217,3,49)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="303.50"></text></g><g><title>__GI_execve (28 samples, 0.02%)</title><rect x="64.3919%" y="277" width="0.0186%" height="15" fill="rgb(218,225,5)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="287.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="64.3919%" y="261" width="0.0186%" height="15" fill="rgb(236,89,11)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="271.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="64.3919%" y="245" width="0.0186%" height="15" fill="rgb(206,33,28)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="255.50"></text></g><g><title>__x64_sys_execve (28 samples, 0.02%)</title><rect x="64.3919%" y="229" width="0.0186%" height="15" fill="rgb(241,56,42)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="239.50"></text></g><g><title>do_execveat_common (28 samples, 0.02%)</title><rect x="64.3919%" y="213" width="0.0186%" height="15" fill="rgb(222,44,11)" fg:x="96754" fg:w="28"/><text x="64.6419%" y="223.50"></text></g><g><title>[bash] (41 samples, 0.03%)</title><rect x="64.3853%" y="309" width="0.0273%" height="15" fill="rgb(234,111,20)" fg:x="96744" fg:w="41"/><text x="64.6353%" y="319.50"></text></g><g><title>[bash] (126 samples, 0.08%)</title><rect x="64.3314%" y="965" width="0.0839%" height="15" fill="rgb(237,77,6)" fg:x="96663" fg:w="126"/><text x="64.5814%" y="975.50"></text></g><g><title>execute_command_internal (59 samples, 0.04%)</title><rect x="64.3759%" y="949" width="0.0393%" height="15" fill="rgb(235,111,23)" fg:x="96730" fg:w="59"/><text x="64.6259%" y="959.50"></text></g><g><title>execute_command_internal (51 samples, 0.03%)</title><rect x="64.3813%" y="933" width="0.0339%" height="15" fill="rgb(251,135,29)" fg:x="96738" fg:w="51"/><text x="64.6313%" y="943.50"></text></g><g><title>[bash] (51 samples, 0.03%)</title><rect x="64.3813%" y="917" width="0.0339%" height="15" fill="rgb(217,57,1)" fg:x="96738" fg:w="51"/><text x="64.6313%" y="927.50"></text></g><g><title>execute_command (51 samples, 0.03%)</title><rect x="64.3813%" y="901" width="0.0339%" height="15" fill="rgb(249,119,31)" fg:x="96738" fg:w="51"/><text x="64.6313%" y="911.50"></text></g><g><title>execute_command_internal (51 samples, 0.03%)</title><rect x="64.3813%" y="885" width="0.0339%" height="15" fill="rgb(233,164,33)" fg:x="96738" fg:w="51"/><text x="64.6313%" y="895.50"></text></g><g><title>[bash] (51 samples, 0.03%)</title><rect x="64.3813%" y="869" width="0.0339%" height="15" fill="rgb(250,217,43)" fg:x="96738" fg:w="51"/><text x="64.6313%" y="879.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="853" width="0.0299%" height="15" fill="rgb(232,154,50)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="863.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="837" width="0.0299%" height="15" fill="rgb(227,190,8)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="847.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="821" width="0.0299%" height="15" fill="rgb(209,217,32)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="831.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="805" width="0.0299%" height="15" fill="rgb(243,203,50)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="815.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="789" width="0.0299%" height="15" fill="rgb(232,152,27)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="799.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="773" width="0.0299%" height="15" fill="rgb(240,34,29)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="783.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="757" width="0.0299%" height="15" fill="rgb(215,185,52)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="767.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="741" width="0.0299%" height="15" fill="rgb(240,89,49)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="751.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="725" width="0.0299%" height="15" fill="rgb(225,12,52)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="735.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="709" width="0.0299%" height="15" fill="rgb(239,128,45)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="719.50"></text></g><g><title>execute_command (45 samples, 0.03%)</title><rect x="64.3853%" y="693" width="0.0299%" height="15" fill="rgb(211,78,47)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="703.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="677" width="0.0299%" height="15" fill="rgb(232,31,21)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="687.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="661" width="0.0299%" height="15" fill="rgb(222,168,14)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="671.50"></text></g><g><title>execute_command (45 samples, 0.03%)</title><rect x="64.3853%" y="645" width="0.0299%" height="15" fill="rgb(209,128,24)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="655.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="629" width="0.0299%" height="15" fill="rgb(249,35,13)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="639.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="613" width="0.0299%" height="15" fill="rgb(218,7,2)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="623.50"></text></g><g><title>execute_command (45 samples, 0.03%)</title><rect x="64.3853%" y="597" width="0.0299%" height="15" fill="rgb(238,107,27)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="607.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="581" width="0.0299%" height="15" fill="rgb(217,88,38)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="591.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="565" width="0.0299%" height="15" fill="rgb(230,207,0)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="575.50"></text></g><g><title>execute_command (45 samples, 0.03%)</title><rect x="64.3853%" y="549" width="0.0299%" height="15" fill="rgb(249,64,54)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="559.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="533" width="0.0299%" height="15" fill="rgb(231,7,11)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="543.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="517" width="0.0299%" height="15" fill="rgb(205,149,21)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="527.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="501" width="0.0299%" height="15" fill="rgb(215,126,34)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="511.50"></text></g><g><title>expand_words (45 samples, 0.03%)</title><rect x="64.3853%" y="485" width="0.0299%" height="15" fill="rgb(241,132,45)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="495.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="469" width="0.0299%" height="15" fill="rgb(252,69,32)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="479.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="453" width="0.0299%" height="15" fill="rgb(232,204,19)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="463.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="437" width="0.0299%" height="15" fill="rgb(249,15,47)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="447.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="421" width="0.0299%" height="15" fill="rgb(209,227,23)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="431.50"></text></g><g><title>command_substitute (45 samples, 0.03%)</title><rect x="64.3853%" y="405" width="0.0299%" height="15" fill="rgb(248,92,24)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="415.50"></text></g><g><title>parse_and_execute (45 samples, 0.03%)</title><rect x="64.3853%" y="389" width="0.0299%" height="15" fill="rgb(247,59,2)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="399.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="373" width="0.0299%" height="15" fill="rgb(221,30,5)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="383.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="357" width="0.0299%" height="15" fill="rgb(208,108,53)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="367.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="64.3853%" y="341" width="0.0299%" height="15" fill="rgb(211,183,26)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="351.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="64.3853%" y="325" width="0.0299%" height="15" fill="rgb(232,132,4)" fg:x="96744" fg:w="45"/><text x="64.6353%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.04%)</title><rect x="64.4392%" y="245" width="0.0446%" height="15" fill="rgb(253,128,37)" fg:x="96825" fg:w="67"/><text x="64.6892%" y="255.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.04%)</title><rect x="64.4398%" y="229" width="0.0439%" height="15" fill="rgb(221,58,24)" fg:x="96826" fg:w="66"/><text x="64.6898%" y="239.50"></text></g><g><title>native_write_msr (66 samples, 0.04%)</title><rect x="64.4398%" y="213" width="0.0439%" height="15" fill="rgb(230,54,45)" fg:x="96826" fg:w="66"/><text x="64.6898%" y="223.50"></text></g><g><title>arch_fork (97 samples, 0.06%)</title><rect x="64.4205%" y="309" width="0.0646%" height="15" fill="rgb(254,21,18)" fg:x="96797" fg:w="97"/><text x="64.6705%" y="319.50"></text></g><g><title>ret_from_fork (83 samples, 0.06%)</title><rect x="64.4298%" y="293" width="0.0552%" height="15" fill="rgb(221,108,0)" fg:x="96811" fg:w="83"/><text x="64.6798%" y="303.50"></text></g><g><title>schedule_tail (83 samples, 0.06%)</title><rect x="64.4298%" y="277" width="0.0552%" height="15" fill="rgb(206,95,1)" fg:x="96811" fg:w="83"/><text x="64.6798%" y="287.50"></text></g><g><title>finish_task_switch (75 samples, 0.05%)</title><rect x="64.4352%" y="261" width="0.0499%" height="15" fill="rgb(237,52,5)" fg:x="96819" fg:w="75"/><text x="64.6852%" y="271.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="869" width="0.0705%" height="15" fill="rgb(218,150,34)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="879.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="853" width="0.0705%" height="15" fill="rgb(235,194,28)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="863.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="837" width="0.0705%" height="15" fill="rgb(245,92,18)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="847.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="821" width="0.0705%" height="15" fill="rgb(253,203,53)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="831.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="805" width="0.0705%" height="15" fill="rgb(249,185,47)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="815.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="789" width="0.0705%" height="15" fill="rgb(252,194,52)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="799.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="773" width="0.0705%" height="15" fill="rgb(210,53,36)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="783.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="757" width="0.0705%" height="15" fill="rgb(237,37,25)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="767.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="741" width="0.0705%" height="15" fill="rgb(242,116,27)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="751.50"></text></g><g><title>execute_command (106 samples, 0.07%)</title><rect x="64.4172%" y="725" width="0.0705%" height="15" fill="rgb(213,185,26)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="735.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="709" width="0.0705%" height="15" fill="rgb(225,204,8)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="719.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="693" width="0.0705%" height="15" fill="rgb(254,111,37)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="703.50"></text></g><g><title>execute_command (106 samples, 0.07%)</title><rect x="64.4172%" y="677" width="0.0705%" height="15" fill="rgb(242,35,9)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="687.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="661" width="0.0705%" height="15" fill="rgb(232,138,49)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="671.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="645" width="0.0705%" height="15" fill="rgb(247,56,4)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="655.50"></text></g><g><title>execute_command (106 samples, 0.07%)</title><rect x="64.4172%" y="629" width="0.0705%" height="15" fill="rgb(226,179,17)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="639.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="613" width="0.0705%" height="15" fill="rgb(216,163,45)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="623.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="597" width="0.0705%" height="15" fill="rgb(211,157,3)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="607.50"></text></g><g><title>execute_command (106 samples, 0.07%)</title><rect x="64.4172%" y="581" width="0.0705%" height="15" fill="rgb(234,44,20)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="591.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="565" width="0.0705%" height="15" fill="rgb(254,138,23)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="575.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="549" width="0.0705%" height="15" fill="rgb(206,119,39)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="559.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="533" width="0.0705%" height="15" fill="rgb(231,105,52)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="543.50"></text></g><g><title>expand_words (106 samples, 0.07%)</title><rect x="64.4172%" y="517" width="0.0705%" height="15" fill="rgb(250,20,5)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="527.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="501" width="0.0705%" height="15" fill="rgb(215,198,30)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="511.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="485" width="0.0705%" height="15" fill="rgb(246,142,8)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="495.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="469" width="0.0705%" height="15" fill="rgb(243,26,38)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="479.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="453" width="0.0705%" height="15" fill="rgb(205,133,28)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="463.50"></text></g><g><title>command_substitute (106 samples, 0.07%)</title><rect x="64.4172%" y="437" width="0.0705%" height="15" fill="rgb(212,34,0)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="447.50"></text></g><g><title>parse_and_execute (106 samples, 0.07%)</title><rect x="64.4172%" y="421" width="0.0705%" height="15" fill="rgb(251,226,22)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="431.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="405" width="0.0705%" height="15" fill="rgb(252,119,9)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="415.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="389" width="0.0705%" height="15" fill="rgb(213,150,50)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="399.50"></text></g><g><title>[bash] (106 samples, 0.07%)</title><rect x="64.4172%" y="373" width="0.0705%" height="15" fill="rgb(212,24,39)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="383.50"></text></g><g><title>execute_command_internal (106 samples, 0.07%)</title><rect x="64.4172%" y="357" width="0.0705%" height="15" fill="rgb(213,46,39)" fg:x="96792" fg:w="106"/><text x="64.6672%" y="367.50"></text></g><g><title>make_child (101 samples, 0.07%)</title><rect x="64.4205%" y="341" width="0.0672%" height="15" fill="rgb(239,106,12)" fg:x="96797" fg:w="101"/><text x="64.6705%" y="351.50"></text></g><g><title>__libc_fork (101 samples, 0.07%)</title><rect x="64.4205%" y="325" width="0.0672%" height="15" fill="rgb(249,229,21)" fg:x="96797" fg:w="101"/><text x="64.6705%" y="335.50"></text></g><g><title>execute_command (110 samples, 0.07%)</title><rect x="64.4152%" y="933" width="0.0732%" height="15" fill="rgb(212,158,3)" fg:x="96789" fg:w="110"/><text x="64.6652%" y="943.50"></text></g><g><title>execute_command_internal (110 samples, 0.07%)</title><rect x="64.4152%" y="917" width="0.0732%" height="15" fill="rgb(253,26,48)" fg:x="96789" fg:w="110"/><text x="64.6652%" y="927.50"></text></g><g><title>[bash] (110 samples, 0.07%)</title><rect x="64.4152%" y="901" width="0.0732%" height="15" fill="rgb(238,178,20)" fg:x="96789" fg:w="110"/><text x="64.6652%" y="911.50"></text></g><g><title>execute_command_internal (107 samples, 0.07%)</title><rect x="64.4172%" y="885" width="0.0712%" height="15" fill="rgb(208,86,15)" fg:x="96792" fg:w="107"/><text x="64.6672%" y="895.50"></text></g><g><title>execute_command_internal (237 samples, 0.16%)</title><rect x="64.3314%" y="981" width="0.1577%" height="15" fill="rgb(239,42,53)" fg:x="96663" fg:w="237"/><text x="64.5814%" y="991.50"></text></g><g><title>execute_command_internal (111 samples, 0.07%)</title><rect x="64.4152%" y="965" width="0.0739%" height="15" fill="rgb(245,226,8)" fg:x="96789" fg:w="111"/><text x="64.6652%" y="975.50"></text></g><g><title>[bash] (111 samples, 0.07%)</title><rect x="64.4152%" y="949" width="0.0739%" height="15" fill="rgb(216,176,32)" fg:x="96789" fg:w="111"/><text x="64.6652%" y="959.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="64.4931%" y="197" width="0.0180%" height="15" fill="rgb(231,186,21)" fg:x="96906" fg:w="27"/><text x="64.7431%" y="207.50"></text></g><g><title>ksys_read (27 samples, 0.02%)</title><rect x="64.4931%" y="181" width="0.0180%" height="15" fill="rgb(205,95,49)" fg:x="96906" fg:w="27"/><text x="64.7431%" y="191.50"></text></g><g><title>vfs_read (27 samples, 0.02%)</title><rect x="64.4931%" y="165" width="0.0180%" height="15" fill="rgb(217,145,8)" fg:x="96906" fg:w="27"/><text x="64.7431%" y="175.50"></text></g><g><title>new_sync_read (27 samples, 0.02%)</title><rect x="64.4931%" y="149" width="0.0180%" height="15" fill="rgb(239,144,48)" fg:x="96906" fg:w="27"/><text x="64.7431%" y="159.50"></text></g><g><title>pipe_read (27 samples, 0.02%)</title><rect x="64.4931%" y="133" width="0.0180%" height="15" fill="rgb(214,189,23)" fg:x="96906" fg:w="27"/><text x="64.7431%" y="143.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="64.4937%" y="117" width="0.0173%" height="15" fill="rgb(229,157,17)" fg:x="96907" fg:w="26"/><text x="64.7437%" y="127.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="64.4937%" y="101" width="0.0173%" height="15" fill="rgb(230,5,48)" fg:x="96907" fg:w="26"/><text x="64.7437%" y="111.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="64.4937%" y="85" width="0.0173%" height="15" fill="rgb(224,156,48)" fg:x="96907" fg:w="26"/><text x="64.7437%" y="95.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="64.4944%" y="69" width="0.0166%" height="15" fill="rgb(223,14,29)" fg:x="96908" fg:w="25"/><text x="64.7444%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="64.4951%" y="53" width="0.0160%" height="15" fill="rgb(229,96,36)" fg:x="96909" fg:w="24"/><text x="64.7451%" y="63.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="64.4951%" y="37" width="0.0160%" height="15" fill="rgb(231,102,53)" fg:x="96909" fg:w="24"/><text x="64.7451%" y="47.50"></text></g><g><title>main (32 samples, 0.02%)</title><rect x="64.4904%" y="981" width="0.0213%" height="15" fill="rgb(210,77,38)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="991.50"></text></g><g><title>reader_loop (32 samples, 0.02%)</title><rect x="64.4904%" y="965" width="0.0213%" height="15" fill="rgb(235,131,6)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="975.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="949" width="0.0213%" height="15" fill="rgb(252,55,38)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="959.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="933" width="0.0213%" height="15" fill="rgb(246,38,14)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="943.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="917" width="0.0213%" height="15" fill="rgb(242,27,5)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="927.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="901" width="0.0213%" height="15" fill="rgb(228,65,35)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="911.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="885" width="0.0213%" height="15" fill="rgb(245,93,11)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="895.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="869" width="0.0213%" height="15" fill="rgb(213,1,31)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="879.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="853" width="0.0213%" height="15" fill="rgb(237,205,14)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="863.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="837" width="0.0213%" height="15" fill="rgb(232,118,45)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="847.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="821" width="0.0213%" height="15" fill="rgb(218,5,6)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="831.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="805" width="0.0213%" height="15" fill="rgb(251,87,51)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="815.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="789" width="0.0213%" height="15" fill="rgb(207,225,20)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="799.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="773" width="0.0213%" height="15" fill="rgb(222,78,54)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="783.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="757" width="0.0213%" height="15" fill="rgb(232,85,16)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="767.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="741" width="0.0213%" height="15" fill="rgb(244,25,33)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="751.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="725" width="0.0213%" height="15" fill="rgb(233,24,36)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="735.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="709" width="0.0213%" height="15" fill="rgb(253,49,54)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="719.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="693" width="0.0213%" height="15" fill="rgb(245,12,22)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="703.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="677" width="0.0213%" height="15" fill="rgb(253,141,28)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="687.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="661" width="0.0213%" height="15" fill="rgb(225,207,27)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="671.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="645" width="0.0213%" height="15" fill="rgb(220,84,2)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="655.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="629" width="0.0213%" height="15" fill="rgb(224,37,37)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="639.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="613" width="0.0213%" height="15" fill="rgb(220,143,18)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="623.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="597" width="0.0213%" height="15" fill="rgb(210,88,33)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="607.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="581" width="0.0213%" height="15" fill="rgb(219,87,51)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="591.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="565" width="0.0213%" height="15" fill="rgb(211,7,35)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="575.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="549" width="0.0213%" height="15" fill="rgb(232,77,2)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="559.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="533" width="0.0213%" height="15" fill="rgb(249,94,25)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="543.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="517" width="0.0213%" height="15" fill="rgb(215,112,2)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="527.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="501" width="0.0213%" height="15" fill="rgb(226,115,48)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="511.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="485" width="0.0213%" height="15" fill="rgb(249,196,10)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="495.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="469" width="0.0213%" height="15" fill="rgb(237,109,14)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="479.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="453" width="0.0213%" height="15" fill="rgb(217,103,53)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="463.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="437" width="0.0213%" height="15" fill="rgb(244,137,9)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="447.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="421" width="0.0213%" height="15" fill="rgb(227,201,3)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="431.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.4904%" y="405" width="0.0213%" height="15" fill="rgb(243,94,6)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="415.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="389" width="0.0213%" height="15" fill="rgb(235,118,5)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="399.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="373" width="0.0213%" height="15" fill="rgb(247,10,30)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="383.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.4904%" y="357" width="0.0213%" height="15" fill="rgb(205,26,28)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="367.50"></text></g><g><title>expand_words (32 samples, 0.02%)</title><rect x="64.4904%" y="341" width="0.0213%" height="15" fill="rgb(206,99,35)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="351.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="325" width="0.0213%" height="15" fill="rgb(238,130,40)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="335.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="309" width="0.0213%" height="15" fill="rgb(224,126,31)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="319.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="293" width="0.0213%" height="15" fill="rgb(254,105,17)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="303.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.4904%" y="277" width="0.0213%" height="15" fill="rgb(216,87,36)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="287.50"></text></g><g><title>command_substitute (32 samples, 0.02%)</title><rect x="64.4904%" y="261" width="0.0213%" height="15" fill="rgb(240,21,12)" fg:x="96902" fg:w="32"/><text x="64.7404%" y="271.50"></text></g><g><title>zread (28 samples, 0.02%)</title><rect x="64.4931%" y="245" width="0.0186%" height="15" fill="rgb(245,192,34)" fg:x="96906" fg:w="28"/><text x="64.7431%" y="255.50"></text></g><g><title>__GI___libc_read (28 samples, 0.02%)</title><rect x="64.4931%" y="229" width="0.0186%" height="15" fill="rgb(226,100,49)" fg:x="96906" fg:w="28"/><text x="64.7431%" y="239.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="64.4931%" y="213" width="0.0186%" height="15" fill="rgb(245,188,27)" fg:x="96906" fg:w="28"/><text x="64.7431%" y="223.50"></text></g><g><title>[unknown] (375 samples, 0.25%)</title><rect x="64.2741%" y="997" width="0.2496%" height="15" fill="rgb(212,170,8)" fg:x="96577" fg:w="375"/><text x="64.5241%" y="1007.50"></text></g><g><title>dispose_command (16 samples, 0.01%)</title><rect x="64.5363%" y="757" width="0.0106%" height="15" fill="rgb(217,113,29)" fg:x="96971" fg:w="16"/><text x="64.7863%" y="767.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.5343%" y="917" width="0.0133%" height="15" fill="rgb(237,30,3)" fg:x="96968" fg:w="20"/><text x="64.7843%" y="927.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.5343%" y="901" width="0.0133%" height="15" fill="rgb(227,19,28)" fg:x="96968" fg:w="20"/><text x="64.7843%" y="911.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5350%" y="885" width="0.0126%" height="15" fill="rgb(239,172,45)" fg:x="96969" fg:w="19"/><text x="64.7850%" y="895.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5350%" y="869" width="0.0126%" height="15" fill="rgb(254,55,39)" fg:x="96969" fg:w="19"/><text x="64.7850%" y="879.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5350%" y="853" width="0.0126%" height="15" fill="rgb(249,208,12)" fg:x="96969" fg:w="19"/><text x="64.7850%" y="863.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5350%" y="837" width="0.0126%" height="15" fill="rgb(240,52,13)" fg:x="96969" fg:w="19"/><text x="64.7850%" y="847.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5350%" y="821" width="0.0126%" height="15" fill="rgb(252,149,13)" fg:x="96969" fg:w="19"/><text x="64.7850%" y="831.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.5357%" y="805" width="0.0120%" height="15" fill="rgb(232,81,48)" fg:x="96970" fg:w="18"/><text x="64.7857%" y="815.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.5357%" y="789" width="0.0120%" height="15" fill="rgb(222,144,2)" fg:x="96970" fg:w="18"/><text x="64.7857%" y="799.50"></text></g><g><title>dispose_command (17 samples, 0.01%)</title><rect x="64.5363%" y="773" width="0.0113%" height="15" fill="rgb(216,81,32)" fg:x="96971" fg:w="17"/><text x="64.7863%" y="783.50"></text></g><g><title>dispose_command (21 samples, 0.01%)</title><rect x="64.5343%" y="933" width="0.0140%" height="15" fill="rgb(244,78,51)" fg:x="96968" fg:w="21"/><text x="64.7843%" y="943.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.5630%" y="853" width="0.0166%" height="15" fill="rgb(217,66,21)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="863.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.5630%" y="837" width="0.0166%" height="15" fill="rgb(247,101,42)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="847.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.5630%" y="821" width="0.0166%" height="15" fill="rgb(227,81,39)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="831.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.5630%" y="805" width="0.0166%" height="15" fill="rgb(220,223,44)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="815.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.5630%" y="789" width="0.0166%" height="15" fill="rgb(205,218,2)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="799.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.5630%" y="773" width="0.0166%" height="15" fill="rgb(212,207,28)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="783.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.5630%" y="757" width="0.0166%" height="15" fill="rgb(224,12,41)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="767.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="64.5630%" y="741" width="0.0166%" height="15" fill="rgb(216,118,12)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="751.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.5630%" y="725" width="0.0166%" height="15" fill="rgb(252,97,46)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="735.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.5630%" y="709" width="0.0166%" height="15" fill="rgb(244,206,19)" fg:x="97011" fg:w="25"/><text x="64.8130%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.04%)</title><rect x="64.5962%" y="757" width="0.0379%" height="15" fill="rgb(231,84,31)" fg:x="97061" fg:w="57"/><text x="64.8462%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.04%)</title><rect x="64.5962%" y="741" width="0.0379%" height="15" fill="rgb(244,133,0)" fg:x="97061" fg:w="57"/><text x="64.8462%" y="751.50"></text></g><g><title>native_write_msr (57 samples, 0.04%)</title><rect x="64.5962%" y="725" width="0.0379%" height="15" fill="rgb(223,15,50)" fg:x="97061" fg:w="57"/><text x="64.8462%" y="735.50"></text></g><g><title>arch_fork (80 samples, 0.05%)</title><rect x="64.5823%" y="821" width="0.0532%" height="15" fill="rgb(250,118,49)" fg:x="97040" fg:w="80"/><text x="64.8323%" y="831.50"></text></g><g><title>ret_from_fork (72 samples, 0.05%)</title><rect x="64.5876%" y="805" width="0.0479%" height="15" fill="rgb(248,25,38)" fg:x="97048" fg:w="72"/><text x="64.8376%" y="815.50"></text></g><g><title>schedule_tail (72 samples, 0.05%)</title><rect x="64.5876%" y="789" width="0.0479%" height="15" fill="rgb(215,70,14)" fg:x="97048" fg:w="72"/><text x="64.8376%" y="799.50"></text></g><g><title>finish_task_switch (66 samples, 0.04%)</title><rect x="64.5916%" y="773" width="0.0439%" height="15" fill="rgb(215,28,15)" fg:x="97054" fg:w="66"/><text x="64.8416%" y="783.50"></text></g><g><title>__libc_fork (83 samples, 0.06%)</title><rect x="64.5809%" y="837" width="0.0552%" height="15" fill="rgb(243,6,28)" fg:x="97038" fg:w="83"/><text x="64.8309%" y="847.50"></text></g><g><title>make_child (85 samples, 0.06%)</title><rect x="64.5809%" y="853" width="0.0566%" height="15" fill="rgb(222,130,1)" fg:x="97038" fg:w="85"/><text x="64.8309%" y="863.50"></text></g><g><title>execute_command (142 samples, 0.09%)</title><rect x="64.5543%" y="885" width="0.0945%" height="15" fill="rgb(236,166,44)" fg:x="96998" fg:w="142"/><text x="64.8043%" y="895.50"></text></g><g><title>execute_command_internal (142 samples, 0.09%)</title><rect x="64.5543%" y="869" width="0.0945%" height="15" fill="rgb(221,108,14)" fg:x="96998" fg:w="142"/><text x="64.8043%" y="879.50"></text></g><g><title>wait_for (16 samples, 0.01%)</title><rect x="64.6382%" y="853" width="0.0106%" height="15" fill="rgb(252,3,45)" fg:x="97124" fg:w="16"/><text x="64.8882%" y="863.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.6488%" y="885" width="0.0133%" height="15" fill="rgb(237,68,30)" fg:x="97140" fg:w="20"/><text x="64.8988%" y="895.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.6488%" y="869" width="0.0133%" height="15" fill="rgb(211,79,22)" fg:x="97140" fg:w="20"/><text x="64.8988%" y="879.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.6488%" y="853" width="0.0133%" height="15" fill="rgb(252,185,21)" fg:x="97140" fg:w="20"/><text x="64.8988%" y="863.50"></text></g><g><title>[bash] (169 samples, 0.11%)</title><rect x="64.5503%" y="901" width="0.1125%" height="15" fill="rgb(225,189,26)" fg:x="96992" fg:w="169"/><text x="64.8003%" y="911.50"></text></g><g><title>copy_command (23 samples, 0.02%)</title><rect x="64.6821%" y="421" width="0.0153%" height="15" fill="rgb(241,30,40)" fg:x="97190" fg:w="23"/><text x="64.9321%" y="431.50"></text></g><g><title>copy_command (20 samples, 0.01%)</title><rect x="64.6841%" y="405" width="0.0133%" height="15" fill="rgb(235,215,44)" fg:x="97193" fg:w="20"/><text x="64.9341%" y="415.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="64.6867%" y="389" width="0.0106%" height="15" fill="rgb(205,8,29)" fg:x="97197" fg:w="16"/><text x="64.9367%" y="399.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="64.6821%" y="453" width="0.0160%" height="15" fill="rgb(241,137,42)" fg:x="97190" fg:w="24"/><text x="64.9321%" y="463.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="64.6821%" y="437" width="0.0160%" height="15" fill="rgb(237,155,2)" fg:x="97190" fg:w="24"/><text x="64.9321%" y="447.50"></text></g><g><title>copy_command (25 samples, 0.02%)</title><rect x="64.6821%" y="469" width="0.0166%" height="15" fill="rgb(245,29,42)" fg:x="97190" fg:w="25"/><text x="64.9321%" y="479.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="64.6814%" y="485" width="0.0180%" height="15" fill="rgb(234,101,35)" fg:x="97189" fg:w="27"/><text x="64.9314%" y="495.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="64.6807%" y="517" width="0.0193%" height="15" fill="rgb(228,64,37)" fg:x="97188" fg:w="29"/><text x="64.9307%" y="527.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="64.6814%" y="501" width="0.0186%" height="15" fill="rgb(217,214,36)" fg:x="97189" fg:w="28"/><text x="64.9314%" y="511.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="64.6807%" y="533" width="0.0200%" height="15" fill="rgb(243,70,3)" fg:x="97188" fg:w="30"/><text x="64.9307%" y="543.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="64.6807%" y="549" width="0.0220%" height="15" fill="rgb(253,158,52)" fg:x="97188" fg:w="33"/><text x="64.9307%" y="559.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="64.6807%" y="565" width="0.0226%" height="15" fill="rgb(234,111,54)" fg:x="97188" fg:w="34"/><text x="64.9307%" y="575.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="64.6807%" y="581" width="0.0233%" height="15" fill="rgb(217,70,32)" fg:x="97188" fg:w="35"/><text x="64.9307%" y="591.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="64.6807%" y="613" width="0.0246%" height="15" fill="rgb(234,18,33)" fg:x="97188" fg:w="37"/><text x="64.9307%" y="623.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="64.6807%" y="597" width="0.0246%" height="15" fill="rgb(234,12,49)" fg:x="97188" fg:w="37"/><text x="64.9307%" y="607.50"></text></g><g><title>copy_command (39 samples, 0.03%)</title><rect x="64.6807%" y="629" width="0.0260%" height="15" fill="rgb(236,10,21)" fg:x="97188" fg:w="39"/><text x="64.9307%" y="639.50"></text></g><g><title>copy_command (41 samples, 0.03%)</title><rect x="64.6801%" y="645" width="0.0273%" height="15" fill="rgb(248,182,45)" fg:x="97187" fg:w="41"/><text x="64.9301%" y="655.50"></text></g><g><title>copy_command (42 samples, 0.03%)</title><rect x="64.6801%" y="677" width="0.0280%" height="15" fill="rgb(217,95,36)" fg:x="97187" fg:w="42"/><text x="64.9301%" y="687.50"></text></g><g><title>copy_command (42 samples, 0.03%)</title><rect x="64.6801%" y="661" width="0.0280%" height="15" fill="rgb(212,110,31)" fg:x="97187" fg:w="42"/><text x="64.9301%" y="671.50"></text></g><g><title>copy_command (45 samples, 0.03%)</title><rect x="64.6801%" y="693" width="0.0299%" height="15" fill="rgb(206,32,53)" fg:x="97187" fg:w="45"/><text x="64.9301%" y="703.50"></text></g><g><title>copy_command (47 samples, 0.03%)</title><rect x="64.6801%" y="709" width="0.0313%" height="15" fill="rgb(246,141,37)" fg:x="97187" fg:w="47"/><text x="64.9301%" y="719.50"></text></g><g><title>copy_command (48 samples, 0.03%)</title><rect x="64.6801%" y="725" width="0.0319%" height="15" fill="rgb(219,16,7)" fg:x="97187" fg:w="48"/><text x="64.9301%" y="735.50"></text></g><g><title>copy_command (63 samples, 0.04%)</title><rect x="64.6714%" y="741" width="0.0419%" height="15" fill="rgb(230,205,45)" fg:x="97174" fg:w="63"/><text x="64.9214%" y="751.50"></text></g><g><title>copy_command (65 samples, 0.04%)</title><rect x="64.6708%" y="757" width="0.0433%" height="15" fill="rgb(231,43,49)" fg:x="97173" fg:w="65"/><text x="64.9208%" y="767.50"></text></g><g><title>copy_command (66 samples, 0.04%)</title><rect x="64.6708%" y="773" width="0.0439%" height="15" fill="rgb(212,106,34)" fg:x="97173" fg:w="66"/><text x="64.9208%" y="783.50"></text></g><g><title>copy_command (68 samples, 0.05%)</title><rect x="64.6708%" y="789" width="0.0453%" height="15" fill="rgb(206,83,17)" fg:x="97173" fg:w="68"/><text x="64.9208%" y="799.50"></text></g><g><title>copy_command (73 samples, 0.05%)</title><rect x="64.6681%" y="805" width="0.0486%" height="15" fill="rgb(244,154,49)" fg:x="97169" fg:w="73"/><text x="64.9181%" y="815.50"></text></g><g><title>copy_command (78 samples, 0.05%)</title><rect x="64.6661%" y="821" width="0.0519%" height="15" fill="rgb(244,149,49)" fg:x="97166" fg:w="78"/><text x="64.9161%" y="831.50"></text></g><g><title>copy_command (83 samples, 0.06%)</title><rect x="64.6641%" y="837" width="0.0552%" height="15" fill="rgb(227,134,18)" fg:x="97163" fg:w="83"/><text x="64.9141%" y="847.50"></text></g><g><title>copy_command (87 samples, 0.06%)</title><rect x="64.6634%" y="853" width="0.0579%" height="15" fill="rgb(237,116,36)" fg:x="97162" fg:w="87"/><text x="64.9134%" y="863.50"></text></g><g><title>copy_command (91 samples, 0.06%)</title><rect x="64.6634%" y="869" width="0.0606%" height="15" fill="rgb(205,129,40)" fg:x="97162" fg:w="91"/><text x="64.9134%" y="879.50"></text></g><g><title>copy_command (92 samples, 0.06%)</title><rect x="64.6634%" y="885" width="0.0612%" height="15" fill="rgb(236,178,4)" fg:x="97162" fg:w="92"/><text x="64.9134%" y="895.50"></text></g><g><title>bind_function (94 samples, 0.06%)</title><rect x="64.6628%" y="901" width="0.0626%" height="15" fill="rgb(251,76,53)" fg:x="97161" fg:w="94"/><text x="64.9128%" y="911.50"></text></g><g><title>copy_command (18 samples, 0.01%)</title><rect x="64.7480%" y="389" width="0.0120%" height="15" fill="rgb(242,92,40)" fg:x="97289" fg:w="18"/><text x="64.9980%" y="399.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="64.7486%" y="373" width="0.0113%" height="15" fill="rgb(209,45,30)" fg:x="97290" fg:w="17"/><text x="64.9986%" y="383.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="64.7493%" y="357" width="0.0106%" height="15" fill="rgb(218,157,36)" fg:x="97291" fg:w="16"/><text x="64.9993%" y="367.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="64.7493%" y="341" width="0.0106%" height="15" fill="rgb(222,186,16)" fg:x="97291" fg:w="16"/><text x="64.9993%" y="351.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="64.7466%" y="405" width="0.0140%" height="15" fill="rgb(254,72,35)" fg:x="97287" fg:w="21"/><text x="64.9966%" y="415.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="64.7460%" y="421" width="0.0160%" height="15" fill="rgb(224,25,35)" fg:x="97286" fg:w="24"/><text x="64.9960%" y="431.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="64.7446%" y="533" width="0.0180%" height="15" fill="rgb(206,135,52)" fg:x="97284" fg:w="27"/><text x="64.9946%" y="543.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="64.7446%" y="517" width="0.0180%" height="15" fill="rgb(229,174,47)" fg:x="97284" fg:w="27"/><text x="64.9946%" y="527.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.7453%" y="501" width="0.0173%" height="15" fill="rgb(242,184,21)" fg:x="97285" fg:w="26"/><text x="64.9953%" y="511.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.7453%" y="485" width="0.0173%" height="15" fill="rgb(213,22,45)" fg:x="97285" fg:w="26"/><text x="64.9953%" y="495.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.7453%" y="469" width="0.0173%" height="15" fill="rgb(237,81,54)" fg:x="97285" fg:w="26"/><text x="64.9953%" y="479.50"></text></g><g><title>copy_command (25 samples, 0.02%)</title><rect x="64.7460%" y="453" width="0.0166%" height="15" fill="rgb(248,177,18)" fg:x="97286" fg:w="25"/><text x="64.9960%" y="463.50"></text></g><g><title>copy_command (25 samples, 0.02%)</title><rect x="64.7460%" y="437" width="0.0166%" height="15" fill="rgb(254,31,16)" fg:x="97286" fg:w="25"/><text x="64.9960%" y="447.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="64.7446%" y="549" width="0.0193%" height="15" fill="rgb(235,20,31)" fg:x="97284" fg:w="29"/><text x="64.9946%" y="559.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="645" width="0.0206%" height="15" fill="rgb(240,56,43)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="655.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="629" width="0.0206%" height="15" fill="rgb(237,197,51)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="639.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="613" width="0.0206%" height="15" fill="rgb(241,162,44)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="623.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="597" width="0.0206%" height="15" fill="rgb(224,23,20)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="607.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="581" width="0.0206%" height="15" fill="rgb(250,109,34)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="591.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7446%" y="565" width="0.0206%" height="15" fill="rgb(214,175,50)" fg:x="97284" fg:w="31"/><text x="64.9946%" y="575.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="64.7440%" y="677" width="0.0220%" height="15" fill="rgb(213,182,5)" fg:x="97283" fg:w="33"/><text x="64.9940%" y="687.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="64.7440%" y="661" width="0.0220%" height="15" fill="rgb(209,199,19)" fg:x="97283" fg:w="33"/><text x="64.9940%" y="671.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="64.7440%" y="693" width="0.0233%" height="15" fill="rgb(236,224,42)" fg:x="97283" fg:w="35"/><text x="64.9940%" y="703.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="64.7440%" y="709" width="0.0246%" height="15" fill="rgb(246,226,29)" fg:x="97283" fg:w="37"/><text x="64.9940%" y="719.50"></text></g><g><title>copy_command (38 samples, 0.03%)</title><rect x="64.7440%" y="725" width="0.0253%" height="15" fill="rgb(227,223,11)" fg:x="97283" fg:w="38"/><text x="64.9940%" y="735.50"></text></g><g><title>copy_command (53 samples, 0.04%)</title><rect x="64.7353%" y="741" width="0.0353%" height="15" fill="rgb(219,7,51)" fg:x="97270" fg:w="53"/><text x="64.9853%" y="751.50"></text></g><g><title>copy_command (56 samples, 0.04%)</title><rect x="64.7340%" y="757" width="0.0373%" height="15" fill="rgb(245,167,10)" fg:x="97268" fg:w="56"/><text x="64.9840%" y="767.50"></text></g><g><title>copy_command (58 samples, 0.04%)</title><rect x="64.7340%" y="773" width="0.0386%" height="15" fill="rgb(237,224,16)" fg:x="97268" fg:w="58"/><text x="64.9840%" y="783.50"></text></g><g><title>copy_command (61 samples, 0.04%)</title><rect x="64.7333%" y="789" width="0.0406%" height="15" fill="rgb(226,132,13)" fg:x="97267" fg:w="61"/><text x="64.9833%" y="799.50"></text></g><g><title>copy_command (71 samples, 0.05%)</title><rect x="64.7293%" y="805" width="0.0473%" height="15" fill="rgb(214,140,3)" fg:x="97261" fg:w="71"/><text x="64.9793%" y="815.50"></text></g><g><title>copy_command (75 samples, 0.05%)</title><rect x="64.7287%" y="821" width="0.0499%" height="15" fill="rgb(221,177,4)" fg:x="97260" fg:w="75"/><text x="64.9787%" y="831.50"></text></g><g><title>copy_command (79 samples, 0.05%)</title><rect x="64.7273%" y="837" width="0.0526%" height="15" fill="rgb(238,139,3)" fg:x="97258" fg:w="79"/><text x="64.9773%" y="847.50"></text></g><g><title>copy_command (81 samples, 0.05%)</title><rect x="64.7267%" y="853" width="0.0539%" height="15" fill="rgb(216,17,39)" fg:x="97257" fg:w="81"/><text x="64.9767%" y="863.50"></text></g><g><title>copy_command (82 samples, 0.05%)</title><rect x="64.7267%" y="869" width="0.0546%" height="15" fill="rgb(238,120,9)" fg:x="97257" fg:w="82"/><text x="64.9767%" y="879.50"></text></g><g><title>copy_function_def_contents (83 samples, 0.06%)</title><rect x="64.7267%" y="901" width="0.0552%" height="15" fill="rgb(244,92,53)" fg:x="97257" fg:w="83"/><text x="64.9767%" y="911.50"></text></g><g><title>copy_command (83 samples, 0.06%)</title><rect x="64.7267%" y="885" width="0.0552%" height="15" fill="rgb(224,148,33)" fg:x="97257" fg:w="83"/><text x="64.9767%" y="895.50"></text></g><g><title>evalstring (16 samples, 0.01%)</title><rect x="64.7819%" y="853" width="0.0106%" height="15" fill="rgb(243,6,36)" fg:x="97340" fg:w="16"/><text x="65.0319%" y="863.50"></text></g><g><title>parse_and_execute (16 samples, 0.01%)</title><rect x="64.7819%" y="837" width="0.0106%" height="15" fill="rgb(230,102,11)" fg:x="97340" fg:w="16"/><text x="65.0319%" y="847.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="64.7819%" y="869" width="0.0160%" height="15" fill="rgb(234,148,36)" fg:x="97340" fg:w="24"/><text x="65.0319%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (72 samples, 0.05%)</title><rect x="64.8198%" y="725" width="0.0479%" height="15" fill="rgb(251,153,25)" fg:x="97397" fg:w="72"/><text x="65.0698%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.05%)</title><rect x="64.8218%" y="709" width="0.0459%" height="15" fill="rgb(215,129,8)" fg:x="97400" fg:w="69"/><text x="65.0718%" y="719.50"></text></g><g><title>native_write_msr (69 samples, 0.05%)</title><rect x="64.8218%" y="693" width="0.0459%" height="15" fill="rgb(224,128,35)" fg:x="97400" fg:w="69"/><text x="65.0718%" y="703.50"></text></g><g><title>schedule_tail (85 samples, 0.06%)</title><rect x="64.8119%" y="757" width="0.0566%" height="15" fill="rgb(237,56,52)" fg:x="97385" fg:w="85"/><text x="65.0619%" y="767.50"></text></g><g><title>finish_task_switch (75 samples, 0.05%)</title><rect x="64.8185%" y="741" width="0.0499%" height="15" fill="rgb(234,213,19)" fg:x="97395" fg:w="75"/><text x="65.0685%" y="751.50"></text></g><g><title>arch_fork (97 samples, 0.06%)</title><rect x="64.8045%" y="789" width="0.0646%" height="15" fill="rgb(252,82,23)" fg:x="97374" fg:w="97"/><text x="65.0545%" y="799.50"></text></g><g><title>ret_from_fork (86 samples, 0.06%)</title><rect x="64.8119%" y="773" width="0.0572%" height="15" fill="rgb(254,201,21)" fg:x="97385" fg:w="86"/><text x="65.0619%" y="783.50"></text></g><g><title>__libc_fork (98 samples, 0.07%)</title><rect x="64.8045%" y="805" width="0.0652%" height="15" fill="rgb(250,186,11)" fg:x="97374" fg:w="98"/><text x="65.0545%" y="815.50"></text></g><g><title>make_child (101 samples, 0.07%)</title><rect x="64.8039%" y="821" width="0.0672%" height="15" fill="rgb(211,174,5)" fg:x="97373" fg:w="101"/><text x="65.0539%" y="831.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.8718%" y="789" width="0.0106%" height="15" fill="rgb(214,121,10)" fg:x="97475" fg:w="16"/><text x="65.1218%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.03%)</title><rect x="64.8911%" y="693" width="0.0313%" height="15" fill="rgb(241,66,2)" fg:x="97504" fg:w="47"/><text x="65.1411%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (45 samples, 0.03%)</title><rect x="64.8924%" y="677" width="0.0299%" height="15" fill="rgb(220,167,19)" fg:x="97506" fg:w="45"/><text x="65.1424%" y="687.50"></text></g><g><title>native_write_msr (45 samples, 0.03%)</title><rect x="64.8924%" y="661" width="0.0299%" height="15" fill="rgb(231,54,50)" fg:x="97506" fg:w="45"/><text x="65.1424%" y="671.50"></text></g><g><title>__libc_fork (61 samples, 0.04%)</title><rect x="64.8831%" y="773" width="0.0406%" height="15" fill="rgb(239,217,53)" fg:x="97492" fg:w="61"/><text x="65.1331%" y="783.50"></text></g><g><title>arch_fork (59 samples, 0.04%)</title><rect x="64.8844%" y="757" width="0.0393%" height="15" fill="rgb(248,8,0)" fg:x="97494" fg:w="59"/><text x="65.1344%" y="767.50"></text></g><g><title>ret_from_fork (56 samples, 0.04%)</title><rect x="64.8864%" y="741" width="0.0373%" height="15" fill="rgb(229,118,37)" fg:x="97497" fg:w="56"/><text x="65.1364%" y="751.50"></text></g><g><title>schedule_tail (56 samples, 0.04%)</title><rect x="64.8864%" y="725" width="0.0373%" height="15" fill="rgb(253,223,43)" fg:x="97497" fg:w="56"/><text x="65.1364%" y="735.50"></text></g><g><title>finish_task_switch (51 samples, 0.03%)</title><rect x="64.8897%" y="709" width="0.0339%" height="15" fill="rgb(211,77,36)" fg:x="97502" fg:w="51"/><text x="65.1397%" y="719.50"></text></g><g><title>make_child (64 samples, 0.04%)</title><rect x="64.8824%" y="789" width="0.0426%" height="15" fill="rgb(219,3,53)" fg:x="97491" fg:w="64"/><text x="65.1324%" y="799.50"></text></g><g><title>execute_command_internal (98 samples, 0.07%)</title><rect x="64.8718%" y="805" width="0.0652%" height="15" fill="rgb(244,45,42)" fg:x="97475" fg:w="98"/><text x="65.1218%" y="815.50"></text></g><g><title>parse_and_execute (104 samples, 0.07%)</title><rect x="64.8711%" y="821" width="0.0692%" height="15" fill="rgb(225,95,27)" fg:x="97474" fg:w="104"/><text x="65.1211%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.03%)</title><rect x="64.9490%" y="645" width="0.0273%" height="15" fill="rgb(207,74,8)" fg:x="97591" fg:w="41"/><text x="65.1990%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (40 samples, 0.03%)</title><rect x="64.9496%" y="629" width="0.0266%" height="15" fill="rgb(243,63,36)" fg:x="97592" fg:w="40"/><text x="65.1996%" y="639.50"></text></g><g><title>native_write_msr (40 samples, 0.03%)</title><rect x="64.9496%" y="613" width="0.0266%" height="15" fill="rgb(211,180,12)" fg:x="97592" fg:w="40"/><text x="65.1996%" y="623.50"></text></g><g><title>do_syscall_64 (49 samples, 0.03%)</title><rect x="64.9443%" y="773" width="0.0326%" height="15" fill="rgb(254,166,49)" fg:x="97584" fg:w="49"/><text x="65.1943%" y="783.50"></text></g><g><title>ksys_read (49 samples, 0.03%)</title><rect x="64.9443%" y="757" width="0.0326%" height="15" fill="rgb(205,19,0)" fg:x="97584" fg:w="49"/><text x="65.1943%" y="767.50"></text></g><g><title>vfs_read (49 samples, 0.03%)</title><rect x="64.9443%" y="741" width="0.0326%" height="15" fill="rgb(224,172,32)" fg:x="97584" fg:w="49"/><text x="65.1943%" y="751.50"></text></g><g><title>new_sync_read (49 samples, 0.03%)</title><rect x="64.9443%" y="725" width="0.0326%" height="15" fill="rgb(254,136,30)" fg:x="97584" fg:w="49"/><text x="65.1943%" y="735.50"></text></g><g><title>pipe_read (49 samples, 0.03%)</title><rect x="64.9443%" y="709" width="0.0326%" height="15" fill="rgb(246,19,35)" fg:x="97584" fg:w="49"/><text x="65.1943%" y="719.50"></text></g><g><title>schedule (46 samples, 0.03%)</title><rect x="64.9463%" y="693" width="0.0306%" height="15" fill="rgb(219,24,36)" fg:x="97587" fg:w="46"/><text x="65.1963%" y="703.50"></text></g><g><title>__schedule (44 samples, 0.03%)</title><rect x="64.9476%" y="677" width="0.0293%" height="15" fill="rgb(251,55,1)" fg:x="97589" fg:w="44"/><text x="65.1976%" y="687.50"></text></g><g><title>finish_task_switch (44 samples, 0.03%)</title><rect x="64.9476%" y="661" width="0.0293%" height="15" fill="rgb(218,117,39)" fg:x="97589" fg:w="44"/><text x="65.1976%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.03%)</title><rect x="64.9443%" y="789" width="0.0333%" height="15" fill="rgb(248,169,11)" fg:x="97584" fg:w="50"/><text x="65.1943%" y="799.50"></text></g><g><title>expand_word_leave_quoted (271 samples, 0.18%)</title><rect x="64.7992%" y="869" width="0.1804%" height="15" fill="rgb(244,40,44)" fg:x="97366" fg:w="271"/><text x="65.0492%" y="879.50"></text></g><g><title>[bash] (271 samples, 0.18%)</title><rect x="64.7992%" y="853" width="0.1804%" height="15" fill="rgb(234,62,37)" fg:x="97366" fg:w="271"/><text x="65.0492%" y="863.50"></text></g><g><title>command_substitute (270 samples, 0.18%)</title><rect x="64.7999%" y="837" width="0.1797%" height="15" fill="rgb(207,117,42)" fg:x="97367" fg:w="270"/><text x="65.0499%" y="847.50"></text></g><g><title>zread (53 samples, 0.04%)</title><rect x="64.9443%" y="821" width="0.0353%" height="15" fill="rgb(213,43,2)" fg:x="97584" fg:w="53"/><text x="65.1943%" y="831.50"></text></g><g><title>__GI___libc_read (53 samples, 0.04%)</title><rect x="64.9443%" y="805" width="0.0353%" height="15" fill="rgb(244,202,51)" fg:x="97584" fg:w="53"/><text x="65.1943%" y="815.50"></text></g><g><title>execute_command (310 samples, 0.21%)</title><rect x="64.7819%" y="901" width="0.2063%" height="15" fill="rgb(253,174,46)" fg:x="97340" fg:w="310"/><text x="65.0319%" y="911.50"></text></g><g><title>execute_command_internal (310 samples, 0.21%)</title><rect x="64.7819%" y="885" width="0.2063%" height="15" fill="rgb(251,23,1)" fg:x="97340" fg:w="310"/><text x="65.0319%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.04%)</title><rect x="65.0162%" y="709" width="0.0426%" height="15" fill="rgb(253,26,1)" fg:x="97692" fg:w="64"/><text x="65.2662%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.04%)</title><rect x="65.0168%" y="693" width="0.0419%" height="15" fill="rgb(216,89,31)" fg:x="97693" fg:w="63"/><text x="65.2668%" y="703.50"></text></g><g><title>native_write_msr (63 samples, 0.04%)</title><rect x="65.0168%" y="677" width="0.0419%" height="15" fill="rgb(209,109,5)" fg:x="97693" fg:w="63"/><text x="65.2668%" y="687.50"></text></g><g><title>arch_fork (84 samples, 0.06%)</title><rect x="65.0042%" y="773" width="0.0559%" height="15" fill="rgb(229,63,13)" fg:x="97674" fg:w="84"/><text x="65.2542%" y="783.50"></text></g><g><title>ret_from_fork (77 samples, 0.05%)</title><rect x="65.0089%" y="757" width="0.0512%" height="15" fill="rgb(238,137,54)" fg:x="97681" fg:w="77"/><text x="65.2589%" y="767.50"></text></g><g><title>schedule_tail (76 samples, 0.05%)</title><rect x="65.0095%" y="741" width="0.0506%" height="15" fill="rgb(228,1,9)" fg:x="97682" fg:w="76"/><text x="65.2595%" y="751.50"></text></g><g><title>finish_task_switch (71 samples, 0.05%)</title><rect x="65.0128%" y="725" width="0.0473%" height="15" fill="rgb(249,120,48)" fg:x="97687" fg:w="71"/><text x="65.2628%" y="735.50"></text></g><g><title>__libc_fork (87 samples, 0.06%)</title><rect x="65.0029%" y="789" width="0.0579%" height="15" fill="rgb(209,72,36)" fg:x="97672" fg:w="87"/><text x="65.2529%" y="799.50"></text></g><g><title>make_child (90 samples, 0.06%)</title><rect x="65.0029%" y="805" width="0.0599%" height="15" fill="rgb(247,98,49)" fg:x="97672" fg:w="90"/><text x="65.2529%" y="815.50"></text></g><g><title>_cond_resched (18 samples, 0.01%)</title><rect x="65.0794%" y="565" width="0.0120%" height="15" fill="rgb(233,75,36)" fg:x="97787" fg:w="18"/><text x="65.3294%" y="575.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="65.0794%" y="549" width="0.0120%" height="15" fill="rgb(225,14,24)" fg:x="97787" fg:w="18"/><text x="65.3294%" y="559.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="65.0794%" y="533" width="0.0120%" height="15" fill="rgb(237,193,20)" fg:x="97787" fg:w="18"/><text x="65.3294%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="65.0801%" y="517" width="0.0113%" height="15" fill="rgb(239,122,19)" fg:x="97788" fg:w="17"/><text x="65.3301%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (16 samples, 0.01%)</title><rect x="65.0807%" y="501" width="0.0106%" height="15" fill="rgb(231,220,10)" fg:x="97789" fg:w="16"/><text x="65.3307%" y="511.50"></text></g><g><title>native_write_msr (16 samples, 0.01%)</title><rect x="65.0807%" y="485" width="0.0106%" height="15" fill="rgb(220,66,15)" fg:x="97789" fg:w="16"/><text x="65.3307%" y="495.50"></text></g><g><title>sched_exec (20 samples, 0.01%)</title><rect x="65.0787%" y="597" width="0.0133%" height="15" fill="rgb(215,171,52)" fg:x="97786" fg:w="20"/><text x="65.3287%" y="607.50"></text></g><g><title>stop_one_cpu (20 samples, 0.01%)</title><rect x="65.0787%" y="581" width="0.0133%" height="15" fill="rgb(241,169,50)" fg:x="97786" fg:w="20"/><text x="65.3287%" y="591.50"></text></g><g><title>__GI_execve (28 samples, 0.02%)</title><rect x="65.0754%" y="693" width="0.0186%" height="15" fill="rgb(236,189,0)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="65.0754%" y="677" width="0.0186%" height="15" fill="rgb(217,147,20)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="687.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="65.0754%" y="661" width="0.0186%" height="15" fill="rgb(206,188,39)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="671.50"></text></g><g><title>__x64_sys_execve (28 samples, 0.02%)</title><rect x="65.0754%" y="645" width="0.0186%" height="15" fill="rgb(227,118,25)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="655.50"></text></g><g><title>do_execveat_common (28 samples, 0.02%)</title><rect x="65.0754%" y="629" width="0.0186%" height="15" fill="rgb(248,171,40)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="639.50"></text></g><g><title>bprm_execve (28 samples, 0.02%)</title><rect x="65.0754%" y="613" width="0.0186%" height="15" fill="rgb(251,90,54)" fg:x="97781" fg:w="28"/><text x="65.3254%" y="623.50"></text></g><g><title>shell_execve (30 samples, 0.02%)</title><rect x="65.0754%" y="709" width="0.0200%" height="15" fill="rgb(234,11,46)" fg:x="97781" fg:w="30"/><text x="65.3254%" y="719.50"></text></g><g><title>[bash] (40 samples, 0.03%)</title><rect x="65.0701%" y="725" width="0.0266%" height="15" fill="rgb(229,134,13)" fg:x="97773" fg:w="40"/><text x="65.3201%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (109 samples, 0.07%)</title><rect x="65.1233%" y="629" width="0.0725%" height="15" fill="rgb(223,129,3)" fg:x="97853" fg:w="109"/><text x="65.3733%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (106 samples, 0.07%)</title><rect x="65.1253%" y="613" width="0.0705%" height="15" fill="rgb(221,124,13)" fg:x="97856" fg:w="106"/><text x="65.3753%" y="623.50"></text></g><g><title>native_write_msr (106 samples, 0.07%)</title><rect x="65.1253%" y="597" width="0.0705%" height="15" fill="rgb(234,3,18)" fg:x="97856" fg:w="106"/><text x="65.3753%" y="607.50"></text></g><g><title>arch_fork (139 samples, 0.09%)</title><rect x="65.1047%" y="693" width="0.0925%" height="15" fill="rgb(249,199,20)" fg:x="97825" fg:w="139"/><text x="65.3547%" y="703.50"></text></g><g><title>ret_from_fork (131 samples, 0.09%)</title><rect x="65.1100%" y="677" width="0.0872%" height="15" fill="rgb(224,134,6)" fg:x="97833" fg:w="131"/><text x="65.3600%" y="687.50"></text></g><g><title>schedule_tail (129 samples, 0.09%)</title><rect x="65.1113%" y="661" width="0.0859%" height="15" fill="rgb(254,83,26)" fg:x="97835" fg:w="129"/><text x="65.3613%" y="671.50"></text></g><g><title>finish_task_switch (118 samples, 0.08%)</title><rect x="65.1187%" y="645" width="0.0785%" height="15" fill="rgb(217,88,9)" fg:x="97846" fg:w="118"/><text x="65.3687%" y="655.50"></text></g><g><title>__libc_fork (142 samples, 0.09%)</title><rect x="65.1040%" y="709" width="0.0945%" height="15" fill="rgb(225,73,2)" fg:x="97824" fg:w="142"/><text x="65.3540%" y="719.50"></text></g><g><title>make_child (150 samples, 0.10%)</title><rect x="65.1040%" y="725" width="0.0998%" height="15" fill="rgb(226,44,39)" fg:x="97824" fg:w="150"/><text x="65.3540%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.02%)</title><rect x="65.2072%" y="565" width="0.0200%" height="15" fill="rgb(228,53,17)" fg:x="97979" fg:w="30"/><text x="65.4572%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="65.2072%" y="549" width="0.0200%" height="15" fill="rgb(212,27,27)" fg:x="97979" fg:w="30"/><text x="65.4572%" y="559.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="65.2072%" y="533" width="0.0200%" height="15" fill="rgb(241,50,6)" fg:x="97979" fg:w="30"/><text x="65.4572%" y="543.50"></text></g><g><title>finish_task_switch (31 samples, 0.02%)</title><rect x="65.2072%" y="581" width="0.0206%" height="15" fill="rgb(225,28,51)" fg:x="97979" fg:w="31"/><text x="65.4572%" y="591.50"></text></g><g><title>schedule (32 samples, 0.02%)</title><rect x="65.2072%" y="613" width="0.0213%" height="15" fill="rgb(215,33,16)" fg:x="97979" fg:w="32"/><text x="65.4572%" y="623.50"></text></g><g><title>__schedule (32 samples, 0.02%)</title><rect x="65.2072%" y="597" width="0.0213%" height="15" fill="rgb(243,40,39)" fg:x="97979" fg:w="32"/><text x="65.4572%" y="607.50"></text></g><g><title>__GI___wait4 (39 samples, 0.03%)</title><rect x="65.2052%" y="693" width="0.0260%" height="15" fill="rgb(225,11,42)" fg:x="97976" fg:w="39"/><text x="65.4552%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="65.2058%" y="677" width="0.0253%" height="15" fill="rgb(241,220,38)" fg:x="97977" fg:w="38"/><text x="65.4558%" y="687.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="65.2058%" y="661" width="0.0253%" height="15" fill="rgb(244,52,35)" fg:x="97977" fg:w="38"/><text x="65.4558%" y="671.50"></text></g><g><title>kernel_wait4 (38 samples, 0.03%)</title><rect x="65.2058%" y="645" width="0.0253%" height="15" fill="rgb(246,42,46)" fg:x="97977" fg:w="38"/><text x="65.4558%" y="655.50"></text></g><g><title>do_wait (38 samples, 0.03%)</title><rect x="65.2058%" y="629" width="0.0253%" height="15" fill="rgb(205,184,13)" fg:x="97977" fg:w="38"/><text x="65.4558%" y="639.50"></text></g><g><title>execute_command_internal (252 samples, 0.17%)</title><rect x="65.0641%" y="789" width="0.1677%" height="15" fill="rgb(209,48,36)" fg:x="97764" fg:w="252"/><text x="65.3141%" y="799.50"></text></g><g><title>[bash] (252 samples, 0.17%)</title><rect x="65.0641%" y="773" width="0.1677%" height="15" fill="rgb(244,34,51)" fg:x="97764" fg:w="252"/><text x="65.3141%" y="783.50"></text></g><g><title>[bash] (252 samples, 0.17%)</title><rect x="65.0641%" y="757" width="0.1677%" height="15" fill="rgb(221,107,33)" fg:x="97764" fg:w="252"/><text x="65.3141%" y="767.50"></text></g><g><title>execute_command_internal (246 samples, 0.16%)</title><rect x="65.0681%" y="741" width="0.1637%" height="15" fill="rgb(224,203,12)" fg:x="97770" fg:w="246"/><text x="65.3181%" y="751.50"></text></g><g><title>wait_for (40 samples, 0.03%)</title><rect x="65.2052%" y="725" width="0.0266%" height="15" fill="rgb(230,215,18)" fg:x="97976" fg:w="40"/><text x="65.4552%" y="735.50"></text></g><g><title>[bash] (40 samples, 0.03%)</title><rect x="65.2052%" y="709" width="0.0266%" height="15" fill="rgb(206,185,35)" fg:x="97976" fg:w="40"/><text x="65.4552%" y="719.50"></text></g><g><title>parse_and_execute (258 samples, 0.17%)</title><rect x="65.0628%" y="805" width="0.1717%" height="15" fill="rgb(228,140,34)" fg:x="97762" fg:w="258"/><text x="65.3128%" y="815.50"></text></g><g><title>command_substitute (363 samples, 0.24%)</title><rect x="64.9995%" y="821" width="0.2416%" height="15" fill="rgb(208,93,13)" fg:x="97667" fg:w="363"/><text x="65.2495%" y="831.50"></text></g><g><title>[bash] (380 samples, 0.25%)</title><rect x="64.9902%" y="837" width="0.2529%" height="15" fill="rgb(221,193,39)" fg:x="97653" fg:w="380"/><text x="65.2402%" y="847.50"></text></g><g><title>[bash] (384 samples, 0.26%)</title><rect x="64.9889%" y="853" width="0.2556%" height="15" fill="rgb(241,132,34)" fg:x="97651" fg:w="384"/><text x="65.2389%" y="863.50"></text></g><g><title>[bash] (389 samples, 0.26%)</title><rect x="64.9882%" y="869" width="0.2589%" height="15" fill="rgb(221,141,10)" fg:x="97650" fg:w="389"/><text x="65.2382%" y="879.50"></text></g><g><title>[bash] (393 samples, 0.26%)</title><rect x="64.9882%" y="885" width="0.2616%" height="15" fill="rgb(226,90,31)" fg:x="97650" fg:w="393"/><text x="65.2382%" y="895.50"></text></g><g><title>expand_words (394 samples, 0.26%)</title><rect x="64.9882%" y="901" width="0.2622%" height="15" fill="rgb(243,75,5)" fg:x="97650" fg:w="394"/><text x="65.2382%" y="911.50"></text></g><g><title>execute_command_internal (1,060 samples, 0.71%)</title><rect x="64.5490%" y="917" width="0.7055%" height="15" fill="rgb(227,156,21)" fg:x="96990" fg:w="1060"/><text x="64.7990%" y="927.50"></text></g><g><title>execute_command (1,063 samples, 0.71%)</title><rect x="64.5483%" y="933" width="0.7074%" height="15" fill="rgb(250,195,8)" fg:x="96989" fg:w="1063"/><text x="64.7983%" y="943.50"></text></g><g><title>[bash] (43 samples, 0.03%)</title><rect x="65.4741%" y="853" width="0.0286%" height="15" fill="rgb(220,134,5)" fg:x="98380" fg:w="43"/><text x="65.7241%" y="863.50"></text></g><g><title>buffered_getchar (57 samples, 0.04%)</title><rect x="65.5053%" y="853" width="0.0379%" height="15" fill="rgb(246,106,34)" fg:x="98427" fg:w="57"/><text x="65.7553%" y="863.50"></text></g><g><title>[bash] (256 samples, 0.17%)</title><rect x="65.3769%" y="869" width="0.1704%" height="15" fill="rgb(205,1,4)" fg:x="98234" fg:w="256"/><text x="65.6269%" y="879.50"></text></g><g><title>assignment (24 samples, 0.02%)</title><rect x="65.5626%" y="869" width="0.0160%" height="15" fill="rgb(224,151,29)" fg:x="98513" fg:w="24"/><text x="65.8126%" y="879.50"></text></g><g><title>[bash] (439 samples, 0.29%)</title><rect x="65.3057%" y="885" width="0.2922%" height="15" fill="rgb(251,196,0)" fg:x="98127" fg:w="439"/><text x="65.5557%" y="895.50"></text></g><g><title>make_simple_command (19 samples, 0.01%)</title><rect x="65.6118%" y="885" width="0.0126%" height="15" fill="rgb(212,127,0)" fg:x="98587" fg:w="19"/><text x="65.8618%" y="895.50"></text></g><g><title>reader_loop (1,641 samples, 1.09%)</title><rect x="64.5330%" y="949" width="1.0921%" height="15" fill="rgb(236,71,53)" fg:x="96966" fg:w="1641"/><text x="64.7830%" y="959.50"></text></g><g><title>read_command (555 samples, 0.37%)</title><rect x="65.2558%" y="933" width="0.3694%" height="15" fill="rgb(227,99,0)" fg:x="98052" fg:w="555"/><text x="65.5058%" y="943.50"></text></g><g><title>parse_command (555 samples, 0.37%)</title><rect x="65.2558%" y="917" width="0.3694%" height="15" fill="rgb(239,89,21)" fg:x="98052" fg:w="555"/><text x="65.5058%" y="927.50"></text></g><g><title>yyparse (554 samples, 0.37%)</title><rect x="65.2564%" y="901" width="0.3687%" height="15" fill="rgb(243,122,19)" fg:x="98053" fg:w="554"/><text x="65.5064%" y="911.50"></text></g><g><title>__libc_start_main (1,661 samples, 1.11%)</title><rect x="64.5244%" y="981" width="1.1054%" height="15" fill="rgb(229,192,45)" fg:x="96953" fg:w="1661"/><text x="64.7744%" y="991.50"></text></g><g><title>main (1,661 samples, 1.11%)</title><rect x="64.5244%" y="965" width="1.1054%" height="15" fill="rgb(235,165,35)" fg:x="96953" fg:w="1661"/><text x="64.7744%" y="975.50"></text></g><g><title>[ld-2.31.so] (26 samples, 0.02%)</title><rect x="65.6298%" y="933" width="0.0173%" height="15" fill="rgb(253,202,0)" fg:x="98614" fg:w="26"/><text x="65.8798%" y="943.50"></text></g><g><title>_dl_start_final (27 samples, 0.02%)</title><rect x="65.6298%" y="965" width="0.0180%" height="15" fill="rgb(235,51,20)" fg:x="98614" fg:w="27"/><text x="65.8798%" y="975.50"></text></g><g><title>_dl_sysdep_start (27 samples, 0.02%)</title><rect x="65.6298%" y="949" width="0.0180%" height="15" fill="rgb(218,95,46)" fg:x="98614" fg:w="27"/><text x="65.8798%" y="959.50"></text></g><g><title>_dl_start (29 samples, 0.02%)</title><rect x="65.6298%" y="981" width="0.0193%" height="15" fill="rgb(212,81,10)" fg:x="98614" fg:w="29"/><text x="65.8798%" y="991.50"></text></g><g><title>_start (1,691 samples, 1.13%)</title><rect x="64.5244%" y="997" width="1.1254%" height="15" fill="rgb(240,59,0)" fg:x="96953" fg:w="1691"/><text x="64.7744%" y="1007.50"></text></g><g><title>asm_exc_page_fault (33 samples, 0.02%)</title><rect x="65.6497%" y="997" width="0.0220%" height="15" fill="rgb(212,191,42)" fg:x="98644" fg:w="33"/><text x="65.8997%" y="1007.50"></text></g><g><title>__x64_sys_execve (17 samples, 0.01%)</title><rect x="65.6717%" y="965" width="0.0113%" height="15" fill="rgb(233,140,3)" fg:x="98677" fg:w="17"/><text x="65.9217%" y="975.50"></text></g><g><title>do_execveat_common (17 samples, 0.01%)</title><rect x="65.6717%" y="949" width="0.0113%" height="15" fill="rgb(215,69,23)" fg:x="98677" fg:w="17"/><text x="65.9217%" y="959.50"></text></g><g><title>bprm_execve (17 samples, 0.01%)</title><rect x="65.6717%" y="933" width="0.0113%" height="15" fill="rgb(240,202,20)" fg:x="98677" fg:w="17"/><text x="65.9217%" y="943.50"></text></g><g><title>load_elf_binary (17 samples, 0.01%)</title><rect x="65.6717%" y="917" width="0.0113%" height="15" fill="rgb(209,146,50)" fg:x="98677" fg:w="17"/><text x="65.9217%" y="927.50"></text></g><g><title>tlb_finish_mmu (17 samples, 0.01%)</title><rect x="65.6923%" y="885" width="0.0113%" height="15" fill="rgb(253,102,54)" fg:x="98708" fg:w="17"/><text x="65.9423%" y="895.50"></text></g><g><title>unmap_page_range (27 samples, 0.02%)</title><rect x="65.7037%" y="869" width="0.0180%" height="15" fill="rgb(250,173,47)" fg:x="98725" fg:w="27"/><text x="65.9537%" y="879.50"></text></g><g><title>mmput (58 samples, 0.04%)</title><rect x="65.6844%" y="917" width="0.0386%" height="15" fill="rgb(232,142,7)" fg:x="98696" fg:w="58"/><text x="65.9344%" y="927.50"></text></g><g><title>exit_mmap (57 samples, 0.04%)</title><rect x="65.6850%" y="901" width="0.0379%" height="15" fill="rgb(230,157,47)" fg:x="98697" fg:w="57"/><text x="65.9350%" y="911.50"></text></g><g><title>unmap_vmas (29 samples, 0.02%)</title><rect x="65.7037%" y="885" width="0.0193%" height="15" fill="rgb(214,177,35)" fg:x="98725" fg:w="29"/><text x="65.9537%" y="895.50"></text></g><g><title>__x64_sys_exit_group (64 samples, 0.04%)</title><rect x="65.6830%" y="965" width="0.0426%" height="15" fill="rgb(234,119,46)" fg:x="98694" fg:w="64"/><text x="65.9330%" y="975.50"></text></g><g><title>do_group_exit (64 samples, 0.04%)</title><rect x="65.6830%" y="949" width="0.0426%" height="15" fill="rgb(241,180,50)" fg:x="98694" fg:w="64"/><text x="65.9330%" y="959.50"></text></g><g><title>do_exit (64 samples, 0.04%)</title><rect x="65.6830%" y="933" width="0.0426%" height="15" fill="rgb(221,54,25)" fg:x="98694" fg:w="64"/><text x="65.9330%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.05%)</title><rect x="65.6717%" y="997" width="0.0546%" height="15" fill="rgb(209,157,44)" fg:x="98677" fg:w="82"/><text x="65.9217%" y="1007.50"></text></g><g><title>do_syscall_64 (82 samples, 0.05%)</title><rect x="65.6717%" y="981" width="0.0546%" height="15" fill="rgb(246,115,41)" fg:x="98677" fg:w="82"/><text x="65.9217%" y="991.50"></text></g><g><title>libtool (2,269 samples, 1.51%)</title><rect x="64.2169%" y="1013" width="1.5101%" height="15" fill="rgb(229,86,1)" fg:x="96491" fg:w="2269"/><text x="64.4669%" y="1023.50"></text></g><g><title>[[stack]] (20 samples, 0.01%)</title><rect x="65.7276%" y="997" width="0.0133%" height="15" fill="rgb(240,108,53)" fg:x="98761" fg:w="20"/><text x="65.9776%" y="1007.50"></text></g><g><title>do_lookup_x (16 samples, 0.01%)</title><rect x="65.7303%" y="981" width="0.0106%" height="15" fill="rgb(227,134,2)" fg:x="98765" fg:w="16"/><text x="65.9803%" y="991.50"></text></g><g><title>alloc_super (18 samples, 0.01%)</title><rect x="65.7529%" y="741" width="0.0120%" height="15" fill="rgb(213,129,25)" fg:x="98799" fg:w="18"/><text x="66.0029%" y="751.50"></text></g><g><title>fc_mount (20 samples, 0.01%)</title><rect x="65.7522%" y="805" width="0.0133%" height="15" fill="rgb(226,35,21)" fg:x="98798" fg:w="20"/><text x="66.0022%" y="815.50"></text></g><g><title>vfs_get_tree (20 samples, 0.01%)</title><rect x="65.7522%" y="789" width="0.0133%" height="15" fill="rgb(208,129,26)" fg:x="98798" fg:w="20"/><text x="66.0022%" y="799.50"></text></g><g><title>get_tree_nodev (20 samples, 0.01%)</title><rect x="65.7522%" y="773" width="0.0133%" height="15" fill="rgb(224,83,6)" fg:x="98798" fg:w="20"/><text x="66.0022%" y="783.50"></text></g><g><title>sget_fc (19 samples, 0.01%)</title><rect x="65.7529%" y="757" width="0.0126%" height="15" fill="rgb(227,52,39)" fg:x="98799" fg:w="19"/><text x="66.0029%" y="767.50"></text></g><g><title>copy_ipcs (22 samples, 0.01%)</title><rect x="65.7522%" y="837" width="0.0146%" height="15" fill="rgb(241,30,17)" fg:x="98798" fg:w="22"/><text x="66.0022%" y="847.50"></text></g><g><title>mq_init_ns (22 samples, 0.01%)</title><rect x="65.7522%" y="821" width="0.0146%" height="15" fill="rgb(246,186,42)" fg:x="98798" fg:w="22"/><text x="66.0022%" y="831.50"></text></g><g><title>copy_namespaces (40 samples, 0.03%)</title><rect x="65.7516%" y="869" width="0.0266%" height="15" fill="rgb(221,169,15)" fg:x="98797" fg:w="40"/><text x="66.0016%" y="879.50"></text></g><g><title>create_new_namespaces (40 samples, 0.03%)</title><rect x="65.7516%" y="853" width="0.0266%" height="15" fill="rgb(235,108,21)" fg:x="98797" fg:w="40"/><text x="66.0016%" y="863.50"></text></g><g><title>copy_mnt_ns (17 samples, 0.01%)</title><rect x="65.7669%" y="837" width="0.0113%" height="15" fill="rgb(219,148,30)" fg:x="98820" fg:w="17"/><text x="66.0169%" y="847.50"></text></g><g><title>copy_tree (17 samples, 0.01%)</title><rect x="65.7669%" y="821" width="0.0113%" height="15" fill="rgb(220,109,5)" fg:x="98820" fg:w="17"/><text x="66.0169%" y="831.50"></text></g><g><title>dup_mm (23 samples, 0.02%)</title><rect x="65.7782%" y="869" width="0.0153%" height="15" fill="rgb(213,203,48)" fg:x="98837" fg:w="23"/><text x="66.0282%" y="879.50"></text></g><g><title>copy_process (72 samples, 0.05%)</title><rect x="65.7482%" y="885" width="0.0479%" height="15" fill="rgb(244,71,33)" fg:x="98792" fg:w="72"/><text x="65.9982%" y="895.50"></text></g><g><title>__libc_start_main (74 samples, 0.05%)</title><rect x="65.7482%" y="981" width="0.0492%" height="15" fill="rgb(209,23,2)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="991.50"></text></g><g><title>__GI___clone (74 samples, 0.05%)</title><rect x="65.7482%" y="965" width="0.0492%" height="15" fill="rgb(219,97,7)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.05%)</title><rect x="65.7482%" y="949" width="0.0492%" height="15" fill="rgb(216,161,23)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="959.50"></text></g><g><title>do_syscall_64 (74 samples, 0.05%)</title><rect x="65.7482%" y="933" width="0.0492%" height="15" fill="rgb(207,45,42)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="943.50"></text></g><g><title>__do_sys_clone (74 samples, 0.05%)</title><rect x="65.7482%" y="917" width="0.0492%" height="15" fill="rgb(241,61,4)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="927.50"></text></g><g><title>kernel_clone (74 samples, 0.05%)</title><rect x="65.7482%" y="901" width="0.0492%" height="15" fill="rgb(236,170,1)" fg:x="98792" fg:w="74"/><text x="65.9982%" y="911.50"></text></g><g><title>[unknown] (85 samples, 0.06%)</title><rect x="65.7462%" y="997" width="0.0566%" height="15" fill="rgb(239,72,5)" fg:x="98789" fg:w="85"/><text x="65.9962%" y="1007.50"></text></g><g><title>btrfs_add_link (20 samples, 0.01%)</title><rect x="65.8181%" y="853" width="0.0133%" height="15" fill="rgb(214,13,50)" fg:x="98897" fg:w="20"/><text x="66.0681%" y="863.50"></text></g><g><title>btrfs_insert_dir_item (20 samples, 0.01%)</title><rect x="65.8181%" y="837" width="0.0133%" height="15" fill="rgb(224,88,9)" fg:x="98897" fg:w="20"/><text x="66.0681%" y="847.50"></text></g><g><title>insert_with_overflow (17 samples, 0.01%)</title><rect x="65.8201%" y="821" width="0.0113%" height="15" fill="rgb(238,192,34)" fg:x="98900" fg:w="17"/><text x="66.0701%" y="831.50"></text></g><g><title>btrfs_insert_empty_items (17 samples, 0.01%)</title><rect x="65.8201%" y="805" width="0.0113%" height="15" fill="rgb(217,203,50)" fg:x="98900" fg:w="17"/><text x="66.0701%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.03%)</title><rect x="65.8128%" y="933" width="0.0306%" height="15" fill="rgb(241,123,32)" fg:x="98889" fg:w="46"/><text x="66.0628%" y="943.50"></text></g><g><title>do_syscall_64 (46 samples, 0.03%)</title><rect x="65.8128%" y="917" width="0.0306%" height="15" fill="rgb(248,151,39)" fg:x="98889" fg:w="46"/><text x="66.0628%" y="927.50"></text></g><g><title>do_mkdirat (46 samples, 0.03%)</title><rect x="65.8128%" y="901" width="0.0306%" height="15" fill="rgb(208,89,6)" fg:x="98889" fg:w="46"/><text x="66.0628%" y="911.50"></text></g><g><title>vfs_mkdir (38 samples, 0.03%)</title><rect x="65.8181%" y="885" width="0.0253%" height="15" fill="rgb(254,43,26)" fg:x="98897" fg:w="38"/><text x="66.0681%" y="895.50"></text></g><g><title>btrfs_mkdir (38 samples, 0.03%)</title><rect x="65.8181%" y="869" width="0.0253%" height="15" fill="rgb(216,158,13)" fg:x="98897" fg:w="38"/><text x="66.0681%" y="879.50"></text></g><g><title>__GI___mkdir (47 samples, 0.03%)</title><rect x="65.8128%" y="949" width="0.0313%" height="15" fill="rgb(212,47,37)" fg:x="98889" fg:w="47"/><text x="66.0628%" y="959.50"></text></g><g><title>CreateTarget (69 samples, 0.05%)</title><rect x="65.8088%" y="965" width="0.0459%" height="15" fill="rgb(254,16,10)" fg:x="98883" fg:w="69"/><text x="66.0588%" y="975.50"></text></g><g><title>__fopen_internal (23 samples, 0.02%)</title><rect x="65.8634%" y="949" width="0.0153%" height="15" fill="rgb(223,228,16)" fg:x="98965" fg:w="23"/><text x="66.1134%" y="959.50"></text></g><g><title>WriteFile (50 samples, 0.03%)</title><rect x="65.8561%" y="965" width="0.0333%" height="15" fill="rgb(249,108,50)" fg:x="98954" fg:w="50"/><text x="66.1061%" y="975.50"></text></g><g><title>__GI___link (26 samples, 0.02%)</title><rect x="65.8893%" y="965" width="0.0173%" height="15" fill="rgb(208,220,5)" fg:x="99004" fg:w="26"/><text x="66.1393%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="65.8900%" y="949" width="0.0166%" height="15" fill="rgb(217,89,48)" fg:x="99005" fg:w="25"/><text x="66.1400%" y="959.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="65.8900%" y="933" width="0.0166%" height="15" fill="rgb(212,113,41)" fg:x="99005" fg:w="25"/><text x="66.1400%" y="943.50"></text></g><g><title>__x64_sys_link (25 samples, 0.02%)</title><rect x="65.8900%" y="917" width="0.0166%" height="15" fill="rgb(231,127,5)" fg:x="99005" fg:w="25"/><text x="66.1400%" y="927.50"></text></g><g><title>do_linkat (25 samples, 0.02%)</title><rect x="65.8900%" y="901" width="0.0166%" height="15" fill="rgb(217,141,17)" fg:x="99005" fg:w="25"/><text x="66.1400%" y="911.50"></text></g><g><title>vfs_link (18 samples, 0.01%)</title><rect x="65.8947%" y="885" width="0.0120%" height="15" fill="rgb(245,125,54)" fg:x="99012" fg:w="18"/><text x="66.1447%" y="895.50"></text></g><g><title>btrfs_link (17 samples, 0.01%)</title><rect x="65.8953%" y="869" width="0.0113%" height="15" fill="rgb(248,125,3)" fg:x="99013" fg:w="17"/><text x="66.1453%" y="879.50"></text></g><g><title>finish_task_switch (53 samples, 0.04%)</title><rect x="65.9153%" y="853" width="0.0353%" height="15" fill="rgb(236,119,51)" fg:x="99043" fg:w="53"/><text x="66.1653%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.03%)</title><rect x="65.9186%" y="837" width="0.0319%" height="15" fill="rgb(239,99,8)" fg:x="99048" fg:w="48"/><text x="66.1686%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.03%)</title><rect x="65.9186%" y="821" width="0.0319%" height="15" fill="rgb(224,228,4)" fg:x="99048" fg:w="48"/><text x="66.1686%" y="831.50"></text></g><g><title>native_write_msr (48 samples, 0.03%)</title><rect x="65.9186%" y="805" width="0.0319%" height="15" fill="rgb(220,131,45)" fg:x="99048" fg:w="48"/><text x="66.1686%" y="815.50"></text></g><g><title>schedule (56 samples, 0.04%)</title><rect x="65.9146%" y="885" width="0.0373%" height="15" fill="rgb(215,62,5)" fg:x="99042" fg:w="56"/><text x="66.1646%" y="895.50"></text></g><g><title>__schedule (55 samples, 0.04%)</title><rect x="65.9153%" y="869" width="0.0366%" height="15" fill="rgb(253,12,24)" fg:x="99043" fg:w="55"/><text x="66.1653%" y="879.50"></text></g><g><title>__GI___wait4 (72 samples, 0.05%)</title><rect x="65.9140%" y="965" width="0.0479%" height="15" fill="rgb(248,120,50)" fg:x="99041" fg:w="72"/><text x="66.1640%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.05%)</title><rect x="65.9140%" y="949" width="0.0479%" height="15" fill="rgb(245,194,10)" fg:x="99041" fg:w="72"/><text x="66.1640%" y="959.50"></text></g><g><title>do_syscall_64 (72 samples, 0.05%)</title><rect x="65.9140%" y="933" width="0.0479%" height="15" fill="rgb(241,149,38)" fg:x="99041" fg:w="72"/><text x="66.1640%" y="943.50"></text></g><g><title>kernel_wait4 (72 samples, 0.05%)</title><rect x="65.9140%" y="917" width="0.0479%" height="15" fill="rgb(219,215,7)" fg:x="99041" fg:w="72"/><text x="66.1640%" y="927.50"></text></g><g><title>do_wait (72 samples, 0.05%)</title><rect x="65.9140%" y="901" width="0.0479%" height="15" fill="rgb(208,120,31)" fg:x="99041" fg:w="72"/><text x="66.1640%" y="911.50"></text></g><g><title>load_elf_binary (16 samples, 0.01%)</title><rect x="65.9825%" y="853" width="0.0106%" height="15" fill="rgb(244,30,8)" fg:x="99144" fg:w="16"/><text x="66.2325%" y="863.50"></text></g><g><title>bprm_execve (64 samples, 0.04%)</title><rect x="65.9745%" y="869" width="0.0426%" height="15" fill="rgb(238,35,44)" fg:x="99132" fg:w="64"/><text x="66.2245%" y="879.50"></text></g><g><title>do_execveat_common (80 samples, 0.05%)</title><rect x="65.9732%" y="885" width="0.0532%" height="15" fill="rgb(243,218,37)" fg:x="99130" fg:w="80"/><text x="66.2232%" y="895.50"></text></g><g><title>__execvpe_common (83 samples, 0.06%)</title><rect x="65.9719%" y="965" width="0.0552%" height="15" fill="rgb(218,169,10)" fg:x="99128" fg:w="83"/><text x="66.2219%" y="975.50"></text></g><g><title>__GI_execve (81 samples, 0.05%)</title><rect x="65.9732%" y="949" width="0.0539%" height="15" fill="rgb(221,144,10)" fg:x="99130" fg:w="81"/><text x="66.2232%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.05%)</title><rect x="65.9732%" y="933" width="0.0539%" height="15" fill="rgb(226,41,38)" fg:x="99130" fg:w="81"/><text x="66.2232%" y="943.50"></text></g><g><title>do_syscall_64 (81 samples, 0.05%)</title><rect x="65.9732%" y="917" width="0.0539%" height="15" fill="rgb(228,3,1)" fg:x="99130" fg:w="81"/><text x="66.2232%" y="927.50"></text></g><g><title>__x64_sys_execve (81 samples, 0.05%)</title><rect x="65.9732%" y="901" width="0.0539%" height="15" fill="rgb(209,129,12)" fg:x="99130" fg:w="81"/><text x="66.2232%" y="911.50"></text></g><g><title>asm_exc_page_fault (18 samples, 0.01%)</title><rect x="66.0311%" y="933" width="0.0120%" height="15" fill="rgb(213,136,33)" fg:x="99217" fg:w="18"/><text x="66.2811%" y="943.50"></text></g><g><title>exc_page_fault (18 samples, 0.01%)</title><rect x="66.0311%" y="917" width="0.0120%" height="15" fill="rgb(209,181,29)" fg:x="99217" fg:w="18"/><text x="66.2811%" y="927.50"></text></g><g><title>do_user_addr_fault (18 samples, 0.01%)</title><rect x="66.0311%" y="901" width="0.0120%" height="15" fill="rgb(234,173,18)" fg:x="99217" fg:w="18"/><text x="66.2811%" y="911.50"></text></g><g><title>handle_mm_fault (18 samples, 0.01%)</title><rect x="66.0311%" y="885" width="0.0120%" height="15" fill="rgb(227,73,47)" fg:x="99217" fg:w="18"/><text x="66.2811%" y="895.50"></text></g><g><title>dup_mm (26 samples, 0.02%)</title><rect x="66.0464%" y="853" width="0.0173%" height="15" fill="rgb(234,9,34)" fg:x="99240" fg:w="26"/><text x="66.2964%" y="863.50"></text></g><g><title>copy_process (38 samples, 0.03%)</title><rect x="66.0431%" y="869" width="0.0253%" height="15" fill="rgb(235,172,15)" fg:x="99235" fg:w="38"/><text x="66.2931%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.03%)</title><rect x="66.0431%" y="933" width="0.0260%" height="15" fill="rgb(245,61,2)" fg:x="99235" fg:w="39"/><text x="66.2931%" y="943.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="66.0431%" y="917" width="0.0260%" height="15" fill="rgb(238,39,47)" fg:x="99235" fg:w="39"/><text x="66.2931%" y="927.50"></text></g><g><title>__do_sys_clone (39 samples, 0.03%)</title><rect x="66.0431%" y="901" width="0.0260%" height="15" fill="rgb(234,37,24)" fg:x="99235" fg:w="39"/><text x="66.2931%" y="911.50"></text></g><g><title>kernel_clone (39 samples, 0.03%)</title><rect x="66.0431%" y="885" width="0.0260%" height="15" fill="rgb(248,223,24)" fg:x="99235" fg:w="39"/><text x="66.2931%" y="895.50"></text></g><g><title>handle_mm_fault (19 samples, 0.01%)</title><rect x="66.0843%" y="837" width="0.0126%" height="15" fill="rgb(223,12,15)" fg:x="99297" fg:w="19"/><text x="66.3343%" y="847.50"></text></g><g><title>wp_page_copy (16 samples, 0.01%)</title><rect x="66.0863%" y="821" width="0.0106%" height="15" fill="rgb(249,6,3)" fg:x="99300" fg:w="16"/><text x="66.3363%" y="831.50"></text></g><g><title>asm_exc_page_fault (35 samples, 0.02%)</title><rect x="66.0744%" y="885" width="0.0233%" height="15" fill="rgb(237,105,33)" fg:x="99282" fg:w="35"/><text x="66.3244%" y="895.50"></text></g><g><title>exc_page_fault (22 samples, 0.01%)</title><rect x="66.0830%" y="869" width="0.0146%" height="15" fill="rgb(252,208,35)" fg:x="99295" fg:w="22"/><text x="66.3330%" y="879.50"></text></g><g><title>do_user_addr_fault (22 samples, 0.01%)</title><rect x="66.0830%" y="853" width="0.0146%" height="15" fill="rgb(215,181,35)" fg:x="99295" fg:w="22"/><text x="66.3330%" y="863.50"></text></g><g><title>__put_user_nocheck_4 (38 samples, 0.03%)</title><rect x="66.0737%" y="901" width="0.0253%" height="15" fill="rgb(246,212,3)" fg:x="99281" fg:w="38"/><text x="66.3237%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (333 samples, 0.22%)</title><rect x="66.1183%" y="885" width="0.2216%" height="15" fill="rgb(247,156,24)" fg:x="99348" fg:w="333"/><text x="66.3683%" y="895.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (329 samples, 0.22%)</title><rect x="66.1209%" y="869" width="0.2190%" height="15" fill="rgb(248,9,31)" fg:x="99352" fg:w="329"/><text x="66.3709%" y="879.50"></text></g><g><title>native_write_msr (329 samples, 0.22%)</title><rect x="66.1209%" y="853" width="0.2190%" height="15" fill="rgb(234,26,45)" fg:x="99352" fg:w="329"/><text x="66.3709%" y="863.50"></text></g><g><title>schedule_tail (412 samples, 0.27%)</title><rect x="66.0737%" y="917" width="0.2742%" height="15" fill="rgb(249,11,32)" fg:x="99281" fg:w="412"/><text x="66.3237%" y="927.50"></text></g><g><title>finish_task_switch (362 samples, 0.24%)</title><rect x="66.1070%" y="901" width="0.2409%" height="15" fill="rgb(249,162,33)" fg:x="99331" fg:w="362"/><text x="66.3570%" y="911.50"></text></g><g><title>ret_from_fork (416 samples, 0.28%)</title><rect x="66.0717%" y="933" width="0.2769%" height="15" fill="rgb(232,4,32)" fg:x="99278" fg:w="416"/><text x="66.3217%" y="943.50"></text></g><g><title>arch_fork (483 samples, 0.32%)</title><rect x="66.0278%" y="949" width="0.3214%" height="15" fill="rgb(212,5,45)" fg:x="99212" fg:w="483"/><text x="66.2778%" y="959.50"></text></g><g><title>__libc_fork (486 samples, 0.32%)</title><rect x="66.0271%" y="965" width="0.3234%" height="15" fill="rgb(227,95,13)" fg:x="99211" fg:w="486"/><text x="66.2771%" y="975.50"></text></g><g><title>path_mount (43 samples, 0.03%)</title><rect x="66.3685%" y="901" width="0.0286%" height="15" fill="rgb(223,205,10)" fg:x="99724" fg:w="43"/><text x="66.6185%" y="911.50"></text></g><g><title>__mount (61 samples, 0.04%)</title><rect x="66.3612%" y="965" width="0.0406%" height="15" fill="rgb(222,178,8)" fg:x="99713" fg:w="61"/><text x="66.6112%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.04%)</title><rect x="66.3612%" y="949" width="0.0406%" height="15" fill="rgb(216,13,22)" fg:x="99713" fg:w="61"/><text x="66.6112%" y="959.50"></text></g><g><title>do_syscall_64 (61 samples, 0.04%)</title><rect x="66.3612%" y="933" width="0.0406%" height="15" fill="rgb(240,167,12)" fg:x="99713" fg:w="61"/><text x="66.6112%" y="943.50"></text></g><g><title>__x64_sys_mount (61 samples, 0.04%)</title><rect x="66.3612%" y="917" width="0.0406%" height="15" fill="rgb(235,68,35)" fg:x="99713" fg:w="61"/><text x="66.6112%" y="927.50"></text></g><g><title>__umount2 (18 samples, 0.01%)</title><rect x="66.4051%" y="965" width="0.0120%" height="15" fill="rgb(253,40,27)" fg:x="99779" fg:w="18"/><text x="66.6551%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="66.4051%" y="949" width="0.0120%" height="15" fill="rgb(214,19,28)" fg:x="99779" fg:w="18"/><text x="66.6551%" y="959.50"></text></g><g><title>std::string::_S_construct&lt;char const*&gt; (20 samples, 0.01%)</title><rect x="66.4311%" y="965" width="0.0133%" height="15" fill="rgb(210,167,45)" fg:x="99818" fg:w="20"/><text x="66.6811%" y="975.50"></text></g><g><title>std::string::_Rep::_S_create (20 samples, 0.01%)</title><rect x="66.4311%" y="949" width="0.0133%" height="15" fill="rgb(232,97,40)" fg:x="99818" fg:w="20"/><text x="66.6811%" y="959.50"></text></g><g><title>_dl_runtime_resolve_xsavec (18 samples, 0.01%)</title><rect x="66.4450%" y="949" width="0.0120%" height="15" fill="rgb(250,35,23)" fg:x="99839" fg:w="18"/><text x="66.6950%" y="959.50"></text></g><g><title>std::string::append (21 samples, 0.01%)</title><rect x="66.4444%" y="965" width="0.0140%" height="15" fill="rgb(248,47,53)" fg:x="99838" fg:w="21"/><text x="66.6944%" y="975.50"></text></g><g><title>chroot_fs_refs (78 samples, 0.05%)</title><rect x="66.4624%" y="901" width="0.0519%" height="15" fill="rgb(226,58,50)" fg:x="99865" fg:w="78"/><text x="66.7124%" y="911.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.04%)</title><rect x="66.4763%" y="885" width="0.0379%" height="15" fill="rgb(217,105,26)" fg:x="99886" fg:w="57"/><text x="66.7263%" y="895.50"></text></g><g><title>Pid1Main (1,070 samples, 0.71%)</title><rect x="65.8048%" y="981" width="0.7121%" height="15" fill="rgb(208,64,1)" fg:x="98877" fg:w="1070"/><text x="66.0548%" y="991.50"></text></g><g><title>syscall (82 samples, 0.05%)</title><rect x="66.4624%" y="965" width="0.0546%" height="15" fill="rgb(214,80,1)" fg:x="99865" fg:w="82"/><text x="66.7124%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.05%)</title><rect x="66.4624%" y="949" width="0.0546%" height="15" fill="rgb(206,175,26)" fg:x="99865" fg:w="82"/><text x="66.7124%" y="959.50"></text></g><g><title>do_syscall_64 (82 samples, 0.05%)</title><rect x="66.4624%" y="933" width="0.0546%" height="15" fill="rgb(235,156,37)" fg:x="99865" fg:w="82"/><text x="66.7124%" y="943.50"></text></g><g><title>__do_sys_pivot_root (82 samples, 0.05%)</title><rect x="66.4624%" y="917" width="0.0546%" height="15" fill="rgb(213,100,9)" fg:x="99865" fg:w="82"/><text x="66.7124%" y="927.50"></text></g><g><title>filemap_map_pages (19 samples, 0.01%)</title><rect x="66.5196%" y="917" width="0.0126%" height="15" fill="rgb(241,15,13)" fg:x="99951" fg:w="19"/><text x="66.7696%" y="927.50"></text></g><g><title>asm_exc_page_fault (40 samples, 0.03%)</title><rect x="66.5169%" y="981" width="0.0266%" height="15" fill="rgb(205,97,43)" fg:x="99947" fg:w="40"/><text x="66.7669%" y="991.50"></text></g><g><title>exc_page_fault (40 samples, 0.03%)</title><rect x="66.5169%" y="965" width="0.0266%" height="15" fill="rgb(216,106,32)" fg:x="99947" fg:w="40"/><text x="66.7669%" y="975.50"></text></g><g><title>do_user_addr_fault (40 samples, 0.03%)</title><rect x="66.5169%" y="949" width="0.0266%" height="15" fill="rgb(226,200,8)" fg:x="99947" fg:w="40"/><text x="66.7669%" y="959.50"></text></g><g><title>handle_mm_fault (38 samples, 0.03%)</title><rect x="66.5183%" y="933" width="0.0253%" height="15" fill="rgb(244,54,29)" fg:x="99949" fg:w="38"/><text x="66.7683%" y="943.50"></text></g><g><title>wp_page_copy (16 samples, 0.01%)</title><rect x="66.5329%" y="917" width="0.0106%" height="15" fill="rgb(252,169,12)" fg:x="99971" fg:w="16"/><text x="66.7829%" y="927.50"></text></g><g><title>_raw_spin_lock_irq (16 samples, 0.01%)</title><rect x="66.5489%" y="949" width="0.0106%" height="15" fill="rgb(231,199,11)" fg:x="99995" fg:w="16"/><text x="66.7989%" y="959.50"></text></g><g><title>calculate_sigpending (22 samples, 0.01%)</title><rect x="66.5455%" y="965" width="0.0146%" height="15" fill="rgb(233,191,18)" fg:x="99990" fg:w="22"/><text x="66.7955%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (336 samples, 0.22%)</title><rect x="66.5782%" y="933" width="0.2236%" height="15" fill="rgb(215,83,47)" fg:x="100039" fg:w="336"/><text x="66.8282%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (334 samples, 0.22%)</title><rect x="66.5795%" y="917" width="0.2223%" height="15" fill="rgb(251,67,19)" fg:x="100041" fg:w="334"/><text x="66.8295%" y="927.50"></text></g><g><title>native_write_msr (334 samples, 0.22%)</title><rect x="66.5795%" y="901" width="0.2223%" height="15" fill="rgb(240,7,20)" fg:x="100041" fg:w="334"/><text x="66.8295%" y="911.50"></text></g><g><title>schedule_tail (374 samples, 0.25%)</title><rect x="66.5602%" y="965" width="0.2489%" height="15" fill="rgb(210,150,26)" fg:x="100012" fg:w="374"/><text x="66.8102%" y="975.50"></text></g><g><title>finish_task_switch (374 samples, 0.25%)</title><rect x="66.5602%" y="949" width="0.2489%" height="15" fill="rgb(228,75,42)" fg:x="100012" fg:w="374"/><text x="66.8102%" y="959.50"></text></g><g><title>__GI___clone (1,514 samples, 1.01%)</title><rect x="65.8028%" y="997" width="1.0076%" height="15" fill="rgb(237,134,48)" fg:x="98874" fg:w="1514"/><text x="66.0528%" y="1007.50"></text></g><g><title>ret_from_fork (398 samples, 0.26%)</title><rect x="66.5455%" y="981" width="0.2649%" height="15" fill="rgb(205,80,50)" fg:x="99990" fg:w="398"/><text x="66.7955%" y="991.50"></text></g><g><title>[libstdc++.so.6.0.28] (18 samples, 0.01%)</title><rect x="66.8111%" y="933" width="0.0120%" height="15" fill="rgb(217,74,48)" fg:x="100389" fg:w="18"/><text x="67.0611%" y="943.50"></text></g><g><title>_dl_start_user (32 samples, 0.02%)</title><rect x="66.8111%" y="997" width="0.0213%" height="15" fill="rgb(205,82,50)" fg:x="100389" fg:w="32"/><text x="67.0611%" y="1007.50"></text></g><g><title>_dl_init (32 samples, 0.02%)</title><rect x="66.8111%" y="981" width="0.0213%" height="15" fill="rgb(228,1,33)" fg:x="100389" fg:w="32"/><text x="67.0611%" y="991.50"></text></g><g><title>call_init (32 samples, 0.02%)</title><rect x="66.8111%" y="965" width="0.0213%" height="15" fill="rgb(214,50,23)" fg:x="100389" fg:w="32"/><text x="67.0611%" y="975.50"></text></g><g><title>call_init (32 samples, 0.02%)</title><rect x="66.8111%" y="949" width="0.0213%" height="15" fill="rgb(210,62,9)" fg:x="100389" fg:w="32"/><text x="67.0611%" y="959.50"></text></g><g><title>_init (17 samples, 0.01%)</title><rect x="66.8324%" y="997" width="0.0113%" height="15" fill="rgb(210,104,37)" fg:x="100421" fg:w="17"/><text x="67.0824%" y="1007.50"></text></g><g><title>__GI_exit (17 samples, 0.01%)</title><rect x="66.8437%" y="965" width="0.0113%" height="15" fill="rgb(232,104,43)" fg:x="100438" fg:w="17"/><text x="67.0937%" y="975.50"></text></g><g><title>__run_exit_handlers (17 samples, 0.01%)</title><rect x="66.8437%" y="949" width="0.0113%" height="15" fill="rgb(244,52,6)" fg:x="100438" fg:w="17"/><text x="67.0937%" y="959.50"></text></g><g><title>__alloc_pages_nodemask (37 samples, 0.02%)</title><rect x="66.9016%" y="853" width="0.0246%" height="15" fill="rgb(211,174,52)" fg:x="100525" fg:w="37"/><text x="67.1516%" y="863.50"></text></g><g><title>get_page_from_freelist (33 samples, 0.02%)</title><rect x="66.9043%" y="837" width="0.0220%" height="15" fill="rgb(229,48,4)" fg:x="100529" fg:w="33"/><text x="67.1543%" y="847.50"></text></g><g><title>prep_new_page (26 samples, 0.02%)</title><rect x="66.9089%" y="821" width="0.0173%" height="15" fill="rgb(205,155,16)" fg:x="100536" fg:w="26"/><text x="67.1589%" y="831.50"></text></g><g><title>kernel_init_free_pages (24 samples, 0.02%)</title><rect x="66.9102%" y="805" width="0.0160%" height="15" fill="rgb(211,141,53)" fg:x="100538" fg:w="24"/><text x="67.1602%" y="815.50"></text></g><g><title>clear_page_erms (22 samples, 0.01%)</title><rect x="66.9116%" y="789" width="0.0146%" height="15" fill="rgb(240,148,11)" fg:x="100540" fg:w="22"/><text x="67.1616%" y="799.50"></text></g><g><title>alloc_pages_vma (40 samples, 0.03%)</title><rect x="66.9003%" y="869" width="0.0266%" height="15" fill="rgb(214,45,23)" fg:x="100523" fg:w="40"/><text x="67.1503%" y="879.50"></text></g><g><title>handle_mm_fault (68 samples, 0.05%)</title><rect x="66.8923%" y="885" width="0.0453%" height="15" fill="rgb(248,74,26)" fg:x="100511" fg:w="68"/><text x="67.1423%" y="895.50"></text></g><g><title>exc_page_fault (71 samples, 0.05%)</title><rect x="66.8909%" y="917" width="0.0473%" height="15" fill="rgb(218,121,16)" fg:x="100509" fg:w="71"/><text x="67.1409%" y="927.50"></text></g><g><title>do_user_addr_fault (71 samples, 0.05%)</title><rect x="66.8909%" y="901" width="0.0473%" height="15" fill="rgb(218,10,47)" fg:x="100509" fg:w="71"/><text x="67.1409%" y="911.50"></text></g><g><title>asm_exc_page_fault (74 samples, 0.05%)</title><rect x="66.8896%" y="933" width="0.0492%" height="15" fill="rgb(227,99,14)" fg:x="100507" fg:w="74"/><text x="67.1396%" y="943.50"></text></g><g><title>[libc-2.31.so] (113 samples, 0.08%)</title><rect x="66.8730%" y="949" width="0.0752%" height="15" fill="rgb(229,83,46)" fg:x="100482" fg:w="113"/><text x="67.1230%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="66.9528%" y="805" width="0.0226%" height="15" fill="rgb(228,25,1)" fg:x="100602" fg:w="34"/><text x="67.2028%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="66.9528%" y="789" width="0.0226%" height="15" fill="rgb(252,190,15)" fg:x="100602" fg:w="34"/><text x="67.2028%" y="799.50"></text></g><g><title>native_write_msr (33 samples, 0.02%)</title><rect x="66.9535%" y="773" width="0.0220%" height="15" fill="rgb(213,103,51)" fg:x="100603" fg:w="33"/><text x="67.2035%" y="783.50"></text></g><g><title>finish_task_switch (38 samples, 0.03%)</title><rect x="66.9515%" y="821" width="0.0253%" height="15" fill="rgb(220,38,44)" fg:x="100600" fg:w="38"/><text x="67.2015%" y="831.50"></text></g><g><title>schedule (39 samples, 0.03%)</title><rect x="66.9515%" y="853" width="0.0260%" height="15" fill="rgb(210,45,26)" fg:x="100600" fg:w="39"/><text x="67.2015%" y="863.50"></text></g><g><title>__schedule (39 samples, 0.03%)</title><rect x="66.9515%" y="837" width="0.0260%" height="15" fill="rgb(205,95,48)" fg:x="100600" fg:w="39"/><text x="67.2015%" y="847.50"></text></g><g><title>do_wait (47 samples, 0.03%)</title><rect x="66.9508%" y="869" width="0.0313%" height="15" fill="rgb(225,179,37)" fg:x="100599" fg:w="47"/><text x="67.2008%" y="879.50"></text></g><g><title>__GI___wait4 (50 samples, 0.03%)</title><rect x="66.9495%" y="949" width="0.0333%" height="15" fill="rgb(230,209,3)" fg:x="100597" fg:w="50"/><text x="67.1995%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.03%)</title><rect x="66.9502%" y="933" width="0.0326%" height="15" fill="rgb(248,12,46)" fg:x="100598" fg:w="49"/><text x="67.2002%" y="943.50"></text></g><g><title>do_syscall_64 (49 samples, 0.03%)</title><rect x="66.9502%" y="917" width="0.0326%" height="15" fill="rgb(234,18,0)" fg:x="100598" fg:w="49"/><text x="67.2002%" y="927.50"></text></g><g><title>__do_sys_wait4 (49 samples, 0.03%)</title><rect x="66.9502%" y="901" width="0.0326%" height="15" fill="rgb(238,197,14)" fg:x="100598" fg:w="49"/><text x="67.2002%" y="911.50"></text></g><g><title>kernel_wait4 (49 samples, 0.03%)</title><rect x="66.9502%" y="885" width="0.0326%" height="15" fill="rgb(251,162,48)" fg:x="100598" fg:w="49"/><text x="67.2002%" y="895.50"></text></g><g><title>__libc_read (22 samples, 0.01%)</title><rect x="66.9941%" y="949" width="0.0146%" height="15" fill="rgb(237,73,42)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="66.9941%" y="933" width="0.0146%" height="15" fill="rgb(211,108,8)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="943.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="66.9941%" y="917" width="0.0146%" height="15" fill="rgb(213,45,22)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="927.50"></text></g><g><title>ksys_read (22 samples, 0.01%)</title><rect x="66.9941%" y="901" width="0.0146%" height="15" fill="rgb(252,154,5)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="911.50"></text></g><g><title>vfs_read (22 samples, 0.01%)</title><rect x="66.9941%" y="885" width="0.0146%" height="15" fill="rgb(221,79,52)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="895.50"></text></g><g><title>new_sync_read (22 samples, 0.01%)</title><rect x="66.9941%" y="869" width="0.0146%" height="15" fill="rgb(229,220,36)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="879.50"></text></g><g><title>pipe_read (22 samples, 0.01%)</title><rect x="66.9941%" y="853" width="0.0146%" height="15" fill="rgb(211,17,16)" fg:x="100664" fg:w="22"/><text x="67.2441%" y="863.50"></text></g><g><title>schedule (20 samples, 0.01%)</title><rect x="66.9954%" y="837" width="0.0133%" height="15" fill="rgb(222,55,31)" fg:x="100666" fg:w="20"/><text x="67.2454%" y="847.50"></text></g><g><title>__schedule (20 samples, 0.01%)</title><rect x="66.9954%" y="821" width="0.0133%" height="15" fill="rgb(221,221,31)" fg:x="100666" fg:w="20"/><text x="67.2454%" y="831.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="66.9961%" y="805" width="0.0126%" height="15" fill="rgb(227,168,26)" fg:x="100667" fg:w="19"/><text x="67.2461%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="66.9968%" y="789" width="0.0120%" height="15" fill="rgb(224,139,9)" fg:x="100668" fg:w="18"/><text x="67.2468%" y="799.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="66.9968%" y="773" width="0.0120%" height="15" fill="rgb(254,172,0)" fg:x="100668" fg:w="18"/><text x="67.2468%" y="783.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="66.9974%" y="757" width="0.0113%" height="15" fill="rgb(235,203,1)" fg:x="100669" fg:w="17"/><text x="67.2474%" y="767.50"></text></g><g><title>__libc_start_main (258 samples, 0.17%)</title><rect x="66.8437%" y="981" width="0.1717%" height="15" fill="rgb(216,205,24)" fg:x="100438" fg:w="258"/><text x="67.0937%" y="991.50"></text></g><g><title>main (231 samples, 0.15%)</title><rect x="66.8617%" y="965" width="0.1537%" height="15" fill="rgb(233,24,6)" fg:x="100465" fg:w="231"/><text x="67.1117%" y="975.50"></text></g><g><title>_dl_load_cache_lookup (26 samples, 0.02%)</title><rect x="67.0267%" y="853" width="0.0173%" height="15" fill="rgb(244,110,9)" fg:x="100713" fg:w="26"/><text x="67.2767%" y="863.50"></text></g><g><title>__do_munmap (18 samples, 0.01%)</title><rect x="67.0567%" y="693" width="0.0120%" height="15" fill="rgb(239,222,42)" fg:x="100758" fg:w="18"/><text x="67.3067%" y="703.50"></text></g><g><title>do_mmap (39 samples, 0.03%)</title><rect x="67.0547%" y="725" width="0.0260%" height="15" fill="rgb(218,145,13)" fg:x="100755" fg:w="39"/><text x="67.3047%" y="735.50"></text></g><g><title>mmap_region (37 samples, 0.02%)</title><rect x="67.0560%" y="709" width="0.0246%" height="15" fill="rgb(207,69,11)" fg:x="100757" fg:w="37"/><text x="67.3060%" y="719.50"></text></g><g><title>ksys_mmap_pgoff (41 samples, 0.03%)</title><rect x="67.0540%" y="757" width="0.0273%" height="15" fill="rgb(220,223,22)" fg:x="100754" fg:w="41"/><text x="67.3040%" y="767.50"></text></g><g><title>vm_mmap_pgoff (41 samples, 0.03%)</title><rect x="67.0540%" y="741" width="0.0273%" height="15" fill="rgb(245,102,5)" fg:x="100754" fg:w="41"/><text x="67.3040%" y="751.50"></text></g><g><title>_dl_map_segments (52 samples, 0.03%)</title><rect x="67.0487%" y="837" width="0.0346%" height="15" fill="rgb(211,148,2)" fg:x="100746" fg:w="52"/><text x="67.2987%" y="847.50"></text></g><g><title>__mmap64 (44 samples, 0.03%)</title><rect x="67.0540%" y="821" width="0.0293%" height="15" fill="rgb(241,13,44)" fg:x="100754" fg:w="44"/><text x="67.3040%" y="831.50"></text></g><g><title>__mmap64 (44 samples, 0.03%)</title><rect x="67.0540%" y="805" width="0.0293%" height="15" fill="rgb(219,137,21)" fg:x="100754" fg:w="44"/><text x="67.3040%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.03%)</title><rect x="67.0540%" y="789" width="0.0293%" height="15" fill="rgb(242,206,5)" fg:x="100754" fg:w="44"/><text x="67.3040%" y="799.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="67.0540%" y="773" width="0.0293%" height="15" fill="rgb(217,114,22)" fg:x="100754" fg:w="44"/><text x="67.3040%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (80 samples, 0.05%)</title><rect x="67.0440%" y="853" width="0.0532%" height="15" fill="rgb(253,206,42)" fg:x="100739" fg:w="80"/><text x="67.2940%" y="863.50"></text></g><g><title>_dl_catch_exception (126 samples, 0.08%)</title><rect x="67.0254%" y="901" width="0.0839%" height="15" fill="rgb(236,102,18)" fg:x="100711" fg:w="126"/><text x="67.2754%" y="911.50"></text></g><g><title>openaux (126 samples, 0.08%)</title><rect x="67.0254%" y="885" width="0.0839%" height="15" fill="rgb(208,59,49)" fg:x="100711" fg:w="126"/><text x="67.2754%" y="895.50"></text></g><g><title>_dl_map_object (126 samples, 0.08%)</title><rect x="67.0254%" y="869" width="0.0839%" height="15" fill="rgb(215,194,28)" fg:x="100711" fg:w="126"/><text x="67.2754%" y="879.50"></text></g><g><title>_dl_map_object_deps (140 samples, 0.09%)</title><rect x="67.0221%" y="917" width="0.0932%" height="15" fill="rgb(243,207,11)" fg:x="100706" fg:w="140"/><text x="67.2721%" y="927.50"></text></g><g><title>_dl_receive_error (17 samples, 0.01%)</title><rect x="67.1152%" y="917" width="0.0113%" height="15" fill="rgb(254,179,35)" fg:x="100846" fg:w="17"/><text x="67.3652%" y="927.50"></text></g><g><title>version_check_doit (17 samples, 0.01%)</title><rect x="67.1152%" y="901" width="0.0113%" height="15" fill="rgb(235,97,3)" fg:x="100846" fg:w="17"/><text x="67.3652%" y="911.50"></text></g><g><title>_dl_check_all_versions (17 samples, 0.01%)</title><rect x="67.1152%" y="885" width="0.0113%" height="15" fill="rgb(215,155,33)" fg:x="100846" fg:w="17"/><text x="67.3652%" y="895.50"></text></g><g><title>_dl_check_map_versions (17 samples, 0.01%)</title><rect x="67.1152%" y="869" width="0.0113%" height="15" fill="rgb(223,128,12)" fg:x="100846" fg:w="17"/><text x="67.3652%" y="879.50"></text></g><g><title>dl_new_hash (63 samples, 0.04%)</title><rect x="67.1711%" y="853" width="0.0419%" height="15" fill="rgb(208,157,18)" fg:x="100930" fg:w="63"/><text x="67.4211%" y="863.50"></text></g><g><title>check_match (23 samples, 0.02%)</title><rect x="67.2743%" y="837" width="0.0153%" height="15" fill="rgb(249,70,54)" fg:x="101085" fg:w="23"/><text x="67.5243%" y="847.50"></text></g><g><title>_dl_lookup_symbol_x (190 samples, 0.13%)</title><rect x="67.1671%" y="869" width="0.1264%" height="15" fill="rgb(244,118,24)" fg:x="100924" fg:w="190"/><text x="67.4171%" y="879.50"></text></g><g><title>do_lookup_x (121 samples, 0.08%)</title><rect x="67.2131%" y="853" width="0.0805%" height="15" fill="rgb(211,54,0)" fg:x="100993" fg:w="121"/><text x="67.4631%" y="863.50"></text></g><g><title>elf_machine_rela (231 samples, 0.15%)</title><rect x="67.1412%" y="885" width="0.1537%" height="15" fill="rgb(245,137,45)" fg:x="100885" fg:w="231"/><text x="67.3912%" y="895.50"></text></g><g><title>elf_dynamic_do_Rela (255 samples, 0.17%)</title><rect x="67.1325%" y="901" width="0.1697%" height="15" fill="rgb(232,154,31)" fg:x="100872" fg:w="255"/><text x="67.3825%" y="911.50"></text></g><g><title>_dl_relocate_object (269 samples, 0.18%)</title><rect x="67.1265%" y="917" width="0.1790%" height="15" fill="rgb(253,6,39)" fg:x="100863" fg:w="269"/><text x="67.3765%" y="927.50"></text></g><g><title>[ld-2.31.so] (460 samples, 0.31%)</title><rect x="67.0161%" y="933" width="0.3061%" height="15" fill="rgb(234,183,24)" fg:x="100697" fg:w="460"/><text x="67.2661%" y="943.50"></text></g><g><title>_dl_start_final (468 samples, 0.31%)</title><rect x="67.0154%" y="965" width="0.3115%" height="15" fill="rgb(252,84,40)" fg:x="100696" fg:w="468"/><text x="67.2654%" y="975.50"></text></g><g><title>_dl_sysdep_start (467 samples, 0.31%)</title><rect x="67.0161%" y="949" width="0.3108%" height="15" fill="rgb(224,65,2)" fg:x="100697" fg:w="467"/><text x="67.2661%" y="959.50"></text></g><g><title>_dl_start (470 samples, 0.31%)</title><rect x="67.0154%" y="981" width="0.3128%" height="15" fill="rgb(229,38,24)" fg:x="100696" fg:w="470"/><text x="67.2654%" y="991.50"></text></g><g><title>_start (733 samples, 0.49%)</title><rect x="66.8437%" y="997" width="0.4878%" height="15" fill="rgb(218,131,50)" fg:x="100438" fg:w="733"/><text x="67.0937%" y="1007.50"></text></g><g><title>asm_exc_page_fault (117 samples, 0.08%)</title><rect x="67.3315%" y="997" width="0.0779%" height="15" fill="rgb(233,106,18)" fg:x="101171" fg:w="117"/><text x="67.5815%" y="1007.50"></text></g><g><title>begin_new_exec (18 samples, 0.01%)</title><rect x="67.4140%" y="901" width="0.0120%" height="15" fill="rgb(220,216,11)" fg:x="101295" fg:w="18"/><text x="67.6640%" y="911.50"></text></g><g><title>__x64_sys_execve (33 samples, 0.02%)</title><rect x="67.4094%" y="965" width="0.0220%" height="15" fill="rgb(251,100,45)" fg:x="101288" fg:w="33"/><text x="67.6594%" y="975.50"></text></g><g><title>do_execveat_common (33 samples, 0.02%)</title><rect x="67.4094%" y="949" width="0.0220%" height="15" fill="rgb(235,143,32)" fg:x="101288" fg:w="33"/><text x="67.6594%" y="959.50"></text></g><g><title>bprm_execve (33 samples, 0.02%)</title><rect x="67.4094%" y="933" width="0.0220%" height="15" fill="rgb(248,124,34)" fg:x="101288" fg:w="33"/><text x="67.6594%" y="943.50"></text></g><g><title>load_elf_binary (33 samples, 0.02%)</title><rect x="67.4094%" y="917" width="0.0220%" height="15" fill="rgb(225,221,4)" fg:x="101288" fg:w="33"/><text x="67.6594%" y="927.50"></text></g><g><title>free_pgtables (17 samples, 0.01%)</title><rect x="67.4407%" y="901" width="0.0113%" height="15" fill="rgb(242,27,43)" fg:x="101335" fg:w="17"/><text x="67.6907%" y="911.50"></text></g><g><title>tlb_finish_mmu (27 samples, 0.02%)</title><rect x="67.4546%" y="901" width="0.0180%" height="15" fill="rgb(227,54,8)" fg:x="101356" fg:w="27"/><text x="67.7046%" y="911.50"></text></g><g><title>release_pages (24 samples, 0.02%)</title><rect x="67.4566%" y="885" width="0.0160%" height="15" fill="rgb(253,139,49)" fg:x="101359" fg:w="24"/><text x="67.7066%" y="895.50"></text></g><g><title>mmput (64 samples, 0.04%)</title><rect x="67.4407%" y="933" width="0.0426%" height="15" fill="rgb(231,26,43)" fg:x="101335" fg:w="64"/><text x="67.6907%" y="943.50"></text></g><g><title>exit_mmap (64 samples, 0.04%)</title><rect x="67.4407%" y="917" width="0.0426%" height="15" fill="rgb(207,121,39)" fg:x="101335" fg:w="64"/><text x="67.6907%" y="927.50"></text></g><g><title>unmap_vmas (16 samples, 0.01%)</title><rect x="67.4726%" y="901" width="0.0106%" height="15" fill="rgb(223,101,35)" fg:x="101383" fg:w="16"/><text x="67.7226%" y="911.50"></text></g><g><title>unmap_page_range (16 samples, 0.01%)</title><rect x="67.4726%" y="885" width="0.0106%" height="15" fill="rgb(232,87,23)" fg:x="101383" fg:w="16"/><text x="67.7226%" y="895.50"></text></g><g><title>__x64_sys_exit (96 samples, 0.06%)</title><rect x="67.4314%" y="965" width="0.0639%" height="15" fill="rgb(225,180,29)" fg:x="101321" fg:w="96"/><text x="67.6814%" y="975.50"></text></g><g><title>do_exit (96 samples, 0.06%)</title><rect x="67.4314%" y="949" width="0.0639%" height="15" fill="rgb(225,25,17)" fg:x="101321" fg:w="96"/><text x="67.6814%" y="959.50"></text></g><g><title>task_work_run (18 samples, 0.01%)</title><rect x="67.4833%" y="933" width="0.0120%" height="15" fill="rgb(223,8,52)" fg:x="101399" fg:w="18"/><text x="67.7333%" y="943.50"></text></g><g><title>cleanup_mnt (18 samples, 0.01%)</title><rect x="67.4833%" y="917" width="0.0120%" height="15" fill="rgb(246,42,21)" fg:x="101399" fg:w="18"/><text x="67.7333%" y="927.50"></text></g><g><title>mmput (50 samples, 0.03%)</title><rect x="67.4959%" y="917" width="0.0333%" height="15" fill="rgb(205,64,43)" fg:x="101418" fg:w="50"/><text x="67.7459%" y="927.50"></text></g><g><title>exit_mmap (50 samples, 0.03%)</title><rect x="67.4959%" y="901" width="0.0333%" height="15" fill="rgb(221,160,13)" fg:x="101418" fg:w="50"/><text x="67.7459%" y="911.50"></text></g><g><title>unmap_vmas (25 samples, 0.02%)</title><rect x="67.5125%" y="885" width="0.0166%" height="15" fill="rgb(239,58,35)" fg:x="101443" fg:w="25"/><text x="67.7625%" y="895.50"></text></g><g><title>unmap_page_range (25 samples, 0.02%)</title><rect x="67.5125%" y="869" width="0.0166%" height="15" fill="rgb(251,26,40)" fg:x="101443" fg:w="25"/><text x="67.7625%" y="879.50"></text></g><g><title>__x64_sys_exit_group (54 samples, 0.04%)</title><rect x="67.4952%" y="965" width="0.0359%" height="15" fill="rgb(247,0,4)" fg:x="101417" fg:w="54"/><text x="67.7452%" y="975.50"></text></g><g><title>do_group_exit (54 samples, 0.04%)</title><rect x="67.4952%" y="949" width="0.0359%" height="15" fill="rgb(218,130,10)" fg:x="101417" fg:w="54"/><text x="67.7452%" y="959.50"></text></g><g><title>do_exit (54 samples, 0.04%)</title><rect x="67.4952%" y="933" width="0.0359%" height="15" fill="rgb(239,32,7)" fg:x="101417" fg:w="54"/><text x="67.7452%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (185 samples, 0.12%)</title><rect x="67.4094%" y="997" width="0.1231%" height="15" fill="rgb(210,192,24)" fg:x="101288" fg:w="185"/><text x="67.6594%" y="1007.50"></text></g><g><title>do_syscall_64 (185 samples, 0.12%)</title><rect x="67.4094%" y="981" width="0.1231%" height="15" fill="rgb(226,212,17)" fg:x="101288" fg:w="185"/><text x="67.6594%" y="991.50"></text></g><g><title>linux-sandbox (2,716 samples, 1.81%)</title><rect x="65.7269%" y="1013" width="1.8076%" height="15" fill="rgb(219,201,28)" fg:x="98760" fg:w="2716"/><text x="65.9769%" y="1023.50">l..</text></g><g><title>arch_fork (65 samples, 0.04%)</title><rect x="67.5611%" y="901" width="0.0433%" height="15" fill="rgb(235,207,41)" fg:x="101516" fg:w="65"/><text x="67.8111%" y="911.50"></text></g><g><title>ret_from_fork (56 samples, 0.04%)</title><rect x="67.5671%" y="885" width="0.0373%" height="15" fill="rgb(241,95,54)" fg:x="101525" fg:w="56"/><text x="67.8171%" y="895.50"></text></g><g><title>schedule_tail (56 samples, 0.04%)</title><rect x="67.5671%" y="869" width="0.0373%" height="15" fill="rgb(248,12,23)" fg:x="101525" fg:w="56"/><text x="67.8171%" y="879.50"></text></g><g><title>finish_task_switch (50 samples, 0.03%)</title><rect x="67.5711%" y="853" width="0.0333%" height="15" fill="rgb(228,173,4)" fg:x="101531" fg:w="50"/><text x="67.8211%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.03%)</title><rect x="67.5724%" y="837" width="0.0319%" height="15" fill="rgb(254,99,5)" fg:x="101533" fg:w="48"/><text x="67.8224%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (47 samples, 0.03%)</title><rect x="67.5731%" y="821" width="0.0313%" height="15" fill="rgb(212,184,17)" fg:x="101534" fg:w="47"/><text x="67.8231%" y="831.50"></text></g><g><title>native_write_msr (47 samples, 0.03%)</title><rect x="67.5731%" y="805" width="0.0313%" height="15" fill="rgb(252,174,1)" fg:x="101534" fg:w="47"/><text x="67.8231%" y="815.50"></text></g><g><title>__libc_fork (69 samples, 0.05%)</title><rect x="67.5598%" y="917" width="0.0459%" height="15" fill="rgb(241,118,51)" fg:x="101514" fg:w="69"/><text x="67.8098%" y="927.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (81 samples, 0.05%)</title><rect x="67.5525%" y="949" width="0.0539%" height="15" fill="rgb(227,94,47)" fg:x="101503" fg:w="81"/><text x="67.8025%" y="959.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (81 samples, 0.05%)</title><rect x="67.5525%" y="933" width="0.0539%" height="15" fill="rgb(229,104,2)" fg:x="101503" fg:w="81"/><text x="67.8025%" y="943.50"></text></g><g><title>__libc_start_main (96 samples, 0.06%)</title><rect x="67.5498%" y="981" width="0.0639%" height="15" fill="rgb(219,28,31)" fg:x="101499" fg:w="96"/><text x="67.7998%" y="991.50"></text></g><g><title>main (92 samples, 0.06%)</title><rect x="67.5525%" y="965" width="0.0612%" height="15" fill="rgb(233,109,36)" fg:x="101503" fg:w="92"/><text x="67.8025%" y="975.50"></text></g><g><title>_dl_map_segments (22 samples, 0.01%)</title><rect x="67.6150%" y="837" width="0.0146%" height="15" fill="rgb(246,88,11)" fg:x="101597" fg:w="22"/><text x="67.8650%" y="847.50"></text></g><g><title>__mmap64 (20 samples, 0.01%)</title><rect x="67.6164%" y="821" width="0.0133%" height="15" fill="rgb(209,212,17)" fg:x="101599" fg:w="20"/><text x="67.8664%" y="831.50"></text></g><g><title>__mmap64 (20 samples, 0.01%)</title><rect x="67.6164%" y="805" width="0.0133%" height="15" fill="rgb(243,59,29)" fg:x="101599" fg:w="20"/><text x="67.8664%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="67.6164%" y="789" width="0.0133%" height="15" fill="rgb(244,205,48)" fg:x="101599" fg:w="20"/><text x="67.8664%" y="799.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="67.6164%" y="773" width="0.0133%" height="15" fill="rgb(227,30,6)" fg:x="101599" fg:w="20"/><text x="67.8664%" y="783.50"></text></g><g><title>ksys_mmap_pgoff (20 samples, 0.01%)</title><rect x="67.6164%" y="757" width="0.0133%" height="15" fill="rgb(220,205,48)" fg:x="101599" fg:w="20"/><text x="67.8664%" y="767.50"></text></g><g><title>vm_mmap_pgoff (19 samples, 0.01%)</title><rect x="67.6170%" y="741" width="0.0126%" height="15" fill="rgb(250,94,14)" fg:x="101600" fg:w="19"/><text x="67.8670%" y="751.50"></text></g><g><title>do_mmap (19 samples, 0.01%)</title><rect x="67.6170%" y="725" width="0.0126%" height="15" fill="rgb(216,119,42)" fg:x="101600" fg:w="19"/><text x="67.8670%" y="735.50"></text></g><g><title>mmap_region (19 samples, 0.01%)</title><rect x="67.6170%" y="709" width="0.0126%" height="15" fill="rgb(232,155,0)" fg:x="101600" fg:w="19"/><text x="67.8670%" y="719.50"></text></g><g><title>_dl_map_object_from_fd (26 samples, 0.02%)</title><rect x="67.6150%" y="853" width="0.0173%" height="15" fill="rgb(212,24,32)" fg:x="101597" fg:w="26"/><text x="67.8650%" y="863.50"></text></g><g><title>_dl_map_object_deps (32 samples, 0.02%)</title><rect x="67.6150%" y="917" width="0.0213%" height="15" fill="rgb(216,69,20)" fg:x="101597" fg:w="32"/><text x="67.8650%" y="927.50"></text></g><g><title>_dl_catch_exception (32 samples, 0.02%)</title><rect x="67.6150%" y="901" width="0.0213%" height="15" fill="rgb(229,73,31)" fg:x="101597" fg:w="32"/><text x="67.8650%" y="911.50"></text></g><g><title>openaux (32 samples, 0.02%)</title><rect x="67.6150%" y="885" width="0.0213%" height="15" fill="rgb(224,219,20)" fg:x="101597" fg:w="32"/><text x="67.8650%" y="895.50"></text></g><g><title>_dl_map_object (32 samples, 0.02%)</title><rect x="67.6150%" y="869" width="0.0213%" height="15" fill="rgb(215,146,41)" fg:x="101597" fg:w="32"/><text x="67.8650%" y="879.50"></text></g><g><title>_dl_lookup_symbol_x (28 samples, 0.02%)</title><rect x="67.6470%" y="869" width="0.0186%" height="15" fill="rgb(244,71,31)" fg:x="101645" fg:w="28"/><text x="67.8970%" y="879.50"></text></g><g><title>do_lookup_x (20 samples, 0.01%)</title><rect x="67.6523%" y="853" width="0.0133%" height="15" fill="rgb(224,24,11)" fg:x="101653" fg:w="20"/><text x="67.9023%" y="863.50"></text></g><g><title>elf_machine_rela (38 samples, 0.03%)</title><rect x="67.6410%" y="885" width="0.0253%" height="15" fill="rgb(229,76,15)" fg:x="101636" fg:w="38"/><text x="67.8910%" y="895.50"></text></g><g><title>_dl_relocate_object (46 samples, 0.03%)</title><rect x="67.6370%" y="917" width="0.0306%" height="15" fill="rgb(209,93,2)" fg:x="101630" fg:w="46"/><text x="67.8870%" y="927.50"></text></g><g><title>elf_dynamic_do_Rela (46 samples, 0.03%)</title><rect x="67.6370%" y="901" width="0.0306%" height="15" fill="rgb(216,200,50)" fg:x="101630" fg:w="46"/><text x="67.8870%" y="911.50"></text></g><g><title>[ld-2.31.so] (82 samples, 0.05%)</title><rect x="67.6137%" y="933" width="0.0546%" height="15" fill="rgb(211,67,34)" fg:x="101595" fg:w="82"/><text x="67.8637%" y="943.50"></text></g><g><title>_dl_start_final (84 samples, 0.06%)</title><rect x="67.6137%" y="965" width="0.0559%" height="15" fill="rgb(225,87,47)" fg:x="101595" fg:w="84"/><text x="67.8637%" y="975.50"></text></g><g><title>_dl_sysdep_start (84 samples, 0.06%)</title><rect x="67.6137%" y="949" width="0.0559%" height="15" fill="rgb(217,185,16)" fg:x="101595" fg:w="84"/><text x="67.8637%" y="959.50"></text></g><g><title>_start (182 samples, 0.12%)</title><rect x="67.5498%" y="997" width="0.1211%" height="15" fill="rgb(205,0,0)" fg:x="101499" fg:w="182"/><text x="67.7998%" y="1007.50"></text></g><g><title>_dl_start (86 samples, 0.06%)</title><rect x="67.6137%" y="981" width="0.0572%" height="15" fill="rgb(207,116,45)" fg:x="101595" fg:w="86"/><text x="67.8637%" y="991.50"></text></g><g><title>process-wrapper (229 samples, 0.15%)</title><rect x="67.5385%" y="1013" width="0.1524%" height="15" fill="rgb(221,156,26)" fg:x="101482" fg:w="229"/><text x="67.7885%" y="1023.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="67.6749%" y="997" width="0.0160%" height="15" fill="rgb(213,140,4)" fg:x="101687" fg:w="24"/><text x="67.9249%" y="1007.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="67.6756%" y="981" width="0.0153%" height="15" fill="rgb(231,224,15)" fg:x="101688" fg:w="23"/><text x="67.9256%" y="991.50"></text></g><g><title>__GI___wait4 (64 samples, 0.04%)</title><rect x="67.7428%" y="965" width="0.0426%" height="15" fill="rgb(244,76,20)" fg:x="101789" fg:w="64"/><text x="67.9928%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="67.7435%" y="949" width="0.0419%" height="15" fill="rgb(238,117,7)" fg:x="101790" fg:w="63"/><text x="67.9935%" y="959.50"></text></g><g><title>do_syscall_64 (63 samples, 0.04%)</title><rect x="67.7435%" y="933" width="0.0419%" height="15" fill="rgb(235,1,10)" fg:x="101790" fg:w="63"/><text x="67.9935%" y="943.50"></text></g><g><title>kernel_wait4 (63 samples, 0.04%)</title><rect x="67.7435%" y="917" width="0.0419%" height="15" fill="rgb(216,165,6)" fg:x="101790" fg:w="63"/><text x="67.9935%" y="927.50"></text></g><g><title>do_wait (62 samples, 0.04%)</title><rect x="67.7441%" y="901" width="0.0413%" height="15" fill="rgb(246,91,35)" fg:x="101791" fg:w="62"/><text x="67.9941%" y="911.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (65 samples, 0.04%)</title><rect x="67.7428%" y="981" width="0.0433%" height="15" fill="rgb(228,96,24)" fg:x="101789" fg:w="65"/><text x="67.9928%" y="991.50"></text></g><g><title>__pthread_cond_timedwait (17 samples, 0.01%)</title><rect x="67.7894%" y="949" width="0.0113%" height="15" fill="rgb(254,217,53)" fg:x="101859" fg:w="17"/><text x="68.0394%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="67.7894%" y="933" width="0.0113%" height="15" fill="rgb(209,60,0)" fg:x="101859" fg:w="17"/><text x="68.0394%" y="943.50"></text></g><g><title>futex_abstimed_wait_cancelable (17 samples, 0.01%)</title><rect x="67.7894%" y="917" width="0.0113%" height="15" fill="rgb(250,93,26)" fg:x="101859" fg:w="17"/><text x="68.0394%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="67.7901%" y="901" width="0.0106%" height="15" fill="rgb(211,9,40)" fg:x="101860" fg:w="16"/><text x="68.0401%" y="911.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="67.7901%" y="885" width="0.0106%" height="15" fill="rgb(242,57,20)" fg:x="101860" fg:w="16"/><text x="68.0401%" y="895.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="67.7901%" y="869" width="0.0106%" height="15" fill="rgb(248,85,48)" fg:x="101860" fg:w="16"/><text x="68.0401%" y="879.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="67.7901%" y="853" width="0.0106%" height="15" fill="rgb(212,117,2)" fg:x="101860" fg:w="16"/><text x="68.0401%" y="863.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="67.7901%" y="837" width="0.0106%" height="15" fill="rgb(243,19,3)" fg:x="101860" fg:w="16"/><text x="68.0401%" y="847.50"></text></g><g><title>Unsafe_Park (22 samples, 0.01%)</title><rect x="67.7881%" y="981" width="0.0146%" height="15" fill="rgb(232,217,24)" fg:x="101857" fg:w="22"/><text x="68.0381%" y="991.50"></text></g><g><title>Parker::park (21 samples, 0.01%)</title><rect x="67.7887%" y="965" width="0.0140%" height="15" fill="rgb(224,175,40)" fg:x="101858" fg:w="21"/><text x="68.0387%" y="975.50"></text></g><g><title>[perf-943567.map] (165 samples, 0.11%)</title><rect x="67.6942%" y="997" width="0.1098%" height="15" fill="rgb(212,162,32)" fg:x="101716" fg:w="165"/><text x="67.9442%" y="1007.50"></text></g><g><title>process_reaper (174 samples, 0.12%)</title><rect x="67.6909%" y="1013" width="0.1158%" height="15" fill="rgb(215,9,4)" fg:x="101711" fg:w="174"/><text x="67.9409%" y="1023.50"></text></g><g><title>[anon] (18 samples, 0.01%)</title><rect x="67.8067%" y="997" width="0.0120%" height="15" fill="rgb(242,42,7)" fg:x="101885" fg:w="18"/><text x="68.0567%" y="1007.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (29 samples, 0.02%)</title><rect x="68.0729%" y="981" width="0.0193%" height="15" fill="rgb(242,184,45)" fg:x="102285" fg:w="29"/><text x="68.3229%" y="991.50"></text></g><g><title>deflate (29 samples, 0.02%)</title><rect x="68.0729%" y="965" width="0.0193%" height="15" fill="rgb(228,111,51)" fg:x="102285" fg:w="29"/><text x="68.3229%" y="975.50"></text></g><g><title>[libz.so.1.2.11] (29 samples, 0.02%)</title><rect x="68.0729%" y="949" width="0.0193%" height="15" fill="rgb(236,147,17)" fg:x="102285" fg:w="29"/><text x="68.3229%" y="959.50"></text></g><g><title>[libz.so.1.2.11] (17 samples, 0.01%)</title><rect x="68.0809%" y="933" width="0.0113%" height="15" fill="rgb(210,75,22)" fg:x="102297" fg:w="17"/><text x="68.3309%" y="943.50"></text></g><g><title>dequeue_task_fair (16 samples, 0.01%)</title><rect x="68.1295%" y="773" width="0.0106%" height="15" fill="rgb(217,159,45)" fg:x="102370" fg:w="16"/><text x="68.3795%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.04%)</title><rect x="68.1408%" y="757" width="0.0353%" height="15" fill="rgb(245,165,53)" fg:x="102387" fg:w="53"/><text x="68.3908%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.03%)</title><rect x="68.1421%" y="741" width="0.0339%" height="15" fill="rgb(251,190,50)" fg:x="102389" fg:w="51"/><text x="68.3921%" y="751.50"></text></g><g><title>native_write_msr (50 samples, 0.03%)</title><rect x="68.1428%" y="725" width="0.0333%" height="15" fill="rgb(208,203,29)" fg:x="102390" fg:w="50"/><text x="68.3928%" y="735.50"></text></g><g><title>finish_task_switch (57 samples, 0.04%)</title><rect x="68.1401%" y="773" width="0.0379%" height="15" fill="rgb(207,209,35)" fg:x="102386" fg:w="57"/><text x="68.3901%" y="783.50"></text></g><g><title>futex_wait_queue_me (100 samples, 0.07%)</title><rect x="68.1228%" y="821" width="0.0666%" height="15" fill="rgb(230,144,49)" fg:x="102360" fg:w="100"/><text x="68.3728%" y="831.50"></text></g><g><title>schedule (95 samples, 0.06%)</title><rect x="68.1262%" y="805" width="0.0632%" height="15" fill="rgb(229,31,6)" fg:x="102365" fg:w="95"/><text x="68.3762%" y="815.50"></text></g><g><title>__schedule (93 samples, 0.06%)</title><rect x="68.1275%" y="789" width="0.0619%" height="15" fill="rgb(251,129,24)" fg:x="102367" fg:w="93"/><text x="68.3775%" y="799.50"></text></g><g><title>do_syscall_64 (106 samples, 0.07%)</title><rect x="68.1195%" y="885" width="0.0705%" height="15" fill="rgb(235,105,15)" fg:x="102355" fg:w="106"/><text x="68.3695%" y="895.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.07%)</title><rect x="68.1202%" y="869" width="0.0699%" height="15" fill="rgb(216,52,43)" fg:x="102356" fg:w="105"/><text x="68.3702%" y="879.50"></text></g><g><title>do_futex (105 samples, 0.07%)</title><rect x="68.1202%" y="853" width="0.0699%" height="15" fill="rgb(238,144,41)" fg:x="102356" fg:w="105"/><text x="68.3702%" y="863.50"></text></g><g><title>futex_wait (104 samples, 0.07%)</title><rect x="68.1208%" y="837" width="0.0692%" height="15" fill="rgb(243,63,9)" fg:x="102357" fg:w="104"/><text x="68.3708%" y="847.50"></text></g><g><title>__pthread_cond_wait (125 samples, 0.08%)</title><rect x="68.1102%" y="949" width="0.0832%" height="15" fill="rgb(246,208,1)" fg:x="102341" fg:w="125"/><text x="68.3602%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (125 samples, 0.08%)</title><rect x="68.1102%" y="933" width="0.0832%" height="15" fill="rgb(233,182,18)" fg:x="102341" fg:w="125"/><text x="68.3602%" y="943.50"></text></g><g><title>futex_wait_cancelable (118 samples, 0.08%)</title><rect x="68.1148%" y="917" width="0.0785%" height="15" fill="rgb(242,224,8)" fg:x="102348" fg:w="118"/><text x="68.3648%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (112 samples, 0.07%)</title><rect x="68.1188%" y="901" width="0.0745%" height="15" fill="rgb(243,54,37)" fg:x="102354" fg:w="112"/><text x="68.3688%" y="911.50"></text></g><g><title>Parker::park (149 samples, 0.10%)</title><rect x="68.1015%" y="965" width="0.0992%" height="15" fill="rgb(233,192,12)" fg:x="102328" fg:w="149"/><text x="68.3515%" y="975.50"></text></g><g><title>Unsafe_Park (156 samples, 0.10%)</title><rect x="68.0982%" y="981" width="0.1038%" height="15" fill="rgb(251,192,53)" fg:x="102323" fg:w="156"/><text x="68.3482%" y="991.50"></text></g><g><title>[perf-943567.map] (578 samples, 0.38%)</title><rect x="67.8194%" y="997" width="0.3847%" height="15" fill="rgb(246,141,26)" fg:x="101904" fg:w="578"/><text x="68.0694%" y="1007.50"></text></g><g><title>profile-writer- (614 samples, 0.41%)</title><rect x="67.8067%" y="1013" width="0.4086%" height="15" fill="rgb(239,195,19)" fg:x="101885" fg:w="614"/><text x="68.0567%" y="1023.50"></text></g><g><title>[anon] (33 samples, 0.02%)</title><rect x="68.2313%" y="997" width="0.0220%" height="15" fill="rgb(241,16,39)" fg:x="102523" fg:w="33"/><text x="68.4813%" y="1007.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="68.2666%" y="661" width="0.0173%" height="15" fill="rgb(223,13,53)" fg:x="102576" fg:w="26"/><text x="68.5166%" y="671.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="68.2666%" y="645" width="0.0173%" height="15" fill="rgb(214,227,0)" fg:x="102576" fg:w="26"/><text x="68.5166%" y="655.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.2666%" y="629" width="0.0173%" height="15" fill="rgb(228,103,26)" fg:x="102576" fg:w="26"/><text x="68.5166%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.2666%" y="613" width="0.0173%" height="15" fill="rgb(254,177,53)" fg:x="102576" fg:w="26"/><text x="68.5166%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.2672%" y="597" width="0.0166%" height="15" fill="rgb(208,201,34)" fg:x="102577" fg:w="25"/><text x="68.5172%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.2672%" y="581" width="0.0166%" height="15" fill="rgb(212,39,5)" fg:x="102577" fg:w="25"/><text x="68.5172%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.2672%" y="565" width="0.0166%" height="15" fill="rgb(246,117,3)" fg:x="102577" fg:w="25"/><text x="68.5172%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.2672%" y="549" width="0.0166%" height="15" fill="rgb(244,118,39)" fg:x="102577" fg:w="25"/><text x="68.5172%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.2679%" y="533" width="0.0160%" height="15" fill="rgb(241,64,10)" fg:x="102578" fg:w="24"/><text x="68.5179%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.2679%" y="517" width="0.0160%" height="15" fill="rgb(229,39,44)" fg:x="102578" fg:w="24"/><text x="68.5179%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.2679%" y="501" width="0.0160%" height="15" fill="rgb(230,226,3)" fg:x="102578" fg:w="24"/><text x="68.5179%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.2679%" y="485" width="0.0160%" height="15" fill="rgb(222,13,42)" fg:x="102578" fg:w="24"/><text x="68.5179%" y="495.50"></text></g><g><title>PyImport_ImportModuleLevelObject (29 samples, 0.02%)</title><rect x="68.2666%" y="981" width="0.0193%" height="15" fill="rgb(247,180,54)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="991.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (29 samples, 0.02%)</title><rect x="68.2666%" y="965" width="0.0193%" height="15" fill="rgb(205,96,16)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="975.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.2666%" y="949" width="0.0193%" height="15" fill="rgb(205,100,21)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="959.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.02%)</title><rect x="68.2666%" y="933" width="0.0193%" height="15" fill="rgb(248,51,4)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="943.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="917" width="0.0193%" height="15" fill="rgb(217,197,30)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.02%)</title><rect x="68.2666%" y="901" width="0.0193%" height="15" fill="rgb(240,179,40)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="885" width="0.0193%" height="15" fill="rgb(212,185,35)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.02%)</title><rect x="68.2666%" y="869" width="0.0193%" height="15" fill="rgb(251,222,31)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="853" width="0.0193%" height="15" fill="rgb(208,140,36)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.02%)</title><rect x="68.2666%" y="837" width="0.0193%" height="15" fill="rgb(220,148,1)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="821" width="0.0193%" height="15" fill="rgb(254,4,28)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.02%)</title><rect x="68.2666%" y="805" width="0.0193%" height="15" fill="rgb(222,185,44)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="815.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.2666%" y="789" width="0.0193%" height="15" fill="rgb(215,74,39)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="773" width="0.0193%" height="15" fill="rgb(247,86,4)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="783.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.2666%" y="757" width="0.0193%" height="15" fill="rgb(231,105,32)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="767.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.2666%" y="741" width="0.0193%" height="15" fill="rgb(222,65,35)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="751.50"></text></g><g><title>PyEval_EvalCode (29 samples, 0.02%)</title><rect x="68.2666%" y="725" width="0.0193%" height="15" fill="rgb(218,145,35)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="735.50"></text></g><g><title>_PyEval_EvalCodeWithName (29 samples, 0.02%)</title><rect x="68.2666%" y="709" width="0.0193%" height="15" fill="rgb(208,7,15)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="719.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.2666%" y="693" width="0.0193%" height="15" fill="rgb(209,83,13)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.02%)</title><rect x="68.2666%" y="677" width="0.0193%" height="15" fill="rgb(218,3,10)" fg:x="102576" fg:w="29"/><text x="68.5166%" y="687.50"></text></g><g><title>PyImport_ImportModuleLevelObject (17 samples, 0.01%)</title><rect x="68.3378%" y="949" width="0.0113%" height="15" fill="rgb(211,219,4)" fg:x="102683" fg:w="17"/><text x="68.5878%" y="959.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (17 samples, 0.01%)</title><rect x="68.3378%" y="933" width="0.0113%" height="15" fill="rgb(228,194,12)" fg:x="102683" fg:w="17"/><text x="68.5878%" y="943.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.3378%" y="917" width="0.0113%" height="15" fill="rgb(210,175,7)" fg:x="102683" fg:w="17"/><text x="68.5878%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.3378%" y="901" width="0.0113%" height="15" fill="rgb(243,132,6)" fg:x="102683" fg:w="17"/><text x="68.5878%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="885" width="0.0106%" height="15" fill="rgb(207,72,18)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.3385%" y="869" width="0.0106%" height="15" fill="rgb(236,1,18)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="853" width="0.0106%" height="15" fill="rgb(227,0,18)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.3385%" y="837" width="0.0106%" height="15" fill="rgb(247,37,5)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="821" width="0.0106%" height="15" fill="rgb(237,179,24)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.3385%" y="805" width="0.0106%" height="15" fill="rgb(226,53,20)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="789" width="0.0106%" height="15" fill="rgb(247,75,7)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.3385%" y="773" width="0.0106%" height="15" fill="rgb(233,96,12)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="783.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3385%" y="757" width="0.0106%" height="15" fill="rgb(224,125,0)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="741" width="0.0106%" height="15" fill="rgb(224,92,25)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="751.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3385%" y="725" width="0.0106%" height="15" fill="rgb(224,42,24)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="735.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3385%" y="709" width="0.0106%" height="15" fill="rgb(234,132,49)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="719.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.3385%" y="693" width="0.0106%" height="15" fill="rgb(248,100,35)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="703.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.3385%" y="677" width="0.0106%" height="15" fill="rgb(239,94,40)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="687.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3385%" y="661" width="0.0106%" height="15" fill="rgb(235,139,28)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3385%" y="645" width="0.0106%" height="15" fill="rgb(217,144,7)" fg:x="102684" fg:w="16"/><text x="68.5885%" y="655.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3504%" y="949" width="0.0106%" height="15" fill="rgb(227,55,4)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="959.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3504%" y="933" width="0.0106%" height="15" fill="rgb(252,82,54)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="943.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.3504%" y="917" width="0.0106%" height="15" fill="rgb(245,172,4)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="927.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.3504%" y="901" width="0.0106%" height="15" fill="rgb(207,26,27)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="911.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.3504%" y="885" width="0.0106%" height="15" fill="rgb(252,98,18)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.3504%" y="869" width="0.0106%" height="15" fill="rgb(244,8,26)" fg:x="102702" fg:w="16"/><text x="68.6004%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.3378%" y="965" width="0.0253%" height="15" fill="rgb(237,173,45)" fg:x="102683" fg:w="38"/><text x="68.5878%" y="975.50"></text></g><g><title>PyImport_ImportModuleLevelObject (31 samples, 0.02%)</title><rect x="68.3631%" y="693" width="0.0206%" height="15" fill="rgb(208,213,49)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="703.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (31 samples, 0.02%)</title><rect x="68.3631%" y="677" width="0.0206%" height="15" fill="rgb(212,122,37)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="687.50"></text></g><g><title>[python3.9] (31 samples, 0.02%)</title><rect x="68.3631%" y="661" width="0.0206%" height="15" fill="rgb(213,80,17)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3631%" y="645" width="0.0206%" height="15" fill="rgb(206,210,43)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.3631%" y="629" width="0.0206%" height="15" fill="rgb(229,214,3)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3631%" y="613" width="0.0206%" height="15" fill="rgb(235,213,29)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.3631%" y="597" width="0.0206%" height="15" fill="rgb(248,135,26)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3631%" y="581" width="0.0206%" height="15" fill="rgb(242,188,12)" fg:x="102721" fg:w="31"/><text x="68.6131%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.3677%" y="565" width="0.0160%" height="15" fill="rgb(245,38,12)" fg:x="102728" fg:w="24"/><text x="68.6177%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.3677%" y="549" width="0.0160%" height="15" fill="rgb(218,42,13)" fg:x="102728" fg:w="24"/><text x="68.6177%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.3677%" y="533" width="0.0160%" height="15" fill="rgb(238,132,49)" fg:x="102728" fg:w="24"/><text x="68.6177%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.3677%" y="517" width="0.0160%" height="15" fill="rgb(209,196,19)" fg:x="102728" fg:w="24"/><text x="68.6177%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.3631%" y="965" width="0.0226%" height="15" fill="rgb(244,131,22)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="975.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="949" width="0.0226%" height="15" fill="rgb(223,18,34)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="959.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.3631%" y="933" width="0.0226%" height="15" fill="rgb(252,124,54)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="943.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="917" width="0.0226%" height="15" fill="rgb(229,106,42)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.3631%" y="901" width="0.0226%" height="15" fill="rgb(221,129,1)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="885" width="0.0226%" height="15" fill="rgb(229,74,15)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.3631%" y="869" width="0.0226%" height="15" fill="rgb(210,206,50)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="853" width="0.0226%" height="15" fill="rgb(251,114,31)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.3631%" y="837" width="0.0226%" height="15" fill="rgb(215,225,28)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="847.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.3631%" y="821" width="0.0226%" height="15" fill="rgb(237,109,14)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="805" width="0.0226%" height="15" fill="rgb(230,13,37)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="815.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.3631%" y="789" width="0.0226%" height="15" fill="rgb(231,40,28)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="799.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.3631%" y="773" width="0.0226%" height="15" fill="rgb(231,202,18)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="783.50"></text></g><g><title>PyEval_EvalCode (34 samples, 0.02%)</title><rect x="68.3631%" y="757" width="0.0226%" height="15" fill="rgb(225,33,18)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="767.50"></text></g><g><title>_PyEval_EvalCodeWithName (34 samples, 0.02%)</title><rect x="68.3631%" y="741" width="0.0226%" height="15" fill="rgb(223,64,47)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="751.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.3631%" y="725" width="0.0226%" height="15" fill="rgb(234,114,13)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.3631%" y="709" width="0.0226%" height="15" fill="rgb(248,56,40)" fg:x="102721" fg:w="34"/><text x="68.6131%" y="719.50"></text></g><g><title>[python3.9] (123 samples, 0.08%)</title><rect x="68.3045%" y="981" width="0.0819%" height="15" fill="rgb(221,194,21)" fg:x="102633" fg:w="123"/><text x="68.5545%" y="991.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4017%" y="453" width="0.0120%" height="15" fill="rgb(242,108,46)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4017%" y="437" width="0.0120%" height="15" fill="rgb(220,106,10)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="447.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4017%" y="421" width="0.0120%" height="15" fill="rgb(211,88,4)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="431.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4017%" y="405" width="0.0120%" height="15" fill="rgb(214,95,34)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="415.50"></text></g><g><title>PyEval_EvalCode (18 samples, 0.01%)</title><rect x="68.4017%" y="389" width="0.0120%" height="15" fill="rgb(250,160,33)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="399.50"></text></g><g><title>_PyEval_EvalCodeWithName (18 samples, 0.01%)</title><rect x="68.4017%" y="373" width="0.0120%" height="15" fill="rgb(225,29,10)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="383.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4017%" y="357" width="0.0120%" height="15" fill="rgb(224,28,30)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="367.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4017%" y="341" width="0.0120%" height="15" fill="rgb(231,77,4)" fg:x="102779" fg:w="18"/><text x="68.6517%" y="351.50"></text></g><g><title>PyImport_ImportModuleLevelObject (38 samples, 0.03%)</title><rect x="68.3964%" y="645" width="0.0253%" height="15" fill="rgb(209,63,21)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="655.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (38 samples, 0.03%)</title><rect x="68.3964%" y="629" width="0.0253%" height="15" fill="rgb(226,22,11)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="639.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.3964%" y="613" width="0.0253%" height="15" fill="rgb(216,82,30)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.3964%" y="597" width="0.0253%" height="15" fill="rgb(246,227,38)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.3964%" y="581" width="0.0253%" height="15" fill="rgb(251,203,53)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.3964%" y="565" width="0.0253%" height="15" fill="rgb(254,101,1)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.3964%" y="549" width="0.0253%" height="15" fill="rgb(241,180,5)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.3964%" y="533" width="0.0253%" height="15" fill="rgb(218,168,4)" fg:x="102771" fg:w="38"/><text x="68.6464%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.3997%" y="517" width="0.0220%" height="15" fill="rgb(224,223,32)" fg:x="102776" fg:w="33"/><text x="68.6497%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.4010%" y="501" width="0.0206%" height="15" fill="rgb(236,106,22)" fg:x="102778" fg:w="31"/><text x="68.6510%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.4010%" y="485" width="0.0206%" height="15" fill="rgb(206,121,5)" fg:x="102778" fg:w="31"/><text x="68.6510%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.4017%" y="469" width="0.0200%" height="15" fill="rgb(233,87,28)" fg:x="102779" fg:w="30"/><text x="68.6517%" y="479.50"></text></g><g><title>PyImport_ImportModuleLevelObject (44 samples, 0.03%)</title><rect x="68.3957%" y="965" width="0.0293%" height="15" fill="rgb(236,137,17)" fg:x="102770" fg:w="44"/><text x="68.6457%" y="975.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (44 samples, 0.03%)</title><rect x="68.3957%" y="949" width="0.0293%" height="15" fill="rgb(209,183,38)" fg:x="102770" fg:w="44"/><text x="68.6457%" y="959.50"></text></g><g><title>[python3.9] (44 samples, 0.03%)</title><rect x="68.3957%" y="933" width="0.0293%" height="15" fill="rgb(206,162,44)" fg:x="102770" fg:w="44"/><text x="68.6457%" y="943.50"></text></g><g><title>_PyFunction_Vectorcall (44 samples, 0.03%)</title><rect x="68.3957%" y="917" width="0.0293%" height="15" fill="rgb(237,70,39)" fg:x="102770" fg:w="44"/><text x="68.6457%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="901" width="0.0286%" height="15" fill="rgb(212,176,5)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.03%)</title><rect x="68.3964%" y="885" width="0.0286%" height="15" fill="rgb(232,95,16)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="869" width="0.0286%" height="15" fill="rgb(219,115,35)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.03%)</title><rect x="68.3964%" y="853" width="0.0286%" height="15" fill="rgb(251,67,27)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="837" width="0.0286%" height="15" fill="rgb(222,95,40)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.03%)</title><rect x="68.3964%" y="821" width="0.0286%" height="15" fill="rgb(250,35,16)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="805" width="0.0286%" height="15" fill="rgb(224,86,44)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.03%)</title><rect x="68.3964%" y="789" width="0.0286%" height="15" fill="rgb(237,53,53)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="799.50"></text></g><g><title>[python3.9] (43 samples, 0.03%)</title><rect x="68.3964%" y="773" width="0.0286%" height="15" fill="rgb(208,171,33)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="757" width="0.0286%" height="15" fill="rgb(222,64,27)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="767.50"></text></g><g><title>[python3.9] (43 samples, 0.03%)</title><rect x="68.3964%" y="741" width="0.0286%" height="15" fill="rgb(221,121,35)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="751.50"></text></g><g><title>[python3.9] (43 samples, 0.03%)</title><rect x="68.3964%" y="725" width="0.0286%" height="15" fill="rgb(228,137,42)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="735.50"></text></g><g><title>PyEval_EvalCode (43 samples, 0.03%)</title><rect x="68.3964%" y="709" width="0.0286%" height="15" fill="rgb(227,54,21)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="719.50"></text></g><g><title>_PyEval_EvalCodeWithName (43 samples, 0.03%)</title><rect x="68.3964%" y="693" width="0.0286%" height="15" fill="rgb(240,168,33)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="703.50"></text></g><g><title>[python3.9] (43 samples, 0.03%)</title><rect x="68.3964%" y="677" width="0.0286%" height="15" fill="rgb(243,159,6)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.03%)</title><rect x="68.3964%" y="661" width="0.0286%" height="15" fill="rgb(205,211,41)" fg:x="102771" fg:w="43"/><text x="68.6464%" y="671.50"></text></g><g><title>PyImport_ImportModuleLevelObject (20 samples, 0.01%)</title><rect x="68.4270%" y="869" width="0.0133%" height="15" fill="rgb(253,30,1)" fg:x="102817" fg:w="20"/><text x="68.6770%" y="879.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (20 samples, 0.01%)</title><rect x="68.4270%" y="853" width="0.0133%" height="15" fill="rgb(226,80,18)" fg:x="102817" fg:w="20"/><text x="68.6770%" y="863.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4270%" y="837" width="0.0133%" height="15" fill="rgb(253,156,46)" fg:x="102817" fg:w="20"/><text x="68.6770%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.4270%" y="821" width="0.0133%" height="15" fill="rgb(248,87,27)" fg:x="102817" fg:w="20"/><text x="68.6770%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="805" width="0.0120%" height="15" fill="rgb(227,122,2)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.4283%" y="789" width="0.0120%" height="15" fill="rgb(229,94,39)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="773" width="0.0120%" height="15" fill="rgb(225,173,31)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.4283%" y="757" width="0.0120%" height="15" fill="rgb(239,176,30)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="741" width="0.0120%" height="15" fill="rgb(212,104,21)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.4283%" y="725" width="0.0120%" height="15" fill="rgb(240,209,40)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="709" width="0.0120%" height="15" fill="rgb(234,195,5)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.4283%" y="693" width="0.0120%" height="15" fill="rgb(238,213,1)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="703.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4283%" y="677" width="0.0120%" height="15" fill="rgb(235,182,54)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="661" width="0.0120%" height="15" fill="rgb(229,50,46)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="671.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4283%" y="645" width="0.0120%" height="15" fill="rgb(219,145,13)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="655.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4283%" y="629" width="0.0120%" height="15" fill="rgb(220,226,10)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="639.50"></text></g><g><title>PyEval_EvalCode (18 samples, 0.01%)</title><rect x="68.4283%" y="613" width="0.0120%" height="15" fill="rgb(248,47,30)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="623.50"></text></g><g><title>_PyEval_EvalCodeWithName (18 samples, 0.01%)</title><rect x="68.4283%" y="597" width="0.0120%" height="15" fill="rgb(231,209,44)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="607.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4283%" y="581" width="0.0120%" height="15" fill="rgb(209,80,30)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4283%" y="565" width="0.0120%" height="15" fill="rgb(232,9,14)" fg:x="102819" fg:w="18"/><text x="68.6783%" y="575.50"></text></g><g><title>PyEval_EvalCode (25 samples, 0.02%)</title><rect x="68.4270%" y="933" width="0.0166%" height="15" fill="rgb(243,91,43)" fg:x="102817" fg:w="25"/><text x="68.6770%" y="943.50"></text></g><g><title>_PyEval_EvalCodeWithName (25 samples, 0.02%)</title><rect x="68.4270%" y="917" width="0.0166%" height="15" fill="rgb(231,90,52)" fg:x="102817" fg:w="25"/><text x="68.6770%" y="927.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.4270%" y="901" width="0.0166%" height="15" fill="rgb(253,192,44)" fg:x="102817" fg:w="25"/><text x="68.6770%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.4270%" y="885" width="0.0166%" height="15" fill="rgb(241,66,31)" fg:x="102817" fg:w="25"/><text x="68.6770%" y="895.50"></text></g><g><title>[python3.9] (28 samples, 0.02%)</title><rect x="68.4270%" y="965" width="0.0186%" height="15" fill="rgb(235,81,37)" fg:x="102817" fg:w="28"/><text x="68.6770%" y="975.50"></text></g><g><title>[python3.9] (28 samples, 0.02%)</title><rect x="68.4270%" y="949" width="0.0186%" height="15" fill="rgb(223,221,9)" fg:x="102817" fg:w="28"/><text x="68.6770%" y="959.50"></text></g><g><title>PyImport_ImportModuleLevelObject (20 samples, 0.01%)</title><rect x="68.4476%" y="821" width="0.0133%" height="15" fill="rgb(242,180,7)" fg:x="102848" fg:w="20"/><text x="68.6976%" y="831.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (20 samples, 0.01%)</title><rect x="68.4476%" y="805" width="0.0133%" height="15" fill="rgb(243,78,19)" fg:x="102848" fg:w="20"/><text x="68.6976%" y="815.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4476%" y="789" width="0.0133%" height="15" fill="rgb(233,23,17)" fg:x="102848" fg:w="20"/><text x="68.6976%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.4476%" y="773" width="0.0133%" height="15" fill="rgb(252,122,45)" fg:x="102848" fg:w="20"/><text x="68.6976%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="757" width="0.0113%" height="15" fill="rgb(247,108,20)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4496%" y="741" width="0.0113%" height="15" fill="rgb(235,84,21)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="725" width="0.0113%" height="15" fill="rgb(247,129,10)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4496%" y="709" width="0.0113%" height="15" fill="rgb(208,173,14)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="693" width="0.0113%" height="15" fill="rgb(236,31,38)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4496%" y="677" width="0.0113%" height="15" fill="rgb(232,65,17)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="661" width="0.0113%" height="15" fill="rgb(224,45,49)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4496%" y="645" width="0.0113%" height="15" fill="rgb(225,2,53)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="655.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4496%" y="629" width="0.0113%" height="15" fill="rgb(248,210,53)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="613" width="0.0113%" height="15" fill="rgb(211,1,30)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="623.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4496%" y="597" width="0.0113%" height="15" fill="rgb(224,96,15)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="607.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4496%" y="581" width="0.0113%" height="15" fill="rgb(252,45,11)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="591.50"></text></g><g><title>PyEval_EvalCode (17 samples, 0.01%)</title><rect x="68.4496%" y="565" width="0.0113%" height="15" fill="rgb(220,125,38)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="575.50"></text></g><g><title>_PyEval_EvalCodeWithName (17 samples, 0.01%)</title><rect x="68.4496%" y="549" width="0.0113%" height="15" fill="rgb(243,161,33)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="559.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4496%" y="533" width="0.0113%" height="15" fill="rgb(248,197,34)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4496%" y="517" width="0.0113%" height="15" fill="rgb(228,165,23)" fg:x="102851" fg:w="17"/><text x="68.6996%" y="527.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.4476%" y="917" width="0.0140%" height="15" fill="rgb(236,94,38)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="927.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.4476%" y="901" width="0.0140%" height="15" fill="rgb(220,13,23)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="911.50"></text></g><g><title>PyEval_EvalCode (21 samples, 0.01%)</title><rect x="68.4476%" y="885" width="0.0140%" height="15" fill="rgb(234,26,39)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="895.50"></text></g><g><title>_PyEval_EvalCodeWithName (21 samples, 0.01%)</title><rect x="68.4476%" y="869" width="0.0140%" height="15" fill="rgb(205,117,44)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="879.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.4476%" y="853" width="0.0140%" height="15" fill="rgb(250,42,2)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (21 samples, 0.01%)</title><rect x="68.4476%" y="837" width="0.0140%" height="15" fill="rgb(223,83,14)" fg:x="102848" fg:w="21"/><text x="68.6976%" y="847.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4456%" y="949" width="0.0173%" height="15" fill="rgb(241,147,50)" fg:x="102845" fg:w="26"/><text x="68.6956%" y="959.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.4456%" y="933" width="0.0173%" height="15" fill="rgb(218,90,6)" fg:x="102845" fg:w="26"/><text x="68.6956%" y="943.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4629%" y="885" width="0.0113%" height="15" fill="rgb(210,191,5)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="895.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4629%" y="869" width="0.0113%" height="15" fill="rgb(225,139,19)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="879.50"></text></g><g><title>PyEval_EvalCode (17 samples, 0.01%)</title><rect x="68.4629%" y="853" width="0.0113%" height="15" fill="rgb(210,1,33)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="863.50"></text></g><g><title>_PyEval_EvalCodeWithName (17 samples, 0.01%)</title><rect x="68.4629%" y="837" width="0.0113%" height="15" fill="rgb(213,50,3)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="847.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4629%" y="821" width="0.0113%" height="15" fill="rgb(234,227,4)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4629%" y="805" width="0.0113%" height="15" fill="rgb(246,63,5)" fg:x="102871" fg:w="17"/><text x="68.7129%" y="815.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4629%" y="917" width="0.0120%" height="15" fill="rgb(245,136,27)" fg:x="102871" fg:w="18"/><text x="68.7129%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.4629%" y="901" width="0.0120%" height="15" fill="rgb(247,199,27)" fg:x="102871" fg:w="18"/><text x="68.7129%" y="911.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4756%" y="533" width="0.0126%" height="15" fill="rgb(252,158,49)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="543.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4756%" y="517" width="0.0126%" height="15" fill="rgb(254,73,1)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="527.50"></text></g><g><title>PyEval_EvalCode (19 samples, 0.01%)</title><rect x="68.4756%" y="501" width="0.0126%" height="15" fill="rgb(248,93,19)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="511.50"></text></g><g><title>_PyEval_EvalCodeWithName (19 samples, 0.01%)</title><rect x="68.4756%" y="485" width="0.0126%" height="15" fill="rgb(206,67,5)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="495.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4756%" y="469" width="0.0126%" height="15" fill="rgb(209,210,4)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.4756%" y="453" width="0.0126%" height="15" fill="rgb(214,185,36)" fg:x="102890" fg:w="19"/><text x="68.7256%" y="463.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4756%" y="565" width="0.0133%" height="15" fill="rgb(233,191,26)" fg:x="102890" fg:w="20"/><text x="68.7256%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.4756%" y="549" width="0.0133%" height="15" fill="rgb(248,94,17)" fg:x="102890" fg:w="20"/><text x="68.7256%" y="559.50"></text></g><g><title>PyImport_ImportModuleLevelObject (24 samples, 0.02%)</title><rect x="68.4749%" y="757" width="0.0160%" height="15" fill="rgb(250,64,4)" fg:x="102889" fg:w="24"/><text x="68.7249%" y="767.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (24 samples, 0.02%)</title><rect x="68.4749%" y="741" width="0.0160%" height="15" fill="rgb(218,41,53)" fg:x="102889" fg:w="24"/><text x="68.7249%" y="751.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.4749%" y="725" width="0.0160%" height="15" fill="rgb(251,176,28)" fg:x="102889" fg:w="24"/><text x="68.7249%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.4749%" y="709" width="0.0160%" height="15" fill="rgb(247,22,9)" fg:x="102889" fg:w="24"/><text x="68.7249%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4756%" y="693" width="0.0153%" height="15" fill="rgb(218,201,14)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.4756%" y="677" width="0.0153%" height="15" fill="rgb(218,94,10)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4756%" y="661" width="0.0153%" height="15" fill="rgb(222,183,52)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.4756%" y="645" width="0.0153%" height="15" fill="rgb(242,140,25)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4756%" y="629" width="0.0153%" height="15" fill="rgb(235,197,38)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.4756%" y="613" width="0.0153%" height="15" fill="rgb(237,136,15)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4756%" y="597" width="0.0153%" height="15" fill="rgb(223,44,49)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.4756%" y="581" width="0.0153%" height="15" fill="rgb(227,71,15)" fg:x="102890" fg:w="23"/><text x="68.7256%" y="591.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4749%" y="885" width="0.0173%" height="15" fill="rgb(225,153,20)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.4749%" y="869" width="0.0173%" height="15" fill="rgb(210,190,26)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="879.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4749%" y="853" width="0.0173%" height="15" fill="rgb(223,147,5)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="863.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4749%" y="837" width="0.0173%" height="15" fill="rgb(207,14,23)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="847.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.02%)</title><rect x="68.4749%" y="821" width="0.0173%" height="15" fill="rgb(211,195,53)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="831.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.02%)</title><rect x="68.4749%" y="805" width="0.0173%" height="15" fill="rgb(237,75,46)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="815.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4749%" y="789" width="0.0173%" height="15" fill="rgb(254,55,14)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.4749%" y="773" width="0.0173%" height="15" fill="rgb(230,185,30)" fg:x="102889" fg:w="26"/><text x="68.7249%" y="783.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4955%" y="389" width="0.0106%" height="15" fill="rgb(220,14,11)" fg:x="102920" fg:w="16"/><text x="68.7455%" y="399.50"></text></g><g><title>_PyObject_MakeTpCall (16 samples, 0.01%)</title><rect x="68.4955%" y="373" width="0.0106%" height="15" fill="rgb(215,169,44)" fg:x="102920" fg:w="16"/><text x="68.7455%" y="383.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4955%" y="357" width="0.0106%" height="15" fill="rgb(253,203,20)" fg:x="102920" fg:w="16"/><text x="68.7455%" y="367.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.4955%" y="405" width="0.0120%" height="15" fill="rgb(229,225,17)" fg:x="102920" fg:w="18"/><text x="68.7455%" y="415.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.4935%" y="533" width="0.0153%" height="15" fill="rgb(236,76,26)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4935%" y="517" width="0.0153%" height="15" fill="rgb(234,15,30)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="527.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.4935%" y="501" width="0.0153%" height="15" fill="rgb(211,113,48)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="511.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.4935%" y="485" width="0.0153%" height="15" fill="rgb(221,31,36)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="495.50"></text></g><g><title>PyEval_EvalCode (23 samples, 0.02%)</title><rect x="68.4935%" y="469" width="0.0153%" height="15" fill="rgb(215,118,52)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="479.50"></text></g><g><title>_PyEval_EvalCodeWithName (23 samples, 0.02%)</title><rect x="68.4935%" y="453" width="0.0153%" height="15" fill="rgb(241,151,27)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="463.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.4935%" y="437" width="0.0153%" height="15" fill="rgb(253,51,3)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.4935%" y="421" width="0.0153%" height="15" fill="rgb(216,201,24)" fg:x="102917" fg:w="23"/><text x="68.7435%" y="431.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="68.4922%" y="725" width="0.0173%" height="15" fill="rgb(231,107,4)" fg:x="102915" fg:w="26"/><text x="68.7422%" y="735.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="68.4922%" y="709" width="0.0173%" height="15" fill="rgb(243,97,54)" fg:x="102915" fg:w="26"/><text x="68.7422%" y="719.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.4922%" y="693" width="0.0173%" height="15" fill="rgb(221,32,51)" fg:x="102915" fg:w="26"/><text x="68.7422%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.4922%" y="677" width="0.0173%" height="15" fill="rgb(218,171,35)" fg:x="102915" fg:w="26"/><text x="68.7422%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.4929%" y="661" width="0.0166%" height="15" fill="rgb(214,20,53)" fg:x="102916" fg:w="25"/><text x="68.7429%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.4929%" y="645" width="0.0166%" height="15" fill="rgb(239,9,52)" fg:x="102916" fg:w="25"/><text x="68.7429%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.4929%" y="629" width="0.0166%" height="15" fill="rgb(215,114,45)" fg:x="102916" fg:w="25"/><text x="68.7429%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.4929%" y="613" width="0.0166%" height="15" fill="rgb(208,118,9)" fg:x="102916" fg:w="25"/><text x="68.7429%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.4935%" y="597" width="0.0160%" height="15" fill="rgb(235,7,39)" fg:x="102917" fg:w="24"/><text x="68.7435%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.4935%" y="581" width="0.0160%" height="15" fill="rgb(243,225,15)" fg:x="102917" fg:w="24"/><text x="68.7435%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.4935%" y="565" width="0.0160%" height="15" fill="rgb(225,216,18)" fg:x="102917" fg:w="24"/><text x="68.7435%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.4935%" y="549" width="0.0160%" height="15" fill="rgb(233,36,38)" fg:x="102917" fg:w="24"/><text x="68.7435%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (97 samples, 0.06%)</title><rect x="68.4456%" y="965" width="0.0646%" height="15" fill="rgb(239,88,23)" fg:x="102845" fg:w="97"/><text x="68.6956%" y="975.50"></text></g><g><title>_PyEval_EvalFrameDefault (71 samples, 0.05%)</title><rect x="68.4629%" y="949" width="0.0473%" height="15" fill="rgb(219,181,35)" fg:x="102871" fg:w="71"/><text x="68.7129%" y="959.50"></text></g><g><title>_PyFunction_Vectorcall (71 samples, 0.05%)</title><rect x="68.4629%" y="933" width="0.0473%" height="15" fill="rgb(215,18,46)" fg:x="102871" fg:w="71"/><text x="68.7129%" y="943.50"></text></g><g><title>_PyEval_EvalFrameDefault (53 samples, 0.04%)</title><rect x="68.4749%" y="917" width="0.0353%" height="15" fill="rgb(241,38,11)" fg:x="102889" fg:w="53"/><text x="68.7249%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (53 samples, 0.04%)</title><rect x="68.4749%" y="901" width="0.0353%" height="15" fill="rgb(248,169,45)" fg:x="102889" fg:w="53"/><text x="68.7249%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.4922%" y="885" width="0.0180%" height="15" fill="rgb(239,50,49)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.4922%" y="869" width="0.0180%" height="15" fill="rgb(231,96,31)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="879.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.4922%" y="853" width="0.0180%" height="15" fill="rgb(224,193,37)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.4922%" y="837" width="0.0180%" height="15" fill="rgb(227,153,50)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="847.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.4922%" y="821" width="0.0180%" height="15" fill="rgb(249,228,3)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="831.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.4922%" y="805" width="0.0180%" height="15" fill="rgb(219,164,43)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="815.50"></text></g><g><title>PyEval_EvalCode (27 samples, 0.02%)</title><rect x="68.4922%" y="789" width="0.0180%" height="15" fill="rgb(216,45,41)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="799.50"></text></g><g><title>_PyEval_EvalCodeWithName (27 samples, 0.02%)</title><rect x="68.4922%" y="773" width="0.0180%" height="15" fill="rgb(210,226,51)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="783.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.4922%" y="757" width="0.0180%" height="15" fill="rgb(209,117,49)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.4922%" y="741" width="0.0180%" height="15" fill="rgb(206,196,24)" fg:x="102915" fg:w="27"/><text x="68.7422%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (174 samples, 0.12%)</title><rect x="68.3957%" y="981" width="0.1158%" height="15" fill="rgb(253,218,3)" fg:x="102770" fg:w="174"/><text x="68.6457%" y="991.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5228%" y="869" width="0.0120%" height="15" fill="rgb(252,166,2)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5228%" y="853" width="0.0120%" height="15" fill="rgb(236,218,26)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="863.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5228%" y="837" width="0.0120%" height="15" fill="rgb(254,84,19)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="847.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5228%" y="821" width="0.0120%" height="15" fill="rgb(219,137,29)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="831.50"></text></g><g><title>PyEval_EvalCode (18 samples, 0.01%)</title><rect x="68.5228%" y="805" width="0.0120%" height="15" fill="rgb(227,47,52)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="815.50"></text></g><g><title>_PyEval_EvalCodeWithName (18 samples, 0.01%)</title><rect x="68.5228%" y="789" width="0.0120%" height="15" fill="rgb(229,167,24)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="799.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5228%" y="773" width="0.0120%" height="15" fill="rgb(233,164,1)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5228%" y="757" width="0.0120%" height="15" fill="rgb(218,88,48)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="767.50"></text></g><g><title>PyImport_ImportModuleLevelObject (18 samples, 0.01%)</title><rect x="68.5228%" y="741" width="0.0120%" height="15" fill="rgb(226,214,24)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="751.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (18 samples, 0.01%)</title><rect x="68.5228%" y="725" width="0.0120%" height="15" fill="rgb(233,29,12)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="735.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5228%" y="709" width="0.0120%" height="15" fill="rgb(219,120,34)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.5228%" y="693" width="0.0120%" height="15" fill="rgb(226,78,44)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5228%" y="677" width="0.0120%" height="15" fill="rgb(240,15,48)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.5228%" y="661" width="0.0120%" height="15" fill="rgb(253,176,7)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5228%" y="645" width="0.0120%" height="15" fill="rgb(206,166,28)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.5228%" y="629" width="0.0120%" height="15" fill="rgb(241,53,51)" fg:x="102961" fg:w="18"/><text x="68.7728%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (42 samples, 0.03%)</title><rect x="68.5115%" y="981" width="0.0280%" height="15" fill="rgb(249,112,30)" fg:x="102944" fg:w="42"/><text x="68.7615%" y="991.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="68.5181%" y="965" width="0.0213%" height="15" fill="rgb(217,85,30)" fg:x="102954" fg:w="32"/><text x="68.7681%" y="975.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.02%)</title><rect x="68.5181%" y="949" width="0.0213%" height="15" fill="rgb(233,49,7)" fg:x="102954" fg:w="32"/><text x="68.7681%" y="959.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="68.5195%" y="933" width="0.0200%" height="15" fill="rgb(234,109,9)" fg:x="102956" fg:w="30"/><text x="68.7695%" y="943.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.5195%" y="917" width="0.0200%" height="15" fill="rgb(253,95,22)" fg:x="102956" fg:w="30"/><text x="68.7695%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.5228%" y="901" width="0.0166%" height="15" fill="rgb(233,176,25)" fg:x="102961" fg:w="25"/><text x="68.7728%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.5228%" y="885" width="0.0166%" height="15" fill="rgb(236,33,39)" fg:x="102961" fg:w="25"/><text x="68.7728%" y="895.50"></text></g><g><title>PyImport_ImportModuleLevelObject (32 samples, 0.02%)</title><rect x="68.5394%" y="677" width="0.0213%" height="15" fill="rgb(223,226,42)" fg:x="102986" fg:w="32"/><text x="68.7894%" y="687.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (32 samples, 0.02%)</title><rect x="68.5394%" y="661" width="0.0213%" height="15" fill="rgb(216,99,33)" fg:x="102986" fg:w="32"/><text x="68.7894%" y="671.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="68.5394%" y="645" width="0.0213%" height="15" fill="rgb(235,84,23)" fg:x="102986" fg:w="32"/><text x="68.7894%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.02%)</title><rect x="68.5394%" y="629" width="0.0213%" height="15" fill="rgb(232,2,27)" fg:x="102986" fg:w="32"/><text x="68.7894%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="68.5408%" y="613" width="0.0200%" height="15" fill="rgb(241,23,22)" fg:x="102988" fg:w="30"/><text x="68.7908%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.5408%" y="597" width="0.0200%" height="15" fill="rgb(211,73,27)" fg:x="102988" fg:w="30"/><text x="68.7908%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="68.5408%" y="581" width="0.0200%" height="15" fill="rgb(235,109,49)" fg:x="102988" fg:w="30"/><text x="68.7908%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.5408%" y="565" width="0.0200%" height="15" fill="rgb(230,99,29)" fg:x="102988" fg:w="30"/><text x="68.7908%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.5428%" y="549" width="0.0180%" height="15" fill="rgb(245,199,7)" fg:x="102991" fg:w="27"/><text x="68.7928%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.5428%" y="533" width="0.0180%" height="15" fill="rgb(217,179,10)" fg:x="102991" fg:w="27"/><text x="68.7928%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.5428%" y="517" width="0.0180%" height="15" fill="rgb(254,99,47)" fg:x="102991" fg:w="27"/><text x="68.7928%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.5428%" y="501" width="0.0180%" height="15" fill="rgb(251,121,7)" fg:x="102991" fg:w="27"/><text x="68.7928%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.5461%" y="485" width="0.0146%" height="15" fill="rgb(250,177,26)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.5461%" y="469" width="0.0146%" height="15" fill="rgb(232,88,15)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="479.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="453" width="0.0146%" height="15" fill="rgb(251,54,54)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.5461%" y="437" width="0.0146%" height="15" fill="rgb(208,177,15)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="447.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="421" width="0.0146%" height="15" fill="rgb(205,97,32)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="431.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="405" width="0.0146%" height="15" fill="rgb(217,192,13)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="415.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="389" width="0.0146%" height="15" fill="rgb(215,163,41)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="399.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="373" width="0.0146%" height="15" fill="rgb(246,83,29)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="383.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="357" width="0.0146%" height="15" fill="rgb(219,2,45)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="367.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="341" width="0.0146%" height="15" fill="rgb(242,215,33)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="351.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5461%" y="325" width="0.0146%" height="15" fill="rgb(217,1,6)" fg:x="102996" fg:w="22"/><text x="68.7961%" y="335.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.5494%" y="309" width="0.0113%" height="15" fill="rgb(207,85,52)" fg:x="103001" fg:w="17"/><text x="68.7994%" y="319.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (37 samples, 0.02%)</title><rect x="68.5394%" y="981" width="0.0246%" height="15" fill="rgb(231,171,19)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="991.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="68.5394%" y="965" width="0.0246%" height="15" fill="rgb(207,128,4)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="975.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.02%)</title><rect x="68.5394%" y="949" width="0.0246%" height="15" fill="rgb(219,208,4)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="959.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="933" width="0.0246%" height="15" fill="rgb(235,161,42)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="943.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.02%)</title><rect x="68.5394%" y="917" width="0.0246%" height="15" fill="rgb(247,218,18)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="901" width="0.0246%" height="15" fill="rgb(232,114,51)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.02%)</title><rect x="68.5394%" y="885" width="0.0246%" height="15" fill="rgb(222,95,3)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="869" width="0.0246%" height="15" fill="rgb(240,65,29)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.02%)</title><rect x="68.5394%" y="853" width="0.0246%" height="15" fill="rgb(249,209,20)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="837" width="0.0246%" height="15" fill="rgb(241,48,37)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.02%)</title><rect x="68.5394%" y="821" width="0.0246%" height="15" fill="rgb(230,140,42)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="831.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="68.5394%" y="805" width="0.0246%" height="15" fill="rgb(230,176,45)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="789" width="0.0246%" height="15" fill="rgb(245,112,21)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="799.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="68.5394%" y="773" width="0.0246%" height="15" fill="rgb(207,183,35)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="783.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="68.5394%" y="757" width="0.0246%" height="15" fill="rgb(227,44,33)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="767.50"></text></g><g><title>PyEval_EvalCode (37 samples, 0.02%)</title><rect x="68.5394%" y="741" width="0.0246%" height="15" fill="rgb(246,120,21)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="751.50"></text></g><g><title>_PyEval_EvalCodeWithName (37 samples, 0.02%)</title><rect x="68.5394%" y="725" width="0.0246%" height="15" fill="rgb(235,57,52)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="735.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="68.5394%" y="709" width="0.0246%" height="15" fill="rgb(238,84,10)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (37 samples, 0.02%)</title><rect x="68.5394%" y="693" width="0.0246%" height="15" fill="rgb(251,200,32)" fg:x="102986" fg:w="37"/><text x="68.7894%" y="703.50"></text></g><g><title>[unknown] (475 samples, 0.32%)</title><rect x="68.2566%" y="997" width="0.3161%" height="15" fill="rgb(247,159,13)" fg:x="102561" fg:w="475"/><text x="68.5066%" y="1007.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.5780%" y="613" width="0.0126%" height="15" fill="rgb(238,64,4)" fg:x="103044" fg:w="19"/><text x="68.8280%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5787%" y="597" width="0.0120%" height="15" fill="rgb(221,131,51)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="607.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5787%" y="581" width="0.0120%" height="15" fill="rgb(242,5,29)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="591.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5787%" y="565" width="0.0120%" height="15" fill="rgb(214,130,32)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="575.50"></text></g><g><title>PyEval_EvalCode (18 samples, 0.01%)</title><rect x="68.5787%" y="549" width="0.0120%" height="15" fill="rgb(244,210,16)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="559.50"></text></g><g><title>_PyEval_EvalCodeWithName (18 samples, 0.01%)</title><rect x="68.5787%" y="533" width="0.0120%" height="15" fill="rgb(234,48,26)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="543.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.5787%" y="517" width="0.0120%" height="15" fill="rgb(231,82,38)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.5787%" y="501" width="0.0120%" height="15" fill="rgb(254,128,41)" fg:x="103045" fg:w="18"/><text x="68.8287%" y="511.50"></text></g><g><title>PyImport_ImportModuleLevelObject (25 samples, 0.02%)</title><rect x="68.5774%" y="805" width="0.0166%" height="15" fill="rgb(212,73,49)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="815.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (25 samples, 0.02%)</title><rect x="68.5774%" y="789" width="0.0166%" height="15" fill="rgb(205,62,54)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="799.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.5774%" y="773" width="0.0166%" height="15" fill="rgb(228,0,8)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.5774%" y="757" width="0.0166%" height="15" fill="rgb(251,28,17)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.5774%" y="741" width="0.0166%" height="15" fill="rgb(238,105,27)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.5774%" y="725" width="0.0166%" height="15" fill="rgb(237,216,33)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.5774%" y="709" width="0.0166%" height="15" fill="rgb(229,228,25)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.5774%" y="693" width="0.0166%" height="15" fill="rgb(233,75,23)" fg:x="103043" fg:w="25"/><text x="68.8274%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.5780%" y="677" width="0.0160%" height="15" fill="rgb(231,207,16)" fg:x="103044" fg:w="24"/><text x="68.8280%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.5780%" y="661" width="0.0160%" height="15" fill="rgb(231,191,45)" fg:x="103044" fg:w="24"/><text x="68.8280%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.5780%" y="645" width="0.0160%" height="15" fill="rgb(224,133,17)" fg:x="103044" fg:w="24"/><text x="68.8280%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.5780%" y="629" width="0.0160%" height="15" fill="rgb(209,178,27)" fg:x="103044" fg:w="24"/><text x="68.8280%" y="639.50"></text></g><g><title>PyRun_SimpleStringFlags (30 samples, 0.02%)</title><rect x="68.5747%" y="933" width="0.0200%" height="15" fill="rgb(218,37,11)" fg:x="103039" fg:w="30"/><text x="68.8247%" y="943.50"></text></g><g><title>PyRun_StringFlags (30 samples, 0.02%)</title><rect x="68.5747%" y="917" width="0.0200%" height="15" fill="rgb(251,226,25)" fg:x="103039" fg:w="30"/><text x="68.8247%" y="927.50"></text></g><g><title>[python3.9] (29 samples, 0.02%)</title><rect x="68.5754%" y="901" width="0.0193%" height="15" fill="rgb(209,222,27)" fg:x="103040" fg:w="29"/><text x="68.8254%" y="911.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.5774%" y="885" width="0.0173%" height="15" fill="rgb(238,22,21)" fg:x="103043" fg:w="26"/><text x="68.8274%" y="895.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.02%)</title><rect x="68.5774%" y="869" width="0.0173%" height="15" fill="rgb(233,161,25)" fg:x="103043" fg:w="26"/><text x="68.8274%" y="879.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.02%)</title><rect x="68.5774%" y="853" width="0.0173%" height="15" fill="rgb(226,122,53)" fg:x="103043" fg:w="26"/><text x="68.8274%" y="863.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.5774%" y="837" width="0.0173%" height="15" fill="rgb(220,123,17)" fg:x="103043" fg:w="26"/><text x="68.8274%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.5774%" y="821" width="0.0173%" height="15" fill="rgb(230,224,35)" fg:x="103043" fg:w="26"/><text x="68.8274%" y="831.50"></text></g><g><title>PyGC_Collect (27 samples, 0.02%)</title><rect x="68.5947%" y="917" width="0.0180%" height="15" fill="rgb(246,83,8)" fg:x="103069" fg:w="27"/><text x="68.8447%" y="927.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.5947%" y="901" width="0.0180%" height="15" fill="rgb(230,214,17)" fg:x="103069" fg:w="27"/><text x="68.8447%" y="911.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.5947%" y="885" width="0.0180%" height="15" fill="rgb(222,97,18)" fg:x="103069" fg:w="27"/><text x="68.8447%" y="895.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.5987%" y="869" width="0.0140%" height="15" fill="rgb(206,79,1)" fg:x="103075" fg:w="21"/><text x="68.8487%" y="879.50"></text></g><g><title>_PyGC_CollectNoFail (26 samples, 0.02%)</title><rect x="68.6153%" y="901" width="0.0173%" height="15" fill="rgb(214,121,34)" fg:x="103100" fg:w="26"/><text x="68.8653%" y="911.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.6153%" y="885" width="0.0173%" height="15" fill="rgb(249,199,46)" fg:x="103100" fg:w="26"/><text x="68.8653%" y="895.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.6186%" y="869" width="0.0140%" height="15" fill="rgb(214,222,46)" fg:x="103105" fg:w="21"/><text x="68.8686%" y="879.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.6133%" y="917" width="0.0226%" height="15" fill="rgb(248,168,30)" fg:x="103097" fg:w="34"/><text x="68.8633%" y="927.50"></text></g><g><title>Py_RunMain (107 samples, 0.07%)</title><rect x="68.5747%" y="949" width="0.0712%" height="15" fill="rgb(226,14,28)" fg:x="103039" fg:w="107"/><text x="68.8247%" y="959.50"></text></g><g><title>Py_FinalizeEx (77 samples, 0.05%)</title><rect x="68.5947%" y="933" width="0.0512%" height="15" fill="rgb(253,123,1)" fg:x="103069" fg:w="77"/><text x="68.8447%" y="943.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.6612%" y="517" width="0.0106%" height="15" fill="rgb(225,24,42)" fg:x="103169" fg:w="16"/><text x="68.9112%" y="527.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.6612%" y="501" width="0.0106%" height="15" fill="rgb(216,161,37)" fg:x="103169" fg:w="16"/><text x="68.9112%" y="511.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.6612%" y="485" width="0.0106%" height="15" fill="rgb(251,164,26)" fg:x="103169" fg:w="16"/><text x="68.9112%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.6612%" y="469" width="0.0106%" height="15" fill="rgb(219,177,3)" fg:x="103169" fg:w="16"/><text x="68.9112%" y="479.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.6599%" y="549" width="0.0126%" height="15" fill="rgb(222,65,0)" fg:x="103167" fg:w="19"/><text x="68.9099%" y="559.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.6612%" y="533" width="0.0113%" height="15" fill="rgb(223,69,54)" fg:x="103169" fg:w="17"/><text x="68.9112%" y="543.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.6599%" y="581" width="0.0133%" height="15" fill="rgb(235,30,27)" fg:x="103167" fg:w="20"/><text x="68.9099%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.6599%" y="565" width="0.0133%" height="15" fill="rgb(220,183,50)" fg:x="103167" fg:w="20"/><text x="68.9099%" y="575.50"></text></g><g><title>PyImport_ImportModule (38 samples, 0.03%)</title><rect x="68.6526%" y="869" width="0.0253%" height="15" fill="rgb(248,198,15)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="879.50"></text></g><g><title>PyImport_Import (38 samples, 0.03%)</title><rect x="68.6526%" y="853" width="0.0253%" height="15" fill="rgb(222,211,4)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="863.50"></text></g><g><title>PyObject_CallFunction (38 samples, 0.03%)</title><rect x="68.6526%" y="837" width="0.0253%" height="15" fill="rgb(214,102,34)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="847.50"></text></g><g><title>_PyObject_MakeTpCall (38 samples, 0.03%)</title><rect x="68.6526%" y="821" width="0.0253%" height="15" fill="rgb(245,92,5)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="831.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.6526%" y="805" width="0.0253%" height="15" fill="rgb(252,72,51)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="815.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.6526%" y="789" width="0.0253%" height="15" fill="rgb(252,208,19)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="799.50"></text></g><g><title>PyImport_ImportModuleLevelObject (38 samples, 0.03%)</title><rect x="68.6526%" y="773" width="0.0253%" height="15" fill="rgb(211,69,7)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="783.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (38 samples, 0.03%)</title><rect x="68.6526%" y="757" width="0.0253%" height="15" fill="rgb(211,27,16)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="767.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.6526%" y="741" width="0.0253%" height="15" fill="rgb(219,216,14)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.6526%" y="725" width="0.0253%" height="15" fill="rgb(219,71,8)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.6526%" y="709" width="0.0253%" height="15" fill="rgb(223,170,53)" fg:x="103156" fg:w="38"/><text x="68.9026%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="68.6539%" y="693" width="0.0240%" height="15" fill="rgb(246,21,26)" fg:x="103158" fg:w="36"/><text x="68.9039%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="68.6539%" y="677" width="0.0240%" height="15" fill="rgb(248,20,46)" fg:x="103158" fg:w="36"/><text x="68.9039%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="68.6539%" y="661" width="0.0240%" height="15" fill="rgb(252,94,11)" fg:x="103158" fg:w="36"/><text x="68.9039%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="68.6566%" y="645" width="0.0213%" height="15" fill="rgb(236,163,8)" fg:x="103162" fg:w="32"/><text x="68.9066%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.6572%" y="629" width="0.0206%" height="15" fill="rgb(217,221,45)" fg:x="103163" fg:w="31"/><text x="68.9072%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.6572%" y="613" width="0.0206%" height="15" fill="rgb(238,38,17)" fg:x="103163" fg:w="31"/><text x="68.9072%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.6599%" y="597" width="0.0180%" height="15" fill="rgb(242,210,23)" fg:x="103167" fg:w="27"/><text x="68.9099%" y="607.50"></text></g><g><title>PyObject_CallMethod (30 samples, 0.02%)</title><rect x="68.6785%" y="869" width="0.0200%" height="15" fill="rgb(250,86,53)" fg:x="103195" fg:w="30"/><text x="68.9285%" y="879.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="68.6785%" y="853" width="0.0200%" height="15" fill="rgb(223,168,25)" fg:x="103195" fg:w="30"/><text x="68.9285%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.6785%" y="837" width="0.0200%" height="15" fill="rgb(251,189,4)" fg:x="103195" fg:w="30"/><text x="68.9285%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="68.6785%" y="821" width="0.0200%" height="15" fill="rgb(245,19,28)" fg:x="103195" fg:w="30"/><text x="68.9285%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.6872%" y="805" width="0.0113%" height="15" fill="rgb(207,10,34)" fg:x="103208" fg:w="17"/><text x="68.9372%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.6872%" y="789" width="0.0113%" height="15" fill="rgb(235,153,31)" fg:x="103208" fg:w="17"/><text x="68.9372%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.6872%" y="773" width="0.0113%" height="15" fill="rgb(228,72,37)" fg:x="103208" fg:w="17"/><text x="68.9372%" y="783.50"></text></g><g><title>_PyCodec_Lookup (17 samples, 0.01%)</title><rect x="68.7092%" y="853" width="0.0113%" height="15" fill="rgb(215,15,16)" fg:x="103241" fg:w="17"/><text x="68.9592%" y="863.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.7092%" y="837" width="0.0113%" height="15" fill="rgb(250,119,29)" fg:x="103241" fg:w="17"/><text x="68.9592%" y="847.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.7072%" y="869" width="0.0160%" height="15" fill="rgb(214,59,1)" fg:x="103238" fg:w="24"/><text x="68.9572%" y="879.50"></text></g><g><title>Py_InitializeFromConfig (120 samples, 0.08%)</title><rect x="68.6459%" y="917" width="0.0799%" height="15" fill="rgb(223,109,25)" fg:x="103146" fg:w="120"/><text x="68.8959%" y="927.50"></text></g><g><title>[python3.9] (120 samples, 0.08%)</title><rect x="68.6459%" y="901" width="0.0799%" height="15" fill="rgb(230,198,22)" fg:x="103146" fg:w="120"/><text x="68.8959%" y="911.50"></text></g><g><title>[python3.9] (119 samples, 0.08%)</title><rect x="68.6466%" y="885" width="0.0792%" height="15" fill="rgb(245,184,46)" fg:x="103147" fg:w="119"/><text x="68.8966%" y="895.50"></text></g><g><title>__libc_start_main (229 samples, 0.15%)</title><rect x="68.5747%" y="981" width="0.1524%" height="15" fill="rgb(253,73,16)" fg:x="103039" fg:w="229"/><text x="68.8247%" y="991.50"></text></g><g><title>Py_BytesMain (229 samples, 0.15%)</title><rect x="68.5747%" y="965" width="0.1524%" height="15" fill="rgb(206,94,45)" fg:x="103039" fg:w="229"/><text x="68.8247%" y="975.50"></text></g><g><title>[python3.9] (122 samples, 0.08%)</title><rect x="68.6459%" y="949" width="0.0812%" height="15" fill="rgb(236,83,27)" fg:x="103146" fg:w="122"/><text x="68.8959%" y="959.50"></text></g><g><title>[python3.9] (122 samples, 0.08%)</title><rect x="68.6459%" y="933" width="0.0812%" height="15" fill="rgb(220,196,8)" fg:x="103146" fg:w="122"/><text x="68.8959%" y="943.50"></text></g><g><title>_start (243 samples, 0.16%)</title><rect x="68.5747%" y="997" width="0.1617%" height="15" fill="rgb(254,185,14)" fg:x="103039" fg:w="243"/><text x="68.8247%" y="1007.50"></text></g><g><title>python3 (797 samples, 0.53%)</title><rect x="68.2187%" y="1013" width="0.5304%" height="15" fill="rgb(226,50,22)" fg:x="102504" fg:w="797"/><text x="68.4687%" y="1023.50"></text></g><g><title>[sed] (18 samples, 0.01%)</title><rect x="68.7511%" y="949" width="0.0120%" height="15" fill="rgb(253,147,0)" fg:x="103304" fg:w="18"/><text x="69.0011%" y="959.50"></text></g><g><title>[sed] (18 samples, 0.01%)</title><rect x="68.7511%" y="933" width="0.0120%" height="15" fill="rgb(252,46,33)" fg:x="103304" fg:w="18"/><text x="69.0011%" y="943.50"></text></g><g><title>[sed] (20 samples, 0.01%)</title><rect x="68.7511%" y="997" width="0.0133%" height="15" fill="rgb(242,22,54)" fg:x="103304" fg:w="20"/><text x="69.0011%" y="1007.50"></text></g><g><title>__libc_start_main (20 samples, 0.01%)</title><rect x="68.7511%" y="981" width="0.0133%" height="15" fill="rgb(223,178,32)" fg:x="103304" fg:w="20"/><text x="69.0011%" y="991.50"></text></g><g><title>[sed] (20 samples, 0.01%)</title><rect x="68.7511%" y="965" width="0.0133%" height="15" fill="rgb(214,106,53)" fg:x="103304" fg:w="20"/><text x="69.0011%" y="975.50"></text></g><g><title>_dl_map_segments (16 samples, 0.01%)</title><rect x="68.7777%" y="837" width="0.0106%" height="15" fill="rgb(232,65,50)" fg:x="103344" fg:w="16"/><text x="69.0277%" y="847.50"></text></g><g><title>_dl_map_object_from_fd (18 samples, 0.01%)</title><rect x="68.7777%" y="853" width="0.0120%" height="15" fill="rgb(231,110,28)" fg:x="103344" fg:w="18"/><text x="69.0277%" y="863.50"></text></g><g><title>_dl_catch_exception (26 samples, 0.02%)</title><rect x="68.7750%" y="901" width="0.0173%" height="15" fill="rgb(216,71,40)" fg:x="103340" fg:w="26"/><text x="69.0250%" y="911.50"></text></g><g><title>openaux (26 samples, 0.02%)</title><rect x="68.7750%" y="885" width="0.0173%" height="15" fill="rgb(229,89,53)" fg:x="103340" fg:w="26"/><text x="69.0250%" y="895.50"></text></g><g><title>_dl_map_object (26 samples, 0.02%)</title><rect x="68.7750%" y="869" width="0.0173%" height="15" fill="rgb(210,124,14)" fg:x="103340" fg:w="26"/><text x="69.0250%" y="879.50"></text></g><g><title>_dl_map_object_deps (29 samples, 0.02%)</title><rect x="68.7737%" y="917" width="0.0193%" height="15" fill="rgb(236,213,6)" fg:x="103338" fg:w="29"/><text x="69.0237%" y="927.50"></text></g><g><title>_dl_lookup_symbol_x (16 samples, 0.01%)</title><rect x="68.7957%" y="869" width="0.0106%" height="15" fill="rgb(228,41,5)" fg:x="103371" fg:w="16"/><text x="69.0457%" y="879.50"></text></g><g><title>elf_machine_rela (17 samples, 0.01%)</title><rect x="68.7957%" y="885" width="0.0113%" height="15" fill="rgb(221,167,25)" fg:x="103371" fg:w="17"/><text x="69.0457%" y="895.50"></text></g><g><title>_dl_relocate_object (22 samples, 0.01%)</title><rect x="68.7937%" y="917" width="0.0146%" height="15" fill="rgb(228,144,37)" fg:x="103368" fg:w="22"/><text x="69.0437%" y="927.50"></text></g><g><title>elf_dynamic_do_Rela (19 samples, 0.01%)</title><rect x="68.7957%" y="901" width="0.0126%" height="15" fill="rgb(227,189,38)" fg:x="103371" fg:w="19"/><text x="69.0457%" y="911.50"></text></g><g><title>[ld-2.31.so] (60 samples, 0.04%)</title><rect x="68.7717%" y="933" width="0.0399%" height="15" fill="rgb(218,8,2)" fg:x="103335" fg:w="60"/><text x="69.0217%" y="943.50"></text></g><g><title>_dl_start (62 samples, 0.04%)</title><rect x="68.7717%" y="981" width="0.0413%" height="15" fill="rgb(209,61,28)" fg:x="103335" fg:w="62"/><text x="69.0217%" y="991.50"></text></g><g><title>_dl_start_final (62 samples, 0.04%)</title><rect x="68.7717%" y="965" width="0.0413%" height="15" fill="rgb(233,140,39)" fg:x="103335" fg:w="62"/><text x="69.0217%" y="975.50"></text></g><g><title>_dl_sysdep_start (62 samples, 0.04%)</title><rect x="68.7717%" y="949" width="0.0413%" height="15" fill="rgb(251,66,48)" fg:x="103335" fg:w="62"/><text x="69.0217%" y="959.50"></text></g><g><title>_start (63 samples, 0.04%)</title><rect x="68.7717%" y="997" width="0.0419%" height="15" fill="rgb(210,44,45)" fg:x="103335" fg:w="63"/><text x="69.0217%" y="1007.50"></text></g><g><title>sed (118 samples, 0.08%)</title><rect x="68.7491%" y="1013" width="0.0785%" height="15" fill="rgb(214,136,46)" fg:x="103301" fg:w="118"/><text x="68.9991%" y="1023.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="68.8156%" y="997" width="0.0120%" height="15" fill="rgb(207,130,50)" fg:x="103401" fg:w="18"/><text x="69.0656%" y="1007.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="68.8156%" y="981" width="0.0120%" height="15" fill="rgb(228,102,49)" fg:x="103401" fg:w="18"/><text x="69.0656%" y="991.50"></text></g><g><title>[anon] (413 samples, 0.27%)</title><rect x="68.8396%" y="997" width="0.2749%" height="15" fill="rgb(253,55,1)" fg:x="103437" fg:w="413"/><text x="69.0896%" y="1007.50"></text></g><g><title>__GI___close_nocancel (18 samples, 0.01%)</title><rect x="69.2036%" y="981" width="0.0120%" height="15" fill="rgb(238,222,9)" fg:x="103984" fg:w="18"/><text x="69.4536%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="69.2043%" y="965" width="0.0113%" height="15" fill="rgb(246,99,6)" fg:x="103985" fg:w="17"/><text x="69.4543%" y="975.50"></text></g><g><title>__GI___libc_free (22 samples, 0.01%)</title><rect x="69.2156%" y="981" width="0.0146%" height="15" fill="rgb(219,110,26)" fg:x="104002" fg:w="22"/><text x="69.4656%" y="991.50"></text></g><g><title>inode_permission.part.0 (44 samples, 0.03%)</title><rect x="69.2961%" y="837" width="0.0293%" height="15" fill="rgb(239,160,33)" fg:x="104123" fg:w="44"/><text x="69.5461%" y="847.50"></text></g><g><title>lookup_fast (61 samples, 0.04%)</title><rect x="69.3354%" y="821" width="0.0406%" height="15" fill="rgb(220,202,23)" fg:x="104182" fg:w="61"/><text x="69.5854%" y="831.50"></text></g><g><title>__d_lookup_rcu (44 samples, 0.03%)</title><rect x="69.3467%" y="805" width="0.0293%" height="15" fill="rgb(208,80,26)" fg:x="104199" fg:w="44"/><text x="69.5967%" y="815.50"></text></g><g><title>link_path_walk.part.0 (188 samples, 0.13%)</title><rect x="69.2655%" y="853" width="0.1251%" height="15" fill="rgb(243,85,7)" fg:x="104077" fg:w="188"/><text x="69.5155%" y="863.50"></text></g><g><title>walk_component (95 samples, 0.06%)</title><rect x="69.3274%" y="837" width="0.0632%" height="15" fill="rgb(228,77,47)" fg:x="104170" fg:w="95"/><text x="69.5774%" y="847.50"></text></g><g><title>step_into (22 samples, 0.01%)</title><rect x="69.3760%" y="821" width="0.0146%" height="15" fill="rgb(212,226,8)" fg:x="104243" fg:w="22"/><text x="69.6260%" y="831.50"></text></g><g><title>filename_parentat (207 samples, 0.14%)</title><rect x="69.2575%" y="885" width="0.1378%" height="15" fill="rgb(241,120,54)" fg:x="104065" fg:w="207"/><text x="69.5075%" y="895.50"></text></g><g><title>path_parentat (206 samples, 0.14%)</title><rect x="69.2582%" y="869" width="0.1371%" height="15" fill="rgb(226,80,16)" fg:x="104066" fg:w="206"/><text x="69.5082%" y="879.50"></text></g><g><title>filename_create (232 samples, 0.15%)</title><rect x="69.2502%" y="901" width="0.1544%" height="15" fill="rgb(240,76,13)" fg:x="104054" fg:w="232"/><text x="69.5002%" y="911.50"></text></g><g><title>inode_permission.part.0 (44 samples, 0.03%)</title><rect x="69.4459%" y="853" width="0.0293%" height="15" fill="rgb(252,74,8)" fg:x="104348" fg:w="44"/><text x="69.6959%" y="863.50"></text></g><g><title>__d_lookup_rcu (84 samples, 0.06%)</title><rect x="69.5025%" y="821" width="0.0559%" height="15" fill="rgb(244,155,2)" fg:x="104433" fg:w="84"/><text x="69.7525%" y="831.50"></text></g><g><title>lookup_fast (105 samples, 0.07%)</title><rect x="69.4891%" y="837" width="0.0699%" height="15" fill="rgb(215,81,35)" fg:x="104413" fg:w="105"/><text x="69.7391%" y="847.50"></text></g><g><title>link_path_walk.part.0 (250 samples, 0.17%)</title><rect x="69.4173%" y="869" width="0.1664%" height="15" fill="rgb(206,55,2)" fg:x="104305" fg:w="250"/><text x="69.6673%" y="879.50"></text></g><g><title>walk_component (160 samples, 0.11%)</title><rect x="69.4772%" y="853" width="0.1065%" height="15" fill="rgb(231,2,34)" fg:x="104395" fg:w="160"/><text x="69.7272%" y="863.50"></text></g><g><title>step_into (37 samples, 0.02%)</title><rect x="69.5590%" y="837" width="0.0246%" height="15" fill="rgb(242,176,48)" fg:x="104518" fg:w="37"/><text x="69.8090%" y="847.50"></text></g><g><title>filename_lookup (287 samples, 0.19%)</title><rect x="69.4046%" y="901" width="0.1910%" height="15" fill="rgb(249,31,36)" fg:x="104286" fg:w="287"/><text x="69.6546%" y="911.50"></text></g><g><title>path_lookupat (283 samples, 0.19%)</title><rect x="69.4073%" y="885" width="0.1883%" height="15" fill="rgb(205,18,17)" fg:x="104290" fg:w="283"/><text x="69.6573%" y="895.50"></text></g><g><title>memset_erms (23 samples, 0.02%)</title><rect x="69.6016%" y="869" width="0.0153%" height="15" fill="rgb(254,130,5)" fg:x="104582" fg:w="23"/><text x="69.8516%" y="879.50"></text></g><g><title>kmem_cache_alloc (32 samples, 0.02%)</title><rect x="69.5976%" y="885" width="0.0213%" height="15" fill="rgb(229,42,45)" fg:x="104576" fg:w="32"/><text x="69.8476%" y="895.50"></text></g><g><title>getname_flags.part.0 (82 samples, 0.05%)</title><rect x="69.5970%" y="901" width="0.0546%" height="15" fill="rgb(245,95,25)" fg:x="104575" fg:w="82"/><text x="69.8470%" y="911.50"></text></g><g><title>strncpy_from_user (49 samples, 0.03%)</title><rect x="69.6189%" y="885" width="0.0326%" height="15" fill="rgb(249,193,38)" fg:x="104608" fg:w="49"/><text x="69.8689%" y="895.50"></text></g><g><title>__check_object_size (18 samples, 0.01%)</title><rect x="69.6396%" y="869" width="0.0120%" height="15" fill="rgb(241,140,43)" fg:x="104639" fg:w="18"/><text x="69.8896%" y="879.50"></text></g><g><title>btrfs_trans_release_metadata (16 samples, 0.01%)</title><rect x="69.6995%" y="853" width="0.0106%" height="15" fill="rgb(245,78,48)" fg:x="104729" fg:w="16"/><text x="69.9495%" y="863.50"></text></g><g><title>__btrfs_end_transaction (42 samples, 0.03%)</title><rect x="69.6881%" y="869" width="0.0280%" height="15" fill="rgb(214,92,39)" fg:x="104712" fg:w="42"/><text x="69.9381%" y="879.50"></text></g><g><title>__btrfs_add_delayed_item (17 samples, 0.01%)</title><rect x="69.7274%" y="821" width="0.0113%" height="15" fill="rgb(211,189,14)" fg:x="104771" fg:w="17"/><text x="69.9774%" y="831.50"></text></g><g><title>__kmalloc (23 samples, 0.02%)</title><rect x="69.7480%" y="821" width="0.0153%" height="15" fill="rgb(218,7,24)" fg:x="104802" fg:w="23"/><text x="69.9980%" y="831.50"></text></g><g><title>btrfs_insert_delayed_dir_index (92 samples, 0.06%)</title><rect x="69.7261%" y="837" width="0.0612%" height="15" fill="rgb(224,200,49)" fg:x="104769" fg:w="92"/><text x="69.9761%" y="847.50"></text></g><g><title>btrfs_release_path (17 samples, 0.01%)</title><rect x="69.7913%" y="837" width="0.0113%" height="15" fill="rgb(218,210,14)" fg:x="104867" fg:w="17"/><text x="70.0413%" y="847.50"></text></g><g><title>generic_bin_search.constprop.0 (31 samples, 0.02%)</title><rect x="69.8379%" y="789" width="0.0206%" height="15" fill="rgb(234,142,31)" fg:x="104937" fg:w="31"/><text x="70.0879%" y="799.50"></text></g><g><title>__radix_tree_lookup (23 samples, 0.02%)</title><rect x="69.8658%" y="757" width="0.0153%" height="15" fill="rgb(227,165,2)" fg:x="104979" fg:w="23"/><text x="70.1158%" y="767.50"></text></g><g><title>find_extent_buffer (38 samples, 0.03%)</title><rect x="69.8625%" y="773" width="0.0253%" height="15" fill="rgb(232,44,46)" fg:x="104974" fg:w="38"/><text x="70.1125%" y="783.50"></text></g><g><title>read_block_for_search.isra.0 (55 samples, 0.04%)</title><rect x="69.8585%" y="789" width="0.0366%" height="15" fill="rgb(236,149,47)" fg:x="104968" fg:w="55"/><text x="70.1085%" y="799.50"></text></g><g><title>__push_leaf_right (25 samples, 0.02%)</title><rect x="69.9118%" y="757" width="0.0166%" height="15" fill="rgb(227,45,31)" fg:x="105048" fg:w="25"/><text x="70.1618%" y="767.50"></text></g><g><title>split_leaf (51 samples, 0.03%)</title><rect x="69.8951%" y="789" width="0.0339%" height="15" fill="rgb(240,176,51)" fg:x="105023" fg:w="51"/><text x="70.1451%" y="799.50"></text></g><g><title>push_leaf_right (27 samples, 0.02%)</title><rect x="69.9111%" y="773" width="0.0180%" height="15" fill="rgb(249,146,41)" fg:x="105047" fg:w="27"/><text x="70.1611%" y="783.50"></text></g><g><title>btrfs_search_slot (188 samples, 0.13%)</title><rect x="69.8093%" y="805" width="0.1251%" height="15" fill="rgb(213,208,4)" fg:x="104894" fg:w="188"/><text x="70.0593%" y="815.50"></text></g><g><title>btrfs_get_token_32 (122 samples, 0.08%)</title><rect x="69.9610%" y="789" width="0.0812%" height="15" fill="rgb(245,84,36)" fg:x="105122" fg:w="122"/><text x="70.2110%" y="799.50"></text></g><g><title>check_setget_bounds.isra.0 (22 samples, 0.01%)</title><rect x="70.0276%" y="773" width="0.0146%" height="15" fill="rgb(254,84,18)" fg:x="105222" fg:w="22"/><text x="70.2776%" y="783.50"></text></g><g><title>btrfs_set_token_32 (115 samples, 0.08%)</title><rect x="70.0535%" y="789" width="0.0765%" height="15" fill="rgb(225,38,54)" fg:x="105261" fg:w="115"/><text x="70.3035%" y="799.50"></text></g><g><title>check_setget_bounds.isra.0 (22 samples, 0.01%)</title><rect x="70.1154%" y="773" width="0.0146%" height="15" fill="rgb(246,50,30)" fg:x="105354" fg:w="22"/><text x="70.3654%" y="783.50"></text></g><g><title>memcpy_extent_buffer (51 samples, 0.03%)</title><rect x="70.1307%" y="789" width="0.0339%" height="15" fill="rgb(246,148,9)" fg:x="105377" fg:w="51"/><text x="70.3807%" y="799.50"></text></g><g><title>memmove (44 samples, 0.03%)</title><rect x="70.1354%" y="773" width="0.0293%" height="15" fill="rgb(223,75,4)" fg:x="105384" fg:w="44"/><text x="70.3854%" y="783.50"></text></g><g><title>memmove_extent_buffer (45 samples, 0.03%)</title><rect x="70.1647%" y="789" width="0.0299%" height="15" fill="rgb(239,148,41)" fg:x="105428" fg:w="45"/><text x="70.4147%" y="799.50"></text></g><g><title>memmove (35 samples, 0.02%)</title><rect x="70.1713%" y="773" width="0.0233%" height="15" fill="rgb(205,195,3)" fg:x="105438" fg:w="35"/><text x="70.4213%" y="783.50"></text></g><g><title>insert_with_overflow (584 samples, 0.39%)</title><rect x="69.8073%" y="837" width="0.3887%" height="15" fill="rgb(254,161,1)" fg:x="104891" fg:w="584"/><text x="70.0573%" y="847.50"></text></g><g><title>btrfs_insert_empty_items (581 samples, 0.39%)</title><rect x="69.8093%" y="821" width="0.3867%" height="15" fill="rgb(211,229,8)" fg:x="104894" fg:w="581"/><text x="70.0593%" y="831.50"></text></g><g><title>setup_items_for_insert (393 samples, 0.26%)</title><rect x="69.9344%" y="805" width="0.2616%" height="15" fill="rgb(220,97,9)" fg:x="105082" fg:w="393"/><text x="70.1844%" y="815.50"></text></g><g><title>btrfs_insert_dir_item (738 samples, 0.49%)</title><rect x="69.7214%" y="853" width="0.4912%" height="15" fill="rgb(240,218,8)" fg:x="104762" fg:w="738"/><text x="69.9714%" y="863.50"></text></g><g><title>btrfs_free_path (22 samples, 0.01%)</title><rect x="70.2146%" y="837" width="0.0146%" height="15" fill="rgb(250,44,0)" fg:x="105503" fg:w="22"/><text x="70.4646%" y="847.50"></text></g><g><title>btrfs_release_path (22 samples, 0.01%)</title><rect x="70.2146%" y="821" width="0.0146%" height="15" fill="rgb(236,41,53)" fg:x="105503" fg:w="22"/><text x="70.4646%" y="831.50"></text></g><g><title>generic_bin_search.constprop.0 (39 samples, 0.03%)</title><rect x="70.2458%" y="805" width="0.0260%" height="15" fill="rgb(218,227,13)" fg:x="105550" fg:w="39"/><text x="70.4958%" y="815.50"></text></g><g><title>__radix_tree_lookup (27 samples, 0.02%)</title><rect x="70.2971%" y="773" width="0.0180%" height="15" fill="rgb(217,94,32)" fg:x="105627" fg:w="27"/><text x="70.5471%" y="783.50"></text></g><g><title>find_extent_buffer (58 samples, 0.04%)</title><rect x="70.2884%" y="789" width="0.0386%" height="15" fill="rgb(213,217,12)" fg:x="105614" fg:w="58"/><text x="70.5384%" y="799.50"></text></g><g><title>mark_extent_buffer_accessed (18 samples, 0.01%)</title><rect x="70.3151%" y="773" width="0.0120%" height="15" fill="rgb(229,13,46)" fg:x="105654" fg:w="18"/><text x="70.5651%" y="783.50"></text></g><g><title>read_block_for_search.isra.0 (92 samples, 0.06%)</title><rect x="70.2718%" y="805" width="0.0612%" height="15" fill="rgb(243,139,5)" fg:x="105589" fg:w="92"/><text x="70.5218%" y="815.50"></text></g><g><title>btrfs_search_slot (169 samples, 0.11%)</title><rect x="70.2325%" y="821" width="0.1125%" height="15" fill="rgb(249,38,45)" fg:x="105530" fg:w="169"/><text x="70.4825%" y="831.50"></text></g><g><title>unlock_up (18 samples, 0.01%)</title><rect x="70.3330%" y="805" width="0.0120%" height="15" fill="rgb(216,70,11)" fg:x="105681" fg:w="18"/><text x="70.5830%" y="815.50"></text></g><g><title>btrfs_get_token_32 (42 samples, 0.03%)</title><rect x="70.3623%" y="805" width="0.0280%" height="15" fill="rgb(253,101,25)" fg:x="105725" fg:w="42"/><text x="70.6123%" y="815.50"></text></g><g><title>btrfs_set_token_32 (59 samples, 0.04%)</title><rect x="70.4016%" y="805" width="0.0393%" height="15" fill="rgb(207,197,30)" fg:x="105784" fg:w="59"/><text x="70.6516%" y="815.50"></text></g><g><title>memcpy_extent_buffer (48 samples, 0.03%)</title><rect x="70.4435%" y="805" width="0.0319%" height="15" fill="rgb(238,87,13)" fg:x="105847" fg:w="48"/><text x="70.6935%" y="815.50"></text></g><g><title>memmove (38 samples, 0.03%)</title><rect x="70.4502%" y="789" width="0.0253%" height="15" fill="rgb(215,155,8)" fg:x="105857" fg:w="38"/><text x="70.7002%" y="799.50"></text></g><g><title>memmove_extent_buffer (24 samples, 0.02%)</title><rect x="70.4754%" y="805" width="0.0160%" height="15" fill="rgb(239,166,38)" fg:x="105895" fg:w="24"/><text x="70.7254%" y="815.50"></text></g><g><title>btrfs_insert_empty_items (395 samples, 0.26%)</title><rect x="70.2312%" y="837" width="0.2629%" height="15" fill="rgb(240,194,35)" fg:x="105528" fg:w="395"/><text x="70.4812%" y="847.50"></text></g><g><title>setup_items_for_insert (224 samples, 0.15%)</title><rect x="70.3450%" y="821" width="0.1491%" height="15" fill="rgb(219,10,44)" fg:x="105699" fg:w="224"/><text x="70.5950%" y="831.50"></text></g><g><title>btrfs_insert_inode_ref (441 samples, 0.29%)</title><rect x="70.2126%" y="853" width="0.2935%" height="15" fill="rgb(251,220,35)" fg:x="105500" fg:w="441"/><text x="70.4626%" y="863.50"></text></g><g><title>btrfs_delayed_update_inode (27 samples, 0.02%)</title><rect x="70.5087%" y="837" width="0.0180%" height="15" fill="rgb(218,117,13)" fg:x="105945" fg:w="27"/><text x="70.7587%" y="847.50"></text></g><g><title>btrfs_update_inode (40 samples, 0.03%)</title><rect x="70.5061%" y="853" width="0.0266%" height="15" fill="rgb(221,213,40)" fg:x="105941" fg:w="40"/><text x="70.7561%" y="863.50"></text></g><g><title>btrfs_add_link (1,231 samples, 0.82%)</title><rect x="69.7161%" y="869" width="0.8193%" height="15" fill="rgb(251,224,35)" fg:x="104754" fg:w="1231"/><text x="69.9661%" y="879.50"></text></g><g><title>btrfs_btree_balance_dirty (21 samples, 0.01%)</title><rect x="70.5353%" y="869" width="0.0140%" height="15" fill="rgb(241,33,39)" fg:x="105985" fg:w="21"/><text x="70.7853%" y="879.50"></text></g><g><title>btrfs_get_or_create_delayed_node (16 samples, 0.01%)</title><rect x="70.5733%" y="837" width="0.0106%" height="15" fill="rgb(222,74,17)" fg:x="106042" fg:w="16"/><text x="70.8233%" y="847.50"></text></g><g><title>btrfs_delayed_update_inode (58 samples, 0.04%)</title><rect x="70.5540%" y="853" width="0.0386%" height="15" fill="rgb(225,103,0)" fg:x="106013" fg:w="58"/><text x="70.8040%" y="863.50"></text></g><g><title>btrfs_update_inode (64 samples, 0.04%)</title><rect x="70.5513%" y="869" width="0.0426%" height="15" fill="rgb(240,0,12)" fg:x="106009" fg:w="64"/><text x="70.8013%" y="879.50"></text></g><g><title>btrfs_block_rsv_add (38 samples, 0.03%)</title><rect x="70.6092%" y="853" width="0.0253%" height="15" fill="rgb(233,213,37)" fg:x="106096" fg:w="38"/><text x="70.8592%" y="863.50"></text></g><g><title>btrfs_reserve_metadata_bytes (33 samples, 0.02%)</title><rect x="70.6125%" y="837" width="0.0220%" height="15" fill="rgb(225,84,52)" fg:x="106101" fg:w="33"/><text x="70.8625%" y="847.50"></text></g><g><title>__reserve_bytes (31 samples, 0.02%)</title><rect x="70.6139%" y="821" width="0.0206%" height="15" fill="rgb(247,160,51)" fg:x="106103" fg:w="31"/><text x="70.8639%" y="831.50"></text></g><g><title>btrfs_link (1,452 samples, 0.97%)</title><rect x="69.6815%" y="885" width="0.9663%" height="15" fill="rgb(244,60,51)" fg:x="104702" fg:w="1452"/><text x="69.9315%" y="895.50"></text></g><g><title>start_transaction (75 samples, 0.05%)</title><rect x="70.5979%" y="869" width="0.0499%" height="15" fill="rgb(233,114,7)" fg:x="106079" fg:w="75"/><text x="70.8479%" y="879.50"></text></g><g><title>__x64_sys_link (2,135 samples, 1.42%)</title><rect x="69.2389%" y="933" width="1.4209%" height="15" fill="rgb(246,136,16)" fg:x="104037" fg:w="2135"/><text x="69.4889%" y="943.50"></text></g><g><title>do_linkat (2,134 samples, 1.42%)</title><rect x="69.2396%" y="917" width="1.4202%" height="15" fill="rgb(243,114,45)" fg:x="104038" fg:w="2134"/><text x="69.4896%" y="927.50"></text></g><g><title>vfs_link (1,479 samples, 0.98%)</title><rect x="69.6755%" y="901" width="0.9843%" height="15" fill="rgb(247,183,43)" fg:x="104693" fg:w="1479"/><text x="69.9255%" y="911.50"></text></g><g><title>do_syscall_64 (2,139 samples, 1.42%)</title><rect x="69.2382%" y="949" width="1.4236%" height="15" fill="rgb(251,210,42)" fg:x="104036" fg:w="2139"/><text x="69.4882%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,143 samples, 1.43%)</title><rect x="69.2369%" y="965" width="1.4262%" height="15" fill="rgb(221,88,35)" fg:x="104034" fg:w="2143"/><text x="69.4869%" y="975.50"></text></g><g><title>__GI___link (2,154 samples, 1.43%)</title><rect x="69.2303%" y="981" width="1.4335%" height="15" fill="rgb(242,21,20)" fg:x="104024" fg:w="2154"/><text x="69.4803%" y="991.50"></text></g><g><title>entry_SYSCALL_64 (23 samples, 0.02%)</title><rect x="70.6698%" y="965" width="0.0153%" height="15" fill="rgb(233,226,36)" fg:x="106187" fg:w="23"/><text x="70.9198%" y="975.50"></text></g><g><title>_copy_to_user (23 samples, 0.02%)</title><rect x="70.6937%" y="901" width="0.0153%" height="15" fill="rgb(243,189,34)" fg:x="106223" fg:w="23"/><text x="70.9437%" y="911.50"></text></g><g><title>copy_user_enhanced_fast_string (22 samples, 0.01%)</title><rect x="70.6944%" y="885" width="0.0146%" height="15" fill="rgb(207,145,50)" fg:x="106224" fg:w="22"/><text x="70.9444%" y="895.50"></text></g><g><title>cp_new_stat (39 samples, 0.03%)</title><rect x="70.6891%" y="917" width="0.0260%" height="15" fill="rgb(242,1,50)" fg:x="106216" fg:w="39"/><text x="70.9391%" y="927.50"></text></g><g><title>btrfs_getattr (45 samples, 0.03%)</title><rect x="70.7177%" y="901" width="0.0299%" height="15" fill="rgb(231,65,32)" fg:x="106259" fg:w="45"/><text x="70.9677%" y="911.50"></text></g><g><title>kmem_cache_free (19 samples, 0.01%)</title><rect x="70.7536%" y="885" width="0.0126%" height="15" fill="rgb(208,68,49)" fg:x="106313" fg:w="19"/><text x="71.0036%" y="895.50"></text></g><g><title>complete_walk (24 samples, 0.02%)</title><rect x="70.7683%" y="869" width="0.0160%" height="15" fill="rgb(253,54,49)" fg:x="106335" fg:w="24"/><text x="71.0183%" y="879.50"></text></g><g><title>try_to_unlazy (23 samples, 0.02%)</title><rect x="70.7689%" y="853" width="0.0153%" height="15" fill="rgb(245,186,24)" fg:x="106336" fg:w="23"/><text x="71.0189%" y="863.50"></text></g><g><title>__legitimize_path (23 samples, 0.02%)</title><rect x="70.7689%" y="837" width="0.0153%" height="15" fill="rgb(209,2,41)" fg:x="106336" fg:w="23"/><text x="71.0189%" y="847.50"></text></g><g><title>inode_permission.part.0 (119 samples, 0.08%)</title><rect x="70.8688%" y="853" width="0.0792%" height="15" fill="rgb(242,208,54)" fg:x="106486" fg:w="119"/><text x="71.1188%" y="863.50"></text></g><g><title>generic_permission (36 samples, 0.02%)</title><rect x="70.9240%" y="837" width="0.0240%" height="15" fill="rgb(225,9,51)" fg:x="106569" fg:w="36"/><text x="71.1740%" y="847.50"></text></g><g><title>security_inode_permission (20 samples, 0.01%)</title><rect x="70.9480%" y="853" width="0.0133%" height="15" fill="rgb(207,207,25)" fg:x="106605" fg:w="20"/><text x="71.1980%" y="863.50"></text></g><g><title>lookup_fast (249 samples, 0.17%)</title><rect x="70.9899%" y="837" width="0.1657%" height="15" fill="rgb(253,96,18)" fg:x="106668" fg:w="249"/><text x="71.2399%" y="847.50"></text></g><g><title>__d_lookup_rcu (200 samples, 0.13%)</title><rect x="71.0225%" y="821" width="0.1331%" height="15" fill="rgb(252,215,20)" fg:x="106717" fg:w="200"/><text x="71.2725%" y="831.50"></text></g><g><title>link_path_walk.part.0 (645 samples, 0.43%)</title><rect x="70.7843%" y="869" width="0.4293%" height="15" fill="rgb(245,227,26)" fg:x="106359" fg:w="645"/><text x="71.0343%" y="879.50"></text></g><g><title>walk_component (379 samples, 0.25%)</title><rect x="70.9613%" y="853" width="0.2522%" height="15" fill="rgb(241,208,0)" fg:x="106625" fg:w="379"/><text x="71.2113%" y="863.50"></text></g><g><title>step_into (82 samples, 0.05%)</title><rect x="71.1589%" y="837" width="0.0546%" height="15" fill="rgb(224,130,10)" fg:x="106922" fg:w="82"/><text x="71.4089%" y="847.50"></text></g><g><title>path_init (26 samples, 0.02%)</title><rect x="71.2135%" y="869" width="0.0173%" height="15" fill="rgb(237,29,0)" fg:x="107004" fg:w="26"/><text x="71.4635%" y="879.50"></text></g><g><title>nd_jump_root (20 samples, 0.01%)</title><rect x="71.2175%" y="853" width="0.0133%" height="15" fill="rgb(219,27,41)" fg:x="107010" fg:w="20"/><text x="71.4675%" y="863.50"></text></g><g><title>set_root (18 samples, 0.01%)</title><rect x="71.2188%" y="837" width="0.0120%" height="15" fill="rgb(245,101,19)" fg:x="107012" fg:w="18"/><text x="71.4688%" y="847.50"></text></g><g><title>lookup_fast (53 samples, 0.04%)</title><rect x="71.2355%" y="853" width="0.0353%" height="15" fill="rgb(243,44,37)" fg:x="107037" fg:w="53"/><text x="71.4855%" y="863.50"></text></g><g><title>__d_lookup_rcu (51 samples, 0.03%)</title><rect x="71.2368%" y="837" width="0.0339%" height="15" fill="rgb(228,213,43)" fg:x="107039" fg:w="51"/><text x="71.4868%" y="847.50"></text></g><g><title>path_lookupat (762 samples, 0.51%)</title><rect x="70.7663%" y="885" width="0.5071%" height="15" fill="rgb(219,163,21)" fg:x="106332" fg:w="762"/><text x="71.0163%" y="895.50"></text></g><g><title>walk_component (60 samples, 0.04%)</title><rect x="71.2335%" y="869" width="0.0399%" height="15" fill="rgb(234,86,24)" fg:x="107034" fg:w="60"/><text x="71.4835%" y="879.50"></text></g><g><title>filename_lookup (791 samples, 0.53%)</title><rect x="70.7476%" y="901" width="0.5264%" height="15" fill="rgb(225,10,24)" fg:x="106304" fg:w="791"/><text x="70.9976%" y="911.50"></text></g><g><title>path_put (18 samples, 0.01%)</title><rect x="71.2747%" y="901" width="0.0120%" height="15" fill="rgb(218,109,7)" fg:x="107096" fg:w="18"/><text x="71.5247%" y="911.50"></text></g><g><title>dput (18 samples, 0.01%)</title><rect x="71.2747%" y="885" width="0.0120%" height="15" fill="rgb(210,20,26)" fg:x="107096" fg:w="18"/><text x="71.5247%" y="895.50"></text></g><g><title>security_inode_getattr (59 samples, 0.04%)</title><rect x="71.2867%" y="901" width="0.0393%" height="15" fill="rgb(216,18,1)" fg:x="107114" fg:w="59"/><text x="71.5367%" y="911.50"></text></g><g><title>tomoyo_path_perm (23 samples, 0.02%)</title><rect x="71.3107%" y="885" width="0.0153%" height="15" fill="rgb(206,163,23)" fg:x="107150" fg:w="23"/><text x="71.5607%" y="895.50"></text></g><g><title>memset_erms (44 samples, 0.03%)</title><rect x="71.3466%" y="853" width="0.0293%" height="15" fill="rgb(229,150,31)" fg:x="107204" fg:w="44"/><text x="71.5966%" y="863.50"></text></g><g><title>kmem_cache_alloc (74 samples, 0.05%)</title><rect x="71.3320%" y="869" width="0.0492%" height="15" fill="rgb(231,10,5)" fg:x="107182" fg:w="74"/><text x="71.5820%" y="879.50"></text></g><g><title>user_path_at_empty (152 samples, 0.10%)</title><rect x="71.3260%" y="901" width="0.1012%" height="15" fill="rgb(250,40,50)" fg:x="107173" fg:w="152"/><text x="71.5760%" y="911.50"></text></g><g><title>getname_flags.part.0 (148 samples, 0.10%)</title><rect x="71.3286%" y="885" width="0.0985%" height="15" fill="rgb(217,119,7)" fg:x="107177" fg:w="148"/><text x="71.5786%" y="895.50"></text></g><g><title>strncpy_from_user (69 samples, 0.05%)</title><rect x="71.3812%" y="869" width="0.0459%" height="15" fill="rgb(245,214,40)" fg:x="107256" fg:w="69"/><text x="71.6312%" y="879.50"></text></g><g><title>__check_object_size (32 samples, 0.02%)</title><rect x="71.4058%" y="853" width="0.0213%" height="15" fill="rgb(216,187,1)" fg:x="107293" fg:w="32"/><text x="71.6558%" y="863.50"></text></g><g><title>__virt_addr_valid (16 samples, 0.01%)</title><rect x="71.4165%" y="837" width="0.0106%" height="15" fill="rgb(237,146,21)" fg:x="107309" fg:w="16"/><text x="71.6665%" y="847.50"></text></g><g><title>__do_sys_newlstat (1,122 samples, 0.75%)</title><rect x="70.6878%" y="933" width="0.7467%" height="15" fill="rgb(210,174,47)" fg:x="106214" fg:w="1122"/><text x="70.9378%" y="943.50"></text></g><g><title>vfs_statx (1,081 samples, 0.72%)</title><rect x="70.7150%" y="917" width="0.7194%" height="15" fill="rgb(218,111,39)" fg:x="106255" fg:w="1081"/><text x="70.9650%" y="927.50"></text></g><g><title>do_syscall_64 (1,129 samples, 0.75%)</title><rect x="70.6864%" y="949" width="0.7514%" height="15" fill="rgb(224,95,19)" fg:x="106212" fg:w="1129"/><text x="70.9364%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,139 samples, 0.76%)</title><rect x="70.6851%" y="965" width="0.7580%" height="15" fill="rgb(234,15,38)" fg:x="106210" fg:w="1139"/><text x="70.9351%" y="975.50"></text></g><g><title>__GI___lxstat (1,181 samples, 0.79%)</title><rect x="70.6638%" y="981" width="0.7860%" height="15" fill="rgb(246,56,12)" fg:x="106178" fg:w="1181"/><text x="70.9138%" y="991.50"></text></g><g><title>__lookup_hash (27 samples, 0.02%)</title><rect x="71.4524%" y="901" width="0.0180%" height="15" fill="rgb(247,16,17)" fg:x="107363" fg:w="27"/><text x="71.7024%" y="911.50"></text></g><g><title>filename_parentat (16 samples, 0.01%)</title><rect x="71.4711%" y="901" width="0.0106%" height="15" fill="rgb(215,151,11)" fg:x="107391" fg:w="16"/><text x="71.7211%" y="911.50"></text></g><g><title>path_parentat (16 samples, 0.01%)</title><rect x="71.4711%" y="885" width="0.0106%" height="15" fill="rgb(225,16,24)" fg:x="107391" fg:w="16"/><text x="71.7211%" y="895.50"></text></g><g><title>link_path_walk.part.0 (16 samples, 0.01%)</title><rect x="71.4711%" y="869" width="0.0106%" height="15" fill="rgb(217,117,5)" fg:x="107391" fg:w="16"/><text x="71.7211%" y="879.50"></text></g><g><title>filename_create (47 samples, 0.03%)</title><rect x="71.4524%" y="917" width="0.0313%" height="15" fill="rgb(246,187,53)" fg:x="107363" fg:w="47"/><text x="71.7024%" y="927.50"></text></g><g><title>btrfs_insert_dir_item (40 samples, 0.03%)</title><rect x="71.4917%" y="869" width="0.0266%" height="15" fill="rgb(241,71,40)" fg:x="107422" fg:w="40"/><text x="71.7417%" y="879.50"></text></g><g><title>insert_with_overflow (31 samples, 0.02%)</title><rect x="71.4977%" y="853" width="0.0206%" height="15" fill="rgb(231,67,39)" fg:x="107431" fg:w="31"/><text x="71.7477%" y="863.50"></text></g><g><title>btrfs_insert_empty_items (31 samples, 0.02%)</title><rect x="71.4977%" y="837" width="0.0206%" height="15" fill="rgb(222,120,24)" fg:x="107431" fg:w="31"/><text x="71.7477%" y="847.50"></text></g><g><title>setup_items_for_insert (16 samples, 0.01%)</title><rect x="71.5077%" y="821" width="0.0106%" height="15" fill="rgb(248,3,3)" fg:x="107446" fg:w="16"/><text x="71.7577%" y="831.50"></text></g><g><title>btrfs_add_link (43 samples, 0.03%)</title><rect x="71.4917%" y="885" width="0.0286%" height="15" fill="rgb(228,218,5)" fg:x="107422" fg:w="43"/><text x="71.7417%" y="895.50"></text></g><g><title>btrfs_search_slot (20 samples, 0.01%)</title><rect x="71.5243%" y="853" width="0.0133%" height="15" fill="rgb(212,202,43)" fg:x="107471" fg:w="20"/><text x="71.7743%" y="863.50"></text></g><g><title>btrfs_insert_empty_items (32 samples, 0.02%)</title><rect x="71.5236%" y="869" width="0.0213%" height="15" fill="rgb(235,183,2)" fg:x="107470" fg:w="32"/><text x="71.7736%" y="879.50"></text></g><g><title>btrfs_new_inode (65 samples, 0.04%)</title><rect x="71.5203%" y="885" width="0.0433%" height="15" fill="rgb(230,165,10)" fg:x="107465" fg:w="65"/><text x="71.7703%" y="895.50"></text></g><g><title>__GI___mkdir (190 samples, 0.13%)</title><rect x="71.4498%" y="981" width="0.1264%" height="15" fill="rgb(219,54,40)" fg:x="107359" fg:w="190"/><text x="71.6998%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (188 samples, 0.13%)</title><rect x="71.4511%" y="965" width="0.1251%" height="15" fill="rgb(244,73,9)" fg:x="107361" fg:w="188"/><text x="71.7011%" y="975.50"></text></g><g><title>do_syscall_64 (187 samples, 0.12%)</title><rect x="71.4518%" y="949" width="0.1245%" height="15" fill="rgb(212,32,45)" fg:x="107362" fg:w="187"/><text x="71.7018%" y="959.50"></text></g><g><title>do_mkdirat (187 samples, 0.12%)</title><rect x="71.4518%" y="933" width="0.1245%" height="15" fill="rgb(205,58,31)" fg:x="107362" fg:w="187"/><text x="71.7018%" y="943.50"></text></g><g><title>vfs_mkdir (129 samples, 0.09%)</title><rect x="71.4904%" y="917" width="0.0859%" height="15" fill="rgb(250,120,43)" fg:x="107420" fg:w="129"/><text x="71.7404%" y="927.50"></text></g><g><title>btrfs_mkdir (128 samples, 0.09%)</title><rect x="71.4910%" y="901" width="0.0852%" height="15" fill="rgb(235,13,10)" fg:x="107421" fg:w="128"/><text x="71.7410%" y="911.50"></text></g><g><title>btrfs_filldir (17 samples, 0.01%)</title><rect x="71.5915%" y="869" width="0.0113%" height="15" fill="rgb(232,219,31)" fg:x="107572" fg:w="17"/><text x="71.8415%" y="879.50"></text></g><g><title>btrfs_search_slot (35 samples, 0.02%)</title><rect x="71.6228%" y="869" width="0.0233%" height="15" fill="rgb(218,157,51)" fg:x="107619" fg:w="35"/><text x="71.8728%" y="879.50"></text></g><g><title>btrfs_real_readdir (109 samples, 0.07%)</title><rect x="71.5862%" y="885" width="0.0725%" height="15" fill="rgb(211,91,52)" fg:x="107564" fg:w="109"/><text x="71.8362%" y="895.50"></text></g><g><title>do_syscall_64 (125 samples, 0.08%)</title><rect x="71.5849%" y="933" width="0.0832%" height="15" fill="rgb(240,173,1)" fg:x="107562" fg:w="125"/><text x="71.8349%" y="943.50"></text></g><g><title>__x64_sys_getdents64 (125 samples, 0.08%)</title><rect x="71.5849%" y="917" width="0.0832%" height="15" fill="rgb(248,20,47)" fg:x="107562" fg:w="125"/><text x="71.8349%" y="927.50"></text></g><g><title>iterate_dir (123 samples, 0.08%)</title><rect x="71.5862%" y="901" width="0.0819%" height="15" fill="rgb(217,221,40)" fg:x="107564" fg:w="123"/><text x="71.8362%" y="911.50"></text></g><g><title>__GI___readdir64 (140 samples, 0.09%)</title><rect x="71.5762%" y="981" width="0.0932%" height="15" fill="rgb(226,149,51)" fg:x="107549" fg:w="140"/><text x="71.8262%" y="991.50"></text></g><g><title>__GI___getdents64 (131 samples, 0.09%)</title><rect x="71.5822%" y="965" width="0.0872%" height="15" fill="rgb(252,193,7)" fg:x="107558" fg:w="131"/><text x="71.8322%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (127 samples, 0.08%)</title><rect x="71.5849%" y="949" width="0.0845%" height="15" fill="rgb(205,123,0)" fg:x="107562" fg:w="127"/><text x="71.8349%" y="959.50"></text></g><g><title>cp_new_stat (23 samples, 0.02%)</title><rect x="71.7067%" y="917" width="0.0153%" height="15" fill="rgb(233,173,25)" fg:x="107745" fg:w="23"/><text x="71.9567%" y="927.50"></text></g><g><title>btrfs_getattr (40 samples, 0.03%)</title><rect x="71.7233%" y="901" width="0.0266%" height="15" fill="rgb(216,63,32)" fg:x="107770" fg:w="40"/><text x="71.9733%" y="911.50"></text></g><g><title>kmem_cache_free (28 samples, 0.02%)</title><rect x="71.7533%" y="885" width="0.0186%" height="15" fill="rgb(209,56,45)" fg:x="107815" fg:w="28"/><text x="72.0033%" y="895.50"></text></g><g><title>inode_permission.part.0 (134 samples, 0.09%)</title><rect x="71.8930%" y="853" width="0.0892%" height="15" fill="rgb(226,111,49)" fg:x="108025" fg:w="134"/><text x="72.1430%" y="863.50"></text></g><g><title>generic_permission (47 samples, 0.03%)</title><rect x="71.9509%" y="837" width="0.0313%" height="15" fill="rgb(244,181,21)" fg:x="108112" fg:w="47"/><text x="72.2009%" y="847.50"></text></g><g><title>security_inode_permission (16 samples, 0.01%)</title><rect x="71.9822%" y="853" width="0.0106%" height="15" fill="rgb(222,126,15)" fg:x="108159" fg:w="16"/><text x="72.2322%" y="863.50"></text></g><g><title>lookup_fast (252 samples, 0.17%)</title><rect x="72.0314%" y="837" width="0.1677%" height="15" fill="rgb(222,95,17)" fg:x="108233" fg:w="252"/><text x="72.2814%" y="847.50"></text></g><g><title>__d_lookup_rcu (189 samples, 0.13%)</title><rect x="72.0734%" y="821" width="0.1258%" height="15" fill="rgb(254,46,5)" fg:x="108296" fg:w="189"/><text x="72.3234%" y="831.50"></text></g><g><title>link_path_walk.part.0 (721 samples, 0.48%)</title><rect x="71.7859%" y="869" width="0.4798%" height="15" fill="rgb(236,216,35)" fg:x="107864" fg:w="721"/><text x="72.0359%" y="879.50"></text></g><g><title>walk_component (410 samples, 0.27%)</title><rect x="71.9928%" y="853" width="0.2729%" height="15" fill="rgb(217,187,26)" fg:x="108175" fg:w="410"/><text x="72.2428%" y="863.50"></text></g><g><title>step_into (96 samples, 0.06%)</title><rect x="72.2018%" y="837" width="0.0639%" height="15" fill="rgb(207,192,25)" fg:x="108489" fg:w="96"/><text x="72.4518%" y="847.50"></text></g><g><title>path_init (21 samples, 0.01%)</title><rect x="72.2657%" y="869" width="0.0140%" height="15" fill="rgb(253,135,27)" fg:x="108585" fg:w="21"/><text x="72.5157%" y="879.50"></text></g><g><title>nd_jump_root (20 samples, 0.01%)</title><rect x="72.2664%" y="853" width="0.0133%" height="15" fill="rgb(211,122,29)" fg:x="108586" fg:w="20"/><text x="72.5164%" y="863.50"></text></g><g><title>set_root (16 samples, 0.01%)</title><rect x="72.2690%" y="837" width="0.0106%" height="15" fill="rgb(233,162,40)" fg:x="108590" fg:w="16"/><text x="72.5190%" y="847.50"></text></g><g><title>btrfs_free_path (18 samples, 0.01%)</title><rect x="72.2903%" y="805" width="0.0120%" height="15" fill="rgb(222,184,47)" fg:x="108622" fg:w="18"/><text x="72.5403%" y="815.50"></text></g><g><title>btrfs_release_path (18 samples, 0.01%)</title><rect x="72.2903%" y="789" width="0.0120%" height="15" fill="rgb(249,99,23)" fg:x="108622" fg:w="18"/><text x="72.5403%" y="799.50"></text></g><g><title>generic_bin_search.constprop.0 (43 samples, 0.03%)</title><rect x="72.3376%" y="773" width="0.0286%" height="15" fill="rgb(214,60,12)" fg:x="108693" fg:w="43"/><text x="72.5876%" y="783.50"></text></g><g><title>__radix_tree_lookup (23 samples, 0.02%)</title><rect x="72.3888%" y="741" width="0.0153%" height="15" fill="rgb(250,229,36)" fg:x="108770" fg:w="23"/><text x="72.6388%" y="751.50"></text></g><g><title>find_extent_buffer (41 samples, 0.03%)</title><rect x="72.3828%" y="757" width="0.0273%" height="15" fill="rgb(232,195,10)" fg:x="108761" fg:w="41"/><text x="72.6328%" y="767.50"></text></g><g><title>read_block_for_search.isra.0 (80 samples, 0.05%)</title><rect x="72.3662%" y="773" width="0.0532%" height="15" fill="rgb(205,213,31)" fg:x="108736" fg:w="80"/><text x="72.6162%" y="783.50"></text></g><g><title>btrfs_search_slot (177 samples, 0.12%)</title><rect x="72.3030%" y="789" width="0.1178%" height="15" fill="rgb(237,43,8)" fg:x="108641" fg:w="177"/><text x="72.5530%" y="799.50"></text></g><g><title>btrfs_lookup_dir_item (183 samples, 0.12%)</title><rect x="72.3023%" y="805" width="0.1218%" height="15" fill="rgb(216,208,3)" fg:x="108640" fg:w="183"/><text x="72.5523%" y="815.50"></text></g><g><title>kmem_cache_alloc (17 samples, 0.01%)</title><rect x="72.4241%" y="805" width="0.0113%" height="15" fill="rgb(228,179,44)" fg:x="108823" fg:w="17"/><text x="72.6741%" y="815.50"></text></g><g><title>btrfs_lookup (224 samples, 0.15%)</title><rect x="72.2890%" y="837" width="0.1491%" height="15" fill="rgb(230,192,27)" fg:x="108620" fg:w="224"/><text x="72.5390%" y="847.50"></text></g><g><title>btrfs_lookup_dentry (224 samples, 0.15%)</title><rect x="72.2890%" y="821" width="0.1491%" height="15" fill="rgb(251,30,38)" fg:x="108620" fg:w="224"/><text x="72.5390%" y="831.50"></text></g><g><title>memcg_slab_post_alloc_hook (16 samples, 0.01%)</title><rect x="72.4534%" y="773" width="0.0106%" height="15" fill="rgb(246,55,52)" fg:x="108867" fg:w="16"/><text x="72.7034%" y="783.50"></text></g><g><title>kmem_cache_alloc (46 samples, 0.03%)</title><rect x="72.4494%" y="789" width="0.0306%" height="15" fill="rgb(249,79,26)" fg:x="108861" fg:w="46"/><text x="72.6994%" y="799.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (21 samples, 0.01%)</title><rect x="72.4660%" y="773" width="0.0140%" height="15" fill="rgb(220,202,16)" fg:x="108886" fg:w="21"/><text x="72.7160%" y="783.50"></text></g><g><title>__d_alloc (58 samples, 0.04%)</title><rect x="72.4427%" y="805" width="0.0386%" height="15" fill="rgb(250,170,23)" fg:x="108851" fg:w="58"/><text x="72.6927%" y="815.50"></text></g><g><title>d_alloc_parallel (70 samples, 0.05%)</title><rect x="72.4381%" y="837" width="0.0466%" height="15" fill="rgb(230,7,37)" fg:x="108844" fg:w="70"/><text x="72.6881%" y="847.50"></text></g><g><title>d_alloc (64 samples, 0.04%)</title><rect x="72.4421%" y="821" width="0.0426%" height="15" fill="rgb(213,71,1)" fg:x="108850" fg:w="64"/><text x="72.6921%" y="831.50"></text></g><g><title>__lookup_slow (319 samples, 0.21%)</title><rect x="72.2877%" y="853" width="0.2123%" height="15" fill="rgb(227,87,39)" fg:x="108618" fg:w="319"/><text x="72.5377%" y="863.50"></text></g><g><title>d_splice_alias (23 samples, 0.02%)</title><rect x="72.4847%" y="837" width="0.0153%" height="15" fill="rgb(210,41,29)" fg:x="108914" fg:w="23"/><text x="72.7347%" y="847.50"></text></g><g><title>__d_add (23 samples, 0.02%)</title><rect x="72.4847%" y="821" width="0.0153%" height="15" fill="rgb(206,191,31)" fg:x="108914" fg:w="23"/><text x="72.7347%" y="831.50"></text></g><g><title>__d_lookup_rcu (102 samples, 0.07%)</title><rect x="72.5060%" y="837" width="0.0679%" height="15" fill="rgb(247,75,54)" fg:x="108946" fg:w="102"/><text x="72.7560%" y="847.50"></text></g><g><title>lookup_fast (120 samples, 0.08%)</title><rect x="72.5033%" y="853" width="0.0799%" height="15" fill="rgb(208,54,50)" fg:x="108942" fg:w="120"/><text x="72.7533%" y="863.50"></text></g><g><title>dput (16 samples, 0.01%)</title><rect x="72.5898%" y="837" width="0.0106%" height="15" fill="rgb(214,90,37)" fg:x="109072" fg:w="16"/><text x="72.8398%" y="847.50"></text></g><g><title>d_lru_add (16 samples, 0.01%)</title><rect x="72.5898%" y="821" width="0.0106%" height="15" fill="rgb(220,132,6)" fg:x="109072" fg:w="16"/><text x="72.8398%" y="831.50"></text></g><g><title>step_into (28 samples, 0.02%)</title><rect x="72.5832%" y="853" width="0.0186%" height="15" fill="rgb(213,167,7)" fg:x="109062" fg:w="28"/><text x="72.8332%" y="863.50"></text></g><g><title>path_lookupat (1,250 samples, 0.83%)</title><rect x="71.7719%" y="885" width="0.8319%" height="15" fill="rgb(243,36,27)" fg:x="107843" fg:w="1250"/><text x="72.0219%" y="895.50"></text></g><g><title>walk_component (478 samples, 0.32%)</title><rect x="72.2857%" y="869" width="0.3181%" height="15" fill="rgb(235,147,12)" fg:x="108615" fg:w="478"/><text x="72.5357%" y="879.50"></text></g><g><title>filename_lookup (1,285 samples, 0.86%)</title><rect x="71.7499%" y="901" width="0.8552%" height="15" fill="rgb(212,198,44)" fg:x="107810" fg:w="1285"/><text x="71.9999%" y="911.50"></text></g><g><title>security_inode_getattr (39 samples, 0.03%)</title><rect x="72.6124%" y="901" width="0.0260%" height="15" fill="rgb(218,68,50)" fg:x="109106" fg:w="39"/><text x="72.8624%" y="911.50"></text></g><g><title>memset_erms (37 samples, 0.02%)</title><rect x="72.6663%" y="853" width="0.0246%" height="15" fill="rgb(224,79,48)" fg:x="109187" fg:w="37"/><text x="72.9163%" y="863.50"></text></g><g><title>kmem_cache_alloc (78 samples, 0.05%)</title><rect x="72.6457%" y="869" width="0.0519%" height="15" fill="rgb(213,191,50)" fg:x="109156" fg:w="78"/><text x="72.8957%" y="879.50"></text></g><g><title>user_path_at_empty (166 samples, 0.11%)</title><rect x="72.6384%" y="901" width="0.1105%" height="15" fill="rgb(254,146,10)" fg:x="109145" fg:w="166"/><text x="72.8884%" y="911.50"></text></g><g><title>getname_flags.part.0 (163 samples, 0.11%)</title><rect x="72.6404%" y="885" width="0.1085%" height="15" fill="rgb(215,175,11)" fg:x="109148" fg:w="163"/><text x="72.8904%" y="895.50"></text></g><g><title>strncpy_from_user (77 samples, 0.05%)</title><rect x="72.6976%" y="869" width="0.0512%" height="15" fill="rgb(207,49,7)" fg:x="109234" fg:w="77"/><text x="72.9476%" y="879.50"></text></g><g><title>__check_object_size (30 samples, 0.02%)</title><rect x="72.7289%" y="853" width="0.0200%" height="15" fill="rgb(234,144,29)" fg:x="109281" fg:w="30"/><text x="72.9789%" y="863.50"></text></g><g><title>__do_sys_newstat (1,580 samples, 1.05%)</title><rect x="71.7040%" y="933" width="1.0515%" height="15" fill="rgb(213,222,48)" fg:x="107741" fg:w="1580"/><text x="71.9540%" y="943.50"></text></g><g><title>vfs_statx (1,553 samples, 1.03%)</title><rect x="71.7220%" y="917" width="1.0336%" height="15" fill="rgb(222,8,6)" fg:x="107768" fg:w="1553"/><text x="71.9720%" y="927.50"></text></g><g><title>do_syscall_64 (1,582 samples, 1.05%)</title><rect x="71.7040%" y="949" width="1.0529%" height="15" fill="rgb(221,114,49)" fg:x="107741" fg:w="1582"/><text x="71.9540%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,589 samples, 1.06%)</title><rect x="71.7027%" y="965" width="1.0575%" height="15" fill="rgb(250,140,42)" fg:x="107739" fg:w="1589"/><text x="71.9527%" y="975.50"></text></g><g><title>__GI___xstat (1,631 samples, 1.09%)</title><rect x="71.6787%" y="981" width="1.0855%" height="15" fill="rgb(250,150,27)" fg:x="107703" fg:w="1631"/><text x="71.9287%" y="991.50"></text></g><g><title>__GI_remove (20 samples, 0.01%)</title><rect x="72.7642%" y="965" width="0.0133%" height="15" fill="rgb(252,159,3)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="975.50"></text></g><g><title>__GI___rmdir (20 samples, 0.01%)</title><rect x="72.7642%" y="949" width="0.0133%" height="15" fill="rgb(241,182,3)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="72.7642%" y="933" width="0.0133%" height="15" fill="rgb(236,3,9)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="943.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="72.7642%" y="917" width="0.0133%" height="15" fill="rgb(223,227,51)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="927.50"></text></g><g><title>do_rmdir (20 samples, 0.01%)</title><rect x="72.7642%" y="901" width="0.0133%" height="15" fill="rgb(232,133,30)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="911.50"></text></g><g><title>vfs_rmdir.part.0 (20 samples, 0.01%)</title><rect x="72.7642%" y="885" width="0.0133%" height="15" fill="rgb(209,93,27)" fg:x="109334" fg:w="20"/><text x="73.0142%" y="895.50"></text></g><g><title>__GI_remove (66 samples, 0.04%)</title><rect x="72.7642%" y="981" width="0.0439%" height="15" fill="rgb(208,108,34)" fg:x="109334" fg:w="66"/><text x="73.0142%" y="991.50"></text></g><g><title>__unlink (46 samples, 0.03%)</title><rect x="72.7775%" y="965" width="0.0306%" height="15" fill="rgb(215,189,13)" fg:x="109354" fg:w="46"/><text x="73.0275%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.03%)</title><rect x="72.7775%" y="949" width="0.0306%" height="15" fill="rgb(206,88,23)" fg:x="109354" fg:w="46"/><text x="73.0275%" y="959.50"></text></g><g><title>do_syscall_64 (46 samples, 0.03%)</title><rect x="72.7775%" y="933" width="0.0306%" height="15" fill="rgb(240,173,0)" fg:x="109354" fg:w="46"/><text x="73.0275%" y="943.50"></text></g><g><title>do_unlinkat (44 samples, 0.03%)</title><rect x="72.7788%" y="917" width="0.0293%" height="15" fill="rgb(223,106,52)" fg:x="109356" fg:w="44"/><text x="73.0288%" y="927.50"></text></g><g><title>kmem_cache_alloc (20 samples, 0.01%)</title><rect x="72.8247%" y="901" width="0.0133%" height="15" fill="rgb(206,130,16)" fg:x="109425" fg:w="20"/><text x="73.0747%" y="911.50"></text></g><g><title>__x64_sys_unlinkat (45 samples, 0.03%)</title><rect x="72.8227%" y="933" width="0.0299%" height="15" fill="rgb(220,54,25)" fg:x="109422" fg:w="45"/><text x="73.0727%" y="943.50"></text></g><g><title>getname_flags.part.0 (43 samples, 0.03%)</title><rect x="72.8241%" y="917" width="0.0286%" height="15" fill="rgb(210,4,38)" fg:x="109424" fg:w="43"/><text x="73.0741%" y="927.50"></text></g><g><title>strncpy_from_user (22 samples, 0.01%)</title><rect x="72.8381%" y="901" width="0.0146%" height="15" fill="rgb(238,94,39)" fg:x="109445" fg:w="22"/><text x="73.0881%" y="911.50"></text></g><g><title>btrfs_del_items (20 samples, 0.01%)</title><rect x="72.8607%" y="869" width="0.0133%" height="15" fill="rgb(234,124,34)" fg:x="109479" fg:w="20"/><text x="73.1107%" y="879.50"></text></g><g><title>btrfs_lookup_dir_item (18 samples, 0.01%)</title><rect x="72.8800%" y="869" width="0.0120%" height="15" fill="rgb(221,91,40)" fg:x="109508" fg:w="18"/><text x="73.1300%" y="879.50"></text></g><g><title>__btrfs_unlink_inode (56 samples, 0.04%)</title><rect x="72.8593%" y="885" width="0.0373%" height="15" fill="rgb(246,53,28)" fg:x="109477" fg:w="56"/><text x="73.1093%" y="895.50"></text></g><g><title>btrfs_orphan_add (17 samples, 0.01%)</title><rect x="72.8966%" y="885" width="0.0113%" height="15" fill="rgb(229,109,7)" fg:x="109533" fg:w="17"/><text x="73.1466%" y="895.50"></text></g><g><title>btrfs_insert_orphan_item (17 samples, 0.01%)</title><rect x="72.8966%" y="869" width="0.0113%" height="15" fill="rgb(249,117,8)" fg:x="109533" fg:w="17"/><text x="73.1466%" y="879.50"></text></g><g><title>btrfs_rmdir (88 samples, 0.06%)</title><rect x="72.8574%" y="901" width="0.0586%" height="15" fill="rgb(210,181,1)" fg:x="109474" fg:w="88"/><text x="73.1074%" y="911.50"></text></g><g><title>btrfs_del_items (34 samples, 0.02%)</title><rect x="72.9286%" y="837" width="0.0226%" height="15" fill="rgb(211,66,1)" fg:x="109581" fg:w="34"/><text x="73.1786%" y="847.50"></text></g><g><title>__btrfs_update_delayed_inode (44 samples, 0.03%)</title><rect x="72.9286%" y="853" width="0.0293%" height="15" fill="rgb(221,90,14)" fg:x="109581" fg:w="44"/><text x="73.1786%" y="863.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (47 samples, 0.03%)</title><rect x="72.9279%" y="869" width="0.0313%" height="15" fill="rgb(219,222,44)" fg:x="109580" fg:w="47"/><text x="73.1779%" y="879.50"></text></g><g><title>btrfs_del_orphan_item (20 samples, 0.01%)</title><rect x="72.9592%" y="869" width="0.0133%" height="15" fill="rgb(246,34,33)" fg:x="109627" fg:w="20"/><text x="73.2092%" y="879.50"></text></g><g><title>btrfs_del_items (31 samples, 0.02%)</title><rect x="72.9778%" y="853" width="0.0206%" height="15" fill="rgb(227,135,41)" fg:x="109655" fg:w="31"/><text x="73.2278%" y="863.50"></text></g><g><title>btrfs_search_slot (17 samples, 0.01%)</title><rect x="73.0131%" y="853" width="0.0113%" height="15" fill="rgb(226,15,14)" fg:x="109708" fg:w="17"/><text x="73.2631%" y="863.50"></text></g><g><title>btrfs_truncate_inode_items (83 samples, 0.06%)</title><rect x="72.9725%" y="869" width="0.0552%" height="15" fill="rgb(236,148,47)" fg:x="109647" fg:w="83"/><text x="73.2225%" y="879.50"></text></g><g><title>evict (170 samples, 0.11%)</title><rect x="72.9219%" y="901" width="0.1131%" height="15" fill="rgb(233,162,52)" fg:x="109571" fg:w="170"/><text x="73.1719%" y="911.50"></text></g><g><title>btrfs_evict_inode (166 samples, 0.11%)</title><rect x="72.9246%" y="885" width="0.1105%" height="15" fill="rgb(244,35,28)" fg:x="109575" fg:w="166"/><text x="73.1746%" y="895.50"></text></g><g><title>d_walk (26 samples, 0.02%)</title><rect x="73.0357%" y="885" width="0.0173%" height="15" fill="rgb(205,121,10)" fg:x="109742" fg:w="26"/><text x="73.2857%" y="895.50"></text></g><g><title>select_collect (22 samples, 0.01%)</title><rect x="73.0384%" y="869" width="0.0146%" height="15" fill="rgb(250,58,18)" fg:x="109746" fg:w="22"/><text x="73.2884%" y="879.50"></text></g><g><title>__dentry_kill (23 samples, 0.02%)</title><rect x="73.0537%" y="869" width="0.0153%" height="15" fill="rgb(216,37,13)" fg:x="109769" fg:w="23"/><text x="73.3037%" y="879.50"></text></g><g><title>do_rmdir (335 samples, 0.22%)</title><rect x="72.8527%" y="933" width="0.2229%" height="15" fill="rgb(221,215,42)" fg:x="109467" fg:w="335"/><text x="73.1027%" y="943.50"></text></g><g><title>vfs_rmdir.part.0 (328 samples, 0.22%)</title><rect x="72.8574%" y="917" width="0.2183%" height="15" fill="rgb(217,214,19)" fg:x="109474" fg:w="328"/><text x="73.1074%" y="927.50"></text></g><g><title>shrink_dcache_parent (60 samples, 0.04%)</title><rect x="73.0357%" y="901" width="0.0399%" height="15" fill="rgb(233,139,13)" fg:x="109742" fg:w="60"/><text x="73.2857%" y="911.50"></text></g><g><title>shrink_dentry_list (34 samples, 0.02%)</title><rect x="73.0530%" y="885" width="0.0226%" height="15" fill="rgb(247,168,23)" fg:x="109768" fg:w="34"/><text x="73.3030%" y="895.50"></text></g><g><title>__lookup_hash (43 samples, 0.03%)</title><rect x="73.0790%" y="917" width="0.0286%" height="15" fill="rgb(207,202,1)" fg:x="109807" fg:w="43"/><text x="73.3290%" y="927.50"></text></g><g><title>lookup_dcache (42 samples, 0.03%)</title><rect x="73.0796%" y="901" width="0.0280%" height="15" fill="rgb(220,155,48)" fg:x="109808" fg:w="42"/><text x="73.3296%" y="911.50"></text></g><g><title>d_lookup (41 samples, 0.03%)</title><rect x="73.0803%" y="885" width="0.0273%" height="15" fill="rgb(250,43,26)" fg:x="109809" fg:w="41"/><text x="73.3303%" y="895.50"></text></g><g><title>__d_lookup (41 samples, 0.03%)</title><rect x="73.0803%" y="869" width="0.0273%" height="15" fill="rgb(212,190,23)" fg:x="109809" fg:w="41"/><text x="73.3303%" y="879.50"></text></g><g><title>evict (17 samples, 0.01%)</title><rect x="73.1142%" y="917" width="0.0113%" height="15" fill="rgb(216,39,24)" fg:x="109860" fg:w="17"/><text x="73.3642%" y="927.50"></text></g><g><title>btrfs_evict_inode (17 samples, 0.01%)</title><rect x="73.1142%" y="901" width="0.0113%" height="15" fill="rgb(252,113,16)" fg:x="109860" fg:w="17"/><text x="73.3642%" y="911.50"></text></g><g><title>filename_parentat (29 samples, 0.02%)</title><rect x="73.1256%" y="917" width="0.0193%" height="15" fill="rgb(208,113,19)" fg:x="109877" fg:w="29"/><text x="73.3756%" y="927.50"></text></g><g><title>path_parentat (27 samples, 0.02%)</title><rect x="73.1269%" y="901" width="0.0180%" height="15" fill="rgb(234,107,25)" fg:x="109879" fg:w="27"/><text x="73.3769%" y="911.50"></text></g><g><title>__btrfs_end_transaction (18 samples, 0.01%)</title><rect x="73.1815%" y="885" width="0.0120%" height="15" fill="rgb(234,217,51)" fg:x="109961" fg:w="18"/><text x="73.4315%" y="895.50"></text></g><g><title>btrfs_get_token_32 (51 samples, 0.03%)</title><rect x="73.2280%" y="837" width="0.0339%" height="15" fill="rgb(251,29,42)" fg:x="110031" fg:w="51"/><text x="73.4780%" y="847.50"></text></g><g><title>btrfs_set_token_32 (47 samples, 0.03%)</title><rect x="73.2640%" y="837" width="0.0313%" height="15" fill="rgb(221,62,51)" fg:x="110085" fg:w="47"/><text x="73.5140%" y="847.50"></text></g><g><title>btrfs_del_items (229 samples, 0.15%)</title><rect x="73.2061%" y="853" width="0.1524%" height="15" fill="rgb(240,192,43)" fg:x="109998" fg:w="229"/><text x="73.4561%" y="863.50"></text></g><g><title>memmove_extent_buffer (81 samples, 0.05%)</title><rect x="73.3046%" y="837" width="0.0539%" height="15" fill="rgb(224,157,47)" fg:x="110146" fg:w="81"/><text x="73.5546%" y="847.50"></text></g><g><title>memmove (64 samples, 0.04%)</title><rect x="73.3159%" y="821" width="0.0426%" height="15" fill="rgb(226,84,45)" fg:x="110163" fg:w="64"/><text x="73.5659%" y="831.50"></text></g><g><title>btrfs_find_name_in_backref (20 samples, 0.01%)</title><rect x="73.3585%" y="853" width="0.0133%" height="15" fill="rgb(208,207,23)" fg:x="110227" fg:w="20"/><text x="73.6085%" y="863.50"></text></g><g><title>generic_bin_search.constprop.0 (36 samples, 0.02%)</title><rect x="73.4057%" y="837" width="0.0240%" height="15" fill="rgb(253,34,51)" fg:x="110298" fg:w="36"/><text x="73.6557%" y="847.50"></text></g><g><title>__radix_tree_lookup (17 samples, 0.01%)</title><rect x="73.4443%" y="805" width="0.0113%" height="15" fill="rgb(227,26,34)" fg:x="110356" fg:w="17"/><text x="73.6943%" y="815.50"></text></g><g><title>find_extent_buffer (38 samples, 0.03%)</title><rect x="73.4370%" y="821" width="0.0253%" height="15" fill="rgb(245,75,19)" fg:x="110345" fg:w="38"/><text x="73.6870%" y="831.50"></text></g><g><title>read_block_for_search.isra.0 (55 samples, 0.04%)</title><rect x="73.4297%" y="837" width="0.0366%" height="15" fill="rgb(250,191,31)" fg:x="110334" fg:w="55"/><text x="73.6797%" y="847.50"></text></g><g><title>btrfs_search_slot (134 samples, 0.09%)</title><rect x="73.3844%" y="853" width="0.0892%" height="15" fill="rgb(224,11,50)" fg:x="110266" fg:w="134"/><text x="73.6344%" y="863.50"></text></g><g><title>btrfs_del_inode_ref (418 samples, 0.28%)</title><rect x="73.2021%" y="869" width="0.2782%" height="15" fill="rgb(231,171,7)" fg:x="109992" fg:w="418"/><text x="73.4521%" y="879.50"></text></g><g><title>btrfs_get_token_32 (124 samples, 0.08%)</title><rect x="73.5189%" y="853" width="0.0825%" height="15" fill="rgb(252,214,10)" fg:x="110468" fg:w="124"/><text x="73.7689%" y="863.50"></text></g><g><title>check_setget_bounds.isra.0 (23 samples, 0.02%)</title><rect x="73.5861%" y="837" width="0.0153%" height="15" fill="rgb(249,45,46)" fg:x="110569" fg:w="23"/><text x="73.8361%" y="847.50"></text></g><g><title>btrfs_set_token_32 (113 samples, 0.08%)</title><rect x="73.6074%" y="853" width="0.0752%" height="15" fill="rgb(240,173,7)" fg:x="110601" fg:w="113"/><text x="73.8574%" y="863.50"></text></g><g><title>check_setget_bounds.isra.0 (20 samples, 0.01%)</title><rect x="73.6693%" y="837" width="0.0133%" height="15" fill="rgb(235,214,13)" fg:x="110694" fg:w="20"/><text x="73.9193%" y="847.50"></text></g><g><title>memcpy_extent_buffer (19 samples, 0.01%)</title><rect x="73.6846%" y="853" width="0.0126%" height="15" fill="rgb(245,156,8)" fg:x="110717" fg:w="19"/><text x="73.9346%" y="863.50"></text></g><g><title>memmove_extent_buffer (80 samples, 0.05%)</title><rect x="73.6972%" y="853" width="0.0532%" height="15" fill="rgb(235,46,12)" fg:x="110736" fg:w="80"/><text x="73.9472%" y="863.50"></text></g><g><title>memmove (65 samples, 0.04%)</title><rect x="73.7072%" y="837" width="0.0433%" height="15" fill="rgb(221,81,14)" fg:x="110751" fg:w="65"/><text x="73.9572%" y="847.50"></text></g><g><title>btrfs_del_items (415 samples, 0.28%)</title><rect x="73.4803%" y="869" width="0.2762%" height="15" fill="rgb(238,207,9)" fg:x="110410" fg:w="415"/><text x="73.7303%" y="879.50"></text></g><g><title>__mutex_lock.constprop.0 (24 samples, 0.02%)</title><rect x="73.7751%" y="853" width="0.0160%" height="15" fill="rgb(224,129,35)" fg:x="110853" fg:w="24"/><text x="74.0251%" y="863.50"></text></g><g><title>mutex_spin_on_owner (23 samples, 0.02%)</title><rect x="73.7758%" y="837" width="0.0153%" height="15" fill="rgb(243,218,34)" fg:x="110854" fg:w="23"/><text x="74.0258%" y="847.50"></text></g><g><title>btrfs_delete_delayed_dir_index (80 samples, 0.05%)</title><rect x="73.7571%" y="869" width="0.0532%" height="15" fill="rgb(220,166,13)" fg:x="110826" fg:w="80"/><text x="74.0071%" y="879.50"></text></g><g><title>generic_bin_search.constprop.0 (47 samples, 0.03%)</title><rect x="73.8523%" y="837" width="0.0313%" height="15" fill="rgb(227,167,49)" fg:x="110969" fg:w="47"/><text x="74.1023%" y="847.50"></text></g><g><title>__radix_tree_lookup (19 samples, 0.01%)</title><rect x="73.8949%" y="805" width="0.0126%" height="15" fill="rgb(234,142,12)" fg:x="111033" fg:w="19"/><text x="74.1449%" y="815.50"></text></g><g><title>find_extent_buffer (33 samples, 0.02%)</title><rect x="73.8929%" y="821" width="0.0220%" height="15" fill="rgb(207,100,48)" fg:x="111030" fg:w="33"/><text x="74.1429%" y="831.50"></text></g><g><title>read_block_for_search.isra.0 (56 samples, 0.04%)</title><rect x="73.8836%" y="837" width="0.0373%" height="15" fill="rgb(210,25,14)" fg:x="111016" fg:w="56"/><text x="74.1336%" y="847.50"></text></g><g><title>btrfs_search_slot (156 samples, 0.10%)</title><rect x="73.8244%" y="853" width="0.1038%" height="15" fill="rgb(246,116,27)" fg:x="110927" fg:w="156"/><text x="74.0744%" y="863.50"></text></g><g><title>btrfs_lookup_dir_item (175 samples, 0.12%)</title><rect x="73.8150%" y="869" width="0.1165%" height="15" fill="rgb(214,193,42)" fg:x="110913" fg:w="175"/><text x="74.0650%" y="879.50"></text></g><g><title>btrfs_release_path (18 samples, 0.01%)</title><rect x="73.9315%" y="869" width="0.0120%" height="15" fill="rgb(214,122,8)" fg:x="111088" fg:w="18"/><text x="74.1815%" y="879.50"></text></g><g><title>btrfs_delayed_update_inode (21 samples, 0.01%)</title><rect x="73.9468%" y="853" width="0.0140%" height="15" fill="rgb(244,173,18)" fg:x="111111" fg:w="21"/><text x="74.1968%" y="863.50"></text></g><g><title>btrfs_update_inode (34 samples, 0.02%)</title><rect x="73.9435%" y="869" width="0.0226%" height="15" fill="rgb(232,68,19)" fg:x="111106" fg:w="34"/><text x="74.1935%" y="879.50"></text></g><g><title>__btrfs_unlink_inode (1,172 samples, 0.78%)</title><rect x="73.1934%" y="885" width="0.7800%" height="15" fill="rgb(236,224,1)" fg:x="109979" fg:w="1172"/><text x="73.4434%" y="895.50"></text></g><g><title>btrfs_btree_balance_dirty (17 samples, 0.01%)</title><rect x="73.9734%" y="885" width="0.0113%" height="15" fill="rgb(240,11,8)" fg:x="111151" fg:w="17"/><text x="74.2234%" y="895.50"></text></g><g><title>btrfs_get_or_create_delayed_node (21 samples, 0.01%)</title><rect x="74.0174%" y="853" width="0.0140%" height="15" fill="rgb(244,159,20)" fg:x="111217" fg:w="21"/><text x="74.2674%" y="863.50"></text></g><g><title>btrfs_get_delayed_node (20 samples, 0.01%)</title><rect x="74.0180%" y="837" width="0.0133%" height="15" fill="rgb(240,223,54)" fg:x="111218" fg:w="20"/><text x="74.2680%" y="847.50"></text></g><g><title>btrfs_delayed_update_inode (63 samples, 0.04%)</title><rect x="73.9987%" y="869" width="0.0419%" height="15" fill="rgb(237,146,5)" fg:x="111189" fg:w="63"/><text x="74.2487%" y="879.50"></text></g><g><title>btrfs_update_inode (73 samples, 0.05%)</title><rect x="73.9954%" y="885" width="0.0486%" height="15" fill="rgb(218,221,32)" fg:x="111184" fg:w="73"/><text x="74.2454%" y="895.50"></text></g><g><title>btrfs_block_rsv_add (30 samples, 0.02%)</title><rect x="74.0486%" y="869" width="0.0200%" height="15" fill="rgb(244,96,26)" fg:x="111264" fg:w="30"/><text x="74.2986%" y="879.50"></text></g><g><title>btrfs_reserve_metadata_bytes (28 samples, 0.02%)</title><rect x="74.0500%" y="853" width="0.0186%" height="15" fill="rgb(245,184,37)" fg:x="111266" fg:w="28"/><text x="74.3000%" y="863.50"></text></g><g><title>__reserve_bytes (27 samples, 0.02%)</title><rect x="74.0506%" y="837" width="0.0180%" height="15" fill="rgb(248,91,47)" fg:x="111267" fg:w="27"/><text x="74.3006%" y="847.50"></text></g><g><title>btrfs_unlink (1,356 samples, 0.90%)</title><rect x="73.1815%" y="901" width="0.9024%" height="15" fill="rgb(243,199,8)" fg:x="109961" fg:w="1356"/><text x="73.4315%" y="911.50"></text></g><g><title>start_transaction (60 samples, 0.04%)</title><rect x="74.0440%" y="885" width="0.0399%" height="15" fill="rgb(249,12,15)" fg:x="111257" fg:w="60"/><text x="74.2940%" y="895.50"></text></g><g><title>do_unlinkat (1,558 samples, 1.04%)</title><rect x="73.0756%" y="933" width="1.0369%" height="15" fill="rgb(245,97,12)" fg:x="109802" fg:w="1558"/><text x="73.3256%" y="943.50"></text></g><g><title>vfs_unlink (1,406 samples, 0.94%)</title><rect x="73.1768%" y="917" width="0.9357%" height="15" fill="rgb(244,61,1)" fg:x="109954" fg:w="1406"/><text x="73.4268%" y="927.50"></text></g><g><title>do_syscall_64 (1,940 samples, 1.29%)</title><rect x="72.8221%" y="949" width="1.2911%" height="15" fill="rgb(222,194,10)" fg:x="109421" fg:w="1940"/><text x="73.0721%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,942 samples, 1.29%)</title><rect x="72.8221%" y="965" width="1.2924%" height="15" fill="rgb(226,178,8)" fg:x="109421" fg:w="1942"/><text x="73.0721%" y="975.50"></text></g><g><title>__GI_unlinkat (1,965 samples, 1.31%)</title><rect x="72.8081%" y="981" width="1.3078%" height="15" fill="rgb(241,32,34)" fg:x="109400" fg:w="1965"/><text x="73.0581%" y="991.50"></text></g><g><title>__fdopendir (24 samples, 0.02%)</title><rect x="74.1272%" y="981" width="0.0160%" height="15" fill="rgb(254,26,6)" fg:x="111382" fg:w="24"/><text x="74.3772%" y="991.50"></text></g><g><title>__alloc_dir (17 samples, 0.01%)</title><rect x="74.1318%" y="965" width="0.0113%" height="15" fill="rgb(249,71,11)" fg:x="111389" fg:w="17"/><text x="74.3818%" y="975.50"></text></g><g><title>btrfs_add_link (17 samples, 0.01%)</title><rect x="74.1451%" y="853" width="0.0113%" height="15" fill="rgb(232,170,27)" fg:x="111409" fg:w="17"/><text x="74.3951%" y="863.50"></text></g><g><title>btrfs_insert_dir_item (17 samples, 0.01%)</title><rect x="74.1451%" y="837" width="0.0113%" height="15" fill="rgb(214,223,17)" fg:x="111409" fg:w="17"/><text x="74.3951%" y="847.50"></text></g><g><title>btrfs_create (32 samples, 0.02%)</title><rect x="74.1445%" y="869" width="0.0213%" height="15" fill="rgb(250,18,15)" fg:x="111408" fg:w="32"/><text x="74.3945%" y="879.50"></text></g><g><title>__libc_open64 (37 samples, 0.02%)</title><rect x="74.1431%" y="981" width="0.0246%" height="15" fill="rgb(212,153,51)" fg:x="111406" fg:w="37"/><text x="74.3931%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.02%)</title><rect x="74.1431%" y="965" width="0.0246%" height="15" fill="rgb(219,194,12)" fg:x="111406" fg:w="37"/><text x="74.3931%" y="975.50"></text></g><g><title>do_syscall_64 (37 samples, 0.02%)</title><rect x="74.1431%" y="949" width="0.0246%" height="15" fill="rgb(212,58,17)" fg:x="111406" fg:w="37"/><text x="74.3931%" y="959.50"></text></g><g><title>__x64_sys_openat (37 samples, 0.02%)</title><rect x="74.1431%" y="933" width="0.0246%" height="15" fill="rgb(254,5,10)" fg:x="111406" fg:w="37"/><text x="74.3931%" y="943.50"></text></g><g><title>do_sys_openat2 (36 samples, 0.02%)</title><rect x="74.1438%" y="917" width="0.0240%" height="15" fill="rgb(246,91,7)" fg:x="111407" fg:w="36"/><text x="74.3938%" y="927.50"></text></g><g><title>do_filp_open (36 samples, 0.02%)</title><rect x="74.1438%" y="901" width="0.0240%" height="15" fill="rgb(218,108,49)" fg:x="111407" fg:w="36"/><text x="74.3938%" y="911.50"></text></g><g><title>path_openat (36 samples, 0.02%)</title><rect x="74.1438%" y="885" width="0.0240%" height="15" fill="rgb(238,123,20)" fg:x="111407" fg:w="36"/><text x="74.3938%" y="895.50"></text></g><g><title>do_filp_open (33 samples, 0.02%)</title><rect x="74.1704%" y="901" width="0.0220%" height="15" fill="rgb(231,69,23)" fg:x="111447" fg:w="33"/><text x="74.4204%" y="911.50"></text></g><g><title>path_openat (32 samples, 0.02%)</title><rect x="74.1711%" y="885" width="0.0213%" height="15" fill="rgb(230,209,3)" fg:x="111448" fg:w="32"/><text x="74.4211%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="74.1684%" y="965" width="0.0273%" height="15" fill="rgb(231,19,0)" fg:x="111444" fg:w="41"/><text x="74.4184%" y="975.50"></text></g><g><title>do_syscall_64 (41 samples, 0.03%)</title><rect x="74.1684%" y="949" width="0.0273%" height="15" fill="rgb(226,192,25)" fg:x="111444" fg:w="41"/><text x="74.4184%" y="959.50"></text></g><g><title>__x64_sys_openat (40 samples, 0.03%)</title><rect x="74.1691%" y="933" width="0.0266%" height="15" fill="rgb(223,175,53)" fg:x="111445" fg:w="40"/><text x="74.4191%" y="943.50"></text></g><g><title>do_sys_openat2 (40 samples, 0.03%)</title><rect x="74.1691%" y="917" width="0.0266%" height="15" fill="rgb(248,35,51)" fg:x="111445" fg:w="40"/><text x="74.4191%" y="927.50"></text></g><g><title>__libc_openat64 (43 samples, 0.03%)</title><rect x="74.1678%" y="981" width="0.0286%" height="15" fill="rgb(230,37,26)" fg:x="111443" fg:w="43"/><text x="74.4178%" y="991.50"></text></g><g><title>__libc_write (22 samples, 0.01%)</title><rect x="74.1964%" y="981" width="0.0146%" height="15" fill="rgb(206,120,22)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="991.50"></text></g><g><title>__libc_write (22 samples, 0.01%)</title><rect x="74.1964%" y="965" width="0.0146%" height="15" fill="rgb(207,165,28)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="74.1964%" y="949" width="0.0146%" height="15" fill="rgb(226,23,46)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="959.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="74.1964%" y="933" width="0.0146%" height="15" fill="rgb(208,130,44)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="943.50"></text></g><g><title>ksys_write (22 samples, 0.01%)</title><rect x="74.1964%" y="917" width="0.0146%" height="15" fill="rgb(231,67,8)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="927.50"></text></g><g><title>vfs_write (22 samples, 0.01%)</title><rect x="74.1964%" y="901" width="0.0146%" height="15" fill="rgb(205,183,22)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="911.50"></text></g><g><title>new_sync_write (22 samples, 0.01%)</title><rect x="74.1964%" y="885" width="0.0146%" height="15" fill="rgb(224,47,9)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="895.50"></text></g><g><title>btrfs_file_write_iter (22 samples, 0.01%)</title><rect x="74.1964%" y="869" width="0.0146%" height="15" fill="rgb(250,183,49)" fg:x="111486" fg:w="22"/><text x="74.4464%" y="879.50"></text></g><g><title>do_filp_open (23 samples, 0.02%)</title><rect x="74.2110%" y="885" width="0.0153%" height="15" fill="rgb(220,151,39)" fg:x="111508" fg:w="23"/><text x="74.4610%" y="895.50"></text></g><g><title>path_openat (22 samples, 0.01%)</title><rect x="74.2117%" y="869" width="0.0146%" height="15" fill="rgb(220,118,20)" fg:x="111509" fg:w="22"/><text x="74.4617%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.02%)</title><rect x="74.2110%" y="949" width="0.0193%" height="15" fill="rgb(231,65,51)" fg:x="111508" fg:w="29"/><text x="74.4610%" y="959.50"></text></g><g><title>do_syscall_64 (29 samples, 0.02%)</title><rect x="74.2110%" y="933" width="0.0193%" height="15" fill="rgb(253,125,37)" fg:x="111508" fg:w="29"/><text x="74.4610%" y="943.50"></text></g><g><title>__x64_sys_openat (29 samples, 0.02%)</title><rect x="74.2110%" y="917" width="0.0193%" height="15" fill="rgb(232,102,6)" fg:x="111508" fg:w="29"/><text x="74.4610%" y="927.50"></text></g><g><title>do_sys_openat2 (29 samples, 0.02%)</title><rect x="74.2110%" y="901" width="0.0193%" height="15" fill="rgb(251,105,13)" fg:x="111508" fg:w="29"/><text x="74.4610%" y="911.50"></text></g><g><title>__opendir (31 samples, 0.02%)</title><rect x="74.2110%" y="981" width="0.0206%" height="15" fill="rgb(222,179,29)" fg:x="111508" fg:w="31"/><text x="74.4610%" y="991.50"></text></g><g><title>__GI___open64_nocancel (31 samples, 0.02%)</title><rect x="74.2110%" y="965" width="0.0206%" height="15" fill="rgb(229,180,53)" fg:x="111508" fg:w="31"/><text x="74.4610%" y="975.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (31 samples, 0.02%)</title><rect x="74.2696%" y="965" width="0.0206%" height="15" fill="rgb(238,104,13)" fg:x="111596" fg:w="31"/><text x="74.5196%" y="975.50"></text></g><g><title>ThreadStateTransition::transition_from_native (23 samples, 0.02%)</title><rect x="74.2902%" y="965" width="0.0153%" height="15" fill="rgb(210,130,5)" fg:x="111627" fg:w="23"/><text x="74.5402%" y="975.50"></text></g><g><title>jni_GetByteArrayRegion (103 samples, 0.07%)</title><rect x="74.2530%" y="981" width="0.0685%" height="15" fill="rgb(233,87,49)" fg:x="111571" fg:w="103"/><text x="74.5030%" y="991.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (27 samples, 0.02%)</title><rect x="74.3361%" y="965" width="0.0180%" height="15" fill="rgb(243,34,9)" fg:x="111696" fg:w="27"/><text x="74.5861%" y="975.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (19 samples, 0.01%)</title><rect x="74.3415%" y="949" width="0.0126%" height="15" fill="rgb(235,225,10)" fg:x="111704" fg:w="19"/><text x="74.5915%" y="959.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (16 samples, 0.01%)</title><rect x="74.3435%" y="933" width="0.0106%" height="15" fill="rgb(212,0,30)" fg:x="111707" fg:w="16"/><text x="74.5935%" y="943.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (24 samples, 0.02%)</title><rect x="74.3694%" y="965" width="0.0160%" height="15" fill="rgb(211,177,0)" fg:x="111746" fg:w="24"/><text x="74.6194%" y="975.50"></text></g><g><title>jni_GetObjectField (113 samples, 0.08%)</title><rect x="74.3215%" y="981" width="0.0752%" height="15" fill="rgb(225,220,11)" fg:x="111674" fg:w="113"/><text x="74.5715%" y="991.50"></text></g><g><title>ThreadStateTransition::transition_from_native (17 samples, 0.01%)</title><rect x="74.3854%" y="965" width="0.0113%" height="15" fill="rgb(215,10,13)" fg:x="111770" fg:w="17"/><text x="74.6354%" y="975.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (17 samples, 0.01%)</title><rect x="74.4167%" y="965" width="0.0113%" height="15" fill="rgb(240,177,14)" fg:x="111817" fg:w="17"/><text x="74.6667%" y="975.50"></text></g><g><title>jni_GetStringLength (66 samples, 0.04%)</title><rect x="74.3967%" y="981" width="0.0439%" height="15" fill="rgb(243,7,39)" fg:x="111787" fg:w="66"/><text x="74.6467%" y="991.50"></text></g><g><title>ThreadStateTransition::transition_from_native (19 samples, 0.01%)</title><rect x="74.4280%" y="965" width="0.0126%" height="15" fill="rgb(212,99,0)" fg:x="111834" fg:w="19"/><text x="74.6780%" y="975.50"></text></g><g><title>InstanceKlass::allocate_instance (60 samples, 0.04%)</title><rect x="74.4772%" y="965" width="0.0399%" height="15" fill="rgb(225,162,48)" fg:x="111908" fg:w="60"/><text x="74.7272%" y="975.50"></text></g><g><title>CollectedHeap::obj_allocate (50 samples, 0.03%)</title><rect x="74.4839%" y="949" width="0.0333%" height="15" fill="rgb(246,16,25)" fg:x="111918" fg:w="50"/><text x="74.7339%" y="959.50"></text></g><g><title>MemAllocator::allocate (49 samples, 0.03%)</title><rect x="74.4846%" y="933" width="0.0326%" height="15" fill="rgb(220,150,2)" fg:x="111919" fg:w="49"/><text x="74.7346%" y="943.50"></text></g><g><title>ThreadStateTransition::transition_from_native (21 samples, 0.01%)</title><rect x="74.5318%" y="965" width="0.0140%" height="15" fill="rgb(237,113,11)" fg:x="111990" fg:w="21"/><text x="74.7818%" y="975.50"></text></g><g><title>alloc_object (52 samples, 0.03%)</title><rect x="74.5458%" y="965" width="0.0346%" height="15" fill="rgb(236,70,20)" fg:x="112011" fg:w="52"/><text x="74.7958%" y="975.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (57 samples, 0.04%)</title><rect x="74.5984%" y="949" width="0.0379%" height="15" fill="rgb(234,94,7)" fg:x="112090" fg:w="57"/><text x="74.8484%" y="959.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (35 samples, 0.02%)</title><rect x="74.6776%" y="933" width="0.0233%" height="15" fill="rgb(250,221,0)" fg:x="112209" fg:w="35"/><text x="74.9276%" y="943.50"></text></g><g><title>JavaCalls::call_helper (110 samples, 0.07%)</title><rect x="74.6370%" y="949" width="0.0732%" height="15" fill="rgb(245,149,46)" fg:x="112148" fg:w="110"/><text x="74.8870%" y="959.50"></text></g><g><title>methodHandle::~methodHandle (18 samples, 0.01%)</title><rect x="74.7148%" y="949" width="0.0120%" height="15" fill="rgb(215,37,27)" fg:x="112265" fg:w="18"/><text x="74.9648%" y="959.50"></text></g><g><title>jni_invoke_nonstatic (230 samples, 0.15%)</title><rect x="74.5804%" y="965" width="0.1531%" height="15" fill="rgb(232,65,3)" fg:x="112063" fg:w="230"/><text x="74.8304%" y="975.50"></text></g><g><title>jni_NewObjectV (440 samples, 0.29%)</title><rect x="74.4413%" y="981" width="0.2928%" height="15" fill="rgb(214,2,16)" fg:x="111854" fg:w="440"/><text x="74.6913%" y="991.50"></text></g><g><title>jni_NewString (21 samples, 0.01%)</title><rect x="74.7341%" y="981" width="0.0140%" height="15" fill="rgb(227,131,50)" fg:x="112294" fg:w="21"/><text x="74.9841%" y="991.50"></text></g><g><title>java_lang_String::create_oop_from_unicode (21 samples, 0.01%)</title><rect x="74.7341%" y="965" width="0.0140%" height="15" fill="rgb(247,131,45)" fg:x="112294" fg:w="21"/><text x="74.9841%" y="975.50"></text></g><g><title>java_lang_String::create_from_unicode (20 samples, 0.01%)</title><rect x="74.7348%" y="949" width="0.0133%" height="15" fill="rgb(215,97,47)" fg:x="112295" fg:w="20"/><text x="74.9848%" y="959.50"></text></g><g><title>__GI___libc_malloc (31 samples, 0.02%)</title><rect x="74.7601%" y="965" width="0.0206%" height="15" fill="rgb(233,143,12)" fg:x="112333" fg:w="31"/><text x="75.0101%" y="975.50"></text></g><g><title>tcache_get (16 samples, 0.01%)</title><rect x="74.7701%" y="949" width="0.0106%" height="15" fill="rgb(222,57,17)" fg:x="112348" fg:w="16"/><text x="75.0201%" y="959.50"></text></g><g><title>operator new (33 samples, 0.02%)</title><rect x="74.7601%" y="981" width="0.0220%" height="15" fill="rgb(214,119,38)" fg:x="112333" fg:w="33"/><text x="75.0101%" y="991.50"></text></g><g><title>rename (17 samples, 0.01%)</title><rect x="74.7894%" y="981" width="0.0113%" height="15" fill="rgb(217,28,47)" fg:x="112377" fg:w="17"/><text x="75.0394%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="74.7894%" y="965" width="0.0113%" height="15" fill="rgb(231,14,52)" fg:x="112377" fg:w="17"/><text x="75.0394%" y="975.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="74.7894%" y="949" width="0.0113%" height="15" fill="rgb(220,158,18)" fg:x="112377" fg:w="17"/><text x="75.0394%" y="959.50"></text></g><g><title>__x64_sys_rename (17 samples, 0.01%)</title><rect x="74.7894%" y="933" width="0.0113%" height="15" fill="rgb(222,143,46)" fg:x="112377" fg:w="17"/><text x="75.0394%" y="943.50"></text></g><g><title>do_renameat2 (17 samples, 0.01%)</title><rect x="74.7894%" y="917" width="0.0113%" height="15" fill="rgb(227,165,5)" fg:x="112377" fg:w="17"/><text x="75.0394%" y="927.50"></text></g><g><title>[libunix_jni.so] (8,558 samples, 5.70%)</title><rect x="69.1145%" y="997" width="5.6955%" height="15" fill="rgb(216,222,49)" fg:x="103850" fg:w="8558"/><text x="69.3645%" y="1007.50">[libuni..</text></g><g><title>SystemDictionary::load_instance_class (17 samples, 0.01%)</title><rect x="96.0555%" y="917" width="0.0113%" height="15" fill="rgb(238,73,39)" fg:x="144331" fg:w="17"/><text x="96.3055%" y="927.50"></text></g><g><title>ConstantPool::klass_at_impl (30 samples, 0.02%)</title><rect x="96.0475%" y="965" width="0.0200%" height="15" fill="rgb(252,115,9)" fg:x="144319" fg:w="30"/><text x="96.2975%" y="975.50"></text></g><g><title>SystemDictionary::resolve_or_fail (28 samples, 0.02%)</title><rect x="96.0488%" y="949" width="0.0186%" height="15" fill="rgb(238,202,4)" fg:x="144321" fg:w="28"/><text x="96.2988%" y="959.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (27 samples, 0.02%)</title><rect x="96.0495%" y="933" width="0.0180%" height="15" fill="rgb(252,153,44)" fg:x="144322" fg:w="27"/><text x="96.2995%" y="943.50"></text></g><g><title>InstanceKlass::link_methods (16 samples, 0.01%)</title><rect x="96.0761%" y="933" width="0.0106%" height="15" fill="rgb(235,128,27)" fg:x="144362" fg:w="16"/><text x="96.3261%" y="943.50"></text></g><g><title>Rewriter::rewrite (21 samples, 0.01%)</title><rect x="96.0907%" y="933" width="0.0140%" height="15" fill="rgb(221,121,47)" fg:x="144384" fg:w="21"/><text x="96.3407%" y="943.50"></text></g><g><title>Rewriter::Rewriter (21 samples, 0.01%)</title><rect x="96.0907%" y="917" width="0.0140%" height="15" fill="rgb(247,211,47)" fg:x="144384" fg:w="21"/><text x="96.3407%" y="927.50"></text></g><g><title>InstanceKlass::link_class_impl (76 samples, 0.05%)</title><rect x="96.0708%" y="949" width="0.0506%" height="15" fill="rgb(252,47,49)" fg:x="144354" fg:w="76"/><text x="96.3208%" y="959.50"></text></g><g><title>InstanceKlass::initialize_impl (78 samples, 0.05%)</title><rect x="96.0701%" y="965" width="0.0519%" height="15" fill="rgb(219,119,53)" fg:x="144353" fg:w="78"/><text x="96.3201%" y="975.50"></text></g><g><title>InterpreterRuntime::_new (115 samples, 0.08%)</title><rect x="96.0468%" y="981" width="0.0765%" height="15" fill="rgb(243,165,53)" fg:x="144318" fg:w="115"/><text x="96.2968%" y="991.50"></text></g><g><title>ObjArrayAllocator::initialize (29 samples, 0.02%)</title><rect x="96.1506%" y="917" width="0.0193%" height="15" fill="rgb(230,12,35)" fg:x="144474" fg:w="29"/><text x="96.4006%" y="927.50"></text></g><g><title>CollectedHeap::array_allocate (42 samples, 0.03%)</title><rect x="96.1466%" y="949" width="0.0280%" height="15" fill="rgb(239,57,49)" fg:x="144468" fg:w="42"/><text x="96.3966%" y="959.50"></text></g><g><title>MemAllocator::allocate (41 samples, 0.03%)</title><rect x="96.1473%" y="933" width="0.0273%" height="15" fill="rgb(231,154,7)" fg:x="144469" fg:w="41"/><text x="96.3973%" y="943.50"></text></g><g><title>InstanceKlass::allocate_objArray (61 samples, 0.04%)</title><rect x="96.1393%" y="965" width="0.0406%" height="15" fill="rgb(248,81,34)" fg:x="144457" fg:w="61"/><text x="96.3893%" y="975.50"></text></g><g><title>InterpreterRuntime::anewarray (88 samples, 0.06%)</title><rect x="96.1233%" y="981" width="0.0586%" height="15" fill="rgb(247,9,5)" fg:x="144433" fg:w="88"/><text x="96.3733%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="96.1826%" y="709" width="0.0133%" height="15" fill="rgb(228,172,27)" fg:x="144522" fg:w="20"/><text x="96.4326%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="96.1826%" y="693" width="0.0133%" height="15" fill="rgb(230,57,44)" fg:x="144522" fg:w="20"/><text x="96.4326%" y="703.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="96.1826%" y="677" width="0.0133%" height="15" fill="rgb(249,35,22)" fg:x="144522" fg:w="20"/><text x="96.4326%" y="687.50"></text></g><g><title>__pthread_cond_wait (22 samples, 0.01%)</title><rect x="96.1819%" y="901" width="0.0146%" height="15" fill="rgb(250,137,27)" fg:x="144521" fg:w="22"/><text x="96.4319%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (22 samples, 0.01%)</title><rect x="96.1819%" y="885" width="0.0146%" height="15" fill="rgb(251,57,31)" fg:x="144521" fg:w="22"/><text x="96.4319%" y="895.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.01%)</title><rect x="96.1819%" y="869" width="0.0146%" height="15" fill="rgb(238,60,0)" fg:x="144521" fg:w="22"/><text x="96.4319%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="96.1819%" y="853" width="0.0146%" height="15" fill="rgb(242,185,39)" fg:x="144521" fg:w="22"/><text x="96.4319%" y="863.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="96.1826%" y="837" width="0.0140%" height="15" fill="rgb(240,63,43)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="847.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.01%)</title><rect x="96.1826%" y="821" width="0.0140%" height="15" fill="rgb(236,155,6)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="831.50"></text></g><g><title>do_futex (21 samples, 0.01%)</title><rect x="96.1826%" y="805" width="0.0140%" height="15" fill="rgb(215,11,29)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="815.50"></text></g><g><title>futex_wait (21 samples, 0.01%)</title><rect x="96.1826%" y="789" width="0.0140%" height="15" fill="rgb(228,180,48)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="799.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.01%)</title><rect x="96.1826%" y="773" width="0.0140%" height="15" fill="rgb(241,102,12)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="783.50"></text></g><g><title>schedule (21 samples, 0.01%)</title><rect x="96.1826%" y="757" width="0.0140%" height="15" fill="rgb(246,213,4)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="767.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="96.1826%" y="741" width="0.0140%" height="15" fill="rgb(218,134,35)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="751.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="96.1826%" y="725" width="0.0140%" height="15" fill="rgb(251,117,35)" fg:x="144522" fg:w="21"/><text x="96.4326%" y="735.50"></text></g><g><title>Monitor::lock_without_safepoint_check (23 samples, 0.02%)</title><rect x="96.1819%" y="949" width="0.0153%" height="15" fill="rgb(206,156,45)" fg:x="144521" fg:w="23"/><text x="96.4319%" y="959.50"></text></g><g><title>Monitor::ILock (23 samples, 0.02%)</title><rect x="96.1819%" y="933" width="0.0153%" height="15" fill="rgb(218,52,27)" fg:x="144521" fg:w="23"/><text x="96.4319%" y="943.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.02%)</title><rect x="96.1819%" y="917" width="0.0153%" height="15" fill="rgb(238,83,36)" fg:x="144521" fg:w="23"/><text x="96.4319%" y="927.50"></text></g><g><title>InterpreterRuntime::at_safepoint (24 samples, 0.02%)</title><rect x="96.1819%" y="981" width="0.0160%" height="15" fill="rgb(218,53,43)" fg:x="144521" fg:w="24"/><text x="96.4319%" y="991.50"></text></g><g><title>SafepointSynchronize::block (24 samples, 0.02%)</title><rect x="96.1819%" y="965" width="0.0160%" height="15" fill="rgb(239,54,39)" fg:x="144521" fg:w="24"/><text x="96.4319%" y="975.50"></text></g><g><title>InterpreterRuntime::build_method_counters (21 samples, 0.01%)</title><rect x="96.1979%" y="981" width="0.0140%" height="15" fill="rgb(212,198,13)" fg:x="144545" fg:w="21"/><text x="96.4479%" y="991.50"></text></g><g><title>Method::build_method_counters (21 samples, 0.01%)</title><rect x="96.1979%" y="965" width="0.0140%" height="15" fill="rgb(234,54,46)" fg:x="144545" fg:w="21"/><text x="96.4479%" y="975.50"></text></g><g><title>JavaThread::pd_last_frame (16 samples, 0.01%)</title><rect x="96.2198%" y="949" width="0.0106%" height="15" fill="rgb(217,120,7)" fg:x="144578" fg:w="16"/><text x="96.4698%" y="959.50"></text></g><g><title>MethodData::allocate (17 samples, 0.01%)</title><rect x="96.2478%" y="901" width="0.0113%" height="15" fill="rgb(246,39,15)" fg:x="144620" fg:w="17"/><text x="96.4978%" y="911.50"></text></g><g><title>Method::build_interpreter_method_data (24 samples, 0.02%)</title><rect x="96.2478%" y="917" width="0.0160%" height="15" fill="rgb(242,143,31)" fg:x="144620" fg:w="24"/><text x="96.4978%" y="927.50"></text></g><g><title>TieredThresholdPolicy::call_event (38 samples, 0.03%)</title><rect x="96.2638%" y="917" width="0.0253%" height="15" fill="rgb(252,60,24)" fg:x="144644" fg:w="38"/><text x="96.5138%" y="927.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="96.3037%" y="805" width="0.0113%" height="15" fill="rgb(249,220,7)" fg:x="144704" fg:w="17"/><text x="96.5537%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="96.3037%" y="789" width="0.0113%" height="15" fill="rgb(236,67,13)" fg:x="144704" fg:w="17"/><text x="96.5537%" y="799.50"></text></g><g><title>futex_wait_cancelable (17 samples, 0.01%)</title><rect x="96.3037%" y="773" width="0.0113%" height="15" fill="rgb(210,62,39)" fg:x="144704" fg:w="17"/><text x="96.5537%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="96.3044%" y="757" width="0.0106%" height="15" fill="rgb(219,122,53)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="767.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="96.3044%" y="741" width="0.0106%" height="15" fill="rgb(218,87,25)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="751.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="96.3044%" y="725" width="0.0106%" height="15" fill="rgb(234,179,48)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="735.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="96.3044%" y="709" width="0.0106%" height="15" fill="rgb(248,90,0)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="719.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="96.3044%" y="693" width="0.0106%" height="15" fill="rgb(207,228,37)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="703.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="96.3044%" y="677" width="0.0106%" height="15" fill="rgb(235,214,15)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="687.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="96.3044%" y="661" width="0.0106%" height="15" fill="rgb(210,144,39)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="671.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="96.3044%" y="645" width="0.0106%" height="15" fill="rgb(222,67,41)" fg:x="144705" fg:w="16"/><text x="96.5544%" y="655.50"></text></g><g><title>Monitor::ILock (19 samples, 0.01%)</title><rect x="96.3030%" y="837" width="0.0126%" height="15" fill="rgb(205,35,37)" fg:x="144703" fg:w="19"/><text x="96.5530%" y="847.50"></text></g><g><title>os::PlatformEvent::park (18 samples, 0.01%)</title><rect x="96.3037%" y="821" width="0.0120%" height="15" fill="rgb(216,125,40)" fg:x="144704" fg:w="18"/><text x="96.5537%" y="831.50"></text></g><g><title>Monitor::lock (23 samples, 0.02%)</title><rect x="96.3024%" y="853" width="0.0153%" height="15" fill="rgb(228,227,20)" fg:x="144702" fg:w="23"/><text x="96.5524%" y="863.50"></text></g><g><title>CompileBroker::compile_method_base (50 samples, 0.03%)</title><rect x="96.2944%" y="869" width="0.0333%" height="15" fill="rgb(242,173,45)" fg:x="144690" fg:w="50"/><text x="96.5444%" y="879.50"></text></g><g><title>CompileBroker::compile_method (58 samples, 0.04%)</title><rect x="96.2904%" y="885" width="0.0386%" height="15" fill="rgb(215,79,24)" fg:x="144684" fg:w="58"/><text x="96.5404%" y="895.50"></text></g><g><title>TieredThresholdPolicy::compile (61 samples, 0.04%)</title><rect x="96.2890%" y="917" width="0.0406%" height="15" fill="rgb(238,164,38)" fg:x="144682" fg:w="61"/><text x="96.5390%" y="927.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (59 samples, 0.04%)</title><rect x="96.2904%" y="901" width="0.0393%" height="15" fill="rgb(245,196,38)" fg:x="144684" fg:w="59"/><text x="96.5404%" y="911.50"></text></g><g><title>TieredThresholdPolicy::event (150 samples, 0.10%)</title><rect x="96.2305%" y="949" width="0.0998%" height="15" fill="rgb(231,217,29)" fg:x="144594" fg:w="150"/><text x="96.4805%" y="959.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (131 samples, 0.09%)</title><rect x="96.2431%" y="933" width="0.0872%" height="15" fill="rgb(245,6,4)" fg:x="144613" fg:w="131"/><text x="96.4931%" y="943.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (180 samples, 0.12%)</title><rect x="96.2118%" y="981" width="0.1198%" height="15" fill="rgb(214,76,49)" fg:x="144566" fg:w="180"/><text x="96.4618%" y="991.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (180 samples, 0.12%)</title><rect x="96.2118%" y="965" width="0.1198%" height="15" fill="rgb(205,96,12)" fg:x="144566" fg:w="180"/><text x="96.4618%" y="975.50"></text></g><g><title>JavaThread::pd_last_frame (34 samples, 0.02%)</title><rect x="96.3483%" y="965" width="0.0226%" height="15" fill="rgb(243,131,4)" fg:x="144771" fg:w="34"/><text x="96.5983%" y="975.50"></text></g><g><title>CodeCache::find_blob (32 samples, 0.02%)</title><rect x="96.3496%" y="949" width="0.0213%" height="15" fill="rgb(214,114,4)" fg:x="144773" fg:w="32"/><text x="96.5996%" y="959.50"></text></g><g><title>InterpreterRuntime::ldc (67 samples, 0.04%)</title><rect x="96.3316%" y="981" width="0.0446%" height="15" fill="rgb(234,215,15)" fg:x="144746" fg:w="67"/><text x="96.5816%" y="991.50"></text></g><g><title>InterpreterRuntime::newarray (19 samples, 0.01%)</title><rect x="96.3829%" y="981" width="0.0126%" height="15" fill="rgb(250,216,45)" fg:x="144823" fg:w="19"/><text x="96.6329%" y="991.50"></text></g><g><title>TypeArrayKlass::allocate_common (16 samples, 0.01%)</title><rect x="96.3849%" y="965" width="0.0106%" height="15" fill="rgb(236,128,4)" fg:x="144826" fg:w="16"/><text x="96.6349%" y="975.50"></text></g><g><title>LinkResolver::resolve_field_access (26 samples, 0.02%)</title><rect x="96.4088%" y="949" width="0.0173%" height="15" fill="rgb(234,50,33)" fg:x="144862" fg:w="26"/><text x="96.6588%" y="959.50"></text></g><g><title>LinkResolver::resolve_field (19 samples, 0.01%)</title><rect x="96.4135%" y="933" width="0.0126%" height="15" fill="rgb(253,131,37)" fg:x="144869" fg:w="19"/><text x="96.6635%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (31 samples, 0.02%)</title><rect x="96.4068%" y="965" width="0.0206%" height="15" fill="rgb(218,55,27)" fg:x="144859" fg:w="31"/><text x="96.6568%" y="975.50"></text></g><g><title>ConstantPoolCacheEntry::set_direct_call (19 samples, 0.01%)</title><rect x="96.4381%" y="949" width="0.0126%" height="15" fill="rgb(241,220,28)" fg:x="144906" fg:w="19"/><text x="96.6881%" y="959.50"></text></g><g><title>SystemDictionary::resolve_or_fail (20 samples, 0.01%)</title><rect x="96.4681%" y="917" width="0.0133%" height="15" fill="rgb(241,90,48)" fg:x="144951" fg:w="20"/><text x="96.7181%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (20 samples, 0.01%)</title><rect x="96.4681%" y="901" width="0.0133%" height="15" fill="rgb(216,43,37)" fg:x="144951" fg:w="20"/><text x="96.7181%" y="911.50"></text></g><g><title>ConstantPool::klass_ref_at (27 samples, 0.02%)</title><rect x="96.4641%" y="933" width="0.0180%" height="15" fill="rgb(207,173,9)" fg:x="144945" fg:w="27"/><text x="96.7141%" y="943.50"></text></g><g><title>LinkResolver::linktime_resolve_special_method (21 samples, 0.01%)</title><rect x="96.4821%" y="933" width="0.0140%" height="15" fill="rgb(240,126,30)" fg:x="144972" fg:w="21"/><text x="96.7321%" y="943.50"></text></g><g><title>LinkResolver::resolve_interface_method (17 samples, 0.01%)</title><rect x="96.5053%" y="917" width="0.0113%" height="15" fill="rgb(228,178,53)" fg:x="145007" fg:w="17"/><text x="96.7553%" y="927.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (42 samples, 0.03%)</title><rect x="96.4960%" y="933" width="0.0280%" height="15" fill="rgb(217,33,4)" fg:x="144993" fg:w="42"/><text x="96.7460%" y="943.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (19 samples, 0.01%)</title><rect x="96.5373%" y="901" width="0.0126%" height="15" fill="rgb(206,124,34)" fg:x="145055" fg:w="19"/><text x="96.7873%" y="911.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (19 samples, 0.01%)</title><rect x="96.5373%" y="885" width="0.0126%" height="15" fill="rgb(208,122,53)" fg:x="145055" fg:w="19"/><text x="96.7873%" y="895.50"></text></g><g><title>InstanceKlass::find_method_index (19 samples, 0.01%)</title><rect x="96.5373%" y="869" width="0.0126%" height="15" fill="rgb(215,202,26)" fg:x="145055" fg:w="19"/><text x="96.7873%" y="879.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (31 samples, 0.02%)</title><rect x="96.5300%" y="917" width="0.0206%" height="15" fill="rgb(232,198,31)" fg:x="145044" fg:w="31"/><text x="96.7800%" y="927.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (41 samples, 0.03%)</title><rect x="96.5240%" y="933" width="0.0273%" height="15" fill="rgb(222,23,35)" fg:x="145035" fg:w="41"/><text x="96.7740%" y="943.50"></text></g><g><title>InstanceKlass::initialize_impl (32 samples, 0.02%)</title><rect x="96.5519%" y="917" width="0.0213%" height="15" fill="rgb(242,27,53)" fg:x="145077" fg:w="32"/><text x="96.8019%" y="927.50"></text></g><g><title>InstanceKlass::link_class_impl (31 samples, 0.02%)</title><rect x="96.5526%" y="901" width="0.0206%" height="15" fill="rgb(210,216,42)" fg:x="145078" fg:w="31"/><text x="96.8026%" y="911.50"></text></g><g><title>LinkResolver::resolve_static_call (53 samples, 0.04%)</title><rect x="96.5513%" y="933" width="0.0353%" height="15" fill="rgb(234,39,38)" fg:x="145076" fg:w="53"/><text x="96.8013%" y="943.50"></text></g><g><title>LinkResolver::resolve_method (19 samples, 0.01%)</title><rect x="96.5739%" y="917" width="0.0126%" height="15" fill="rgb(235,126,54)" fg:x="145110" fg:w="19"/><text x="96.8239%" y="927.50"></text></g><g><title>LinkResolver::resolve_invoke (195 samples, 0.13%)</title><rect x="96.4594%" y="949" width="0.1298%" height="15" fill="rgb(235,150,33)" fg:x="144938" fg:w="195"/><text x="96.7094%" y="959.50"></text></g><g><title>frame::interpreter_callee_receiver_addr (18 samples, 0.01%)</title><rect x="96.5905%" y="949" width="0.0120%" height="15" fill="rgb(249,49,53)" fg:x="145135" fg:w="18"/><text x="96.8405%" y="959.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (267 samples, 0.18%)</title><rect x="96.4275%" y="965" width="0.1777%" height="15" fill="rgb(238,60,50)" fg:x="144890" fg:w="267"/><text x="96.6775%" y="975.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (24 samples, 0.02%)</title><rect x="96.6065%" y="901" width="0.0160%" height="15" fill="rgb(210,5,2)" fg:x="145159" fg:w="24"/><text x="96.8565%" y="911.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (24 samples, 0.02%)</title><rect x="96.6065%" y="885" width="0.0160%" height="15" fill="rgb(214,207,24)" fg:x="145159" fg:w="24"/><text x="96.8565%" y="895.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (16 samples, 0.01%)</title><rect x="96.6118%" y="869" width="0.0106%" height="15" fill="rgb(228,173,2)" fg:x="145167" fg:w="16"/><text x="96.8618%" y="879.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (40 samples, 0.03%)</title><rect x="96.6065%" y="917" width="0.0266%" height="15" fill="rgb(244,26,8)" fg:x="145159" fg:w="40"/><text x="96.8565%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (53 samples, 0.04%)</title><rect x="96.6052%" y="965" width="0.0353%" height="15" fill="rgb(249,153,35)" fg:x="145157" fg:w="53"/><text x="96.8552%" y="975.50"></text></g><g><title>LinkResolver::resolve_invoke (52 samples, 0.03%)</title><rect x="96.6058%" y="949" width="0.0346%" height="15" fill="rgb(221,215,40)" fg:x="145158" fg:w="52"/><text x="96.8558%" y="959.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (52 samples, 0.03%)</title><rect x="96.6058%" y="933" width="0.0346%" height="15" fill="rgb(238,106,35)" fg:x="145158" fg:w="52"/><text x="96.8558%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (362 samples, 0.24%)</title><rect x="96.4009%" y="981" width="0.2409%" height="15" fill="rgb(207,195,21)" fg:x="144850" fg:w="362"/><text x="96.6509%" y="991.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (16 samples, 0.01%)</title><rect x="96.6418%" y="981" width="0.0106%" height="15" fill="rgb(205,43,29)" fg:x="145212" fg:w="16"/><text x="96.8918%" y="991.50"></text></g><g><title>JVM_Clone (38 samples, 0.03%)</title><rect x="96.6604%" y="981" width="0.0253%" height="15" fill="rgb(236,35,21)" fg:x="145240" fg:w="38"/><text x="96.9104%" y="991.50"></text></g><g><title>JVM_FindLoadedClass (21 samples, 0.01%)</title><rect x="96.7023%" y="981" width="0.0140%" height="15" fill="rgb(244,74,8)" fg:x="145303" fg:w="21"/><text x="96.9523%" y="991.50"></text></g><g><title>JVM_GetClassDeclaredMethods (29 samples, 0.02%)</title><rect x="96.7323%" y="981" width="0.0193%" height="15" fill="rgb(241,229,7)" fg:x="145348" fg:w="29"/><text x="96.9823%" y="991.50"></text></g><g><title>get_class_declared_methods_helper (29 samples, 0.02%)</title><rect x="96.7323%" y="965" width="0.0193%" height="15" fill="rgb(212,223,25)" fg:x="145348" fg:w="29"/><text x="96.9823%" y="975.50"></text></g><g><title>Reflection::new_method (24 samples, 0.02%)</title><rect x="96.7356%" y="949" width="0.0160%" height="15" fill="rgb(234,58,53)" fg:x="145353" fg:w="24"/><text x="96.9856%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (23 samples, 0.02%)</title><rect x="96.7596%" y="677" width="0.0153%" height="15" fill="rgb(244,36,1)" fg:x="145389" fg:w="23"/><text x="97.0096%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (23 samples, 0.02%)</title><rect x="96.7596%" y="661" width="0.0153%" height="15" fill="rgb(222,40,54)" fg:x="145389" fg:w="23"/><text x="97.0096%" y="671.50"></text></g><g><title>native_write_msr (23 samples, 0.02%)</title><rect x="96.7596%" y="645" width="0.0153%" height="15" fill="rgb(210,207,39)" fg:x="145389" fg:w="23"/><text x="97.0096%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="96.7582%" y="821" width="0.0173%" height="15" fill="rgb(234,52,14)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="831.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="96.7582%" y="805" width="0.0173%" height="15" fill="rgb(239,108,46)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="815.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.02%)</title><rect x="96.7582%" y="789" width="0.0173%" height="15" fill="rgb(252,223,5)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="799.50"></text></g><g><title>do_futex (26 samples, 0.02%)</title><rect x="96.7582%" y="773" width="0.0173%" height="15" fill="rgb(227,181,11)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="783.50"></text></g><g><title>futex_wait (26 samples, 0.02%)</title><rect x="96.7582%" y="757" width="0.0173%" height="15" fill="rgb(248,126,40)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="767.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.02%)</title><rect x="96.7582%" y="741" width="0.0173%" height="15" fill="rgb(243,1,18)" fg:x="145387" fg:w="26"/><text x="97.0082%" y="751.50"></text></g><g><title>schedule (25 samples, 0.02%)</title><rect x="96.7589%" y="725" width="0.0166%" height="15" fill="rgb(214,145,23)" fg:x="145388" fg:w="25"/><text x="97.0089%" y="735.50"></text></g><g><title>__schedule (25 samples, 0.02%)</title><rect x="96.7589%" y="709" width="0.0166%" height="15" fill="rgb(241,218,11)" fg:x="145388" fg:w="25"/><text x="97.0089%" y="719.50"></text></g><g><title>finish_task_switch (25 samples, 0.02%)</title><rect x="96.7589%" y="693" width="0.0166%" height="15" fill="rgb(214,219,24)" fg:x="145388" fg:w="25"/><text x="97.0089%" y="703.50"></text></g><g><title>Monitor::wait (27 samples, 0.02%)</title><rect x="96.7582%" y="917" width="0.0180%" height="15" fill="rgb(235,32,7)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="927.50"></text></g><g><title>Monitor::IWait (27 samples, 0.02%)</title><rect x="96.7582%" y="901" width="0.0180%" height="15" fill="rgb(227,121,28)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="911.50"></text></g><g><title>os::PlatformEvent::park (27 samples, 0.02%)</title><rect x="96.7582%" y="885" width="0.0180%" height="15" fill="rgb(216,129,49)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="895.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.02%)</title><rect x="96.7582%" y="869" width="0.0180%" height="15" fill="rgb(207,194,50)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="96.7582%" y="853" width="0.0180%" height="15" fill="rgb(207,4,18)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="863.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.02%)</title><rect x="96.7582%" y="837" width="0.0180%" height="15" fill="rgb(213,50,30)" fg:x="145387" fg:w="27"/><text x="97.0082%" y="847.50"></text></g><g><title>VMThread::execute (31 samples, 0.02%)</title><rect x="96.7576%" y="933" width="0.0206%" height="15" fill="rgb(208,77,22)" fg:x="145386" fg:w="31"/><text x="97.0076%" y="943.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (34 samples, 0.02%)</title><rect x="96.7569%" y="949" width="0.0226%" height="15" fill="rgb(244,204,34)" fg:x="145385" fg:w="34"/><text x="97.0069%" y="959.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (44 samples, 0.03%)</title><rect x="96.7523%" y="965" width="0.0293%" height="15" fill="rgb(230,20,17)" fg:x="145378" fg:w="44"/><text x="97.0023%" y="975.50"></text></g><g><title>JVM_IHashCode (45 samples, 0.03%)</title><rect x="96.7523%" y="981" width="0.0299%" height="15" fill="rgb(237,83,15)" fg:x="145378" fg:w="45"/><text x="97.0023%" y="991.50"></text></g><g><title>JVM_InitClassName (17 samples, 0.01%)</title><rect x="96.7822%" y="981" width="0.0113%" height="15" fill="rgb(221,109,25)" fg:x="145423" fg:w="17"/><text x="97.0322%" y="991.50"></text></g><g><title>java_lang_Class::name (17 samples, 0.01%)</title><rect x="96.7822%" y="965" width="0.0113%" height="15" fill="rgb(205,194,52)" fg:x="145423" fg:w="17"/><text x="97.0322%" y="975.50"></text></g><g><title>JVM_InitStackTraceElementArray (18 samples, 0.01%)</title><rect x="96.7935%" y="981" width="0.0120%" height="15" fill="rgb(244,173,54)" fg:x="145440" fg:w="18"/><text x="97.0435%" y="991.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (18 samples, 0.01%)</title><rect x="96.7935%" y="965" width="0.0120%" height="15" fill="rgb(227,181,18)" fg:x="145440" fg:w="18"/><text x="97.0435%" y="975.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (17 samples, 0.01%)</title><rect x="96.7942%" y="949" width="0.0113%" height="15" fill="rgb(238,36,30)" fg:x="145441" fg:w="17"/><text x="97.0442%" y="959.50"></text></g><g><title>JVM_IsInterrupted (28 samples, 0.02%)</title><rect x="96.8208%" y="981" width="0.0186%" height="15" fill="rgb(254,85,0)" fg:x="145481" fg:w="28"/><text x="97.0708%" y="991.50"></text></g><g><title>JVM_MonitorWait (25 samples, 0.02%)</title><rect x="96.8414%" y="981" width="0.0166%" height="15" fill="rgb(247,63,33)" fg:x="145512" fg:w="25"/><text x="97.0914%" y="991.50"></text></g><g><title>ObjectSynchronizer::wait (25 samples, 0.02%)</title><rect x="96.8414%" y="965" width="0.0166%" height="15" fill="rgb(220,7,54)" fg:x="145512" fg:w="25"/><text x="97.0914%" y="975.50"></text></g><g><title>ObjectMonitor::wait (22 samples, 0.01%)</title><rect x="96.8434%" y="949" width="0.0146%" height="15" fill="rgb(238,227,21)" fg:x="145515" fg:w="22"/><text x="97.0934%" y="959.50"></text></g><g><title>SymbolTable::add (24 samples, 0.02%)</title><rect x="96.9047%" y="837" width="0.0160%" height="15" fill="rgb(237,29,31)" fg:x="145607" fg:w="24"/><text x="97.1547%" y="847.50"></text></g><g><title>SymbolTable::basic_add (24 samples, 0.02%)</title><rect x="96.9047%" y="821" width="0.0160%" height="15" fill="rgb(211,21,50)" fg:x="145607" fg:w="24"/><text x="97.1547%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (306 samples, 0.20%)</title><rect x="96.8960%" y="853" width="0.2036%" height="15" fill="rgb(239,119,2)" fg:x="145594" fg:w="306"/><text x="97.1460%" y="863.50"></text></g><g><title>SymbolTable::lookup_only (269 samples, 0.18%)</title><rect x="96.9206%" y="837" width="0.1790%" height="15" fill="rgb(250,2,39)" fg:x="145631" fg:w="269"/><text x="97.1706%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool (318 samples, 0.21%)</title><rect x="96.8913%" y="869" width="0.2116%" height="15" fill="rgb(244,46,53)" fg:x="145587" fg:w="318"/><text x="97.1413%" y="879.50"></text></g><g><title>Method::allocate (17 samples, 0.01%)</title><rect x="97.1363%" y="837" width="0.0113%" height="15" fill="rgb(209,21,19)" fg:x="145955" fg:w="17"/><text x="97.3863%" y="847.50"></text></g><g><title>ClassFileParser::parse_methods (70 samples, 0.05%)</title><rect x="97.1110%" y="869" width="0.0466%" height="15" fill="rgb(236,145,4)" fg:x="145917" fg:w="70"/><text x="97.3610%" y="879.50"></text></g><g><title>ClassFileParser::parse_method (70 samples, 0.05%)</title><rect x="97.1110%" y="853" width="0.0466%" height="15" fill="rgb(220,133,36)" fg:x="145917" fg:w="70"/><text x="97.3610%" y="863.50"></text></g><g><title>ClassFileParser::ClassFileParser (418 samples, 0.28%)</title><rect x="96.8880%" y="901" width="0.2782%" height="15" fill="rgb(244,18,3)" fg:x="145582" fg:w="418"/><text x="97.1380%" y="911.50"></text></g><g><title>ClassFileParser::parse_stream (418 samples, 0.28%)</title><rect x="96.8880%" y="885" width="0.2782%" height="15" fill="rgb(232,171,48)" fg:x="145582" fg:w="418"/><text x="97.1380%" y="895.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (26 samples, 0.02%)</title><rect x="97.1755%" y="853" width="0.0173%" height="15" fill="rgb(223,223,53)" fg:x="146014" fg:w="26"/><text x="97.4255%" y="863.50"></text></g><g><title>DefaultMethods::generate_default_methods (38 samples, 0.03%)</title><rect x="97.1709%" y="869" width="0.0253%" height="15" fill="rgb(246,92,13)" fg:x="146007" fg:w="38"/><text x="97.4209%" y="879.50"></text></g><g><title>ClassFileParser::fill_instance_klass (58 samples, 0.04%)</title><rect x="97.1662%" y="885" width="0.0386%" height="15" fill="rgb(229,171,10)" fg:x="146000" fg:w="58"/><text x="97.4162%" y="895.50"></text></g><g><title>ClassFileParser::create_instance_klass (62 samples, 0.04%)</title><rect x="97.1662%" y="901" width="0.0413%" height="15" fill="rgb(213,131,26)" fg:x="146000" fg:w="62"/><text x="97.4162%" y="911.50"></text></g><g><title>KlassFactory::create_from_stream (519 samples, 0.35%)</title><rect x="96.8874%" y="917" width="0.3454%" height="15" fill="rgb(242,87,54)" fg:x="145581" fg:w="519"/><text x="97.1374%" y="927.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (38 samples, 0.03%)</title><rect x="97.2075%" y="901" width="0.0253%" height="15" fill="rgb(237,21,35)" fg:x="146062" fg:w="38"/><text x="97.4575%" y="911.50"></text></g><g><title>klassVtable::compute_vtable_size_and_num_mirandas (16 samples, 0.01%)</title><rect x="97.2221%" y="885" width="0.0106%" height="15" fill="rgb(253,13,47)" fg:x="146084" fg:w="16"/><text x="97.4721%" y="895.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (31 samples, 0.02%)</title><rect x="97.2334%" y="917" width="0.0206%" height="15" fill="rgb(215,122,49)" fg:x="146101" fg:w="31"/><text x="97.4834%" y="927.50"></text></g><g><title>SystemDictionary::define_instance_class (26 samples, 0.02%)</title><rect x="97.2368%" y="901" width="0.0173%" height="15" fill="rgb(209,179,30)" fg:x="146106" fg:w="26"/><text x="97.4868%" y="911.50"></text></g><g><title>JVM_DefineClassWithSource (559 samples, 0.37%)</title><rect x="96.8827%" y="965" width="0.3720%" height="15" fill="rgb(235,100,24)" fg:x="145574" fg:w="559"/><text x="97.1327%" y="975.50"></text></g><g><title>jvm_define_class_common (559 samples, 0.37%)</title><rect x="96.8827%" y="949" width="0.3720%" height="15" fill="rgb(209,67,24)" fg:x="145574" fg:w="559"/><text x="97.1327%" y="959.50"></text></g><g><title>SystemDictionary::resolve_from_stream (552 samples, 0.37%)</title><rect x="96.8874%" y="933" width="0.3674%" height="15" fill="rgb(206,74,32)" fg:x="145581" fg:w="552"/><text x="97.1374%" y="943.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (582 samples, 0.39%)</title><rect x="96.8820%" y="981" width="0.3873%" height="15" fill="rgb(212,45,25)" fg:x="145573" fg:w="582"/><text x="97.1320%" y="991.50"></text></g><g><title>JVM_FindClassFromBootLoader (30 samples, 0.02%)</title><rect x="97.2700%" y="965" width="0.0200%" height="15" fill="rgb(239,26,3)" fg:x="146156" fg:w="30"/><text x="97.5200%" y="975.50"></text></g><g><title>SystemDictionary::resolve_or_null (28 samples, 0.02%)</title><rect x="97.2714%" y="949" width="0.0186%" height="15" fill="rgb(218,36,15)" fg:x="146158" fg:w="28"/><text x="97.5214%" y="959.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (28 samples, 0.02%)</title><rect x="97.2714%" y="933" width="0.0186%" height="15" fill="rgb(206,108,24)" fg:x="146158" fg:w="28"/><text x="97.5214%" y="943.50"></text></g><g><title>SystemDictionary::load_instance_class (23 samples, 0.02%)</title><rect x="97.2747%" y="917" width="0.0153%" height="15" fill="rgb(234,204,42)" fg:x="146163" fg:w="23"/><text x="97.5247%" y="927.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (37 samples, 0.02%)</title><rect x="97.2694%" y="981" width="0.0246%" height="15" fill="rgb(229,2,11)" fg:x="146155" fg:w="37"/><text x="97.5194%" y="991.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (26 samples, 0.02%)</title><rect x="97.3046%" y="981" width="0.0173%" height="15" fill="rgb(221,20,48)" fg:x="146208" fg:w="26"/><text x="97.5546%" y="991.50"></text></g><g><title>os_getParentPidAndTimings (26 samples, 0.02%)</title><rect x="97.3046%" y="965" width="0.0173%" height="15" fill="rgb(244,164,10)" fg:x="146208" fg:w="26"/><text x="97.5546%" y="975.50"></text></g><g><title>copy_process (37 samples, 0.02%)</title><rect x="97.3346%" y="869" width="0.0246%" height="15" fill="rgb(243,229,2)" fg:x="146253" fg:w="37"/><text x="97.5846%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.03%)</title><rect x="97.3339%" y="933" width="0.0313%" height="15" fill="rgb(232,131,37)" fg:x="146252" fg:w="47"/><text x="97.5839%" y="943.50"></text></g><g><title>do_syscall_64 (47 samples, 0.03%)</title><rect x="97.3339%" y="917" width="0.0313%" height="15" fill="rgb(217,156,11)" fg:x="146252" fg:w="47"/><text x="97.5839%" y="927.50"></text></g><g><title>__x64_sys_vfork (46 samples, 0.03%)</title><rect x="97.3346%" y="901" width="0.0306%" height="15" fill="rgb(239,99,48)" fg:x="146253" fg:w="46"/><text x="97.5846%" y="911.50"></text></g><g><title>kernel_clone (46 samples, 0.03%)</title><rect x="97.3346%" y="885" width="0.0306%" height="15" fill="rgb(231,209,9)" fg:x="146253" fg:w="46"/><text x="97.5846%" y="895.50"></text></g><g><title>calculate_sigpending (24 samples, 0.02%)</title><rect x="97.3652%" y="917" width="0.0160%" height="15" fill="rgb(254,97,27)" fg:x="146299" fg:w="24"/><text x="97.6152%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (462 samples, 0.31%)</title><rect x="97.4045%" y="885" width="0.3075%" height="15" fill="rgb(223,151,38)" fg:x="146358" fg:w="462"/><text x="97.6545%" y="895.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (460 samples, 0.31%)</title><rect x="97.4058%" y="869" width="0.3061%" height="15" fill="rgb(219,206,35)" fg:x="146360" fg:w="460"/><text x="97.6558%" y="879.50"></text></g><g><title>native_write_msr (460 samples, 0.31%)</title><rect x="97.4058%" y="853" width="0.3061%" height="15" fill="rgb(216,130,31)" fg:x="146360" fg:w="460"/><text x="97.6558%" y="863.50"></text></g><g><title>schedule_tail (511 samples, 0.34%)</title><rect x="97.3812%" y="917" width="0.3401%" height="15" fill="rgb(251,97,34)" fg:x="146323" fg:w="511"/><text x="97.6312%" y="927.50"></text></g><g><title>finish_task_switch (506 samples, 0.34%)</title><rect x="97.3845%" y="901" width="0.3368%" height="15" fill="rgb(246,159,47)" fg:x="146328" fg:w="506"/><text x="97.6345%" y="911.50"></text></g><g><title>__libc_vfork (587 samples, 0.39%)</title><rect x="97.3333%" y="949" width="0.3907%" height="15" fill="rgb(232,87,10)" fg:x="146251" fg:w="587"/><text x="97.5833%" y="959.50"></text></g><g><title>ret_from_fork (539 samples, 0.36%)</title><rect x="97.3652%" y="933" width="0.3587%" height="15" fill="rgb(249,1,37)" fg:x="146299" fg:w="539"/><text x="97.6152%" y="943.50"></text></g><g><title>load_elf_binary (25 samples, 0.02%)</title><rect x="97.7425%" y="821" width="0.0166%" height="15" fill="rgb(239,135,14)" fg:x="146866" fg:w="25"/><text x="97.9925%" y="831.50"></text></g><g><title>open_exec (17 samples, 0.01%)</title><rect x="97.7479%" y="805" width="0.0113%" height="15" fill="rgb(253,116,46)" fg:x="146874" fg:w="17"/><text x="97.9979%" y="815.50"></text></g><g><title>do_open_execat (16 samples, 0.01%)</title><rect x="97.7485%" y="789" width="0.0106%" height="15" fill="rgb(222,217,37)" fg:x="146875" fg:w="16"/><text x="97.9985%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.01%)</title><rect x="97.7658%" y="741" width="0.0106%" height="15" fill="rgb(252,96,8)" fg:x="146901" fg:w="16"/><text x="98.0158%" y="751.50"></text></g><g><title>sched_exec (21 samples, 0.01%)</title><rect x="97.7632%" y="821" width="0.0140%" height="15" fill="rgb(254,103,41)" fg:x="146897" fg:w="21"/><text x="98.0132%" y="831.50"></text></g><g><title>stop_one_cpu (19 samples, 0.01%)</title><rect x="97.7645%" y="805" width="0.0126%" height="15" fill="rgb(218,213,19)" fg:x="146899" fg:w="19"/><text x="98.0145%" y="815.50"></text></g><g><title>_cond_resched (19 samples, 0.01%)</title><rect x="97.7645%" y="789" width="0.0126%" height="15" fill="rgb(253,95,21)" fg:x="146899" fg:w="19"/><text x="98.0145%" y="799.50"></text></g><g><title>__schedule (19 samples, 0.01%)</title><rect x="97.7645%" y="773" width="0.0126%" height="15" fill="rgb(229,26,28)" fg:x="146899" fg:w="19"/><text x="98.0145%" y="783.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="97.7652%" y="757" width="0.0120%" height="15" fill="rgb(230,129,16)" fg:x="146900" fg:w="18"/><text x="98.0152%" y="767.50"></text></g><g><title>security_bprm_check (20 samples, 0.01%)</title><rect x="97.7772%" y="821" width="0.0133%" height="15" fill="rgb(236,126,17)" fg:x="146918" fg:w="20"/><text x="98.0272%" y="831.50"></text></g><g><title>tomoyo_bprm_check_security (20 samples, 0.01%)</title><rect x="97.7772%" y="805" width="0.0133%" height="15" fill="rgb(209,33,33)" fg:x="146918" fg:w="20"/><text x="98.0272%" y="815.50"></text></g><g><title>tomoyo_find_next_domain (20 samples, 0.01%)</title><rect x="97.7772%" y="789" width="0.0133%" height="15" fill="rgb(227,85,29)" fg:x="146918" fg:w="20"/><text x="98.0272%" y="799.50"></text></g><g><title>bprm_execve (100 samples, 0.07%)</title><rect x="97.7319%" y="837" width="0.0666%" height="15" fill="rgb(241,53,46)" fg:x="146850" fg:w="100"/><text x="97.9819%" y="847.50"></text></g><g><title>JDK_execvpe (134 samples, 0.09%)</title><rect x="97.7239%" y="933" width="0.0892%" height="15" fill="rgb(228,167,53)" fg:x="146838" fg:w="134"/><text x="97.9739%" y="943.50"></text></g><g><title>__GI_execve (134 samples, 0.09%)</title><rect x="97.7239%" y="917" width="0.0892%" height="15" fill="rgb(238,195,45)" fg:x="146838" fg:w="134"/><text x="97.9739%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (132 samples, 0.09%)</title><rect x="97.7252%" y="901" width="0.0878%" height="15" fill="rgb(252,124,45)" fg:x="146840" fg:w="132"/><text x="97.9752%" y="911.50"></text></g><g><title>do_syscall_64 (132 samples, 0.09%)</title><rect x="97.7252%" y="885" width="0.0878%" height="15" fill="rgb(251,38,35)" fg:x="146840" fg:w="132"/><text x="97.9752%" y="895.50"></text></g><g><title>__x64_sys_execve (132 samples, 0.09%)</title><rect x="97.7252%" y="869" width="0.0878%" height="15" fill="rgb(227,33,2)" fg:x="146840" fg:w="132"/><text x="97.9752%" y="879.50"></text></g><g><title>do_execveat_common (132 samples, 0.09%)</title><rect x="97.7252%" y="853" width="0.0878%" height="15" fill="rgb(223,157,46)" fg:x="146840" fg:w="132"/><text x="97.9752%" y="863.50"></text></g><g><title>__GI___open64_nocancel (31 samples, 0.02%)</title><rect x="97.8344%" y="901" width="0.0206%" height="15" fill="rgb(222,78,41)" fg:x="147004" fg:w="31"/><text x="98.0844%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.02%)</title><rect x="97.8351%" y="885" width="0.0200%" height="15" fill="rgb(248,176,11)" fg:x="147005" fg:w="30"/><text x="98.0851%" y="895.50"></text></g><g><title>do_syscall_64 (30 samples, 0.02%)</title><rect x="97.8351%" y="869" width="0.0200%" height="15" fill="rgb(241,221,18)" fg:x="147005" fg:w="30"/><text x="98.0851%" y="879.50"></text></g><g><title>__x64_sys_openat (30 samples, 0.02%)</title><rect x="97.8351%" y="853" width="0.0200%" height="15" fill="rgb(218,85,22)" fg:x="147005" fg:w="30"/><text x="98.0851%" y="863.50"></text></g><g><title>do_sys_openat2 (30 samples, 0.02%)</title><rect x="97.8351%" y="837" width="0.0200%" height="15" fill="rgb(222,223,7)" fg:x="147005" fg:w="30"/><text x="98.0851%" y="847.50"></text></g><g><title>getname_flags.part.0 (17 samples, 0.01%)</title><rect x="97.8437%" y="821" width="0.0113%" height="15" fill="rgb(254,59,39)" fg:x="147018" fg:w="17"/><text x="98.0937%" y="831.50"></text></g><g><title>__opendir (32 samples, 0.02%)</title><rect x="97.8344%" y="917" width="0.0213%" height="15" fill="rgb(247,100,27)" fg:x="147004" fg:w="32"/><text x="98.0844%" y="927.50"></text></g><g><title>closeDescriptors (54 samples, 0.04%)</title><rect x="97.8217%" y="933" width="0.0359%" height="15" fill="rgb(237,207,10)" fg:x="146985" fg:w="54"/><text x="98.0717%" y="943.50"></text></g><g><title>__GI___dup2 (16 samples, 0.01%)</title><rect x="97.8597%" y="917" width="0.0106%" height="15" fill="rgb(220,121,28)" fg:x="147042" fg:w="16"/><text x="98.1097%" y="927.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (832 samples, 0.55%)</title><rect x="97.3219%" y="981" width="0.5537%" height="15" fill="rgb(213,223,20)" fg:x="146234" fg:w="832"/><text x="97.5719%" y="991.50"></text></g><g><title>vforkChild (816 samples, 0.54%)</title><rect x="97.3326%" y="965" width="0.5431%" height="15" fill="rgb(205,121,27)" fg:x="146250" fg:w="816"/><text x="97.5826%" y="975.50"></text></g><g><title>childProcess (228 samples, 0.15%)</title><rect x="97.7239%" y="949" width="0.1517%" height="15" fill="rgb(253,24,53)" fg:x="146838" fg:w="228"/><text x="97.9739%" y="959.50"></text></g><g><title>moveDescriptor (26 samples, 0.02%)</title><rect x="97.8584%" y="933" width="0.0173%" height="15" fill="rgb(224,224,47)" fg:x="147040" fg:w="26"/><text x="98.1084%" y="943.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (25 samples, 0.02%)</title><rect x="97.8757%" y="981" width="0.0166%" height="15" fill="rgb(250,125,36)" fg:x="147066" fg:w="25"/><text x="98.1257%" y="991.50"></text></g><g><title>JVM_FillInStackTrace (25 samples, 0.02%)</title><rect x="97.8757%" y="965" width="0.0166%" height="15" fill="rgb(240,144,38)" fg:x="147066" fg:w="25"/><text x="98.1257%" y="975.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (25 samples, 0.02%)</title><rect x="97.8757%" y="949" width="0.0166%" height="15" fill="rgb(250,15,50)" fg:x="147066" fg:w="25"/><text x="98.1257%" y="959.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (24 samples, 0.02%)</title><rect x="97.8763%" y="933" width="0.0160%" height="15" fill="rgb(210,24,26)" fg:x="147067" fg:w="24"/><text x="98.1263%" y="943.50"></text></g><g><title>MHN_resolve_Mem (18 samples, 0.01%)</title><rect x="97.8936%" y="981" width="0.0120%" height="15" fill="rgb(234,53,53)" fg:x="147093" fg:w="18"/><text x="98.1436%" y="991.50"></text></g><g><title>InstanceKlass::allocate_objArray (16 samples, 0.01%)</title><rect x="97.9063%" y="965" width="0.0106%" height="15" fill="rgb(208,108,28)" fg:x="147112" fg:w="16"/><text x="98.1563%" y="975.50"></text></g><g><title>CollectedHeap::array_allocate (16 samples, 0.01%)</title><rect x="97.9063%" y="949" width="0.0106%" height="15" fill="rgb(227,143,7)" fg:x="147112" fg:w="16"/><text x="98.1563%" y="959.50"></text></g><g><title>MemAllocator::allocate (16 samples, 0.01%)</title><rect x="97.9063%" y="933" width="0.0106%" height="15" fill="rgb(238,189,38)" fg:x="147112" fg:w="16"/><text x="98.1563%" y="943.50"></text></g><g><title>alloc_pages_vma (22 samples, 0.01%)</title><rect x="97.9182%" y="821" width="0.0146%" height="15" fill="rgb(222,69,15)" fg:x="147130" fg:w="22"/><text x="98.1682%" y="831.50"></text></g><g><title>__alloc_pages_nodemask (22 samples, 0.01%)</title><rect x="97.9182%" y="805" width="0.0146%" height="15" fill="rgb(213,169,7)" fg:x="147130" fg:w="22"/><text x="98.1682%" y="815.50"></text></g><g><title>get_page_from_freelist (22 samples, 0.01%)</title><rect x="97.9182%" y="789" width="0.0146%" height="15" fill="rgb(251,219,4)" fg:x="147130" fg:w="22"/><text x="98.1682%" y="799.50"></text></g><g><title>prep_new_page (21 samples, 0.01%)</title><rect x="97.9189%" y="773" width="0.0140%" height="15" fill="rgb(241,55,40)" fg:x="147131" fg:w="21"/><text x="98.1689%" y="783.50"></text></g><g><title>kernel_init_free_pages (21 samples, 0.01%)</title><rect x="97.9189%" y="757" width="0.0140%" height="15" fill="rgb(243,57,30)" fg:x="147131" fg:w="21"/><text x="98.1689%" y="767.50"></text></g><g><title>clear_page_erms (21 samples, 0.01%)</title><rect x="97.9189%" y="741" width="0.0140%" height="15" fill="rgb(234,50,30)" fg:x="147131" fg:w="21"/><text x="98.1689%" y="751.50"></text></g><g><title>OptoRuntime::new_array_C (53 samples, 0.04%)</title><rect x="97.9056%" y="981" width="0.0353%" height="15" fill="rgb(239,23,42)" fg:x="147111" fg:w="53"/><text x="98.1556%" y="991.50"></text></g><g><title>TypeArrayKlass::allocate_common (36 samples, 0.02%)</title><rect x="97.9169%" y="965" width="0.0240%" height="15" fill="rgb(217,38,19)" fg:x="147128" fg:w="36"/><text x="98.1669%" y="975.50"></text></g><g><title>CollectedHeap::array_allocate (36 samples, 0.02%)</title><rect x="97.9169%" y="949" width="0.0240%" height="15" fill="rgb(215,179,16)" fg:x="147128" fg:w="36"/><text x="98.1669%" y="959.50"></text></g><g><title>MemAllocator::allocate (36 samples, 0.02%)</title><rect x="97.9169%" y="933" width="0.0240%" height="15" fill="rgb(254,21,37)" fg:x="147128" fg:w="36"/><text x="98.1669%" y="943.50"></text></g><g><title>ObjArrayAllocator::initialize (35 samples, 0.02%)</title><rect x="97.9176%" y="917" width="0.0233%" height="15" fill="rgb(219,207,48)" fg:x="147129" fg:w="35"/><text x="98.1676%" y="927.50"></text></g><g><title>asm_exc_page_fault (34 samples, 0.02%)</title><rect x="97.9182%" y="901" width="0.0226%" height="15" fill="rgb(227,225,41)" fg:x="147130" fg:w="34"/><text x="98.1682%" y="911.50"></text></g><g><title>exc_page_fault (34 samples, 0.02%)</title><rect x="97.9182%" y="885" width="0.0226%" height="15" fill="rgb(223,130,1)" fg:x="147130" fg:w="34"/><text x="98.1682%" y="895.50"></text></g><g><title>do_user_addr_fault (34 samples, 0.02%)</title><rect x="97.9182%" y="869" width="0.0226%" height="15" fill="rgb(249,54,42)" fg:x="147130" fg:w="34"/><text x="98.1682%" y="879.50"></text></g><g><title>handle_mm_fault (34 samples, 0.02%)</title><rect x="97.9182%" y="853" width="0.0226%" height="15" fill="rgb(248,69,25)" fg:x="147130" fg:w="34"/><text x="98.1682%" y="863.50"></text></g><g><title>do_huge_pmd_anonymous_page (34 samples, 0.02%)</title><rect x="97.9182%" y="837" width="0.0226%" height="15" fill="rgb(234,21,32)" fg:x="147130" fg:w="34"/><text x="98.1682%" y="847.50"></text></g><g><title>alloc_pages_vma (26 samples, 0.02%)</title><rect x="97.9495%" y="821" width="0.0173%" height="15" fill="rgb(252,136,6)" fg:x="147177" fg:w="26"/><text x="98.1995%" y="831.50"></text></g><g><title>__alloc_pages_nodemask (26 samples, 0.02%)</title><rect x="97.9495%" y="805" width="0.0173%" height="15" fill="rgb(245,87,12)" fg:x="147177" fg:w="26"/><text x="98.1995%" y="815.50"></text></g><g><title>get_page_from_freelist (26 samples, 0.02%)</title><rect x="97.9495%" y="789" width="0.0173%" height="15" fill="rgb(208,12,15)" fg:x="147177" fg:w="26"/><text x="98.1995%" y="799.50"></text></g><g><title>prep_new_page (25 samples, 0.02%)</title><rect x="97.9502%" y="773" width="0.0166%" height="15" fill="rgb(250,98,2)" fg:x="147178" fg:w="25"/><text x="98.2002%" y="783.50"></text></g><g><title>kernel_init_free_pages (24 samples, 0.02%)</title><rect x="97.9509%" y="757" width="0.0160%" height="15" fill="rgb(205,213,15)" fg:x="147179" fg:w="24"/><text x="98.2009%" y="767.50"></text></g><g><title>clear_page_erms (24 samples, 0.02%)</title><rect x="97.9509%" y="741" width="0.0160%" height="15" fill="rgb(248,192,44)" fg:x="147179" fg:w="24"/><text x="98.2009%" y="751.50"></text></g><g><title>clear_huge_page (23 samples, 0.02%)</title><rect x="97.9668%" y="821" width="0.0153%" height="15" fill="rgb(221,89,17)" fg:x="147203" fg:w="23"/><text x="98.2168%" y="831.50"></text></g><g><title>clear_subpage (23 samples, 0.02%)</title><rect x="97.9668%" y="805" width="0.0153%" height="15" fill="rgb(209,55,3)" fg:x="147203" fg:w="23"/><text x="98.2168%" y="815.50"></text></g><g><title>clear_page_erms (21 samples, 0.01%)</title><rect x="97.9682%" y="789" width="0.0140%" height="15" fill="rgb(247,23,45)" fg:x="147205" fg:w="21"/><text x="98.2182%" y="799.50"></text></g><g><title>InstanceKlass::allocate_instance (52 samples, 0.03%)</title><rect x="97.9495%" y="965" width="0.0346%" height="15" fill="rgb(235,152,23)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="975.50"></text></g><g><title>CollectedHeap::obj_allocate (52 samples, 0.03%)</title><rect x="97.9495%" y="949" width="0.0346%" height="15" fill="rgb(244,63,13)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="959.50"></text></g><g><title>MemAllocator::allocate (52 samples, 0.03%)</title><rect x="97.9495%" y="933" width="0.0346%" height="15" fill="rgb(227,30,37)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="943.50"></text></g><g><title>ObjAllocator::initialize (52 samples, 0.03%)</title><rect x="97.9495%" y="917" width="0.0346%" height="15" fill="rgb(224,49,42)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="927.50"></text></g><g><title>asm_exc_page_fault (52 samples, 0.03%)</title><rect x="97.9495%" y="901" width="0.0346%" height="15" fill="rgb(218,129,5)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="911.50"></text></g><g><title>exc_page_fault (52 samples, 0.03%)</title><rect x="97.9495%" y="885" width="0.0346%" height="15" fill="rgb(240,199,54)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="895.50"></text></g><g><title>do_user_addr_fault (52 samples, 0.03%)</title><rect x="97.9495%" y="869" width="0.0346%" height="15" fill="rgb(234,31,13)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="879.50"></text></g><g><title>handle_mm_fault (52 samples, 0.03%)</title><rect x="97.9495%" y="853" width="0.0346%" height="15" fill="rgb(219,73,54)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="863.50"></text></g><g><title>do_huge_pmd_anonymous_page (52 samples, 0.03%)</title><rect x="97.9495%" y="837" width="0.0346%" height="15" fill="rgb(251,162,10)" fg:x="147177" fg:w="52"/><text x="98.1995%" y="847.50"></text></g><g><title>OptoRuntime::new_instance_C (53 samples, 0.04%)</title><rect x="97.9495%" y="981" width="0.0353%" height="15" fill="rgb(240,138,47)" fg:x="147177" fg:w="53"/><text x="98.1995%" y="991.50"></text></g><g><title>TieredThresholdPolicy::event (41 samples, 0.03%)</title><rect x="97.9981%" y="965" width="0.0273%" height="15" fill="rgb(216,138,26)" fg:x="147250" fg:w="41"/><text x="98.2481%" y="975.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (32 samples, 0.02%)</title><rect x="98.0041%" y="949" width="0.0213%" height="15" fill="rgb(243,17,35)" fg:x="147259" fg:w="32"/><text x="98.2541%" y="959.50"></text></g><g><title>TieredThresholdPolicy::compile (24 samples, 0.02%)</title><rect x="98.0094%" y="933" width="0.0160%" height="15" fill="rgb(241,60,18)" fg:x="147267" fg:w="24"/><text x="98.2594%" y="943.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (24 samples, 0.02%)</title><rect x="98.0094%" y="917" width="0.0160%" height="15" fill="rgb(234,2,44)" fg:x="147267" fg:w="24"/><text x="98.2594%" y="927.50"></text></g><g><title>CompileBroker::compile_method (24 samples, 0.02%)</title><rect x="98.0094%" y="901" width="0.0160%" height="15" fill="rgb(225,225,33)" fg:x="147267" fg:w="24"/><text x="98.2594%" y="911.50"></text></g><g><title>Runtime1::counter_overflow (73 samples, 0.05%)</title><rect x="97.9848%" y="981" width="0.0486%" height="15" fill="rgb(234,50,31)" fg:x="147230" fg:w="73"/><text x="98.2348%" y="991.50"></text></g><g><title>Runtime1::monitorenter (27 samples, 0.02%)</title><rect x="98.0340%" y="981" width="0.0180%" height="15" fill="rgb(249,6,25)" fg:x="147304" fg:w="27"/><text x="98.2840%" y="991.50"></text></g><g><title>alloc_pages_vma (26 samples, 0.02%)</title><rect x="98.0627%" y="821" width="0.0173%" height="15" fill="rgb(241,5,17)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="831.50"></text></g><g><title>__alloc_pages_nodemask (26 samples, 0.02%)</title><rect x="98.0627%" y="805" width="0.0173%" height="15" fill="rgb(207,116,10)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="815.50"></text></g><g><title>get_page_from_freelist (26 samples, 0.02%)</title><rect x="98.0627%" y="789" width="0.0173%" height="15" fill="rgb(222,128,18)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="799.50"></text></g><g><title>prep_new_page (26 samples, 0.02%)</title><rect x="98.0627%" y="773" width="0.0173%" height="15" fill="rgb(229,109,25)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="783.50"></text></g><g><title>kernel_init_free_pages (26 samples, 0.02%)</title><rect x="98.0627%" y="757" width="0.0173%" height="15" fill="rgb(222,102,25)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="767.50"></text></g><g><title>clear_page_erms (26 samples, 0.02%)</title><rect x="98.0627%" y="741" width="0.0173%" height="15" fill="rgb(239,211,5)" fg:x="147347" fg:w="26"/><text x="98.3127%" y="751.50"></text></g><g><title>ObjAllocator::initialize (42 samples, 0.03%)</title><rect x="98.0627%" y="917" width="0.0280%" height="15" fill="rgb(223,136,26)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="927.50"></text></g><g><title>asm_exc_page_fault (42 samples, 0.03%)</title><rect x="98.0627%" y="901" width="0.0280%" height="15" fill="rgb(227,30,15)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="911.50"></text></g><g><title>exc_page_fault (42 samples, 0.03%)</title><rect x="98.0627%" y="885" width="0.0280%" height="15" fill="rgb(247,76,4)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="895.50"></text></g><g><title>do_user_addr_fault (42 samples, 0.03%)</title><rect x="98.0627%" y="869" width="0.0280%" height="15" fill="rgb(245,38,48)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="879.50"></text></g><g><title>handle_mm_fault (42 samples, 0.03%)</title><rect x="98.0627%" y="853" width="0.0280%" height="15" fill="rgb(210,220,14)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="863.50"></text></g><g><title>do_huge_pmd_anonymous_page (42 samples, 0.03%)</title><rect x="98.0627%" y="837" width="0.0280%" height="15" fill="rgb(224,60,51)" fg:x="147347" fg:w="42"/><text x="98.3127%" y="847.50"></text></g><g><title>clear_huge_page (16 samples, 0.01%)</title><rect x="98.0800%" y="821" width="0.0106%" height="15" fill="rgb(212,133,49)" fg:x="147373" fg:w="16"/><text x="98.3300%" y="831.50"></text></g><g><title>Runtime1::new_instance (48 samples, 0.03%)</title><rect x="98.0593%" y="981" width="0.0319%" height="15" fill="rgb(231,39,22)" fg:x="147342" fg:w="48"/><text x="98.3093%" y="991.50"></text></g><g><title>InstanceKlass::allocate_instance (48 samples, 0.03%)</title><rect x="98.0593%" y="965" width="0.0319%" height="15" fill="rgb(236,173,22)" fg:x="147342" fg:w="48"/><text x="98.3093%" y="975.50"></text></g><g><title>CollectedHeap::obj_allocate (48 samples, 0.03%)</title><rect x="98.0593%" y="949" width="0.0319%" height="15" fill="rgb(210,70,0)" fg:x="147342" fg:w="48"/><text x="98.3093%" y="959.50"></text></g><g><title>MemAllocator::allocate (48 samples, 0.03%)</title><rect x="98.0593%" y="933" width="0.0319%" height="15" fill="rgb(215,170,11)" fg:x="147342" fg:w="48"/><text x="98.3093%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="98.1139%" y="741" width="0.0133%" height="15" fill="rgb(220,154,28)" fg:x="147424" fg:w="20"/><text x="98.3639%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="98.1139%" y="725" width="0.0133%" height="15" fill="rgb(240,160,41)" fg:x="147424" fg:w="20"/><text x="98.3639%" y="735.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="98.1139%" y="709" width="0.0133%" height="15" fill="rgb(243,215,41)" fg:x="147424" fg:w="20"/><text x="98.3639%" y="719.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="98.1139%" y="757" width="0.0140%" height="15" fill="rgb(214,208,31)" fg:x="147424" fg:w="21"/><text x="98.3639%" y="767.50"></text></g><g><title>__pthread_cond_wait (26 samples, 0.02%)</title><rect x="98.1132%" y="933" width="0.0173%" height="15" fill="rgb(247,57,22)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="943.50"></text></g><g><title>__pthread_cond_wait_common (26 samples, 0.02%)</title><rect x="98.1132%" y="917" width="0.0173%" height="15" fill="rgb(228,73,52)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="927.50"></text></g><g><title>futex_wait_cancelable (26 samples, 0.02%)</title><rect x="98.1132%" y="901" width="0.0173%" height="15" fill="rgb(252,60,9)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="98.1132%" y="885" width="0.0173%" height="15" fill="rgb(233,9,51)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="895.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="98.1132%" y="869" width="0.0173%" height="15" fill="rgb(223,67,14)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="879.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.02%)</title><rect x="98.1132%" y="853" width="0.0173%" height="15" fill="rgb(222,86,2)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="863.50"></text></g><g><title>do_futex (26 samples, 0.02%)</title><rect x="98.1132%" y="837" width="0.0173%" height="15" fill="rgb(243,58,54)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="847.50"></text></g><g><title>futex_wait (26 samples, 0.02%)</title><rect x="98.1132%" y="821" width="0.0173%" height="15" fill="rgb(210,200,39)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="831.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.02%)</title><rect x="98.1132%" y="805" width="0.0173%" height="15" fill="rgb(238,135,9)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="815.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="98.1132%" y="789" width="0.0173%" height="15" fill="rgb(232,179,7)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="799.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="98.1132%" y="773" width="0.0173%" height="15" fill="rgb(245,65,41)" fg:x="147423" fg:w="26"/><text x="98.3632%" y="783.50"></text></g><g><title>ObjectMonitor::enter (52 samples, 0.03%)</title><rect x="98.0966%" y="965" width="0.0346%" height="15" fill="rgb(227,43,8)" fg:x="147398" fg:w="52"/><text x="98.3466%" y="975.50"></text></g><g><title>os::PlatformEvent::park (42 samples, 0.03%)</title><rect x="98.1033%" y="949" width="0.0280%" height="15" fill="rgb(235,91,14)" fg:x="147408" fg:w="42"/><text x="98.3533%" y="959.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (55 samples, 0.04%)</title><rect x="98.0953%" y="981" width="0.0366%" height="15" fill="rgb(235,219,31)" fg:x="147396" fg:w="55"/><text x="98.3453%" y="991.50"></text></g><g><title>SharedRuntime::handle_wrong_method_ic_miss (44 samples, 0.03%)</title><rect x="98.1432%" y="981" width="0.0293%" height="15" fill="rgb(227,121,25)" fg:x="147468" fg:w="44"/><text x="98.3932%" y="991.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (41 samples, 0.03%)</title><rect x="98.1452%" y="965" width="0.0273%" height="15" fill="rgb(254,129,24)" fg:x="147471" fg:w="41"/><text x="98.3952%" y="975.50"></text></g><g><title>InstanceKlass::link_class_impl (18 samples, 0.01%)</title><rect x="98.1904%" y="949" width="0.0120%" height="15" fill="rgb(226,144,49)" fg:x="147539" fg:w="18"/><text x="98.4404%" y="959.50"></text></g><g><title>ClassFileParser::parse_constant_pool (17 samples, 0.01%)</title><rect x="98.2031%" y="901" width="0.0113%" height="15" fill="rgb(214,187,32)" fg:x="147558" fg:w="17"/><text x="98.4531%" y="911.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (16 samples, 0.01%)</title><rect x="98.2038%" y="885" width="0.0106%" height="15" fill="rgb(243,129,46)" fg:x="147559" fg:w="16"/><text x="98.4538%" y="895.50"></text></g><g><title>ClassFileParser::ClassFileParser (30 samples, 0.02%)</title><rect x="98.2024%" y="933" width="0.0200%" height="15" fill="rgb(221,185,35)" fg:x="147557" fg:w="30"/><text x="98.4524%" y="943.50"></text></g><g><title>ClassFileParser::parse_stream (30 samples, 0.02%)</title><rect x="98.2024%" y="917" width="0.0200%" height="15" fill="rgb(205,0,32)" fg:x="147557" fg:w="30"/><text x="98.4524%" y="927.50"></text></g><g><title>KlassFactory::create_from_stream (47 samples, 0.03%)</title><rect x="98.2024%" y="949" width="0.0313%" height="15" fill="rgb(229,179,12)" fg:x="147557" fg:w="47"/><text x="98.4524%" y="959.50"></text></g><g><title>SystemDictionary::parse_stream (77 samples, 0.05%)</title><rect x="98.1884%" y="965" width="0.0512%" height="15" fill="rgb(252,107,19)" fg:x="147536" fg:w="77"/><text x="98.4384%" y="975.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (80 samples, 0.05%)</title><rect x="98.1871%" y="981" width="0.0532%" height="15" fill="rgb(220,95,27)" fg:x="147534" fg:w="80"/><text x="98.4371%" y="991.50"></text></g><g><title>JVM_DefineClass (24 samples, 0.02%)</title><rect x="98.2404%" y="965" width="0.0160%" height="15" fill="rgb(240,113,40)" fg:x="147614" fg:w="24"/><text x="98.4904%" y="975.50"></text></g><g><title>jvm_define_class_common (24 samples, 0.02%)</title><rect x="98.2404%" y="949" width="0.0160%" height="15" fill="rgb(208,4,43)" fg:x="147614" fg:w="24"/><text x="98.4904%" y="959.50"></text></g><g><title>SystemDictionary::resolve_from_stream (20 samples, 0.01%)</title><rect x="98.2430%" y="933" width="0.0133%" height="15" fill="rgb(247,189,30)" fg:x="147618" fg:w="20"/><text x="98.4930%" y="943.50"></text></g><g><title>Unsafe_DefineClass0 (25 samples, 0.02%)</title><rect x="98.2404%" y="981" width="0.0166%" height="15" fill="rgb(231,157,17)" fg:x="147614" fg:w="25"/><text x="98.4904%" y="991.50"></text></g><g><title>dequeue_task_fair (17 samples, 0.01%)</title><rect x="98.2816%" y="773" width="0.0113%" height="15" fill="rgb(224,139,6)" fg:x="147676" fg:w="17"/><text x="98.5316%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (283 samples, 0.19%)</title><rect x="98.2956%" y="757" width="0.1883%" height="15" fill="rgb(223,83,16)" fg:x="147697" fg:w="283"/><text x="98.5456%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (276 samples, 0.18%)</title><rect x="98.3003%" y="741" width="0.1837%" height="15" fill="rgb(232,211,20)" fg:x="147704" fg:w="276"/><text x="98.5503%" y="751.50"></text></g><g><title>native_write_msr (274 samples, 0.18%)</title><rect x="98.3016%" y="725" width="0.1824%" height="15" fill="rgb(225,203,35)" fg:x="147706" fg:w="274"/><text x="98.5516%" y="735.50"></text></g><g><title>finish_task_switch (296 samples, 0.20%)</title><rect x="98.2929%" y="773" width="0.1970%" height="15" fill="rgb(215,211,44)" fg:x="147693" fg:w="296"/><text x="98.5429%" y="783.50"></text></g><g><title>futex_wait_queue_me (342 samples, 0.23%)</title><rect x="98.2743%" y="821" width="0.2276%" height="15" fill="rgb(248,213,26)" fg:x="147665" fg:w="342"/><text x="98.5243%" y="831.50"></text></g><g><title>schedule (339 samples, 0.23%)</title><rect x="98.2763%" y="805" width="0.2256%" height="15" fill="rgb(214,23,52)" fg:x="147668" fg:w="339"/><text x="98.5263%" y="815.50"></text></g><g><title>__schedule (338 samples, 0.22%)</title><rect x="98.2770%" y="789" width="0.2249%" height="15" fill="rgb(225,173,50)" fg:x="147669" fg:w="338"/><text x="98.5270%" y="799.50"></text></g><g><title>do_syscall_64 (345 samples, 0.23%)</title><rect x="98.2730%" y="885" width="0.2296%" height="15" fill="rgb(206,150,22)" fg:x="147663" fg:w="345"/><text x="98.5230%" y="895.50"></text></g><g><title>__x64_sys_futex (344 samples, 0.23%)</title><rect x="98.2736%" y="869" width="0.2289%" height="15" fill="rgb(239,64,23)" fg:x="147664" fg:w="344"/><text x="98.5236%" y="879.50"></text></g><g><title>do_futex (344 samples, 0.23%)</title><rect x="98.2736%" y="853" width="0.2289%" height="15" fill="rgb(242,50,38)" fg:x="147664" fg:w="344"/><text x="98.5236%" y="863.50"></text></g><g><title>futex_wait (343 samples, 0.23%)</title><rect x="98.2743%" y="837" width="0.2283%" height="15" fill="rgb(217,91,15)" fg:x="147665" fg:w="343"/><text x="98.5243%" y="847.50"></text></g><g><title>__pthread_cond_wait (353 samples, 0.23%)</title><rect x="98.2710%" y="949" width="0.2349%" height="15" fill="rgb(230,172,6)" fg:x="147660" fg:w="353"/><text x="98.5210%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (353 samples, 0.23%)</title><rect x="98.2710%" y="933" width="0.2349%" height="15" fill="rgb(221,98,26)" fg:x="147660" fg:w="353"/><text x="98.5210%" y="943.50"></text></g><g><title>futex_wait_cancelable (350 samples, 0.23%)</title><rect x="98.2730%" y="917" width="0.2329%" height="15" fill="rgb(227,210,45)" fg:x="147663" fg:w="350"/><text x="98.5230%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (350 samples, 0.23%)</title><rect x="98.2730%" y="901" width="0.2329%" height="15" fill="rgb(206,8,30)" fg:x="147663" fg:w="350"/><text x="98.5230%" y="911.50"></text></g><g><title>Parker::park (387 samples, 0.26%)</title><rect x="98.2597%" y="965" width="0.2576%" height="15" fill="rgb(241,219,17)" fg:x="147643" fg:w="387"/><text x="98.5097%" y="975.50"></text></g><g><title>Unsafe_Park (388 samples, 0.26%)</title><rect x="98.2597%" y="981" width="0.2582%" height="15" fill="rgb(247,121,29)" fg:x="147643" fg:w="388"/><text x="98.5097%" y="991.50"></text></g><g><title>enqueue_task_fair (20 samples, 0.01%)</title><rect x="98.5571%" y="805" width="0.0133%" height="15" fill="rgb(219,169,49)" fg:x="148090" fg:w="20"/><text x="98.8071%" y="815.50"></text></g><g><title>ttwu_do_activate (37 samples, 0.02%)</title><rect x="98.5565%" y="821" width="0.0246%" height="15" fill="rgb(253,49,49)" fg:x="148089" fg:w="37"/><text x="98.8065%" y="831.50"></text></g><g><title>psi_task_change (16 samples, 0.01%)</title><rect x="98.5705%" y="805" width="0.0106%" height="15" fill="rgb(217,178,3)" fg:x="148110" fg:w="16"/><text x="98.8205%" y="815.50"></text></g><g><title>do_syscall_64 (70 samples, 0.05%)</title><rect x="98.5372%" y="917" width="0.0466%" height="15" fill="rgb(234,73,37)" fg:x="148060" fg:w="70"/><text x="98.7872%" y="927.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.05%)</title><rect x="98.5372%" y="901" width="0.0466%" height="15" fill="rgb(250,98,22)" fg:x="148060" fg:w="70"/><text x="98.7872%" y="911.50"></text></g><g><title>do_futex (69 samples, 0.05%)</title><rect x="98.5378%" y="885" width="0.0459%" height="15" fill="rgb(220,108,37)" fg:x="148061" fg:w="69"/><text x="98.7878%" y="895.50"></text></g><g><title>futex_wake (69 samples, 0.05%)</title><rect x="98.5378%" y="869" width="0.0459%" height="15" fill="rgb(225,168,10)" fg:x="148061" fg:w="69"/><text x="98.7878%" y="879.50"></text></g><g><title>wake_up_q (60 samples, 0.04%)</title><rect x="98.5438%" y="853" width="0.0399%" height="15" fill="rgb(247,215,21)" fg:x="148070" fg:w="60"/><text x="98.7938%" y="863.50"></text></g><g><title>try_to_wake_up (59 samples, 0.04%)</title><rect x="98.5445%" y="837" width="0.0393%" height="15" fill="rgb(253,189,31)" fg:x="148071" fg:w="59"/><text x="98.7945%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.05%)</title><rect x="98.5372%" y="933" width="0.0486%" height="15" fill="rgb(241,54,22)" fg:x="148060" fg:w="73"/><text x="98.7872%" y="943.50"></text></g><g><title>Unsafe_Unpark (101 samples, 0.07%)</title><rect x="98.5192%" y="981" width="0.0672%" height="15" fill="rgb(211,87,4)" fg:x="148033" fg:w="101"/><text x="98.7692%" y="991.50"></text></g><g><title>__pthread_cond_signal (79 samples, 0.05%)</title><rect x="98.5339%" y="965" width="0.0526%" height="15" fill="rgb(245,112,24)" fg:x="148055" fg:w="79"/><text x="98.7839%" y="975.50"></text></g><g><title>futex_wake (77 samples, 0.05%)</title><rect x="98.5352%" y="949" width="0.0512%" height="15" fill="rgb(235,190,41)" fg:x="148057" fg:w="77"/><text x="98.7852%" y="959.50"></text></g><g><title>__hrtimer_run_queues (25 samples, 0.02%)</title><rect x="98.6011%" y="917" width="0.0166%" height="15" fill="rgb(214,89,8)" fg:x="148156" fg:w="25"/><text x="98.8511%" y="927.50"></text></g><g><title>__sysvec_apic_timer_interrupt (27 samples, 0.02%)</title><rect x="98.6004%" y="949" width="0.0180%" height="15" fill="rgb(249,155,35)" fg:x="148155" fg:w="27"/><text x="98.8504%" y="959.50"></text></g><g><title>hrtimer_interrupt (26 samples, 0.02%)</title><rect x="98.6011%" y="933" width="0.0173%" height="15" fill="rgb(249,88,26)" fg:x="148156" fg:w="26"/><text x="98.8511%" y="943.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (42 samples, 0.03%)</title><rect x="98.5997%" y="981" width="0.0280%" height="15" fill="rgb(232,56,8)" fg:x="148154" fg:w="42"/><text x="98.8497%" y="991.50"></text></g><g><title>sysvec_apic_timer_interrupt (41 samples, 0.03%)</title><rect x="98.6004%" y="965" width="0.0273%" height="15" fill="rgb(240,95,3)" fg:x="148155" fg:w="41"/><text x="98.8504%" y="975.50"></text></g><g><title>do_filp_open (47 samples, 0.03%)</title><rect x="98.6670%" y="885" width="0.0313%" height="15" fill="rgb(222,44,28)" fg:x="148255" fg:w="47"/><text x="98.9170%" y="895.50"></text></g><g><title>path_openat (46 samples, 0.03%)</title><rect x="98.6676%" y="869" width="0.0306%" height="15" fill="rgb(234,16,30)" fg:x="148256" fg:w="46"/><text x="98.9176%" y="879.50"></text></g><g><title>fileOpen (73 samples, 0.05%)</title><rect x="98.6523%" y="981" width="0.0486%" height="15" fill="rgb(223,26,17)" fg:x="148233" fg:w="73"/><text x="98.9023%" y="991.50"></text></g><g><title>__libc_open64 (57 samples, 0.04%)</title><rect x="98.6630%" y="965" width="0.0379%" height="15" fill="rgb(239,187,47)" fg:x="148249" fg:w="57"/><text x="98.9130%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.04%)</title><rect x="98.6650%" y="949" width="0.0359%" height="15" fill="rgb(247,102,50)" fg:x="148252" fg:w="54"/><text x="98.9150%" y="959.50"></text></g><g><title>do_syscall_64 (54 samples, 0.04%)</title><rect x="98.6650%" y="933" width="0.0359%" height="15" fill="rgb(231,216,22)" fg:x="148252" fg:w="54"/><text x="98.9150%" y="943.50"></text></g><g><title>__x64_sys_openat (54 samples, 0.04%)</title><rect x="98.6650%" y="917" width="0.0359%" height="15" fill="rgb(216,201,26)" fg:x="148252" fg:w="54"/><text x="98.9150%" y="927.50"></text></g><g><title>do_sys_openat2 (53 samples, 0.04%)</title><rect x="98.6656%" y="901" width="0.0353%" height="15" fill="rgb(214,186,23)" fg:x="148253" fg:w="53"/><text x="98.9156%" y="911.50"></text></g><g><title>jni_IsAssignableFrom (25 samples, 0.02%)</title><rect x="98.7115%" y="981" width="0.0166%" height="15" fill="rgb(235,184,4)" fg:x="148322" fg:w="25"/><text x="98.9615%" y="991.50"></text></g><g><title>[perf-943567.map] (36,033 samples, 23.98%)</title><rect x="74.8100%" y="997" width="23.9808%" height="15" fill="rgb(244,46,17)" fg:x="112408" fg:w="36033"/><text x="75.0600%" y="1007.50">[perf-943567.map]</text></g><g><title>os::javaTimeNanos (92 samples, 0.06%)</title><rect x="98.7295%" y="981" width="0.0612%" height="15" fill="rgb(248,74,46)" fg:x="148349" fg:w="92"/><text x="98.9795%" y="991.50"></text></g><g><title>__GI___clock_gettime (84 samples, 0.06%)</title><rect x="98.7348%" y="965" width="0.0559%" height="15" fill="rgb(243,79,5)" fg:x="148357" fg:w="84"/><text x="98.9848%" y="975.50"></text></g><g><title>__vdso_clock_gettime (71 samples, 0.05%)</title><rect x="98.7435%" y="949" width="0.0473%" height="15" fill="rgb(213,148,1)" fg:x="148370" fg:w="71"/><text x="98.9935%" y="959.50"></text></g><g><title>[[vdso]] (41 samples, 0.03%)</title><rect x="98.7635%" y="933" width="0.0273%" height="15" fill="rgb(221,30,0)" fg:x="148400" fg:w="41"/><text x="99.0135%" y="943.50"></text></g><g><title>Runtime1::counter_overflow (24 samples, 0.02%)</title><rect x="98.8087%" y="981" width="0.0160%" height="15" fill="rgb(207,85,29)" fg:x="148468" fg:w="24"/><text x="99.0587%" y="991.50"></text></g><g><title>TieredThresholdPolicy::event (24 samples, 0.02%)</title><rect x="98.8087%" y="965" width="0.0160%" height="15" fill="rgb(239,31,46)" fg:x="148468" fg:w="24"/><text x="99.0587%" y="975.50"></text></g><g><title>SharedRuntime::find_callee_method (22 samples, 0.01%)</title><rect x="98.8254%" y="981" width="0.0146%" height="15" fill="rgb(219,6,1)" fg:x="148493" fg:w="22"/><text x="99.0754%" y="991.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (21 samples, 0.01%)</title><rect x="98.8260%" y="965" width="0.0140%" height="15" fill="rgb(229,90,29)" fg:x="148494" fg:w="21"/><text x="99.0760%" y="975.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (34 samples, 0.02%)</title><rect x="98.8407%" y="981" width="0.0226%" height="15" fill="rgb(242,201,42)" fg:x="148516" fg:w="34"/><text x="99.0907%" y="991.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (34 samples, 0.02%)</title><rect x="98.8407%" y="965" width="0.0226%" height="15" fill="rgb(243,80,54)" fg:x="148516" fg:w="34"/><text x="99.0907%" y="975.50"></text></g><g><title>SharedRuntime::handle_wrong_method (17 samples, 0.01%)</title><rect x="98.8633%" y="981" width="0.0113%" height="15" fill="rgb(223,166,15)" fg:x="148550" fg:w="17"/><text x="99.1133%" y="991.50"></text></g><g><title>SharedRuntime::reresolve_call_site (17 samples, 0.01%)</title><rect x="98.8633%" y="965" width="0.0113%" height="15" fill="rgb(238,78,27)" fg:x="148550" fg:w="17"/><text x="99.1133%" y="975.50"></text></g><g><title>CompiledIC::set_to_monomorphic (19 samples, 0.01%)</title><rect x="98.8966%" y="965" width="0.0126%" height="15" fill="rgb(235,28,43)" fg:x="148600" fg:w="19"/><text x="99.1466%" y="975.50"></text></g><g><title>Bytecode_invoke::static_target (26 samples, 0.02%)</title><rect x="98.9265%" y="949" width="0.0173%" height="15" fill="rgb(240,210,28)" fg:x="148645" fg:w="26"/><text x="99.1765%" y="959.50"></text></g><g><title>LinkResolver::resolve_method_statically (26 samples, 0.02%)</title><rect x="98.9265%" y="933" width="0.0173%" height="15" fill="rgb(253,6,46)" fg:x="148645" fg:w="26"/><text x="99.1765%" y="943.50"></text></g><g><title>LinkResolver::resolve_invoke (31 samples, 0.02%)</title><rect x="98.9458%" y="949" width="0.0206%" height="15" fill="rgb(250,159,47)" fg:x="148674" fg:w="31"/><text x="99.1958%" y="959.50"></text></g><g><title>SharedRuntime::extract_attached_method (21 samples, 0.01%)</title><rect x="98.9664%" y="949" width="0.0140%" height="15" fill="rgb(216,139,2)" fg:x="148705" fg:w="21"/><text x="99.2164%" y="959.50"></text></g><g><title>OopMapStream::find_next (23 samples, 0.02%)</title><rect x="98.9917%" y="917" width="0.0153%" height="15" fill="rgb(221,124,44)" fg:x="148743" fg:w="23"/><text x="99.2417%" y="927.50"></text></g><g><title>frame::sender (38 samples, 0.03%)</title><rect x="98.9824%" y="949" width="0.0253%" height="15" fill="rgb(205,37,22)" fg:x="148729" fg:w="38"/><text x="99.2324%" y="959.50"></text></g><g><title>OopMapSet::update_register_map (35 samples, 0.02%)</title><rect x="98.9844%" y="933" width="0.0233%" height="15" fill="rgb(250,55,8)" fg:x="148732" fg:w="35"/><text x="99.2344%" y="943.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (128 samples, 0.09%)</title><rect x="98.9239%" y="965" width="0.0852%" height="15" fill="rgb(215,83,48)" fg:x="148641" fg:w="128"/><text x="99.1739%" y="975.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (219 samples, 0.15%)</title><rect x="98.8746%" y="981" width="0.1457%" height="15" fill="rgb(253,2,32)" fg:x="148567" fg:w="219"/><text x="99.1246%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.03%)</title><rect x="99.0250%" y="709" width="0.0339%" height="15" fill="rgb(236,67,28)" fg:x="148793" fg:w="51"/><text x="99.2750%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.03%)</title><rect x="99.0257%" y="693" width="0.0333%" height="15" fill="rgb(252,55,15)" fg:x="148794" fg:w="50"/><text x="99.2757%" y="703.50"></text></g><g><title>native_write_msr (49 samples, 0.03%)</title><rect x="99.0263%" y="677" width="0.0326%" height="15" fill="rgb(243,173,17)" fg:x="148795" fg:w="49"/><text x="99.2763%" y="687.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.04%)</title><rect x="99.0237%" y="773" width="0.0366%" height="15" fill="rgb(215,212,13)" fg:x="148791" fg:w="55"/><text x="99.2737%" y="783.50"></text></g><g><title>schedule (55 samples, 0.04%)</title><rect x="99.0237%" y="757" width="0.0366%" height="15" fill="rgb(253,176,6)" fg:x="148791" fg:w="55"/><text x="99.2737%" y="767.50"></text></g><g><title>__schedule (55 samples, 0.04%)</title><rect x="99.0237%" y="741" width="0.0366%" height="15" fill="rgb(236,105,26)" fg:x="148791" fg:w="55"/><text x="99.2737%" y="751.50"></text></g><g><title>finish_task_switch (54 samples, 0.04%)</title><rect x="99.0243%" y="725" width="0.0359%" height="15" fill="rgb(239,226,32)" fg:x="148792" fg:w="54"/><text x="99.2743%" y="735.50"></text></g><g><title>__pthread_cond_wait (59 samples, 0.04%)</title><rect x="99.0217%" y="901" width="0.0393%" height="15" fill="rgb(236,104,51)" fg:x="148788" fg:w="59"/><text x="99.2717%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (59 samples, 0.04%)</title><rect x="99.0217%" y="885" width="0.0393%" height="15" fill="rgb(220,172,33)" fg:x="148788" fg:w="59"/><text x="99.2717%" y="895.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.04%)</title><rect x="99.0223%" y="869" width="0.0386%" height="15" fill="rgb(224,182,25)" fg:x="148789" fg:w="58"/><text x="99.2723%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.04%)</title><rect x="99.0230%" y="853" width="0.0379%" height="15" fill="rgb(236,184,24)" fg:x="148790" fg:w="57"/><text x="99.2730%" y="863.50"></text></g><g><title>do_syscall_64 (57 samples, 0.04%)</title><rect x="99.0230%" y="837" width="0.0379%" height="15" fill="rgb(241,221,14)" fg:x="148790" fg:w="57"/><text x="99.2730%" y="847.50"></text></g><g><title>__x64_sys_futex (57 samples, 0.04%)</title><rect x="99.0230%" y="821" width="0.0379%" height="15" fill="rgb(227,146,5)" fg:x="148790" fg:w="57"/><text x="99.2730%" y="831.50"></text></g><g><title>do_futex (56 samples, 0.04%)</title><rect x="99.0237%" y="805" width="0.0373%" height="15" fill="rgb(214,15,23)" fg:x="148791" fg:w="56"/><text x="99.2737%" y="815.50"></text></g><g><title>futex_wait (56 samples, 0.04%)</title><rect x="99.0237%" y="789" width="0.0373%" height="15" fill="rgb(233,157,31)" fg:x="148791" fg:w="56"/><text x="99.2737%" y="799.50"></text></g><g><title>Monitor::lock_without_safepoint_check (61 samples, 0.04%)</title><rect x="99.0210%" y="949" width="0.0406%" height="15" fill="rgb(211,27,52)" fg:x="148787" fg:w="61"/><text x="99.2710%" y="959.50"></text></g><g><title>Monitor::ILock (61 samples, 0.04%)</title><rect x="99.0210%" y="933" width="0.0406%" height="15" fill="rgb(212,223,15)" fg:x="148787" fg:w="61"/><text x="99.2710%" y="943.50"></text></g><g><title>os::PlatformEvent::park (60 samples, 0.04%)</title><rect x="99.0217%" y="917" width="0.0399%" height="15" fill="rgb(254,211,0)" fg:x="148788" fg:w="60"/><text x="99.2717%" y="927.50"></text></g><g><title>SafepointSynchronize::block (67 samples, 0.04%)</title><rect x="99.0210%" y="965" width="0.0446%" height="15" fill="rgb(205,43,38)" fg:x="148787" fg:w="67"/><text x="99.2710%" y="975.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (70 samples, 0.05%)</title><rect x="99.0204%" y="981" width="0.0466%" height="15" fill="rgb(242,206,46)" fg:x="148786" fg:w="70"/><text x="99.2704%" y="991.50"></text></g><g><title>__fdget_pos (25 samples, 0.02%)</title><rect x="99.1255%" y="869" width="0.0166%" height="15" fill="rgb(220,221,12)" fg:x="148944" fg:w="25"/><text x="99.3755%" y="879.50"></text></g><g><title>copy_page_to_iter (431 samples, 0.29%)</title><rect x="99.2007%" y="821" width="0.2868%" height="15" fill="rgb(217,156,35)" fg:x="149057" fg:w="431"/><text x="99.4507%" y="831.50"></text></g><g><title>copy_user_enhanced_fast_string (408 samples, 0.27%)</title><rect x="99.2160%" y="805" width="0.2715%" height="15" fill="rgb(207,181,49)" fg:x="149080" fg:w="408"/><text x="99.4660%" y="815.50"></text></g><g><title>__activate_page (35 samples, 0.02%)</title><rect x="99.5015%" y="789" width="0.0233%" height="15" fill="rgb(235,103,47)" fg:x="149509" fg:w="35"/><text x="99.7515%" y="799.50"></text></g><g><title>mark_page_accessed (66 samples, 0.04%)</title><rect x="99.4875%" y="821" width="0.0439%" height="15" fill="rgb(222,63,28)" fg:x="149488" fg:w="66"/><text x="99.7375%" y="831.50"></text></g><g><title>pagevec_lru_move_fn (48 samples, 0.03%)</title><rect x="99.4995%" y="805" width="0.0319%" height="15" fill="rgb(244,137,21)" fg:x="149506" fg:w="48"/><text x="99.7495%" y="815.50"></text></g><g><title>pagecache_get_page (47 samples, 0.03%)</title><rect x="99.5315%" y="821" width="0.0313%" height="15" fill="rgb(228,35,27)" fg:x="149554" fg:w="47"/><text x="99.7815%" y="831.50"></text></g><g><title>find_get_entry (42 samples, 0.03%)</title><rect x="99.5348%" y="805" width="0.0280%" height="15" fill="rgb(226,191,41)" fg:x="149559" fg:w="42"/><text x="99.7848%" y="815.50"></text></g><g><title>xas_load (23 samples, 0.02%)</title><rect x="99.5474%" y="789" width="0.0153%" height="15" fill="rgb(210,154,3)" fg:x="149578" fg:w="23"/><text x="99.7974%" y="799.50"></text></g><g><title>touch_atime (22 samples, 0.01%)</title><rect x="99.5628%" y="821" width="0.0146%" height="15" fill="rgb(216,60,49)" fg:x="149601" fg:w="22"/><text x="99.8128%" y="831.50"></text></g><g><title>generic_file_buffered_read (626 samples, 0.42%)</title><rect x="99.1814%" y="837" width="0.4166%" height="15" fill="rgb(226,17,20)" fg:x="149028" fg:w="626"/><text x="99.4314%" y="847.50"></text></g><g><title>workingset_activation (31 samples, 0.02%)</title><rect x="99.5774%" y="821" width="0.0206%" height="15" fill="rgb(206,115,35)" fg:x="149623" fg:w="31"/><text x="99.8274%" y="831.50"></text></g><g><title>workingset_age_nonresident (21 samples, 0.01%)</title><rect x="99.5840%" y="805" width="0.0140%" height="15" fill="rgb(227,88,1)" fg:x="149633" fg:w="21"/><text x="99.8340%" y="815.50"></text></g><g><title>new_sync_read (636 samples, 0.42%)</title><rect x="99.1754%" y="853" width="0.4233%" height="15" fill="rgb(230,222,24)" fg:x="149019" fg:w="636"/><text x="99.4254%" y="863.50"></text></g><g><title>ksys_read (729 samples, 0.49%)</title><rect x="99.1242%" y="885" width="0.4852%" height="15" fill="rgb(214,124,32)" fg:x="148942" fg:w="729"/><text x="99.3742%" y="895.50"></text></g><g><title>vfs_read (685 samples, 0.46%)</title><rect x="99.1535%" y="869" width="0.4559%" height="15" fill="rgb(240,41,36)" fg:x="148986" fg:w="685"/><text x="99.4035%" y="879.50"></text></g><g><title>do_syscall_64 (736 samples, 0.49%)</title><rect x="99.1208%" y="901" width="0.4898%" height="15" fill="rgb(221,17,52)" fg:x="148937" fg:w="736"/><text x="99.3708%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (742 samples, 0.49%)</title><rect x="99.1195%" y="917" width="0.4938%" height="15" fill="rgb(252,70,16)" fg:x="148935" fg:w="742"/><text x="99.3695%" y="927.50"></text></g><g><title>handleRead (785 samples, 0.52%)</title><rect x="99.0936%" y="965" width="0.5224%" height="15" fill="rgb(250,177,4)" fg:x="148896" fg:w="785"/><text x="99.3436%" y="975.50"></text></g><g><title>__libc_read (782 samples, 0.52%)</title><rect x="99.0956%" y="949" width="0.5204%" height="15" fill="rgb(240,188,47)" fg:x="148899" fg:w="782"/><text x="99.3456%" y="959.50"></text></g><g><title>__libc_read (781 samples, 0.52%)</title><rect x="99.0962%" y="933" width="0.5198%" height="15" fill="rgb(215,92,12)" fg:x="148900" fg:w="781"/><text x="99.3462%" y="943.50"></text></g><g><title>jni_GetObjectField (55 samples, 0.04%)</title><rect x="99.6253%" y="965" width="0.0366%" height="15" fill="rgb(242,110,29)" fg:x="149695" fg:w="55"/><text x="99.8753%" y="975.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (25 samples, 0.02%)</title><rect x="99.6659%" y="949" width="0.0166%" height="15" fill="rgb(208,211,26)" fg:x="149756" fg:w="25"/><text x="99.9159%" y="959.50"></text></g><g><title>[libc-2.31.so] (112 samples, 0.07%)</title><rect x="99.6865%" y="949" width="0.0745%" height="15" fill="rgb(244,147,6)" fg:x="149787" fg:w="112"/><text x="99.9365%" y="959.50"></text></g><g><title>readBytes (1,025 samples, 0.68%)</title><rect x="99.0836%" y="981" width="0.6822%" height="15" fill="rgb(211,130,42)" fg:x="148881" fg:w="1025"/><text x="99.3336%" y="991.50"></text></g><g><title>jni_SetByteArrayRegion (156 samples, 0.10%)</title><rect x="99.6619%" y="965" width="0.1038%" height="15" fill="rgb(220,63,1)" fg:x="149750" fg:w="156"/><text x="99.9119%" y="975.50"></text></g><g><title>[unknown] (1,479 samples, 0.98%)</title><rect x="98.7907%" y="997" width="0.9843%" height="15" fill="rgb(241,212,30)" fg:x="148441" fg:w="1479"/><text x="99.0407%" y="1007.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.05%)</title><rect x="99.7844%" y="933" width="0.0486%" height="15" fill="rgb(233,153,17)" fg:x="149934" fg:w="73"/><text x="100.0344%" y="943.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.05%)</title><rect x="99.7850%" y="917" width="0.0479%" height="15" fill="rgb(236,3,10)" fg:x="149935" fg:w="72"/><text x="100.0350%" y="927.50"></text></g><g><title>native_write_msr (72 samples, 0.05%)</title><rect x="99.7850%" y="901" width="0.0479%" height="15" fill="rgb(232,41,21)" fg:x="149935" fg:w="72"/><text x="100.0350%" y="911.50"></text></g><g><title>ret_from_fork (80 samples, 0.05%)</title><rect x="99.7817%" y="981" width="0.0532%" height="15" fill="rgb(206,63,51)" fg:x="149930" fg:w="80"/><text x="100.0317%" y="991.50"></text></g><g><title>schedule_tail (78 samples, 0.05%)</title><rect x="99.7830%" y="965" width="0.0519%" height="15" fill="rgb(250,214,3)" fg:x="149932" fg:w="78"/><text x="100.0330%" y="975.50"></text></g><g><title>finish_task_switch (78 samples, 0.05%)</title><rect x="99.7830%" y="949" width="0.0519%" height="15" fill="rgb(254,89,27)" fg:x="149932" fg:w="78"/><text x="100.0330%" y="959.50"></text></g><g><title>__GI___clone (121 samples, 0.08%)</title><rect x="99.7751%" y="997" width="0.0805%" height="15" fill="rgb(249,41,14)" fg:x="149920" fg:w="121"/><text x="100.0251%" y="1007.50"></text></g><g><title>start_thread (31 samples, 0.02%)</title><rect x="99.8350%" y="981" width="0.0206%" height="15" fill="rgb(221,196,51)" fg:x="150010" fg:w="31"/><text x="100.0850%" y="991.50"></text></g><g><title>thread_native_entry (27 samples, 0.02%)</title><rect x="99.8376%" y="965" width="0.0180%" height="15" fill="rgb(214,116,26)" fg:x="150014" fg:w="27"/><text x="100.0876%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="99.8689%" y="997" width="0.0113%" height="15" fill="rgb(236,67,7)" fg:x="150061" fg:w="17"/><text x="100.1189%" y="1007.50"></text></g><g><title>skyframe-evalua (46,686 samples, 31.07%)</title><rect x="68.8276%" y="1013" width="31.0706%" height="15" fill="rgb(253,179,32)" fg:x="103419" fg:w="46686"/><text x="69.0776%" y="1023.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (59 samples, 0.04%)</title><rect x="99.9474%" y="757" width="0.0393%" height="15" fill="rgb(218,33,15)" fg:x="150179" fg:w="59"/><text x="100.1974%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.04%)</title><rect x="99.9488%" y="741" width="0.0379%" height="15" fill="rgb(217,202,41)" fg:x="150181" fg:w="57"/><text x="100.1988%" y="751.50"></text></g><g><title>native_write_msr (57 samples, 0.04%)</title><rect x="99.9488%" y="725" width="0.0379%" height="15" fill="rgb(234,133,5)" fg:x="150181" fg:w="57"/><text x="100.1988%" y="735.50"></text></g><g><title>finish_task_switch (62 samples, 0.04%)</title><rect x="99.9468%" y="773" width="0.0413%" height="15" fill="rgb(240,47,40)" fg:x="150178" fg:w="62"/><text x="100.1968%" y="783.50"></text></g><g><title>do_syscall_64 (65 samples, 0.04%)</title><rect x="99.9454%" y="885" width="0.0433%" height="15" fill="rgb(234,166,26)" fg:x="150176" fg:w="65"/><text x="100.1954%" y="895.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.04%)</title><rect x="99.9454%" y="869" width="0.0433%" height="15" fill="rgb(244,125,51)" fg:x="150176" fg:w="65"/><text x="100.1954%" y="879.50"></text></g><g><title>do_futex (65 samples, 0.04%)</title><rect x="99.9454%" y="853" width="0.0433%" height="15" fill="rgb(229,171,11)" fg:x="150176" fg:w="65"/><text x="100.1954%" y="863.50"></text></g><g><title>futex_wait (65 samples, 0.04%)</title><rect x="99.9454%" y="837" width="0.0433%" height="15" fill="rgb(224,38,45)" fg:x="150176" fg:w="65"/><text x="100.1954%" y="847.50"></text></g><g><title>futex_wait_queue_me (65 samples, 0.04%)</title><rect x="99.9454%" y="821" width="0.0433%" height="15" fill="rgb(237,27,7)" fg:x="150176" fg:w="65"/><text x="100.1954%" y="831.50"></text></g><g><title>schedule (64 samples, 0.04%)</title><rect x="99.9461%" y="805" width="0.0426%" height="15" fill="rgb(216,52,7)" fg:x="150177" fg:w="64"/><text x="100.1961%" y="815.50"></text></g><g><title>__schedule (64 samples, 0.04%)</title><rect x="99.9461%" y="789" width="0.0426%" height="15" fill="rgb(243,11,11)" fg:x="150177" fg:w="64"/><text x="100.1961%" y="799.50"></text></g><g><title>__pthread_cond_wait (68 samples, 0.05%)</title><rect x="99.9441%" y="949" width="0.0453%" height="15" fill="rgb(253,167,20)" fg:x="150174" fg:w="68"/><text x="100.1941%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (68 samples, 0.05%)</title><rect x="99.9441%" y="933" width="0.0453%" height="15" fill="rgb(215,207,5)" fg:x="150174" fg:w="68"/><text x="100.1941%" y="943.50"></text></g><g><title>futex_wait_cancelable (67 samples, 0.04%)</title><rect x="99.9448%" y="917" width="0.0446%" height="15" fill="rgb(252,127,31)" fg:x="150175" fg:w="67"/><text x="100.1948%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.04%)</title><rect x="99.9454%" y="901" width="0.0439%" height="15" fill="rgb(209,106,27)" fg:x="150176" fg:w="66"/><text x="100.1954%" y="911.50"></text></g><g><title>Unsafe_Park (70 samples, 0.05%)</title><rect x="99.9441%" y="981" width="0.0466%" height="15" fill="rgb(214,220,18)" fg:x="150174" fg:w="70"/><text x="100.1941%" y="991.50"></text></g><g><title>Parker::park (70 samples, 0.05%)</title><rect x="99.9441%" y="965" width="0.0466%" height="15" fill="rgb(237,89,12)" fg:x="150174" fg:w="70"/><text x="100.1941%" y="975.50"></text></g><g><title>[perf-943567.map] (141 samples, 0.09%)</title><rect x="99.9002%" y="997" width="0.0938%" height="15" fill="rgb(209,167,36)" fg:x="150108" fg:w="141"/><text x="100.1502%" y="1007.50"></text></g><g><title>skyframe-invali (152 samples, 0.10%)</title><rect x="99.8982%" y="1013" width="0.1012%" height="15" fill="rgb(243,45,22)" fg:x="150105" fg:w="152"/><text x="100.1482%" y="1023.50"></text></g><g><title>all (150,258 samples, 100%)</title><rect x="0.0000%" y="1029" width="100.0000%" height="15" fill="rgb(239,2,46)" fg:x="0" fg:w="150258"/><text x="0.2500%" y="1039.50"></text></g></svg></svg> +\ No newline at end of file diff --git a/results/llvm-hermetic-j8.svg b/results/llvm-hermetic-j8.svg @@ -0,0 +1,491 @@ +<?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="982" onload="init(evt)" viewBox="0 0 1200 982" 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="982" 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="965.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="965.00"> </text><svg id="frames" x="10" width="1180" total_samples="222780"><g><title>ActionLookupVal (31 samples, 0.01%)</title><rect x="0.0000%" y="917" width="0.0139%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="31"/><text x="0.2500%" y="927.50"></text></g><g><title>_dl_update_slotinfo (117 samples, 0.05%)</title><rect x="0.4345%" y="885" width="0.0525%" height="15" fill="rgb(217,0,24)" fg:x="968" fg:w="117"/><text x="0.6845%" y="895.50"></text></g><g><title>resource_allocate_bytes (32 samples, 0.01%)</title><rect x="0.5539%" y="885" width="0.0144%" height="15" fill="rgb(221,193,54)" fg:x="1234" fg:w="32"/><text x="0.8039%" y="895.50"></text></g><g><title>update_get_addr (35 samples, 0.02%)</title><rect x="0.5759%" y="885" width="0.0157%" height="15" fill="rgb(248,212,6)" fg:x="1283" fg:w="35"/><text x="0.8259%" y="895.50"></text></g><g><title>[anon] (1,251 samples, 0.56%)</title><rect x="0.0305%" y="901" width="0.5615%" height="15" fill="rgb(208,68,35)" fg:x="68" fg:w="1251"/><text x="0.2805%" y="911.50"></text></g><g><title>[perf-945576.map] (152 samples, 0.07%)</title><rect x="0.5934%" y="901" width="0.0682%" height="15" fill="rgb(232,128,0)" fg:x="1322" fg:w="152"/><text x="0.8434%" y="911.50"></text></g><g><title>_dl_update_slotinfo (35 samples, 0.02%)</title><rect x="0.6895%" y="885" width="0.0157%" height="15" fill="rgb(207,160,47)" fg:x="1536" fg:w="35"/><text x="0.9395%" y="895.50"></text></g><g><title>[unknown] (113 samples, 0.05%)</title><rect x="0.6616%" y="901" width="0.0507%" height="15" fill="rgb(228,23,34)" fg:x="1474" fg:w="113"/><text x="0.9116%" y="911.50"></text></g><g><title>jio_vsnprintf (51 samples, 0.02%)</title><rect x="0.7366%" y="757" width="0.0229%" height="15" fill="rgb(218,30,26)" fg:x="1641" fg:w="51"/><text x="0.9866%" y="767.50"></text></g><g><title>os::vsnprintf (50 samples, 0.02%)</title><rect x="0.7371%" y="741" width="0.0224%" height="15" fill="rgb(220,122,19)" fg:x="1642" fg:w="50"/><text x="0.9871%" y="751.50"></text></g><g><title>__vsnprintf_internal (50 samples, 0.02%)</title><rect x="0.7371%" y="725" width="0.0224%" height="15" fill="rgb(250,228,42)" fg:x="1642" fg:w="50"/><text x="0.9871%" y="735.50"></text></g><g><title>__vfprintf_internal (47 samples, 0.02%)</title><rect x="0.7384%" y="709" width="0.0211%" height="15" fill="rgb(240,193,28)" fg:x="1645" fg:w="47"/><text x="0.9884%" y="719.50"></text></g><g><title>CompileBroker::post_compile (56 samples, 0.03%)</title><rect x="0.7353%" y="789" width="0.0251%" height="15" fill="rgb(216,20,37)" fg:x="1638" fg:w="56"/><text x="0.9853%" y="799.50"></text></g><g><title>StringEventLog::log (56 samples, 0.03%)</title><rect x="0.7353%" y="773" width="0.0251%" height="15" fill="rgb(206,188,39)" fg:x="1638" fg:w="56"/><text x="0.9853%" y="783.50"></text></g><g><title>Symbol::print_symbol_on (27 samples, 0.01%)</title><rect x="0.7783%" y="757" width="0.0121%" height="15" fill="rgb(217,207,13)" fg:x="1734" fg:w="27"/><text x="1.0283%" y="767.50"></text></g><g><title>Method::print_short_name (57 samples, 0.03%)</title><rect x="0.7707%" y="773" width="0.0256%" height="15" fill="rgb(231,73,38)" fg:x="1717" fg:w="57"/><text x="1.0207%" y="783.50"></text></g><g><title>os::vsnprintf (43 samples, 0.02%)</title><rect x="0.8030%" y="741" width="0.0193%" height="15" fill="rgb(225,20,46)" fg:x="1789" fg:w="43"/><text x="1.0530%" y="751.50"></text></g><g><title>__vsnprintf_internal (43 samples, 0.02%)</title><rect x="0.8030%" y="725" width="0.0193%" height="15" fill="rgb(210,31,41)" fg:x="1789" fg:w="43"/><text x="1.0530%" y="735.50"></text></g><g><title>__vfprintf_internal (32 samples, 0.01%)</title><rect x="0.8080%" y="709" width="0.0144%" height="15" fill="rgb(221,200,47)" fg:x="1800" fg:w="32"/><text x="1.0580%" y="719.50"></text></g><g><title>CompileTask::print (124 samples, 0.06%)</title><rect x="0.7703%" y="789" width="0.0557%" height="15" fill="rgb(226,26,5)" fg:x="1716" fg:w="124"/><text x="1.0203%" y="799.50"></text></g><g><title>outputStream::print (66 samples, 0.03%)</title><rect x="0.7963%" y="773" width="0.0296%" height="15" fill="rgb(249,33,26)" fg:x="1774" fg:w="66"/><text x="1.0463%" y="783.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (65 samples, 0.03%)</title><rect x="0.7968%" y="757" width="0.0292%" height="15" fill="rgb(235,183,28)" fg:x="1775" fg:w="65"/><text x="1.0468%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (26 samples, 0.01%)</title><rect x="0.8843%" y="613" width="0.0117%" height="15" fill="rgb(221,5,38)" fg:x="1970" fg:w="26"/><text x="1.1343%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (37 samples, 0.02%)</title><rect x="0.8838%" y="629" width="0.0166%" height="15" fill="rgb(247,18,42)" fg:x="1969" fg:w="37"/><text x="1.1338%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (59 samples, 0.03%)</title><rect x="0.8825%" y="645" width="0.0265%" height="15" fill="rgb(241,131,45)" fg:x="1966" fg:w="59"/><text x="1.1325%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (97 samples, 0.04%)</title><rect x="0.8811%" y="661" width="0.0435%" height="15" fill="rgb(249,31,29)" fg:x="1963" fg:w="97"/><text x="1.1311%" y="671.50"></text></g><g><title>SubstitutionResolver::block_do (35 samples, 0.02%)</title><rect x="0.9090%" y="645" width="0.0157%" height="15" fill="rgb(225,111,53)" fg:x="2025" fg:w="35"/><text x="1.1590%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (156 samples, 0.07%)</title><rect x="0.8798%" y="677" width="0.0700%" height="15" fill="rgb(238,160,17)" fg:x="1960" fg:w="156"/><text x="1.1298%" y="687.50"></text></g><g><title>SubstitutionResolver::block_do (56 samples, 0.03%)</title><rect x="0.9247%" y="661" width="0.0251%" height="15" fill="rgb(214,148,48)" fg:x="2060" fg:w="56"/><text x="1.1747%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (161 samples, 0.07%)</title><rect x="0.8784%" y="693" width="0.0723%" height="15" fill="rgb(232,36,49)" fg:x="1957" fg:w="161"/><text x="1.1284%" y="703.50"></text></g><g><title>ValueMap::ValueMap (35 samples, 0.02%)</title><rect x="0.9521%" y="693" width="0.0157%" height="15" fill="rgb(209,103,24)" fg:x="2121" fg:w="35"/><text x="1.2021%" y="703.50"></text></g><g><title>ValueMap::find_insert (40 samples, 0.02%)</title><rect x="0.9678%" y="693" width="0.0180%" height="15" fill="rgb(229,88,8)" fg:x="2156" fg:w="40"/><text x="1.2178%" y="703.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (324 samples, 0.15%)</title><rect x="0.8497%" y="709" width="0.1454%" height="15" fill="rgb(213,181,19)" fg:x="1893" fg:w="324"/><text x="1.0997%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (24 samples, 0.01%)</title><rect x="1.0109%" y="613" width="0.0108%" height="15" fill="rgb(254,191,54)" fg:x="2252" fg:w="24"/><text x="1.2609%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (39 samples, 0.02%)</title><rect x="1.0100%" y="629" width="0.0175%" height="15" fill="rgb(241,83,37)" fg:x="2250" fg:w="39"/><text x="1.2600%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (54 samples, 0.02%)</title><rect x="1.0086%" y="645" width="0.0242%" height="15" fill="rgb(233,36,39)" fg:x="2247" fg:w="54"/><text x="1.2586%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (83 samples, 0.04%)</title><rect x="1.0014%" y="677" width="0.0373%" height="15" fill="rgb(226,3,54)" fg:x="2231" fg:w="83"/><text x="1.2514%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (81 samples, 0.04%)</title><rect x="1.0023%" y="661" width="0.0364%" height="15" fill="rgb(245,192,40)" fg:x="2233" fg:w="81"/><text x="1.2523%" y="671.50"></text></g><g><title>MethodLiveness::init_basic_blocks (57 samples, 0.03%)</title><rect x="1.0733%" y="613" width="0.0256%" height="15" fill="rgb(238,167,29)" fg:x="2391" fg:w="57"/><text x="1.3233%" y="623.50"></text></g><g><title>ciMethod::get_method_blocks (25 samples, 0.01%)</title><rect x="1.0876%" y="597" width="0.0112%" height="15" fill="rgb(232,182,51)" fg:x="2423" fg:w="25"/><text x="1.3376%" y="607.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (25 samples, 0.01%)</title><rect x="1.0876%" y="581" width="0.0112%" height="15" fill="rgb(231,60,39)" fg:x="2423" fg:w="25"/><text x="1.3376%" y="591.50"></text></g><g><title>ciMethodBlocks::do_analysis (24 samples, 0.01%)</title><rect x="1.0881%" y="565" width="0.0108%" height="15" fill="rgb(208,69,12)" fg:x="2424" fg:w="24"/><text x="1.3381%" y="575.50"></text></g><g><title>MethodLiveness::compute_liveness (84 samples, 0.04%)</title><rect x="1.0616%" y="629" width="0.0377%" height="15" fill="rgb(235,93,37)" fg:x="2365" fg:w="84"/><text x="1.3116%" y="639.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (126 samples, 0.06%)</title><rect x="1.0432%" y="677" width="0.0566%" height="15" fill="rgb(213,116,39)" fg:x="2324" fg:w="126"/><text x="1.2932%" y="687.50"></text></g><g><title>BlockListBuilder::set_leaders (111 samples, 0.05%)</title><rect x="1.0499%" y="661" width="0.0498%" height="15" fill="rgb(222,207,29)" fg:x="2339" fg:w="111"/><text x="1.2999%" y="671.50"></text></g><g><title>ciMethod::bci_block_start (86 samples, 0.04%)</title><rect x="1.0611%" y="645" width="0.0386%" height="15" fill="rgb(206,96,30)" fg:x="2364" fg:w="86"/><text x="1.3111%" y="655.50"></text></g><g><title>GraphBuilder::connect_to_end (25 samples, 0.01%)</title><rect x="1.1051%" y="661" width="0.0112%" height="15" fill="rgb(218,138,4)" fg:x="2462" fg:w="25"/><text x="1.3551%" y="671.50"></text></g><g><title>BlockBegin::try_merge (38 samples, 0.02%)</title><rect x="1.1392%" y="645" width="0.0171%" height="15" fill="rgb(250,191,14)" fg:x="2538" fg:w="38"/><text x="1.3892%" y="655.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (55 samples, 0.02%)</title><rect x="1.2007%" y="565" width="0.0247%" height="15" fill="rgb(239,60,40)" fg:x="2675" fg:w="55"/><text x="1.4507%" y="575.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (73 samples, 0.03%)</title><rect x="1.1953%" y="581" width="0.0328%" height="15" fill="rgb(206,27,48)" fg:x="2663" fg:w="73"/><text x="1.4453%" y="591.50"></text></g><g><title>ciField::ciField (118 samples, 0.05%)</title><rect x="1.1868%" y="597" width="0.0530%" height="15" fill="rgb(225,35,8)" fg:x="2644" fg:w="118"/><text x="1.4368%" y="607.50"></text></g><g><title>ciEnv::get_field_by_index (132 samples, 0.06%)</title><rect x="1.1828%" y="613" width="0.0593%" height="15" fill="rgb(250,213,24)" fg:x="2635" fg:w="132"/><text x="1.4328%" y="623.50"></text></g><g><title>ciBytecodeStream::get_field (151 samples, 0.07%)</title><rect x="1.1828%" y="629" width="0.0678%" height="15" fill="rgb(247,123,22)" fg:x="2635" fg:w="151"/><text x="1.4328%" y="639.50"></text></g><g><title>GraphBuilder::access_field (217 samples, 0.10%)</title><rect x="1.1603%" y="645" width="0.0974%" height="15" fill="rgb(231,138,38)" fg:x="2585" fg:w="217"/><text x="1.4103%" y="655.50"></text></g><g><title>GraphBuilder::append_with_bci (29 samples, 0.01%)</title><rect x="1.3098%" y="629" width="0.0130%" height="15" fill="rgb(231,145,46)" fg:x="2918" fg:w="29"/><text x="1.5598%" y="639.50"></text></g><g><title>BlockBegin::try_merge (47 samples, 0.02%)</title><rect x="1.3749%" y="565" width="0.0211%" height="15" fill="rgb(251,118,11)" fg:x="3063" fg:w="47"/><text x="1.6249%" y="575.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (36 samples, 0.02%)</title><rect x="1.4297%" y="485" width="0.0162%" height="15" fill="rgb(217,147,25)" fg:x="3185" fg:w="36"/><text x="1.6797%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (45 samples, 0.02%)</title><rect x="1.4274%" y="501" width="0.0202%" height="15" fill="rgb(247,81,37)" fg:x="3180" fg:w="45"/><text x="1.6774%" y="511.50"></text></g><g><title>ciField::ciField (75 samples, 0.03%)</title><rect x="1.4202%" y="517" width="0.0337%" height="15" fill="rgb(209,12,38)" fg:x="3164" fg:w="75"/><text x="1.6702%" y="527.50"></text></g><g><title>ciEnv::get_field_by_index (82 samples, 0.04%)</title><rect x="1.4175%" y="533" width="0.0368%" height="15" fill="rgb(227,1,9)" fg:x="3158" fg:w="82"/><text x="1.6675%" y="543.50"></text></g><g><title>ciBytecodeStream::get_field (90 samples, 0.04%)</title><rect x="1.4171%" y="549" width="0.0404%" height="15" fill="rgb(248,47,43)" fg:x="3157" fg:w="90"/><text x="1.6671%" y="559.50"></text></g><g><title>GraphBuilder::access_field (140 samples, 0.06%)</title><rect x="1.3991%" y="565" width="0.0628%" height="15" fill="rgb(221,10,30)" fg:x="3117" fg:w="140"/><text x="1.6491%" y="575.50"></text></g><g><title>ciField::ciField (30 samples, 0.01%)</title><rect x="1.5329%" y="437" width="0.0135%" height="15" fill="rgb(210,229,1)" fg:x="3415" fg:w="30"/><text x="1.7829%" y="447.50"></text></g><g><title>ciEnv::get_field_by_index (36 samples, 0.02%)</title><rect x="1.5311%" y="453" width="0.0162%" height="15" fill="rgb(222,148,37)" fg:x="3411" fg:w="36"/><text x="1.7811%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (37 samples, 0.02%)</title><rect x="1.5311%" y="469" width="0.0166%" height="15" fill="rgb(234,67,33)" fg:x="3411" fg:w="37"/><text x="1.7811%" y="479.50"></text></g><g><title>GraphBuilder::access_field (53 samples, 0.02%)</title><rect x="1.5262%" y="485" width="0.0238%" height="15" fill="rgb(247,98,35)" fg:x="3400" fg:w="53"/><text x="1.7762%" y="495.50"></text></g><g><title>ciEnv::get_field_by_index (25 samples, 0.01%)</title><rect x="1.5850%" y="373" width="0.0112%" height="15" fill="rgb(247,138,52)" fg:x="3531" fg:w="25"/><text x="1.8350%" y="383.50"></text></g><g><title>ciBytecodeStream::get_field (29 samples, 0.01%)</title><rect x="1.5850%" y="389" width="0.0130%" height="15" fill="rgb(213,79,30)" fg:x="3531" fg:w="29"/><text x="1.8350%" y="399.50"></text></g><g><title>GraphBuilder::access_field (37 samples, 0.02%)</title><rect x="1.5827%" y="405" width="0.0166%" height="15" fill="rgb(246,177,23)" fg:x="3526" fg:w="37"/><text x="1.8327%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (27 samples, 0.01%)</title><rect x="1.6294%" y="293" width="0.0121%" height="15" fill="rgb(230,62,27)" fg:x="3630" fg:w="27"/><text x="1.8794%" y="303.50"></text></g><g><title>GraphBuilder::try_inline (29 samples, 0.01%)</title><rect x="1.6290%" y="309" width="0.0130%" height="15" fill="rgb(216,154,8)" fg:x="3629" fg:w="29"/><text x="1.8790%" y="319.50"></text></g><g><title>GraphBuilder::invoke (49 samples, 0.02%)</title><rect x="1.6263%" y="325" width="0.0220%" height="15" fill="rgb(244,35,45)" fg:x="3623" fg:w="49"/><text x="1.8763%" y="335.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (89 samples, 0.04%)</title><rect x="1.6124%" y="357" width="0.0399%" height="15" fill="rgb(251,115,12)" fg:x="3592" fg:w="89"/><text x="1.8624%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (89 samples, 0.04%)</title><rect x="1.6124%" y="341" width="0.0399%" height="15" fill="rgb(240,54,50)" fg:x="3592" fg:w="89"/><text x="1.8624%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (131 samples, 0.06%)</title><rect x="1.6092%" y="373" width="0.0588%" height="15" fill="rgb(233,84,52)" fg:x="3585" fg:w="131"/><text x="1.8592%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (141 samples, 0.06%)</title><rect x="1.6088%" y="389" width="0.0633%" height="15" fill="rgb(207,117,47)" fg:x="3584" fg:w="141"/><text x="1.8588%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (36 samples, 0.02%)</title><rect x="1.6730%" y="389" width="0.0162%" height="15" fill="rgb(249,43,39)" fg:x="3727" fg:w="36"/><text x="1.9230%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (31 samples, 0.01%)</title><rect x="1.6752%" y="373" width="0.0139%" height="15" fill="rgb(209,38,44)" fg:x="3732" fg:w="31"/><text x="1.9252%" y="383.50"></text></g><g><title>GraphBuilder::invoke (198 samples, 0.09%)</title><rect x="1.6043%" y="405" width="0.0889%" height="15" fill="rgb(236,212,23)" fg:x="3574" fg:w="198"/><text x="1.8543%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (286 samples, 0.13%)</title><rect x="1.5729%" y="437" width="0.1284%" height="15" fill="rgb(242,79,21)" fg:x="3504" fg:w="286"/><text x="1.8229%" y="447.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (286 samples, 0.13%)</title><rect x="1.5729%" y="421" width="0.1284%" height="15" fill="rgb(211,96,35)" fg:x="3504" fg:w="286"/><text x="1.8229%" y="431.50"></text></g><g><title>BlockListBuilder::set_leaders (24 samples, 0.01%)</title><rect x="1.7035%" y="405" width="0.0108%" height="15" fill="rgb(253,215,40)" fg:x="3795" fg:w="24"/><text x="1.9535%" y="415.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (30 samples, 0.01%)</title><rect x="1.7017%" y="421" width="0.0135%" height="15" fill="rgb(211,81,21)" fg:x="3791" fg:w="30"/><text x="1.9517%" y="431.50"></text></g><g><title>GraphBuilder::push_scope (42 samples, 0.02%)</title><rect x="1.7017%" y="437" width="0.0189%" height="15" fill="rgb(208,190,38)" fg:x="3791" fg:w="42"/><text x="1.9517%" y="447.50"></text></g><g><title>ciMethod::ensure_method_data (23 samples, 0.01%)</title><rect x="1.7241%" y="437" width="0.0103%" height="15" fill="rgb(235,213,38)" fg:x="3841" fg:w="23"/><text x="1.9741%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (374 samples, 0.17%)</title><rect x="1.5675%" y="453" width="0.1679%" height="15" fill="rgb(237,122,38)" fg:x="3492" fg:w="374"/><text x="1.8175%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (23 samples, 0.01%)</title><rect x="1.7398%" y="357" width="0.0103%" height="15" fill="rgb(244,218,35)" fg:x="3876" fg:w="23"/><text x="1.9898%" y="367.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (33 samples, 0.01%)</title><rect x="1.7380%" y="405" width="0.0148%" height="15" fill="rgb(240,68,47)" fg:x="3872" fg:w="33"/><text x="1.9880%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (32 samples, 0.01%)</title><rect x="1.7385%" y="389" width="0.0144%" height="15" fill="rgb(210,16,53)" fg:x="3873" fg:w="32"/><text x="1.9885%" y="399.50"></text></g><g><title>GraphBuilder::invoke (29 samples, 0.01%)</title><rect x="1.7398%" y="373" width="0.0130%" height="15" fill="rgb(235,124,12)" fg:x="3876" fg:w="29"/><text x="1.9898%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (35 samples, 0.02%)</title><rect x="1.7380%" y="437" width="0.0157%" height="15" fill="rgb(224,169,11)" fg:x="3872" fg:w="35"/><text x="1.9880%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (35 samples, 0.02%)</title><rect x="1.7380%" y="421" width="0.0157%" height="15" fill="rgb(250,166,2)" fg:x="3872" fg:w="35"/><text x="1.9880%" y="431.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (37 samples, 0.02%)</title><rect x="1.7380%" y="453" width="0.0166%" height="15" fill="rgb(242,216,29)" fg:x="3872" fg:w="37"/><text x="1.9880%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (423 samples, 0.19%)</title><rect x="1.5652%" y="469" width="0.1899%" height="15" fill="rgb(230,116,27)" fg:x="3487" fg:w="423"/><text x="1.8152%" y="479.50"></text></g><g><title>ciEnv::lookup_method (24 samples, 0.01%)</title><rect x="1.7659%" y="437" width="0.0108%" height="15" fill="rgb(228,99,48)" fg:x="3934" fg:w="24"/><text x="2.0159%" y="447.50"></text></g><g><title>ciMethod::ciMethod (41 samples, 0.02%)</title><rect x="1.7793%" y="405" width="0.0184%" height="15" fill="rgb(253,11,6)" fg:x="3964" fg:w="41"/><text x="2.0293%" y="415.50"></text></g><g><title>ciSignature::ciSignature (34 samples, 0.02%)</title><rect x="1.7825%" y="389" width="0.0153%" height="15" fill="rgb(247,143,39)" fg:x="3971" fg:w="34"/><text x="2.0325%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (48 samples, 0.02%)</title><rect x="1.7766%" y="437" width="0.0215%" height="15" fill="rgb(236,97,10)" fg:x="3958" fg:w="48"/><text x="2.0266%" y="447.50"></text></g><g><title>ciObjectFactory::create_new_metadata (44 samples, 0.02%)</title><rect x="1.7784%" y="421" width="0.0198%" height="15" fill="rgb(233,208,19)" fg:x="3962" fg:w="44"/><text x="2.0284%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (88 samples, 0.04%)</title><rect x="1.7591%" y="469" width="0.0395%" height="15" fill="rgb(216,164,2)" fg:x="3919" fg:w="88"/><text x="2.0091%" y="479.50"></text></g><g><title>ciEnv::get_method_by_index_impl (82 samples, 0.04%)</title><rect x="1.7618%" y="453" width="0.0368%" height="15" fill="rgb(220,129,5)" fg:x="3925" fg:w="82"/><text x="2.0118%" y="463.50"></text></g><g><title>GraphBuilder::invoke (543 samples, 0.24%)</title><rect x="1.5594%" y="485" width="0.2437%" height="15" fill="rgb(242,17,10)" fg:x="3474" fg:w="543"/><text x="1.8094%" y="495.50"></text></g><g><title>GraphBuilder::method_return (23 samples, 0.01%)</title><rect x="1.8045%" y="485" width="0.0103%" height="15" fill="rgb(242,107,0)" fg:x="4020" fg:w="23"/><text x="2.0545%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (696 samples, 0.31%)</title><rect x="1.5055%" y="517" width="0.3124%" height="15" fill="rgb(251,28,31)" fg:x="3354" fg:w="696"/><text x="1.7555%" y="527.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (691 samples, 0.31%)</title><rect x="1.5078%" y="501" width="0.3102%" height="15" fill="rgb(233,223,10)" fg:x="3359" fg:w="691"/><text x="1.7578%" y="511.50"></text></g><g><title>MethodLiveness::compute_liveness (24 samples, 0.01%)</title><rect x="1.8274%" y="453" width="0.0108%" height="15" fill="rgb(215,21,27)" fg:x="4071" fg:w="24"/><text x="2.0774%" y="463.50"></text></g><g><title>BlockListBuilder::set_leaders (35 samples, 0.02%)</title><rect x="1.8229%" y="485" width="0.0157%" height="15" fill="rgb(232,23,21)" fg:x="4061" fg:w="35"/><text x="2.0729%" y="495.50"></text></g><g><title>ciMethod::bci_block_start (25 samples, 0.01%)</title><rect x="1.8274%" y="469" width="0.0112%" height="15" fill="rgb(244,5,23)" fg:x="4071" fg:w="25"/><text x="2.0774%" y="479.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (43 samples, 0.02%)</title><rect x="1.8206%" y="501" width="0.0193%" height="15" fill="rgb(226,81,46)" fg:x="4056" fg:w="43"/><text x="2.0706%" y="511.50"></text></g><g><title>GraphBuilder::push_scope (69 samples, 0.03%)</title><rect x="1.8202%" y="517" width="0.0310%" height="15" fill="rgb(247,70,30)" fg:x="4055" fg:w="69"/><text x="2.0702%" y="527.50"></text></g><g><title>ciMethodData::load_data (36 samples, 0.02%)</title><rect x="1.8624%" y="485" width="0.0162%" height="15" fill="rgb(212,68,19)" fg:x="4149" fg:w="36"/><text x="2.1124%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (68 samples, 0.03%)</title><rect x="1.8521%" y="517" width="0.0305%" height="15" fill="rgb(240,187,13)" fg:x="4126" fg:w="68"/><text x="2.1021%" y="527.50"></text></g><g><title>ciMethod::ensure_method_data (65 samples, 0.03%)</title><rect x="1.8534%" y="501" width="0.0292%" height="15" fill="rgb(223,113,26)" fg:x="4129" fg:w="65"/><text x="2.1034%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (860 samples, 0.39%)</title><rect x="1.4974%" y="533" width="0.3860%" height="15" fill="rgb(206,192,2)" fg:x="3336" fg:w="860"/><text x="1.7474%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (25 samples, 0.01%)</title><rect x="1.8871%" y="437" width="0.0112%" height="15" fill="rgb(241,108,4)" fg:x="4204" fg:w="25"/><text x="2.1371%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (33 samples, 0.01%)</title><rect x="1.8853%" y="517" width="0.0148%" height="15" fill="rgb(247,173,49)" fg:x="4200" fg:w="33"/><text x="2.1353%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (33 samples, 0.01%)</title><rect x="1.8853%" y="501" width="0.0148%" height="15" fill="rgb(224,114,35)" fg:x="4200" fg:w="33"/><text x="2.1353%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (32 samples, 0.01%)</title><rect x="1.8857%" y="485" width="0.0144%" height="15" fill="rgb(245,159,27)" fg:x="4201" fg:w="32"/><text x="2.1357%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (32 samples, 0.01%)</title><rect x="1.8857%" y="469" width="0.0144%" height="15" fill="rgb(245,172,44)" fg:x="4201" fg:w="32"/><text x="2.1357%" y="479.50"></text></g><g><title>GraphBuilder::invoke (29 samples, 0.01%)</title><rect x="1.8871%" y="453" width="0.0130%" height="15" fill="rgb(236,23,11)" fg:x="4204" fg:w="29"/><text x="2.1371%" y="463.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (36 samples, 0.02%)</title><rect x="1.8853%" y="533" width="0.0162%" height="15" fill="rgb(205,117,38)" fg:x="4200" fg:w="36"/><text x="2.1353%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (908 samples, 0.41%)</title><rect x="1.4947%" y="549" width="0.4076%" height="15" fill="rgb(237,72,25)" fg:x="3330" fg:w="908"/><text x="1.7447%" y="559.50"></text></g><g><title>ciEnv::lookup_method (45 samples, 0.02%)</title><rect x="1.9279%" y="517" width="0.0202%" height="15" fill="rgb(244,70,9)" fg:x="4295" fg:w="45"/><text x="2.1779%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (26 samples, 0.01%)</title><rect x="1.9719%" y="453" width="0.0117%" height="15" fill="rgb(217,125,39)" fg:x="4393" fg:w="26"/><text x="2.2219%" y="463.50"></text></g><g><title>ciMethod::ciMethod (65 samples, 0.03%)</title><rect x="1.9562%" y="485" width="0.0292%" height="15" fill="rgb(235,36,10)" fg:x="4358" fg:w="65"/><text x="2.2062%" y="495.50"></text></g><g><title>ciSignature::ciSignature (56 samples, 0.03%)</title><rect x="1.9602%" y="469" width="0.0251%" height="15" fill="rgb(251,123,47)" fg:x="4367" fg:w="56"/><text x="2.2102%" y="479.50"></text></g><g><title>ciObjectFactory::get_metadata (85 samples, 0.04%)</title><rect x="1.9481%" y="517" width="0.0382%" height="15" fill="rgb(221,13,13)" fg:x="4340" fg:w="85"/><text x="2.1981%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (70 samples, 0.03%)</title><rect x="1.9548%" y="501" width="0.0314%" height="15" fill="rgb(238,131,9)" fg:x="4355" fg:w="70"/><text x="2.2048%" y="511.50"></text></g><g><title>ciEnv::get_method_by_index_impl (148 samples, 0.07%)</title><rect x="1.9212%" y="533" width="0.0664%" height="15" fill="rgb(211,50,8)" fg:x="4280" fg:w="148"/><text x="2.1712%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (169 samples, 0.08%)</title><rect x="1.9122%" y="549" width="0.0759%" height="15" fill="rgb(245,182,24)" fg:x="4260" fg:w="169"/><text x="2.1622%" y="559.50"></text></g><g><title>ciMethod::find_monomorphic_target (24 samples, 0.01%)</title><rect x="1.9939%" y="549" width="0.0108%" height="15" fill="rgb(242,14,37)" fg:x="4442" fg:w="24"/><text x="2.2439%" y="559.50"></text></g><g><title>GraphBuilder::invoke (1,174 samples, 0.53%)</title><rect x="1.4786%" y="565" width="0.5270%" height="15" fill="rgb(246,228,12)" fg:x="3294" fg:w="1174"/><text x="1.7286%" y="575.50"></text></g><g><title>GraphBuilder::method_return (44 samples, 0.02%)</title><rect x="2.0078%" y="565" width="0.0198%" height="15" fill="rgb(213,55,15)" fg:x="4473" fg:w="44"/><text x="2.2578%" y="575.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,524 samples, 0.68%)</title><rect x="1.3587%" y="597" width="0.6841%" height="15" fill="rgb(209,9,3)" fg:x="3027" fg:w="1524"/><text x="1.6087%" y="607.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,512 samples, 0.68%)</title><rect x="1.3641%" y="581" width="0.6787%" height="15" fill="rgb(230,59,30)" fg:x="3039" fg:w="1512"/><text x="1.6141%" y="591.50"></text></g><g><title>MethodLiveness::init_basic_blocks (41 samples, 0.02%)</title><rect x="2.0733%" y="517" width="0.0184%" height="15" fill="rgb(209,121,21)" fg:x="4619" fg:w="41"/><text x="2.3233%" y="527.50"></text></g><g><title>BlockListBuilder::set_leaders (67 samples, 0.03%)</title><rect x="2.0621%" y="565" width="0.0301%" height="15" fill="rgb(220,109,13)" fg:x="4594" fg:w="67"/><text x="2.3121%" y="575.50"></text></g><g><title>ciMethod::bci_block_start (59 samples, 0.03%)</title><rect x="2.0657%" y="549" width="0.0265%" height="15" fill="rgb(232,18,1)" fg:x="4602" fg:w="59"/><text x="2.3157%" y="559.50"></text></g><g><title>MethodLiveness::compute_liveness (58 samples, 0.03%)</title><rect x="2.0662%" y="533" width="0.0260%" height="15" fill="rgb(215,41,42)" fg:x="4603" fg:w="58"/><text x="2.3162%" y="543.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (91 samples, 0.04%)</title><rect x="2.0527%" y="581" width="0.0408%" height="15" fill="rgb(224,123,36)" fg:x="4573" fg:w="91"/><text x="2.3027%" y="591.50"></text></g><g><title>GraphBuilder::push_scope (149 samples, 0.07%)</title><rect x="2.0491%" y="597" width="0.0669%" height="15" fill="rgb(240,125,3)" fg:x="4565" fg:w="149"/><text x="2.2991%" y="607.50"></text></g><g><title>Method::build_interpreter_method_data (52 samples, 0.02%)</title><rect x="2.1236%" y="565" width="0.0233%" height="15" fill="rgb(205,98,50)" fg:x="4731" fg:w="52"/><text x="2.3736%" y="575.50"></text></g><g><title>MethodData::allocate (52 samples, 0.02%)</title><rect x="2.1236%" y="549" width="0.0233%" height="15" fill="rgb(205,185,37)" fg:x="4731" fg:w="52"/><text x="2.3736%" y="559.50"></text></g><g><title>MethodData::initialize (28 samples, 0.01%)</title><rect x="2.1344%" y="533" width="0.0126%" height="15" fill="rgb(238,207,15)" fg:x="4755" fg:w="28"/><text x="2.3844%" y="543.50"></text></g><g><title>ciMethodData::load_data (57 samples, 0.03%)</title><rect x="2.1488%" y="565" width="0.0256%" height="15" fill="rgb(213,199,42)" fg:x="4787" fg:w="57"/><text x="2.3988%" y="575.50"></text></g><g><title>ciMethod::ensure_method_data (133 samples, 0.06%)</title><rect x="2.1209%" y="597" width="0.0597%" height="15" fill="rgb(235,201,11)" fg:x="4725" fg:w="133"/><text x="2.3709%" y="607.50"></text></g><g><title>ciMethod::ensure_method_data (128 samples, 0.06%)</title><rect x="2.1232%" y="581" width="0.0575%" height="15" fill="rgb(207,46,11)" fg:x="4730" fg:w="128"/><text x="2.3732%" y="591.50"></text></g><g><title>GraphBuilder::try_inline_full (1,896 samples, 0.85%)</title><rect x="1.3354%" y="613" width="0.8511%" height="15" fill="rgb(241,35,35)" fg:x="2975" fg:w="1896"/><text x="1.5854%" y="623.50"></text></g><g><title>GraphBuilder::try_inline (1,916 samples, 0.86%)</title><rect x="1.3300%" y="629" width="0.8600%" height="15" fill="rgb(243,32,47)" fg:x="2963" fg:w="1916"/><text x="1.5800%" y="639.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (25 samples, 0.01%)</title><rect x="2.2219%" y="597" width="0.0112%" height="15" fill="rgb(247,202,23)" fg:x="4950" fg:w="25"/><text x="2.4719%" y="607.50"></text></g><g><title>LinkResolver::resolve_method (33 samples, 0.01%)</title><rect x="2.2367%" y="565" width="0.0148%" height="15" fill="rgb(219,102,11)" fg:x="4983" fg:w="33"/><text x="2.4867%" y="575.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (35 samples, 0.02%)</title><rect x="2.2367%" y="581" width="0.0157%" height="15" fill="rgb(243,110,44)" fg:x="4983" fg:w="35"/><text x="2.4867%" y="591.50"></text></g><g><title>ciEnv::lookup_method (77 samples, 0.03%)</title><rect x="2.2331%" y="597" width="0.0346%" height="15" fill="rgb(222,74,54)" fg:x="4975" fg:w="77"/><text x="2.4831%" y="607.50"></text></g><g><title>SignatureStream::as_symbol (34 samples, 0.02%)</title><rect x="2.2973%" y="533" width="0.0153%" height="15" fill="rgb(216,99,12)" fg:x="5118" fg:w="34"/><text x="2.5473%" y="543.50"></text></g><g><title>SymbolTable::lookup (32 samples, 0.01%)</title><rect x="2.2982%" y="517" width="0.0144%" height="15" fill="rgb(226,22,26)" fg:x="5120" fg:w="32"/><text x="2.5482%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (45 samples, 0.02%)</title><rect x="2.3184%" y="533" width="0.0202%" height="15" fill="rgb(217,163,10)" fg:x="5165" fg:w="45"/><text x="2.5684%" y="543.50"></text></g><g><title>ciMethod::ciMethod (157 samples, 0.07%)</title><rect x="2.2735%" y="565" width="0.0705%" height="15" fill="rgb(213,25,53)" fg:x="5065" fg:w="157"/><text x="2.5235%" y="575.50"></text></g><g><title>ciSignature::ciSignature (125 samples, 0.06%)</title><rect x="2.2879%" y="549" width="0.0561%" height="15" fill="rgb(252,105,26)" fg:x="5097" fg:w="125"/><text x="2.5379%" y="559.50"></text></g><g><title>ciObjectFactory::get_metadata (178 samples, 0.08%)</title><rect x="2.2677%" y="597" width="0.0799%" height="15" fill="rgb(220,39,43)" fg:x="5052" fg:w="178"/><text x="2.5177%" y="607.50"></text></g><g><title>ciObjectFactory::create_new_metadata (171 samples, 0.08%)</title><rect x="2.2709%" y="581" width="0.0768%" height="15" fill="rgb(229,68,48)" fg:x="5059" fg:w="171"/><text x="2.5209%" y="591.50"></text></g><g><title>ciEnv::get_method_by_index_impl (305 samples, 0.14%)</title><rect x="2.2156%" y="613" width="0.1369%" height="15" fill="rgb(252,8,32)" fg:x="4936" fg:w="305"/><text x="2.4656%" y="623.50"></text></g><g><title>ciBytecodeStream::get_method (320 samples, 0.14%)</title><rect x="2.2094%" y="629" width="0.1436%" height="15" fill="rgb(223,20,43)" fg:x="4922" fg:w="320"/><text x="2.4594%" y="639.50"></text></g><g><title>InstanceKlass::find_instance_method (25 samples, 0.01%)</title><rect x="2.3732%" y="565" width="0.0112%" height="15" fill="rgb(229,81,49)" fg:x="5287" fg:w="25"/><text x="2.6232%" y="575.50"></text></g><g><title>InstanceKlass::find_method_index (25 samples, 0.01%)</title><rect x="2.3732%" y="549" width="0.0112%" height="15" fill="rgb(236,28,36)" fg:x="5287" fg:w="25"/><text x="2.6232%" y="559.50"></text></g><g><title>ClassHierarchyWalker::is_witness (30 samples, 0.01%)</title><rect x="2.3723%" y="581" width="0.0135%" height="15" fill="rgb(249,185,26)" fg:x="5285" fg:w="30"/><text x="2.6223%" y="591.50"></text></g><g><title>Dependencies::find_unique_concrete_method (36 samples, 0.02%)</title><rect x="2.3701%" y="613" width="0.0162%" height="15" fill="rgb(249,174,33)" fg:x="5280" fg:w="36"/><text x="2.6201%" y="623.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (36 samples, 0.02%)</title><rect x="2.3701%" y="597" width="0.0162%" height="15" fill="rgb(233,201,37)" fg:x="5280" fg:w="36"/><text x="2.6201%" y="607.50"></text></g><g><title>ciMethod::find_monomorphic_target (47 samples, 0.02%)</title><rect x="2.3696%" y="629" width="0.0211%" height="15" fill="rgb(221,78,26)" fg:x="5279" fg:w="47"/><text x="2.6196%" y="639.50"></text></g><g><title>GraphBuilder::invoke (2,451 samples, 1.10%)</title><rect x="1.2923%" y="645" width="1.1002%" height="15" fill="rgb(250,127,30)" fg:x="2879" fg:w="2451"/><text x="1.5423%" y="655.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,907 samples, 1.30%)</title><rect x="1.1163%" y="661" width="1.3049%" height="15" fill="rgb(230,49,44)" fg:x="2487" fg:w="2907"/><text x="1.3663%" y="671.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,940 samples, 1.32%)</title><rect x="1.1042%" y="677" width="1.3197%" height="15" fill="rgb(229,67,23)" fg:x="2460" fg:w="2940"/><text x="1.3542%" y="687.50"></text></g><g><title>GraphBuilder::setup_start_block (33 samples, 0.01%)</title><rect x="2.4253%" y="677" width="0.0148%" height="15" fill="rgb(249,83,47)" fg:x="5403" fg:w="33"/><text x="2.6753%" y="687.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,226 samples, 1.45%)</title><rect x="0.9983%" y="693" width="1.4481%" height="15" fill="rgb(215,43,3)" fg:x="2224" fg:w="3226"/><text x="1.2483%" y="703.50"></text></g><g><title>IR::IR (3,249 samples, 1.46%)</title><rect x="0.9952%" y="709" width="1.4584%" height="15" fill="rgb(238,154,13)" fg:x="2217" fg:w="3249"/><text x="1.2452%" y="719.50"></text></g><g><title>ComputeLinearScanOrder::compute_order (26 samples, 0.01%)</title><rect x="2.4598%" y="677" width="0.0117%" height="15" fill="rgb(219,56,2)" fg:x="5480" fg:w="26"/><text x="2.7098%" y="687.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (57 samples, 0.03%)</title><rect x="2.4535%" y="693" width="0.0256%" height="15" fill="rgb(233,0,4)" fg:x="5466" fg:w="57"/><text x="2.7035%" y="703.50"></text></g><g><title>IR::compute_code (61 samples, 0.03%)</title><rect x="2.4535%" y="709" width="0.0274%" height="15" fill="rgb(235,30,7)" fg:x="5466" fg:w="61"/><text x="2.7035%" y="719.50"></text></g><g><title>UseCountComputer::block_do (75 samples, 0.03%)</title><rect x="2.4859%" y="677" width="0.0337%" height="15" fill="rgb(250,79,13)" fg:x="5538" fg:w="75"/><text x="2.7359%" y="687.50"></text></g><g><title>ValueStack::values_do (36 samples, 0.02%)</title><rect x="2.5034%" y="661" width="0.0162%" height="15" fill="rgb(211,146,34)" fg:x="5577" fg:w="36"/><text x="2.7534%" y="671.50"></text></g><g><title>BlockList::iterate_backward (82 samples, 0.04%)</title><rect x="2.4836%" y="693" width="0.0368%" height="15" fill="rgb(228,22,38)" fg:x="5533" fg:w="82"/><text x="2.7336%" y="703.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (27 samples, 0.01%)</title><rect x="2.5204%" y="693" width="0.0121%" height="15" fill="rgb(235,168,5)" fg:x="5615" fg:w="27"/><text x="2.7704%" y="703.50"></text></g><g><title>IR::compute_use_counts (116 samples, 0.05%)</title><rect x="2.4809%" y="709" width="0.0521%" height="15" fill="rgb(221,155,16)" fg:x="5527" fg:w="116"/><text x="2.7309%" y="719.50"></text></g><g><title>NullCheckEliminator::merge_state_for (23 samples, 0.01%)</title><rect x="2.5927%" y="661" width="0.0103%" height="15" fill="rgb(215,215,53)" fg:x="5776" fg:w="23"/><text x="2.8427%" y="671.50"></text></g><g><title>NullCheckEliminator::iterate_one (148 samples, 0.07%)</title><rect x="2.5424%" y="677" width="0.0664%" height="15" fill="rgb(223,4,10)" fg:x="5664" fg:w="148"/><text x="2.7924%" y="687.50"></text></g><g><title>IR::eliminate_null_checks (181 samples, 0.08%)</title><rect x="2.5330%" y="709" width="0.0812%" height="15" fill="rgb(234,103,6)" fg:x="5643" fg:w="181"/><text x="2.7830%" y="719.50"></text></g><g><title>Optimizer::eliminate_null_checks (181 samples, 0.08%)</title><rect x="2.5330%" y="693" width="0.0812%" height="15" fill="rgb(227,97,0)" fg:x="5643" fg:w="181"/><text x="2.7830%" y="703.50"></text></g><g><title>IR::optimize_blocks (51 samples, 0.02%)</title><rect x="2.6142%" y="709" width="0.0229%" height="15" fill="rgb(234,150,53)" fg:x="5824" fg:w="51"/><text x="2.8642%" y="719.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (35 samples, 0.02%)</title><rect x="2.6214%" y="693" width="0.0157%" height="15" fill="rgb(228,201,54)" fg:x="5840" fg:w="35"/><text x="2.8714%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (35 samples, 0.02%)</title><rect x="2.6214%" y="677" width="0.0157%" height="15" fill="rgb(222,22,37)" fg:x="5840" fg:w="35"/><text x="2.8714%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (35 samples, 0.02%)</title><rect x="2.6214%" y="661" width="0.0157%" height="15" fill="rgb(237,53,32)" fg:x="5840" fg:w="35"/><text x="2.8714%" y="671.50"></text></g><g><title>BlockBegin::insert_block_between (27 samples, 0.01%)</title><rect x="2.6385%" y="693" width="0.0121%" height="15" fill="rgb(233,25,53)" fg:x="5878" fg:w="27"/><text x="2.8885%" y="703.50"></text></g><g><title>IR::split_critical_edges (48 samples, 0.02%)</title><rect x="2.6371%" y="709" width="0.0215%" height="15" fill="rgb(210,40,34)" fg:x="5875" fg:w="48"/><text x="2.8871%" y="719.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (23 samples, 0.01%)</title><rect x="2.6654%" y="677" width="0.0103%" height="15" fill="rgb(241,220,44)" fg:x="5938" fg:w="23"/><text x="2.9154%" y="687.50"></text></g><g><title>RangeCheckElimination::eliminate (40 samples, 0.02%)</title><rect x="2.6587%" y="709" width="0.0180%" height="15" fill="rgb(235,28,35)" fg:x="5923" fg:w="40"/><text x="2.9087%" y="719.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (25 samples, 0.01%)</title><rect x="2.6654%" y="693" width="0.0112%" height="15" fill="rgb(210,56,17)" fg:x="5938" fg:w="25"/><text x="2.9154%" y="703.50"></text></g><g><title>Compilation::build_hir (4,081 samples, 1.83%)</title><rect x="0.8461%" y="725" width="1.8319%" height="15" fill="rgb(224,130,29)" fg:x="1885" fg:w="4081"/><text x="1.0961%" y="735.50">C..</text></g><g><title>CodeEmitInfo::record_debug_info (26 samples, 0.01%)</title><rect x="2.7305%" y="661" width="0.0117%" height="15" fill="rgb(235,212,8)" fg:x="6083" fg:w="26"/><text x="2.9805%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (27 samples, 0.01%)</title><rect x="2.7305%" y="677" width="0.0121%" height="15" fill="rgb(223,33,50)" fg:x="6083" fg:w="27"/><text x="2.9805%" y="687.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (23 samples, 0.01%)</title><rect x="2.7547%" y="613" width="0.0103%" height="15" fill="rgb(219,149,13)" fg:x="6137" fg:w="23"/><text x="3.0047%" y="623.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (38 samples, 0.02%)</title><rect x="2.7502%" y="629" width="0.0171%" height="15" fill="rgb(250,156,29)" fg:x="6127" fg:w="38"/><text x="3.0002%" y="639.50"></text></g><g><title>DebugInformationRecorder::describe_scope (26 samples, 0.01%)</title><rect x="2.7673%" y="629" width="0.0117%" height="15" fill="rgb(216,193,19)" fg:x="6165" fg:w="26"/><text x="3.0173%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (83 samples, 0.04%)</title><rect x="2.7467%" y="661" width="0.0373%" height="15" fill="rgb(216,135,14)" fg:x="6119" fg:w="83"/><text x="2.9967%" y="671.50"></text></g><g><title>CodeEmitInfo::record_debug_info (82 samples, 0.04%)</title><rect x="2.7471%" y="645" width="0.0368%" height="15" fill="rgb(241,47,5)" fg:x="6120" fg:w="82"/><text x="2.9971%" y="655.50"></text></g><g><title>LIR_Assembler::call (96 samples, 0.04%)</title><rect x="2.7431%" y="677" width="0.0431%" height="15" fill="rgb(233,42,35)" fg:x="6111" fg:w="96"/><text x="2.9931%" y="687.50"></text></g><g><title>LIR_Assembler::emit_static_call_stub (23 samples, 0.01%)</title><rect x="2.7862%" y="677" width="0.0103%" height="15" fill="rgb(231,13,6)" fg:x="6207" fg:w="23"/><text x="3.0362%" y="687.50"></text></g><g><title>LIR_Assembler::emit_call (165 samples, 0.07%)</title><rect x="2.7256%" y="693" width="0.0741%" height="15" fill="rgb(207,181,40)" fg:x="6072" fg:w="165"/><text x="2.9756%" y="703.50"></text></g><g><title>LIR_Assembler::emit_op0 (33 samples, 0.01%)</title><rect x="2.7996%" y="693" width="0.0148%" height="15" fill="rgb(254,173,49)" fg:x="6237" fg:w="33"/><text x="3.0496%" y="703.50"></text></g><g><title>LIR_Assembler::mem2reg (42 samples, 0.02%)</title><rect x="2.8315%" y="677" width="0.0189%" height="15" fill="rgb(221,1,38)" fg:x="6308" fg:w="42"/><text x="3.0815%" y="687.50"></text></g><g><title>LIR_Assembler::reg2mem (23 samples, 0.01%)</title><rect x="2.8571%" y="677" width="0.0103%" height="15" fill="rgb(206,124,46)" fg:x="6365" fg:w="23"/><text x="3.1071%" y="687.50"></text></g><g><title>LIR_Assembler::emit_op1 (149 samples, 0.07%)</title><rect x="2.8144%" y="693" width="0.0669%" height="15" fill="rgb(249,21,11)" fg:x="6270" fg:w="149"/><text x="3.0644%" y="703.50"></text></g><g><title>LIR_Assembler::emit_profile_call (51 samples, 0.02%)</title><rect x="2.8894%" y="693" width="0.0229%" height="15" fill="rgb(222,201,40)" fg:x="6437" fg:w="51"/><text x="3.1394%" y="703.50"></text></g><g><title>LIR_Assembler::emit_typecheck_helper (23 samples, 0.01%)</title><rect x="2.9442%" y="661" width="0.0103%" height="15" fill="rgb(235,61,29)" fg:x="6559" fg:w="23"/><text x="3.1942%" y="671.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (36 samples, 0.02%)</title><rect x="2.9428%" y="693" width="0.0162%" height="15" fill="rgb(219,207,3)" fg:x="6556" fg:w="36"/><text x="3.1928%" y="703.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (36 samples, 0.02%)</title><rect x="2.9428%" y="677" width="0.0162%" height="15" fill="rgb(222,56,46)" fg:x="6556" fg:w="36"/><text x="3.1928%" y="687.50"></text></g><g><title>LIR_Assembler::emit_code (611 samples, 0.27%)</title><rect x="2.6896%" y="709" width="0.2743%" height="15" fill="rgb(239,76,54)" fg:x="5992" fg:w="611"/><text x="2.9396%" y="719.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (38 samples, 0.02%)</title><rect x="2.9711%" y="709" width="0.0171%" height="15" fill="rgb(231,124,27)" fg:x="6619" fg:w="38"/><text x="3.2211%" y="719.50"></text></g><g><title>MacroAssembler::stop (34 samples, 0.02%)</title><rect x="2.9729%" y="693" width="0.0153%" height="15" fill="rgb(249,195,6)" fg:x="6623" fg:w="34"/><text x="3.2229%" y="703.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (25 samples, 0.01%)</title><rect x="3.0070%" y="629" width="0.0112%" height="15" fill="rgb(237,174,47)" fg:x="6699" fg:w="25"/><text x="3.2570%" y="639.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (41 samples, 0.02%)</title><rect x="3.0030%" y="645" width="0.0184%" height="15" fill="rgb(206,201,31)" fg:x="6690" fg:w="41"/><text x="3.2530%" y="655.50"></text></g><g><title>DebugInformationRecorder::describe_scope (32 samples, 0.01%)</title><rect x="3.0214%" y="645" width="0.0144%" height="15" fill="rgb(231,57,52)" fg:x="6731" fg:w="32"/><text x="3.2714%" y="655.50"></text></g><g><title>LIR_Assembler::add_call_info (103 samples, 0.05%)</title><rect x="2.9980%" y="677" width="0.0462%" height="15" fill="rgb(248,177,22)" fg:x="6679" fg:w="103"/><text x="3.2480%" y="687.50"></text></g><g><title>CodeEmitInfo::record_debug_info (103 samples, 0.05%)</title><rect x="2.9980%" y="661" width="0.0462%" height="15" fill="rgb(215,211,37)" fg:x="6679" fg:w="103"/><text x="3.2480%" y="671.50"></text></g><g><title>CounterOverflowStub::emit_code (137 samples, 0.06%)</title><rect x="2.9935%" y="693" width="0.0615%" height="15" fill="rgb(241,128,51)" fg:x="6669" fg:w="137"/><text x="3.2435%" y="703.50"></text></g><g><title>DebugInformationRecorder::describe_scope (23 samples, 0.01%)</title><rect x="3.0694%" y="645" width="0.0103%" height="15" fill="rgb(227,165,31)" fg:x="6838" fg:w="23"/><text x="3.3194%" y="655.50"></text></g><g><title>LIR_Assembler::add_call_info (46 samples, 0.02%)</title><rect x="3.0636%" y="677" width="0.0206%" height="15" fill="rgb(228,167,24)" fg:x="6825" fg:w="46"/><text x="3.3136%" y="687.50"></text></g><g><title>CodeEmitInfo::record_debug_info (43 samples, 0.02%)</title><rect x="3.0649%" y="661" width="0.0193%" height="15" fill="rgb(228,143,12)" fg:x="6828" fg:w="43"/><text x="3.3149%" y="671.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (58 samples, 0.03%)</title><rect x="3.0609%" y="693" width="0.0260%" height="15" fill="rgb(249,149,8)" fg:x="6819" fg:w="58"/><text x="3.3109%" y="703.50"></text></g><g><title>NewInstanceStub::emit_code (30 samples, 0.01%)</title><rect x="3.0878%" y="693" width="0.0135%" height="15" fill="rgb(243,35,44)" fg:x="6879" fg:w="30"/><text x="3.3378%" y="703.50"></text></g><g><title>LIR_Assembler::add_call_info (25 samples, 0.01%)</title><rect x="3.0900%" y="677" width="0.0112%" height="15" fill="rgb(246,89,9)" fg:x="6884" fg:w="25"/><text x="3.3400%" y="687.50"></text></g><g><title>CodeEmitInfo::record_debug_info (23 samples, 0.01%)</title><rect x="3.0909%" y="661" width="0.0103%" height="15" fill="rgb(233,213,13)" fg:x="6886" fg:w="23"/><text x="3.3409%" y="671.50"></text></g><g><title>PatchingStub::emit_code (28 samples, 0.01%)</title><rect x="3.1049%" y="693" width="0.0126%" height="15" fill="rgb(233,141,41)" fg:x="6917" fg:w="28"/><text x="3.3549%" y="703.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (313 samples, 0.14%)</title><rect x="2.9881%" y="709" width="0.1405%" height="15" fill="rgb(239,167,4)" fg:x="6657" fg:w="313"/><text x="3.2381%" y="719.50"></text></g><g><title>Compilation::emit_code_body (1,029 samples, 0.46%)</title><rect x="2.6780%" y="725" width="0.4619%" height="15" fill="rgb(209,217,16)" fg:x="5966" fg:w="1029"/><text x="2.9280%" y="735.50"></text></g><g><title>LIRGenerator::block_do_prolog (25 samples, 0.01%)</title><rect x="3.1533%" y="677" width="0.0112%" height="15" fill="rgb(219,88,35)" fg:x="7025" fg:w="25"/><text x="3.4033%" y="687.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (24 samples, 0.01%)</title><rect x="3.1901%" y="645" width="0.0108%" height="15" fill="rgb(220,193,23)" fg:x="7107" fg:w="24"/><text x="3.4401%" y="655.50"></text></g><g><title>LIRGenerator::increment_event_counter (32 samples, 0.01%)</title><rect x="3.1901%" y="661" width="0.0144%" height="15" fill="rgb(230,90,52)" fg:x="7107" fg:w="32"/><text x="3.4401%" y="671.50"></text></g><g><title>LIRGenerator::do_Base (98 samples, 0.04%)</title><rect x="3.1681%" y="677" width="0.0440%" height="15" fill="rgb(252,106,19)" fg:x="7058" fg:w="98"/><text x="3.4181%" y="687.50"></text></g><g><title>LIRGenerator::move_to_phi (49 samples, 0.02%)</title><rect x="3.2261%" y="645" width="0.0220%" height="15" fill="rgb(206,74,20)" fg:x="7187" fg:w="49"/><text x="3.4761%" y="655.50"></text></g><g><title>PhiResolver::create_node (43 samples, 0.02%)</title><rect x="3.2287%" y="629" width="0.0193%" height="15" fill="rgb(230,138,44)" fg:x="7193" fg:w="43"/><text x="3.4787%" y="639.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (28 samples, 0.01%)</title><rect x="3.2938%" y="629" width="0.0126%" height="15" fill="rgb(235,182,43)" fg:x="7338" fg:w="28"/><text x="3.5438%" y="639.50"></text></g><g><title>LIRGenerator::move_to_phi (193 samples, 0.09%)</title><rect x="3.2202%" y="661" width="0.0866%" height="15" fill="rgb(242,16,51)" fg:x="7174" fg:w="193"/><text x="3.4702%" y="671.50"></text></g><g><title>PhiResolverState::reset (129 samples, 0.06%)</title><rect x="3.2489%" y="645" width="0.0579%" height="15" fill="rgb(248,9,4)" fg:x="7238" fg:w="129"/><text x="3.4989%" y="655.50"></text></g><g><title>LIRGenerator::do_Goto (214 samples, 0.10%)</title><rect x="3.2157%" y="677" width="0.0961%" height="15" fill="rgb(210,31,22)" fg:x="7164" fg:w="214"/><text x="3.4657%" y="687.50"></text></g><g><title>LIRGenerator::profile_branch (29 samples, 0.01%)</title><rect x="3.3217%" y="661" width="0.0130%" height="15" fill="rgb(239,54,39)" fg:x="7400" fg:w="29"/><text x="3.5717%" y="671.50"></text></g><g><title>LIRGenerator::do_If (63 samples, 0.03%)</title><rect x="3.3118%" y="677" width="0.0283%" height="15" fill="rgb(230,99,41)" fg:x="7378" fg:w="63"/><text x="3.5618%" y="687.50"></text></g><g><title>FrameMap::java_calling_convention (27 samples, 0.01%)</title><rect x="3.3441%" y="661" width="0.0121%" height="15" fill="rgb(253,106,12)" fg:x="7450" fg:w="27"/><text x="3.5941%" y="671.50"></text></g><g><title>MethodLiveness::get_liveness_at (28 samples, 0.01%)</title><rect x="3.3800%" y="629" width="0.0126%" height="15" fill="rgb(213,46,41)" fg:x="7530" fg:w="28"/><text x="3.6300%" y="639.50"></text></g><g><title>LIRGenerator::state_for (43 samples, 0.02%)</title><rect x="3.3737%" y="661" width="0.0193%" height="15" fill="rgb(215,133,35)" fg:x="7516" fg:w="43"/><text x="3.6237%" y="671.50"></text></g><g><title>ciMethod::liveness_at_bci (32 samples, 0.01%)</title><rect x="3.3787%" y="645" width="0.0144%" height="15" fill="rgb(213,28,5)" fg:x="7527" fg:w="32"/><text x="3.6287%" y="655.50"></text></g><g><title>LIRGenerator::do_Invoke (122 samples, 0.05%)</title><rect x="3.3423%" y="677" width="0.0548%" height="15" fill="rgb(215,77,49)" fg:x="7446" fg:w="122"/><text x="3.5923%" y="687.50"></text></g><g><title>LIRGenerator::access_load_at (24 samples, 0.01%)</title><rect x="3.4002%" y="661" width="0.0108%" height="15" fill="rgb(248,100,22)" fg:x="7575" fg:w="24"/><text x="3.6502%" y="671.50"></text></g><g><title>LIRGenerator::do_LoadField (43 samples, 0.02%)</title><rect x="3.3971%" y="677" width="0.0193%" height="15" fill="rgb(208,67,9)" fg:x="7568" fg:w="43"/><text x="3.6471%" y="687.50"></text></g><g><title>LIRGenerator::do_ProfileCall (27 samples, 0.01%)</title><rect x="3.4330%" y="677" width="0.0121%" height="15" fill="rgb(219,133,21)" fg:x="7648" fg:w="27"/><text x="3.6830%" y="687.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (44 samples, 0.02%)</title><rect x="3.4451%" y="661" width="0.0198%" height="15" fill="rgb(246,46,29)" fg:x="7675" fg:w="44"/><text x="3.6951%" y="671.50"></text></g><g><title>LIRGenerator::state_for (39 samples, 0.02%)</title><rect x="3.4649%" y="661" width="0.0175%" height="15" fill="rgb(246,185,52)" fg:x="7719" fg:w="39"/><text x="3.7149%" y="671.50"></text></g><g><title>ciMethod::liveness_at_bci (27 samples, 0.01%)</title><rect x="3.4702%" y="645" width="0.0121%" height="15" fill="rgb(252,136,11)" fg:x="7731" fg:w="27"/><text x="3.7202%" y="655.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (90 samples, 0.04%)</title><rect x="3.4451%" y="677" width="0.0404%" height="15" fill="rgb(219,138,53)" fg:x="7675" fg:w="90"/><text x="3.6951%" y="687.50"></text></g><g><title>LIRGenerator::access_store_at (25 samples, 0.01%)</title><rect x="3.4895%" y="661" width="0.0112%" height="15" fill="rgb(211,51,23)" fg:x="7774" fg:w="25"/><text x="3.7395%" y="671.50"></text></g><g><title>LIRGenerator::do_StoreField (30 samples, 0.01%)</title><rect x="3.4886%" y="677" width="0.0135%" height="15" fill="rgb(247,221,28)" fg:x="7772" fg:w="30"/><text x="3.7386%" y="687.50"></text></g><g><title>LIRGenerator::block_do (825 samples, 0.37%)</title><rect x="3.1430%" y="693" width="0.3703%" height="15" fill="rgb(251,222,45)" fg:x="7002" fg:w="825"/><text x="3.3930%" y="703.50"></text></g><g><title>BlockList::iterate_forward (829 samples, 0.37%)</title><rect x="3.1417%" y="709" width="0.3721%" height="15" fill="rgb(217,162,53)" fg:x="6999" fg:w="829"/><text x="3.3917%" y="719.50"></text></g><g><title>ControlFlowOptimizer::optimize (32 samples, 0.01%)</title><rect x="3.5138%" y="709" width="0.0144%" height="15" fill="rgb(229,93,14)" fg:x="7828" fg:w="32"/><text x="3.7638%" y="719.50"></text></g><g><title>EdgeMoveOptimizer::optimize (27 samples, 0.01%)</title><rect x="3.5326%" y="693" width="0.0121%" height="15" fill="rgb(209,67,49)" fg:x="7870" fg:w="27"/><text x="3.7826%" y="703.50"></text></g><g><title>IntervalWalker::walk_to (124 samples, 0.06%)</title><rect x="3.5766%" y="661" width="0.0557%" height="15" fill="rgb(213,87,29)" fg:x="7968" fg:w="124"/><text x="3.8266%" y="671.50"></text></g><g><title>LinearScanWalker::find_free_reg (101 samples, 0.05%)</title><rect x="3.6799%" y="629" width="0.0453%" height="15" fill="rgb(205,151,52)" fg:x="8198" fg:w="101"/><text x="3.9299%" y="639.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (129 samples, 0.06%)</title><rect x="3.7328%" y="629" width="0.0579%" height="15" fill="rgb(253,215,39)" fg:x="8316" fg:w="129"/><text x="3.9828%" y="639.50"></text></g><g><title>Interval::new_split_child (30 samples, 0.01%)</title><rect x="3.8024%" y="597" width="0.0135%" height="15" fill="rgb(221,220,41)" fg:x="8471" fg:w="30"/><text x="4.0524%" y="607.50"></text></g><g><title>Interval::split (48 samples, 0.02%)</title><rect x="3.7966%" y="613" width="0.0215%" height="15" fill="rgb(218,133,21)" fg:x="8458" fg:w="48"/><text x="4.0466%" y="623.50"></text></g><g><title>LinearScanWalker::split_before_usage (69 samples, 0.03%)</title><rect x="3.7907%" y="629" width="0.0310%" height="15" fill="rgb(221,193,43)" fg:x="8445" fg:w="69"/><text x="4.0407%" y="639.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (401 samples, 0.18%)</title><rect x="3.6444%" y="645" width="0.1800%" height="15" fill="rgb(240,128,52)" fg:x="8119" fg:w="401"/><text x="3.8944%" y="655.50"></text></g><g><title>IntervalWalker::append_to_unhandled (24 samples, 0.01%)</title><rect x="3.8513%" y="613" width="0.0108%" height="15" fill="rgb(253,114,12)" fg:x="8580" fg:w="24"/><text x="4.1013%" y="623.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (48 samples, 0.02%)</title><rect x="3.8509%" y="629" width="0.0215%" height="15" fill="rgb(215,223,47)" fg:x="8579" fg:w="48"/><text x="4.1009%" y="639.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (138 samples, 0.06%)</title><rect x="3.8244%" y="645" width="0.0619%" height="15" fill="rgb(248,225,23)" fg:x="8520" fg:w="138"/><text x="4.0744%" y="655.50"></text></g><g><title>LinearScanWalker::split_for_spilling (31 samples, 0.01%)</title><rect x="3.8724%" y="629" width="0.0139%" height="15" fill="rgb(250,108,0)" fg:x="8627" fg:w="31"/><text x="4.1224%" y="639.50"></text></g><g><title>Interval::split_child_before_op_id (26 samples, 0.01%)</title><rect x="3.8747%" y="613" width="0.0117%" height="15" fill="rgb(228,208,7)" fg:x="8632" fg:w="26"/><text x="4.1247%" y="623.50"></text></g><g><title>LinearScanWalker::init_vars_for_alloc (23 samples, 0.01%)</title><rect x="3.8917%" y="645" width="0.0103%" height="15" fill="rgb(244,45,10)" fg:x="8670" fg:w="23"/><text x="4.1417%" y="655.50"></text></g><g><title>LinearScanWalker::insert_move (30 samples, 0.01%)</title><rect x="3.9021%" y="645" width="0.0135%" height="15" fill="rgb(207,125,25)" fg:x="8693" fg:w="30"/><text x="4.1521%" y="655.50"></text></g><g><title>IntervalWalker::walk_to (811 samples, 0.36%)</title><rect x="3.5551%" y="677" width="0.3640%" height="15" fill="rgb(210,195,18)" fg:x="7920" fg:w="811"/><text x="3.8051%" y="687.50"></text></g><g><title>LinearScanWalker::activate_current (639 samples, 0.29%)</title><rect x="3.6323%" y="661" width="0.2868%" height="15" fill="rgb(249,80,12)" fg:x="8092" fg:w="639"/><text x="3.8823%" y="671.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (70 samples, 0.03%)</title><rect x="3.9200%" y="677" width="0.0314%" height="15" fill="rgb(221,65,9)" fg:x="8733" fg:w="70"/><text x="4.1700%" y="687.50"></text></g><g><title>resource_allocate_bytes (48 samples, 0.02%)</title><rect x="3.9299%" y="661" width="0.0215%" height="15" fill="rgb(235,49,36)" fg:x="8755" fg:w="48"/><text x="4.1799%" y="671.50"></text></g><g><title>LinearScan::allocate_registers (911 samples, 0.41%)</title><rect x="3.5448%" y="693" width="0.4089%" height="15" fill="rgb(225,32,20)" fg:x="7897" fg:w="911"/><text x="3.7948%" y="703.50"></text></g><g><title>LIR_OpVisitState::visit (69 samples, 0.03%)</title><rect x="4.0102%" y="661" width="0.0310%" height="15" fill="rgb(215,141,46)" fg:x="8934" fg:w="69"/><text x="4.2602%" y="671.50"></text></g><g><title>LinearScan::color_lir_opr (47 samples, 0.02%)</title><rect x="4.0426%" y="661" width="0.0211%" height="15" fill="rgb(250,160,47)" fg:x="9006" fg:w="47"/><text x="4.2926%" y="671.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (24 samples, 0.01%)</title><rect x="4.1162%" y="613" width="0.0108%" height="15" fill="rgb(216,222,40)" fg:x="9170" fg:w="24"/><text x="4.3662%" y="623.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (46 samples, 0.02%)</title><rect x="4.1094%" y="629" width="0.0206%" height="15" fill="rgb(234,217,39)" fg:x="9155" fg:w="46"/><text x="4.3594%" y="639.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (89 samples, 0.04%)</title><rect x="4.0937%" y="645" width="0.0399%" height="15" fill="rgb(207,178,40)" fg:x="9120" fg:w="89"/><text x="4.3437%" y="655.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (172 samples, 0.08%)</title><rect x="4.0637%" y="661" width="0.0772%" height="15" fill="rgb(221,136,13)" fg:x="9053" fg:w="172"/><text x="4.3137%" y="671.50"></text></g><g><title>IntervalWalker::walk_to (69 samples, 0.03%)</title><rect x="4.1602%" y="629" width="0.0310%" height="15" fill="rgb(249,199,10)" fg:x="9268" fg:w="69"/><text x="4.4102%" y="639.50"></text></g><g><title>LinearScan::compute_oop_map (146 samples, 0.07%)</title><rect x="4.1489%" y="645" width="0.0655%" height="15" fill="rgb(249,222,13)" fg:x="9243" fg:w="146"/><text x="4.3989%" y="655.50"></text></g><g><title>LinearScan::assign_reg_num (576 samples, 0.26%)</title><rect x="3.9568%" y="677" width="0.2586%" height="15" fill="rgb(244,185,38)" fg:x="8815" fg:w="576"/><text x="4.2068%" y="687.50"></text></g><g><title>LinearScan::compute_oop_map (166 samples, 0.07%)</title><rect x="4.1409%" y="661" width="0.0745%" height="15" fill="rgb(236,202,9)" fg:x="9225" fg:w="166"/><text x="4.3909%" y="671.50"></text></g><g><title>LinearScan::assign_reg_num (611 samples, 0.27%)</title><rect x="3.9537%" y="693" width="0.2743%" height="15" fill="rgb(250,229,37)" fg:x="8808" fg:w="611"/><text x="4.2037%" y="703.50"></text></g><g><title>LinearScan::init_compute_oop_maps (24 samples, 0.01%)</title><rect x="4.2172%" y="677" width="0.0108%" height="15" fill="rgb(206,174,23)" fg:x="9395" fg:w="24"/><text x="4.4672%" y="687.50"></text></g><g><title>BitMap::get_next_one_offset (35 samples, 0.02%)</title><rect x="4.3074%" y="677" width="0.0157%" height="15" fill="rgb(211,33,43)" fg:x="9596" fg:w="35"/><text x="4.5574%" y="687.50"></text></g><g><title>LIR_OpVisitState::append (28 samples, 0.01%)</title><rect x="4.3702%" y="661" width="0.0126%" height="15" fill="rgb(245,58,50)" fg:x="9736" fg:w="28"/><text x="4.6202%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (87 samples, 0.04%)</title><rect x="4.3469%" y="677" width="0.0391%" height="15" fill="rgb(244,68,36)" fg:x="9684" fg:w="87"/><text x="4.5969%" y="687.50"></text></g><g><title>LinearScan::add_def (51 samples, 0.02%)</title><rect x="4.3859%" y="677" width="0.0229%" height="15" fill="rgb(232,229,15)" fg:x="9771" fg:w="51"/><text x="4.6359%" y="687.50"></text></g><g><title>Interval::add_range (35 samples, 0.02%)</title><rect x="4.4205%" y="661" width="0.0157%" height="15" fill="rgb(254,30,23)" fg:x="9848" fg:w="35"/><text x="4.6705%" y="671.50"></text></g><g><title>Interval::Interval (37 samples, 0.02%)</title><rect x="4.4421%" y="645" width="0.0166%" height="15" fill="rgb(235,160,14)" fg:x="9896" fg:w="37"/><text x="4.6921%" y="655.50"></text></g><g><title>LinearScan::add_temp (105 samples, 0.05%)</title><rect x="4.4160%" y="677" width="0.0471%" height="15" fill="rgb(212,155,44)" fg:x="9838" fg:w="105"/><text x="4.6660%" y="687.50"></text></g><g><title>LinearScan::create_interval (60 samples, 0.03%)</title><rect x="4.4362%" y="661" width="0.0269%" height="15" fill="rgb(226,2,50)" fg:x="9883" fg:w="60"/><text x="4.6862%" y="671.50"></text></g><g><title>Interval::add_range (45 samples, 0.02%)</title><rect x="4.4910%" y="661" width="0.0202%" height="15" fill="rgb(234,177,6)" fg:x="10005" fg:w="45"/><text x="4.7410%" y="671.50"></text></g><g><title>Interval::Interval (50 samples, 0.02%)</title><rect x="4.5157%" y="645" width="0.0224%" height="15" fill="rgb(217,24,9)" fg:x="10060" fg:w="50"/><text x="4.7657%" y="655.50"></text></g><g><title>resource_allocate_bytes (23 samples, 0.01%)</title><rect x="4.5278%" y="629" width="0.0103%" height="15" fill="rgb(220,13,46)" fg:x="10087" fg:w="23"/><text x="4.7778%" y="639.50"></text></g><g><title>LinearScan::add_use (174 samples, 0.08%)</title><rect x="4.4631%" y="677" width="0.0781%" height="15" fill="rgb(239,221,27)" fg:x="9943" fg:w="174"/><text x="4.7131%" y="687.50"></text></g><g><title>LinearScan::create_interval (66 samples, 0.03%)</title><rect x="4.5116%" y="661" width="0.0296%" height="15" fill="rgb(222,198,25)" fg:x="10051" fg:w="66"/><text x="4.7616%" y="671.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (24 samples, 0.01%)</title><rect x="4.5453%" y="677" width="0.0108%" height="15" fill="rgb(211,99,13)" fg:x="10126" fg:w="24"/><text x="4.7953%" y="687.50"></text></g><g><title>LinearScan::use_kind_of_output_operand (34 samples, 0.02%)</title><rect x="4.5561%" y="677" width="0.0153%" height="15" fill="rgb(232,111,31)" fg:x="10150" fg:w="34"/><text x="4.8061%" y="687.50"></text></g><g><title>LinearScan::build_intervals (776 samples, 0.35%)</title><rect x="4.2279%" y="693" width="0.3483%" height="15" fill="rgb(245,82,37)" fg:x="9419" fg:w="776"/><text x="4.4779%" y="703.50"></text></g><g><title>LinearScan::compute_global_live_sets (57 samples, 0.03%)</title><rect x="4.5763%" y="693" width="0.0256%" height="15" fill="rgb(227,149,46)" fg:x="10195" fg:w="57"/><text x="4.8263%" y="703.50"></text></g><g><title>LIR_OpVisitState::visit (96 samples, 0.04%)</title><rect x="4.6665%" y="677" width="0.0431%" height="15" fill="rgb(218,36,50)" fg:x="10396" fg:w="96"/><text x="4.9165%" y="687.50"></text></g><g><title>LIR_OpVisitState::append (28 samples, 0.01%)</title><rect x="4.6970%" y="661" width="0.0126%" height="15" fill="rgb(226,80,48)" fg:x="10464" fg:w="28"/><text x="4.9470%" y="671.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (33 samples, 0.01%)</title><rect x="4.7154%" y="677" width="0.0148%" height="15" fill="rgb(238,224,15)" fg:x="10505" fg:w="33"/><text x="4.9654%" y="687.50"></text></g><g><title>LinearScan::compute_local_live_sets (287 samples, 0.13%)</title><rect x="4.6018%" y="693" width="0.1288%" height="15" fill="rgb(241,136,10)" fg:x="10252" fg:w="287"/><text x="4.8518%" y="703.50"></text></g><g><title>LinearScan::eliminate_spill_moves (54 samples, 0.02%)</title><rect x="4.7307%" y="693" width="0.0242%" height="15" fill="rgb(208,32,45)" fg:x="10539" fg:w="54"/><text x="4.9807%" y="703.50"></text></g><g><title>LinearScan::number_instructions (29 samples, 0.01%)</title><rect x="4.7549%" y="693" width="0.0130%" height="15" fill="rgb(207,135,9)" fg:x="10593" fg:w="29"/><text x="5.0049%" y="703.50"></text></g><g><title>LinearScan::resolve_collect_mappings (74 samples, 0.03%)</title><rect x="4.7832%" y="677" width="0.0332%" height="15" fill="rgb(206,86,44)" fg:x="10656" fg:w="74"/><text x="5.0332%" y="687.50"></text></g><g><title>Interval::split_child_at_op_id (29 samples, 0.01%)</title><rect x="4.8034%" y="661" width="0.0130%" height="15" fill="rgb(245,177,15)" fg:x="10701" fg:w="29"/><text x="5.0534%" y="671.50"></text></g><g><title>LinearScan::resolve_data_flow (127 samples, 0.06%)</title><rect x="4.7697%" y="693" width="0.0570%" height="15" fill="rgb(206,64,50)" fg:x="10626" fg:w="127"/><text x="5.0197%" y="703.50"></text></g><g><title>LinearScan::resolve_exception_handlers (37 samples, 0.02%)</title><rect x="4.8267%" y="693" width="0.0166%" height="15" fill="rgb(234,36,40)" fg:x="10753" fg:w="37"/><text x="5.0767%" y="703.50"></text></g><g><title>__GI___qsort_r (25 samples, 0.01%)</title><rect x="4.8510%" y="677" width="0.0112%" height="15" fill="rgb(213,64,8)" fg:x="10807" fg:w="25"/><text x="5.1010%" y="687.50"></text></g><g><title>msort_with_tmp (24 samples, 0.01%)</title><rect x="4.8514%" y="661" width="0.0108%" height="15" fill="rgb(210,75,36)" fg:x="10808" fg:w="24"/><text x="5.1014%" y="671.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (46 samples, 0.02%)</title><rect x="4.8433%" y="693" width="0.0206%" height="15" fill="rgb(229,88,21)" fg:x="10790" fg:w="46"/><text x="5.0933%" y="703.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (51 samples, 0.02%)</title><rect x="4.8640%" y="693" width="0.0229%" height="15" fill="rgb(252,204,47)" fg:x="10836" fg:w="51"/><text x="5.1140%" y="703.50"></text></g><g><title>LinearScan::do_linear_scan (3,024 samples, 1.36%)</title><rect x="3.5299%" y="709" width="1.3574%" height="15" fill="rgb(208,77,27)" fg:x="7864" fg:w="3024"/><text x="3.7799%" y="719.50"></text></g><g><title>Compilation::emit_lir (3,899 samples, 1.75%)</title><rect x="3.1399%" y="725" width="1.7502%" height="15" fill="rgb(221,76,26)" fg:x="6995" fg:w="3899"/><text x="3.3899%" y="735.50"></text></g><g><title>Method::build_interpreter_method_data (47 samples, 0.02%)</title><rect x="4.8999%" y="693" width="0.0211%" height="15" fill="rgb(225,139,18)" fg:x="10916" fg:w="47"/><text x="5.1499%" y="703.50"></text></g><g><title>MethodData::allocate (44 samples, 0.02%)</title><rect x="4.9012%" y="677" width="0.0198%" height="15" fill="rgb(230,137,11)" fg:x="10919" fg:w="44"/><text x="5.1512%" y="687.50"></text></g><g><title>ciMethodData::load_data (30 samples, 0.01%)</title><rect x="4.9219%" y="693" width="0.0135%" height="15" fill="rgb(212,28,1)" fg:x="10965" fg:w="30"/><text x="5.1719%" y="703.50"></text></g><g><title>Compilation::compile_java_method (9,127 samples, 4.10%)</title><rect x="0.8412%" y="741" width="4.0969%" height="15" fill="rgb(248,164,17)" fg:x="1874" fg:w="9127"/><text x="1.0912%" y="751.50">Comp..</text></g><g><title>ciMethod::ensure_method_data (88 samples, 0.04%)</title><rect x="4.8986%" y="725" width="0.0395%" height="15" fill="rgb(222,171,42)" fg:x="10913" fg:w="88"/><text x="5.1486%" y="735.50"></text></g><g><title>ciMethod::ensure_method_data (87 samples, 0.04%)</title><rect x="4.8990%" y="709" width="0.0391%" height="15" fill="rgb(243,84,45)" fg:x="10914" fg:w="87"/><text x="5.1490%" y="719.50"></text></g><g><title>DebugInformationRecorder::DebugInformationRecorder (25 samples, 0.01%)</title><rect x="4.9385%" y="725" width="0.0112%" height="15" fill="rgb(252,49,23)" fg:x="11002" fg:w="25"/><text x="5.1885%" y="735.50"></text></g><g><title>Dependencies::initialize (28 samples, 0.01%)</title><rect x="4.9497%" y="725" width="0.0126%" height="15" fill="rgb(215,19,7)" fg:x="11027" fg:w="28"/><text x="5.1997%" y="735.50"></text></g><g><title>Compilation::initialize (58 samples, 0.03%)</title><rect x="4.9381%" y="741" width="0.0260%" height="15" fill="rgb(238,81,41)" fg:x="11001" fg:w="58"/><text x="5.1881%" y="751.50"></text></g><g><title>CodeBuffer::finalize_oop_references (64 samples, 0.03%)</title><rect x="5.0081%" y="709" width="0.0287%" height="15" fill="rgb(210,199,37)" fg:x="11157" fg:w="64"/><text x="5.2581%" y="719.50"></text></g><g><title>CodeHeap::allocate (48 samples, 0.02%)</title><rect x="5.0368%" y="693" width="0.0215%" height="15" fill="rgb(244,192,49)" fg:x="11221" fg:w="48"/><text x="5.2868%" y="703.50"></text></g><g><title>CodeCache::allocate (68 samples, 0.03%)</title><rect x="5.0368%" y="709" width="0.0305%" height="15" fill="rgb(226,211,11)" fg:x="11221" fg:w="68"/><text x="5.2868%" y="719.50"></text></g><g><title>do_syscall_64 (25 samples, 0.01%)</title><rect x="5.0781%" y="661" width="0.0112%" height="15" fill="rgb(236,162,54)" fg:x="11313" fg:w="25"/><text x="5.3281%" y="671.50"></text></g><g><title>__x64_sys_futex (25 samples, 0.01%)</title><rect x="5.0781%" y="645" width="0.0112%" height="15" fill="rgb(220,229,9)" fg:x="11313" fg:w="25"/><text x="5.3281%" y="655.50"></text></g><g><title>do_futex (25 samples, 0.01%)</title><rect x="5.0781%" y="629" width="0.0112%" height="15" fill="rgb(250,87,22)" fg:x="11313" fg:w="25"/><text x="5.3281%" y="639.50"></text></g><g><title>futex_wake (25 samples, 0.01%)</title><rect x="5.0781%" y="613" width="0.0112%" height="15" fill="rgb(239,43,17)" fg:x="11313" fg:w="25"/><text x="5.3281%" y="623.50"></text></g><g><title>__pthread_cond_signal (37 samples, 0.02%)</title><rect x="5.0777%" y="709" width="0.0166%" height="15" fill="rgb(231,177,25)" fg:x="11312" fg:w="37"/><text x="5.3277%" y="719.50"></text></g><g><title>futex_wake (36 samples, 0.02%)</title><rect x="5.0781%" y="693" width="0.0162%" height="15" fill="rgb(219,179,1)" fg:x="11313" fg:w="36"/><text x="5.3281%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="5.0781%" y="677" width="0.0162%" height="15" fill="rgb(238,219,53)" fg:x="11313" fg:w="36"/><text x="5.3281%" y="687.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (36 samples, 0.02%)</title><rect x="5.1077%" y="661" width="0.0162%" height="15" fill="rgb(232,167,36)" fg:x="11379" fg:w="36"/><text x="5.3577%" y="671.50"></text></g><g><title>Relocation::pd_call_destination (31 samples, 0.01%)</title><rect x="5.1100%" y="645" width="0.0139%" height="15" fill="rgb(244,19,51)" fg:x="11384" fg:w="31"/><text x="5.3600%" y="655.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (24 samples, 0.01%)</title><rect x="5.1369%" y="661" width="0.0108%" height="15" fill="rgb(224,6,22)" fg:x="11444" fg:w="24"/><text x="5.3869%" y="671.50"></text></g><g><title>CodeBuffer::relocate_code_to (113 samples, 0.05%)</title><rect x="5.0983%" y="677" width="0.0507%" height="15" fill="rgb(224,145,5)" fg:x="11358" fg:w="113"/><text x="5.3483%" y="687.50"></text></g><g><title>CodeBuffer::copy_code_to (128 samples, 0.06%)</title><rect x="5.0961%" y="693" width="0.0575%" height="15" fill="rgb(234,130,49)" fg:x="11353" fg:w="128"/><text x="5.3461%" y="703.50"></text></g><g><title>CodeBlob::CodeBlob (38 samples, 0.02%)</title><rect x="5.1598%" y="677" width="0.0171%" height="15" fill="rgb(254,6,2)" fg:x="11495" fg:w="38"/><text x="5.4098%" y="687.50"></text></g><g><title>ImmutableOopMapSet::build_from (38 samples, 0.02%)</title><rect x="5.1598%" y="661" width="0.0171%" height="15" fill="rgb(208,96,46)" fg:x="11495" fg:w="38"/><text x="5.4098%" y="671.50"></text></g><g><title>CompiledMethod::CompiledMethod (42 samples, 0.02%)</title><rect x="5.1589%" y="693" width="0.0189%" height="15" fill="rgb(239,3,39)" fg:x="11493" fg:w="42"/><text x="5.4089%" y="703.50"></text></g><g><title>G1CodeRootSet::add (30 samples, 0.01%)</title><rect x="5.1849%" y="661" width="0.0135%" height="15" fill="rgb(233,210,1)" fg:x="11551" fg:w="30"/><text x="5.4349%" y="671.50"></text></g><g><title>G1CollectedHeap::register_nmethod (45 samples, 0.02%)</title><rect x="5.1795%" y="693" width="0.0202%" height="15" fill="rgb(244,137,37)" fg:x="11539" fg:w="45"/><text x="5.4295%" y="703.50"></text></g><g><title>nmethod::oops_do (45 samples, 0.02%)</title><rect x="5.1795%" y="677" width="0.0202%" height="15" fill="rgb(240,136,2)" fg:x="11539" fg:w="45"/><text x="5.4295%" y="687.50"></text></g><g><title>nmethod::nmethod (284 samples, 0.13%)</title><rect x="5.0947%" y="709" width="0.1275%" height="15" fill="rgb(239,18,37)" fg:x="11350" fg:w="284"/><text x="5.3447%" y="719.50"></text></g><g><title>ciEnv::register_method (575 samples, 0.26%)</title><rect x="4.9650%" y="741" width="0.2581%" height="15" fill="rgb(218,185,22)" fg:x="11061" fg:w="575"/><text x="5.2150%" y="751.50"></text></g><g><title>nmethod::new_nmethod (491 samples, 0.22%)</title><rect x="5.0027%" y="725" width="0.2204%" height="15" fill="rgb(225,218,4)" fg:x="11145" fg:w="491"/><text x="5.2527%" y="735.50"></text></g><g><title>Compilation::compile_method (9,768 samples, 4.38%)</title><rect x="0.8389%" y="757" width="4.3846%" height="15" fill="rgb(230,182,32)" fg:x="1869" fg:w="9768"/><text x="1.0889%" y="767.50">Compi..</text></g><g><title>Compilation::Compilation (9,779 samples, 4.39%)</title><rect x="0.8349%" y="773" width="4.3895%" height="15" fill="rgb(242,56,43)" fg:x="1860" fg:w="9779"/><text x="1.0849%" y="783.50">Compi..</text></g><g><title>Compiler::compile_method (9,800 samples, 4.40%)</title><rect x="0.8259%" y="789" width="4.3990%" height="15" fill="rgb(233,99,24)" fg:x="1840" fg:w="9800"/><text x="1.0759%" y="799.50">Compi..</text></g><g><title>ciObjectFactory::ciObjectFactory (30 samples, 0.01%)</title><rect x="5.2446%" y="773" width="0.0135%" height="15" fill="rgb(234,209,42)" fg:x="11684" fg:w="30"/><text x="5.4946%" y="783.50"></text></g><g><title>ciEnv::ciEnv (94 samples, 0.04%)</title><rect x="5.2401%" y="789" width="0.0422%" height="15" fill="rgb(227,7,12)" fg:x="11674" fg:w="94"/><text x="5.4901%" y="799.50"></text></g><g><title>ciObjectFactory::get (54 samples, 0.02%)</title><rect x="5.2581%" y="773" width="0.0242%" height="15" fill="rgb(245,203,43)" fg:x="11714" fg:w="54"/><text x="5.5081%" y="783.50"></text></g><g><title>ciObjectFactory::get_metadata (35 samples, 0.02%)</title><rect x="5.2666%" y="757" width="0.0157%" height="15" fill="rgb(238,205,33)" fg:x="11733" fg:w="35"/><text x="5.5166%" y="767.50"></text></g><g><title>ciObjectFactory::create_new_metadata (33 samples, 0.01%)</title><rect x="5.2675%" y="741" width="0.0148%" height="15" fill="rgb(231,56,7)" fg:x="11735" fg:w="33"/><text x="5.5175%" y="751.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (29 samples, 0.01%)</title><rect x="5.2693%" y="725" width="0.0130%" height="15" fill="rgb(244,186,29)" fg:x="11739" fg:w="29"/><text x="5.5193%" y="735.50"></text></g><g><title>SignatureStream::as_symbol (29 samples, 0.01%)</title><rect x="5.2976%" y="709" width="0.0130%" height="15" fill="rgb(234,111,31)" fg:x="11802" fg:w="29"/><text x="5.5476%" y="719.50"></text></g><g><title>SymbolTable::lookup (28 samples, 0.01%)</title><rect x="5.2981%" y="693" width="0.0126%" height="15" fill="rgb(241,149,10)" fg:x="11803" fg:w="28"/><text x="5.5481%" y="703.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (40 samples, 0.02%)</title><rect x="5.3120%" y="709" width="0.0180%" height="15" fill="rgb(249,206,44)" fg:x="11834" fg:w="40"/><text x="5.5620%" y="719.50"></text></g><g><title>ciMethod::ciMethod (102 samples, 0.05%)</title><rect x="5.2877%" y="741" width="0.0458%" height="15" fill="rgb(251,153,30)" fg:x="11780" fg:w="102"/><text x="5.5377%" y="751.50"></text></g><g><title>ciSignature::ciSignature (90 samples, 0.04%)</title><rect x="5.2931%" y="725" width="0.0404%" height="15" fill="rgb(239,152,38)" fg:x="11792" fg:w="90"/><text x="5.5431%" y="735.50"></text></g><g><title>ciEnv::get_method_from_handle (123 samples, 0.06%)</title><rect x="5.2823%" y="789" width="0.0552%" height="15" fill="rgb(249,139,47)" fg:x="11768" fg:w="123"/><text x="5.5323%" y="799.50"></text></g><g><title>ciObjectFactory::get_metadata (120 samples, 0.05%)</title><rect x="5.2837%" y="773" width="0.0539%" height="15" fill="rgb(244,64,35)" fg:x="11771" fg:w="120"/><text x="5.5337%" y="783.50"></text></g><g><title>ciObjectFactory::create_new_metadata (114 samples, 0.05%)</title><rect x="5.2864%" y="757" width="0.0512%" height="15" fill="rgb(216,46,15)" fg:x="11777" fg:w="114"/><text x="5.5364%" y="767.50"></text></g><g><title>ciEnv::~ciEnv (27 samples, 0.01%)</title><rect x="5.3376%" y="789" width="0.0121%" height="15" fill="rgb(250,74,19)" fg:x="11891" fg:w="27"/><text x="5.5876%" y="799.50"></text></g><g><title>ciObjectFactory::remove_symbols (24 samples, 0.01%)</title><rect x="5.3389%" y="773" width="0.0108%" height="15" fill="rgb(249,42,33)" fg:x="11894" fg:w="24"/><text x="5.5889%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (10,325 samples, 4.63%)</title><rect x="0.7169%" y="805" width="4.6346%" height="15" fill="rgb(242,149,17)" fg:x="1597" fg:w="10325"/><text x="0.9669%" y="815.50">Compi..</text></g><g><title>__sysinfo (23 samples, 0.01%)</title><rect x="5.3573%" y="773" width="0.0103%" height="15" fill="rgb(244,29,21)" fg:x="11935" fg:w="23"/><text x="5.6073%" y="783.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (37 samples, 0.02%)</title><rect x="5.3515%" y="805" width="0.0166%" height="15" fill="rgb(220,130,37)" fg:x="11922" fg:w="37"/><text x="5.6015%" y="815.50"></text></g><g><title>os::available_memory (29 samples, 0.01%)</title><rect x="5.3551%" y="789" width="0.0130%" height="15" fill="rgb(211,67,2)" fg:x="11930" fg:w="29"/><text x="5.6051%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (103 samples, 0.05%)</title><rect x="5.3874%" y="549" width="0.0462%" height="15" fill="rgb(235,68,52)" fg:x="12002" fg:w="103"/><text x="5.6374%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (101 samples, 0.05%)</title><rect x="5.3883%" y="533" width="0.0453%" height="15" fill="rgb(246,142,3)" fg:x="12004" fg:w="101"/><text x="5.6383%" y="543.50"></text></g><g><title>native_write_msr (100 samples, 0.04%)</title><rect x="5.3887%" y="517" width="0.0449%" height="15" fill="rgb(241,25,7)" fg:x="12005" fg:w="100"/><text x="5.6387%" y="527.50"></text></g><g><title>finish_task_switch (104 samples, 0.05%)</title><rect x="5.3874%" y="565" width="0.0467%" height="15" fill="rgb(242,119,39)" fg:x="12002" fg:w="104"/><text x="5.6374%" y="575.50"></text></g><g><title>futex_wait_queue_me (117 samples, 0.05%)</title><rect x="5.3847%" y="613" width="0.0525%" height="15" fill="rgb(241,98,45)" fg:x="11996" fg:w="117"/><text x="5.6347%" y="623.50"></text></g><g><title>schedule (113 samples, 0.05%)</title><rect x="5.3865%" y="597" width="0.0507%" height="15" fill="rgb(254,28,30)" fg:x="12000" fg:w="113"/><text x="5.6365%" y="607.50"></text></g><g><title>__schedule (112 samples, 0.05%)</title><rect x="5.3869%" y="581" width="0.0503%" height="15" fill="rgb(241,142,54)" fg:x="12001" fg:w="112"/><text x="5.6369%" y="591.50"></text></g><g><title>do_syscall_64 (124 samples, 0.06%)</title><rect x="5.3842%" y="677" width="0.0557%" height="15" fill="rgb(222,85,15)" fg:x="11995" fg:w="124"/><text x="5.6342%" y="687.50"></text></g><g><title>__x64_sys_futex (124 samples, 0.06%)</title><rect x="5.3842%" y="661" width="0.0557%" height="15" fill="rgb(210,85,47)" fg:x="11995" fg:w="124"/><text x="5.6342%" y="671.50"></text></g><g><title>do_futex (124 samples, 0.06%)</title><rect x="5.3842%" y="645" width="0.0557%" height="15" fill="rgb(224,206,25)" fg:x="11995" fg:w="124"/><text x="5.6342%" y="655.50"></text></g><g><title>futex_wait (124 samples, 0.06%)</title><rect x="5.3842%" y="629" width="0.0557%" height="15" fill="rgb(243,201,19)" fg:x="11995" fg:w="124"/><text x="5.6342%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (133 samples, 0.06%)</title><rect x="5.3824%" y="741" width="0.0597%" height="15" fill="rgb(236,59,4)" fg:x="11991" fg:w="133"/><text x="5.6324%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (133 samples, 0.06%)</title><rect x="5.3824%" y="725" width="0.0597%" height="15" fill="rgb(254,179,45)" fg:x="11991" fg:w="133"/><text x="5.6324%" y="735.50"></text></g><g><title>futex_abstimed_wait_cancelable (130 samples, 0.06%)</title><rect x="5.3838%" y="709" width="0.0584%" height="15" fill="rgb(226,14,10)" fg:x="11994" fg:w="130"/><text x="5.6338%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (129 samples, 0.06%)</title><rect x="5.3842%" y="693" width="0.0579%" height="15" fill="rgb(244,27,41)" fg:x="11995" fg:w="129"/><text x="5.6342%" y="703.50"></text></g><g><title>Monitor::wait (142 samples, 0.06%)</title><rect x="5.3806%" y="789" width="0.0637%" height="15" fill="rgb(235,35,32)" fg:x="11987" fg:w="142"/><text x="5.6306%" y="799.50"></text></g><g><title>Monitor::IWait (141 samples, 0.06%)</title><rect x="5.3811%" y="773" width="0.0633%" height="15" fill="rgb(218,68,31)" fg:x="11988" fg:w="141"/><text x="5.6311%" y="783.50"></text></g><g><title>os::PlatformEvent::park (139 samples, 0.06%)</title><rect x="5.3820%" y="757" width="0.0624%" height="15" fill="rgb(207,120,37)" fg:x="11990" fg:w="139"/><text x="5.6320%" y="767.50"></text></g><g><title>TieredThresholdPolicy::select_task (70 samples, 0.03%)</title><rect x="5.4444%" y="789" width="0.0314%" height="15" fill="rgb(227,98,0)" fg:x="12129" fg:w="70"/><text x="5.6944%" y="799.50"></text></g><g><title>CompileQueue::get (245 samples, 0.11%)</title><rect x="5.3681%" y="805" width="0.1100%" height="15" fill="rgb(207,7,3)" fg:x="11959" fg:w="245"/><text x="5.6181%" y="815.50"></text></g><g><title>__GI___clone (10,624 samples, 4.77%)</title><rect x="0.7155%" y="901" width="4.7688%" height="15" fill="rgb(206,98,19)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="911.50">__GI__..</text></g><g><title>start_thread (10,624 samples, 4.77%)</title><rect x="0.7155%" y="885" width="4.7688%" height="15" fill="rgb(217,5,26)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="895.50">start_..</text></g><g><title>thread_native_entry (10,624 samples, 4.77%)</title><rect x="0.7155%" y="869" width="4.7688%" height="15" fill="rgb(235,190,38)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="879.50">thread..</text></g><g><title>Thread::call_run (10,624 samples, 4.77%)</title><rect x="0.7155%" y="853" width="4.7688%" height="15" fill="rgb(247,86,24)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="863.50">Thread..</text></g><g><title>JavaThread::thread_main_inner (10,624 samples, 4.77%)</title><rect x="0.7155%" y="837" width="4.7688%" height="15" fill="rgb(205,101,16)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="847.50">JavaTh..</text></g><g><title>CompileBroker::compiler_thread_loop (10,624 samples, 4.77%)</title><rect x="0.7155%" y="821" width="4.7688%" height="15" fill="rgb(246,168,33)" fg:x="1594" fg:w="10624"/><text x="0.9655%" y="831.50">Compil..</text></g><g><title>C1_CompilerThre (12,234 samples, 5.49%)</title><rect x="0.0139%" y="917" width="5.4915%" height="15" fill="rgb(231,114,1)" fg:x="31" fg:w="12234"/><text x="0.2639%" y="927.50">C1_Comp..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (46 samples, 0.02%)</title><rect x="5.5422%" y="901" width="0.0206%" height="15" fill="rgb(207,184,53)" fg:x="12347" fg:w="46"/><text x="5.7922%" y="911.50"></text></g><g><title>RegMask::is_UP (46 samples, 0.02%)</title><rect x="5.5422%" y="885" width="0.0206%" height="15" fill="rgb(224,95,51)" fg:x="12347" fg:w="46"/><text x="5.7922%" y="895.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (26 samples, 0.01%)</title><rect x="5.5633%" y="901" width="0.0117%" height="15" fill="rgb(212,188,45)" fg:x="12394" fg:w="26"/><text x="5.8133%" y="911.50"></text></g><g><title>ProjNode::pinned (62 samples, 0.03%)</title><rect x="5.6078%" y="885" width="0.0278%" height="15" fill="rgb(223,154,38)" fg:x="12493" fg:w="62"/><text x="5.8578%" y="895.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (66 samples, 0.03%)</title><rect x="5.6073%" y="901" width="0.0296%" height="15" fill="rgb(251,22,52)" fg:x="12492" fg:w="66"/><text x="5.8573%" y="911.50"></text></g><g><title>CallStaticJavaNode::Opcode (23 samples, 0.01%)</title><rect x="5.7505%" y="885" width="0.0103%" height="15" fill="rgb(229,209,22)" fg:x="12811" fg:w="23"/><text x="6.0005%" y="895.50"></text></g><g><title>IfFalseNode::Opcode (26 samples, 0.01%)</title><rect x="5.8928%" y="885" width="0.0117%" height="15" fill="rgb(234,138,34)" fg:x="13128" fg:w="26"/><text x="6.1428%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (46 samples, 0.02%)</title><rect x="5.9377%" y="885" width="0.0206%" height="15" fill="rgb(212,95,11)" fg:x="13228" fg:w="46"/><text x="6.1877%" y="895.50"></text></g><g><title>MachNode::ideal_reg (27 samples, 0.01%)</title><rect x="6.0351%" y="885" width="0.0121%" height="15" fill="rgb(240,179,47)" fg:x="13445" fg:w="27"/><text x="6.2851%" y="895.50"></text></g><g><title>MultiNode::is_CFG (60 samples, 0.03%)</title><rect x="6.1352%" y="885" width="0.0269%" height="15" fill="rgb(240,163,11)" fg:x="13668" fg:w="60"/><text x="6.3852%" y="895.50"></text></g><g><title>Node::is_CFG (58 samples, 0.03%)</title><rect x="6.1931%" y="885" width="0.0260%" height="15" fill="rgb(236,37,12)" fg:x="13797" fg:w="58"/><text x="6.4431%" y="895.50"></text></g><g><title>Node::pinned (27 samples, 0.01%)</title><rect x="6.2362%" y="885" width="0.0121%" height="15" fill="rgb(232,164,16)" fg:x="13893" fg:w="27"/><text x="6.4862%" y="895.50"></text></g><g><title>PhiNode::Opcode (29 samples, 0.01%)</title><rect x="6.3893%" y="885" width="0.0130%" height="15" fill="rgb(244,205,15)" fg:x="14234" fg:w="29"/><text x="6.6393%" y="895.50"></text></g><g><title>ProjNode::pinned (34 samples, 0.02%)</title><rect x="6.4319%" y="885" width="0.0153%" height="15" fill="rgb(223,117,47)" fg:x="14329" fg:w="34"/><text x="6.6819%" y="895.50"></text></g><g><title>RegionNode::is_CFG (39 samples, 0.02%)</title><rect x="6.4943%" y="885" width="0.0175%" height="15" fill="rgb(244,107,35)" fg:x="14468" fg:w="39"/><text x="6.7443%" y="895.50"></text></g><g><title>_dl_update_slotinfo (191 samples, 0.09%)</title><rect x="6.6967%" y="885" width="0.0857%" height="15" fill="rgb(205,140,8)" fg:x="14919" fg:w="191"/><text x="6.9467%" y="895.50"></text></g><g><title>find_lowest_bit (46 samples, 0.02%)</title><rect x="6.8781%" y="885" width="0.0206%" height="15" fill="rgb(228,84,46)" fg:x="15323" fg:w="46"/><text x="7.1281%" y="895.50"></text></g><g><title>jmpDirNode::is_block_proj (27 samples, 0.01%)</title><rect x="6.9153%" y="885" width="0.0121%" height="15" fill="rgb(254,188,9)" fg:x="15406" fg:w="27"/><text x="7.1653%" y="895.50"></text></g><g><title>update_get_addr (61 samples, 0.03%)</title><rect x="7.0199%" y="885" width="0.0274%" height="15" fill="rgb(206,112,54)" fg:x="15639" fg:w="61"/><text x="7.2699%" y="895.50"></text></g><g><title>[anon] (3,122 samples, 1.40%)</title><rect x="5.6477%" y="901" width="1.4014%" height="15" fill="rgb(216,84,49)" fg:x="12582" fg:w="3122"/><text x="5.8977%" y="911.50"></text></g><g><title>[perf-945576.map] (31 samples, 0.01%)</title><rect x="7.0505%" y="901" width="0.0139%" height="15" fill="rgb(214,194,35)" fg:x="15707" fg:w="31"/><text x="7.3005%" y="911.50"></text></g><g><title>ciTypeFlow::df_flow_types (25 samples, 0.01%)</title><rect x="7.0801%" y="661" width="0.0112%" height="15" fill="rgb(249,28,3)" fg:x="15773" fg:w="25"/><text x="7.3301%" y="671.50"></text></g><g><title>ciTypeFlow::flow_block (24 samples, 0.01%)</title><rect x="7.0805%" y="645" width="0.0108%" height="15" fill="rgb(222,56,52)" fg:x="15774" fg:w="24"/><text x="7.3305%" y="655.50"></text></g><g><title>Compile::call_generator (37 samples, 0.02%)</title><rect x="7.0751%" y="741" width="0.0166%" height="15" fill="rgb(245,217,50)" fg:x="15762" fg:w="37"/><text x="7.3251%" y="751.50"></text></g><g><title>InlineTree::ok_to_inline (37 samples, 0.02%)</title><rect x="7.0751%" y="725" width="0.0166%" height="15" fill="rgb(213,201,24)" fg:x="15762" fg:w="37"/><text x="7.3251%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (28 samples, 0.01%)</title><rect x="7.0792%" y="709" width="0.0126%" height="15" fill="rgb(248,116,28)" fg:x="15771" fg:w="28"/><text x="7.3292%" y="719.50"></text></g><g><title>ciTypeFlow::do_flow (26 samples, 0.01%)</title><rect x="7.0801%" y="693" width="0.0117%" height="15" fill="rgb(219,72,43)" fg:x="15773" fg:w="26"/><text x="7.3301%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (26 samples, 0.01%)</title><rect x="7.0801%" y="677" width="0.0117%" height="15" fill="rgb(209,138,14)" fg:x="15773" fg:w="26"/><text x="7.3301%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (23 samples, 0.01%)</title><rect x="7.1030%" y="629" width="0.0103%" height="15" fill="rgb(222,18,33)" fg:x="15824" fg:w="23"/><text x="7.3530%" y="639.50"></text></g><g><title>ciBytecodeStream::get_field (23 samples, 0.01%)</title><rect x="7.1030%" y="613" width="0.0103%" height="15" fill="rgb(213,199,7)" fg:x="15824" fg:w="23"/><text x="7.3530%" y="623.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (53 samples, 0.02%)</title><rect x="7.1133%" y="629" width="0.0238%" height="15" fill="rgb(250,110,10)" fg:x="15847" fg:w="53"/><text x="7.3633%" y="639.50"></text></g><g><title>ciBytecodeStream::get_method (53 samples, 0.02%)</title><rect x="7.1133%" y="613" width="0.0238%" height="15" fill="rgb(248,123,6)" fg:x="15847" fg:w="53"/><text x="7.3633%" y="623.50"></text></g><g><title>ciEnv::get_method_by_index_impl (53 samples, 0.02%)</title><rect x="7.1133%" y="597" width="0.0238%" height="15" fill="rgb(206,91,31)" fg:x="15847" fg:w="53"/><text x="7.3633%" y="607.50"></text></g><g><title>ciObjectFactory::get_metadata (36 samples, 0.02%)</title><rect x="7.1209%" y="581" width="0.0162%" height="15" fill="rgb(211,154,13)" fg:x="15864" fg:w="36"/><text x="7.3709%" y="591.50"></text></g><g><title>ciObjectFactory::create_new_metadata (34 samples, 0.02%)</title><rect x="7.1218%" y="565" width="0.0153%" height="15" fill="rgb(225,148,7)" fg:x="15866" fg:w="34"/><text x="7.3718%" y="575.50"></text></g><g><title>ciMethod::ciMethod (33 samples, 0.01%)</title><rect x="7.1223%" y="549" width="0.0148%" height="15" fill="rgb(220,160,43)" fg:x="15867" fg:w="33"/><text x="7.3723%" y="559.50"></text></g><g><title>ciSignature::ciSignature (26 samples, 0.01%)</title><rect x="7.1254%" y="533" width="0.0117%" height="15" fill="rgb(213,52,39)" fg:x="15874" fg:w="26"/><text x="7.3754%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (90 samples, 0.04%)</title><rect x="7.1003%" y="645" width="0.0404%" height="15" fill="rgb(243,137,7)" fg:x="15818" fg:w="90"/><text x="7.3503%" y="655.50"></text></g><g><title>ciTypeFlow::df_flow_types (108 samples, 0.05%)</title><rect x="7.0935%" y="677" width="0.0485%" height="15" fill="rgb(230,79,13)" fg:x="15803" fg:w="108"/><text x="7.3435%" y="687.50"></text></g><g><title>ciTypeFlow::flow_block (108 samples, 0.05%)</title><rect x="7.0935%" y="661" width="0.0485%" height="15" fill="rgb(247,105,23)" fg:x="15803" fg:w="108"/><text x="7.3435%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (115 samples, 0.05%)</title><rect x="7.0917%" y="741" width="0.0516%" height="15" fill="rgb(223,179,41)" fg:x="15799" fg:w="115"/><text x="7.3417%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (111 samples, 0.05%)</title><rect x="7.0935%" y="725" width="0.0498%" height="15" fill="rgb(218,9,34)" fg:x="15803" fg:w="111"/><text x="7.3435%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (111 samples, 0.05%)</title><rect x="7.0935%" y="709" width="0.0498%" height="15" fill="rgb(222,106,8)" fg:x="15803" fg:w="111"/><text x="7.3435%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (111 samples, 0.05%)</title><rect x="7.0935%" y="693" width="0.0498%" height="15" fill="rgb(211,220,0)" fg:x="15803" fg:w="111"/><text x="7.3435%" y="703.50"></text></g><g><title>Compile::call_generator (157 samples, 0.07%)</title><rect x="7.0751%" y="757" width="0.0705%" height="15" fill="rgb(229,52,16)" fg:x="15762" fg:w="157"/><text x="7.3251%" y="767.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (40 samples, 0.02%)</title><rect x="7.2062%" y="533" width="0.0180%" height="15" fill="rgb(212,155,18)" fg:x="16054" fg:w="40"/><text x="7.4562%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (38 samples, 0.02%)</title><rect x="7.2071%" y="517" width="0.0171%" height="15" fill="rgb(242,21,14)" fg:x="16056" fg:w="38"/><text x="7.4571%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (37 samples, 0.02%)</title><rect x="7.2076%" y="501" width="0.0166%" height="15" fill="rgb(222,19,48)" fg:x="16057" fg:w="37"/><text x="7.4576%" y="511.50"></text></g><g><title>ciTypeFlow::df_flow_types (80 samples, 0.04%)</title><rect x="7.1892%" y="581" width="0.0359%" height="15" fill="rgb(232,45,27)" fg:x="16016" fg:w="80"/><text x="7.4392%" y="591.50"></text></g><g><title>ciTypeFlow::flow_block (72 samples, 0.03%)</title><rect x="7.1927%" y="565" width="0.0323%" height="15" fill="rgb(249,103,42)" fg:x="16024" fg:w="72"/><text x="7.4427%" y="575.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (56 samples, 0.03%)</title><rect x="7.1999%" y="549" width="0.0251%" height="15" fill="rgb(246,81,33)" fg:x="16040" fg:w="56"/><text x="7.4499%" y="559.50"></text></g><g><title>ciTypeFlow::do_flow (84 samples, 0.04%)</title><rect x="7.1892%" y="613" width="0.0377%" height="15" fill="rgb(252,33,42)" fg:x="16016" fg:w="84"/><text x="7.4392%" y="623.50"></text></g><g><title>ciTypeFlow::flow_types (84 samples, 0.04%)</title><rect x="7.1892%" y="597" width="0.0377%" height="15" fill="rgb(209,212,41)" fg:x="16016" fg:w="84"/><text x="7.4392%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (111 samples, 0.05%)</title><rect x="7.1775%" y="645" width="0.0498%" height="15" fill="rgb(207,154,6)" fg:x="15990" fg:w="111"/><text x="7.4275%" y="655.50"></text></g><g><title>ciMethod::get_flow_analysis (91 samples, 0.04%)</title><rect x="7.1865%" y="629" width="0.0408%" height="15" fill="rgb(223,64,47)" fg:x="16010" fg:w="91"/><text x="7.4365%" y="639.50"></text></g><g><title>Compile::call_generator (129 samples, 0.06%)</title><rect x="7.1712%" y="661" width="0.0579%" height="15" fill="rgb(211,161,38)" fg:x="15976" fg:w="129"/><text x="7.4212%" y="671.50"></text></g><g><title>Parse::create_entry_map (26 samples, 0.01%)</title><rect x="7.2655%" y="629" width="0.0117%" height="15" fill="rgb(219,138,40)" fg:x="16186" fg:w="26"/><text x="7.5155%" y="639.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (23 samples, 0.01%)</title><rect x="7.3095%" y="453" width="0.0103%" height="15" fill="rgb(241,228,46)" fg:x="16284" fg:w="23"/><text x="7.5595%" y="463.50"></text></g><g><title>ciTypeFlow::df_flow_types (30 samples, 0.01%)</title><rect x="7.3068%" y="485" width="0.0135%" height="15" fill="rgb(223,209,38)" fg:x="16278" fg:w="30"/><text x="7.5568%" y="495.50"></text></g><g><title>ciTypeFlow::flow_block (27 samples, 0.01%)</title><rect x="7.3081%" y="469" width="0.0121%" height="15" fill="rgb(236,164,45)" fg:x="16281" fg:w="27"/><text x="7.5581%" y="479.50"></text></g><g><title>ciTypeFlow::do_flow (34 samples, 0.02%)</title><rect x="7.3059%" y="517" width="0.0153%" height="15" fill="rgb(231,15,5)" fg:x="16276" fg:w="34"/><text x="7.5559%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (34 samples, 0.02%)</title><rect x="7.3059%" y="501" width="0.0153%" height="15" fill="rgb(252,35,15)" fg:x="16276" fg:w="34"/><text x="7.5559%" y="511.50"></text></g><g><title>InlineTree::ok_to_inline (48 samples, 0.02%)</title><rect x="7.3000%" y="549" width="0.0215%" height="15" fill="rgb(248,181,18)" fg:x="16263" fg:w="48"/><text x="7.5500%" y="559.50"></text></g><g><title>ciMethod::get_flow_analysis (37 samples, 0.02%)</title><rect x="7.3050%" y="533" width="0.0166%" height="15" fill="rgb(233,39,42)" fg:x="16274" fg:w="37"/><text x="7.5550%" y="543.50"></text></g><g><title>Compile::call_generator (59 samples, 0.03%)</title><rect x="7.2960%" y="565" width="0.0265%" height="15" fill="rgb(238,110,33)" fg:x="16254" fg:w="59"/><text x="7.5460%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (30 samples, 0.01%)</title><rect x="7.3638%" y="453" width="0.0135%" height="15" fill="rgb(233,195,10)" fg:x="16405" fg:w="30"/><text x="7.6138%" y="463.50"></text></g><g><title>Compile::call_generator (36 samples, 0.02%)</title><rect x="7.3620%" y="469" width="0.0162%" height="15" fill="rgb(254,105,3)" fg:x="16401" fg:w="36"/><text x="7.6120%" y="479.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.03%)</title><rect x="7.4078%" y="437" width="0.0251%" height="15" fill="rgb(221,225,9)" fg:x="16503" fg:w="56"/><text x="7.6578%" y="447.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.02%)</title><rect x="7.4082%" y="421" width="0.0247%" height="15" fill="rgb(224,227,45)" fg:x="16504" fg:w="55"/><text x="7.6582%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.02%)</title><rect x="7.4100%" y="405" width="0.0229%" height="15" fill="rgb(229,198,43)" fg:x="16508" fg:w="51"/><text x="7.6600%" y="415.50"></text></g><g><title>ParseGenerator::generate (97 samples, 0.04%)</title><rect x="7.3970%" y="469" width="0.0435%" height="15" fill="rgb(206,209,35)" fg:x="16479" fg:w="97"/><text x="7.6470%" y="479.50"></text></g><g><title>Parse::Parse (97 samples, 0.04%)</title><rect x="7.3970%" y="453" width="0.0435%" height="15" fill="rgb(245,195,53)" fg:x="16479" fg:w="97"/><text x="7.6470%" y="463.50"></text></g><g><title>Parse::do_call (193 samples, 0.09%)</title><rect x="7.3615%" y="485" width="0.0866%" height="15" fill="rgb(240,92,26)" fg:x="16400" fg:w="193"/><text x="7.6115%" y="495.50"></text></g><g><title>Parse::do_get_xxx (24 samples, 0.01%)</title><rect x="7.4513%" y="469" width="0.0108%" height="15" fill="rgb(207,40,23)" fg:x="16600" fg:w="24"/><text x="7.7013%" y="479.50"></text></g><g><title>GraphKit::access_store_at (24 samples, 0.01%)</title><rect x="7.4621%" y="453" width="0.0108%" height="15" fill="rgb(223,111,35)" fg:x="16624" fg:w="24"/><text x="7.7121%" y="463.50"></text></g><g><title>BarrierSetC2::store_at (24 samples, 0.01%)</title><rect x="7.4621%" y="437" width="0.0108%" height="15" fill="rgb(229,147,28)" fg:x="16624" fg:w="24"/><text x="7.7121%" y="447.50"></text></g><g><title>Parse::do_put_xxx (25 samples, 0.01%)</title><rect x="7.4621%" y="469" width="0.0112%" height="15" fill="rgb(211,29,28)" fg:x="16624" fg:w="25"/><text x="7.7121%" y="479.50"></text></g><g><title>Parse::do_field_access (61 samples, 0.03%)</title><rect x="7.4504%" y="485" width="0.0274%" height="15" fill="rgb(228,72,33)" fg:x="16598" fg:w="61"/><text x="7.7004%" y="495.50"></text></g><g><title>Parse::do_one_block (330 samples, 0.15%)</title><rect x="7.3472%" y="517" width="0.1481%" height="15" fill="rgb(205,214,31)" fg:x="16368" fg:w="330"/><text x="7.5972%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (324 samples, 0.15%)</title><rect x="7.3499%" y="501" width="0.1454%" height="15" fill="rgb(224,111,15)" fg:x="16374" fg:w="324"/><text x="7.5999%" y="511.50"></text></g><g><title>Parse::do_all_blocks (337 samples, 0.15%)</title><rect x="7.3467%" y="533" width="0.1513%" height="15" fill="rgb(253,21,26)" fg:x="16367" fg:w="337"/><text x="7.5967%" y="543.50"></text></g><g><title>ParseGenerator::generate (373 samples, 0.17%)</title><rect x="7.3386%" y="565" width="0.1674%" height="15" fill="rgb(245,139,43)" fg:x="16349" fg:w="373"/><text x="7.5886%" y="575.50"></text></g><g><title>Parse::Parse (373 samples, 0.17%)</title><rect x="7.3386%" y="549" width="0.1674%" height="15" fill="rgb(252,170,7)" fg:x="16349" fg:w="373"/><text x="7.5886%" y="559.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.01%)</title><rect x="7.5088%" y="501" width="0.0126%" height="15" fill="rgb(231,118,14)" fg:x="16728" fg:w="28"/><text x="7.7588%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.01%)</title><rect x="7.5092%" y="485" width="0.0121%" height="15" fill="rgb(238,83,0)" fg:x="16729" fg:w="27"/><text x="7.7592%" y="495.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.01%)</title><rect x="7.5088%" y="549" width="0.0130%" height="15" fill="rgb(221,39,39)" fg:x="16728" fg:w="29"/><text x="7.7588%" y="559.50"></text></g><g><title>Parse::Parse (29 samples, 0.01%)</title><rect x="7.5088%" y="533" width="0.0130%" height="15" fill="rgb(222,119,46)" fg:x="16728" fg:w="29"/><text x="7.7588%" y="543.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.01%)</title><rect x="7.5088%" y="517" width="0.0130%" height="15" fill="rgb(222,165,49)" fg:x="16728" fg:w="29"/><text x="7.7588%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (40 samples, 0.02%)</title><rect x="7.5070%" y="565" width="0.0180%" height="15" fill="rgb(219,113,52)" fg:x="16724" fg:w="40"/><text x="7.7570%" y="575.50"></text></g><g><title>Parse::do_call (532 samples, 0.24%)</title><rect x="7.2955%" y="581" width="0.2388%" height="15" fill="rgb(214,7,15)" fg:x="16253" fg:w="532"/><text x="7.5455%" y="591.50"></text></g><g><title>Parse::do_get_xxx (44 samples, 0.02%)</title><rect x="7.5397%" y="565" width="0.0198%" height="15" fill="rgb(235,32,4)" fg:x="16797" fg:w="44"/><text x="7.7897%" y="575.50"></text></g><g><title>GraphKit::access_store_at (29 samples, 0.01%)</title><rect x="7.5599%" y="549" width="0.0130%" height="15" fill="rgb(238,90,54)" fg:x="16842" fg:w="29"/><text x="7.8099%" y="559.50"></text></g><g><title>BarrierSetC2::store_at (29 samples, 0.01%)</title><rect x="7.5599%" y="533" width="0.0130%" height="15" fill="rgb(213,208,19)" fg:x="16842" fg:w="29"/><text x="7.8099%" y="543.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (29 samples, 0.01%)</title><rect x="7.5599%" y="517" width="0.0130%" height="15" fill="rgb(233,156,4)" fg:x="16842" fg:w="29"/><text x="7.8099%" y="527.50"></text></g><g><title>Parse::do_put_xxx (35 samples, 0.02%)</title><rect x="7.5595%" y="565" width="0.0157%" height="15" fill="rgb(207,194,5)" fg:x="16841" fg:w="35"/><text x="7.8095%" y="575.50"></text></g><g><title>Parse::do_field_access (90 samples, 0.04%)</title><rect x="7.5370%" y="581" width="0.0404%" height="15" fill="rgb(206,111,30)" fg:x="16791" fg:w="90"/><text x="7.7870%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (717 samples, 0.32%)</title><rect x="7.2816%" y="597" width="0.3218%" height="15" fill="rgb(243,70,54)" fg:x="16222" fg:w="717"/><text x="7.5316%" y="607.50"></text></g><g><title>Parse::do_one_block (727 samples, 0.33%)</title><rect x="7.2776%" y="613" width="0.3263%" height="15" fill="rgb(242,28,8)" fg:x="16213" fg:w="727"/><text x="7.5276%" y="623.50"></text></g><g><title>Parse::do_all_blocks (738 samples, 0.33%)</title><rect x="7.2771%" y="629" width="0.3313%" height="15" fill="rgb(219,106,18)" fg:x="16212" fg:w="738"/><text x="7.5271%" y="639.50"></text></g><g><title>ParseGenerator::generate (816 samples, 0.37%)</title><rect x="7.2556%" y="661" width="0.3663%" height="15" fill="rgb(244,222,10)" fg:x="16164" fg:w="816"/><text x="7.5056%" y="671.50"></text></g><g><title>Parse::Parse (812 samples, 0.36%)</title><rect x="7.2574%" y="645" width="0.3645%" height="15" fill="rgb(236,179,52)" fg:x="16168" fg:w="812"/><text x="7.5074%" y="655.50"></text></g><g><title>Parse::do_call (25 samples, 0.01%)</title><rect x="7.6434%" y="469" width="0.0112%" height="15" fill="rgb(213,23,39)" fg:x="17028" fg:w="25"/><text x="7.8934%" y="479.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.02%)</title><rect x="7.6407%" y="501" width="0.0206%" height="15" fill="rgb(238,48,10)" fg:x="17022" fg:w="46"/><text x="7.8907%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (45 samples, 0.02%)</title><rect x="7.6412%" y="485" width="0.0202%" height="15" fill="rgb(251,196,23)" fg:x="17023" fg:w="45"/><text x="7.8912%" y="495.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.02%)</title><rect x="7.6407%" y="517" width="0.0211%" height="15" fill="rgb(250,152,24)" fg:x="17022" fg:w="47"/><text x="7.8907%" y="527.50"></text></g><g><title>ParseGenerator::generate (54 samples, 0.02%)</title><rect x="7.6389%" y="549" width="0.0242%" height="15" fill="rgb(209,150,17)" fg:x="17018" fg:w="54"/><text x="7.8889%" y="559.50"></text></g><g><title>Parse::Parse (54 samples, 0.02%)</title><rect x="7.6389%" y="533" width="0.0242%" height="15" fill="rgb(234,202,34)" fg:x="17018" fg:w="54"/><text x="7.8889%" y="543.50"></text></g><g><title>Parse::do_call (81 samples, 0.04%)</title><rect x="7.6317%" y="565" width="0.0364%" height="15" fill="rgb(253,148,53)" fg:x="17002" fg:w="81"/><text x="7.8817%" y="575.50"></text></g><g><title>Parse::do_one_block (97 samples, 0.04%)</title><rect x="7.6299%" y="597" width="0.0435%" height="15" fill="rgb(218,129,16)" fg:x="16998" fg:w="97"/><text x="7.8799%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.04%)</title><rect x="7.6304%" y="581" width="0.0431%" height="15" fill="rgb(216,85,19)" fg:x="16999" fg:w="96"/><text x="7.8804%" y="591.50"></text></g><g><title>Parse::do_all_blocks (99 samples, 0.04%)</title><rect x="7.6299%" y="613" width="0.0444%" height="15" fill="rgb(235,228,7)" fg:x="16998" fg:w="99"/><text x="7.8799%" y="623.50"></text></g><g><title>ParseGenerator::generate (109 samples, 0.05%)</title><rect x="7.6277%" y="645" width="0.0489%" height="15" fill="rgb(245,175,0)" fg:x="16993" fg:w="109"/><text x="7.8777%" y="655.50"></text></g><g><title>Parse::Parse (109 samples, 0.05%)</title><rect x="7.6277%" y="629" width="0.0489%" height="15" fill="rgb(208,168,36)" fg:x="16993" fg:w="109"/><text x="7.8777%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (24 samples, 0.01%)</title><rect x="7.6771%" y="645" width="0.0108%" height="15" fill="rgb(246,171,24)" fg:x="17103" fg:w="24"/><text x="7.9271%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (152 samples, 0.07%)</title><rect x="7.6223%" y="661" width="0.0682%" height="15" fill="rgb(215,142,24)" fg:x="16981" fg:w="152"/><text x="7.8723%" y="671.50"></text></g><g><title>Parse::do_call (1,195 samples, 0.54%)</title><rect x="7.1712%" y="677" width="0.5364%" height="15" fill="rgb(250,187,7)" fg:x="15976" fg:w="1195"/><text x="7.4212%" y="687.50"></text></g><g><title>GraphKit::access_load_at (23 samples, 0.01%)</title><rect x="7.7211%" y="645" width="0.0103%" height="15" fill="rgb(228,66,33)" fg:x="17201" fg:w="23"/><text x="7.9711%" y="655.50"></text></g><g><title>BarrierSetC2::load_at (23 samples, 0.01%)</title><rect x="7.7211%" y="629" width="0.0103%" height="15" fill="rgb(234,215,21)" fg:x="17201" fg:w="23"/><text x="7.9711%" y="639.50"></text></g><g><title>Parse::do_get_xxx (45 samples, 0.02%)</title><rect x="7.7152%" y="661" width="0.0202%" height="15" fill="rgb(222,191,20)" fg:x="17188" fg:w="45"/><text x="7.9652%" y="671.50"></text></g><g><title>G1BarrierSetC2::post_barrier (30 samples, 0.01%)</title><rect x="7.7395%" y="597" width="0.0135%" height="15" fill="rgb(245,79,54)" fg:x="17242" fg:w="30"/><text x="7.9895%" y="607.50"></text></g><g><title>Parse::do_put_xxx (55 samples, 0.02%)</title><rect x="7.7354%" y="661" width="0.0247%" height="15" fill="rgb(240,10,37)" fg:x="17233" fg:w="55"/><text x="7.9854%" y="671.50"></text></g><g><title>GraphKit::access_store_at (54 samples, 0.02%)</title><rect x="7.7359%" y="645" width="0.0242%" height="15" fill="rgb(214,192,32)" fg:x="17234" fg:w="54"/><text x="7.9859%" y="655.50"></text></g><g><title>BarrierSetC2::store_at (54 samples, 0.02%)</title><rect x="7.7359%" y="629" width="0.0242%" height="15" fill="rgb(209,36,54)" fg:x="17234" fg:w="54"/><text x="7.9859%" y="639.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (51 samples, 0.02%)</title><rect x="7.7372%" y="613" width="0.0229%" height="15" fill="rgb(220,10,11)" fg:x="17237" fg:w="51"/><text x="7.9872%" y="623.50"></text></g><g><title>Parse::do_field_access (110 samples, 0.05%)</title><rect x="7.7125%" y="677" width="0.0494%" height="15" fill="rgb(221,106,17)" fg:x="17182" fg:w="110"/><text x="7.9625%" y="687.50"></text></g><g><title>Parse::do_one_block (1,407 samples, 0.63%)</title><rect x="7.1528%" y="709" width="0.6316%" height="15" fill="rgb(251,142,44)" fg:x="15935" fg:w="1407"/><text x="7.4028%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (1,398 samples, 0.63%)</title><rect x="7.1568%" y="693" width="0.6275%" height="15" fill="rgb(238,13,15)" fg:x="15944" fg:w="1398"/><text x="7.4068%" y="703.50"></text></g><g><title>Parse::do_all_blocks (1,408 samples, 0.63%)</title><rect x="7.1528%" y="725" width="0.6320%" height="15" fill="rgb(208,107,27)" fg:x="15935" fg:w="1408"/><text x="7.4028%" y="735.50"></text></g><g><title>ParseGenerator::generate (1,422 samples, 0.64%)</title><rect x="7.1474%" y="757" width="0.6383%" height="15" fill="rgb(205,136,37)" fg:x="15923" fg:w="1422"/><text x="7.3974%" y="767.50"></text></g><g><title>Parse::Parse (1,422 samples, 0.64%)</title><rect x="7.1474%" y="741" width="0.6383%" height="15" fill="rgb(250,205,27)" fg:x="15923" fg:w="1422"/><text x="7.3974%" y="751.50"></text></g><g><title>InlineTree::ok_to_inline (23 samples, 0.01%)</title><rect x="7.7951%" y="629" width="0.0103%" height="15" fill="rgb(210,80,43)" fg:x="17366" fg:w="23"/><text x="8.0451%" y="639.50"></text></g><g><title>Compile::call_generator (30 samples, 0.01%)</title><rect x="7.7929%" y="645" width="0.0135%" height="15" fill="rgb(247,160,36)" fg:x="17361" fg:w="30"/><text x="8.0429%" y="655.50"></text></g><g><title>Parse::do_call (27 samples, 0.01%)</title><rect x="7.8423%" y="469" width="0.0121%" height="15" fill="rgb(234,13,49)" fg:x="17471" fg:w="27"/><text x="8.0923%" y="479.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.03%)</title><rect x="7.8355%" y="501" width="0.0283%" height="15" fill="rgb(234,122,0)" fg:x="17456" fg:w="63"/><text x="8.0855%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.03%)</title><rect x="7.8364%" y="485" width="0.0274%" height="15" fill="rgb(207,146,38)" fg:x="17458" fg:w="61"/><text x="8.0864%" y="495.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.03%)</title><rect x="7.8355%" y="517" width="0.0287%" height="15" fill="rgb(207,177,25)" fg:x="17456" fg:w="64"/><text x="8.0855%" y="527.50"></text></g><g><title>ParseGenerator::generate (76 samples, 0.03%)</title><rect x="7.8324%" y="549" width="0.0341%" height="15" fill="rgb(211,178,42)" fg:x="17449" fg:w="76"/><text x="8.0824%" y="559.50"></text></g><g><title>Parse::Parse (76 samples, 0.03%)</title><rect x="7.8324%" y="533" width="0.0341%" height="15" fill="rgb(230,69,54)" fg:x="17449" fg:w="76"/><text x="8.0824%" y="543.50"></text></g><g><title>Parse::do_call (104 samples, 0.05%)</title><rect x="7.8252%" y="565" width="0.0467%" height="15" fill="rgb(214,135,41)" fg:x="17433" fg:w="104"/><text x="8.0752%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.07%)</title><rect x="7.8185%" y="581" width="0.0700%" height="15" fill="rgb(237,67,25)" fg:x="17418" fg:w="156"/><text x="8.0685%" y="591.50"></text></g><g><title>Parse::do_all_blocks (162 samples, 0.07%)</title><rect x="7.8162%" y="613" width="0.0727%" height="15" fill="rgb(222,189,50)" fg:x="17413" fg:w="162"/><text x="8.0662%" y="623.50"></text></g><g><title>Parse::do_one_block (159 samples, 0.07%)</title><rect x="7.8176%" y="597" width="0.0714%" height="15" fill="rgb(245,148,34)" fg:x="17416" fg:w="159"/><text x="8.0676%" y="607.50"></text></g><g><title>ParseGenerator::generate (179 samples, 0.08%)</title><rect x="7.8122%" y="645" width="0.0803%" height="15" fill="rgb(222,29,6)" fg:x="17404" fg:w="179"/><text x="8.0622%" y="655.50"></text></g><g><title>Parse::Parse (178 samples, 0.08%)</title><rect x="7.8126%" y="629" width="0.0799%" height="15" fill="rgb(221,189,43)" fg:x="17405" fg:w="178"/><text x="8.0626%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (26 samples, 0.01%)</title><rect x="7.8925%" y="645" width="0.0117%" height="15" fill="rgb(207,36,27)" fg:x="17583" fg:w="26"/><text x="8.1425%" y="655.50"></text></g><g><title>Parse::do_call (258 samples, 0.12%)</title><rect x="7.7929%" y="661" width="0.1158%" height="15" fill="rgb(217,90,24)" fg:x="17361" fg:w="258"/><text x="8.0429%" y="671.50"></text></g><g><title>Parse::do_all_blocks (307 samples, 0.14%)</title><rect x="7.7871%" y="709" width="0.1378%" height="15" fill="rgb(224,66,35)" fg:x="17348" fg:w="307"/><text x="8.0371%" y="719.50"></text></g><g><title>Parse::do_one_block (307 samples, 0.14%)</title><rect x="7.7871%" y="693" width="0.1378%" height="15" fill="rgb(221,13,50)" fg:x="17348" fg:w="307"/><text x="8.0371%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (305 samples, 0.14%)</title><rect x="7.7880%" y="677" width="0.1369%" height="15" fill="rgb(236,68,49)" fg:x="17350" fg:w="305"/><text x="8.0380%" y="687.50"></text></g><g><title>ParseGenerator::generate (309 samples, 0.14%)</title><rect x="7.7871%" y="741" width="0.1387%" height="15" fill="rgb(229,146,28)" fg:x="17348" fg:w="309"/><text x="8.0371%" y="751.50"></text></g><g><title>Parse::Parse (309 samples, 0.14%)</title><rect x="7.7871%" y="725" width="0.1387%" height="15" fill="rgb(225,31,38)" fg:x="17348" fg:w="309"/><text x="8.0371%" y="735.50"></text></g><g><title>Parse::do_call (25 samples, 0.01%)</title><rect x="7.9280%" y="645" width="0.0112%" height="15" fill="rgb(250,208,3)" fg:x="17662" fg:w="25"/><text x="8.1780%" y="655.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="7.9271%" y="693" width="0.0166%" height="15" fill="rgb(246,54,23)" fg:x="17660" fg:w="37"/><text x="8.1771%" y="703.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.02%)</title><rect x="7.9271%" y="677" width="0.0166%" height="15" fill="rgb(243,76,11)" fg:x="17660" fg:w="37"/><text x="8.1771%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.02%)</title><rect x="7.9271%" y="661" width="0.0166%" height="15" fill="rgb(245,21,50)" fg:x="17660" fg:w="37"/><text x="8.1771%" y="671.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.02%)</title><rect x="7.9258%" y="725" width="0.0184%" height="15" fill="rgb(228,9,43)" fg:x="17657" fg:w="41"/><text x="8.1758%" y="735.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="7.9258%" y="709" width="0.0184%" height="15" fill="rgb(208,100,47)" fg:x="17657" fg:w="41"/><text x="8.1758%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (42 samples, 0.02%)</title><rect x="7.9258%" y="741" width="0.0189%" height="15" fill="rgb(232,26,8)" fg:x="17657" fg:w="42"/><text x="8.1758%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (355 samples, 0.16%)</title><rect x="7.7857%" y="757" width="0.1594%" height="15" fill="rgb(216,166,38)" fg:x="17345" fg:w="355"/><text x="8.0357%" y="767.50"></text></g><g><title>Parse::do_call (1,946 samples, 0.87%)</title><rect x="7.0751%" y="773" width="0.8735%" height="15" fill="rgb(251,202,51)" fg:x="15762" fg:w="1946"/><text x="7.3251%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,959 samples, 0.88%)</title><rect x="7.0738%" y="821" width="0.8793%" height="15" fill="rgb(254,216,34)" fg:x="15759" fg:w="1959"/><text x="7.3238%" y="831.50"></text></g><g><title>Parse::do_one_block (1,959 samples, 0.88%)</title><rect x="7.0738%" y="805" width="0.8793%" height="15" fill="rgb(251,32,27)" fg:x="15759" fg:w="1959"/><text x="7.3238%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (1,959 samples, 0.88%)</title><rect x="7.0738%" y="789" width="0.8793%" height="15" fill="rgb(208,127,28)" fg:x="15759" fg:w="1959"/><text x="7.3238%" y="799.50"></text></g><g><title>C2Compiler::compile_method (1,979 samples, 0.89%)</title><rect x="7.0653%" y="885" width="0.8883%" height="15" fill="rgb(224,137,22)" fg:x="15740" fg:w="1979"/><text x="7.3153%" y="895.50"></text></g><g><title>Compile::Compile (1,979 samples, 0.89%)</title><rect x="7.0653%" y="869" width="0.8883%" height="15" fill="rgb(254,70,32)" fg:x="15740" fg:w="1979"/><text x="7.3153%" y="879.50"></text></g><g><title>ParseGenerator::generate (1,960 samples, 0.88%)</title><rect x="7.0738%" y="853" width="0.8798%" height="15" fill="rgb(229,75,37)" fg:x="15759" fg:w="1960"/><text x="7.3238%" y="863.50"></text></g><g><title>Parse::Parse (1,960 samples, 0.88%)</title><rect x="7.0738%" y="837" width="0.8798%" height="15" fill="rgb(252,64,23)" fg:x="15759" fg:w="1960"/><text x="7.3238%" y="847.50"></text></g><g><title>Monitor::lock_without_safepoint_check (24 samples, 0.01%)</title><rect x="7.9540%" y="773" width="0.0108%" height="15" fill="rgb(232,162,48)" fg:x="17720" fg:w="24"/><text x="8.2040%" y="783.50"></text></g><g><title>Monitor::ILock (24 samples, 0.01%)</title><rect x="7.9540%" y="757" width="0.0108%" height="15" fill="rgb(246,160,12)" fg:x="17720" fg:w="24"/><text x="8.2040%" y="767.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.01%)</title><rect x="7.9545%" y="741" width="0.0103%" height="15" fill="rgb(247,166,0)" fg:x="17721" fg:w="23"/><text x="8.2045%" y="751.50"></text></g><g><title>Compile::init_scratch_buffer_blob (25 samples, 0.01%)</title><rect x="7.9540%" y="837" width="0.0112%" height="15" fill="rgb(249,219,21)" fg:x="17720" fg:w="25"/><text x="8.2040%" y="847.50"></text></g><g><title>BufferBlob::create (25 samples, 0.01%)</title><rect x="7.9540%" y="821" width="0.0112%" height="15" fill="rgb(205,209,3)" fg:x="17720" fg:w="25"/><text x="8.2040%" y="831.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (25 samples, 0.01%)</title><rect x="7.9540%" y="805" width="0.0112%" height="15" fill="rgb(243,44,1)" fg:x="17720" fg:w="25"/><text x="8.2040%" y="815.50"></text></g><g><title>SafepointSynchronize::block (25 samples, 0.01%)</title><rect x="7.9540%" y="789" width="0.0112%" height="15" fill="rgb(206,159,16)" fg:x="17720" fg:w="25"/><text x="8.2040%" y="799.50"></text></g><g><title>MachSpillCopyNode::implementation (43 samples, 0.02%)</title><rect x="7.9653%" y="805" width="0.0193%" height="15" fill="rgb(244,77,30)" fg:x="17745" fg:w="43"/><text x="8.2153%" y="815.50"></text></g><g><title>Compile::Output (72 samples, 0.03%)</title><rect x="7.9540%" y="869" width="0.0323%" height="15" fill="rgb(218,69,12)" fg:x="17720" fg:w="72"/><text x="8.2040%" y="879.50"></text></g><g><title>Compile::init_buffer (72 samples, 0.03%)</title><rect x="7.9540%" y="853" width="0.0323%" height="15" fill="rgb(212,87,7)" fg:x="17720" fg:w="72"/><text x="8.2040%" y="863.50"></text></g><g><title>Compile::shorten_branches (47 samples, 0.02%)</title><rect x="7.9653%" y="837" width="0.0211%" height="15" fill="rgb(245,114,25)" fg:x="17745" fg:w="47"/><text x="8.2153%" y="847.50"></text></g><g><title>Compile::scratch_emit_size (47 samples, 0.02%)</title><rect x="7.9653%" y="821" width="0.0211%" height="15" fill="rgb(210,61,42)" fg:x="17745" fg:w="47"/><text x="8.2153%" y="831.50"></text></g><g><title>PhaseCFG::schedule_late (47 samples, 0.02%)</title><rect x="7.9967%" y="837" width="0.0211%" height="15" fill="rgb(211,52,33)" fg:x="17815" fg:w="47"/><text x="8.2467%" y="847.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (47 samples, 0.02%)</title><rect x="7.9967%" y="821" width="0.0211%" height="15" fill="rgb(234,58,33)" fg:x="17815" fg:w="47"/><text x="8.2467%" y="831.50"></text></g><g><title>MachNode::adr_type (32 samples, 0.01%)</title><rect x="8.0034%" y="805" width="0.0144%" height="15" fill="rgb(220,115,36)" fg:x="17830" fg:w="32"/><text x="8.2534%" y="815.50"></text></g><g><title>PhaseCFG::schedule_local (172 samples, 0.08%)</title><rect x="8.0178%" y="837" width="0.0772%" height="15" fill="rgb(243,153,54)" fg:x="17862" fg:w="172"/><text x="8.2678%" y="847.50"></text></g><g><title>PhaseCFG::sched_call (172 samples, 0.08%)</title><rect x="8.0178%" y="821" width="0.0772%" height="15" fill="rgb(251,47,18)" fg:x="17862" fg:w="172"/><text x="8.2678%" y="831.50"></text></g><g><title>PhaseCFG::do_global_code_motion (231 samples, 0.10%)</title><rect x="7.9953%" y="869" width="0.1037%" height="15" fill="rgb(242,102,42)" fg:x="17812" fg:w="231"/><text x="8.2453%" y="879.50"></text></g><g><title>PhaseCFG::global_code_motion (231 samples, 0.10%)</title><rect x="7.9953%" y="853" width="0.1037%" height="15" fill="rgb(234,31,38)" fg:x="17812" fg:w="231"/><text x="8.2453%" y="863.50"></text></g><g><title>Node::add_req (27 samples, 0.01%)</title><rect x="8.1089%" y="805" width="0.0121%" height="15" fill="rgb(221,117,51)" fg:x="18065" fg:w="27"/><text x="8.3589%" y="815.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (45 samples, 0.02%)</title><rect x="8.1031%" y="821" width="0.0202%" height="15" fill="rgb(212,20,18)" fg:x="18052" fg:w="45"/><text x="8.3531%" y="831.50"></text></g><g><title>PhaseChaitin::Split (58 samples, 0.03%)</title><rect x="8.0990%" y="853" width="0.0260%" height="15" fill="rgb(245,133,36)" fg:x="18043" fg:w="58"/><text x="8.3490%" y="863.50"></text></g><g><title>PhaseChaitin::split_USE (49 samples, 0.02%)</title><rect x="8.1031%" y="837" width="0.0220%" height="15" fill="rgb(212,6,19)" fg:x="18052" fg:w="49"/><text x="8.3531%" y="847.50"></text></g><g><title>Compile::Code_Gen (388 samples, 0.17%)</title><rect x="7.9540%" y="885" width="0.1742%" height="15" fill="rgb(218,1,36)" fg:x="17720" fg:w="388"/><text x="8.2040%" y="895.50"></text></g><g><title>PhaseChaitin::Register_Allocate (65 samples, 0.03%)</title><rect x="8.0990%" y="869" width="0.0292%" height="15" fill="rgb(246,84,54)" fg:x="18043" fg:w="65"/><text x="8.3490%" y="879.50"></text></g><g><title>OopFlow::build_oop_map (98 samples, 0.04%)</title><rect x="8.3809%" y="805" width="0.0440%" height="15" fill="rgb(242,110,6)" fg:x="18671" fg:w="98"/><text x="8.6309%" y="815.50"></text></g><g><title>OopFlow::compute_reach (172 samples, 0.08%)</title><rect x="8.3481%" y="821" width="0.0772%" height="15" fill="rgb(214,47,5)" fg:x="18598" fg:w="172"/><text x="8.5981%" y="831.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (94 samples, 0.04%)</title><rect x="8.4307%" y="821" width="0.0422%" height="15" fill="rgb(218,159,25)" fg:x="18782" fg:w="94"/><text x="8.6807%" y="831.50"></text></g><g><title>Compile::BuildOopMaps (752 samples, 0.34%)</title><rect x="8.1363%" y="837" width="0.3376%" height="15" fill="rgb(215,211,28)" fg:x="18126" fg:w="752"/><text x="8.3863%" y="847.50"></text></g><g><title>BufferBlob::create (35 samples, 0.02%)</title><rect x="8.4779%" y="805" width="0.0157%" height="15" fill="rgb(238,59,32)" fg:x="18887" fg:w="35"/><text x="8.7279%" y="815.50"></text></g><g><title>CodeBuffer::initialize (36 samples, 0.02%)</title><rect x="8.4779%" y="821" width="0.0162%" height="15" fill="rgb(226,82,3)" fg:x="18887" fg:w="36"/><text x="8.7279%" y="831.50"></text></g><g><title>__pthread_cond_signal (28 samples, 0.01%)</title><rect x="8.4990%" y="789" width="0.0126%" height="15" fill="rgb(240,164,32)" fg:x="18934" fg:w="28"/><text x="8.7490%" y="799.50"></text></g><g><title>futex_wake (27 samples, 0.01%)</title><rect x="8.4994%" y="773" width="0.0121%" height="15" fill="rgb(232,46,7)" fg:x="18935" fg:w="27"/><text x="8.7494%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.01%)</title><rect x="8.4999%" y="757" width="0.0117%" height="15" fill="rgb(229,129,53)" fg:x="18936" fg:w="26"/><text x="8.7499%" y="767.50"></text></g><g><title>BufferBlob::create (39 samples, 0.02%)</title><rect x="8.4945%" y="805" width="0.0175%" height="15" fill="rgb(234,188,29)" fg:x="18924" fg:w="39"/><text x="8.7445%" y="815.50"></text></g><g><title>Compile::init_scratch_buffer_blob (40 samples, 0.02%)</title><rect x="8.4945%" y="821" width="0.0180%" height="15" fill="rgb(246,141,4)" fg:x="18924" fg:w="40"/><text x="8.7445%" y="831.50"></text></g><g><title>Compile::scratch_emit_size (162 samples, 0.07%)</title><rect x="8.5775%" y="805" width="0.0727%" height="15" fill="rgb(229,23,39)" fg:x="19109" fg:w="162"/><text x="8.8275%" y="815.50"></text></g><g><title>Compile::shorten_branches (338 samples, 0.15%)</title><rect x="8.5124%" y="821" width="0.1517%" height="15" fill="rgb(206,12,3)" fg:x="18964" fg:w="338"/><text x="8.7624%" y="831.50"></text></g><g><title>Compile::init_buffer (426 samples, 0.19%)</title><rect x="8.4738%" y="837" width="0.1912%" height="15" fill="rgb(252,226,20)" fg:x="18878" fg:w="426"/><text x="8.7238%" y="847.50"></text></g><g><title>Compile::Output (1,195 samples, 0.54%)</title><rect x="8.1300%" y="853" width="0.5364%" height="15" fill="rgb(216,123,35)" fg:x="18112" fg:w="1195"/><text x="8.3800%" y="863.50"></text></g><g><title>Compile::FillLocArray (35 samples, 0.02%)</title><rect x="8.7575%" y="821" width="0.0157%" height="15" fill="rgb(212,68,40)" fg:x="19510" fg:w="35"/><text x="9.0075%" y="831.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (36 samples, 0.02%)</title><rect x="8.7809%" y="805" width="0.0162%" height="15" fill="rgb(254,125,32)" fg:x="19562" fg:w="36"/><text x="9.0309%" y="815.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (54 samples, 0.02%)</title><rect x="8.7768%" y="821" width="0.0242%" height="15" fill="rgb(253,97,22)" fg:x="19553" fg:w="54"/><text x="9.0268%" y="831.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (36 samples, 0.02%)</title><rect x="8.8078%" y="805" width="0.0162%" height="15" fill="rgb(241,101,14)" fg:x="19622" fg:w="36"/><text x="9.0578%" y="815.50"></text></g><g><title>DebugInformationRecorder::describe_scope (53 samples, 0.02%)</title><rect x="8.8011%" y="821" width="0.0238%" height="15" fill="rgb(238,103,29)" fg:x="19607" fg:w="53"/><text x="9.0511%" y="831.50"></text></g><g><title>Compile::Process_OopMap_Node (219 samples, 0.10%)</title><rect x="8.7454%" y="837" width="0.0983%" height="15" fill="rgb(233,195,47)" fg:x="19483" fg:w="219"/><text x="8.9954%" y="847.50"></text></g><g><title>resource_allocate_bytes (26 samples, 0.01%)</title><rect x="8.8320%" y="821" width="0.0117%" height="15" fill="rgb(246,218,30)" fg:x="19676" fg:w="26"/><text x="9.0820%" y="831.50"></text></g><g><title>Compile::valid_bundle_info (56 samples, 0.03%)</title><rect x="8.8464%" y="837" width="0.0251%" height="15" fill="rgb(219,145,47)" fg:x="19708" fg:w="56"/><text x="9.0964%" y="847.50"></text></g><g><title>Compile::fill_buffer (564 samples, 0.25%)</title><rect x="8.6673%" y="853" width="0.2532%" height="15" fill="rgb(243,12,26)" fg:x="19309" fg:w="564"/><text x="8.9173%" y="863.50"></text></g><g><title>Matcher::init_first_stack_mask (30 samples, 0.01%)</title><rect x="8.9478%" y="821" width="0.0135%" height="15" fill="rgb(214,87,16)" fg:x="19934" fg:w="30"/><text x="9.1978%" y="831.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (37 samples, 0.02%)</title><rect x="8.9451%" y="837" width="0.0166%" height="15" fill="rgb(208,99,42)" fg:x="19928" fg:w="37"/><text x="9.1951%" y="847.50"></text></g><g><title>Matcher::is_bmi_pattern (38 samples, 0.02%)</title><rect x="9.0924%" y="821" width="0.0171%" height="15" fill="rgb(253,99,2)" fg:x="20256" fg:w="38"/><text x="9.3424%" y="831.50"></text></g><g><title>Matcher::find_shared (348 samples, 0.16%)</title><rect x="8.9618%" y="837" width="0.1562%" height="15" fill="rgb(220,168,23)" fg:x="19965" fg:w="348"/><text x="9.2118%" y="847.50"></text></g><g><title>Arena::contains (566 samples, 0.25%)</title><rect x="9.2728%" y="821" width="0.2541%" height="15" fill="rgb(242,38,24)" fg:x="20658" fg:w="566"/><text x="9.5228%" y="831.50"></text></g><g><title>Matcher::collect_null_checks (24 samples, 0.01%)</title><rect x="9.5318%" y="821" width="0.0108%" height="15" fill="rgb(225,182,9)" fg:x="21235" fg:w="24"/><text x="9.7818%" y="831.50"></text></g><g><title>Matcher::ReduceInst (26 samples, 0.01%)</title><rect x="9.5740%" y="789" width="0.0117%" height="15" fill="rgb(243,178,37)" fg:x="21329" fg:w="26"/><text x="9.8240%" y="799.50"></text></g><g><title>Matcher::match_tree (94 samples, 0.04%)</title><rect x="9.5525%" y="805" width="0.0422%" height="15" fill="rgb(232,139,19)" fg:x="21281" fg:w="94"/><text x="9.8025%" y="815.50"></text></g><g><title>Matcher::match_sfpt (126 samples, 0.06%)</title><rect x="9.5426%" y="821" width="0.0566%" height="15" fill="rgb(225,201,24)" fg:x="21259" fg:w="126"/><text x="9.7926%" y="831.50"></text></g><g><title>State::DFA (23 samples, 0.01%)</title><rect x="9.7881%" y="741" width="0.0103%" height="15" fill="rgb(221,47,46)" fg:x="21806" fg:w="23"/><text x="10.0381%" y="751.50"></text></g><g><title>Matcher::Label_Root (53 samples, 0.02%)</title><rect x="9.7756%" y="757" width="0.0238%" height="15" fill="rgb(249,23,13)" fg:x="21778" fg:w="53"/><text x="10.0256%" y="767.50"></text></g><g><title>State::DFA (41 samples, 0.02%)</title><rect x="9.7994%" y="757" width="0.0184%" height="15" fill="rgb(219,9,5)" fg:x="21831" fg:w="41"/><text x="10.0494%" y="767.50"></text></g><g><title>Matcher::Label_Root (123 samples, 0.06%)</title><rect x="9.7648%" y="773" width="0.0552%" height="15" fill="rgb(254,171,16)" fg:x="21754" fg:w="123"/><text x="10.0148%" y="783.50"></text></g><g><title>State::_sub_Op_AddP (25 samples, 0.01%)</title><rect x="9.8267%" y="757" width="0.0112%" height="15" fill="rgb(230,171,20)" fg:x="21892" fg:w="25"/><text x="10.0767%" y="767.50"></text></g><g><title>State::DFA (54 samples, 0.02%)</title><rect x="9.8218%" y="773" width="0.0242%" height="15" fill="rgb(210,71,41)" fg:x="21881" fg:w="54"/><text x="10.0718%" y="783.50"></text></g><g><title>Matcher::Label_Root (264 samples, 0.12%)</title><rect x="9.7307%" y="789" width="0.1185%" height="15" fill="rgb(206,173,20)" fg:x="21678" fg:w="264"/><text x="9.9807%" y="799.50"></text></g><g><title>State::DFA (48 samples, 0.02%)</title><rect x="9.8496%" y="789" width="0.0215%" height="15" fill="rgb(233,88,34)" fg:x="21943" fg:w="48"/><text x="10.0996%" y="799.50"></text></g><g><title>Matcher::Label_Root (420 samples, 0.19%)</title><rect x="9.6934%" y="805" width="0.1885%" height="15" fill="rgb(223,209,46)" fg:x="21595" fg:w="420"/><text x="9.9434%" y="815.50"></text></g><g><title>Matcher::ReduceInst (25 samples, 0.01%)</title><rect x="9.9075%" y="741" width="0.0112%" height="15" fill="rgb(250,43,18)" fg:x="22072" fg:w="25"/><text x="10.1575%" y="751.50"></text></g><g><title>Matcher::ReduceInst_Interior (52 samples, 0.02%)</title><rect x="9.9044%" y="757" width="0.0233%" height="15" fill="rgb(208,13,10)" fg:x="22065" fg:w="52"/><text x="10.1544%" y="767.50"></text></g><g><title>State::MachNodeGenerator (25 samples, 0.01%)</title><rect x="9.9309%" y="757" width="0.0112%" height="15" fill="rgb(212,200,36)" fg:x="22124" fg:w="25"/><text x="10.1809%" y="767.50"></text></g><g><title>Matcher::ReduceInst (107 samples, 0.05%)</title><rect x="9.8986%" y="773" width="0.0480%" height="15" fill="rgb(225,90,30)" fg:x="22052" fg:w="107"/><text x="10.1486%" y="783.50"></text></g><g><title>Matcher::ReduceInst_Interior (175 samples, 0.08%)</title><rect x="9.8914%" y="789" width="0.0786%" height="15" fill="rgb(236,182,39)" fg:x="22036" fg:w="175"/><text x="10.1414%" y="799.50"></text></g><g><title>State::MachOperGenerator (23 samples, 0.01%)</title><rect x="9.9596%" y="773" width="0.0103%" height="15" fill="rgb(212,144,35)" fg:x="22188" fg:w="23"/><text x="10.2096%" y="783.50"></text></g><g><title>State::MachNodeGenerator (69 samples, 0.03%)</title><rect x="9.9843%" y="789" width="0.0310%" height="15" fill="rgb(228,63,44)" fg:x="22243" fg:w="69"/><text x="10.2343%" y="799.50"></text></g><g><title>Matcher::ReduceInst (325 samples, 0.15%)</title><rect x="9.8819%" y="805" width="0.1459%" height="15" fill="rgb(228,109,6)" fg:x="22015" fg:w="325"/><text x="10.1319%" y="815.50"></text></g><g><title>Matcher::match_tree (968 samples, 0.43%)</title><rect x="9.5992%" y="821" width="0.4345%" height="15" fill="rgb(238,117,24)" fg:x="21385" fg:w="968"/><text x="9.8492%" y="831.50"></text></g><g><title>Node::clone (76 samples, 0.03%)</title><rect x="10.0359%" y="821" width="0.0341%" height="15" fill="rgb(242,26,26)" fg:x="22358" fg:w="76"/><text x="10.2859%" y="831.50"></text></g><g><title>Node::out_grow (46 samples, 0.02%)</title><rect x="10.0700%" y="821" width="0.0206%" height="15" fill="rgb(221,92,48)" fg:x="22434" fg:w="46"/><text x="10.3200%" y="831.50"></text></g><g><title>Matcher::xform (2,165 samples, 0.97%)</title><rect x="9.1211%" y="837" width="0.9718%" height="15" fill="rgb(209,209,32)" fg:x="20320" fg:w="2165"/><text x="9.3711%" y="847.50"></text></g><g><title>Matcher::match (2,610 samples, 1.17%)</title><rect x="8.9267%" y="853" width="1.1716%" height="15" fill="rgb(221,70,22)" fg:x="19887" fg:w="2610"/><text x="9.1767%" y="863.50"></text></g><g><title>PhaseBlockLayout::find_edges (64 samples, 0.03%)</title><rect x="10.1001%" y="837" width="0.0287%" height="15" fill="rgb(248,145,5)" fg:x="22501" fg:w="64"/><text x="10.3501%" y="847.50"></text></g><g><title>PhaseBlockLayout::grow_traces (48 samples, 0.02%)</title><rect x="10.1288%" y="837" width="0.0215%" height="15" fill="rgb(226,116,26)" fg:x="22565" fg:w="48"/><text x="10.3788%" y="847.50"></text></g><g><title>__GI___qsort_r (31 samples, 0.01%)</title><rect x="10.1365%" y="821" width="0.0139%" height="15" fill="rgb(244,5,17)" fg:x="22582" fg:w="31"/><text x="10.3865%" y="831.50"></text></g><g><title>msort_with_tmp (30 samples, 0.01%)</title><rect x="10.1369%" y="805" width="0.0135%" height="15" fill="rgb(252,159,33)" fg:x="22583" fg:w="30"/><text x="10.3869%" y="815.50"></text></g><g><title>msort_with_tmp (29 samples, 0.01%)</title><rect x="10.1374%" y="789" width="0.0130%" height="15" fill="rgb(206,71,0)" fg:x="22584" fg:w="29"/><text x="10.3874%" y="799.50"></text></g><g><title>msort_with_tmp (28 samples, 0.01%)</title><rect x="10.1378%" y="773" width="0.0126%" height="15" fill="rgb(233,118,54)" fg:x="22585" fg:w="28"/><text x="10.3878%" y="783.50"></text></g><g><title>msort_with_tmp (28 samples, 0.01%)</title><rect x="10.1378%" y="757" width="0.0126%" height="15" fill="rgb(234,83,48)" fg:x="22585" fg:w="28"/><text x="10.3878%" y="767.50"></text></g><g><title>msort_with_tmp (25 samples, 0.01%)</title><rect x="10.1392%" y="741" width="0.0112%" height="15" fill="rgb(228,3,54)" fg:x="22588" fg:w="25"/><text x="10.3892%" y="751.50"></text></g><g><title>msort_with_tmp (24 samples, 0.01%)</title><rect x="10.1396%" y="725" width="0.0108%" height="15" fill="rgb(226,155,13)" fg:x="22589" fg:w="24"/><text x="10.3896%" y="735.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (152 samples, 0.07%)</title><rect x="10.0983%" y="853" width="0.0682%" height="15" fill="rgb(241,28,37)" fg:x="22497" fg:w="152"/><text x="10.3483%" y="863.50"></text></g><g><title>PhaseBlockLayout::reorder_traces (29 samples, 0.01%)</title><rect x="10.1535%" y="837" width="0.0130%" height="15" fill="rgb(233,93,10)" fg:x="22620" fg:w="29"/><text x="10.4035%" y="847.50"></text></g><g><title>Trace::fixup_blocks (27 samples, 0.01%)</title><rect x="10.1544%" y="821" width="0.0121%" height="15" fill="rgb(225,113,19)" fg:x="22622" fg:w="27"/><text x="10.4044%" y="831.50"></text></g><g><title>PhaseCFG::PhaseCFG (153 samples, 0.07%)</title><rect x="10.1665%" y="853" width="0.0687%" height="15" fill="rgb(241,2,18)" fg:x="22649" fg:w="153"/><text x="10.4165%" y="863.50"></text></g><g><title>PhaseCFG::build_cfg (141 samples, 0.06%)</title><rect x="10.1719%" y="837" width="0.0633%" height="15" fill="rgb(228,207,21)" fg:x="22661" fg:w="141"/><text x="10.4219%" y="847.50"></text></g><g><title>PhaseCFG::do_DFS (32 samples, 0.01%)</title><rect x="10.2599%" y="821" width="0.0144%" height="15" fill="rgb(213,211,35)" fg:x="22857" fg:w="32"/><text x="10.5099%" y="831.50"></text></g><g><title>PhaseCFG::build_dominator_tree (87 samples, 0.04%)</title><rect x="10.2361%" y="837" width="0.0391%" height="15" fill="rgb(209,83,10)" fg:x="22804" fg:w="87"/><text x="10.4861%" y="847.50"></text></g><g><title>CFGLoop::compute_freq (25 samples, 0.01%)</title><rect x="10.2783%" y="821" width="0.0112%" height="15" fill="rgb(209,164,1)" fg:x="22898" fg:w="25"/><text x="10.5283%" y="831.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (55 samples, 0.02%)</title><rect x="10.2752%" y="837" width="0.0247%" height="15" fill="rgb(213,184,43)" fg:x="22891" fg:w="55"/><text x="10.5252%" y="847.50"></text></g><g><title>PhaseCFG::call_catch_cleanup (26 samples, 0.01%)</title><rect x="10.4601%" y="821" width="0.0117%" height="15" fill="rgb(231,61,34)" fg:x="23303" fg:w="26"/><text x="10.7101%" y="831.50"></text></g><g><title>PhaseCFG::implicit_null_check (53 samples, 0.02%)</title><rect x="10.4718%" y="821" width="0.0238%" height="15" fill="rgb(235,75,3)" fg:x="23329" fg:w="53"/><text x="10.7218%" y="831.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (31 samples, 0.01%)</title><rect x="10.4956%" y="821" width="0.0139%" height="15" fill="rgb(220,106,47)" fg:x="23382" fg:w="31"/><text x="10.7456%" y="831.50"></text></g><g><title>Node_Backward_Iterator::next (248 samples, 0.11%)</title><rect x="10.5597%" y="805" width="0.1113%" height="15" fill="rgb(210,196,33)" fg:x="23525" fg:w="248"/><text x="10.8097%" y="815.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (92 samples, 0.04%)</title><rect x="10.6711%" y="805" width="0.0413%" height="15" fill="rgb(229,154,42)" fg:x="23773" fg:w="92"/><text x="10.9211%" y="815.50"></text></g><g><title>MachNode::adr_type (41 samples, 0.02%)</title><rect x="10.7505%" y="789" width="0.0184%" height="15" fill="rgb(228,114,26)" fg:x="23950" fg:w="41"/><text x="11.0005%" y="799.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (154 samples, 0.07%)</title><rect x="10.7124%" y="805" width="0.0691%" height="15" fill="rgb(208,144,1)" fg:x="23865" fg:w="154"/><text x="10.9624%" y="815.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (64 samples, 0.03%)</title><rect x="10.7815%" y="805" width="0.0287%" height="15" fill="rgb(239,112,37)" fg:x="24019" fg:w="64"/><text x="11.0315%" y="815.50"></text></g><g><title>Node_Array::insert (36 samples, 0.02%)</title><rect x="10.7941%" y="789" width="0.0162%" height="15" fill="rgb(210,96,50)" fg:x="24047" fg:w="36"/><text x="11.0441%" y="799.50"></text></g><g><title>PhaseCFG::schedule_late (674 samples, 0.30%)</title><rect x="10.5095%" y="821" width="0.3025%" height="15" fill="rgb(222,178,2)" fg:x="23413" fg:w="674"/><text x="10.7595%" y="831.50"></text></g><g><title>Node::is_iteratively_computed (23 samples, 0.01%)</title><rect x="10.9121%" y="805" width="0.0103%" height="15" fill="rgb(226,74,18)" fg:x="24310" fg:w="23"/><text x="11.1621%" y="815.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (65 samples, 0.03%)</title><rect x="10.9233%" y="805" width="0.0292%" height="15" fill="rgb(225,67,54)" fg:x="24335" fg:w="65"/><text x="11.1733%" y="815.50"></text></g><g><title>PhaseCFG::needed_for_next_call (25 samples, 0.01%)</title><rect x="10.9525%" y="805" width="0.0112%" height="15" fill="rgb(251,92,32)" fg:x="24400" fg:w="25"/><text x="11.2025%" y="815.50"></text></g><g><title>PhaseCFG::select (85 samples, 0.04%)</title><rect x="10.9642%" y="805" width="0.0382%" height="15" fill="rgb(228,149,22)" fg:x="24426" fg:w="85"/><text x="11.2142%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (26 samples, 0.01%)</title><rect x="11.0104%" y="789" width="0.0117%" height="15" fill="rgb(243,54,13)" fg:x="24529" fg:w="26"/><text x="11.2604%" y="799.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (68 samples, 0.03%)</title><rect x="11.0023%" y="805" width="0.0305%" height="15" fill="rgb(243,180,28)" fg:x="24511" fg:w="68"/><text x="11.2523%" y="815.50"></text></g><g><title>PhaseChaitin::raise_pressure (24 samples, 0.01%)</title><rect x="11.0221%" y="789" width="0.0108%" height="15" fill="rgb(208,167,24)" fg:x="24555" fg:w="24"/><text x="11.2721%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (23 samples, 0.01%)</title><rect x="11.0450%" y="789" width="0.0103%" height="15" fill="rgb(245,73,45)" fg:x="24606" fg:w="23"/><text x="11.2950%" y="799.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (59 samples, 0.03%)</title><rect x="11.0329%" y="805" width="0.0265%" height="15" fill="rgb(237,203,48)" fg:x="24579" fg:w="59"/><text x="11.2829%" y="815.50"></text></g><g><title>PhaseCFG::schedule_local (558 samples, 0.25%)</title><rect x="10.8120%" y="821" width="0.2505%" height="15" fill="rgb(211,197,16)" fg:x="24087" fg:w="558"/><text x="11.0620%" y="831.50"></text></g><g><title>RegMask::Size (91 samples, 0.04%)</title><rect x="11.2066%" y="805" width="0.0408%" height="15" fill="rgb(243,99,51)" fg:x="24966" fg:w="91"/><text x="11.4566%" y="815.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (440 samples, 0.20%)</title><rect x="11.0804%" y="821" width="0.1975%" height="15" fill="rgb(215,123,29)" fg:x="24685" fg:w="440"/><text x="11.3304%" y="831.50"></text></g><g><title>PhaseChaitin::mark_ssa (91 samples, 0.04%)</title><rect x="11.2779%" y="821" width="0.0408%" height="15" fill="rgb(239,186,37)" fg:x="25125" fg:w="91"/><text x="11.5279%" y="831.50"></text></g><g><title>IndexSet::initialize (106 samples, 0.05%)</title><rect x="11.3381%" y="805" width="0.0476%" height="15" fill="rgb(252,136,39)" fg:x="25259" fg:w="106"/><text x="11.5881%" y="815.50"></text></g><g><title>PhaseIFG::init (182 samples, 0.08%)</title><rect x="11.3188%" y="821" width="0.0817%" height="15" fill="rgb(223,213,32)" fg:x="25216" fg:w="182"/><text x="11.5688%" y="831.50"></text></g><g><title>[libc-2.31.so] (33 samples, 0.01%)</title><rect x="11.3857%" y="805" width="0.0148%" height="15" fill="rgb(233,115,5)" fg:x="25365" fg:w="33"/><text x="11.6357%" y="815.50"></text></g><g><title>IndexSet::initialize (53 samples, 0.02%)</title><rect x="11.5123%" y="805" width="0.0238%" height="15" fill="rgb(207,226,44)" fg:x="25647" fg:w="53"/><text x="11.7623%" y="815.50"></text></g><g><title>IndexSet::alloc_block_containing (29 samples, 0.01%)</title><rect x="11.5733%" y="789" width="0.0130%" height="15" fill="rgb(208,126,0)" fg:x="25783" fg:w="29"/><text x="11.8233%" y="799.50"></text></g><g><title>PhaseLive::add_livein (190 samples, 0.09%)</title><rect x="11.5369%" y="805" width="0.0853%" height="15" fill="rgb(244,66,21)" fg:x="25702" fg:w="190"/><text x="11.7869%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (80 samples, 0.04%)</title><rect x="11.5863%" y="789" width="0.0359%" height="15" fill="rgb(222,97,12)" fg:x="25812" fg:w="80"/><text x="11.8363%" y="799.50"></text></g><g><title>__tls_get_addr (26 samples, 0.01%)</title><rect x="11.7201%" y="773" width="0.0117%" height="15" fill="rgb(219,213,19)" fg:x="26110" fg:w="26"/><text x="11.9701%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (79 samples, 0.04%)</title><rect x="11.6999%" y="789" width="0.0355%" height="15" fill="rgb(252,169,30)" fg:x="26065" fg:w="79"/><text x="11.9499%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (106 samples, 0.05%)</title><rect x="11.7452%" y="789" width="0.0476%" height="15" fill="rgb(206,32,51)" fg:x="26166" fg:w="106"/><text x="11.9952%" y="799.50"></text></g><g><title>PhaseLive::add_liveout (384 samples, 0.17%)</title><rect x="11.6222%" y="805" width="0.1724%" height="15" fill="rgb(250,172,42)" fg:x="25892" fg:w="384"/><text x="11.8722%" y="815.50"></text></g><g><title>PhaseLive::compute (880 samples, 0.40%)</title><rect x="11.4005%" y="821" width="0.3950%" height="15" fill="rgb(209,34,43)" fg:x="25398" fg:w="880"/><text x="11.6505%" y="831.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,489 samples, 1.57%)</title><rect x="10.2352%" y="853" width="1.5661%" height="15" fill="rgb(223,11,35)" fg:x="22802" fg:w="3489"/><text x="10.4852%" y="863.50"></text></g><g><title>PhaseCFG::global_code_motion (3,345 samples, 1.50%)</title><rect x="10.2998%" y="837" width="1.5015%" height="15" fill="rgb(251,219,26)" fg:x="22946" fg:w="3345"/><text x="10.5498%" y="847.50"></text></g><g><title>PhaseCFG::fixup_flow (23 samples, 0.01%)</title><rect x="11.8013%" y="853" width="0.0103%" height="15" fill="rgb(231,119,3)" fg:x="26291" fg:w="23"/><text x="12.0513%" y="863.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (72 samples, 0.03%)</title><rect x="11.8117%" y="853" width="0.0323%" height="15" fill="rgb(216,97,11)" fg:x="26314" fg:w="72"/><text x="12.0617%" y="863.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,167 samples, 0.52%)</title><rect x="11.9100%" y="837" width="0.5238%" height="15" fill="rgb(223,59,9)" fg:x="26533" fg:w="1167"/><text x="12.1600%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (293 samples, 0.13%)</title><rect x="12.6870%" y="821" width="0.1315%" height="15" fill="rgb(233,93,31)" fg:x="28264" fg:w="293"/><text x="12.9370%" y="831.50"></text></g><g><title>RegMask::find_first_set (34 samples, 0.02%)</title><rect x="12.8674%" y="805" width="0.0153%" height="15" fill="rgb(239,81,33)" fg:x="28666" fg:w="34"/><text x="13.1174%" y="815.50"></text></g><g><title>PhaseChaitin::bias_color (155 samples, 0.07%)</title><rect x="12.8185%" y="821" width="0.0696%" height="15" fill="rgb(213,120,34)" fg:x="28557" fg:w="155"/><text x="13.0685%" y="831.50"></text></g><g><title>IndexSet::alloc_block_containing (54 samples, 0.02%)</title><rect x="13.0393%" y="805" width="0.0242%" height="15" fill="rgb(243,49,53)" fg:x="29049" fg:w="54"/><text x="13.2893%" y="815.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (55 samples, 0.02%)</title><rect x="13.0636%" y="805" width="0.0247%" height="15" fill="rgb(247,216,33)" fg:x="29103" fg:w="55"/><text x="13.3136%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (347 samples, 0.16%)</title><rect x="13.0882%" y="805" width="0.1558%" height="15" fill="rgb(226,26,14)" fg:x="29158" fg:w="347"/><text x="13.3382%" y="815.50"></text></g><g><title>PhaseIFG::re_insert (795 samples, 0.36%)</title><rect x="12.8903%" y="821" width="0.3569%" height="15" fill="rgb(215,49,53)" fg:x="28717" fg:w="795"/><text x="13.1403%" y="831.50"></text></g><g><title>RegMask::clear_to_sets (129 samples, 0.06%)</title><rect x="13.2471%" y="821" width="0.0579%" height="15" fill="rgb(245,162,40)" fg:x="29512" fg:w="129"/><text x="13.4971%" y="831.50"></text></g><g><title>PhaseChaitin::Select (1,947 samples, 0.87%)</title><rect x="12.4338%" y="837" width="0.8740%" height="15" fill="rgb(229,68,17)" fg:x="27700" fg:w="1947"/><text x="12.6838%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (293 samples, 0.13%)</title><rect x="13.4092%" y="821" width="0.1315%" height="15" fill="rgb(213,182,10)" fg:x="29873" fg:w="293"/><text x="13.6592%" y="831.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (69 samples, 0.03%)</title><rect x="13.7306%" y="805" width="0.0310%" height="15" fill="rgb(245,125,30)" fg:x="30589" fg:w="69"/><text x="13.9806%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (410 samples, 0.18%)</title><rect x="13.7616%" y="805" width="0.1840%" height="15" fill="rgb(232,202,2)" fg:x="30658" fg:w="410"/><text x="14.0116%" y="815.50"></text></g><g><title>PhaseIFG::remove_node (905 samples, 0.41%)</title><rect x="13.5407%" y="821" width="0.4062%" height="15" fill="rgb(237,140,51)" fg:x="30166" fg:w="905"/><text x="13.7907%" y="831.50"></text></g><g><title>PhaseChaitin::Simplify (1,426 samples, 0.64%)</title><rect x="13.3077%" y="837" width="0.6401%" height="15" fill="rgb(236,157,25)" fg:x="29647" fg:w="1426"/><text x="13.5577%" y="847.50"></text></g><g><title>MachNode::ideal_reg (29 samples, 0.01%)</title><rect x="15.1136%" y="805" width="0.0130%" height="15" fill="rgb(219,209,0)" fg:x="33670" fg:w="29"/><text x="15.3636%" y="815.50"></text></g><g><title>MachNode::rematerialize (139 samples, 0.06%)</title><rect x="15.0673%" y="821" width="0.0624%" height="15" fill="rgb(240,116,54)" fg:x="33567" fg:w="139"/><text x="15.3173%" y="831.50"></text></g><g><title>Node::rematerialize (142 samples, 0.06%)</title><rect x="15.1472%" y="821" width="0.0637%" height="15" fill="rgb(216,10,36)" fg:x="33745" fg:w="142"/><text x="15.3972%" y="831.50"></text></g><g><title>Node::replace_by (25 samples, 0.01%)</title><rect x="15.2110%" y="821" width="0.0112%" height="15" fill="rgb(222,72,44)" fg:x="33887" fg:w="25"/><text x="15.4610%" y="831.50"></text></g><g><title>PhaseChaitin::split_DEF (23 samples, 0.01%)</title><rect x="15.2392%" y="821" width="0.0103%" height="15" fill="rgb(232,159,9)" fg:x="33950" fg:w="23"/><text x="15.4892%" y="831.50"></text></g><g><title>PhaseChaitin::clone_projs (25 samples, 0.01%)</title><rect x="15.2572%" y="805" width="0.0112%" height="15" fill="rgb(210,39,32)" fg:x="33990" fg:w="25"/><text x="15.5072%" y="815.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (48 samples, 0.02%)</title><rect x="15.2496%" y="821" width="0.0215%" height="15" fill="rgb(216,194,45)" fg:x="33973" fg:w="48"/><text x="15.4996%" y="831.50"></text></g><g><title>RegMask::is_aligned_pairs (45 samples, 0.02%)</title><rect x="15.3138%" y="789" width="0.0202%" height="15" fill="rgb(218,18,35)" fg:x="34116" fg:w="45"/><text x="15.5638%" y="799.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (89 samples, 0.04%)</title><rect x="15.2994%" y="805" width="0.0399%" height="15" fill="rgb(207,83,51)" fg:x="34084" fg:w="89"/><text x="15.5494%" y="815.50"></text></g><g><title>PhaseChaitin::insert_proj (23 samples, 0.01%)</title><rect x="15.3393%" y="805" width="0.0103%" height="15" fill="rgb(225,63,43)" fg:x="34173" fg:w="23"/><text x="15.5893%" y="815.50"></text></g><g><title>PhaseChaitin::split_USE (181 samples, 0.08%)</title><rect x="15.2711%" y="821" width="0.0812%" height="15" fill="rgb(207,57,36)" fg:x="34021" fg:w="181"/><text x="15.5211%" y="831.50"></text></g><g><title>RegMask::Size (25 samples, 0.01%)</title><rect x="15.3578%" y="821" width="0.0112%" height="15" fill="rgb(216,99,33)" fg:x="34214" fg:w="25"/><text x="15.6078%" y="831.50"></text></g><g><title>handle_irq_event (29 samples, 0.01%)</title><rect x="15.3865%" y="773" width="0.0130%" height="15" fill="rgb(225,42,16)" fg:x="34278" fg:w="29"/><text x="15.6365%" y="783.50"></text></g><g><title>__handle_irq_event_percpu (29 samples, 0.01%)</title><rect x="15.3865%" y="757" width="0.0130%" height="15" fill="rgb(220,201,45)" fg:x="34278" fg:w="29"/><text x="15.6365%" y="767.50"></text></g><g><title>nvme_irq (29 samples, 0.01%)</title><rect x="15.3865%" y="741" width="0.0130%" height="15" fill="rgb(225,33,4)" fg:x="34278" fg:w="29"/><text x="15.6365%" y="751.50"></text></g><g><title>nvme_process_cq (29 samples, 0.01%)</title><rect x="15.3865%" y="725" width="0.0130%" height="15" fill="rgb(224,33,50)" fg:x="34278" fg:w="29"/><text x="15.6365%" y="735.50"></text></g><g><title>blk_mq_end_request (28 samples, 0.01%)</title><rect x="15.3869%" y="709" width="0.0126%" height="15" fill="rgb(246,198,51)" fg:x="34279" fg:w="28"/><text x="15.6369%" y="719.50"></text></g><g><title>blk_update_request (28 samples, 0.01%)</title><rect x="15.3869%" y="693" width="0.0126%" height="15" fill="rgb(205,22,4)" fg:x="34279" fg:w="28"/><text x="15.6369%" y="703.50"></text></g><g><title>asm_common_interrupt (30 samples, 0.01%)</title><rect x="15.3865%" y="821" width="0.0135%" height="15" fill="rgb(206,3,8)" fg:x="34278" fg:w="30"/><text x="15.6365%" y="831.50"></text></g><g><title>common_interrupt (30 samples, 0.01%)</title><rect x="15.3865%" y="805" width="0.0135%" height="15" fill="rgb(251,23,15)" fg:x="34278" fg:w="30"/><text x="15.6365%" y="815.50"></text></g><g><title>handle_edge_irq (30 samples, 0.01%)</title><rect x="15.3865%" y="789" width="0.0135%" height="15" fill="rgb(252,88,28)" fg:x="34278" fg:w="30"/><text x="15.6365%" y="799.50"></text></g><g><title>PhaseChaitin::Split (3,267 samples, 1.47%)</title><rect x="13.9478%" y="837" width="1.4665%" height="15" fill="rgb(212,127,14)" fg:x="31073" fg:w="3267"/><text x="14.1978%" y="847.50"></text></g><g><title>__tls_get_addr (33 samples, 0.01%)</title><rect x="15.8955%" y="805" width="0.0148%" height="15" fill="rgb(247,145,37)" fg:x="35412" fg:w="33"/><text x="16.1455%" y="815.50"></text></g><g><title>IndexSet::IndexSet (283 samples, 0.13%)</title><rect x="15.7851%" y="821" width="0.1270%" height="15" fill="rgb(209,117,53)" fg:x="35166" fg:w="283"/><text x="16.0351%" y="831.50"></text></g><g><title>MachNode::rematerialize (87 samples, 0.04%)</title><rect x="15.9170%" y="821" width="0.0391%" height="15" fill="rgb(212,90,42)" fg:x="35460" fg:w="87"/><text x="16.1670%" y="831.50"></text></g><g><title>IndexSet::alloc_block_containing (37 samples, 0.02%)</title><rect x="16.1469%" y="805" width="0.0166%" height="15" fill="rgb(218,164,37)" fg:x="35972" fg:w="37"/><text x="16.3969%" y="815.50"></text></g><g><title>JVMState::debug_start (26 samples, 0.01%)</title><rect x="16.1635%" y="805" width="0.0117%" height="15" fill="rgb(246,65,34)" fg:x="36009" fg:w="26"/><text x="16.4135%" y="815.50"></text></g><g><title>MachNode::rematerialize (90 samples, 0.04%)</title><rect x="16.1760%" y="805" width="0.0404%" height="15" fill="rgb(231,100,33)" fg:x="36037" fg:w="90"/><text x="16.4260%" y="815.50"></text></g><g><title>RegMask::is_UP (50 samples, 0.02%)</title><rect x="16.2582%" y="789" width="0.0224%" height="15" fill="rgb(228,126,14)" fg:x="36220" fg:w="50"/><text x="16.5082%" y="799.50"></text></g><g><title>PhaseChaitin::raise_pressure (134 samples, 0.06%)</title><rect x="16.2209%" y="805" width="0.0601%" height="15" fill="rgb(215,173,21)" fg:x="36137" fg:w="134"/><text x="16.4709%" y="815.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (714 samples, 0.32%)</title><rect x="15.9633%" y="821" width="0.3205%" height="15" fill="rgb(210,6,40)" fg:x="35563" fg:w="714"/><text x="16.2133%" y="831.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (40 samples, 0.02%)</title><rect x="16.2838%" y="821" width="0.0180%" height="15" fill="rgb(212,48,18)" fg:x="36277" fg:w="40"/><text x="16.5338%" y="831.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (50 samples, 0.02%)</title><rect x="16.3017%" y="821" width="0.0224%" height="15" fill="rgb(230,214,11)" fg:x="36317" fg:w="50"/><text x="16.5517%" y="831.50"></text></g><g><title>RegMask::Size (33 samples, 0.01%)</title><rect x="16.3094%" y="805" width="0.0148%" height="15" fill="rgb(254,105,39)" fg:x="36334" fg:w="33"/><text x="16.5594%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (169 samples, 0.08%)</title><rect x="16.4427%" y="805" width="0.0759%" height="15" fill="rgb(245,158,5)" fg:x="36631" fg:w="169"/><text x="16.6927%" y="815.50"></text></g><g><title>RegMask::is_UP (86 samples, 0.04%)</title><rect x="16.5185%" y="805" width="0.0386%" height="15" fill="rgb(249,208,11)" fg:x="36800" fg:w="86"/><text x="16.7685%" y="815.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (520 samples, 0.23%)</title><rect x="16.3242%" y="821" width="0.2334%" height="15" fill="rgb(210,39,28)" fg:x="36367" fg:w="520"/><text x="16.5742%" y="831.50"></text></g><g><title>__tls_get_addr (29 samples, 0.01%)</title><rect x="17.4230%" y="789" width="0.0130%" height="15" fill="rgb(211,56,53)" fg:x="38815" fg:w="29"/><text x="17.6730%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (107 samples, 0.05%)</title><rect x="17.3889%" y="805" width="0.0480%" height="15" fill="rgb(226,201,30)" fg:x="38739" fg:w="107"/><text x="17.6389%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (808 samples, 0.36%)</title><rect x="17.4401%" y="805" width="0.3627%" height="15" fill="rgb(239,101,34)" fg:x="38853" fg:w="808"/><text x="17.6901%" y="815.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,781 samples, 1.25%)</title><rect x="16.5576%" y="821" width="1.2483%" height="15" fill="rgb(226,209,5)" fg:x="36887" fg:w="2781"/><text x="16.8076%" y="831.50"></text></g><g><title>PhaseChaitin::lower_pressure (90 samples, 0.04%)</title><rect x="17.8059%" y="821" width="0.0404%" height="15" fill="rgb(250,105,47)" fg:x="39668" fg:w="90"/><text x="18.0559%" y="831.50"></text></g><g><title>RegMask::is_UP (32 samples, 0.01%)</title><rect x="17.8319%" y="805" width="0.0144%" height="15" fill="rgb(230,72,3)" fg:x="39726" fg:w="32"/><text x="18.0819%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (231 samples, 0.10%)</title><rect x="18.0492%" y="805" width="0.1037%" height="15" fill="rgb(232,218,39)" fg:x="40210" fg:w="231"/><text x="18.2992%" y="815.50"></text></g><g><title>RegMask::Size (317 samples, 0.14%)</title><rect x="18.1529%" y="805" width="0.1423%" height="15" fill="rgb(248,166,6)" fg:x="40441" fg:w="317"/><text x="18.4029%" y="815.50"></text></g><g><title>RegMask::smear_to_sets (696 samples, 0.31%)</title><rect x="18.2952%" y="805" width="0.3124%" height="15" fill="rgb(247,89,20)" fg:x="40758" fg:w="696"/><text x="18.5452%" y="815.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,702 samples, 0.76%)</title><rect x="17.8463%" y="821" width="0.7640%" height="15" fill="rgb(248,130,54)" fg:x="39758" fg:w="1702"/><text x="18.0963%" y="831.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (23 samples, 0.01%)</title><rect x="18.6103%" y="821" width="0.0103%" height="15" fill="rgb(234,196,4)" fg:x="41460" fg:w="23"/><text x="18.8603%" y="831.50"></text></g><g><title>RegMask::smear_to_sets (49 samples, 0.02%)</title><rect x="18.6273%" y="821" width="0.0220%" height="15" fill="rgb(250,143,31)" fg:x="41498" fg:w="49"/><text x="18.8773%" y="831.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,212 samples, 3.24%)</title><rect x="15.4152%" y="837" width="3.2373%" height="15" fill="rgb(211,110,34)" fg:x="34342" fg:w="7212"/><text x="15.6652%" y="847.50">Pha..</text></g><g><title>PhaseChaitin::interfere_with_live (332 samples, 0.15%)</title><rect x="18.7122%" y="821" width="0.1490%" height="15" fill="rgb(215,124,48)" fg:x="41687" fg:w="332"/><text x="18.9622%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (66 samples, 0.03%)</title><rect x="18.8316%" y="805" width="0.0296%" height="15" fill="rgb(216,46,13)" fg:x="41953" fg:w="66"/><text x="19.0816%" y="815.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (468 samples, 0.21%)</title><rect x="18.6525%" y="837" width="0.2101%" height="15" fill="rgb(205,184,25)" fg:x="41554" fg:w="468"/><text x="18.9025%" y="847.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (101 samples, 0.05%)</title><rect x="18.8626%" y="837" width="0.0453%" height="15" fill="rgb(228,1,10)" fg:x="42022" fg:w="101"/><text x="19.1126%" y="847.50"></text></g><g><title>find_hihghest_bit (35 samples, 0.02%)</title><rect x="18.8922%" y="821" width="0.0157%" height="15" fill="rgb(213,116,27)" fg:x="42088" fg:w="35"/><text x="19.1422%" y="831.50"></text></g><g><title>PhaseChaitin::compact (33 samples, 0.01%)</title><rect x="18.9079%" y="837" width="0.0148%" height="15" fill="rgb(241,95,50)" fg:x="42123" fg:w="33"/><text x="19.1579%" y="847.50"></text></g><g><title>PhaseChaitin::de_ssa (92 samples, 0.04%)</title><rect x="18.9227%" y="837" width="0.0413%" height="15" fill="rgb(238,48,32)" fg:x="42156" fg:w="92"/><text x="19.1727%" y="847.50"></text></g><g><title>PhaseChaitin::fixup_spills (53 samples, 0.02%)</title><rect x="18.9649%" y="837" width="0.0238%" height="15" fill="rgb(235,113,49)" fg:x="42250" fg:w="53"/><text x="19.2149%" y="847.50"></text></g><g><title>MachCallJavaNode::in_RegMask (66 samples, 0.03%)</title><rect x="19.7329%" y="821" width="0.0296%" height="15" fill="rgb(205,127,43)" fg:x="43961" fg:w="66"/><text x="19.9829%" y="831.50"></text></g><g><title>MachNode::ideal_reg (73 samples, 0.03%)</title><rect x="19.7666%" y="821" width="0.0328%" height="15" fill="rgb(250,162,2)" fg:x="44036" fg:w="73"/><text x="20.0166%" y="831.50"></text></g><g><title>MachNode::in_RegMask (50 samples, 0.02%)</title><rect x="19.7994%" y="821" width="0.0224%" height="15" fill="rgb(220,13,41)" fg:x="44109" fg:w="50"/><text x="20.0494%" y="831.50"></text></g><g><title>MachProjNode::bottom_type (34 samples, 0.02%)</title><rect x="19.8236%" y="821" width="0.0153%" height="15" fill="rgb(249,221,25)" fg:x="44163" fg:w="34"/><text x="20.0736%" y="831.50"></text></g><g><title>PhiNode::in_RegMask (24 samples, 0.01%)</title><rect x="19.8496%" y="821" width="0.0108%" height="15" fill="rgb(215,208,19)" fg:x="44221" fg:w="24"/><text x="20.0996%" y="831.50"></text></g><g><title>RegMask::Size (1,113 samples, 0.50%)</title><rect x="19.8653%" y="821" width="0.4996%" height="15" fill="rgb(236,175,2)" fg:x="44256" fg:w="1113"/><text x="20.1153%" y="831.50"></text></g><g><title>RegMask::clear_to_sets (218 samples, 0.10%)</title><rect x="20.3649%" y="821" width="0.0979%" height="15" fill="rgb(241,52,2)" fg:x="45369" fg:w="218"/><text x="20.6149%" y="831.50"></text></g><g><title>RegMask::is_aligned_pairs (114 samples, 0.05%)</title><rect x="20.4628%" y="821" width="0.0512%" height="15" fill="rgb(248,140,14)" fg:x="45587" fg:w="114"/><text x="20.7128%" y="831.50"></text></g><g><title>RegMask::is_bound1 (142 samples, 0.06%)</title><rect x="20.5140%" y="821" width="0.0637%" height="15" fill="rgb(253,22,42)" fg:x="45701" fg:w="142"/><text x="20.7640%" y="831.50"></text></g><g><title>RegMask::is_bound_pair (80 samples, 0.04%)</title><rect x="20.5777%" y="821" width="0.0359%" height="15" fill="rgb(234,61,47)" fg:x="45843" fg:w="80"/><text x="20.8277%" y="831.50"></text></g><g><title>RegMask::is_vector (30 samples, 0.01%)</title><rect x="20.6136%" y="821" width="0.0135%" height="15" fill="rgb(208,226,15)" fg:x="45923" fg:w="30"/><text x="20.8636%" y="831.50"></text></g><g><title>Dict::Insert (28 samples, 0.01%)</title><rect x="20.6271%" y="805" width="0.0126%" height="15" fill="rgb(217,221,4)" fg:x="45953" fg:w="28"/><text x="20.8771%" y="815.50"></text></g><g><title>Type::hashcons (30 samples, 0.01%)</title><rect x="20.6271%" y="821" width="0.0135%" height="15" fill="rgb(212,174,34)" fg:x="45953" fg:w="30"/><text x="20.8771%" y="831.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,770 samples, 1.69%)</title><rect x="18.9887%" y="837" width="1.6923%" height="15" fill="rgb(253,83,4)" fg:x="42303" fg:w="3770"/><text x="19.2387%" y="847.50"></text></g><g><title>PhaseChaitin::merge_multidefs (492 samples, 0.22%)</title><rect x="20.6814%" y="837" width="0.2208%" height="15" fill="rgb(250,195,49)" fg:x="46074" fg:w="492"/><text x="20.9314%" y="847.50"></text></g><g><title>Node::replace_by (34 samples, 0.02%)</title><rect x="21.6312%" y="821" width="0.0153%" height="15" fill="rgb(241,192,25)" fg:x="48190" fg:w="34"/><text x="21.8812%" y="831.50"></text></g><g><title>RegMask::Size (33 samples, 0.01%)</title><rect x="22.4791%" y="789" width="0.0148%" height="15" fill="rgb(208,124,10)" fg:x="50079" fg:w="33"/><text x="22.7291%" y="799.50"></text></g><g><title>PhaseChaitin::use_prior_register (82 samples, 0.04%)</title><rect x="22.4612%" y="805" width="0.0368%" height="15" fill="rgb(222,33,0)" fg:x="50039" fg:w="82"/><text x="22.7112%" y="815.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (33 samples, 0.01%)</title><rect x="22.4980%" y="805" width="0.0148%" height="15" fill="rgb(234,209,28)" fg:x="50121" fg:w="33"/><text x="22.7480%" y="815.50"></text></g><g><title>PhaseChaitin::elide_copy (1,929 samples, 0.87%)</title><rect x="21.6532%" y="821" width="0.8659%" height="15" fill="rgb(224,11,23)" fg:x="48239" fg:w="1929"/><text x="21.9032%" y="831.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (41 samples, 0.02%)</title><rect x="22.5236%" y="821" width="0.0184%" height="15" fill="rgb(232,99,1)" fg:x="50178" fg:w="41"/><text x="22.7736%" y="831.50"></text></g><g><title>[libc-2.31.so] (57 samples, 0.03%)</title><rect x="22.5442%" y="821" width="0.0256%" height="15" fill="rgb(237,95,45)" fg:x="50224" fg:w="57"/><text x="22.7942%" y="831.50"></text></g><g><title>find_lowest_bit (318 samples, 0.14%)</title><rect x="22.5734%" y="821" width="0.1427%" height="15" fill="rgb(208,109,11)" fg:x="50289" fg:w="318"/><text x="22.8234%" y="831.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,047 samples, 1.82%)</title><rect x="20.9022%" y="837" width="1.8166%" height="15" fill="rgb(216,190,48)" fg:x="46566" fg:w="4047"/><text x="21.1522%" y="847.50">P..</text></g><g><title>IndexSet::IndexSet (33 samples, 0.01%)</title><rect x="22.7871%" y="821" width="0.0148%" height="15" fill="rgb(251,171,36)" fg:x="50765" fg:w="33"/><text x="23.0371%" y="831.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (202 samples, 0.09%)</title><rect x="22.7188%" y="837" width="0.0907%" height="15" fill="rgb(230,62,22)" fg:x="50613" fg:w="202"/><text x="22.9688%" y="847.50"></text></g><g><title>PhaseIFG::Union (50 samples, 0.02%)</title><rect x="22.8652%" y="789" width="0.0224%" height="15" fill="rgb(225,114,35)" fg:x="50939" fg:w="50"/><text x="23.1152%" y="799.50"></text></g><g><title>PhaseCoalesce::combine_these_two (75 samples, 0.03%)</title><rect x="22.8548%" y="805" width="0.0337%" height="15" fill="rgb(215,118,42)" fg:x="50916" fg:w="75"/><text x="23.1048%" y="815.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (172 samples, 0.08%)</title><rect x="22.8117%" y="821" width="0.0772%" height="15" fill="rgb(243,119,21)" fg:x="50820" fg:w="172"/><text x="23.0617%" y="831.50"></text></g><g><title>Block::has_uncommon_code (27 samples, 0.01%)</title><rect x="22.9464%" y="789" width="0.0121%" height="15" fill="rgb(252,177,53)" fg:x="51120" fg:w="27"/><text x="23.1964%" y="799.50"></text></g><g><title>PhaseCFG::is_uncommon (110 samples, 0.05%)</title><rect x="22.9096%" y="805" width="0.0494%" height="15" fill="rgb(237,209,29)" fg:x="51038" fg:w="110"/><text x="23.1596%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (50 samples, 0.02%)</title><rect x="23.2391%" y="773" width="0.0224%" height="15" fill="rgb(212,65,23)" fg:x="51772" fg:w="50"/><text x="23.4891%" y="783.50"></text></g><g><title>IndexSet::lrg_union (637 samples, 0.29%)</title><rect x="22.9805%" y="789" width="0.2859%" height="15" fill="rgb(230,222,46)" fg:x="51196" fg:w="637"/><text x="23.2305%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (37 samples, 0.02%)</title><rect x="23.8401%" y="773" width="0.0166%" height="15" fill="rgb(215,135,32)" fg:x="53111" fg:w="37"/><text x="24.0901%" y="783.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (1,320 samples, 0.59%)</title><rect x="23.2750%" y="789" width="0.5925%" height="15" fill="rgb(246,101,22)" fg:x="51852" fg:w="1320"/><text x="23.5250%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (25 samples, 0.01%)</title><rect x="23.9855%" y="773" width="0.0112%" height="15" fill="rgb(206,107,13)" fg:x="53435" fg:w="25"/><text x="24.2355%" y="783.50"></text></g><g><title>PhaseIFG::effective_degree (290 samples, 0.13%)</title><rect x="23.8675%" y="789" width="0.1302%" height="15" fill="rgb(250,100,44)" fg:x="53172" fg:w="290"/><text x="24.1175%" y="799.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (2,337 samples, 1.05%)</title><rect x="22.9590%" y="805" width="1.0490%" height="15" fill="rgb(231,147,38)" fg:x="51148" fg:w="2337"/><text x="23.2090%" y="815.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (2,673 samples, 1.20%)</title><rect x="22.8095%" y="837" width="1.1998%" height="15" fill="rgb(229,8,40)" fg:x="50815" fg:w="2673"/><text x="23.0595%" y="847.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (2,496 samples, 1.12%)</title><rect x="22.8889%" y="821" width="1.1204%" height="15" fill="rgb(221,135,30)" fg:x="50992" fg:w="2496"/><text x="23.1389%" y="831.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (51 samples, 0.02%)</title><rect x="24.1866%" y="821" width="0.0229%" height="15" fill="rgb(249,193,18)" fg:x="53883" fg:w="51"/><text x="24.4366%" y="831.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (955 samples, 0.43%)</title><rect x="24.0098%" y="837" width="0.4287%" height="15" fill="rgb(209,133,39)" fg:x="53489" fg:w="955"/><text x="24.2598%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (510 samples, 0.23%)</title><rect x="24.2095%" y="821" width="0.2289%" height="15" fill="rgb(232,100,14)" fg:x="53934" fg:w="510"/><text x="24.4595%" y="831.50"></text></g><g><title>IndexSet::alloc_block_containing (36 samples, 0.02%)</title><rect x="24.5969%" y="821" width="0.0162%" height="15" fill="rgb(224,185,1)" fg:x="54797" fg:w="36"/><text x="24.8469%" y="831.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (73 samples, 0.03%)</title><rect x="24.6131%" y="821" width="0.0328%" height="15" fill="rgb(223,139,8)" fg:x="54833" fg:w="73"/><text x="24.8631%" y="831.50"></text></g><g><title>PhaseIFG::SquareUp (884 samples, 0.40%)</title><rect x="24.4385%" y="837" width="0.3968%" height="15" fill="rgb(232,213,38)" fg:x="54444" fg:w="884"/><text x="24.6885%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (422 samples, 0.19%)</title><rect x="24.6458%" y="821" width="0.1894%" height="15" fill="rgb(207,94,22)" fg:x="54906" fg:w="422"/><text x="24.8958%" y="831.50"></text></g><g><title>IndexSet::initialize (197 samples, 0.09%)</title><rect x="24.8833%" y="821" width="0.0884%" height="15" fill="rgb(219,183,54)" fg:x="55435" fg:w="197"/><text x="25.1333%" y="831.50"></text></g><g><title>[libc-2.31.so] (74 samples, 0.03%)</title><rect x="24.9717%" y="821" width="0.0332%" height="15" fill="rgb(216,185,54)" fg:x="55632" fg:w="74"/><text x="25.2217%" y="831.50"></text></g><g><title>PhaseIFG::init (382 samples, 0.17%)</title><rect x="24.8353%" y="837" width="0.1715%" height="15" fill="rgb(254,217,39)" fg:x="55328" fg:w="382"/><text x="25.0853%" y="847.50"></text></g><g><title>IndexSet::alloc_block_containing (48 samples, 0.02%)</title><rect x="25.5544%" y="821" width="0.0215%" height="15" fill="rgb(240,178,23)" fg:x="56930" fg:w="48"/><text x="25.8044%" y="831.50"></text></g><g><title>IndexSet::free_block (49 samples, 0.02%)</title><rect x="25.5759%" y="821" width="0.0220%" height="15" fill="rgb(218,11,47)" fg:x="56978" fg:w="49"/><text x="25.8259%" y="831.50"></text></g><g><title>IndexSet::initialize (116 samples, 0.05%)</title><rect x="25.5979%" y="821" width="0.0521%" height="15" fill="rgb(218,51,51)" fg:x="57027" fg:w="116"/><text x="25.8479%" y="831.50"></text></g><g><title>__tls_get_addr (53 samples, 0.02%)</title><rect x="26.0234%" y="789" width="0.0238%" height="15" fill="rgb(238,126,27)" fg:x="57975" fg:w="53"/><text x="26.2734%" y="799.50"></text></g><g><title>update_get_addr (34 samples, 0.02%)</title><rect x="26.0320%" y="773" width="0.0153%" height="15" fill="rgb(249,202,22)" fg:x="57994" fg:w="34"/><text x="26.2820%" y="783.50"></text></g><g><title>_dl_update_slotinfo (24 samples, 0.01%)</title><rect x="26.0364%" y="757" width="0.0108%" height="15" fill="rgb(254,195,49)" fg:x="58004" fg:w="24"/><text x="26.2864%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (178 samples, 0.08%)</title><rect x="25.9691%" y="805" width="0.0799%" height="15" fill="rgb(208,123,14)" fg:x="57854" fg:w="178"/><text x="26.2191%" y="815.50"></text></g><g><title>IndexSet::initialize (43 samples, 0.02%)</title><rect x="26.0490%" y="805" width="0.0193%" height="15" fill="rgb(224,200,8)" fg:x="58032" fg:w="43"/><text x="26.2990%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (289 samples, 0.13%)</title><rect x="26.0692%" y="805" width="0.1297%" height="15" fill="rgb(217,61,36)" fg:x="58077" fg:w="289"/><text x="26.3192%" y="815.50"></text></g><g><title>PhaseLive::add_liveout (1,234 samples, 0.55%)</title><rect x="25.6513%" y="821" width="0.5539%" height="15" fill="rgb(206,35,45)" fg:x="57146" fg:w="1234"/><text x="25.9013%" y="831.50"></text></g><g><title>PhaseLive::compute (2,686 samples, 1.21%)</title><rect x="25.0072%" y="837" width="1.2057%" height="15" fill="rgb(217,65,33)" fg:x="55711" fg:w="2686"/><text x="25.2572%" y="847.50"></text></g><g><title>RegMask::Size (38 samples, 0.02%)</title><rect x="26.2160%" y="837" width="0.0171%" height="15" fill="rgb(222,158,48)" fg:x="58404" fg:w="38"/><text x="26.4660%" y="847.50"></text></g><g><title>find_lowest_bit (45 samples, 0.02%)</title><rect x="26.2492%" y="837" width="0.0202%" height="15" fill="rgb(254,2,54)" fg:x="58478" fg:w="45"/><text x="26.4992%" y="847.50"></text></g><g><title>PhaseChaitin::Register_Allocate (32,130 samples, 14.42%)</title><rect x="11.8521%" y="853" width="14.4223%" height="15" fill="rgb(250,143,38)" fg:x="26404" fg:w="32130"/><text x="12.1021%" y="863.50">PhaseChaitin::Register..</text></g><g><title>Compile::Code_Gen (40,476 samples, 18.17%)</title><rect x="8.1282%" y="869" width="18.1686%" height="15" fill="rgb(248,25,0)" fg:x="18108" fg:w="40476"/><text x="8.3782%" y="879.50">Compile::Code_Gen</text></g><g><title>PhasePeephole::do_transform (46 samples, 0.02%)</title><rect x="26.2761%" y="853" width="0.0206%" height="15" fill="rgb(206,152,27)" fg:x="58538" fg:w="46"/><text x="26.5261%" y="863.50"></text></g><g><title>Compile::call_generator (29 samples, 0.01%)</title><rect x="26.3094%" y="485" width="0.0130%" height="15" fill="rgb(240,77,30)" fg:x="58612" fg:w="29"/><text x="26.5594%" y="495.50"></text></g><g><title>InlineTree::ok_to_inline (23 samples, 0.01%)</title><rect x="26.3121%" y="469" width="0.0103%" height="15" fill="rgb(231,5,3)" fg:x="58618" fg:w="23"/><text x="26.5621%" y="479.50"></text></g><g><title>ciMethod::get_flow_analysis (23 samples, 0.01%)</title><rect x="26.3121%" y="453" width="0.0103%" height="15" fill="rgb(207,226,32)" fg:x="58618" fg:w="23"/><text x="26.5621%" y="463.50"></text></g><g><title>ciTypeFlow::do_flow (23 samples, 0.01%)</title><rect x="26.3121%" y="437" width="0.0103%" height="15" fill="rgb(222,207,47)" fg:x="58618" fg:w="23"/><text x="26.5621%" y="447.50"></text></g><g><title>ciTypeFlow::flow_types (23 samples, 0.01%)</title><rect x="26.3121%" y="421" width="0.0103%" height="15" fill="rgb(229,115,45)" fg:x="58618" fg:w="23"/><text x="26.5621%" y="431.50"></text></g><g><title>Compile::call_generator (25 samples, 0.01%)</title><rect x="26.3300%" y="389" width="0.0112%" height="15" fill="rgb(224,191,6)" fg:x="58658" fg:w="25"/><text x="26.5800%" y="399.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="26.3960%" y="149" width="0.0103%" height="15" fill="rgb(230,227,24)" fg:x="58805" fg:w="23"/><text x="26.6460%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="26.3960%" y="133" width="0.0103%" height="15" fill="rgb(228,80,19)" fg:x="58805" fg:w="23"/><text x="26.6460%" y="143.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.01%)</title><rect x="26.3955%" y="165" width="0.0117%" height="15" fill="rgb(247,229,0)" fg:x="58804" fg:w="26"/><text x="26.6455%" y="175.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.01%)</title><rect x="26.3951%" y="197" width="0.0130%" height="15" fill="rgb(237,194,15)" fg:x="58803" fg:w="29"/><text x="26.6451%" y="207.50"></text></g><g><title>Parse::Parse (29 samples, 0.01%)</title><rect x="26.3951%" y="181" width="0.0130%" height="15" fill="rgb(219,203,20)" fg:x="58803" fg:w="29"/><text x="26.6451%" y="191.50"></text></g><g><title>Parse::do_call (74 samples, 0.03%)</title><rect x="26.3825%" y="213" width="0.0332%" height="15" fill="rgb(234,128,8)" fg:x="58775" fg:w="74"/><text x="26.6325%" y="223.50"></text></g><g><title>Parse::do_one_block (127 samples, 0.06%)</title><rect x="26.3767%" y="245" width="0.0570%" height="15" fill="rgb(248,202,8)" fg:x="58762" fg:w="127"/><text x="26.6267%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (124 samples, 0.06%)</title><rect x="26.3780%" y="229" width="0.0557%" height="15" fill="rgb(206,104,37)" fg:x="58765" fg:w="124"/><text x="26.6280%" y="239.50"></text></g><g><title>Parse::do_all_blocks (128 samples, 0.06%)</title><rect x="26.3767%" y="261" width="0.0575%" height="15" fill="rgb(223,8,27)" fg:x="58762" fg:w="128"/><text x="26.6267%" y="271.50"></text></g><g><title>ParseGenerator::generate (145 samples, 0.07%)</title><rect x="26.3727%" y="293" width="0.0651%" height="15" fill="rgb(216,217,28)" fg:x="58753" fg:w="145"/><text x="26.6227%" y="303.50"></text></g><g><title>Parse::Parse (145 samples, 0.07%)</title><rect x="26.3727%" y="277" width="0.0651%" height="15" fill="rgb(249,199,1)" fg:x="58753" fg:w="145"/><text x="26.6227%" y="287.50"></text></g><g><title>Parse::do_call (206 samples, 0.09%)</title><rect x="26.3574%" y="309" width="0.0925%" height="15" fill="rgb(240,85,17)" fg:x="58719" fg:w="206"/><text x="26.6074%" y="319.50"></text></g><g><title>Parse::do_field_access (27 samples, 0.01%)</title><rect x="26.4499%" y="309" width="0.0121%" height="15" fill="rgb(206,108,45)" fg:x="58925" fg:w="27"/><text x="26.6999%" y="319.50"></text></g><g><title>Parse::do_one_block (262 samples, 0.12%)</title><rect x="26.3534%" y="341" width="0.1176%" height="15" fill="rgb(245,210,41)" fg:x="58710" fg:w="262"/><text x="26.6034%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (260 samples, 0.12%)</title><rect x="26.3543%" y="325" width="0.1167%" height="15" fill="rgb(206,13,37)" fg:x="58712" fg:w="260"/><text x="26.6043%" y="335.50"></text></g><g><title>Parse::do_all_blocks (267 samples, 0.12%)</title><rect x="26.3529%" y="357" width="0.1198%" height="15" fill="rgb(250,61,18)" fg:x="58709" fg:w="267"/><text x="26.6029%" y="367.50"></text></g><g><title>ParseGenerator::generate (285 samples, 0.13%)</title><rect x="26.3507%" y="389" width="0.1279%" height="15" fill="rgb(235,172,48)" fg:x="58704" fg:w="285"/><text x="26.6007%" y="399.50"></text></g><g><title>Parse::Parse (285 samples, 0.13%)</title><rect x="26.3507%" y="373" width="0.1279%" height="15" fill="rgb(249,201,17)" fg:x="58704" fg:w="285"/><text x="26.6007%" y="383.50"></text></g><g><title>Parse::do_call (360 samples, 0.16%)</title><rect x="26.3300%" y="405" width="0.1616%" height="15" fill="rgb(219,208,6)" fg:x="58658" fg:w="360"/><text x="26.5800%" y="415.50"></text></g><g><title>GraphKit::access_store_at (24 samples, 0.01%)</title><rect x="26.5024%" y="373" width="0.0108%" height="15" fill="rgb(248,31,23)" fg:x="59042" fg:w="24"/><text x="26.7524%" y="383.50"></text></g><g><title>BarrierSetC2::store_at (24 samples, 0.01%)</title><rect x="26.5024%" y="357" width="0.0108%" height="15" fill="rgb(245,15,42)" fg:x="59042" fg:w="24"/><text x="26.7524%" y="367.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (23 samples, 0.01%)</title><rect x="26.5028%" y="341" width="0.0103%" height="15" fill="rgb(222,217,39)" fg:x="59043" fg:w="23"/><text x="26.7528%" y="351.50"></text></g><g><title>Parse::do_put_xxx (25 samples, 0.01%)</title><rect x="26.5024%" y="389" width="0.0112%" height="15" fill="rgb(210,219,27)" fg:x="59042" fg:w="25"/><text x="26.7524%" y="399.50"></text></g><g><title>Parse::do_field_access (46 samples, 0.02%)</title><rect x="26.4934%" y="405" width="0.0206%" height="15" fill="rgb(252,166,36)" fg:x="59022" fg:w="46"/><text x="26.7434%" y="415.50"></text></g><g><title>Parse::do_all_blocks (432 samples, 0.19%)</title><rect x="26.3251%" y="453" width="0.1939%" height="15" fill="rgb(245,132,34)" fg:x="58647" fg:w="432"/><text x="26.5751%" y="463.50"></text></g><g><title>Parse::do_one_block (432 samples, 0.19%)</title><rect x="26.3251%" y="437" width="0.1939%" height="15" fill="rgb(236,54,3)" fg:x="58647" fg:w="432"/><text x="26.5751%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (432 samples, 0.19%)</title><rect x="26.3251%" y="421" width="0.1939%" height="15" fill="rgb(241,173,43)" fg:x="58647" fg:w="432"/><text x="26.5751%" y="431.50"></text></g><g><title>ParseGenerator::generate (438 samples, 0.20%)</title><rect x="26.3233%" y="485" width="0.1966%" height="15" fill="rgb(215,190,9)" fg:x="58643" fg:w="438"/><text x="26.5733%" y="495.50"></text></g><g><title>Parse::Parse (438 samples, 0.20%)</title><rect x="26.3233%" y="469" width="0.1966%" height="15" fill="rgb(242,101,16)" fg:x="58643" fg:w="438"/><text x="26.5733%" y="479.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="26.5239%" y="341" width="0.0148%" height="15" fill="rgb(223,190,21)" fg:x="59090" fg:w="33"/><text x="26.7739%" y="351.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="26.5239%" y="325" width="0.0148%" height="15" fill="rgb(215,228,25)" fg:x="59090" fg:w="33"/><text x="26.7739%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="26.5239%" y="309" width="0.0148%" height="15" fill="rgb(225,36,22)" fg:x="59090" fg:w="33"/><text x="26.7739%" y="319.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.02%)</title><rect x="26.5226%" y="373" width="0.0175%" height="15" fill="rgb(251,106,46)" fg:x="59087" fg:w="39"/><text x="26.7726%" y="383.50"></text></g><g><title>Parse::Parse (39 samples, 0.02%)</title><rect x="26.5226%" y="357" width="0.0175%" height="15" fill="rgb(208,90,1)" fg:x="59087" fg:w="39"/><text x="26.7726%" y="367.50"></text></g><g><title>Parse::do_call (55 samples, 0.02%)</title><rect x="26.5203%" y="389" width="0.0247%" height="15" fill="rgb(243,10,4)" fg:x="59082" fg:w="55"/><text x="26.7703%" y="399.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.03%)</title><rect x="26.5199%" y="437" width="0.0283%" height="15" fill="rgb(212,137,27)" fg:x="59081" fg:w="63"/><text x="26.7699%" y="447.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.03%)</title><rect x="26.5199%" y="421" width="0.0283%" height="15" fill="rgb(231,220,49)" fg:x="59081" fg:w="63"/><text x="26.7699%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (62 samples, 0.03%)</title><rect x="26.5203%" y="405" width="0.0278%" height="15" fill="rgb(237,96,20)" fg:x="59082" fg:w="62"/><text x="26.7703%" y="415.50"></text></g><g><title>ParseGenerator::generate (64 samples, 0.03%)</title><rect x="26.5199%" y="469" width="0.0287%" height="15" fill="rgb(239,229,30)" fg:x="59081" fg:w="64"/><text x="26.7699%" y="479.50"></text></g><g><title>Parse::Parse (64 samples, 0.03%)</title><rect x="26.5199%" y="453" width="0.0287%" height="15" fill="rgb(219,65,33)" fg:x="59081" fg:w="64"/><text x="26.7699%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (73 samples, 0.03%)</title><rect x="26.5199%" y="485" width="0.0328%" height="15" fill="rgb(243,134,7)" fg:x="59081" fg:w="73"/><text x="26.7699%" y="495.50"></text></g><g><title>Parse::do_call (548 samples, 0.25%)</title><rect x="26.3094%" y="501" width="0.2460%" height="15" fill="rgb(216,177,54)" fg:x="58612" fg:w="548"/><text x="26.5594%" y="511.50"></text></g><g><title>Parse::do_all_blocks (555 samples, 0.25%)</title><rect x="26.3089%" y="549" width="0.2491%" height="15" fill="rgb(211,160,20)" fg:x="58611" fg:w="555"/><text x="26.5589%" y="559.50"></text></g><g><title>Parse::do_one_block (555 samples, 0.25%)</title><rect x="26.3089%" y="533" width="0.2491%" height="15" fill="rgb(239,85,39)" fg:x="58611" fg:w="555"/><text x="26.5589%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (555 samples, 0.25%)</title><rect x="26.3089%" y="517" width="0.2491%" height="15" fill="rgb(232,125,22)" fg:x="58611" fg:w="555"/><text x="26.5589%" y="527.50"></text></g><g><title>ParseGenerator::generate (556 samples, 0.25%)</title><rect x="26.3089%" y="581" width="0.2496%" height="15" fill="rgb(244,57,34)" fg:x="58611" fg:w="556"/><text x="26.5589%" y="591.50"></text></g><g><title>Parse::Parse (556 samples, 0.25%)</title><rect x="26.3089%" y="565" width="0.2496%" height="15" fill="rgb(214,203,32)" fg:x="58611" fg:w="556"/><text x="26.5589%" y="575.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="26.5607%" y="469" width="0.0103%" height="15" fill="rgb(207,58,43)" fg:x="59172" fg:w="23"/><text x="26.8107%" y="479.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="26.5607%" y="453" width="0.0103%" height="15" fill="rgb(215,193,15)" fg:x="59172" fg:w="23"/><text x="26.8107%" y="463.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.01%)</title><rect x="26.5607%" y="437" width="0.0103%" height="15" fill="rgb(232,15,44)" fg:x="59172" fg:w="23"/><text x="26.8107%" y="447.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="26.5607%" y="421" width="0.0103%" height="15" fill="rgb(212,3,48)" fg:x="59172" fg:w="23"/><text x="26.8107%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="26.5607%" y="405" width="0.0103%" height="15" fill="rgb(218,128,7)" fg:x="59172" fg:w="23"/><text x="26.8107%" y="415.50"></text></g><g><title>Parse::do_call (29 samples, 0.01%)</title><rect x="26.5715%" y="373" width="0.0130%" height="15" fill="rgb(226,216,39)" fg:x="59196" fg:w="29"/><text x="26.8215%" y="383.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="26.5742%" y="357" width="0.0103%" height="15" fill="rgb(243,47,51)" fg:x="59202" fg:w="23"/><text x="26.8242%" y="367.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="26.5742%" y="341" width="0.0103%" height="15" fill="rgb(241,183,40)" fg:x="59202" fg:w="23"/><text x="26.8242%" y="351.50"></text></g><g><title>PredictedCallGenerator::generate (32 samples, 0.01%)</title><rect x="26.5711%" y="469" width="0.0144%" height="15" fill="rgb(231,217,32)" fg:x="59195" fg:w="32"/><text x="26.8211%" y="479.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.01%)</title><rect x="26.5711%" y="453" width="0.0144%" height="15" fill="rgb(229,61,38)" fg:x="59195" fg:w="32"/><text x="26.8211%" y="463.50"></text></g><g><title>Parse::Parse (32 samples, 0.01%)</title><rect x="26.5711%" y="437" width="0.0144%" height="15" fill="rgb(225,210,5)" fg:x="59195" fg:w="32"/><text x="26.8211%" y="447.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="26.5711%" y="421" width="0.0144%" height="15" fill="rgb(231,79,45)" fg:x="59195" fg:w="32"/><text x="26.8211%" y="431.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="26.5711%" y="405" width="0.0144%" height="15" fill="rgb(224,100,7)" fg:x="59195" fg:w="32"/><text x="26.8211%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.01%)</title><rect x="26.5715%" y="389" width="0.0139%" height="15" fill="rgb(241,198,18)" fg:x="59196" fg:w="31"/><text x="26.8215%" y="399.50"></text></g><g><title>Parse::do_call (61 samples, 0.03%)</title><rect x="26.5585%" y="485" width="0.0274%" height="15" fill="rgb(252,97,53)" fg:x="59167" fg:w="61"/><text x="26.8085%" y="495.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.03%)</title><rect x="26.5585%" y="565" width="0.0278%" height="15" fill="rgb(220,88,7)" fg:x="59167" fg:w="62"/><text x="26.8085%" y="575.50"></text></g><g><title>Parse::Parse (62 samples, 0.03%)</title><rect x="26.5585%" y="549" width="0.0278%" height="15" fill="rgb(213,176,14)" fg:x="59167" fg:w="62"/><text x="26.8085%" y="559.50"></text></g><g><title>Parse::do_all_blocks (62 samples, 0.03%)</title><rect x="26.5585%" y="533" width="0.0278%" height="15" fill="rgb(246,73,7)" fg:x="59167" fg:w="62"/><text x="26.8085%" y="543.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.03%)</title><rect x="26.5585%" y="517" width="0.0278%" height="15" fill="rgb(245,64,36)" fg:x="59167" fg:w="62"/><text x="26.8085%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (62 samples, 0.03%)</title><rect x="26.5585%" y="501" width="0.0278%" height="15" fill="rgb(245,80,10)" fg:x="59167" fg:w="62"/><text x="26.8085%" y="511.50"></text></g><g><title>Parse::do_call (635 samples, 0.29%)</title><rect x="26.3017%" y="597" width="0.2850%" height="15" fill="rgb(232,107,50)" fg:x="58595" fg:w="635"/><text x="26.5517%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (63 samples, 0.03%)</title><rect x="26.5585%" y="581" width="0.0283%" height="15" fill="rgb(253,3,0)" fg:x="59167" fg:w="63"/><text x="26.8085%" y="591.50"></text></g><g><title>Parse::do_all_blocks (636 samples, 0.29%)</title><rect x="26.3017%" y="645" width="0.2855%" height="15" fill="rgb(212,99,53)" fg:x="58595" fg:w="636"/><text x="26.5517%" y="655.50"></text></g><g><title>Parse::do_one_block (636 samples, 0.29%)</title><rect x="26.3017%" y="629" width="0.2855%" height="15" fill="rgb(249,111,54)" fg:x="58595" fg:w="636"/><text x="26.5517%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (636 samples, 0.29%)</title><rect x="26.3017%" y="613" width="0.2855%" height="15" fill="rgb(249,55,30)" fg:x="58595" fg:w="636"/><text x="26.5517%" y="623.50"></text></g><g><title>ParseGenerator::generate (644 samples, 0.29%)</title><rect x="26.3013%" y="677" width="0.2891%" height="15" fill="rgb(237,47,42)" fg:x="58594" fg:w="644"/><text x="26.5513%" y="687.50"></text></g><g><title>Parse::Parse (644 samples, 0.29%)</title><rect x="26.3013%" y="661" width="0.2891%" height="15" fill="rgb(211,20,18)" fg:x="58594" fg:w="644"/><text x="26.5513%" y="671.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="26.6025%" y="389" width="0.0153%" height="15" fill="rgb(231,203,46)" fg:x="59265" fg:w="34"/><text x="26.8525%" y="399.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.02%)</title><rect x="26.6011%" y="437" width="0.0229%" height="15" fill="rgb(237,142,3)" fg:x="59262" fg:w="51"/><text x="26.8511%" y="447.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.02%)</title><rect x="26.6011%" y="421" width="0.0229%" height="15" fill="rgb(241,107,1)" fg:x="59262" fg:w="51"/><text x="26.8511%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.02%)</title><rect x="26.6016%" y="405" width="0.0224%" height="15" fill="rgb(229,83,13)" fg:x="59263" fg:w="50"/><text x="26.8516%" y="415.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.02%)</title><rect x="26.6007%" y="469" width="0.0238%" height="15" fill="rgb(241,91,40)" fg:x="59261" fg:w="53"/><text x="26.8507%" y="479.50"></text></g><g><title>Parse::Parse (53 samples, 0.02%)</title><rect x="26.6007%" y="453" width="0.0238%" height="15" fill="rgb(225,3,45)" fg:x="59261" fg:w="53"/><text x="26.8507%" y="463.50"></text></g><g><title>ParseGenerator::generate (75 samples, 0.03%)</title><rect x="26.5966%" y="565" width="0.0337%" height="15" fill="rgb(244,223,14)" fg:x="59252" fg:w="75"/><text x="26.8466%" y="575.50"></text></g><g><title>Parse::Parse (75 samples, 0.03%)</title><rect x="26.5966%" y="549" width="0.0337%" height="15" fill="rgb(224,124,37)" fg:x="59252" fg:w="75"/><text x="26.8466%" y="559.50"></text></g><g><title>Parse::do_all_blocks (75 samples, 0.03%)</title><rect x="26.5966%" y="533" width="0.0337%" height="15" fill="rgb(251,171,30)" fg:x="59252" fg:w="75"/><text x="26.8466%" y="543.50"></text></g><g><title>Parse::do_one_block (75 samples, 0.03%)</title><rect x="26.5966%" y="517" width="0.0337%" height="15" fill="rgb(236,46,54)" fg:x="59252" fg:w="75"/><text x="26.8466%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (75 samples, 0.03%)</title><rect x="26.5966%" y="501" width="0.0337%" height="15" fill="rgb(245,213,5)" fg:x="59252" fg:w="75"/><text x="26.8466%" y="511.50"></text></g><g><title>Parse::do_call (74 samples, 0.03%)</title><rect x="26.5971%" y="485" width="0.0332%" height="15" fill="rgb(230,144,27)" fg:x="59253" fg:w="74"/><text x="26.8471%" y="495.50"></text></g><g><title>ParseGenerator::generate (97 samples, 0.04%)</title><rect x="26.5904%" y="661" width="0.0435%" height="15" fill="rgb(220,86,6)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="671.50"></text></g><g><title>Parse::Parse (97 samples, 0.04%)</title><rect x="26.5904%" y="645" width="0.0435%" height="15" fill="rgb(240,20,13)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="655.50"></text></g><g><title>Parse::do_all_blocks (97 samples, 0.04%)</title><rect x="26.5904%" y="629" width="0.0435%" height="15" fill="rgb(217,89,34)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="639.50"></text></g><g><title>Parse::do_one_block (97 samples, 0.04%)</title><rect x="26.5904%" y="613" width="0.0435%" height="15" fill="rgb(229,13,5)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (97 samples, 0.04%)</title><rect x="26.5904%" y="597" width="0.0435%" height="15" fill="rgb(244,67,35)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="607.50"></text></g><g><title>Parse::do_call (97 samples, 0.04%)</title><rect x="26.5904%" y="581" width="0.0435%" height="15" fill="rgb(221,40,2)" fg:x="59238" fg:w="97"/><text x="26.8404%" y="591.50"></text></g><g><title>Parse::do_call (756 samples, 0.34%)</title><rect x="26.3008%" y="693" width="0.3393%" height="15" fill="rgb(237,157,21)" fg:x="58593" fg:w="756"/><text x="26.5508%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (111 samples, 0.05%)</title><rect x="26.5904%" y="677" width="0.0498%" height="15" fill="rgb(222,94,11)" fg:x="59238" fg:w="111"/><text x="26.8404%" y="687.50"></text></g><g><title>ParseGenerator::generate (757 samples, 0.34%)</title><rect x="26.3008%" y="773" width="0.3398%" height="15" fill="rgb(249,113,6)" fg:x="58593" fg:w="757"/><text x="26.5508%" y="783.50"></text></g><g><title>Parse::Parse (757 samples, 0.34%)</title><rect x="26.3008%" y="757" width="0.3398%" height="15" fill="rgb(238,137,36)" fg:x="58593" fg:w="757"/><text x="26.5508%" y="767.50"></text></g><g><title>Parse::do_all_blocks (757 samples, 0.34%)</title><rect x="26.3008%" y="741" width="0.3398%" height="15" fill="rgb(210,102,26)" fg:x="58593" fg:w="757"/><text x="26.5508%" y="751.50"></text></g><g><title>Parse::do_one_block (757 samples, 0.34%)</title><rect x="26.3008%" y="725" width="0.3398%" height="15" fill="rgb(218,30,30)" fg:x="58593" fg:w="757"/><text x="26.5508%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (757 samples, 0.34%)</title><rect x="26.3008%" y="709" width="0.3398%" height="15" fill="rgb(214,67,26)" fg:x="58593" fg:w="757"/><text x="26.5508%" y="719.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="26.6635%" y="341" width="0.0148%" height="15" fill="rgb(251,9,53)" fg:x="59401" fg:w="33"/><text x="26.9135%" y="351.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="26.6635%" y="325" width="0.0148%" height="15" fill="rgb(228,204,25)" fg:x="59401" fg:w="33"/><text x="26.9135%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="26.6635%" y="309" width="0.0148%" height="15" fill="rgb(207,153,8)" fg:x="59401" fg:w="33"/><text x="26.9135%" y="319.50"></text></g><g><title>ParseGenerator::generate (45 samples, 0.02%)</title><rect x="26.6604%" y="373" width="0.0202%" height="15" fill="rgb(242,9,16)" fg:x="59394" fg:w="45"/><text x="26.9104%" y="383.50"></text></g><g><title>Parse::Parse (45 samples, 0.02%)</title><rect x="26.6604%" y="357" width="0.0202%" height="15" fill="rgb(217,211,10)" fg:x="59394" fg:w="45"/><text x="26.9104%" y="367.50"></text></g><g><title>Parse::do_call (61 samples, 0.03%)</title><rect x="26.6568%" y="389" width="0.0274%" height="15" fill="rgb(219,228,52)" fg:x="59386" fg:w="61"/><text x="26.9068%" y="399.50"></text></g><g><title>Parse::do_all_blocks (88 samples, 0.04%)</title><rect x="26.6554%" y="437" width="0.0395%" height="15" fill="rgb(231,92,29)" fg:x="59383" fg:w="88"/><text x="26.9054%" y="447.50"></text></g><g><title>Parse::do_one_block (88 samples, 0.04%)</title><rect x="26.6554%" y="421" width="0.0395%" height="15" fill="rgb(232,8,23)" fg:x="59383" fg:w="88"/><text x="26.9054%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (88 samples, 0.04%)</title><rect x="26.6554%" y="405" width="0.0395%" height="15" fill="rgb(216,211,34)" fg:x="59383" fg:w="88"/><text x="26.9054%" y="415.50"></text></g><g><title>ParseGenerator::generate (91 samples, 0.04%)</title><rect x="26.6545%" y="469" width="0.0408%" height="15" fill="rgb(236,151,0)" fg:x="59381" fg:w="91"/><text x="26.9045%" y="479.50"></text></g><g><title>Parse::Parse (91 samples, 0.04%)</title><rect x="26.6545%" y="453" width="0.0408%" height="15" fill="rgb(209,168,3)" fg:x="59381" fg:w="91"/><text x="26.9045%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (25 samples, 0.01%)</title><rect x="26.6954%" y="469" width="0.0112%" height="15" fill="rgb(208,129,28)" fg:x="59472" fg:w="25"/><text x="26.9454%" y="479.50"></text></g><g><title>Parse::do_call (127 samples, 0.06%)</title><rect x="26.6505%" y="485" width="0.0570%" height="15" fill="rgb(229,78,22)" fg:x="59372" fg:w="127"/><text x="26.9005%" y="495.50"></text></g><g><title>ParseGenerator::generate (135 samples, 0.06%)</title><rect x="26.6492%" y="565" width="0.0606%" height="15" fill="rgb(228,187,13)" fg:x="59369" fg:w="135"/><text x="26.8992%" y="575.50"></text></g><g><title>Parse::Parse (135 samples, 0.06%)</title><rect x="26.6492%" y="549" width="0.0606%" height="15" fill="rgb(240,119,24)" fg:x="59369" fg:w="135"/><text x="26.8992%" y="559.50"></text></g><g><title>Parse::do_all_blocks (134 samples, 0.06%)</title><rect x="26.6496%" y="533" width="0.0601%" height="15" fill="rgb(209,194,42)" fg:x="59370" fg:w="134"/><text x="26.8996%" y="543.50"></text></g><g><title>Parse::do_one_block (134 samples, 0.06%)</title><rect x="26.6496%" y="517" width="0.0601%" height="15" fill="rgb(247,200,46)" fg:x="59370" fg:w="134"/><text x="26.8996%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (134 samples, 0.06%)</title><rect x="26.6496%" y="501" width="0.0601%" height="15" fill="rgb(218,76,16)" fg:x="59370" fg:w="134"/><text x="26.8996%" y="511.50"></text></g><g><title>Parse::do_call (170 samples, 0.08%)</title><rect x="26.6415%" y="581" width="0.0763%" height="15" fill="rgb(225,21,48)" fg:x="59352" fg:w="170"/><text x="26.8915%" y="591.50"></text></g><g><title>ParseGenerator::generate (171 samples, 0.08%)</title><rect x="26.6415%" y="661" width="0.0768%" height="15" fill="rgb(239,223,50)" fg:x="59352" fg:w="171"/><text x="26.8915%" y="671.50"></text></g><g><title>Parse::Parse (171 samples, 0.08%)</title><rect x="26.6415%" y="645" width="0.0768%" height="15" fill="rgb(244,45,21)" fg:x="59352" fg:w="171"/><text x="26.8915%" y="655.50"></text></g><g><title>Parse::do_all_blocks (171 samples, 0.08%)</title><rect x="26.6415%" y="629" width="0.0768%" height="15" fill="rgb(232,33,43)" fg:x="59352" fg:w="171"/><text x="26.8915%" y="639.50"></text></g><g><title>Parse::do_one_block (171 samples, 0.08%)</title><rect x="26.6415%" y="613" width="0.0768%" height="15" fill="rgb(209,8,3)" fg:x="59352" fg:w="171"/><text x="26.8915%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.08%)</title><rect x="26.6415%" y="597" width="0.0768%" height="15" fill="rgb(214,25,53)" fg:x="59352" fg:w="171"/><text x="26.8915%" y="607.50"></text></g><g><title>ParseGenerator::generate (190 samples, 0.09%)</title><rect x="26.6406%" y="757" width="0.0853%" height="15" fill="rgb(254,186,54)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="767.50"></text></g><g><title>Parse::Parse (190 samples, 0.09%)</title><rect x="26.6406%" y="741" width="0.0853%" height="15" fill="rgb(208,174,49)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="751.50"></text></g><g><title>Parse::do_all_blocks (190 samples, 0.09%)</title><rect x="26.6406%" y="725" width="0.0853%" height="15" fill="rgb(233,191,51)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="735.50"></text></g><g><title>Parse::do_one_block (190 samples, 0.09%)</title><rect x="26.6406%" y="709" width="0.0853%" height="15" fill="rgb(222,134,10)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (190 samples, 0.09%)</title><rect x="26.6406%" y="693" width="0.0853%" height="15" fill="rgb(230,226,20)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="703.50"></text></g><g><title>Parse::do_call (190 samples, 0.09%)</title><rect x="26.6406%" y="677" width="0.0853%" height="15" fill="rgb(251,111,25)" fg:x="59350" fg:w="190"/><text x="26.8906%" y="687.50"></text></g><g><title>Parse::do_call (980 samples, 0.44%)</title><rect x="26.3008%" y="789" width="0.4399%" height="15" fill="rgb(224,40,46)" fg:x="58593" fg:w="980"/><text x="26.5508%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (223 samples, 0.10%)</title><rect x="26.6406%" y="773" width="0.1001%" height="15" fill="rgb(236,108,47)" fg:x="59350" fg:w="223"/><text x="26.8906%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (33 samples, 0.01%)</title><rect x="26.7259%" y="757" width="0.0148%" height="15" fill="rgb(234,93,0)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="767.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.01%)</title><rect x="26.7259%" y="741" width="0.0148%" height="15" fill="rgb(224,213,32)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="751.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="26.7259%" y="725" width="0.0148%" height="15" fill="rgb(251,11,48)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="735.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="26.7259%" y="709" width="0.0148%" height="15" fill="rgb(236,173,5)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="719.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="26.7259%" y="693" width="0.0148%" height="15" fill="rgb(230,95,12)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="26.7259%" y="677" width="0.0148%" height="15" fill="rgb(232,209,1)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="687.50"></text></g><g><title>Parse::do_call (33 samples, 0.01%)</title><rect x="26.7259%" y="661" width="0.0148%" height="15" fill="rgb(232,6,1)" fg:x="59540" fg:w="33"/><text x="26.9759%" y="671.50"></text></g><g><title>ParseGenerator::generate (988 samples, 0.44%)</title><rect x="26.3008%" y="869" width="0.4435%" height="15" fill="rgb(210,224,50)" fg:x="58593" fg:w="988"/><text x="26.5508%" y="879.50"></text></g><g><title>Parse::Parse (988 samples, 0.44%)</title><rect x="26.3008%" y="853" width="0.4435%" height="15" fill="rgb(228,127,35)" fg:x="58593" fg:w="988"/><text x="26.5508%" y="863.50"></text></g><g><title>Parse::do_all_blocks (988 samples, 0.44%)</title><rect x="26.3008%" y="837" width="0.4435%" height="15" fill="rgb(245,102,45)" fg:x="58593" fg:w="988"/><text x="26.5508%" y="847.50"></text></g><g><title>Parse::do_one_block (988 samples, 0.44%)</title><rect x="26.3008%" y="821" width="0.4435%" height="15" fill="rgb(214,1,49)" fg:x="58593" fg:w="988"/><text x="26.5508%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (988 samples, 0.44%)</title><rect x="26.3008%" y="805" width="0.4435%" height="15" fill="rgb(226,163,40)" fg:x="58593" fg:w="988"/><text x="26.5508%" y="815.50"></text></g><g><title>Compile::Compile (41,474 samples, 18.62%)</title><rect x="8.1282%" y="885" width="18.6166%" height="15" fill="rgb(239,212,28)" fg:x="18108" fg:w="41474"/><text x="8.3782%" y="895.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (109 samples, 0.05%)</title><rect x="26.8179%" y="837" width="0.0489%" height="15" fill="rgb(220,20,13)" fg:x="59745" fg:w="109"/><text x="27.0679%" y="847.50"></text></g><g><title>Compile::final_graph_reshaping_walk (284 samples, 0.13%)</title><rect x="26.7488%" y="853" width="0.1275%" height="15" fill="rgb(210,164,35)" fg:x="59591" fg:w="284"/><text x="26.9988%" y="863.50"></text></g><g><title>Compile::final_graph_reshaping (290 samples, 0.13%)</title><rect x="26.7466%" y="869" width="0.1302%" height="15" fill="rgb(248,109,41)" fg:x="59586" fg:w="290"/><text x="26.9966%" y="879.50"></text></g><g><title>Compile::identify_useful_nodes (36 samples, 0.02%)</title><rect x="26.8844%" y="821" width="0.0162%" height="15" fill="rgb(238,23,50)" fg:x="59893" fg:w="36"/><text x="27.1344%" y="831.50"></text></g><g><title>Compile::remove_useless_nodes (24 samples, 0.01%)</title><rect x="26.9005%" y="821" width="0.0108%" height="15" fill="rgb(211,48,49)" fg:x="59929" fg:w="24"/><text x="27.1505%" y="831.50"></text></g><g><title>Compile::inline_incrementally_one (82 samples, 0.04%)</title><rect x="26.8772%" y="853" width="0.0368%" height="15" fill="rgb(223,36,21)" fg:x="59877" fg:w="82"/><text x="27.1272%" y="863.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (71 samples, 0.03%)</title><rect x="26.8821%" y="837" width="0.0319%" height="15" fill="rgb(207,123,46)" fg:x="59888" fg:w="71"/><text x="27.1321%" y="847.50"></text></g><g><title>Compile::inline_incrementally (86 samples, 0.04%)</title><rect x="26.8767%" y="869" width="0.0386%" height="15" fill="rgb(240,218,32)" fg:x="59876" fg:w="86"/><text x="27.1267%" y="879.50"></text></g><g><title>PhaseIterGVN::optimize (51 samples, 0.02%)</title><rect x="26.9849%" y="853" width="0.0229%" height="15" fill="rgb(252,5,43)" fg:x="60117" fg:w="51"/><text x="27.2349%" y="863.50"></text></g><g><title>PhaseIterGVN::transform_old (50 samples, 0.02%)</title><rect x="26.9854%" y="837" width="0.0224%" height="15" fill="rgb(252,84,19)" fg:x="60118" fg:w="50"/><text x="27.2354%" y="847.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (43 samples, 0.02%)</title><rect x="27.0078%" y="853" width="0.0193%" height="15" fill="rgb(243,152,39)" fg:x="60168" fg:w="43"/><text x="27.2578%" y="863.50"></text></g><g><title>Compile::remove_speculative_types (239 samples, 0.11%)</title><rect x="26.9216%" y="869" width="0.1073%" height="15" fill="rgb(234,160,15)" fg:x="59976" fg:w="239"/><text x="27.1716%" y="879.50"></text></g><g><title>ConnectionGraph::process_call_arguments (26 samples, 0.01%)</title><rect x="27.0783%" y="821" width="0.0117%" height="15" fill="rgb(237,34,20)" fg:x="60325" fg:w="26"/><text x="27.3283%" y="831.50"></text></g><g><title>ciMethod::get_bcea (23 samples, 0.01%)</title><rect x="27.0796%" y="805" width="0.0103%" height="15" fill="rgb(229,97,13)" fg:x="60328" fg:w="23"/><text x="27.3296%" y="815.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (23 samples, 0.01%)</title><rect x="27.0796%" y="789" width="0.0103%" height="15" fill="rgb(234,71,50)" fg:x="60328" fg:w="23"/><text x="27.3296%" y="799.50"></text></g><g><title>ConnectionGraph::add_final_edges (36 samples, 0.02%)</title><rect x="27.0751%" y="837" width="0.0162%" height="15" fill="rgb(253,155,4)" fg:x="60318" fg:w="36"/><text x="27.3251%" y="847.50"></text></g><g><title>ConnectionGraph::is_oop_field (24 samples, 0.01%)</title><rect x="27.1155%" y="805" width="0.0108%" height="15" fill="rgb(222,185,37)" fg:x="60408" fg:w="24"/><text x="27.3655%" y="815.50"></text></g><g><title>ConnectionGraph::add_field (32 samples, 0.01%)</title><rect x="27.1142%" y="821" width="0.0144%" height="15" fill="rgb(251,177,13)" fg:x="60405" fg:w="32"/><text x="27.3642%" y="831.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (84 samples, 0.04%)</title><rect x="27.0944%" y="837" width="0.0377%" height="15" fill="rgb(250,179,40)" fg:x="60361" fg:w="84"/><text x="27.3444%" y="847.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (41 samples, 0.02%)</title><rect x="27.1447%" y="821" width="0.0184%" height="15" fill="rgb(242,44,2)" fg:x="60473" fg:w="41"/><text x="27.3947%" y="831.50"></text></g><g><title>ConnectionGraph::add_java_object_edges (23 samples, 0.01%)</title><rect x="27.1631%" y="821" width="0.0103%" height="15" fill="rgb(216,177,13)" fg:x="60514" fg:w="23"/><text x="27.4131%" y="831.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (110 samples, 0.05%)</title><rect x="27.1335%" y="837" width="0.0494%" height="15" fill="rgb(216,106,43)" fg:x="60448" fg:w="110"/><text x="27.3835%" y="847.50"></text></g><g><title>ConnectionGraph::find_inst_mem (27 samples, 0.01%)</title><rect x="27.1959%" y="789" width="0.0121%" height="15" fill="rgb(216,183,2)" fg:x="60587" fg:w="27"/><text x="27.4459%" y="799.50"></text></g><g><title>ConnectionGraph::split_memory_phi (33 samples, 0.01%)</title><rect x="27.1936%" y="805" width="0.0148%" height="15" fill="rgb(249,75,3)" fg:x="60582" fg:w="33"/><text x="27.4436%" y="815.50"></text></g><g><title>ConnectionGraph::find_inst_mem (38 samples, 0.02%)</title><rect x="27.1923%" y="821" width="0.0171%" height="15" fill="rgb(219,67,39)" fg:x="60579" fg:w="38"/><text x="27.4423%" y="831.50"></text></g><g><title>ConnectionGraph::split_unique_types (58 samples, 0.03%)</title><rect x="27.1896%" y="837" width="0.0260%" height="15" fill="rgb(253,228,2)" fg:x="60573" fg:w="58"/><text x="27.4396%" y="847.50"></text></g><g><title>ConnectionGraph::compute_escape (423 samples, 0.19%)</title><rect x="27.0316%" y="853" width="0.1899%" height="15" fill="rgb(235,138,27)" fg:x="60221" fg:w="423"/><text x="27.2816%" y="863.50"></text></g><g><title>ConnectionGraph::do_analysis (429 samples, 0.19%)</title><rect x="27.0294%" y="869" width="0.1926%" height="15" fill="rgb(236,97,51)" fg:x="60216" fg:w="429"/><text x="27.2794%" y="879.50"></text></g><g><title>PhiNode::Value (41 samples, 0.02%)</title><rect x="27.4333%" y="853" width="0.0184%" height="15" fill="rgb(240,80,30)" fg:x="61116" fg:w="41"/><text x="27.6833%" y="863.50"></text></g><g><title>TypeInstPtr::add_offset (45 samples, 0.02%)</title><rect x="27.4841%" y="853" width="0.0202%" height="15" fill="rgb(230,178,19)" fg:x="61229" fg:w="45"/><text x="27.7341%" y="863.50"></text></g><g><title>TypeInstPtr::make (23 samples, 0.01%)</title><rect x="27.4939%" y="837" width="0.0103%" height="15" fill="rgb(210,190,27)" fg:x="61251" fg:w="23"/><text x="27.7439%" y="847.50"></text></g><g><title>PhaseCCP::analyze (664 samples, 0.30%)</title><rect x="27.2237%" y="869" width="0.2981%" height="15" fill="rgb(222,107,31)" fg:x="60649" fg:w="664"/><text x="27.4737%" y="879.50"></text></g><g><title>PhaseCCP::transform_once (92 samples, 0.04%)</title><rect x="27.5658%" y="837" width="0.0413%" height="15" fill="rgb(216,127,34)" fg:x="61411" fg:w="92"/><text x="27.8158%" y="847.50"></text></g><g><title>PhaseCCP::do_transform (191 samples, 0.09%)</title><rect x="27.5218%" y="869" width="0.0857%" height="15" fill="rgb(234,116,52)" fg:x="61313" fg:w="191"/><text x="27.7718%" y="879.50"></text></g><g><title>PhaseCCP::transform (191 samples, 0.09%)</title><rect x="27.5218%" y="853" width="0.0857%" height="15" fill="rgb(222,124,15)" fg:x="61313" fg:w="191"/><text x="27.7718%" y="863.50"></text></g><g><title>IdealLoopTree::counted_loop (25 samples, 0.01%)</title><rect x="27.6362%" y="821" width="0.0112%" height="15" fill="rgb(231,179,28)" fg:x="61568" fg:w="25"/><text x="27.8862%" y="831.50"></text></g><g><title>IdealLoopTree::counted_loop (35 samples, 0.02%)</title><rect x="27.6358%" y="837" width="0.0157%" height="15" fill="rgb(226,93,45)" fg:x="61567" fg:w="35"/><text x="27.8858%" y="847.50"></text></g><g><title>IdealLoopTree::counted_loop (37 samples, 0.02%)</title><rect x="27.6353%" y="853" width="0.0166%" height="15" fill="rgb(215,8,51)" fg:x="61566" fg:w="37"/><text x="27.8853%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split (24 samples, 0.01%)</title><rect x="27.6618%" y="677" width="0.0108%" height="15" fill="rgb(223,106,5)" fg:x="61625" fg:w="24"/><text x="27.9118%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (30 samples, 0.01%)</title><rect x="27.6618%" y="693" width="0.0135%" height="15" fill="rgb(250,191,5)" fg:x="61625" fg:w="30"/><text x="27.9118%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (42 samples, 0.02%)</title><rect x="27.6614%" y="709" width="0.0189%" height="15" fill="rgb(242,132,44)" fg:x="61624" fg:w="42"/><text x="27.9114%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (45 samples, 0.02%)</title><rect x="27.6614%" y="725" width="0.0202%" height="15" fill="rgb(251,152,29)" fg:x="61624" fg:w="45"/><text x="27.9114%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (52 samples, 0.02%)</title><rect x="27.6605%" y="741" width="0.0233%" height="15" fill="rgb(218,179,5)" fg:x="61622" fg:w="52"/><text x="27.9105%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (63 samples, 0.03%)</title><rect x="27.6600%" y="757" width="0.0283%" height="15" fill="rgb(227,67,19)" fg:x="61621" fg:w="63"/><text x="27.9100%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (70 samples, 0.03%)</title><rect x="27.6600%" y="773" width="0.0314%" height="15" fill="rgb(233,119,31)" fg:x="61621" fg:w="70"/><text x="27.9100%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (77 samples, 0.03%)</title><rect x="27.6600%" y="789" width="0.0346%" height="15" fill="rgb(241,120,22)" fg:x="61621" fg:w="77"/><text x="27.9100%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (92 samples, 0.04%)</title><rect x="27.6591%" y="805" width="0.0413%" height="15" fill="rgb(224,102,30)" fg:x="61619" fg:w="92"/><text x="27.9091%" y="815.50"></text></g><g><title>PhaseIdealLoop::do_unroll (25 samples, 0.01%)</title><rect x="27.7031%" y="789" width="0.0112%" height="15" fill="rgb(210,164,37)" fg:x="61717" fg:w="25"/><text x="27.9531%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (138 samples, 0.06%)</title><rect x="27.6569%" y="821" width="0.0619%" height="15" fill="rgb(226,191,16)" fg:x="61614" fg:w="138"/><text x="27.9069%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (41 samples, 0.02%)</title><rect x="27.7004%" y="805" width="0.0184%" height="15" fill="rgb(214,40,45)" fg:x="61711" fg:w="41"/><text x="27.9504%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (34 samples, 0.02%)</title><rect x="27.7188%" y="821" width="0.0153%" height="15" fill="rgb(244,29,26)" fg:x="61752" fg:w="34"/><text x="27.9688%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split (179 samples, 0.08%)</title><rect x="27.6555%" y="837" width="0.0803%" height="15" fill="rgb(216,16,5)" fg:x="61611" fg:w="179"/><text x="27.9055%" y="847.50"></text></g><g><title>IdealLoopTree::iteration_split (203 samples, 0.09%)</title><rect x="27.6519%" y="853" width="0.0911%" height="15" fill="rgb(249,76,35)" fg:x="61603" fg:w="203"/><text x="27.9019%" y="863.50"></text></g><g><title>IdealLoopTree::loop_predication (39 samples, 0.02%)</title><rect x="27.7435%" y="821" width="0.0175%" height="15" fill="rgb(207,11,44)" fg:x="61807" fg:w="39"/><text x="27.9935%" y="831.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (31 samples, 0.01%)</title><rect x="27.7471%" y="805" width="0.0139%" height="15" fill="rgb(228,190,49)" fg:x="61815" fg:w="31"/><text x="27.9971%" y="815.50"></text></g><g><title>IdealLoopTree::loop_predication (73 samples, 0.03%)</title><rect x="27.7435%" y="837" width="0.0328%" height="15" fill="rgb(214,173,12)" fg:x="61807" fg:w="73"/><text x="27.9935%" y="847.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (34 samples, 0.02%)</title><rect x="27.7610%" y="821" width="0.0153%" height="15" fill="rgb(218,26,35)" fg:x="61846" fg:w="34"/><text x="28.0110%" y="831.50"></text></g><g><title>PathFrequency::to (25 samples, 0.01%)</title><rect x="27.7821%" y="821" width="0.0112%" height="15" fill="rgb(220,200,19)" fg:x="61893" fg:w="25"/><text x="28.0321%" y="831.50"></text></g><g><title>PathFrequency::to (23 samples, 0.01%)</title><rect x="27.7978%" y="805" width="0.0103%" height="15" fill="rgb(239,95,49)" fg:x="61928" fg:w="23"/><text x="28.0478%" y="815.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (68 samples, 0.03%)</title><rect x="27.7933%" y="821" width="0.0305%" height="15" fill="rgb(235,85,53)" fg:x="61918" fg:w="68"/><text x="28.0433%" y="831.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (30 samples, 0.01%)</title><rect x="27.8239%" y="821" width="0.0135%" height="15" fill="rgb(233,133,31)" fg:x="61986" fg:w="30"/><text x="28.0739%" y="831.50"></text></g><g><title>IdealLoopTree::loop_predication (229 samples, 0.10%)</title><rect x="27.7431%" y="853" width="0.1028%" height="15" fill="rgb(218,25,20)" fg:x="61806" fg:w="229"/><text x="27.9931%" y="863.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (155 samples, 0.07%)</title><rect x="27.7763%" y="837" width="0.0696%" height="15" fill="rgb(252,210,38)" fg:x="61880" fg:w="155"/><text x="28.0263%" y="847.50"></text></g><g><title>NTarjan::DFS (306 samples, 0.14%)</title><rect x="28.1830%" y="837" width="0.1374%" height="15" fill="rgb(242,134,21)" fg:x="62786" fg:w="306"/><text x="28.4330%" y="847.50"></text></g><g><title>asm_exc_page_fault (28 samples, 0.01%)</title><rect x="28.3356%" y="837" width="0.0126%" height="15" fill="rgb(213,28,48)" fg:x="63126" fg:w="28"/><text x="28.5856%" y="847.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,085 samples, 0.49%)</title><rect x="27.8643%" y="853" width="0.4870%" height="15" fill="rgb(250,196,2)" fg:x="62076" fg:w="1085"/><text x="28.1143%" y="863.50"></text></g><g><title>PhaseIdealLoop::dom_depth (56 samples, 0.03%)</title><rect x="28.8922%" y="805" width="0.0251%" height="15" fill="rgb(227,5,17)" fg:x="64366" fg:w="56"/><text x="29.1422%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (150 samples, 0.07%)</title><rect x="28.9173%" y="805" width="0.0673%" height="15" fill="rgb(221,226,24)" fg:x="64422" fg:w="150"/><text x="29.1673%" y="815.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (363 samples, 0.16%)</title><rect x="28.8222%" y="837" width="0.1629%" height="15" fill="rgb(211,5,48)" fg:x="64210" fg:w="363"/><text x="29.0722%" y="847.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (331 samples, 0.15%)</title><rect x="28.8365%" y="821" width="0.1486%" height="15" fill="rgb(219,150,6)" fg:x="64242" fg:w="331"/><text x="29.0865%" y="831.50"></text></g><g><title>PhiNode::pinned (37 samples, 0.02%)</title><rect x="28.9855%" y="837" width="0.0166%" height="15" fill="rgb(251,46,16)" fg:x="64574" fg:w="37"/><text x="29.2355%" y="847.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,492 samples, 0.67%)</title><rect x="28.3513%" y="853" width="0.6697%" height="15" fill="rgb(220,204,40)" fg:x="63161" fg:w="1492"/><text x="28.6013%" y="863.50"></text></g><g><title>Node::unique_ctrl_out (70 samples, 0.03%)</title><rect x="29.7742%" y="821" width="0.0314%" height="15" fill="rgb(211,85,2)" fg:x="66331" fg:w="70"/><text x="30.0242%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (78 samples, 0.04%)</title><rect x="29.8065%" y="821" width="0.0350%" height="15" fill="rgb(229,17,7)" fg:x="66403" fg:w="78"/><text x="30.0565%" y="831.50"></text></g><g><title>PhaseIdealLoop::dom_depth (50 samples, 0.02%)</title><rect x="30.0808%" y="773" width="0.0224%" height="15" fill="rgb(239,72,28)" fg:x="67014" fg:w="50"/><text x="30.3308%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (250 samples, 0.11%)</title><rect x="30.0413%" y="789" width="0.1122%" height="15" fill="rgb(230,47,54)" fg:x="66926" fg:w="250"/><text x="30.2913%" y="799.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (112 samples, 0.05%)</title><rect x="30.1032%" y="773" width="0.0503%" height="15" fill="rgb(214,50,8)" fg:x="67064" fg:w="112"/><text x="30.3532%" y="783.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (371 samples, 0.17%)</title><rect x="30.0022%" y="805" width="0.1665%" height="15" fill="rgb(216,198,43)" fg:x="66839" fg:w="371"/><text x="30.2522%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (34 samples, 0.02%)</title><rect x="30.1535%" y="789" width="0.0153%" height="15" fill="rgb(234,20,35)" fg:x="67176" fg:w="34"/><text x="30.4035%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_depth (33 samples, 0.01%)</title><rect x="30.2024%" y="789" width="0.0148%" height="15" fill="rgb(254,45,19)" fg:x="67285" fg:w="33"/><text x="30.4524%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (116 samples, 0.05%)</title><rect x="30.1688%" y="805" width="0.0521%" height="15" fill="rgb(219,14,44)" fg:x="67210" fg:w="116"/><text x="30.4188%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (26 samples, 0.01%)</title><rect x="30.2208%" y="805" width="0.0117%" height="15" fill="rgb(217,220,26)" fg:x="67326" fg:w="26"/><text x="30.4708%" y="815.50"></text></g><g><title>PhaseIdealLoop::dom_depth (307 samples, 0.14%)</title><rect x="30.6563%" y="789" width="0.1378%" height="15" fill="rgb(213,158,28)" fg:x="68296" fg:w="307"/><text x="30.9063%" y="799.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,268 samples, 0.57%)</title><rect x="30.2325%" y="805" width="0.5692%" height="15" fill="rgb(252,51,52)" fg:x="67352" fg:w="1268"/><text x="30.4825%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,166 samples, 0.97%)</title><rect x="29.8415%" y="821" width="0.9723%" height="15" fill="rgb(246,89,16)" fg:x="66481" fg:w="2166"/><text x="30.0915%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_loop (48 samples, 0.02%)</title><rect x="30.8138%" y="821" width="0.0215%" height="15" fill="rgb(216,158,49)" fg:x="68647" fg:w="48"/><text x="31.0638%" y="831.50"></text></g><g><title>ProjNode::is_uncommon_trap_if_pattern (27 samples, 0.01%)</title><rect x="30.8371%" y="821" width="0.0121%" height="15" fill="rgb(236,107,19)" fg:x="68699" fg:w="27"/><text x="31.0871%" y="831.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (2,938 samples, 1.32%)</title><rect x="29.5314%" y="837" width="1.3188%" height="15" fill="rgb(228,185,30)" fg:x="65790" fg:w="2938"/><text x="29.7814%" y="847.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (4,088 samples, 1.83%)</title><rect x="29.0210%" y="853" width="1.8350%" height="15" fill="rgb(246,134,8)" fg:x="64653" fg:w="4088"/><text x="29.2710%" y="863.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (209 samples, 0.09%)</title><rect x="31.1217%" y="837" width="0.0938%" height="15" fill="rgb(214,143,50)" fg:x="69333" fg:w="209"/><text x="31.3717%" y="847.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (810 samples, 0.36%)</title><rect x="30.8573%" y="853" width="0.3636%" height="15" fill="rgb(228,75,8)" fg:x="68744" fg:w="810"/><text x="31.1073%" y="863.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (29 samples, 0.01%)</title><rect x="31.2250%" y="837" width="0.0130%" height="15" fill="rgb(207,175,4)" fg:x="69563" fg:w="29"/><text x="31.4750%" y="847.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (33 samples, 0.01%)</title><rect x="31.2241%" y="853" width="0.0148%" height="15" fill="rgb(205,108,24)" fg:x="69561" fg:w="33"/><text x="31.4741%" y="863.50"></text></g><g><title>PhaseIdealLoop::handle_use (25 samples, 0.01%)</title><rect x="31.4763%" y="821" width="0.0112%" height="15" fill="rgb(244,120,49)" fg:x="70123" fg:w="25"/><text x="31.7263%" y="831.50"></text></g><g><title>PhaseIdealLoop::do_split_if (83 samples, 0.04%)</title><rect x="31.4728%" y="837" width="0.0373%" height="15" fill="rgb(223,47,38)" fg:x="70115" fg:w="83"/><text x="31.7228%" y="847.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (24 samples, 0.01%)</title><rect x="31.5737%" y="821" width="0.0108%" height="15" fill="rgb(229,179,11)" fg:x="70340" fg:w="24"/><text x="31.8237%" y="831.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (27 samples, 0.01%)</title><rect x="31.5989%" y="821" width="0.0121%" height="15" fill="rgb(231,122,1)" fg:x="70396" fg:w="27"/><text x="31.8489%" y="831.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (242 samples, 0.11%)</title><rect x="31.5123%" y="837" width="0.1086%" height="15" fill="rgb(245,119,9)" fg:x="70203" fg:w="242"/><text x="31.7623%" y="847.50"></text></g><g><title>ConstraintCastNode::dominating_cast (37 samples, 0.02%)</title><rect x="31.6698%" y="821" width="0.0166%" height="15" fill="rgb(241,163,25)" fg:x="70554" fg:w="37"/><text x="31.9198%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (54 samples, 0.02%)</title><rect x="31.6976%" y="821" width="0.0242%" height="15" fill="rgb(217,214,3)" fg:x="70616" fg:w="54"/><text x="31.9476%" y="831.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (89 samples, 0.04%)</title><rect x="31.7219%" y="821" width="0.0399%" height="15" fill="rgb(240,86,28)" fg:x="70670" fg:w="89"/><text x="31.9719%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (28 samples, 0.01%)</title><rect x="31.7493%" y="805" width="0.0126%" height="15" fill="rgb(215,47,9)" fg:x="70731" fg:w="28"/><text x="31.9993%" y="815.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (165 samples, 0.07%)</title><rect x="31.7627%" y="821" width="0.0741%" height="15" fill="rgb(252,25,45)" fg:x="70761" fg:w="165"/><text x="32.0127%" y="831.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (53 samples, 0.02%)</title><rect x="31.8130%" y="805" width="0.0238%" height="15" fill="rgb(251,164,9)" fg:x="70873" fg:w="53"/><text x="32.0630%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (46 samples, 0.02%)</title><rect x="31.8790%" y="805" width="0.0206%" height="15" fill="rgb(233,194,0)" fg:x="71020" fg:w="46"/><text x="32.1290%" y="815.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (157 samples, 0.07%)</title><rect x="31.8368%" y="821" width="0.0705%" height="15" fill="rgb(249,111,24)" fg:x="70926" fg:w="157"/><text x="32.0868%" y="831.50"></text></g><g><title>PhaseIdealLoop::try_move_store_before_loop (24 samples, 0.01%)</title><rect x="31.9073%" y="821" width="0.0108%" height="15" fill="rgb(250,223,3)" fg:x="71083" fg:w="24"/><text x="32.1573%" y="831.50"></text></g><g><title>PhaseIterGVN::subsume_node (30 samples, 0.01%)</title><rect x="31.9212%" y="821" width="0.0135%" height="15" fill="rgb(236,178,37)" fg:x="71114" fg:w="30"/><text x="32.1712%" y="831.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (701 samples, 0.31%)</title><rect x="31.6209%" y="837" width="0.3147%" height="15" fill="rgb(241,158,50)" fg:x="70445" fg:w="701"/><text x="31.8709%" y="847.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,534 samples, 0.69%)</title><rect x="31.2501%" y="853" width="0.6886%" height="15" fill="rgb(213,121,41)" fg:x="69619" fg:w="1534"/><text x="31.5001%" y="863.50"></text></g><g><title>CallNode::Ideal (36 samples, 0.02%)</title><rect x="32.0280%" y="821" width="0.0162%" height="15" fill="rgb(240,92,3)" fg:x="71352" fg:w="36"/><text x="32.2780%" y="831.50"></text></g><g><title>Node::remove_dead_region (34 samples, 0.02%)</title><rect x="32.0289%" y="805" width="0.0153%" height="15" fill="rgb(205,123,3)" fg:x="71354" fg:w="34"/><text x="32.2789%" y="815.50"></text></g><g><title>CastIINode::Value (28 samples, 0.01%)</title><rect x="32.0473%" y="821" width="0.0126%" height="15" fill="rgb(205,97,47)" fg:x="71395" fg:w="28"/><text x="32.2973%" y="831.50"></text></g><g><title>ConvI2LNode::Value (23 samples, 0.01%)</title><rect x="32.0900%" y="821" width="0.0103%" height="15" fill="rgb(247,152,14)" fg:x="71490" fg:w="23"/><text x="32.3400%" y="831.50"></text></g><g><title>MemNode::all_controls_dominate (27 samples, 0.01%)</title><rect x="32.1353%" y="789" width="0.0121%" height="15" fill="rgb(248,195,53)" fg:x="71591" fg:w="27"/><text x="32.3853%" y="799.50"></text></g><g><title>LoadNode::Ideal (78 samples, 0.04%)</title><rect x="32.1160%" y="821" width="0.0350%" height="15" fill="rgb(226,201,16)" fg:x="71548" fg:w="78"/><text x="32.3660%" y="831.50"></text></g><g><title>MemNode::find_previous_store (36 samples, 0.02%)</title><rect x="32.1348%" y="805" width="0.0162%" height="15" fill="rgb(205,98,0)" fg:x="71590" fg:w="36"/><text x="32.3848%" y="815.50"></text></g><g><title>NodeHash::grow (29 samples, 0.01%)</title><rect x="32.1981%" y="805" width="0.0130%" height="15" fill="rgb(214,191,48)" fg:x="71731" fg:w="29"/><text x="32.4481%" y="815.50"></text></g><g><title>NodeHash::hash_find_insert (103 samples, 0.05%)</title><rect x="32.1672%" y="821" width="0.0462%" height="15" fill="rgb(237,112,39)" fg:x="71662" fg:w="103"/><text x="32.4172%" y="831.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (55 samples, 0.02%)</title><rect x="32.2134%" y="821" width="0.0247%" height="15" fill="rgb(247,203,27)" fg:x="71765" fg:w="55"/><text x="32.4634%" y="831.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (45 samples, 0.02%)</title><rect x="32.2489%" y="805" width="0.0202%" height="15" fill="rgb(235,124,28)" fg:x="71844" fg:w="45"/><text x="32.4989%" y="815.50"></text></g><g><title>PhaseIterGVN::subsume_node (78 samples, 0.04%)</title><rect x="32.2381%" y="821" width="0.0350%" height="15" fill="rgb(208,207,46)" fg:x="71820" fg:w="78"/><text x="32.4881%" y="831.50"></text></g><g><title>PhiNode::Ideal (43 samples, 0.02%)</title><rect x="32.2731%" y="821" width="0.0193%" height="15" fill="rgb(234,176,4)" fg:x="71898" fg:w="43"/><text x="32.5231%" y="831.50"></text></g><g><title>PhiNode::Value (34 samples, 0.02%)</title><rect x="32.2946%" y="821" width="0.0153%" height="15" fill="rgb(230,133,28)" fg:x="71946" fg:w="34"/><text x="32.5446%" y="831.50"></text></g><g><title>PhaseIterGVN::subsume_node (25 samples, 0.01%)</title><rect x="32.3391%" y="805" width="0.0112%" height="15" fill="rgb(211,137,40)" fg:x="72045" fg:w="25"/><text x="32.5891%" y="815.50"></text></g><g><title>RegionNode::is_unreachable_region (125 samples, 0.06%)</title><rect x="32.3597%" y="805" width="0.0561%" height="15" fill="rgb(254,35,13)" fg:x="72091" fg:w="125"/><text x="32.6097%" y="815.50"></text></g><g><title>RegionNode::Ideal (216 samples, 0.10%)</title><rect x="32.3193%" y="821" width="0.0970%" height="15" fill="rgb(225,49,51)" fg:x="72001" fg:w="216"/><text x="32.5693%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (23 samples, 0.01%)</title><rect x="32.4221%" y="549" width="0.0103%" height="15" fill="rgb(251,10,15)" fg:x="72230" fg:w="23"/><text x="32.6721%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (26 samples, 0.01%)</title><rect x="32.4221%" y="565" width="0.0117%" height="15" fill="rgb(228,207,15)" fg:x="72230" fg:w="26"/><text x="32.6721%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (32 samples, 0.01%)</title><rect x="32.4221%" y="581" width="0.0144%" height="15" fill="rgb(241,99,19)" fg:x="72230" fg:w="32"/><text x="32.6721%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (34 samples, 0.02%)</title><rect x="32.4221%" y="597" width="0.0153%" height="15" fill="rgb(207,104,49)" fg:x="72230" fg:w="34"/><text x="32.6721%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (36 samples, 0.02%)</title><rect x="32.4221%" y="613" width="0.0162%" height="15" fill="rgb(234,99,18)" fg:x="72230" fg:w="36"/><text x="32.6721%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (41 samples, 0.02%)</title><rect x="32.4221%" y="629" width="0.0184%" height="15" fill="rgb(213,191,49)" fg:x="72230" fg:w="41"/><text x="32.6721%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (44 samples, 0.02%)</title><rect x="32.4221%" y="645" width="0.0198%" height="15" fill="rgb(210,226,19)" fg:x="72230" fg:w="44"/><text x="32.6721%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (46 samples, 0.02%)</title><rect x="32.4221%" y="661" width="0.0206%" height="15" fill="rgb(229,97,18)" fg:x="72230" fg:w="46"/><text x="32.6721%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (47 samples, 0.02%)</title><rect x="32.4221%" y="677" width="0.0211%" height="15" fill="rgb(211,167,15)" fg:x="72230" fg:w="47"/><text x="32.6721%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.02%)</title><rect x="32.4221%" y="693" width="0.0220%" height="15" fill="rgb(210,169,34)" fg:x="72230" fg:w="49"/><text x="32.6721%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (50 samples, 0.02%)</title><rect x="32.4221%" y="709" width="0.0224%" height="15" fill="rgb(241,121,31)" fg:x="72230" fg:w="50"/><text x="32.6721%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (53 samples, 0.02%)</title><rect x="32.4221%" y="725" width="0.0238%" height="15" fill="rgb(232,40,11)" fg:x="72230" fg:w="53"/><text x="32.6721%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (56 samples, 0.03%)</title><rect x="32.4221%" y="741" width="0.0251%" height="15" fill="rgb(205,86,26)" fg:x="72230" fg:w="56"/><text x="32.6721%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (60 samples, 0.03%)</title><rect x="32.4217%" y="757" width="0.0269%" height="15" fill="rgb(231,126,28)" fg:x="72229" fg:w="60"/><text x="32.6717%" y="767.50"></text></g><g><title>InitializeNode::can_capture_store (69 samples, 0.03%)</title><rect x="32.4217%" y="805" width="0.0310%" height="15" fill="rgb(219,221,18)" fg:x="72229" fg:w="69"/><text x="32.6717%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.03%)</title><rect x="32.4217%" y="789" width="0.0310%" height="15" fill="rgb(211,40,0)" fg:x="72229" fg:w="69"/><text x="32.6717%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.03%)</title><rect x="32.4217%" y="773" width="0.0310%" height="15" fill="rgb(239,85,43)" fg:x="72229" fg:w="69"/><text x="32.6717%" y="783.50"></text></g><g><title>StoreNode::Ideal (78 samples, 0.04%)</title><rect x="32.4217%" y="821" width="0.0350%" height="15" fill="rgb(231,55,21)" fg:x="72229" fg:w="78"/><text x="32.6717%" y="831.50"></text></g><g><title>PhaseIterGVN::transform_old (1,156 samples, 0.52%)</title><rect x="31.9584%" y="837" width="0.5189%" height="15" fill="rgb(225,184,43)" fg:x="71197" fg:w="1156"/><text x="32.2084%" y="847.50"></text></g><g><title>PhaseIterGVN::optimize (1,206 samples, 0.54%)</title><rect x="31.9405%" y="853" width="0.5413%" height="15" fill="rgb(251,158,41)" fg:x="71157" fg:w="1206"/><text x="32.1905%" y="863.50"></text></g><g><title>SuperWord::SLP_extract (35 samples, 0.02%)</title><rect x="32.4998%" y="837" width="0.0157%" height="15" fill="rgb(234,159,37)" fg:x="72403" fg:w="35"/><text x="32.7498%" y="847.50"></text></g><g><title>SuperWord::transform_loop (36 samples, 0.02%)</title><rect x="32.4998%" y="853" width="0.0162%" height="15" fill="rgb(216,204,22)" fg:x="72403" fg:w="36"/><text x="32.7498%" y="863.50"></text></g><g><title>[libc-2.31.so] (23 samples, 0.01%)</title><rect x="32.5159%" y="853" width="0.0103%" height="15" fill="rgb(214,17,3)" fg:x="72439" fg:w="23"/><text x="32.7659%" y="863.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (10,943 samples, 4.91%)</title><rect x="27.6165%" y="869" width="4.9120%" height="15" fill="rgb(212,111,17)" fg:x="61524" fg:w="10943"/><text x="27.8665%" y="879.50">PhaseI..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (69 samples, 0.03%)</title><rect x="32.5518%" y="853" width="0.0310%" height="15" fill="rgb(221,157,24)" fg:x="72519" fg:w="69"/><text x="32.8018%" y="863.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (123 samples, 0.06%)</title><rect x="32.5285%" y="869" width="0.0552%" height="15" fill="rgb(252,16,13)" fg:x="72467" fg:w="123"/><text x="32.7785%" y="879.50"></text></g><g><title>CallNode::Ideal (29 samples, 0.01%)</title><rect x="32.6946%" y="837" width="0.0130%" height="15" fill="rgb(221,62,2)" fg:x="72837" fg:w="29"/><text x="32.9446%" y="847.50"></text></g><g><title>Node::remove_dead_region (26 samples, 0.01%)</title><rect x="32.6959%" y="821" width="0.0117%" height="15" fill="rgb(247,87,22)" fg:x="72840" fg:w="26"/><text x="32.9459%" y="831.50"></text></g><g><title>IfNode::search_identical (45 samples, 0.02%)</title><rect x="32.7588%" y="821" width="0.0202%" height="15" fill="rgb(215,73,9)" fg:x="72980" fg:w="45"/><text x="33.0088%" y="831.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (92 samples, 0.04%)</title><rect x="32.7906%" y="805" width="0.0413%" height="15" fill="rgb(207,175,33)" fg:x="73051" fg:w="92"/><text x="33.0406%" y="815.50"></text></g><g><title>Unique_Node_List::remove (81 samples, 0.04%)</title><rect x="32.7956%" y="789" width="0.0364%" height="15" fill="rgb(243,129,54)" fg:x="73062" fg:w="81"/><text x="33.0456%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (96 samples, 0.04%)</title><rect x="32.7893%" y="821" width="0.0431%" height="15" fill="rgb(227,119,45)" fg:x="73048" fg:w="96"/><text x="33.0393%" y="831.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (39 samples, 0.02%)</title><rect x="32.8477%" y="805" width="0.0175%" height="15" fill="rgb(205,109,36)" fg:x="73178" fg:w="39"/><text x="33.0977%" y="815.50"></text></g><g><title>Unique_Node_List::remove (30 samples, 0.01%)</title><rect x="32.8517%" y="789" width="0.0135%" height="15" fill="rgb(205,6,39)" fg:x="73187" fg:w="30"/><text x="33.1017%" y="799.50"></text></g><g><title>IfNode::Ideal (285 samples, 0.13%)</title><rect x="32.7422%" y="837" width="0.1279%" height="15" fill="rgb(221,32,16)" fg:x="72943" fg:w="285"/><text x="32.9922%" y="847.50"></text></g><g><title>split_if (70 samples, 0.03%)</title><rect x="32.8387%" y="821" width="0.0314%" height="15" fill="rgb(228,144,50)" fg:x="73158" fg:w="70"/><text x="33.0887%" y="831.50"></text></g><g><title>MemNode::adr_type (24 samples, 0.01%)</title><rect x="32.9051%" y="805" width="0.0108%" height="15" fill="rgb(229,201,53)" fg:x="73306" fg:w="24"/><text x="33.1551%" y="815.50"></text></g><g><title>MemNode::Ideal_common (71 samples, 0.03%)</title><rect x="32.8939%" y="821" width="0.0319%" height="15" fill="rgb(249,153,27)" fg:x="73281" fg:w="71"/><text x="33.1439%" y="831.50"></text></g><g><title>MemNode::all_controls_dominate (38 samples, 0.02%)</title><rect x="32.9307%" y="805" width="0.0171%" height="15" fill="rgb(227,106,25)" fg:x="73363" fg:w="38"/><text x="33.1807%" y="815.50"></text></g><g><title>Node::dominates (38 samples, 0.02%)</title><rect x="32.9307%" y="789" width="0.0171%" height="15" fill="rgb(230,65,29)" fg:x="73363" fg:w="38"/><text x="33.1807%" y="799.50"></text></g><g><title>MemNode::find_previous_store (64 samples, 0.03%)</title><rect x="32.9262%" y="821" width="0.0287%" height="15" fill="rgb(221,57,46)" fg:x="73353" fg:w="64"/><text x="33.1762%" y="831.50"></text></g><g><title>LoadNode::Ideal (158 samples, 0.07%)</title><rect x="32.8854%" y="837" width="0.0709%" height="15" fill="rgb(229,161,17)" fg:x="73262" fg:w="158"/><text x="33.1354%" y="847.50"></text></g><g><title>LoadNode::Identity (23 samples, 0.01%)</title><rect x="32.9563%" y="837" width="0.0103%" height="15" fill="rgb(222,213,11)" fg:x="73420" fg:w="23"/><text x="33.2063%" y="847.50"></text></g><g><title>LoadNode::Value (27 samples, 0.01%)</title><rect x="32.9666%" y="837" width="0.0121%" height="15" fill="rgb(235,35,13)" fg:x="73443" fg:w="27"/><text x="33.2166%" y="847.50"></text></g><g><title>MergeMemNode::Ideal (27 samples, 0.01%)</title><rect x="32.9841%" y="837" width="0.0121%" height="15" fill="rgb(233,158,34)" fg:x="73482" fg:w="27"/><text x="33.2341%" y="847.50"></text></g><g><title>NodeHash::grow (53 samples, 0.02%)</title><rect x="33.0483%" y="821" width="0.0238%" height="15" fill="rgb(215,151,48)" fg:x="73625" fg:w="53"/><text x="33.2983%" y="831.50"></text></g><g><title>NodeHash::hash_find_insert (163 samples, 0.07%)</title><rect x="33.0052%" y="837" width="0.0732%" height="15" fill="rgb(229,84,14)" fg:x="73529" fg:w="163"/><text x="33.2552%" y="847.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (52 samples, 0.02%)</title><rect x="33.0788%" y="837" width="0.0233%" height="15" fill="rgb(229,68,14)" fg:x="73693" fg:w="52"/><text x="33.3288%" y="847.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (56 samples, 0.03%)</title><rect x="33.1340%" y="821" width="0.0251%" height="15" fill="rgb(243,106,26)" fg:x="73816" fg:w="56"/><text x="33.3840%" y="831.50"></text></g><g><title>Unique_Node_List::remove (25 samples, 0.01%)</title><rect x="33.1479%" y="805" width="0.0112%" height="15" fill="rgb(206,45,38)" fg:x="73847" fg:w="25"/><text x="33.3979%" y="815.50"></text></g><g><title>PhaseIterGVN::subsume_node (142 samples, 0.06%)</title><rect x="33.1026%" y="837" width="0.0637%" height="15" fill="rgb(226,6,15)" fg:x="73746" fg:w="142"/><text x="33.3526%" y="847.50"></text></g><g><title>PhiNode::Ideal (100 samples, 0.04%)</title><rect x="33.1673%" y="837" width="0.0449%" height="15" fill="rgb(232,22,54)" fg:x="73890" fg:w="100"/><text x="33.4173%" y="847.50"></text></g><g><title>PhiNode::Value (50 samples, 0.02%)</title><rect x="33.2171%" y="837" width="0.0224%" height="15" fill="rgb(229,222,32)" fg:x="74001" fg:w="50"/><text x="33.4671%" y="847.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (120 samples, 0.05%)</title><rect x="33.3154%" y="805" width="0.0539%" height="15" fill="rgb(228,62,29)" fg:x="74220" fg:w="120"/><text x="33.5654%" y="815.50"></text></g><g><title>Unique_Node_List::remove (106 samples, 0.05%)</title><rect x="33.3217%" y="789" width="0.0476%" height="15" fill="rgb(251,103,34)" fg:x="74234" fg:w="106"/><text x="33.5717%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (144 samples, 0.06%)</title><rect x="33.3077%" y="821" width="0.0646%" height="15" fill="rgb(233,12,30)" fg:x="74203" fg:w="144"/><text x="33.5577%" y="831.50"></text></g><g><title>RegionNode::is_unreachable_region (115 samples, 0.05%)</title><rect x="33.3796%" y="821" width="0.0516%" height="15" fill="rgb(238,52,0)" fg:x="74363" fg:w="115"/><text x="33.6296%" y="831.50"></text></g><g><title>RegionNode::Ideal (387 samples, 0.17%)</title><rect x="33.2620%" y="837" width="0.1737%" height="15" fill="rgb(223,98,5)" fg:x="74101" fg:w="387"/><text x="33.5120%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (26 samples, 0.01%)</title><rect x="33.4424%" y="517" width="0.0117%" height="15" fill="rgb(228,75,37)" fg:x="74503" fg:w="26"/><text x="33.6924%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (32 samples, 0.01%)</title><rect x="33.4424%" y="533" width="0.0144%" height="15" fill="rgb(205,115,49)" fg:x="74503" fg:w="32"/><text x="33.6924%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (38 samples, 0.02%)</title><rect x="33.4424%" y="549" width="0.0171%" height="15" fill="rgb(250,154,43)" fg:x="74503" fg:w="38"/><text x="33.6924%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.02%)</title><rect x="33.4420%" y="565" width="0.0220%" height="15" fill="rgb(226,43,29)" fg:x="74502" fg:w="49"/><text x="33.6920%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (60 samples, 0.03%)</title><rect x="33.4420%" y="581" width="0.0269%" height="15" fill="rgb(249,228,39)" fg:x="74502" fg:w="60"/><text x="33.6920%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.03%)</title><rect x="33.4420%" y="597" width="0.0310%" height="15" fill="rgb(216,79,43)" fg:x="74502" fg:w="69"/><text x="33.6920%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (78 samples, 0.04%)</title><rect x="33.4420%" y="613" width="0.0350%" height="15" fill="rgb(228,95,12)" fg:x="74502" fg:w="78"/><text x="33.6920%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (85 samples, 0.04%)</title><rect x="33.4420%" y="629" width="0.0382%" height="15" fill="rgb(249,221,15)" fg:x="74502" fg:w="85"/><text x="33.6920%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (93 samples, 0.04%)</title><rect x="33.4420%" y="645" width="0.0417%" height="15" fill="rgb(233,34,13)" fg:x="74502" fg:w="93"/><text x="33.6920%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (101 samples, 0.05%)</title><rect x="33.4420%" y="661" width="0.0453%" height="15" fill="rgb(214,103,39)" fg:x="74502" fg:w="101"/><text x="33.6920%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (108 samples, 0.05%)</title><rect x="33.4420%" y="677" width="0.0485%" height="15" fill="rgb(251,126,39)" fg:x="74502" fg:w="108"/><text x="33.6920%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (120 samples, 0.05%)</title><rect x="33.4420%" y="693" width="0.0539%" height="15" fill="rgb(214,216,36)" fg:x="74502" fg:w="120"/><text x="33.6920%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (126 samples, 0.06%)</title><rect x="33.4420%" y="709" width="0.0566%" height="15" fill="rgb(220,221,8)" fg:x="74502" fg:w="126"/><text x="33.6920%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (129 samples, 0.06%)</title><rect x="33.4420%" y="725" width="0.0579%" height="15" fill="rgb(240,216,3)" fg:x="74502" fg:w="129"/><text x="33.6920%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (143 samples, 0.06%)</title><rect x="33.4420%" y="741" width="0.0642%" height="15" fill="rgb(232,218,17)" fg:x="74502" fg:w="143"/><text x="33.6920%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (156 samples, 0.07%)</title><rect x="33.4411%" y="757" width="0.0700%" height="15" fill="rgb(229,163,45)" fg:x="74500" fg:w="156"/><text x="33.6911%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (177 samples, 0.08%)</title><rect x="33.4411%" y="773" width="0.0795%" height="15" fill="rgb(231,110,42)" fg:x="74500" fg:w="177"/><text x="33.6911%" y="783.50"></text></g><g><title>InitializeNode::can_capture_store (193 samples, 0.09%)</title><rect x="33.4411%" y="821" width="0.0866%" height="15" fill="rgb(208,170,48)" fg:x="74500" fg:w="193"/><text x="33.6911%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (193 samples, 0.09%)</title><rect x="33.4411%" y="805" width="0.0866%" height="15" fill="rgb(239,116,25)" fg:x="74500" fg:w="193"/><text x="33.6911%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (193 samples, 0.09%)</title><rect x="33.4411%" y="789" width="0.0866%" height="15" fill="rgb(219,200,50)" fg:x="74500" fg:w="193"/><text x="33.6911%" y="799.50"></text></g><g><title>StoreNode::Ideal (217 samples, 0.10%)</title><rect x="33.4406%" y="837" width="0.0974%" height="15" fill="rgb(245,200,0)" fg:x="74499" fg:w="217"/><text x="33.6906%" y="847.50"></text></g><g><title>PhaseIterGVN::transform_old (2,098 samples, 0.94%)</title><rect x="32.6174%" y="853" width="0.9417%" height="15" fill="rgb(245,119,33)" fg:x="72665" fg:w="2098"/><text x="32.8674%" y="863.50"></text></g><g><title>PhaseIterGVN::optimize (2,188 samples, 0.98%)</title><rect x="32.5837%" y="869" width="0.9821%" height="15" fill="rgb(231,125,12)" fg:x="72590" fg:w="2188"/><text x="32.8337%" y="879.50"></text></g><g><title>PhaseIterGVN::transform_old (237 samples, 0.11%)</title><rect x="33.5869%" y="837" width="0.1064%" height="15" fill="rgb(216,96,41)" fg:x="74825" fg:w="237"/><text x="33.8369%" y="847.50"></text></g><g><title>PhaseIterGVN::optimize (254 samples, 0.11%)</title><rect x="33.5798%" y="853" width="0.1140%" height="15" fill="rgb(248,43,45)" fg:x="74809" fg:w="254"/><text x="33.8298%" y="863.50"></text></g><g><title>PhaseIterGVN::subsume_node (24 samples, 0.01%)</title><rect x="33.7072%" y="837" width="0.0108%" height="15" fill="rgb(217,222,7)" fg:x="75093" fg:w="24"/><text x="33.9572%" y="847.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (89 samples, 0.04%)</title><rect x="33.6947%" y="853" width="0.0399%" height="15" fill="rgb(233,28,6)" fg:x="75065" fg:w="89"/><text x="33.9447%" y="863.50"></text></g><g><title>PhaseMacroExpand::expand_arraycopy_node (25 samples, 0.01%)</title><rect x="33.7346%" y="853" width="0.0112%" height="15" fill="rgb(231,218,15)" fg:x="75154" fg:w="25"/><text x="33.9846%" y="863.50"></text></g><g><title>PhaseMacroExpand::generate_arraycopy (23 samples, 0.01%)</title><rect x="33.7355%" y="837" width="0.0103%" height="15" fill="rgb(226,171,48)" fg:x="75156" fg:w="23"/><text x="33.9855%" y="847.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (394 samples, 0.18%)</title><rect x="33.5748%" y="869" width="0.1769%" height="15" fill="rgb(235,201,9)" fg:x="74798" fg:w="394"/><text x="33.8248%" y="879.50"></text></g><g><title>Compile::identify_useful_nodes (64 samples, 0.03%)</title><rect x="33.7643%" y="837" width="0.0287%" height="15" fill="rgb(217,80,15)" fg:x="75220" fg:w="64"/><text x="34.0143%" y="847.50"></text></g><g><title>Compile::remove_useless_nodes (45 samples, 0.02%)</title><rect x="33.7930%" y="837" width="0.0202%" height="15" fill="rgb(219,152,8)" fg:x="75284" fg:w="45"/><text x="34.0430%" y="847.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (141 samples, 0.06%)</title><rect x="33.7571%" y="853" width="0.0633%" height="15" fill="rgb(243,107,38)" fg:x="75204" fg:w="141"/><text x="34.0071%" y="863.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (154 samples, 0.07%)</title><rect x="33.7517%" y="869" width="0.0691%" height="15" fill="rgb(231,17,5)" fg:x="75192" fg:w="154"/><text x="34.0017%" y="879.50"></text></g><g><title>Compile::Optimize (15,780 samples, 7.08%)</title><rect x="26.7448%" y="885" width="7.0832%" height="15" fill="rgb(209,25,54)" fg:x="59582" fg:w="15780"/><text x="26.9948%" y="895.50">Compile::O..</text></g><g><title>Parse::do_call (32 samples, 0.01%)</title><rect x="33.8522%" y="741" width="0.0144%" height="15" fill="rgb(219,0,2)" fg:x="75416" fg:w="32"/><text x="34.1022%" y="751.50"></text></g><g><title>Parse::do_field_access (28 samples, 0.01%)</title><rect x="33.8697%" y="741" width="0.0126%" height="15" fill="rgb(246,9,5)" fg:x="75455" fg:w="28"/><text x="34.1197%" y="751.50"></text></g><g><title>Parse::do_one_block (134 samples, 0.06%)</title><rect x="33.8379%" y="773" width="0.0601%" height="15" fill="rgb(226,159,4)" fg:x="75384" fg:w="134"/><text x="34.0879%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (122 samples, 0.05%)</title><rect x="33.8433%" y="757" width="0.0548%" height="15" fill="rgb(219,175,34)" fg:x="75396" fg:w="122"/><text x="34.0933%" y="767.50"></text></g><g><title>Parse::do_all_blocks (137 samples, 0.06%)</title><rect x="33.8379%" y="789" width="0.0615%" height="15" fill="rgb(236,10,46)" fg:x="75384" fg:w="137"/><text x="34.0879%" y="799.50"></text></g><g><title>ParseGenerator::generate (152 samples, 0.07%)</title><rect x="33.8379%" y="821" width="0.0682%" height="15" fill="rgb(240,211,16)" fg:x="75384" fg:w="152"/><text x="34.0879%" y="831.50"></text></g><g><title>Parse::Parse (152 samples, 0.07%)</title><rect x="33.8379%" y="805" width="0.0682%" height="15" fill="rgb(205,3,43)" fg:x="75384" fg:w="152"/><text x="34.0879%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (185 samples, 0.08%)</title><rect x="33.8311%" y="885" width="0.0830%" height="15" fill="rgb(245,7,22)" fg:x="75369" fg:w="185"/><text x="34.0811%" y="895.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (185 samples, 0.08%)</title><rect x="33.8311%" y="869" width="0.0830%" height="15" fill="rgb(239,132,32)" fg:x="75369" fg:w="185"/><text x="34.0811%" y="879.50"></text></g><g><title>C2Compiler::compile_method (185 samples, 0.08%)</title><rect x="33.8311%" y="853" width="0.0830%" height="15" fill="rgb(228,202,34)" fg:x="75369" fg:w="185"/><text x="34.0811%" y="863.50"></text></g><g><title>Compile::Compile (185 samples, 0.08%)</title><rect x="33.8311%" y="837" width="0.0830%" height="15" fill="rgb(254,200,22)" fg:x="75369" fg:w="185"/><text x="34.0811%" y="847.50"></text></g><g><title>ciMethod::ciMethod (31 samples, 0.01%)</title><rect x="33.9344%" y="629" width="0.0139%" height="15" fill="rgb(219,10,39)" fg:x="75599" fg:w="31"/><text x="34.1844%" y="639.50"></text></g><g><title>ciSignature::ciSignature (25 samples, 0.01%)</title><rect x="33.9371%" y="613" width="0.0112%" height="15" fill="rgb(226,210,39)" fg:x="75605" fg:w="25"/><text x="34.1871%" y="623.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (48 samples, 0.02%)</title><rect x="33.9276%" y="709" width="0.0215%" height="15" fill="rgb(208,219,16)" fg:x="75584" fg:w="48"/><text x="34.1776%" y="719.50"></text></g><g><title>ciBytecodeStream::get_method (48 samples, 0.02%)</title><rect x="33.9276%" y="693" width="0.0215%" height="15" fill="rgb(216,158,51)" fg:x="75584" fg:w="48"/><text x="34.1776%" y="703.50"></text></g><g><title>ciEnv::get_method_by_index_impl (44 samples, 0.02%)</title><rect x="33.9294%" y="677" width="0.0198%" height="15" fill="rgb(233,14,44)" fg:x="75588" fg:w="44"/><text x="34.1794%" y="687.50"></text></g><g><title>ciObjectFactory::get_metadata (36 samples, 0.02%)</title><rect x="33.9330%" y="661" width="0.0162%" height="15" fill="rgb(237,97,39)" fg:x="75596" fg:w="36"/><text x="34.1830%" y="671.50"></text></g><g><title>ciObjectFactory::create_new_metadata (35 samples, 0.02%)</title><rect x="33.9335%" y="645" width="0.0157%" height="15" fill="rgb(218,198,43)" fg:x="75597" fg:w="35"/><text x="34.1835%" y="655.50"></text></g><g><title>ciTypeFlow::df_flow_types (75 samples, 0.03%)</title><rect x="33.9178%" y="757" width="0.0337%" height="15" fill="rgb(231,104,20)" fg:x="75562" fg:w="75"/><text x="34.1678%" y="767.50"></text></g><g><title>ciTypeFlow::flow_block (75 samples, 0.03%)</title><rect x="33.9178%" y="741" width="0.0337%" height="15" fill="rgb(254,36,13)" fg:x="75562" fg:w="75"/><text x="34.1678%" y="751.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (75 samples, 0.03%)</title><rect x="33.9178%" y="725" width="0.0337%" height="15" fill="rgb(248,14,50)" fg:x="75562" fg:w="75"/><text x="34.1678%" y="735.50"></text></g><g><title>CallGenerator::for_inline (84 samples, 0.04%)</title><rect x="33.9142%" y="837" width="0.0377%" height="15" fill="rgb(217,107,29)" fg:x="75554" fg:w="84"/><text x="34.1642%" y="847.50"></text></g><g><title>InlineTree::check_can_parse (84 samples, 0.04%)</title><rect x="33.9142%" y="821" width="0.0377%" height="15" fill="rgb(251,169,33)" fg:x="75554" fg:w="84"/><text x="34.1642%" y="831.50"></text></g><g><title>ciMethod::get_flow_analysis (84 samples, 0.04%)</title><rect x="33.9142%" y="805" width="0.0377%" height="15" fill="rgb(217,108,32)" fg:x="75554" fg:w="84"/><text x="34.1642%" y="815.50"></text></g><g><title>ciTypeFlow::do_flow (84 samples, 0.04%)</title><rect x="33.9142%" y="789" width="0.0377%" height="15" fill="rgb(219,66,42)" fg:x="75554" fg:w="84"/><text x="34.1642%" y="799.50"></text></g><g><title>ciTypeFlow::flow_types (84 samples, 0.04%)</title><rect x="33.9142%" y="773" width="0.0377%" height="15" fill="rgb(206,180,7)" fg:x="75554" fg:w="84"/><text x="34.1642%" y="783.50"></text></g><g><title>ciTypeFlow::do_flow (23 samples, 0.01%)</title><rect x="33.9842%" y="693" width="0.0103%" height="15" fill="rgb(208,226,31)" fg:x="75710" fg:w="23"/><text x="34.2342%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (23 samples, 0.01%)</title><rect x="33.9842%" y="677" width="0.0103%" height="15" fill="rgb(218,26,49)" fg:x="75710" fg:w="23"/><text x="34.2342%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (51 samples, 0.02%)</title><rect x="33.9734%" y="725" width="0.0229%" height="15" fill="rgb(233,197,48)" fg:x="75686" fg:w="51"/><text x="34.2234%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (34 samples, 0.02%)</title><rect x="33.9811%" y="709" width="0.0153%" height="15" fill="rgb(252,181,51)" fg:x="75703" fg:w="34"/><text x="34.2311%" y="719.50"></text></g><g><title>Compile::call_generator (67 samples, 0.03%)</title><rect x="33.9698%" y="741" width="0.0301%" height="15" fill="rgb(253,90,19)" fg:x="75678" fg:w="67"/><text x="34.2198%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (95 samples, 0.04%)</title><rect x="34.0484%" y="677" width="0.0426%" height="15" fill="rgb(215,171,30)" fg:x="75853" fg:w="95"/><text x="34.2984%" y="687.50"></text></g><g><title>Parse::do_one_block (112 samples, 0.05%)</title><rect x="34.0417%" y="693" width="0.0503%" height="15" fill="rgb(214,222,9)" fg:x="75838" fg:w="112"/><text x="34.2917%" y="703.50"></text></g><g><title>Parse::do_all_blocks (127 samples, 0.06%)</title><rect x="34.0390%" y="709" width="0.0570%" height="15" fill="rgb(223,3,22)" fg:x="75832" fg:w="127"/><text x="34.2890%" y="719.50"></text></g><g><title>ParseGenerator::generate (187 samples, 0.08%)</title><rect x="34.0250%" y="741" width="0.0839%" height="15" fill="rgb(225,196,46)" fg:x="75801" fg:w="187"/><text x="34.2750%" y="751.50"></text></g><g><title>Parse::Parse (186 samples, 0.08%)</title><rect x="34.0255%" y="725" width="0.0835%" height="15" fill="rgb(209,110,37)" fg:x="75802" fg:w="186"/><text x="34.2755%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (50 samples, 0.02%)</title><rect x="34.1090%" y="741" width="0.0224%" height="15" fill="rgb(249,89,12)" fg:x="75988" fg:w="50"/><text x="34.3590%" y="751.50"></text></g><g><title>Parse::do_call (394 samples, 0.18%)</title><rect x="33.9698%" y="757" width="0.1769%" height="15" fill="rgb(226,27,33)" fg:x="75678" fg:w="394"/><text x="34.2198%" y="767.50"></text></g><g><title>Parse::do_get_xxx (36 samples, 0.02%)</title><rect x="34.1543%" y="741" width="0.0162%" height="15" fill="rgb(213,82,22)" fg:x="76089" fg:w="36"/><text x="34.4043%" y="751.50"></text></g><g><title>Parse::do_field_access (63 samples, 0.03%)</title><rect x="34.1525%" y="757" width="0.0283%" height="15" fill="rgb(248,140,0)" fg:x="76085" fg:w="63"/><text x="34.4025%" y="767.50"></text></g><g><title>Parse::do_put_xxx (23 samples, 0.01%)</title><rect x="34.1705%" y="741" width="0.0103%" height="15" fill="rgb(228,106,3)" fg:x="76125" fg:w="23"/><text x="34.4205%" y="751.50"></text></g><g><title>Parse::do_if (26 samples, 0.01%)</title><rect x="34.1808%" y="757" width="0.0117%" height="15" fill="rgb(209,23,37)" fg:x="76148" fg:w="26"/><text x="34.4308%" y="767.50"></text></g><g><title>Parse::do_all_blocks (557 samples, 0.25%)</title><rect x="33.9537%" y="805" width="0.2500%" height="15" fill="rgb(241,93,50)" fg:x="75642" fg:w="557"/><text x="34.2037%" y="815.50"></text></g><g><title>Parse::do_one_block (557 samples, 0.25%)</title><rect x="33.9537%" y="789" width="0.2500%" height="15" fill="rgb(253,46,43)" fg:x="75642" fg:w="557"/><text x="34.2037%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (554 samples, 0.25%)</title><rect x="33.9550%" y="773" width="0.2487%" height="15" fill="rgb(226,206,43)" fg:x="75645" fg:w="554"/><text x="34.2050%" y="783.50"></text></g><g><title>ParseGenerator::generate (563 samples, 0.25%)</title><rect x="33.9537%" y="837" width="0.2527%" height="15" fill="rgb(217,54,7)" fg:x="75642" fg:w="563"/><text x="34.2037%" y="847.50"></text></g><g><title>Parse::Parse (563 samples, 0.25%)</title><rect x="33.9537%" y="821" width="0.2527%" height="15" fill="rgb(223,5,52)" fg:x="75642" fg:w="563"/><text x="34.2037%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (673 samples, 0.30%)</title><rect x="33.9142%" y="885" width="0.3021%" height="15" fill="rgb(206,52,46)" fg:x="75554" fg:w="673"/><text x="34.1642%" y="895.50"></text></g><g><title>C2Compiler::compile_method (673 samples, 0.30%)</title><rect x="33.9142%" y="869" width="0.3021%" height="15" fill="rgb(253,136,11)" fg:x="75554" fg:w="673"/><text x="34.1642%" y="879.50"></text></g><g><title>Compile::Compile (673 samples, 0.30%)</title><rect x="33.9142%" y="853" width="0.3021%" height="15" fill="rgb(208,106,33)" fg:x="75554" fg:w="673"/><text x="34.1642%" y="863.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.02%)</title><rect x="34.2419%" y="757" width="0.0242%" height="15" fill="rgb(206,54,4)" fg:x="76284" fg:w="54"/><text x="34.4919%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.02%)</title><rect x="34.2432%" y="741" width="0.0229%" height="15" fill="rgb(213,3,15)" fg:x="76287" fg:w="51"/><text x="34.4932%" y="751.50"></text></g><g><title>Parse::do_all_blocks (62 samples, 0.03%)</title><rect x="34.2414%" y="773" width="0.0278%" height="15" fill="rgb(252,211,39)" fg:x="76283" fg:w="62"/><text x="34.4914%" y="783.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.03%)</title><rect x="34.2414%" y="805" width="0.0301%" height="15" fill="rgb(223,6,36)" fg:x="76283" fg:w="67"/><text x="34.4914%" y="815.50"></text></g><g><title>Parse::Parse (67 samples, 0.03%)</title><rect x="34.2414%" y="789" width="0.0301%" height="15" fill="rgb(252,169,45)" fg:x="76283" fg:w="67"/><text x="34.4914%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (82 samples, 0.04%)</title><rect x="34.2369%" y="885" width="0.0368%" height="15" fill="rgb(212,48,26)" fg:x="76273" fg:w="82"/><text x="34.4869%" y="895.50"></text></g><g><title>CompileBroker::compiler_thread_loop (82 samples, 0.04%)</title><rect x="34.2369%" y="869" width="0.0368%" height="15" fill="rgb(251,102,48)" fg:x="76273" fg:w="82"/><text x="34.4869%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (82 samples, 0.04%)</title><rect x="34.2369%" y="853" width="0.0368%" height="15" fill="rgb(243,208,16)" fg:x="76273" fg:w="82"/><text x="34.4869%" y="863.50"></text></g><g><title>C2Compiler::compile_method (82 samples, 0.04%)</title><rect x="34.2369%" y="837" width="0.0368%" height="15" fill="rgb(219,96,24)" fg:x="76273" fg:w="82"/><text x="34.4869%" y="847.50"></text></g><g><title>Compile::Compile (82 samples, 0.04%)</title><rect x="34.2369%" y="821" width="0.0368%" height="15" fill="rgb(219,33,29)" fg:x="76273" fg:w="82"/><text x="34.4869%" y="831.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.01%)</title><rect x="34.2800%" y="805" width="0.0117%" height="15" fill="rgb(223,176,5)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="815.50"></text></g><g><title>Parse::Parse (26 samples, 0.01%)</title><rect x="34.2800%" y="789" width="0.0117%" height="15" fill="rgb(228,140,14)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="799.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.01%)</title><rect x="34.2800%" y="773" width="0.0117%" height="15" fill="rgb(217,179,31)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="783.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.01%)</title><rect x="34.2800%" y="757" width="0.0117%" height="15" fill="rgb(230,9,30)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.01%)</title><rect x="34.2800%" y="741" width="0.0117%" height="15" fill="rgb(230,136,20)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="751.50"></text></g><g><title>Parse::do_call (26 samples, 0.01%)</title><rect x="34.2800%" y="725" width="0.0117%" height="15" fill="rgb(215,210,22)" fg:x="76369" fg:w="26"/><text x="34.5300%" y="735.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="34.2800%" y="885" width="0.0148%" height="15" fill="rgb(218,43,5)" fg:x="76369" fg:w="33"/><text x="34.5300%" y="895.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="34.2800%" y="869" width="0.0148%" height="15" fill="rgb(216,11,5)" fg:x="76369" fg:w="33"/><text x="34.5300%" y="879.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="34.2800%" y="853" width="0.0148%" height="15" fill="rgb(209,82,29)" fg:x="76369" fg:w="33"/><text x="34.5300%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="34.2800%" y="837" width="0.0148%" height="15" fill="rgb(244,115,12)" fg:x="76369" fg:w="33"/><text x="34.5300%" y="847.50"></text></g><g><title>Parse::do_call (33 samples, 0.01%)</title><rect x="34.2800%" y="821" width="0.0148%" height="15" fill="rgb(222,82,18)" fg:x="76369" fg:w="33"/><text x="34.5300%" y="831.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="34.2953%" y="341" width="0.0103%" height="15" fill="rgb(249,227,8)" fg:x="76403" fg:w="23"/><text x="34.5453%" y="351.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="34.2953%" y="325" width="0.0103%" height="15" fill="rgb(253,141,45)" fg:x="76403" fg:w="23"/><text x="34.5453%" y="335.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.01%)</title><rect x="34.2953%" y="309" width="0.0103%" height="15" fill="rgb(234,184,4)" fg:x="76403" fg:w="23"/><text x="34.5453%" y="319.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="34.2953%" y="293" width="0.0103%" height="15" fill="rgb(218,194,23)" fg:x="76403" fg:w="23"/><text x="34.5453%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="34.2953%" y="277" width="0.0103%" height="15" fill="rgb(235,66,41)" fg:x="76403" fg:w="23"/><text x="34.5453%" y="287.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.01%)</title><rect x="34.2948%" y="437" width="0.0117%" height="15" fill="rgb(245,217,1)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="447.50"></text></g><g><title>Parse::Parse (26 samples, 0.01%)</title><rect x="34.2948%" y="421" width="0.0117%" height="15" fill="rgb(229,91,1)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="431.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.01%)</title><rect x="34.2948%" y="405" width="0.0117%" height="15" fill="rgb(207,101,30)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="415.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.01%)</title><rect x="34.2948%" y="389" width="0.0117%" height="15" fill="rgb(223,82,49)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.01%)</title><rect x="34.2948%" y="373" width="0.0117%" height="15" fill="rgb(218,167,17)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="383.50"></text></g><g><title>Parse::do_call (26 samples, 0.01%)</title><rect x="34.2948%" y="357" width="0.0117%" height="15" fill="rgb(208,103,14)" fg:x="76402" fg:w="26"/><text x="34.5448%" y="367.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="34.2948%" y="533" width="0.0135%" height="15" fill="rgb(238,20,8)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="543.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="34.2948%" y="517" width="0.0135%" height="15" fill="rgb(218,80,54)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="527.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="34.2948%" y="501" width="0.0135%" height="15" fill="rgb(240,144,17)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="511.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="34.2948%" y="485" width="0.0135%" height="15" fill="rgb(245,27,50)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="34.2948%" y="469" width="0.0135%" height="15" fill="rgb(251,51,7)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="479.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="34.2948%" y="453" width="0.0135%" height="15" fill="rgb(245,217,29)" fg:x="76402" fg:w="30"/><text x="34.5448%" y="463.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.02%)</title><rect x="34.2948%" y="629" width="0.0153%" height="15" fill="rgb(221,176,29)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="639.50"></text></g><g><title>Parse::Parse (34 samples, 0.02%)</title><rect x="34.2948%" y="613" width="0.0153%" height="15" fill="rgb(212,180,24)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="623.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="34.2948%" y="597" width="0.0153%" height="15" fill="rgb(254,24,2)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="607.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="34.2948%" y="581" width="0.0153%" height="15" fill="rgb(230,100,2)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="34.2948%" y="565" width="0.0153%" height="15" fill="rgb(219,142,25)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="575.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="34.2948%" y="549" width="0.0153%" height="15" fill="rgb(240,73,43)" fg:x="76402" fg:w="34"/><text x="34.5448%" y="559.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.02%)</title><rect x="34.2948%" y="725" width="0.0171%" height="15" fill="rgb(214,114,15)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="735.50"></text></g><g><title>Parse::Parse (38 samples, 0.02%)</title><rect x="34.2948%" y="709" width="0.0171%" height="15" fill="rgb(207,130,4)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="719.50"></text></g><g><title>Parse::do_all_blocks (38 samples, 0.02%)</title><rect x="34.2948%" y="693" width="0.0171%" height="15" fill="rgb(221,25,40)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="703.50"></text></g><g><title>Parse::do_one_block (38 samples, 0.02%)</title><rect x="34.2948%" y="677" width="0.0171%" height="15" fill="rgb(241,184,7)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.02%)</title><rect x="34.2948%" y="661" width="0.0171%" height="15" fill="rgb(235,159,4)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="671.50"></text></g><g><title>Parse::do_call (38 samples, 0.02%)</title><rect x="34.2948%" y="645" width="0.0171%" height="15" fill="rgb(214,87,48)" fg:x="76402" fg:w="38"/><text x="34.5448%" y="655.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.02%)</title><rect x="34.2948%" y="821" width="0.0184%" height="15" fill="rgb(246,198,24)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="831.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="34.2948%" y="805" width="0.0184%" height="15" fill="rgb(209,66,40)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="815.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.02%)</title><rect x="34.2948%" y="789" width="0.0184%" height="15" fill="rgb(233,147,39)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="799.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.02%)</title><rect x="34.2948%" y="773" width="0.0184%" height="15" fill="rgb(231,145,52)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.02%)</title><rect x="34.2948%" y="757" width="0.0184%" height="15" fill="rgb(206,20,26)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="767.50"></text></g><g><title>Parse::do_call (41 samples, 0.02%)</title><rect x="34.2948%" y="741" width="0.0184%" height="15" fill="rgb(238,220,4)" fg:x="76402" fg:w="41"/><text x="34.5448%" y="751.50"></text></g><g><title>Parse::do_all_blocks (45 samples, 0.02%)</title><rect x="34.2948%" y="885" width="0.0202%" height="15" fill="rgb(252,195,42)" fg:x="76402" fg:w="45"/><text x="34.5448%" y="895.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.02%)</title><rect x="34.2948%" y="869" width="0.0202%" height="15" fill="rgb(209,10,6)" fg:x="76402" fg:w="45"/><text x="34.5448%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (45 samples, 0.02%)</title><rect x="34.2948%" y="853" width="0.0202%" height="15" fill="rgb(229,3,52)" fg:x="76402" fg:w="45"/><text x="34.5448%" y="863.50"></text></g><g><title>Parse::do_call (45 samples, 0.02%)</title><rect x="34.2948%" y="837" width="0.0202%" height="15" fill="rgb(253,49,37)" fg:x="76402" fg:w="45"/><text x="34.5448%" y="847.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.01%)</title><rect x="34.3168%" y="165" width="0.0108%" height="15" fill="rgb(240,103,49)" fg:x="76451" fg:w="24"/><text x="34.5668%" y="175.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.01%)</title><rect x="34.3168%" y="149" width="0.0108%" height="15" fill="rgb(250,182,30)" fg:x="76451" fg:w="24"/><text x="34.5668%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.01%)</title><rect x="34.3168%" y="133" width="0.0108%" height="15" fill="rgb(248,8,30)" fg:x="76451" fg:w="24"/><text x="34.5668%" y="143.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="34.3159%" y="197" width="0.0121%" height="15" fill="rgb(237,120,30)" fg:x="76449" fg:w="27"/><text x="34.5659%" y="207.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="34.3159%" y="181" width="0.0121%" height="15" fill="rgb(221,146,34)" fg:x="76449" fg:w="27"/><text x="34.5659%" y="191.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="34.3159%" y="213" width="0.0139%" height="15" fill="rgb(242,55,13)" fg:x="76449" fg:w="31"/><text x="34.5659%" y="223.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.01%)</title><rect x="34.3159%" y="293" width="0.0148%" height="15" fill="rgb(242,112,31)" fg:x="76449" fg:w="33"/><text x="34.5659%" y="303.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="34.3159%" y="277" width="0.0148%" height="15" fill="rgb(249,192,27)" fg:x="76449" fg:w="33"/><text x="34.5659%" y="287.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="34.3159%" y="261" width="0.0148%" height="15" fill="rgb(208,204,44)" fg:x="76449" fg:w="33"/><text x="34.5659%" y="271.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="34.3159%" y="245" width="0.0148%" height="15" fill="rgb(208,93,54)" fg:x="76449" fg:w="33"/><text x="34.5659%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="34.3159%" y="229" width="0.0148%" height="15" fill="rgb(242,1,31)" fg:x="76449" fg:w="33"/><text x="34.5659%" y="239.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.02%)</title><rect x="34.3150%" y="389" width="0.0175%" height="15" fill="rgb(241,83,25)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="399.50"></text></g><g><title>Parse::Parse (39 samples, 0.02%)</title><rect x="34.3150%" y="373" width="0.0175%" height="15" fill="rgb(205,169,50)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="383.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.02%)</title><rect x="34.3150%" y="357" width="0.0175%" height="15" fill="rgb(239,186,37)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="367.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.02%)</title><rect x="34.3150%" y="341" width="0.0175%" height="15" fill="rgb(205,221,10)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.02%)</title><rect x="34.3150%" y="325" width="0.0175%" height="15" fill="rgb(218,196,15)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="335.50"></text></g><g><title>Parse::do_call (39 samples, 0.02%)</title><rect x="34.3150%" y="309" width="0.0175%" height="15" fill="rgb(218,196,35)" fg:x="76447" fg:w="39"/><text x="34.5650%" y="319.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.02%)</title><rect x="34.3150%" y="485" width="0.0189%" height="15" fill="rgb(233,63,24)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="495.50"></text></g><g><title>Parse::Parse (42 samples, 0.02%)</title><rect x="34.3150%" y="469" width="0.0189%" height="15" fill="rgb(225,8,4)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="479.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.02%)</title><rect x="34.3150%" y="453" width="0.0189%" height="15" fill="rgb(234,105,35)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="463.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.02%)</title><rect x="34.3150%" y="437" width="0.0189%" height="15" fill="rgb(236,21,32)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.02%)</title><rect x="34.3150%" y="421" width="0.0189%" height="15" fill="rgb(228,109,6)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="431.50"></text></g><g><title>Parse::do_call (42 samples, 0.02%)</title><rect x="34.3150%" y="405" width="0.0189%" height="15" fill="rgb(229,215,31)" fg:x="76447" fg:w="42"/><text x="34.5650%" y="415.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.02%)</title><rect x="34.3150%" y="581" width="0.0215%" height="15" fill="rgb(221,52,54)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="591.50"></text></g><g><title>Parse::Parse (48 samples, 0.02%)</title><rect x="34.3150%" y="565" width="0.0215%" height="15" fill="rgb(252,129,43)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="575.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.02%)</title><rect x="34.3150%" y="549" width="0.0215%" height="15" fill="rgb(248,183,27)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="559.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.02%)</title><rect x="34.3150%" y="533" width="0.0215%" height="15" fill="rgb(250,0,22)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.02%)</title><rect x="34.3150%" y="517" width="0.0215%" height="15" fill="rgb(213,166,10)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="527.50"></text></g><g><title>Parse::do_call (48 samples, 0.02%)</title><rect x="34.3150%" y="501" width="0.0215%" height="15" fill="rgb(207,163,36)" fg:x="76447" fg:w="48"/><text x="34.5650%" y="511.50"></text></g><g><title>Parse::do_call (54 samples, 0.02%)</title><rect x="34.3150%" y="597" width="0.0242%" height="15" fill="rgb(208,122,22)" fg:x="76447" fg:w="54"/><text x="34.5650%" y="607.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.03%)</title><rect x="34.3150%" y="677" width="0.0274%" height="15" fill="rgb(207,104,49)" fg:x="76447" fg:w="61"/><text x="34.5650%" y="687.50"></text></g><g><title>Parse::Parse (61 samples, 0.03%)</title><rect x="34.3150%" y="661" width="0.0274%" height="15" fill="rgb(248,211,50)" fg:x="76447" fg:w="61"/><text x="34.5650%" y="671.50"></text></g><g><title>Parse::do_all_blocks (61 samples, 0.03%)</title><rect x="34.3150%" y="645" width="0.0274%" height="15" fill="rgb(217,13,45)" fg:x="76447" fg:w="61"/><text x="34.5650%" y="655.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.03%)</title><rect x="34.3150%" y="629" width="0.0274%" height="15" fill="rgb(211,216,49)" fg:x="76447" fg:w="61"/><text x="34.5650%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.03%)</title><rect x="34.3150%" y="613" width="0.0274%" height="15" fill="rgb(221,58,53)" fg:x="76447" fg:w="61"/><text x="34.5650%" y="623.50"></text></g><g><title>ParseGenerator::generate (77 samples, 0.03%)</title><rect x="34.3150%" y="773" width="0.0346%" height="15" fill="rgb(220,112,41)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="783.50"></text></g><g><title>Parse::Parse (77 samples, 0.03%)</title><rect x="34.3150%" y="757" width="0.0346%" height="15" fill="rgb(236,38,28)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="767.50"></text></g><g><title>Parse::do_all_blocks (77 samples, 0.03%)</title><rect x="34.3150%" y="741" width="0.0346%" height="15" fill="rgb(227,195,22)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="751.50"></text></g><g><title>Parse::do_one_block (77 samples, 0.03%)</title><rect x="34.3150%" y="725" width="0.0346%" height="15" fill="rgb(214,55,33)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (77 samples, 0.03%)</title><rect x="34.3150%" y="709" width="0.0346%" height="15" fill="rgb(248,80,13)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="719.50"></text></g><g><title>Parse::do_call (77 samples, 0.03%)</title><rect x="34.3150%" y="693" width="0.0346%" height="15" fill="rgb(238,52,6)" fg:x="76447" fg:w="77"/><text x="34.5650%" y="703.50"></text></g><g><title>ParseGenerator::generate (82 samples, 0.04%)</title><rect x="34.3150%" y="869" width="0.0368%" height="15" fill="rgb(224,198,47)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="879.50"></text></g><g><title>Parse::Parse (82 samples, 0.04%)</title><rect x="34.3150%" y="853" width="0.0368%" height="15" fill="rgb(233,171,20)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="863.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.04%)</title><rect x="34.3150%" y="837" width="0.0368%" height="15" fill="rgb(241,30,25)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="847.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.04%)</title><rect x="34.3150%" y="821" width="0.0368%" height="15" fill="rgb(207,171,38)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.04%)</title><rect x="34.3150%" y="805" width="0.0368%" height="15" fill="rgb(234,70,1)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="815.50"></text></g><g><title>Parse::do_call (82 samples, 0.04%)</title><rect x="34.3150%" y="789" width="0.0368%" height="15" fill="rgb(232,178,18)" fg:x="76447" fg:w="82"/><text x="34.5650%" y="799.50"></text></g><g><title>Parse::do_call (87 samples, 0.04%)</title><rect x="34.3150%" y="885" width="0.0391%" height="15" fill="rgb(241,78,40)" fg:x="76447" fg:w="87"/><text x="34.5650%" y="895.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="34.3541%" y="261" width="0.0103%" height="15" fill="rgb(222,35,25)" fg:x="76534" fg:w="23"/><text x="34.6041%" y="271.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="34.3541%" y="245" width="0.0103%" height="15" fill="rgb(207,92,16)" fg:x="76534" fg:w="23"/><text x="34.6041%" y="255.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.01%)</title><rect x="34.3541%" y="229" width="0.0103%" height="15" fill="rgb(216,59,51)" fg:x="76534" fg:w="23"/><text x="34.6041%" y="239.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="34.3541%" y="213" width="0.0103%" height="15" fill="rgb(213,80,28)" fg:x="76534" fg:w="23"/><text x="34.6041%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="34.3541%" y="197" width="0.0103%" height="15" fill="rgb(220,93,7)" fg:x="76534" fg:w="23"/><text x="34.6041%" y="207.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.01%)</title><rect x="34.3541%" y="357" width="0.0108%" height="15" fill="rgb(225,24,44)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="367.50"></text></g><g><title>Parse::Parse (24 samples, 0.01%)</title><rect x="34.3541%" y="341" width="0.0108%" height="15" fill="rgb(243,74,40)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="351.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.01%)</title><rect x="34.3541%" y="325" width="0.0108%" height="15" fill="rgb(228,39,7)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="335.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.01%)</title><rect x="34.3541%" y="309" width="0.0108%" height="15" fill="rgb(227,79,8)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.01%)</title><rect x="34.3541%" y="293" width="0.0108%" height="15" fill="rgb(236,58,11)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="303.50"></text></g><g><title>Parse::do_call (24 samples, 0.01%)</title><rect x="34.3541%" y="277" width="0.0108%" height="15" fill="rgb(249,63,35)" fg:x="76534" fg:w="24"/><text x="34.6041%" y="287.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="34.3541%" y="421" width="0.0144%" height="15" fill="rgb(252,114,16)" fg:x="76534" fg:w="32"/><text x="34.6041%" y="431.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="34.3541%" y="405" width="0.0144%" height="15" fill="rgb(254,151,24)" fg:x="76534" fg:w="32"/><text x="34.6041%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="34.3541%" y="389" width="0.0144%" height="15" fill="rgb(253,54,39)" fg:x="76534" fg:w="32"/><text x="34.6041%" y="399.50"></text></g><g><title>Parse::do_call (32 samples, 0.01%)</title><rect x="34.3541%" y="373" width="0.0144%" height="15" fill="rgb(243,25,45)" fg:x="76534" fg:w="32"/><text x="34.6041%" y="383.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.01%)</title><rect x="34.3541%" y="453" width="0.0148%" height="15" fill="rgb(234,134,9)" fg:x="76534" fg:w="33"/><text x="34.6041%" y="463.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="34.3541%" y="437" width="0.0148%" height="15" fill="rgb(227,166,31)" fg:x="76534" fg:w="33"/><text x="34.6041%" y="447.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.02%)</title><rect x="34.3541%" y="549" width="0.0157%" height="15" fill="rgb(245,143,41)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="559.50"></text></g><g><title>Parse::Parse (35 samples, 0.02%)</title><rect x="34.3541%" y="533" width="0.0157%" height="15" fill="rgb(238,181,32)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="543.50"></text></g><g><title>Parse::do_all_blocks (35 samples, 0.02%)</title><rect x="34.3541%" y="517" width="0.0157%" height="15" fill="rgb(224,113,18)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="527.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.02%)</title><rect x="34.3541%" y="501" width="0.0157%" height="15" fill="rgb(240,229,28)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.02%)</title><rect x="34.3541%" y="485" width="0.0157%" height="15" fill="rgb(250,185,3)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="495.50"></text></g><g><title>Parse::do_call (35 samples, 0.02%)</title><rect x="34.3541%" y="469" width="0.0157%" height="15" fill="rgb(212,59,25)" fg:x="76534" fg:w="35"/><text x="34.6041%" y="479.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.02%)</title><rect x="34.3541%" y="645" width="0.0184%" height="15" fill="rgb(221,87,20)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="655.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="34.3541%" y="629" width="0.0184%" height="15" fill="rgb(213,74,28)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="639.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.02%)</title><rect x="34.3541%" y="613" width="0.0184%" height="15" fill="rgb(224,132,34)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="623.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.02%)</title><rect x="34.3541%" y="597" width="0.0184%" height="15" fill="rgb(222,101,24)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.02%)</title><rect x="34.3541%" y="581" width="0.0184%" height="15" fill="rgb(254,142,4)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="591.50"></text></g><g><title>Parse::do_call (41 samples, 0.02%)</title><rect x="34.3541%" y="565" width="0.0184%" height="15" fill="rgb(230,229,49)" fg:x="76534" fg:w="41"/><text x="34.6041%" y="575.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.02%)</title><rect x="34.3541%" y="741" width="0.0198%" height="15" fill="rgb(238,70,47)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="751.50"></text></g><g><title>Parse::Parse (44 samples, 0.02%)</title><rect x="34.3541%" y="725" width="0.0198%" height="15" fill="rgb(231,160,17)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="735.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.02%)</title><rect x="34.3541%" y="709" width="0.0198%" height="15" fill="rgb(218,68,53)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="719.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.02%)</title><rect x="34.3541%" y="693" width="0.0198%" height="15" fill="rgb(236,111,10)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.02%)</title><rect x="34.3541%" y="677" width="0.0198%" height="15" fill="rgb(224,34,41)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="687.50"></text></g><g><title>Parse::do_call (44 samples, 0.02%)</title><rect x="34.3541%" y="661" width="0.0198%" height="15" fill="rgb(241,118,19)" fg:x="76534" fg:w="44"/><text x="34.6041%" y="671.50"></text></g><g><title>ParseGenerator::generate (47 samples, 0.02%)</title><rect x="34.3541%" y="837" width="0.0211%" height="15" fill="rgb(238,129,25)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="847.50"></text></g><g><title>Parse::Parse (47 samples, 0.02%)</title><rect x="34.3541%" y="821" width="0.0211%" height="15" fill="rgb(238,22,31)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="831.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.02%)</title><rect x="34.3541%" y="805" width="0.0211%" height="15" fill="rgb(222,174,48)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="815.50"></text></g><g><title>Parse::do_one_block (47 samples, 0.02%)</title><rect x="34.3541%" y="789" width="0.0211%" height="15" fill="rgb(206,152,40)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (47 samples, 0.02%)</title><rect x="34.3541%" y="773" width="0.0211%" height="15" fill="rgb(218,99,54)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="783.50"></text></g><g><title>Parse::do_call (47 samples, 0.02%)</title><rect x="34.3541%" y="757" width="0.0211%" height="15" fill="rgb(220,174,26)" fg:x="76534" fg:w="47"/><text x="34.6041%" y="767.50"></text></g><g><title>Parse::do_one_block (50 samples, 0.02%)</title><rect x="34.3541%" y="885" width="0.0224%" height="15" fill="rgb(245,116,9)" fg:x="76534" fg:w="50"/><text x="34.6041%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.02%)</title><rect x="34.3541%" y="869" width="0.0224%" height="15" fill="rgb(209,72,35)" fg:x="76534" fg:w="50"/><text x="34.6041%" y="879.50"></text></g><g><title>Parse::do_call (50 samples, 0.02%)</title><rect x="34.3541%" y="853" width="0.0224%" height="15" fill="rgb(226,126,21)" fg:x="76534" fg:w="50"/><text x="34.6041%" y="863.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="34.3765%" y="565" width="0.0121%" height="15" fill="rgb(227,192,1)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="575.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="34.3765%" y="549" width="0.0121%" height="15" fill="rgb(237,180,29)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="559.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.01%)</title><rect x="34.3765%" y="533" width="0.0121%" height="15" fill="rgb(230,197,35)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="543.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.01%)</title><rect x="34.3765%" y="517" width="0.0121%" height="15" fill="rgb(246,193,31)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.01%)</title><rect x="34.3765%" y="501" width="0.0121%" height="15" fill="rgb(241,36,4)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="511.50"></text></g><g><title>Parse::do_call (27 samples, 0.01%)</title><rect x="34.3765%" y="485" width="0.0121%" height="15" fill="rgb(241,130,17)" fg:x="76584" fg:w="27"/><text x="34.6265%" y="495.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="34.3765%" y="661" width="0.0135%" height="15" fill="rgb(206,137,32)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="671.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="34.3765%" y="645" width="0.0135%" height="15" fill="rgb(237,228,51)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="655.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="34.3765%" y="629" width="0.0135%" height="15" fill="rgb(243,6,42)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="639.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="34.3765%" y="613" width="0.0135%" height="15" fill="rgb(251,74,28)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="34.3765%" y="597" width="0.0135%" height="15" fill="rgb(218,20,49)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="607.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="34.3765%" y="581" width="0.0135%" height="15" fill="rgb(238,28,14)" fg:x="76584" fg:w="30"/><text x="34.6265%" y="591.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.02%)</title><rect x="34.3765%" y="757" width="0.0153%" height="15" fill="rgb(229,40,46)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="767.50"></text></g><g><title>Parse::Parse (34 samples, 0.02%)</title><rect x="34.3765%" y="741" width="0.0153%" height="15" fill="rgb(244,195,20)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="751.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="34.3765%" y="725" width="0.0153%" height="15" fill="rgb(253,56,35)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="735.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="34.3765%" y="709" width="0.0153%" height="15" fill="rgb(210,149,44)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="34.3765%" y="693" width="0.0153%" height="15" fill="rgb(240,135,12)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="703.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="34.3765%" y="677" width="0.0153%" height="15" fill="rgb(251,24,50)" fg:x="76584" fg:w="34"/><text x="34.6265%" y="687.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.02%)</title><rect x="34.3765%" y="853" width="0.0166%" height="15" fill="rgb(243,200,47)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="863.50"></text></g><g><title>Parse::Parse (37 samples, 0.02%)</title><rect x="34.3765%" y="837" width="0.0166%" height="15" fill="rgb(224,166,26)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="847.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="34.3765%" y="821" width="0.0166%" height="15" fill="rgb(233,0,47)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="831.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.02%)</title><rect x="34.3765%" y="805" width="0.0166%" height="15" fill="rgb(253,80,5)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.02%)</title><rect x="34.3765%" y="789" width="0.0166%" height="15" fill="rgb(214,133,25)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="799.50"></text></g><g><title>Parse::do_call (37 samples, 0.02%)</title><rect x="34.3765%" y="773" width="0.0166%" height="15" fill="rgb(209,27,14)" fg:x="76584" fg:w="37"/><text x="34.6265%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.02%)</title><rect x="34.3765%" y="885" width="0.0175%" height="15" fill="rgb(219,102,51)" fg:x="76584" fg:w="39"/><text x="34.6265%" y="895.50"></text></g><g><title>Parse::do_call (39 samples, 0.02%)</title><rect x="34.3765%" y="869" width="0.0175%" height="15" fill="rgb(237,18,16)" fg:x="76584" fg:w="39"/><text x="34.6265%" y="879.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.01%)</title><rect x="34.4079%" y="117" width="0.0108%" height="15" fill="rgb(241,85,17)" fg:x="76654" fg:w="24"/><text x="34.6579%" y="127.50"></text></g><g><title>Parse::Parse (24 samples, 0.01%)</title><rect x="34.4079%" y="101" width="0.0108%" height="15" fill="rgb(236,90,42)" fg:x="76654" fg:w="24"/><text x="34.6579%" y="111.50"></text></g><g><title>Parse::do_call (47 samples, 0.02%)</title><rect x="34.3999%" y="133" width="0.0211%" height="15" fill="rgb(249,57,21)" fg:x="76636" fg:w="47"/><text x="34.6499%" y="143.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.03%)</title><rect x="34.3981%" y="213" width="0.0319%" height="15" fill="rgb(243,12,36)" fg:x="76632" fg:w="71"/><text x="34.6481%" y="223.50"></text></g><g><title>Parse::Parse (71 samples, 0.03%)</title><rect x="34.3981%" y="197" width="0.0319%" height="15" fill="rgb(253,128,47)" fg:x="76632" fg:w="71"/><text x="34.6481%" y="207.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.03%)</title><rect x="34.3981%" y="181" width="0.0319%" height="15" fill="rgb(207,33,20)" fg:x="76632" fg:w="71"/><text x="34.6481%" y="191.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.03%)</title><rect x="34.3981%" y="165" width="0.0319%" height="15" fill="rgb(233,215,35)" fg:x="76632" fg:w="71"/><text x="34.6481%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.03%)</title><rect x="34.3990%" y="149" width="0.0310%" height="15" fill="rgb(249,188,52)" fg:x="76634" fg:w="69"/><text x="34.6490%" y="159.50"></text></g><g><title>Parse::do_call (83 samples, 0.04%)</title><rect x="34.3958%" y="229" width="0.0373%" height="15" fill="rgb(225,12,32)" fg:x="76627" fg:w="83"/><text x="34.6458%" y="239.50"></text></g><g><title>ParseGenerator::generate (91 samples, 0.04%)</title><rect x="34.3958%" y="309" width="0.0408%" height="15" fill="rgb(247,98,14)" fg:x="76627" fg:w="91"/><text x="34.6458%" y="319.50"></text></g><g><title>Parse::Parse (91 samples, 0.04%)</title><rect x="34.3958%" y="293" width="0.0408%" height="15" fill="rgb(247,219,48)" fg:x="76627" fg:w="91"/><text x="34.6458%" y="303.50"></text></g><g><title>Parse::do_all_blocks (91 samples, 0.04%)</title><rect x="34.3958%" y="277" width="0.0408%" height="15" fill="rgb(253,60,48)" fg:x="76627" fg:w="91"/><text x="34.6458%" y="287.50"></text></g><g><title>Parse::do_one_block (91 samples, 0.04%)</title><rect x="34.3958%" y="261" width="0.0408%" height="15" fill="rgb(245,15,52)" fg:x="76627" fg:w="91"/><text x="34.6458%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.04%)</title><rect x="34.3958%" y="245" width="0.0408%" height="15" fill="rgb(220,133,28)" fg:x="76627" fg:w="91"/><text x="34.6458%" y="255.50"></text></g><g><title>ParseGenerator::generate (105 samples, 0.05%)</title><rect x="34.3940%" y="405" width="0.0471%" height="15" fill="rgb(217,180,4)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="415.50"></text></g><g><title>Parse::Parse (105 samples, 0.05%)</title><rect x="34.3940%" y="389" width="0.0471%" height="15" fill="rgb(251,24,1)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="399.50"></text></g><g><title>Parse::do_all_blocks (105 samples, 0.05%)</title><rect x="34.3940%" y="373" width="0.0471%" height="15" fill="rgb(212,185,49)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="383.50"></text></g><g><title>Parse::do_one_block (105 samples, 0.05%)</title><rect x="34.3940%" y="357" width="0.0471%" height="15" fill="rgb(215,175,22)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (105 samples, 0.05%)</title><rect x="34.3940%" y="341" width="0.0471%" height="15" fill="rgb(250,205,14)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="351.50"></text></g><g><title>Parse::do_call (105 samples, 0.05%)</title><rect x="34.3940%" y="325" width="0.0471%" height="15" fill="rgb(225,211,22)" fg:x="76623" fg:w="105"/><text x="34.6440%" y="335.50"></text></g><g><title>ParseGenerator::generate (115 samples, 0.05%)</title><rect x="34.3940%" y="501" width="0.0516%" height="15" fill="rgb(251,179,42)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="511.50"></text></g><g><title>Parse::Parse (115 samples, 0.05%)</title><rect x="34.3940%" y="485" width="0.0516%" height="15" fill="rgb(208,216,51)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="495.50"></text></g><g><title>Parse::do_all_blocks (115 samples, 0.05%)</title><rect x="34.3940%" y="469" width="0.0516%" height="15" fill="rgb(235,36,11)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="479.50"></text></g><g><title>Parse::do_one_block (115 samples, 0.05%)</title><rect x="34.3940%" y="453" width="0.0516%" height="15" fill="rgb(213,189,28)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (115 samples, 0.05%)</title><rect x="34.3940%" y="437" width="0.0516%" height="15" fill="rgb(227,203,42)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="447.50"></text></g><g><title>Parse::do_call (115 samples, 0.05%)</title><rect x="34.3940%" y="421" width="0.0516%" height="15" fill="rgb(244,72,36)" fg:x="76623" fg:w="115"/><text x="34.6440%" y="431.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.01%)</title><rect x="34.4456%" y="485" width="0.0108%" height="15" fill="rgb(213,53,17)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="495.50"></text></g><g><title>Parse::Parse (24 samples, 0.01%)</title><rect x="34.4456%" y="469" width="0.0108%" height="15" fill="rgb(207,167,3)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="479.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.01%)</title><rect x="34.4456%" y="453" width="0.0108%" height="15" fill="rgb(216,98,30)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="463.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.01%)</title><rect x="34.4456%" y="437" width="0.0108%" height="15" fill="rgb(236,123,15)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.01%)</title><rect x="34.4456%" y="421" width="0.0108%" height="15" fill="rgb(248,81,50)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="431.50"></text></g><g><title>Parse::do_call (24 samples, 0.01%)</title><rect x="34.4456%" y="405" width="0.0108%" height="15" fill="rgb(214,120,4)" fg:x="76738" fg:w="24"/><text x="34.6956%" y="415.50"></text></g><g><title>ParseGenerator::generate (141 samples, 0.06%)</title><rect x="34.3940%" y="597" width="0.0633%" height="15" fill="rgb(208,179,34)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="607.50"></text></g><g><title>Parse::Parse (141 samples, 0.06%)</title><rect x="34.3940%" y="581" width="0.0633%" height="15" fill="rgb(227,140,7)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="591.50"></text></g><g><title>Parse::do_all_blocks (141 samples, 0.06%)</title><rect x="34.3940%" y="565" width="0.0633%" height="15" fill="rgb(214,22,6)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="575.50"></text></g><g><title>Parse::do_one_block (141 samples, 0.06%)</title><rect x="34.3940%" y="549" width="0.0633%" height="15" fill="rgb(207,137,27)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (141 samples, 0.06%)</title><rect x="34.3940%" y="533" width="0.0633%" height="15" fill="rgb(210,8,46)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="543.50"></text></g><g><title>Parse::do_call (141 samples, 0.06%)</title><rect x="34.3940%" y="517" width="0.0633%" height="15" fill="rgb(240,16,54)" fg:x="76623" fg:w="141"/><text x="34.6440%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (26 samples, 0.01%)</title><rect x="34.4456%" y="501" width="0.0117%" height="15" fill="rgb(211,209,29)" fg:x="76738" fg:w="26"/><text x="34.6956%" y="511.50"></text></g><g><title>ParseGenerator::generate (167 samples, 0.07%)</title><rect x="34.3940%" y="693" width="0.0750%" height="15" fill="rgb(226,228,24)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="703.50"></text></g><g><title>Parse::Parse (167 samples, 0.07%)</title><rect x="34.3940%" y="677" width="0.0750%" height="15" fill="rgb(222,84,9)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="687.50"></text></g><g><title>Parse::do_all_blocks (167 samples, 0.07%)</title><rect x="34.3940%" y="661" width="0.0750%" height="15" fill="rgb(234,203,30)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="671.50"></text></g><g><title>Parse::do_one_block (167 samples, 0.07%)</title><rect x="34.3940%" y="645" width="0.0750%" height="15" fill="rgb(238,109,14)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (167 samples, 0.07%)</title><rect x="34.3940%" y="629" width="0.0750%" height="15" fill="rgb(233,206,34)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="639.50"></text></g><g><title>Parse::do_call (167 samples, 0.07%)</title><rect x="34.3940%" y="613" width="0.0750%" height="15" fill="rgb(220,167,47)" fg:x="76623" fg:w="167"/><text x="34.6440%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (26 samples, 0.01%)</title><rect x="34.4573%" y="597" width="0.0117%" height="15" fill="rgb(238,105,10)" fg:x="76764" fg:w="26"/><text x="34.7073%" y="607.50"></text></g><g><title>ParseGenerator::generate (190 samples, 0.09%)</title><rect x="34.3940%" y="789" width="0.0853%" height="15" fill="rgb(213,227,17)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="799.50"></text></g><g><title>Parse::Parse (190 samples, 0.09%)</title><rect x="34.3940%" y="773" width="0.0853%" height="15" fill="rgb(217,132,38)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="783.50"></text></g><g><title>Parse::do_all_blocks (190 samples, 0.09%)</title><rect x="34.3940%" y="757" width="0.0853%" height="15" fill="rgb(242,146,4)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="767.50"></text></g><g><title>Parse::do_one_block (190 samples, 0.09%)</title><rect x="34.3940%" y="741" width="0.0853%" height="15" fill="rgb(212,61,9)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (190 samples, 0.09%)</title><rect x="34.3940%" y="725" width="0.0853%" height="15" fill="rgb(247,126,22)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="735.50"></text></g><g><title>Parse::do_call (190 samples, 0.09%)</title><rect x="34.3940%" y="709" width="0.0853%" height="15" fill="rgb(220,196,2)" fg:x="76623" fg:w="190"/><text x="34.6440%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (23 samples, 0.01%)</title><rect x="34.4690%" y="693" width="0.0103%" height="15" fill="rgb(208,46,4)" fg:x="76790" fg:w="23"/><text x="34.7190%" y="703.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="34.4793%" y="677" width="0.0103%" height="15" fill="rgb(252,104,46)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="687.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="34.4793%" y="661" width="0.0103%" height="15" fill="rgb(237,152,48)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="671.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.01%)</title><rect x="34.4793%" y="645" width="0.0103%" height="15" fill="rgb(221,59,37)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="655.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="34.4793%" y="629" width="0.0103%" height="15" fill="rgb(209,202,51)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="34.4793%" y="613" width="0.0103%" height="15" fill="rgb(228,81,30)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="623.50"></text></g><g><title>Parse::do_call (23 samples, 0.01%)</title><rect x="34.4793%" y="597" width="0.0103%" height="15" fill="rgb(227,42,39)" fg:x="76813" fg:w="23"/><text x="34.7293%" y="607.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.01%)</title><rect x="34.4793%" y="773" width="0.0108%" height="15" fill="rgb(221,26,2)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="783.50"></text></g><g><title>Parse::Parse (24 samples, 0.01%)</title><rect x="34.4793%" y="757" width="0.0108%" height="15" fill="rgb(254,61,31)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="767.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.01%)</title><rect x="34.4793%" y="741" width="0.0108%" height="15" fill="rgb(222,173,38)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="751.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.01%)</title><rect x="34.4793%" y="725" width="0.0108%" height="15" fill="rgb(218,50,12)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.01%)</title><rect x="34.4793%" y="709" width="0.0108%" height="15" fill="rgb(223,88,40)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="719.50"></text></g><g><title>Parse::do_call (24 samples, 0.01%)</title><rect x="34.4793%" y="693" width="0.0108%" height="15" fill="rgb(237,54,19)" fg:x="76813" fg:w="24"/><text x="34.7293%" y="703.50"></text></g><g><title>ParseGenerator::generate (223 samples, 0.10%)</title><rect x="34.3940%" y="885" width="0.1001%" height="15" fill="rgb(251,129,25)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="895.50"></text></g><g><title>Parse::Parse (223 samples, 0.10%)</title><rect x="34.3940%" y="869" width="0.1001%" height="15" fill="rgb(238,97,19)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="879.50"></text></g><g><title>Parse::do_all_blocks (223 samples, 0.10%)</title><rect x="34.3940%" y="853" width="0.1001%" height="15" fill="rgb(240,169,18)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="863.50"></text></g><g><title>Parse::do_one_block (223 samples, 0.10%)</title><rect x="34.3940%" y="837" width="0.1001%" height="15" fill="rgb(230,187,49)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (223 samples, 0.10%)</title><rect x="34.3940%" y="821" width="0.1001%" height="15" fill="rgb(209,44,26)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="831.50"></text></g><g><title>Parse::do_call (223 samples, 0.10%)</title><rect x="34.3940%" y="805" width="0.1001%" height="15" fill="rgb(244,0,6)" fg:x="76623" fg:w="223"/><text x="34.6440%" y="815.50"></text></g><g><title>PredictedCallGenerator::generate (33 samples, 0.01%)</title><rect x="34.4793%" y="789" width="0.0148%" height="15" fill="rgb(248,18,21)" fg:x="76813" fg:w="33"/><text x="34.7293%" y="799.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.01%)</title><rect x="34.5166%" y="757" width="0.0112%" height="15" fill="rgb(245,180,19)" fg:x="76896" fg:w="25"/><text x="34.7666%" y="767.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.02%)</title><rect x="34.5130%" y="789" width="0.0184%" height="15" fill="rgb(252,118,36)" fg:x="76888" fg:w="41"/><text x="34.7630%" y="799.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="34.5130%" y="773" width="0.0184%" height="15" fill="rgb(210,224,19)" fg:x="76888" fg:w="41"/><text x="34.7630%" y="783.50"></text></g><g><title>Thread::call_run (68 samples, 0.03%)</title><rect x="34.5094%" y="885" width="0.0305%" height="15" fill="rgb(218,30,24)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="895.50"></text></g><g><title>JavaThread::thread_main_inner (68 samples, 0.03%)</title><rect x="34.5094%" y="869" width="0.0305%" height="15" fill="rgb(219,75,50)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="879.50"></text></g><g><title>CompileBroker::compiler_thread_loop (68 samples, 0.03%)</title><rect x="34.5094%" y="853" width="0.0305%" height="15" fill="rgb(234,72,50)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="863.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (68 samples, 0.03%)</title><rect x="34.5094%" y="837" width="0.0305%" height="15" fill="rgb(219,100,48)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="847.50"></text></g><g><title>C2Compiler::compile_method (68 samples, 0.03%)</title><rect x="34.5094%" y="821" width="0.0305%" height="15" fill="rgb(253,5,41)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="831.50"></text></g><g><title>Compile::Compile (68 samples, 0.03%)</title><rect x="34.5094%" y="805" width="0.0305%" height="15" fill="rgb(247,181,11)" fg:x="76880" fg:w="68"/><text x="34.7594%" y="815.50"></text></g><g><title>_dl_update_slotinfo (39 samples, 0.02%)</title><rect x="34.5516%" y="885" width="0.0175%" height="15" fill="rgb(222,223,25)" fg:x="76974" fg:w="39"/><text x="34.8016%" y="895.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="34.5861%" y="757" width="0.0121%" height="15" fill="rgb(214,198,28)" fg:x="77051" fg:w="27"/><text x="34.8361%" y="767.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="34.5861%" y="741" width="0.0121%" height="15" fill="rgb(230,46,43)" fg:x="77051" fg:w="27"/><text x="34.8361%" y="751.50"></text></g><g><title>start_thread (60 samples, 0.03%)</title><rect x="34.5763%" y="885" width="0.0269%" height="15" fill="rgb(233,65,53)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="895.50"></text></g><g><title>thread_native_entry (60 samples, 0.03%)</title><rect x="34.5763%" y="869" width="0.0269%" height="15" fill="rgb(221,121,27)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="879.50"></text></g><g><title>Thread::call_run (60 samples, 0.03%)</title><rect x="34.5763%" y="853" width="0.0269%" height="15" fill="rgb(247,70,47)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (60 samples, 0.03%)</title><rect x="34.5763%" y="837" width="0.0269%" height="15" fill="rgb(228,85,35)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="847.50"></text></g><g><title>CompileBroker::compiler_thread_loop (60 samples, 0.03%)</title><rect x="34.5763%" y="821" width="0.0269%" height="15" fill="rgb(209,50,18)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (60 samples, 0.03%)</title><rect x="34.5763%" y="805" width="0.0269%" height="15" fill="rgb(250,19,35)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="815.50"></text></g><g><title>C2Compiler::compile_method (60 samples, 0.03%)</title><rect x="34.5763%" y="789" width="0.0269%" height="15" fill="rgb(253,107,29)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="799.50"></text></g><g><title>Compile::Compile (60 samples, 0.03%)</title><rect x="34.5763%" y="773" width="0.0269%" height="15" fill="rgb(252,179,29)" fg:x="77029" fg:w="60"/><text x="34.8263%" y="783.50"></text></g><g><title>[unknown] (61,367 samples, 27.55%)</title><rect x="7.0644%" y="901" width="27.5460%" height="15" fill="rgb(238,194,6)" fg:x="15738" fg:w="61367"/><text x="7.3144%" y="911.50">[unknown]</text></g><g><title>Dict::Insert (51 samples, 0.02%)</title><rect x="34.6611%" y="725" width="0.0229%" height="15" fill="rgb(238,164,29)" fg:x="77218" fg:w="51"/><text x="34.9111%" y="735.50"></text></g><g><title>Type::Initialize (69 samples, 0.03%)</title><rect x="34.6607%" y="741" width="0.0310%" height="15" fill="rgb(224,25,9)" fg:x="77217" fg:w="69"/><text x="34.9107%" y="751.50"></text></g><g><title>CompileWrapper::CompileWrapper (74 samples, 0.03%)</title><rect x="34.6589%" y="757" width="0.0332%" height="15" fill="rgb(244,153,23)" fg:x="77213" fg:w="74"/><text x="34.9089%" y="767.50"></text></g><g><title>Compile::identify_useful_nodes (154 samples, 0.07%)</title><rect x="34.7136%" y="741" width="0.0691%" height="15" fill="rgb(212,203,14)" fg:x="77335" fg:w="154"/><text x="34.9636%" y="751.50"></text></g><g><title>Compile::remove_useless_nodes (176 samples, 0.08%)</title><rect x="34.7827%" y="741" width="0.0790%" height="15" fill="rgb(220,164,20)" fg:x="77489" fg:w="176"/><text x="35.0327%" y="751.50"></text></g><g><title>Compile::update_dead_node_list (27 samples, 0.01%)</title><rect x="34.8617%" y="741" width="0.0121%" height="15" fill="rgb(222,203,48)" fg:x="77665" fg:w="27"/><text x="35.1117%" y="751.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (415 samples, 0.19%)</title><rect x="34.6970%" y="757" width="0.1863%" height="15" fill="rgb(215,159,22)" fg:x="77298" fg:w="415"/><text x="34.9470%" y="767.50"></text></g><g><title>C2Compiler::compile_method (635 samples, 0.29%)</title><rect x="34.6212%" y="789" width="0.2850%" height="15" fill="rgb(216,183,47)" fg:x="77129" fg:w="635"/><text x="34.8712%" y="799.50"></text></g><g><title>Compile::Compile (631 samples, 0.28%)</title><rect x="34.6229%" y="773" width="0.2832%" height="15" fill="rgb(229,195,25)" fg:x="77133" fg:w="631"/><text x="34.8729%" y="783.50"></text></g><g><title>CompileTask::print (24 samples, 0.01%)</title><rect x="34.9188%" y="789" width="0.0108%" height="15" fill="rgb(224,132,51)" fg:x="77792" fg:w="24"/><text x="35.1688%" y="799.50"></text></g><g><title>ciEnv::get_method_from_handle (27 samples, 0.01%)</title><rect x="34.9381%" y="789" width="0.0121%" height="15" fill="rgb(240,63,7)" fg:x="77835" fg:w="27"/><text x="35.1881%" y="799.50"></text></g><g><title>ciObjectFactory::get_metadata (27 samples, 0.01%)</title><rect x="34.9381%" y="773" width="0.0121%" height="15" fill="rgb(249,182,41)" fg:x="77835" fg:w="27"/><text x="35.1881%" y="783.50"></text></g><g><title>ciObjectFactory::create_new_metadata (26 samples, 0.01%)</title><rect x="34.9385%" y="757" width="0.0117%" height="15" fill="rgb(243,47,26)" fg:x="77836" fg:w="26"/><text x="35.1885%" y="767.50"></text></g><g><title>ciEnv::~ciEnv (24 samples, 0.01%)</title><rect x="34.9502%" y="789" width="0.0108%" height="15" fill="rgb(233,48,2)" fg:x="77862" fg:w="24"/><text x="35.2002%" y="799.50"></text></g><g><title>ciObjectFactory::remove_symbols (23 samples, 0.01%)</title><rect x="34.9506%" y="773" width="0.0103%" height="15" fill="rgb(244,165,34)" fg:x="77863" fg:w="23"/><text x="35.2006%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (762 samples, 0.34%)</title><rect x="34.6194%" y="805" width="0.3420%" height="15" fill="rgb(207,89,7)" fg:x="77125" fg:w="762"/><text x="34.8694%" y="815.50"></text></g><g><title>__pthread_cond_signal (34 samples, 0.02%)</title><rect x="34.9771%" y="757" width="0.0153%" height="15" fill="rgb(244,117,36)" fg:x="77922" fg:w="34"/><text x="35.2271%" y="767.50"></text></g><g><title>futex_wake (34 samples, 0.02%)</title><rect x="34.9771%" y="741" width="0.0153%" height="15" fill="rgb(226,144,34)" fg:x="77922" fg:w="34"/><text x="35.2271%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="34.9771%" y="725" width="0.0153%" height="15" fill="rgb(213,23,19)" fg:x="77922" fg:w="34"/><text x="35.2271%" y="735.50"></text></g><g><title>do_syscall_64 (33 samples, 0.01%)</title><rect x="34.9776%" y="709" width="0.0148%" height="15" fill="rgb(217,75,12)" fg:x="77923" fg:w="33"/><text x="35.2276%" y="719.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.01%)</title><rect x="34.9776%" y="693" width="0.0148%" height="15" fill="rgb(224,159,17)" fg:x="77923" fg:w="33"/><text x="35.2276%" y="703.50"></text></g><g><title>do_futex (33 samples, 0.01%)</title><rect x="34.9776%" y="677" width="0.0148%" height="15" fill="rgb(217,118,1)" fg:x="77923" fg:w="33"/><text x="35.2276%" y="687.50"></text></g><g><title>futex_wake (33 samples, 0.01%)</title><rect x="34.9776%" y="661" width="0.0148%" height="15" fill="rgb(232,180,48)" fg:x="77923" fg:w="33"/><text x="35.2276%" y="671.50"></text></g><g><title>wake_up_q (28 samples, 0.01%)</title><rect x="34.9798%" y="645" width="0.0126%" height="15" fill="rgb(230,27,33)" fg:x="77928" fg:w="28"/><text x="35.2298%" y="655.50"></text></g><g><title>try_to_wake_up (28 samples, 0.01%)</title><rect x="34.9798%" y="629" width="0.0126%" height="15" fill="rgb(205,31,21)" fg:x="77928" fg:w="28"/><text x="35.2298%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (267 samples, 0.12%)</title><rect x="35.0153%" y="549" width="0.1198%" height="15" fill="rgb(253,59,4)" fg:x="78007" fg:w="267"/><text x="35.2653%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (261 samples, 0.12%)</title><rect x="35.0180%" y="533" width="0.1172%" height="15" fill="rgb(224,201,9)" fg:x="78013" fg:w="261"/><text x="35.2680%" y="543.50"></text></g><g><title>native_write_msr (261 samples, 0.12%)</title><rect x="35.0180%" y="517" width="0.1172%" height="15" fill="rgb(229,206,30)" fg:x="78013" fg:w="261"/><text x="35.2680%" y="527.50"></text></g><g><title>finish_task_switch (280 samples, 0.13%)</title><rect x="35.0139%" y="565" width="0.1257%" height="15" fill="rgb(212,67,47)" fg:x="78004" fg:w="280"/><text x="35.2639%" y="575.50"></text></g><g><title>futex_wait_queue_me (323 samples, 0.14%)</title><rect x="35.0013%" y="613" width="0.1450%" height="15" fill="rgb(211,96,50)" fg:x="77976" fg:w="323"/><text x="35.2513%" y="623.50"></text></g><g><title>schedule (317 samples, 0.14%)</title><rect x="35.0040%" y="597" width="0.1423%" height="15" fill="rgb(252,114,18)" fg:x="77982" fg:w="317"/><text x="35.2540%" y="607.50"></text></g><g><title>__schedule (314 samples, 0.14%)</title><rect x="35.0054%" y="581" width="0.1409%" height="15" fill="rgb(223,58,37)" fg:x="77985" fg:w="314"/><text x="35.2554%" y="591.50"></text></g><g><title>do_futex (343 samples, 0.15%)</title><rect x="34.9987%" y="645" width="0.1540%" height="15" fill="rgb(237,70,4)" fg:x="77970" fg:w="343"/><text x="35.2487%" y="655.50"></text></g><g><title>futex_wait (341 samples, 0.15%)</title><rect x="34.9996%" y="629" width="0.1531%" height="15" fill="rgb(244,85,46)" fg:x="77972" fg:w="341"/><text x="35.2496%" y="639.50"></text></g><g><title>do_syscall_64 (345 samples, 0.15%)</title><rect x="34.9982%" y="677" width="0.1549%" height="15" fill="rgb(223,39,52)" fg:x="77969" fg:w="345"/><text x="35.2482%" y="687.50"></text></g><g><title>__x64_sys_futex (344 samples, 0.15%)</title><rect x="34.9987%" y="661" width="0.1544%" height="15" fill="rgb(218,200,14)" fg:x="77970" fg:w="344"/><text x="35.2487%" y="671.50"></text></g><g><title>__pthread_cond_timedwait (362 samples, 0.16%)</title><rect x="34.9937%" y="741" width="0.1625%" height="15" fill="rgb(208,171,16)" fg:x="77959" fg:w="362"/><text x="35.2437%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (361 samples, 0.16%)</title><rect x="34.9942%" y="725" width="0.1620%" height="15" fill="rgb(234,200,18)" fg:x="77960" fg:w="361"/><text x="35.2442%" y="735.50"></text></g><g><title>futex_abstimed_wait_cancelable (359 samples, 0.16%)</title><rect x="34.9951%" y="709" width="0.1611%" height="15" fill="rgb(228,45,11)" fg:x="77962" fg:w="359"/><text x="35.2451%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (353 samples, 0.16%)</title><rect x="34.9978%" y="693" width="0.1585%" height="15" fill="rgb(237,182,11)" fg:x="77968" fg:w="353"/><text x="35.2478%" y="703.50"></text></g><g><title>Monitor::IWait (412 samples, 0.18%)</title><rect x="34.9744%" y="773" width="0.1849%" height="15" fill="rgb(241,175,49)" fg:x="77916" fg:w="412"/><text x="35.2244%" y="783.50"></text></g><g><title>os::PlatformEvent::park (372 samples, 0.17%)</title><rect x="34.9924%" y="757" width="0.1670%" height="15" fill="rgb(247,38,35)" fg:x="77956" fg:w="372"/><text x="35.2424%" y="767.50"></text></g><g><title>Monitor::wait (421 samples, 0.19%)</title><rect x="34.9717%" y="789" width="0.1890%" height="15" fill="rgb(228,39,49)" fg:x="77910" fg:w="421"/><text x="35.2217%" y="799.50"></text></g><g><title>CompileQueue::get (465 samples, 0.21%)</title><rect x="34.9668%" y="805" width="0.2087%" height="15" fill="rgb(226,101,26)" fg:x="77899" fg:w="465"/><text x="35.2168%" y="815.50"></text></g><g><title>__GI___clone (1,251 samples, 0.56%)</title><rect x="34.6153%" y="901" width="0.5615%" height="15" fill="rgb(206,141,19)" fg:x="77116" fg:w="1251"/><text x="34.8653%" y="911.50"></text></g><g><title>start_thread (1,245 samples, 0.56%)</title><rect x="34.6180%" y="885" width="0.5588%" height="15" fill="rgb(211,200,13)" fg:x="77122" fg:w="1245"/><text x="34.8680%" y="895.50"></text></g><g><title>thread_native_entry (1,245 samples, 0.56%)</title><rect x="34.6180%" y="869" width="0.5588%" height="15" fill="rgb(241,121,6)" fg:x="77122" fg:w="1245"/><text x="34.8680%" y="879.50"></text></g><g><title>Thread::call_run (1,245 samples, 0.56%)</title><rect x="34.6180%" y="853" width="0.5588%" height="15" fill="rgb(234,221,29)" fg:x="77122" fg:w="1245"/><text x="34.8680%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (1,244 samples, 0.56%)</title><rect x="34.6185%" y="837" width="0.5584%" height="15" fill="rgb(229,136,5)" fg:x="77123" fg:w="1244"/><text x="34.8685%" y="847.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,244 samples, 0.56%)</title><rect x="34.6185%" y="821" width="0.5584%" height="15" fill="rgb(238,36,11)" fg:x="77123" fg:w="1244"/><text x="34.8685%" y="831.50"></text></g><g><title>asm_exc_page_fault (71 samples, 0.03%)</title><rect x="35.1831%" y="901" width="0.0319%" height="15" fill="rgb(251,55,41)" fg:x="78381" fg:w="71"/><text x="35.4331%" y="911.50"></text></g><g><title>C2_CompilerThre (66,241 samples, 29.73%)</title><rect x="5.5054%" y="917" width="29.7338%" height="15" fill="rgb(242,34,40)" fg:x="12265" fg:w="66241"/><text x="5.7554%" y="927.50">C2_CompilerThre</text></g><g><title>__perf_event_task_sched_in (41 samples, 0.02%)</title><rect x="35.2684%" y="661" width="0.0184%" height="15" fill="rgb(215,42,17)" fg:x="78571" fg:w="41"/><text x="35.5184%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.02%)</title><rect x="35.2693%" y="645" width="0.0175%" height="15" fill="rgb(207,44,46)" fg:x="78573" fg:w="39"/><text x="35.5193%" y="655.50"></text></g><g><title>native_write_msr (39 samples, 0.02%)</title><rect x="35.2693%" y="629" width="0.0175%" height="15" fill="rgb(211,206,28)" fg:x="78573" fg:w="39"/><text x="35.5193%" y="639.50"></text></g><g><title>finish_task_switch (43 samples, 0.02%)</title><rect x="35.2680%" y="677" width="0.0193%" height="15" fill="rgb(237,167,16)" fg:x="78570" fg:w="43"/><text x="35.5180%" y="687.50"></text></g><g><title>do_syscall_64 (52 samples, 0.02%)</title><rect x="35.2648%" y="789" width="0.0233%" height="15" fill="rgb(233,66,6)" fg:x="78563" fg:w="52"/><text x="35.5148%" y="799.50"></text></g><g><title>__x64_sys_futex (52 samples, 0.02%)</title><rect x="35.2648%" y="773" width="0.0233%" height="15" fill="rgb(246,123,29)" fg:x="78563" fg:w="52"/><text x="35.5148%" y="783.50"></text></g><g><title>do_futex (52 samples, 0.02%)</title><rect x="35.2648%" y="757" width="0.0233%" height="15" fill="rgb(209,62,40)" fg:x="78563" fg:w="52"/><text x="35.5148%" y="767.50"></text></g><g><title>futex_wait (52 samples, 0.02%)</title><rect x="35.2648%" y="741" width="0.0233%" height="15" fill="rgb(218,4,25)" fg:x="78563" fg:w="52"/><text x="35.5148%" y="751.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.02%)</title><rect x="35.2657%" y="725" width="0.0224%" height="15" fill="rgb(253,91,49)" fg:x="78565" fg:w="50"/><text x="35.5157%" y="735.50"></text></g><g><title>schedule (48 samples, 0.02%)</title><rect x="35.2666%" y="709" width="0.0215%" height="15" fill="rgb(228,155,29)" fg:x="78567" fg:w="48"/><text x="35.5166%" y="719.50"></text></g><g><title>__schedule (48 samples, 0.02%)</title><rect x="35.2666%" y="693" width="0.0215%" height="15" fill="rgb(243,57,37)" fg:x="78567" fg:w="48"/><text x="35.5166%" y="703.50"></text></g><g><title>Unsafe_Park (56 samples, 0.03%)</title><rect x="35.2635%" y="885" width="0.0251%" height="15" fill="rgb(244,167,17)" fg:x="78560" fg:w="56"/><text x="35.5135%" y="895.50"></text></g><g><title>Parker::park (56 samples, 0.03%)</title><rect x="35.2635%" y="869" width="0.0251%" height="15" fill="rgb(207,181,38)" fg:x="78560" fg:w="56"/><text x="35.5135%" y="879.50"></text></g><g><title>__pthread_cond_timedwait (56 samples, 0.03%)</title><rect x="35.2635%" y="853" width="0.0251%" height="15" fill="rgb(211,8,23)" fg:x="78560" fg:w="56"/><text x="35.5135%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (56 samples, 0.03%)</title><rect x="35.2635%" y="837" width="0.0251%" height="15" fill="rgb(235,11,44)" fg:x="78560" fg:w="56"/><text x="35.5135%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (54 samples, 0.02%)</title><rect x="35.2644%" y="821" width="0.0242%" height="15" fill="rgb(248,18,52)" fg:x="78562" fg:w="54"/><text x="35.5144%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.02%)</title><rect x="35.2648%" y="805" width="0.0238%" height="15" fill="rgb(208,4,7)" fg:x="78563" fg:w="53"/><text x="35.5148%" y="815.50"></text></g><g><title>[perf-945576.map] (111 samples, 0.05%)</title><rect x="35.2410%" y="901" width="0.0498%" height="15" fill="rgb(240,17,39)" fg:x="78510" fg:w="111"/><text x="35.4910%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.03%)</title><rect x="35.2936%" y="677" width="0.0265%" height="15" fill="rgb(207,170,3)" fg:x="78627" fg:w="59"/><text x="35.5436%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.03%)</title><rect x="35.2936%" y="661" width="0.0265%" height="15" fill="rgb(236,100,52)" fg:x="78627" fg:w="59"/><text x="35.5436%" y="671.50"></text></g><g><title>native_write_msr (59 samples, 0.03%)</title><rect x="35.2936%" y="645" width="0.0265%" height="15" fill="rgb(246,78,51)" fg:x="78627" fg:w="59"/><text x="35.5436%" y="655.50"></text></g><g><title>finish_task_switch (63 samples, 0.03%)</title><rect x="35.2927%" y="693" width="0.0283%" height="15" fill="rgb(211,17,15)" fg:x="78625" fg:w="63"/><text x="35.5427%" y="703.50"></text></g><g><title>new_sync_read (68 samples, 0.03%)</title><rect x="35.2922%" y="757" width="0.0305%" height="15" fill="rgb(209,59,46)" fg:x="78624" fg:w="68"/><text x="35.5422%" y="767.50"></text></g><g><title>pipe_read (68 samples, 0.03%)</title><rect x="35.2922%" y="741" width="0.0305%" height="15" fill="rgb(210,92,25)" fg:x="78624" fg:w="68"/><text x="35.5422%" y="751.50"></text></g><g><title>schedule (68 samples, 0.03%)</title><rect x="35.2922%" y="725" width="0.0305%" height="15" fill="rgb(238,174,52)" fg:x="78624" fg:w="68"/><text x="35.5422%" y="735.50"></text></g><g><title>__schedule (68 samples, 0.03%)</title><rect x="35.2922%" y="709" width="0.0305%" height="15" fill="rgb(230,73,7)" fg:x="78624" fg:w="68"/><text x="35.5422%" y="719.50"></text></g><g><title>do_syscall_64 (70 samples, 0.03%)</title><rect x="35.2918%" y="805" width="0.0314%" height="15" fill="rgb(243,124,40)" fg:x="78623" fg:w="70"/><text x="35.5418%" y="815.50"></text></g><g><title>ksys_read (69 samples, 0.03%)</title><rect x="35.2922%" y="789" width="0.0310%" height="15" fill="rgb(244,170,11)" fg:x="78624" fg:w="69"/><text x="35.5422%" y="799.50"></text></g><g><title>vfs_read (69 samples, 0.03%)</title><rect x="35.2922%" y="773" width="0.0310%" height="15" fill="rgb(207,114,54)" fg:x="78624" fg:w="69"/><text x="35.5422%" y="783.50"></text></g><g><title>[unknown] (74 samples, 0.03%)</title><rect x="35.2909%" y="901" width="0.0332%" height="15" fill="rgb(205,42,20)" fg:x="78621" fg:w="74"/><text x="35.5409%" y="911.50"></text></g><g><title>readBytes (73 samples, 0.03%)</title><rect x="35.2913%" y="885" width="0.0328%" height="15" fill="rgb(230,30,28)" fg:x="78622" fg:w="73"/><text x="35.5413%" y="895.50"></text></g><g><title>handleRead (73 samples, 0.03%)</title><rect x="35.2913%" y="869" width="0.0328%" height="15" fill="rgb(205,73,54)" fg:x="78622" fg:w="73"/><text x="35.5413%" y="879.50"></text></g><g><title>__libc_read (73 samples, 0.03%)</title><rect x="35.2913%" y="853" width="0.0328%" height="15" fill="rgb(254,227,23)" fg:x="78622" fg:w="73"/><text x="35.5413%" y="863.50"></text></g><g><title>__libc_read (73 samples, 0.03%)</title><rect x="35.2913%" y="837" width="0.0328%" height="15" fill="rgb(228,202,34)" fg:x="78622" fg:w="73"/><text x="35.5413%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.03%)</title><rect x="35.2918%" y="821" width="0.0323%" height="15" fill="rgb(222,225,37)" fg:x="78623" fg:w="72"/><text x="35.5418%" y="831.50"></text></g><g><title>Command-Accumul (190 samples, 0.09%)</title><rect x="35.2392%" y="917" width="0.0853%" height="15" fill="rgb(221,14,54)" fg:x="78506" fg:w="190"/><text x="35.4892%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (203 samples, 0.09%)</title><rect x="35.4897%" y="661" width="0.0911%" height="15" fill="rgb(254,102,2)" fg:x="79064" fg:w="203"/><text x="35.7397%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (199 samples, 0.09%)</title><rect x="35.4915%" y="645" width="0.0893%" height="15" fill="rgb(232,104,17)" fg:x="79068" fg:w="199"/><text x="35.7415%" y="655.50"></text></g><g><title>native_write_msr (198 samples, 0.09%)</title><rect x="35.4920%" y="629" width="0.0889%" height="15" fill="rgb(250,220,14)" fg:x="79069" fg:w="198"/><text x="35.7420%" y="639.50"></text></g><g><title>finish_task_switch (210 samples, 0.09%)</title><rect x="35.4884%" y="677" width="0.0943%" height="15" fill="rgb(241,158,9)" fg:x="79061" fg:w="210"/><text x="35.7384%" y="687.50"></text></g><g><title>futex_wait_queue_me (230 samples, 0.10%)</title><rect x="35.4834%" y="725" width="0.1032%" height="15" fill="rgb(246,9,43)" fg:x="79050" fg:w="230"/><text x="35.7334%" y="735.50"></text></g><g><title>schedule (226 samples, 0.10%)</title><rect x="35.4852%" y="709" width="0.1014%" height="15" fill="rgb(206,73,33)" fg:x="79054" fg:w="226"/><text x="35.7352%" y="719.50"></text></g><g><title>__schedule (226 samples, 0.10%)</title><rect x="35.4852%" y="693" width="0.1014%" height="15" fill="rgb(222,79,8)" fg:x="79054" fg:w="226"/><text x="35.7352%" y="703.50"></text></g><g><title>do_syscall_64 (240 samples, 0.11%)</title><rect x="35.4821%" y="789" width="0.1077%" height="15" fill="rgb(234,8,54)" fg:x="79047" fg:w="240"/><text x="35.7321%" y="799.50"></text></g><g><title>__x64_sys_futex (239 samples, 0.11%)</title><rect x="35.4825%" y="773" width="0.1073%" height="15" fill="rgb(209,134,38)" fg:x="79048" fg:w="239"/><text x="35.7325%" y="783.50"></text></g><g><title>do_futex (239 samples, 0.11%)</title><rect x="35.4825%" y="757" width="0.1073%" height="15" fill="rgb(230,127,29)" fg:x="79048" fg:w="239"/><text x="35.7325%" y="767.50"></text></g><g><title>futex_wait (237 samples, 0.11%)</title><rect x="35.4834%" y="741" width="0.1064%" height="15" fill="rgb(242,44,41)" fg:x="79050" fg:w="237"/><text x="35.7334%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (256 samples, 0.11%)</title><rect x="35.4767%" y="853" width="0.1149%" height="15" fill="rgb(222,56,43)" fg:x="79035" fg:w="256"/><text x="35.7267%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (256 samples, 0.11%)</title><rect x="35.4767%" y="837" width="0.1149%" height="15" fill="rgb(238,39,47)" fg:x="79035" fg:w="256"/><text x="35.7267%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (253 samples, 0.11%)</title><rect x="35.4781%" y="821" width="0.1136%" height="15" fill="rgb(226,79,43)" fg:x="79038" fg:w="253"/><text x="35.7281%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (247 samples, 0.11%)</title><rect x="35.4807%" y="805" width="0.1109%" height="15" fill="rgb(242,105,53)" fg:x="79044" fg:w="247"/><text x="35.7307%" y="815.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.01%)</title><rect x="35.5943%" y="725" width="0.0126%" height="15" fill="rgb(251,132,46)" fg:x="79297" fg:w="28"/><text x="35.8443%" y="735.50"></text></g><g><title>schedule (27 samples, 0.01%)</title><rect x="35.5948%" y="709" width="0.0121%" height="15" fill="rgb(231,77,14)" fg:x="79298" fg:w="27"/><text x="35.8448%" y="719.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="35.5948%" y="693" width="0.0121%" height="15" fill="rgb(240,135,9)" fg:x="79298" fg:w="27"/><text x="35.8448%" y="703.50"></text></g><g><title>__pthread_cond_wait (35 samples, 0.02%)</title><rect x="35.5916%" y="853" width="0.0157%" height="15" fill="rgb(248,109,14)" fg:x="79291" fg:w="35"/><text x="35.8416%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.02%)</title><rect x="35.5916%" y="837" width="0.0157%" height="15" fill="rgb(227,146,52)" fg:x="79291" fg:w="35"/><text x="35.8416%" y="847.50"></text></g><g><title>futex_wait_cancelable (33 samples, 0.01%)</title><rect x="35.5925%" y="821" width="0.0148%" height="15" fill="rgb(232,54,3)" fg:x="79293" fg:w="33"/><text x="35.8425%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="35.5939%" y="805" width="0.0135%" height="15" fill="rgb(229,201,43)" fg:x="79296" fg:w="30"/><text x="35.8439%" y="815.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="35.5939%" y="789" width="0.0135%" height="15" fill="rgb(252,161,33)" fg:x="79296" fg:w="30"/><text x="35.8439%" y="799.50"></text></g><g><title>__x64_sys_futex (30 samples, 0.01%)</title><rect x="35.5939%" y="773" width="0.0135%" height="15" fill="rgb(226,146,40)" fg:x="79296" fg:w="30"/><text x="35.8439%" y="783.50"></text></g><g><title>do_futex (30 samples, 0.01%)</title><rect x="35.5939%" y="757" width="0.0135%" height="15" fill="rgb(219,47,25)" fg:x="79296" fg:w="30"/><text x="35.8439%" y="767.50"></text></g><g><title>futex_wait (29 samples, 0.01%)</title><rect x="35.5943%" y="741" width="0.0130%" height="15" fill="rgb(250,135,13)" fg:x="79297" fg:w="29"/><text x="35.8443%" y="751.50"></text></g><g><title>Parker::park (309 samples, 0.14%)</title><rect x="35.4718%" y="869" width="0.1387%" height="15" fill="rgb(219,229,18)" fg:x="79024" fg:w="309"/><text x="35.7218%" y="879.50"></text></g><g><title>Unsafe_Park (312 samples, 0.14%)</title><rect x="35.4709%" y="885" width="0.1400%" height="15" fill="rgb(217,152,27)" fg:x="79022" fg:w="312"/><text x="35.7209%" y="895.50"></text></g><g><title>[perf-945576.map] (589 samples, 0.26%)</title><rect x="35.3483%" y="901" width="0.2644%" height="15" fill="rgb(225,71,47)" fg:x="78749" fg:w="589"/><text x="35.5983%" y="911.50"></text></g><g><title>ForkJoinPool.co (601 samples, 0.27%)</title><rect x="35.3456%" y="917" width="0.2698%" height="15" fill="rgb(220,139,14)" fg:x="78743" fg:w="601"/><text x="35.5956%" y="927.50"></text></g><g><title>G1_Conc#0 (39 samples, 0.02%)</title><rect x="35.6154%" y="917" width="0.0175%" height="15" fill="rgb(247,54,32)" fg:x="79344" fg:w="39"/><text x="35.8654%" y="927.50"></text></g><g><title>__GI___clone (37 samples, 0.02%)</title><rect x="35.6163%" y="901" width="0.0166%" height="15" fill="rgb(252,131,39)" fg:x="79346" fg:w="37"/><text x="35.8663%" y="911.50"></text></g><g><title>start_thread (37 samples, 0.02%)</title><rect x="35.6163%" y="885" width="0.0166%" height="15" fill="rgb(210,108,39)" fg:x="79346" fg:w="37"/><text x="35.8663%" y="895.50"></text></g><g><title>thread_native_entry (37 samples, 0.02%)</title><rect x="35.6163%" y="869" width="0.0166%" height="15" fill="rgb(205,23,29)" fg:x="79346" fg:w="37"/><text x="35.8663%" y="879.50"></text></g><g><title>Thread::call_run (37 samples, 0.02%)</title><rect x="35.6163%" y="853" width="0.0166%" height="15" fill="rgb(246,139,46)" fg:x="79346" fg:w="37"/><text x="35.8663%" y="863.50"></text></g><g><title>GangWorker::loop (37 samples, 0.02%)</title><rect x="35.6163%" y="837" width="0.0166%" height="15" fill="rgb(250,81,26)" fg:x="79346" fg:w="37"/><text x="35.8663%" y="847.50"></text></g><g><title>__GI___clone (30 samples, 0.01%)</title><rect x="35.6329%" y="901" width="0.0135%" height="15" fill="rgb(214,104,7)" fg:x="79383" fg:w="30"/><text x="35.8829%" y="911.50"></text></g><g><title>start_thread (30 samples, 0.01%)</title><rect x="35.6329%" y="885" width="0.0135%" height="15" fill="rgb(233,189,8)" fg:x="79383" fg:w="30"/><text x="35.8829%" y="895.50"></text></g><g><title>thread_native_entry (30 samples, 0.01%)</title><rect x="35.6329%" y="869" width="0.0135%" height="15" fill="rgb(228,141,17)" fg:x="79383" fg:w="30"/><text x="35.8829%" y="879.50"></text></g><g><title>Thread::call_run (30 samples, 0.01%)</title><rect x="35.6329%" y="853" width="0.0135%" height="15" fill="rgb(247,157,1)" fg:x="79383" fg:w="30"/><text x="35.8829%" y="863.50"></text></g><g><title>GangWorker::loop (30 samples, 0.01%)</title><rect x="35.6329%" y="837" width="0.0135%" height="15" fill="rgb(249,225,5)" fg:x="79383" fg:w="30"/><text x="35.8829%" y="847.50"></text></g><g><title>G1_Conc#1 (31 samples, 0.01%)</title><rect x="35.6329%" y="917" width="0.0139%" height="15" fill="rgb(242,55,13)" fg:x="79383" fg:w="31"/><text x="35.8829%" y="927.50"></text></g><g><title>G1BlockOffsetTablePart::forward_to_block_containing_addr_slow (23 samples, 0.01%)</title><rect x="35.6545%" y="773" width="0.0103%" height="15" fill="rgb(230,49,50)" fg:x="79431" fg:w="23"/><text x="35.9045%" y="783.50"></text></g><g><title>OopOopIterateDispatch&lt;G1ConcurrentRefineOopClosure&gt;::Table::oop_oop_iterate&lt;InstanceKlass, unsigned int&gt; (24 samples, 0.01%)</title><rect x="35.6675%" y="773" width="0.0108%" height="15" fill="rgb(241,111,38)" fg:x="79460" fg:w="24"/><text x="35.9175%" y="783.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (61 samples, 0.03%)</title><rect x="35.6531%" y="805" width="0.0274%" height="15" fill="rgb(252,155,4)" fg:x="79428" fg:w="61"/><text x="35.9031%" y="815.50"></text></g><g><title>G1RemSet::refine_card_concurrently (61 samples, 0.03%)</title><rect x="35.6531%" y="789" width="0.0274%" height="15" fill="rgb(212,69,32)" fg:x="79428" fg:w="61"/><text x="35.9031%" y="799.50"></text></g><g><title>G1_Refine#0 (103 samples, 0.05%)</title><rect x="35.6518%" y="917" width="0.0462%" height="15" fill="rgb(243,107,47)" fg:x="79425" fg:w="103"/><text x="35.9018%" y="927.50"></text></g><g><title>__GI___clone (100 samples, 0.04%)</title><rect x="35.6531%" y="901" width="0.0449%" height="15" fill="rgb(247,130,12)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="911.50"></text></g><g><title>start_thread (100 samples, 0.04%)</title><rect x="35.6531%" y="885" width="0.0449%" height="15" fill="rgb(233,74,16)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="895.50"></text></g><g><title>thread_native_entry (100 samples, 0.04%)</title><rect x="35.6531%" y="869" width="0.0449%" height="15" fill="rgb(208,58,18)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="879.50"></text></g><g><title>Thread::call_run (100 samples, 0.04%)</title><rect x="35.6531%" y="853" width="0.0449%" height="15" fill="rgb(242,225,1)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="863.50"></text></g><g><title>ConcurrentGCThread::run (100 samples, 0.04%)</title><rect x="35.6531%" y="837" width="0.0449%" height="15" fill="rgb(249,39,40)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="847.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (100 samples, 0.04%)</title><rect x="35.6531%" y="821" width="0.0449%" height="15" fill="rgb(207,72,44)" fg:x="79428" fg:w="100"/><text x="35.9031%" y="831.50"></text></g><g><title>ConcurrentGCThread::run (27 samples, 0.01%)</title><rect x="35.7034%" y="837" width="0.0121%" height="15" fill="rgb(215,193,12)" fg:x="79540" fg:w="27"/><text x="35.9534%" y="847.50"></text></g><g><title>G1_Young_RemSet (29 samples, 0.01%)</title><rect x="35.7029%" y="917" width="0.0130%" height="15" fill="rgb(248,41,39)" fg:x="79539" fg:w="29"/><text x="35.9529%" y="927.50"></text></g><g><title>__GI___clone (28 samples, 0.01%)</title><rect x="35.7034%" y="901" width="0.0126%" height="15" fill="rgb(253,85,4)" fg:x="79540" fg:w="28"/><text x="35.9534%" y="911.50"></text></g><g><title>start_thread (28 samples, 0.01%)</title><rect x="35.7034%" y="885" width="0.0126%" height="15" fill="rgb(243,70,31)" fg:x="79540" fg:w="28"/><text x="35.9534%" y="895.50"></text></g><g><title>thread_native_entry (28 samples, 0.01%)</title><rect x="35.7034%" y="869" width="0.0126%" height="15" fill="rgb(253,195,26)" fg:x="79540" fg:w="28"/><text x="35.9534%" y="879.50"></text></g><g><title>Thread::call_run (28 samples, 0.01%)</title><rect x="35.7034%" y="853" width="0.0126%" height="15" fill="rgb(243,42,11)" fg:x="79540" fg:w="28"/><text x="35.9534%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue (27 samples, 0.01%)</title><rect x="35.7267%" y="789" width="0.0121%" height="15" fill="rgb(239,66,17)" fg:x="79592" fg:w="27"/><text x="35.9767%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (100 samples, 0.04%)</title><rect x="35.7240%" y="805" width="0.0449%" height="15" fill="rgb(217,132,21)" fg:x="79586" fg:w="100"/><text x="35.9740%" y="815.50"></text></g><g><title>SpinPause (62 samples, 0.03%)</title><rect x="35.7411%" y="789" width="0.0278%" height="15" fill="rgb(252,202,21)" fg:x="79624" fg:w="62"/><text x="35.9911%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (28 samples, 0.01%)</title><rect x="35.7689%" y="725" width="0.0126%" height="15" fill="rgb(233,98,36)" fg:x="79686" fg:w="28"/><text x="36.0189%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (33 samples, 0.01%)</title><rect x="35.7689%" y="773" width="0.0148%" height="15" fill="rgb(216,153,54)" fg:x="79686" fg:w="33"/><text x="36.0189%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (33 samples, 0.01%)</title><rect x="35.7689%" y="757" width="0.0148%" height="15" fill="rgb(250,99,7)" fg:x="79686" fg:w="33"/><text x="36.0189%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (33 samples, 0.01%)</title><rect x="35.7689%" y="741" width="0.0148%" height="15" fill="rgb(207,56,50)" fg:x="79686" fg:w="33"/><text x="36.0189%" y="751.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (34 samples, 0.02%)</title><rect x="35.7689%" y="805" width="0.0153%" height="15" fill="rgb(244,61,34)" fg:x="79686" fg:w="34"/><text x="36.0189%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (34 samples, 0.02%)</title><rect x="35.7689%" y="789" width="0.0153%" height="15" fill="rgb(241,50,38)" fg:x="79686" fg:w="34"/><text x="36.0189%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (26 samples, 0.01%)</title><rect x="35.7842%" y="725" width="0.0117%" height="15" fill="rgb(212,166,30)" fg:x="79720" fg:w="26"/><text x="36.0342%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (29 samples, 0.01%)</title><rect x="35.7842%" y="741" width="0.0130%" height="15" fill="rgb(249,127,32)" fg:x="79720" fg:w="29"/><text x="36.0342%" y="751.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (31 samples, 0.01%)</title><rect x="35.7842%" y="757" width="0.0139%" height="15" fill="rgb(209,103,0)" fg:x="79720" fg:w="31"/><text x="36.0342%" y="767.50"></text></g><g><title>G1RemSet::scan_rem_set (32 samples, 0.01%)</title><rect x="35.7842%" y="805" width="0.0144%" height="15" fill="rgb(238,209,51)" fg:x="79720" fg:w="32"/><text x="36.0342%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (32 samples, 0.01%)</title><rect x="35.7842%" y="789" width="0.0144%" height="15" fill="rgb(237,56,23)" fg:x="79720" fg:w="32"/><text x="36.0342%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (32 samples, 0.01%)</title><rect x="35.7842%" y="773" width="0.0144%" height="15" fill="rgb(215,153,46)" fg:x="79720" fg:w="32"/><text x="36.0342%" y="783.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (30 samples, 0.01%)</title><rect x="35.7985%" y="773" width="0.0135%" height="15" fill="rgb(224,49,31)" fg:x="79752" fg:w="30"/><text x="36.0485%" y="783.50"></text></g><g><title>G1CLDScanClosure::do_cld (30 samples, 0.01%)</title><rect x="35.7985%" y="757" width="0.0135%" height="15" fill="rgb(250,18,42)" fg:x="79752" fg:w="30"/><text x="36.0485%" y="767.50"></text></g><g><title>ClassLoaderData::oops_do (30 samples, 0.01%)</title><rect x="35.7985%" y="741" width="0.0135%" height="15" fill="rgb(215,176,39)" fg:x="79752" fg:w="30"/><text x="36.0485%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (23 samples, 0.01%)</title><rect x="35.8017%" y="725" width="0.0103%" height="15" fill="rgb(223,77,29)" fg:x="79759" fg:w="23"/><text x="36.0517%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (41 samples, 0.02%)</title><rect x="35.8232%" y="677" width="0.0184%" height="15" fill="rgb(234,94,52)" fg:x="79807" fg:w="41"/><text x="36.0732%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (36 samples, 0.02%)</title><rect x="35.8255%" y="661" width="0.0162%" height="15" fill="rgb(220,154,50)" fg:x="79812" fg:w="36"/><text x="36.0755%" y="671.50"></text></g><g><title>InterpreterOopMap::iterate_oop (55 samples, 0.02%)</title><rect x="35.8183%" y="709" width="0.0247%" height="15" fill="rgb(212,11,10)" fg:x="79796" fg:w="55"/><text x="36.0683%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.02%)</title><rect x="35.8192%" y="693" width="0.0238%" height="15" fill="rgb(205,166,19)" fg:x="79798" fg:w="53"/><text x="36.0692%" y="703.50"></text></g><g><title>frame::oops_interpreted_do (58 samples, 0.03%)</title><rect x="35.8183%" y="725" width="0.0260%" height="15" fill="rgb(244,198,16)" fg:x="79796" fg:w="58"/><text x="36.0683%" y="735.50"></text></g><g><title>G1RootProcessor::process_java_roots (103 samples, 0.05%)</title><rect x="35.7985%" y="789" width="0.0462%" height="15" fill="rgb(219,69,12)" fg:x="79752" fg:w="103"/><text x="36.0485%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (73 samples, 0.03%)</title><rect x="35.8120%" y="773" width="0.0328%" height="15" fill="rgb(245,30,7)" fg:x="79782" fg:w="73"/><text x="36.0620%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (73 samples, 0.03%)</title><rect x="35.8120%" y="757" width="0.0328%" height="15" fill="rgb(218,221,48)" fg:x="79782" fg:w="73"/><text x="36.0620%" y="767.50"></text></g><g><title>JavaThread::oops_do (72 samples, 0.03%)</title><rect x="35.8125%" y="741" width="0.0323%" height="15" fill="rgb(216,66,15)" fg:x="79783" fg:w="72"/><text x="36.0625%" y="751.50"></text></g><g><title>G1ParTask::work (273 samples, 0.12%)</title><rect x="35.7240%" y="821" width="0.1225%" height="15" fill="rgb(226,122,50)" fg:x="79586" fg:w="273"/><text x="35.9740%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (107 samples, 0.05%)</title><rect x="35.7985%" y="805" width="0.0480%" height="15" fill="rgb(239,156,16)" fg:x="79752" fg:w="107"/><text x="36.0485%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (23 samples, 0.01%)</title><rect x="35.8542%" y="821" width="0.0103%" height="15" fill="rgb(224,27,38)" fg:x="79876" fg:w="23"/><text x="36.1042%" y="831.50"></text></g><g><title>JavaThread::nmethods_do (23 samples, 0.01%)</title><rect x="35.8704%" y="789" width="0.0103%" height="15" fill="rgb(224,39,27)" fg:x="79912" fg:w="23"/><text x="36.1204%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (34 samples, 0.02%)</title><rect x="35.8677%" y="821" width="0.0153%" height="15" fill="rgb(215,92,29)" fg:x="79906" fg:w="34"/><text x="36.1177%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (33 samples, 0.01%)</title><rect x="35.8681%" y="805" width="0.0148%" height="15" fill="rgb(207,159,16)" fg:x="79907" fg:w="33"/><text x="36.1181%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (93 samples, 0.04%)</title><rect x="35.8906%" y="597" width="0.0417%" height="15" fill="rgb(238,163,47)" fg:x="79957" fg:w="93"/><text x="36.1406%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (92 samples, 0.04%)</title><rect x="35.8910%" y="581" width="0.0413%" height="15" fill="rgb(219,91,49)" fg:x="79958" fg:w="92"/><text x="36.1410%" y="591.50"></text></g><g><title>native_write_msr (92 samples, 0.04%)</title><rect x="35.8910%" y="565" width="0.0413%" height="15" fill="rgb(227,167,31)" fg:x="79958" fg:w="92"/><text x="36.1410%" y="575.50"></text></g><g><title>finish_task_switch (97 samples, 0.04%)</title><rect x="35.8901%" y="613" width="0.0435%" height="15" fill="rgb(234,80,54)" fg:x="79956" fg:w="97"/><text x="36.1401%" y="623.50"></text></g><g><title>futex_wait_queue_me (119 samples, 0.05%)</title><rect x="35.8852%" y="661" width="0.0534%" height="15" fill="rgb(212,114,2)" fg:x="79945" fg:w="119"/><text x="36.1352%" y="671.50"></text></g><g><title>schedule (118 samples, 0.05%)</title><rect x="35.8856%" y="645" width="0.0530%" height="15" fill="rgb(234,50,24)" fg:x="79946" fg:w="118"/><text x="36.1356%" y="655.50"></text></g><g><title>__schedule (118 samples, 0.05%)</title><rect x="35.8856%" y="629" width="0.0530%" height="15" fill="rgb(221,68,8)" fg:x="79946" fg:w="118"/><text x="36.1356%" y="639.50"></text></g><g><title>__x64_sys_futex (123 samples, 0.06%)</title><rect x="35.8838%" y="709" width="0.0552%" height="15" fill="rgb(254,180,31)" fg:x="79942" fg:w="123"/><text x="36.1338%" y="719.50"></text></g><g><title>do_futex (123 samples, 0.06%)</title><rect x="35.8838%" y="693" width="0.0552%" height="15" fill="rgb(247,130,50)" fg:x="79942" fg:w="123"/><text x="36.1338%" y="703.50"></text></g><g><title>futex_wait (121 samples, 0.05%)</title><rect x="35.8847%" y="677" width="0.0543%" height="15" fill="rgb(211,109,4)" fg:x="79944" fg:w="121"/><text x="36.1347%" y="687.50"></text></g><g><title>do_syscall_64 (124 samples, 0.06%)</title><rect x="35.8838%" y="725" width="0.0557%" height="15" fill="rgb(238,50,21)" fg:x="79942" fg:w="124"/><text x="36.1338%" y="735.50"></text></g><g><title>__GI___clone (489 samples, 0.22%)</title><rect x="35.7213%" y="901" width="0.2195%" height="15" fill="rgb(225,57,45)" fg:x="79580" fg:w="489"/><text x="35.9713%" y="911.50"></text></g><g><title>start_thread (489 samples, 0.22%)</title><rect x="35.7213%" y="885" width="0.2195%" height="15" fill="rgb(209,196,50)" fg:x="79580" fg:w="489"/><text x="35.9713%" y="895.50"></text></g><g><title>thread_native_entry (489 samples, 0.22%)</title><rect x="35.7213%" y="869" width="0.2195%" height="15" fill="rgb(242,140,13)" fg:x="79580" fg:w="489"/><text x="35.9713%" y="879.50"></text></g><g><title>Thread::call_run (489 samples, 0.22%)</title><rect x="35.7213%" y="853" width="0.2195%" height="15" fill="rgb(217,111,7)" fg:x="79580" fg:w="489"/><text x="35.9713%" y="863.50"></text></g><g><title>GangWorker::loop (489 samples, 0.22%)</title><rect x="35.7213%" y="837" width="0.2195%" height="15" fill="rgb(253,193,51)" fg:x="79580" fg:w="489"/><text x="35.9713%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (127 samples, 0.06%)</title><rect x="35.8838%" y="821" width="0.0570%" height="15" fill="rgb(252,70,29)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="831.50"></text></g><g><title>PosixSemaphore::wait (127 samples, 0.06%)</title><rect x="35.8838%" y="805" width="0.0570%" height="15" fill="rgb(232,127,12)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="815.50"></text></g><g><title>__new_sem_wait_slow (127 samples, 0.06%)</title><rect x="35.8838%" y="789" width="0.0570%" height="15" fill="rgb(211,180,21)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="799.50"></text></g><g><title>do_futex_wait (127 samples, 0.06%)</title><rect x="35.8838%" y="773" width="0.0570%" height="15" fill="rgb(229,72,13)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (127 samples, 0.06%)</title><rect x="35.8838%" y="757" width="0.0570%" height="15" fill="rgb(240,211,49)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (127 samples, 0.06%)</title><rect x="35.8838%" y="741" width="0.0570%" height="15" fill="rgb(219,149,40)" fg:x="79942" fg:w="127"/><text x="36.1338%" y="751.50"></text></g><g><title>GC_Thread#0 (502 samples, 0.23%)</title><rect x="35.7160%" y="917" width="0.2253%" height="15" fill="rgb(210,127,46)" fg:x="79568" fg:w="502"/><text x="35.9660%" y="927.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (27 samples, 0.01%)</title><rect x="35.9574%" y="773" width="0.0121%" height="15" fill="rgb(220,106,7)" fg:x="80106" fg:w="27"/><text x="36.2074%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue (39 samples, 0.02%)</title><rect x="35.9525%" y="789" width="0.0175%" height="15" fill="rgb(249,31,22)" fg:x="80095" fg:w="39"/><text x="36.2025%" y="799.50"></text></g><g><title>SpinPause (35 samples, 0.02%)</title><rect x="35.9714%" y="789" width="0.0157%" height="15" fill="rgb(253,1,49)" fg:x="80137" fg:w="35"/><text x="36.2214%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (82 samples, 0.04%)</title><rect x="35.9507%" y="805" width="0.0368%" height="15" fill="rgb(227,144,33)" fg:x="80091" fg:w="82"/><text x="36.2007%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (36 samples, 0.02%)</title><rect x="35.9898%" y="805" width="0.0162%" height="15" fill="rgb(249,163,44)" fg:x="80178" fg:w="36"/><text x="36.2398%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (36 samples, 0.02%)</title><rect x="35.9898%" y="789" width="0.0162%" height="15" fill="rgb(234,15,39)" fg:x="80178" fg:w="36"/><text x="36.2398%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (36 samples, 0.02%)</title><rect x="35.9898%" y="773" width="0.0162%" height="15" fill="rgb(207,66,16)" fg:x="80178" fg:w="36"/><text x="36.2398%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (29 samples, 0.01%)</title><rect x="36.0221%" y="693" width="0.0130%" height="15" fill="rgb(233,112,24)" fg:x="80250" fg:w="29"/><text x="36.2721%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (24 samples, 0.01%)</title><rect x="36.0243%" y="677" width="0.0108%" height="15" fill="rgb(230,90,22)" fg:x="80255" fg:w="24"/><text x="36.2743%" y="687.50"></text></g><g><title>HandleArea::oops_do (47 samples, 0.02%)</title><rect x="36.0154%" y="725" width="0.0211%" height="15" fill="rgb(229,61,13)" fg:x="80235" fg:w="47"/><text x="36.2654%" y="735.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (35 samples, 0.02%)</title><rect x="36.0207%" y="709" width="0.0157%" height="15" fill="rgb(225,57,24)" fg:x="80247" fg:w="35"/><text x="36.2707%" y="719.50"></text></g><g><title>G1RootProcessor::process_java_roots (82 samples, 0.04%)</title><rect x="36.0140%" y="789" width="0.0368%" height="15" fill="rgb(208,169,48)" fg:x="80232" fg:w="82"/><text x="36.2640%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (82 samples, 0.04%)</title><rect x="36.0140%" y="773" width="0.0368%" height="15" fill="rgb(244,218,51)" fg:x="80232" fg:w="82"/><text x="36.2640%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (82 samples, 0.04%)</title><rect x="36.0140%" y="757" width="0.0368%" height="15" fill="rgb(214,148,10)" fg:x="80232" fg:w="82"/><text x="36.2640%" y="767.50"></text></g><g><title>JavaThread::oops_do (81 samples, 0.04%)</title><rect x="36.0145%" y="741" width="0.0364%" height="15" fill="rgb(225,174,27)" fg:x="80233" fg:w="81"/><text x="36.2645%" y="751.50"></text></g><g><title>G1ParTask::work (247 samples, 0.11%)</title><rect x="35.9507%" y="821" width="0.1109%" height="15" fill="rgb(230,96,26)" fg:x="80091" fg:w="247"/><text x="36.2007%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (124 samples, 0.06%)</title><rect x="36.0059%" y="805" width="0.0557%" height="15" fill="rgb(232,10,30)" fg:x="80214" fg:w="124"/><text x="36.2559%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (39 samples, 0.02%)</title><rect x="36.0638%" y="821" width="0.0175%" height="15" fill="rgb(222,8,50)" fg:x="80343" fg:w="39"/><text x="36.3138%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (36 samples, 0.02%)</title><rect x="36.0652%" y="805" width="0.0162%" height="15" fill="rgb(213,81,27)" fg:x="80346" fg:w="36"/><text x="36.3152%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (36 samples, 0.02%)</title><rect x="36.0652%" y="789" width="0.0162%" height="15" fill="rgb(245,50,10)" fg:x="80346" fg:w="36"/><text x="36.3152%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (36 samples, 0.02%)</title><rect x="36.0652%" y="773" width="0.0162%" height="15" fill="rgb(216,100,18)" fg:x="80346" fg:w="36"/><text x="36.3152%" y="783.50"></text></g><g><title>SpinPause (35 samples, 0.02%)</title><rect x="36.0656%" y="757" width="0.0157%" height="15" fill="rgb(236,147,54)" fg:x="80347" fg:w="35"/><text x="36.3156%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (27 samples, 0.01%)</title><rect x="36.0818%" y="821" width="0.0121%" height="15" fill="rgb(205,143,26)" fg:x="80383" fg:w="27"/><text x="36.3318%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (24 samples, 0.01%)</title><rect x="36.0831%" y="805" width="0.0108%" height="15" fill="rgb(236,26,9)" fg:x="80386" fg:w="24"/><text x="36.3331%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.04%)</title><rect x="36.1002%" y="597" width="0.0382%" height="15" fill="rgb(221,165,53)" fg:x="80424" fg:w="85"/><text x="36.3502%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.04%)</title><rect x="36.1006%" y="581" width="0.0377%" height="15" fill="rgb(214,110,17)" fg:x="80425" fg:w="84"/><text x="36.3506%" y="591.50"></text></g><g><title>native_write_msr (84 samples, 0.04%)</title><rect x="36.1006%" y="565" width="0.0377%" height="15" fill="rgb(237,197,12)" fg:x="80425" fg:w="84"/><text x="36.3506%" y="575.50"></text></g><g><title>finish_task_switch (88 samples, 0.04%)</title><rect x="36.0993%" y="613" width="0.0395%" height="15" fill="rgb(205,84,17)" fg:x="80422" fg:w="88"/><text x="36.3493%" y="623.50"></text></g><g><title>futex_wait_queue_me (96 samples, 0.04%)</title><rect x="36.0966%" y="661" width="0.0431%" height="15" fill="rgb(237,18,45)" fg:x="80416" fg:w="96"/><text x="36.3466%" y="671.50"></text></g><g><title>schedule (95 samples, 0.04%)</title><rect x="36.0970%" y="645" width="0.0426%" height="15" fill="rgb(221,87,14)" fg:x="80417" fg:w="95"/><text x="36.3470%" y="655.50"></text></g><g><title>__schedule (95 samples, 0.04%)</title><rect x="36.0970%" y="629" width="0.0426%" height="15" fill="rgb(238,186,15)" fg:x="80417" fg:w="95"/><text x="36.3470%" y="639.50"></text></g><g><title>do_syscall_64 (99 samples, 0.04%)</title><rect x="36.0961%" y="725" width="0.0444%" height="15" fill="rgb(208,115,11)" fg:x="80415" fg:w="99"/><text x="36.3461%" y="735.50"></text></g><g><title>__x64_sys_futex (99 samples, 0.04%)</title><rect x="36.0961%" y="709" width="0.0444%" height="15" fill="rgb(254,175,0)" fg:x="80415" fg:w="99"/><text x="36.3461%" y="719.50"></text></g><g><title>do_futex (99 samples, 0.04%)</title><rect x="36.0961%" y="693" width="0.0444%" height="15" fill="rgb(227,24,42)" fg:x="80415" fg:w="99"/><text x="36.3461%" y="703.50"></text></g><g><title>futex_wait (98 samples, 0.04%)</title><rect x="36.0966%" y="677" width="0.0440%" height="15" fill="rgb(223,211,37)" fg:x="80416" fg:w="98"/><text x="36.3466%" y="687.50"></text></g><g><title>GC_Thread#1 (447 samples, 0.20%)</title><rect x="35.9413%" y="917" width="0.2006%" height="15" fill="rgb(235,49,27)" fg:x="80070" fg:w="447"/><text x="36.1913%" y="927.50"></text></g><g><title>__GI___clone (438 samples, 0.20%)</title><rect x="35.9453%" y="901" width="0.1966%" height="15" fill="rgb(254,97,51)" fg:x="80079" fg:w="438"/><text x="36.1953%" y="911.50"></text></g><g><title>start_thread (438 samples, 0.20%)</title><rect x="35.9453%" y="885" width="0.1966%" height="15" fill="rgb(249,51,40)" fg:x="80079" fg:w="438"/><text x="36.1953%" y="895.50"></text></g><g><title>thread_native_entry (438 samples, 0.20%)</title><rect x="35.9453%" y="869" width="0.1966%" height="15" fill="rgb(210,128,45)" fg:x="80079" fg:w="438"/><text x="36.1953%" y="879.50"></text></g><g><title>Thread::call_run (438 samples, 0.20%)</title><rect x="35.9453%" y="853" width="0.1966%" height="15" fill="rgb(224,137,50)" fg:x="80079" fg:w="438"/><text x="36.1953%" y="863.50"></text></g><g><title>GangWorker::loop (438 samples, 0.20%)</title><rect x="35.9453%" y="837" width="0.1966%" height="15" fill="rgb(242,15,9)" fg:x="80079" fg:w="438"/><text x="36.1953%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (105 samples, 0.05%)</title><rect x="36.0948%" y="821" width="0.0471%" height="15" fill="rgb(233,187,41)" fg:x="80412" fg:w="105"/><text x="36.3448%" y="831.50"></text></g><g><title>PosixSemaphore::wait (105 samples, 0.05%)</title><rect x="36.0948%" y="805" width="0.0471%" height="15" fill="rgb(227,2,29)" fg:x="80412" fg:w="105"/><text x="36.3448%" y="815.50"></text></g><g><title>__new_sem_wait_slow (104 samples, 0.05%)</title><rect x="36.0953%" y="789" width="0.0467%" height="15" fill="rgb(222,70,3)" fg:x="80413" fg:w="104"/><text x="36.3453%" y="799.50"></text></g><g><title>do_futex_wait (102 samples, 0.05%)</title><rect x="36.0961%" y="773" width="0.0458%" height="15" fill="rgb(213,11,42)" fg:x="80415" fg:w="102"/><text x="36.3461%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (102 samples, 0.05%)</title><rect x="36.0961%" y="757" width="0.0458%" height="15" fill="rgb(225,150,9)" fg:x="80415" fg:w="102"/><text x="36.3461%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.05%)</title><rect x="36.0961%" y="741" width="0.0458%" height="15" fill="rgb(230,162,45)" fg:x="80415" fg:w="102"/><text x="36.3461%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (32 samples, 0.01%)</title><rect x="36.1487%" y="789" width="0.0144%" height="15" fill="rgb(222,14,52)" fg:x="80532" fg:w="32"/><text x="36.3987%" y="799.50"></text></g><g><title>SpinPause (101 samples, 0.05%)</title><rect x="36.1639%" y="789" width="0.0453%" height="15" fill="rgb(254,198,14)" fg:x="80566" fg:w="101"/><text x="36.4139%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (144 samples, 0.06%)</title><rect x="36.1455%" y="805" width="0.0646%" height="15" fill="rgb(220,217,30)" fg:x="80525" fg:w="144"/><text x="36.3955%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (27 samples, 0.01%)</title><rect x="36.2102%" y="725" width="0.0121%" height="15" fill="rgb(215,146,41)" fg:x="80669" fg:w="27"/><text x="36.4602%" y="735.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (31 samples, 0.01%)</title><rect x="36.2102%" y="805" width="0.0139%" height="15" fill="rgb(217,27,36)" fg:x="80669" fg:w="31"/><text x="36.4602%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (31 samples, 0.01%)</title><rect x="36.2102%" y="789" width="0.0139%" height="15" fill="rgb(219,218,39)" fg:x="80669" fg:w="31"/><text x="36.4602%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (31 samples, 0.01%)</title><rect x="36.2102%" y="773" width="0.0139%" height="15" fill="rgb(219,4,42)" fg:x="80669" fg:w="31"/><text x="36.4602%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (31 samples, 0.01%)</title><rect x="36.2102%" y="757" width="0.0139%" height="15" fill="rgb(249,119,36)" fg:x="80669" fg:w="31"/><text x="36.4602%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (31 samples, 0.01%)</title><rect x="36.2102%" y="741" width="0.0139%" height="15" fill="rgb(209,23,33)" fg:x="80669" fg:w="31"/><text x="36.4602%" y="751.50"></text></g><g><title>G1RemSet::scan_rem_set (32 samples, 0.01%)</title><rect x="36.2241%" y="805" width="0.0144%" height="15" fill="rgb(211,10,0)" fg:x="80700" fg:w="32"/><text x="36.4741%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (32 samples, 0.01%)</title><rect x="36.2241%" y="789" width="0.0144%" height="15" fill="rgb(208,99,37)" fg:x="80700" fg:w="32"/><text x="36.4741%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (32 samples, 0.01%)</title><rect x="36.2241%" y="773" width="0.0144%" height="15" fill="rgb(213,132,31)" fg:x="80700" fg:w="32"/><text x="36.4741%" y="783.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (114 samples, 0.05%)</title><rect x="36.2393%" y="773" width="0.0512%" height="15" fill="rgb(243,129,40)" fg:x="80734" fg:w="114"/><text x="36.4893%" y="783.50"></text></g><g><title>G1CLDScanClosure::do_cld (111 samples, 0.05%)</title><rect x="36.2407%" y="757" width="0.0498%" height="15" fill="rgb(210,66,33)" fg:x="80737" fg:w="111"/><text x="36.4907%" y="767.50"></text></g><g><title>ClassLoaderData::oops_do (111 samples, 0.05%)</title><rect x="36.2407%" y="741" width="0.0498%" height="15" fill="rgb(209,189,4)" fg:x="80737" fg:w="111"/><text x="36.4907%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (91 samples, 0.04%)</title><rect x="36.2497%" y="725" width="0.0408%" height="15" fill="rgb(214,107,37)" fg:x="80757" fg:w="91"/><text x="36.4997%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (70 samples, 0.03%)</title><rect x="36.2591%" y="709" width="0.0314%" height="15" fill="rgb(245,88,54)" fg:x="80778" fg:w="70"/><text x="36.5091%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (59 samples, 0.03%)</title><rect x="36.2640%" y="693" width="0.0265%" height="15" fill="rgb(205,146,20)" fg:x="80789" fg:w="59"/><text x="36.5140%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (134 samples, 0.06%)</title><rect x="36.2393%" y="789" width="0.0601%" height="15" fill="rgb(220,161,25)" fg:x="80734" fg:w="134"/><text x="36.4893%" y="799.50"></text></g><g><title>G1ParTask::work (351 samples, 0.16%)</title><rect x="36.1455%" y="821" width="0.1576%" height="15" fill="rgb(215,152,15)" fg:x="80525" fg:w="351"/><text x="36.3955%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (144 samples, 0.06%)</title><rect x="36.2384%" y="805" width="0.0646%" height="15" fill="rgb(233,192,44)" fg:x="80732" fg:w="144"/><text x="36.4884%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (43 samples, 0.02%)</title><rect x="36.3107%" y="821" width="0.0193%" height="15" fill="rgb(240,170,46)" fg:x="80893" fg:w="43"/><text x="36.5607%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (34 samples, 0.02%)</title><rect x="36.3147%" y="805" width="0.0153%" height="15" fill="rgb(207,104,33)" fg:x="80902" fg:w="34"/><text x="36.5647%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (34 samples, 0.02%)</title><rect x="36.3147%" y="789" width="0.0153%" height="15" fill="rgb(219,21,39)" fg:x="80902" fg:w="34"/><text x="36.5647%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (34 samples, 0.02%)</title><rect x="36.3147%" y="773" width="0.0153%" height="15" fill="rgb(214,133,29)" fg:x="80902" fg:w="34"/><text x="36.5647%" y="783.50"></text></g><g><title>SpinPause (34 samples, 0.02%)</title><rect x="36.3147%" y="757" width="0.0153%" height="15" fill="rgb(226,93,6)" fg:x="80902" fg:w="34"/><text x="36.5647%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (26 samples, 0.01%)</title><rect x="36.3305%" y="821" width="0.0117%" height="15" fill="rgb(252,222,34)" fg:x="80937" fg:w="26"/><text x="36.5805%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (25 samples, 0.01%)</title><rect x="36.3309%" y="805" width="0.0112%" height="15" fill="rgb(252,92,48)" fg:x="80938" fg:w="25"/><text x="36.5809%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (105 samples, 0.05%)</title><rect x="36.3493%" y="597" width="0.0471%" height="15" fill="rgb(245,223,24)" fg:x="80979" fg:w="105"/><text x="36.5993%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (102 samples, 0.05%)</title><rect x="36.3507%" y="581" width="0.0458%" height="15" fill="rgb(205,176,3)" fg:x="80982" fg:w="102"/><text x="36.6007%" y="591.50"></text></g><g><title>native_write_msr (101 samples, 0.05%)</title><rect x="36.3511%" y="565" width="0.0453%" height="15" fill="rgb(235,151,15)" fg:x="80983" fg:w="101"/><text x="36.6011%" y="575.50"></text></g><g><title>finish_task_switch (110 samples, 0.05%)</title><rect x="36.3480%" y="613" width="0.0494%" height="15" fill="rgb(237,209,11)" fg:x="80976" fg:w="110"/><text x="36.5980%" y="623.50"></text></g><g><title>futex_wait_queue_me (122 samples, 0.05%)</title><rect x="36.3462%" y="661" width="0.0548%" height="15" fill="rgb(243,227,24)" fg:x="80972" fg:w="122"/><text x="36.5962%" y="671.50"></text></g><g><title>schedule (122 samples, 0.05%)</title><rect x="36.3462%" y="645" width="0.0548%" height="15" fill="rgb(239,193,16)" fg:x="80972" fg:w="122"/><text x="36.5962%" y="655.50"></text></g><g><title>__schedule (122 samples, 0.05%)</title><rect x="36.3462%" y="629" width="0.0548%" height="15" fill="rgb(231,27,9)" fg:x="80972" fg:w="122"/><text x="36.5962%" y="639.50"></text></g><g><title>do_syscall_64 (125 samples, 0.06%)</title><rect x="36.3453%" y="725" width="0.0561%" height="15" fill="rgb(219,169,10)" fg:x="80970" fg:w="125"/><text x="36.5953%" y="735.50"></text></g><g><title>__x64_sys_futex (125 samples, 0.06%)</title><rect x="36.3453%" y="709" width="0.0561%" height="15" fill="rgb(244,229,43)" fg:x="80970" fg:w="125"/><text x="36.5953%" y="719.50"></text></g><g><title>do_futex (125 samples, 0.06%)</title><rect x="36.3453%" y="693" width="0.0561%" height="15" fill="rgb(254,38,20)" fg:x="80970" fg:w="125"/><text x="36.5953%" y="703.50"></text></g><g><title>futex_wait (123 samples, 0.06%)</title><rect x="36.3462%" y="677" width="0.0552%" height="15" fill="rgb(250,47,30)" fg:x="80972" fg:w="123"/><text x="36.5962%" y="687.50"></text></g><g><title>__GI___clone (573 samples, 0.26%)</title><rect x="36.1446%" y="901" width="0.2572%" height="15" fill="rgb(224,124,36)" fg:x="80523" fg:w="573"/><text x="36.3946%" y="911.50"></text></g><g><title>start_thread (573 samples, 0.26%)</title><rect x="36.1446%" y="885" width="0.2572%" height="15" fill="rgb(246,68,51)" fg:x="80523" fg:w="573"/><text x="36.3946%" y="895.50"></text></g><g><title>thread_native_entry (573 samples, 0.26%)</title><rect x="36.1446%" y="869" width="0.2572%" height="15" fill="rgb(253,43,49)" fg:x="80523" fg:w="573"/><text x="36.3946%" y="879.50"></text></g><g><title>Thread::call_run (573 samples, 0.26%)</title><rect x="36.1446%" y="853" width="0.2572%" height="15" fill="rgb(219,54,36)" fg:x="80523" fg:w="573"/><text x="36.3946%" y="863.50"></text></g><g><title>GangWorker::loop (573 samples, 0.26%)</title><rect x="36.1446%" y="837" width="0.2572%" height="15" fill="rgb(227,133,34)" fg:x="80523" fg:w="573"/><text x="36.3946%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (129 samples, 0.06%)</title><rect x="36.3439%" y="821" width="0.0579%" height="15" fill="rgb(247,227,15)" fg:x="80967" fg:w="129"/><text x="36.5939%" y="831.50"></text></g><g><title>PosixSemaphore::wait (129 samples, 0.06%)</title><rect x="36.3439%" y="805" width="0.0579%" height="15" fill="rgb(229,96,14)" fg:x="80967" fg:w="129"/><text x="36.5939%" y="815.50"></text></g><g><title>__new_sem_wait_slow (129 samples, 0.06%)</title><rect x="36.3439%" y="789" width="0.0579%" height="15" fill="rgb(220,79,17)" fg:x="80967" fg:w="129"/><text x="36.5939%" y="799.50"></text></g><g><title>do_futex_wait (129 samples, 0.06%)</title><rect x="36.3439%" y="773" width="0.0579%" height="15" fill="rgb(205,131,53)" fg:x="80967" fg:w="129"/><text x="36.5939%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (129 samples, 0.06%)</title><rect x="36.3439%" y="757" width="0.0579%" height="15" fill="rgb(209,50,29)" fg:x="80967" fg:w="129"/><text x="36.5939%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (127 samples, 0.06%)</title><rect x="36.3448%" y="741" width="0.0570%" height="15" fill="rgb(245,86,46)" fg:x="80969" fg:w="127"/><text x="36.5948%" y="751.50"></text></g><g><title>GC_Thread#2 (581 samples, 0.26%)</title><rect x="36.1419%" y="917" width="0.2608%" height="15" fill="rgb(235,66,46)" fg:x="80517" fg:w="581"/><text x="36.3919%" y="927.50"></text></g><g><title>G1ParScanThreadState::trim_queue (25 samples, 0.01%)</title><rect x="36.4140%" y="789" width="0.0112%" height="15" fill="rgb(232,148,31)" fg:x="81123" fg:w="25"/><text x="36.6640%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (126 samples, 0.06%)</title><rect x="36.4113%" y="805" width="0.0566%" height="15" fill="rgb(217,149,8)" fg:x="81117" fg:w="126"/><text x="36.6613%" y="815.50"></text></g><g><title>SpinPause (93 samples, 0.04%)</title><rect x="36.4261%" y="789" width="0.0417%" height="15" fill="rgb(209,183,11)" fg:x="81150" fg:w="93"/><text x="36.6761%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (34 samples, 0.02%)</title><rect x="36.4934%" y="709" width="0.0153%" height="15" fill="rgb(208,55,20)" fg:x="81300" fg:w="34"/><text x="36.7434%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (30 samples, 0.01%)</title><rect x="36.4952%" y="693" width="0.0135%" height="15" fill="rgb(218,39,14)" fg:x="81304" fg:w="30"/><text x="36.7452%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (50 samples, 0.02%)</title><rect x="36.4867%" y="741" width="0.0224%" height="15" fill="rgb(216,169,33)" fg:x="81285" fg:w="50"/><text x="36.7367%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (41 samples, 0.02%)</title><rect x="36.4907%" y="725" width="0.0184%" height="15" fill="rgb(233,80,24)" fg:x="81294" fg:w="41"/><text x="36.7407%" y="735.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (51 samples, 0.02%)</title><rect x="36.4867%" y="773" width="0.0229%" height="15" fill="rgb(213,179,31)" fg:x="81285" fg:w="51"/><text x="36.7367%" y="783.50"></text></g><g><title>G1CLDScanClosure::do_cld (51 samples, 0.02%)</title><rect x="36.4867%" y="757" width="0.0229%" height="15" fill="rgb(209,19,5)" fg:x="81285" fg:w="51"/><text x="36.7367%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (31 samples, 0.01%)</title><rect x="36.5096%" y="757" width="0.0139%" height="15" fill="rgb(219,18,35)" fg:x="81336" fg:w="31"/><text x="36.7596%" y="767.50"></text></g><g><title>JavaThread::oops_do (31 samples, 0.01%)</title><rect x="36.5096%" y="741" width="0.0139%" height="15" fill="rgb(209,169,16)" fg:x="81336" fg:w="31"/><text x="36.7596%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (83 samples, 0.04%)</title><rect x="36.4867%" y="789" width="0.0373%" height="15" fill="rgb(245,90,51)" fg:x="81285" fg:w="83"/><text x="36.7367%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (32 samples, 0.01%)</title><rect x="36.5096%" y="773" width="0.0144%" height="15" fill="rgb(220,99,45)" fg:x="81336" fg:w="32"/><text x="36.7596%" y="783.50"></text></g><g><title>G1RootProcessor::process_vm_roots (27 samples, 0.01%)</title><rect x="36.5239%" y="789" width="0.0121%" height="15" fill="rgb(249,89,25)" fg:x="81368" fg:w="27"/><text x="36.7739%" y="799.50"></text></g><g><title>G1ParTask::work (288 samples, 0.13%)</title><rect x="36.4113%" y="821" width="0.1293%" height="15" fill="rgb(239,193,0)" fg:x="81117" fg:w="288"/><text x="36.6613%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (121 samples, 0.05%)</title><rect x="36.4862%" y="805" width="0.0543%" height="15" fill="rgb(231,126,1)" fg:x="81284" fg:w="121"/><text x="36.7362%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (34 samples, 0.02%)</title><rect x="36.5423%" y="821" width="0.0153%" height="15" fill="rgb(243,166,3)" fg:x="81409" fg:w="34"/><text x="36.7923%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (32 samples, 0.01%)</title><rect x="36.5432%" y="805" width="0.0144%" height="15" fill="rgb(223,22,34)" fg:x="81411" fg:w="32"/><text x="36.7932%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (32 samples, 0.01%)</title><rect x="36.5432%" y="789" width="0.0144%" height="15" fill="rgb(251,52,51)" fg:x="81411" fg:w="32"/><text x="36.7932%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (32 samples, 0.01%)</title><rect x="36.5432%" y="773" width="0.0144%" height="15" fill="rgb(221,165,28)" fg:x="81411" fg:w="32"/><text x="36.7932%" y="783.50"></text></g><g><title>SpinPause (32 samples, 0.01%)</title><rect x="36.5432%" y="757" width="0.0144%" height="15" fill="rgb(218,121,47)" fg:x="81411" fg:w="32"/><text x="36.7932%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (32 samples, 0.01%)</title><rect x="36.5580%" y="821" width="0.0144%" height="15" fill="rgb(209,120,9)" fg:x="81444" fg:w="32"/><text x="36.8080%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (28 samples, 0.01%)</title><rect x="36.5598%" y="805" width="0.0126%" height="15" fill="rgb(236,68,12)" fg:x="81448" fg:w="28"/><text x="36.8098%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.03%)</title><rect x="36.5782%" y="597" width="0.0328%" height="15" fill="rgb(225,194,26)" fg:x="81489" fg:w="73"/><text x="36.8282%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.03%)</title><rect x="36.5800%" y="581" width="0.0310%" height="15" fill="rgb(231,84,39)" fg:x="81493" fg:w="69"/><text x="36.8300%" y="591.50"></text></g><g><title>native_write_msr (68 samples, 0.03%)</title><rect x="36.5805%" y="565" width="0.0305%" height="15" fill="rgb(210,11,45)" fg:x="81494" fg:w="68"/><text x="36.8305%" y="575.50"></text></g><g><title>finish_task_switch (75 samples, 0.03%)</title><rect x="36.5782%" y="613" width="0.0337%" height="15" fill="rgb(224,54,52)" fg:x="81489" fg:w="75"/><text x="36.8282%" y="623.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.04%)</title><rect x="36.5742%" y="661" width="0.0395%" height="15" fill="rgb(238,102,14)" fg:x="81480" fg:w="88"/><text x="36.8242%" y="671.50"></text></g><g><title>schedule (86 samples, 0.04%)</title><rect x="36.5751%" y="645" width="0.0386%" height="15" fill="rgb(243,160,52)" fg:x="81482" fg:w="86"/><text x="36.8251%" y="655.50"></text></g><g><title>__schedule (85 samples, 0.04%)</title><rect x="36.5755%" y="629" width="0.0382%" height="15" fill="rgb(216,114,19)" fg:x="81483" fg:w="85"/><text x="36.8255%" y="639.50"></text></g><g><title>do_syscall_64 (91 samples, 0.04%)</title><rect x="36.5733%" y="725" width="0.0408%" height="15" fill="rgb(244,166,37)" fg:x="81478" fg:w="91"/><text x="36.8233%" y="735.50"></text></g><g><title>__x64_sys_futex (91 samples, 0.04%)</title><rect x="36.5733%" y="709" width="0.0408%" height="15" fill="rgb(246,29,44)" fg:x="81478" fg:w="91"/><text x="36.8233%" y="719.50"></text></g><g><title>do_futex (91 samples, 0.04%)</title><rect x="36.5733%" y="693" width="0.0408%" height="15" fill="rgb(215,56,53)" fg:x="81478" fg:w="91"/><text x="36.8233%" y="703.50"></text></g><g><title>futex_wait (91 samples, 0.04%)</title><rect x="36.5733%" y="677" width="0.0408%" height="15" fill="rgb(217,60,2)" fg:x="81478" fg:w="91"/><text x="36.8233%" y="687.50"></text></g><g><title>GC_Thread#3 (473 samples, 0.21%)</title><rect x="36.4027%" y="917" width="0.2123%" height="15" fill="rgb(207,26,24)" fg:x="81098" fg:w="473"/><text x="36.6527%" y="927.50"></text></g><g><title>__GI___clone (459 samples, 0.21%)</title><rect x="36.4090%" y="901" width="0.2060%" height="15" fill="rgb(252,210,15)" fg:x="81112" fg:w="459"/><text x="36.6590%" y="911.50"></text></g><g><title>start_thread (459 samples, 0.21%)</title><rect x="36.4090%" y="885" width="0.2060%" height="15" fill="rgb(253,209,26)" fg:x="81112" fg:w="459"/><text x="36.6590%" y="895.50"></text></g><g><title>thread_native_entry (459 samples, 0.21%)</title><rect x="36.4090%" y="869" width="0.2060%" height="15" fill="rgb(238,170,14)" fg:x="81112" fg:w="459"/><text x="36.6590%" y="879.50"></text></g><g><title>Thread::call_run (459 samples, 0.21%)</title><rect x="36.4090%" y="853" width="0.2060%" height="15" fill="rgb(216,178,15)" fg:x="81112" fg:w="459"/><text x="36.6590%" y="863.50"></text></g><g><title>GangWorker::loop (459 samples, 0.21%)</title><rect x="36.4090%" y="837" width="0.2060%" height="15" fill="rgb(250,197,2)" fg:x="81112" fg:w="459"/><text x="36.6590%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (95 samples, 0.04%)</title><rect x="36.5724%" y="821" width="0.0426%" height="15" fill="rgb(212,70,42)" fg:x="81476" fg:w="95"/><text x="36.8224%" y="831.50"></text></g><g><title>PosixSemaphore::wait (94 samples, 0.04%)</title><rect x="36.5729%" y="805" width="0.0422%" height="15" fill="rgb(227,213,9)" fg:x="81477" fg:w="94"/><text x="36.8229%" y="815.50"></text></g><g><title>__new_sem_wait_slow (94 samples, 0.04%)</title><rect x="36.5729%" y="789" width="0.0422%" height="15" fill="rgb(245,99,25)" fg:x="81477" fg:w="94"/><text x="36.8229%" y="799.50"></text></g><g><title>do_futex_wait (93 samples, 0.04%)</title><rect x="36.5733%" y="773" width="0.0417%" height="15" fill="rgb(250,82,29)" fg:x="81478" fg:w="93"/><text x="36.8233%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (93 samples, 0.04%)</title><rect x="36.5733%" y="757" width="0.0417%" height="15" fill="rgb(241,226,54)" fg:x="81478" fg:w="93"/><text x="36.8233%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.04%)</title><rect x="36.5733%" y="741" width="0.0417%" height="15" fill="rgb(221,99,41)" fg:x="81478" fg:w="93"/><text x="36.8233%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (31 samples, 0.01%)</title><rect x="36.6335%" y="773" width="0.0139%" height="15" fill="rgb(213,90,21)" fg:x="81612" fg:w="31"/><text x="36.8835%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue (45 samples, 0.02%)</title><rect x="36.6285%" y="789" width="0.0202%" height="15" fill="rgb(205,208,24)" fg:x="81601" fg:w="45"/><text x="36.8785%" y="799.50"></text></g><g><title>SpinPause (80 samples, 0.04%)</title><rect x="36.6505%" y="789" width="0.0359%" height="15" fill="rgb(246,31,12)" fg:x="81650" fg:w="80"/><text x="36.9005%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (140 samples, 0.06%)</title><rect x="36.6249%" y="805" width="0.0628%" height="15" fill="rgb(213,154,6)" fg:x="81593" fg:w="140"/><text x="36.8749%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (32 samples, 0.01%)</title><rect x="36.6882%" y="725" width="0.0144%" height="15" fill="rgb(222,163,29)" fg:x="81734" fg:w="32"/><text x="36.9382%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (23 samples, 0.01%)</title><rect x="36.6923%" y="709" width="0.0103%" height="15" fill="rgb(227,201,8)" fg:x="81743" fg:w="23"/><text x="36.9423%" y="719.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (36 samples, 0.02%)</title><rect x="36.6882%" y="805" width="0.0162%" height="15" fill="rgb(233,9,32)" fg:x="81734" fg:w="36"/><text x="36.9382%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (36 samples, 0.02%)</title><rect x="36.6882%" y="789" width="0.0162%" height="15" fill="rgb(217,54,24)" fg:x="81734" fg:w="36"/><text x="36.9382%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (36 samples, 0.02%)</title><rect x="36.6882%" y="773" width="0.0162%" height="15" fill="rgb(235,192,0)" fg:x="81734" fg:w="36"/><text x="36.9382%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (36 samples, 0.02%)</title><rect x="36.6882%" y="757" width="0.0162%" height="15" fill="rgb(235,45,9)" fg:x="81734" fg:w="36"/><text x="36.9382%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (36 samples, 0.02%)</title><rect x="36.6882%" y="741" width="0.0162%" height="15" fill="rgb(246,42,40)" fg:x="81734" fg:w="36"/><text x="36.9382%" y="751.50"></text></g><g><title>G1RemSet::scan_rem_set (31 samples, 0.01%)</title><rect x="36.7044%" y="805" width="0.0139%" height="15" fill="rgb(248,111,24)" fg:x="81770" fg:w="31"/><text x="36.9544%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (31 samples, 0.01%)</title><rect x="36.7044%" y="789" width="0.0139%" height="15" fill="rgb(249,65,22)" fg:x="81770" fg:w="31"/><text x="36.9544%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (31 samples, 0.01%)</title><rect x="36.7044%" y="773" width="0.0139%" height="15" fill="rgb(238,111,51)" fg:x="81770" fg:w="31"/><text x="36.9544%" y="783.50"></text></g><g><title>InterpreterOopMap::iterate_oop (30 samples, 0.01%)</title><rect x="36.7362%" y="709" width="0.0135%" height="15" fill="rgb(250,118,22)" fg:x="81841" fg:w="30"/><text x="36.9862%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (28 samples, 0.01%)</title><rect x="36.7371%" y="693" width="0.0126%" height="15" fill="rgb(234,84,26)" fg:x="81843" fg:w="28"/><text x="36.9871%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (76 samples, 0.03%)</title><rect x="36.7187%" y="789" width="0.0341%" height="15" fill="rgb(243,172,12)" fg:x="81802" fg:w="76"/><text x="36.9687%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (76 samples, 0.03%)</title><rect x="36.7187%" y="773" width="0.0341%" height="15" fill="rgb(236,150,49)" fg:x="81802" fg:w="76"/><text x="36.9687%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (76 samples, 0.03%)</title><rect x="36.7187%" y="757" width="0.0341%" height="15" fill="rgb(225,197,26)" fg:x="81802" fg:w="76"/><text x="36.9687%" y="767.50"></text></g><g><title>JavaThread::oops_do (76 samples, 0.03%)</title><rect x="36.7187%" y="741" width="0.0341%" height="15" fill="rgb(214,17,42)" fg:x="81802" fg:w="76"/><text x="36.9687%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (50 samples, 0.02%)</title><rect x="36.7304%" y="725" width="0.0224%" height="15" fill="rgb(224,165,40)" fg:x="81828" fg:w="50"/><text x="36.9804%" y="735.50"></text></g><g><title>G1ParTask::work (300 samples, 0.13%)</title><rect x="36.6249%" y="821" width="0.1347%" height="15" fill="rgb(246,100,4)" fg:x="81593" fg:w="300"/><text x="36.8749%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (92 samples, 0.04%)</title><rect x="36.7183%" y="805" width="0.0413%" height="15" fill="rgb(222,103,0)" fg:x="81801" fg:w="92"/><text x="36.9683%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (33 samples, 0.01%)</title><rect x="36.7623%" y="821" width="0.0148%" height="15" fill="rgb(227,189,26)" fg:x="81899" fg:w="33"/><text x="37.0123%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (23 samples, 0.01%)</title><rect x="36.7668%" y="805" width="0.0103%" height="15" fill="rgb(214,202,17)" fg:x="81909" fg:w="23"/><text x="37.0168%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (23 samples, 0.01%)</title><rect x="36.7668%" y="789" width="0.0103%" height="15" fill="rgb(229,111,3)" fg:x="81909" fg:w="23"/><text x="37.0168%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (23 samples, 0.01%)</title><rect x="36.7668%" y="773" width="0.0103%" height="15" fill="rgb(229,172,15)" fg:x="81909" fg:w="23"/><text x="37.0168%" y="783.50"></text></g><g><title>ParallelSPCleanupTask::work (23 samples, 0.01%)</title><rect x="36.7789%" y="821" width="0.0103%" height="15" fill="rgb(230,224,35)" fg:x="81936" fg:w="23"/><text x="37.0289%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (23 samples, 0.01%)</title><rect x="36.7789%" y="805" width="0.0103%" height="15" fill="rgb(251,141,6)" fg:x="81936" fg:w="23"/><text x="37.0289%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.04%)</title><rect x="36.7946%" y="597" width="0.0377%" height="15" fill="rgb(225,208,6)" fg:x="81971" fg:w="84"/><text x="37.0446%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.04%)</title><rect x="36.7959%" y="581" width="0.0364%" height="15" fill="rgb(246,181,16)" fg:x="81974" fg:w="81"/><text x="37.0459%" y="591.50"></text></g><g><title>native_write_msr (81 samples, 0.04%)</title><rect x="36.7959%" y="565" width="0.0364%" height="15" fill="rgb(227,129,36)" fg:x="81974" fg:w="81"/><text x="37.0459%" y="575.50"></text></g><g><title>finish_task_switch (85 samples, 0.04%)</title><rect x="36.7946%" y="613" width="0.0382%" height="15" fill="rgb(248,117,24)" fg:x="81971" fg:w="85"/><text x="37.0446%" y="623.50"></text></g><g><title>futex_wait_queue_me (97 samples, 0.04%)</title><rect x="36.7915%" y="661" width="0.0435%" height="15" fill="rgb(214,185,35)" fg:x="81964" fg:w="97"/><text x="37.0415%" y="671.50"></text></g><g><title>schedule (94 samples, 0.04%)</title><rect x="36.7928%" y="645" width="0.0422%" height="15" fill="rgb(236,150,34)" fg:x="81967" fg:w="94"/><text x="37.0428%" y="655.50"></text></g><g><title>__schedule (94 samples, 0.04%)</title><rect x="36.7928%" y="629" width="0.0422%" height="15" fill="rgb(243,228,27)" fg:x="81967" fg:w="94"/><text x="37.0428%" y="639.50"></text></g><g><title>do_syscall_64 (100 samples, 0.04%)</title><rect x="36.7906%" y="725" width="0.0449%" height="15" fill="rgb(245,77,44)" fg:x="81962" fg:w="100"/><text x="37.0406%" y="735.50"></text></g><g><title>__x64_sys_futex (100 samples, 0.04%)</title><rect x="36.7906%" y="709" width="0.0449%" height="15" fill="rgb(235,214,42)" fg:x="81962" fg:w="100"/><text x="37.0406%" y="719.50"></text></g><g><title>do_futex (99 samples, 0.04%)</title><rect x="36.7910%" y="693" width="0.0444%" height="15" fill="rgb(221,74,3)" fg:x="81963" fg:w="99"/><text x="37.0410%" y="703.50"></text></g><g><title>futex_wait (98 samples, 0.04%)</title><rect x="36.7915%" y="677" width="0.0440%" height="15" fill="rgb(206,121,29)" fg:x="81964" fg:w="98"/><text x="37.0415%" y="687.50"></text></g><g><title>GC_Thread#4 (492 samples, 0.22%)</title><rect x="36.6150%" y="917" width="0.2208%" height="15" fill="rgb(249,131,53)" fg:x="81571" fg:w="492"/><text x="36.8650%" y="927.50"></text></g><g><title>__GI___clone (478 samples, 0.21%)</title><rect x="36.6213%" y="901" width="0.2146%" height="15" fill="rgb(236,170,29)" fg:x="81585" fg:w="478"/><text x="36.8713%" y="911.50"></text></g><g><title>start_thread (478 samples, 0.21%)</title><rect x="36.6213%" y="885" width="0.2146%" height="15" fill="rgb(247,96,15)" fg:x="81585" fg:w="478"/><text x="36.8713%" y="895.50"></text></g><g><title>thread_native_entry (478 samples, 0.21%)</title><rect x="36.6213%" y="869" width="0.2146%" height="15" fill="rgb(211,210,7)" fg:x="81585" fg:w="478"/><text x="36.8713%" y="879.50"></text></g><g><title>Thread::call_run (478 samples, 0.21%)</title><rect x="36.6213%" y="853" width="0.2146%" height="15" fill="rgb(240,88,50)" fg:x="81585" fg:w="478"/><text x="36.8713%" y="863.50"></text></g><g><title>GangWorker::loop (478 samples, 0.21%)</title><rect x="36.6213%" y="837" width="0.2146%" height="15" fill="rgb(209,229,26)" fg:x="81585" fg:w="478"/><text x="36.8713%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (103 samples, 0.05%)</title><rect x="36.7897%" y="821" width="0.0462%" height="15" fill="rgb(210,68,23)" fg:x="81960" fg:w="103"/><text x="37.0397%" y="831.50"></text></g><g><title>PosixSemaphore::wait (103 samples, 0.05%)</title><rect x="36.7897%" y="805" width="0.0462%" height="15" fill="rgb(229,180,13)" fg:x="81960" fg:w="103"/><text x="37.0397%" y="815.50"></text></g><g><title>__new_sem_wait_slow (103 samples, 0.05%)</title><rect x="36.7897%" y="789" width="0.0462%" height="15" fill="rgb(236,53,44)" fg:x="81960" fg:w="103"/><text x="37.0397%" y="799.50"></text></g><g><title>do_futex_wait (102 samples, 0.05%)</title><rect x="36.7901%" y="773" width="0.0458%" height="15" fill="rgb(244,214,29)" fg:x="81961" fg:w="102"/><text x="37.0401%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (102 samples, 0.05%)</title><rect x="36.7901%" y="757" width="0.0458%" height="15" fill="rgb(220,75,29)" fg:x="81961" fg:w="102"/><text x="37.0401%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (101 samples, 0.05%)</title><rect x="36.7906%" y="741" width="0.0453%" height="15" fill="rgb(214,183,37)" fg:x="81962" fg:w="101"/><text x="37.0406%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (34 samples, 0.02%)</title><rect x="36.8494%" y="789" width="0.0153%" height="15" fill="rgb(239,117,29)" fg:x="82093" fg:w="34"/><text x="37.0994%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (81 samples, 0.04%)</title><rect x="36.8449%" y="805" width="0.0364%" height="15" fill="rgb(237,171,35)" fg:x="82083" fg:w="81"/><text x="37.0949%" y="815.50"></text></g><g><title>SpinPause (34 samples, 0.02%)</title><rect x="36.8660%" y="789" width="0.0153%" height="15" fill="rgb(229,178,53)" fg:x="82130" fg:w="34"/><text x="37.1160%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (25 samples, 0.01%)</title><rect x="36.8812%" y="725" width="0.0112%" height="15" fill="rgb(210,102,19)" fg:x="82164" fg:w="25"/><text x="37.1312%" y="735.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (30 samples, 0.01%)</title><rect x="36.8812%" y="805" width="0.0135%" height="15" fill="rgb(235,127,22)" fg:x="82164" fg:w="30"/><text x="37.1312%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (30 samples, 0.01%)</title><rect x="36.8812%" y="789" width="0.0135%" height="15" fill="rgb(244,31,31)" fg:x="82164" fg:w="30"/><text x="37.1312%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (30 samples, 0.01%)</title><rect x="36.8812%" y="773" width="0.0135%" height="15" fill="rgb(231,43,21)" fg:x="82164" fg:w="30"/><text x="37.1312%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (30 samples, 0.01%)</title><rect x="36.8812%" y="757" width="0.0135%" height="15" fill="rgb(217,131,35)" fg:x="82164" fg:w="30"/><text x="37.1312%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (30 samples, 0.01%)</title><rect x="36.8812%" y="741" width="0.0135%" height="15" fill="rgb(221,149,4)" fg:x="82164" fg:w="30"/><text x="37.1312%" y="751.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (25 samples, 0.01%)</title><rect x="36.8951%" y="741" width="0.0112%" height="15" fill="rgb(232,170,28)" fg:x="82195" fg:w="25"/><text x="37.1451%" y="751.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (26 samples, 0.01%)</title><rect x="36.8951%" y="757" width="0.0117%" height="15" fill="rgb(238,56,10)" fg:x="82195" fg:w="26"/><text x="37.1451%" y="767.50"></text></g><g><title>G1RemSet::scan_rem_set (32 samples, 0.01%)</title><rect x="36.8947%" y="805" width="0.0144%" height="15" fill="rgb(235,196,14)" fg:x="82194" fg:w="32"/><text x="37.1447%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (32 samples, 0.01%)</title><rect x="36.8947%" y="789" width="0.0144%" height="15" fill="rgb(216,45,48)" fg:x="82194" fg:w="32"/><text x="37.1447%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (32 samples, 0.01%)</title><rect x="36.8947%" y="773" width="0.0144%" height="15" fill="rgb(238,213,17)" fg:x="82194" fg:w="32"/><text x="37.1447%" y="783.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (23 samples, 0.01%)</title><rect x="36.9091%" y="773" width="0.0103%" height="15" fill="rgb(212,13,2)" fg:x="82226" fg:w="23"/><text x="37.1591%" y="783.50"></text></g><g><title>G1RootProcessor::process_java_roots (73 samples, 0.03%)</title><rect x="36.9091%" y="789" width="0.0328%" height="15" fill="rgb(240,114,20)" fg:x="82226" fg:w="73"/><text x="37.1591%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (50 samples, 0.02%)</title><rect x="36.9194%" y="773" width="0.0224%" height="15" fill="rgb(228,41,40)" fg:x="82249" fg:w="50"/><text x="37.1694%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (50 samples, 0.02%)</title><rect x="36.9194%" y="757" width="0.0224%" height="15" fill="rgb(244,132,35)" fg:x="82249" fg:w="50"/><text x="37.1694%" y="767.50"></text></g><g><title>JavaThread::oops_do (42 samples, 0.02%)</title><rect x="36.9230%" y="741" width="0.0189%" height="15" fill="rgb(253,189,4)" fg:x="82257" fg:w="42"/><text x="37.1730%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (27 samples, 0.01%)</title><rect x="36.9297%" y="725" width="0.0121%" height="15" fill="rgb(224,37,19)" fg:x="82272" fg:w="27"/><text x="37.1797%" y="735.50"></text></g><g><title>G1ParTask::work (234 samples, 0.11%)</title><rect x="36.8449%" y="821" width="0.1050%" height="15" fill="rgb(235,223,18)" fg:x="82083" fg:w="234"/><text x="37.0949%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (91 samples, 0.04%)</title><rect x="36.9091%" y="805" width="0.0408%" height="15" fill="rgb(235,163,25)" fg:x="82226" fg:w="91"/><text x="37.1591%" y="815.50"></text></g><g><title>ParallelSPCleanupTask::work (33 samples, 0.01%)</title><rect x="36.9665%" y="821" width="0.0148%" height="15" fill="rgb(217,145,28)" fg:x="82354" fg:w="33"/><text x="37.2165%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (31 samples, 0.01%)</title><rect x="36.9674%" y="805" width="0.0139%" height="15" fill="rgb(223,223,32)" fg:x="82356" fg:w="31"/><text x="37.2174%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.03%)</title><rect x="36.9867%" y="597" width="0.0337%" height="15" fill="rgb(227,189,39)" fg:x="82399" fg:w="75"/><text x="37.2367%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.03%)</title><rect x="36.9885%" y="581" width="0.0319%" height="15" fill="rgb(248,10,22)" fg:x="82403" fg:w="71"/><text x="37.2385%" y="591.50"></text></g><g><title>native_write_msr (71 samples, 0.03%)</title><rect x="36.9885%" y="565" width="0.0319%" height="15" fill="rgb(248,46,39)" fg:x="82403" fg:w="71"/><text x="37.2385%" y="575.50"></text></g><g><title>finish_task_switch (79 samples, 0.04%)</title><rect x="36.9858%" y="613" width="0.0355%" height="15" fill="rgb(248,113,48)" fg:x="82397" fg:w="79"/><text x="37.2358%" y="623.50"></text></g><g><title>do_syscall_64 (88 samples, 0.04%)</title><rect x="36.9827%" y="725" width="0.0395%" height="15" fill="rgb(245,16,25)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="735.50"></text></g><g><title>__x64_sys_futex (88 samples, 0.04%)</title><rect x="36.9827%" y="709" width="0.0395%" height="15" fill="rgb(249,152,16)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="719.50"></text></g><g><title>do_futex (88 samples, 0.04%)</title><rect x="36.9827%" y="693" width="0.0395%" height="15" fill="rgb(250,16,1)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="703.50"></text></g><g><title>futex_wait (88 samples, 0.04%)</title><rect x="36.9827%" y="677" width="0.0395%" height="15" fill="rgb(249,138,3)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="687.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.04%)</title><rect x="36.9827%" y="661" width="0.0395%" height="15" fill="rgb(227,71,41)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="671.50"></text></g><g><title>schedule (88 samples, 0.04%)</title><rect x="36.9827%" y="645" width="0.0395%" height="15" fill="rgb(209,184,23)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="655.50"></text></g><g><title>__schedule (88 samples, 0.04%)</title><rect x="36.9827%" y="629" width="0.0395%" height="15" fill="rgb(223,215,31)" fg:x="82390" fg:w="88"/><text x="37.2327%" y="639.50"></text></g><g><title>GC_Thread#5 (417 samples, 0.19%)</title><rect x="36.8359%" y="917" width="0.1872%" height="15" fill="rgb(210,146,28)" fg:x="82063" fg:w="417"/><text x="37.0859%" y="927.50"></text></g><g><title>__GI___clone (413 samples, 0.19%)</title><rect x="36.8377%" y="901" width="0.1854%" height="15" fill="rgb(209,183,41)" fg:x="82067" fg:w="413"/><text x="37.0877%" y="911.50"></text></g><g><title>start_thread (413 samples, 0.19%)</title><rect x="36.8377%" y="885" width="0.1854%" height="15" fill="rgb(209,224,45)" fg:x="82067" fg:w="413"/><text x="37.0877%" y="895.50"></text></g><g><title>thread_native_entry (413 samples, 0.19%)</title><rect x="36.8377%" y="869" width="0.1854%" height="15" fill="rgb(224,209,51)" fg:x="82067" fg:w="413"/><text x="37.0877%" y="879.50"></text></g><g><title>Thread::call_run (413 samples, 0.19%)</title><rect x="36.8377%" y="853" width="0.1854%" height="15" fill="rgb(223,17,39)" fg:x="82067" fg:w="413"/><text x="37.0877%" y="863.50"></text></g><g><title>GangWorker::loop (413 samples, 0.19%)</title><rect x="36.8377%" y="837" width="0.1854%" height="15" fill="rgb(234,204,37)" fg:x="82067" fg:w="413"/><text x="37.0877%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (92 samples, 0.04%)</title><rect x="36.9818%" y="821" width="0.0413%" height="15" fill="rgb(236,120,5)" fg:x="82388" fg:w="92"/><text x="37.2318%" y="831.50"></text></g><g><title>PosixSemaphore::wait (91 samples, 0.04%)</title><rect x="36.9822%" y="805" width="0.0408%" height="15" fill="rgb(248,97,27)" fg:x="82389" fg:w="91"/><text x="37.2322%" y="815.50"></text></g><g><title>__new_sem_wait_slow (90 samples, 0.04%)</title><rect x="36.9827%" y="789" width="0.0404%" height="15" fill="rgb(240,66,17)" fg:x="82390" fg:w="90"/><text x="37.2327%" y="799.50"></text></g><g><title>do_futex_wait (90 samples, 0.04%)</title><rect x="36.9827%" y="773" width="0.0404%" height="15" fill="rgb(210,79,3)" fg:x="82390" fg:w="90"/><text x="37.2327%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (90 samples, 0.04%)</title><rect x="36.9827%" y="757" width="0.0404%" height="15" fill="rgb(214,176,27)" fg:x="82390" fg:w="90"/><text x="37.2327%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.04%)</title><rect x="36.9827%" y="741" width="0.0404%" height="15" fill="rgb(235,185,3)" fg:x="82390" fg:w="90"/><text x="37.2327%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (44 samples, 0.02%)</title><rect x="37.0334%" y="789" width="0.0198%" height="15" fill="rgb(227,24,12)" fg:x="82503" fg:w="44"/><text x="37.2834%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (155 samples, 0.07%)</title><rect x="37.0312%" y="805" width="0.0696%" height="15" fill="rgb(252,169,48)" fg:x="82498" fg:w="155"/><text x="37.2812%" y="815.50"></text></g><g><title>SpinPause (102 samples, 0.05%)</title><rect x="37.0549%" y="789" width="0.0458%" height="15" fill="rgb(212,65,1)" fg:x="82551" fg:w="102"/><text x="37.3049%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (31 samples, 0.01%)</title><rect x="37.1007%" y="725" width="0.0139%" height="15" fill="rgb(242,39,24)" fg:x="82653" fg:w="31"/><text x="37.3507%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (27 samples, 0.01%)</title><rect x="37.1025%" y="709" width="0.0121%" height="15" fill="rgb(249,32,23)" fg:x="82657" fg:w="27"/><text x="37.3525%" y="719.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (40 samples, 0.02%)</title><rect x="37.1007%" y="805" width="0.0180%" height="15" fill="rgb(251,195,23)" fg:x="82653" fg:w="40"/><text x="37.3507%" y="815.50"></text></g><g><title>G1RemSet::update_rem_set (40 samples, 0.02%)</title><rect x="37.1007%" y="789" width="0.0180%" height="15" fill="rgb(236,174,8)" fg:x="82653" fg:w="40"/><text x="37.3507%" y="799.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (40 samples, 0.02%)</title><rect x="37.1007%" y="773" width="0.0180%" height="15" fill="rgb(220,197,8)" fg:x="82653" fg:w="40"/><text x="37.3507%" y="783.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (40 samples, 0.02%)</title><rect x="37.1007%" y="757" width="0.0180%" height="15" fill="rgb(240,108,37)" fg:x="82653" fg:w="40"/><text x="37.3507%" y="767.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (40 samples, 0.02%)</title><rect x="37.1007%" y="741" width="0.0180%" height="15" fill="rgb(232,176,24)" fg:x="82653" fg:w="40"/><text x="37.3507%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (28 samples, 0.01%)</title><rect x="37.1187%" y="725" width="0.0126%" height="15" fill="rgb(243,35,29)" fg:x="82693" fg:w="28"/><text x="37.3687%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (31 samples, 0.01%)</title><rect x="37.1187%" y="757" width="0.0139%" height="15" fill="rgb(210,37,18)" fg:x="82693" fg:w="31"/><text x="37.3687%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (31 samples, 0.01%)</title><rect x="37.1187%" y="741" width="0.0139%" height="15" fill="rgb(224,184,40)" fg:x="82693" fg:w="31"/><text x="37.3687%" y="751.50"></text></g><g><title>G1RemSet::scan_rem_set (62 samples, 0.03%)</title><rect x="37.1187%" y="805" width="0.0278%" height="15" fill="rgb(236,39,29)" fg:x="82693" fg:w="62"/><text x="37.3687%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (62 samples, 0.03%)</title><rect x="37.1187%" y="789" width="0.0278%" height="15" fill="rgb(232,48,39)" fg:x="82693" fg:w="62"/><text x="37.3687%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (62 samples, 0.03%)</title><rect x="37.1187%" y="773" width="0.0278%" height="15" fill="rgb(236,34,42)" fg:x="82693" fg:w="62"/><text x="37.3687%" y="783.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (31 samples, 0.01%)</title><rect x="37.1326%" y="757" width="0.0139%" height="15" fill="rgb(243,106,37)" fg:x="82724" fg:w="31"/><text x="37.3826%" y="767.50"></text></g><g><title>G1CodeRootSet::nmethods_do (31 samples, 0.01%)</title><rect x="37.1326%" y="741" width="0.0139%" height="15" fill="rgb(218,96,6)" fg:x="82724" fg:w="31"/><text x="37.3826%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (36 samples, 0.02%)</title><rect x="37.1699%" y="677" width="0.0162%" height="15" fill="rgb(235,130,12)" fg:x="82807" fg:w="36"/><text x="37.4199%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (31 samples, 0.01%)</title><rect x="37.1721%" y="661" width="0.0139%" height="15" fill="rgb(231,95,0)" fg:x="82812" fg:w="31"/><text x="37.4221%" y="671.50"></text></g><g><title>InterpreterOopMap::iterate_oop (55 samples, 0.02%)</title><rect x="37.1627%" y="709" width="0.0247%" height="15" fill="rgb(228,12,23)" fg:x="82791" fg:w="55"/><text x="37.4127%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (55 samples, 0.02%)</title><rect x="37.1627%" y="693" width="0.0247%" height="15" fill="rgb(216,12,1)" fg:x="82791" fg:w="55"/><text x="37.4127%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (93 samples, 0.04%)</title><rect x="37.1483%" y="789" width="0.0417%" height="15" fill="rgb(219,59,3)" fg:x="82759" fg:w="93"/><text x="37.3983%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (93 samples, 0.04%)</title><rect x="37.1483%" y="773" width="0.0417%" height="15" fill="rgb(215,208,46)" fg:x="82759" fg:w="93"/><text x="37.3983%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (93 samples, 0.04%)</title><rect x="37.1483%" y="757" width="0.0417%" height="15" fill="rgb(254,224,29)" fg:x="82759" fg:w="93"/><text x="37.3983%" y="767.50"></text></g><g><title>JavaThread::oops_do (93 samples, 0.04%)</title><rect x="37.1483%" y="741" width="0.0417%" height="15" fill="rgb(232,14,29)" fg:x="82759" fg:w="93"/><text x="37.3983%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (64 samples, 0.03%)</title><rect x="37.1613%" y="725" width="0.0287%" height="15" fill="rgb(208,45,52)" fg:x="82788" fg:w="64"/><text x="37.4113%" y="735.50"></text></g><g><title>G1ParTask::work (369 samples, 0.17%)</title><rect x="37.0312%" y="821" width="0.1656%" height="15" fill="rgb(234,191,28)" fg:x="82498" fg:w="369"/><text x="37.2812%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (112 samples, 0.05%)</title><rect x="37.1465%" y="805" width="0.0503%" height="15" fill="rgb(244,67,43)" fg:x="82755" fg:w="112"/><text x="37.3965%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (37 samples, 0.02%)</title><rect x="37.2026%" y="821" width="0.0166%" height="15" fill="rgb(236,189,24)" fg:x="82880" fg:w="37"/><text x="37.4526%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (29 samples, 0.01%)</title><rect x="37.2062%" y="805" width="0.0130%" height="15" fill="rgb(239,214,33)" fg:x="82888" fg:w="29"/><text x="37.4562%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (29 samples, 0.01%)</title><rect x="37.2062%" y="789" width="0.0130%" height="15" fill="rgb(226,176,41)" fg:x="82888" fg:w="29"/><text x="37.4562%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (29 samples, 0.01%)</title><rect x="37.2062%" y="773" width="0.0130%" height="15" fill="rgb(248,47,8)" fg:x="82888" fg:w="29"/><text x="37.4562%" y="783.50"></text></g><g><title>SpinPause (29 samples, 0.01%)</title><rect x="37.2062%" y="757" width="0.0130%" height="15" fill="rgb(218,81,44)" fg:x="82888" fg:w="29"/><text x="37.4562%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.03%)</title><rect x="37.2318%" y="597" width="0.0292%" height="15" fill="rgb(213,98,6)" fg:x="82945" fg:w="65"/><text x="37.4818%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.03%)</title><rect x="37.2318%" y="581" width="0.0292%" height="15" fill="rgb(222,85,22)" fg:x="82945" fg:w="65"/><text x="37.4818%" y="591.50"></text></g><g><title>native_write_msr (65 samples, 0.03%)</title><rect x="37.2318%" y="565" width="0.0292%" height="15" fill="rgb(239,46,39)" fg:x="82945" fg:w="65"/><text x="37.4818%" y="575.50"></text></g><g><title>finish_task_switch (68 samples, 0.03%)</title><rect x="37.2309%" y="613" width="0.0305%" height="15" fill="rgb(237,12,29)" fg:x="82943" fg:w="68"/><text x="37.4809%" y="623.50"></text></g><g><title>do_syscall_64 (74 samples, 0.03%)</title><rect x="37.2296%" y="725" width="0.0332%" height="15" fill="rgb(214,77,8)" fg:x="82940" fg:w="74"/><text x="37.4796%" y="735.50"></text></g><g><title>__x64_sys_futex (74 samples, 0.03%)</title><rect x="37.2296%" y="709" width="0.0332%" height="15" fill="rgb(217,168,37)" fg:x="82940" fg:w="74"/><text x="37.4796%" y="719.50"></text></g><g><title>do_futex (74 samples, 0.03%)</title><rect x="37.2296%" y="693" width="0.0332%" height="15" fill="rgb(221,217,23)" fg:x="82940" fg:w="74"/><text x="37.4796%" y="703.50"></text></g><g><title>futex_wait (74 samples, 0.03%)</title><rect x="37.2296%" y="677" width="0.0332%" height="15" fill="rgb(243,229,36)" fg:x="82940" fg:w="74"/><text x="37.4796%" y="687.50"></text></g><g><title>futex_wait_queue_me (74 samples, 0.03%)</title><rect x="37.2296%" y="661" width="0.0332%" height="15" fill="rgb(251,163,40)" fg:x="82940" fg:w="74"/><text x="37.4796%" y="671.50"></text></g><g><title>schedule (73 samples, 0.03%)</title><rect x="37.2300%" y="645" width="0.0328%" height="15" fill="rgb(237,222,12)" fg:x="82941" fg:w="73"/><text x="37.4800%" y="655.50"></text></g><g><title>__schedule (73 samples, 0.03%)</title><rect x="37.2300%" y="629" width="0.0328%" height="15" fill="rgb(248,132,6)" fg:x="82941" fg:w="73"/><text x="37.4800%" y="639.50"></text></g><g><title>__new_sem_wait_slow (79 samples, 0.04%)</title><rect x="37.2287%" y="789" width="0.0355%" height="15" fill="rgb(227,167,50)" fg:x="82938" fg:w="79"/><text x="37.4787%" y="799.50"></text></g><g><title>do_futex_wait (79 samples, 0.04%)</title><rect x="37.2287%" y="773" width="0.0355%" height="15" fill="rgb(242,84,37)" fg:x="82938" fg:w="79"/><text x="37.4787%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (79 samples, 0.04%)</title><rect x="37.2287%" y="757" width="0.0355%" height="15" fill="rgb(212,4,50)" fg:x="82938" fg:w="79"/><text x="37.4787%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.04%)</title><rect x="37.2291%" y="741" width="0.0350%" height="15" fill="rgb(230,228,32)" fg:x="82939" fg:w="78"/><text x="37.4791%" y="751.50"></text></g><g><title>__GI___clone (532 samples, 0.24%)</title><rect x="37.0258%" y="901" width="0.2388%" height="15" fill="rgb(248,217,23)" fg:x="82486" fg:w="532"/><text x="37.2758%" y="911.50"></text></g><g><title>start_thread (532 samples, 0.24%)</title><rect x="37.0258%" y="885" width="0.2388%" height="15" fill="rgb(238,197,32)" fg:x="82486" fg:w="532"/><text x="37.2758%" y="895.50"></text></g><g><title>thread_native_entry (532 samples, 0.24%)</title><rect x="37.0258%" y="869" width="0.2388%" height="15" fill="rgb(236,106,1)" fg:x="82486" fg:w="532"/><text x="37.2758%" y="879.50"></text></g><g><title>Thread::call_run (532 samples, 0.24%)</title><rect x="37.0258%" y="853" width="0.2388%" height="15" fill="rgb(219,228,13)" fg:x="82486" fg:w="532"/><text x="37.2758%" y="863.50"></text></g><g><title>GangWorker::loop (532 samples, 0.24%)</title><rect x="37.0258%" y="837" width="0.2388%" height="15" fill="rgb(238,30,35)" fg:x="82486" fg:w="532"/><text x="37.2758%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (81 samples, 0.04%)</title><rect x="37.2282%" y="821" width="0.0364%" height="15" fill="rgb(236,70,23)" fg:x="82937" fg:w="81"/><text x="37.4782%" y="831.50"></text></g><g><title>PosixSemaphore::wait (81 samples, 0.04%)</title><rect x="37.2282%" y="805" width="0.0364%" height="15" fill="rgb(249,104,48)" fg:x="82937" fg:w="81"/><text x="37.4782%" y="815.50"></text></g><g><title>GC_Thread#6 (540 samples, 0.24%)</title><rect x="37.0231%" y="917" width="0.2424%" height="15" fill="rgb(254,117,50)" fg:x="82480" fg:w="540"/><text x="37.2731%" y="927.50"></text></g><g><title>G1ParScanThreadState::trim_queue (27 samples, 0.01%)</title><rect x="37.2744%" y="789" width="0.0121%" height="15" fill="rgb(223,152,4)" fg:x="83040" fg:w="27"/><text x="37.5244%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (99 samples, 0.04%)</title><rect x="37.2735%" y="805" width="0.0444%" height="15" fill="rgb(245,6,2)" fg:x="83038" fg:w="99"/><text x="37.5235%" y="815.50"></text></g><g><title>SpinPause (66 samples, 0.03%)</title><rect x="37.2884%" y="789" width="0.0296%" height="15" fill="rgb(249,150,24)" fg:x="83071" fg:w="66"/><text x="37.5384%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (23 samples, 0.01%)</title><rect x="37.3247%" y="725" width="0.0103%" height="15" fill="rgb(228,185,42)" fg:x="83152" fg:w="23"/><text x="37.5747%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (27 samples, 0.01%)</title><rect x="37.3247%" y="757" width="0.0121%" height="15" fill="rgb(226,39,33)" fg:x="83152" fg:w="27"/><text x="37.5747%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (27 samples, 0.01%)</title><rect x="37.3247%" y="741" width="0.0121%" height="15" fill="rgb(221,166,19)" fg:x="83152" fg:w="27"/><text x="37.5747%" y="751.50"></text></g><g><title>G1RemSet::scan_rem_set (43 samples, 0.02%)</title><rect x="37.3247%" y="805" width="0.0193%" height="15" fill="rgb(209,109,2)" fg:x="83152" fg:w="43"/><text x="37.5747%" y="815.50"></text></g><g><title>G1CollectionSet::iterate_from (43 samples, 0.02%)</title><rect x="37.3247%" y="789" width="0.0193%" height="15" fill="rgb(252,216,26)" fg:x="83152" fg:w="43"/><text x="37.5747%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (43 samples, 0.02%)</title><rect x="37.3247%" y="773" width="0.0193%" height="15" fill="rgb(227,173,36)" fg:x="83152" fg:w="43"/><text x="37.5747%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (43 samples, 0.02%)</title><rect x="37.3561%" y="709" width="0.0193%" height="15" fill="rgb(209,90,7)" fg:x="83222" fg:w="43"/><text x="37.6061%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (33 samples, 0.01%)</title><rect x="37.3606%" y="693" width="0.0148%" height="15" fill="rgb(250,194,11)" fg:x="83232" fg:w="33"/><text x="37.6106%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (26 samples, 0.01%)</title><rect x="37.3638%" y="677" width="0.0117%" height="15" fill="rgb(220,72,50)" fg:x="83239" fg:w="26"/><text x="37.6138%" y="687.50"></text></g><g><title>InterpreterOopMap::iterate_oop (28 samples, 0.01%)</title><rect x="37.3754%" y="709" width="0.0126%" height="15" fill="rgb(222,106,48)" fg:x="83265" fg:w="28"/><text x="37.6254%" y="719.50"></text></g><g><title>G1RootProcessor::process_java_roots (100 samples, 0.04%)</title><rect x="37.3445%" y="789" width="0.0449%" height="15" fill="rgb(216,220,45)" fg:x="83196" fg:w="100"/><text x="37.5945%" y="799.50"></text></g><g><title>Threads::possibly_parallel_oops_do (100 samples, 0.04%)</title><rect x="37.3445%" y="773" width="0.0449%" height="15" fill="rgb(234,112,18)" fg:x="83196" fg:w="100"/><text x="37.5945%" y="783.50"></text></g><g><title>Threads::possibly_parallel_threads_do (100 samples, 0.04%)</title><rect x="37.3445%" y="757" width="0.0449%" height="15" fill="rgb(206,179,9)" fg:x="83196" fg:w="100"/><text x="37.5945%" y="767.50"></text></g><g><title>JavaThread::oops_do (100 samples, 0.04%)</title><rect x="37.3445%" y="741" width="0.0449%" height="15" fill="rgb(215,115,40)" fg:x="83196" fg:w="100"/><text x="37.5945%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (76 samples, 0.03%)</title><rect x="37.3552%" y="725" width="0.0341%" height="15" fill="rgb(222,69,34)" fg:x="83220" fg:w="76"/><text x="37.6052%" y="735.50"></text></g><g><title>G1ParTask::work (264 samples, 0.12%)</title><rect x="37.2735%" y="821" width="0.1185%" height="15" fill="rgb(209,161,10)" fg:x="83038" fg:w="264"/><text x="37.5235%" y="831.50"></text></g><g><title>G1RootProcessor::evacuate_roots (107 samples, 0.05%)</title><rect x="37.3440%" y="805" width="0.0480%" height="15" fill="rgb(217,6,38)" fg:x="83195" fg:w="107"/><text x="37.5940%" y="815.50"></text></g><g><title>G1STWRefProcTaskProxy::work (37 samples, 0.02%)</title><rect x="37.3934%" y="821" width="0.0166%" height="15" fill="rgb(229,229,48)" fg:x="83305" fg:w="37"/><text x="37.6434%" y="831.50"></text></g><g><title>RefProcPhase3Task::work (33 samples, 0.01%)</title><rect x="37.3952%" y="805" width="0.0148%" height="15" fill="rgb(225,21,28)" fg:x="83309" fg:w="33"/><text x="37.6452%" y="815.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (33 samples, 0.01%)</title><rect x="37.3952%" y="789" width="0.0148%" height="15" fill="rgb(206,33,13)" fg:x="83309" fg:w="33"/><text x="37.6452%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (33 samples, 0.01%)</title><rect x="37.3952%" y="773" width="0.0148%" height="15" fill="rgb(242,178,17)" fg:x="83309" fg:w="33"/><text x="37.6452%" y="783.50"></text></g><g><title>SpinPause (33 samples, 0.01%)</title><rect x="37.3952%" y="757" width="0.0148%" height="15" fill="rgb(220,162,5)" fg:x="83309" fg:w="33"/><text x="37.6452%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (29 samples, 0.01%)</title><rect x="37.4109%" y="821" width="0.0130%" height="15" fill="rgb(210,33,43)" fg:x="83344" fg:w="29"/><text x="37.6609%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (24 samples, 0.01%)</title><rect x="37.4131%" y="805" width="0.0108%" height="15" fill="rgb(216,116,54)" fg:x="83349" fg:w="24"/><text x="37.6631%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (94 samples, 0.04%)</title><rect x="37.4289%" y="597" width="0.0422%" height="15" fill="rgb(249,92,24)" fg:x="83384" fg:w="94"/><text x="37.6789%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (91 samples, 0.04%)</title><rect x="37.4302%" y="581" width="0.0408%" height="15" fill="rgb(231,189,14)" fg:x="83387" fg:w="91"/><text x="37.6802%" y="591.50"></text></g><g><title>native_write_msr (90 samples, 0.04%)</title><rect x="37.4306%" y="565" width="0.0404%" height="15" fill="rgb(230,8,41)" fg:x="83388" fg:w="90"/><text x="37.6806%" y="575.50"></text></g><g><title>finish_task_switch (98 samples, 0.04%)</title><rect x="37.4289%" y="613" width="0.0440%" height="15" fill="rgb(249,7,27)" fg:x="83384" fg:w="98"/><text x="37.6789%" y="623.50"></text></g><g><title>futex_wait_queue_me (110 samples, 0.05%)</title><rect x="37.4262%" y="661" width="0.0494%" height="15" fill="rgb(232,86,5)" fg:x="83378" fg:w="110"/><text x="37.6762%" y="671.50"></text></g><g><title>schedule (109 samples, 0.05%)</title><rect x="37.4266%" y="645" width="0.0489%" height="15" fill="rgb(224,175,18)" fg:x="83379" fg:w="109"/><text x="37.6766%" y="655.50"></text></g><g><title>__schedule (108 samples, 0.05%)</title><rect x="37.4271%" y="629" width="0.0485%" height="15" fill="rgb(220,129,12)" fg:x="83380" fg:w="108"/><text x="37.6771%" y="639.50"></text></g><g><title>do_syscall_64 (113 samples, 0.05%)</title><rect x="37.4257%" y="725" width="0.0507%" height="15" fill="rgb(210,19,36)" fg:x="83377" fg:w="113"/><text x="37.6757%" y="735.50"></text></g><g><title>__x64_sys_futex (113 samples, 0.05%)</title><rect x="37.4257%" y="709" width="0.0507%" height="15" fill="rgb(219,96,14)" fg:x="83377" fg:w="113"/><text x="37.6757%" y="719.50"></text></g><g><title>do_futex (113 samples, 0.05%)</title><rect x="37.4257%" y="693" width="0.0507%" height="15" fill="rgb(249,106,1)" fg:x="83377" fg:w="113"/><text x="37.6757%" y="703.50"></text></g><g><title>futex_wait (113 samples, 0.05%)</title><rect x="37.4257%" y="677" width="0.0507%" height="15" fill="rgb(249,155,20)" fg:x="83377" fg:w="113"/><text x="37.6757%" y="687.50"></text></g><g><title>__GI___clone (466 samples, 0.21%)</title><rect x="37.2691%" y="901" width="0.2092%" height="15" fill="rgb(244,168,9)" fg:x="83028" fg:w="466"/><text x="37.5191%" y="911.50"></text></g><g><title>start_thread (466 samples, 0.21%)</title><rect x="37.2691%" y="885" width="0.2092%" height="15" fill="rgb(216,23,50)" fg:x="83028" fg:w="466"/><text x="37.5191%" y="895.50"></text></g><g><title>thread_native_entry (466 samples, 0.21%)</title><rect x="37.2691%" y="869" width="0.2092%" height="15" fill="rgb(224,219,20)" fg:x="83028" fg:w="466"/><text x="37.5191%" y="879.50"></text></g><g><title>Thread::call_run (466 samples, 0.21%)</title><rect x="37.2691%" y="853" width="0.2092%" height="15" fill="rgb(222,156,15)" fg:x="83028" fg:w="466"/><text x="37.5191%" y="863.50"></text></g><g><title>GangWorker::loop (466 samples, 0.21%)</title><rect x="37.2691%" y="837" width="0.2092%" height="15" fill="rgb(231,97,17)" fg:x="83028" fg:w="466"/><text x="37.5191%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (118 samples, 0.05%)</title><rect x="37.4253%" y="821" width="0.0530%" height="15" fill="rgb(218,70,48)" fg:x="83376" fg:w="118"/><text x="37.6753%" y="831.50"></text></g><g><title>PosixSemaphore::wait (118 samples, 0.05%)</title><rect x="37.4253%" y="805" width="0.0530%" height="15" fill="rgb(212,196,52)" fg:x="83376" fg:w="118"/><text x="37.6753%" y="815.50"></text></g><g><title>__new_sem_wait_slow (118 samples, 0.05%)</title><rect x="37.4253%" y="789" width="0.0530%" height="15" fill="rgb(243,203,18)" fg:x="83376" fg:w="118"/><text x="37.6753%" y="799.50"></text></g><g><title>do_futex_wait (117 samples, 0.05%)</title><rect x="37.4257%" y="773" width="0.0525%" height="15" fill="rgb(252,125,41)" fg:x="83377" fg:w="117"/><text x="37.6757%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (117 samples, 0.05%)</title><rect x="37.4257%" y="757" width="0.0525%" height="15" fill="rgb(223,180,33)" fg:x="83377" fg:w="117"/><text x="37.6757%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (117 samples, 0.05%)</title><rect x="37.4257%" y="741" width="0.0525%" height="15" fill="rgb(254,159,46)" fg:x="83377" fg:w="117"/><text x="37.6757%" y="751.50"></text></g><g><title>GC_Thread#7 (476 samples, 0.21%)</title><rect x="37.2655%" y="917" width="0.2137%" height="15" fill="rgb(254,38,10)" fg:x="83020" fg:w="476"/><text x="37.5155%" y="927.50"></text></g><g><title>[perf-945576.map] (102 samples, 0.05%)</title><rect x="37.4921%" y="901" width="0.0458%" height="15" fill="rgb(208,217,32)" fg:x="83525" fg:w="102"/><text x="37.7421%" y="911.50"></text></g><g><title>Service_Thread (123 samples, 0.06%)</title><rect x="37.4881%" y="917" width="0.0552%" height="15" fill="rgb(221,120,13)" fg:x="83516" fg:w="123"/><text x="37.7381%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (385 samples, 0.17%)</title><rect x="37.5990%" y="565" width="0.1728%" height="15" fill="rgb(246,54,52)" fg:x="83763" fg:w="385"/><text x="37.8490%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (382 samples, 0.17%)</title><rect x="37.6003%" y="549" width="0.1715%" height="15" fill="rgb(242,34,25)" fg:x="83766" fg:w="382"/><text x="37.8503%" y="559.50"></text></g><g><title>native_write_msr (380 samples, 0.17%)</title><rect x="37.6012%" y="533" width="0.1706%" height="15" fill="rgb(247,209,9)" fg:x="83768" fg:w="380"/><text x="37.8512%" y="543.50"></text></g><g><title>finish_task_switch (399 samples, 0.18%)</title><rect x="37.5963%" y="581" width="0.1791%" height="15" fill="rgb(228,71,26)" fg:x="83757" fg:w="399"/><text x="37.8463%" y="591.50"></text></g><g><title>futex_wait_queue_me (459 samples, 0.21%)</title><rect x="37.5783%" y="629" width="0.2060%" height="15" fill="rgb(222,145,49)" fg:x="83717" fg:w="459"/><text x="37.8283%" y="639.50"></text></g><g><title>schedule (443 samples, 0.20%)</title><rect x="37.5855%" y="613" width="0.1989%" height="15" fill="rgb(218,121,17)" fg:x="83733" fg:w="443"/><text x="37.8355%" y="623.50"></text></g><g><title>__schedule (441 samples, 0.20%)</title><rect x="37.5864%" y="597" width="0.1980%" height="15" fill="rgb(244,50,7)" fg:x="83735" fg:w="441"/><text x="37.8364%" y="607.50"></text></g><g><title>do_syscall_64 (495 samples, 0.22%)</title><rect x="37.5734%" y="693" width="0.2222%" height="15" fill="rgb(246,229,37)" fg:x="83706" fg:w="495"/><text x="37.8234%" y="703.50"></text></g><g><title>__x64_sys_futex (495 samples, 0.22%)</title><rect x="37.5734%" y="677" width="0.2222%" height="15" fill="rgb(225,18,5)" fg:x="83706" fg:w="495"/><text x="37.8234%" y="687.50"></text></g><g><title>do_futex (494 samples, 0.22%)</title><rect x="37.5738%" y="661" width="0.2217%" height="15" fill="rgb(213,204,8)" fg:x="83707" fg:w="494"/><text x="37.8238%" y="671.50"></text></g><g><title>futex_wait (493 samples, 0.22%)</title><rect x="37.5743%" y="645" width="0.2213%" height="15" fill="rgb(238,103,6)" fg:x="83708" fg:w="493"/><text x="37.8243%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (506 samples, 0.23%)</title><rect x="37.5729%" y="709" width="0.2271%" height="15" fill="rgb(222,25,35)" fg:x="83705" fg:w="506"/><text x="37.8229%" y="719.50"></text></g><g><title>__pthread_cond_timedwait (528 samples, 0.24%)</title><rect x="37.5635%" y="757" width="0.2370%" height="15" fill="rgb(213,203,35)" fg:x="83684" fg:w="528"/><text x="37.8135%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (528 samples, 0.24%)</title><rect x="37.5635%" y="741" width="0.2370%" height="15" fill="rgb(221,79,53)" fg:x="83684" fg:w="528"/><text x="37.8135%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (519 samples, 0.23%)</title><rect x="37.5676%" y="725" width="0.2330%" height="15" fill="rgb(243,200,35)" fg:x="83693" fg:w="519"/><text x="37.8176%" y="735.50"></text></g><g><title>os::PlatformEvent::park (553 samples, 0.25%)</title><rect x="37.5631%" y="773" width="0.2482%" height="15" fill="rgb(248,60,25)" fg:x="83683" fg:w="553"/><text x="37.8131%" y="783.50"></text></g><g><title>Monitor::wait (561 samples, 0.25%)</title><rect x="37.5599%" y="805" width="0.2518%" height="15" fill="rgb(227,53,46)" fg:x="83676" fg:w="561"/><text x="37.8099%" y="815.50"></text></g><g><title>Monitor::IWait (561 samples, 0.25%)</title><rect x="37.5599%" y="789" width="0.2518%" height="15" fill="rgb(216,120,32)" fg:x="83676" fg:w="561"/><text x="37.8099%" y="799.50"></text></g><g><title>Monitor::lock_without_safepoint_check (23 samples, 0.01%)</title><rect x="37.8221%" y="773" width="0.0103%" height="15" fill="rgb(220,134,1)" fg:x="84260" fg:w="23"/><text x="38.0721%" y="783.50"></text></g><g><title>Monitor::ILock (23 samples, 0.01%)</title><rect x="37.8221%" y="757" width="0.0103%" height="15" fill="rgb(237,168,5)" fg:x="84260" fg:w="23"/><text x="38.0721%" y="767.50"></text></g><g><title>clean_if_nmethod_is_unloaded&lt;CompiledIC&gt; (25 samples, 0.01%)</title><rect x="37.8750%" y="741" width="0.0112%" height="15" fill="rgb(231,100,33)" fg:x="84378" fg:w="25"/><text x="38.1250%" y="751.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (136 samples, 0.06%)</title><rect x="37.8342%" y="757" width="0.0610%" height="15" fill="rgb(236,177,47)" fg:x="84287" fg:w="136"/><text x="38.0842%" y="767.50"></text></g><g><title>NMethodSweeper::process_compiled_method (185 samples, 0.08%)</title><rect x="37.8328%" y="773" width="0.0830%" height="15" fill="rgb(235,7,49)" fg:x="84284" fg:w="185"/><text x="38.0828%" y="783.50"></text></g><g><title>NMethodSweeper::possibly_sweep (241 samples, 0.11%)</title><rect x="37.8117%" y="805" width="0.1082%" height="15" fill="rgb(232,119,22)" fg:x="84237" fg:w="241"/><text x="38.0617%" y="815.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (233 samples, 0.10%)</title><rect x="37.8153%" y="789" width="0.1046%" height="15" fill="rgb(254,73,53)" fg:x="84245" fg:w="233"/><text x="38.0653%" y="799.50"></text></g><g><title>__GI___clone (819 samples, 0.37%)</title><rect x="37.5572%" y="901" width="0.3676%" height="15" fill="rgb(251,35,20)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="911.50"></text></g><g><title>start_thread (819 samples, 0.37%)</title><rect x="37.5572%" y="885" width="0.3676%" height="15" fill="rgb(241,119,20)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="895.50"></text></g><g><title>thread_native_entry (819 samples, 0.37%)</title><rect x="37.5572%" y="869" width="0.3676%" height="15" fill="rgb(207,102,14)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="879.50"></text></g><g><title>Thread::call_run (819 samples, 0.37%)</title><rect x="37.5572%" y="853" width="0.3676%" height="15" fill="rgb(248,201,50)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (819 samples, 0.37%)</title><rect x="37.5572%" y="837" width="0.3676%" height="15" fill="rgb(222,185,44)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="847.50"></text></g><g><title>NMethodSweeper::sweeper_loop (819 samples, 0.37%)</title><rect x="37.5572%" y="821" width="0.3676%" height="15" fill="rgb(218,107,18)" fg:x="83670" fg:w="819"/><text x="37.8072%" y="831.50"></text></g><g><title>Sweeper_thread (843 samples, 0.38%)</title><rect x="37.5474%" y="917" width="0.3784%" height="15" fill="rgb(237,177,39)" fg:x="83648" fg:w="843"/><text x="37.7974%" y="927.50"></text></g><g><title>[perf-945576.map] (102 samples, 0.05%)</title><rect x="37.9271%" y="901" width="0.0458%" height="15" fill="rgb(246,69,6)" fg:x="84494" fg:w="102"/><text x="38.1771%" y="911.50"></text></g><g><title>Thread-0 (112 samples, 0.05%)</title><rect x="37.9258%" y="917" width="0.0503%" height="15" fill="rgb(234,208,37)" fg:x="84491" fg:w="112"/><text x="38.1758%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.04%)</title><rect x="37.9855%" y="565" width="0.0364%" height="15" fill="rgb(225,4,6)" fg:x="84624" fg:w="81"/><text x="38.2355%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (80 samples, 0.04%)</title><rect x="37.9859%" y="549" width="0.0359%" height="15" fill="rgb(233,45,0)" fg:x="84625" fg:w="80"/><text x="38.2359%" y="559.50"></text></g><g><title>native_write_msr (79 samples, 0.04%)</title><rect x="37.9864%" y="533" width="0.0355%" height="15" fill="rgb(226,136,5)" fg:x="84626" fg:w="79"/><text x="38.2364%" y="543.50"></text></g><g><title>finish_task_switch (85 samples, 0.04%)</title><rect x="37.9850%" y="581" width="0.0382%" height="15" fill="rgb(211,91,47)" fg:x="84623" fg:w="85"/><text x="38.2350%" y="591.50"></text></g><g><title>do_syscall_64 (91 samples, 0.04%)</title><rect x="37.9837%" y="693" width="0.0408%" height="15" fill="rgb(242,88,51)" fg:x="84620" fg:w="91"/><text x="38.2337%" y="703.50"></text></g><g><title>__x64_sys_futex (91 samples, 0.04%)</title><rect x="37.9837%" y="677" width="0.0408%" height="15" fill="rgb(230,91,28)" fg:x="84620" fg:w="91"/><text x="38.2337%" y="687.50"></text></g><g><title>do_futex (91 samples, 0.04%)</title><rect x="37.9837%" y="661" width="0.0408%" height="15" fill="rgb(254,186,29)" fg:x="84620" fg:w="91"/><text x="38.2337%" y="671.50"></text></g><g><title>futex_wait (91 samples, 0.04%)</title><rect x="37.9837%" y="645" width="0.0408%" height="15" fill="rgb(238,6,4)" fg:x="84620" fg:w="91"/><text x="38.2337%" y="655.50"></text></g><g><title>futex_wait_queue_me (90 samples, 0.04%)</title><rect x="37.9841%" y="629" width="0.0404%" height="15" fill="rgb(221,151,16)" fg:x="84621" fg:w="90"/><text x="38.2341%" y="639.50"></text></g><g><title>schedule (89 samples, 0.04%)</title><rect x="37.9846%" y="613" width="0.0399%" height="15" fill="rgb(251,143,52)" fg:x="84622" fg:w="89"/><text x="38.2346%" y="623.50"></text></g><g><title>__schedule (89 samples, 0.04%)</title><rect x="37.9846%" y="597" width="0.0399%" height="15" fill="rgb(206,90,15)" fg:x="84622" fg:w="89"/><text x="38.2346%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (100 samples, 0.04%)</title><rect x="37.9805%" y="757" width="0.0449%" height="15" fill="rgb(218,35,8)" fg:x="84613" fg:w="100"/><text x="38.2305%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (100 samples, 0.04%)</title><rect x="37.9805%" y="741" width="0.0449%" height="15" fill="rgb(239,215,6)" fg:x="84613" fg:w="100"/><text x="38.2305%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (96 samples, 0.04%)</title><rect x="37.9823%" y="725" width="0.0431%" height="15" fill="rgb(245,116,39)" fg:x="84617" fg:w="96"/><text x="38.2323%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.04%)</title><rect x="37.9837%" y="709" width="0.0417%" height="15" fill="rgb(242,65,28)" fg:x="84620" fg:w="93"/><text x="38.2337%" y="719.50"></text></g><g><title>Monitor::wait (103 samples, 0.05%)</title><rect x="37.9796%" y="805" width="0.0462%" height="15" fill="rgb(252,132,53)" fg:x="84611" fg:w="103"/><text x="38.2296%" y="815.50"></text></g><g><title>Monitor::IWait (102 samples, 0.05%)</title><rect x="37.9801%" y="789" width="0.0458%" height="15" fill="rgb(224,159,50)" fg:x="84612" fg:w="102"/><text x="38.2301%" y="799.50"></text></g><g><title>os::PlatformEvent::park (101 samples, 0.05%)</title><rect x="37.9805%" y="773" width="0.0453%" height="15" fill="rgb(224,93,4)" fg:x="84613" fg:w="101"/><text x="38.2305%" y="783.50"></text></g><g><title>VM_Periodic_Tas (112 samples, 0.05%)</title><rect x="37.9760%" y="917" width="0.0503%" height="15" fill="rgb(208,81,34)" fg:x="84603" fg:w="112"/><text x="38.2260%" y="927.50"></text></g><g><title>__GI___clone (109 samples, 0.05%)</title><rect x="37.9774%" y="901" width="0.0489%" height="15" fill="rgb(233,92,54)" fg:x="84606" fg:w="109"/><text x="38.2274%" y="911.50"></text></g><g><title>start_thread (109 samples, 0.05%)</title><rect x="37.9774%" y="885" width="0.0489%" height="15" fill="rgb(237,21,14)" fg:x="84606" fg:w="109"/><text x="38.2274%" y="895.50"></text></g><g><title>thread_native_entry (109 samples, 0.05%)</title><rect x="37.9774%" y="869" width="0.0489%" height="15" fill="rgb(249,128,51)" fg:x="84606" fg:w="109"/><text x="38.2274%" y="879.50"></text></g><g><title>Thread::call_run (109 samples, 0.05%)</title><rect x="37.9774%" y="853" width="0.0489%" height="15" fill="rgb(223,129,24)" fg:x="84606" fg:w="109"/><text x="38.2274%" y="863.50"></text></g><g><title>WatcherThread::run (109 samples, 0.05%)</title><rect x="37.9774%" y="837" width="0.0489%" height="15" fill="rgb(231,168,25)" fg:x="84606" fg:w="109"/><text x="38.2274%" y="847.50"></text></g><g><title>WatcherThread::sleep (104 samples, 0.05%)</title><rect x="37.9796%" y="821" width="0.0467%" height="15" fill="rgb(224,39,20)" fg:x="84611" fg:w="104"/><text x="38.2296%" y="831.50"></text></g><g><title>[unknown] (97 samples, 0.04%)</title><rect x="38.0353%" y="901" width="0.0435%" height="15" fill="rgb(225,152,53)" fg:x="84735" fg:w="97"/><text x="38.2853%" y="911.50"></text></g><g><title>vframe::sender (91 samples, 0.04%)</title><rect x="38.0380%" y="885" width="0.0408%" height="15" fill="rgb(252,17,24)" fg:x="84741" fg:w="91"/><text x="38.2880%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="38.0981%" y="565" width="0.0117%" height="15" fill="rgb(250,114,30)" fg:x="84875" fg:w="26"/><text x="38.3481%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="38.0981%" y="549" width="0.0117%" height="15" fill="rgb(229,5,4)" fg:x="84875" fg:w="26"/><text x="38.3481%" y="559.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="38.0981%" y="533" width="0.0117%" height="15" fill="rgb(225,176,49)" fg:x="84875" fg:w="26"/><text x="38.3481%" y="543.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="38.0972%" y="693" width="0.0130%" height="15" fill="rgb(224,221,49)" fg:x="84873" fg:w="29"/><text x="38.3472%" y="703.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.01%)</title><rect x="38.0972%" y="677" width="0.0130%" height="15" fill="rgb(253,169,27)" fg:x="84873" fg:w="29"/><text x="38.3472%" y="687.50"></text></g><g><title>do_futex (29 samples, 0.01%)</title><rect x="38.0972%" y="661" width="0.0130%" height="15" fill="rgb(211,206,16)" fg:x="84873" fg:w="29"/><text x="38.3472%" y="671.50"></text></g><g><title>futex_wait (29 samples, 0.01%)</title><rect x="38.0972%" y="645" width="0.0130%" height="15" fill="rgb(244,87,35)" fg:x="84873" fg:w="29"/><text x="38.3472%" y="655.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.01%)</title><rect x="38.0977%" y="629" width="0.0126%" height="15" fill="rgb(246,28,10)" fg:x="84874" fg:w="28"/><text x="38.3477%" y="639.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="38.0977%" y="613" width="0.0126%" height="15" fill="rgb(229,12,44)" fg:x="84874" fg:w="28"/><text x="38.3477%" y="623.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="38.0981%" y="597" width="0.0121%" height="15" fill="rgb(210,145,37)" fg:x="84875" fg:w="27"/><text x="38.3481%" y="607.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="38.0981%" y="581" width="0.0121%" height="15" fill="rgb(227,112,52)" fg:x="84875" fg:w="27"/><text x="38.3481%" y="591.50"></text></g><g><title>Monitor::lock_without_safepoint_check (30 samples, 0.01%)</title><rect x="38.0972%" y="805" width="0.0135%" height="15" fill="rgb(238,155,34)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="815.50"></text></g><g><title>Monitor::ILock (30 samples, 0.01%)</title><rect x="38.0972%" y="789" width="0.0135%" height="15" fill="rgb(239,226,36)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="799.50"></text></g><g><title>os::PlatformEvent::park (30 samples, 0.01%)</title><rect x="38.0972%" y="773" width="0.0135%" height="15" fill="rgb(230,16,23)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="783.50"></text></g><g><title>__pthread_cond_wait (30 samples, 0.01%)</title><rect x="38.0972%" y="757" width="0.0135%" height="15" fill="rgb(236,171,36)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (30 samples, 0.01%)</title><rect x="38.0972%" y="741" width="0.0135%" height="15" fill="rgb(221,22,14)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="751.50"></text></g><g><title>futex_wait_cancelable (30 samples, 0.01%)</title><rect x="38.0972%" y="725" width="0.0135%" height="15" fill="rgb(242,43,11)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="38.0972%" y="709" width="0.0135%" height="15" fill="rgb(232,69,23)" fg:x="84873" fg:w="30"/><text x="38.3472%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (162 samples, 0.07%)</title><rect x="38.1170%" y="565" width="0.0727%" height="15" fill="rgb(216,180,54)" fg:x="84917" fg:w="162"/><text x="38.3670%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (158 samples, 0.07%)</title><rect x="38.1188%" y="549" width="0.0709%" height="15" fill="rgb(216,5,24)" fg:x="84921" fg:w="158"/><text x="38.3688%" y="559.50"></text></g><g><title>native_write_msr (157 samples, 0.07%)</title><rect x="38.1192%" y="533" width="0.0705%" height="15" fill="rgb(225,89,9)" fg:x="84922" fg:w="157"/><text x="38.3692%" y="543.50"></text></g><g><title>futex_wait_queue_me (174 samples, 0.08%)</title><rect x="38.1129%" y="629" width="0.0781%" height="15" fill="rgb(243,75,33)" fg:x="84908" fg:w="174"/><text x="38.3629%" y="639.50"></text></g><g><title>schedule (172 samples, 0.08%)</title><rect x="38.1138%" y="613" width="0.0772%" height="15" fill="rgb(247,141,45)" fg:x="84910" fg:w="172"/><text x="38.3638%" y="623.50"></text></g><g><title>__schedule (172 samples, 0.08%)</title><rect x="38.1138%" y="597" width="0.0772%" height="15" fill="rgb(232,177,36)" fg:x="84910" fg:w="172"/><text x="38.3638%" y="607.50"></text></g><g><title>finish_task_switch (168 samples, 0.08%)</title><rect x="38.1156%" y="581" width="0.0754%" height="15" fill="rgb(219,125,36)" fg:x="84914" fg:w="168"/><text x="38.3656%" y="591.50"></text></g><g><title>do_syscall_64 (180 samples, 0.08%)</title><rect x="38.1120%" y="693" width="0.0808%" height="15" fill="rgb(227,94,9)" fg:x="84906" fg:w="180"/><text x="38.3620%" y="703.50"></text></g><g><title>__x64_sys_futex (180 samples, 0.08%)</title><rect x="38.1120%" y="677" width="0.0808%" height="15" fill="rgb(240,34,52)" fg:x="84906" fg:w="180"/><text x="38.3620%" y="687.50"></text></g><g><title>do_futex (179 samples, 0.08%)</title><rect x="38.1125%" y="661" width="0.0803%" height="15" fill="rgb(216,45,12)" fg:x="84907" fg:w="179"/><text x="38.3625%" y="671.50"></text></g><g><title>futex_wait (179 samples, 0.08%)</title><rect x="38.1125%" y="645" width="0.0803%" height="15" fill="rgb(246,21,19)" fg:x="84907" fg:w="179"/><text x="38.3625%" y="655.50"></text></g><g><title>__pthread_cond_timedwait (186 samples, 0.08%)</title><rect x="38.1116%" y="757" width="0.0835%" height="15" fill="rgb(213,98,42)" fg:x="84905" fg:w="186"/><text x="38.3616%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (186 samples, 0.08%)</title><rect x="38.1116%" y="741" width="0.0835%" height="15" fill="rgb(250,136,47)" fg:x="84905" fg:w="186"/><text x="38.3616%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (185 samples, 0.08%)</title><rect x="38.1120%" y="725" width="0.0830%" height="15" fill="rgb(251,124,27)" fg:x="84906" fg:w="185"/><text x="38.3620%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (185 samples, 0.08%)</title><rect x="38.1120%" y="709" width="0.0830%" height="15" fill="rgb(229,180,14)" fg:x="84906" fg:w="185"/><text x="38.3620%" y="719.50"></text></g><g><title>Monitor::wait (191 samples, 0.09%)</title><rect x="38.1107%" y="805" width="0.0857%" height="15" fill="rgb(245,216,25)" fg:x="84903" fg:w="191"/><text x="38.3607%" y="815.50"></text></g><g><title>Monitor::IWait (191 samples, 0.09%)</title><rect x="38.1107%" y="789" width="0.0857%" height="15" fill="rgb(251,43,5)" fg:x="84903" fg:w="191"/><text x="38.3607%" y="799.50"></text></g><g><title>os::PlatformEvent::park (190 samples, 0.09%)</title><rect x="38.1111%" y="773" width="0.0853%" height="15" fill="rgb(250,128,24)" fg:x="84904" fg:w="190"/><text x="38.3611%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (82 samples, 0.04%)</title><rect x="38.2530%" y="549" width="0.0368%" height="15" fill="rgb(217,117,27)" fg:x="85220" fg:w="82"/><text x="38.5030%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (79 samples, 0.04%)</title><rect x="38.2543%" y="533" width="0.0355%" height="15" fill="rgb(245,147,4)" fg:x="85223" fg:w="79"/><text x="38.5043%" y="543.50"></text></g><g><title>native_write_msr (77 samples, 0.03%)</title><rect x="38.2552%" y="517" width="0.0346%" height="15" fill="rgb(242,201,35)" fg:x="85225" fg:w="77"/><text x="38.5052%" y="527.50"></text></g><g><title>finish_task_switch (86 samples, 0.04%)</title><rect x="38.2521%" y="565" width="0.0386%" height="15" fill="rgb(218,181,1)" fg:x="85218" fg:w="86"/><text x="38.5021%" y="575.50"></text></g><g><title>Monitor::wait (102 samples, 0.05%)</title><rect x="38.2458%" y="789" width="0.0458%" height="15" fill="rgb(222,6,29)" fg:x="85204" fg:w="102"/><text x="38.4958%" y="799.50"></text></g><g><title>Monitor::IWait (102 samples, 0.05%)</title><rect x="38.2458%" y="773" width="0.0458%" height="15" fill="rgb(208,186,3)" fg:x="85204" fg:w="102"/><text x="38.4958%" y="783.50"></text></g><g><title>os::PlatformEvent::park (97 samples, 0.04%)</title><rect x="38.2480%" y="757" width="0.0435%" height="15" fill="rgb(216,36,26)" fg:x="85209" fg:w="97"/><text x="38.4980%" y="767.50"></text></g><g><title>__pthread_cond_wait (97 samples, 0.04%)</title><rect x="38.2480%" y="741" width="0.0435%" height="15" fill="rgb(248,201,23)" fg:x="85209" fg:w="97"/><text x="38.4980%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (97 samples, 0.04%)</title><rect x="38.2480%" y="725" width="0.0435%" height="15" fill="rgb(251,170,31)" fg:x="85209" fg:w="97"/><text x="38.4980%" y="735.50"></text></g><g><title>futex_wait_cancelable (96 samples, 0.04%)</title><rect x="38.2485%" y="709" width="0.0431%" height="15" fill="rgb(207,110,25)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.04%)</title><rect x="38.2485%" y="693" width="0.0431%" height="15" fill="rgb(250,54,15)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="703.50"></text></g><g><title>do_syscall_64 (96 samples, 0.04%)</title><rect x="38.2485%" y="677" width="0.0431%" height="15" fill="rgb(227,68,33)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="687.50"></text></g><g><title>__x64_sys_futex (96 samples, 0.04%)</title><rect x="38.2485%" y="661" width="0.0431%" height="15" fill="rgb(238,34,41)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="671.50"></text></g><g><title>do_futex (96 samples, 0.04%)</title><rect x="38.2485%" y="645" width="0.0431%" height="15" fill="rgb(220,11,15)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="655.50"></text></g><g><title>futex_wait (96 samples, 0.04%)</title><rect x="38.2485%" y="629" width="0.0431%" height="15" fill="rgb(246,111,35)" fg:x="85210" fg:w="96"/><text x="38.4985%" y="639.50"></text></g><g><title>futex_wait_queue_me (95 samples, 0.04%)</title><rect x="38.2489%" y="613" width="0.0426%" height="15" fill="rgb(209,88,53)" fg:x="85211" fg:w="95"/><text x="38.4989%" y="623.50"></text></g><g><title>schedule (94 samples, 0.04%)</title><rect x="38.2494%" y="597" width="0.0422%" height="15" fill="rgb(231,185,47)" fg:x="85212" fg:w="94"/><text x="38.4994%" y="607.50"></text></g><g><title>__schedule (93 samples, 0.04%)</title><rect x="38.2498%" y="581" width="0.0417%" height="15" fill="rgb(233,154,1)" fg:x="85213" fg:w="93"/><text x="38.4998%" y="591.50"></text></g><g><title>ttwu_do_activate (31 samples, 0.01%)</title><rect x="38.3185%" y="581" width="0.0139%" height="15" fill="rgb(225,15,46)" fg:x="85366" fg:w="31"/><text x="38.5685%" y="591.50"></text></g><g><title>do_syscall_64 (76 samples, 0.03%)</title><rect x="38.2997%" y="677" width="0.0341%" height="15" fill="rgb(211,135,41)" fg:x="85324" fg:w="76"/><text x="38.5497%" y="687.50"></text></g><g><title>__x64_sys_futex (76 samples, 0.03%)</title><rect x="38.2997%" y="661" width="0.0341%" height="15" fill="rgb(208,54,0)" fg:x="85324" fg:w="76"/><text x="38.5497%" y="671.50"></text></g><g><title>do_futex (76 samples, 0.03%)</title><rect x="38.2997%" y="645" width="0.0341%" height="15" fill="rgb(244,136,14)" fg:x="85324" fg:w="76"/><text x="38.5497%" y="655.50"></text></g><g><title>futex_wake (74 samples, 0.03%)</title><rect x="38.3006%" y="629" width="0.0332%" height="15" fill="rgb(241,56,14)" fg:x="85326" fg:w="74"/><text x="38.5506%" y="639.50"></text></g><g><title>wake_up_q (66 samples, 0.03%)</title><rect x="38.3042%" y="613" width="0.0296%" height="15" fill="rgb(205,80,24)" fg:x="85334" fg:w="66"/><text x="38.5542%" y="623.50"></text></g><g><title>try_to_wake_up (66 samples, 0.03%)</title><rect x="38.3042%" y="597" width="0.0296%" height="15" fill="rgb(220,57,4)" fg:x="85334" fg:w="66"/><text x="38.5542%" y="607.50"></text></g><g><title>__new_sem_post (81 samples, 0.04%)</title><rect x="38.2979%" y="725" width="0.0364%" height="15" fill="rgb(226,193,50)" fg:x="85320" fg:w="81"/><text x="38.5479%" y="735.50"></text></g><g><title>futex_wake (80 samples, 0.04%)</title><rect x="38.2983%" y="709" width="0.0359%" height="15" fill="rgb(231,168,22)" fg:x="85321" fg:w="80"/><text x="38.5483%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.04%)</title><rect x="38.2992%" y="693" width="0.0350%" height="15" fill="rgb(254,215,14)" fg:x="85323" fg:w="78"/><text x="38.5492%" y="703.50"></text></g><g><title>PosixSemaphore::signal (82 samples, 0.04%)</title><rect x="38.2979%" y="741" width="0.0368%" height="15" fill="rgb(211,115,16)" fg:x="85320" fg:w="82"/><text x="38.5479%" y="751.50"></text></g><g><title>finish_task_switch (49 samples, 0.02%)</title><rect x="38.3369%" y="549" width="0.0220%" height="15" fill="rgb(236,210,16)" fg:x="85407" fg:w="49"/><text x="38.5869%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (46 samples, 0.02%)</title><rect x="38.3383%" y="533" width="0.0206%" height="15" fill="rgb(221,94,12)" fg:x="85410" fg:w="46"/><text x="38.5883%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (44 samples, 0.02%)</title><rect x="38.3392%" y="517" width="0.0198%" height="15" fill="rgb(235,218,49)" fg:x="85412" fg:w="44"/><text x="38.5892%" y="527.50"></text></g><g><title>native_write_msr (44 samples, 0.02%)</title><rect x="38.3392%" y="501" width="0.0198%" height="15" fill="rgb(217,114,14)" fg:x="85412" fg:w="44"/><text x="38.5892%" y="511.50"></text></g><g><title>do_syscall_64 (58 samples, 0.03%)</title><rect x="38.3360%" y="661" width="0.0260%" height="15" fill="rgb(216,145,22)" fg:x="85405" fg:w="58"/><text x="38.5860%" y="671.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.03%)</title><rect x="38.3360%" y="645" width="0.0260%" height="15" fill="rgb(217,112,39)" fg:x="85405" fg:w="58"/><text x="38.5860%" y="655.50"></text></g><g><title>do_futex (58 samples, 0.03%)</title><rect x="38.3360%" y="629" width="0.0260%" height="15" fill="rgb(225,85,32)" fg:x="85405" fg:w="58"/><text x="38.5860%" y="639.50"></text></g><g><title>futex_wait (58 samples, 0.03%)</title><rect x="38.3360%" y="613" width="0.0260%" height="15" fill="rgb(245,209,47)" fg:x="85405" fg:w="58"/><text x="38.5860%" y="623.50"></text></g><g><title>futex_wait_queue_me (58 samples, 0.03%)</title><rect x="38.3360%" y="597" width="0.0260%" height="15" fill="rgb(218,220,15)" fg:x="85405" fg:w="58"/><text x="38.5860%" y="607.50"></text></g><g><title>schedule (57 samples, 0.03%)</title><rect x="38.3365%" y="581" width="0.0256%" height="15" fill="rgb(222,202,31)" fg:x="85406" fg:w="57"/><text x="38.5865%" y="591.50"></text></g><g><title>__schedule (57 samples, 0.03%)</title><rect x="38.3365%" y="565" width="0.0256%" height="15" fill="rgb(243,203,4)" fg:x="85406" fg:w="57"/><text x="38.5865%" y="575.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (152 samples, 0.07%)</title><rect x="38.2943%" y="789" width="0.0682%" height="15" fill="rgb(237,92,17)" fg:x="85312" fg:w="152"/><text x="38.5443%" y="799.50"></text></g><g><title>WorkGang::run_task (147 samples, 0.07%)</title><rect x="38.2965%" y="773" width="0.0660%" height="15" fill="rgb(231,119,7)" fg:x="85317" fg:w="147"/><text x="38.5465%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (144 samples, 0.06%)</title><rect x="38.2979%" y="757" width="0.0646%" height="15" fill="rgb(237,82,41)" fg:x="85320" fg:w="144"/><text x="38.5479%" y="767.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.03%)</title><rect x="38.3347%" y="741" width="0.0278%" height="15" fill="rgb(226,81,48)" fg:x="85402" fg:w="62"/><text x="38.5847%" y="751.50"></text></g><g><title>__new_sem_wait_slow (60 samples, 0.03%)</title><rect x="38.3356%" y="725" width="0.0269%" height="15" fill="rgb(234,70,51)" fg:x="85404" fg:w="60"/><text x="38.5856%" y="735.50"></text></g><g><title>do_futex_wait (60 samples, 0.03%)</title><rect x="38.3356%" y="709" width="0.0269%" height="15" fill="rgb(251,86,4)" fg:x="85404" fg:w="60"/><text x="38.5856%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (60 samples, 0.03%)</title><rect x="38.3356%" y="693" width="0.0269%" height="15" fill="rgb(244,144,28)" fg:x="85404" fg:w="60"/><text x="38.5856%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.03%)</title><rect x="38.3360%" y="677" width="0.0265%" height="15" fill="rgb(232,161,39)" fg:x="85405" fg:w="59"/><text x="38.5860%" y="687.50"></text></g><g><title>__GI___sched_yield (31 samples, 0.01%)</title><rect x="38.3688%" y="789" width="0.0139%" height="15" fill="rgb(247,34,51)" fg:x="85478" fg:w="31"/><text x="38.6188%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="38.3724%" y="773" width="0.0103%" height="15" fill="rgb(225,132,2)" fg:x="85486" fg:w="23"/><text x="38.6224%" y="783.50"></text></g><g><title>SafepointSynchronize::begin (429 samples, 0.19%)</title><rect x="38.1964%" y="805" width="0.1926%" height="15" fill="rgb(209,159,44)" fg:x="85094" fg:w="429"/><text x="38.4464%" y="815.50"></text></g><g><title>CodeHeap::next_used (36 samples, 0.02%)</title><rect x="38.4276%" y="725" width="0.0162%" height="15" fill="rgb(251,214,1)" fg:x="85609" fg:w="36"/><text x="38.6776%" y="735.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (51 samples, 0.02%)</title><rect x="38.4227%" y="757" width="0.0229%" height="15" fill="rgb(247,84,47)" fg:x="85598" fg:w="51"/><text x="38.6727%" y="767.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (47 samples, 0.02%)</title><rect x="38.4245%" y="741" width="0.0211%" height="15" fill="rgb(240,111,43)" fg:x="85602" fg:w="47"/><text x="38.6745%" y="751.50"></text></g><g><title>VM_Deoptimize::doit (55 samples, 0.02%)</title><rect x="38.4227%" y="773" width="0.0247%" height="15" fill="rgb(215,214,35)" fg:x="85598" fg:w="55"/><text x="38.6727%" y="783.50"></text></g><g><title>VM_G1CollectForAllocation::doit (23 samples, 0.01%)</title><rect x="38.4478%" y="773" width="0.0103%" height="15" fill="rgb(248,207,23)" fg:x="85654" fg:w="23"/><text x="38.6978%" y="783.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (23 samples, 0.01%)</title><rect x="38.4478%" y="757" width="0.0103%" height="15" fill="rgb(214,186,4)" fg:x="85654" fg:w="23"/><text x="38.6978%" y="767.50"></text></g><g><title>VM_Operation::evaluate (135 samples, 0.06%)</title><rect x="38.4038%" y="789" width="0.0606%" height="15" fill="rgb(220,133,22)" fg:x="85556" fg:w="135"/><text x="38.6538%" y="799.50"></text></g><g><title>VMThread::evaluate_operation (139 samples, 0.06%)</title><rect x="38.4025%" y="805" width="0.0624%" height="15" fill="rgb(239,134,19)" fg:x="85553" fg:w="139"/><text x="38.6525%" y="815.50"></text></g><g><title>Thread::call_run (848 samples, 0.38%)</title><rect x="38.0887%" y="853" width="0.3806%" height="15" fill="rgb(250,140,9)" fg:x="84854" fg:w="848"/><text x="38.3387%" y="863.50"></text></g><g><title>VMThread::run (848 samples, 0.38%)</title><rect x="38.0887%" y="837" width="0.3806%" height="15" fill="rgb(225,59,14)" fg:x="84854" fg:w="848"/><text x="38.3387%" y="847.50"></text></g><g><title>VMThread::loop (848 samples, 0.38%)</title><rect x="38.0887%" y="821" width="0.3806%" height="15" fill="rgb(214,152,51)" fg:x="84854" fg:w="848"/><text x="38.3387%" y="831.50"></text></g><g><title>__GI___clone (872 samples, 0.39%)</title><rect x="38.0788%" y="901" width="0.3914%" height="15" fill="rgb(251,227,43)" fg:x="84832" fg:w="872"/><text x="38.3288%" y="911.50"></text></g><g><title>start_thread (851 samples, 0.38%)</title><rect x="38.0882%" y="885" width="0.3820%" height="15" fill="rgb(241,96,17)" fg:x="84853" fg:w="851"/><text x="38.3382%" y="895.50"></text></g><g><title>thread_native_entry (851 samples, 0.38%)</title><rect x="38.0882%" y="869" width="0.3820%" height="15" fill="rgb(234,198,43)" fg:x="84853" fg:w="851"/><text x="38.3382%" y="879.50"></text></g><g><title>VM_Thread (1,000 samples, 0.45%)</title><rect x="38.0263%" y="917" width="0.4489%" height="15" fill="rgb(220,108,29)" fg:x="84715" fg:w="1000"/><text x="38.2763%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.01%)</title><rect x="38.5650%" y="757" width="0.0139%" height="15" fill="rgb(226,163,33)" fg:x="85915" fg:w="31"/><text x="38.8150%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.01%)</title><rect x="38.5650%" y="741" width="0.0139%" height="15" fill="rgb(205,194,45)" fg:x="85915" fg:w="31"/><text x="38.8150%" y="751.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="38.5654%" y="725" width="0.0135%" height="15" fill="rgb(206,143,44)" fg:x="85916" fg:w="30"/><text x="38.8154%" y="735.50"></text></g><g><title>do_epoll_wait (39 samples, 0.02%)</title><rect x="38.5618%" y="837" width="0.0175%" height="15" fill="rgb(236,136,36)" fg:x="85908" fg:w="39"/><text x="38.8118%" y="847.50"></text></g><g><title>schedule_hrtimeout_range_clock (34 samples, 0.02%)</title><rect x="38.5641%" y="821" width="0.0153%" height="15" fill="rgb(249,172,42)" fg:x="85913" fg:w="34"/><text x="38.8141%" y="831.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="38.5650%" y="805" width="0.0144%" height="15" fill="rgb(216,139,23)" fg:x="85915" fg:w="32"/><text x="38.8150%" y="815.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="38.5650%" y="789" width="0.0144%" height="15" fill="rgb(207,166,20)" fg:x="85915" fg:w="32"/><text x="38.8150%" y="799.50"></text></g><g><title>finish_task_switch (32 samples, 0.01%)</title><rect x="38.5650%" y="773" width="0.0144%" height="15" fill="rgb(210,209,22)" fg:x="85915" fg:w="32"/><text x="38.8150%" y="783.50"></text></g><g><title>__x64_sys_epoll_pwait (40 samples, 0.02%)</title><rect x="38.5618%" y="853" width="0.0180%" height="15" fill="rgb(232,118,20)" fg:x="85908" fg:w="40"/><text x="38.8118%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (93 samples, 0.04%)</title><rect x="38.5852%" y="741" width="0.0417%" height="15" fill="rgb(238,113,42)" fg:x="85960" fg:w="93"/><text x="38.8352%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (90 samples, 0.04%)</title><rect x="38.5865%" y="725" width="0.0404%" height="15" fill="rgb(231,42,5)" fg:x="85963" fg:w="90"/><text x="38.8365%" y="735.50"></text></g><g><title>native_write_msr (90 samples, 0.04%)</title><rect x="38.5865%" y="709" width="0.0404%" height="15" fill="rgb(243,166,24)" fg:x="85963" fg:w="90"/><text x="38.8365%" y="719.50"></text></g><g><title>finish_task_switch (102 samples, 0.05%)</title><rect x="38.5843%" y="757" width="0.0458%" height="15" fill="rgb(237,226,12)" fg:x="85958" fg:w="102"/><text x="38.8343%" y="767.50"></text></g><g><title>futex_wait_queue_me (112 samples, 0.05%)</title><rect x="38.5820%" y="805" width="0.0503%" height="15" fill="rgb(229,133,24)" fg:x="85953" fg:w="112"/><text x="38.8320%" y="815.50"></text></g><g><title>schedule (111 samples, 0.05%)</title><rect x="38.5825%" y="789" width="0.0498%" height="15" fill="rgb(238,33,43)" fg:x="85954" fg:w="111"/><text x="38.8325%" y="799.50"></text></g><g><title>__schedule (111 samples, 0.05%)</title><rect x="38.5825%" y="773" width="0.0498%" height="15" fill="rgb(227,59,38)" fg:x="85954" fg:w="111"/><text x="38.8325%" y="783.50"></text></g><g><title>futex_wait (115 samples, 0.05%)</title><rect x="38.5811%" y="821" width="0.0516%" height="15" fill="rgb(230,97,0)" fg:x="85951" fg:w="115"/><text x="38.8311%" y="831.50"></text></g><g><title>__x64_sys_futex (132 samples, 0.06%)</title><rect x="38.5798%" y="853" width="0.0593%" height="15" fill="rgb(250,173,50)" fg:x="85948" fg:w="132"/><text x="38.8298%" y="863.50"></text></g><g><title>do_futex (132 samples, 0.06%)</title><rect x="38.5798%" y="837" width="0.0593%" height="15" fill="rgb(240,15,50)" fg:x="85948" fg:w="132"/><text x="38.8298%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="38.6422%" y="757" width="0.0126%" height="15" fill="rgb(221,93,22)" fg:x="86087" fg:w="28"/><text x="38.8922%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.01%)</title><rect x="38.6426%" y="741" width="0.0121%" height="15" fill="rgb(245,180,53)" fg:x="86088" fg:w="27"/><text x="38.8926%" y="751.50"></text></g><g><title>native_write_msr (27 samples, 0.01%)</title><rect x="38.6426%" y="725" width="0.0121%" height="15" fill="rgb(231,88,51)" fg:x="86088" fg:w="27"/><text x="38.8926%" y="735.50"></text></g><g><title>finish_task_switch (31 samples, 0.01%)</title><rect x="38.6417%" y="773" width="0.0139%" height="15" fill="rgb(240,58,21)" fg:x="86086" fg:w="31"/><text x="38.8917%" y="783.50"></text></g><g><title>__x64_sys_nanosleep (35 samples, 0.02%)</title><rect x="38.6404%" y="853" width="0.0157%" height="15" fill="rgb(237,21,10)" fg:x="86083" fg:w="35"/><text x="38.8904%" y="863.50"></text></g><g><title>hrtimer_nanosleep (35 samples, 0.02%)</title><rect x="38.6404%" y="837" width="0.0157%" height="15" fill="rgb(218,43,11)" fg:x="86083" fg:w="35"/><text x="38.8904%" y="847.50"></text></g><g><title>do_nanosleep (35 samples, 0.02%)</title><rect x="38.6404%" y="821" width="0.0157%" height="15" fill="rgb(218,221,29)" fg:x="86083" fg:w="35"/><text x="38.8904%" y="831.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="38.6413%" y="805" width="0.0148%" height="15" fill="rgb(214,118,42)" fg:x="86085" fg:w="33"/><text x="38.8913%" y="815.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="38.6413%" y="789" width="0.0148%" height="15" fill="rgb(251,200,26)" fg:x="86085" fg:w="33"/><text x="38.8913%" y="799.50"></text></g><g><title>do_syscall_64 (230 samples, 0.10%)</title><rect x="38.5596%" y="869" width="0.1032%" height="15" fill="rgb(237,101,39)" fg:x="85903" fg:w="230"/><text x="38.8096%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (238 samples, 0.11%)</title><rect x="38.5587%" y="885" width="0.1068%" height="15" fill="rgb(251,117,11)" fg:x="85901" fg:w="238"/><text x="38.8087%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.02%)</title><rect x="38.6677%" y="837" width="0.0229%" height="15" fill="rgb(216,223,23)" fg:x="86144" fg:w="51"/><text x="38.9177%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.02%)</title><rect x="38.6677%" y="821" width="0.0229%" height="15" fill="rgb(251,54,12)" fg:x="86144" fg:w="51"/><text x="38.9177%" y="831.50"></text></g><g><title>native_write_msr (51 samples, 0.02%)</title><rect x="38.6677%" y="805" width="0.0229%" height="15" fill="rgb(254,176,54)" fg:x="86144" fg:w="51"/><text x="38.9177%" y="815.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (473 samples, 0.21%)</title><rect x="38.4788%" y="901" width="0.2123%" height="15" fill="rgb(210,32,8)" fg:x="85723" fg:w="473"/><text x="38.7288%" y="911.50"></text></g><g><title>ret_from_fork (56 samples, 0.03%)</title><rect x="38.6659%" y="885" width="0.0251%" height="15" fill="rgb(235,52,38)" fg:x="86140" fg:w="56"/><text x="38.9159%" y="895.50"></text></g><g><title>schedule_tail (53 samples, 0.02%)</title><rect x="38.6673%" y="869" width="0.0238%" height="15" fill="rgb(231,4,44)" fg:x="86143" fg:w="53"/><text x="38.9173%" y="879.50"></text></g><g><title>finish_task_switch (53 samples, 0.02%)</title><rect x="38.6673%" y="853" width="0.0238%" height="15" fill="rgb(249,2,32)" fg:x="86143" fg:w="53"/><text x="38.9173%" y="863.50"></text></g><g><title>bazel (500 samples, 0.22%)</title><rect x="38.4765%" y="917" width="0.2244%" height="15" fill="rgb(224,65,26)" fg:x="85718" fg:w="500"/><text x="38.7265%" y="927.50"></text></g><g><title>RunfilesCreator::ReadManifest (32 samples, 0.01%)</title><rect x="38.7158%" y="885" width="0.0144%" height="15" fill="rgb(250,73,40)" fg:x="86251" fg:w="32"/><text x="38.9658%" y="895.50"></text></g><g><title>[unknown] (36 samples, 0.02%)</title><rect x="38.7158%" y="901" width="0.0162%" height="15" fill="rgb(253,177,16)" fg:x="86251" fg:w="36"/><text x="38.9658%" y="911.50"></text></g><g><title>_dl_start_user (23 samples, 0.01%)</title><rect x="38.7319%" y="901" width="0.0103%" height="15" fill="rgb(217,32,34)" fg:x="86287" fg:w="23"/><text x="38.9819%" y="911.50"></text></g><g><title>_dl_init (23 samples, 0.01%)</title><rect x="38.7319%" y="885" width="0.0103%" height="15" fill="rgb(212,7,10)" fg:x="86287" fg:w="23"/><text x="38.9819%" y="895.50"></text></g><g><title>call_init (23 samples, 0.01%)</title><rect x="38.7319%" y="869" width="0.0103%" height="15" fill="rgb(245,89,8)" fg:x="86287" fg:w="23"/><text x="38.9819%" y="879.50"></text></g><g><title>call_init (23 samples, 0.01%)</title><rect x="38.7319%" y="853" width="0.0103%" height="15" fill="rgb(237,16,53)" fg:x="86287" fg:w="23"/><text x="38.9819%" y="863.50"></text></g><g><title>RunfilesCreator::ScanTreeAndPrune (23 samples, 0.01%)</title><rect x="38.7530%" y="837" width="0.0103%" height="15" fill="rgb(250,204,30)" fg:x="86334" fg:w="23"/><text x="39.0030%" y="847.50"></text></g><g><title>btrfs_lock_root_node (27 samples, 0.01%)</title><rect x="38.7678%" y="677" width="0.0121%" height="15" fill="rgb(208,77,27)" fg:x="86367" fg:w="27"/><text x="39.0178%" y="687.50"></text></g><g><title>__btrfs_tree_lock (27 samples, 0.01%)</title><rect x="38.7678%" y="661" width="0.0121%" height="15" fill="rgb(250,204,28)" fg:x="86367" fg:w="27"/><text x="39.0178%" y="671.50"></text></g><g><title>schedule (26 samples, 0.01%)</title><rect x="38.7683%" y="645" width="0.0117%" height="15" fill="rgb(244,63,21)" fg:x="86368" fg:w="26"/><text x="39.0183%" y="655.50"></text></g><g><title>__schedule (26 samples, 0.01%)</title><rect x="38.7683%" y="629" width="0.0117%" height="15" fill="rgb(236,85,44)" fg:x="86368" fg:w="26"/><text x="39.0183%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (29 samples, 0.01%)</title><rect x="38.7678%" y="709" width="0.0130%" height="15" fill="rgb(215,98,4)" fg:x="86367" fg:w="29"/><text x="39.0178%" y="719.50"></text></g><g><title>btrfs_search_slot (29 samples, 0.01%)</title><rect x="38.7678%" y="693" width="0.0130%" height="15" fill="rgb(235,38,11)" fg:x="86367" fg:w="29"/><text x="39.0178%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (35 samples, 0.02%)</title><rect x="38.7656%" y="725" width="0.0157%" height="15" fill="rgb(254,186,25)" fg:x="86362" fg:w="35"/><text x="39.0156%" y="735.50"></text></g><g><title>btrfs_rename2 (41 samples, 0.02%)</title><rect x="38.7656%" y="741" width="0.0184%" height="15" fill="rgb(225,55,31)" fg:x="86362" fg:w="41"/><text x="39.0156%" y="751.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (91 samples, 0.04%)</title><rect x="38.7445%" y="853" width="0.0408%" height="15" fill="rgb(211,15,21)" fg:x="86315" fg:w="91"/><text x="38.9945%" y="863.50"></text></g><g><title>rename (47 samples, 0.02%)</title><rect x="38.7643%" y="837" width="0.0211%" height="15" fill="rgb(215,187,41)" fg:x="86359" fg:w="47"/><text x="39.0143%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.02%)</title><rect x="38.7656%" y="821" width="0.0198%" height="15" fill="rgb(248,69,32)" fg:x="86362" fg:w="44"/><text x="39.0156%" y="831.50"></text></g><g><title>do_syscall_64 (44 samples, 0.02%)</title><rect x="38.7656%" y="805" width="0.0198%" height="15" fill="rgb(252,102,52)" fg:x="86362" fg:w="44"/><text x="39.0156%" y="815.50"></text></g><g><title>__x64_sys_rename (44 samples, 0.02%)</title><rect x="38.7656%" y="789" width="0.0198%" height="15" fill="rgb(253,140,32)" fg:x="86362" fg:w="44"/><text x="39.0156%" y="799.50"></text></g><g><title>do_renameat2 (44 samples, 0.02%)</title><rect x="38.7656%" y="773" width="0.0198%" height="15" fill="rgb(216,56,42)" fg:x="86362" fg:w="44"/><text x="39.0156%" y="783.50"></text></g><g><title>vfs_rename (44 samples, 0.02%)</title><rect x="38.7656%" y="757" width="0.0198%" height="15" fill="rgb(216,184,14)" fg:x="86362" fg:w="44"/><text x="39.0156%" y="767.50"></text></g><g><title>__libc_start_main (99 samples, 0.04%)</title><rect x="38.7432%" y="885" width="0.0444%" height="15" fill="rgb(237,187,27)" fg:x="86312" fg:w="99"/><text x="38.9932%" y="895.50"></text></g><g><title>main (96 samples, 0.04%)</title><rect x="38.7445%" y="869" width="0.0431%" height="15" fill="rgb(219,65,3)" fg:x="86315" fg:w="96"/><text x="38.9945%" y="879.50"></text></g><g><title>_dl_map_segments (32 samples, 0.01%)</title><rect x="38.7939%" y="741" width="0.0144%" height="15" fill="rgb(245,83,25)" fg:x="86425" fg:w="32"/><text x="39.0439%" y="751.50"></text></g><g><title>__mmap64 (27 samples, 0.01%)</title><rect x="38.7961%" y="725" width="0.0121%" height="15" fill="rgb(214,205,45)" fg:x="86430" fg:w="27"/><text x="39.0461%" y="735.50"></text></g><g><title>__mmap64 (27 samples, 0.01%)</title><rect x="38.7961%" y="709" width="0.0121%" height="15" fill="rgb(241,20,18)" fg:x="86430" fg:w="27"/><text x="39.0461%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.01%)</title><rect x="38.7961%" y="693" width="0.0121%" height="15" fill="rgb(232,163,23)" fg:x="86430" fg:w="27"/><text x="39.0461%" y="703.50"></text></g><g><title>do_syscall_64 (27 samples, 0.01%)</title><rect x="38.7961%" y="677" width="0.0121%" height="15" fill="rgb(214,5,46)" fg:x="86430" fg:w="27"/><text x="39.0461%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (45 samples, 0.02%)</title><rect x="38.7921%" y="757" width="0.0202%" height="15" fill="rgb(229,78,17)" fg:x="86421" fg:w="45"/><text x="39.0421%" y="767.50"></text></g><g><title>_dl_catch_exception (60 samples, 0.03%)</title><rect x="38.7898%" y="805" width="0.0269%" height="15" fill="rgb(248,89,10)" fg:x="86416" fg:w="60"/><text x="39.0398%" y="815.50"></text></g><g><title>openaux (60 samples, 0.03%)</title><rect x="38.7898%" y="789" width="0.0269%" height="15" fill="rgb(248,54,15)" fg:x="86416" fg:w="60"/><text x="39.0398%" y="799.50"></text></g><g><title>_dl_map_object (60 samples, 0.03%)</title><rect x="38.7898%" y="773" width="0.0269%" height="15" fill="rgb(223,116,6)" fg:x="86416" fg:w="60"/><text x="39.0398%" y="783.50"></text></g><g><title>_dl_map_object_deps (63 samples, 0.03%)</title><rect x="38.7894%" y="821" width="0.0283%" height="15" fill="rgb(205,125,38)" fg:x="86415" fg:w="63"/><text x="39.0394%" y="831.50"></text></g><g><title>dl_new_hash (28 samples, 0.01%)</title><rect x="38.8482%" y="757" width="0.0126%" height="15" fill="rgb(251,78,38)" fg:x="86546" fg:w="28"/><text x="39.0982%" y="767.50"></text></g><g><title>_dl_lookup_symbol_x (103 samples, 0.05%)</title><rect x="38.8433%" y="773" width="0.0462%" height="15" fill="rgb(253,78,28)" fg:x="86535" fg:w="103"/><text x="39.0933%" y="783.50"></text></g><g><title>do_lookup_x (64 samples, 0.03%)</title><rect x="38.8608%" y="757" width="0.0287%" height="15" fill="rgb(209,120,3)" fg:x="86574" fg:w="64"/><text x="39.1108%" y="767.50"></text></g><g><title>elf_machine_rela (140 samples, 0.06%)</title><rect x="38.8280%" y="789" width="0.0628%" height="15" fill="rgb(238,229,9)" fg:x="86501" fg:w="140"/><text x="39.0780%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (165 samples, 0.07%)</title><rect x="38.8213%" y="805" width="0.0741%" height="15" fill="rgb(253,159,18)" fg:x="86486" fg:w="165"/><text x="39.0713%" y="815.50"></text></g><g><title>_dl_relocate_object (174 samples, 0.08%)</title><rect x="38.8186%" y="821" width="0.0781%" height="15" fill="rgb(244,42,34)" fg:x="86480" fg:w="174"/><text x="39.0686%" y="831.50"></text></g><g><title>[ld-2.31.so] (246 samples, 0.11%)</title><rect x="38.7876%" y="837" width="0.1104%" height="15" fill="rgb(224,8,7)" fg:x="86411" fg:w="246"/><text x="39.0376%" y="847.50"></text></g><g><title>_dl_start_final (247 samples, 0.11%)</title><rect x="38.7876%" y="869" width="0.1109%" height="15" fill="rgb(210,201,45)" fg:x="86411" fg:w="247"/><text x="39.0376%" y="879.50"></text></g><g><title>_dl_sysdep_start (247 samples, 0.11%)</title><rect x="38.7876%" y="853" width="0.1109%" height="15" fill="rgb(252,185,21)" fg:x="86411" fg:w="247"/><text x="39.0376%" y="863.50"></text></g><g><title>_dl_start (249 samples, 0.11%)</title><rect x="38.7876%" y="885" width="0.1118%" height="15" fill="rgb(223,131,1)" fg:x="86411" fg:w="249"/><text x="39.0376%" y="895.50"></text></g><g><title>_start (350 samples, 0.16%)</title><rect x="38.7427%" y="901" width="0.1571%" height="15" fill="rgb(245,141,16)" fg:x="86311" fg:w="350"/><text x="38.9927%" y="911.50"></text></g><g><title>mmput (36 samples, 0.02%)</title><rect x="38.9137%" y="821" width="0.0162%" height="15" fill="rgb(229,55,45)" fg:x="86692" fg:w="36"/><text x="39.1637%" y="831.50"></text></g><g><title>exit_mmap (36 samples, 0.02%)</title><rect x="38.9137%" y="805" width="0.0162%" height="15" fill="rgb(208,92,15)" fg:x="86692" fg:w="36"/><text x="39.1637%" y="815.50"></text></g><g><title>build-runfiles (508 samples, 0.23%)</title><rect x="38.7068%" y="917" width="0.2280%" height="15" fill="rgb(234,185,47)" fg:x="86231" fg:w="508"/><text x="38.9568%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.03%)</title><rect x="38.9065%" y="901" width="0.0283%" height="15" fill="rgb(253,104,50)" fg:x="86676" fg:w="63"/><text x="39.1565%" y="911.50"></text></g><g><title>do_syscall_64 (63 samples, 0.03%)</title><rect x="38.9065%" y="885" width="0.0283%" height="15" fill="rgb(205,70,7)" fg:x="86676" fg:w="63"/><text x="39.1565%" y="895.50"></text></g><g><title>__x64_sys_exit_group (47 samples, 0.02%)</title><rect x="38.9137%" y="869" width="0.0211%" height="15" fill="rgb(240,178,43)" fg:x="86692" fg:w="47"/><text x="39.1637%" y="879.50"></text></g><g><title>do_group_exit (47 samples, 0.02%)</title><rect x="38.9137%" y="853" width="0.0211%" height="15" fill="rgb(214,112,2)" fg:x="86692" fg:w="47"/><text x="39.1637%" y="863.50"></text></g><g><title>do_exit (47 samples, 0.02%)</title><rect x="38.9137%" y="837" width="0.0211%" height="15" fill="rgb(206,46,17)" fg:x="86692" fg:w="47"/><text x="39.1637%" y="847.50"></text></g><g><title>_dl_map_object_from_fd (25 samples, 0.01%)</title><rect x="38.9725%" y="581" width="0.0112%" height="15" fill="rgb(225,220,16)" fg:x="86823" fg:w="25"/><text x="39.2225%" y="591.50"></text></g><g><title>_dl_map_object (31 samples, 0.01%)</title><rect x="38.9725%" y="597" width="0.0139%" height="15" fill="rgb(238,65,40)" fg:x="86823" fg:w="31"/><text x="39.2225%" y="607.50"></text></g><g><title>__GI___nss_lookup (44 samples, 0.02%)</title><rect x="38.9721%" y="773" width="0.0198%" height="15" fill="rgb(230,151,21)" fg:x="86822" fg:w="44"/><text x="39.2221%" y="783.50"></text></g><g><title>__GI___nss_lookup_function (44 samples, 0.02%)</title><rect x="38.9721%" y="757" width="0.0198%" height="15" fill="rgb(218,58,49)" fg:x="86822" fg:w="44"/><text x="39.2221%" y="767.50"></text></g><g><title>nss_load_library (44 samples, 0.02%)</title><rect x="38.9721%" y="741" width="0.0198%" height="15" fill="rgb(219,179,14)" fg:x="86822" fg:w="44"/><text x="39.2221%" y="751.50"></text></g><g><title>__GI___libc_dlopen_mode (44 samples, 0.02%)</title><rect x="38.9721%" y="725" width="0.0198%" height="15" fill="rgb(223,72,1)" fg:x="86822" fg:w="44"/><text x="39.2221%" y="735.50"></text></g><g><title>dlerror_run (43 samples, 0.02%)</title><rect x="38.9725%" y="709" width="0.0193%" height="15" fill="rgb(238,126,10)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="719.50"></text></g><g><title>__GI__dl_catch_error (43 samples, 0.02%)</title><rect x="38.9725%" y="693" width="0.0193%" height="15" fill="rgb(224,206,38)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="703.50"></text></g><g><title>__GI__dl_catch_exception (43 samples, 0.02%)</title><rect x="38.9725%" y="677" width="0.0193%" height="15" fill="rgb(212,201,54)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="687.50"></text></g><g><title>do_dlopen (43 samples, 0.02%)</title><rect x="38.9725%" y="661" width="0.0193%" height="15" fill="rgb(218,154,48)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="671.50"></text></g><g><title>_dl_open (43 samples, 0.02%)</title><rect x="38.9725%" y="645" width="0.0193%" height="15" fill="rgb(232,93,24)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="655.50"></text></g><g><title>__GI__dl_catch_exception (43 samples, 0.02%)</title><rect x="38.9725%" y="629" width="0.0193%" height="15" fill="rgb(245,30,21)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="639.50"></text></g><g><title>dl_open_worker (43 samples, 0.02%)</title><rect x="38.9725%" y="613" width="0.0193%" height="15" fill="rgb(242,148,29)" fg:x="86823" fg:w="43"/><text x="39.2225%" y="623.50"></text></g><g><title>getpwuid (68 samples, 0.03%)</title><rect x="38.9716%" y="805" width="0.0305%" height="15" fill="rgb(244,153,54)" fg:x="86821" fg:w="68"/><text x="39.2216%" y="815.50"></text></g><g><title>__getpwuid_r (68 samples, 0.03%)</title><rect x="38.9716%" y="789" width="0.0305%" height="15" fill="rgb(252,87,22)" fg:x="86821" fg:w="68"/><text x="39.2216%" y="799.50"></text></g><g><title>[bash] (83 samples, 0.04%)</title><rect x="38.9676%" y="821" width="0.0373%" height="15" fill="rgb(210,51,29)" fg:x="86812" fg:w="83"/><text x="39.2176%" y="831.50"></text></g><g><title>initialize_shell_variables (111 samples, 0.05%)</title><rect x="38.9671%" y="837" width="0.0498%" height="15" fill="rgb(242,136,47)" fg:x="86811" fg:w="111"/><text x="39.2171%" y="847.50"></text></g><g><title>[bash] (151 samples, 0.07%)</title><rect x="38.9573%" y="853" width="0.0678%" height="15" fill="rgb(238,68,4)" fg:x="86789" fg:w="151"/><text x="39.2073%" y="863.50"></text></g><g><title>sched_exec (25 samples, 0.01%)</title><rect x="39.0542%" y="629" width="0.0112%" height="15" fill="rgb(242,161,30)" fg:x="87005" fg:w="25"/><text x="39.3042%" y="639.50"></text></g><g><title>stop_one_cpu (23 samples, 0.01%)</title><rect x="39.0551%" y="613" width="0.0103%" height="15" fill="rgb(218,58,44)" fg:x="87007" fg:w="23"/><text x="39.3051%" y="623.50"></text></g><g><title>bprm_execve (51 samples, 0.02%)</title><rect x="39.0502%" y="645" width="0.0229%" height="15" fill="rgb(252,125,32)" fg:x="86996" fg:w="51"/><text x="39.3002%" y="655.50"></text></g><g><title>shell_execve (62 samples, 0.03%)</title><rect x="39.0493%" y="741" width="0.0278%" height="15" fill="rgb(219,178,0)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="751.50"></text></g><g><title>__GI_execve (62 samples, 0.03%)</title><rect x="39.0493%" y="725" width="0.0278%" height="15" fill="rgb(213,152,7)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.03%)</title><rect x="39.0493%" y="709" width="0.0278%" height="15" fill="rgb(249,109,34)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="719.50"></text></g><g><title>do_syscall_64 (62 samples, 0.03%)</title><rect x="39.0493%" y="693" width="0.0278%" height="15" fill="rgb(232,96,21)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="703.50"></text></g><g><title>__x64_sys_execve (62 samples, 0.03%)</title><rect x="39.0493%" y="677" width="0.0278%" height="15" fill="rgb(228,27,39)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="687.50"></text></g><g><title>do_execveat_common (62 samples, 0.03%)</title><rect x="39.0493%" y="661" width="0.0278%" height="15" fill="rgb(211,182,52)" fg:x="86994" fg:w="62"/><text x="39.2993%" y="671.50"></text></g><g><title>[bash] (70 samples, 0.03%)</title><rect x="39.0461%" y="773" width="0.0314%" height="15" fill="rgb(234,178,38)" fg:x="86987" fg:w="70"/><text x="39.2961%" y="783.50"></text></g><g><title>exec_builtin (69 samples, 0.03%)</title><rect x="39.0466%" y="757" width="0.0310%" height="15" fill="rgb(221,111,3)" fg:x="86988" fg:w="69"/><text x="39.2966%" y="767.50"></text></g><g><title>execute_command (90 samples, 0.04%)</title><rect x="39.0457%" y="805" width="0.0404%" height="15" fill="rgb(228,175,21)" fg:x="86986" fg:w="90"/><text x="39.2957%" y="815.50"></text></g><g><title>execute_command_internal (90 samples, 0.04%)</title><rect x="39.0457%" y="789" width="0.0404%" height="15" fill="rgb(228,174,43)" fg:x="86986" fg:w="90"/><text x="39.2957%" y="799.50"></text></g><g><title>execute_command_internal (99 samples, 0.04%)</title><rect x="39.0435%" y="821" width="0.0444%" height="15" fill="rgb(211,191,0)" fg:x="86981" fg:w="99"/><text x="39.2935%" y="831.50"></text></g><g><title>execute_command (100 samples, 0.04%)</title><rect x="39.0435%" y="837" width="0.0449%" height="15" fill="rgb(253,117,3)" fg:x="86981" fg:w="100"/><text x="39.2935%" y="847.50"></text></g><g><title>[bash] (36 samples, 0.02%)</title><rect x="39.0924%" y="773" width="0.0162%" height="15" fill="rgb(241,127,19)" fg:x="87090" fg:w="36"/><text x="39.3424%" y="783.50"></text></g><g><title>[bash] (46 samples, 0.02%)</title><rect x="39.0906%" y="789" width="0.0206%" height="15" fill="rgb(218,103,12)" fg:x="87086" fg:w="46"/><text x="39.3406%" y="799.50"></text></g><g><title>parse_command (52 samples, 0.02%)</title><rect x="39.0883%" y="821" width="0.0233%" height="15" fill="rgb(236,214,43)" fg:x="87081" fg:w="52"/><text x="39.3383%" y="831.50"></text></g><g><title>yyparse (52 samples, 0.02%)</title><rect x="39.0883%" y="805" width="0.0233%" height="15" fill="rgb(244,144,19)" fg:x="87081" fg:w="52"/><text x="39.3383%" y="815.50"></text></g><g><title>reader_loop (153 samples, 0.07%)</title><rect x="39.0435%" y="853" width="0.0687%" height="15" fill="rgb(246,188,10)" fg:x="86981" fg:w="153"/><text x="39.2935%" y="863.50"></text></g><g><title>read_command (53 samples, 0.02%)</title><rect x="39.0883%" y="837" width="0.0238%" height="15" fill="rgb(212,193,33)" fg:x="87081" fg:w="53"/><text x="39.3383%" y="847.50"></text></g><g><title>set_default_locale (37 samples, 0.02%)</title><rect x="39.1157%" y="853" width="0.0166%" height="15" fill="rgb(241,51,29)" fg:x="87142" fg:w="37"/><text x="39.3657%" y="863.50"></text></g><g><title>xmalloc (28 samples, 0.01%)</title><rect x="39.1198%" y="837" width="0.0126%" height="15" fill="rgb(211,58,19)" fg:x="87151" fg:w="28"/><text x="39.3698%" y="847.50"></text></g><g><title>__libc_start_main (396 samples, 0.18%)</title><rect x="38.9559%" y="885" width="0.1778%" height="15" fill="rgb(229,111,26)" fg:x="86786" fg:w="396"/><text x="39.2059%" y="895.50"></text></g><g><title>main (394 samples, 0.18%)</title><rect x="38.9568%" y="869" width="0.1769%" height="15" fill="rgb(213,115,40)" fg:x="86788" fg:w="394"/><text x="39.2068%" y="879.50"></text></g><g><title>do_mmap (32 samples, 0.01%)</title><rect x="39.1435%" y="629" width="0.0144%" height="15" fill="rgb(209,56,44)" fg:x="87204" fg:w="32"/><text x="39.3935%" y="639.50"></text></g><g><title>mmap_region (32 samples, 0.01%)</title><rect x="39.1435%" y="613" width="0.0144%" height="15" fill="rgb(230,108,32)" fg:x="87204" fg:w="32"/><text x="39.3935%" y="623.50"></text></g><g><title>ksys_mmap_pgoff (33 samples, 0.01%)</title><rect x="39.1435%" y="661" width="0.0148%" height="15" fill="rgb(216,165,31)" fg:x="87204" fg:w="33"/><text x="39.3935%" y="671.50"></text></g><g><title>vm_mmap_pgoff (33 samples, 0.01%)</title><rect x="39.1435%" y="645" width="0.0148%" height="15" fill="rgb(218,122,21)" fg:x="87204" fg:w="33"/><text x="39.3935%" y="655.50"></text></g><g><title>do_syscall_64 (37 samples, 0.02%)</title><rect x="39.1435%" y="677" width="0.0166%" height="15" fill="rgb(223,224,47)" fg:x="87204" fg:w="37"/><text x="39.3935%" y="687.50"></text></g><g><title>_dl_map_segments (43 samples, 0.02%)</title><rect x="39.1413%" y="741" width="0.0193%" height="15" fill="rgb(238,102,44)" fg:x="87199" fg:w="43"/><text x="39.3913%" y="751.50"></text></g><g><title>__mmap64 (39 samples, 0.02%)</title><rect x="39.1431%" y="725" width="0.0175%" height="15" fill="rgb(236,46,40)" fg:x="87203" fg:w="39"/><text x="39.3931%" y="735.50"></text></g><g><title>__mmap64 (39 samples, 0.02%)</title><rect x="39.1431%" y="709" width="0.0175%" height="15" fill="rgb(247,202,50)" fg:x="87203" fg:w="39"/><text x="39.3931%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="39.1435%" y="693" width="0.0171%" height="15" fill="rgb(209,99,20)" fg:x="87204" fg:w="38"/><text x="39.3935%" y="703.50"></text></g><g><title>_dl_map_object_from_fd (61 samples, 0.03%)</title><rect x="39.1404%" y="757" width="0.0274%" height="15" fill="rgb(252,27,34)" fg:x="87197" fg:w="61"/><text x="39.3904%" y="767.50"></text></g><g><title>_dl_catch_exception (88 samples, 0.04%)</title><rect x="39.1395%" y="805" width="0.0395%" height="15" fill="rgb(215,206,23)" fg:x="87195" fg:w="88"/><text x="39.3895%" y="815.50"></text></g><g><title>openaux (88 samples, 0.04%)</title><rect x="39.1395%" y="789" width="0.0395%" height="15" fill="rgb(212,135,36)" fg:x="87195" fg:w="88"/><text x="39.3895%" y="799.50"></text></g><g><title>_dl_map_object (88 samples, 0.04%)</title><rect x="39.1395%" y="773" width="0.0395%" height="15" fill="rgb(240,189,1)" fg:x="87195" fg:w="88"/><text x="39.3895%" y="783.50"></text></g><g><title>open_path (25 samples, 0.01%)</title><rect x="39.1678%" y="757" width="0.0112%" height="15" fill="rgb(242,56,20)" fg:x="87258" fg:w="25"/><text x="39.4178%" y="767.50"></text></g><g><title>_dl_map_object_deps (94 samples, 0.04%)</title><rect x="39.1391%" y="821" width="0.0422%" height="15" fill="rgb(247,132,33)" fg:x="87194" fg:w="94"/><text x="39.3891%" y="831.50"></text></g><g><title>_dl_lookup_symbol_x (33 samples, 0.01%)</title><rect x="39.2001%" y="773" width="0.0148%" height="15" fill="rgb(208,149,11)" fg:x="87330" fg:w="33"/><text x="39.4501%" y="783.50"></text></g><g><title>do_lookup_x (30 samples, 0.01%)</title><rect x="39.2015%" y="757" width="0.0135%" height="15" fill="rgb(211,33,11)" fg:x="87333" fg:w="30"/><text x="39.4515%" y="767.50"></text></g><g><title>elf_machine_rela (44 samples, 0.02%)</title><rect x="39.1956%" y="789" width="0.0198%" height="15" fill="rgb(221,29,38)" fg:x="87320" fg:w="44"/><text x="39.4456%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (78 samples, 0.04%)</title><rect x="39.1902%" y="805" width="0.0350%" height="15" fill="rgb(206,182,49)" fg:x="87308" fg:w="78"/><text x="39.4402%" y="815.50"></text></g><g><title>_dl_relocate_object (98 samples, 0.04%)</title><rect x="39.1839%" y="821" width="0.0440%" height="15" fill="rgb(216,140,1)" fg:x="87294" fg:w="98"/><text x="39.4339%" y="831.50"></text></g><g><title>[ld-2.31.so] (215 samples, 0.10%)</title><rect x="39.1337%" y="837" width="0.0965%" height="15" fill="rgb(232,57,40)" fg:x="87182" fg:w="215"/><text x="39.3837%" y="847.50"></text></g><g><title>_dl_start_final (219 samples, 0.10%)</title><rect x="39.1337%" y="869" width="0.0983%" height="15" fill="rgb(224,186,18)" fg:x="87182" fg:w="219"/><text x="39.3837%" y="879.50"></text></g><g><title>_dl_sysdep_start (219 samples, 0.10%)</title><rect x="39.1337%" y="853" width="0.0983%" height="15" fill="rgb(215,121,11)" fg:x="87182" fg:w="219"/><text x="39.3837%" y="863.50"></text></g><g><title>_dl_start (227 samples, 0.10%)</title><rect x="39.1337%" y="885" width="0.1019%" height="15" fill="rgb(245,147,10)" fg:x="87182" fg:w="227"/><text x="39.3837%" y="895.50"></text></g><g><title>_start (626 samples, 0.28%)</title><rect x="38.9559%" y="901" width="0.2810%" height="15" fill="rgb(238,153,13)" fg:x="86786" fg:w="626"/><text x="39.2059%" y="911.50"></text></g><g><title>asm_exc_page_fault (30 samples, 0.01%)</title><rect x="39.2369%" y="901" width="0.0135%" height="15" fill="rgb(233,108,0)" fg:x="87412" fg:w="30"/><text x="39.4869%" y="911.50"></text></g><g><title>unmap_page_range (28 samples, 0.01%)</title><rect x="39.2629%" y="741" width="0.0126%" height="15" fill="rgb(212,157,17)" fg:x="87470" fg:w="28"/><text x="39.5129%" y="751.50"></text></g><g><title>mmput (55 samples, 0.02%)</title><rect x="39.2517%" y="789" width="0.0247%" height="15" fill="rgb(225,213,38)" fg:x="87445" fg:w="55"/><text x="39.5017%" y="799.50"></text></g><g><title>exit_mmap (55 samples, 0.02%)</title><rect x="39.2517%" y="773" width="0.0247%" height="15" fill="rgb(248,16,11)" fg:x="87445" fg:w="55"/><text x="39.5017%" y="783.50"></text></g><g><title>unmap_vmas (31 samples, 0.01%)</title><rect x="39.2625%" y="757" width="0.0139%" height="15" fill="rgb(241,33,4)" fg:x="87469" fg:w="31"/><text x="39.5125%" y="767.50"></text></g><g><title>begin_new_exec (58 samples, 0.03%)</title><rect x="39.2513%" y="805" width="0.0260%" height="15" fill="rgb(222,26,43)" fg:x="87444" fg:w="58"/><text x="39.5013%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.04%)</title><rect x="39.2504%" y="901" width="0.0355%" height="15" fill="rgb(243,29,36)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="911.50"></text></g><g><title>do_syscall_64 (79 samples, 0.04%)</title><rect x="39.2504%" y="885" width="0.0355%" height="15" fill="rgb(241,9,27)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="895.50"></text></g><g><title>__x64_sys_execve (79 samples, 0.04%)</title><rect x="39.2504%" y="869" width="0.0355%" height="15" fill="rgb(205,117,26)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="879.50"></text></g><g><title>do_execveat_common (79 samples, 0.04%)</title><rect x="39.2504%" y="853" width="0.0355%" height="15" fill="rgb(209,80,39)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="863.50"></text></g><g><title>bprm_execve (79 samples, 0.04%)</title><rect x="39.2504%" y="837" width="0.0355%" height="15" fill="rgb(239,155,6)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="847.50"></text></g><g><title>load_elf_binary (79 samples, 0.04%)</title><rect x="39.2504%" y="821" width="0.0355%" height="15" fill="rgb(212,104,12)" fg:x="87442" fg:w="79"/><text x="39.5004%" y="831.50"></text></g><g><title>cc_wrapper.sh (783 samples, 0.35%)</title><rect x="38.9348%" y="917" width="0.3515%" height="15" fill="rgb(234,204,3)" fg:x="86739" fg:w="783"/><text x="39.1848%" y="927.50"></text></g><g><title>[[stack]] (35 samples, 0.02%)</title><rect x="39.2953%" y="901" width="0.0157%" height="15" fill="rgb(251,218,7)" fg:x="87542" fg:w="35"/><text x="39.5453%" y="911.50"></text></g><g><title>alloc_set_pte (32 samples, 0.01%)</title><rect x="40.9848%" y="789" width="0.0144%" height="15" fill="rgb(221,81,32)" fg:x="91306" fg:w="32"/><text x="41.2348%" y="799.50"></text></g><g><title>filemap_map_pages (88 samples, 0.04%)</title><rect x="40.9660%" y="805" width="0.0395%" height="15" fill="rgb(214,152,26)" fg:x="91264" fg:w="88"/><text x="41.2160%" y="815.50"></text></g><g><title>do_user_addr_fault (151 samples, 0.07%)</title><rect x="40.9458%" y="837" width="0.0678%" height="15" fill="rgb(223,22,3)" fg:x="91219" fg:w="151"/><text x="41.1958%" y="847.50"></text></g><g><title>handle_mm_fault (145 samples, 0.07%)</title><rect x="40.9485%" y="821" width="0.0651%" height="15" fill="rgb(207,174,7)" fg:x="91225" fg:w="145"/><text x="41.1985%" y="831.50"></text></g><g><title>exc_page_fault (153 samples, 0.07%)</title><rect x="40.9453%" y="853" width="0.0687%" height="15" fill="rgb(224,19,52)" fg:x="91218" fg:w="153"/><text x="41.1953%" y="863.50"></text></g><g><title>asm_exc_page_fault (154 samples, 0.07%)</title><rect x="40.9453%" y="869" width="0.0691%" height="15" fill="rgb(228,24,14)" fg:x="91218" fg:w="154"/><text x="41.1953%" y="879.50"></text></g><g><title>[libc-2.31.so] (428 samples, 0.19%)</title><rect x="40.8264%" y="885" width="0.1921%" height="15" fill="rgb(230,153,43)" fg:x="90953" fg:w="428"/><text x="41.0764%" y="895.50"></text></g><g><title>btrfs_search_slot (29 samples, 0.01%)</title><rect x="41.0320%" y="709" width="0.0130%" height="15" fill="rgb(231,106,12)" fg:x="91411" fg:w="29"/><text x="41.2820%" y="719.50"></text></g><g><title>btrfs_lookup (31 samples, 0.01%)</title><rect x="41.0315%" y="757" width="0.0139%" height="15" fill="rgb(215,92,2)" fg:x="91410" fg:w="31"/><text x="41.2815%" y="767.50"></text></g><g><title>btrfs_lookup_dentry (31 samples, 0.01%)</title><rect x="41.0315%" y="741" width="0.0139%" height="15" fill="rgb(249,143,25)" fg:x="91410" fg:w="31"/><text x="41.2815%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (30 samples, 0.01%)</title><rect x="41.0320%" y="725" width="0.0135%" height="15" fill="rgb(252,7,35)" fg:x="91411" fg:w="30"/><text x="41.2820%" y="735.50"></text></g><g><title>__lookup_slow (39 samples, 0.02%)</title><rect x="41.0315%" y="773" width="0.0175%" height="15" fill="rgb(216,69,40)" fg:x="91410" fg:w="39"/><text x="41.2815%" y="783.50"></text></g><g><title>filename_lookup (67 samples, 0.03%)</title><rect x="41.0207%" y="821" width="0.0301%" height="15" fill="rgb(240,36,33)" fg:x="91386" fg:w="67"/><text x="41.2707%" y="831.50"></text></g><g><title>path_lookupat (64 samples, 0.03%)</title><rect x="41.0221%" y="805" width="0.0287%" height="15" fill="rgb(231,128,14)" fg:x="91389" fg:w="64"/><text x="41.2721%" y="815.50"></text></g><g><title>walk_component (43 samples, 0.02%)</title><rect x="41.0315%" y="789" width="0.0193%" height="15" fill="rgb(245,143,14)" fg:x="91410" fg:w="43"/><text x="41.2815%" y="799.50"></text></g><g><title>do_syscall_64 (101 samples, 0.05%)</title><rect x="41.0198%" y="853" width="0.0453%" height="15" fill="rgb(222,130,28)" fg:x="91384" fg:w="101"/><text x="41.2698%" y="863.50"></text></g><g><title>do_faccessat (100 samples, 0.04%)</title><rect x="41.0203%" y="837" width="0.0449%" height="15" fill="rgb(212,10,48)" fg:x="91385" fg:w="100"/><text x="41.2703%" y="847.50"></text></g><g><title>__GI___access (103 samples, 0.05%)</title><rect x="41.0194%" y="885" width="0.0462%" height="15" fill="rgb(254,118,45)" fg:x="91383" fg:w="103"/><text x="41.2694%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.05%)</title><rect x="41.0198%" y="869" width="0.0458%" height="15" fill="rgb(228,6,45)" fg:x="91384" fg:w="102"/><text x="41.2698%" y="879.50"></text></g><g><title>__GI___libc_free (24 samples, 0.01%)</title><rect x="41.0764%" y="885" width="0.0108%" height="15" fill="rgb(241,18,35)" fg:x="91510" fg:w="24"/><text x="41.3264%" y="895.50"></text></g><g><title>__GI___pthread_once (26 samples, 0.01%)</title><rect x="41.1155%" y="885" width="0.0117%" height="15" fill="rgb(227,214,53)" fg:x="91597" fg:w="26"/><text x="41.3655%" y="895.50"></text></g><g><title>__GI___readlink (46 samples, 0.02%)</title><rect x="41.1383%" y="885" width="0.0206%" height="15" fill="rgb(224,107,51)" fg:x="91648" fg:w="46"/><text x="41.3883%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="41.1383%" y="869" width="0.0206%" height="15" fill="rgb(248,60,28)" fg:x="91648" fg:w="46"/><text x="41.3883%" y="879.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="41.1383%" y="853" width="0.0206%" height="15" fill="rgb(249,101,23)" fg:x="91648" fg:w="46"/><text x="41.3883%" y="863.50"></text></g><g><title>__x64_sys_readlink (46 samples, 0.02%)</title><rect x="41.1383%" y="837" width="0.0206%" height="15" fill="rgb(228,51,19)" fg:x="91648" fg:w="46"/><text x="41.3883%" y="847.50"></text></g><g><title>do_readlinkat (46 samples, 0.02%)</title><rect x="41.1383%" y="821" width="0.0206%" height="15" fill="rgb(213,20,6)" fg:x="91648" fg:w="46"/><text x="41.3883%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (90 samples, 0.04%)</title><rect x="41.1716%" y="741" width="0.0404%" height="15" fill="rgb(212,124,10)" fg:x="91722" fg:w="90"/><text x="41.4216%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (90 samples, 0.04%)</title><rect x="41.1716%" y="725" width="0.0404%" height="15" fill="rgb(248,3,40)" fg:x="91722" fg:w="90"/><text x="41.4216%" y="735.50"></text></g><g><title>native_write_msr (90 samples, 0.04%)</title><rect x="41.1716%" y="709" width="0.0404%" height="15" fill="rgb(223,178,23)" fg:x="91722" fg:w="90"/><text x="41.4216%" y="719.50"></text></g><g><title>schedule (99 samples, 0.04%)</title><rect x="41.1702%" y="789" width="0.0444%" height="15" fill="rgb(240,132,45)" fg:x="91719" fg:w="99"/><text x="41.4202%" y="799.50"></text></g><g><title>__schedule (99 samples, 0.04%)</title><rect x="41.1702%" y="773" width="0.0444%" height="15" fill="rgb(245,164,36)" fg:x="91719" fg:w="99"/><text x="41.4202%" y="783.50"></text></g><g><title>finish_task_switch (99 samples, 0.04%)</title><rect x="41.1702%" y="757" width="0.0444%" height="15" fill="rgb(231,188,53)" fg:x="91719" fg:w="99"/><text x="41.4202%" y="767.50"></text></g><g><title>__do_sys_wait4 (110 samples, 0.05%)</title><rect x="41.1698%" y="837" width="0.0494%" height="15" fill="rgb(237,198,39)" fg:x="91718" fg:w="110"/><text x="41.4198%" y="847.50"></text></g><g><title>kernel_wait4 (110 samples, 0.05%)</title><rect x="41.1698%" y="821" width="0.0494%" height="15" fill="rgb(223,120,35)" fg:x="91718" fg:w="110"/><text x="41.4198%" y="831.50"></text></g><g><title>do_wait (110 samples, 0.05%)</title><rect x="41.1698%" y="805" width="0.0494%" height="15" fill="rgb(253,107,49)" fg:x="91718" fg:w="110"/><text x="41.4198%" y="815.50"></text></g><g><title>__GI___wait4 (112 samples, 0.05%)</title><rect x="41.1693%" y="885" width="0.0503%" height="15" fill="rgb(216,44,31)" fg:x="91717" fg:w="112"/><text x="41.4193%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (111 samples, 0.05%)</title><rect x="41.1698%" y="869" width="0.0498%" height="15" fill="rgb(253,87,21)" fg:x="91718" fg:w="111"/><text x="41.4198%" y="879.50"></text></g><g><title>do_syscall_64 (111 samples, 0.05%)</title><rect x="41.1698%" y="853" width="0.0498%" height="15" fill="rgb(226,18,2)" fg:x="91718" fg:w="111"/><text x="41.4198%" y="863.50"></text></g><g><title>link_path_walk.part.0 (28 samples, 0.01%)</title><rect x="41.2290%" y="773" width="0.0126%" height="15" fill="rgb(216,8,46)" fg:x="91850" fg:w="28"/><text x="41.4790%" y="783.50"></text></g><g><title>btrfs_lookup (31 samples, 0.01%)</title><rect x="41.2443%" y="741" width="0.0139%" height="15" fill="rgb(226,140,39)" fg:x="91884" fg:w="31"/><text x="41.4943%" y="751.50"></text></g><g><title>btrfs_lookup_dentry (31 samples, 0.01%)</title><rect x="41.2443%" y="725" width="0.0139%" height="15" fill="rgb(221,194,54)" fg:x="91884" fg:w="31"/><text x="41.4943%" y="735.50"></text></g><g><title>btrfs_lookup_dir_item (30 samples, 0.01%)</title><rect x="41.2447%" y="709" width="0.0135%" height="15" fill="rgb(213,92,11)" fg:x="91885" fg:w="30"/><text x="41.4947%" y="719.50"></text></g><g><title>btrfs_search_slot (30 samples, 0.01%)</title><rect x="41.2447%" y="693" width="0.0135%" height="15" fill="rgb(229,162,46)" fg:x="91885" fg:w="30"/><text x="41.4947%" y="703.50"></text></g><g><title>__lookup_slow (39 samples, 0.02%)</title><rect x="41.2443%" y="757" width="0.0175%" height="15" fill="rgb(214,111,36)" fg:x="91884" fg:w="39"/><text x="41.4943%" y="767.50"></text></g><g><title>path_lookupat (90 samples, 0.04%)</title><rect x="41.2268%" y="789" width="0.0404%" height="15" fill="rgb(207,6,21)" fg:x="91845" fg:w="90"/><text x="41.4768%" y="799.50"></text></g><g><title>walk_component (51 samples, 0.02%)</title><rect x="41.2443%" y="773" width="0.0229%" height="15" fill="rgb(213,127,38)" fg:x="91884" fg:w="51"/><text x="41.4943%" y="783.50"></text></g><g><title>filename_lookup (94 samples, 0.04%)</title><rect x="41.2254%" y="805" width="0.0422%" height="15" fill="rgb(238,118,32)" fg:x="91842" fg:w="94"/><text x="41.4754%" y="815.50"></text></g><g><title>do_syscall_64 (128 samples, 0.06%)</title><rect x="41.2218%" y="853" width="0.0575%" height="15" fill="rgb(240,139,39)" fg:x="91834" fg:w="128"/><text x="41.4718%" y="863.50"></text></g><g><title>__do_sys_newstat (128 samples, 0.06%)</title><rect x="41.2218%" y="837" width="0.0575%" height="15" fill="rgb(235,10,37)" fg:x="91834" fg:w="128"/><text x="41.4718%" y="847.50"></text></g><g><title>vfs_statx (126 samples, 0.06%)</title><rect x="41.2227%" y="821" width="0.0566%" height="15" fill="rgb(249,171,38)" fg:x="91836" fg:w="126"/><text x="41.4727%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (130 samples, 0.06%)</title><rect x="41.2218%" y="869" width="0.0584%" height="15" fill="rgb(242,144,32)" fg:x="91834" fg:w="130"/><text x="41.4718%" y="879.50"></text></g><g><title>__GI___xstat (136 samples, 0.06%)</title><rect x="41.2196%" y="885" width="0.0610%" height="15" fill="rgb(217,117,21)" fg:x="91829" fg:w="136"/><text x="41.4696%" y="895.50"></text></g><g><title>__internal_atexit (36 samples, 0.02%)</title><rect x="41.2999%" y="885" width="0.0162%" height="15" fill="rgb(249,87,1)" fg:x="92008" fg:w="36"/><text x="41.5499%" y="895.50"></text></g><g><title>__new_exitfn (23 samples, 0.01%)</title><rect x="41.3058%" y="869" width="0.0103%" height="15" fill="rgb(248,196,48)" fg:x="92021" fg:w="23"/><text x="41.5558%" y="879.50"></text></g><g><title>__libc_calloc (28 samples, 0.01%)</title><rect x="41.3192%" y="885" width="0.0126%" height="15" fill="rgb(251,206,33)" fg:x="92051" fg:w="28"/><text x="41.5692%" y="895.50"></text></g><g><title>_int_malloc (25 samples, 0.01%)</title><rect x="41.3206%" y="869" width="0.0112%" height="15" fill="rgb(232,141,28)" fg:x="92054" fg:w="25"/><text x="41.5706%" y="879.50"></text></g><g><title>btrfs_create (28 samples, 0.01%)</title><rect x="41.3417%" y="773" width="0.0126%" height="15" fill="rgb(209,167,14)" fg:x="92101" fg:w="28"/><text x="41.5917%" y="783.50"></text></g><g><title>btrfs_lookup_dir_item (36 samples, 0.02%)</title><rect x="41.3551%" y="741" width="0.0162%" height="15" fill="rgb(225,11,50)" fg:x="92131" fg:w="36"/><text x="41.6051%" y="751.50"></text></g><g><title>btrfs_search_slot (36 samples, 0.02%)</title><rect x="41.3551%" y="725" width="0.0162%" height="15" fill="rgb(209,50,20)" fg:x="92131" fg:w="36"/><text x="41.6051%" y="735.50"></text></g><g><title>btrfs_lookup (39 samples, 0.02%)</title><rect x="41.3543%" y="773" width="0.0175%" height="15" fill="rgb(212,17,46)" fg:x="92129" fg:w="39"/><text x="41.6043%" y="783.50"></text></g><g><title>btrfs_lookup_dentry (39 samples, 0.02%)</title><rect x="41.3543%" y="757" width="0.0175%" height="15" fill="rgb(216,101,39)" fg:x="92129" fg:w="39"/><text x="41.6043%" y="767.50"></text></g><g><title>do_filp_open (117 samples, 0.05%)</title><rect x="41.3354%" y="805" width="0.0525%" height="15" fill="rgb(212,228,48)" fg:x="92087" fg:w="117"/><text x="41.5854%" y="815.50"></text></g><g><title>path_openat (117 samples, 0.05%)</title><rect x="41.3354%" y="789" width="0.0525%" height="15" fill="rgb(250,6,50)" fg:x="92087" fg:w="117"/><text x="41.5854%" y="799.50"></text></g><g><title>do_syscall_64 (140 samples, 0.06%)</title><rect x="41.3327%" y="853" width="0.0628%" height="15" fill="rgb(250,160,48)" fg:x="92081" fg:w="140"/><text x="41.5827%" y="863.50"></text></g><g><title>__x64_sys_openat (140 samples, 0.06%)</title><rect x="41.3327%" y="837" width="0.0628%" height="15" fill="rgb(244,216,33)" fg:x="92081" fg:w="140"/><text x="41.5827%" y="847.50"></text></g><g><title>do_sys_openat2 (140 samples, 0.06%)</title><rect x="41.3327%" y="821" width="0.0628%" height="15" fill="rgb(207,157,5)" fg:x="92081" fg:w="140"/><text x="41.5827%" y="831.50"></text></g><g><title>__libc_open64 (145 samples, 0.07%)</title><rect x="41.3318%" y="885" width="0.0651%" height="15" fill="rgb(228,199,8)" fg:x="92079" fg:w="145"/><text x="41.5818%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (143 samples, 0.06%)</title><rect x="41.3327%" y="869" width="0.0642%" height="15" fill="rgb(227,80,20)" fg:x="92081" fg:w="143"/><text x="41.5827%" y="879.50"></text></g><g><title>__libc_start_main (28 samples, 0.01%)</title><rect x="41.4068%" y="885" width="0.0126%" height="15" fill="rgb(222,9,33)" fg:x="92246" fg:w="28"/><text x="41.6568%" y="895.50"></text></g><g><title>__GI_exit (26 samples, 0.01%)</title><rect x="41.4077%" y="869" width="0.0117%" height="15" fill="rgb(239,44,28)" fg:x="92248" fg:w="26"/><text x="41.6577%" y="879.50"></text></g><g><title>__run_exit_handlers (26 samples, 0.01%)</title><rect x="41.4077%" y="853" width="0.0117%" height="15" fill="rgb(249,187,43)" fg:x="92248" fg:w="26"/><text x="41.6577%" y="863.50"></text></g><g><title>__x64_sys_openat (29 samples, 0.01%)</title><rect x="41.4288%" y="821" width="0.0130%" height="15" fill="rgb(216,141,28)" fg:x="92295" fg:w="29"/><text x="41.6788%" y="831.50"></text></g><g><title>do_sys_openat2 (29 samples, 0.01%)</title><rect x="41.4288%" y="805" width="0.0130%" height="15" fill="rgb(230,154,53)" fg:x="92295" fg:w="29"/><text x="41.6788%" y="815.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="41.4288%" y="837" width="0.0135%" height="15" fill="rgb(227,82,4)" fg:x="92295" fg:w="30"/><text x="41.6788%" y="847.50"></text></g><g><title>__GI___open64_nocancel (32 samples, 0.01%)</title><rect x="41.4283%" y="869" width="0.0144%" height="15" fill="rgb(220,107,16)" fg:x="92294" fg:w="32"/><text x="41.6783%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="41.4288%" y="853" width="0.0139%" height="15" fill="rgb(207,187,2)" fg:x="92295" fg:w="31"/><text x="41.6788%" y="863.50"></text></g><g><title>__opendir (35 samples, 0.02%)</title><rect x="41.4283%" y="885" width="0.0157%" height="15" fill="rgb(210,162,52)" fg:x="92294" fg:w="35"/><text x="41.6783%" y="895.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="41.4530%" y="837" width="0.0206%" height="15" fill="rgb(217,216,49)" fg:x="92349" fg:w="46"/><text x="41.7030%" y="847.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.02%)</title><rect x="41.4530%" y="821" width="0.0206%" height="15" fill="rgb(218,146,49)" fg:x="92349" fg:w="46"/><text x="41.7030%" y="831.50"></text></g><g><title>do_futex (45 samples, 0.02%)</title><rect x="41.4535%" y="805" width="0.0202%" height="15" fill="rgb(216,55,40)" fg:x="92350" fg:w="45"/><text x="41.7035%" y="815.50"></text></g><g><title>futex_wake (45 samples, 0.02%)</title><rect x="41.4535%" y="789" width="0.0202%" height="15" fill="rgb(208,196,21)" fg:x="92350" fg:w="45"/><text x="41.7035%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.02%)</title><rect x="41.4526%" y="853" width="0.0233%" height="15" fill="rgb(242,117,42)" fg:x="92348" fg:w="52"/><text x="41.7026%" y="863.50"></text></g><g><title>__pthread_once_slow (74 samples, 0.03%)</title><rect x="41.4440%" y="885" width="0.0332%" height="15" fill="rgb(210,11,23)" fg:x="92329" fg:w="74"/><text x="41.6940%" y="895.50"></text></g><g><title>futex_wake (61 samples, 0.03%)</title><rect x="41.4499%" y="869" width="0.0274%" height="15" fill="rgb(217,110,2)" fg:x="92342" fg:w="61"/><text x="41.6999%" y="879.50"></text></g><g><title>[ld-2.31.so] (32 samples, 0.01%)</title><rect x="41.4799%" y="869" width="0.0144%" height="15" fill="rgb(229,77,54)" fg:x="92409" fg:w="32"/><text x="41.7299%" y="879.50"></text></g><g><title>_dl_lookup_symbol_x (32 samples, 0.01%)</title><rect x="41.4799%" y="853" width="0.0144%" height="15" fill="rgb(218,53,16)" fg:x="92409" fg:w="32"/><text x="41.7299%" y="863.50"></text></g><g><title>do_lookup_x (25 samples, 0.01%)</title><rect x="41.4831%" y="837" width="0.0112%" height="15" fill="rgb(215,38,13)" fg:x="92416" fg:w="25"/><text x="41.7331%" y="847.50"></text></g><g><title>_dl_runtime_resolve_xsavec (48 samples, 0.02%)</title><rect x="41.4786%" y="885" width="0.0215%" height="15" fill="rgb(235,42,18)" fg:x="92406" fg:w="48"/><text x="41.7286%" y="895.50"></text></g><g><title>_int_free (49 samples, 0.02%)</title><rect x="41.5001%" y="885" width="0.0220%" height="15" fill="rgb(219,66,54)" fg:x="92454" fg:w="49"/><text x="41.7501%" y="895.50"></text></g><g><title>alloc_pages_vma (28 samples, 0.01%)</title><rect x="41.5724%" y="821" width="0.0126%" height="15" fill="rgb(222,205,4)" fg:x="92615" fg:w="28"/><text x="41.8224%" y="831.50"></text></g><g><title>__alloc_pages_nodemask (28 samples, 0.01%)</title><rect x="41.5724%" y="805" width="0.0126%" height="15" fill="rgb(227,213,46)" fg:x="92615" fg:w="28"/><text x="41.8224%" y="815.50"></text></g><g><title>get_page_from_freelist (25 samples, 0.01%)</title><rect x="41.5737%" y="789" width="0.0112%" height="15" fill="rgb(250,145,42)" fg:x="92618" fg:w="25"/><text x="41.8237%" y="799.50"></text></g><g><title>page_add_file_rmap (108 samples, 0.05%)</title><rect x="41.7120%" y="789" width="0.0485%" height="15" fill="rgb(219,15,2)" fg:x="92926" fg:w="108"/><text x="41.9620%" y="799.50"></text></g><g><title>alloc_set_pte (178 samples, 0.08%)</title><rect x="41.6846%" y="805" width="0.0799%" height="15" fill="rgb(231,181,52)" fg:x="92865" fg:w="178"/><text x="41.9346%" y="815.50"></text></g><g><title>unlock_page (40 samples, 0.02%)</title><rect x="41.7672%" y="805" width="0.0180%" height="15" fill="rgb(235,1,42)" fg:x="93049" fg:w="40"/><text x="42.0172%" y="815.50"></text></g><g><title>filemap_map_pages (485 samples, 0.22%)</title><rect x="41.5872%" y="821" width="0.2177%" height="15" fill="rgb(249,88,27)" fg:x="92648" fg:w="485"/><text x="41.8372%" y="831.50"></text></g><g><title>xas_find (44 samples, 0.02%)</title><rect x="41.7852%" y="805" width="0.0198%" height="15" fill="rgb(235,145,16)" fg:x="93089" fg:w="44"/><text x="42.0352%" y="815.50"></text></g><g><title>xas_load (40 samples, 0.02%)</title><rect x="41.7870%" y="789" width="0.0180%" height="15" fill="rgb(237,114,19)" fg:x="93093" fg:w="40"/><text x="42.0370%" y="799.50"></text></g><g><title>handle_mm_fault (640 samples, 0.29%)</title><rect x="41.5414%" y="837" width="0.2873%" height="15" fill="rgb(238,51,50)" fg:x="92546" fg:w="640"/><text x="41.7914%" y="847.50"></text></g><g><title>do_user_addr_fault (676 samples, 0.30%)</title><rect x="41.5293%" y="853" width="0.3034%" height="15" fill="rgb(205,194,25)" fg:x="92519" fg:w="676"/><text x="41.7793%" y="863.50"></text></g><g><title>exc_page_fault (683 samples, 0.31%)</title><rect x="41.5271%" y="869" width="0.3066%" height="15" fill="rgb(215,203,17)" fg:x="92514" fg:w="683"/><text x="41.7771%" y="879.50"></text></g><g><title>asm_exc_page_fault (699 samples, 0.31%)</title><rect x="41.5262%" y="885" width="0.3138%" height="15" fill="rgb(233,112,49)" fg:x="92512" fg:w="699"/><text x="41.7762%" y="895.50"></text></g><g><title>asm_sysvec_irq_work (23 samples, 0.01%)</title><rect x="41.8458%" y="885" width="0.0103%" height="15" fill="rgb(241,130,26)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="895.50"></text></g><g><title>irqentry_exit_to_user_mode (23 samples, 0.01%)</title><rect x="41.8458%" y="869" width="0.0103%" height="15" fill="rgb(252,223,19)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (23 samples, 0.01%)</title><rect x="41.8458%" y="853" width="0.0103%" height="15" fill="rgb(211,95,25)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="863.50"></text></g><g><title>schedule (23 samples, 0.01%)</title><rect x="41.8458%" y="837" width="0.0103%" height="15" fill="rgb(251,182,27)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="847.50"></text></g><g><title>__schedule (23 samples, 0.01%)</title><rect x="41.8458%" y="821" width="0.0103%" height="15" fill="rgb(238,24,4)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="831.50"></text></g><g><title>finish_task_switch (23 samples, 0.01%)</title><rect x="41.8458%" y="805" width="0.0103%" height="15" fill="rgb(224,220,25)" fg:x="93224" fg:w="23"/><text x="42.0958%" y="815.50"></text></g><g><title>error_entry (45 samples, 0.02%)</title><rect x="41.8570%" y="885" width="0.0202%" height="15" fill="rgb(239,133,26)" fg:x="93249" fg:w="45"/><text x="42.1070%" y="895.50"></text></g><g><title>sync_regs (40 samples, 0.02%)</title><rect x="41.8592%" y="869" width="0.0180%" height="15" fill="rgb(211,94,48)" fg:x="93254" fg:w="40"/><text x="42.1092%" y="879.50"></text></g><g><title>alloc_pages_vma (61 samples, 0.03%)</title><rect x="41.9652%" y="773" width="0.0274%" height="15" fill="rgb(239,87,6)" fg:x="93490" fg:w="61"/><text x="42.2152%" y="783.50"></text></g><g><title>__alloc_pages_nodemask (58 samples, 0.03%)</title><rect x="41.9665%" y="757" width="0.0260%" height="15" fill="rgb(227,62,0)" fg:x="93493" fg:w="58"/><text x="42.2165%" y="767.50"></text></g><g><title>get_page_from_freelist (48 samples, 0.02%)</title><rect x="41.9710%" y="741" width="0.0215%" height="15" fill="rgb(211,226,4)" fg:x="93503" fg:w="48"/><text x="42.2210%" y="751.50"></text></g><g><title>prep_new_page (29 samples, 0.01%)</title><rect x="41.9795%" y="725" width="0.0130%" height="15" fill="rgb(253,38,52)" fg:x="93522" fg:w="29"/><text x="42.2295%" y="735.50"></text></g><g><title>kernel_init_free_pages (26 samples, 0.01%)</title><rect x="41.9809%" y="709" width="0.0117%" height="15" fill="rgb(229,126,40)" fg:x="93525" fg:w="26"/><text x="42.2309%" y="719.50"></text></g><g><title>clear_page_erms (26 samples, 0.01%)</title><rect x="41.9809%" y="693" width="0.0117%" height="15" fill="rgb(229,165,44)" fg:x="93525" fg:w="26"/><text x="42.2309%" y="703.50"></text></g><g><title>do_user_addr_fault (125 samples, 0.06%)</title><rect x="41.9539%" y="805" width="0.0561%" height="15" fill="rgb(247,95,47)" fg:x="93465" fg:w="125"/><text x="42.2039%" y="815.50"></text></g><g><title>handle_mm_fault (118 samples, 0.05%)</title><rect x="41.9571%" y="789" width="0.0530%" height="15" fill="rgb(216,140,30)" fg:x="93472" fg:w="118"/><text x="42.2071%" y="799.50"></text></g><g><title>exc_page_fault (128 samples, 0.06%)</title><rect x="41.9530%" y="821" width="0.0575%" height="15" fill="rgb(246,214,8)" fg:x="93463" fg:w="128"/><text x="42.2030%" y="831.50"></text></g><g><title>asm_exc_page_fault (131 samples, 0.06%)</title><rect x="41.9530%" y="837" width="0.0588%" height="15" fill="rgb(227,224,15)" fg:x="93463" fg:w="131"/><text x="42.2030%" y="847.50"></text></g><g><title>sysmalloc (38 samples, 0.02%)</title><rect x="42.0186%" y="837" width="0.0171%" height="15" fill="rgb(233,175,4)" fg:x="93609" fg:w="38"/><text x="42.2686%" y="847.50"></text></g><g><title>_int_malloc (300 samples, 0.13%)</title><rect x="41.9019%" y="853" width="0.1347%" height="15" fill="rgb(221,66,45)" fg:x="93349" fg:w="300"/><text x="42.1519%" y="863.50"></text></g><g><title>__GI___libc_malloc (369 samples, 0.17%)</title><rect x="41.8862%" y="869" width="0.1656%" height="15" fill="rgb(221,178,18)" fg:x="93314" fg:w="369"/><text x="42.1362%" y="879.50"></text></g><g><title>operator new (386 samples, 0.17%)</title><rect x="41.8848%" y="885" width="0.1733%" height="15" fill="rgb(213,81,29)" fg:x="93311" fg:w="386"/><text x="42.1348%" y="895.50"></text></g><g><title>rename (39 samples, 0.02%)</title><rect x="42.0626%" y="885" width="0.0175%" height="15" fill="rgb(220,89,49)" fg:x="93707" fg:w="39"/><text x="42.3126%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.02%)</title><rect x="42.0626%" y="869" width="0.0175%" height="15" fill="rgb(227,60,33)" fg:x="93707" fg:w="39"/><text x="42.3126%" y="879.50"></text></g><g><title>do_syscall_64 (39 samples, 0.02%)</title><rect x="42.0626%" y="853" width="0.0175%" height="15" fill="rgb(205,113,12)" fg:x="93707" fg:w="39"/><text x="42.3126%" y="863.50"></text></g><g><title>__x64_sys_rename (39 samples, 0.02%)</title><rect x="42.0626%" y="837" width="0.0175%" height="15" fill="rgb(211,32,1)" fg:x="93707" fg:w="39"/><text x="42.3126%" y="847.50"></text></g><g><title>do_renameat2 (39 samples, 0.02%)</title><rect x="42.0626%" y="821" width="0.0175%" height="15" fill="rgb(246,2,12)" fg:x="93707" fg:w="39"/><text x="42.3126%" y="831.50"></text></g><g><title>vfs_rename (37 samples, 0.02%)</title><rect x="42.0635%" y="805" width="0.0166%" height="15" fill="rgb(243,37,27)" fg:x="93709" fg:w="37"/><text x="42.3135%" y="815.50"></text></g><g><title>btrfs_rename2 (36 samples, 0.02%)</title><rect x="42.0639%" y="789" width="0.0162%" height="15" fill="rgb(248,211,31)" fg:x="93710" fg:w="36"/><text x="42.3139%" y="799.50"></text></g><g><title>std::_Rb_tree_insert_and_rebalance (24 samples, 0.01%)</title><rect x="42.0810%" y="885" width="0.0108%" height="15" fill="rgb(242,146,47)" fg:x="93748" fg:w="24"/><text x="42.3310%" y="895.50"></text></g><g><title>[clang] (6,231 samples, 2.80%)</title><rect x="39.3173%" y="901" width="2.7969%" height="15" fill="rgb(206,70,20)" fg:x="87591" fg:w="6231"/><text x="39.5673%" y="911.50">[c..</text></g><g><title>[unknown] (56 samples, 0.03%)</title><rect x="42.1160%" y="901" width="0.0251%" height="15" fill="rgb(215,10,51)" fg:x="93826" fg:w="56"/><text x="42.3660%" y="911.50"></text></g><g><title>bprm_execve (43 samples, 0.02%)</title><rect x="42.1506%" y="789" width="0.0193%" height="15" fill="rgb(243,178,53)" fg:x="93903" fg:w="43"/><text x="42.4006%" y="799.50"></text></g><g><title>do_execveat_common (51 samples, 0.02%)</title><rect x="42.1497%" y="805" width="0.0229%" height="15" fill="rgb(233,221,20)" fg:x="93901" fg:w="51"/><text x="42.3997%" y="815.50"></text></g><g><title>__spawni_child (71 samples, 0.03%)</title><rect x="42.1411%" y="885" width="0.0319%" height="15" fill="rgb(218,95,35)" fg:x="93882" fg:w="71"/><text x="42.3911%" y="895.50"></text></g><g><title>__GI_execve (52 samples, 0.02%)</title><rect x="42.1497%" y="869" width="0.0233%" height="15" fill="rgb(229,13,5)" fg:x="93901" fg:w="52"/><text x="42.3997%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.02%)</title><rect x="42.1497%" y="853" width="0.0233%" height="15" fill="rgb(252,164,30)" fg:x="93901" fg:w="52"/><text x="42.3997%" y="863.50"></text></g><g><title>do_syscall_64 (52 samples, 0.02%)</title><rect x="42.1497%" y="837" width="0.0233%" height="15" fill="rgb(232,68,36)" fg:x="93901" fg:w="52"/><text x="42.3997%" y="847.50"></text></g><g><title>__x64_sys_execve (52 samples, 0.02%)</title><rect x="42.1497%" y="821" width="0.0233%" height="15" fill="rgb(219,59,54)" fg:x="93901" fg:w="52"/><text x="42.3997%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.04%)</title><rect x="42.1730%" y="885" width="0.0368%" height="15" fill="rgb(250,92,33)" fg:x="93953" fg:w="82"/><text x="42.4230%" y="895.50"></text></g><g><title>do_syscall_64 (82 samples, 0.04%)</title><rect x="42.1730%" y="869" width="0.0368%" height="15" fill="rgb(229,162,54)" fg:x="93953" fg:w="82"/><text x="42.4230%" y="879.50"></text></g><g><title>__do_sys_clone (82 samples, 0.04%)</title><rect x="42.1730%" y="853" width="0.0368%" height="15" fill="rgb(244,114,52)" fg:x="93953" fg:w="82"/><text x="42.4230%" y="863.50"></text></g><g><title>kernel_clone (82 samples, 0.04%)</title><rect x="42.1730%" y="837" width="0.0368%" height="15" fill="rgb(212,211,43)" fg:x="93953" fg:w="82"/><text x="42.4230%" y="847.50"></text></g><g><title>wait_for_completion_killable (64 samples, 0.03%)</title><rect x="42.1811%" y="821" width="0.0287%" height="15" fill="rgb(226,147,8)" fg:x="93971" fg:w="64"/><text x="42.4311%" y="831.50"></text></g><g><title>__wait_for_common (64 samples, 0.03%)</title><rect x="42.1811%" y="805" width="0.0287%" height="15" fill="rgb(226,23,13)" fg:x="93971" fg:w="64"/><text x="42.4311%" y="815.50"></text></g><g><title>schedule_timeout (62 samples, 0.03%)</title><rect x="42.1820%" y="789" width="0.0278%" height="15" fill="rgb(240,63,4)" fg:x="93973" fg:w="62"/><text x="42.4320%" y="799.50"></text></g><g><title>schedule (62 samples, 0.03%)</title><rect x="42.1820%" y="773" width="0.0278%" height="15" fill="rgb(221,1,32)" fg:x="93973" fg:w="62"/><text x="42.4320%" y="783.50"></text></g><g><title>__schedule (62 samples, 0.03%)</title><rect x="42.1820%" y="757" width="0.0278%" height="15" fill="rgb(242,117,10)" fg:x="93973" fg:w="62"/><text x="42.4320%" y="767.50"></text></g><g><title>finish_task_switch (62 samples, 0.03%)</title><rect x="42.1820%" y="741" width="0.0278%" height="15" fill="rgb(249,172,44)" fg:x="93973" fg:w="62"/><text x="42.4320%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.03%)</title><rect x="42.1824%" y="725" width="0.0274%" height="15" fill="rgb(244,46,45)" fg:x="93974" fg:w="61"/><text x="42.4324%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.03%)</title><rect x="42.1824%" y="709" width="0.0274%" height="15" fill="rgb(206,43,17)" fg:x="93974" fg:w="61"/><text x="42.4324%" y="719.50"></text></g><g><title>native_write_msr (61 samples, 0.03%)</title><rect x="42.1824%" y="693" width="0.0274%" height="15" fill="rgb(239,218,39)" fg:x="93974" fg:w="61"/><text x="42.4324%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (111 samples, 0.05%)</title><rect x="42.2129%" y="837" width="0.0498%" height="15" fill="rgb(208,169,54)" fg:x="94042" fg:w="111"/><text x="42.4629%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (109 samples, 0.05%)</title><rect x="42.2138%" y="821" width="0.0489%" height="15" fill="rgb(247,25,42)" fg:x="94044" fg:w="109"/><text x="42.4638%" y="831.50"></text></g><g><title>native_write_msr (108 samples, 0.05%)</title><rect x="42.2143%" y="805" width="0.0485%" height="15" fill="rgb(226,23,31)" fg:x="94045" fg:w="108"/><text x="42.4643%" y="815.50"></text></g><g><title>schedule_tail (119 samples, 0.05%)</title><rect x="42.2103%" y="869" width="0.0534%" height="15" fill="rgb(247,16,28)" fg:x="94036" fg:w="119"/><text x="42.4603%" y="879.50"></text></g><g><title>finish_task_switch (118 samples, 0.05%)</title><rect x="42.2107%" y="853" width="0.0530%" height="15" fill="rgb(231,147,38)" fg:x="94037" fg:w="118"/><text x="42.4607%" y="863.50"></text></g><g><title>__GI___clone (274 samples, 0.12%)</title><rect x="42.1411%" y="901" width="0.1230%" height="15" fill="rgb(253,81,48)" fg:x="93882" fg:w="274"/><text x="42.3911%" y="911.50"></text></g><g><title>ret_from_fork (121 samples, 0.05%)</title><rect x="42.2098%" y="885" width="0.0543%" height="15" fill="rgb(249,222,43)" fg:x="94035" fg:w="121"/><text x="42.4598%" y="895.50"></text></g><g><title>[libstdc++.so.6.0.28] (33 samples, 0.01%)</title><rect x="42.2650%" y="837" width="0.0148%" height="15" fill="rgb(221,3,27)" fg:x="94158" fg:w="33"/><text x="42.5150%" y="847.50"></text></g><g><title>_dl_start_user (41 samples, 0.02%)</title><rect x="42.2650%" y="901" width="0.0184%" height="15" fill="rgb(228,180,5)" fg:x="94158" fg:w="41"/><text x="42.5150%" y="911.50"></text></g><g><title>_dl_init (41 samples, 0.02%)</title><rect x="42.2650%" y="885" width="0.0184%" height="15" fill="rgb(227,131,42)" fg:x="94158" fg:w="41"/><text x="42.5150%" y="895.50"></text></g><g><title>call_init (41 samples, 0.02%)</title><rect x="42.2650%" y="869" width="0.0184%" height="15" fill="rgb(212,3,39)" fg:x="94158" fg:w="41"/><text x="42.5150%" y="879.50"></text></g><g><title>call_init (41 samples, 0.02%)</title><rect x="42.2650%" y="853" width="0.0184%" height="15" fill="rgb(226,45,5)" fg:x="94158" fg:w="41"/><text x="42.5150%" y="863.50"></text></g><g><title>__split_vma (25 samples, 0.01%)</title><rect x="42.3077%" y="581" width="0.0112%" height="15" fill="rgb(215,167,45)" fg:x="94253" fg:w="25"/><text x="42.5577%" y="591.50"></text></g><g><title>__do_munmap (33 samples, 0.01%)</title><rect x="42.3072%" y="597" width="0.0148%" height="15" fill="rgb(250,218,53)" fg:x="94252" fg:w="33"/><text x="42.5572%" y="607.50"></text></g><g><title>do_mmap (74 samples, 0.03%)</title><rect x="42.3041%" y="629" width="0.0332%" height="15" fill="rgb(207,140,0)" fg:x="94245" fg:w="74"/><text x="42.5541%" y="639.50"></text></g><g><title>mmap_region (71 samples, 0.03%)</title><rect x="42.3054%" y="613" width="0.0319%" height="15" fill="rgb(238,133,51)" fg:x="94248" fg:w="71"/><text x="42.5554%" y="623.50"></text></g><g><title>ksys_mmap_pgoff (76 samples, 0.03%)</title><rect x="42.3041%" y="661" width="0.0341%" height="15" fill="rgb(218,203,53)" fg:x="94245" fg:w="76"/><text x="42.5541%" y="671.50"></text></g><g><title>vm_mmap_pgoff (76 samples, 0.03%)</title><rect x="42.3041%" y="645" width="0.0341%" height="15" fill="rgb(226,184,25)" fg:x="94245" fg:w="76"/><text x="42.5541%" y="655.50"></text></g><g><title>_dl_map_segments (91 samples, 0.04%)</title><rect x="42.2996%" y="741" width="0.0408%" height="15" fill="rgb(231,121,21)" fg:x="94235" fg:w="91"/><text x="42.5496%" y="751.50"></text></g><g><title>__mmap64 (82 samples, 0.04%)</title><rect x="42.3036%" y="725" width="0.0368%" height="15" fill="rgb(251,14,34)" fg:x="94244" fg:w="82"/><text x="42.5536%" y="735.50"></text></g><g><title>__mmap64 (82 samples, 0.04%)</title><rect x="42.3036%" y="709" width="0.0368%" height="15" fill="rgb(249,193,11)" fg:x="94244" fg:w="82"/><text x="42.5536%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.04%)</title><rect x="42.3041%" y="693" width="0.0364%" height="15" fill="rgb(220,172,37)" fg:x="94245" fg:w="81"/><text x="42.5541%" y="703.50"></text></g><g><title>do_syscall_64 (81 samples, 0.04%)</title><rect x="42.3041%" y="677" width="0.0364%" height="15" fill="rgb(231,229,43)" fg:x="94245" fg:w="81"/><text x="42.5541%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (127 samples, 0.06%)</title><rect x="42.2978%" y="757" width="0.0570%" height="15" fill="rgb(250,161,5)" fg:x="94231" fg:w="127"/><text x="42.5478%" y="767.50"></text></g><g><title>link_path_walk.part.0 (23 samples, 0.01%)</title><rect x="42.3763%" y="613" width="0.0103%" height="15" fill="rgb(218,225,18)" fg:x="94406" fg:w="23"/><text x="42.6263%" y="623.50"></text></g><g><title>do_filp_open (64 samples, 0.03%)</title><rect x="42.3624%" y="645" width="0.0287%" height="15" fill="rgb(245,45,42)" fg:x="94375" fg:w="64"/><text x="42.6124%" y="655.50"></text></g><g><title>path_openat (63 samples, 0.03%)</title><rect x="42.3629%" y="629" width="0.0283%" height="15" fill="rgb(211,115,1)" fg:x="94376" fg:w="63"/><text x="42.6129%" y="639.50"></text></g><g><title>do_syscall_64 (68 samples, 0.03%)</title><rect x="42.3615%" y="693" width="0.0305%" height="15" fill="rgb(248,133,52)" fg:x="94373" fg:w="68"/><text x="42.6115%" y="703.50"></text></g><g><title>__x64_sys_openat (68 samples, 0.03%)</title><rect x="42.3615%" y="677" width="0.0305%" height="15" fill="rgb(238,100,21)" fg:x="94373" fg:w="68"/><text x="42.6115%" y="687.50"></text></g><g><title>do_sys_openat2 (68 samples, 0.03%)</title><rect x="42.3615%" y="661" width="0.0305%" height="15" fill="rgb(247,144,11)" fg:x="94373" fg:w="68"/><text x="42.6115%" y="671.50"></text></g><g><title>__GI___open64_nocancel (71 samples, 0.03%)</title><rect x="42.3611%" y="725" width="0.0319%" height="15" fill="rgb(206,164,16)" fg:x="94372" fg:w="71"/><text x="42.6111%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.03%)</title><rect x="42.3615%" y="709" width="0.0314%" height="15" fill="rgb(222,34,3)" fg:x="94373" fg:w="70"/><text x="42.6115%" y="719.50"></text></g><g><title>open_path (89 samples, 0.04%)</title><rect x="42.3557%" y="757" width="0.0399%" height="15" fill="rgb(248,82,4)" fg:x="94360" fg:w="89"/><text x="42.6057%" y="767.50"></text></g><g><title>open_verify (78 samples, 0.04%)</title><rect x="42.3606%" y="741" width="0.0350%" height="15" fill="rgb(228,81,46)" fg:x="94371" fg:w="78"/><text x="42.6106%" y="751.50"></text></g><g><title>_dl_catch_exception (223 samples, 0.10%)</title><rect x="42.2964%" y="805" width="0.1001%" height="15" fill="rgb(227,67,47)" fg:x="94228" fg:w="223"/><text x="42.5464%" y="815.50"></text></g><g><title>openaux (223 samples, 0.10%)</title><rect x="42.2964%" y="789" width="0.1001%" height="15" fill="rgb(215,93,53)" fg:x="94228" fg:w="223"/><text x="42.5464%" y="799.50"></text></g><g><title>_dl_map_object (223 samples, 0.10%)</title><rect x="42.2964%" y="773" width="0.1001%" height="15" fill="rgb(248,194,39)" fg:x="94228" fg:w="223"/><text x="42.5464%" y="783.50"></text></g><g><title>_dl_map_object_deps (226 samples, 0.10%)</title><rect x="42.2964%" y="821" width="0.1014%" height="15" fill="rgb(215,5,19)" fg:x="94228" fg:w="226"/><text x="42.5464%" y="831.50"></text></g><g><title>mprotect_fixup (28 samples, 0.01%)</title><rect x="42.4046%" y="709" width="0.0126%" height="15" fill="rgb(226,215,51)" fg:x="94469" fg:w="28"/><text x="42.6546%" y="719.50"></text></g><g><title>_dl_protect_relro (31 samples, 0.01%)</title><rect x="42.4037%" y="805" width="0.0139%" height="15" fill="rgb(225,56,26)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="815.50"></text></g><g><title>__mprotect (31 samples, 0.01%)</title><rect x="42.4037%" y="789" width="0.0139%" height="15" fill="rgb(222,75,29)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="42.4037%" y="773" width="0.0139%" height="15" fill="rgb(236,139,6)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="783.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="42.4037%" y="757" width="0.0139%" height="15" fill="rgb(223,137,36)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="767.50"></text></g><g><title>__x64_sys_mprotect (31 samples, 0.01%)</title><rect x="42.4037%" y="741" width="0.0139%" height="15" fill="rgb(226,99,2)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="751.50"></text></g><g><title>do_mprotect_pkey (31 samples, 0.01%)</title><rect x="42.4037%" y="725" width="0.0139%" height="15" fill="rgb(206,133,23)" fg:x="94467" fg:w="31"/><text x="42.6537%" y="735.50"></text></g><g><title>dl_new_hash (85 samples, 0.04%)</title><rect x="42.4850%" y="757" width="0.0382%" height="15" fill="rgb(243,173,15)" fg:x="94648" fg:w="85"/><text x="42.7350%" y="767.50"></text></g><g><title>check_match (35 samples, 0.02%)</title><rect x="42.6102%" y="741" width="0.0157%" height="15" fill="rgb(228,69,28)" fg:x="94927" fg:w="35"/><text x="42.8602%" y="751.50"></text></g><g><title>_dl_lookup_symbol_x (341 samples, 0.15%)</title><rect x="42.4796%" y="773" width="0.1531%" height="15" fill="rgb(212,51,22)" fg:x="94636" fg:w="341"/><text x="42.7296%" y="783.50"></text></g><g><title>do_lookup_x (244 samples, 0.11%)</title><rect x="42.5231%" y="757" width="0.1095%" height="15" fill="rgb(227,113,0)" fg:x="94733" fg:w="244"/><text x="42.7731%" y="767.50"></text></g><g><title>__alloc_pages_nodemask (64 samples, 0.03%)</title><rect x="42.6555%" y="693" width="0.0287%" height="15" fill="rgb(252,84,27)" fg:x="95028" fg:w="64"/><text x="42.9055%" y="703.50"></text></g><g><title>get_page_from_freelist (59 samples, 0.03%)</title><rect x="42.6578%" y="677" width="0.0265%" height="15" fill="rgb(223,145,39)" fg:x="95033" fg:w="59"/><text x="42.9078%" y="687.50"></text></g><g><title>prep_new_page (35 samples, 0.02%)</title><rect x="42.6686%" y="661" width="0.0157%" height="15" fill="rgb(239,219,30)" fg:x="95057" fg:w="35"/><text x="42.9186%" y="671.50"></text></g><g><title>kernel_init_free_pages (34 samples, 0.02%)</title><rect x="42.6690%" y="645" width="0.0153%" height="15" fill="rgb(224,196,39)" fg:x="95058" fg:w="34"/><text x="42.9190%" y="655.50"></text></g><g><title>clear_page_erms (34 samples, 0.02%)</title><rect x="42.6690%" y="629" width="0.0153%" height="15" fill="rgb(205,35,43)" fg:x="95058" fg:w="34"/><text x="42.9190%" y="639.50"></text></g><g><title>alloc_pages_vma (67 samples, 0.03%)</title><rect x="42.6546%" y="709" width="0.0301%" height="15" fill="rgb(228,201,21)" fg:x="95026" fg:w="67"/><text x="42.9046%" y="719.50"></text></g><g><title>copy_page (69 samples, 0.03%)</title><rect x="42.6861%" y="709" width="0.0310%" height="15" fill="rgb(237,118,16)" fg:x="95096" fg:w="69"/><text x="42.9361%" y="719.50"></text></g><g><title>__pagevec_lru_add_fn (24 samples, 0.01%)</title><rect x="42.7269%" y="645" width="0.0108%" height="15" fill="rgb(241,17,19)" fg:x="95187" fg:w="24"/><text x="42.9769%" y="655.50"></text></g><g><title>lru_cache_add (30 samples, 0.01%)</title><rect x="42.7260%" y="677" width="0.0135%" height="15" fill="rgb(214,10,25)" fg:x="95185" fg:w="30"/><text x="42.9760%" y="687.50"></text></g><g><title>pagevec_lru_move_fn (29 samples, 0.01%)</title><rect x="42.7265%" y="661" width="0.0130%" height="15" fill="rgb(238,37,29)" fg:x="95186" fg:w="29"/><text x="42.9765%" y="671.50"></text></g><g><title>finish_fault (39 samples, 0.02%)</title><rect x="42.7247%" y="709" width="0.0175%" height="15" fill="rgb(253,83,25)" fg:x="95182" fg:w="39"/><text x="42.9747%" y="719.50"></text></g><g><title>alloc_set_pte (38 samples, 0.02%)</title><rect x="42.7251%" y="693" width="0.0171%" height="15" fill="rgb(234,192,12)" fg:x="95183" fg:w="38"/><text x="42.9751%" y="703.50"></text></g><g><title>handle_mm_fault (253 samples, 0.11%)</title><rect x="42.6394%" y="725" width="0.1136%" height="15" fill="rgb(241,216,45)" fg:x="94992" fg:w="253"/><text x="42.8894%" y="735.50"></text></g><g><title>exc_page_fault (267 samples, 0.12%)</title><rect x="42.6340%" y="757" width="0.1198%" height="15" fill="rgb(242,22,33)" fg:x="94980" fg:w="267"/><text x="42.8840%" y="767.50"></text></g><g><title>do_user_addr_fault (266 samples, 0.12%)</title><rect x="42.6344%" y="741" width="0.1194%" height="15" fill="rgb(231,105,49)" fg:x="94981" fg:w="266"/><text x="42.8844%" y="751.50"></text></g><g><title>asm_exc_page_fault (278 samples, 0.12%)</title><rect x="42.6331%" y="773" width="0.1248%" height="15" fill="rgb(218,204,15)" fg:x="94978" fg:w="278"/><text x="42.8831%" y="783.50"></text></g><g><title>elf_machine_rela (735 samples, 0.33%)</title><rect x="42.4396%" y="789" width="0.3299%" height="15" fill="rgb(235,138,41)" fg:x="94547" fg:w="735"/><text x="42.6896%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (803 samples, 0.36%)</title><rect x="42.4176%" y="805" width="0.3604%" height="15" fill="rgb(246,0,9)" fg:x="94498" fg:w="803"/><text x="42.6676%" y="815.50"></text></g><g><title>_dl_relocate_object (841 samples, 0.38%)</title><rect x="42.4037%" y="821" width="0.3775%" height="15" fill="rgb(210,74,4)" fg:x="94467" fg:w="841"/><text x="42.6537%" y="831.50"></text></g><g><title>[ld-2.31.so] (1,095 samples, 0.49%)</title><rect x="42.2915%" y="837" width="0.4915%" height="15" fill="rgb(250,60,41)" fg:x="94217" fg:w="1095"/><text x="42.5415%" y="847.50"></text></g><g><title>_dl_start_final (1,102 samples, 0.49%)</title><rect x="42.2906%" y="869" width="0.4947%" height="15" fill="rgb(220,115,12)" fg:x="94215" fg:w="1102"/><text x="42.5406%" y="879.50"></text></g><g><title>_dl_sysdep_start (1,102 samples, 0.49%)</title><rect x="42.2906%" y="853" width="0.4947%" height="15" fill="rgb(237,100,13)" fg:x="94215" fg:w="1102"/><text x="42.5406%" y="863.50"></text></g><g><title>_dl_start (1,106 samples, 0.50%)</title><rect x="42.2906%" y="885" width="0.4965%" height="15" fill="rgb(213,55,26)" fg:x="94215" fg:w="1106"/><text x="42.5406%" y="895.50"></text></g><g><title>_start (1,113 samples, 0.50%)</title><rect x="42.2906%" y="901" width="0.4996%" height="15" fill="rgb(216,17,4)" fg:x="94215" fg:w="1113"/><text x="42.5406%" y="911.50"></text></g><g><title>asm_exc_page_fault (264 samples, 0.12%)</title><rect x="42.7902%" y="901" width="0.1185%" height="15" fill="rgb(220,153,47)" fg:x="95328" fg:w="264"/><text x="43.0402%" y="911.50"></text></g><g><title>__x64_sys_execve (30 samples, 0.01%)</title><rect x="42.9105%" y="869" width="0.0135%" height="15" fill="rgb(215,131,9)" fg:x="95596" fg:w="30"/><text x="43.1605%" y="879.50"></text></g><g><title>do_execveat_common (30 samples, 0.01%)</title><rect x="42.9105%" y="853" width="0.0135%" height="15" fill="rgb(233,46,42)" fg:x="95596" fg:w="30"/><text x="43.1605%" y="863.50"></text></g><g><title>bprm_execve (30 samples, 0.01%)</title><rect x="42.9105%" y="837" width="0.0135%" height="15" fill="rgb(226,86,7)" fg:x="95596" fg:w="30"/><text x="43.1605%" y="847.50"></text></g><g><title>load_elf_binary (30 samples, 0.01%)</title><rect x="42.9105%" y="821" width="0.0135%" height="15" fill="rgb(239,226,21)" fg:x="95596" fg:w="30"/><text x="43.1605%" y="831.50"></text></g><g><title>free_pcppages_bulk (29 samples, 0.01%)</title><rect x="42.9626%" y="741" width="0.0130%" height="15" fill="rgb(244,137,22)" fg:x="95712" fg:w="29"/><text x="43.2126%" y="751.50"></text></g><g><title>free_unref_page_list (41 samples, 0.02%)</title><rect x="42.9594%" y="757" width="0.0184%" height="15" fill="rgb(211,139,35)" fg:x="95705" fg:w="41"/><text x="43.2094%" y="767.50"></text></g><g><title>tlb_finish_mmu (86 samples, 0.04%)</title><rect x="42.9397%" y="789" width="0.0386%" height="15" fill="rgb(214,62,50)" fg:x="95661" fg:w="86"/><text x="43.1897%" y="799.50"></text></g><g><title>release_pages (71 samples, 0.03%)</title><rect x="42.9464%" y="773" width="0.0319%" height="15" fill="rgb(212,113,44)" fg:x="95676" fg:w="71"/><text x="43.1964%" y="783.50"></text></g><g><title>mark_page_accessed (40 samples, 0.02%)</title><rect x="43.0878%" y="757" width="0.0180%" height="15" fill="rgb(226,150,43)" fg:x="95991" fg:w="40"/><text x="43.3378%" y="767.50"></text></g><g><title>__mod_lruvec_state (23 samples, 0.01%)</title><rect x="43.1421%" y="741" width="0.0103%" height="15" fill="rgb(250,71,37)" fg:x="96112" fg:w="23"/><text x="43.3921%" y="751.50"></text></g><g><title>__mod_memcg_lruvec_state (23 samples, 0.01%)</title><rect x="43.1524%" y="741" width="0.0103%" height="15" fill="rgb(219,76,19)" fg:x="96135" fg:w="23"/><text x="43.4024%" y="751.50"></text></g><g><title>page_remove_rmap (139 samples, 0.06%)</title><rect x="43.1058%" y="757" width="0.0624%" height="15" fill="rgb(250,39,11)" fg:x="96031" fg:w="139"/><text x="43.3558%" y="767.50"></text></g><g><title>free_pages_and_swap_cache (37 samples, 0.02%)</title><rect x="43.1681%" y="741" width="0.0166%" height="15" fill="rgb(230,64,31)" fg:x="96170" fg:w="37"/><text x="43.4181%" y="751.50"></text></g><g><title>tlb_flush_mmu (125 samples, 0.06%)</title><rect x="43.1681%" y="757" width="0.0561%" height="15" fill="rgb(208,222,23)" fg:x="96170" fg:w="125"/><text x="43.4181%" y="767.50"></text></g><g><title>release_pages (88 samples, 0.04%)</title><rect x="43.1848%" y="741" width="0.0395%" height="15" fill="rgb(227,125,18)" fg:x="96207" fg:w="88"/><text x="43.4348%" y="751.50"></text></g><g><title>mmput (697 samples, 0.31%)</title><rect x="42.9240%" y="821" width="0.3129%" height="15" fill="rgb(234,210,9)" fg:x="95626" fg:w="697"/><text x="43.1740%" y="831.50"></text></g><g><title>exit_mmap (697 samples, 0.31%)</title><rect x="42.9240%" y="805" width="0.3129%" height="15" fill="rgb(217,127,24)" fg:x="95626" fg:w="697"/><text x="43.1740%" y="815.50"></text></g><g><title>unmap_vmas (576 samples, 0.26%)</title><rect x="42.9783%" y="789" width="0.2586%" height="15" fill="rgb(239,141,48)" fg:x="95747" fg:w="576"/><text x="43.2283%" y="799.50"></text></g><g><title>unmap_page_range (576 samples, 0.26%)</title><rect x="42.9783%" y="773" width="0.2586%" height="15" fill="rgb(227,109,8)" fg:x="95747" fg:w="576"/><text x="43.2283%" y="783.50"></text></g><g><title>__x64_sys_exit_group (703 samples, 0.32%)</title><rect x="42.9240%" y="869" width="0.3156%" height="15" fill="rgb(235,184,23)" fg:x="95626" fg:w="703"/><text x="43.1740%" y="879.50"></text></g><g><title>do_group_exit (703 samples, 0.32%)</title><rect x="42.9240%" y="853" width="0.3156%" height="15" fill="rgb(227,226,48)" fg:x="95626" fg:w="703"/><text x="43.1740%" y="863.50"></text></g><g><title>do_exit (703 samples, 0.32%)</title><rect x="42.9240%" y="837" width="0.3156%" height="15" fill="rgb(206,150,11)" fg:x="95626" fg:w="703"/><text x="43.1740%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (740 samples, 0.33%)</title><rect x="42.9100%" y="901" width="0.3322%" height="15" fill="rgb(254,2,33)" fg:x="95595" fg:w="740"/><text x="43.1600%" y="911.50"></text></g><g><title>do_syscall_64 (739 samples, 0.33%)</title><rect x="42.9105%" y="885" width="0.3317%" height="15" fill="rgb(243,160,20)" fg:x="95596" fg:w="739"/><text x="43.1605%" y="895.50"></text></g><g><title>clang (8,814 samples, 3.96%)</title><rect x="39.2863%" y="917" width="3.9564%" height="15" fill="rgb(218,208,30)" fg:x="87522" fg:w="8814"/><text x="39.5363%" y="927.50">clang</text></g><g><title>[perf-945576.map] (29 samples, 0.01%)</title><rect x="43.2427%" y="901" width="0.0130%" height="15" fill="rgb(224,120,49)" fg:x="96336" fg:w="29"/><text x="43.4927%" y="911.50"></text></g><g><title>cli-update-thre (30 samples, 0.01%)</title><rect x="43.2427%" y="917" width="0.0135%" height="15" fill="rgb(246,12,2)" fg:x="96336" fg:w="30"/><text x="43.4927%" y="927.50"></text></g><g><title>[perf-945576.map] (103 samples, 0.05%)</title><rect x="43.2570%" y="901" width="0.0462%" height="15" fill="rgb(236,117,3)" fg:x="96368" fg:w="103"/><text x="43.5070%" y="911.50"></text></g><g><title>__GI___clone (34 samples, 0.02%)</title><rect x="43.3037%" y="901" width="0.0153%" height="15" fill="rgb(216,128,52)" fg:x="96472" fg:w="34"/><text x="43.5537%" y="911.50"></text></g><g><title>find-action-loo (141 samples, 0.06%)</title><rect x="43.2561%" y="917" width="0.0633%" height="15" fill="rgb(246,145,19)" fg:x="96366" fg:w="141"/><text x="43.5061%" y="927.50"></text></g><g><title>[perf-945576.map] (32 samples, 0.01%)</title><rect x="43.3221%" y="901" width="0.0144%" height="15" fill="rgb(222,11,46)" fg:x="96513" fg:w="32"/><text x="43.5721%" y="911.50"></text></g><g><title>globbing_pool-0 (67 samples, 0.03%)</title><rect x="43.3194%" y="917" width="0.0301%" height="15" fill="rgb(245,82,36)" fg:x="96507" fg:w="67"/><text x="43.5694%" y="927.50"></text></g><g><title>__GI___clone (27 samples, 0.01%)</title><rect x="43.3374%" y="901" width="0.0121%" height="15" fill="rgb(250,73,51)" fg:x="96547" fg:w="27"/><text x="43.5874%" y="911.50"></text></g><g><title>[libunix_jni.so] (27 samples, 0.01%)</title><rect x="43.3508%" y="901" width="0.0121%" height="15" fill="rgb(221,189,23)" fg:x="96577" fg:w="27"/><text x="43.6008%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.03%)</title><rect x="43.4155%" y="629" width="0.0251%" height="15" fill="rgb(210,33,7)" fg:x="96721" fg:w="56"/><text x="43.6655%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.03%)</title><rect x="43.4155%" y="613" width="0.0251%" height="15" fill="rgb(210,107,22)" fg:x="96721" fg:w="56"/><text x="43.6655%" y="623.50"></text></g><g><title>native_write_msr (56 samples, 0.03%)</title><rect x="43.4155%" y="597" width="0.0251%" height="15" fill="rgb(222,116,37)" fg:x="96721" fg:w="56"/><text x="43.6655%" y="607.50"></text></g><g><title>__pthread_cond_wait (59 samples, 0.03%)</title><rect x="43.4146%" y="821" width="0.0265%" height="15" fill="rgb(254,17,48)" fg:x="96719" fg:w="59"/><text x="43.6646%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (59 samples, 0.03%)</title><rect x="43.4146%" y="805" width="0.0265%" height="15" fill="rgb(224,36,32)" fg:x="96719" fg:w="59"/><text x="43.6646%" y="815.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.03%)</title><rect x="43.4150%" y="789" width="0.0260%" height="15" fill="rgb(232,90,46)" fg:x="96720" fg:w="58"/><text x="43.6650%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.03%)</title><rect x="43.4150%" y="773" width="0.0260%" height="15" fill="rgb(241,66,40)" fg:x="96720" fg:w="58"/><text x="43.6650%" y="783.50"></text></g><g><title>do_syscall_64 (58 samples, 0.03%)</title><rect x="43.4150%" y="757" width="0.0260%" height="15" fill="rgb(249,184,29)" fg:x="96720" fg:w="58"/><text x="43.6650%" y="767.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.03%)</title><rect x="43.4150%" y="741" width="0.0260%" height="15" fill="rgb(231,181,1)" fg:x="96720" fg:w="58"/><text x="43.6650%" y="751.50"></text></g><g><title>do_futex (57 samples, 0.03%)</title><rect x="43.4155%" y="725" width="0.0256%" height="15" fill="rgb(224,94,2)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="735.50"></text></g><g><title>futex_wait (57 samples, 0.03%)</title><rect x="43.4155%" y="709" width="0.0256%" height="15" fill="rgb(229,170,15)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="719.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.03%)</title><rect x="43.4155%" y="693" width="0.0256%" height="15" fill="rgb(240,127,35)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="703.50"></text></g><g><title>schedule (57 samples, 0.03%)</title><rect x="43.4155%" y="677" width="0.0256%" height="15" fill="rgb(248,196,34)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="687.50"></text></g><g><title>__schedule (57 samples, 0.03%)</title><rect x="43.4155%" y="661" width="0.0256%" height="15" fill="rgb(236,137,7)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="671.50"></text></g><g><title>finish_task_switch (57 samples, 0.03%)</title><rect x="43.4155%" y="645" width="0.0256%" height="15" fill="rgb(235,127,16)" fg:x="96721" fg:w="57"/><text x="43.6655%" y="655.50"></text></g><g><title>Monitor::lock (60 samples, 0.03%)</title><rect x="43.4146%" y="869" width="0.0269%" height="15" fill="rgb(250,192,54)" fg:x="96719" fg:w="60"/><text x="43.6646%" y="879.50"></text></g><g><title>Monitor::ILock (60 samples, 0.03%)</title><rect x="43.4146%" y="853" width="0.0269%" height="15" fill="rgb(218,98,20)" fg:x="96719" fg:w="60"/><text x="43.6646%" y="863.50"></text></g><g><title>os::PlatformEvent::park (60 samples, 0.03%)</title><rect x="43.4146%" y="837" width="0.0269%" height="15" fill="rgb(230,176,47)" fg:x="96719" fg:w="60"/><text x="43.6646%" y="847.50"></text></g><g><title>Monitor::wait (36 samples, 0.02%)</title><rect x="43.4451%" y="853" width="0.0162%" height="15" fill="rgb(244,2,33)" fg:x="96787" fg:w="36"/><text x="43.6951%" y="863.50"></text></g><g><title>Monitor::IWait (36 samples, 0.02%)</title><rect x="43.4451%" y="837" width="0.0162%" height="15" fill="rgb(231,100,17)" fg:x="96787" fg:w="36"/><text x="43.6951%" y="847.50"></text></g><g><title>os::PlatformEvent::park (36 samples, 0.02%)</title><rect x="43.4451%" y="821" width="0.0162%" height="15" fill="rgb(245,23,12)" fg:x="96787" fg:w="36"/><text x="43.6951%" y="831.50"></text></g><g><title>__pthread_cond_wait (35 samples, 0.02%)</title><rect x="43.4456%" y="805" width="0.0157%" height="15" fill="rgb(249,55,22)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.02%)</title><rect x="43.4456%" y="789" width="0.0157%" height="15" fill="rgb(207,134,9)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="799.50"></text></g><g><title>futex_wait_cancelable (35 samples, 0.02%)</title><rect x="43.4456%" y="773" width="0.0157%" height="15" fill="rgb(218,134,0)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="43.4456%" y="757" width="0.0157%" height="15" fill="rgb(213,212,33)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="767.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="43.4456%" y="741" width="0.0157%" height="15" fill="rgb(252,106,18)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="751.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="43.4456%" y="725" width="0.0157%" height="15" fill="rgb(208,126,42)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="735.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="43.4456%" y="709" width="0.0157%" height="15" fill="rgb(246,175,29)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="719.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="43.4456%" y="693" width="0.0157%" height="15" fill="rgb(215,13,50)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="703.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="43.4456%" y="677" width="0.0157%" height="15" fill="rgb(216,172,15)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="687.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="43.4456%" y="661" width="0.0157%" height="15" fill="rgb(212,103,13)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="671.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="43.4456%" y="645" width="0.0157%" height="15" fill="rgb(231,171,36)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="655.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="43.4456%" y="629" width="0.0157%" height="15" fill="rgb(250,123,20)" fg:x="96788" fg:w="35"/><text x="43.6956%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="43.4464%" y="613" width="0.0148%" height="15" fill="rgb(212,53,50)" fg:x="96790" fg:w="33"/><text x="43.6964%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.01%)</title><rect x="43.4469%" y="597" width="0.0144%" height="15" fill="rgb(243,54,12)" fg:x="96791" fg:w="32"/><text x="43.6969%" y="607.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="43.4469%" y="581" width="0.0144%" height="15" fill="rgb(234,101,34)" fg:x="96791" fg:w="32"/><text x="43.6969%" y="591.50"></text></g><g><title>os::create_thread (41 samples, 0.02%)</title><rect x="43.4447%" y="869" width="0.0184%" height="15" fill="rgb(254,67,22)" fg:x="96786" fg:w="41"/><text x="43.6947%" y="879.50"></text></g><g><title>JVM_StartThread (116 samples, 0.05%)</title><rect x="43.4114%" y="885" width="0.0521%" height="15" fill="rgb(250,35,47)" fg:x="96712" fg:w="116"/><text x="43.6614%" y="895.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.01%)</title><rect x="43.4644%" y="789" width="0.0103%" height="15" fill="rgb(226,126,38)" fg:x="96830" fg:w="23"/><text x="43.7144%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.01%)</title><rect x="43.4644%" y="773" width="0.0103%" height="15" fill="rgb(216,138,53)" fg:x="96830" fg:w="23"/><text x="43.7144%" y="783.50"></text></g><g><title>futex_wait_cancelable (23 samples, 0.01%)</title><rect x="43.4644%" y="757" width="0.0103%" height="15" fill="rgb(246,199,43)" fg:x="96830" fg:w="23"/><text x="43.7144%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="43.4644%" y="741" width="0.0103%" height="15" fill="rgb(232,125,11)" fg:x="96830" fg:w="23"/><text x="43.7144%" y="751.50"></text></g><g><title>SafepointSynchronize::block (24 samples, 0.01%)</title><rect x="43.4644%" y="853" width="0.0108%" height="15" fill="rgb(218,219,45)" fg:x="96830" fg:w="24"/><text x="43.7144%" y="863.50"></text></g><g><title>Monitor::lock_without_safepoint_check (24 samples, 0.01%)</title><rect x="43.4644%" y="837" width="0.0108%" height="15" fill="rgb(216,102,54)" fg:x="96830" fg:w="24"/><text x="43.7144%" y="847.50"></text></g><g><title>Monitor::ILock (24 samples, 0.01%)</title><rect x="43.4644%" y="821" width="0.0108%" height="15" fill="rgb(250,228,7)" fg:x="96830" fg:w="24"/><text x="43.7144%" y="831.50"></text></g><g><title>os::PlatformEvent::park (24 samples, 0.01%)</title><rect x="43.4644%" y="805" width="0.0108%" height="15" fill="rgb(226,125,25)" fg:x="96830" fg:w="24"/><text x="43.7144%" y="815.50"></text></g><g><title>Unsafe_Park (44 samples, 0.02%)</title><rect x="43.4644%" y="885" width="0.0198%" height="15" fill="rgb(224,165,27)" fg:x="96830" fg:w="44"/><text x="43.7144%" y="895.50"></text></g><g><title>Parker::park (44 samples, 0.02%)</title><rect x="43.4644%" y="869" width="0.0198%" height="15" fill="rgb(233,86,3)" fg:x="96830" fg:w="44"/><text x="43.7144%" y="879.50"></text></g><g><title>[perf-945576.map] (278 samples, 0.12%)</title><rect x="43.3630%" y="901" width="0.1248%" height="15" fill="rgb(228,116,20)" fg:x="96604" fg:w="278"/><text x="43.6130%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.02%)</title><rect x="43.4931%" y="837" width="0.0242%" height="15" fill="rgb(209,192,17)" fg:x="96894" fg:w="54"/><text x="43.7431%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.02%)</title><rect x="43.4945%" y="821" width="0.0229%" height="15" fill="rgb(224,88,34)" fg:x="96897" fg:w="51"/><text x="43.7445%" y="831.50"></text></g><g><title>native_write_msr (50 samples, 0.02%)</title><rect x="43.4949%" y="805" width="0.0224%" height="15" fill="rgb(233,38,6)" fg:x="96898" fg:w="50"/><text x="43.7449%" y="815.50"></text></g><g><title>ret_from_fork (59 samples, 0.03%)</title><rect x="43.4927%" y="885" width="0.0265%" height="15" fill="rgb(212,59,30)" fg:x="96893" fg:w="59"/><text x="43.7427%" y="895.50"></text></g><g><title>schedule_tail (59 samples, 0.03%)</title><rect x="43.4927%" y="869" width="0.0265%" height="15" fill="rgb(213,80,3)" fg:x="96893" fg:w="59"/><text x="43.7427%" y="879.50"></text></g><g><title>finish_task_switch (59 samples, 0.03%)</title><rect x="43.4927%" y="853" width="0.0265%" height="15" fill="rgb(251,178,7)" fg:x="96893" fg:w="59"/><text x="43.7427%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="43.5205%" y="613" width="0.0126%" height="15" fill="rgb(213,154,26)" fg:x="96955" fg:w="28"/><text x="43.7705%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.01%)</title><rect x="43.5210%" y="597" width="0.0121%" height="15" fill="rgb(238,165,49)" fg:x="96956" fg:w="27"/><text x="43.7710%" y="607.50"></text></g><g><title>native_write_msr (27 samples, 0.01%)</title><rect x="43.5210%" y="581" width="0.0121%" height="15" fill="rgb(248,91,46)" fg:x="96956" fg:w="27"/><text x="43.7710%" y="591.50"></text></g><g><title>finish_task_switch (30 samples, 0.01%)</title><rect x="43.5205%" y="629" width="0.0135%" height="15" fill="rgb(244,21,52)" fg:x="96955" fg:w="30"/><text x="43.7705%" y="639.50"></text></g><g><title>__pthread_cond_wait (32 samples, 0.01%)</title><rect x="43.5201%" y="805" width="0.0144%" height="15" fill="rgb(247,122,20)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.01%)</title><rect x="43.5201%" y="789" width="0.0144%" height="15" fill="rgb(218,27,9)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="799.50"></text></g><g><title>futex_wait_cancelable (32 samples, 0.01%)</title><rect x="43.5201%" y="773" width="0.0144%" height="15" fill="rgb(246,7,6)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.01%)</title><rect x="43.5201%" y="757" width="0.0144%" height="15" fill="rgb(227,135,54)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="767.50"></text></g><g><title>do_syscall_64 (32 samples, 0.01%)</title><rect x="43.5201%" y="741" width="0.0144%" height="15" fill="rgb(247,14,11)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="751.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.01%)</title><rect x="43.5201%" y="725" width="0.0144%" height="15" fill="rgb(206,149,34)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="735.50"></text></g><g><title>do_futex (32 samples, 0.01%)</title><rect x="43.5201%" y="709" width="0.0144%" height="15" fill="rgb(227,228,4)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="719.50"></text></g><g><title>futex_wait (32 samples, 0.01%)</title><rect x="43.5201%" y="693" width="0.0144%" height="15" fill="rgb(238,218,28)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="703.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.01%)</title><rect x="43.5201%" y="677" width="0.0144%" height="15" fill="rgb(252,86,40)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="687.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="43.5201%" y="661" width="0.0144%" height="15" fill="rgb(251,225,11)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="671.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="43.5201%" y="645" width="0.0144%" height="15" fill="rgb(206,46,49)" fg:x="96954" fg:w="32"/><text x="43.7701%" y="655.50"></text></g><g><title>Monitor::wait (33 samples, 0.01%)</title><rect x="43.5201%" y="853" width="0.0148%" height="15" fill="rgb(245,128,24)" fg:x="96954" fg:w="33"/><text x="43.7701%" y="863.50"></text></g><g><title>Monitor::IWait (33 samples, 0.01%)</title><rect x="43.5201%" y="837" width="0.0148%" height="15" fill="rgb(219,177,34)" fg:x="96954" fg:w="33"/><text x="43.7701%" y="847.50"></text></g><g><title>os::PlatformEvent::park (33 samples, 0.01%)</title><rect x="43.5201%" y="821" width="0.0148%" height="15" fill="rgb(218,60,48)" fg:x="96954" fg:w="33"/><text x="43.7701%" y="831.50"></text></g><g><title>__GI___clone (113 samples, 0.05%)</title><rect x="43.4891%" y="901" width="0.0507%" height="15" fill="rgb(221,11,5)" fg:x="96885" fg:w="113"/><text x="43.7391%" y="911.50"></text></g><g><title>start_thread (46 samples, 0.02%)</title><rect x="43.5192%" y="885" width="0.0206%" height="15" fill="rgb(220,148,13)" fg:x="96952" fg:w="46"/><text x="43.7692%" y="895.50"></text></g><g><title>thread_native_entry (44 samples, 0.02%)</title><rect x="43.5201%" y="869" width="0.0198%" height="15" fill="rgb(210,16,3)" fg:x="96954" fg:w="44"/><text x="43.7701%" y="879.50"></text></g><g><title>globbing_pool-1 (426 samples, 0.19%)</title><rect x="43.3495%" y="917" width="0.1912%" height="15" fill="rgb(236,80,2)" fg:x="96574" fg:w="426"/><text x="43.5995%" y="927.50"></text></g><g><title>JVM_StartThread (28 samples, 0.01%)</title><rect x="43.5605%" y="885" width="0.0126%" height="15" fill="rgb(239,129,19)" fg:x="97044" fg:w="28"/><text x="43.8105%" y="895.50"></text></g><g><title>Unsafe_Park (25 samples, 0.01%)</title><rect x="43.5730%" y="885" width="0.0112%" height="15" fill="rgb(220,106,35)" fg:x="97072" fg:w="25"/><text x="43.8230%" y="895.50"></text></g><g><title>Parker::park (25 samples, 0.01%)</title><rect x="43.5730%" y="869" width="0.0112%" height="15" fill="rgb(252,139,45)" fg:x="97072" fg:w="25"/><text x="43.8230%" y="879.50"></text></g><g><title>[perf-945576.map] (91 samples, 0.04%)</title><rect x="43.5443%" y="901" width="0.0408%" height="15" fill="rgb(229,8,36)" fg:x="97008" fg:w="91"/><text x="43.7943%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="43.5874%" y="837" width="0.0112%" height="15" fill="rgb(230,126,33)" fg:x="97104" fg:w="25"/><text x="43.8374%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="43.5878%" y="821" width="0.0108%" height="15" fill="rgb(239,140,21)" fg:x="97105" fg:w="24"/><text x="43.8378%" y="831.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="43.5878%" y="805" width="0.0108%" height="15" fill="rgb(254,104,9)" fg:x="97105" fg:w="24"/><text x="43.8378%" y="815.50"></text></g><g><title>ret_from_fork (29 samples, 0.01%)</title><rect x="43.5865%" y="885" width="0.0130%" height="15" fill="rgb(239,52,14)" fg:x="97102" fg:w="29"/><text x="43.8365%" y="895.50"></text></g><g><title>schedule_tail (27 samples, 0.01%)</title><rect x="43.5874%" y="869" width="0.0121%" height="15" fill="rgb(208,227,44)" fg:x="97104" fg:w="27"/><text x="43.8374%" y="879.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="43.5874%" y="853" width="0.0121%" height="15" fill="rgb(246,18,19)" fg:x="97104" fg:w="27"/><text x="43.8374%" y="863.50"></text></g><g><title>globbing_pool-2 (152 samples, 0.07%)</title><rect x="43.5407%" y="917" width="0.0682%" height="15" fill="rgb(235,228,25)" fg:x="97000" fg:w="152"/><text x="43.7907%" y="927.50"></text></g><g><title>__GI___clone (52 samples, 0.02%)</title><rect x="43.5856%" y="901" width="0.0233%" height="15" fill="rgb(240,156,20)" fg:x="97100" fg:w="52"/><text x="43.8356%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="43.6457%" y="661" width="0.0153%" height="15" fill="rgb(224,8,20)" fg:x="97234" fg:w="34"/><text x="43.8957%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="43.6457%" y="645" width="0.0153%" height="15" fill="rgb(214,12,52)" fg:x="97234" fg:w="34"/><text x="43.8957%" y="655.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="43.6457%" y="629" width="0.0153%" height="15" fill="rgb(211,220,47)" fg:x="97234" fg:w="34"/><text x="43.8957%" y="639.50"></text></g><g><title>do_syscall_64 (37 samples, 0.02%)</title><rect x="43.6453%" y="789" width="0.0166%" height="15" fill="rgb(250,173,5)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="799.50"></text></g><g><title>__x64_sys_futex (37 samples, 0.02%)</title><rect x="43.6453%" y="773" width="0.0166%" height="15" fill="rgb(250,125,52)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="783.50"></text></g><g><title>do_futex (37 samples, 0.02%)</title><rect x="43.6453%" y="757" width="0.0166%" height="15" fill="rgb(209,133,18)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="767.50"></text></g><g><title>futex_wait (37 samples, 0.02%)</title><rect x="43.6453%" y="741" width="0.0166%" height="15" fill="rgb(216,173,22)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="751.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.02%)</title><rect x="43.6453%" y="725" width="0.0166%" height="15" fill="rgb(205,3,22)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="735.50"></text></g><g><title>schedule (37 samples, 0.02%)</title><rect x="43.6453%" y="709" width="0.0166%" height="15" fill="rgb(248,22,20)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="719.50"></text></g><g><title>__schedule (37 samples, 0.02%)</title><rect x="43.6453%" y="693" width="0.0166%" height="15" fill="rgb(233,6,29)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="703.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="43.6453%" y="677" width="0.0166%" height="15" fill="rgb(240,22,54)" fg:x="97233" fg:w="37"/><text x="43.8953%" y="687.50"></text></g><g><title>Unsafe_Park (54 samples, 0.02%)</title><rect x="43.6386%" y="885" width="0.0242%" height="15" fill="rgb(231,133,32)" fg:x="97218" fg:w="54"/><text x="43.8886%" y="895.50"></text></g><g><title>Parker::park (54 samples, 0.02%)</title><rect x="43.6386%" y="869" width="0.0242%" height="15" fill="rgb(248,193,4)" fg:x="97218" fg:w="54"/><text x="43.8886%" y="879.50"></text></g><g><title>__pthread_cond_wait (39 samples, 0.02%)</title><rect x="43.6453%" y="853" width="0.0175%" height="15" fill="rgb(211,178,46)" fg:x="97233" fg:w="39"/><text x="43.8953%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (39 samples, 0.02%)</title><rect x="43.6453%" y="837" width="0.0175%" height="15" fill="rgb(224,5,42)" fg:x="97233" fg:w="39"/><text x="43.8953%" y="847.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.02%)</title><rect x="43.6453%" y="821" width="0.0175%" height="15" fill="rgb(239,176,25)" fg:x="97233" fg:w="39"/><text x="43.8953%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.02%)</title><rect x="43.6453%" y="805" width="0.0175%" height="15" fill="rgb(245,187,50)" fg:x="97233" fg:w="39"/><text x="43.8953%" y="815.50"></text></g><g><title>[perf-945576.map] (112 samples, 0.05%)</title><rect x="43.6130%" y="901" width="0.0503%" height="15" fill="rgb(248,24,15)" fg:x="97161" fg:w="112"/><text x="43.8630%" y="911.50"></text></g><g><title>__GI___clone (37 samples, 0.02%)</title><rect x="43.6646%" y="901" width="0.0166%" height="15" fill="rgb(205,166,13)" fg:x="97276" fg:w="37"/><text x="43.9146%" y="911.50"></text></g><g><title>globbing_pool-3 (165 samples, 0.07%)</title><rect x="43.6089%" y="917" width="0.0741%" height="15" fill="rgb(208,114,23)" fg:x="97152" fg:w="165"/><text x="43.8589%" y="927.50"></text></g><g><title>[libunix_jni.so] (23 samples, 0.01%)</title><rect x="43.6861%" y="901" width="0.0103%" height="15" fill="rgb(239,127,18)" fg:x="97324" fg:w="23"/><text x="43.9361%" y="911.50"></text></g><g><title>Monitor::lock (29 samples, 0.01%)</title><rect x="43.7378%" y="869" width="0.0130%" height="15" fill="rgb(219,154,28)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="879.50"></text></g><g><title>Monitor::ILock (29 samples, 0.01%)</title><rect x="43.7378%" y="853" width="0.0130%" height="15" fill="rgb(225,157,23)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="863.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.01%)</title><rect x="43.7378%" y="837" width="0.0130%" height="15" fill="rgb(219,8,6)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="847.50"></text></g><g><title>__pthread_cond_wait (29 samples, 0.01%)</title><rect x="43.7378%" y="821" width="0.0130%" height="15" fill="rgb(212,47,6)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.01%)</title><rect x="43.7378%" y="805" width="0.0130%" height="15" fill="rgb(224,190,4)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="815.50"></text></g><g><title>futex_wait_cancelable (29 samples, 0.01%)</title><rect x="43.7378%" y="789" width="0.0130%" height="15" fill="rgb(239,183,29)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.01%)</title><rect x="43.7378%" y="773" width="0.0130%" height="15" fill="rgb(213,57,7)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="783.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="43.7378%" y="757" width="0.0130%" height="15" fill="rgb(216,148,1)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="767.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.01%)</title><rect x="43.7378%" y="741" width="0.0130%" height="15" fill="rgb(236,182,29)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="751.50"></text></g><g><title>do_futex (29 samples, 0.01%)</title><rect x="43.7378%" y="725" width="0.0130%" height="15" fill="rgb(244,120,48)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="735.50"></text></g><g><title>futex_wait (29 samples, 0.01%)</title><rect x="43.7378%" y="709" width="0.0130%" height="15" fill="rgb(206,71,34)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="719.50"></text></g><g><title>futex_wait_queue_me (29 samples, 0.01%)</title><rect x="43.7378%" y="693" width="0.0130%" height="15" fill="rgb(242,32,6)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="703.50"></text></g><g><title>schedule (29 samples, 0.01%)</title><rect x="43.7378%" y="677" width="0.0130%" height="15" fill="rgb(241,35,3)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="687.50"></text></g><g><title>__schedule (29 samples, 0.01%)</title><rect x="43.7378%" y="661" width="0.0130%" height="15" fill="rgb(222,62,19)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="671.50"></text></g><g><title>finish_task_switch (29 samples, 0.01%)</title><rect x="43.7378%" y="645" width="0.0130%" height="15" fill="rgb(223,110,41)" fg:x="97439" fg:w="29"/><text x="43.9878%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="43.7382%" y="629" width="0.0126%" height="15" fill="rgb(208,224,4)" fg:x="97440" fg:w="28"/><text x="43.9882%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.01%)</title><rect x="43.7382%" y="613" width="0.0126%" height="15" fill="rgb(241,137,19)" fg:x="97440" fg:w="28"/><text x="43.9882%" y="623.50"></text></g><g><title>native_write_msr (28 samples, 0.01%)</title><rect x="43.7382%" y="597" width="0.0126%" height="15" fill="rgb(244,24,17)" fg:x="97440" fg:w="28"/><text x="43.9882%" y="607.50"></text></g><g><title>JVM_StartThread (44 samples, 0.02%)</title><rect x="43.7351%" y="885" width="0.0198%" height="15" fill="rgb(245,178,49)" fg:x="97433" fg:w="44"/><text x="43.9851%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="43.7562%" y="661" width="0.0121%" height="15" fill="rgb(219,160,38)" fg:x="97480" fg:w="27"/><text x="44.0062%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="43.7566%" y="645" width="0.0117%" height="15" fill="rgb(228,137,14)" fg:x="97481" fg:w="26"/><text x="44.0066%" y="655.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="43.7566%" y="629" width="0.0117%" height="15" fill="rgb(237,134,11)" fg:x="97481" fg:w="26"/><text x="44.0066%" y="639.50"></text></g><g><title>finish_task_switch (30 samples, 0.01%)</title><rect x="43.7562%" y="677" width="0.0135%" height="15" fill="rgb(211,126,44)" fg:x="97480" fg:w="30"/><text x="44.0062%" y="687.50"></text></g><g><title>do_syscall_64 (32 samples, 0.01%)</title><rect x="43.7557%" y="789" width="0.0144%" height="15" fill="rgb(226,171,33)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="799.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.01%)</title><rect x="43.7557%" y="773" width="0.0144%" height="15" fill="rgb(253,99,13)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="783.50"></text></g><g><title>do_futex (32 samples, 0.01%)</title><rect x="43.7557%" y="757" width="0.0144%" height="15" fill="rgb(244,48,7)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="767.50"></text></g><g><title>futex_wait (32 samples, 0.01%)</title><rect x="43.7557%" y="741" width="0.0144%" height="15" fill="rgb(244,217,54)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="751.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.01%)</title><rect x="43.7557%" y="725" width="0.0144%" height="15" fill="rgb(224,15,18)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="735.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="43.7557%" y="709" width="0.0144%" height="15" fill="rgb(244,99,12)" fg:x="97479" fg:w="32"/><text x="44.0057%" y="719.50"></text></g><g><title>__schedule (31 samples, 0.01%)</title><rect x="43.7562%" y="693" width="0.0139%" height="15" fill="rgb(233,226,8)" fg:x="97480" fg:w="31"/><text x="44.0062%" y="703.50"></text></g><g><title>__pthread_cond_wait (34 samples, 0.02%)</title><rect x="43.7557%" y="853" width="0.0153%" height="15" fill="rgb(229,211,3)" fg:x="97479" fg:w="34"/><text x="44.0057%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (34 samples, 0.02%)</title><rect x="43.7557%" y="837" width="0.0153%" height="15" fill="rgb(216,140,21)" fg:x="97479" fg:w="34"/><text x="44.0057%" y="847.50"></text></g><g><title>futex_wait_cancelable (34 samples, 0.02%)</title><rect x="43.7557%" y="821" width="0.0153%" height="15" fill="rgb(234,122,30)" fg:x="97479" fg:w="34"/><text x="44.0057%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="43.7557%" y="805" width="0.0153%" height="15" fill="rgb(236,25,46)" fg:x="97479" fg:w="34"/><text x="44.0057%" y="815.50"></text></g><g><title>Unsafe_Park (36 samples, 0.02%)</title><rect x="43.7553%" y="885" width="0.0162%" height="15" fill="rgb(217,52,54)" fg:x="97478" fg:w="36"/><text x="44.0053%" y="895.50"></text></g><g><title>Parker::park (36 samples, 0.02%)</title><rect x="43.7553%" y="869" width="0.0162%" height="15" fill="rgb(222,29,26)" fg:x="97478" fg:w="36"/><text x="44.0053%" y="879.50"></text></g><g><title>[perf-945576.map] (169 samples, 0.08%)</title><rect x="43.6965%" y="901" width="0.0759%" height="15" fill="rgb(216,177,29)" fg:x="97347" fg:w="169"/><text x="43.9465%" y="911.50"></text></g><g><title>__GI___clone (31 samples, 0.01%)</title><rect x="43.7723%" y="901" width="0.0139%" height="15" fill="rgb(247,136,51)" fg:x="97516" fg:w="31"/><text x="44.0223%" y="911.50"></text></g><g><title>globbing_pool-4 (231 samples, 0.10%)</title><rect x="43.6830%" y="917" width="0.1037%" height="15" fill="rgb(231,47,47)" fg:x="97317" fg:w="231"/><text x="43.9330%" y="927.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="43.8145%" y="789" width="0.0162%" height="15" fill="rgb(211,192,36)" fg:x="97610" fg:w="36"/><text x="44.0645%" y="799.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="43.8145%" y="773" width="0.0162%" height="15" fill="rgb(229,156,32)" fg:x="97610" fg:w="36"/><text x="44.0645%" y="783.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="43.8145%" y="757" width="0.0162%" height="15" fill="rgb(248,213,20)" fg:x="97610" fg:w="36"/><text x="44.0645%" y="767.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="43.8145%" y="741" width="0.0162%" height="15" fill="rgb(217,64,7)" fg:x="97610" fg:w="36"/><text x="44.0645%" y="751.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="43.8150%" y="725" width="0.0157%" height="15" fill="rgb(232,142,8)" fg:x="97611" fg:w="35"/><text x="44.0650%" y="735.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="43.8150%" y="709" width="0.0157%" height="15" fill="rgb(224,92,44)" fg:x="97611" fg:w="35"/><text x="44.0650%" y="719.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="43.8150%" y="693" width="0.0157%" height="15" fill="rgb(214,169,17)" fg:x="97611" fg:w="35"/><text x="44.0650%" y="703.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="43.8150%" y="677" width="0.0157%" height="15" fill="rgb(210,59,37)" fg:x="97611" fg:w="35"/><text x="44.0650%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.02%)</title><rect x="43.8150%" y="661" width="0.0157%" height="15" fill="rgb(214,116,48)" fg:x="97611" fg:w="35"/><text x="44.0650%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="43.8154%" y="645" width="0.0153%" height="15" fill="rgb(244,191,6)" fg:x="97612" fg:w="34"/><text x="44.0654%" y="655.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="43.8154%" y="629" width="0.0153%" height="15" fill="rgb(241,50,52)" fg:x="97612" fg:w="34"/><text x="44.0654%" y="639.50"></text></g><g><title>__pthread_cond_wait (38 samples, 0.02%)</title><rect x="43.8145%" y="853" width="0.0171%" height="15" fill="rgb(236,75,39)" fg:x="97610" fg:w="38"/><text x="44.0645%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (38 samples, 0.02%)</title><rect x="43.8145%" y="837" width="0.0171%" height="15" fill="rgb(236,99,0)" fg:x="97610" fg:w="38"/><text x="44.0645%" y="847.50"></text></g><g><title>futex_wait_cancelable (38 samples, 0.02%)</title><rect x="43.8145%" y="821" width="0.0171%" height="15" fill="rgb(207,202,15)" fg:x="97610" fg:w="38"/><text x="44.0645%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="43.8145%" y="805" width="0.0171%" height="15" fill="rgb(233,207,14)" fg:x="97610" fg:w="38"/><text x="44.0645%" y="815.50"></text></g><g><title>Unsafe_Park (40 samples, 0.02%)</title><rect x="43.8141%" y="885" width="0.0180%" height="15" fill="rgb(226,27,51)" fg:x="97609" fg:w="40"/><text x="44.0641%" y="895.50"></text></g><g><title>Parker::park (40 samples, 0.02%)</title><rect x="43.8141%" y="869" width="0.0180%" height="15" fill="rgb(206,104,42)" fg:x="97609" fg:w="40"/><text x="44.0641%" y="879.50"></text></g><g><title>[perf-945576.map] (95 samples, 0.04%)</title><rect x="43.7903%" y="901" width="0.0426%" height="15" fill="rgb(212,225,4)" fg:x="97556" fg:w="95"/><text x="44.0403%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="43.8397%" y="837" width="0.0121%" height="15" fill="rgb(233,96,42)" fg:x="97666" fg:w="27"/><text x="44.0897%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="43.8410%" y="821" width="0.0108%" height="15" fill="rgb(229,21,32)" fg:x="97669" fg:w="24"/><text x="44.0910%" y="831.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="43.8410%" y="805" width="0.0108%" height="15" fill="rgb(226,216,24)" fg:x="97669" fg:w="24"/><text x="44.0910%" y="815.50"></text></g><g><title>ret_from_fork (29 samples, 0.01%)</title><rect x="43.8392%" y="885" width="0.0130%" height="15" fill="rgb(221,163,17)" fg:x="97665" fg:w="29"/><text x="44.0892%" y="895.50"></text></g><g><title>schedule_tail (29 samples, 0.01%)</title><rect x="43.8392%" y="869" width="0.0130%" height="15" fill="rgb(216,216,42)" fg:x="97665" fg:w="29"/><text x="44.0892%" y="879.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="43.8397%" y="853" width="0.0126%" height="15" fill="rgb(240,118,7)" fg:x="97666" fg:w="28"/><text x="44.0897%" y="863.50"></text></g><g><title>globbing_pool-5 (151 samples, 0.07%)</title><rect x="43.7867%" y="917" width="0.0678%" height="15" fill="rgb(221,67,37)" fg:x="97548" fg:w="151"/><text x="44.0367%" y="927.50"></text></g><g><title>__GI___clone (34 samples, 0.02%)</title><rect x="43.8392%" y="901" width="0.0153%" height="15" fill="rgb(241,32,44)" fg:x="97665" fg:w="34"/><text x="44.0892%" y="911.50"></text></g><g><title>[perf-945576.map] (125 samples, 0.06%)</title><rect x="43.8630%" y="901" width="0.0561%" height="15" fill="rgb(235,204,43)" fg:x="97718" fg:w="125"/><text x="44.1130%" y="911.50"></text></g><g><title>globbing_pool-6 (165 samples, 0.07%)</title><rect x="43.8545%" y="917" width="0.0741%" height="15" fill="rgb(213,116,10)" fg:x="97699" fg:w="165"/><text x="44.1045%" y="927.50"></text></g><g><title>Monitor::wait (23 samples, 0.01%)</title><rect x="43.9492%" y="853" width="0.0103%" height="15" fill="rgb(239,15,48)" fg:x="97910" fg:w="23"/><text x="44.1992%" y="863.50"></text></g><g><title>Monitor::IWait (23 samples, 0.01%)</title><rect x="43.9492%" y="837" width="0.0103%" height="15" fill="rgb(207,123,36)" fg:x="97910" fg:w="23"/><text x="44.1992%" y="847.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.01%)</title><rect x="43.9492%" y="821" width="0.0103%" height="15" fill="rgb(209,103,30)" fg:x="97910" fg:w="23"/><text x="44.1992%" y="831.50"></text></g><g><title>JVM_StartThread (35 samples, 0.02%)</title><rect x="43.9442%" y="885" width="0.0157%" height="15" fill="rgb(238,100,19)" fg:x="97899" fg:w="35"/><text x="44.1942%" y="895.50"></text></g><g><title>os::create_thread (24 samples, 0.01%)</title><rect x="43.9492%" y="869" width="0.0108%" height="15" fill="rgb(244,30,14)" fg:x="97910" fg:w="24"/><text x="44.1992%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="43.9613%" y="661" width="0.0117%" height="15" fill="rgb(249,174,6)" fg:x="97937" fg:w="26"/><text x="44.2113%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="43.9613%" y="645" width="0.0117%" height="15" fill="rgb(235,213,41)" fg:x="97937" fg:w="26"/><text x="44.2113%" y="655.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="43.9613%" y="629" width="0.0117%" height="15" fill="rgb(213,118,6)" fg:x="97937" fg:w="26"/><text x="44.2113%" y="639.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="43.9609%" y="693" width="0.0126%" height="15" fill="rgb(235,44,51)" fg:x="97936" fg:w="28"/><text x="44.2109%" y="703.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="43.9613%" y="677" width="0.0121%" height="15" fill="rgb(217,9,53)" fg:x="97937" fg:w="27"/><text x="44.2113%" y="687.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="43.9600%" y="789" width="0.0139%" height="15" fill="rgb(237,172,34)" fg:x="97934" fg:w="31"/><text x="44.2100%" y="799.50"></text></g><g><title>__x64_sys_futex (31 samples, 0.01%)</title><rect x="43.9600%" y="773" width="0.0139%" height="15" fill="rgb(206,206,11)" fg:x="97934" fg:w="31"/><text x="44.2100%" y="783.50"></text></g><g><title>do_futex (31 samples, 0.01%)</title><rect x="43.9600%" y="757" width="0.0139%" height="15" fill="rgb(214,149,29)" fg:x="97934" fg:w="31"/><text x="44.2100%" y="767.50"></text></g><g><title>futex_wait (31 samples, 0.01%)</title><rect x="43.9600%" y="741" width="0.0139%" height="15" fill="rgb(208,123,3)" fg:x="97934" fg:w="31"/><text x="44.2100%" y="751.50"></text></g><g><title>futex_wait_queue_me (30 samples, 0.01%)</title><rect x="43.9604%" y="725" width="0.0135%" height="15" fill="rgb(229,126,4)" fg:x="97935" fg:w="30"/><text x="44.2104%" y="735.50"></text></g><g><title>schedule (30 samples, 0.01%)</title><rect x="43.9604%" y="709" width="0.0135%" height="15" fill="rgb(222,92,36)" fg:x="97935" fg:w="30"/><text x="44.2104%" y="719.50"></text></g><g><title>__pthread_cond_wait (32 samples, 0.01%)</title><rect x="43.9600%" y="853" width="0.0144%" height="15" fill="rgb(216,39,41)" fg:x="97934" fg:w="32"/><text x="44.2100%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.01%)</title><rect x="43.9600%" y="837" width="0.0144%" height="15" fill="rgb(253,127,28)" fg:x="97934" fg:w="32"/><text x="44.2100%" y="847.50"></text></g><g><title>futex_wait_cancelable (32 samples, 0.01%)</title><rect x="43.9600%" y="821" width="0.0144%" height="15" fill="rgb(249,152,51)" fg:x="97934" fg:w="32"/><text x="44.2100%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.01%)</title><rect x="43.9600%" y="805" width="0.0144%" height="15" fill="rgb(209,123,42)" fg:x="97934" fg:w="32"/><text x="44.2100%" y="815.50"></text></g><g><title>Unsafe_Park (33 samples, 0.01%)</title><rect x="43.9600%" y="885" width="0.0148%" height="15" fill="rgb(241,118,22)" fg:x="97934" fg:w="33"/><text x="44.2100%" y="895.50"></text></g><g><title>Parker::park (33 samples, 0.01%)</title><rect x="43.9600%" y="869" width="0.0148%" height="15" fill="rgb(208,25,7)" fg:x="97934" fg:w="33"/><text x="44.2100%" y="879.50"></text></g><g><title>[perf-945576.map] (106 samples, 0.05%)</title><rect x="43.9308%" y="901" width="0.0476%" height="15" fill="rgb(243,144,39)" fg:x="97869" fg:w="106"/><text x="44.1808%" y="911.50"></text></g><g><title>ret_from_fork (23 samples, 0.01%)</title><rect x="43.9788%" y="885" width="0.0103%" height="15" fill="rgb(250,50,5)" fg:x="97976" fg:w="23"/><text x="44.2288%" y="895.50"></text></g><g><title>__GI___clone (26 samples, 0.01%)</title><rect x="43.9788%" y="901" width="0.0117%" height="15" fill="rgb(207,67,11)" fg:x="97976" fg:w="26"/><text x="44.2288%" y="911.50"></text></g><g><title>globbing_pool-7 (139 samples, 0.06%)</title><rect x="43.9285%" y="917" width="0.0624%" height="15" fill="rgb(245,204,40)" fg:x="97864" fg:w="139"/><text x="44.1785%" y="927.50"></text></g><g><title>Monitor::lock_without_safepoint_check (23 samples, 0.01%)</title><rect x="44.0107%" y="837" width="0.0103%" height="15" fill="rgb(238,228,24)" fg:x="98047" fg:w="23"/><text x="44.2607%" y="847.50"></text></g><g><title>Monitor::ILock (23 samples, 0.01%)</title><rect x="44.0107%" y="821" width="0.0103%" height="15" fill="rgb(217,116,22)" fg:x="98047" fg:w="23"/><text x="44.2607%" y="831.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.01%)</title><rect x="44.0107%" y="805" width="0.0103%" height="15" fill="rgb(234,98,12)" fg:x="98047" fg:w="23"/><text x="44.2607%" y="815.50"></text></g><g><title>SafepointSynchronize::block (25 samples, 0.01%)</title><rect x="44.0107%" y="853" width="0.0112%" height="15" fill="rgb(242,170,50)" fg:x="98047" fg:w="25"/><text x="44.2607%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="44.0224%" y="661" width="0.0148%" height="15" fill="rgb(235,7,5)" fg:x="98073" fg:w="33"/><text x="44.2724%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.01%)</title><rect x="44.0224%" y="645" width="0.0148%" height="15" fill="rgb(241,114,28)" fg:x="98073" fg:w="33"/><text x="44.2724%" y="655.50"></text></g><g><title>native_write_msr (33 samples, 0.01%)</title><rect x="44.0224%" y="629" width="0.0148%" height="15" fill="rgb(246,112,42)" fg:x="98073" fg:w="33"/><text x="44.2724%" y="639.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="44.0219%" y="677" width="0.0166%" height="15" fill="rgb(248,228,14)" fg:x="98072" fg:w="37"/><text x="44.2719%" y="687.50"></text></g><g><title>do_syscall_64 (38 samples, 0.02%)</title><rect x="44.0219%" y="789" width="0.0171%" height="15" fill="rgb(208,133,18)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="799.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.02%)</title><rect x="44.0219%" y="773" width="0.0171%" height="15" fill="rgb(207,35,49)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="783.50"></text></g><g><title>do_futex (38 samples, 0.02%)</title><rect x="44.0219%" y="757" width="0.0171%" height="15" fill="rgb(205,68,36)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="767.50"></text></g><g><title>futex_wait (38 samples, 0.02%)</title><rect x="44.0219%" y="741" width="0.0171%" height="15" fill="rgb(245,62,40)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="751.50"></text></g><g><title>futex_wait_queue_me (38 samples, 0.02%)</title><rect x="44.0219%" y="725" width="0.0171%" height="15" fill="rgb(228,27,24)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="735.50"></text></g><g><title>schedule (38 samples, 0.02%)</title><rect x="44.0219%" y="709" width="0.0171%" height="15" fill="rgb(253,19,12)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="719.50"></text></g><g><title>__schedule (38 samples, 0.02%)</title><rect x="44.0219%" y="693" width="0.0171%" height="15" fill="rgb(232,28,20)" fg:x="98072" fg:w="38"/><text x="44.2719%" y="703.50"></text></g><g><title>Unsafe_Park (66 samples, 0.03%)</title><rect x="44.0102%" y="885" width="0.0296%" height="15" fill="rgb(218,35,51)" fg:x="98046" fg:w="66"/><text x="44.2602%" y="895.50"></text></g><g><title>Parker::park (66 samples, 0.03%)</title><rect x="44.0102%" y="869" width="0.0296%" height="15" fill="rgb(212,90,40)" fg:x="98046" fg:w="66"/><text x="44.2602%" y="879.50"></text></g><g><title>__pthread_cond_wait (40 samples, 0.02%)</title><rect x="44.0219%" y="853" width="0.0180%" height="15" fill="rgb(220,172,12)" fg:x="98072" fg:w="40"/><text x="44.2719%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (40 samples, 0.02%)</title><rect x="44.0219%" y="837" width="0.0180%" height="15" fill="rgb(226,159,20)" fg:x="98072" fg:w="40"/><text x="44.2719%" y="847.50"></text></g><g><title>futex_wait_cancelable (40 samples, 0.02%)</title><rect x="44.0219%" y="821" width="0.0180%" height="15" fill="rgb(234,205,16)" fg:x="98072" fg:w="40"/><text x="44.2719%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.02%)</title><rect x="44.0219%" y="805" width="0.0180%" height="15" fill="rgb(207,9,39)" fg:x="98072" fg:w="40"/><text x="44.2719%" y="815.50"></text></g><g><title>[perf-945576.map] (107 samples, 0.05%)</title><rect x="43.9923%" y="901" width="0.0480%" height="15" fill="rgb(249,143,15)" fg:x="98006" fg:w="107"/><text x="44.2423%" y="911.50"></text></g><g><title>tlb_flush_mmu (29 samples, 0.01%)</title><rect x="44.0565%" y="725" width="0.0130%" height="15" fill="rgb(253,133,29)" fg:x="98149" fg:w="29"/><text x="44.3065%" y="735.50"></text></g><g><title>release_pages (26 samples, 0.01%)</title><rect x="44.0578%" y="709" width="0.0117%" height="15" fill="rgb(221,187,0)" fg:x="98152" fg:w="26"/><text x="44.3078%" y="719.50"></text></g><g><title>mmput (46 samples, 0.02%)</title><rect x="44.0493%" y="789" width="0.0206%" height="15" fill="rgb(205,204,26)" fg:x="98133" fg:w="46"/><text x="44.2993%" y="799.50"></text></g><g><title>exit_mmap (45 samples, 0.02%)</title><rect x="44.0497%" y="773" width="0.0202%" height="15" fill="rgb(224,68,54)" fg:x="98134" fg:w="45"/><text x="44.2997%" y="783.50"></text></g><g><title>unmap_vmas (44 samples, 0.02%)</title><rect x="44.0502%" y="757" width="0.0198%" height="15" fill="rgb(209,67,4)" fg:x="98135" fg:w="44"/><text x="44.3002%" y="767.50"></text></g><g><title>unmap_page_range (44 samples, 0.02%)</title><rect x="44.0502%" y="741" width="0.0198%" height="15" fill="rgb(228,229,18)" fg:x="98135" fg:w="44"/><text x="44.3002%" y="751.50"></text></g><g><title>globbing_pool-8 (177 samples, 0.08%)</title><rect x="43.9909%" y="917" width="0.0795%" height="15" fill="rgb(231,89,13)" fg:x="98003" fg:w="177"/><text x="44.2409%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (48 samples, 0.02%)</title><rect x="44.0488%" y="901" width="0.0215%" height="15" fill="rgb(210,182,18)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="911.50"></text></g><g><title>syscall_exit_to_user_mode (48 samples, 0.02%)</title><rect x="44.0488%" y="885" width="0.0215%" height="15" fill="rgb(240,105,2)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (48 samples, 0.02%)</title><rect x="44.0488%" y="869" width="0.0215%" height="15" fill="rgb(207,170,50)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="879.50"></text></g><g><title>arch_do_signal (48 samples, 0.02%)</title><rect x="44.0488%" y="853" width="0.0215%" height="15" fill="rgb(232,133,24)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="863.50"></text></g><g><title>get_signal (48 samples, 0.02%)</title><rect x="44.0488%" y="837" width="0.0215%" height="15" fill="rgb(235,166,27)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="847.50"></text></g><g><title>do_group_exit (48 samples, 0.02%)</title><rect x="44.0488%" y="821" width="0.0215%" height="15" fill="rgb(209,19,13)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="831.50"></text></g><g><title>do_exit (48 samples, 0.02%)</title><rect x="44.0488%" y="805" width="0.0215%" height="15" fill="rgb(226,79,39)" fg:x="98132" fg:w="48"/><text x="44.2988%" y="815.50"></text></g><g><title>globbing_pool-9 (24 samples, 0.01%)</title><rect x="44.0704%" y="917" width="0.0108%" height="15" fill="rgb(222,163,10)" fg:x="98180" fg:w="24"/><text x="44.3204%" y="927.50"></text></g><g><title>[anon] (227 samples, 0.10%)</title><rect x="44.0910%" y="901" width="0.1019%" height="15" fill="rgb(214,44,19)" fg:x="98226" fg:w="227"/><text x="44.3410%" y="911.50"></text></g><g><title>ClassFileParser::parse_constant_pool (43 samples, 0.02%)</title><rect x="45.1710%" y="741" width="0.0193%" height="15" fill="rgb(210,217,13)" fg:x="100632" fg:w="43"/><text x="45.4210%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (41 samples, 0.02%)</title><rect x="45.1719%" y="725" width="0.0184%" height="15" fill="rgb(237,61,54)" fg:x="100634" fg:w="41"/><text x="45.4219%" y="735.50"></text></g><g><title>SymbolTable::lookup_only (34 samples, 0.02%)</title><rect x="45.1751%" y="709" width="0.0153%" height="15" fill="rgb(226,184,24)" fg:x="100641" fg:w="34"/><text x="45.4251%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (60 samples, 0.03%)</title><rect x="45.1706%" y="773" width="0.0269%" height="15" fill="rgb(223,226,4)" fg:x="100631" fg:w="60"/><text x="45.4206%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (60 samples, 0.03%)</title><rect x="45.1706%" y="757" width="0.0269%" height="15" fill="rgb(210,26,41)" fg:x="100631" fg:w="60"/><text x="45.4206%" y="767.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (25 samples, 0.01%)</title><rect x="45.2002%" y="773" width="0.0112%" height="15" fill="rgb(220,221,6)" fg:x="100697" fg:w="25"/><text x="45.4502%" y="783.50"></text></g><g><title>ClassLoader::load_class (107 samples, 0.05%)</title><rect x="45.1638%" y="805" width="0.0480%" height="15" fill="rgb(225,89,49)" fg:x="100616" fg:w="107"/><text x="45.4138%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (92 samples, 0.04%)</title><rect x="45.1706%" y="789" width="0.0413%" height="15" fill="rgb(218,70,45)" fg:x="100631" fg:w="92"/><text x="45.4206%" y="799.50"></text></g><g><title>ConstantPool::klass_at_impl (133 samples, 0.06%)</title><rect x="45.1607%" y="869" width="0.0597%" height="15" fill="rgb(238,166,21)" fg:x="100609" fg:w="133"/><text x="45.4107%" y="879.50"></text></g><g><title>SystemDictionary::resolve_or_fail (131 samples, 0.06%)</title><rect x="45.1616%" y="853" width="0.0588%" height="15" fill="rgb(224,141,44)" fg:x="100611" fg:w="131"/><text x="45.4116%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (131 samples, 0.06%)</title><rect x="45.1616%" y="837" width="0.0588%" height="15" fill="rgb(230,12,49)" fg:x="100611" fg:w="131"/><text x="45.4116%" y="847.50"></text></g><g><title>SystemDictionary::load_instance_class (127 samples, 0.06%)</title><rect x="45.1634%" y="821" width="0.0570%" height="15" fill="rgb(212,174,12)" fg:x="100615" fg:w="127"/><text x="45.4134%" y="831.50"></text></g><g><title>Method::link_method (33 samples, 0.01%)</title><rect x="45.2330%" y="821" width="0.0148%" height="15" fill="rgb(246,67,9)" fg:x="100770" fg:w="33"/><text x="45.4830%" y="831.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (28 samples, 0.01%)</title><rect x="45.2352%" y="805" width="0.0126%" height="15" fill="rgb(239,35,23)" fg:x="100775" fg:w="28"/><text x="45.4852%" y="815.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (27 samples, 0.01%)</title><rect x="45.2357%" y="789" width="0.0121%" height="15" fill="rgb(211,167,0)" fg:x="100776" fg:w="27"/><text x="45.4857%" y="799.50"></text></g><g><title>InstanceKlass::link_methods (34 samples, 0.02%)</title><rect x="45.2330%" y="837" width="0.0153%" height="15" fill="rgb(225,119,45)" fg:x="100770" fg:w="34"/><text x="45.4830%" y="847.50"></text></g><g><title>Rewriter::rewrite_bytecodes (30 samples, 0.01%)</title><rect x="45.2563%" y="805" width="0.0135%" height="15" fill="rgb(210,162,6)" fg:x="100822" fg:w="30"/><text x="45.5063%" y="815.50"></text></g><g><title>Rewriter::rewrite (46 samples, 0.02%)</title><rect x="45.2496%" y="837" width="0.0206%" height="15" fill="rgb(208,118,35)" fg:x="100807" fg:w="46"/><text x="45.4996%" y="847.50"></text></g><g><title>Rewriter::Rewriter (45 samples, 0.02%)</title><rect x="45.2500%" y="821" width="0.0202%" height="15" fill="rgb(239,4,53)" fg:x="100808" fg:w="45"/><text x="45.5000%" y="831.50"></text></g><g><title>InstanceKlass::link_class_impl (127 samples, 0.06%)</title><rect x="45.2240%" y="853" width="0.0570%" height="15" fill="rgb(213,130,21)" fg:x="100750" fg:w="127"/><text x="45.4740%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (135 samples, 0.06%)</title><rect x="45.2217%" y="869" width="0.0606%" height="15" fill="rgb(235,148,0)" fg:x="100745" fg:w="135"/><text x="45.4717%" y="879.50"></text></g><g><title>InterpreterRuntime::_new (272 samples, 0.12%)</title><rect x="45.1607%" y="885" width="0.1221%" height="15" fill="rgb(244,224,18)" fg:x="100609" fg:w="272"/><text x="45.4107%" y="895.50"></text></g><g><title>InterpreterRuntime::anewarray (39 samples, 0.02%)</title><rect x="45.2828%" y="885" width="0.0175%" height="15" fill="rgb(211,214,4)" fg:x="100881" fg:w="39"/><text x="45.5328%" y="895.50"></text></g><g><title>CompileBroker::compile_method (34 samples, 0.02%)</title><rect x="45.3160%" y="789" width="0.0153%" height="15" fill="rgb(206,119,25)" fg:x="100955" fg:w="34"/><text x="45.5660%" y="799.50"></text></g><g><title>CompileBroker::compile_method_base (24 samples, 0.01%)</title><rect x="45.3205%" y="773" width="0.0108%" height="15" fill="rgb(243,93,47)" fg:x="100965" fg:w="24"/><text x="45.5705%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (50 samples, 0.02%)</title><rect x="45.3093%" y="853" width="0.0224%" height="15" fill="rgb(224,194,6)" fg:x="100940" fg:w="50"/><text x="45.5593%" y="863.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (47 samples, 0.02%)</title><rect x="45.3106%" y="837" width="0.0211%" height="15" fill="rgb(243,229,6)" fg:x="100943" fg:w="47"/><text x="45.5606%" y="847.50"></text></g><g><title>TieredThresholdPolicy::compile (35 samples, 0.02%)</title><rect x="45.3160%" y="821" width="0.0157%" height="15" fill="rgb(207,23,50)" fg:x="100955" fg:w="35"/><text x="45.5660%" y="831.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (35 samples, 0.02%)</title><rect x="45.3160%" y="805" width="0.0157%" height="15" fill="rgb(253,192,32)" fg:x="100955" fg:w="35"/><text x="45.5660%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (54 samples, 0.02%)</title><rect x="45.3079%" y="885" width="0.0242%" height="15" fill="rgb(213,21,6)" fg:x="100937" fg:w="54"/><text x="45.5579%" y="895.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (54 samples, 0.02%)</title><rect x="45.3079%" y="869" width="0.0242%" height="15" fill="rgb(243,151,13)" fg:x="100937" fg:w="54"/><text x="45.5579%" y="879.50"></text></g><g><title>InterpreterRuntime::ldc (26 samples, 0.01%)</title><rect x="45.3322%" y="885" width="0.0117%" height="15" fill="rgb(233,165,41)" fg:x="100991" fg:w="26"/><text x="45.5822%" y="895.50"></text></g><g><title>ClassLoader::load_class (23 samples, 0.01%)</title><rect x="45.3631%" y="773" width="0.0103%" height="15" fill="rgb(246,176,45)" fg:x="101060" fg:w="23"/><text x="45.6131%" y="783.50"></text></g><g><title>ConstantPool::klass_ref_at (30 samples, 0.01%)</title><rect x="45.3604%" y="837" width="0.0135%" height="15" fill="rgb(217,170,52)" fg:x="101054" fg:w="30"/><text x="45.6104%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (27 samples, 0.01%)</title><rect x="45.3618%" y="821" width="0.0121%" height="15" fill="rgb(214,203,54)" fg:x="101057" fg:w="27"/><text x="45.6118%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (27 samples, 0.01%)</title><rect x="45.3618%" y="805" width="0.0121%" height="15" fill="rgb(248,215,49)" fg:x="101057" fg:w="27"/><text x="45.6118%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (24 samples, 0.01%)</title><rect x="45.3631%" y="789" width="0.0108%" height="15" fill="rgb(208,46,10)" fg:x="101060" fg:w="24"/><text x="45.6131%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (27 samples, 0.01%)</title><rect x="45.3806%" y="805" width="0.0121%" height="15" fill="rgb(254,5,31)" fg:x="101099" fg:w="27"/><text x="45.6306%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (31 samples, 0.01%)</title><rect x="45.3797%" y="821" width="0.0139%" height="15" fill="rgb(222,104,33)" fg:x="101097" fg:w="31"/><text x="45.6297%" y="831.50"></text></g><g><title>LinkResolver::resolve_field_access (80 samples, 0.04%)</title><rect x="45.3600%" y="853" width="0.0359%" height="15" fill="rgb(248,49,16)" fg:x="101053" fg:w="80"/><text x="45.6100%" y="863.50"></text></g><g><title>LinkResolver::resolve_field (49 samples, 0.02%)</title><rect x="45.3739%" y="837" width="0.0220%" height="15" fill="rgb(232,198,41)" fg:x="101084" fg:w="49"/><text x="45.6239%" y="847.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (103 samples, 0.05%)</title><rect x="45.3510%" y="869" width="0.0462%" height="15" fill="rgb(214,125,3)" fg:x="101033" fg:w="103"/><text x="45.6010%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool (25 samples, 0.01%)</title><rect x="45.4210%" y="709" width="0.0112%" height="15" fill="rgb(229,220,28)" fg:x="101189" fg:w="25"/><text x="45.6710%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (24 samples, 0.01%)</title><rect x="45.4215%" y="693" width="0.0108%" height="15" fill="rgb(222,64,37)" fg:x="101190" fg:w="24"/><text x="45.6715%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (40 samples, 0.02%)</title><rect x="45.4210%" y="741" width="0.0180%" height="15" fill="rgb(249,184,13)" fg:x="101189" fg:w="40"/><text x="45.6710%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (40 samples, 0.02%)</title><rect x="45.4210%" y="725" width="0.0180%" height="15" fill="rgb(252,176,6)" fg:x="101189" fg:w="40"/><text x="45.6710%" y="735.50"></text></g><g><title>ClassLoader::load_class (56 samples, 0.03%)</title><rect x="45.4179%" y="773" width="0.0251%" height="15" fill="rgb(228,153,7)" fg:x="101182" fg:w="56"/><text x="45.6679%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (49 samples, 0.02%)</title><rect x="45.4210%" y="757" width="0.0220%" height="15" fill="rgb(242,193,5)" fg:x="101189" fg:w="49"/><text x="45.6710%" y="767.50"></text></g><g><title>SystemDictionary::load_instance_class (68 samples, 0.03%)</title><rect x="45.4179%" y="789" width="0.0305%" height="15" fill="rgb(232,140,9)" fg:x="101182" fg:w="68"/><text x="45.6679%" y="799.50"></text></g><g><title>ConstantPool::klass_ref_at (81 samples, 0.04%)</title><rect x="45.4130%" y="837" width="0.0364%" height="15" fill="rgb(213,222,16)" fg:x="101171" fg:w="81"/><text x="45.6630%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (78 samples, 0.04%)</title><rect x="45.4143%" y="821" width="0.0350%" height="15" fill="rgb(222,75,50)" fg:x="101174" fg:w="78"/><text x="45.6643%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (78 samples, 0.04%)</title><rect x="45.4143%" y="805" width="0.0350%" height="15" fill="rgb(205,180,2)" fg:x="101174" fg:w="78"/><text x="45.6643%" y="815.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (24 samples, 0.01%)</title><rect x="45.4579%" y="837" width="0.0108%" height="15" fill="rgb(216,34,7)" fg:x="101271" fg:w="24"/><text x="45.7079%" y="847.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (26 samples, 0.01%)</title><rect x="45.4740%" y="821" width="0.0117%" height="15" fill="rgb(253,16,32)" fg:x="101307" fg:w="26"/><text x="45.7240%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (41 samples, 0.02%)</title><rect x="45.4686%" y="837" width="0.0184%" height="15" fill="rgb(208,97,28)" fg:x="101295" fg:w="41"/><text x="45.7186%" y="847.50"></text></g><g><title>Rewriter::rewrite (31 samples, 0.01%)</title><rect x="45.5009%" y="789" width="0.0139%" height="15" fill="rgb(225,92,11)" fg:x="101367" fg:w="31"/><text x="45.7509%" y="799.50"></text></g><g><title>Rewriter::Rewriter (31 samples, 0.01%)</title><rect x="45.5009%" y="773" width="0.0139%" height="15" fill="rgb(243,38,12)" fg:x="101367" fg:w="31"/><text x="45.7509%" y="783.50"></text></g><g><title>Rewriter::rewrite_bytecodes (24 samples, 0.01%)</title><rect x="45.5041%" y="757" width="0.0108%" height="15" fill="rgb(208,139,16)" fg:x="101374" fg:w="24"/><text x="45.7541%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (72 samples, 0.03%)</title><rect x="45.4888%" y="805" width="0.0323%" height="15" fill="rgb(227,24,9)" fg:x="101340" fg:w="72"/><text x="45.7388%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (74 samples, 0.03%)</title><rect x="45.4888%" y="821" width="0.0332%" height="15" fill="rgb(206,62,11)" fg:x="101340" fg:w="74"/><text x="45.7388%" y="831.50"></text></g><g><title>LinkResolver::resolve_method (24 samples, 0.01%)</title><rect x="45.5234%" y="821" width="0.0108%" height="15" fill="rgb(228,134,27)" fg:x="101417" fg:w="24"/><text x="45.7734%" y="831.50"></text></g><g><title>LinkResolver::resolve_static_call (106 samples, 0.05%)</title><rect x="45.4870%" y="837" width="0.0476%" height="15" fill="rgb(205,55,33)" fg:x="101336" fg:w="106"/><text x="45.7370%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (277 samples, 0.12%)</title><rect x="45.4107%" y="853" width="0.1243%" height="15" fill="rgb(243,75,43)" fg:x="101166" fg:w="277"/><text x="45.6607%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (313 samples, 0.14%)</title><rect x="45.3973%" y="869" width="0.1405%" height="15" fill="rgb(223,27,42)" fg:x="101136" fg:w="313"/><text x="45.6473%" y="879.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (37 samples, 0.02%)</title><rect x="45.5382%" y="821" width="0.0166%" height="15" fill="rgb(232,189,33)" fg:x="101450" fg:w="37"/><text x="45.7882%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (49 samples, 0.02%)</title><rect x="45.5378%" y="869" width="0.0220%" height="15" fill="rgb(210,9,39)" fg:x="101449" fg:w="49"/><text x="45.7878%" y="879.50"></text></g><g><title>LinkResolver::resolve_invoke (49 samples, 0.02%)</title><rect x="45.5378%" y="853" width="0.0220%" height="15" fill="rgb(242,85,26)" fg:x="101449" fg:w="49"/><text x="45.7878%" y="863.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (49 samples, 0.02%)</title><rect x="45.5378%" y="837" width="0.0220%" height="15" fill="rgb(248,44,4)" fg:x="101449" fg:w="49"/><text x="45.7878%" y="847.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (473 samples, 0.21%)</title><rect x="45.3492%" y="885" width="0.2123%" height="15" fill="rgb(250,96,46)" fg:x="101029" fg:w="473"/><text x="45.5992%" y="895.50"></text></g><g><title>ConstantPool::string_at_impl (27 samples, 0.01%)</title><rect x="45.5629%" y="837" width="0.0121%" height="15" fill="rgb(229,116,26)" fg:x="101505" fg:w="27"/><text x="45.8129%" y="847.50"></text></g><g><title>StringTable::intern (25 samples, 0.01%)</title><rect x="45.5638%" y="821" width="0.0112%" height="15" fill="rgb(246,94,34)" fg:x="101507" fg:w="25"/><text x="45.8138%" y="831.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (29 samples, 0.01%)</title><rect x="45.5624%" y="869" width="0.0130%" height="15" fill="rgb(251,73,21)" fg:x="101504" fg:w="29"/><text x="45.8124%" y="879.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (29 samples, 0.01%)</title><rect x="45.5624%" y="853" width="0.0130%" height="15" fill="rgb(254,121,25)" fg:x="101504" fg:w="29"/><text x="45.8124%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (35 samples, 0.02%)</title><rect x="45.5615%" y="885" width="0.0157%" height="15" fill="rgb(215,161,49)" fg:x="101502" fg:w="35"/><text x="45.8115%" y="895.50"></text></g><g><title>JVM_ConstantPoolGetUTF8At (23 samples, 0.01%)</title><rect x="45.5867%" y="885" width="0.0103%" height="15" fill="rgb(221,43,13)" fg:x="101558" fg:w="23"/><text x="45.8367%" y="895.50"></text></g><g><title>JVM_FindLoadedClass (24 samples, 0.01%)</title><rect x="45.6019%" y="885" width="0.0108%" height="15" fill="rgb(249,5,37)" fg:x="101592" fg:w="24"/><text x="45.8519%" y="895.50"></text></g><g><title>JVM_GetClassDeclaredConstructors (25 samples, 0.01%)</title><rect x="45.6190%" y="885" width="0.0112%" height="15" fill="rgb(226,25,44)" fg:x="101630" fg:w="25"/><text x="45.8690%" y="895.50"></text></g><g><title>get_class_declared_methods_helper (25 samples, 0.01%)</title><rect x="45.6190%" y="869" width="0.0112%" height="15" fill="rgb(238,189,16)" fg:x="101630" fg:w="25"/><text x="45.8690%" y="879.50"></text></g><g><title>Reflection::new_method (30 samples, 0.01%)</title><rect x="45.6423%" y="853" width="0.0135%" height="15" fill="rgb(251,186,8)" fg:x="101682" fg:w="30"/><text x="45.8923%" y="863.50"></text></g><g><title>JVM_GetClassDeclaredMethods (49 samples, 0.02%)</title><rect x="45.6343%" y="885" width="0.0220%" height="15" fill="rgb(254,34,31)" fg:x="101664" fg:w="49"/><text x="45.8843%" y="895.50"></text></g><g><title>get_class_declared_methods_helper (49 samples, 0.02%)</title><rect x="45.6343%" y="869" width="0.0220%" height="15" fill="rgb(225,215,27)" fg:x="101664" fg:w="49"/><text x="45.8843%" y="879.50"></text></g><g><title>JVM_InitClassName (23 samples, 0.01%)</title><rect x="45.6639%" y="885" width="0.0103%" height="15" fill="rgb(221,192,48)" fg:x="101730" fg:w="23"/><text x="45.9139%" y="895.50"></text></g><g><title>JVM_StartThread (31 samples, 0.01%)</title><rect x="45.6922%" y="885" width="0.0139%" height="15" fill="rgb(219,137,20)" fg:x="101793" fg:w="31"/><text x="45.9422%" y="895.50"></text></g><g><title>AllocateHeap (27 samples, 0.01%)</title><rect x="45.7550%" y="709" width="0.0121%" height="15" fill="rgb(219,84,11)" fg:x="101933" fg:w="27"/><text x="46.0050%" y="719.50"></text></g><g><title>os::malloc (26 samples, 0.01%)</title><rect x="45.7555%" y="693" width="0.0117%" height="15" fill="rgb(224,10,23)" fg:x="101934" fg:w="26"/><text x="46.0055%" y="703.50"></text></g><g><title>__GI___libc_malloc (23 samples, 0.01%)</title><rect x="45.7568%" y="677" width="0.0103%" height="15" fill="rgb(248,22,39)" fg:x="101937" fg:w="23"/><text x="46.0068%" y="687.50"></text></g><g><title>SymbolTable::basic_add (61 samples, 0.03%)</title><rect x="45.7465%" y="725" width="0.0274%" height="15" fill="rgb(212,154,20)" fg:x="101914" fg:w="61"/><text x="45.9965%" y="735.50"></text></g><g><title>SymbolTable::add (65 samples, 0.03%)</title><rect x="45.7451%" y="741" width="0.0292%" height="15" fill="rgb(236,199,50)" fg:x="101911" fg:w="65"/><text x="45.9951%" y="751.50"></text></g><g><title>SymbolTable::lookup_only (452 samples, 0.20%)</title><rect x="45.7743%" y="741" width="0.2029%" height="15" fill="rgb(211,9,17)" fg:x="101976" fg:w="452"/><text x="46.0243%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (550 samples, 0.25%)</title><rect x="45.7317%" y="757" width="0.2469%" height="15" fill="rgb(243,216,36)" fg:x="101881" fg:w="550"/><text x="45.9817%" y="767.50"></text></g><g><title>ClassFileParser::parse_constant_pool (571 samples, 0.26%)</title><rect x="45.7254%" y="773" width="0.2563%" height="15" fill="rgb(250,2,10)" fg:x="101867" fg:w="571"/><text x="45.9754%" y="783.50"></text></g><g><title>Method::allocate (35 samples, 0.02%)</title><rect x="46.0311%" y="741" width="0.0157%" height="15" fill="rgb(226,50,48)" fg:x="102548" fg:w="35"/><text x="46.2811%" y="751.50"></text></g><g><title>ClassFileParser::parse_method (143 samples, 0.06%)</title><rect x="45.9938%" y="757" width="0.0642%" height="15" fill="rgb(243,81,16)" fg:x="102465" fg:w="143"/><text x="46.2438%" y="767.50"></text></g><g><title>ClassFileParser::parse_methods (148 samples, 0.07%)</title><rect x="45.9925%" y="773" width="0.0664%" height="15" fill="rgb(250,14,2)" fg:x="102462" fg:w="148"/><text x="46.2425%" y="783.50"></text></g><g><title>ConstantPool::allocate (27 samples, 0.01%)</title><rect x="46.0589%" y="773" width="0.0121%" height="15" fill="rgb(233,135,29)" fg:x="102610" fg:w="27"/><text x="46.3089%" y="783.50"></text></g><g><title>Metaspace::allocate (27 samples, 0.01%)</title><rect x="46.0589%" y="757" width="0.0121%" height="15" fill="rgb(224,64,43)" fg:x="102610" fg:w="27"/><text x="46.3089%" y="767.50"></text></g><g><title>ClassFileParser::ClassFileParser (782 samples, 0.35%)</title><rect x="45.7209%" y="805" width="0.3510%" height="15" fill="rgb(238,84,13)" fg:x="101857" fg:w="782"/><text x="45.9709%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (782 samples, 0.35%)</title><rect x="45.7209%" y="789" width="0.3510%" height="15" fill="rgb(253,48,26)" fg:x="101857" fg:w="782"/><text x="45.9709%" y="799.50"></text></g><g><title>InstanceKlass::find_method (29 samples, 0.01%)</title><rect x="46.0997%" y="741" width="0.0130%" height="15" fill="rgb(205,223,31)" fg:x="102701" fg:w="29"/><text x="46.3497%" y="751.50"></text></g><g><title>InstanceKlass::find_method_index (29 samples, 0.01%)</title><rect x="46.0997%" y="725" width="0.0130%" height="15" fill="rgb(221,41,32)" fg:x="102701" fg:w="29"/><text x="46.3497%" y="735.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (102 samples, 0.05%)</title><rect x="46.0822%" y="757" width="0.0458%" height="15" fill="rgb(213,158,31)" fg:x="102662" fg:w="102"/><text x="46.3322%" y="767.50"></text></g><g><title>resource_allocate_bytes (29 samples, 0.01%)</title><rect x="46.1150%" y="741" width="0.0130%" height="15" fill="rgb(245,126,43)" fg:x="102735" fg:w="29"/><text x="46.3650%" y="751.50"></text></g><g><title>DefaultMethods::generate_default_methods (151 samples, 0.07%)</title><rect x="46.0755%" y="773" width="0.0678%" height="15" fill="rgb(227,7,22)" fg:x="102647" fg:w="151"/><text x="46.3255%" y="783.50"></text></g><g><title>ClassFileParser::fill_instance_klass (187 samples, 0.08%)</title><rect x="46.0719%" y="789" width="0.0839%" height="15" fill="rgb(252,90,44)" fg:x="102639" fg:w="187"/><text x="46.3219%" y="799.50"></text></g><g><title>ClassFileParser::create_instance_klass (199 samples, 0.09%)</title><rect x="46.0719%" y="805" width="0.0893%" height="15" fill="rgb(253,91,0)" fg:x="102639" fg:w="199"/><text x="46.3219%" y="815.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (50 samples, 0.02%)</title><rect x="46.1612%" y="805" width="0.0224%" height="15" fill="rgb(252,175,49)" fg:x="102838" fg:w="50"/><text x="46.4112%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (1,033 samples, 0.46%)</title><rect x="45.7209%" y="821" width="0.4637%" height="15" fill="rgb(246,150,1)" fg:x="101857" fg:w="1033"/><text x="45.9709%" y="831.50"></text></g><g><title>JVM_DefineClassWithSource (1,078 samples, 0.48%)</title><rect x="45.7160%" y="869" width="0.4839%" height="15" fill="rgb(241,192,25)" fg:x="101846" fg:w="1078"/><text x="45.9660%" y="879.50"></text></g><g><title>jvm_define_class_common (1,077 samples, 0.48%)</title><rect x="45.7164%" y="853" width="0.4834%" height="15" fill="rgb(239,187,11)" fg:x="101847" fg:w="1077"/><text x="45.9664%" y="863.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,068 samples, 0.48%)</title><rect x="45.7204%" y="837" width="0.4794%" height="15" fill="rgb(218,202,51)" fg:x="101856" fg:w="1068"/><text x="45.9704%" y="847.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (33 samples, 0.01%)</title><rect x="46.1850%" y="821" width="0.0148%" height="15" fill="rgb(225,176,8)" fg:x="102891" fg:w="33"/><text x="46.4350%" y="831.50"></text></g><g><title>SystemDictionary::define_instance_class (31 samples, 0.01%)</title><rect x="46.1859%" y="805" width="0.0139%" height="15" fill="rgb(219,122,41)" fg:x="102893" fg:w="31"/><text x="46.4359%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,120 samples, 0.50%)</title><rect x="45.7151%" y="885" width="0.5027%" height="15" fill="rgb(248,140,20)" fg:x="101844" fg:w="1120"/><text x="45.9651%" y="895.50"></text></g><g><title>ClassLoader::load_class (47 samples, 0.02%)</title><rect x="46.2259%" y="805" width="0.0211%" height="15" fill="rgb(245,41,37)" fg:x="102982" fg:w="47"/><text x="46.4759%" y="815.50"></text></g><g><title>JVM_FindClassFromBootLoader (72 samples, 0.03%)</title><rect x="46.2182%" y="869" width="0.0323%" height="15" fill="rgb(235,82,39)" fg:x="102965" fg:w="72"/><text x="46.4682%" y="879.50"></text></g><g><title>SystemDictionary::resolve_or_null (68 samples, 0.03%)</title><rect x="46.2200%" y="853" width="0.0305%" height="15" fill="rgb(230,108,42)" fg:x="102969" fg:w="68"/><text x="46.4700%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (68 samples, 0.03%)</title><rect x="46.2200%" y="837" width="0.0305%" height="15" fill="rgb(215,150,50)" fg:x="102969" fg:w="68"/><text x="46.4700%" y="847.50"></text></g><g><title>SystemDictionary::load_instance_class (55 samples, 0.02%)</title><rect x="46.2259%" y="821" width="0.0247%" height="15" fill="rgb(233,212,5)" fg:x="102982" fg:w="55"/><text x="46.4759%" y="831.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (96 samples, 0.04%)</title><rect x="46.2178%" y="885" width="0.0431%" height="15" fill="rgb(245,80,22)" fg:x="102964" fg:w="96"/><text x="46.4678%" y="895.50"></text></g><g><title>Java_java_lang_Class_forName0 (32 samples, 0.01%)</title><rect x="46.2609%" y="885" width="0.0144%" height="15" fill="rgb(238,129,16)" fg:x="103060" fg:w="32"/><text x="46.5109%" y="895.50"></text></g><g><title>MHN_resolve_Mem (23 samples, 0.01%)</title><rect x="46.2842%" y="885" width="0.0103%" height="15" fill="rgb(240,19,0)" fg:x="103112" fg:w="23"/><text x="46.5342%" y="895.50"></text></g><g><title>ClassFileParser::ClassFileParser (28 samples, 0.01%)</title><rect x="46.3242%" y="837" width="0.0126%" height="15" fill="rgb(232,42,35)" fg:x="103201" fg:w="28"/><text x="46.5742%" y="847.50"></text></g><g><title>ClassFileParser::parse_stream (28 samples, 0.01%)</title><rect x="46.3242%" y="821" width="0.0126%" height="15" fill="rgb(223,130,24)" fg:x="103201" fg:w="28"/><text x="46.5742%" y="831.50"></text></g><g><title>KlassFactory::create_from_stream (50 samples, 0.02%)</title><rect x="46.3242%" y="853" width="0.0224%" height="15" fill="rgb(237,16,22)" fg:x="103201" fg:w="50"/><text x="46.5742%" y="863.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (73 samples, 0.03%)</title><rect x="46.3143%" y="885" width="0.0328%" height="15" fill="rgb(248,192,20)" fg:x="103179" fg:w="73"/><text x="46.5643%" y="895.50"></text></g><g><title>SystemDictionary::parse_stream (70 samples, 0.03%)</title><rect x="46.3156%" y="869" width="0.0314%" height="15" fill="rgb(233,167,2)" fg:x="103182" fg:w="70"/><text x="46.5656%" y="879.50"></text></g><g><title>[perf-945576.map] (4,824 samples, 2.17%)</title><rect x="44.2010%" y="901" width="2.1654%" height="15" fill="rgb(252,71,44)" fg:x="98471" fg:w="4824"/><text x="44.4510%" y="911.50">[..</text></g><g><title>SharedRuntime::find_callee_info_helper (29 samples, 0.01%)</title><rect x="46.3861%" y="869" width="0.0130%" height="15" fill="rgb(238,37,47)" fg:x="103339" fg:w="29"/><text x="46.6361%" y="879.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (46 samples, 0.02%)</title><rect x="46.3803%" y="885" width="0.0206%" height="15" fill="rgb(214,202,54)" fg:x="103326" fg:w="46"/><text x="46.6303%" y="895.50"></text></g><g><title>generic_file_buffered_read (35 samples, 0.02%)</title><rect x="46.4117%" y="741" width="0.0157%" height="15" fill="rgb(254,165,40)" fg:x="103396" fg:w="35"/><text x="46.6617%" y="751.50"></text></g><g><title>new_sync_read (37 samples, 0.02%)</title><rect x="46.4113%" y="757" width="0.0166%" height="15" fill="rgb(246,173,38)" fg:x="103395" fg:w="37"/><text x="46.6613%" y="767.50"></text></g><g><title>handleRead (47 samples, 0.02%)</title><rect x="46.4090%" y="869" width="0.0211%" height="15" fill="rgb(215,3,27)" fg:x="103390" fg:w="47"/><text x="46.6590%" y="879.50"></text></g><g><title>__libc_read (47 samples, 0.02%)</title><rect x="46.4090%" y="853" width="0.0211%" height="15" fill="rgb(239,169,51)" fg:x="103390" fg:w="47"/><text x="46.6590%" y="863.50"></text></g><g><title>__libc_read (46 samples, 0.02%)</title><rect x="46.4095%" y="837" width="0.0206%" height="15" fill="rgb(212,5,25)" fg:x="103391" fg:w="46"/><text x="46.6595%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.02%)</title><rect x="46.4104%" y="821" width="0.0198%" height="15" fill="rgb(243,45,17)" fg:x="103393" fg:w="44"/><text x="46.6604%" y="831.50"></text></g><g><title>do_syscall_64 (44 samples, 0.02%)</title><rect x="46.4104%" y="805" width="0.0198%" height="15" fill="rgb(242,97,9)" fg:x="103393" fg:w="44"/><text x="46.6604%" y="815.50"></text></g><g><title>ksys_read (44 samples, 0.02%)</title><rect x="46.4104%" y="789" width="0.0198%" height="15" fill="rgb(228,71,31)" fg:x="103393" fg:w="44"/><text x="46.6604%" y="799.50"></text></g><g><title>vfs_read (42 samples, 0.02%)</title><rect x="46.4113%" y="773" width="0.0189%" height="15" fill="rgb(252,184,16)" fg:x="103395" fg:w="42"/><text x="46.6613%" y="783.50"></text></g><g><title>readBytes (75 samples, 0.03%)</title><rect x="46.4063%" y="885" width="0.0337%" height="15" fill="rgb(236,169,46)" fg:x="103384" fg:w="75"/><text x="46.6563%" y="895.50"></text></g><g><title>[unknown] (168 samples, 0.08%)</title><rect x="46.3664%" y="901" width="0.0754%" height="15" fill="rgb(207,17,47)" fg:x="103295" fg:w="168"/><text x="46.6164%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (232 samples, 0.10%)</title><rect x="46.4508%" y="837" width="0.1041%" height="15" fill="rgb(206,201,28)" fg:x="103483" fg:w="232"/><text x="46.7008%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (229 samples, 0.10%)</title><rect x="46.4521%" y="821" width="0.1028%" height="15" fill="rgb(224,184,23)" fg:x="103486" fg:w="229"/><text x="46.7021%" y="831.50"></text></g><g><title>native_write_msr (229 samples, 0.10%)</title><rect x="46.4521%" y="805" width="0.1028%" height="15" fill="rgb(208,139,48)" fg:x="103486" fg:w="229"/><text x="46.7021%" y="815.50"></text></g><g><title>schedule_tail (248 samples, 0.11%)</title><rect x="46.4481%" y="869" width="0.1113%" height="15" fill="rgb(208,130,10)" fg:x="103477" fg:w="248"/><text x="46.6981%" y="879.50"></text></g><g><title>finish_task_switch (247 samples, 0.11%)</title><rect x="46.4485%" y="853" width="0.1109%" height="15" fill="rgb(211,213,45)" fg:x="103478" fg:w="247"/><text x="46.6985%" y="863.50"></text></g><g><title>ret_from_fork (260 samples, 0.12%)</title><rect x="46.4454%" y="885" width="0.1167%" height="15" fill="rgb(235,100,30)" fg:x="103471" fg:w="260"/><text x="46.6954%" y="895.50"></text></g><g><title>init_globals (33 samples, 0.01%)</title><rect x="46.5634%" y="821" width="0.0148%" height="15" fill="rgb(206,144,31)" fg:x="103734" fg:w="33"/><text x="46.8134%" y="831.50"></text></g><g><title>JNI_CreateJavaVM (39 samples, 0.02%)</title><rect x="46.5621%" y="853" width="0.0175%" height="15" fill="rgb(224,200,26)" fg:x="103731" fg:w="39"/><text x="46.8121%" y="863.50"></text></g><g><title>Threads::create_vm (39 samples, 0.02%)</title><rect x="46.5621%" y="837" width="0.0175%" height="15" fill="rgb(247,104,53)" fg:x="103731" fg:w="39"/><text x="46.8121%" y="847.50"></text></g><g><title>JavaMain (41 samples, 0.02%)</title><rect x="46.5621%" y="869" width="0.0184%" height="15" fill="rgb(220,14,17)" fg:x="103731" fg:w="41"/><text x="46.8121%" y="879.50"></text></g><g><title>Monitor::wait (26 samples, 0.01%)</title><rect x="46.5827%" y="853" width="0.0117%" height="15" fill="rgb(230,140,40)" fg:x="103777" fg:w="26"/><text x="46.8327%" y="863.50"></text></g><g><title>Monitor::IWait (26 samples, 0.01%)</title><rect x="46.5827%" y="837" width="0.0117%" height="15" fill="rgb(229,2,41)" fg:x="103777" fg:w="26"/><text x="46.8327%" y="847.50"></text></g><g><title>Thread::call_run (23 samples, 0.01%)</title><rect x="46.5944%" y="853" width="0.0103%" height="15" fill="rgb(232,89,16)" fg:x="103803" fg:w="23"/><text x="46.8444%" y="863.50"></text></g><g><title>__GI___clone (384 samples, 0.17%)</title><rect x="46.4418%" y="901" width="0.1724%" height="15" fill="rgb(247,59,52)" fg:x="103463" fg:w="384"/><text x="46.6918%" y="911.50"></text></g><g><title>start_thread (116 samples, 0.05%)</title><rect x="46.5621%" y="885" width="0.0521%" height="15" fill="rgb(226,110,21)" fg:x="103731" fg:w="116"/><text x="46.8121%" y="895.50"></text></g><g><title>thread_native_entry (71 samples, 0.03%)</title><rect x="46.5823%" y="869" width="0.0319%" height="15" fill="rgb(224,176,43)" fg:x="103776" fg:w="71"/><text x="46.8323%" y="879.50"></text></g><g><title>java (5,677 samples, 2.55%)</title><rect x="44.0812%" y="917" width="2.5483%" height="15" fill="rgb(221,73,6)" fg:x="98204" fg:w="5677"/><text x="44.3312%" y="927.50">ja..</text></g><g><title>[[heap]] (40 samples, 0.02%)</title><rect x="46.6294%" y="901" width="0.0180%" height="15" fill="rgb(232,78,19)" fg:x="103881" fg:w="40"/><text x="46.8794%" y="911.50"></text></g><g><title>filemap_map_pages (35 samples, 0.02%)</title><rect x="47.5020%" y="805" width="0.0157%" height="15" fill="rgb(233,112,48)" fg:x="105825" fg:w="35"/><text x="47.7520%" y="815.50"></text></g><g><title>asm_exc_page_fault (54 samples, 0.02%)</title><rect x="47.4948%" y="869" width="0.0242%" height="15" fill="rgb(243,131,47)" fg:x="105809" fg:w="54"/><text x="47.7448%" y="879.50"></text></g><g><title>exc_page_fault (53 samples, 0.02%)</title><rect x="47.4953%" y="853" width="0.0238%" height="15" fill="rgb(226,51,1)" fg:x="105810" fg:w="53"/><text x="47.7453%" y="863.50"></text></g><g><title>do_user_addr_fault (52 samples, 0.02%)</title><rect x="47.4957%" y="837" width="0.0233%" height="15" fill="rgb(247,58,7)" fg:x="105811" fg:w="52"/><text x="47.7457%" y="847.50"></text></g><g><title>handle_mm_fault (47 samples, 0.02%)</title><rect x="47.4980%" y="821" width="0.0211%" height="15" fill="rgb(209,7,32)" fg:x="105816" fg:w="47"/><text x="47.7480%" y="831.50"></text></g><g><title>[libc-2.31.so] (264 samples, 0.12%)</title><rect x="47.4010%" y="885" width="0.1185%" height="15" fill="rgb(209,39,41)" fg:x="105600" fg:w="264"/><text x="47.6510%" y="895.50"></text></g><g><title>btrfs_lookup (25 samples, 0.01%)</title><rect x="47.5254%" y="757" width="0.0112%" height="15" fill="rgb(226,182,46)" fg:x="105877" fg:w="25"/><text x="47.7754%" y="767.50"></text></g><g><title>btrfs_lookup_dentry (25 samples, 0.01%)</title><rect x="47.5254%" y="741" width="0.0112%" height="15" fill="rgb(230,219,10)" fg:x="105877" fg:w="25"/><text x="47.7754%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (24 samples, 0.01%)</title><rect x="47.5258%" y="725" width="0.0108%" height="15" fill="rgb(227,175,30)" fg:x="105878" fg:w="24"/><text x="47.7758%" y="735.50"></text></g><g><title>btrfs_search_slot (24 samples, 0.01%)</title><rect x="47.5258%" y="709" width="0.0108%" height="15" fill="rgb(217,2,50)" fg:x="105878" fg:w="24"/><text x="47.7758%" y="719.50"></text></g><g><title>filename_lookup (39 samples, 0.02%)</title><rect x="47.5195%" y="821" width="0.0175%" height="15" fill="rgb(229,160,0)" fg:x="105864" fg:w="39"/><text x="47.7695%" y="831.50"></text></g><g><title>path_lookupat (37 samples, 0.02%)</title><rect x="47.5204%" y="805" width="0.0166%" height="15" fill="rgb(207,78,37)" fg:x="105866" fg:w="37"/><text x="47.7704%" y="815.50"></text></g><g><title>walk_component (27 samples, 0.01%)</title><rect x="47.5249%" y="789" width="0.0121%" height="15" fill="rgb(225,57,0)" fg:x="105876" fg:w="27"/><text x="47.7749%" y="799.50"></text></g><g><title>__lookup_slow (26 samples, 0.01%)</title><rect x="47.5254%" y="773" width="0.0117%" height="15" fill="rgb(232,154,2)" fg:x="105877" fg:w="26"/><text x="47.7754%" y="783.50"></text></g><g><title>__GI___access (51 samples, 0.02%)</title><rect x="47.5195%" y="885" width="0.0229%" height="15" fill="rgb(241,212,25)" fg:x="105864" fg:w="51"/><text x="47.7695%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.02%)</title><rect x="47.5195%" y="869" width="0.0229%" height="15" fill="rgb(226,69,20)" fg:x="105864" fg:w="51"/><text x="47.7695%" y="879.50"></text></g><g><title>do_syscall_64 (51 samples, 0.02%)</title><rect x="47.5195%" y="853" width="0.0229%" height="15" fill="rgb(247,184,54)" fg:x="105864" fg:w="51"/><text x="47.7695%" y="863.50"></text></g><g><title>do_faccessat (51 samples, 0.02%)</title><rect x="47.5195%" y="837" width="0.0229%" height="15" fill="rgb(210,145,0)" fg:x="105864" fg:w="51"/><text x="47.7695%" y="847.50"></text></g><g><title>__GI___libc_realloc (28 samples, 0.01%)</title><rect x="47.5613%" y="885" width="0.0126%" height="15" fill="rgb(253,82,12)" fg:x="105957" fg:w="28"/><text x="47.8113%" y="895.50"></text></g><g><title>_int_realloc (27 samples, 0.01%)</title><rect x="47.5617%" y="869" width="0.0121%" height="15" fill="rgb(245,42,11)" fg:x="105958" fg:w="27"/><text x="47.8117%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (449 samples, 0.20%)</title><rect x="47.6353%" y="709" width="0.2015%" height="15" fill="rgb(219,147,32)" fg:x="106122" fg:w="449"/><text x="47.8853%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (443 samples, 0.20%)</title><rect x="47.6380%" y="693" width="0.1989%" height="15" fill="rgb(246,12,7)" fg:x="106128" fg:w="443"/><text x="47.8880%" y="703.50"></text></g><g><title>native_write_msr (441 samples, 0.20%)</title><rect x="47.6389%" y="677" width="0.1980%" height="15" fill="rgb(243,50,9)" fg:x="106130" fg:w="441"/><text x="47.8889%" y="687.50"></text></g><g><title>finish_task_switch (467 samples, 0.21%)</title><rect x="47.6335%" y="725" width="0.2096%" height="15" fill="rgb(219,149,6)" fg:x="106118" fg:w="467"/><text x="47.8835%" y="735.50"></text></g><g><title>futex_wait_queue_me (505 samples, 0.23%)</title><rect x="47.6246%" y="773" width="0.2267%" height="15" fill="rgb(241,51,42)" fg:x="106098" fg:w="505"/><text x="47.8746%" y="783.50"></text></g><g><title>schedule (501 samples, 0.22%)</title><rect x="47.6264%" y="757" width="0.2249%" height="15" fill="rgb(226,128,27)" fg:x="106102" fg:w="501"/><text x="47.8764%" y="767.50"></text></g><g><title>__schedule (501 samples, 0.22%)</title><rect x="47.6264%" y="741" width="0.2249%" height="15" fill="rgb(244,144,4)" fg:x="106102" fg:w="501"/><text x="47.8764%" y="751.50"></text></g><g><title>do_syscall_64 (529 samples, 0.24%)</title><rect x="47.6205%" y="837" width="0.2375%" height="15" fill="rgb(221,4,13)" fg:x="106089" fg:w="529"/><text x="47.8705%" y="847.50"></text></g><g><title>__x64_sys_futex (529 samples, 0.24%)</title><rect x="47.6205%" y="821" width="0.2375%" height="15" fill="rgb(208,170,28)" fg:x="106089" fg:w="529"/><text x="47.8705%" y="831.50"></text></g><g><title>do_futex (523 samples, 0.23%)</title><rect x="47.6232%" y="805" width="0.2348%" height="15" fill="rgb(226,131,13)" fg:x="106095" fg:w="523"/><text x="47.8732%" y="815.50"></text></g><g><title>futex_wait (522 samples, 0.23%)</title><rect x="47.6237%" y="789" width="0.2343%" height="15" fill="rgb(215,72,41)" fg:x="106096" fg:w="522"/><text x="47.8737%" y="799.50"></text></g><g><title>__GI___pthread_mutex_lock (623 samples, 0.28%)</title><rect x="47.5833%" y="885" width="0.2796%" height="15" fill="rgb(243,108,20)" fg:x="106006" fg:w="623"/><text x="47.8333%" y="895.50"></text></g><g><title>__lll_lock_wait (556 samples, 0.25%)</title><rect x="47.6133%" y="869" width="0.2496%" height="15" fill="rgb(230,189,17)" fg:x="106073" fg:w="556"/><text x="47.8633%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (541 samples, 0.24%)</title><rect x="47.6201%" y="853" width="0.2428%" height="15" fill="rgb(220,50,17)" fg:x="106088" fg:w="541"/><text x="47.8701%" y="863.50"></text></g><g><title>evict (25 samples, 0.01%)</title><rect x="47.8732%" y="805" width="0.0112%" height="15" fill="rgb(248,152,48)" fg:x="106652" fg:w="25"/><text x="48.1232%" y="815.50"></text></g><g><title>btrfs_evict_inode (25 samples, 0.01%)</title><rect x="47.8732%" y="789" width="0.0112%" height="15" fill="rgb(244,91,11)" fg:x="106652" fg:w="25"/><text x="48.1232%" y="799.50"></text></g><g><title>__unlink (35 samples, 0.02%)</title><rect x="47.8732%" y="869" width="0.0157%" height="15" fill="rgb(220,157,5)" fg:x="106652" fg:w="35"/><text x="48.1232%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="47.8732%" y="853" width="0.0157%" height="15" fill="rgb(253,137,8)" fg:x="106652" fg:w="35"/><text x="48.1232%" y="863.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="47.8732%" y="837" width="0.0157%" height="15" fill="rgb(217,137,51)" fg:x="106652" fg:w="35"/><text x="48.1232%" y="847.50"></text></g><g><title>do_unlinkat (35 samples, 0.02%)</title><rect x="47.8732%" y="821" width="0.0157%" height="15" fill="rgb(218,209,53)" fg:x="106652" fg:w="35"/><text x="48.1232%" y="831.50"></text></g><g><title>__GI_remove (36 samples, 0.02%)</title><rect x="47.8732%" y="885" width="0.0162%" height="15" fill="rgb(249,137,25)" fg:x="106652" fg:w="36"/><text x="48.1232%" y="895.50"></text></g><g><title>btrfs_getxattr (25 samples, 0.01%)</title><rect x="47.8939%" y="741" width="0.0112%" height="15" fill="rgb(239,155,26)" fg:x="106698" fg:w="25"/><text x="48.1439%" y="751.50"></text></g><g><title>btrfs_lookup_xattr (25 samples, 0.01%)</title><rect x="47.8939%" y="725" width="0.0112%" height="15" fill="rgb(227,85,46)" fg:x="106698" fg:w="25"/><text x="48.1439%" y="735.50"></text></g><g><title>btrfs_search_slot (25 samples, 0.01%)</title><rect x="47.8939%" y="709" width="0.0112%" height="15" fill="rgb(251,107,43)" fg:x="106698" fg:w="25"/><text x="48.1439%" y="719.50"></text></g><g><title>dentry_needs_remove_privs (26 samples, 0.01%)</title><rect x="47.8939%" y="805" width="0.0117%" height="15" fill="rgb(234,170,33)" fg:x="106698" fg:w="26"/><text x="48.1439%" y="815.50"></text></g><g><title>security_inode_need_killpriv (26 samples, 0.01%)</title><rect x="47.8939%" y="789" width="0.0117%" height="15" fill="rgb(206,29,35)" fg:x="106698" fg:w="26"/><text x="48.1439%" y="799.50"></text></g><g><title>cap_inode_need_killpriv (26 samples, 0.01%)</title><rect x="47.8939%" y="773" width="0.0117%" height="15" fill="rgb(227,138,25)" fg:x="106698" fg:w="26"/><text x="48.1439%" y="783.50"></text></g><g><title>__vfs_getxattr (26 samples, 0.01%)</title><rect x="47.8939%" y="757" width="0.0117%" height="15" fill="rgb(249,131,35)" fg:x="106698" fg:w="26"/><text x="48.1439%" y="767.50"></text></g><g><title>__ftruncate64 (41 samples, 0.02%)</title><rect x="47.8934%" y="885" width="0.0184%" height="15" fill="rgb(239,6,40)" fg:x="106697" fg:w="41"/><text x="48.1434%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.02%)</title><rect x="47.8934%" y="869" width="0.0184%" height="15" fill="rgb(246,136,47)" fg:x="106697" fg:w="41"/><text x="48.1434%" y="879.50"></text></g><g><title>do_syscall_64 (41 samples, 0.02%)</title><rect x="47.8934%" y="853" width="0.0184%" height="15" fill="rgb(253,58,26)" fg:x="106697" fg:w="41"/><text x="48.1434%" y="863.50"></text></g><g><title>do_sys_ftruncate (41 samples, 0.02%)</title><rect x="47.8934%" y="837" width="0.0184%" height="15" fill="rgb(237,141,10)" fg:x="106697" fg:w="41"/><text x="48.1434%" y="847.50"></text></g><g><title>do_truncate (40 samples, 0.02%)</title><rect x="47.8939%" y="821" width="0.0180%" height="15" fill="rgb(234,156,12)" fg:x="106698" fg:w="40"/><text x="48.1439%" y="831.50"></text></g><g><title>do_filp_open (45 samples, 0.02%)</title><rect x="47.9231%" y="805" width="0.0202%" height="15" fill="rgb(243,224,36)" fg:x="106763" fg:w="45"/><text x="48.1731%" y="815.50"></text></g><g><title>path_openat (45 samples, 0.02%)</title><rect x="47.9231%" y="789" width="0.0202%" height="15" fill="rgb(205,229,51)" fg:x="106763" fg:w="45"/><text x="48.1731%" y="799.50"></text></g><g><title>__x64_sys_openat (49 samples, 0.02%)</title><rect x="47.9226%" y="837" width="0.0220%" height="15" fill="rgb(223,189,4)" fg:x="106762" fg:w="49"/><text x="48.1726%" y="847.50"></text></g><g><title>do_sys_openat2 (49 samples, 0.02%)</title><rect x="47.9226%" y="821" width="0.0220%" height="15" fill="rgb(249,167,54)" fg:x="106762" fg:w="49"/><text x="48.1726%" y="831.50"></text></g><g><title>__libc_open64 (51 samples, 0.02%)</title><rect x="47.9222%" y="885" width="0.0229%" height="15" fill="rgb(218,34,28)" fg:x="106761" fg:w="51"/><text x="48.1722%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.02%)</title><rect x="47.9226%" y="869" width="0.0224%" height="15" fill="rgb(232,109,42)" fg:x="106762" fg:w="50"/><text x="48.1726%" y="879.50"></text></g><g><title>do_syscall_64 (50 samples, 0.02%)</title><rect x="47.9226%" y="853" width="0.0224%" height="15" fill="rgb(248,214,46)" fg:x="106762" fg:w="50"/><text x="48.1726%" y="863.50"></text></g><g><title>ttwu_do_activate (25 samples, 0.01%)</title><rect x="48.0272%" y="757" width="0.0112%" height="15" fill="rgb(244,216,40)" fg:x="106995" fg:w="25"/><text x="48.2772%" y="767.50"></text></g><g><title>__x64_sys_futex (148 samples, 0.07%)</title><rect x="47.9756%" y="837" width="0.0664%" height="15" fill="rgb(231,226,31)" fg:x="106880" fg:w="148"/><text x="48.2256%" y="847.50"></text></g><g><title>do_futex (147 samples, 0.07%)</title><rect x="47.9760%" y="821" width="0.0660%" height="15" fill="rgb(238,38,43)" fg:x="106881" fg:w="147"/><text x="48.2260%" y="831.50"></text></g><g><title>futex_wake (138 samples, 0.06%)</title><rect x="47.9801%" y="805" width="0.0619%" height="15" fill="rgb(208,88,43)" fg:x="106890" fg:w="138"/><text x="48.2301%" y="815.50"></text></g><g><title>wake_up_q (93 samples, 0.04%)</title><rect x="48.0003%" y="789" width="0.0417%" height="15" fill="rgb(205,136,37)" fg:x="106935" fg:w="93"/><text x="48.2503%" y="799.50"></text></g><g><title>try_to_wake_up (93 samples, 0.04%)</title><rect x="48.0003%" y="773" width="0.0417%" height="15" fill="rgb(237,34,14)" fg:x="106935" fg:w="93"/><text x="48.2503%" y="783.50"></text></g><g><title>do_syscall_64 (156 samples, 0.07%)</title><rect x="47.9738%" y="853" width="0.0700%" height="15" fill="rgb(236,193,44)" fg:x="106876" fg:w="156"/><text x="48.2238%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (174 samples, 0.08%)</title><rect x="47.9729%" y="869" width="0.0781%" height="15" fill="rgb(231,48,10)" fg:x="106874" fg:w="174"/><text x="48.2229%" y="879.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (239 samples, 0.11%)</title><rect x="47.9469%" y="885" width="0.1073%" height="15" fill="rgb(213,141,34)" fg:x="106816" fg:w="239"/><text x="48.1969%" y="895.50"></text></g><g><title>__pthread_once_slow (30 samples, 0.01%)</title><rect x="48.0541%" y="885" width="0.0135%" height="15" fill="rgb(249,130,34)" fg:x="107055" fg:w="30"/><text x="48.3041%" y="895.50"></text></g><g><title>_dl_runtime_resolve_xsavec (33 samples, 0.01%)</title><rect x="48.0676%" y="885" width="0.0148%" height="15" fill="rgb(219,42,41)" fg:x="107085" fg:w="33"/><text x="48.3176%" y="895.50"></text></g><g><title>_int_free (97 samples, 0.04%)</title><rect x="48.0824%" y="885" width="0.0435%" height="15" fill="rgb(224,100,54)" fg:x="107118" fg:w="97"/><text x="48.3324%" y="895.50"></text></g><g><title>__alloc_pages_nodemask (30 samples, 0.01%)</title><rect x="48.1533%" y="805" width="0.0135%" height="15" fill="rgb(229,200,27)" fg:x="107276" fg:w="30"/><text x="48.4033%" y="815.50"></text></g><g><title>get_page_from_freelist (25 samples, 0.01%)</title><rect x="48.1556%" y="789" width="0.0112%" height="15" fill="rgb(217,118,10)" fg:x="107281" fg:w="25"/><text x="48.4056%" y="799.50"></text></g><g><title>alloc_pages_vma (32 samples, 0.01%)</title><rect x="48.1529%" y="821" width="0.0144%" height="15" fill="rgb(206,22,3)" fg:x="107275" fg:w="32"/><text x="48.4029%" y="831.50"></text></g><g><title>page_add_file_rmap (29 samples, 0.01%)</title><rect x="48.2139%" y="789" width="0.0130%" height="15" fill="rgb(232,163,46)" fg:x="107411" fg:w="29"/><text x="48.4639%" y="799.50"></text></g><g><title>alloc_set_pte (56 samples, 0.03%)</title><rect x="48.2027%" y="805" width="0.0251%" height="15" fill="rgb(206,95,13)" fg:x="107386" fg:w="56"/><text x="48.4527%" y="815.50"></text></g><g><title>filemap_map_pages (172 samples, 0.08%)</title><rect x="48.1708%" y="821" width="0.0772%" height="15" fill="rgb(253,154,18)" fg:x="107315" fg:w="172"/><text x="48.4208%" y="831.50"></text></g><g><title>xas_find (27 samples, 0.01%)</title><rect x="48.2359%" y="805" width="0.0121%" height="15" fill="rgb(219,32,23)" fg:x="107460" fg:w="27"/><text x="48.4859%" y="815.50"></text></g><g><title>handle_mm_fault (297 samples, 0.13%)</title><rect x="48.1354%" y="837" width="0.1333%" height="15" fill="rgb(230,191,45)" fg:x="107236" fg:w="297"/><text x="48.3854%" y="847.50"></text></g><g><title>exc_page_fault (315 samples, 0.14%)</title><rect x="48.1282%" y="869" width="0.1414%" height="15" fill="rgb(229,64,36)" fg:x="107220" fg:w="315"/><text x="48.3782%" y="879.50"></text></g><g><title>do_user_addr_fault (313 samples, 0.14%)</title><rect x="48.1291%" y="853" width="0.1405%" height="15" fill="rgb(205,129,25)" fg:x="107222" fg:w="313"/><text x="48.3791%" y="863.50"></text></g><g><title>asm_exc_page_fault (322 samples, 0.14%)</title><rect x="48.1260%" y="885" width="0.1445%" height="15" fill="rgb(254,112,7)" fg:x="107215" fg:w="322"/><text x="48.3760%" y="895.50"></text></g><g><title>error_entry (26 samples, 0.01%)</title><rect x="48.2768%" y="885" width="0.0117%" height="15" fill="rgb(226,53,48)" fg:x="107551" fg:w="26"/><text x="48.5268%" y="895.50"></text></g><g><title>sync_regs (23 samples, 0.01%)</title><rect x="48.2781%" y="869" width="0.0103%" height="15" fill="rgb(214,153,38)" fg:x="107554" fg:w="23"/><text x="48.5281%" y="879.50"></text></g><g><title>handle_mm_fault (62 samples, 0.03%)</title><rect x="48.3706%" y="789" width="0.0278%" height="15" fill="rgb(243,101,7)" fg:x="107760" fg:w="62"/><text x="48.6206%" y="799.50"></text></g><g><title>asm_exc_page_fault (67 samples, 0.03%)</title><rect x="48.3692%" y="837" width="0.0301%" height="15" fill="rgb(240,140,22)" fg:x="107757" fg:w="67"/><text x="48.6192%" y="847.50"></text></g><g><title>exc_page_fault (67 samples, 0.03%)</title><rect x="48.3692%" y="821" width="0.0301%" height="15" fill="rgb(235,114,2)" fg:x="107757" fg:w="67"/><text x="48.6192%" y="831.50"></text></g><g><title>do_user_addr_fault (67 samples, 0.03%)</title><rect x="48.3692%" y="805" width="0.0301%" height="15" fill="rgb(242,59,12)" fg:x="107757" fg:w="67"/><text x="48.6192%" y="815.50"></text></g><g><title>__do_sys_brk (34 samples, 0.02%)</title><rect x="48.4052%" y="725" width="0.0153%" height="15" fill="rgb(252,134,9)" fg:x="107837" fg:w="34"/><text x="48.6552%" y="735.50"></text></g><g><title>__GI___default_morecore (35 samples, 0.02%)</title><rect x="48.4052%" y="821" width="0.0157%" height="15" fill="rgb(236,4,44)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="831.50"></text></g><g><title>__GI___sbrk (35 samples, 0.02%)</title><rect x="48.4052%" y="805" width="0.0157%" height="15" fill="rgb(254,172,41)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="815.50"></text></g><g><title>__GI___sbrk (35 samples, 0.02%)</title><rect x="48.4052%" y="789" width="0.0157%" height="15" fill="rgb(244,63,20)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="799.50"></text></g><g><title>__brk (35 samples, 0.02%)</title><rect x="48.4052%" y="773" width="0.0157%" height="15" fill="rgb(250,73,31)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="48.4052%" y="757" width="0.0157%" height="15" fill="rgb(241,38,36)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="767.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="48.4052%" y="741" width="0.0157%" height="15" fill="rgb(245,211,2)" fg:x="107837" fg:w="35"/><text x="48.6552%" y="751.50"></text></g><g><title>sysmalloc (44 samples, 0.02%)</title><rect x="48.4043%" y="837" width="0.0198%" height="15" fill="rgb(206,120,28)" fg:x="107835" fg:w="44"/><text x="48.6543%" y="847.50"></text></g><g><title>_int_malloc (207 samples, 0.09%)</title><rect x="48.3320%" y="853" width="0.0929%" height="15" fill="rgb(211,59,34)" fg:x="107674" fg:w="207"/><text x="48.5820%" y="863.50"></text></g><g><title>tcache_get (23 samples, 0.01%)</title><rect x="48.4276%" y="853" width="0.0103%" height="15" fill="rgb(233,168,5)" fg:x="107887" fg:w="23"/><text x="48.6776%" y="863.50"></text></g><g><title>do_mmap (28 samples, 0.01%)</title><rect x="48.4451%" y="677" width="0.0126%" height="15" fill="rgb(234,33,13)" fg:x="107926" fg:w="28"/><text x="48.6951%" y="687.50"></text></g><g><title>do_syscall_64 (43 samples, 0.02%)</title><rect x="48.4451%" y="709" width="0.0193%" height="15" fill="rgb(231,150,26)" fg:x="107926" fg:w="43"/><text x="48.6951%" y="719.50"></text></g><g><title>vm_mmap_pgoff (43 samples, 0.02%)</title><rect x="48.4451%" y="693" width="0.0193%" height="15" fill="rgb(217,191,4)" fg:x="107926" fg:w="43"/><text x="48.6951%" y="703.50"></text></g><g><title>__GI___mmap64 (45 samples, 0.02%)</title><rect x="48.4447%" y="757" width="0.0202%" height="15" fill="rgb(246,198,38)" fg:x="107925" fg:w="45"/><text x="48.6947%" y="767.50"></text></g><g><title>__GI___mmap64 (45 samples, 0.02%)</title><rect x="48.4447%" y="741" width="0.0202%" height="15" fill="rgb(245,64,37)" fg:x="107925" fg:w="45"/><text x="48.6947%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.02%)</title><rect x="48.4451%" y="725" width="0.0198%" height="15" fill="rgb(250,30,36)" fg:x="107926" fg:w="44"/><text x="48.6951%" y="735.50"></text></g><g><title>arena_get2 (95 samples, 0.04%)</title><rect x="48.4384%" y="805" width="0.0426%" height="15" fill="rgb(217,86,53)" fg:x="107911" fg:w="95"/><text x="48.6884%" y="815.50"></text></g><g><title>_int_new_arena (91 samples, 0.04%)</title><rect x="48.4402%" y="789" width="0.0408%" height="15" fill="rgb(228,157,16)" fg:x="107915" fg:w="91"/><text x="48.6902%" y="799.50"></text></g><g><title>new_heap (82 samples, 0.04%)</title><rect x="48.4442%" y="773" width="0.0368%" height="15" fill="rgb(217,59,31)" fg:x="107924" fg:w="82"/><text x="48.6942%" y="783.50"></text></g><g><title>__GI___libc_malloc (408 samples, 0.18%)</title><rect x="48.2983%" y="869" width="0.1831%" height="15" fill="rgb(237,138,41)" fg:x="107599" fg:w="408"/><text x="48.5483%" y="879.50"></text></g><g><title>tcache_init (97 samples, 0.04%)</title><rect x="48.4379%" y="853" width="0.0435%" height="15" fill="rgb(227,91,49)" fg:x="107910" fg:w="97"/><text x="48.6879%" y="863.50"></text></g><g><title>tcache_init (96 samples, 0.04%)</title><rect x="48.4384%" y="837" width="0.0431%" height="15" fill="rgb(247,21,44)" fg:x="107911" fg:w="96"/><text x="48.6884%" y="847.50"></text></g><g><title>arena_get2 (96 samples, 0.04%)</title><rect x="48.4384%" y="821" width="0.0431%" height="15" fill="rgb(219,210,51)" fg:x="107911" fg:w="96"/><text x="48.6884%" y="831.50"></text></g><g><title>operator new (424 samples, 0.19%)</title><rect x="48.2974%" y="885" width="0.1903%" height="15" fill="rgb(209,140,6)" fg:x="107597" fg:w="424"/><text x="48.5474%" y="895.50"></text></g><g><title>__btrfs_unlink_inode (23 samples, 0.01%)</title><rect x="48.4904%" y="773" width="0.0103%" height="15" fill="rgb(221,188,24)" fg:x="108027" fg:w="23"/><text x="48.7404%" y="783.50"></text></g><g><title>btrfs_rename2 (53 samples, 0.02%)</title><rect x="48.4904%" y="789" width="0.0238%" height="15" fill="rgb(232,154,20)" fg:x="108027" fg:w="53"/><text x="48.7404%" y="799.50"></text></g><g><title>rename (57 samples, 0.03%)</title><rect x="48.4895%" y="885" width="0.0256%" height="15" fill="rgb(244,137,50)" fg:x="108025" fg:w="57"/><text x="48.7395%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.03%)</title><rect x="48.4895%" y="869" width="0.0256%" height="15" fill="rgb(225,185,43)" fg:x="108025" fg:w="57"/><text x="48.7395%" y="879.50"></text></g><g><title>do_syscall_64 (57 samples, 0.03%)</title><rect x="48.4895%" y="853" width="0.0256%" height="15" fill="rgb(213,205,38)" fg:x="108025" fg:w="57"/><text x="48.7395%" y="863.50"></text></g><g><title>__x64_sys_rename (57 samples, 0.03%)</title><rect x="48.4895%" y="837" width="0.0256%" height="15" fill="rgb(236,73,12)" fg:x="108025" fg:w="57"/><text x="48.7395%" y="847.50"></text></g><g><title>do_renameat2 (57 samples, 0.03%)</title><rect x="48.4895%" y="821" width="0.0256%" height="15" fill="rgb(235,219,13)" fg:x="108025" fg:w="57"/><text x="48.7395%" y="831.50"></text></g><g><title>vfs_rename (55 samples, 0.02%)</title><rect x="48.4904%" y="805" width="0.0247%" height="15" fill="rgb(218,59,36)" fg:x="108027" fg:w="55"/><text x="48.7404%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.01%)</title><rect x="48.5281%" y="661" width="0.0144%" height="15" fill="rgb(205,110,39)" fg:x="108111" fg:w="32"/><text x="48.7781%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.01%)</title><rect x="48.5281%" y="645" width="0.0144%" height="15" fill="rgb(218,206,42)" fg:x="108111" fg:w="32"/><text x="48.7781%" y="655.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="48.5281%" y="629" width="0.0144%" height="15" fill="rgb(248,125,24)" fg:x="108111" fg:w="32"/><text x="48.7781%" y="639.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="48.5272%" y="789" width="0.0157%" height="15" fill="rgb(242,28,27)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="799.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="48.5272%" y="773" width="0.0157%" height="15" fill="rgb(216,228,15)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="783.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="48.5272%" y="757" width="0.0157%" height="15" fill="rgb(235,116,46)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="767.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="48.5272%" y="741" width="0.0157%" height="15" fill="rgb(224,18,32)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="751.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="48.5272%" y="725" width="0.0157%" height="15" fill="rgb(252,5,12)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="735.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="48.5272%" y="709" width="0.0157%" height="15" fill="rgb(251,36,5)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="719.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="48.5272%" y="693" width="0.0157%" height="15" fill="rgb(217,53,14)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="703.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="48.5272%" y="677" width="0.0157%" height="15" fill="rgb(215,86,45)" fg:x="108109" fg:w="35"/><text x="48.7772%" y="687.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (38 samples, 0.02%)</title><rect x="48.5263%" y="853" width="0.0171%" height="15" fill="rgb(242,169,11)" fg:x="108107" fg:w="38"/><text x="48.7763%" y="863.50"></text></g><g><title>futex_wait_simple (36 samples, 0.02%)</title><rect x="48.5272%" y="837" width="0.0162%" height="15" fill="rgb(211,213,45)" fg:x="108109" fg:w="36"/><text x="48.7772%" y="847.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="48.5272%" y="821" width="0.0162%" height="15" fill="rgb(205,88,11)" fg:x="108109" fg:w="36"/><text x="48.7772%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="48.5272%" y="805" width="0.0162%" height="15" fill="rgb(252,69,26)" fg:x="108109" fg:w="36"/><text x="48.7772%" y="815.50"></text></g><g><title>do_syscall_64 (26 samples, 0.01%)</title><rect x="48.5439%" y="821" width="0.0117%" height="15" fill="rgb(246,123,37)" fg:x="108146" fg:w="26"/><text x="48.7939%" y="831.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.01%)</title><rect x="48.5439%" y="805" width="0.0117%" height="15" fill="rgb(212,205,5)" fg:x="108146" fg:w="26"/><text x="48.7939%" y="815.50"></text></g><g><title>do_futex (26 samples, 0.01%)</title><rect x="48.5439%" y="789" width="0.0117%" height="15" fill="rgb(253,148,0)" fg:x="108146" fg:w="26"/><text x="48.7939%" y="799.50"></text></g><g><title>futex_wake (26 samples, 0.01%)</title><rect x="48.5439%" y="773" width="0.0117%" height="15" fill="rgb(239,22,4)" fg:x="108146" fg:w="26"/><text x="48.7939%" y="783.50"></text></g><g><title>wake_up_q (23 samples, 0.01%)</title><rect x="48.5452%" y="757" width="0.0103%" height="15" fill="rgb(226,26,53)" fg:x="108149" fg:w="23"/><text x="48.7952%" y="767.50"></text></g><g><title>try_to_wake_up (23 samples, 0.01%)</title><rect x="48.5452%" y="741" width="0.0103%" height="15" fill="rgb(225,229,45)" fg:x="108149" fg:w="23"/><text x="48.7952%" y="751.50"></text></g><g><title>__pthread_cond_broadcast (73 samples, 0.03%)</title><rect x="48.5263%" y="869" width="0.0328%" height="15" fill="rgb(220,60,37)" fg:x="108107" fg:w="73"/><text x="48.7763%" y="879.50"></text></g><g><title>futex_wake (34 samples, 0.02%)</title><rect x="48.5439%" y="853" width="0.0153%" height="15" fill="rgb(217,180,35)" fg:x="108146" fg:w="34"/><text x="48.7939%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="48.5439%" y="837" width="0.0153%" height="15" fill="rgb(229,7,53)" fg:x="108146" fg:w="34"/><text x="48.7939%" y="847.50"></text></g><g><title>std::condition_variable::notify_all (74 samples, 0.03%)</title><rect x="48.5263%" y="885" width="0.0332%" height="15" fill="rgb(254,137,3)" fg:x="108107" fg:w="74"/><text x="48.7763%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (856 samples, 0.38%)</title><rect x="48.5977%" y="661" width="0.3842%" height="15" fill="rgb(215,140,41)" fg:x="108266" fg:w="856"/><text x="48.8477%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (842 samples, 0.38%)</title><rect x="48.6040%" y="645" width="0.3780%" height="15" fill="rgb(250,80,15)" fg:x="108280" fg:w="842"/><text x="48.8540%" y="655.50"></text></g><g><title>native_write_msr (837 samples, 0.38%)</title><rect x="48.6062%" y="629" width="0.3757%" height="15" fill="rgb(252,191,6)" fg:x="108285" fg:w="837"/><text x="48.8562%" y="639.50"></text></g><g><title>finish_task_switch (897 samples, 0.40%)</title><rect x="48.5910%" y="677" width="0.4026%" height="15" fill="rgb(246,217,18)" fg:x="108251" fg:w="897"/><text x="48.8410%" y="687.50"></text></g><g><title>futex_wait_queue_me (955 samples, 0.43%)</title><rect x="48.5771%" y="725" width="0.4287%" height="15" fill="rgb(223,93,7)" fg:x="108220" fg:w="955"/><text x="48.8271%" y="735.50"></text></g><g><title>schedule (948 samples, 0.43%)</title><rect x="48.5802%" y="709" width="0.4255%" height="15" fill="rgb(225,55,52)" fg:x="108227" fg:w="948"/><text x="48.8302%" y="719.50"></text></g><g><title>__schedule (948 samples, 0.43%)</title><rect x="48.5802%" y="693" width="0.4255%" height="15" fill="rgb(240,31,24)" fg:x="108227" fg:w="948"/><text x="48.8302%" y="703.50"></text></g><g><title>__x64_sys_futex (963 samples, 0.43%)</title><rect x="48.5739%" y="773" width="0.4323%" height="15" fill="rgb(205,56,52)" fg:x="108213" fg:w="963"/><text x="48.8239%" y="783.50"></text></g><g><title>do_futex (959 samples, 0.43%)</title><rect x="48.5757%" y="757" width="0.4305%" height="15" fill="rgb(246,146,12)" fg:x="108217" fg:w="959"/><text x="48.8257%" y="767.50"></text></g><g><title>futex_wait (958 samples, 0.43%)</title><rect x="48.5762%" y="741" width="0.4300%" height="15" fill="rgb(239,84,36)" fg:x="108218" fg:w="958"/><text x="48.8262%" y="751.50"></text></g><g><title>do_syscall_64 (967 samples, 0.43%)</title><rect x="48.5726%" y="789" width="0.4341%" height="15" fill="rgb(207,41,40)" fg:x="108210" fg:w="967"/><text x="48.8226%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (986 samples, 0.44%)</title><rect x="48.5717%" y="805" width="0.4426%" height="15" fill="rgb(241,179,25)" fg:x="108208" fg:w="986"/><text x="48.8217%" y="815.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (1,001 samples, 0.45%)</title><rect x="48.5654%" y="853" width="0.4493%" height="15" fill="rgb(210,0,34)" fg:x="108194" fg:w="1001"/><text x="48.8154%" y="863.50"></text></g><g><title>futex_wait_simple (992 samples, 0.45%)</title><rect x="48.5694%" y="837" width="0.4453%" height="15" fill="rgb(225,217,29)" fg:x="108203" fg:w="992"/><text x="48.8194%" y="847.50"></text></g><g><title>futex_wait (992 samples, 0.45%)</title><rect x="48.5694%" y="821" width="0.4453%" height="15" fill="rgb(216,191,38)" fg:x="108203" fg:w="992"/><text x="48.8194%" y="831.50"></text></g><g><title>mark_wake_futex (38 samples, 0.02%)</title><rect x="49.0408%" y="757" width="0.0171%" height="15" fill="rgb(232,140,52)" fg:x="109253" fg:w="38"/><text x="49.2908%" y="767.50"></text></g><g><title>_raw_spin_lock (166 samples, 0.07%)</title><rect x="49.0672%" y="725" width="0.0745%" height="15" fill="rgb(223,158,51)" fg:x="109312" fg:w="166"/><text x="49.3172%" y="735.50"></text></g><g><title>native_queued_spin_lock_slowpath (162 samples, 0.07%)</title><rect x="49.0690%" y="709" width="0.0727%" height="15" fill="rgb(235,29,51)" fg:x="109316" fg:w="162"/><text x="49.3190%" y="719.50"></text></g><g><title>select_task_rq_fair (75 samples, 0.03%)</title><rect x="49.1458%" y="725" width="0.0337%" height="15" fill="rgb(215,181,18)" fg:x="109487" fg:w="75"/><text x="49.3958%" y="735.50"></text></g><g><title>enqueue_entity (62 samples, 0.03%)</title><rect x="49.1929%" y="693" width="0.0278%" height="15" fill="rgb(227,125,34)" fg:x="109592" fg:w="62"/><text x="49.4429%" y="703.50"></text></g><g><title>update_load_avg (24 samples, 0.01%)</title><rect x="49.2100%" y="677" width="0.0108%" height="15" fill="rgb(230,197,49)" fg:x="109630" fg:w="24"/><text x="49.4600%" y="687.50"></text></g><g><title>enqueue_task_fair (104 samples, 0.05%)</title><rect x="49.1866%" y="709" width="0.0467%" height="15" fill="rgb(239,141,16)" fg:x="109578" fg:w="104"/><text x="49.4366%" y="719.50"></text></g><g><title>ttwu_do_activate (209 samples, 0.09%)</title><rect x="49.1835%" y="725" width="0.0938%" height="15" fill="rgb(225,105,43)" fg:x="109571" fg:w="209"/><text x="49.4335%" y="735.50"></text></g><g><title>psi_task_change (98 samples, 0.04%)</title><rect x="49.2333%" y="709" width="0.0440%" height="15" fill="rgb(214,131,14)" fg:x="109682" fg:w="98"/><text x="49.4833%" y="719.50"></text></g><g><title>psi_group_change (83 samples, 0.04%)</title><rect x="49.2401%" y="693" width="0.0373%" height="15" fill="rgb(229,177,11)" fg:x="109697" fg:w="83"/><text x="49.4901%" y="703.50"></text></g><g><title>__x64_sys_futex (600 samples, 0.27%)</title><rect x="49.0255%" y="805" width="0.2693%" height="15" fill="rgb(231,180,14)" fg:x="109219" fg:w="600"/><text x="49.2755%" y="815.50"></text></g><g><title>do_futex (596 samples, 0.27%)</title><rect x="49.0273%" y="789" width="0.2675%" height="15" fill="rgb(232,88,2)" fg:x="109223" fg:w="596"/><text x="49.2773%" y="799.50"></text></g><g><title>futex_wake (595 samples, 0.27%)</title><rect x="49.0277%" y="773" width="0.2671%" height="15" fill="rgb(205,220,8)" fg:x="109224" fg:w="595"/><text x="49.2777%" y="783.50"></text></g><g><title>wake_up_q (523 samples, 0.23%)</title><rect x="49.0601%" y="757" width="0.2348%" height="15" fill="rgb(225,23,53)" fg:x="109296" fg:w="523"/><text x="49.3101%" y="767.50"></text></g><g><title>try_to_wake_up (520 samples, 0.23%)</title><rect x="49.0614%" y="741" width="0.2334%" height="15" fill="rgb(213,62,29)" fg:x="109299" fg:w="520"/><text x="49.3114%" y="751.50"></text></g><g><title>do_syscall_64 (602 samples, 0.27%)</title><rect x="49.0250%" y="821" width="0.2702%" height="15" fill="rgb(227,75,7)" fg:x="109218" fg:w="602"/><text x="49.2750%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (630 samples, 0.28%)</title><rect x="49.0246%" y="837" width="0.2828%" height="15" fill="rgb(207,105,14)" fg:x="109217" fg:w="630"/><text x="49.2746%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (27 samples, 0.01%)</title><rect x="49.2953%" y="821" width="0.0121%" height="15" fill="rgb(245,62,29)" fg:x="109820" fg:w="27"/><text x="49.5453%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (25 samples, 0.01%)</title><rect x="49.2962%" y="805" width="0.0112%" height="15" fill="rgb(236,202,4)" fg:x="109822" fg:w="25"/><text x="49.5462%" y="815.50"></text></g><g><title>std::condition_variable::notify_one (1,670 samples, 0.75%)</title><rect x="48.5596%" y="885" width="0.7496%" height="15" fill="rgb(250,67,1)" fg:x="108181" fg:w="1670"/><text x="48.8096%" y="895.50"></text></g><g><title>__pthread_cond_signal (1,668 samples, 0.75%)</title><rect x="48.5605%" y="869" width="0.7487%" height="15" fill="rgb(253,115,44)" fg:x="108183" fg:w="1668"/><text x="48.8105%" y="879.50"></text></g><g><title>futex_wake (651 samples, 0.29%)</title><rect x="49.0170%" y="853" width="0.2922%" height="15" fill="rgb(251,139,18)" fg:x="109200" fg:w="651"/><text x="49.2670%" y="863.50"></text></g><g><title>select_task_rq_fair (32 samples, 0.01%)</title><rect x="49.3595%" y="693" width="0.0144%" height="15" fill="rgb(218,22,32)" fg:x="109963" fg:w="32"/><text x="49.6095%" y="703.50"></text></g><g><title>ttwu_do_activate (60 samples, 0.03%)</title><rect x="49.3738%" y="693" width="0.0269%" height="15" fill="rgb(243,53,5)" fg:x="109995" fg:w="60"/><text x="49.6238%" y="703.50"></text></g><g><title>psi_task_change (37 samples, 0.02%)</title><rect x="49.3841%" y="677" width="0.0166%" height="15" fill="rgb(227,56,16)" fg:x="110018" fg:w="37"/><text x="49.6341%" y="687.50"></text></g><g><title>psi_group_change (32 samples, 0.01%)</title><rect x="49.3864%" y="661" width="0.0144%" height="15" fill="rgb(245,53,0)" fg:x="110023" fg:w="32"/><text x="49.6364%" y="671.50"></text></g><g><title>__x64_sys_futex (153 samples, 0.07%)</title><rect x="49.3352%" y="773" width="0.0687%" height="15" fill="rgb(216,170,35)" fg:x="109909" fg:w="153"/><text x="49.5852%" y="783.50"></text></g><g><title>do_futex (151 samples, 0.07%)</title><rect x="49.3361%" y="757" width="0.0678%" height="15" fill="rgb(211,200,8)" fg:x="109911" fg:w="151"/><text x="49.5861%" y="767.50"></text></g><g><title>futex_wake (148 samples, 0.07%)</title><rect x="49.3375%" y="741" width="0.0664%" height="15" fill="rgb(228,204,44)" fg:x="109914" fg:w="148"/><text x="49.5875%" y="751.50"></text></g><g><title>wake_up_q (122 samples, 0.05%)</title><rect x="49.3491%" y="725" width="0.0548%" height="15" fill="rgb(214,121,17)" fg:x="109940" fg:w="122"/><text x="49.5991%" y="735.50"></text></g><g><title>try_to_wake_up (121 samples, 0.05%)</title><rect x="49.3496%" y="709" width="0.0543%" height="15" fill="rgb(233,64,38)" fg:x="109941" fg:w="121"/><text x="49.5996%" y="719.50"></text></g><g><title>do_syscall_64 (154 samples, 0.07%)</title><rect x="49.3352%" y="789" width="0.0691%" height="15" fill="rgb(253,54,19)" fg:x="109909" fg:w="154"/><text x="49.5852%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (168 samples, 0.08%)</title><rect x="49.3348%" y="805" width="0.0754%" height="15" fill="rgb(253,94,18)" fg:x="109908" fg:w="168"/><text x="49.5848%" y="815.50"></text></g><g><title>__condvar_dec_grefs (203 samples, 0.09%)</title><rect x="49.3195%" y="837" width="0.0911%" height="15" fill="rgb(227,57,52)" fg:x="109874" fg:w="203"/><text x="49.5695%" y="847.50"></text></g><g><title>futex_wake (173 samples, 0.08%)</title><rect x="49.3330%" y="821" width="0.0777%" height="15" fill="rgb(230,228,50)" fg:x="109904" fg:w="173"/><text x="49.5830%" y="831.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.02%)</title><rect x="49.4201%" y="789" width="0.0189%" height="15" fill="rgb(217,205,27)" fg:x="110098" fg:w="42"/><text x="49.6701%" y="799.50"></text></g><g><title>do_futex (42 samples, 0.02%)</title><rect x="49.4201%" y="773" width="0.0189%" height="15" fill="rgb(252,71,50)" fg:x="110098" fg:w="42"/><text x="49.6701%" y="783.50"></text></g><g><title>futex_wake (41 samples, 0.02%)</title><rect x="49.4205%" y="757" width="0.0184%" height="15" fill="rgb(209,86,4)" fg:x="110099" fg:w="41"/><text x="49.6705%" y="767.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="49.4187%" y="805" width="0.0206%" height="15" fill="rgb(229,94,0)" fg:x="110095" fg:w="46"/><text x="49.6687%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.02%)</title><rect x="49.4187%" y="821" width="0.0220%" height="15" fill="rgb(252,223,21)" fg:x="110095" fg:w="49"/><text x="49.6687%" y="831.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (67 samples, 0.03%)</title><rect x="49.4120%" y="837" width="0.0301%" height="15" fill="rgb(230,210,4)" fg:x="110080" fg:w="67"/><text x="49.6620%" y="847.50"></text></g><g><title>__perf_event_task_sched_out (38 samples, 0.02%)</title><rect x="49.5623%" y="693" width="0.0171%" height="15" fill="rgb(240,149,38)" fg:x="110415" fg:w="38"/><text x="49.8123%" y="703.50"></text></g><g><title>_raw_spin_lock (35 samples, 0.02%)</title><rect x="49.5808%" y="693" width="0.0157%" height="15" fill="rgb(254,105,20)" fg:x="110456" fg:w="35"/><text x="49.8308%" y="703.50"></text></g><g><title>native_queued_spin_lock_slowpath (26 samples, 0.01%)</title><rect x="49.5848%" y="677" width="0.0117%" height="15" fill="rgb(253,87,46)" fg:x="110465" fg:w="26"/><text x="49.8348%" y="687.50"></text></g><g><title>update_curr (30 samples, 0.01%)</title><rect x="49.6131%" y="661" width="0.0135%" height="15" fill="rgb(253,116,33)" fg:x="110528" fg:w="30"/><text x="49.8631%" y="671.50"></text></g><g><title>dequeue_entity (81 samples, 0.04%)</title><rect x="49.6005%" y="677" width="0.0364%" height="15" fill="rgb(229,198,5)" fg:x="110500" fg:w="81"/><text x="49.8505%" y="687.50"></text></g><g><title>update_load_avg (23 samples, 0.01%)</title><rect x="49.6265%" y="661" width="0.0103%" height="15" fill="rgb(242,38,37)" fg:x="110558" fg:w="23"/><text x="49.8765%" y="671.50"></text></g><g><title>dequeue_task_fair (119 samples, 0.05%)</title><rect x="49.5965%" y="693" width="0.0534%" height="15" fill="rgb(242,69,53)" fg:x="110491" fg:w="119"/><text x="49.8465%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (5,027 samples, 2.26%)</title><rect x="49.6755%" y="677" width="2.2565%" height="15" fill="rgb(249,80,16)" fg:x="110667" fg:w="5027"/><text x="49.9255%" y="687.50">_..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,962 samples, 2.23%)</title><rect x="49.7046%" y="661" width="2.2273%" height="15" fill="rgb(206,128,11)" fg:x="110732" fg:w="4962"/><text x="49.9546%" y="671.50">_..</text></g><g><title>native_write_msr (4,929 samples, 2.21%)</title><rect x="49.7195%" y="645" width="2.2125%" height="15" fill="rgb(212,35,20)" fg:x="110765" fg:w="4929"/><text x="49.9695%" y="655.50">n..</text></g><g><title>irq_work_run (52 samples, 0.02%)</title><rect x="51.9557%" y="613" width="0.0233%" height="15" fill="rgb(236,79,13)" fg:x="115747" fg:w="52"/><text x="52.2057%" y="623.50"></text></g><g><title>irq_work_run_list (50 samples, 0.02%)</title><rect x="51.9566%" y="597" width="0.0224%" height="15" fill="rgb(233,123,3)" fg:x="115749" fg:w="50"/><text x="52.2066%" y="607.50"></text></g><g><title>irq_work_single (50 samples, 0.02%)</title><rect x="51.9566%" y="581" width="0.0224%" height="15" fill="rgb(214,93,52)" fg:x="115749" fg:w="50"/><text x="52.2066%" y="591.50"></text></g><g><title>perf_pending_event (49 samples, 0.02%)</title><rect x="51.9571%" y="565" width="0.0220%" height="15" fill="rgb(251,37,40)" fg:x="115750" fg:w="49"/><text x="52.2071%" y="575.50"></text></g><g><title>perf_event_wakeup (47 samples, 0.02%)</title><rect x="51.9580%" y="549" width="0.0211%" height="15" fill="rgb(227,80,54)" fg:x="115752" fg:w="47"/><text x="52.2080%" y="559.50"></text></g><g><title>__wake_up_common_lock (45 samples, 0.02%)</title><rect x="51.9589%" y="533" width="0.0202%" height="15" fill="rgb(254,48,11)" fg:x="115754" fg:w="45"/><text x="52.2089%" y="543.50"></text></g><g><title>__wake_up_common (44 samples, 0.02%)</title><rect x="51.9593%" y="517" width="0.0198%" height="15" fill="rgb(235,193,26)" fg:x="115755" fg:w="44"/><text x="52.2093%" y="527.50"></text></g><g><title>pollwake (41 samples, 0.02%)</title><rect x="51.9607%" y="501" width="0.0184%" height="15" fill="rgb(229,99,21)" fg:x="115758" fg:w="41"/><text x="52.2107%" y="511.50"></text></g><g><title>try_to_wake_up (40 samples, 0.02%)</title><rect x="51.9611%" y="485" width="0.0180%" height="15" fill="rgb(211,140,41)" fg:x="115759" fg:w="40"/><text x="52.2111%" y="495.50"></text></g><g><title>asm_call_sysvec_on_stack (65 samples, 0.03%)</title><rect x="51.9530%" y="645" width="0.0292%" height="15" fill="rgb(240,227,30)" fg:x="115741" fg:w="65"/><text x="52.2030%" y="655.50"></text></g><g><title>__sysvec_irq_work (59 samples, 0.03%)</title><rect x="51.9557%" y="629" width="0.0265%" height="15" fill="rgb(215,224,45)" fg:x="115747" fg:w="59"/><text x="52.2057%" y="639.50"></text></g><g><title>asm_sysvec_irq_work (95 samples, 0.04%)</title><rect x="51.9418%" y="677" width="0.0426%" height="15" fill="rgb(206,123,31)" fg:x="115716" fg:w="95"/><text x="52.1918%" y="687.50"></text></g><g><title>sysvec_irq_work (71 samples, 0.03%)</title><rect x="51.9526%" y="661" width="0.0319%" height="15" fill="rgb(210,138,16)" fg:x="115740" fg:w="71"/><text x="52.2026%" y="671.50"></text></g><g><title>finish_task_switch (5,227 samples, 2.35%)</title><rect x="49.6499%" y="693" width="2.3463%" height="15" fill="rgb(228,57,28)" fg:x="110610" fg:w="5227"/><text x="49.8999%" y="703.50">f..</text></g><g><title>pick_next_task_fair (42 samples, 0.02%)</title><rect x="51.9961%" y="693" width="0.0189%" height="15" fill="rgb(242,170,10)" fg:x="115837" fg:w="42"/><text x="52.2461%" y="703.50"></text></g><g><title>psi_task_change (143 samples, 0.06%)</title><rect x="52.0217%" y="693" width="0.0642%" height="15" fill="rgb(228,214,39)" fg:x="115894" fg:w="143"/><text x="52.2717%" y="703.50"></text></g><g><title>psi_group_change (124 samples, 0.06%)</title><rect x="52.0303%" y="677" width="0.0557%" height="15" fill="rgb(218,179,33)" fg:x="115913" fg:w="124"/><text x="52.2803%" y="687.50"></text></g><g><title>record_times (36 samples, 0.02%)</title><rect x="52.0698%" y="661" width="0.0162%" height="15" fill="rgb(235,193,39)" fg:x="116001" fg:w="36"/><text x="52.3198%" y="671.50"></text></g><g><title>psi_task_switch (50 samples, 0.02%)</title><rect x="52.0859%" y="693" width="0.0224%" height="15" fill="rgb(219,221,36)" fg:x="116037" fg:w="50"/><text x="52.3359%" y="703.50"></text></g><g><title>psi_group_change (41 samples, 0.02%)</title><rect x="52.0900%" y="677" width="0.0184%" height="15" fill="rgb(248,218,19)" fg:x="116046" fg:w="41"/><text x="52.3400%" y="687.50"></text></g><g><title>futex_wait_queue_me (5,798 samples, 2.60%)</title><rect x="49.5143%" y="741" width="2.6026%" height="15" fill="rgb(205,50,9)" fg:x="110308" fg:w="5798"/><text x="49.7643%" y="751.50">fu..</text></g><g><title>schedule (5,748 samples, 2.58%)</title><rect x="49.5368%" y="725" width="2.5801%" height="15" fill="rgb(238,81,28)" fg:x="110358" fg:w="5748"/><text x="49.7868%" y="735.50">sc..</text></g><g><title>__schedule (5,741 samples, 2.58%)</title><rect x="49.5399%" y="709" width="2.5770%" height="15" fill="rgb(235,110,19)" fg:x="110365" fg:w="5741"/><text x="49.7899%" y="719.50">__..</text></g><g><title>__x64_sys_futex (5,890 samples, 2.64%)</title><rect x="49.4860%" y="789" width="2.6439%" height="15" fill="rgb(214,7,14)" fg:x="110245" fg:w="5890"/><text x="49.7360%" y="799.50">__..</text></g><g><title>do_futex (5,874 samples, 2.64%)</title><rect x="49.4932%" y="773" width="2.6367%" height="15" fill="rgb(211,77,3)" fg:x="110261" fg:w="5874"/><text x="49.7432%" y="783.50">do..</text></g><g><title>futex_wait (5,853 samples, 2.63%)</title><rect x="49.5026%" y="757" width="2.6273%" height="15" fill="rgb(229,5,9)" fg:x="110282" fg:w="5853"/><text x="49.7526%" y="767.50">fu..</text></g><g><title>futex_wait_setup (29 samples, 0.01%)</title><rect x="52.1169%" y="741" width="0.0130%" height="15" fill="rgb(225,90,11)" fg:x="116106" fg:w="29"/><text x="52.3669%" y="751.50"></text></g><g><title>do_syscall_64 (5,900 samples, 2.65%)</title><rect x="49.4820%" y="805" width="2.6484%" height="15" fill="rgb(242,56,8)" fg:x="110236" fg:w="5900"/><text x="49.7320%" y="815.50">do..</text></g><g><title>entry_SYSCALL_64_after_hwframe (6,019 samples, 2.70%)</title><rect x="49.4811%" y="821" width="2.7018%" height="15" fill="rgb(249,212,39)" fg:x="110234" fg:w="6019"/><text x="49.7311%" y="831.50">en..</text></g><g><title>syscall_exit_to_user_mode (117 samples, 0.05%)</title><rect x="52.1304%" y="805" width="0.0525%" height="15" fill="rgb(236,90,9)" fg:x="116136" fg:w="117"/><text x="52.3804%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (111 samples, 0.05%)</title><rect x="52.1330%" y="789" width="0.0498%" height="15" fill="rgb(206,88,35)" fg:x="116142" fg:w="111"/><text x="52.3830%" y="799.50"></text></g><g><title>switch_fpu_return (92 samples, 0.04%)</title><rect x="52.1416%" y="773" width="0.0413%" height="15" fill="rgb(205,126,30)" fg:x="116161" fg:w="92"/><text x="52.3916%" y="783.50"></text></g><g><title>copy_kernel_to_fpregs (63 samples, 0.03%)</title><rect x="52.1546%" y="757" width="0.0283%" height="15" fill="rgb(230,176,12)" fg:x="116190" fg:w="63"/><text x="52.4046%" y="767.50"></text></g><g><title>futex_wait_cancelable (6,110 samples, 2.74%)</title><rect x="49.4452%" y="837" width="2.7426%" height="15" fill="rgb(243,19,9)" fg:x="110154" fg:w="6110"/><text x="49.6952%" y="847.50">fu..</text></g><g><title>__pthread_cond_wait (6,409 samples, 2.88%)</title><rect x="49.3114%" y="869" width="2.8768%" height="15" fill="rgb(245,171,17)" fg:x="109856" fg:w="6409"/><text x="49.5614%" y="879.50">__..</text></g><g><title>__pthread_cond_wait_common (6,409 samples, 2.88%)</title><rect x="49.3114%" y="853" width="2.8768%" height="15" fill="rgb(227,52,21)" fg:x="109856" fg:w="6409"/><text x="49.5614%" y="863.50">__..</text></g><g><title>__perf_event_task_sched_in (344 samples, 0.15%)</title><rect x="52.2112%" y="693" width="0.1544%" height="15" fill="rgb(238,69,14)" fg:x="116316" fg:w="344"/><text x="52.4612%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (338 samples, 0.15%)</title><rect x="52.2138%" y="677" width="0.1517%" height="15" fill="rgb(241,156,39)" fg:x="116322" fg:w="338"/><text x="52.4638%" y="687.50"></text></g><g><title>native_write_msr (335 samples, 0.15%)</title><rect x="52.2152%" y="661" width="0.1504%" height="15" fill="rgb(212,227,28)" fg:x="116325" fg:w="335"/><text x="52.4652%" y="671.50"></text></g><g><title>finish_task_switch (361 samples, 0.16%)</title><rect x="52.2089%" y="709" width="0.1620%" height="15" fill="rgb(209,118,27)" fg:x="116311" fg:w="361"/><text x="52.4589%" y="719.50"></text></g><g><title>futex_wait_queue_me (396 samples, 0.18%)</title><rect x="52.1995%" y="757" width="0.1778%" height="15" fill="rgb(226,102,5)" fg:x="116290" fg:w="396"/><text x="52.4495%" y="767.50"></text></g><g><title>schedule (396 samples, 0.18%)</title><rect x="52.1995%" y="741" width="0.1778%" height="15" fill="rgb(223,34,3)" fg:x="116290" fg:w="396"/><text x="52.4495%" y="751.50"></text></g><g><title>__schedule (396 samples, 0.18%)</title><rect x="52.1995%" y="725" width="0.1778%" height="15" fill="rgb(221,81,38)" fg:x="116290" fg:w="396"/><text x="52.4495%" y="735.50"></text></g><g><title>do_syscall_64 (410 samples, 0.18%)</title><rect x="52.1954%" y="821" width="0.1840%" height="15" fill="rgb(236,219,28)" fg:x="116281" fg:w="410"/><text x="52.4454%" y="831.50"></text></g><g><title>__x64_sys_futex (408 samples, 0.18%)</title><rect x="52.1963%" y="805" width="0.1831%" height="15" fill="rgb(213,200,14)" fg:x="116283" fg:w="408"/><text x="52.4463%" y="815.50"></text></g><g><title>do_futex (407 samples, 0.18%)</title><rect x="52.1968%" y="789" width="0.1827%" height="15" fill="rgb(240,33,19)" fg:x="116284" fg:w="407"/><text x="52.4468%" y="799.50"></text></g><g><title>futex_wait (405 samples, 0.18%)</title><rect x="52.1977%" y="773" width="0.1818%" height="15" fill="rgb(233,113,27)" fg:x="116286" fg:w="405"/><text x="52.4477%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (416 samples, 0.19%)</title><rect x="52.1954%" y="837" width="0.1867%" height="15" fill="rgb(220,221,18)" fg:x="116281" fg:w="416"/><text x="52.4454%" y="847.50"></text></g><g><title>__pthread_mutex_cond_lock (433 samples, 0.19%)</title><rect x="52.1883%" y="869" width="0.1944%" height="15" fill="rgb(238,92,8)" fg:x="116265" fg:w="433"/><text x="52.4383%" y="879.50"></text></g><g><title>__lll_lock_wait (420 samples, 0.19%)</title><rect x="52.1941%" y="853" width="0.1885%" height="15" fill="rgb(222,164,16)" fg:x="116278" fg:w="420"/><text x="52.4441%" y="863.50"></text></g><g><title>std::condition_variable::wait (6,853 samples, 3.08%)</title><rect x="49.3092%" y="885" width="3.0761%" height="15" fill="rgb(241,119,3)" fg:x="109851" fg:w="6853"/><text x="49.5592%" y="895.50">std..</text></g><g><title>alloc_pages_vma (47 samples, 0.02%)</title><rect x="52.3947%" y="757" width="0.0211%" height="15" fill="rgb(241,44,8)" fg:x="116725" fg:w="47"/><text x="52.6447%" y="767.50"></text></g><g><title>__alloc_pages_nodemask (47 samples, 0.02%)</title><rect x="52.3947%" y="741" width="0.0211%" height="15" fill="rgb(230,36,40)" fg:x="116725" fg:w="47"/><text x="52.6447%" y="751.50"></text></g><g><title>get_page_from_freelist (47 samples, 0.02%)</title><rect x="52.3947%" y="725" width="0.0211%" height="15" fill="rgb(243,16,36)" fg:x="116725" fg:w="47"/><text x="52.6447%" y="735.50"></text></g><g><title>prep_new_page (46 samples, 0.02%)</title><rect x="52.3952%" y="709" width="0.0206%" height="15" fill="rgb(231,4,26)" fg:x="116726" fg:w="46"/><text x="52.6452%" y="719.50"></text></g><g><title>kernel_init_free_pages (46 samples, 0.02%)</title><rect x="52.3952%" y="693" width="0.0206%" height="15" fill="rgb(240,9,31)" fg:x="116726" fg:w="46"/><text x="52.6452%" y="703.50"></text></g><g><title>clear_page_erms (44 samples, 0.02%)</title><rect x="52.3961%" y="677" width="0.0198%" height="15" fill="rgb(207,173,15)" fg:x="116728" fg:w="44"/><text x="52.6461%" y="687.50"></text></g><g><title>asm_exc_page_fault (69 samples, 0.03%)</title><rect x="52.3929%" y="837" width="0.0310%" height="15" fill="rgb(224,192,53)" fg:x="116721" fg:w="69"/><text x="52.6429%" y="847.50"></text></g><g><title>exc_page_fault (69 samples, 0.03%)</title><rect x="52.3929%" y="821" width="0.0310%" height="15" fill="rgb(223,67,28)" fg:x="116721" fg:w="69"/><text x="52.6429%" y="831.50"></text></g><g><title>do_user_addr_fault (69 samples, 0.03%)</title><rect x="52.3929%" y="805" width="0.0310%" height="15" fill="rgb(211,20,47)" fg:x="116721" fg:w="69"/><text x="52.6429%" y="815.50"></text></g><g><title>handle_mm_fault (69 samples, 0.03%)</title><rect x="52.3929%" y="789" width="0.0310%" height="15" fill="rgb(240,228,2)" fg:x="116721" fg:w="69"/><text x="52.6429%" y="799.50"></text></g><g><title>do_huge_pmd_anonymous_page (65 samples, 0.03%)</title><rect x="52.3947%" y="773" width="0.0292%" height="15" fill="rgb(248,151,12)" fg:x="116725" fg:w="65"/><text x="52.6447%" y="783.50"></text></g><g><title>allocate_stack (94 samples, 0.04%)</title><rect x="52.3853%" y="853" width="0.0422%" height="15" fill="rgb(244,8,39)" fg:x="116704" fg:w="94"/><text x="52.6353%" y="863.50"></text></g><g><title>std::thread::_M_start_thread (95 samples, 0.04%)</title><rect x="52.3853%" y="885" width="0.0426%" height="15" fill="rgb(222,26,8)" fg:x="116704" fg:w="95"/><text x="52.6353%" y="895.50"></text></g><g><title>__pthread_create_2_1 (95 samples, 0.04%)</title><rect x="52.3853%" y="869" width="0.0426%" height="15" fill="rgb(213,106,44)" fg:x="116704" fg:w="95"/><text x="52.6353%" y="879.50"></text></g><g><title>[ld.lld] (12,850 samples, 5.77%)</title><rect x="46.6635%" y="901" width="5.7680%" height="15" fill="rgb(214,129,20)" fg:x="103957" fg:w="12850"/><text x="46.9135%" y="911.50">[ld.lld]</text></g><g><title>copy_process (65 samples, 0.03%)</title><rect x="52.4351%" y="805" width="0.0292%" height="15" fill="rgb(212,32,13)" fg:x="116815" fg:w="65"/><text x="52.6851%" y="815.50"></text></g><g><title>__GI___clone (76 samples, 0.03%)</title><rect x="52.4347%" y="885" width="0.0341%" height="15" fill="rgb(208,168,33)" fg:x="116814" fg:w="76"/><text x="52.6847%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.03%)</title><rect x="52.4347%" y="869" width="0.0341%" height="15" fill="rgb(231,207,8)" fg:x="116814" fg:w="76"/><text x="52.6847%" y="879.50"></text></g><g><title>do_syscall_64 (76 samples, 0.03%)</title><rect x="52.4347%" y="853" width="0.0341%" height="15" fill="rgb(235,219,23)" fg:x="116814" fg:w="76"/><text x="52.6847%" y="863.50"></text></g><g><title>__do_sys_clone (76 samples, 0.03%)</title><rect x="52.4347%" y="837" width="0.0341%" height="15" fill="rgb(226,216,26)" fg:x="116814" fg:w="76"/><text x="52.6847%" y="847.50"></text></g><g><title>kernel_clone (76 samples, 0.03%)</title><rect x="52.4347%" y="821" width="0.0341%" height="15" fill="rgb(239,137,16)" fg:x="116814" fg:w="76"/><text x="52.6847%" y="831.50"></text></g><g><title>[unknown] (119 samples, 0.05%)</title><rect x="52.4333%" y="901" width="0.0534%" height="15" fill="rgb(207,12,36)" fg:x="116811" fg:w="119"/><text x="52.6833%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (752 samples, 0.34%)</title><rect x="52.5079%" y="837" width="0.3376%" height="15" fill="rgb(210,214,24)" fg:x="116977" fg:w="752"/><text x="52.7579%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (731 samples, 0.33%)</title><rect x="52.5173%" y="821" width="0.3281%" height="15" fill="rgb(206,56,30)" fg:x="116998" fg:w="731"/><text x="52.7673%" y="831.50"></text></g><g><title>native_write_msr (727 samples, 0.33%)</title><rect x="52.5191%" y="805" width="0.3263%" height="15" fill="rgb(228,143,26)" fg:x="117002" fg:w="727"/><text x="52.7691%" y="815.50"></text></g><g><title>asm_sysvec_irq_work (23 samples, 0.01%)</title><rect x="52.8459%" y="837" width="0.0103%" height="15" fill="rgb(216,218,46)" fg:x="117730" fg:w="23"/><text x="53.0959%" y="847.50"></text></g><g><title>schedule_tail (806 samples, 0.36%)</title><rect x="52.4966%" y="869" width="0.3618%" height="15" fill="rgb(206,6,19)" fg:x="116952" fg:w="806"/><text x="52.7466%" y="879.50"></text></g><g><title>finish_task_switch (795 samples, 0.36%)</title><rect x="52.5016%" y="853" width="0.3569%" height="15" fill="rgb(239,177,51)" fg:x="116963" fg:w="795"/><text x="52.7516%" y="863.50"></text></g><g><title>ret_from_fork (846 samples, 0.38%)</title><rect x="52.4890%" y="885" width="0.3797%" height="15" fill="rgb(216,55,25)" fg:x="116935" fg:w="846"/><text x="52.7390%" y="895.50"></text></g><g><title>syscall_exit_to_user_mode (23 samples, 0.01%)</title><rect x="52.8584%" y="869" width="0.0103%" height="15" fill="rgb(231,163,29)" fg:x="117758" fg:w="23"/><text x="53.1084%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (23 samples, 0.01%)</title><rect x="52.8584%" y="853" width="0.0103%" height="15" fill="rgb(232,149,50)" fg:x="117758" fg:w="23"/><text x="53.1084%" y="863.50"></text></g><g><title>__GI_madvise (31 samples, 0.01%)</title><rect x="52.8818%" y="853" width="0.0139%" height="15" fill="rgb(223,142,48)" fg:x="117810" fg:w="31"/><text x="53.1318%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="52.8818%" y="837" width="0.0139%" height="15" fill="rgb(245,83,23)" fg:x="117810" fg:w="31"/><text x="53.1318%" y="847.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="52.8818%" y="821" width="0.0139%" height="15" fill="rgb(224,63,2)" fg:x="117810" fg:w="31"/><text x="53.1318%" y="831.50"></text></g><g><title>__x64_sys_madvise (30 samples, 0.01%)</title><rect x="52.8822%" y="805" width="0.0135%" height="15" fill="rgb(218,65,53)" fg:x="117811" fg:w="30"/><text x="53.1322%" y="815.50"></text></g><g><title>do_madvise.part.0 (30 samples, 0.01%)</title><rect x="52.8822%" y="789" width="0.0135%" height="15" fill="rgb(221,84,29)" fg:x="117811" fg:w="30"/><text x="53.1322%" y="799.50"></text></g><g><title>zap_page_range (27 samples, 0.01%)</title><rect x="52.8836%" y="773" width="0.0121%" height="15" fill="rgb(234,0,32)" fg:x="117814" fg:w="27"/><text x="53.1336%" y="783.50"></text></g><g><title>advise_stack_range (33 samples, 0.01%)</title><rect x="52.8813%" y="869" width="0.0148%" height="15" fill="rgb(206,20,16)" fg:x="117809" fg:w="33"/><text x="53.1313%" y="879.50"></text></g><g><title>__GI___clone (920 samples, 0.41%)</title><rect x="52.4868%" y="901" width="0.4130%" height="15" fill="rgb(244,172,18)" fg:x="116930" fg:w="920"/><text x="52.7368%" y="911.50"></text></g><g><title>start_thread (69 samples, 0.03%)</title><rect x="52.8687%" y="885" width="0.0310%" height="15" fill="rgb(254,133,1)" fg:x="117781" fg:w="69"/><text x="53.1187%" y="895.50"></text></g><g><title>[libstdc++.so.6.0.28] (23 samples, 0.01%)</title><rect x="52.9020%" y="837" width="0.0103%" height="15" fill="rgb(222,206,41)" fg:x="117855" fg:w="23"/><text x="53.1520%" y="847.50"></text></g><g><title>_dl_start_user (26 samples, 0.01%)</title><rect x="52.9020%" y="901" width="0.0117%" height="15" fill="rgb(212,3,42)" fg:x="117855" fg:w="26"/><text x="53.1520%" y="911.50"></text></g><g><title>_dl_init (26 samples, 0.01%)</title><rect x="52.9020%" y="885" width="0.0117%" height="15" fill="rgb(241,11,4)" fg:x="117855" fg:w="26"/><text x="53.1520%" y="895.50"></text></g><g><title>call_init (26 samples, 0.01%)</title><rect x="52.9020%" y="869" width="0.0117%" height="15" fill="rgb(205,19,26)" fg:x="117855" fg:w="26"/><text x="53.1520%" y="879.50"></text></g><g><title>call_init (26 samples, 0.01%)</title><rect x="52.9020%" y="853" width="0.0117%" height="15" fill="rgb(210,179,32)" fg:x="117855" fg:w="26"/><text x="53.1520%" y="863.50"></text></g><g><title>_dl_map_segments (54 samples, 0.02%)</title><rect x="52.9208%" y="741" width="0.0242%" height="15" fill="rgb(227,116,49)" fg:x="117897" fg:w="54"/><text x="53.1708%" y="751.50"></text></g><g><title>__mmap64 (46 samples, 0.02%)</title><rect x="52.9244%" y="725" width="0.0206%" height="15" fill="rgb(211,146,6)" fg:x="117905" fg:w="46"/><text x="53.1744%" y="735.50"></text></g><g><title>__mmap64 (46 samples, 0.02%)</title><rect x="52.9244%" y="709" width="0.0206%" height="15" fill="rgb(219,44,39)" fg:x="117905" fg:w="46"/><text x="53.1744%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="52.9244%" y="693" width="0.0206%" height="15" fill="rgb(234,128,11)" fg:x="117905" fg:w="46"/><text x="53.1744%" y="703.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="52.9244%" y="677" width="0.0206%" height="15" fill="rgb(220,183,53)" fg:x="117905" fg:w="46"/><text x="53.1744%" y="687.50"></text></g><g><title>ksys_mmap_pgoff (46 samples, 0.02%)</title><rect x="52.9244%" y="661" width="0.0206%" height="15" fill="rgb(213,219,32)" fg:x="117905" fg:w="46"/><text x="53.1744%" y="671.50"></text></g><g><title>vm_mmap_pgoff (45 samples, 0.02%)</title><rect x="52.9249%" y="645" width="0.0202%" height="15" fill="rgb(232,156,16)" fg:x="117906" fg:w="45"/><text x="53.1749%" y="655.50"></text></g><g><title>do_mmap (45 samples, 0.02%)</title><rect x="52.9249%" y="629" width="0.0202%" height="15" fill="rgb(246,135,34)" fg:x="117906" fg:w="45"/><text x="53.1749%" y="639.50"></text></g><g><title>mmap_region (44 samples, 0.02%)</title><rect x="52.9253%" y="613" width="0.0198%" height="15" fill="rgb(241,99,0)" fg:x="117907" fg:w="44"/><text x="53.1753%" y="623.50"></text></g><g><title>_dl_map_object_from_fd (68 samples, 0.03%)</title><rect x="52.9190%" y="757" width="0.0305%" height="15" fill="rgb(222,103,45)" fg:x="117893" fg:w="68"/><text x="53.1690%" y="767.50"></text></g><g><title>open_path (23 samples, 0.01%)</title><rect x="52.9504%" y="757" width="0.0103%" height="15" fill="rgb(212,57,4)" fg:x="117963" fg:w="23"/><text x="53.2004%" y="767.50"></text></g><g><title>_dl_catch_exception (95 samples, 0.04%)</title><rect x="52.9186%" y="805" width="0.0426%" height="15" fill="rgb(215,68,47)" fg:x="117892" fg:w="95"/><text x="53.1686%" y="815.50"></text></g><g><title>openaux (95 samples, 0.04%)</title><rect x="52.9186%" y="789" width="0.0426%" height="15" fill="rgb(230,84,2)" fg:x="117892" fg:w="95"/><text x="53.1686%" y="799.50"></text></g><g><title>_dl_map_object (95 samples, 0.04%)</title><rect x="52.9186%" y="773" width="0.0426%" height="15" fill="rgb(220,102,14)" fg:x="117892" fg:w="95"/><text x="53.1686%" y="783.50"></text></g><g><title>_dl_map_object_deps (97 samples, 0.04%)</title><rect x="52.9181%" y="821" width="0.0435%" height="15" fill="rgb(240,10,32)" fg:x="117891" fg:w="97"/><text x="53.1681%" y="831.50"></text></g><g><title>dl_new_hash (46 samples, 0.02%)</title><rect x="52.9980%" y="757" width="0.0206%" height="15" fill="rgb(215,47,27)" fg:x="118069" fg:w="46"/><text x="53.2480%" y="767.50"></text></g><g><title>_dl_lookup_symbol_x (167 samples, 0.07%)</title><rect x="52.9953%" y="773" width="0.0750%" height="15" fill="rgb(233,188,43)" fg:x="118063" fg:w="167"/><text x="53.2453%" y="783.50"></text></g><g><title>do_lookup_x (115 samples, 0.05%)</title><rect x="53.0187%" y="757" width="0.0516%" height="15" fill="rgb(253,190,1)" fg:x="118115" fg:w="115"/><text x="53.2687%" y="767.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.02%)</title><rect x="53.0703%" y="773" width="0.0247%" height="15" fill="rgb(206,114,52)" fg:x="118230" fg:w="55"/><text x="53.3203%" y="783.50"></text></g><g><title>exc_page_fault (54 samples, 0.02%)</title><rect x="53.0707%" y="757" width="0.0242%" height="15" fill="rgb(233,120,37)" fg:x="118231" fg:w="54"/><text x="53.3207%" y="767.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.02%)</title><rect x="53.0707%" y="741" width="0.0242%" height="15" fill="rgb(214,52,39)" fg:x="118231" fg:w="54"/><text x="53.3207%" y="751.50"></text></g><g><title>handle_mm_fault (51 samples, 0.02%)</title><rect x="53.0721%" y="725" width="0.0229%" height="15" fill="rgb(223,80,29)" fg:x="118234" fg:w="51"/><text x="53.3221%" y="735.50"></text></g><g><title>elf_machine_rela (258 samples, 0.12%)</title><rect x="52.9801%" y="789" width="0.1158%" height="15" fill="rgb(230,101,40)" fg:x="118029" fg:w="258"/><text x="53.2301%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (280 samples, 0.13%)</title><rect x="52.9715%" y="805" width="0.1257%" height="15" fill="rgb(219,211,8)" fg:x="118010" fg:w="280"/><text x="53.2215%" y="815.50"></text></g><g><title>_dl_relocate_object (298 samples, 0.13%)</title><rect x="52.9644%" y="821" width="0.1338%" height="15" fill="rgb(252,126,28)" fg:x="117994" fg:w="298"/><text x="53.2144%" y="831.50"></text></g><g><title>[ld-2.31.so] (410 samples, 0.18%)</title><rect x="52.9145%" y="837" width="0.1840%" height="15" fill="rgb(215,56,38)" fg:x="117883" fg:w="410"/><text x="53.1645%" y="847.50"></text></g><g><title>_dl_start (417 samples, 0.19%)</title><rect x="52.9145%" y="885" width="0.1872%" height="15" fill="rgb(249,55,44)" fg:x="117883" fg:w="417"/><text x="53.1645%" y="895.50"></text></g><g><title>_dl_start_final (417 samples, 0.19%)</title><rect x="52.9145%" y="869" width="0.1872%" height="15" fill="rgb(220,221,32)" fg:x="117883" fg:w="417"/><text x="53.1645%" y="879.50"></text></g><g><title>_dl_sysdep_start (417 samples, 0.19%)</title><rect x="52.9145%" y="853" width="0.1872%" height="15" fill="rgb(212,216,41)" fg:x="117883" fg:w="417"/><text x="53.1645%" y="863.50"></text></g><g><title>_start (418 samples, 0.19%)</title><rect x="52.9145%" y="901" width="0.1876%" height="15" fill="rgb(228,213,43)" fg:x="117883" fg:w="418"/><text x="53.1645%" y="911.50"></text></g><g><title>asm_exc_page_fault (104 samples, 0.05%)</title><rect x="53.1022%" y="901" width="0.0467%" height="15" fill="rgb(211,31,26)" fg:x="118301" fg:w="104"/><text x="53.3522%" y="911.50"></text></g><g><title>unmap_page_range (31 samples, 0.01%)</title><rect x="53.1664%" y="773" width="0.0139%" height="15" fill="rgb(229,202,19)" fg:x="118444" fg:w="31"/><text x="53.4164%" y="783.50"></text></g><g><title>__x64_sys_exit_group (49 samples, 0.02%)</title><rect x="53.1587%" y="869" width="0.0220%" height="15" fill="rgb(229,105,46)" fg:x="118427" fg:w="49"/><text x="53.4087%" y="879.50"></text></g><g><title>do_group_exit (49 samples, 0.02%)</title><rect x="53.1587%" y="853" width="0.0220%" height="15" fill="rgb(235,108,1)" fg:x="118427" fg:w="49"/><text x="53.4087%" y="863.50"></text></g><g><title>do_exit (49 samples, 0.02%)</title><rect x="53.1587%" y="837" width="0.0220%" height="15" fill="rgb(245,111,35)" fg:x="118427" fg:w="49"/><text x="53.4087%" y="847.50"></text></g><g><title>mmput (37 samples, 0.02%)</title><rect x="53.1641%" y="821" width="0.0166%" height="15" fill="rgb(219,185,31)" fg:x="118439" fg:w="37"/><text x="53.4141%" y="831.50"></text></g><g><title>exit_mmap (37 samples, 0.02%)</title><rect x="53.1641%" y="805" width="0.0166%" height="15" fill="rgb(214,4,43)" fg:x="118439" fg:w="37"/><text x="53.4141%" y="815.50"></text></g><g><title>unmap_vmas (32 samples, 0.01%)</title><rect x="53.1664%" y="789" width="0.0144%" height="15" fill="rgb(235,227,40)" fg:x="118444" fg:w="32"/><text x="53.4164%" y="799.50"></text></g><g><title>do_syscall_64 (80 samples, 0.04%)</title><rect x="53.1511%" y="885" width="0.0359%" height="15" fill="rgb(230,88,30)" fg:x="118410" fg:w="80"/><text x="53.4011%" y="895.50"></text></g><g><title>page_remove_rmap (43 samples, 0.02%)</title><rect x="53.2337%" y="725" width="0.0193%" height="15" fill="rgb(216,217,1)" fg:x="118594" fg:w="43"/><text x="53.4837%" y="735.50"></text></g><g><title>tlb_flush_mmu (54 samples, 0.02%)</title><rect x="53.2530%" y="725" width="0.0242%" height="15" fill="rgb(248,139,50)" fg:x="118637" fg:w="54"/><text x="53.5030%" y="735.50"></text></g><g><title>release_pages (34 samples, 0.02%)</title><rect x="53.2620%" y="709" width="0.0153%" height="15" fill="rgb(233,1,21)" fg:x="118657" fg:w="34"/><text x="53.5120%" y="719.50"></text></g><g><title>unmap_page_range (185 samples, 0.08%)</title><rect x="53.2000%" y="741" width="0.0830%" height="15" fill="rgb(215,183,12)" fg:x="118519" fg:w="185"/><text x="53.4500%" y="751.50"></text></g><g><title>mmput (205 samples, 0.09%)</title><rect x="53.1915%" y="789" width="0.0920%" height="15" fill="rgb(229,104,42)" fg:x="118500" fg:w="205"/><text x="53.4415%" y="799.50"></text></g><g><title>exit_mmap (205 samples, 0.09%)</title><rect x="53.1915%" y="773" width="0.0920%" height="15" fill="rgb(243,34,48)" fg:x="118500" fg:w="205"/><text x="53.4415%" y="783.50"></text></g><g><title>unmap_vmas (187 samples, 0.08%)</title><rect x="53.1996%" y="757" width="0.0839%" height="15" fill="rgb(239,11,44)" fg:x="118518" fg:w="187"/><text x="53.4496%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (302 samples, 0.14%)</title><rect x="53.1488%" y="901" width="0.1356%" height="15" fill="rgb(231,98,35)" fg:x="118405" fg:w="302"/><text x="53.3988%" y="911.50"></text></g><g><title>syscall_exit_to_user_mode (217 samples, 0.10%)</title><rect x="53.1870%" y="885" width="0.0974%" height="15" fill="rgb(233,28,25)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (217 samples, 0.10%)</title><rect x="53.1870%" y="869" width="0.0974%" height="15" fill="rgb(234,123,11)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="879.50"></text></g><g><title>arch_do_signal (217 samples, 0.10%)</title><rect x="53.1870%" y="853" width="0.0974%" height="15" fill="rgb(220,69,3)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="863.50"></text></g><g><title>get_signal (217 samples, 0.10%)</title><rect x="53.1870%" y="837" width="0.0974%" height="15" fill="rgb(214,64,36)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="847.50"></text></g><g><title>do_group_exit (217 samples, 0.10%)</title><rect x="53.1870%" y="821" width="0.0974%" height="15" fill="rgb(211,138,32)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="831.50"></text></g><g><title>do_exit (217 samples, 0.10%)</title><rect x="53.1870%" y="805" width="0.0974%" height="15" fill="rgb(213,118,47)" fg:x="118490" fg:w="217"/><text x="53.4370%" y="815.50"></text></g><g><title>tlb_flush_mmu (29 samples, 0.01%)</title><rect x="53.3226%" y="725" width="0.0130%" height="15" fill="rgb(243,124,49)" fg:x="118792" fg:w="29"/><text x="53.5726%" y="735.50"></text></g><g><title>release_pages (26 samples, 0.01%)</title><rect x="53.3239%" y="709" width="0.0117%" height="15" fill="rgb(221,30,28)" fg:x="118795" fg:w="26"/><text x="53.5739%" y="719.50"></text></g><g><title>mmput (100 samples, 0.04%)</title><rect x="53.2920%" y="789" width="0.0449%" height="15" fill="rgb(246,37,13)" fg:x="118724" fg:w="100"/><text x="53.5420%" y="799.50"></text></g><g><title>exit_mmap (99 samples, 0.04%)</title><rect x="53.2925%" y="773" width="0.0444%" height="15" fill="rgb(249,66,14)" fg:x="118725" fg:w="99"/><text x="53.5425%" y="783.50"></text></g><g><title>unmap_vmas (90 samples, 0.04%)</title><rect x="53.2965%" y="757" width="0.0404%" height="15" fill="rgb(213,166,5)" fg:x="118734" fg:w="90"/><text x="53.5465%" y="767.50"></text></g><g><title>unmap_page_range (90 samples, 0.04%)</title><rect x="53.2965%" y="741" width="0.0404%" height="15" fill="rgb(221,66,24)" fg:x="118734" fg:w="90"/><text x="53.5465%" y="751.50"></text></g><g><title>ret_from_fork (110 samples, 0.05%)</title><rect x="53.2880%" y="901" width="0.0494%" height="15" fill="rgb(210,132,17)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="911.50"></text></g><g><title>syscall_exit_to_user_mode (110 samples, 0.05%)</title><rect x="53.2880%" y="885" width="0.0494%" height="15" fill="rgb(243,202,5)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (110 samples, 0.05%)</title><rect x="53.2880%" y="869" width="0.0494%" height="15" fill="rgb(233,70,48)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="879.50"></text></g><g><title>arch_do_signal (110 samples, 0.05%)</title><rect x="53.2880%" y="853" width="0.0494%" height="15" fill="rgb(238,41,26)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="863.50"></text></g><g><title>get_signal (110 samples, 0.05%)</title><rect x="53.2880%" y="837" width="0.0494%" height="15" fill="rgb(241,19,31)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="847.50"></text></g><g><title>do_group_exit (110 samples, 0.05%)</title><rect x="53.2880%" y="821" width="0.0494%" height="15" fill="rgb(214,76,10)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="831.50"></text></g><g><title>do_exit (110 samples, 0.05%)</title><rect x="53.2880%" y="805" width="0.0494%" height="15" fill="rgb(254,202,22)" fg:x="118715" fg:w="110"/><text x="53.5380%" y="815.50"></text></g><g><title>ld.lld (14,946 samples, 6.71%)</title><rect x="46.6294%" y="917" width="6.7089%" height="15" fill="rgb(214,72,24)" fg:x="103881" fg:w="14946"/><text x="46.8794%" y="927.50">ld.lld</text></g><g><title>[[heap]] (44 samples, 0.02%)</title><rect x="53.3383%" y="901" width="0.0198%" height="15" fill="rgb(221,92,46)" fg:x="118827" fg:w="44"/><text x="53.5883%" y="911.50"></text></g><g><title>[bash] (29 samples, 0.01%)</title><rect x="53.3580%" y="885" width="0.0130%" height="15" fill="rgb(246,13,50)" fg:x="118871" fg:w="29"/><text x="53.6080%" y="895.50"></text></g><g><title>[[stack]] (37 samples, 0.02%)</title><rect x="53.3580%" y="901" width="0.0166%" height="15" fill="rgb(240,165,38)" fg:x="118871" fg:w="37"/><text x="53.6080%" y="911.50"></text></g><g><title>finish_task_switch (26 samples, 0.01%)</title><rect x="53.4123%" y="85" width="0.0117%" height="15" fill="rgb(241,24,51)" fg:x="118992" fg:w="26"/><text x="53.6623%" y="95.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="53.4123%" y="69" width="0.0117%" height="15" fill="rgb(227,51,44)" fg:x="118992" fg:w="26"/><text x="53.6623%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="53.4123%" y="53" width="0.0117%" height="15" fill="rgb(231,121,3)" fg:x="118992" fg:w="26"/><text x="53.6623%" y="63.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="53.4128%" y="37" width="0.0112%" height="15" fill="rgb(245,3,41)" fg:x="118993" fg:w="25"/><text x="53.6628%" y="47.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="53.4123%" y="117" width="0.0126%" height="15" fill="rgb(214,13,26)" fg:x="118992" fg:w="28"/><text x="53.6623%" y="127.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="53.4123%" y="101" width="0.0126%" height="15" fill="rgb(252,75,11)" fg:x="118992" fg:w="28"/><text x="53.6623%" y="111.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="757" width="0.0157%" height="15" fill="rgb(218,226,17)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="767.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="741" width="0.0157%" height="15" fill="rgb(248,89,38)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="751.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="725" width="0.0157%" height="15" fill="rgb(237,73,46)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="735.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="709" width="0.0157%" height="15" fill="rgb(242,78,33)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="719.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="693" width="0.0157%" height="15" fill="rgb(235,60,3)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="703.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="677" width="0.0157%" height="15" fill="rgb(216,172,19)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="687.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="661" width="0.0157%" height="15" fill="rgb(227,6,42)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="671.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="645" width="0.0157%" height="15" fill="rgb(223,207,42)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="655.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="629" width="0.0157%" height="15" fill="rgb(246,138,30)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="639.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="53.4105%" y="613" width="0.0157%" height="15" fill="rgb(251,199,47)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="623.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="597" width="0.0157%" height="15" fill="rgb(228,218,44)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="607.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="581" width="0.0157%" height="15" fill="rgb(220,68,6)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="591.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="53.4105%" y="565" width="0.0157%" height="15" fill="rgb(240,60,26)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="575.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="549" width="0.0157%" height="15" fill="rgb(211,200,19)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="559.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="533" width="0.0157%" height="15" fill="rgb(242,145,30)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="543.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="53.4105%" y="517" width="0.0157%" height="15" fill="rgb(225,64,13)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="527.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="501" width="0.0157%" height="15" fill="rgb(218,103,35)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="511.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="485" width="0.0157%" height="15" fill="rgb(216,93,46)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="495.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="53.4105%" y="469" width="0.0157%" height="15" fill="rgb(225,159,27)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="479.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="453" width="0.0157%" height="15" fill="rgb(225,204,11)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="463.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="437" width="0.0157%" height="15" fill="rgb(205,56,4)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="447.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="421" width="0.0157%" height="15" fill="rgb(206,6,35)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="431.50"></text></g><g><title>expand_words (35 samples, 0.02%)</title><rect x="53.4105%" y="405" width="0.0157%" height="15" fill="rgb(247,73,52)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="415.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="389" width="0.0157%" height="15" fill="rgb(246,97,4)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="399.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="373" width="0.0157%" height="15" fill="rgb(212,37,15)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="383.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="357" width="0.0157%" height="15" fill="rgb(208,130,40)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="367.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="341" width="0.0157%" height="15" fill="rgb(236,55,29)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="351.50"></text></g><g><title>command_substitute (35 samples, 0.02%)</title><rect x="53.4105%" y="325" width="0.0157%" height="15" fill="rgb(209,156,45)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="335.50"></text></g><g><title>parse_and_execute (35 samples, 0.02%)</title><rect x="53.4105%" y="309" width="0.0157%" height="15" fill="rgb(249,107,4)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="319.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="293" width="0.0157%" height="15" fill="rgb(227,7,13)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="303.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="277" width="0.0157%" height="15" fill="rgb(250,129,14)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="287.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="53.4105%" y="261" width="0.0157%" height="15" fill="rgb(229,92,13)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="271.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="53.4105%" y="245" width="0.0157%" height="15" fill="rgb(245,98,39)" fg:x="118988" fg:w="35"/><text x="53.6605%" y="255.50"></text></g><g><title>wait_for (31 samples, 0.01%)</title><rect x="53.4123%" y="229" width="0.0139%" height="15" fill="rgb(234,135,48)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="239.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4123%" y="213" width="0.0139%" height="15" fill="rgb(230,98,28)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="223.50"></text></g><g><title>__GI___wait4 (31 samples, 0.01%)</title><rect x="53.4123%" y="197" width="0.0139%" height="15" fill="rgb(223,121,0)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="207.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="53.4123%" y="181" width="0.0139%" height="15" fill="rgb(234,173,33)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="191.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="53.4123%" y="165" width="0.0139%" height="15" fill="rgb(245,47,8)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="175.50"></text></g><g><title>kernel_wait4 (31 samples, 0.01%)</title><rect x="53.4123%" y="149" width="0.0139%" height="15" fill="rgb(205,17,20)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="159.50"></text></g><g><title>do_wait (31 samples, 0.01%)</title><rect x="53.4123%" y="133" width="0.0139%" height="15" fill="rgb(232,151,16)" fg:x="118992" fg:w="31"/><text x="53.6623%" y="143.50"></text></g><g><title>[bash] (89 samples, 0.04%)</title><rect x="53.3867%" y="885" width="0.0399%" height="15" fill="rgb(208,30,32)" fg:x="118935" fg:w="89"/><text x="53.6367%" y="895.50"></text></g><g><title>execute_command_internal (49 samples, 0.02%)</title><rect x="53.4047%" y="869" width="0.0220%" height="15" fill="rgb(254,26,3)" fg:x="118975" fg:w="49"/><text x="53.6547%" y="879.50"></text></g><g><title>execute_command_internal (47 samples, 0.02%)</title><rect x="53.4056%" y="853" width="0.0211%" height="15" fill="rgb(240,177,30)" fg:x="118977" fg:w="47"/><text x="53.6556%" y="863.50"></text></g><g><title>[bash] (47 samples, 0.02%)</title><rect x="53.4056%" y="837" width="0.0211%" height="15" fill="rgb(248,76,44)" fg:x="118977" fg:w="47"/><text x="53.6556%" y="847.50"></text></g><g><title>execute_command (47 samples, 0.02%)</title><rect x="53.4056%" y="821" width="0.0211%" height="15" fill="rgb(241,186,54)" fg:x="118977" fg:w="47"/><text x="53.6556%" y="831.50"></text></g><g><title>execute_command_internal (47 samples, 0.02%)</title><rect x="53.4056%" y="805" width="0.0211%" height="15" fill="rgb(249,171,29)" fg:x="118977" fg:w="47"/><text x="53.6556%" y="815.50"></text></g><g><title>[bash] (47 samples, 0.02%)</title><rect x="53.4056%" y="789" width="0.0211%" height="15" fill="rgb(237,151,44)" fg:x="118977" fg:w="47"/><text x="53.6556%" y="799.50"></text></g><g><title>execute_command_internal (36 samples, 0.02%)</title><rect x="53.4105%" y="773" width="0.0162%" height="15" fill="rgb(228,174,30)" fg:x="118988" fg:w="36"/><text x="53.6605%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.02%)</title><rect x="53.4523%" y="101" width="0.0175%" height="15" fill="rgb(252,14,37)" fg:x="119081" fg:w="39"/><text x="53.7023%" y="111.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="53.4536%" y="85" width="0.0162%" height="15" fill="rgb(207,111,40)" fg:x="119084" fg:w="36"/><text x="53.7036%" y="95.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="53.4536%" y="69" width="0.0162%" height="15" fill="rgb(248,171,54)" fg:x="119084" fg:w="36"/><text x="53.7036%" y="79.50"></text></g><g><title>__libc_fork (55 samples, 0.02%)</title><rect x="53.4460%" y="181" width="0.0247%" height="15" fill="rgb(211,127,2)" fg:x="119067" fg:w="55"/><text x="53.6960%" y="191.50"></text></g><g><title>arch_fork (55 samples, 0.02%)</title><rect x="53.4460%" y="165" width="0.0247%" height="15" fill="rgb(236,87,47)" fg:x="119067" fg:w="55"/><text x="53.6960%" y="175.50"></text></g><g><title>ret_from_fork (49 samples, 0.02%)</title><rect x="53.4487%" y="149" width="0.0220%" height="15" fill="rgb(223,190,45)" fg:x="119073" fg:w="49"/><text x="53.6987%" y="159.50"></text></g><g><title>schedule_tail (49 samples, 0.02%)</title><rect x="53.4487%" y="133" width="0.0220%" height="15" fill="rgb(215,5,16)" fg:x="119073" fg:w="49"/><text x="53.6987%" y="143.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="53.4509%" y="117" width="0.0198%" height="15" fill="rgb(252,82,33)" fg:x="119078" fg:w="44"/><text x="53.7009%" y="127.50"></text></g><g><title>execute_command (63 samples, 0.03%)</title><rect x="53.4429%" y="853" width="0.0283%" height="15" fill="rgb(247,213,44)" fg:x="119060" fg:w="63"/><text x="53.6929%" y="863.50"></text></g><g><title>execute_command_internal (63 samples, 0.03%)</title><rect x="53.4429%" y="837" width="0.0283%" height="15" fill="rgb(205,196,44)" fg:x="119060" fg:w="63"/><text x="53.6929%" y="847.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="821" width="0.0251%" height="15" fill="rgb(237,96,54)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="831.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="805" width="0.0251%" height="15" fill="rgb(230,113,34)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="815.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="789" width="0.0251%" height="15" fill="rgb(221,224,12)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="799.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="773" width="0.0251%" height="15" fill="rgb(219,112,44)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="783.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="757" width="0.0251%" height="15" fill="rgb(210,31,13)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="767.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="741" width="0.0251%" height="15" fill="rgb(230,25,16)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="751.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="725" width="0.0251%" height="15" fill="rgb(246,108,53)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="735.50"></text></g><g><title>execute_command (56 samples, 0.03%)</title><rect x="53.4460%" y="709" width="0.0251%" height="15" fill="rgb(241,172,50)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="719.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="693" width="0.0251%" height="15" fill="rgb(235,141,10)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="703.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="677" width="0.0251%" height="15" fill="rgb(220,174,43)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="687.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="661" width="0.0251%" height="15" fill="rgb(215,181,40)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="671.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="645" width="0.0251%" height="15" fill="rgb(230,97,2)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="655.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="629" width="0.0251%" height="15" fill="rgb(211,25,27)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="639.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="613" width="0.0251%" height="15" fill="rgb(230,87,26)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="623.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="597" width="0.0251%" height="15" fill="rgb(227,160,17)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="607.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="581" width="0.0251%" height="15" fill="rgb(244,85,34)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="591.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="565" width="0.0251%" height="15" fill="rgb(207,70,0)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="575.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="549" width="0.0251%" height="15" fill="rgb(223,129,7)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="559.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="533" width="0.0251%" height="15" fill="rgb(246,105,7)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="543.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="517" width="0.0251%" height="15" fill="rgb(215,154,42)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="527.50"></text></g><g><title>execute_command (56 samples, 0.03%)</title><rect x="53.4460%" y="501" width="0.0251%" height="15" fill="rgb(220,215,30)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="511.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="485" width="0.0251%" height="15" fill="rgb(228,81,51)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="495.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="469" width="0.0251%" height="15" fill="rgb(247,71,54)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="479.50"></text></g><g><title>execute_command (56 samples, 0.03%)</title><rect x="53.4460%" y="453" width="0.0251%" height="15" fill="rgb(234,176,34)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="463.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="437" width="0.0251%" height="15" fill="rgb(241,103,54)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="447.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="421" width="0.0251%" height="15" fill="rgb(228,22,34)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="431.50"></text></g><g><title>execute_command (56 samples, 0.03%)</title><rect x="53.4460%" y="405" width="0.0251%" height="15" fill="rgb(241,179,48)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="415.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="389" width="0.0251%" height="15" fill="rgb(235,167,37)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="399.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="373" width="0.0251%" height="15" fill="rgb(213,109,30)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="383.50"></text></g><g><title>execute_command (56 samples, 0.03%)</title><rect x="53.4460%" y="357" width="0.0251%" height="15" fill="rgb(222,172,16)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="367.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="341" width="0.0251%" height="15" fill="rgb(233,192,5)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="351.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="325" width="0.0251%" height="15" fill="rgb(247,189,41)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="335.50"></text></g><g><title>execute_command_internal (56 samples, 0.03%)</title><rect x="53.4460%" y="309" width="0.0251%" height="15" fill="rgb(218,134,47)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="319.50"></text></g><g><title>expand_words (56 samples, 0.03%)</title><rect x="53.4460%" y="293" width="0.0251%" height="15" fill="rgb(216,29,3)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="303.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="277" width="0.0251%" height="15" fill="rgb(246,140,12)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="287.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="261" width="0.0251%" height="15" fill="rgb(230,136,11)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="271.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="245" width="0.0251%" height="15" fill="rgb(247,22,47)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="255.50"></text></g><g><title>[bash] (56 samples, 0.03%)</title><rect x="53.4460%" y="229" width="0.0251%" height="15" fill="rgb(218,84,22)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="239.50"></text></g><g><title>command_substitute (56 samples, 0.03%)</title><rect x="53.4460%" y="213" width="0.0251%" height="15" fill="rgb(216,87,39)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="223.50"></text></g><g><title>make_child (56 samples, 0.03%)</title><rect x="53.4460%" y="197" width="0.0251%" height="15" fill="rgb(221,178,8)" fg:x="119067" fg:w="56"/><text x="53.6960%" y="207.50"></text></g><g><title>execute_command (33 samples, 0.01%)</title><rect x="53.4738%" y="805" width="0.0148%" height="15" fill="rgb(230,42,11)" fg:x="119129" fg:w="33"/><text x="53.7238%" y="815.50"></text></g><g><title>execute_command_internal (33 samples, 0.01%)</title><rect x="53.4738%" y="789" width="0.0148%" height="15" fill="rgb(237,229,4)" fg:x="119129" fg:w="33"/><text x="53.7238%" y="799.50"></text></g><g><title>[bash] (33 samples, 0.01%)</title><rect x="53.4738%" y="773" width="0.0148%" height="15" fill="rgb(222,31,33)" fg:x="119129" fg:w="33"/><text x="53.7238%" y="783.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="757" width="0.0139%" height="15" fill="rgb(210,17,39)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="767.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="741" width="0.0139%" height="15" fill="rgb(244,93,20)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="751.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="725" width="0.0139%" height="15" fill="rgb(210,40,47)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="735.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="709" width="0.0139%" height="15" fill="rgb(239,211,47)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="719.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="693" width="0.0139%" height="15" fill="rgb(251,223,49)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="703.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="677" width="0.0139%" height="15" fill="rgb(221,149,5)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="687.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="661" width="0.0139%" height="15" fill="rgb(219,224,51)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="671.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="645" width="0.0139%" height="15" fill="rgb(223,7,8)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="655.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="629" width="0.0139%" height="15" fill="rgb(241,217,22)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="639.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="613" width="0.0139%" height="15" fill="rgb(248,209,0)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="623.50"></text></g><g><title>execute_command (31 samples, 0.01%)</title><rect x="53.4747%" y="597" width="0.0139%" height="15" fill="rgb(217,205,4)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="607.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="581" width="0.0139%" height="15" fill="rgb(228,124,39)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="591.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="565" width="0.0139%" height="15" fill="rgb(250,116,42)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="575.50"></text></g><g><title>execute_command (31 samples, 0.01%)</title><rect x="53.4747%" y="549" width="0.0139%" height="15" fill="rgb(223,202,9)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="559.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="533" width="0.0139%" height="15" fill="rgb(242,222,40)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="543.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="517" width="0.0139%" height="15" fill="rgb(229,99,46)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="527.50"></text></g><g><title>execute_command (31 samples, 0.01%)</title><rect x="53.4747%" y="501" width="0.0139%" height="15" fill="rgb(225,56,46)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="511.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="485" width="0.0139%" height="15" fill="rgb(227,94,5)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="495.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="469" width="0.0139%" height="15" fill="rgb(205,112,38)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="479.50"></text></g><g><title>execute_command (31 samples, 0.01%)</title><rect x="53.4747%" y="453" width="0.0139%" height="15" fill="rgb(231,133,46)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="463.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="437" width="0.0139%" height="15" fill="rgb(217,16,9)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="447.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="421" width="0.0139%" height="15" fill="rgb(249,173,9)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="431.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.4747%" y="405" width="0.0139%" height="15" fill="rgb(205,163,53)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="415.50"></text></g><g><title>expand_words (31 samples, 0.01%)</title><rect x="53.4747%" y="389" width="0.0139%" height="15" fill="rgb(217,54,41)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="399.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="373" width="0.0139%" height="15" fill="rgb(228,216,12)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="383.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="357" width="0.0139%" height="15" fill="rgb(244,228,15)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="367.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="341" width="0.0139%" height="15" fill="rgb(221,176,53)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="351.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.4747%" y="325" width="0.0139%" height="15" fill="rgb(205,94,34)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="335.50"></text></g><g><title>command_substitute (31 samples, 0.01%)</title><rect x="53.4747%" y="309" width="0.0139%" height="15" fill="rgb(213,110,48)" fg:x="119131" fg:w="31"/><text x="53.7247%" y="319.50"></text></g><g><title>parse_and_execute (30 samples, 0.01%)</title><rect x="53.4752%" y="293" width="0.0135%" height="15" fill="rgb(236,142,28)" fg:x="119132" fg:w="30"/><text x="53.7252%" y="303.50"></text></g><g><title>execute_command_internal (30 samples, 0.01%)</title><rect x="53.4752%" y="277" width="0.0135%" height="15" fill="rgb(225,135,29)" fg:x="119132" fg:w="30"/><text x="53.7252%" y="287.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="53.4752%" y="261" width="0.0135%" height="15" fill="rgb(252,45,31)" fg:x="119132" fg:w="30"/><text x="53.7252%" y="271.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="53.4752%" y="245" width="0.0135%" height="15" fill="rgb(211,187,50)" fg:x="119132" fg:w="30"/><text x="53.7252%" y="255.50"></text></g><g><title>execute_command_internal (30 samples, 0.01%)</title><rect x="53.4752%" y="229" width="0.0135%" height="15" fill="rgb(229,109,7)" fg:x="119132" fg:w="30"/><text x="53.7252%" y="239.50"></text></g><g><title>[bash] (103 samples, 0.05%)</title><rect x="53.4429%" y="869" width="0.0462%" height="15" fill="rgb(251,131,51)" fg:x="119060" fg:w="103"/><text x="53.6929%" y="879.50"></text></g><g><title>execute_command_internal (40 samples, 0.02%)</title><rect x="53.4711%" y="853" width="0.0180%" height="15" fill="rgb(251,180,35)" fg:x="119123" fg:w="40"/><text x="53.7211%" y="863.50"></text></g><g><title>execute_command_internal (34 samples, 0.02%)</title><rect x="53.4738%" y="837" width="0.0153%" height="15" fill="rgb(211,46,32)" fg:x="119129" fg:w="34"/><text x="53.7238%" y="847.50"></text></g><g><title>[bash] (34 samples, 0.02%)</title><rect x="53.4738%" y="821" width="0.0153%" height="15" fill="rgb(248,123,17)" fg:x="119129" fg:w="34"/><text x="53.7238%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (92 samples, 0.04%)</title><rect x="53.5035%" y="149" width="0.0413%" height="15" fill="rgb(227,141,18)" fg:x="119195" fg:w="92"/><text x="53.7535%" y="159.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (86 samples, 0.04%)</title><rect x="53.5061%" y="133" width="0.0386%" height="15" fill="rgb(216,102,9)" fg:x="119201" fg:w="86"/><text x="53.7561%" y="143.50"></text></g><g><title>native_write_msr (86 samples, 0.04%)</title><rect x="53.5061%" y="117" width="0.0386%" height="15" fill="rgb(253,47,13)" fg:x="119201" fg:w="86"/><text x="53.7561%" y="127.50"></text></g><g><title>schedule_tail (109 samples, 0.05%)</title><rect x="53.4972%" y="181" width="0.0489%" height="15" fill="rgb(226,93,23)" fg:x="119181" fg:w="109"/><text x="53.7472%" y="191.50"></text></g><g><title>finish_task_switch (101 samples, 0.05%)</title><rect x="53.5008%" y="165" width="0.0453%" height="15" fill="rgb(247,104,17)" fg:x="119189" fg:w="101"/><text x="53.7508%" y="175.50"></text></g><g><title>arch_fork (121 samples, 0.05%)</title><rect x="53.4922%" y="213" width="0.0543%" height="15" fill="rgb(233,203,26)" fg:x="119170" fg:w="121"/><text x="53.7422%" y="223.50"></text></g><g><title>ret_from_fork (110 samples, 0.05%)</title><rect x="53.4972%" y="197" width="0.0494%" height="15" fill="rgb(244,98,49)" fg:x="119181" fg:w="110"/><text x="53.7472%" y="207.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="773" width="0.0557%" height="15" fill="rgb(235,134,22)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="783.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="757" width="0.0557%" height="15" fill="rgb(221,70,32)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="767.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="741" width="0.0557%" height="15" fill="rgb(238,15,50)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="751.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="725" width="0.0557%" height="15" fill="rgb(215,221,48)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="735.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="709" width="0.0557%" height="15" fill="rgb(236,73,3)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="719.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="693" width="0.0557%" height="15" fill="rgb(250,107,11)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="703.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="677" width="0.0557%" height="15" fill="rgb(242,39,14)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="687.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="661" width="0.0557%" height="15" fill="rgb(248,164,37)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="671.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="645" width="0.0557%" height="15" fill="rgb(217,60,12)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="655.50"></text></g><g><title>execute_command (124 samples, 0.06%)</title><rect x="53.4913%" y="629" width="0.0557%" height="15" fill="rgb(240,125,29)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="639.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="613" width="0.0557%" height="15" fill="rgb(208,207,28)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="623.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="597" width="0.0557%" height="15" fill="rgb(209,159,27)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="607.50"></text></g><g><title>execute_command (124 samples, 0.06%)</title><rect x="53.4913%" y="581" width="0.0557%" height="15" fill="rgb(251,176,53)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="591.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="565" width="0.0557%" height="15" fill="rgb(211,85,7)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="575.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="549" width="0.0557%" height="15" fill="rgb(216,64,54)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="559.50"></text></g><g><title>execute_command (124 samples, 0.06%)</title><rect x="53.4913%" y="533" width="0.0557%" height="15" fill="rgb(217,54,24)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="543.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="517" width="0.0557%" height="15" fill="rgb(208,206,53)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="527.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="501" width="0.0557%" height="15" fill="rgb(251,74,39)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="511.50"></text></g><g><title>execute_command (124 samples, 0.06%)</title><rect x="53.4913%" y="485" width="0.0557%" height="15" fill="rgb(226,47,5)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="495.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="469" width="0.0557%" height="15" fill="rgb(234,111,33)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="479.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="453" width="0.0557%" height="15" fill="rgb(251,14,10)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="463.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="437" width="0.0557%" height="15" fill="rgb(232,43,0)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="447.50"></text></g><g><title>expand_words (124 samples, 0.06%)</title><rect x="53.4913%" y="421" width="0.0557%" height="15" fill="rgb(222,68,43)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="431.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="405" width="0.0557%" height="15" fill="rgb(217,24,23)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="415.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="389" width="0.0557%" height="15" fill="rgb(229,209,14)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="399.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="373" width="0.0557%" height="15" fill="rgb(250,149,48)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="383.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="357" width="0.0557%" height="15" fill="rgb(210,120,37)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="367.50"></text></g><g><title>command_substitute (124 samples, 0.06%)</title><rect x="53.4913%" y="341" width="0.0557%" height="15" fill="rgb(210,21,8)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="351.50"></text></g><g><title>parse_and_execute (124 samples, 0.06%)</title><rect x="53.4913%" y="325" width="0.0557%" height="15" fill="rgb(243,145,7)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="335.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="309" width="0.0557%" height="15" fill="rgb(238,178,32)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="319.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="293" width="0.0557%" height="15" fill="rgb(222,4,10)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="303.50"></text></g><g><title>[bash] (124 samples, 0.06%)</title><rect x="53.4913%" y="277" width="0.0557%" height="15" fill="rgb(239,7,37)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="287.50"></text></g><g><title>execute_command_internal (124 samples, 0.06%)</title><rect x="53.4913%" y="261" width="0.0557%" height="15" fill="rgb(215,31,37)" fg:x="119168" fg:w="124"/><text x="53.7413%" y="271.50"></text></g><g><title>make_child (123 samples, 0.06%)</title><rect x="53.4918%" y="245" width="0.0552%" height="15" fill="rgb(224,83,33)" fg:x="119169" fg:w="123"/><text x="53.7418%" y="255.50"></text></g><g><title>__libc_fork (123 samples, 0.06%)</title><rect x="53.4918%" y="229" width="0.0552%" height="15" fill="rgb(239,55,3)" fg:x="119169" fg:w="123"/><text x="53.7418%" y="239.50"></text></g><g><title>execute_command (127 samples, 0.06%)</title><rect x="53.4904%" y="837" width="0.0570%" height="15" fill="rgb(247,92,11)" fg:x="119166" fg:w="127"/><text x="53.7404%" y="847.50"></text></g><g><title>execute_command_internal (127 samples, 0.06%)</title><rect x="53.4904%" y="821" width="0.0570%" height="15" fill="rgb(239,200,7)" fg:x="119166" fg:w="127"/><text x="53.7404%" y="831.50"></text></g><g><title>[bash] (127 samples, 0.06%)</title><rect x="53.4904%" y="805" width="0.0570%" height="15" fill="rgb(227,115,8)" fg:x="119166" fg:w="127"/><text x="53.7404%" y="815.50"></text></g><g><title>execute_command_internal (125 samples, 0.06%)</title><rect x="53.4913%" y="789" width="0.0561%" height="15" fill="rgb(215,189,27)" fg:x="119168" fg:w="125"/><text x="53.7413%" y="799.50"></text></g><g><title>execute_command_internal (234 samples, 0.11%)</title><rect x="53.4429%" y="885" width="0.1050%" height="15" fill="rgb(251,216,39)" fg:x="119060" fg:w="234"/><text x="53.6929%" y="895.50"></text></g><g><title>execute_command_internal (128 samples, 0.06%)</title><rect x="53.4904%" y="869" width="0.0575%" height="15" fill="rgb(207,29,47)" fg:x="119166" fg:w="128"/><text x="53.7404%" y="879.50"></text></g><g><title>[bash] (128 samples, 0.06%)</title><rect x="53.4904%" y="853" width="0.0575%" height="15" fill="rgb(210,71,34)" fg:x="119166" fg:w="128"/><text x="53.7404%" y="863.50"></text></g><g><title>[unknown] (395 samples, 0.18%)</title><rect x="53.3867%" y="901" width="0.1773%" height="15" fill="rgb(253,217,51)" fg:x="118935" fg:w="395"/><text x="53.6367%" y="911.50"></text></g><g><title>dispose_command (25 samples, 0.01%)</title><rect x="53.5699%" y="725" width="0.0112%" height="15" fill="rgb(222,117,46)" fg:x="119343" fg:w="25"/><text x="53.8199%" y="735.50"></text></g><g><title>dispose_command (24 samples, 0.01%)</title><rect x="53.5703%" y="709" width="0.0108%" height="15" fill="rgb(226,132,6)" fg:x="119344" fg:w="24"/><text x="53.8203%" y="719.50"></text></g><g><title>dispose_command (23 samples, 0.01%)</title><rect x="53.5708%" y="693" width="0.0103%" height="15" fill="rgb(254,145,51)" fg:x="119345" fg:w="23"/><text x="53.8208%" y="703.50"></text></g><g><title>dispose_command (23 samples, 0.01%)</title><rect x="53.5708%" y="677" width="0.0103%" height="15" fill="rgb(231,199,27)" fg:x="119345" fg:w="23"/><text x="53.8208%" y="687.50"></text></g><g><title>dispose_command (28 samples, 0.01%)</title><rect x="53.5690%" y="837" width="0.0126%" height="15" fill="rgb(245,158,14)" fg:x="119341" fg:w="28"/><text x="53.8190%" y="847.50"></text></g><g><title>dispose_command (28 samples, 0.01%)</title><rect x="53.5690%" y="821" width="0.0126%" height="15" fill="rgb(240,113,14)" fg:x="119341" fg:w="28"/><text x="53.8190%" y="831.50"></text></g><g><title>dispose_command (28 samples, 0.01%)</title><rect x="53.5690%" y="805" width="0.0126%" height="15" fill="rgb(210,20,13)" fg:x="119341" fg:w="28"/><text x="53.8190%" y="815.50"></text></g><g><title>dispose_command (28 samples, 0.01%)</title><rect x="53.5690%" y="789" width="0.0126%" height="15" fill="rgb(241,144,13)" fg:x="119341" fg:w="28"/><text x="53.8190%" y="799.50"></text></g><g><title>dispose_command (27 samples, 0.01%)</title><rect x="53.5694%" y="773" width="0.0121%" height="15" fill="rgb(235,43,34)" fg:x="119342" fg:w="27"/><text x="53.8194%" y="783.50"></text></g><g><title>dispose_command (26 samples, 0.01%)</title><rect x="53.5699%" y="757" width="0.0117%" height="15" fill="rgb(208,36,20)" fg:x="119343" fg:w="26"/><text x="53.8199%" y="767.50"></text></g><g><title>dispose_command (26 samples, 0.01%)</title><rect x="53.5699%" y="741" width="0.0117%" height="15" fill="rgb(239,204,10)" fg:x="119343" fg:w="26"/><text x="53.8199%" y="751.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="53.5910%" y="709" width="0.0135%" height="15" fill="rgb(217,84,43)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="719.50"></text></g><g><title>execute_command_internal (30 samples, 0.01%)</title><rect x="53.5910%" y="693" width="0.0135%" height="15" fill="rgb(241,170,50)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="703.50"></text></g><g><title>execute_command_internal (30 samples, 0.01%)</title><rect x="53.5910%" y="677" width="0.0135%" height="15" fill="rgb(226,205,29)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="687.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="53.5910%" y="661" width="0.0135%" height="15" fill="rgb(233,113,1)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="671.50"></text></g><g><title>execute_command (30 samples, 0.01%)</title><rect x="53.5910%" y="645" width="0.0135%" height="15" fill="rgb(253,98,13)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="655.50"></text></g><g><title>execute_command_internal (30 samples, 0.01%)</title><rect x="53.5910%" y="629" width="0.0135%" height="15" fill="rgb(211,115,12)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="639.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="53.5910%" y="613" width="0.0135%" height="15" fill="rgb(208,12,16)" fg:x="119390" fg:w="30"/><text x="53.8410%" y="623.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.5910%" y="757" width="0.0139%" height="15" fill="rgb(237,193,54)" fg:x="119390" fg:w="31"/><text x="53.8410%" y="767.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="53.5910%" y="741" width="0.0139%" height="15" fill="rgb(243,22,42)" fg:x="119390" fg:w="31"/><text x="53.8410%" y="751.50"></text></g><g><title>execute_command_internal (31 samples, 0.01%)</title><rect x="53.5910%" y="725" width="0.0139%" height="15" fill="rgb(233,151,36)" fg:x="119390" fg:w="31"/><text x="53.8410%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.03%)</title><rect x="53.6130%" y="661" width="0.0278%" height="15" fill="rgb(237,57,45)" fg:x="119439" fg:w="62"/><text x="53.8630%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.03%)</title><rect x="53.6130%" y="645" width="0.0278%" height="15" fill="rgb(221,88,17)" fg:x="119439" fg:w="62"/><text x="53.8630%" y="655.50"></text></g><g><title>native_write_msr (62 samples, 0.03%)</title><rect x="53.6130%" y="629" width="0.0278%" height="15" fill="rgb(230,79,15)" fg:x="119439" fg:w="62"/><text x="53.8630%" y="639.50"></text></g><g><title>__libc_fork (80 samples, 0.04%)</title><rect x="53.6062%" y="741" width="0.0359%" height="15" fill="rgb(213,57,13)" fg:x="119424" fg:w="80"/><text x="53.8562%" y="751.50"></text></g><g><title>arch_fork (80 samples, 0.04%)</title><rect x="53.6062%" y="725" width="0.0359%" height="15" fill="rgb(222,116,39)" fg:x="119424" fg:w="80"/><text x="53.8562%" y="735.50"></text></g><g><title>ret_from_fork (74 samples, 0.03%)</title><rect x="53.6089%" y="709" width="0.0332%" height="15" fill="rgb(245,107,2)" fg:x="119430" fg:w="74"/><text x="53.8589%" y="719.50"></text></g><g><title>schedule_tail (74 samples, 0.03%)</title><rect x="53.6089%" y="693" width="0.0332%" height="15" fill="rgb(238,1,10)" fg:x="119430" fg:w="74"/><text x="53.8589%" y="703.50"></text></g><g><title>finish_task_switch (70 samples, 0.03%)</title><rect x="53.6107%" y="677" width="0.0314%" height="15" fill="rgb(249,4,48)" fg:x="119434" fg:w="70"/><text x="53.8607%" y="687.50"></text></g><g><title>make_child (86 samples, 0.04%)</title><rect x="53.6058%" y="757" width="0.0386%" height="15" fill="rgb(223,151,18)" fg:x="119423" fg:w="86"/><text x="53.8558%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.02%)</title><rect x="53.6484%" y="597" width="0.0175%" height="15" fill="rgb(227,65,43)" fg:x="119518" fg:w="39"/><text x="53.8984%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.02%)</title><rect x="53.6484%" y="581" width="0.0175%" height="15" fill="rgb(218,40,45)" fg:x="119518" fg:w="39"/><text x="53.8984%" y="591.50"></text></g><g><title>native_write_msr (38 samples, 0.02%)</title><rect x="53.6489%" y="565" width="0.0171%" height="15" fill="rgb(252,121,31)" fg:x="119519" fg:w="38"/><text x="53.8989%" y="575.50"></text></g><g><title>schedule (44 samples, 0.02%)</title><rect x="53.6475%" y="645" width="0.0198%" height="15" fill="rgb(219,158,43)" fg:x="119516" fg:w="44"/><text x="53.8975%" y="655.50"></text></g><g><title>__schedule (44 samples, 0.02%)</title><rect x="53.6475%" y="629" width="0.0198%" height="15" fill="rgb(231,162,42)" fg:x="119516" fg:w="44"/><text x="53.8975%" y="639.50"></text></g><g><title>finish_task_switch (43 samples, 0.02%)</title><rect x="53.6480%" y="613" width="0.0193%" height="15" fill="rgb(217,179,25)" fg:x="119517" fg:w="43"/><text x="53.8980%" y="623.50"></text></g><g><title>[bash] (49 samples, 0.02%)</title><rect x="53.6462%" y="741" width="0.0220%" height="15" fill="rgb(206,212,31)" fg:x="119513" fg:w="49"/><text x="53.8962%" y="751.50"></text></g><g><title>__GI___wait4 (46 samples, 0.02%)</title><rect x="53.6475%" y="725" width="0.0206%" height="15" fill="rgb(235,144,12)" fg:x="119516" fg:w="46"/><text x="53.8975%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="53.6475%" y="709" width="0.0206%" height="15" fill="rgb(213,51,10)" fg:x="119516" fg:w="46"/><text x="53.8975%" y="719.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="53.6475%" y="693" width="0.0206%" height="15" fill="rgb(231,145,14)" fg:x="119516" fg:w="46"/><text x="53.8975%" y="703.50"></text></g><g><title>kernel_wait4 (46 samples, 0.02%)</title><rect x="53.6475%" y="677" width="0.0206%" height="15" fill="rgb(235,15,28)" fg:x="119516" fg:w="46"/><text x="53.8975%" y="687.50"></text></g><g><title>do_wait (46 samples, 0.02%)</title><rect x="53.6475%" y="661" width="0.0206%" height="15" fill="rgb(237,206,10)" fg:x="119516" fg:w="46"/><text x="53.8975%" y="671.50"></text></g><g><title>execute_command (184 samples, 0.08%)</title><rect x="53.5860%" y="789" width="0.0826%" height="15" fill="rgb(236,227,27)" fg:x="119379" fg:w="184"/><text x="53.8360%" y="799.50"></text></g><g><title>execute_command_internal (184 samples, 0.08%)</title><rect x="53.5860%" y="773" width="0.0826%" height="15" fill="rgb(246,83,35)" fg:x="119379" fg:w="184"/><text x="53.8360%" y="783.50"></text></g><g><title>wait_for (51 samples, 0.02%)</title><rect x="53.6457%" y="757" width="0.0229%" height="15" fill="rgb(220,136,24)" fg:x="119512" fg:w="51"/><text x="53.8957%" y="767.50"></text></g><g><title>[bash] (218 samples, 0.10%)</title><rect x="53.5829%" y="805" width="0.0979%" height="15" fill="rgb(217,3,25)" fg:x="119372" fg:w="218"/><text x="53.8329%" y="815.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="53.6686%" y="789" width="0.0121%" height="15" fill="rgb(239,24,14)" fg:x="119563" fg:w="27"/><text x="53.9186%" y="799.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="53.6686%" y="773" width="0.0121%" height="15" fill="rgb(244,16,53)" fg:x="119563" fg:w="27"/><text x="53.9186%" y="783.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="53.6686%" y="757" width="0.0121%" height="15" fill="rgb(208,175,44)" fg:x="119563" fg:w="27"/><text x="53.9186%" y="767.50"></text></g><g><title>copy_command (26 samples, 0.01%)</title><rect x="53.6983%" y="293" width="0.0117%" height="15" fill="rgb(252,18,48)" fg:x="119629" fg:w="26"/><text x="53.9483%" y="303.50"></text></g><g><title>copy_command (29 samples, 0.01%)</title><rect x="53.6983%" y="309" width="0.0130%" height="15" fill="rgb(234,199,32)" fg:x="119629" fg:w="29"/><text x="53.9483%" y="319.50"></text></g><g><title>copy_command (31 samples, 0.01%)</title><rect x="53.6978%" y="325" width="0.0139%" height="15" fill="rgb(225,77,54)" fg:x="119628" fg:w="31"/><text x="53.9478%" y="335.50"></text></g><g><title>copy_command (32 samples, 0.01%)</title><rect x="53.6978%" y="341" width="0.0144%" height="15" fill="rgb(225,42,25)" fg:x="119628" fg:w="32"/><text x="53.9478%" y="351.50"></text></g><g><title>copy_command (36 samples, 0.02%)</title><rect x="53.6965%" y="389" width="0.0162%" height="15" fill="rgb(242,227,46)" fg:x="119625" fg:w="36"/><text x="53.9465%" y="399.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="53.6969%" y="373" width="0.0157%" height="15" fill="rgb(246,197,35)" fg:x="119626" fg:w="35"/><text x="53.9469%" y="383.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="53.6974%" y="357" width="0.0153%" height="15" fill="rgb(215,159,26)" fg:x="119627" fg:w="34"/><text x="53.9474%" y="367.50"></text></g><g><title>copy_command (38 samples, 0.02%)</title><rect x="53.6960%" y="437" width="0.0171%" height="15" fill="rgb(212,194,50)" fg:x="119624" fg:w="38"/><text x="53.9460%" y="447.50"></text></g><g><title>copy_command (38 samples, 0.02%)</title><rect x="53.6960%" y="421" width="0.0171%" height="15" fill="rgb(246,132,1)" fg:x="119624" fg:w="38"/><text x="53.9460%" y="431.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="53.6965%" y="405" width="0.0166%" height="15" fill="rgb(217,71,7)" fg:x="119625" fg:w="37"/><text x="53.9465%" y="415.50"></text></g><g><title>copy_command (39 samples, 0.02%)</title><rect x="53.6960%" y="453" width="0.0175%" height="15" fill="rgb(252,59,32)" fg:x="119624" fg:w="39"/><text x="53.9460%" y="463.50"></text></g><g><title>copy_command (40 samples, 0.02%)</title><rect x="53.6960%" y="485" width="0.0180%" height="15" fill="rgb(253,204,25)" fg:x="119624" fg:w="40"/><text x="53.9460%" y="495.50"></text></g><g><title>copy_command (40 samples, 0.02%)</title><rect x="53.6960%" y="469" width="0.0180%" height="15" fill="rgb(232,21,16)" fg:x="119624" fg:w="40"/><text x="53.9460%" y="479.50"></text></g><g><title>copy_command (42 samples, 0.02%)</title><rect x="53.6960%" y="501" width="0.0189%" height="15" fill="rgb(248,90,29)" fg:x="119624" fg:w="42"/><text x="53.9460%" y="511.50"></text></g><g><title>copy_command (44 samples, 0.02%)</title><rect x="53.6960%" y="517" width="0.0198%" height="15" fill="rgb(249,223,7)" fg:x="119624" fg:w="44"/><text x="53.9460%" y="527.50"></text></g><g><title>copy_command (45 samples, 0.02%)</title><rect x="53.6960%" y="549" width="0.0202%" height="15" fill="rgb(231,119,42)" fg:x="119624" fg:w="45"/><text x="53.9460%" y="559.50"></text></g><g><title>copy_command (45 samples, 0.02%)</title><rect x="53.6960%" y="533" width="0.0202%" height="15" fill="rgb(215,41,35)" fg:x="119624" fg:w="45"/><text x="53.9460%" y="543.50"></text></g><g><title>copy_command (48 samples, 0.02%)</title><rect x="53.6951%" y="565" width="0.0215%" height="15" fill="rgb(220,44,45)" fg:x="119622" fg:w="48"/><text x="53.9451%" y="575.50"></text></g><g><title>copy_command (49 samples, 0.02%)</title><rect x="53.6951%" y="581" width="0.0220%" height="15" fill="rgb(253,197,36)" fg:x="119622" fg:w="49"/><text x="53.9451%" y="591.50"></text></g><g><title>copy_command (51 samples, 0.02%)</title><rect x="53.6951%" y="597" width="0.0229%" height="15" fill="rgb(245,225,54)" fg:x="119622" fg:w="51"/><text x="53.9451%" y="607.50"></text></g><g><title>copy_command (52 samples, 0.02%)</title><rect x="53.6951%" y="613" width="0.0233%" height="15" fill="rgb(239,94,37)" fg:x="119622" fg:w="52"/><text x="53.9451%" y="623.50"></text></g><g><title>copy_command (74 samples, 0.03%)</title><rect x="53.6861%" y="645" width="0.0332%" height="15" fill="rgb(242,217,10)" fg:x="119602" fg:w="74"/><text x="53.9361%" y="655.50"></text></g><g><title>copy_command (54 samples, 0.02%)</title><rect x="53.6951%" y="629" width="0.0242%" height="15" fill="rgb(250,193,7)" fg:x="119622" fg:w="54"/><text x="53.9451%" y="639.50"></text></g><g><title>copy_command (76 samples, 0.03%)</title><rect x="53.6857%" y="661" width="0.0341%" height="15" fill="rgb(230,104,19)" fg:x="119601" fg:w="76"/><text x="53.9357%" y="671.50"></text></g><g><title>copy_command (86 samples, 0.04%)</title><rect x="53.6857%" y="677" width="0.0386%" height="15" fill="rgb(230,181,4)" fg:x="119601" fg:w="86"/><text x="53.9357%" y="687.50"></text></g><g><title>copy_command (93 samples, 0.04%)</title><rect x="53.6839%" y="709" width="0.0417%" height="15" fill="rgb(216,219,49)" fg:x="119597" fg:w="93"/><text x="53.9339%" y="719.50"></text></g><g><title>copy_command (91 samples, 0.04%)</title><rect x="53.6848%" y="693" width="0.0408%" height="15" fill="rgb(254,144,0)" fg:x="119599" fg:w="91"/><text x="53.9348%" y="703.50"></text></g><g><title>copy_command (97 samples, 0.04%)</title><rect x="53.6830%" y="725" width="0.0435%" height="15" fill="rgb(205,209,38)" fg:x="119595" fg:w="97"/><text x="53.9330%" y="735.50"></text></g><g><title>copy_command (101 samples, 0.05%)</title><rect x="53.6826%" y="741" width="0.0453%" height="15" fill="rgb(240,21,42)" fg:x="119594" fg:w="101"/><text x="53.9326%" y="751.50"></text></g><g><title>copy_command (105 samples, 0.05%)</title><rect x="53.6821%" y="789" width="0.0471%" height="15" fill="rgb(241,132,3)" fg:x="119593" fg:w="105"/><text x="53.9321%" y="799.50"></text></g><g><title>copy_command (105 samples, 0.05%)</title><rect x="53.6821%" y="773" width="0.0471%" height="15" fill="rgb(225,14,2)" fg:x="119593" fg:w="105"/><text x="53.9321%" y="783.50"></text></g><g><title>copy_command (105 samples, 0.05%)</title><rect x="53.6821%" y="757" width="0.0471%" height="15" fill="rgb(210,141,35)" fg:x="119593" fg:w="105"/><text x="53.9321%" y="767.50"></text></g><g><title>bind_function (109 samples, 0.05%)</title><rect x="53.6812%" y="805" width="0.0489%" height="15" fill="rgb(251,14,44)" fg:x="119591" fg:w="109"/><text x="53.9312%" y="815.50"></text></g><g><title>copy_command (23 samples, 0.01%)</title><rect x="53.7463%" y="277" width="0.0103%" height="15" fill="rgb(247,48,18)" fg:x="119736" fg:w="23"/><text x="53.9963%" y="287.50"></text></g><g><title>copy_command (23 samples, 0.01%)</title><rect x="53.7463%" y="261" width="0.0103%" height="15" fill="rgb(225,0,40)" fg:x="119736" fg:w="23"/><text x="53.9963%" y="271.50"></text></g><g><title>copy_command (23 samples, 0.01%)</title><rect x="53.7463%" y="245" width="0.0103%" height="15" fill="rgb(221,31,33)" fg:x="119736" fg:w="23"/><text x="53.9963%" y="255.50"></text></g><g><title>copy_command (25 samples, 0.01%)</title><rect x="53.7463%" y="293" width="0.0112%" height="15" fill="rgb(237,42,40)" fg:x="119736" fg:w="25"/><text x="53.9963%" y="303.50"></text></g><g><title>copy_command (27 samples, 0.01%)</title><rect x="53.7458%" y="309" width="0.0121%" height="15" fill="rgb(233,51,29)" fg:x="119735" fg:w="27"/><text x="53.9958%" y="319.50"></text></g><g><title>copy_command (33 samples, 0.01%)</title><rect x="53.7445%" y="325" width="0.0148%" height="15" fill="rgb(226,58,20)" fg:x="119732" fg:w="33"/><text x="53.9945%" y="335.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="53.7445%" y="357" width="0.0153%" height="15" fill="rgb(208,98,7)" fg:x="119732" fg:w="34"/><text x="53.9945%" y="367.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="53.7445%" y="341" width="0.0153%" height="15" fill="rgb(228,143,44)" fg:x="119732" fg:w="34"/><text x="53.9945%" y="351.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="53.7445%" y="389" width="0.0157%" height="15" fill="rgb(246,55,38)" fg:x="119732" fg:w="35"/><text x="53.9945%" y="399.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="53.7445%" y="373" width="0.0157%" height="15" fill="rgb(247,87,16)" fg:x="119732" fg:w="35"/><text x="53.9945%" y="383.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="53.7445%" y="421" width="0.0166%" height="15" fill="rgb(234,129,42)" fg:x="119732" fg:w="37"/><text x="53.9945%" y="431.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="53.7445%" y="405" width="0.0166%" height="15" fill="rgb(220,82,16)" fg:x="119732" fg:w="37"/><text x="53.9945%" y="415.50"></text></g><g><title>copy_command (38 samples, 0.02%)</title><rect x="53.7445%" y="437" width="0.0171%" height="15" fill="rgb(211,88,4)" fg:x="119732" fg:w="38"/><text x="53.9945%" y="447.50"></text></g><g><title>copy_command (39 samples, 0.02%)</title><rect x="53.7445%" y="453" width="0.0175%" height="15" fill="rgb(248,151,21)" fg:x="119732" fg:w="39"/><text x="53.9945%" y="463.50"></text></g><g><title>copy_command (40 samples, 0.02%)</title><rect x="53.7445%" y="485" width="0.0180%" height="15" fill="rgb(238,163,6)" fg:x="119732" fg:w="40"/><text x="53.9945%" y="495.50"></text></g><g><title>copy_command (40 samples, 0.02%)</title><rect x="53.7445%" y="469" width="0.0180%" height="15" fill="rgb(209,183,11)" fg:x="119732" fg:w="40"/><text x="53.9945%" y="479.50"></text></g><g><title>copy_command (43 samples, 0.02%)</title><rect x="53.7436%" y="533" width="0.0193%" height="15" fill="rgb(219,37,20)" fg:x="119730" fg:w="43"/><text x="53.9936%" y="543.50"></text></g><g><title>copy_command (43 samples, 0.02%)</title><rect x="53.7436%" y="517" width="0.0193%" height="15" fill="rgb(210,158,4)" fg:x="119730" fg:w="43"/><text x="53.9936%" y="527.50"></text></g><g><title>copy_command (41 samples, 0.02%)</title><rect x="53.7445%" y="501" width="0.0184%" height="15" fill="rgb(221,167,53)" fg:x="119732" fg:w="41"/><text x="53.9945%" y="511.50"></text></g><g><title>copy_command (45 samples, 0.02%)</title><rect x="53.7436%" y="549" width="0.0202%" height="15" fill="rgb(237,151,45)" fg:x="119730" fg:w="45"/><text x="53.9936%" y="559.50"></text></g><g><title>copy_command (47 samples, 0.02%)</title><rect x="53.7432%" y="581" width="0.0211%" height="15" fill="rgb(231,39,3)" fg:x="119729" fg:w="47"/><text x="53.9932%" y="591.50"></text></g><g><title>copy_command (46 samples, 0.02%)</title><rect x="53.7436%" y="565" width="0.0206%" height="15" fill="rgb(212,167,28)" fg:x="119730" fg:w="46"/><text x="53.9936%" y="575.50"></text></g><g><title>copy_command (49 samples, 0.02%)</title><rect x="53.7432%" y="597" width="0.0220%" height="15" fill="rgb(232,178,8)" fg:x="119729" fg:w="49"/><text x="53.9932%" y="607.50"></text></g><g><title>copy_command (51 samples, 0.02%)</title><rect x="53.7427%" y="613" width="0.0229%" height="15" fill="rgb(225,151,20)" fg:x="119728" fg:w="51"/><text x="53.9927%" y="623.50"></text></g><g><title>copy_command (53 samples, 0.02%)</title><rect x="53.7427%" y="629" width="0.0238%" height="15" fill="rgb(238,3,37)" fg:x="119728" fg:w="53"/><text x="53.9927%" y="639.50"></text></g><g><title>copy_command (67 samples, 0.03%)</title><rect x="53.7369%" y="645" width="0.0301%" height="15" fill="rgb(251,147,42)" fg:x="119715" fg:w="67"/><text x="53.9869%" y="655.50"></text></g><g><title>copy_command (68 samples, 0.03%)</title><rect x="53.7369%" y="661" width="0.0305%" height="15" fill="rgb(208,173,10)" fg:x="119715" fg:w="68"/><text x="53.9869%" y="671.50"></text></g><g><title>copy_command (71 samples, 0.03%)</title><rect x="53.7364%" y="677" width="0.0319%" height="15" fill="rgb(246,225,4)" fg:x="119714" fg:w="71"/><text x="53.9864%" y="687.50"></text></g><g><title>copy_command (73 samples, 0.03%)</title><rect x="53.7360%" y="693" width="0.0328%" height="15" fill="rgb(248,102,6)" fg:x="119713" fg:w="73"/><text x="53.9860%" y="703.50"></text></g><g><title>copy_command (81 samples, 0.04%)</title><rect x="53.7342%" y="709" width="0.0364%" height="15" fill="rgb(232,6,21)" fg:x="119709" fg:w="81"/><text x="53.9842%" y="719.50"></text></g><g><title>copy_command (87 samples, 0.04%)</title><rect x="53.7333%" y="725" width="0.0391%" height="15" fill="rgb(221,179,22)" fg:x="119707" fg:w="87"/><text x="53.9833%" y="735.50"></text></g><g><title>copy_command (95 samples, 0.04%)</title><rect x="53.7315%" y="741" width="0.0426%" height="15" fill="rgb(252,50,20)" fg:x="119703" fg:w="95"/><text x="53.9815%" y="751.50"></text></g><g><title>copy_command (98 samples, 0.04%)</title><rect x="53.7306%" y="757" width="0.0440%" height="15" fill="rgb(222,56,38)" fg:x="119701" fg:w="98"/><text x="53.9806%" y="767.50"></text></g><g><title>copy_function_def_contents (99 samples, 0.04%)</title><rect x="53.7306%" y="805" width="0.0444%" height="15" fill="rgb(206,193,29)" fg:x="119701" fg:w="99"/><text x="53.9806%" y="815.50"></text></g><g><title>copy_command (99 samples, 0.04%)</title><rect x="53.7306%" y="789" width="0.0444%" height="15" fill="rgb(239,192,45)" fg:x="119701" fg:w="99"/><text x="53.9806%" y="799.50"></text></g><g><title>copy_command (99 samples, 0.04%)</title><rect x="53.7306%" y="773" width="0.0444%" height="15" fill="rgb(254,18,36)" fg:x="119701" fg:w="99"/><text x="53.9806%" y="783.50"></text></g><g><title>[bash] (24 samples, 0.01%)</title><rect x="53.7759%" y="773" width="0.0108%" height="15" fill="rgb(221,127,11)" fg:x="119802" fg:w="24"/><text x="54.0259%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.03%)</title><rect x="53.8029%" y="629" width="0.0310%" height="15" fill="rgb(234,146,35)" fg:x="119862" fg:w="69"/><text x="54.0529%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.03%)</title><rect x="53.8029%" y="613" width="0.0310%" height="15" fill="rgb(254,201,37)" fg:x="119862" fg:w="69"/><text x="54.0529%" y="623.50"></text></g><g><title>native_write_msr (69 samples, 0.03%)</title><rect x="53.8029%" y="597" width="0.0310%" height="15" fill="rgb(211,202,23)" fg:x="119862" fg:w="69"/><text x="54.0529%" y="607.50"></text></g><g><title>schedule_tail (83 samples, 0.04%)</title><rect x="53.7975%" y="661" width="0.0373%" height="15" fill="rgb(237,91,2)" fg:x="119850" fg:w="83"/><text x="54.0475%" y="671.50"></text></g><g><title>finish_task_switch (75 samples, 0.03%)</title><rect x="53.8011%" y="645" width="0.0337%" height="15" fill="rgb(226,228,36)" fg:x="119858" fg:w="75"/><text x="54.0511%" y="655.50"></text></g><g><title>__libc_fork (95 samples, 0.04%)</title><rect x="53.7925%" y="709" width="0.0426%" height="15" fill="rgb(213,63,50)" fg:x="119839" fg:w="95"/><text x="54.0425%" y="719.50"></text></g><g><title>arch_fork (92 samples, 0.04%)</title><rect x="53.7939%" y="693" width="0.0413%" height="15" fill="rgb(235,194,19)" fg:x="119842" fg:w="92"/><text x="54.0439%" y="703.50"></text></g><g><title>ret_from_fork (84 samples, 0.04%)</title><rect x="53.7975%" y="677" width="0.0377%" height="15" fill="rgb(207,204,18)" fg:x="119850" fg:w="84"/><text x="54.0475%" y="687.50"></text></g><g><title>make_child (98 samples, 0.04%)</title><rect x="53.7925%" y="725" width="0.0440%" height="15" fill="rgb(248,8,7)" fg:x="119839" fg:w="98"/><text x="54.0425%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.03%)</title><rect x="53.8513%" y="597" width="0.0305%" height="15" fill="rgb(223,145,47)" fg:x="119970" fg:w="68"/><text x="54.1013%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.03%)</title><rect x="53.8518%" y="581" width="0.0301%" height="15" fill="rgb(228,84,11)" fg:x="119971" fg:w="67"/><text x="54.1018%" y="591.50"></text></g><g><title>native_write_msr (67 samples, 0.03%)</title><rect x="53.8518%" y="565" width="0.0301%" height="15" fill="rgb(218,76,45)" fg:x="119971" fg:w="67"/><text x="54.1018%" y="575.50"></text></g><g><title>arch_fork (88 samples, 0.04%)</title><rect x="53.8433%" y="661" width="0.0395%" height="15" fill="rgb(223,80,15)" fg:x="119952" fg:w="88"/><text x="54.0933%" y="671.50"></text></g><g><title>ret_from_fork (82 samples, 0.04%)</title><rect x="53.8459%" y="645" width="0.0368%" height="15" fill="rgb(219,218,33)" fg:x="119958" fg:w="82"/><text x="54.0959%" y="655.50"></text></g><g><title>schedule_tail (82 samples, 0.04%)</title><rect x="53.8459%" y="629" width="0.0368%" height="15" fill="rgb(208,51,11)" fg:x="119958" fg:w="82"/><text x="54.0959%" y="639.50"></text></g><g><title>finish_task_switch (72 samples, 0.03%)</title><rect x="53.8504%" y="613" width="0.0323%" height="15" fill="rgb(229,165,39)" fg:x="119968" fg:w="72"/><text x="54.1004%" y="623.50"></text></g><g><title>__libc_fork (92 samples, 0.04%)</title><rect x="53.8424%" y="677" width="0.0413%" height="15" fill="rgb(241,100,24)" fg:x="119950" fg:w="92"/><text x="54.0924%" y="687.50"></text></g><g><title>make_child (94 samples, 0.04%)</title><rect x="53.8424%" y="693" width="0.0422%" height="15" fill="rgb(228,14,23)" fg:x="119950" fg:w="94"/><text x="54.0924%" y="703.50"></text></g><g><title>[bash] (23 samples, 0.01%)</title><rect x="53.8850%" y="677" width="0.0103%" height="15" fill="rgb(247,116,52)" fg:x="120045" fg:w="23"/><text x="54.1350%" y="687.50"></text></g><g><title>parse_and_execute (133 samples, 0.06%)</title><rect x="53.8365%" y="725" width="0.0597%" height="15" fill="rgb(216,149,33)" fg:x="119937" fg:w="133"/><text x="54.0865%" y="735.50"></text></g><g><title>execute_command_internal (131 samples, 0.06%)</title><rect x="53.8374%" y="709" width="0.0588%" height="15" fill="rgb(238,142,29)" fg:x="119939" fg:w="131"/><text x="54.0874%" y="719.50"></text></g><g><title>wait_for (25 samples, 0.01%)</title><rect x="53.8850%" y="693" width="0.0112%" height="15" fill="rgb(224,83,40)" fg:x="120045" fg:w="25"/><text x="54.1350%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.02%)</title><rect x="53.8998%" y="549" width="0.0229%" height="15" fill="rgb(234,165,11)" fg:x="120078" fg:w="51"/><text x="54.1498%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.02%)</title><rect x="53.9007%" y="533" width="0.0220%" height="15" fill="rgb(215,96,23)" fg:x="120080" fg:w="49"/><text x="54.1507%" y="543.50"></text></g><g><title>native_write_msr (48 samples, 0.02%)</title><rect x="53.9012%" y="517" width="0.0215%" height="15" fill="rgb(233,179,26)" fg:x="120081" fg:w="48"/><text x="54.1512%" y="527.50"></text></g><g><title>do_syscall_64 (56 samples, 0.03%)</title><rect x="53.8985%" y="677" width="0.0251%" height="15" fill="rgb(225,129,33)" fg:x="120075" fg:w="56"/><text x="54.1485%" y="687.50"></text></g><g><title>ksys_read (56 samples, 0.03%)</title><rect x="53.8985%" y="661" width="0.0251%" height="15" fill="rgb(237,49,13)" fg:x="120075" fg:w="56"/><text x="54.1485%" y="671.50"></text></g><g><title>vfs_read (56 samples, 0.03%)</title><rect x="53.8985%" y="645" width="0.0251%" height="15" fill="rgb(211,3,31)" fg:x="120075" fg:w="56"/><text x="54.1485%" y="655.50"></text></g><g><title>new_sync_read (55 samples, 0.02%)</title><rect x="53.8989%" y="629" width="0.0247%" height="15" fill="rgb(216,152,19)" fg:x="120076" fg:w="55"/><text x="54.1489%" y="639.50"></text></g><g><title>pipe_read (55 samples, 0.02%)</title><rect x="53.8989%" y="613" width="0.0247%" height="15" fill="rgb(251,121,35)" fg:x="120076" fg:w="55"/><text x="54.1489%" y="623.50"></text></g><g><title>schedule (53 samples, 0.02%)</title><rect x="53.8998%" y="597" width="0.0238%" height="15" fill="rgb(210,217,47)" fg:x="120078" fg:w="53"/><text x="54.1498%" y="607.50"></text></g><g><title>__schedule (53 samples, 0.02%)</title><rect x="53.8998%" y="581" width="0.0238%" height="15" fill="rgb(244,116,22)" fg:x="120078" fg:w="53"/><text x="54.1498%" y="591.50"></text></g><g><title>finish_task_switch (53 samples, 0.02%)</title><rect x="53.8998%" y="565" width="0.0238%" height="15" fill="rgb(228,17,21)" fg:x="120078" fg:w="53"/><text x="54.1498%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.03%)</title><rect x="53.8985%" y="693" width="0.0256%" height="15" fill="rgb(240,149,34)" fg:x="120075" fg:w="57"/><text x="54.1485%" y="703.50"></text></g><g><title>command_substitute (305 samples, 0.14%)</title><rect x="53.7876%" y="741" width="0.1369%" height="15" fill="rgb(208,125,47)" fg:x="119828" fg:w="305"/><text x="54.0376%" y="751.50"></text></g><g><title>zread (58 samples, 0.03%)</title><rect x="53.8985%" y="725" width="0.0260%" height="15" fill="rgb(249,186,39)" fg:x="120075" fg:w="58"/><text x="54.1485%" y="735.50"></text></g><g><title>__GI___libc_read (58 samples, 0.03%)</title><rect x="53.8985%" y="709" width="0.0260%" height="15" fill="rgb(240,220,33)" fg:x="120075" fg:w="58"/><text x="54.1485%" y="719.50"></text></g><g><title>expand_word_leave_quoted (306 samples, 0.14%)</title><rect x="53.7876%" y="773" width="0.1374%" height="15" fill="rgb(243,110,23)" fg:x="119828" fg:w="306"/><text x="54.0376%" y="783.50"></text></g><g><title>[bash] (306 samples, 0.14%)</title><rect x="53.7876%" y="757" width="0.1374%" height="15" fill="rgb(219,163,46)" fg:x="119828" fg:w="306"/><text x="54.0376%" y="767.50"></text></g><g><title>execute_command (341 samples, 0.15%)</title><rect x="53.7755%" y="805" width="0.1531%" height="15" fill="rgb(216,126,30)" fg:x="119801" fg:w="341"/><text x="54.0255%" y="815.50"></text></g><g><title>execute_command_internal (341 samples, 0.15%)</title><rect x="53.7755%" y="789" width="0.1531%" height="15" fill="rgb(208,139,11)" fg:x="119801" fg:w="341"/><text x="54.0255%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (86 samples, 0.04%)</title><rect x="53.9528%" y="613" width="0.0386%" height="15" fill="rgb(213,118,36)" fg:x="120196" fg:w="86"/><text x="54.2028%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (85 samples, 0.04%)</title><rect x="53.9532%" y="597" width="0.0382%" height="15" fill="rgb(226,43,17)" fg:x="120197" fg:w="85"/><text x="54.2032%" y="607.50"></text></g><g><title>native_write_msr (84 samples, 0.04%)</title><rect x="53.9537%" y="581" width="0.0377%" height="15" fill="rgb(254,217,4)" fg:x="120198" fg:w="84"/><text x="54.2037%" y="591.50"></text></g><g><title>arch_fork (113 samples, 0.05%)</title><rect x="53.9411%" y="677" width="0.0507%" height="15" fill="rgb(210,134,47)" fg:x="120170" fg:w="113"/><text x="54.1911%" y="687.50"></text></g><g><title>ret_from_fork (105 samples, 0.05%)</title><rect x="53.9447%" y="661" width="0.0471%" height="15" fill="rgb(237,24,49)" fg:x="120178" fg:w="105"/><text x="54.1947%" y="671.50"></text></g><g><title>schedule_tail (105 samples, 0.05%)</title><rect x="53.9447%" y="645" width="0.0471%" height="15" fill="rgb(251,39,46)" fg:x="120178" fg:w="105"/><text x="54.1947%" y="655.50"></text></g><g><title>finish_task_switch (93 samples, 0.04%)</title><rect x="53.9501%" y="629" width="0.0417%" height="15" fill="rgb(251,220,3)" fg:x="120190" fg:w="93"/><text x="54.2001%" y="639.50"></text></g><g><title>__libc_fork (117 samples, 0.05%)</title><rect x="53.9398%" y="693" width="0.0525%" height="15" fill="rgb(228,105,12)" fg:x="120167" fg:w="117"/><text x="54.1898%" y="703.50"></text></g><g><title>make_child (121 samples, 0.05%)</title><rect x="53.9393%" y="709" width="0.0543%" height="15" fill="rgb(215,196,1)" fg:x="120166" fg:w="121"/><text x="54.1893%" y="719.50"></text></g><g><title>[bash] (25 samples, 0.01%)</title><rect x="53.9959%" y="629" width="0.0112%" height="15" fill="rgb(214,33,39)" fg:x="120292" fg:w="25"/><text x="54.2459%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (139 samples, 0.06%)</title><rect x="54.0309%" y="533" width="0.0624%" height="15" fill="rgb(220,19,52)" fg:x="120370" fg:w="139"/><text x="54.2809%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (136 samples, 0.06%)</title><rect x="54.0322%" y="517" width="0.0610%" height="15" fill="rgb(221,78,38)" fg:x="120373" fg:w="136"/><text x="54.2822%" y="527.50"></text></g><g><title>native_write_msr (136 samples, 0.06%)</title><rect x="54.0322%" y="501" width="0.0610%" height="15" fill="rgb(253,30,16)" fg:x="120373" fg:w="136"/><text x="54.2822%" y="511.50"></text></g><g><title>schedule_tail (164 samples, 0.07%)</title><rect x="54.0201%" y="565" width="0.0736%" height="15" fill="rgb(242,65,0)" fg:x="120346" fg:w="164"/><text x="54.2701%" y="575.50"></text></g><g><title>finish_task_switch (153 samples, 0.07%)</title><rect x="54.0250%" y="549" width="0.0687%" height="15" fill="rgb(235,201,12)" fg:x="120357" fg:w="153"/><text x="54.2750%" y="559.50"></text></g><g><title>arch_fork (177 samples, 0.08%)</title><rect x="54.0147%" y="597" width="0.0795%" height="15" fill="rgb(233,161,9)" fg:x="120334" fg:w="177"/><text x="54.2647%" y="607.50"></text></g><g><title>ret_from_fork (165 samples, 0.07%)</title><rect x="54.0201%" y="581" width="0.0741%" height="15" fill="rgb(241,207,41)" fg:x="120346" fg:w="165"/><text x="54.2701%" y="591.50"></text></g><g><title>__libc_fork (182 samples, 0.08%)</title><rect x="54.0138%" y="613" width="0.0817%" height="15" fill="rgb(212,69,46)" fg:x="120332" fg:w="182"/><text x="54.2638%" y="623.50"></text></g><g><title>make_child (185 samples, 0.08%)</title><rect x="54.0138%" y="629" width="0.0830%" height="15" fill="rgb(239,69,45)" fg:x="120332" fg:w="185"/><text x="54.2638%" y="639.50"></text></g><g><title>schedule (34 samples, 0.02%)</title><rect x="54.0978%" y="517" width="0.0153%" height="15" fill="rgb(242,117,48)" fg:x="120519" fg:w="34"/><text x="54.3478%" y="527.50"></text></g><g><title>__schedule (34 samples, 0.02%)</title><rect x="54.0978%" y="501" width="0.0153%" height="15" fill="rgb(228,41,36)" fg:x="120519" fg:w="34"/><text x="54.3478%" y="511.50"></text></g><g><title>finish_task_switch (34 samples, 0.02%)</title><rect x="54.0978%" y="485" width="0.0153%" height="15" fill="rgb(212,3,32)" fg:x="120519" fg:w="34"/><text x="54.3478%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.01%)</title><rect x="54.0987%" y="469" width="0.0144%" height="15" fill="rgb(233,41,49)" fg:x="120521" fg:w="32"/><text x="54.3487%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.01%)</title><rect x="54.0991%" y="453" width="0.0139%" height="15" fill="rgb(252,170,49)" fg:x="120522" fg:w="31"/><text x="54.3491%" y="463.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="54.0996%" y="437" width="0.0135%" height="15" fill="rgb(229,53,26)" fg:x="120523" fg:w="30"/><text x="54.3496%" y="447.50"></text></g><g><title>__GI___wait4 (38 samples, 0.02%)</title><rect x="54.0973%" y="597" width="0.0171%" height="15" fill="rgb(217,157,12)" fg:x="120518" fg:w="38"/><text x="54.3473%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="54.0973%" y="581" width="0.0171%" height="15" fill="rgb(227,17,9)" fg:x="120518" fg:w="38"/><text x="54.3473%" y="591.50"></text></g><g><title>do_syscall_64 (38 samples, 0.02%)</title><rect x="54.0973%" y="565" width="0.0171%" height="15" fill="rgb(218,84,12)" fg:x="120518" fg:w="38"/><text x="54.3473%" y="575.50"></text></g><g><title>kernel_wait4 (38 samples, 0.02%)</title><rect x="54.0973%" y="549" width="0.0171%" height="15" fill="rgb(212,79,24)" fg:x="120518" fg:w="38"/><text x="54.3473%" y="559.50"></text></g><g><title>do_wait (38 samples, 0.02%)</title><rect x="54.0973%" y="533" width="0.0171%" height="15" fill="rgb(217,222,37)" fg:x="120518" fg:w="38"/><text x="54.3473%" y="543.50"></text></g><g><title>[bash] (40 samples, 0.02%)</title><rect x="54.0973%" y="613" width="0.0180%" height="15" fill="rgb(246,208,8)" fg:x="120518" fg:w="40"/><text x="54.3473%" y="623.50"></text></g><g><title>execute_command_internal (271 samples, 0.12%)</title><rect x="53.9945%" y="693" width="0.1216%" height="15" fill="rgb(244,133,10)" fg:x="120289" fg:w="271"/><text x="54.2445%" y="703.50"></text></g><g><title>[bash] (271 samples, 0.12%)</title><rect x="53.9945%" y="677" width="0.1216%" height="15" fill="rgb(209,219,41)" fg:x="120289" fg:w="271"/><text x="54.2445%" y="687.50"></text></g><g><title>[bash] (271 samples, 0.12%)</title><rect x="53.9945%" y="661" width="0.1216%" height="15" fill="rgb(253,175,45)" fg:x="120289" fg:w="271"/><text x="54.2445%" y="671.50"></text></g><g><title>execute_command_internal (268 samples, 0.12%)</title><rect x="53.9959%" y="645" width="0.1203%" height="15" fill="rgb(235,100,37)" fg:x="120292" fg:w="268"/><text x="54.2459%" y="655.50"></text></g><g><title>wait_for (42 samples, 0.02%)</title><rect x="54.0973%" y="629" width="0.0189%" height="15" fill="rgb(225,87,19)" fg:x="120518" fg:w="42"/><text x="54.3473%" y="639.50"></text></g><g><title>parse_and_execute (274 samples, 0.12%)</title><rect x="53.9936%" y="709" width="0.1230%" height="15" fill="rgb(217,152,17)" fg:x="120287" fg:w="274"/><text x="54.2436%" y="719.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="54.1180%" y="661" width="0.0103%" height="15" fill="rgb(235,72,13)" fg:x="120564" fg:w="23"/><text x="54.3680%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.01%)</title><rect x="54.1180%" y="677" width="0.0108%" height="15" fill="rgb(233,140,18)" fg:x="120564" fg:w="24"/><text x="54.3680%" y="687.50"></text></g><g><title>command_substitute (437 samples, 0.20%)</title><rect x="53.9335%" y="725" width="0.1962%" height="15" fill="rgb(207,212,28)" fg:x="120153" fg:w="437"/><text x="54.1835%" y="735.50"></text></g><g><title>zread (26 samples, 0.01%)</title><rect x="54.1180%" y="709" width="0.0117%" height="15" fill="rgb(220,130,25)" fg:x="120564" fg:w="26"/><text x="54.3680%" y="719.50"></text></g><g><title>__GI___libc_read (26 samples, 0.01%)</title><rect x="54.1180%" y="693" width="0.0117%" height="15" fill="rgb(205,55,34)" fg:x="120564" fg:w="26"/><text x="54.3680%" y="703.50"></text></g><g><title>[bash] (447 samples, 0.20%)</title><rect x="53.9294%" y="741" width="0.2006%" height="15" fill="rgb(237,54,35)" fg:x="120144" fg:w="447"/><text x="54.1794%" y="751.50"></text></g><g><title>[bash] (451 samples, 0.20%)</title><rect x="53.9294%" y="757" width="0.2024%" height="15" fill="rgb(208,67,23)" fg:x="120144" fg:w="451"/><text x="54.1794%" y="767.50"></text></g><g><title>[bash] (456 samples, 0.20%)</title><rect x="53.9285%" y="773" width="0.2047%" height="15" fill="rgb(206,207,50)" fg:x="120142" fg:w="456"/><text x="54.1785%" y="783.50"></text></g><g><title>expand_words (463 samples, 0.21%)</title><rect x="53.9285%" y="805" width="0.2078%" height="15" fill="rgb(213,211,42)" fg:x="120142" fg:w="463"/><text x="54.1785%" y="815.50"></text></g><g><title>[bash] (463 samples, 0.21%)</title><rect x="53.9285%" y="789" width="0.2078%" height="15" fill="rgb(252,197,50)" fg:x="120142" fg:w="463"/><text x="54.1785%" y="799.50"></text></g><g><title>execute_command_internal (1,238 samples, 0.56%)</title><rect x="53.5820%" y="821" width="0.5557%" height="15" fill="rgb(251,211,41)" fg:x="119370" fg:w="1238"/><text x="53.8320%" y="831.50"></text></g><g><title>execute_command (1,241 samples, 0.56%)</title><rect x="53.5816%" y="837" width="0.5571%" height="15" fill="rgb(229,211,5)" fg:x="119369" fg:w="1241"/><text x="53.8316%" y="847.50"></text></g><g><title>[bash] (54 samples, 0.02%)</title><rect x="54.3065%" y="757" width="0.0242%" height="15" fill="rgb(239,36,31)" fg:x="120984" fg:w="54"/><text x="54.5565%" y="767.50"></text></g><g><title>buffered_getchar (73 samples, 0.03%)</title><rect x="54.3321%" y="757" width="0.0328%" height="15" fill="rgb(248,67,31)" fg:x="121041" fg:w="73"/><text x="54.5821%" y="767.50"></text></g><g><title>[bash] (311 samples, 0.14%)</title><rect x="54.2284%" y="773" width="0.1396%" height="15" fill="rgb(249,55,44)" fg:x="120810" fg:w="311"/><text x="54.4784%" y="783.50"></text></g><g><title>[bash] (528 samples, 0.24%)</title><rect x="54.1741%" y="789" width="0.2370%" height="15" fill="rgb(216,82,12)" fg:x="120689" fg:w="528"/><text x="54.4241%" y="799.50"></text></g><g><title>make_simple_command (28 samples, 0.01%)</title><rect x="54.4201%" y="789" width="0.0126%" height="15" fill="rgb(242,174,1)" fg:x="121237" fg:w="28"/><text x="54.6701%" y="799.50"></text></g><g><title>xmalloc (25 samples, 0.01%)</title><rect x="54.4214%" y="773" width="0.0112%" height="15" fill="rgb(208,120,29)" fg:x="121240" fg:w="25"/><text x="54.6714%" y="783.50"></text></g><g><title>__GI___libc_malloc (24 samples, 0.01%)</title><rect x="54.4219%" y="757" width="0.0108%" height="15" fill="rgb(221,105,43)" fg:x="121241" fg:w="24"/><text x="54.6719%" y="767.50"></text></g><g><title>reader_loop (1,927 samples, 0.86%)</title><rect x="53.5690%" y="853" width="0.8650%" height="15" fill="rgb(234,124,22)" fg:x="119341" fg:w="1927"/><text x="53.8190%" y="863.50"></text></g><g><title>read_command (658 samples, 0.30%)</title><rect x="54.1386%" y="837" width="0.2954%" height="15" fill="rgb(212,23,30)" fg:x="120610" fg:w="658"/><text x="54.3886%" y="847.50"></text></g><g><title>parse_command (658 samples, 0.30%)</title><rect x="54.1386%" y="821" width="0.2954%" height="15" fill="rgb(219,122,53)" fg:x="120610" fg:w="658"/><text x="54.3886%" y="831.50"></text></g><g><title>yyparse (658 samples, 0.30%)</title><rect x="54.1386%" y="805" width="0.2954%" height="15" fill="rgb(248,84,24)" fg:x="120610" fg:w="658"/><text x="54.3886%" y="815.50"></text></g><g><title>__libc_start_main (1,945 samples, 0.87%)</title><rect x="53.5645%" y="885" width="0.8731%" height="15" fill="rgb(245,115,18)" fg:x="119331" fg:w="1945"/><text x="53.8145%" y="895.50"></text></g><g><title>main (1,945 samples, 0.87%)</title><rect x="53.5645%" y="869" width="0.8731%" height="15" fill="rgb(227,176,51)" fg:x="119331" fg:w="1945"/><text x="53.8145%" y="879.50"></text></g><g><title>_start (1,967 samples, 0.88%)</title><rect x="53.5645%" y="901" width="0.8829%" height="15" fill="rgb(229,63,42)" fg:x="119331" fg:w="1967"/><text x="53.8145%" y="911.50"></text></g><g><title>asm_exc_page_fault (42 samples, 0.02%)</title><rect x="54.4474%" y="901" width="0.0189%" height="15" fill="rgb(247,202,24)" fg:x="121298" fg:w="42"/><text x="54.6974%" y="911.50"></text></g><g><title>mmput (44 samples, 0.02%)</title><rect x="54.4717%" y="821" width="0.0198%" height="15" fill="rgb(244,173,20)" fg:x="121352" fg:w="44"/><text x="54.7217%" y="831.50"></text></g><g><title>exit_mmap (44 samples, 0.02%)</title><rect x="54.4717%" y="805" width="0.0198%" height="15" fill="rgb(242,81,47)" fg:x="121352" fg:w="44"/><text x="54.7217%" y="815.50"></text></g><g><title>__x64_sys_exit_group (47 samples, 0.02%)</title><rect x="54.4717%" y="869" width="0.0211%" height="15" fill="rgb(231,185,54)" fg:x="121352" fg:w="47"/><text x="54.7217%" y="879.50"></text></g><g><title>do_group_exit (47 samples, 0.02%)</title><rect x="54.4717%" y="853" width="0.0211%" height="15" fill="rgb(243,55,32)" fg:x="121352" fg:w="47"/><text x="54.7217%" y="863.50"></text></g><g><title>do_exit (47 samples, 0.02%)</title><rect x="54.4717%" y="837" width="0.0211%" height="15" fill="rgb(208,167,19)" fg:x="121352" fg:w="47"/><text x="54.7217%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.03%)</title><rect x="54.4663%" y="901" width="0.0269%" height="15" fill="rgb(231,72,35)" fg:x="121340" fg:w="60"/><text x="54.7163%" y="911.50"></text></g><g><title>do_syscall_64 (60 samples, 0.03%)</title><rect x="54.4663%" y="885" width="0.0269%" height="15" fill="rgb(250,173,51)" fg:x="121340" fg:w="60"/><text x="54.7163%" y="895.50"></text></g><g><title>libtool (2,576 samples, 1.16%)</title><rect x="53.3383%" y="917" width="1.1563%" height="15" fill="rgb(209,5,22)" fg:x="118827" fg:w="2576"/><text x="53.5883%" y="927.50"></text></g><g><title>copy_tree (28 samples, 0.01%)</title><rect x="54.5345%" y="725" width="0.0126%" height="15" fill="rgb(250,174,19)" fg:x="121492" fg:w="28"/><text x="54.7845%" y="735.50"></text></g><g><title>clone_mnt (23 samples, 0.01%)</title><rect x="54.5368%" y="709" width="0.0103%" height="15" fill="rgb(217,3,49)" fg:x="121497" fg:w="23"/><text x="54.7868%" y="719.50"></text></g><g><title>copy_namespaces (53 samples, 0.02%)</title><rect x="54.5242%" y="773" width="0.0238%" height="15" fill="rgb(218,225,5)" fg:x="121469" fg:w="53"/><text x="54.7742%" y="783.50"></text></g><g><title>create_new_namespaces (53 samples, 0.02%)</title><rect x="54.5242%" y="757" width="0.0238%" height="15" fill="rgb(236,89,11)" fg:x="121469" fg:w="53"/><text x="54.7742%" y="767.50"></text></g><g><title>copy_mnt_ns (33 samples, 0.01%)</title><rect x="54.5332%" y="741" width="0.0148%" height="15" fill="rgb(206,33,28)" fg:x="121489" fg:w="33"/><text x="54.7832%" y="751.50"></text></g><g><title>dup_mm (45 samples, 0.02%)</title><rect x="54.5484%" y="773" width="0.0202%" height="15" fill="rgb(241,56,42)" fg:x="121523" fg:w="45"/><text x="54.7984%" y="783.50"></text></g><g><title>copy_process (127 samples, 0.06%)</title><rect x="54.5170%" y="789" width="0.0570%" height="15" fill="rgb(222,44,11)" fg:x="121453" fg:w="127"/><text x="54.7670%" y="799.50"></text></g><g><title>__libc_start_main (131 samples, 0.06%)</title><rect x="54.5166%" y="885" width="0.0588%" height="15" fill="rgb(234,111,20)" fg:x="121452" fg:w="131"/><text x="54.7666%" y="895.50"></text></g><g><title>__GI___clone (131 samples, 0.06%)</title><rect x="54.5166%" y="869" width="0.0588%" height="15" fill="rgb(237,77,6)" fg:x="121452" fg:w="131"/><text x="54.7666%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (131 samples, 0.06%)</title><rect x="54.5166%" y="853" width="0.0588%" height="15" fill="rgb(235,111,23)" fg:x="121452" fg:w="131"/><text x="54.7666%" y="863.50"></text></g><g><title>do_syscall_64 (130 samples, 0.06%)</title><rect x="54.5170%" y="837" width="0.0584%" height="15" fill="rgb(251,135,29)" fg:x="121453" fg:w="130"/><text x="54.7670%" y="847.50"></text></g><g><title>__do_sys_clone (130 samples, 0.06%)</title><rect x="54.5170%" y="821" width="0.0584%" height="15" fill="rgb(217,57,1)" fg:x="121453" fg:w="130"/><text x="54.7670%" y="831.50"></text></g><g><title>kernel_clone (130 samples, 0.06%)</title><rect x="54.5170%" y="805" width="0.0584%" height="15" fill="rgb(249,119,31)" fg:x="121453" fg:w="130"/><text x="54.7670%" y="815.50"></text></g><g><title>[unknown] (145 samples, 0.07%)</title><rect x="54.5139%" y="901" width="0.0651%" height="15" fill="rgb(233,164,33)" fg:x="121446" fg:w="145"/><text x="54.7639%" y="911.50"></text></g><g><title>ClearSignalMask (26 samples, 0.01%)</title><rect x="54.5790%" y="869" width="0.0117%" height="15" fill="rgb(250,217,43)" fg:x="121591" fg:w="26"/><text x="54.8290%" y="879.50"></text></g><g><title>btrfs_search_slot (27 samples, 0.01%)</title><rect x="54.6036%" y="693" width="0.0121%" height="15" fill="rgb(232,154,50)" fg:x="121646" fg:w="27"/><text x="54.8536%" y="703.50"></text></g><g><title>btrfs_insert_dir_item (43 samples, 0.02%)</title><rect x="54.6014%" y="741" width="0.0193%" height="15" fill="rgb(227,190,8)" fg:x="121641" fg:w="43"/><text x="54.8514%" y="751.50"></text></g><g><title>insert_with_overflow (40 samples, 0.02%)</title><rect x="54.6027%" y="725" width="0.0180%" height="15" fill="rgb(209,217,32)" fg:x="121644" fg:w="40"/><text x="54.8527%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (39 samples, 0.02%)</title><rect x="54.6032%" y="709" width="0.0175%" height="15" fill="rgb(243,203,50)" fg:x="121645" fg:w="39"/><text x="54.8532%" y="719.50"></text></g><g><title>btrfs_add_link (47 samples, 0.02%)</title><rect x="54.6014%" y="757" width="0.0211%" height="15" fill="rgb(232,152,27)" fg:x="121641" fg:w="47"/><text x="54.8514%" y="767.50"></text></g><g><title>btrfs_new_inode (38 samples, 0.02%)</title><rect x="54.6247%" y="757" width="0.0171%" height="15" fill="rgb(240,34,29)" fg:x="121693" fg:w="38"/><text x="54.8747%" y="767.50"></text></g><g><title>do_syscall_64 (109 samples, 0.05%)</title><rect x="54.5965%" y="821" width="0.0489%" height="15" fill="rgb(215,185,52)" fg:x="121630" fg:w="109"/><text x="54.8465%" y="831.50"></text></g><g><title>do_mkdirat (109 samples, 0.05%)</title><rect x="54.5965%" y="805" width="0.0489%" height="15" fill="rgb(240,89,49)" fg:x="121630" fg:w="109"/><text x="54.8465%" y="815.50"></text></g><g><title>vfs_mkdir (103 samples, 0.05%)</title><rect x="54.5992%" y="789" width="0.0462%" height="15" fill="rgb(225,12,52)" fg:x="121636" fg:w="103"/><text x="54.8492%" y="799.50"></text></g><g><title>btrfs_mkdir (101 samples, 0.05%)</title><rect x="54.6001%" y="773" width="0.0453%" height="15" fill="rgb(239,128,45)" fg:x="121638" fg:w="101"/><text x="54.8501%" y="783.50"></text></g><g><title>__GI___mkdir (111 samples, 0.05%)</title><rect x="54.5960%" y="853" width="0.0498%" height="15" fill="rgb(211,78,47)" fg:x="121629" fg:w="111"/><text x="54.8460%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.05%)</title><rect x="54.5965%" y="837" width="0.0494%" height="15" fill="rgb(232,31,21)" fg:x="121630" fg:w="110"/><text x="54.8465%" y="847.50"></text></g><g><title>btrfs_lookup_dir_item (25 samples, 0.01%)</title><rect x="54.6481%" y="677" width="0.0112%" height="15" fill="rgb(222,168,14)" fg:x="121745" fg:w="25"/><text x="54.8981%" y="687.50"></text></g><g><title>btrfs_search_slot (25 samples, 0.01%)</title><rect x="54.6481%" y="661" width="0.0112%" height="15" fill="rgb(209,128,24)" fg:x="121745" fg:w="25"/><text x="54.8981%" y="671.50"></text></g><g><title>btrfs_lookup (27 samples, 0.01%)</title><rect x="54.6476%" y="709" width="0.0121%" height="15" fill="rgb(249,35,13)" fg:x="121744" fg:w="27"/><text x="54.8976%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (27 samples, 0.01%)</title><rect x="54.6476%" y="693" width="0.0121%" height="15" fill="rgb(218,7,2)" fg:x="121744" fg:w="27"/><text x="54.8976%" y="703.50"></text></g><g><title>__lookup_slow (30 samples, 0.01%)</title><rect x="54.6476%" y="725" width="0.0135%" height="15" fill="rgb(238,107,27)" fg:x="121744" fg:w="30"/><text x="54.8976%" y="735.50"></text></g><g><title>filename_lookup (35 samples, 0.02%)</title><rect x="54.6463%" y="773" width="0.0157%" height="15" fill="rgb(217,88,38)" fg:x="121741" fg:w="35"/><text x="54.8963%" y="783.50"></text></g><g><title>path_lookupat (35 samples, 0.02%)</title><rect x="54.6463%" y="757" width="0.0157%" height="15" fill="rgb(230,207,0)" fg:x="121741" fg:w="35"/><text x="54.8963%" y="767.50"></text></g><g><title>walk_component (32 samples, 0.01%)</title><rect x="54.6476%" y="741" width="0.0144%" height="15" fill="rgb(249,64,54)" fg:x="121744" fg:w="32"/><text x="54.8976%" y="751.50"></text></g><g><title>CreateTarget (162 samples, 0.07%)</title><rect x="54.5906%" y="869" width="0.0727%" height="15" fill="rgb(231,7,11)" fg:x="121617" fg:w="162"/><text x="54.8406%" y="879.50"></text></g><g><title>__GI___xstat (38 samples, 0.02%)</title><rect x="54.6463%" y="853" width="0.0171%" height="15" fill="rgb(205,149,21)" fg:x="121741" fg:w="38"/><text x="54.8963%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="54.6463%" y="837" width="0.0171%" height="15" fill="rgb(215,126,34)" fg:x="121741" fg:w="38"/><text x="54.8963%" y="847.50"></text></g><g><title>do_syscall_64 (38 samples, 0.02%)</title><rect x="54.6463%" y="821" width="0.0171%" height="15" fill="rgb(241,132,45)" fg:x="121741" fg:w="38"/><text x="54.8963%" y="831.50"></text></g><g><title>__do_sys_newstat (38 samples, 0.02%)</title><rect x="54.6463%" y="805" width="0.0171%" height="15" fill="rgb(252,69,32)" fg:x="121741" fg:w="38"/><text x="54.8963%" y="815.50"></text></g><g><title>vfs_statx (38 samples, 0.02%)</title><rect x="54.6463%" y="789" width="0.0171%" height="15" fill="rgb(232,204,19)" fg:x="121741" fg:w="38"/><text x="54.8963%" y="799.50"></text></g><g><title>WriteFile (30 samples, 0.01%)</title><rect x="54.6642%" y="869" width="0.0135%" height="15" fill="rgb(249,15,47)" fg:x="121781" fg:w="30"/><text x="54.9142%" y="879.50"></text></g><g><title>__GI___link (43 samples, 0.02%)</title><rect x="54.6777%" y="869" width="0.0193%" height="15" fill="rgb(209,227,23)" fg:x="121811" fg:w="43"/><text x="54.9277%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.02%)</title><rect x="54.6777%" y="853" width="0.0193%" height="15" fill="rgb(248,92,24)" fg:x="121811" fg:w="43"/><text x="54.9277%" y="863.50"></text></g><g><title>do_syscall_64 (43 samples, 0.02%)</title><rect x="54.6777%" y="837" width="0.0193%" height="15" fill="rgb(247,59,2)" fg:x="121811" fg:w="43"/><text x="54.9277%" y="847.50"></text></g><g><title>__x64_sys_link (43 samples, 0.02%)</title><rect x="54.6777%" y="821" width="0.0193%" height="15" fill="rgb(221,30,5)" fg:x="121811" fg:w="43"/><text x="54.9277%" y="831.50"></text></g><g><title>do_linkat (43 samples, 0.02%)</title><rect x="54.6777%" y="805" width="0.0193%" height="15" fill="rgb(208,108,53)" fg:x="121811" fg:w="43"/><text x="54.9277%" y="815.50"></text></g><g><title>vfs_link (23 samples, 0.01%)</title><rect x="54.6867%" y="789" width="0.0103%" height="15" fill="rgb(211,183,26)" fg:x="121831" fg:w="23"/><text x="54.9367%" y="799.50"></text></g><g><title>btrfs_link (23 samples, 0.01%)</title><rect x="54.6867%" y="773" width="0.0103%" height="15" fill="rgb(232,132,4)" fg:x="121831" fg:w="23"/><text x="54.9367%" y="783.50"></text></g><g><title>__btrfs_unlink_inode (38 samples, 0.02%)</title><rect x="54.7011%" y="773" width="0.0171%" height="15" fill="rgb(253,128,37)" fg:x="121863" fg:w="38"/><text x="54.9511%" y="783.50"></text></g><g><title>btrfs_lookup_dir_item (24 samples, 0.01%)</title><rect x="54.7073%" y="757" width="0.0108%" height="15" fill="rgb(221,58,24)" fg:x="121877" fg:w="24"/><text x="54.9573%" y="767.50"></text></g><g><title>btrfs_search_slot (24 samples, 0.01%)</title><rect x="54.7073%" y="741" width="0.0108%" height="15" fill="rgb(230,54,45)" fg:x="121877" fg:w="24"/><text x="54.9573%" y="751.50"></text></g><g><title>btrfs_rmdir (50 samples, 0.02%)</title><rect x="54.7011%" y="789" width="0.0224%" height="15" fill="rgb(254,21,18)" fg:x="121863" fg:w="50"/><text x="54.9511%" y="799.50"></text></g><g><title>__GI___rmdir (104 samples, 0.05%)</title><rect x="54.6993%" y="869" width="0.0467%" height="15" fill="rgb(221,108,0)" fg:x="121859" fg:w="104"/><text x="54.9493%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.05%)</title><rect x="54.6993%" y="853" width="0.0467%" height="15" fill="rgb(206,95,1)" fg:x="121859" fg:w="104"/><text x="54.9493%" y="863.50"></text></g><g><title>do_syscall_64 (104 samples, 0.05%)</title><rect x="54.6993%" y="837" width="0.0467%" height="15" fill="rgb(237,52,5)" fg:x="121859" fg:w="104"/><text x="54.9493%" y="847.50"></text></g><g><title>do_rmdir (104 samples, 0.05%)</title><rect x="54.6993%" y="821" width="0.0467%" height="15" fill="rgb(218,150,34)" fg:x="121859" fg:w="104"/><text x="54.9493%" y="831.50"></text></g><g><title>vfs_rmdir.part.0 (100 samples, 0.04%)</title><rect x="54.7011%" y="805" width="0.0449%" height="15" fill="rgb(235,194,28)" fg:x="121863" fg:w="100"/><text x="54.9511%" y="815.50"></text></g><g><title>evict (48 samples, 0.02%)</title><rect x="54.7244%" y="789" width="0.0215%" height="15" fill="rgb(245,92,18)" fg:x="121915" fg:w="48"/><text x="54.9744%" y="799.50"></text></g><g><title>btrfs_evict_inode (48 samples, 0.02%)</title><rect x="54.7244%" y="773" width="0.0215%" height="15" fill="rgb(253,203,53)" fg:x="121915" fg:w="48"/><text x="54.9744%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (269 samples, 0.12%)</title><rect x="54.7563%" y="741" width="0.1207%" height="15" fill="rgb(249,185,47)" fg:x="121986" fg:w="269"/><text x="55.0063%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (265 samples, 0.12%)</title><rect x="54.7581%" y="725" width="0.1190%" height="15" fill="rgb(252,194,52)" fg:x="121990" fg:w="265"/><text x="55.0081%" y="735.50"></text></g><g><title>native_write_msr (265 samples, 0.12%)</title><rect x="54.7581%" y="709" width="0.1190%" height="15" fill="rgb(210,53,36)" fg:x="121990" fg:w="265"/><text x="55.0081%" y="719.50"></text></g><g><title>finish_task_switch (282 samples, 0.13%)</title><rect x="54.7540%" y="757" width="0.1266%" height="15" fill="rgb(237,37,25)" fg:x="121981" fg:w="282"/><text x="55.0040%" y="767.50"></text></g><g><title>schedule (288 samples, 0.13%)</title><rect x="54.7518%" y="789" width="0.1293%" height="15" fill="rgb(242,116,27)" fg:x="121976" fg:w="288"/><text x="55.0018%" y="799.50"></text></g><g><title>__schedule (286 samples, 0.13%)</title><rect x="54.7527%" y="773" width="0.1284%" height="15" fill="rgb(213,185,26)" fg:x="121978" fg:w="286"/><text x="55.0027%" y="783.50"></text></g><g><title>release_task (27 samples, 0.01%)</title><rect x="54.8855%" y="773" width="0.0121%" height="15" fill="rgb(225,204,8)" fg:x="122274" fg:w="27"/><text x="55.1355%" y="783.50"></text></g><g><title>__GI___wait4 (331 samples, 0.15%)</title><rect x="54.7500%" y="869" width="0.1486%" height="15" fill="rgb(254,111,37)" fg:x="121972" fg:w="331"/><text x="55.0000%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (328 samples, 0.15%)</title><rect x="54.7513%" y="853" width="0.1472%" height="15" fill="rgb(242,35,9)" fg:x="121975" fg:w="328"/><text x="55.0013%" y="863.50"></text></g><g><title>do_syscall_64 (328 samples, 0.15%)</title><rect x="54.7513%" y="837" width="0.1472%" height="15" fill="rgb(232,138,49)" fg:x="121975" fg:w="328"/><text x="55.0013%" y="847.50"></text></g><g><title>kernel_wait4 (328 samples, 0.15%)</title><rect x="54.7513%" y="821" width="0.1472%" height="15" fill="rgb(247,56,4)" fg:x="121975" fg:w="328"/><text x="55.0013%" y="831.50"></text></g><g><title>do_wait (328 samples, 0.15%)</title><rect x="54.7513%" y="805" width="0.1472%" height="15" fill="rgb(226,179,17)" fg:x="121975" fg:w="328"/><text x="55.0013%" y="815.50"></text></g><g><title>wait_consider_task (39 samples, 0.02%)</title><rect x="54.8810%" y="789" width="0.0175%" height="15" fill="rgb(216,163,45)" fg:x="122264" fg:w="39"/><text x="55.1310%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="54.9322%" y="677" width="0.0162%" height="15" fill="rgb(211,157,3)" fg:x="122378" fg:w="36"/><text x="55.1822%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="54.9322%" y="661" width="0.0162%" height="15" fill="rgb(234,44,20)" fg:x="122378" fg:w="36"/><text x="55.1822%" y="671.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="54.9322%" y="645" width="0.0162%" height="15" fill="rgb(254,138,23)" fg:x="122378" fg:w="36"/><text x="55.1822%" y="655.50"></text></g><g><title>finish_task_switch (38 samples, 0.02%)</title><rect x="54.9322%" y="693" width="0.0171%" height="15" fill="rgb(206,119,39)" fg:x="122378" fg:w="38"/><text x="55.1822%" y="703.50"></text></g><g><title>sched_exec (42 samples, 0.02%)</title><rect x="54.9309%" y="757" width="0.0189%" height="15" fill="rgb(231,105,52)" fg:x="122375" fg:w="42"/><text x="55.1809%" y="767.50"></text></g><g><title>stop_one_cpu (42 samples, 0.02%)</title><rect x="54.9309%" y="741" width="0.0189%" height="15" fill="rgb(250,20,5)" fg:x="122375" fg:w="42"/><text x="55.1809%" y="751.50"></text></g><g><title>_cond_resched (40 samples, 0.02%)</title><rect x="54.9318%" y="725" width="0.0180%" height="15" fill="rgb(215,198,30)" fg:x="122377" fg:w="40"/><text x="55.1818%" y="735.50"></text></g><g><title>__schedule (40 samples, 0.02%)</title><rect x="54.9318%" y="709" width="0.0180%" height="15" fill="rgb(246,142,8)" fg:x="122377" fg:w="40"/><text x="55.1818%" y="719.50"></text></g><g><title>bprm_execve (92 samples, 0.04%)</title><rect x="54.9156%" y="773" width="0.0413%" height="15" fill="rgb(243,26,38)" fg:x="122341" fg:w="92"/><text x="55.1656%" y="783.50"></text></g><g><title>__execvpe_common (106 samples, 0.05%)</title><rect x="54.9125%" y="869" width="0.0476%" height="15" fill="rgb(205,133,28)" fg:x="122334" fg:w="106"/><text x="55.1625%" y="879.50"></text></g><g><title>__GI_execve (102 samples, 0.05%)</title><rect x="54.9143%" y="853" width="0.0458%" height="15" fill="rgb(212,34,0)" fg:x="122338" fg:w="102"/><text x="55.1643%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.05%)</title><rect x="54.9143%" y="837" width="0.0458%" height="15" fill="rgb(251,226,22)" fg:x="122338" fg:w="102"/><text x="55.1643%" y="847.50"></text></g><g><title>do_syscall_64 (102 samples, 0.05%)</title><rect x="54.9143%" y="821" width="0.0458%" height="15" fill="rgb(252,119,9)" fg:x="122338" fg:w="102"/><text x="55.1643%" y="831.50"></text></g><g><title>__x64_sys_execve (102 samples, 0.05%)</title><rect x="54.9143%" y="805" width="0.0458%" height="15" fill="rgb(213,150,50)" fg:x="122338" fg:w="102"/><text x="55.1643%" y="815.50"></text></g><g><title>do_execveat_common (102 samples, 0.05%)</title><rect x="54.9143%" y="789" width="0.0458%" height="15" fill="rgb(212,24,39)" fg:x="122338" fg:w="102"/><text x="55.1643%" y="799.50"></text></g><g><title>dup_mm (55 samples, 0.02%)</title><rect x="54.9762%" y="757" width="0.0247%" height="15" fill="rgb(213,46,39)" fg:x="122476" fg:w="55"/><text x="55.2262%" y="767.50"></text></g><g><title>copy_process (85 samples, 0.04%)</title><rect x="54.9690%" y="773" width="0.0382%" height="15" fill="rgb(239,106,12)" fg:x="122460" fg:w="85"/><text x="55.2190%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.04%)</title><rect x="54.9690%" y="837" width="0.0399%" height="15" fill="rgb(249,229,21)" fg:x="122460" fg:w="89"/><text x="55.2190%" y="847.50"></text></g><g><title>do_syscall_64 (89 samples, 0.04%)</title><rect x="54.9690%" y="821" width="0.0399%" height="15" fill="rgb(212,158,3)" fg:x="122460" fg:w="89"/><text x="55.2190%" y="831.50"></text></g><g><title>__do_sys_clone (89 samples, 0.04%)</title><rect x="54.9690%" y="805" width="0.0399%" height="15" fill="rgb(253,26,48)" fg:x="122460" fg:w="89"/><text x="55.2190%" y="815.50"></text></g><g><title>kernel_clone (89 samples, 0.04%)</title><rect x="54.9690%" y="789" width="0.0399%" height="15" fill="rgb(238,178,20)" fg:x="122460" fg:w="89"/><text x="55.2190%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (183 samples, 0.08%)</title><rect x="55.0211%" y="789" width="0.0821%" height="15" fill="rgb(208,86,15)" fg:x="122576" fg:w="183"/><text x="55.2711%" y="799.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (181 samples, 0.08%)</title><rect x="55.0220%" y="773" width="0.0812%" height="15" fill="rgb(239,42,53)" fg:x="122578" fg:w="181"/><text x="55.2720%" y="783.50"></text></g><g><title>native_write_msr (181 samples, 0.08%)</title><rect x="55.0220%" y="757" width="0.0812%" height="15" fill="rgb(245,226,8)" fg:x="122578" fg:w="181"/><text x="55.2720%" y="767.50"></text></g><g><title>arch_fork (316 samples, 0.14%)</title><rect x="54.9645%" y="853" width="0.1418%" height="15" fill="rgb(216,176,32)" fg:x="122450" fg:w="316"/><text x="55.2145%" y="863.50"></text></g><g><title>ret_from_fork (217 samples, 0.10%)</title><rect x="55.0090%" y="837" width="0.0974%" height="15" fill="rgb(231,186,21)" fg:x="122549" fg:w="217"/><text x="55.2590%" y="847.50"></text></g><g><title>schedule_tail (216 samples, 0.10%)</title><rect x="55.0094%" y="821" width="0.0970%" height="15" fill="rgb(205,95,49)" fg:x="122550" fg:w="216"/><text x="55.2594%" y="831.50"></text></g><g><title>finish_task_switch (193 samples, 0.09%)</title><rect x="55.0198%" y="805" width="0.0866%" height="15" fill="rgb(217,145,8)" fg:x="122573" fg:w="193"/><text x="55.2698%" y="815.50"></text></g><g><title>__libc_fork (330 samples, 0.15%)</title><rect x="54.9601%" y="869" width="0.1481%" height="15" fill="rgb(239,144,48)" fg:x="122440" fg:w="330"/><text x="55.2101%" y="879.50"></text></g><g><title>__libc_open64 (24 samples, 0.01%)</title><rect x="55.1091%" y="869" width="0.0108%" height="15" fill="rgb(214,189,23)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.01%)</title><rect x="55.1091%" y="853" width="0.0108%" height="15" fill="rgb(229,157,17)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="863.50"></text></g><g><title>do_syscall_64 (24 samples, 0.01%)</title><rect x="55.1091%" y="837" width="0.0108%" height="15" fill="rgb(230,5,48)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="847.50"></text></g><g><title>__x64_sys_openat (24 samples, 0.01%)</title><rect x="55.1091%" y="821" width="0.0108%" height="15" fill="rgb(224,156,48)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="831.50"></text></g><g><title>do_sys_openat2 (24 samples, 0.01%)</title><rect x="55.1091%" y="805" width="0.0108%" height="15" fill="rgb(223,14,29)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="815.50"></text></g><g><title>do_filp_open (24 samples, 0.01%)</title><rect x="55.1091%" y="789" width="0.0108%" height="15" fill="rgb(229,96,36)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="799.50"></text></g><g><title>path_openat (24 samples, 0.01%)</title><rect x="55.1091%" y="773" width="0.0108%" height="15" fill="rgb(231,102,53)" fg:x="122772" fg:w="24"/><text x="55.3591%" y="783.50"></text></g><g><title>path_mount (66 samples, 0.03%)</title><rect x="55.1324%" y="805" width="0.0296%" height="15" fill="rgb(210,77,38)" fg:x="122824" fg:w="66"/><text x="55.3824%" y="815.50"></text></g><g><title>vfs_get_tree (23 samples, 0.01%)</title><rect x="55.1517%" y="789" width="0.0103%" height="15" fill="rgb(235,131,6)" fg:x="122867" fg:w="23"/><text x="55.4017%" y="799.50"></text></g><g><title>get_tree_nodev (23 samples, 0.01%)</title><rect x="55.1517%" y="773" width="0.0103%" height="15" fill="rgb(252,55,38)" fg:x="122867" fg:w="23"/><text x="55.4017%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.04%)</title><rect x="55.1243%" y="853" width="0.0408%" height="15" fill="rgb(246,38,14)" fg:x="122806" fg:w="91"/><text x="55.3743%" y="863.50"></text></g><g><title>do_syscall_64 (91 samples, 0.04%)</title><rect x="55.1243%" y="837" width="0.0408%" height="15" fill="rgb(242,27,5)" fg:x="122806" fg:w="91"/><text x="55.3743%" y="847.50"></text></g><g><title>__x64_sys_mount (90 samples, 0.04%)</title><rect x="55.1248%" y="821" width="0.0404%" height="15" fill="rgb(228,65,35)" fg:x="122807" fg:w="90"/><text x="55.3748%" y="831.50"></text></g><g><title>__mount (93 samples, 0.04%)</title><rect x="55.1239%" y="869" width="0.0417%" height="15" fill="rgb(245,93,11)" fg:x="122805" fg:w="93"/><text x="55.3739%" y="879.50"></text></g><g><title>__umount2 (31 samples, 0.01%)</title><rect x="55.1755%" y="869" width="0.0139%" height="15" fill="rgb(213,1,31)" fg:x="122920" fg:w="31"/><text x="55.4255%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="55.1755%" y="853" width="0.0139%" height="15" fill="rgb(237,205,14)" fg:x="122920" fg:w="31"/><text x="55.4255%" y="863.50"></text></g><g><title>std::string::append (23 samples, 0.01%)</title><rect x="55.2110%" y="869" width="0.0103%" height="15" fill="rgb(232,118,45)" fg:x="122999" fg:w="23"/><text x="55.4610%" y="879.50"></text></g><g><title>chroot_fs_refs (103 samples, 0.05%)</title><rect x="55.2276%" y="805" width="0.0462%" height="15" fill="rgb(218,5,6)" fg:x="123036" fg:w="103"/><text x="55.4776%" y="815.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.03%)</title><rect x="55.2415%" y="789" width="0.0323%" height="15" fill="rgb(251,87,51)" fg:x="123067" fg:w="72"/><text x="55.4915%" y="799.50"></text></g><g><title>syscall (106 samples, 0.05%)</title><rect x="55.2276%" y="869" width="0.0476%" height="15" fill="rgb(207,225,20)" fg:x="123036" fg:w="106"/><text x="55.4776%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (106 samples, 0.05%)</title><rect x="55.2276%" y="853" width="0.0476%" height="15" fill="rgb(222,78,54)" fg:x="123036" fg:w="106"/><text x="55.4776%" y="863.50"></text></g><g><title>do_syscall_64 (106 samples, 0.05%)</title><rect x="55.2276%" y="837" width="0.0476%" height="15" fill="rgb(232,85,16)" fg:x="123036" fg:w="106"/><text x="55.4776%" y="847.50"></text></g><g><title>__do_sys_pivot_root (106 samples, 0.05%)</title><rect x="55.2276%" y="821" width="0.0476%" height="15" fill="rgb(244,25,33)" fg:x="123036" fg:w="106"/><text x="55.4776%" y="831.50"></text></g><g><title>Pid1Main (1,553 samples, 0.70%)</title><rect x="54.5790%" y="885" width="0.6971%" height="15" fill="rgb(233,24,36)" fg:x="121591" fg:w="1553"/><text x="54.8290%" y="895.50"></text></g><g><title>asm_exc_page_fault (35 samples, 0.02%)</title><rect x="55.2765%" y="885" width="0.0157%" height="15" fill="rgb(253,49,54)" fg:x="123145" fg:w="35"/><text x="55.5265%" y="895.50"></text></g><g><title>exc_page_fault (35 samples, 0.02%)</title><rect x="55.2765%" y="869" width="0.0157%" height="15" fill="rgb(245,12,22)" fg:x="123145" fg:w="35"/><text x="55.5265%" y="879.50"></text></g><g><title>do_user_addr_fault (35 samples, 0.02%)</title><rect x="55.2765%" y="853" width="0.0157%" height="15" fill="rgb(253,141,28)" fg:x="123145" fg:w="35"/><text x="55.5265%" y="863.50"></text></g><g><title>handle_mm_fault (31 samples, 0.01%)</title><rect x="55.2783%" y="837" width="0.0139%" height="15" fill="rgb(225,207,27)" fg:x="123149" fg:w="31"/><text x="55.5283%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (256 samples, 0.11%)</title><rect x="55.2976%" y="837" width="0.1149%" height="15" fill="rgb(220,84,2)" fg:x="123192" fg:w="256"/><text x="55.5476%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (255 samples, 0.11%)</title><rect x="55.2981%" y="821" width="0.1145%" height="15" fill="rgb(224,37,37)" fg:x="123193" fg:w="255"/><text x="55.5481%" y="831.50"></text></g><g><title>native_write_msr (255 samples, 0.11%)</title><rect x="55.2981%" y="805" width="0.1145%" height="15" fill="rgb(220,143,18)" fg:x="123193" fg:w="255"/><text x="55.5481%" y="815.50"></text></g><g><title>schedule_tail (262 samples, 0.12%)</title><rect x="55.2963%" y="869" width="0.1176%" height="15" fill="rgb(210,88,33)" fg:x="123189" fg:w="262"/><text x="55.5463%" y="879.50"></text></g><g><title>finish_task_switch (262 samples, 0.12%)</title><rect x="55.2963%" y="853" width="0.1176%" height="15" fill="rgb(219,87,51)" fg:x="123189" fg:w="262"/><text x="55.5463%" y="863.50"></text></g><g><title>__GI___clone (1,865 samples, 0.84%)</title><rect x="54.5790%" y="901" width="0.8371%" height="15" fill="rgb(211,7,35)" fg:x="121591" fg:w="1865"/><text x="54.8290%" y="911.50"></text></g><g><title>ret_from_fork (276 samples, 0.12%)</title><rect x="55.2922%" y="885" width="0.1239%" height="15" fill="rgb(232,77,2)" fg:x="123180" fg:w="276"/><text x="55.5422%" y="895.50"></text></g><g><title>[libstdc++.so.6.0.28] (30 samples, 0.01%)</title><rect x="55.4183%" y="837" width="0.0135%" height="15" fill="rgb(249,94,25)" fg:x="123461" fg:w="30"/><text x="55.6683%" y="847.50"></text></g><g><title>_dl_start_user (38 samples, 0.02%)</title><rect x="55.4179%" y="901" width="0.0171%" height="15" fill="rgb(215,112,2)" fg:x="123460" fg:w="38"/><text x="55.6679%" y="911.50"></text></g><g><title>_dl_init (38 samples, 0.02%)</title><rect x="55.4179%" y="885" width="0.0171%" height="15" fill="rgb(226,115,48)" fg:x="123460" fg:w="38"/><text x="55.6679%" y="895.50"></text></g><g><title>call_init (38 samples, 0.02%)</title><rect x="55.4179%" y="869" width="0.0171%" height="15" fill="rgb(249,196,10)" fg:x="123460" fg:w="38"/><text x="55.6679%" y="879.50"></text></g><g><title>call_init (38 samples, 0.02%)</title><rect x="55.4179%" y="853" width="0.0171%" height="15" fill="rgb(237,109,14)" fg:x="123460" fg:w="38"/><text x="55.6679%" y="863.50"></text></g><g><title>__GI_exit (40 samples, 0.02%)</title><rect x="55.4394%" y="869" width="0.0180%" height="15" fill="rgb(217,103,53)" fg:x="123508" fg:w="40"/><text x="55.6894%" y="879.50"></text></g><g><title>__run_exit_handlers (40 samples, 0.02%)</title><rect x="55.4394%" y="853" width="0.0180%" height="15" fill="rgb(244,137,9)" fg:x="123508" fg:w="40"/><text x="55.6894%" y="863.50"></text></g><g><title>[libstdc++.so.6.0.28] (25 samples, 0.01%)</title><rect x="55.4637%" y="773" width="0.0112%" height="15" fill="rgb(227,201,3)" fg:x="123562" fg:w="25"/><text x="55.7137%" y="783.50"></text></g><g><title>std::locale::_Impl::_Impl (25 samples, 0.01%)</title><rect x="55.4637%" y="757" width="0.0112%" height="15" fill="rgb(243,94,6)" fg:x="123562" fg:w="25"/><text x="55.7137%" y="767.50"></text></g><g><title>__libc_csu_init (42 samples, 0.02%)</title><rect x="55.4574%" y="869" width="0.0189%" height="15" fill="rgb(235,118,5)" fg:x="123548" fg:w="42"/><text x="55.7074%" y="879.50"></text></g><g><title>_GLOBAL__sub_I_opt (38 samples, 0.02%)</title><rect x="55.4592%" y="853" width="0.0171%" height="15" fill="rgb(247,10,30)" fg:x="123552" fg:w="38"/><text x="55.7092%" y="863.50"></text></g><g><title>std::ios_base::Init::Init (38 samples, 0.02%)</title><rect x="55.4592%" y="837" width="0.0171%" height="15" fill="rgb(205,26,28)" fg:x="123552" fg:w="38"/><text x="55.7092%" y="847.50"></text></g><g><title>std::locale::locale (28 samples, 0.01%)</title><rect x="55.4637%" y="821" width="0.0126%" height="15" fill="rgb(206,99,35)" fg:x="123562" fg:w="28"/><text x="55.7137%" y="831.50"></text></g><g><title>[libstdc++.so.6.0.28] (28 samples, 0.01%)</title><rect x="55.4637%" y="805" width="0.0126%" height="15" fill="rgb(238,130,40)" fg:x="123562" fg:w="28"/><text x="55.7137%" y="815.50"></text></g><g><title>__pthread_once_slow (28 samples, 0.01%)</title><rect x="55.4637%" y="789" width="0.0126%" height="15" fill="rgb(224,126,31)" fg:x="123562" fg:w="28"/><text x="55.7137%" y="799.50"></text></g><g><title>alloc_pages_vma (59 samples, 0.03%)</title><rect x="55.5068%" y="773" width="0.0265%" height="15" fill="rgb(254,105,17)" fg:x="123658" fg:w="59"/><text x="55.7568%" y="783.50"></text></g><g><title>__alloc_pages_nodemask (55 samples, 0.02%)</title><rect x="55.5086%" y="757" width="0.0247%" height="15" fill="rgb(216,87,36)" fg:x="123662" fg:w="55"/><text x="55.7586%" y="767.50"></text></g><g><title>get_page_from_freelist (51 samples, 0.02%)</title><rect x="55.5104%" y="741" width="0.0229%" height="15" fill="rgb(240,21,12)" fg:x="123666" fg:w="51"/><text x="55.7604%" y="751.50"></text></g><g><title>prep_new_page (38 samples, 0.02%)</title><rect x="55.5162%" y="725" width="0.0171%" height="15" fill="rgb(245,192,34)" fg:x="123679" fg:w="38"/><text x="55.7662%" y="735.50"></text></g><g><title>kernel_init_free_pages (37 samples, 0.02%)</title><rect x="55.5167%" y="709" width="0.0166%" height="15" fill="rgb(226,100,49)" fg:x="123680" fg:w="37"/><text x="55.7667%" y="719.50"></text></g><g><title>clear_page_erms (36 samples, 0.02%)</title><rect x="55.5171%" y="693" width="0.0162%" height="15" fill="rgb(245,188,27)" fg:x="123681" fg:w="36"/><text x="55.7671%" y="703.50"></text></g><g><title>handle_mm_fault (125 samples, 0.06%)</title><rect x="55.4960%" y="789" width="0.0561%" height="15" fill="rgb(212,170,8)" fg:x="123634" fg:w="125"/><text x="55.7460%" y="799.50"></text></g><g><title>exc_page_fault (133 samples, 0.06%)</title><rect x="55.4947%" y="821" width="0.0597%" height="15" fill="rgb(217,113,29)" fg:x="123631" fg:w="133"/><text x="55.7447%" y="831.50"></text></g><g><title>do_user_addr_fault (132 samples, 0.06%)</title><rect x="55.4951%" y="805" width="0.0593%" height="15" fill="rgb(237,30,3)" fg:x="123632" fg:w="132"/><text x="55.7451%" y="815.50"></text></g><g><title>asm_exc_page_fault (137 samples, 0.06%)</title><rect x="55.4938%" y="837" width="0.0615%" height="15" fill="rgb(227,19,28)" fg:x="123629" fg:w="137"/><text x="55.7438%" y="847.50"></text></g><g><title>[libc-2.31.so] (166 samples, 0.07%)</title><rect x="55.4857%" y="853" width="0.0745%" height="15" fill="rgb(239,172,45)" fg:x="123611" fg:w="166"/><text x="55.7357%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (279 samples, 0.13%)</title><rect x="55.5719%" y="709" width="0.1252%" height="15" fill="rgb(254,55,39)" fg:x="123803" fg:w="279"/><text x="55.8219%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (274 samples, 0.12%)</title><rect x="55.5741%" y="693" width="0.1230%" height="15" fill="rgb(249,208,12)" fg:x="123808" fg:w="274"/><text x="55.8241%" y="703.50"></text></g><g><title>native_write_msr (274 samples, 0.12%)</title><rect x="55.5741%" y="677" width="0.1230%" height="15" fill="rgb(240,52,13)" fg:x="123808" fg:w="274"/><text x="55.8241%" y="687.50"></text></g><g><title>finish_task_switch (313 samples, 0.14%)</title><rect x="55.5683%" y="725" width="0.1405%" height="15" fill="rgb(252,149,13)" fg:x="123795" fg:w="313"/><text x="55.8183%" y="735.50"></text></g><g><title>schedule (320 samples, 0.14%)</title><rect x="55.5665%" y="757" width="0.1436%" height="15" fill="rgb(232,81,48)" fg:x="123791" fg:w="320"/><text x="55.8165%" y="767.50"></text></g><g><title>__schedule (319 samples, 0.14%)</title><rect x="55.5669%" y="741" width="0.1432%" height="15" fill="rgb(222,144,2)" fg:x="123792" fg:w="319"/><text x="55.8169%" y="751.50"></text></g><g><title>release_task (23 samples, 0.01%)</title><rect x="55.7128%" y="741" width="0.0103%" height="15" fill="rgb(216,81,32)" fg:x="124117" fg:w="23"/><text x="55.9628%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (353 samples, 0.16%)</title><rect x="55.5651%" y="837" width="0.1585%" height="15" fill="rgb(244,78,51)" fg:x="123788" fg:w="353"/><text x="55.8151%" y="847.50"></text></g><g><title>do_syscall_64 (353 samples, 0.16%)</title><rect x="55.5651%" y="821" width="0.1585%" height="15" fill="rgb(217,66,21)" fg:x="123788" fg:w="353"/><text x="55.8151%" y="831.50"></text></g><g><title>__do_sys_wait4 (353 samples, 0.16%)</title><rect x="55.5651%" y="805" width="0.1585%" height="15" fill="rgb(247,101,42)" fg:x="123788" fg:w="353"/><text x="55.8151%" y="815.50"></text></g><g><title>kernel_wait4 (353 samples, 0.16%)</title><rect x="55.5651%" y="789" width="0.1585%" height="15" fill="rgb(227,81,39)" fg:x="123788" fg:w="353"/><text x="55.8151%" y="799.50"></text></g><g><title>do_wait (353 samples, 0.16%)</title><rect x="55.5651%" y="773" width="0.1585%" height="15" fill="rgb(220,223,44)" fg:x="123788" fg:w="353"/><text x="55.8151%" y="783.50"></text></g><g><title>wait_consider_task (30 samples, 0.01%)</title><rect x="55.7101%" y="757" width="0.0135%" height="15" fill="rgb(205,218,2)" fg:x="124111" fg:w="30"/><text x="55.9601%" y="767.50"></text></g><g><title>__GI___wait4 (356 samples, 0.16%)</title><rect x="55.5642%" y="853" width="0.1598%" height="15" fill="rgb(212,207,28)" fg:x="123786" fg:w="356"/><text x="55.8142%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.02%)</title><rect x="55.7362%" y="693" width="0.0189%" height="15" fill="rgb(224,12,41)" fg:x="124169" fg:w="42"/><text x="55.9862%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.02%)</title><rect x="55.7362%" y="677" width="0.0189%" height="15" fill="rgb(216,118,12)" fg:x="124169" fg:w="42"/><text x="55.9862%" y="687.50"></text></g><g><title>native_write_msr (42 samples, 0.02%)</title><rect x="55.7362%" y="661" width="0.0189%" height="15" fill="rgb(252,97,46)" fg:x="124169" fg:w="42"/><text x="55.9862%" y="671.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="55.7357%" y="709" width="0.0198%" height="15" fill="rgb(244,206,19)" fg:x="124168" fg:w="44"/><text x="55.9857%" y="719.50"></text></g><g><title>__libc_read (51 samples, 0.02%)</title><rect x="55.7330%" y="853" width="0.0229%" height="15" fill="rgb(231,84,31)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.02%)</title><rect x="55.7330%" y="837" width="0.0229%" height="15" fill="rgb(244,133,0)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="847.50"></text></g><g><title>do_syscall_64 (51 samples, 0.02%)</title><rect x="55.7330%" y="821" width="0.0229%" height="15" fill="rgb(223,15,50)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="831.50"></text></g><g><title>ksys_read (51 samples, 0.02%)</title><rect x="55.7330%" y="805" width="0.0229%" height="15" fill="rgb(250,118,49)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="815.50"></text></g><g><title>vfs_read (51 samples, 0.02%)</title><rect x="55.7330%" y="789" width="0.0229%" height="15" fill="rgb(248,25,38)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="799.50"></text></g><g><title>new_sync_read (51 samples, 0.02%)</title><rect x="55.7330%" y="773" width="0.0229%" height="15" fill="rgb(215,70,14)" fg:x="124162" fg:w="51"/><text x="55.9830%" y="783.50"></text></g><g><title>pipe_read (50 samples, 0.02%)</title><rect x="55.7335%" y="757" width="0.0224%" height="15" fill="rgb(215,28,15)" fg:x="124163" fg:w="50"/><text x="55.9835%" y="767.50"></text></g><g><title>schedule (47 samples, 0.02%)</title><rect x="55.7348%" y="741" width="0.0211%" height="15" fill="rgb(243,6,28)" fg:x="124166" fg:w="47"/><text x="55.9848%" y="751.50"></text></g><g><title>__schedule (46 samples, 0.02%)</title><rect x="55.7353%" y="725" width="0.0206%" height="15" fill="rgb(222,130,1)" fg:x="124167" fg:w="46"/><text x="55.9853%" y="735.50"></text></g><g><title>__libc_start_main (718 samples, 0.32%)</title><rect x="55.4394%" y="885" width="0.3223%" height="15" fill="rgb(236,166,44)" fg:x="123508" fg:w="718"/><text x="55.6894%" y="895.50"></text></g><g><title>main (636 samples, 0.29%)</title><rect x="55.4763%" y="869" width="0.2855%" height="15" fill="rgb(221,108,14)" fg:x="123590" fg:w="636"/><text x="55.7263%" y="879.50"></text></g><g><title>__split_vma (23 samples, 0.01%)</title><rect x="55.7797%" y="581" width="0.0103%" height="15" fill="rgb(252,3,45)" fg:x="124266" fg:w="23"/><text x="56.0297%" y="591.50"></text></g><g><title>__do_munmap (37 samples, 0.02%)</title><rect x="55.7783%" y="597" width="0.0166%" height="15" fill="rgb(237,68,30)" fg:x="124263" fg:w="37"/><text x="56.0283%" y="607.50"></text></g><g><title>do_mmap (78 samples, 0.04%)</title><rect x="55.7783%" y="629" width="0.0350%" height="15" fill="rgb(211,79,22)" fg:x="124263" fg:w="78"/><text x="56.0283%" y="639.50"></text></g><g><title>mmap_region (78 samples, 0.04%)</title><rect x="55.7783%" y="613" width="0.0350%" height="15" fill="rgb(252,185,21)" fg:x="124263" fg:w="78"/><text x="56.0283%" y="623.50"></text></g><g><title>ksys_mmap_pgoff (80 samples, 0.04%)</title><rect x="55.7783%" y="661" width="0.0359%" height="15" fill="rgb(225,189,26)" fg:x="124263" fg:w="80"/><text x="56.0283%" y="671.50"></text></g><g><title>vm_mmap_pgoff (80 samples, 0.04%)</title><rect x="55.7783%" y="645" width="0.0359%" height="15" fill="rgb(241,30,40)" fg:x="124263" fg:w="80"/><text x="56.0283%" y="655.50"></text></g><g><title>_dl_map_segments (94 samples, 0.04%)</title><rect x="55.7748%" y="741" width="0.0422%" height="15" fill="rgb(235,215,44)" fg:x="124255" fg:w="94"/><text x="56.0248%" y="751.50"></text></g><g><title>__mmap64 (87 samples, 0.04%)</title><rect x="55.7779%" y="725" width="0.0391%" height="15" fill="rgb(205,8,29)" fg:x="124262" fg:w="87"/><text x="56.0279%" y="735.50"></text></g><g><title>__mmap64 (87 samples, 0.04%)</title><rect x="55.7779%" y="709" width="0.0391%" height="15" fill="rgb(241,137,42)" fg:x="124262" fg:w="87"/><text x="56.0279%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.04%)</title><rect x="55.7783%" y="693" width="0.0386%" height="15" fill="rgb(237,155,2)" fg:x="124263" fg:w="86"/><text x="56.0283%" y="703.50"></text></g><g><title>do_syscall_64 (86 samples, 0.04%)</title><rect x="55.7783%" y="677" width="0.0386%" height="15" fill="rgb(245,29,42)" fg:x="124263" fg:w="86"/><text x="56.0283%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (120 samples, 0.05%)</title><rect x="55.7734%" y="757" width="0.0539%" height="15" fill="rgb(234,101,35)" fg:x="124252" fg:w="120"/><text x="56.0234%" y="767.50"></text></g><g><title>_dl_catch_exception (145 samples, 0.07%)</title><rect x="55.7685%" y="805" width="0.0651%" height="15" fill="rgb(228,64,37)" fg:x="124241" fg:w="145"/><text x="56.0185%" y="815.50"></text></g><g><title>openaux (145 samples, 0.07%)</title><rect x="55.7685%" y="789" width="0.0651%" height="15" fill="rgb(217,214,36)" fg:x="124241" fg:w="145"/><text x="56.0185%" y="799.50"></text></g><g><title>_dl_map_object (145 samples, 0.07%)</title><rect x="55.7685%" y="773" width="0.0651%" height="15" fill="rgb(243,70,3)" fg:x="124241" fg:w="145"/><text x="56.0185%" y="783.50"></text></g><g><title>_dl_map_object_deps (153 samples, 0.07%)</title><rect x="55.7662%" y="821" width="0.0687%" height="15" fill="rgb(253,158,52)" fg:x="124236" fg:w="153"/><text x="56.0162%" y="831.50"></text></g><g><title>mprotect_fixup (27 samples, 0.01%)</title><rect x="55.8416%" y="709" width="0.0121%" height="15" fill="rgb(234,111,54)" fg:x="124404" fg:w="27"/><text x="56.0916%" y="719.50"></text></g><g><title>_dl_protect_relro (32 samples, 0.01%)</title><rect x="55.8398%" y="805" width="0.0144%" height="15" fill="rgb(217,70,32)" fg:x="124400" fg:w="32"/><text x="56.0898%" y="815.50"></text></g><g><title>__mprotect (32 samples, 0.01%)</title><rect x="55.8398%" y="789" width="0.0144%" height="15" fill="rgb(234,18,33)" fg:x="124400" fg:w="32"/><text x="56.0898%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="55.8407%" y="773" width="0.0135%" height="15" fill="rgb(234,12,49)" fg:x="124402" fg:w="30"/><text x="56.0907%" y="783.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="55.8407%" y="757" width="0.0135%" height="15" fill="rgb(236,10,21)" fg:x="124402" fg:w="30"/><text x="56.0907%" y="767.50"></text></g><g><title>__x64_sys_mprotect (30 samples, 0.01%)</title><rect x="55.8407%" y="741" width="0.0135%" height="15" fill="rgb(248,182,45)" fg:x="124402" fg:w="30"/><text x="56.0907%" y="751.50"></text></g><g><title>do_mprotect_pkey (30 samples, 0.01%)</title><rect x="55.8407%" y="725" width="0.0135%" height="15" fill="rgb(217,95,36)" fg:x="124402" fg:w="30"/><text x="56.0907%" y="735.50"></text></g><g><title>dl_new_hash (78 samples, 0.04%)</title><rect x="55.9031%" y="757" width="0.0350%" height="15" fill="rgb(212,110,31)" fg:x="124541" fg:w="78"/><text x="56.1531%" y="767.50"></text></g><g><title>check_match (33 samples, 0.01%)</title><rect x="55.9987%" y="741" width="0.0148%" height="15" fill="rgb(206,32,53)" fg:x="124754" fg:w="33"/><text x="56.2487%" y="751.50"></text></g><g><title>_dl_lookup_symbol_x (269 samples, 0.12%)</title><rect x="55.8973%" y="773" width="0.1207%" height="15" fill="rgb(246,141,37)" fg:x="124528" fg:w="269"/><text x="56.1473%" y="783.50"></text></g><g><title>do_lookup_x (178 samples, 0.08%)</title><rect x="55.9381%" y="757" width="0.0799%" height="15" fill="rgb(219,16,7)" fg:x="124619" fg:w="178"/><text x="56.1881%" y="767.50"></text></g><g><title>elf_machine_rela (332 samples, 0.15%)</title><rect x="55.8704%" y="789" width="0.1490%" height="15" fill="rgb(230,205,45)" fg:x="124468" fg:w="332"/><text x="56.1204%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (387 samples, 0.17%)</title><rect x="55.8542%" y="805" width="0.1737%" height="15" fill="rgb(231,43,49)" fg:x="124432" fg:w="387"/><text x="56.1042%" y="815.50"></text></g><g><title>_dl_relocate_object (422 samples, 0.19%)</title><rect x="55.8394%" y="821" width="0.1894%" height="15" fill="rgb(212,106,34)" fg:x="124399" fg:w="422"/><text x="56.0894%" y="831.50"></text></g><g><title>[ld-2.31.so] (607 samples, 0.27%)</title><rect x="55.7631%" y="837" width="0.2725%" height="15" fill="rgb(206,83,17)" fg:x="124229" fg:w="607"/><text x="56.0131%" y="847.50"></text></g><g><title>_dl_start_final (615 samples, 0.28%)</title><rect x="55.7622%" y="869" width="0.2761%" height="15" fill="rgb(244,154,49)" fg:x="124227" fg:w="615"/><text x="56.0122%" y="879.50"></text></g><g><title>_dl_sysdep_start (615 samples, 0.28%)</title><rect x="55.7622%" y="853" width="0.2761%" height="15" fill="rgb(244,149,49)" fg:x="124227" fg:w="615"/><text x="56.0122%" y="863.50"></text></g><g><title>_dl_start (619 samples, 0.28%)</title><rect x="55.7617%" y="885" width="0.2779%" height="15" fill="rgb(227,134,18)" fg:x="124226" fg:w="619"/><text x="56.0117%" y="895.50"></text></g><g><title>_start (1,343 samples, 0.60%)</title><rect x="55.4394%" y="901" width="0.6028%" height="15" fill="rgb(237,116,36)" fg:x="123508" fg:w="1343"/><text x="55.6894%" y="911.50"></text></g><g><title>asm_exc_page_fault (124 samples, 0.06%)</title><rect x="56.0423%" y="901" width="0.0557%" height="15" fill="rgb(205,129,40)" fg:x="124851" fg:w="124"/><text x="56.2923%" y="911.50"></text></g><g><title>unmap_page_range (23 samples, 0.01%)</title><rect x="56.1186%" y="741" width="0.0103%" height="15" fill="rgb(236,178,4)" fg:x="125021" fg:w="23"/><text x="56.3686%" y="751.50"></text></g><g><title>mmput (62 samples, 0.03%)</title><rect x="56.1015%" y="789" width="0.0278%" height="15" fill="rgb(251,76,53)" fg:x="124983" fg:w="62"/><text x="56.3515%" y="799.50"></text></g><g><title>exit_mmap (62 samples, 0.03%)</title><rect x="56.1015%" y="773" width="0.0278%" height="15" fill="rgb(242,92,40)" fg:x="124983" fg:w="62"/><text x="56.3515%" y="783.50"></text></g><g><title>unmap_vmas (25 samples, 0.01%)</title><rect x="56.1181%" y="757" width="0.0112%" height="15" fill="rgb(209,45,30)" fg:x="125020" fg:w="25"/><text x="56.3681%" y="767.50"></text></g><g><title>begin_new_exec (68 samples, 0.03%)</title><rect x="56.1006%" y="805" width="0.0305%" height="15" fill="rgb(218,157,36)" fg:x="124981" fg:w="68"/><text x="56.3506%" y="815.50"></text></g><g><title>__x64_sys_execve (98 samples, 0.04%)</title><rect x="56.0988%" y="869" width="0.0440%" height="15" fill="rgb(222,186,16)" fg:x="124977" fg:w="98"/><text x="56.3488%" y="879.50"></text></g><g><title>do_execveat_common (98 samples, 0.04%)</title><rect x="56.0988%" y="853" width="0.0440%" height="15" fill="rgb(254,72,35)" fg:x="124977" fg:w="98"/><text x="56.3488%" y="863.50"></text></g><g><title>bprm_execve (98 samples, 0.04%)</title><rect x="56.0988%" y="837" width="0.0440%" height="15" fill="rgb(224,25,35)" fg:x="124977" fg:w="98"/><text x="56.3488%" y="847.50"></text></g><g><title>load_elf_binary (98 samples, 0.04%)</title><rect x="56.0988%" y="821" width="0.0440%" height="15" fill="rgb(206,135,52)" fg:x="124977" fg:w="98"/><text x="56.3488%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.02%)</title><rect x="56.1500%" y="725" width="0.0157%" height="15" fill="rgb(229,174,47)" fg:x="125091" fg:w="35"/><text x="56.4000%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (35 samples, 0.02%)</title><rect x="56.1500%" y="709" width="0.0157%" height="15" fill="rgb(242,184,21)" fg:x="125091" fg:w="35"/><text x="56.4000%" y="719.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="56.1505%" y="693" width="0.0153%" height="15" fill="rgb(213,22,45)" fg:x="125092" fg:w="34"/><text x="56.4005%" y="703.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="56.1496%" y="741" width="0.0166%" height="15" fill="rgb(237,81,54)" fg:x="125090" fg:w="37"/><text x="56.3996%" y="751.50"></text></g><g><title>namespace_unlock (52 samples, 0.02%)</title><rect x="56.1433%" y="805" width="0.0233%" height="15" fill="rgb(248,177,18)" fg:x="125076" fg:w="52"/><text x="56.3933%" y="815.50"></text></g><g><title>synchronize_rcu_expedited (45 samples, 0.02%)</title><rect x="56.1464%" y="789" width="0.0202%" height="15" fill="rgb(254,31,16)" fg:x="125083" fg:w="45"/><text x="56.3964%" y="799.50"></text></g><g><title>schedule (39 samples, 0.02%)</title><rect x="56.1491%" y="773" width="0.0175%" height="15" fill="rgb(235,20,31)" fg:x="125089" fg:w="39"/><text x="56.3991%" y="783.50"></text></g><g><title>__schedule (39 samples, 0.02%)</title><rect x="56.1491%" y="757" width="0.0175%" height="15" fill="rgb(240,56,43)" fg:x="125089" fg:w="39"/><text x="56.3991%" y="767.50"></text></g><g><title>free_nsproxy (60 samples, 0.03%)</title><rect x="56.1428%" y="837" width="0.0269%" height="15" fill="rgb(237,197,51)" fg:x="125075" fg:w="60"/><text x="56.3928%" y="847.50"></text></g><g><title>put_mnt_ns (59 samples, 0.03%)</title><rect x="56.1433%" y="821" width="0.0265%" height="15" fill="rgb(241,162,44)" fg:x="125076" fg:w="59"/><text x="56.3933%" y="831.50"></text></g><g><title>free_pgtables (24 samples, 0.01%)</title><rect x="56.1702%" y="805" width="0.0108%" height="15" fill="rgb(224,23,20)" fg:x="125136" fg:w="24"/><text x="56.4202%" y="815.50"></text></g><g><title>tlb_finish_mmu (33 samples, 0.01%)</title><rect x="56.1841%" y="805" width="0.0148%" height="15" fill="rgb(250,109,34)" fg:x="125167" fg:w="33"/><text x="56.4341%" y="815.50"></text></g><g><title>release_pages (26 samples, 0.01%)</title><rect x="56.1873%" y="789" width="0.0117%" height="15" fill="rgb(214,175,50)" fg:x="125174" fg:w="26"/><text x="56.4373%" y="799.50"></text></g><g><title>unmap_page_range (42 samples, 0.02%)</title><rect x="56.1989%" y="789" width="0.0189%" height="15" fill="rgb(213,182,5)" fg:x="125200" fg:w="42"/><text x="56.4489%" y="799.50"></text></g><g><title>exit_mmap (108 samples, 0.05%)</title><rect x="56.1698%" y="821" width="0.0485%" height="15" fill="rgb(209,199,19)" fg:x="125135" fg:w="108"/><text x="56.4198%" y="831.50"></text></g><g><title>unmap_vmas (43 samples, 0.02%)</title><rect x="56.1989%" y="805" width="0.0193%" height="15" fill="rgb(236,224,42)" fg:x="125200" fg:w="43"/><text x="56.4489%" y="815.50"></text></g><g><title>mmput (109 samples, 0.05%)</title><rect x="56.1698%" y="837" width="0.0489%" height="15" fill="rgb(246,226,29)" fg:x="125135" fg:w="109"/><text x="56.4198%" y="847.50"></text></g><g><title>list_lru_destroy (25 samples, 0.01%)</title><rect x="56.2200%" y="789" width="0.0112%" height="15" fill="rgb(227,223,11)" fg:x="125247" fg:w="25"/><text x="56.4700%" y="799.50"></text></g><g><title>kfree (24 samples, 0.01%)</title><rect x="56.2205%" y="773" width="0.0108%" height="15" fill="rgb(219,7,51)" fg:x="125248" fg:w="24"/><text x="56.4705%" y="783.50"></text></g><g><title>deactivate_locked_super (35 samples, 0.02%)</title><rect x="56.2196%" y="805" width="0.0157%" height="15" fill="rgb(245,167,10)" fg:x="125246" fg:w="35"/><text x="56.4696%" y="815.50"></text></g><g><title>__x64_sys_exit (208 samples, 0.09%)</title><rect x="56.1428%" y="869" width="0.0934%" height="15" fill="rgb(237,224,16)" fg:x="125075" fg:w="208"/><text x="56.3928%" y="879.50"></text></g><g><title>do_exit (208 samples, 0.09%)</title><rect x="56.1428%" y="853" width="0.0934%" height="15" fill="rgb(226,132,13)" fg:x="125075" fg:w="208"/><text x="56.3928%" y="863.50"></text></g><g><title>task_work_run (39 samples, 0.02%)</title><rect x="56.2187%" y="837" width="0.0175%" height="15" fill="rgb(214,140,3)" fg:x="125244" fg:w="39"/><text x="56.4687%" y="847.50"></text></g><g><title>cleanup_mnt (39 samples, 0.02%)</title><rect x="56.2187%" y="821" width="0.0175%" height="15" fill="rgb(221,177,4)" fg:x="125244" fg:w="39"/><text x="56.4687%" y="831.50"></text></g><g><title>unmap_page_range (36 samples, 0.02%)</title><rect x="56.2573%" y="773" width="0.0162%" height="15" fill="rgb(238,139,3)" fg:x="125330" fg:w="36"/><text x="56.5073%" y="783.50"></text></g><g><title>mmput (83 samples, 0.04%)</title><rect x="56.2366%" y="821" width="0.0373%" height="15" fill="rgb(216,17,39)" fg:x="125284" fg:w="83"/><text x="56.4866%" y="831.50"></text></g><g><title>exit_mmap (82 samples, 0.04%)</title><rect x="56.2371%" y="805" width="0.0368%" height="15" fill="rgb(238,120,9)" fg:x="125285" fg:w="82"/><text x="56.4871%" y="815.50"></text></g><g><title>unmap_vmas (38 samples, 0.02%)</title><rect x="56.2568%" y="789" width="0.0171%" height="15" fill="rgb(244,92,53)" fg:x="125329" fg:w="38"/><text x="56.5068%" y="799.50"></text></g><g><title>__x64_sys_exit_group (89 samples, 0.04%)</title><rect x="56.2362%" y="869" width="0.0399%" height="15" fill="rgb(224,148,33)" fg:x="125283" fg:w="89"/><text x="56.4862%" y="879.50"></text></g><g><title>do_group_exit (89 samples, 0.04%)</title><rect x="56.2362%" y="853" width="0.0399%" height="15" fill="rgb(243,6,36)" fg:x="125283" fg:w="89"/><text x="56.4862%" y="863.50"></text></g><g><title>do_exit (89 samples, 0.04%)</title><rect x="56.2362%" y="837" width="0.0399%" height="15" fill="rgb(230,102,11)" fg:x="125283" fg:w="89"/><text x="56.4862%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (397 samples, 0.18%)</title><rect x="56.0984%" y="901" width="0.1782%" height="15" fill="rgb(234,148,36)" fg:x="124976" fg:w="397"/><text x="56.3484%" y="911.50"></text></g><g><title>do_syscall_64 (396 samples, 0.18%)</title><rect x="56.0988%" y="885" width="0.1778%" height="15" fill="rgb(251,153,25)" fg:x="124977" fg:w="396"/><text x="56.3488%" y="895.50"></text></g><g><title>linux-sandbox (3,973 samples, 1.78%)</title><rect x="54.4946%" y="917" width="1.7834%" height="15" fill="rgb(215,129,8)" fg:x="121403" fg:w="3973"/><text x="54.7446%" y="927.50">l..</text></g><g><title>__perf_event_task_sched_in (101 samples, 0.05%)</title><rect x="56.3058%" y="741" width="0.0453%" height="15" fill="rgb(224,128,35)" fg:x="125438" fg:w="101"/><text x="56.5558%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.04%)</title><rect x="56.3062%" y="725" width="0.0449%" height="15" fill="rgb(237,56,52)" fg:x="125439" fg:w="100"/><text x="56.5562%" y="735.50"></text></g><g><title>native_write_msr (99 samples, 0.04%)</title><rect x="56.3067%" y="709" width="0.0444%" height="15" fill="rgb(234,213,19)" fg:x="125440" fg:w="99"/><text x="56.5567%" y="719.50"></text></g><g><title>arch_fork (122 samples, 0.05%)</title><rect x="56.2972%" y="805" width="0.0548%" height="15" fill="rgb(252,82,23)" fg:x="125419" fg:w="122"/><text x="56.5472%" y="815.50"></text></g><g><title>ret_from_fork (114 samples, 0.05%)</title><rect x="56.3008%" y="789" width="0.0512%" height="15" fill="rgb(254,201,21)" fg:x="125427" fg:w="114"/><text x="56.5508%" y="799.50"></text></g><g><title>schedule_tail (114 samples, 0.05%)</title><rect x="56.3008%" y="773" width="0.0512%" height="15" fill="rgb(250,186,11)" fg:x="125427" fg:w="114"/><text x="56.5508%" y="783.50"></text></g><g><title>finish_task_switch (103 samples, 0.05%)</title><rect x="56.3058%" y="757" width="0.0462%" height="15" fill="rgb(211,174,5)" fg:x="125438" fg:w="103"/><text x="56.5558%" y="767.50"></text></g><g><title>__libc_fork (132 samples, 0.06%)</title><rect x="56.2946%" y="821" width="0.0593%" height="15" fill="rgb(214,121,10)" fg:x="125413" fg:w="132"/><text x="56.5446%" y="831.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (146 samples, 0.07%)</title><rect x="56.2892%" y="853" width="0.0655%" height="15" fill="rgb(241,66,2)" fg:x="125401" fg:w="146"/><text x="56.5392%" y="863.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (146 samples, 0.07%)</title><rect x="56.2892%" y="837" width="0.0655%" height="15" fill="rgb(220,167,19)" fg:x="125401" fg:w="146"/><text x="56.5392%" y="847.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="56.3565%" y="741" width="0.0144%" height="15" fill="rgb(231,54,50)" fg:x="125551" fg:w="32"/><text x="56.6065%" y="751.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="56.3565%" y="725" width="0.0144%" height="15" fill="rgb(239,217,53)" fg:x="125551" fg:w="32"/><text x="56.6065%" y="735.50"></text></g><g><title>finish_task_switch (32 samples, 0.01%)</title><rect x="56.3565%" y="709" width="0.0144%" height="15" fill="rgb(248,8,0)" fg:x="125551" fg:w="32"/><text x="56.6065%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.01%)</title><rect x="56.3569%" y="693" width="0.0139%" height="15" fill="rgb(229,118,37)" fg:x="125552" fg:w="31"/><text x="56.6069%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.01%)</title><rect x="56.3574%" y="677" width="0.0135%" height="15" fill="rgb(253,223,43)" fg:x="125553" fg:w="30"/><text x="56.6074%" y="687.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="56.3574%" y="661" width="0.0135%" height="15" fill="rgb(211,77,36)" fg:x="125553" fg:w="30"/><text x="56.6074%" y="671.50"></text></g><g><title>WaitChild (37 samples, 0.02%)</title><rect x="56.3565%" y="837" width="0.0166%" height="15" fill="rgb(219,3,53)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="847.50"></text></g><g><title>__GI___wait4 (37 samples, 0.02%)</title><rect x="56.3565%" y="821" width="0.0166%" height="15" fill="rgb(244,45,42)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.02%)</title><rect x="56.3565%" y="805" width="0.0166%" height="15" fill="rgb(225,95,27)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="815.50"></text></g><g><title>do_syscall_64 (37 samples, 0.02%)</title><rect x="56.3565%" y="789" width="0.0166%" height="15" fill="rgb(207,74,8)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="799.50"></text></g><g><title>kernel_wait4 (37 samples, 0.02%)</title><rect x="56.3565%" y="773" width="0.0166%" height="15" fill="rgb(243,63,36)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="783.50"></text></g><g><title>do_wait (37 samples, 0.02%)</title><rect x="56.3565%" y="757" width="0.0166%" height="15" fill="rgb(211,180,12)" fg:x="125551" fg:w="37"/><text x="56.6065%" y="767.50"></text></g><g><title>__libc_start_main (198 samples, 0.09%)</title><rect x="56.2869%" y="885" width="0.0889%" height="15" fill="rgb(254,166,49)" fg:x="125396" fg:w="198"/><text x="56.5369%" y="895.50"></text></g><g><title>main (193 samples, 0.09%)</title><rect x="56.2892%" y="869" width="0.0866%" height="15" fill="rgb(205,19,0)" fg:x="125401" fg:w="193"/><text x="56.5392%" y="879.50"></text></g><g><title>LegacyProcessWrapper::WaitForChild (47 samples, 0.02%)</title><rect x="56.3547%" y="853" width="0.0211%" height="15" fill="rgb(224,172,32)" fg:x="125547" fg:w="47"/><text x="56.6047%" y="863.50"></text></g><g><title>elf_machine_rela (36 samples, 0.02%)</title><rect x="56.3893%" y="789" width="0.0162%" height="15" fill="rgb(254,136,30)" fg:x="125624" fg:w="36"/><text x="56.6393%" y="799.50"></text></g><g><title>_dl_lookup_symbol_x (30 samples, 0.01%)</title><rect x="56.3920%" y="773" width="0.0135%" height="15" fill="rgb(246,19,35)" fg:x="125630" fg:w="30"/><text x="56.6420%" y="783.50"></text></g><g><title>_dl_relocate_object (48 samples, 0.02%)</title><rect x="56.3857%" y="821" width="0.0215%" height="15" fill="rgb(219,24,36)" fg:x="125616" fg:w="48"/><text x="56.6357%" y="831.50"></text></g><g><title>elf_dynamic_do_Rela (46 samples, 0.02%)</title><rect x="56.3866%" y="805" width="0.0206%" height="15" fill="rgb(251,55,1)" fg:x="125618" fg:w="46"/><text x="56.6366%" y="815.50"></text></g><g><title>[ld-2.31.so] (71 samples, 0.03%)</title><rect x="56.3758%" y="837" width="0.0319%" height="15" fill="rgb(218,117,39)" fg:x="125594" fg:w="71"/><text x="56.6258%" y="847.50"></text></g><g><title>_dl_start_final (73 samples, 0.03%)</title><rect x="56.3758%" y="869" width="0.0328%" height="15" fill="rgb(248,169,11)" fg:x="125594" fg:w="73"/><text x="56.6258%" y="879.50"></text></g><g><title>_dl_sysdep_start (73 samples, 0.03%)</title><rect x="56.3758%" y="853" width="0.0328%" height="15" fill="rgb(244,40,44)" fg:x="125594" fg:w="73"/><text x="56.6258%" y="863.50"></text></g><g><title>_start (273 samples, 0.12%)</title><rect x="56.2869%" y="901" width="0.1225%" height="15" fill="rgb(234,62,37)" fg:x="125396" fg:w="273"/><text x="56.5369%" y="911.50"></text></g><g><title>_dl_start (75 samples, 0.03%)</title><rect x="56.3758%" y="885" width="0.0337%" height="15" fill="rgb(207,117,42)" fg:x="125594" fg:w="75"/><text x="56.6258%" y="895.50"></text></g><g><title>process-wrapper (308 samples, 0.14%)</title><rect x="56.2806%" y="917" width="0.1383%" height="15" fill="rgb(213,43,2)" fg:x="125382" fg:w="308"/><text x="56.5306%" y="927.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (30 samples, 0.01%)</title><rect x="56.4561%" y="853" width="0.0135%" height="15" fill="rgb(244,202,51)" fg:x="125773" fg:w="30"/><text x="56.7061%" y="863.50"></text></g><g><title>VMThread::execute (29 samples, 0.01%)</title><rect x="56.4566%" y="837" width="0.0130%" height="15" fill="rgb(253,174,46)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="847.50"></text></g><g><title>Monitor::wait (29 samples, 0.01%)</title><rect x="56.4566%" y="821" width="0.0130%" height="15" fill="rgb(251,23,1)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="831.50"></text></g><g><title>Monitor::IWait (29 samples, 0.01%)</title><rect x="56.4566%" y="805" width="0.0130%" height="15" fill="rgb(253,26,1)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="815.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.01%)</title><rect x="56.4566%" y="789" width="0.0130%" height="15" fill="rgb(216,89,31)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="799.50"></text></g><g><title>__pthread_cond_wait (29 samples, 0.01%)</title><rect x="56.4566%" y="773" width="0.0130%" height="15" fill="rgb(209,109,5)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.01%)</title><rect x="56.4566%" y="757" width="0.0130%" height="15" fill="rgb(229,63,13)" fg:x="125774" fg:w="29"/><text x="56.7066%" y="767.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.01%)</title><rect x="56.4570%" y="741" width="0.0126%" height="15" fill="rgb(238,137,54)" fg:x="125775" fg:w="28"/><text x="56.7070%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.01%)</title><rect x="56.4570%" y="725" width="0.0126%" height="15" fill="rgb(228,1,9)" fg:x="125775" fg:w="28"/><text x="56.7070%" y="735.50"></text></g><g><title>do_syscall_64 (28 samples, 0.01%)</title><rect x="56.4570%" y="709" width="0.0126%" height="15" fill="rgb(249,120,48)" fg:x="125775" fg:w="28"/><text x="56.7070%" y="719.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.01%)</title><rect x="56.4570%" y="693" width="0.0126%" height="15" fill="rgb(209,72,36)" fg:x="125775" fg:w="28"/><text x="56.7070%" y="703.50"></text></g><g><title>do_futex (28 samples, 0.01%)</title><rect x="56.4570%" y="677" width="0.0126%" height="15" fill="rgb(247,98,49)" fg:x="125775" fg:w="28"/><text x="56.7070%" y="687.50"></text></g><g><title>futex_wait (27 samples, 0.01%)</title><rect x="56.4575%" y="661" width="0.0121%" height="15" fill="rgb(233,75,36)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="671.50"></text></g><g><title>futex_wait_queue_me (27 samples, 0.01%)</title><rect x="56.4575%" y="645" width="0.0121%" height="15" fill="rgb(225,14,24)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="655.50"></text></g><g><title>schedule (27 samples, 0.01%)</title><rect x="56.4575%" y="629" width="0.0121%" height="15" fill="rgb(237,193,20)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="639.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="56.4575%" y="613" width="0.0121%" height="15" fill="rgb(239,122,19)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="623.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="56.4575%" y="597" width="0.0121%" height="15" fill="rgb(231,220,10)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="56.4575%" y="581" width="0.0121%" height="15" fill="rgb(220,66,15)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.01%)</title><rect x="56.4575%" y="565" width="0.0121%" height="15" fill="rgb(215,171,52)" fg:x="125776" fg:w="27"/><text x="56.7075%" y="575.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="56.4579%" y="549" width="0.0117%" height="15" fill="rgb(241,169,50)" fg:x="125777" fg:w="26"/><text x="56.7079%" y="559.50"></text></g><g><title>InterpreterRuntime::monitorenter (32 samples, 0.01%)</title><rect x="56.4557%" y="885" width="0.0144%" height="15" fill="rgb(236,189,0)" fg:x="125772" fg:w="32"/><text x="56.7057%" y="895.50"></text></g><g><title>ObjectSynchronizer::fast_enter (31 samples, 0.01%)</title><rect x="56.4561%" y="869" width="0.0139%" height="15" fill="rgb(217,147,20)" fg:x="125773" fg:w="31"/><text x="56.7061%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (231 samples, 0.10%)</title><rect x="56.5145%" y="741" width="0.1037%" height="15" fill="rgb(206,188,39)" fg:x="125903" fg:w="231"/><text x="56.7645%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (228 samples, 0.10%)</title><rect x="56.5158%" y="725" width="0.1023%" height="15" fill="rgb(227,118,25)" fg:x="125906" fg:w="228"/><text x="56.7658%" y="735.50"></text></g><g><title>native_write_msr (227 samples, 0.10%)</title><rect x="56.5163%" y="709" width="0.1019%" height="15" fill="rgb(248,171,40)" fg:x="125907" fg:w="227"/><text x="56.7663%" y="719.50"></text></g><g><title>finish_task_switch (252 samples, 0.11%)</title><rect x="56.5109%" y="757" width="0.1131%" height="15" fill="rgb(251,90,54)" fg:x="125895" fg:w="252"/><text x="56.7609%" y="767.50"></text></g><g><title>schedule (253 samples, 0.11%)</title><rect x="56.5109%" y="789" width="0.1136%" height="15" fill="rgb(234,11,46)" fg:x="125895" fg:w="253"/><text x="56.7609%" y="799.50"></text></g><g><title>__schedule (253 samples, 0.11%)</title><rect x="56.5109%" y="773" width="0.1136%" height="15" fill="rgb(229,134,13)" fg:x="125895" fg:w="253"/><text x="56.7609%" y="783.50"></text></g><g><title>do_wait (354 samples, 0.16%)</title><rect x="56.4799%" y="805" width="0.1589%" height="15" fill="rgb(223,129,3)" fg:x="125826" fg:w="354"/><text x="56.7299%" y="815.50"></text></g><g><title>wait_consider_task (32 samples, 0.01%)</title><rect x="56.6245%" y="789" width="0.0144%" height="15" fill="rgb(221,124,13)" fg:x="126148" fg:w="32"/><text x="56.8745%" y="799.50"></text></g><g><title>release_task (30 samples, 0.01%)</title><rect x="56.6254%" y="773" width="0.0135%" height="15" fill="rgb(234,3,18)" fg:x="126150" fg:w="30"/><text x="56.8754%" y="783.50"></text></g><g><title>__GI___wait4 (357 samples, 0.16%)</title><rect x="56.4795%" y="869" width="0.1602%" height="15" fill="rgb(249,199,20)" fg:x="125825" fg:w="357"/><text x="56.7295%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (356 samples, 0.16%)</title><rect x="56.4799%" y="853" width="0.1598%" height="15" fill="rgb(224,134,6)" fg:x="125826" fg:w="356"/><text x="56.7299%" y="863.50"></text></g><g><title>do_syscall_64 (356 samples, 0.16%)</title><rect x="56.4799%" y="837" width="0.1598%" height="15" fill="rgb(254,83,26)" fg:x="125826" fg:w="356"/><text x="56.7299%" y="847.50"></text></g><g><title>kernel_wait4 (356 samples, 0.16%)</title><rect x="56.4799%" y="821" width="0.1598%" height="15" fill="rgb(217,88,9)" fg:x="125826" fg:w="356"/><text x="56.7299%" y="831.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (359 samples, 0.16%)</title><rect x="56.4790%" y="885" width="0.1611%" height="15" fill="rgb(225,73,2)" fg:x="125824" fg:w="359"/><text x="56.7290%" y="895.50"></text></g><g><title>finish_task_switch (70 samples, 0.03%)</title><rect x="56.6442%" y="677" width="0.0314%" height="15" fill="rgb(226,44,39)" fg:x="126192" fg:w="70"/><text x="56.8942%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.03%)</title><rect x="56.6451%" y="661" width="0.0305%" height="15" fill="rgb(228,53,17)" fg:x="126194" fg:w="68"/><text x="56.8951%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (68 samples, 0.03%)</title><rect x="56.6451%" y="645" width="0.0305%" height="15" fill="rgb(212,27,27)" fg:x="126194" fg:w="68"/><text x="56.8951%" y="655.50"></text></g><g><title>native_write_msr (68 samples, 0.03%)</title><rect x="56.6451%" y="629" width="0.0305%" height="15" fill="rgb(241,50,6)" fg:x="126194" fg:w="68"/><text x="56.8951%" y="639.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.03%)</title><rect x="56.6442%" y="725" width="0.0323%" height="15" fill="rgb(225,28,51)" fg:x="126192" fg:w="72"/><text x="56.8942%" y="735.50"></text></g><g><title>schedule (72 samples, 0.03%)</title><rect x="56.6442%" y="709" width="0.0323%" height="15" fill="rgb(215,33,16)" fg:x="126192" fg:w="72"/><text x="56.8942%" y="719.50"></text></g><g><title>__schedule (72 samples, 0.03%)</title><rect x="56.6442%" y="693" width="0.0323%" height="15" fill="rgb(243,40,39)" fg:x="126192" fg:w="72"/><text x="56.8942%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (81 samples, 0.04%)</title><rect x="56.6429%" y="853" width="0.0364%" height="15" fill="rgb(225,11,42)" fg:x="126189" fg:w="81"/><text x="56.8929%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (81 samples, 0.04%)</title><rect x="56.6429%" y="837" width="0.0364%" height="15" fill="rgb(241,220,38)" fg:x="126189" fg:w="81"/><text x="56.8929%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (79 samples, 0.04%)</title><rect x="56.6438%" y="821" width="0.0355%" height="15" fill="rgb(244,52,35)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.04%)</title><rect x="56.6438%" y="805" width="0.0355%" height="15" fill="rgb(246,42,46)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="815.50"></text></g><g><title>do_syscall_64 (79 samples, 0.04%)</title><rect x="56.6438%" y="789" width="0.0355%" height="15" fill="rgb(205,184,13)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="799.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.04%)</title><rect x="56.6438%" y="773" width="0.0355%" height="15" fill="rgb(209,48,36)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="783.50"></text></g><g><title>do_futex (79 samples, 0.04%)</title><rect x="56.6438%" y="757" width="0.0355%" height="15" fill="rgb(244,34,51)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="767.50"></text></g><g><title>futex_wait (79 samples, 0.04%)</title><rect x="56.6438%" y="741" width="0.0355%" height="15" fill="rgb(221,107,33)" fg:x="126191" fg:w="79"/><text x="56.8938%" y="751.50"></text></g><g><title>Unsafe_Park (87 samples, 0.04%)</title><rect x="56.6406%" y="885" width="0.0391%" height="15" fill="rgb(224,203,12)" fg:x="126184" fg:w="87"/><text x="56.8906%" y="895.50"></text></g><g><title>Parker::park (85 samples, 0.04%)</title><rect x="56.6415%" y="869" width="0.0382%" height="15" fill="rgb(230,215,18)" fg:x="126186" fg:w="85"/><text x="56.8915%" y="879.50"></text></g><g><title>[perf-945576.map] (576 samples, 0.26%)</title><rect x="56.4220%" y="901" width="0.2586%" height="15" fill="rgb(206,185,35)" fg:x="125697" fg:w="576"/><text x="56.6720%" y="911.50"></text></g><g><title>process_reaper (585 samples, 0.26%)</title><rect x="56.4189%" y="917" width="0.2626%" height="15" fill="rgb(228,140,34)" fg:x="125690" fg:w="585"/><text x="56.6689%" y="927.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (39 samples, 0.02%)</title><rect x="56.8462%" y="885" width="0.0175%" height="15" fill="rgb(208,93,13)" fg:x="126642" fg:w="39"/><text x="57.0962%" y="895.50"></text></g><g><title>deflate (39 samples, 0.02%)</title><rect x="56.8462%" y="869" width="0.0175%" height="15" fill="rgb(221,193,39)" fg:x="126642" fg:w="39"/><text x="57.0962%" y="879.50"></text></g><g><title>[libz.so.1.2.11] (39 samples, 0.02%)</title><rect x="56.8462%" y="853" width="0.0175%" height="15" fill="rgb(241,132,34)" fg:x="126642" fg:w="39"/><text x="57.0962%" y="863.50"></text></g><g><title>[libz.so.1.2.11] (26 samples, 0.01%)</title><rect x="56.8521%" y="837" width="0.0117%" height="15" fill="rgb(221,141,10)" fg:x="126655" fg:w="26"/><text x="57.1021%" y="847.50"></text></g><g><title>SafepointSynchronize::block (24 samples, 0.01%)</title><rect x="56.8821%" y="853" width="0.0108%" height="15" fill="rgb(226,90,31)" fg:x="126722" fg:w="24"/><text x="57.1321%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (459 samples, 0.21%)</title><rect x="56.9194%" y="661" width="0.2060%" height="15" fill="rgb(243,75,5)" fg:x="126805" fg:w="459"/><text x="57.1694%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (452 samples, 0.20%)</title><rect x="56.9225%" y="645" width="0.2029%" height="15" fill="rgb(227,156,21)" fg:x="126812" fg:w="452"/><text x="57.1725%" y="655.50"></text></g><g><title>native_write_msr (450 samples, 0.20%)</title><rect x="56.9234%" y="629" width="0.2020%" height="15" fill="rgb(250,195,8)" fg:x="126814" fg:w="450"/><text x="57.1734%" y="639.50"></text></g><g><title>finish_task_switch (481 samples, 0.22%)</title><rect x="56.9158%" y="677" width="0.2159%" height="15" fill="rgb(220,134,5)" fg:x="126797" fg:w="481"/><text x="57.1658%" y="687.50"></text></g><g><title>futex_wait_queue_me (521 samples, 0.23%)</title><rect x="56.9005%" y="725" width="0.2339%" height="15" fill="rgb(246,106,34)" fg:x="126763" fg:w="521"/><text x="57.1505%" y="735.50"></text></g><g><title>schedule (511 samples, 0.23%)</title><rect x="56.9050%" y="709" width="0.2294%" height="15" fill="rgb(205,1,4)" fg:x="126773" fg:w="511"/><text x="57.1550%" y="719.50"></text></g><g><title>__schedule (510 samples, 0.23%)</title><rect x="56.9055%" y="693" width="0.2289%" height="15" fill="rgb(224,151,29)" fg:x="126774" fg:w="510"/><text x="57.1555%" y="703.50"></text></g><g><title>do_syscall_64 (536 samples, 0.24%)</title><rect x="56.8951%" y="789" width="0.2406%" height="15" fill="rgb(251,196,0)" fg:x="126751" fg:w="536"/><text x="57.1451%" y="799.50"></text></g><g><title>__x64_sys_futex (535 samples, 0.24%)</title><rect x="56.8956%" y="773" width="0.2401%" height="15" fill="rgb(212,127,0)" fg:x="126752" fg:w="535"/><text x="57.1456%" y="783.50"></text></g><g><title>do_futex (532 samples, 0.24%)</title><rect x="56.8969%" y="757" width="0.2388%" height="15" fill="rgb(236,71,53)" fg:x="126755" fg:w="532"/><text x="57.1469%" y="767.50"></text></g><g><title>futex_wait (528 samples, 0.24%)</title><rect x="56.8987%" y="741" width="0.2370%" height="15" fill="rgb(227,99,0)" fg:x="126759" fg:w="528"/><text x="57.1487%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (543 samples, 0.24%)</title><rect x="56.8951%" y="805" width="0.2437%" height="15" fill="rgb(239,89,21)" fg:x="126751" fg:w="543"/><text x="57.1451%" y="815.50"></text></g><g><title>__pthread_cond_wait (547 samples, 0.25%)</title><rect x="56.8938%" y="853" width="0.2455%" height="15" fill="rgb(243,122,19)" fg:x="126748" fg:w="547"/><text x="57.1438%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (547 samples, 0.25%)</title><rect x="56.8938%" y="837" width="0.2455%" height="15" fill="rgb(229,192,45)" fg:x="126748" fg:w="547"/><text x="57.1438%" y="847.50"></text></g><g><title>futex_wait_cancelable (546 samples, 0.25%)</title><rect x="56.8942%" y="821" width="0.2451%" height="15" fill="rgb(235,165,35)" fg:x="126749" fg:w="546"/><text x="57.1442%" y="831.50"></text></g><g><title>Parker::park (600 samples, 0.27%)</title><rect x="56.8767%" y="869" width="0.2693%" height="15" fill="rgb(253,202,0)" fg:x="126710" fg:w="600"/><text x="57.1267%" y="879.50"></text></g><g><title>Unsafe_Park (610 samples, 0.27%)</title><rect x="56.8731%" y="885" width="0.2738%" height="15" fill="rgb(235,51,20)" fg:x="126702" fg:w="610"/><text x="57.1231%" y="895.50"></text></g><g><title>[perf-945576.map] (1,032 samples, 0.46%)</title><rect x="56.6864%" y="901" width="0.4632%" height="15" fill="rgb(218,95,46)" fg:x="126286" fg:w="1032"/><text x="56.9364%" y="911.50"></text></g><g><title>profile-writer- (1,059 samples, 0.48%)</title><rect x="56.6815%" y="917" width="0.4754%" height="15" fill="rgb(212,81,10)" fg:x="126275" fg:w="1059"/><text x="56.9315%" y="927.50"></text></g><g><title>PyImport_ImportModuleLevelObject (28 samples, 0.01%)</title><rect x="57.2300%" y="597" width="0.0126%" height="15" fill="rgb(240,59,0)" fg:x="127497" fg:w="28"/><text x="57.4800%" y="607.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (28 samples, 0.01%)</title><rect x="57.2300%" y="581" width="0.0126%" height="15" fill="rgb(212,191,42)" fg:x="127497" fg:w="28"/><text x="57.4800%" y="591.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="57.2300%" y="565" width="0.0126%" height="15" fill="rgb(233,140,3)" fg:x="127497" fg:w="28"/><text x="57.4800%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.01%)</title><rect x="57.2300%" y="549" width="0.0126%" height="15" fill="rgb(215,69,23)" fg:x="127497" fg:w="28"/><text x="57.4800%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.2305%" y="533" width="0.0121%" height="15" fill="rgb(240,202,20)" fg:x="127498" fg:w="27"/><text x="57.4805%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.2305%" y="517" width="0.0121%" height="15" fill="rgb(209,146,50)" fg:x="127498" fg:w="27"/><text x="57.4805%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.2305%" y="501" width="0.0121%" height="15" fill="rgb(253,102,54)" fg:x="127498" fg:w="27"/><text x="57.4805%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.2305%" y="485" width="0.0121%" height="15" fill="rgb(250,173,47)" fg:x="127498" fg:w="27"/><text x="57.4805%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.2300%" y="869" width="0.0148%" height="15" fill="rgb(232,142,7)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="853" width="0.0148%" height="15" fill="rgb(230,157,47)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.2300%" y="837" width="0.0148%" height="15" fill="rgb(214,177,35)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="821" width="0.0148%" height="15" fill="rgb(234,119,46)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.2300%" y="805" width="0.0148%" height="15" fill="rgb(241,180,50)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="789" width="0.0148%" height="15" fill="rgb(221,54,25)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.2300%" y="773" width="0.0148%" height="15" fill="rgb(209,157,44)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="757" width="0.0148%" height="15" fill="rgb(246,115,41)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.2300%" y="741" width="0.0148%" height="15" fill="rgb(229,86,1)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="751.50"></text></g><g><title>[python3.9] (33 samples, 0.01%)</title><rect x="57.2300%" y="725" width="0.0148%" height="15" fill="rgb(240,108,53)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="709" width="0.0148%" height="15" fill="rgb(227,134,2)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="719.50"></text></g><g><title>[python3.9] (33 samples, 0.01%)</title><rect x="57.2300%" y="693" width="0.0148%" height="15" fill="rgb(213,129,25)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="703.50"></text></g><g><title>[python3.9] (33 samples, 0.01%)</title><rect x="57.2300%" y="677" width="0.0148%" height="15" fill="rgb(226,35,21)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="687.50"></text></g><g><title>PyEval_EvalCode (33 samples, 0.01%)</title><rect x="57.2300%" y="661" width="0.0148%" height="15" fill="rgb(208,129,26)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="671.50"></text></g><g><title>_PyEval_EvalCodeWithName (33 samples, 0.01%)</title><rect x="57.2300%" y="645" width="0.0148%" height="15" fill="rgb(224,83,6)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="655.50"></text></g><g><title>[python3.9] (33 samples, 0.01%)</title><rect x="57.2300%" y="629" width="0.0148%" height="15" fill="rgb(227,52,39)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.2300%" y="613" width="0.0148%" height="15" fill="rgb(241,30,17)" fg:x="127497" fg:w="33"/><text x="57.4800%" y="623.50"></text></g><g><title>[python3.9] (98 samples, 0.04%)</title><rect x="57.2013%" y="885" width="0.0440%" height="15" fill="rgb(246,186,42)" fg:x="127433" fg:w="98"/><text x="57.4513%" y="895.50"></text></g><g><title>PyImport_ImportModuleLevelObject (40 samples, 0.02%)</title><rect x="57.2538%" y="549" width="0.0180%" height="15" fill="rgb(221,169,15)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="559.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (40 samples, 0.02%)</title><rect x="57.2538%" y="533" width="0.0180%" height="15" fill="rgb(235,108,21)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="543.50"></text></g><g><title>[python3.9] (40 samples, 0.02%)</title><rect x="57.2538%" y="517" width="0.0180%" height="15" fill="rgb(219,148,30)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (40 samples, 0.02%)</title><rect x="57.2538%" y="501" width="0.0180%" height="15" fill="rgb(220,109,5)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (40 samples, 0.02%)</title><rect x="57.2538%" y="485" width="0.0180%" height="15" fill="rgb(213,203,48)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (40 samples, 0.02%)</title><rect x="57.2538%" y="469" width="0.0180%" height="15" fill="rgb(244,71,33)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (40 samples, 0.02%)</title><rect x="57.2538%" y="453" width="0.0180%" height="15" fill="rgb(209,23,2)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (40 samples, 0.02%)</title><rect x="57.2538%" y="437" width="0.0180%" height="15" fill="rgb(219,97,7)" fg:x="127550" fg:w="40"/><text x="57.5038%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="57.2583%" y="421" width="0.0135%" height="15" fill="rgb(216,161,23)" fg:x="127560" fg:w="30"/><text x="57.5083%" y="431.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="57.2583%" y="405" width="0.0135%" height="15" fill="rgb(207,45,42)" fg:x="127560" fg:w="30"/><text x="57.5083%" y="415.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="57.2583%" y="389" width="0.0135%" height="15" fill="rgb(241,61,4)" fg:x="127560" fg:w="30"/><text x="57.5083%" y="399.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="57.2583%" y="373" width="0.0135%" height="15" fill="rgb(236,170,1)" fg:x="127560" fg:w="30"/><text x="57.5083%" y="383.50"></text></g><g><title>PyImport_ImportModuleLevelObject (50 samples, 0.02%)</title><rect x="57.2533%" y="869" width="0.0224%" height="15" fill="rgb(239,72,5)" fg:x="127549" fg:w="50"/><text x="57.5033%" y="879.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (50 samples, 0.02%)</title><rect x="57.2533%" y="853" width="0.0224%" height="15" fill="rgb(214,13,50)" fg:x="127549" fg:w="50"/><text x="57.5033%" y="863.50"></text></g><g><title>[python3.9] (50 samples, 0.02%)</title><rect x="57.2533%" y="837" width="0.0224%" height="15" fill="rgb(224,88,9)" fg:x="127549" fg:w="50"/><text x="57.5033%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (50 samples, 0.02%)</title><rect x="57.2533%" y="821" width="0.0224%" height="15" fill="rgb(238,192,34)" fg:x="127549" fg:w="50"/><text x="57.5033%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="805" width="0.0220%" height="15" fill="rgb(217,203,50)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (49 samples, 0.02%)</title><rect x="57.2538%" y="789" width="0.0220%" height="15" fill="rgb(241,123,32)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="773" width="0.0220%" height="15" fill="rgb(248,151,39)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (49 samples, 0.02%)</title><rect x="57.2538%" y="757" width="0.0220%" height="15" fill="rgb(208,89,6)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="741" width="0.0220%" height="15" fill="rgb(254,43,26)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (49 samples, 0.02%)</title><rect x="57.2538%" y="725" width="0.0220%" height="15" fill="rgb(216,158,13)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="709" width="0.0220%" height="15" fill="rgb(212,47,37)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (49 samples, 0.02%)</title><rect x="57.2538%" y="693" width="0.0220%" height="15" fill="rgb(254,16,10)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="703.50"></text></g><g><title>[python3.9] (49 samples, 0.02%)</title><rect x="57.2538%" y="677" width="0.0220%" height="15" fill="rgb(223,228,16)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="661" width="0.0220%" height="15" fill="rgb(249,108,50)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="671.50"></text></g><g><title>[python3.9] (49 samples, 0.02%)</title><rect x="57.2538%" y="645" width="0.0220%" height="15" fill="rgb(208,220,5)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="655.50"></text></g><g><title>[python3.9] (49 samples, 0.02%)</title><rect x="57.2538%" y="629" width="0.0220%" height="15" fill="rgb(217,89,48)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="639.50"></text></g><g><title>PyEval_EvalCode (49 samples, 0.02%)</title><rect x="57.2538%" y="613" width="0.0220%" height="15" fill="rgb(212,113,41)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="623.50"></text></g><g><title>_PyEval_EvalCodeWithName (49 samples, 0.02%)</title><rect x="57.2538%" y="597" width="0.0220%" height="15" fill="rgb(231,127,5)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="607.50"></text></g><g><title>[python3.9] (49 samples, 0.02%)</title><rect x="57.2538%" y="581" width="0.0220%" height="15" fill="rgb(217,141,17)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.02%)</title><rect x="57.2538%" y="565" width="0.0220%" height="15" fill="rgb(245,125,54)" fg:x="127550" fg:w="49"/><text x="57.5038%" y="575.50"></text></g><g><title>[python3.9] (23 samples, 0.01%)</title><rect x="57.2875%" y="853" width="0.0103%" height="15" fill="rgb(248,125,3)" fg:x="127625" fg:w="23"/><text x="57.5375%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="57.2875%" y="837" width="0.0103%" height="15" fill="rgb(236,119,51)" fg:x="127625" fg:w="23"/><text x="57.5375%" y="847.50"></text></g><g><title>PyImport_ImportModuleLevelObject (23 samples, 0.01%)</title><rect x="57.3045%" y="661" width="0.0103%" height="15" fill="rgb(239,99,8)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="671.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (23 samples, 0.01%)</title><rect x="57.3045%" y="645" width="0.0103%" height="15" fill="rgb(224,228,4)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="655.50"></text></g><g><title>[python3.9] (23 samples, 0.01%)</title><rect x="57.3045%" y="629" width="0.0103%" height="15" fill="rgb(220,131,45)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="57.3045%" y="613" width="0.0103%" height="15" fill="rgb(215,62,5)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="57.3045%" y="597" width="0.0103%" height="15" fill="rgb(253,12,24)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="57.3045%" y="581" width="0.0103%" height="15" fill="rgb(248,120,50)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="57.3045%" y="565" width="0.0103%" height="15" fill="rgb(245,194,10)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="57.3045%" y="549" width="0.0103%" height="15" fill="rgb(241,149,38)" fg:x="127663" fg:w="23"/><text x="57.5545%" y="559.50"></text></g><g><title>[python3.9] (29 samples, 0.01%)</title><rect x="57.3045%" y="789" width="0.0130%" height="15" fill="rgb(219,215,7)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.01%)</title><rect x="57.3045%" y="773" width="0.0130%" height="15" fill="rgb(208,120,31)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="783.50"></text></g><g><title>[python3.9] (29 samples, 0.01%)</title><rect x="57.3045%" y="757" width="0.0130%" height="15" fill="rgb(244,30,8)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="767.50"></text></g><g><title>[python3.9] (29 samples, 0.01%)</title><rect x="57.3045%" y="741" width="0.0130%" height="15" fill="rgb(238,35,44)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="751.50"></text></g><g><title>PyEval_EvalCode (29 samples, 0.01%)</title><rect x="57.3045%" y="725" width="0.0130%" height="15" fill="rgb(243,218,37)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="735.50"></text></g><g><title>_PyEval_EvalCodeWithName (29 samples, 0.01%)</title><rect x="57.3045%" y="709" width="0.0130%" height="15" fill="rgb(218,169,10)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="719.50"></text></g><g><title>[python3.9] (29 samples, 0.01%)</title><rect x="57.3045%" y="693" width="0.0130%" height="15" fill="rgb(221,144,10)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.01%)</title><rect x="57.3045%" y="677" width="0.0130%" height="15" fill="rgb(226,41,38)" fg:x="127663" fg:w="29"/><text x="57.5545%" y="687.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3198%" y="437" width="0.0112%" height="15" fill="rgb(228,3,1)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.01%)</title><rect x="57.3198%" y="421" width="0.0112%" height="15" fill="rgb(209,129,12)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="431.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3198%" y="405" width="0.0112%" height="15" fill="rgb(213,136,33)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="415.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3198%" y="389" width="0.0112%" height="15" fill="rgb(209,181,29)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="399.50"></text></g><g><title>PyEval_EvalCode (25 samples, 0.01%)</title><rect x="57.3198%" y="373" width="0.0112%" height="15" fill="rgb(234,173,18)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="383.50"></text></g><g><title>_PyEval_EvalCodeWithName (25 samples, 0.01%)</title><rect x="57.3198%" y="357" width="0.0112%" height="15" fill="rgb(227,73,47)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="367.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3198%" y="341" width="0.0112%" height="15" fill="rgb(234,9,34)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="351.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.01%)</title><rect x="57.3198%" y="325" width="0.0112%" height="15" fill="rgb(235,172,15)" fg:x="127697" fg:w="25"/><text x="57.5698%" y="335.50"></text></g><g><title>PyImport_ImportModuleLevelObject (31 samples, 0.01%)</title><rect x="57.3175%" y="629" width="0.0139%" height="15" fill="rgb(245,61,2)" fg:x="127692" fg:w="31"/><text x="57.5675%" y="639.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (31 samples, 0.01%)</title><rect x="57.3175%" y="613" width="0.0139%" height="15" fill="rgb(238,39,47)" fg:x="127692" fg:w="31"/><text x="57.5675%" y="623.50"></text></g><g><title>[python3.9] (31 samples, 0.01%)</title><rect x="57.3175%" y="597" width="0.0139%" height="15" fill="rgb(234,37,24)" fg:x="127692" fg:w="31"/><text x="57.5675%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.01%)</title><rect x="57.3175%" y="581" width="0.0139%" height="15" fill="rgb(248,223,24)" fg:x="127692" fg:w="31"/><text x="57.5675%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="57.3180%" y="565" width="0.0135%" height="15" fill="rgb(223,12,15)" fg:x="127693" fg:w="30"/><text x="57.5680%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="57.3180%" y="549" width="0.0135%" height="15" fill="rgb(249,6,3)" fg:x="127693" fg:w="30"/><text x="57.5680%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="57.3180%" y="533" width="0.0135%" height="15" fill="rgb(237,105,33)" fg:x="127693" fg:w="30"/><text x="57.5680%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="57.3180%" y="517" width="0.0135%" height="15" fill="rgb(252,208,35)" fg:x="127693" fg:w="30"/><text x="57.5680%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3198%" y="501" width="0.0117%" height="15" fill="rgb(215,181,35)" fg:x="127697" fg:w="26"/><text x="57.5698%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3198%" y="485" width="0.0117%" height="15" fill="rgb(246,212,3)" fg:x="127697" fg:w="26"/><text x="57.5698%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3198%" y="469" width="0.0117%" height="15" fill="rgb(247,156,24)" fg:x="127697" fg:w="26"/><text x="57.5698%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3198%" y="453" width="0.0117%" height="15" fill="rgb(248,9,31)" fg:x="127697" fg:w="26"/><text x="57.5698%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (103 samples, 0.05%)</title><rect x="57.2875%" y="869" width="0.0462%" height="15" fill="rgb(234,26,45)" fg:x="127625" fg:w="103"/><text x="57.5375%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (80 samples, 0.04%)</title><rect x="57.2978%" y="853" width="0.0359%" height="15" fill="rgb(249,11,32)" fg:x="127648" fg:w="80"/><text x="57.5478%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (79 samples, 0.04%)</title><rect x="57.2982%" y="837" width="0.0355%" height="15" fill="rgb(249,162,33)" fg:x="127649" fg:w="79"/><text x="57.5482%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (65 samples, 0.03%)</title><rect x="57.3045%" y="821" width="0.0292%" height="15" fill="rgb(232,4,32)" fg:x="127663" fg:w="65"/><text x="57.5545%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (65 samples, 0.03%)</title><rect x="57.3045%" y="805" width="0.0292%" height="15" fill="rgb(212,5,45)" fg:x="127663" fg:w="65"/><text x="57.5545%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="57.3175%" y="789" width="0.0162%" height="15" fill="rgb(227,95,13)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="57.3175%" y="773" width="0.0162%" height="15" fill="rgb(223,205,10)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="783.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="57.3175%" y="757" width="0.0162%" height="15" fill="rgb(222,178,8)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="57.3175%" y="741" width="0.0162%" height="15" fill="rgb(216,13,22)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="751.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="57.3175%" y="725" width="0.0162%" height="15" fill="rgb(240,167,12)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="735.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="57.3175%" y="709" width="0.0162%" height="15" fill="rgb(235,68,35)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="719.50"></text></g><g><title>PyEval_EvalCode (36 samples, 0.02%)</title><rect x="57.3175%" y="693" width="0.0162%" height="15" fill="rgb(253,40,27)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="703.50"></text></g><g><title>_PyEval_EvalCodeWithName (36 samples, 0.02%)</title><rect x="57.3175%" y="677" width="0.0162%" height="15" fill="rgb(214,19,28)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="687.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="57.3175%" y="661" width="0.0162%" height="15" fill="rgb(210,167,45)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="57.3175%" y="645" width="0.0162%" height="15" fill="rgb(232,97,40)" fg:x="127692" fg:w="36"/><text x="57.5675%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (180 samples, 0.08%)</title><rect x="57.2533%" y="885" width="0.0808%" height="15" fill="rgb(250,35,23)" fg:x="127549" fg:w="180"/><text x="57.5033%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (47 samples, 0.02%)</title><rect x="57.3341%" y="885" width="0.0211%" height="15" fill="rgb(248,47,53)" fg:x="127729" fg:w="47"/><text x="57.5841%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="57.3404%" y="869" width="0.0148%" height="15" fill="rgb(226,58,50)" fg:x="127743" fg:w="33"/><text x="57.5904%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="57.3404%" y="853" width="0.0148%" height="15" fill="rgb(217,105,26)" fg:x="127743" fg:w="33"/><text x="57.5904%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3436%" y="837" width="0.0117%" height="15" fill="rgb(208,64,1)" fg:x="127750" fg:w="26"/><text x="57.5936%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3436%" y="821" width="0.0117%" height="15" fill="rgb(214,80,1)" fg:x="127750" fg:w="26"/><text x="57.5936%" y="831.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (27 samples, 0.01%)</title><rect x="57.3552%" y="885" width="0.0121%" height="15" fill="rgb(206,175,26)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="895.50"></text></g><g><title>[python3.9] (27 samples, 0.01%)</title><rect x="57.3552%" y="869" width="0.0121%" height="15" fill="rgb(235,156,37)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.3552%" y="853" width="0.0121%" height="15" fill="rgb(213,100,9)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.3552%" y="837" width="0.0121%" height="15" fill="rgb(241,15,13)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.3552%" y="821" width="0.0121%" height="15" fill="rgb(205,97,43)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.3552%" y="805" width="0.0121%" height="15" fill="rgb(216,106,32)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.3552%" y="789" width="0.0121%" height="15" fill="rgb(226,200,8)" fg:x="127776" fg:w="27"/><text x="57.6052%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3557%" y="773" width="0.0117%" height="15" fill="rgb(244,54,29)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3557%" y="757" width="0.0117%" height="15" fill="rgb(252,169,12)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3557%" y="741" width="0.0117%" height="15" fill="rgb(231,199,11)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3557%" y="725" width="0.0117%" height="15" fill="rgb(233,191,18)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="735.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3557%" y="709" width="0.0117%" height="15" fill="rgb(215,83,47)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3557%" y="693" width="0.0117%" height="15" fill="rgb(251,67,19)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="703.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3557%" y="677" width="0.0117%" height="15" fill="rgb(240,7,20)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="687.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3557%" y="661" width="0.0117%" height="15" fill="rgb(210,150,26)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="671.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.01%)</title><rect x="57.3557%" y="645" width="0.0117%" height="15" fill="rgb(228,75,42)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="655.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.01%)</title><rect x="57.3557%" y="629" width="0.0117%" height="15" fill="rgb(237,134,48)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="639.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3557%" y="613" width="0.0117%" height="15" fill="rgb(205,80,50)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3557%" y="597" width="0.0117%" height="15" fill="rgb(217,74,48)" fg:x="127777" fg:w="26"/><text x="57.6057%" y="607.50"></text></g><g><title>[unknown] (440 samples, 0.20%)</title><rect x="57.1779%" y="901" width="0.1975%" height="15" fill="rgb(205,82,50)" fg:x="127381" fg:w="440"/><text x="57.4279%" y="911.50"></text></g><g><title>PyRun_SimpleStringFlags (28 samples, 0.01%)</title><rect x="57.3759%" y="837" width="0.0126%" height="15" fill="rgb(228,1,33)" fg:x="127822" fg:w="28"/><text x="57.6259%" y="847.50"></text></g><g><title>PyRun_StringFlags (28 samples, 0.01%)</title><rect x="57.3759%" y="821" width="0.0126%" height="15" fill="rgb(214,50,23)" fg:x="127822" fg:w="28"/><text x="57.6259%" y="831.50"></text></g><g><title>[python3.9] (27 samples, 0.01%)</title><rect x="57.3763%" y="805" width="0.0121%" height="15" fill="rgb(210,62,9)" fg:x="127823" fg:w="27"/><text x="57.6263%" y="815.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3768%" y="789" width="0.0117%" height="15" fill="rgb(210,104,37)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="799.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.01%)</title><rect x="57.3768%" y="773" width="0.0117%" height="15" fill="rgb(232,104,43)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="783.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.01%)</title><rect x="57.3768%" y="757" width="0.0117%" height="15" fill="rgb(244,52,6)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="767.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3768%" y="741" width="0.0117%" height="15" fill="rgb(211,174,52)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3768%" y="725" width="0.0117%" height="15" fill="rgb(229,48,4)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="735.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.01%)</title><rect x="57.3768%" y="709" width="0.0117%" height="15" fill="rgb(205,155,16)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="719.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.01%)</title><rect x="57.3768%" y="693" width="0.0117%" height="15" fill="rgb(211,141,53)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="703.50"></text></g><g><title>[python3.9] (26 samples, 0.01%)</title><rect x="57.3768%" y="677" width="0.0117%" height="15" fill="rgb(240,148,11)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3768%" y="661" width="0.0117%" height="15" fill="rgb(214,45,23)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3768%" y="645" width="0.0117%" height="15" fill="rgb(248,74,26)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3768%" y="629" width="0.0117%" height="15" fill="rgb(218,121,16)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.01%)</title><rect x="57.3768%" y="613" width="0.0117%" height="15" fill="rgb(218,10,47)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.01%)</title><rect x="57.3768%" y="597" width="0.0117%" height="15" fill="rgb(227,99,14)" fg:x="127824" fg:w="26"/><text x="57.6268%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.01%)</title><rect x="57.3777%" y="581" width="0.0108%" height="15" fill="rgb(229,83,46)" fg:x="127826" fg:w="24"/><text x="57.6277%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.01%)</title><rect x="57.3777%" y="565" width="0.0108%" height="15" fill="rgb(228,25,1)" fg:x="127826" fg:w="24"/><text x="57.6277%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="57.3781%" y="549" width="0.0103%" height="15" fill="rgb(252,190,15)" fg:x="127827" fg:w="23"/><text x="57.6281%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="57.3781%" y="533" width="0.0103%" height="15" fill="rgb(213,103,51)" fg:x="127827" fg:w="23"/><text x="57.6281%" y="543.50"></text></g><g><title>PyGC_Collect (25 samples, 0.01%)</title><rect x="57.3885%" y="821" width="0.0112%" height="15" fill="rgb(220,38,44)" fg:x="127850" fg:w="25"/><text x="57.6385%" y="831.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3885%" y="805" width="0.0112%" height="15" fill="rgb(210,45,26)" fg:x="127850" fg:w="25"/><text x="57.6385%" y="815.50"></text></g><g><title>[python3.9] (25 samples, 0.01%)</title><rect x="57.3885%" y="789" width="0.0112%" height="15" fill="rgb(205,95,48)" fg:x="127850" fg:w="25"/><text x="57.6385%" y="799.50"></text></g><g><title>_PyGC_CollectNoFail (35 samples, 0.02%)</title><rect x="57.4028%" y="805" width="0.0157%" height="15" fill="rgb(225,179,37)" fg:x="127882" fg:w="35"/><text x="57.6528%" y="815.50"></text></g><g><title>[python3.9] (35 samples, 0.02%)</title><rect x="57.4028%" y="789" width="0.0157%" height="15" fill="rgb(230,209,3)" fg:x="127882" fg:w="35"/><text x="57.6528%" y="799.50"></text></g><g><title>[python3.9] (29 samples, 0.01%)</title><rect x="57.4055%" y="773" width="0.0130%" height="15" fill="rgb(248,12,46)" fg:x="127888" fg:w="29"/><text x="57.6555%" y="783.50"></text></g><g><title>[python3.9] (45 samples, 0.02%)</title><rect x="57.4006%" y="821" width="0.0202%" height="15" fill="rgb(234,18,0)" fg:x="127877" fg:w="45"/><text x="57.6506%" y="831.50"></text></g><g><title>Py_RunMain (116 samples, 0.05%)</title><rect x="57.3759%" y="853" width="0.0521%" height="15" fill="rgb(238,197,14)" fg:x="127822" fg:w="116"/><text x="57.6259%" y="863.50"></text></g><g><title>Py_FinalizeEx (88 samples, 0.04%)</title><rect x="57.3885%" y="837" width="0.0395%" height="15" fill="rgb(251,162,48)" fg:x="127850" fg:w="88"/><text x="57.6385%" y="847.50"></text></g><g><title>PyImport_ImportModule (37 samples, 0.02%)</title><rect x="57.4333%" y="773" width="0.0166%" height="15" fill="rgb(237,73,42)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="783.50"></text></g><g><title>PyImport_Import (37 samples, 0.02%)</title><rect x="57.4333%" y="757" width="0.0166%" height="15" fill="rgb(211,108,8)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="767.50"></text></g><g><title>PyObject_CallFunction (37 samples, 0.02%)</title><rect x="57.4333%" y="741" width="0.0166%" height="15" fill="rgb(213,45,22)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="751.50"></text></g><g><title>_PyObject_MakeTpCall (37 samples, 0.02%)</title><rect x="57.4333%" y="725" width="0.0166%" height="15" fill="rgb(252,154,5)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="735.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="57.4333%" y="709" width="0.0166%" height="15" fill="rgb(221,79,52)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="719.50"></text></g><g><title>[python3.9] (37 samples, 0.02%)</title><rect x="57.4333%" y="693" width="0.0166%" height="15" fill="rgb(229,220,36)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="703.50"></text></g><g><title>PyImport_ImportModuleLevelObject (37 samples, 0.02%)</title><rect x="57.4333%" y="677" width="0.0166%" height="15" fill="rgb(211,17,16)" fg:x="127950" fg:w="37"/><text x="57.6833%" y="687.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (36 samples, 0.02%)</title><rect x="57.4338%" y="661" width="0.0162%" height="15" fill="rgb(222,55,31)" fg:x="127951" fg:w="36"/><text x="57.6838%" y="671.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="57.4338%" y="645" width="0.0162%" height="15" fill="rgb(221,221,31)" fg:x="127951" fg:w="36"/><text x="57.6838%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="57.4338%" y="629" width="0.0162%" height="15" fill="rgb(227,168,26)" fg:x="127951" fg:w="36"/><text x="57.6838%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (35 samples, 0.02%)</title><rect x="57.4342%" y="613" width="0.0157%" height="15" fill="rgb(224,139,9)" fg:x="127952" fg:w="35"/><text x="57.6842%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.02%)</title><rect x="57.4342%" y="597" width="0.0157%" height="15" fill="rgb(254,172,0)" fg:x="127952" fg:w="35"/><text x="57.6842%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (35 samples, 0.02%)</title><rect x="57.4342%" y="581" width="0.0157%" height="15" fill="rgb(235,203,1)" fg:x="127952" fg:w="35"/><text x="57.6842%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.02%)</title><rect x="57.4342%" y="565" width="0.0157%" height="15" fill="rgb(216,205,24)" fg:x="127952" fg:w="35"/><text x="57.6842%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.01%)</title><rect x="57.4360%" y="549" width="0.0139%" height="15" fill="rgb(233,24,6)" fg:x="127956" fg:w="31"/><text x="57.6860%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.01%)</title><rect x="57.4369%" y="533" width="0.0130%" height="15" fill="rgb(244,110,9)" fg:x="127958" fg:w="29"/><text x="57.6869%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.4378%" y="517" width="0.0121%" height="15" fill="rgb(239,222,42)" fg:x="127960" fg:w="27"/><text x="57.6878%" y="527.50"></text></g><g><title>PyObject_CallMethod (27 samples, 0.01%)</title><rect x="57.4500%" y="773" width="0.0121%" height="15" fill="rgb(218,145,13)" fg:x="127987" fg:w="27"/><text x="57.7000%" y="783.50"></text></g><g><title>[python3.9] (27 samples, 0.01%)</title><rect x="57.4500%" y="757" width="0.0121%" height="15" fill="rgb(207,69,11)" fg:x="127987" fg:w="27"/><text x="57.7000%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.01%)</title><rect x="57.4500%" y="741" width="0.0121%" height="15" fill="rgb(220,223,22)" fg:x="127987" fg:w="27"/><text x="57.7000%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.01%)</title><rect x="57.4500%" y="725" width="0.0121%" height="15" fill="rgb(245,102,5)" fg:x="127987" fg:w="27"/><text x="57.7000%" y="735.50"></text></g><g><title>Py_InitializeFromConfig (112 samples, 0.05%)</title><rect x="57.4280%" y="821" width="0.0503%" height="15" fill="rgb(211,148,2)" fg:x="127938" fg:w="112"/><text x="57.6780%" y="831.50"></text></g><g><title>[python3.9] (112 samples, 0.05%)</title><rect x="57.4280%" y="805" width="0.0503%" height="15" fill="rgb(241,13,44)" fg:x="127938" fg:w="112"/><text x="57.6780%" y="815.50"></text></g><g><title>[python3.9] (110 samples, 0.05%)</title><rect x="57.4289%" y="789" width="0.0494%" height="15" fill="rgb(219,137,21)" fg:x="127940" fg:w="110"/><text x="57.6789%" y="799.50"></text></g><g><title>__libc_start_main (231 samples, 0.10%)</title><rect x="57.3759%" y="885" width="0.1037%" height="15" fill="rgb(242,206,5)" fg:x="127822" fg:w="231"/><text x="57.6259%" y="895.50"></text></g><g><title>Py_BytesMain (231 samples, 0.10%)</title><rect x="57.3759%" y="869" width="0.1037%" height="15" fill="rgb(217,114,22)" fg:x="127822" fg:w="231"/><text x="57.6259%" y="879.50"></text></g><g><title>[python3.9] (115 samples, 0.05%)</title><rect x="57.4280%" y="853" width="0.0516%" height="15" fill="rgb(253,206,42)" fg:x="127938" fg:w="115"/><text x="57.6780%" y="863.50"></text></g><g><title>[python3.9] (115 samples, 0.05%)</title><rect x="57.4280%" y="837" width="0.0516%" height="15" fill="rgb(236,102,18)" fg:x="127938" fg:w="115"/><text x="57.6780%" y="847.50"></text></g><g><title>_start (241 samples, 0.11%)</title><rect x="57.3759%" y="901" width="0.1082%" height="15" fill="rgb(208,59,49)" fg:x="127822" fg:w="241"/><text x="57.6259%" y="911.50"></text></g><g><title>python3 (742 samples, 0.33%)</title><rect x="57.1582%" y="917" width="0.3331%" height="15" fill="rgb(215,194,28)" fg:x="127337" fg:w="742"/><text x="57.4082%" y="927.50"></text></g><g><title>[ld-2.31.so] (40 samples, 0.02%)</title><rect x="57.5038%" y="837" width="0.0180%" height="15" fill="rgb(243,207,11)" fg:x="128107" fg:w="40"/><text x="57.7538%" y="847.50"></text></g><g><title>_start (42 samples, 0.02%)</title><rect x="57.5038%" y="901" width="0.0189%" height="15" fill="rgb(254,179,35)" fg:x="128107" fg:w="42"/><text x="57.7538%" y="911.50"></text></g><g><title>_dl_start (42 samples, 0.02%)</title><rect x="57.5038%" y="885" width="0.0189%" height="15" fill="rgb(235,97,3)" fg:x="128107" fg:w="42"/><text x="57.7538%" y="895.50"></text></g><g><title>_dl_start_final (42 samples, 0.02%)</title><rect x="57.5038%" y="869" width="0.0189%" height="15" fill="rgb(215,155,33)" fg:x="128107" fg:w="42"/><text x="57.7538%" y="879.50"></text></g><g><title>_dl_sysdep_start (42 samples, 0.02%)</title><rect x="57.5038%" y="853" width="0.0189%" height="15" fill="rgb(223,128,12)" fg:x="128107" fg:w="42"/><text x="57.7538%" y="863.50"></text></g><g><title>sed (87 samples, 0.04%)</title><rect x="57.4912%" y="917" width="0.0391%" height="15" fill="rgb(208,157,18)" fg:x="128079" fg:w="87"/><text x="57.7412%" y="927.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (26 samples, 0.01%)</title><rect x="57.5478%" y="885" width="0.0117%" height="15" fill="rgb(249,70,54)" fg:x="128205" fg:w="26"/><text x="57.7978%" y="895.50"></text></g><g><title>JNIHandleBlock::allocate_block (28 samples, 0.01%)</title><rect x="57.6317%" y="885" width="0.0126%" height="15" fill="rgb(244,118,24)" fg:x="128392" fg:w="28"/><text x="57.8817%" y="895.50"></text></g><g><title>JavaThread::is_Java_thread (31 samples, 0.01%)</title><rect x="57.6730%" y="885" width="0.0139%" height="15" fill="rgb(211,54,0)" fg:x="128484" fg:w="31"/><text x="57.9230%" y="895.50"></text></g><g><title>_int_free (23 samples, 0.01%)</title><rect x="57.7888%" y="885" width="0.0103%" height="15" fill="rgb(245,137,45)" fg:x="128742" fg:w="23"/><text x="58.0388%" y="895.50"></text></g><g><title>[anon] (713 samples, 0.32%)</title><rect x="57.5406%" y="901" width="0.3200%" height="15" fill="rgb(232,154,31)" fg:x="128189" fg:w="713"/><text x="57.7906%" y="911.50"></text></g><g><title>btrfs_release_file (23 samples, 0.01%)</title><rect x="58.0281%" y="789" width="0.0103%" height="15" fill="rgb(253,6,39)" fg:x="129275" fg:w="23"/><text x="58.2781%" y="799.50"></text></g><g><title>kfree (23 samples, 0.01%)</title><rect x="58.0281%" y="773" width="0.0103%" height="15" fill="rgb(234,183,24)" fg:x="129275" fg:w="23"/><text x="58.2781%" y="783.50"></text></g><g><title>__fput (35 samples, 0.02%)</title><rect x="58.0272%" y="805" width="0.0157%" height="15" fill="rgb(252,84,40)" fg:x="129273" fg:w="35"/><text x="58.2772%" y="815.50"></text></g><g><title>__GI___close_nocancel (61 samples, 0.03%)</title><rect x="58.0160%" y="885" width="0.0274%" height="15" fill="rgb(224,65,2)" fg:x="129248" fg:w="61"/><text x="58.2660%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.03%)</title><rect x="58.0169%" y="869" width="0.0265%" height="15" fill="rgb(229,38,24)" fg:x="129250" fg:w="59"/><text x="58.2669%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (40 samples, 0.02%)</title><rect x="58.0254%" y="853" width="0.0180%" height="15" fill="rgb(218,131,50)" fg:x="129269" fg:w="40"/><text x="58.2754%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (40 samples, 0.02%)</title><rect x="58.0254%" y="837" width="0.0180%" height="15" fill="rgb(233,106,18)" fg:x="129269" fg:w="40"/><text x="58.2754%" y="847.50"></text></g><g><title>task_work_run (36 samples, 0.02%)</title><rect x="58.0272%" y="821" width="0.0162%" height="15" fill="rgb(220,216,11)" fg:x="129273" fg:w="36"/><text x="58.2772%" y="831.50"></text></g><g><title>__GI___libc_free (50 samples, 0.02%)</title><rect x="58.0434%" y="885" width="0.0224%" height="15" fill="rgb(251,100,45)" fg:x="129309" fg:w="50"/><text x="58.2934%" y="895.50"></text></g><g><title>_cond_resched (23 samples, 0.01%)</title><rect x="58.0977%" y="789" width="0.0103%" height="15" fill="rgb(235,143,32)" fg:x="129430" fg:w="23"/><text x="58.3477%" y="799.50"></text></g><g><title>dput (54 samples, 0.02%)</title><rect x="58.0905%" y="805" width="0.0242%" height="15" fill="rgb(248,124,34)" fg:x="129414" fg:w="54"/><text x="58.3405%" y="815.50"></text></g><g><title>__lookup_hash (23 samples, 0.01%)</title><rect x="58.1188%" y="789" width="0.0103%" height="15" fill="rgb(225,221,4)" fg:x="129477" fg:w="23"/><text x="58.3688%" y="799.50"></text></g><g><title>inode_permission.part.0 (84 samples, 0.04%)</title><rect x="58.1928%" y="741" width="0.0377%" height="15" fill="rgb(242,27,43)" fg:x="129642" fg:w="84"/><text x="58.4428%" y="751.50"></text></g><g><title>lookup_fast (172 samples, 0.08%)</title><rect x="58.2458%" y="725" width="0.0772%" height="15" fill="rgb(227,54,8)" fg:x="129760" fg:w="172"/><text x="58.4958%" y="735.50"></text></g><g><title>__d_lookup_rcu (143 samples, 0.06%)</title><rect x="58.2588%" y="709" width="0.0642%" height="15" fill="rgb(253,139,49)" fg:x="129789" fg:w="143"/><text x="58.5088%" y="719.50"></text></g><g><title>link_path_walk.part.0 (448 samples, 0.20%)</title><rect x="58.1426%" y="757" width="0.2011%" height="15" fill="rgb(231,26,43)" fg:x="129530" fg:w="448"/><text x="58.3926%" y="767.50"></text></g><g><title>walk_component (246 samples, 0.11%)</title><rect x="58.2332%" y="741" width="0.1104%" height="15" fill="rgb(207,121,39)" fg:x="129732" fg:w="246"/><text x="58.4832%" y="751.50"></text></g><g><title>step_into (46 samples, 0.02%)</title><rect x="58.3230%" y="725" width="0.0206%" height="15" fill="rgb(223,101,35)" fg:x="129932" fg:w="46"/><text x="58.5730%" y="735.50"></text></g><g><title>filename_parentat (488 samples, 0.22%)</title><rect x="58.1327%" y="789" width="0.2191%" height="15" fill="rgb(232,87,23)" fg:x="129508" fg:w="488"/><text x="58.3827%" y="799.50"></text></g><g><title>path_parentat (481 samples, 0.22%)</title><rect x="58.1358%" y="773" width="0.2159%" height="15" fill="rgb(225,180,29)" fg:x="129515" fg:w="481"/><text x="58.3858%" y="783.50"></text></g><g><title>filename_create (557 samples, 0.25%)</title><rect x="58.1147%" y="805" width="0.2500%" height="15" fill="rgb(225,25,17)" fg:x="129468" fg:w="557"/><text x="58.3647%" y="815.50"></text></g><g><title>inode_permission.part.0 (115 samples, 0.05%)</title><rect x="58.4460%" y="757" width="0.0516%" height="15" fill="rgb(223,8,52)" fg:x="130206" fg:w="115"/><text x="58.6960%" y="767.50"></text></g><g><title>generic_permission (32 samples, 0.01%)</title><rect x="58.4833%" y="741" width="0.0144%" height="15" fill="rgb(246,42,21)" fg:x="130289" fg:w="32"/><text x="58.7333%" y="751.50"></text></g><g><title>lookup_fast (197 samples, 0.09%)</title><rect x="58.5237%" y="741" width="0.0884%" height="15" fill="rgb(205,64,43)" fg:x="130379" fg:w="197"/><text x="58.7737%" y="751.50"></text></g><g><title>__d_lookup_rcu (158 samples, 0.07%)</title><rect x="58.5412%" y="725" width="0.0709%" height="15" fill="rgb(221,160,13)" fg:x="130418" fg:w="158"/><text x="58.7912%" y="735.50"></text></g><g><title>page_get_link (41 samples, 0.02%)</title><rect x="58.6489%" y="725" width="0.0184%" height="15" fill="rgb(239,58,35)" fg:x="130658" fg:w="41"/><text x="58.8989%" y="735.50"></text></g><g><title>pagecache_get_page (37 samples, 0.02%)</title><rect x="58.6507%" y="709" width="0.0166%" height="15" fill="rgb(251,26,40)" fg:x="130662" fg:w="37"/><text x="58.9007%" y="719.50"></text></g><g><title>find_get_entry (32 samples, 0.01%)</title><rect x="58.6529%" y="693" width="0.0144%" height="15" fill="rgb(247,0,4)" fg:x="130667" fg:w="32"/><text x="58.9029%" y="703.50"></text></g><g><title>link_path_walk.part.0 (632 samples, 0.28%)</title><rect x="58.3854%" y="773" width="0.2837%" height="15" fill="rgb(218,130,10)" fg:x="130071" fg:w="632"/><text x="58.6354%" y="783.50"></text></g><g><title>walk_component (372 samples, 0.17%)</title><rect x="58.5021%" y="757" width="0.1670%" height="15" fill="rgb(239,32,7)" fg:x="130331" fg:w="372"/><text x="58.7521%" y="767.50"></text></g><g><title>step_into (123 samples, 0.06%)</title><rect x="58.6139%" y="741" width="0.0552%" height="15" fill="rgb(210,192,24)" fg:x="130580" fg:w="123"/><text x="58.8639%" y="751.50"></text></g><g><title>path_lookupat (688 samples, 0.31%)</title><rect x="58.3751%" y="789" width="0.3088%" height="15" fill="rgb(226,212,17)" fg:x="130048" fg:w="688"/><text x="58.6251%" y="799.50"></text></g><g><title>filename_lookup (713 samples, 0.32%)</title><rect x="58.3648%" y="805" width="0.3200%" height="15" fill="rgb(219,201,28)" fg:x="130025" fg:w="713"/><text x="58.6148%" y="815.50"></text></g><g><title>memset_erms (68 samples, 0.03%)</title><rect x="58.6969%" y="773" width="0.0305%" height="15" fill="rgb(235,207,41)" fg:x="130765" fg:w="68"/><text x="58.9469%" y="783.50"></text></g><g><title>kmem_cache_alloc (109 samples, 0.05%)</title><rect x="58.6884%" y="789" width="0.0489%" height="15" fill="rgb(241,95,54)" fg:x="130746" fg:w="109"/><text x="58.9384%" y="799.50"></text></g><g><title>getname_flags.part.0 (201 samples, 0.09%)</title><rect x="58.6861%" y="805" width="0.0902%" height="15" fill="rgb(248,12,23)" fg:x="130741" fg:w="201"/><text x="58.9361%" y="815.50"></text></g><g><title>strncpy_from_user (87 samples, 0.04%)</title><rect x="58.7373%" y="789" width="0.0391%" height="15" fill="rgb(228,173,4)" fg:x="130855" fg:w="87"/><text x="58.9873%" y="799.50"></text></g><g><title>__check_object_size (43 samples, 0.02%)</title><rect x="58.7571%" y="773" width="0.0193%" height="15" fill="rgb(254,99,5)" fg:x="130899" fg:w="43"/><text x="59.0071%" y="783.50"></text></g><g><title>security_path_link (35 samples, 0.02%)</title><rect x="58.7907%" y="805" width="0.0157%" height="15" fill="rgb(212,184,17)" fg:x="130974" fg:w="35"/><text x="59.0407%" y="815.50"></text></g><g><title>tomoyo_path_link (23 samples, 0.01%)</title><rect x="58.7961%" y="789" width="0.0103%" height="15" fill="rgb(252,174,1)" fg:x="130986" fg:w="23"/><text x="59.0461%" y="799.50"></text></g><g><title>btrfs_trans_release_metadata (48 samples, 0.02%)</title><rect x="58.8513%" y="757" width="0.0215%" height="15" fill="rgb(241,118,51)" fg:x="131109" fg:w="48"/><text x="59.1013%" y="767.50"></text></g><g><title>btrfs_block_rsv_release (41 samples, 0.02%)</title><rect x="58.8545%" y="741" width="0.0184%" height="15" fill="rgb(227,94,47)" fg:x="131116" fg:w="41"/><text x="59.1045%" y="751.50"></text></g><g><title>__btrfs_end_transaction (120 samples, 0.05%)</title><rect x="58.8262%" y="773" width="0.0539%" height="15" fill="rgb(229,104,2)" fg:x="131053" fg:w="120"/><text x="59.0762%" y="783.50"></text></g><g><title>btrfs_comp_cpu_keys (23 samples, 0.01%)</title><rect x="58.9182%" y="709" width="0.0103%" height="15" fill="rgb(219,28,31)" fg:x="131258" fg:w="23"/><text x="59.1682%" y="719.50"></text></g><g><title>__btrfs_add_delayed_item (57 samples, 0.03%)</title><rect x="58.9061%" y="725" width="0.0256%" height="15" fill="rgb(233,109,36)" fg:x="131231" fg:w="57"/><text x="59.1561%" y="735.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (37 samples, 0.02%)</title><rect x="58.9317%" y="725" width="0.0166%" height="15" fill="rgb(246,88,11)" fg:x="131288" fg:w="37"/><text x="59.1817%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="58.9640%" y="645" width="0.0117%" height="15" fill="rgb(209,212,17)" fg:x="131360" fg:w="26"/><text x="59.2140%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="58.9644%" y="629" width="0.0112%" height="15" fill="rgb(243,59,29)" fg:x="131361" fg:w="25"/><text x="59.2144%" y="639.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="58.9644%" y="613" width="0.0112%" height="15" fill="rgb(244,205,48)" fg:x="131361" fg:w="25"/><text x="59.2144%" y="623.50"></text></g><g><title>finish_task_switch (29 samples, 0.01%)</title><rect x="58.9640%" y="661" width="0.0130%" height="15" fill="rgb(227,30,6)" fg:x="131360" fg:w="29"/><text x="59.2140%" y="671.50"></text></g><g><title>_cond_resched (34 samples, 0.02%)</title><rect x="58.9631%" y="693" width="0.0153%" height="15" fill="rgb(220,205,48)" fg:x="131358" fg:w="34"/><text x="59.2131%" y="703.50"></text></g><g><title>__schedule (34 samples, 0.02%)</title><rect x="58.9631%" y="677" width="0.0153%" height="15" fill="rgb(250,94,14)" fg:x="131358" fg:w="34"/><text x="59.2131%" y="687.50"></text></g><g><title>__kmalloc (68 samples, 0.03%)</title><rect x="58.9483%" y="725" width="0.0305%" height="15" fill="rgb(216,119,42)" fg:x="131325" fg:w="68"/><text x="59.1983%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (42 samples, 0.02%)</title><rect x="58.9600%" y="709" width="0.0189%" height="15" fill="rgb(232,155,0)" fg:x="131351" fg:w="42"/><text x="59.2100%" y="719.50"></text></g><g><title>mutex_spin_on_owner (25 samples, 0.01%)</title><rect x="58.9788%" y="709" width="0.0112%" height="15" fill="rgb(212,24,32)" fg:x="131393" fg:w="25"/><text x="59.2288%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.02%)</title><rect x="58.9914%" y="645" width="0.0238%" height="15" fill="rgb(216,69,20)" fg:x="131421" fg:w="53"/><text x="59.2414%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.02%)</title><rect x="58.9923%" y="629" width="0.0229%" height="15" fill="rgb(229,73,31)" fg:x="131423" fg:w="51"/><text x="59.2423%" y="639.50"></text></g><g><title>native_write_msr (50 samples, 0.02%)</title><rect x="58.9927%" y="613" width="0.0224%" height="15" fill="rgb(224,219,20)" fg:x="131424" fg:w="50"/><text x="59.2427%" y="623.50"></text></g><g><title>finish_task_switch (57 samples, 0.03%)</title><rect x="58.9900%" y="661" width="0.0256%" height="15" fill="rgb(215,146,41)" fg:x="131418" fg:w="57"/><text x="59.2400%" y="671.50"></text></g><g><title>__mutex_lock.constprop.0 (83 samples, 0.04%)</title><rect x="58.9788%" y="725" width="0.0373%" height="15" fill="rgb(244,71,31)" fg:x="131393" fg:w="83"/><text x="59.2288%" y="735.50"></text></g><g><title>schedule_preempt_disabled (58 samples, 0.03%)</title><rect x="58.9900%" y="709" width="0.0260%" height="15" fill="rgb(224,24,11)" fg:x="131418" fg:w="58"/><text x="59.2400%" y="719.50"></text></g><g><title>schedule (58 samples, 0.03%)</title><rect x="58.9900%" y="693" width="0.0260%" height="15" fill="rgb(229,76,15)" fg:x="131418" fg:w="58"/><text x="59.2400%" y="703.50"></text></g><g><title>__schedule (58 samples, 0.03%)</title><rect x="58.9900%" y="677" width="0.0260%" height="15" fill="rgb(209,93,2)" fg:x="131418" fg:w="58"/><text x="59.2400%" y="687.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (31 samples, 0.01%)</title><rect x="59.0161%" y="725" width="0.0139%" height="15" fill="rgb(216,200,50)" fg:x="131476" fg:w="31"/><text x="59.2661%" y="735.50"></text></g><g><title>btrfs_block_rsv_migrate (27 samples, 0.01%)</title><rect x="59.0179%" y="709" width="0.0121%" height="15" fill="rgb(211,67,34)" fg:x="131480" fg:w="27"/><text x="59.2679%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (24 samples, 0.01%)</title><rect x="59.0300%" y="725" width="0.0108%" height="15" fill="rgb(225,87,47)" fg:x="131507" fg:w="24"/><text x="59.2800%" y="735.50"></text></g><g><title>btrfs_insert_delayed_dir_index (323 samples, 0.14%)</title><rect x="58.9021%" y="741" width="0.1450%" height="15" fill="rgb(217,185,16)" fg:x="131222" fg:w="323"/><text x="59.1521%" y="751.50"></text></g><g><title>free_extent_buffer.part.0 (32 samples, 0.01%)</title><rect x="59.0556%" y="725" width="0.0144%" height="15" fill="rgb(205,0,0)" fg:x="131564" fg:w="32"/><text x="59.3056%" y="735.50"></text></g><g><title>btrfs_release_path (48 samples, 0.02%)</title><rect x="59.0529%" y="741" width="0.0215%" height="15" fill="rgb(207,116,45)" fg:x="131558" fg:w="48"/><text x="59.3029%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.02%)</title><rect x="59.1269%" y="613" width="0.0215%" height="15" fill="rgb(221,156,26)" fg:x="131723" fg:w="48"/><text x="59.3769%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (47 samples, 0.02%)</title><rect x="59.1274%" y="597" width="0.0211%" height="15" fill="rgb(213,140,4)" fg:x="131724" fg:w="47"/><text x="59.3774%" y="607.50"></text></g><g><title>native_write_msr (44 samples, 0.02%)</title><rect x="59.1287%" y="581" width="0.0198%" height="15" fill="rgb(231,224,15)" fg:x="131727" fg:w="44"/><text x="59.3787%" y="591.50"></text></g><g><title>finish_task_switch (52 samples, 0.02%)</title><rect x="59.1260%" y="629" width="0.0233%" height="15" fill="rgb(244,76,20)" fg:x="131721" fg:w="52"/><text x="59.3760%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.04%)</title><rect x="59.1099%" y="677" width="0.0404%" height="15" fill="rgb(238,117,7)" fg:x="131685" fg:w="90"/><text x="59.3599%" y="687.50"></text></g><g><title>schedule (54 samples, 0.02%)</title><rect x="59.1260%" y="661" width="0.0242%" height="15" fill="rgb(235,1,10)" fg:x="131721" fg:w="54"/><text x="59.3760%" y="671.50"></text></g><g><title>__schedule (54 samples, 0.02%)</title><rect x="59.1260%" y="645" width="0.0242%" height="15" fill="rgb(216,165,6)" fg:x="131721" fg:w="54"/><text x="59.3760%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (97 samples, 0.04%)</title><rect x="59.1094%" y="693" width="0.0435%" height="15" fill="rgb(246,91,35)" fg:x="131684" fg:w="97"/><text x="59.3594%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (486 samples, 0.22%)</title><rect x="59.1907%" y="629" width="0.2182%" height="15" fill="rgb(228,96,24)" fg:x="131865" fg:w="486"/><text x="59.4407%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (471 samples, 0.21%)</title><rect x="59.1974%" y="613" width="0.2114%" height="15" fill="rgb(254,217,53)" fg:x="131880" fg:w="471"/><text x="59.4474%" y="623.50"></text></g><g><title>native_write_msr (466 samples, 0.21%)</title><rect x="59.1997%" y="597" width="0.2092%" height="15" fill="rgb(209,60,0)" fg:x="131885" fg:w="466"/><text x="59.4497%" y="607.50"></text></g><g><title>finish_task_switch (527 samples, 0.24%)</title><rect x="59.1826%" y="645" width="0.2366%" height="15" fill="rgb(250,93,26)" fg:x="131847" fg:w="527"/><text x="59.4326%" y="655.50"></text></g><g><title>__btrfs_tree_lock (619 samples, 0.28%)</title><rect x="59.1530%" y="693" width="0.2779%" height="15" fill="rgb(211,9,40)" fg:x="131781" fg:w="619"/><text x="59.4030%" y="703.50"></text></g><g><title>schedule (588 samples, 0.26%)</title><rect x="59.1669%" y="677" width="0.2639%" height="15" fill="rgb(242,57,20)" fg:x="131812" fg:w="588"/><text x="59.4169%" y="687.50"></text></g><g><title>__schedule (585 samples, 0.26%)</title><rect x="59.1682%" y="661" width="0.2626%" height="15" fill="rgb(248,85,48)" fg:x="131815" fg:w="585"/><text x="59.4182%" y="671.50"></text></g><g><title>btrfs_leaf_free_space (23 samples, 0.01%)</title><rect x="59.4317%" y="693" width="0.0103%" height="15" fill="rgb(212,117,2)" fg:x="132402" fg:w="23"/><text x="59.6817%" y="703.50"></text></g><g><title>btrfs_try_tree_write_lock (110 samples, 0.05%)</title><rect x="59.4438%" y="693" width="0.0494%" height="15" fill="rgb(243,19,3)" fg:x="132429" fg:w="110"/><text x="59.6938%" y="703.50"></text></g><g><title>queued_write_lock_slowpath (99 samples, 0.04%)</title><rect x="59.4488%" y="677" width="0.0444%" height="15" fill="rgb(232,217,24)" fg:x="132440" fg:w="99"/><text x="59.6988%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (106 samples, 0.05%)</title><rect x="59.4932%" y="693" width="0.0476%" height="15" fill="rgb(224,175,40)" fg:x="132539" fg:w="106"/><text x="59.7432%" y="703.50"></text></g><g><title>__radix_tree_lookup (52 samples, 0.02%)</title><rect x="59.5740%" y="661" width="0.0233%" height="15" fill="rgb(212,162,32)" fg:x="132719" fg:w="52"/><text x="59.8240%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (27 samples, 0.01%)</title><rect x="59.5974%" y="661" width="0.0121%" height="15" fill="rgb(215,9,4)" fg:x="132771" fg:w="27"/><text x="59.8474%" y="671.50"></text></g><g><title>find_extent_buffer (112 samples, 0.05%)</title><rect x="59.5597%" y="677" width="0.0503%" height="15" fill="rgb(242,42,7)" fg:x="132687" fg:w="112"/><text x="59.8097%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (166 samples, 0.07%)</title><rect x="59.5408%" y="693" width="0.0745%" height="15" fill="rgb(242,184,45)" fg:x="132645" fg:w="166"/><text x="59.7908%" y="703.50"></text></g><g><title>alloc_tree_block_no_bg_flush (27 samples, 0.01%)</title><rect x="59.6171%" y="677" width="0.0121%" height="15" fill="rgb(228,111,51)" fg:x="132815" fg:w="27"/><text x="59.8671%" y="687.50"></text></g><g><title>btrfs_alloc_tree_block (27 samples, 0.01%)</title><rect x="59.6171%" y="661" width="0.0121%" height="15" fill="rgb(236,147,17)" fg:x="132815" fg:w="27"/><text x="59.8671%" y="671.50"></text></g><g><title>__push_leaf_left (50 samples, 0.02%)</title><rect x="59.6337%" y="661" width="0.0224%" height="15" fill="rgb(210,75,22)" fg:x="132852" fg:w="50"/><text x="59.8837%" y="671.50"></text></g><g><title>push_leaf_left (54 samples, 0.02%)</title><rect x="59.6337%" y="677" width="0.0242%" height="15" fill="rgb(217,159,45)" fg:x="132852" fg:w="54"/><text x="59.8837%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="59.6607%" y="597" width="0.0117%" height="15" fill="rgb(245,165,53)" fg:x="132912" fg:w="26"/><text x="59.9107%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="59.6607%" y="581" width="0.0117%" height="15" fill="rgb(251,190,50)" fg:x="132912" fg:w="26"/><text x="59.9107%" y="591.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="59.6607%" y="565" width="0.0117%" height="15" fill="rgb(208,203,29)" fg:x="132912" fg:w="26"/><text x="59.9107%" y="575.50"></text></g><g><title>__btrfs_tree_lock (31 samples, 0.01%)</title><rect x="59.6589%" y="661" width="0.0139%" height="15" fill="rgb(207,209,35)" fg:x="132908" fg:w="31"/><text x="59.9089%" y="671.50"></text></g><g><title>schedule (27 samples, 0.01%)</title><rect x="59.6607%" y="645" width="0.0121%" height="15" fill="rgb(230,144,49)" fg:x="132912" fg:w="27"/><text x="59.9107%" y="655.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="59.6607%" y="629" width="0.0121%" height="15" fill="rgb(229,31,6)" fg:x="132912" fg:w="27"/><text x="59.9107%" y="639.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="59.6607%" y="613" width="0.0121%" height="15" fill="rgb(251,129,24)" fg:x="132912" fg:w="27"/><text x="59.9107%" y="623.50"></text></g><g><title>__push_leaf_right (75 samples, 0.03%)</title><rect x="59.6728%" y="661" width="0.0337%" height="15" fill="rgb(235,105,15)" fg:x="132939" fg:w="75"/><text x="59.9228%" y="671.50"></text></g><g><title>split_leaf (214 samples, 0.10%)</title><rect x="59.6153%" y="693" width="0.0961%" height="15" fill="rgb(216,52,43)" fg:x="132811" fg:w="214"/><text x="59.8653%" y="703.50"></text></g><g><title>push_leaf_right (119 samples, 0.05%)</title><rect x="59.6580%" y="677" width="0.0534%" height="15" fill="rgb(238,144,41)" fg:x="132906" fg:w="119"/><text x="59.9080%" y="687.50"></text></g><g><title>ttwu_do_activate (33 samples, 0.01%)</title><rect x="59.7423%" y="613" width="0.0148%" height="15" fill="rgb(243,63,9)" fg:x="133094" fg:w="33"/><text x="59.9923%" y="623.50"></text></g><g><title>__wake_up_common (96 samples, 0.04%)</title><rect x="59.7172%" y="661" width="0.0431%" height="15" fill="rgb(246,208,1)" fg:x="133038" fg:w="96"/><text x="59.9672%" y="671.50"></text></g><g><title>autoremove_wake_function (93 samples, 0.04%)</title><rect x="59.7186%" y="645" width="0.0417%" height="15" fill="rgb(233,182,18)" fg:x="133041" fg:w="93"/><text x="59.9686%" y="655.50"></text></g><g><title>try_to_wake_up (88 samples, 0.04%)</title><rect x="59.7208%" y="629" width="0.0395%" height="15" fill="rgb(242,224,8)" fg:x="133046" fg:w="88"/><text x="59.9708%" y="639.50"></text></g><g><title>__wake_up_common_lock (97 samples, 0.04%)</title><rect x="59.7172%" y="677" width="0.0435%" height="15" fill="rgb(243,54,37)" fg:x="133038" fg:w="97"/><text x="59.9672%" y="687.50"></text></g><g><title>btrfs_search_slot (1,496 samples, 0.67%)</title><rect x="59.0973%" y="709" width="0.6715%" height="15" fill="rgb(233,192,12)" fg:x="131657" fg:w="1496"/><text x="59.3473%" y="719.50"></text></g><g><title>unlock_up (128 samples, 0.06%)</title><rect x="59.7114%" y="693" width="0.0575%" height="15" fill="rgb(251,192,53)" fg:x="133025" fg:w="128"/><text x="59.9614%" y="703.50"></text></g><g><title>btrfs_get_token_32 (281 samples, 0.13%)</title><rect x="59.8011%" y="693" width="0.1261%" height="15" fill="rgb(246,141,26)" fg:x="133225" fg:w="281"/><text x="60.0511%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (37 samples, 0.02%)</title><rect x="59.9107%" y="677" width="0.0166%" height="15" fill="rgb(239,195,19)" fg:x="133469" fg:w="37"/><text x="60.1607%" y="687.50"></text></g><g><title>btrfs_leaf_free_space (37 samples, 0.02%)</title><rect x="59.9273%" y="693" width="0.0166%" height="15" fill="rgb(241,16,39)" fg:x="133506" fg:w="37"/><text x="60.1773%" y="703.50"></text></g><g><title>leaf_space_used (33 samples, 0.01%)</title><rect x="59.9291%" y="677" width="0.0148%" height="15" fill="rgb(223,13,53)" fg:x="133510" fg:w="33"/><text x="60.1791%" y="687.50"></text></g><g><title>btrfs_get_32 (25 samples, 0.01%)</title><rect x="59.9327%" y="661" width="0.0112%" height="15" fill="rgb(214,227,0)" fg:x="133518" fg:w="25"/><text x="60.1827%" y="671.50"></text></g><g><title>btrfs_set_token_32 (230 samples, 0.10%)</title><rect x="59.9475%" y="693" width="0.1032%" height="15" fill="rgb(228,103,26)" fg:x="133551" fg:w="230"/><text x="60.1975%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (36 samples, 0.02%)</title><rect x="60.0346%" y="677" width="0.0162%" height="15" fill="rgb(254,177,53)" fg:x="133745" fg:w="36"/><text x="60.2846%" y="687.50"></text></g><g><title>memcpy_extent_buffer (80 samples, 0.04%)</title><rect x="60.0588%" y="693" width="0.0359%" height="15" fill="rgb(208,201,34)" fg:x="133799" fg:w="80"/><text x="60.3088%" y="703.50"></text></g><g><title>memmove (62 samples, 0.03%)</title><rect x="60.0669%" y="677" width="0.0278%" height="15" fill="rgb(212,39,5)" fg:x="133817" fg:w="62"/><text x="60.3169%" y="687.50"></text></g><g><title>memmove_extent_buffer (80 samples, 0.04%)</title><rect x="60.0947%" y="693" width="0.0359%" height="15" fill="rgb(246,117,3)" fg:x="133879" fg:w="80"/><text x="60.3447%" y="703.50"></text></g><g><title>memmove (55 samples, 0.02%)</title><rect x="60.1059%" y="677" width="0.0247%" height="15" fill="rgb(244,118,39)" fg:x="133904" fg:w="55"/><text x="60.3559%" y="687.50"></text></g><g><title>insert_with_overflow (2,331 samples, 1.05%)</title><rect x="59.0892%" y="741" width="1.0463%" height="15" fill="rgb(241,64,10)" fg:x="131639" fg:w="2331"/><text x="59.3392%" y="751.50"></text></g><g><title>btrfs_insert_empty_items (2,314 samples, 1.04%)</title><rect x="59.0969%" y="725" width="1.0387%" height="15" fill="rgb(229,39,44)" fg:x="131656" fg:w="2314"/><text x="59.3469%" y="735.50"></text></g><g><title>setup_items_for_insert (817 samples, 0.37%)</title><rect x="59.7688%" y="709" width="0.3667%" height="15" fill="rgb(230,226,3)" fg:x="133153" fg:w="817"/><text x="60.0188%" y="719.50"></text></g><g><title>btrfs_insert_dir_item (2,826 samples, 1.27%)</title><rect x="58.8922%" y="757" width="1.2685%" height="15" fill="rgb(222,13,42)" fg:x="131200" fg:w="2826"/><text x="59.1422%" y="767.50"></text></g><g><title>write_extent_buffer (23 samples, 0.01%)</title><rect x="60.1504%" y="741" width="0.0103%" height="15" fill="rgb(247,180,54)" fg:x="134003" fg:w="23"/><text x="60.4004%" y="751.50"></text></g><g><title>free_extent_buffer.part.0 (25 samples, 0.01%)</title><rect x="60.1701%" y="709" width="0.0112%" height="15" fill="rgb(205,96,16)" fg:x="134047" fg:w="25"/><text x="60.4201%" y="719.50"></text></g><g><title>btrfs_free_path (32 samples, 0.01%)</title><rect x="60.1692%" y="741" width="0.0144%" height="15" fill="rgb(205,100,21)" fg:x="134045" fg:w="32"/><text x="60.4192%" y="751.50"></text></g><g><title>btrfs_release_path (32 samples, 0.01%)</title><rect x="60.1692%" y="725" width="0.0144%" height="15" fill="rgb(248,51,4)" fg:x="134045" fg:w="32"/><text x="60.4192%" y="735.50"></text></g><g><title>queued_read_lock_slowpath (28 samples, 0.01%)</title><rect x="60.2186%" y="677" width="0.0126%" height="15" fill="rgb(217,197,30)" fg:x="134155" fg:w="28"/><text x="60.4686%" y="687.50"></text></g><g><title>finish_task_switch (48 samples, 0.02%)</title><rect x="60.2343%" y="645" width="0.0215%" height="15" fill="rgb(240,179,40)" fg:x="134190" fg:w="48"/><text x="60.4843%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.02%)</title><rect x="60.2343%" y="629" width="0.0215%" height="15" fill="rgb(212,185,35)" fg:x="134190" fg:w="48"/><text x="60.4843%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.02%)</title><rect x="60.2352%" y="613" width="0.0206%" height="15" fill="rgb(251,222,31)" fg:x="134192" fg:w="46"/><text x="60.4852%" y="623.50"></text></g><g><title>native_write_msr (45 samples, 0.02%)</title><rect x="60.2357%" y="597" width="0.0202%" height="15" fill="rgb(208,140,36)" fg:x="134193" fg:w="45"/><text x="60.4857%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (110 samples, 0.05%)</title><rect x="60.2092%" y="693" width="0.0494%" height="15" fill="rgb(220,148,1)" fg:x="134134" fg:w="110"/><text x="60.4592%" y="703.50"></text></g><g><title>schedule (61 samples, 0.03%)</title><rect x="60.2312%" y="677" width="0.0274%" height="15" fill="rgb(254,4,28)" fg:x="134183" fg:w="61"/><text x="60.4812%" y="687.50"></text></g><g><title>__schedule (61 samples, 0.03%)</title><rect x="60.2312%" y="661" width="0.0274%" height="15" fill="rgb(222,185,44)" fg:x="134183" fg:w="61"/><text x="60.4812%" y="671.50"></text></g><g><title>__btrfs_read_lock_root_node (136 samples, 0.06%)</title><rect x="60.2078%" y="709" width="0.0610%" height="15" fill="rgb(215,74,39)" fg:x="134131" fg:w="136"/><text x="60.4578%" y="719.50"></text></g><g><title>btrfs_root_node (23 samples, 0.01%)</title><rect x="60.2586%" y="693" width="0.0103%" height="15" fill="rgb(247,86,4)" fg:x="134244" fg:w="23"/><text x="60.5086%" y="703.50"></text></g><g><title>btrfs_try_tree_write_lock (70 samples, 0.03%)</title><rect x="60.2747%" y="709" width="0.0314%" height="15" fill="rgb(231,105,32)" fg:x="134280" fg:w="70"/><text x="60.5247%" y="719.50"></text></g><g><title>queued_write_lock_slowpath (55 samples, 0.02%)</title><rect x="60.2814%" y="693" width="0.0247%" height="15" fill="rgb(222,65,35)" fg:x="134295" fg:w="55"/><text x="60.5314%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (113 samples, 0.05%)</title><rect x="60.3061%" y="709" width="0.0507%" height="15" fill="rgb(218,145,35)" fg:x="134350" fg:w="113"/><text x="60.5561%" y="719.50"></text></g><g><title>__radix_tree_lookup (62 samples, 0.03%)</title><rect x="60.4013%" y="677" width="0.0278%" height="15" fill="rgb(208,7,15)" fg:x="134562" fg:w="62"/><text x="60.6513%" y="687.50"></text></g><g><title>mark_extent_buffer_accessed (42 samples, 0.02%)</title><rect x="60.4300%" y="677" width="0.0189%" height="15" fill="rgb(209,83,13)" fg:x="134626" fg:w="42"/><text x="60.6800%" y="687.50"></text></g><g><title>mark_page_accessed (31 samples, 0.01%)</title><rect x="60.4350%" y="661" width="0.0139%" height="15" fill="rgb(218,3,10)" fg:x="134637" fg:w="31"/><text x="60.6850%" y="671.50"></text></g><g><title>find_extent_buffer (143 samples, 0.06%)</title><rect x="60.3851%" y="693" width="0.0642%" height="15" fill="rgb(211,219,4)" fg:x="134526" fg:w="143"/><text x="60.6351%" y="703.50"></text></g><g><title>read_block_for_search.isra.0 (228 samples, 0.10%)</title><rect x="60.3569%" y="709" width="0.1023%" height="15" fill="rgb(228,194,12)" fg:x="134463" fg:w="228"/><text x="60.6069%" y="719.50"></text></g><g><title>btrfs_search_slot (646 samples, 0.29%)</title><rect x="60.1876%" y="725" width="0.2900%" height="15" fill="rgb(210,175,7)" fg:x="134086" fg:w="646"/><text x="60.4376%" y="735.50"></text></g><g><title>unlock_up (39 samples, 0.02%)</title><rect x="60.4601%" y="709" width="0.0175%" height="15" fill="rgb(243,132,6)" fg:x="134693" fg:w="39"/><text x="60.7101%" y="719.50"></text></g><g><title>btrfs_get_token_32 (180 samples, 0.08%)</title><rect x="60.5050%" y="709" width="0.0808%" height="15" fill="rgb(207,72,18)" fg:x="134793" fg:w="180"/><text x="60.7550%" y="719.50"></text></g><g><title>btrfs_leaf_free_space (23 samples, 0.01%)</title><rect x="60.5858%" y="709" width="0.0103%" height="15" fill="rgb(236,1,18)" fg:x="134973" fg:w="23"/><text x="60.8358%" y="719.50"></text></g><g><title>btrfs_set_token_32 (134 samples, 0.06%)</title><rect x="60.6028%" y="709" width="0.0601%" height="15" fill="rgb(227,0,18)" fg:x="135011" fg:w="134"/><text x="60.8528%" y="719.50"></text></g><g><title>memcpy_extent_buffer (111 samples, 0.05%)</title><rect x="60.6643%" y="709" width="0.0498%" height="15" fill="rgb(247,37,5)" fg:x="135148" fg:w="111"/><text x="60.9143%" y="719.50"></text></g><g><title>memmove (90 samples, 0.04%)</title><rect x="60.6738%" y="693" width="0.0404%" height="15" fill="rgb(237,179,24)" fg:x="135169" fg:w="90"/><text x="60.9238%" y="703.50"></text></g><g><title>memmove_extent_buffer (50 samples, 0.02%)</title><rect x="60.7142%" y="709" width="0.0224%" height="15" fill="rgb(226,53,20)" fg:x="135259" fg:w="50"/><text x="60.9642%" y="719.50"></text></g><g><title>memmove (35 samples, 0.02%)</title><rect x="60.7209%" y="693" width="0.0157%" height="15" fill="rgb(247,75,7)" fg:x="135274" fg:w="35"/><text x="60.9709%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (1,240 samples, 0.56%)</title><rect x="60.1840%" y="741" width="0.5566%" height="15" fill="rgb(233,96,12)" fg:x="134078" fg:w="1240"/><text x="60.4340%" y="751.50"></text></g><g><title>setup_items_for_insert (586 samples, 0.26%)</title><rect x="60.4776%" y="725" width="0.2630%" height="15" fill="rgb(224,125,0)" fg:x="134732" fg:w="586"/><text x="60.7276%" y="735.50"></text></g><g><title>kmem_cache_alloc (23 samples, 0.01%)</title><rect x="60.7514%" y="741" width="0.0103%" height="15" fill="rgb(224,92,25)" fg:x="135342" fg:w="23"/><text x="61.0014%" y="751.50"></text></g><g><title>btrfs_insert_inode_ref (1,368 samples, 0.61%)</title><rect x="60.1607%" y="757" width="0.6141%" height="15" fill="rgb(224,42,24)" fg:x="134026" fg:w="1368"/><text x="60.4107%" y="767.50"></text></g><g><title>btrfs_delayed_update_inode (69 samples, 0.03%)</title><rect x="60.7815%" y="741" width="0.0310%" height="15" fill="rgb(234,132,49)" fg:x="135409" fg:w="69"/><text x="61.0315%" y="751.50"></text></g><g><title>btrfs_update_inode (115 samples, 0.05%)</title><rect x="60.7748%" y="757" width="0.0516%" height="15" fill="rgb(248,100,35)" fg:x="135394" fg:w="115"/><text x="61.0248%" y="767.50"></text></g><g><title>btrfs_update_root_times (31 samples, 0.01%)</title><rect x="60.8125%" y="741" width="0.0139%" height="15" fill="rgb(239,94,40)" fg:x="135478" fg:w="31"/><text x="61.0625%" y="751.50"></text></g><g><title>btrfs_add_link (4,344 samples, 1.95%)</title><rect x="58.8801%" y="773" width="1.9499%" height="15" fill="rgb(235,139,28)" fg:x="131173" fg:w="4344"/><text x="59.1301%" y="783.50">b..</text></g><g><title>btrfs_balance_delayed_items (24 samples, 0.01%)</title><rect x="60.8327%" y="757" width="0.0108%" height="15" fill="rgb(217,144,7)" fg:x="135523" fg:w="24"/><text x="61.0827%" y="767.50"></text></g><g><title>ttwu_do_activate (32 samples, 0.01%)</title><rect x="60.8681%" y="709" width="0.0144%" height="15" fill="rgb(227,55,4)" fg:x="135602" fg:w="32"/><text x="61.1181%" y="719.50"></text></g><g><title>__queue_work (94 samples, 0.04%)</title><rect x="60.8448%" y="741" width="0.0422%" height="15" fill="rgb(252,82,54)" fg:x="135550" fg:w="94"/><text x="61.0948%" y="751.50"></text></g><g><title>try_to_wake_up (66 samples, 0.03%)</title><rect x="60.8573%" y="725" width="0.0296%" height="15" fill="rgb(245,172,4)" fg:x="135578" fg:w="66"/><text x="61.1073%" y="735.50"></text></g><g><title>btrfs_btree_balance_dirty (129 samples, 0.06%)</title><rect x="60.8300%" y="773" width="0.0579%" height="15" fill="rgb(207,26,27)" fg:x="135517" fg:w="129"/><text x="61.0800%" y="783.50"></text></g><g><title>queue_work_on (97 samples, 0.04%)</title><rect x="60.8443%" y="757" width="0.0435%" height="15" fill="rgb(252,98,18)" fg:x="135549" fg:w="97"/><text x="61.0943%" y="767.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (33 samples, 0.01%)</title><rect x="60.9009%" y="741" width="0.0148%" height="15" fill="rgb(244,8,26)" fg:x="135675" fg:w="33"/><text x="61.1509%" y="751.50"></text></g><g><title>btrfs_get_or_create_delayed_node (32 samples, 0.01%)</title><rect x="60.9215%" y="741" width="0.0144%" height="15" fill="rgb(237,173,45)" fg:x="135721" fg:w="32"/><text x="61.1715%" y="751.50"></text></g><g><title>btrfs_get_delayed_node (31 samples, 0.01%)</title><rect x="60.9220%" y="725" width="0.0139%" height="15" fill="rgb(208,213,49)" fg:x="135722" fg:w="31"/><text x="61.1720%" y="735.50"></text></g><g><title>btrfs_delayed_update_inode (112 samples, 0.05%)</title><rect x="60.8951%" y="757" width="0.0503%" height="15" fill="rgb(212,122,37)" fg:x="135662" fg:w="112"/><text x="61.1451%" y="767.50"></text></g><g><title>btrfs_update_inode (122 samples, 0.05%)</title><rect x="60.8942%" y="773" width="0.0548%" height="15" fill="rgb(213,80,17)" fg:x="135660" fg:w="122"/><text x="61.1442%" y="783.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (39 samples, 0.02%)</title><rect x="61.0050%" y="709" width="0.0175%" height="15" fill="rgb(206,210,43)" fg:x="135907" fg:w="39"/><text x="61.2550%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (133 samples, 0.06%)</title><rect x="60.9794%" y="757" width="0.0597%" height="15" fill="rgb(229,214,3)" fg:x="135850" fg:w="133"/><text x="61.2294%" y="767.50"></text></g><g><title>btrfs_reserve_metadata_bytes (118 samples, 0.05%)</title><rect x="60.9862%" y="741" width="0.0530%" height="15" fill="rgb(235,213,29)" fg:x="135865" fg:w="118"/><text x="61.2362%" y="751.50"></text></g><g><title>__reserve_bytes (107 samples, 0.05%)</title><rect x="60.9911%" y="725" width="0.0480%" height="15" fill="rgb(248,135,26)" fg:x="135876" fg:w="107"/><text x="61.2411%" y="735.50"></text></g><g><title>calc_available_free_space.isra.0 (37 samples, 0.02%)</title><rect x="61.0225%" y="709" width="0.0166%" height="15" fill="rgb(242,188,12)" fg:x="135946" fg:w="37"/><text x="61.2725%" y="719.50"></text></g><g><title>kmem_cache_alloc (42 samples, 0.02%)</title><rect x="61.0472%" y="757" width="0.0189%" height="15" fill="rgb(245,38,12)" fg:x="136001" fg:w="42"/><text x="61.2972%" y="767.50"></text></g><g><title>btrfs_link (5,028 samples, 2.26%)</title><rect x="58.8154%" y="789" width="2.2569%" height="15" fill="rgb(218,42,13)" fg:x="131029" fg:w="5028"/><text x="59.0654%" y="799.50">b..</text></g><g><title>start_transaction (249 samples, 0.11%)</title><rect x="60.9606%" y="773" width="0.1118%" height="15" fill="rgb(238,132,49)" fg:x="135808" fg:w="249"/><text x="61.2106%" y="783.50"></text></g><g><title>fsnotify (25 samples, 0.01%)</title><rect x="61.0751%" y="789" width="0.0112%" height="15" fill="rgb(209,196,19)" fg:x="136063" fg:w="25"/><text x="61.3251%" y="799.50"></text></g><g><title>__x64_sys_link (6,715 samples, 3.01%)</title><rect x="58.0847%" y="837" width="3.0142%" height="15" fill="rgb(244,131,22)" fg:x="129401" fg:w="6715"/><text x="58.3347%" y="847.50">__x..</text></g><g><title>do_linkat (6,711 samples, 3.01%)</title><rect x="58.0865%" y="821" width="3.0124%" height="15" fill="rgb(223,18,34)" fg:x="129405" fg:w="6711"/><text x="58.3365%" y="831.50">do_..</text></g><g><title>vfs_link (5,104 samples, 2.29%)</title><rect x="58.8078%" y="805" width="2.2910%" height="15" fill="rgb(252,124,54)" fg:x="131012" fg:w="5104"/><text x="59.0578%" y="815.50">v..</text></g><g><title>do_syscall_64 (6,720 samples, 3.02%)</title><rect x="58.0829%" y="853" width="3.0164%" height="15" fill="rgb(229,106,42)" fg:x="129397" fg:w="6720"/><text x="58.3329%" y="863.50">do_..</text></g><g><title>entry_SYSCALL_64_after_hwframe (6,738 samples, 3.02%)</title><rect x="58.0793%" y="869" width="3.0245%" height="15" fill="rgb(221,129,1)" fg:x="129389" fg:w="6738"/><text x="58.3293%" y="879.50">ent..</text></g><g><title>__GI___link (6,778 samples, 3.04%)</title><rect x="58.0658%" y="885" width="3.0425%" height="15" fill="rgb(229,74,15)" fg:x="129359" fg:w="6778"/><text x="58.3158%" y="895.50">__G..</text></g><g><title>entry_SYSCALL_64 (29 samples, 0.01%)</title><rect x="61.1195%" y="869" width="0.0130%" height="15" fill="rgb(210,206,50)" fg:x="136162" fg:w="29"/><text x="61.3695%" y="879.50"></text></g><g><title>_copy_to_user (30 samples, 0.01%)</title><rect x="61.1460%" y="805" width="0.0135%" height="15" fill="rgb(251,114,31)" fg:x="136221" fg:w="30"/><text x="61.3960%" y="815.50"></text></g><g><title>copy_user_enhanced_fast_string (26 samples, 0.01%)</title><rect x="61.1478%" y="789" width="0.0117%" height="15" fill="rgb(215,225,28)" fg:x="136225" fg:w="26"/><text x="61.3978%" y="799.50"></text></g><g><title>cp_new_stat (59 samples, 0.03%)</title><rect x="61.1410%" y="821" width="0.0265%" height="15" fill="rgb(237,109,14)" fg:x="136210" fg:w="59"/><text x="61.3910%" y="831.50"></text></g><g><title>btrfs_getattr (111 samples, 0.05%)</title><rect x="61.1716%" y="805" width="0.0498%" height="15" fill="rgb(230,13,37)" fg:x="136278" fg:w="111"/><text x="61.4216%" y="815.50"></text></g><g><title>kmem_cache_free (41 samples, 0.02%)</title><rect x="61.2290%" y="789" width="0.0184%" height="15" fill="rgb(231,40,28)" fg:x="136406" fg:w="41"/><text x="61.4790%" y="799.50"></text></g><g><title>__legitimize_path (30 samples, 0.01%)</title><rect x="61.2582%" y="741" width="0.0135%" height="15" fill="rgb(231,202,18)" fg:x="136471" fg:w="30"/><text x="61.5082%" y="751.50"></text></g><g><title>complete_walk (45 samples, 0.02%)</title><rect x="61.2537%" y="773" width="0.0202%" height="15" fill="rgb(225,33,18)" fg:x="136461" fg:w="45"/><text x="61.5037%" y="783.50"></text></g><g><title>try_to_unlazy (39 samples, 0.02%)</title><rect x="61.2564%" y="757" width="0.0175%" height="15" fill="rgb(223,64,47)" fg:x="136467" fg:w="39"/><text x="61.5064%" y="767.50"></text></g><g><title>inode_permission.part.0 (302 samples, 0.14%)</title><rect x="61.4229%" y="757" width="0.1356%" height="15" fill="rgb(234,114,13)" fg:x="136838" fg:w="302"/><text x="61.6729%" y="767.50"></text></g><g><title>generic_permission (72 samples, 0.03%)</title><rect x="61.5262%" y="741" width="0.0323%" height="15" fill="rgb(248,56,40)" fg:x="137068" fg:w="72"/><text x="61.7762%" y="751.50"></text></g><g><title>security_inode_permission (25 samples, 0.01%)</title><rect x="61.5585%" y="757" width="0.0112%" height="15" fill="rgb(221,194,21)" fg:x="137140" fg:w="25"/><text x="61.8085%" y="767.50"></text></g><g><title>lookup_fast (488 samples, 0.22%)</title><rect x="61.6074%" y="741" width="0.2191%" height="15" fill="rgb(242,108,46)" fg:x="137249" fg:w="488"/><text x="61.8574%" y="751.50"></text></g><g><title>__d_lookup_rcu (403 samples, 0.18%)</title><rect x="61.6456%" y="725" width="0.1809%" height="15" fill="rgb(220,106,10)" fg:x="137334" fg:w="403"/><text x="61.8956%" y="735.50"></text></g><g><title>page_put_link (24 samples, 0.01%)</title><rect x="61.8265%" y="741" width="0.0108%" height="15" fill="rgb(211,88,4)" fg:x="137737" fg:w="24"/><text x="62.0765%" y="751.50"></text></g><g><title>__lookup_mnt (23 samples, 0.01%)</title><rect x="61.8924%" y="725" width="0.0103%" height="15" fill="rgb(214,95,34)" fg:x="137884" fg:w="23"/><text x="62.1424%" y="735.50"></text></g><g><title>page_get_link (61 samples, 0.03%)</title><rect x="61.9118%" y="725" width="0.0274%" height="15" fill="rgb(250,160,33)" fg:x="137927" fg:w="61"/><text x="62.1618%" y="735.50"></text></g><g><title>pagecache_get_page (55 samples, 0.02%)</title><rect x="61.9144%" y="709" width="0.0247%" height="15" fill="rgb(225,29,10)" fg:x="137933" fg:w="55"/><text x="62.1644%" y="719.50"></text></g><g><title>find_get_entry (46 samples, 0.02%)</title><rect x="61.9185%" y="693" width="0.0206%" height="15" fill="rgb(224,28,30)" fg:x="137942" fg:w="46"/><text x="62.1685%" y="703.50"></text></g><g><title>link_path_walk.part.0 (1,486 samples, 0.67%)</title><rect x="61.2739%" y="773" width="0.6670%" height="15" fill="rgb(231,77,4)" fg:x="136506" fg:w="1486"/><text x="61.5239%" y="783.50"></text></g><g><title>walk_component (827 samples, 0.37%)</title><rect x="61.5697%" y="757" width="0.3712%" height="15" fill="rgb(209,63,21)" fg:x="137165" fg:w="827"/><text x="61.8197%" y="767.50"></text></g><g><title>step_into (231 samples, 0.10%)</title><rect x="61.8372%" y="741" width="0.1037%" height="15" fill="rgb(226,22,11)" fg:x="137761" fg:w="231"/><text x="62.0872%" y="751.50"></text></g><g><title>path_init (50 samples, 0.02%)</title><rect x="61.9409%" y="773" width="0.0224%" height="15" fill="rgb(216,82,30)" fg:x="137992" fg:w="50"/><text x="62.1909%" y="783.50"></text></g><g><title>nd_jump_root (32 samples, 0.01%)</title><rect x="61.9490%" y="757" width="0.0144%" height="15" fill="rgb(246,227,38)" fg:x="138010" fg:w="32"/><text x="62.1990%" y="767.50"></text></g><g><title>set_root (25 samples, 0.01%)</title><rect x="61.9522%" y="741" width="0.0112%" height="15" fill="rgb(251,203,53)" fg:x="138017" fg:w="25"/><text x="62.2022%" y="751.50"></text></g><g><title>__d_lookup_rcu (84 samples, 0.04%)</title><rect x="61.9697%" y="741" width="0.0377%" height="15" fill="rgb(254,101,1)" fg:x="138056" fg:w="84"/><text x="62.2197%" y="751.50"></text></g><g><title>lookup_fast (86 samples, 0.04%)</title><rect x="61.9692%" y="757" width="0.0386%" height="15" fill="rgb(241,180,5)" fg:x="138055" fg:w="86"/><text x="62.2192%" y="767.50"></text></g><g><title>path_lookupat (1,698 samples, 0.76%)</title><rect x="61.2474%" y="789" width="0.7622%" height="15" fill="rgb(218,168,4)" fg:x="136447" fg:w="1698"/><text x="61.4974%" y="799.50"></text></g><g><title>walk_component (96 samples, 0.04%)</title><rect x="61.9665%" y="773" width="0.0431%" height="15" fill="rgb(224,223,32)" fg:x="138049" fg:w="96"/><text x="62.2165%" y="783.50"></text></g><g><title>filename_lookup (1,760 samples, 0.79%)</title><rect x="61.2214%" y="805" width="0.7900%" height="15" fill="rgb(236,106,22)" fg:x="136389" fg:w="1760"/><text x="61.4714%" y="815.50"></text></g><g><title>path_put (31 samples, 0.01%)</title><rect x="62.0190%" y="805" width="0.0139%" height="15" fill="rgb(206,121,5)" fg:x="138166" fg:w="31"/><text x="62.2690%" y="815.50"></text></g><g><title>dput (31 samples, 0.01%)</title><rect x="62.0190%" y="789" width="0.0139%" height="15" fill="rgb(233,87,28)" fg:x="138166" fg:w="31"/><text x="62.2690%" y="799.50"></text></g><g><title>security_inode_getattr (116 samples, 0.05%)</title><rect x="62.0329%" y="805" width="0.0521%" height="15" fill="rgb(236,137,17)" fg:x="138197" fg:w="116"/><text x="62.2829%" y="815.50"></text></g><g><title>tomoyo_path_perm (56 samples, 0.03%)</title><rect x="62.0599%" y="789" width="0.0251%" height="15" fill="rgb(209,183,38)" fg:x="138257" fg:w="56"/><text x="62.3099%" y="799.50"></text></g><g><title>tomoyo_init_request_info (36 samples, 0.02%)</title><rect x="62.0689%" y="773" width="0.0162%" height="15" fill="rgb(206,162,44)" fg:x="138277" fg:w="36"/><text x="62.3189%" y="783.50"></text></g><g><title>memset_erms (96 samples, 0.04%)</title><rect x="62.1128%" y="757" width="0.0431%" height="15" fill="rgb(237,70,39)" fg:x="138375" fg:w="96"/><text x="62.3628%" y="767.50"></text></g><g><title>kmem_cache_alloc (172 samples, 0.08%)</title><rect x="62.0909%" y="773" width="0.0772%" height="15" fill="rgb(212,176,5)" fg:x="138326" fg:w="172"/><text x="62.3409%" y="783.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (27 samples, 0.01%)</title><rect x="62.1559%" y="757" width="0.0121%" height="15" fill="rgb(232,95,16)" fg:x="138471" fg:w="27"/><text x="62.4059%" y="767.50"></text></g><g><title>__virt_addr_valid (36 samples, 0.02%)</title><rect x="62.2129%" y="741" width="0.0162%" height="15" fill="rgb(219,115,35)" fg:x="138598" fg:w="36"/><text x="62.4629%" y="751.50"></text></g><g><title>__check_object_size (73 samples, 0.03%)</title><rect x="62.1977%" y="757" width="0.0328%" height="15" fill="rgb(251,67,27)" fg:x="138564" fg:w="73"/><text x="62.4477%" y="767.50"></text></g><g><title>user_path_at_empty (325 samples, 0.15%)</title><rect x="62.0850%" y="805" width="0.1459%" height="15" fill="rgb(222,95,40)" fg:x="138313" fg:w="325"/><text x="62.3350%" y="815.50"></text></g><g><title>getname_flags.part.0 (320 samples, 0.14%)</title><rect x="62.0873%" y="789" width="0.1436%" height="15" fill="rgb(250,35,16)" fg:x="138318" fg:w="320"/><text x="62.3373%" y="799.50"></text></g><g><title>strncpy_from_user (140 samples, 0.06%)</title><rect x="62.1681%" y="773" width="0.0628%" height="15" fill="rgb(224,86,44)" fg:x="138498" fg:w="140"/><text x="62.4181%" y="783.50"></text></g><g><title>__do_sys_newlstat (2,466 samples, 1.11%)</title><rect x="61.1379%" y="837" width="1.1069%" height="15" fill="rgb(237,53,53)" fg:x="136203" fg:w="2466"/><text x="61.3879%" y="847.50"></text></g><g><title>vfs_statx (2,400 samples, 1.08%)</title><rect x="61.1675%" y="821" width="1.0773%" height="15" fill="rgb(208,171,33)" fg:x="136269" fg:w="2400"/><text x="61.4175%" y="831.50"></text></g><g><title>vfs_getattr_nosec (31 samples, 0.01%)</title><rect x="62.2309%" y="805" width="0.0139%" height="15" fill="rgb(222,64,27)" fg:x="138638" fg:w="31"/><text x="62.4809%" y="815.50"></text></g><g><title>do_syscall_64 (2,481 samples, 1.11%)</title><rect x="61.1334%" y="853" width="1.1137%" height="15" fill="rgb(221,121,35)" fg:x="136193" fg:w="2481"/><text x="61.3834%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,501 samples, 1.12%)</title><rect x="61.1325%" y="869" width="1.1226%" height="15" fill="rgb(228,137,42)" fg:x="136191" fg:w="2501"/><text x="61.3825%" y="879.50"></text></g><g><title>__GI___lxstat (2,566 samples, 1.15%)</title><rect x="61.1083%" y="885" width="1.1518%" height="15" fill="rgb(227,54,21)" fg:x="136137" fg:w="2566"/><text x="61.3583%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.03%)</title><rect x="62.2843%" y="661" width="0.0265%" height="15" fill="rgb(240,168,33)" fg:x="138757" fg:w="59"/><text x="62.5343%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.02%)</title><rect x="62.2866%" y="645" width="0.0242%" height="15" fill="rgb(243,159,6)" fg:x="138762" fg:w="54"/><text x="62.5366%" y="655.50"></text></g><g><title>native_write_msr (54 samples, 0.02%)</title><rect x="62.2866%" y="629" width="0.0242%" height="15" fill="rgb(205,211,41)" fg:x="138762" fg:w="54"/><text x="62.5366%" y="639.50"></text></g><g><title>finish_task_switch (63 samples, 0.03%)</title><rect x="62.2830%" y="677" width="0.0283%" height="15" fill="rgb(253,30,1)" fg:x="138754" fg:w="63"/><text x="62.5330%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (68 samples, 0.03%)</title><rect x="62.2812%" y="725" width="0.0305%" height="15" fill="rgb(226,80,18)" fg:x="138750" fg:w="68"/><text x="62.5312%" y="735.50"></text></g><g><title>schedule (68 samples, 0.03%)</title><rect x="62.2812%" y="709" width="0.0305%" height="15" fill="rgb(253,156,46)" fg:x="138750" fg:w="68"/><text x="62.5312%" y="719.50"></text></g><g><title>__schedule (68 samples, 0.03%)</title><rect x="62.2812%" y="693" width="0.0305%" height="15" fill="rgb(248,87,27)" fg:x="138750" fg:w="68"/><text x="62.5312%" y="703.50"></text></g><g><title>btrfs_search_slot (138 samples, 0.06%)</title><rect x="62.2731%" y="741" width="0.0619%" height="15" fill="rgb(227,122,2)" fg:x="138732" fg:w="138"/><text x="62.5231%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (141 samples, 0.06%)</title><rect x="62.2722%" y="757" width="0.0633%" height="15" fill="rgb(229,94,39)" fg:x="138730" fg:w="141"/><text x="62.5222%" y="767.50"></text></g><g><title>btrfs_lookup (152 samples, 0.07%)</title><rect x="62.2677%" y="789" width="0.0682%" height="15" fill="rgb(225,173,31)" fg:x="138720" fg:w="152"/><text x="62.5177%" y="799.50"></text></g><g><title>btrfs_lookup_dentry (152 samples, 0.07%)</title><rect x="62.2677%" y="773" width="0.0682%" height="15" fill="rgb(239,176,30)" fg:x="138720" fg:w="152"/><text x="62.5177%" y="783.50"></text></g><g><title>__lookup_hash (170 samples, 0.08%)</title><rect x="62.2673%" y="805" width="0.0763%" height="15" fill="rgb(212,104,21)" fg:x="138719" fg:w="170"/><text x="62.5173%" y="815.50"></text></g><g><title>lookup_fast (26 samples, 0.01%)</title><rect x="62.3543%" y="741" width="0.0117%" height="15" fill="rgb(240,209,40)" fg:x="138913" fg:w="26"/><text x="62.6043%" y="751.50"></text></g><g><title>link_path_walk.part.0 (45 samples, 0.02%)</title><rect x="62.3472%" y="773" width="0.0202%" height="15" fill="rgb(234,195,5)" fg:x="138897" fg:w="45"/><text x="62.5972%" y="783.50"></text></g><g><title>walk_component (33 samples, 0.01%)</title><rect x="62.3525%" y="757" width="0.0148%" height="15" fill="rgb(238,213,1)" fg:x="138909" fg:w="33"/><text x="62.6025%" y="767.50"></text></g><g><title>filename_parentat (58 samples, 0.03%)</title><rect x="62.3440%" y="805" width="0.0260%" height="15" fill="rgb(235,182,54)" fg:x="138890" fg:w="58"/><text x="62.5940%" y="815.50"></text></g><g><title>path_parentat (56 samples, 0.03%)</title><rect x="62.3449%" y="789" width="0.0251%" height="15" fill="rgb(229,50,46)" fg:x="138892" fg:w="56"/><text x="62.5949%" y="799.50"></text></g><g><title>filename_create (233 samples, 0.10%)</title><rect x="62.2673%" y="821" width="0.1046%" height="15" fill="rgb(219,145,13)" fg:x="138719" fg:w="233"/><text x="62.5173%" y="831.50"></text></g><g><title>__btrfs_tree_read_lock (28 samples, 0.01%)</title><rect x="62.3970%" y="693" width="0.0126%" height="15" fill="rgb(220,226,10)" fg:x="139008" fg:w="28"/><text x="62.6470%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (30 samples, 0.01%)</title><rect x="62.3965%" y="709" width="0.0135%" height="15" fill="rgb(248,47,30)" fg:x="139007" fg:w="30"/><text x="62.6465%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.04%)</title><rect x="62.4136%" y="645" width="0.0377%" height="15" fill="rgb(231,209,44)" fg:x="139045" fg:w="84"/><text x="62.6636%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.04%)</title><rect x="62.4136%" y="629" width="0.0377%" height="15" fill="rgb(209,80,30)" fg:x="139045" fg:w="84"/><text x="62.6636%" y="639.50"></text></g><g><title>native_write_msr (81 samples, 0.04%)</title><rect x="62.4149%" y="613" width="0.0364%" height="15" fill="rgb(232,9,14)" fg:x="139048" fg:w="81"/><text x="62.6649%" y="623.50"></text></g><g><title>finish_task_switch (92 samples, 0.04%)</title><rect x="62.4109%" y="661" width="0.0413%" height="15" fill="rgb(243,91,43)" fg:x="139039" fg:w="92"/><text x="62.6609%" y="671.50"></text></g><g><title>__btrfs_tree_lock (98 samples, 0.04%)</title><rect x="62.4100%" y="709" width="0.0440%" height="15" fill="rgb(231,90,52)" fg:x="139037" fg:w="98"/><text x="62.6600%" y="719.50"></text></g><g><title>schedule (96 samples, 0.04%)</title><rect x="62.4109%" y="693" width="0.0431%" height="15" fill="rgb(253,192,44)" fg:x="139039" fg:w="96"/><text x="62.6609%" y="703.50"></text></g><g><title>__schedule (96 samples, 0.04%)</title><rect x="62.4109%" y="677" width="0.0431%" height="15" fill="rgb(241,66,31)" fg:x="139039" fg:w="96"/><text x="62.6609%" y="687.50"></text></g><g><title>btrfs_search_slot (186 samples, 0.08%)</title><rect x="62.3947%" y="725" width="0.0835%" height="15" fill="rgb(235,81,37)" fg:x="139003" fg:w="186"/><text x="62.6447%" y="735.50"></text></g><g><title>insert_with_overflow (223 samples, 0.10%)</title><rect x="62.3938%" y="757" width="0.1001%" height="15" fill="rgb(223,221,9)" fg:x="139001" fg:w="223"/><text x="62.6438%" y="767.50"></text></g><g><title>btrfs_insert_empty_items (221 samples, 0.10%)</title><rect x="62.3947%" y="741" width="0.0992%" height="15" fill="rgb(242,180,7)" fg:x="139003" fg:w="221"/><text x="62.6447%" y="751.50"></text></g><g><title>setup_items_for_insert (35 samples, 0.02%)</title><rect x="62.4782%" y="725" width="0.0157%" height="15" fill="rgb(243,78,19)" fg:x="139189" fg:w="35"/><text x="62.7282%" y="735.50"></text></g><g><title>btrfs_insert_dir_item (246 samples, 0.11%)</title><rect x="62.3840%" y="773" width="0.1104%" height="15" fill="rgb(233,23,17)" fg:x="138979" fg:w="246"/><text x="62.6340%" y="783.50"></text></g><g><title>btrfs_add_link (254 samples, 0.11%)</title><rect x="62.3835%" y="789" width="0.1140%" height="15" fill="rgb(252,122,45)" fg:x="138978" fg:w="254"/><text x="62.6335%" y="799.50"></text></g><g><title>__btrfs_tree_read_lock (24 samples, 0.01%)</title><rect x="62.5074%" y="725" width="0.0108%" height="15" fill="rgb(247,108,20)" fg:x="139254" fg:w="24"/><text x="62.7574%" y="735.50"></text></g><g><title>__btrfs_read_lock_root_node (25 samples, 0.01%)</title><rect x="62.5074%" y="741" width="0.0112%" height="15" fill="rgb(235,84,21)" fg:x="139254" fg:w="25"/><text x="62.7574%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.02%)</title><rect x="62.5204%" y="677" width="0.0180%" height="15" fill="rgb(247,129,10)" fg:x="139283" fg:w="40"/><text x="62.7704%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (40 samples, 0.02%)</title><rect x="62.5204%" y="661" width="0.0180%" height="15" fill="rgb(208,173,14)" fg:x="139283" fg:w="40"/><text x="62.7704%" y="671.50"></text></g><g><title>native_write_msr (39 samples, 0.02%)</title><rect x="62.5209%" y="645" width="0.0175%" height="15" fill="rgb(236,31,38)" fg:x="139284" fg:w="39"/><text x="62.7709%" y="655.50"></text></g><g><title>__btrfs_tree_lock (47 samples, 0.02%)</title><rect x="62.5186%" y="741" width="0.0211%" height="15" fill="rgb(232,65,17)" fg:x="139279" fg:w="47"/><text x="62.7686%" y="751.50"></text></g><g><title>schedule (46 samples, 0.02%)</title><rect x="62.5191%" y="725" width="0.0206%" height="15" fill="rgb(224,45,49)" fg:x="139280" fg:w="46"/><text x="62.7691%" y="735.50"></text></g><g><title>__schedule (46 samples, 0.02%)</title><rect x="62.5191%" y="709" width="0.0206%" height="15" fill="rgb(225,2,53)" fg:x="139280" fg:w="46"/><text x="62.7691%" y="719.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="62.5200%" y="693" width="0.0198%" height="15" fill="rgb(248,210,53)" fg:x="139282" fg:w="44"/><text x="62.7700%" y="703.50"></text></g><g><title>split_leaf (34 samples, 0.02%)</title><rect x="62.5541%" y="741" width="0.0153%" height="15" fill="rgb(211,1,30)" fg:x="139358" fg:w="34"/><text x="62.8041%" y="751.50"></text></g><g><title>btrfs_search_slot (157 samples, 0.07%)</title><rect x="62.5047%" y="757" width="0.0705%" height="15" fill="rgb(224,96,15)" fg:x="139248" fg:w="157"/><text x="62.7547%" y="767.50"></text></g><g><title>btrfs_insert_empty_items (184 samples, 0.08%)</title><rect x="62.5047%" y="773" width="0.0826%" height="15" fill="rgb(252,45,11)" fg:x="139248" fg:w="184"/><text x="62.7547%" y="783.50"></text></g><g><title>setup_items_for_insert (27 samples, 0.01%)</title><rect x="62.5752%" y="757" width="0.0121%" height="15" fill="rgb(220,125,38)" fg:x="139405" fg:w="27"/><text x="62.8252%" y="767.50"></text></g><g><title>btrfs_new_inode (240 samples, 0.11%)</title><rect x="62.5016%" y="789" width="0.1077%" height="15" fill="rgb(243,161,33)" fg:x="139241" fg:w="240"/><text x="62.7516%" y="799.50"></text></g><g><title>btrfs_delayed_update_inode (23 samples, 0.01%)</title><rect x="62.6097%" y="773" width="0.0103%" height="15" fill="rgb(248,197,34)" fg:x="139482" fg:w="23"/><text x="62.8597%" y="783.50"></text></g><g><title>btrfs_update_inode (26 samples, 0.01%)</title><rect x="62.6093%" y="789" width="0.0117%" height="15" fill="rgb(228,165,23)" fg:x="139481" fg:w="26"/><text x="62.8593%" y="799.50"></text></g><g><title>btrfs_mkdir (561 samples, 0.25%)</title><rect x="62.3804%" y="805" width="0.2518%" height="15" fill="rgb(236,94,38)" fg:x="138971" fg:w="561"/><text x="62.6304%" y="815.50"></text></g><g><title>__GI___mkdir (833 samples, 0.37%)</title><rect x="62.2601%" y="885" width="0.3739%" height="15" fill="rgb(220,13,23)" fg:x="138703" fg:w="833"/><text x="62.5101%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (831 samples, 0.37%)</title><rect x="62.2610%" y="869" width="0.3730%" height="15" fill="rgb(234,26,39)" fg:x="138705" fg:w="831"/><text x="62.5110%" y="879.50"></text></g><g><title>do_syscall_64 (831 samples, 0.37%)</title><rect x="62.2610%" y="853" width="0.3730%" height="15" fill="rgb(205,117,44)" fg:x="138705" fg:w="831"/><text x="62.5110%" y="863.50"></text></g><g><title>do_mkdirat (831 samples, 0.37%)</title><rect x="62.2610%" y="837" width="0.3730%" height="15" fill="rgb(250,42,2)" fg:x="138705" fg:w="831"/><text x="62.5110%" y="847.50"></text></g><g><title>vfs_mkdir (565 samples, 0.25%)</title><rect x="62.3804%" y="821" width="0.2536%" height="15" fill="rgb(223,83,14)" fg:x="138971" fg:w="565"/><text x="62.6304%" y="831.50"></text></g><g><title>btrfs_filldir (37 samples, 0.02%)</title><rect x="62.6582%" y="773" width="0.0166%" height="15" fill="rgb(241,147,50)" fg:x="139590" fg:w="37"/><text x="62.9082%" y="783.50"></text></g><g><title>filldir64 (36 samples, 0.02%)</title><rect x="62.6587%" y="757" width="0.0162%" height="15" fill="rgb(218,90,6)" fg:x="139591" fg:w="36"/><text x="62.9087%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="62.7157%" y="677" width="0.0117%" height="15" fill="rgb(210,191,5)" fg:x="139718" fg:w="26"/><text x="62.9657%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="62.7161%" y="661" width="0.0112%" height="15" fill="rgb(225,139,19)" fg:x="139719" fg:w="25"/><text x="62.9661%" y="671.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="62.7161%" y="645" width="0.0112%" height="15" fill="rgb(210,1,33)" fg:x="139719" fg:w="25"/><text x="62.9661%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (53 samples, 0.02%)</title><rect x="62.7040%" y="741" width="0.0238%" height="15" fill="rgb(213,50,3)" fg:x="139692" fg:w="53"/><text x="62.9540%" y="751.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="62.7152%" y="725" width="0.0126%" height="15" fill="rgb(234,227,4)" fg:x="139717" fg:w="28"/><text x="62.9652%" y="735.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="62.7152%" y="709" width="0.0126%" height="15" fill="rgb(246,63,5)" fg:x="139717" fg:w="28"/><text x="62.9652%" y="719.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="62.7152%" y="693" width="0.0126%" height="15" fill="rgb(245,136,27)" fg:x="139717" fg:w="28"/><text x="62.9652%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (58 samples, 0.03%)</title><rect x="62.7040%" y="757" width="0.0260%" height="15" fill="rgb(247,199,27)" fg:x="139692" fg:w="58"/><text x="62.9540%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.03%)</title><rect x="62.7363%" y="693" width="0.0346%" height="15" fill="rgb(252,158,49)" fg:x="139764" fg:w="77"/><text x="62.9863%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (77 samples, 0.03%)</title><rect x="62.7363%" y="677" width="0.0346%" height="15" fill="rgb(254,73,1)" fg:x="139764" fg:w="77"/><text x="62.9863%" y="687.50"></text></g><g><title>native_write_msr (77 samples, 0.03%)</title><rect x="62.7363%" y="661" width="0.0346%" height="15" fill="rgb(248,93,19)" fg:x="139764" fg:w="77"/><text x="62.9863%" y="671.50"></text></g><g><title>finish_task_switch (80 samples, 0.04%)</title><rect x="62.7359%" y="709" width="0.0359%" height="15" fill="rgb(206,67,5)" fg:x="139763" fg:w="80"/><text x="62.9859%" y="719.50"></text></g><g><title>__btrfs_tree_read_lock (98 samples, 0.04%)</title><rect x="62.7300%" y="757" width="0.0440%" height="15" fill="rgb(209,210,4)" fg:x="139750" fg:w="98"/><text x="62.9800%" y="767.50"></text></g><g><title>schedule (89 samples, 0.04%)</title><rect x="62.7341%" y="741" width="0.0399%" height="15" fill="rgb(214,185,36)" fg:x="139759" fg:w="89"/><text x="62.9841%" y="751.50"></text></g><g><title>__schedule (89 samples, 0.04%)</title><rect x="62.7341%" y="725" width="0.0399%" height="15" fill="rgb(233,191,26)" fg:x="139759" fg:w="89"/><text x="62.9841%" y="735.50"></text></g><g><title>btrfs_tree_read_lock_atomic (32 samples, 0.01%)</title><rect x="62.7817%" y="757" width="0.0144%" height="15" fill="rgb(248,94,17)" fg:x="139865" fg:w="32"/><text x="63.0317%" y="767.50"></text></g><g><title>queued_read_lock_slowpath (29 samples, 0.01%)</title><rect x="62.7830%" y="741" width="0.0130%" height="15" fill="rgb(250,64,4)" fg:x="139868" fg:w="29"/><text x="63.0330%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (25 samples, 0.01%)</title><rect x="62.7987%" y="757" width="0.0112%" height="15" fill="rgb(218,41,53)" fg:x="139903" fg:w="25"/><text x="63.0487%" y="767.50"></text></g><g><title>find_extent_buffer (25 samples, 0.01%)</title><rect x="62.8153%" y="741" width="0.0112%" height="15" fill="rgb(251,176,28)" fg:x="139940" fg:w="25"/><text x="63.0653%" y="751.50"></text></g><g><title>read_block_for_search.isra.0 (43 samples, 0.02%)</title><rect x="62.8099%" y="757" width="0.0193%" height="15" fill="rgb(247,22,9)" fg:x="139928" fg:w="43"/><text x="63.0599%" y="767.50"></text></g><g><title>btrfs_search_slot (290 samples, 0.13%)</title><rect x="62.7009%" y="773" width="0.1302%" height="15" fill="rgb(218,201,14)" fg:x="139685" fg:w="290"/><text x="62.9509%" y="783.50"></text></g><g><title>btrfs_real_readdir (462 samples, 0.21%)</title><rect x="62.6501%" y="789" width="0.2074%" height="15" fill="rgb(218,94,10)" fg:x="139572" fg:w="462"/><text x="62.9001%" y="799.50"></text></g><g><title>read_extent_buffer (32 samples, 0.01%)</title><rect x="62.8432%" y="773" width="0.0144%" height="15" fill="rgb(222,183,52)" fg:x="140002" fg:w="32"/><text x="63.0932%" y="783.50"></text></g><g><title>btrfs_dirty_inode (29 samples, 0.01%)</title><rect x="62.8652%" y="773" width="0.0130%" height="15" fill="rgb(242,140,25)" fg:x="140051" fg:w="29"/><text x="63.1152%" y="783.50"></text></g><g><title>touch_atime (37 samples, 0.02%)</title><rect x="62.8620%" y="789" width="0.0166%" height="15" fill="rgb(235,197,38)" fg:x="140044" fg:w="37"/><text x="63.1120%" y="799.50"></text></g><g><title>iterate_dir (517 samples, 0.23%)</title><rect x="62.6470%" y="805" width="0.2321%" height="15" fill="rgb(237,136,15)" fg:x="139565" fg:w="517"/><text x="62.8970%" y="815.50"></text></g><g><title>__x64_sys_getdents64 (524 samples, 0.24%)</title><rect x="62.6443%" y="821" width="0.2352%" height="15" fill="rgb(223,44,49)" fg:x="139559" fg:w="524"/><text x="62.8943%" y="831.50"></text></g><g><title>do_syscall_64 (526 samples, 0.24%)</title><rect x="62.6439%" y="837" width="0.2361%" height="15" fill="rgb(227,71,15)" fg:x="139558" fg:w="526"/><text x="62.8939%" y="847.50"></text></g><g><title>__GI___readdir64 (550 samples, 0.25%)</title><rect x="62.6340%" y="885" width="0.2469%" height="15" fill="rgb(225,153,20)" fg:x="139536" fg:w="550"/><text x="62.8840%" y="895.50"></text></g><g><title>__GI___getdents64 (533 samples, 0.24%)</title><rect x="62.6416%" y="869" width="0.2392%" height="15" fill="rgb(210,190,26)" fg:x="139553" fg:w="533"/><text x="62.8916%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (529 samples, 0.24%)</title><rect x="62.6434%" y="853" width="0.2375%" height="15" fill="rgb(223,147,5)" fg:x="139557" fg:w="529"/><text x="62.8934%" y="863.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="62.8818%" y="853" width="0.0162%" height="15" fill="rgb(207,14,23)" fg:x="140088" fg:w="36"/><text x="63.1318%" y="863.50"></text></g><g><title>__x64_sys_readlink (36 samples, 0.02%)</title><rect x="62.8818%" y="837" width="0.0162%" height="15" fill="rgb(211,195,53)" fg:x="140088" fg:w="36"/><text x="63.1318%" y="847.50"></text></g><g><title>do_readlinkat (36 samples, 0.02%)</title><rect x="62.8818%" y="821" width="0.0162%" height="15" fill="rgb(237,75,46)" fg:x="140088" fg:w="36"/><text x="63.1318%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="62.8813%" y="869" width="0.0171%" height="15" fill="rgb(254,55,14)" fg:x="140087" fg:w="38"/><text x="63.1313%" y="879.50"></text></g><g><title>__GI___readlink (40 samples, 0.02%)</title><rect x="62.8809%" y="885" width="0.0180%" height="15" fill="rgb(230,185,30)" fg:x="140086" fg:w="40"/><text x="63.1309%" y="895.50"></text></g><g><title>entry_SYSCALL_64 (23 samples, 0.01%)</title><rect x="62.9123%" y="869" width="0.0103%" height="15" fill="rgb(220,14,11)" fg:x="140156" fg:w="23"/><text x="63.1623%" y="879.50"></text></g><g><title>_copy_to_user (30 samples, 0.01%)</title><rect x="62.9361%" y="805" width="0.0135%" height="15" fill="rgb(215,169,44)" fg:x="140209" fg:w="30"/><text x="63.1861%" y="815.50"></text></g><g><title>copy_user_enhanced_fast_string (24 samples, 0.01%)</title><rect x="62.9388%" y="789" width="0.0108%" height="15" fill="rgb(253,203,20)" fg:x="140215" fg:w="24"/><text x="63.1888%" y="799.50"></text></g><g><title>cp_new_stat (50 samples, 0.02%)</title><rect x="62.9316%" y="821" width="0.0224%" height="15" fill="rgb(229,225,17)" fg:x="140199" fg:w="50"/><text x="63.1816%" y="831.50"></text></g><g><title>btrfs_getattr (58 samples, 0.03%)</title><rect x="62.9599%" y="805" width="0.0260%" height="15" fill="rgb(236,76,26)" fg:x="140262" fg:w="58"/><text x="63.2099%" y="815.50"></text></g><g><title>kmem_cache_free (49 samples, 0.02%)</title><rect x="62.9958%" y="789" width="0.0220%" height="15" fill="rgb(234,15,30)" fg:x="140342" fg:w="49"/><text x="63.2458%" y="799.50"></text></g><g><title>__legitimize_path (33 samples, 0.01%)</title><rect x="63.0259%" y="741" width="0.0148%" height="15" fill="rgb(211,113,48)" fg:x="140409" fg:w="33"/><text x="63.2759%" y="751.50"></text></g><g><title>complete_walk (43 samples, 0.02%)</title><rect x="63.0232%" y="773" width="0.0193%" height="15" fill="rgb(221,31,36)" fg:x="140403" fg:w="43"/><text x="63.2732%" y="783.50"></text></g><g><title>try_to_unlazy (42 samples, 0.02%)</title><rect x="63.0236%" y="757" width="0.0189%" height="15" fill="rgb(215,118,52)" fg:x="140404" fg:w="42"/><text x="63.2736%" y="767.50"></text></g><g><title>inode_permission.part.0 (320 samples, 0.14%)</title><rect x="63.2184%" y="757" width="0.1436%" height="15" fill="rgb(241,151,27)" fg:x="140838" fg:w="320"/><text x="63.4684%" y="767.50"></text></g><g><title>generic_permission (86 samples, 0.04%)</title><rect x="63.3235%" y="741" width="0.0386%" height="15" fill="rgb(253,51,3)" fg:x="141072" fg:w="86"/><text x="63.5735%" y="751.50"></text></g><g><title>security_inode_permission (40 samples, 0.02%)</title><rect x="63.3621%" y="757" width="0.0180%" height="15" fill="rgb(216,201,24)" fg:x="141158" fg:w="40"/><text x="63.6121%" y="767.50"></text></g><g><title>lookup_fast (584 samples, 0.26%)</title><rect x="63.4357%" y="741" width="0.2621%" height="15" fill="rgb(231,107,4)" fg:x="141322" fg:w="584"/><text x="63.6857%" y="751.50"></text></g><g><title>__d_lookup_rcu (457 samples, 0.21%)</title><rect x="63.4927%" y="725" width="0.2051%" height="15" fill="rgb(243,97,54)" fg:x="141449" fg:w="457"/><text x="63.7427%" y="735.50"></text></g><g><title>page_get_link (48 samples, 0.02%)</title><rect x="63.7809%" y="725" width="0.0215%" height="15" fill="rgb(221,32,51)" fg:x="142091" fg:w="48"/><text x="64.0309%" y="735.50"></text></g><g><title>pagecache_get_page (38 samples, 0.02%)</title><rect x="63.7853%" y="709" width="0.0171%" height="15" fill="rgb(218,171,35)" fg:x="142101" fg:w="38"/><text x="64.0353%" y="719.50"></text></g><g><title>find_get_entry (30 samples, 0.01%)</title><rect x="63.7889%" y="693" width="0.0135%" height="15" fill="rgb(214,20,53)" fg:x="142109" fg:w="30"/><text x="64.0389%" y="703.50"></text></g><g><title>link_path_walk.part.0 (1,695 samples, 0.76%)</title><rect x="63.0425%" y="773" width="0.7608%" height="15" fill="rgb(239,9,52)" fg:x="140446" fg:w="1695"/><text x="63.2925%" y="783.50"></text></g><g><title>walk_component (943 samples, 0.42%)</title><rect x="63.3800%" y="757" width="0.4233%" height="15" fill="rgb(215,114,45)" fg:x="141198" fg:w="943"/><text x="63.6300%" y="767.50"></text></g><g><title>step_into (220 samples, 0.10%)</title><rect x="63.7046%" y="741" width="0.0988%" height="15" fill="rgb(208,118,9)" fg:x="141921" fg:w="220"/><text x="63.9546%" y="751.50"></text></g><g><title>path_init (52 samples, 0.02%)</title><rect x="63.8033%" y="773" width="0.0233%" height="15" fill="rgb(235,7,39)" fg:x="142141" fg:w="52"/><text x="64.0533%" y="783.50"></text></g><g><title>nd_jump_root (33 samples, 0.01%)</title><rect x="63.8118%" y="757" width="0.0148%" height="15" fill="rgb(243,225,15)" fg:x="142160" fg:w="33"/><text x="64.0618%" y="767.50"></text></g><g><title>dput (24 samples, 0.01%)</title><rect x="63.8289%" y="757" width="0.0108%" height="15" fill="rgb(225,216,18)" fg:x="142198" fg:w="24"/><text x="64.0789%" y="767.50"></text></g><g><title>terminate_walk (32 samples, 0.01%)</title><rect x="63.8266%" y="773" width="0.0144%" height="15" fill="rgb(233,36,38)" fg:x="142193" fg:w="32"/><text x="64.0766%" y="783.50"></text></g><g><title>free_extent_buffer.part.0 (29 samples, 0.01%)</title><rect x="63.8621%" y="677" width="0.0130%" height="15" fill="rgb(239,88,23)" fg:x="142272" fg:w="29"/><text x="64.1121%" y="687.50"></text></g><g><title>btrfs_free_path (55 samples, 0.02%)</title><rect x="63.8554%" y="709" width="0.0247%" height="15" fill="rgb(219,181,35)" fg:x="142257" fg:w="55"/><text x="64.1054%" y="719.50"></text></g><g><title>btrfs_release_path (53 samples, 0.02%)</title><rect x="63.8563%" y="693" width="0.0238%" height="15" fill="rgb(215,18,46)" fg:x="142259" fg:w="53"/><text x="64.1063%" y="703.50"></text></g><g><title>queued_read_lock_slowpath (32 samples, 0.01%)</title><rect x="63.9155%" y="645" width="0.0144%" height="15" fill="rgb(241,38,11)" fg:x="142391" fg:w="32"/><text x="64.1655%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.03%)</title><rect x="63.9330%" y="597" width="0.0337%" height="15" fill="rgb(248,169,45)" fg:x="142430" fg:w="75"/><text x="64.1830%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.03%)</title><rect x="63.9348%" y="581" width="0.0319%" height="15" fill="rgb(239,50,49)" fg:x="142434" fg:w="71"/><text x="64.1848%" y="591.50"></text></g><g><title>native_write_msr (71 samples, 0.03%)</title><rect x="63.9348%" y="565" width="0.0319%" height="15" fill="rgb(231,96,31)" fg:x="142434" fg:w="71"/><text x="64.1848%" y="575.50"></text></g><g><title>finish_task_switch (91 samples, 0.04%)</title><rect x="63.9326%" y="613" width="0.0408%" height="15" fill="rgb(224,193,37)" fg:x="142429" fg:w="91"/><text x="64.1826%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (153 samples, 0.07%)</title><rect x="63.9074%" y="661" width="0.0687%" height="15" fill="rgb(227,153,50)" fg:x="142373" fg:w="153"/><text x="64.1574%" y="671.50"></text></g><g><title>schedule (103 samples, 0.05%)</title><rect x="63.9299%" y="645" width="0.0462%" height="15" fill="rgb(249,228,3)" fg:x="142423" fg:w="103"/><text x="64.1799%" y="655.50"></text></g><g><title>__schedule (101 samples, 0.05%)</title><rect x="63.9308%" y="629" width="0.0453%" height="15" fill="rgb(219,164,43)" fg:x="142425" fg:w="101"/><text x="64.1808%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (183 samples, 0.08%)</title><rect x="63.9065%" y="677" width="0.0821%" height="15" fill="rgb(216,45,41)" fg:x="142371" fg:w="183"/><text x="64.1565%" y="687.50"></text></g><g><title>btrfs_root_node (28 samples, 0.01%)</title><rect x="63.9761%" y="661" width="0.0126%" height="15" fill="rgb(210,226,51)" fg:x="142526" fg:w="28"/><text x="64.2261%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (536 samples, 0.24%)</title><rect x="64.0210%" y="613" width="0.2406%" height="15" fill="rgb(209,117,49)" fg:x="142626" fg:w="536"/><text x="64.2710%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (517 samples, 0.23%)</title><rect x="64.0295%" y="597" width="0.2321%" height="15" fill="rgb(206,196,24)" fg:x="142645" fg:w="517"/><text x="64.2795%" y="607.50"></text></g><g><title>native_write_msr (515 samples, 0.23%)</title><rect x="64.0304%" y="581" width="0.2312%" height="15" fill="rgb(253,218,3)" fg:x="142647" fg:w="515"/><text x="64.2804%" y="591.50"></text></g><g><title>finish_task_switch (578 samples, 0.26%)</title><rect x="64.0143%" y="629" width="0.2594%" height="15" fill="rgb(252,166,2)" fg:x="142611" fg:w="578"/><text x="64.2643%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (656 samples, 0.29%)</title><rect x="63.9887%" y="677" width="0.2945%" height="15" fill="rgb(236,218,26)" fg:x="142554" fg:w="656"/><text x="64.2387%" y="687.50"></text></g><g><title>schedule (627 samples, 0.28%)</title><rect x="64.0017%" y="661" width="0.2814%" height="15" fill="rgb(254,84,19)" fg:x="142583" fg:w="627"/><text x="64.2517%" y="671.50"></text></g><g><title>__schedule (625 samples, 0.28%)</title><rect x="64.0026%" y="645" width="0.2805%" height="15" fill="rgb(219,137,29)" fg:x="142585" fg:w="625"/><text x="64.2526%" y="655.50"></text></g><g><title>__wake_up_common_lock (45 samples, 0.02%)</title><rect x="64.2836%" y="677" width="0.0202%" height="15" fill="rgb(227,47,52)" fg:x="143211" fg:w="45"/><text x="64.5336%" y="687.50"></text></g><g><title>__wake_up_common (44 samples, 0.02%)</title><rect x="64.2840%" y="661" width="0.0198%" height="15" fill="rgb(229,167,24)" fg:x="143212" fg:w="44"/><text x="64.5340%" y="671.50"></text></g><g><title>autoremove_wake_function (40 samples, 0.02%)</title><rect x="64.2858%" y="645" width="0.0180%" height="15" fill="rgb(233,164,1)" fg:x="143216" fg:w="40"/><text x="64.5358%" y="655.50"></text></g><g><title>try_to_wake_up (38 samples, 0.02%)</title><rect x="64.2867%" y="629" width="0.0171%" height="15" fill="rgb(218,88,48)" fg:x="143218" fg:w="38"/><text x="64.5367%" y="639.50"></text></g><g><title>ttwu_do_activate (23 samples, 0.01%)</title><rect x="64.2935%" y="613" width="0.0103%" height="15" fill="rgb(226,214,24)" fg:x="143233" fg:w="23"/><text x="64.5435%" y="623.50"></text></g><g><title>btrfs_tree_read_lock_atomic (97 samples, 0.04%)</title><rect x="64.3137%" y="677" width="0.0435%" height="15" fill="rgb(233,29,12)" fg:x="143278" fg:w="97"/><text x="64.5637%" y="687.50"></text></g><g><title>queued_read_lock_slowpath (84 samples, 0.04%)</title><rect x="64.3195%" y="661" width="0.0377%" height="15" fill="rgb(219,120,34)" fg:x="143291" fg:w="84"/><text x="64.5695%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (98 samples, 0.04%)</title><rect x="64.3662%" y="677" width="0.0440%" height="15" fill="rgb(226,78,44)" fg:x="143395" fg:w="98"/><text x="64.6162%" y="687.50"></text></g><g><title>__radix_tree_lookup (68 samples, 0.03%)</title><rect x="64.4555%" y="645" width="0.0305%" height="15" fill="rgb(240,15,48)" fg:x="143594" fg:w="68"/><text x="64.7055%" y="655.50"></text></g><g><title>find_extent_buffer (129 samples, 0.06%)</title><rect x="64.4412%" y="661" width="0.0579%" height="15" fill="rgb(253,176,7)" fg:x="143562" fg:w="129"/><text x="64.6912%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (28 samples, 0.01%)</title><rect x="64.4865%" y="645" width="0.0126%" height="15" fill="rgb(206,166,28)" fg:x="143663" fg:w="28"/><text x="64.7365%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (215 samples, 0.10%)</title><rect x="64.4102%" y="677" width="0.0965%" height="15" fill="rgb(241,53,51)" fg:x="143493" fg:w="215"/><text x="64.6602%" y="687.50"></text></g><g><title>btrfs_search_slot (1,408 samples, 0.63%)</title><rect x="63.8845%" y="693" width="0.6320%" height="15" fill="rgb(249,112,30)" fg:x="142322" fg:w="1408"/><text x="64.1345%" y="703.50"></text></g><g><title>btrfs_lookup_dir_item (1,451 samples, 0.65%)</title><rect x="63.8801%" y="709" width="0.6513%" height="15" fill="rgb(217,85,30)" fg:x="142312" fg:w="1451"/><text x="64.1301%" y="719.50"></text></g><g><title>crc32c (33 samples, 0.01%)</title><rect x="64.5166%" y="693" width="0.0148%" height="15" fill="rgb(233,49,7)" fg:x="143730" fg:w="33"/><text x="64.7666%" y="703.50"></text></g><g><title>btrfs_lookup (1,565 samples, 0.70%)</title><rect x="63.8468%" y="741" width="0.7025%" height="15" fill="rgb(234,109,9)" fg:x="142238" fg:w="1565"/><text x="64.0968%" y="751.50"></text></g><g><title>btrfs_lookup_dentry (1,565 samples, 0.70%)</title><rect x="63.8468%" y="725" width="0.7025%" height="15" fill="rgb(253,95,22)" fg:x="142238" fg:w="1565"/><text x="64.0968%" y="735.50"></text></g><g><title>memcg_slab_post_alloc_hook (46 samples, 0.02%)</title><rect x="64.5879%" y="677" width="0.0206%" height="15" fill="rgb(233,176,25)" fg:x="143889" fg:w="46"/><text x="64.8379%" y="687.50"></text></g><g><title>get_obj_cgroup_from_current (29 samples, 0.01%)</title><rect x="64.6162%" y="661" width="0.0130%" height="15" fill="rgb(236,33,39)" fg:x="143952" fg:w="29"/><text x="64.8662%" y="671.50"></text></g><g><title>kmem_cache_alloc (134 samples, 0.06%)</title><rect x="64.5776%" y="693" width="0.0601%" height="15" fill="rgb(223,226,42)" fg:x="143866" fg:w="134"/><text x="64.8276%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (60 samples, 0.03%)</title><rect x="64.6108%" y="677" width="0.0269%" height="15" fill="rgb(216,99,33)" fg:x="143940" fg:w="60"/><text x="64.8608%" y="687.50"></text></g><g><title>__d_alloc (161 samples, 0.07%)</title><rect x="64.5668%" y="709" width="0.0723%" height="15" fill="rgb(235,84,23)" fg:x="143842" fg:w="161"/><text x="64.8168%" y="719.50"></text></g><g><title>d_alloc_parallel (210 samples, 0.09%)</title><rect x="64.5493%" y="741" width="0.0943%" height="15" fill="rgb(232,2,27)" fg:x="143803" fg:w="210"/><text x="64.7993%" y="751.50"></text></g><g><title>d_alloc (175 samples, 0.08%)</title><rect x="64.5650%" y="725" width="0.0786%" height="15" fill="rgb(241,23,22)" fg:x="143838" fg:w="175"/><text x="64.8150%" y="735.50"></text></g><g><title>__d_lookup_done (27 samples, 0.01%)</title><rect x="64.6517%" y="709" width="0.0121%" height="15" fill="rgb(211,73,27)" fg:x="144031" fg:w="27"/><text x="64.9017%" y="719.50"></text></g><g><title>__lookup_slow (1,836 samples, 0.82%)</title><rect x="63.8459%" y="757" width="0.8241%" height="15" fill="rgb(235,109,49)" fg:x="142236" fg:w="1836"/><text x="64.0959%" y="767.50"></text></g><g><title>d_splice_alias (59 samples, 0.03%)</title><rect x="64.6436%" y="741" width="0.0265%" height="15" fill="rgb(230,99,29)" fg:x="144013" fg:w="59"/><text x="64.8936%" y="751.50"></text></g><g><title>__d_add (51 samples, 0.02%)</title><rect x="64.6472%" y="725" width="0.0229%" height="15" fill="rgb(245,199,7)" fg:x="144021" fg:w="51"/><text x="64.8972%" y="735.50"></text></g><g><title>__d_lookup_rcu (111 samples, 0.05%)</title><rect x="64.6813%" y="741" width="0.0498%" height="15" fill="rgb(217,179,10)" fg:x="144097" fg:w="111"/><text x="64.9313%" y="751.50"></text></g><g><title>__legitimize_path (29 samples, 0.01%)</title><rect x="64.7311%" y="725" width="0.0130%" height="15" fill="rgb(254,99,47)" fg:x="144208" fg:w="29"/><text x="64.9811%" y="735.50"></text></g><g><title>lookup_fast (150 samples, 0.07%)</title><rect x="64.6786%" y="757" width="0.0673%" height="15" fill="rgb(251,121,7)" fg:x="144091" fg:w="150"/><text x="64.9286%" y="767.50"></text></g><g><title>try_to_unlazy (33 samples, 0.01%)</title><rect x="64.7311%" y="741" width="0.0148%" height="15" fill="rgb(250,177,26)" fg:x="144208" fg:w="33"/><text x="64.9811%" y="751.50"></text></g><g><title>d_lru_add (62 samples, 0.03%)</title><rect x="64.7639%" y="725" width="0.0278%" height="15" fill="rgb(232,88,15)" fg:x="144281" fg:w="62"/><text x="65.0139%" y="735.50"></text></g><g><title>list_lru_add (58 samples, 0.03%)</title><rect x="64.7657%" y="709" width="0.0260%" height="15" fill="rgb(251,54,54)" fg:x="144285" fg:w="58"/><text x="65.0157%" y="719.50"></text></g><g><title>dput (98 samples, 0.04%)</title><rect x="64.7495%" y="741" width="0.0440%" height="15" fill="rgb(208,177,15)" fg:x="144249" fg:w="98"/><text x="64.9995%" y="751.50"></text></g><g><title>step_into (107 samples, 0.05%)</title><rect x="64.7459%" y="757" width="0.0480%" height="15" fill="rgb(205,97,32)" fg:x="144241" fg:w="107"/><text x="64.9959%" y="767.50"></text></g><g><title>path_lookupat (3,967 samples, 1.78%)</title><rect x="63.0178%" y="789" width="1.7807%" height="15" fill="rgb(217,192,13)" fg:x="140391" fg:w="3967"/><text x="63.2678%" y="799.50">p..</text></g><g><title>walk_component (2,133 samples, 0.96%)</title><rect x="63.8410%" y="773" width="0.9574%" height="15" fill="rgb(215,163,41)" fg:x="142225" fg:w="2133"/><text x="64.0910%" y="783.50"></text></g><g><title>filename_lookup (4,044 samples, 1.82%)</title><rect x="62.9859%" y="805" width="1.8152%" height="15" fill="rgb(246,83,29)" fg:x="140320" fg:w="4044"/><text x="63.2359%" y="815.50">f..</text></g><g><title>path_put (31 samples, 0.01%)</title><rect x="64.8034%" y="805" width="0.0139%" height="15" fill="rgb(219,2,45)" fg:x="144369" fg:w="31"/><text x="65.0534%" y="815.50"></text></g><g><title>dput (31 samples, 0.01%)</title><rect x="64.8034%" y="789" width="0.0139%" height="15" fill="rgb(242,215,33)" fg:x="144369" fg:w="31"/><text x="65.0534%" y="799.50"></text></g><g><title>security_inode_getattr (84 samples, 0.04%)</title><rect x="64.8178%" y="805" width="0.0377%" height="15" fill="rgb(217,1,6)" fg:x="144401" fg:w="84"/><text x="65.0678%" y="815.50"></text></g><g><title>tomoyo_path_perm (40 samples, 0.02%)</title><rect x="64.8375%" y="789" width="0.0180%" height="15" fill="rgb(207,85,52)" fg:x="144445" fg:w="40"/><text x="65.0875%" y="799.50"></text></g><g><title>tomoyo_init_request_info (23 samples, 0.01%)</title><rect x="64.8451%" y="773" width="0.0103%" height="15" fill="rgb(231,171,19)" fg:x="144462" fg:w="23"/><text x="65.0951%" y="783.50"></text></g><g><title>memset_erms (94 samples, 0.04%)</title><rect x="64.8793%" y="757" width="0.0422%" height="15" fill="rgb(207,128,4)" fg:x="144538" fg:w="94"/><text x="65.1293%" y="767.50"></text></g><g><title>kmem_cache_alloc (153 samples, 0.07%)</title><rect x="64.8644%" y="773" width="0.0687%" height="15" fill="rgb(219,208,4)" fg:x="144505" fg:w="153"/><text x="65.1144%" y="783.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (26 samples, 0.01%)</title><rect x="64.9214%" y="757" width="0.0117%" height="15" fill="rgb(235,161,42)" fg:x="144632" fg:w="26"/><text x="65.1714%" y="767.50"></text></g><g><title>__virt_addr_valid (26 samples, 0.01%)</title><rect x="64.9865%" y="741" width="0.0117%" height="15" fill="rgb(247,218,18)" fg:x="144777" fg:w="26"/><text x="65.2365%" y="751.50"></text></g><g><title>__check_object_size (58 samples, 0.03%)</title><rect x="64.9731%" y="757" width="0.0260%" height="15" fill="rgb(232,114,51)" fg:x="144747" fg:w="58"/><text x="65.2231%" y="767.50"></text></g><g><title>user_path_at_empty (321 samples, 0.14%)</title><rect x="64.8555%" y="805" width="0.1441%" height="15" fill="rgb(222,95,3)" fg:x="144485" fg:w="321"/><text x="65.1055%" y="815.50"></text></g><g><title>getname_flags.part.0 (313 samples, 0.14%)</title><rect x="64.8591%" y="789" width="0.1405%" height="15" fill="rgb(240,65,29)" fg:x="144493" fg:w="313"/><text x="65.1091%" y="799.50"></text></g><g><title>strncpy_from_user (148 samples, 0.07%)</title><rect x="64.9331%" y="773" width="0.0664%" height="15" fill="rgb(249,209,20)" fg:x="144658" fg:w="148"/><text x="65.1831%" y="783.50"></text></g><g><title>__do_sys_newstat (4,622 samples, 2.07%)</title><rect x="62.9307%" y="837" width="2.0747%" height="15" fill="rgb(241,48,37)" fg:x="140197" fg:w="4622"/><text x="63.1807%" y="847.50">_..</text></g><g><title>vfs_statx (4,570 samples, 2.05%)</title><rect x="62.9540%" y="821" width="2.0514%" height="15" fill="rgb(230,140,42)" fg:x="140249" fg:w="4570"/><text x="63.2040%" y="831.50">v..</text></g><g><title>do_syscall_64 (4,635 samples, 2.08%)</title><rect x="62.9280%" y="853" width="2.0805%" height="15" fill="rgb(230,176,45)" fg:x="140191" fg:w="4635"/><text x="63.1780%" y="863.50">d..</text></g><g><title>entry_SYSCALL_64_after_hwframe (4,665 samples, 2.09%)</title><rect x="62.9226%" y="869" width="2.0940%" height="15" fill="rgb(245,112,21)" fg:x="140179" fg:w="4665"/><text x="63.1726%" y="879.50">e..</text></g><g><title>__GI___xstat (4,735 samples, 2.13%)</title><rect x="62.8988%" y="885" width="2.1254%" height="15" fill="rgb(207,183,35)" fg:x="140126" fg:w="4735"/><text x="63.1488%" y="895.50">_..</text></g><g><title>__GI_remove (33 samples, 0.01%)</title><rect x="65.0242%" y="869" width="0.0148%" height="15" fill="rgb(227,44,33)" fg:x="144861" fg:w="33"/><text x="65.2742%" y="879.50"></text></g><g><title>__GI___rmdir (33 samples, 0.01%)</title><rect x="65.0242%" y="853" width="0.0148%" height="15" fill="rgb(246,120,21)" fg:x="144861" fg:w="33"/><text x="65.2742%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.01%)</title><rect x="65.0242%" y="837" width="0.0148%" height="15" fill="rgb(235,57,52)" fg:x="144861" fg:w="33"/><text x="65.2742%" y="847.50"></text></g><g><title>do_syscall_64 (33 samples, 0.01%)</title><rect x="65.0242%" y="821" width="0.0148%" height="15" fill="rgb(238,84,10)" fg:x="144861" fg:w="33"/><text x="65.2742%" y="831.50"></text></g><g><title>do_rmdir (33 samples, 0.01%)</title><rect x="65.0242%" y="805" width="0.0148%" height="15" fill="rgb(251,200,32)" fg:x="144861" fg:w="33"/><text x="65.2742%" y="815.50"></text></g><g><title>vfs_rmdir.part.0 (32 samples, 0.01%)</title><rect x="65.0247%" y="789" width="0.0144%" height="15" fill="rgb(247,159,13)" fg:x="144862" fg:w="32"/><text x="65.2747%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="65.0422%" y="645" width="0.0117%" height="15" fill="rgb(238,64,4)" fg:x="144901" fg:w="26"/><text x="65.2922%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="65.0426%" y="629" width="0.0112%" height="15" fill="rgb(221,131,51)" fg:x="144902" fg:w="25"/><text x="65.2926%" y="639.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="65.0426%" y="613" width="0.0112%" height="15" fill="rgb(242,5,29)" fg:x="144902" fg:w="25"/><text x="65.2926%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (29 samples, 0.01%)</title><rect x="65.0413%" y="725" width="0.0130%" height="15" fill="rgb(214,130,32)" fg:x="144899" fg:w="29"/><text x="65.2913%" y="735.50"></text></g><g><title>__btrfs_tree_read_lock (29 samples, 0.01%)</title><rect x="65.0413%" y="709" width="0.0130%" height="15" fill="rgb(244,210,16)" fg:x="144899" fg:w="29"/><text x="65.2913%" y="719.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="65.0417%" y="693" width="0.0126%" height="15" fill="rgb(234,48,26)" fg:x="144900" fg:w="28"/><text x="65.2917%" y="703.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="65.0417%" y="677" width="0.0126%" height="15" fill="rgb(231,82,38)" fg:x="144900" fg:w="28"/><text x="65.2917%" y="687.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="65.0417%" y="661" width="0.0126%" height="15" fill="rgb(254,128,41)" fg:x="144900" fg:w="28"/><text x="65.2917%" y="671.50"></text></g><g><title>btrfs_lookup (51 samples, 0.02%)</title><rect x="65.0399%" y="789" width="0.0229%" height="15" fill="rgb(212,73,49)" fg:x="144896" fg:w="51"/><text x="65.2899%" y="799.50"></text></g><g><title>btrfs_lookup_dentry (51 samples, 0.02%)</title><rect x="65.0399%" y="773" width="0.0229%" height="15" fill="rgb(205,62,54)" fg:x="144896" fg:w="51"/><text x="65.2899%" y="783.50"></text></g><g><title>btrfs_lookup_dir_item (49 samples, 0.02%)</title><rect x="65.0408%" y="757" width="0.0220%" height="15" fill="rgb(228,0,8)" fg:x="144898" fg:w="49"/><text x="65.2908%" y="767.50"></text></g><g><title>btrfs_search_slot (49 samples, 0.02%)</title><rect x="65.0408%" y="741" width="0.0220%" height="15" fill="rgb(251,28,17)" fg:x="144898" fg:w="49"/><text x="65.2908%" y="751.50"></text></g><g><title>__lookup_hash (53 samples, 0.02%)</title><rect x="65.0399%" y="805" width="0.0238%" height="15" fill="rgb(238,105,27)" fg:x="144896" fg:w="53"/><text x="65.2899%" y="815.50"></text></g><g><title>__GI_remove (119 samples, 0.05%)</title><rect x="65.0242%" y="885" width="0.0534%" height="15" fill="rgb(237,216,33)" fg:x="144861" fg:w="119"/><text x="65.2742%" y="895.50"></text></g><g><title>__unlink (86 samples, 0.04%)</title><rect x="65.0391%" y="869" width="0.0386%" height="15" fill="rgb(229,228,25)" fg:x="144894" fg:w="86"/><text x="65.2891%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.04%)</title><rect x="65.0391%" y="853" width="0.0386%" height="15" fill="rgb(233,75,23)" fg:x="144894" fg:w="86"/><text x="65.2891%" y="863.50"></text></g><g><title>do_syscall_64 (86 samples, 0.04%)</title><rect x="65.0391%" y="837" width="0.0386%" height="15" fill="rgb(231,207,16)" fg:x="144894" fg:w="86"/><text x="65.2891%" y="847.50"></text></g><g><title>do_unlinkat (84 samples, 0.04%)</title><rect x="65.0399%" y="821" width="0.0377%" height="15" fill="rgb(231,191,45)" fg:x="144896" fg:w="84"/><text x="65.2899%" y="831.50"></text></g><g><title>memset_erms (44 samples, 0.02%)</title><rect x="65.1145%" y="789" width="0.0198%" height="15" fill="rgb(224,133,17)" fg:x="145062" fg:w="44"/><text x="65.3645%" y="799.50"></text></g><g><title>kmem_cache_alloc (63 samples, 0.03%)</title><rect x="65.1077%" y="805" width="0.0283%" height="15" fill="rgb(209,178,27)" fg:x="145047" fg:w="63"/><text x="65.3577%" y="815.50"></text></g><g><title>__x64_sys_unlinkat (123 samples, 0.06%)</title><rect x="65.1023%" y="837" width="0.0552%" height="15" fill="rgb(218,37,11)" fg:x="145035" fg:w="123"/><text x="65.3523%" y="847.50"></text></g><g><title>getname_flags.part.0 (114 samples, 0.05%)</title><rect x="65.1064%" y="821" width="0.0512%" height="15" fill="rgb(251,226,25)" fg:x="145044" fg:w="114"/><text x="65.3564%" y="831.50"></text></g><g><title>strncpy_from_user (48 samples, 0.02%)</title><rect x="65.1360%" y="805" width="0.0215%" height="15" fill="rgb(209,222,27)" fg:x="145110" fg:w="48"/><text x="65.3860%" y="815.50"></text></g><g><title>__check_object_size (25 samples, 0.01%)</title><rect x="65.1463%" y="789" width="0.0112%" height="15" fill="rgb(238,22,21)" fg:x="145133" fg:w="25"/><text x="65.3963%" y="799.50"></text></g><g><title>btrfs_del_inode_ref_in_log (23 samples, 0.01%)</title><rect x="65.1930%" y="773" width="0.0103%" height="15" fill="rgb(233,161,25)" fg:x="145237" fg:w="23"/><text x="65.4430%" y="783.50"></text></g><g><title>btrfs_del_items (66 samples, 0.03%)</title><rect x="65.2033%" y="773" width="0.0296%" height="15" fill="rgb(226,122,53)" fg:x="145260" fg:w="66"/><text x="65.4533%" y="783.50"></text></g><g><title>btrfs_delete_delayed_dir_index (32 samples, 0.01%)</title><rect x="65.2352%" y="773" width="0.0144%" height="15" fill="rgb(220,123,17)" fg:x="145331" fg:w="32"/><text x="65.4852%" y="783.50"></text></g><g><title>finish_task_switch (38 samples, 0.02%)</title><rect x="65.2572%" y="693" width="0.0171%" height="15" fill="rgb(230,224,35)" fg:x="145380" fg:w="38"/><text x="65.5072%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.02%)</title><rect x="65.2577%" y="677" width="0.0166%" height="15" fill="rgb(246,83,8)" fg:x="145381" fg:w="37"/><text x="65.5077%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="65.2577%" y="661" width="0.0166%" height="15" fill="rgb(230,214,17)" fg:x="145381" fg:w="37"/><text x="65.5077%" y="671.50"></text></g><g><title>native_write_msr (37 samples, 0.02%)</title><rect x="65.2577%" y="645" width="0.0166%" height="15" fill="rgb(222,97,18)" fg:x="145381" fg:w="37"/><text x="65.5077%" y="655.50"></text></g><g><title>__btrfs_tree_lock (45 samples, 0.02%)</title><rect x="65.2545%" y="741" width="0.0202%" height="15" fill="rgb(206,79,1)" fg:x="145374" fg:w="45"/><text x="65.5045%" y="751.50"></text></g><g><title>schedule (40 samples, 0.02%)</title><rect x="65.2568%" y="725" width="0.0180%" height="15" fill="rgb(214,121,34)" fg:x="145379" fg:w="40"/><text x="65.5068%" y="735.50"></text></g><g><title>__schedule (40 samples, 0.02%)</title><rect x="65.2568%" y="709" width="0.0180%" height="15" fill="rgb(249,199,46)" fg:x="145379" fg:w="40"/><text x="65.5068%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.03%)</title><rect x="65.2837%" y="661" width="0.0305%" height="15" fill="rgb(214,222,46)" fg:x="145439" fg:w="68"/><text x="65.5337%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.03%)</title><rect x="65.2846%" y="645" width="0.0296%" height="15" fill="rgb(248,168,30)" fg:x="145441" fg:w="66"/><text x="65.5346%" y="655.50"></text></g><g><title>native_write_msr (66 samples, 0.03%)</title><rect x="65.2846%" y="629" width="0.0296%" height="15" fill="rgb(226,14,28)" fg:x="145441" fg:w="66"/><text x="65.5346%" y="639.50"></text></g><g><title>finish_task_switch (73 samples, 0.03%)</title><rect x="65.2832%" y="677" width="0.0328%" height="15" fill="rgb(253,123,1)" fg:x="145438" fg:w="73"/><text x="65.5332%" y="687.50"></text></g><g><title>__btrfs_tree_lock (92 samples, 0.04%)</title><rect x="65.2756%" y="725" width="0.0413%" height="15" fill="rgb(225,24,42)" fg:x="145421" fg:w="92"/><text x="65.5256%" y="735.50"></text></g><g><title>schedule (76 samples, 0.03%)</title><rect x="65.2828%" y="709" width="0.0341%" height="15" fill="rgb(216,161,37)" fg:x="145437" fg:w="76"/><text x="65.5328%" y="719.50"></text></g><g><title>__schedule (76 samples, 0.03%)</title><rect x="65.2828%" y="693" width="0.0341%" height="15" fill="rgb(251,164,26)" fg:x="145437" fg:w="76"/><text x="65.5328%" y="703.50"></text></g><g><title>btrfs_lock_root_node (93 samples, 0.04%)</title><rect x="65.2756%" y="741" width="0.0417%" height="15" fill="rgb(219,177,3)" fg:x="145421" fg:w="93"/><text x="65.5256%" y="751.50"></text></g><g><title>btrfs_search_slot (207 samples, 0.09%)</title><rect x="65.2509%" y="757" width="0.0929%" height="15" fill="rgb(222,65,0)" fg:x="145366" fg:w="207"/><text x="65.5009%" y="767.50"></text></g><g><title>btrfs_lookup_dir_item (213 samples, 0.10%)</title><rect x="65.2500%" y="773" width="0.0956%" height="15" fill="rgb(223,69,54)" fg:x="145364" fg:w="213"/><text x="65.5000%" y="783.50"></text></g><g><title>__btrfs_unlink_inode (384 samples, 0.17%)</title><rect x="65.1845%" y="789" width="0.1724%" height="15" fill="rgb(235,30,27)" fg:x="145218" fg:w="384"/><text x="65.4345%" y="799.50"></text></g><g><title>__btrfs_read_lock_root_node (25 samples, 0.01%)</title><rect x="65.3640%" y="725" width="0.0112%" height="15" fill="rgb(220,183,50)" fg:x="145618" fg:w="25"/><text x="65.6140%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (46 samples, 0.02%)</title><rect x="65.3762%" y="661" width="0.0206%" height="15" fill="rgb(248,198,15)" fg:x="145645" fg:w="46"/><text x="65.6262%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.02%)</title><rect x="65.3775%" y="645" width="0.0193%" height="15" fill="rgb(222,211,4)" fg:x="145648" fg:w="43"/><text x="65.6275%" y="655.50"></text></g><g><title>native_write_msr (42 samples, 0.02%)</title><rect x="65.3780%" y="629" width="0.0189%" height="15" fill="rgb(214,102,34)" fg:x="145649" fg:w="42"/><text x="65.6280%" y="639.50"></text></g><g><title>__btrfs_tree_lock (51 samples, 0.02%)</title><rect x="65.3753%" y="725" width="0.0229%" height="15" fill="rgb(245,92,5)" fg:x="145643" fg:w="51"/><text x="65.6253%" y="735.50"></text></g><g><title>schedule (49 samples, 0.02%)</title><rect x="65.3762%" y="709" width="0.0220%" height="15" fill="rgb(252,72,51)" fg:x="145645" fg:w="49"/><text x="65.6262%" y="719.50"></text></g><g><title>__schedule (49 samples, 0.02%)</title><rect x="65.3762%" y="693" width="0.0220%" height="15" fill="rgb(252,208,19)" fg:x="145645" fg:w="49"/><text x="65.6262%" y="703.50"></text></g><g><title>finish_task_switch (49 samples, 0.02%)</title><rect x="65.3762%" y="677" width="0.0220%" height="15" fill="rgb(211,69,7)" fg:x="145645" fg:w="49"/><text x="65.6262%" y="687.50"></text></g><g><title>btrfs_search_slot (150 samples, 0.07%)</title><rect x="65.3618%" y="741" width="0.0673%" height="15" fill="rgb(211,27,16)" fg:x="145613" fg:w="150"/><text x="65.6118%" y="751.50"></text></g><g><title>btrfs_insert_empty_items (170 samples, 0.08%)</title><rect x="65.3618%" y="757" width="0.0763%" height="15" fill="rgb(219,216,14)" fg:x="145613" fg:w="170"/><text x="65.6118%" y="767.50"></text></g><g><title>btrfs_orphan_add (178 samples, 0.08%)</title><rect x="65.3595%" y="789" width="0.0799%" height="15" fill="rgb(219,71,8)" fg:x="145608" fg:w="178"/><text x="65.6095%" y="799.50"></text></g><g><title>btrfs_insert_orphan_item (178 samples, 0.08%)</title><rect x="65.3595%" y="773" width="0.0799%" height="15" fill="rgb(223,170,53)" fg:x="145608" fg:w="178"/><text x="65.6095%" y="783.50"></text></g><g><title>btrfs_rmdir (615 samples, 0.28%)</title><rect x="65.1809%" y="805" width="0.2761%" height="15" fill="rgb(246,21,26)" fg:x="145210" fg:w="615"/><text x="65.4309%" y="815.50"></text></g><g><title>start_transaction (31 samples, 0.01%)</title><rect x="65.4430%" y="789" width="0.0139%" height="15" fill="rgb(248,20,46)" fg:x="145794" fg:w="31"/><text x="65.6930%" y="799.50"></text></g><g><title>btrfs_destroy_inode (39 samples, 0.02%)</title><rect x="65.4637%" y="789" width="0.0175%" height="15" fill="rgb(252,94,11)" fg:x="145840" fg:w="39"/><text x="65.7137%" y="799.50"></text></g><g><title>destroy_inode (49 samples, 0.02%)</title><rect x="65.4601%" y="805" width="0.0220%" height="15" fill="rgb(236,163,8)" fg:x="145832" fg:w="49"/><text x="65.7101%" y="815.50"></text></g><g><title>btrfs_get_token_32 (25 samples, 0.01%)</title><rect x="65.5184%" y="725" width="0.0112%" height="15" fill="rgb(217,221,45)" fg:x="145962" fg:w="25"/><text x="65.7684%" y="735.50"></text></g><g><title>btrfs_del_items (72 samples, 0.03%)</title><rect x="65.5140%" y="741" width="0.0323%" height="15" fill="rgb(238,38,17)" fg:x="145952" fg:w="72"/><text x="65.7640%" y="751.50"></text></g><g><title>__btrfs_tree_read_lock (25 samples, 0.01%)</title><rect x="65.5503%" y="693" width="0.0112%" height="15" fill="rgb(242,210,23)" fg:x="146033" fg:w="25"/><text x="65.8003%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (26 samples, 0.01%)</title><rect x="65.5503%" y="709" width="0.0117%" height="15" fill="rgb(250,86,53)" fg:x="146033" fg:w="26"/><text x="65.8003%" y="719.50"></text></g><g><title>finish_task_switch (26 samples, 0.01%)</title><rect x="65.5624%" y="661" width="0.0117%" height="15" fill="rgb(223,168,25)" fg:x="146060" fg:w="26"/><text x="65.8124%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="65.5624%" y="645" width="0.0117%" height="15" fill="rgb(251,189,4)" fg:x="146060" fg:w="26"/><text x="65.8124%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="65.5624%" y="629" width="0.0117%" height="15" fill="rgb(245,19,28)" fg:x="146060" fg:w="26"/><text x="65.8124%" y="639.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="65.5629%" y="613" width="0.0112%" height="15" fill="rgb(207,10,34)" fg:x="146061" fg:w="25"/><text x="65.8129%" y="623.50"></text></g><g><title>__btrfs_tree_lock (30 samples, 0.01%)</title><rect x="65.5620%" y="709" width="0.0135%" height="15" fill="rgb(235,153,31)" fg:x="146059" fg:w="30"/><text x="65.8120%" y="719.50"></text></g><g><title>schedule (30 samples, 0.01%)</title><rect x="65.5620%" y="693" width="0.0135%" height="15" fill="rgb(228,72,37)" fg:x="146059" fg:w="30"/><text x="65.8120%" y="703.50"></text></g><g><title>__schedule (30 samples, 0.01%)</title><rect x="65.5620%" y="677" width="0.0135%" height="15" fill="rgb(215,15,16)" fg:x="146059" fg:w="30"/><text x="65.8120%" y="687.50"></text></g><g><title>finish_task_switch (23 samples, 0.01%)</title><rect x="65.5871%" y="645" width="0.0103%" height="15" fill="rgb(250,119,29)" fg:x="146115" fg:w="23"/><text x="65.8371%" y="655.50"></text></g><g><title>btrfs_lock_root_node (47 samples, 0.02%)</title><rect x="65.5768%" y="709" width="0.0211%" height="15" fill="rgb(214,59,1)" fg:x="146092" fg:w="47"/><text x="65.8268%" y="719.50"></text></g><g><title>__btrfs_tree_lock (47 samples, 0.02%)</title><rect x="65.5768%" y="693" width="0.0211%" height="15" fill="rgb(223,109,25)" fg:x="146092" fg:w="47"/><text x="65.8268%" y="703.50"></text></g><g><title>schedule (26 samples, 0.01%)</title><rect x="65.5862%" y="677" width="0.0117%" height="15" fill="rgb(230,198,22)" fg:x="146113" fg:w="26"/><text x="65.8362%" y="687.50"></text></g><g><title>__schedule (26 samples, 0.01%)</title><rect x="65.5862%" y="661" width="0.0117%" height="15" fill="rgb(245,184,46)" fg:x="146113" fg:w="26"/><text x="65.8362%" y="671.50"></text></g><g><title>btrfs_lookup_inode (163 samples, 0.07%)</title><rect x="65.5494%" y="741" width="0.0732%" height="15" fill="rgb(253,73,16)" fg:x="146031" fg:w="163"/><text x="65.7994%" y="751.50"></text></g><g><title>btrfs_search_slot (163 samples, 0.07%)</title><rect x="65.5494%" y="725" width="0.0732%" height="15" fill="rgb(206,94,45)" fg:x="146031" fg:w="163"/><text x="65.7994%" y="735.50"></text></g><g><title>__btrfs_update_delayed_inode (255 samples, 0.11%)</title><rect x="65.5126%" y="757" width="0.1145%" height="15" fill="rgb(236,83,27)" fg:x="145949" fg:w="255"/><text x="65.7626%" y="767.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (284 samples, 0.13%)</title><rect x="65.5077%" y="773" width="0.1275%" height="15" fill="rgb(220,196,8)" fg:x="145938" fg:w="284"/><text x="65.7577%" y="783.50"></text></g><g><title>btrfs_free_path (29 samples, 0.01%)</title><rect x="65.6396%" y="757" width="0.0130%" height="15" fill="rgb(254,185,14)" fg:x="146232" fg:w="29"/><text x="65.8896%" y="767.50"></text></g><g><title>btrfs_release_path (29 samples, 0.01%)</title><rect x="65.6396%" y="741" width="0.0130%" height="15" fill="rgb(226,50,22)" fg:x="146232" fg:w="29"/><text x="65.8896%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (193 samples, 0.09%)</title><rect x="65.6751%" y="661" width="0.0866%" height="15" fill="rgb(253,147,0)" fg:x="146311" fg:w="193"/><text x="65.9251%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (187 samples, 0.08%)</title><rect x="65.6778%" y="645" width="0.0839%" height="15" fill="rgb(252,46,33)" fg:x="146317" fg:w="187"/><text x="65.9278%" y="655.50"></text></g><g><title>native_write_msr (187 samples, 0.08%)</title><rect x="65.6778%" y="629" width="0.0839%" height="15" fill="rgb(242,22,54)" fg:x="146317" fg:w="187"/><text x="65.9278%" y="639.50"></text></g><g><title>finish_task_switch (208 samples, 0.09%)</title><rect x="65.6715%" y="677" width="0.0934%" height="15" fill="rgb(223,178,32)" fg:x="146303" fg:w="208"/><text x="65.9215%" y="687.50"></text></g><g><title>__schedule (220 samples, 0.10%)</title><rect x="65.6670%" y="693" width="0.0988%" height="15" fill="rgb(214,106,53)" fg:x="146293" fg:w="220"/><text x="65.9170%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (246 samples, 0.11%)</title><rect x="65.6558%" y="725" width="0.1104%" height="15" fill="rgb(232,65,50)" fg:x="146268" fg:w="246"/><text x="65.9058%" y="735.50"></text></g><g><title>schedule (222 samples, 0.10%)</title><rect x="65.6666%" y="709" width="0.0996%" height="15" fill="rgb(231,110,28)" fg:x="146292" fg:w="222"/><text x="65.9166%" y="719.50"></text></g><g><title>__btrfs_read_lock_root_node (247 samples, 0.11%)</title><rect x="65.6558%" y="741" width="0.1109%" height="15" fill="rgb(216,71,40)" fg:x="146268" fg:w="247"/><text x="65.9058%" y="751.50"></text></g><g><title>__btrfs_tree_lock (34 samples, 0.02%)</title><rect x="65.7667%" y="741" width="0.0153%" height="15" fill="rgb(229,89,53)" fg:x="146515" fg:w="34"/><text x="66.0167%" y="751.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="65.7676%" y="725" width="0.0144%" height="15" fill="rgb(210,124,14)" fg:x="146517" fg:w="32"/><text x="66.0176%" y="735.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="65.7676%" y="709" width="0.0144%" height="15" fill="rgb(236,213,6)" fg:x="146517" fg:w="32"/><text x="66.0176%" y="719.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="65.7698%" y="693" width="0.0121%" height="15" fill="rgb(228,41,5)" fg:x="146522" fg:w="27"/><text x="66.0198%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="65.7698%" y="677" width="0.0121%" height="15" fill="rgb(221,167,25)" fg:x="146522" fg:w="27"/><text x="66.0198%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="65.7703%" y="661" width="0.0117%" height="15" fill="rgb(228,144,37)" fg:x="146523" fg:w="26"/><text x="66.0203%" y="671.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="65.7707%" y="645" width="0.0112%" height="15" fill="rgb(227,189,38)" fg:x="146524" fg:w="25"/><text x="66.0207%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (226 samples, 0.10%)</title><rect x="65.8053%" y="661" width="0.1014%" height="15" fill="rgb(218,8,2)" fg:x="146601" fg:w="226"/><text x="66.0553%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (220 samples, 0.10%)</title><rect x="65.8080%" y="645" width="0.0988%" height="15" fill="rgb(209,61,28)" fg:x="146607" fg:w="220"/><text x="66.0580%" y="655.50"></text></g><g><title>native_write_msr (219 samples, 0.10%)</title><rect x="65.8084%" y="629" width="0.0983%" height="15" fill="rgb(233,140,39)" fg:x="146608" fg:w="219"/><text x="66.0584%" y="639.50"></text></g><g><title>finish_task_switch (245 samples, 0.11%)</title><rect x="65.8026%" y="677" width="0.1100%" height="15" fill="rgb(251,66,48)" fg:x="146595" fg:w="245"/><text x="66.0526%" y="687.50"></text></g><g><title>__btrfs_tree_lock (300 samples, 0.13%)</title><rect x="65.7824%" y="725" width="0.1347%" height="15" fill="rgb(210,44,45)" fg:x="146550" fg:w="300"/><text x="66.0324%" y="735.50"></text></g><g><title>schedule (264 samples, 0.12%)</title><rect x="65.7985%" y="709" width="0.1185%" height="15" fill="rgb(214,136,46)" fg:x="146586" fg:w="264"/><text x="66.0485%" y="719.50"></text></g><g><title>__schedule (264 samples, 0.12%)</title><rect x="65.7985%" y="693" width="0.1185%" height="15" fill="rgb(207,130,50)" fg:x="146586" fg:w="264"/><text x="66.0485%" y="703.50"></text></g><g><title>btrfs_lock_root_node (303 samples, 0.14%)</title><rect x="65.7819%" y="741" width="0.1360%" height="15" fill="rgb(228,102,49)" fg:x="146549" fg:w="303"/><text x="66.0319%" y="751.50"></text></g><g><title>btrfs_search_slot (663 samples, 0.30%)</title><rect x="65.6527%" y="757" width="0.2976%" height="15" fill="rgb(253,55,1)" fg:x="146261" fg:w="663"/><text x="65.9027%" y="767.50"></text></g><g><title>btrfs_del_orphan_item (705 samples, 0.32%)</title><rect x="65.6352%" y="773" width="0.3165%" height="15" fill="rgb(238,222,9)" fg:x="146222" fg:w="705"/><text x="65.8852%" y="783.50"></text></g><g><title>_find_next_bit.constprop.0 (48 samples, 0.02%)</title><rect x="65.9709%" y="677" width="0.0215%" height="15" fill="rgb(246,99,6)" fg:x="146970" fg:w="48"/><text x="66.2209%" y="687.50"></text></g><g><title>__btrfs_add_free_space (59 samples, 0.03%)</title><rect x="65.9682%" y="709" width="0.0265%" height="15" fill="rgb(219,110,26)" fg:x="146964" fg:w="59"/><text x="66.2182%" y="719.50"></text></g><g><title>steal_from_bitmap.part.0 (58 samples, 0.03%)</title><rect x="65.9687%" y="693" width="0.0260%" height="15" fill="rgb(239,160,33)" fg:x="146965" fg:w="58"/><text x="66.2187%" y="703.50"></text></g><g><title>btrfs_free_tree_block (62 samples, 0.03%)</title><rect x="65.9682%" y="725" width="0.0278%" height="15" fill="rgb(220,202,23)" fg:x="146964" fg:w="62"/><text x="66.2182%" y="735.50"></text></g><g><title>btrfs_del_leaf (66 samples, 0.03%)</title><rect x="65.9682%" y="741" width="0.0296%" height="15" fill="rgb(208,80,26)" fg:x="146964" fg:w="66"/><text x="66.2182%" y="751.50"></text></g><g><title>btrfs_get_token_32 (30 samples, 0.01%)</title><rect x="65.9996%" y="741" width="0.0135%" height="15" fill="rgb(243,85,7)" fg:x="147034" fg:w="30"/><text x="66.2496%" y="751.50"></text></g><g><title>btrfs_set_token_32 (23 samples, 0.01%)</title><rect x="66.0136%" y="741" width="0.0103%" height="15" fill="rgb(228,77,47)" fg:x="147065" fg:w="23"/><text x="66.2636%" y="751.50"></text></g><g><title>btrfs_del_items (159 samples, 0.07%)</title><rect x="65.9646%" y="757" width="0.0714%" height="15" fill="rgb(212,226,8)" fg:x="146956" fg:w="159"/><text x="66.2146%" y="767.50"></text></g><g><title>__wake_up_common (38 samples, 0.02%)</title><rect x="66.0427%" y="709" width="0.0171%" height="15" fill="rgb(241,120,54)" fg:x="147130" fg:w="38"/><text x="66.2927%" y="719.50"></text></g><g><title>autoremove_wake_function (35 samples, 0.02%)</title><rect x="66.0441%" y="693" width="0.0157%" height="15" fill="rgb(226,80,16)" fg:x="147133" fg:w="35"/><text x="66.2941%" y="703.50"></text></g><g><title>try_to_wake_up (34 samples, 0.02%)</title><rect x="66.0445%" y="677" width="0.0153%" height="15" fill="rgb(240,76,13)" fg:x="147134" fg:w="34"/><text x="66.2945%" y="687.50"></text></g><g><title>__wake_up_common_lock (39 samples, 0.02%)</title><rect x="66.0427%" y="725" width="0.0175%" height="15" fill="rgb(252,74,8)" fg:x="147130" fg:w="39"/><text x="66.2927%" y="735.50"></text></g><g><title>btrfs_free_path (43 samples, 0.02%)</title><rect x="66.0418%" y="757" width="0.0193%" height="15" fill="rgb(244,155,2)" fg:x="147128" fg:w="43"/><text x="66.2918%" y="767.50"></text></g><g><title>btrfs_release_path (43 samples, 0.02%)</title><rect x="66.0418%" y="741" width="0.0193%" height="15" fill="rgb(215,81,35)" fg:x="147128" fg:w="43"/><text x="66.2918%" y="751.50"></text></g><g><title>btrfs_kill_delayed_inode_items (31 samples, 0.01%)</title><rect x="66.0629%" y="757" width="0.0139%" height="15" fill="rgb(206,55,2)" fg:x="147175" fg:w="31"/><text x="66.3129%" y="767.50"></text></g><g><title>__btrfs_kill_delayed_node (30 samples, 0.01%)</title><rect x="66.0634%" y="741" width="0.0135%" height="15" fill="rgb(231,2,34)" fg:x="147176" fg:w="30"/><text x="66.3134%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="66.0872%" y="661" width="0.0117%" height="15" fill="rgb(242,176,48)" fg:x="147229" fg:w="26"/><text x="66.3372%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="66.0881%" y="645" width="0.0108%" height="15" fill="rgb(249,31,36)" fg:x="147231" fg:w="24"/><text x="66.3381%" y="655.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="66.0881%" y="629" width="0.0108%" height="15" fill="rgb(205,18,17)" fg:x="147231" fg:w="24"/><text x="66.3381%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (39 samples, 0.02%)</title><rect x="66.0818%" y="725" width="0.0175%" height="15" fill="rgb(254,130,5)" fg:x="147217" fg:w="39"/><text x="66.3318%" y="735.50"></text></g><g><title>schedule (27 samples, 0.01%)</title><rect x="66.0872%" y="709" width="0.0121%" height="15" fill="rgb(229,42,45)" fg:x="147229" fg:w="27"/><text x="66.3372%" y="719.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="66.0872%" y="693" width="0.0121%" height="15" fill="rgb(245,95,25)" fg:x="147229" fg:w="27"/><text x="66.3372%" y="703.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="66.0872%" y="677" width="0.0121%" height="15" fill="rgb(249,193,38)" fg:x="147229" fg:w="27"/><text x="66.3372%" y="687.50"></text></g><g><title>__btrfs_read_lock_root_node (40 samples, 0.02%)</title><rect x="66.0818%" y="741" width="0.0180%" height="15" fill="rgb(241,140,43)" fg:x="147217" fg:w="40"/><text x="66.3318%" y="751.50"></text></g><g><title>__btrfs_tree_lock (30 samples, 0.01%)</title><rect x="66.0997%" y="741" width="0.0135%" height="15" fill="rgb(245,78,48)" fg:x="147257" fg:w="30"/><text x="66.3497%" y="751.50"></text></g><g><title>schedule (29 samples, 0.01%)</title><rect x="66.1002%" y="725" width="0.0130%" height="15" fill="rgb(214,92,39)" fg:x="147258" fg:w="29"/><text x="66.3502%" y="735.50"></text></g><g><title>__schedule (29 samples, 0.01%)</title><rect x="66.1002%" y="709" width="0.0130%" height="15" fill="rgb(211,189,14)" fg:x="147258" fg:w="29"/><text x="66.3502%" y="719.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="66.1006%" y="693" width="0.0126%" height="15" fill="rgb(218,7,24)" fg:x="147259" fg:w="28"/><text x="66.3506%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="66.1020%" y="677" width="0.0112%" height="15" fill="rgb(224,200,49)" fg:x="147262" fg:w="25"/><text x="66.3520%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="66.1024%" y="661" width="0.0108%" height="15" fill="rgb(218,210,14)" fg:x="147263" fg:w="24"/><text x="66.3524%" y="671.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="66.1024%" y="645" width="0.0108%" height="15" fill="rgb(234,142,31)" fg:x="147263" fg:w="24"/><text x="66.3524%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.03%)</title><rect x="66.1222%" y="661" width="0.0260%" height="15" fill="rgb(227,165,2)" fg:x="147307" fg:w="58"/><text x="66.3722%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.02%)</title><rect x="66.1235%" y="645" width="0.0247%" height="15" fill="rgb(232,44,46)" fg:x="147310" fg:w="55"/><text x="66.3735%" y="655.50"></text></g><g><title>native_write_msr (55 samples, 0.02%)</title><rect x="66.1235%" y="629" width="0.0247%" height="15" fill="rgb(236,149,47)" fg:x="147310" fg:w="55"/><text x="66.3735%" y="639.50"></text></g><g><title>finish_task_switch (60 samples, 0.03%)</title><rect x="66.1217%" y="677" width="0.0269%" height="15" fill="rgb(227,45,31)" fg:x="147306" fg:w="60"/><text x="66.3717%" y="687.50"></text></g><g><title>__btrfs_tree_lock (80 samples, 0.04%)</title><rect x="66.1141%" y="725" width="0.0359%" height="15" fill="rgb(240,176,51)" fg:x="147289" fg:w="80"/><text x="66.3641%" y="735.50"></text></g><g><title>schedule (66 samples, 0.03%)</title><rect x="66.1204%" y="709" width="0.0296%" height="15" fill="rgb(249,146,41)" fg:x="147303" fg:w="66"/><text x="66.3704%" y="719.50"></text></g><g><title>__schedule (66 samples, 0.03%)</title><rect x="66.1204%" y="693" width="0.0296%" height="15" fill="rgb(213,208,4)" fg:x="147303" fg:w="66"/><text x="66.3704%" y="703.50"></text></g><g><title>btrfs_lock_root_node (83 samples, 0.04%)</title><rect x="66.1141%" y="741" width="0.0373%" height="15" fill="rgb(245,84,36)" fg:x="147289" fg:w="83"/><text x="66.3641%" y="751.50"></text></g><g><title>btrfs_search_slot (209 samples, 0.09%)</title><rect x="66.0782%" y="757" width="0.0938%" height="15" fill="rgb(254,84,18)" fg:x="147209" fg:w="209"/><text x="66.3282%" y="767.50"></text></g><g><title>btrfs_truncate_inode_items (513 samples, 0.23%)</title><rect x="65.9521%" y="773" width="0.2303%" height="15" fill="rgb(225,38,54)" fg:x="146928" fg:w="513"/><text x="66.2021%" y="783.50"></text></g><g><title>evict_refill_and_join (37 samples, 0.02%)</title><rect x="66.1823%" y="773" width="0.0166%" height="15" fill="rgb(246,50,30)" fg:x="147441" fg:w="37"/><text x="66.4323%" y="783.50"></text></g><g><title>btrfs_evict_inode (1,595 samples, 0.72%)</title><rect x="65.4866%" y="789" width="0.7160%" height="15" fill="rgb(246,148,9)" fg:x="145891" fg:w="1595"/><text x="65.7366%" y="799.50"></text></g><g><title>evict (1,609 samples, 0.72%)</title><rect x="65.4830%" y="805" width="0.7222%" height="15" fill="rgb(223,75,4)" fg:x="145883" fg:w="1609"/><text x="65.7330%" y="815.50"></text></g><g><title>d_walk (69 samples, 0.03%)</title><rect x="66.2084%" y="789" width="0.0310%" height="15" fill="rgb(239,148,41)" fg:x="147499" fg:w="69"/><text x="66.4584%" y="799.50"></text></g><g><title>select_collect (46 samples, 0.02%)</title><rect x="66.2187%" y="773" width="0.0206%" height="15" fill="rgb(205,195,3)" fg:x="147522" fg:w="46"/><text x="66.4687%" y="783.50"></text></g><g><title>d_lru_del (43 samples, 0.02%)</title><rect x="66.2200%" y="757" width="0.0193%" height="15" fill="rgb(254,161,1)" fg:x="147525" fg:w="43"/><text x="66.4700%" y="767.50"></text></g><g><title>list_lru_del (42 samples, 0.02%)</title><rect x="66.2205%" y="741" width="0.0189%" height="15" fill="rgb(211,229,8)" fg:x="147526" fg:w="42"/><text x="66.4705%" y="751.50"></text></g><g><title>___d_drop (24 samples, 0.01%)</title><rect x="66.2411%" y="757" width="0.0108%" height="15" fill="rgb(220,97,9)" fg:x="147572" fg:w="24"/><text x="66.4911%" y="767.50"></text></g><g><title>__dentry_kill (56 samples, 0.03%)</title><rect x="66.2393%" y="773" width="0.0251%" height="15" fill="rgb(240,218,8)" fg:x="147568" fg:w="56"/><text x="66.4893%" y="783.50"></text></g><g><title>do_rmdir (2,486 samples, 1.12%)</title><rect x="65.1576%" y="837" width="1.1159%" height="15" fill="rgb(250,44,0)" fg:x="145158" fg:w="2486"/><text x="65.4076%" y="847.50"></text></g><g><title>vfs_rmdir.part.0 (2,437 samples, 1.09%)</title><rect x="65.1795%" y="821" width="1.0939%" height="15" fill="rgb(236,41,53)" fg:x="145207" fg:w="2437"/><text x="65.4295%" y="831.50"></text></g><g><title>shrink_dcache_parent (146 samples, 0.07%)</title><rect x="66.2079%" y="805" width="0.0655%" height="15" fill="rgb(218,227,13)" fg:x="147498" fg:w="146"/><text x="66.4579%" y="815.50"></text></g><g><title>shrink_dentry_list (76 samples, 0.03%)</title><rect x="66.2393%" y="789" width="0.0341%" height="15" fill="rgb(217,94,32)" fg:x="147568" fg:w="76"/><text x="66.4893%" y="799.50"></text></g><g><title>__lookup_hash (70 samples, 0.03%)</title><rect x="66.2784%" y="821" width="0.0314%" height="15" fill="rgb(213,217,12)" fg:x="147655" fg:w="70"/><text x="66.5284%" y="831.50"></text></g><g><title>lookup_dcache (69 samples, 0.03%)</title><rect x="66.2788%" y="805" width="0.0310%" height="15" fill="rgb(229,13,46)" fg:x="147656" fg:w="69"/><text x="66.5288%" y="815.50"></text></g><g><title>d_lookup (66 samples, 0.03%)</title><rect x="66.2802%" y="789" width="0.0296%" height="15" fill="rgb(243,139,5)" fg:x="147659" fg:w="66"/><text x="66.5302%" y="799.50"></text></g><g><title>__d_lookup (64 samples, 0.03%)</title><rect x="66.2811%" y="773" width="0.0287%" height="15" fill="rgb(249,38,45)" fg:x="147661" fg:w="64"/><text x="66.5311%" y="783.50"></text></g><g><title>dput (41 samples, 0.02%)</title><rect x="66.3121%" y="821" width="0.0184%" height="15" fill="rgb(216,70,11)" fg:x="147730" fg:w="41"/><text x="66.5621%" y="831.50"></text></g><g><title>btrfs_del_orphan_item (35 samples, 0.02%)</title><rect x="66.3385%" y="789" width="0.0157%" height="15" fill="rgb(253,101,25)" fg:x="147789" fg:w="35"/><text x="66.5885%" y="799.50"></text></g><g><title>btrfs_search_slot (34 samples, 0.02%)</title><rect x="66.3390%" y="773" width="0.0153%" height="15" fill="rgb(207,197,30)" fg:x="147790" fg:w="34"/><text x="66.5890%" y="783.50"></text></g><g><title>btrfs_truncate_inode_items (33 samples, 0.01%)</title><rect x="66.3543%" y="789" width="0.0148%" height="15" fill="rgb(238,87,13)" fg:x="147824" fg:w="33"/><text x="66.6043%" y="799.50"></text></g><g><title>btrfs_evict_inode (92 samples, 0.04%)</title><rect x="66.3309%" y="805" width="0.0413%" height="15" fill="rgb(215,155,8)" fg:x="147772" fg:w="92"/><text x="66.5809%" y="815.50"></text></g><g><title>evict (94 samples, 0.04%)</title><rect x="66.3305%" y="821" width="0.0422%" height="15" fill="rgb(239,166,38)" fg:x="147771" fg:w="94"/><text x="66.5805%" y="831.50"></text></g><g><title>__fget_light (25 samples, 0.01%)</title><rect x="66.4009%" y="773" width="0.0112%" height="15" fill="rgb(240,194,35)" fg:x="147928" fg:w="25"/><text x="66.6509%" y="783.50"></text></g><g><title>path_init (36 samples, 0.02%)</title><rect x="66.3978%" y="789" width="0.0162%" height="15" fill="rgb(219,10,44)" fg:x="147921" fg:w="36"/><text x="66.6478%" y="799.50"></text></g><g><title>filename_parentat (102 samples, 0.05%)</title><rect x="66.3727%" y="821" width="0.0458%" height="15" fill="rgb(251,220,35)" fg:x="147865" fg:w="102"/><text x="66.6227%" y="831.50"></text></g><g><title>path_parentat (86 samples, 0.04%)</title><rect x="66.3798%" y="805" width="0.0386%" height="15" fill="rgb(218,117,13)" fg:x="147881" fg:w="86"/><text x="66.6298%" y="815.50"></text></g><g><title>ihold (36 samples, 0.02%)</title><rect x="66.4184%" y="821" width="0.0162%" height="15" fill="rgb(221,213,40)" fg:x="147967" fg:w="36"/><text x="66.6684%" y="831.50"></text></g><g><title>security_path_unlink (33 samples, 0.01%)</title><rect x="66.4539%" y="821" width="0.0148%" height="15" fill="rgb(251,224,35)" fg:x="148046" fg:w="33"/><text x="66.7039%" y="831.50"></text></g><g><title>_raw_spin_lock (25 samples, 0.01%)</title><rect x="66.4934%" y="741" width="0.0112%" height="15" fill="rgb(241,33,39)" fg:x="148134" fg:w="25"/><text x="66.7434%" y="751.50"></text></g><g><title>btrfs_trans_release_metadata (31 samples, 0.01%)</title><rect x="66.4921%" y="773" width="0.0139%" height="15" fill="rgb(222,74,17)" fg:x="148131" fg:w="31"/><text x="66.7421%" y="783.50"></text></g><g><title>btrfs_block_rsv_release (30 samples, 0.01%)</title><rect x="66.4925%" y="757" width="0.0135%" height="15" fill="rgb(225,103,0)" fg:x="148132" fg:w="30"/><text x="66.7425%" y="767.50"></text></g><g><title>__btrfs_end_transaction (85 samples, 0.04%)</title><rect x="66.4759%" y="789" width="0.0382%" height="15" fill="rgb(240,0,12)" fg:x="148095" fg:w="85"/><text x="66.7259%" y="799.50"></text></g><g><title>btrfs_lookup_dir_index_item (86 samples, 0.04%)</title><rect x="66.5504%" y="757" width="0.0386%" height="15" fill="rgb(233,213,37)" fg:x="148261" fg:w="86"/><text x="66.8004%" y="767.50"></text></g><g><title>btrfs_search_slot (85 samples, 0.04%)</title><rect x="66.5509%" y="741" width="0.0382%" height="15" fill="rgb(225,84,52)" fg:x="148262" fg:w="85"/><text x="66.8009%" y="751.50"></text></g><g><title>__btrfs_read_lock_root_node (27 samples, 0.01%)</title><rect x="66.5984%" y="725" width="0.0121%" height="15" fill="rgb(247,160,51)" fg:x="148368" fg:w="27"/><text x="66.8484%" y="735.50"></text></g><g><title>btrfs_search_slot (108 samples, 0.05%)</title><rect x="66.5908%" y="741" width="0.0485%" height="15" fill="rgb(244,60,51)" fg:x="148351" fg:w="108"/><text x="66.8408%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (131 samples, 0.06%)</title><rect x="66.5890%" y="757" width="0.0588%" height="15" fill="rgb(233,114,7)" fg:x="148347" fg:w="131"/><text x="66.8390%" y="767.50"></text></g><g><title>btrfs_del_dir_entries_in_log (312 samples, 0.14%)</title><rect x="66.5329%" y="773" width="0.1400%" height="15" fill="rgb(246,136,16)" fg:x="148222" fg:w="312"/><text x="66.7829%" y="783.50"></text></g><g><title>btrfs_get_token_32 (211 samples, 0.09%)</title><rect x="66.7057%" y="741" width="0.0947%" height="15" fill="rgb(243,114,45)" fg:x="148607" fg:w="211"/><text x="66.9557%" y="751.50"></text></g><g><title>btrfs_set_token_32 (147 samples, 0.07%)</title><rect x="66.8058%" y="741" width="0.0660%" height="15" fill="rgb(247,183,43)" fg:x="148830" fg:w="147"/><text x="67.0558%" y="751.50"></text></g><g><title>memcpy_extent_buffer (25 samples, 0.01%)</title><rect x="66.8758%" y="741" width="0.0112%" height="15" fill="rgb(251,210,42)" fg:x="148986" fg:w="25"/><text x="67.1258%" y="751.50"></text></g><g><title>btrfs_del_items (658 samples, 0.30%)</title><rect x="66.6797%" y="757" width="0.2954%" height="15" fill="rgb(221,88,35)" fg:x="148549" fg:w="658"/><text x="66.9297%" y="767.50"></text></g><g><title>memmove_extent_buffer (196 samples, 0.09%)</title><rect x="66.8871%" y="741" width="0.0880%" height="15" fill="rgb(242,21,20)" fg:x="149011" fg:w="196"/><text x="67.1371%" y="751.50"></text></g><g><title>memmove (167 samples, 0.07%)</title><rect x="66.9001%" y="725" width="0.0750%" height="15" fill="rgb(233,226,36)" fg:x="149040" fg:w="167"/><text x="67.1501%" y="735.50"></text></g><g><title>btrfs_find_name_in_backref (38 samples, 0.02%)</title><rect x="66.9750%" y="757" width="0.0171%" height="15" fill="rgb(243,189,34)" fg:x="149207" fg:w="38"/><text x="67.2250%" y="767.50"></text></g><g><title>free_extent_buffer.part.0 (28 samples, 0.01%)</title><rect x="66.9966%" y="725" width="0.0126%" height="15" fill="rgb(207,145,50)" fg:x="149255" fg:w="28"/><text x="67.2466%" y="735.50"></text></g><g><title>btrfs_free_path (51 samples, 0.02%)</title><rect x="66.9921%" y="757" width="0.0229%" height="15" fill="rgb(242,1,50)" fg:x="149245" fg:w="51"/><text x="67.2421%" y="767.50"></text></g><g><title>btrfs_release_path (50 samples, 0.02%)</title><rect x="66.9925%" y="741" width="0.0224%" height="15" fill="rgb(231,65,32)" fg:x="149246" fg:w="50"/><text x="67.2425%" y="751.50"></text></g><g><title>queued_read_lock_slowpath (83 samples, 0.04%)</title><rect x="67.0437%" y="709" width="0.0373%" height="15" fill="rgb(208,68,49)" fg:x="149360" fg:w="83"/><text x="67.2937%" y="719.50"></text></g><g><title>native_queued_spin_lock_slowpath (51 samples, 0.02%)</title><rect x="67.0581%" y="693" width="0.0229%" height="15" fill="rgb(253,54,49)" fg:x="149392" fg:w="51"/><text x="67.3081%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="67.0819%" y="661" width="0.0117%" height="15" fill="rgb(245,186,24)" fg:x="149445" fg:w="26"/><text x="67.3319%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="67.0823%" y="645" width="0.0112%" height="15" fill="rgb(209,2,41)" fg:x="149446" fg:w="25"/><text x="67.3323%" y="655.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="67.0823%" y="629" width="0.0112%" height="15" fill="rgb(242,208,54)" fg:x="149446" fg:w="25"/><text x="67.3323%" y="639.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="67.0819%" y="677" width="0.0121%" height="15" fill="rgb(225,9,51)" fg:x="149445" fg:w="27"/><text x="67.3319%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (135 samples, 0.06%)</title><rect x="67.0352%" y="725" width="0.0606%" height="15" fill="rgb(207,207,25)" fg:x="149341" fg:w="135"/><text x="67.2852%" y="735.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="67.0810%" y="709" width="0.0148%" height="15" fill="rgb(253,96,18)" fg:x="149443" fg:w="33"/><text x="67.3310%" y="719.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="67.0810%" y="693" width="0.0148%" height="15" fill="rgb(252,215,20)" fg:x="149443" fg:w="33"/><text x="67.3310%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (144 samples, 0.06%)</title><rect x="67.0343%" y="741" width="0.0646%" height="15" fill="rgb(245,227,26)" fg:x="149339" fg:w="144"/><text x="67.2843%" y="751.50"></text></g><g><title>queued_write_lock_slowpath (120 samples, 0.05%)</title><rect x="67.1124%" y="709" width="0.0539%" height="15" fill="rgb(241,208,0)" fg:x="149513" fg:w="120"/><text x="67.3624%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (198 samples, 0.09%)</title><rect x="67.1761%" y="661" width="0.0889%" height="15" fill="rgb(224,130,10)" fg:x="149655" fg:w="198"/><text x="67.4261%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (193 samples, 0.09%)</title><rect x="67.1784%" y="645" width="0.0866%" height="15" fill="rgb(237,29,0)" fg:x="149660" fg:w="193"/><text x="67.4284%" y="655.50"></text></g><g><title>native_write_msr (191 samples, 0.09%)</title><rect x="67.1793%" y="629" width="0.0857%" height="15" fill="rgb(219,27,41)" fg:x="149662" fg:w="191"/><text x="67.4293%" y="639.50"></text></g><g><title>finish_task_switch (214 samples, 0.10%)</title><rect x="67.1730%" y="677" width="0.0961%" height="15" fill="rgb(245,101,19)" fg:x="149648" fg:w="214"/><text x="67.4230%" y="687.50"></text></g><g><title>__btrfs_tree_lock (378 samples, 0.17%)</title><rect x="67.1034%" y="725" width="0.1697%" height="15" fill="rgb(243,44,37)" fg:x="149493" fg:w="378"/><text x="67.3534%" y="735.50"></text></g><g><title>schedule (238 samples, 0.11%)</title><rect x="67.1663%" y="709" width="0.1068%" height="15" fill="rgb(228,213,43)" fg:x="149633" fg:w="238"/><text x="67.4163%" y="719.50"></text></g><g><title>__schedule (238 samples, 0.11%)</title><rect x="67.1663%" y="693" width="0.1068%" height="15" fill="rgb(219,163,21)" fg:x="149633" fg:w="238"/><text x="67.4163%" y="703.50"></text></g><g><title>btrfs_lock_root_node (385 samples, 0.17%)</title><rect x="67.1030%" y="741" width="0.1728%" height="15" fill="rgb(234,86,24)" fg:x="149492" fg:w="385"/><text x="67.3530%" y="751.50"></text></g><g><title>btrfs_try_tree_write_lock (74 samples, 0.03%)</title><rect x="67.2794%" y="741" width="0.0332%" height="15" fill="rgb(225,10,24)" fg:x="149885" fg:w="74"/><text x="67.5294%" y="751.50"></text></g><g><title>queued_write_lock_slowpath (66 samples, 0.03%)</title><rect x="67.2830%" y="725" width="0.0296%" height="15" fill="rgb(218,109,7)" fg:x="149893" fg:w="66"/><text x="67.5330%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (133 samples, 0.06%)</title><rect x="67.3148%" y="741" width="0.0597%" height="15" fill="rgb(210,20,26)" fg:x="149964" fg:w="133"/><text x="67.5648%" y="751.50"></text></g><g><title>__radix_tree_lookup (45 samples, 0.02%)</title><rect x="67.4073%" y="709" width="0.0202%" height="15" fill="rgb(216,18,1)" fg:x="150170" fg:w="45"/><text x="67.6573%" y="719.50"></text></g><g><title>find_extent_buffer (107 samples, 0.05%)</title><rect x="67.3965%" y="725" width="0.0480%" height="15" fill="rgb(206,163,23)" fg:x="150146" fg:w="107"/><text x="67.6465%" y="735.50"></text></g><g><title>mark_extent_buffer_accessed (37 samples, 0.02%)</title><rect x="67.4280%" y="709" width="0.0166%" height="15" fill="rgb(229,150,31)" fg:x="150216" fg:w="37"/><text x="67.6780%" y="719.50"></text></g><g><title>mark_page_accessed (24 samples, 0.01%)</title><rect x="67.4338%" y="693" width="0.0108%" height="15" fill="rgb(231,10,5)" fg:x="150229" fg:w="24"/><text x="67.6838%" y="703.50"></text></g><g><title>read_block_for_search.isra.0 (179 samples, 0.08%)</title><rect x="67.3745%" y="741" width="0.0803%" height="15" fill="rgb(250,40,50)" fg:x="150097" fg:w="179"/><text x="67.6245%" y="751.50"></text></g><g><title>read_extent_buffer (23 samples, 0.01%)</title><rect x="67.4446%" y="725" width="0.0103%" height="15" fill="rgb(217,119,7)" fg:x="150253" fg:w="23"/><text x="67.6946%" y="735.50"></text></g><g><title>btrfs_search_slot (993 samples, 0.45%)</title><rect x="67.0217%" y="757" width="0.4457%" height="15" fill="rgb(245,214,40)" fg:x="149311" fg:w="993"/><text x="67.2717%" y="767.50"></text></g><g><title>unlock_up (28 samples, 0.01%)</title><rect x="67.4549%" y="741" width="0.0126%" height="15" fill="rgb(216,187,1)" fg:x="150276" fg:w="28"/><text x="67.7049%" y="751.50"></text></g><g><title>kmem_cache_alloc (33 samples, 0.01%)</title><rect x="67.4746%" y="757" width="0.0148%" height="15" fill="rgb(237,146,21)" fg:x="150320" fg:w="33"/><text x="67.7246%" y="767.50"></text></g><g><title>btrfs_del_inode_ref (1,832 samples, 0.82%)</title><rect x="66.6730%" y="773" width="0.8223%" height="15" fill="rgb(210,174,47)" fg:x="148534" fg:w="1832"/><text x="66.9230%" y="783.50"></text></g><g><title>_find_next_bit.constprop.0 (80 samples, 0.04%)</title><rect x="67.5424%" y="693" width="0.0359%" height="15" fill="rgb(218,111,39)" fg:x="150471" fg:w="80"/><text x="67.7924%" y="703.50"></text></g><g><title>steal_from_bitmap.part.0 (98 samples, 0.04%)</title><rect x="67.5388%" y="709" width="0.0440%" height="15" fill="rgb(224,95,19)" fg:x="150463" fg:w="98"/><text x="67.7888%" y="719.50"></text></g><g><title>__btrfs_add_free_space (110 samples, 0.05%)</title><rect x="67.5357%" y="725" width="0.0494%" height="15" fill="rgb(234,15,38)" fg:x="150456" fg:w="110"/><text x="67.7857%" y="735.50"></text></g><g><title>btrfs_free_tree_block (120 samples, 0.05%)</title><rect x="67.5357%" y="741" width="0.0539%" height="15" fill="rgb(246,56,12)" fg:x="150456" fg:w="120"/><text x="67.7857%" y="751.50"></text></g><g><title>btrfs_del_leaf (123 samples, 0.06%)</title><rect x="67.5357%" y="757" width="0.0552%" height="15" fill="rgb(247,16,17)" fg:x="150456" fg:w="123"/><text x="67.7857%" y="767.50"></text></g><g><title>btrfs_get_token_32 (305 samples, 0.14%)</title><rect x="67.5958%" y="757" width="0.1369%" height="15" fill="rgb(215,151,11)" fg:x="150590" fg:w="305"/><text x="67.8458%" y="767.50"></text></g><g><title>check_setget_bounds.isra.0 (51 samples, 0.02%)</title><rect x="67.7098%" y="741" width="0.0229%" height="15" fill="rgb(225,16,24)" fg:x="150844" fg:w="51"/><text x="67.9598%" y="751.50"></text></g><g><title>btrfs_set_token_32 (238 samples, 0.11%)</title><rect x="67.7408%" y="757" width="0.1068%" height="15" fill="rgb(217,117,5)" fg:x="150913" fg:w="238"/><text x="67.9908%" y="767.50"></text></g><g><title>check_setget_bounds.isra.0 (33 samples, 0.01%)</title><rect x="67.8328%" y="741" width="0.0148%" height="15" fill="rgb(246,187,53)" fg:x="151118" fg:w="33"/><text x="68.0828%" y="751.50"></text></g><g><title>memcpy_extent_buffer (43 samples, 0.02%)</title><rect x="67.8539%" y="757" width="0.0193%" height="15" fill="rgb(241,71,40)" fg:x="151165" fg:w="43"/><text x="68.1039%" y="767.50"></text></g><g><title>memmove (30 samples, 0.01%)</title><rect x="67.8598%" y="741" width="0.0135%" height="15" fill="rgb(231,67,39)" fg:x="151178" fg:w="30"/><text x="68.1098%" y="751.50"></text></g><g><title>memmove_extent_buffer (152 samples, 0.07%)</title><rect x="67.8732%" y="757" width="0.0682%" height="15" fill="rgb(222,120,24)" fg:x="151208" fg:w="152"/><text x="68.1232%" y="767.50"></text></g><g><title>memmove (129 samples, 0.06%)</title><rect x="67.8836%" y="741" width="0.0579%" height="15" fill="rgb(248,3,3)" fg:x="151231" fg:w="129"/><text x="68.1336%" y="751.50"></text></g><g><title>btrfs_del_items (1,002 samples, 0.45%)</title><rect x="67.5038%" y="773" width="0.4498%" height="15" fill="rgb(228,218,5)" fg:x="150385" fg:w="1002"/><text x="67.7538%" y="783.50"></text></g><g><title>__btrfs_add_delayed_item (47 samples, 0.02%)</title><rect x="67.9545%" y="757" width="0.0211%" height="15" fill="rgb(212,202,43)" fg:x="151389" fg:w="47"/><text x="68.2045%" y="767.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (38 samples, 0.02%)</title><rect x="67.9756%" y="757" width="0.0171%" height="15" fill="rgb(235,183,2)" fg:x="151436" fg:w="38"/><text x="68.2256%" y="767.50"></text></g><g><title>mutex_spin_on_owner (37 samples, 0.02%)</title><rect x="67.9931%" y="741" width="0.0166%" height="15" fill="rgb(230,165,10)" fg:x="151475" fg:w="37"/><text x="68.2431%" y="751.50"></text></g><g><title>__mutex_lock.constprop.0 (45 samples, 0.02%)</title><rect x="67.9926%" y="757" width="0.0202%" height="15" fill="rgb(219,54,40)" fg:x="151474" fg:w="45"/><text x="68.2426%" y="767.50"></text></g><g><title>_raw_spin_lock (24 samples, 0.01%)</title><rect x="68.0187%" y="725" width="0.0108%" height="15" fill="rgb(244,73,9)" fg:x="151532" fg:w="24"/><text x="68.2687%" y="735.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (37 samples, 0.02%)</title><rect x="68.0133%" y="757" width="0.0166%" height="15" fill="rgb(212,32,45)" fg:x="151520" fg:w="37"/><text x="68.2633%" y="767.50"></text></g><g><title>btrfs_block_rsv_migrate (28 samples, 0.01%)</title><rect x="68.0173%" y="741" width="0.0126%" height="15" fill="rgb(205,58,31)" fg:x="151529" fg:w="28"/><text x="68.2673%" y="751.50"></text></g><g><title>btrfs_delete_delayed_dir_index (221 samples, 0.10%)</title><rect x="67.9536%" y="773" width="0.0992%" height="15" fill="rgb(250,120,43)" fg:x="151387" fg:w="221"/><text x="68.2036%" y="783.50"></text></g><g><title>btrfs_match_dir_item_name (58 samples, 0.03%)</title><rect x="68.0698%" y="757" width="0.0260%" height="15" fill="rgb(235,13,10)" fg:x="151646" fg:w="58"/><text x="68.3198%" y="767.50"></text></g><g><title>memcmp_extent_buffer (24 samples, 0.01%)</title><rect x="68.0851%" y="741" width="0.0108%" height="15" fill="rgb(232,219,31)" fg:x="151680" fg:w="24"/><text x="68.3351%" y="751.50"></text></g><g><title>queued_read_lock_slowpath (67 samples, 0.03%)</title><rect x="68.1237%" y="709" width="0.0301%" height="15" fill="rgb(218,157,51)" fg:x="151766" fg:w="67"/><text x="68.3737%" y="719.50"></text></g><g><title>native_queued_spin_lock_slowpath (42 samples, 0.02%)</title><rect x="68.1349%" y="693" width="0.0189%" height="15" fill="rgb(211,91,52)" fg:x="151791" fg:w="42"/><text x="68.3849%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (164 samples, 0.07%)</title><rect x="68.1583%" y="661" width="0.0736%" height="15" fill="rgb(240,173,1)" fg:x="151843" fg:w="164"/><text x="68.4083%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (154 samples, 0.07%)</title><rect x="68.1628%" y="645" width="0.0691%" height="15" fill="rgb(248,20,47)" fg:x="151853" fg:w="154"/><text x="68.4128%" y="655.50"></text></g><g><title>native_write_msr (152 samples, 0.07%)</title><rect x="68.1637%" y="629" width="0.0682%" height="15" fill="rgb(217,221,40)" fg:x="151855" fg:w="152"/><text x="68.4137%" y="639.50"></text></g><g><title>finish_task_switch (175 samples, 0.08%)</title><rect x="68.1560%" y="677" width="0.0786%" height="15" fill="rgb(226,149,51)" fg:x="151838" fg:w="175"/><text x="68.4060%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (275 samples, 0.12%)</title><rect x="68.1134%" y="725" width="0.1234%" height="15" fill="rgb(252,193,7)" fg:x="151743" fg:w="275"/><text x="68.3634%" y="735.50"></text></g><g><title>schedule (185 samples, 0.08%)</title><rect x="68.1538%" y="709" width="0.0830%" height="15" fill="rgb(205,123,0)" fg:x="151833" fg:w="185"/><text x="68.4038%" y="719.50"></text></g><g><title>__schedule (185 samples, 0.08%)</title><rect x="68.1538%" y="693" width="0.0830%" height="15" fill="rgb(233,173,25)" fg:x="151833" fg:w="185"/><text x="68.4038%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (300 samples, 0.13%)</title><rect x="68.1125%" y="741" width="0.1347%" height="15" fill="rgb(216,63,32)" fg:x="151741" fg:w="300"/><text x="68.3625%" y="751.50"></text></g><g><title>btrfs_root_node (23 samples, 0.01%)</title><rect x="68.2368%" y="725" width="0.0103%" height="15" fill="rgb(209,56,45)" fg:x="152018" fg:w="23"/><text x="68.4868%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (373 samples, 0.17%)</title><rect x="68.2665%" y="677" width="0.1674%" height="15" fill="rgb(226,111,49)" fg:x="152084" fg:w="373"/><text x="68.5165%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (366 samples, 0.16%)</title><rect x="68.2696%" y="661" width="0.1643%" height="15" fill="rgb(244,181,21)" fg:x="152091" fg:w="366"/><text x="68.5196%" y="671.50"></text></g><g><title>native_write_msr (364 samples, 0.16%)</title><rect x="68.2705%" y="645" width="0.1634%" height="15" fill="rgb(222,126,15)" fg:x="152093" fg:w="364"/><text x="68.5205%" y="655.50"></text></g><g><title>finish_task_switch (398 samples, 0.18%)</title><rect x="68.2615%" y="693" width="0.1787%" height="15" fill="rgb(222,95,17)" fg:x="152073" fg:w="398"/><text x="68.5115%" y="703.50"></text></g><g><title>__btrfs_tree_lock (443 samples, 0.20%)</title><rect x="68.2471%" y="741" width="0.1989%" height="15" fill="rgb(254,46,5)" fg:x="152041" fg:w="443"/><text x="68.4971%" y="751.50"></text></g><g><title>schedule (424 samples, 0.19%)</title><rect x="68.2557%" y="725" width="0.1903%" height="15" fill="rgb(236,216,35)" fg:x="152060" fg:w="424"/><text x="68.5057%" y="735.50"></text></g><g><title>__schedule (421 samples, 0.19%)</title><rect x="68.2570%" y="709" width="0.1890%" height="15" fill="rgb(217,187,26)" fg:x="152063" fg:w="421"/><text x="68.5070%" y="719.50"></text></g><g><title>queued_write_lock_slowpath (110 samples, 0.05%)</title><rect x="68.4613%" y="709" width="0.0494%" height="15" fill="rgb(207,192,25)" fg:x="152518" fg:w="110"/><text x="68.7113%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (339 samples, 0.15%)</title><rect x="68.5246%" y="661" width="0.1522%" height="15" fill="rgb(253,135,27)" fg:x="152659" fg:w="339"/><text x="68.7746%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (324 samples, 0.15%)</title><rect x="68.5313%" y="645" width="0.1454%" height="15" fill="rgb(211,122,29)" fg:x="152674" fg:w="324"/><text x="68.7813%" y="655.50"></text></g><g><title>native_write_msr (318 samples, 0.14%)</title><rect x="68.5340%" y="629" width="0.1427%" height="15" fill="rgb(233,162,40)" fg:x="152680" fg:w="318"/><text x="68.7840%" y="639.50"></text></g><g><title>finish_task_switch (365 samples, 0.16%)</title><rect x="68.5201%" y="677" width="0.1638%" height="15" fill="rgb(222,184,47)" fg:x="152649" fg:w="365"/><text x="68.7701%" y="687.50"></text></g><g><title>__btrfs_tree_lock (540 samples, 0.24%)</title><rect x="68.4482%" y="725" width="0.2424%" height="15" fill="rgb(249,99,23)" fg:x="152489" fg:w="540"/><text x="68.6982%" y="735.50"></text></g><g><title>schedule (401 samples, 0.18%)</title><rect x="68.5106%" y="709" width="0.1800%" height="15" fill="rgb(214,60,12)" fg:x="152628" fg:w="401"/><text x="68.7606%" y="719.50"></text></g><g><title>__schedule (400 samples, 0.18%)</title><rect x="68.5111%" y="693" width="0.1795%" height="15" fill="rgb(250,229,36)" fg:x="152629" fg:w="400"/><text x="68.7611%" y="703.50"></text></g><g><title>btrfs_lock_root_node (542 samples, 0.24%)</title><rect x="68.4482%" y="741" width="0.2433%" height="15" fill="rgb(232,195,10)" fg:x="152489" fg:w="542"/><text x="68.6982%" y="751.50"></text></g><g><title>btrfs_try_tree_write_lock (143 samples, 0.06%)</title><rect x="68.6947%" y="741" width="0.0642%" height="15" fill="rgb(205,213,31)" fg:x="153038" fg:w="143"/><text x="68.9447%" y="751.50"></text></g><g><title>queued_write_lock_slowpath (134 samples, 0.06%)</title><rect x="68.6987%" y="725" width="0.0601%" height="15" fill="rgb(237,43,8)" fg:x="153047" fg:w="134"/><text x="68.9487%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (95 samples, 0.04%)</title><rect x="68.7602%" y="741" width="0.0426%" height="15" fill="rgb(216,208,3)" fg:x="153184" fg:w="95"/><text x="69.0102%" y="751.50"></text></g><g><title>__radix_tree_lookup (55 samples, 0.02%)</title><rect x="68.8473%" y="709" width="0.0247%" height="15" fill="rgb(228,179,44)" fg:x="153378" fg:w="55"/><text x="69.0973%" y="719.50"></text></g><g><title>find_extent_buffer (129 samples, 0.06%)</title><rect x="68.8275%" y="725" width="0.0579%" height="15" fill="rgb(230,192,27)" fg:x="153334" fg:w="129"/><text x="69.0775%" y="735.50"></text></g><g><title>mark_extent_buffer_accessed (30 samples, 0.01%)</title><rect x="68.8720%" y="709" width="0.0135%" height="15" fill="rgb(251,30,38)" fg:x="153433" fg:w="30"/><text x="69.1220%" y="719.50"></text></g><g><title>mark_page_accessed (23 samples, 0.01%)</title><rect x="68.8751%" y="693" width="0.0103%" height="15" fill="rgb(246,55,52)" fg:x="153440" fg:w="23"/><text x="69.1251%" y="703.50"></text></g><g><title>read_block_for_search.isra.0 (196 samples, 0.09%)</title><rect x="68.8029%" y="741" width="0.0880%" height="15" fill="rgb(249,79,26)" fg:x="153279" fg:w="196"/><text x="69.0529%" y="751.50"></text></g><g><title>select_task_rq_fair (26 samples, 0.01%)</title><rect x="68.9101%" y="661" width="0.0117%" height="15" fill="rgb(220,202,16)" fg:x="153518" fg:w="26"/><text x="69.1601%" y="671.50"></text></g><g><title>enqueue_task_fair (24 samples, 0.01%)</title><rect x="68.9245%" y="645" width="0.0108%" height="15" fill="rgb(250,170,23)" fg:x="153550" fg:w="24"/><text x="69.1745%" y="655.50"></text></g><g><title>ttwu_do_activate (43 samples, 0.02%)</title><rect x="68.9232%" y="661" width="0.0193%" height="15" fill="rgb(230,7,37)" fg:x="153547" fg:w="43"/><text x="69.1732%" y="671.50"></text></g><g><title>__wake_up_common_lock (109 samples, 0.05%)</title><rect x="68.8967%" y="725" width="0.0489%" height="15" fill="rgb(213,71,1)" fg:x="153488" fg:w="109"/><text x="69.1467%" y="735.50"></text></g><g><title>__wake_up_common (108 samples, 0.05%)</title><rect x="68.8971%" y="709" width="0.0485%" height="15" fill="rgb(227,87,39)" fg:x="153489" fg:w="108"/><text x="69.1471%" y="719.50"></text></g><g><title>autoremove_wake_function (108 samples, 0.05%)</title><rect x="68.8971%" y="693" width="0.0485%" height="15" fill="rgb(210,41,29)" fg:x="153489" fg:w="108"/><text x="69.1471%" y="703.50"></text></g><g><title>try_to_wake_up (105 samples, 0.05%)</title><rect x="68.8985%" y="677" width="0.0471%" height="15" fill="rgb(206,191,31)" fg:x="153492" fg:w="105"/><text x="69.1485%" y="687.50"></text></g><g><title>btrfs_search_slot (1,899 samples, 0.85%)</title><rect x="68.0959%" y="757" width="0.8524%" height="15" fill="rgb(247,75,54)" fg:x="151704" fg:w="1899"/><text x="68.3459%" y="767.50"></text></g><g><title>unlock_up (128 samples, 0.06%)</title><rect x="68.8908%" y="741" width="0.0575%" height="15" fill="rgb(208,54,50)" fg:x="153475" fg:w="128"/><text x="69.1408%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (1,979 samples, 0.89%)</title><rect x="68.0654%" y="773" width="0.8883%" height="15" fill="rgb(214,90,37)" fg:x="151636" fg:w="1979"/><text x="68.3154%" y="783.50"></text></g><g><title>free_extent_buffer.part.0 (26 samples, 0.01%)</title><rect x="68.9586%" y="757" width="0.0117%" height="15" fill="rgb(220,132,6)" fg:x="153626" fg:w="26"/><text x="69.2086%" y="767.50"></text></g><g><title>btrfs_release_path (47 samples, 0.02%)</title><rect x="68.9537%" y="773" width="0.0211%" height="15" fill="rgb(213,167,7)" fg:x="153615" fg:w="47"/><text x="69.2037%" y="783.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (32 samples, 0.01%)</title><rect x="68.9779%" y="741" width="0.0144%" height="15" fill="rgb(243,36,27)" fg:x="153669" fg:w="32"/><text x="69.2279%" y="751.50"></text></g><g><title>btrfs_delayed_update_inode (74 samples, 0.03%)</title><rect x="68.9775%" y="757" width="0.0332%" height="15" fill="rgb(235,147,12)" fg:x="153668" fg:w="74"/><text x="69.2275%" y="767.50"></text></g><g><title>btrfs_update_inode (93 samples, 0.04%)</title><rect x="68.9748%" y="773" width="0.0417%" height="15" fill="rgb(212,198,44)" fg:x="153662" fg:w="93"/><text x="69.2248%" y="783.50"></text></g><g><title>kmem_cache_alloc (23 samples, 0.01%)</title><rect x="69.0170%" y="773" width="0.0103%" height="15" fill="rgb(218,68,50)" fg:x="153756" fg:w="23"/><text x="69.2670%" y="783.50"></text></g><g><title>__btrfs_unlink_inode (5,618 samples, 2.52%)</title><rect x="66.5140%" y="789" width="2.5218%" height="15" fill="rgb(224,79,48)" fg:x="148180" fg:w="5618"/><text x="66.7640%" y="799.50">__..</text></g><g><title>__queue_work (47 samples, 0.02%)</title><rect x="69.0466%" y="757" width="0.0211%" height="15" fill="rgb(213,191,50)" fg:x="153822" fg:w="47"/><text x="69.2966%" y="767.50"></text></g><g><title>try_to_wake_up (33 samples, 0.01%)</title><rect x="69.0529%" y="741" width="0.0148%" height="15" fill="rgb(254,146,10)" fg:x="153836" fg:w="33"/><text x="69.3029%" y="751.50"></text></g><g><title>btrfs_btree_balance_dirty (72 samples, 0.03%)</title><rect x="69.0358%" y="789" width="0.0323%" height="15" fill="rgb(215,175,11)" fg:x="153798" fg:w="72"/><text x="69.2858%" y="799.50"></text></g><g><title>queue_work_on (49 samples, 0.02%)</title><rect x="69.0461%" y="773" width="0.0220%" height="15" fill="rgb(207,49,7)" fg:x="153821" fg:w="49"/><text x="69.2961%" y="783.50"></text></g><g><title>mutex_lock (28 samples, 0.01%)</title><rect x="69.0740%" y="773" width="0.0126%" height="15" fill="rgb(234,144,29)" fg:x="153883" fg:w="28"/><text x="69.3240%" y="783.50"></text></g><g><title>btrfs_record_unlink_dir (41 samples, 0.02%)</title><rect x="69.0717%" y="789" width="0.0184%" height="15" fill="rgb(213,222,48)" fg:x="153878" fg:w="41"/><text x="69.3217%" y="799.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (24 samples, 0.01%)</title><rect x="69.1000%" y="757" width="0.0108%" height="15" fill="rgb(222,8,6)" fg:x="153941" fg:w="24"/><text x="69.3500%" y="767.50"></text></g><g><title>btrfs_get_or_create_delayed_node (33 samples, 0.01%)</title><rect x="69.1148%" y="757" width="0.0148%" height="15" fill="rgb(221,114,49)" fg:x="153974" fg:w="33"/><text x="69.3648%" y="767.50"></text></g><g><title>btrfs_get_delayed_node (32 samples, 0.01%)</title><rect x="69.1153%" y="741" width="0.0144%" height="15" fill="rgb(250,140,42)" fg:x="153975" fg:w="32"/><text x="69.3653%" y="751.50"></text></g><g><title>btrfs_delayed_update_inode (110 samples, 0.05%)</title><rect x="69.0924%" y="773" width="0.0494%" height="15" fill="rgb(250,150,27)" fg:x="153924" fg:w="110"/><text x="69.3424%" y="783.50"></text></g><g><title>btrfs_update_inode (123 samples, 0.06%)</title><rect x="69.0901%" y="789" width="0.0552%" height="15" fill="rgb(252,159,3)" fg:x="153919" fg:w="123"/><text x="69.3401%" y="799.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (40 samples, 0.02%)</title><rect x="69.1669%" y="725" width="0.0180%" height="15" fill="rgb(241,182,3)" fg:x="154090" fg:w="40"/><text x="69.4169%" y="735.50"></text></g><g><title>btrfs_block_rsv_add (95 samples, 0.04%)</title><rect x="69.1539%" y="773" width="0.0426%" height="15" fill="rgb(236,3,9)" fg:x="154061" fg:w="95"/><text x="69.4039%" y="783.50"></text></g><g><title>btrfs_reserve_metadata_bytes (88 samples, 0.04%)</title><rect x="69.1570%" y="757" width="0.0395%" height="15" fill="rgb(223,227,51)" fg:x="154068" fg:w="88"/><text x="69.4070%" y="767.50"></text></g><g><title>__reserve_bytes (84 samples, 0.04%)</title><rect x="69.1588%" y="741" width="0.0377%" height="15" fill="rgb(232,133,30)" fg:x="154072" fg:w="84"/><text x="69.4088%" y="751.50"></text></g><g><title>calc_available_free_space.isra.0 (26 samples, 0.01%)</title><rect x="69.1848%" y="725" width="0.0117%" height="15" fill="rgb(209,93,27)" fg:x="154130" fg:w="26"/><text x="69.4348%" y="735.50"></text></g><g><title>btrfs_unlink (6,118 samples, 2.75%)</title><rect x="66.4737%" y="805" width="2.7462%" height="15" fill="rgb(208,108,34)" fg:x="148090" fg:w="6118"/><text x="66.7237%" y="815.50">bt..</text></g><g><title>start_transaction (165 samples, 0.07%)</title><rect x="69.1458%" y="789" width="0.0741%" height="15" fill="rgb(215,189,13)" fg:x="154043" fg:w="165"/><text x="69.3958%" y="799.50"></text></g><g><title>down_write (23 samples, 0.01%)</title><rect x="69.2257%" y="805" width="0.0103%" height="15" fill="rgb(206,88,23)" fg:x="154221" fg:w="23"/><text x="69.4757%" y="815.50"></text></g><g><title>fsnotify (29 samples, 0.01%)</title><rect x="69.2360%" y="805" width="0.0130%" height="15" fill="rgb(240,173,0)" fg:x="154244" fg:w="29"/><text x="69.4860%" y="815.50"></text></g><g><title>rwsem_down_write_slowpath (28 samples, 0.01%)</title><rect x="69.2656%" y="805" width="0.0126%" height="15" fill="rgb(223,106,52)" fg:x="154310" fg:w="28"/><text x="69.5156%" y="815.50"></text></g><g><title>do_unlinkat (6,700 samples, 3.01%)</title><rect x="66.2735%" y="837" width="3.0075%" height="15" fill="rgb(206,130,16)" fg:x="147644" fg:w="6700"/><text x="66.5235%" y="847.50">do_..</text></g><g><title>vfs_unlink (6,260 samples, 2.81%)</title><rect x="66.4710%" y="821" width="2.8099%" height="15" fill="rgb(220,54,25)" fg:x="148084" fg:w="6260"/><text x="66.7210%" y="831.50">vf..</text></g><g><title>do_syscall_64 (9,323 samples, 4.18%)</title><rect x="65.0983%" y="853" width="4.1848%" height="15" fill="rgb(210,4,38)" fg:x="145026" fg:w="9323"/><text x="65.3483%" y="863.50">do_sy..</text></g><g><title>entry_SYSCALL_64_after_hwframe (9,346 samples, 4.20%)</title><rect x="65.0952%" y="869" width="4.1952%" height="15" fill="rgb(238,94,39)" fg:x="145019" fg:w="9346"/><text x="65.3452%" y="879.50">entry..</text></g><g><title>__GI_unlinkat (9,400 samples, 4.22%)</title><rect x="65.0777%" y="885" width="4.2194%" height="15" fill="rgb(234,124,34)" fg:x="144980" fg:w="9400"/><text x="65.3277%" y="895.50">__GI_..</text></g><g><title>__GI___libc_malloc (30 samples, 0.01%)</title><rect x="69.3285%" y="853" width="0.0135%" height="15" fill="rgb(221,91,40)" fg:x="154450" fg:w="30"/><text x="69.5785%" y="863.50"></text></g><g><title>__fdopendir (60 samples, 0.03%)</title><rect x="69.3155%" y="885" width="0.0269%" height="15" fill="rgb(246,53,28)" fg:x="154421" fg:w="60"/><text x="69.5655%" y="895.50"></text></g><g><title>__alloc_dir (35 samples, 0.02%)</title><rect x="69.3267%" y="869" width="0.0157%" height="15" fill="rgb(229,109,7)" fg:x="154446" fg:w="35"/><text x="69.5767%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="69.3478%" y="613" width="0.0126%" height="15" fill="rgb(249,117,8)" fg:x="154493" fg:w="28"/><text x="69.5978%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="69.3496%" y="597" width="0.0108%" height="15" fill="rgb(210,181,1)" fg:x="154497" fg:w="24"/><text x="69.5996%" y="607.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="69.3496%" y="581" width="0.0108%" height="15" fill="rgb(211,66,1)" fg:x="154497" fg:w="24"/><text x="69.5996%" y="591.50"></text></g><g><title>__btrfs_tree_lock (29 samples, 0.01%)</title><rect x="69.3478%" y="677" width="0.0130%" height="15" fill="rgb(221,90,14)" fg:x="154493" fg:w="29"/><text x="69.5978%" y="687.50"></text></g><g><title>schedule (29 samples, 0.01%)</title><rect x="69.3478%" y="661" width="0.0130%" height="15" fill="rgb(219,222,44)" fg:x="154493" fg:w="29"/><text x="69.5978%" y="671.50"></text></g><g><title>__schedule (29 samples, 0.01%)</title><rect x="69.3478%" y="645" width="0.0130%" height="15" fill="rgb(246,34,33)" fg:x="154493" fg:w="29"/><text x="69.5978%" y="655.50"></text></g><g><title>finish_task_switch (29 samples, 0.01%)</title><rect x="69.3478%" y="629" width="0.0130%" height="15" fill="rgb(227,135,41)" fg:x="154493" fg:w="29"/><text x="69.5978%" y="639.50"></text></g><g><title>btrfs_search_slot (42 samples, 0.02%)</title><rect x="69.3469%" y="693" width="0.0189%" height="15" fill="rgb(226,15,14)" fg:x="154491" fg:w="42"/><text x="69.5969%" y="703.50"></text></g><g><title>btrfs_insert_dir_item (45 samples, 0.02%)</title><rect x="69.3464%" y="741" width="0.0202%" height="15" fill="rgb(236,148,47)" fg:x="154490" fg:w="45"/><text x="69.5964%" y="751.50"></text></g><g><title>insert_with_overflow (44 samples, 0.02%)</title><rect x="69.3469%" y="725" width="0.0198%" height="15" fill="rgb(233,162,52)" fg:x="154491" fg:w="44"/><text x="69.5969%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (44 samples, 0.02%)</title><rect x="69.3469%" y="709" width="0.0198%" height="15" fill="rgb(244,35,28)" fg:x="154491" fg:w="44"/><text x="69.5969%" y="719.50"></text></g><g><title>btrfs_add_link (46 samples, 0.02%)</title><rect x="69.3464%" y="757" width="0.0206%" height="15" fill="rgb(205,121,10)" fg:x="154490" fg:w="46"/><text x="69.5964%" y="767.50"></text></g><g><title>btrfs_search_slot (24 samples, 0.01%)</title><rect x="69.3680%" y="725" width="0.0108%" height="15" fill="rgb(250,58,18)" fg:x="154538" fg:w="24"/><text x="69.6180%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (25 samples, 0.01%)</title><rect x="69.3680%" y="741" width="0.0112%" height="15" fill="rgb(216,37,13)" fg:x="154538" fg:w="25"/><text x="69.6180%" y="751.50"></text></g><g><title>btrfs_new_inode (31 samples, 0.01%)</title><rect x="69.3680%" y="757" width="0.0139%" height="15" fill="rgb(221,215,42)" fg:x="154538" fg:w="31"/><text x="69.6180%" y="767.50"></text></g><g><title>btrfs_create (84 samples, 0.04%)</title><rect x="69.3460%" y="773" width="0.0377%" height="15" fill="rgb(217,214,19)" fg:x="154489" fg:w="84"/><text x="69.5960%" y="783.50"></text></g><g><title>do_filp_open (92 samples, 0.04%)</title><rect x="69.3437%" y="805" width="0.0413%" height="15" fill="rgb(233,139,13)" fg:x="154484" fg:w="92"/><text x="69.5937%" y="815.50"></text></g><g><title>path_openat (92 samples, 0.04%)</title><rect x="69.3437%" y="789" width="0.0413%" height="15" fill="rgb(247,168,23)" fg:x="154484" fg:w="92"/><text x="69.5937%" y="799.50"></text></g><g><title>do_syscall_64 (97 samples, 0.04%)</title><rect x="69.3424%" y="853" width="0.0435%" height="15" fill="rgb(207,202,1)" fg:x="154481" fg:w="97"/><text x="69.5924%" y="863.50"></text></g><g><title>__x64_sys_openat (96 samples, 0.04%)</title><rect x="69.3428%" y="837" width="0.0431%" height="15" fill="rgb(220,155,48)" fg:x="154482" fg:w="96"/><text x="69.5928%" y="847.50"></text></g><g><title>do_sys_openat2 (96 samples, 0.04%)</title><rect x="69.3428%" y="821" width="0.0431%" height="15" fill="rgb(250,43,26)" fg:x="154482" fg:w="96"/><text x="69.5928%" y="831.50"></text></g><g><title>__libc_open64 (98 samples, 0.04%)</title><rect x="69.3424%" y="885" width="0.0440%" height="15" fill="rgb(212,190,23)" fg:x="154481" fg:w="98"/><text x="69.5924%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.04%)</title><rect x="69.3424%" y="869" width="0.0440%" height="15" fill="rgb(216,39,24)" fg:x="154481" fg:w="98"/><text x="69.5924%" y="879.50"></text></g><g><title>alloc_empty_file (28 samples, 0.01%)</title><rect x="69.3972%" y="773" width="0.0126%" height="15" fill="rgb(252,113,16)" fg:x="154603" fg:w="28"/><text x="69.6472%" y="783.50"></text></g><g><title>__alloc_file (27 samples, 0.01%)</title><rect x="69.3976%" y="757" width="0.0121%" height="15" fill="rgb(208,113,19)" fg:x="154604" fg:w="27"/><text x="69.6476%" y="767.50"></text></g><g><title>do_dentry_open (30 samples, 0.01%)</title><rect x="69.4111%" y="773" width="0.0135%" height="15" fill="rgb(234,107,25)" fg:x="154634" fg:w="30"/><text x="69.6611%" y="783.50"></text></g><g><title>do_filp_open (91 samples, 0.04%)</title><rect x="69.3922%" y="805" width="0.0408%" height="15" fill="rgb(234,217,51)" fg:x="154592" fg:w="91"/><text x="69.6422%" y="815.50"></text></g><g><title>path_openat (89 samples, 0.04%)</title><rect x="69.3931%" y="789" width="0.0399%" height="15" fill="rgb(251,29,42)" fg:x="154594" fg:w="89"/><text x="69.6431%" y="799.50"></text></g><g><title>__x64_sys_openat (119 samples, 0.05%)</title><rect x="69.3886%" y="837" width="0.0534%" height="15" fill="rgb(221,62,51)" fg:x="154584" fg:w="119"/><text x="69.6386%" y="847.50"></text></g><g><title>do_sys_openat2 (119 samples, 0.05%)</title><rect x="69.3886%" y="821" width="0.0534%" height="15" fill="rgb(240,192,43)" fg:x="154584" fg:w="119"/><text x="69.6386%" y="831.50"></text></g><g><title>__libc_openat64 (125 samples, 0.06%)</title><rect x="69.3864%" y="885" width="0.0561%" height="15" fill="rgb(224,157,47)" fg:x="154579" fg:w="125"/><text x="69.6364%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (121 samples, 0.05%)</title><rect x="69.3882%" y="869" width="0.0543%" height="15" fill="rgb(226,84,45)" fg:x="154583" fg:w="121"/><text x="69.6382%" y="879.50"></text></g><g><title>do_syscall_64 (121 samples, 0.05%)</title><rect x="69.3882%" y="853" width="0.0543%" height="15" fill="rgb(208,207,23)" fg:x="154583" fg:w="121"/><text x="69.6382%" y="863.50"></text></g><g><title>new_sync_write (26 samples, 0.01%)</title><rect x="69.4438%" y="789" width="0.0117%" height="15" fill="rgb(253,34,51)" fg:x="154707" fg:w="26"/><text x="69.6938%" y="799.50"></text></g><g><title>btrfs_file_write_iter (26 samples, 0.01%)</title><rect x="69.4438%" y="773" width="0.0117%" height="15" fill="rgb(227,26,34)" fg:x="154707" fg:w="26"/><text x="69.6938%" y="783.50"></text></g><g><title>__libc_write (30 samples, 0.01%)</title><rect x="69.4425%" y="885" width="0.0135%" height="15" fill="rgb(245,75,19)" fg:x="154704" fg:w="30"/><text x="69.6925%" y="895.50"></text></g><g><title>__libc_write (30 samples, 0.01%)</title><rect x="69.4425%" y="869" width="0.0135%" height="15" fill="rgb(250,191,31)" fg:x="154704" fg:w="30"/><text x="69.6925%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.01%)</title><rect x="69.4429%" y="853" width="0.0130%" height="15" fill="rgb(224,11,50)" fg:x="154705" fg:w="29"/><text x="69.6929%" y="863.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="69.4429%" y="837" width="0.0130%" height="15" fill="rgb(231,171,7)" fg:x="154705" fg:w="29"/><text x="69.6929%" y="847.50"></text></g><g><title>ksys_write (29 samples, 0.01%)</title><rect x="69.4429%" y="821" width="0.0130%" height="15" fill="rgb(252,214,10)" fg:x="154705" fg:w="29"/><text x="69.6929%" y="831.50"></text></g><g><title>vfs_write (28 samples, 0.01%)</title><rect x="69.4434%" y="805" width="0.0126%" height="15" fill="rgb(249,45,46)" fg:x="154706" fg:w="28"/><text x="69.6934%" y="815.50"></text></g><g><title>_int_free (46 samples, 0.02%)</title><rect x="69.4685%" y="885" width="0.0206%" height="15" fill="rgb(240,173,7)" fg:x="154762" fg:w="46"/><text x="69.7185%" y="895.50"></text></g><g><title>Monitor::lock_without_safepoint_check (24 samples, 0.01%)</title><rect x="69.5062%" y="821" width="0.0108%" height="15" fill="rgb(235,214,13)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="831.50"></text></g><g><title>Monitor::ILock (24 samples, 0.01%)</title><rect x="69.5062%" y="805" width="0.0108%" height="15" fill="rgb(245,156,8)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="815.50"></text></g><g><title>os::PlatformEvent::park (24 samples, 0.01%)</title><rect x="69.5062%" y="789" width="0.0108%" height="15" fill="rgb(235,46,12)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="799.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.01%)</title><rect x="69.5062%" y="773" width="0.0108%" height="15" fill="rgb(221,81,14)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.01%)</title><rect x="69.5062%" y="757" width="0.0108%" height="15" fill="rgb(238,207,9)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="767.50"></text></g><g><title>futex_wait_cancelable (24 samples, 0.01%)</title><rect x="69.5062%" y="741" width="0.0108%" height="15" fill="rgb(224,129,35)" fg:x="154846" fg:w="24"/><text x="69.7562%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="69.5067%" y="725" width="0.0103%" height="15" fill="rgb(243,218,34)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="735.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="69.5067%" y="709" width="0.0103%" height="15" fill="rgb(220,166,13)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="719.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.01%)</title><rect x="69.5067%" y="693" width="0.0103%" height="15" fill="rgb(227,167,49)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="703.50"></text></g><g><title>do_futex (23 samples, 0.01%)</title><rect x="69.5067%" y="677" width="0.0103%" height="15" fill="rgb(234,142,12)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="687.50"></text></g><g><title>futex_wait (23 samples, 0.01%)</title><rect x="69.5067%" y="661" width="0.0103%" height="15" fill="rgb(207,100,48)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="671.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.01%)</title><rect x="69.5067%" y="645" width="0.0103%" height="15" fill="rgb(210,25,14)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="655.50"></text></g><g><title>schedule (23 samples, 0.01%)</title><rect x="69.5067%" y="629" width="0.0103%" height="15" fill="rgb(246,116,27)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="639.50"></text></g><g><title>__schedule (23 samples, 0.01%)</title><rect x="69.5067%" y="613" width="0.0103%" height="15" fill="rgb(214,193,42)" fg:x="154847" fg:w="23"/><text x="69.7567%" y="623.50"></text></g><g><title>jni_ExceptionOccurred (58 samples, 0.03%)</title><rect x="69.4955%" y="885" width="0.0260%" height="15" fill="rgb(214,122,8)" fg:x="154822" fg:w="58"/><text x="69.7455%" y="895.50"></text></g><g><title>ThreadStateTransition::transition_from_native (39 samples, 0.02%)</title><rect x="69.5040%" y="869" width="0.0175%" height="15" fill="rgb(244,173,18)" fg:x="154841" fg:w="39"/><text x="69.7540%" y="879.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (34 samples, 0.02%)</title><rect x="69.5062%" y="853" width="0.0153%" height="15" fill="rgb(232,68,19)" fg:x="154846" fg:w="34"/><text x="69.7562%" y="863.50"></text></g><g><title>SafepointSynchronize::block (34 samples, 0.02%)</title><rect x="69.5062%" y="837" width="0.0153%" height="15" fill="rgb(236,224,1)" fg:x="154846" fg:w="34"/><text x="69.7562%" y="847.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (39 samples, 0.02%)</title><rect x="69.5386%" y="869" width="0.0175%" height="15" fill="rgb(240,11,8)" fg:x="154918" fg:w="39"/><text x="69.7886%" y="879.50"></text></g><g><title>ThreadStateTransition::transition_from_native (41 samples, 0.02%)</title><rect x="69.5561%" y="869" width="0.0184%" height="15" fill="rgb(244,159,20)" fg:x="154957" fg:w="41"/><text x="69.8061%" y="879.50"></text></g><g><title>[libc-2.31.so] (30 samples, 0.01%)</title><rect x="69.5745%" y="869" width="0.0135%" height="15" fill="rgb(240,223,54)" fg:x="154998" fg:w="30"/><text x="69.8245%" y="879.50"></text></g><g><title>check_bounds (23 samples, 0.01%)</title><rect x="69.5888%" y="869" width="0.0103%" height="15" fill="rgb(237,146,5)" fg:x="155030" fg:w="23"/><text x="69.8388%" y="879.50"></text></g><g><title>jni_GetByteArrayRegion (189 samples, 0.08%)</title><rect x="69.5228%" y="885" width="0.0848%" height="15" fill="rgb(218,221,32)" fg:x="154883" fg:w="189"/><text x="69.7728%" y="895.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (73 samples, 0.03%)</title><rect x="69.6243%" y="869" width="0.0328%" height="15" fill="rgb(244,96,26)" fg:x="155109" fg:w="73"/><text x="69.8743%" y="879.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (64 samples, 0.03%)</title><rect x="69.6283%" y="853" width="0.0287%" height="15" fill="rgb(245,184,37)" fg:x="155118" fg:w="64"/><text x="69.8783%" y="863.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (59 samples, 0.03%)</title><rect x="69.6306%" y="837" width="0.0265%" height="15" fill="rgb(248,91,47)" fg:x="155123" fg:w="59"/><text x="69.8806%" y="847.50"></text></g><g><title>HandleMark::pop_and_restore (28 samples, 0.01%)</title><rect x="69.6571%" y="869" width="0.0126%" height="15" fill="rgb(243,199,8)" fg:x="155182" fg:w="28"/><text x="69.9071%" y="879.50"></text></g><g><title>JNIHandles::make_local (30 samples, 0.01%)</title><rect x="69.6696%" y="869" width="0.0135%" height="15" fill="rgb(249,12,15)" fg:x="155210" fg:w="30"/><text x="69.9196%" y="879.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (32 samples, 0.01%)</title><rect x="69.6835%" y="869" width="0.0144%" height="15" fill="rgb(245,97,12)" fg:x="155241" fg:w="32"/><text x="69.9335%" y="879.50"></text></g><g><title>jni_GetObjectField (244 samples, 0.11%)</title><rect x="69.6081%" y="885" width="0.1095%" height="15" fill="rgb(244,61,1)" fg:x="155073" fg:w="244"/><text x="69.8581%" y="895.50"></text></g><g><title>ThreadStateTransition::transition_from_native (44 samples, 0.02%)</title><rect x="69.6979%" y="869" width="0.0198%" height="15" fill="rgb(222,194,10)" fg:x="155273" fg:w="44"/><text x="69.9479%" y="879.50"></text></g><g><title>jni_GetStringLength (112 samples, 0.05%)</title><rect x="69.7177%" y="885" width="0.0503%" height="15" fill="rgb(226,178,8)" fg:x="155317" fg:w="112"/><text x="69.9677%" y="895.50"></text></g><g><title>ThreadStateTransition::transition_from_native (39 samples, 0.02%)</title><rect x="69.7504%" y="869" width="0.0175%" height="15" fill="rgb(241,32,34)" fg:x="155390" fg:w="39"/><text x="70.0004%" y="879.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (29 samples, 0.01%)</title><rect x="69.8442%" y="821" width="0.0130%" height="15" fill="rgb(254,26,6)" fg:x="155599" fg:w="29"/><text x="70.0942%" y="831.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (23 samples, 0.01%)</title><rect x="69.8573%" y="821" width="0.0103%" height="15" fill="rgb(249,71,11)" fg:x="155628" fg:w="23"/><text x="70.1073%" y="831.50"></text></g><g><title>ObjAllocator::initialize (57 samples, 0.03%)</title><rect x="69.8680%" y="821" width="0.0256%" height="15" fill="rgb(232,170,27)" fg:x="155652" fg:w="57"/><text x="70.1180%" y="831.50"></text></g><g><title>__tls_get_addr (24 samples, 0.01%)</title><rect x="69.8936%" y="821" width="0.0108%" height="15" fill="rgb(214,223,17)" fg:x="155709" fg:w="24"/><text x="70.1436%" y="831.50"></text></g><g><title>InstanceKlass::allocate_instance (215 samples, 0.10%)</title><rect x="69.8110%" y="869" width="0.0965%" height="15" fill="rgb(250,18,15)" fg:x="155525" fg:w="215"/><text x="70.0610%" y="879.50"></text></g><g><title>CollectedHeap::obj_allocate (167 samples, 0.07%)</title><rect x="69.8326%" y="853" width="0.0750%" height="15" fill="rgb(212,153,51)" fg:x="155573" fg:w="167"/><text x="70.0826%" y="863.50"></text></g><g><title>MemAllocator::allocate (160 samples, 0.07%)</title><rect x="69.8357%" y="837" width="0.0718%" height="15" fill="rgb(219,194,12)" fg:x="155580" fg:w="160"/><text x="70.0857%" y="847.50"></text></g><g><title>ThreadStateTransition::transition_from_native (72 samples, 0.03%)</title><rect x="69.9282%" y="869" width="0.0323%" height="15" fill="rgb(212,58,17)" fg:x="155786" fg:w="72"/><text x="70.1782%" y="879.50"></text></g><g><title>alloc_object (80 samples, 0.04%)</title><rect x="69.9605%" y="869" width="0.0359%" height="15" fill="rgb(254,5,10)" fg:x="155858" fg:w="80"/><text x="70.2105%" y="879.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (112 samples, 0.05%)</title><rect x="70.0399%" y="853" width="0.0503%" height="15" fill="rgb(246,91,7)" fg:x="156035" fg:w="112"/><text x="70.2899%" y="863.50"></text></g><g><title>JavaCallArguments::parameters (41 samples, 0.02%)</title><rect x="70.1508%" y="837" width="0.0184%" height="15" fill="rgb(218,108,49)" fg:x="156282" fg:w="41"/><text x="70.4008%" y="847.50"></text></g><g><title>JNIHandleBlock::allocate_block (34 samples, 0.02%)</title><rect x="70.1939%" y="821" width="0.0153%" height="15" fill="rgb(238,123,20)" fg:x="156378" fg:w="34"/><text x="70.4439%" y="831.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (111 samples, 0.05%)</title><rect x="70.1692%" y="837" width="0.0498%" height="15" fill="rgb(231,69,23)" fg:x="156323" fg:w="111"/><text x="70.4192%" y="847.50"></text></g><g><title>JavaCalls::call_helper (323 samples, 0.14%)</title><rect x="70.0907%" y="853" width="0.1450%" height="15" fill="rgb(230,209,3)" fg:x="156148" fg:w="323"/><text x="70.3407%" y="863.50"></text></g><g><title>os::stack_shadow_pages_available (36 samples, 0.02%)</title><rect x="70.2195%" y="837" width="0.0162%" height="15" fill="rgb(231,19,0)" fg:x="156435" fg:w="36"/><text x="70.4695%" y="847.50"></text></g><g><title>methodHandle::~methodHandle (36 samples, 0.02%)</title><rect x="70.2410%" y="853" width="0.0162%" height="15" fill="rgb(226,192,25)" fg:x="156483" fg:w="36"/><text x="70.4910%" y="863.50"></text></g><g><title>jni_invoke_nonstatic (601 samples, 0.27%)</title><rect x="69.9987%" y="869" width="0.2698%" height="15" fill="rgb(223,175,53)" fg:x="155943" fg:w="601"/><text x="70.2487%" y="879.50"></text></g><g><title>resource_allocate_bytes (23 samples, 0.01%)</title><rect x="70.2581%" y="853" width="0.0103%" height="15" fill="rgb(248,35,51)" fg:x="156521" fg:w="23"/><text x="70.5081%" y="863.50"></text></g><g><title>jni_NewObjectV (1,116 samples, 0.50%)</title><rect x="69.7679%" y="885" width="0.5009%" height="15" fill="rgb(230,37,26)" fg:x="155429" fg:w="1116"/><text x="70.0179%" y="895.50"></text></g><g><title>operator delete@plt (24 samples, 0.01%)</title><rect x="70.2868%" y="885" width="0.0108%" height="15" fill="rgb(206,120,22)" fg:x="156585" fg:w="24"/><text x="70.5368%" y="895.50"></text></g><g><title>__GI___libc_malloc (68 samples, 0.03%)</title><rect x="70.3030%" y="869" width="0.0305%" height="15" fill="rgb(207,165,28)" fg:x="156621" fg:w="68"/><text x="70.5530%" y="879.50"></text></g><g><title>tcache_get (36 samples, 0.02%)</title><rect x="70.3174%" y="853" width="0.0162%" height="15" fill="rgb(226,23,46)" fg:x="156653" fg:w="36"/><text x="70.5674%" y="863.50"></text></g><g><title>operator new (80 samples, 0.04%)</title><rect x="70.3021%" y="885" width="0.0359%" height="15" fill="rgb(208,130,44)" fg:x="156619" fg:w="80"/><text x="70.5521%" y="895.50"></text></g><g><title>btrfs_del_inode_ref (38 samples, 0.02%)</title><rect x="70.3551%" y="757" width="0.0171%" height="15" fill="rgb(231,67,8)" fg:x="156737" fg:w="38"/><text x="70.6051%" y="767.50"></text></g><g><title>btrfs_search_slot (36 samples, 0.02%)</title><rect x="70.3560%" y="741" width="0.0162%" height="15" fill="rgb(205,183,22)" fg:x="156739" fg:w="36"/><text x="70.6060%" y="751.50"></text></g><g><title>btrfs_lock_root_node (39 samples, 0.02%)</title><rect x="70.3735%" y="725" width="0.0175%" height="15" fill="rgb(224,47,9)" fg:x="156778" fg:w="39"/><text x="70.6235%" y="735.50"></text></g><g><title>__btrfs_tree_lock (39 samples, 0.02%)</title><rect x="70.3735%" y="709" width="0.0175%" height="15" fill="rgb(250,183,49)" fg:x="156778" fg:w="39"/><text x="70.6235%" y="719.50"></text></g><g><title>schedule (34 samples, 0.02%)</title><rect x="70.3757%" y="693" width="0.0153%" height="15" fill="rgb(220,151,39)" fg:x="156783" fg:w="34"/><text x="70.6257%" y="703.50"></text></g><g><title>__schedule (34 samples, 0.02%)</title><rect x="70.3757%" y="677" width="0.0153%" height="15" fill="rgb(220,118,20)" fg:x="156783" fg:w="34"/><text x="70.6257%" y="687.50"></text></g><g><title>finish_task_switch (33 samples, 0.01%)</title><rect x="70.3762%" y="661" width="0.0148%" height="15" fill="rgb(231,65,51)" fg:x="156784" fg:w="33"/><text x="70.6262%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.01%)</title><rect x="70.3771%" y="645" width="0.0139%" height="15" fill="rgb(253,125,37)" fg:x="156786" fg:w="31"/><text x="70.6271%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.01%)</title><rect x="70.3775%" y="629" width="0.0135%" height="15" fill="rgb(232,102,6)" fg:x="156787" fg:w="30"/><text x="70.6275%" y="639.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="70.3775%" y="613" width="0.0135%" height="15" fill="rgb(251,105,13)" fg:x="156787" fg:w="30"/><text x="70.6275%" y="623.50"></text></g><g><title>__btrfs_unlink_inode (89 samples, 0.04%)</title><rect x="70.3551%" y="773" width="0.0399%" height="15" fill="rgb(222,179,29)" fg:x="156737" fg:w="89"/><text x="70.6051%" y="783.50"></text></g><g><title>btrfs_lookup_dir_item (50 samples, 0.02%)</title><rect x="70.3726%" y="757" width="0.0224%" height="15" fill="rgb(229,180,53)" fg:x="156776" fg:w="50"/><text x="70.6226%" y="767.50"></text></g><g><title>btrfs_search_slot (49 samples, 0.02%)</title><rect x="70.3730%" y="741" width="0.0220%" height="15" fill="rgb(238,104,13)" fg:x="156777" fg:w="49"/><text x="70.6230%" y="751.50"></text></g><g><title>btrfs_rename2 (132 samples, 0.06%)</title><rect x="70.3546%" y="789" width="0.0593%" height="15" fill="rgb(210,130,5)" fg:x="156736" fg:w="132"/><text x="70.6046%" y="799.50"></text></g><g><title>do_syscall_64 (148 samples, 0.07%)</title><rect x="70.3483%" y="853" width="0.0664%" height="15" fill="rgb(233,87,49)" fg:x="156722" fg:w="148"/><text x="70.5983%" y="863.50"></text></g><g><title>__x64_sys_rename (148 samples, 0.07%)</title><rect x="70.3483%" y="837" width="0.0664%" height="15" fill="rgb(243,34,9)" fg:x="156722" fg:w="148"/><text x="70.5983%" y="847.50"></text></g><g><title>do_renameat2 (148 samples, 0.07%)</title><rect x="70.3483%" y="821" width="0.0664%" height="15" fill="rgb(235,225,10)" fg:x="156722" fg:w="148"/><text x="70.5983%" y="831.50"></text></g><g><title>vfs_rename (134 samples, 0.06%)</title><rect x="70.3546%" y="805" width="0.0601%" height="15" fill="rgb(212,0,30)" fg:x="156736" fg:w="134"/><text x="70.6046%" y="815.50"></text></g><g><title>rename (149 samples, 0.07%)</title><rect x="70.3483%" y="885" width="0.0669%" height="15" fill="rgb(211,177,0)" fg:x="156722" fg:w="149"/><text x="70.5983%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (149 samples, 0.07%)</title><rect x="70.3483%" y="869" width="0.0669%" height="15" fill="rgb(225,220,11)" fg:x="156722" fg:w="149"/><text x="70.5983%" y="879.50"></text></g><g><title>__GI___libc_malloc (25 samples, 0.01%)</title><rect x="70.4166%" y="853" width="0.0112%" height="15" fill="rgb(215,10,13)" fg:x="156874" fg:w="25"/><text x="70.6666%" y="863.50"></text></g><g><title>operator new (26 samples, 0.01%)</title><rect x="70.4166%" y="869" width="0.0117%" height="15" fill="rgb(240,177,14)" fg:x="156874" fg:w="26"/><text x="70.6666%" y="879.50"></text></g><g><title>std::string::_Rep::_S_create (32 samples, 0.01%)</title><rect x="70.4152%" y="885" width="0.0144%" height="15" fill="rgb(243,7,39)" fg:x="156871" fg:w="32"/><text x="70.6652%" y="895.50"></text></g><g><title>[libunix_jni.so] (28,001 samples, 12.57%)</title><rect x="57.8611%" y="901" width="12.5689%" height="15" fill="rgb(212,99,0)" fg:x="128903" fg:w="28001"/><text x="58.1111%" y="911.50">[libunix_jni.so]</text></g><g><title>ConstantPool::klass_at_impl (29 samples, 0.01%)</title><rect x="96.2340%" y="869" width="0.0130%" height="15" fill="rgb(225,162,48)" fg:x="214390" fg:w="29"/><text x="96.4840%" y="879.50"></text></g><g><title>SystemDictionary::resolve_or_fail (26 samples, 0.01%)</title><rect x="96.2353%" y="853" width="0.0117%" height="15" fill="rgb(246,16,25)" fg:x="214393" fg:w="26"/><text x="96.4853%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (26 samples, 0.01%)</title><rect x="96.2353%" y="837" width="0.0117%" height="15" fill="rgb(220,150,2)" fg:x="214393" fg:w="26"/><text x="96.4853%" y="847.50"></text></g><g><title>Rewriter::rewrite (27 samples, 0.01%)</title><rect x="96.2681%" y="837" width="0.0121%" height="15" fill="rgb(237,113,11)" fg:x="214466" fg:w="27"/><text x="96.5181%" y="847.50"></text></g><g><title>Rewriter::Rewriter (26 samples, 0.01%)</title><rect x="96.2685%" y="821" width="0.0117%" height="15" fill="rgb(236,70,20)" fg:x="214467" fg:w="26"/><text x="96.5185%" y="831.50"></text></g><g><title>InstanceKlass::link_class_impl (81 samples, 0.04%)</title><rect x="96.2515%" y="853" width="0.0364%" height="15" fill="rgb(234,94,7)" fg:x="214429" fg:w="81"/><text x="96.5015%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (83 samples, 0.04%)</title><rect x="96.2510%" y="869" width="0.0373%" height="15" fill="rgb(250,221,0)" fg:x="214428" fg:w="83"/><text x="96.5010%" y="879.50"></text></g><g><title>InterpreterRuntime::_new (122 samples, 0.05%)</title><rect x="96.2340%" y="885" width="0.0548%" height="15" fill="rgb(245,149,46)" fg:x="214390" fg:w="122"/><text x="96.4840%" y="895.50"></text></g><g><title>CollectedHeap::array_allocate (38 samples, 0.02%)</title><rect x="96.3147%" y="853" width="0.0171%" height="15" fill="rgb(215,37,27)" fg:x="214570" fg:w="38"/><text x="96.5647%" y="863.50"></text></g><g><title>MemAllocator::allocate (37 samples, 0.02%)</title><rect x="96.3152%" y="837" width="0.0166%" height="15" fill="rgb(232,65,3)" fg:x="214571" fg:w="37"/><text x="96.5652%" y="847.50"></text></g><g><title>InstanceKlass::allocate_objArray (80 samples, 0.04%)</title><rect x="96.3040%" y="869" width="0.0359%" height="15" fill="rgb(214,2,16)" fg:x="214546" fg:w="80"/><text x="96.5540%" y="879.50"></text></g><g><title>InterpreterRuntime::anewarray (121 samples, 0.05%)</title><rect x="96.2887%" y="885" width="0.0543%" height="15" fill="rgb(227,131,50)" fg:x="214512" fg:w="121"/><text x="96.5387%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.02%)</title><rect x="96.3444%" y="613" width="0.0224%" height="15" fill="rgb(247,131,45)" fg:x="214636" fg:w="50"/><text x="96.5944%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.02%)</title><rect x="96.3448%" y="597" width="0.0220%" height="15" fill="rgb(215,97,47)" fg:x="214637" fg:w="49"/><text x="96.5948%" y="607.50"></text></g><g><title>native_write_msr (49 samples, 0.02%)</title><rect x="96.3448%" y="581" width="0.0220%" height="15" fill="rgb(233,143,12)" fg:x="214637" fg:w="49"/><text x="96.5948%" y="591.50"></text></g><g><title>finish_task_switch (53 samples, 0.02%)</title><rect x="96.3444%" y="629" width="0.0238%" height="15" fill="rgb(222,57,17)" fg:x="214636" fg:w="53"/><text x="96.5944%" y="639.50"></text></g><g><title>do_syscall_64 (54 samples, 0.02%)</title><rect x="96.3444%" y="741" width="0.0242%" height="15" fill="rgb(214,119,38)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="751.50"></text></g><g><title>__x64_sys_futex (54 samples, 0.02%)</title><rect x="96.3444%" y="725" width="0.0242%" height="15" fill="rgb(217,28,47)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="735.50"></text></g><g><title>do_futex (54 samples, 0.02%)</title><rect x="96.3444%" y="709" width="0.0242%" height="15" fill="rgb(231,14,52)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="719.50"></text></g><g><title>futex_wait (54 samples, 0.02%)</title><rect x="96.3444%" y="693" width="0.0242%" height="15" fill="rgb(220,158,18)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="703.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.02%)</title><rect x="96.3444%" y="677" width="0.0242%" height="15" fill="rgb(222,143,46)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="687.50"></text></g><g><title>schedule (54 samples, 0.02%)</title><rect x="96.3444%" y="661" width="0.0242%" height="15" fill="rgb(227,165,5)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="671.50"></text></g><g><title>__schedule (54 samples, 0.02%)</title><rect x="96.3444%" y="645" width="0.0242%" height="15" fill="rgb(216,222,49)" fg:x="214636" fg:w="54"/><text x="96.5944%" y="655.50"></text></g><g><title>__pthread_cond_wait (56 samples, 0.03%)</title><rect x="96.3439%" y="805" width="0.0251%" height="15" fill="rgb(238,73,39)" fg:x="214635" fg:w="56"/><text x="96.5939%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (56 samples, 0.03%)</title><rect x="96.3439%" y="789" width="0.0251%" height="15" fill="rgb(252,115,9)" fg:x="214635" fg:w="56"/><text x="96.5939%" y="799.50"></text></g><g><title>futex_wait_cancelable (55 samples, 0.02%)</title><rect x="96.3444%" y="773" width="0.0247%" height="15" fill="rgb(238,202,4)" fg:x="214636" fg:w="55"/><text x="96.5944%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="96.3444%" y="757" width="0.0247%" height="15" fill="rgb(252,153,44)" fg:x="214636" fg:w="55"/><text x="96.5944%" y="767.50"></text></g><g><title>Monitor::lock_without_safepoint_check (58 samples, 0.03%)</title><rect x="96.3435%" y="853" width="0.0260%" height="15" fill="rgb(235,128,27)" fg:x="214634" fg:w="58"/><text x="96.5935%" y="863.50"></text></g><g><title>Monitor::ILock (58 samples, 0.03%)</title><rect x="96.3435%" y="837" width="0.0260%" height="15" fill="rgb(221,121,47)" fg:x="214634" fg:w="58"/><text x="96.5935%" y="847.50"></text></g><g><title>os::PlatformEvent::park (57 samples, 0.03%)</title><rect x="96.3439%" y="821" width="0.0256%" height="15" fill="rgb(247,211,47)" fg:x="214635" fg:w="57"/><text x="96.5939%" y="831.50"></text></g><g><title>InterpreterRuntime::at_safepoint (71 samples, 0.03%)</title><rect x="96.3430%" y="885" width="0.0319%" height="15" fill="rgb(252,47,49)" fg:x="214633" fg:w="71"/><text x="96.5930%" y="895.50"></text></g><g><title>SafepointSynchronize::block (70 samples, 0.03%)</title><rect x="96.3435%" y="869" width="0.0314%" height="15" fill="rgb(219,119,53)" fg:x="214634" fg:w="70"/><text x="96.5935%" y="879.50"></text></g><g><title>InterpreterRuntime::build_method_counters (29 samples, 0.01%)</title><rect x="96.3749%" y="885" width="0.0130%" height="15" fill="rgb(243,165,53)" fg:x="214704" fg:w="29"/><text x="96.6249%" y="895.50"></text></g><g><title>Method::build_method_counters (28 samples, 0.01%)</title><rect x="96.3753%" y="869" width="0.0126%" height="15" fill="rgb(230,12,35)" fg:x="214705" fg:w="28"/><text x="96.6253%" y="879.50"></text></g><g><title>TieredThresholdPolicy::call_event (60 samples, 0.03%)</title><rect x="96.4229%" y="821" width="0.0269%" height="15" fill="rgb(239,57,49)" fg:x="214811" fg:w="60"/><text x="96.6729%" y="831.50"></text></g><g><title>Monitor::ILock (26 samples, 0.01%)</title><rect x="96.4597%" y="741" width="0.0117%" height="15" fill="rgb(231,154,7)" fg:x="214893" fg:w="26"/><text x="96.7097%" y="751.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.01%)</title><rect x="96.4611%" y="725" width="0.0103%" height="15" fill="rgb(248,81,34)" fg:x="214896" fg:w="23"/><text x="96.7111%" y="735.50"></text></g><g><title>Monitor::lock (28 samples, 0.01%)</title><rect x="96.4597%" y="757" width="0.0126%" height="15" fill="rgb(247,9,5)" fg:x="214893" fg:w="28"/><text x="96.7097%" y="767.50"></text></g><g><title>CompileBroker::compile_method_base (42 samples, 0.02%)</title><rect x="96.4566%" y="773" width="0.0189%" height="15" fill="rgb(228,172,27)" fg:x="214886" fg:w="42"/><text x="96.7066%" y="783.50"></text></g><g><title>TieredThresholdPolicy::compile (63 samples, 0.03%)</title><rect x="96.4499%" y="821" width="0.0283%" height="15" fill="rgb(230,57,44)" fg:x="214871" fg:w="63"/><text x="96.6999%" y="831.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (60 samples, 0.03%)</title><rect x="96.4512%" y="805" width="0.0269%" height="15" fill="rgb(249,35,22)" fg:x="214874" fg:w="60"/><text x="96.7012%" y="815.50"></text></g><g><title>CompileBroker::compile_method (58 samples, 0.03%)</title><rect x="96.4521%" y="789" width="0.0260%" height="15" fill="rgb(250,137,27)" fg:x="214876" fg:w="58"/><text x="96.7021%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (176 samples, 0.08%)</title><rect x="96.4000%" y="853" width="0.0790%" height="15" fill="rgb(251,57,31)" fg:x="214760" fg:w="176"/><text x="96.6500%" y="863.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (156 samples, 0.07%)</title><rect x="96.4090%" y="837" width="0.0700%" height="15" fill="rgb(238,60,0)" fg:x="214780" fg:w="156"/><text x="96.6590%" y="847.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (204 samples, 0.09%)</title><rect x="96.3879%" y="885" width="0.0916%" height="15" fill="rgb(242,185,39)" fg:x="214733" fg:w="204"/><text x="96.6379%" y="895.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (204 samples, 0.09%)</title><rect x="96.3879%" y="869" width="0.0916%" height="15" fill="rgb(240,63,43)" fg:x="214733" fg:w="204"/><text x="96.6379%" y="879.50"></text></g><g><title>JavaThread::pd_last_frame (25 samples, 0.01%)</title><rect x="96.4983%" y="869" width="0.0112%" height="15" fill="rgb(236,155,6)" fg:x="214979" fg:w="25"/><text x="96.7483%" y="879.50"></text></g><g><title>CodeCache::find_blob (24 samples, 0.01%)</title><rect x="96.4988%" y="853" width="0.0108%" height="15" fill="rgb(215,11,29)" fg:x="214980" fg:w="24"/><text x="96.7488%" y="863.50"></text></g><g><title>InterpreterRuntime::ldc (77 samples, 0.03%)</title><rect x="96.4795%" y="885" width="0.0346%" height="15" fill="rgb(228,180,48)" fg:x="214937" fg:w="77"/><text x="96.7295%" y="895.50"></text></g><g><title>__pthread_cond_timedwait (24 samples, 0.01%)</title><rect x="96.5212%" y="837" width="0.0108%" height="15" fill="rgb(241,102,12)" fg:x="215030" fg:w="24"/><text x="96.7712%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.01%)</title><rect x="96.5212%" y="821" width="0.0108%" height="15" fill="rgb(246,213,4)" fg:x="215030" fg:w="24"/><text x="96.7712%" y="831.50"></text></g><g><title>futex_abstimed_wait_cancelable (23 samples, 0.01%)</title><rect x="96.5217%" y="805" width="0.0103%" height="15" fill="rgb(218,134,35)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="96.5217%" y="789" width="0.0103%" height="15" fill="rgb(251,117,35)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="799.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="96.5217%" y="773" width="0.0103%" height="15" fill="rgb(206,156,45)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="783.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.01%)</title><rect x="96.5217%" y="757" width="0.0103%" height="15" fill="rgb(218,52,27)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="767.50"></text></g><g><title>do_futex (23 samples, 0.01%)</title><rect x="96.5217%" y="741" width="0.0103%" height="15" fill="rgb(238,83,36)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="751.50"></text></g><g><title>futex_wait (23 samples, 0.01%)</title><rect x="96.5217%" y="725" width="0.0103%" height="15" fill="rgb(218,53,43)" fg:x="215031" fg:w="23"/><text x="96.7717%" y="735.50"></text></g><g><title>ObjectMonitor::enter (41 samples, 0.02%)</title><rect x="96.5145%" y="869" width="0.0184%" height="15" fill="rgb(239,54,39)" fg:x="215015" fg:w="41"/><text x="96.7645%" y="879.50"></text></g><g><title>os::PlatformEvent::park (26 samples, 0.01%)</title><rect x="96.5212%" y="853" width="0.0117%" height="15" fill="rgb(212,198,13)" fg:x="215030" fg:w="26"/><text x="96.7712%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="96.5360%" y="725" width="0.0153%" height="15" fill="rgb(234,54,46)" fg:x="215063" fg:w="34"/><text x="96.7860%" y="735.50"></text></g><g><title>do_syscall_64 (34 samples, 0.02%)</title><rect x="96.5360%" y="709" width="0.0153%" height="15" fill="rgb(217,120,7)" fg:x="215063" fg:w="34"/><text x="96.7860%" y="719.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.02%)</title><rect x="96.5360%" y="693" width="0.0153%" height="15" fill="rgb(246,39,15)" fg:x="215063" fg:w="34"/><text x="96.7860%" y="703.50"></text></g><g><title>do_futex (34 samples, 0.02%)</title><rect x="96.5360%" y="677" width="0.0153%" height="15" fill="rgb(242,143,31)" fg:x="215063" fg:w="34"/><text x="96.7860%" y="687.50"></text></g><g><title>futex_wait (34 samples, 0.02%)</title><rect x="96.5360%" y="661" width="0.0153%" height="15" fill="rgb(252,60,24)" fg:x="215063" fg:w="34"/><text x="96.7860%" y="671.50"></text></g><g><title>futex_wait_queue_me (33 samples, 0.01%)</title><rect x="96.5365%" y="645" width="0.0148%" height="15" fill="rgb(249,220,7)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="655.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="96.5365%" y="629" width="0.0148%" height="15" fill="rgb(236,67,13)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="639.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="96.5365%" y="613" width="0.0148%" height="15" fill="rgb(210,62,39)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="623.50"></text></g><g><title>finish_task_switch (33 samples, 0.01%)</title><rect x="96.5365%" y="597" width="0.0148%" height="15" fill="rgb(219,122,53)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.01%)</title><rect x="96.5365%" y="581" width="0.0148%" height="15" fill="rgb(218,87,25)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.01%)</title><rect x="96.5365%" y="565" width="0.0148%" height="15" fill="rgb(234,179,48)" fg:x="215064" fg:w="33"/><text x="96.7865%" y="575.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="96.5369%" y="549" width="0.0144%" height="15" fill="rgb(248,90,0)" fg:x="215065" fg:w="32"/><text x="96.7869%" y="559.50"></text></g><g><title>Monitor::wait (40 samples, 0.02%)</title><rect x="96.5338%" y="821" width="0.0180%" height="15" fill="rgb(207,228,37)" fg:x="215058" fg:w="40"/><text x="96.7838%" y="831.50"></text></g><g><title>Monitor::IWait (38 samples, 0.02%)</title><rect x="96.5347%" y="805" width="0.0171%" height="15" fill="rgb(235,214,15)" fg:x="215060" fg:w="38"/><text x="96.7847%" y="815.50"></text></g><g><title>os::PlatformEvent::park (37 samples, 0.02%)</title><rect x="96.5351%" y="789" width="0.0166%" height="15" fill="rgb(210,144,39)" fg:x="215061" fg:w="37"/><text x="96.7851%" y="799.50"></text></g><g><title>__pthread_cond_wait (37 samples, 0.02%)</title><rect x="96.5351%" y="773" width="0.0166%" height="15" fill="rgb(222,67,41)" fg:x="215061" fg:w="37"/><text x="96.7851%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (37 samples, 0.02%)</title><rect x="96.5351%" y="757" width="0.0166%" height="15" fill="rgb(205,35,37)" fg:x="215061" fg:w="37"/><text x="96.7851%" y="767.50"></text></g><g><title>futex_wait_cancelable (35 samples, 0.02%)</title><rect x="96.5360%" y="741" width="0.0157%" height="15" fill="rgb(216,125,40)" fg:x="215063" fg:w="35"/><text x="96.7860%" y="751.50"></text></g><g><title>InterpreterRuntime::monitorenter (94 samples, 0.04%)</title><rect x="96.5140%" y="885" width="0.0422%" height="15" fill="rgb(228,227,20)" fg:x="215014" fg:w="94"/><text x="96.7640%" y="895.50"></text></g><g><title>ObjectSynchronizer::fast_enter (52 samples, 0.02%)</title><rect x="96.5329%" y="869" width="0.0233%" height="15" fill="rgb(242,173,45)" fg:x="215056" fg:w="52"/><text x="96.7829%" y="879.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (51 samples, 0.02%)</title><rect x="96.5334%" y="853" width="0.0229%" height="15" fill="rgb(215,79,24)" fg:x="215057" fg:w="51"/><text x="96.7834%" y="863.50"></text></g><g><title>VMThread::execute (50 samples, 0.02%)</title><rect x="96.5338%" y="837" width="0.0224%" height="15" fill="rgb(238,164,38)" fg:x="215058" fg:w="50"/><text x="96.7838%" y="847.50"></text></g><g><title>InterpreterRuntime::newarray (23 samples, 0.01%)</title><rect x="96.5580%" y="885" width="0.0103%" height="15" fill="rgb(245,196,38)" fg:x="215112" fg:w="23"/><text x="96.8080%" y="895.50"></text></g><g><title>LinkResolver::resolve_field_access (33 samples, 0.01%)</title><rect x="96.5764%" y="853" width="0.0148%" height="15" fill="rgb(231,217,29)" fg:x="215153" fg:w="33"/><text x="96.8264%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (41 samples, 0.02%)</title><rect x="96.5737%" y="869" width="0.0184%" height="15" fill="rgb(245,6,4)" fg:x="215147" fg:w="41"/><text x="96.8237%" y="879.50"></text></g><g><title>ConstantPool::klass_ref_at (33 samples, 0.01%)</title><rect x="96.6173%" y="837" width="0.0148%" height="15" fill="rgb(214,76,49)" fg:x="215244" fg:w="33"/><text x="96.8673%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (25 samples, 0.01%)</title><rect x="96.6209%" y="821" width="0.0112%" height="15" fill="rgb(205,96,12)" fg:x="215252" fg:w="25"/><text x="96.8709%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (25 samples, 0.01%)</title><rect x="96.6209%" y="805" width="0.0112%" height="15" fill="rgb(243,131,4)" fg:x="215252" fg:w="25"/><text x="96.8709%" y="815.50"></text></g><g><title>LinkResolver::resolve_interface_method (23 samples, 0.01%)</title><rect x="96.6393%" y="821" width="0.0103%" height="15" fill="rgb(214,114,4)" fg:x="215293" fg:w="23"/><text x="96.8893%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (38 samples, 0.02%)</title><rect x="96.6375%" y="837" width="0.0171%" height="15" fill="rgb(234,215,15)" fg:x="215289" fg:w="38"/><text x="96.8875%" y="847.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (27 samples, 0.01%)</title><rect x="96.6595%" y="821" width="0.0121%" height="15" fill="rgb(250,216,45)" fg:x="215338" fg:w="27"/><text x="96.9095%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (49 samples, 0.02%)</title><rect x="96.6545%" y="837" width="0.0220%" height="15" fill="rgb(236,128,4)" fg:x="215327" fg:w="49"/><text x="96.9045%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (39 samples, 0.02%)</title><rect x="96.6788%" y="805" width="0.0175%" height="15" fill="rgb(234,50,33)" fg:x="215381" fg:w="39"/><text x="96.9288%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (48 samples, 0.02%)</title><rect x="96.6783%" y="821" width="0.0215%" height="15" fill="rgb(253,131,37)" fg:x="215380" fg:w="48"/><text x="96.9283%" y="831.50"></text></g><g><title>LinkResolver::resolve_static_call (75 samples, 0.03%)</title><rect x="96.6765%" y="837" width="0.0337%" height="15" fill="rgb(218,55,27)" fg:x="215376" fg:w="75"/><text x="96.9265%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (216 samples, 0.10%)</title><rect x="96.6141%" y="853" width="0.0970%" height="15" fill="rgb(241,220,28)" fg:x="215237" fg:w="216"/><text x="96.8641%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (283 samples, 0.13%)</title><rect x="96.5922%" y="869" width="0.1270%" height="15" fill="rgb(241,90,48)" fg:x="215188" fg:w="283"/><text x="96.8422%" y="879.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (34 samples, 0.02%)</title><rect x="96.7201%" y="805" width="0.0153%" height="15" fill="rgb(216,43,37)" fg:x="215473" fg:w="34"/><text x="96.9701%" y="815.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (34 samples, 0.02%)</title><rect x="96.7201%" y="789" width="0.0153%" height="15" fill="rgb(207,173,9)" fg:x="215473" fg:w="34"/><text x="96.9701%" y="799.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (23 samples, 0.01%)</title><rect x="96.7250%" y="773" width="0.0103%" height="15" fill="rgb(240,126,30)" fg:x="215484" fg:w="23"/><text x="96.9750%" y="783.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (50 samples, 0.02%)</title><rect x="96.7196%" y="821" width="0.0224%" height="15" fill="rgb(228,178,53)" fg:x="215472" fg:w="50"/><text x="96.9696%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (76 samples, 0.03%)</title><rect x="96.7192%" y="869" width="0.0341%" height="15" fill="rgb(217,33,4)" fg:x="215471" fg:w="76"/><text x="96.9692%" y="879.50"></text></g><g><title>LinkResolver::resolve_invoke (76 samples, 0.03%)</title><rect x="96.7192%" y="853" width="0.0341%" height="15" fill="rgb(206,124,34)" fg:x="215471" fg:w="76"/><text x="96.9692%" y="863.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (76 samples, 0.03%)</title><rect x="96.7192%" y="837" width="0.0341%" height="15" fill="rgb(208,122,53)" fg:x="215471" fg:w="76"/><text x="96.9692%" y="847.50"></text></g><g><title>LinkResolver::resolve_dynamic_call (25 samples, 0.01%)</title><rect x="96.7421%" y="821" width="0.0112%" height="15" fill="rgb(215,202,26)" fg:x="215522" fg:w="25"/><text x="96.9921%" y="831.50"></text></g><g><title>SystemDictionary::find_dynamic_call_site_invoker (25 samples, 0.01%)</title><rect x="96.7421%" y="805" width="0.0112%" height="15" fill="rgb(232,198,31)" fg:x="215522" fg:w="25"/><text x="96.9921%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (410 samples, 0.18%)</title><rect x="96.5702%" y="885" width="0.1840%" height="15" fill="rgb(222,23,35)" fg:x="215139" fg:w="410"/><text x="96.8202%" y="895.50"></text></g><g><title>JVM_Clone (43 samples, 0.02%)</title><rect x="96.7713%" y="885" width="0.0193%" height="15" fill="rgb(242,27,53)" fg:x="215587" fg:w="43"/><text x="97.0213%" y="895.50"></text></g><g><title>JVM_FindLoadedClass (27 samples, 0.01%)</title><rect x="96.8063%" y="885" width="0.0121%" height="15" fill="rgb(210,216,42)" fg:x="215665" fg:w="27"/><text x="97.0563%" y="895.50"></text></g><g><title>JVM_GetClassDeclaredMethods (39 samples, 0.02%)</title><rect x="96.8332%" y="885" width="0.0175%" height="15" fill="rgb(234,39,38)" fg:x="215725" fg:w="39"/><text x="97.0832%" y="895.50"></text></g><g><title>get_class_declared_methods_helper (39 samples, 0.02%)</title><rect x="96.8332%" y="869" width="0.0175%" height="15" fill="rgb(235,126,54)" fg:x="215725" fg:w="39"/><text x="97.0832%" y="879.50"></text></g><g><title>Reflection::new_method (32 samples, 0.01%)</title><rect x="96.8363%" y="853" width="0.0144%" height="15" fill="rgb(235,150,33)" fg:x="215732" fg:w="32"/><text x="97.0863%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.02%)</title><rect x="96.8543%" y="581" width="0.0229%" height="15" fill="rgb(249,49,53)" fg:x="215772" fg:w="51"/><text x="97.1043%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.02%)</title><rect x="96.8552%" y="565" width="0.0220%" height="15" fill="rgb(238,60,50)" fg:x="215774" fg:w="49"/><text x="97.1052%" y="575.50"></text></g><g><title>native_write_msr (49 samples, 0.02%)</title><rect x="96.8552%" y="549" width="0.0220%" height="15" fill="rgb(210,5,2)" fg:x="215774" fg:w="49"/><text x="97.1052%" y="559.50"></text></g><g><title>Monitor::IWait (57 samples, 0.03%)</title><rect x="96.8529%" y="805" width="0.0256%" height="15" fill="rgb(214,207,24)" fg:x="215769" fg:w="57"/><text x="97.1029%" y="815.50"></text></g><g><title>os::PlatformEvent::park (57 samples, 0.03%)</title><rect x="96.8529%" y="789" width="0.0256%" height="15" fill="rgb(228,173,2)" fg:x="215769" fg:w="57"/><text x="97.1029%" y="799.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.03%)</title><rect x="96.8529%" y="773" width="0.0256%" height="15" fill="rgb(244,26,8)" fg:x="215769" fg:w="57"/><text x="97.1029%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.03%)</title><rect x="96.8529%" y="757" width="0.0256%" height="15" fill="rgb(249,153,35)" fg:x="215769" fg:w="57"/><text x="97.1029%" y="767.50"></text></g><g><title>futex_wait_cancelable (57 samples, 0.03%)</title><rect x="96.8529%" y="741" width="0.0256%" height="15" fill="rgb(221,215,40)" fg:x="215769" fg:w="57"/><text x="97.1029%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="96.8538%" y="725" width="0.0247%" height="15" fill="rgb(238,106,35)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="735.50"></text></g><g><title>do_syscall_64 (55 samples, 0.02%)</title><rect x="96.8538%" y="709" width="0.0247%" height="15" fill="rgb(207,195,21)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="719.50"></text></g><g><title>__x64_sys_futex (55 samples, 0.02%)</title><rect x="96.8538%" y="693" width="0.0247%" height="15" fill="rgb(205,43,29)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="703.50"></text></g><g><title>do_futex (55 samples, 0.02%)</title><rect x="96.8538%" y="677" width="0.0247%" height="15" fill="rgb(236,35,21)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="687.50"></text></g><g><title>futex_wait (55 samples, 0.02%)</title><rect x="96.8538%" y="661" width="0.0247%" height="15" fill="rgb(244,74,8)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="671.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.02%)</title><rect x="96.8538%" y="645" width="0.0247%" height="15" fill="rgb(241,229,7)" fg:x="215771" fg:w="55"/><text x="97.1038%" y="655.50"></text></g><g><title>schedule (54 samples, 0.02%)</title><rect x="96.8543%" y="629" width="0.0242%" height="15" fill="rgb(212,223,25)" fg:x="215772" fg:w="54"/><text x="97.1043%" y="639.50"></text></g><g><title>__schedule (54 samples, 0.02%)</title><rect x="96.8543%" y="613" width="0.0242%" height="15" fill="rgb(234,58,53)" fg:x="215772" fg:w="54"/><text x="97.1043%" y="623.50"></text></g><g><title>finish_task_switch (54 samples, 0.02%)</title><rect x="96.8543%" y="597" width="0.0242%" height="15" fill="rgb(244,36,1)" fg:x="215772" fg:w="54"/><text x="97.1043%" y="607.50"></text></g><g><title>Monitor::wait (65 samples, 0.03%)</title><rect x="96.8529%" y="821" width="0.0292%" height="15" fill="rgb(222,40,54)" fg:x="215769" fg:w="65"/><text x="97.1029%" y="831.50"></text></g><g><title>VMThread::execute (67 samples, 0.03%)</title><rect x="96.8529%" y="837" width="0.0301%" height="15" fill="rgb(210,207,39)" fg:x="215769" fg:w="67"/><text x="97.1029%" y="847.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (69 samples, 0.03%)</title><rect x="96.8525%" y="853" width="0.0310%" height="15" fill="rgb(234,52,14)" fg:x="215768" fg:w="69"/><text x="97.1025%" y="863.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (73 samples, 0.03%)</title><rect x="96.8516%" y="869" width="0.0328%" height="15" fill="rgb(239,108,46)" fg:x="215766" fg:w="73"/><text x="97.1016%" y="879.50"></text></g><g><title>JVM_IHashCode (76 samples, 0.03%)</title><rect x="96.8512%" y="885" width="0.0341%" height="15" fill="rgb(252,223,5)" fg:x="215765" fg:w="76"/><text x="97.1012%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.04%)</title><rect x="96.9315%" y="629" width="0.0377%" height="15" fill="rgb(227,181,11)" fg:x="215944" fg:w="84"/><text x="97.1815%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.04%)</title><rect x="96.9315%" y="613" width="0.0377%" height="15" fill="rgb(248,126,40)" fg:x="215944" fg:w="84"/><text x="97.1815%" y="623.50"></text></g><g><title>native_write_msr (82 samples, 0.04%)</title><rect x="96.9324%" y="597" width="0.0368%" height="15" fill="rgb(243,1,18)" fg:x="215946" fg:w="82"/><text x="97.1824%" y="607.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.04%)</title><rect x="96.9302%" y="693" width="0.0395%" height="15" fill="rgb(214,145,23)" fg:x="215941" fg:w="88"/><text x="97.1802%" y="703.50"></text></g><g><title>schedule (87 samples, 0.04%)</title><rect x="96.9306%" y="677" width="0.0391%" height="15" fill="rgb(241,218,11)" fg:x="215942" fg:w="87"/><text x="97.1806%" y="687.50"></text></g><g><title>__schedule (87 samples, 0.04%)</title><rect x="96.9306%" y="661" width="0.0391%" height="15" fill="rgb(214,219,24)" fg:x="215942" fg:w="87"/><text x="97.1806%" y="671.50"></text></g><g><title>finish_task_switch (87 samples, 0.04%)</title><rect x="96.9306%" y="645" width="0.0391%" height="15" fill="rgb(235,32,7)" fg:x="215942" fg:w="87"/><text x="97.1806%" y="655.50"></text></g><g><title>do_syscall_64 (91 samples, 0.04%)</title><rect x="96.9293%" y="757" width="0.0408%" height="15" fill="rgb(227,121,28)" fg:x="215939" fg:w="91"/><text x="97.1793%" y="767.50"></text></g><g><title>__x64_sys_futex (90 samples, 0.04%)</title><rect x="96.9297%" y="741" width="0.0404%" height="15" fill="rgb(216,129,49)" fg:x="215940" fg:w="90"/><text x="97.1797%" y="751.50"></text></g><g><title>do_futex (90 samples, 0.04%)</title><rect x="96.9297%" y="725" width="0.0404%" height="15" fill="rgb(207,194,50)" fg:x="215940" fg:w="90"/><text x="97.1797%" y="735.50"></text></g><g><title>futex_wait (90 samples, 0.04%)</title><rect x="96.9297%" y="709" width="0.0404%" height="15" fill="rgb(207,4,18)" fg:x="215940" fg:w="90"/><text x="97.1797%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.04%)</title><rect x="96.9293%" y="773" width="0.0422%" height="15" fill="rgb(213,50,30)" fg:x="215939" fg:w="94"/><text x="97.1793%" y="783.50"></text></g><g><title>__pthread_cond_wait (97 samples, 0.04%)</title><rect x="96.9284%" y="821" width="0.0435%" height="15" fill="rgb(208,77,22)" fg:x="215937" fg:w="97"/><text x="97.1784%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (97 samples, 0.04%)</title><rect x="96.9284%" y="805" width="0.0435%" height="15" fill="rgb(244,204,34)" fg:x="215937" fg:w="97"/><text x="97.1784%" y="815.50"></text></g><g><title>futex_wait_cancelable (96 samples, 0.04%)</title><rect x="96.9288%" y="789" width="0.0431%" height="15" fill="rgb(230,20,17)" fg:x="215938" fg:w="96"/><text x="97.1788%" y="799.50"></text></g><g><title>ObjectMonitor::wait (116 samples, 0.05%)</title><rect x="96.9216%" y="853" width="0.0521%" height="15" fill="rgb(237,83,15)" fg:x="215922" fg:w="116"/><text x="97.1716%" y="863.50"></text></g><g><title>os::PlatformEvent::park (110 samples, 0.05%)</title><rect x="96.9243%" y="837" width="0.0494%" height="15" fill="rgb(221,109,25)" fg:x="215928" fg:w="110"/><text x="97.1743%" y="847.50"></text></g><g><title>JVM_MonitorWait (127 samples, 0.06%)</title><rect x="96.9176%" y="885" width="0.0570%" height="15" fill="rgb(205,194,52)" fg:x="215913" fg:w="127"/><text x="97.1676%" y="895.50"></text></g><g><title>ObjectSynchronizer::wait (126 samples, 0.06%)</title><rect x="96.9180%" y="869" width="0.0566%" height="15" fill="rgb(244,173,54)" fg:x="215914" fg:w="126"/><text x="97.1680%" y="879.50"></text></g><g><title>JavaThread::check_special_condition_for_native_trans (23 samples, 0.01%)</title><rect x="96.9827%" y="885" width="0.0103%" height="15" fill="rgb(227,181,18)" fg:x="216058" fg:w="23"/><text x="97.2327%" y="895.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (23 samples, 0.01%)</title><rect x="96.9827%" y="869" width="0.0103%" height="15" fill="rgb(238,36,30)" fg:x="216058" fg:w="23"/><text x="97.2327%" y="879.50"></text></g><g><title>SafepointSynchronize::block (23 samples, 0.01%)</title><rect x="96.9827%" y="853" width="0.0103%" height="15" fill="rgb(254,85,0)" fg:x="216058" fg:w="23"/><text x="97.2327%" y="863.50"></text></g><g><title>Java_java_io_UnixFileSystem_getBooleanAttributes0 (27 samples, 0.01%)</title><rect x="96.9997%" y="885" width="0.0121%" height="15" fill="rgb(247,63,33)" fg:x="216096" fg:w="27"/><text x="97.2497%" y="895.50"></text></g><g><title>__GI___xstat (23 samples, 0.01%)</title><rect x="97.0015%" y="869" width="0.0103%" height="15" fill="rgb(220,7,54)" fg:x="216100" fg:w="23"/><text x="97.2515%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (320 samples, 0.14%)</title><rect x="97.0253%" y="757" width="0.1436%" height="15" fill="rgb(238,227,21)" fg:x="216153" fg:w="320"/><text x="97.2753%" y="767.50"></text></g><g><title>SymbolTable::lookup_only (293 samples, 0.13%)</title><rect x="97.0374%" y="741" width="0.1315%" height="15" fill="rgb(237,29,31)" fg:x="216180" fg:w="293"/><text x="97.2874%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool (331 samples, 0.15%)</title><rect x="97.0208%" y="773" width="0.1486%" height="15" fill="rgb(211,21,50)" fg:x="216143" fg:w="331"/><text x="97.2708%" y="783.50"></text></g><g><title>ClassFileParser::parse_methods (76 samples, 0.03%)</title><rect x="97.1734%" y="773" width="0.0341%" height="15" fill="rgb(239,119,2)" fg:x="216483" fg:w="76"/><text x="97.4234%" y="783.50"></text></g><g><title>ClassFileParser::parse_method (76 samples, 0.03%)</title><rect x="97.1734%" y="757" width="0.0341%" height="15" fill="rgb(250,2,39)" fg:x="216483" fg:w="76"/><text x="97.4234%" y="767.50"></text></g><g><title>ClassFileParser::parse_stream (440 samples, 0.20%)</title><rect x="97.0186%" y="789" width="0.1975%" height="15" fill="rgb(244,46,53)" fg:x="216138" fg:w="440"/><text x="97.2686%" y="799.50"></text></g><g><title>ClassFileParser::ClassFileParser (442 samples, 0.20%)</title><rect x="97.0181%" y="805" width="0.1984%" height="15" fill="rgb(209,21,19)" fg:x="216137" fg:w="442"/><text x="97.2681%" y="815.50"></text></g><g><title>DefaultMethods::generate_default_methods (41 samples, 0.02%)</title><rect x="97.2197%" y="773" width="0.0184%" height="15" fill="rgb(236,145,4)" fg:x="216586" fg:w="41"/><text x="97.4697%" y="783.50"></text></g><g><title>ClassFileParser::fill_instance_klass (62 samples, 0.03%)</title><rect x="97.2165%" y="789" width="0.0278%" height="15" fill="rgb(220,133,36)" fg:x="216579" fg:w="62"/><text x="97.4665%" y="799.50"></text></g><g><title>ClassFileParser::create_instance_klass (70 samples, 0.03%)</title><rect x="97.2165%" y="805" width="0.0314%" height="15" fill="rgb(244,18,3)" fg:x="216579" fg:w="70"/><text x="97.4665%" y="815.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (27 samples, 0.01%)</title><rect x="97.2480%" y="805" width="0.0121%" height="15" fill="rgb(232,171,48)" fg:x="216649" fg:w="27"/><text x="97.4980%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (542 samples, 0.24%)</title><rect x="97.0172%" y="821" width="0.2433%" height="15" fill="rgb(223,223,53)" fg:x="216135" fg:w="542"/><text x="97.2672%" y="831.50"></text></g><g><title>JVM_DefineClassWithSource (583 samples, 0.26%)</title><rect x="97.0132%" y="869" width="0.2617%" height="15" fill="rgb(246,92,13)" fg:x="216126" fg:w="583"/><text x="97.2632%" y="879.50"></text></g><g><title>jvm_define_class_common (582 samples, 0.26%)</title><rect x="97.0136%" y="853" width="0.2612%" height="15" fill="rgb(229,171,10)" fg:x="216127" fg:w="582"/><text x="97.2636%" y="863.50"></text></g><g><title>SystemDictionary::resolve_from_stream (575 samples, 0.26%)</title><rect x="97.0168%" y="837" width="0.2581%" height="15" fill="rgb(213,131,26)" fg:x="216134" fg:w="575"/><text x="97.2668%" y="847.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (32 samples, 0.01%)</title><rect x="97.2605%" y="821" width="0.0144%" height="15" fill="rgb(242,87,54)" fg:x="216677" fg:w="32"/><text x="97.5105%" y="831.50"></text></g><g><title>SystemDictionary::define_instance_class (29 samples, 0.01%)</title><rect x="97.2619%" y="805" width="0.0130%" height="15" fill="rgb(237,21,35)" fg:x="216680" fg:w="29"/><text x="97.5119%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (606 samples, 0.27%)</title><rect x="97.0123%" y="885" width="0.2720%" height="15" fill="rgb(253,13,47)" fg:x="216124" fg:w="606"/><text x="97.2623%" y="895.50"></text></g><g><title>JVM_FindClassFromBootLoader (26 samples, 0.01%)</title><rect x="97.2843%" y="869" width="0.0117%" height="15" fill="rgb(215,122,49)" fg:x="216730" fg:w="26"/><text x="97.5343%" y="879.50"></text></g><g><title>SystemDictionary::resolve_or_null (24 samples, 0.01%)</title><rect x="97.2852%" y="853" width="0.0108%" height="15" fill="rgb(209,179,30)" fg:x="216732" fg:w="24"/><text x="97.5352%" y="863.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (24 samples, 0.01%)</title><rect x="97.2852%" y="837" width="0.0108%" height="15" fill="rgb(235,100,24)" fg:x="216732" fg:w="24"/><text x="97.5352%" y="847.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (31 samples, 0.01%)</title><rect x="97.2843%" y="885" width="0.0139%" height="15" fill="rgb(209,67,24)" fg:x="216730" fg:w="31"/><text x="97.5343%" y="895.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (42 samples, 0.02%)</title><rect x="97.3054%" y="885" width="0.0189%" height="15" fill="rgb(206,74,32)" fg:x="216777" fg:w="42"/><text x="97.5554%" y="895.50"></text></g><g><title>os_getParentPidAndTimings (42 samples, 0.02%)</title><rect x="97.3054%" y="869" width="0.0189%" height="15" fill="rgb(212,45,25)" fg:x="216777" fg:w="42"/><text x="97.5554%" y="879.50"></text></g><g><title>copy_process (39 samples, 0.02%)</title><rect x="97.3490%" y="773" width="0.0175%" height="15" fill="rgb(239,26,3)" fg:x="216874" fg:w="39"/><text x="97.5990%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.03%)</title><rect x="97.3696%" y="677" width="0.0265%" height="15" fill="rgb(218,36,15)" fg:x="216920" fg:w="59"/><text x="97.6196%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.03%)</title><rect x="97.3701%" y="661" width="0.0260%" height="15" fill="rgb(206,108,24)" fg:x="216921" fg:w="58"/><text x="97.6201%" y="671.50"></text></g><g><title>native_write_msr (58 samples, 0.03%)</title><rect x="97.3701%" y="645" width="0.0260%" height="15" fill="rgb(234,204,42)" fg:x="216921" fg:w="58"/><text x="97.6201%" y="655.50"></text></g><g><title>finish_task_switch (62 samples, 0.03%)</title><rect x="97.3692%" y="693" width="0.0278%" height="15" fill="rgb(229,2,11)" fg:x="216919" fg:w="62"/><text x="97.6192%" y="703.50"></text></g><g><title>wait_for_completion_killable (69 samples, 0.03%)</title><rect x="97.3669%" y="773" width="0.0310%" height="15" fill="rgb(221,20,48)" fg:x="216914" fg:w="69"/><text x="97.6169%" y="783.50"></text></g><g><title>__wait_for_common (69 samples, 0.03%)</title><rect x="97.3669%" y="757" width="0.0310%" height="15" fill="rgb(244,164,10)" fg:x="216914" fg:w="69"/><text x="97.6169%" y="767.50"></text></g><g><title>schedule_timeout (68 samples, 0.03%)</title><rect x="97.3674%" y="741" width="0.0305%" height="15" fill="rgb(243,229,2)" fg:x="216915" fg:w="68"/><text x="97.6174%" y="751.50"></text></g><g><title>schedule (67 samples, 0.03%)</title><rect x="97.3678%" y="725" width="0.0301%" height="15" fill="rgb(232,131,37)" fg:x="216916" fg:w="67"/><text x="97.6178%" y="735.50"></text></g><g><title>__schedule (67 samples, 0.03%)</title><rect x="97.3678%" y="709" width="0.0301%" height="15" fill="rgb(217,156,11)" fg:x="216916" fg:w="67"/><text x="97.6178%" y="719.50"></text></g><g><title>do_syscall_64 (118 samples, 0.05%)</title><rect x="97.3490%" y="821" width="0.0530%" height="15" fill="rgb(239,99,48)" fg:x="216874" fg:w="118"/><text x="97.5990%" y="831.50"></text></g><g><title>__x64_sys_vfork (118 samples, 0.05%)</title><rect x="97.3490%" y="805" width="0.0530%" height="15" fill="rgb(231,209,9)" fg:x="216874" fg:w="118"/><text x="97.5990%" y="815.50"></text></g><g><title>kernel_clone (118 samples, 0.05%)</title><rect x="97.3490%" y="789" width="0.0530%" height="15" fill="rgb(254,97,27)" fg:x="216874" fg:w="118"/><text x="97.5990%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (120 samples, 0.05%)</title><rect x="97.3485%" y="837" width="0.0539%" height="15" fill="rgb(223,151,38)" fg:x="216873" fg:w="120"/><text x="97.5985%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (433 samples, 0.19%)</title><rect x="97.4176%" y="789" width="0.1944%" height="15" fill="rgb(219,206,35)" fg:x="217027" fg:w="433"/><text x="97.6676%" y="799.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (428 samples, 0.19%)</title><rect x="97.4199%" y="773" width="0.1921%" height="15" fill="rgb(216,130,31)" fg:x="217032" fg:w="428"/><text x="97.6699%" y="783.50"></text></g><g><title>native_write_msr (428 samples, 0.19%)</title><rect x="97.4199%" y="757" width="0.1921%" height="15" fill="rgb(251,97,34)" fg:x="217032" fg:w="428"/><text x="97.6699%" y="767.50"></text></g><g><title>schedule_tail (454 samples, 0.20%)</title><rect x="97.4113%" y="821" width="0.2038%" height="15" fill="rgb(246,159,47)" fg:x="217013" fg:w="454"/><text x="97.6613%" y="831.50"></text></g><g><title>finish_task_switch (452 samples, 0.20%)</title><rect x="97.4122%" y="805" width="0.2029%" height="15" fill="rgb(232,87,10)" fg:x="217015" fg:w="452"/><text x="97.6622%" y="815.50"></text></g><g><title>__libc_vfork (603 samples, 0.27%)</title><rect x="97.3463%" y="853" width="0.2707%" height="15" fill="rgb(249,1,37)" fg:x="216868" fg:w="603"/><text x="97.5963%" y="863.50"></text></g><g><title>ret_from_fork (478 samples, 0.21%)</title><rect x="97.4024%" y="837" width="0.2146%" height="15" fill="rgb(239,135,14)" fg:x="216993" fg:w="478"/><text x="97.6524%" y="847.50"></text></g><g><title>sched_exec (25 samples, 0.01%)</title><rect x="97.6317%" y="725" width="0.0112%" height="15" fill="rgb(253,116,46)" fg:x="217504" fg:w="25"/><text x="97.8817%" y="735.50"></text></g><g><title>bprm_execve (64 samples, 0.03%)</title><rect x="97.6214%" y="741" width="0.0287%" height="15" fill="rgb(222,217,37)" fg:x="217481" fg:w="64"/><text x="97.8714%" y="751.50"></text></g><g><title>JDK_execvpe (102 samples, 0.05%)</title><rect x="97.6183%" y="837" width="0.0458%" height="15" fill="rgb(252,96,8)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="847.50"></text></g><g><title>__GI_execve (102 samples, 0.05%)</title><rect x="97.6183%" y="821" width="0.0458%" height="15" fill="rgb(254,103,41)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.05%)</title><rect x="97.6183%" y="805" width="0.0458%" height="15" fill="rgb(218,213,19)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="815.50"></text></g><g><title>do_syscall_64 (102 samples, 0.05%)</title><rect x="97.6183%" y="789" width="0.0458%" height="15" fill="rgb(253,95,21)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="799.50"></text></g><g><title>__x64_sys_execve (102 samples, 0.05%)</title><rect x="97.6183%" y="773" width="0.0458%" height="15" fill="rgb(229,26,28)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="783.50"></text></g><g><title>do_execveat_common (102 samples, 0.05%)</title><rect x="97.6183%" y="757" width="0.0458%" height="15" fill="rgb(230,129,16)" fg:x="217474" fg:w="102"/><text x="97.8683%" y="767.50"></text></g><g><title>proc_fill_cache (25 samples, 0.01%)</title><rect x="97.6793%" y="709" width="0.0112%" height="15" fill="rgb(236,126,17)" fg:x="217610" fg:w="25"/><text x="97.9293%" y="719.50"></text></g><g><title>proc_readfd_common (28 samples, 0.01%)</title><rect x="97.6789%" y="725" width="0.0126%" height="15" fill="rgb(209,33,33)" fg:x="217609" fg:w="28"/><text x="97.9289%" y="735.50"></text></g><g><title>__GI___readdir64 (32 samples, 0.01%)</title><rect x="97.6775%" y="821" width="0.0144%" height="15" fill="rgb(227,85,29)" fg:x="217606" fg:w="32"/><text x="97.9275%" y="831.50"></text></g><g><title>__GI___getdents64 (31 samples, 0.01%)</title><rect x="97.6780%" y="805" width="0.0139%" height="15" fill="rgb(241,53,46)" fg:x="217607" fg:w="31"/><text x="97.9280%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="97.6784%" y="789" width="0.0135%" height="15" fill="rgb(228,167,53)" fg:x="217608" fg:w="30"/><text x="97.9284%" y="799.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="97.6784%" y="773" width="0.0135%" height="15" fill="rgb(238,195,45)" fg:x="217608" fg:w="30"/><text x="97.9284%" y="783.50"></text></g><g><title>__x64_sys_getdents64 (30 samples, 0.01%)</title><rect x="97.6784%" y="757" width="0.0135%" height="15" fill="rgb(252,124,45)" fg:x="217608" fg:w="30"/><text x="97.9284%" y="767.50"></text></g><g><title>iterate_dir (30 samples, 0.01%)</title><rect x="97.6784%" y="741" width="0.0135%" height="15" fill="rgb(251,38,35)" fg:x="217608" fg:w="30"/><text x="97.9284%" y="751.50"></text></g><g><title>btrfs_truncate_inode_items (24 samples, 0.01%)</title><rect x="97.7054%" y="661" width="0.0108%" height="15" fill="rgb(227,33,2)" fg:x="217668" fg:w="24"/><text x="97.9554%" y="671.50"></text></g><g><title>__dentry_kill (47 samples, 0.02%)</title><rect x="97.6955%" y="709" width="0.0211%" height="15" fill="rgb(223,157,46)" fg:x="217646" fg:w="47"/><text x="97.9455%" y="719.50"></text></g><g><title>evict (43 samples, 0.02%)</title><rect x="97.6973%" y="693" width="0.0193%" height="15" fill="rgb(222,78,41)" fg:x="217650" fg:w="43"/><text x="97.9473%" y="703.50"></text></g><g><title>btrfs_evict_inode (43 samples, 0.02%)</title><rect x="97.6973%" y="677" width="0.0193%" height="15" fill="rgb(248,176,11)" fg:x="217650" fg:w="43"/><text x="97.9473%" y="687.50"></text></g><g><title>__close (56 samples, 0.03%)</title><rect x="97.6919%" y="821" width="0.0251%" height="15" fill="rgb(241,221,18)" fg:x="217638" fg:w="56"/><text x="97.9419%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="97.6923%" y="805" width="0.0247%" height="15" fill="rgb(218,85,22)" fg:x="217639" fg:w="55"/><text x="97.9423%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (49 samples, 0.02%)</title><rect x="97.6950%" y="789" width="0.0220%" height="15" fill="rgb(222,223,7)" fg:x="217645" fg:w="49"/><text x="97.9450%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (49 samples, 0.02%)</title><rect x="97.6950%" y="773" width="0.0220%" height="15" fill="rgb(254,59,39)" fg:x="217645" fg:w="49"/><text x="97.9450%" y="783.50"></text></g><g><title>task_work_run (48 samples, 0.02%)</title><rect x="97.6955%" y="757" width="0.0215%" height="15" fill="rgb(247,100,27)" fg:x="217646" fg:w="48"/><text x="97.9455%" y="767.50"></text></g><g><title>__fput (48 samples, 0.02%)</title><rect x="97.6955%" y="741" width="0.0215%" height="15" fill="rgb(237,207,10)" fg:x="217646" fg:w="48"/><text x="97.9455%" y="751.50"></text></g><g><title>dput (48 samples, 0.02%)</title><rect x="97.6955%" y="725" width="0.0215%" height="15" fill="rgb(220,121,28)" fg:x="217646" fg:w="48"/><text x="97.9455%" y="735.50"></text></g><g><title>do_filp_open (33 samples, 0.01%)</title><rect x="97.7175%" y="725" width="0.0148%" height="15" fill="rgb(213,223,20)" fg:x="217695" fg:w="33"/><text x="97.9675%" y="735.50"></text></g><g><title>path_openat (33 samples, 0.01%)</title><rect x="97.7175%" y="709" width="0.0148%" height="15" fill="rgb(205,121,27)" fg:x="217695" fg:w="33"/><text x="97.9675%" y="719.50"></text></g><g><title>__GI___open64_nocancel (36 samples, 0.02%)</title><rect x="97.7170%" y="805" width="0.0162%" height="15" fill="rgb(253,24,53)" fg:x="217694" fg:w="36"/><text x="97.9670%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="97.7170%" y="789" width="0.0162%" height="15" fill="rgb(224,224,47)" fg:x="217694" fg:w="36"/><text x="97.9670%" y="799.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="97.7170%" y="773" width="0.0162%" height="15" fill="rgb(250,125,36)" fg:x="217694" fg:w="36"/><text x="97.9670%" y="783.50"></text></g><g><title>__x64_sys_openat (36 samples, 0.02%)</title><rect x="97.7170%" y="757" width="0.0162%" height="15" fill="rgb(240,144,38)" fg:x="217694" fg:w="36"/><text x="97.9670%" y="767.50"></text></g><g><title>do_sys_openat2 (36 samples, 0.02%)</title><rect x="97.7170%" y="741" width="0.0162%" height="15" fill="rgb(250,15,50)" fg:x="217694" fg:w="36"/><text x="97.9670%" y="751.50"></text></g><g><title>__opendir (38 samples, 0.02%)</title><rect x="97.7170%" y="821" width="0.0171%" height="15" fill="rgb(210,24,26)" fg:x="217694" fg:w="38"/><text x="97.9670%" y="831.50"></text></g><g><title>closeDescriptors (136 samples, 0.06%)</title><rect x="97.6753%" y="837" width="0.0610%" height="15" fill="rgb(234,53,53)" fg:x="217601" fg:w="136"/><text x="97.9253%" y="847.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (939 samples, 0.42%)</title><rect x="97.3243%" y="885" width="0.4215%" height="15" fill="rgb(208,108,28)" fg:x="216819" fg:w="939"/><text x="97.5743%" y="895.50"></text></g><g><title>vforkChild (892 samples, 0.40%)</title><rect x="97.3454%" y="869" width="0.4004%" height="15" fill="rgb(227,143,7)" fg:x="216866" fg:w="892"/><text x="97.5954%" y="879.50"></text></g><g><title>childProcess (287 samples, 0.13%)</title><rect x="97.6169%" y="853" width="0.1288%" height="15" fill="rgb(238,189,38)" fg:x="217471" fg:w="287"/><text x="97.8669%" y="863.50"></text></g><g><title>JVM_FillInStackTrace (27 samples, 0.01%)</title><rect x="97.7462%" y="869" width="0.0121%" height="15" fill="rgb(222,69,15)" fg:x="217759" fg:w="27"/><text x="97.9962%" y="879.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (27 samples, 0.01%)</title><rect x="97.7462%" y="853" width="0.0121%" height="15" fill="rgb(213,169,7)" fg:x="217759" fg:w="27"/><text x="97.9962%" y="863.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (25 samples, 0.01%)</title><rect x="97.7471%" y="837" width="0.0112%" height="15" fill="rgb(251,219,4)" fg:x="217761" fg:w="25"/><text x="97.9971%" y="847.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (28 samples, 0.01%)</title><rect x="97.7462%" y="885" width="0.0126%" height="15" fill="rgb(241,55,40)" fg:x="217759" fg:w="28"/><text x="97.9962%" y="895.50"></text></g><g><title>OptoRuntime::new_array_C (33 samples, 0.01%)</title><rect x="97.7687%" y="885" width="0.0148%" height="15" fill="rgb(243,57,30)" fg:x="217809" fg:w="33"/><text x="98.0187%" y="895.50"></text></g><g><title>kernel_init_free_pages (29 samples, 0.01%)</title><rect x="97.7974%" y="661" width="0.0130%" height="15" fill="rgb(234,50,30)" fg:x="217873" fg:w="29"/><text x="98.0474%" y="671.50"></text></g><g><title>clear_page_erms (29 samples, 0.01%)</title><rect x="97.7974%" y="645" width="0.0130%" height="15" fill="rgb(239,23,42)" fg:x="217873" fg:w="29"/><text x="98.0474%" y="655.50"></text></g><g><title>alloc_pages_vma (31 samples, 0.01%)</title><rect x="97.7969%" y="725" width="0.0139%" height="15" fill="rgb(217,38,19)" fg:x="217872" fg:w="31"/><text x="98.0469%" y="735.50"></text></g><g><title>__alloc_pages_nodemask (31 samples, 0.01%)</title><rect x="97.7969%" y="709" width="0.0139%" height="15" fill="rgb(215,179,16)" fg:x="217872" fg:w="31"/><text x="98.0469%" y="719.50"></text></g><g><title>get_page_from_freelist (31 samples, 0.01%)</title><rect x="97.7969%" y="693" width="0.0139%" height="15" fill="rgb(254,21,37)" fg:x="217872" fg:w="31"/><text x="98.0469%" y="703.50"></text></g><g><title>prep_new_page (30 samples, 0.01%)</title><rect x="97.7974%" y="677" width="0.0135%" height="15" fill="rgb(219,207,48)" fg:x="217873" fg:w="30"/><text x="98.0474%" y="687.50"></text></g><g><title>ObjAllocator::initialize (52 samples, 0.02%)</title><rect x="97.7960%" y="821" width="0.0233%" height="15" fill="rgb(227,225,41)" fg:x="217870" fg:w="52"/><text x="98.0460%" y="831.50"></text></g><g><title>asm_exc_page_fault (52 samples, 0.02%)</title><rect x="97.7960%" y="805" width="0.0233%" height="15" fill="rgb(223,130,1)" fg:x="217870" fg:w="52"/><text x="98.0460%" y="815.50"></text></g><g><title>exc_page_fault (52 samples, 0.02%)</title><rect x="97.7960%" y="789" width="0.0233%" height="15" fill="rgb(249,54,42)" fg:x="217870" fg:w="52"/><text x="98.0460%" y="799.50"></text></g><g><title>do_user_addr_fault (52 samples, 0.02%)</title><rect x="97.7960%" y="773" width="0.0233%" height="15" fill="rgb(248,69,25)" fg:x="217870" fg:w="52"/><text x="98.0460%" y="783.50"></text></g><g><title>handle_mm_fault (51 samples, 0.02%)</title><rect x="97.7965%" y="757" width="0.0229%" height="15" fill="rgb(234,21,32)" fg:x="217871" fg:w="51"/><text x="98.0465%" y="767.50"></text></g><g><title>do_huge_pmd_anonymous_page (51 samples, 0.02%)</title><rect x="97.7965%" y="741" width="0.0229%" height="15" fill="rgb(252,136,6)" fg:x="217871" fg:w="51"/><text x="98.0465%" y="751.50"></text></g><g><title>InstanceKlass::allocate_instance (60 samples, 0.03%)</title><rect x="97.7929%" y="869" width="0.0269%" height="15" fill="rgb(245,87,12)" fg:x="217863" fg:w="60"/><text x="98.0429%" y="879.50"></text></g><g><title>CollectedHeap::obj_allocate (59 samples, 0.03%)</title><rect x="97.7933%" y="853" width="0.0265%" height="15" fill="rgb(208,12,15)" fg:x="217864" fg:w="59"/><text x="98.0433%" y="863.50"></text></g><g><title>MemAllocator::allocate (59 samples, 0.03%)</title><rect x="97.7933%" y="837" width="0.0265%" height="15" fill="rgb(250,98,2)" fg:x="217864" fg:w="59"/><text x="98.0433%" y="847.50"></text></g><g><title>OptoRuntime::new_instance_C (64 samples, 0.03%)</title><rect x="97.7915%" y="885" width="0.0287%" height="15" fill="rgb(205,213,15)" fg:x="217860" fg:w="64"/><text x="98.0415%" y="895.50"></text></g><g><title>TieredThresholdPolicy::call_event (26 samples, 0.01%)</title><rect x="97.8382%" y="837" width="0.0117%" height="15" fill="rgb(248,192,44)" fg:x="217964" fg:w="26"/><text x="98.0882%" y="847.50"></text></g><g><title>TieredThresholdPolicy::event (79 samples, 0.04%)</title><rect x="97.8279%" y="869" width="0.0355%" height="15" fill="rgb(221,89,17)" fg:x="217941" fg:w="79"/><text x="98.0779%" y="879.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (59 samples, 0.03%)</title><rect x="97.8369%" y="853" width="0.0265%" height="15" fill="rgb(209,55,3)" fg:x="217961" fg:w="59"/><text x="98.0869%" y="863.50"></text></g><g><title>TieredThresholdPolicy::compile (30 samples, 0.01%)</title><rect x="97.8499%" y="837" width="0.0135%" height="15" fill="rgb(247,23,45)" fg:x="217990" fg:w="30"/><text x="98.0999%" y="847.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (29 samples, 0.01%)</title><rect x="97.8503%" y="821" width="0.0130%" height="15" fill="rgb(235,152,23)" fg:x="217991" fg:w="29"/><text x="98.1003%" y="831.50"></text></g><g><title>CompileBroker::compile_method (28 samples, 0.01%)</title><rect x="97.8508%" y="805" width="0.0126%" height="15" fill="rgb(244,63,13)" fg:x="217992" fg:w="28"/><text x="98.1008%" y="815.50"></text></g><g><title>Runtime1::counter_overflow (109 samples, 0.05%)</title><rect x="97.8203%" y="885" width="0.0489%" height="15" fill="rgb(227,30,37)" fg:x="217924" fg:w="109"/><text x="98.0703%" y="895.50"></text></g><g><title>ObjectMonitor::enter (26 samples, 0.01%)</title><rect x="97.8737%" y="869" width="0.0117%" height="15" fill="rgb(224,49,42)" fg:x="218043" fg:w="26"/><text x="98.1237%" y="879.50"></text></g><g><title>finish_task_switch (57 samples, 0.03%)</title><rect x="97.8876%" y="597" width="0.0256%" height="15" fill="rgb(218,129,5)" fg:x="218074" fg:w="57"/><text x="98.1376%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.03%)</title><rect x="97.8881%" y="581" width="0.0251%" height="15" fill="rgb(240,199,54)" fg:x="218075" fg:w="56"/><text x="98.1381%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.03%)</title><rect x="97.8881%" y="565" width="0.0251%" height="15" fill="rgb(234,31,13)" fg:x="218075" fg:w="56"/><text x="98.1381%" y="575.50"></text></g><g><title>native_write_msr (56 samples, 0.03%)</title><rect x="97.8881%" y="549" width="0.0251%" height="15" fill="rgb(219,73,54)" fg:x="218075" fg:w="56"/><text x="98.1381%" y="559.50"></text></g><g><title>do_syscall_64 (59 samples, 0.03%)</title><rect x="97.8872%" y="709" width="0.0265%" height="15" fill="rgb(251,162,10)" fg:x="218073" fg:w="59"/><text x="98.1372%" y="719.50"></text></g><g><title>__x64_sys_futex (59 samples, 0.03%)</title><rect x="97.8872%" y="693" width="0.0265%" height="15" fill="rgb(240,138,47)" fg:x="218073" fg:w="59"/><text x="98.1372%" y="703.50"></text></g><g><title>do_futex (59 samples, 0.03%)</title><rect x="97.8872%" y="677" width="0.0265%" height="15" fill="rgb(216,138,26)" fg:x="218073" fg:w="59"/><text x="98.1372%" y="687.50"></text></g><g><title>futex_wait (59 samples, 0.03%)</title><rect x="97.8872%" y="661" width="0.0265%" height="15" fill="rgb(243,17,35)" fg:x="218073" fg:w="59"/><text x="98.1372%" y="671.50"></text></g><g><title>futex_wait_queue_me (58 samples, 0.03%)</title><rect x="97.8876%" y="645" width="0.0260%" height="15" fill="rgb(241,60,18)" fg:x="218074" fg:w="58"/><text x="98.1376%" y="655.50"></text></g><g><title>schedule (58 samples, 0.03%)</title><rect x="97.8876%" y="629" width="0.0260%" height="15" fill="rgb(234,2,44)" fg:x="218074" fg:w="58"/><text x="98.1376%" y="639.50"></text></g><g><title>__schedule (58 samples, 0.03%)</title><rect x="97.8876%" y="613" width="0.0260%" height="15" fill="rgb(225,225,33)" fg:x="218074" fg:w="58"/><text x="98.1376%" y="623.50"></text></g><g><title>Monitor::IWait (63 samples, 0.03%)</title><rect x="97.8863%" y="805" width="0.0283%" height="15" fill="rgb(234,50,31)" fg:x="218071" fg:w="63"/><text x="98.1363%" y="815.50"></text></g><g><title>os::PlatformEvent::park (61 samples, 0.03%)</title><rect x="97.8872%" y="789" width="0.0274%" height="15" fill="rgb(249,6,25)" fg:x="218073" fg:w="61"/><text x="98.1372%" y="799.50"></text></g><g><title>__pthread_cond_wait (61 samples, 0.03%)</title><rect x="97.8872%" y="773" width="0.0274%" height="15" fill="rgb(241,5,17)" fg:x="218073" fg:w="61"/><text x="98.1372%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (61 samples, 0.03%)</title><rect x="97.8872%" y="757" width="0.0274%" height="15" fill="rgb(207,116,10)" fg:x="218073" fg:w="61"/><text x="98.1372%" y="767.50"></text></g><g><title>futex_wait_cancelable (61 samples, 0.03%)</title><rect x="97.8872%" y="741" width="0.0274%" height="15" fill="rgb(222,128,18)" fg:x="218073" fg:w="61"/><text x="98.1372%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.03%)</title><rect x="97.8872%" y="725" width="0.0274%" height="15" fill="rgb(229,109,25)" fg:x="218073" fg:w="61"/><text x="98.1372%" y="735.50"></text></g><g><title>Monitor::wait (78 samples, 0.04%)</title><rect x="97.8863%" y="821" width="0.0350%" height="15" fill="rgb(222,102,25)" fg:x="218071" fg:w="78"/><text x="98.1363%" y="831.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (80 samples, 0.04%)</title><rect x="97.8858%" y="853" width="0.0359%" height="15" fill="rgb(239,211,5)" fg:x="218070" fg:w="80"/><text x="98.1358%" y="863.50"></text></g><g><title>VMThread::execute (80 samples, 0.04%)</title><rect x="97.8858%" y="837" width="0.0359%" height="15" fill="rgb(223,136,26)" fg:x="218070" fg:w="80"/><text x="98.1358%" y="847.50"></text></g><g><title>Runtime1::monitorenter (119 samples, 0.05%)</title><rect x="97.8701%" y="885" width="0.0534%" height="15" fill="rgb(227,30,15)" fg:x="218035" fg:w="119"/><text x="98.1201%" y="895.50"></text></g><g><title>ObjectSynchronizer::fast_enter (85 samples, 0.04%)</title><rect x="97.8854%" y="869" width="0.0382%" height="15" fill="rgb(247,76,4)" fg:x="218069" fg:w="85"/><text x="98.1354%" y="879.50"></text></g><g><title>kernel_init_free_pages (30 samples, 0.01%)</title><rect x="97.9370%" y="661" width="0.0135%" height="15" fill="rgb(245,38,48)" fg:x="218184" fg:w="30"/><text x="98.1870%" y="671.50"></text></g><g><title>clear_page_erms (30 samples, 0.01%)</title><rect x="97.9370%" y="645" width="0.0135%" height="15" fill="rgb(210,220,14)" fg:x="218184" fg:w="30"/><text x="98.1870%" y="655.50"></text></g><g><title>alloc_pages_vma (34 samples, 0.02%)</title><rect x="97.9356%" y="725" width="0.0153%" height="15" fill="rgb(224,60,51)" fg:x="218181" fg:w="34"/><text x="98.1856%" y="735.50"></text></g><g><title>__alloc_pages_nodemask (34 samples, 0.02%)</title><rect x="97.9356%" y="709" width="0.0153%" height="15" fill="rgb(212,133,49)" fg:x="218181" fg:w="34"/><text x="98.1856%" y="719.50"></text></g><g><title>get_page_from_freelist (34 samples, 0.02%)</title><rect x="97.9356%" y="693" width="0.0153%" height="15" fill="rgb(231,39,22)" fg:x="218181" fg:w="34"/><text x="98.1856%" y="703.50"></text></g><g><title>prep_new_page (31 samples, 0.01%)</title><rect x="97.9370%" y="677" width="0.0139%" height="15" fill="rgb(236,173,22)" fg:x="218184" fg:w="31"/><text x="98.1870%" y="687.50"></text></g><g><title>InstanceKlass::allocate_instance (74 samples, 0.03%)</title><rect x="97.9289%" y="869" width="0.0332%" height="15" fill="rgb(210,70,0)" fg:x="218166" fg:w="74"/><text x="98.1789%" y="879.50"></text></g><g><title>CollectedHeap::obj_allocate (74 samples, 0.03%)</title><rect x="97.9289%" y="853" width="0.0332%" height="15" fill="rgb(215,170,11)" fg:x="218166" fg:w="74"/><text x="98.1789%" y="863.50"></text></g><g><title>MemAllocator::allocate (74 samples, 0.03%)</title><rect x="97.9289%" y="837" width="0.0332%" height="15" fill="rgb(220,154,28)" fg:x="218166" fg:w="74"/><text x="98.1789%" y="847.50"></text></g><g><title>ObjAllocator::initialize (59 samples, 0.03%)</title><rect x="97.9356%" y="821" width="0.0265%" height="15" fill="rgb(240,160,41)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="831.50"></text></g><g><title>asm_exc_page_fault (59 samples, 0.03%)</title><rect x="97.9356%" y="805" width="0.0265%" height="15" fill="rgb(243,215,41)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="815.50"></text></g><g><title>exc_page_fault (59 samples, 0.03%)</title><rect x="97.9356%" y="789" width="0.0265%" height="15" fill="rgb(214,208,31)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="799.50"></text></g><g><title>do_user_addr_fault (59 samples, 0.03%)</title><rect x="97.9356%" y="773" width="0.0265%" height="15" fill="rgb(247,57,22)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="783.50"></text></g><g><title>handle_mm_fault (59 samples, 0.03%)</title><rect x="97.9356%" y="757" width="0.0265%" height="15" fill="rgb(228,73,52)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="767.50"></text></g><g><title>do_huge_pmd_anonymous_page (59 samples, 0.03%)</title><rect x="97.9356%" y="741" width="0.0265%" height="15" fill="rgb(252,60,9)" fg:x="218181" fg:w="59"/><text x="98.1856%" y="751.50"></text></g><g><title>clear_huge_page (25 samples, 0.01%)</title><rect x="97.9509%" y="725" width="0.0112%" height="15" fill="rgb(233,9,51)" fg:x="218215" fg:w="25"/><text x="98.2009%" y="735.50"></text></g><g><title>clear_subpage (24 samples, 0.01%)</title><rect x="97.9513%" y="709" width="0.0108%" height="15" fill="rgb(223,67,14)" fg:x="218216" fg:w="24"/><text x="98.2013%" y="719.50"></text></g><g><title>clear_page_erms (24 samples, 0.01%)</title><rect x="97.9513%" y="693" width="0.0108%" height="15" fill="rgb(222,86,2)" fg:x="218216" fg:w="24"/><text x="98.2013%" y="703.50"></text></g><g><title>Runtime1::new_instance (78 samples, 0.04%)</title><rect x="97.9276%" y="885" width="0.0350%" height="15" fill="rgb(243,58,54)" fg:x="218163" fg:w="78"/><text x="98.1776%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="97.9711%" y="645" width="0.0117%" height="15" fill="rgb(210,200,39)" fg:x="218260" fg:w="26"/><text x="98.2211%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="97.9715%" y="629" width="0.0112%" height="15" fill="rgb(238,135,9)" fg:x="218261" fg:w="25"/><text x="98.2215%" y="639.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="97.9715%" y="613" width="0.0112%" height="15" fill="rgb(232,179,7)" fg:x="218261" fg:w="25"/><text x="98.2215%" y="623.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="97.9702%" y="773" width="0.0130%" height="15" fill="rgb(245,65,41)" fg:x="218258" fg:w="29"/><text x="98.2202%" y="783.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.01%)</title><rect x="97.9702%" y="757" width="0.0130%" height="15" fill="rgb(227,43,8)" fg:x="218258" fg:w="29"/><text x="98.2202%" y="767.50"></text></g><g><title>do_futex (28 samples, 0.01%)</title><rect x="97.9706%" y="741" width="0.0126%" height="15" fill="rgb(235,91,14)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="751.50"></text></g><g><title>futex_wait (28 samples, 0.01%)</title><rect x="97.9706%" y="725" width="0.0126%" height="15" fill="rgb(235,219,31)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="735.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.01%)</title><rect x="97.9706%" y="709" width="0.0126%" height="15" fill="rgb(227,121,25)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="719.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="97.9706%" y="693" width="0.0126%" height="15" fill="rgb(254,129,24)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="703.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="97.9706%" y="677" width="0.0126%" height="15" fill="rgb(226,144,49)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="687.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="97.9706%" y="661" width="0.0126%" height="15" fill="rgb(214,187,32)" fg:x="218259" fg:w="28"/><text x="98.2206%" y="671.50"></text></g><g><title>__pthread_cond_timedwait (30 samples, 0.01%)</title><rect x="97.9702%" y="837" width="0.0135%" height="15" fill="rgb(243,129,46)" fg:x="218258" fg:w="30"/><text x="98.2202%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (30 samples, 0.01%)</title><rect x="97.9702%" y="821" width="0.0135%" height="15" fill="rgb(221,185,35)" fg:x="218258" fg:w="30"/><text x="98.2202%" y="831.50"></text></g><g><title>futex_abstimed_wait_cancelable (30 samples, 0.01%)</title><rect x="97.9702%" y="805" width="0.0135%" height="15" fill="rgb(205,0,32)" fg:x="218258" fg:w="30"/><text x="98.2202%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="97.9702%" y="789" width="0.0135%" height="15" fill="rgb(229,179,12)" fg:x="218258" fg:w="30"/><text x="98.2202%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="97.9855%" y="645" width="0.0112%" height="15" fill="rgb(252,107,19)" fg:x="218292" fg:w="25"/><text x="98.2355%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="97.9859%" y="629" width="0.0108%" height="15" fill="rgb(220,95,27)" fg:x="218293" fg:w="24"/><text x="98.2359%" y="639.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="97.9859%" y="613" width="0.0108%" height="15" fill="rgb(240,113,40)" fg:x="218293" fg:w="24"/><text x="98.2359%" y="623.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="97.9855%" y="661" width="0.0121%" height="15" fill="rgb(208,4,43)" fg:x="218292" fg:w="27"/><text x="98.2355%" y="671.50"></text></g><g><title>__pthread_cond_wait (33 samples, 0.01%)</title><rect x="97.9837%" y="837" width="0.0148%" height="15" fill="rgb(247,189,30)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (33 samples, 0.01%)</title><rect x="97.9837%" y="821" width="0.0148%" height="15" fill="rgb(231,157,17)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="831.50"></text></g><g><title>futex_wait_cancelable (33 samples, 0.01%)</title><rect x="97.9837%" y="805" width="0.0148%" height="15" fill="rgb(224,139,6)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.01%)</title><rect x="97.9837%" y="789" width="0.0148%" height="15" fill="rgb(223,83,16)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="799.50"></text></g><g><title>do_syscall_64 (33 samples, 0.01%)</title><rect x="97.9837%" y="773" width="0.0148%" height="15" fill="rgb(232,211,20)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="783.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.01%)</title><rect x="97.9837%" y="757" width="0.0148%" height="15" fill="rgb(225,203,35)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="767.50"></text></g><g><title>do_futex (33 samples, 0.01%)</title><rect x="97.9837%" y="741" width="0.0148%" height="15" fill="rgb(215,211,44)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="751.50"></text></g><g><title>futex_wait (33 samples, 0.01%)</title><rect x="97.9837%" y="725" width="0.0148%" height="15" fill="rgb(248,213,26)" fg:x="218288" fg:w="33"/><text x="98.2337%" y="735.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.01%)</title><rect x="97.9841%" y="709" width="0.0144%" height="15" fill="rgb(214,23,52)" fg:x="218289" fg:w="32"/><text x="98.2341%" y="719.50"></text></g><g><title>schedule (31 samples, 0.01%)</title><rect x="97.9846%" y="693" width="0.0139%" height="15" fill="rgb(225,173,50)" fg:x="218290" fg:w="31"/><text x="98.2346%" y="703.50"></text></g><g><title>__schedule (31 samples, 0.01%)</title><rect x="97.9846%" y="677" width="0.0139%" height="15" fill="rgb(206,150,22)" fg:x="218290" fg:w="31"/><text x="98.2346%" y="687.50"></text></g><g><title>ObjectMonitor::enter (68 samples, 0.03%)</title><rect x="97.9684%" y="869" width="0.0305%" height="15" fill="rgb(239,64,23)" fg:x="218254" fg:w="68"/><text x="98.2184%" y="879.50"></text></g><g><title>os::PlatformEvent::park (64 samples, 0.03%)</title><rect x="97.9702%" y="853" width="0.0287%" height="15" fill="rgb(242,50,38)" fg:x="218258" fg:w="64"/><text x="98.2202%" y="863.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (70 samples, 0.03%)</title><rect x="97.9684%" y="885" width="0.0314%" height="15" fill="rgb(217,91,15)" fg:x="218254" fg:w="70"/><text x="98.2184%" y="895.50"></text></g><g><title>ClassFileParser::ClassFileParser (55 samples, 0.02%)</title><rect x="98.0420%" y="837" width="0.0247%" height="15" fill="rgb(230,172,6)" fg:x="218418" fg:w="55"/><text x="98.2920%" y="847.50"></text></g><g><title>ClassFileParser::parse_stream (55 samples, 0.02%)</title><rect x="98.0420%" y="821" width="0.0247%" height="15" fill="rgb(221,98,26)" fg:x="218418" fg:w="55"/><text x="98.2920%" y="831.50"></text></g><g><title>KlassFactory::create_from_stream (68 samples, 0.03%)</title><rect x="98.0420%" y="853" width="0.0305%" height="15" fill="rgb(227,210,45)" fg:x="218418" fg:w="68"/><text x="98.2920%" y="863.50"></text></g><g><title>SystemDictionary::parse_stream (91 samples, 0.04%)</title><rect x="98.0321%" y="869" width="0.0408%" height="15" fill="rgb(206,8,30)" fg:x="218396" fg:w="91"/><text x="98.2821%" y="879.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (96 samples, 0.04%)</title><rect x="98.0303%" y="885" width="0.0431%" height="15" fill="rgb(241,219,17)" fg:x="218392" fg:w="96"/><text x="98.2803%" y="895.50"></text></g><g><title>__pthread_cond_timedwait (27 samples, 0.01%)</title><rect x="98.0941%" y="853" width="0.0121%" height="15" fill="rgb(247,121,29)" fg:x="218534" fg:w="27"/><text x="98.3441%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.01%)</title><rect x="98.0941%" y="837" width="0.0121%" height="15" fill="rgb(219,169,49)" fg:x="218534" fg:w="27"/><text x="98.3441%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (27 samples, 0.01%)</title><rect x="98.0941%" y="821" width="0.0121%" height="15" fill="rgb(253,49,49)" fg:x="218534" fg:w="27"/><text x="98.3441%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.01%)</title><rect x="98.0945%" y="805" width="0.0117%" height="15" fill="rgb(217,178,3)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="815.50"></text></g><g><title>do_syscall_64 (26 samples, 0.01%)</title><rect x="98.0945%" y="789" width="0.0117%" height="15" fill="rgb(234,73,37)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="799.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.01%)</title><rect x="98.0945%" y="773" width="0.0117%" height="15" fill="rgb(250,98,22)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="783.50"></text></g><g><title>do_futex (26 samples, 0.01%)</title><rect x="98.0945%" y="757" width="0.0117%" height="15" fill="rgb(220,108,37)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="767.50"></text></g><g><title>futex_wait (26 samples, 0.01%)</title><rect x="98.0945%" y="741" width="0.0117%" height="15" fill="rgb(225,168,10)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="751.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.01%)</title><rect x="98.0945%" y="725" width="0.0117%" height="15" fill="rgb(247,215,21)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="735.50"></text></g><g><title>schedule (26 samples, 0.01%)</title><rect x="98.0945%" y="709" width="0.0117%" height="15" fill="rgb(253,189,31)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="719.50"></text></g><g><title>__schedule (26 samples, 0.01%)</title><rect x="98.0945%" y="693" width="0.0117%" height="15" fill="rgb(241,54,22)" fg:x="218535" fg:w="26"/><text x="98.3445%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (354 samples, 0.16%)</title><rect x="98.1233%" y="661" width="0.1589%" height="15" fill="rgb(211,87,4)" fg:x="218599" fg:w="354"/><text x="98.3733%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (345 samples, 0.15%)</title><rect x="98.1273%" y="645" width="0.1549%" height="15" fill="rgb(245,112,24)" fg:x="218608" fg:w="345"/><text x="98.3773%" y="655.50"></text></g><g><title>native_write_msr (344 samples, 0.15%)</title><rect x="98.1277%" y="629" width="0.1544%" height="15" fill="rgb(235,190,41)" fg:x="218609" fg:w="344"/><text x="98.3777%" y="639.50"></text></g><g><title>finish_task_switch (369 samples, 0.17%)</title><rect x="98.1210%" y="677" width="0.1656%" height="15" fill="rgb(214,89,8)" fg:x="218594" fg:w="369"/><text x="98.3710%" y="687.50"></text></g><g><title>futex_wait_queue_me (405 samples, 0.18%)</title><rect x="98.1107%" y="725" width="0.1818%" height="15" fill="rgb(249,155,35)" fg:x="218571" fg:w="405"/><text x="98.3607%" y="735.50"></text></g><g><title>schedule (397 samples, 0.18%)</title><rect x="98.1143%" y="709" width="0.1782%" height="15" fill="rgb(249,88,26)" fg:x="218579" fg:w="397"/><text x="98.3643%" y="719.50"></text></g><g><title>__schedule (397 samples, 0.18%)</title><rect x="98.1143%" y="693" width="0.1782%" height="15" fill="rgb(232,56,8)" fg:x="218579" fg:w="397"/><text x="98.3643%" y="703.50"></text></g><g><title>do_syscall_64 (414 samples, 0.19%)</title><rect x="98.1084%" y="789" width="0.1858%" height="15" fill="rgb(240,95,3)" fg:x="218566" fg:w="414"/><text x="98.3584%" y="799.50"></text></g><g><title>__x64_sys_futex (413 samples, 0.19%)</title><rect x="98.1089%" y="773" width="0.1854%" height="15" fill="rgb(222,44,28)" fg:x="218567" fg:w="413"/><text x="98.3589%" y="783.50"></text></g><g><title>do_futex (412 samples, 0.18%)</title><rect x="98.1093%" y="757" width="0.1849%" height="15" fill="rgb(234,16,30)" fg:x="218568" fg:w="412"/><text x="98.3593%" y="767.50"></text></g><g><title>futex_wait (411 samples, 0.18%)</title><rect x="98.1098%" y="741" width="0.1845%" height="15" fill="rgb(223,26,17)" fg:x="218569" fg:w="411"/><text x="98.3598%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (419 samples, 0.19%)</title><rect x="98.1084%" y="805" width="0.1881%" height="15" fill="rgb(239,187,47)" fg:x="218566" fg:w="419"/><text x="98.3584%" y="815.50"></text></g><g><title>__pthread_cond_wait (425 samples, 0.19%)</title><rect x="98.1062%" y="853" width="0.1908%" height="15" fill="rgb(247,102,50)" fg:x="218561" fg:w="425"/><text x="98.3562%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (425 samples, 0.19%)</title><rect x="98.1062%" y="837" width="0.1908%" height="15" fill="rgb(231,216,22)" fg:x="218561" fg:w="425"/><text x="98.3562%" y="847.50"></text></g><g><title>futex_wait_cancelable (424 samples, 0.19%)</title><rect x="98.1067%" y="821" width="0.1903%" height="15" fill="rgb(216,201,26)" fg:x="218562" fg:w="424"/><text x="98.3567%" y="831.50"></text></g><g><title>Parker::park (481 samples, 0.22%)</title><rect x="98.0869%" y="869" width="0.2159%" height="15" fill="rgb(214,186,23)" fg:x="218518" fg:w="481"/><text x="98.3369%" y="879.50"></text></g><g><title>Unsafe_Park (491 samples, 0.22%)</title><rect x="98.0833%" y="885" width="0.2204%" height="15" fill="rgb(235,184,4)" fg:x="218510" fg:w="491"/><text x="98.3333%" y="895.50"></text></g><g><title>ttwu_do_activate (44 samples, 0.02%)</title><rect x="98.3338%" y="725" width="0.0198%" height="15" fill="rgb(244,46,17)" fg:x="219068" fg:w="44"/><text x="98.5838%" y="735.50"></text></g><g><title>psi_task_change (23 samples, 0.01%)</title><rect x="98.3432%" y="709" width="0.0103%" height="15" fill="rgb(248,74,46)" fg:x="219089" fg:w="23"/><text x="98.5932%" y="719.50"></text></g><g><title>do_syscall_64 (100 samples, 0.04%)</title><rect x="98.3154%" y="821" width="0.0449%" height="15" fill="rgb(243,79,5)" fg:x="219027" fg:w="100"/><text x="98.5654%" y="831.50"></text></g><g><title>__x64_sys_futex (100 samples, 0.04%)</title><rect x="98.3154%" y="805" width="0.0449%" height="15" fill="rgb(213,148,1)" fg:x="219027" fg:w="100"/><text x="98.5654%" y="815.50"></text></g><g><title>do_futex (100 samples, 0.04%)</title><rect x="98.3154%" y="789" width="0.0449%" height="15" fill="rgb(221,30,0)" fg:x="219027" fg:w="100"/><text x="98.5654%" y="799.50"></text></g><g><title>futex_wake (99 samples, 0.04%)</title><rect x="98.3158%" y="773" width="0.0444%" height="15" fill="rgb(207,85,29)" fg:x="219028" fg:w="99"/><text x="98.5658%" y="783.50"></text></g><g><title>wake_up_q (82 samples, 0.04%)</title><rect x="98.3235%" y="757" width="0.0368%" height="15" fill="rgb(239,31,46)" fg:x="219045" fg:w="82"/><text x="98.5735%" y="767.50"></text></g><g><title>try_to_wake_up (82 samples, 0.04%)</title><rect x="98.3235%" y="741" width="0.0368%" height="15" fill="rgb(219,6,1)" fg:x="219045" fg:w="82"/><text x="98.5735%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (124 samples, 0.06%)</title><rect x="98.3154%" y="837" width="0.0557%" height="15" fill="rgb(229,90,29)" fg:x="219027" fg:w="124"/><text x="98.5654%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (24 samples, 0.01%)</title><rect x="98.3603%" y="821" width="0.0108%" height="15" fill="rgb(242,201,42)" fg:x="219127" fg:w="24"/><text x="98.6103%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (24 samples, 0.01%)</title><rect x="98.3603%" y="805" width="0.0108%" height="15" fill="rgb(243,80,54)" fg:x="219127" fg:w="24"/><text x="98.6103%" y="815.50"></text></g><g><title>schedule (24 samples, 0.01%)</title><rect x="98.3603%" y="789" width="0.0108%" height="15" fill="rgb(223,166,15)" fg:x="219127" fg:w="24"/><text x="98.6103%" y="799.50"></text></g><g><title>__schedule (24 samples, 0.01%)</title><rect x="98.3603%" y="773" width="0.0108%" height="15" fill="rgb(238,78,27)" fg:x="219127" fg:w="24"/><text x="98.6103%" y="783.50"></text></g><g><title>__pthread_cond_signal (133 samples, 0.06%)</title><rect x="98.3118%" y="869" width="0.0597%" height="15" fill="rgb(235,28,43)" fg:x="219019" fg:w="133"/><text x="98.5618%" y="879.50"></text></g><g><title>futex_wake (129 samples, 0.06%)</title><rect x="98.3136%" y="853" width="0.0579%" height="15" fill="rgb(240,210,28)" fg:x="219023" fg:w="129"/><text x="98.5636%" y="863.50"></text></g><g><title>Unsafe_Unpark (150 samples, 0.07%)</title><rect x="98.3051%" y="885" width="0.0673%" height="15" fill="rgb(253,6,46)" fg:x="219004" fg:w="150"/><text x="98.5551%" y="895.50"></text></g><g><title>handle_edge_irq (25 samples, 0.01%)</title><rect x="98.3746%" y="853" width="0.0112%" height="15" fill="rgb(250,159,47)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="863.50"></text></g><g><title>handle_irq_event (25 samples, 0.01%)</title><rect x="98.3746%" y="837" width="0.0112%" height="15" fill="rgb(216,139,2)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="847.50"></text></g><g><title>__handle_irq_event_percpu (25 samples, 0.01%)</title><rect x="98.3746%" y="821" width="0.0112%" height="15" fill="rgb(221,124,44)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="831.50"></text></g><g><title>nvme_irq (25 samples, 0.01%)</title><rect x="98.3746%" y="805" width="0.0112%" height="15" fill="rgb(205,37,22)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="815.50"></text></g><g><title>nvme_process_cq (25 samples, 0.01%)</title><rect x="98.3746%" y="789" width="0.0112%" height="15" fill="rgb(250,55,8)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="799.50"></text></g><g><title>blk_mq_end_request (25 samples, 0.01%)</title><rect x="98.3746%" y="773" width="0.0112%" height="15" fill="rgb(215,83,48)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="783.50"></text></g><g><title>blk_update_request (25 samples, 0.01%)</title><rect x="98.3746%" y="757" width="0.0112%" height="15" fill="rgb(253,2,32)" fg:x="219159" fg:w="25"/><text x="98.6246%" y="767.50"></text></g><g><title>asm_common_interrupt (39 samples, 0.02%)</title><rect x="98.3746%" y="885" width="0.0175%" height="15" fill="rgb(236,67,28)" fg:x="219159" fg:w="39"/><text x="98.6246%" y="895.50"></text></g><g><title>common_interrupt (39 samples, 0.02%)</title><rect x="98.3746%" y="869" width="0.0175%" height="15" fill="rgb(252,55,15)" fg:x="219159" fg:w="39"/><text x="98.6246%" y="879.50"></text></g><g><title>tick_sched_timer (40 samples, 0.02%)</title><rect x="98.4092%" y="805" width="0.0180%" height="15" fill="rgb(243,173,17)" fg:x="219236" fg:w="40"/><text x="98.6592%" y="815.50"></text></g><g><title>tick_sched_handle (39 samples, 0.02%)</title><rect x="98.4096%" y="789" width="0.0175%" height="15" fill="rgb(215,212,13)" fg:x="219237" fg:w="39"/><text x="98.6596%" y="799.50"></text></g><g><title>update_process_times (36 samples, 0.02%)</title><rect x="98.4110%" y="773" width="0.0162%" height="15" fill="rgb(253,176,6)" fg:x="219240" fg:w="36"/><text x="98.6610%" y="783.50"></text></g><g><title>scheduler_tick (30 samples, 0.01%)</title><rect x="98.4137%" y="757" width="0.0135%" height="15" fill="rgb(236,105,26)" fg:x="219246" fg:w="30"/><text x="98.6637%" y="767.50"></text></g><g><title>__hrtimer_run_queues (55 samples, 0.02%)</title><rect x="98.4052%" y="821" width="0.0247%" height="15" fill="rgb(239,226,32)" fg:x="219227" fg:w="55"/><text x="98.6552%" y="831.50"></text></g><g><title>hrtimer_interrupt (62 samples, 0.03%)</title><rect x="98.4047%" y="837" width="0.0278%" height="15" fill="rgb(236,104,51)" fg:x="219226" fg:w="62"/><text x="98.6547%" y="847.50"></text></g><g><title>__sysvec_apic_timer_interrupt (63 samples, 0.03%)</title><rect x="98.4047%" y="853" width="0.0283%" height="15" fill="rgb(220,172,33)" fg:x="219226" fg:w="63"/><text x="98.6547%" y="863.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (119 samples, 0.05%)</title><rect x="98.3980%" y="885" width="0.0534%" height="15" fill="rgb(224,182,25)" fg:x="219211" fg:w="119"/><text x="98.6480%" y="895.50"></text></g><g><title>sysvec_apic_timer_interrupt (104 samples, 0.05%)</title><rect x="98.4047%" y="869" width="0.0467%" height="15" fill="rgb(236,184,24)" fg:x="219226" fg:w="104"/><text x="98.6547%" y="879.50"></text></g><g><title>irq_exit_rcu (40 samples, 0.02%)</title><rect x="98.4334%" y="853" width="0.0180%" height="15" fill="rgb(241,221,14)" fg:x="219290" fg:w="40"/><text x="98.6834%" y="863.50"></text></g><g><title>do_softirq_own_stack (38 samples, 0.02%)</title><rect x="98.4343%" y="837" width="0.0171%" height="15" fill="rgb(227,146,5)" fg:x="219292" fg:w="38"/><text x="98.6843%" y="847.50"></text></g><g><title>asm_call_sysvec_on_stack (38 samples, 0.02%)</title><rect x="98.4343%" y="821" width="0.0171%" height="15" fill="rgb(214,15,23)" fg:x="219292" fg:w="38"/><text x="98.6843%" y="831.50"></text></g><g><title>__softirqentry_text_start (38 samples, 0.02%)</title><rect x="98.4343%" y="805" width="0.0171%" height="15" fill="rgb(233,157,31)" fg:x="219292" fg:w="38"/><text x="98.6843%" y="815.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="98.4599%" y="805" width="0.0198%" height="15" fill="rgb(211,27,52)" fg:x="219349" fg:w="44"/><text x="98.7099%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.02%)</title><rect x="98.4604%" y="789" width="0.0193%" height="15" fill="rgb(212,223,15)" fg:x="219350" fg:w="43"/><text x="98.7104%" y="799.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.02%)</title><rect x="98.4608%" y="773" width="0.0189%" height="15" fill="rgb(254,211,0)" fg:x="219351" fg:w="42"/><text x="98.7108%" y="783.50"></text></g><g><title>native_write_msr (42 samples, 0.02%)</title><rect x="98.4608%" y="757" width="0.0189%" height="15" fill="rgb(205,43,38)" fg:x="219351" fg:w="42"/><text x="98.7108%" y="767.50"></text></g><g><title>schedule (69 samples, 0.03%)</title><rect x="98.4568%" y="837" width="0.0310%" height="15" fill="rgb(242,206,46)" fg:x="219342" fg:w="69"/><text x="98.7068%" y="847.50"></text></g><g><title>__schedule (69 samples, 0.03%)</title><rect x="98.4568%" y="821" width="0.0310%" height="15" fill="rgb(220,221,12)" fg:x="219342" fg:w="69"/><text x="98.7068%" y="831.50"></text></g><g><title>irqentry_exit_to_user_mode (77 samples, 0.03%)</title><rect x="98.4559%" y="869" width="0.0346%" height="15" fill="rgb(217,156,35)" fg:x="219340" fg:w="77"/><text x="98.7059%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (77 samples, 0.03%)</title><rect x="98.4559%" y="853" width="0.0346%" height="15" fill="rgb(207,181,49)" fg:x="219340" fg:w="77"/><text x="98.7059%" y="863.50"></text></g><g><title>asm_sysvec_reschedule_ipi (79 samples, 0.04%)</title><rect x="98.4559%" y="885" width="0.0355%" height="15" fill="rgb(235,103,47)" fg:x="219340" fg:w="79"/><text x="98.7059%" y="895.50"></text></g><g><title>__sysvec_thermal (46 samples, 0.02%)</title><rect x="98.4913%" y="853" width="0.0206%" height="15" fill="rgb(222,63,28)" fg:x="219419" fg:w="46"/><text x="98.7413%" y="863.50"></text></g><g><title>intel_thermal_interrupt (45 samples, 0.02%)</title><rect x="98.4918%" y="837" width="0.0202%" height="15" fill="rgb(244,137,21)" fg:x="219420" fg:w="45"/><text x="98.7418%" y="847.50"></text></g><g><title>asm_sysvec_thermal (49 samples, 0.02%)</title><rect x="98.4913%" y="885" width="0.0220%" height="15" fill="rgb(228,35,27)" fg:x="219419" fg:w="49"/><text x="98.7413%" y="895.50"></text></g><g><title>sysvec_thermal (49 samples, 0.02%)</title><rect x="98.4913%" y="869" width="0.0220%" height="15" fill="rgb(226,191,41)" fg:x="219419" fg:w="49"/><text x="98.7413%" y="879.50"></text></g><g><title>btrfs_search_slot (25 samples, 0.01%)</title><rect x="98.5510%" y="709" width="0.0112%" height="15" fill="rgb(210,154,3)" fg:x="219552" fg:w="25"/><text x="98.8010%" y="719.50"></text></g><g><title>btrfs_insert_empty_items (26 samples, 0.01%)</title><rect x="98.5510%" y="725" width="0.0117%" height="15" fill="rgb(216,60,49)" fg:x="219552" fg:w="26"/><text x="98.8010%" y="735.50"></text></g><g><title>btrfs_new_inode (31 samples, 0.01%)</title><rect x="98.5510%" y="741" width="0.0139%" height="15" fill="rgb(226,17,20)" fg:x="219552" fg:w="31"/><text x="98.8010%" y="751.50"></text></g><g><title>btrfs_create (43 samples, 0.02%)</title><rect x="98.5465%" y="757" width="0.0193%" height="15" fill="rgb(206,115,35)" fg:x="219542" fg:w="43"/><text x="98.7965%" y="767.50"></text></g><g><title>link_path_walk.part.0 (26 samples, 0.01%)</title><rect x="98.5748%" y="757" width="0.0117%" height="15" fill="rgb(227,88,1)" fg:x="219605" fg:w="26"/><text x="98.8248%" y="767.50"></text></g><g><title>do_filp_open (112 samples, 0.05%)</title><rect x="98.5380%" y="789" width="0.0503%" height="15" fill="rgb(230,222,24)" fg:x="219523" fg:w="112"/><text x="98.7880%" y="799.50"></text></g><g><title>path_openat (109 samples, 0.05%)</title><rect x="98.5394%" y="773" width="0.0489%" height="15" fill="rgb(214,124,32)" fg:x="219526" fg:w="109"/><text x="98.7894%" y="783.50"></text></g><g><title>__libc_open64 (124 samples, 0.06%)</title><rect x="98.5358%" y="869" width="0.0557%" height="15" fill="rgb(240,41,36)" fg:x="219518" fg:w="124"/><text x="98.7858%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (122 samples, 0.05%)</title><rect x="98.5367%" y="853" width="0.0548%" height="15" fill="rgb(221,17,52)" fg:x="219520" fg:w="122"/><text x="98.7867%" y="863.50"></text></g><g><title>do_syscall_64 (122 samples, 0.05%)</title><rect x="98.5367%" y="837" width="0.0548%" height="15" fill="rgb(252,70,16)" fg:x="219520" fg:w="122"/><text x="98.7867%" y="847.50"></text></g><g><title>__x64_sys_openat (122 samples, 0.05%)</title><rect x="98.5367%" y="821" width="0.0548%" height="15" fill="rgb(250,177,4)" fg:x="219520" fg:w="122"/><text x="98.7867%" y="831.50"></text></g><g><title>do_sys_openat2 (121 samples, 0.05%)</title><rect x="98.5371%" y="805" width="0.0543%" height="15" fill="rgb(240,188,47)" fg:x="219521" fg:w="121"/><text x="98.7871%" y="815.50"></text></g><g><title>fileOpen (152 samples, 0.07%)</title><rect x="98.5259%" y="885" width="0.0682%" height="15" fill="rgb(215,92,12)" fg:x="219496" fg:w="152"/><text x="98.7759%" y="895.50"></text></g><g><title>jni_IsAssignableFrom (34 samples, 0.02%)</title><rect x="98.6004%" y="885" width="0.0153%" height="15" fill="rgb(242,110,29)" fg:x="219662" fg:w="34"/><text x="98.8504%" y="895.50"></text></g><g><title>[[vdso]] (54 samples, 0.02%)</title><rect x="98.6583%" y="837" width="0.0242%" height="15" fill="rgb(208,211,26)" fg:x="219791" fg:w="54"/><text x="98.9083%" y="847.50"></text></g><g><title>os::javaTimeNanos (147 samples, 0.07%)</title><rect x="98.6170%" y="885" width="0.0660%" height="15" fill="rgb(244,147,6)" fg:x="219699" fg:w="147"/><text x="98.8670%" y="895.50"></text></g><g><title>__GI___clock_gettime (132 samples, 0.06%)</title><rect x="98.6238%" y="869" width="0.0593%" height="15" fill="rgb(211,130,42)" fg:x="219714" fg:w="132"/><text x="98.8738%" y="879.50"></text></g><g><title>__vdso_clock_gettime (97 samples, 0.04%)</title><rect x="98.6395%" y="853" width="0.0435%" height="15" fill="rgb(220,63,1)" fg:x="219749" fg:w="97"/><text x="98.8895%" y="863.50"></text></g><g><title>[perf-945576.map] (62,944 samples, 28.25%)</title><rect x="70.4300%" y="901" width="28.2539%" height="15" fill="rgb(241,212,30)" fg:x="156904" fg:w="62944"/><text x="70.6800%" y="911.50">[perf-945576.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (27 samples, 0.01%)</title><rect x="98.7041%" y="869" width="0.0121%" height="15" fill="rgb(233,153,17)" fg:x="219893" fg:w="27"/><text x="98.9541%" y="879.50"></text></g><g><title>SharedRuntime::find_callee_method (28 samples, 0.01%)</title><rect x="98.7041%" y="885" width="0.0126%" height="15" fill="rgb(236,3,10)" fg:x="219893" fg:w="28"/><text x="98.9541%" y="895.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (34 samples, 0.02%)</title><rect x="98.7167%" y="885" width="0.0153%" height="15" fill="rgb(232,41,21)" fg:x="219921" fg:w="34"/><text x="98.9667%" y="895.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (34 samples, 0.02%)</title><rect x="98.7167%" y="869" width="0.0153%" height="15" fill="rgb(206,63,51)" fg:x="219921" fg:w="34"/><text x="98.9667%" y="879.50"></text></g><g><title>Bytecode_invoke::static_target (39 samples, 0.02%)</title><rect x="98.7759%" y="853" width="0.0175%" height="15" fill="rgb(250,214,3)" fg:x="220053" fg:w="39"/><text x="99.0259%" y="863.50"></text></g><g><title>LinkResolver::resolve_method_statically (39 samples, 0.02%)</title><rect x="98.7759%" y="837" width="0.0175%" height="15" fill="rgb(254,89,27)" fg:x="220053" fg:w="39"/><text x="99.0259%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (34 samples, 0.02%)</title><rect x="98.7939%" y="853" width="0.0153%" height="15" fill="rgb(249,41,14)" fg:x="220093" fg:w="34"/><text x="99.0439%" y="863.50"></text></g><g><title>OopMapStream::find_next (32 samples, 0.01%)</title><rect x="98.8275%" y="821" width="0.0144%" height="15" fill="rgb(221,196,51)" fg:x="220168" fg:w="32"/><text x="99.0775%" y="831.50"></text></g><g><title>frame::sender (57 samples, 0.03%)</title><rect x="98.8172%" y="853" width="0.0256%" height="15" fill="rgb(214,116,26)" fg:x="220145" fg:w="57"/><text x="99.0672%" y="863.50"></text></g><g><title>OopMapSet::update_register_map (53 samples, 0.02%)</title><rect x="98.8190%" y="837" width="0.0238%" height="15" fill="rgb(236,67,7)" fg:x="220149" fg:w="53"/><text x="99.0690%" y="847.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (156 samples, 0.07%)</title><rect x="98.7737%" y="869" width="0.0700%" height="15" fill="rgb(253,179,32)" fg:x="220048" fg:w="156"/><text x="99.0237%" y="879.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (250 samples, 0.11%)</title><rect x="98.7364%" y="885" width="0.1122%" height="15" fill="rgb(218,33,15)" fg:x="219965" fg:w="250"/><text x="98.9864%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (213 samples, 0.10%)</title><rect x="98.8599%" y="613" width="0.0956%" height="15" fill="rgb(217,202,41)" fg:x="220240" fg:w="213"/><text x="99.1099%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (211 samples, 0.09%)</title><rect x="98.8608%" y="597" width="0.0947%" height="15" fill="rgb(234,133,5)" fg:x="220242" fg:w="211"/><text x="99.1108%" y="607.50"></text></g><g><title>native_write_msr (210 samples, 0.09%)</title><rect x="98.8612%" y="581" width="0.0943%" height="15" fill="rgb(240,47,40)" fg:x="220243" fg:w="210"/><text x="99.1112%" y="591.50"></text></g><g><title>finish_task_switch (222 samples, 0.10%)</title><rect x="98.8576%" y="629" width="0.0996%" height="15" fill="rgb(234,166,26)" fg:x="220235" fg:w="222"/><text x="99.1076%" y="639.50"></text></g><g><title>futex_wait_queue_me (232 samples, 0.10%)</title><rect x="98.8545%" y="677" width="0.1041%" height="15" fill="rgb(244,125,51)" fg:x="220228" fg:w="232"/><text x="99.1045%" y="687.50"></text></g><g><title>schedule (229 samples, 0.10%)</title><rect x="98.8558%" y="661" width="0.1028%" height="15" fill="rgb(229,171,11)" fg:x="220231" fg:w="229"/><text x="99.1058%" y="671.50"></text></g><g><title>__schedule (228 samples, 0.10%)</title><rect x="98.8563%" y="645" width="0.1023%" height="15" fill="rgb(224,38,45)" fg:x="220232" fg:w="228"/><text x="99.1063%" y="655.50"></text></g><g><title>do_syscall_64 (238 samples, 0.11%)</title><rect x="98.8522%" y="741" width="0.1068%" height="15" fill="rgb(237,27,7)" fg:x="220223" fg:w="238"/><text x="99.1022%" y="751.50"></text></g><g><title>__x64_sys_futex (237 samples, 0.11%)</title><rect x="98.8527%" y="725" width="0.1064%" height="15" fill="rgb(216,52,7)" fg:x="220224" fg:w="237"/><text x="99.1027%" y="735.50"></text></g><g><title>do_futex (236 samples, 0.11%)</title><rect x="98.8531%" y="709" width="0.1059%" height="15" fill="rgb(243,11,11)" fg:x="220225" fg:w="236"/><text x="99.1031%" y="719.50"></text></g><g><title>futex_wait (234 samples, 0.11%)</title><rect x="98.8540%" y="693" width="0.1050%" height="15" fill="rgb(253,167,20)" fg:x="220227" fg:w="234"/><text x="99.1040%" y="703.50"></text></g><g><title>__pthread_cond_wait (241 samples, 0.11%)</title><rect x="98.8518%" y="805" width="0.1082%" height="15" fill="rgb(215,207,5)" fg:x="220222" fg:w="241"/><text x="99.1018%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (241 samples, 0.11%)</title><rect x="98.8518%" y="789" width="0.1082%" height="15" fill="rgb(252,127,31)" fg:x="220222" fg:w="241"/><text x="99.1018%" y="799.50"></text></g><g><title>futex_wait_cancelable (240 samples, 0.11%)</title><rect x="98.8522%" y="773" width="0.1077%" height="15" fill="rgb(209,106,27)" fg:x="220223" fg:w="240"/><text x="99.1022%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (240 samples, 0.11%)</title><rect x="98.8522%" y="757" width="0.1077%" height="15" fill="rgb(214,220,18)" fg:x="220223" fg:w="240"/><text x="99.1022%" y="767.50"></text></g><g><title>Monitor::lock_without_safepoint_check (250 samples, 0.11%)</title><rect x="98.8491%" y="853" width="0.1122%" height="15" fill="rgb(237,89,12)" fg:x="220216" fg:w="250"/><text x="99.0991%" y="863.50"></text></g><g><title>Monitor::ILock (250 samples, 0.11%)</title><rect x="98.8491%" y="837" width="0.1122%" height="15" fill="rgb(209,167,36)" fg:x="220216" fg:w="250"/><text x="99.0991%" y="847.50"></text></g><g><title>os::PlatformEvent::park (246 samples, 0.11%)</title><rect x="98.8509%" y="821" width="0.1104%" height="15" fill="rgb(243,45,22)" fg:x="220220" fg:w="246"/><text x="99.1009%" y="831.50"></text></g><g><title>SafepointSynchronize::block (267 samples, 0.12%)</title><rect x="98.8491%" y="869" width="0.1198%" height="15" fill="rgb(239,2,46)" fg:x="220216" fg:w="267"/><text x="99.0991%" y="879.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (271 samples, 0.12%)</title><rect x="98.8486%" y="885" width="0.1216%" height="15" fill="rgb(241,101,0)" fg:x="220215" fg:w="271"/><text x="99.0986%" y="895.50"></text></g><g><title>entry_SYSCALL_64 (23 samples, 0.01%)</title><rect x="99.0264%" y="821" width="0.0103%" height="15" fill="rgb(244,34,31)" fg:x="220611" fg:w="23"/><text x="99.2764%" y="831.50"></text></g><g><title>__fget_light (53 samples, 0.02%)</title><rect x="99.0475%" y="757" width="0.0238%" height="15" fill="rgb(248,23,22)" fg:x="220658" fg:w="53"/><text x="99.2975%" y="767.50"></text></g><g><title>__fget_files (33 samples, 0.01%)</title><rect x="99.0565%" y="741" width="0.0148%" height="15" fill="rgb(218,27,48)" fg:x="220678" fg:w="33"/><text x="99.3065%" y="751.50"></text></g><g><title>__fdget_pos (66 samples, 0.03%)</title><rect x="99.0461%" y="773" width="0.0296%" height="15" fill="rgb(232,78,1)" fg:x="220655" fg:w="66"/><text x="99.2961%" y="783.50"></text></g><g><title>copy_user_enhanced_fast_string (579 samples, 0.26%)</title><rect x="99.1588%" y="709" width="0.2599%" height="15" fill="rgb(233,169,12)" fg:x="220906" fg:w="579"/><text x="99.4088%" y="719.50"></text></g><g><title>copy_page_to_iter (624 samples, 0.28%)</title><rect x="99.1395%" y="725" width="0.2801%" height="15" fill="rgb(225,222,54)" fg:x="220863" fg:w="624"/><text x="99.3895%" y="735.50"></text></g><g><title>pagecache_get_page (153 samples, 0.07%)</title><rect x="99.4290%" y="725" width="0.0687%" height="15" fill="rgb(245,126,29)" fg:x="221508" fg:w="153"/><text x="99.6790%" y="735.50"></text></g><g><title>find_get_entry (134 samples, 0.06%)</title><rect x="99.4376%" y="709" width="0.0601%" height="15" fill="rgb(241,63,48)" fg:x="221527" fg:w="134"/><text x="99.6876%" y="719.50"></text></g><g><title>xas_load (70 samples, 0.03%)</title><rect x="99.4663%" y="693" width="0.0314%" height="15" fill="rgb(235,126,38)" fg:x="221591" fg:w="70"/><text x="99.7163%" y="703.50"></text></g><g><title>xas_start (23 samples, 0.01%)</title><rect x="99.4874%" y="677" width="0.0103%" height="15" fill="rgb(232,96,49)" fg:x="221638" fg:w="23"/><text x="99.7374%" y="687.50"></text></g><g><title>atime_needs_update (29 samples, 0.01%)</title><rect x="99.5000%" y="709" width="0.0130%" height="15" fill="rgb(211,146,40)" fg:x="221666" fg:w="29"/><text x="99.7500%" y="719.50"></text></g><g><title>btrfs_dirty_inode (26 samples, 0.01%)</title><rect x="99.5130%" y="709" width="0.0117%" height="15" fill="rgb(247,93,44)" fg:x="221695" fg:w="26"/><text x="99.7630%" y="719.50"></text></g><g><title>touch_atime (61 samples, 0.03%)</title><rect x="99.4977%" y="725" width="0.0274%" height="15" fill="rgb(251,41,49)" fg:x="221661" fg:w="61"/><text x="99.7477%" y="735.50"></text></g><g><title>generic_file_buffered_read (923 samples, 0.41%)</title><rect x="99.1117%" y="741" width="0.4143%" height="15" fill="rgb(218,155,12)" fg:x="220801" fg:w="923"/><text x="99.3617%" y="751.50"></text></g><g><title>new_sync_read (940 samples, 0.42%)</title><rect x="99.1058%" y="757" width="0.4219%" height="15" fill="rgb(221,161,30)" fg:x="220788" fg:w="940"/><text x="99.3558%" y="767.50"></text></g><g><title>ksys_read (1,121 samples, 0.50%)</title><rect x="99.0412%" y="789" width="0.5032%" height="15" fill="rgb(221,179,11)" fg:x="220644" fg:w="1121"/><text x="99.2912%" y="799.50"></text></g><g><title>vfs_read (1,030 samples, 0.46%)</title><rect x="99.0821%" y="773" width="0.4623%" height="15" fill="rgb(224,170,48)" fg:x="220735" fg:w="1030"/><text x="99.3321%" y="783.50"></text></g><g><title>security_file_permission (32 samples, 0.01%)</title><rect x="99.5300%" y="757" width="0.0144%" height="15" fill="rgb(223,117,5)" fg:x="221733" fg:w="32"/><text x="99.7800%" y="767.50"></text></g><g><title>apparmor_file_permission (26 samples, 0.01%)</title><rect x="99.5327%" y="741" width="0.0117%" height="15" fill="rgb(209,52,20)" fg:x="221739" fg:w="26"/><text x="99.7827%" y="751.50"></text></g><g><title>do_syscall_64 (1,137 samples, 0.51%)</title><rect x="99.0390%" y="805" width="0.5104%" height="15" fill="rgb(209,19,41)" fg:x="220639" fg:w="1137"/><text x="99.2890%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,161 samples, 0.52%)</title><rect x="99.0367%" y="821" width="0.5211%" height="15" fill="rgb(210,177,12)" fg:x="220634" fg:w="1161"/><text x="99.2867%" y="831.50"></text></g><g><title>__libc_read (1,237 samples, 0.56%)</title><rect x="99.0084%" y="853" width="0.5553%" height="15" fill="rgb(211,159,37)" fg:x="220571" fg:w="1237"/><text x="99.2584%" y="863.50"></text></g><g><title>__libc_read (1,236 samples, 0.55%)</title><rect x="99.0089%" y="837" width="0.5548%" height="15" fill="rgb(209,20,2)" fg:x="220572" fg:w="1236"/><text x="99.2589%" y="847.50"></text></g><g><title>handleRead (1,251 samples, 0.56%)</title><rect x="99.0057%" y="869" width="0.5615%" height="15" fill="rgb(244,3,46)" fg:x="220565" fg:w="1251"/><text x="99.2557%" y="879.50"></text></g><g><title>jni_GetArrayLength (47 samples, 0.02%)</title><rect x="99.5673%" y="869" width="0.0211%" height="15" fill="rgb(220,94,38)" fg:x="221816" fg:w="47"/><text x="99.8173%" y="879.50"></text></g><g><title>ThreadStateTransition::transition_from_native (28 samples, 0.01%)</title><rect x="99.5758%" y="853" width="0.0126%" height="15" fill="rgb(253,14,31)" fg:x="221835" fg:w="28"/><text x="99.8258%" y="863.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (26 samples, 0.01%)</title><rect x="99.6023%" y="853" width="0.0117%" height="15" fill="rgb(234,176,13)" fg:x="221894" fg:w="26"/><text x="99.8523%" y="863.50"></text></g><g><title>JNIHandles::make_local (35 samples, 0.02%)</title><rect x="99.6238%" y="853" width="0.0157%" height="15" fill="rgb(218,62,25)" fg:x="221942" fg:w="35"/><text x="99.8738%" y="863.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (24 samples, 0.01%)</title><rect x="99.6400%" y="853" width="0.0108%" height="15" fill="rgb(216,124,40)" fg:x="221978" fg:w="24"/><text x="99.8900%" y="863.50"></text></g><g><title>jni_GetObjectField (158 samples, 0.07%)</title><rect x="99.5884%" y="869" width="0.0709%" height="15" fill="rgb(228,170,12)" fg:x="221863" fg:w="158"/><text x="99.8384%" y="879.50"></text></g><g><title>[libc-2.31.so] (231 samples, 0.10%)</title><rect x="99.6817%" y="853" width="0.1037%" height="15" fill="rgb(231,226,5)" fg:x="222071" fg:w="231"/><text x="99.9317%" y="863.50"></text></g><g><title>readBytes (1,788 samples, 0.80%)</title><rect x="98.9905%" y="885" width="0.8026%" height="15" fill="rgb(237,122,22)" fg:x="220531" fg:w="1788"/><text x="99.2405%" y="895.50"></text></g><g><title>jni_SetByteArrayRegion (298 samples, 0.13%)</title><rect x="99.6593%" y="869" width="0.1338%" height="15" fill="rgb(209,185,25)" fg:x="222021" fg:w="298"/><text x="99.9093%" y="879.50"></text></g><g><title>[unknown] (2,488 samples, 1.12%)</title><rect x="98.6839%" y="901" width="1.1168%" height="15" fill="rgb(228,200,32)" fg:x="219848" fg:w="2488"/><text x="98.9339%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (79 samples, 0.04%)</title><rect x="99.8061%" y="837" width="0.0355%" height="15" fill="rgb(217,140,10)" fg:x="222348" fg:w="79"/><text x="100.0561%" y="847.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (78 samples, 0.04%)</title><rect x="99.8065%" y="821" width="0.0350%" height="15" fill="rgb(253,17,24)" fg:x="222349" fg:w="78"/><text x="100.0565%" y="831.50"></text></g><g><title>native_write_msr (78 samples, 0.04%)</title><rect x="99.8065%" y="805" width="0.0350%" height="15" fill="rgb(212,61,6)" fg:x="222349" fg:w="78"/><text x="100.0565%" y="815.50"></text></g><g><title>schedule_tail (83 samples, 0.04%)</title><rect x="99.8052%" y="869" width="0.0373%" height="15" fill="rgb(205,14,25)" fg:x="222346" fg:w="83"/><text x="100.0552%" y="879.50"></text></g><g><title>finish_task_switch (83 samples, 0.04%)</title><rect x="99.8052%" y="853" width="0.0373%" height="15" fill="rgb(232,69,41)" fg:x="222346" fg:w="83"/><text x="100.0552%" y="863.50"></text></g><g><title>ret_from_fork (85 samples, 0.04%)</title><rect x="99.8047%" y="885" width="0.0382%" height="15" fill="rgb(241,106,47)" fg:x="222345" fg:w="85"/><text x="100.0547%" y="895.50"></text></g><g><title>JavaThread::exit (23 samples, 0.01%)</title><rect x="99.8608%" y="821" width="0.0103%" height="15" fill="rgb(210,213,53)" fg:x="222470" fg:w="23"/><text x="100.1108%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (25 samples, 0.01%)</title><rect x="99.8608%" y="837" width="0.0112%" height="15" fill="rgb(253,175,27)" fg:x="222470" fg:w="25"/><text x="100.1108%" y="847.50"></text></g><g><title>Thread::call_run (35 samples, 0.02%)</title><rect x="99.8568%" y="853" width="0.0157%" height="15" fill="rgb(211,171,24)" fg:x="222461" fg:w="35"/><text x="100.1068%" y="863.50"></text></g><g><title>__GI___clone (167 samples, 0.07%)</title><rect x="99.8007%" y="901" width="0.0750%" height="15" fill="rgb(229,80,7)" fg:x="222336" fg:w="167"/><text x="100.0507%" y="911.50"></text></g><g><title>start_thread (73 samples, 0.03%)</title><rect x="99.8429%" y="885" width="0.0328%" height="15" fill="rgb(212,46,39)" fg:x="222430" fg:w="73"/><text x="100.0929%" y="895.50"></text></g><g><title>thread_native_entry (62 samples, 0.03%)</title><rect x="99.8478%" y="869" width="0.0278%" height="15" fill="rgb(240,80,45)" fg:x="222441" fg:w="62"/><text x="100.0978%" y="879.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (35 samples, 0.02%)</title><rect x="99.9044%" y="901" width="0.0157%" height="15" fill="rgb(253,177,40)" fg:x="222567" fg:w="35"/><text x="100.1544%" y="911.50"></text></g><g><title>skyframe-evalua (94,458 samples, 42.40%)</title><rect x="57.5303%" y="917" width="42.3997%" height="15" fill="rgb(249,200,15)" fg:x="128166" fg:w="94458"/><text x="57.7803%" y="927.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (64 samples, 0.03%)</title><rect x="99.9583%" y="661" width="0.0287%" height="15" fill="rgb(217,78,26)" fg:x="222687" fg:w="64"/><text x="100.2083%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.03%)</title><rect x="99.9583%" y="645" width="0.0287%" height="15" fill="rgb(254,151,32)" fg:x="222687" fg:w="64"/><text x="100.2083%" y="655.50"></text></g><g><title>native_write_msr (64 samples, 0.03%)</title><rect x="99.9583%" y="629" width="0.0287%" height="15" fill="rgb(226,165,27)" fg:x="222687" fg:w="64"/><text x="100.2083%" y="639.50"></text></g><g><title>__pthread_cond_wait (71 samples, 0.03%)</title><rect x="99.9560%" y="853" width="0.0319%" height="15" fill="rgb(250,206,4)" fg:x="222682" fg:w="71"/><text x="100.2060%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (71 samples, 0.03%)</title><rect x="99.9560%" y="837" width="0.0319%" height="15" fill="rgb(231,229,27)" fg:x="222682" fg:w="71"/><text x="100.2060%" y="847.50"></text></g><g><title>futex_wait_cancelable (71 samples, 0.03%)</title><rect x="99.9560%" y="821" width="0.0319%" height="15" fill="rgb(239,217,8)" fg:x="222682" fg:w="71"/><text x="100.2060%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.03%)</title><rect x="99.9565%" y="805" width="0.0314%" height="15" fill="rgb(225,204,27)" fg:x="222683" fg:w="70"/><text x="100.2065%" y="815.50"></text></g><g><title>do_syscall_64 (70 samples, 0.03%)</title><rect x="99.9565%" y="789" width="0.0314%" height="15" fill="rgb(230,56,32)" fg:x="222683" fg:w="70"/><text x="100.2065%" y="799.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.03%)</title><rect x="99.9565%" y="773" width="0.0314%" height="15" fill="rgb(222,56,27)" fg:x="222683" fg:w="70"/><text x="100.2065%" y="783.50"></text></g><g><title>do_futex (70 samples, 0.03%)</title><rect x="99.9565%" y="757" width="0.0314%" height="15" fill="rgb(253,108,27)" fg:x="222683" fg:w="70"/><text x="100.2065%" y="767.50"></text></g><g><title>futex_wait (70 samples, 0.03%)</title><rect x="99.9565%" y="741" width="0.0314%" height="15" fill="rgb(212,87,36)" fg:x="222683" fg:w="70"/><text x="100.2065%" y="751.50"></text></g><g><title>futex_wait_queue_me (69 samples, 0.03%)</title><rect x="99.9569%" y="725" width="0.0310%" height="15" fill="rgb(247,82,36)" fg:x="222684" fg:w="69"/><text x="100.2069%" y="735.50"></text></g><g><title>schedule (67 samples, 0.03%)</title><rect x="99.9578%" y="709" width="0.0301%" height="15" fill="rgb(222,143,9)" fg:x="222686" fg:w="67"/><text x="100.2078%" y="719.50"></text></g><g><title>__schedule (67 samples, 0.03%)</title><rect x="99.9578%" y="693" width="0.0301%" height="15" fill="rgb(238,162,48)" fg:x="222686" fg:w="67"/><text x="100.2078%" y="703.50"></text></g><g><title>finish_task_switch (67 samples, 0.03%)</title><rect x="99.9578%" y="677" width="0.0301%" height="15" fill="rgb(221,59,43)" fg:x="222686" fg:w="67"/><text x="100.2078%" y="687.50"></text></g><g><title>Unsafe_Park (76 samples, 0.03%)</title><rect x="99.9542%" y="885" width="0.0341%" height="15" fill="rgb(205,166,41)" fg:x="222678" fg:w="76"/><text x="100.2042%" y="895.50"></text></g><g><title>Parker::park (74 samples, 0.03%)</title><rect x="99.9551%" y="869" width="0.0332%" height="15" fill="rgb(241,186,40)" fg:x="222680" fg:w="74"/><text x="100.2051%" y="879.50"></text></g><g><title>[perf-945576.map] (131 samples, 0.06%)</title><rect x="99.9309%" y="901" width="0.0588%" height="15" fill="rgb(216,119,35)" fg:x="222626" fg:w="131"/><text x="100.1809%" y="911.50"></text></g><g><title>skyframe-invali (155 samples, 0.07%)</title><rect x="99.9300%" y="917" width="0.0696%" height="15" fill="rgb(208,68,38)" fg:x="222624" fg:w="155"/><text x="100.1800%" y="927.50"></text></g><g><title>all (222,780 samples, 100%)</title><rect x="0.0000%" y="933" width="100.0000%" height="15" fill="rgb(217,113,1)" fg:x="0" fg:w="222780"/><text x="0.2500%" y="943.50"></text></g></svg></svg> +\ No newline at end of file diff --git a/results/llvm-j1-hermetic.svg b/results/llvm-j1-hermetic.svg @@ -1,491 +0,0 @@ -<?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="1046" onload="init(evt)" viewBox="0 0 1200 1046" 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="1046" 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="1029.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="1029.00"> </text><svg id="frames" x="10" width="1180" total_samples="146367"><g><title>[perf-270039.map] (23 samples, 0.02%)</title><rect x="0.0000%" y="965" width="0.0157%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="23"/><text x="0.2500%" y="975.50"></text></g><g><title>ActionLookupVal (37 samples, 0.03%)</title><rect x="0.0000%" y="981" width="0.0253%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="37"/><text x="0.2500%" y="991.50"></text></g><g><title>_dl_update_slotinfo (106 samples, 0.07%)</title><rect x="0.5753%" y="949" width="0.0724%" height="15" fill="rgb(221,193,54)" fg:x="842" fg:w="106"/><text x="0.8253%" y="959.50"></text></g><g><title>resource_allocate_bytes (22 samples, 0.02%)</title><rect x="0.7249%" y="949" width="0.0150%" height="15" fill="rgb(248,212,6)" fg:x="1061" fg:w="22"/><text x="0.9749%" y="959.50"></text></g><g><title>update_get_addr (27 samples, 0.02%)</title><rect x="0.7488%" y="949" width="0.0184%" height="15" fill="rgb(208,68,35)" fg:x="1096" fg:w="27"/><text x="0.9988%" y="959.50"></text></g><g><title>[anon] (1,051 samples, 0.72%)</title><rect x="0.0499%" y="965" width="0.7181%" height="15" fill="rgb(232,128,0)" fg:x="73" fg:w="1051"/><text x="0.2999%" y="975.50"></text></g><g><title>[perf-270039.map] (96 samples, 0.07%)</title><rect x="0.7700%" y="965" width="0.0656%" height="15" fill="rgb(207,160,47)" fg:x="1127" fg:w="96"/><text x="1.0200%" y="975.50"></text></g><g><title>GraphBuilder::access_field (15 samples, 0.01%)</title><rect x="0.8390%" y="789" width="0.0102%" height="15" fill="rgb(228,23,34)" fg:x="1228" fg:w="15"/><text x="1.0890%" y="799.50"></text></g><g><title>ciBytecodeStream::get_field (15 samples, 0.01%)</title><rect x="0.8390%" y="773" width="0.0102%" height="15" fill="rgb(218,30,26)" fg:x="1228" fg:w="15"/><text x="1.0890%" y="783.50"></text></g><g><title>ciEnv::get_field_by_index (15 samples, 0.01%)</title><rect x="0.8390%" y="757" width="0.0102%" height="15" fill="rgb(220,122,19)" fg:x="1228" fg:w="15"/><text x="1.0890%" y="767.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (15 samples, 0.01%)</title><rect x="0.8390%" y="741" width="0.0102%" height="15" fill="rgb(250,228,42)" fg:x="1228" fg:w="15"/><text x="1.0890%" y="751.50"></text></g><g><title>SafepointSynchronize::block (15 samples, 0.01%)</title><rect x="0.8390%" y="725" width="0.0102%" height="15" fill="rgb(240,193,28)" fg:x="1228" fg:w="15"/><text x="1.0890%" y="735.50"></text></g><g><title>Compilation::build_hir (23 samples, 0.02%)</title><rect x="0.8390%" y="869" width="0.0157%" height="15" fill="rgb(216,20,37)" fg:x="1228" fg:w="23"/><text x="1.0890%" y="879.50"></text></g><g><title>IR::IR (23 samples, 0.02%)</title><rect x="0.8390%" y="853" width="0.0157%" height="15" fill="rgb(206,188,39)" fg:x="1228" fg:w="23"/><text x="1.0890%" y="863.50"></text></g><g><title>GraphBuilder::GraphBuilder (23 samples, 0.02%)</title><rect x="0.8390%" y="837" width="0.0157%" height="15" fill="rgb(217,207,13)" fg:x="1228" fg:w="23"/><text x="1.0890%" y="847.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (23 samples, 0.02%)</title><rect x="0.8390%" y="821" width="0.0157%" height="15" fill="rgb(231,73,38)" fg:x="1228" fg:w="23"/><text x="1.0890%" y="831.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (23 samples, 0.02%)</title><rect x="0.8390%" y="805" width="0.0157%" height="15" fill="rgb(225,20,46)" fg:x="1228" fg:w="23"/><text x="1.0890%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (37 samples, 0.03%)</title><rect x="0.8390%" y="949" width="0.0253%" height="15" fill="rgb(210,31,41)" fg:x="1228" fg:w="37"/><text x="1.0890%" y="959.50"></text></g><g><title>Compiler::compile_method (37 samples, 0.03%)</title><rect x="0.8390%" y="933" width="0.0253%" height="15" fill="rgb(221,200,47)" fg:x="1228" fg:w="37"/><text x="1.0890%" y="943.50"></text></g><g><title>Compilation::Compilation (37 samples, 0.03%)</title><rect x="0.8390%" y="917" width="0.0253%" height="15" fill="rgb(226,26,5)" fg:x="1228" fg:w="37"/><text x="1.0890%" y="927.50"></text></g><g><title>Compilation::compile_method (37 samples, 0.03%)</title><rect x="0.8390%" y="901" width="0.0253%" height="15" fill="rgb(249,33,26)" fg:x="1228" fg:w="37"/><text x="1.0890%" y="911.50"></text></g><g><title>Compilation::compile_java_method (37 samples, 0.03%)</title><rect x="0.8390%" y="885" width="0.0253%" height="15" fill="rgb(235,183,28)" fg:x="1228" fg:w="37"/><text x="1.0890%" y="895.50"></text></g><g><title>_dl_update_slotinfo (22 samples, 0.02%)</title><rect x="0.8895%" y="949" width="0.0150%" height="15" fill="rgb(221,5,38)" fg:x="1302" fg:w="22"/><text x="1.1395%" y="959.50"></text></g><g><title>[unknown] (112 samples, 0.08%)</title><rect x="0.8356%" y="965" width="0.0765%" height="15" fill="rgb(247,18,42)" fg:x="1223" fg:w="112"/><text x="1.0856%" y="975.50"></text></g><g><title>CompileBroker::collect_statistics (19 samples, 0.01%)</title><rect x="0.9312%" y="853" width="0.0130%" height="15" fill="rgb(241,131,45)" fg:x="1363" fg:w="19"/><text x="1.1812%" y="863.50"></text></g><g><title>jio_vsnprintf (51 samples, 0.03%)</title><rect x="0.9476%" y="821" width="0.0348%" height="15" fill="rgb(249,31,29)" fg:x="1387" fg:w="51"/><text x="1.1976%" y="831.50"></text></g><g><title>os::vsnprintf (51 samples, 0.03%)</title><rect x="0.9476%" y="805" width="0.0348%" height="15" fill="rgb(225,111,53)" fg:x="1387" fg:w="51"/><text x="1.1976%" y="815.50"></text></g><g><title>__vsnprintf_internal (51 samples, 0.03%)</title><rect x="0.9476%" y="789" width="0.0348%" height="15" fill="rgb(238,160,17)" fg:x="1387" fg:w="51"/><text x="1.1976%" y="799.50"></text></g><g><title>__vfprintf_internal (48 samples, 0.03%)</title><rect x="0.9497%" y="773" width="0.0328%" height="15" fill="rgb(214,148,48)" fg:x="1390" fg:w="48"/><text x="1.1997%" y="783.50"></text></g><g><title>CompileBroker::post_compile (61 samples, 0.04%)</title><rect x="0.9442%" y="853" width="0.0417%" height="15" fill="rgb(232,36,49)" fg:x="1382" fg:w="61"/><text x="1.1942%" y="863.50"></text></g><g><title>StringEventLog::log (61 samples, 0.04%)</title><rect x="0.9442%" y="837" width="0.0417%" height="15" fill="rgb(209,103,24)" fg:x="1382" fg:w="61"/><text x="1.1942%" y="847.50"></text></g><g><title>CompileBroker::set_last_compile (26 samples, 0.02%)</title><rect x="0.9859%" y="853" width="0.0178%" height="15" fill="rgb(229,88,8)" fg:x="1443" fg:w="26"/><text x="1.2359%" y="863.50"></text></g><g><title>Method::print_short_name (37 samples, 0.03%)</title><rect x="1.0043%" y="837" width="0.0253%" height="15" fill="rgb(213,181,19)" fg:x="1470" fg:w="37"/><text x="1.2543%" y="847.50"></text></g><g><title>os::vsnprintf (27 samples, 0.02%)</title><rect x="1.0405%" y="805" width="0.0184%" height="15" fill="rgb(254,191,54)" fg:x="1523" fg:w="27"/><text x="1.2905%" y="815.50"></text></g><g><title>__vsnprintf_internal (27 samples, 0.02%)</title><rect x="1.0405%" y="789" width="0.0184%" height="15" fill="rgb(241,83,37)" fg:x="1523" fg:w="27"/><text x="1.2905%" y="799.50"></text></g><g><title>__vfprintf_internal (25 samples, 0.02%)</title><rect x="1.0419%" y="773" width="0.0171%" height="15" fill="rgb(233,36,39)" fg:x="1525" fg:w="25"/><text x="1.2919%" y="783.50"></text></g><g><title>CompileTask::print (85 samples, 0.06%)</title><rect x="1.0036%" y="853" width="0.0581%" height="15" fill="rgb(226,3,54)" fg:x="1469" fg:w="85"/><text x="1.2536%" y="863.50"></text></g><g><title>outputStream::print (47 samples, 0.03%)</title><rect x="1.0296%" y="837" width="0.0321%" height="15" fill="rgb(245,192,40)" fg:x="1507" fg:w="47"/><text x="1.2796%" y="847.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (44 samples, 0.03%)</title><rect x="1.0317%" y="821" width="0.0301%" height="15" fill="rgb(238,167,29)" fg:x="1510" fg:w="44"/><text x="1.2817%" y="831.50"></text></g><g><title>BlockBegin::iterate_preorder (15 samples, 0.01%)</title><rect x="1.1280%" y="645" width="0.0102%" height="15" fill="rgb(232,182,51)" fg:x="1651" fg:w="15"/><text x="1.3780%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (22 samples, 0.02%)</title><rect x="1.1280%" y="661" width="0.0150%" height="15" fill="rgb(231,60,39)" fg:x="1651" fg:w="22"/><text x="1.3780%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (32 samples, 0.02%)</title><rect x="1.1280%" y="677" width="0.0219%" height="15" fill="rgb(208,69,12)" fg:x="1651" fg:w="32"/><text x="1.3780%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (47 samples, 0.03%)</title><rect x="1.1273%" y="693" width="0.0321%" height="15" fill="rgb(235,93,37)" fg:x="1650" fg:w="47"/><text x="1.3773%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (72 samples, 0.05%)</title><rect x="1.1259%" y="709" width="0.0492%" height="15" fill="rgb(213,116,39)" fg:x="1648" fg:w="72"/><text x="1.3759%" y="719.50"></text></g><g><title>SubstitutionResolver::block_do (23 samples, 0.02%)</title><rect x="1.1594%" y="693" width="0.0157%" height="15" fill="rgb(222,207,29)" fg:x="1697" fg:w="23"/><text x="1.4094%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (122 samples, 0.08%)</title><rect x="1.1239%" y="725" width="0.0834%" height="15" fill="rgb(206,96,30)" fg:x="1645" fg:w="122"/><text x="1.3739%" y="735.50"></text></g><g><title>SubstitutionResolver::block_do (47 samples, 0.03%)</title><rect x="1.1751%" y="709" width="0.0321%" height="15" fill="rgb(218,138,4)" fg:x="1720" fg:w="47"/><text x="1.4251%" y="719.50"></text></g><g><title>ValueStack::values_do (19 samples, 0.01%)</title><rect x="1.1943%" y="693" width="0.0130%" height="15" fill="rgb(250,191,14)" fg:x="1748" fg:w="19"/><text x="1.4443%" y="703.50"></text></g><g><title>ValueStack::values_do (15 samples, 0.01%)</title><rect x="1.2257%" y="709" width="0.0102%" height="15" fill="rgb(239,60,40)" fg:x="1794" fg:w="15"/><text x="1.4757%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (171 samples, 0.12%)</title><rect x="1.1205%" y="757" width="0.1168%" height="15" fill="rgb(206,27,48)" fg:x="1640" fg:w="171"/><text x="1.3705%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (170 samples, 0.12%)</title><rect x="1.1212%" y="741" width="0.1161%" height="15" fill="rgb(225,35,8)" fg:x="1641" fg:w="170"/><text x="1.3712%" y="751.50"></text></g><g><title>SubstitutionResolver::block_do (44 samples, 0.03%)</title><rect x="1.2072%" y="725" width="0.0301%" height="15" fill="rgb(250,213,24)" fg:x="1767" fg:w="44"/><text x="1.4572%" y="735.50"></text></g><g><title>ValueMap::ValueMap (31 samples, 0.02%)</title><rect x="1.2394%" y="757" width="0.0212%" height="15" fill="rgb(247,123,22)" fg:x="1814" fg:w="31"/><text x="1.4894%" y="767.50"></text></g><g><title>ValueMap::find_insert (35 samples, 0.02%)</title><rect x="1.2605%" y="757" width="0.0239%" height="15" fill="rgb(231,138,38)" fg:x="1845" fg:w="35"/><text x="1.5105%" y="767.50"></text></g><g><title>ValueMap::kill_memory (23 samples, 0.02%)</title><rect x="1.2858%" y="757" width="0.0157%" height="15" fill="rgb(231,145,46)" fg:x="1882" fg:w="23"/><text x="1.5358%" y="767.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (316 samples, 0.22%)</title><rect x="1.0884%" y="773" width="0.2159%" height="15" fill="rgb(251,118,11)" fg:x="1593" fg:w="316"/><text x="1.3384%" y="783.50"></text></g><g><title>BlockBegin::iterate_preorder (16 samples, 0.01%)</title><rect x="1.3241%" y="645" width="0.0109%" height="15" fill="rgb(217,147,25)" fg:x="1938" fg:w="16"/><text x="1.5741%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (23 samples, 0.02%)</title><rect x="1.3234%" y="661" width="0.0157%" height="15" fill="rgb(247,81,37)" fg:x="1937" fg:w="23"/><text x="1.5734%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (28 samples, 0.02%)</title><rect x="1.3227%" y="677" width="0.0191%" height="15" fill="rgb(209,12,38)" fg:x="1936" fg:w="28"/><text x="1.5727%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (49 samples, 0.03%)</title><rect x="1.3207%" y="693" width="0.0335%" height="15" fill="rgb(227,1,9)" fg:x="1933" fg:w="49"/><text x="1.5707%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (62 samples, 0.04%)</title><rect x="1.3159%" y="709" width="0.0424%" height="15" fill="rgb(248,47,43)" fg:x="1926" fg:w="62"/><text x="1.5659%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (79 samples, 0.05%)</title><rect x="1.3111%" y="725" width="0.0540%" height="15" fill="rgb(221,10,30)" fg:x="1919" fg:w="79"/><text x="1.5611%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (82 samples, 0.06%)</title><rect x="1.3097%" y="741" width="0.0560%" height="15" fill="rgb(210,229,1)" fg:x="1917" fg:w="82"/><text x="1.5597%" y="751.50"></text></g><g><title>BlockBegin::try_merge (15 samples, 0.01%)</title><rect x="1.3657%" y="741" width="0.0102%" height="15" fill="rgb(222,148,37)" fg:x="1999" fg:w="15"/><text x="1.6157%" y="751.50"></text></g><g><title>BlockListBuilder::make_block_at (15 samples, 0.01%)</title><rect x="1.3876%" y="709" width="0.0102%" height="15" fill="rgb(234,67,33)" fg:x="2031" fg:w="15"/><text x="1.6376%" y="719.50"></text></g><g><title>ciMethod::get_method_blocks (23 samples, 0.02%)</title><rect x="1.4388%" y="661" width="0.0157%" height="15" fill="rgb(247,98,35)" fg:x="2106" fg:w="23"/><text x="1.6888%" y="671.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (22 samples, 0.02%)</title><rect x="1.4395%" y="645" width="0.0150%" height="15" fill="rgb(247,138,52)" fg:x="2107" fg:w="22"/><text x="1.6895%" y="655.50"></text></g><g><title>ciMethodBlocks::do_analysis (19 samples, 0.01%)</title><rect x="1.4416%" y="629" width="0.0130%" height="15" fill="rgb(213,79,30)" fg:x="2110" fg:w="19"/><text x="1.6916%" y="639.50"></text></g><g><title>BlockListBuilder::set_leaders (113 samples, 0.08%)</title><rect x="1.3815%" y="725" width="0.0772%" height="15" fill="rgb(246,177,23)" fg:x="2022" fg:w="113"/><text x="1.6315%" y="735.50"></text></g><g><title>ciMethod::bci_block_start (89 samples, 0.06%)</title><rect x="1.3979%" y="709" width="0.0608%" height="15" fill="rgb(230,62,27)" fg:x="2046" fg:w="89"/><text x="1.6479%" y="719.50"></text></g><g><title>MethodLiveness::compute_liveness (85 samples, 0.06%)</title><rect x="1.4006%" y="693" width="0.0581%" height="15" fill="rgb(216,154,8)" fg:x="2050" fg:w="85"/><text x="1.6506%" y="703.50"></text></g><g><title>MethodLiveness::init_basic_blocks (49 samples, 0.03%)</title><rect x="1.4252%" y="677" width="0.0335%" height="15" fill="rgb(244,35,45)" fg:x="2086" fg:w="49"/><text x="1.6752%" y="687.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (125 samples, 0.09%)</title><rect x="1.3760%" y="741" width="0.0854%" height="15" fill="rgb(251,115,12)" fg:x="2014" fg:w="125"/><text x="1.6260%" y="751.50"></text></g><g><title>ValueStack::ValueStack (15 samples, 0.01%)</title><rect x="1.4716%" y="709" width="0.0102%" height="15" fill="rgb(240,54,50)" fg:x="2154" fg:w="15"/><text x="1.7216%" y="719.50"></text></g><g><title>GraphBuilder::connect_to_end (18 samples, 0.01%)</title><rect x="1.4703%" y="725" width="0.0123%" height="15" fill="rgb(233,84,52)" fg:x="2152" fg:w="18"/><text x="1.7203%" y="735.50"></text></g><g><title>BlockBegin::try_merge (21 samples, 0.01%)</title><rect x="1.5147%" y="709" width="0.0143%" height="15" fill="rgb(207,117,47)" fg:x="2217" fg:w="21"/><text x="1.7647%" y="719.50"></text></g><g><title>GraphBuilder::append_with_bci (16 samples, 0.01%)</title><rect x="1.5447%" y="693" width="0.0109%" height="15" fill="rgb(249,43,39)" fg:x="2261" fg:w="16"/><text x="1.7947%" y="703.50"></text></g><g><title>SymbolTable::lookup (20 samples, 0.01%)</title><rect x="1.5994%" y="613" width="0.0137%" height="15" fill="rgb(209,38,44)" fg:x="2341" fg:w="20"/><text x="1.8494%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (19 samples, 0.01%)</title><rect x="1.6151%" y="613" width="0.0130%" height="15" fill="rgb(236,212,23)" fg:x="2364" fg:w="19"/><text x="1.8651%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (53 samples, 0.04%)</title><rect x="1.5967%" y="629" width="0.0362%" height="15" fill="rgb(242,79,21)" fg:x="2337" fg:w="53"/><text x="1.8467%" y="639.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (63 samples, 0.04%)</title><rect x="1.5926%" y="645" width="0.0430%" height="15" fill="rgb(211,96,35)" fg:x="2331" fg:w="63"/><text x="1.8426%" y="655.50"></text></g><g><title>ciField::ciField (100 samples, 0.07%)</title><rect x="1.5796%" y="661" width="0.0683%" height="15" fill="rgb(253,215,40)" fg:x="2312" fg:w="100"/><text x="1.8296%" y="671.50"></text></g><g><title>ciEnv::get_field_by_index (114 samples, 0.08%)</title><rect x="1.5728%" y="677" width="0.0779%" height="15" fill="rgb(211,81,21)" fg:x="2302" fg:w="114"/><text x="1.8228%" y="687.50"></text></g><g><title>ciBytecodeStream::get_field (134 samples, 0.09%)</title><rect x="1.5714%" y="693" width="0.0916%" height="15" fill="rgb(208,190,38)" fg:x="2300" fg:w="134"/><text x="1.8214%" y="703.50"></text></g><g><title>ciField::will_link (18 samples, 0.01%)</title><rect x="1.6506%" y="677" width="0.0123%" height="15" fill="rgb(235,213,38)" fg:x="2416" fg:w="18"/><text x="1.9006%" y="687.50"></text></g><g><title>GraphBuilder::access_field (192 samples, 0.13%)</title><rect x="1.5386%" y="709" width="0.1312%" height="15" fill="rgb(237,122,38)" fg:x="2252" fg:w="192"/><text x="1.7886%" y="719.50"></text></g><g><title>GraphBuilder::append_with_bci (19 samples, 0.01%)</title><rect x="1.7360%" y="693" width="0.0130%" height="15" fill="rgb(244,218,35)" fg:x="2541" fg:w="19"/><text x="1.9860%" y="703.50"></text></g><g><title>GraphBuilder::args_list_for_profiling (16 samples, 0.01%)</title><rect x="1.7934%" y="661" width="0.0109%" height="15" fill="rgb(240,68,47)" fg:x="2625" fg:w="16"/><text x="2.0434%" y="671.50"></text></g><g><title>BlockBegin::try_merge (45 samples, 0.03%)</title><rect x="1.8351%" y="629" width="0.0307%" height="15" fill="rgb(210,16,53)" fg:x="2686" fg:w="45"/><text x="2.0851%" y="639.50"></text></g><g><title>ciMethod::liveness_at_bci (18 samples, 0.01%)</title><rect x="1.8536%" y="613" width="0.0123%" height="15" fill="rgb(235,124,12)" fg:x="2713" fg:w="18"/><text x="2.1036%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (28 samples, 0.02%)</title><rect x="1.9109%" y="549" width="0.0191%" height="15" fill="rgb(224,169,11)" fg:x="2797" fg:w="28"/><text x="2.1609%" y="559.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (34 samples, 0.02%)</title><rect x="1.9089%" y="565" width="0.0232%" height="15" fill="rgb(250,166,2)" fg:x="2794" fg:w="34"/><text x="2.1589%" y="575.50"></text></g><g><title>ciField::ciField (66 samples, 0.05%)</title><rect x="1.8959%" y="581" width="0.0451%" height="15" fill="rgb(242,216,29)" fg:x="2775" fg:w="66"/><text x="2.1459%" y="591.50"></text></g><g><title>ciEnv::get_field_by_index (75 samples, 0.05%)</title><rect x="1.8918%" y="597" width="0.0512%" height="15" fill="rgb(230,116,27)" fg:x="2769" fg:w="75"/><text x="2.1418%" y="607.50"></text></g><g><title>ciBytecodeStream::get_field (96 samples, 0.07%)</title><rect x="1.8918%" y="613" width="0.0656%" height="15" fill="rgb(228,99,48)" fg:x="2769" fg:w="96"/><text x="2.1418%" y="623.50"></text></g><g><title>ciField::will_link (21 samples, 0.01%)</title><rect x="1.9431%" y="597" width="0.0143%" height="15" fill="rgb(253,11,6)" fg:x="2844" fg:w="21"/><text x="2.1931%" y="607.50"></text></g><g><title>GraphBuilder::access_field (130 samples, 0.09%)</title><rect x="1.8700%" y="629" width="0.0888%" height="15" fill="rgb(247,143,39)" fg:x="2737" fg:w="130"/><text x="2.1200%" y="639.50"></text></g><g><title>GraphBuilder::append_with_bci (17 samples, 0.01%)</title><rect x="1.9827%" y="613" width="0.0116%" height="15" fill="rgb(236,97,10)" fg:x="2902" fg:w="17"/><text x="2.2327%" y="623.50"></text></g><g><title>BlockBegin::try_merge (32 samples, 0.02%)</title><rect x="2.0353%" y="549" width="0.0219%" height="15" fill="rgb(233,208,19)" fg:x="2979" fg:w="32"/><text x="2.2853%" y="559.50"></text></g><g><title>ciMethod::liveness_at_bci (16 samples, 0.01%)</title><rect x="2.0462%" y="533" width="0.0109%" height="15" fill="rgb(216,164,2)" fg:x="2995" fg:w="16"/><text x="2.2962%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (15 samples, 0.01%)</title><rect x="2.0736%" y="485" width="0.0102%" height="15" fill="rgb(220,129,5)" fg:x="3035" fg:w="15"/><text x="2.3236%" y="495.50"></text></g><g><title>ciField::ciField (31 samples, 0.02%)</title><rect x="2.0688%" y="501" width="0.0212%" height="15" fill="rgb(242,17,10)" fg:x="3028" fg:w="31"/><text x="2.3188%" y="511.50"></text></g><g><title>ciEnv::get_field_by_index (34 samples, 0.02%)</title><rect x="2.0674%" y="517" width="0.0232%" height="15" fill="rgb(242,107,0)" fg:x="3026" fg:w="34"/><text x="2.3174%" y="527.50"></text></g><g><title>ciBytecodeStream::get_field (39 samples, 0.03%)</title><rect x="2.0674%" y="533" width="0.0266%" height="15" fill="rgb(251,28,31)" fg:x="3026" fg:w="39"/><text x="2.3174%" y="543.50"></text></g><g><title>GraphBuilder::access_field (55 samples, 0.04%)</title><rect x="2.0592%" y="549" width="0.0376%" height="15" fill="rgb(233,223,10)" fg:x="3014" fg:w="55"/><text x="2.3092%" y="559.50"></text></g><g><title>ciEnv::get_field_by_index (21 samples, 0.01%)</title><rect x="2.1514%" y="437" width="0.0143%" height="15" fill="rgb(215,21,27)" fg:x="3149" fg:w="21"/><text x="2.4014%" y="447.50"></text></g><g><title>ciField::ciField (18 samples, 0.01%)</title><rect x="2.1535%" y="421" width="0.0123%" height="15" fill="rgb(232,23,21)" fg:x="3152" fg:w="18"/><text x="2.4035%" y="431.50"></text></g><g><title>ciBytecodeStream::get_field (23 samples, 0.02%)</title><rect x="2.1514%" y="453" width="0.0157%" height="15" fill="rgb(244,5,23)" fg:x="3149" fg:w="23"/><text x="2.4014%" y="463.50"></text></g><g><title>GraphBuilder::access_field (32 samples, 0.02%)</title><rect x="2.1460%" y="469" width="0.0219%" height="15" fill="rgb(226,81,46)" fg:x="3141" fg:w="32"/><text x="2.3960%" y="479.50"></text></g><g><title>GraphBuilder::invoke (19 samples, 0.01%)</title><rect x="2.1999%" y="309" width="0.0130%" height="15" fill="rgb(247,70,30)" fg:x="3220" fg:w="19"/><text x="2.4499%" y="319.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (28 samples, 0.02%)</title><rect x="2.1952%" y="341" width="0.0191%" height="15" fill="rgb(212,68,19)" fg:x="3213" fg:w="28"/><text x="2.4452%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (28 samples, 0.02%)</title><rect x="2.1952%" y="325" width="0.0191%" height="15" fill="rgb(240,187,13)" fg:x="3213" fg:w="28"/><text x="2.4452%" y="335.50"></text></g><g><title>GraphBuilder::try_inline_full (38 samples, 0.03%)</title><rect x="2.1945%" y="357" width="0.0260%" height="15" fill="rgb(223,113,26)" fg:x="3212" fg:w="38"/><text x="2.4445%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (40 samples, 0.03%)</title><rect x="2.1945%" y="373" width="0.0273%" height="15" fill="rgb(206,192,2)" fg:x="3212" fg:w="40"/><text x="2.4445%" y="383.50"></text></g><g><title>GraphBuilder::invoke (50 samples, 0.03%)</title><rect x="2.1931%" y="389" width="0.0342%" height="15" fill="rgb(241,108,4)" fg:x="3210" fg:w="50"/><text x="2.4431%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (73 samples, 0.05%)</title><rect x="2.1808%" y="421" width="0.0499%" height="15" fill="rgb(247,173,49)" fg:x="3192" fg:w="73"/><text x="2.4308%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (72 samples, 0.05%)</title><rect x="2.1815%" y="405" width="0.0492%" height="15" fill="rgb(224,114,35)" fg:x="3193" fg:w="72"/><text x="2.4315%" y="415.50"></text></g><g><title>GraphBuilder::push_scope (19 samples, 0.01%)</title><rect x="2.2321%" y="421" width="0.0130%" height="15" fill="rgb(245,159,27)" fg:x="3267" fg:w="19"/><text x="2.4821%" y="431.50"></text></g><g><title>GraphBuilder::try_inline_full (114 samples, 0.08%)</title><rect x="2.1774%" y="437" width="0.0779%" height="15" fill="rgb(245,172,44)" fg:x="3187" fg:w="114"/><text x="2.4274%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (122 samples, 0.08%)</title><rect x="2.1774%" y="453" width="0.0834%" height="15" fill="rgb(236,23,11)" fg:x="3187" fg:w="122"/><text x="2.4274%" y="463.50"></text></g><g><title>ciBytecodeStream::get_method (34 samples, 0.02%)</title><rect x="2.2655%" y="453" width="0.0232%" height="15" fill="rgb(205,117,38)" fg:x="3316" fg:w="34"/><text x="2.5155%" y="463.50"></text></g><g><title>ciEnv::get_method_by_index_impl (34 samples, 0.02%)</title><rect x="2.2655%" y="437" width="0.0232%" height="15" fill="rgb(237,72,25)" fg:x="3316" fg:w="34"/><text x="2.5155%" y="447.50"></text></g><g><title>ciObjectFactory::get_metadata (16 samples, 0.01%)</title><rect x="2.2778%" y="421" width="0.0109%" height="15" fill="rgb(244,70,9)" fg:x="3334" fg:w="16"/><text x="2.5278%" y="431.50"></text></g><g><title>GraphBuilder::invoke (180 samples, 0.12%)</title><rect x="2.1719%" y="469" width="0.1230%" height="15" fill="rgb(217,125,39)" fg:x="3179" fg:w="180"/><text x="2.4219%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (250 samples, 0.17%)</title><rect x="2.1344%" y="501" width="0.1708%" height="15" fill="rgb(235,36,10)" fg:x="3124" fg:w="250"/><text x="2.3844%" y="511.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (250 samples, 0.17%)</title><rect x="2.1344%" y="485" width="0.1708%" height="15" fill="rgb(251,123,47)" fg:x="3124" fg:w="250"/><text x="2.3844%" y="495.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (16 samples, 0.01%)</title><rect x="2.3065%" y="485" width="0.0109%" height="15" fill="rgb(221,13,13)" fg:x="3376" fg:w="16"/><text x="2.5565%" y="495.50"></text></g><g><title>GraphBuilder::push_scope (30 samples, 0.02%)</title><rect x="2.3065%" y="501" width="0.0205%" height="15" fill="rgb(238,131,9)" fg:x="3376" fg:w="30"/><text x="2.5565%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (22 samples, 0.02%)</title><rect x="2.3277%" y="501" width="0.0150%" height="15" fill="rgb(211,50,8)" fg:x="3407" fg:w="22"/><text x="2.5777%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (20 samples, 0.01%)</title><rect x="2.3291%" y="485" width="0.0137%" height="15" fill="rgb(245,182,24)" fg:x="3409" fg:w="20"/><text x="2.5791%" y="495.50"></text></g><g><title>GraphBuilder::try_inline_full (313 samples, 0.21%)</title><rect x="2.1296%" y="517" width="0.2138%" height="15" fill="rgb(242,14,37)" fg:x="3117" fg:w="313"/><text x="2.3796%" y="527.50"></text></g><g><title>GraphBuilder::try_inline (17 samples, 0.01%)</title><rect x="2.3496%" y="421" width="0.0116%" height="15" fill="rgb(246,228,12)" fg:x="3439" fg:w="17"/><text x="2.5996%" y="431.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (27 samples, 0.02%)</title><rect x="2.3455%" y="517" width="0.0184%" height="15" fill="rgb(213,55,15)" fg:x="3433" fg:w="27"/><text x="2.5955%" y="527.50"></text></g><g><title>GraphBuilder::try_inline (26 samples, 0.02%)</title><rect x="2.3462%" y="501" width="0.0178%" height="15" fill="rgb(209,9,3)" fg:x="3434" fg:w="26"/><text x="2.5962%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (26 samples, 0.02%)</title><rect x="2.3462%" y="485" width="0.0178%" height="15" fill="rgb(230,59,30)" fg:x="3434" fg:w="26"/><text x="2.5962%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (25 samples, 0.02%)</title><rect x="2.3468%" y="469" width="0.0171%" height="15" fill="rgb(209,121,21)" fg:x="3435" fg:w="25"/><text x="2.5968%" y="479.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (25 samples, 0.02%)</title><rect x="2.3468%" y="453" width="0.0171%" height="15" fill="rgb(220,109,13)" fg:x="3435" fg:w="25"/><text x="2.5968%" y="463.50"></text></g><g><title>GraphBuilder::invoke (22 samples, 0.02%)</title><rect x="2.3489%" y="437" width="0.0150%" height="15" fill="rgb(232,18,1)" fg:x="3438" fg:w="22"/><text x="2.5989%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (345 samples, 0.24%)</title><rect x="2.1289%" y="533" width="0.2357%" height="15" fill="rgb(215,41,42)" fg:x="3116" fg:w="345"/><text x="2.3789%" y="543.50"></text></g><g><title>ciEnv::lookup_method (18 samples, 0.01%)</title><rect x="2.3817%" y="501" width="0.0123%" height="15" fill="rgb(224,123,36)" fg:x="3486" fg:w="18"/><text x="2.6317%" y="511.50"></text></g><g><title>ciMethod::ciMethod (28 samples, 0.02%)</title><rect x="2.3960%" y="469" width="0.0191%" height="15" fill="rgb(240,125,3)" fg:x="3507" fg:w="28"/><text x="2.6460%" y="479.50"></text></g><g><title>ciSignature::ciSignature (27 samples, 0.02%)</title><rect x="2.3967%" y="453" width="0.0184%" height="15" fill="rgb(205,98,50)" fg:x="3508" fg:w="27"/><text x="2.6467%" y="463.50"></text></g><g><title>ciObjectFactory::get_metadata (32 samples, 0.02%)</title><rect x="2.3940%" y="501" width="0.0219%" height="15" fill="rgb(205,185,37)" fg:x="3504" fg:w="32"/><text x="2.6440%" y="511.50"></text></g><g><title>ciObjectFactory::create_new_metadata (30 samples, 0.02%)</title><rect x="2.3953%" y="485" width="0.0205%" height="15" fill="rgb(238,207,15)" fg:x="3506" fg:w="30"/><text x="2.6453%" y="495.50"></text></g><g><title>ciBytecodeStream::get_method (69 samples, 0.05%)</title><rect x="2.3701%" y="533" width="0.0471%" height="15" fill="rgb(213,199,42)" fg:x="3469" fg:w="69"/><text x="2.6201%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (63 samples, 0.04%)</title><rect x="2.3742%" y="517" width="0.0430%" height="15" fill="rgb(235,201,11)" fg:x="3475" fg:w="63"/><text x="2.6242%" y="527.50"></text></g><g><title>GraphBuilder::invoke (456 samples, 0.31%)</title><rect x="2.1159%" y="549" width="0.3115%" height="15" fill="rgb(207,46,11)" fg:x="3097" fg:w="456"/><text x="2.3659%" y="559.50"></text></g><g><title>GraphBuilder::method_return (18 samples, 0.01%)</title><rect x="2.4295%" y="549" width="0.0123%" height="15" fill="rgb(241,35,35)" fg:x="3556" fg:w="18"/><text x="2.6795%" y="559.50"></text></g><g><title>GraphBuilder::new_instance (15 samples, 0.01%)</title><rect x="2.4425%" y="549" width="0.0102%" height="15" fill="rgb(243,32,47)" fg:x="3575" fg:w="15"/><text x="2.6925%" y="559.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (640 samples, 0.44%)</title><rect x="2.0196%" y="581" width="0.4373%" height="15" fill="rgb(247,202,23)" fg:x="2956" fg:w="640"/><text x="2.2696%" y="591.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (631 samples, 0.43%)</title><rect x="2.0257%" y="565" width="0.4311%" height="15" fill="rgb(219,102,11)" fg:x="2965" fg:w="631"/><text x="2.2757%" y="575.50"></text></g><g><title>BlockListBuilder::set_leaders (33 samples, 0.02%)</title><rect x="2.4650%" y="549" width="0.0225%" height="15" fill="rgb(243,110,44)" fg:x="3608" fg:w="33"/><text x="2.7150%" y="559.50"></text></g><g><title>ciMethod::bci_block_start (21 samples, 0.01%)</title><rect x="2.4732%" y="533" width="0.0143%" height="15" fill="rgb(222,74,54)" fg:x="3620" fg:w="21"/><text x="2.7232%" y="543.50"></text></g><g><title>MethodLiveness::compute_liveness (21 samples, 0.01%)</title><rect x="2.4732%" y="517" width="0.0143%" height="15" fill="rgb(216,99,12)" fg:x="3620" fg:w="21"/><text x="2.7232%" y="527.50"></text></g><g><title>MethodLiveness::init_basic_blocks (16 samples, 0.01%)</title><rect x="2.4767%" y="501" width="0.0109%" height="15" fill="rgb(226,22,26)" fg:x="3625" fg:w="16"/><text x="2.7267%" y="511.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (42 samples, 0.03%)</title><rect x="2.4603%" y="565" width="0.0287%" height="15" fill="rgb(217,163,10)" fg:x="3601" fg:w="42"/><text x="2.7103%" y="575.50"></text></g><g><title>GraphBuilder::push_scope (65 samples, 0.04%)</title><rect x="2.4589%" y="581" width="0.0444%" height="15" fill="rgb(213,25,53)" fg:x="3599" fg:w="65"/><text x="2.7089%" y="591.50"></text></g><g><title>ciMethodData::load_data (29 samples, 0.02%)</title><rect x="2.5183%" y="549" width="0.0198%" height="15" fill="rgb(252,105,26)" fg:x="3686" fg:w="29"/><text x="2.7683%" y="559.50"></text></g><g><title>ciMethod::ensure_method_data (57 samples, 0.04%)</title><rect x="2.5081%" y="581" width="0.0389%" height="15" fill="rgb(220,39,43)" fg:x="3671" fg:w="57"/><text x="2.7581%" y="591.50"></text></g><g><title>ciMethod::ensure_method_data (56 samples, 0.04%)</title><rect x="2.5088%" y="565" width="0.0383%" height="15" fill="rgb(229,68,48)" fg:x="3672" fg:w="56"/><text x="2.7588%" y="575.50"></text></g><g><title>GraphBuilder::try_inline_full (798 samples, 0.55%)</title><rect x="2.0039%" y="597" width="0.5452%" height="15" fill="rgb(252,8,32)" fg:x="2933" fg:w="798"/><text x="2.2539%" y="607.50"></text></g><g><title>GraphBuilder::try_inline_full (18 samples, 0.01%)</title><rect x="2.5532%" y="485" width="0.0123%" height="15" fill="rgb(223,20,43)" fg:x="3737" fg:w="18"/><text x="2.8032%" y="495.50"></text></g><g><title>GraphBuilder::try_inline (25 samples, 0.02%)</title><rect x="2.5532%" y="501" width="0.0171%" height="15" fill="rgb(229,81,49)" fg:x="3737" fg:w="25"/><text x="2.8032%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (31 samples, 0.02%)</title><rect x="2.5518%" y="549" width="0.0212%" height="15" fill="rgb(236,28,36)" fg:x="3735" fg:w="31"/><text x="2.8018%" y="559.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (31 samples, 0.02%)</title><rect x="2.5518%" y="533" width="0.0212%" height="15" fill="rgb(249,185,26)" fg:x="3735" fg:w="31"/><text x="2.8018%" y="543.50"></text></g><g><title>GraphBuilder::invoke (29 samples, 0.02%)</title><rect x="2.5532%" y="517" width="0.0198%" height="15" fill="rgb(249,174,33)" fg:x="3737" fg:w="29"/><text x="2.8032%" y="527.50"></text></g><g><title>GraphBuilder::try_inline (34 samples, 0.02%)</title><rect x="2.5518%" y="581" width="0.0232%" height="15" fill="rgb(233,201,37)" fg:x="3735" fg:w="34"/><text x="2.8018%" y="591.50"></text></g><g><title>GraphBuilder::try_inline_full (34 samples, 0.02%)</title><rect x="2.5518%" y="565" width="0.0232%" height="15" fill="rgb(221,78,26)" fg:x="3735" fg:w="34"/><text x="2.8018%" y="575.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (36 samples, 0.02%)</title><rect x="2.5518%" y="597" width="0.0246%" height="15" fill="rgb(250,127,30)" fg:x="3735" fg:w="36"/><text x="2.8018%" y="607.50"></text></g><g><title>GraphBuilder::try_inline (843 samples, 0.58%)</title><rect x="2.0011%" y="613" width="0.5759%" height="15" fill="rgb(230,49,44)" fg:x="2929" fg:w="843"/><text x="2.2511%" y="623.50"></text></g><g><title>ciEnv::lookup_method (36 samples, 0.02%)</title><rect x="2.6092%" y="581" width="0.0246%" height="15" fill="rgb(229,67,23)" fg:x="3819" fg:w="36"/><text x="2.8592%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (16 samples, 0.01%)</title><rect x="2.6632%" y="517" width="0.0109%" height="15" fill="rgb(249,83,47)" fg:x="3898" fg:w="16"/><text x="2.9132%" y="527.50"></text></g><g><title>ciSignature::ciSignature (41 samples, 0.03%)</title><rect x="2.6481%" y="533" width="0.0280%" height="15" fill="rgb(215,43,3)" fg:x="3876" fg:w="41"/><text x="2.8981%" y="543.50"></text></g><g><title>ciMethod::ciMethod (51 samples, 0.03%)</title><rect x="2.6427%" y="549" width="0.0348%" height="15" fill="rgb(238,154,13)" fg:x="3868" fg:w="51"/><text x="2.8927%" y="559.50"></text></g><g><title>ciObjectFactory::get_metadata (65 samples, 0.04%)</title><rect x="2.6338%" y="581" width="0.0444%" height="15" fill="rgb(219,56,2)" fg:x="3855" fg:w="65"/><text x="2.8838%" y="591.50"></text></g><g><title>ciObjectFactory::create_new_metadata (55 samples, 0.04%)</title><rect x="2.6406%" y="565" width="0.0376%" height="15" fill="rgb(233,0,4)" fg:x="3865" fg:w="55"/><text x="2.8906%" y="575.50"></text></g><g><title>ciBytecodeStream::get_method (124 samples, 0.08%)</title><rect x="2.5948%" y="613" width="0.0847%" height="15" fill="rgb(235,30,7)" fg:x="3798" fg:w="124"/><text x="2.8448%" y="623.50"></text></g><g><title>ciEnv::get_method_by_index_impl (115 samples, 0.08%)</title><rect x="2.6010%" y="597" width="0.0786%" height="15" fill="rgb(250,79,13)" fg:x="3807" fg:w="115"/><text x="2.8510%" y="607.50"></text></g><g><title>GraphBuilder::invoke (1,051 samples, 0.72%)</title><rect x="1.9765%" y="629" width="0.7181%" height="15" fill="rgb(211,146,34)" fg:x="2893" fg:w="1051"/><text x="2.2265%" y="639.50"></text></g><g><title>GraphBuilder::method_return (32 samples, 0.02%)</title><rect x="2.6994%" y="629" width="0.0219%" height="15" fill="rgb(228,22,38)" fg:x="3951" fg:w="32"/><text x="2.9494%" y="639.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,350 samples, 0.92%)</title><rect x="1.8057%" y="661" width="0.9223%" height="15" fill="rgb(235,168,5)" fg:x="2643" fg:w="1350"/><text x="2.0557%" y="671.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,340 samples, 0.92%)</title><rect x="1.8126%" y="645" width="0.9155%" height="15" fill="rgb(221,155,16)" fg:x="2653" fg:w="1340"/><text x="2.0626%" y="655.50"></text></g><g><title>ciMethod::get_method_blocks (20 samples, 0.01%)</title><rect x="2.7704%" y="565" width="0.0137%" height="15" fill="rgb(215,215,53)" fg:x="4055" fg:w="20"/><text x="3.0204%" y="575.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (18 samples, 0.01%)</title><rect x="2.7718%" y="549" width="0.0123%" height="15" fill="rgb(223,4,10)" fg:x="4057" fg:w="18"/><text x="3.0218%" y="559.50"></text></g><g><title>MethodLiveness::init_basic_blocks (32 samples, 0.02%)</title><rect x="2.7636%" y="581" width="0.0219%" height="15" fill="rgb(234,103,6)" fg:x="4045" fg:w="32"/><text x="3.0136%" y="591.50"></text></g><g><title>BlockListBuilder::set_leaders (59 samples, 0.04%)</title><rect x="2.7458%" y="629" width="0.0403%" height="15" fill="rgb(227,97,0)" fg:x="4019" fg:w="59"/><text x="2.9958%" y="639.50"></text></g><g><title>ciMethod::bci_block_start (46 samples, 0.03%)</title><rect x="2.7547%" y="613" width="0.0314%" height="15" fill="rgb(234,150,53)" fg:x="4032" fg:w="46"/><text x="3.0047%" y="623.50"></text></g><g><title>MethodLiveness::compute_liveness (45 samples, 0.03%)</title><rect x="2.7554%" y="597" width="0.0307%" height="15" fill="rgb(228,201,54)" fg:x="4033" fg:w="45"/><text x="3.0054%" y="607.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (70 samples, 0.05%)</title><rect x="2.7397%" y="645" width="0.0478%" height="15" fill="rgb(222,22,37)" fg:x="4010" fg:w="70"/><text x="2.9897%" y="655.50"></text></g><g><title>GraphBuilder::push_scope (115 samples, 0.08%)</title><rect x="2.7376%" y="661" width="0.0786%" height="15" fill="rgb(237,53,32)" fg:x="4007" fg:w="115"/><text x="2.9876%" y="671.50"></text></g><g><title>MethodData::post_initialize (15 samples, 0.01%)</title><rect x="2.8483%" y="581" width="0.0102%" height="15" fill="rgb(233,25,53)" fg:x="4169" fg:w="15"/><text x="3.0983%" y="591.50"></text></g><g><title>MethodData::initialize (23 samples, 0.02%)</title><rect x="2.8442%" y="597" width="0.0157%" height="15" fill="rgb(210,40,34)" fg:x="4163" fg:w="23"/><text x="3.0942%" y="607.50"></text></g><g><title>Method::build_interpreter_method_data (44 samples, 0.03%)</title><rect x="2.8319%" y="629" width="0.0301%" height="15" fill="rgb(241,220,44)" fg:x="4145" fg:w="44"/><text x="3.0819%" y="639.50"></text></g><g><title>MethodData::allocate (43 samples, 0.03%)</title><rect x="2.8326%" y="613" width="0.0294%" height="15" fill="rgb(235,28,35)" fg:x="4146" fg:w="43"/><text x="3.0826%" y="623.50"></text></g><g><title>ciMethodData::load_data (44 samples, 0.03%)</title><rect x="2.8627%" y="629" width="0.0301%" height="15" fill="rgb(210,56,17)" fg:x="4190" fg:w="44"/><text x="3.1127%" y="639.50"></text></g><g><title>ciMethod::ensure_method_data (114 samples, 0.08%)</title><rect x="2.8265%" y="661" width="0.0779%" height="15" fill="rgb(224,130,29)" fg:x="4137" fg:w="114"/><text x="3.0765%" y="671.50"></text></g><g><title>ciMethod::ensure_method_data (107 samples, 0.07%)</title><rect x="2.8312%" y="645" width="0.0731%" height="15" fill="rgb(235,212,8)" fg:x="4144" fg:w="107"/><text x="3.0812%" y="655.50"></text></g><g><title>ciObjectFactory::get_metadata (17 samples, 0.01%)</title><rect x="2.8927%" y="629" width="0.0116%" height="15" fill="rgb(223,33,50)" fg:x="4234" fg:w="17"/><text x="3.1427%" y="639.50"></text></g><g><title>GraphBuilder::try_inline_full (1,676 samples, 1.15%)</title><rect x="1.7647%" y="677" width="1.1451%" height="15" fill="rgb(219,149,13)" fg:x="2583" fg:w="1676"/><text x="2.0147%" y="687.50"></text></g><g><title>GraphBuilder::try_inline (1,685 samples, 1.15%)</title><rect x="1.7600%" y="693" width="1.1512%" height="15" fill="rgb(250,156,29)" fg:x="2576" fg:w="1685"/><text x="2.0100%" y="703.50"></text></g><g><title>ciBytecodeStream::get_declared_method_holder (19 samples, 0.01%)</title><rect x="2.9221%" y="693" width="0.0130%" height="15" fill="rgb(216,193,19)" fg:x="4277" fg:w="19"/><text x="3.1721%" y="703.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (21 samples, 0.01%)</title><rect x="2.9576%" y="661" width="0.0143%" height="15" fill="rgb(216,135,14)" fg:x="4329" fg:w="21"/><text x="3.2076%" y="671.50"></text></g><g><title>LinkResolver::linktime_resolve_interface_method_or_null (15 samples, 0.01%)</title><rect x="2.9727%" y="645" width="0.0102%" height="15" fill="rgb(241,47,5)" fg:x="4351" fg:w="15"/><text x="3.2227%" y="655.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (36 samples, 0.02%)</title><rect x="2.9829%" y="645" width="0.0246%" height="15" fill="rgb(233,42,35)" fg:x="4366" fg:w="36"/><text x="3.2329%" y="655.50"></text></g><g><title>LinkResolver::resolve_method (33 samples, 0.02%)</title><rect x="2.9850%" y="629" width="0.0225%" height="15" fill="rgb(231,13,6)" fg:x="4369" fg:w="33"/><text x="3.2350%" y="639.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (19 samples, 0.01%)</title><rect x="2.9945%" y="613" width="0.0130%" height="15" fill="rgb(207,181,40)" fg:x="4383" fg:w="19"/><text x="3.2445%" y="623.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (19 samples, 0.01%)</title><rect x="2.9945%" y="597" width="0.0130%" height="15" fill="rgb(254,173,49)" fg:x="4383" fg:w="19"/><text x="3.2445%" y="607.50"></text></g><g><title>InstanceKlass::find_method_index (19 samples, 0.01%)</title><rect x="2.9945%" y="581" width="0.0130%" height="15" fill="rgb(221,1,38)" fg:x="4383" fg:w="19"/><text x="3.2445%" y="591.50"></text></g><g><title>ciEnv::lookup_method (79 samples, 0.05%)</title><rect x="2.9720%" y="661" width="0.0540%" height="15" fill="rgb(206,124,46)" fg:x="4350" fg:w="79"/><text x="3.2220%" y="671.50"></text></g><g><title>ciObjectFactory::get_symbol (16 samples, 0.01%)</title><rect x="3.0458%" y="613" width="0.0109%" height="15" fill="rgb(249,21,11)" fg:x="4458" fg:w="16"/><text x="3.2958%" y="623.50"></text></g><g><title>SignatureStream::as_symbol (38 samples, 0.03%)</title><rect x="3.0669%" y="597" width="0.0260%" height="15" fill="rgb(222,201,40)" fg:x="4489" fg:w="38"/><text x="3.3169%" y="607.50"></text></g><g><title>SymbolTable::lookup (37 samples, 0.03%)</title><rect x="3.0676%" y="581" width="0.0253%" height="15" fill="rgb(235,61,29)" fg:x="4490" fg:w="37"/><text x="3.3176%" y="591.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (18 samples, 0.01%)</title><rect x="3.0977%" y="581" width="0.0123%" height="15" fill="rgb(219,207,3)" fg:x="4534" fg:w="18"/><text x="3.3477%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (36 samples, 0.02%)</title><rect x="3.0950%" y="597" width="0.0246%" height="15" fill="rgb(222,56,46)" fg:x="4530" fg:w="36"/><text x="3.3450%" y="607.50"></text></g><g><title>ciMethod::ciMethod (125 samples, 0.09%)</title><rect x="3.0396%" y="629" width="0.0854%" height="15" fill="rgb(239,76,54)" fg:x="4449" fg:w="125"/><text x="3.2896%" y="639.50"></text></g><g><title>ciSignature::ciSignature (100 samples, 0.07%)</title><rect x="3.0567%" y="613" width="0.0683%" height="15" fill="rgb(231,124,27)" fg:x="4474" fg:w="100"/><text x="3.3067%" y="623.50"></text></g><g><title>ciObjectFactory::get_metadata (147 samples, 0.10%)</title><rect x="3.0260%" y="661" width="0.1004%" height="15" fill="rgb(249,195,6)" fg:x="4429" fg:w="147"/><text x="3.2760%" y="671.50"></text></g><g><title>ciObjectFactory::create_new_metadata (132 samples, 0.09%)</title><rect x="3.0362%" y="645" width="0.0902%" height="15" fill="rgb(237,174,47)" fg:x="4444" fg:w="132"/><text x="3.2862%" y="655.50"></text></g><g><title>ciBytecodeStream::get_method (282 samples, 0.19%)</title><rect x="2.9351%" y="693" width="0.1927%" height="15" fill="rgb(206,201,31)" fg:x="4296" fg:w="282"/><text x="3.1851%" y="703.50"></text></g><g><title>ciEnv::get_method_by_index_impl (258 samples, 0.18%)</title><rect x="2.9515%" y="677" width="0.1763%" height="15" fill="rgb(231,57,52)" fg:x="4320" fg:w="258"/><text x="3.2015%" y="687.50"></text></g><g><title>Dependencies::find_unique_concrete_method (29 samples, 0.02%)</title><rect x="3.1360%" y="677" width="0.0198%" height="15" fill="rgb(248,177,22)" fg:x="4590" fg:w="29"/><text x="3.3860%" y="687.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (29 samples, 0.02%)</title><rect x="3.1360%" y="661" width="0.0198%" height="15" fill="rgb(215,211,37)" fg:x="4590" fg:w="29"/><text x="3.3860%" y="671.50"></text></g><g><title>ClassHierarchyWalker::is_witness (27 samples, 0.02%)</title><rect x="3.1373%" y="645" width="0.0184%" height="15" fill="rgb(241,128,51)" fg:x="4592" fg:w="27"/><text x="3.3873%" y="655.50"></text></g><g><title>InstanceKlass::find_instance_method (26 samples, 0.02%)</title><rect x="3.1380%" y="629" width="0.0178%" height="15" fill="rgb(227,165,31)" fg:x="4593" fg:w="26"/><text x="3.3880%" y="639.50"></text></g><g><title>InstanceKlass::find_method_index (26 samples, 0.02%)</title><rect x="3.1380%" y="613" width="0.0178%" height="15" fill="rgb(228,167,24)" fg:x="4593" fg:w="26"/><text x="3.3880%" y="623.50"></text></g><g><title>ciMethod::find_monomorphic_target (40 samples, 0.03%)</title><rect x="3.1360%" y="693" width="0.0273%" height="15" fill="rgb(228,143,12)" fg:x="4590" fg:w="40"/><text x="3.3860%" y="703.50"></text></g><g><title>GraphBuilder::invoke (2,126 samples, 1.45%)</title><rect x="1.7190%" y="709" width="1.4525%" height="15" fill="rgb(249,149,8)" fg:x="2516" fg:w="2126"/><text x="1.9690%" y="719.50"></text></g><g><title>GraphBuilder::load_constant (18 samples, 0.01%)</title><rect x="3.1715%" y="709" width="0.0123%" height="15" fill="rgb(243,35,44)" fg:x="4642" fg:w="18"/><text x="3.4215%" y="719.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,519 samples, 1.72%)</title><rect x="1.4826%" y="725" width="1.7210%" height="15" fill="rgb(246,89,9)" fg:x="2170" fg:w="2519"/><text x="1.7326%" y="735.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,545 samples, 1.74%)</title><rect x="1.4703%" y="741" width="1.7388%" height="15" fill="rgb(233,213,13)" fg:x="2152" fg:w="2545"/><text x="1.7203%" y="751.50"></text></g><g><title>GraphBuilder::setup_start_block (29 samples, 0.02%)</title><rect x="3.2104%" y="741" width="0.0198%" height="15" fill="rgb(233,141,41)" fg:x="4699" fg:w="29"/><text x="3.4604%" y="751.50"></text></g><g><title>GraphBuilder::GraphBuilder (2,830 samples, 1.93%)</title><rect x="1.3056%" y="757" width="1.9335%" height="15" fill="rgb(239,167,4)" fg:x="1911" fg:w="2830"/><text x="1.5556%" y="767.50">G..</text></g><g><title>IR::IR (2,845 samples, 1.94%)</title><rect x="1.3043%" y="773" width="1.9437%" height="15" fill="rgb(209,217,16)" fg:x="1909" fg:w="2845"/><text x="1.5543%" y="783.50">I..</text></g><g><title>ComputeLinearScanOrder::sort_into_work_list (15 samples, 0.01%)</title><rect x="3.2651%" y="725" width="0.0102%" height="15" fill="rgb(219,88,35)" fg:x="4779" fg:w="15"/><text x="3.5151%" y="735.50"></text></g><g><title>ComputeLinearScanOrder::compute_order (34 samples, 0.02%)</title><rect x="3.2541%" y="741" width="0.0232%" height="15" fill="rgb(220,193,23)" fg:x="4763" fg:w="34"/><text x="3.5041%" y="751.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (65 samples, 0.04%)</title><rect x="3.2480%" y="757" width="0.0444%" height="15" fill="rgb(230,90,52)" fg:x="4754" fg:w="65"/><text x="3.4980%" y="767.50"></text></g><g><title>IR::compute_code (69 samples, 0.05%)</title><rect x="3.2480%" y="773" width="0.0471%" height="15" fill="rgb(252,106,19)" fg:x="4754" fg:w="69"/><text x="3.4980%" y="783.50"></text></g><g><title>BlockList::iterate_backward (65 samples, 0.04%)</title><rect x="3.2979%" y="757" width="0.0444%" height="15" fill="rgb(206,74,20)" fg:x="4827" fg:w="65"/><text x="3.5479%" y="767.50"></text></g><g><title>UseCountComputer::block_do (63 samples, 0.04%)</title><rect x="3.2992%" y="741" width="0.0430%" height="15" fill="rgb(230,138,44)" fg:x="4829" fg:w="63"/><text x="3.5492%" y="751.50"></text></g><g><title>ValueStack::values_do (20 samples, 0.01%)</title><rect x="3.3286%" y="725" width="0.0137%" height="15" fill="rgb(235,182,43)" fg:x="4872" fg:w="20"/><text x="3.5786%" y="735.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (25 samples, 0.02%)</title><rect x="3.3423%" y="757" width="0.0171%" height="15" fill="rgb(242,16,51)" fg:x="4892" fg:w="25"/><text x="3.5923%" y="767.50"></text></g><g><title>IR::compute_use_counts (96 samples, 0.07%)</title><rect x="3.2951%" y="773" width="0.0656%" height="15" fill="rgb(248,9,4)" fg:x="4823" fg:w="96"/><text x="3.5451%" y="783.50"></text></g><g><title>BitMap::set_intersection_with_result (18 samples, 0.01%)</title><rect x="3.4229%" y="725" width="0.0123%" height="15" fill="rgb(210,31,22)" fg:x="5010" fg:w="18"/><text x="3.6729%" y="735.50"></text></g><g><title>NullCheckEliminator::iterate_one (132 samples, 0.09%)</title><rect x="3.3710%" y="741" width="0.0902%" height="15" fill="rgb(239,54,39)" fg:x="4934" fg:w="132"/><text x="3.6210%" y="751.50"></text></g><g><title>IR::eliminate_null_checks (156 samples, 0.11%)</title><rect x="3.3607%" y="773" width="0.1066%" height="15" fill="rgb(230,99,41)" fg:x="4919" fg:w="156"/><text x="3.6107%" y="783.50"></text></g><g><title>Optimizer::eliminate_null_checks (156 samples, 0.11%)</title><rect x="3.3607%" y="757" width="0.1066%" height="15" fill="rgb(253,106,12)" fg:x="4919" fg:w="156"/><text x="3.6107%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (18 samples, 0.01%)</title><rect x="3.4776%" y="677" width="0.0123%" height="15" fill="rgb(213,46,41)" fg:x="5090" fg:w="18"/><text x="3.7276%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (23 samples, 0.02%)</title><rect x="3.4769%" y="693" width="0.0157%" height="15" fill="rgb(215,133,35)" fg:x="5089" fg:w="23"/><text x="3.7269%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (33 samples, 0.02%)</title><rect x="3.4769%" y="709" width="0.0225%" height="15" fill="rgb(213,28,5)" fg:x="5089" fg:w="33"/><text x="3.7269%" y="719.50"></text></g><g><title>IR::optimize_blocks (60 samples, 0.04%)</title><rect x="3.4673%" y="773" width="0.0410%" height="15" fill="rgb(215,77,49)" fg:x="5075" fg:w="60"/><text x="3.7173%" y="783.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (47 samples, 0.03%)</title><rect x="3.4762%" y="757" width="0.0321%" height="15" fill="rgb(248,100,22)" fg:x="5088" fg:w="47"/><text x="3.7262%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (47 samples, 0.03%)</title><rect x="3.4762%" y="741" width="0.0321%" height="15" fill="rgb(208,67,9)" fg:x="5088" fg:w="47"/><text x="3.7262%" y="751.50"></text></g><g><title>BlockBegin::iterate_preorder (47 samples, 0.03%)</title><rect x="3.4762%" y="725" width="0.0321%" height="15" fill="rgb(219,133,21)" fg:x="5088" fg:w="47"/><text x="3.7262%" y="735.50"></text></g><g><title>BlockBegin::insert_block_between (17 samples, 0.01%)</title><rect x="3.5090%" y="757" width="0.0116%" height="15" fill="rgb(246,46,29)" fg:x="5136" fg:w="17"/><text x="3.7590%" y="767.50"></text></g><g><title>IR::split_critical_edges (33 samples, 0.02%)</title><rect x="3.5083%" y="773" width="0.0225%" height="15" fill="rgb(246,185,52)" fg:x="5135" fg:w="33"/><text x="3.7583%" y="783.50"></text></g><g><title>RangeCheckElimination::eliminate (24 samples, 0.02%)</title><rect x="3.5309%" y="773" width="0.0164%" height="15" fill="rgb(252,136,11)" fg:x="5168" fg:w="24"/><text x="3.7809%" y="783.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (17 samples, 0.01%)</title><rect x="3.5356%" y="757" width="0.0116%" height="15" fill="rgb(219,138,53)" fg:x="5175" fg:w="17"/><text x="3.7856%" y="767.50"></text></g><g><title>Compilation::build_hir (3,611 samples, 2.47%)</title><rect x="1.0829%" y="789" width="2.4671%" height="15" fill="rgb(211,51,23)" fg:x="1585" fg:w="3611"/><text x="1.3329%" y="799.50">Co..</text></g><g><title>LIR_Assembler::add_call_info (27 samples, 0.02%)</title><rect x="3.6108%" y="741" width="0.0184%" height="15" fill="rgb(247,221,28)" fg:x="5285" fg:w="27"/><text x="3.8608%" y="751.50"></text></g><g><title>CodeEmitInfo::record_debug_info (27 samples, 0.02%)</title><rect x="3.6108%" y="725" width="0.0184%" height="15" fill="rgb(251,222,45)" fg:x="5285" fg:w="27"/><text x="3.8608%" y="735.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (26 samples, 0.02%)</title><rect x="3.6422%" y="693" width="0.0178%" height="15" fill="rgb(217,162,53)" fg:x="5331" fg:w="26"/><text x="3.8922%" y="703.50"></text></g><g><title>DebugInformationRecorder::describe_scope (26 samples, 0.02%)</title><rect x="3.6600%" y="693" width="0.0178%" height="15" fill="rgb(229,93,14)" fg:x="5357" fg:w="26"/><text x="3.9100%" y="703.50"></text></g><g><title>LIR_Assembler::add_call_info (72 samples, 0.05%)</title><rect x="3.6340%" y="725" width="0.0492%" height="15" fill="rgb(209,67,49)" fg:x="5319" fg:w="72"/><text x="3.8840%" y="735.50"></text></g><g><title>CodeEmitInfo::record_debug_info (72 samples, 0.05%)</title><rect x="3.6340%" y="709" width="0.0492%" height="15" fill="rgb(213,87,29)" fg:x="5319" fg:w="72"/><text x="3.8840%" y="719.50"></text></g><g><title>LIR_Assembler::call (83 samples, 0.06%)</title><rect x="3.6292%" y="741" width="0.0567%" height="15" fill="rgb(205,151,52)" fg:x="5312" fg:w="83"/><text x="3.8792%" y="751.50"></text></g><g><title>LIR_Assembler::emit_static_call_stub (27 samples, 0.02%)</title><rect x="3.6859%" y="741" width="0.0184%" height="15" fill="rgb(253,215,39)" fg:x="5395" fg:w="27"/><text x="3.9359%" y="751.50"></text></g><g><title>LIR_Assembler::emit_call (147 samples, 0.10%)</title><rect x="3.6081%" y="757" width="0.1004%" height="15" fill="rgb(221,220,41)" fg:x="5281" fg:w="147"/><text x="3.8581%" y="767.50"></text></g><g><title>LIR_Assembler::emit_op0 (27 samples, 0.02%)</title><rect x="3.7085%" y="757" width="0.0184%" height="15" fill="rgb(218,133,21)" fg:x="5428" fg:w="27"/><text x="3.9585%" y="767.50"></text></g><g><title>LIR_Assembler::mem2reg (26 samples, 0.02%)</title><rect x="3.7488%" y="741" width="0.0178%" height="15" fill="rgb(221,193,43)" fg:x="5487" fg:w="26"/><text x="3.9988%" y="751.50"></text></g><g><title>LIR_Assembler::reg2mem (26 samples, 0.02%)</title><rect x="3.7761%" y="741" width="0.0178%" height="15" fill="rgb(240,128,52)" fg:x="5527" fg:w="26"/><text x="4.0261%" y="751.50"></text></g><g><title>LIR_Assembler::emit_op1 (127 samples, 0.09%)</title><rect x="3.7269%" y="757" width="0.0868%" height="15" fill="rgb(253,114,12)" fg:x="5455" fg:w="127"/><text x="3.9769%" y="767.50"></text></g><g><title>LIR_Assembler::emit_op2 (16 samples, 0.01%)</title><rect x="3.8137%" y="757" width="0.0109%" height="15" fill="rgb(215,223,47)" fg:x="5582" fg:w="16"/><text x="4.0637%" y="767.50"></text></g><g><title>LIR_Assembler::type_profile_helper (15 samples, 0.01%)</title><rect x="3.8328%" y="741" width="0.0102%" height="15" fill="rgb(248,225,23)" fg:x="5610" fg:w="15"/><text x="4.0828%" y="751.50"></text></g><g><title>LIR_Assembler::emit_profile_call (53 samples, 0.04%)</title><rect x="3.8246%" y="757" width="0.0362%" height="15" fill="rgb(250,108,0)" fg:x="5598" fg:w="53"/><text x="4.0746%" y="767.50"></text></g><g><title>ciMethodData::bci_to_data (17 samples, 0.01%)</title><rect x="3.8492%" y="741" width="0.0116%" height="15" fill="rgb(228,208,7)" fg:x="5634" fg:w="17"/><text x="4.0992%" y="751.50"></text></g><g><title>LIR_OpAllocObj::emit_code (15 samples, 0.01%)</title><rect x="3.8868%" y="757" width="0.0102%" height="15" fill="rgb(244,45,10)" fg:x="5689" fg:w="15"/><text x="4.1368%" y="767.50"></text></g><g><title>LIR_Assembler::emit_alloc_obj (15 samples, 0.01%)</title><rect x="3.8868%" y="741" width="0.0102%" height="15" fill="rgb(207,125,25)" fg:x="5689" fg:w="15"/><text x="4.1368%" y="751.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (22 samples, 0.02%)</title><rect x="3.9087%" y="757" width="0.0150%" height="15" fill="rgb(210,195,18)" fg:x="5721" fg:w="22"/><text x="4.1587%" y="767.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (22 samples, 0.02%)</title><rect x="3.9087%" y="741" width="0.0150%" height="15" fill="rgb(249,80,12)" fg:x="5721" fg:w="22"/><text x="4.1587%" y="751.50"></text></g><g><title>LIR_Assembler::emit_code (534 samples, 0.36%)</title><rect x="3.5616%" y="773" width="0.3648%" height="15" fill="rgb(221,65,9)" fg:x="5213" fg:w="534"/><text x="3.8116%" y="783.50"></text></g><g><title>Assembler::pusha (21 samples, 0.01%)</title><rect x="3.9510%" y="741" width="0.0143%" height="15" fill="rgb(235,49,36)" fg:x="5783" fg:w="21"/><text x="4.2010%" y="751.50"></text></g><g><title>Assembler::movq (15 samples, 0.01%)</title><rect x="3.9551%" y="725" width="0.0102%" height="15" fill="rgb(225,32,20)" fg:x="5789" fg:w="15"/><text x="4.2051%" y="735.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (42 samples, 0.03%)</title><rect x="3.9374%" y="773" width="0.0287%" height="15" fill="rgb(215,141,46)" fg:x="5763" fg:w="42"/><text x="4.1874%" y="783.50"></text></g><g><title>MacroAssembler::stop (34 samples, 0.02%)</title><rect x="3.9428%" y="757" width="0.0232%" height="15" fill="rgb(250,160,47)" fg:x="5771" fg:w="34"/><text x="4.1928%" y="767.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (16 samples, 0.01%)</title><rect x="3.9872%" y="693" width="0.0109%" height="15" fill="rgb(216,222,40)" fg:x="5836" fg:w="16"/><text x="4.2372%" y="703.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (31 samples, 0.02%)</title><rect x="3.9790%" y="709" width="0.0212%" height="15" fill="rgb(234,217,39)" fg:x="5824" fg:w="31"/><text x="4.2290%" y="719.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (15 samples, 0.01%)</title><rect x="4.0064%" y="693" width="0.0102%" height="15" fill="rgb(207,178,40)" fg:x="5864" fg:w="15"/><text x="4.2564%" y="703.50"></text></g><g><title>DebugInformationRecorder::describe_scope (28 samples, 0.02%)</title><rect x="4.0002%" y="709" width="0.0191%" height="15" fill="rgb(221,136,13)" fg:x="5855" fg:w="28"/><text x="4.2502%" y="719.50"></text></g><g><title>LIR_Assembler::add_call_info (78 samples, 0.05%)</title><rect x="3.9736%" y="741" width="0.0533%" height="15" fill="rgb(249,199,10)" fg:x="5816" fg:w="78"/><text x="4.2236%" y="751.50"></text></g><g><title>CodeEmitInfo::record_debug_info (76 samples, 0.05%)</title><rect x="3.9749%" y="725" width="0.0519%" height="15" fill="rgb(249,222,13)" fg:x="5818" fg:w="76"/><text x="4.2249%" y="735.50"></text></g><g><title>CounterOverflowStub::emit_code (97 samples, 0.07%)</title><rect x="3.9695%" y="757" width="0.0663%" height="15" fill="rgb(244,185,38)" fg:x="5810" fg:w="97"/><text x="4.2195%" y="767.50"></text></g><g><title>LIR_Assembler::add_call_info (36 samples, 0.02%)</title><rect x="4.0460%" y="741" width="0.0246%" height="15" fill="rgb(236,202,9)" fg:x="5922" fg:w="36"/><text x="4.2960%" y="751.50"></text></g><g><title>CodeEmitInfo::record_debug_info (34 samples, 0.02%)</title><rect x="4.0474%" y="725" width="0.0232%" height="15" fill="rgb(250,229,37)" fg:x="5924" fg:w="34"/><text x="4.2974%" y="735.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (44 samples, 0.03%)</title><rect x="4.0446%" y="757" width="0.0301%" height="15" fill="rgb(206,174,23)" fg:x="5920" fg:w="44"/><text x="4.2946%" y="767.50"></text></g><g><title>LIR_Assembler::add_call_info (25 samples, 0.02%)</title><rect x="4.0788%" y="741" width="0.0171%" height="15" fill="rgb(211,33,43)" fg:x="5970" fg:w="25"/><text x="4.3288%" y="751.50"></text></g><g><title>CodeEmitInfo::record_debug_info (24 samples, 0.02%)</title><rect x="4.0795%" y="725" width="0.0164%" height="15" fill="rgb(245,58,50)" fg:x="5971" fg:w="24"/><text x="4.3295%" y="735.50"></text></g><g><title>NewInstanceStub::emit_code (30 samples, 0.02%)</title><rect x="4.0781%" y="757" width="0.0205%" height="15" fill="rgb(244,68,36)" fg:x="5969" fg:w="30"/><text x="4.3281%" y="767.50"></text></g><g><title>LIR_Assembler::add_call_info (17 samples, 0.01%)</title><rect x="4.1054%" y="741" width="0.0116%" height="15" fill="rgb(232,229,15)" fg:x="6009" fg:w="17"/><text x="4.3554%" y="751.50"></text></g><g><title>CodeEmitInfo::record_debug_info (16 samples, 0.01%)</title><rect x="4.1061%" y="725" width="0.0109%" height="15" fill="rgb(254,30,23)" fg:x="6010" fg:w="16"/><text x="4.3561%" y="735.50"></text></g><g><title>PatchingStub::emit_code (31 samples, 0.02%)</title><rect x="4.1027%" y="757" width="0.0212%" height="15" fill="rgb(235,160,14)" fg:x="6005" fg:w="31"/><text x="4.3527%" y="767.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (251 samples, 0.17%)</title><rect x="3.9661%" y="773" width="0.1715%" height="15" fill="rgb(212,155,44)" fg:x="5805" fg:w="251"/><text x="4.2161%" y="783.50"></text></g><g><title>Compilation::emit_code_body (874 samples, 0.60%)</title><rect x="3.5500%" y="789" width="0.5971%" height="15" fill="rgb(226,2,50)" fg:x="5196" fg:w="874"/><text x="3.8000%" y="799.50"></text></g><g><title>LIRGenerator::block_do_prolog (18 samples, 0.01%)</title><rect x="4.1669%" y="741" width="0.0123%" height="15" fill="rgb(234,177,6)" fg:x="6099" fg:w="18"/><text x="4.4169%" y="751.50"></text></g><g><title>GrowableArray&lt;Instruction*&gt;::grow (22 samples, 0.02%)</title><rect x="4.1936%" y="725" width="0.0150%" height="15" fill="rgb(217,24,9)" fg:x="6138" fg:w="22"/><text x="4.4436%" y="735.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (16 samples, 0.01%)</title><rect x="4.2086%" y="709" width="0.0109%" height="15" fill="rgb(220,13,46)" fg:x="6160" fg:w="16"/><text x="4.4586%" y="719.50"></text></g><g><title>LIRGenerator::increment_event_counter (19 samples, 0.01%)</title><rect x="4.2086%" y="725" width="0.0130%" height="15" fill="rgb(239,221,27)" fg:x="6160" fg:w="19"/><text x="4.4586%" y="735.50"></text></g><g><title>LIRGenerator::do_Base (71 samples, 0.05%)</title><rect x="4.1826%" y="741" width="0.0485%" height="15" fill="rgb(222,198,25)" fg:x="6122" fg:w="71"/><text x="4.4326%" y="751.50"></text></g><g><title>LIRGenerator::move_to_phi (30 samples, 0.02%)</title><rect x="4.2510%" y="709" width="0.0205%" height="15" fill="rgb(211,99,13)" fg:x="6222" fg:w="30"/><text x="4.5010%" y="719.50"></text></g><g><title>PhiResolver::create_node (27 samples, 0.02%)</title><rect x="4.2530%" y="693" width="0.0184%" height="15" fill="rgb(232,111,31)" fg:x="6225" fg:w="27"/><text x="4.5030%" y="703.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (29 samples, 0.02%)</title><rect x="4.3268%" y="693" width="0.0198%" height="15" fill="rgb(245,82,37)" fg:x="6333" fg:w="29"/><text x="4.5768%" y="703.50"></text></g><g><title>LIRGenerator::move_to_phi (153 samples, 0.10%)</title><rect x="4.2428%" y="725" width="0.1045%" height="15" fill="rgb(227,149,46)" fg:x="6210" fg:w="153"/><text x="4.4928%" y="735.50"></text></g><g><title>PhiResolverState::reset (109 samples, 0.07%)</title><rect x="4.2728%" y="709" width="0.0745%" height="15" fill="rgb(218,36,50)" fg:x="6254" fg:w="109"/><text x="4.5228%" y="719.50"></text></g><g><title>LIRGenerator::do_Goto (174 samples, 0.12%)</title><rect x="4.2325%" y="741" width="0.1189%" height="15" fill="rgb(226,80,48)" fg:x="6195" fg:w="174"/><text x="4.4825%" y="751.50"></text></g><g><title>LIRGenerator::profile_branch (23 samples, 0.02%)</title><rect x="4.3610%" y="725" width="0.0157%" height="15" fill="rgb(238,224,15)" fg:x="6383" fg:w="23"/><text x="4.6110%" y="735.50"></text></g><g><title>LIRGenerator::do_If (46 samples, 0.03%)</title><rect x="4.3514%" y="741" width="0.0314%" height="15" fill="rgb(241,136,10)" fg:x="6369" fg:w="46"/><text x="4.6014%" y="751.50"></text></g><g><title>LIRGenerator::invoke_load_arguments (20 samples, 0.01%)</title><rect x="4.4033%" y="725" width="0.0137%" height="15" fill="rgb(208,32,45)" fg:x="6445" fg:w="20"/><text x="4.6533%" y="735.50"></text></g><g><title>LIRItem::load_item_force (17 samples, 0.01%)</title><rect x="4.4054%" y="709" width="0.0116%" height="15" fill="rgb(207,135,9)" fg:x="6448" fg:w="17"/><text x="4.6554%" y="719.50"></text></g><g><title>LIRGenerator::invoke_visit_arguments (22 samples, 0.02%)</title><rect x="4.4170%" y="725" width="0.0150%" height="15" fill="rgb(206,86,44)" fg:x="6465" fg:w="22"/><text x="4.6670%" y="735.50"></text></g><g><title>MethodLiveness::get_liveness_at (21 samples, 0.01%)</title><rect x="4.4484%" y="693" width="0.0143%" height="15" fill="rgb(245,177,15)" fg:x="6511" fg:w="21"/><text x="4.6984%" y="703.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (17 samples, 0.01%)</title><rect x="4.4511%" y="677" width="0.0116%" height="15" fill="rgb(206,64,50)" fg:x="6515" fg:w="17"/><text x="4.7011%" y="687.50"></text></g><g><title>LIRGenerator::state_for (45 samples, 0.03%)</title><rect x="4.4347%" y="725" width="0.0307%" height="15" fill="rgb(234,36,40)" fg:x="6491" fg:w="45"/><text x="4.6847%" y="735.50"></text></g><g><title>ciMethod::liveness_at_bci (25 samples, 0.02%)</title><rect x="4.4484%" y="709" width="0.0171%" height="15" fill="rgb(213,64,8)" fg:x="6511" fg:w="25"/><text x="4.6984%" y="719.50"></text></g><g><title>LIRGenerator::do_Invoke (124 samples, 0.08%)</title><rect x="4.3856%" y="741" width="0.0847%" height="15" fill="rgb(210,75,36)" fg:x="6419" fg:w="124"/><text x="4.6356%" y="751.50"></text></g><g><title>LIRGenerator::do_LoadField (26 samples, 0.02%)</title><rect x="4.4703%" y="741" width="0.0178%" height="15" fill="rgb(229,88,21)" fg:x="6543" fg:w="26"/><text x="4.7203%" y="751.50"></text></g><g><title>LIRGenerator::do_NewInstance (26 samples, 0.02%)</title><rect x="4.4962%" y="741" width="0.0178%" height="15" fill="rgb(252,204,47)" fg:x="6581" fg:w="26"/><text x="4.7462%" y="751.50"></text></g><g><title>LIRGenerator::state_for (16 samples, 0.01%)</title><rect x="4.5031%" y="725" width="0.0109%" height="15" fill="rgb(208,77,27)" fg:x="6591" fg:w="16"/><text x="4.7531%" y="735.50"></text></g><g><title>LIRGenerator::do_ProfileCall (19 samples, 0.01%)</title><rect x="4.5222%" y="741" width="0.0130%" height="15" fill="rgb(221,76,26)" fg:x="6619" fg:w="19"/><text x="4.7722%" y="751.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (26 samples, 0.02%)</title><rect x="4.5372%" y="725" width="0.0178%" height="15" fill="rgb(225,139,18)" fg:x="6641" fg:w="26"/><text x="4.7872%" y="735.50"></text></g><g><title>MethodLiveness::get_liveness_at (25 samples, 0.02%)</title><rect x="4.5700%" y="693" width="0.0171%" height="15" fill="rgb(230,137,11)" fg:x="6689" fg:w="25"/><text x="4.8200%" y="703.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (18 samples, 0.01%)</title><rect x="4.5748%" y="677" width="0.0123%" height="15" fill="rgb(212,28,1)" fg:x="6696" fg:w="18"/><text x="4.8248%" y="687.50"></text></g><g><title>LIRGenerator::state_for (48 samples, 0.03%)</title><rect x="4.5550%" y="725" width="0.0328%" height="15" fill="rgb(248,164,17)" fg:x="6667" fg:w="48"/><text x="4.8050%" y="735.50"></text></g><g><title>ciMethod::liveness_at_bci (29 samples, 0.02%)</title><rect x="4.5680%" y="709" width="0.0198%" height="15" fill="rgb(222,171,42)" fg:x="6686" fg:w="29"/><text x="4.8180%" y="719.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (83 samples, 0.06%)</title><rect x="4.5352%" y="741" width="0.0567%" height="15" fill="rgb(243,84,45)" fg:x="6638" fg:w="83"/><text x="4.7852%" y="751.50"></text></g><g><title>LIRGenerator::access_store_at (19 samples, 0.01%)</title><rect x="4.5980%" y="725" width="0.0130%" height="15" fill="rgb(252,49,23)" fg:x="6730" fg:w="19"/><text x="4.8480%" y="735.50"></text></g><g><title>LIRGenerator::do_StoreField (25 samples, 0.02%)</title><rect x="4.5960%" y="741" width="0.0171%" height="15" fill="rgb(215,19,7)" fg:x="6727" fg:w="25"/><text x="4.8460%" y="751.50"></text></g><g><title>LIRGenerator::block_do (692 samples, 0.47%)</title><rect x="4.1519%" y="757" width="0.4728%" height="15" fill="rgb(238,81,41)" fg:x="6077" fg:w="692"/><text x="4.4019%" y="767.50"></text></g><g><title>BlockList::iterate_forward (695 samples, 0.47%)</title><rect x="4.1505%" y="773" width="0.4748%" height="15" fill="rgb(210,199,37)" fg:x="6075" fg:w="695"/><text x="4.4005%" y="783.50"></text></g><g><title>ControlFlowOptimizer::delete_empty_blocks (15 samples, 0.01%)</title><rect x="4.6281%" y="757" width="0.0102%" height="15" fill="rgb(244,192,49)" fg:x="6774" fg:w="15"/><text x="4.8781%" y="767.50"></text></g><g><title>ControlFlowOptimizer::optimize (33 samples, 0.02%)</title><rect x="4.6254%" y="773" width="0.0225%" height="15" fill="rgb(226,211,11)" fg:x="6770" fg:w="33"/><text x="4.8754%" y="783.50"></text></g><g><title>IntervalWalker::walk_to (97 samples, 0.07%)</title><rect x="4.7053%" y="725" width="0.0663%" height="15" fill="rgb(236,162,54)" fg:x="6887" fg:w="97"/><text x="4.9553%" y="735.50"></text></g><g><title>LinearScanWalker::find_free_reg (93 samples, 0.06%)</title><rect x="4.8173%" y="693" width="0.0635%" height="15" fill="rgb(220,229,9)" fg:x="7051" fg:w="93"/><text x="5.0673%" y="703.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_any (19 samples, 0.01%)</title><rect x="4.8809%" y="693" width="0.0130%" height="15" fill="rgb(250,87,22)" fg:x="7144" fg:w="19"/><text x="5.1309%" y="703.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (128 samples, 0.09%)</title><rect x="4.8939%" y="693" width="0.0875%" height="15" fill="rgb(239,43,17)" fg:x="7163" fg:w="128"/><text x="5.1439%" y="703.50"></text></g><g><title>Range::intersects_at (17 samples, 0.01%)</title><rect x="4.9697%" y="677" width="0.0116%" height="15" fill="rgb(231,177,25)" fg:x="7274" fg:w="17"/><text x="5.2197%" y="687.50"></text></g><g><title>Interval::new_split_child (28 samples, 0.02%)</title><rect x="4.9936%" y="661" width="0.0191%" height="15" fill="rgb(219,179,1)" fg:x="7309" fg:w="28"/><text x="5.2436%" y="671.50"></text></g><g><title>Interval::split (37 samples, 0.03%)</title><rect x="4.9888%" y="677" width="0.0253%" height="15" fill="rgb(238,219,53)" fg:x="7302" fg:w="37"/><text x="5.2388%" y="687.50"></text></g><g><title>LinearScanWalker::split_before_usage (57 samples, 0.04%)</title><rect x="4.9813%" y="693" width="0.0389%" height="15" fill="rgb(232,167,36)" fg:x="7291" fg:w="57"/><text x="5.2313%" y="703.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (347 samples, 0.24%)</title><rect x="4.7845%" y="709" width="0.2371%" height="15" fill="rgb(244,19,51)" fg:x="7003" fg:w="347"/><text x="5.0345%" y="719.50"></text></g><g><title>IntervalWalker::append_to_unhandled (29 samples, 0.02%)</title><rect x="5.0476%" y="677" width="0.0198%" height="15" fill="rgb(224,6,22)" fg:x="7388" fg:w="29"/><text x="5.2976%" y="687.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (47 samples, 0.03%)</title><rect x="5.0476%" y="693" width="0.0321%" height="15" fill="rgb(224,145,5)" fg:x="7388" fg:w="47"/><text x="5.2976%" y="703.50"></text></g><g><title>LinearScanWalker::split_before_usage (18 samples, 0.01%)</title><rect x="5.0674%" y="677" width="0.0123%" height="15" fill="rgb(234,130,49)" fg:x="7417" fg:w="18"/><text x="5.3174%" y="687.50"></text></g><g><title>Interval::split_child_before_op_id (20 samples, 0.01%)</title><rect x="5.0838%" y="677" width="0.0137%" height="15" fill="rgb(254,6,2)" fg:x="7441" fg:w="20"/><text x="5.3338%" y="687.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (115 samples, 0.08%)</title><rect x="5.0216%" y="709" width="0.0786%" height="15" fill="rgb(208,96,46)" fg:x="7350" fg:w="115"/><text x="5.2716%" y="719.50"></text></g><g><title>LinearScanWalker::split_for_spilling (30 samples, 0.02%)</title><rect x="5.0797%" y="693" width="0.0205%" height="15" fill="rgb(239,3,39)" fg:x="7435" fg:w="30"/><text x="5.3297%" y="703.50"></text></g><g><title>LinearScanWalker::init_vars_for_alloc (15 samples, 0.01%)</title><rect x="5.1070%" y="709" width="0.0102%" height="15" fill="rgb(233,210,1)" fg:x="7475" fg:w="15"/><text x="5.3570%" y="719.50"></text></g><g><title>LinearScanWalker::insert_move (34 samples, 0.02%)</title><rect x="5.1173%" y="709" width="0.0232%" height="15" fill="rgb(244,137,37)" fg:x="7490" fg:w="34"/><text x="5.3673%" y="719.50"></text></g><g><title>LinearScanWalker::activate_current (545 samples, 0.37%)</title><rect x="4.7716%" y="725" width="0.3724%" height="15" fill="rgb(240,136,2)" fg:x="6984" fg:w="545"/><text x="5.0216%" y="735.50"></text></g><g><title>IntervalWalker::walk_to (690 samples, 0.47%)</title><rect x="4.6732%" y="741" width="0.4714%" height="15" fill="rgb(239,18,37)" fg:x="6840" fg:w="690"/><text x="4.9232%" y="751.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (46 samples, 0.03%)</title><rect x="5.1460%" y="741" width="0.0314%" height="15" fill="rgb(218,185,22)" fg:x="7532" fg:w="46"/><text x="5.3960%" y="751.50"></text></g><g><title>resource_allocate_bytes (35 samples, 0.02%)</title><rect x="5.1535%" y="725" width="0.0239%" height="15" fill="rgb(225,218,4)" fg:x="7543" fg:w="35"/><text x="5.4035%" y="735.50"></text></g><g><title>LinearScan::allocate_registers (754 samples, 0.52%)</title><rect x="4.6650%" y="757" width="0.5151%" height="15" fill="rgb(230,182,32)" fg:x="6828" fg:w="754"/><text x="4.9150%" y="767.50"></text></g><g><title>LIR_OpVisitState::visit (70 samples, 0.05%)</title><rect x="5.2614%" y="725" width="0.0478%" height="15" fill="rgb(242,56,43)" fg:x="7701" fg:w="70"/><text x="5.5114%" y="735.50"></text></g><g><title>LIR_OpVisitState::append (23 samples, 0.02%)</title><rect x="5.2935%" y="709" width="0.0157%" height="15" fill="rgb(233,99,24)" fg:x="7748" fg:w="23"/><text x="5.5435%" y="719.50"></text></g><g><title>Interval::split_child_at_op_id (16 samples, 0.01%)</title><rect x="5.3277%" y="709" width="0.0109%" height="15" fill="rgb(234,209,42)" fg:x="7798" fg:w="16"/><text x="5.5777%" y="719.50"></text></g><g><title>LinearScan::color_lir_opr (47 samples, 0.03%)</title><rect x="5.3113%" y="725" width="0.0321%" height="15" fill="rgb(227,7,12)" fg:x="7774" fg:w="47"/><text x="5.5613%" y="735.50"></text></g><g><title>LinearScan::append_scope_value (24 samples, 0.02%)</title><rect x="5.3578%" y="709" width="0.0164%" height="15" fill="rgb(245,203,43)" fg:x="7842" fg:w="24"/><text x="5.6078%" y="719.50"></text></g><g><title>LinearScan::append_scope_value (16 samples, 0.01%)</title><rect x="5.3865%" y="693" width="0.0109%" height="15" fill="rgb(238,205,33)" fg:x="7884" fg:w="16"/><text x="5.6365%" y="703.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (16 samples, 0.01%)</title><rect x="5.4138%" y="677" width="0.0109%" height="15" fill="rgb(231,56,7)" fg:x="7924" fg:w="16"/><text x="5.6638%" y="687.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (40 samples, 0.03%)</title><rect x="5.4008%" y="693" width="0.0273%" height="15" fill="rgb(244,186,29)" fg:x="7905" fg:w="40"/><text x="5.6508%" y="703.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (79 samples, 0.05%)</title><rect x="5.3810%" y="709" width="0.0540%" height="15" fill="rgb(234,111,31)" fg:x="7876" fg:w="79"/><text x="5.6310%" y="719.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (150 samples, 0.10%)</title><rect x="5.3434%" y="725" width="0.1025%" height="15" fill="rgb(241,149,10)" fg:x="7821" fg:w="150"/><text x="5.5934%" y="735.50"></text></g><g><title>IntervalWalker::walk_to (62 samples, 0.04%)</title><rect x="5.4643%" y="693" width="0.0424%" height="15" fill="rgb(249,206,44)" fg:x="7998" fg:w="62"/><text x="5.7143%" y="703.50"></text></g><g><title>LinearScan::compute_oop_map (106 samples, 0.07%)</title><rect x="5.4555%" y="709" width="0.0724%" height="15" fill="rgb(251,153,30)" fg:x="7985" fg:w="106"/><text x="5.7055%" y="719.50"></text></g><g><title>LinearScan::assign_reg_num (505 samples, 0.35%)</title><rect x="5.1835%" y="741" width="0.3450%" height="15" fill="rgb(239,152,38)" fg:x="7587" fg:w="505"/><text x="5.4335%" y="751.50"></text></g><g><title>LinearScan::compute_oop_map (121 samples, 0.08%)</title><rect x="5.4459%" y="725" width="0.0827%" height="15" fill="rgb(249,139,47)" fg:x="7971" fg:w="121"/><text x="5.6959%" y="735.50"></text></g><g><title>LinearScan::assign_reg_num (528 samples, 0.36%)</title><rect x="5.1801%" y="757" width="0.3607%" height="15" fill="rgb(244,64,35)" fg:x="7582" fg:w="528"/><text x="5.4301%" y="767.50"></text></g><g><title>LinearScan::init_compute_oop_maps (15 samples, 0.01%)</title><rect x="5.5306%" y="741" width="0.0102%" height="15" fill="rgb(216,46,15)" fg:x="8095" fg:w="15"/><text x="5.7806%" y="751.50"></text></g><g><title>BitMap::get_next_one_offset (31 samples, 0.02%)</title><rect x="5.6529%" y="741" width="0.0212%" height="15" fill="rgb(250,74,19)" fg:x="8274" fg:w="31"/><text x="5.9029%" y="751.50"></text></g><g><title>LIR_OpVisitState::append (17 samples, 0.01%)</title><rect x="5.7212%" y="725" width="0.0116%" height="15" fill="rgb(249,42,33)" fg:x="8374" fg:w="17"/><text x="5.9712%" y="735.50"></text></g><g><title>LIR_OpVisitState::visit (56 samples, 0.04%)</title><rect x="5.6953%" y="741" width="0.0383%" height="15" fill="rgb(242,149,17)" fg:x="8336" fg:w="56"/><text x="5.9453%" y="751.50"></text></g><g><title>LinearScan::add_def (52 samples, 0.04%)</title><rect x="5.7335%" y="741" width="0.0355%" height="15" fill="rgb(244,29,21)" fg:x="8392" fg:w="52"/><text x="5.9835%" y="751.50"></text></g><g><title>LinearScan::add_register_hints (20 samples, 0.01%)</title><rect x="5.7691%" y="741" width="0.0137%" height="15" fill="rgb(220,130,37)" fg:x="8444" fg:w="20"/><text x="6.0191%" y="751.50"></text></g><g><title>Interval::add_range (32 samples, 0.02%)</title><rect x="5.7861%" y="725" width="0.0219%" height="15" fill="rgb(211,67,2)" fg:x="8469" fg:w="32"/><text x="6.0361%" y="735.50"></text></g><g><title>Interval::Interval (36 samples, 0.02%)</title><rect x="5.8107%" y="709" width="0.0246%" height="15" fill="rgb(235,68,52)" fg:x="8505" fg:w="36"/><text x="6.0607%" y="719.50"></text></g><g><title>resource_allocate_bytes (22 samples, 0.02%)</title><rect x="5.8203%" y="693" width="0.0150%" height="15" fill="rgb(246,142,3)" fg:x="8519" fg:w="22"/><text x="6.0703%" y="703.50"></text></g><g><title>LinearScan::create_interval (44 samples, 0.03%)</title><rect x="5.8080%" y="725" width="0.0301%" height="15" fill="rgb(241,25,7)" fg:x="8501" fg:w="44"/><text x="6.0580%" y="735.50"></text></g><g><title>LinearScan::add_temp (83 samples, 0.06%)</title><rect x="5.7827%" y="741" width="0.0567%" height="15" fill="rgb(242,119,39)" fg:x="8464" fg:w="83"/><text x="6.0327%" y="751.50"></text></g><g><title>Interval::add_range (28 samples, 0.02%)</title><rect x="5.8702%" y="725" width="0.0191%" height="15" fill="rgb(241,98,45)" fg:x="8592" fg:w="28"/><text x="6.1202%" y="735.50"></text></g><g><title>Interval::Interval (50 samples, 0.03%)</title><rect x="5.9016%" y="709" width="0.0342%" height="15" fill="rgb(254,28,30)" fg:x="8638" fg:w="50"/><text x="6.1516%" y="719.50"></text></g><g><title>resource_allocate_bytes (26 samples, 0.02%)</title><rect x="5.9180%" y="693" width="0.0178%" height="15" fill="rgb(241,142,54)" fg:x="8662" fg:w="26"/><text x="6.1680%" y="703.50"></text></g><g><title>LinearScan::create_interval (76 samples, 0.05%)</title><rect x="5.8893%" y="725" width="0.0519%" height="15" fill="rgb(222,85,15)" fg:x="8620" fg:w="76"/><text x="6.1393%" y="735.50"></text></g><g><title>LinearScan::add_use (151 samples, 0.10%)</title><rect x="5.8394%" y="741" width="0.1032%" height="15" fill="rgb(210,85,47)" fg:x="8547" fg:w="151"/><text x="6.0894%" y="751.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (22 samples, 0.02%)</title><rect x="5.9453%" y="741" width="0.0150%" height="15" fill="rgb(224,206,25)" fg:x="8702" fg:w="22"/><text x="6.1953%" y="751.50"></text></g><g><title>LinearScan::use_kind_of_output_operand (23 samples, 0.02%)</title><rect x="5.9604%" y="741" width="0.0157%" height="15" fill="rgb(243,201,19)" fg:x="8724" fg:w="23"/><text x="6.2104%" y="751.50"></text></g><g><title>LinearScan::build_intervals (643 samples, 0.44%)</title><rect x="5.5409%" y="757" width="0.4393%" height="15" fill="rgb(236,59,4)" fg:x="8110" fg:w="643"/><text x="5.7909%" y="767.50"></text></g><g><title>LinearScan::compute_global_live_sets (53 samples, 0.04%)</title><rect x="5.9802%" y="757" width="0.0362%" height="15" fill="rgb(254,179,45)" fg:x="8753" fg:w="53"/><text x="6.2302%" y="767.50"></text></g><g><title>LIR_OpVisitState::visit (81 samples, 0.06%)</title><rect x="6.0902%" y="741" width="0.0553%" height="15" fill="rgb(226,14,10)" fg:x="8914" fg:w="81"/><text x="6.3402%" y="751.50"></text></g><g><title>LIR_OpVisitState::append (33 samples, 0.02%)</title><rect x="6.1230%" y="725" width="0.0225%" height="15" fill="rgb(244,27,41)" fg:x="8962" fg:w="33"/><text x="6.3730%" y="735.50"></text></g><g><title>LinearScan::compute_local_live_sets (231 samples, 0.16%)</title><rect x="6.0164%" y="757" width="0.1578%" height="15" fill="rgb(235,35,32)" fg:x="8806" fg:w="231"/><text x="6.2664%" y="767.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (30 samples, 0.02%)</title><rect x="6.1537%" y="741" width="0.0205%" height="15" fill="rgb(218,68,31)" fg:x="9007" fg:w="30"/><text x="6.4037%" y="751.50"></text></g><g><title>resource_allocate_bytes (21 samples, 0.01%)</title><rect x="6.1599%" y="725" width="0.0143%" height="15" fill="rgb(207,120,37)" fg:x="9016" fg:w="21"/><text x="6.4099%" y="735.50"></text></g><g><title>LinearScan::eliminate_spill_moves (52 samples, 0.04%)</title><rect x="6.1742%" y="757" width="0.0355%" height="15" fill="rgb(227,98,0)" fg:x="9037" fg:w="52"/><text x="6.4242%" y="767.50"></text></g><g><title>LinearScan::number_instructions (34 samples, 0.02%)</title><rect x="6.2097%" y="757" width="0.0232%" height="15" fill="rgb(207,7,3)" fg:x="9089" fg:w="34"/><text x="6.4597%" y="767.50"></text></g><g><title>Interval::split_child_at_op_id (33 samples, 0.02%)</title><rect x="6.2767%" y="725" width="0.0225%" height="15" fill="rgb(206,98,19)" fg:x="9187" fg:w="33"/><text x="6.5267%" y="735.50"></text></g><g><title>LinearScan::resolve_collect_mappings (68 samples, 0.05%)</title><rect x="6.2535%" y="741" width="0.0465%" height="15" fill="rgb(217,5,26)" fg:x="9153" fg:w="68"/><text x="6.5035%" y="751.50"></text></g><g><title>LinearScan::resolve_data_flow (107 samples, 0.07%)</title><rect x="6.2364%" y="757" width="0.0731%" height="15" fill="rgb(235,190,38)" fg:x="9128" fg:w="107"/><text x="6.4864%" y="767.50"></text></g><g><title>LinearScan::resolve_exception_edge (18 samples, 0.01%)</title><rect x="6.3231%" y="741" width="0.0123%" height="15" fill="rgb(247,86,24)" fg:x="9255" fg:w="18"/><text x="6.5731%" y="751.50"></text></g><g><title>LinearScan::resolve_exception_handlers (39 samples, 0.03%)</title><rect x="6.3095%" y="757" width="0.0266%" height="15" fill="rgb(205,101,16)" fg:x="9235" fg:w="39"/><text x="6.5595%" y="767.50"></text></g><g><title>__GI___qsort_r (19 samples, 0.01%)</title><rect x="6.3498%" y="741" width="0.0130%" height="15" fill="rgb(246,168,33)" fg:x="9294" fg:w="19"/><text x="6.5998%" y="751.50"></text></g><g><title>msort_with_tmp (15 samples, 0.01%)</title><rect x="6.3525%" y="725" width="0.0102%" height="15" fill="rgb(231,114,1)" fg:x="9298" fg:w="15"/><text x="6.6025%" y="735.50"></text></g><g><title>msort_with_tmp (15 samples, 0.01%)</title><rect x="6.3525%" y="709" width="0.0102%" height="15" fill="rgb(207,184,53)" fg:x="9298" fg:w="15"/><text x="6.6025%" y="719.50"></text></g><g><title>msort_with_tmp (15 samples, 0.01%)</title><rect x="6.3525%" y="693" width="0.0102%" height="15" fill="rgb(224,95,51)" fg:x="9298" fg:w="15"/><text x="6.6025%" y="703.50"></text></g><g><title>msort_with_tmp (15 samples, 0.01%)</title><rect x="6.3525%" y="677" width="0.0102%" height="15" fill="rgb(212,188,45)" fg:x="9298" fg:w="15"/><text x="6.6025%" y="687.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (41 samples, 0.03%)</title><rect x="6.3361%" y="757" width="0.0280%" height="15" fill="rgb(223,154,38)" fg:x="9274" fg:w="41"/><text x="6.5861%" y="767.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (40 samples, 0.03%)</title><rect x="6.3641%" y="757" width="0.0273%" height="15" fill="rgb(251,22,52)" fg:x="9315" fg:w="40"/><text x="6.6141%" y="767.50"></text></g><g><title>LinearScan::do_linear_scan (2,544 samples, 1.74%)</title><rect x="4.6541%" y="773" width="1.7381%" height="15" fill="rgb(229,209,22)" fg:x="6812" fg:w="2544"/><text x="4.9041%" y="783.50"></text></g><g><title>Compilation::emit_lir (3,290 samples, 2.25%)</title><rect x="4.1471%" y="789" width="2.2478%" height="15" fill="rgb(234,138,34)" fg:x="6070" fg:w="3290"/><text x="4.3971%" y="799.50">C..</text></g><g><title>Metaspace::allocate (17 samples, 0.01%)</title><rect x="6.4065%" y="725" width="0.0116%" height="15" fill="rgb(212,95,11)" fg:x="9377" fg:w="17"/><text x="6.6565%" y="735.50"></text></g><g><title>MethodData::post_initialize (16 samples, 0.01%)</title><rect x="6.4331%" y="709" width="0.0109%" height="15" fill="rgb(240,179,47)" fg:x="9416" fg:w="16"/><text x="6.6831%" y="719.50"></text></g><g><title>MethodData::initialize (32 samples, 0.02%)</title><rect x="6.4263%" y="725" width="0.0219%" height="15" fill="rgb(240,163,11)" fg:x="9406" fg:w="32"/><text x="6.6763%" y="735.50"></text></g><g><title>Method::build_interpreter_method_data (62 samples, 0.04%)</title><rect x="6.4065%" y="757" width="0.0424%" height="15" fill="rgb(236,37,12)" fg:x="9377" fg:w="62"/><text x="6.6565%" y="767.50"></text></g><g><title>MethodData::allocate (62 samples, 0.04%)</title><rect x="6.4065%" y="741" width="0.0424%" height="15" fill="rgb(232,164,16)" fg:x="9377" fg:w="62"/><text x="6.6565%" y="751.50"></text></g><g><title>ciMethodData::load_data (30 samples, 0.02%)</title><rect x="6.4489%" y="757" width="0.0205%" height="15" fill="rgb(244,205,15)" fg:x="9439" fg:w="30"/><text x="6.6989%" y="767.50"></text></g><g><title>Compilation::compile_java_method (7,896 samples, 5.39%)</title><rect x="1.0788%" y="805" width="5.3947%" height="15" fill="rgb(223,117,47)" fg:x="1579" fg:w="7896"/><text x="1.3288%" y="815.50">Compila..</text></g><g><title>ciMethod::ensure_method_data (102 samples, 0.07%)</title><rect x="6.4038%" y="789" width="0.0697%" height="15" fill="rgb(244,107,35)" fg:x="9373" fg:w="102"/><text x="6.6538%" y="799.50"></text></g><g><title>ciMethod::ensure_method_data (99 samples, 0.07%)</title><rect x="6.4058%" y="773" width="0.0676%" height="15" fill="rgb(205,140,8)" fg:x="9376" fg:w="99"/><text x="6.6558%" y="783.50"></text></g><g><title>DebugInformationRecorder::DebugInformationRecorder (15 samples, 0.01%)</title><rect x="6.4735%" y="789" width="0.0102%" height="15" fill="rgb(228,84,46)" fg:x="9475" fg:w="15"/><text x="6.7235%" y="799.50"></text></g><g><title>Dependencies::initialize (22 samples, 0.02%)</title><rect x="6.4837%" y="789" width="0.0150%" height="15" fill="rgb(254,188,9)" fg:x="9490" fg:w="22"/><text x="6.7337%" y="799.50"></text></g><g><title>Compilation::initialize (40 samples, 0.03%)</title><rect x="6.4735%" y="805" width="0.0273%" height="15" fill="rgb(206,112,54)" fg:x="9475" fg:w="40"/><text x="6.7235%" y="815.50"></text></g><g><title>CodeBuffer::finalize_oop_references (58 samples, 0.04%)</title><rect x="6.5500%" y="773" width="0.0396%" height="15" fill="rgb(216,84,49)" fg:x="9587" fg:w="58"/><text x="6.8000%" y="783.50"></text></g><g><title>CodeHeap::allocate (29 samples, 0.02%)</title><rect x="6.5896%" y="757" width="0.0198%" height="15" fill="rgb(214,194,35)" fg:x="9645" fg:w="29"/><text x="6.8396%" y="767.50"></text></g><g><title>CodeCache::allocate (46 samples, 0.03%)</title><rect x="6.5896%" y="773" width="0.0314%" height="15" fill="rgb(249,28,3)" fg:x="9645" fg:w="46"/><text x="6.8396%" y="783.50"></text></g><g><title>InstanceKlass::add_dependent_nmethod (15 samples, 0.01%)</title><rect x="6.6251%" y="773" width="0.0102%" height="15" fill="rgb(222,56,52)" fg:x="9697" fg:w="15"/><text x="6.8751%" y="783.50"></text></g><g><title>DependencyContext::add_dependent_nmethod (15 samples, 0.01%)</title><rect x="6.6251%" y="757" width="0.0102%" height="15" fill="rgb(245,217,50)" fg:x="9697" fg:w="15"/><text x="6.8751%" y="767.50"></text></g><g><title>__pthread_cond_signal (15 samples, 0.01%)</title><rect x="6.6367%" y="773" width="0.0102%" height="15" fill="rgb(213,201,24)" fg:x="9714" fg:w="15"/><text x="6.8867%" y="783.50"></text></g><g><title>futex_wake (15 samples, 0.01%)</title><rect x="6.6367%" y="757" width="0.0102%" height="15" fill="rgb(248,116,28)" fg:x="9714" fg:w="15"/><text x="6.8867%" y="767.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (32 samples, 0.02%)</title><rect x="6.6709%" y="725" width="0.0219%" height="15" fill="rgb(219,72,43)" fg:x="9764" fg:w="32"/><text x="6.9209%" y="735.50"></text></g><g><title>Relocation::pd_call_destination (26 samples, 0.02%)</title><rect x="6.6750%" y="709" width="0.0178%" height="15" fill="rgb(209,138,14)" fg:x="9770" fg:w="26"/><text x="6.9250%" y="719.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="6.7215%" y="709" width="0.0116%" height="15" fill="rgb(222,18,33)" fg:x="9838" fg:w="17"/><text x="6.9715%" y="719.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="6.7215%" y="693" width="0.0116%" height="15" fill="rgb(213,199,7)" fg:x="9838" fg:w="17"/><text x="6.9715%" y="703.50"></text></g><g><title>do_user_addr_fault (16 samples, 0.01%)</title><rect x="6.7221%" y="677" width="0.0109%" height="15" fill="rgb(250,110,10)" fg:x="9839" fg:w="16"/><text x="6.9721%" y="687.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="6.7221%" y="661" width="0.0109%" height="15" fill="rgb(248,123,6)" fg:x="9839" fg:w="16"/><text x="6.9721%" y="671.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (32 samples, 0.02%)</title><rect x="6.7119%" y="725" width="0.0219%" height="15" fill="rgb(206,91,31)" fg:x="9824" fg:w="32"/><text x="6.9619%" y="735.50"></text></g><g><title>CodeBuffer::relocate_code_to (114 samples, 0.08%)</title><rect x="6.6566%" y="741" width="0.0779%" height="15" fill="rgb(211,154,13)" fg:x="9743" fg:w="114"/><text x="6.9066%" y="751.50"></text></g><g><title>CodeBuffer::copy_code_to (128 samples, 0.09%)</title><rect x="6.6538%" y="757" width="0.0875%" height="15" fill="rgb(225,148,7)" fg:x="9739" fg:w="128"/><text x="6.9038%" y="767.50"></text></g><g><title>CodeBlob::CodeBlob (27 samples, 0.02%)</title><rect x="6.7529%" y="741" width="0.0184%" height="15" fill="rgb(220,160,43)" fg:x="9884" fg:w="27"/><text x="7.0029%" y="751.50"></text></g><g><title>ImmutableOopMapSet::build_from (27 samples, 0.02%)</title><rect x="6.7529%" y="725" width="0.0184%" height="15" fill="rgb(213,52,39)" fg:x="9884" fg:w="27"/><text x="7.0029%" y="735.50"></text></g><g><title>CompiledMethod::CompiledMethod (35 samples, 0.02%)</title><rect x="6.7515%" y="757" width="0.0239%" height="15" fill="rgb(243,137,7)" fg:x="9882" fg:w="35"/><text x="7.0015%" y="767.50"></text></g><g><title>G1CodeRootSet::add (25 samples, 0.02%)</title><rect x="6.7918%" y="725" width="0.0171%" height="15" fill="rgb(230,79,13)" fg:x="9941" fg:w="25"/><text x="7.0418%" y="735.50"></text></g><g><title>G1CollectedHeap::register_nmethod (42 samples, 0.03%)</title><rect x="6.7829%" y="757" width="0.0287%" height="15" fill="rgb(247,105,23)" fg:x="9928" fg:w="42"/><text x="7.0329%" y="767.50"></text></g><g><title>nmethod::oops_do (42 samples, 0.03%)</title><rect x="6.7829%" y="741" width="0.0287%" height="15" fill="rgb(223,179,41)" fg:x="9928" fg:w="42"/><text x="7.0329%" y="751.50"></text></g><g><title>ciEnv::register_method (480 samples, 0.33%)</title><rect x="6.5035%" y="805" width="0.3279%" height="15" fill="rgb(218,9,34)" fg:x="9519" fg:w="480"/><text x="6.7535%" y="815.50"></text></g><g><title>nmethod::new_nmethod (418 samples, 0.29%)</title><rect x="6.5459%" y="789" width="0.2856%" height="15" fill="rgb(222,106,8)" fg:x="9581" fg:w="418"/><text x="6.7959%" y="799.50"></text></g><g><title>nmethod::nmethod (270 samples, 0.18%)</title><rect x="6.6470%" y="773" width="0.1845%" height="15" fill="rgb(211,220,0)" fg:x="9729" fg:w="270"/><text x="6.8970%" y="783.50"></text></g><g><title>Compilation::compile_method (8,424 samples, 5.76%)</title><rect x="1.0767%" y="821" width="5.7554%" height="15" fill="rgb(229,52,16)" fg:x="1576" fg:w="8424"/><text x="1.3267%" y="831.50">Compila..</text></g><g><title>Compilation::Compilation (8,434 samples, 5.76%)</title><rect x="1.0754%" y="837" width="5.7622%" height="15" fill="rgb(212,155,18)" fg:x="1574" fg:w="8434"/><text x="1.3254%" y="847.50">Compila..</text></g><g><title>Compiler::compile_method (8,454 samples, 5.78%)</title><rect x="1.0631%" y="853" width="5.7759%" height="15" fill="rgb(242,21,14)" fg:x="1556" fg:w="8454"/><text x="1.3131%" y="863.50">Compile..</text></g><g><title>StringEventLog::log (16 samples, 0.01%)</title><rect x="6.8417%" y="853" width="0.0109%" height="15" fill="rgb(222,19,48)" fg:x="10014" fg:w="16"/><text x="7.0917%" y="863.50"></text></g><g><title>ciObjectFactory::ciObjectFactory (28 samples, 0.02%)</title><rect x="6.8643%" y="837" width="0.0191%" height="15" fill="rgb(232,45,27)" fg:x="10047" fg:w="28"/><text x="7.1143%" y="847.50"></text></g><g><title>ciEnv::ciEnv (72 samples, 0.05%)</title><rect x="6.8588%" y="853" width="0.0492%" height="15" fill="rgb(249,103,42)" fg:x="10039" fg:w="72"/><text x="7.1088%" y="863.50"></text></g><g><title>ciObjectFactory::get (36 samples, 0.02%)</title><rect x="6.8834%" y="837" width="0.0246%" height="15" fill="rgb(246,81,33)" fg:x="10075" fg:w="36"/><text x="7.1334%" y="847.50"></text></g><g><title>ciObjectFactory::get_metadata (24 samples, 0.02%)</title><rect x="6.8916%" y="821" width="0.0164%" height="15" fill="rgb(252,33,42)" fg:x="10087" fg:w="24"/><text x="7.1416%" y="831.50"></text></g><g><title>ciObjectFactory::create_new_metadata (21 samples, 0.01%)</title><rect x="6.8936%" y="805" width="0.0143%" height="15" fill="rgb(209,212,41)" fg:x="10090" fg:w="21"/><text x="7.1436%" y="815.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (17 samples, 0.01%)</title><rect x="6.8964%" y="789" width="0.0116%" height="15" fill="rgb(207,154,6)" fg:x="10094" fg:w="17"/><text x="7.1464%" y="799.50"></text></g><g><title>SignatureStream::as_symbol (30 samples, 0.02%)</title><rect x="6.9223%" y="773" width="0.0205%" height="15" fill="rgb(223,64,47)" fg:x="10132" fg:w="30"/><text x="7.1723%" y="783.50"></text></g><g><title>SymbolTable::lookup (28 samples, 0.02%)</title><rect x="6.9237%" y="757" width="0.0191%" height="15" fill="rgb(211,161,38)" fg:x="10134" fg:w="28"/><text x="7.1737%" y="767.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (15 samples, 0.01%)</title><rect x="6.9462%" y="757" width="0.0102%" height="15" fill="rgb(219,138,40)" fg:x="10167" fg:w="15"/><text x="7.1962%" y="767.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (33 samples, 0.02%)</title><rect x="6.9449%" y="773" width="0.0225%" height="15" fill="rgb(241,228,46)" fg:x="10165" fg:w="33"/><text x="7.1949%" y="783.50"></text></g><g><title>ciSignature::ciSignature (84 samples, 0.06%)</title><rect x="6.9189%" y="789" width="0.0574%" height="15" fill="rgb(223,209,38)" fg:x="10127" fg:w="84"/><text x="7.1689%" y="799.50"></text></g><g><title>ciMethod::ciMethod (96 samples, 0.07%)</title><rect x="6.9114%" y="805" width="0.0656%" height="15" fill="rgb(236,164,45)" fg:x="10116" fg:w="96"/><text x="7.1614%" y="815.50"></text></g><g><title>ciEnv::get_method_from_handle (110 samples, 0.08%)</title><rect x="6.9080%" y="853" width="0.0752%" height="15" fill="rgb(231,15,5)" fg:x="10111" fg:w="110"/><text x="7.1580%" y="863.50"></text></g><g><title>ciObjectFactory::get_metadata (108 samples, 0.07%)</title><rect x="6.9093%" y="837" width="0.0738%" height="15" fill="rgb(252,35,15)" fg:x="10113" fg:w="108"/><text x="7.1593%" y="847.50"></text></g><g><title>ciObjectFactory::create_new_metadata (106 samples, 0.07%)</title><rect x="6.9107%" y="821" width="0.0724%" height="15" fill="rgb(248,181,18)" fg:x="10115" fg:w="106"/><text x="7.1607%" y="831.50"></text></g><g><title>ciEnv::~ciEnv (22 samples, 0.02%)</title><rect x="6.9831%" y="853" width="0.0150%" height="15" fill="rgb(233,39,42)" fg:x="10221" fg:w="22"/><text x="7.2331%" y="863.50"></text></g><g><title>ciObjectFactory::remove_symbols (20 samples, 0.01%)</title><rect x="6.9845%" y="837" width="0.0137%" height="15" fill="rgb(238,110,33)" fg:x="10223" fg:w="20"/><text x="7.2345%" y="847.50"></text></g><g><title>Symbol::decrement_refcount (15 samples, 0.01%)</title><rect x="6.9879%" y="821" width="0.0102%" height="15" fill="rgb(233,195,10)" fg:x="10228" fg:w="15"/><text x="7.2379%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (8,904 samples, 6.08%)</title><rect x="0.9203%" y="869" width="6.0833%" height="15" fill="rgb(254,105,3)" fg:x="1347" fg:w="8904"/><text x="1.1703%" y="879.50">CompileB..</text></g><g><title>__do_sys_sysinfo (23 samples, 0.02%)</title><rect x="7.0132%" y="789" width="0.0157%" height="15" fill="rgb(221,225,9)" fg:x="10265" fg:w="23"/><text x="7.2632%" y="799.50"></text></g><g><title>do_sysinfo.isra.0 (21 samples, 0.01%)</title><rect x="7.0146%" y="773" width="0.0143%" height="15" fill="rgb(224,227,45)" fg:x="10267" fg:w="21"/><text x="7.2646%" y="783.50"></text></g><g><title>si_meminfo (16 samples, 0.01%)</title><rect x="7.0180%" y="757" width="0.0109%" height="15" fill="rgb(229,198,43)" fg:x="10272" fg:w="16"/><text x="7.2680%" y="767.50"></text></g><g><title>nr_blockdev_pages (15 samples, 0.01%)</title><rect x="7.0187%" y="741" width="0.0102%" height="15" fill="rgb(206,209,35)" fg:x="10273" fg:w="15"/><text x="7.2687%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="7.0125%" y="821" width="0.0178%" height="15" fill="rgb(245,195,53)" fg:x="10264" fg:w="26"/><text x="7.2625%" y="831.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="7.0132%" y="805" width="0.0171%" height="15" fill="rgb(240,92,26)" fg:x="10265" fg:w="25"/><text x="7.2632%" y="815.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (40 samples, 0.03%)</title><rect x="7.0036%" y="869" width="0.0273%" height="15" fill="rgb(207,40,23)" fg:x="10251" fg:w="40"/><text x="7.2536%" y="879.50"></text></g><g><title>os::available_memory (29 samples, 0.02%)</title><rect x="7.0111%" y="853" width="0.0198%" height="15" fill="rgb(223,111,35)" fg:x="10262" fg:w="29"/><text x="7.2611%" y="863.50"></text></g><g><title>__sysinfo (27 samples, 0.02%)</title><rect x="7.0125%" y="837" width="0.0184%" height="15" fill="rgb(229,147,28)" fg:x="10264" fg:w="27"/><text x="7.2625%" y="847.50"></text></g><g><title>finish_task_switch (53 samples, 0.04%)</title><rect x="7.0556%" y="629" width="0.0362%" height="15" fill="rgb(211,29,28)" fg:x="10327" fg:w="53"/><text x="7.3056%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.03%)</title><rect x="7.0576%" y="613" width="0.0342%" height="15" fill="rgb(228,72,33)" fg:x="10330" fg:w="50"/><text x="7.3076%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.03%)</title><rect x="7.0583%" y="597" width="0.0335%" height="15" fill="rgb(205,214,31)" fg:x="10331" fg:w="49"/><text x="7.3083%" y="607.50"></text></g><g><title>native_write_msr (49 samples, 0.03%)</title><rect x="7.0583%" y="581" width="0.0335%" height="15" fill="rgb(224,111,15)" fg:x="10331" fg:w="49"/><text x="7.3083%" y="591.50"></text></g><g><title>futex_wait_queue_me (73 samples, 0.05%)</title><rect x="7.0467%" y="677" width="0.0499%" height="15" fill="rgb(253,21,26)" fg:x="10314" fg:w="73"/><text x="7.2967%" y="687.50"></text></g><g><title>schedule (72 samples, 0.05%)</title><rect x="7.0474%" y="661" width="0.0492%" height="15" fill="rgb(245,139,43)" fg:x="10315" fg:w="72"/><text x="7.2974%" y="671.50"></text></g><g><title>__schedule (72 samples, 0.05%)</title><rect x="7.0474%" y="645" width="0.0492%" height="15" fill="rgb(252,170,7)" fg:x="10315" fg:w="72"/><text x="7.2974%" y="655.50"></text></g><g><title>do_futex (77 samples, 0.05%)</title><rect x="7.0453%" y="709" width="0.0526%" height="15" fill="rgb(231,118,14)" fg:x="10312" fg:w="77"/><text x="7.2953%" y="719.50"></text></g><g><title>futex_wait (77 samples, 0.05%)</title><rect x="7.0453%" y="693" width="0.0526%" height="15" fill="rgb(238,83,0)" fg:x="10312" fg:w="77"/><text x="7.2953%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (86 samples, 0.06%)</title><rect x="7.0398%" y="805" width="0.0588%" height="15" fill="rgb(221,39,39)" fg:x="10304" fg:w="86"/><text x="7.2898%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (86 samples, 0.06%)</title><rect x="7.0398%" y="789" width="0.0588%" height="15" fill="rgb(222,119,46)" fg:x="10304" fg:w="86"/><text x="7.2898%" y="799.50"></text></g><g><title>futex_abstimed_wait_cancelable (84 samples, 0.06%)</title><rect x="7.0412%" y="773" width="0.0574%" height="15" fill="rgb(222,165,49)" fg:x="10306" fg:w="84"/><text x="7.2912%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.05%)</title><rect x="7.0446%" y="757" width="0.0540%" height="15" fill="rgb(219,113,52)" fg:x="10311" fg:w="79"/><text x="7.2946%" y="767.50"></text></g><g><title>do_syscall_64 (79 samples, 0.05%)</title><rect x="7.0446%" y="741" width="0.0540%" height="15" fill="rgb(214,7,15)" fg:x="10311" fg:w="79"/><text x="7.2946%" y="751.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.05%)</title><rect x="7.0446%" y="725" width="0.0540%" height="15" fill="rgb(235,32,4)" fg:x="10311" fg:w="79"/><text x="7.2946%" y="735.50"></text></g><g><title>Monitor::wait (92 samples, 0.06%)</title><rect x="7.0392%" y="853" width="0.0629%" height="15" fill="rgb(238,90,54)" fg:x="10303" fg:w="92"/><text x="7.2892%" y="863.50"></text></g><g><title>Monitor::IWait (92 samples, 0.06%)</title><rect x="7.0392%" y="837" width="0.0629%" height="15" fill="rgb(213,208,19)" fg:x="10303" fg:w="92"/><text x="7.2892%" y="847.50"></text></g><g><title>os::PlatformEvent::park (92 samples, 0.06%)</title><rect x="7.0392%" y="821" width="0.0629%" height="15" fill="rgb(233,156,4)" fg:x="10303" fg:w="92"/><text x="7.2892%" y="831.50"></text></g><g><title>TieredThresholdPolicy::select_task (45 samples, 0.03%)</title><rect x="7.1020%" y="853" width="0.0307%" height="15" fill="rgb(207,194,5)" fg:x="10395" fg:w="45"/><text x="7.3520%" y="863.50"></text></g><g><title>CompileQueue::get (157 samples, 0.11%)</title><rect x="7.0310%" y="869" width="0.1073%" height="15" fill="rgb(206,111,30)" fg:x="10291" fg:w="157"/><text x="7.2810%" y="879.50"></text></g><g><title>CompileBroker::compiler_thread_loop (9,108 samples, 6.22%)</title><rect x="0.9182%" y="885" width="6.2227%" height="15" fill="rgb(243,70,54)" fg:x="1344" fg:w="9108"/><text x="1.1682%" y="895.50">CompileB..</text></g><g><title>Thread::call_run (9,109 samples, 6.22%)</title><rect x="0.9182%" y="917" width="6.2234%" height="15" fill="rgb(242,28,8)" fg:x="1344" fg:w="9109"/><text x="1.1682%" y="927.50">Thread::..</text></g><g><title>JavaThread::thread_main_inner (9,109 samples, 6.22%)</title><rect x="0.9182%" y="901" width="6.2234%" height="15" fill="rgb(219,106,18)" fg:x="1344" fg:w="9109"/><text x="1.1682%" y="911.50">JavaThre..</text></g><g><title>__GI___clone (9,116 samples, 6.23%)</title><rect x="0.9141%" y="965" width="6.2282%" height="15" fill="rgb(244,222,10)" fg:x="1338" fg:w="9116"/><text x="1.1641%" y="975.50">__GI___c..</text></g><g><title>start_thread (9,110 samples, 6.22%)</title><rect x="0.9182%" y="949" width="6.2241%" height="15" fill="rgb(236,179,52)" fg:x="1344" fg:w="9110"/><text x="1.1682%" y="959.50">start_th..</text></g><g><title>thread_native_entry (9,110 samples, 6.22%)</title><rect x="0.9182%" y="933" width="6.2241%" height="15" fill="rgb(213,23,39)" fg:x="1344" fg:w="9110"/><text x="1.1682%" y="943.50">thread_n..</text></g><g><title>C1_CompilerThre (10,473 samples, 7.16%)</title><rect x="0.0253%" y="981" width="7.1553%" height="15" fill="rgb(238,48,10)" fg:x="37" fg:w="10473"/><text x="0.2753%" y="991.50">C1_Compile..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (19 samples, 0.01%)</title><rect x="7.2175%" y="965" width="0.0130%" height="15" fill="rgb(251,196,23)" fg:x="10564" fg:w="19"/><text x="7.4675%" y="975.50"></text></g><g><title>RegMask::is_UP (18 samples, 0.01%)</title><rect x="7.2182%" y="949" width="0.0123%" height="15" fill="rgb(250,152,24)" fg:x="10565" fg:w="18"/><text x="7.4682%" y="959.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (18 samples, 0.01%)</title><rect x="7.2311%" y="965" width="0.0123%" height="15" fill="rgb(209,150,17)" fg:x="10584" fg:w="18"/><text x="7.4811%" y="975.50"></text></g><g><title>ProjNode::pinned (51 samples, 0.03%)</title><rect x="7.2714%" y="949" width="0.0348%" height="15" fill="rgb(234,202,34)" fg:x="10643" fg:w="51"/><text x="7.5214%" y="959.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (54 samples, 0.04%)</title><rect x="7.2701%" y="965" width="0.0369%" height="15" fill="rgb(253,148,53)" fg:x="10641" fg:w="54"/><text x="7.5201%" y="975.50"></text></g><g><title>CProjNode::is_CFG (16 samples, 0.01%)</title><rect x="7.3992%" y="949" width="0.0109%" height="15" fill="rgb(218,129,16)" fg:x="10830" fg:w="16"/><text x="7.6492%" y="959.50"></text></g><g><title>IndexSetIterator::advance_and_next (25 samples, 0.02%)</title><rect x="7.6274%" y="949" width="0.0171%" height="15" fill="rgb(216,85,19)" fg:x="11164" fg:w="25"/><text x="7.8774%" y="959.50"></text></g><g><title>MultiNode::is_CFG (61 samples, 0.04%)</title><rect x="7.8173%" y="949" width="0.0417%" height="15" fill="rgb(235,228,7)" fg:x="11442" fg:w="61"/><text x="8.0673%" y="959.50"></text></g><g><title>Node::is_CFG (40 samples, 0.03%)</title><rect x="7.8877%" y="949" width="0.0273%" height="15" fill="rgb(245,175,0)" fg:x="11545" fg:w="40"/><text x="8.1377%" y="959.50"></text></g><g><title>Node::pinned (28 samples, 0.02%)</title><rect x="7.9273%" y="949" width="0.0191%" height="15" fill="rgb(208,168,36)" fg:x="11603" fg:w="28"/><text x="8.1773%" y="959.50"></text></g><g><title>PhiNode::Opcode (26 samples, 0.02%)</title><rect x="8.0701%" y="949" width="0.0178%" height="15" fill="rgb(246,171,24)" fg:x="11812" fg:w="26"/><text x="8.3201%" y="959.50"></text></g><g><title>ProjNode::Opcode (15 samples, 0.01%)</title><rect x="8.1022%" y="949" width="0.0102%" height="15" fill="rgb(215,142,24)" fg:x="11859" fg:w="15"/><text x="8.3522%" y="959.50"></text></g><g><title>ProjNode::is_CFG (17 samples, 0.01%)</title><rect x="8.1125%" y="949" width="0.0116%" height="15" fill="rgb(250,187,7)" fg:x="11874" fg:w="17"/><text x="8.3625%" y="959.50"></text></g><g><title>ProjNode::pinned (26 samples, 0.02%)</title><rect x="8.1248%" y="949" width="0.0178%" height="15" fill="rgb(228,66,33)" fg:x="11892" fg:w="26"/><text x="8.3748%" y="959.50"></text></g><g><title>RegionNode::is_CFG (35 samples, 0.02%)</title><rect x="8.1849%" y="949" width="0.0239%" height="15" fill="rgb(234,215,21)" fg:x="11980" fg:w="35"/><text x="8.4349%" y="959.50"></text></g><g><title>TypeNode::bottom_type (25 samples, 0.02%)</title><rect x="8.3345%" y="949" width="0.0171%" height="15" fill="rgb(222,191,20)" fg:x="12199" fg:w="25"/><text x="8.5845%" y="959.50"></text></g><g><title>_dl_update_slotinfo (137 samples, 0.09%)</title><rect x="8.4035%" y="949" width="0.0936%" height="15" fill="rgb(245,79,54)" fg:x="12300" fg:w="137"/><text x="8.6535%" y="959.50"></text></g><g><title>find_lowest_bit (17 samples, 0.01%)</title><rect x="8.5723%" y="949" width="0.0116%" height="15" fill="rgb(240,10,37)" fg:x="12547" fg:w="17"/><text x="8.8223%" y="959.50"></text></g><g><title>jmpDirNode::is_block_proj (17 samples, 0.01%)</title><rect x="8.6133%" y="949" width="0.0116%" height="15" fill="rgb(214,192,32)" fg:x="12607" fg:w="17"/><text x="8.8633%" y="959.50"></text></g><g><title>loadNNode::rule (16 samples, 0.01%)</title><rect x="8.6509%" y="949" width="0.0109%" height="15" fill="rgb(209,36,54)" fg:x="12662" fg:w="16"/><text x="8.9009%" y="959.50"></text></g><g><title>update_get_addr (40 samples, 0.03%)</title><rect x="8.7267%" y="949" width="0.0273%" height="15" fill="rgb(220,10,11)" fg:x="12773" fg:w="40"/><text x="8.9767%" y="959.50"></text></g><g><title>[anon] (2,105 samples, 1.44%)</title><rect x="7.3186%" y="965" width="1.4382%" height="15" fill="rgb(221,106,17)" fg:x="10712" fg:w="2105"/><text x="7.5686%" y="975.50"></text></g><g><title>ciTypeFlow::df_flow_types (19 samples, 0.01%)</title><rect x="8.7766%" y="725" width="0.0130%" height="15" fill="rgb(251,142,44)" fg:x="12846" fg:w="19"/><text x="9.0266%" y="735.50"></text></g><g><title>ciTypeFlow::flow_block (18 samples, 0.01%)</title><rect x="8.7773%" y="709" width="0.0123%" height="15" fill="rgb(238,13,15)" fg:x="12847" fg:w="18"/><text x="9.0273%" y="719.50"></text></g><g><title>Compile::call_generator (26 samples, 0.02%)</title><rect x="8.7732%" y="805" width="0.0178%" height="15" fill="rgb(208,107,27)" fg:x="12841" fg:w="26"/><text x="9.0232%" y="815.50"></text></g><g><title>InlineTree::ok_to_inline (26 samples, 0.02%)</title><rect x="8.7732%" y="789" width="0.0178%" height="15" fill="rgb(205,136,37)" fg:x="12841" fg:w="26"/><text x="9.0232%" y="799.50"></text></g><g><title>ciMethod::get_flow_analysis (23 samples, 0.02%)</title><rect x="8.7752%" y="773" width="0.0157%" height="15" fill="rgb(250,205,27)" fg:x="12844" fg:w="23"/><text x="9.0252%" y="783.50"></text></g><g><title>ciTypeFlow::do_flow (22 samples, 0.02%)</title><rect x="8.7759%" y="757" width="0.0150%" height="15" fill="rgb(210,80,43)" fg:x="12845" fg:w="22"/><text x="9.0259%" y="767.50"></text></g><g><title>ciTypeFlow::flow_types (22 samples, 0.02%)</title><rect x="8.7759%" y="741" width="0.0150%" height="15" fill="rgb(247,160,36)" fg:x="12845" fg:w="22"/><text x="9.0259%" y="751.50"></text></g><g><title>ciEnv::get_field_by_index (21 samples, 0.01%)</title><rect x="8.7984%" y="661" width="0.0143%" height="15" fill="rgb(234,13,49)" fg:x="12878" fg:w="21"/><text x="9.0484%" y="671.50"></text></g><g><title>ciField::ciField (18 samples, 0.01%)</title><rect x="8.8005%" y="645" width="0.0123%" height="15" fill="rgb(234,122,0)" fg:x="12881" fg:w="18"/><text x="9.0505%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (26 samples, 0.02%)</title><rect x="8.7984%" y="693" width="0.0178%" height="15" fill="rgb(207,146,38)" fg:x="12878" fg:w="26"/><text x="9.0484%" y="703.50"></text></g><g><title>ciBytecodeStream::get_field (26 samples, 0.02%)</title><rect x="8.7984%" y="677" width="0.0178%" height="15" fill="rgb(207,177,25)" fg:x="12878" fg:w="26"/><text x="9.0484%" y="687.50"></text></g><g><title>ciMethod::ciMethod (27 samples, 0.02%)</title><rect x="8.8285%" y="613" width="0.0184%" height="15" fill="rgb(211,178,42)" fg:x="12922" fg:w="27"/><text x="9.0785%" y="623.50"></text></g><g><title>ciSignature::ciSignature (24 samples, 0.02%)</title><rect x="8.8305%" y="597" width="0.0164%" height="15" fill="rgb(230,69,54)" fg:x="12925" fg:w="24"/><text x="9.0805%" y="607.50"></text></g><g><title>ciEnv::get_method_by_index_impl (44 samples, 0.03%)</title><rect x="8.8176%" y="661" width="0.0301%" height="15" fill="rgb(214,135,41)" fg:x="12906" fg:w="44"/><text x="9.0676%" y="671.50"></text></g><g><title>ciObjectFactory::get_metadata (30 samples, 0.02%)</title><rect x="8.8271%" y="645" width="0.0205%" height="15" fill="rgb(237,67,25)" fg:x="12920" fg:w="30"/><text x="9.0771%" y="655.50"></text></g><g><title>ciObjectFactory::create_new_metadata (28 samples, 0.02%)</title><rect x="8.8285%" y="629" width="0.0191%" height="15" fill="rgb(222,189,50)" fg:x="12922" fg:w="28"/><text x="9.0785%" y="639.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (47 samples, 0.03%)</title><rect x="8.8162%" y="693" width="0.0321%" height="15" fill="rgb(245,148,34)" fg:x="12904" fg:w="47"/><text x="9.0662%" y="703.50"></text></g><g><title>ciBytecodeStream::get_method (46 samples, 0.03%)</title><rect x="8.8169%" y="677" width="0.0314%" height="15" fill="rgb(222,29,6)" fg:x="12905" fg:w="46"/><text x="9.0669%" y="687.50"></text></g><g><title>ciTypeFlow::df_flow_types (90 samples, 0.06%)</title><rect x="8.7909%" y="741" width="0.0615%" height="15" fill="rgb(221,189,43)" fg:x="12867" fg:w="90"/><text x="9.0409%" y="751.50"></text></g><g><title>ciTypeFlow::flow_block (90 samples, 0.06%)</title><rect x="8.7909%" y="725" width="0.0615%" height="15" fill="rgb(207,36,27)" fg:x="12867" fg:w="90"/><text x="9.0409%" y="735.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (81 samples, 0.06%)</title><rect x="8.7971%" y="709" width="0.0553%" height="15" fill="rgb(217,90,24)" fg:x="12876" fg:w="81"/><text x="9.0471%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (91 samples, 0.06%)</title><rect x="8.7909%" y="805" width="0.0622%" height="15" fill="rgb(224,66,35)" fg:x="12867" fg:w="91"/><text x="9.0409%" y="815.50"></text></g><g><title>ciMethod::get_flow_analysis (91 samples, 0.06%)</title><rect x="8.7909%" y="789" width="0.0622%" height="15" fill="rgb(221,13,50)" fg:x="12867" fg:w="91"/><text x="9.0409%" y="799.50"></text></g><g><title>ciTypeFlow::do_flow (91 samples, 0.06%)</title><rect x="8.7909%" y="773" width="0.0622%" height="15" fill="rgb(236,68,49)" fg:x="12867" fg:w="91"/><text x="9.0409%" y="783.50"></text></g><g><title>ciTypeFlow::flow_types (91 samples, 0.06%)</title><rect x="8.7909%" y="757" width="0.0622%" height="15" fill="rgb(229,146,28)" fg:x="12867" fg:w="91"/><text x="9.0409%" y="767.50"></text></g><g><title>Compile::call_generator (119 samples, 0.08%)</title><rect x="8.7732%" y="821" width="0.0813%" height="15" fill="rgb(225,31,38)" fg:x="12841" fg:w="119"/><text x="9.0232%" y="831.50"></text></g><g><title>InlineTree::try_to_inline (19 samples, 0.01%)</title><rect x="8.8893%" y="693" width="0.0130%" height="15" fill="rgb(250,208,3)" fg:x="13011" fg:w="19"/><text x="9.1393%" y="703.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (23 samples, 0.02%)</title><rect x="8.9248%" y="597" width="0.0157%" height="15" fill="rgb(246,54,23)" fg:x="13063" fg:w="23"/><text x="9.1748%" y="607.50"></text></g><g><title>ciBytecodeStream::get_method (23 samples, 0.02%)</title><rect x="8.9248%" y="581" width="0.0157%" height="15" fill="rgb(243,76,11)" fg:x="13063" fg:w="23"/><text x="9.1748%" y="591.50"></text></g><g><title>ciEnv::get_method_by_index_impl (21 samples, 0.01%)</title><rect x="8.9262%" y="565" width="0.0143%" height="15" fill="rgb(245,21,50)" fg:x="13065" fg:w="21"/><text x="9.1762%" y="575.50"></text></g><g><title>ciObjectFactory::get_metadata (16 samples, 0.01%)</title><rect x="8.9296%" y="549" width="0.0109%" height="15" fill="rgb(228,9,43)" fg:x="13070" fg:w="16"/><text x="9.1796%" y="559.50"></text></g><g><title>ciTypeFlow::flow_block (47 samples, 0.03%)</title><rect x="8.9098%" y="629" width="0.0321%" height="15" fill="rgb(208,100,47)" fg:x="13041" fg:w="47"/><text x="9.1598%" y="639.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (41 samples, 0.03%)</title><rect x="8.9139%" y="613" width="0.0280%" height="15" fill="rgb(232,26,8)" fg:x="13047" fg:w="41"/><text x="9.1639%" y="623.50"></text></g><g><title>ciTypeFlow::df_flow_types (54 samples, 0.04%)</title><rect x="8.9057%" y="645" width="0.0369%" height="15" fill="rgb(216,166,38)" fg:x="13035" fg:w="54"/><text x="9.1557%" y="655.50"></text></g><g><title>ciTypeFlow::do_flow (56 samples, 0.04%)</title><rect x="8.9050%" y="677" width="0.0383%" height="15" fill="rgb(251,202,51)" fg:x="13034" fg:w="56"/><text x="9.1550%" y="687.50"></text></g><g><title>ciTypeFlow::flow_types (56 samples, 0.04%)</title><rect x="8.9050%" y="661" width="0.0383%" height="15" fill="rgb(254,216,34)" fg:x="13034" fg:w="56"/><text x="9.1550%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (82 samples, 0.06%)</title><rect x="8.8886%" y="709" width="0.0560%" height="15" fill="rgb(251,32,27)" fg:x="13010" fg:w="82"/><text x="9.1386%" y="719.50"></text></g><g><title>ciMethod::get_flow_analysis (62 samples, 0.04%)</title><rect x="8.9023%" y="693" width="0.0424%" height="15" fill="rgb(208,127,28)" fg:x="13030" fg:w="62"/><text x="9.1523%" y="703.50"></text></g><g><title>Compile::call_generator (99 samples, 0.07%)</title><rect x="8.8804%" y="725" width="0.0676%" height="15" fill="rgb(224,137,22)" fg:x="12998" fg:w="99"/><text x="9.1304%" y="735.50"></text></g><g><title>LibraryIntrinsic::generate (18 samples, 0.01%)</title><rect x="8.9645%" y="725" width="0.0123%" height="15" fill="rgb(254,70,32)" fg:x="13121" fg:w="18"/><text x="9.2145%" y="735.50"></text></g><g><title>LibraryCallKit::try_to_inline (18 samples, 0.01%)</title><rect x="8.9645%" y="709" width="0.0123%" height="15" fill="rgb(229,75,37)" fg:x="13121" fg:w="18"/><text x="9.2145%" y="719.50"></text></g><g><title>ciTypeFlow::df_flow_types (17 samples, 0.01%)</title><rect x="9.0212%" y="549" width="0.0116%" height="15" fill="rgb(252,64,23)" fg:x="13204" fg:w="17"/><text x="9.2712%" y="559.50"></text></g><g><title>ciTypeFlow::flow_block (16 samples, 0.01%)</title><rect x="9.0218%" y="533" width="0.0109%" height="15" fill="rgb(232,162,48)" fg:x="13205" fg:w="16"/><text x="9.2718%" y="543.50"></text></g><g><title>InlineTree::ok_to_inline (26 samples, 0.02%)</title><rect x="9.0164%" y="613" width="0.0178%" height="15" fill="rgb(246,160,12)" fg:x="13197" fg:w="26"/><text x="9.2664%" y="623.50"></text></g><g><title>ciMethod::get_flow_analysis (24 samples, 0.02%)</title><rect x="9.0177%" y="597" width="0.0164%" height="15" fill="rgb(247,166,0)" fg:x="13199" fg:w="24"/><text x="9.2677%" y="607.50"></text></g><g><title>ciTypeFlow::do_flow (20 samples, 0.01%)</title><rect x="9.0205%" y="581" width="0.0137%" height="15" fill="rgb(249,219,21)" fg:x="13203" fg:w="20"/><text x="9.2705%" y="591.50"></text></g><g><title>ciTypeFlow::flow_types (20 samples, 0.01%)</title><rect x="9.0205%" y="565" width="0.0137%" height="15" fill="rgb(205,209,3)" fg:x="13203" fg:w="20"/><text x="9.2705%" y="575.50"></text></g><g><title>Compile::call_generator (33 samples, 0.02%)</title><rect x="9.0123%" y="629" width="0.0225%" height="15" fill="rgb(243,44,1)" fg:x="13191" fg:w="33"/><text x="9.2623%" y="639.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="9.1209%" y="485" width="0.0219%" height="15" fill="rgb(206,159,16)" fg:x="13350" fg:w="32"/><text x="9.3709%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.02%)</title><rect x="9.1230%" y="469" width="0.0198%" height="15" fill="rgb(244,77,30)" fg:x="13353" fg:w="29"/><text x="9.3730%" y="479.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.02%)</title><rect x="9.1195%" y="501" width="0.0246%" height="15" fill="rgb(218,69,12)" fg:x="13348" fg:w="36"/><text x="9.3695%" y="511.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.04%)</title><rect x="9.1100%" y="533" width="0.0424%" height="15" fill="rgb(212,87,7)" fg:x="13334" fg:w="62"/><text x="9.3600%" y="543.50"></text></g><g><title>Parse::Parse (62 samples, 0.04%)</title><rect x="9.1100%" y="517" width="0.0424%" height="15" fill="rgb(245,114,25)" fg:x="13334" fg:w="62"/><text x="9.3600%" y="527.50"></text></g><g><title>Parse::do_call (124 samples, 0.08%)</title><rect x="9.0779%" y="549" width="0.0847%" height="15" fill="rgb(210,61,42)" fg:x="13287" fg:w="124"/><text x="9.3279%" y="559.50"></text></g><g><title>Parse::do_field_access (30 samples, 0.02%)</title><rect x="9.1640%" y="549" width="0.0205%" height="15" fill="rgb(211,52,33)" fg:x="13413" fg:w="30"/><text x="9.4140%" y="559.50"></text></g><g><title>Parse::do_if (16 samples, 0.01%)</title><rect x="9.1844%" y="549" width="0.0109%" height="15" fill="rgb(234,58,33)" fg:x="13443" fg:w="16"/><text x="9.4344%" y="559.50"></text></g><g><title>Parse::do_one_block (212 samples, 0.14%)</title><rect x="9.0635%" y="581" width="0.1448%" height="15" fill="rgb(220,115,36)" fg:x="13266" fg:w="212"/><text x="9.3135%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (206 samples, 0.14%)</title><rect x="9.0676%" y="565" width="0.1407%" height="15" fill="rgb(243,153,54)" fg:x="13272" fg:w="206"/><text x="9.3176%" y="575.50"></text></g><g><title>Parse::do_all_blocks (219 samples, 0.15%)</title><rect x="9.0628%" y="597" width="0.1496%" height="15" fill="rgb(251,47,18)" fg:x="13265" fg:w="219"/><text x="9.3128%" y="607.50"></text></g><g><title>ParseGenerator::generate (255 samples, 0.17%)</title><rect x="9.0505%" y="629" width="0.1742%" height="15" fill="rgb(242,102,42)" fg:x="13247" fg:w="255"/><text x="9.3005%" y="639.50"></text></g><g><title>Parse::Parse (255 samples, 0.17%)</title><rect x="9.0505%" y="613" width="0.1742%" height="15" fill="rgb(234,31,38)" fg:x="13247" fg:w="255"/><text x="9.3005%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (25 samples, 0.02%)</title><rect x="9.2248%" y="629" width="0.0171%" height="15" fill="rgb(221,117,51)" fg:x="13502" fg:w="25"/><text x="9.4748%" y="639.50"></text></g><g><title>Parse::do_call (347 samples, 0.24%)</title><rect x="9.0116%" y="645" width="0.2371%" height="15" fill="rgb(212,20,18)" fg:x="13190" fg:w="347"/><text x="9.2616%" y="655.50"></text></g><g><title>Parse::do_get_xxx (21 samples, 0.01%)</title><rect x="9.2555%" y="629" width="0.0143%" height="15" fill="rgb(245,133,36)" fg:x="13547" fg:w="21"/><text x="9.5055%" y="639.50"></text></g><g><title>G1BarrierSetC2::post_barrier (18 samples, 0.01%)</title><rect x="9.2746%" y="565" width="0.0123%" height="15" fill="rgb(212,6,19)" fg:x="13575" fg:w="18"/><text x="9.5246%" y="575.50"></text></g><g><title>GraphKit::access_store_at (33 samples, 0.02%)</title><rect x="9.2712%" y="613" width="0.0225%" height="15" fill="rgb(218,1,36)" fg:x="13570" fg:w="33"/><text x="9.5212%" y="623.50"></text></g><g><title>BarrierSetC2::store_at (33 samples, 0.02%)</title><rect x="9.2712%" y="597" width="0.0225%" height="15" fill="rgb(246,84,54)" fg:x="13570" fg:w="33"/><text x="9.5212%" y="607.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (29 samples, 0.02%)</title><rect x="9.2739%" y="581" width="0.0198%" height="15" fill="rgb(242,110,6)" fg:x="13574" fg:w="29"/><text x="9.5239%" y="591.50"></text></g><g><title>Parse::do_put_xxx (36 samples, 0.02%)</title><rect x="9.2698%" y="629" width="0.0246%" height="15" fill="rgb(214,47,5)" fg:x="13568" fg:w="36"/><text x="9.5198%" y="639.50"></text></g><g><title>Parse::do_field_access (74 samples, 0.05%)</title><rect x="9.2500%" y="645" width="0.0506%" height="15" fill="rgb(218,159,25)" fg:x="13539" fg:w="74"/><text x="9.5000%" y="655.50"></text></g><g><title>Parse::do_if (21 samples, 0.01%)</title><rect x="9.3006%" y="645" width="0.0143%" height="15" fill="rgb(215,211,28)" fg:x="13613" fg:w="21"/><text x="9.5506%" y="655.50"></text></g><g><title>Parse::do_one_block (488 samples, 0.33%)</title><rect x="9.0007%" y="677" width="0.3334%" height="15" fill="rgb(238,59,32)" fg:x="13174" fg:w="488"/><text x="9.2507%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (484 samples, 0.33%)</title><rect x="9.0034%" y="661" width="0.3307%" height="15" fill="rgb(226,82,3)" fg:x="13178" fg:w="484"/><text x="9.2534%" y="671.50"></text></g><g><title>Parse::do_all_blocks (495 samples, 0.34%)</title><rect x="9.0000%" y="693" width="0.3382%" height="15" fill="rgb(240,164,32)" fg:x="13173" fg:w="495"/><text x="9.2500%" y="703.50"></text></g><g><title>Parse::Parse (550 samples, 0.38%)</title><rect x="8.9768%" y="709" width="0.3758%" height="15" fill="rgb(232,46,7)" fg:x="13139" fg:w="550"/><text x="9.2268%" y="719.50"></text></g><g><title>ParseGenerator::generate (551 samples, 0.38%)</title><rect x="8.9768%" y="725" width="0.3765%" height="15" fill="rgb(229,129,53)" fg:x="13139" fg:w="551"/><text x="9.2268%" y="735.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="9.3634%" y="565" width="0.0137%" height="15" fill="rgb(234,188,29)" fg:x="13705" fg:w="20"/><text x="9.6134%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="9.3641%" y="549" width="0.0130%" height="15" fill="rgb(246,141,4)" fg:x="13706" fg:w="19"/><text x="9.6141%" y="559.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="9.3634%" y="581" width="0.0143%" height="15" fill="rgb(229,23,39)" fg:x="13705" fg:w="21"/><text x="9.6134%" y="591.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="9.3628%" y="613" width="0.0164%" height="15" fill="rgb(206,12,3)" fg:x="13704" fg:w="24"/><text x="9.6128%" y="623.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="9.3628%" y="597" width="0.0164%" height="15" fill="rgb(252,226,20)" fg:x="13704" fg:w="24"/><text x="9.6128%" y="607.50"></text></g><g><title>Parse::do_call (36 samples, 0.02%)</title><rect x="9.3607%" y="629" width="0.0246%" height="15" fill="rgb(216,123,35)" fg:x="13701" fg:w="36"/><text x="9.6107%" y="639.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.03%)</title><rect x="9.3600%" y="661" width="0.0314%" height="15" fill="rgb(212,68,40)" fg:x="13700" fg:w="46"/><text x="9.6100%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.03%)</title><rect x="9.3600%" y="645" width="0.0314%" height="15" fill="rgb(254,125,32)" fg:x="13700" fg:w="46"/><text x="9.6100%" y="655.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.03%)</title><rect x="9.3600%" y="677" width="0.0321%" height="15" fill="rgb(253,97,22)" fg:x="13700" fg:w="47"/><text x="9.6100%" y="687.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.04%)</title><rect x="9.3587%" y="709" width="0.0362%" height="15" fill="rgb(241,101,14)" fg:x="13698" fg:w="53"/><text x="9.6087%" y="719.50"></text></g><g><title>Parse::Parse (53 samples, 0.04%)</title><rect x="9.3587%" y="693" width="0.0362%" height="15" fill="rgb(238,103,29)" fg:x="13698" fg:w="53"/><text x="9.6087%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (67 samples, 0.05%)</title><rect x="9.3532%" y="725" width="0.0458%" height="15" fill="rgb(233,195,47)" fg:x="13690" fg:w="67"/><text x="9.6032%" y="735.50"></text></g><g><title>Parse::do_call (771 samples, 0.53%)</title><rect x="8.8804%" y="741" width="0.5268%" height="15" fill="rgb(246,218,30)" fg:x="12998" fg:w="771"/><text x="9.1304%" y="751.50"></text></g><g><title>G1BarrierSetC2::load_at_resolved (19 samples, 0.01%)</title><rect x="9.4174%" y="677" width="0.0130%" height="15" fill="rgb(219,145,47)" fg:x="13784" fg:w="19"/><text x="9.6674%" y="687.50"></text></g><g><title>BarrierSetC2::load_at_resolved (19 samples, 0.01%)</title><rect x="9.4174%" y="661" width="0.0130%" height="15" fill="rgb(243,12,26)" fg:x="13784" fg:w="19"/><text x="9.6674%" y="671.50"></text></g><g><title>GraphKit::make_load (19 samples, 0.01%)</title><rect x="9.4174%" y="645" width="0.0130%" height="15" fill="rgb(214,87,16)" fg:x="13784" fg:w="19"/><text x="9.6674%" y="655.50"></text></g><g><title>GraphKit::access_load_at (21 samples, 0.01%)</title><rect x="9.4167%" y="709" width="0.0143%" height="15" fill="rgb(208,99,42)" fg:x="13783" fg:w="21"/><text x="9.6667%" y="719.50"></text></g><g><title>BarrierSetC2::load_at (21 samples, 0.01%)</title><rect x="9.4167%" y="693" width="0.0143%" height="15" fill="rgb(253,99,2)" fg:x="13783" fg:w="21"/><text x="9.6667%" y="703.50"></text></g><g><title>Parse::do_get_xxx (31 samples, 0.02%)</title><rect x="9.4154%" y="725" width="0.0212%" height="15" fill="rgb(220,168,23)" fg:x="13781" fg:w="31"/><text x="9.6654%" y="735.50"></text></g><g><title>G1BarrierSetC2::post_barrier (15 samples, 0.01%)</title><rect x="9.4400%" y="661" width="0.0102%" height="15" fill="rgb(242,38,24)" fg:x="13817" fg:w="15"/><text x="9.6900%" y="671.50"></text></g><g><title>GraphKit::access_store_at (38 samples, 0.03%)</title><rect x="9.4372%" y="709" width="0.0260%" height="15" fill="rgb(225,182,9)" fg:x="13813" fg:w="38"/><text x="9.6872%" y="719.50"></text></g><g><title>BarrierSetC2::store_at (38 samples, 0.03%)</title><rect x="9.4372%" y="693" width="0.0260%" height="15" fill="rgb(243,178,37)" fg:x="13813" fg:w="38"/><text x="9.6872%" y="703.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (37 samples, 0.03%)</title><rect x="9.4379%" y="677" width="0.0253%" height="15" fill="rgb(232,139,19)" fg:x="13814" fg:w="37"/><text x="9.6879%" y="687.50"></text></g><g><title>G1BarrierSetC2::pre_barrier (19 samples, 0.01%)</title><rect x="9.4502%" y="661" width="0.0130%" height="15" fill="rgb(225,201,24)" fg:x="13832" fg:w="19"/><text x="9.7002%" y="671.50"></text></g><g><title>Parse::do_put_xxx (42 samples, 0.03%)</title><rect x="9.4366%" y="725" width="0.0287%" height="15" fill="rgb(221,47,46)" fg:x="13812" fg:w="42"/><text x="9.6866%" y="735.50"></text></g><g><title>Parse::do_field_access (80 samples, 0.05%)</title><rect x="9.4126%" y="741" width="0.0547%" height="15" fill="rgb(249,23,13)" fg:x="13777" fg:w="80"/><text x="9.6626%" y="751.50"></text></g><g><title>Parse::do_one_block (905 samples, 0.62%)</title><rect x="8.8647%" y="773" width="0.6183%" height="15" fill="rgb(219,9,5)" fg:x="12975" fg:w="905"/><text x="9.1147%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (902 samples, 0.62%)</title><rect x="8.8668%" y="757" width="0.6163%" height="15" fill="rgb(254,171,16)" fg:x="12978" fg:w="902"/><text x="9.1168%" y="767.50"></text></g><g><title>ParseGenerator::generate (918 samples, 0.63%)</title><rect x="8.8565%" y="821" width="0.6272%" height="15" fill="rgb(230,171,20)" fg:x="12963" fg:w="918"/><text x="9.1065%" y="831.50"></text></g><g><title>Parse::Parse (918 samples, 0.63%)</title><rect x="8.8565%" y="805" width="0.6272%" height="15" fill="rgb(210,71,41)" fg:x="12963" fg:w="918"/><text x="9.1065%" y="815.50"></text></g><g><title>Parse::do_all_blocks (906 samples, 0.62%)</title><rect x="8.8647%" y="789" width="0.6190%" height="15" fill="rgb(206,173,20)" fg:x="12975" fg:w="906"/><text x="9.1147%" y="799.50"></text></g><g><title>Compile::call_generator (17 samples, 0.01%)</title><rect x="9.4885%" y="709" width="0.0116%" height="15" fill="rgb(233,88,34)" fg:x="13888" fg:w="17"/><text x="9.7385%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (16 samples, 0.01%)</title><rect x="9.4892%" y="693" width="0.0109%" height="15" fill="rgb(223,209,46)" fg:x="13889" fg:w="16"/><text x="9.7392%" y="703.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="9.5206%" y="533" width="0.0123%" height="15" fill="rgb(250,43,18)" fg:x="13935" fg:w="18"/><text x="9.7706%" y="543.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="9.5192%" y="581" width="0.0184%" height="15" fill="rgb(208,13,10)" fg:x="13933" fg:w="27"/><text x="9.7692%" y="591.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="9.5192%" y="565" width="0.0184%" height="15" fill="rgb(212,200,36)" fg:x="13933" fg:w="27"/><text x="9.7692%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="9.5192%" y="549" width="0.0184%" height="15" fill="rgb(225,90,30)" fg:x="13933" fg:w="27"/><text x="9.7692%" y="559.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.02%)</title><rect x="9.5172%" y="613" width="0.0219%" height="15" fill="rgb(236,182,39)" fg:x="13930" fg:w="32"/><text x="9.7672%" y="623.50"></text></g><g><title>Parse::Parse (32 samples, 0.02%)</title><rect x="9.5172%" y="597" width="0.0219%" height="15" fill="rgb(212,144,35)" fg:x="13930" fg:w="32"/><text x="9.7672%" y="607.50"></text></g><g><title>Parse::do_call (47 samples, 0.03%)</title><rect x="9.5131%" y="629" width="0.0321%" height="15" fill="rgb(228,63,44)" fg:x="13924" fg:w="47"/><text x="9.7631%" y="639.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.05%)</title><rect x="9.5097%" y="661" width="0.0458%" height="15" fill="rgb(228,109,6)" fg:x="13919" fg:w="67"/><text x="9.7597%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.04%)</title><rect x="9.5110%" y="645" width="0.0444%" height="15" fill="rgb(238,117,24)" fg:x="13921" fg:w="65"/><text x="9.7610%" y="655.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.05%)</title><rect x="9.5097%" y="677" width="0.0471%" height="15" fill="rgb(242,26,26)" fg:x="13919" fg:w="69"/><text x="9.7597%" y="687.50"></text></g><g><title>ParseGenerator::generate (76 samples, 0.05%)</title><rect x="9.5069%" y="709" width="0.0519%" height="15" fill="rgb(221,92,48)" fg:x="13915" fg:w="76"/><text x="9.7569%" y="719.50"></text></g><g><title>Parse::Parse (76 samples, 0.05%)</title><rect x="9.5069%" y="693" width="0.0519%" height="15" fill="rgb(209,209,32)" fg:x="13915" fg:w="76"/><text x="9.7569%" y="703.50"></text></g><g><title>Parse::do_call (111 samples, 0.08%)</title><rect x="9.4885%" y="725" width="0.0758%" height="15" fill="rgb(221,70,22)" fg:x="13888" fg:w="111"/><text x="9.7385%" y="735.50"></text></g><g><title>Parse::do_one_block (126 samples, 0.09%)</title><rect x="9.4864%" y="757" width="0.0861%" height="15" fill="rgb(248,145,5)" fg:x="13885" fg:w="126"/><text x="9.7364%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (126 samples, 0.09%)</title><rect x="9.4864%" y="741" width="0.0861%" height="15" fill="rgb(226,116,26)" fg:x="13885" fg:w="126"/><text x="9.7364%" y="751.50"></text></g><g><title>Parse::do_all_blocks (127 samples, 0.09%)</title><rect x="9.4864%" y="773" width="0.0868%" height="15" fill="rgb(244,5,17)" fg:x="13885" fg:w="127"/><text x="9.7364%" y="783.50"></text></g><g><title>ParseGenerator::generate (131 samples, 0.09%)</title><rect x="9.4851%" y="805" width="0.0895%" height="15" fill="rgb(252,159,33)" fg:x="13883" fg:w="131"/><text x="9.7351%" y="815.50"></text></g><g><title>Parse::Parse (131 samples, 0.09%)</title><rect x="9.4851%" y="789" width="0.0895%" height="15" fill="rgb(206,71,0)" fg:x="13883" fg:w="131"/><text x="9.7351%" y="799.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="9.5780%" y="709" width="0.0123%" height="15" fill="rgb(233,118,54)" fg:x="14019" fg:w="18"/><text x="9.8280%" y="719.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.02%)</title><rect x="9.5766%" y="757" width="0.0219%" height="15" fill="rgb(234,83,48)" fg:x="14017" fg:w="32"/><text x="9.8266%" y="767.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="9.5766%" y="741" width="0.0219%" height="15" fill="rgb(228,3,54)" fg:x="14017" fg:w="32"/><text x="9.8266%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="9.5773%" y="725" width="0.0212%" height="15" fill="rgb(226,155,13)" fg:x="14018" fg:w="31"/><text x="9.8273%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (38 samples, 0.03%)</title><rect x="9.5746%" y="805" width="0.0260%" height="15" fill="rgb(241,28,37)" fg:x="14014" fg:w="38"/><text x="9.8246%" y="815.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.03%)</title><rect x="9.5746%" y="789" width="0.0260%" height="15" fill="rgb(233,93,10)" fg:x="14014" fg:w="38"/><text x="9.8246%" y="799.50"></text></g><g><title>Parse::Parse (38 samples, 0.03%)</title><rect x="9.5746%" y="773" width="0.0260%" height="15" fill="rgb(225,113,19)" fg:x="14014" fg:w="38"/><text x="9.8246%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (172 samples, 0.12%)</title><rect x="9.4837%" y="821" width="0.1175%" height="15" fill="rgb(241,2,18)" fg:x="13881" fg:w="172"/><text x="9.7337%" y="831.50"></text></g><g><title>Parse::do_call (1,222 samples, 0.83%)</title><rect x="8.7732%" y="837" width="0.8349%" height="15" fill="rgb(228,207,21)" fg:x="12841" fg:w="1222"/><text x="9.0232%" y="847.50"></text></g><g><title>C2Compiler::compile_method (1,240 samples, 0.85%)</title><rect x="8.7670%" y="949" width="0.8472%" height="15" fill="rgb(213,211,35)" fg:x="12832" fg:w="1240"/><text x="9.0170%" y="959.50"></text></g><g><title>Compile::Compile (1,240 samples, 0.85%)</title><rect x="8.7670%" y="933" width="0.8472%" height="15" fill="rgb(209,83,10)" fg:x="12832" fg:w="1240"/><text x="9.0170%" y="943.50"></text></g><g><title>ParseGenerator::generate (1,232 samples, 0.84%)</title><rect x="8.7725%" y="917" width="0.8417%" height="15" fill="rgb(209,164,1)" fg:x="12840" fg:w="1232"/><text x="9.0225%" y="927.50"></text></g><g><title>Parse::Parse (1,232 samples, 0.84%)</title><rect x="8.7725%" y="901" width="0.8417%" height="15" fill="rgb(213,184,43)" fg:x="12840" fg:w="1232"/><text x="9.0225%" y="911.50"></text></g><g><title>Parse::do_all_blocks (1,232 samples, 0.84%)</title><rect x="8.7725%" y="885" width="0.8417%" height="15" fill="rgb(231,61,34)" fg:x="12840" fg:w="1232"/><text x="9.0225%" y="895.50"></text></g><g><title>Parse::do_one_block (1,232 samples, 0.84%)</title><rect x="8.7725%" y="869" width="0.8417%" height="15" fill="rgb(235,75,3)" fg:x="12840" fg:w="1232"/><text x="9.0225%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (1,232 samples, 0.84%)</title><rect x="8.7725%" y="853" width="0.8417%" height="15" fill="rgb(220,106,47)" fg:x="12840" fg:w="1232"/><text x="9.0225%" y="863.50"></text></g><g><title>MachSpillCopyNode::implementation (23 samples, 0.02%)</title><rect x="9.6238%" y="869" width="0.0157%" height="15" fill="rgb(210,196,33)" fg:x="14086" fg:w="23"/><text x="9.8738%" y="879.50"></text></g><g><title>Compile::Output (35 samples, 0.02%)</title><rect x="9.6169%" y="933" width="0.0239%" height="15" fill="rgb(229,154,42)" fg:x="14076" fg:w="35"/><text x="9.8669%" y="943.50"></text></g><g><title>Compile::init_buffer (35 samples, 0.02%)</title><rect x="9.6169%" y="917" width="0.0239%" height="15" fill="rgb(228,114,26)" fg:x="14076" fg:w="35"/><text x="9.8669%" y="927.50"></text></g><g><title>Compile::shorten_branches (27 samples, 0.02%)</title><rect x="9.6224%" y="901" width="0.0184%" height="15" fill="rgb(208,144,1)" fg:x="14084" fg:w="27"/><text x="9.8724%" y="911.50"></text></g><g><title>Compile::scratch_emit_size (27 samples, 0.02%)</title><rect x="9.6224%" y="885" width="0.0184%" height="15" fill="rgb(239,112,37)" fg:x="14084" fg:w="27"/><text x="9.8724%" y="895.50"></text></g><g><title>MachNode::adr_type (29 samples, 0.02%)</title><rect x="9.6586%" y="869" width="0.0198%" height="15" fill="rgb(210,96,50)" fg:x="14137" fg:w="29"/><text x="9.9086%" y="879.50"></text></g><g><title>TypeInstPtr::add_offset (22 samples, 0.02%)</title><rect x="9.6634%" y="853" width="0.0150%" height="15" fill="rgb(222,178,2)" fg:x="14144" fg:w="22"/><text x="9.9134%" y="863.50"></text></g><g><title>TypeInstPtr::make (15 samples, 0.01%)</title><rect x="9.6682%" y="837" width="0.0102%" height="15" fill="rgb(226,74,18)" fg:x="14151" fg:w="15"/><text x="9.9182%" y="847.50"></text></g><g><title>PhaseCFG::schedule_late (37 samples, 0.03%)</title><rect x="9.6538%" y="901" width="0.0253%" height="15" fill="rgb(225,67,54)" fg:x="14130" fg:w="37"/><text x="9.9038%" y="911.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (37 samples, 0.03%)</title><rect x="9.6538%" y="885" width="0.0253%" height="15" fill="rgb(251,92,32)" fg:x="14130" fg:w="37"/><text x="9.9038%" y="895.50"></text></g><g><title>PhaseCFG::schedule_local (109 samples, 0.07%)</title><rect x="9.6791%" y="901" width="0.0745%" height="15" fill="rgb(228,149,22)" fg:x="14167" fg:w="109"/><text x="9.9291%" y="911.50"></text></g><g><title>PhaseCFG::sched_call (109 samples, 0.07%)</title><rect x="9.6791%" y="885" width="0.0745%" height="15" fill="rgb(243,54,13)" fg:x="14167" fg:w="109"/><text x="9.9291%" y="895.50"></text></g><g><title>PhaseCFG::do_global_code_motion (151 samples, 0.10%)</title><rect x="9.6524%" y="933" width="0.1032%" height="15" fill="rgb(243,180,28)" fg:x="14128" fg:w="151"/><text x="9.9024%" y="943.50"></text></g><g><title>PhaseCFG::global_code_motion (151 samples, 0.10%)</title><rect x="9.6524%" y="917" width="0.1032%" height="15" fill="rgb(208,167,24)" fg:x="14128" fg:w="151"/><text x="9.9024%" y="927.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (25 samples, 0.02%)</title><rect x="9.7570%" y="885" width="0.0171%" height="15" fill="rgb(245,73,45)" fg:x="14281" fg:w="25"/><text x="10.0070%" y="895.50"></text></g><g><title>PhaseChaitin::Split (29 samples, 0.02%)</title><rect x="9.7556%" y="917" width="0.0198%" height="15" fill="rgb(237,203,48)" fg:x="14279" fg:w="29"/><text x="10.0056%" y="927.50"></text></g><g><title>PhaseChaitin::split_USE (27 samples, 0.02%)</title><rect x="9.7570%" y="901" width="0.0184%" height="15" fill="rgb(211,197,16)" fg:x="14281" fg:w="27"/><text x="10.0070%" y="911.50"></text></g><g><title>Compile::Code_Gen (234 samples, 0.16%)</title><rect x="9.6169%" y="949" width="0.1599%" height="15" fill="rgb(243,99,51)" fg:x="14076" fg:w="234"/><text x="9.8669%" y="959.50"></text></g><g><title>PhaseChaitin::Register_Allocate (31 samples, 0.02%)</title><rect x="9.7556%" y="933" width="0.0212%" height="15" fill="rgb(215,123,29)" fg:x="14279" fg:w="31"/><text x="10.0056%" y="943.50"></text></g><g><title>OopFlow::compute_reach (123 samples, 0.08%)</title><rect x="9.9920%" y="885" width="0.0840%" height="15" fill="rgb(239,186,37)" fg:x="14625" fg:w="123"/><text x="10.2420%" y="895.50"></text></g><g><title>OopFlow::build_oop_map (65 samples, 0.04%)</title><rect x="10.0316%" y="869" width="0.0444%" height="15" fill="rgb(252,136,39)" fg:x="14683" fg:w="65"/><text x="10.2816%" y="879.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (49 samples, 0.03%)</title><rect x="10.0801%" y="885" width="0.0335%" height="15" fill="rgb(223,213,32)" fg:x="14754" fg:w="49"/><text x="10.3301%" y="895.50"></text></g><g><title>Compile::BuildOopMaps (485 samples, 0.33%)</title><rect x="9.7829%" y="901" width="0.3314%" height="15" fill="rgb(233,115,5)" fg:x="14319" fg:w="485"/><text x="10.0329%" y="911.50"></text></g><g><title>CodeBuffer::initialize (15 samples, 0.01%)</title><rect x="10.1164%" y="885" width="0.0102%" height="15" fill="rgb(207,226,44)" fg:x="14807" fg:w="15"/><text x="10.3664%" y="895.50"></text></g><g><title>BufferBlob::create (15 samples, 0.01%)</title><rect x="10.1164%" y="869" width="0.0102%" height="15" fill="rgb(208,126,0)" fg:x="14807" fg:w="15"/><text x="10.3664%" y="879.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="10.1314%" y="805" width="0.0143%" height="15" fill="rgb(244,66,21)" fg:x="14829" fg:w="21"/><text x="10.3814%" y="815.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.01%)</title><rect x="10.1314%" y="789" width="0.0143%" height="15" fill="rgb(222,97,12)" fg:x="14829" fg:w="21"/><text x="10.3814%" y="799.50"></text></g><g><title>do_futex (21 samples, 0.01%)</title><rect x="10.1314%" y="773" width="0.0143%" height="15" fill="rgb(219,213,19)" fg:x="14829" fg:w="21"/><text x="10.3814%" y="783.50"></text></g><g><title>futex_wake (20 samples, 0.01%)</title><rect x="10.1321%" y="757" width="0.0137%" height="15" fill="rgb(252,169,30)" fg:x="14830" fg:w="20"/><text x="10.3821%" y="767.50"></text></g><g><title>wake_up_q (16 samples, 0.01%)</title><rect x="10.1348%" y="741" width="0.0109%" height="15" fill="rgb(206,32,51)" fg:x="14834" fg:w="16"/><text x="10.3848%" y="751.50"></text></g><g><title>try_to_wake_up (16 samples, 0.01%)</title><rect x="10.1348%" y="725" width="0.0109%" height="15" fill="rgb(250,172,42)" fg:x="14834" fg:w="16"/><text x="10.3848%" y="735.50"></text></g><g><title>BufferBlob::create (26 samples, 0.02%)</title><rect x="10.1286%" y="869" width="0.0178%" height="15" fill="rgb(209,34,43)" fg:x="14825" fg:w="26"/><text x="10.3786%" y="879.50"></text></g><g><title>__pthread_cond_signal (22 samples, 0.02%)</title><rect x="10.1314%" y="853" width="0.0150%" height="15" fill="rgb(223,11,35)" fg:x="14829" fg:w="22"/><text x="10.3814%" y="863.50"></text></g><g><title>futex_wake (22 samples, 0.02%)</title><rect x="10.1314%" y="837" width="0.0150%" height="15" fill="rgb(251,219,26)" fg:x="14829" fg:w="22"/><text x="10.3814%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="10.1314%" y="821" width="0.0150%" height="15" fill="rgb(231,119,3)" fg:x="14829" fg:w="22"/><text x="10.3814%" y="831.50"></text></g><g><title>Compile::init_scratch_buffer_blob (29 samples, 0.02%)</title><rect x="10.1280%" y="885" width="0.0198%" height="15" fill="rgb(216,97,11)" fg:x="14824" fg:w="29"/><text x="10.3780%" y="895.50"></text></g><g><title>Compile::scratch_emit_size (91 samples, 0.06%)</title><rect x="10.2065%" y="869" width="0.0622%" height="15" fill="rgb(223,59,9)" fg:x="14939" fg:w="91"/><text x="10.4565%" y="879.50"></text></g><g><title>Compile::shorten_branches (194 samples, 0.13%)</title><rect x="10.1478%" y="885" width="0.1325%" height="15" fill="rgb(233,93,31)" fg:x="14853" fg:w="194"/><text x="10.3978%" y="895.50"></text></g><g><title>Compile::init_buffer (245 samples, 0.17%)</title><rect x="10.1143%" y="901" width="0.1674%" height="15" fill="rgb(239,81,33)" fg:x="14804" fg:w="245"/><text x="10.3643%" y="911.50"></text></g><g><title>Compile::Output (738 samples, 0.50%)</title><rect x="9.7788%" y="917" width="0.5042%" height="15" fill="rgb(213,120,34)" fg:x="14313" fg:w="738"/><text x="10.0288%" y="927.50"></text></g><g><title>Compile::FillExceptionTables (15 samples, 0.01%)</title><rect x="10.3309%" y="901" width="0.0102%" height="15" fill="rgb(243,49,53)" fg:x="15121" fg:w="15"/><text x="10.5809%" y="911.50"></text></g><g><title>Compile::FillLocArray (27 samples, 0.02%)</title><rect x="10.3514%" y="885" width="0.0184%" height="15" fill="rgb(247,216,33)" fg:x="15151" fg:w="27"/><text x="10.6014%" y="895.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (17 samples, 0.01%)</title><rect x="10.3746%" y="869" width="0.0116%" height="15" fill="rgb(226,26,14)" fg:x="15185" fg:w="17"/><text x="10.6246%" y="879.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (28 samples, 0.02%)</title><rect x="10.3705%" y="885" width="0.0191%" height="15" fill="rgb(215,49,53)" fg:x="15179" fg:w="28"/><text x="10.6205%" y="895.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (20 samples, 0.01%)</title><rect x="10.4006%" y="869" width="0.0137%" height="15" fill="rgb(245,162,40)" fg:x="15223" fg:w="20"/><text x="10.6506%" y="879.50"></text></g><g><title>DebugInformationRecorder::describe_scope (39 samples, 0.03%)</title><rect x="10.3896%" y="885" width="0.0266%" height="15" fill="rgb(229,68,17)" fg:x="15207" fg:w="39"/><text x="10.6396%" y="895.50"></text></g><g><title>Compile::Process_OopMap_Node (128 samples, 0.09%)</title><rect x="10.3425%" y="901" width="0.0875%" height="15" fill="rgb(213,182,10)" fg:x="15138" fg:w="128"/><text x="10.5925%" y="911.50"></text></g><g><title>Compile::valid_bundle_info (29 samples, 0.02%)</title><rect x="10.4327%" y="901" width="0.0198%" height="15" fill="rgb(245,125,30)" fg:x="15270" fg:w="29"/><text x="10.6827%" y="911.50"></text></g><g><title>MachSpillCopyNode::implementation (19 samples, 0.01%)</title><rect x="10.4600%" y="901" width="0.0130%" height="15" fill="rgb(232,202,2)" fg:x="15310" fg:w="19"/><text x="10.7100%" y="911.50"></text></g><g><title>Compile::fill_buffer (314 samples, 0.21%)</title><rect x="10.2831%" y="917" width="0.2145%" height="15" fill="rgb(237,140,51)" fg:x="15051" fg:w="314"/><text x="10.5331%" y="927.50"></text></g><g><title>Matcher::init_first_stack_mask (29 samples, 0.02%)</title><rect x="10.5188%" y="885" width="0.0198%" height="15" fill="rgb(236,157,25)" fg:x="15396" fg:w="29"/><text x="10.7688%" y="895.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (38 samples, 0.03%)</title><rect x="10.5140%" y="901" width="0.0260%" height="15" fill="rgb(219,209,0)" fg:x="15389" fg:w="38"/><text x="10.7640%" y="911.50"></text></g><g><title>Matcher::is_bmi_pattern (18 samples, 0.01%)</title><rect x="10.6684%" y="885" width="0.0123%" height="15" fill="rgb(240,116,54)" fg:x="15615" fg:w="18"/><text x="10.9184%" y="895.50"></text></g><g><title>Matcher::find_shared (220 samples, 0.15%)</title><rect x="10.5399%" y="901" width="0.1503%" height="15" fill="rgb(216,10,36)" fg:x="15427" fg:w="220"/><text x="10.7899%" y="911.50"></text></g><g><title>Arena::contains (362 samples, 0.25%)</title><rect x="10.8604%" y="885" width="0.2473%" height="15" fill="rgb(222,72,44)" fg:x="15896" fg:w="362"/><text x="11.1104%" y="895.50"></text></g><g><title>Matcher::collect_null_checks (19 samples, 0.01%)</title><rect x="11.1145%" y="885" width="0.0130%" height="15" fill="rgb(232,159,9)" fg:x="16268" fg:w="19"/><text x="11.3645%" y="895.50"></text></g><g><title>Matcher::ReduceInst (20 samples, 0.01%)</title><rect x="11.1576%" y="853" width="0.0137%" height="15" fill="rgb(210,39,32)" fg:x="16331" fg:w="20"/><text x="11.4076%" y="863.50"></text></g><g><title>Matcher::match_tree (68 samples, 0.05%)</title><rect x="11.1384%" y="869" width="0.0465%" height="15" fill="rgb(216,194,45)" fg:x="16303" fg:w="68"/><text x="11.3884%" y="879.50"></text></g><g><title>Node::add_req (20 samples, 0.01%)</title><rect x="11.1712%" y="853" width="0.0137%" height="15" fill="rgb(218,18,35)" fg:x="16351" fg:w="20"/><text x="11.4212%" y="863.50"></text></g><g><title>Matcher::match_sfpt (98 samples, 0.07%)</title><rect x="11.1275%" y="885" width="0.0670%" height="15" fill="rgb(207,83,51)" fg:x="16287" fg:w="98"/><text x="11.3775%" y="895.50"></text></g><g><title>Matcher::Label_Root (26 samples, 0.02%)</title><rect x="11.3639%" y="821" width="0.0178%" height="15" fill="rgb(225,63,43)" fg:x="16633" fg:w="26"/><text x="11.6139%" y="831.50"></text></g><g><title>State::DFA (24 samples, 0.02%)</title><rect x="11.3817%" y="821" width="0.0164%" height="15" fill="rgb(207,57,36)" fg:x="16659" fg:w="24"/><text x="11.6317%" y="831.50"></text></g><g><title>Matcher::Label_Root (75 samples, 0.05%)</title><rect x="11.3502%" y="837" width="0.0512%" height="15" fill="rgb(216,99,33)" fg:x="16613" fg:w="75"/><text x="11.6002%" y="847.50"></text></g><g><title>State::_sub_Op_AddP (17 samples, 0.01%)</title><rect x="11.4104%" y="821" width="0.0116%" height="15" fill="rgb(225,42,16)" fg:x="16701" fg:w="17"/><text x="11.6604%" y="831.50"></text></g><g><title>State::DFA (37 samples, 0.03%)</title><rect x="11.4035%" y="837" width="0.0253%" height="15" fill="rgb(220,201,45)" fg:x="16691" fg:w="37"/><text x="11.6535%" y="847.50"></text></g><g><title>Matcher::Label_Root (179 samples, 0.12%)</title><rect x="11.3106%" y="853" width="0.1223%" height="15" fill="rgb(225,33,4)" fg:x="16555" fg:w="179"/><text x="11.5606%" y="863.50"></text></g><g><title>State::DFA (28 samples, 0.02%)</title><rect x="11.4329%" y="853" width="0.0191%" height="15" fill="rgb(224,33,50)" fg:x="16734" fg:w="28"/><text x="11.6829%" y="863.50"></text></g><g><title>Matcher::Label_Root (274 samples, 0.19%)</title><rect x="11.2778%" y="869" width="0.1872%" height="15" fill="rgb(246,198,51)" fg:x="16507" fg:w="274"/><text x="11.5278%" y="879.50"></text></g><g><title>Matcher::ReduceInst (18 samples, 0.01%)</title><rect x="11.4999%" y="805" width="0.0123%" height="15" fill="rgb(205,22,4)" fg:x="16832" fg:w="18"/><text x="11.7499%" y="815.50"></text></g><g><title>Matcher::ReduceInst_Interior (41 samples, 0.03%)</title><rect x="11.4958%" y="821" width="0.0280%" height="15" fill="rgb(206,3,8)" fg:x="16826" fg:w="41"/><text x="11.7458%" y="831.50"></text></g><g><title>Matcher::ReduceInst (81 samples, 0.06%)</title><rect x="11.4896%" y="837" width="0.0553%" height="15" fill="rgb(251,23,15)" fg:x="16817" fg:w="81"/><text x="11.7396%" y="847.50"></text></g><g><title>State::MachOperGenerator (19 samples, 0.01%)</title><rect x="11.5552%" y="837" width="0.0130%" height="15" fill="rgb(252,88,28)" fg:x="16913" fg:w="19"/><text x="11.8052%" y="847.50"></text></g><g><title>Matcher::ReduceInst_Interior (130 samples, 0.09%)</title><rect x="11.4800%" y="853" width="0.0888%" height="15" fill="rgb(212,127,14)" fg:x="16803" fg:w="130"/><text x="11.7300%" y="863.50"></text></g><g><title>State::MachNodeGenerator (38 samples, 0.03%)</title><rect x="11.5825%" y="853" width="0.0260%" height="15" fill="rgb(247,145,37)" fg:x="16953" fg:w="38"/><text x="11.8325%" y="863.50"></text></g><g><title>Matcher::ReduceInst (230 samples, 0.16%)</title><rect x="11.4650%" y="869" width="0.1571%" height="15" fill="rgb(209,117,53)" fg:x="16781" fg:w="230"/><text x="11.7150%" y="879.50"></text></g><g><title>Matcher::match_tree (633 samples, 0.43%)</title><rect x="11.1945%" y="885" width="0.4325%" height="15" fill="rgb(212,90,42)" fg:x="16385" fg:w="633"/><text x="11.4445%" y="895.50"></text></g><g><title>Node::clone (43 samples, 0.03%)</title><rect x="11.6290%" y="885" width="0.0294%" height="15" fill="rgb(218,164,37)" fg:x="17021" fg:w="43"/><text x="11.8790%" y="895.50"></text></g><g><title>Node::out_grow (32 samples, 0.02%)</title><rect x="11.6584%" y="885" width="0.0219%" height="15" fill="rgb(246,65,34)" fg:x="17064" fg:w="32"/><text x="11.9084%" y="895.50"></text></g><g><title>Matcher::xform (1,448 samples, 0.99%)</title><rect x="10.6950%" y="901" width="0.9893%" height="15" fill="rgb(231,100,33)" fg:x="15654" fg:w="1448"/><text x="10.9450%" y="911.50"></text></g><g><title>Matcher::match (1,734 samples, 1.18%)</title><rect x="10.5037%" y="917" width="1.1847%" height="15" fill="rgb(228,126,14)" fg:x="15374" fg:w="1734"/><text x="10.7537%" y="927.50"></text></g><g><title>PhaseBlockLayout::find_edges (39 samples, 0.03%)</title><rect x="11.6884%" y="901" width="0.0266%" height="15" fill="rgb(215,173,21)" fg:x="17108" fg:w="39"/><text x="11.9384%" y="911.50"></text></g><g><title>__GI___qsort_r (27 samples, 0.02%)</title><rect x="11.7226%" y="885" width="0.0184%" height="15" fill="rgb(210,6,40)" fg:x="17158" fg:w="27"/><text x="11.9726%" y="895.50"></text></g><g><title>msort_with_tmp (26 samples, 0.02%)</title><rect x="11.7233%" y="869" width="0.0178%" height="15" fill="rgb(212,48,18)" fg:x="17159" fg:w="26"/><text x="11.9733%" y="879.50"></text></g><g><title>msort_with_tmp (26 samples, 0.02%)</title><rect x="11.7233%" y="853" width="0.0178%" height="15" fill="rgb(230,214,11)" fg:x="17159" fg:w="26"/><text x="11.9733%" y="863.50"></text></g><g><title>msort_with_tmp (25 samples, 0.02%)</title><rect x="11.7240%" y="837" width="0.0171%" height="15" fill="rgb(254,105,39)" fg:x="17160" fg:w="25"/><text x="11.9740%" y="847.50"></text></g><g><title>msort_with_tmp (24 samples, 0.02%)</title><rect x="11.7246%" y="821" width="0.0164%" height="15" fill="rgb(245,158,5)" fg:x="17161" fg:w="24"/><text x="11.9746%" y="831.50"></text></g><g><title>msort_with_tmp (22 samples, 0.02%)</title><rect x="11.7260%" y="805" width="0.0150%" height="15" fill="rgb(249,208,11)" fg:x="17163" fg:w="22"/><text x="11.9760%" y="815.50"></text></g><g><title>msort_with_tmp (22 samples, 0.02%)</title><rect x="11.7260%" y="789" width="0.0150%" height="15" fill="rgb(210,39,28)" fg:x="17163" fg:w="22"/><text x="11.9760%" y="799.50"></text></g><g><title>msort_with_tmp (18 samples, 0.01%)</title><rect x="11.7287%" y="773" width="0.0123%" height="15" fill="rgb(211,56,53)" fg:x="17167" fg:w="18"/><text x="11.9787%" y="783.50"></text></g><g><title>msort_with_tmp (18 samples, 0.01%)</title><rect x="11.7287%" y="757" width="0.0123%" height="15" fill="rgb(226,201,30)" fg:x="17167" fg:w="18"/><text x="11.9787%" y="767.50"></text></g><g><title>msort_with_tmp (17 samples, 0.01%)</title><rect x="11.7294%" y="741" width="0.0116%" height="15" fill="rgb(239,101,34)" fg:x="17168" fg:w="17"/><text x="11.9794%" y="751.50"></text></g><g><title>msort_with_tmp (16 samples, 0.01%)</title><rect x="11.7301%" y="725" width="0.0109%" height="15" fill="rgb(226,209,5)" fg:x="17169" fg:w="16"/><text x="11.9801%" y="735.50"></text></g><g><title>PhaseBlockLayout::grow_traces (39 samples, 0.03%)</title><rect x="11.7151%" y="901" width="0.0266%" height="15" fill="rgb(250,105,47)" fg:x="17147" fg:w="39"/><text x="11.9651%" y="911.50"></text></g><g><title>PhaseBlockLayout::reorder_traces (18 samples, 0.01%)</title><rect x="11.7506%" y="901" width="0.0123%" height="15" fill="rgb(230,72,3)" fg:x="17199" fg:w="18"/><text x="12.0006%" y="911.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (110 samples, 0.08%)</title><rect x="11.6884%" y="917" width="0.0752%" height="15" fill="rgb(232,218,39)" fg:x="17108" fg:w="110"/><text x="11.9384%" y="927.50"></text></g><g><title>PhaseCFG::build_cfg (102 samples, 0.07%)</title><rect x="11.7663%" y="901" width="0.0697%" height="15" fill="rgb(248,166,6)" fg:x="17222" fg:w="102"/><text x="12.0163%" y="911.50"></text></g><g><title>PhaseCFG::PhaseCFG (107 samples, 0.07%)</title><rect x="11.7636%" y="917" width="0.0731%" height="15" fill="rgb(247,89,20)" fg:x="17218" fg:w="107"/><text x="12.0136%" y="927.50"></text></g><g><title>PhaseCFG::do_DFS (27 samples, 0.02%)</title><rect x="11.8517%" y="885" width="0.0184%" height="15" fill="rgb(248,130,54)" fg:x="17347" fg:w="27"/><text x="12.1017%" y="895.50"></text></g><g><title>Block_Stack::most_frequent_successor (16 samples, 0.01%)</title><rect x="11.8592%" y="869" width="0.0109%" height="15" fill="rgb(234,196,4)" fg:x="17358" fg:w="16"/><text x="12.1092%" y="879.50"></text></g><g><title>PhaseCFG::build_dominator_tree (52 samples, 0.04%)</title><rect x="11.8367%" y="901" width="0.0355%" height="15" fill="rgb(250,143,31)" fg:x="17325" fg:w="52"/><text x="12.0867%" y="911.50"></text></g><g><title>CFGLoop::compute_freq (21 samples, 0.01%)</title><rect x="11.8749%" y="885" width="0.0143%" height="15" fill="rgb(211,110,34)" fg:x="17381" fg:w="21"/><text x="12.1249%" y="895.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (40 samples, 0.03%)</title><rect x="11.8722%" y="901" width="0.0273%" height="15" fill="rgb(215,124,48)" fg:x="17377" fg:w="40"/><text x="12.1222%" y="911.50"></text></g><g><title>PhaseCFG::implicit_null_check (33 samples, 0.02%)</title><rect x="12.0580%" y="885" width="0.0225%" height="15" fill="rgb(216,46,13)" fg:x="17649" fg:w="33"/><text x="12.3080%" y="895.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (27 samples, 0.02%)</title><rect x="12.0813%" y="885" width="0.0184%" height="15" fill="rgb(205,184,25)" fg:x="17683" fg:w="27"/><text x="12.3313%" y="895.50"></text></g><g><title>Node_Backward_Iterator::next (163 samples, 0.11%)</title><rect x="12.1516%" y="869" width="0.1114%" height="15" fill="rgb(228,1,10)" fg:x="17786" fg:w="163"/><text x="12.4016%" y="879.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (80 samples, 0.05%)</title><rect x="12.2630%" y="869" width="0.0547%" height="15" fill="rgb(213,116,27)" fg:x="17949" fg:w="80"/><text x="12.5130%" y="879.50"></text></g><g><title>MachNode::adr_type (18 samples, 0.01%)</title><rect x="12.3518%" y="853" width="0.0123%" height="15" fill="rgb(241,95,50)" fg:x="18079" fg:w="18"/><text x="12.6018%" y="863.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (83 samples, 0.06%)</title><rect x="12.3177%" y="869" width="0.0567%" height="15" fill="rgb(238,48,32)" fg:x="18029" fg:w="83"/><text x="12.5677%" y="879.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (49 samples, 0.03%)</title><rect x="12.3744%" y="869" width="0.0335%" height="15" fill="rgb(235,113,49)" fg:x="18112" fg:w="49"/><text x="12.6244%" y="879.50"></text></g><g><title>Node_Array::insert (23 samples, 0.02%)</title><rect x="12.3921%" y="853" width="0.0157%" height="15" fill="rgb(205,127,43)" fg:x="18138" fg:w="23"/><text x="12.6421%" y="863.50"></text></g><g><title>PhaseCFG::schedule_late (452 samples, 0.31%)</title><rect x="12.0997%" y="885" width="0.3088%" height="15" fill="rgb(250,162,2)" fg:x="17710" fg:w="452"/><text x="12.3497%" y="895.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (40 samples, 0.03%)</title><rect x="12.5103%" y="869" width="0.0273%" height="15" fill="rgb(220,13,41)" fg:x="18311" fg:w="40"/><text x="12.7603%" y="879.50"></text></g><g><title>PhaseCFG::needed_for_next_call (24 samples, 0.02%)</title><rect x="12.5377%" y="869" width="0.0164%" height="15" fill="rgb(249,221,25)" fg:x="18351" fg:w="24"/><text x="12.7877%" y="879.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (15 samples, 0.01%)</title><rect x="12.5862%" y="853" width="0.0102%" height="15" fill="rgb(215,208,19)" fg:x="18422" fg:w="15"/><text x="12.8362%" y="863.50"></text></g><g><title>PhaseCFG::select (63 samples, 0.04%)</title><rect x="12.5547%" y="869" width="0.0430%" height="15" fill="rgb(236,175,2)" fg:x="18376" fg:w="63"/><text x="12.8047%" y="879.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (37 samples, 0.03%)</title><rect x="12.5978%" y="869" width="0.0253%" height="15" fill="rgb(241,52,2)" fg:x="18439" fg:w="37"/><text x="12.8478%" y="879.50"></text></g><g><title>PhaseChaitin::raise_pressure (17 samples, 0.01%)</title><rect x="12.6114%" y="853" width="0.0116%" height="15" fill="rgb(248,140,14)" fg:x="18459" fg:w="17"/><text x="12.8614%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (24 samples, 0.02%)</title><rect x="12.6347%" y="853" width="0.0164%" height="15" fill="rgb(253,22,42)" fg:x="18493" fg:w="24"/><text x="12.8847%" y="863.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (52 samples, 0.04%)</title><rect x="12.6231%" y="869" width="0.0355%" height="15" fill="rgb(234,61,47)" fg:x="18476" fg:w="52"/><text x="12.8731%" y="879.50"></text></g><g><title>PhaseCFG::schedule_local (368 samples, 0.25%)</title><rect x="12.4085%" y="885" width="0.2514%" height="15" fill="rgb(208,226,15)" fg:x="18162" fg:w="368"/><text x="12.6585%" y="895.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (18 samples, 0.01%)</title><rect x="12.6600%" y="885" width="0.0123%" height="15" fill="rgb(217,221,4)" fg:x="18530" fg:w="18"/><text x="12.9100%" y="895.50"></text></g><g><title>RegMask::Size (55 samples, 0.04%)</title><rect x="12.8041%" y="869" width="0.0376%" height="15" fill="rgb(212,174,34)" fg:x="18741" fg:w="55"/><text x="13.0541%" y="879.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (279 samples, 0.19%)</title><rect x="12.6791%" y="885" width="0.1906%" height="15" fill="rgb(253,83,4)" fg:x="18558" fg:w="279"/><text x="12.9291%" y="895.50"></text></g><g><title>PhaseChaitin::mark_ssa (63 samples, 0.04%)</title><rect x="12.8697%" y="885" width="0.0430%" height="15" fill="rgb(250,195,49)" fg:x="18837" fg:w="63"/><text x="13.1197%" y="895.50"></text></g><g><title>asm_exc_page_fault (21 samples, 0.01%)</title><rect x="12.9722%" y="853" width="0.0143%" height="15" fill="rgb(241,192,25)" fg:x="18987" fg:w="21"/><text x="13.2222%" y="863.50"></text></g><g><title>exc_page_fault (20 samples, 0.01%)</title><rect x="12.9729%" y="837" width="0.0137%" height="15" fill="rgb(208,124,10)" fg:x="18988" fg:w="20"/><text x="13.2229%" y="847.50"></text></g><g><title>do_user_addr_fault (20 samples, 0.01%)</title><rect x="12.9729%" y="821" width="0.0137%" height="15" fill="rgb(222,33,0)" fg:x="18988" fg:w="20"/><text x="13.2229%" y="831.50"></text></g><g><title>handle_mm_fault (19 samples, 0.01%)</title><rect x="12.9736%" y="805" width="0.0130%" height="15" fill="rgb(234,209,28)" fg:x="18989" fg:w="19"/><text x="13.2236%" y="815.50"></text></g><g><title>IndexSet::initialize (80 samples, 0.05%)</title><rect x="12.9326%" y="869" width="0.0547%" height="15" fill="rgb(224,11,23)" fg:x="18929" fg:w="80"/><text x="13.1826%" y="879.50"></text></g><g><title>[libc-2.31.so] (21 samples, 0.01%)</title><rect x="12.9872%" y="869" width="0.0143%" height="15" fill="rgb(232,99,1)" fg:x="19009" fg:w="21"/><text x="13.2372%" y="879.50"></text></g><g><title>PhaseIFG::init (132 samples, 0.09%)</title><rect x="12.9127%" y="885" width="0.0902%" height="15" fill="rgb(237,95,45)" fg:x="18900" fg:w="132"/><text x="13.1627%" y="895.50"></text></g><g><title>IndexSet::initialize (37 samples, 0.03%)</title><rect x="13.1204%" y="869" width="0.0253%" height="15" fill="rgb(208,109,11)" fg:x="19204" fg:w="37"/><text x="13.3704%" y="879.50"></text></g><g><title>IndexSet::alloc_block_containing (23 samples, 0.02%)</title><rect x="13.1792%" y="853" width="0.0157%" height="15" fill="rgb(216,190,48)" fg:x="19290" fg:w="23"/><text x="13.4292%" y="863.50"></text></g><g><title>PhaseLive::add_livein (136 samples, 0.09%)</title><rect x="13.1457%" y="869" width="0.0929%" height="15" fill="rgb(251,171,36)" fg:x="19241" fg:w="136"/><text x="13.3957%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (63 samples, 0.04%)</title><rect x="13.1956%" y="853" width="0.0430%" height="15" fill="rgb(230,62,22)" fg:x="19314" fg:w="63"/><text x="13.4456%" y="863.50"></text></g><g><title>IndexSet::alloc_block_containing (35 samples, 0.02%)</title><rect x="13.3138%" y="853" width="0.0239%" height="15" fill="rgb(225,114,35)" fg:x="19487" fg:w="35"/><text x="13.5638%" y="863.50"></text></g><g><title>IndexSet::initialize (18 samples, 0.01%)</title><rect x="13.3377%" y="853" width="0.0123%" height="15" fill="rgb(215,118,42)" fg:x="19522" fg:w="18"/><text x="13.5877%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (62 samples, 0.04%)</title><rect x="13.3521%" y="853" width="0.0424%" height="15" fill="rgb(243,119,21)" fg:x="19543" fg:w="62"/><text x="13.6021%" y="863.50"></text></g><g><title>PhaseLive::add_liveout (230 samples, 0.16%)</title><rect x="13.2386%" y="869" width="0.1571%" height="15" fill="rgb(252,177,53)" fg:x="19377" fg:w="230"/><text x="13.4886%" y="879.50"></text></g><g><title>PhaseLive::compute (577 samples, 0.39%)</title><rect x="13.0029%" y="885" width="0.3942%" height="15" fill="rgb(237,209,29)" fg:x="19032" fg:w="577"/><text x="13.2529%" y="895.50"></text></g><g><title>PhaseCFG::do_global_code_motion (2,301 samples, 1.57%)</title><rect x="11.8367%" y="917" width="1.5721%" height="15" fill="rgb(212,65,23)" fg:x="17325" fg:w="2301"/><text x="12.0867%" y="927.50"></text></g><g><title>PhaseCFG::global_code_motion (2,209 samples, 1.51%)</title><rect x="11.8995%" y="901" width="1.5092%" height="15" fill="rgb(230,222,46)" fg:x="17417" fg:w="2209"/><text x="12.1495%" y="911.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (47 samples, 0.03%)</title><rect x="13.4170%" y="917" width="0.0321%" height="15" fill="rgb(215,135,32)" fg:x="19638" fg:w="47"/><text x="13.6670%" y="927.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (744 samples, 0.51%)</title><rect x="13.5119%" y="901" width="0.5083%" height="15" fill="rgb(246,101,22)" fg:x="19777" fg:w="744"/><text x="13.7619%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (190 samples, 0.13%)</title><rect x="14.2518%" y="885" width="0.1298%" height="15" fill="rgb(206,107,13)" fg:x="20860" fg:w="190"/><text x="14.5018%" y="895.50"></text></g><g><title>RegMask::find_first_set (23 samples, 0.02%)</title><rect x="14.4308%" y="869" width="0.0157%" height="15" fill="rgb(250,100,44)" fg:x="21122" fg:w="23"/><text x="14.6808%" y="879.50"></text></g><g><title>PhaseChaitin::bias_color (104 samples, 0.07%)</title><rect x="14.3817%" y="885" width="0.0711%" height="15" fill="rgb(231,147,38)" fg:x="21050" fg:w="104"/><text x="14.6317%" y="895.50"></text></g><g><title>IndexSet::alloc_block_containing (39 samples, 0.03%)</title><rect x="14.5825%" y="869" width="0.0266%" height="15" fill="rgb(229,8,40)" fg:x="21344" fg:w="39"/><text x="14.8325%" y="879.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (39 samples, 0.03%)</title><rect x="14.6092%" y="869" width="0.0266%" height="15" fill="rgb(221,135,30)" fg:x="21383" fg:w="39"/><text x="14.8592%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (232 samples, 0.16%)</title><rect x="14.6358%" y="869" width="0.1585%" height="15" fill="rgb(249,193,18)" fg:x="21422" fg:w="232"/><text x="14.8858%" y="879.50"></text></g><g><title>PhaseIFG::re_insert (504 samples, 0.34%)</title><rect x="14.4541%" y="885" width="0.3443%" height="15" fill="rgb(209,133,39)" fg:x="21156" fg:w="504"/><text x="14.7041%" y="895.50"></text></g><g><title>RegMask::clear_to_sets (92 samples, 0.06%)</title><rect x="14.7984%" y="885" width="0.0629%" height="15" fill="rgb(232,100,14)" fg:x="21660" fg:w="92"/><text x="15.0484%" y="895.50"></text></g><g><title>PhaseChaitin::Select (1,234 samples, 0.84%)</title><rect x="14.0202%" y="901" width="0.8431%" height="15" fill="rgb(224,185,1)" fg:x="20521" fg:w="1234"/><text x="14.2702%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (163 samples, 0.11%)</title><rect x="14.9925%" y="885" width="0.1114%" height="15" fill="rgb(223,139,8)" fg:x="21944" fg:w="163"/><text x="15.2425%" y="895.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (49 samples, 0.03%)</title><rect x="15.2828%" y="869" width="0.0335%" height="15" fill="rgb(232,213,38)" fg:x="22369" fg:w="49"/><text x="15.5328%" y="879.50"></text></g><g><title>PhaseChaitin::Simplify (928 samples, 0.63%)</title><rect x="14.8633%" y="901" width="0.6340%" height="15" fill="rgb(207,94,22)" fg:x="21755" fg:w="928"/><text x="15.1133%" y="911.50"></text></g><g><title>PhaseIFG::remove_node (576 samples, 0.39%)</title><rect x="15.1038%" y="885" width="0.3935%" height="15" fill="rgb(219,183,54)" fg:x="22107" fg:w="576"/><text x="15.3538%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (265 samples, 0.18%)</title><rect x="15.3163%" y="869" width="0.1811%" height="15" fill="rgb(216,185,54)" fg:x="22418" fg:w="265"/><text x="15.5663%" y="879.50"></text></g><g><title>CProjNode::is_block_proj (16 samples, 0.01%)</title><rect x="16.6007%" y="885" width="0.0109%" height="15" fill="rgb(254,217,39)" fg:x="24298" fg:w="16"/><text x="16.8507%" y="895.50"></text></g><g><title>MachNode::ideal_reg (16 samples, 0.01%)</title><rect x="16.6848%" y="869" width="0.0109%" height="15" fill="rgb(240,178,23)" fg:x="24421" fg:w="16"/><text x="16.9348%" y="879.50"></text></g><g><title>MachNode::rematerialize (96 samples, 0.07%)</title><rect x="16.6322%" y="885" width="0.0656%" height="15" fill="rgb(218,11,47)" fg:x="24344" fg:w="96"/><text x="16.8822%" y="895.50"></text></g><g><title>Node::rematerialize (87 samples, 0.06%)</title><rect x="16.7073%" y="885" width="0.0594%" height="15" fill="rgb(218,51,51)" fg:x="24454" fg:w="87"/><text x="16.9573%" y="895.50"></text></g><g><title>PhaseChaitin::split_DEF (16 samples, 0.01%)</title><rect x="16.7893%" y="885" width="0.0109%" height="15" fill="rgb(238,126,27)" fg:x="24574" fg:w="16"/><text x="17.0393%" y="895.50"></text></g><g><title>PhaseChaitin::clone_projs (15 samples, 0.01%)</title><rect x="16.8071%" y="869" width="0.0102%" height="15" fill="rgb(249,202,22)" fg:x="24600" fg:w="15"/><text x="17.0571%" y="879.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (27 samples, 0.02%)</title><rect x="16.8002%" y="885" width="0.0184%" height="15" fill="rgb(254,195,49)" fg:x="24590" fg:w="27"/><text x="17.0502%" y="895.50"></text></g><g><title>RegMask::is_aligned_pairs (17 samples, 0.01%)</title><rect x="16.8631%" y="853" width="0.0116%" height="15" fill="rgb(208,123,14)" fg:x="24682" fg:w="17"/><text x="17.1131%" y="863.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (46 samples, 0.03%)</title><rect x="16.8453%" y="869" width="0.0314%" height="15" fill="rgb(224,200,8)" fg:x="24656" fg:w="46"/><text x="17.0953%" y="879.50"></text></g><g><title>PhaseChaitin::insert_proj (23 samples, 0.02%)</title><rect x="16.8768%" y="869" width="0.0157%" height="15" fill="rgb(217,61,36)" fg:x="24702" fg:w="23"/><text x="17.1268%" y="879.50"></text></g><g><title>Node_Array::insert (17 samples, 0.01%)</title><rect x="16.8809%" y="853" width="0.0116%" height="15" fill="rgb(206,35,45)" fg:x="24708" fg:w="17"/><text x="17.1309%" y="863.50"></text></g><g><title>PhaseChaitin::split_USE (109 samples, 0.07%)</title><rect x="16.8187%" y="885" width="0.0745%" height="15" fill="rgb(217,65,33)" fg:x="24617" fg:w="109"/><text x="17.0687%" y="895.50"></text></g><g><title>PhaseChaitin::Split (2,098 samples, 1.43%)</title><rect x="15.4973%" y="901" width="1.4334%" height="15" fill="rgb(222,158,48)" fg:x="22683" fg:w="2098"/><text x="15.7473%" y="911.50"></text></g><g><title>IndexSet::IndexSet (189 samples, 0.13%)</title><rect x="17.2942%" y="885" width="0.1291%" height="15" fill="rgb(254,2,54)" fg:x="25313" fg:w="189"/><text x="17.5442%" y="895.50"></text></g><g><title>__tls_get_addr (26 samples, 0.02%)</title><rect x="17.4056%" y="869" width="0.0178%" height="15" fill="rgb(250,143,38)" fg:x="25476" fg:w="26"/><text x="17.6556%" y="879.50"></text></g><g><title>update_get_addr (15 samples, 0.01%)</title><rect x="17.4131%" y="853" width="0.0102%" height="15" fill="rgb(248,25,0)" fg:x="25487" fg:w="15"/><text x="17.6631%" y="863.50"></text></g><g><title>MachNode::rematerialize (35 samples, 0.02%)</title><rect x="17.4281%" y="885" width="0.0239%" height="15" fill="rgb(206,152,27)" fg:x="25509" fg:w="35"/><text x="17.6781%" y="895.50"></text></g><g><title>JVMState::debug_start (17 samples, 0.01%)</title><rect x="17.6508%" y="869" width="0.0116%" height="15" fill="rgb(240,77,30)" fg:x="25835" fg:w="17"/><text x="17.9008%" y="879.50"></text></g><g><title>MachNode::rematerialize (62 samples, 0.04%)</title><rect x="17.6652%" y="869" width="0.0424%" height="15" fill="rgb(231,5,3)" fg:x="25856" fg:w="62"/><text x="17.9152%" y="879.50"></text></g><g><title>PhaseChaitin::raise_pressure (75 samples, 0.05%)</title><rect x="17.7164%" y="869" width="0.0512%" height="15" fill="rgb(207,226,32)" fg:x="25931" fg:w="75"/><text x="17.9664%" y="879.50"></text></g><g><title>RegMask::is_UP (34 samples, 0.02%)</title><rect x="17.7444%" y="853" width="0.0232%" height="15" fill="rgb(222,207,47)" fg:x="25972" fg:w="34"/><text x="17.9944%" y="863.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (456 samples, 0.31%)</title><rect x="17.4575%" y="885" width="0.3115%" height="15" fill="rgb(229,115,45)" fg:x="25552" fg:w="456"/><text x="17.7075%" y="895.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (25 samples, 0.02%)</title><rect x="17.7690%" y="885" width="0.0171%" height="15" fill="rgb(224,191,6)" fg:x="26008" fg:w="25"/><text x="18.0190%" y="895.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (21 samples, 0.01%)</title><rect x="17.7861%" y="885" width="0.0143%" height="15" fill="rgb(230,227,24)" fg:x="26033" fg:w="21"/><text x="18.0361%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (89 samples, 0.06%)</title><rect x="17.9228%" y="869" width="0.0608%" height="15" fill="rgb(228,80,19)" fg:x="26233" fg:w="89"/><text x="18.1728%" y="879.50"></text></g><g><title>RegMask::is_UP (61 samples, 0.04%)</title><rect x="17.9836%" y="869" width="0.0417%" height="15" fill="rgb(247,229,0)" fg:x="26322" fg:w="61"/><text x="18.2336%" y="879.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (330 samples, 0.23%)</title><rect x="17.8005%" y="885" width="0.2255%" height="15" fill="rgb(237,194,15)" fg:x="26054" fg:w="330"/><text x="18.0505%" y="895.50"></text></g><g><title>__tls_get_addr (21 samples, 0.01%)</title><rect x="18.8799%" y="853" width="0.0143%" height="15" fill="rgb(219,203,20)" fg:x="27634" fg:w="21"/><text x="19.1299%" y="863.50"></text></g><g><title>IndexSet::alloc_block_containing (76 samples, 0.05%)</title><rect x="18.8430%" y="869" width="0.0519%" height="15" fill="rgb(234,128,8)" fg:x="27580" fg:w="76"/><text x="19.0930%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (506 samples, 0.35%)</title><rect x="18.8963%" y="869" width="0.3457%" height="15" fill="rgb(248,202,8)" fg:x="27658" fg:w="506"/><text x="19.1463%" y="879.50"></text></g><g><title>PhaseChaitin::interfere_with_live (1,784 samples, 1.22%)</title><rect x="18.0259%" y="885" width="1.2189%" height="15" fill="rgb(206,104,37)" fg:x="26384" fg:w="1784"/><text x="18.2759%" y="895.50"></text></g><g><title>PhaseChaitin::lower_pressure (55 samples, 0.04%)</title><rect x="19.2448%" y="885" width="0.0376%" height="15" fill="rgb(223,8,27)" fg:x="28168" fg:w="55"/><text x="19.4948%" y="895.50"></text></g><g><title>RegMask::is_UP (26 samples, 0.02%)</title><rect x="19.2646%" y="869" width="0.0178%" height="15" fill="rgb(216,217,28)" fg:x="28197" fg:w="26"/><text x="19.5146%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (125 samples, 0.09%)</title><rect x="19.4866%" y="869" width="0.0854%" height="15" fill="rgb(249,199,1)" fg:x="28522" fg:w="125"/><text x="19.7366%" y="879.50"></text></g><g><title>RegMask::Size (199 samples, 0.14%)</title><rect x="19.5720%" y="869" width="0.1360%" height="15" fill="rgb(240,85,17)" fg:x="28647" fg:w="199"/><text x="19.8220%" y="879.50"></text></g><g><title>RegMask::smear_to_sets (369 samples, 0.25%)</title><rect x="19.7080%" y="869" width="0.2521%" height="15" fill="rgb(206,108,45)" fg:x="28846" fg:w="369"/><text x="19.9580%" y="879.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (995 samples, 0.68%)</title><rect x="19.2830%" y="885" width="0.6798%" height="15" fill="rgb(245,210,41)" fg:x="28224" fg:w="995"/><text x="19.5330%" y="895.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (16 samples, 0.01%)</title><rect x="19.9628%" y="885" width="0.0109%" height="15" fill="rgb(206,13,37)" fg:x="29219" fg:w="16"/><text x="20.2128%" y="895.50"></text></g><g><title>RegMask::smear_to_sets (21 samples, 0.01%)</title><rect x="19.9833%" y="885" width="0.0143%" height="15" fill="rgb(250,61,18)" fg:x="29249" fg:w="21"/><text x="20.2333%" y="895.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (4,487 samples, 3.07%)</title><rect x="16.9328%" y="901" width="3.0656%" height="15" fill="rgb(235,172,48)" fg:x="24784" fg:w="4487"/><text x="17.1828%" y="911.50">Pha..</text></g><g><title>IndexSetIterator::advance_and_next (41 samples, 0.03%)</title><rect x="20.1753%" y="869" width="0.0280%" height="15" fill="rgb(249,201,17)" fg:x="29530" fg:w="41"/><text x="20.4253%" y="879.50"></text></g><g><title>PhaseChaitin::interfere_with_live (209 samples, 0.14%)</title><rect x="20.0612%" y="885" width="0.1428%" height="15" fill="rgb(219,208,6)" fg:x="29363" fg:w="209"/><text x="20.3112%" y="895.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (304 samples, 0.21%)</title><rect x="19.9984%" y="901" width="0.2077%" height="15" fill="rgb(248,31,23)" fg:x="29271" fg:w="304"/><text x="20.2484%" y="911.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (67 samples, 0.05%)</title><rect x="20.2061%" y="901" width="0.0458%" height="15" fill="rgb(245,15,42)" fg:x="29575" fg:w="67"/><text x="20.4561%" y="911.50"></text></g><g><title>find_hihghest_bit (20 samples, 0.01%)</title><rect x="20.2382%" y="885" width="0.0137%" height="15" fill="rgb(222,217,39)" fg:x="29622" fg:w="20"/><text x="20.4882%" y="895.50"></text></g><g><title>PhaseChaitin::compact (25 samples, 0.02%)</title><rect x="20.2518%" y="901" width="0.0171%" height="15" fill="rgb(210,219,27)" fg:x="29642" fg:w="25"/><text x="20.5018%" y="911.50"></text></g><g><title>PhaseChaitin::de_ssa (62 samples, 0.04%)</title><rect x="20.2689%" y="901" width="0.0424%" height="15" fill="rgb(252,166,36)" fg:x="29667" fg:w="62"/><text x="20.5189%" y="911.50"></text></g><g><title>PhaseChaitin::fixup_spills (38 samples, 0.03%)</title><rect x="20.3113%" y="901" width="0.0260%" height="15" fill="rgb(245,132,34)" fg:x="29729" fg:w="38"/><text x="20.5613%" y="911.50"></text></g><g><title>MachCallJavaNode::in_RegMask (26 samples, 0.02%)</title><rect x="21.0826%" y="885" width="0.0178%" height="15" fill="rgb(236,54,3)" fg:x="30858" fg:w="26"/><text x="21.3326%" y="895.50"></text></g><g><title>MachNode::ideal_reg (46 samples, 0.03%)</title><rect x="21.1031%" y="885" width="0.0314%" height="15" fill="rgb(241,173,43)" fg:x="30888" fg:w="46"/><text x="21.3531%" y="895.50"></text></g><g><title>MachNode::in_RegMask (45 samples, 0.03%)</title><rect x="21.1345%" y="885" width="0.0307%" height="15" fill="rgb(215,190,9)" fg:x="30934" fg:w="45"/><text x="21.3845%" y="895.50"></text></g><g><title>MachProjNode::bottom_type (21 samples, 0.01%)</title><rect x="21.1673%" y="885" width="0.0143%" height="15" fill="rgb(242,101,16)" fg:x="30982" fg:w="21"/><text x="21.4173%" y="895.50"></text></g><g><title>PhiNode::in_RegMask (26 samples, 0.02%)</title><rect x="21.1947%" y="885" width="0.0178%" height="15" fill="rgb(223,190,21)" fg:x="31022" fg:w="26"/><text x="21.4447%" y="895.50"></text></g><g><title>RegMask::Size (676 samples, 0.46%)</title><rect x="21.2193%" y="885" width="0.4619%" height="15" fill="rgb(215,228,25)" fg:x="31058" fg:w="676"/><text x="21.4693%" y="895.50"></text></g><g><title>RegMask::clear_to_sets (94 samples, 0.06%)</title><rect x="21.6811%" y="885" width="0.0642%" height="15" fill="rgb(225,36,22)" fg:x="31734" fg:w="94"/><text x="21.9311%" y="895.50"></text></g><g><title>RegMask::is_aligned_pairs (60 samples, 0.04%)</title><rect x="21.7453%" y="885" width="0.0410%" height="15" fill="rgb(251,106,46)" fg:x="31828" fg:w="60"/><text x="21.9953%" y="895.50"></text></g><g><title>RegMask::is_bound1 (75 samples, 0.05%)</title><rect x="21.7863%" y="885" width="0.0512%" height="15" fill="rgb(208,90,1)" fg:x="31888" fg:w="75"/><text x="22.0363%" y="895.50"></text></g><g><title>RegMask::is_bound_pair (46 samples, 0.03%)</title><rect x="21.8376%" y="885" width="0.0314%" height="15" fill="rgb(243,10,4)" fg:x="31963" fg:w="46"/><text x="22.0876%" y="895.50"></text></g><g><title>Type::hashcons (17 samples, 0.01%)</title><rect x="21.8751%" y="885" width="0.0116%" height="15" fill="rgb(212,137,27)" fg:x="32018" fg:w="17"/><text x="22.1251%" y="895.50"></text></g><g><title>Dict::Insert (17 samples, 0.01%)</title><rect x="21.8751%" y="869" width="0.0116%" height="15" fill="rgb(231,220,49)" fg:x="32018" fg:w="17"/><text x="22.1251%" y="879.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (2,324 samples, 1.59%)</title><rect x="20.3372%" y="901" width="1.5878%" height="15" fill="rgb(237,96,20)" fg:x="29767" fg:w="2324"/><text x="20.5872%" y="911.50"></text></g><g><title>PhaseChaitin::merge_multidefs (314 samples, 0.21%)</title><rect x="21.9250%" y="901" width="0.2145%" height="15" fill="rgb(239,229,30)" fg:x="32091" fg:w="314"/><text x="22.1750%" y="911.50"></text></g><g><title>Node::replace_by (16 samples, 0.01%)</title><rect x="22.8378%" y="885" width="0.0109%" height="15" fill="rgb(219,65,33)" fg:x="33427" fg:w="16"/><text x="23.0878%" y="895.50"></text></g><g><title>RegMask::Size (16 samples, 0.01%)</title><rect x="23.5941%" y="853" width="0.0109%" height="15" fill="rgb(243,134,7)" fg:x="34534" fg:w="16"/><text x="23.8441%" y="863.50"></text></g><g><title>PhaseChaitin::use_prior_register (55 samples, 0.04%)</title><rect x="23.5702%" y="869" width="0.0376%" height="15" fill="rgb(216,177,54)" fg:x="34499" fg:w="55"/><text x="23.8202%" y="879.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (23 samples, 0.02%)</title><rect x="23.6078%" y="869" width="0.0157%" height="15" fill="rgb(211,160,20)" fg:x="34554" fg:w="23"/><text x="23.8578%" y="879.50"></text></g><g><title>PhaseChaitin::elide_copy (1,124 samples, 0.77%)</title><rect x="22.8569%" y="885" width="0.7679%" height="15" fill="rgb(239,85,39)" fg:x="33455" fg:w="1124"/><text x="23.1069%" y="895.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (22 samples, 0.02%)</title><rect x="23.6283%" y="885" width="0.0150%" height="15" fill="rgb(232,125,22)" fg:x="34584" fg:w="22"/><text x="23.8783%" y="895.50"></text></g><g><title>[libc-2.31.so] (34 samples, 0.02%)</title><rect x="23.6488%" y="885" width="0.0232%" height="15" fill="rgb(244,57,34)" fg:x="34614" fg:w="34"/><text x="23.8988%" y="895.50"></text></g><g><title>find_lowest_bit (207 samples, 0.14%)</title><rect x="23.6727%" y="885" width="0.1414%" height="15" fill="rgb(214,203,32)" fg:x="34649" fg:w="207"/><text x="23.9227%" y="895.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (2,454 samples, 1.68%)</title><rect x="22.1396%" y="901" width="1.6766%" height="15" fill="rgb(207,58,43)" fg:x="32405" fg:w="2454"/><text x="22.3896%" y="911.50"></text></g><g><title>IndexSet::IndexSet (20 samples, 0.01%)</title><rect x="23.8756%" y="885" width="0.0137%" height="15" fill="rgb(215,193,15)" fg:x="34946" fg:w="20"/><text x="24.1256%" y="895.50"></text></g><g><title>IndexSet::free_block (15 samples, 0.01%)</title><rect x="23.8899%" y="885" width="0.0102%" height="15" fill="rgb(232,15,44)" fg:x="34967" fg:w="15"/><text x="24.1399%" y="895.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (133 samples, 0.09%)</title><rect x="23.8162%" y="901" width="0.0909%" height="15" fill="rgb(212,3,48)" fg:x="34859" fg:w="133"/><text x="24.0662%" y="911.50"></text></g><g><title>PhaseIFG::Union (29 samples, 0.02%)</title><rect x="23.9603%" y="853" width="0.0198%" height="15" fill="rgb(218,128,7)" fg:x="35070" fg:w="29"/><text x="24.2103%" y="863.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (105 samples, 0.07%)</title><rect x="23.9091%" y="885" width="0.0717%" height="15" fill="rgb(226,216,39)" fg:x="34995" fg:w="105"/><text x="24.1591%" y="895.50"></text></g><g><title>PhaseCoalesce::combine_these_two (43 samples, 0.03%)</title><rect x="23.9514%" y="869" width="0.0294%" height="15" fill="rgb(243,47,51)" fg:x="35057" fg:w="43"/><text x="24.2014%" y="879.50"></text></g><g><title>PhaseCFG::is_uncommon (69 samples, 0.05%)</title><rect x="24.0075%" y="869" width="0.0471%" height="15" fill="rgb(241,183,40)" fg:x="35139" fg:w="69"/><text x="24.2575%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (20 samples, 0.01%)</title><rect x="24.1653%" y="837" width="0.0137%" height="15" fill="rgb(231,217,32)" fg:x="35370" fg:w="20"/><text x="24.4153%" y="847.50"></text></g><g><title>IndexSet::lrg_union (156 samples, 0.11%)</title><rect x="24.0751%" y="853" width="0.1066%" height="15" fill="rgb(229,61,38)" fg:x="35238" fg:w="156"/><text x="24.3251%" y="863.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (152 samples, 0.10%)</title><rect x="24.1878%" y="853" width="0.1038%" height="15" fill="rgb(225,210,5)" fg:x="35403" fg:w="152"/><text x="24.4378%" y="863.50"></text></g><g><title>PhaseIFG::effective_degree (45 samples, 0.03%)</title><rect x="24.2917%" y="853" width="0.0307%" height="15" fill="rgb(231,79,45)" fg:x="35555" fg:w="45"/><text x="24.5417%" y="863.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (619 samples, 0.42%)</title><rect x="23.9070%" y="901" width="0.4229%" height="15" fill="rgb(224,100,7)" fg:x="34992" fg:w="619"/><text x="24.1570%" y="911.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (511 samples, 0.35%)</title><rect x="23.9808%" y="885" width="0.3491%" height="15" fill="rgb(241,198,18)" fg:x="35100" fg:w="511"/><text x="24.2308%" y="895.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (403 samples, 0.28%)</title><rect x="24.0546%" y="869" width="0.2753%" height="15" fill="rgb(252,97,53)" fg:x="35208" fg:w="403"/><text x="24.3046%" y="879.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (22 samples, 0.02%)</title><rect x="24.4837%" y="885" width="0.0150%" height="15" fill="rgb(220,88,7)" fg:x="35836" fg:w="22"/><text x="24.7337%" y="895.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (556 samples, 0.38%)</title><rect x="24.3299%" y="901" width="0.3799%" height="15" fill="rgb(213,176,14)" fg:x="35611" fg:w="556"/><text x="24.5799%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (309 samples, 0.21%)</title><rect x="24.4987%" y="885" width="0.2111%" height="15" fill="rgb(246,73,7)" fg:x="35858" fg:w="309"/><text x="24.7487%" y="895.50"></text></g><g><title>IndexSet::alloc_block_containing (31 samples, 0.02%)</title><rect x="24.8451%" y="885" width="0.0212%" height="15" fill="rgb(245,64,36)" fg:x="36365" fg:w="31"/><text x="25.0951%" y="895.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (53 samples, 0.04%)</title><rect x="24.8663%" y="885" width="0.0362%" height="15" fill="rgb(245,80,10)" fg:x="36396" fg:w="53"/><text x="25.1163%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (251 samples, 0.17%)</title><rect x="24.9025%" y="885" width="0.1715%" height="15" fill="rgb(232,107,50)" fg:x="36449" fg:w="251"/><text x="25.1525%" y="895.50"></text></g><g><title>PhaseIFG::SquareUp (535 samples, 0.37%)</title><rect x="24.7098%" y="901" width="0.3655%" height="15" fill="rgb(253,3,0)" fg:x="36167" fg:w="535"/><text x="24.9598%" y="911.50"></text></g><g><title>IndexSet::initialize (137 samples, 0.09%)</title><rect x="25.1218%" y="885" width="0.0936%" height="15" fill="rgb(212,99,53)" fg:x="36770" fg:w="137"/><text x="25.3718%" y="895.50"></text></g><g><title>[libc-2.31.so] (47 samples, 0.03%)</title><rect x="25.2154%" y="885" width="0.0321%" height="15" fill="rgb(249,111,54)" fg:x="36907" fg:w="47"/><text x="25.4654%" y="895.50"></text></g><g><title>PhaseIFG::init (253 samples, 0.17%)</title><rect x="25.0753%" y="901" width="0.1729%" height="15" fill="rgb(249,55,30)" fg:x="36702" fg:w="253"/><text x="25.3253%" y="911.50"></text></g><g><title>IndexSet::alloc_block_containing (39 samples, 0.03%)</title><rect x="25.7551%" y="885" width="0.0266%" height="15" fill="rgb(237,47,42)" fg:x="37697" fg:w="39"/><text x="26.0051%" y="895.50"></text></g><g><title>IndexSet::free_block (29 samples, 0.02%)</title><rect x="25.7818%" y="885" width="0.0198%" height="15" fill="rgb(211,20,18)" fg:x="37736" fg:w="29"/><text x="26.0318%" y="895.50"></text></g><g><title>__tls_get_addr (15 samples, 0.01%)</title><rect x="25.7913%" y="869" width="0.0102%" height="15" fill="rgb(231,203,46)" fg:x="37750" fg:w="15"/><text x="26.0413%" y="879.50"></text></g><g><title>IndexSet::initialize (95 samples, 0.06%)</title><rect x="25.8016%" y="885" width="0.0649%" height="15" fill="rgb(237,142,3)" fg:x="37765" fg:w="95"/><text x="26.0516%" y="895.50"></text></g><g><title>__tls_get_addr (45 samples, 0.03%)</title><rect x="26.2395%" y="853" width="0.0307%" height="15" fill="rgb(241,107,1)" fg:x="38406" fg:w="45"/><text x="26.4895%" y="863.50"></text></g><g><title>update_get_addr (31 samples, 0.02%)</title><rect x="26.2491%" y="837" width="0.0212%" height="15" fill="rgb(229,83,13)" fg:x="38420" fg:w="31"/><text x="26.4991%" y="847.50"></text></g><g><title>_dl_update_slotinfo (19 samples, 0.01%)</title><rect x="26.2573%" y="821" width="0.0130%" height="15" fill="rgb(241,91,40)" fg:x="38432" fg:w="19"/><text x="26.5073%" y="831.50"></text></g><g><title>IndexSet::alloc_block_containing (150 samples, 0.10%)</title><rect x="26.1692%" y="869" width="0.1025%" height="15" fill="rgb(225,3,45)" fg:x="38303" fg:w="150"/><text x="26.4192%" y="879.50"></text></g><g><title>IndexSet::initialize (28 samples, 0.02%)</title><rect x="26.2716%" y="869" width="0.0191%" height="15" fill="rgb(244,223,14)" fg:x="38453" fg:w="28"/><text x="26.5216%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (174 samples, 0.12%)</title><rect x="26.2962%" y="869" width="0.1189%" height="15" fill="rgb(224,124,37)" fg:x="38489" fg:w="174"/><text x="26.5462%" y="879.50"></text></g><g><title>PhaseLive::add_liveout (817 samples, 0.56%)</title><rect x="25.8679%" y="885" width="0.5582%" height="15" fill="rgb(251,171,30)" fg:x="37862" fg:w="817"/><text x="26.1179%" y="895.50"></text></g><g><title>PhaseLive::compute (1,732 samples, 1.18%)</title><rect x="25.2489%" y="901" width="1.1833%" height="15" fill="rgb(236,46,54)" fg:x="36956" fg:w="1732"/><text x="25.4989%" y="911.50"></text></g><g><title>RegMask::Size (35 samples, 0.02%)</title><rect x="26.4342%" y="901" width="0.0239%" height="15" fill="rgb(245,213,5)" fg:x="38691" fg:w="35"/><text x="26.6842%" y="911.50"></text></g><g><title>find_lowest_bit (27 samples, 0.02%)</title><rect x="26.4725%" y="901" width="0.0184%" height="15" fill="rgb(230,144,27)" fg:x="38747" fg:w="27"/><text x="26.7225%" y="911.50"></text></g><g><title>PhaseChaitin::Register_Allocate (19,080 samples, 13.04%)</title><rect x="13.4586%" y="917" width="13.0357%" height="15" fill="rgb(220,86,6)" fg:x="19699" fg:w="19080"/><text x="13.7086%" y="927.50">PhaseChaitin::Regist..</text></g><g><title>PhasePeephole::do_transform (29 samples, 0.02%)</title><rect x="26.4950%" y="917" width="0.0198%" height="15" fill="rgb(240,20,13)" fg:x="38780" fg:w="29"/><text x="26.7450%" y="927.50"></text></g><g><title>Compile::Code_Gen (24,500 samples, 16.74%)</title><rect x="9.7768%" y="933" width="16.7387%" height="15" fill="rgb(217,89,34)" fg:x="14310" fg:w="24500"/><text x="10.0268%" y="943.50">Compile::Code_Gen</text></g><g><title>Compile::call_generator (29 samples, 0.02%)</title><rect x="26.5258%" y="549" width="0.0198%" height="15" fill="rgb(229,13,5)" fg:x="38825" fg:w="29"/><text x="26.7758%" y="559.50"></text></g><g><title>InlineTree::ok_to_inline (24 samples, 0.02%)</title><rect x="26.5292%" y="533" width="0.0164%" height="15" fill="rgb(244,67,35)" fg:x="38830" fg:w="24"/><text x="26.7792%" y="543.50"></text></g><g><title>ciMethod::get_flow_analysis (22 samples, 0.02%)</title><rect x="26.5306%" y="517" width="0.0150%" height="15" fill="rgb(221,40,2)" fg:x="38832" fg:w="22"/><text x="26.7806%" y="527.50"></text></g><g><title>ciTypeFlow::do_flow (22 samples, 0.02%)</title><rect x="26.5306%" y="501" width="0.0150%" height="15" fill="rgb(237,157,21)" fg:x="38832" fg:w="22"/><text x="26.7806%" y="511.50"></text></g><g><title>ciTypeFlow::flow_types (22 samples, 0.02%)</title><rect x="26.5306%" y="485" width="0.0150%" height="15" fill="rgb(222,94,11)" fg:x="38832" fg:w="22"/><text x="26.7806%" y="495.50"></text></g><g><title>ciTypeFlow::df_flow_types (22 samples, 0.02%)</title><rect x="26.5306%" y="469" width="0.0150%" height="15" fill="rgb(249,113,6)" fg:x="38832" fg:w="22"/><text x="26.7806%" y="479.50"></text></g><g><title>ciTypeFlow::flow_block (22 samples, 0.02%)</title><rect x="26.5306%" y="453" width="0.0150%" height="15" fill="rgb(238,137,36)" fg:x="38832" fg:w="22"/><text x="26.7806%" y="463.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (18 samples, 0.01%)</title><rect x="26.5333%" y="437" width="0.0123%" height="15" fill="rgb(210,102,26)" fg:x="38836" fg:w="18"/><text x="26.7833%" y="447.50"></text></g><g><title>Compile::call_generator (17 samples, 0.01%)</title><rect x="26.5552%" y="453" width="0.0116%" height="15" fill="rgb(218,30,30)" fg:x="38868" fg:w="17"/><text x="26.8052%" y="463.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="26.6399%" y="181" width="0.0109%" height="15" fill="rgb(214,67,26)" fg:x="38992" fg:w="16"/><text x="26.8899%" y="191.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="26.6385%" y="213" width="0.0232%" height="15" fill="rgb(251,9,53)" fg:x="38990" fg:w="34"/><text x="26.8885%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="26.6392%" y="197" width="0.0225%" height="15" fill="rgb(228,204,25)" fg:x="38991" fg:w="33"/><text x="26.8892%" y="207.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.02%)</title><rect x="26.6378%" y="229" width="0.0246%" height="15" fill="rgb(207,153,8)" fg:x="38989" fg:w="36"/><text x="26.8878%" y="239.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.03%)</title><rect x="26.6351%" y="261" width="0.0301%" height="15" fill="rgb(242,9,16)" fg:x="38985" fg:w="44"/><text x="26.8851%" y="271.50"></text></g><g><title>Parse::Parse (44 samples, 0.03%)</title><rect x="26.6351%" y="245" width="0.0301%" height="15" fill="rgb(217,211,10)" fg:x="38985" fg:w="44"/><text x="26.8851%" y="255.50"></text></g><g><title>Parse::do_call (66 samples, 0.05%)</title><rect x="26.6242%" y="277" width="0.0451%" height="15" fill="rgb(219,228,52)" fg:x="38969" fg:w="66"/><text x="26.8742%" y="287.50"></text></g><g><title>Parse::do_one_block (101 samples, 0.07%)</title><rect x="26.6194%" y="309" width="0.0690%" height="15" fill="rgb(231,92,29)" fg:x="38962" fg:w="101"/><text x="26.8694%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (99 samples, 0.07%)</title><rect x="26.6208%" y="293" width="0.0676%" height="15" fill="rgb(232,8,23)" fg:x="38964" fg:w="99"/><text x="26.8708%" y="303.50"></text></g><g><title>Parse::do_all_blocks (105 samples, 0.07%)</title><rect x="26.6187%" y="325" width="0.0717%" height="15" fill="rgb(216,211,34)" fg:x="38961" fg:w="105"/><text x="26.8687%" y="335.50"></text></g><g><title>Parse::Parse (120 samples, 0.08%)</title><rect x="26.6119%" y="341" width="0.0820%" height="15" fill="rgb(236,151,0)" fg:x="38951" fg:w="120"/><text x="26.8619%" y="351.50"></text></g><g><title>ParseGenerator::generate (121 samples, 0.08%)</title><rect x="26.6119%" y="357" width="0.0827%" height="15" fill="rgb(209,168,3)" fg:x="38951" fg:w="121"/><text x="26.8619%" y="367.50"></text></g><g><title>Parse::do_call (159 samples, 0.11%)</title><rect x="26.5941%" y="373" width="0.1086%" height="15" fill="rgb(208,129,28)" fg:x="38925" fg:w="159"/><text x="26.8441%" y="383.50"></text></g><g><title>Parse::do_field_access (23 samples, 0.02%)</title><rect x="26.7041%" y="373" width="0.0157%" height="15" fill="rgb(229,78,22)" fg:x="39086" fg:w="23"/><text x="26.9541%" y="383.50"></text></g><g><title>Parse::do_one_block (214 samples, 0.15%)</title><rect x="26.5866%" y="405" width="0.1462%" height="15" fill="rgb(228,187,13)" fg:x="38914" fg:w="214"/><text x="26.8366%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (214 samples, 0.15%)</title><rect x="26.5866%" y="389" width="0.1462%" height="15" fill="rgb(240,119,24)" fg:x="38914" fg:w="214"/><text x="26.8366%" y="399.50"></text></g><g><title>Parse::do_all_blocks (215 samples, 0.15%)</title><rect x="26.5866%" y="421" width="0.1469%" height="15" fill="rgb(209,194,42)" fg:x="38914" fg:w="215"/><text x="26.8366%" y="431.50"></text></g><g><title>Parse::Parse (240 samples, 0.16%)</title><rect x="26.5757%" y="437" width="0.1640%" height="15" fill="rgb(247,200,46)" fg:x="38898" fg:w="240"/><text x="26.8257%" y="447.50"></text></g><g><title>ParseGenerator::generate (241 samples, 0.16%)</title><rect x="26.5757%" y="453" width="0.1647%" height="15" fill="rgb(218,76,16)" fg:x="38898" fg:w="241"/><text x="26.8257%" y="463.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="26.7424%" y="405" width="0.0123%" height="15" fill="rgb(225,21,48)" fg:x="39142" fg:w="18"/><text x="26.9924%" y="415.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="26.7424%" y="389" width="0.0123%" height="15" fill="rgb(239,223,50)" fg:x="39142" fg:w="18"/><text x="26.9924%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="26.7424%" y="373" width="0.0123%" height="15" fill="rgb(244,45,21)" fg:x="39142" fg:w="18"/><text x="26.9924%" y="383.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="26.7417%" y="437" width="0.0143%" height="15" fill="rgb(232,33,43)" fg:x="39141" fg:w="21"/><text x="26.9917%" y="447.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="26.7417%" y="421" width="0.0143%" height="15" fill="rgb(209,8,3)" fg:x="39141" fg:w="21"/><text x="26.9917%" y="431.50"></text></g><g><title>PredictedCallGenerator::generate (27 samples, 0.02%)</title><rect x="26.7403%" y="453" width="0.0184%" height="15" fill="rgb(214,25,53)" fg:x="39139" fg:w="27"/><text x="26.9903%" y="463.50"></text></g><g><title>Parse::do_call (302 samples, 0.21%)</title><rect x="26.5552%" y="469" width="0.2063%" height="15" fill="rgb(254,186,54)" fg:x="38868" fg:w="302"/><text x="26.8052%" y="479.50"></text></g><g><title>Parse::do_put_xxx (15 samples, 0.01%)</title><rect x="26.7697%" y="453" width="0.0102%" height="15" fill="rgb(208,174,49)" fg:x="39182" fg:w="15"/><text x="27.0197%" y="463.50"></text></g><g><title>Parse::do_field_access (29 samples, 0.02%)</title><rect x="26.7622%" y="469" width="0.0198%" height="15" fill="rgb(233,191,51)" fg:x="39171" fg:w="29"/><text x="27.0122%" y="479.50"></text></g><g><title>Parse::do_one_block (354 samples, 0.24%)</title><rect x="26.5518%" y="501" width="0.2419%" height="15" fill="rgb(222,134,10)" fg:x="38863" fg:w="354"/><text x="26.8018%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (352 samples, 0.24%)</title><rect x="26.5531%" y="485" width="0.2405%" height="15" fill="rgb(230,226,20)" fg:x="38865" fg:w="352"/><text x="26.8031%" y="495.50"></text></g><g><title>ParseGenerator::generate (360 samples, 0.25%)</title><rect x="26.5483%" y="549" width="0.2460%" height="15" fill="rgb(251,111,25)" fg:x="38858" fg:w="360"/><text x="26.7983%" y="559.50"></text></g><g><title>Parse::Parse (360 samples, 0.25%)</title><rect x="26.5483%" y="533" width="0.2460%" height="15" fill="rgb(224,40,46)" fg:x="38858" fg:w="360"/><text x="26.7983%" y="543.50"></text></g><g><title>Parse::do_all_blocks (355 samples, 0.24%)</title><rect x="26.5518%" y="517" width="0.2425%" height="15" fill="rgb(236,108,47)" fg:x="38863" fg:w="355"/><text x="26.8018%" y="527.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.02%)</title><rect x="26.7977%" y="437" width="0.0150%" height="15" fill="rgb(234,93,0)" fg:x="39223" fg:w="22"/><text x="27.0477%" y="447.50"></text></g><g><title>Parse::Parse (22 samples, 0.02%)</title><rect x="26.7977%" y="421" width="0.0150%" height="15" fill="rgb(224,213,32)" fg:x="39223" fg:w="22"/><text x="27.0477%" y="431.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="26.7984%" y="405" width="0.0143%" height="15" fill="rgb(251,11,48)" fg:x="39224" fg:w="21"/><text x="27.0484%" y="415.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="26.7984%" y="389" width="0.0143%" height="15" fill="rgb(236,173,5)" fg:x="39224" fg:w="21"/><text x="27.0484%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="26.7984%" y="373" width="0.0143%" height="15" fill="rgb(230,95,12)" fg:x="39224" fg:w="21"/><text x="27.0484%" y="383.50"></text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="26.7943%" y="453" width="0.0219%" height="15" fill="rgb(232,209,1)" fg:x="39218" fg:w="32"/><text x="27.0443%" y="463.50"></text></g><g><title>ParseGenerator::generate (36 samples, 0.02%)</title><rect x="26.7943%" y="533" width="0.0246%" height="15" fill="rgb(232,6,1)" fg:x="39218" fg:w="36"/><text x="27.0443%" y="543.50"></text></g><g><title>Parse::Parse (36 samples, 0.02%)</title><rect x="26.7943%" y="517" width="0.0246%" height="15" fill="rgb(210,224,50)" fg:x="39218" fg:w="36"/><text x="27.0443%" y="527.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.02%)</title><rect x="26.7943%" y="501" width="0.0246%" height="15" fill="rgb(228,127,35)" fg:x="39218" fg:w="36"/><text x="27.0443%" y="511.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.02%)</title><rect x="26.7943%" y="485" width="0.0246%" height="15" fill="rgb(245,102,45)" fg:x="39218" fg:w="36"/><text x="27.0443%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.02%)</title><rect x="26.7943%" y="469" width="0.0246%" height="15" fill="rgb(214,1,49)" fg:x="39218" fg:w="36"/><text x="27.0443%" y="479.50"></text></g><g><title>PredictedCallGenerator::generate (39 samples, 0.03%)</title><rect x="26.7943%" y="549" width="0.0266%" height="15" fill="rgb(226,163,40)" fg:x="39218" fg:w="39"/><text x="27.0443%" y="559.50"></text></g><g><title>Parse::do_call (434 samples, 0.30%)</title><rect x="26.5258%" y="565" width="0.2965%" height="15" fill="rgb(239,212,28)" fg:x="38825" fg:w="434"/><text x="26.7758%" y="575.50"></text></g><g><title>Parse::do_all_blocks (436 samples, 0.30%)</title><rect x="26.5258%" y="613" width="0.2979%" height="15" fill="rgb(220,20,13)" fg:x="38825" fg:w="436"/><text x="26.7758%" y="623.50"></text></g><g><title>Parse::do_one_block (436 samples, 0.30%)</title><rect x="26.5258%" y="597" width="0.2979%" height="15" fill="rgb(210,164,35)" fg:x="38825" fg:w="436"/><text x="26.7758%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (436 samples, 0.30%)</title><rect x="26.5258%" y="581" width="0.2979%" height="15" fill="rgb(248,109,41)" fg:x="38825" fg:w="436"/><text x="26.7758%" y="591.50"></text></g><g><title>ParseGenerator::generate (437 samples, 0.30%)</title><rect x="26.5258%" y="645" width="0.2986%" height="15" fill="rgb(238,23,50)" fg:x="38825" fg:w="437"/><text x="26.7758%" y="655.50"></text></g><g><title>Parse::Parse (437 samples, 0.30%)</title><rect x="26.5258%" y="629" width="0.2986%" height="15" fill="rgb(211,48,49)" fg:x="38825" fg:w="437"/><text x="26.7758%" y="639.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="26.8360%" y="437" width="0.0116%" height="15" fill="rgb(223,36,21)" fg:x="39279" fg:w="17"/><text x="27.0860%" y="447.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="26.8360%" y="421" width="0.0116%" height="15" fill="rgb(207,123,46)" fg:x="39279" fg:w="17"/><text x="27.0860%" y="431.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="26.8312%" y="453" width="0.0178%" height="15" fill="rgb(240,218,32)" fg:x="39272" fg:w="26"/><text x="27.0812%" y="463.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.02%)</title><rect x="26.8278%" y="533" width="0.0232%" height="15" fill="rgb(252,5,43)" fg:x="39267" fg:w="34"/><text x="27.0778%" y="543.50"></text></g><g><title>Parse::Parse (34 samples, 0.02%)</title><rect x="26.8278%" y="517" width="0.0232%" height="15" fill="rgb(252,84,19)" fg:x="39267" fg:w="34"/><text x="27.0778%" y="527.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="26.8278%" y="501" width="0.0232%" height="15" fill="rgb(243,152,39)" fg:x="39267" fg:w="34"/><text x="27.0778%" y="511.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="26.8278%" y="485" width="0.0232%" height="15" fill="rgb(234,160,15)" fg:x="39267" fg:w="34"/><text x="27.0778%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="26.8278%" y="469" width="0.0232%" height="15" fill="rgb(237,34,20)" fg:x="39267" fg:w="34"/><text x="27.0778%" y="479.50"></text></g><g><title>ParseGenerator::generate (43 samples, 0.03%)</title><rect x="26.8244%" y="629" width="0.0294%" height="15" fill="rgb(229,97,13)" fg:x="39262" fg:w="43"/><text x="27.0744%" y="639.50"></text></g><g><title>Parse::Parse (43 samples, 0.03%)</title><rect x="26.8244%" y="613" width="0.0294%" height="15" fill="rgb(234,71,50)" fg:x="39262" fg:w="43"/><text x="27.0744%" y="623.50"></text></g><g><title>Parse::do_all_blocks (43 samples, 0.03%)</title><rect x="26.8244%" y="597" width="0.0294%" height="15" fill="rgb(253,155,4)" fg:x="39262" fg:w="43"/><text x="27.0744%" y="607.50"></text></g><g><title>Parse::do_one_block (43 samples, 0.03%)</title><rect x="26.8244%" y="581" width="0.0294%" height="15" fill="rgb(222,185,37)" fg:x="39262" fg:w="43"/><text x="27.0744%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (43 samples, 0.03%)</title><rect x="26.8244%" y="565" width="0.0294%" height="15" fill="rgb(251,177,13)" fg:x="39262" fg:w="43"/><text x="27.0744%" y="575.50"></text></g><g><title>Parse::do_call (43 samples, 0.03%)</title><rect x="26.8244%" y="549" width="0.0294%" height="15" fill="rgb(250,179,40)" fg:x="39262" fg:w="43"/><text x="27.0744%" y="559.50"></text></g><g><title>Parse::do_call (492 samples, 0.34%)</title><rect x="26.5210%" y="661" width="0.3361%" height="15" fill="rgb(242,44,2)" fg:x="38818" fg:w="492"/><text x="26.7710%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (48 samples, 0.03%)</title><rect x="26.8244%" y="645" width="0.0328%" height="15" fill="rgb(216,177,13)" fg:x="39262" fg:w="48"/><text x="27.0744%" y="655.50"></text></g><g><title>ParseGenerator::generate (493 samples, 0.34%)</title><rect x="26.5210%" y="741" width="0.3368%" height="15" fill="rgb(216,106,43)" fg:x="38818" fg:w="493"/><text x="26.7710%" y="751.50"></text></g><g><title>Parse::Parse (493 samples, 0.34%)</title><rect x="26.5210%" y="725" width="0.3368%" height="15" fill="rgb(216,183,2)" fg:x="38818" fg:w="493"/><text x="26.7710%" y="735.50"></text></g><g><title>Parse::do_all_blocks (493 samples, 0.34%)</title><rect x="26.5210%" y="709" width="0.3368%" height="15" fill="rgb(249,75,3)" fg:x="38818" fg:w="493"/><text x="26.7710%" y="719.50"></text></g><g><title>Parse::do_one_block (493 samples, 0.34%)</title><rect x="26.5210%" y="693" width="0.3368%" height="15" fill="rgb(219,67,39)" fg:x="38818" fg:w="493"/><text x="26.7710%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (493 samples, 0.34%)</title><rect x="26.5210%" y="677" width="0.3368%" height="15" fill="rgb(253,228,2)" fg:x="38818" fg:w="493"/><text x="26.7710%" y="687.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="26.8633%" y="533" width="0.0157%" height="15" fill="rgb(235,138,27)" fg:x="39319" fg:w="23"/><text x="27.1133%" y="543.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="26.8633%" y="517" width="0.0157%" height="15" fill="rgb(236,97,51)" fg:x="39319" fg:w="23"/><text x="27.1133%" y="527.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="26.8633%" y="501" width="0.0157%" height="15" fill="rgb(240,80,30)" fg:x="39319" fg:w="23"/><text x="27.1133%" y="511.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="26.8633%" y="485" width="0.0157%" height="15" fill="rgb(230,178,19)" fg:x="39319" fg:w="23"/><text x="27.1133%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="26.8633%" y="469" width="0.0157%" height="15" fill="rgb(210,190,27)" fg:x="39319" fg:w="23"/><text x="27.1133%" y="479.50"></text></g><g><title>Parse::do_call (43 samples, 0.03%)</title><rect x="26.8578%" y="549" width="0.0294%" height="15" fill="rgb(222,107,31)" fg:x="39311" fg:w="43"/><text x="27.1078%" y="559.50"></text></g><g><title>ParseGenerator::generate (46 samples, 0.03%)</title><rect x="26.8578%" y="629" width="0.0314%" height="15" fill="rgb(216,127,34)" fg:x="39311" fg:w="46"/><text x="27.1078%" y="639.50"></text></g><g><title>Parse::Parse (46 samples, 0.03%)</title><rect x="26.8578%" y="613" width="0.0314%" height="15" fill="rgb(234,116,52)" fg:x="39311" fg:w="46"/><text x="27.1078%" y="623.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.03%)</title><rect x="26.8578%" y="597" width="0.0314%" height="15" fill="rgb(222,124,15)" fg:x="39311" fg:w="46"/><text x="27.1078%" y="607.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.03%)</title><rect x="26.8578%" y="581" width="0.0314%" height="15" fill="rgb(231,179,28)" fg:x="39311" fg:w="46"/><text x="27.1078%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.03%)</title><rect x="26.8578%" y="565" width="0.0314%" height="15" fill="rgb(226,93,45)" fg:x="39311" fg:w="46"/><text x="27.1078%" y="575.50"></text></g><g><title>ParseGenerator::generate (63 samples, 0.04%)</title><rect x="26.8578%" y="725" width="0.0430%" height="15" fill="rgb(215,8,51)" fg:x="39311" fg:w="63"/><text x="27.1078%" y="735.50"></text></g><g><title>Parse::Parse (63 samples, 0.04%)</title><rect x="26.8578%" y="709" width="0.0430%" height="15" fill="rgb(223,106,5)" fg:x="39311" fg:w="63"/><text x="27.1078%" y="719.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.04%)</title><rect x="26.8578%" y="693" width="0.0430%" height="15" fill="rgb(250,191,5)" fg:x="39311" fg:w="63"/><text x="27.1078%" y="703.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.04%)</title><rect x="26.8578%" y="677" width="0.0430%" height="15" fill="rgb(242,132,44)" fg:x="39311" fg:w="63"/><text x="27.1078%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.04%)</title><rect x="26.8578%" y="661" width="0.0430%" height="15" fill="rgb(251,152,29)" fg:x="39311" fg:w="63"/><text x="27.1078%" y="671.50"></text></g><g><title>Parse::do_call (63 samples, 0.04%)</title><rect x="26.8578%" y="645" width="0.0430%" height="15" fill="rgb(218,179,5)" fg:x="39311" fg:w="63"/><text x="27.1078%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (17 samples, 0.01%)</title><rect x="26.8893%" y="629" width="0.0116%" height="15" fill="rgb(227,67,19)" fg:x="39357" fg:w="17"/><text x="27.1393%" y="639.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="26.8893%" y="613" width="0.0116%" height="15" fill="rgb(233,119,31)" fg:x="39357" fg:w="17"/><text x="27.1393%" y="623.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="26.8893%" y="597" width="0.0116%" height="15" fill="rgb(241,120,22)" fg:x="39357" fg:w="17"/><text x="27.1393%" y="607.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="26.8893%" y="581" width="0.0116%" height="15" fill="rgb(224,102,30)" fg:x="39357" fg:w="17"/><text x="27.1393%" y="591.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="26.8893%" y="565" width="0.0116%" height="15" fill="rgb(210,164,37)" fg:x="39357" fg:w="17"/><text x="27.1393%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="26.8893%" y="549" width="0.0116%" height="15" fill="rgb(226,191,16)" fg:x="39357" fg:w="17"/><text x="27.1393%" y="559.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="26.8893%" y="533" width="0.0116%" height="15" fill="rgb(214,40,45)" fg:x="39357" fg:w="17"/><text x="27.1393%" y="543.50"></text></g><g><title>ParseGenerator::generate (563 samples, 0.38%)</title><rect x="26.5203%" y="837" width="0.3846%" height="15" fill="rgb(244,29,26)" fg:x="38817" fg:w="563"/><text x="26.7703%" y="847.50"></text></g><g><title>Parse::Parse (563 samples, 0.38%)</title><rect x="26.5203%" y="821" width="0.3846%" height="15" fill="rgb(216,16,5)" fg:x="38817" fg:w="563"/><text x="26.7703%" y="831.50"></text></g><g><title>Parse::do_all_blocks (563 samples, 0.38%)</title><rect x="26.5203%" y="805" width="0.3846%" height="15" fill="rgb(249,76,35)" fg:x="38817" fg:w="563"/><text x="26.7703%" y="815.50"></text></g><g><title>Parse::do_one_block (563 samples, 0.38%)</title><rect x="26.5203%" y="789" width="0.3846%" height="15" fill="rgb(207,11,44)" fg:x="38817" fg:w="563"/><text x="26.7703%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (563 samples, 0.38%)</title><rect x="26.5203%" y="773" width="0.3846%" height="15" fill="rgb(228,190,49)" fg:x="38817" fg:w="563"/><text x="26.7703%" y="783.50"></text></g><g><title>Parse::do_call (563 samples, 0.38%)</title><rect x="26.5203%" y="757" width="0.3846%" height="15" fill="rgb(214,173,12)" fg:x="38817" fg:w="563"/><text x="26.7703%" y="767.50"></text></g><g><title>PredictedCallGenerator::generate (69 samples, 0.05%)</title><rect x="26.8578%" y="741" width="0.0471%" height="15" fill="rgb(218,26,35)" fg:x="39311" fg:w="69"/><text x="27.1078%" y="751.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="26.9200%" y="357" width="0.0109%" height="15" fill="rgb(220,200,19)" fg:x="39402" fg:w="16"/><text x="27.1700%" y="367.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.02%)</title><rect x="26.9193%" y="389" width="0.0150%" height="15" fill="rgb(239,95,49)" fg:x="39401" fg:w="22"/><text x="27.1693%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.02%)</title><rect x="26.9193%" y="373" width="0.0150%" height="15" fill="rgb(235,85,53)" fg:x="39401" fg:w="22"/><text x="27.1693%" y="383.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="26.9193%" y="405" width="0.0157%" height="15" fill="rgb(233,133,31)" fg:x="39401" fg:w="23"/><text x="27.1693%" y="415.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="26.9186%" y="437" width="0.0171%" height="15" fill="rgb(218,25,20)" fg:x="39400" fg:w="25"/><text x="27.1686%" y="447.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="26.9186%" y="421" width="0.0171%" height="15" fill="rgb(252,210,38)" fg:x="39400" fg:w="25"/><text x="27.1686%" y="431.50"></text></g><g><title>Parse::do_call (42 samples, 0.03%)</title><rect x="26.9139%" y="453" width="0.0287%" height="15" fill="rgb(242,134,21)" fg:x="39393" fg:w="42"/><text x="27.1639%" y="463.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.04%)</title><rect x="26.9111%" y="533" width="0.0355%" height="15" fill="rgb(213,28,48)" fg:x="39389" fg:w="52"/><text x="27.1611%" y="543.50"></text></g><g><title>Parse::Parse (52 samples, 0.04%)</title><rect x="26.9111%" y="517" width="0.0355%" height="15" fill="rgb(250,196,2)" fg:x="39389" fg:w="52"/><text x="27.1611%" y="527.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.03%)</title><rect x="26.9118%" y="501" width="0.0348%" height="15" fill="rgb(227,5,17)" fg:x="39390" fg:w="51"/><text x="27.1618%" y="511.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.03%)</title><rect x="26.9118%" y="485" width="0.0348%" height="15" fill="rgb(221,226,24)" fg:x="39390" fg:w="51"/><text x="27.1618%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.03%)</title><rect x="26.9118%" y="469" width="0.0348%" height="15" fill="rgb(211,5,48)" fg:x="39390" fg:w="51"/><text x="27.1618%" y="479.50"></text></g><g><title>Parse::do_call (61 samples, 0.04%)</title><rect x="26.9063%" y="549" width="0.0417%" height="15" fill="rgb(219,150,6)" fg:x="39382" fg:w="61"/><text x="27.1563%" y="559.50"></text></g><g><title>ParseGenerator::generate (64 samples, 0.04%)</title><rect x="26.9063%" y="629" width="0.0437%" height="15" fill="rgb(251,46,16)" fg:x="39382" fg:w="64"/><text x="27.1563%" y="639.50"></text></g><g><title>Parse::Parse (64 samples, 0.04%)</title><rect x="26.9063%" y="613" width="0.0437%" height="15" fill="rgb(220,204,40)" fg:x="39382" fg:w="64"/><text x="27.1563%" y="623.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.04%)</title><rect x="26.9063%" y="597" width="0.0437%" height="15" fill="rgb(211,85,2)" fg:x="39382" fg:w="64"/><text x="27.1563%" y="607.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.04%)</title><rect x="26.9063%" y="581" width="0.0437%" height="15" fill="rgb(229,17,7)" fg:x="39382" fg:w="64"/><text x="27.1563%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.04%)</title><rect x="26.9063%" y="565" width="0.0437%" height="15" fill="rgb(239,72,28)" fg:x="39382" fg:w="64"/><text x="27.1563%" y="575.50"></text></g><g><title>Parse::do_call (70 samples, 0.05%)</title><rect x="26.9050%" y="645" width="0.0478%" height="15" fill="rgb(230,47,54)" fg:x="39380" fg:w="70"/><text x="27.1550%" y="655.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.05%)</title><rect x="26.9050%" y="725" width="0.0485%" height="15" fill="rgb(214,50,8)" fg:x="39380" fg:w="71"/><text x="27.1550%" y="735.50"></text></g><g><title>Parse::Parse (71 samples, 0.05%)</title><rect x="26.9050%" y="709" width="0.0485%" height="15" fill="rgb(216,198,43)" fg:x="39380" fg:w="71"/><text x="27.1550%" y="719.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.05%)</title><rect x="26.9050%" y="693" width="0.0485%" height="15" fill="rgb(234,20,35)" fg:x="39380" fg:w="71"/><text x="27.1550%" y="703.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.05%)</title><rect x="26.9050%" y="677" width="0.0485%" height="15" fill="rgb(254,45,19)" fg:x="39380" fg:w="71"/><text x="27.1550%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (71 samples, 0.05%)</title><rect x="26.9050%" y="661" width="0.0485%" height="15" fill="rgb(219,14,44)" fg:x="39380" fg:w="71"/><text x="27.1550%" y="671.50"></text></g><g><title>ParseGenerator::generate (81 samples, 0.06%)</title><rect x="26.9050%" y="821" width="0.0553%" height="15" fill="rgb(217,220,26)" fg:x="39380" fg:w="81"/><text x="27.1550%" y="831.50"></text></g><g><title>Parse::Parse (81 samples, 0.06%)</title><rect x="26.9050%" y="805" width="0.0553%" height="15" fill="rgb(213,158,28)" fg:x="39380" fg:w="81"/><text x="27.1550%" y="815.50"></text></g><g><title>Parse::do_all_blocks (81 samples, 0.06%)</title><rect x="26.9050%" y="789" width="0.0553%" height="15" fill="rgb(252,51,52)" fg:x="39380" fg:w="81"/><text x="27.1550%" y="799.50"></text></g><g><title>Parse::do_one_block (81 samples, 0.06%)</title><rect x="26.9050%" y="773" width="0.0553%" height="15" fill="rgb(246,89,16)" fg:x="39380" fg:w="81"/><text x="27.1550%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (81 samples, 0.06%)</title><rect x="26.9050%" y="757" width="0.0553%" height="15" fill="rgb(216,158,49)" fg:x="39380" fg:w="81"/><text x="27.1550%" y="767.50"></text></g><g><title>Parse::do_call (81 samples, 0.06%)</title><rect x="26.9050%" y="741" width="0.0553%" height="15" fill="rgb(236,107,19)" fg:x="39380" fg:w="81"/><text x="27.1550%" y="751.50"></text></g><g><title>ParseGenerator::generate (659 samples, 0.45%)</title><rect x="26.5203%" y="933" width="0.4502%" height="15" fill="rgb(228,185,30)" fg:x="38817" fg:w="659"/><text x="26.7703%" y="943.50"></text></g><g><title>Parse::Parse (659 samples, 0.45%)</title><rect x="26.5203%" y="917" width="0.4502%" height="15" fill="rgb(246,134,8)" fg:x="38817" fg:w="659"/><text x="26.7703%" y="927.50"></text></g><g><title>Parse::do_all_blocks (659 samples, 0.45%)</title><rect x="26.5203%" y="901" width="0.4502%" height="15" fill="rgb(214,143,50)" fg:x="38817" fg:w="659"/><text x="26.7703%" y="911.50"></text></g><g><title>Parse::do_one_block (659 samples, 0.45%)</title><rect x="26.5203%" y="885" width="0.4502%" height="15" fill="rgb(228,75,8)" fg:x="38817" fg:w="659"/><text x="26.7703%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (659 samples, 0.45%)</title><rect x="26.5203%" y="869" width="0.4502%" height="15" fill="rgb(207,175,4)" fg:x="38817" fg:w="659"/><text x="26.7703%" y="879.50"></text></g><g><title>Parse::do_call (659 samples, 0.45%)</title><rect x="26.5203%" y="853" width="0.4502%" height="15" fill="rgb(205,108,24)" fg:x="38817" fg:w="659"/><text x="26.7703%" y="863.50"></text></g><g><title>PredictedCallGenerator::generate (96 samples, 0.07%)</title><rect x="26.9050%" y="837" width="0.0656%" height="15" fill="rgb(244,120,49)" fg:x="39380" fg:w="96"/><text x="27.1550%" y="847.50"></text></g><g><title>PredictedCallGenerator::generate (15 samples, 0.01%)</title><rect x="26.9603%" y="821" width="0.0102%" height="15" fill="rgb(223,47,38)" fg:x="39461" fg:w="15"/><text x="27.2103%" y="831.50"></text></g><g><title>ParseGenerator::generate (15 samples, 0.01%)</title><rect x="26.9603%" y="805" width="0.0102%" height="15" fill="rgb(229,179,11)" fg:x="39461" fg:w="15"/><text x="27.2103%" y="815.50"></text></g><g><title>Parse::Parse (15 samples, 0.01%)</title><rect x="26.9603%" y="789" width="0.0102%" height="15" fill="rgb(231,122,1)" fg:x="39461" fg:w="15"/><text x="27.2103%" y="799.50"></text></g><g><title>Parse::do_all_blocks (15 samples, 0.01%)</title><rect x="26.9603%" y="773" width="0.0102%" height="15" fill="rgb(245,119,9)" fg:x="39461" fg:w="15"/><text x="27.2103%" y="783.50"></text></g><g><title>Parse::do_one_block (15 samples, 0.01%)</title><rect x="26.9603%" y="757" width="0.0102%" height="15" fill="rgb(241,163,25)" fg:x="39461" fg:w="15"/><text x="27.2103%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (15 samples, 0.01%)</title><rect x="26.9603%" y="741" width="0.0102%" height="15" fill="rgb(217,214,3)" fg:x="39461" fg:w="15"/><text x="27.2103%" y="751.50"></text></g><g><title>Parse::do_call (15 samples, 0.01%)</title><rect x="26.9603%" y="725" width="0.0102%" height="15" fill="rgb(240,86,28)" fg:x="39461" fg:w="15"/><text x="27.2103%" y="735.50"></text></g><g><title>Compile::Compile (25,174 samples, 17.20%)</title><rect x="9.7768%" y="949" width="17.1992%" height="15" fill="rgb(215,47,9)" fg:x="14310" fg:w="25174"/><text x="10.0268%" y="959.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (75 samples, 0.05%)</title><rect x="27.0484%" y="901" width="0.0512%" height="15" fill="rgb(252,25,45)" fg:x="39590" fg:w="75"/><text x="27.2984%" y="911.50"></text></g><g><title>Compile::final_graph_reshaping (190 samples, 0.13%)</title><rect x="26.9774%" y="933" width="0.1298%" height="15" fill="rgb(251,164,9)" fg:x="39486" fg:w="190"/><text x="27.2274%" y="943.50"></text></g><g><title>Compile::final_graph_reshaping_walk (184 samples, 0.13%)</title><rect x="26.9815%" y="917" width="0.1257%" height="15" fill="rgb(233,194,0)" fg:x="39492" fg:w="184"/><text x="27.2315%" y="927.50"></text></g><g><title>Compile::inline_incrementally (24 samples, 0.02%)</title><rect x="27.1072%" y="933" width="0.0164%" height="15" fill="rgb(249,111,24)" fg:x="39676" fg:w="24"/><text x="27.3572%" y="943.50"></text></g><g><title>Compile::inline_incrementally_one (23 samples, 0.02%)</title><rect x="27.1079%" y="917" width="0.0157%" height="15" fill="rgb(250,223,3)" fg:x="39677" fg:w="23"/><text x="27.3579%" y="927.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (22 samples, 0.02%)</title><rect x="27.1086%" y="901" width="0.0150%" height="15" fill="rgb(236,178,37)" fg:x="39678" fg:w="22"/><text x="27.3586%" y="911.50"></text></g><g><title>PhaseIterGVN::optimize (25 samples, 0.02%)</title><rect x="27.1933%" y="917" width="0.0171%" height="15" fill="rgb(241,158,50)" fg:x="39802" fg:w="25"/><text x="27.4433%" y="927.50"></text></g><g><title>PhaseIterGVN::transform_old (23 samples, 0.02%)</title><rect x="27.1947%" y="901" width="0.0157%" height="15" fill="rgb(213,121,41)" fg:x="39804" fg:w="23"/><text x="27.4447%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (30 samples, 0.02%)</title><rect x="27.2104%" y="917" width="0.0205%" height="15" fill="rgb(240,92,3)" fg:x="39827" fg:w="30"/><text x="27.4604%" y="927.50"></text></g><g><title>Compile::remove_speculative_types (155 samples, 0.11%)</title><rect x="27.1284%" y="933" width="0.1059%" height="15" fill="rgb(205,123,3)" fg:x="39707" fg:w="155"/><text x="27.3784%" y="943.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (15 samples, 0.01%)</title><rect x="27.2691%" y="853" width="0.0102%" height="15" fill="rgb(205,97,47)" fg:x="39913" fg:w="15"/><text x="27.5191%" y="863.50"></text></g><g><title>ConnectionGraph::add_call_node (18 samples, 0.01%)</title><rect x="27.2691%" y="901" width="0.0123%" height="15" fill="rgb(247,152,14)" fg:x="39913" fg:w="18"/><text x="27.5191%" y="911.50"></text></g><g><title>ciMethod::get_bcea (18 samples, 0.01%)</title><rect x="27.2691%" y="885" width="0.0123%" height="15" fill="rgb(248,195,53)" fg:x="39913" fg:w="18"/><text x="27.5191%" y="895.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (18 samples, 0.01%)</title><rect x="27.2691%" y="869" width="0.0123%" height="15" fill="rgb(226,201,16)" fg:x="39913" fg:w="18"/><text x="27.5191%" y="879.50"></text></g><g><title>ConnectionGraph::add_final_edges (20 samples, 0.01%)</title><rect x="27.2814%" y="901" width="0.0137%" height="15" fill="rgb(205,98,0)" fg:x="39931" fg:w="20"/><text x="27.5314%" y="911.50"></text></g><g><title>ConnectionGraph::is_oop_field (17 samples, 0.01%)</title><rect x="27.3163%" y="869" width="0.0116%" height="15" fill="rgb(214,191,48)" fg:x="39982" fg:w="17"/><text x="27.5663%" y="879.50"></text></g><g><title>ConnectionGraph::add_field (20 samples, 0.01%)</title><rect x="27.3149%" y="885" width="0.0137%" height="15" fill="rgb(237,112,39)" fg:x="39980" fg:w="20"/><text x="27.5649%" y="895.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (53 samples, 0.04%)</title><rect x="27.2965%" y="901" width="0.0362%" height="15" fill="rgb(247,203,27)" fg:x="39953" fg:w="53"/><text x="27.5465%" y="911.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (27 samples, 0.02%)</title><rect x="27.3456%" y="885" width="0.0184%" height="15" fill="rgb(235,124,28)" fg:x="40025" fg:w="27"/><text x="27.5956%" y="895.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (66 samples, 0.05%)</title><rect x="27.3354%" y="901" width="0.0451%" height="15" fill="rgb(208,207,46)" fg:x="40010" fg:w="66"/><text x="27.5854%" y="911.50"></text></g><g><title>ConnectionGraph::split_memory_phi (26 samples, 0.02%)</title><rect x="27.3942%" y="869" width="0.0178%" height="15" fill="rgb(234,176,4)" fg:x="40096" fg:w="26"/><text x="27.6442%" y="879.50"></text></g><g><title>ConnectionGraph::find_inst_mem (21 samples, 0.01%)</title><rect x="27.3976%" y="853" width="0.0143%" height="15" fill="rgb(230,133,28)" fg:x="40101" fg:w="21"/><text x="27.6476%" y="863.50"></text></g><g><title>ConnectionGraph::split_memory_phi (15 samples, 0.01%)</title><rect x="27.4017%" y="837" width="0.0102%" height="15" fill="rgb(211,137,40)" fg:x="40107" fg:w="15"/><text x="27.6517%" y="847.50"></text></g><g><title>ConnectionGraph::find_inst_mem (33 samples, 0.02%)</title><rect x="27.3901%" y="885" width="0.0225%" height="15" fill="rgb(254,35,13)" fg:x="40090" fg:w="33"/><text x="27.6401%" y="895.50"></text></g><g><title>ConnectionGraph::split_unique_types (47 samples, 0.03%)</title><rect x="27.3866%" y="901" width="0.0321%" height="15" fill="rgb(225,49,51)" fg:x="40085" fg:w="47"/><text x="27.6366%" y="911.50"></text></g><g><title>ConnectionGraph::do_analysis (277 samples, 0.19%)</title><rect x="27.2343%" y="933" width="0.1893%" height="15" fill="rgb(251,10,15)" fg:x="39862" fg:w="277"/><text x="27.4843%" y="943.50"></text></g><g><title>ConnectionGraph::compute_escape (275 samples, 0.19%)</title><rect x="27.2356%" y="917" width="0.1879%" height="15" fill="rgb(228,207,15)" fg:x="39864" fg:w="275"/><text x="27.4856%" y="927.50"></text></g><g><title>AddPNode::bottom_type (16 samples, 0.01%)</title><rect x="27.5663%" y="917" width="0.0109%" height="15" fill="rgb(241,99,19)" fg:x="40348" fg:w="16"/><text x="27.8163%" y="927.50"></text></g><g><title>PhiNode::Value (25 samples, 0.02%)</title><rect x="27.6271%" y="917" width="0.0171%" height="15" fill="rgb(207,104,49)" fg:x="40437" fg:w="25"/><text x="27.8771%" y="927.50"></text></g><g><title>Type::hashcons (15 samples, 0.01%)</title><rect x="27.6613%" y="917" width="0.0102%" height="15" fill="rgb(234,99,18)" fg:x="40487" fg:w="15"/><text x="27.9113%" y="927.50"></text></g><g><title>TypeAryPtr::add_offset (20 samples, 0.01%)</title><rect x="27.6715%" y="917" width="0.0137%" height="15" fill="rgb(213,191,49)" fg:x="40502" fg:w="20"/><text x="27.9215%" y="927.50"></text></g><g><title>TypeInstPtr::add_offset (21 samples, 0.01%)</title><rect x="27.6852%" y="917" width="0.0143%" height="15" fill="rgb(210,226,19)" fg:x="40522" fg:w="21"/><text x="27.9352%" y="927.50"></text></g><g><title>PhaseCCP::analyze (421 samples, 0.29%)</title><rect x="27.4235%" y="933" width="0.2876%" height="15" fill="rgb(229,97,18)" fg:x="40139" fg:w="421"/><text x="27.6735%" y="943.50"></text></g><g><title>PhaseCCP::transform_once (64 samples, 0.04%)</title><rect x="27.7583%" y="901" width="0.0437%" height="15" fill="rgb(211,167,15)" fg:x="40629" fg:w="64"/><text x="28.0083%" y="911.50"></text></g><g><title>PhaseCCP::do_transform (134 samples, 0.09%)</title><rect x="27.7112%" y="933" width="0.0916%" height="15" fill="rgb(210,169,34)" fg:x="40560" fg:w="134"/><text x="27.9612%" y="943.50"></text></g><g><title>PhaseCCP::transform (134 samples, 0.09%)</title><rect x="27.7112%" y="917" width="0.0916%" height="15" fill="rgb(241,121,31)" fg:x="40560" fg:w="134"/><text x="27.9612%" y="927.50"></text></g><g><title>IdealLoopTree::counted_loop (23 samples, 0.02%)</title><rect x="27.8307%" y="917" width="0.0157%" height="15" fill="rgb(232,40,11)" fg:x="40735" fg:w="23"/><text x="28.0807%" y="927.50"></text></g><g><title>IdealLoopTree::counted_loop (23 samples, 0.02%)</title><rect x="27.8307%" y="901" width="0.0157%" height="15" fill="rgb(205,86,26)" fg:x="40735" fg:w="23"/><text x="28.0807%" y="911.50"></text></g><g><title>IdealLoopTree::iteration_split (15 samples, 0.01%)</title><rect x="27.8560%" y="773" width="0.0102%" height="15" fill="rgb(231,126,28)" fg:x="40772" fg:w="15"/><text x="28.1060%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (20 samples, 0.01%)</title><rect x="27.8553%" y="789" width="0.0137%" height="15" fill="rgb(219,221,18)" fg:x="40771" fg:w="20"/><text x="28.1053%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (31 samples, 0.02%)</title><rect x="27.8546%" y="805" width="0.0212%" height="15" fill="rgb(211,40,0)" fg:x="40770" fg:w="31"/><text x="28.1046%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (37 samples, 0.03%)</title><rect x="27.8546%" y="821" width="0.0253%" height="15" fill="rgb(239,85,43)" fg:x="40770" fg:w="37"/><text x="28.1046%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split (47 samples, 0.03%)</title><rect x="27.8533%" y="837" width="0.0321%" height="15" fill="rgb(231,55,21)" fg:x="40768" fg:w="47"/><text x="28.1033%" y="847.50"></text></g><g><title>IdealLoopTree::iteration_split (51 samples, 0.03%)</title><rect x="27.8526%" y="853" width="0.0348%" height="15" fill="rgb(225,184,43)" fg:x="40767" fg:w="51"/><text x="28.1026%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split (67 samples, 0.05%)</title><rect x="27.8526%" y="869" width="0.0458%" height="15" fill="rgb(251,158,41)" fg:x="40767" fg:w="67"/><text x="28.1026%" y="879.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (16 samples, 0.01%)</title><rect x="27.8874%" y="853" width="0.0109%" height="15" fill="rgb(234,159,37)" fg:x="40818" fg:w="16"/><text x="28.1374%" y="863.50"></text></g><g><title>PhaseIdealLoop::do_unroll (18 samples, 0.01%)</title><rect x="27.9038%" y="853" width="0.0123%" height="15" fill="rgb(216,204,22)" fg:x="40842" fg:w="18"/><text x="28.1538%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split (107 samples, 0.07%)</title><rect x="27.8499%" y="885" width="0.0731%" height="15" fill="rgb(214,17,3)" fg:x="40763" fg:w="107"/><text x="28.0999%" y="895.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (36 samples, 0.02%)</title><rect x="27.8984%" y="869" width="0.0246%" height="15" fill="rgb(212,111,17)" fg:x="40834" fg:w="36"/><text x="28.1484%" y="879.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (25 samples, 0.02%)</title><rect x="27.9230%" y="885" width="0.0171%" height="15" fill="rgb(221,157,24)" fg:x="40870" fg:w="25"/><text x="28.1730%" y="895.50"></text></g><g><title>IdealLoopTree::iteration_split (137 samples, 0.09%)</title><rect x="27.8485%" y="901" width="0.0936%" height="15" fill="rgb(252,16,13)" fg:x="40761" fg:w="137"/><text x="28.0985%" y="911.50"></text></g><g><title>IdealLoopTree::iteration_split (155 samples, 0.11%)</title><rect x="27.8464%" y="917" width="0.1059%" height="15" fill="rgb(221,62,2)" fg:x="40758" fg:w="155"/><text x="28.0964%" y="927.50"></text></g><g><title>IdealLoopTree::loop_predication (16 samples, 0.01%)</title><rect x="27.9530%" y="869" width="0.0109%" height="15" fill="rgb(247,87,22)" fg:x="40914" fg:w="16"/><text x="28.2030%" y="879.50"></text></g><g><title>IdealLoopTree::loop_predication (29 samples, 0.02%)</title><rect x="27.9530%" y="885" width="0.0198%" height="15" fill="rgb(215,73,9)" fg:x="40914" fg:w="29"/><text x="28.2030%" y="895.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (17 samples, 0.01%)</title><rect x="27.9790%" y="869" width="0.0116%" height="15" fill="rgb(207,175,33)" fg:x="40952" fg:w="17"/><text x="28.2290%" y="879.50"></text></g><g><title>IdealLoopTree::loop_predication (60 samples, 0.04%)</title><rect x="27.9530%" y="901" width="0.0410%" height="15" fill="rgb(243,129,54)" fg:x="40914" fg:w="60"/><text x="28.2030%" y="911.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (31 samples, 0.02%)</title><rect x="27.9728%" y="885" width="0.0212%" height="15" fill="rgb(227,119,45)" fg:x="40943" fg:w="31"/><text x="28.2228%" y="895.50"></text></g><g><title>PathFrequency::to (18 samples, 0.01%)</title><rect x="27.9961%" y="885" width="0.0123%" height="15" fill="rgb(205,109,36)" fg:x="40977" fg:w="18"/><text x="28.2461%" y="895.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (32 samples, 0.02%)</title><rect x="28.0084%" y="885" width="0.0219%" height="15" fill="rgb(205,6,39)" fg:x="40995" fg:w="32"/><text x="28.2584%" y="895.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (32 samples, 0.02%)</title><rect x="28.0302%" y="885" width="0.0219%" height="15" fill="rgb(221,32,16)" fg:x="41027" fg:w="32"/><text x="28.2802%" y="895.50"></text></g><g><title>IdealLoopTree::loop_predication (155 samples, 0.11%)</title><rect x="27.9523%" y="917" width="0.1059%" height="15" fill="rgb(228,144,50)" fg:x="40913" fg:w="155"/><text x="28.2023%" y="927.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (94 samples, 0.06%)</title><rect x="27.9940%" y="901" width="0.0642%" height="15" fill="rgb(229,201,53)" fg:x="40974" fg:w="94"/><text x="28.2440%" y="911.50"></text></g><g><title>NTarjan::DFS (203 samples, 0.14%)</title><rect x="28.3889%" y="901" width="0.1387%" height="15" fill="rgb(249,153,27)" fg:x="41552" fg:w="203"/><text x="28.6389%" y="911.50"></text></g><g><title>handle_mm_fault (18 samples, 0.01%)</title><rect x="28.5440%" y="853" width="0.0123%" height="15" fill="rgb(227,106,25)" fg:x="41779" fg:w="18"/><text x="28.7940%" y="863.50"></text></g><g><title>asm_exc_page_fault (20 samples, 0.01%)</title><rect x="28.5440%" y="901" width="0.0137%" height="15" fill="rgb(230,65,29)" fg:x="41779" fg:w="20"/><text x="28.7940%" y="911.50"></text></g><g><title>exc_page_fault (20 samples, 0.01%)</title><rect x="28.5440%" y="885" width="0.0137%" height="15" fill="rgb(221,57,46)" fg:x="41779" fg:w="20"/><text x="28.7940%" y="895.50"></text></g><g><title>do_user_addr_fault (20 samples, 0.01%)</title><rect x="28.5440%" y="869" width="0.0137%" height="15" fill="rgb(229,161,17)" fg:x="41779" fg:w="20"/><text x="28.7940%" y="879.50"></text></g><g><title>PhaseIdealLoop::Dominators (718 samples, 0.49%)</title><rect x="28.0719%" y="917" width="0.4905%" height="15" fill="rgb(222,213,11)" fg:x="41088" fg:w="718"/><text x="28.3219%" y="927.50"></text></g><g><title>PhaseIdealLoop::dom_depth (40 samples, 0.03%)</title><rect x="29.0933%" y="869" width="0.0273%" height="15" fill="rgb(235,35,13)" fg:x="42583" fg:w="40"/><text x="29.3433%" y="879.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (242 samples, 0.17%)</title><rect x="29.0209%" y="901" width="0.1653%" height="15" fill="rgb(233,158,34)" fg:x="42477" fg:w="242"/><text x="29.2709%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (215 samples, 0.15%)</title><rect x="29.0393%" y="885" width="0.1469%" height="15" fill="rgb(215,151,48)" fg:x="42504" fg:w="215"/><text x="29.2893%" y="895.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (96 samples, 0.07%)</title><rect x="29.1206%" y="869" width="0.0656%" height="15" fill="rgb(229,84,14)" fg:x="42623" fg:w="96"/><text x="29.3706%" y="879.50"></text></g><g><title>PhiNode::pinned (21 samples, 0.01%)</title><rect x="29.1876%" y="901" width="0.0143%" height="15" fill="rgb(229,68,14)" fg:x="42721" fg:w="21"/><text x="29.4376%" y="911.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (969 samples, 0.66%)</title><rect x="28.5624%" y="917" width="0.6620%" height="15" fill="rgb(243,106,26)" fg:x="41806" fg:w="969"/><text x="28.8124%" y="927.50"></text></g><g><title>Node_List::push (15 samples, 0.01%)</title><rect x="29.7424%" y="901" width="0.0102%" height="15" fill="rgb(206,45,38)" fg:x="43533" fg:w="15"/><text x="29.9924%" y="911.50"></text></g><g><title>Node::unique_ctrl_out (43 samples, 0.03%)</title><rect x="30.0129%" y="885" width="0.0294%" height="15" fill="rgb(226,6,15)" fg:x="43929" fg:w="43"/><text x="30.2629%" y="895.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (54 samples, 0.04%)</title><rect x="30.0430%" y="885" width="0.0369%" height="15" fill="rgb(232,22,54)" fg:x="43973" fg:w="54"/><text x="30.2930%" y="895.50"></text></g><g><title>PhaseIdealLoop::dom_depth (43 samples, 0.03%)</title><rect x="30.3450%" y="837" width="0.0294%" height="15" fill="rgb(229,222,32)" fg:x="44415" fg:w="43"/><text x="30.5950%" y="847.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (186 samples, 0.13%)</title><rect x="30.3128%" y="853" width="0.1271%" height="15" fill="rgb(228,62,29)" fg:x="44368" fg:w="186"/><text x="30.5628%" y="863.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (96 samples, 0.07%)</title><rect x="30.3743%" y="837" width="0.0656%" height="15" fill="rgb(251,103,34)" fg:x="44458" fg:w="96"/><text x="30.6243%" y="847.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (256 samples, 0.17%)</title><rect x="30.2794%" y="869" width="0.1749%" height="15" fill="rgb(233,12,30)" fg:x="44319" fg:w="256"/><text x="30.5294%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (21 samples, 0.01%)</title><rect x="30.4399%" y="853" width="0.0143%" height="15" fill="rgb(238,52,0)" fg:x="44554" fg:w="21"/><text x="30.6899%" y="863.50"></text></g><g><title>PhaseIdealLoop::dom_depth (24 samples, 0.02%)</title><rect x="30.4823%" y="853" width="0.0164%" height="15" fill="rgb(223,98,5)" fg:x="44616" fg:w="24"/><text x="30.7323%" y="863.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (78 samples, 0.05%)</title><rect x="30.4543%" y="869" width="0.0533%" height="15" fill="rgb(228,75,37)" fg:x="44575" fg:w="78"/><text x="30.7043%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (15 samples, 0.01%)</title><rect x="30.5076%" y="869" width="0.0102%" height="15" fill="rgb(205,115,49)" fg:x="44653" fg:w="15"/><text x="30.7576%" y="879.50"></text></g><g><title>PhaseIdealLoop::dom_depth (467 samples, 0.32%)</title><rect x="31.7114%" y="853" width="0.3191%" height="15" fill="rgb(250,154,43)" fg:x="46415" fg:w="467"/><text x="31.9614%" y="863.50"></text></g><g><title>PhaseIdealLoop::is_dominator (2,216 samples, 1.51%)</title><rect x="30.5185%" y="869" width="1.5140%" height="15" fill="rgb(226,43,29)" fg:x="44669" fg:w="2216"/><text x="30.7685%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,869 samples, 1.96%)</title><rect x="30.0799%" y="885" width="1.9601%" height="15" fill="rgb(249,228,39)" fg:x="44027" fg:w="2869"/><text x="30.3299%" y="895.50">P..</text></g><g><title>PhaseIdealLoop::get_loop (26 samples, 0.02%)</title><rect x="32.0400%" y="885" width="0.0178%" height="15" fill="rgb(216,79,43)" fg:x="46896" fg:w="26"/><text x="32.2900%" y="895.50"></text></g><g><title>ProjNode::is_uncommon_trap_if_pattern (22 samples, 0.02%)</title><rect x="32.0660%" y="885" width="0.0150%" height="15" fill="rgb(228,95,12)" fg:x="46934" fg:w="22"/><text x="32.3160%" y="895.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (3,409 samples, 2.33%)</title><rect x="29.7526%" y="901" width="2.3291%" height="15" fill="rgb(249,221,15)" fg:x="43548" fg:w="3409"/><text x="30.0026%" y="911.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_late (4,198 samples, 2.87%)</title><rect x="29.2245%" y="917" width="2.8681%" height="15" fill="rgb(233,34,13)" fg:x="42775" fg:w="4198"/><text x="29.4745%" y="927.50">Ph..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (134 samples, 0.09%)</title><rect x="32.3509%" y="901" width="0.0916%" height="15" fill="rgb(214,103,39)" fg:x="47351" fg:w="134"/><text x="32.6009%" y="911.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (519 samples, 0.35%)</title><rect x="32.0933%" y="917" width="0.3546%" height="15" fill="rgb(251,126,39)" fg:x="46974" fg:w="519"/><text x="32.3433%" y="927.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (23 samples, 0.02%)</title><rect x="32.4506%" y="901" width="0.0157%" height="15" fill="rgb(214,216,36)" fg:x="47497" fg:w="23"/><text x="32.7006%" y="911.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (24 samples, 0.02%)</title><rect x="32.4506%" y="917" width="0.0164%" height="15" fill="rgb(220,221,8)" fg:x="47497" fg:w="24"/><text x="32.7006%" y="927.50"></text></g><g><title>PhaseIdealLoop::handle_use (20 samples, 0.01%)</title><rect x="32.6863%" y="885" width="0.0137%" height="15" fill="rgb(240,216,3)" fg:x="47842" fg:w="20"/><text x="32.9363%" y="895.50"></text></g><g><title>PhaseIdealLoop::do_split_if (64 samples, 0.04%)</title><rect x="32.6843%" y="901" width="0.0437%" height="15" fill="rgb(232,218,17)" fg:x="47839" fg:w="64"/><text x="32.9343%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (20 samples, 0.01%)</title><rect x="32.7861%" y="885" width="0.0137%" height="15" fill="rgb(229,163,45)" fg:x="47988" fg:w="20"/><text x="33.0361%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (21 samples, 0.01%)</title><rect x="32.8189%" y="885" width="0.0143%" height="15" fill="rgb(231,110,42)" fg:x="48036" fg:w="21"/><text x="33.0689%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (166 samples, 0.11%)</title><rect x="32.7355%" y="901" width="0.1134%" height="15" fill="rgb(208,170,48)" fg:x="47914" fg:w="166"/><text x="32.9855%" y="911.50"></text></g><g><title>ConstraintCastNode::dominating_cast (33 samples, 0.02%)</title><rect x="32.8981%" y="885" width="0.0225%" height="15" fill="rgb(239,116,25)" fg:x="48152" fg:w="33"/><text x="33.1481%" y="895.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (27 samples, 0.02%)</title><rect x="32.9343%" y="885" width="0.0184%" height="15" fill="rgb(219,200,50)" fg:x="48205" fg:w="27"/><text x="33.1843%" y="895.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (48 samples, 0.03%)</title><rect x="32.9528%" y="885" width="0.0328%" height="15" fill="rgb(245,200,0)" fg:x="48232" fg:w="48"/><text x="33.2028%" y="895.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (98 samples, 0.07%)</title><rect x="32.9869%" y="885" width="0.0670%" height="15" fill="rgb(245,119,33)" fg:x="48282" fg:w="98"/><text x="33.2369%" y="895.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (41 samples, 0.03%)</title><rect x="33.0259%" y="869" width="0.0280%" height="15" fill="rgb(231,125,12)" fg:x="48339" fg:w="41"/><text x="33.2759%" y="879.50"></text></g><g><title>NodeHash::hash_find (16 samples, 0.01%)</title><rect x="33.0846%" y="869" width="0.0109%" height="15" fill="rgb(216,96,41)" fg:x="48425" fg:w="16"/><text x="33.3346%" y="879.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (46 samples, 0.03%)</title><rect x="33.0983%" y="869" width="0.0314%" height="15" fill="rgb(248,43,45)" fg:x="48445" fg:w="46"/><text x="33.3483%" y="879.50"></text></g><g><title>Unique_Node_List::remove (17 samples, 0.01%)</title><rect x="33.1181%" y="853" width="0.0116%" height="15" fill="rgb(217,222,7)" fg:x="48474" fg:w="17"/><text x="33.3681%" y="863.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (126 samples, 0.09%)</title><rect x="33.0539%" y="885" width="0.0861%" height="15" fill="rgb(233,28,6)" fg:x="48380" fg:w="126"/><text x="33.3039%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (459 samples, 0.31%)</title><rect x="32.8489%" y="901" width="0.3136%" height="15" fill="rgb(231,218,15)" fg:x="48080" fg:w="459"/><text x="33.0989%" y="911.50"></text></g><g><title>PhaseIterGVN::subsume_node (16 samples, 0.01%)</title><rect x="33.1516%" y="885" width="0.0109%" height="15" fill="rgb(226,171,48)" fg:x="48523" fg:w="16"/><text x="33.4016%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,010 samples, 0.69%)</title><rect x="32.4738%" y="917" width="0.6900%" height="15" fill="rgb(235,201,9)" fg:x="47531" fg:w="1010"/><text x="32.7238%" y="927.50"></text></g><g><title>CallNode::Ideal (23 samples, 0.02%)</title><rect x="33.2691%" y="885" width="0.0157%" height="15" fill="rgb(217,80,15)" fg:x="48695" fg:w="23"/><text x="33.5191%" y="895.50"></text></g><g><title>Node::remove_dead_region (23 samples, 0.02%)</title><rect x="33.2691%" y="869" width="0.0157%" height="15" fill="rgb(219,152,8)" fg:x="48695" fg:w="23"/><text x="33.5191%" y="879.50"></text></g><g><title>CastIINode::Value (23 samples, 0.02%)</title><rect x="33.2876%" y="885" width="0.0157%" height="15" fill="rgb(243,107,38)" fg:x="48722" fg:w="23"/><text x="33.5376%" y="895.50"></text></g><g><title>TypeInt::filter_helper (15 samples, 0.01%)</title><rect x="33.2930%" y="869" width="0.0102%" height="15" fill="rgb(231,17,5)" fg:x="48730" fg:w="15"/><text x="33.5430%" y="879.50"></text></g><g><title>ConvI2LNode::Value (15 samples, 0.01%)</title><rect x="33.3306%" y="885" width="0.0102%" height="15" fill="rgb(209,25,54)" fg:x="48785" fg:w="15"/><text x="33.5806%" y="895.50"></text></g><g><title>IfNode::Ideal (16 samples, 0.01%)</title><rect x="33.3422%" y="885" width="0.0109%" height="15" fill="rgb(219,0,2)" fg:x="48802" fg:w="16"/><text x="33.5922%" y="895.50"></text></g><g><title>MemNode::Ideal_common (19 samples, 0.01%)</title><rect x="33.3709%" y="869" width="0.0130%" height="15" fill="rgb(246,9,5)" fg:x="48844" fg:w="19"/><text x="33.6209%" y="879.50"></text></g><g><title>LoadNode::Ideal (50 samples, 0.03%)</title><rect x="33.3593%" y="885" width="0.0342%" height="15" fill="rgb(226,159,4)" fg:x="48827" fg:w="50"/><text x="33.6093%" y="895.50"></text></g><g><title>NodeHash::grow (28 samples, 0.02%)</title><rect x="33.4495%" y="869" width="0.0191%" height="15" fill="rgb(219,175,34)" fg:x="48959" fg:w="28"/><text x="33.6995%" y="879.50"></text></g><g><title>NodeHash::hash_find_insert (89 samples, 0.06%)</title><rect x="33.4099%" y="885" width="0.0608%" height="15" fill="rgb(236,10,46)" fg:x="48901" fg:w="89"/><text x="33.6599%" y="895.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (39 samples, 0.03%)</title><rect x="33.4713%" y="885" width="0.0266%" height="15" fill="rgb(240,211,16)" fg:x="48991" fg:w="39"/><text x="33.7213%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (31 samples, 0.02%)</title><rect x="33.5171%" y="869" width="0.0212%" height="15" fill="rgb(205,3,43)" fg:x="49058" fg:w="31"/><text x="33.7671%" y="879.50"></text></g><g><title>PhaseIterGVN::subsume_node (69 samples, 0.05%)</title><rect x="33.4980%" y="885" width="0.0471%" height="15" fill="rgb(245,7,22)" fg:x="49030" fg:w="69"/><text x="33.7480%" y="895.50"></text></g><g><title>PhiNode::Ideal (24 samples, 0.02%)</title><rect x="33.5465%" y="885" width="0.0164%" height="15" fill="rgb(239,132,32)" fg:x="49101" fg:w="24"/><text x="33.7965%" y="895.50"></text></g><g><title>PhiNode::Value (21 samples, 0.01%)</title><rect x="33.5643%" y="885" width="0.0143%" height="15" fill="rgb(228,202,34)" fg:x="49127" fg:w="21"/><text x="33.8143%" y="895.50"></text></g><g><title>PhaseIterGVN::subsume_node (16 samples, 0.01%)</title><rect x="33.6169%" y="869" width="0.0109%" height="15" fill="rgb(254,200,22)" fg:x="49204" fg:w="16"/><text x="33.8669%" y="879.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (20 samples, 0.01%)</title><rect x="33.6278%" y="869" width="0.0137%" height="15" fill="rgb(219,10,39)" fg:x="49220" fg:w="20"/><text x="33.8778%" y="879.50"></text></g><g><title>RegionNode::Ideal (150 samples, 0.10%)</title><rect x="33.5964%" y="885" width="0.1025%" height="15" fill="rgb(226,210,39)" fg:x="49174" fg:w="150"/><text x="33.8464%" y="895.50"></text></g><g><title>RegionNode::is_unreachable_region (84 samples, 0.06%)</title><rect x="33.6415%" y="869" width="0.0574%" height="15" fill="rgb(208,219,16)" fg:x="49240" fg:w="84"/><text x="33.8915%" y="879.50"></text></g><g><title>InitializeNode::detect_init_independence (16 samples, 0.01%)</title><rect x="33.7030%" y="677" width="0.0109%" height="15" fill="rgb(216,158,51)" fg:x="49330" fg:w="16"/><text x="33.9530%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (18 samples, 0.01%)</title><rect x="33.7030%" y="693" width="0.0123%" height="15" fill="rgb(233,14,44)" fg:x="49330" fg:w="18"/><text x="33.9530%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (20 samples, 0.01%)</title><rect x="33.7030%" y="709" width="0.0137%" height="15" fill="rgb(237,97,39)" fg:x="49330" fg:w="20"/><text x="33.9530%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (21 samples, 0.01%)</title><rect x="33.7030%" y="725" width="0.0143%" height="15" fill="rgb(218,198,43)" fg:x="49330" fg:w="21"/><text x="33.9530%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="33.7023%" y="757" width="0.0164%" height="15" fill="rgb(231,104,20)" fg:x="49329" fg:w="24"/><text x="33.9523%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="33.7023%" y="741" width="0.0164%" height="15" fill="rgb(254,36,13)" fg:x="49329" fg:w="24"/><text x="33.9523%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (26 samples, 0.02%)</title><rect x="33.7023%" y="773" width="0.0178%" height="15" fill="rgb(248,14,50)" fg:x="49329" fg:w="26"/><text x="33.9523%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (30 samples, 0.02%)</title><rect x="33.7023%" y="789" width="0.0205%" height="15" fill="rgb(217,107,29)" fg:x="49329" fg:w="30"/><text x="33.9523%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (33 samples, 0.02%)</title><rect x="33.7023%" y="805" width="0.0225%" height="15" fill="rgb(251,169,33)" fg:x="49329" fg:w="33"/><text x="33.9523%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (34 samples, 0.02%)</title><rect x="33.7023%" y="821" width="0.0232%" height="15" fill="rgb(217,108,32)" fg:x="49329" fg:w="34"/><text x="33.9523%" y="831.50"></text></g><g><title>InitializeNode::can_capture_store (35 samples, 0.02%)</title><rect x="33.7023%" y="869" width="0.0239%" height="15" fill="rgb(219,66,42)" fg:x="49329" fg:w="35"/><text x="33.9523%" y="879.50"></text></g><g><title>InitializeNode::detect_init_independence (35 samples, 0.02%)</title><rect x="33.7023%" y="853" width="0.0239%" height="15" fill="rgb(206,180,7)" fg:x="49329" fg:w="35"/><text x="33.9523%" y="863.50"></text></g><g><title>InitializeNode::detect_init_independence (35 samples, 0.02%)</title><rect x="33.7023%" y="837" width="0.0239%" height="15" fill="rgb(208,226,31)" fg:x="49329" fg:w="35"/><text x="33.9523%" y="847.50"></text></g><g><title>StoreNode::Ideal (40 samples, 0.03%)</title><rect x="33.7023%" y="885" width="0.0273%" height="15" fill="rgb(218,26,49)" fg:x="49329" fg:w="40"/><text x="33.9523%" y="895.50"></text></g><g><title>PhaseIterGVN::transform_old (833 samples, 0.57%)</title><rect x="33.1810%" y="901" width="0.5691%" height="15" fill="rgb(233,197,48)" fg:x="48566" fg:w="833"/><text x="33.4310%" y="911.50"></text></g><g><title>PhaseIterGVN::optimize (867 samples, 0.59%)</title><rect x="33.1653%" y="917" width="0.5923%" height="15" fill="rgb(252,181,51)" fg:x="48543" fg:w="867"/><text x="33.4153%" y="927.50"></text></g><g><title>SuperWord::find_adjacent_refs (24 samples, 0.02%)</title><rect x="33.7822%" y="885" width="0.0164%" height="15" fill="rgb(253,90,19)" fg:x="49446" fg:w="24"/><text x="34.0322%" y="895.50"></text></g><g><title>SuperWord::transform_loop (37 samples, 0.03%)</title><rect x="33.7774%" y="917" width="0.0253%" height="15" fill="rgb(215,171,30)" fg:x="49439" fg:w="37"/><text x="34.0274%" y="927.50"></text></g><g><title>SuperWord::SLP_extract (36 samples, 0.02%)</title><rect x="33.7781%" y="901" width="0.0246%" height="15" fill="rgb(214,222,9)" fg:x="49440" fg:w="36"/><text x="34.0281%" y="911.50"></text></g><g><title>[libc-2.31.so] (23 samples, 0.02%)</title><rect x="33.8027%" y="917" width="0.0157%" height="15" fill="rgb(223,3,22)" fg:x="49476" fg:w="23"/><text x="34.0527%" y="927.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (8,800 samples, 6.01%)</title><rect x="27.8075%" y="933" width="6.0123%" height="15" fill="rgb(225,196,46)" fg:x="40701" fg:w="8800"/><text x="28.0575%" y="943.50">PhaseIde..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (83 samples, 0.06%)</title><rect x="33.8198%" y="933" width="0.0567%" height="15" fill="rgb(209,110,37)" fg:x="49501" fg:w="83"/><text x="34.0698%" y="943.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (47 samples, 0.03%)</title><rect x="33.8444%" y="917" width="0.0321%" height="15" fill="rgb(249,89,12)" fg:x="49537" fg:w="47"/><text x="34.0944%" y="927.50"></text></g><g><title>IfNode::search_identical (21 samples, 0.01%)</title><rect x="34.0548%" y="885" width="0.0143%" height="15" fill="rgb(226,27,33)" fg:x="49845" fg:w="21"/><text x="34.3048%" y="895.50"></text></g><g><title>Unique_Node_List::remove (50 samples, 0.03%)</title><rect x="34.0835%" y="853" width="0.0342%" height="15" fill="rgb(213,82,22)" fg:x="49887" fg:w="50"/><text x="34.3335%" y="863.50"></text></g><g><title>PhaseIterGVN::subsume_node (61 samples, 0.04%)</title><rect x="34.0767%" y="885" width="0.0417%" height="15" fill="rgb(248,140,0)" fg:x="49877" fg:w="61"/><text x="34.3267%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (55 samples, 0.04%)</title><rect x="34.0808%" y="869" width="0.0376%" height="15" fill="rgb(228,106,3)" fg:x="49883" fg:w="55"/><text x="34.3308%" y="879.50"></text></g><g><title>IfNode::Ideal (160 samples, 0.11%)</title><rect x="34.0377%" y="901" width="0.1093%" height="15" fill="rgb(209,23,37)" fg:x="49820" fg:w="160"/><text x="34.2877%" y="911.50"></text></g><g><title>split_if (29 samples, 0.02%)</title><rect x="34.1272%" y="885" width="0.0198%" height="15" fill="rgb(241,93,50)" fg:x="49951" fg:w="29"/><text x="34.3772%" y="895.50"></text></g><g><title>MemNode::Ideal_common (34 samples, 0.02%)</title><rect x="34.1634%" y="885" width="0.0232%" height="15" fill="rgb(253,46,43)" fg:x="50004" fg:w="34"/><text x="34.4134%" y="895.50"></text></g><g><title>MemNode::all_controls_dominate (19 samples, 0.01%)</title><rect x="34.1928%" y="869" width="0.0130%" height="15" fill="rgb(226,206,43)" fg:x="50047" fg:w="19"/><text x="34.4428%" y="879.50"></text></g><g><title>Node::dominates (19 samples, 0.01%)</title><rect x="34.1928%" y="853" width="0.0130%" height="15" fill="rgb(217,54,7)" fg:x="50047" fg:w="19"/><text x="34.4428%" y="863.50"></text></g><g><title>MemNode::find_previous_store (37 samples, 0.03%)</title><rect x="34.1880%" y="885" width="0.0253%" height="15" fill="rgb(223,5,52)" fg:x="50040" fg:w="37"/><text x="34.4380%" y="895.50"></text></g><g><title>LoadNode::Ideal (81 samples, 0.06%)</title><rect x="34.1587%" y="901" width="0.0553%" height="15" fill="rgb(206,52,46)" fg:x="49997" fg:w="81"/><text x="34.4087%" y="911.50"></text></g><g><title>MergeMemNode::Ideal (15 samples, 0.01%)</title><rect x="34.2379%" y="901" width="0.0102%" height="15" fill="rgb(253,136,11)" fg:x="50113" fg:w="15"/><text x="34.4879%" y="911.50"></text></g><g><title>NodeHash::grow (28 samples, 0.02%)</title><rect x="34.3021%" y="885" width="0.0191%" height="15" fill="rgb(208,106,33)" fg:x="50207" fg:w="28"/><text x="34.5521%" y="895.50"></text></g><g><title>NodeHash::hash_find_insert (98 samples, 0.07%)</title><rect x="34.2591%" y="901" width="0.0670%" height="15" fill="rgb(206,54,4)" fg:x="50144" fg:w="98"/><text x="34.5091%" y="911.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (28 samples, 0.02%)</title><rect x="34.3260%" y="901" width="0.0191%" height="15" fill="rgb(213,3,15)" fg:x="50242" fg:w="28"/><text x="34.5760%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (38 samples, 0.03%)</title><rect x="34.3780%" y="885" width="0.0260%" height="15" fill="rgb(252,211,39)" fg:x="50318" fg:w="38"/><text x="34.6280%" y="895.50"></text></g><g><title>Unique_Node_List::remove (16 samples, 0.01%)</title><rect x="34.3930%" y="869" width="0.0109%" height="15" fill="rgb(223,6,36)" fg:x="50340" fg:w="16"/><text x="34.6430%" y="879.50"></text></g><g><title>PhaseIterGVN::subsume_node (95 samples, 0.06%)</title><rect x="34.3465%" y="901" width="0.0649%" height="15" fill="rgb(252,169,45)" fg:x="50272" fg:w="95"/><text x="34.5965%" y="911.50"></text></g><g><title>PhiNode::Ideal (70 samples, 0.05%)</title><rect x="34.4142%" y="901" width="0.0478%" height="15" fill="rgb(212,48,26)" fg:x="50371" fg:w="70"/><text x="34.6642%" y="911.50"></text></g><g><title>PhiNode::unique_input (15 samples, 0.01%)</title><rect x="34.4518%" y="885" width="0.0102%" height="15" fill="rgb(251,102,48)" fg:x="50426" fg:w="15"/><text x="34.7018%" y="895.50"></text></g><g><title>PhiNode::Value (22 samples, 0.02%)</title><rect x="34.4668%" y="901" width="0.0150%" height="15" fill="rgb(243,208,16)" fg:x="50448" fg:w="22"/><text x="34.7168%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (49 samples, 0.03%)</title><rect x="34.5426%" y="869" width="0.0335%" height="15" fill="rgb(219,96,24)" fg:x="50559" fg:w="49"/><text x="34.7926%" y="879.50"></text></g><g><title>Unique_Node_List::remove (44 samples, 0.03%)</title><rect x="34.5460%" y="853" width="0.0301%" height="15" fill="rgb(219,33,29)" fg:x="50564" fg:w="44"/><text x="34.7960%" y="863.50"></text></g><g><title>PhaseIterGVN::subsume_node (65 samples, 0.04%)</title><rect x="34.5365%" y="885" width="0.0444%" height="15" fill="rgb(223,176,5)" fg:x="50550" fg:w="65"/><text x="34.7865%" y="895.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (24 samples, 0.02%)</title><rect x="34.5809%" y="885" width="0.0164%" height="15" fill="rgb(228,140,14)" fg:x="50615" fg:w="24"/><text x="34.8309%" y="895.50"></text></g><g><title>RegionNode::Ideal (202 samples, 0.14%)</title><rect x="34.4975%" y="901" width="0.1380%" height="15" fill="rgb(217,179,31)" fg:x="50493" fg:w="202"/><text x="34.7475%" y="911.50"></text></g><g><title>RegionNode::is_unreachable_region (56 samples, 0.04%)</title><rect x="34.5973%" y="885" width="0.0383%" height="15" fill="rgb(230,9,30)" fg:x="50639" fg:w="56"/><text x="34.8473%" y="895.50"></text></g><g><title>InitializeNode::detect_init_independence (16 samples, 0.01%)</title><rect x="34.6472%" y="565" width="0.0109%" height="15" fill="rgb(230,136,20)" fg:x="50712" fg:w="16"/><text x="34.8972%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="34.6472%" y="581" width="0.0164%" height="15" fill="rgb(215,210,22)" fg:x="50712" fg:w="24"/><text x="34.8972%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (26 samples, 0.02%)</title><rect x="34.6472%" y="597" width="0.0178%" height="15" fill="rgb(218,43,5)" fg:x="50712" fg:w="26"/><text x="34.8972%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (32 samples, 0.02%)</title><rect x="34.6465%" y="613" width="0.0219%" height="15" fill="rgb(216,11,5)" fg:x="50711" fg:w="32"/><text x="34.8965%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (36 samples, 0.02%)</title><rect x="34.6465%" y="629" width="0.0246%" height="15" fill="rgb(209,82,29)" fg:x="50711" fg:w="36"/><text x="34.8965%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (41 samples, 0.03%)</title><rect x="34.6465%" y="645" width="0.0280%" height="15" fill="rgb(244,115,12)" fg:x="50711" fg:w="41"/><text x="34.8965%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (46 samples, 0.03%)</title><rect x="34.6465%" y="661" width="0.0314%" height="15" fill="rgb(222,82,18)" fg:x="50711" fg:w="46"/><text x="34.8965%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (56 samples, 0.04%)</title><rect x="34.6465%" y="677" width="0.0383%" height="15" fill="rgb(249,227,8)" fg:x="50711" fg:w="56"/><text x="34.8965%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.05%)</title><rect x="34.6465%" y="693" width="0.0471%" height="15" fill="rgb(253,141,45)" fg:x="50711" fg:w="69"/><text x="34.8965%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (78 samples, 0.05%)</title><rect x="34.6458%" y="709" width="0.0533%" height="15" fill="rgb(234,184,4)" fg:x="50710" fg:w="78"/><text x="34.8958%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (87 samples, 0.06%)</title><rect x="34.6458%" y="725" width="0.0594%" height="15" fill="rgb(218,194,23)" fg:x="50710" fg:w="87"/><text x="34.8958%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (92 samples, 0.06%)</title><rect x="34.6458%" y="741" width="0.0629%" height="15" fill="rgb(235,66,41)" fg:x="50710" fg:w="92"/><text x="34.8958%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (104 samples, 0.07%)</title><rect x="34.6458%" y="757" width="0.0711%" height="15" fill="rgb(245,217,1)" fg:x="50710" fg:w="104"/><text x="34.8958%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (107 samples, 0.07%)</title><rect x="34.6458%" y="773" width="0.0731%" height="15" fill="rgb(229,91,1)" fg:x="50710" fg:w="107"/><text x="34.8958%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (113 samples, 0.08%)</title><rect x="34.6458%" y="789" width="0.0772%" height="15" fill="rgb(207,101,30)" fg:x="50710" fg:w="113"/><text x="34.8958%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (121 samples, 0.08%)</title><rect x="34.6458%" y="805" width="0.0827%" height="15" fill="rgb(223,82,49)" fg:x="50710" fg:w="121"/><text x="34.8958%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (126 samples, 0.09%)</title><rect x="34.6458%" y="821" width="0.0861%" height="15" fill="rgb(218,167,17)" fg:x="50710" fg:w="126"/><text x="34.8958%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (146 samples, 0.10%)</title><rect x="34.6458%" y="837" width="0.0997%" height="15" fill="rgb(208,103,14)" fg:x="50710" fg:w="146"/><text x="34.8958%" y="847.50"></text></g><g><title>MemNode::all_controls_dominate (20 samples, 0.01%)</title><rect x="34.7319%" y="821" width="0.0137%" height="15" fill="rgb(238,20,8)" fg:x="50836" fg:w="20"/><text x="34.9819%" y="831.50"></text></g><g><title>Node::dominates (20 samples, 0.01%)</title><rect x="34.7319%" y="805" width="0.0137%" height="15" fill="rgb(218,80,54)" fg:x="50836" fg:w="20"/><text x="34.9819%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (162 samples, 0.11%)</title><rect x="34.6451%" y="853" width="0.1107%" height="15" fill="rgb(240,144,17)" fg:x="50709" fg:w="162"/><text x="34.8951%" y="863.50"></text></g><g><title>MemNode::all_controls_dominate (15 samples, 0.01%)</title><rect x="34.7455%" y="837" width="0.0102%" height="15" fill="rgb(245,27,50)" fg:x="50856" fg:w="15"/><text x="34.9955%" y="847.50"></text></g><g><title>Node::dominates (15 samples, 0.01%)</title><rect x="34.7455%" y="821" width="0.0102%" height="15" fill="rgb(251,51,7)" fg:x="50856" fg:w="15"/><text x="34.9955%" y="831.50"></text></g><g><title>InitializeNode::can_capture_store (164 samples, 0.11%)</title><rect x="34.6444%" y="885" width="0.1120%" height="15" fill="rgb(245,217,29)" fg:x="50708" fg:w="164"/><text x="34.8944%" y="895.50"></text></g><g><title>InitializeNode::detect_init_independence (163 samples, 0.11%)</title><rect x="34.6451%" y="869" width="0.1114%" height="15" fill="rgb(221,176,29)" fg:x="50709" fg:w="163"/><text x="34.8951%" y="879.50"></text></g><g><title>StoreNode::Ideal (182 samples, 0.12%)</title><rect x="34.6437%" y="901" width="0.1243%" height="15" fill="rgb(212,180,24)" fg:x="50707" fg:w="182"/><text x="34.8937%" y="911.50"></text></g><g><title>MemNode::Ideal_common (17 samples, 0.01%)</title><rect x="34.7565%" y="885" width="0.0116%" height="15" fill="rgb(254,24,2)" fg:x="50872" fg:w="17"/><text x="35.0065%" y="895.50"></text></g><g><title>PhaseIterGVN::transform_old (1,275 samples, 0.87%)</title><rect x="33.9168%" y="917" width="0.8711%" height="15" fill="rgb(230,100,2)" fg:x="49643" fg:w="1275"/><text x="34.1668%" y="927.50"></text></g><g><title>PhaseIterGVN::optimize (1,346 samples, 0.92%)</title><rect x="33.8765%" y="933" width="0.9196%" height="15" fill="rgb(219,142,25)" fg:x="49584" fg:w="1346"/><text x="34.1265%" y="943.50"></text></g><g><title>IfNode::Ideal (15 samples, 0.01%)</title><rect x="34.8385%" y="885" width="0.0102%" height="15" fill="rgb(240,73,43)" fg:x="50992" fg:w="15"/><text x="35.0885%" y="895.50"></text></g><g><title>PhaseIterGVN::subsume_node (15 samples, 0.01%)</title><rect x="34.8712%" y="885" width="0.0102%" height="15" fill="rgb(214,114,15)" fg:x="51040" fg:w="15"/><text x="35.1212%" y="895.50"></text></g><g><title>PhaseIterGVN::transform_old (153 samples, 0.10%)</title><rect x="34.8084%" y="901" width="0.1045%" height="15" fill="rgb(207,130,4)" fg:x="50948" fg:w="153"/><text x="35.0584%" y="911.50"></text></g><g><title>PhaseIterGVN::optimize (161 samples, 0.11%)</title><rect x="34.8043%" y="917" width="0.1100%" height="15" fill="rgb(221,25,40)" fg:x="50942" fg:w="161"/><text x="35.0543%" y="927.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (43 samples, 0.03%)</title><rect x="34.9170%" y="917" width="0.0294%" height="15" fill="rgb(241,184,7)" fg:x="51107" fg:w="43"/><text x="35.1670%" y="927.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (226 samples, 0.15%)</title><rect x="34.8029%" y="933" width="0.1544%" height="15" fill="rgb(235,159,4)" fg:x="50940" fg:w="226"/><text x="35.0529%" y="943.50"></text></g><g><title>Compile::identify_useful_nodes (47 samples, 0.03%)</title><rect x="34.9642%" y="901" width="0.0321%" height="15" fill="rgb(214,87,48)" fg:x="51176" fg:w="47"/><text x="35.2142%" y="911.50"></text></g><g><title>Compile::remove_useless_nodes (27 samples, 0.02%)</title><rect x="34.9963%" y="901" width="0.0184%" height="15" fill="rgb(246,198,24)" fg:x="51223" fg:w="27"/><text x="35.2463%" y="911.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (86 samples, 0.06%)</title><rect x="34.9614%" y="917" width="0.0588%" height="15" fill="rgb(209,66,40)" fg:x="51172" fg:w="86"/><text x="35.2114%" y="927.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (93 samples, 0.06%)</title><rect x="34.9573%" y="933" width="0.0635%" height="15" fill="rgb(233,147,39)" fg:x="51166" fg:w="93"/><text x="35.2073%" y="943.50"></text></g><g><title>Compile::Optimize (11,778 samples, 8.05%)</title><rect x="26.9760%" y="949" width="8.0469%" height="15" fill="rgb(231,145,52)" fg:x="39484" fg:w="11778"/><text x="27.2260%" y="959.50">Compile::Op..</text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="35.0509%" y="805" width="0.0184%" height="15" fill="rgb(206,20,26)" fg:x="51303" fg:w="27"/><text x="35.3009%" y="815.50"></text></g><g><title>Parse::do_field_access (27 samples, 0.02%)</title><rect x="35.0728%" y="805" width="0.0184%" height="15" fill="rgb(238,220,4)" fg:x="51335" fg:w="27"/><text x="35.3228%" y="815.50"></text></g><g><title>Parse::do_if (15 samples, 0.01%)</title><rect x="35.0912%" y="805" width="0.0102%" height="15" fill="rgb(252,195,42)" fg:x="51362" fg:w="15"/><text x="35.3412%" y="815.50"></text></g><g><title>Parse::do_one_block (114 samples, 0.08%)</title><rect x="35.0325%" y="837" width="0.0779%" height="15" fill="rgb(209,10,6)" fg:x="51276" fg:w="114"/><text x="35.2825%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (100 samples, 0.07%)</title><rect x="35.0421%" y="821" width="0.0683%" height="15" fill="rgb(229,3,52)" fg:x="51290" fg:w="100"/><text x="35.2921%" y="831.50"></text></g><g><title>Parse::do_all_blocks (120 samples, 0.08%)</title><rect x="35.0318%" y="853" width="0.0820%" height="15" fill="rgb(253,49,37)" fg:x="51275" fg:w="120"/><text x="35.2818%" y="863.50"></text></g><g><title>ParseGenerator::generate (127 samples, 0.09%)</title><rect x="35.0318%" y="885" width="0.0868%" height="15" fill="rgb(240,103,49)" fg:x="51275" fg:w="127"/><text x="35.2818%" y="895.50"></text></g><g><title>Parse::Parse (127 samples, 0.09%)</title><rect x="35.0318%" y="869" width="0.0868%" height="15" fill="rgb(250,182,30)" fg:x="51275" fg:w="127"/><text x="35.2818%" y="879.50"></text></g><g><title>CompileBroker::compiler_thread_loop (146 samples, 0.10%)</title><rect x="35.0236%" y="949" width="0.0997%" height="15" fill="rgb(248,8,30)" fg:x="51263" fg:w="146"/><text x="35.2736%" y="959.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (146 samples, 0.10%)</title><rect x="35.0236%" y="933" width="0.0997%" height="15" fill="rgb(237,120,30)" fg:x="51263" fg:w="146"/><text x="35.2736%" y="943.50"></text></g><g><title>C2Compiler::compile_method (146 samples, 0.10%)</title><rect x="35.0236%" y="917" width="0.0997%" height="15" fill="rgb(221,146,34)" fg:x="51263" fg:w="146"/><text x="35.2736%" y="927.50"></text></g><g><title>Compile::Compile (146 samples, 0.10%)</title><rect x="35.0236%" y="901" width="0.0997%" height="15" fill="rgb(242,55,13)" fg:x="51263" fg:w="146"/><text x="35.2736%" y="911.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (18 samples, 0.01%)</title><rect x="35.1240%" y="773" width="0.0123%" height="15" fill="rgb(242,112,31)" fg:x="51410" fg:w="18"/><text x="35.3740%" y="783.50"></text></g><g><title>ciBytecodeStream::get_field (18 samples, 0.01%)</title><rect x="35.1240%" y="757" width="0.0123%" height="15" fill="rgb(249,192,27)" fg:x="51410" fg:w="18"/><text x="35.3740%" y="767.50"></text></g><g><title>ciMethod::ciMethod (16 samples, 0.01%)</title><rect x="35.1391%" y="693" width="0.0109%" height="15" fill="rgb(208,204,44)" fg:x="51432" fg:w="16"/><text x="35.3891%" y="703.50"></text></g><g><title>ciSignature::ciSignature (16 samples, 0.01%)</title><rect x="35.1391%" y="677" width="0.0109%" height="15" fill="rgb(208,93,54)" fg:x="51432" fg:w="16"/><text x="35.3891%" y="687.50"></text></g><g><title>CallGenerator::for_inline (40 samples, 0.03%)</title><rect x="35.1234%" y="901" width="0.0273%" height="15" fill="rgb(242,1,31)" fg:x="51409" fg:w="40"/><text x="35.3734%" y="911.50"></text></g><g><title>InlineTree::check_can_parse (40 samples, 0.03%)</title><rect x="35.1234%" y="885" width="0.0273%" height="15" fill="rgb(241,83,25)" fg:x="51409" fg:w="40"/><text x="35.3734%" y="895.50"></text></g><g><title>ciMethod::get_flow_analysis (40 samples, 0.03%)</title><rect x="35.1234%" y="869" width="0.0273%" height="15" fill="rgb(205,169,50)" fg:x="51409" fg:w="40"/><text x="35.3734%" y="879.50"></text></g><g><title>ciTypeFlow::do_flow (40 samples, 0.03%)</title><rect x="35.1234%" y="853" width="0.0273%" height="15" fill="rgb(239,186,37)" fg:x="51409" fg:w="40"/><text x="35.3734%" y="863.50"></text></g><g><title>ciTypeFlow::flow_types (40 samples, 0.03%)</title><rect x="35.1234%" y="837" width="0.0273%" height="15" fill="rgb(205,221,10)" fg:x="51409" fg:w="40"/><text x="35.3734%" y="847.50"></text></g><g><title>ciTypeFlow::df_flow_types (39 samples, 0.03%)</title><rect x="35.1240%" y="821" width="0.0266%" height="15" fill="rgb(218,196,15)" fg:x="51410" fg:w="39"/><text x="35.3740%" y="831.50"></text></g><g><title>ciTypeFlow::flow_block (39 samples, 0.03%)</title><rect x="35.1240%" y="805" width="0.0266%" height="15" fill="rgb(218,196,35)" fg:x="51410" fg:w="39"/><text x="35.3740%" y="815.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (39 samples, 0.03%)</title><rect x="35.1240%" y="789" width="0.0266%" height="15" fill="rgb(233,63,24)" fg:x="51410" fg:w="39"/><text x="35.3740%" y="799.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (21 samples, 0.01%)</title><rect x="35.1363%" y="773" width="0.0143%" height="15" fill="rgb(225,8,4)" fg:x="51428" fg:w="21"/><text x="35.3863%" y="783.50"></text></g><g><title>ciBytecodeStream::get_method (21 samples, 0.01%)</title><rect x="35.1363%" y="757" width="0.0143%" height="15" fill="rgb(234,105,35)" fg:x="51428" fg:w="21"/><text x="35.3863%" y="767.50"></text></g><g><title>ciEnv::get_method_by_index_impl (21 samples, 0.01%)</title><rect x="35.1363%" y="741" width="0.0143%" height="15" fill="rgb(236,21,32)" fg:x="51428" fg:w="21"/><text x="35.3863%" y="751.50"></text></g><g><title>ciObjectFactory::get_metadata (19 samples, 0.01%)</title><rect x="35.1377%" y="725" width="0.0130%" height="15" fill="rgb(228,109,6)" fg:x="51430" fg:w="19"/><text x="35.3877%" y="735.50"></text></g><g><title>ciObjectFactory::create_new_metadata (18 samples, 0.01%)</title><rect x="35.1384%" y="709" width="0.0123%" height="15" fill="rgb(229,215,31)" fg:x="51431" fg:w="18"/><text x="35.3884%" y="719.50"></text></g><g><title>Parse::array_load (17 samples, 0.01%)</title><rect x="35.1602%" y="821" width="0.0116%" height="15" fill="rgb(221,52,54)" fg:x="51463" fg:w="17"/><text x="35.4102%" y="831.50"></text></g><g><title>Parse::array_addressing (15 samples, 0.01%)</title><rect x="35.1616%" y="805" width="0.0102%" height="15" fill="rgb(252,129,43)" fg:x="51465" fg:w="15"/><text x="35.4116%" y="815.50"></text></g><g><title>InlineTree::ok_to_inline (33 samples, 0.02%)</title><rect x="35.1807%" y="789" width="0.0225%" height="15" fill="rgb(248,183,27)" fg:x="51493" fg:w="33"/><text x="35.4307%" y="799.50"></text></g><g><title>ciMethod::get_flow_analysis (21 samples, 0.01%)</title><rect x="35.1889%" y="773" width="0.0143%" height="15" fill="rgb(250,0,22)" fg:x="51505" fg:w="21"/><text x="35.4389%" y="783.50"></text></g><g><title>Compile::call_generator (40 samples, 0.03%)</title><rect x="35.1773%" y="805" width="0.0273%" height="15" fill="rgb(213,166,10)" fg:x="51488" fg:w="40"/><text x="35.4273%" y="815.50"></text></g><g><title>Parse::do_one_block (59 samples, 0.04%)</title><rect x="35.2532%" y="757" width="0.0403%" height="15" fill="rgb(207,163,36)" fg:x="51599" fg:w="59"/><text x="35.5032%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.03%)</title><rect x="35.2586%" y="741" width="0.0348%" height="15" fill="rgb(208,122,22)" fg:x="51607" fg:w="51"/><text x="35.5086%" y="751.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.05%)</title><rect x="35.2491%" y="773" width="0.0478%" height="15" fill="rgb(207,104,49)" fg:x="51593" fg:w="70"/><text x="35.4991%" y="783.50"></text></g><g><title>Parse::do_exits (20 samples, 0.01%)</title><rect x="35.2969%" y="773" width="0.0137%" height="15" fill="rgb(248,211,50)" fg:x="51663" fg:w="20"/><text x="35.5469%" y="783.50"></text></g><g><title>ParseGenerator::generate (125 samples, 0.09%)</title><rect x="35.2306%" y="805" width="0.0854%" height="15" fill="rgb(217,13,45)" fg:x="51566" fg:w="125"/><text x="35.4806%" y="815.50"></text></g><g><title>Parse::Parse (125 samples, 0.09%)</title><rect x="35.2306%" y="789" width="0.0854%" height="15" fill="rgb(211,216,49)" fg:x="51566" fg:w="125"/><text x="35.4806%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (24 samples, 0.02%)</title><rect x="35.3167%" y="805" width="0.0164%" height="15" fill="rgb(221,58,53)" fg:x="51692" fg:w="24"/><text x="35.5667%" y="815.50"></text></g><g><title>Parse::do_call (242 samples, 0.17%)</title><rect x="35.1773%" y="821" width="0.1653%" height="15" fill="rgb(220,112,41)" fg:x="51488" fg:w="242"/><text x="35.4273%" y="831.50"></text></g><g><title>Parse::do_get_xxx (22 samples, 0.02%)</title><rect x="35.3502%" y="805" width="0.0150%" height="15" fill="rgb(236,38,28)" fg:x="51741" fg:w="22"/><text x="35.6002%" y="815.50"></text></g><g><title>Parse::do_field_access (44 samples, 0.03%)</title><rect x="35.3474%" y="821" width="0.0301%" height="15" fill="rgb(227,195,22)" fg:x="51737" fg:w="44"/><text x="35.5974%" y="831.50"></text></g><g><title>Parse::do_put_xxx (18 samples, 0.01%)</title><rect x="35.3652%" y="805" width="0.0123%" height="15" fill="rgb(214,55,33)" fg:x="51763" fg:w="18"/><text x="35.6152%" y="815.50"></text></g><g><title>Parse::do_if (15 samples, 0.01%)</title><rect x="35.3775%" y="821" width="0.0102%" height="15" fill="rgb(248,80,13)" fg:x="51781" fg:w="15"/><text x="35.6275%" y="831.50"></text></g><g><title>Parse::do_all_blocks (364 samples, 0.25%)</title><rect x="35.1555%" y="869" width="0.2487%" height="15" fill="rgb(238,52,6)" fg:x="51456" fg:w="364"/><text x="35.4055%" y="879.50"></text></g><g><title>Parse::do_one_block (363 samples, 0.25%)</title><rect x="35.1561%" y="853" width="0.2480%" height="15" fill="rgb(224,198,47)" fg:x="51457" fg:w="363"/><text x="35.4061%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (359 samples, 0.25%)</title><rect x="35.1589%" y="837" width="0.2453%" height="15" fill="rgb(233,171,20)" fg:x="51461" fg:w="359"/><text x="35.4089%" y="847.50"></text></g><g><title>ParseGenerator::generate (370 samples, 0.25%)</title><rect x="35.1555%" y="901" width="0.2528%" height="15" fill="rgb(241,30,25)" fg:x="51456" fg:w="370"/><text x="35.4055%" y="911.50"></text></g><g><title>Parse::Parse (370 samples, 0.25%)</title><rect x="35.1555%" y="885" width="0.2528%" height="15" fill="rgb(207,171,38)" fg:x="51456" fg:w="370"/><text x="35.4055%" y="895.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (434 samples, 0.30%)</title><rect x="35.1234%" y="949" width="0.2965%" height="15" fill="rgb(234,70,1)" fg:x="51409" fg:w="434"/><text x="35.3734%" y="959.50"></text></g><g><title>C2Compiler::compile_method (434 samples, 0.30%)</title><rect x="35.1234%" y="933" width="0.2965%" height="15" fill="rgb(232,178,18)" fg:x="51409" fg:w="434"/><text x="35.3734%" y="943.50"></text></g><g><title>Compile::Compile (434 samples, 0.30%)</title><rect x="35.1234%" y="917" width="0.2965%" height="15" fill="rgb(241,78,40)" fg:x="51409" fg:w="434"/><text x="35.3734%" y="927.50"></text></g><g><title>ciEnv::register_method (17 samples, 0.01%)</title><rect x="35.4083%" y="901" width="0.0116%" height="15" fill="rgb(222,35,25)" fg:x="51826" fg:w="17"/><text x="35.6583%" y="911.50"></text></g><g><title>nmethod::new_nmethod (15 samples, 0.01%)</title><rect x="35.4096%" y="885" width="0.0102%" height="15" fill="rgb(207,92,16)" fg:x="51828" fg:w="15"/><text x="35.6596%" y="895.50"></text></g><g><title>nmethod::nmethod (15 samples, 0.01%)</title><rect x="35.4096%" y="869" width="0.0102%" height="15" fill="rgb(216,59,51)" fg:x="51828" fg:w="15"/><text x="35.6596%" y="879.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="35.4383%" y="821" width="0.0164%" height="15" fill="rgb(213,80,28)" fg:x="51870" fg:w="24"/><text x="35.6883%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="35.4383%" y="805" width="0.0164%" height="15" fill="rgb(220,93,7)" fg:x="51870" fg:w="24"/><text x="35.6883%" y="815.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="35.4376%" y="837" width="0.0191%" height="15" fill="rgb(225,24,44)" fg:x="51869" fg:w="28"/><text x="35.6876%" y="847.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="35.4376%" y="869" width="0.0198%" height="15" fill="rgb(243,74,40)" fg:x="51869" fg:w="29"/><text x="35.6876%" y="879.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="35.4376%" y="853" width="0.0198%" height="15" fill="rgb(228,39,7)" fg:x="51869" fg:w="29"/><text x="35.6876%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (39 samples, 0.03%)</title><rect x="35.4335%" y="949" width="0.0266%" height="15" fill="rgb(227,79,8)" fg:x="51863" fg:w="39"/><text x="35.6835%" y="959.50"></text></g><g><title>CompileBroker::compiler_thread_loop (39 samples, 0.03%)</title><rect x="35.4335%" y="933" width="0.0266%" height="15" fill="rgb(236,58,11)" fg:x="51863" fg:w="39"/><text x="35.6835%" y="943.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (39 samples, 0.03%)</title><rect x="35.4335%" y="917" width="0.0266%" height="15" fill="rgb(249,63,35)" fg:x="51863" fg:w="39"/><text x="35.6835%" y="927.50"></text></g><g><title>C2Compiler::compile_method (39 samples, 0.03%)</title><rect x="35.4335%" y="901" width="0.0266%" height="15" fill="rgb(252,114,16)" fg:x="51863" fg:w="39"/><text x="35.6835%" y="911.50"></text></g><g><title>Compile::Compile (39 samples, 0.03%)</title><rect x="35.4335%" y="885" width="0.0266%" height="15" fill="rgb(254,151,24)" fg:x="51863" fg:w="39"/><text x="35.6835%" y="895.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="35.4643%" y="389" width="0.0137%" height="15" fill="rgb(253,54,39)" fg:x="51908" fg:w="20"/><text x="35.7143%" y="399.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="35.4643%" y="373" width="0.0137%" height="15" fill="rgb(243,25,45)" fg:x="51908" fg:w="20"/><text x="35.7143%" y="383.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="35.4643%" y="357" width="0.0137%" height="15" fill="rgb(234,134,9)" fg:x="51908" fg:w="20"/><text x="35.7143%" y="367.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="35.4643%" y="341" width="0.0137%" height="15" fill="rgb(227,166,31)" fg:x="51908" fg:w="20"/><text x="35.7143%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="35.4643%" y="325" width="0.0137%" height="15" fill="rgb(245,143,41)" fg:x="51908" fg:w="20"/><text x="35.7143%" y="335.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="35.4643%" y="309" width="0.0137%" height="15" fill="rgb(238,181,32)" fg:x="51908" fg:w="20"/><text x="35.7143%" y="319.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="35.4663%" y="293" width="0.0116%" height="15" fill="rgb(224,113,18)" fg:x="51911" fg:w="17"/><text x="35.7163%" y="303.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="35.4663%" y="277" width="0.0116%" height="15" fill="rgb(240,229,28)" fg:x="51911" fg:w="17"/><text x="35.7163%" y="287.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="35.4663%" y="261" width="0.0116%" height="15" fill="rgb(250,185,3)" fg:x="51911" fg:w="17"/><text x="35.7163%" y="271.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="35.4663%" y="245" width="0.0116%" height="15" fill="rgb(212,59,25)" fg:x="51911" fg:w="17"/><text x="35.7163%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="35.4663%" y="229" width="0.0116%" height="15" fill="rgb(221,87,20)" fg:x="51911" fg:w="17"/><text x="35.7163%" y="239.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="35.4643%" y="485" width="0.0143%" height="15" fill="rgb(213,74,28)" fg:x="51908" fg:w="21"/><text x="35.7143%" y="495.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="35.4643%" y="469" width="0.0143%" height="15" fill="rgb(224,132,34)" fg:x="51908" fg:w="21"/><text x="35.7143%" y="479.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="35.4643%" y="453" width="0.0143%" height="15" fill="rgb(222,101,24)" fg:x="51908" fg:w="21"/><text x="35.7143%" y="463.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="35.4643%" y="437" width="0.0143%" height="15" fill="rgb(254,142,4)" fg:x="51908" fg:w="21"/><text x="35.7143%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="35.4643%" y="421" width="0.0143%" height="15" fill="rgb(230,229,49)" fg:x="51908" fg:w="21"/><text x="35.7143%" y="431.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="35.4643%" y="405" width="0.0143%" height="15" fill="rgb(238,70,47)" fg:x="51908" fg:w="21"/><text x="35.7143%" y="415.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.02%)</title><rect x="35.4643%" y="581" width="0.0150%" height="15" fill="rgb(231,160,17)" fg:x="51908" fg:w="22"/><text x="35.7143%" y="591.50"></text></g><g><title>Parse::Parse (22 samples, 0.02%)</title><rect x="35.4643%" y="565" width="0.0150%" height="15" fill="rgb(218,68,53)" fg:x="51908" fg:w="22"/><text x="35.7143%" y="575.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.02%)</title><rect x="35.4643%" y="549" width="0.0150%" height="15" fill="rgb(236,111,10)" fg:x="51908" fg:w="22"/><text x="35.7143%" y="559.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.02%)</title><rect x="35.4643%" y="533" width="0.0150%" height="15" fill="rgb(224,34,41)" fg:x="51908" fg:w="22"/><text x="35.7143%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.02%)</title><rect x="35.4643%" y="517" width="0.0150%" height="15" fill="rgb(241,118,19)" fg:x="51908" fg:w="22"/><text x="35.7143%" y="527.50"></text></g><g><title>Parse::do_call (22 samples, 0.02%)</title><rect x="35.4643%" y="501" width="0.0150%" height="15" fill="rgb(238,129,25)" fg:x="51908" fg:w="22"/><text x="35.7143%" y="511.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="35.4643%" y="677" width="0.0171%" height="15" fill="rgb(238,22,31)" fg:x="51908" fg:w="25"/><text x="35.7143%" y="687.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="35.4643%" y="661" width="0.0171%" height="15" fill="rgb(222,174,48)" fg:x="51908" fg:w="25"/><text x="35.7143%" y="671.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.02%)</title><rect x="35.4643%" y="645" width="0.0171%" height="15" fill="rgb(206,152,40)" fg:x="51908" fg:w="25"/><text x="35.7143%" y="655.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="35.4643%" y="629" width="0.0171%" height="15" fill="rgb(218,99,54)" fg:x="51908" fg:w="25"/><text x="35.7143%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="35.4643%" y="613" width="0.0171%" height="15" fill="rgb(220,174,26)" fg:x="51908" fg:w="25"/><text x="35.7143%" y="623.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="35.4643%" y="597" width="0.0171%" height="15" fill="rgb(245,116,9)" fg:x="51908" fg:w="25"/><text x="35.7143%" y="607.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="35.4643%" y="773" width="0.0184%" height="15" fill="rgb(209,72,35)" fg:x="51908" fg:w="27"/><text x="35.7143%" y="783.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="35.4643%" y="757" width="0.0184%" height="15" fill="rgb(226,126,21)" fg:x="51908" fg:w="27"/><text x="35.7143%" y="767.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="35.4643%" y="741" width="0.0184%" height="15" fill="rgb(227,192,1)" fg:x="51908" fg:w="27"/><text x="35.7143%" y="751.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="35.4643%" y="725" width="0.0184%" height="15" fill="rgb(237,180,29)" fg:x="51908" fg:w="27"/><text x="35.7143%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="35.4643%" y="709" width="0.0184%" height="15" fill="rgb(230,197,35)" fg:x="51908" fg:w="27"/><text x="35.7143%" y="719.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="35.4643%" y="693" width="0.0184%" height="15" fill="rgb(246,193,31)" fg:x="51908" fg:w="27"/><text x="35.7143%" y="703.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="35.4643%" y="869" width="0.0191%" height="15" fill="rgb(241,36,4)" fg:x="51908" fg:w="28"/><text x="35.7143%" y="879.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="35.4643%" y="853" width="0.0191%" height="15" fill="rgb(241,130,17)" fg:x="51908" fg:w="28"/><text x="35.7143%" y="863.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="35.4643%" y="837" width="0.0191%" height="15" fill="rgb(206,137,32)" fg:x="51908" fg:w="28"/><text x="35.7143%" y="847.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="35.4643%" y="821" width="0.0191%" height="15" fill="rgb(237,228,51)" fg:x="51908" fg:w="28"/><text x="35.7143%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="35.4643%" y="805" width="0.0191%" height="15" fill="rgb(243,6,42)" fg:x="51908" fg:w="28"/><text x="35.7143%" y="815.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="35.4643%" y="789" width="0.0191%" height="15" fill="rgb(251,74,28)" fg:x="51908" fg:w="28"/><text x="35.7143%" y="799.50"></text></g><g><title>Parse::Parse (30 samples, 0.02%)</title><rect x="35.4643%" y="949" width="0.0205%" height="15" fill="rgb(218,20,49)" fg:x="51908" fg:w="30"/><text x="35.7143%" y="959.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.02%)</title><rect x="35.4643%" y="933" width="0.0205%" height="15" fill="rgb(238,28,14)" fg:x="51908" fg:w="30"/><text x="35.7143%" y="943.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.02%)</title><rect x="35.4643%" y="917" width="0.0205%" height="15" fill="rgb(229,40,46)" fg:x="51908" fg:w="30"/><text x="35.7143%" y="927.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.02%)</title><rect x="35.4643%" y="901" width="0.0205%" height="15" fill="rgb(244,195,20)" fg:x="51908" fg:w="30"/><text x="35.7143%" y="911.50"></text></g><g><title>Parse::do_call (30 samples, 0.02%)</title><rect x="35.4643%" y="885" width="0.0205%" height="15" fill="rgb(253,56,35)" fg:x="51908" fg:w="30"/><text x="35.7143%" y="895.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="35.4848%" y="229" width="0.0137%" height="15" fill="rgb(210,149,44)" fg:x="51938" fg:w="20"/><text x="35.7348%" y="239.50"></text></g><g><title>ParseGenerator::generate (15 samples, 0.01%)</title><rect x="35.4882%" y="213" width="0.0102%" height="15" fill="rgb(240,135,12)" fg:x="51943" fg:w="15"/><text x="35.7382%" y="223.50"></text></g><g><title>Parse::Parse (15 samples, 0.01%)</title><rect x="35.4882%" y="197" width="0.0102%" height="15" fill="rgb(251,24,50)" fg:x="51943" fg:w="15"/><text x="35.7382%" y="207.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="35.4848%" y="309" width="0.0178%" height="15" fill="rgb(243,200,47)" fg:x="51938" fg:w="26"/><text x="35.7348%" y="319.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="35.4848%" y="293" width="0.0178%" height="15" fill="rgb(224,166,26)" fg:x="51938" fg:w="26"/><text x="35.7348%" y="303.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="35.4848%" y="277" width="0.0178%" height="15" fill="rgb(233,0,47)" fg:x="51938" fg:w="26"/><text x="35.7348%" y="287.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="35.4848%" y="261" width="0.0178%" height="15" fill="rgb(253,80,5)" fg:x="51938" fg:w="26"/><text x="35.7348%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="35.4848%" y="245" width="0.0178%" height="15" fill="rgb(214,133,25)" fg:x="51938" fg:w="26"/><text x="35.7348%" y="255.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="35.4848%" y="405" width="0.0184%" height="15" fill="rgb(209,27,14)" fg:x="51938" fg:w="27"/><text x="35.7348%" y="415.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="35.4848%" y="389" width="0.0184%" height="15" fill="rgb(219,102,51)" fg:x="51938" fg:w="27"/><text x="35.7348%" y="399.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="35.4848%" y="373" width="0.0184%" height="15" fill="rgb(237,18,16)" fg:x="51938" fg:w="27"/><text x="35.7348%" y="383.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="35.4848%" y="357" width="0.0184%" height="15" fill="rgb(241,85,17)" fg:x="51938" fg:w="27"/><text x="35.7348%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="35.4848%" y="341" width="0.0184%" height="15" fill="rgb(236,90,42)" fg:x="51938" fg:w="27"/><text x="35.7348%" y="351.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="35.4848%" y="325" width="0.0184%" height="15" fill="rgb(249,57,21)" fg:x="51938" fg:w="27"/><text x="35.7348%" y="335.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="35.4848%" y="597" width="0.0191%" height="15" fill="rgb(243,12,36)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="607.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="35.4848%" y="581" width="0.0191%" height="15" fill="rgb(253,128,47)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="591.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="35.4848%" y="565" width="0.0191%" height="15" fill="rgb(207,33,20)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="575.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="35.4848%" y="549" width="0.0191%" height="15" fill="rgb(233,215,35)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="35.4848%" y="533" width="0.0191%" height="15" fill="rgb(249,188,52)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="543.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="35.4848%" y="517" width="0.0191%" height="15" fill="rgb(225,12,32)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="527.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="35.4848%" y="501" width="0.0191%" height="15" fill="rgb(247,98,14)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="511.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="35.4848%" y="485" width="0.0191%" height="15" fill="rgb(247,219,48)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="495.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="35.4848%" y="469" width="0.0191%" height="15" fill="rgb(253,60,48)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="479.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="35.4848%" y="453" width="0.0191%" height="15" fill="rgb(245,15,52)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="35.4848%" y="437" width="0.0191%" height="15" fill="rgb(220,133,28)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="447.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="35.4848%" y="421" width="0.0191%" height="15" fill="rgb(217,180,4)" fg:x="51938" fg:w="28"/><text x="35.7348%" y="431.50"></text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="35.4848%" y="613" width="0.0219%" height="15" fill="rgb(251,24,1)" fg:x="51938" fg:w="32"/><text x="35.7348%" y="623.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.02%)</title><rect x="35.4848%" y="789" width="0.0225%" height="15" fill="rgb(212,185,49)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="799.50"></text></g><g><title>Parse::Parse (33 samples, 0.02%)</title><rect x="35.4848%" y="773" width="0.0225%" height="15" fill="rgb(215,175,22)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="783.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="35.4848%" y="757" width="0.0225%" height="15" fill="rgb(250,205,14)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="767.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="35.4848%" y="741" width="0.0225%" height="15" fill="rgb(225,211,22)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="35.4848%" y="725" width="0.0225%" height="15" fill="rgb(251,179,42)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="735.50"></text></g><g><title>Parse::do_call (33 samples, 0.02%)</title><rect x="35.4848%" y="709" width="0.0225%" height="15" fill="rgb(208,216,51)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="719.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.02%)</title><rect x="35.4848%" y="693" width="0.0225%" height="15" fill="rgb(235,36,11)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="703.50"></text></g><g><title>Parse::Parse (33 samples, 0.02%)</title><rect x="35.4848%" y="677" width="0.0225%" height="15" fill="rgb(213,189,28)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="687.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="35.4848%" y="661" width="0.0225%" height="15" fill="rgb(227,203,42)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="671.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="35.4848%" y="645" width="0.0225%" height="15" fill="rgb(244,72,36)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="35.4848%" y="629" width="0.0225%" height="15" fill="rgb(213,53,17)" fg:x="51938" fg:w="33"/><text x="35.7348%" y="639.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.02%)</title><rect x="35.4848%" y="885" width="0.0232%" height="15" fill="rgb(207,167,3)" fg:x="51938" fg:w="34"/><text x="35.7348%" y="895.50"></text></g><g><title>Parse::Parse (34 samples, 0.02%)</title><rect x="35.4848%" y="869" width="0.0232%" height="15" fill="rgb(216,98,30)" fg:x="51938" fg:w="34"/><text x="35.7348%" y="879.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="35.4848%" y="853" width="0.0232%" height="15" fill="rgb(236,123,15)" fg:x="51938" fg:w="34"/><text x="35.7348%" y="863.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="35.4848%" y="837" width="0.0232%" height="15" fill="rgb(248,81,50)" fg:x="51938" fg:w="34"/><text x="35.7348%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="35.4848%" y="821" width="0.0232%" height="15" fill="rgb(214,120,4)" fg:x="51938" fg:w="34"/><text x="35.7348%" y="831.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="35.4848%" y="805" width="0.0232%" height="15" fill="rgb(208,179,34)" fg:x="51938" fg:w="34"/><text x="35.7348%" y="815.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.02%)</title><rect x="35.4848%" y="949" width="0.0246%" height="15" fill="rgb(227,140,7)" fg:x="51938" fg:w="36"/><text x="35.7348%" y="959.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.02%)</title><rect x="35.4848%" y="933" width="0.0246%" height="15" fill="rgb(214,22,6)" fg:x="51938" fg:w="36"/><text x="35.7348%" y="943.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.02%)</title><rect x="35.4848%" y="917" width="0.0246%" height="15" fill="rgb(207,137,27)" fg:x="51938" fg:w="36"/><text x="35.7348%" y="927.50"></text></g><g><title>Parse::do_call (36 samples, 0.02%)</title><rect x="35.4848%" y="901" width="0.0246%" height="15" fill="rgb(210,8,46)" fg:x="51938" fg:w="36"/><text x="35.7348%" y="911.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="35.5121%" y="261" width="0.0164%" height="15" fill="rgb(240,16,54)" fg:x="51978" fg:w="24"/><text x="35.7621%" y="271.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="35.5121%" y="245" width="0.0164%" height="15" fill="rgb(211,209,29)" fg:x="51978" fg:w="24"/><text x="35.7621%" y="255.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="35.5121%" y="229" width="0.0164%" height="15" fill="rgb(226,228,24)" fg:x="51978" fg:w="24"/><text x="35.7621%" y="239.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="35.5121%" y="213" width="0.0164%" height="15" fill="rgb(222,84,9)" fg:x="51978" fg:w="24"/><text x="35.7621%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="35.5128%" y="197" width="0.0157%" height="15" fill="rgb(234,203,30)" fg:x="51979" fg:w="23"/><text x="35.7628%" y="207.50"></text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="35.5094%" y="277" width="0.0219%" height="15" fill="rgb(238,109,14)" fg:x="51974" fg:w="32"/><text x="35.7594%" y="287.50"></text></g><g><title>ParseGenerator::generate (36 samples, 0.02%)</title><rect x="35.5094%" y="357" width="0.0246%" height="15" fill="rgb(233,206,34)" fg:x="51974" fg:w="36"/><text x="35.7594%" y="367.50"></text></g><g><title>Parse::Parse (36 samples, 0.02%)</title><rect x="35.5094%" y="341" width="0.0246%" height="15" fill="rgb(220,167,47)" fg:x="51974" fg:w="36"/><text x="35.7594%" y="351.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.02%)</title><rect x="35.5094%" y="325" width="0.0246%" height="15" fill="rgb(238,105,10)" fg:x="51974" fg:w="36"/><text x="35.7594%" y="335.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.02%)</title><rect x="35.5094%" y="309" width="0.0246%" height="15" fill="rgb(213,227,17)" fg:x="51974" fg:w="36"/><text x="35.7594%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.02%)</title><rect x="35.5094%" y="293" width="0.0246%" height="15" fill="rgb(217,132,38)" fg:x="51974" fg:w="36"/><text x="35.7594%" y="303.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.03%)</title><rect x="35.5094%" y="453" width="0.0253%" height="15" fill="rgb(242,146,4)" fg:x="51974" fg:w="37"/><text x="35.7594%" y="463.50"></text></g><g><title>Parse::Parse (37 samples, 0.03%)</title><rect x="35.5094%" y="437" width="0.0253%" height="15" fill="rgb(212,61,9)" fg:x="51974" fg:w="37"/><text x="35.7594%" y="447.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.03%)</title><rect x="35.5094%" y="421" width="0.0253%" height="15" fill="rgb(247,126,22)" fg:x="51974" fg:w="37"/><text x="35.7594%" y="431.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.03%)</title><rect x="35.5094%" y="405" width="0.0253%" height="15" fill="rgb(220,196,2)" fg:x="51974" fg:w="37"/><text x="35.7594%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.03%)</title><rect x="35.5094%" y="389" width="0.0253%" height="15" fill="rgb(208,46,4)" fg:x="51974" fg:w="37"/><text x="35.7594%" y="399.50"></text></g><g><title>Parse::do_call (37 samples, 0.03%)</title><rect x="35.5094%" y="373" width="0.0253%" height="15" fill="rgb(252,104,46)" fg:x="51974" fg:w="37"/><text x="35.7594%" y="383.50"></text></g><g><title>ParseGenerator::generate (40 samples, 0.03%)</title><rect x="35.5094%" y="549" width="0.0273%" height="15" fill="rgb(237,152,48)" fg:x="51974" fg:w="40"/><text x="35.7594%" y="559.50"></text></g><g><title>Parse::Parse (40 samples, 0.03%)</title><rect x="35.5094%" y="533" width="0.0273%" height="15" fill="rgb(221,59,37)" fg:x="51974" fg:w="40"/><text x="35.7594%" y="543.50"></text></g><g><title>Parse::do_all_blocks (40 samples, 0.03%)</title><rect x="35.5094%" y="517" width="0.0273%" height="15" fill="rgb(209,202,51)" fg:x="51974" fg:w="40"/><text x="35.7594%" y="527.50"></text></g><g><title>Parse::do_one_block (40 samples, 0.03%)</title><rect x="35.5094%" y="501" width="0.0273%" height="15" fill="rgb(228,81,30)" fg:x="51974" fg:w="40"/><text x="35.7594%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (40 samples, 0.03%)</title><rect x="35.5094%" y="485" width="0.0273%" height="15" fill="rgb(227,42,39)" fg:x="51974" fg:w="40"/><text x="35.7594%" y="495.50"></text></g><g><title>Parse::do_call (40 samples, 0.03%)</title><rect x="35.5094%" y="469" width="0.0273%" height="15" fill="rgb(221,26,2)" fg:x="51974" fg:w="40"/><text x="35.7594%" y="479.50"></text></g><g><title>ParseGenerator::generate (43 samples, 0.03%)</title><rect x="35.5094%" y="645" width="0.0294%" height="15" fill="rgb(254,61,31)" fg:x="51974" fg:w="43"/><text x="35.7594%" y="655.50"></text></g><g><title>Parse::Parse (43 samples, 0.03%)</title><rect x="35.5094%" y="629" width="0.0294%" height="15" fill="rgb(222,173,38)" fg:x="51974" fg:w="43"/><text x="35.7594%" y="639.50"></text></g><g><title>Parse::do_all_blocks (43 samples, 0.03%)</title><rect x="35.5094%" y="613" width="0.0294%" height="15" fill="rgb(218,50,12)" fg:x="51974" fg:w="43"/><text x="35.7594%" y="623.50"></text></g><g><title>Parse::do_one_block (43 samples, 0.03%)</title><rect x="35.5094%" y="597" width="0.0294%" height="15" fill="rgb(223,88,40)" fg:x="51974" fg:w="43"/><text x="35.7594%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (43 samples, 0.03%)</title><rect x="35.5094%" y="581" width="0.0294%" height="15" fill="rgb(237,54,19)" fg:x="51974" fg:w="43"/><text x="35.7594%" y="591.50"></text></g><g><title>Parse::do_call (43 samples, 0.03%)</title><rect x="35.5094%" y="565" width="0.0294%" height="15" fill="rgb(251,129,25)" fg:x="51974" fg:w="43"/><text x="35.7594%" y="575.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.03%)</title><rect x="35.5094%" y="741" width="0.0301%" height="15" fill="rgb(238,97,19)" fg:x="51974" fg:w="44"/><text x="35.7594%" y="751.50"></text></g><g><title>Parse::Parse (44 samples, 0.03%)</title><rect x="35.5094%" y="725" width="0.0301%" height="15" fill="rgb(240,169,18)" fg:x="51974" fg:w="44"/><text x="35.7594%" y="735.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.03%)</title><rect x="35.5094%" y="709" width="0.0301%" height="15" fill="rgb(230,187,49)" fg:x="51974" fg:w="44"/><text x="35.7594%" y="719.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.03%)</title><rect x="35.5094%" y="693" width="0.0301%" height="15" fill="rgb(209,44,26)" fg:x="51974" fg:w="44"/><text x="35.7594%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.03%)</title><rect x="35.5094%" y="677" width="0.0301%" height="15" fill="rgb(244,0,6)" fg:x="51974" fg:w="44"/><text x="35.7594%" y="687.50"></text></g><g><title>Parse::do_call (44 samples, 0.03%)</title><rect x="35.5094%" y="661" width="0.0301%" height="15" fill="rgb(248,18,21)" fg:x="51974" fg:w="44"/><text x="35.7594%" y="671.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.03%)</title><rect x="35.5094%" y="837" width="0.0328%" height="15" fill="rgb(245,180,19)" fg:x="51974" fg:w="48"/><text x="35.7594%" y="847.50"></text></g><g><title>Parse::Parse (48 samples, 0.03%)</title><rect x="35.5094%" y="821" width="0.0328%" height="15" fill="rgb(252,118,36)" fg:x="51974" fg:w="48"/><text x="35.7594%" y="831.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.03%)</title><rect x="35.5094%" y="805" width="0.0328%" height="15" fill="rgb(210,224,19)" fg:x="51974" fg:w="48"/><text x="35.7594%" y="815.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.03%)</title><rect x="35.5094%" y="789" width="0.0328%" height="15" fill="rgb(218,30,24)" fg:x="51974" fg:w="48"/><text x="35.7594%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.03%)</title><rect x="35.5094%" y="773" width="0.0328%" height="15" fill="rgb(219,75,50)" fg:x="51974" fg:w="48"/><text x="35.7594%" y="783.50"></text></g><g><title>Parse::do_call (48 samples, 0.03%)</title><rect x="35.5094%" y="757" width="0.0328%" height="15" fill="rgb(234,72,50)" fg:x="51974" fg:w="48"/><text x="35.7594%" y="767.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.04%)</title><rect x="35.5094%" y="933" width="0.0376%" height="15" fill="rgb(219,100,48)" fg:x="51974" fg:w="55"/><text x="35.7594%" y="943.50"></text></g><g><title>Parse::Parse (55 samples, 0.04%)</title><rect x="35.5094%" y="917" width="0.0376%" height="15" fill="rgb(253,5,41)" fg:x="51974" fg:w="55"/><text x="35.7594%" y="927.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.04%)</title><rect x="35.5094%" y="901" width="0.0376%" height="15" fill="rgb(247,181,11)" fg:x="51974" fg:w="55"/><text x="35.7594%" y="911.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.04%)</title><rect x="35.5094%" y="885" width="0.0376%" height="15" fill="rgb(222,223,25)" fg:x="51974" fg:w="55"/><text x="35.7594%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.04%)</title><rect x="35.5094%" y="869" width="0.0376%" height="15" fill="rgb(214,198,28)" fg:x="51974" fg:w="55"/><text x="35.7594%" y="879.50"></text></g><g><title>Parse::do_call (55 samples, 0.04%)</title><rect x="35.5094%" y="853" width="0.0376%" height="15" fill="rgb(230,46,43)" fg:x="51974" fg:w="55"/><text x="35.7594%" y="863.50"></text></g><g><title>Parse::do_call (61 samples, 0.04%)</title><rect x="35.5094%" y="949" width="0.0417%" height="15" fill="rgb(233,65,53)" fg:x="51974" fg:w="61"/><text x="35.7594%" y="959.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="35.5531%" y="245" width="0.0116%" height="15" fill="rgb(221,121,27)" fg:x="52038" fg:w="17"/><text x="35.8031%" y="255.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="35.5538%" y="229" width="0.0109%" height="15" fill="rgb(247,70,47)" fg:x="52039" fg:w="16"/><text x="35.8038%" y="239.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="35.5538%" y="213" width="0.0109%" height="15" fill="rgb(228,85,35)" fg:x="52039" fg:w="16"/><text x="35.8038%" y="223.50"></text></g><g><title>Parse::do_all_blocks (15 samples, 0.01%)</title><rect x="35.5545%" y="197" width="0.0102%" height="15" fill="rgb(209,50,18)" fg:x="52040" fg:w="15"/><text x="35.8045%" y="207.50"></text></g><g><title>Parse::do_one_block (15 samples, 0.01%)</title><rect x="35.5545%" y="181" width="0.0102%" height="15" fill="rgb(250,19,35)" fg:x="52040" fg:w="15"/><text x="35.8045%" y="191.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.02%)</title><rect x="35.5517%" y="421" width="0.0150%" height="15" fill="rgb(253,107,29)" fg:x="52036" fg:w="22"/><text x="35.8017%" y="431.50"></text></g><g><title>Parse::Parse (22 samples, 0.02%)</title><rect x="35.5517%" y="405" width="0.0150%" height="15" fill="rgb(252,179,29)" fg:x="52036" fg:w="22"/><text x="35.8017%" y="415.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.02%)</title><rect x="35.5517%" y="389" width="0.0150%" height="15" fill="rgb(238,194,6)" fg:x="52036" fg:w="22"/><text x="35.8017%" y="399.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.02%)</title><rect x="35.5517%" y="373" width="0.0150%" height="15" fill="rgb(238,164,29)" fg:x="52036" fg:w="22"/><text x="35.8017%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.02%)</title><rect x="35.5517%" y="357" width="0.0150%" height="15" fill="rgb(224,25,9)" fg:x="52036" fg:w="22"/><text x="35.8017%" y="367.50"></text></g><g><title>Parse::do_call (22 samples, 0.02%)</title><rect x="35.5517%" y="341" width="0.0150%" height="15" fill="rgb(244,153,23)" fg:x="52036" fg:w="22"/><text x="35.8017%" y="351.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="35.5524%" y="325" width="0.0143%" height="15" fill="rgb(212,203,14)" fg:x="52037" fg:w="21"/><text x="35.8024%" y="335.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="35.5524%" y="309" width="0.0143%" height="15" fill="rgb(220,164,20)" fg:x="52037" fg:w="21"/><text x="35.8024%" y="319.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="35.5524%" y="293" width="0.0143%" height="15" fill="rgb(222,203,48)" fg:x="52037" fg:w="21"/><text x="35.8024%" y="303.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="35.5524%" y="277" width="0.0143%" height="15" fill="rgb(215,159,22)" fg:x="52037" fg:w="21"/><text x="35.8024%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="35.5524%" y="261" width="0.0143%" height="15" fill="rgb(216,183,47)" fg:x="52037" fg:w="21"/><text x="35.8024%" y="271.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="35.5510%" y="901" width="0.0164%" height="15" fill="rgb(229,195,25)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="911.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="35.5510%" y="885" width="0.0164%" height="15" fill="rgb(224,132,51)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="895.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="35.5510%" y="869" width="0.0164%" height="15" fill="rgb(240,63,7)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="879.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="35.5510%" y="853" width="0.0164%" height="15" fill="rgb(249,182,41)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="35.5510%" y="837" width="0.0164%" height="15" fill="rgb(243,47,26)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="847.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="35.5510%" y="821" width="0.0164%" height="15" fill="rgb(233,48,2)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="831.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="35.5510%" y="805" width="0.0164%" height="15" fill="rgb(244,165,34)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="815.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="35.5510%" y="789" width="0.0164%" height="15" fill="rgb(207,89,7)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="799.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="35.5510%" y="773" width="0.0164%" height="15" fill="rgb(244,117,36)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="783.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="35.5510%" y="757" width="0.0164%" height="15" fill="rgb(226,144,34)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="35.5510%" y="741" width="0.0164%" height="15" fill="rgb(213,23,19)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="751.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="35.5510%" y="725" width="0.0164%" height="15" fill="rgb(217,75,12)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="735.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="35.5510%" y="709" width="0.0164%" height="15" fill="rgb(224,159,17)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="719.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="35.5510%" y="693" width="0.0164%" height="15" fill="rgb(217,118,1)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="703.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="35.5510%" y="677" width="0.0164%" height="15" fill="rgb(232,180,48)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="687.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="35.5510%" y="661" width="0.0164%" height="15" fill="rgb(230,27,33)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="35.5510%" y="645" width="0.0164%" height="15" fill="rgb(205,31,21)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="655.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="35.5510%" y="629" width="0.0164%" height="15" fill="rgb(253,59,4)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="639.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="35.5510%" y="613" width="0.0164%" height="15" fill="rgb(224,201,9)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="623.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="35.5510%" y="597" width="0.0164%" height="15" fill="rgb(229,206,30)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="607.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="35.5510%" y="581" width="0.0164%" height="15" fill="rgb(212,67,47)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="591.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="35.5510%" y="565" width="0.0164%" height="15" fill="rgb(211,96,50)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="35.5510%" y="549" width="0.0164%" height="15" fill="rgb(252,114,18)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="559.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="35.5510%" y="533" width="0.0164%" height="15" fill="rgb(223,58,37)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="543.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="35.5510%" y="517" width="0.0164%" height="15" fill="rgb(237,70,4)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="527.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="35.5510%" y="501" width="0.0164%" height="15" fill="rgb(244,85,46)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="511.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="35.5510%" y="485" width="0.0164%" height="15" fill="rgb(223,39,52)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="495.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="35.5510%" y="469" width="0.0164%" height="15" fill="rgb(218,200,14)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="35.5510%" y="453" width="0.0164%" height="15" fill="rgb(208,171,16)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="463.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="35.5510%" y="437" width="0.0164%" height="15" fill="rgb(234,200,18)" fg:x="52035" fg:w="24"/><text x="35.8010%" y="447.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="35.5510%" y="949" width="0.0171%" height="15" fill="rgb(228,45,11)" fg:x="52035" fg:w="25"/><text x="35.8010%" y="959.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="35.5510%" y="933" width="0.0171%" height="15" fill="rgb(237,182,11)" fg:x="52035" fg:w="25"/><text x="35.8010%" y="943.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="35.5510%" y="917" width="0.0171%" height="15" fill="rgb(241,175,49)" fg:x="52035" fg:w="25"/><text x="35.8010%" y="927.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="35.5695%" y="245" width="0.0109%" height="15" fill="rgb(247,38,35)" fg:x="52062" fg:w="16"/><text x="35.8195%" y="255.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="35.5695%" y="229" width="0.0109%" height="15" fill="rgb(228,39,49)" fg:x="52062" fg:w="16"/><text x="35.8195%" y="239.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="35.5695%" y="213" width="0.0109%" height="15" fill="rgb(226,101,26)" fg:x="52062" fg:w="16"/><text x="35.8195%" y="223.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="35.5695%" y="197" width="0.0109%" height="15" fill="rgb(206,141,19)" fg:x="52062" fg:w="16"/><text x="35.8195%" y="207.50"></text></g><g><title>Parse::do_one_bytecode (15 samples, 0.01%)</title><rect x="35.5702%" y="181" width="0.0102%" height="15" fill="rgb(211,200,13)" fg:x="52063" fg:w="15"/><text x="35.8202%" y="191.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="35.5695%" y="261" width="0.0116%" height="15" fill="rgb(241,121,6)" fg:x="52062" fg:w="17"/><text x="35.8195%" y="271.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="35.5681%" y="437" width="0.0143%" height="15" fill="rgb(234,221,29)" fg:x="52060" fg:w="21"/><text x="35.8181%" y="447.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="35.5681%" y="421" width="0.0143%" height="15" fill="rgb(229,136,5)" fg:x="52060" fg:w="21"/><text x="35.8181%" y="431.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="35.5681%" y="405" width="0.0143%" height="15" fill="rgb(238,36,11)" fg:x="52060" fg:w="21"/><text x="35.8181%" y="415.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="35.5681%" y="389" width="0.0143%" height="15" fill="rgb(251,55,41)" fg:x="52060" fg:w="21"/><text x="35.8181%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="35.5681%" y="373" width="0.0143%" height="15" fill="rgb(242,34,40)" fg:x="52060" fg:w="21"/><text x="35.8181%" y="383.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="35.5681%" y="357" width="0.0143%" height="15" fill="rgb(215,42,17)" fg:x="52060" fg:w="21"/><text x="35.8181%" y="367.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="35.5688%" y="341" width="0.0137%" height="15" fill="rgb(207,44,46)" fg:x="52061" fg:w="20"/><text x="35.8188%" y="351.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="35.5688%" y="325" width="0.0137%" height="15" fill="rgb(211,206,28)" fg:x="52061" fg:w="20"/><text x="35.8188%" y="335.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="35.5688%" y="309" width="0.0137%" height="15" fill="rgb(237,167,16)" fg:x="52061" fg:w="20"/><text x="35.8188%" y="319.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="35.5688%" y="293" width="0.0137%" height="15" fill="rgb(233,66,6)" fg:x="52061" fg:w="20"/><text x="35.8188%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="35.5688%" y="277" width="0.0137%" height="15" fill="rgb(246,123,29)" fg:x="52061" fg:w="20"/><text x="35.8188%" y="287.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.02%)</title><rect x="35.5681%" y="533" width="0.0150%" height="15" fill="rgb(209,62,40)" fg:x="52060" fg:w="22"/><text x="35.8181%" y="543.50"></text></g><g><title>Parse::Parse (22 samples, 0.02%)</title><rect x="35.5681%" y="517" width="0.0150%" height="15" fill="rgb(218,4,25)" fg:x="52060" fg:w="22"/><text x="35.8181%" y="527.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.02%)</title><rect x="35.5681%" y="501" width="0.0150%" height="15" fill="rgb(253,91,49)" fg:x="52060" fg:w="22"/><text x="35.8181%" y="511.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.02%)</title><rect x="35.5681%" y="485" width="0.0150%" height="15" fill="rgb(228,155,29)" fg:x="52060" fg:w="22"/><text x="35.8181%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.02%)</title><rect x="35.5681%" y="469" width="0.0150%" height="15" fill="rgb(243,57,37)" fg:x="52060" fg:w="22"/><text x="35.8181%" y="479.50"></text></g><g><title>Parse::do_call (22 samples, 0.02%)</title><rect x="35.5681%" y="453" width="0.0150%" height="15" fill="rgb(244,167,17)" fg:x="52060" fg:w="22"/><text x="35.8181%" y="463.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="35.5681%" y="629" width="0.0164%" height="15" fill="rgb(207,181,38)" fg:x="52060" fg:w="24"/><text x="35.8181%" y="639.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="35.5681%" y="613" width="0.0164%" height="15" fill="rgb(211,8,23)" fg:x="52060" fg:w="24"/><text x="35.8181%" y="623.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="35.5681%" y="597" width="0.0164%" height="15" fill="rgb(235,11,44)" fg:x="52060" fg:w="24"/><text x="35.8181%" y="607.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="35.5681%" y="581" width="0.0164%" height="15" fill="rgb(248,18,52)" fg:x="52060" fg:w="24"/><text x="35.8181%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="35.5681%" y="565" width="0.0164%" height="15" fill="rgb(208,4,7)" fg:x="52060" fg:w="24"/><text x="35.8181%" y="575.50"></text></g><g><title>Parse::do_call (24 samples, 0.02%)</title><rect x="35.5681%" y="549" width="0.0164%" height="15" fill="rgb(240,17,39)" fg:x="52060" fg:w="24"/><text x="35.8181%" y="559.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="35.5681%" y="917" width="0.0198%" height="15" fill="rgb(207,170,3)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="927.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="35.5681%" y="901" width="0.0198%" height="15" fill="rgb(236,100,52)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="911.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.02%)</title><rect x="35.5681%" y="885" width="0.0198%" height="15" fill="rgb(246,78,51)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="895.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.02%)</title><rect x="35.5681%" y="869" width="0.0198%" height="15" fill="rgb(211,17,15)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.02%)</title><rect x="35.5681%" y="853" width="0.0198%" height="15" fill="rgb(209,59,46)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="863.50"></text></g><g><title>Parse::do_call (29 samples, 0.02%)</title><rect x="35.5681%" y="837" width="0.0198%" height="15" fill="rgb(210,92,25)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="847.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="35.5681%" y="821" width="0.0198%" height="15" fill="rgb(238,174,52)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="831.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="35.5681%" y="805" width="0.0198%" height="15" fill="rgb(230,73,7)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="815.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.02%)</title><rect x="35.5681%" y="789" width="0.0198%" height="15" fill="rgb(243,124,40)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="799.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.02%)</title><rect x="35.5681%" y="773" width="0.0198%" height="15" fill="rgb(244,170,11)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.02%)</title><rect x="35.5681%" y="757" width="0.0198%" height="15" fill="rgb(207,114,54)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="767.50"></text></g><g><title>Parse::do_call (29 samples, 0.02%)</title><rect x="35.5681%" y="741" width="0.0198%" height="15" fill="rgb(205,42,20)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="751.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="35.5681%" y="725" width="0.0198%" height="15" fill="rgb(230,30,28)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="735.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="35.5681%" y="709" width="0.0198%" height="15" fill="rgb(205,73,54)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="719.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.02%)</title><rect x="35.5681%" y="693" width="0.0198%" height="15" fill="rgb(254,227,23)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="703.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.02%)</title><rect x="35.5681%" y="677" width="0.0198%" height="15" fill="rgb(228,202,34)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.02%)</title><rect x="35.5681%" y="661" width="0.0198%" height="15" fill="rgb(222,225,37)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="671.50"></text></g><g><title>Parse::do_call (29 samples, 0.02%)</title><rect x="35.5681%" y="645" width="0.0198%" height="15" fill="rgb(221,14,54)" fg:x="52060" fg:w="29"/><text x="35.8181%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="35.5681%" y="949" width="0.0212%" height="15" fill="rgb(254,102,2)" fg:x="52060" fg:w="31"/><text x="35.8181%" y="959.50"></text></g><g><title>Parse::do_call (31 samples, 0.02%)</title><rect x="35.5681%" y="933" width="0.0212%" height="15" fill="rgb(232,104,17)" fg:x="52060" fg:w="31"/><text x="35.8181%" y="943.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="35.6105%" y="181" width="0.0164%" height="15" fill="rgb(250,220,14)" fg:x="52122" fg:w="24"/><text x="35.8605%" y="191.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="35.6112%" y="165" width="0.0157%" height="15" fill="rgb(241,158,9)" fg:x="52123" fg:w="23"/><text x="35.8612%" y="175.50"></text></g><g><title>Parse::do_call (42 samples, 0.03%)</title><rect x="35.5989%" y="197" width="0.0287%" height="15" fill="rgb(246,9,43)" fg:x="52105" fg:w="42"/><text x="35.8489%" y="207.50"></text></g><g><title>ParseGenerator::generate (60 samples, 0.04%)</title><rect x="35.5961%" y="277" width="0.0410%" height="15" fill="rgb(206,73,33)" fg:x="52101" fg:w="60"/><text x="35.8461%" y="287.50"></text></g><g><title>Parse::Parse (60 samples, 0.04%)</title><rect x="35.5961%" y="261" width="0.0410%" height="15" fill="rgb(222,79,8)" fg:x="52101" fg:w="60"/><text x="35.8461%" y="271.50"></text></g><g><title>Parse::do_all_blocks (60 samples, 0.04%)</title><rect x="35.5961%" y="245" width="0.0410%" height="15" fill="rgb(234,8,54)" fg:x="52101" fg:w="60"/><text x="35.8461%" y="255.50"></text></g><g><title>Parse::do_one_block (60 samples, 0.04%)</title><rect x="35.5961%" y="229" width="0.0410%" height="15" fill="rgb(209,134,38)" fg:x="52101" fg:w="60"/><text x="35.8461%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (60 samples, 0.04%)</title><rect x="35.5961%" y="213" width="0.0410%" height="15" fill="rgb(230,127,29)" fg:x="52101" fg:w="60"/><text x="35.8461%" y="223.50"></text></g><g><title>Parse::do_call (67 samples, 0.05%)</title><rect x="35.5920%" y="293" width="0.0458%" height="15" fill="rgb(242,44,41)" fg:x="52095" fg:w="67"/><text x="35.8420%" y="303.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.05%)</title><rect x="35.5920%" y="373" width="0.0465%" height="15" fill="rgb(222,56,43)" fg:x="52095" fg:w="68"/><text x="35.8420%" y="383.50"></text></g><g><title>Parse::Parse (68 samples, 0.05%)</title><rect x="35.5920%" y="357" width="0.0465%" height="15" fill="rgb(238,39,47)" fg:x="52095" fg:w="68"/><text x="35.8420%" y="367.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.05%)</title><rect x="35.5920%" y="341" width="0.0465%" height="15" fill="rgb(226,79,43)" fg:x="52095" fg:w="68"/><text x="35.8420%" y="351.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.05%)</title><rect x="35.5920%" y="325" width="0.0465%" height="15" fill="rgb(242,105,53)" fg:x="52095" fg:w="68"/><text x="35.8420%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.05%)</title><rect x="35.5920%" y="309" width="0.0465%" height="15" fill="rgb(251,132,46)" fg:x="52095" fg:w="68"/><text x="35.8420%" y="319.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.05%)</title><rect x="35.5900%" y="469" width="0.0506%" height="15" fill="rgb(231,77,14)" fg:x="52092" fg:w="74"/><text x="35.8400%" y="479.50"></text></g><g><title>Parse::Parse (74 samples, 0.05%)</title><rect x="35.5900%" y="453" width="0.0506%" height="15" fill="rgb(240,135,9)" fg:x="52092" fg:w="74"/><text x="35.8400%" y="463.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.05%)</title><rect x="35.5900%" y="437" width="0.0506%" height="15" fill="rgb(248,109,14)" fg:x="52092" fg:w="74"/><text x="35.8400%" y="447.50"></text></g><g><title>Parse::do_one_block (74 samples, 0.05%)</title><rect x="35.5900%" y="421" width="0.0506%" height="15" fill="rgb(227,146,52)" fg:x="52092" fg:w="74"/><text x="35.8400%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (74 samples, 0.05%)</title><rect x="35.5900%" y="405" width="0.0506%" height="15" fill="rgb(232,54,3)" fg:x="52092" fg:w="74"/><text x="35.8400%" y="415.50"></text></g><g><title>Parse::do_call (74 samples, 0.05%)</title><rect x="35.5900%" y="389" width="0.0506%" height="15" fill="rgb(229,201,43)" fg:x="52092" fg:w="74"/><text x="35.8400%" y="399.50"></text></g><g><title>Parse::do_all_blocks (84 samples, 0.06%)</title><rect x="35.5893%" y="533" width="0.0574%" height="15" fill="rgb(252,161,33)" fg:x="52091" fg:w="84"/><text x="35.8393%" y="543.50"></text></g><g><title>Parse::do_one_block (84 samples, 0.06%)</title><rect x="35.5893%" y="517" width="0.0574%" height="15" fill="rgb(226,146,40)" fg:x="52091" fg:w="84"/><text x="35.8393%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (84 samples, 0.06%)</title><rect x="35.5893%" y="501" width="0.0574%" height="15" fill="rgb(219,47,25)" fg:x="52091" fg:w="84"/><text x="35.8393%" y="511.50"></text></g><g><title>Parse::do_call (84 samples, 0.06%)</title><rect x="35.5893%" y="485" width="0.0574%" height="15" fill="rgb(250,135,13)" fg:x="52091" fg:w="84"/><text x="35.8393%" y="495.50"></text></g><g><title>ParseGenerator::generate (85 samples, 0.06%)</title><rect x="35.5893%" y="565" width="0.0581%" height="15" fill="rgb(219,229,18)" fg:x="52091" fg:w="85"/><text x="35.8393%" y="575.50"></text></g><g><title>Parse::Parse (85 samples, 0.06%)</title><rect x="35.5893%" y="549" width="0.0581%" height="15" fill="rgb(217,152,27)" fg:x="52091" fg:w="85"/><text x="35.8393%" y="559.50"></text></g><g><title>ParseGenerator::generate (90 samples, 0.06%)</title><rect x="35.5893%" y="661" width="0.0615%" height="15" fill="rgb(225,71,47)" fg:x="52091" fg:w="90"/><text x="35.8393%" y="671.50"></text></g><g><title>Parse::Parse (90 samples, 0.06%)</title><rect x="35.5893%" y="645" width="0.0615%" height="15" fill="rgb(220,139,14)" fg:x="52091" fg:w="90"/><text x="35.8393%" y="655.50"></text></g><g><title>Parse::do_all_blocks (90 samples, 0.06%)</title><rect x="35.5893%" y="629" width="0.0615%" height="15" fill="rgb(247,54,32)" fg:x="52091" fg:w="90"/><text x="35.8393%" y="639.50"></text></g><g><title>Parse::do_one_block (90 samples, 0.06%)</title><rect x="35.5893%" y="613" width="0.0615%" height="15" fill="rgb(252,131,39)" fg:x="52091" fg:w="90"/><text x="35.8393%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (90 samples, 0.06%)</title><rect x="35.5893%" y="597" width="0.0615%" height="15" fill="rgb(210,108,39)" fg:x="52091" fg:w="90"/><text x="35.8393%" y="607.50"></text></g><g><title>Parse::do_call (90 samples, 0.06%)</title><rect x="35.5893%" y="581" width="0.0615%" height="15" fill="rgb(205,23,29)" fg:x="52091" fg:w="90"/><text x="35.8393%" y="591.50"></text></g><g><title>ParseGenerator::generate (95 samples, 0.06%)</title><rect x="35.5893%" y="757" width="0.0649%" height="15" fill="rgb(246,139,46)" fg:x="52091" fg:w="95"/><text x="35.8393%" y="767.50"></text></g><g><title>Parse::Parse (95 samples, 0.06%)</title><rect x="35.5893%" y="741" width="0.0649%" height="15" fill="rgb(250,81,26)" fg:x="52091" fg:w="95"/><text x="35.8393%" y="751.50"></text></g><g><title>Parse::do_all_blocks (95 samples, 0.06%)</title><rect x="35.5893%" y="725" width="0.0649%" height="15" fill="rgb(214,104,7)" fg:x="52091" fg:w="95"/><text x="35.8393%" y="735.50"></text></g><g><title>Parse::do_one_block (95 samples, 0.06%)</title><rect x="35.5893%" y="709" width="0.0649%" height="15" fill="rgb(233,189,8)" fg:x="52091" fg:w="95"/><text x="35.8393%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (95 samples, 0.06%)</title><rect x="35.5893%" y="693" width="0.0649%" height="15" fill="rgb(228,141,17)" fg:x="52091" fg:w="95"/><text x="35.8393%" y="703.50"></text></g><g><title>Parse::do_call (95 samples, 0.06%)</title><rect x="35.5893%" y="677" width="0.0649%" height="15" fill="rgb(247,157,1)" fg:x="52091" fg:w="95"/><text x="35.8393%" y="687.50"></text></g><g><title>ParseGenerator::generate (103 samples, 0.07%)</title><rect x="35.5893%" y="853" width="0.0704%" height="15" fill="rgb(249,225,5)" fg:x="52091" fg:w="103"/><text x="35.8393%" y="863.50"></text></g><g><title>Parse::Parse (103 samples, 0.07%)</title><rect x="35.5893%" y="837" width="0.0704%" height="15" fill="rgb(242,55,13)" fg:x="52091" fg:w="103"/><text x="35.8393%" y="847.50"></text></g><g><title>Parse::do_all_blocks (103 samples, 0.07%)</title><rect x="35.5893%" y="821" width="0.0704%" height="15" fill="rgb(230,49,50)" fg:x="52091" fg:w="103"/><text x="35.8393%" y="831.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.07%)</title><rect x="35.5893%" y="805" width="0.0704%" height="15" fill="rgb(241,111,38)" fg:x="52091" fg:w="103"/><text x="35.8393%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.07%)</title><rect x="35.5893%" y="789" width="0.0704%" height="15" fill="rgb(252,155,4)" fg:x="52091" fg:w="103"/><text x="35.8393%" y="799.50"></text></g><g><title>Parse::do_call (103 samples, 0.07%)</title><rect x="35.5893%" y="773" width="0.0704%" height="15" fill="rgb(212,69,32)" fg:x="52091" fg:w="103"/><text x="35.8393%" y="783.50"></text></g><g><title>ParseGenerator::generate (112 samples, 0.08%)</title><rect x="35.5893%" y="949" width="0.0765%" height="15" fill="rgb(243,107,47)" fg:x="52091" fg:w="112"/><text x="35.8393%" y="959.50"></text></g><g><title>Parse::Parse (112 samples, 0.08%)</title><rect x="35.5893%" y="933" width="0.0765%" height="15" fill="rgb(247,130,12)" fg:x="52091" fg:w="112"/><text x="35.8393%" y="943.50"></text></g><g><title>Parse::do_all_blocks (112 samples, 0.08%)</title><rect x="35.5893%" y="917" width="0.0765%" height="15" fill="rgb(233,74,16)" fg:x="52091" fg:w="112"/><text x="35.8393%" y="927.50"></text></g><g><title>Parse::do_one_block (112 samples, 0.08%)</title><rect x="35.5893%" y="901" width="0.0765%" height="15" fill="rgb(208,58,18)" fg:x="52091" fg:w="112"/><text x="35.8393%" y="911.50"></text></g><g><title>Parse::do_one_bytecode (112 samples, 0.08%)</title><rect x="35.5893%" y="885" width="0.0765%" height="15" fill="rgb(242,225,1)" fg:x="52091" fg:w="112"/><text x="35.8393%" y="895.50"></text></g><g><title>Parse::do_call (112 samples, 0.08%)</title><rect x="35.5893%" y="869" width="0.0765%" height="15" fill="rgb(249,39,40)" fg:x="52091" fg:w="112"/><text x="35.8393%" y="879.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="35.6925%" y="805" width="0.0116%" height="15" fill="rgb(207,72,44)" fg:x="52242" fg:w="17"/><text x="35.9425%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="35.6925%" y="789" width="0.0116%" height="15" fill="rgb(215,193,12)" fg:x="52242" fg:w="17"/><text x="35.9425%" y="799.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="35.6911%" y="821" width="0.0184%" height="15" fill="rgb(248,41,39)" fg:x="52240" fg:w="27"/><text x="35.9411%" y="831.50"></text></g><g><title>ParseGenerator::generate (40 samples, 0.03%)</title><rect x="35.6870%" y="853" width="0.0273%" height="15" fill="rgb(253,85,4)" fg:x="52234" fg:w="40"/><text x="35.9370%" y="863.50"></text></g><g><title>Parse::Parse (40 samples, 0.03%)</title><rect x="35.6870%" y="837" width="0.0273%" height="15" fill="rgb(243,70,31)" fg:x="52234" fg:w="40"/><text x="35.9370%" y="847.50"></text></g><g><title>Thread::call_run (62 samples, 0.04%)</title><rect x="35.6822%" y="949" width="0.0424%" height="15" fill="rgb(253,195,26)" fg:x="52227" fg:w="62"/><text x="35.9322%" y="959.50"></text></g><g><title>JavaThread::thread_main_inner (62 samples, 0.04%)</title><rect x="35.6822%" y="933" width="0.0424%" height="15" fill="rgb(243,42,11)" fg:x="52227" fg:w="62"/><text x="35.9322%" y="943.50"></text></g><g><title>CompileBroker::compiler_thread_loop (62 samples, 0.04%)</title><rect x="35.6822%" y="917" width="0.0424%" height="15" fill="rgb(239,66,17)" fg:x="52227" fg:w="62"/><text x="35.9322%" y="927.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (62 samples, 0.04%)</title><rect x="35.6822%" y="901" width="0.0424%" height="15" fill="rgb(217,132,21)" fg:x="52227" fg:w="62"/><text x="35.9322%" y="911.50"></text></g><g><title>C2Compiler::compile_method (62 samples, 0.04%)</title><rect x="35.6822%" y="885" width="0.0424%" height="15" fill="rgb(252,202,21)" fg:x="52227" fg:w="62"/><text x="35.9322%" y="895.50"></text></g><g><title>Compile::Compile (62 samples, 0.04%)</title><rect x="35.6822%" y="869" width="0.0424%" height="15" fill="rgb(233,98,36)" fg:x="52227" fg:w="62"/><text x="35.9322%" y="879.50"></text></g><g><title>ciEnv::register_method (15 samples, 0.01%)</title><rect x="35.7143%" y="853" width="0.0102%" height="15" fill="rgb(216,153,54)" fg:x="52274" fg:w="15"/><text x="35.9643%" y="863.50"></text></g><g><title>_dl_update_slotinfo (37 samples, 0.03%)</title><rect x="35.7348%" y="949" width="0.0253%" height="15" fill="rgb(250,99,7)" fg:x="52304" fg:w="37"/><text x="35.9848%" y="959.50"></text></g><g><title>ParseGenerator::generate (15 samples, 0.01%)</title><rect x="35.7758%" y="821" width="0.0102%" height="15" fill="rgb(207,56,50)" fg:x="52364" fg:w="15"/><text x="36.0258%" y="831.50"></text></g><g><title>Parse::Parse (15 samples, 0.01%)</title><rect x="35.7758%" y="805" width="0.0102%" height="15" fill="rgb(244,61,34)" fg:x="52364" fg:w="15"/><text x="36.0258%" y="815.50"></text></g><g><title>start_thread (43 samples, 0.03%)</title><rect x="35.7663%" y="949" width="0.0294%" height="15" fill="rgb(241,50,38)" fg:x="52350" fg:w="43"/><text x="36.0163%" y="959.50"></text></g><g><title>thread_native_entry (43 samples, 0.03%)</title><rect x="35.7663%" y="933" width="0.0294%" height="15" fill="rgb(212,166,30)" fg:x="52350" fg:w="43"/><text x="36.0163%" y="943.50"></text></g><g><title>Thread::call_run (43 samples, 0.03%)</title><rect x="35.7663%" y="917" width="0.0294%" height="15" fill="rgb(249,127,32)" fg:x="52350" fg:w="43"/><text x="36.0163%" y="927.50"></text></g><g><title>JavaThread::thread_main_inner (43 samples, 0.03%)</title><rect x="35.7663%" y="901" width="0.0294%" height="15" fill="rgb(209,103,0)" fg:x="52350" fg:w="43"/><text x="36.0163%" y="911.50"></text></g><g><title>CompileBroker::compiler_thread_loop (43 samples, 0.03%)</title><rect x="35.7663%" y="885" width="0.0294%" height="15" fill="rgb(238,209,51)" fg:x="52350" fg:w="43"/><text x="36.0163%" y="895.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (43 samples, 0.03%)</title><rect x="35.7663%" y="869" width="0.0294%" height="15" fill="rgb(237,56,23)" fg:x="52350" fg:w="43"/><text x="36.0163%" y="879.50"></text></g><g><title>C2Compiler::compile_method (43 samples, 0.03%)</title><rect x="35.7663%" y="853" width="0.0294%" height="15" fill="rgb(215,153,46)" fg:x="52350" fg:w="43"/><text x="36.0163%" y="863.50"></text></g><g><title>Compile::Compile (43 samples, 0.03%)</title><rect x="35.7663%" y="837" width="0.0294%" height="15" fill="rgb(224,49,31)" fg:x="52350" fg:w="43"/><text x="36.0163%" y="847.50"></text></g><g><title>[unknown] (39,574 samples, 27.04%)</title><rect x="8.7663%" y="965" width="27.0375%" height="15" fill="rgb(250,18,42)" fg:x="12831" fg:w="39574"/><text x="9.0163%" y="975.50">[unknown]</text></g><g><title>Dict::Insert (40 samples, 0.03%)</title><rect x="35.8530%" y="789" width="0.0273%" height="15" fill="rgb(215,176,39)" fg:x="52477" fg:w="40"/><text x="36.1030%" y="799.50"></text></g><g><title>CompileWrapper::CompileWrapper (45 samples, 0.03%)</title><rect x="35.8517%" y="821" width="0.0307%" height="15" fill="rgb(223,77,29)" fg:x="52475" fg:w="45"/><text x="36.1017%" y="831.50"></text></g><g><title>Type::Initialize (44 samples, 0.03%)</title><rect x="35.8523%" y="805" width="0.0301%" height="15" fill="rgb(234,94,52)" fg:x="52476" fg:w="44"/><text x="36.1023%" y="815.50"></text></g><g><title>Compile::identify_useful_nodes (101 samples, 0.07%)</title><rect x="35.9002%" y="805" width="0.0690%" height="15" fill="rgb(220,154,50)" fg:x="52546" fg:w="101"/><text x="36.1502%" y="815.50"></text></g><g><title>Compile::remove_useless_nodes (114 samples, 0.08%)</title><rect x="35.9692%" y="805" width="0.0779%" height="15" fill="rgb(212,11,10)" fg:x="52647" fg:w="114"/><text x="36.2192%" y="815.50"></text></g><g><title>Compile::update_dead_node_list (15 samples, 0.01%)</title><rect x="36.0471%" y="805" width="0.0102%" height="15" fill="rgb(205,166,19)" fg:x="52761" fg:w="15"/><text x="36.2971%" y="815.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (257 samples, 0.18%)</title><rect x="35.8886%" y="821" width="0.1756%" height="15" fill="rgb(244,198,16)" fg:x="52529" fg:w="257"/><text x="36.1386%" y="831.50"></text></g><g><title>C2Compiler::compile_method (393 samples, 0.27%)</title><rect x="35.8182%" y="853" width="0.2685%" height="15" fill="rgb(219,69,12)" fg:x="52426" fg:w="393"/><text x="36.0682%" y="863.50"></text></g><g><title>Compile::Compile (386 samples, 0.26%)</title><rect x="35.8230%" y="837" width="0.2637%" height="15" fill="rgb(245,30,7)" fg:x="52433" fg:w="386"/><text x="36.0730%" y="847.50"></text></g><g><title>CompileTask::print (19 samples, 0.01%)</title><rect x="36.0983%" y="853" width="0.0130%" height="15" fill="rgb(218,221,48)" fg:x="52836" fg:w="19"/><text x="36.3483%" y="863.50"></text></g><g><title>ciMethod::ciMethod (15 samples, 0.01%)</title><rect x="36.1277%" y="805" width="0.0102%" height="15" fill="rgb(216,66,15)" fg:x="52879" fg:w="15"/><text x="36.3777%" y="815.50"></text></g><g><title>ciEnv::get_method_from_handle (17 samples, 0.01%)</title><rect x="36.1270%" y="853" width="0.0116%" height="15" fill="rgb(226,122,50)" fg:x="52878" fg:w="17"/><text x="36.3770%" y="863.50"></text></g><g><title>ciObjectFactory::get_metadata (17 samples, 0.01%)</title><rect x="36.1270%" y="837" width="0.0116%" height="15" fill="rgb(239,156,16)" fg:x="52878" fg:w="17"/><text x="36.3770%" y="847.50"></text></g><g><title>ciObjectFactory::create_new_metadata (16 samples, 0.01%)</title><rect x="36.1277%" y="821" width="0.0109%" height="15" fill="rgb(224,27,38)" fg:x="52879" fg:w="16"/><text x="36.3777%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (483 samples, 0.33%)</title><rect x="35.8168%" y="869" width="0.3300%" height="15" fill="rgb(224,39,27)" fg:x="52424" fg:w="483"/><text x="36.0668%" y="879.50"></text></g><g><title>__pthread_cond_signal (19 samples, 0.01%)</title><rect x="36.1680%" y="821" width="0.0130%" height="15" fill="rgb(215,92,29)" fg:x="52938" fg:w="19"/><text x="36.4180%" y="831.50"></text></g><g><title>futex_wake (19 samples, 0.01%)</title><rect x="36.1680%" y="805" width="0.0130%" height="15" fill="rgb(207,159,16)" fg:x="52938" fg:w="19"/><text x="36.4180%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="36.1680%" y="789" width="0.0130%" height="15" fill="rgb(238,163,47)" fg:x="52938" fg:w="19"/><text x="36.4180%" y="799.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="36.1680%" y="773" width="0.0130%" height="15" fill="rgb(219,91,49)" fg:x="52938" fg:w="19"/><text x="36.4180%" y="783.50"></text></g><g><title>__x64_sys_futex (19 samples, 0.01%)</title><rect x="36.1680%" y="757" width="0.0130%" height="15" fill="rgb(227,167,31)" fg:x="52938" fg:w="19"/><text x="36.4180%" y="767.50"></text></g><g><title>do_futex (18 samples, 0.01%)</title><rect x="36.1687%" y="741" width="0.0123%" height="15" fill="rgb(234,80,54)" fg:x="52939" fg:w="18"/><text x="36.4187%" y="751.50"></text></g><g><title>futex_wake (18 samples, 0.01%)</title><rect x="36.1687%" y="725" width="0.0123%" height="15" fill="rgb(212,114,2)" fg:x="52939" fg:w="18"/><text x="36.4187%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (94 samples, 0.06%)</title><rect x="36.2110%" y="613" width="0.0642%" height="15" fill="rgb(234,50,24)" fg:x="53001" fg:w="94"/><text x="36.4610%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (92 samples, 0.06%)</title><rect x="36.2124%" y="597" width="0.0629%" height="15" fill="rgb(221,68,8)" fg:x="53003" fg:w="92"/><text x="36.4624%" y="607.50"></text></g><g><title>native_write_msr (92 samples, 0.06%)</title><rect x="36.2124%" y="581" width="0.0629%" height="15" fill="rgb(254,180,31)" fg:x="53003" fg:w="92"/><text x="36.4624%" y="591.50"></text></g><g><title>finish_task_switch (104 samples, 0.07%)</title><rect x="36.2097%" y="629" width="0.0711%" height="15" fill="rgb(247,130,50)" fg:x="52999" fg:w="104"/><text x="36.4597%" y="639.50"></text></g><g><title>futex_wait_queue_me (148 samples, 0.10%)</title><rect x="36.1905%" y="677" width="0.1011%" height="15" fill="rgb(211,109,4)" fg:x="52971" fg:w="148"/><text x="36.4405%" y="687.50"></text></g><g><title>schedule (136 samples, 0.09%)</title><rect x="36.1987%" y="661" width="0.0929%" height="15" fill="rgb(238,50,21)" fg:x="52983" fg:w="136"/><text x="36.4487%" y="671.50"></text></g><g><title>__schedule (135 samples, 0.09%)</title><rect x="36.1994%" y="645" width="0.0922%" height="15" fill="rgb(225,57,45)" fg:x="52984" fg:w="135"/><text x="36.4494%" y="655.50"></text></g><g><title>do_futex (153 samples, 0.10%)</title><rect x="36.1899%" y="709" width="0.1045%" height="15" fill="rgb(209,196,50)" fg:x="52970" fg:w="153"/><text x="36.4399%" y="719.50"></text></g><g><title>futex_wait (153 samples, 0.10%)</title><rect x="36.1899%" y="693" width="0.1045%" height="15" fill="rgb(242,140,13)" fg:x="52970" fg:w="153"/><text x="36.4399%" y="703.50"></text></g><g><title>do_syscall_64 (154 samples, 0.11%)</title><rect x="36.1899%" y="741" width="0.1052%" height="15" fill="rgb(217,111,7)" fg:x="52970" fg:w="154"/><text x="36.4399%" y="751.50"></text></g><g><title>__x64_sys_futex (154 samples, 0.11%)</title><rect x="36.1899%" y="725" width="0.1052%" height="15" fill="rgb(253,193,51)" fg:x="52970" fg:w="154"/><text x="36.4399%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (156 samples, 0.11%)</title><rect x="36.1892%" y="757" width="0.1066%" height="15" fill="rgb(252,70,29)" fg:x="52969" fg:w="156"/><text x="36.4392%" y="767.50"></text></g><g><title>__pthread_cond_timedwait (164 samples, 0.11%)</title><rect x="36.1851%" y="805" width="0.1120%" height="15" fill="rgb(232,127,12)" fg:x="52963" fg:w="164"/><text x="36.4351%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (164 samples, 0.11%)</title><rect x="36.1851%" y="789" width="0.1120%" height="15" fill="rgb(211,180,21)" fg:x="52963" fg:w="164"/><text x="36.4351%" y="799.50"></text></g><g><title>futex_abstimed_wait_cancelable (163 samples, 0.11%)</title><rect x="36.1858%" y="773" width="0.1114%" height="15" fill="rgb(229,72,13)" fg:x="52964" fg:w="163"/><text x="36.4358%" y="783.50"></text></g><g><title>os::PlatformEvent::park (180 samples, 0.12%)</title><rect x="36.1810%" y="821" width="0.1230%" height="15" fill="rgb(240,211,49)" fg:x="52957" fg:w="180"/><text x="36.4310%" y="831.50"></text></g><g><title>Monitor::IWait (208 samples, 0.14%)</title><rect x="36.1625%" y="837" width="0.1421%" height="15" fill="rgb(219,149,40)" fg:x="52930" fg:w="208"/><text x="36.4125%" y="847.50"></text></g><g><title>Monitor::wait (222 samples, 0.15%)</title><rect x="36.1584%" y="853" width="0.1517%" height="15" fill="rgb(210,127,46)" fg:x="52924" fg:w="222"/><text x="36.4084%" y="863.50"></text></g><g><title>TieredThresholdPolicy::select_task (16 samples, 0.01%)</title><rect x="36.3101%" y="853" width="0.0109%" height="15" fill="rgb(220,106,7)" fg:x="53146" fg:w="16"/><text x="36.5601%" y="863.50"></text></g><g><title>CompileQueue::get (258 samples, 0.18%)</title><rect x="36.1502%" y="869" width="0.1763%" height="15" fill="rgb(249,31,22)" fg:x="52912" fg:w="258"/><text x="36.4002%" y="879.50"></text></g><g><title>CompileBroker::compiler_thread_loop (751 samples, 0.51%)</title><rect x="35.8148%" y="885" width="0.5131%" height="15" fill="rgb(253,1,49)" fg:x="52421" fg:w="751"/><text x="36.0648%" y="895.50"></text></g><g><title>Thread::call_run (753 samples, 0.51%)</title><rect x="35.8141%" y="917" width="0.5145%" height="15" fill="rgb(227,144,33)" fg:x="52420" fg:w="753"/><text x="36.0641%" y="927.50"></text></g><g><title>JavaThread::thread_main_inner (752 samples, 0.51%)</title><rect x="35.8148%" y="901" width="0.5138%" height="15" fill="rgb(249,163,44)" fg:x="52421" fg:w="752"/><text x="36.0648%" y="911.50"></text></g><g><title>__GI___clone (761 samples, 0.52%)</title><rect x="35.8093%" y="965" width="0.5199%" height="15" fill="rgb(234,15,39)" fg:x="52413" fg:w="761"/><text x="36.0593%" y="975.50"></text></g><g><title>start_thread (754 samples, 0.52%)</title><rect x="35.8141%" y="949" width="0.5151%" height="15" fill="rgb(207,66,16)" fg:x="52420" fg:w="754"/><text x="36.0641%" y="959.50"></text></g><g><title>thread_native_entry (754 samples, 0.52%)</title><rect x="35.8141%" y="933" width="0.5151%" height="15" fill="rgb(233,112,24)" fg:x="52420" fg:w="754"/><text x="36.0641%" y="943.50"></text></g><g><title>asm_exc_page_fault (46 samples, 0.03%)</title><rect x="36.3326%" y="965" width="0.0314%" height="15" fill="rgb(230,90,22)" fg:x="53179" fg:w="46"/><text x="36.5826%" y="975.50"></text></g><g><title>C2_CompilerThre (42,755 samples, 29.21%)</title><rect x="7.1806%" y="981" width="29.2108%" height="15" fill="rgb(229,61,13)" fg:x="10510" fg:w="42755"/><text x="7.4306%" y="991.50">C2_CompilerThre</text></g><g><title>[perf-270039.map] (66 samples, 0.05%)</title><rect x="36.3928%" y="965" width="0.0451%" height="15" fill="rgb(225,57,24)" fg:x="53267" fg:w="66"/><text x="36.6428%" y="975.50"></text></g><g><title>handleRead (15 samples, 0.01%)</title><rect x="36.4392%" y="933" width="0.0102%" height="15" fill="rgb(208,169,48)" fg:x="53335" fg:w="15"/><text x="36.6892%" y="943.50"></text></g><g><title>__libc_read (15 samples, 0.01%)</title><rect x="36.4392%" y="917" width="0.0102%" height="15" fill="rgb(244,218,51)" fg:x="53335" fg:w="15"/><text x="36.6892%" y="927.50"></text></g><g><title>__libc_read (15 samples, 0.01%)</title><rect x="36.4392%" y="901" width="0.0102%" height="15" fill="rgb(214,148,10)" fg:x="53335" fg:w="15"/><text x="36.6892%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="36.4392%" y="885" width="0.0102%" height="15" fill="rgb(225,174,27)" fg:x="53335" fg:w="15"/><text x="36.6892%" y="895.50"></text></g><g><title>Command-Accumul (91 samples, 0.06%)</title><rect x="36.3914%" y="981" width="0.0622%" height="15" fill="rgb(230,96,26)" fg:x="53265" fg:w="91"/><text x="36.6414%" y="991.50"></text></g><g><title>[unknown] (23 samples, 0.02%)</title><rect x="36.4379%" y="965" width="0.0157%" height="15" fill="rgb(232,10,30)" fg:x="53333" fg:w="23"/><text x="36.6879%" y="975.50"></text></g><g><title>readBytes (21 samples, 0.01%)</title><rect x="36.4392%" y="949" width="0.0143%" height="15" fill="rgb(222,8,50)" fg:x="53335" fg:w="21"/><text x="36.6892%" y="959.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="36.4597%" y="821" width="0.0102%" height="15" fill="rgb(213,81,27)" fg:x="53365" fg:w="15"/><text x="36.7097%" y="831.50"></text></g><g><title>__x64_sys_futex (15 samples, 0.01%)</title><rect x="36.4597%" y="805" width="0.0102%" height="15" fill="rgb(245,50,10)" fg:x="53365" fg:w="15"/><text x="36.7097%" y="815.50"></text></g><g><title>do_futex (15 samples, 0.01%)</title><rect x="36.4597%" y="789" width="0.0102%" height="15" fill="rgb(216,100,18)" fg:x="53365" fg:w="15"/><text x="36.7097%" y="799.50"></text></g><g><title>futex_wait (15 samples, 0.01%)</title><rect x="36.4597%" y="773" width="0.0102%" height="15" fill="rgb(236,147,54)" fg:x="53365" fg:w="15"/><text x="36.7097%" y="783.50"></text></g><g><title>JVM_MonitorWait (17 samples, 0.01%)</title><rect x="36.4590%" y="949" width="0.0116%" height="15" fill="rgb(205,143,26)" fg:x="53364" fg:w="17"/><text x="36.7090%" y="959.50"></text></g><g><title>ObjectSynchronizer::wait (17 samples, 0.01%)</title><rect x="36.4590%" y="933" width="0.0116%" height="15" fill="rgb(236,26,9)" fg:x="53364" fg:w="17"/><text x="36.7090%" y="943.50"></text></g><g><title>ObjectMonitor::wait (17 samples, 0.01%)</title><rect x="36.4590%" y="917" width="0.0116%" height="15" fill="rgb(221,165,53)" fg:x="53364" fg:w="17"/><text x="36.7090%" y="927.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="36.4597%" y="901" width="0.0109%" height="15" fill="rgb(214,110,17)" fg:x="53365" fg:w="16"/><text x="36.7097%" y="911.50"></text></g><g><title>__pthread_cond_timedwait (16 samples, 0.01%)</title><rect x="36.4597%" y="885" width="0.0109%" height="15" fill="rgb(237,197,12)" fg:x="53365" fg:w="16"/><text x="36.7097%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="36.4597%" y="869" width="0.0109%" height="15" fill="rgb(205,84,17)" fg:x="53365" fg:w="16"/><text x="36.7097%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (16 samples, 0.01%)</title><rect x="36.4597%" y="853" width="0.0109%" height="15" fill="rgb(237,18,45)" fg:x="53365" fg:w="16"/><text x="36.7097%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="36.4597%" y="837" width="0.0109%" height="15" fill="rgb(221,87,14)" fg:x="53365" fg:w="16"/><text x="36.7097%" y="847.50"></text></g><g><title>Common-Cleaner (36 samples, 0.02%)</title><rect x="36.4536%" y="981" width="0.0246%" height="15" fill="rgb(238,186,15)" fg:x="53356" fg:w="36"/><text x="36.7036%" y="991.50"></text></g><g><title>[perf-270039.map] (36 samples, 0.02%)</title><rect x="36.4536%" y="965" width="0.0246%" height="15" fill="rgb(208,115,11)" fg:x="53356" fg:w="36"/><text x="36.7036%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.03%)</title><rect x="36.8382%" y="725" width="0.0335%" height="15" fill="rgb(254,175,0)" fg:x="53919" fg:w="49"/><text x="37.0882%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.03%)</title><rect x="36.8403%" y="709" width="0.0314%" height="15" fill="rgb(227,24,42)" fg:x="53922" fg:w="46"/><text x="37.0903%" y="719.50"></text></g><g><title>native_write_msr (46 samples, 0.03%)</title><rect x="36.8403%" y="693" width="0.0314%" height="15" fill="rgb(223,211,37)" fg:x="53922" fg:w="46"/><text x="37.0903%" y="703.50"></text></g><g><title>finish_task_switch (55 samples, 0.04%)</title><rect x="36.8348%" y="741" width="0.0376%" height="15" fill="rgb(235,49,27)" fg:x="53914" fg:w="55"/><text x="37.0848%" y="751.50"></text></g><g><title>futex_wait_queue_me (106 samples, 0.07%)</title><rect x="36.8123%" y="789" width="0.0724%" height="15" fill="rgb(254,97,51)" fg:x="53881" fg:w="106"/><text x="37.0623%" y="799.50"></text></g><g><title>schedule (93 samples, 0.06%)</title><rect x="36.8211%" y="773" width="0.0635%" height="15" fill="rgb(249,51,40)" fg:x="53894" fg:w="93"/><text x="37.0711%" y="783.50"></text></g><g><title>__schedule (93 samples, 0.06%)</title><rect x="36.8211%" y="757" width="0.0635%" height="15" fill="rgb(210,128,45)" fg:x="53894" fg:w="93"/><text x="37.0711%" y="767.50"></text></g><g><title>__x64_sys_futex (119 samples, 0.08%)</title><rect x="36.8102%" y="837" width="0.0813%" height="15" fill="rgb(224,137,50)" fg:x="53878" fg:w="119"/><text x="37.0602%" y="847.50"></text></g><g><title>do_futex (118 samples, 0.08%)</title><rect x="36.8109%" y="821" width="0.0806%" height="15" fill="rgb(242,15,9)" fg:x="53879" fg:w="118"/><text x="37.0609%" y="831.50"></text></g><g><title>futex_wait (117 samples, 0.08%)</title><rect x="36.8116%" y="805" width="0.0799%" height="15" fill="rgb(233,187,41)" fg:x="53880" fg:w="117"/><text x="37.0616%" y="815.50"></text></g><g><title>do_syscall_64 (121 samples, 0.08%)</title><rect x="36.8095%" y="853" width="0.0827%" height="15" fill="rgb(227,2,29)" fg:x="53877" fg:w="121"/><text x="37.0595%" y="863.50"></text></g><g><title>__pthread_cond_timedwait (136 samples, 0.09%)</title><rect x="36.8013%" y="917" width="0.0929%" height="15" fill="rgb(222,70,3)" fg:x="53865" fg:w="136"/><text x="37.0513%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (136 samples, 0.09%)</title><rect x="36.8013%" y="901" width="0.0929%" height="15" fill="rgb(213,11,42)" fg:x="53865" fg:w="136"/><text x="37.0513%" y="911.50"></text></g><g><title>futex_abstimed_wait_cancelable (132 samples, 0.09%)</title><rect x="36.8041%" y="885" width="0.0902%" height="15" fill="rgb(225,150,9)" fg:x="53869" fg:w="132"/><text x="37.0541%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (125 samples, 0.09%)</title><rect x="36.8088%" y="869" width="0.0854%" height="15" fill="rgb(230,162,45)" fg:x="53876" fg:w="125"/><text x="37.0588%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.02%)</title><rect x="36.9004%" y="725" width="0.0205%" height="15" fill="rgb(222,14,52)" fg:x="54010" fg:w="30"/><text x="37.1504%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="36.9018%" y="709" width="0.0191%" height="15" fill="rgb(254,198,14)" fg:x="54012" fg:w="28"/><text x="37.1518%" y="719.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="36.9018%" y="693" width="0.0191%" height="15" fill="rgb(220,217,30)" fg:x="54012" fg:w="28"/><text x="37.1518%" y="703.50"></text></g><g><title>finish_task_switch (32 samples, 0.02%)</title><rect x="36.8997%" y="741" width="0.0219%" height="15" fill="rgb(215,146,41)" fg:x="54009" fg:w="32"/><text x="37.1497%" y="751.50"></text></g><g><title>do_syscall_64 (41 samples, 0.03%)</title><rect x="36.8949%" y="853" width="0.0280%" height="15" fill="rgb(217,27,36)" fg:x="54002" fg:w="41"/><text x="37.1449%" y="863.50"></text></g><g><title>__x64_sys_futex (41 samples, 0.03%)</title><rect x="36.8949%" y="837" width="0.0280%" height="15" fill="rgb(219,218,39)" fg:x="54002" fg:w="41"/><text x="37.1449%" y="847.50"></text></g><g><title>do_futex (41 samples, 0.03%)</title><rect x="36.8949%" y="821" width="0.0280%" height="15" fill="rgb(219,4,42)" fg:x="54002" fg:w="41"/><text x="37.1449%" y="831.50"></text></g><g><title>futex_wait (41 samples, 0.03%)</title><rect x="36.8949%" y="805" width="0.0280%" height="15" fill="rgb(249,119,36)" fg:x="54002" fg:w="41"/><text x="37.1449%" y="815.50"></text></g><g><title>futex_wait_queue_me (41 samples, 0.03%)</title><rect x="36.8949%" y="789" width="0.0280%" height="15" fill="rgb(209,23,33)" fg:x="54002" fg:w="41"/><text x="37.1449%" y="799.50"></text></g><g><title>schedule (39 samples, 0.03%)</title><rect x="36.8963%" y="773" width="0.0266%" height="15" fill="rgb(211,10,0)" fg:x="54004" fg:w="39"/><text x="37.1463%" y="783.50"></text></g><g><title>__schedule (39 samples, 0.03%)</title><rect x="36.8963%" y="757" width="0.0266%" height="15" fill="rgb(208,99,37)" fg:x="54004" fg:w="39"/><text x="37.1463%" y="767.50"></text></g><g><title>__pthread_cond_wait (43 samples, 0.03%)</title><rect x="36.8942%" y="917" width="0.0294%" height="15" fill="rgb(213,132,31)" fg:x="54001" fg:w="43"/><text x="37.1442%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (43 samples, 0.03%)</title><rect x="36.8942%" y="901" width="0.0294%" height="15" fill="rgb(243,129,40)" fg:x="54001" fg:w="43"/><text x="37.1442%" y="911.50"></text></g><g><title>futex_wait_cancelable (43 samples, 0.03%)</title><rect x="36.8942%" y="885" width="0.0294%" height="15" fill="rgb(210,66,33)" fg:x="54001" fg:w="43"/><text x="37.1442%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (42 samples, 0.03%)</title><rect x="36.8949%" y="869" width="0.0287%" height="15" fill="rgb(209,189,4)" fg:x="54002" fg:w="42"/><text x="37.1449%" y="879.50"></text></g><g><title>Parker::park (209 samples, 0.14%)</title><rect x="36.7924%" y="933" width="0.1428%" height="15" fill="rgb(214,107,37)" fg:x="53852" fg:w="209"/><text x="37.0424%" y="943.50"></text></g><g><title>Unsafe_Park (217 samples, 0.15%)</title><rect x="36.7897%" y="949" width="0.1483%" height="15" fill="rgb(245,88,54)" fg:x="53848" fg:w="217"/><text x="37.0397%" y="959.50"></text></g><g><title>[perf-270039.map] (652 samples, 0.45%)</title><rect x="36.4952%" y="965" width="0.4455%" height="15" fill="rgb(205,146,20)" fg:x="53417" fg:w="652"/><text x="36.7452%" y="975.50"></text></g><g><title>[unknown] (21 samples, 0.01%)</title><rect x="36.9407%" y="965" width="0.0143%" height="15" fill="rgb(220,161,25)" fg:x="54069" fg:w="21"/><text x="37.1907%" y="975.50"></text></g><g><title>ForkJoinPool.co (695 samples, 0.47%)</title><rect x="36.4870%" y="981" width="0.4748%" height="15" fill="rgb(215,152,15)" fg:x="53405" fg:w="695"/><text x="36.7370%" y="991.50"></text></g><g><title>G1CMRootRegionScanTask::work (25 samples, 0.02%)</title><rect x="36.9667%" y="885" width="0.0171%" height="15" fill="rgb(233,192,44)" fg:x="54107" fg:w="25"/><text x="37.2167%" y="895.50"></text></g><g><title>G1ConcurrentMark::scan_root_region (25 samples, 0.02%)</title><rect x="36.9667%" y="869" width="0.0171%" height="15" fill="rgb(240,170,46)" fg:x="54107" fg:w="25"/><text x="37.2167%" y="879.50"></text></g><g><title>__GI___clone (38 samples, 0.03%)</title><rect x="36.9626%" y="965" width="0.0260%" height="15" fill="rgb(207,104,33)" fg:x="54101" fg:w="38"/><text x="37.2126%" y="975.50"></text></g><g><title>start_thread (38 samples, 0.03%)</title><rect x="36.9626%" y="949" width="0.0260%" height="15" fill="rgb(219,21,39)" fg:x="54101" fg:w="38"/><text x="37.2126%" y="959.50"></text></g><g><title>thread_native_entry (38 samples, 0.03%)</title><rect x="36.9626%" y="933" width="0.0260%" height="15" fill="rgb(214,133,29)" fg:x="54101" fg:w="38"/><text x="37.2126%" y="943.50"></text></g><g><title>Thread::call_run (38 samples, 0.03%)</title><rect x="36.9626%" y="917" width="0.0260%" height="15" fill="rgb(226,93,6)" fg:x="54101" fg:w="38"/><text x="37.2126%" y="927.50"></text></g><g><title>GangWorker::loop (38 samples, 0.03%)</title><rect x="36.9626%" y="901" width="0.0260%" height="15" fill="rgb(252,222,34)" fg:x="54101" fg:w="38"/><text x="37.2126%" y="911.50"></text></g><g><title>G1_Conc#0 (41 samples, 0.03%)</title><rect x="36.9619%" y="981" width="0.0280%" height="15" fill="rgb(252,92,48)" fg:x="54100" fg:w="41"/><text x="37.2119%" y="991.50"></text></g><g><title>G1CMRootRegionScanTask::work (21 samples, 0.01%)</title><rect x="36.9919%" y="885" width="0.0143%" height="15" fill="rgb(245,223,24)" fg:x="54144" fg:w="21"/><text x="37.2419%" y="895.50"></text></g><g><title>G1ConcurrentMark::scan_root_region (21 samples, 0.01%)</title><rect x="36.9919%" y="869" width="0.0143%" height="15" fill="rgb(205,176,3)" fg:x="54144" fg:w="21"/><text x="37.2419%" y="879.50"></text></g><g><title>__GI___clone (33 samples, 0.02%)</title><rect x="36.9913%" y="965" width="0.0225%" height="15" fill="rgb(235,151,15)" fg:x="54143" fg:w="33"/><text x="37.2413%" y="975.50"></text></g><g><title>start_thread (33 samples, 0.02%)</title><rect x="36.9913%" y="949" width="0.0225%" height="15" fill="rgb(237,209,11)" fg:x="54143" fg:w="33"/><text x="37.2413%" y="959.50"></text></g><g><title>thread_native_entry (33 samples, 0.02%)</title><rect x="36.9913%" y="933" width="0.0225%" height="15" fill="rgb(243,227,24)" fg:x="54143" fg:w="33"/><text x="37.2413%" y="943.50"></text></g><g><title>Thread::call_run (33 samples, 0.02%)</title><rect x="36.9913%" y="917" width="0.0225%" height="15" fill="rgb(239,193,16)" fg:x="54143" fg:w="33"/><text x="37.2413%" y="927.50"></text></g><g><title>GangWorker::loop (33 samples, 0.02%)</title><rect x="36.9913%" y="901" width="0.0225%" height="15" fill="rgb(231,27,9)" fg:x="54143" fg:w="33"/><text x="37.2413%" y="911.50"></text></g><g><title>G1_Conc#1 (36 samples, 0.02%)</title><rect x="36.9899%" y="981" width="0.0246%" height="15" fill="rgb(219,169,10)" fg:x="54141" fg:w="36"/><text x="37.2399%" y="991.50"></text></g><g><title>G1_Main_Marker (15 samples, 0.01%)</title><rect x="37.0145%" y="981" width="0.0102%" height="15" fill="rgb(244,229,43)" fg:x="54177" fg:w="15"/><text x="37.2645%" y="991.50"></text></g><g><title>__GI___clone (15 samples, 0.01%)</title><rect x="37.0145%" y="965" width="0.0102%" height="15" fill="rgb(254,38,20)" fg:x="54177" fg:w="15"/><text x="37.2645%" y="975.50"></text></g><g><title>start_thread (15 samples, 0.01%)</title><rect x="37.0145%" y="949" width="0.0102%" height="15" fill="rgb(250,47,30)" fg:x="54177" fg:w="15"/><text x="37.2645%" y="959.50"></text></g><g><title>thread_native_entry (15 samples, 0.01%)</title><rect x="37.0145%" y="933" width="0.0102%" height="15" fill="rgb(224,124,36)" fg:x="54177" fg:w="15"/><text x="37.2645%" y="943.50"></text></g><g><title>Thread::call_run (15 samples, 0.01%)</title><rect x="37.0145%" y="917" width="0.0102%" height="15" fill="rgb(246,68,51)" fg:x="54177" fg:w="15"/><text x="37.2645%" y="927.50"></text></g><g><title>ConcurrentGCThread::run (15 samples, 0.01%)</title><rect x="37.0145%" y="901" width="0.0102%" height="15" fill="rgb(253,43,49)" fg:x="54177" fg:w="15"/><text x="37.2645%" y="911.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (21 samples, 0.01%)</title><rect x="37.0323%" y="869" width="0.0143%" height="15" fill="rgb(219,54,36)" fg:x="54203" fg:w="21"/><text x="37.2823%" y="879.50"></text></g><g><title>G1RemSet::refine_card_concurrently (21 samples, 0.01%)</title><rect x="37.0323%" y="853" width="0.0143%" height="15" fill="rgb(227,133,34)" fg:x="54203" fg:w="21"/><text x="37.2823%" y="863.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (29 samples, 0.02%)</title><rect x="37.0323%" y="885" width="0.0198%" height="15" fill="rgb(247,227,15)" fg:x="54203" fg:w="29"/><text x="37.2823%" y="895.50"></text></g><g><title>G1_Refine#0 (48 samples, 0.03%)</title><rect x="37.0247%" y="981" width="0.0328%" height="15" fill="rgb(229,96,14)" fg:x="54192" fg:w="48"/><text x="37.2747%" y="991.50"></text></g><g><title>__GI___clone (45 samples, 0.03%)</title><rect x="37.0268%" y="965" width="0.0307%" height="15" fill="rgb(220,79,17)" fg:x="54195" fg:w="45"/><text x="37.2768%" y="975.50"></text></g><g><title>start_thread (38 samples, 0.03%)</title><rect x="37.0316%" y="949" width="0.0260%" height="15" fill="rgb(205,131,53)" fg:x="54202" fg:w="38"/><text x="37.2816%" y="959.50"></text></g><g><title>thread_native_entry (38 samples, 0.03%)</title><rect x="37.0316%" y="933" width="0.0260%" height="15" fill="rgb(209,50,29)" fg:x="54202" fg:w="38"/><text x="37.2816%" y="943.50"></text></g><g><title>Thread::call_run (37 samples, 0.03%)</title><rect x="37.0323%" y="917" width="0.0253%" height="15" fill="rgb(245,86,46)" fg:x="54203" fg:w="37"/><text x="37.2823%" y="927.50"></text></g><g><title>ConcurrentGCThread::run (37 samples, 0.03%)</title><rect x="37.0323%" y="901" width="0.0253%" height="15" fill="rgb(235,66,46)" fg:x="54203" fg:w="37"/><text x="37.2823%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="37.0630%" y="773" width="0.0150%" height="15" fill="rgb(232,148,31)" fg:x="54248" fg:w="22"/><text x="37.3130%" y="783.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="37.0630%" y="757" width="0.0150%" height="15" fill="rgb(217,149,8)" fg:x="54248" fg:w="22"/><text x="37.3130%" y="767.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.02%)</title><rect x="37.0630%" y="741" width="0.0150%" height="15" fill="rgb(209,183,11)" fg:x="54248" fg:w="22"/><text x="37.3130%" y="751.50"></text></g><g><title>do_futex (22 samples, 0.02%)</title><rect x="37.0630%" y="725" width="0.0150%" height="15" fill="rgb(208,55,20)" fg:x="54248" fg:w="22"/><text x="37.3130%" y="735.50"></text></g><g><title>futex_wait (22 samples, 0.02%)</title><rect x="37.0630%" y="709" width="0.0150%" height="15" fill="rgb(218,39,14)" fg:x="54248" fg:w="22"/><text x="37.3130%" y="719.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.01%)</title><rect x="37.0637%" y="693" width="0.0143%" height="15" fill="rgb(216,169,33)" fg:x="54249" fg:w="21"/><text x="37.3137%" y="703.50"></text></g><g><title>schedule (21 samples, 0.01%)</title><rect x="37.0637%" y="677" width="0.0143%" height="15" fill="rgb(233,80,24)" fg:x="54249" fg:w="21"/><text x="37.3137%" y="687.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="37.0637%" y="661" width="0.0143%" height="15" fill="rgb(213,179,31)" fg:x="54249" fg:w="21"/><text x="37.3137%" y="671.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="37.0650%" y="645" width="0.0130%" height="15" fill="rgb(209,19,5)" fg:x="54251" fg:w="19"/><text x="37.3150%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="37.0650%" y="629" width="0.0130%" height="15" fill="rgb(219,18,35)" fg:x="54251" fg:w="19"/><text x="37.3150%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="37.0650%" y="613" width="0.0130%" height="15" fill="rgb(209,169,16)" fg:x="54251" fg:w="19"/><text x="37.3150%" y="623.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="37.0650%" y="597" width="0.0130%" height="15" fill="rgb(245,90,51)" fg:x="54251" fg:w="19"/><text x="37.3150%" y="607.50"></text></g><g><title>Monitor::wait (23 samples, 0.02%)</title><rect x="37.0630%" y="869" width="0.0157%" height="15" fill="rgb(220,99,45)" fg:x="54248" fg:w="23"/><text x="37.3130%" y="879.50"></text></g><g><title>Monitor::IWait (23 samples, 0.02%)</title><rect x="37.0630%" y="853" width="0.0157%" height="15" fill="rgb(249,89,25)" fg:x="54248" fg:w="23"/><text x="37.3130%" y="863.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.02%)</title><rect x="37.0630%" y="837" width="0.0157%" height="15" fill="rgb(239,193,0)" fg:x="54248" fg:w="23"/><text x="37.3130%" y="847.50"></text></g><g><title>__pthread_cond_timedwait (23 samples, 0.02%)</title><rect x="37.0630%" y="821" width="0.0157%" height="15" fill="rgb(231,126,1)" fg:x="54248" fg:w="23"/><text x="37.3130%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.02%)</title><rect x="37.0630%" y="805" width="0.0157%" height="15" fill="rgb(243,166,3)" fg:x="54248" fg:w="23"/><text x="37.3130%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (23 samples, 0.02%)</title><rect x="37.0630%" y="789" width="0.0157%" height="15" fill="rgb(223,22,34)" fg:x="54248" fg:w="23"/><text x="37.3130%" y="799.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (30 samples, 0.02%)</title><rect x="37.0596%" y="885" width="0.0205%" height="15" fill="rgb(251,52,51)" fg:x="54243" fg:w="30"/><text x="37.3096%" y="895.50"></text></g><g><title>__GI___clone (38 samples, 0.03%)</title><rect x="37.0596%" y="965" width="0.0260%" height="15" fill="rgb(221,165,28)" fg:x="54243" fg:w="38"/><text x="37.3096%" y="975.50"></text></g><g><title>start_thread (38 samples, 0.03%)</title><rect x="37.0596%" y="949" width="0.0260%" height="15" fill="rgb(218,121,47)" fg:x="54243" fg:w="38"/><text x="37.3096%" y="959.50"></text></g><g><title>thread_native_entry (38 samples, 0.03%)</title><rect x="37.0596%" y="933" width="0.0260%" height="15" fill="rgb(209,120,9)" fg:x="54243" fg:w="38"/><text x="37.3096%" y="943.50"></text></g><g><title>Thread::call_run (38 samples, 0.03%)</title><rect x="37.0596%" y="917" width="0.0260%" height="15" fill="rgb(236,68,12)" fg:x="54243" fg:w="38"/><text x="37.3096%" y="927.50"></text></g><g><title>ConcurrentGCThread::run (38 samples, 0.03%)</title><rect x="37.0596%" y="901" width="0.0260%" height="15" fill="rgb(225,194,26)" fg:x="54243" fg:w="38"/><text x="37.3096%" y="911.50"></text></g><g><title>G1_Young_RemSet (39 samples, 0.03%)</title><rect x="37.0596%" y="981" width="0.0266%" height="15" fill="rgb(231,84,39)" fg:x="54243" fg:w="39"/><text x="37.3096%" y="991.50"></text></g><g><title>G1CMRemarkTask::work (16 samples, 0.01%)</title><rect x="37.0951%" y="885" width="0.0109%" height="15" fill="rgb(210,11,45)" fg:x="54295" fg:w="16"/><text x="37.3451%" y="895.50"></text></g><g><title>G1CMTask::do_marking_step (16 samples, 0.01%)</title><rect x="37.0951%" y="869" width="0.0109%" height="15" fill="rgb(224,54,52)" fg:x="54295" fg:w="16"/><text x="37.3451%" y="879.50"></text></g><g><title>SpinPause (16 samples, 0.01%)</title><rect x="37.0951%" y="853" width="0.0109%" height="15" fill="rgb(238,102,14)" fg:x="54295" fg:w="16"/><text x="37.3451%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="37.1238%" y="837" width="0.0198%" height="15" fill="rgb(243,160,52)" fg:x="54337" fg:w="29"/><text x="37.3738%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (50 samples, 0.03%)</title><rect x="37.1122%" y="853" width="0.0342%" height="15" fill="rgb(216,114,19)" fg:x="54320" fg:w="50"/><text x="37.3622%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (142 samples, 0.10%)</title><rect x="37.1067%" y="869" width="0.0970%" height="15" fill="rgb(244,166,37)" fg:x="54312" fg:w="142"/><text x="37.3567%" y="879.50"></text></g><g><title>SpinPause (76 samples, 0.05%)</title><rect x="37.1518%" y="853" width="0.0519%" height="15" fill="rgb(246,29,44)" fg:x="54378" fg:w="76"/><text x="37.4018%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (17 samples, 0.01%)</title><rect x="37.2037%" y="789" width="0.0116%" height="15" fill="rgb(215,56,53)" fg:x="54454" fg:w="17"/><text x="37.4537%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (18 samples, 0.01%)</title><rect x="37.2037%" y="869" width="0.0123%" height="15" fill="rgb(217,60,2)" fg:x="54454" fg:w="18"/><text x="37.4537%" y="879.50"></text></g><g><title>G1RemSet::update_rem_set (18 samples, 0.01%)</title><rect x="37.2037%" y="853" width="0.0123%" height="15" fill="rgb(207,26,24)" fg:x="54454" fg:w="18"/><text x="37.4537%" y="863.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (18 samples, 0.01%)</title><rect x="37.2037%" y="837" width="0.0123%" height="15" fill="rgb(252,210,15)" fg:x="54454" fg:w="18"/><text x="37.4537%" y="847.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (18 samples, 0.01%)</title><rect x="37.2037%" y="821" width="0.0123%" height="15" fill="rgb(253,209,26)" fg:x="54454" fg:w="18"/><text x="37.4537%" y="831.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (18 samples, 0.01%)</title><rect x="37.2037%" y="805" width="0.0123%" height="15" fill="rgb(238,170,14)" fg:x="54454" fg:w="18"/><text x="37.4537%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (25 samples, 0.02%)</title><rect x="37.2160%" y="869" width="0.0171%" height="15" fill="rgb(216,178,15)" fg:x="54472" fg:w="25"/><text x="37.4660%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (25 samples, 0.02%)</title><rect x="37.2160%" y="853" width="0.0171%" height="15" fill="rgb(250,197,2)" fg:x="54472" fg:w="25"/><text x="37.4660%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (25 samples, 0.02%)</title><rect x="37.2160%" y="837" width="0.0171%" height="15" fill="rgb(212,70,42)" fg:x="54472" fg:w="25"/><text x="37.4660%" y="847.50"></text></g><g><title>JNIHandleBlock::oops_do (19 samples, 0.01%)</title><rect x="37.2502%" y="789" width="0.0130%" height="15" fill="rgb(227,213,9)" fg:x="54522" fg:w="19"/><text x="37.5002%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (49 samples, 0.03%)</title><rect x="37.2345%" y="853" width="0.0335%" height="15" fill="rgb(245,99,25)" fg:x="54499" fg:w="49"/><text x="37.4845%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (49 samples, 0.03%)</title><rect x="37.2345%" y="837" width="0.0335%" height="15" fill="rgb(250,82,29)" fg:x="54499" fg:w="49"/><text x="37.4845%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (49 samples, 0.03%)</title><rect x="37.2345%" y="821" width="0.0335%" height="15" fill="rgb(241,226,54)" fg:x="54499" fg:w="49"/><text x="37.4845%" y="831.50"></text></g><g><title>JavaThread::oops_do (49 samples, 0.03%)</title><rect x="37.2345%" y="805" width="0.0335%" height="15" fill="rgb(221,99,41)" fg:x="54499" fg:w="49"/><text x="37.4845%" y="815.50"></text></g><g><title>G1ParTask::work (257 samples, 0.18%)</title><rect x="37.1067%" y="885" width="0.1756%" height="15" fill="rgb(213,90,21)" fg:x="54312" fg:w="257"/><text x="37.3567%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (72 samples, 0.05%)</title><rect x="37.2331%" y="869" width="0.0492%" height="15" fill="rgb(205,208,24)" fg:x="54497" fg:w="72"/><text x="37.4831%" y="879.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (15 samples, 0.01%)</title><rect x="37.2721%" y="853" width="0.0102%" height="15" fill="rgb(246,31,12)" fg:x="54554" fg:w="15"/><text x="37.5221%" y="863.50"></text></g><g><title>RefProcPhase2Task::work (16 samples, 0.01%)</title><rect x="37.2898%" y="869" width="0.0109%" height="15" fill="rgb(213,154,6)" fg:x="54580" fg:w="16"/><text x="37.5398%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (32 samples, 0.02%)</title><rect x="37.2898%" y="885" width="0.0219%" height="15" fill="rgb(222,163,29)" fg:x="54580" fg:w="32"/><text x="37.5398%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (16 samples, 0.01%)</title><rect x="37.3008%" y="869" width="0.0109%" height="15" fill="rgb(227,201,8)" fg:x="54596" fg:w="16"/><text x="37.5508%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (16 samples, 0.01%)</title><rect x="37.3008%" y="853" width="0.0109%" height="15" fill="rgb(233,9,32)" fg:x="54596" fg:w="16"/><text x="37.5508%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (16 samples, 0.01%)</title><rect x="37.3008%" y="837" width="0.0109%" height="15" fill="rgb(217,54,24)" fg:x="54596" fg:w="16"/><text x="37.5508%" y="847.50"></text></g><g><title>SpinPause (16 samples, 0.01%)</title><rect x="37.3008%" y="821" width="0.0109%" height="15" fill="rgb(235,192,0)" fg:x="54596" fg:w="16"/><text x="37.5508%" y="831.50"></text></g><g><title>ParallelSPCleanupTask::work (24 samples, 0.02%)</title><rect x="37.3137%" y="885" width="0.0164%" height="15" fill="rgb(235,45,9)" fg:x="54615" fg:w="24"/><text x="37.5637%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (21 samples, 0.01%)</title><rect x="37.3158%" y="869" width="0.0143%" height="15" fill="rgb(246,42,40)" fg:x="54618" fg:w="21"/><text x="37.5658%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.03%)</title><rect x="37.3383%" y="661" width="0.0321%" height="15" fill="rgb(248,111,24)" fg:x="54651" fg:w="47"/><text x="37.5883%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.03%)</title><rect x="37.3390%" y="645" width="0.0314%" height="15" fill="rgb(249,65,22)" fg:x="54652" fg:w="46"/><text x="37.5890%" y="655.50"></text></g><g><title>native_write_msr (46 samples, 0.03%)</title><rect x="37.3390%" y="629" width="0.0314%" height="15" fill="rgb(238,111,51)" fg:x="54652" fg:w="46"/><text x="37.5890%" y="639.50"></text></g><g><title>finish_task_switch (49 samples, 0.03%)</title><rect x="37.3383%" y="677" width="0.0335%" height="15" fill="rgb(250,118,22)" fg:x="54651" fg:w="49"/><text x="37.5883%" y="687.50"></text></g><g><title>futex_wait_queue_me (63 samples, 0.04%)</title><rect x="37.3329%" y="725" width="0.0430%" height="15" fill="rgb(234,84,26)" fg:x="54643" fg:w="63"/><text x="37.5829%" y="735.50"></text></g><g><title>schedule (60 samples, 0.04%)</title><rect x="37.3349%" y="709" width="0.0410%" height="15" fill="rgb(243,172,12)" fg:x="54646" fg:w="60"/><text x="37.5849%" y="719.50"></text></g><g><title>__schedule (59 samples, 0.04%)</title><rect x="37.3356%" y="693" width="0.0403%" height="15" fill="rgb(236,150,49)" fg:x="54647" fg:w="59"/><text x="37.5856%" y="703.50"></text></g><g><title>do_syscall_64 (64 samples, 0.04%)</title><rect x="37.3329%" y="789" width="0.0437%" height="15" fill="rgb(225,197,26)" fg:x="54643" fg:w="64"/><text x="37.5829%" y="799.50"></text></g><g><title>__x64_sys_futex (64 samples, 0.04%)</title><rect x="37.3329%" y="773" width="0.0437%" height="15" fill="rgb(214,17,42)" fg:x="54643" fg:w="64"/><text x="37.5829%" y="783.50"></text></g><g><title>do_futex (64 samples, 0.04%)</title><rect x="37.3329%" y="757" width="0.0437%" height="15" fill="rgb(224,165,40)" fg:x="54643" fg:w="64"/><text x="37.5829%" y="767.50"></text></g><g><title>futex_wait (64 samples, 0.04%)</title><rect x="37.3329%" y="741" width="0.0437%" height="15" fill="rgb(246,100,4)" fg:x="54643" fg:w="64"/><text x="37.5829%" y="751.50"></text></g><g><title>__GI___clone (414 samples, 0.28%)</title><rect x="37.0951%" y="965" width="0.2829%" height="15" fill="rgb(222,103,0)" fg:x="54295" fg:w="414"/><text x="37.3451%" y="975.50"></text></g><g><title>start_thread (414 samples, 0.28%)</title><rect x="37.0951%" y="949" width="0.2829%" height="15" fill="rgb(227,189,26)" fg:x="54295" fg:w="414"/><text x="37.3451%" y="959.50"></text></g><g><title>thread_native_entry (414 samples, 0.28%)</title><rect x="37.0951%" y="933" width="0.2829%" height="15" fill="rgb(214,202,17)" fg:x="54295" fg:w="414"/><text x="37.3451%" y="943.50"></text></g><g><title>Thread::call_run (414 samples, 0.28%)</title><rect x="37.0951%" y="917" width="0.2829%" height="15" fill="rgb(229,111,3)" fg:x="54295" fg:w="414"/><text x="37.3451%" y="927.50"></text></g><g><title>GangWorker::loop (414 samples, 0.28%)</title><rect x="37.0951%" y="901" width="0.2829%" height="15" fill="rgb(229,172,15)" fg:x="54295" fg:w="414"/><text x="37.3451%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (69 samples, 0.05%)</title><rect x="37.3308%" y="885" width="0.0471%" height="15" fill="rgb(230,224,35)" fg:x="54640" fg:w="69"/><text x="37.5808%" y="895.50"></text></g><g><title>PosixSemaphore::wait (69 samples, 0.05%)</title><rect x="37.3308%" y="869" width="0.0471%" height="15" fill="rgb(251,141,6)" fg:x="54640" fg:w="69"/><text x="37.5808%" y="879.50"></text></g><g><title>__new_sem_wait_slow (69 samples, 0.05%)</title><rect x="37.3308%" y="853" width="0.0471%" height="15" fill="rgb(225,208,6)" fg:x="54640" fg:w="69"/><text x="37.5808%" y="863.50"></text></g><g><title>do_futex_wait (68 samples, 0.05%)</title><rect x="37.3315%" y="837" width="0.0465%" height="15" fill="rgb(246,181,16)" fg:x="54641" fg:w="68"/><text x="37.5815%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (68 samples, 0.05%)</title><rect x="37.3315%" y="821" width="0.0465%" height="15" fill="rgb(227,129,36)" fg:x="54641" fg:w="68"/><text x="37.5815%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.05%)</title><rect x="37.3329%" y="805" width="0.0451%" height="15" fill="rgb(248,117,24)" fg:x="54643" fg:w="66"/><text x="37.5829%" y="815.50"></text></g><g><title>GC_Thread#0 (428 samples, 0.29%)</title><rect x="37.0862%" y="981" width="0.2924%" height="15" fill="rgb(214,185,35)" fg:x="54282" fg:w="428"/><text x="37.3362%" y="991.50"></text></g><g><title>G1ParScanThreadState::trim_queue (54 samples, 0.04%)</title><rect x="37.3950%" y="853" width="0.0369%" height="15" fill="rgb(236,150,34)" fg:x="54734" fg:w="54"/><text x="37.6450%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (31 samples, 0.02%)</title><rect x="37.4108%" y="837" width="0.0212%" height="15" fill="rgb(243,228,27)" fg:x="54757" fg:w="31"/><text x="37.6608%" y="847.50"></text></g><g><title>SpinPause (58 samples, 0.04%)</title><rect x="37.4395%" y="853" width="0.0396%" height="15" fill="rgb(245,77,44)" fg:x="54799" fg:w="58"/><text x="37.6895%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (132 samples, 0.09%)</title><rect x="37.3896%" y="869" width="0.0902%" height="15" fill="rgb(235,214,42)" fg:x="54726" fg:w="132"/><text x="37.6396%" y="879.50"></text></g><g><title>G1RemSet::scan_rem_set (19 samples, 0.01%)</title><rect x="37.4859%" y="869" width="0.0130%" height="15" fill="rgb(221,74,3)" fg:x="54867" fg:w="19"/><text x="37.7359%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (19 samples, 0.01%)</title><rect x="37.4859%" y="853" width="0.0130%" height="15" fill="rgb(206,121,29)" fg:x="54867" fg:w="19"/><text x="37.7359%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (19 samples, 0.01%)</title><rect x="37.4859%" y="837" width="0.0130%" height="15" fill="rgb(249,131,53)" fg:x="54867" fg:w="19"/><text x="37.7359%" y="847.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (15 samples, 0.01%)</title><rect x="37.4886%" y="821" width="0.0102%" height="15" fill="rgb(236,170,29)" fg:x="54871" fg:w="15"/><text x="37.7386%" y="831.50"></text></g><g><title>G1CodeRootSet::nmethods_do (15 samples, 0.01%)</title><rect x="37.4886%" y="805" width="0.0102%" height="15" fill="rgb(247,96,15)" fg:x="54871" fg:w="15"/><text x="37.7386%" y="815.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (45 samples, 0.03%)</title><rect x="37.5392%" y="741" width="0.0307%" height="15" fill="rgb(211,210,7)" fg:x="54945" fg:w="45"/><text x="37.7892%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (36 samples, 0.02%)</title><rect x="37.5453%" y="725" width="0.0246%" height="15" fill="rgb(240,88,50)" fg:x="54954" fg:w="36"/><text x="37.7953%" y="735.50"></text></g><g><title>InterpreterOopMap::iterate_oop (60 samples, 0.04%)</title><rect x="37.5310%" y="773" width="0.0410%" height="15" fill="rgb(209,229,26)" fg:x="54933" fg:w="60"/><text x="37.7810%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (58 samples, 0.04%)</title><rect x="37.5324%" y="757" width="0.0396%" height="15" fill="rgb(210,68,23)" fg:x="54935" fg:w="58"/><text x="37.7824%" y="767.50"></text></g><g><title>frame::oops_interpreted_do (64 samples, 0.04%)</title><rect x="37.5310%" y="789" width="0.0437%" height="15" fill="rgb(229,180,13)" fg:x="54933" fg:w="64"/><text x="37.7810%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (111 samples, 0.08%)</title><rect x="37.4996%" y="853" width="0.0758%" height="15" fill="rgb(236,53,44)" fg:x="54887" fg:w="111"/><text x="37.7496%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (98 samples, 0.07%)</title><rect x="37.5085%" y="837" width="0.0670%" height="15" fill="rgb(244,214,29)" fg:x="54900" fg:w="98"/><text x="37.7585%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (98 samples, 0.07%)</title><rect x="37.5085%" y="821" width="0.0670%" height="15" fill="rgb(220,75,29)" fg:x="54900" fg:w="98"/><text x="37.7585%" y="831.50"></text></g><g><title>JavaThread::oops_do (98 samples, 0.07%)</title><rect x="37.5085%" y="805" width="0.0670%" height="15" fill="rgb(214,183,37)" fg:x="54900" fg:w="98"/><text x="37.7585%" y="815.50"></text></g><g><title>G1ParTask::work (279 samples, 0.19%)</title><rect x="37.3896%" y="885" width="0.1906%" height="15" fill="rgb(239,117,29)" fg:x="54726" fg:w="279"/><text x="37.6396%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (119 samples, 0.08%)</title><rect x="37.4989%" y="869" width="0.0813%" height="15" fill="rgb(237,171,35)" fg:x="54886" fg:w="119"/><text x="37.7489%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (38 samples, 0.03%)</title><rect x="37.5829%" y="885" width="0.0260%" height="15" fill="rgb(229,178,53)" fg:x="55009" fg:w="38"/><text x="37.8329%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (24 samples, 0.02%)</title><rect x="37.5925%" y="869" width="0.0164%" height="15" fill="rgb(210,102,19)" fg:x="55023" fg:w="24"/><text x="37.8425%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (24 samples, 0.02%)</title><rect x="37.5925%" y="853" width="0.0164%" height="15" fill="rgb(235,127,22)" fg:x="55023" fg:w="24"/><text x="37.8425%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (24 samples, 0.02%)</title><rect x="37.5925%" y="837" width="0.0164%" height="15" fill="rgb(244,31,31)" fg:x="55023" fg:w="24"/><text x="37.8425%" y="847.50"></text></g><g><title>SpinPause (24 samples, 0.02%)</title><rect x="37.5925%" y="821" width="0.0164%" height="15" fill="rgb(231,43,21)" fg:x="55023" fg:w="24"/><text x="37.8425%" y="831.50"></text></g><g><title>JavaThread::nmethods_do (17 samples, 0.01%)</title><rect x="37.6130%" y="853" width="0.0116%" height="15" fill="rgb(217,131,35)" fg:x="55053" fg:w="17"/><text x="37.8630%" y="863.50"></text></g><g><title>ParallelSPCleanupTask::work (27 samples, 0.02%)</title><rect x="37.6096%" y="885" width="0.0184%" height="15" fill="rgb(221,149,4)" fg:x="55048" fg:w="27"/><text x="37.8596%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (24 samples, 0.02%)</title><rect x="37.6116%" y="869" width="0.0164%" height="15" fill="rgb(232,170,28)" fg:x="55051" fg:w="24"/><text x="37.8616%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.05%)</title><rect x="37.6355%" y="661" width="0.0451%" height="15" fill="rgb(238,56,10)" fg:x="55086" fg:w="66"/><text x="37.8855%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.04%)</title><rect x="37.6362%" y="645" width="0.0444%" height="15" fill="rgb(235,196,14)" fg:x="55087" fg:w="65"/><text x="37.8862%" y="655.50"></text></g><g><title>native_write_msr (64 samples, 0.04%)</title><rect x="37.6369%" y="629" width="0.0437%" height="15" fill="rgb(216,45,48)" fg:x="55088" fg:w="64"/><text x="37.8869%" y="639.50"></text></g><g><title>finish_task_switch (71 samples, 0.05%)</title><rect x="37.6348%" y="677" width="0.0485%" height="15" fill="rgb(238,213,17)" fg:x="55085" fg:w="71"/><text x="37.8848%" y="687.50"></text></g><g><title>futex_wait_queue_me (85 samples, 0.06%)</title><rect x="37.6314%" y="725" width="0.0581%" height="15" fill="rgb(212,13,2)" fg:x="55080" fg:w="85"/><text x="37.8814%" y="735.50"></text></g><g><title>schedule (84 samples, 0.06%)</title><rect x="37.6321%" y="709" width="0.0574%" height="15" fill="rgb(240,114,20)" fg:x="55081" fg:w="84"/><text x="37.8821%" y="719.50"></text></g><g><title>__schedule (84 samples, 0.06%)</title><rect x="37.6321%" y="693" width="0.0574%" height="15" fill="rgb(228,41,40)" fg:x="55081" fg:w="84"/><text x="37.8821%" y="703.50"></text></g><g><title>__GI___clone (448 samples, 0.31%)</title><rect x="37.3841%" y="965" width="0.3061%" height="15" fill="rgb(244,132,35)" fg:x="54718" fg:w="448"/><text x="37.6341%" y="975.50"></text></g><g><title>start_thread (448 samples, 0.31%)</title><rect x="37.3841%" y="949" width="0.3061%" height="15" fill="rgb(253,189,4)" fg:x="54718" fg:w="448"/><text x="37.6341%" y="959.50"></text></g><g><title>thread_native_entry (448 samples, 0.31%)</title><rect x="37.3841%" y="933" width="0.3061%" height="15" fill="rgb(224,37,19)" fg:x="54718" fg:w="448"/><text x="37.6341%" y="943.50"></text></g><g><title>Thread::call_run (448 samples, 0.31%)</title><rect x="37.3841%" y="917" width="0.3061%" height="15" fill="rgb(235,223,18)" fg:x="54718" fg:w="448"/><text x="37.6341%" y="927.50"></text></g><g><title>GangWorker::loop (448 samples, 0.31%)</title><rect x="37.3841%" y="901" width="0.3061%" height="15" fill="rgb(235,163,25)" fg:x="54718" fg:w="448"/><text x="37.6341%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (90 samples, 0.06%)</title><rect x="37.6287%" y="885" width="0.0615%" height="15" fill="rgb(217,145,28)" fg:x="55076" fg:w="90"/><text x="37.8787%" y="895.50"></text></g><g><title>PosixSemaphore::wait (89 samples, 0.06%)</title><rect x="37.6294%" y="869" width="0.0608%" height="15" fill="rgb(223,223,32)" fg:x="55077" fg:w="89"/><text x="37.8794%" y="879.50"></text></g><g><title>__new_sem_wait_slow (89 samples, 0.06%)</title><rect x="37.6294%" y="853" width="0.0608%" height="15" fill="rgb(227,189,39)" fg:x="55077" fg:w="89"/><text x="37.8794%" y="863.50"></text></g><g><title>do_futex_wait (89 samples, 0.06%)</title><rect x="37.6294%" y="837" width="0.0608%" height="15" fill="rgb(248,10,22)" fg:x="55077" fg:w="89"/><text x="37.8794%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (89 samples, 0.06%)</title><rect x="37.6294%" y="821" width="0.0608%" height="15" fill="rgb(248,46,39)" fg:x="55077" fg:w="89"/><text x="37.8794%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.06%)</title><rect x="37.6301%" y="805" width="0.0601%" height="15" fill="rgb(248,113,48)" fg:x="55078" fg:w="88"/><text x="37.8801%" y="815.50"></text></g><g><title>do_syscall_64 (88 samples, 0.06%)</title><rect x="37.6301%" y="789" width="0.0601%" height="15" fill="rgb(245,16,25)" fg:x="55078" fg:w="88"/><text x="37.8801%" y="799.50"></text></g><g><title>__x64_sys_futex (88 samples, 0.06%)</title><rect x="37.6301%" y="773" width="0.0601%" height="15" fill="rgb(249,152,16)" fg:x="55078" fg:w="88"/><text x="37.8801%" y="783.50"></text></g><g><title>do_futex (88 samples, 0.06%)</title><rect x="37.6301%" y="757" width="0.0601%" height="15" fill="rgb(250,16,1)" fg:x="55078" fg:w="88"/><text x="37.8801%" y="767.50"></text></g><g><title>futex_wait (87 samples, 0.06%)</title><rect x="37.6308%" y="741" width="0.0594%" height="15" fill="rgb(249,138,3)" fg:x="55079" fg:w="87"/><text x="37.8808%" y="751.50"></text></g><g><title>GC_Thread#1 (459 samples, 0.31%)</title><rect x="37.3786%" y="981" width="0.3136%" height="15" fill="rgb(227,71,41)" fg:x="54710" fg:w="459"/><text x="37.6286%" y="991.50"></text></g><g><title>G1CMRemarkTask::work (19 samples, 0.01%)</title><rect x="37.6950%" y="885" width="0.0130%" height="15" fill="rgb(209,184,23)" fg:x="55173" fg:w="19"/><text x="37.9450%" y="895.50"></text></g><g><title>G1CMTask::do_marking_step (19 samples, 0.01%)</title><rect x="37.6950%" y="869" width="0.0130%" height="15" fill="rgb(223,215,31)" fg:x="55173" fg:w="19"/><text x="37.9450%" y="879.50"></text></g><g><title>SpinPause (19 samples, 0.01%)</title><rect x="37.6950%" y="853" width="0.0130%" height="15" fill="rgb(210,146,28)" fg:x="55173" fg:w="19"/><text x="37.9450%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="37.7209%" y="837" width="0.0198%" height="15" fill="rgb(209,183,41)" fg:x="55211" fg:w="29"/><text x="37.9709%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (44 samples, 0.03%)</title><rect x="37.7121%" y="853" width="0.0301%" height="15" fill="rgb(209,224,45)" fg:x="55198" fg:w="44"/><text x="37.9621%" y="863.50"></text></g><g><title>SpinPause (35 samples, 0.02%)</title><rect x="37.7435%" y="853" width="0.0239%" height="15" fill="rgb(224,209,51)" fg:x="55244" fg:w="35"/><text x="37.9935%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (89 samples, 0.06%)</title><rect x="37.7080%" y="869" width="0.0608%" height="15" fill="rgb(223,17,39)" fg:x="55192" fg:w="89"/><text x="37.9580%" y="879.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (22 samples, 0.02%)</title><rect x="37.7708%" y="773" width="0.0150%" height="15" fill="rgb(234,204,37)" fg:x="55284" fg:w="22"/><text x="38.0208%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (19 samples, 0.01%)</title><rect x="37.7729%" y="757" width="0.0130%" height="15" fill="rgb(236,120,5)" fg:x="55287" fg:w="19"/><text x="38.0229%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (26 samples, 0.02%)</title><rect x="37.7688%" y="789" width="0.0178%" height="15" fill="rgb(248,97,27)" fg:x="55281" fg:w="26"/><text x="38.0188%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (28 samples, 0.02%)</title><rect x="37.7688%" y="869" width="0.0191%" height="15" fill="rgb(240,66,17)" fg:x="55281" fg:w="28"/><text x="38.0188%" y="879.50"></text></g><g><title>G1RemSet::update_rem_set (28 samples, 0.02%)</title><rect x="37.7688%" y="853" width="0.0191%" height="15" fill="rgb(210,79,3)" fg:x="55281" fg:w="28"/><text x="38.0188%" y="863.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (28 samples, 0.02%)</title><rect x="37.7688%" y="837" width="0.0191%" height="15" fill="rgb(214,176,27)" fg:x="55281" fg:w="28"/><text x="38.0188%" y="847.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (28 samples, 0.02%)</title><rect x="37.7688%" y="821" width="0.0191%" height="15" fill="rgb(235,185,3)" fg:x="55281" fg:w="28"/><text x="38.0188%" y="831.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (28 samples, 0.02%)</title><rect x="37.7688%" y="805" width="0.0191%" height="15" fill="rgb(227,24,12)" fg:x="55281" fg:w="28"/><text x="38.0188%" y="815.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (74 samples, 0.05%)</title><rect x="37.7968%" y="837" width="0.0506%" height="15" fill="rgb(252,169,48)" fg:x="55322" fg:w="74"/><text x="38.0468%" y="847.50"></text></g><g><title>G1CLDScanClosure::do_cld (74 samples, 0.05%)</title><rect x="37.7968%" y="821" width="0.0506%" height="15" fill="rgb(212,65,1)" fg:x="55322" fg:w="74"/><text x="38.0468%" y="831.50"></text></g><g><title>ClassLoaderData::oops_do (74 samples, 0.05%)</title><rect x="37.7968%" y="805" width="0.0506%" height="15" fill="rgb(242,39,24)" fg:x="55322" fg:w="74"/><text x="38.0468%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (63 samples, 0.04%)</title><rect x="37.8043%" y="789" width="0.0430%" height="15" fill="rgb(249,32,23)" fg:x="55333" fg:w="63"/><text x="38.0543%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (56 samples, 0.04%)</title><rect x="37.8091%" y="773" width="0.0383%" height="15" fill="rgb(251,195,23)" fg:x="55340" fg:w="56"/><text x="38.0591%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (43 samples, 0.03%)</title><rect x="37.8180%" y="757" width="0.0294%" height="15" fill="rgb(236,174,8)" fg:x="55353" fg:w="43"/><text x="38.0680%" y="767.50"></text></g><g><title>G1RootProcessor::process_java_roots (86 samples, 0.06%)</title><rect x="37.7968%" y="853" width="0.0588%" height="15" fill="rgb(220,197,8)" fg:x="55322" fg:w="86"/><text x="38.0468%" y="863.50"></text></g><g><title>G1ParTask::work (219 samples, 0.15%)</title><rect x="37.7080%" y="885" width="0.1496%" height="15" fill="rgb(240,108,37)" fg:x="55192" fg:w="219"/><text x="37.9580%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (90 samples, 0.06%)</title><rect x="37.7961%" y="869" width="0.0615%" height="15" fill="rgb(232,176,24)" fg:x="55321" fg:w="90"/><text x="38.0461%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (23 samples, 0.02%)</title><rect x="37.8651%" y="885" width="0.0157%" height="15" fill="rgb(243,35,29)" fg:x="55422" fg:w="23"/><text x="38.1151%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (18 samples, 0.01%)</title><rect x="37.8685%" y="869" width="0.0123%" height="15" fill="rgb(210,37,18)" fg:x="55427" fg:w="18"/><text x="38.1185%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (18 samples, 0.01%)</title><rect x="37.8685%" y="853" width="0.0123%" height="15" fill="rgb(224,184,40)" fg:x="55427" fg:w="18"/><text x="38.1185%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (18 samples, 0.01%)</title><rect x="37.8685%" y="837" width="0.0123%" height="15" fill="rgb(236,39,29)" fg:x="55427" fg:w="18"/><text x="38.1185%" y="847.50"></text></g><g><title>SpinPause (18 samples, 0.01%)</title><rect x="37.8685%" y="821" width="0.0123%" height="15" fill="rgb(232,48,39)" fg:x="55427" fg:w="18"/><text x="38.1185%" y="831.50"></text></g><g><title>ParallelSPCleanupTask::work (21 samples, 0.01%)</title><rect x="37.8815%" y="885" width="0.0143%" height="15" fill="rgb(236,34,42)" fg:x="55446" fg:w="21"/><text x="38.1315%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (20 samples, 0.01%)</title><rect x="37.8822%" y="869" width="0.0137%" height="15" fill="rgb(243,106,37)" fg:x="55447" fg:w="20"/><text x="38.1322%" y="879.50"></text></g><g><title>finish_task_switch (74 samples, 0.05%)</title><rect x="37.9061%" y="677" width="0.0506%" height="15" fill="rgb(218,96,6)" fg:x="55482" fg:w="74"/><text x="38.1561%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.05%)</title><rect x="37.9068%" y="661" width="0.0499%" height="15" fill="rgb(235,130,12)" fg:x="55483" fg:w="73"/><text x="38.1568%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.05%)</title><rect x="37.9081%" y="645" width="0.0485%" height="15" fill="rgb(231,95,0)" fg:x="55485" fg:w="71"/><text x="38.1581%" y="655.50"></text></g><g><title>native_write_msr (70 samples, 0.05%)</title><rect x="37.9088%" y="629" width="0.0478%" height="15" fill="rgb(228,12,23)" fg:x="55486" fg:w="70"/><text x="38.1588%" y="639.50"></text></g><g><title>futex_wait_queue_me (89 samples, 0.06%)</title><rect x="37.9006%" y="725" width="0.0608%" height="15" fill="rgb(216,12,1)" fg:x="55474" fg:w="89"/><text x="38.1506%" y="735.50"></text></g><g><title>schedule (88 samples, 0.06%)</title><rect x="37.9013%" y="709" width="0.0601%" height="15" fill="rgb(219,59,3)" fg:x="55475" fg:w="88"/><text x="38.1513%" y="719.50"></text></g><g><title>__schedule (88 samples, 0.06%)</title><rect x="37.9013%" y="693" width="0.0601%" height="15" fill="rgb(215,208,46)" fg:x="55475" fg:w="88"/><text x="38.1513%" y="703.50"></text></g><g><title>__GI___clone (393 samples, 0.27%)</title><rect x="37.6943%" y="965" width="0.2685%" height="15" fill="rgb(254,224,29)" fg:x="55172" fg:w="393"/><text x="37.9443%" y="975.50"></text></g><g><title>start_thread (393 samples, 0.27%)</title><rect x="37.6943%" y="949" width="0.2685%" height="15" fill="rgb(232,14,29)" fg:x="55172" fg:w="393"/><text x="37.9443%" y="959.50"></text></g><g><title>thread_native_entry (393 samples, 0.27%)</title><rect x="37.6943%" y="933" width="0.2685%" height="15" fill="rgb(208,45,52)" fg:x="55172" fg:w="393"/><text x="37.9443%" y="943.50"></text></g><g><title>Thread::call_run (393 samples, 0.27%)</title><rect x="37.6943%" y="917" width="0.2685%" height="15" fill="rgb(234,191,28)" fg:x="55172" fg:w="393"/><text x="37.9443%" y="927.50"></text></g><g><title>GangWorker::loop (393 samples, 0.27%)</title><rect x="37.6943%" y="901" width="0.2685%" height="15" fill="rgb(244,67,43)" fg:x="55172" fg:w="393"/><text x="37.9443%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (95 samples, 0.06%)</title><rect x="37.8979%" y="885" width="0.0649%" height="15" fill="rgb(236,189,24)" fg:x="55470" fg:w="95"/><text x="38.1479%" y="895.50"></text></g><g><title>PosixSemaphore::wait (95 samples, 0.06%)</title><rect x="37.8979%" y="869" width="0.0649%" height="15" fill="rgb(239,214,33)" fg:x="55470" fg:w="95"/><text x="38.1479%" y="879.50"></text></g><g><title>__new_sem_wait_slow (95 samples, 0.06%)</title><rect x="37.8979%" y="853" width="0.0649%" height="15" fill="rgb(226,176,41)" fg:x="55470" fg:w="95"/><text x="38.1479%" y="863.50"></text></g><g><title>do_futex_wait (95 samples, 0.06%)</title><rect x="37.8979%" y="837" width="0.0649%" height="15" fill="rgb(248,47,8)" fg:x="55470" fg:w="95"/><text x="38.1479%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (95 samples, 0.06%)</title><rect x="37.8979%" y="821" width="0.0649%" height="15" fill="rgb(218,81,44)" fg:x="55470" fg:w="95"/><text x="38.1479%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (95 samples, 0.06%)</title><rect x="37.8979%" y="805" width="0.0649%" height="15" fill="rgb(213,98,6)" fg:x="55470" fg:w="95"/><text x="38.1479%" y="815.50"></text></g><g><title>do_syscall_64 (95 samples, 0.06%)</title><rect x="37.8979%" y="789" width="0.0649%" height="15" fill="rgb(222,85,22)" fg:x="55470" fg:w="95"/><text x="38.1479%" y="799.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.06%)</title><rect x="37.8986%" y="773" width="0.0642%" height="15" fill="rgb(239,46,39)" fg:x="55471" fg:w="94"/><text x="38.1486%" y="783.50"></text></g><g><title>do_futex (92 samples, 0.06%)</title><rect x="37.8999%" y="757" width="0.0629%" height="15" fill="rgb(237,12,29)" fg:x="55473" fg:w="92"/><text x="38.1499%" y="767.50"></text></g><g><title>futex_wait (91 samples, 0.06%)</title><rect x="37.9006%" y="741" width="0.0622%" height="15" fill="rgb(214,77,8)" fg:x="55474" fg:w="91"/><text x="38.1506%" y="751.50"></text></g><g><title>GC_Thread#2 (398 samples, 0.27%)</title><rect x="37.6922%" y="981" width="0.2719%" height="15" fill="rgb(217,168,37)" fg:x="55169" fg:w="398"/><text x="37.9422%" y="991.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="37.9881%" y="837" width="0.0116%" height="15" fill="rgb(221,217,23)" fg:x="55602" fg:w="17"/><text x="38.2381%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (35 samples, 0.02%)</title><rect x="37.9785%" y="853" width="0.0239%" height="15" fill="rgb(243,229,36)" fg:x="55588" fg:w="35"/><text x="38.2285%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (93 samples, 0.06%)</title><rect x="37.9765%" y="869" width="0.0635%" height="15" fill="rgb(251,163,40)" fg:x="55585" fg:w="93"/><text x="38.2265%" y="879.50"></text></g><g><title>SpinPause (52 samples, 0.04%)</title><rect x="38.0045%" y="853" width="0.0355%" height="15" fill="rgb(237,222,12)" fg:x="55626" fg:w="52"/><text x="38.2545%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (16 samples, 0.01%)</title><rect x="38.0400%" y="789" width="0.0109%" height="15" fill="rgb(248,132,6)" fg:x="55678" fg:w="16"/><text x="38.2900%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (19 samples, 0.01%)</title><rect x="38.0400%" y="869" width="0.0130%" height="15" fill="rgb(227,167,50)" fg:x="55678" fg:w="19"/><text x="38.2900%" y="879.50"></text></g><g><title>G1RemSet::update_rem_set (19 samples, 0.01%)</title><rect x="38.0400%" y="853" width="0.0130%" height="15" fill="rgb(242,84,37)" fg:x="55678" fg:w="19"/><text x="38.2900%" y="863.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (19 samples, 0.01%)</title><rect x="38.0400%" y="837" width="0.0130%" height="15" fill="rgb(212,4,50)" fg:x="55678" fg:w="19"/><text x="38.2900%" y="847.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (19 samples, 0.01%)</title><rect x="38.0400%" y="821" width="0.0130%" height="15" fill="rgb(230,228,32)" fg:x="55678" fg:w="19"/><text x="38.2900%" y="831.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (19 samples, 0.01%)</title><rect x="38.0400%" y="805" width="0.0130%" height="15" fill="rgb(248,217,23)" fg:x="55678" fg:w="19"/><text x="38.2900%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (20 samples, 0.01%)</title><rect x="38.0530%" y="869" width="0.0137%" height="15" fill="rgb(238,197,32)" fg:x="55697" fg:w="20"/><text x="38.3030%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (20 samples, 0.01%)</title><rect x="38.0530%" y="853" width="0.0137%" height="15" fill="rgb(236,106,1)" fg:x="55697" fg:w="20"/><text x="38.3030%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (20 samples, 0.01%)</title><rect x="38.0530%" y="837" width="0.0137%" height="15" fill="rgb(219,228,13)" fg:x="55697" fg:w="20"/><text x="38.3030%" y="847.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (16 samples, 0.01%)</title><rect x="38.0666%" y="837" width="0.0109%" height="15" fill="rgb(238,30,35)" fg:x="55717" fg:w="16"/><text x="38.3166%" y="847.50"></text></g><g><title>G1CLDScanClosure::do_cld (16 samples, 0.01%)</title><rect x="38.0666%" y="821" width="0.0109%" height="15" fill="rgb(236,70,23)" fg:x="55717" fg:w="16"/><text x="38.3166%" y="831.50"></text></g><g><title>ClassLoaderData::oops_do (16 samples, 0.01%)</title><rect x="38.0666%" y="805" width="0.0109%" height="15" fill="rgb(249,104,48)" fg:x="55717" fg:w="16"/><text x="38.3166%" y="815.50"></text></g><g><title>G1RootProcessor::process_java_roots (39 samples, 0.03%)</title><rect x="38.0666%" y="853" width="0.0266%" height="15" fill="rgb(254,117,50)" fg:x="55717" fg:w="39"/><text x="38.3166%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (22 samples, 0.02%)</title><rect x="38.0783%" y="837" width="0.0150%" height="15" fill="rgb(223,152,4)" fg:x="55734" fg:w="22"/><text x="38.3283%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (22 samples, 0.02%)</title><rect x="38.0783%" y="821" width="0.0150%" height="15" fill="rgb(245,6,2)" fg:x="55734" fg:w="22"/><text x="38.3283%" y="831.50"></text></g><g><title>JavaThread::oops_do (22 samples, 0.02%)</title><rect x="38.0783%" y="805" width="0.0150%" height="15" fill="rgb(249,150,24)" fg:x="55734" fg:w="22"/><text x="38.3283%" y="815.50"></text></g><g><title>Management::oops_do (19 samples, 0.01%)</title><rect x="38.0933%" y="837" width="0.0130%" height="15" fill="rgb(228,185,42)" fg:x="55756" fg:w="19"/><text x="38.3433%" y="847.50"></text></g><g><title>MemoryService::oops_do (19 samples, 0.01%)</title><rect x="38.0933%" y="821" width="0.0130%" height="15" fill="rgb(226,39,33)" fg:x="55756" fg:w="19"/><text x="38.3433%" y="831.50"></text></g><g><title>MemoryPool::oops_do (19 samples, 0.01%)</title><rect x="38.0933%" y="805" width="0.0130%" height="15" fill="rgb(221,166,19)" fg:x="55756" fg:w="19"/><text x="38.3433%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (18 samples, 0.01%)</title><rect x="38.0940%" y="789" width="0.0123%" height="15" fill="rgb(209,109,2)" fg:x="55757" fg:w="18"/><text x="38.3440%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (17 samples, 0.01%)</title><rect x="38.0947%" y="773" width="0.0116%" height="15" fill="rgb(252,216,26)" fg:x="55758" fg:w="17"/><text x="38.3447%" y="783.50"></text></g><g><title>G1RootProcessor::process_vm_roots (21 samples, 0.01%)</title><rect x="38.0933%" y="853" width="0.0143%" height="15" fill="rgb(227,173,36)" fg:x="55756" fg:w="21"/><text x="38.3433%" y="863.50"></text></g><g><title>G1ParTask::work (195 samples, 0.13%)</title><rect x="37.9765%" y="885" width="0.1332%" height="15" fill="rgb(209,90,7)" fg:x="55585" fg:w="195"/><text x="38.2265%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (63 samples, 0.04%)</title><rect x="38.0666%" y="869" width="0.0430%" height="15" fill="rgb(250,194,11)" fg:x="55717" fg:w="63"/><text x="38.3166%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (32 samples, 0.02%)</title><rect x="38.1124%" y="885" width="0.0219%" height="15" fill="rgb(220,72,50)" fg:x="55784" fg:w="32"/><text x="38.3624%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (19 samples, 0.01%)</title><rect x="38.1213%" y="869" width="0.0130%" height="15" fill="rgb(222,106,48)" fg:x="55797" fg:w="19"/><text x="38.3713%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (19 samples, 0.01%)</title><rect x="38.1213%" y="853" width="0.0130%" height="15" fill="rgb(216,220,45)" fg:x="55797" fg:w="19"/><text x="38.3713%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (19 samples, 0.01%)</title><rect x="38.1213%" y="837" width="0.0130%" height="15" fill="rgb(234,112,18)" fg:x="55797" fg:w="19"/><text x="38.3713%" y="847.50"></text></g><g><title>SpinPause (19 samples, 0.01%)</title><rect x="38.1213%" y="821" width="0.0130%" height="15" fill="rgb(206,179,9)" fg:x="55797" fg:w="19"/><text x="38.3713%" y="831.50"></text></g><g><title>JavaThread::nmethods_do (23 samples, 0.02%)</title><rect x="38.1411%" y="853" width="0.0157%" height="15" fill="rgb(215,115,40)" fg:x="55826" fg:w="23"/><text x="38.3911%" y="863.50"></text></g><g><title>frame::sender (18 samples, 0.01%)</title><rect x="38.1445%" y="837" width="0.0123%" height="15" fill="rgb(222,69,34)" fg:x="55831" fg:w="18"/><text x="38.3945%" y="847.50"></text></g><g><title>ParallelSPCleanupTask::work (40 samples, 0.03%)</title><rect x="38.1343%" y="885" width="0.0273%" height="15" fill="rgb(209,161,10)" fg:x="55816" fg:w="40"/><text x="38.3843%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (33 samples, 0.02%)</title><rect x="38.1391%" y="869" width="0.0225%" height="15" fill="rgb(217,6,38)" fg:x="55823" fg:w="33"/><text x="38.3891%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.05%)</title><rect x="38.1705%" y="661" width="0.0485%" height="15" fill="rgb(229,229,48)" fg:x="55869" fg:w="71"/><text x="38.4205%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.05%)</title><rect x="38.1719%" y="645" width="0.0471%" height="15" fill="rgb(225,21,28)" fg:x="55871" fg:w="69"/><text x="38.4219%" y="655.50"></text></g><g><title>native_write_msr (69 samples, 0.05%)</title><rect x="38.1719%" y="629" width="0.0471%" height="15" fill="rgb(206,33,13)" fg:x="55871" fg:w="69"/><text x="38.4219%" y="639.50"></text></g><g><title>finish_task_switch (74 samples, 0.05%)</title><rect x="38.1705%" y="677" width="0.0506%" height="15" fill="rgb(242,178,17)" fg:x="55869" fg:w="74"/><text x="38.4205%" y="687.50"></text></g><g><title>do_syscall_64 (92 samples, 0.06%)</title><rect x="38.1650%" y="789" width="0.0629%" height="15" fill="rgb(220,162,5)" fg:x="55861" fg:w="92"/><text x="38.4150%" y="799.50"></text></g><g><title>__x64_sys_futex (92 samples, 0.06%)</title><rect x="38.1650%" y="773" width="0.0629%" height="15" fill="rgb(210,33,43)" fg:x="55861" fg:w="92"/><text x="38.4150%" y="783.50"></text></g><g><title>do_futex (92 samples, 0.06%)</title><rect x="38.1650%" y="757" width="0.0629%" height="15" fill="rgb(216,116,54)" fg:x="55861" fg:w="92"/><text x="38.4150%" y="767.50"></text></g><g><title>futex_wait (92 samples, 0.06%)</title><rect x="38.1650%" y="741" width="0.0629%" height="15" fill="rgb(249,92,24)" fg:x="55861" fg:w="92"/><text x="38.4150%" y="751.50"></text></g><g><title>futex_wait_queue_me (91 samples, 0.06%)</title><rect x="38.1657%" y="725" width="0.0622%" height="15" fill="rgb(231,189,14)" fg:x="55862" fg:w="91"/><text x="38.4157%" y="735.50"></text></g><g><title>schedule (89 samples, 0.06%)</title><rect x="38.1671%" y="709" width="0.0608%" height="15" fill="rgb(230,8,41)" fg:x="55864" fg:w="89"/><text x="38.4171%" y="719.50"></text></g><g><title>__schedule (89 samples, 0.06%)</title><rect x="38.1671%" y="693" width="0.0608%" height="15" fill="rgb(249,7,27)" fg:x="55864" fg:w="89"/><text x="38.4171%" y="703.50"></text></g><g><title>__GI___clone (379 samples, 0.26%)</title><rect x="37.9703%" y="965" width="0.2589%" height="15" fill="rgb(232,86,5)" fg:x="55576" fg:w="379"/><text x="38.2203%" y="975.50"></text></g><g><title>start_thread (379 samples, 0.26%)</title><rect x="37.9703%" y="949" width="0.2589%" height="15" fill="rgb(224,175,18)" fg:x="55576" fg:w="379"/><text x="38.2203%" y="959.50"></text></g><g><title>thread_native_entry (379 samples, 0.26%)</title><rect x="37.9703%" y="933" width="0.2589%" height="15" fill="rgb(220,129,12)" fg:x="55576" fg:w="379"/><text x="38.2203%" y="943.50"></text></g><g><title>Thread::call_run (379 samples, 0.26%)</title><rect x="37.9703%" y="917" width="0.2589%" height="15" fill="rgb(210,19,36)" fg:x="55576" fg:w="379"/><text x="38.2203%" y="927.50"></text></g><g><title>GangWorker::loop (379 samples, 0.26%)</title><rect x="37.9703%" y="901" width="0.2589%" height="15" fill="rgb(219,96,14)" fg:x="55576" fg:w="379"/><text x="38.2203%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (98 samples, 0.07%)</title><rect x="38.1623%" y="885" width="0.0670%" height="15" fill="rgb(249,106,1)" fg:x="55857" fg:w="98"/><text x="38.4123%" y="895.50"></text></g><g><title>PosixSemaphore::wait (97 samples, 0.07%)</title><rect x="38.1630%" y="869" width="0.0663%" height="15" fill="rgb(249,155,20)" fg:x="55858" fg:w="97"/><text x="38.4130%" y="879.50"></text></g><g><title>__new_sem_wait_slow (97 samples, 0.07%)</title><rect x="38.1630%" y="853" width="0.0663%" height="15" fill="rgb(244,168,9)" fg:x="55858" fg:w="97"/><text x="38.4130%" y="863.50"></text></g><g><title>do_futex_wait (97 samples, 0.07%)</title><rect x="38.1630%" y="837" width="0.0663%" height="15" fill="rgb(216,23,50)" fg:x="55858" fg:w="97"/><text x="38.4130%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (97 samples, 0.07%)</title><rect x="38.1630%" y="821" width="0.0663%" height="15" fill="rgb(224,219,20)" fg:x="55858" fg:w="97"/><text x="38.4130%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (95 samples, 0.06%)</title><rect x="38.1643%" y="805" width="0.0649%" height="15" fill="rgb(222,156,15)" fg:x="55860" fg:w="95"/><text x="38.4143%" y="815.50"></text></g><g><title>GC_Thread#3 (390 samples, 0.27%)</title><rect x="37.9642%" y="981" width="0.2665%" height="15" fill="rgb(231,97,17)" fg:x="55567" fg:w="390"/><text x="38.2142%" y="991.50"></text></g><g><title>G1CMRemarkTask::work (17 samples, 0.01%)</title><rect x="38.2333%" y="885" width="0.0116%" height="15" fill="rgb(218,70,48)" fg:x="55961" fg:w="17"/><text x="38.4833%" y="895.50"></text></g><g><title>G1CMTask::do_marking_step (17 samples, 0.01%)</title><rect x="38.2333%" y="869" width="0.0116%" height="15" fill="rgb(212,196,52)" fg:x="55961" fg:w="17"/><text x="38.4833%" y="879.50"></text></g><g><title>SpinPause (17 samples, 0.01%)</title><rect x="38.2333%" y="853" width="0.0116%" height="15" fill="rgb(243,203,18)" fg:x="55961" fg:w="17"/><text x="38.4833%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (41 samples, 0.03%)</title><rect x="38.2627%" y="837" width="0.0280%" height="15" fill="rgb(252,125,41)" fg:x="56004" fg:w="41"/><text x="38.5127%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (61 samples, 0.04%)</title><rect x="38.2511%" y="853" width="0.0417%" height="15" fill="rgb(223,180,33)" fg:x="55987" fg:w="61"/><text x="38.5011%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (151 samples, 0.10%)</title><rect x="38.2450%" y="869" width="0.1032%" height="15" fill="rgb(254,159,46)" fg:x="55978" fg:w="151"/><text x="38.4950%" y="879.50"></text></g><g><title>SpinPause (78 samples, 0.05%)</title><rect x="38.2948%" y="853" width="0.0533%" height="15" fill="rgb(254,38,10)" fg:x="56051" fg:w="78"/><text x="38.5448%" y="863.50"></text></g><g><title>InterpreterOopMap::iterate_oop (38 samples, 0.03%)</title><rect x="38.3714%" y="773" width="0.0260%" height="15" fill="rgb(208,217,32)" fg:x="56163" fg:w="38"/><text x="38.6214%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (38 samples, 0.03%)</title><rect x="38.3714%" y="757" width="0.0260%" height="15" fill="rgb(221,120,13)" fg:x="56163" fg:w="38"/><text x="38.6214%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (27 samples, 0.02%)</title><rect x="38.3789%" y="741" width="0.0184%" height="15" fill="rgb(246,54,52)" fg:x="56174" fg:w="27"/><text x="38.6289%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (23 samples, 0.02%)</title><rect x="38.3816%" y="725" width="0.0157%" height="15" fill="rgb(242,34,25)" fg:x="56178" fg:w="23"/><text x="38.6316%" y="735.50"></text></g><g><title>G1RootProcessor::process_java_roots (56 samples, 0.04%)</title><rect x="38.3632%" y="853" width="0.0383%" height="15" fill="rgb(247,209,9)" fg:x="56151" fg:w="56"/><text x="38.6132%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (56 samples, 0.04%)</title><rect x="38.3632%" y="837" width="0.0383%" height="15" fill="rgb(228,71,26)" fg:x="56151" fg:w="56"/><text x="38.6132%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (56 samples, 0.04%)</title><rect x="38.3632%" y="821" width="0.0383%" height="15" fill="rgb(222,145,49)" fg:x="56151" fg:w="56"/><text x="38.6132%" y="831.50"></text></g><g><title>JavaThread::oops_do (56 samples, 0.04%)</title><rect x="38.3632%" y="805" width="0.0383%" height="15" fill="rgb(218,121,17)" fg:x="56151" fg:w="56"/><text x="38.6132%" y="815.50"></text></g><g><title>frame::oops_interpreted_do (45 samples, 0.03%)</title><rect x="38.3707%" y="789" width="0.0307%" height="15" fill="rgb(244,50,7)" fg:x="56162" fg:w="45"/><text x="38.6207%" y="799.50"></text></g><g><title>G1ParTask::work (244 samples, 0.17%)</title><rect x="38.2450%" y="885" width="0.1667%" height="15" fill="rgb(246,229,37)" fg:x="55978" fg:w="244"/><text x="38.4950%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (71 samples, 0.05%)</title><rect x="38.3632%" y="869" width="0.0485%" height="15" fill="rgb(225,18,5)" fg:x="56151" fg:w="71"/><text x="38.6132%" y="879.50"></text></g><g><title>RefProcPhase2Task::work (15 samples, 0.01%)</title><rect x="38.4192%" y="869" width="0.0102%" height="15" fill="rgb(213,204,8)" fg:x="56233" fg:w="15"/><text x="38.6692%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (33 samples, 0.02%)</title><rect x="38.4192%" y="885" width="0.0225%" height="15" fill="rgb(238,103,6)" fg:x="56233" fg:w="33"/><text x="38.6692%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (18 samples, 0.01%)</title><rect x="38.4294%" y="869" width="0.0123%" height="15" fill="rgb(222,25,35)" fg:x="56248" fg:w="18"/><text x="38.6794%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (18 samples, 0.01%)</title><rect x="38.4294%" y="853" width="0.0123%" height="15" fill="rgb(213,203,35)" fg:x="56248" fg:w="18"/><text x="38.6794%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (18 samples, 0.01%)</title><rect x="38.4294%" y="837" width="0.0123%" height="15" fill="rgb(221,79,53)" fg:x="56248" fg:w="18"/><text x="38.6794%" y="847.50"></text></g><g><title>SpinPause (18 samples, 0.01%)</title><rect x="38.4294%" y="821" width="0.0123%" height="15" fill="rgb(243,200,35)" fg:x="56248" fg:w="18"/><text x="38.6794%" y="831.50"></text></g><g><title>JavaThread::nmethods_do (27 samples, 0.02%)</title><rect x="38.4458%" y="853" width="0.0184%" height="15" fill="rgb(248,60,25)" fg:x="56272" fg:w="27"/><text x="38.6958%" y="863.50"></text></g><g><title>frame::sender (19 samples, 0.01%)</title><rect x="38.4513%" y="837" width="0.0130%" height="15" fill="rgb(227,53,46)" fg:x="56280" fg:w="19"/><text x="38.7013%" y="847.50"></text></g><g><title>ParallelSPCleanupTask::work (35 samples, 0.02%)</title><rect x="38.4424%" y="885" width="0.0239%" height="15" fill="rgb(216,120,32)" fg:x="56267" fg:w="35"/><text x="38.6924%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (32 samples, 0.02%)</title><rect x="38.4445%" y="869" width="0.0219%" height="15" fill="rgb(220,134,1)" fg:x="56270" fg:w="32"/><text x="38.6945%" y="879.50"></text></g><g><title>finish_task_switch (67 samples, 0.05%)</title><rect x="38.4738%" y="677" width="0.0458%" height="15" fill="rgb(237,168,5)" fg:x="56313" fg:w="67"/><text x="38.7238%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.04%)</title><rect x="38.4752%" y="661" width="0.0444%" height="15" fill="rgb(231,100,33)" fg:x="56315" fg:w="65"/><text x="38.7252%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.04%)</title><rect x="38.4779%" y="645" width="0.0417%" height="15" fill="rgb(236,177,47)" fg:x="56319" fg:w="61"/><text x="38.7279%" y="655.50"></text></g><g><title>native_write_msr (61 samples, 0.04%)</title><rect x="38.4779%" y="629" width="0.0417%" height="15" fill="rgb(235,7,49)" fg:x="56319" fg:w="61"/><text x="38.7279%" y="639.50"></text></g><g><title>do_syscall_64 (84 samples, 0.06%)</title><rect x="38.4684%" y="789" width="0.0574%" height="15" fill="rgb(232,119,22)" fg:x="56305" fg:w="84"/><text x="38.7184%" y="799.50"></text></g><g><title>__x64_sys_futex (84 samples, 0.06%)</title><rect x="38.4684%" y="773" width="0.0574%" height="15" fill="rgb(254,73,53)" fg:x="56305" fg:w="84"/><text x="38.7184%" y="783.50"></text></g><g><title>do_futex (84 samples, 0.06%)</title><rect x="38.4684%" y="757" width="0.0574%" height="15" fill="rgb(251,35,20)" fg:x="56305" fg:w="84"/><text x="38.7184%" y="767.50"></text></g><g><title>futex_wait (83 samples, 0.06%)</title><rect x="38.4691%" y="741" width="0.0567%" height="15" fill="rgb(241,119,20)" fg:x="56306" fg:w="83"/><text x="38.7191%" y="751.50"></text></g><g><title>futex_wait_queue_me (82 samples, 0.06%)</title><rect x="38.4697%" y="725" width="0.0560%" height="15" fill="rgb(207,102,14)" fg:x="56307" fg:w="82"/><text x="38.7197%" y="735.50"></text></g><g><title>schedule (81 samples, 0.06%)</title><rect x="38.4704%" y="709" width="0.0553%" height="15" fill="rgb(248,201,50)" fg:x="56308" fg:w="81"/><text x="38.7204%" y="719.50"></text></g><g><title>__schedule (80 samples, 0.05%)</title><rect x="38.4711%" y="693" width="0.0547%" height="15" fill="rgb(222,185,44)" fg:x="56309" fg:w="80"/><text x="38.7211%" y="703.50"></text></g><g><title>__GI___clone (431 samples, 0.29%)</title><rect x="38.2333%" y="965" width="0.2945%" height="15" fill="rgb(218,107,18)" fg:x="55961" fg:w="431"/><text x="38.4833%" y="975.50"></text></g><g><title>start_thread (431 samples, 0.29%)</title><rect x="38.2333%" y="949" width="0.2945%" height="15" fill="rgb(237,177,39)" fg:x="55961" fg:w="431"/><text x="38.4833%" y="959.50"></text></g><g><title>thread_native_entry (431 samples, 0.29%)</title><rect x="38.2333%" y="933" width="0.2945%" height="15" fill="rgb(246,69,6)" fg:x="55961" fg:w="431"/><text x="38.4833%" y="943.50"></text></g><g><title>Thread::call_run (431 samples, 0.29%)</title><rect x="38.2333%" y="917" width="0.2945%" height="15" fill="rgb(234,208,37)" fg:x="55961" fg:w="431"/><text x="38.4833%" y="927.50"></text></g><g><title>GangWorker::loop (431 samples, 0.29%)</title><rect x="38.2333%" y="901" width="0.2945%" height="15" fill="rgb(225,4,6)" fg:x="55961" fg:w="431"/><text x="38.4833%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (88 samples, 0.06%)</title><rect x="38.4677%" y="885" width="0.0601%" height="15" fill="rgb(233,45,0)" fg:x="56304" fg:w="88"/><text x="38.7177%" y="895.50"></text></g><g><title>PosixSemaphore::wait (88 samples, 0.06%)</title><rect x="38.4677%" y="869" width="0.0601%" height="15" fill="rgb(226,136,5)" fg:x="56304" fg:w="88"/><text x="38.7177%" y="879.50"></text></g><g><title>__new_sem_wait_slow (88 samples, 0.06%)</title><rect x="38.4677%" y="853" width="0.0601%" height="15" fill="rgb(211,91,47)" fg:x="56304" fg:w="88"/><text x="38.7177%" y="863.50"></text></g><g><title>do_futex_wait (88 samples, 0.06%)</title><rect x="38.4677%" y="837" width="0.0601%" height="15" fill="rgb(242,88,51)" fg:x="56304" fg:w="88"/><text x="38.7177%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (88 samples, 0.06%)</title><rect x="38.4677%" y="821" width="0.0601%" height="15" fill="rgb(230,91,28)" fg:x="56304" fg:w="88"/><text x="38.7177%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.06%)</title><rect x="38.4684%" y="805" width="0.0594%" height="15" fill="rgb(254,186,29)" fg:x="56305" fg:w="87"/><text x="38.7184%" y="815.50"></text></g><g><title>GC_Thread#4 (438 samples, 0.30%)</title><rect x="38.2306%" y="981" width="0.2992%" height="15" fill="rgb(238,6,4)" fg:x="55957" fg:w="438"/><text x="38.4806%" y="991.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (42 samples, 0.03%)</title><rect x="38.5592%" y="837" width="0.0287%" height="15" fill="rgb(221,151,16)" fg:x="56438" fg:w="42"/><text x="38.8092%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (62 samples, 0.04%)</title><rect x="38.5476%" y="853" width="0.0424%" height="15" fill="rgb(251,143,52)" fg:x="56421" fg:w="62"/><text x="38.7976%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (126 samples, 0.09%)</title><rect x="38.5408%" y="869" width="0.0861%" height="15" fill="rgb(206,90,15)" fg:x="56411" fg:w="126"/><text x="38.7908%" y="879.50"></text></g><g><title>SpinPause (54 samples, 0.04%)</title><rect x="38.5900%" y="853" width="0.0369%" height="15" fill="rgb(218,35,8)" fg:x="56483" fg:w="54"/><text x="38.8400%" y="863.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (15 samples, 0.01%)</title><rect x="38.6276%" y="869" width="0.0102%" height="15" fill="rgb(239,215,6)" fg:x="56538" fg:w="15"/><text x="38.8776%" y="879.50"></text></g><g><title>G1RemSet::update_rem_set (15 samples, 0.01%)</title><rect x="38.6276%" y="853" width="0.0102%" height="15" fill="rgb(245,116,39)" fg:x="56538" fg:w="15"/><text x="38.8776%" y="863.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (15 samples, 0.01%)</title><rect x="38.6276%" y="837" width="0.0102%" height="15" fill="rgb(242,65,28)" fg:x="56538" fg:w="15"/><text x="38.8776%" y="847.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (15 samples, 0.01%)</title><rect x="38.6276%" y="821" width="0.0102%" height="15" fill="rgb(252,132,53)" fg:x="56538" fg:w="15"/><text x="38.8776%" y="831.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (15 samples, 0.01%)</title><rect x="38.6276%" y="805" width="0.0102%" height="15" fill="rgb(224,159,50)" fg:x="56538" fg:w="15"/><text x="38.8776%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (15 samples, 0.01%)</title><rect x="38.6276%" y="789" width="0.0102%" height="15" fill="rgb(224,93,4)" fg:x="56538" fg:w="15"/><text x="38.8776%" y="799.50"></text></g><g><title>HandleArea::oops_do (19 samples, 0.01%)</title><rect x="38.6556%" y="789" width="0.0130%" height="15" fill="rgb(208,81,34)" fg:x="56579" fg:w="19"/><text x="38.9056%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (41 samples, 0.03%)</title><rect x="38.6788%" y="741" width="0.0280%" height="15" fill="rgb(233,92,54)" fg:x="56613" fg:w="41"/><text x="38.9288%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (30 samples, 0.02%)</title><rect x="38.6863%" y="725" width="0.0205%" height="15" fill="rgb(237,21,14)" fg:x="56624" fg:w="30"/><text x="38.9363%" y="735.50"></text></g><g><title>InterpreterOopMap::iterate_oop (55 samples, 0.04%)</title><rect x="38.6699%" y="773" width="0.0376%" height="15" fill="rgb(249,128,51)" fg:x="56600" fg:w="55"/><text x="38.9199%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (52 samples, 0.04%)</title><rect x="38.6720%" y="757" width="0.0355%" height="15" fill="rgb(223,129,24)" fg:x="56603" fg:w="52"/><text x="38.9220%" y="767.50"></text></g><g><title>G1RootProcessor::process_java_roots (103 samples, 0.07%)</title><rect x="38.6446%" y="853" width="0.0704%" height="15" fill="rgb(231,168,25)" fg:x="56563" fg:w="103"/><text x="38.8946%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (90 samples, 0.06%)</title><rect x="38.6535%" y="837" width="0.0615%" height="15" fill="rgb(224,39,20)" fg:x="56576" fg:w="90"/><text x="38.9035%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (90 samples, 0.06%)</title><rect x="38.6535%" y="821" width="0.0615%" height="15" fill="rgb(225,152,53)" fg:x="56576" fg:w="90"/><text x="38.9035%" y="831.50"></text></g><g><title>JavaThread::oops_do (90 samples, 0.06%)</title><rect x="38.6535%" y="805" width="0.0615%" height="15" fill="rgb(252,17,24)" fg:x="56576" fg:w="90"/><text x="38.9035%" y="815.50"></text></g><g><title>frame::oops_interpreted_do (67 samples, 0.05%)</title><rect x="38.6692%" y="789" width="0.0458%" height="15" fill="rgb(250,114,30)" fg:x="56599" fg:w="67"/><text x="38.9192%" y="799.50"></text></g><g><title>G1ParTask::work (266 samples, 0.18%)</title><rect x="38.5408%" y="885" width="0.1817%" height="15" fill="rgb(229,5,4)" fg:x="56411" fg:w="266"/><text x="38.7908%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (116 samples, 0.08%)</title><rect x="38.6433%" y="869" width="0.0793%" height="15" fill="rgb(225,176,49)" fg:x="56561" fg:w="116"/><text x="38.8933%" y="879.50"></text></g><g><title>RefProcPhase2Task::work (16 samples, 0.01%)</title><rect x="38.7314%" y="869" width="0.0109%" height="15" fill="rgb(224,221,49)" fg:x="56690" fg:w="16"/><text x="38.9814%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (34 samples, 0.02%)</title><rect x="38.7314%" y="885" width="0.0232%" height="15" fill="rgb(253,169,27)" fg:x="56690" fg:w="34"/><text x="38.9814%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (18 samples, 0.01%)</title><rect x="38.7423%" y="869" width="0.0123%" height="15" fill="rgb(211,206,16)" fg:x="56706" fg:w="18"/><text x="38.9923%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (18 samples, 0.01%)</title><rect x="38.7423%" y="853" width="0.0123%" height="15" fill="rgb(244,87,35)" fg:x="56706" fg:w="18"/><text x="38.9923%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (18 samples, 0.01%)</title><rect x="38.7423%" y="837" width="0.0123%" height="15" fill="rgb(246,28,10)" fg:x="56706" fg:w="18"/><text x="38.9923%" y="847.50"></text></g><g><title>SpinPause (18 samples, 0.01%)</title><rect x="38.7423%" y="821" width="0.0123%" height="15" fill="rgb(229,12,44)" fg:x="56706" fg:w="18"/><text x="38.9923%" y="831.50"></text></g><g><title>JavaThread::nmethods_do (20 samples, 0.01%)</title><rect x="38.7581%" y="853" width="0.0137%" height="15" fill="rgb(210,145,37)" fg:x="56729" fg:w="20"/><text x="39.0081%" y="863.50"></text></g><g><title>frame::sender (19 samples, 0.01%)</title><rect x="38.7587%" y="837" width="0.0130%" height="15" fill="rgb(227,112,52)" fg:x="56730" fg:w="19"/><text x="39.0087%" y="847.50"></text></g><g><title>ParallelSPCleanupTask::work (38 samples, 0.03%)</title><rect x="38.7553%" y="885" width="0.0260%" height="15" fill="rgb(238,155,34)" fg:x="56725" fg:w="38"/><text x="39.0053%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (36 samples, 0.02%)</title><rect x="38.7567%" y="869" width="0.0246%" height="15" fill="rgb(239,226,36)" fg:x="56727" fg:w="36"/><text x="39.0067%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.03%)</title><rect x="38.7888%" y="661" width="0.0342%" height="15" fill="rgb(230,16,23)" fg:x="56774" fg:w="50"/><text x="39.0388%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.03%)</title><rect x="38.7895%" y="645" width="0.0335%" height="15" fill="rgb(236,171,36)" fg:x="56775" fg:w="49"/><text x="39.0395%" y="655.50"></text></g><g><title>native_write_msr (48 samples, 0.03%)</title><rect x="38.7902%" y="629" width="0.0328%" height="15" fill="rgb(221,22,14)" fg:x="56776" fg:w="48"/><text x="39.0402%" y="639.50"></text></g><g><title>finish_task_switch (52 samples, 0.04%)</title><rect x="38.7888%" y="677" width="0.0355%" height="15" fill="rgb(242,43,11)" fg:x="56774" fg:w="52"/><text x="39.0388%" y="687.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.05%)</title><rect x="38.7840%" y="725" width="0.0465%" height="15" fill="rgb(232,69,23)" fg:x="56767" fg:w="68"/><text x="39.0340%" y="735.50"></text></g><g><title>schedule (66 samples, 0.05%)</title><rect x="38.7854%" y="709" width="0.0451%" height="15" fill="rgb(216,180,54)" fg:x="56769" fg:w="66"/><text x="39.0354%" y="719.50"></text></g><g><title>__schedule (66 samples, 0.05%)</title><rect x="38.7854%" y="693" width="0.0451%" height="15" fill="rgb(216,5,24)" fg:x="56769" fg:w="66"/><text x="39.0354%" y="703.50"></text></g><g><title>do_syscall_64 (72 samples, 0.05%)</title><rect x="38.7820%" y="789" width="0.0492%" height="15" fill="rgb(225,89,9)" fg:x="56764" fg:w="72"/><text x="39.0320%" y="799.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.05%)</title><rect x="38.7820%" y="773" width="0.0492%" height="15" fill="rgb(243,75,33)" fg:x="56764" fg:w="72"/><text x="39.0320%" y="783.50"></text></g><g><title>do_futex (71 samples, 0.05%)</title><rect x="38.7826%" y="757" width="0.0485%" height="15" fill="rgb(247,141,45)" fg:x="56765" fg:w="71"/><text x="39.0326%" y="767.50"></text></g><g><title>futex_wait (70 samples, 0.05%)</title><rect x="38.7833%" y="741" width="0.0478%" height="15" fill="rgb(232,177,36)" fg:x="56766" fg:w="70"/><text x="39.0333%" y="751.50"></text></g><g><title>GC_Thread#5 (442 samples, 0.30%)</title><rect x="38.5299%" y="981" width="0.3020%" height="15" fill="rgb(219,125,36)" fg:x="56395" fg:w="442"/><text x="38.7799%" y="991.50"></text></g><g><title>__GI___clone (431 samples, 0.29%)</title><rect x="38.5374%" y="965" width="0.2945%" height="15" fill="rgb(227,94,9)" fg:x="56406" fg:w="431"/><text x="38.7874%" y="975.50"></text></g><g><title>start_thread (431 samples, 0.29%)</title><rect x="38.5374%" y="949" width="0.2945%" height="15" fill="rgb(240,34,52)" fg:x="56406" fg:w="431"/><text x="38.7874%" y="959.50"></text></g><g><title>thread_native_entry (431 samples, 0.29%)</title><rect x="38.5374%" y="933" width="0.2945%" height="15" fill="rgb(216,45,12)" fg:x="56406" fg:w="431"/><text x="38.7874%" y="943.50"></text></g><g><title>Thread::call_run (431 samples, 0.29%)</title><rect x="38.5374%" y="917" width="0.2945%" height="15" fill="rgb(246,21,19)" fg:x="56406" fg:w="431"/><text x="38.7874%" y="927.50"></text></g><g><title>GangWorker::loop (431 samples, 0.29%)</title><rect x="38.5374%" y="901" width="0.2945%" height="15" fill="rgb(213,98,42)" fg:x="56406" fg:w="431"/><text x="38.7874%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (74 samples, 0.05%)</title><rect x="38.7813%" y="885" width="0.0506%" height="15" fill="rgb(250,136,47)" fg:x="56763" fg:w="74"/><text x="39.0313%" y="895.50"></text></g><g><title>PosixSemaphore::wait (74 samples, 0.05%)</title><rect x="38.7813%" y="869" width="0.0506%" height="15" fill="rgb(251,124,27)" fg:x="56763" fg:w="74"/><text x="39.0313%" y="879.50"></text></g><g><title>__new_sem_wait_slow (74 samples, 0.05%)</title><rect x="38.7813%" y="853" width="0.0506%" height="15" fill="rgb(229,180,14)" fg:x="56763" fg:w="74"/><text x="39.0313%" y="863.50"></text></g><g><title>do_futex_wait (74 samples, 0.05%)</title><rect x="38.7813%" y="837" width="0.0506%" height="15" fill="rgb(245,216,25)" fg:x="56763" fg:w="74"/><text x="39.0313%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (74 samples, 0.05%)</title><rect x="38.7813%" y="821" width="0.0506%" height="15" fill="rgb(251,43,5)" fg:x="56763" fg:w="74"/><text x="39.0313%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.05%)</title><rect x="38.7820%" y="805" width="0.0499%" height="15" fill="rgb(250,128,24)" fg:x="56764" fg:w="73"/><text x="39.0320%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (22 samples, 0.02%)</title><rect x="38.8558%" y="837" width="0.0150%" height="15" fill="rgb(217,117,27)" fg:x="56872" fg:w="22"/><text x="39.1058%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (31 samples, 0.02%)</title><rect x="38.8510%" y="853" width="0.0212%" height="15" fill="rgb(245,147,4)" fg:x="56865" fg:w="31"/><text x="39.1010%" y="863.50"></text></g><g><title>SpinPause (66 samples, 0.05%)</title><rect x="38.8735%" y="853" width="0.0451%" height="15" fill="rgb(242,201,35)" fg:x="56898" fg:w="66"/><text x="39.1235%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (106 samples, 0.07%)</title><rect x="38.8469%" y="869" width="0.0724%" height="15" fill="rgb(218,181,1)" fg:x="56859" fg:w="106"/><text x="39.0969%" y="879.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (16 samples, 0.01%)</title><rect x="38.9268%" y="853" width="0.0109%" height="15" fill="rgb(222,6,29)" fg:x="56976" fg:w="16"/><text x="39.1768%" y="863.50"></text></g><g><title>G1CLDScanClosure::do_cld (16 samples, 0.01%)</title><rect x="38.9268%" y="837" width="0.0109%" height="15" fill="rgb(208,186,3)" fg:x="56976" fg:w="16"/><text x="39.1768%" y="847.50"></text></g><g><title>ClassLoaderData::oops_do (16 samples, 0.01%)</title><rect x="38.9268%" y="821" width="0.0109%" height="15" fill="rgb(216,36,26)" fg:x="56976" fg:w="16"/><text x="39.1768%" y="831.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (64 samples, 0.04%)</title><rect x="38.9377%" y="837" width="0.0437%" height="15" fill="rgb(248,201,23)" fg:x="56992" fg:w="64"/><text x="39.1877%" y="847.50"></text></g><g><title>G1CLDScanClosure::do_cld (64 samples, 0.04%)</title><rect x="38.9377%" y="821" width="0.0437%" height="15" fill="rgb(251,170,31)" fg:x="56992" fg:w="64"/><text x="39.1877%" y="831.50"></text></g><g><title>ClassLoaderData::oops_do (63 samples, 0.04%)</title><rect x="38.9384%" y="805" width="0.0430%" height="15" fill="rgb(207,110,25)" fg:x="56993" fg:w="63"/><text x="39.1884%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (47 samples, 0.03%)</title><rect x="38.9494%" y="789" width="0.0321%" height="15" fill="rgb(250,54,15)" fg:x="57009" fg:w="47"/><text x="39.1994%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (37 samples, 0.03%)</title><rect x="38.9562%" y="773" width="0.0253%" height="15" fill="rgb(227,68,33)" fg:x="57019" fg:w="37"/><text x="39.2062%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (35 samples, 0.02%)</title><rect x="38.9576%" y="757" width="0.0239%" height="15" fill="rgb(238,34,41)" fg:x="57021" fg:w="35"/><text x="39.2076%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (24 samples, 0.02%)</title><rect x="38.9890%" y="741" width="0.0164%" height="15" fill="rgb(220,11,15)" fg:x="57067" fg:w="24"/><text x="39.2390%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (18 samples, 0.01%)</title><rect x="38.9931%" y="725" width="0.0123%" height="15" fill="rgb(246,111,35)" fg:x="57073" fg:w="18"/><text x="39.2431%" y="735.50"></text></g><g><title>InterpreterOopMap::iterate_oop (35 samples, 0.02%)</title><rect x="38.9828%" y="773" width="0.0239%" height="15" fill="rgb(209,88,53)" fg:x="57058" fg:w="35"/><text x="39.2328%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (35 samples, 0.02%)</title><rect x="38.9828%" y="757" width="0.0239%" height="15" fill="rgb(231,185,47)" fg:x="57058" fg:w="35"/><text x="39.2328%" y="767.50"></text></g><g><title>G1RootProcessor::process_java_roots (103 samples, 0.07%)</title><rect x="38.9377%" y="853" width="0.0704%" height="15" fill="rgb(233,154,1)" fg:x="56992" fg:w="103"/><text x="39.1877%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (39 samples, 0.03%)</title><rect x="38.9815%" y="837" width="0.0266%" height="15" fill="rgb(225,15,46)" fg:x="57056" fg:w="39"/><text x="39.2315%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (39 samples, 0.03%)</title><rect x="38.9815%" y="821" width="0.0266%" height="15" fill="rgb(211,135,41)" fg:x="57056" fg:w="39"/><text x="39.2315%" y="831.50"></text></g><g><title>JavaThread::oops_do (39 samples, 0.03%)</title><rect x="38.9815%" y="805" width="0.0266%" height="15" fill="rgb(208,54,0)" fg:x="57056" fg:w="39"/><text x="39.2315%" y="815.50"></text></g><g><title>frame::oops_interpreted_do (37 samples, 0.03%)</title><rect x="38.9828%" y="789" width="0.0253%" height="15" fill="rgb(244,136,14)" fg:x="57058" fg:w="37"/><text x="39.2328%" y="799.50"></text></g><g><title>G1ParTask::work (241 samples, 0.16%)</title><rect x="38.8469%" y="885" width="0.1647%" height="15" fill="rgb(241,56,14)" fg:x="56859" fg:w="241"/><text x="39.0969%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (124 samples, 0.08%)</title><rect x="38.9268%" y="869" width="0.0847%" height="15" fill="rgb(205,80,24)" fg:x="56976" fg:w="124"/><text x="39.1768%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (23 samples, 0.02%)</title><rect x="39.0170%" y="885" width="0.0157%" height="15" fill="rgb(220,57,4)" fg:x="57108" fg:w="23"/><text x="39.2670%" y="895.50"></text></g><g><title>ParallelSPCleanupTask::work (19 samples, 0.01%)</title><rect x="39.0348%" y="885" width="0.0130%" height="15" fill="rgb(226,193,50)" fg:x="57134" fg:w="19"/><text x="39.2848%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (16 samples, 0.01%)</title><rect x="39.0368%" y="869" width="0.0109%" height="15" fill="rgb(231,168,22)" fg:x="57137" fg:w="16"/><text x="39.2868%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.03%)</title><rect x="39.0566%" y="661" width="0.0321%" height="15" fill="rgb(254,215,14)" fg:x="57166" fg:w="47"/><text x="39.3066%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.03%)</title><rect x="39.0573%" y="645" width="0.0314%" height="15" fill="rgb(211,115,16)" fg:x="57167" fg:w="46"/><text x="39.3073%" y="655.50"></text></g><g><title>native_write_msr (46 samples, 0.03%)</title><rect x="39.0573%" y="629" width="0.0314%" height="15" fill="rgb(236,210,16)" fg:x="57167" fg:w="46"/><text x="39.3073%" y="639.50"></text></g><g><title>finish_task_switch (49 samples, 0.03%)</title><rect x="39.0566%" y="677" width="0.0335%" height="15" fill="rgb(221,94,12)" fg:x="57166" fg:w="49"/><text x="39.3066%" y="687.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.04%)</title><rect x="39.0512%" y="725" width="0.0437%" height="15" fill="rgb(235,218,49)" fg:x="57158" fg:w="64"/><text x="39.3012%" y="735.50"></text></g><g><title>schedule (62 samples, 0.04%)</title><rect x="39.0525%" y="709" width="0.0424%" height="15" fill="rgb(217,114,14)" fg:x="57160" fg:w="62"/><text x="39.3025%" y="719.50"></text></g><g><title>__schedule (61 samples, 0.04%)</title><rect x="39.0532%" y="693" width="0.0417%" height="15" fill="rgb(216,145,22)" fg:x="57161" fg:w="61"/><text x="39.3032%" y="703.50"></text></g><g><title>do_syscall_64 (68 samples, 0.05%)</title><rect x="39.0491%" y="789" width="0.0465%" height="15" fill="rgb(217,112,39)" fg:x="57155" fg:w="68"/><text x="39.2991%" y="799.50"></text></g><g><title>__x64_sys_futex (68 samples, 0.05%)</title><rect x="39.0491%" y="773" width="0.0465%" height="15" fill="rgb(225,85,32)" fg:x="57155" fg:w="68"/><text x="39.2991%" y="783.50"></text></g><g><title>do_futex (68 samples, 0.05%)</title><rect x="39.0491%" y="757" width="0.0465%" height="15" fill="rgb(245,209,47)" fg:x="57155" fg:w="68"/><text x="39.2991%" y="767.50"></text></g><g><title>futex_wait (66 samples, 0.05%)</title><rect x="39.0505%" y="741" width="0.0451%" height="15" fill="rgb(218,220,15)" fg:x="57157" fg:w="66"/><text x="39.3005%" y="751.50"></text></g><g><title>__GI___clone (380 samples, 0.26%)</title><rect x="38.8387%" y="965" width="0.2596%" height="15" fill="rgb(222,202,31)" fg:x="56847" fg:w="380"/><text x="39.0887%" y="975.50"></text></g><g><title>start_thread (380 samples, 0.26%)</title><rect x="38.8387%" y="949" width="0.2596%" height="15" fill="rgb(243,203,4)" fg:x="56847" fg:w="380"/><text x="39.0887%" y="959.50"></text></g><g><title>thread_native_entry (380 samples, 0.26%)</title><rect x="38.8387%" y="933" width="0.2596%" height="15" fill="rgb(237,92,17)" fg:x="56847" fg:w="380"/><text x="39.0887%" y="943.50"></text></g><g><title>Thread::call_run (380 samples, 0.26%)</title><rect x="38.8387%" y="917" width="0.2596%" height="15" fill="rgb(231,119,7)" fg:x="56847" fg:w="380"/><text x="39.0887%" y="927.50"></text></g><g><title>GangWorker::loop (380 samples, 0.26%)</title><rect x="38.8387%" y="901" width="0.2596%" height="15" fill="rgb(237,82,41)" fg:x="56847" fg:w="380"/><text x="39.0887%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (74 samples, 0.05%)</title><rect x="39.0477%" y="885" width="0.0506%" height="15" fill="rgb(226,81,48)" fg:x="57153" fg:w="74"/><text x="39.2977%" y="895.50"></text></g><g><title>PosixSemaphore::wait (74 samples, 0.05%)</title><rect x="39.0477%" y="869" width="0.0506%" height="15" fill="rgb(234,70,51)" fg:x="57153" fg:w="74"/><text x="39.2977%" y="879.50"></text></g><g><title>__new_sem_wait_slow (74 samples, 0.05%)</title><rect x="39.0477%" y="853" width="0.0506%" height="15" fill="rgb(251,86,4)" fg:x="57153" fg:w="74"/><text x="39.2977%" y="863.50"></text></g><g><title>do_futex_wait (73 samples, 0.05%)</title><rect x="39.0484%" y="837" width="0.0499%" height="15" fill="rgb(244,144,28)" fg:x="57154" fg:w="73"/><text x="39.2984%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (73 samples, 0.05%)</title><rect x="39.0484%" y="821" width="0.0499%" height="15" fill="rgb(232,161,39)" fg:x="57154" fg:w="73"/><text x="39.2984%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.05%)</title><rect x="39.0491%" y="805" width="0.0492%" height="15" fill="rgb(247,34,51)" fg:x="57155" fg:w="72"/><text x="39.2991%" y="815.50"></text></g><g><title>GC_Thread#6 (392 samples, 0.27%)</title><rect x="38.8318%" y="981" width="0.2678%" height="15" fill="rgb(225,132,2)" fg:x="56837" fg:w="392"/><text x="39.0818%" y="991.50"></text></g><g><title>G1ParScanThreadState::trim_queue (46 samples, 0.03%)</title><rect x="39.1099%" y="853" width="0.0314%" height="15" fill="rgb(209,159,44)" fg:x="57244" fg:w="46"/><text x="39.3599%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="39.1215%" y="837" width="0.0198%" height="15" fill="rgb(251,214,1)" fg:x="57261" fg:w="29"/><text x="39.3715%" y="847.50"></text></g><g><title>SpinPause (72 samples, 0.05%)</title><rect x="39.1441%" y="853" width="0.0492%" height="15" fill="rgb(247,84,47)" fg:x="57294" fg:w="72"/><text x="39.3941%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (127 samples, 0.09%)</title><rect x="39.1072%" y="869" width="0.0868%" height="15" fill="rgb(240,111,43)" fg:x="57240" fg:w="127"/><text x="39.3572%" y="879.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (15 samples, 0.01%)</title><rect x="39.1980%" y="773" width="0.0102%" height="15" fill="rgb(215,214,35)" fg:x="57373" fg:w="15"/><text x="39.4480%" y="783.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (22 samples, 0.02%)</title><rect x="39.1939%" y="837" width="0.0150%" height="15" fill="rgb(248,207,23)" fg:x="57367" fg:w="22"/><text x="39.4439%" y="847.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (22 samples, 0.02%)</title><rect x="39.1939%" y="821" width="0.0150%" height="15" fill="rgb(214,186,4)" fg:x="57367" fg:w="22"/><text x="39.4439%" y="831.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (22 samples, 0.02%)</title><rect x="39.1939%" y="805" width="0.0150%" height="15" fill="rgb(220,133,22)" fg:x="57367" fg:w="22"/><text x="39.4439%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (22 samples, 0.02%)</title><rect x="39.1939%" y="789" width="0.0150%" height="15" fill="rgb(239,134,19)" fg:x="57367" fg:w="22"/><text x="39.4439%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (23 samples, 0.02%)</title><rect x="39.1939%" y="869" width="0.0157%" height="15" fill="rgb(250,140,9)" fg:x="57367" fg:w="23"/><text x="39.4439%" y="879.50"></text></g><g><title>G1RemSet::update_rem_set (23 samples, 0.02%)</title><rect x="39.1939%" y="853" width="0.0157%" height="15" fill="rgb(225,59,14)" fg:x="57367" fg:w="23"/><text x="39.4439%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (15 samples, 0.01%)</title><rect x="39.2103%" y="821" width="0.0102%" height="15" fill="rgb(214,152,51)" fg:x="57391" fg:w="15"/><text x="39.4603%" y="831.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (15 samples, 0.01%)</title><rect x="39.2103%" y="805" width="0.0102%" height="15" fill="rgb(251,227,43)" fg:x="57391" fg:w="15"/><text x="39.4603%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (15 samples, 0.01%)</title><rect x="39.2103%" y="789" width="0.0102%" height="15" fill="rgb(241,96,17)" fg:x="57391" fg:w="15"/><text x="39.4603%" y="799.50"></text></g><g><title>G1RemSet::scan_rem_set (26 samples, 0.02%)</title><rect x="39.2097%" y="869" width="0.0178%" height="15" fill="rgb(234,198,43)" fg:x="57390" fg:w="26"/><text x="39.4597%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (26 samples, 0.02%)</title><rect x="39.2097%" y="853" width="0.0178%" height="15" fill="rgb(220,108,29)" fg:x="57390" fg:w="26"/><text x="39.4597%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (26 samples, 0.02%)</title><rect x="39.2097%" y="837" width="0.0178%" height="15" fill="rgb(226,163,33)" fg:x="57390" fg:w="26"/><text x="39.4597%" y="847.50"></text></g><g><title>G1CodeBlobClosure::do_code_blob (15 samples, 0.01%)</title><rect x="39.2274%" y="789" width="0.0102%" height="15" fill="rgb(205,194,45)" fg:x="57416" fg:w="15"/><text x="39.4774%" y="799.50"></text></g><g><title>nmethod::oops_do (15 samples, 0.01%)</title><rect x="39.2274%" y="773" width="0.0102%" height="15" fill="rgb(206,143,44)" fg:x="57416" fg:w="15"/><text x="39.4774%" y="783.50"></text></g><g><title>G1CodeBlobClosure::HeapRegionGatheringOopClosure::do_oop (15 samples, 0.01%)</title><rect x="39.2274%" y="757" width="0.0102%" height="15" fill="rgb(236,136,36)" fg:x="57416" fg:w="15"/><text x="39.4774%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (15 samples, 0.01%)</title><rect x="39.2274%" y="741" width="0.0102%" height="15" fill="rgb(249,172,42)" fg:x="57416" fg:w="15"/><text x="39.4774%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (63 samples, 0.04%)</title><rect x="39.2274%" y="853" width="0.0430%" height="15" fill="rgb(216,139,23)" fg:x="57416" fg:w="63"/><text x="39.4774%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (63 samples, 0.04%)</title><rect x="39.2274%" y="837" width="0.0430%" height="15" fill="rgb(207,166,20)" fg:x="57416" fg:w="63"/><text x="39.4774%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (63 samples, 0.04%)</title><rect x="39.2274%" y="821" width="0.0430%" height="15" fill="rgb(210,209,22)" fg:x="57416" fg:w="63"/><text x="39.4774%" y="831.50"></text></g><g><title>JavaThread::oops_do (63 samples, 0.04%)</title><rect x="39.2274%" y="805" width="0.0430%" height="15" fill="rgb(232,118,20)" fg:x="57416" fg:w="63"/><text x="39.4774%" y="815.50"></text></g><g><title>frame::oops_interpreted_do (23 samples, 0.02%)</title><rect x="39.2548%" y="789" width="0.0157%" height="15" fill="rgb(238,113,42)" fg:x="57456" fg:w="23"/><text x="39.5048%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (23 samples, 0.02%)</title><rect x="39.2548%" y="773" width="0.0157%" height="15" fill="rgb(231,42,5)" fg:x="57456" fg:w="23"/><text x="39.5048%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (19 samples, 0.01%)</title><rect x="39.2575%" y="757" width="0.0130%" height="15" fill="rgb(243,166,24)" fg:x="57460" fg:w="19"/><text x="39.5075%" y="767.50"></text></g><g><title>G1ParTask::work (254 samples, 0.17%)</title><rect x="39.1072%" y="885" width="0.1735%" height="15" fill="rgb(237,226,12)" fg:x="57240" fg:w="254"/><text x="39.3572%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (78 samples, 0.05%)</title><rect x="39.2274%" y="869" width="0.0533%" height="15" fill="rgb(229,133,24)" fg:x="57416" fg:w="78"/><text x="39.4774%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (26 samples, 0.02%)</title><rect x="39.2889%" y="885" width="0.0178%" height="15" fill="rgb(238,33,43)" fg:x="57506" fg:w="26"/><text x="39.5389%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (24 samples, 0.02%)</title><rect x="39.2903%" y="869" width="0.0164%" height="15" fill="rgb(227,59,38)" fg:x="57508" fg:w="24"/><text x="39.5403%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (24 samples, 0.02%)</title><rect x="39.2903%" y="853" width="0.0164%" height="15" fill="rgb(230,97,0)" fg:x="57508" fg:w="24"/><text x="39.5403%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (24 samples, 0.02%)</title><rect x="39.2903%" y="837" width="0.0164%" height="15" fill="rgb(250,173,50)" fg:x="57508" fg:w="24"/><text x="39.5403%" y="847.50"></text></g><g><title>SpinPause (24 samples, 0.02%)</title><rect x="39.2903%" y="821" width="0.0164%" height="15" fill="rgb(240,15,50)" fg:x="57508" fg:w="24"/><text x="39.5403%" y="831.50"></text></g><g><title>ParallelSPCleanupTask::work (18 samples, 0.01%)</title><rect x="39.3067%" y="885" width="0.0123%" height="15" fill="rgb(221,93,22)" fg:x="57532" fg:w="18"/><text x="39.5567%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (15 samples, 0.01%)</title><rect x="39.3087%" y="869" width="0.0102%" height="15" fill="rgb(245,180,53)" fg:x="57535" fg:w="15"/><text x="39.5587%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.04%)</title><rect x="39.3265%" y="661" width="0.0403%" height="15" fill="rgb(231,88,51)" fg:x="57561" fg:w="59"/><text x="39.5765%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.04%)</title><rect x="39.3265%" y="645" width="0.0403%" height="15" fill="rgb(240,58,21)" fg:x="57561" fg:w="59"/><text x="39.5765%" y="655.50"></text></g><g><title>native_write_msr (58 samples, 0.04%)</title><rect x="39.3272%" y="629" width="0.0396%" height="15" fill="rgb(237,21,10)" fg:x="57562" fg:w="58"/><text x="39.5772%" y="639.50"></text></g><g><title>finish_task_switch (63 samples, 0.04%)</title><rect x="39.3251%" y="677" width="0.0430%" height="15" fill="rgb(218,43,11)" fg:x="57559" fg:w="63"/><text x="39.5751%" y="687.50"></text></g><g><title>do_syscall_64 (77 samples, 0.05%)</title><rect x="39.3217%" y="789" width="0.0526%" height="15" fill="rgb(218,221,29)" fg:x="57554" fg:w="77"/><text x="39.5717%" y="799.50"></text></g><g><title>__x64_sys_futex (77 samples, 0.05%)</title><rect x="39.3217%" y="773" width="0.0526%" height="15" fill="rgb(214,118,42)" fg:x="57554" fg:w="77"/><text x="39.5717%" y="783.50"></text></g><g><title>do_futex (76 samples, 0.05%)</title><rect x="39.3224%" y="757" width="0.0519%" height="15" fill="rgb(251,200,26)" fg:x="57555" fg:w="76"/><text x="39.5724%" y="767.50"></text></g><g><title>futex_wait (75 samples, 0.05%)</title><rect x="39.3231%" y="741" width="0.0512%" height="15" fill="rgb(237,101,39)" fg:x="57556" fg:w="75"/><text x="39.5731%" y="751.50"></text></g><g><title>futex_wait_queue_me (75 samples, 0.05%)</title><rect x="39.3231%" y="725" width="0.0512%" height="15" fill="rgb(251,117,11)" fg:x="57556" fg:w="75"/><text x="39.5731%" y="735.50"></text></g><g><title>schedule (74 samples, 0.05%)</title><rect x="39.3238%" y="709" width="0.0506%" height="15" fill="rgb(216,223,23)" fg:x="57557" fg:w="74"/><text x="39.5738%" y="719.50"></text></g><g><title>__schedule (74 samples, 0.05%)</title><rect x="39.3238%" y="693" width="0.0506%" height="15" fill="rgb(251,54,12)" fg:x="57557" fg:w="74"/><text x="39.5738%" y="703.50"></text></g><g><title>__GI___clone (396 samples, 0.27%)</title><rect x="39.1044%" y="965" width="0.2706%" height="15" fill="rgb(254,176,54)" fg:x="57236" fg:w="396"/><text x="39.3544%" y="975.50"></text></g><g><title>start_thread (396 samples, 0.27%)</title><rect x="39.1044%" y="949" width="0.2706%" height="15" fill="rgb(210,32,8)" fg:x="57236" fg:w="396"/><text x="39.3544%" y="959.50"></text></g><g><title>thread_native_entry (396 samples, 0.27%)</title><rect x="39.1044%" y="933" width="0.2706%" height="15" fill="rgb(235,52,38)" fg:x="57236" fg:w="396"/><text x="39.3544%" y="943.50"></text></g><g><title>Thread::call_run (396 samples, 0.27%)</title><rect x="39.1044%" y="917" width="0.2706%" height="15" fill="rgb(231,4,44)" fg:x="57236" fg:w="396"/><text x="39.3544%" y="927.50"></text></g><g><title>GangWorker::loop (396 samples, 0.27%)</title><rect x="39.1044%" y="901" width="0.2706%" height="15" fill="rgb(249,2,32)" fg:x="57236" fg:w="396"/><text x="39.3544%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (81 samples, 0.06%)</title><rect x="39.3197%" y="885" width="0.0553%" height="15" fill="rgb(224,65,26)" fg:x="57551" fg:w="81"/><text x="39.5697%" y="895.50"></text></g><g><title>PosixSemaphore::wait (81 samples, 0.06%)</title><rect x="39.3197%" y="869" width="0.0553%" height="15" fill="rgb(250,73,40)" fg:x="57551" fg:w="81"/><text x="39.5697%" y="879.50"></text></g><g><title>__new_sem_wait_slow (81 samples, 0.06%)</title><rect x="39.3197%" y="853" width="0.0553%" height="15" fill="rgb(253,177,16)" fg:x="57551" fg:w="81"/><text x="39.5697%" y="863.50"></text></g><g><title>do_futex_wait (80 samples, 0.05%)</title><rect x="39.3203%" y="837" width="0.0547%" height="15" fill="rgb(217,32,34)" fg:x="57552" fg:w="80"/><text x="39.5703%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (80 samples, 0.05%)</title><rect x="39.3203%" y="821" width="0.0547%" height="15" fill="rgb(212,7,10)" fg:x="57552" fg:w="80"/><text x="39.5703%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.05%)</title><rect x="39.3217%" y="805" width="0.0533%" height="15" fill="rgb(245,89,8)" fg:x="57554" fg:w="78"/><text x="39.5717%" y="815.50"></text></g><g><title>GC_Thread#7 (404 samples, 0.28%)</title><rect x="39.0997%" y="981" width="0.2760%" height="15" fill="rgb(237,16,53)" fg:x="57229" fg:w="404"/><text x="39.3497%" y="991.50"></text></g><g><title>Reference_Handl (27 samples, 0.02%)</title><rect x="39.3770%" y="981" width="0.0184%" height="15" fill="rgb(250,204,30)" fg:x="57635" fg:w="27"/><text x="39.6270%" y="991.50"></text></g><g><title>[perf-270039.map] (27 samples, 0.02%)</title><rect x="39.3770%" y="965" width="0.0184%" height="15" fill="rgb(208,77,27)" fg:x="57635" fg:w="27"/><text x="39.6270%" y="975.50"></text></g><g><title>[perf-270039.map] (92 samples, 0.06%)</title><rect x="39.3982%" y="965" width="0.0629%" height="15" fill="rgb(250,204,28)" fg:x="57666" fg:w="92"/><text x="39.6482%" y="975.50"></text></g><g><title>Service_Thread (118 samples, 0.08%)</title><rect x="39.3962%" y="981" width="0.0806%" height="15" fill="rgb(244,63,21)" fg:x="57663" fg:w="118"/><text x="39.6462%" y="991.50"></text></g><g><title>hrtimer_start_range_ns (15 samples, 0.01%)</title><rect x="39.5356%" y="677" width="0.0102%" height="15" fill="rgb(236,85,44)" fg:x="57867" fg:w="15"/><text x="39.7856%" y="687.50"></text></g><g><title>dequeue_task_fair (22 samples, 0.02%)</title><rect x="39.5513%" y="645" width="0.0150%" height="15" fill="rgb(215,98,4)" fg:x="57890" fg:w="22"/><text x="39.8013%" y="655.50"></text></g><g><title>dequeue_entity (21 samples, 0.01%)</title><rect x="39.5519%" y="629" width="0.0143%" height="15" fill="rgb(235,38,11)" fg:x="57891" fg:w="21"/><text x="39.8019%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (90 samples, 0.06%)</title><rect x="39.5690%" y="629" width="0.0615%" height="15" fill="rgb(254,186,25)" fg:x="57916" fg:w="90"/><text x="39.8190%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (88 samples, 0.06%)</title><rect x="39.5704%" y="613" width="0.0601%" height="15" fill="rgb(225,55,31)" fg:x="57918" fg:w="88"/><text x="39.8204%" y="623.50"></text></g><g><title>native_write_msr (88 samples, 0.06%)</title><rect x="39.5704%" y="597" width="0.0601%" height="15" fill="rgb(211,15,21)" fg:x="57918" fg:w="88"/><text x="39.8204%" y="607.50"></text></g><g><title>finish_task_switch (96 samples, 0.07%)</title><rect x="39.5663%" y="645" width="0.0656%" height="15" fill="rgb(215,187,41)" fg:x="57912" fg:w="96"/><text x="39.8163%" y="655.50"></text></g><g><title>psi_task_change (18 samples, 0.01%)</title><rect x="39.6394%" y="645" width="0.0123%" height="15" fill="rgb(248,69,32)" fg:x="58019" fg:w="18"/><text x="39.8894%" y="655.50"></text></g><g><title>futex_wait_queue_me (178 samples, 0.12%)</title><rect x="39.5315%" y="693" width="0.1216%" height="15" fill="rgb(252,102,52)" fg:x="57861" fg:w="178"/><text x="39.7815%" y="703.50"></text></g><g><title>schedule (156 samples, 0.11%)</title><rect x="39.5465%" y="677" width="0.1066%" height="15" fill="rgb(253,140,32)" fg:x="57883" fg:w="156"/><text x="39.7965%" y="687.50"></text></g><g><title>__schedule (154 samples, 0.11%)</title><rect x="39.5478%" y="661" width="0.1052%" height="15" fill="rgb(216,56,42)" fg:x="57885" fg:w="154"/><text x="39.7978%" y="671.50"></text></g><g><title>hrtimer_cancel (16 samples, 0.01%)</title><rect x="39.6572%" y="693" width="0.0109%" height="15" fill="rgb(216,184,14)" fg:x="58045" fg:w="16"/><text x="39.9072%" y="703.50"></text></g><g><title>do_futex (205 samples, 0.14%)</title><rect x="39.5287%" y="725" width="0.1401%" height="15" fill="rgb(237,187,27)" fg:x="57857" fg:w="205"/><text x="39.7787%" y="735.50"></text></g><g><title>futex_wait (205 samples, 0.14%)</title><rect x="39.5287%" y="709" width="0.1401%" height="15" fill="rgb(219,65,3)" fg:x="57857" fg:w="205"/><text x="39.7787%" y="719.50"></text></g><g><title>__x64_sys_futex (212 samples, 0.14%)</title><rect x="39.5260%" y="741" width="0.1448%" height="15" fill="rgb(245,83,25)" fg:x="57853" fg:w="212"/><text x="39.7760%" y="751.50"></text></g><g><title>do_syscall_64 (215 samples, 0.15%)</title><rect x="39.5246%" y="757" width="0.1469%" height="15" fill="rgb(214,205,45)" fg:x="57851" fg:w="215"/><text x="39.7746%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (224 samples, 0.15%)</title><rect x="39.5239%" y="773" width="0.1530%" height="15" fill="rgb(241,20,18)" fg:x="57850" fg:w="224"/><text x="39.7739%" y="783.50"></text></g><g><title>__pthread_cond_timedwait (237 samples, 0.16%)</title><rect x="39.5171%" y="821" width="0.1619%" height="15" fill="rgb(232,163,23)" fg:x="57840" fg:w="237"/><text x="39.7671%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (237 samples, 0.16%)</title><rect x="39.5171%" y="805" width="0.1619%" height="15" fill="rgb(214,5,46)" fg:x="57840" fg:w="237"/><text x="39.7671%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (234 samples, 0.16%)</title><rect x="39.5192%" y="789" width="0.1599%" height="15" fill="rgb(229,78,17)" fg:x="57843" fg:w="234"/><text x="39.7692%" y="799.50"></text></g><g><title>Monitor::wait (276 samples, 0.19%)</title><rect x="39.5034%" y="869" width="0.1886%" height="15" fill="rgb(248,89,10)" fg:x="57820" fg:w="276"/><text x="39.7534%" y="879.50"></text></g><g><title>Monitor::IWait (274 samples, 0.19%)</title><rect x="39.5048%" y="853" width="0.1872%" height="15" fill="rgb(248,54,15)" fg:x="57822" fg:w="274"/><text x="39.7548%" y="863.50"></text></g><g><title>os::PlatformEvent::park (265 samples, 0.18%)</title><rect x="39.5110%" y="837" width="0.1811%" height="15" fill="rgb(223,116,6)" fg:x="57831" fg:w="265"/><text x="39.7610%" y="847.50"></text></g><g><title>CodeHeap::next_used (15 samples, 0.01%)</title><rect x="39.7036%" y="837" width="0.0102%" height="15" fill="rgb(205,125,38)" fg:x="58113" fg:w="15"/><text x="39.9536%" y="847.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (57 samples, 0.04%)</title><rect x="39.7214%" y="821" width="0.0389%" height="15" fill="rgb(251,78,38)" fg:x="58139" fg:w="57"/><text x="39.9714%" y="831.50"></text></g><g><title>NMethodSweeper::possibly_flush (17 samples, 0.01%)</title><rect x="39.7631%" y="821" width="0.0116%" height="15" fill="rgb(253,78,28)" fg:x="58200" fg:w="17"/><text x="40.0131%" y="831.50"></text></g><g><title>NMethodSweeper::possibly_sweep (126 samples, 0.09%)</title><rect x="39.6920%" y="869" width="0.0861%" height="15" fill="rgb(209,120,3)" fg:x="58096" fg:w="126"/><text x="39.9420%" y="879.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (113 samples, 0.08%)</title><rect x="39.7009%" y="853" width="0.0772%" height="15" fill="rgb(238,229,9)" fg:x="58109" fg:w="113"/><text x="39.9509%" y="863.50"></text></g><g><title>NMethodSweeper::process_compiled_method (86 samples, 0.06%)</title><rect x="39.7193%" y="837" width="0.0588%" height="15" fill="rgb(253,159,18)" fg:x="58136" fg:w="86"/><text x="39.9693%" y="847.50"></text></g><g><title>__GI___clone (423 samples, 0.29%)</title><rect x="39.4911%" y="965" width="0.2890%" height="15" fill="rgb(244,42,34)" fg:x="57802" fg:w="423"/><text x="39.7411%" y="975.50"></text></g><g><title>start_thread (423 samples, 0.29%)</title><rect x="39.4911%" y="949" width="0.2890%" height="15" fill="rgb(224,8,7)" fg:x="57802" fg:w="423"/><text x="39.7411%" y="959.50"></text></g><g><title>thread_native_entry (423 samples, 0.29%)</title><rect x="39.4911%" y="933" width="0.2890%" height="15" fill="rgb(210,201,45)" fg:x="57802" fg:w="423"/><text x="39.7411%" y="943.50"></text></g><g><title>Thread::call_run (423 samples, 0.29%)</title><rect x="39.4911%" y="917" width="0.2890%" height="15" fill="rgb(252,185,21)" fg:x="57802" fg:w="423"/><text x="39.7411%" y="927.50"></text></g><g><title>JavaThread::thread_main_inner (423 samples, 0.29%)</title><rect x="39.4911%" y="901" width="0.2890%" height="15" fill="rgb(223,131,1)" fg:x="57802" fg:w="423"/><text x="39.7411%" y="911.50"></text></g><g><title>NMethodSweeper::sweeper_loop (422 samples, 0.29%)</title><rect x="39.4918%" y="885" width="0.2883%" height="15" fill="rgb(245,141,16)" fg:x="57803" fg:w="422"/><text x="39.7418%" y="895.50"></text></g><g><title>Sweeper_thread (443 samples, 0.30%)</title><rect x="39.4823%" y="981" width="0.3027%" height="15" fill="rgb(229,55,45)" fg:x="57789" fg:w="443"/><text x="39.7323%" y="991.50"></text></g><g><title>[perf-270039.map] (120 samples, 0.08%)</title><rect x="39.7890%" y="965" width="0.0820%" height="15" fill="rgb(208,92,15)" fg:x="58238" fg:w="120"/><text x="40.0390%" y="975.50"></text></g><g><title>Thread-0 (134 samples, 0.09%)</title><rect x="39.7849%" y="981" width="0.0916%" height="15" fill="rgb(234,185,47)" fg:x="58232" fg:w="134"/><text x="40.0349%" y="991.50"></text></g><g><title>finish_task_switch (32 samples, 0.02%)</title><rect x="39.8949%" y="645" width="0.0219%" height="15" fill="rgb(253,104,50)" fg:x="58393" fg:w="32"/><text x="40.1449%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.02%)</title><rect x="39.8963%" y="629" width="0.0205%" height="15" fill="rgb(205,70,7)" fg:x="58395" fg:w="30"/><text x="40.1463%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="39.8963%" y="613" width="0.0205%" height="15" fill="rgb(240,178,43)" fg:x="58395" fg:w="30"/><text x="40.1463%" y="623.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="39.8963%" y="597" width="0.0205%" height="15" fill="rgb(214,112,2)" fg:x="58395" fg:w="30"/><text x="40.1463%" y="607.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.02%)</title><rect x="39.8942%" y="693" width="0.0232%" height="15" fill="rgb(206,46,17)" fg:x="58392" fg:w="34"/><text x="40.1442%" y="703.50"></text></g><g><title>schedule (33 samples, 0.02%)</title><rect x="39.8949%" y="677" width="0.0225%" height="15" fill="rgb(225,220,16)" fg:x="58393" fg:w="33"/><text x="40.1449%" y="687.50"></text></g><g><title>__schedule (33 samples, 0.02%)</title><rect x="39.8949%" y="661" width="0.0225%" height="15" fill="rgb(238,65,40)" fg:x="58393" fg:w="33"/><text x="40.1449%" y="671.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="39.8915%" y="757" width="0.0266%" height="15" fill="rgb(230,151,21)" fg:x="58388" fg:w="39"/><text x="40.1415%" y="767.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.03%)</title><rect x="39.8915%" y="741" width="0.0266%" height="15" fill="rgb(218,58,49)" fg:x="58388" fg:w="39"/><text x="40.1415%" y="751.50"></text></g><g><title>do_futex (39 samples, 0.03%)</title><rect x="39.8915%" y="725" width="0.0266%" height="15" fill="rgb(219,179,14)" fg:x="58388" fg:w="39"/><text x="40.1415%" y="735.50"></text></g><g><title>futex_wait (39 samples, 0.03%)</title><rect x="39.8915%" y="709" width="0.0266%" height="15" fill="rgb(223,72,1)" fg:x="58388" fg:w="39"/><text x="40.1415%" y="719.50"></text></g><g><title>__pthread_cond_timedwait (42 samples, 0.03%)</title><rect x="39.8901%" y="821" width="0.0287%" height="15" fill="rgb(238,126,10)" fg:x="58386" fg:w="42"/><text x="40.1401%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (42 samples, 0.03%)</title><rect x="39.8901%" y="805" width="0.0287%" height="15" fill="rgb(224,206,38)" fg:x="58386" fg:w="42"/><text x="40.1401%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (42 samples, 0.03%)</title><rect x="39.8901%" y="789" width="0.0287%" height="15" fill="rgb(212,201,54)" fg:x="58386" fg:w="42"/><text x="40.1401%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="39.8908%" y="773" width="0.0280%" height="15" fill="rgb(218,154,48)" fg:x="58387" fg:w="41"/><text x="40.1408%" y="783.50"></text></g><g><title>Monitor::wait (48 samples, 0.03%)</title><rect x="39.8881%" y="869" width="0.0328%" height="15" fill="rgb(232,93,24)" fg:x="58383" fg:w="48"/><text x="40.1381%" y="879.50"></text></g><g><title>Monitor::IWait (46 samples, 0.03%)</title><rect x="39.8895%" y="853" width="0.0314%" height="15" fill="rgb(245,30,21)" fg:x="58385" fg:w="46"/><text x="40.1395%" y="863.50"></text></g><g><title>os::PlatformEvent::park (45 samples, 0.03%)</title><rect x="39.8901%" y="837" width="0.0307%" height="15" fill="rgb(242,148,29)" fg:x="58386" fg:w="45"/><text x="40.1401%" y="847.50"></text></g><g><title>VM_Periodic_Tas (66 samples, 0.05%)</title><rect x="39.8765%" y="981" width="0.0451%" height="15" fill="rgb(244,153,54)" fg:x="58366" fg:w="66"/><text x="40.1265%" y="991.50"></text></g><g><title>__GI___clone (63 samples, 0.04%)</title><rect x="39.8785%" y="965" width="0.0430%" height="15" fill="rgb(252,87,22)" fg:x="58369" fg:w="63"/><text x="40.1285%" y="975.50"></text></g><g><title>start_thread (63 samples, 0.04%)</title><rect x="39.8785%" y="949" width="0.0430%" height="15" fill="rgb(210,51,29)" fg:x="58369" fg:w="63"/><text x="40.1285%" y="959.50"></text></g><g><title>thread_native_entry (62 samples, 0.04%)</title><rect x="39.8792%" y="933" width="0.0424%" height="15" fill="rgb(242,136,47)" fg:x="58370" fg:w="62"/><text x="40.1292%" y="943.50"></text></g><g><title>Thread::call_run (62 samples, 0.04%)</title><rect x="39.8792%" y="917" width="0.0424%" height="15" fill="rgb(238,68,4)" fg:x="58370" fg:w="62"/><text x="40.1292%" y="927.50"></text></g><g><title>WatcherThread::run (62 samples, 0.04%)</title><rect x="39.8792%" y="901" width="0.0424%" height="15" fill="rgb(242,161,30)" fg:x="58370" fg:w="62"/><text x="40.1292%" y="911.50"></text></g><g><title>WatcherThread::sleep (49 samples, 0.03%)</title><rect x="39.8881%" y="885" width="0.0335%" height="15" fill="rgb(218,58,44)" fg:x="58383" fg:w="49"/><text x="40.1381%" y="895.50"></text></g><g><title>[anon] (16 samples, 0.01%)</title><rect x="39.9223%" y="965" width="0.0109%" height="15" fill="rgb(252,125,32)" fg:x="58433" fg:w="16"/><text x="40.1723%" y="975.50"></text></g><g><title>[unknown] (87 samples, 0.06%)</title><rect x="39.9339%" y="965" width="0.0594%" height="15" fill="rgb(219,178,0)" fg:x="58450" fg:w="87"/><text x="40.1839%" y="975.50"></text></g><g><title>vframe::sender (77 samples, 0.05%)</title><rect x="39.9407%" y="949" width="0.0526%" height="15" fill="rgb(213,152,7)" fg:x="58460" fg:w="77"/><text x="40.1907%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.02%)</title><rect x="39.9933%" y="901" width="0.0239%" height="15" fill="rgb(249,109,34)" fg:x="58537" fg:w="35"/><text x="40.2433%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="39.9940%" y="885" width="0.0232%" height="15" fill="rgb(232,96,21)" fg:x="58538" fg:w="34"/><text x="40.2440%" y="895.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="39.9940%" y="869" width="0.0232%" height="15" fill="rgb(228,27,39)" fg:x="58538" fg:w="34"/><text x="40.2440%" y="879.50"></text></g><g><title>ret_from_fork (37 samples, 0.03%)</title><rect x="39.9933%" y="949" width="0.0253%" height="15" fill="rgb(211,182,52)" fg:x="58537" fg:w="37"/><text x="40.2433%" y="959.50"></text></g><g><title>schedule_tail (37 samples, 0.03%)</title><rect x="39.9933%" y="933" width="0.0253%" height="15" fill="rgb(234,178,38)" fg:x="58537" fg:w="37"/><text x="40.2433%" y="943.50"></text></g><g><title>finish_task_switch (37 samples, 0.03%)</title><rect x="39.9933%" y="917" width="0.0253%" height="15" fill="rgb(221,111,3)" fg:x="58537" fg:w="37"/><text x="40.2433%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.05%)</title><rect x="40.0411%" y="629" width="0.0458%" height="15" fill="rgb(228,175,21)" fg:x="58607" fg:w="67"/><text x="40.2911%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.04%)</title><rect x="40.0432%" y="613" width="0.0437%" height="15" fill="rgb(228,174,43)" fg:x="58610" fg:w="64"/><text x="40.2932%" y="623.50"></text></g><g><title>native_write_msr (64 samples, 0.04%)</title><rect x="40.0432%" y="597" width="0.0437%" height="15" fill="rgb(211,191,0)" fg:x="58610" fg:w="64"/><text x="40.2932%" y="607.50"></text></g><g><title>futex_wait_queue_me (77 samples, 0.05%)</title><rect x="40.0370%" y="693" width="0.0526%" height="15" fill="rgb(253,117,3)" fg:x="58601" fg:w="77"/><text x="40.2870%" y="703.50"></text></g><g><title>schedule (77 samples, 0.05%)</title><rect x="40.0370%" y="677" width="0.0526%" height="15" fill="rgb(241,127,19)" fg:x="58601" fg:w="77"/><text x="40.2870%" y="687.50"></text></g><g><title>__schedule (77 samples, 0.05%)</title><rect x="40.0370%" y="661" width="0.0526%" height="15" fill="rgb(218,103,12)" fg:x="58601" fg:w="77"/><text x="40.2870%" y="671.50"></text></g><g><title>finish_task_switch (72 samples, 0.05%)</title><rect x="40.0404%" y="645" width="0.0492%" height="15" fill="rgb(236,214,43)" fg:x="58606" fg:w="72"/><text x="40.2904%" y="655.50"></text></g><g><title>do_syscall_64 (82 samples, 0.06%)</title><rect x="40.0350%" y="757" width="0.0560%" height="15" fill="rgb(244,144,19)" fg:x="58598" fg:w="82"/><text x="40.2850%" y="767.50"></text></g><g><title>__x64_sys_futex (82 samples, 0.06%)</title><rect x="40.0350%" y="741" width="0.0560%" height="15" fill="rgb(246,188,10)" fg:x="58598" fg:w="82"/><text x="40.2850%" y="751.50"></text></g><g><title>do_futex (82 samples, 0.06%)</title><rect x="40.0350%" y="725" width="0.0560%" height="15" fill="rgb(212,193,33)" fg:x="58598" fg:w="82"/><text x="40.2850%" y="735.50"></text></g><g><title>futex_wait (79 samples, 0.05%)</title><rect x="40.0370%" y="709" width="0.0540%" height="15" fill="rgb(241,51,29)" fg:x="58601" fg:w="79"/><text x="40.2870%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.06%)</title><rect x="40.0350%" y="773" width="0.0567%" height="15" fill="rgb(211,58,19)" fg:x="58598" fg:w="83"/><text x="40.2850%" y="783.50"></text></g><g><title>__pthread_cond_timedwait (86 samples, 0.06%)</title><rect x="40.0343%" y="821" width="0.0588%" height="15" fill="rgb(229,111,26)" fg:x="58597" fg:w="86"/><text x="40.2843%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (86 samples, 0.06%)</title><rect x="40.0343%" y="805" width="0.0588%" height="15" fill="rgb(213,115,40)" fg:x="58597" fg:w="86"/><text x="40.2843%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (86 samples, 0.06%)</title><rect x="40.0343%" y="789" width="0.0588%" height="15" fill="rgb(209,56,44)" fg:x="58597" fg:w="86"/><text x="40.2843%" y="799.50"></text></g><g><title>Monitor::wait (91 samples, 0.06%)</title><rect x="40.0322%" y="869" width="0.0622%" height="15" fill="rgb(230,108,32)" fg:x="58594" fg:w="91"/><text x="40.2822%" y="879.50"></text></g><g><title>Monitor::IWait (90 samples, 0.06%)</title><rect x="40.0329%" y="853" width="0.0615%" height="15" fill="rgb(216,165,31)" fg:x="58595" fg:w="90"/><text x="40.2829%" y="863.50"></text></g><g><title>os::PlatformEvent::park (88 samples, 0.06%)</title><rect x="40.0343%" y="837" width="0.0601%" height="15" fill="rgb(218,122,21)" fg:x="58597" fg:w="88"/><text x="40.2843%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="40.1334%" y="613" width="0.0171%" height="15" fill="rgb(223,224,47)" fg:x="58742" fg:w="25"/><text x="40.3834%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.02%)</title><rect x="40.1334%" y="597" width="0.0171%" height="15" fill="rgb(238,102,44)" fg:x="58742" fg:w="25"/><text x="40.3834%" y="607.50"></text></g><g><title>native_write_msr (25 samples, 0.02%)</title><rect x="40.1334%" y="581" width="0.0171%" height="15" fill="rgb(236,46,40)" fg:x="58742" fg:w="25"/><text x="40.3834%" y="591.50"></text></g><g><title>Monitor::wait (34 samples, 0.02%)</title><rect x="40.1286%" y="853" width="0.0232%" height="15" fill="rgb(247,202,50)" fg:x="58735" fg:w="34"/><text x="40.3786%" y="863.50"></text></g><g><title>Monitor::IWait (34 samples, 0.02%)</title><rect x="40.1286%" y="837" width="0.0232%" height="15" fill="rgb(209,99,20)" fg:x="58735" fg:w="34"/><text x="40.3786%" y="847.50"></text></g><g><title>os::PlatformEvent::park (32 samples, 0.02%)</title><rect x="40.1299%" y="821" width="0.0219%" height="15" fill="rgb(252,27,34)" fg:x="58737" fg:w="32"/><text x="40.3799%" y="831.50"></text></g><g><title>__pthread_cond_wait (32 samples, 0.02%)</title><rect x="40.1299%" y="805" width="0.0219%" height="15" fill="rgb(215,206,23)" fg:x="58737" fg:w="32"/><text x="40.3799%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.02%)</title><rect x="40.1299%" y="789" width="0.0219%" height="15" fill="rgb(212,135,36)" fg:x="58737" fg:w="32"/><text x="40.3799%" y="799.50"></text></g><g><title>futex_wait_cancelable (32 samples, 0.02%)</title><rect x="40.1299%" y="773" width="0.0219%" height="15" fill="rgb(240,189,1)" fg:x="58737" fg:w="32"/><text x="40.3799%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="40.1306%" y="757" width="0.0212%" height="15" fill="rgb(242,56,20)" fg:x="58738" fg:w="31"/><text x="40.3806%" y="767.50"></text></g><g><title>do_syscall_64 (31 samples, 0.02%)</title><rect x="40.1306%" y="741" width="0.0212%" height="15" fill="rgb(247,132,33)" fg:x="58738" fg:w="31"/><text x="40.3806%" y="751.50"></text></g><g><title>__x64_sys_futex (31 samples, 0.02%)</title><rect x="40.1306%" y="725" width="0.0212%" height="15" fill="rgb(208,149,11)" fg:x="58738" fg:w="31"/><text x="40.3806%" y="735.50"></text></g><g><title>do_futex (31 samples, 0.02%)</title><rect x="40.1306%" y="709" width="0.0212%" height="15" fill="rgb(211,33,11)" fg:x="58738" fg:w="31"/><text x="40.3806%" y="719.50"></text></g><g><title>futex_wait (31 samples, 0.02%)</title><rect x="40.1306%" y="693" width="0.0212%" height="15" fill="rgb(221,29,38)" fg:x="58738" fg:w="31"/><text x="40.3806%" y="703.50"></text></g><g><title>futex_wait_queue_me (31 samples, 0.02%)</title><rect x="40.1306%" y="677" width="0.0212%" height="15" fill="rgb(206,182,49)" fg:x="58738" fg:w="31"/><text x="40.3806%" y="687.50"></text></g><g><title>schedule (30 samples, 0.02%)</title><rect x="40.1313%" y="661" width="0.0205%" height="15" fill="rgb(216,140,1)" fg:x="58739" fg:w="30"/><text x="40.3813%" y="671.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="40.1313%" y="645" width="0.0205%" height="15" fill="rgb(232,57,40)" fg:x="58739" fg:w="30"/><text x="40.3813%" y="655.50"></text></g><g><title>finish_task_switch (27 samples, 0.02%)</title><rect x="40.1334%" y="629" width="0.0184%" height="15" fill="rgb(224,186,18)" fg:x="58742" fg:w="27"/><text x="40.3834%" y="639.50"></text></g><g><title>ttwu_do_activate (20 samples, 0.01%)</title><rect x="40.1812%" y="645" width="0.0137%" height="15" fill="rgb(215,121,11)" fg:x="58812" fg:w="20"/><text x="40.4312%" y="655.50"></text></g><g><title>do_syscall_64 (61 samples, 0.04%)</title><rect x="40.1573%" y="741" width="0.0417%" height="15" fill="rgb(245,147,10)" fg:x="58777" fg:w="61"/><text x="40.4073%" y="751.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.04%)</title><rect x="40.1573%" y="725" width="0.0417%" height="15" fill="rgb(238,153,13)" fg:x="58777" fg:w="61"/><text x="40.4073%" y="735.50"></text></g><g><title>do_futex (61 samples, 0.04%)</title><rect x="40.1573%" y="709" width="0.0417%" height="15" fill="rgb(233,108,0)" fg:x="58777" fg:w="61"/><text x="40.4073%" y="719.50"></text></g><g><title>futex_wake (61 samples, 0.04%)</title><rect x="40.1573%" y="693" width="0.0417%" height="15" fill="rgb(212,157,17)" fg:x="58777" fg:w="61"/><text x="40.4073%" y="703.50"></text></g><g><title>wake_up_q (51 samples, 0.03%)</title><rect x="40.1641%" y="677" width="0.0348%" height="15" fill="rgb(225,213,38)" fg:x="58787" fg:w="51"/><text x="40.4141%" y="687.50"></text></g><g><title>try_to_wake_up (50 samples, 0.03%)</title><rect x="40.1648%" y="661" width="0.0342%" height="15" fill="rgb(248,16,11)" fg:x="58788" fg:w="50"/><text x="40.4148%" y="671.50"></text></g><g><title>PosixSemaphore::signal (63 samples, 0.04%)</title><rect x="40.1566%" y="805" width="0.0430%" height="15" fill="rgb(241,33,4)" fg:x="58776" fg:w="63"/><text x="40.4066%" y="815.50"></text></g><g><title>__new_sem_post (63 samples, 0.04%)</title><rect x="40.1566%" y="789" width="0.0430%" height="15" fill="rgb(222,26,43)" fg:x="58776" fg:w="63"/><text x="40.4066%" y="799.50"></text></g><g><title>futex_wake (63 samples, 0.04%)</title><rect x="40.1566%" y="773" width="0.0430%" height="15" fill="rgb(243,29,36)" fg:x="58776" fg:w="63"/><text x="40.4066%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.04%)</title><rect x="40.1573%" y="757" width="0.0424%" height="15" fill="rgb(241,9,27)" fg:x="58777" fg:w="62"/><text x="40.4073%" y="767.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="40.2058%" y="613" width="0.0164%" height="15" fill="rgb(205,117,26)" fg:x="58848" fg:w="24"/><text x="40.4558%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.02%)</title><rect x="40.2058%" y="597" width="0.0164%" height="15" fill="rgb(209,80,39)" fg:x="58848" fg:w="24"/><text x="40.4558%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (23 samples, 0.02%)</title><rect x="40.2065%" y="581" width="0.0157%" height="15" fill="rgb(239,155,6)" fg:x="58849" fg:w="23"/><text x="40.4565%" y="591.50"></text></g><g><title>native_write_msr (23 samples, 0.02%)</title><rect x="40.2065%" y="565" width="0.0157%" height="15" fill="rgb(212,104,12)" fg:x="58849" fg:w="23"/><text x="40.4565%" y="575.50"></text></g><g><title>WorkGang::run_task (102 samples, 0.07%)</title><rect x="40.1566%" y="837" width="0.0697%" height="15" fill="rgb(234,204,3)" fg:x="58776" fg:w="102"/><text x="40.4066%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (102 samples, 0.07%)</title><rect x="40.1566%" y="821" width="0.0697%" height="15" fill="rgb(251,218,7)" fg:x="58776" fg:w="102"/><text x="40.4066%" y="831.50"></text></g><g><title>PosixSemaphore::wait (39 samples, 0.03%)</title><rect x="40.1996%" y="805" width="0.0266%" height="15" fill="rgb(221,81,32)" fg:x="58839" fg:w="39"/><text x="40.4496%" y="815.50"></text></g><g><title>__new_sem_wait_slow (38 samples, 0.03%)</title><rect x="40.2003%" y="789" width="0.0260%" height="15" fill="rgb(214,152,26)" fg:x="58840" fg:w="38"/><text x="40.4503%" y="799.50"></text></g><g><title>do_futex_wait (37 samples, 0.03%)</title><rect x="40.2010%" y="773" width="0.0253%" height="15" fill="rgb(223,22,3)" fg:x="58841" fg:w="37"/><text x="40.4510%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (37 samples, 0.03%)</title><rect x="40.2010%" y="757" width="0.0253%" height="15" fill="rgb(207,174,7)" fg:x="58841" fg:w="37"/><text x="40.4510%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.03%)</title><rect x="40.2010%" y="741" width="0.0253%" height="15" fill="rgb(224,19,52)" fg:x="58841" fg:w="37"/><text x="40.4510%" y="751.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="40.2017%" y="725" width="0.0246%" height="15" fill="rgb(228,24,14)" fg:x="58842" fg:w="36"/><text x="40.4517%" y="735.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="40.2024%" y="709" width="0.0239%" height="15" fill="rgb(230,153,43)" fg:x="58843" fg:w="35"/><text x="40.4524%" y="719.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="40.2024%" y="693" width="0.0239%" height="15" fill="rgb(231,106,12)" fg:x="58843" fg:w="35"/><text x="40.4524%" y="703.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="40.2024%" y="677" width="0.0239%" height="15" fill="rgb(215,92,2)" fg:x="58843" fg:w="35"/><text x="40.4524%" y="687.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.02%)</title><rect x="40.2031%" y="661" width="0.0232%" height="15" fill="rgb(249,143,25)" fg:x="58844" fg:w="34"/><text x="40.4531%" y="671.50"></text></g><g><title>schedule (33 samples, 0.02%)</title><rect x="40.2037%" y="645" width="0.0225%" height="15" fill="rgb(252,7,35)" fg:x="58845" fg:w="33"/><text x="40.4537%" y="655.50"></text></g><g><title>__schedule (33 samples, 0.02%)</title><rect x="40.2037%" y="629" width="0.0225%" height="15" fill="rgb(216,69,40)" fg:x="58845" fg:w="33"/><text x="40.4537%" y="639.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (108 samples, 0.07%)</title><rect x="40.1532%" y="853" width="0.0738%" height="15" fill="rgb(240,36,33)" fg:x="58771" fg:w="108"/><text x="40.4032%" y="863.50"></text></g><g><title>SafepointSynchronize::begin (214 samples, 0.15%)</title><rect x="40.0944%" y="869" width="0.1462%" height="15" fill="rgb(231,128,14)" fg:x="58685" fg:w="214"/><text x="40.3444%" y="879.50"></text></g><g><title>CodeHeap::next_used (23 samples, 0.02%)</title><rect x="40.2775%" y="789" width="0.0157%" height="15" fill="rgb(245,143,14)" fg:x="58953" fg:w="23"/><text x="40.5275%" y="799.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (44 samples, 0.03%)</title><rect x="40.2700%" y="805" width="0.0301%" height="15" fill="rgb(222,130,28)" fg:x="58942" fg:w="44"/><text x="40.5200%" y="815.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (45 samples, 0.03%)</title><rect x="40.2700%" y="821" width="0.0307%" height="15" fill="rgb(212,10,48)" fg:x="58942" fg:w="45"/><text x="40.5200%" y="831.50"></text></g><g><title>VM_Deoptimize::doit (53 samples, 0.04%)</title><rect x="40.2700%" y="837" width="0.0362%" height="15" fill="rgb(254,118,45)" fg:x="58942" fg:w="53"/><text x="40.5200%" y="847.50"></text></g><g><title>VM_G1CollectForAllocation::doit (28 samples, 0.02%)</title><rect x="40.3083%" y="837" width="0.0191%" height="15" fill="rgb(228,6,45)" fg:x="58998" fg:w="28"/><text x="40.5583%" y="847.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (28 samples, 0.02%)</title><rect x="40.3083%" y="821" width="0.0191%" height="15" fill="rgb(241,18,35)" fg:x="58998" fg:w="28"/><text x="40.5583%" y="831.50"></text></g><g><title>VM_Operation::evaluate (118 samples, 0.08%)</title><rect x="40.2529%" y="853" width="0.0806%" height="15" fill="rgb(227,214,53)" fg:x="58917" fg:w="118"/><text x="40.5029%" y="863.50"></text></g><g><title>VMThread::evaluate_operation (122 samples, 0.08%)</title><rect x="40.2516%" y="869" width="0.0834%" height="15" fill="rgb(224,107,51)" fg:x="58915" fg:w="122"/><text x="40.5016%" y="879.50"></text></g><g><title>VMThread::loop (466 samples, 0.32%)</title><rect x="40.0206%" y="885" width="0.3184%" height="15" fill="rgb(248,60,28)" fg:x="58577" fg:w="466"/><text x="40.2706%" y="895.50"></text></g><g><title>Thread::call_run (467 samples, 0.32%)</title><rect x="40.0206%" y="917" width="0.3191%" height="15" fill="rgb(249,101,23)" fg:x="58577" fg:w="467"/><text x="40.2706%" y="927.50"></text></g><g><title>VMThread::run (467 samples, 0.32%)</title><rect x="40.0206%" y="901" width="0.3191%" height="15" fill="rgb(228,51,19)" fg:x="58577" fg:w="467"/><text x="40.2706%" y="911.50"></text></g><g><title>__GI___clone (512 samples, 0.35%)</title><rect x="39.9933%" y="965" width="0.3498%" height="15" fill="rgb(213,20,6)" fg:x="58537" fg:w="512"/><text x="40.2433%" y="975.50"></text></g><g><title>start_thread (475 samples, 0.32%)</title><rect x="40.0186%" y="949" width="0.3245%" height="15" fill="rgb(212,124,10)" fg:x="58574" fg:w="475"/><text x="40.2686%" y="959.50"></text></g><g><title>thread_native_entry (474 samples, 0.32%)</title><rect x="40.0193%" y="933" width="0.3238%" height="15" fill="rgb(248,3,40)" fg:x="58575" fg:w="474"/><text x="40.2693%" y="943.50"></text></g><g><title>VM_Thread (620 samples, 0.42%)</title><rect x="39.9216%" y="981" width="0.4236%" height="15" fill="rgb(223,178,23)" fg:x="58432" fg:w="620"/><text x="40.1716%" y="991.50"></text></g><g><title>[perf-270039.map] (17 samples, 0.01%)</title><rect x="40.3452%" y="965" width="0.0116%" height="15" fill="rgb(240,132,45)" fg:x="59052" fg:w="17"/><text x="40.5952%" y="975.50"></text></g><g><title>JVM_Sleep (15 samples, 0.01%)</title><rect x="40.3465%" y="949" width="0.0102%" height="15" fill="rgb(245,164,36)" fg:x="59054" fg:w="15"/><text x="40.5965%" y="959.50"></text></g><g><title>os::sleep (15 samples, 0.01%)</title><rect x="40.3465%" y="933" width="0.0102%" height="15" fill="rgb(231,188,53)" fg:x="59054" fg:w="15"/><text x="40.5965%" y="943.50"></text></g><g><title>os::PlatformEvent::park (15 samples, 0.01%)</title><rect x="40.3465%" y="917" width="0.0102%" height="15" fill="rgb(237,198,39)" fg:x="59054" fg:w="15"/><text x="40.5965%" y="927.50"></text></g><g><title>__pthread_cond_timedwait (15 samples, 0.01%)</title><rect x="40.3465%" y="901" width="0.0102%" height="15" fill="rgb(223,120,35)" fg:x="59054" fg:w="15"/><text x="40.5965%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (15 samples, 0.01%)</title><rect x="40.3465%" y="885" width="0.0102%" height="15" fill="rgb(253,107,49)" fg:x="59054" fg:w="15"/><text x="40.5965%" y="895.50"></text></g><g><title>futex_abstimed_wait_cancelable (15 samples, 0.01%)</title><rect x="40.3465%" y="869" width="0.0102%" height="15" fill="rgb(216,44,31)" fg:x="59054" fg:w="15"/><text x="40.5965%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="40.3465%" y="853" width="0.0102%" height="15" fill="rgb(253,87,21)" fg:x="59054" fg:w="15"/><text x="40.5965%" y="863.50"></text></g><g><title>action-executio (18 samples, 0.01%)</title><rect x="40.3452%" y="981" width="0.0123%" height="15" fill="rgb(226,18,2)" fg:x="59052" fg:w="18"/><text x="40.5952%" y="991.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="40.5453%" y="837" width="0.0137%" height="15" fill="rgb(216,8,46)" fg:x="59345" fg:w="20"/><text x="40.7953%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="40.5453%" y="821" width="0.0137%" height="15" fill="rgb(226,140,39)" fg:x="59345" fg:w="20"/><text x="40.7953%" y="831.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="40.5460%" y="805" width="0.0130%" height="15" fill="rgb(221,194,54)" fg:x="59346" fg:w="19"/><text x="40.7960%" y="815.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="40.5460%" y="789" width="0.0130%" height="15" fill="rgb(213,92,11)" fg:x="59346" fg:w="19"/><text x="40.7960%" y="799.50"></text></g><g><title>schedule_hrtimeout_range_clock (43 samples, 0.03%)</title><rect x="40.5344%" y="885" width="0.0294%" height="15" fill="rgb(229,162,46)" fg:x="59329" fg:w="43"/><text x="40.7844%" y="895.50"></text></g><g><title>schedule (38 samples, 0.03%)</title><rect x="40.5378%" y="869" width="0.0260%" height="15" fill="rgb(214,111,36)" fg:x="59334" fg:w="38"/><text x="40.7878%" y="879.50"></text></g><g><title>__schedule (38 samples, 0.03%)</title><rect x="40.5378%" y="853" width="0.0260%" height="15" fill="rgb(207,6,21)" fg:x="59334" fg:w="38"/><text x="40.7878%" y="863.50"></text></g><g><title>__x64_sys_epoll_pwait (49 samples, 0.03%)</title><rect x="40.5310%" y="917" width="0.0335%" height="15" fill="rgb(213,127,38)" fg:x="59324" fg:w="49"/><text x="40.7810%" y="927.50"></text></g><g><title>do_epoll_wait (49 samples, 0.03%)</title><rect x="40.5310%" y="901" width="0.0335%" height="15" fill="rgb(238,118,32)" fg:x="59324" fg:w="49"/><text x="40.7810%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (107 samples, 0.07%)</title><rect x="40.5863%" y="805" width="0.0731%" height="15" fill="rgb(240,139,39)" fg:x="59405" fg:w="107"/><text x="40.8363%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (107 samples, 0.07%)</title><rect x="40.5863%" y="789" width="0.0731%" height="15" fill="rgb(235,10,37)" fg:x="59405" fg:w="107"/><text x="40.8363%" y="799.50"></text></g><g><title>native_write_msr (107 samples, 0.07%)</title><rect x="40.5863%" y="773" width="0.0731%" height="15" fill="rgb(249,171,38)" fg:x="59405" fg:w="107"/><text x="40.8363%" y="783.50"></text></g><g><title>finish_task_switch (115 samples, 0.08%)</title><rect x="40.5836%" y="821" width="0.0786%" height="15" fill="rgb(242,144,32)" fg:x="59401" fg:w="115"/><text x="40.8336%" y="831.50"></text></g><g><title>futex_wait_queue_me (145 samples, 0.10%)</title><rect x="40.5706%" y="869" width="0.0991%" height="15" fill="rgb(217,117,21)" fg:x="59382" fg:w="145"/><text x="40.8206%" y="879.50"></text></g><g><title>schedule (143 samples, 0.10%)</title><rect x="40.5720%" y="853" width="0.0977%" height="15" fill="rgb(249,87,1)" fg:x="59384" fg:w="143"/><text x="40.8220%" y="863.50"></text></g><g><title>__schedule (142 samples, 0.10%)</title><rect x="40.5727%" y="837" width="0.0970%" height="15" fill="rgb(248,196,48)" fg:x="59385" fg:w="142"/><text x="40.8227%" y="847.50"></text></g><g><title>futex_wait (150 samples, 0.10%)</title><rect x="40.5686%" y="885" width="0.1025%" height="15" fill="rgb(251,206,33)" fg:x="59379" fg:w="150"/><text x="40.8186%" y="895.50"></text></g><g><title>__x64_sys_futex (169 samples, 0.12%)</title><rect x="40.5672%" y="917" width="0.1155%" height="15" fill="rgb(232,141,28)" fg:x="59377" fg:w="169"/><text x="40.8172%" y="927.50"></text></g><g><title>do_futex (169 samples, 0.12%)</title><rect x="40.5672%" y="901" width="0.1155%" height="15" fill="rgb(209,167,14)" fg:x="59377" fg:w="169"/><text x="40.8172%" y="911.50"></text></g><g><title>futex_wake (17 samples, 0.01%)</title><rect x="40.6711%" y="885" width="0.0116%" height="15" fill="rgb(225,11,50)" fg:x="59529" fg:w="17"/><text x="40.9211%" y="895.50"></text></g><g><title>__x64_sys_madvise (28 samples, 0.02%)</title><rect x="40.6827%" y="917" width="0.0191%" height="15" fill="rgb(209,50,20)" fg:x="59546" fg:w="28"/><text x="40.9327%" y="927.50"></text></g><g><title>do_madvise.part.0 (28 samples, 0.02%)</title><rect x="40.6827%" y="901" width="0.0191%" height="15" fill="rgb(212,17,46)" fg:x="59546" fg:w="28"/><text x="40.9327%" y="911.50"></text></g><g><title>zap_page_range (26 samples, 0.02%)</title><rect x="40.6840%" y="885" width="0.0178%" height="15" fill="rgb(216,101,39)" fg:x="59548" fg:w="26"/><text x="40.9340%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.04%)</title><rect x="40.7086%" y="821" width="0.0417%" height="15" fill="rgb(212,228,48)" fg:x="59584" fg:w="61"/><text x="40.9586%" y="831.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.04%)</title><rect x="40.7100%" y="805" width="0.0403%" height="15" fill="rgb(250,6,50)" fg:x="59586" fg:w="59"/><text x="40.9600%" y="815.50"></text></g><g><title>native_write_msr (58 samples, 0.04%)</title><rect x="40.7107%" y="789" width="0.0396%" height="15" fill="rgb(250,160,48)" fg:x="59587" fg:w="58"/><text x="40.9607%" y="799.50"></text></g><g><title>finish_task_switch (64 samples, 0.04%)</title><rect x="40.7073%" y="837" width="0.0437%" height="15" fill="rgb(244,216,33)" fg:x="59582" fg:w="64"/><text x="40.9573%" y="847.50"></text></g><g><title>__x64_sys_nanosleep (80 samples, 0.05%)</title><rect x="40.7018%" y="917" width="0.0547%" height="15" fill="rgb(207,157,5)" fg:x="59574" fg:w="80"/><text x="40.9518%" y="927.50"></text></g><g><title>hrtimer_nanosleep (79 samples, 0.05%)</title><rect x="40.7025%" y="901" width="0.0540%" height="15" fill="rgb(228,199,8)" fg:x="59575" fg:w="79"/><text x="40.9525%" y="911.50"></text></g><g><title>do_nanosleep (78 samples, 0.05%)</title><rect x="40.7032%" y="885" width="0.0533%" height="15" fill="rgb(227,80,20)" fg:x="59576" fg:w="78"/><text x="40.9532%" y="895.50"></text></g><g><title>schedule (76 samples, 0.05%)</title><rect x="40.7045%" y="869" width="0.0519%" height="15" fill="rgb(222,9,33)" fg:x="59578" fg:w="76"/><text x="40.9545%" y="879.50"></text></g><g><title>__schedule (76 samples, 0.05%)</title><rect x="40.7045%" y="853" width="0.0519%" height="15" fill="rgb(239,44,28)" fg:x="59578" fg:w="76"/><text x="40.9545%" y="863.50"></text></g><g><title>do_syscall_64 (352 samples, 0.24%)</title><rect x="40.5276%" y="933" width="0.2405%" height="15" fill="rgb(249,187,43)" fg:x="59319" fg:w="352"/><text x="40.7776%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (364 samples, 0.25%)</title><rect x="40.5269%" y="949" width="0.2487%" height="15" fill="rgb(216,141,28)" fg:x="59318" fg:w="364"/><text x="40.7769%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.03%)</title><rect x="40.7770%" y="901" width="0.0321%" height="15" fill="rgb(230,154,53)" fg:x="59684" fg:w="47"/><text x="41.0270%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.03%)</title><rect x="40.7776%" y="885" width="0.0314%" height="15" fill="rgb(227,82,4)" fg:x="59685" fg:w="46"/><text x="41.0276%" y="895.50"></text></g><g><title>native_write_msr (46 samples, 0.03%)</title><rect x="40.7776%" y="869" width="0.0314%" height="15" fill="rgb(220,107,16)" fg:x="59685" fg:w="46"/><text x="41.0276%" y="879.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (656 samples, 0.45%)</title><rect x="40.3622%" y="965" width="0.4482%" height="15" fill="rgb(207,187,2)" fg:x="59077" fg:w="656"/><text x="40.6122%" y="975.50"></text></g><g><title>ret_from_fork (51 samples, 0.03%)</title><rect x="40.7756%" y="949" width="0.0348%" height="15" fill="rgb(210,162,52)" fg:x="59682" fg:w="51"/><text x="41.0256%" y="959.50"></text></g><g><title>schedule_tail (51 samples, 0.03%)</title><rect x="40.7756%" y="933" width="0.0348%" height="15" fill="rgb(217,216,49)" fg:x="59682" fg:w="51"/><text x="41.0256%" y="943.50"></text></g><g><title>finish_task_switch (51 samples, 0.03%)</title><rect x="40.7756%" y="917" width="0.0348%" height="15" fill="rgb(218,146,49)" fg:x="59682" fg:w="51"/><text x="41.0256%" y="927.50"></text></g><g><title>__libc_start_main (22 samples, 0.02%)</title><rect x="40.8111%" y="949" width="0.0150%" height="15" fill="rgb(216,55,40)" fg:x="59734" fg:w="22"/><text x="41.0611%" y="959.50"></text></g><g><title>_start (38 samples, 0.03%)</title><rect x="40.8111%" y="965" width="0.0260%" height="15" fill="rgb(208,196,21)" fg:x="59734" fg:w="38"/><text x="41.0611%" y="975.50"></text></g><g><title>_dl_start (16 samples, 0.01%)</title><rect x="40.8261%" y="949" width="0.0109%" height="15" fill="rgb(242,117,42)" fg:x="59756" fg:w="16"/><text x="41.0761%" y="959.50"></text></g><g><title>_dl_start_final (16 samples, 0.01%)</title><rect x="40.8261%" y="933" width="0.0109%" height="15" fill="rgb(210,11,23)" fg:x="59756" fg:w="16"/><text x="41.0761%" y="943.50"></text></g><g><title>_dl_sysdep_start (16 samples, 0.01%)</title><rect x="40.8261%" y="917" width="0.0109%" height="15" fill="rgb(217,110,2)" fg:x="59756" fg:w="16"/><text x="41.0761%" y="927.50"></text></g><g><title>[ld-2.31.so] (16 samples, 0.01%)</title><rect x="40.8261%" y="901" width="0.0109%" height="15" fill="rgb(229,77,54)" fg:x="59756" fg:w="16"/><text x="41.0761%" y="911.50"></text></g><g><title>bazel (714 samples, 0.49%)</title><rect x="40.3588%" y="981" width="0.4878%" height="15" fill="rgb(218,53,16)" fg:x="59072" fg:w="714"/><text x="40.6088%" y="991.50"></text></g><g><title>_dl_map_segments (15 samples, 0.01%)</title><rect x="40.8842%" y="805" width="0.0102%" height="15" fill="rgb(215,38,13)" fg:x="59841" fg:w="15"/><text x="41.1342%" y="815.50"></text></g><g><title>_dl_map_object_from_fd (20 samples, 0.01%)</title><rect x="40.8835%" y="821" width="0.0137%" height="15" fill="rgb(235,42,18)" fg:x="59840" fg:w="20"/><text x="41.1335%" y="831.50"></text></g><g><title>_dl_map_object_deps (33 samples, 0.02%)</title><rect x="40.8774%" y="885" width="0.0225%" height="15" fill="rgb(219,66,54)" fg:x="59831" fg:w="33"/><text x="41.1274%" y="895.50"></text></g><g><title>_dl_catch_exception (33 samples, 0.02%)</title><rect x="40.8774%" y="869" width="0.0225%" height="15" fill="rgb(222,205,4)" fg:x="59831" fg:w="33"/><text x="41.1274%" y="879.50"></text></g><g><title>openaux (33 samples, 0.02%)</title><rect x="40.8774%" y="853" width="0.0225%" height="15" fill="rgb(227,213,46)" fg:x="59831" fg:w="33"/><text x="41.1274%" y="863.50"></text></g><g><title>_dl_map_object (33 samples, 0.02%)</title><rect x="40.8774%" y="837" width="0.0225%" height="15" fill="rgb(250,145,42)" fg:x="59831" fg:w="33"/><text x="41.1274%" y="847.50"></text></g><g><title>dl_new_hash (23 samples, 0.02%)</title><rect x="40.9300%" y="821" width="0.0157%" height="15" fill="rgb(219,15,2)" fg:x="59908" fg:w="23"/><text x="41.1800%" y="831.50"></text></g><g><title>elf_machine_rela (79 samples, 0.05%)</title><rect x="40.9143%" y="853" width="0.0540%" height="15" fill="rgb(231,181,52)" fg:x="59885" fg:w="79"/><text x="41.1643%" y="863.50"></text></g><g><title>_dl_lookup_symbol_x (58 samples, 0.04%)</title><rect x="40.9286%" y="837" width="0.0396%" height="15" fill="rgb(235,1,42)" fg:x="59906" fg:w="58"/><text x="41.1786%" y="847.50"></text></g><g><title>do_lookup_x (33 samples, 0.02%)</title><rect x="40.9457%" y="821" width="0.0225%" height="15" fill="rgb(249,88,27)" fg:x="59931" fg:w="33"/><text x="41.1957%" y="831.50"></text></g><g><title>_dl_relocate_object (100 samples, 0.07%)</title><rect x="40.9013%" y="885" width="0.0683%" height="15" fill="rgb(235,145,16)" fg:x="59866" fg:w="100"/><text x="41.1513%" y="895.50"></text></g><g><title>elf_dynamic_do_Rela (95 samples, 0.06%)</title><rect x="40.9047%" y="869" width="0.0649%" height="15" fill="rgb(237,114,19)" fg:x="59871" fg:w="95"/><text x="41.1547%" y="879.50"></text></g><g><title>[ld-2.31.so] (143 samples, 0.10%)</title><rect x="40.8753%" y="901" width="0.0977%" height="15" fill="rgb(238,51,50)" fg:x="59828" fg:w="143"/><text x="41.1253%" y="911.50"></text></g><g><title>_dl_start_final (151 samples, 0.10%)</title><rect x="40.8753%" y="933" width="0.1032%" height="15" fill="rgb(205,194,25)" fg:x="59828" fg:w="151"/><text x="41.1253%" y="943.50"></text></g><g><title>_dl_sysdep_start (151 samples, 0.10%)</title><rect x="40.8753%" y="917" width="0.1032%" height="15" fill="rgb(215,203,17)" fg:x="59828" fg:w="151"/><text x="41.1253%" y="927.50"></text></g><g><title>_dl_start (157 samples, 0.11%)</title><rect x="40.8753%" y="949" width="0.1073%" height="15" fill="rgb(233,112,49)" fg:x="59828" fg:w="157"/><text x="41.1253%" y="959.50"></text></g><g><title>_start (168 samples, 0.11%)</title><rect x="40.8692%" y="965" width="0.1148%" height="15" fill="rgb(241,130,26)" fg:x="59819" fg:w="168"/><text x="41.1192%" y="975.50"></text></g><g><title>mmput (16 samples, 0.01%)</title><rect x="40.9963%" y="885" width="0.0109%" height="15" fill="rgb(252,223,19)" fg:x="60005" fg:w="16"/><text x="41.2463%" y="895.50"></text></g><g><title>exit_mmap (16 samples, 0.01%)</title><rect x="40.9963%" y="869" width="0.0109%" height="15" fill="rgb(211,95,25)" fg:x="60005" fg:w="16"/><text x="41.2463%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="40.9867%" y="965" width="0.0219%" height="15" fill="rgb(251,182,27)" fg:x="59991" fg:w="32"/><text x="41.2367%" y="975.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="40.9867%" y="949" width="0.0219%" height="15" fill="rgb(238,24,4)" fg:x="59991" fg:w="32"/><text x="41.2367%" y="959.50"></text></g><g><title>__x64_sys_exit_group (19 samples, 0.01%)</title><rect x="40.9956%" y="933" width="0.0130%" height="15" fill="rgb(224,220,25)" fg:x="60004" fg:w="19"/><text x="41.2456%" y="943.50"></text></g><g><title>do_group_exit (19 samples, 0.01%)</title><rect x="40.9956%" y="917" width="0.0130%" height="15" fill="rgb(239,133,26)" fg:x="60004" fg:w="19"/><text x="41.2456%" y="927.50"></text></g><g><title>do_exit (19 samples, 0.01%)</title><rect x="40.9956%" y="901" width="0.0130%" height="15" fill="rgb(211,94,48)" fg:x="60004" fg:w="19"/><text x="41.2456%" y="911.50"></text></g><g><title>build-runfiles (237 samples, 0.16%)</title><rect x="40.8473%" y="981" width="0.1619%" height="15" fill="rgb(239,87,6)" fg:x="59787" fg:w="237"/><text x="41.0973%" y="991.50"></text></g><g><title>__GI___nss_lookup (15 samples, 0.01%)</title><rect x="41.0359%" y="837" width="0.0102%" height="15" fill="rgb(227,62,0)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="847.50"></text></g><g><title>__GI___nss_lookup_function (15 samples, 0.01%)</title><rect x="41.0359%" y="821" width="0.0102%" height="15" fill="rgb(211,226,4)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="831.50"></text></g><g><title>nss_load_library (15 samples, 0.01%)</title><rect x="41.0359%" y="805" width="0.0102%" height="15" fill="rgb(253,38,52)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="815.50"></text></g><g><title>__GI___libc_dlopen_mode (15 samples, 0.01%)</title><rect x="41.0359%" y="789" width="0.0102%" height="15" fill="rgb(229,126,40)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="799.50"></text></g><g><title>dlerror_run (15 samples, 0.01%)</title><rect x="41.0359%" y="773" width="0.0102%" height="15" fill="rgb(229,165,44)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="783.50"></text></g><g><title>__GI__dl_catch_error (15 samples, 0.01%)</title><rect x="41.0359%" y="757" width="0.0102%" height="15" fill="rgb(247,95,47)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="767.50"></text></g><g><title>__GI__dl_catch_exception (15 samples, 0.01%)</title><rect x="41.0359%" y="741" width="0.0102%" height="15" fill="rgb(216,140,30)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="751.50"></text></g><g><title>do_dlopen (15 samples, 0.01%)</title><rect x="41.0359%" y="725" width="0.0102%" height="15" fill="rgb(246,214,8)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="735.50"></text></g><g><title>_dl_open (15 samples, 0.01%)</title><rect x="41.0359%" y="709" width="0.0102%" height="15" fill="rgb(227,224,15)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="719.50"></text></g><g><title>__GI__dl_catch_exception (15 samples, 0.01%)</title><rect x="41.0359%" y="693" width="0.0102%" height="15" fill="rgb(233,175,4)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="703.50"></text></g><g><title>dl_open_worker (15 samples, 0.01%)</title><rect x="41.0359%" y="677" width="0.0102%" height="15" fill="rgb(221,66,45)" fg:x="60063" fg:w="15"/><text x="41.2859%" y="687.50"></text></g><g><title>getpwuid (28 samples, 0.02%)</title><rect x="41.0359%" y="869" width="0.0191%" height="15" fill="rgb(221,178,18)" fg:x="60063" fg:w="28"/><text x="41.2859%" y="879.50"></text></g><g><title>__getpwuid_r (28 samples, 0.02%)</title><rect x="41.0359%" y="853" width="0.0191%" height="15" fill="rgb(213,81,29)" fg:x="60063" fg:w="28"/><text x="41.2859%" y="863.50"></text></g><g><title>[bash] (39 samples, 0.03%)</title><rect x="41.0318%" y="885" width="0.0266%" height="15" fill="rgb(220,89,49)" fg:x="60057" fg:w="39"/><text x="41.2818%" y="895.50"></text></g><g><title>initialize_shell_variables (57 samples, 0.04%)</title><rect x="41.0304%" y="901" width="0.0389%" height="15" fill="rgb(227,60,33)" fg:x="60055" fg:w="57"/><text x="41.2804%" y="911.50"></text></g><g><title>[bash] (70 samples, 0.05%)</title><rect x="41.0243%" y="917" width="0.0478%" height="15" fill="rgb(205,113,12)" fg:x="60046" fg:w="70"/><text x="41.2743%" y="927.50"></text></g><g><title>shell_execve (17 samples, 0.01%)</title><rect x="41.0864%" y="805" width="0.0116%" height="15" fill="rgb(211,32,1)" fg:x="60137" fg:w="17"/><text x="41.3364%" y="815.50"></text></g><g><title>__GI_execve (17 samples, 0.01%)</title><rect x="41.0864%" y="789" width="0.0116%" height="15" fill="rgb(246,2,12)" fg:x="60137" fg:w="17"/><text x="41.3364%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="41.0864%" y="773" width="0.0116%" height="15" fill="rgb(243,37,27)" fg:x="60137" fg:w="17"/><text x="41.3364%" y="783.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="41.0864%" y="757" width="0.0116%" height="15" fill="rgb(248,211,31)" fg:x="60137" fg:w="17"/><text x="41.3364%" y="767.50"></text></g><g><title>__x64_sys_execve (17 samples, 0.01%)</title><rect x="41.0864%" y="741" width="0.0116%" height="15" fill="rgb(242,146,47)" fg:x="60137" fg:w="17"/><text x="41.3364%" y="751.50"></text></g><g><title>do_execveat_common (17 samples, 0.01%)</title><rect x="41.0864%" y="725" width="0.0116%" height="15" fill="rgb(206,70,20)" fg:x="60137" fg:w="17"/><text x="41.3364%" y="735.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="41.0823%" y="837" width="0.0164%" height="15" fill="rgb(215,10,51)" fg:x="60131" fg:w="24"/><text x="41.3323%" y="847.50"></text></g><g><title>exec_builtin (23 samples, 0.02%)</title><rect x="41.0830%" y="821" width="0.0157%" height="15" fill="rgb(243,178,53)" fg:x="60132" fg:w="23"/><text x="41.3330%" y="831.50"></text></g><g><title>execute_command (30 samples, 0.02%)</title><rect x="41.0817%" y="869" width="0.0205%" height="15" fill="rgb(233,221,20)" fg:x="60130" fg:w="30"/><text x="41.3317%" y="879.50"></text></g><g><title>execute_command_internal (30 samples, 0.02%)</title><rect x="41.0817%" y="853" width="0.0205%" height="15" fill="rgb(218,95,35)" fg:x="60130" fg:w="30"/><text x="41.3317%" y="863.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="41.0789%" y="901" width="0.0239%" height="15" fill="rgb(229,13,5)" fg:x="60126" fg:w="35"/><text x="41.3289%" y="911.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="41.0789%" y="885" width="0.0239%" height="15" fill="rgb(252,164,30)" fg:x="60126" fg:w="35"/><text x="41.3289%" y="895.50"></text></g><g><title>[bash] (18 samples, 0.01%)</title><rect x="41.1042%" y="837" width="0.0123%" height="15" fill="rgb(232,68,36)" fg:x="60163" fg:w="18"/><text x="41.3542%" y="847.50"></text></g><g><title>reader_loop (57 samples, 0.04%)</title><rect x="41.0782%" y="917" width="0.0389%" height="15" fill="rgb(219,59,54)" fg:x="60125" fg:w="57"/><text x="41.3282%" y="927.50"></text></g><g><title>read_command (21 samples, 0.01%)</title><rect x="41.1028%" y="901" width="0.0143%" height="15" fill="rgb(250,92,33)" fg:x="60161" fg:w="21"/><text x="41.3528%" y="911.50"></text></g><g><title>parse_command (21 samples, 0.01%)</title><rect x="41.1028%" y="885" width="0.0143%" height="15" fill="rgb(229,162,54)" fg:x="60161" fg:w="21"/><text x="41.3528%" y="895.50"></text></g><g><title>yyparse (21 samples, 0.01%)</title><rect x="41.1028%" y="869" width="0.0143%" height="15" fill="rgb(244,114,52)" fg:x="60161" fg:w="21"/><text x="41.3528%" y="879.50"></text></g><g><title>[bash] (21 samples, 0.01%)</title><rect x="41.1028%" y="853" width="0.0143%" height="15" fill="rgb(212,211,43)" fg:x="60161" fg:w="21"/><text x="41.3528%" y="863.50"></text></g><g><title>__libc_start_main (156 samples, 0.11%)</title><rect x="41.0243%" y="949" width="0.1066%" height="15" fill="rgb(226,147,8)" fg:x="60046" fg:w="156"/><text x="41.2743%" y="959.50"></text></g><g><title>main (156 samples, 0.11%)</title><rect x="41.0243%" y="933" width="0.1066%" height="15" fill="rgb(226,23,13)" fg:x="60046" fg:w="156"/><text x="41.2743%" y="943.50"></text></g><g><title>_dl_catch_exception (15 samples, 0.01%)</title><rect x="41.1356%" y="869" width="0.0102%" height="15" fill="rgb(240,63,4)" fg:x="60209" fg:w="15"/><text x="41.3856%" y="879.50"></text></g><g><title>openaux (15 samples, 0.01%)</title><rect x="41.1356%" y="853" width="0.0102%" height="15" fill="rgb(221,1,32)" fg:x="60209" fg:w="15"/><text x="41.3856%" y="863.50"></text></g><g><title>_dl_map_object (15 samples, 0.01%)</title><rect x="41.1356%" y="837" width="0.0102%" height="15" fill="rgb(242,117,10)" fg:x="60209" fg:w="15"/><text x="41.3856%" y="847.50"></text></g><g><title>_dl_map_object_deps (16 samples, 0.01%)</title><rect x="41.1356%" y="885" width="0.0109%" height="15" fill="rgb(249,172,44)" fg:x="60209" fg:w="16"/><text x="41.3856%" y="895.50"></text></g><g><title>_dl_lookup_symbol_x (34 samples, 0.02%)</title><rect x="41.1568%" y="837" width="0.0232%" height="15" fill="rgb(244,46,45)" fg:x="60240" fg:w="34"/><text x="41.4068%" y="847.50"></text></g><g><title>do_lookup_x (27 samples, 0.02%)</title><rect x="41.1616%" y="821" width="0.0184%" height="15" fill="rgb(206,43,17)" fg:x="60247" fg:w="27"/><text x="41.4116%" y="831.50"></text></g><g><title>elf_machine_rela (39 samples, 0.03%)</title><rect x="41.1541%" y="853" width="0.0266%" height="15" fill="rgb(239,218,39)" fg:x="60236" fg:w="39"/><text x="41.4041%" y="863.50"></text></g><g><title>elf_dynamic_do_Rela (58 samples, 0.04%)</title><rect x="41.1514%" y="869" width="0.0396%" height="15" fill="rgb(208,169,54)" fg:x="60232" fg:w="58"/><text x="41.4014%" y="879.50"></text></g><g><title>elf_machine_rela_relative (15 samples, 0.01%)</title><rect x="41.1807%" y="853" width="0.0102%" height="15" fill="rgb(247,25,42)" fg:x="60275" fg:w="15"/><text x="41.4307%" y="863.50"></text></g><g><title>_dl_relocate_object (64 samples, 0.04%)</title><rect x="41.1479%" y="885" width="0.0437%" height="15" fill="rgb(226,23,31)" fg:x="60227" fg:w="64"/><text x="41.3979%" y="895.50"></text></g><g><title>[ld-2.31.so] (90 samples, 0.06%)</title><rect x="41.1329%" y="901" width="0.0615%" height="15" fill="rgb(247,16,28)" fg:x="60205" fg:w="90"/><text x="41.3829%" y="911.50"></text></g><g><title>_dl_start_final (95 samples, 0.06%)</title><rect x="41.1309%" y="933" width="0.0649%" height="15" fill="rgb(231,147,38)" fg:x="60202" fg:w="95"/><text x="41.3809%" y="943.50"></text></g><g><title>_dl_sysdep_start (94 samples, 0.06%)</title><rect x="41.1315%" y="917" width="0.0642%" height="15" fill="rgb(253,81,48)" fg:x="60203" fg:w="94"/><text x="41.3815%" y="927.50"></text></g><g><title>_dl_start (100 samples, 0.07%)</title><rect x="41.1309%" y="949" width="0.0683%" height="15" fill="rgb(249,222,43)" fg:x="60202" fg:w="100"/><text x="41.3809%" y="959.50"></text></g><g><title>_start (260 samples, 0.18%)</title><rect x="41.0236%" y="965" width="0.1776%" height="15" fill="rgb(221,3,27)" fg:x="60045" fg:w="260"/><text x="41.2736%" y="975.50"></text></g><g><title>asm_exc_page_fault (15 samples, 0.01%)</title><rect x="41.2012%" y="965" width="0.0102%" height="15" fill="rgb(228,180,5)" fg:x="60305" fg:w="15"/><text x="41.4512%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="41.2115%" y="965" width="0.0212%" height="15" fill="rgb(227,131,42)" fg:x="60320" fg:w="31"/><text x="41.4615%" y="975.50"></text></g><g><title>do_syscall_64 (31 samples, 0.02%)</title><rect x="41.2115%" y="949" width="0.0212%" height="15" fill="rgb(212,3,39)" fg:x="60320" fg:w="31"/><text x="41.4615%" y="959.50"></text></g><g><title>__x64_sys_execve (31 samples, 0.02%)</title><rect x="41.2115%" y="933" width="0.0212%" height="15" fill="rgb(226,45,5)" fg:x="60320" fg:w="31"/><text x="41.4615%" y="943.50"></text></g><g><title>do_execveat_common (31 samples, 0.02%)</title><rect x="41.2115%" y="917" width="0.0212%" height="15" fill="rgb(215,167,45)" fg:x="60320" fg:w="31"/><text x="41.4615%" y="927.50"></text></g><g><title>bprm_execve (31 samples, 0.02%)</title><rect x="41.2115%" y="901" width="0.0212%" height="15" fill="rgb(250,218,53)" fg:x="60320" fg:w="31"/><text x="41.4615%" y="911.50"></text></g><g><title>load_elf_binary (31 samples, 0.02%)</title><rect x="41.2115%" y="885" width="0.0212%" height="15" fill="rgb(207,140,0)" fg:x="60320" fg:w="31"/><text x="41.4615%" y="895.50"></text></g><g><title>cc_wrapper.sh (328 samples, 0.22%)</title><rect x="41.0092%" y="981" width="0.2241%" height="15" fill="rgb(238,133,51)" fg:x="60024" fg:w="328"/><text x="41.2592%" y="991.50"></text></g><g><title>[[stack]] (16 samples, 0.01%)</title><rect x="41.2388%" y="965" width="0.0109%" height="15" fill="rgb(218,203,53)" fg:x="60360" fg:w="16"/><text x="41.4888%" y="975.50"></text></g><g><title>filemap_map_pages (48 samples, 0.03%)</title><rect x="42.4249%" y="869" width="0.0328%" height="15" fill="rgb(226,184,25)" fg:x="62096" fg:w="48"/><text x="42.6749%" y="879.50"></text></g><g><title>asm_exc_page_fault (84 samples, 0.06%)</title><rect x="42.4091%" y="933" width="0.0574%" height="15" fill="rgb(231,121,21)" fg:x="62073" fg:w="84"/><text x="42.6591%" y="943.50"></text></g><g><title>exc_page_fault (84 samples, 0.06%)</title><rect x="42.4091%" y="917" width="0.0574%" height="15" fill="rgb(251,14,34)" fg:x="62073" fg:w="84"/><text x="42.6591%" y="927.50"></text></g><g><title>do_user_addr_fault (84 samples, 0.06%)</title><rect x="42.4091%" y="901" width="0.0574%" height="15" fill="rgb(249,193,11)" fg:x="62073" fg:w="84"/><text x="42.6591%" y="911.50"></text></g><g><title>handle_mm_fault (81 samples, 0.06%)</title><rect x="42.4112%" y="885" width="0.0553%" height="15" fill="rgb(220,172,37)" fg:x="62076" fg:w="81"/><text x="42.6612%" y="895.50"></text></g><g><title>[libc-2.31.so] (215 samples, 0.15%)</title><rect x="42.3244%" y="949" width="0.1469%" height="15" fill="rgb(231,229,43)" fg:x="61949" fg:w="215"/><text x="42.5744%" y="959.50"></text></g><g><title>path_lookupat (16 samples, 0.01%)</title><rect x="42.4727%" y="869" width="0.0109%" height="15" fill="rgb(250,161,5)" fg:x="62166" fg:w="16"/><text x="42.7227%" y="879.50"></text></g><g><title>filename_lookup (17 samples, 0.01%)</title><rect x="42.4727%" y="885" width="0.0116%" height="15" fill="rgb(218,225,18)" fg:x="62166" fg:w="17"/><text x="42.7227%" y="895.50"></text></g><g><title>do_faccessat (27 samples, 0.02%)</title><rect x="42.4727%" y="901" width="0.0184%" height="15" fill="rgb(245,45,42)" fg:x="62166" fg:w="27"/><text x="42.7227%" y="911.50"></text></g><g><title>__GI___access (29 samples, 0.02%)</title><rect x="42.4720%" y="949" width="0.0198%" height="15" fill="rgb(211,115,1)" fg:x="62165" fg:w="29"/><text x="42.7220%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.02%)</title><rect x="42.4720%" y="933" width="0.0198%" height="15" fill="rgb(248,133,52)" fg:x="62165" fg:w="29"/><text x="42.7220%" y="943.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="42.4727%" y="917" width="0.0191%" height="15" fill="rgb(238,100,21)" fg:x="62166" fg:w="28"/><text x="42.7227%" y="927.50"></text></g><g><title>__GI___readlink (21 samples, 0.01%)</title><rect x="42.5396%" y="949" width="0.0143%" height="15" fill="rgb(247,144,11)" fg:x="62264" fg:w="21"/><text x="42.7896%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="42.5396%" y="933" width="0.0143%" height="15" fill="rgb(206,164,16)" fg:x="62264" fg:w="21"/><text x="42.7896%" y="943.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="42.5396%" y="917" width="0.0143%" height="15" fill="rgb(222,34,3)" fg:x="62264" fg:w="21"/><text x="42.7896%" y="927.50"></text></g><g><title>__x64_sys_readlink (21 samples, 0.01%)</title><rect x="42.5396%" y="901" width="0.0143%" height="15" fill="rgb(248,82,4)" fg:x="62264" fg:w="21"/><text x="42.7896%" y="911.50"></text></g><g><title>do_readlinkat (21 samples, 0.01%)</title><rect x="42.5396%" y="885" width="0.0143%" height="15" fill="rgb(228,81,46)" fg:x="62264" fg:w="21"/><text x="42.7896%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.05%)</title><rect x="42.5636%" y="805" width="0.0485%" height="15" fill="rgb(227,67,47)" fg:x="62299" fg:w="71"/><text x="42.8136%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.05%)</title><rect x="42.5649%" y="789" width="0.0471%" height="15" fill="rgb(215,93,53)" fg:x="62301" fg:w="69"/><text x="42.8149%" y="799.50"></text></g><g><title>native_write_msr (69 samples, 0.05%)</title><rect x="42.5649%" y="773" width="0.0471%" height="15" fill="rgb(248,194,39)" fg:x="62301" fg:w="69"/><text x="42.8149%" y="783.50"></text></g><g><title>finish_task_switch (74 samples, 0.05%)</title><rect x="42.5636%" y="821" width="0.0506%" height="15" fill="rgb(215,5,19)" fg:x="62299" fg:w="74"/><text x="42.8136%" y="831.50"></text></g><g><title>schedule (77 samples, 0.05%)</title><rect x="42.5622%" y="853" width="0.0526%" height="15" fill="rgb(226,215,51)" fg:x="62297" fg:w="77"/><text x="42.8122%" y="863.50"></text></g><g><title>__schedule (76 samples, 0.05%)</title><rect x="42.5629%" y="837" width="0.0519%" height="15" fill="rgb(225,56,26)" fg:x="62298" fg:w="76"/><text x="42.8129%" y="847.50"></text></g><g><title>__GI___wait4 (92 samples, 0.06%)</title><rect x="42.5601%" y="949" width="0.0629%" height="15" fill="rgb(222,75,29)" fg:x="62294" fg:w="92"/><text x="42.8101%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.06%)</title><rect x="42.5601%" y="933" width="0.0629%" height="15" fill="rgb(236,139,6)" fg:x="62294" fg:w="92"/><text x="42.8101%" y="943.50"></text></g><g><title>do_syscall_64 (92 samples, 0.06%)</title><rect x="42.5601%" y="917" width="0.0629%" height="15" fill="rgb(223,137,36)" fg:x="62294" fg:w="92"/><text x="42.8101%" y="927.50"></text></g><g><title>__do_sys_wait4 (92 samples, 0.06%)</title><rect x="42.5601%" y="901" width="0.0629%" height="15" fill="rgb(226,99,2)" fg:x="62294" fg:w="92"/><text x="42.8101%" y="911.50"></text></g><g><title>kernel_wait4 (92 samples, 0.06%)</title><rect x="42.5601%" y="885" width="0.0629%" height="15" fill="rgb(206,133,23)" fg:x="62294" fg:w="92"/><text x="42.8101%" y="895.50"></text></g><g><title>do_wait (92 samples, 0.06%)</title><rect x="42.5601%" y="869" width="0.0629%" height="15" fill="rgb(243,173,15)" fg:x="62294" fg:w="92"/><text x="42.8101%" y="879.50"></text></g><g><title>link_path_walk.part.0 (17 samples, 0.01%)</title><rect x="42.6278%" y="837" width="0.0116%" height="15" fill="rgb(228,69,28)" fg:x="62393" fg:w="17"/><text x="42.8778%" y="847.50"></text></g><g><title>filename_lookup (36 samples, 0.02%)</title><rect x="42.6264%" y="869" width="0.0246%" height="15" fill="rgb(212,51,22)" fg:x="62391" fg:w="36"/><text x="42.8764%" y="879.50"></text></g><g><title>path_lookupat (35 samples, 0.02%)</title><rect x="42.6271%" y="853" width="0.0239%" height="15" fill="rgb(227,113,0)" fg:x="62392" fg:w="35"/><text x="42.8771%" y="863.50"></text></g><g><title>walk_component (16 samples, 0.01%)</title><rect x="42.6401%" y="837" width="0.0109%" height="15" fill="rgb(252,84,27)" fg:x="62411" fg:w="16"/><text x="42.8901%" y="847.50"></text></g><g><title>__do_sys_newstat (50 samples, 0.03%)</title><rect x="42.6257%" y="901" width="0.0342%" height="15" fill="rgb(223,145,39)" fg:x="62390" fg:w="50"/><text x="42.8757%" y="911.50"></text></g><g><title>vfs_statx (50 samples, 0.03%)</title><rect x="42.6257%" y="885" width="0.0342%" height="15" fill="rgb(239,219,30)" fg:x="62390" fg:w="50"/><text x="42.8757%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.03%)</title><rect x="42.6257%" y="933" width="0.0348%" height="15" fill="rgb(224,196,39)" fg:x="62390" fg:w="51"/><text x="42.8757%" y="943.50"></text></g><g><title>do_syscall_64 (51 samples, 0.03%)</title><rect x="42.6257%" y="917" width="0.0348%" height="15" fill="rgb(205,35,43)" fg:x="62390" fg:w="51"/><text x="42.8757%" y="927.50"></text></g><g><title>__GI___xstat (56 samples, 0.04%)</title><rect x="42.6230%" y="949" width="0.0383%" height="15" fill="rgb(228,201,21)" fg:x="62386" fg:w="56"/><text x="42.8730%" y="959.50"></text></g><g><title>__internal_atexit (16 samples, 0.01%)</title><rect x="42.6756%" y="949" width="0.0109%" height="15" fill="rgb(237,118,16)" fg:x="62463" fg:w="16"/><text x="42.9256%" y="959.50"></text></g><g><title>do_filp_open (38 samples, 0.03%)</title><rect x="42.6968%" y="869" width="0.0260%" height="15" fill="rgb(241,17,19)" fg:x="62494" fg:w="38"/><text x="42.9468%" y="879.50"></text></g><g><title>path_openat (38 samples, 0.03%)</title><rect x="42.6968%" y="853" width="0.0260%" height="15" fill="rgb(214,10,25)" fg:x="62494" fg:w="38"/><text x="42.9468%" y="863.50"></text></g><g><title>__libc_open64 (44 samples, 0.03%)</title><rect x="42.6961%" y="949" width="0.0301%" height="15" fill="rgb(238,37,29)" fg:x="62493" fg:w="44"/><text x="42.9461%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.03%)</title><rect x="42.6961%" y="933" width="0.0301%" height="15" fill="rgb(253,83,25)" fg:x="62493" fg:w="44"/><text x="42.9461%" y="943.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="42.6961%" y="917" width="0.0301%" height="15" fill="rgb(234,192,12)" fg:x="62493" fg:w="44"/><text x="42.9461%" y="927.50"></text></g><g><title>__x64_sys_openat (44 samples, 0.03%)</title><rect x="42.6961%" y="901" width="0.0301%" height="15" fill="rgb(241,216,45)" fg:x="62493" fg:w="44"/><text x="42.9461%" y="911.50"></text></g><g><title>do_sys_openat2 (44 samples, 0.03%)</title><rect x="42.6961%" y="885" width="0.0301%" height="15" fill="rgb(242,22,33)" fg:x="62493" fg:w="44"/><text x="42.9461%" y="895.50"></text></g><g><title>__libc_start_main (15 samples, 0.01%)</title><rect x="42.7344%" y="949" width="0.0102%" height="15" fill="rgb(231,105,49)" fg:x="62549" fg:w="15"/><text x="42.9844%" y="959.50"></text></g><g><title>__GI_exit (15 samples, 0.01%)</title><rect x="42.7344%" y="933" width="0.0102%" height="15" fill="rgb(218,204,15)" fg:x="62549" fg:w="15"/><text x="42.9844%" y="943.50"></text></g><g><title>__run_exit_handlers (15 samples, 0.01%)</title><rect x="42.7344%" y="917" width="0.0102%" height="15" fill="rgb(235,138,41)" fg:x="62549" fg:w="15"/><text x="42.9844%" y="927.50"></text></g><g><title>__opendir (16 samples, 0.01%)</title><rect x="42.7487%" y="949" width="0.0109%" height="15" fill="rgb(246,0,9)" fg:x="62570" fg:w="16"/><text x="42.9987%" y="959.50"></text></g><g><title>__GI___open64_nocancel (16 samples, 0.01%)</title><rect x="42.7487%" y="933" width="0.0109%" height="15" fill="rgb(210,74,4)" fg:x="62570" fg:w="16"/><text x="42.9987%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="42.7487%" y="917" width="0.0109%" height="15" fill="rgb(250,60,41)" fg:x="62570" fg:w="16"/><text x="42.9987%" y="927.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="42.7494%" y="901" width="0.0102%" height="15" fill="rgb(220,115,12)" fg:x="62571" fg:w="15"/><text x="42.9994%" y="911.50"></text></g><g><title>__x64_sys_openat (15 samples, 0.01%)</title><rect x="42.7494%" y="885" width="0.0102%" height="15" fill="rgb(237,100,13)" fg:x="62571" fg:w="15"/><text x="42.9994%" y="895.50"></text></g><g><title>do_sys_openat2 (15 samples, 0.01%)</title><rect x="42.7494%" y="869" width="0.0102%" height="15" fill="rgb(213,55,26)" fg:x="62571" fg:w="15"/><text x="42.9994%" y="879.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="42.7665%" y="901" width="0.0150%" height="15" fill="rgb(216,17,4)" fg:x="62596" fg:w="22"/><text x="43.0165%" y="911.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.02%)</title><rect x="42.7665%" y="885" width="0.0150%" height="15" fill="rgb(220,153,47)" fg:x="62596" fg:w="22"/><text x="43.0165%" y="895.50"></text></g><g><title>do_futex (21 samples, 0.01%)</title><rect x="42.7672%" y="869" width="0.0143%" height="15" fill="rgb(215,131,9)" fg:x="62597" fg:w="21"/><text x="43.0172%" y="879.50"></text></g><g><title>futex_wake (20 samples, 0.01%)</title><rect x="42.7678%" y="853" width="0.0137%" height="15" fill="rgb(233,46,42)" fg:x="62598" fg:w="20"/><text x="43.0178%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="42.7651%" y="917" width="0.0178%" height="15" fill="rgb(226,86,7)" fg:x="62594" fg:w="26"/><text x="43.0151%" y="927.50"></text></g><g><title>__pthread_once_slow (36 samples, 0.02%)</title><rect x="42.7596%" y="949" width="0.0246%" height="15" fill="rgb(239,226,21)" fg:x="62586" fg:w="36"/><text x="43.0096%" y="959.50"></text></g><g><title>futex_wake (31 samples, 0.02%)</title><rect x="42.7631%" y="933" width="0.0212%" height="15" fill="rgb(244,137,22)" fg:x="62591" fg:w="31"/><text x="43.0131%" y="943.50"></text></g><g><title>_dl_runtime_resolve_xsavec (21 samples, 0.01%)</title><rect x="42.7870%" y="949" width="0.0143%" height="15" fill="rgb(211,139,35)" fg:x="62626" fg:w="21"/><text x="43.0370%" y="959.50"></text></g><g><title>_int_free (24 samples, 0.02%)</title><rect x="42.8013%" y="949" width="0.0164%" height="15" fill="rgb(214,62,50)" fg:x="62647" fg:w="24"/><text x="43.0513%" y="959.50"></text></g><g><title>alloc_pages_vma (20 samples, 0.01%)</title><rect x="42.8485%" y="885" width="0.0137%" height="15" fill="rgb(212,113,44)" fg:x="62716" fg:w="20"/><text x="43.0985%" y="895.50"></text></g><g><title>__alloc_pages_nodemask (19 samples, 0.01%)</title><rect x="42.8491%" y="869" width="0.0130%" height="15" fill="rgb(226,150,43)" fg:x="62717" fg:w="19"/><text x="43.0991%" y="879.50"></text></g><g><title>get_page_from_freelist (18 samples, 0.01%)</title><rect x="42.8498%" y="853" width="0.0123%" height="15" fill="rgb(250,71,37)" fg:x="62718" fg:w="18"/><text x="43.0998%" y="863.50"></text></g><g><title>__mod_memcg_lruvec_state (23 samples, 0.02%)</title><rect x="43.0029%" y="837" width="0.0157%" height="15" fill="rgb(219,76,19)" fg:x="62942" fg:w="23"/><text x="43.2529%" y="847.50"></text></g><g><title>page_add_file_rmap (63 samples, 0.04%)</title><rect x="42.9762%" y="853" width="0.0430%" height="15" fill="rgb(250,39,11)" fg:x="62903" fg:w="63"/><text x="43.2262%" y="863.50"></text></g><g><title>alloc_set_pte (91 samples, 0.06%)</title><rect x="42.9591%" y="869" width="0.0622%" height="15" fill="rgb(230,64,31)" fg:x="62878" fg:w="91"/><text x="43.2091%" y="879.50"></text></g><g><title>unlock_page (20 samples, 0.01%)</title><rect x="43.0213%" y="869" width="0.0137%" height="15" fill="rgb(208,222,23)" fg:x="62969" fg:w="20"/><text x="43.2713%" y="879.50"></text></g><g><title>filemap_map_pages (270 samples, 0.18%)</title><rect x="42.8628%" y="885" width="0.1845%" height="15" fill="rgb(227,125,18)" fg:x="62737" fg:w="270"/><text x="43.1128%" y="895.50"></text></g><g><title>xas_find (18 samples, 0.01%)</title><rect x="43.0350%" y="869" width="0.0123%" height="15" fill="rgb(234,210,9)" fg:x="62989" fg:w="18"/><text x="43.2850%" y="879.50"></text></g><g><title>xas_load (17 samples, 0.01%)</title><rect x="43.0357%" y="853" width="0.0116%" height="15" fill="rgb(217,127,24)" fg:x="62990" fg:w="17"/><text x="43.2857%" y="863.50"></text></g><g><title>handle_mm_fault (337 samples, 0.23%)</title><rect x="42.8280%" y="901" width="0.2302%" height="15" fill="rgb(239,141,48)" fg:x="62686" fg:w="337"/><text x="43.0780%" y="911.50"></text></g><g><title>exc_page_fault (353 samples, 0.24%)</title><rect x="42.8191%" y="933" width="0.2412%" height="15" fill="rgb(227,109,8)" fg:x="62673" fg:w="353"/><text x="43.0691%" y="943.50"></text></g><g><title>do_user_addr_fault (350 samples, 0.24%)</title><rect x="42.8211%" y="917" width="0.2391%" height="15" fill="rgb(235,184,23)" fg:x="62676" fg:w="350"/><text x="43.0711%" y="927.50"></text></g><g><title>asm_exc_page_fault (357 samples, 0.24%)</title><rect x="42.8184%" y="949" width="0.2439%" height="15" fill="rgb(227,226,48)" fg:x="62672" fg:w="357"/><text x="43.0684%" y="959.50"></text></g><g><title>error_entry (30 samples, 0.02%)</title><rect x="43.0691%" y="949" width="0.0205%" height="15" fill="rgb(206,150,11)" fg:x="63039" fg:w="30"/><text x="43.3191%" y="959.50"></text></g><g><title>sync_regs (26 samples, 0.02%)</title><rect x="43.0719%" y="933" width="0.0178%" height="15" fill="rgb(254,2,33)" fg:x="63043" fg:w="26"/><text x="43.3219%" y="943.50"></text></g><g><title>get_page_from_freelist (19 samples, 0.01%)</title><rect x="43.1559%" y="805" width="0.0130%" height="15" fill="rgb(243,160,20)" fg:x="63166" fg:w="19"/><text x="43.4059%" y="815.50"></text></g><g><title>alloc_pages_vma (23 samples, 0.02%)</title><rect x="43.1539%" y="837" width="0.0157%" height="15" fill="rgb(218,208,30)" fg:x="63163" fg:w="23"/><text x="43.4039%" y="847.50"></text></g><g><title>__alloc_pages_nodemask (22 samples, 0.02%)</title><rect x="43.1545%" y="821" width="0.0150%" height="15" fill="rgb(224,120,49)" fg:x="63164" fg:w="22"/><text x="43.4045%" y="831.50"></text></g><g><title>handle_mm_fault (52 samples, 0.04%)</title><rect x="43.1450%" y="853" width="0.0355%" height="15" fill="rgb(246,12,2)" fg:x="63150" fg:w="52"/><text x="43.3950%" y="863.50"></text></g><g><title>exc_page_fault (57 samples, 0.04%)</title><rect x="43.1422%" y="885" width="0.0389%" height="15" fill="rgb(236,117,3)" fg:x="63146" fg:w="57"/><text x="43.3922%" y="895.50"></text></g><g><title>do_user_addr_fault (57 samples, 0.04%)</title><rect x="43.1422%" y="869" width="0.0389%" height="15" fill="rgb(216,128,52)" fg:x="63146" fg:w="57"/><text x="43.3922%" y="879.50"></text></g><g><title>asm_exc_page_fault (58 samples, 0.04%)</title><rect x="43.1422%" y="901" width="0.0396%" height="15" fill="rgb(246,145,19)" fg:x="63146" fg:w="58"/><text x="43.3922%" y="911.50"></text></g><g><title>_int_malloc (136 samples, 0.09%)</title><rect x="43.1108%" y="917" width="0.0929%" height="15" fill="rgb(222,11,46)" fg:x="63100" fg:w="136"/><text x="43.3608%" y="927.50"></text></g><g><title>__GI___libc_malloc (161 samples, 0.11%)</title><rect x="43.0971%" y="933" width="0.1100%" height="15" fill="rgb(245,82,36)" fg:x="63080" fg:w="161"/><text x="43.3471%" y="943.50"></text></g><g><title>operator new (166 samples, 0.11%)</title><rect x="43.0965%" y="949" width="0.1134%" height="15" fill="rgb(250,73,51)" fg:x="63079" fg:w="166"/><text x="43.3465%" y="959.50"></text></g><g><title>[clang] (2,915 samples, 1.99%)</title><rect x="41.2525%" y="965" width="1.9916%" height="15" fill="rgb(221,189,23)" fg:x="60380" fg:w="2915"/><text x="41.5025%" y="975.50">[..</text></g><g><title>[unknown] (23 samples, 0.02%)</title><rect x="43.2447%" y="965" width="0.0157%" height="15" fill="rgb(210,33,7)" fg:x="63296" fg:w="23"/><text x="43.4947%" y="975.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="43.2748%" y="901" width="0.0184%" height="15" fill="rgb(210,107,22)" fg:x="63340" fg:w="27"/><text x="43.5248%" y="911.50"></text></g><g><title>__x64_sys_rt_sigaction (25 samples, 0.02%)</title><rect x="43.2761%" y="885" width="0.0171%" height="15" fill="rgb(222,116,37)" fg:x="63342" fg:w="25"/><text x="43.5261%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="43.2727%" y="917" width="0.0219%" height="15" fill="rgb(254,17,48)" fg:x="63337" fg:w="32"/><text x="43.5227%" y="927.50"></text></g><g><title>__GI___libc_sigaction (50 samples, 0.03%)</title><rect x="43.2618%" y="933" width="0.0342%" height="15" fill="rgb(224,36,32)" fg:x="63321" fg:w="50"/><text x="43.5118%" y="943.50"></text></g><g><title>begin_new_exec (17 samples, 0.01%)</title><rect x="43.3035%" y="821" width="0.0116%" height="15" fill="rgb(232,90,46)" fg:x="63382" fg:w="17"/><text x="43.5535%" y="831.50"></text></g><g><title>load_elf_binary (22 samples, 0.02%)</title><rect x="43.3021%" y="837" width="0.0150%" height="15" fill="rgb(241,66,40)" fg:x="63380" fg:w="22"/><text x="43.5521%" y="847.50"></text></g><g><title>bprm_execve (34 samples, 0.02%)</title><rect x="43.2966%" y="853" width="0.0232%" height="15" fill="rgb(249,184,29)" fg:x="63372" fg:w="34"/><text x="43.5466%" y="863.50"></text></g><g><title>__spawni_child (118 samples, 0.08%)</title><rect x="43.2611%" y="949" width="0.0806%" height="15" fill="rgb(231,181,1)" fg:x="63320" fg:w="118"/><text x="43.5111%" y="959.50"></text></g><g><title>__GI_execve (67 samples, 0.05%)</title><rect x="43.2960%" y="933" width="0.0458%" height="15" fill="rgb(224,94,2)" fg:x="63371" fg:w="67"/><text x="43.5460%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.05%)</title><rect x="43.2960%" y="917" width="0.0458%" height="15" fill="rgb(229,170,15)" fg:x="63371" fg:w="67"/><text x="43.5460%" y="927.50"></text></g><g><title>do_syscall_64 (67 samples, 0.05%)</title><rect x="43.2960%" y="901" width="0.0458%" height="15" fill="rgb(240,127,35)" fg:x="63371" fg:w="67"/><text x="43.5460%" y="911.50"></text></g><g><title>__x64_sys_execve (67 samples, 0.05%)</title><rect x="43.2960%" y="885" width="0.0458%" height="15" fill="rgb(248,196,34)" fg:x="63371" fg:w="67"/><text x="43.5460%" y="895.50"></text></g><g><title>do_execveat_common (67 samples, 0.05%)</title><rect x="43.2960%" y="869" width="0.0458%" height="15" fill="rgb(236,137,7)" fg:x="63371" fg:w="67"/><text x="43.5460%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (196 samples, 0.13%)</title><rect x="43.3602%" y="901" width="0.1339%" height="15" fill="rgb(235,127,16)" fg:x="63465" fg:w="196"/><text x="43.6102%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (195 samples, 0.13%)</title><rect x="43.3609%" y="885" width="0.1332%" height="15" fill="rgb(250,192,54)" fg:x="63466" fg:w="195"/><text x="43.6109%" y="895.50"></text></g><g><title>native_write_msr (195 samples, 0.13%)</title><rect x="43.3609%" y="869" width="0.1332%" height="15" fill="rgb(218,98,20)" fg:x="63466" fg:w="195"/><text x="43.6109%" y="879.50"></text></g><g><title>schedule_tail (209 samples, 0.14%)</title><rect x="43.3520%" y="933" width="0.1428%" height="15" fill="rgb(230,176,47)" fg:x="63453" fg:w="209"/><text x="43.6020%" y="943.50"></text></g><g><title>finish_task_switch (209 samples, 0.14%)</title><rect x="43.3520%" y="917" width="0.1428%" height="15" fill="rgb(244,2,33)" fg:x="63453" fg:w="209"/><text x="43.6020%" y="927.50"></text></g><g><title>__GI___clone (345 samples, 0.24%)</title><rect x="43.2604%" y="965" width="0.2357%" height="15" fill="rgb(231,100,17)" fg:x="63319" fg:w="345"/><text x="43.5104%" y="975.50"></text></g><g><title>ret_from_fork (220 samples, 0.15%)</title><rect x="43.3458%" y="949" width="0.1503%" height="15" fill="rgb(245,23,12)" fg:x="63444" fg:w="220"/><text x="43.5958%" y="959.50"></text></g><g><title>[libstdc++.so.6.0.28] (17 samples, 0.01%)</title><rect x="43.4968%" y="901" width="0.0116%" height="15" fill="rgb(249,55,22)" fg:x="63665" fg:w="17"/><text x="43.7468%" y="911.50"></text></g><g><title>_dl_start_user (28 samples, 0.02%)</title><rect x="43.4961%" y="965" width="0.0191%" height="15" fill="rgb(207,134,9)" fg:x="63664" fg:w="28"/><text x="43.7461%" y="975.50"></text></g><g><title>_dl_init (27 samples, 0.02%)</title><rect x="43.4968%" y="949" width="0.0184%" height="15" fill="rgb(218,134,0)" fg:x="63665" fg:w="27"/><text x="43.7468%" y="959.50"></text></g><g><title>call_init (27 samples, 0.02%)</title><rect x="43.4968%" y="933" width="0.0184%" height="15" fill="rgb(213,212,33)" fg:x="63665" fg:w="27"/><text x="43.7468%" y="943.50"></text></g><g><title>call_init (27 samples, 0.02%)</title><rect x="43.4968%" y="917" width="0.0184%" height="15" fill="rgb(252,106,18)" fg:x="63665" fg:w="27"/><text x="43.7468%" y="927.50"></text></g><g><title>__do_munmap (18 samples, 0.01%)</title><rect x="43.5289%" y="661" width="0.0123%" height="15" fill="rgb(208,126,42)" fg:x="63712" fg:w="18"/><text x="43.7789%" y="671.50"></text></g><g><title>do_mmap (31 samples, 0.02%)</title><rect x="43.5276%" y="693" width="0.0212%" height="15" fill="rgb(246,175,29)" fg:x="63710" fg:w="31"/><text x="43.7776%" y="703.50"></text></g><g><title>mmap_region (29 samples, 0.02%)</title><rect x="43.5289%" y="677" width="0.0198%" height="15" fill="rgb(215,13,50)" fg:x="63712" fg:w="29"/><text x="43.7789%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="43.5276%" y="757" width="0.0219%" height="15" fill="rgb(216,172,15)" fg:x="63710" fg:w="32"/><text x="43.7776%" y="767.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="43.5276%" y="741" width="0.0219%" height="15" fill="rgb(212,103,13)" fg:x="63710" fg:w="32"/><text x="43.7776%" y="751.50"></text></g><g><title>ksys_mmap_pgoff (32 samples, 0.02%)</title><rect x="43.5276%" y="725" width="0.0219%" height="15" fill="rgb(231,171,36)" fg:x="63710" fg:w="32"/><text x="43.7776%" y="735.50"></text></g><g><title>vm_mmap_pgoff (32 samples, 0.02%)</title><rect x="43.5276%" y="709" width="0.0219%" height="15" fill="rgb(250,123,20)" fg:x="63710" fg:w="32"/><text x="43.7776%" y="719.50"></text></g><g><title>_dl_map_segments (40 samples, 0.03%)</title><rect x="43.5235%" y="805" width="0.0273%" height="15" fill="rgb(212,53,50)" fg:x="63704" fg:w="40"/><text x="43.7735%" y="815.50"></text></g><g><title>__mmap64 (35 samples, 0.02%)</title><rect x="43.5269%" y="789" width="0.0239%" height="15" fill="rgb(243,54,12)" fg:x="63709" fg:w="35"/><text x="43.7769%" y="799.50"></text></g><g><title>__mmap64 (35 samples, 0.02%)</title><rect x="43.5269%" y="773" width="0.0239%" height="15" fill="rgb(234,101,34)" fg:x="63709" fg:w="35"/><text x="43.7769%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (54 samples, 0.04%)</title><rect x="43.5235%" y="821" width="0.0369%" height="15" fill="rgb(254,67,22)" fg:x="63704" fg:w="54"/><text x="43.7735%" y="831.50"></text></g><g><title>__GI___open64_nocancel (19 samples, 0.01%)</title><rect x="43.5631%" y="789" width="0.0130%" height="15" fill="rgb(250,35,47)" fg:x="63762" fg:w="19"/><text x="43.8131%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="43.5631%" y="773" width="0.0130%" height="15" fill="rgb(226,126,38)" fg:x="63762" fg:w="19"/><text x="43.8131%" y="783.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="43.5631%" y="757" width="0.0130%" height="15" fill="rgb(216,138,53)" fg:x="63762" fg:w="19"/><text x="43.8131%" y="767.50"></text></g><g><title>__x64_sys_openat (19 samples, 0.01%)</title><rect x="43.5631%" y="741" width="0.0130%" height="15" fill="rgb(246,199,43)" fg:x="63762" fg:w="19"/><text x="43.8131%" y="751.50"></text></g><g><title>do_sys_openat2 (18 samples, 0.01%)</title><rect x="43.5638%" y="725" width="0.0123%" height="15" fill="rgb(232,125,11)" fg:x="63763" fg:w="18"/><text x="43.8138%" y="735.50"></text></g><g><title>open_path (23 samples, 0.02%)</title><rect x="43.5610%" y="821" width="0.0157%" height="15" fill="rgb(218,219,45)" fg:x="63759" fg:w="23"/><text x="43.8110%" y="831.50"></text></g><g><title>open_verify (20 samples, 0.01%)</title><rect x="43.5631%" y="805" width="0.0137%" height="15" fill="rgb(216,102,54)" fg:x="63762" fg:w="20"/><text x="43.8131%" y="815.50"></text></g><g><title>_dl_catch_exception (81 samples, 0.06%)</title><rect x="43.5228%" y="869" width="0.0553%" height="15" fill="rgb(250,228,7)" fg:x="63703" fg:w="81"/><text x="43.7728%" y="879.50"></text></g><g><title>openaux (80 samples, 0.05%)</title><rect x="43.5235%" y="853" width="0.0547%" height="15" fill="rgb(226,125,25)" fg:x="63704" fg:w="80"/><text x="43.7735%" y="863.50"></text></g><g><title>_dl_map_object (80 samples, 0.05%)</title><rect x="43.5235%" y="837" width="0.0547%" height="15" fill="rgb(224,165,27)" fg:x="63704" fg:w="80"/><text x="43.7735%" y="847.50"></text></g><g><title>_dl_map_object_deps (85 samples, 0.06%)</title><rect x="43.5228%" y="885" width="0.0581%" height="15" fill="rgb(233,86,3)" fg:x="63703" fg:w="85"/><text x="43.7728%" y="895.50"></text></g><g><title>dl_new_hash (49 samples, 0.03%)</title><rect x="43.6342%" y="821" width="0.0335%" height="15" fill="rgb(228,116,20)" fg:x="63866" fg:w="49"/><text x="43.8842%" y="831.50"></text></g><g><title>_dl_lookup_symbol_x (149 samples, 0.10%)</title><rect x="43.6321%" y="837" width="0.1018%" height="15" fill="rgb(209,192,17)" fg:x="63863" fg:w="149"/><text x="43.8821%" y="847.50"></text></g><g><title>do_lookup_x (97 samples, 0.07%)</title><rect x="43.6676%" y="821" width="0.0663%" height="15" fill="rgb(224,88,34)" fg:x="63915" fg:w="97"/><text x="43.9176%" y="831.50"></text></g><g><title>alloc_pages_vma (34 samples, 0.02%)</title><rect x="43.7462%" y="773" width="0.0232%" height="15" fill="rgb(233,38,6)" fg:x="64030" fg:w="34"/><text x="43.9962%" y="783.50"></text></g><g><title>__alloc_pages_nodemask (33 samples, 0.02%)</title><rect x="43.7469%" y="757" width="0.0225%" height="15" fill="rgb(212,59,30)" fg:x="64031" fg:w="33"/><text x="43.9969%" y="767.50"></text></g><g><title>get_page_from_freelist (32 samples, 0.02%)</title><rect x="43.7476%" y="741" width="0.0219%" height="15" fill="rgb(213,80,3)" fg:x="64032" fg:w="32"/><text x="43.9976%" y="751.50"></text></g><g><title>prep_new_page (20 samples, 0.01%)</title><rect x="43.7558%" y="725" width="0.0137%" height="15" fill="rgb(251,178,7)" fg:x="64044" fg:w="20"/><text x="44.0058%" y="735.50"></text></g><g><title>kernel_init_free_pages (20 samples, 0.01%)</title><rect x="43.7558%" y="709" width="0.0137%" height="15" fill="rgb(213,154,26)" fg:x="64044" fg:w="20"/><text x="44.0058%" y="719.50"></text></g><g><title>clear_page_erms (19 samples, 0.01%)</title><rect x="43.7564%" y="693" width="0.0130%" height="15" fill="rgb(238,165,49)" fg:x="64045" fg:w="19"/><text x="44.0064%" y="703.50"></text></g><g><title>copy_page (37 samples, 0.03%)</title><rect x="43.7728%" y="773" width="0.0253%" height="15" fill="rgb(248,91,46)" fg:x="64069" fg:w="37"/><text x="44.0228%" y="783.50"></text></g><g><title>handle_mm_fault (116 samples, 0.08%)</title><rect x="43.7366%" y="789" width="0.0793%" height="15" fill="rgb(244,21,52)" fg:x="64016" fg:w="116"/><text x="43.9866%" y="799.50"></text></g><g><title>asm_exc_page_fault (121 samples, 0.08%)</title><rect x="43.7339%" y="837" width="0.0827%" height="15" fill="rgb(247,122,20)" fg:x="64012" fg:w="121"/><text x="43.9839%" y="847.50"></text></g><g><title>exc_page_fault (120 samples, 0.08%)</title><rect x="43.7346%" y="821" width="0.0820%" height="15" fill="rgb(218,27,9)" fg:x="64013" fg:w="120"/><text x="43.9846%" y="831.50"></text></g><g><title>do_user_addr_fault (119 samples, 0.08%)</title><rect x="43.7353%" y="805" width="0.0813%" height="15" fill="rgb(246,7,6)" fg:x="64014" fg:w="119"/><text x="43.9853%" y="815.50"></text></g><g><title>elf_machine_rela (322 samples, 0.22%)</title><rect x="43.6034%" y="853" width="0.2200%" height="15" fill="rgb(227,135,54)" fg:x="63821" fg:w="322"/><text x="43.8534%" y="863.50"></text></g><g><title>_dl_relocate_object (354 samples, 0.24%)</title><rect x="43.5843%" y="885" width="0.2419%" height="15" fill="rgb(247,14,11)" fg:x="63793" fg:w="354"/><text x="43.8343%" y="895.50"></text></g><g><title>elf_dynamic_do_Rela (342 samples, 0.23%)</title><rect x="43.5925%" y="869" width="0.2337%" height="15" fill="rgb(206,149,34)" fg:x="63805" fg:w="342"/><text x="43.8425%" y="879.50"></text></g><g><title>[ld-2.31.so] (453 samples, 0.31%)</title><rect x="43.5187%" y="901" width="0.3095%" height="15" fill="rgb(227,228,4)" fg:x="63697" fg:w="453"/><text x="43.7687%" y="911.50"></text></g><g><title>_start (457 samples, 0.31%)</title><rect x="43.5180%" y="965" width="0.3122%" height="15" fill="rgb(238,218,28)" fg:x="63696" fg:w="457"/><text x="43.7680%" y="975.50"></text></g><g><title>_dl_start (457 samples, 0.31%)</title><rect x="43.5180%" y="949" width="0.3122%" height="15" fill="rgb(252,86,40)" fg:x="63696" fg:w="457"/><text x="43.7680%" y="959.50"></text></g><g><title>_dl_start_final (457 samples, 0.31%)</title><rect x="43.5180%" y="933" width="0.3122%" height="15" fill="rgb(251,225,11)" fg:x="63696" fg:w="457"/><text x="43.7680%" y="943.50"></text></g><g><title>_dl_sysdep_start (457 samples, 0.31%)</title><rect x="43.5180%" y="917" width="0.3122%" height="15" fill="rgb(206,46,49)" fg:x="63696" fg:w="457"/><text x="43.7680%" y="927.50"></text></g><g><title>asm_exc_page_fault (153 samples, 0.10%)</title><rect x="43.8302%" y="965" width="0.1045%" height="15" fill="rgb(245,128,24)" fg:x="64153" fg:w="153"/><text x="44.0802%" y="975.50"></text></g><g><title>__x64_sys_execve (17 samples, 0.01%)</title><rect x="43.9375%" y="933" width="0.0116%" height="15" fill="rgb(219,177,34)" fg:x="64310" fg:w="17"/><text x="44.1875%" y="943.50"></text></g><g><title>do_execveat_common (17 samples, 0.01%)</title><rect x="43.9375%" y="917" width="0.0116%" height="15" fill="rgb(218,60,48)" fg:x="64310" fg:w="17"/><text x="44.1875%" y="927.50"></text></g><g><title>bprm_execve (17 samples, 0.01%)</title><rect x="43.9375%" y="901" width="0.0116%" height="15" fill="rgb(221,11,5)" fg:x="64310" fg:w="17"/><text x="44.1875%" y="911.50"></text></g><g><title>load_elf_binary (17 samples, 0.01%)</title><rect x="43.9375%" y="885" width="0.0116%" height="15" fill="rgb(220,148,13)" fg:x="64310" fg:w="17"/><text x="44.1875%" y="895.50"></text></g><g><title>free_unref_page_list (15 samples, 0.01%)</title><rect x="43.9669%" y="821" width="0.0102%" height="15" fill="rgb(210,16,3)" fg:x="64353" fg:w="15"/><text x="44.2169%" y="831.50"></text></g><g><title>tlb_finish_mmu (37 samples, 0.03%)</title><rect x="43.9546%" y="853" width="0.0253%" height="15" fill="rgb(236,80,2)" fg:x="64335" fg:w="37"/><text x="44.2046%" y="863.50"></text></g><g><title>release_pages (34 samples, 0.02%)</title><rect x="43.9566%" y="837" width="0.0232%" height="15" fill="rgb(239,129,19)" fg:x="64338" fg:w="34"/><text x="44.2066%" y="847.50"></text></g><g><title>__tlb_remove_page_size (26 samples, 0.02%)</title><rect x="44.0338%" y="821" width="0.0178%" height="15" fill="rgb(220,106,35)" fg:x="64451" fg:w="26"/><text x="44.2838%" y="831.50"></text></g><g><title>__mod_memcg_lruvec_state (40 samples, 0.03%)</title><rect x="44.1001%" y="805" width="0.0273%" height="15" fill="rgb(252,139,45)" fg:x="64548" fg:w="40"/><text x="44.3501%" y="815.50"></text></g><g><title>__mod_memcg_state.part.0 (15 samples, 0.01%)</title><rect x="44.1172%" y="789" width="0.0102%" height="15" fill="rgb(229,8,36)" fg:x="64573" fg:w="15"/><text x="44.3672%" y="799.50"></text></g><g><title>page_remove_rmap (105 samples, 0.07%)</title><rect x="44.0612%" y="821" width="0.0717%" height="15" fill="rgb(230,126,33)" fg:x="64491" fg:w="105"/><text x="44.3112%" y="831.50"></text></g><g><title>free_pages_and_swap_cache (15 samples, 0.01%)</title><rect x="44.1336%" y="805" width="0.0102%" height="15" fill="rgb(239,140,21)" fg:x="64597" fg:w="15"/><text x="44.3836%" y="815.50"></text></g><g><title>tlb_flush_mmu (58 samples, 0.04%)</title><rect x="44.1336%" y="821" width="0.0396%" height="15" fill="rgb(254,104,9)" fg:x="64597" fg:w="58"/><text x="44.3836%" y="831.50"></text></g><g><title>release_pages (43 samples, 0.03%)</title><rect x="44.1438%" y="805" width="0.0294%" height="15" fill="rgb(239,52,14)" fg:x="64612" fg:w="43"/><text x="44.3938%" y="815.50"></text></g><g><title>mmput (341 samples, 0.23%)</title><rect x="43.9491%" y="885" width="0.2330%" height="15" fill="rgb(208,227,44)" fg:x="64327" fg:w="341"/><text x="44.1991%" y="895.50"></text></g><g><title>exit_mmap (341 samples, 0.23%)</title><rect x="43.9491%" y="869" width="0.2330%" height="15" fill="rgb(246,18,19)" fg:x="64327" fg:w="341"/><text x="44.1991%" y="879.50"></text></g><g><title>unmap_vmas (296 samples, 0.20%)</title><rect x="43.9799%" y="853" width="0.2022%" height="15" fill="rgb(235,228,25)" fg:x="64372" fg:w="296"/><text x="44.2299%" y="863.50"></text></g><g><title>unmap_page_range (296 samples, 0.20%)</title><rect x="43.9799%" y="837" width="0.2022%" height="15" fill="rgb(240,156,20)" fg:x="64372" fg:w="296"/><text x="44.2299%" y="847.50"></text></g><g><title>__x64_sys_exit_group (343 samples, 0.23%)</title><rect x="43.9491%" y="933" width="0.2343%" height="15" fill="rgb(224,8,20)" fg:x="64327" fg:w="343"/><text x="44.1991%" y="943.50"></text></g><g><title>do_group_exit (343 samples, 0.23%)</title><rect x="43.9491%" y="917" width="0.2343%" height="15" fill="rgb(214,12,52)" fg:x="64327" fg:w="343"/><text x="44.1991%" y="927.50"></text></g><g><title>do_exit (343 samples, 0.23%)</title><rect x="43.9491%" y="901" width="0.2343%" height="15" fill="rgb(211,220,47)" fg:x="64327" fg:w="343"/><text x="44.1991%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (368 samples, 0.25%)</title><rect x="43.9354%" y="965" width="0.2514%" height="15" fill="rgb(250,173,5)" fg:x="64307" fg:w="368"/><text x="44.1854%" y="975.50"></text></g><g><title>do_syscall_64 (365 samples, 0.25%)</title><rect x="43.9375%" y="949" width="0.2494%" height="15" fill="rgb(250,125,52)" fg:x="64310" fg:w="365"/><text x="44.1875%" y="959.50"></text></g><g><title>clang (4,328 samples, 2.96%)</title><rect x="41.2333%" y="981" width="2.9570%" height="15" fill="rgb(209,133,18)" fg:x="60352" fg:w="4328"/><text x="41.4833%" y="991.50">cla..</text></g><g><title>finish_task_switch (45 samples, 0.03%)</title><rect x="44.2060%" y="725" width="0.0307%" height="15" fill="rgb(216,173,22)" fg:x="64703" fg:w="45"/><text x="44.4560%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.03%)</title><rect x="44.2067%" y="709" width="0.0301%" height="15" fill="rgb(205,3,22)" fg:x="64704" fg:w="44"/><text x="44.4567%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.03%)</title><rect x="44.2074%" y="693" width="0.0294%" height="15" fill="rgb(248,22,20)" fg:x="64705" fg:w="43"/><text x="44.4574%" y="703.50"></text></g><g><title>native_write_msr (43 samples, 0.03%)</title><rect x="44.2074%" y="677" width="0.0294%" height="15" fill="rgb(233,6,29)" fg:x="64705" fg:w="43"/><text x="44.4574%" y="687.50"></text></g><g><title>do_syscall_64 (48 samples, 0.03%)</title><rect x="44.2046%" y="837" width="0.0328%" height="15" fill="rgb(240,22,54)" fg:x="64701" fg:w="48"/><text x="44.4546%" y="847.50"></text></g><g><title>__x64_sys_futex (48 samples, 0.03%)</title><rect x="44.2046%" y="821" width="0.0328%" height="15" fill="rgb(231,133,32)" fg:x="64701" fg:w="48"/><text x="44.4546%" y="831.50"></text></g><g><title>do_futex (48 samples, 0.03%)</title><rect x="44.2046%" y="805" width="0.0328%" height="15" fill="rgb(248,193,4)" fg:x="64701" fg:w="48"/><text x="44.4546%" y="815.50"></text></g><g><title>futex_wait (48 samples, 0.03%)</title><rect x="44.2046%" y="789" width="0.0328%" height="15" fill="rgb(211,178,46)" fg:x="64701" fg:w="48"/><text x="44.4546%" y="799.50"></text></g><g><title>futex_wait_queue_me (46 samples, 0.03%)</title><rect x="44.2060%" y="773" width="0.0314%" height="15" fill="rgb(224,5,42)" fg:x="64703" fg:w="46"/><text x="44.4560%" y="783.50"></text></g><g><title>schedule (46 samples, 0.03%)</title><rect x="44.2060%" y="757" width="0.0314%" height="15" fill="rgb(239,176,25)" fg:x="64703" fg:w="46"/><text x="44.4560%" y="767.50"></text></g><g><title>__schedule (46 samples, 0.03%)</title><rect x="44.2060%" y="741" width="0.0314%" height="15" fill="rgb(245,187,50)" fg:x="64703" fg:w="46"/><text x="44.4560%" y="751.50"></text></g><g><title>JVM_Sleep (55 samples, 0.04%)</title><rect x="44.2019%" y="949" width="0.0376%" height="15" fill="rgb(248,24,15)" fg:x="64697" fg:w="55"/><text x="44.4519%" y="959.50"></text></g><g><title>os::sleep (55 samples, 0.04%)</title><rect x="44.2019%" y="933" width="0.0376%" height="15" fill="rgb(205,166,13)" fg:x="64697" fg:w="55"/><text x="44.4519%" y="943.50"></text></g><g><title>os::PlatformEvent::park (52 samples, 0.04%)</title><rect x="44.2040%" y="917" width="0.0355%" height="15" fill="rgb(208,114,23)" fg:x="64700" fg:w="52"/><text x="44.4540%" y="927.50"></text></g><g><title>__pthread_cond_timedwait (52 samples, 0.04%)</title><rect x="44.2040%" y="901" width="0.0355%" height="15" fill="rgb(239,127,18)" fg:x="64700" fg:w="52"/><text x="44.4540%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (52 samples, 0.04%)</title><rect x="44.2040%" y="885" width="0.0355%" height="15" fill="rgb(219,154,28)" fg:x="64700" fg:w="52"/><text x="44.4540%" y="895.50"></text></g><g><title>futex_abstimed_wait_cancelable (51 samples, 0.03%)</title><rect x="44.2046%" y="869" width="0.0348%" height="15" fill="rgb(225,157,23)" fg:x="64701" fg:w="51"/><text x="44.4546%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.03%)</title><rect x="44.2046%" y="853" width="0.0348%" height="15" fill="rgb(219,8,6)" fg:x="64701" fg:w="51"/><text x="44.4546%" y="863.50"></text></g><g><title>cli-update-thre (73 samples, 0.05%)</title><rect x="44.1903%" y="981" width="0.0499%" height="15" fill="rgb(212,47,6)" fg:x="64680" fg:w="73"/><text x="44.4403%" y="991.50"></text></g><g><title>[perf-270039.map] (72 samples, 0.05%)</title><rect x="44.1910%" y="965" width="0.0492%" height="15" fill="rgb(224,190,4)" fg:x="64681" fg:w="72"/><text x="44.4410%" y="975.50"></text></g><g><title>[perf-270039.map] (133 samples, 0.09%)</title><rect x="44.2415%" y="965" width="0.0909%" height="15" fill="rgb(239,183,29)" fg:x="64755" fg:w="133"/><text x="44.4915%" y="975.50"></text></g><g><title>Monitor::wait (15 samples, 0.01%)</title><rect x="44.3420%" y="917" width="0.0102%" height="15" fill="rgb(213,57,7)" fg:x="64902" fg:w="15"/><text x="44.5920%" y="927.50"></text></g><g><title>Monitor::IWait (15 samples, 0.01%)</title><rect x="44.3420%" y="901" width="0.0102%" height="15" fill="rgb(216,148,1)" fg:x="64902" fg:w="15"/><text x="44.5920%" y="911.50"></text></g><g><title>os::PlatformEvent::park (15 samples, 0.01%)</title><rect x="44.3420%" y="885" width="0.0102%" height="15" fill="rgb(236,182,29)" fg:x="64902" fg:w="15"/><text x="44.5920%" y="895.50"></text></g><g><title>__pthread_cond_wait (15 samples, 0.01%)</title><rect x="44.3420%" y="869" width="0.0102%" height="15" fill="rgb(244,120,48)" fg:x="64902" fg:w="15"/><text x="44.5920%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (15 samples, 0.01%)</title><rect x="44.3420%" y="853" width="0.0102%" height="15" fill="rgb(206,71,34)" fg:x="64902" fg:w="15"/><text x="44.5920%" y="863.50"></text></g><g><title>futex_wait_cancelable (15 samples, 0.01%)</title><rect x="44.3420%" y="837" width="0.0102%" height="15" fill="rgb(242,32,6)" fg:x="64902" fg:w="15"/><text x="44.5920%" y="847.50"></text></g><g><title>find-action-loo (177 samples, 0.12%)</title><rect x="44.2402%" y="981" width="0.1209%" height="15" fill="rgb(241,35,3)" fg:x="64753" fg:w="177"/><text x="44.4902%" y="991.50"></text></g><g><title>__GI___clone (40 samples, 0.03%)</title><rect x="44.3338%" y="965" width="0.0273%" height="15" fill="rgb(222,62,19)" fg:x="64890" fg:w="40"/><text x="44.5838%" y="975.50"></text></g><g><title>start_thread (33 samples, 0.02%)</title><rect x="44.3385%" y="949" width="0.0225%" height="15" fill="rgb(223,110,41)" fg:x="64897" fg:w="33"/><text x="44.5885%" y="959.50"></text></g><g><title>thread_native_entry (28 samples, 0.02%)</title><rect x="44.3420%" y="933" width="0.0191%" height="15" fill="rgb(208,224,4)" fg:x="64902" fg:w="28"/><text x="44.5920%" y="943.50"></text></g><g><title>[perf-270039.map] (23 samples, 0.02%)</title><rect x="44.3659%" y="965" width="0.0157%" height="15" fill="rgb(241,137,19)" fg:x="64937" fg:w="23"/><text x="44.6159%" y="975.50"></text></g><g><title>globbing_pool-0 (53 samples, 0.04%)</title><rect x="44.3611%" y="981" width="0.0362%" height="15" fill="rgb(244,24,17)" fg:x="64930" fg:w="53"/><text x="44.6111%" y="991.50"></text></g><g><title>__GI___clone (21 samples, 0.01%)</title><rect x="44.3830%" y="965" width="0.0143%" height="15" fill="rgb(245,178,49)" fg:x="64962" fg:w="21"/><text x="44.6330%" y="975.50"></text></g><g><title>[libunix_jni.so] (20 samples, 0.01%)</title><rect x="44.4035%" y="965" width="0.0137%" height="15" fill="rgb(219,160,38)" fg:x="64992" fg:w="20"/><text x="44.6535%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.02%)</title><rect x="44.4868%" y="693" width="0.0191%" height="15" fill="rgb(228,137,14)" fg:x="65114" fg:w="28"/><text x="44.7368%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.02%)</title><rect x="44.4875%" y="677" width="0.0184%" height="15" fill="rgb(237,134,11)" fg:x="65115" fg:w="27"/><text x="44.7375%" y="687.50"></text></g><g><title>native_write_msr (27 samples, 0.02%)</title><rect x="44.4875%" y="661" width="0.0184%" height="15" fill="rgb(211,126,44)" fg:x="65115" fg:w="27"/><text x="44.7375%" y="671.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="44.4868%" y="709" width="0.0198%" height="15" fill="rgb(226,171,33)" fg:x="65114" fg:w="29"/><text x="44.7368%" y="719.50"></text></g><g><title>Monitor::lock (30 samples, 0.02%)</title><rect x="44.4868%" y="933" width="0.0205%" height="15" fill="rgb(253,99,13)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="943.50"></text></g><g><title>Monitor::ILock (30 samples, 0.02%)</title><rect x="44.4868%" y="917" width="0.0205%" height="15" fill="rgb(244,48,7)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="927.50"></text></g><g><title>os::PlatformEvent::park (30 samples, 0.02%)</title><rect x="44.4868%" y="901" width="0.0205%" height="15" fill="rgb(244,217,54)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="911.50"></text></g><g><title>__pthread_cond_wait (30 samples, 0.02%)</title><rect x="44.4868%" y="885" width="0.0205%" height="15" fill="rgb(224,15,18)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (30 samples, 0.02%)</title><rect x="44.4868%" y="869" width="0.0205%" height="15" fill="rgb(244,99,12)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="879.50"></text></g><g><title>futex_wait_cancelable (30 samples, 0.02%)</title><rect x="44.4868%" y="853" width="0.0205%" height="15" fill="rgb(233,226,8)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.02%)</title><rect x="44.4868%" y="837" width="0.0205%" height="15" fill="rgb(229,211,3)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="847.50"></text></g><g><title>do_syscall_64 (30 samples, 0.02%)</title><rect x="44.4868%" y="821" width="0.0205%" height="15" fill="rgb(216,140,21)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="831.50"></text></g><g><title>__x64_sys_futex (30 samples, 0.02%)</title><rect x="44.4868%" y="805" width="0.0205%" height="15" fill="rgb(234,122,30)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="815.50"></text></g><g><title>do_futex (30 samples, 0.02%)</title><rect x="44.4868%" y="789" width="0.0205%" height="15" fill="rgb(236,25,46)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="799.50"></text></g><g><title>futex_wait (30 samples, 0.02%)</title><rect x="44.4868%" y="773" width="0.0205%" height="15" fill="rgb(217,52,54)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="783.50"></text></g><g><title>futex_wait_queue_me (30 samples, 0.02%)</title><rect x="44.4868%" y="757" width="0.0205%" height="15" fill="rgb(222,29,26)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="767.50"></text></g><g><title>schedule (30 samples, 0.02%)</title><rect x="44.4868%" y="741" width="0.0205%" height="15" fill="rgb(216,177,29)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="751.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="44.4868%" y="725" width="0.0205%" height="15" fill="rgb(247,136,51)" fg:x="65114" fg:w="30"/><text x="44.7368%" y="735.50"></text></g><g><title>__pthread_cond_wait (22 samples, 0.02%)</title><rect x="44.5100%" y="869" width="0.0150%" height="15" fill="rgb(231,47,47)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (22 samples, 0.02%)</title><rect x="44.5100%" y="853" width="0.0150%" height="15" fill="rgb(211,192,36)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="863.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.02%)</title><rect x="44.5100%" y="837" width="0.0150%" height="15" fill="rgb(229,156,32)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="44.5100%" y="821" width="0.0150%" height="15" fill="rgb(248,213,20)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="831.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="44.5100%" y="805" width="0.0150%" height="15" fill="rgb(217,64,7)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="815.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.02%)</title><rect x="44.5100%" y="789" width="0.0150%" height="15" fill="rgb(232,142,8)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="799.50"></text></g><g><title>do_futex (22 samples, 0.02%)</title><rect x="44.5100%" y="773" width="0.0150%" height="15" fill="rgb(224,92,44)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="783.50"></text></g><g><title>futex_wait (22 samples, 0.02%)</title><rect x="44.5100%" y="757" width="0.0150%" height="15" fill="rgb(214,169,17)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="767.50"></text></g><g><title>futex_wait_queue_me (22 samples, 0.02%)</title><rect x="44.5100%" y="741" width="0.0150%" height="15" fill="rgb(210,59,37)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="751.50"></text></g><g><title>schedule (22 samples, 0.02%)</title><rect x="44.5100%" y="725" width="0.0150%" height="15" fill="rgb(214,116,48)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="735.50"></text></g><g><title>__schedule (22 samples, 0.02%)</title><rect x="44.5100%" y="709" width="0.0150%" height="15" fill="rgb(244,191,6)" fg:x="65148" fg:w="22"/><text x="44.7600%" y="719.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="44.5107%" y="693" width="0.0143%" height="15" fill="rgb(241,50,52)" fg:x="65149" fg:w="21"/><text x="44.7607%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="44.5107%" y="677" width="0.0143%" height="15" fill="rgb(236,75,39)" fg:x="65149" fg:w="21"/><text x="44.7607%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="44.5107%" y="661" width="0.0143%" height="15" fill="rgb(236,99,0)" fg:x="65149" fg:w="21"/><text x="44.7607%" y="671.50"></text></g><g><title>native_write_msr (21 samples, 0.01%)</title><rect x="44.5107%" y="645" width="0.0143%" height="15" fill="rgb(207,202,15)" fg:x="65149" fg:w="21"/><text x="44.7607%" y="655.50"></text></g><g><title>Monitor::wait (23 samples, 0.02%)</title><rect x="44.5100%" y="917" width="0.0157%" height="15" fill="rgb(233,207,14)" fg:x="65148" fg:w="23"/><text x="44.7600%" y="927.50"></text></g><g><title>Monitor::IWait (23 samples, 0.02%)</title><rect x="44.5100%" y="901" width="0.0157%" height="15" fill="rgb(226,27,51)" fg:x="65148" fg:w="23"/><text x="44.7600%" y="911.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.02%)</title><rect x="44.5100%" y="885" width="0.0157%" height="15" fill="rgb(206,104,42)" fg:x="65148" fg:w="23"/><text x="44.7600%" y="895.50"></text></g><g><title>os::create_thread (27 samples, 0.02%)</title><rect x="44.5100%" y="933" width="0.0184%" height="15" fill="rgb(212,225,4)" fg:x="65148" fg:w="27"/><text x="44.7600%" y="943.50"></text></g><g><title>JVM_StartThread (67 samples, 0.05%)</title><rect x="44.4834%" y="949" width="0.0458%" height="15" fill="rgb(233,96,42)" fg:x="65109" fg:w="67"/><text x="44.7334%" y="959.50"></text></g><g><title>SafepointSynchronize::block (15 samples, 0.01%)</title><rect x="44.5312%" y="917" width="0.0102%" height="15" fill="rgb(229,21,32)" fg:x="65179" fg:w="15"/><text x="44.7812%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.03%)</title><rect x="44.5415%" y="725" width="0.0253%" height="15" fill="rgb(226,216,24)" fg:x="65194" fg:w="37"/><text x="44.7915%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.03%)</title><rect x="44.5415%" y="709" width="0.0253%" height="15" fill="rgb(221,163,17)" fg:x="65194" fg:w="37"/><text x="44.7915%" y="719.50"></text></g><g><title>native_write_msr (37 samples, 0.03%)</title><rect x="44.5415%" y="693" width="0.0253%" height="15" fill="rgb(216,216,42)" fg:x="65194" fg:w="37"/><text x="44.7915%" y="703.50"></text></g><g><title>finish_task_switch (40 samples, 0.03%)</title><rect x="44.5415%" y="741" width="0.0273%" height="15" fill="rgb(240,118,7)" fg:x="65194" fg:w="40"/><text x="44.7915%" y="751.50"></text></g><g><title>do_syscall_64 (42 samples, 0.03%)</title><rect x="44.5415%" y="853" width="0.0287%" height="15" fill="rgb(221,67,37)" fg:x="65194" fg:w="42"/><text x="44.7915%" y="863.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.03%)</title><rect x="44.5415%" y="837" width="0.0287%" height="15" fill="rgb(241,32,44)" fg:x="65194" fg:w="42"/><text x="44.7915%" y="847.50"></text></g><g><title>do_futex (42 samples, 0.03%)</title><rect x="44.5415%" y="821" width="0.0287%" height="15" fill="rgb(235,204,43)" fg:x="65194" fg:w="42"/><text x="44.7915%" y="831.50"></text></g><g><title>futex_wait (42 samples, 0.03%)</title><rect x="44.5415%" y="805" width="0.0287%" height="15" fill="rgb(213,116,10)" fg:x="65194" fg:w="42"/><text x="44.7915%" y="815.50"></text></g><g><title>futex_wait_queue_me (42 samples, 0.03%)</title><rect x="44.5415%" y="789" width="0.0287%" height="15" fill="rgb(239,15,48)" fg:x="65194" fg:w="42"/><text x="44.7915%" y="799.50"></text></g><g><title>schedule (42 samples, 0.03%)</title><rect x="44.5415%" y="773" width="0.0287%" height="15" fill="rgb(207,123,36)" fg:x="65194" fg:w="42"/><text x="44.7915%" y="783.50"></text></g><g><title>__schedule (42 samples, 0.03%)</title><rect x="44.5415%" y="757" width="0.0287%" height="15" fill="rgb(209,103,30)" fg:x="65194" fg:w="42"/><text x="44.7915%" y="767.50"></text></g><g><title>Unsafe_Park (60 samples, 0.04%)</title><rect x="44.5305%" y="949" width="0.0410%" height="15" fill="rgb(238,100,19)" fg:x="65178" fg:w="60"/><text x="44.7805%" y="959.50"></text></g><g><title>Parker::park (59 samples, 0.04%)</title><rect x="44.5312%" y="933" width="0.0403%" height="15" fill="rgb(244,30,14)" fg:x="65179" fg:w="59"/><text x="44.7812%" y="943.50"></text></g><g><title>__pthread_cond_wait (44 samples, 0.03%)</title><rect x="44.5415%" y="917" width="0.0301%" height="15" fill="rgb(249,174,6)" fg:x="65194" fg:w="44"/><text x="44.7915%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (44 samples, 0.03%)</title><rect x="44.5415%" y="901" width="0.0301%" height="15" fill="rgb(235,213,41)" fg:x="65194" fg:w="44"/><text x="44.7915%" y="911.50"></text></g><g><title>futex_wait_cancelable (44 samples, 0.03%)</title><rect x="44.5415%" y="885" width="0.0301%" height="15" fill="rgb(213,118,6)" fg:x="65194" fg:w="44"/><text x="44.7915%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.03%)</title><rect x="44.5415%" y="869" width="0.0301%" height="15" fill="rgb(235,44,51)" fg:x="65194" fg:w="44"/><text x="44.7915%" y="879.50"></text></g><g><title>[perf-270039.map] (230 samples, 0.16%)</title><rect x="44.4171%" y="965" width="0.1571%" height="15" fill="rgb(217,9,53)" fg:x="65012" fg:w="230"/><text x="44.6671%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.05%)</title><rect x="44.5852%" y="901" width="0.0451%" height="15" fill="rgb(237,172,34)" fg:x="65258" fg:w="66"/><text x="44.8352%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.05%)</title><rect x="44.5852%" y="885" width="0.0451%" height="15" fill="rgb(206,206,11)" fg:x="65258" fg:w="66"/><text x="44.8352%" y="895.50"></text></g><g><title>native_write_msr (66 samples, 0.05%)</title><rect x="44.5852%" y="869" width="0.0451%" height="15" fill="rgb(214,149,29)" fg:x="65258" fg:w="66"/><text x="44.8352%" y="879.50"></text></g><g><title>schedule_tail (72 samples, 0.05%)</title><rect x="44.5825%" y="933" width="0.0492%" height="15" fill="rgb(208,123,3)" fg:x="65254" fg:w="72"/><text x="44.8325%" y="943.50"></text></g><g><title>finish_task_switch (71 samples, 0.05%)</title><rect x="44.5831%" y="917" width="0.0485%" height="15" fill="rgb(229,126,4)" fg:x="65255" fg:w="71"/><text x="44.8331%" y="927.50"></text></g><g><title>ret_from_fork (78 samples, 0.05%)</title><rect x="44.5811%" y="949" width="0.0533%" height="15" fill="rgb(222,92,36)" fg:x="65252" fg:w="78"/><text x="44.8311%" y="959.50"></text></g><g><title>__GI___clone (116 samples, 0.08%)</title><rect x="44.5756%" y="965" width="0.0793%" height="15" fill="rgb(216,39,41)" fg:x="65244" fg:w="116"/><text x="44.8256%" y="975.50"></text></g><g><title>start_thread (30 samples, 0.02%)</title><rect x="44.6344%" y="949" width="0.0205%" height="15" fill="rgb(253,127,28)" fg:x="65330" fg:w="30"/><text x="44.8844%" y="959.50"></text></g><g><title>thread_native_entry (30 samples, 0.02%)</title><rect x="44.6344%" y="933" width="0.0205%" height="15" fill="rgb(249,152,51)" fg:x="65330" fg:w="30"/><text x="44.8844%" y="943.50"></text></g><g><title>globbing_pool-1 (382 samples, 0.26%)</title><rect x="44.3973%" y="981" width="0.2610%" height="15" fill="rgb(209,123,42)" fg:x="64983" fg:w="382"/><text x="44.6473%" y="991.50"></text></g><g><title>__pthread_cond_wait (21 samples, 0.01%)</title><rect x="44.6795%" y="885" width="0.0143%" height="15" fill="rgb(241,118,22)" fg:x="65396" fg:w="21"/><text x="44.9295%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (21 samples, 0.01%)</title><rect x="44.6795%" y="869" width="0.0143%" height="15" fill="rgb(208,25,7)" fg:x="65396" fg:w="21"/><text x="44.9295%" y="879.50"></text></g><g><title>futex_wait_cancelable (21 samples, 0.01%)</title><rect x="44.6795%" y="853" width="0.0143%" height="15" fill="rgb(243,144,39)" fg:x="65396" fg:w="21"/><text x="44.9295%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="44.6795%" y="837" width="0.0143%" height="15" fill="rgb(250,50,5)" fg:x="65396" fg:w="21"/><text x="44.9295%" y="847.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="44.6795%" y="821" width="0.0143%" height="15" fill="rgb(207,67,11)" fg:x="65396" fg:w="21"/><text x="44.9295%" y="831.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.01%)</title><rect x="44.6795%" y="805" width="0.0143%" height="15" fill="rgb(245,204,40)" fg:x="65396" fg:w="21"/><text x="44.9295%" y="815.50"></text></g><g><title>do_futex (21 samples, 0.01%)</title><rect x="44.6795%" y="789" width="0.0143%" height="15" fill="rgb(238,228,24)" fg:x="65396" fg:w="21"/><text x="44.9295%" y="799.50"></text></g><g><title>futex_wait (21 samples, 0.01%)</title><rect x="44.6795%" y="773" width="0.0143%" height="15" fill="rgb(217,116,22)" fg:x="65396" fg:w="21"/><text x="44.9295%" y="783.50"></text></g><g><title>futex_wait_queue_me (20 samples, 0.01%)</title><rect x="44.6802%" y="757" width="0.0137%" height="15" fill="rgb(234,98,12)" fg:x="65397" fg:w="20"/><text x="44.9302%" y="767.50"></text></g><g><title>schedule (20 samples, 0.01%)</title><rect x="44.6802%" y="741" width="0.0137%" height="15" fill="rgb(242,170,50)" fg:x="65397" fg:w="20"/><text x="44.9302%" y="751.50"></text></g><g><title>__schedule (20 samples, 0.01%)</title><rect x="44.6802%" y="725" width="0.0137%" height="15" fill="rgb(235,7,5)" fg:x="65397" fg:w="20"/><text x="44.9302%" y="735.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="44.6802%" y="709" width="0.0137%" height="15" fill="rgb(241,114,28)" fg:x="65397" fg:w="20"/><text x="44.9302%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="44.6802%" y="693" width="0.0137%" height="15" fill="rgb(246,112,42)" fg:x="65397" fg:w="20"/><text x="44.9302%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="44.6802%" y="677" width="0.0137%" height="15" fill="rgb(248,228,14)" fg:x="65397" fg:w="20"/><text x="44.9302%" y="687.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="44.6808%" y="661" width="0.0130%" height="15" fill="rgb(208,133,18)" fg:x="65398" fg:w="19"/><text x="44.9308%" y="671.50"></text></g><g><title>Monitor::lock (22 samples, 0.02%)</title><rect x="44.6795%" y="933" width="0.0150%" height="15" fill="rgb(207,35,49)" fg:x="65396" fg:w="22"/><text x="44.9295%" y="943.50"></text></g><g><title>Monitor::ILock (22 samples, 0.02%)</title><rect x="44.6795%" y="917" width="0.0150%" height="15" fill="rgb(205,68,36)" fg:x="65396" fg:w="22"/><text x="44.9295%" y="927.50"></text></g><g><title>os::PlatformEvent::park (22 samples, 0.02%)</title><rect x="44.6795%" y="901" width="0.0150%" height="15" fill="rgb(245,62,40)" fg:x="65396" fg:w="22"/><text x="44.9295%" y="911.50"></text></g><g><title>JVM_StartThread (31 samples, 0.02%)</title><rect x="44.6781%" y="949" width="0.0212%" height="15" fill="rgb(228,27,24)" fg:x="65394" fg:w="31"/><text x="44.9281%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="44.7006%" y="725" width="0.0171%" height="15" fill="rgb(253,19,12)" fg:x="65427" fg:w="25"/><text x="44.9506%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.02%)</title><rect x="44.7006%" y="709" width="0.0171%" height="15" fill="rgb(232,28,20)" fg:x="65427" fg:w="25"/><text x="44.9506%" y="719.50"></text></g><g><title>native_write_msr (25 samples, 0.02%)</title><rect x="44.7006%" y="693" width="0.0171%" height="15" fill="rgb(218,35,51)" fg:x="65427" fg:w="25"/><text x="44.9506%" y="703.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="44.7006%" y="741" width="0.0191%" height="15" fill="rgb(212,90,40)" fg:x="65427" fg:w="28"/><text x="44.9506%" y="751.50"></text></g><g><title>Unsafe_Park (32 samples, 0.02%)</title><rect x="44.6993%" y="949" width="0.0219%" height="15" fill="rgb(220,172,12)" fg:x="65425" fg:w="32"/><text x="44.9493%" y="959.50"></text></g><g><title>Parker::park (32 samples, 0.02%)</title><rect x="44.6993%" y="933" width="0.0219%" height="15" fill="rgb(226,159,20)" fg:x="65425" fg:w="32"/><text x="44.9493%" y="943.50"></text></g><g><title>__pthread_cond_wait (32 samples, 0.02%)</title><rect x="44.6993%" y="917" width="0.0219%" height="15" fill="rgb(234,205,16)" fg:x="65425" fg:w="32"/><text x="44.9493%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.02%)</title><rect x="44.6993%" y="901" width="0.0219%" height="15" fill="rgb(207,9,39)" fg:x="65425" fg:w="32"/><text x="44.9493%" y="911.50"></text></g><g><title>futex_wait_cancelable (32 samples, 0.02%)</title><rect x="44.6993%" y="885" width="0.0219%" height="15" fill="rgb(249,143,15)" fg:x="65425" fg:w="32"/><text x="44.9493%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="44.6993%" y="869" width="0.0219%" height="15" fill="rgb(253,133,29)" fg:x="65425" fg:w="32"/><text x="44.9493%" y="879.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="44.6993%" y="853" width="0.0219%" height="15" fill="rgb(221,187,0)" fg:x="65425" fg:w="32"/><text x="44.9493%" y="863.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.02%)</title><rect x="44.6993%" y="837" width="0.0219%" height="15" fill="rgb(205,204,26)" fg:x="65425" fg:w="32"/><text x="44.9493%" y="847.50"></text></g><g><title>do_futex (31 samples, 0.02%)</title><rect x="44.7000%" y="821" width="0.0212%" height="15" fill="rgb(224,68,54)" fg:x="65426" fg:w="31"/><text x="44.9500%" y="831.50"></text></g><g><title>futex_wait (31 samples, 0.02%)</title><rect x="44.7000%" y="805" width="0.0212%" height="15" fill="rgb(209,67,4)" fg:x="65426" fg:w="31"/><text x="44.9500%" y="815.50"></text></g><g><title>futex_wait_queue_me (31 samples, 0.02%)</title><rect x="44.7000%" y="789" width="0.0212%" height="15" fill="rgb(228,229,18)" fg:x="65426" fg:w="31"/><text x="44.9500%" y="799.50"></text></g><g><title>schedule (31 samples, 0.02%)</title><rect x="44.7000%" y="773" width="0.0212%" height="15" fill="rgb(231,89,13)" fg:x="65426" fg:w="31"/><text x="44.9500%" y="783.50"></text></g><g><title>__schedule (31 samples, 0.02%)</title><rect x="44.7000%" y="757" width="0.0212%" height="15" fill="rgb(210,182,18)" fg:x="65426" fg:w="31"/><text x="44.9500%" y="767.50"></text></g><g><title>[perf-270039.map] (90 samples, 0.06%)</title><rect x="44.6610%" y="965" width="0.0615%" height="15" fill="rgb(240,105,2)" fg:x="65369" fg:w="90"/><text x="44.9110%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.02%)</title><rect x="44.7273%" y="901" width="0.0164%" height="15" fill="rgb(207,170,50)" fg:x="65466" fg:w="24"/><text x="44.9773%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="44.7273%" y="885" width="0.0164%" height="15" fill="rgb(232,133,24)" fg:x="65466" fg:w="24"/><text x="44.9773%" y="895.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="44.7273%" y="869" width="0.0164%" height="15" fill="rgb(235,166,27)" fg:x="65466" fg:w="24"/><text x="44.9773%" y="879.50"></text></g><g><title>schedule_tail (27 samples, 0.02%)</title><rect x="44.7266%" y="933" width="0.0184%" height="15" fill="rgb(209,19,13)" fg:x="65465" fg:w="27"/><text x="44.9766%" y="943.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="44.7273%" y="917" width="0.0178%" height="15" fill="rgb(226,79,39)" fg:x="65466" fg:w="26"/><text x="44.9773%" y="927.50"></text></g><g><title>ret_from_fork (29 samples, 0.02%)</title><rect x="44.7259%" y="949" width="0.0198%" height="15" fill="rgb(222,163,10)" fg:x="65464" fg:w="29"/><text x="44.9759%" y="959.50"></text></g><g><title>globbing_pool-2 (136 samples, 0.09%)</title><rect x="44.6583%" y="981" width="0.0929%" height="15" fill="rgb(214,44,19)" fg:x="65365" fg:w="136"/><text x="44.9083%" y="991.50"></text></g><g><title>__GI___clone (42 samples, 0.03%)</title><rect x="44.7225%" y="965" width="0.0287%" height="15" fill="rgb(210,217,13)" fg:x="65459" fg:w="42"/><text x="44.9725%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.03%)</title><rect x="44.7970%" y="693" width="0.0328%" height="15" fill="rgb(237,61,54)" fg:x="65568" fg:w="48"/><text x="45.0470%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.03%)</title><rect x="44.7983%" y="677" width="0.0314%" height="15" fill="rgb(226,184,24)" fg:x="65570" fg:w="46"/><text x="45.0483%" y="687.50"></text></g><g><title>native_write_msr (46 samples, 0.03%)</title><rect x="44.7983%" y="661" width="0.0314%" height="15" fill="rgb(223,226,4)" fg:x="65570" fg:w="46"/><text x="45.0483%" y="671.50"></text></g><g><title>__pthread_cond_wait (51 samples, 0.03%)</title><rect x="44.7956%" y="885" width="0.0348%" height="15" fill="rgb(210,26,41)" fg:x="65566" fg:w="51"/><text x="45.0456%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (51 samples, 0.03%)</title><rect x="44.7956%" y="869" width="0.0348%" height="15" fill="rgb(220,221,6)" fg:x="65566" fg:w="51"/><text x="45.0456%" y="879.50"></text></g><g><title>futex_wait_cancelable (50 samples, 0.03%)</title><rect x="44.7963%" y="853" width="0.0342%" height="15" fill="rgb(225,89,49)" fg:x="65567" fg:w="50"/><text x="45.0463%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.03%)</title><rect x="44.7963%" y="837" width="0.0342%" height="15" fill="rgb(218,70,45)" fg:x="65567" fg:w="50"/><text x="45.0463%" y="847.50"></text></g><g><title>do_syscall_64 (50 samples, 0.03%)</title><rect x="44.7963%" y="821" width="0.0342%" height="15" fill="rgb(238,166,21)" fg:x="65567" fg:w="50"/><text x="45.0463%" y="831.50"></text></g><g><title>__x64_sys_futex (50 samples, 0.03%)</title><rect x="44.7963%" y="805" width="0.0342%" height="15" fill="rgb(224,141,44)" fg:x="65567" fg:w="50"/><text x="45.0463%" y="815.50"></text></g><g><title>do_futex (50 samples, 0.03%)</title><rect x="44.7963%" y="789" width="0.0342%" height="15" fill="rgb(230,12,49)" fg:x="65567" fg:w="50"/><text x="45.0463%" y="799.50"></text></g><g><title>futex_wait (50 samples, 0.03%)</title><rect x="44.7963%" y="773" width="0.0342%" height="15" fill="rgb(212,174,12)" fg:x="65567" fg:w="50"/><text x="45.0463%" y="783.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.03%)</title><rect x="44.7963%" y="757" width="0.0342%" height="15" fill="rgb(246,67,9)" fg:x="65567" fg:w="50"/><text x="45.0463%" y="767.50"></text></g><g><title>schedule (50 samples, 0.03%)</title><rect x="44.7963%" y="741" width="0.0342%" height="15" fill="rgb(239,35,23)" fg:x="65567" fg:w="50"/><text x="45.0463%" y="751.50"></text></g><g><title>__schedule (50 samples, 0.03%)</title><rect x="44.7963%" y="725" width="0.0342%" height="15" fill="rgb(211,167,0)" fg:x="65567" fg:w="50"/><text x="45.0463%" y="735.50"></text></g><g><title>finish_task_switch (50 samples, 0.03%)</title><rect x="44.7963%" y="709" width="0.0342%" height="15" fill="rgb(225,119,45)" fg:x="65567" fg:w="50"/><text x="45.0463%" y="719.50"></text></g><g><title>Monitor::ILock (53 samples, 0.04%)</title><rect x="44.7949%" y="917" width="0.0362%" height="15" fill="rgb(210,162,6)" fg:x="65565" fg:w="53"/><text x="45.0449%" y="927.50"></text></g><g><title>os::PlatformEvent::park (53 samples, 0.04%)</title><rect x="44.7949%" y="901" width="0.0362%" height="15" fill="rgb(208,118,35)" fg:x="65565" fg:w="53"/><text x="45.0449%" y="911.50"></text></g><g><title>Monitor::lock (54 samples, 0.04%)</title><rect x="44.7949%" y="933" width="0.0369%" height="15" fill="rgb(239,4,53)" fg:x="65565" fg:w="54"/><text x="45.0449%" y="943.50"></text></g><g><title>JVM_StartThread (68 samples, 0.05%)</title><rect x="44.7908%" y="949" width="0.0465%" height="15" fill="rgb(213,130,21)" fg:x="65559" fg:w="68"/><text x="45.0408%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.03%)</title><rect x="44.8503%" y="725" width="0.0348%" height="15" fill="rgb(235,148,0)" fg:x="65646" fg:w="51"/><text x="45.1003%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.03%)</title><rect x="44.8510%" y="709" width="0.0342%" height="15" fill="rgb(244,224,18)" fg:x="65647" fg:w="50"/><text x="45.1010%" y="719.50"></text></g><g><title>native_write_msr (50 samples, 0.03%)</title><rect x="44.8510%" y="693" width="0.0342%" height="15" fill="rgb(211,214,4)" fg:x="65647" fg:w="50"/><text x="45.1010%" y="703.50"></text></g><g><title>do_syscall_64 (56 samples, 0.04%)</title><rect x="44.8482%" y="853" width="0.0383%" height="15" fill="rgb(206,119,25)" fg:x="65643" fg:w="56"/><text x="45.0982%" y="863.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.04%)</title><rect x="44.8482%" y="837" width="0.0383%" height="15" fill="rgb(243,93,47)" fg:x="65643" fg:w="56"/><text x="45.0982%" y="847.50"></text></g><g><title>do_futex (56 samples, 0.04%)</title><rect x="44.8482%" y="821" width="0.0383%" height="15" fill="rgb(224,194,6)" fg:x="65643" fg:w="56"/><text x="45.0982%" y="831.50"></text></g><g><title>futex_wait (56 samples, 0.04%)</title><rect x="44.8482%" y="805" width="0.0383%" height="15" fill="rgb(243,229,6)" fg:x="65643" fg:w="56"/><text x="45.0982%" y="815.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.04%)</title><rect x="44.8496%" y="789" width="0.0369%" height="15" fill="rgb(207,23,50)" fg:x="65645" fg:w="54"/><text x="45.0996%" y="799.50"></text></g><g><title>schedule (54 samples, 0.04%)</title><rect x="44.8496%" y="773" width="0.0369%" height="15" fill="rgb(253,192,32)" fg:x="65645" fg:w="54"/><text x="45.0996%" y="783.50"></text></g><g><title>__schedule (54 samples, 0.04%)</title><rect x="44.8496%" y="757" width="0.0369%" height="15" fill="rgb(213,21,6)" fg:x="65645" fg:w="54"/><text x="45.0996%" y="767.50"></text></g><g><title>finish_task_switch (53 samples, 0.04%)</title><rect x="44.8503%" y="741" width="0.0362%" height="15" fill="rgb(243,151,13)" fg:x="65646" fg:w="53"/><text x="45.1003%" y="751.50"></text></g><g><title>Unsafe_Park (57 samples, 0.04%)</title><rect x="44.8482%" y="949" width="0.0389%" height="15" fill="rgb(233,165,41)" fg:x="65643" fg:w="57"/><text x="45.0982%" y="959.50"></text></g><g><title>Parker::park (57 samples, 0.04%)</title><rect x="44.8482%" y="933" width="0.0389%" height="15" fill="rgb(246,176,45)" fg:x="65643" fg:w="57"/><text x="45.0982%" y="943.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.04%)</title><rect x="44.8482%" y="917" width="0.0389%" height="15" fill="rgb(217,170,52)" fg:x="65643" fg:w="57"/><text x="45.0982%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.04%)</title><rect x="44.8482%" y="901" width="0.0389%" height="15" fill="rgb(214,203,54)" fg:x="65643" fg:w="57"/><text x="45.0982%" y="911.50"></text></g><g><title>futex_wait_cancelable (57 samples, 0.04%)</title><rect x="44.8482%" y="885" width="0.0389%" height="15" fill="rgb(248,215,49)" fg:x="65643" fg:w="57"/><text x="45.0982%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.04%)</title><rect x="44.8482%" y="869" width="0.0389%" height="15" fill="rgb(208,46,10)" fg:x="65643" fg:w="57"/><text x="45.0982%" y="879.50"></text></g><g><title>[perf-270039.map] (189 samples, 0.13%)</title><rect x="44.7594%" y="965" width="0.1291%" height="15" fill="rgb(254,5,31)" fg:x="65513" fg:w="189"/><text x="45.0094%" y="975.50"></text></g><g><title>schedule_tail (40 samples, 0.03%)</title><rect x="44.8954%" y="933" width="0.0273%" height="15" fill="rgb(222,104,33)" fg:x="65712" fg:w="40"/><text x="45.1454%" y="943.50"></text></g><g><title>finish_task_switch (38 samples, 0.03%)</title><rect x="44.8967%" y="917" width="0.0260%" height="15" fill="rgb(248,49,16)" fg:x="65714" fg:w="38"/><text x="45.1467%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="44.8981%" y="901" width="0.0246%" height="15" fill="rgb(232,198,41)" fg:x="65716" fg:w="36"/><text x="45.1481%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="44.8981%" y="885" width="0.0246%" height="15" fill="rgb(214,125,3)" fg:x="65716" fg:w="36"/><text x="45.1481%" y="895.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="44.8981%" y="869" width="0.0246%" height="15" fill="rgb(229,220,28)" fg:x="65716" fg:w="36"/><text x="45.1481%" y="879.50"></text></g><g><title>ret_from_fork (42 samples, 0.03%)</title><rect x="44.8947%" y="949" width="0.0287%" height="15" fill="rgb(222,64,37)" fg:x="65711" fg:w="42"/><text x="45.1447%" y="959.50"></text></g><g><title>__GI___clone (60 samples, 0.04%)</title><rect x="44.8899%" y="965" width="0.0410%" height="15" fill="rgb(249,184,13)" fg:x="65704" fg:w="60"/><text x="45.1399%" y="975.50"></text></g><g><title>globbing_pool-3 (264 samples, 0.18%)</title><rect x="44.7512%" y="981" width="0.1804%" height="15" fill="rgb(252,176,6)" fg:x="65501" fg:w="264"/><text x="45.0012%" y="991.50"></text></g><g><title>[libunix_jni.so] (17 samples, 0.01%)</title><rect x="44.9350%" y="965" width="0.0116%" height="15" fill="rgb(228,153,7)" fg:x="65770" fg:w="17"/><text x="45.1850%" y="975.50"></text></g><g><title>__pthread_cond_wait (37 samples, 0.03%)</title><rect x="44.9856%" y="869" width="0.0253%" height="15" fill="rgb(242,193,5)" fg:x="65844" fg:w="37"/><text x="45.2356%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (37 samples, 0.03%)</title><rect x="44.9856%" y="853" width="0.0253%" height="15" fill="rgb(232,140,9)" fg:x="65844" fg:w="37"/><text x="45.2356%" y="863.50"></text></g><g><title>futex_wait_cancelable (35 samples, 0.02%)</title><rect x="44.9869%" y="837" width="0.0239%" height="15" fill="rgb(213,222,16)" fg:x="65846" fg:w="35"/><text x="45.2369%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="44.9869%" y="821" width="0.0239%" height="15" fill="rgb(222,75,50)" fg:x="65846" fg:w="35"/><text x="45.2369%" y="831.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="44.9869%" y="805" width="0.0239%" height="15" fill="rgb(205,180,2)" fg:x="65846" fg:w="35"/><text x="45.2369%" y="815.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="44.9869%" y="789" width="0.0239%" height="15" fill="rgb(216,34,7)" fg:x="65846" fg:w="35"/><text x="45.2369%" y="799.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="44.9869%" y="773" width="0.0239%" height="15" fill="rgb(253,16,32)" fg:x="65846" fg:w="35"/><text x="45.2369%" y="783.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="44.9869%" y="757" width="0.0239%" height="15" fill="rgb(208,97,28)" fg:x="65846" fg:w="35"/><text x="45.2369%" y="767.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="44.9869%" y="741" width="0.0239%" height="15" fill="rgb(225,92,11)" fg:x="65846" fg:w="35"/><text x="45.2369%" y="751.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="44.9869%" y="725" width="0.0239%" height="15" fill="rgb(243,38,12)" fg:x="65846" fg:w="35"/><text x="45.2369%" y="735.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="44.9869%" y="709" width="0.0239%" height="15" fill="rgb(208,139,16)" fg:x="65846" fg:w="35"/><text x="45.2369%" y="719.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="44.9869%" y="693" width="0.0239%" height="15" fill="rgb(227,24,9)" fg:x="65846" fg:w="35"/><text x="45.2369%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="44.9876%" y="677" width="0.0232%" height="15" fill="rgb(206,62,11)" fg:x="65847" fg:w="34"/><text x="45.2376%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.02%)</title><rect x="44.9883%" y="661" width="0.0225%" height="15" fill="rgb(228,134,27)" fg:x="65848" fg:w="33"/><text x="45.2383%" y="671.50"></text></g><g><title>native_write_msr (33 samples, 0.02%)</title><rect x="44.9883%" y="645" width="0.0225%" height="15" fill="rgb(205,55,33)" fg:x="65848" fg:w="33"/><text x="45.2383%" y="655.50"></text></g><g><title>Monitor::wait (38 samples, 0.03%)</title><rect x="44.9856%" y="917" width="0.0260%" height="15" fill="rgb(243,75,43)" fg:x="65844" fg:w="38"/><text x="45.2356%" y="927.50"></text></g><g><title>Monitor::IWait (38 samples, 0.03%)</title><rect x="44.9856%" y="901" width="0.0260%" height="15" fill="rgb(223,27,42)" fg:x="65844" fg:w="38"/><text x="45.2356%" y="911.50"></text></g><g><title>os::PlatformEvent::park (38 samples, 0.03%)</title><rect x="44.9856%" y="885" width="0.0260%" height="15" fill="rgb(232,189,33)" fg:x="65844" fg:w="38"/><text x="45.2356%" y="895.50"></text></g><g><title>os::create_thread (46 samples, 0.03%)</title><rect x="44.9856%" y="933" width="0.0314%" height="15" fill="rgb(210,9,39)" fg:x="65844" fg:w="46"/><text x="45.2356%" y="943.50"></text></g><g><title>JVM_StartThread (59 samples, 0.04%)</title><rect x="44.9774%" y="949" width="0.0403%" height="15" fill="rgb(242,85,26)" fg:x="65832" fg:w="59"/><text x="45.2274%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="45.0245%" y="725" width="0.0266%" height="15" fill="rgb(248,44,4)" fg:x="65901" fg:w="39"/><text x="45.2745%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (38 samples, 0.03%)</title><rect x="45.0252%" y="709" width="0.0260%" height="15" fill="rgb(250,96,46)" fg:x="65902" fg:w="38"/><text x="45.2752%" y="719.50"></text></g><g><title>native_write_msr (38 samples, 0.03%)</title><rect x="45.0252%" y="693" width="0.0260%" height="15" fill="rgb(229,116,26)" fg:x="65902" fg:w="38"/><text x="45.2752%" y="703.50"></text></g><g><title>finish_task_switch (43 samples, 0.03%)</title><rect x="45.0245%" y="741" width="0.0294%" height="15" fill="rgb(246,94,34)" fg:x="65901" fg:w="43"/><text x="45.2745%" y="751.50"></text></g><g><title>do_syscall_64 (45 samples, 0.03%)</title><rect x="45.0238%" y="853" width="0.0307%" height="15" fill="rgb(251,73,21)" fg:x="65900" fg:w="45"/><text x="45.2738%" y="863.50"></text></g><g><title>__x64_sys_futex (45 samples, 0.03%)</title><rect x="45.0238%" y="837" width="0.0307%" height="15" fill="rgb(254,121,25)" fg:x="65900" fg:w="45"/><text x="45.2738%" y="847.50"></text></g><g><title>do_futex (45 samples, 0.03%)</title><rect x="45.0238%" y="821" width="0.0307%" height="15" fill="rgb(215,161,49)" fg:x="65900" fg:w="45"/><text x="45.2738%" y="831.50"></text></g><g><title>futex_wait (45 samples, 0.03%)</title><rect x="45.0238%" y="805" width="0.0307%" height="15" fill="rgb(221,43,13)" fg:x="65900" fg:w="45"/><text x="45.2738%" y="815.50"></text></g><g><title>futex_wait_queue_me (44 samples, 0.03%)</title><rect x="45.0245%" y="789" width="0.0301%" height="15" fill="rgb(249,5,37)" fg:x="65901" fg:w="44"/><text x="45.2745%" y="799.50"></text></g><g><title>schedule (44 samples, 0.03%)</title><rect x="45.0245%" y="773" width="0.0301%" height="15" fill="rgb(226,25,44)" fg:x="65901" fg:w="44"/><text x="45.2745%" y="783.50"></text></g><g><title>__schedule (44 samples, 0.03%)</title><rect x="45.0245%" y="757" width="0.0301%" height="15" fill="rgb(238,189,16)" fg:x="65901" fg:w="44"/><text x="45.2745%" y="767.50"></text></g><g><title>Unsafe_Park (56 samples, 0.04%)</title><rect x="45.0177%" y="949" width="0.0383%" height="15" fill="rgb(251,186,8)" fg:x="65891" fg:w="56"/><text x="45.2677%" y="959.50"></text></g><g><title>Parker::park (55 samples, 0.04%)</title><rect x="45.0183%" y="933" width="0.0376%" height="15" fill="rgb(254,34,31)" fg:x="65892" fg:w="55"/><text x="45.2683%" y="943.50"></text></g><g><title>__pthread_cond_wait (47 samples, 0.03%)</title><rect x="45.0238%" y="917" width="0.0321%" height="15" fill="rgb(225,215,27)" fg:x="65900" fg:w="47"/><text x="45.2738%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (47 samples, 0.03%)</title><rect x="45.0238%" y="901" width="0.0321%" height="15" fill="rgb(221,192,48)" fg:x="65900" fg:w="47"/><text x="45.2738%" y="911.50"></text></g><g><title>futex_wait_cancelable (47 samples, 0.03%)</title><rect x="45.0238%" y="885" width="0.0321%" height="15" fill="rgb(219,137,20)" fg:x="65900" fg:w="47"/><text x="45.2738%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.03%)</title><rect x="45.0238%" y="869" width="0.0321%" height="15" fill="rgb(219,84,11)" fg:x="65900" fg:w="47"/><text x="45.2738%" y="879.50"></text></g><g><title>[perf-270039.map] (163 samples, 0.11%)</title><rect x="44.9466%" y="965" width="0.1114%" height="15" fill="rgb(224,10,23)" fg:x="65787" fg:w="163"/><text x="45.1966%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.03%)</title><rect x="45.0655%" y="901" width="0.0294%" height="15" fill="rgb(248,22,39)" fg:x="65961" fg:w="43"/><text x="45.3155%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.03%)</title><rect x="45.0662%" y="885" width="0.0287%" height="15" fill="rgb(212,154,20)" fg:x="65962" fg:w="42"/><text x="45.3162%" y="895.50"></text></g><g><title>native_write_msr (42 samples, 0.03%)</title><rect x="45.0662%" y="869" width="0.0287%" height="15" fill="rgb(236,199,50)" fg:x="65962" fg:w="42"/><text x="45.3162%" y="879.50"></text></g><g><title>schedule_tail (47 samples, 0.03%)</title><rect x="45.0641%" y="933" width="0.0321%" height="15" fill="rgb(211,9,17)" fg:x="65959" fg:w="47"/><text x="45.3141%" y="943.50"></text></g><g><title>finish_task_switch (47 samples, 0.03%)</title><rect x="45.0641%" y="917" width="0.0321%" height="15" fill="rgb(243,216,36)" fg:x="65959" fg:w="47"/><text x="45.3141%" y="927.50"></text></g><g><title>ret_from_fork (49 samples, 0.03%)</title><rect x="45.0634%" y="949" width="0.0335%" height="15" fill="rgb(250,2,10)" fg:x="65958" fg:w="49"/><text x="45.3134%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="45.0990%" y="677" width="0.0137%" height="15" fill="rgb(226,50,48)" fg:x="66010" fg:w="20"/><text x="45.3490%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="45.1003%" y="661" width="0.0123%" height="15" fill="rgb(243,81,16)" fg:x="66012" fg:w="18"/><text x="45.3503%" y="671.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="45.1003%" y="645" width="0.0123%" height="15" fill="rgb(250,14,2)" fg:x="66012" fg:w="18"/><text x="45.3503%" y="655.50"></text></g><g><title>Monitor::wait (23 samples, 0.02%)</title><rect x="45.0976%" y="917" width="0.0157%" height="15" fill="rgb(233,135,29)" fg:x="66008" fg:w="23"/><text x="45.3476%" y="927.50"></text></g><g><title>Monitor::IWait (23 samples, 0.02%)</title><rect x="45.0976%" y="901" width="0.0157%" height="15" fill="rgb(224,64,43)" fg:x="66008" fg:w="23"/><text x="45.3476%" y="911.50"></text></g><g><title>os::PlatformEvent::park (22 samples, 0.02%)</title><rect x="45.0983%" y="885" width="0.0150%" height="15" fill="rgb(238,84,13)" fg:x="66009" fg:w="22"/><text x="45.3483%" y="895.50"></text></g><g><title>__pthread_cond_wait (22 samples, 0.02%)</title><rect x="45.0983%" y="869" width="0.0150%" height="15" fill="rgb(253,48,26)" fg:x="66009" fg:w="22"/><text x="45.3483%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (22 samples, 0.02%)</title><rect x="45.0983%" y="853" width="0.0150%" height="15" fill="rgb(205,223,31)" fg:x="66009" fg:w="22"/><text x="45.3483%" y="863.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.02%)</title><rect x="45.0983%" y="837" width="0.0150%" height="15" fill="rgb(221,41,32)" fg:x="66009" fg:w="22"/><text x="45.3483%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="45.0983%" y="821" width="0.0150%" height="15" fill="rgb(213,158,31)" fg:x="66009" fg:w="22"/><text x="45.3483%" y="831.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="45.0983%" y="805" width="0.0150%" height="15" fill="rgb(245,126,43)" fg:x="66009" fg:w="22"/><text x="45.3483%" y="815.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.02%)</title><rect x="45.0983%" y="789" width="0.0150%" height="15" fill="rgb(227,7,22)" fg:x="66009" fg:w="22"/><text x="45.3483%" y="799.50"></text></g><g><title>do_futex (22 samples, 0.02%)</title><rect x="45.0983%" y="773" width="0.0150%" height="15" fill="rgb(252,90,44)" fg:x="66009" fg:w="22"/><text x="45.3483%" y="783.50"></text></g><g><title>futex_wait (22 samples, 0.02%)</title><rect x="45.0983%" y="757" width="0.0150%" height="15" fill="rgb(253,91,0)" fg:x="66009" fg:w="22"/><text x="45.3483%" y="767.50"></text></g><g><title>futex_wait_queue_me (22 samples, 0.02%)</title><rect x="45.0983%" y="741" width="0.0150%" height="15" fill="rgb(252,175,49)" fg:x="66009" fg:w="22"/><text x="45.3483%" y="751.50"></text></g><g><title>schedule (21 samples, 0.01%)</title><rect x="45.0990%" y="725" width="0.0143%" height="15" fill="rgb(246,150,1)" fg:x="66010" fg:w="21"/><text x="45.3490%" y="735.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="45.0990%" y="709" width="0.0143%" height="15" fill="rgb(241,192,25)" fg:x="66010" fg:w="21"/><text x="45.3490%" y="719.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="45.0990%" y="693" width="0.0143%" height="15" fill="rgb(239,187,11)" fg:x="66010" fg:w="21"/><text x="45.3490%" y="703.50"></text></g><g><title>__GI___clone (90 samples, 0.06%)</title><rect x="45.0587%" y="965" width="0.0615%" height="15" fill="rgb(218,202,51)" fg:x="65951" fg:w="90"/><text x="45.3087%" y="975.50"></text></g><g><title>start_thread (34 samples, 0.02%)</title><rect x="45.0969%" y="949" width="0.0232%" height="15" fill="rgb(225,176,8)" fg:x="66007" fg:w="34"/><text x="45.3469%" y="959.50"></text></g><g><title>thread_native_entry (33 samples, 0.02%)</title><rect x="45.0976%" y="933" width="0.0225%" height="15" fill="rgb(219,122,41)" fg:x="66008" fg:w="33"/><text x="45.3476%" y="943.50"></text></g><g><title>globbing_pool-4 (278 samples, 0.19%)</title><rect x="44.9316%" y="981" width="0.1899%" height="15" fill="rgb(248,140,20)" fg:x="65765" fg:w="278"/><text x="45.1816%" y="991.50"></text></g><g><title>[libunix_jni.so] (22 samples, 0.02%)</title><rect x="45.1229%" y="965" width="0.0150%" height="15" fill="rgb(245,41,37)" fg:x="66045" fg:w="22"/><text x="45.3729%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="45.1857%" y="693" width="0.0184%" height="15" fill="rgb(235,82,39)" fg:x="66137" fg:w="27"/><text x="45.4357%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.02%)</title><rect x="45.1864%" y="677" width="0.0178%" height="15" fill="rgb(230,108,42)" fg:x="66138" fg:w="26"/><text x="45.4364%" y="687.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="45.1864%" y="661" width="0.0178%" height="15" fill="rgb(215,150,50)" fg:x="66138" fg:w="26"/><text x="45.4364%" y="671.50"></text></g><g><title>__pthread_cond_wait (29 samples, 0.02%)</title><rect x="45.1850%" y="885" width="0.0198%" height="15" fill="rgb(233,212,5)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.02%)</title><rect x="45.1850%" y="869" width="0.0198%" height="15" fill="rgb(245,80,22)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="879.50"></text></g><g><title>futex_wait_cancelable (29 samples, 0.02%)</title><rect x="45.1850%" y="853" width="0.0198%" height="15" fill="rgb(238,129,16)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.02%)</title><rect x="45.1850%" y="837" width="0.0198%" height="15" fill="rgb(240,19,0)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="847.50"></text></g><g><title>do_syscall_64 (29 samples, 0.02%)</title><rect x="45.1850%" y="821" width="0.0198%" height="15" fill="rgb(232,42,35)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="831.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.02%)</title><rect x="45.1850%" y="805" width="0.0198%" height="15" fill="rgb(223,130,24)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="815.50"></text></g><g><title>do_futex (29 samples, 0.02%)</title><rect x="45.1850%" y="789" width="0.0198%" height="15" fill="rgb(237,16,22)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="799.50"></text></g><g><title>futex_wait (29 samples, 0.02%)</title><rect x="45.1850%" y="773" width="0.0198%" height="15" fill="rgb(248,192,20)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="783.50"></text></g><g><title>futex_wait_queue_me (29 samples, 0.02%)</title><rect x="45.1850%" y="757" width="0.0198%" height="15" fill="rgb(233,167,2)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="767.50"></text></g><g><title>schedule (29 samples, 0.02%)</title><rect x="45.1850%" y="741" width="0.0198%" height="15" fill="rgb(252,71,44)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="751.50"></text></g><g><title>__schedule (29 samples, 0.02%)</title><rect x="45.1850%" y="725" width="0.0198%" height="15" fill="rgb(238,37,47)" fg:x="66136" fg:w="29"/><text x="45.4350%" y="735.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="45.1857%" y="709" width="0.0191%" height="15" fill="rgb(214,202,54)" fg:x="66137" fg:w="28"/><text x="45.4357%" y="719.50"></text></g><g><title>Monitor::lock (30 samples, 0.02%)</title><rect x="45.1850%" y="933" width="0.0205%" height="15" fill="rgb(254,165,40)" fg:x="66136" fg:w="30"/><text x="45.4350%" y="943.50"></text></g><g><title>Monitor::ILock (30 samples, 0.02%)</title><rect x="45.1850%" y="917" width="0.0205%" height="15" fill="rgb(246,173,38)" fg:x="66136" fg:w="30"/><text x="45.4350%" y="927.50"></text></g><g><title>os::PlatformEvent::park (30 samples, 0.02%)</title><rect x="45.1850%" y="901" width="0.0205%" height="15" fill="rgb(215,3,27)" fg:x="66136" fg:w="30"/><text x="45.4350%" y="911.50"></text></g><g><title>JVM_StartThread (53 samples, 0.04%)</title><rect x="45.1775%" y="949" width="0.0362%" height="15" fill="rgb(239,169,51)" fg:x="66125" fg:w="53"/><text x="45.4275%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="45.2219%" y="725" width="0.0184%" height="15" fill="rgb(212,5,25)" fg:x="66190" fg:w="27"/><text x="45.4719%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.02%)</title><rect x="45.2226%" y="709" width="0.0178%" height="15" fill="rgb(243,45,17)" fg:x="66191" fg:w="26"/><text x="45.4726%" y="719.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="45.2226%" y="693" width="0.0178%" height="15" fill="rgb(242,97,9)" fg:x="66191" fg:w="26"/><text x="45.4726%" y="703.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="45.2219%" y="741" width="0.0191%" height="15" fill="rgb(228,71,31)" fg:x="66190" fg:w="28"/><text x="45.4719%" y="751.50"></text></g><g><title>__x64_sys_futex (30 samples, 0.02%)</title><rect x="45.2213%" y="837" width="0.0205%" height="15" fill="rgb(252,184,16)" fg:x="66189" fg:w="30"/><text x="45.4713%" y="847.50"></text></g><g><title>do_futex (30 samples, 0.02%)</title><rect x="45.2213%" y="821" width="0.0205%" height="15" fill="rgb(236,169,46)" fg:x="66189" fg:w="30"/><text x="45.4713%" y="831.50"></text></g><g><title>futex_wait (29 samples, 0.02%)</title><rect x="45.2219%" y="805" width="0.0198%" height="15" fill="rgb(207,17,47)" fg:x="66190" fg:w="29"/><text x="45.4719%" y="815.50"></text></g><g><title>futex_wait_queue_me (29 samples, 0.02%)</title><rect x="45.2219%" y="789" width="0.0198%" height="15" fill="rgb(206,201,28)" fg:x="66190" fg:w="29"/><text x="45.4719%" y="799.50"></text></g><g><title>schedule (29 samples, 0.02%)</title><rect x="45.2219%" y="773" width="0.0198%" height="15" fill="rgb(224,184,23)" fg:x="66190" fg:w="29"/><text x="45.4719%" y="783.50"></text></g><g><title>__schedule (29 samples, 0.02%)</title><rect x="45.2219%" y="757" width="0.0198%" height="15" fill="rgb(208,139,48)" fg:x="66190" fg:w="29"/><text x="45.4719%" y="767.50"></text></g><g><title>Unsafe_Park (32 samples, 0.02%)</title><rect x="45.2206%" y="949" width="0.0219%" height="15" fill="rgb(208,130,10)" fg:x="66188" fg:w="32"/><text x="45.4706%" y="959.50"></text></g><g><title>Parker::park (32 samples, 0.02%)</title><rect x="45.2206%" y="933" width="0.0219%" height="15" fill="rgb(211,213,45)" fg:x="66188" fg:w="32"/><text x="45.4706%" y="943.50"></text></g><g><title>__pthread_cond_wait (32 samples, 0.02%)</title><rect x="45.2206%" y="917" width="0.0219%" height="15" fill="rgb(235,100,30)" fg:x="66188" fg:w="32"/><text x="45.4706%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.02%)</title><rect x="45.2206%" y="901" width="0.0219%" height="15" fill="rgb(206,144,31)" fg:x="66188" fg:w="32"/><text x="45.4706%" y="911.50"></text></g><g><title>futex_wait_cancelable (32 samples, 0.02%)</title><rect x="45.2206%" y="885" width="0.0219%" height="15" fill="rgb(224,200,26)" fg:x="66188" fg:w="32"/><text x="45.4706%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="45.2213%" y="869" width="0.0212%" height="15" fill="rgb(247,104,53)" fg:x="66189" fg:w="31"/><text x="45.4713%" y="879.50"></text></g><g><title>do_syscall_64 (31 samples, 0.02%)</title><rect x="45.2213%" y="853" width="0.0212%" height="15" fill="rgb(220,14,17)" fg:x="66189" fg:w="31"/><text x="45.4713%" y="863.50"></text></g><g><title>[perf-270039.map] (155 samples, 0.11%)</title><rect x="45.1379%" y="965" width="0.1059%" height="15" fill="rgb(230,140,40)" fg:x="66067" fg:w="155"/><text x="45.3879%" y="975.50"></text></g><g><title>schedule_tail (32 samples, 0.02%)</title><rect x="45.2527%" y="933" width="0.0219%" height="15" fill="rgb(229,2,41)" fg:x="66235" fg:w="32"/><text x="45.5027%" y="943.50"></text></g><g><title>finish_task_switch (32 samples, 0.02%)</title><rect x="45.2527%" y="917" width="0.0219%" height="15" fill="rgb(232,89,16)" fg:x="66235" fg:w="32"/><text x="45.5027%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.02%)</title><rect x="45.2527%" y="901" width="0.0219%" height="15" fill="rgb(247,59,52)" fg:x="66235" fg:w="32"/><text x="45.5027%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.02%)</title><rect x="45.2527%" y="885" width="0.0219%" height="15" fill="rgb(226,110,21)" fg:x="66235" fg:w="32"/><text x="45.5027%" y="895.50"></text></g><g><title>native_write_msr (32 samples, 0.02%)</title><rect x="45.2527%" y="869" width="0.0219%" height="15" fill="rgb(224,176,43)" fg:x="66235" fg:w="32"/><text x="45.5027%" y="879.50"></text></g><g><title>ret_from_fork (34 samples, 0.02%)</title><rect x="45.2520%" y="949" width="0.0232%" height="15" fill="rgb(221,73,6)" fg:x="66234" fg:w="34"/><text x="45.5020%" y="959.50"></text></g><g><title>__GI___clone (55 samples, 0.04%)</title><rect x="45.2452%" y="965" width="0.0376%" height="15" fill="rgb(232,78,19)" fg:x="66224" fg:w="55"/><text x="45.4952%" y="975.50"></text></g><g><title>globbing_pool-5 (239 samples, 0.16%)</title><rect x="45.1215%" y="981" width="0.1633%" height="15" fill="rgb(233,112,48)" fg:x="66043" fg:w="239"/><text x="45.3715%" y="991.50"></text></g><g><title>[libunix_jni.so] (21 samples, 0.01%)</title><rect x="45.2903%" y="965" width="0.0143%" height="15" fill="rgb(243,131,47)" fg:x="66290" fg:w="21"/><text x="45.5403%" y="975.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="45.3579%" y="709" width="0.0137%" height="15" fill="rgb(226,51,1)" fg:x="66389" fg:w="20"/><text x="45.6079%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="45.3579%" y="693" width="0.0137%" height="15" fill="rgb(247,58,7)" fg:x="66389" fg:w="20"/><text x="45.6079%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="45.3586%" y="677" width="0.0130%" height="15" fill="rgb(209,7,32)" fg:x="66390" fg:w="19"/><text x="45.6086%" y="687.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="45.3586%" y="661" width="0.0130%" height="15" fill="rgb(209,39,41)" fg:x="66390" fg:w="19"/><text x="45.6086%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="45.3579%" y="837" width="0.0143%" height="15" fill="rgb(226,182,46)" fg:x="66389" fg:w="21"/><text x="45.6079%" y="847.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="45.3579%" y="821" width="0.0143%" height="15" fill="rgb(230,219,10)" fg:x="66389" fg:w="21"/><text x="45.6079%" y="831.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.01%)</title><rect x="45.3579%" y="805" width="0.0143%" height="15" fill="rgb(227,175,30)" fg:x="66389" fg:w="21"/><text x="45.6079%" y="815.50"></text></g><g><title>do_futex (21 samples, 0.01%)</title><rect x="45.3579%" y="789" width="0.0143%" height="15" fill="rgb(217,2,50)" fg:x="66389" fg:w="21"/><text x="45.6079%" y="799.50"></text></g><g><title>futex_wait (21 samples, 0.01%)</title><rect x="45.3579%" y="773" width="0.0143%" height="15" fill="rgb(229,160,0)" fg:x="66389" fg:w="21"/><text x="45.6079%" y="783.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.01%)</title><rect x="45.3579%" y="757" width="0.0143%" height="15" fill="rgb(207,78,37)" fg:x="66389" fg:w="21"/><text x="45.6079%" y="767.50"></text></g><g><title>schedule (21 samples, 0.01%)</title><rect x="45.3579%" y="741" width="0.0143%" height="15" fill="rgb(225,57,0)" fg:x="66389" fg:w="21"/><text x="45.6079%" y="751.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="45.3579%" y="725" width="0.0143%" height="15" fill="rgb(232,154,2)" fg:x="66389" fg:w="21"/><text x="45.6079%" y="735.50"></text></g><g><title>Monitor::lock (22 samples, 0.02%)</title><rect x="45.3579%" y="933" width="0.0150%" height="15" fill="rgb(241,212,25)" fg:x="66389" fg:w="22"/><text x="45.6079%" y="943.50"></text></g><g><title>Monitor::ILock (22 samples, 0.02%)</title><rect x="45.3579%" y="917" width="0.0150%" height="15" fill="rgb(226,69,20)" fg:x="66389" fg:w="22"/><text x="45.6079%" y="927.50"></text></g><g><title>os::PlatformEvent::park (22 samples, 0.02%)</title><rect x="45.3579%" y="901" width="0.0150%" height="15" fill="rgb(247,184,54)" fg:x="66389" fg:w="22"/><text x="45.6079%" y="911.50"></text></g><g><title>__pthread_cond_wait (22 samples, 0.02%)</title><rect x="45.3579%" y="885" width="0.0150%" height="15" fill="rgb(210,145,0)" fg:x="66389" fg:w="22"/><text x="45.6079%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (22 samples, 0.02%)</title><rect x="45.3579%" y="869" width="0.0150%" height="15" fill="rgb(253,82,12)" fg:x="66389" fg:w="22"/><text x="45.6079%" y="879.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.02%)</title><rect x="45.3579%" y="853" width="0.0150%" height="15" fill="rgb(245,42,11)" fg:x="66389" fg:w="22"/><text x="45.6079%" y="863.50"></text></g><g><title>JVM_StartThread (25 samples, 0.02%)</title><rect x="45.3572%" y="949" width="0.0171%" height="15" fill="rgb(219,147,32)" fg:x="66388" fg:w="25"/><text x="45.6072%" y="959.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="45.3757%" y="789" width="0.0137%" height="15" fill="rgb(246,12,7)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="799.50"></text></g><g><title>__x64_sys_futex (20 samples, 0.01%)</title><rect x="45.3757%" y="773" width="0.0137%" height="15" fill="rgb(243,50,9)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="783.50"></text></g><g><title>do_futex (20 samples, 0.01%)</title><rect x="45.3757%" y="757" width="0.0137%" height="15" fill="rgb(219,149,6)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="767.50"></text></g><g><title>futex_wait (20 samples, 0.01%)</title><rect x="45.3757%" y="741" width="0.0137%" height="15" fill="rgb(241,51,42)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="751.50"></text></g><g><title>futex_wait_queue_me (20 samples, 0.01%)</title><rect x="45.3757%" y="725" width="0.0137%" height="15" fill="rgb(226,128,27)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="735.50"></text></g><g><title>schedule (20 samples, 0.01%)</title><rect x="45.3757%" y="709" width="0.0137%" height="15" fill="rgb(244,144,4)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="719.50"></text></g><g><title>__schedule (20 samples, 0.01%)</title><rect x="45.3757%" y="693" width="0.0137%" height="15" fill="rgb(221,4,13)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="703.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="45.3757%" y="677" width="0.0137%" height="15" fill="rgb(208,170,28)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="45.3757%" y="661" width="0.0137%" height="15" fill="rgb(226,131,13)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="45.3757%" y="645" width="0.0137%" height="15" fill="rgb(215,72,41)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="655.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="45.3757%" y="629" width="0.0137%" height="15" fill="rgb(243,108,20)" fg:x="66415" fg:w="20"/><text x="45.6257%" y="639.50"></text></g><g><title>SafepointSynchronize::block (21 samples, 0.01%)</title><rect x="45.3757%" y="917" width="0.0143%" height="15" fill="rgb(230,189,17)" fg:x="66415" fg:w="21"/><text x="45.6257%" y="927.50"></text></g><g><title>Monitor::lock_without_safepoint_check (21 samples, 0.01%)</title><rect x="45.3757%" y="901" width="0.0143%" height="15" fill="rgb(220,50,17)" fg:x="66415" fg:w="21"/><text x="45.6257%" y="911.50"></text></g><g><title>Monitor::ILock (21 samples, 0.01%)</title><rect x="45.3757%" y="885" width="0.0143%" height="15" fill="rgb(248,152,48)" fg:x="66415" fg:w="21"/><text x="45.6257%" y="895.50"></text></g><g><title>os::PlatformEvent::park (21 samples, 0.01%)</title><rect x="45.3757%" y="869" width="0.0143%" height="15" fill="rgb(244,91,11)" fg:x="66415" fg:w="21"/><text x="45.6257%" y="879.50"></text></g><g><title>__pthread_cond_wait (21 samples, 0.01%)</title><rect x="45.3757%" y="853" width="0.0143%" height="15" fill="rgb(220,157,5)" fg:x="66415" fg:w="21"/><text x="45.6257%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (21 samples, 0.01%)</title><rect x="45.3757%" y="837" width="0.0143%" height="15" fill="rgb(253,137,8)" fg:x="66415" fg:w="21"/><text x="45.6257%" y="847.50"></text></g><g><title>futex_wait_cancelable (21 samples, 0.01%)</title><rect x="45.3757%" y="821" width="0.0143%" height="15" fill="rgb(217,137,51)" fg:x="66415" fg:w="21"/><text x="45.6257%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="45.3757%" y="805" width="0.0143%" height="15" fill="rgb(218,209,53)" fg:x="66415" fg:w="21"/><text x="45.6257%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="45.3914%" y="725" width="0.0232%" height="15" fill="rgb(249,137,25)" fg:x="66438" fg:w="34"/><text x="45.6414%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="45.3914%" y="709" width="0.0232%" height="15" fill="rgb(239,155,26)" fg:x="66438" fg:w="34"/><text x="45.6414%" y="719.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="45.3914%" y="693" width="0.0232%" height="15" fill="rgb(227,85,46)" fg:x="66438" fg:w="34"/><text x="45.6414%" y="703.50"></text></g><g><title>finish_task_switch (36 samples, 0.02%)</title><rect x="45.3914%" y="741" width="0.0246%" height="15" fill="rgb(251,107,43)" fg:x="66438" fg:w="36"/><text x="45.6414%" y="751.50"></text></g><g><title>__pthread_cond_wait (39 samples, 0.03%)</title><rect x="45.3900%" y="917" width="0.0266%" height="15" fill="rgb(234,170,33)" fg:x="66436" fg:w="39"/><text x="45.6400%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (39 samples, 0.03%)</title><rect x="45.3900%" y="901" width="0.0266%" height="15" fill="rgb(206,29,35)" fg:x="66436" fg:w="39"/><text x="45.6400%" y="911.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.03%)</title><rect x="45.3900%" y="885" width="0.0266%" height="15" fill="rgb(227,138,25)" fg:x="66436" fg:w="39"/><text x="45.6400%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="45.3907%" y="869" width="0.0260%" height="15" fill="rgb(249,131,35)" fg:x="66437" fg:w="38"/><text x="45.6407%" y="879.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="45.3907%" y="853" width="0.0260%" height="15" fill="rgb(239,6,40)" fg:x="66437" fg:w="38"/><text x="45.6407%" y="863.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.03%)</title><rect x="45.3907%" y="837" width="0.0260%" height="15" fill="rgb(246,136,47)" fg:x="66437" fg:w="38"/><text x="45.6407%" y="847.50"></text></g><g><title>do_futex (38 samples, 0.03%)</title><rect x="45.3907%" y="821" width="0.0260%" height="15" fill="rgb(253,58,26)" fg:x="66437" fg:w="38"/><text x="45.6407%" y="831.50"></text></g><g><title>futex_wait (38 samples, 0.03%)</title><rect x="45.3907%" y="805" width="0.0260%" height="15" fill="rgb(237,141,10)" fg:x="66437" fg:w="38"/><text x="45.6407%" y="815.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.03%)</title><rect x="45.3914%" y="789" width="0.0253%" height="15" fill="rgb(234,156,12)" fg:x="66438" fg:w="37"/><text x="45.6414%" y="799.50"></text></g><g><title>schedule (37 samples, 0.03%)</title><rect x="45.3914%" y="773" width="0.0253%" height="15" fill="rgb(243,224,36)" fg:x="66438" fg:w="37"/><text x="45.6414%" y="783.50"></text></g><g><title>__schedule (37 samples, 0.03%)</title><rect x="45.3914%" y="757" width="0.0253%" height="15" fill="rgb(205,229,51)" fg:x="66438" fg:w="37"/><text x="45.6414%" y="767.50"></text></g><g><title>Unsafe_Park (63 samples, 0.04%)</title><rect x="45.3743%" y="949" width="0.0430%" height="15" fill="rgb(223,189,4)" fg:x="66413" fg:w="63"/><text x="45.6243%" y="959.50"></text></g><g><title>Parker::park (63 samples, 0.04%)</title><rect x="45.3743%" y="933" width="0.0430%" height="15" fill="rgb(249,167,54)" fg:x="66413" fg:w="63"/><text x="45.6243%" y="943.50"></text></g><g><title>[perf-270039.map] (171 samples, 0.12%)</title><rect x="45.3046%" y="965" width="0.1168%" height="15" fill="rgb(218,34,28)" fg:x="66311" fg:w="171"/><text x="45.5546%" y="975.50"></text></g><g><title>ret_from_fork (15 samples, 0.01%)</title><rect x="45.4235%" y="949" width="0.0102%" height="15" fill="rgb(232,109,42)" fg:x="66485" fg:w="15"/><text x="45.6735%" y="959.50"></text></g><g><title>__GI___clone (20 samples, 0.01%)</title><rect x="45.4214%" y="965" width="0.0137%" height="15" fill="rgb(248,214,46)" fg:x="66482" fg:w="20"/><text x="45.6714%" y="975.50"></text></g><g><title>globbing_pool-6 (221 samples, 0.15%)</title><rect x="45.2848%" y="981" width="0.1510%" height="15" fill="rgb(244,216,40)" fg:x="66282" fg:w="221"/><text x="45.5348%" y="991.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.02%)</title><rect x="45.4734%" y="885" width="0.0157%" height="15" fill="rgb(231,226,31)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.02%)</title><rect x="45.4734%" y="869" width="0.0157%" height="15" fill="rgb(238,38,43)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="879.50"></text></g><g><title>futex_wait_cancelable (23 samples, 0.02%)</title><rect x="45.4734%" y="853" width="0.0157%" height="15" fill="rgb(208,88,43)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="45.4734%" y="837" width="0.0157%" height="15" fill="rgb(205,136,37)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="847.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="45.4734%" y="821" width="0.0157%" height="15" fill="rgb(237,34,14)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="831.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="45.4734%" y="805" width="0.0157%" height="15" fill="rgb(236,193,44)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="815.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="45.4734%" y="789" width="0.0157%" height="15" fill="rgb(231,48,10)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="799.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="45.4734%" y="773" width="0.0157%" height="15" fill="rgb(213,141,34)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="783.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="45.4734%" y="757" width="0.0157%" height="15" fill="rgb(249,130,34)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="767.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="45.4734%" y="741" width="0.0157%" height="15" fill="rgb(219,42,41)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="751.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="45.4734%" y="725" width="0.0157%" height="15" fill="rgb(224,100,54)" fg:x="66558" fg:w="23"/><text x="45.7234%" y="735.50"></text></g><g><title>finish_task_switch (22 samples, 0.02%)</title><rect x="45.4740%" y="709" width="0.0150%" height="15" fill="rgb(229,200,27)" fg:x="66559" fg:w="22"/><text x="45.7240%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="45.4747%" y="693" width="0.0143%" height="15" fill="rgb(217,118,10)" fg:x="66560" fg:w="21"/><text x="45.7247%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="45.4754%" y="677" width="0.0137%" height="15" fill="rgb(206,22,3)" fg:x="66561" fg:w="20"/><text x="45.7254%" y="687.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="45.4754%" y="661" width="0.0137%" height="15" fill="rgb(232,163,46)" fg:x="66561" fg:w="20"/><text x="45.7254%" y="671.50"></text></g><g><title>Monitor::lock (24 samples, 0.02%)</title><rect x="45.4734%" y="933" width="0.0164%" height="15" fill="rgb(206,95,13)" fg:x="66558" fg:w="24"/><text x="45.7234%" y="943.50"></text></g><g><title>Monitor::ILock (24 samples, 0.02%)</title><rect x="45.4734%" y="917" width="0.0164%" height="15" fill="rgb(253,154,18)" fg:x="66558" fg:w="24"/><text x="45.7234%" y="927.50"></text></g><g><title>os::PlatformEvent::park (24 samples, 0.02%)</title><rect x="45.4734%" y="901" width="0.0164%" height="15" fill="rgb(219,32,23)" fg:x="66558" fg:w="24"/><text x="45.7234%" y="911.50"></text></g><g><title>JVM_StartThread (27 samples, 0.02%)</title><rect x="45.4720%" y="949" width="0.0184%" height="15" fill="rgb(230,191,45)" fg:x="66556" fg:w="27"/><text x="45.7220%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="45.5014%" y="725" width="0.0143%" height="15" fill="rgb(229,64,36)" fg:x="66599" fg:w="21"/><text x="45.7514%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="45.5014%" y="709" width="0.0143%" height="15" fill="rgb(205,129,25)" fg:x="66599" fg:w="21"/><text x="45.7514%" y="719.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="45.5021%" y="693" width="0.0137%" height="15" fill="rgb(254,112,7)" fg:x="66600" fg:w="20"/><text x="45.7521%" y="703.50"></text></g><g><title>finish_task_switch (23 samples, 0.02%)</title><rect x="45.5007%" y="741" width="0.0157%" height="15" fill="rgb(226,53,48)" fg:x="66598" fg:w="23"/><text x="45.7507%" y="751.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="45.5007%" y="853" width="0.0171%" height="15" fill="rgb(214,153,38)" fg:x="66598" fg:w="25"/><text x="45.7507%" y="863.50"></text></g><g><title>__x64_sys_futex (25 samples, 0.02%)</title><rect x="45.5007%" y="837" width="0.0171%" height="15" fill="rgb(243,101,7)" fg:x="66598" fg:w="25"/><text x="45.7507%" y="847.50"></text></g><g><title>do_futex (25 samples, 0.02%)</title><rect x="45.5007%" y="821" width="0.0171%" height="15" fill="rgb(240,140,22)" fg:x="66598" fg:w="25"/><text x="45.7507%" y="831.50"></text></g><g><title>futex_wait (25 samples, 0.02%)</title><rect x="45.5007%" y="805" width="0.0171%" height="15" fill="rgb(235,114,2)" fg:x="66598" fg:w="25"/><text x="45.7507%" y="815.50"></text></g><g><title>futex_wait_queue_me (25 samples, 0.02%)</title><rect x="45.5007%" y="789" width="0.0171%" height="15" fill="rgb(242,59,12)" fg:x="66598" fg:w="25"/><text x="45.7507%" y="799.50"></text></g><g><title>schedule (25 samples, 0.02%)</title><rect x="45.5007%" y="773" width="0.0171%" height="15" fill="rgb(252,134,9)" fg:x="66598" fg:w="25"/><text x="45.7507%" y="783.50"></text></g><g><title>__schedule (25 samples, 0.02%)</title><rect x="45.5007%" y="757" width="0.0171%" height="15" fill="rgb(236,4,44)" fg:x="66598" fg:w="25"/><text x="45.7507%" y="767.50"></text></g><g><title>__pthread_cond_wait (26 samples, 0.02%)</title><rect x="45.5007%" y="917" width="0.0178%" height="15" fill="rgb(254,172,41)" fg:x="66598" fg:w="26"/><text x="45.7507%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (26 samples, 0.02%)</title><rect x="45.5007%" y="901" width="0.0178%" height="15" fill="rgb(244,63,20)" fg:x="66598" fg:w="26"/><text x="45.7507%" y="911.50"></text></g><g><title>futex_wait_cancelable (26 samples, 0.02%)</title><rect x="45.5007%" y="885" width="0.0178%" height="15" fill="rgb(250,73,31)" fg:x="66598" fg:w="26"/><text x="45.7507%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="45.5007%" y="869" width="0.0178%" height="15" fill="rgb(241,38,36)" fg:x="66598" fg:w="26"/><text x="45.7507%" y="879.50"></text></g><g><title>Unsafe_Park (41 samples, 0.03%)</title><rect x="45.4911%" y="949" width="0.0280%" height="15" fill="rgb(245,211,2)" fg:x="66584" fg:w="41"/><text x="45.7411%" y="959.50"></text></g><g><title>Parker::park (41 samples, 0.03%)</title><rect x="45.4911%" y="933" width="0.0280%" height="15" fill="rgb(206,120,28)" fg:x="66584" fg:w="41"/><text x="45.7411%" y="943.50"></text></g><g><title>[perf-270039.map] (115 samples, 0.08%)</title><rect x="45.4440%" y="965" width="0.0786%" height="15" fill="rgb(211,59,34)" fg:x="66515" fg:w="115"/><text x="45.6940%" y="975.50"></text></g><g><title>ret_from_fork (15 samples, 0.01%)</title><rect x="45.5246%" y="949" width="0.0102%" height="15" fill="rgb(233,168,5)" fg:x="66633" fg:w="15"/><text x="45.7746%" y="959.50"></text></g><g><title>schedule_tail (15 samples, 0.01%)</title><rect x="45.5246%" y="933" width="0.0102%" height="15" fill="rgb(234,33,13)" fg:x="66633" fg:w="15"/><text x="45.7746%" y="943.50"></text></g><g><title>finish_task_switch (15 samples, 0.01%)</title><rect x="45.5246%" y="917" width="0.0102%" height="15" fill="rgb(231,150,26)" fg:x="66633" fg:w="15"/><text x="45.7746%" y="927.50"></text></g><g><title>__GI___clone (31 samples, 0.02%)</title><rect x="45.5232%" y="965" width="0.0212%" height="15" fill="rgb(217,191,4)" fg:x="66631" fg:w="31"/><text x="45.7732%" y="975.50"></text></g><g><title>globbing_pool-7 (160 samples, 0.11%)</title><rect x="45.4358%" y="981" width="0.1093%" height="15" fill="rgb(246,198,38)" fg:x="66503" fg:w="160"/><text x="45.6858%" y="991.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="45.5793%" y="741" width="0.0191%" height="15" fill="rgb(245,64,37)" fg:x="66713" fg:w="28"/><text x="45.8293%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.02%)</title><rect x="45.5793%" y="725" width="0.0191%" height="15" fill="rgb(250,30,36)" fg:x="66713" fg:w="28"/><text x="45.8293%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.02%)</title><rect x="45.5799%" y="709" width="0.0184%" height="15" fill="rgb(217,86,53)" fg:x="66714" fg:w="27"/><text x="45.8299%" y="719.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="45.5806%" y="693" width="0.0178%" height="15" fill="rgb(228,157,16)" fg:x="66715" fg:w="26"/><text x="45.8306%" y="703.50"></text></g><g><title>__x64_sys_futex (30 samples, 0.02%)</title><rect x="45.5786%" y="837" width="0.0205%" height="15" fill="rgb(217,59,31)" fg:x="66712" fg:w="30"/><text x="45.8286%" y="847.50"></text></g><g><title>do_futex (30 samples, 0.02%)</title><rect x="45.5786%" y="821" width="0.0205%" height="15" fill="rgb(237,138,41)" fg:x="66712" fg:w="30"/><text x="45.8286%" y="831.50"></text></g><g><title>futex_wait (30 samples, 0.02%)</title><rect x="45.5786%" y="805" width="0.0205%" height="15" fill="rgb(227,91,49)" fg:x="66712" fg:w="30"/><text x="45.8286%" y="815.50"></text></g><g><title>futex_wait_queue_me (30 samples, 0.02%)</title><rect x="45.5786%" y="789" width="0.0205%" height="15" fill="rgb(247,21,44)" fg:x="66712" fg:w="30"/><text x="45.8286%" y="799.50"></text></g><g><title>schedule (30 samples, 0.02%)</title><rect x="45.5786%" y="773" width="0.0205%" height="15" fill="rgb(219,210,51)" fg:x="66712" fg:w="30"/><text x="45.8286%" y="783.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="45.5786%" y="757" width="0.0205%" height="15" fill="rgb(209,140,6)" fg:x="66712" fg:w="30"/><text x="45.8286%" y="767.50"></text></g><g><title>do_syscall_64 (31 samples, 0.02%)</title><rect x="45.5786%" y="853" width="0.0212%" height="15" fill="rgb(221,188,24)" fg:x="66712" fg:w="31"/><text x="45.8286%" y="863.50"></text></g><g><title>Unsafe_Park (35 samples, 0.02%)</title><rect x="45.5765%" y="949" width="0.0239%" height="15" fill="rgb(232,154,20)" fg:x="66709" fg:w="35"/><text x="45.8265%" y="959.50"></text></g><g><title>Parker::park (34 samples, 0.02%)</title><rect x="45.5772%" y="933" width="0.0232%" height="15" fill="rgb(244,137,50)" fg:x="66710" fg:w="34"/><text x="45.8272%" y="943.50"></text></g><g><title>__pthread_cond_wait (32 samples, 0.02%)</title><rect x="45.5786%" y="917" width="0.0219%" height="15" fill="rgb(225,185,43)" fg:x="66712" fg:w="32"/><text x="45.8286%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.02%)</title><rect x="45.5786%" y="901" width="0.0219%" height="15" fill="rgb(213,205,38)" fg:x="66712" fg:w="32"/><text x="45.8286%" y="911.50"></text></g><g><title>futex_wait_cancelable (32 samples, 0.02%)</title><rect x="45.5786%" y="885" width="0.0219%" height="15" fill="rgb(236,73,12)" fg:x="66712" fg:w="32"/><text x="45.8286%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="45.5786%" y="869" width="0.0219%" height="15" fill="rgb(235,219,13)" fg:x="66712" fg:w="32"/><text x="45.8286%" y="879.50"></text></g><g><title>[perf-270039.map] (78 samples, 0.05%)</title><rect x="45.5513%" y="965" width="0.0533%" height="15" fill="rgb(218,59,36)" fg:x="66672" fg:w="78"/><text x="45.8013%" y="975.50"></text></g><g><title>ret_from_fork (20 samples, 0.01%)</title><rect x="45.6059%" y="949" width="0.0137%" height="15" fill="rgb(205,110,39)" fg:x="66752" fg:w="20"/><text x="45.8559%" y="959.50"></text></g><g><title>schedule_tail (20 samples, 0.01%)</title><rect x="45.6059%" y="933" width="0.0137%" height="15" fill="rgb(218,206,42)" fg:x="66752" fg:w="20"/><text x="45.8559%" y="943.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="45.6066%" y="917" width="0.0130%" height="15" fill="rgb(248,125,24)" fg:x="66753" fg:w="19"/><text x="45.8566%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="45.6073%" y="901" width="0.0123%" height="15" fill="rgb(242,28,27)" fg:x="66754" fg:w="18"/><text x="45.8573%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="45.6073%" y="885" width="0.0123%" height="15" fill="rgb(216,228,15)" fg:x="66754" fg:w="18"/><text x="45.8573%" y="895.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="45.6073%" y="869" width="0.0123%" height="15" fill="rgb(235,116,46)" fg:x="66754" fg:w="18"/><text x="45.8573%" y="879.50"></text></g><g><title>globbing_pool-8 (112 samples, 0.08%)</title><rect x="45.5451%" y="981" width="0.0765%" height="15" fill="rgb(224,18,32)" fg:x="66663" fg:w="112"/><text x="45.7951%" y="991.50"></text></g><g><title>__GI___clone (25 samples, 0.02%)</title><rect x="45.6045%" y="965" width="0.0171%" height="15" fill="rgb(252,5,12)" fg:x="66750" fg:w="25"/><text x="45.8545%" y="975.50"></text></g><g><title>JVM_StartThread (15 samples, 0.01%)</title><rect x="45.6715%" y="949" width="0.0102%" height="15" fill="rgb(251,36,5)" fg:x="66848" fg:w="15"/><text x="45.9215%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.02%)</title><rect x="45.6988%" y="725" width="0.0225%" height="15" fill="rgb(217,53,14)" fg:x="66888" fg:w="33"/><text x="45.9488%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.02%)</title><rect x="45.6988%" y="709" width="0.0225%" height="15" fill="rgb(215,86,45)" fg:x="66888" fg:w="33"/><text x="45.9488%" y="719.50"></text></g><g><title>native_write_msr (33 samples, 0.02%)</title><rect x="45.6988%" y="693" width="0.0225%" height="15" fill="rgb(242,169,11)" fg:x="66888" fg:w="33"/><text x="45.9488%" y="703.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="45.6988%" y="741" width="0.0239%" height="15" fill="rgb(211,213,45)" fg:x="66888" fg:w="35"/><text x="45.9488%" y="751.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="45.6975%" y="853" width="0.0266%" height="15" fill="rgb(205,88,11)" fg:x="66886" fg:w="39"/><text x="45.9475%" y="863.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.03%)</title><rect x="45.6975%" y="837" width="0.0266%" height="15" fill="rgb(252,69,26)" fg:x="66886" fg:w="39"/><text x="45.9475%" y="847.50"></text></g><g><title>do_futex (39 samples, 0.03%)</title><rect x="45.6975%" y="821" width="0.0266%" height="15" fill="rgb(246,123,37)" fg:x="66886" fg:w="39"/><text x="45.9475%" y="831.50"></text></g><g><title>futex_wait (39 samples, 0.03%)</title><rect x="45.6975%" y="805" width="0.0266%" height="15" fill="rgb(212,205,5)" fg:x="66886" fg:w="39"/><text x="45.9475%" y="815.50"></text></g><g><title>futex_wait_queue_me (38 samples, 0.03%)</title><rect x="45.6981%" y="789" width="0.0260%" height="15" fill="rgb(253,148,0)" fg:x="66887" fg:w="38"/><text x="45.9481%" y="799.50"></text></g><g><title>schedule (38 samples, 0.03%)</title><rect x="45.6981%" y="773" width="0.0260%" height="15" fill="rgb(239,22,4)" fg:x="66887" fg:w="38"/><text x="45.9481%" y="783.50"></text></g><g><title>__schedule (37 samples, 0.03%)</title><rect x="45.6988%" y="757" width="0.0253%" height="15" fill="rgb(226,26,53)" fg:x="66888" fg:w="37"/><text x="45.9488%" y="767.50"></text></g><g><title>Unsafe_Park (62 samples, 0.04%)</title><rect x="45.6824%" y="949" width="0.0424%" height="15" fill="rgb(225,229,45)" fg:x="66864" fg:w="62"/><text x="45.9324%" y="959.50"></text></g><g><title>Parker::park (62 samples, 0.04%)</title><rect x="45.6824%" y="933" width="0.0424%" height="15" fill="rgb(220,60,37)" fg:x="66864" fg:w="62"/><text x="45.9324%" y="943.50"></text></g><g><title>__pthread_cond_wait (40 samples, 0.03%)</title><rect x="45.6975%" y="917" width="0.0273%" height="15" fill="rgb(217,180,35)" fg:x="66886" fg:w="40"/><text x="45.9475%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (40 samples, 0.03%)</title><rect x="45.6975%" y="901" width="0.0273%" height="15" fill="rgb(229,7,53)" fg:x="66886" fg:w="40"/><text x="45.9475%" y="911.50"></text></g><g><title>futex_wait_cancelable (40 samples, 0.03%)</title><rect x="45.6975%" y="885" width="0.0273%" height="15" fill="rgb(254,137,3)" fg:x="66886" fg:w="40"/><text x="45.9475%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.03%)</title><rect x="45.6975%" y="869" width="0.0273%" height="15" fill="rgb(215,140,41)" fg:x="66886" fg:w="40"/><text x="45.9475%" y="879.50"></text></g><g><title>[perf-270039.map] (142 samples, 0.10%)</title><rect x="45.6312%" y="965" width="0.0970%" height="15" fill="rgb(250,80,15)" fg:x="66789" fg:w="142"/><text x="45.8812%" y="975.50"></text></g><g><title>__GI___clone (20 samples, 0.01%)</title><rect x="45.7330%" y="965" width="0.0137%" height="15" fill="rgb(252,191,6)" fg:x="66938" fg:w="20"/><text x="45.9830%" y="975.50"></text></g><g><title>free_unref_page_list (15 samples, 0.01%)</title><rect x="45.7617%" y="757" width="0.0102%" height="15" fill="rgb(246,217,18)" fg:x="66980" fg:w="15"/><text x="46.0117%" y="767.50"></text></g><g><title>tlb_flush_mmu (26 samples, 0.02%)</title><rect x="45.7555%" y="789" width="0.0178%" height="15" fill="rgb(223,93,7)" fg:x="66971" fg:w="26"/><text x="46.0055%" y="799.50"></text></g><g><title>release_pages (25 samples, 0.02%)</title><rect x="45.7562%" y="773" width="0.0171%" height="15" fill="rgb(225,55,52)" fg:x="66972" fg:w="25"/><text x="46.0062%" y="783.50"></text></g><g><title>mmput (39 samples, 0.03%)</title><rect x="45.7473%" y="853" width="0.0266%" height="15" fill="rgb(240,31,24)" fg:x="66959" fg:w="39"/><text x="45.9973%" y="863.50"></text></g><g><title>exit_mmap (39 samples, 0.03%)</title><rect x="45.7473%" y="837" width="0.0266%" height="15" fill="rgb(205,56,52)" fg:x="66959" fg:w="39"/><text x="45.9973%" y="847.50"></text></g><g><title>unmap_vmas (38 samples, 0.03%)</title><rect x="45.7480%" y="821" width="0.0260%" height="15" fill="rgb(246,146,12)" fg:x="66960" fg:w="38"/><text x="45.9980%" y="831.50"></text></g><g><title>unmap_page_range (38 samples, 0.03%)</title><rect x="45.7480%" y="805" width="0.0260%" height="15" fill="rgb(239,84,36)" fg:x="66960" fg:w="38"/><text x="45.9980%" y="815.50"></text></g><g><title>globbing_pool-9 (224 samples, 0.15%)</title><rect x="45.6216%" y="981" width="0.1530%" height="15" fill="rgb(207,41,40)" fg:x="66775" fg:w="224"/><text x="45.8716%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.03%)</title><rect x="45.7473%" y="965" width="0.0273%" height="15" fill="rgb(241,179,25)" fg:x="66959" fg:w="40"/><text x="45.9973%" y="975.50"></text></g><g><title>syscall_exit_to_user_mode (40 samples, 0.03%)</title><rect x="45.7473%" y="949" width="0.0273%" height="15" fill="rgb(210,0,34)" fg:x="66959" fg:w="40"/><text x="45.9973%" y="959.50"></text></g><g><title>exit_to_user_mode_prepare (40 samples, 0.03%)</title><rect x="45.7473%" y="933" width="0.0273%" height="15" fill="rgb(225,217,29)" fg:x="66959" fg:w="40"/><text x="45.9973%" y="943.50"></text></g><g><title>arch_do_signal (40 samples, 0.03%)</title><rect x="45.7473%" y="917" width="0.0273%" height="15" fill="rgb(216,191,38)" fg:x="66959" fg:w="40"/><text x="45.9973%" y="927.50"></text></g><g><title>get_signal (40 samples, 0.03%)</title><rect x="45.7473%" y="901" width="0.0273%" height="15" fill="rgb(232,140,52)" fg:x="66959" fg:w="40"/><text x="45.9973%" y="911.50"></text></g><g><title>do_group_exit (40 samples, 0.03%)</title><rect x="45.7473%" y="885" width="0.0273%" height="15" fill="rgb(223,158,51)" fg:x="66959" fg:w="40"/><text x="45.9973%" y="895.50"></text></g><g><title>do_exit (40 samples, 0.03%)</title><rect x="45.7473%" y="869" width="0.0273%" height="15" fill="rgb(235,29,51)" fg:x="66959" fg:w="40"/><text x="45.9973%" y="879.50"></text></g><g><title>[anon] (250 samples, 0.17%)</title><rect x="45.7870%" y="965" width="0.1708%" height="15" fill="rgb(215,181,18)" fg:x="67017" fg:w="250"/><text x="46.0370%" y="975.50"></text></g><g><title>[libunix_jni.so] (15 samples, 0.01%)</title><rect x="45.9578%" y="965" width="0.0102%" height="15" fill="rgb(227,125,34)" fg:x="67267" fg:w="15"/><text x="46.2078%" y="975.50"></text></g><g><title>ClassFileParser::parse_constant_pool (41 samples, 0.03%)</title><rect x="47.3385%" y="805" width="0.0280%" height="15" fill="rgb(230,197,49)" fg:x="69288" fg:w="41"/><text x="47.5885%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (39 samples, 0.03%)</title><rect x="47.3399%" y="789" width="0.0266%" height="15" fill="rgb(239,141,16)" fg:x="69290" fg:w="39"/><text x="47.5899%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (26 samples, 0.02%)</title><rect x="47.3488%" y="773" width="0.0178%" height="15" fill="rgb(225,105,43)" fg:x="69303" fg:w="26"/><text x="47.5988%" y="783.50"></text></g><g><title>ClassFileParser::ClassFileParser (61 samples, 0.04%)</title><rect x="47.3379%" y="837" width="0.0417%" height="15" fill="rgb(214,131,14)" fg:x="69287" fg:w="61"/><text x="47.5879%" y="847.50"></text></g><g><title>ClassFileParser::parse_stream (61 samples, 0.04%)</title><rect x="47.3379%" y="821" width="0.0417%" height="15" fill="rgb(229,177,11)" fg:x="69287" fg:w="61"/><text x="47.5879%" y="831.50"></text></g><g><title>ClassFileParser::create_instance_klass (16 samples, 0.01%)</title><rect x="47.3795%" y="837" width="0.0109%" height="15" fill="rgb(231,180,14)" fg:x="69348" fg:w="16"/><text x="47.6295%" y="847.50"></text></g><g><title>SystemDictionary::resolve_super_or_fail (18 samples, 0.01%)</title><rect x="47.3932%" y="821" width="0.0123%" height="15" fill="rgb(232,88,2)" fg:x="69368" fg:w="18"/><text x="47.6432%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (17 samples, 0.01%)</title><rect x="47.3939%" y="805" width="0.0116%" height="15" fill="rgb(205,220,8)" fg:x="69369" fg:w="17"/><text x="47.6439%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (16 samples, 0.01%)</title><rect x="47.3946%" y="789" width="0.0109%" height="15" fill="rgb(225,23,53)" fg:x="69370" fg:w="16"/><text x="47.6446%" y="799.50"></text></g><g><title>ClassLoader::load_class (15 samples, 0.01%)</title><rect x="47.3952%" y="773" width="0.0102%" height="15" fill="rgb(213,62,29)" fg:x="69371" fg:w="15"/><text x="47.6452%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (15 samples, 0.01%)</title><rect x="47.3952%" y="757" width="0.0102%" height="15" fill="rgb(227,75,7)" fg:x="69371" fg:w="15"/><text x="47.6452%" y="767.50"></text></g><g><title>KlassFactory::create_from_stream (104 samples, 0.07%)</title><rect x="47.3379%" y="853" width="0.0711%" height="15" fill="rgb(207,105,14)" fg:x="69287" fg:w="104"/><text x="47.5879%" y="863.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (27 samples, 0.02%)</title><rect x="47.3905%" y="837" width="0.0184%" height="15" fill="rgb(245,62,29)" fg:x="69364" fg:w="27"/><text x="47.6405%" y="847.50"></text></g><g><title>ClassLoader::load_class (121 samples, 0.08%)</title><rect x="47.3269%" y="869" width="0.0827%" height="15" fill="rgb(236,202,4)" fg:x="69271" fg:w="121"/><text x="47.5769%" y="879.50"></text></g><g><title>ConstantPool::klass_at_impl (139 samples, 0.09%)</title><rect x="47.3194%" y="933" width="0.0950%" height="15" fill="rgb(250,67,1)" fg:x="69260" fg:w="139"/><text x="47.5694%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_fail (139 samples, 0.09%)</title><rect x="47.3194%" y="917" width="0.0950%" height="15" fill="rgb(253,115,44)" fg:x="69260" fg:w="139"/><text x="47.5694%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (139 samples, 0.09%)</title><rect x="47.3194%" y="901" width="0.0950%" height="15" fill="rgb(251,139,18)" fg:x="69260" fg:w="139"/><text x="47.5694%" y="911.50"></text></g><g><title>SystemDictionary::load_instance_class (128 samples, 0.09%)</title><rect x="47.3269%" y="885" width="0.0875%" height="15" fill="rgb(218,22,32)" fg:x="69271" fg:w="128"/><text x="47.5769%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (22 samples, 0.02%)</title><rect x="47.4219%" y="901" width="0.0150%" height="15" fill="rgb(243,53,5)" fg:x="69410" fg:w="22"/><text x="47.6719%" y="911.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (29 samples, 0.02%)</title><rect x="47.4383%" y="853" width="0.0198%" height="15" fill="rgb(227,56,16)" fg:x="69434" fg:w="29"/><text x="47.6883%" y="863.50"></text></g><g><title>Method::link_method (32 samples, 0.02%)</title><rect x="47.4369%" y="885" width="0.0219%" height="15" fill="rgb(245,53,0)" fg:x="69432" fg:w="32"/><text x="47.6869%" y="895.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (30 samples, 0.02%)</title><rect x="47.4383%" y="869" width="0.0205%" height="15" fill="rgb(216,170,35)" fg:x="69434" fg:w="30"/><text x="47.6883%" y="879.50"></text></g><g><title>InstanceKlass::link_methods (34 samples, 0.02%)</title><rect x="47.4369%" y="901" width="0.0232%" height="15" fill="rgb(211,200,8)" fg:x="69432" fg:w="34"/><text x="47.6869%" y="911.50"></text></g><g><title>Rewriter::rewrite_bytecodes (24 samples, 0.02%)</title><rect x="47.4697%" y="869" width="0.0164%" height="15" fill="rgb(228,204,44)" fg:x="69480" fg:w="24"/><text x="47.7197%" y="879.50"></text></g><g><title>Rewriter::scan_method (16 samples, 0.01%)</title><rect x="47.4752%" y="853" width="0.0109%" height="15" fill="rgb(214,121,17)" fg:x="69488" fg:w="16"/><text x="47.7252%" y="863.50"></text></g><g><title>Rewriter::rewrite (42 samples, 0.03%)</title><rect x="47.4608%" y="901" width="0.0287%" height="15" fill="rgb(233,64,38)" fg:x="69467" fg:w="42"/><text x="47.7108%" y="911.50"></text></g><g><title>Rewriter::Rewriter (42 samples, 0.03%)</title><rect x="47.4608%" y="885" width="0.0287%" height="15" fill="rgb(253,54,19)" fg:x="69467" fg:w="42"/><text x="47.7108%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (126 samples, 0.09%)</title><rect x="47.4212%" y="917" width="0.0861%" height="15" fill="rgb(253,94,18)" fg:x="69409" fg:w="126"/><text x="47.6712%" y="927.50"></text></g><g><title>InterpreterRuntime::_new (277 samples, 0.19%)</title><rect x="47.3194%" y="949" width="0.1893%" height="15" fill="rgb(227,57,52)" fg:x="69260" fg:w="277"/><text x="47.5694%" y="959.50"></text></g><g><title>InstanceKlass::initialize_impl (131 samples, 0.09%)</title><rect x="47.4192%" y="933" width="0.0895%" height="15" fill="rgb(230,228,50)" fg:x="69406" fg:w="131"/><text x="47.6692%" y="943.50"></text></g><g><title>InterpreterRuntime::anewarray (27 samples, 0.02%)</title><rect x="47.5087%" y="949" width="0.0184%" height="15" fill="rgb(217,205,27)" fg:x="69537" fg:w="27"/><text x="47.7587%" y="959.50"></text></g><g><title>InterpreterRuntime::build_method_counters (21 samples, 0.01%)</title><rect x="47.5319%" y="949" width="0.0143%" height="15" fill="rgb(252,71,50)" fg:x="69571" fg:w="21"/><text x="47.7819%" y="959.50"></text></g><g><title>Method::build_method_counters (18 samples, 0.01%)</title><rect x="47.5339%" y="933" width="0.0123%" height="15" fill="rgb(209,86,4)" fg:x="69574" fg:w="18"/><text x="47.7839%" y="943.50"></text></g><g><title>CompileBroker::compile_method_base (18 samples, 0.01%)</title><rect x="47.5695%" y="837" width="0.0123%" height="15" fill="rgb(229,94,0)" fg:x="69626" fg:w="18"/><text x="47.8195%" y="847.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (52 samples, 0.04%)</title><rect x="47.5469%" y="949" width="0.0355%" height="15" fill="rgb(252,223,21)" fg:x="69593" fg:w="52"/><text x="47.7969%" y="959.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (52 samples, 0.04%)</title><rect x="47.5469%" y="933" width="0.0355%" height="15" fill="rgb(230,210,4)" fg:x="69593" fg:w="52"/><text x="47.7969%" y="943.50"></text></g><g><title>TieredThresholdPolicy::event (50 samples, 0.03%)</title><rect x="47.5483%" y="917" width="0.0342%" height="15" fill="rgb(240,149,38)" fg:x="69595" fg:w="50"/><text x="47.7983%" y="927.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (46 samples, 0.03%)</title><rect x="47.5510%" y="901" width="0.0314%" height="15" fill="rgb(254,105,20)" fg:x="69599" fg:w="46"/><text x="47.8010%" y="911.50"></text></g><g><title>TieredThresholdPolicy::compile (27 samples, 0.02%)</title><rect x="47.5640%" y="885" width="0.0184%" height="15" fill="rgb(253,87,46)" fg:x="69618" fg:w="27"/><text x="47.8140%" y="895.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (26 samples, 0.02%)</title><rect x="47.5647%" y="869" width="0.0178%" height="15" fill="rgb(253,116,33)" fg:x="69619" fg:w="26"/><text x="47.8147%" y="879.50"></text></g><g><title>CompileBroker::compile_method (26 samples, 0.02%)</title><rect x="47.5647%" y="853" width="0.0178%" height="15" fill="rgb(229,198,5)" fg:x="69619" fg:w="26"/><text x="47.8147%" y="863.50"></text></g><g><title>ConstantPool::klass_at_impl (17 samples, 0.01%)</title><rect x="47.5865%" y="933" width="0.0116%" height="15" fill="rgb(242,38,37)" fg:x="69651" fg:w="17"/><text x="47.8365%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_fail (16 samples, 0.01%)</title><rect x="47.5872%" y="917" width="0.0109%" height="15" fill="rgb(242,69,53)" fg:x="69652" fg:w="16"/><text x="47.8372%" y="927.50"></text></g><g><title>InterpreterRuntime::ldc (30 samples, 0.02%)</title><rect x="47.5824%" y="949" width="0.0205%" height="15" fill="rgb(249,80,16)" fg:x="69645" fg:w="30"/><text x="47.8324%" y="959.50"></text></g><g><title>ConstantPool::klass_ref_at (31 samples, 0.02%)</title><rect x="47.6303%" y="901" width="0.0212%" height="15" fill="rgb(206,128,11)" fg:x="69715" fg:w="31"/><text x="47.8803%" y="911.50"></text></g><g><title>SystemDictionary::resolve_or_fail (25 samples, 0.02%)</title><rect x="47.6344%" y="885" width="0.0171%" height="15" fill="rgb(212,35,20)" fg:x="69721" fg:w="25"/><text x="47.8844%" y="895.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (22 samples, 0.02%)</title><rect x="47.6364%" y="869" width="0.0150%" height="15" fill="rgb(236,79,13)" fg:x="69724" fg:w="22"/><text x="47.8864%" y="879.50"></text></g><g><title>SystemDictionary::load_instance_class (17 samples, 0.01%)</title><rect x="47.6398%" y="853" width="0.0116%" height="15" fill="rgb(233,123,3)" fg:x="69729" fg:w="17"/><text x="47.8898%" y="863.50"></text></g><g><title>InstanceKlass::find_field (15 samples, 0.01%)</title><rect x="47.6521%" y="885" width="0.0102%" height="15" fill="rgb(214,93,52)" fg:x="69747" fg:w="15"/><text x="47.9021%" y="895.50"></text></g><g><title>InstanceKlass::find_local_field (15 samples, 0.01%)</title><rect x="47.6521%" y="869" width="0.0102%" height="15" fill="rgb(251,37,40)" fg:x="69747" fg:w="15"/><text x="47.9021%" y="879.50"></text></g><g><title>Rewriter::rewrite (16 samples, 0.01%)</title><rect x="47.6699%" y="853" width="0.0109%" height="15" fill="rgb(227,80,54)" fg:x="69773" fg:w="16"/><text x="47.9199%" y="863.50"></text></g><g><title>Rewriter::Rewriter (16 samples, 0.01%)</title><rect x="47.6699%" y="837" width="0.0109%" height="15" fill="rgb(254,48,11)" fg:x="69773" fg:w="16"/><text x="47.9199%" y="847.50"></text></g><g><title>InstanceKlass::initialize_impl (30 samples, 0.02%)</title><rect x="47.6631%" y="885" width="0.0205%" height="15" fill="rgb(235,193,26)" fg:x="69763" fg:w="30"/><text x="47.9131%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (29 samples, 0.02%)</title><rect x="47.6637%" y="869" width="0.0198%" height="15" fill="rgb(229,99,21)" fg:x="69764" fg:w="29"/><text x="47.9137%" y="879.50"></text></g><g><title>LinkResolver::resolve_field_access (86 samples, 0.06%)</title><rect x="47.6303%" y="917" width="0.0588%" height="15" fill="rgb(211,140,41)" fg:x="69715" fg:w="86"/><text x="47.8803%" y="927.50"></text></g><g><title>LinkResolver::resolve_field (55 samples, 0.04%)</title><rect x="47.6515%" y="901" width="0.0376%" height="15" fill="rgb(240,227,30)" fg:x="69746" fg:w="55"/><text x="47.9015%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (103 samples, 0.07%)</title><rect x="47.6214%" y="933" width="0.0704%" height="15" fill="rgb(215,224,45)" fg:x="69702" fg:w="103"/><text x="47.8714%" y="943.50"></text></g><g><title>SymbolTable::lookup_only (27 samples, 0.02%)</title><rect x="47.7334%" y="741" width="0.0184%" height="15" fill="rgb(206,123,31)" fg:x="69866" fg:w="27"/><text x="47.9834%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool (34 samples, 0.02%)</title><rect x="47.7293%" y="773" width="0.0232%" height="15" fill="rgb(210,138,16)" fg:x="69860" fg:w="34"/><text x="47.9793%" y="783.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (32 samples, 0.02%)</title><rect x="47.7307%" y="757" width="0.0219%" height="15" fill="rgb(228,57,28)" fg:x="69862" fg:w="32"/><text x="47.9807%" y="767.50"></text></g><g><title>ClassFileParser::ClassFileParser (43 samples, 0.03%)</title><rect x="47.7293%" y="805" width="0.0294%" height="15" fill="rgb(242,170,10)" fg:x="69860" fg:w="43"/><text x="47.9793%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (43 samples, 0.03%)</title><rect x="47.7293%" y="789" width="0.0294%" height="15" fill="rgb(228,214,39)" fg:x="69860" fg:w="43"/><text x="47.9793%" y="799.50"></text></g><g><title>ClassLoader::load_class (58 samples, 0.04%)</title><rect x="47.7259%" y="837" width="0.0396%" height="15" fill="rgb(218,179,33)" fg:x="69855" fg:w="58"/><text x="47.9759%" y="847.50"></text></g><g><title>KlassFactory::create_from_stream (53 samples, 0.04%)</title><rect x="47.7293%" y="821" width="0.0362%" height="15" fill="rgb(235,193,39)" fg:x="69860" fg:w="53"/><text x="47.9793%" y="831.50"></text></g><g><title>SystemDictionary::load_instance_class (60 samples, 0.04%)</title><rect x="47.7259%" y="853" width="0.0410%" height="15" fill="rgb(219,221,36)" fg:x="69855" fg:w="60"/><text x="47.9759%" y="863.50"></text></g><g><title>ConstantPool::klass_ref_at (81 samples, 0.06%)</title><rect x="47.7123%" y="901" width="0.0553%" height="15" fill="rgb(248,218,19)" fg:x="69835" fg:w="81"/><text x="47.9623%" y="911.50"></text></g><g><title>SystemDictionary::resolve_or_fail (73 samples, 0.05%)</title><rect x="47.7177%" y="885" width="0.0499%" height="15" fill="rgb(205,50,9)" fg:x="69843" fg:w="73"/><text x="47.9677%" y="895.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (71 samples, 0.05%)</title><rect x="47.7191%" y="869" width="0.0485%" height="15" fill="rgb(238,81,28)" fg:x="69845" fg:w="71"/><text x="47.9691%" y="879.50"></text></g><g><title>LinkResolver::linktime_resolve_special_method (20 samples, 0.01%)</title><rect x="47.7676%" y="901" width="0.0137%" height="15" fill="rgb(235,110,19)" fg:x="69916" fg:w="20"/><text x="48.0176%" y="911.50"></text></g><g><title>LinkResolver::resolve_method (19 samples, 0.01%)</title><rect x="47.7683%" y="885" width="0.0130%" height="15" fill="rgb(214,7,14)" fg:x="69917" fg:w="19"/><text x="48.0183%" y="895.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (16 samples, 0.01%)</title><rect x="47.7813%" y="901" width="0.0109%" height="15" fill="rgb(211,77,3)" fg:x="69936" fg:w="16"/><text x="48.0313%" y="911.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (20 samples, 0.01%)</title><rect x="47.7977%" y="885" width="0.0137%" height="15" fill="rgb(229,5,9)" fg:x="69960" fg:w="20"/><text x="48.0477%" y="895.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (39 samples, 0.03%)</title><rect x="47.7922%" y="901" width="0.0266%" height="15" fill="rgb(225,90,11)" fg:x="69952" fg:w="39"/><text x="48.0422%" y="911.50"></text></g><g><title>InstanceKlass::link_methods (26 samples, 0.02%)</title><rect x="47.8236%" y="853" width="0.0178%" height="15" fill="rgb(242,56,8)" fg:x="69998" fg:w="26"/><text x="48.0736%" y="863.50"></text></g><g><title>Method::link_method (26 samples, 0.02%)</title><rect x="47.8236%" y="837" width="0.0178%" height="15" fill="rgb(249,212,39)" fg:x="69998" fg:w="26"/><text x="48.0736%" y="847.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (24 samples, 0.02%)</title><rect x="47.8250%" y="821" width="0.0164%" height="15" fill="rgb(236,90,9)" fg:x="70000" fg:w="24"/><text x="48.0750%" y="831.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (24 samples, 0.02%)</title><rect x="47.8250%" y="805" width="0.0164%" height="15" fill="rgb(206,88,35)" fg:x="70000" fg:w="24"/><text x="48.0750%" y="815.50"></text></g><g><title>Rewriter::rewrite_bytecodes (32 samples, 0.02%)</title><rect x="47.8475%" y="821" width="0.0219%" height="15" fill="rgb(205,126,30)" fg:x="70033" fg:w="32"/><text x="48.0975%" y="831.50"></text></g><g><title>Rewriter::scan_method (21 samples, 0.01%)</title><rect x="47.8550%" y="805" width="0.0143%" height="15" fill="rgb(230,176,12)" fg:x="70044" fg:w="21"/><text x="48.1050%" y="815.50"></text></g><g><title>Rewriter::rewrite (42 samples, 0.03%)</title><rect x="47.8414%" y="853" width="0.0287%" height="15" fill="rgb(243,19,9)" fg:x="70024" fg:w="42"/><text x="48.0914%" y="863.50"></text></g><g><title>Rewriter::Rewriter (41 samples, 0.03%)</title><rect x="47.8421%" y="837" width="0.0280%" height="15" fill="rgb(245,171,17)" fg:x="70025" fg:w="41"/><text x="48.0921%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (82 samples, 0.06%)</title><rect x="47.8209%" y="869" width="0.0560%" height="15" fill="rgb(227,52,21)" fg:x="69994" fg:w="82"/><text x="48.0709%" y="879.50"></text></g><g><title>InstanceKlass::initialize_impl (86 samples, 0.06%)</title><rect x="47.8195%" y="885" width="0.0588%" height="15" fill="rgb(238,69,14)" fg:x="69992" fg:w="86"/><text x="48.0695%" y="895.50"></text></g><g><title>LinkResolver::resolve_method (27 samples, 0.02%)</title><rect x="47.8790%" y="885" width="0.0184%" height="15" fill="rgb(241,156,39)" fg:x="70079" fg:w="27"/><text x="48.1290%" y="895.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (17 samples, 0.01%)</title><rect x="47.8858%" y="869" width="0.0116%" height="15" fill="rgb(212,227,28)" fg:x="70089" fg:w="17"/><text x="48.1358%" y="879.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (17 samples, 0.01%)</title><rect x="47.8858%" y="853" width="0.0116%" height="15" fill="rgb(209,118,27)" fg:x="70089" fg:w="17"/><text x="48.1358%" y="863.50"></text></g><g><title>InstanceKlass::find_method_index (17 samples, 0.01%)</title><rect x="47.8858%" y="837" width="0.0116%" height="15" fill="rgb(226,102,5)" fg:x="70089" fg:w="17"/><text x="48.1358%" y="847.50"></text></g><g><title>LinkResolver::resolve_static_call (116 samples, 0.08%)</title><rect x="47.8188%" y="901" width="0.0793%" height="15" fill="rgb(223,34,3)" fg:x="69991" fg:w="116"/><text x="48.0688%" y="911.50"></text></g><g><title>LinkResolver::resolve_invoke (278 samples, 0.19%)</title><rect x="47.7116%" y="917" width="0.1899%" height="15" fill="rgb(221,81,38)" fg:x="69834" fg:w="278"/><text x="47.9616%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (321 samples, 0.22%)</title><rect x="47.6918%" y="933" width="0.2193%" height="15" fill="rgb(236,219,28)" fg:x="69805" fg:w="321"/><text x="47.9418%" y="943.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (18 samples, 0.01%)</title><rect x="47.9131%" y="869" width="0.0123%" height="15" fill="rgb(213,200,14)" fg:x="70129" fg:w="18"/><text x="48.1631%" y="879.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (17 samples, 0.01%)</title><rect x="47.9138%" y="853" width="0.0116%" height="15" fill="rgb(240,33,19)" fg:x="70130" fg:w="17"/><text x="48.1638%" y="863.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (30 samples, 0.02%)</title><rect x="47.9124%" y="885" width="0.0205%" height="15" fill="rgb(233,113,27)" fg:x="70128" fg:w="30"/><text x="48.1624%" y="895.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (39 samples, 0.03%)</title><rect x="47.9111%" y="933" width="0.0266%" height="15" fill="rgb(220,221,18)" fg:x="70126" fg:w="39"/><text x="48.1611%" y="943.50"></text></g><g><title>LinkResolver::resolve_invoke (37 samples, 0.03%)</title><rect x="47.9124%" y="917" width="0.0253%" height="15" fill="rgb(238,92,8)" fg:x="70128" fg:w="37"/><text x="48.1624%" y="927.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (37 samples, 0.03%)</title><rect x="47.9124%" y="901" width="0.0253%" height="15" fill="rgb(222,164,16)" fg:x="70128" fg:w="37"/><text x="48.1624%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (475 samples, 0.32%)</title><rect x="47.6152%" y="949" width="0.3245%" height="15" fill="rgb(241,119,3)" fg:x="69693" fg:w="475"/><text x="47.8652%" y="959.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (20 samples, 0.01%)</title><rect x="47.9411%" y="933" width="0.0137%" height="15" fill="rgb(241,44,8)" fg:x="70170" fg:w="20"/><text x="48.1911%" y="943.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (20 samples, 0.01%)</title><rect x="47.9411%" y="917" width="0.0137%" height="15" fill="rgb(230,36,40)" fg:x="70170" fg:w="20"/><text x="48.1911%" y="927.50"></text></g><g><title>ConstantPool::string_at_impl (18 samples, 0.01%)</title><rect x="47.9425%" y="901" width="0.0123%" height="15" fill="rgb(243,16,36)" fg:x="70172" fg:w="18"/><text x="48.1925%" y="911.50"></text></g><g><title>StringTable::intern (18 samples, 0.01%)</title><rect x="47.9425%" y="885" width="0.0123%" height="15" fill="rgb(231,4,26)" fg:x="70172" fg:w="18"/><text x="48.1925%" y="895.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (24 samples, 0.02%)</title><rect x="47.9405%" y="949" width="0.0164%" height="15" fill="rgb(240,9,31)" fg:x="70169" fg:w="24"/><text x="48.1905%" y="959.50"></text></g><g><title>JVM_FindLoadedClass (23 samples, 0.02%)</title><rect x="47.9814%" y="949" width="0.0157%" height="15" fill="rgb(207,173,15)" fg:x="70229" fg:w="23"/><text x="48.2314%" y="959.50"></text></g><g><title>JVM_GetClassDeclaredConstructors (20 samples, 0.01%)</title><rect x="48.0040%" y="949" width="0.0137%" height="15" fill="rgb(224,192,53)" fg:x="70262" fg:w="20"/><text x="48.2540%" y="959.50"></text></g><g><title>get_class_declared_methods_helper (20 samples, 0.01%)</title><rect x="48.0040%" y="933" width="0.0137%" height="15" fill="rgb(223,67,28)" fg:x="70262" fg:w="20"/><text x="48.2540%" y="943.50"></text></g><g><title>get_parameter_types (22 samples, 0.02%)</title><rect x="48.0341%" y="901" width="0.0150%" height="15" fill="rgb(211,20,47)" fg:x="70306" fg:w="22"/><text x="48.2841%" y="911.50"></text></g><g><title>JVM_GetClassDeclaredMethods (46 samples, 0.03%)</title><rect x="48.0197%" y="949" width="0.0314%" height="15" fill="rgb(240,228,2)" fg:x="70285" fg:w="46"/><text x="48.2697%" y="959.50"></text></g><g><title>get_class_declared_methods_helper (45 samples, 0.03%)</title><rect x="48.0204%" y="933" width="0.0307%" height="15" fill="rgb(248,151,12)" fg:x="70286" fg:w="45"/><text x="48.2704%" y="943.50"></text></g><g><title>Reflection::new_method (35 samples, 0.02%)</title><rect x="48.0272%" y="917" width="0.0239%" height="15" fill="rgb(244,8,39)" fg:x="70296" fg:w="35"/><text x="48.2772%" y="927.50"></text></g><g><title>StringTable::do_intern (15 samples, 0.01%)</title><rect x="48.0580%" y="901" width="0.0102%" height="15" fill="rgb(222,26,8)" fg:x="70341" fg:w="15"/><text x="48.3080%" y="911.50"></text></g><g><title>JVM_InitClassName (23 samples, 0.02%)</title><rect x="48.0559%" y="949" width="0.0157%" height="15" fill="rgb(213,106,44)" fg:x="70338" fg:w="23"/><text x="48.3059%" y="959.50"></text></g><g><title>java_lang_Class::name (23 samples, 0.02%)</title><rect x="48.0559%" y="933" width="0.0157%" height="15" fill="rgb(214,129,20)" fg:x="70338" fg:w="23"/><text x="48.3059%" y="943.50"></text></g><g><title>StringTable::intern (20 samples, 0.01%)</title><rect x="48.0580%" y="917" width="0.0137%" height="15" fill="rgb(212,32,13)" fg:x="70341" fg:w="20"/><text x="48.3080%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="48.0908%" y="837" width="0.0164%" height="15" fill="rgb(208,168,33)" fg:x="70389" fg:w="24"/><text x="48.3408%" y="847.50"></text></g><g><title>do_syscall_64 (24 samples, 0.02%)</title><rect x="48.0908%" y="821" width="0.0164%" height="15" fill="rgb(231,207,8)" fg:x="70389" fg:w="24"/><text x="48.3408%" y="831.50"></text></g><g><title>__x64_sys_futex (24 samples, 0.02%)</title><rect x="48.0908%" y="805" width="0.0164%" height="15" fill="rgb(235,219,23)" fg:x="70389" fg:w="24"/><text x="48.3408%" y="815.50"></text></g><g><title>do_futex (24 samples, 0.02%)</title><rect x="48.0908%" y="789" width="0.0164%" height="15" fill="rgb(226,216,26)" fg:x="70389" fg:w="24"/><text x="48.3408%" y="799.50"></text></g><g><title>futex_wait (24 samples, 0.02%)</title><rect x="48.0908%" y="773" width="0.0164%" height="15" fill="rgb(239,137,16)" fg:x="70389" fg:w="24"/><text x="48.3408%" y="783.50"></text></g><g><title>futex_wait_queue_me (24 samples, 0.02%)</title><rect x="48.0908%" y="757" width="0.0164%" height="15" fill="rgb(207,12,36)" fg:x="70389" fg:w="24"/><text x="48.3408%" y="767.50"></text></g><g><title>schedule (24 samples, 0.02%)</title><rect x="48.0908%" y="741" width="0.0164%" height="15" fill="rgb(210,214,24)" fg:x="70389" fg:w="24"/><text x="48.3408%" y="751.50"></text></g><g><title>__schedule (24 samples, 0.02%)</title><rect x="48.0908%" y="725" width="0.0164%" height="15" fill="rgb(206,56,30)" fg:x="70389" fg:w="24"/><text x="48.3408%" y="735.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="48.0908%" y="709" width="0.0164%" height="15" fill="rgb(228,143,26)" fg:x="70389" fg:w="24"/><text x="48.3408%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (22 samples, 0.02%)</title><rect x="48.0921%" y="693" width="0.0150%" height="15" fill="rgb(216,218,46)" fg:x="70391" fg:w="22"/><text x="48.3421%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (22 samples, 0.02%)</title><rect x="48.0921%" y="677" width="0.0150%" height="15" fill="rgb(206,6,19)" fg:x="70391" fg:w="22"/><text x="48.3421%" y="687.50"></text></g><g><title>native_write_msr (22 samples, 0.02%)</title><rect x="48.0921%" y="661" width="0.0150%" height="15" fill="rgb(239,177,51)" fg:x="70391" fg:w="22"/><text x="48.3421%" y="671.50"></text></g><g><title>JVM_MonitorWait (34 samples, 0.02%)</title><rect x="48.0846%" y="949" width="0.0232%" height="15" fill="rgb(216,55,25)" fg:x="70380" fg:w="34"/><text x="48.3346%" y="959.50"></text></g><g><title>ObjectSynchronizer::wait (34 samples, 0.02%)</title><rect x="48.0846%" y="933" width="0.0232%" height="15" fill="rgb(231,163,29)" fg:x="70380" fg:w="34"/><text x="48.3346%" y="943.50"></text></g><g><title>ObjectMonitor::wait (33 samples, 0.02%)</title><rect x="48.0853%" y="917" width="0.0225%" height="15" fill="rgb(232,149,50)" fg:x="70381" fg:w="33"/><text x="48.3353%" y="927.50"></text></g><g><title>os::PlatformEvent::park (33 samples, 0.02%)</title><rect x="48.0853%" y="901" width="0.0225%" height="15" fill="rgb(223,142,48)" fg:x="70381" fg:w="33"/><text x="48.3353%" y="911.50"></text></g><g><title>__pthread_cond_wait (26 samples, 0.02%)</title><rect x="48.0901%" y="885" width="0.0178%" height="15" fill="rgb(245,83,23)" fg:x="70388" fg:w="26"/><text x="48.3401%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (26 samples, 0.02%)</title><rect x="48.0901%" y="869" width="0.0178%" height="15" fill="rgb(224,63,2)" fg:x="70388" fg:w="26"/><text x="48.3401%" y="879.50"></text></g><g><title>futex_wait_cancelable (26 samples, 0.02%)</title><rect x="48.0901%" y="853" width="0.0178%" height="15" fill="rgb(218,65,53)" fg:x="70388" fg:w="26"/><text x="48.3401%" y="863.50"></text></g><g><title>JVM_StartThread (21 samples, 0.01%)</title><rect x="48.1140%" y="949" width="0.0143%" height="15" fill="rgb(221,84,29)" fg:x="70423" fg:w="21"/><text x="48.3640%" y="959.50"></text></g><g><title>Java_java_io_RandomAccessFile_seek0 (21 samples, 0.01%)</title><rect x="48.1304%" y="949" width="0.0143%" height="15" fill="rgb(234,0,32)" fg:x="70447" fg:w="21"/><text x="48.3804%" y="959.50"></text></g><g><title>AllocateHeap (25 samples, 0.02%)</title><rect x="48.1987%" y="773" width="0.0171%" height="15" fill="rgb(206,20,16)" fg:x="70547" fg:w="25"/><text x="48.4487%" y="783.50"></text></g><g><title>os::malloc (24 samples, 0.02%)</title><rect x="48.1994%" y="757" width="0.0164%" height="15" fill="rgb(244,172,18)" fg:x="70548" fg:w="24"/><text x="48.4494%" y="767.50"></text></g><g><title>__GI___libc_malloc (23 samples, 0.02%)</title><rect x="48.2001%" y="741" width="0.0157%" height="15" fill="rgb(254,133,1)" fg:x="70549" fg:w="23"/><text x="48.4501%" y="751.50"></text></g><g><title>SymbolTable::add (63 samples, 0.04%)</title><rect x="48.1864%" y="805" width="0.0430%" height="15" fill="rgb(222,206,41)" fg:x="70529" fg:w="63"/><text x="48.4364%" y="815.50"></text></g><g><title>SymbolTable::basic_add (61 samples, 0.04%)</title><rect x="48.1878%" y="789" width="0.0417%" height="15" fill="rgb(212,3,42)" fg:x="70531" fg:w="61"/><text x="48.4378%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (418 samples, 0.29%)</title><rect x="48.2295%" y="805" width="0.2856%" height="15" fill="rgb(241,11,4)" fg:x="70592" fg:w="418"/><text x="48.4795%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (504 samples, 0.34%)</title><rect x="48.1721%" y="821" width="0.3443%" height="15" fill="rgb(205,19,26)" fg:x="70508" fg:w="504"/><text x="48.4221%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool (521 samples, 0.36%)</title><rect x="48.1652%" y="837" width="0.3560%" height="15" fill="rgb(210,179,32)" fg:x="70498" fg:w="521"/><text x="48.4152%" y="847.50"></text></g><g><title>ClassFileParser::parse_interfaces (15 samples, 0.01%)</title><rect x="48.5260%" y="837" width="0.0102%" height="15" fill="rgb(227,116,49)" fg:x="71026" fg:w="15"/><text x="48.7760%" y="847.50"></text></g><g><title>SystemDictionary::resolve_super_or_fail (15 samples, 0.01%)</title><rect x="48.5260%" y="821" width="0.0102%" height="15" fill="rgb(211,146,6)" fg:x="71026" fg:w="15"/><text x="48.7760%" y="831.50"></text></g><g><title>ClassFileParser::copy_localvariable_table (21 samples, 0.01%)</title><rect x="48.5649%" y="805" width="0.0143%" height="15" fill="rgb(219,44,39)" fg:x="71083" fg:w="21"/><text x="48.8149%" y="815.50"></text></g><g><title>ConstMethod::allocate (21 samples, 0.01%)</title><rect x="48.5943%" y="789" width="0.0143%" height="15" fill="rgb(234,128,11)" fg:x="71126" fg:w="21"/><text x="48.8443%" y="799.50"></text></g><g><title>Metaspace::allocate (18 samples, 0.01%)</title><rect x="48.5963%" y="773" width="0.0123%" height="15" fill="rgb(220,183,53)" fg:x="71129" fg:w="18"/><text x="48.8463%" y="783.50"></text></g><g><title>Method::allocate (43 samples, 0.03%)</title><rect x="48.5943%" y="805" width="0.0294%" height="15" fill="rgb(213,219,32)" fg:x="71126" fg:w="43"/><text x="48.8443%" y="815.50"></text></g><g><title>Metaspace::allocate (22 samples, 0.02%)</title><rect x="48.6086%" y="789" width="0.0150%" height="15" fill="rgb(232,156,16)" fg:x="71147" fg:w="22"/><text x="48.8586%" y="799.50"></text></g><g><title>Method::compute_size_of_parameters (15 samples, 0.01%)</title><rect x="48.6237%" y="805" width="0.0102%" height="15" fill="rgb(246,135,34)" fg:x="71169" fg:w="15"/><text x="48.8737%" y="815.50"></text></g><g><title>ClassFileParser::parse_method (152 samples, 0.10%)</title><rect x="48.5369%" y="821" width="0.1038%" height="15" fill="rgb(241,99,0)" fg:x="71042" fg:w="152"/><text x="48.7869%" y="831.50"></text></g><g><title>ClassFileParser::parse_methods (157 samples, 0.11%)</title><rect x="48.5362%" y="837" width="0.1073%" height="15" fill="rgb(222,103,45)" fg:x="71041" fg:w="157"/><text x="48.7862%" y="847.50"></text></g><g><title>[libc-2.31.so] (17 samples, 0.01%)</title><rect x="48.6462%" y="805" width="0.0116%" height="15" fill="rgb(212,57,4)" fg:x="71202" fg:w="17"/><text x="48.8962%" y="815.50"></text></g><g><title>asm_exc_page_fault (15 samples, 0.01%)</title><rect x="48.6476%" y="789" width="0.0102%" height="15" fill="rgb(215,68,47)" fg:x="71204" fg:w="15"/><text x="48.8976%" y="799.50"></text></g><g><title>ConstantPool::allocate (26 samples, 0.02%)</title><rect x="48.6442%" y="837" width="0.0178%" height="15" fill="rgb(230,84,2)" fg:x="71199" fg:w="26"/><text x="48.8942%" y="847.50"></text></g><g><title>Metaspace::allocate (25 samples, 0.02%)</title><rect x="48.6448%" y="821" width="0.0171%" height="15" fill="rgb(220,102,14)" fg:x="71200" fg:w="25"/><text x="48.8948%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (741 samples, 0.51%)</title><rect x="48.1563%" y="869" width="0.5063%" height="15" fill="rgb(240,10,32)" fg:x="70485" fg:w="741"/><text x="48.4063%" y="879.50"></text></g><g><title>ClassFileParser::parse_stream (740 samples, 0.51%)</title><rect x="48.1570%" y="853" width="0.5056%" height="15" fill="rgb(215,47,27)" fg:x="70486" fg:w="740"/><text x="48.4070%" y="863.50"></text></g><g><title>InstanceKlass::find_method (27 samples, 0.02%)</title><rect x="48.6968%" y="805" width="0.0184%" height="15" fill="rgb(233,188,43)" fg:x="71276" fg:w="27"/><text x="48.9468%" y="815.50"></text></g><g><title>InstanceKlass::find_method_index (23 samples, 0.02%)</title><rect x="48.6995%" y="789" width="0.0157%" height="15" fill="rgb(253,190,1)" fg:x="71280" fg:w="23"/><text x="48.9495%" y="799.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (79 samples, 0.05%)</title><rect x="48.6811%" y="821" width="0.0540%" height="15" fill="rgb(206,114,52)" fg:x="71253" fg:w="79"/><text x="48.9311%" y="831.50"></text></g><g><title>resource_allocate_bytes (27 samples, 0.02%)</title><rect x="48.7166%" y="805" width="0.0184%" height="15" fill="rgb(233,120,37)" fg:x="71305" fg:w="27"/><text x="48.9666%" y="815.50"></text></g><g><title>DefaultMethods::generate_default_methods (120 samples, 0.08%)</title><rect x="48.6667%" y="837" width="0.0820%" height="15" fill="rgb(214,52,39)" fg:x="71232" fg:w="120"/><text x="48.9167%" y="847.50"></text></g><g><title>ClassFileParser::fill_instance_klass (171 samples, 0.12%)</title><rect x="48.6626%" y="853" width="0.1168%" height="15" fill="rgb(223,80,29)" fg:x="71226" fg:w="171"/><text x="48.9126%" y="863.50"></text></g><g><title>ClassFileParser::create_instance_klass (181 samples, 0.12%)</title><rect x="48.6626%" y="869" width="0.1237%" height="15" fill="rgb(230,101,40)" fg:x="71226" fg:w="181"/><text x="48.9126%" y="879.50"></text></g><g><title>klassVtable::compute_vtable_size_and_num_mirandas (21 samples, 0.01%)</title><rect x="48.8136%" y="853" width="0.0143%" height="15" fill="rgb(219,211,8)" fg:x="71447" fg:w="21"/><text x="49.0636%" y="863.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (64 samples, 0.04%)</title><rect x="48.7863%" y="869" width="0.0437%" height="15" fill="rgb(252,126,28)" fg:x="71407" fg:w="64"/><text x="49.0363%" y="879.50"></text></g><g><title>KlassFactory::create_from_stream (988 samples, 0.68%)</title><rect x="48.1557%" y="885" width="0.6750%" height="15" fill="rgb(215,56,38)" fg:x="70484" fg:w="988"/><text x="48.4057%" y="895.50"></text></g><g><title>CodeCache::flush_dependents_on (24 samples, 0.02%)</title><rect x="48.8314%" y="853" width="0.0164%" height="15" fill="rgb(249,55,44)" fg:x="71473" fg:w="24"/><text x="49.0814%" y="863.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (42 samples, 0.03%)</title><rect x="48.8307%" y="885" width="0.0287%" height="15" fill="rgb(220,221,32)" fg:x="71472" fg:w="42"/><text x="49.0807%" y="895.50"></text></g><g><title>SystemDictionary::define_instance_class (42 samples, 0.03%)</title><rect x="48.8307%" y="869" width="0.0287%" height="15" fill="rgb(212,216,41)" fg:x="71472" fg:w="42"/><text x="49.0807%" y="879.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,034 samples, 0.71%)</title><rect x="48.1550%" y="901" width="0.7064%" height="15" fill="rgb(228,213,43)" fg:x="70483" fg:w="1034"/><text x="48.4050%" y="911.50"></text></g><g><title>JVM_DefineClassWithSource (1,043 samples, 0.71%)</title><rect x="48.1502%" y="933" width="0.7126%" height="15" fill="rgb(211,31,26)" fg:x="70476" fg:w="1043"/><text x="48.4002%" y="943.50"></text></g><g><title>jvm_define_class_common (1,043 samples, 0.71%)</title><rect x="48.1502%" y="917" width="0.7126%" height="15" fill="rgb(229,202,19)" fg:x="70476" fg:w="1043"/><text x="48.4002%" y="927.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,074 samples, 0.73%)</title><rect x="48.1495%" y="949" width="0.7338%" height="15" fill="rgb(229,105,46)" fg:x="70475" fg:w="1074"/><text x="48.3995%" y="959.50"></text></g><g><title>ClassFileParser::ClassFileParser (20 samples, 0.01%)</title><rect x="48.9031%" y="837" width="0.0137%" height="15" fill="rgb(235,108,1)" fg:x="71578" fg:w="20"/><text x="49.1531%" y="847.50"></text></g><g><title>ClassFileParser::parse_stream (20 samples, 0.01%)</title><rect x="48.9031%" y="821" width="0.0137%" height="15" fill="rgb(245,111,35)" fg:x="71578" fg:w="20"/><text x="49.1531%" y="831.50"></text></g><g><title>ClassLoader::load_class (38 samples, 0.03%)</title><rect x="48.8935%" y="869" width="0.0260%" height="15" fill="rgb(219,185,31)" fg:x="71564" fg:w="38"/><text x="49.1435%" y="879.50"></text></g><g><title>KlassFactory::create_from_stream (24 samples, 0.02%)</title><rect x="48.9031%" y="853" width="0.0164%" height="15" fill="rgb(214,4,43)" fg:x="71578" fg:w="24"/><text x="49.1531%" y="863.50"></text></g><g><title>SystemDictionary::resolve_or_null (63 samples, 0.04%)</title><rect x="48.8867%" y="917" width="0.0430%" height="15" fill="rgb(235,227,40)" fg:x="71554" fg:w="63"/><text x="49.1367%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (62 samples, 0.04%)</title><rect x="48.8874%" y="901" width="0.0424%" height="15" fill="rgb(230,88,30)" fg:x="71555" fg:w="62"/><text x="49.1374%" y="911.50"></text></g><g><title>SystemDictionary::load_instance_class (53 samples, 0.04%)</title><rect x="48.8935%" y="885" width="0.0362%" height="15" fill="rgb(216,217,1)" fg:x="71564" fg:w="53"/><text x="49.1435%" y="895.50"></text></g><g><title>JVM_FindClassFromBootLoader (69 samples, 0.05%)</title><rect x="48.8840%" y="933" width="0.0471%" height="15" fill="rgb(248,139,50)" fg:x="71550" fg:w="69"/><text x="49.1340%" y="943.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (86 samples, 0.06%)</title><rect x="48.8833%" y="949" width="0.0588%" height="15" fill="rgb(233,1,21)" fg:x="71549" fg:w="86"/><text x="49.1333%" y="959.50"></text></g><g><title>Java_java_lang_Class_forName0 (22 samples, 0.02%)</title><rect x="48.9420%" y="949" width="0.0150%" height="15" fill="rgb(215,183,12)" fg:x="71635" fg:w="22"/><text x="49.1920%" y="959.50"></text></g><g><title>MethodHandles::resolve_MemberName (16 samples, 0.01%)</title><rect x="48.9707%" y="933" width="0.0109%" height="15" fill="rgb(229,104,42)" fg:x="71677" fg:w="16"/><text x="49.2207%" y="943.50"></text></g><g><title>MHN_resolve_Mem (17 samples, 0.01%)</title><rect x="48.9707%" y="949" width="0.0116%" height="15" fill="rgb(243,34,48)" fg:x="71677" fg:w="17"/><text x="49.2207%" y="959.50"></text></g><g><title>InstanceKlass::link_class_impl (16 samples, 0.01%)</title><rect x="49.0110%" y="917" width="0.0109%" height="15" fill="rgb(239,11,44)" fg:x="71736" fg:w="16"/><text x="49.2610%" y="927.50"></text></g><g><title>ClassFileParser::parse_constant_pool (19 samples, 0.01%)</title><rect x="49.0233%" y="869" width="0.0130%" height="15" fill="rgb(231,98,35)" fg:x="71754" fg:w="19"/><text x="49.2733%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (19 samples, 0.01%)</title><rect x="49.0233%" y="853" width="0.0130%" height="15" fill="rgb(233,28,25)" fg:x="71754" fg:w="19"/><text x="49.2733%" y="863.50"></text></g><g><title>ClassFileParser::ClassFileParser (33 samples, 0.02%)</title><rect x="49.0227%" y="901" width="0.0225%" height="15" fill="rgb(234,123,11)" fg:x="71753" fg:w="33"/><text x="49.2727%" y="911.50"></text></g><g><title>ClassFileParser::parse_stream (33 samples, 0.02%)</title><rect x="49.0227%" y="885" width="0.0225%" height="15" fill="rgb(220,69,3)" fg:x="71753" fg:w="33"/><text x="49.2727%" y="895.50"></text></g><g><title>ClassFileParser::create_instance_klass (15 samples, 0.01%)</title><rect x="49.0452%" y="901" width="0.0102%" height="15" fill="rgb(214,64,36)" fg:x="71786" fg:w="15"/><text x="49.2952%" y="911.50"></text></g><g><title>KlassFactory::create_from_stream (54 samples, 0.04%)</title><rect x="49.0227%" y="917" width="0.0369%" height="15" fill="rgb(211,138,32)" fg:x="71753" fg:w="54"/><text x="49.2727%" y="927.50"></text></g><g><title>SystemDictionary::parse_stream (75 samples, 0.05%)</title><rect x="49.0097%" y="933" width="0.0512%" height="15" fill="rgb(213,118,47)" fg:x="71734" fg:w="75"/><text x="49.2597%" y="943.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (79 samples, 0.05%)</title><rect x="49.0083%" y="949" width="0.0540%" height="15" fill="rgb(243,124,49)" fg:x="71732" fg:w="79"/><text x="49.2583%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="49.0753%" y="725" width="0.0130%" height="15" fill="rgb(221,30,28)" fg:x="71830" fg:w="19"/><text x="49.3253%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="49.0753%" y="709" width="0.0130%" height="15" fill="rgb(246,37,13)" fg:x="71830" fg:w="19"/><text x="49.3253%" y="719.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="49.0760%" y="693" width="0.0123%" height="15" fill="rgb(249,66,14)" fg:x="71831" fg:w="18"/><text x="49.3260%" y="703.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="49.0746%" y="853" width="0.0143%" height="15" fill="rgb(213,166,5)" fg:x="71829" fg:w="21"/><text x="49.3246%" y="863.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.01%)</title><rect x="49.0746%" y="837" width="0.0143%" height="15" fill="rgb(221,66,24)" fg:x="71829" fg:w="21"/><text x="49.3246%" y="847.50"></text></g><g><title>do_futex (21 samples, 0.01%)</title><rect x="49.0746%" y="821" width="0.0143%" height="15" fill="rgb(210,132,17)" fg:x="71829" fg:w="21"/><text x="49.3246%" y="831.50"></text></g><g><title>futex_wait (21 samples, 0.01%)</title><rect x="49.0746%" y="805" width="0.0143%" height="15" fill="rgb(243,202,5)" fg:x="71829" fg:w="21"/><text x="49.3246%" y="815.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.01%)</title><rect x="49.0746%" y="789" width="0.0143%" height="15" fill="rgb(233,70,48)" fg:x="71829" fg:w="21"/><text x="49.3246%" y="799.50"></text></g><g><title>schedule (21 samples, 0.01%)</title><rect x="49.0746%" y="773" width="0.0143%" height="15" fill="rgb(238,41,26)" fg:x="71829" fg:w="21"/><text x="49.3246%" y="783.50"></text></g><g><title>__schedule (20 samples, 0.01%)</title><rect x="49.0753%" y="757" width="0.0137%" height="15" fill="rgb(241,19,31)" fg:x="71830" fg:w="20"/><text x="49.3253%" y="767.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="49.0753%" y="741" width="0.0137%" height="15" fill="rgb(214,76,10)" fg:x="71830" fg:w="20"/><text x="49.3253%" y="751.50"></text></g><g><title>Unsafe_Park (29 samples, 0.02%)</title><rect x="49.0698%" y="949" width="0.0198%" height="15" fill="rgb(254,202,22)" fg:x="71822" fg:w="29"/><text x="49.3198%" y="959.50"></text></g><g><title>Parker::park (29 samples, 0.02%)</title><rect x="49.0698%" y="933" width="0.0198%" height="15" fill="rgb(214,72,24)" fg:x="71822" fg:w="29"/><text x="49.3198%" y="943.50"></text></g><g><title>__pthread_cond_wait (22 samples, 0.02%)</title><rect x="49.0746%" y="917" width="0.0150%" height="15" fill="rgb(221,92,46)" fg:x="71829" fg:w="22"/><text x="49.3246%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (22 samples, 0.02%)</title><rect x="49.0746%" y="901" width="0.0150%" height="15" fill="rgb(246,13,50)" fg:x="71829" fg:w="22"/><text x="49.3246%" y="911.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.02%)</title><rect x="49.0746%" y="885" width="0.0150%" height="15" fill="rgb(240,165,38)" fg:x="71829" fg:w="22"/><text x="49.3246%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="49.0746%" y="869" width="0.0150%" height="15" fill="rgb(241,24,51)" fg:x="71829" fg:w="22"/><text x="49.3246%" y="879.50"></text></g><g><title>[perf-270039.map] (4,602 samples, 3.14%)</title><rect x="45.9680%" y="965" width="3.1442%" height="15" fill="rgb(227,51,44)" fg:x="67282" fg:w="4602"/><text x="46.2180%" y="975.50">[pe..</text></g><g><title>SharedRuntime::find_callee_info_helper (29 samples, 0.02%)</title><rect x="49.1388%" y="933" width="0.0198%" height="15" fill="rgb(231,121,3)" fg:x="71923" fg:w="29"/><text x="49.3888%" y="943.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (39 samples, 0.03%)</title><rect x="49.1340%" y="949" width="0.0266%" height="15" fill="rgb(245,3,41)" fg:x="71916" fg:w="39"/><text x="49.3840%" y="959.50"></text></g><g><title>Monitor::lock_without_safepoint_check (15 samples, 0.01%)</title><rect x="49.1641%" y="917" width="0.0102%" height="15" fill="rgb(214,13,26)" fg:x="71960" fg:w="15"/><text x="49.4141%" y="927.50"></text></g><g><title>Monitor::ILock (15 samples, 0.01%)</title><rect x="49.1641%" y="901" width="0.0102%" height="15" fill="rgb(252,75,11)" fg:x="71960" fg:w="15"/><text x="49.4141%" y="911.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (16 samples, 0.01%)</title><rect x="49.1641%" y="949" width="0.0109%" height="15" fill="rgb(218,226,17)" fg:x="71960" fg:w="16"/><text x="49.4141%" y="959.50"></text></g><g><title>SafepointSynchronize::block (16 samples, 0.01%)</title><rect x="49.1641%" y="933" width="0.0109%" height="15" fill="rgb(248,89,38)" fg:x="71960" fg:w="16"/><text x="49.4141%" y="943.50"></text></g><g><title>generic_file_buffered_read (30 samples, 0.02%)</title><rect x="49.1853%" y="805" width="0.0205%" height="15" fill="rgb(237,73,46)" fg:x="71991" fg:w="30"/><text x="49.4353%" y="815.50"></text></g><g><title>new_sync_read (33 samples, 0.02%)</title><rect x="49.1839%" y="821" width="0.0225%" height="15" fill="rgb(242,78,33)" fg:x="71989" fg:w="33"/><text x="49.4339%" y="831.50"></text></g><g><title>__libc_read (40 samples, 0.03%)</title><rect x="49.1812%" y="917" width="0.0273%" height="15" fill="rgb(235,60,3)" fg:x="71985" fg:w="40"/><text x="49.4312%" y="927.50"></text></g><g><title>__libc_read (40 samples, 0.03%)</title><rect x="49.1812%" y="901" width="0.0273%" height="15" fill="rgb(216,172,19)" fg:x="71985" fg:w="40"/><text x="49.4312%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.03%)</title><rect x="49.1819%" y="885" width="0.0266%" height="15" fill="rgb(227,6,42)" fg:x="71986" fg:w="39"/><text x="49.4319%" y="895.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="49.1819%" y="869" width="0.0266%" height="15" fill="rgb(223,207,42)" fg:x="71986" fg:w="39"/><text x="49.4319%" y="879.50"></text></g><g><title>ksys_read (39 samples, 0.03%)</title><rect x="49.1819%" y="853" width="0.0266%" height="15" fill="rgb(246,138,30)" fg:x="71986" fg:w="39"/><text x="49.4319%" y="863.50"></text></g><g><title>vfs_read (36 samples, 0.02%)</title><rect x="49.1839%" y="837" width="0.0246%" height="15" fill="rgb(251,199,47)" fg:x="71989" fg:w="36"/><text x="49.4339%" y="847.50"></text></g><g><title>handleRead (42 samples, 0.03%)</title><rect x="49.1805%" y="933" width="0.0287%" height="15" fill="rgb(228,218,44)" fg:x="71984" fg:w="42"/><text x="49.4305%" y="943.50"></text></g><g><title>readBytes (51 samples, 0.03%)</title><rect x="49.1791%" y="949" width="0.0348%" height="15" fill="rgb(220,68,6)" fg:x="71982" fg:w="51"/><text x="49.4291%" y="959.50"></text></g><g><title>[unknown] (152 samples, 0.10%)</title><rect x="49.1122%" y="965" width="0.1038%" height="15" fill="rgb(240,60,26)" fg:x="71884" fg:w="152"/><text x="49.3622%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (289 samples, 0.20%)</title><rect x="49.2392%" y="901" width="0.1974%" height="15" fill="rgb(211,200,19)" fg:x="72070" fg:w="289"/><text x="49.4892%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (287 samples, 0.20%)</title><rect x="49.2406%" y="885" width="0.1961%" height="15" fill="rgb(242,145,30)" fg:x="72072" fg:w="287"/><text x="49.4906%" y="895.50"></text></g><g><title>native_write_msr (286 samples, 0.20%)</title><rect x="49.2413%" y="869" width="0.1954%" height="15" fill="rgb(225,64,13)" fg:x="72073" fg:w="286"/><text x="49.4913%" y="879.50"></text></g><g><title>schedule_tail (303 samples, 0.21%)</title><rect x="49.2345%" y="933" width="0.2070%" height="15" fill="rgb(218,103,35)" fg:x="72063" fg:w="303"/><text x="49.4845%" y="943.50"></text></g><g><title>finish_task_switch (301 samples, 0.21%)</title><rect x="49.2358%" y="917" width="0.2056%" height="15" fill="rgb(216,93,46)" fg:x="72065" fg:w="301"/><text x="49.4858%" y="927.50"></text></g><g><title>ret_from_fork (316 samples, 0.22%)</title><rect x="49.2297%" y="949" width="0.2159%" height="15" fill="rgb(225,159,27)" fg:x="72056" fg:w="316"/><text x="49.4797%" y="959.50"></text></g><g><title>SystemDictionary::initialize_preloaded_classes (20 samples, 0.01%)</title><rect x="49.4565%" y="837" width="0.0137%" height="15" fill="rgb(225,204,11)" fg:x="72388" fg:w="20"/><text x="49.7065%" y="847.50"></text></g><g><title>SystemDictionary::initialize_wk_klasses_until (20 samples, 0.01%)</title><rect x="49.4565%" y="821" width="0.0137%" height="15" fill="rgb(205,56,4)" fg:x="72388" fg:w="20"/><text x="49.7065%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (20 samples, 0.01%)</title><rect x="49.4565%" y="805" width="0.0137%" height="15" fill="rgb(206,6,35)" fg:x="72388" fg:w="20"/><text x="49.7065%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (20 samples, 0.01%)</title><rect x="49.4565%" y="789" width="0.0137%" height="15" fill="rgb(247,73,52)" fg:x="72388" fg:w="20"/><text x="49.7065%" y="799.50"></text></g><g><title>ClassLoader::load_class (20 samples, 0.01%)</title><rect x="49.4565%" y="773" width="0.0137%" height="15" fill="rgb(246,97,4)" fg:x="72388" fg:w="20"/><text x="49.7065%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (19 samples, 0.01%)</title><rect x="49.4572%" y="757" width="0.0130%" height="15" fill="rgb(212,37,15)" fg:x="72389" fg:w="19"/><text x="49.7072%" y="767.50"></text></g><g><title>universe2_init (22 samples, 0.02%)</title><rect x="49.4558%" y="869" width="0.0150%" height="15" fill="rgb(208,130,40)" fg:x="72387" fg:w="22"/><text x="49.7058%" y="879.50"></text></g><g><title>Universe::genesis (22 samples, 0.02%)</title><rect x="49.4558%" y="853" width="0.0150%" height="15" fill="rgb(236,55,29)" fg:x="72387" fg:w="22"/><text x="49.7058%" y="863.50"></text></g><g><title>init_globals (41 samples, 0.03%)</title><rect x="49.4510%" y="885" width="0.0280%" height="15" fill="rgb(209,156,45)" fg:x="72380" fg:w="41"/><text x="49.7010%" y="895.50"></text></g><g><title>JNI_CreateJavaVM (48 samples, 0.03%)</title><rect x="49.4476%" y="917" width="0.0328%" height="15" fill="rgb(249,107,4)" fg:x="72375" fg:w="48"/><text x="49.6976%" y="927.50"></text></g><g><title>Threads::create_vm (48 samples, 0.03%)</title><rect x="49.4476%" y="901" width="0.0328%" height="15" fill="rgb(227,7,13)" fg:x="72375" fg:w="48"/><text x="49.6976%" y="911.50"></text></g><g><title>JavaMain (49 samples, 0.03%)</title><rect x="49.4476%" y="933" width="0.0335%" height="15" fill="rgb(250,129,14)" fg:x="72375" fg:w="49"/><text x="49.6976%" y="943.50"></text></g><g><title>futex_wait_queue_me (17 samples, 0.01%)</title><rect x="49.4907%" y="741" width="0.0116%" height="15" fill="rgb(229,92,13)" fg:x="72438" fg:w="17"/><text x="49.7407%" y="751.50"></text></g><g><title>schedule (17 samples, 0.01%)</title><rect x="49.4907%" y="725" width="0.0116%" height="15" fill="rgb(245,98,39)" fg:x="72438" fg:w="17"/><text x="49.7407%" y="735.50"></text></g><g><title>__schedule (17 samples, 0.01%)</title><rect x="49.4907%" y="709" width="0.0116%" height="15" fill="rgb(234,135,48)" fg:x="72438" fg:w="17"/><text x="49.7407%" y="719.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="49.4886%" y="805" width="0.0143%" height="15" fill="rgb(230,98,28)" fg:x="72435" fg:w="21"/><text x="49.7386%" y="815.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.01%)</title><rect x="49.4886%" y="789" width="0.0143%" height="15" fill="rgb(223,121,0)" fg:x="72435" fg:w="21"/><text x="49.7386%" y="799.50"></text></g><g><title>do_futex (21 samples, 0.01%)</title><rect x="49.4886%" y="773" width="0.0143%" height="15" fill="rgb(234,173,33)" fg:x="72435" fg:w="21"/><text x="49.7386%" y="783.50"></text></g><g><title>futex_wait (21 samples, 0.01%)</title><rect x="49.4886%" y="757" width="0.0143%" height="15" fill="rgb(245,47,8)" fg:x="72435" fg:w="21"/><text x="49.7386%" y="767.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.02%)</title><rect x="49.4879%" y="869" width="0.0157%" height="15" fill="rgb(205,17,20)" fg:x="72434" fg:w="23"/><text x="49.7379%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.02%)</title><rect x="49.4879%" y="853" width="0.0157%" height="15" fill="rgb(232,151,16)" fg:x="72434" fg:w="23"/><text x="49.7379%" y="863.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.02%)</title><rect x="49.4886%" y="837" width="0.0150%" height="15" fill="rgb(208,30,32)" fg:x="72435" fg:w="22"/><text x="49.7386%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="49.4886%" y="821" width="0.0150%" height="15" fill="rgb(254,26,3)" fg:x="72435" fg:w="22"/><text x="49.7386%" y="831.50"></text></g><g><title>Monitor::wait (29 samples, 0.02%)</title><rect x="49.4852%" y="917" width="0.0198%" height="15" fill="rgb(240,177,30)" fg:x="72430" fg:w="29"/><text x="49.7352%" y="927.50"></text></g><g><title>Monitor::IWait (29 samples, 0.02%)</title><rect x="49.4852%" y="901" width="0.0198%" height="15" fill="rgb(248,76,44)" fg:x="72430" fg:w="29"/><text x="49.7352%" y="911.50"></text></g><g><title>os::PlatformEvent::park (25 samples, 0.02%)</title><rect x="49.4879%" y="885" width="0.0171%" height="15" fill="rgb(241,186,54)" fg:x="72434" fg:w="25"/><text x="49.7379%" y="895.50"></text></g><g><title>JavaThread::run (22 samples, 0.02%)</title><rect x="49.5057%" y="901" width="0.0150%" height="15" fill="rgb(249,171,29)" fg:x="72460" fg:w="22"/><text x="49.7557%" y="911.50"></text></g><g><title>Thread::call_run (24 samples, 0.02%)</title><rect x="49.5050%" y="917" width="0.0164%" height="15" fill="rgb(237,151,44)" fg:x="72459" fg:w="24"/><text x="49.7550%" y="927.50"></text></g><g><title>arena_get2 (15 samples, 0.01%)</title><rect x="49.5248%" y="805" width="0.0102%" height="15" fill="rgb(228,174,30)" fg:x="72488" fg:w="15"/><text x="49.7748%" y="815.50"></text></g><g><title>_int_new_arena (15 samples, 0.01%)</title><rect x="49.5248%" y="789" width="0.0102%" height="15" fill="rgb(252,14,37)" fg:x="72488" fg:w="15"/><text x="49.7748%" y="799.50"></text></g><g><title>__GI___libc_malloc (18 samples, 0.01%)</title><rect x="49.5235%" y="869" width="0.0123%" height="15" fill="rgb(207,111,40)" fg:x="72486" fg:w="18"/><text x="49.7735%" y="879.50"></text></g><g><title>tcache_init (18 samples, 0.01%)</title><rect x="49.5235%" y="853" width="0.0123%" height="15" fill="rgb(248,171,54)" fg:x="72486" fg:w="18"/><text x="49.7735%" y="863.50"></text></g><g><title>tcache_init (18 samples, 0.01%)</title><rect x="49.5235%" y="837" width="0.0123%" height="15" fill="rgb(211,127,2)" fg:x="72486" fg:w="18"/><text x="49.7735%" y="847.50"></text></g><g><title>arena_get2 (16 samples, 0.01%)</title><rect x="49.5248%" y="821" width="0.0109%" height="15" fill="rgb(236,87,47)" fg:x="72488" fg:w="16"/><text x="49.7748%" y="831.50"></text></g><g><title>pthread_getattr_np (21 samples, 0.01%)</title><rect x="49.5235%" y="885" width="0.0143%" height="15" fill="rgb(223,190,45)" fg:x="72486" fg:w="21"/><text x="49.7735%" y="895.50"></text></g><g><title>Thread::record_stack_base_and_size (24 samples, 0.02%)</title><rect x="49.5221%" y="917" width="0.0164%" height="15" fill="rgb(215,5,16)" fg:x="72484" fg:w="24"/><text x="49.7721%" y="927.50"></text></g><g><title>os::current_stack_base (24 samples, 0.02%)</title><rect x="49.5221%" y="901" width="0.0164%" height="15" fill="rgb(252,82,33)" fg:x="72484" fg:w="24"/><text x="49.7721%" y="911.50"></text></g><g><title>__GI___clone (473 samples, 0.32%)</title><rect x="49.2160%" y="965" width="0.3232%" height="15" fill="rgb(247,213,44)" fg:x="72036" fg:w="473"/><text x="49.4660%" y="975.50"></text></g><g><title>start_thread (137 samples, 0.09%)</title><rect x="49.4456%" y="949" width="0.0936%" height="15" fill="rgb(205,196,44)" fg:x="72372" fg:w="137"/><text x="49.6956%" y="959.50"></text></g><g><title>thread_native_entry (79 samples, 0.05%)</title><rect x="49.4852%" y="933" width="0.0540%" height="15" fill="rgb(237,96,54)" fg:x="72430" fg:w="79"/><text x="49.7352%" y="943.50"></text></g><g><title>asm_exc_page_fault (20 samples, 0.01%)</title><rect x="49.5405%" y="965" width="0.0137%" height="15" fill="rgb(230,113,34)" fg:x="72511" fg:w="20"/><text x="49.7905%" y="975.50"></text></g><g><title>java (5,538 samples, 3.78%)</title><rect x="45.7747%" y="981" width="3.7836%" height="15" fill="rgb(221,224,12)" fg:x="66999" fg:w="5538"/><text x="46.0247%" y="991.50">java</text></g><g><title>__pthread_cond_wait (21 samples, 0.01%)</title><rect x="49.5665%" y="949" width="0.0143%" height="15" fill="rgb(219,112,44)" fg:x="72549" fg:w="21"/><text x="49.8165%" y="959.50"></text></g><g><title>__pthread_cond_wait_common (18 samples, 0.01%)</title><rect x="49.5686%" y="933" width="0.0123%" height="15" fill="rgb(210,31,13)" fg:x="72552" fg:w="18"/><text x="49.8186%" y="943.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="49.5699%" y="917" width="0.0109%" height="15" fill="rgb(230,25,16)" fg:x="72554" fg:w="16"/><text x="49.8199%" y="927.50"></text></g><g><title>[[heap]] (62 samples, 0.04%)</title><rect x="49.5583%" y="965" width="0.0424%" height="15" fill="rgb(246,108,53)" fg:x="72537" fg:w="62"/><text x="49.8083%" y="975.50"></text></g><g><title>[[stack]] (18 samples, 0.01%)</title><rect x="49.6007%" y="965" width="0.0123%" height="15" fill="rgb(241,172,50)" fg:x="72599" fg:w="18"/><text x="49.8507%" y="975.50"></text></g><g><title>[anon] (18 samples, 0.01%)</title><rect x="49.6130%" y="965" width="0.0123%" height="15" fill="rgb(235,141,10)" fg:x="72617" fg:w="18"/><text x="49.8630%" y="975.50"></text></g><g><title>asm_exc_page_fault (19 samples, 0.01%)</title><rect x="50.5305%" y="933" width="0.0130%" height="15" fill="rgb(220,174,43)" fg:x="73960" fg:w="19"/><text x="50.7805%" y="943.50"></text></g><g><title>exc_page_fault (19 samples, 0.01%)</title><rect x="50.5305%" y="917" width="0.0130%" height="15" fill="rgb(215,181,40)" fg:x="73960" fg:w="19"/><text x="50.7805%" y="927.50"></text></g><g><title>do_user_addr_fault (18 samples, 0.01%)</title><rect x="50.5312%" y="901" width="0.0123%" height="15" fill="rgb(230,97,2)" fg:x="73961" fg:w="18"/><text x="50.7812%" y="911.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="50.5319%" y="885" width="0.0116%" height="15" fill="rgb(211,25,27)" fg:x="73962" fg:w="17"/><text x="50.7819%" y="895.50"></text></g><g><title>[libc-2.31.so] (116 samples, 0.08%)</title><rect x="50.4663%" y="949" width="0.0793%" height="15" fill="rgb(230,87,26)" fg:x="73866" fg:w="116"/><text x="50.7163%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="50.5455%" y="933" width="0.0109%" height="15" fill="rgb(227,160,17)" fg:x="73982" fg:w="16"/><text x="50.7955%" y="943.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="50.5455%" y="917" width="0.0109%" height="15" fill="rgb(244,85,34)" fg:x="73982" fg:w="16"/><text x="50.7955%" y="927.50"></text></g><g><title>do_faccessat (16 samples, 0.01%)</title><rect x="50.5455%" y="901" width="0.0109%" height="15" fill="rgb(207,70,0)" fg:x="73982" fg:w="16"/><text x="50.7955%" y="911.50"></text></g><g><title>__GI___access (17 samples, 0.01%)</title><rect x="50.5455%" y="949" width="0.0116%" height="15" fill="rgb(223,129,7)" fg:x="73982" fg:w="17"/><text x="50.7955%" y="959.50"></text></g><g><title>__GI___libc_free (28 samples, 0.02%)</title><rect x="50.5578%" y="949" width="0.0191%" height="15" fill="rgb(246,105,7)" fg:x="74000" fg:w="28"/><text x="50.8078%" y="959.50"></text></g><g><title>__GI___libc_realloc (15 samples, 0.01%)</title><rect x="50.5852%" y="949" width="0.0102%" height="15" fill="rgb(215,154,42)" fg:x="74040" fg:w="15"/><text x="50.8352%" y="959.50"></text></g><g><title>dequeue_task_fair (26 samples, 0.02%)</title><rect x="50.7375%" y="789" width="0.0178%" height="15" fill="rgb(220,215,30)" fg:x="74263" fg:w="26"/><text x="50.9875%" y="799.50"></text></g><g><title>dequeue_entity (24 samples, 0.02%)</title><rect x="50.7389%" y="773" width="0.0164%" height="15" fill="rgb(228,81,51)" fg:x="74265" fg:w="24"/><text x="50.9889%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (421 samples, 0.29%)</title><rect x="50.7635%" y="773" width="0.2876%" height="15" fill="rgb(247,71,54)" fg:x="74301" fg:w="421"/><text x="51.0135%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (413 samples, 0.28%)</title><rect x="50.7690%" y="757" width="0.2822%" height="15" fill="rgb(234,176,34)" fg:x="74309" fg:w="413"/><text x="51.0190%" y="767.50"></text></g><g><title>native_write_msr (412 samples, 0.28%)</title><rect x="50.7696%" y="741" width="0.2815%" height="15" fill="rgb(241,103,54)" fg:x="74310" fg:w="412"/><text x="51.0196%" y="751.50"></text></g><g><title>finish_task_switch (444 samples, 0.30%)</title><rect x="50.7553%" y="789" width="0.3033%" height="15" fill="rgb(228,22,34)" fg:x="74289" fg:w="444"/><text x="51.0053%" y="799.50"></text></g><g><title>psi_task_change (24 samples, 0.02%)</title><rect x="51.0668%" y="789" width="0.0164%" height="15" fill="rgb(241,179,48)" fg:x="74745" fg:w="24"/><text x="51.3168%" y="799.50"></text></g><g><title>psi_group_change (19 samples, 0.01%)</title><rect x="51.0703%" y="773" width="0.0130%" height="15" fill="rgb(235,167,37)" fg:x="74750" fg:w="19"/><text x="51.3203%" y="783.50"></text></g><g><title>futex_wait_queue_me (543 samples, 0.37%)</title><rect x="50.7198%" y="837" width="0.3710%" height="15" fill="rgb(213,109,30)" fg:x="74237" fg:w="543"/><text x="50.9698%" y="847.50"></text></g><g><title>schedule (534 samples, 0.36%)</title><rect x="50.7259%" y="821" width="0.3648%" height="15" fill="rgb(222,172,16)" fg:x="74246" fg:w="534"/><text x="50.9759%" y="831.50"></text></g><g><title>__schedule (534 samples, 0.36%)</title><rect x="50.7259%" y="805" width="0.3648%" height="15" fill="rgb(233,192,5)" fg:x="74246" fg:w="534"/><text x="50.9759%" y="815.50"></text></g><g><title>__x64_sys_futex (603 samples, 0.41%)</title><rect x="50.7088%" y="885" width="0.4120%" height="15" fill="rgb(247,189,41)" fg:x="74221" fg:w="603"/><text x="50.9588%" y="895.50"></text></g><g><title>do_futex (600 samples, 0.41%)</title><rect x="50.7109%" y="869" width="0.4099%" height="15" fill="rgb(218,134,47)" fg:x="74224" fg:w="600"/><text x="50.9609%" y="879.50"></text></g><g><title>futex_wait (597 samples, 0.41%)</title><rect x="50.7129%" y="853" width="0.4079%" height="15" fill="rgb(216,29,3)" fg:x="74227" fg:w="597"/><text x="50.9629%" y="863.50"></text></g><g><title>futex_wait_setup (44 samples, 0.03%)</title><rect x="51.0908%" y="837" width="0.0301%" height="15" fill="rgb(246,140,12)" fg:x="74780" fg:w="44"/><text x="51.3408%" y="847.50"></text></g><g><title>do_syscall_64 (605 samples, 0.41%)</title><rect x="50.7082%" y="901" width="0.4133%" height="15" fill="rgb(230,136,11)" fg:x="74220" fg:w="605"/><text x="50.9582%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (620 samples, 0.42%)</title><rect x="50.7054%" y="917" width="0.4236%" height="15" fill="rgb(247,22,47)" fg:x="74216" fg:w="620"/><text x="50.9554%" y="927.50"></text></g><g><title>__lll_lock_wait (643 samples, 0.44%)</title><rect x="50.6904%" y="933" width="0.4393%" height="15" fill="rgb(218,84,22)" fg:x="74194" fg:w="643"/><text x="50.9404%" y="943.50"></text></g><g><title>__GI___pthread_mutex_lock (775 samples, 0.53%)</title><rect x="50.6009%" y="949" width="0.5295%" height="15" fill="rgb(216,87,39)" fg:x="74063" fg:w="775"/><text x="50.8509%" y="959.50"></text></g><g><title>do_filp_open (25 samples, 0.02%)</title><rect x="51.1727%" y="869" width="0.0171%" height="15" fill="rgb(221,178,8)" fg:x="74900" fg:w="25"/><text x="51.4227%" y="879.50"></text></g><g><title>path_openat (24 samples, 0.02%)</title><rect x="51.1734%" y="853" width="0.0164%" height="15" fill="rgb(230,42,11)" fg:x="74901" fg:w="24"/><text x="51.4234%" y="863.50"></text></g><g><title>__libc_open64 (30 samples, 0.02%)</title><rect x="51.1707%" y="949" width="0.0205%" height="15" fill="rgb(237,229,4)" fg:x="74897" fg:w="30"/><text x="51.4207%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.02%)</title><rect x="51.1714%" y="933" width="0.0198%" height="15" fill="rgb(222,31,33)" fg:x="74898" fg:w="29"/><text x="51.4214%" y="943.50"></text></g><g><title>do_syscall_64 (29 samples, 0.02%)</title><rect x="51.1714%" y="917" width="0.0198%" height="15" fill="rgb(210,17,39)" fg:x="74898" fg:w="29"/><text x="51.4214%" y="927.50"></text></g><g><title>__x64_sys_openat (29 samples, 0.02%)</title><rect x="51.1714%" y="901" width="0.0198%" height="15" fill="rgb(244,93,20)" fg:x="74898" fg:w="29"/><text x="51.4214%" y="911.50"></text></g><g><title>do_sys_openat2 (29 samples, 0.02%)</title><rect x="51.1714%" y="885" width="0.0198%" height="15" fill="rgb(210,40,47)" fg:x="74898" fg:w="29"/><text x="51.4214%" y="895.50"></text></g><g><title>entry_SYSCALL_64 (20 samples, 0.01%)</title><rect x="51.2534%" y="933" width="0.0137%" height="15" fill="rgb(239,211,47)" fg:x="75018" fg:w="20"/><text x="51.5034%" y="943.50"></text></g><g><title>_raw_spin_lock (25 samples, 0.02%)</title><rect x="51.3237%" y="853" width="0.0171%" height="15" fill="rgb(251,223,49)" fg:x="75121" fg:w="25"/><text x="51.5737%" y="863.50"></text></g><g><title>get_futex_key (16 samples, 0.01%)</title><rect x="51.3408%" y="853" width="0.0109%" height="15" fill="rgb(221,149,5)" fg:x="75146" fg:w="16"/><text x="51.5908%" y="863.50"></text></g><g><title>hash_futex (15 samples, 0.01%)</title><rect x="51.3517%" y="853" width="0.0102%" height="15" fill="rgb(219,224,51)" fg:x="75162" fg:w="15"/><text x="51.6017%" y="863.50"></text></g><g><title>enqueue_task_fair (27 samples, 0.02%)</title><rect x="51.4515%" y="805" width="0.0184%" height="15" fill="rgb(223,7,8)" fg:x="75308" fg:w="27"/><text x="51.7015%" y="815.50"></text></g><g><title>enqueue_entity (17 samples, 0.01%)</title><rect x="51.4583%" y="789" width="0.0116%" height="15" fill="rgb(241,217,22)" fg:x="75318" fg:w="17"/><text x="51.7083%" y="799.50"></text></g><g><title>ttwu_do_activate (48 samples, 0.03%)</title><rect x="51.4515%" y="821" width="0.0328%" height="15" fill="rgb(248,209,0)" fg:x="75308" fg:w="48"/><text x="51.7015%" y="831.50"></text></g><g><title>psi_task_change (21 samples, 0.01%)</title><rect x="51.4699%" y="805" width="0.0143%" height="15" fill="rgb(217,205,4)" fg:x="75335" fg:w="21"/><text x="51.7199%" y="815.50"></text></g><g><title>psi_group_change (18 samples, 0.01%)</title><rect x="51.4720%" y="789" width="0.0123%" height="15" fill="rgb(228,124,39)" fg:x="75338" fg:w="18"/><text x="51.7220%" y="799.50"></text></g><g><title>__x64_sys_futex (320 samples, 0.22%)</title><rect x="51.2773%" y="901" width="0.2186%" height="15" fill="rgb(250,116,42)" fg:x="75053" fg:w="320"/><text x="51.5273%" y="911.50"></text></g><g><title>do_futex (308 samples, 0.21%)</title><rect x="51.2855%" y="885" width="0.2104%" height="15" fill="rgb(223,202,9)" fg:x="75065" fg:w="308"/><text x="51.5355%" y="895.50"></text></g><g><title>futex_wake (302 samples, 0.21%)</title><rect x="51.2896%" y="869" width="0.2063%" height="15" fill="rgb(242,222,40)" fg:x="75071" fg:w="302"/><text x="51.5396%" y="879.50"></text></g><g><title>wake_up_q (187 samples, 0.13%)</title><rect x="51.3681%" y="853" width="0.1278%" height="15" fill="rgb(229,99,46)" fg:x="75186" fg:w="187"/><text x="51.6181%" y="863.50"></text></g><g><title>try_to_wake_up (185 samples, 0.13%)</title><rect x="51.3695%" y="837" width="0.1264%" height="15" fill="rgb(225,56,46)" fg:x="75188" fg:w="185"/><text x="51.6195%" y="847.50"></text></g><g><title>do_syscall_64 (332 samples, 0.23%)</title><rect x="51.2718%" y="917" width="0.2268%" height="15" fill="rgb(227,94,5)" fg:x="75045" fg:w="332"/><text x="51.5218%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (351 samples, 0.24%)</title><rect x="51.2670%" y="933" width="0.2398%" height="15" fill="rgb(205,112,38)" fg:x="75038" fg:w="351"/><text x="51.5170%" y="943.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (467 samples, 0.32%)</title><rect x="51.1932%" y="949" width="0.3191%" height="15" fill="rgb(231,133,46)" fg:x="74930" fg:w="467"/><text x="51.4432%" y="959.50"></text></g><g><title>[ld-2.31.so] (21 samples, 0.01%)</title><rect x="51.5212%" y="933" width="0.0143%" height="15" fill="rgb(217,16,9)" fg:x="75410" fg:w="21"/><text x="51.7712%" y="943.50"></text></g><g><title>_dl_lookup_symbol_x (21 samples, 0.01%)</title><rect x="51.5212%" y="917" width="0.0143%" height="15" fill="rgb(249,173,9)" fg:x="75410" fg:w="21"/><text x="51.7712%" y="927.50"></text></g><g><title>do_lookup_x (16 samples, 0.01%)</title><rect x="51.5246%" y="901" width="0.0109%" height="15" fill="rgb(205,163,53)" fg:x="75415" fg:w="16"/><text x="51.7746%" y="911.50"></text></g><g><title>_dl_runtime_resolve_xsavec (31 samples, 0.02%)</title><rect x="51.5198%" y="949" width="0.0212%" height="15" fill="rgb(217,54,41)" fg:x="75408" fg:w="31"/><text x="51.7698%" y="959.50"></text></g><g><title>_int_free (129 samples, 0.09%)</title><rect x="51.5410%" y="949" width="0.0881%" height="15" fill="rgb(228,216,12)" fg:x="75439" fg:w="129"/><text x="51.7910%" y="959.50"></text></g><g><title>alloc_pages_vma (15 samples, 0.01%)</title><rect x="51.6496%" y="885" width="0.0102%" height="15" fill="rgb(244,228,15)" fg:x="75598" fg:w="15"/><text x="51.8996%" y="895.50"></text></g><g><title>__alloc_pages_nodemask (15 samples, 0.01%)</title><rect x="51.6496%" y="869" width="0.0102%" height="15" fill="rgb(221,176,53)" fg:x="75598" fg:w="15"/><text x="51.8996%" y="879.50"></text></g><g><title>get_page_from_freelist (15 samples, 0.01%)</title><rect x="51.6496%" y="853" width="0.0102%" height="15" fill="rgb(205,94,34)" fg:x="75598" fg:w="15"/><text x="51.8996%" y="863.50"></text></g><g><title>page_add_file_rmap (29 samples, 0.02%)</title><rect x="51.7097%" y="853" width="0.0198%" height="15" fill="rgb(213,110,48)" fg:x="75686" fg:w="29"/><text x="51.9597%" y="863.50"></text></g><g><title>alloc_set_pte (47 samples, 0.03%)</title><rect x="51.6995%" y="869" width="0.0321%" height="15" fill="rgb(236,142,28)" fg:x="75671" fg:w="47"/><text x="51.9495%" y="879.50"></text></g><g><title>filemap_map_pages (115 samples, 0.08%)</title><rect x="51.6619%" y="885" width="0.0786%" height="15" fill="rgb(225,135,29)" fg:x="75616" fg:w="115"/><text x="51.9119%" y="895.50"></text></g><g><title>handle_mm_fault (164 samples, 0.11%)</title><rect x="51.6360%" y="901" width="0.1120%" height="15" fill="rgb(252,45,31)" fg:x="75578" fg:w="164"/><text x="51.8860%" y="911.50"></text></g><g><title>asm_exc_page_fault (172 samples, 0.12%)</title><rect x="51.6312%" y="949" width="0.1175%" height="15" fill="rgb(211,187,50)" fg:x="75571" fg:w="172"/><text x="51.8812%" y="959.50"></text></g><g><title>exc_page_fault (171 samples, 0.12%)</title><rect x="51.6319%" y="933" width="0.1168%" height="15" fill="rgb(229,109,7)" fg:x="75572" fg:w="171"/><text x="51.8819%" y="943.50"></text></g><g><title>do_user_addr_fault (170 samples, 0.12%)</title><rect x="51.6325%" y="917" width="0.1161%" height="15" fill="rgb(251,131,51)" fg:x="75573" fg:w="170"/><text x="51.8825%" y="927.50"></text></g><g><title>error_entry (16 samples, 0.01%)</title><rect x="51.7487%" y="949" width="0.0109%" height="15" fill="rgb(251,180,35)" fg:x="75743" fg:w="16"/><text x="51.9987%" y="959.50"></text></g><g><title>alloc_pages_vma (18 samples, 0.01%)</title><rect x="51.8662%" y="837" width="0.0123%" height="15" fill="rgb(211,46,32)" fg:x="75915" fg:w="18"/><text x="52.1162%" y="847.50"></text></g><g><title>__alloc_pages_nodemask (16 samples, 0.01%)</title><rect x="51.8676%" y="821" width="0.0109%" height="15" fill="rgb(248,123,17)" fg:x="75917" fg:w="16"/><text x="52.1176%" y="831.50"></text></g><g><title>get_page_from_freelist (15 samples, 0.01%)</title><rect x="51.8682%" y="805" width="0.0102%" height="15" fill="rgb(227,141,18)" fg:x="75918" fg:w="15"/><text x="52.1182%" y="815.50"></text></g><g><title>handle_mm_fault (29 samples, 0.02%)</title><rect x="51.8641%" y="853" width="0.0198%" height="15" fill="rgb(216,102,9)" fg:x="75912" fg:w="29"/><text x="52.1141%" y="863.50"></text></g><g><title>asm_exc_page_fault (33 samples, 0.02%)</title><rect x="51.8628%" y="901" width="0.0225%" height="15" fill="rgb(253,47,13)" fg:x="75910" fg:w="33"/><text x="52.1128%" y="911.50"></text></g><g><title>exc_page_fault (33 samples, 0.02%)</title><rect x="51.8628%" y="885" width="0.0225%" height="15" fill="rgb(226,93,23)" fg:x="75910" fg:w="33"/><text x="52.1128%" y="895.50"></text></g><g><title>do_user_addr_fault (32 samples, 0.02%)</title><rect x="51.8635%" y="869" width="0.0219%" height="15" fill="rgb(247,104,17)" fg:x="75911" fg:w="32"/><text x="52.1135%" y="879.50"></text></g><g><title>_int_malloc (107 samples, 0.07%)</title><rect x="51.8191%" y="917" width="0.0731%" height="15" fill="rgb(233,203,26)" fg:x="75846" fg:w="107"/><text x="52.0691%" y="927.50"></text></g><g><title>tcache_get (50 samples, 0.03%)</title><rect x="51.8928%" y="917" width="0.0342%" height="15" fill="rgb(244,98,49)" fg:x="75954" fg:w="50"/><text x="52.1428%" y="927.50"></text></g><g><title>__split_vma (17 samples, 0.01%)</title><rect x="51.9359%" y="725" width="0.0116%" height="15" fill="rgb(235,134,22)" fg:x="76017" fg:w="17"/><text x="52.1859%" y="735.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="51.9318%" y="789" width="0.0219%" height="15" fill="rgb(221,70,32)" fg:x="76011" fg:w="32"/><text x="52.1818%" y="799.50"></text></g><g><title>__x64_sys_mprotect (32 samples, 0.02%)</title><rect x="51.9318%" y="773" width="0.0219%" height="15" fill="rgb(238,15,50)" fg:x="76011" fg:w="32"/><text x="52.1818%" y="783.50"></text></g><g><title>do_mprotect_pkey (32 samples, 0.02%)</title><rect x="51.9318%" y="757" width="0.0219%" height="15" fill="rgb(215,221,48)" fg:x="76011" fg:w="32"/><text x="52.1818%" y="767.50"></text></g><g><title>mprotect_fixup (28 samples, 0.02%)</title><rect x="51.9345%" y="741" width="0.0191%" height="15" fill="rgb(236,73,3)" fg:x="76015" fg:w="28"/><text x="52.1845%" y="751.50"></text></g><g><title>[libc-2.31.so] (33 samples, 0.02%)</title><rect x="51.9318%" y="837" width="0.0225%" height="15" fill="rgb(250,107,11)" fg:x="76011" fg:w="33"/><text x="52.1818%" y="847.50"></text></g><g><title>__GI___mprotect (33 samples, 0.02%)</title><rect x="51.9318%" y="821" width="0.0225%" height="15" fill="rgb(242,39,14)" fg:x="76011" fg:w="33"/><text x="52.1818%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="51.9318%" y="805" width="0.0225%" height="15" fill="rgb(248,164,37)" fg:x="76011" fg:w="33"/><text x="52.1818%" y="815.50"></text></g><g><title>do_mmap (53 samples, 0.04%)</title><rect x="51.9612%" y="741" width="0.0362%" height="15" fill="rgb(217,60,12)" fg:x="76054" fg:w="53"/><text x="52.2112%" y="751.50"></text></g><g><title>mmap_region (37 samples, 0.03%)</title><rect x="51.9721%" y="725" width="0.0253%" height="15" fill="rgb(240,125,29)" fg:x="76070" fg:w="37"/><text x="52.2221%" y="735.50"></text></g><g><title>down_write_killable (16 samples, 0.01%)</title><rect x="51.9974%" y="741" width="0.0109%" height="15" fill="rgb(208,207,28)" fg:x="76107" fg:w="16"/><text x="52.2474%" y="751.50"></text></g><g><title>rwsem_down_write_slowpath (15 samples, 0.01%)</title><rect x="51.9981%" y="725" width="0.0102%" height="15" fill="rgb(209,159,27)" fg:x="76108" fg:w="15"/><text x="52.2481%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.05%)</title><rect x="51.9584%" y="789" width="0.0533%" height="15" fill="rgb(251,176,53)" fg:x="76050" fg:w="78"/><text x="52.2084%" y="799.50"></text></g><g><title>do_syscall_64 (78 samples, 0.05%)</title><rect x="51.9584%" y="773" width="0.0533%" height="15" fill="rgb(211,85,7)" fg:x="76050" fg:w="78"/><text x="52.2084%" y="783.50"></text></g><g><title>vm_mmap_pgoff (75 samples, 0.05%)</title><rect x="51.9605%" y="757" width="0.0512%" height="15" fill="rgb(216,64,54)" fg:x="76053" fg:w="75"/><text x="52.2105%" y="767.50"></text></g><g><title>__GI___mmap64 (83 samples, 0.06%)</title><rect x="51.9564%" y="821" width="0.0567%" height="15" fill="rgb(217,54,24)" fg:x="76047" fg:w="83"/><text x="52.2064%" y="831.50"></text></g><g><title>__GI___mmap64 (83 samples, 0.06%)</title><rect x="51.9564%" y="805" width="0.0567%" height="15" fill="rgb(208,206,53)" fg:x="76047" fg:w="83"/><text x="52.2064%" y="815.50"></text></g><g><title>__split_vma (17 samples, 0.01%)</title><rect x="52.0151%" y="725" width="0.0116%" height="15" fill="rgb(251,74,39)" fg:x="76133" fg:w="17"/><text x="52.2651%" y="735.50"></text></g><g><title>lru_add_drain (15 samples, 0.01%)</title><rect x="52.0384%" y="709" width="0.0102%" height="15" fill="rgb(226,47,5)" fg:x="76167" fg:w="15"/><text x="52.2884%" y="719.50"></text></g><g><title>unmap_region (32 samples, 0.02%)</title><rect x="52.0350%" y="725" width="0.0219%" height="15" fill="rgb(234,111,33)" fg:x="76162" fg:w="32"/><text x="52.2850%" y="735.50"></text></g><g><title>__do_munmap (66 samples, 0.05%)</title><rect x="52.0138%" y="741" width="0.0451%" height="15" fill="rgb(251,14,10)" fg:x="76131" fg:w="66"/><text x="52.2638%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.05%)</title><rect x="52.0131%" y="805" width="0.0478%" height="15" fill="rgb(232,43,0)" fg:x="76130" fg:w="70"/><text x="52.2631%" y="815.50"></text></g><g><title>do_syscall_64 (70 samples, 0.05%)</title><rect x="52.0131%" y="789" width="0.0478%" height="15" fill="rgb(222,68,43)" fg:x="76130" fg:w="70"/><text x="52.2631%" y="799.50"></text></g><g><title>__x64_sys_munmap (70 samples, 0.05%)</title><rect x="52.0131%" y="773" width="0.0478%" height="15" fill="rgb(217,24,23)" fg:x="76130" fg:w="70"/><text x="52.2631%" y="783.50"></text></g><g><title>__vm_munmap (69 samples, 0.05%)</title><rect x="52.0138%" y="757" width="0.0471%" height="15" fill="rgb(229,209,14)" fg:x="76131" fg:w="69"/><text x="52.2638%" y="767.50"></text></g><g><title>__GI_munmap (71 samples, 0.05%)</title><rect x="52.0131%" y="821" width="0.0485%" height="15" fill="rgb(250,149,48)" fg:x="76130" fg:w="71"/><text x="52.2631%" y="831.50"></text></g><g><title>handle_mm_fault (41 samples, 0.03%)</title><rect x="52.0636%" y="773" width="0.0280%" height="15" fill="rgb(210,120,37)" fg:x="76204" fg:w="41"/><text x="52.3136%" y="783.50"></text></g><g><title>asm_exc_page_fault (47 samples, 0.03%)</title><rect x="52.0616%" y="821" width="0.0321%" height="15" fill="rgb(210,21,8)" fg:x="76201" fg:w="47"/><text x="52.3116%" y="831.50"></text></g><g><title>exc_page_fault (47 samples, 0.03%)</title><rect x="52.0616%" y="805" width="0.0321%" height="15" fill="rgb(243,145,7)" fg:x="76201" fg:w="47"/><text x="52.3116%" y="815.50"></text></g><g><title>do_user_addr_fault (46 samples, 0.03%)</title><rect x="52.0623%" y="789" width="0.0314%" height="15" fill="rgb(238,178,32)" fg:x="76202" fg:w="46"/><text x="52.3123%" y="799.50"></text></g><g><title>arena_get2 (239 samples, 0.16%)</title><rect x="51.9311%" y="869" width="0.1633%" height="15" fill="rgb(222,4,10)" fg:x="76010" fg:w="239"/><text x="52.1811%" y="879.50"></text></g><g><title>_int_new_arena (239 samples, 0.16%)</title><rect x="51.9311%" y="853" width="0.1633%" height="15" fill="rgb(239,7,37)" fg:x="76010" fg:w="239"/><text x="52.1811%" y="863.50"></text></g><g><title>new_heap (204 samples, 0.14%)</title><rect x="51.9550%" y="837" width="0.1394%" height="15" fill="rgb(215,31,37)" fg:x="76045" fg:w="204"/><text x="52.2050%" y="847.50"></text></g><g><title>__GI___libc_malloc (474 samples, 0.32%)</title><rect x="51.7712%" y="933" width="0.3238%" height="15" fill="rgb(224,83,33)" fg:x="75776" fg:w="474"/><text x="52.0212%" y="943.50"></text></g><g><title>tcache_init (246 samples, 0.17%)</title><rect x="51.9270%" y="917" width="0.1681%" height="15" fill="rgb(239,55,3)" fg:x="76004" fg:w="246"/><text x="52.1770%" y="927.50"></text></g><g><title>tcache_init (245 samples, 0.17%)</title><rect x="51.9277%" y="901" width="0.1674%" height="15" fill="rgb(247,92,11)" fg:x="76005" fg:w="245"/><text x="52.1777%" y="911.50"></text></g><g><title>arena_get2 (240 samples, 0.16%)</title><rect x="51.9311%" y="885" width="0.1640%" height="15" fill="rgb(239,200,7)" fg:x="76010" fg:w="240"/><text x="52.1811%" y="895.50"></text></g><g><title>operator new (493 samples, 0.34%)</title><rect x="51.7699%" y="949" width="0.3368%" height="15" fill="rgb(227,115,8)" fg:x="75774" fg:w="493"/><text x="52.0199%" y="959.50"></text></g><g><title>malloc@plt (16 samples, 0.01%)</title><rect x="52.0958%" y="933" width="0.0109%" height="15" fill="rgb(215,189,27)" fg:x="76251" fg:w="16"/><text x="52.3458%" y="943.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="52.1183%" y="885" width="0.0157%" height="15" fill="rgb(251,216,39)" fg:x="76284" fg:w="23"/><text x="52.3683%" y="895.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="52.1183%" y="869" width="0.0157%" height="15" fill="rgb(207,29,47)" fg:x="76284" fg:w="23"/><text x="52.3683%" y="879.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="52.1183%" y="853" width="0.0157%" height="15" fill="rgb(210,71,34)" fg:x="76284" fg:w="23"/><text x="52.3683%" y="863.50"></text></g><g><title>futex_wake (23 samples, 0.02%)</title><rect x="52.1183%" y="837" width="0.0157%" height="15" fill="rgb(253,217,51)" fg:x="76284" fg:w="23"/><text x="52.3683%" y="847.50"></text></g><g><title>wake_up_q (19 samples, 0.01%)</title><rect x="52.1210%" y="821" width="0.0130%" height="15" fill="rgb(222,117,46)" fg:x="76288" fg:w="19"/><text x="52.3710%" y="831.50"></text></g><g><title>try_to_wake_up (19 samples, 0.01%)</title><rect x="52.1210%" y="805" width="0.0130%" height="15" fill="rgb(226,132,6)" fg:x="76288" fg:w="19"/><text x="52.3710%" y="815.50"></text></g><g><title>__pthread_cond_broadcast (31 samples, 0.02%)</title><rect x="52.1169%" y="933" width="0.0212%" height="15" fill="rgb(254,145,51)" fg:x="76282" fg:w="31"/><text x="52.3669%" y="943.50"></text></g><g><title>futex_wake (30 samples, 0.02%)</title><rect x="52.1176%" y="917" width="0.0205%" height="15" fill="rgb(231,199,27)" fg:x="76283" fg:w="30"/><text x="52.3676%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.02%)</title><rect x="52.1183%" y="901" width="0.0198%" height="15" fill="rgb(245,158,14)" fg:x="76284" fg:w="29"/><text x="52.3683%" y="911.50"></text></g><g><title>std::condition_variable::notify_all (38 samples, 0.03%)</title><rect x="52.1169%" y="949" width="0.0260%" height="15" fill="rgb(240,113,14)" fg:x="76282" fg:w="38"/><text x="52.3669%" y="959.50"></text></g><g><title>dequeue_entity (15 samples, 0.01%)</title><rect x="52.1812%" y="725" width="0.0102%" height="15" fill="rgb(210,20,13)" fg:x="76376" fg:w="15"/><text x="52.4312%" y="735.50"></text></g><g><title>dequeue_task_fair (18 samples, 0.01%)</title><rect x="52.1798%" y="741" width="0.0123%" height="15" fill="rgb(241,144,13)" fg:x="76374" fg:w="18"/><text x="52.4298%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (255 samples, 0.17%)</title><rect x="52.1982%" y="725" width="0.1742%" height="15" fill="rgb(235,43,34)" fg:x="76401" fg:w="255"/><text x="52.4482%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (252 samples, 0.17%)</title><rect x="52.2003%" y="709" width="0.1722%" height="15" fill="rgb(208,36,20)" fg:x="76404" fg:w="252"/><text x="52.4503%" y="719.50"></text></g><g><title>native_write_msr (250 samples, 0.17%)</title><rect x="52.2017%" y="693" width="0.1708%" height="15" fill="rgb(239,204,10)" fg:x="76406" fg:w="250"/><text x="52.4517%" y="703.50"></text></g><g><title>finish_task_switch (266 samples, 0.18%)</title><rect x="52.1921%" y="741" width="0.1817%" height="15" fill="rgb(217,84,43)" fg:x="76392" fg:w="266"/><text x="52.4421%" y="751.50"></text></g><g><title>futex_wait_queue_me (321 samples, 0.22%)</title><rect x="52.1675%" y="789" width="0.2193%" height="15" fill="rgb(241,170,50)" fg:x="76356" fg:w="321"/><text x="52.4175%" y="799.50"></text></g><g><title>schedule (315 samples, 0.22%)</title><rect x="52.1716%" y="773" width="0.2152%" height="15" fill="rgb(226,205,29)" fg:x="76362" fg:w="315"/><text x="52.4216%" y="783.50"></text></g><g><title>__schedule (314 samples, 0.21%)</title><rect x="52.1723%" y="757" width="0.2145%" height="15" fill="rgb(233,113,1)" fg:x="76363" fg:w="314"/><text x="52.4223%" y="767.50"></text></g><g><title>do_syscall_64 (330 samples, 0.23%)</title><rect x="52.1654%" y="853" width="0.2255%" height="15" fill="rgb(253,98,13)" fg:x="76353" fg:w="330"/><text x="52.4154%" y="863.50"></text></g><g><title>__x64_sys_futex (330 samples, 0.23%)</title><rect x="52.1654%" y="837" width="0.2255%" height="15" fill="rgb(211,115,12)" fg:x="76353" fg:w="330"/><text x="52.4154%" y="847.50"></text></g><g><title>do_futex (329 samples, 0.22%)</title><rect x="52.1661%" y="821" width="0.2248%" height="15" fill="rgb(208,12,16)" fg:x="76354" fg:w="329"/><text x="52.4161%" y="831.50"></text></g><g><title>futex_wait (329 samples, 0.22%)</title><rect x="52.1661%" y="805" width="0.2248%" height="15" fill="rgb(237,193,54)" fg:x="76354" fg:w="329"/><text x="52.4161%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (339 samples, 0.23%)</title><rect x="52.1654%" y="869" width="0.2316%" height="15" fill="rgb(243,22,42)" fg:x="76353" fg:w="339"/><text x="52.4154%" y="879.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (352 samples, 0.24%)</title><rect x="52.1579%" y="917" width="0.2405%" height="15" fill="rgb(233,151,36)" fg:x="76342" fg:w="352"/><text x="52.4079%" y="927.50"></text></g><g><title>futex_wait_simple (344 samples, 0.24%)</title><rect x="52.1634%" y="901" width="0.2350%" height="15" fill="rgb(237,57,45)" fg:x="76350" fg:w="344"/><text x="52.4134%" y="911.50"></text></g><g><title>futex_wait (344 samples, 0.24%)</title><rect x="52.1634%" y="885" width="0.2350%" height="15" fill="rgb(221,88,17)" fg:x="76350" fg:w="344"/><text x="52.4134%" y="895.50"></text></g><g><title>mark_wake_futex (37 samples, 0.03%)</title><rect x="52.4462%" y="821" width="0.0253%" height="15" fill="rgb(230,79,15)" fg:x="76764" fg:w="37"/><text x="52.6962%" y="831.50"></text></g><g><title>_raw_spin_lock (50 samples, 0.03%)</title><rect x="52.4920%" y="789" width="0.0342%" height="15" fill="rgb(213,57,13)" fg:x="76831" fg:w="50"/><text x="52.7420%" y="799.50"></text></g><g><title>native_queued_spin_lock_slowpath (41 samples, 0.03%)</title><rect x="52.4982%" y="773" width="0.0280%" height="15" fill="rgb(222,116,39)" fg:x="76840" fg:w="41"/><text x="52.7482%" y="783.50"></text></g><g><title>available_idle_cpu (25 samples, 0.02%)</title><rect x="52.5638%" y="773" width="0.0171%" height="15" fill="rgb(245,107,2)" fg:x="76936" fg:w="25"/><text x="52.8138%" y="783.50"></text></g><g><title>select_task_rq_fair (102 samples, 0.07%)</title><rect x="52.5337%" y="789" width="0.0697%" height="15" fill="rgb(238,1,10)" fg:x="76892" fg:w="102"/><text x="52.7837%" y="799.50"></text></g><g><title>update_cfs_rq_h_load (26 samples, 0.02%)</title><rect x="52.5856%" y="773" width="0.0178%" height="15" fill="rgb(249,4,48)" fg:x="76968" fg:w="26"/><text x="52.8356%" y="783.50"></text></g><g><title>enqueue_entity (94 samples, 0.06%)</title><rect x="52.6232%" y="757" width="0.0642%" height="15" fill="rgb(223,151,18)" fg:x="77023" fg:w="94"/><text x="52.8732%" y="767.50"></text></g><g><title>update_load_avg (26 samples, 0.02%)</title><rect x="52.6697%" y="741" width="0.0178%" height="15" fill="rgb(227,65,43)" fg:x="77091" fg:w="26"/><text x="52.9197%" y="751.50"></text></g><g><title>enqueue_task_fair (116 samples, 0.08%)</title><rect x="52.6116%" y="773" width="0.0793%" height="15" fill="rgb(218,40,45)" fg:x="77006" fg:w="116"/><text x="52.8616%" y="783.50"></text></g><g><title>ttwu_do_activate (249 samples, 0.17%)</title><rect x="52.6082%" y="789" width="0.1701%" height="15" fill="rgb(252,121,31)" fg:x="77001" fg:w="249"/><text x="52.8582%" y="799.50"></text></g><g><title>psi_task_change (128 samples, 0.09%)</title><rect x="52.6908%" y="773" width="0.0875%" height="15" fill="rgb(219,158,43)" fg:x="77122" fg:w="128"/><text x="52.9408%" y="783.50"></text></g><g><title>psi_group_change (123 samples, 0.08%)</title><rect x="52.6943%" y="757" width="0.0840%" height="15" fill="rgb(231,162,42)" fg:x="77127" fg:w="123"/><text x="52.9443%" y="767.50"></text></g><g><title>record_times (21 samples, 0.01%)</title><rect x="52.7639%" y="741" width="0.0143%" height="15" fill="rgb(217,179,25)" fg:x="77229" fg:w="21"/><text x="53.0139%" y="751.50"></text></g><g><title>sched_clock_cpu (15 samples, 0.01%)</title><rect x="52.7680%" y="725" width="0.0102%" height="15" fill="rgb(206,212,31)" fg:x="77235" fg:w="15"/><text x="53.0180%" y="735.50"></text></g><g><title>ttwu_do_wakeup (17 samples, 0.01%)</title><rect x="52.7783%" y="789" width="0.0116%" height="15" fill="rgb(235,144,12)" fg:x="77250" fg:w="17"/><text x="53.0283%" y="799.50"></text></g><g><title>check_preempt_curr (15 samples, 0.01%)</title><rect x="52.7797%" y="773" width="0.0102%" height="15" fill="rgb(213,51,10)" fg:x="77252" fg:w="15"/><text x="53.0297%" y="783.50"></text></g><g><title>__x64_sys_futex (570 samples, 0.39%)</title><rect x="52.4169%" y="869" width="0.3894%" height="15" fill="rgb(231,145,14)" fg:x="76721" fg:w="570"/><text x="52.6669%" y="879.50"></text></g><g><title>do_futex (570 samples, 0.39%)</title><rect x="52.4169%" y="853" width="0.3894%" height="15" fill="rgb(235,15,28)" fg:x="76721" fg:w="570"/><text x="52.6669%" y="863.50"></text></g><g><title>futex_wake (562 samples, 0.38%)</title><rect x="52.4223%" y="837" width="0.3840%" height="15" fill="rgb(237,206,10)" fg:x="76729" fg:w="562"/><text x="52.6723%" y="847.50"></text></g><g><title>wake_up_q (484 samples, 0.33%)</title><rect x="52.4756%" y="821" width="0.3307%" height="15" fill="rgb(236,227,27)" fg:x="76807" fg:w="484"/><text x="52.7256%" y="831.50"></text></g><g><title>try_to_wake_up (475 samples, 0.32%)</title><rect x="52.4818%" y="805" width="0.3245%" height="15" fill="rgb(246,83,35)" fg:x="76816" fg:w="475"/><text x="52.7318%" y="815.50"></text></g><g><title>update_rq_clock (18 samples, 0.01%)</title><rect x="52.7940%" y="789" width="0.0123%" height="15" fill="rgb(220,136,24)" fg:x="77273" fg:w="18"/><text x="53.0440%" y="799.50"></text></g><g><title>do_syscall_64 (574 samples, 0.39%)</title><rect x="52.4162%" y="885" width="0.3922%" height="15" fill="rgb(217,3,25)" fg:x="76720" fg:w="574"/><text x="52.6662%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (578 samples, 0.39%)</title><rect x="52.4148%" y="901" width="0.3949%" height="15" fill="rgb(239,24,14)" fg:x="76718" fg:w="578"/><text x="52.6648%" y="911.50"></text></g><g><title>__pthread_cond_signal (979 samples, 0.67%)</title><rect x="52.1443%" y="933" width="0.6689%" height="15" fill="rgb(244,16,53)" fg:x="76322" fg:w="979"/><text x="52.3943%" y="943.50"></text></g><g><title>futex_wake (603 samples, 0.41%)</title><rect x="52.4012%" y="917" width="0.4120%" height="15" fill="rgb(208,175,44)" fg:x="76698" fg:w="603"/><text x="52.6512%" y="927.50"></text></g><g><title>std::condition_variable::notify_one (982 samples, 0.67%)</title><rect x="52.1429%" y="949" width="0.6709%" height="15" fill="rgb(252,18,48)" fg:x="76320" fg:w="982"/><text x="52.3929%" y="959.50"></text></g><g><title>__condvar_confirm_wakeup (22 samples, 0.02%)</title><rect x="52.8883%" y="901" width="0.0150%" height="15" fill="rgb(234,199,32)" fg:x="77411" fg:w="22"/><text x="53.1383%" y="911.50"></text></g><g><title>mark_wake_futex (27 samples, 0.02%)</title><rect x="53.0160%" y="789" width="0.0184%" height="15" fill="rgb(225,77,54)" fg:x="77598" fg:w="27"/><text x="53.2660%" y="799.50"></text></g><g><title>select_task_rq_fair (70 samples, 0.05%)</title><rect x="53.0666%" y="757" width="0.0478%" height="15" fill="rgb(225,42,25)" fg:x="77672" fg:w="70"/><text x="53.3166%" y="767.50"></text></g><g><title>update_cfs_rq_h_load (27 samples, 0.02%)</title><rect x="53.0960%" y="741" width="0.0184%" height="15" fill="rgb(242,227,46)" fg:x="77715" fg:w="27"/><text x="53.3460%" y="751.50"></text></g><g><title>enqueue_task_fair (89 samples, 0.06%)</title><rect x="53.1185%" y="741" width="0.0608%" height="15" fill="rgb(246,197,35)" fg:x="77748" fg:w="89"/><text x="53.3685%" y="751.50"></text></g><g><title>enqueue_entity (76 samples, 0.05%)</title><rect x="53.1274%" y="725" width="0.0519%" height="15" fill="rgb(215,159,26)" fg:x="77761" fg:w="76"/><text x="53.3774%" y="735.50"></text></g><g><title>update_load_avg (25 samples, 0.02%)</title><rect x="53.1623%" y="709" width="0.0171%" height="15" fill="rgb(212,194,50)" fg:x="77812" fg:w="25"/><text x="53.4123%" y="719.50"></text></g><g><title>ttwu_do_activate (189 samples, 0.13%)</title><rect x="53.1144%" y="757" width="0.1291%" height="15" fill="rgb(246,132,1)" fg:x="77742" fg:w="189"/><text x="53.3644%" y="767.50"></text></g><g><title>psi_task_change (93 samples, 0.06%)</title><rect x="53.1800%" y="741" width="0.0635%" height="15" fill="rgb(217,71,7)" fg:x="77838" fg:w="93"/><text x="53.4300%" y="751.50"></text></g><g><title>psi_group_change (78 samples, 0.05%)</title><rect x="53.1903%" y="725" width="0.0533%" height="15" fill="rgb(252,59,32)" fg:x="77853" fg:w="78"/><text x="53.4403%" y="735.50"></text></g><g><title>ttwu_do_wakeup (18 samples, 0.01%)</title><rect x="53.2436%" y="757" width="0.0123%" height="15" fill="rgb(253,204,25)" fg:x="77931" fg:w="18"/><text x="53.4936%" y="767.50"></text></g><g><title>check_preempt_curr (17 samples, 0.01%)</title><rect x="53.2442%" y="741" width="0.0116%" height="15" fill="rgb(232,21,16)" fg:x="77932" fg:w="17"/><text x="53.4942%" y="751.50"></text></g><g><title>__x64_sys_futex (439 samples, 0.30%)</title><rect x="52.9785%" y="837" width="0.2999%" height="15" fill="rgb(248,90,29)" fg:x="77543" fg:w="439"/><text x="53.2285%" y="847.50"></text></g><g><title>do_futex (437 samples, 0.30%)</title><rect x="52.9798%" y="821" width="0.2986%" height="15" fill="rgb(249,223,7)" fg:x="77545" fg:w="437"/><text x="53.2298%" y="831.50"></text></g><g><title>futex_wake (433 samples, 0.30%)</title><rect x="52.9826%" y="805" width="0.2958%" height="15" fill="rgb(231,119,42)" fg:x="77549" fg:w="433"/><text x="53.2326%" y="815.50"></text></g><g><title>wake_up_q (354 samples, 0.24%)</title><rect x="53.0365%" y="789" width="0.2419%" height="15" fill="rgb(215,41,35)" fg:x="77628" fg:w="354"/><text x="53.2865%" y="799.50"></text></g><g><title>try_to_wake_up (346 samples, 0.24%)</title><rect x="53.0420%" y="773" width="0.2364%" height="15" fill="rgb(220,44,45)" fg:x="77636" fg:w="346"/><text x="53.2920%" y="783.50"></text></g><g><title>update_rq_clock (21 samples, 0.01%)</title><rect x="53.2641%" y="757" width="0.0143%" height="15" fill="rgb(253,197,36)" fg:x="77961" fg:w="21"/><text x="53.5141%" y="767.50"></text></g><g><title>do_syscall_64 (452 samples, 0.31%)</title><rect x="52.9723%" y="853" width="0.3088%" height="15" fill="rgb(245,225,54)" fg:x="77534" fg:w="452"/><text x="53.2223%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (468 samples, 0.32%)</title><rect x="52.9710%" y="869" width="0.3197%" height="15" fill="rgb(239,94,37)" fg:x="77532" fg:w="468"/><text x="53.2210%" y="879.50"></text></g><g><title>__condvar_dec_grefs (569 samples, 0.39%)</title><rect x="52.9033%" y="901" width="0.3887%" height="15" fill="rgb(242,217,10)" fg:x="77433" fg:w="569"/><text x="53.1533%" y="911.50"></text></g><g><title>futex_wake (480 samples, 0.33%)</title><rect x="52.9641%" y="885" width="0.3279%" height="15" fill="rgb(250,193,7)" fg:x="77522" fg:w="480"/><text x="53.2141%" y="895.50"></text></g><g><title>__condvar_fetch_add_wseq_acquire (22 samples, 0.02%)</title><rect x="53.2921%" y="901" width="0.0150%" height="15" fill="rgb(230,104,19)" fg:x="78002" fg:w="22"/><text x="53.5421%" y="911.50"></text></g><g><title>_raw_spin_lock (20 samples, 0.01%)</title><rect x="53.3945%" y="805" width="0.0137%" height="15" fill="rgb(230,181,4)" fg:x="78152" fg:w="20"/><text x="53.6445%" y="815.50"></text></g><g><title>ttwu_do_activate (21 samples, 0.01%)</title><rect x="53.4396%" y="773" width="0.0143%" height="15" fill="rgb(216,219,49)" fg:x="78218" fg:w="21"/><text x="53.6896%" y="783.50"></text></g><g><title>__x64_sys_futex (142 samples, 0.10%)</title><rect x="53.3597%" y="853" width="0.0970%" height="15" fill="rgb(254,144,0)" fg:x="78101" fg:w="142"/><text x="53.6097%" y="863.50"></text></g><g><title>do_futex (134 samples, 0.09%)</title><rect x="53.3652%" y="837" width="0.0916%" height="15" fill="rgb(205,209,38)" fg:x="78109" fg:w="134"/><text x="53.6152%" y="847.50"></text></g><g><title>futex_wake (122 samples, 0.08%)</title><rect x="53.3734%" y="821" width="0.0834%" height="15" fill="rgb(240,21,42)" fg:x="78121" fg:w="122"/><text x="53.6234%" y="831.50"></text></g><g><title>wake_up_q (50 samples, 0.03%)</title><rect x="53.4226%" y="805" width="0.0342%" height="15" fill="rgb(241,132,3)" fg:x="78193" fg:w="50"/><text x="53.6726%" y="815.50"></text></g><g><title>try_to_wake_up (48 samples, 0.03%)</title><rect x="53.4239%" y="789" width="0.0328%" height="15" fill="rgb(225,14,2)" fg:x="78195" fg:w="48"/><text x="53.6739%" y="799.50"></text></g><g><title>do_syscall_64 (151 samples, 0.10%)</title><rect x="53.3556%" y="869" width="0.1032%" height="15" fill="rgb(210,141,35)" fg:x="78095" fg:w="151"/><text x="53.6056%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (167 samples, 0.11%)</title><rect x="53.3515%" y="885" width="0.1141%" height="15" fill="rgb(251,14,44)" fg:x="78089" fg:w="167"/><text x="53.6015%" y="895.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (236 samples, 0.16%)</title><rect x="53.3085%" y="901" width="0.1612%" height="15" fill="rgb(247,48,18)" fg:x="78026" fg:w="236"/><text x="53.5585%" y="911.50"></text></g><g><title>__pthread_disable_asynccancel (67 samples, 0.05%)</title><rect x="53.5025%" y="885" width="0.0458%" height="15" fill="rgb(225,0,40)" fg:x="78310" fg:w="67"/><text x="53.7525%" y="895.50"></text></g><g><title>__pthread_enable_asynccancel (16 samples, 0.01%)</title><rect x="53.5483%" y="885" width="0.0109%" height="15" fill="rgb(221,31,33)" fg:x="78377" fg:w="16"/><text x="53.7983%" y="895.50"></text></g><g><title>entry_SYSCALL_64 (25 samples, 0.02%)</title><rect x="53.5626%" y="885" width="0.0171%" height="15" fill="rgb(237,42,40)" fg:x="78398" fg:w="25"/><text x="53.8126%" y="895.50"></text></g><g><title>plist_add (56 samples, 0.04%)</title><rect x="53.7860%" y="789" width="0.0383%" height="15" fill="rgb(233,51,29)" fg:x="78725" fg:w="56"/><text x="54.0360%" y="799.50"></text></g><g><title>__list_add_valid (32 samples, 0.02%)</title><rect x="53.8024%" y="773" width="0.0219%" height="15" fill="rgb(226,58,20)" fg:x="78749" fg:w="32"/><text x="54.0524%" y="783.50"></text></g><g><title>_raw_spin_lock (15 samples, 0.01%)</title><rect x="53.9384%" y="741" width="0.0102%" height="15" fill="rgb(208,98,7)" fg:x="78948" fg:w="15"/><text x="54.1884%" y="751.50"></text></g><g><title>__perf_event_task_sched_out (49 samples, 0.03%)</title><rect x="53.9179%" y="757" width="0.0335%" height="15" fill="rgb(228,143,44)" fg:x="78918" fg:w="49"/><text x="54.1679%" y="767.50"></text></g><g><title>_raw_spin_lock (41 samples, 0.03%)</title><rect x="53.9514%" y="757" width="0.0280%" height="15" fill="rgb(246,55,38)" fg:x="78967" fg:w="41"/><text x="54.2014%" y="767.50"></text></g><g><title>reweight_entity (19 samples, 0.01%)</title><rect x="54.0559%" y="725" width="0.0130%" height="15" fill="rgb(247,87,16)" fg:x="79120" fg:w="19"/><text x="54.3059%" y="735.50"></text></g><g><title>update_cfs_group (54 samples, 0.04%)</title><rect x="54.0689%" y="725" width="0.0369%" height="15" fill="rgb(234,129,42)" fg:x="79139" fg:w="54"/><text x="54.3189%" y="735.50"></text></g><g><title>__calc_delta (44 samples, 0.03%)</title><rect x="54.1516%" y="709" width="0.0301%" height="15" fill="rgb(220,82,16)" fg:x="79260" fg:w="44"/><text x="54.4016%" y="719.50"></text></g><g><title>cpuacct_charge (35 samples, 0.02%)</title><rect x="54.1864%" y="709" width="0.0239%" height="15" fill="rgb(211,88,4)" fg:x="79311" fg:w="35"/><text x="54.4364%" y="719.50"></text></g><g><title>update_curr (168 samples, 0.11%)</title><rect x="54.1058%" y="725" width="0.1148%" height="15" fill="rgb(248,151,21)" fg:x="79193" fg:w="168"/><text x="54.3558%" y="735.50"></text></g><g><title>update_min_vruntime (15 samples, 0.01%)</title><rect x="54.2103%" y="709" width="0.0102%" height="15" fill="rgb(238,163,6)" fg:x="79346" fg:w="15"/><text x="54.4603%" y="719.50"></text></g><g><title>__update_load_avg_cfs_rq (31 samples, 0.02%)</title><rect x="54.2670%" y="709" width="0.0212%" height="15" fill="rgb(209,183,11)" fg:x="79429" fg:w="31"/><text x="54.5170%" y="719.50"></text></g><g><title>dequeue_entity (458 samples, 0.31%)</title><rect x="54.0122%" y="741" width="0.3129%" height="15" fill="rgb(219,37,20)" fg:x="79056" fg:w="458"/><text x="54.2622%" y="751.50"></text></g><g><title>update_load_avg (153 samples, 0.10%)</title><rect x="54.2206%" y="725" width="0.1045%" height="15" fill="rgb(210,158,4)" fg:x="79361" fg:w="153"/><text x="54.4706%" y="735.50"></text></g><g><title>__update_load_avg_se (54 samples, 0.04%)</title><rect x="54.2882%" y="709" width="0.0369%" height="15" fill="rgb(221,167,53)" fg:x="79460" fg:w="54"/><text x="54.5382%" y="719.50"></text></g><g><title>dequeue_task_fair (520 samples, 0.36%)</title><rect x="53.9794%" y="757" width="0.3553%" height="15" fill="rgb(237,151,45)" fg:x="79008" fg:w="520"/><text x="54.2294%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (9,762 samples, 6.67%)</title><rect x="54.4986%" y="741" width="6.6695%" height="15" fill="rgb(231,39,3)" fg:x="79768" fg:w="9762"/><text x="54.7486%" y="751.50">__perf_ev..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (9,649 samples, 6.59%)</title><rect x="54.5758%" y="725" width="6.5923%" height="15" fill="rgb(212,167,28)" fg:x="79881" fg:w="9649"/><text x="54.8258%" y="735.50">__intel_p..</text></g><g><title>native_write_msr (9,593 samples, 6.55%)</title><rect x="54.6141%" y="709" width="6.5541%" height="15" fill="rgb(232,178,8)" fg:x="79937" fg:w="9593"/><text x="54.8641%" y="719.50">native_wr..</text></g><g><title>asm_sysvec_apic_timer_interrupt (15 samples, 0.01%)</title><rect x="61.1688%" y="741" width="0.0102%" height="15" fill="rgb(225,151,20)" fg:x="89531" fg:w="15"/><text x="61.4188%" y="751.50"></text></g><g><title>ttwu_do_activate (34 samples, 0.02%)</title><rect x="61.2508%" y="533" width="0.0232%" height="15" fill="rgb(238,3,37)" fg:x="89651" fg:w="34"/><text x="61.5008%" y="543.50"></text></g><g><title>psi_task_change (20 samples, 0.01%)</title><rect x="61.2604%" y="517" width="0.0137%" height="15" fill="rgb(251,147,42)" fg:x="89665" fg:w="20"/><text x="61.5104%" y="527.50"></text></g><g><title>psi_group_change (18 samples, 0.01%)</title><rect x="61.2618%" y="501" width="0.0123%" height="15" fill="rgb(208,173,10)" fg:x="89667" fg:w="18"/><text x="61.5118%" y="511.50"></text></g><g><title>__wake_up_common (61 samples, 0.04%)</title><rect x="61.2337%" y="581" width="0.0417%" height="15" fill="rgb(246,225,4)" fg:x="89626" fg:w="61"/><text x="61.4837%" y="591.50"></text></g><g><title>pollwake (60 samples, 0.04%)</title><rect x="61.2344%" y="565" width="0.0410%" height="15" fill="rgb(248,102,6)" fg:x="89627" fg:w="60"/><text x="61.4844%" y="575.50"></text></g><g><title>try_to_wake_up (60 samples, 0.04%)</title><rect x="61.2344%" y="549" width="0.0410%" height="15" fill="rgb(232,6,21)" fg:x="89627" fg:w="60"/><text x="61.4844%" y="559.50"></text></g><g><title>irq_work_run (75 samples, 0.05%)</title><rect x="61.2255%" y="677" width="0.0512%" height="15" fill="rgb(221,179,22)" fg:x="89614" fg:w="75"/><text x="61.4755%" y="687.50"></text></g><g><title>irq_work_run_list (72 samples, 0.05%)</title><rect x="61.2276%" y="661" width="0.0492%" height="15" fill="rgb(252,50,20)" fg:x="89617" fg:w="72"/><text x="61.4776%" y="671.50"></text></g><g><title>irq_work_single (70 samples, 0.05%)</title><rect x="61.2290%" y="645" width="0.0478%" height="15" fill="rgb(222,56,38)" fg:x="89619" fg:w="70"/><text x="61.4790%" y="655.50"></text></g><g><title>perf_pending_event (68 samples, 0.05%)</title><rect x="61.2303%" y="629" width="0.0465%" height="15" fill="rgb(206,193,29)" fg:x="89621" fg:w="68"/><text x="61.4803%" y="639.50"></text></g><g><title>perf_event_wakeup (63 samples, 0.04%)</title><rect x="61.2337%" y="613" width="0.0430%" height="15" fill="rgb(239,192,45)" fg:x="89626" fg:w="63"/><text x="61.4837%" y="623.50"></text></g><g><title>__wake_up_common_lock (63 samples, 0.04%)</title><rect x="61.2337%" y="597" width="0.0430%" height="15" fill="rgb(254,18,36)" fg:x="89626" fg:w="63"/><text x="61.4837%" y="607.50"></text></g><g><title>asm_call_sysvec_on_stack (87 samples, 0.06%)</title><rect x="61.2208%" y="709" width="0.0594%" height="15" fill="rgb(221,127,11)" fg:x="89607" fg:w="87"/><text x="61.4708%" y="719.50"></text></g><g><title>__sysvec_irq_work (81 samples, 0.06%)</title><rect x="61.2249%" y="693" width="0.0553%" height="15" fill="rgb(234,146,35)" fg:x="89613" fg:w="81"/><text x="61.4749%" y="703.50"></text></g><g><title>asm_sysvec_irq_work (155 samples, 0.11%)</title><rect x="61.1798%" y="741" width="0.1059%" height="15" fill="rgb(254,201,37)" fg:x="89547" fg:w="155"/><text x="61.4298%" y="751.50"></text></g><g><title>sysvec_irq_work (98 samples, 0.07%)</title><rect x="61.2187%" y="725" width="0.0670%" height="15" fill="rgb(211,202,23)" fg:x="89604" fg:w="98"/><text x="61.4687%" y="735.50"></text></g><g><title>finish_task_switch (10,186 samples, 6.96%)</title><rect x="54.3347%" y="757" width="6.9592%" height="15" fill="rgb(237,91,2)" fg:x="79528" fg:w="10186"/><text x="54.5847%" y="767.50">finish_ta..</text></g><g><title>load_balance (28 samples, 0.02%)</title><rect x="61.3355%" y="725" width="0.0191%" height="15" fill="rgb(226,228,36)" fg:x="89775" fg:w="28"/><text x="61.5855%" y="735.50"></text></g><g><title>find_busiest_group (15 samples, 0.01%)</title><rect x="61.3444%" y="709" width="0.0102%" height="15" fill="rgb(213,63,50)" fg:x="89788" fg:w="15"/><text x="61.5944%" y="719.50"></text></g><g><title>update_sd_lb_stats.constprop.0 (15 samples, 0.01%)</title><rect x="61.3444%" y="693" width="0.0102%" height="15" fill="rgb(235,194,19)" fg:x="89788" fg:w="15"/><text x="61.5944%" y="703.50"></text></g><g><title>newidle_balance (83 samples, 0.06%)</title><rect x="61.3014%" y="741" width="0.0567%" height="15" fill="rgb(207,204,18)" fg:x="89725" fg:w="83"/><text x="61.5514%" y="751.50"></text></g><g><title>pick_next_task_fair (101 samples, 0.07%)</title><rect x="61.2939%" y="757" width="0.0690%" height="15" fill="rgb(248,8,7)" fg:x="89714" fg:w="101"/><text x="61.5439%" y="767.50"></text></g><g><title>__update_idle_core (42 samples, 0.03%)</title><rect x="61.3690%" y="741" width="0.0287%" height="15" fill="rgb(223,145,47)" fg:x="89824" fg:w="42"/><text x="61.6190%" y="751.50"></text></g><g><title>pick_next_task_idle (52 samples, 0.04%)</title><rect x="61.3629%" y="757" width="0.0355%" height="15" fill="rgb(228,84,11)" fg:x="89815" fg:w="52"/><text x="61.6129%" y="767.50"></text></g><g><title>psi_task_change (359 samples, 0.25%)</title><rect x="61.3984%" y="757" width="0.2453%" height="15" fill="rgb(218,76,45)" fg:x="89867" fg:w="359"/><text x="61.6484%" y="767.50"></text></g><g><title>psi_group_change (301 samples, 0.21%)</title><rect x="61.4380%" y="741" width="0.2056%" height="15" fill="rgb(223,80,15)" fg:x="89925" fg:w="301"/><text x="61.6880%" y="751.50"></text></g><g><title>record_times (82 samples, 0.06%)</title><rect x="61.5877%" y="725" width="0.0560%" height="15" fill="rgb(219,218,33)" fg:x="90144" fg:w="82"/><text x="61.8377%" y="735.50"></text></g><g><title>sched_clock_cpu (60 samples, 0.04%)</title><rect x="61.6027%" y="709" width="0.0410%" height="15" fill="rgb(208,51,11)" fg:x="90166" fg:w="60"/><text x="61.8527%" y="719.50"></text></g><g><title>sched_clock (56 samples, 0.04%)</title><rect x="61.6054%" y="693" width="0.0383%" height="15" fill="rgb(229,165,39)" fg:x="90170" fg:w="56"/><text x="61.8554%" y="703.50"></text></g><g><title>native_sched_clock (54 samples, 0.04%)</title><rect x="61.6068%" y="677" width="0.0369%" height="15" fill="rgb(241,100,24)" fg:x="90172" fg:w="54"/><text x="61.8568%" y="687.50"></text></g><g><title>put_prev_task_fair (19 samples, 0.01%)</title><rect x="61.6498%" y="757" width="0.0130%" height="15" fill="rgb(228,14,23)" fg:x="90235" fg:w="19"/><text x="61.8998%" y="767.50"></text></g><g><title>put_prev_entity (15 samples, 0.01%)</title><rect x="61.6526%" y="741" width="0.0102%" height="15" fill="rgb(247,116,52)" fg:x="90239" fg:w="15"/><text x="61.9026%" y="751.50"></text></g><g><title>futex_wait_queue_me (11,667 samples, 7.97%)</title><rect x="53.7259%" y="805" width="7.9711%" height="15" fill="rgb(216,149,33)" fg:x="78637" fg:w="11667"/><text x="53.9759%" y="815.50">futex_wait_..</text></g><g><title>schedule (11,523 samples, 7.87%)</title><rect x="53.8243%" y="789" width="7.8727%" height="15" fill="rgb(238,142,29)" fg:x="78781" fg:w="11523"/><text x="54.0743%" y="799.50">schedule</text></g><g><title>__schedule (11,499 samples, 7.86%)</title><rect x="53.8407%" y="773" width="7.8563%" height="15" fill="rgb(224,83,40)" fg:x="78805" fg:w="11499"/><text x="54.0907%" y="783.50">__schedule</text></g><g><title>update_rq_clock (47 samples, 0.03%)</title><rect x="61.6649%" y="757" width="0.0321%" height="15" fill="rgb(234,165,11)" fg:x="90257" fg:w="47"/><text x="61.9149%" y="767.50"></text></g><g><title>sched_clock_cpu (25 samples, 0.02%)</title><rect x="61.6799%" y="741" width="0.0171%" height="15" fill="rgb(215,96,23)" fg:x="90279" fg:w="25"/><text x="61.9299%" y="751.50"></text></g><g><title>sched_clock (23 samples, 0.02%)</title><rect x="61.6813%" y="725" width="0.0157%" height="15" fill="rgb(233,179,26)" fg:x="90281" fg:w="23"/><text x="61.9313%" y="735.50"></text></g><g><title>native_sched_clock (22 samples, 0.02%)</title><rect x="61.6819%" y="709" width="0.0150%" height="15" fill="rgb(225,129,33)" fg:x="90282" fg:w="22"/><text x="61.9319%" y="719.50"></text></g><g><title>__get_user_nocheck_4 (43 samples, 0.03%)</title><rect x="61.7550%" y="789" width="0.0294%" height="15" fill="rgb(237,49,13)" fg:x="90389" fg:w="43"/><text x="62.0050%" y="799.50"></text></g><g><title>_raw_spin_lock (41 samples, 0.03%)</title><rect x="61.7844%" y="789" width="0.0280%" height="15" fill="rgb(211,3,31)" fg:x="90432" fg:w="41"/><text x="62.0344%" y="799.50"></text></g><g><title>native_queued_spin_lock_slowpath (24 samples, 0.02%)</title><rect x="61.7960%" y="773" width="0.0164%" height="15" fill="rgb(216,152,19)" fg:x="90449" fg:w="24"/><text x="62.0460%" y="783.50"></text></g><g><title>__x64_sys_futex (12,027 samples, 8.22%)</title><rect x="53.6145%" y="853" width="8.2170%" height="15" fill="rgb(251,121,35)" fg:x="78474" fg:w="12027"/><text x="53.8645%" y="863.50">__x64_sys_f..</text></g><g><title>do_futex (11,992 samples, 8.19%)</title><rect x="53.6385%" y="837" width="8.1931%" height="15" fill="rgb(210,217,47)" fg:x="78509" fg:w="11992"/><text x="53.8885%" y="847.50">do_futex</text></g><g><title>futex_wait (11,944 samples, 8.16%)</title><rect x="53.6713%" y="821" width="8.1603%" height="15" fill="rgb(244,116,22)" fg:x="78557" fg:w="11944"/><text x="53.9213%" y="831.50">futex_wait</text></g><g><title>futex_wait_setup (197 samples, 0.13%)</title><rect x="61.6970%" y="805" width="0.1346%" height="15" fill="rgb(228,17,21)" fg:x="90304" fg:w="197"/><text x="61.9470%" y="815.50"></text></g><g><title>hash_futex (19 samples, 0.01%)</title><rect x="61.8186%" y="789" width="0.0130%" height="15" fill="rgb(240,149,34)" fg:x="90482" fg:w="19"/><text x="62.0686%" y="799.50"></text></g><g><title>do_syscall_64 (12,057 samples, 8.24%)</title><rect x="53.5968%" y="869" width="8.2375%" height="15" fill="rgb(208,125,47)" fg:x="78448" fg:w="12057"/><text x="53.8468%" y="879.50">do_syscall_..</text></g><g><title>entry_SYSCALL_64_after_hwframe (12,282 samples, 8.39%)</title><rect x="53.5797%" y="885" width="8.3912%" height="15" fill="rgb(249,186,39)" fg:x="78423" fg:w="12282"/><text x="53.8297%" y="895.50">entry_SYSCAL..</text></g><g><title>syscall_exit_to_user_mode (200 samples, 0.14%)</title><rect x="61.8343%" y="869" width="0.1366%" height="15" fill="rgb(240,220,33)" fg:x="90505" fg:w="200"/><text x="62.0843%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (191 samples, 0.13%)</title><rect x="61.8404%" y="853" width="0.1305%" height="15" fill="rgb(243,110,23)" fg:x="90514" fg:w="191"/><text x="62.0904%" y="863.50"></text></g><g><title>switch_fpu_return (175 samples, 0.12%)</title><rect x="61.8514%" y="837" width="0.1196%" height="15" fill="rgb(219,163,46)" fg:x="90530" fg:w="175"/><text x="62.1014%" y="847.50"></text></g><g><title>copy_kernel_to_fpregs (124 samples, 0.08%)</title><rect x="61.8862%" y="821" width="0.0847%" height="15" fill="rgb(216,126,30)" fg:x="90581" fg:w="124"/><text x="62.1362%" y="831.50"></text></g><g><title>__pthread_cond_wait (13,393 samples, 9.15%)</title><rect x="52.8377%" y="933" width="9.1503%" height="15" fill="rgb(208,139,11)" fg:x="77337" fg:w="13393"/><text x="53.0877%" y="943.50">__pthread_con..</text></g><g><title>__pthread_cond_wait_common (13,392 samples, 9.15%)</title><rect x="52.8384%" y="917" width="9.1496%" height="15" fill="rgb(213,118,36)" fg:x="77338" fg:w="13392"/><text x="53.0884%" y="927.50">__pthread_con..</text></g><g><title>futex_wait_cancelable (12,462 samples, 8.51%)</title><rect x="53.4738%" y="901" width="8.5142%" height="15" fill="rgb(226,43,17)" fg:x="78268" fg:w="12462"/><text x="53.7238%" y="911.50">futex_wait_c..</text></g><g><title>syscall_return_via_sysret (24 samples, 0.02%)</title><rect x="61.9716%" y="885" width="0.0164%" height="15" fill="rgb(254,217,4)" fg:x="90706" fg:w="24"/><text x="62.2216%" y="895.50"></text></g><g><title>dequeue_task_fair (34 samples, 0.02%)</title><rect x="62.0420%" y="773" width="0.0232%" height="15" fill="rgb(210,134,47)" fg:x="90809" fg:w="34"/><text x="62.2920%" y="783.50"></text></g><g><title>dequeue_entity (33 samples, 0.02%)</title><rect x="62.0427%" y="757" width="0.0225%" height="15" fill="rgb(237,24,49)" fg:x="90810" fg:w="33"/><text x="62.2927%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (193 samples, 0.13%)</title><rect x="62.0693%" y="757" width="0.1319%" height="15" fill="rgb(251,39,46)" fg:x="90849" fg:w="193"/><text x="62.3193%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (191 samples, 0.13%)</title><rect x="62.0707%" y="741" width="0.1305%" height="15" fill="rgb(251,220,3)" fg:x="90851" fg:w="191"/><text x="62.3207%" y="751.50"></text></g><g><title>native_write_msr (191 samples, 0.13%)</title><rect x="62.0707%" y="725" width="0.1305%" height="15" fill="rgb(228,105,12)" fg:x="90851" fg:w="191"/><text x="62.3207%" y="735.50"></text></g><g><title>finish_task_switch (202 samples, 0.14%)</title><rect x="62.0652%" y="773" width="0.1380%" height="15" fill="rgb(215,196,1)" fg:x="90843" fg:w="202"/><text x="62.3152%" y="783.50"></text></g><g><title>psi_task_change (18 samples, 0.01%)</title><rect x="62.2107%" y="773" width="0.0123%" height="15" fill="rgb(214,33,39)" fg:x="91056" fg:w="18"/><text x="62.4607%" y="783.50"></text></g><g><title>psi_group_change (17 samples, 0.01%)</title><rect x="62.2114%" y="757" width="0.0116%" height="15" fill="rgb(220,19,52)" fg:x="91057" fg:w="17"/><text x="62.4614%" y="767.50"></text></g><g><title>futex_wait_queue_me (284 samples, 0.19%)</title><rect x="62.0331%" y="821" width="0.1940%" height="15" fill="rgb(221,78,38)" fg:x="90796" fg:w="284"/><text x="62.2831%" y="831.50"></text></g><g><title>schedule (283 samples, 0.19%)</title><rect x="62.0338%" y="805" width="0.1933%" height="15" fill="rgb(253,30,16)" fg:x="90797" fg:w="283"/><text x="62.2838%" y="815.50"></text></g><g><title>__schedule (281 samples, 0.19%)</title><rect x="62.0352%" y="789" width="0.1920%" height="15" fill="rgb(242,65,0)" fg:x="90799" fg:w="281"/><text x="62.2852%" y="799.50"></text></g><g><title>__x64_sys_futex (326 samples, 0.22%)</title><rect x="62.0263%" y="869" width="0.2227%" height="15" fill="rgb(235,201,12)" fg:x="90786" fg:w="326"/><text x="62.2763%" y="879.50"></text></g><g><title>do_futex (325 samples, 0.22%)</title><rect x="62.0270%" y="853" width="0.2220%" height="15" fill="rgb(233,161,9)" fg:x="90787" fg:w="325"/><text x="62.2770%" y="863.50"></text></g><g><title>futex_wait (323 samples, 0.22%)</title><rect x="62.0283%" y="837" width="0.2207%" height="15" fill="rgb(241,207,41)" fg:x="90789" fg:w="323"/><text x="62.2783%" y="847.50"></text></g><g><title>futex_wait_setup (32 samples, 0.02%)</title><rect x="62.2271%" y="821" width="0.0219%" height="15" fill="rgb(212,69,46)" fg:x="91080" fg:w="32"/><text x="62.4771%" y="831.50"></text></g><g><title>do_syscall_64 (331 samples, 0.23%)</title><rect x="62.0235%" y="885" width="0.2261%" height="15" fill="rgb(239,69,45)" fg:x="90782" fg:w="331"/><text x="62.2735%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (340 samples, 0.23%)</title><rect x="62.0229%" y="901" width="0.2323%" height="15" fill="rgb(242,117,48)" fg:x="90781" fg:w="340"/><text x="62.2729%" y="911.50"></text></g><g><title>__pthread_mutex_cond_lock (393 samples, 0.27%)</title><rect x="61.9880%" y="933" width="0.2685%" height="15" fill="rgb(228,41,36)" fg:x="90730" fg:w="393"/><text x="62.2380%" y="943.50"></text></g><g><title>__lll_lock_wait (360 samples, 0.25%)</title><rect x="62.0106%" y="917" width="0.2460%" height="15" fill="rgb(212,3,32)" fg:x="90763" fg:w="360"/><text x="62.2606%" y="927.50"></text></g><g><title>std::condition_variable::wait (13,842 samples, 9.46%)</title><rect x="52.8138%" y="949" width="9.4570%" height="15" fill="rgb(233,41,49)" fg:x="77302" fg:w="13842"/><text x="53.0638%" y="959.50">std::condition..</text></g><g><title>pthread_cond_wait@plt (21 samples, 0.01%)</title><rect x="62.2565%" y="933" width="0.0143%" height="15" fill="rgb(252,170,49)" fg:x="91123" fg:w="21"/><text x="62.5065%" y="943.50"></text></g><g><title>alloc_pages_vma (24 samples, 0.02%)</title><rect x="62.2852%" y="821" width="0.0164%" height="15" fill="rgb(229,53,26)" fg:x="91165" fg:w="24"/><text x="62.5352%" y="831.50"></text></g><g><title>__alloc_pages_nodemask (24 samples, 0.02%)</title><rect x="62.2852%" y="805" width="0.0164%" height="15" fill="rgb(217,157,12)" fg:x="91165" fg:w="24"/><text x="62.5352%" y="815.50"></text></g><g><title>get_page_from_freelist (23 samples, 0.02%)</title><rect x="62.2859%" y="789" width="0.0157%" height="15" fill="rgb(227,17,9)" fg:x="91166" fg:w="23"/><text x="62.5359%" y="799.50"></text></g><g><title>prep_new_page (23 samples, 0.02%)</title><rect x="62.2859%" y="773" width="0.0157%" height="15" fill="rgb(218,84,12)" fg:x="91166" fg:w="23"/><text x="62.5359%" y="783.50"></text></g><g><title>kernel_init_free_pages (23 samples, 0.02%)</title><rect x="62.2859%" y="757" width="0.0157%" height="15" fill="rgb(212,79,24)" fg:x="91166" fg:w="23"/><text x="62.5359%" y="767.50"></text></g><g><title>clear_page_erms (21 samples, 0.01%)</title><rect x="62.2873%" y="741" width="0.0143%" height="15" fill="rgb(217,222,37)" fg:x="91168" fg:w="21"/><text x="62.5373%" y="751.50"></text></g><g><title>handle_mm_fault (40 samples, 0.03%)</title><rect x="62.2791%" y="853" width="0.0273%" height="15" fill="rgb(246,208,8)" fg:x="91156" fg:w="40"/><text x="62.5291%" y="863.50"></text></g><g><title>do_huge_pmd_anonymous_page (31 samples, 0.02%)</title><rect x="62.2852%" y="837" width="0.0212%" height="15" fill="rgb(244,133,10)" fg:x="91165" fg:w="31"/><text x="62.5352%" y="847.50"></text></g><g><title>asm_exc_page_fault (41 samples, 0.03%)</title><rect x="62.2791%" y="901" width="0.0280%" height="15" fill="rgb(209,219,41)" fg:x="91156" fg:w="41"/><text x="62.5291%" y="911.50"></text></g><g><title>exc_page_fault (41 samples, 0.03%)</title><rect x="62.2791%" y="885" width="0.0280%" height="15" fill="rgb(253,175,45)" fg:x="91156" fg:w="41"/><text x="62.5291%" y="895.50"></text></g><g><title>do_user_addr_fault (41 samples, 0.03%)</title><rect x="62.2791%" y="869" width="0.0280%" height="15" fill="rgb(235,100,37)" fg:x="91156" fg:w="41"/><text x="62.5291%" y="879.50"></text></g><g><title>allocate_stack (58 samples, 0.04%)</title><rect x="62.2709%" y="917" width="0.0396%" height="15" fill="rgb(225,87,19)" fg:x="91144" fg:w="58"/><text x="62.5209%" y="927.50"></text></g><g><title>__pthread_create_2_1 (61 samples, 0.04%)</title><rect x="62.2709%" y="933" width="0.0417%" height="15" fill="rgb(217,152,17)" fg:x="91144" fg:w="61"/><text x="62.5209%" y="943.50"></text></g><g><title>[ld.lld] (18,571 samples, 12.69%)</title><rect x="49.6253%" y="965" width="12.6880%" height="15" fill="rgb(235,72,13)" fg:x="72635" fg:w="18571"/><text x="49.8753%" y="975.50">[ld.lld]</text></g><g><title>std::thread::_M_start_thread (62 samples, 0.04%)</title><rect x="62.2709%" y="949" width="0.0424%" height="15" fill="rgb(233,140,18)" fg:x="91144" fg:w="62"/><text x="62.5209%" y="959.50"></text></g><g><title>__vmalloc_node_range (16 samples, 0.01%)</title><rect x="62.3248%" y="853" width="0.0109%" height="15" fill="rgb(207,212,28)" fg:x="91223" fg:w="16"/><text x="62.5748%" y="863.50"></text></g><g><title>copy_process (47 samples, 0.03%)</title><rect x="62.3221%" y="869" width="0.0321%" height="15" fill="rgb(220,130,25)" fg:x="91219" fg:w="47"/><text x="62.5721%" y="879.50"></text></g><g><title>perf_event_init_task (19 samples, 0.01%)</title><rect x="62.3412%" y="853" width="0.0130%" height="15" fill="rgb(205,55,34)" fg:x="91247" fg:w="19"/><text x="62.5912%" y="863.50"></text></g><g><title>inherit_task_group.isra.0 (19 samples, 0.01%)</title><rect x="62.3412%" y="837" width="0.0130%" height="15" fill="rgb(237,54,35)" fg:x="91247" fg:w="19"/><text x="62.5912%" y="847.50"></text></g><g><title>inherit_event.constprop.0 (16 samples, 0.01%)</title><rect x="62.3433%" y="821" width="0.0109%" height="15" fill="rgb(208,67,23)" fg:x="91250" fg:w="16"/><text x="62.5933%" y="831.50"></text></g><g><title>perf_event_alloc (16 samples, 0.01%)</title><rect x="62.3433%" y="805" width="0.0109%" height="15" fill="rgb(206,207,50)" fg:x="91250" fg:w="16"/><text x="62.5933%" y="815.50"></text></g><g><title>__GI___clone (58 samples, 0.04%)</title><rect x="62.3221%" y="949" width="0.0396%" height="15" fill="rgb(213,211,42)" fg:x="91219" fg:w="58"/><text x="62.5721%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.04%)</title><rect x="62.3221%" y="933" width="0.0396%" height="15" fill="rgb(252,197,50)" fg:x="91219" fg:w="58"/><text x="62.5721%" y="943.50"></text></g><g><title>do_syscall_64 (58 samples, 0.04%)</title><rect x="62.3221%" y="917" width="0.0396%" height="15" fill="rgb(251,211,41)" fg:x="91219" fg:w="58"/><text x="62.5721%" y="927.50"></text></g><g><title>__do_sys_clone (58 samples, 0.04%)</title><rect x="62.3221%" y="901" width="0.0396%" height="15" fill="rgb(229,211,5)" fg:x="91219" fg:w="58"/><text x="62.5721%" y="911.50"></text></g><g><title>kernel_clone (58 samples, 0.04%)</title><rect x="62.3221%" y="885" width="0.0396%" height="15" fill="rgb(239,36,31)" fg:x="91219" fg:w="58"/><text x="62.5721%" y="895.50"></text></g><g><title>[unknown] (78 samples, 0.05%)</title><rect x="62.3180%" y="965" width="0.0533%" height="15" fill="rgb(248,67,31)" fg:x="91213" fg:w="78"/><text x="62.5680%" y="975.50"></text></g><g><title>calculate_sigpending (17 samples, 0.01%)</title><rect x="62.3829%" y="933" width="0.0116%" height="15" fill="rgb(249,55,44)" fg:x="91308" fg:w="17"/><text x="62.6329%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (1,748 samples, 1.19%)</title><rect x="62.4164%" y="901" width="1.1943%" height="15" fill="rgb(216,82,12)" fg:x="91357" fg:w="1748"/><text x="62.6664%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,714 samples, 1.17%)</title><rect x="62.4396%" y="885" width="1.1710%" height="15" fill="rgb(242,174,1)" fg:x="91391" fg:w="1714"/><text x="62.6896%" y="895.50"></text></g><g><title>native_write_msr (1,703 samples, 1.16%)</title><rect x="62.4471%" y="869" width="1.1635%" height="15" fill="rgb(208,120,29)" fg:x="91402" fg:w="1703"/><text x="62.6971%" y="879.50"></text></g><g><title>__wake_up_common (18 samples, 0.01%)</title><rect x="63.6229%" y="741" width="0.0123%" height="15" fill="rgb(221,105,43)" fg:x="93123" fg:w="18"/><text x="63.8729%" y="751.50"></text></g><g><title>pollwake (17 samples, 0.01%)</title><rect x="63.6236%" y="725" width="0.0116%" height="15" fill="rgb(234,124,22)" fg:x="93124" fg:w="17"/><text x="63.8736%" y="735.50"></text></g><g><title>try_to_wake_up (15 samples, 0.01%)</title><rect x="63.6250%" y="709" width="0.0102%" height="15" fill="rgb(212,23,30)" fg:x="93126" fg:w="15"/><text x="63.8750%" y="719.50"></text></g><g><title>irq_work_run (22 samples, 0.02%)</title><rect x="63.6216%" y="837" width="0.0150%" height="15" fill="rgb(219,122,53)" fg:x="93121" fg:w="22"/><text x="63.8716%" y="847.50"></text></g><g><title>irq_work_run_list (22 samples, 0.02%)</title><rect x="63.6216%" y="821" width="0.0150%" height="15" fill="rgb(248,84,24)" fg:x="93121" fg:w="22"/><text x="63.8716%" y="831.50"></text></g><g><title>irq_work_single (22 samples, 0.02%)</title><rect x="63.6216%" y="805" width="0.0150%" height="15" fill="rgb(245,115,18)" fg:x="93121" fg:w="22"/><text x="63.8716%" y="815.50"></text></g><g><title>perf_pending_event (22 samples, 0.02%)</title><rect x="63.6216%" y="789" width="0.0150%" height="15" fill="rgb(227,176,51)" fg:x="93121" fg:w="22"/><text x="63.8716%" y="799.50"></text></g><g><title>perf_event_wakeup (20 samples, 0.01%)</title><rect x="63.6229%" y="773" width="0.0137%" height="15" fill="rgb(229,63,42)" fg:x="93123" fg:w="20"/><text x="63.8729%" y="783.50"></text></g><g><title>__wake_up_common_lock (20 samples, 0.01%)</title><rect x="63.6229%" y="757" width="0.0137%" height="15" fill="rgb(247,202,24)" fg:x="93123" fg:w="20"/><text x="63.8729%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (26 samples, 0.02%)</title><rect x="63.6195%" y="869" width="0.0178%" height="15" fill="rgb(244,173,20)" fg:x="93118" fg:w="26"/><text x="63.8695%" y="879.50"></text></g><g><title>__sysvec_irq_work (24 samples, 0.02%)</title><rect x="63.6209%" y="853" width="0.0164%" height="15" fill="rgb(242,81,47)" fg:x="93120" fg:w="24"/><text x="63.8709%" y="863.50"></text></g><g><title>asm_sysvec_irq_work (38 samples, 0.03%)</title><rect x="63.6120%" y="901" width="0.0260%" height="15" fill="rgb(231,185,54)" fg:x="93107" fg:w="38"/><text x="63.8620%" y="911.50"></text></g><g><title>sysvec_irq_work (27 samples, 0.02%)</title><rect x="63.6195%" y="885" width="0.0184%" height="15" fill="rgb(243,55,32)" fg:x="93118" fg:w="27"/><text x="63.8695%" y="895.50"></text></g><g><title>schedule_tail (1,821 samples, 1.24%)</title><rect x="62.3945%" y="933" width="1.2441%" height="15" fill="rgb(208,167,19)" fg:x="91325" fg:w="1821"/><text x="62.6445%" y="943.50"></text></g><g><title>finish_task_switch (1,818 samples, 1.24%)</title><rect x="62.3966%" y="917" width="1.2421%" height="15" fill="rgb(231,72,35)" fg:x="91328" fg:w="1818"/><text x="62.6466%" y="927.50"></text></g><g><title>ret_from_fork (1,851 samples, 1.26%)</title><rect x="62.3815%" y="949" width="1.2646%" height="15" fill="rgb(250,173,51)" fg:x="91306" fg:w="1851"/><text x="62.6315%" y="959.50"></text></g><g><title>_raw_spin_lock (20 samples, 0.01%)</title><rect x="63.6680%" y="805" width="0.0137%" height="15" fill="rgb(209,5,22)" fg:x="93189" fg:w="20"/><text x="63.9180%" y="815.50"></text></g><g><title>native_queued_spin_lock_slowpath (20 samples, 0.01%)</title><rect x="63.6680%" y="789" width="0.0137%" height="15" fill="rgb(250,174,19)" fg:x="93189" fg:w="20"/><text x="63.9180%" y="799.50"></text></g><g><title>alloc_set_pte (21 samples, 0.01%)</title><rect x="63.6680%" y="821" width="0.0143%" height="15" fill="rgb(217,3,49)" fg:x="93189" fg:w="21"/><text x="63.9180%" y="831.50"></text></g><g><title>filemap_map_pages (28 samples, 0.02%)</title><rect x="63.6653%" y="837" width="0.0191%" height="15" fill="rgb(218,225,5)" fg:x="93185" fg:w="28"/><text x="63.9153%" y="847.50"></text></g><g><title>exc_page_fault (38 samples, 0.03%)</title><rect x="63.6598%" y="885" width="0.0260%" height="15" fill="rgb(236,89,11)" fg:x="93177" fg:w="38"/><text x="63.9098%" y="895.50"></text></g><g><title>do_user_addr_fault (38 samples, 0.03%)</title><rect x="63.6598%" y="869" width="0.0260%" height="15" fill="rgb(206,33,28)" fg:x="93177" fg:w="38"/><text x="63.9098%" y="879.50"></text></g><g><title>handle_mm_fault (35 samples, 0.02%)</title><rect x="63.6619%" y="853" width="0.0239%" height="15" fill="rgb(241,56,42)" fg:x="93180" fg:w="35"/><text x="63.9119%" y="863.50"></text></g><g><title>__res_thread_freeres (39 samples, 0.03%)</title><rect x="63.6598%" y="917" width="0.0266%" height="15" fill="rgb(222,44,11)" fg:x="93177" fg:w="39"/><text x="63.9098%" y="927.50"></text></g><g><title>asm_exc_page_fault (39 samples, 0.03%)</title><rect x="63.6598%" y="901" width="0.0266%" height="15" fill="rgb(234,111,20)" fg:x="93177" fg:w="39"/><text x="63.9098%" y="911.50"></text></g><g><title>__libc_thread_freeres (54 samples, 0.04%)</title><rect x="63.6598%" y="933" width="0.0369%" height="15" fill="rgb(237,77,6)" fg:x="93177" fg:w="54"/><text x="63.9098%" y="943.50"></text></g><g><title>__malloc_arena_thread_freeres (16 samples, 0.01%)</title><rect x="63.6967%" y="933" width="0.0109%" height="15" fill="rgb(235,111,23)" fg:x="93231" fg:w="16"/><text x="63.9467%" y="943.50"></text></g><g><title>lru_add_drain (15 samples, 0.01%)</title><rect x="63.7159%" y="821" width="0.0102%" height="15" fill="rgb(251,135,29)" fg:x="93259" fg:w="15"/><text x="63.9659%" y="831.50"></text></g><g><title>flush_tlb_mm_range (44 samples, 0.03%)</title><rect x="63.7268%" y="805" width="0.0301%" height="15" fill="rgb(217,57,1)" fg:x="93275" fg:w="44"/><text x="63.9768%" y="815.50"></text></g><g><title>smp_call_function_many_cond (43 samples, 0.03%)</title><rect x="63.7275%" y="789" width="0.0294%" height="15" fill="rgb(249,119,31)" fg:x="93276" fg:w="43"/><text x="63.9775%" y="799.50"></text></g><g><title>tlb_finish_mmu (47 samples, 0.03%)</title><rect x="63.7261%" y="821" width="0.0321%" height="15" fill="rgb(233,164,33)" fg:x="93274" fg:w="47"/><text x="63.9761%" y="831.50"></text></g><g><title>do_syscall_64 (101 samples, 0.07%)</title><rect x="63.7131%" y="885" width="0.0690%" height="15" fill="rgb(250,217,43)" fg:x="93255" fg:w="101"/><text x="63.9631%" y="895.50"></text></g><g><title>__x64_sys_madvise (101 samples, 0.07%)</title><rect x="63.7131%" y="869" width="0.0690%" height="15" fill="rgb(232,154,50)" fg:x="93255" fg:w="101"/><text x="63.9631%" y="879.50"></text></g><g><title>do_madvise.part.0 (101 samples, 0.07%)</title><rect x="63.7131%" y="853" width="0.0690%" height="15" fill="rgb(227,190,8)" fg:x="93255" fg:w="101"/><text x="63.9631%" y="863.50"></text></g><g><title>zap_page_range (98 samples, 0.07%)</title><rect x="63.7152%" y="837" width="0.0670%" height="15" fill="rgb(209,217,32)" fg:x="93258" fg:w="98"/><text x="63.9652%" y="847.50"></text></g><g><title>unmap_page_range (34 samples, 0.02%)</title><rect x="63.7589%" y="821" width="0.0232%" height="15" fill="rgb(243,203,50)" fg:x="93322" fg:w="34"/><text x="64.0089%" y="831.50"></text></g><g><title>__GI_madvise (103 samples, 0.07%)</title><rect x="63.7124%" y="917" width="0.0704%" height="15" fill="rgb(232,152,27)" fg:x="93254" fg:w="103"/><text x="63.9624%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.07%)</title><rect x="63.7131%" y="901" width="0.0697%" height="15" fill="rgb(240,34,29)" fg:x="93255" fg:w="102"/><text x="63.9631%" y="911.50"></text></g><g><title>advise_stack_range (106 samples, 0.07%)</title><rect x="63.7124%" y="933" width="0.0724%" height="15" fill="rgb(215,185,52)" fg:x="93254" fg:w="106"/><text x="63.9624%" y="943.50"></text></g><g><title>__x64_sys_exit (20 samples, 0.01%)</title><rect x="63.7876%" y="901" width="0.0137%" height="15" fill="rgb(240,89,49)" fg:x="93364" fg:w="20"/><text x="64.0376%" y="911.50"></text></g><g><title>do_exit (20 samples, 0.01%)</title><rect x="63.7876%" y="885" width="0.0137%" height="15" fill="rgb(225,12,52)" fg:x="93364" fg:w="20"/><text x="64.0376%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="63.7849%" y="933" width="0.0184%" height="15" fill="rgb(239,128,45)" fg:x="93360" fg:w="27"/><text x="64.0349%" y="943.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="63.7856%" y="917" width="0.0178%" height="15" fill="rgb(211,78,47)" fg:x="93361" fg:w="26"/><text x="64.0356%" y="927.50"></text></g><g><title>__GI___clone (2,098 samples, 1.43%)</title><rect x="62.3713%" y="965" width="1.4334%" height="15" fill="rgb(232,31,21)" fg:x="91291" fg:w="2098"/><text x="62.6213%" y="975.50"></text></g><g><title>start_thread (232 samples, 0.16%)</title><rect x="63.6462%" y="949" width="0.1585%" height="15" fill="rgb(222,168,14)" fg:x="93157" fg:w="232"/><text x="63.8962%" y="959.50"></text></g><g><title>do_mmap (15 samples, 0.01%)</title><rect x="63.8231%" y="693" width="0.0102%" height="15" fill="rgb(209,128,24)" fg:x="93416" fg:w="15"/><text x="64.0731%" y="703.50"></text></g><g><title>mmap_region (15 samples, 0.01%)</title><rect x="63.8231%" y="677" width="0.0102%" height="15" fill="rgb(249,35,13)" fg:x="93416" fg:w="15"/><text x="64.0731%" y="687.50"></text></g><g><title>ksys_mmap_pgoff (18 samples, 0.01%)</title><rect x="63.8224%" y="725" width="0.0123%" height="15" fill="rgb(218,7,2)" fg:x="93415" fg:w="18"/><text x="64.0724%" y="735.50"></text></g><g><title>vm_mmap_pgoff (17 samples, 0.01%)</title><rect x="63.8231%" y="709" width="0.0116%" height="15" fill="rgb(238,107,27)" fg:x="93416" fg:w="17"/><text x="64.0731%" y="719.50"></text></g><g><title>_dl_map_segments (26 samples, 0.02%)</title><rect x="63.8197%" y="805" width="0.0178%" height="15" fill="rgb(217,88,38)" fg:x="93411" fg:w="26"/><text x="64.0697%" y="815.50"></text></g><g><title>__mmap64 (22 samples, 0.02%)</title><rect x="63.8224%" y="789" width="0.0150%" height="15" fill="rgb(230,207,0)" fg:x="93415" fg:w="22"/><text x="64.0724%" y="799.50"></text></g><g><title>__mmap64 (22 samples, 0.02%)</title><rect x="63.8224%" y="773" width="0.0150%" height="15" fill="rgb(249,64,54)" fg:x="93415" fg:w="22"/><text x="64.0724%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="63.8224%" y="757" width="0.0150%" height="15" fill="rgb(231,7,11)" fg:x="93415" fg:w="22"/><text x="64.0724%" y="767.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="63.8224%" y="741" width="0.0150%" height="15" fill="rgb(205,149,21)" fg:x="93415" fg:w="22"/><text x="64.0724%" y="751.50"></text></g><g><title>_dl_map_object_from_fd (38 samples, 0.03%)</title><rect x="63.8197%" y="821" width="0.0260%" height="15" fill="rgb(215,126,34)" fg:x="93411" fg:w="38"/><text x="64.0697%" y="831.50"></text></g><g><title>_dl_map_object_deps (52 samples, 0.04%)</title><rect x="63.8197%" y="885" width="0.0355%" height="15" fill="rgb(241,132,45)" fg:x="93411" fg:w="52"/><text x="64.0697%" y="895.50"></text></g><g><title>_dl_catch_exception (52 samples, 0.04%)</title><rect x="63.8197%" y="869" width="0.0355%" height="15" fill="rgb(252,69,32)" fg:x="93411" fg:w="52"/><text x="64.0697%" y="879.50"></text></g><g><title>openaux (52 samples, 0.04%)</title><rect x="63.8197%" y="853" width="0.0355%" height="15" fill="rgb(232,204,19)" fg:x="93411" fg:w="52"/><text x="64.0697%" y="863.50"></text></g><g><title>_dl_map_object (52 samples, 0.04%)</title><rect x="63.8197%" y="837" width="0.0355%" height="15" fill="rgb(249,15,47)" fg:x="93411" fg:w="52"/><text x="64.0697%" y="847.50"></text></g><g><title>dl_new_hash (22 samples, 0.02%)</title><rect x="63.8826%" y="821" width="0.0150%" height="15" fill="rgb(209,227,23)" fg:x="93503" fg:w="22"/><text x="64.1326%" y="831.50"></text></g><g><title>_dl_lookup_symbol_x (71 samples, 0.05%)</title><rect x="63.8798%" y="837" width="0.0485%" height="15" fill="rgb(248,92,24)" fg:x="93499" fg:w="71"/><text x="64.1298%" y="847.50"></text></g><g><title>do_lookup_x (45 samples, 0.03%)</title><rect x="63.8976%" y="821" width="0.0307%" height="15" fill="rgb(247,59,2)" fg:x="93525" fg:w="45"/><text x="64.1476%" y="831.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="63.9283%" y="837" width="0.0116%" height="15" fill="rgb(221,30,5)" fg:x="93570" fg:w="17"/><text x="64.1783%" y="847.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="63.9283%" y="821" width="0.0116%" height="15" fill="rgb(208,108,53)" fg:x="93570" fg:w="17"/><text x="64.1783%" y="831.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="63.9283%" y="805" width="0.0116%" height="15" fill="rgb(211,183,26)" fg:x="93570" fg:w="17"/><text x="64.1783%" y="815.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="63.9283%" y="789" width="0.0116%" height="15" fill="rgb(232,132,4)" fg:x="93570" fg:w="17"/><text x="64.1783%" y="799.50"></text></g><g><title>elf_machine_rela (105 samples, 0.07%)</title><rect x="63.8689%" y="853" width="0.0717%" height="15" fill="rgb(253,128,37)" fg:x="93483" fg:w="105"/><text x="64.1189%" y="863.50"></text></g><g><title>elf_dynamic_do_Rela (119 samples, 0.08%)</title><rect x="63.8628%" y="869" width="0.0813%" height="15" fill="rgb(221,58,24)" fg:x="93474" fg:w="119"/><text x="64.1128%" y="879.50"></text></g><g><title>_dl_relocate_object (129 samples, 0.09%)</title><rect x="63.8566%" y="885" width="0.0881%" height="15" fill="rgb(230,54,45)" fg:x="93465" fg:w="129"/><text x="64.1066%" y="895.50"></text></g><g><title>_dl_start_final (186 samples, 0.13%)</title><rect x="63.8190%" y="933" width="0.1271%" height="15" fill="rgb(254,21,18)" fg:x="93410" fg:w="186"/><text x="64.0690%" y="943.50"></text></g><g><title>_dl_sysdep_start (186 samples, 0.13%)</title><rect x="63.8190%" y="917" width="0.1271%" height="15" fill="rgb(221,108,0)" fg:x="93410" fg:w="186"/><text x="64.0690%" y="927.50"></text></g><g><title>[ld-2.31.so] (186 samples, 0.13%)</title><rect x="63.8190%" y="901" width="0.1271%" height="15" fill="rgb(206,95,1)" fg:x="93410" fg:w="186"/><text x="64.0690%" y="911.50"></text></g><g><title>_dl_start (191 samples, 0.13%)</title><rect x="63.8190%" y="949" width="0.1305%" height="15" fill="rgb(237,52,5)" fg:x="93410" fg:w="191"/><text x="64.0690%" y="959.50"></text></g><g><title>_start (193 samples, 0.13%)</title><rect x="63.8183%" y="965" width="0.1319%" height="15" fill="rgb(218,150,34)" fg:x="93409" fg:w="193"/><text x="64.0683%" y="975.50"></text></g><g><title>asm_exc_page_fault (62 samples, 0.04%)</title><rect x="63.9502%" y="965" width="0.0424%" height="15" fill="rgb(235,194,28)" fg:x="93602" fg:w="62"/><text x="64.2002%" y="975.50"></text></g><g><title>__x64_sys_execve (28 samples, 0.02%)</title><rect x="64.0028%" y="933" width="0.0191%" height="15" fill="rgb(245,92,18)" fg:x="93679" fg:w="28"/><text x="64.2528%" y="943.50"></text></g><g><title>do_execveat_common (28 samples, 0.02%)</title><rect x="64.0028%" y="917" width="0.0191%" height="15" fill="rgb(253,203,53)" fg:x="93679" fg:w="28"/><text x="64.2528%" y="927.50"></text></g><g><title>bprm_execve (28 samples, 0.02%)</title><rect x="64.0028%" y="901" width="0.0191%" height="15" fill="rgb(249,185,47)" fg:x="93679" fg:w="28"/><text x="64.2528%" y="911.50"></text></g><g><title>load_elf_binary (28 samples, 0.02%)</title><rect x="64.0028%" y="885" width="0.0191%" height="15" fill="rgb(252,194,52)" fg:x="93679" fg:w="28"/><text x="64.2528%" y="895.50"></text></g><g><title>page_remove_rmap (45 samples, 0.03%)</title><rect x="64.0657%" y="821" width="0.0307%" height="15" fill="rgb(210,53,36)" fg:x="93771" fg:w="45"/><text x="64.3157%" y="831.50"></text></g><g><title>tlb_flush_mmu (38 samples, 0.03%)</title><rect x="64.0964%" y="821" width="0.0260%" height="15" fill="rgb(237,37,25)" fg:x="93816" fg:w="38"/><text x="64.3464%" y="831.50"></text></g><g><title>release_pages (31 samples, 0.02%)</title><rect x="64.1012%" y="805" width="0.0212%" height="15" fill="rgb(242,116,27)" fg:x="93823" fg:w="31"/><text x="64.3512%" y="815.50"></text></g><g><title>unmap_page_range (133 samples, 0.09%)</title><rect x="64.0342%" y="837" width="0.0909%" height="15" fill="rgb(213,185,26)" fg:x="93725" fg:w="133"/><text x="64.2842%" y="847.50"></text></g><g><title>mmput (145 samples, 0.10%)</title><rect x="64.0267%" y="885" width="0.0991%" height="15" fill="rgb(225,204,8)" fg:x="93714" fg:w="145"/><text x="64.2767%" y="895.50"></text></g><g><title>exit_mmap (144 samples, 0.10%)</title><rect x="64.0274%" y="869" width="0.0984%" height="15" fill="rgb(254,111,37)" fg:x="93715" fg:w="144"/><text x="64.2774%" y="879.50"></text></g><g><title>unmap_vmas (134 samples, 0.09%)</title><rect x="64.0342%" y="853" width="0.0916%" height="15" fill="rgb(242,35,9)" fg:x="93725" fg:w="134"/><text x="64.2842%" y="863.50"></text></g><g><title>__x64_sys_exit_group (149 samples, 0.10%)</title><rect x="64.0254%" y="933" width="0.1018%" height="15" fill="rgb(232,138,49)" fg:x="93712" fg:w="149"/><text x="64.2754%" y="943.50"></text></g><g><title>do_group_exit (149 samples, 0.10%)</title><rect x="64.0254%" y="917" width="0.1018%" height="15" fill="rgb(247,56,4)" fg:x="93712" fg:w="149"/><text x="64.2754%" y="927.50"></text></g><g><title>do_exit (149 samples, 0.10%)</title><rect x="64.0254%" y="901" width="0.1018%" height="15" fill="rgb(226,179,17)" fg:x="93712" fg:w="149"/><text x="64.2754%" y="911.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="64.1272%" y="933" width="0.0109%" height="15" fill="rgb(216,163,45)" fg:x="93861" fg:w="16"/><text x="64.3772%" y="943.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="64.1272%" y="917" width="0.0109%" height="15" fill="rgb(211,157,3)" fg:x="93861" fg:w="16"/><text x="64.3772%" y="927.50"></text></g><g><title>do_syscall_64 (209 samples, 0.14%)</title><rect x="64.0028%" y="949" width="0.1428%" height="15" fill="rgb(234,44,20)" fg:x="93679" fg:w="209"/><text x="64.2528%" y="959.50"></text></g><g><title>page_remove_rmap (39 samples, 0.03%)</title><rect x="64.1811%" y="789" width="0.0266%" height="15" fill="rgb(254,138,23)" fg:x="93940" fg:w="39"/><text x="64.4311%" y="799.50"></text></g><g><title>tlb_flush_mmu (24 samples, 0.02%)</title><rect x="64.2085%" y="789" width="0.0164%" height="15" fill="rgb(206,119,39)" fg:x="93980" fg:w="24"/><text x="64.4585%" y="799.50"></text></g><g><title>release_pages (18 samples, 0.01%)</title><rect x="64.2126%" y="773" width="0.0123%" height="15" fill="rgb(231,105,52)" fg:x="93986" fg:w="18"/><text x="64.4626%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (342 samples, 0.23%)</title><rect x="63.9932%" y="965" width="0.2337%" height="15" fill="rgb(250,20,5)" fg:x="93665" fg:w="342"/><text x="64.2432%" y="975.50"></text></g><g><title>syscall_exit_to_user_mode (119 samples, 0.08%)</title><rect x="64.1456%" y="949" width="0.0813%" height="15" fill="rgb(215,198,30)" fg:x="93888" fg:w="119"/><text x="64.3956%" y="959.50"></text></g><g><title>exit_to_user_mode_prepare (119 samples, 0.08%)</title><rect x="64.1456%" y="933" width="0.0813%" height="15" fill="rgb(246,142,8)" fg:x="93888" fg:w="119"/><text x="64.3956%" y="943.50"></text></g><g><title>arch_do_signal (119 samples, 0.08%)</title><rect x="64.1456%" y="917" width="0.0813%" height="15" fill="rgb(243,26,38)" fg:x="93888" fg:w="119"/><text x="64.3956%" y="927.50"></text></g><g><title>get_signal (119 samples, 0.08%)</title><rect x="64.1456%" y="901" width="0.0813%" height="15" fill="rgb(205,133,28)" fg:x="93888" fg:w="119"/><text x="64.3956%" y="911.50"></text></g><g><title>do_group_exit (119 samples, 0.08%)</title><rect x="64.1456%" y="885" width="0.0813%" height="15" fill="rgb(212,34,0)" fg:x="93888" fg:w="119"/><text x="64.3956%" y="895.50"></text></g><g><title>do_exit (119 samples, 0.08%)</title><rect x="64.1456%" y="869" width="0.0813%" height="15" fill="rgb(251,226,22)" fg:x="93888" fg:w="119"/><text x="64.3956%" y="879.50"></text></g><g><title>mmput (119 samples, 0.08%)</title><rect x="64.1456%" y="853" width="0.0813%" height="15" fill="rgb(252,119,9)" fg:x="93888" fg:w="119"/><text x="64.3956%" y="863.50"></text></g><g><title>exit_mmap (118 samples, 0.08%)</title><rect x="64.1463%" y="837" width="0.0806%" height="15" fill="rgb(213,150,50)" fg:x="93889" fg:w="118"/><text x="64.3963%" y="847.50"></text></g><g><title>unmap_vmas (110 samples, 0.08%)</title><rect x="64.1518%" y="821" width="0.0752%" height="15" fill="rgb(212,24,39)" fg:x="93897" fg:w="110"/><text x="64.4018%" y="831.50"></text></g><g><title>unmap_page_range (110 samples, 0.08%)</title><rect x="64.1518%" y="805" width="0.0752%" height="15" fill="rgb(213,46,39)" fg:x="93897" fg:w="110"/><text x="64.4018%" y="815.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (19 samples, 0.01%)</title><rect x="64.2269%" y="965" width="0.0130%" height="15" fill="rgb(239,106,12)" fg:x="94007" fg:w="19"/><text x="64.4769%" y="975.50"></text></g><g><title>ld.lld (21,503 samples, 14.69%)</title><rect x="49.5583%" y="981" width="14.6912%" height="15" fill="rgb(249,229,21)" fg:x="72537" fg:w="21503"/><text x="49.8083%" y="991.50">ld.lld</text></g><g><title>[[heap]] (32 samples, 0.02%)</title><rect x="64.2495%" y="965" width="0.0219%" height="15" fill="rgb(212,158,3)" fg:x="94040" fg:w="32"/><text x="64.4995%" y="975.50"></text></g><g><title>[bash] (28 samples, 0.02%)</title><rect x="64.2713%" y="949" width="0.0191%" height="15" fill="rgb(253,26,48)" fg:x="94072" fg:w="28"/><text x="64.5213%" y="959.50"></text></g><g><title>[[stack]] (36 samples, 0.02%)</title><rect x="64.2713%" y="965" width="0.0246%" height="15" fill="rgb(238,178,20)" fg:x="94072" fg:w="36"/><text x="64.5213%" y="975.50"></text></g><g><title>__libc_fork (31 samples, 0.02%)</title><rect x="64.3280%" y="149" width="0.0212%" height="15" fill="rgb(208,86,15)" fg:x="94155" fg:w="31"/><text x="64.5780%" y="159.50"></text></g><g><title>arch_fork (29 samples, 0.02%)</title><rect x="64.3294%" y="133" width="0.0198%" height="15" fill="rgb(239,42,53)" fg:x="94157" fg:w="29"/><text x="64.5794%" y="143.50"></text></g><g><title>ret_from_fork (26 samples, 0.02%)</title><rect x="64.3314%" y="117" width="0.0178%" height="15" fill="rgb(245,226,8)" fg:x="94160" fg:w="26"/><text x="64.5814%" y="127.50"></text></g><g><title>schedule_tail (26 samples, 0.02%)</title><rect x="64.3314%" y="101" width="0.0178%" height="15" fill="rgb(216,176,32)" fg:x="94160" fg:w="26"/><text x="64.5814%" y="111.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="64.3328%" y="85" width="0.0164%" height="15" fill="rgb(231,186,21)" fg:x="94162" fg:w="24"/><text x="64.5828%" y="95.50"></text></g><g><title>__perf_event_task_sched_in (22 samples, 0.02%)</title><rect x="64.3342%" y="69" width="0.0150%" height="15" fill="rgb(205,95,49)" fg:x="94164" fg:w="22"/><text x="64.5842%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (22 samples, 0.02%)</title><rect x="64.3342%" y="53" width="0.0150%" height="15" fill="rgb(217,145,8)" fg:x="94164" fg:w="22"/><text x="64.5842%" y="63.50"></text></g><g><title>native_write_msr (22 samples, 0.02%)</title><rect x="64.3342%" y="37" width="0.0150%" height="15" fill="rgb(239,144,48)" fg:x="94164" fg:w="22"/><text x="64.5842%" y="47.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.3280%" y="533" width="0.0219%" height="15" fill="rgb(214,189,23)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="543.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.3280%" y="517" width="0.0219%" height="15" fill="rgb(229,157,17)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="527.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.3280%" y="501" width="0.0219%" height="15" fill="rgb(230,5,48)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="511.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.3280%" y="485" width="0.0219%" height="15" fill="rgb(224,156,48)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="495.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.3280%" y="469" width="0.0219%" height="15" fill="rgb(223,14,29)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="479.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.3280%" y="453" width="0.0219%" height="15" fill="rgb(229,96,36)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="463.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.3280%" y="437" width="0.0219%" height="15" fill="rgb(231,102,53)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="447.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.3280%" y="421" width="0.0219%" height="15" fill="rgb(210,77,38)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="431.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.3280%" y="405" width="0.0219%" height="15" fill="rgb(235,131,6)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="415.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.3280%" y="389" width="0.0219%" height="15" fill="rgb(252,55,38)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="399.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.3280%" y="373" width="0.0219%" height="15" fill="rgb(246,38,14)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="383.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.3280%" y="357" width="0.0219%" height="15" fill="rgb(242,27,5)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="367.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.3280%" y="341" width="0.0219%" height="15" fill="rgb(228,65,35)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="351.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.3280%" y="325" width="0.0219%" height="15" fill="rgb(245,93,11)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="335.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.3280%" y="309" width="0.0219%" height="15" fill="rgb(213,1,31)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="319.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.3280%" y="293" width="0.0219%" height="15" fill="rgb(237,205,14)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="303.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.3280%" y="277" width="0.0219%" height="15" fill="rgb(232,118,45)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="287.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.3280%" y="261" width="0.0219%" height="15" fill="rgb(218,5,6)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="271.50"></text></g><g><title>execute_command (32 samples, 0.02%)</title><rect x="64.3280%" y="245" width="0.0219%" height="15" fill="rgb(251,87,51)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="255.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.3280%" y="229" width="0.0219%" height="15" fill="rgb(207,225,20)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="239.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.3280%" y="213" width="0.0219%" height="15" fill="rgb(222,78,54)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="223.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.3280%" y="197" width="0.0219%" height="15" fill="rgb(232,85,16)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="207.50"></text></g><g><title>[bash] (32 samples, 0.02%)</title><rect x="64.3280%" y="181" width="0.0219%" height="15" fill="rgb(244,25,33)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="191.50"></text></g><g><title>make_child (32 samples, 0.02%)</title><rect x="64.3280%" y="165" width="0.0219%" height="15" fill="rgb(233,24,36)" fg:x="94155" fg:w="32"/><text x="64.5780%" y="175.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="64.3267%" y="837" width="0.0239%" height="15" fill="rgb(253,49,54)" fg:x="94153" fg:w="35"/><text x="64.5767%" y="847.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="64.3267%" y="821" width="0.0239%" height="15" fill="rgb(245,12,22)" fg:x="94153" fg:w="35"/><text x="64.5767%" y="831.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="64.3267%" y="805" width="0.0239%" height="15" fill="rgb(253,141,28)" fg:x="94153" fg:w="35"/><text x="64.5767%" y="815.50"></text></g><g><title>execute_command_internal (34 samples, 0.02%)</title><rect x="64.3273%" y="789" width="0.0232%" height="15" fill="rgb(225,207,27)" fg:x="94154" fg:w="34"/><text x="64.5773%" y="799.50"></text></g><g><title>execute_command (33 samples, 0.02%)</title><rect x="64.3280%" y="773" width="0.0225%" height="15" fill="rgb(220,84,2)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="783.50"></text></g><g><title>execute_command_internal (33 samples, 0.02%)</title><rect x="64.3280%" y="757" width="0.0225%" height="15" fill="rgb(224,37,37)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="767.50"></text></g><g><title>execute_command (33 samples, 0.02%)</title><rect x="64.3280%" y="741" width="0.0225%" height="15" fill="rgb(220,143,18)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="751.50"></text></g><g><title>execute_command_internal (33 samples, 0.02%)</title><rect x="64.3280%" y="725" width="0.0225%" height="15" fill="rgb(210,88,33)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="735.50"></text></g><g><title>[bash] (33 samples, 0.02%)</title><rect x="64.3280%" y="709" width="0.0225%" height="15" fill="rgb(219,87,51)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="719.50"></text></g><g><title>evalstring (33 samples, 0.02%)</title><rect x="64.3280%" y="693" width="0.0225%" height="15" fill="rgb(211,7,35)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="703.50"></text></g><g><title>parse_and_execute (33 samples, 0.02%)</title><rect x="64.3280%" y="677" width="0.0225%" height="15" fill="rgb(232,77,2)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="687.50"></text></g><g><title>execute_command_internal (33 samples, 0.02%)</title><rect x="64.3280%" y="661" width="0.0225%" height="15" fill="rgb(249,94,25)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="671.50"></text></g><g><title>[bash] (33 samples, 0.02%)</title><rect x="64.3280%" y="645" width="0.0225%" height="15" fill="rgb(215,112,2)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="655.50"></text></g><g><title>execute_command_internal (33 samples, 0.02%)</title><rect x="64.3280%" y="629" width="0.0225%" height="15" fill="rgb(226,115,48)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="639.50"></text></g><g><title>execute_command_internal (33 samples, 0.02%)</title><rect x="64.3280%" y="613" width="0.0225%" height="15" fill="rgb(249,196,10)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="623.50"></text></g><g><title>[bash] (33 samples, 0.02%)</title><rect x="64.3280%" y="597" width="0.0225%" height="15" fill="rgb(237,109,14)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="607.50"></text></g><g><title>execute_command (33 samples, 0.02%)</title><rect x="64.3280%" y="581" width="0.0225%" height="15" fill="rgb(217,103,53)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="591.50"></text></g><g><title>execute_command_internal (33 samples, 0.02%)</title><rect x="64.3280%" y="565" width="0.0225%" height="15" fill="rgb(244,137,9)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="575.50"></text></g><g><title>[bash] (33 samples, 0.02%)</title><rect x="64.3280%" y="549" width="0.0225%" height="15" fill="rgb(227,201,3)" fg:x="94155" fg:w="33"/><text x="64.5780%" y="559.50"></text></g><g><title>[bash] (79 samples, 0.05%)</title><rect x="64.3062%" y="949" width="0.0540%" height="15" fill="rgb(243,94,6)" fg:x="94123" fg:w="79"/><text x="64.5562%" y="959.50"></text></g><g><title>execute_command_internal (54 samples, 0.04%)</title><rect x="64.3232%" y="933" width="0.0369%" height="15" fill="rgb(235,118,5)" fg:x="94148" fg:w="54"/><text x="64.5732%" y="943.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.3267%" y="917" width="0.0335%" height="15" fill="rgb(247,10,30)" fg:x="94153" fg:w="49"/><text x="64.5767%" y="927.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.3267%" y="901" width="0.0335%" height="15" fill="rgb(205,26,28)" fg:x="94153" fg:w="49"/><text x="64.5767%" y="911.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.3267%" y="885" width="0.0335%" height="15" fill="rgb(206,99,35)" fg:x="94153" fg:w="49"/><text x="64.5767%" y="895.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.3267%" y="869" width="0.0335%" height="15" fill="rgb(238,130,40)" fg:x="94153" fg:w="49"/><text x="64.5767%" y="879.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.3267%" y="853" width="0.0335%" height="15" fill="rgb(224,126,31)" fg:x="94153" fg:w="49"/><text x="64.5767%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="64.3881%" y="165" width="0.0246%" height="15" fill="rgb(254,105,17)" fg:x="94243" fg:w="36"/><text x="64.6381%" y="175.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="64.3881%" y="149" width="0.0246%" height="15" fill="rgb(216,87,36)" fg:x="94243" fg:w="36"/><text x="64.6381%" y="159.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="64.3881%" y="133" width="0.0246%" height="15" fill="rgb(240,21,12)" fg:x="94243" fg:w="36"/><text x="64.6381%" y="143.50"></text></g><g><title>__libc_fork (54 samples, 0.04%)</title><rect x="64.3786%" y="245" width="0.0369%" height="15" fill="rgb(245,192,34)" fg:x="94229" fg:w="54"/><text x="64.6286%" y="255.50"></text></g><g><title>arch_fork (54 samples, 0.04%)</title><rect x="64.3786%" y="229" width="0.0369%" height="15" fill="rgb(226,100,49)" fg:x="94229" fg:w="54"/><text x="64.6286%" y="239.50"></text></g><g><title>ret_from_fork (48 samples, 0.03%)</title><rect x="64.3827%" y="213" width="0.0328%" height="15" fill="rgb(245,188,27)" fg:x="94235" fg:w="48"/><text x="64.6327%" y="223.50"></text></g><g><title>schedule_tail (48 samples, 0.03%)</title><rect x="64.3827%" y="197" width="0.0328%" height="15" fill="rgb(212,170,8)" fg:x="94235" fg:w="48"/><text x="64.6327%" y="207.50"></text></g><g><title>finish_task_switch (44 samples, 0.03%)</title><rect x="64.3854%" y="181" width="0.0301%" height="15" fill="rgb(217,113,29)" fg:x="94239" fg:w="44"/><text x="64.6354%" y="191.50"></text></g><g><title>make_child (55 samples, 0.04%)</title><rect x="64.3786%" y="261" width="0.0376%" height="15" fill="rgb(237,30,3)" fg:x="94229" fg:w="55"/><text x="64.6286%" y="271.50"></text></g><g><title>execute_command (61 samples, 0.04%)</title><rect x="64.3752%" y="917" width="0.0417%" height="15" fill="rgb(227,19,28)" fg:x="94224" fg:w="61"/><text x="64.6252%" y="927.50"></text></g><g><title>execute_command_internal (61 samples, 0.04%)</title><rect x="64.3752%" y="901" width="0.0417%" height="15" fill="rgb(239,172,45)" fg:x="94224" fg:w="61"/><text x="64.6252%" y="911.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="885" width="0.0383%" height="15" fill="rgb(254,55,39)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="895.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="869" width="0.0383%" height="15" fill="rgb(249,208,12)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="879.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="853" width="0.0383%" height="15" fill="rgb(240,52,13)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="863.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="837" width="0.0383%" height="15" fill="rgb(252,149,13)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="847.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="821" width="0.0383%" height="15" fill="rgb(232,81,48)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="831.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="805" width="0.0383%" height="15" fill="rgb(222,144,2)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="815.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="789" width="0.0383%" height="15" fill="rgb(216,81,32)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="799.50"></text></g><g><title>execute_command (56 samples, 0.04%)</title><rect x="64.3786%" y="773" width="0.0383%" height="15" fill="rgb(244,78,51)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="783.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="757" width="0.0383%" height="15" fill="rgb(217,66,21)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="767.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="741" width="0.0383%" height="15" fill="rgb(247,101,42)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="751.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="725" width="0.0383%" height="15" fill="rgb(227,81,39)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="735.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="709" width="0.0383%" height="15" fill="rgb(220,223,44)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="719.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="693" width="0.0383%" height="15" fill="rgb(205,218,2)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="703.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="677" width="0.0383%" height="15" fill="rgb(212,207,28)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="687.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="661" width="0.0383%" height="15" fill="rgb(224,12,41)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="671.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="645" width="0.0383%" height="15" fill="rgb(216,118,12)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="655.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="629" width="0.0383%" height="15" fill="rgb(252,97,46)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="639.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="613" width="0.0383%" height="15" fill="rgb(244,206,19)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="623.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="597" width="0.0383%" height="15" fill="rgb(231,84,31)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="607.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="581" width="0.0383%" height="15" fill="rgb(244,133,0)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="591.50"></text></g><g><title>execute_command (56 samples, 0.04%)</title><rect x="64.3786%" y="565" width="0.0383%" height="15" fill="rgb(223,15,50)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="575.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="549" width="0.0383%" height="15" fill="rgb(250,118,49)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="559.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="533" width="0.0383%" height="15" fill="rgb(248,25,38)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="543.50"></text></g><g><title>execute_command (56 samples, 0.04%)</title><rect x="64.3786%" y="517" width="0.0383%" height="15" fill="rgb(215,70,14)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="527.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="501" width="0.0383%" height="15" fill="rgb(215,28,15)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="511.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="485" width="0.0383%" height="15" fill="rgb(243,6,28)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="495.50"></text></g><g><title>execute_command (56 samples, 0.04%)</title><rect x="64.3786%" y="469" width="0.0383%" height="15" fill="rgb(222,130,1)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="479.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="453" width="0.0383%" height="15" fill="rgb(236,166,44)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="463.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="437" width="0.0383%" height="15" fill="rgb(221,108,14)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="447.50"></text></g><g><title>execute_command (56 samples, 0.04%)</title><rect x="64.3786%" y="421" width="0.0383%" height="15" fill="rgb(252,3,45)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="431.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="405" width="0.0383%" height="15" fill="rgb(237,68,30)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="415.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="389" width="0.0383%" height="15" fill="rgb(211,79,22)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="399.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="64.3786%" y="373" width="0.0383%" height="15" fill="rgb(252,185,21)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="383.50"></text></g><g><title>expand_words (56 samples, 0.04%)</title><rect x="64.3786%" y="357" width="0.0383%" height="15" fill="rgb(225,189,26)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="367.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="341" width="0.0383%" height="15" fill="rgb(241,30,40)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="351.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="325" width="0.0383%" height="15" fill="rgb(235,215,44)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="335.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="309" width="0.0383%" height="15" fill="rgb(205,8,29)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="319.50"></text></g><g><title>[bash] (56 samples, 0.04%)</title><rect x="64.3786%" y="293" width="0.0383%" height="15" fill="rgb(241,137,42)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="303.50"></text></g><g><title>command_substitute (56 samples, 0.04%)</title><rect x="64.3786%" y="277" width="0.0383%" height="15" fill="rgb(237,155,2)" fg:x="94229" fg:w="56"/><text x="64.6286%" y="287.50"></text></g><g><title>execute_command (20 samples, 0.01%)</title><rect x="64.4237%" y="869" width="0.0137%" height="15" fill="rgb(245,29,42)" fg:x="94295" fg:w="20"/><text x="64.6737%" y="879.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.4237%" y="853" width="0.0137%" height="15" fill="rgb(234,101,35)" fg:x="94295" fg:w="20"/><text x="64.6737%" y="863.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.4237%" y="837" width="0.0137%" height="15" fill="rgb(228,64,37)" fg:x="94295" fg:w="20"/><text x="64.6737%" y="847.50"></text></g><g><title>[bash] (92 samples, 0.06%)</title><rect x="64.3752%" y="933" width="0.0629%" height="15" fill="rgb(217,214,36)" fg:x="94224" fg:w="92"/><text x="64.6252%" y="943.50"></text></g><g><title>execute_command_internal (31 samples, 0.02%)</title><rect x="64.4168%" y="917" width="0.0212%" height="15" fill="rgb(243,70,3)" fg:x="94285" fg:w="31"/><text x="64.6668%" y="927.50"></text></g><g><title>execute_command_internal (21 samples, 0.01%)</title><rect x="64.4237%" y="901" width="0.0143%" height="15" fill="rgb(253,158,52)" fg:x="94295" fg:w="21"/><text x="64.6737%" y="911.50"></text></g><g><title>[bash] (21 samples, 0.01%)</title><rect x="64.4237%" y="885" width="0.0143%" height="15" fill="rgb(234,111,54)" fg:x="94295" fg:w="21"/><text x="64.6737%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.04%)</title><rect x="64.4551%" y="213" width="0.0369%" height="15" fill="rgb(217,70,32)" fg:x="94341" fg:w="54"/><text x="64.7051%" y="223.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (53 samples, 0.04%)</title><rect x="64.4558%" y="197" width="0.0362%" height="15" fill="rgb(234,18,33)" fg:x="94342" fg:w="53"/><text x="64.7058%" y="207.50"></text></g><g><title>native_write_msr (53 samples, 0.04%)</title><rect x="64.4558%" y="181" width="0.0362%" height="15" fill="rgb(234,12,49)" fg:x="94342" fg:w="53"/><text x="64.7058%" y="191.50"></text></g><g><title>schedule_tail (65 samples, 0.04%)</title><rect x="64.4490%" y="245" width="0.0444%" height="15" fill="rgb(236,10,21)" fg:x="94332" fg:w="65"/><text x="64.6990%" y="255.50"></text></g><g><title>finish_task_switch (58 samples, 0.04%)</title><rect x="64.4537%" y="229" width="0.0396%" height="15" fill="rgb(248,182,45)" fg:x="94339" fg:w="58"/><text x="64.7037%" y="239.50"></text></g><g><title>arch_fork (76 samples, 0.05%)</title><rect x="64.4421%" y="277" width="0.0519%" height="15" fill="rgb(217,95,36)" fg:x="94322" fg:w="76"/><text x="64.6921%" y="287.50"></text></g><g><title>ret_from_fork (66 samples, 0.05%)</title><rect x="64.4490%" y="261" width="0.0451%" height="15" fill="rgb(212,110,31)" fg:x="94332" fg:w="66"/><text x="64.6990%" y="271.50"></text></g><g><title>make_child (79 samples, 0.05%)</title><rect x="64.4408%" y="309" width="0.0540%" height="15" fill="rgb(206,32,53)" fg:x="94320" fg:w="79"/><text x="64.6908%" y="319.50"></text></g><g><title>__libc_fork (79 samples, 0.05%)</title><rect x="64.4408%" y="293" width="0.0540%" height="15" fill="rgb(246,141,37)" fg:x="94320" fg:w="79"/><text x="64.6908%" y="303.50"></text></g><g><title>execute_command (84 samples, 0.06%)</title><rect x="64.4387%" y="901" width="0.0574%" height="15" fill="rgb(219,16,7)" fg:x="94317" fg:w="84"/><text x="64.6887%" y="911.50"></text></g><g><title>execute_command_internal (84 samples, 0.06%)</title><rect x="64.4387%" y="885" width="0.0574%" height="15" fill="rgb(230,205,45)" fg:x="94317" fg:w="84"/><text x="64.6887%" y="895.50"></text></g><g><title>[bash] (84 samples, 0.06%)</title><rect x="64.4387%" y="869" width="0.0574%" height="15" fill="rgb(231,43,49)" fg:x="94317" fg:w="84"/><text x="64.6887%" y="879.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="853" width="0.0560%" height="15" fill="rgb(212,106,34)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="863.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="837" width="0.0560%" height="15" fill="rgb(206,83,17)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="847.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="821" width="0.0560%" height="15" fill="rgb(244,154,49)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="831.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="805" width="0.0560%" height="15" fill="rgb(244,149,49)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="815.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="789" width="0.0560%" height="15" fill="rgb(227,134,18)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="799.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="773" width="0.0560%" height="15" fill="rgb(237,116,36)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="783.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="757" width="0.0560%" height="15" fill="rgb(205,129,40)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="767.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="741" width="0.0560%" height="15" fill="rgb(236,178,4)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="751.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="725" width="0.0560%" height="15" fill="rgb(251,76,53)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="735.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="709" width="0.0560%" height="15" fill="rgb(242,92,40)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="719.50"></text></g><g><title>execute_command (82 samples, 0.06%)</title><rect x="64.4401%" y="693" width="0.0560%" height="15" fill="rgb(209,45,30)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="703.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="677" width="0.0560%" height="15" fill="rgb(218,157,36)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="687.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="661" width="0.0560%" height="15" fill="rgb(222,186,16)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="671.50"></text></g><g><title>execute_command (82 samples, 0.06%)</title><rect x="64.4401%" y="645" width="0.0560%" height="15" fill="rgb(254,72,35)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="655.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="629" width="0.0560%" height="15" fill="rgb(224,25,35)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="639.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="613" width="0.0560%" height="15" fill="rgb(206,135,52)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="623.50"></text></g><g><title>execute_command (82 samples, 0.06%)</title><rect x="64.4401%" y="597" width="0.0560%" height="15" fill="rgb(229,174,47)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="607.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="581" width="0.0560%" height="15" fill="rgb(242,184,21)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="591.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="565" width="0.0560%" height="15" fill="rgb(213,22,45)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="575.50"></text></g><g><title>execute_command (82 samples, 0.06%)</title><rect x="64.4401%" y="549" width="0.0560%" height="15" fill="rgb(237,81,54)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="559.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="533" width="0.0560%" height="15" fill="rgb(248,177,18)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="543.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="517" width="0.0560%" height="15" fill="rgb(254,31,16)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="527.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="501" width="0.0560%" height="15" fill="rgb(235,20,31)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="511.50"></text></g><g><title>expand_words (82 samples, 0.06%)</title><rect x="64.4401%" y="485" width="0.0560%" height="15" fill="rgb(240,56,43)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="495.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="469" width="0.0560%" height="15" fill="rgb(237,197,51)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="479.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="453" width="0.0560%" height="15" fill="rgb(241,162,44)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="463.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="437" width="0.0560%" height="15" fill="rgb(224,23,20)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="447.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="421" width="0.0560%" height="15" fill="rgb(250,109,34)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="431.50"></text></g><g><title>command_substitute (82 samples, 0.06%)</title><rect x="64.4401%" y="405" width="0.0560%" height="15" fill="rgb(214,175,50)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="415.50"></text></g><g><title>parse_and_execute (82 samples, 0.06%)</title><rect x="64.4401%" y="389" width="0.0560%" height="15" fill="rgb(213,182,5)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="399.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="373" width="0.0560%" height="15" fill="rgb(209,199,19)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="383.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="357" width="0.0560%" height="15" fill="rgb(236,224,42)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="367.50"></text></g><g><title>[bash] (82 samples, 0.06%)</title><rect x="64.4401%" y="341" width="0.0560%" height="15" fill="rgb(246,226,29)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="351.50"></text></g><g><title>execute_command_internal (82 samples, 0.06%)</title><rect x="64.4401%" y="325" width="0.0560%" height="15" fill="rgb(227,223,11)" fg:x="94319" fg:w="82"/><text x="64.6901%" y="335.50"></text></g><g><title>execute_command_internal (179 samples, 0.12%)</title><rect x="64.3752%" y="949" width="0.1223%" height="15" fill="rgb(219,7,51)" fg:x="94224" fg:w="179"/><text x="64.6252%" y="959.50"></text></g><g><title>execute_command_internal (86 samples, 0.06%)</title><rect x="64.4387%" y="933" width="0.0588%" height="15" fill="rgb(245,167,10)" fg:x="94317" fg:w="86"/><text x="64.6887%" y="943.50"></text></g><g><title>[bash] (86 samples, 0.06%)</title><rect x="64.4387%" y="917" width="0.0588%" height="15" fill="rgb(237,224,16)" fg:x="94317" fg:w="86"/><text x="64.6887%" y="927.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="64.4975%" y="869" width="0.0150%" height="15" fill="rgb(226,132,13)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="879.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="853" width="0.0150%" height="15" fill="rgb(214,140,3)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="863.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="837" width="0.0150%" height="15" fill="rgb(221,177,4)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="847.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="821" width="0.0150%" height="15" fill="rgb(238,139,3)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="831.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="805" width="0.0150%" height="15" fill="rgb(216,17,39)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="815.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="789" width="0.0150%" height="15" fill="rgb(238,120,9)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="799.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="773" width="0.0150%" height="15" fill="rgb(244,92,53)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="783.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="757" width="0.0150%" height="15" fill="rgb(224,148,33)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="767.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="741" width="0.0150%" height="15" fill="rgb(243,6,36)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="751.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="64.4975%" y="725" width="0.0150%" height="15" fill="rgb(230,102,11)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="735.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="709" width="0.0150%" height="15" fill="rgb(234,148,36)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="719.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="693" width="0.0150%" height="15" fill="rgb(251,153,25)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="703.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="677" width="0.0150%" height="15" fill="rgb(215,129,8)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="687.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="661" width="0.0150%" height="15" fill="rgb(224,128,35)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="671.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="645" width="0.0150%" height="15" fill="rgb(237,56,52)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="655.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="629" width="0.0150%" height="15" fill="rgb(234,213,19)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="639.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="613" width="0.0150%" height="15" fill="rgb(252,82,23)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="623.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="597" width="0.0150%" height="15" fill="rgb(254,201,21)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="607.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="581" width="0.0150%" height="15" fill="rgb(250,186,11)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="591.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="565" width="0.0150%" height="15" fill="rgb(211,174,5)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="575.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="549" width="0.0150%" height="15" fill="rgb(214,121,10)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="559.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="533" width="0.0150%" height="15" fill="rgb(241,66,2)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="543.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="64.4975%" y="517" width="0.0150%" height="15" fill="rgb(220,167,19)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="527.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="501" width="0.0150%" height="15" fill="rgb(231,54,50)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="511.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="485" width="0.0150%" height="15" fill="rgb(239,217,53)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="495.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="64.4975%" y="469" width="0.0150%" height="15" fill="rgb(248,8,0)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="479.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="453" width="0.0150%" height="15" fill="rgb(229,118,37)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="463.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="437" width="0.0150%" height="15" fill="rgb(253,223,43)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="447.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="64.4975%" y="421" width="0.0150%" height="15" fill="rgb(211,77,36)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="431.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="405" width="0.0150%" height="15" fill="rgb(219,3,53)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="415.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="389" width="0.0150%" height="15" fill="rgb(244,45,42)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="399.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="64.4975%" y="373" width="0.0150%" height="15" fill="rgb(225,95,27)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="383.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="357" width="0.0150%" height="15" fill="rgb(207,74,8)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="367.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="341" width="0.0150%" height="15" fill="rgb(243,63,36)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="351.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="64.4975%" y="325" width="0.0150%" height="15" fill="rgb(211,180,12)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="335.50"></text></g><g><title>expand_words (22 samples, 0.02%)</title><rect x="64.4975%" y="309" width="0.0150%" height="15" fill="rgb(254,166,49)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="319.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="293" width="0.0150%" height="15" fill="rgb(205,19,0)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="303.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="277" width="0.0150%" height="15" fill="rgb(224,172,32)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="287.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="261" width="0.0150%" height="15" fill="rgb(254,136,30)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="271.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="64.4975%" y="245" width="0.0150%" height="15" fill="rgb(246,19,35)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="255.50"></text></g><g><title>command_substitute (22 samples, 0.02%)</title><rect x="64.4975%" y="229" width="0.0150%" height="15" fill="rgb(219,24,36)" fg:x="94403" fg:w="22"/><text x="64.7475%" y="239.50"></text></g><g><title>zread (15 samples, 0.01%)</title><rect x="64.5022%" y="213" width="0.0102%" height="15" fill="rgb(251,55,1)" fg:x="94410" fg:w="15"/><text x="64.7522%" y="223.50"></text></g><g><title>__GI___libc_read (15 samples, 0.01%)</title><rect x="64.5022%" y="197" width="0.0102%" height="15" fill="rgb(218,117,39)" fg:x="94410" fg:w="15"/><text x="64.7522%" y="207.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="64.5022%" y="181" width="0.0102%" height="15" fill="rgb(248,169,11)" fg:x="94410" fg:w="15"/><text x="64.7522%" y="191.50"></text></g><g><title>main (25 samples, 0.02%)</title><rect x="64.4975%" y="949" width="0.0171%" height="15" fill="rgb(244,40,44)" fg:x="94403" fg:w="25"/><text x="64.7475%" y="959.50"></text></g><g><title>reader_loop (25 samples, 0.02%)</title><rect x="64.4975%" y="933" width="0.0171%" height="15" fill="rgb(234,62,37)" fg:x="94403" fg:w="25"/><text x="64.7475%" y="943.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="64.4975%" y="917" width="0.0171%" height="15" fill="rgb(207,117,42)" fg:x="94403" fg:w="25"/><text x="64.7475%" y="927.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.4975%" y="901" width="0.0171%" height="15" fill="rgb(213,43,2)" fg:x="94403" fg:w="25"/><text x="64.7475%" y="911.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.4975%" y="885" width="0.0171%" height="15" fill="rgb(244,202,51)" fg:x="94403" fg:w="25"/><text x="64.7475%" y="895.50"></text></g><g><title>[unknown] (316 samples, 0.22%)</title><rect x="64.3062%" y="965" width="0.2159%" height="15" fill="rgb(253,174,46)" fg:x="94123" fg:w="316"/><text x="64.5562%" y="975.50"></text></g><g><title>dispose_command (16 samples, 0.01%)</title><rect x="64.5323%" y="677" width="0.0109%" height="15" fill="rgb(251,23,1)" fg:x="94454" fg:w="16"/><text x="64.7823%" y="687.50"></text></g><g><title>dispose_command (16 samples, 0.01%)</title><rect x="64.5323%" y="661" width="0.0109%" height="15" fill="rgb(253,26,1)" fg:x="94454" fg:w="16"/><text x="64.7823%" y="671.50"></text></g><g><title>dispose_command (15 samples, 0.01%)</title><rect x="64.5330%" y="645" width="0.0102%" height="15" fill="rgb(216,89,31)" fg:x="94455" fg:w="15"/><text x="64.7830%" y="655.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.5316%" y="725" width="0.0123%" height="15" fill="rgb(209,109,5)" fg:x="94453" fg:w="18"/><text x="64.7816%" y="735.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.5316%" y="709" width="0.0123%" height="15" fill="rgb(229,63,13)" fg:x="94453" fg:w="18"/><text x="64.7816%" y="719.50"></text></g><g><title>dispose_command (17 samples, 0.01%)</title><rect x="64.5323%" y="693" width="0.0116%" height="15" fill="rgb(238,137,54)" fg:x="94454" fg:w="17"/><text x="64.7823%" y="703.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.5316%" y="741" width="0.0130%" height="15" fill="rgb(228,1,9)" fg:x="94453" fg:w="19"/><text x="64.7816%" y="751.50"></text></g><g><title>dispose_command (23 samples, 0.02%)</title><rect x="64.5296%" y="837" width="0.0157%" height="15" fill="rgb(249,120,48)" fg:x="94450" fg:w="23"/><text x="64.7796%" y="847.50"></text></g><g><title>dispose_command (23 samples, 0.02%)</title><rect x="64.5296%" y="821" width="0.0157%" height="15" fill="rgb(209,72,36)" fg:x="94450" fg:w="23"/><text x="64.7796%" y="831.50"></text></g><g><title>dispose_command (23 samples, 0.02%)</title><rect x="64.5296%" y="805" width="0.0157%" height="15" fill="rgb(247,98,49)" fg:x="94450" fg:w="23"/><text x="64.7796%" y="815.50"></text></g><g><title>dispose_command (22 samples, 0.02%)</title><rect x="64.5303%" y="789" width="0.0150%" height="15" fill="rgb(233,75,36)" fg:x="94451" fg:w="22"/><text x="64.7803%" y="799.50"></text></g><g><title>dispose_command (22 samples, 0.02%)</title><rect x="64.5303%" y="773" width="0.0150%" height="15" fill="rgb(225,14,24)" fg:x="94451" fg:w="22"/><text x="64.7803%" y="783.50"></text></g><g><title>dispose_command (22 samples, 0.02%)</title><rect x="64.5303%" y="757" width="0.0150%" height="15" fill="rgb(237,193,20)" fg:x="94451" fg:w="22"/><text x="64.7803%" y="767.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="64.5289%" y="869" width="0.0171%" height="15" fill="rgb(239,122,19)" fg:x="94449" fg:w="25"/><text x="64.7789%" y="879.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="64.5289%" y="853" width="0.0171%" height="15" fill="rgb(231,220,10)" fg:x="94449" fg:w="25"/><text x="64.7789%" y="863.50"></text></g><g><title>dispose_command (28 samples, 0.02%)</title><rect x="64.5282%" y="901" width="0.0191%" height="15" fill="rgb(220,66,15)" fg:x="94448" fg:w="28"/><text x="64.7782%" y="911.50"></text></g><g><title>dispose_command (27 samples, 0.02%)</title><rect x="64.5289%" y="885" width="0.0184%" height="15" fill="rgb(215,171,52)" fg:x="94449" fg:w="27"/><text x="64.7789%" y="895.50"></text></g><g><title>execute_command_internal (19 samples, 0.01%)</title><rect x="64.5637%" y="821" width="0.0130%" height="15" fill="rgb(241,169,50)" fg:x="94500" fg:w="19"/><text x="64.8137%" y="831.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="64.5637%" y="805" width="0.0130%" height="15" fill="rgb(236,189,0)" fg:x="94500" fg:w="19"/><text x="64.8137%" y="815.50"></text></g><g><title>execute_command_internal (19 samples, 0.01%)</title><rect x="64.5637%" y="789" width="0.0130%" height="15" fill="rgb(217,147,20)" fg:x="94500" fg:w="19"/><text x="64.8137%" y="799.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="64.5637%" y="773" width="0.0130%" height="15" fill="rgb(206,188,39)" fg:x="94500" fg:w="19"/><text x="64.8137%" y="783.50"></text></g><g><title>execute_command_internal (19 samples, 0.01%)</title><rect x="64.5637%" y="757" width="0.0130%" height="15" fill="rgb(227,118,25)" fg:x="94500" fg:w="19"/><text x="64.8137%" y="767.50"></text></g><g><title>execute_command_internal (19 samples, 0.01%)</title><rect x="64.5637%" y="741" width="0.0130%" height="15" fill="rgb(248,171,40)" fg:x="94500" fg:w="19"/><text x="64.8137%" y="751.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="64.5637%" y="725" width="0.0130%" height="15" fill="rgb(251,90,54)" fg:x="94500" fg:w="19"/><text x="64.8137%" y="735.50"></text></g><g><title>execute_command (19 samples, 0.01%)</title><rect x="64.5637%" y="709" width="0.0130%" height="15" fill="rgb(234,11,46)" fg:x="94500" fg:w="19"/><text x="64.8137%" y="719.50"></text></g><g><title>execute_command_internal (19 samples, 0.01%)</title><rect x="64.5637%" y="693" width="0.0130%" height="15" fill="rgb(229,134,13)" fg:x="94500" fg:w="19"/><text x="64.8137%" y="703.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="64.5637%" y="677" width="0.0130%" height="15" fill="rgb(223,129,3)" fg:x="94500" fg:w="19"/><text x="64.8137%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (45 samples, 0.03%)</title><rect x="64.5863%" y="725" width="0.0307%" height="15" fill="rgb(221,124,13)" fg:x="94533" fg:w="45"/><text x="64.8363%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (45 samples, 0.03%)</title><rect x="64.5863%" y="709" width="0.0307%" height="15" fill="rgb(234,3,18)" fg:x="94533" fg:w="45"/><text x="64.8363%" y="719.50"></text></g><g><title>native_write_msr (44 samples, 0.03%)</title><rect x="64.5870%" y="693" width="0.0301%" height="15" fill="rgb(249,199,20)" fg:x="94534" fg:w="44"/><text x="64.8370%" y="703.50"></text></g><g><title>arch_fork (56 samples, 0.04%)</title><rect x="64.5794%" y="789" width="0.0383%" height="15" fill="rgb(224,134,6)" fg:x="94523" fg:w="56"/><text x="64.8294%" y="799.50"></text></g><g><title>ret_from_fork (52 samples, 0.04%)</title><rect x="64.5822%" y="773" width="0.0355%" height="15" fill="rgb(254,83,26)" fg:x="94527" fg:w="52"/><text x="64.8322%" y="783.50"></text></g><g><title>schedule_tail (52 samples, 0.04%)</title><rect x="64.5822%" y="757" width="0.0355%" height="15" fill="rgb(217,88,9)" fg:x="94527" fg:w="52"/><text x="64.8322%" y="767.50"></text></g><g><title>finish_task_switch (50 samples, 0.03%)</title><rect x="64.5835%" y="741" width="0.0342%" height="15" fill="rgb(225,73,2)" fg:x="94529" fg:w="50"/><text x="64.8335%" y="751.50"></text></g><g><title>__libc_fork (58 samples, 0.04%)</title><rect x="64.5788%" y="805" width="0.0396%" height="15" fill="rgb(226,44,39)" fg:x="94522" fg:w="58"/><text x="64.8288%" y="815.50"></text></g><g><title>make_child (64 samples, 0.04%)</title><rect x="64.5781%" y="821" width="0.0437%" height="15" fill="rgb(228,53,17)" fg:x="94521" fg:w="64"/><text x="64.8281%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.02%)</title><rect x="64.6245%" y="661" width="0.0164%" height="15" fill="rgb(212,27,27)" fg:x="94589" fg:w="24"/><text x="64.8745%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="64.6245%" y="645" width="0.0164%" height="15" fill="rgb(241,50,6)" fg:x="94589" fg:w="24"/><text x="64.8745%" y="655.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="64.6245%" y="629" width="0.0164%" height="15" fill="rgb(225,28,51)" fg:x="94589" fg:w="24"/><text x="64.8745%" y="639.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="64.6239%" y="677" width="0.0178%" height="15" fill="rgb(215,33,16)" fg:x="94588" fg:w="26"/><text x="64.8739%" y="687.50"></text></g><g><title>schedule (27 samples, 0.02%)</title><rect x="64.6239%" y="709" width="0.0184%" height="15" fill="rgb(243,40,39)" fg:x="94588" fg:w="27"/><text x="64.8739%" y="719.50"></text></g><g><title>__schedule (27 samples, 0.02%)</title><rect x="64.6239%" y="693" width="0.0184%" height="15" fill="rgb(225,11,42)" fg:x="94588" fg:w="27"/><text x="64.8739%" y="703.50"></text></g><g><title>[bash] (30 samples, 0.02%)</title><rect x="64.6232%" y="805" width="0.0205%" height="15" fill="rgb(241,220,38)" fg:x="94587" fg:w="30"/><text x="64.8732%" y="815.50"></text></g><g><title>__GI___wait4 (29 samples, 0.02%)</title><rect x="64.6239%" y="789" width="0.0198%" height="15" fill="rgb(244,52,35)" fg:x="94588" fg:w="29"/><text x="64.8739%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.02%)</title><rect x="64.6239%" y="773" width="0.0198%" height="15" fill="rgb(246,42,46)" fg:x="94588" fg:w="29"/><text x="64.8739%" y="783.50"></text></g><g><title>do_syscall_64 (29 samples, 0.02%)</title><rect x="64.6239%" y="757" width="0.0198%" height="15" fill="rgb(205,184,13)" fg:x="94588" fg:w="29"/><text x="64.8739%" y="767.50"></text></g><g><title>kernel_wait4 (29 samples, 0.02%)</title><rect x="64.6239%" y="741" width="0.0198%" height="15" fill="rgb(209,48,36)" fg:x="94588" fg:w="29"/><text x="64.8739%" y="751.50"></text></g><g><title>do_wait (29 samples, 0.02%)</title><rect x="64.6239%" y="725" width="0.0198%" height="15" fill="rgb(244,34,51)" fg:x="94588" fg:w="29"/><text x="64.8739%" y="735.50"></text></g><g><title>execute_command (135 samples, 0.09%)</title><rect x="64.5528%" y="853" width="0.0922%" height="15" fill="rgb(221,107,33)" fg:x="94484" fg:w="135"/><text x="64.8028%" y="863.50"></text></g><g><title>execute_command_internal (135 samples, 0.09%)</title><rect x="64.5528%" y="837" width="0.0922%" height="15" fill="rgb(224,203,12)" fg:x="94484" fg:w="135"/><text x="64.8028%" y="847.50"></text></g><g><title>wait_for (33 samples, 0.02%)</title><rect x="64.6225%" y="821" width="0.0225%" height="15" fill="rgb(230,215,18)" fg:x="94586" fg:w="33"/><text x="64.8725%" y="831.50"></text></g><g><title>[bash] (157 samples, 0.11%)</title><rect x="64.5480%" y="869" width="0.1073%" height="15" fill="rgb(206,185,35)" fg:x="94477" fg:w="157"/><text x="64.7980%" y="879.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="64.6730%" y="373" width="0.0109%" height="15" fill="rgb(228,140,34)" fg:x="94660" fg:w="16"/><text x="64.9230%" y="383.50"></text></g><g><title>copy_command (15 samples, 0.01%)</title><rect x="64.6737%" y="357" width="0.0102%" height="15" fill="rgb(208,93,13)" fg:x="94661" fg:w="15"/><text x="64.9237%" y="367.50"></text></g><g><title>copy_command (15 samples, 0.01%)</title><rect x="64.6737%" y="341" width="0.0102%" height="15" fill="rgb(221,193,39)" fg:x="94661" fg:w="15"/><text x="64.9237%" y="351.50"></text></g><g><title>copy_command (15 samples, 0.01%)</title><rect x="64.6737%" y="325" width="0.0102%" height="15" fill="rgb(241,132,34)" fg:x="94661" fg:w="15"/><text x="64.9237%" y="335.50"></text></g><g><title>copy_command (15 samples, 0.01%)</title><rect x="64.6737%" y="309" width="0.0102%" height="15" fill="rgb(221,141,10)" fg:x="94661" fg:w="15"/><text x="64.9237%" y="319.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="64.6703%" y="405" width="0.0143%" height="15" fill="rgb(226,90,31)" fg:x="94656" fg:w="21"/><text x="64.9203%" y="415.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="64.6703%" y="389" width="0.0143%" height="15" fill="rgb(243,75,5)" fg:x="94656" fg:w="21"/><text x="64.9203%" y="399.50"></text></g><g><title>copy_command (23 samples, 0.02%)</title><rect x="64.6696%" y="469" width="0.0157%" height="15" fill="rgb(227,156,21)" fg:x="94655" fg:w="23"/><text x="64.9196%" y="479.50"></text></g><g><title>copy_command (23 samples, 0.02%)</title><rect x="64.6696%" y="453" width="0.0157%" height="15" fill="rgb(250,195,8)" fg:x="94655" fg:w="23"/><text x="64.9196%" y="463.50"></text></g><g><title>copy_command (22 samples, 0.02%)</title><rect x="64.6703%" y="437" width="0.0150%" height="15" fill="rgb(220,134,5)" fg:x="94656" fg:w="22"/><text x="64.9203%" y="447.50"></text></g><g><title>copy_command (22 samples, 0.02%)</title><rect x="64.6703%" y="421" width="0.0150%" height="15" fill="rgb(246,106,34)" fg:x="94656" fg:w="22"/><text x="64.9203%" y="431.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="64.6683%" y="565" width="0.0184%" height="15" fill="rgb(205,1,4)" fg:x="94653" fg:w="27"/><text x="64.9183%" y="575.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="64.6683%" y="549" width="0.0184%" height="15" fill="rgb(224,151,29)" fg:x="94653" fg:w="27"/><text x="64.9183%" y="559.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.6689%" y="533" width="0.0178%" height="15" fill="rgb(251,196,0)" fg:x="94654" fg:w="26"/><text x="64.9189%" y="543.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.6689%" y="517" width="0.0178%" height="15" fill="rgb(212,127,0)" fg:x="94654" fg:w="26"/><text x="64.9189%" y="527.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.6689%" y="501" width="0.0178%" height="15" fill="rgb(236,71,53)" fg:x="94654" fg:w="26"/><text x="64.9189%" y="511.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.6689%" y="485" width="0.0178%" height="15" fill="rgb(227,99,0)" fg:x="94654" fg:w="26"/><text x="64.9189%" y="495.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="64.6683%" y="581" width="0.0198%" height="15" fill="rgb(239,89,21)" fg:x="94653" fg:w="29"/><text x="64.9183%" y="591.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="64.6683%" y="613" width="0.0205%" height="15" fill="rgb(243,122,19)" fg:x="94653" fg:w="30"/><text x="64.9183%" y="623.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="64.6683%" y="597" width="0.0205%" height="15" fill="rgb(229,192,45)" fg:x="94653" fg:w="30"/><text x="64.9183%" y="607.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="64.6676%" y="693" width="0.0225%" height="15" fill="rgb(235,165,35)" fg:x="94652" fg:w="33"/><text x="64.9176%" y="703.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="64.6683%" y="677" width="0.0219%" height="15" fill="rgb(253,202,0)" fg:x="94653" fg:w="32"/><text x="64.9183%" y="687.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="64.6683%" y="661" width="0.0219%" height="15" fill="rgb(235,51,20)" fg:x="94653" fg:w="32"/><text x="64.9183%" y="671.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="64.6683%" y="645" width="0.0219%" height="15" fill="rgb(218,95,46)" fg:x="94653" fg:w="32"/><text x="64.9183%" y="655.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="64.6683%" y="629" width="0.0219%" height="15" fill="rgb(212,81,10)" fg:x="94653" fg:w="32"/><text x="64.9183%" y="639.50"></text></g><g><title>copy_command (43 samples, 0.03%)</title><rect x="64.6614%" y="709" width="0.0294%" height="15" fill="rgb(240,59,0)" fg:x="94643" fg:w="43"/><text x="64.9114%" y="719.50"></text></g><g><title>copy_command (45 samples, 0.03%)</title><rect x="64.6608%" y="725" width="0.0307%" height="15" fill="rgb(212,191,42)" fg:x="94642" fg:w="45"/><text x="64.9108%" y="735.50"></text></g><g><title>copy_command (55 samples, 0.04%)</title><rect x="64.6553%" y="805" width="0.0376%" height="15" fill="rgb(233,140,3)" fg:x="94634" fg:w="55"/><text x="64.9053%" y="815.50"></text></g><g><title>copy_command (54 samples, 0.04%)</title><rect x="64.6560%" y="789" width="0.0369%" height="15" fill="rgb(215,69,23)" fg:x="94635" fg:w="54"/><text x="64.9060%" y="799.50"></text></g><g><title>copy_command (51 samples, 0.03%)</title><rect x="64.6580%" y="773" width="0.0348%" height="15" fill="rgb(240,202,20)" fg:x="94638" fg:w="51"/><text x="64.9080%" y="783.50"></text></g><g><title>copy_command (49 samples, 0.03%)</title><rect x="64.6594%" y="757" width="0.0335%" height="15" fill="rgb(209,146,50)" fg:x="94640" fg:w="49"/><text x="64.9094%" y="767.50"></text></g><g><title>copy_command (48 samples, 0.03%)</title><rect x="64.6601%" y="741" width="0.0328%" height="15" fill="rgb(253,102,54)" fg:x="94641" fg:w="48"/><text x="64.9101%" y="751.50"></text></g><g><title>copy_command (56 samples, 0.04%)</title><rect x="64.6553%" y="821" width="0.0383%" height="15" fill="rgb(250,173,47)" fg:x="94634" fg:w="56"/><text x="64.9053%" y="831.50"></text></g><g><title>copy_command (57 samples, 0.04%)</title><rect x="64.6553%" y="853" width="0.0389%" height="15" fill="rgb(232,142,7)" fg:x="94634" fg:w="57"/><text x="64.9053%" y="863.50"></text></g><g><title>copy_command (57 samples, 0.04%)</title><rect x="64.6553%" y="837" width="0.0389%" height="15" fill="rgb(230,157,47)" fg:x="94634" fg:w="57"/><text x="64.9053%" y="847.50"></text></g><g><title>bind_function (58 samples, 0.04%)</title><rect x="64.6553%" y="869" width="0.0396%" height="15" fill="rgb(214,177,35)" fg:x="94634" fg:w="58"/><text x="64.9053%" y="879.50"></text></g><g><title>copy_command (18 samples, 0.01%)</title><rect x="64.7120%" y="405" width="0.0123%" height="15" fill="rgb(234,119,46)" fg:x="94717" fg:w="18"/><text x="64.9620%" y="415.50"></text></g><g><title>copy_command (18 samples, 0.01%)</title><rect x="64.7120%" y="389" width="0.0123%" height="15" fill="rgb(241,180,50)" fg:x="94717" fg:w="18"/><text x="64.9620%" y="399.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="64.7127%" y="373" width="0.0116%" height="15" fill="rgb(221,54,25)" fg:x="94718" fg:w="17"/><text x="64.9627%" y="383.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="64.7134%" y="357" width="0.0109%" height="15" fill="rgb(209,157,44)" fg:x="94719" fg:w="16"/><text x="64.9634%" y="367.50"></text></g><g><title>copy_command (19 samples, 0.01%)</title><rect x="64.7120%" y="421" width="0.0130%" height="15" fill="rgb(246,115,41)" fg:x="94717" fg:w="19"/><text x="64.9620%" y="431.50"></text></g><g><title>copy_command (20 samples, 0.01%)</title><rect x="64.7120%" y="453" width="0.0137%" height="15" fill="rgb(229,86,1)" fg:x="94717" fg:w="20"/><text x="64.9620%" y="463.50"></text></g><g><title>copy_command (20 samples, 0.01%)</title><rect x="64.7120%" y="437" width="0.0137%" height="15" fill="rgb(240,108,53)" fg:x="94717" fg:w="20"/><text x="64.9620%" y="447.50"></text></g><g><title>copy_command (23 samples, 0.02%)</title><rect x="64.7106%" y="549" width="0.0157%" height="15" fill="rgb(227,134,2)" fg:x="94715" fg:w="23"/><text x="64.9606%" y="559.50"></text></g><g><title>copy_command (22 samples, 0.02%)</title><rect x="64.7113%" y="533" width="0.0150%" height="15" fill="rgb(213,129,25)" fg:x="94716" fg:w="22"/><text x="64.9613%" y="543.50"></text></g><g><title>copy_command (22 samples, 0.02%)</title><rect x="64.7113%" y="517" width="0.0150%" height="15" fill="rgb(226,35,21)" fg:x="94716" fg:w="22"/><text x="64.9613%" y="527.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="64.7120%" y="501" width="0.0143%" height="15" fill="rgb(208,129,26)" fg:x="94717" fg:w="21"/><text x="64.9620%" y="511.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="64.7120%" y="485" width="0.0143%" height="15" fill="rgb(224,83,6)" fg:x="94717" fg:w="21"/><text x="64.9620%" y="495.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="64.7120%" y="469" width="0.0143%" height="15" fill="rgb(227,52,39)" fg:x="94717" fg:w="21"/><text x="64.9620%" y="479.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="64.7106%" y="565" width="0.0164%" height="15" fill="rgb(241,30,17)" fg:x="94715" fg:w="24"/><text x="64.9606%" y="575.50"></text></g><g><title>copy_command (25 samples, 0.02%)</title><rect x="64.7106%" y="597" width="0.0171%" height="15" fill="rgb(246,186,42)" fg:x="94715" fg:w="25"/><text x="64.9606%" y="607.50"></text></g><g><title>copy_command (25 samples, 0.02%)</title><rect x="64.7106%" y="581" width="0.0171%" height="15" fill="rgb(221,169,15)" fg:x="94715" fg:w="25"/><text x="64.9606%" y="591.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="64.7099%" y="629" width="0.0184%" height="15" fill="rgb(235,108,21)" fg:x="94714" fg:w="27"/><text x="64.9599%" y="639.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="64.7106%" y="613" width="0.0178%" height="15" fill="rgb(219,148,30)" fg:x="94715" fg:w="26"/><text x="64.9606%" y="623.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="64.7099%" y="661" width="0.0191%" height="15" fill="rgb(220,109,5)" fg:x="94714" fg:w="28"/><text x="64.9599%" y="671.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="64.7099%" y="645" width="0.0191%" height="15" fill="rgb(213,203,48)" fg:x="94714" fg:w="28"/><text x="64.9599%" y="655.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="64.7099%" y="677" width="0.0212%" height="15" fill="rgb(244,71,33)" fg:x="94714" fg:w="31"/><text x="64.9599%" y="687.50"></text></g><g><title>copy_command (43 samples, 0.03%)</title><rect x="64.7024%" y="725" width="0.0294%" height="15" fill="rgb(209,23,2)" fg:x="94703" fg:w="43"/><text x="64.9524%" y="735.50"></text></g><g><title>copy_command (42 samples, 0.03%)</title><rect x="64.7031%" y="709" width="0.0287%" height="15" fill="rgb(219,97,7)" fg:x="94704" fg:w="42"/><text x="64.9531%" y="719.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="64.7099%" y="693" width="0.0219%" height="15" fill="rgb(216,161,23)" fg:x="94714" fg:w="32"/><text x="64.9599%" y="703.50"></text></g><g><title>copy_command (44 samples, 0.03%)</title><rect x="64.7024%" y="741" width="0.0301%" height="15" fill="rgb(207,45,42)" fg:x="94703" fg:w="44"/><text x="64.9524%" y="751.50"></text></g><g><title>copy_command (47 samples, 0.03%)</title><rect x="64.7024%" y="757" width="0.0321%" height="15" fill="rgb(241,61,4)" fg:x="94703" fg:w="47"/><text x="64.9524%" y="767.50"></text></g><g><title>copy_command (55 samples, 0.04%)</title><rect x="64.6983%" y="773" width="0.0376%" height="15" fill="rgb(236,170,1)" fg:x="94697" fg:w="55"/><text x="64.9483%" y="783.50"></text></g><g><title>copy_command (58 samples, 0.04%)</title><rect x="64.6983%" y="789" width="0.0396%" height="15" fill="rgb(239,72,5)" fg:x="94697" fg:w="58"/><text x="64.9483%" y="799.50"></text></g><g><title>copy_command (62 samples, 0.04%)</title><rect x="64.6963%" y="805" width="0.0424%" height="15" fill="rgb(214,13,50)" fg:x="94694" fg:w="62"/><text x="64.9463%" y="815.50"></text></g><g><title>copy_command (64 samples, 0.04%)</title><rect x="64.6956%" y="821" width="0.0437%" height="15" fill="rgb(224,88,9)" fg:x="94693" fg:w="64"/><text x="64.9456%" y="831.50"></text></g><g><title>copy_command (65 samples, 0.04%)</title><rect x="64.6956%" y="853" width="0.0444%" height="15" fill="rgb(238,192,34)" fg:x="94693" fg:w="65"/><text x="64.9456%" y="863.50"></text></g><g><title>copy_command (65 samples, 0.04%)</title><rect x="64.6956%" y="837" width="0.0444%" height="15" fill="rgb(217,203,50)" fg:x="94693" fg:w="65"/><text x="64.9456%" y="847.50"></text></g><g><title>copy_function_def_contents (66 samples, 0.05%)</title><rect x="64.6956%" y="869" width="0.0451%" height="15" fill="rgb(241,123,32)" fg:x="94693" fg:w="66"/><text x="64.9456%" y="879.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="64.7427%" y="837" width="0.0130%" height="15" fill="rgb(248,151,39)" fg:x="94762" fg:w="19"/><text x="64.9927%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.04%)</title><rect x="64.7748%" y="693" width="0.0383%" height="15" fill="rgb(208,89,6)" fg:x="94809" fg:w="56"/><text x="65.0248%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.04%)</title><rect x="64.7748%" y="677" width="0.0383%" height="15" fill="rgb(254,43,26)" fg:x="94809" fg:w="56"/><text x="65.0248%" y="687.50"></text></g><g><title>native_write_msr (56 samples, 0.04%)</title><rect x="64.7748%" y="661" width="0.0383%" height="15" fill="rgb(216,158,13)" fg:x="94809" fg:w="56"/><text x="65.0248%" y="671.50"></text></g><g><title>arch_fork (73 samples, 0.05%)</title><rect x="64.7639%" y="757" width="0.0499%" height="15" fill="rgb(212,47,37)" fg:x="94793" fg:w="73"/><text x="65.0139%" y="767.50"></text></g><g><title>ret_from_fork (66 samples, 0.05%)</title><rect x="64.7687%" y="741" width="0.0451%" height="15" fill="rgb(254,16,10)" fg:x="94800" fg:w="66"/><text x="65.0187%" y="751.50"></text></g><g><title>schedule_tail (66 samples, 0.05%)</title><rect x="64.7687%" y="725" width="0.0451%" height="15" fill="rgb(223,228,16)" fg:x="94800" fg:w="66"/><text x="65.0187%" y="735.50"></text></g><g><title>finish_task_switch (61 samples, 0.04%)</title><rect x="64.7721%" y="709" width="0.0417%" height="15" fill="rgb(249,108,50)" fg:x="94805" fg:w="61"/><text x="65.0221%" y="719.50"></text></g><g><title>__libc_fork (74 samples, 0.05%)</title><rect x="64.7639%" y="773" width="0.0506%" height="15" fill="rgb(208,220,5)" fg:x="94793" fg:w="74"/><text x="65.0139%" y="783.50"></text></g><g><title>make_child (77 samples, 0.05%)</title><rect x="64.7632%" y="789" width="0.0526%" height="15" fill="rgb(217,89,48)" fg:x="94792" fg:w="77"/><text x="65.0132%" y="799.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8172%" y="757" width="0.0137%" height="15" fill="rgb(212,113,41)" fg:x="94871" fg:w="20"/><text x="65.0672%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="64.8398%" y="661" width="0.0266%" height="15" fill="rgb(231,127,5)" fg:x="94904" fg:w="39"/><text x="65.0898%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.03%)</title><rect x="64.8398%" y="645" width="0.0266%" height="15" fill="rgb(217,141,17)" fg:x="94904" fg:w="39"/><text x="65.0898%" y="655.50"></text></g><g><title>native_write_msr (39 samples, 0.03%)</title><rect x="64.8398%" y="629" width="0.0266%" height="15" fill="rgb(245,125,54)" fg:x="94904" fg:w="39"/><text x="65.0898%" y="639.50"></text></g><g><title>__libc_fork (51 samples, 0.03%)</title><rect x="64.8322%" y="741" width="0.0348%" height="15" fill="rgb(248,125,3)" fg:x="94893" fg:w="51"/><text x="65.0822%" y="751.50"></text></g><g><title>arch_fork (51 samples, 0.03%)</title><rect x="64.8322%" y="725" width="0.0348%" height="15" fill="rgb(236,119,51)" fg:x="94893" fg:w="51"/><text x="65.0822%" y="735.50"></text></g><g><title>ret_from_fork (47 samples, 0.03%)</title><rect x="64.8350%" y="709" width="0.0321%" height="15" fill="rgb(239,99,8)" fg:x="94897" fg:w="47"/><text x="65.0850%" y="719.50"></text></g><g><title>schedule_tail (47 samples, 0.03%)</title><rect x="64.8350%" y="693" width="0.0321%" height="15" fill="rgb(224,228,4)" fg:x="94897" fg:w="47"/><text x="65.0850%" y="703.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="64.8384%" y="677" width="0.0287%" height="15" fill="rgb(220,131,45)" fg:x="94902" fg:w="42"/><text x="65.0884%" y="687.50"></text></g><g><title>make_child (59 samples, 0.04%)</title><rect x="64.8309%" y="757" width="0.0403%" height="15" fill="rgb(215,62,5)" fg:x="94891" fg:w="59"/><text x="65.0809%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.02%)</title><rect x="64.8739%" y="597" width="0.0191%" height="15" fill="rgb(253,12,24)" fg:x="94954" fg:w="28"/><text x="65.1239%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="64.8739%" y="581" width="0.0191%" height="15" fill="rgb(248,120,50)" fg:x="94954" fg:w="28"/><text x="65.1239%" y="591.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="64.8739%" y="565" width="0.0191%" height="15" fill="rgb(245,194,10)" fg:x="94954" fg:w="28"/><text x="65.1239%" y="575.50"></text></g><g><title>schedule (30 samples, 0.02%)</title><rect x="64.8739%" y="645" width="0.0205%" height="15" fill="rgb(241,149,38)" fg:x="94954" fg:w="30"/><text x="65.1239%" y="655.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="64.8739%" y="629" width="0.0205%" height="15" fill="rgb(219,215,7)" fg:x="94954" fg:w="30"/><text x="65.1239%" y="639.50"></text></g><g><title>finish_task_switch (30 samples, 0.02%)</title><rect x="64.8739%" y="613" width="0.0205%" height="15" fill="rgb(208,120,31)" fg:x="94954" fg:w="30"/><text x="65.1239%" y="623.50"></text></g><g><title>__GI___wait4 (36 samples, 0.02%)</title><rect x="64.8725%" y="725" width="0.0246%" height="15" fill="rgb(244,30,8)" fg:x="94952" fg:w="36"/><text x="65.1225%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="64.8725%" y="709" width="0.0246%" height="15" fill="rgb(238,35,44)" fg:x="94952" fg:w="36"/><text x="65.1225%" y="719.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="64.8725%" y="693" width="0.0246%" height="15" fill="rgb(243,218,37)" fg:x="94952" fg:w="36"/><text x="65.1225%" y="703.50"></text></g><g><title>kernel_wait4 (36 samples, 0.02%)</title><rect x="64.8725%" y="677" width="0.0246%" height="15" fill="rgb(218,169,10)" fg:x="94952" fg:w="36"/><text x="65.1225%" y="687.50"></text></g><g><title>do_wait (36 samples, 0.02%)</title><rect x="64.8725%" y="661" width="0.0246%" height="15" fill="rgb(221,144,10)" fg:x="94952" fg:w="36"/><text x="65.1225%" y="671.50"></text></g><g><title>[bash] (39 samples, 0.03%)</title><rect x="64.8725%" y="741" width="0.0266%" height="15" fill="rgb(226,41,38)" fg:x="94952" fg:w="39"/><text x="65.1225%" y="751.50"></text></g><g><title>execute_command_internal (121 samples, 0.08%)</title><rect x="64.8172%" y="773" width="0.0827%" height="15" fill="rgb(228,3,1)" fg:x="94871" fg:w="121"/><text x="65.0672%" y="783.50"></text></g><g><title>wait_for (40 samples, 0.03%)</title><rect x="64.8725%" y="757" width="0.0273%" height="15" fill="rgb(209,129,12)" fg:x="94952" fg:w="40"/><text x="65.1225%" y="767.50"></text></g><g><title>parse_and_execute (126 samples, 0.09%)</title><rect x="64.8158%" y="789" width="0.0861%" height="15" fill="rgb(213,136,33)" fg:x="94869" fg:w="126"/><text x="65.0658%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (52 samples, 0.04%)</title><rect x="64.9108%" y="613" width="0.0355%" height="15" fill="rgb(209,181,29)" fg:x="95008" fg:w="52"/><text x="65.1608%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (52 samples, 0.04%)</title><rect x="64.9108%" y="597" width="0.0355%" height="15" fill="rgb(234,173,18)" fg:x="95008" fg:w="52"/><text x="65.1608%" y="607.50"></text></g><g><title>native_write_msr (52 samples, 0.04%)</title><rect x="64.9108%" y="581" width="0.0355%" height="15" fill="rgb(227,73,47)" fg:x="95008" fg:w="52"/><text x="65.1608%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="64.9060%" y="757" width="0.0430%" height="15" fill="rgb(234,9,34)" fg:x="95001" fg:w="63"/><text x="65.1560%" y="767.50"></text></g><g><title>do_syscall_64 (63 samples, 0.04%)</title><rect x="64.9060%" y="741" width="0.0430%" height="15" fill="rgb(235,172,15)" fg:x="95001" fg:w="63"/><text x="65.1560%" y="751.50"></text></g><g><title>ksys_read (62 samples, 0.04%)</title><rect x="64.9067%" y="725" width="0.0424%" height="15" fill="rgb(245,61,2)" fg:x="95002" fg:w="62"/><text x="65.1567%" y="735.50"></text></g><g><title>vfs_read (62 samples, 0.04%)</title><rect x="64.9067%" y="709" width="0.0424%" height="15" fill="rgb(238,39,47)" fg:x="95002" fg:w="62"/><text x="65.1567%" y="719.50"></text></g><g><title>new_sync_read (62 samples, 0.04%)</title><rect x="64.9067%" y="693" width="0.0424%" height="15" fill="rgb(234,37,24)" fg:x="95002" fg:w="62"/><text x="65.1567%" y="703.50"></text></g><g><title>pipe_read (62 samples, 0.04%)</title><rect x="64.9067%" y="677" width="0.0424%" height="15" fill="rgb(248,223,24)" fg:x="95002" fg:w="62"/><text x="65.1567%" y="687.50"></text></g><g><title>schedule (59 samples, 0.04%)</title><rect x="64.9088%" y="661" width="0.0403%" height="15" fill="rgb(223,12,15)" fg:x="95005" fg:w="59"/><text x="65.1588%" y="671.50"></text></g><g><title>__schedule (59 samples, 0.04%)</title><rect x="64.9088%" y="645" width="0.0403%" height="15" fill="rgb(249,6,3)" fg:x="95005" fg:w="59"/><text x="65.1588%" y="655.50"></text></g><g><title>finish_task_switch (59 samples, 0.04%)</title><rect x="64.9088%" y="629" width="0.0403%" height="15" fill="rgb(237,105,33)" fg:x="95005" fg:w="59"/><text x="65.1588%" y="639.50"></text></g><g><title>expand_word_leave_quoted (279 samples, 0.19%)</title><rect x="64.7591%" y="837" width="0.1906%" height="15" fill="rgb(252,208,35)" fg:x="94786" fg:w="279"/><text x="65.0091%" y="847.50"></text></g><g><title>[bash] (279 samples, 0.19%)</title><rect x="64.7591%" y="821" width="0.1906%" height="15" fill="rgb(215,181,35)" fg:x="94786" fg:w="279"/><text x="65.0091%" y="831.50"></text></g><g><title>command_substitute (279 samples, 0.19%)</title><rect x="64.7591%" y="805" width="0.1906%" height="15" fill="rgb(246,212,3)" fg:x="94786" fg:w="279"/><text x="65.0091%" y="815.50"></text></g><g><title>zread (64 samples, 0.04%)</title><rect x="64.9060%" y="789" width="0.0437%" height="15" fill="rgb(247,156,24)" fg:x="95001" fg:w="64"/><text x="65.1560%" y="799.50"></text></g><g><title>__GI___libc_read (64 samples, 0.04%)</title><rect x="64.9060%" y="773" width="0.0437%" height="15" fill="rgb(248,9,31)" fg:x="95001" fg:w="64"/><text x="65.1560%" y="783.50"></text></g><g><title>execute_command (313 samples, 0.21%)</title><rect x="64.7421%" y="869" width="0.2138%" height="15" fill="rgb(234,26,45)" fg:x="94761" fg:w="313"/><text x="64.9921%" y="879.50"></text></g><g><title>execute_command_internal (313 samples, 0.21%)</title><rect x="64.7421%" y="853" width="0.2138%" height="15" fill="rgb(249,11,32)" fg:x="94761" fg:w="313"/><text x="64.9921%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (63 samples, 0.04%)</title><rect x="64.9757%" y="677" width="0.0430%" height="15" fill="rgb(249,162,33)" fg:x="95103" fg:w="63"/><text x="65.2257%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.04%)</title><rect x="64.9757%" y="661" width="0.0430%" height="15" fill="rgb(232,4,32)" fg:x="95103" fg:w="63"/><text x="65.2257%" y="671.50"></text></g><g><title>native_write_msr (63 samples, 0.04%)</title><rect x="64.9757%" y="645" width="0.0430%" height="15" fill="rgb(212,5,45)" fg:x="95103" fg:w="63"/><text x="65.2257%" y="655.50"></text></g><g><title>arch_fork (78 samples, 0.05%)</title><rect x="64.9661%" y="741" width="0.0533%" height="15" fill="rgb(227,95,13)" fg:x="95089" fg:w="78"/><text x="65.2161%" y="751.50"></text></g><g><title>ret_from_fork (73 samples, 0.05%)</title><rect x="64.9696%" y="725" width="0.0499%" height="15" fill="rgb(223,205,10)" fg:x="95094" fg:w="73"/><text x="65.2196%" y="735.50"></text></g><g><title>schedule_tail (72 samples, 0.05%)</title><rect x="64.9702%" y="709" width="0.0492%" height="15" fill="rgb(222,178,8)" fg:x="95095" fg:w="72"/><text x="65.2202%" y="719.50"></text></g><g><title>finish_task_switch (65 samples, 0.04%)</title><rect x="64.9750%" y="693" width="0.0444%" height="15" fill="rgb(216,13,22)" fg:x="95102" fg:w="65"/><text x="65.2250%" y="703.50"></text></g><g><title>__libc_fork (80 samples, 0.05%)</title><rect x="64.9655%" y="757" width="0.0547%" height="15" fill="rgb(240,167,12)" fg:x="95088" fg:w="80"/><text x="65.2155%" y="767.50"></text></g><g><title>make_child (87 samples, 0.06%)</title><rect x="64.9655%" y="773" width="0.0594%" height="15" fill="rgb(235,68,35)" fg:x="95088" fg:w="87"/><text x="65.2155%" y="783.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="65.0290%" y="693" width="0.0164%" height="15" fill="rgb(253,40,27)" fg:x="95181" fg:w="24"/><text x="65.2790%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (90 samples, 0.06%)</title><rect x="65.0843%" y="597" width="0.0615%" height="15" fill="rgb(214,19,28)" fg:x="95262" fg:w="90"/><text x="65.3343%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (89 samples, 0.06%)</title><rect x="65.0850%" y="581" width="0.0608%" height="15" fill="rgb(210,167,45)" fg:x="95263" fg:w="89"/><text x="65.3350%" y="591.50"></text></g><g><title>native_write_msr (89 samples, 0.06%)</title><rect x="65.0850%" y="565" width="0.0608%" height="15" fill="rgb(232,97,40)" fg:x="95263" fg:w="89"/><text x="65.3350%" y="575.50"></text></g><g><title>arch_fork (124 samples, 0.08%)</title><rect x="65.0625%" y="661" width="0.0847%" height="15" fill="rgb(250,35,23)" fg:x="95230" fg:w="124"/><text x="65.3125%" y="671.50"></text></g><g><title>ret_from_fork (108 samples, 0.07%)</title><rect x="65.0734%" y="645" width="0.0738%" height="15" fill="rgb(248,47,53)" fg:x="95246" fg:w="108"/><text x="65.3234%" y="655.50"></text></g><g><title>schedule_tail (108 samples, 0.07%)</title><rect x="65.0734%" y="629" width="0.0738%" height="15" fill="rgb(226,58,50)" fg:x="95246" fg:w="108"/><text x="65.3234%" y="639.50"></text></g><g><title>finish_task_switch (99 samples, 0.07%)</title><rect x="65.0796%" y="613" width="0.0676%" height="15" fill="rgb(217,105,26)" fg:x="95255" fg:w="99"/><text x="65.3296%" y="623.50"></text></g><g><title>__libc_fork (129 samples, 0.09%)</title><rect x="65.0604%" y="677" width="0.0881%" height="15" fill="rgb(208,64,1)" fg:x="95227" fg:w="129"/><text x="65.3104%" y="687.50"></text></g><g><title>make_child (137 samples, 0.09%)</title><rect x="65.0591%" y="693" width="0.0936%" height="15" fill="rgb(214,80,1)" fg:x="95225" fg:w="137"/><text x="65.3091%" y="703.50"></text></g><g><title>schedule (18 samples, 0.01%)</title><rect x="65.1547%" y="581" width="0.0123%" height="15" fill="rgb(206,175,26)" fg:x="95365" fg:w="18"/><text x="65.4047%" y="591.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="65.1547%" y="565" width="0.0123%" height="15" fill="rgb(235,156,37)" fg:x="95365" fg:w="18"/><text x="65.4047%" y="575.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="65.1547%" y="549" width="0.0123%" height="15" fill="rgb(213,100,9)" fg:x="95365" fg:w="18"/><text x="65.4047%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="65.1554%" y="533" width="0.0116%" height="15" fill="rgb(241,15,13)" fg:x="95366" fg:w="17"/><text x="65.4054%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="65.1554%" y="517" width="0.0116%" height="15" fill="rgb(205,97,43)" fg:x="95366" fg:w="17"/><text x="65.4054%" y="527.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="65.1554%" y="501" width="0.0116%" height="15" fill="rgb(216,106,32)" fg:x="95366" fg:w="17"/><text x="65.4054%" y="511.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="65.1527%" y="677" width="0.0157%" height="15" fill="rgb(226,200,8)" fg:x="95362" fg:w="23"/><text x="65.4027%" y="687.50"></text></g><g><title>__GI___wait4 (21 samples, 0.01%)</title><rect x="65.1540%" y="661" width="0.0143%" height="15" fill="rgb(244,54,29)" fg:x="95364" fg:w="21"/><text x="65.4040%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="65.1540%" y="645" width="0.0143%" height="15" fill="rgb(252,169,12)" fg:x="95364" fg:w="21"/><text x="65.4040%" y="655.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="65.1540%" y="629" width="0.0143%" height="15" fill="rgb(231,199,11)" fg:x="95364" fg:w="21"/><text x="65.4040%" y="639.50"></text></g><g><title>kernel_wait4 (21 samples, 0.01%)</title><rect x="65.1540%" y="613" width="0.0143%" height="15" fill="rgb(233,191,18)" fg:x="95364" fg:w="21"/><text x="65.4040%" y="623.50"></text></g><g><title>do_wait (21 samples, 0.01%)</title><rect x="65.1540%" y="597" width="0.0143%" height="15" fill="rgb(215,83,47)" fg:x="95364" fg:w="21"/><text x="65.4040%" y="607.50"></text></g><g><title>parse_and_execute (212 samples, 0.14%)</title><rect x="65.0249%" y="773" width="0.1448%" height="15" fill="rgb(251,67,19)" fg:x="95175" fg:w="212"/><text x="65.2749%" y="783.50"></text></g><g><title>execute_command_internal (210 samples, 0.14%)</title><rect x="65.0263%" y="757" width="0.1435%" height="15" fill="rgb(240,7,20)" fg:x="95177" fg:w="210"/><text x="65.2763%" y="767.50"></text></g><g><title>[bash] (210 samples, 0.14%)</title><rect x="65.0263%" y="741" width="0.1435%" height="15" fill="rgb(210,150,26)" fg:x="95177" fg:w="210"/><text x="65.2763%" y="751.50"></text></g><g><title>[bash] (210 samples, 0.14%)</title><rect x="65.0263%" y="725" width="0.1435%" height="15" fill="rgb(228,75,42)" fg:x="95177" fg:w="210"/><text x="65.2763%" y="735.50"></text></g><g><title>execute_command_internal (208 samples, 0.14%)</title><rect x="65.0276%" y="709" width="0.1421%" height="15" fill="rgb(237,134,48)" fg:x="95179" fg:w="208"/><text x="65.2776%" y="719.50"></text></g><g><title>wait_for (25 samples, 0.02%)</title><rect x="65.1527%" y="693" width="0.0171%" height="15" fill="rgb(205,80,50)" fg:x="95362" fg:w="25"/><text x="65.4027%" y="703.50"></text></g><g><title>command_substitute (321 samples, 0.22%)</title><rect x="64.9620%" y="789" width="0.2193%" height="15" fill="rgb(217,74,48)" fg:x="95083" fg:w="321"/><text x="65.2120%" y="799.50"></text></g><g><title>[bash] (331 samples, 0.23%)</title><rect x="64.9566%" y="805" width="0.2261%" height="15" fill="rgb(205,82,50)" fg:x="95075" fg:w="331"/><text x="65.2066%" y="815.50"></text></g><g><title>[bash] (332 samples, 0.23%)</title><rect x="64.9566%" y="821" width="0.2268%" height="15" fill="rgb(228,1,33)" fg:x="95075" fg:w="332"/><text x="65.2066%" y="831.50"></text></g><g><title>[bash] (339 samples, 0.23%)</title><rect x="64.9566%" y="837" width="0.2316%" height="15" fill="rgb(214,50,23)" fg:x="95075" fg:w="339"/><text x="65.2066%" y="847.50"></text></g><g><title>[bash] (344 samples, 0.24%)</title><rect x="64.9566%" y="853" width="0.2350%" height="15" fill="rgb(210,62,9)" fg:x="95075" fg:w="344"/><text x="65.2066%" y="863.50"></text></g><g><title>expand_words (345 samples, 0.24%)</title><rect x="64.9566%" y="869" width="0.2357%" height="15" fill="rgb(210,104,37)" fg:x="95075" fg:w="345"/><text x="65.2066%" y="879.50"></text></g><g><title>execute_command (948 samples, 0.65%)</title><rect x="64.5473%" y="901" width="0.6477%" height="15" fill="rgb(232,104,43)" fg:x="94476" fg:w="948"/><text x="64.7973%" y="911.50"></text></g><g><title>execute_command_internal (948 samples, 0.65%)</title><rect x="64.5473%" y="885" width="0.6477%" height="15" fill="rgb(244,52,6)" fg:x="94476" fg:w="948"/><text x="64.7973%" y="895.50"></text></g><g><title>[bash] (42 samples, 0.03%)</title><rect x="65.3515%" y="821" width="0.0287%" height="15" fill="rgb(211,174,52)" fg:x="95653" fg:w="42"/><text x="65.6015%" y="831.50"></text></g><g><title>buffered_getchar (39 samples, 0.03%)</title><rect x="65.3822%" y="821" width="0.0266%" height="15" fill="rgb(229,48,4)" fg:x="95698" fg:w="39"/><text x="65.6322%" y="831.50"></text></g><g><title>[bash] (201 samples, 0.14%)</title><rect x="65.2729%" y="837" width="0.1373%" height="15" fill="rgb(205,155,16)" fg:x="95538" fg:w="201"/><text x="65.5229%" y="847.50"></text></g><g><title>[bash] (352 samples, 0.24%)</title><rect x="65.2162%" y="853" width="0.2405%" height="15" fill="rgb(211,141,53)" fg:x="95455" fg:w="352"/><text x="65.4662%" y="863.50"></text></g><g><title>make_simple_command (15 samples, 0.01%)</title><rect x="65.4656%" y="853" width="0.0102%" height="15" fill="rgb(240,148,11)" fg:x="95820" fg:w="15"/><text x="65.7156%" y="863.50"></text></g><g><title>reader_loop (1,389 samples, 0.95%)</title><rect x="64.5282%" y="917" width="0.9490%" height="15" fill="rgb(214,45,23)" fg:x="94448" fg:w="1389"/><text x="64.7782%" y="927.50"></text></g><g><title>read_command (413 samples, 0.28%)</title><rect x="65.1950%" y="901" width="0.2822%" height="15" fill="rgb(248,74,26)" fg:x="95424" fg:w="413"/><text x="65.4450%" y="911.50"></text></g><g><title>parse_command (413 samples, 0.28%)</title><rect x="65.1950%" y="885" width="0.2822%" height="15" fill="rgb(218,121,16)" fg:x="95424" fg:w="413"/><text x="65.4450%" y="895.50"></text></g><g><title>yyparse (413 samples, 0.28%)</title><rect x="65.1950%" y="869" width="0.2822%" height="15" fill="rgb(218,10,47)" fg:x="95424" fg:w="413"/><text x="65.4450%" y="879.50"></text></g><g><title>__libc_start_main (1,399 samples, 0.96%)</title><rect x="64.5234%" y="949" width="0.9558%" height="15" fill="rgb(227,99,14)" fg:x="94441" fg:w="1399"/><text x="64.7734%" y="959.50"></text></g><g><title>main (1,399 samples, 0.96%)</title><rect x="64.5234%" y="933" width="0.9558%" height="15" fill="rgb(229,83,46)" fg:x="94441" fg:w="1399"/><text x="64.7734%" y="943.50"></text></g><g><title>_start (1,413 samples, 0.97%)</title><rect x="64.5234%" y="965" width="0.9654%" height="15" fill="rgb(228,25,1)" fg:x="94441" fg:w="1413"/><text x="64.7734%" y="975.50"></text></g><g><title>asm_exc_page_fault (40 samples, 0.03%)</title><rect x="65.4888%" y="965" width="0.0273%" height="15" fill="rgb(252,190,15)" fg:x="95854" fg:w="40"/><text x="65.7388%" y="975.50"></text></g><g><title>__x64_sys_execve (15 samples, 0.01%)</title><rect x="65.5175%" y="933" width="0.0102%" height="15" fill="rgb(213,103,51)" fg:x="95896" fg:w="15"/><text x="65.7675%" y="943.50"></text></g><g><title>do_execveat_common (15 samples, 0.01%)</title><rect x="65.5175%" y="917" width="0.0102%" height="15" fill="rgb(220,38,44)" fg:x="95896" fg:w="15"/><text x="65.7675%" y="927.50"></text></g><g><title>bprm_execve (15 samples, 0.01%)</title><rect x="65.5175%" y="901" width="0.0102%" height="15" fill="rgb(210,45,26)" fg:x="95896" fg:w="15"/><text x="65.7675%" y="911.50"></text></g><g><title>load_elf_binary (15 samples, 0.01%)</title><rect x="65.5175%" y="885" width="0.0102%" height="15" fill="rgb(205,95,48)" fg:x="95896" fg:w="15"/><text x="65.7675%" y="895.50"></text></g><g><title>tlb_finish_mmu (15 samples, 0.01%)</title><rect x="65.5339%" y="853" width="0.0102%" height="15" fill="rgb(225,179,37)" fg:x="95920" fg:w="15"/><text x="65.7839%" y="863.50"></text></g><g><title>unmap_page_range (20 samples, 0.01%)</title><rect x="65.5441%" y="837" width="0.0137%" height="15" fill="rgb(230,209,3)" fg:x="95935" fg:w="20"/><text x="65.7941%" y="847.50"></text></g><g><title>mmput (45 samples, 0.03%)</title><rect x="65.5277%" y="885" width="0.0307%" height="15" fill="rgb(248,12,46)" fg:x="95911" fg:w="45"/><text x="65.7777%" y="895.50"></text></g><g><title>exit_mmap (45 samples, 0.03%)</title><rect x="65.5277%" y="869" width="0.0307%" height="15" fill="rgb(234,18,0)" fg:x="95911" fg:w="45"/><text x="65.7777%" y="879.50"></text></g><g><title>unmap_vmas (21 samples, 0.01%)</title><rect x="65.5441%" y="853" width="0.0143%" height="15" fill="rgb(238,197,14)" fg:x="95935" fg:w="21"/><text x="65.7941%" y="863.50"></text></g><g><title>__x64_sys_exit_group (51 samples, 0.03%)</title><rect x="65.5277%" y="933" width="0.0348%" height="15" fill="rgb(251,162,48)" fg:x="95911" fg:w="51"/><text x="65.7777%" y="943.50"></text></g><g><title>do_group_exit (51 samples, 0.03%)</title><rect x="65.5277%" y="917" width="0.0348%" height="15" fill="rgb(237,73,42)" fg:x="95911" fg:w="51"/><text x="65.7777%" y="927.50"></text></g><g><title>do_exit (51 samples, 0.03%)</title><rect x="65.5277%" y="901" width="0.0348%" height="15" fill="rgb(211,108,8)" fg:x="95911" fg:w="51"/><text x="65.7777%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.05%)</title><rect x="65.5168%" y="965" width="0.0465%" height="15" fill="rgb(213,45,22)" fg:x="95895" fg:w="68"/><text x="65.7668%" y="975.50"></text></g><g><title>do_syscall_64 (68 samples, 0.05%)</title><rect x="65.5168%" y="949" width="0.0465%" height="15" fill="rgb(252,154,5)" fg:x="95895" fg:w="68"/><text x="65.7668%" y="959.50"></text></g><g><title>libtool (1,924 samples, 1.31%)</title><rect x="64.2495%" y="981" width="1.3145%" height="15" fill="rgb(221,79,52)" fg:x="94040" fg:w="1924"/><text x="64.4995%" y="991.50"></text></g><g><title>[[stack]] (21 samples, 0.01%)</title><rect x="65.5640%" y="965" width="0.0143%" height="15" fill="rgb(229,220,36)" fg:x="95964" fg:w="21"/><text x="65.8140%" y="975.50"></text></g><g><title>copy_ipcs (15 samples, 0.01%)</title><rect x="65.5974%" y="805" width="0.0102%" height="15" fill="rgb(211,17,16)" fg:x="96013" fg:w="15"/><text x="65.8474%" y="815.50"></text></g><g><title>copy_namespaces (30 samples, 0.02%)</title><rect x="65.5974%" y="837" width="0.0205%" height="15" fill="rgb(222,55,31)" fg:x="96013" fg:w="30"/><text x="65.8474%" y="847.50"></text></g><g><title>create_new_namespaces (30 samples, 0.02%)</title><rect x="65.5974%" y="821" width="0.0205%" height="15" fill="rgb(221,221,31)" fg:x="96013" fg:w="30"/><text x="65.8474%" y="831.50"></text></g><g><title>copy_mnt_ns (15 samples, 0.01%)</title><rect x="65.6077%" y="805" width="0.0102%" height="15" fill="rgb(227,168,26)" fg:x="96028" fg:w="15"/><text x="65.8577%" y="815.50"></text></g><g><title>dup_mm (19 samples, 0.01%)</title><rect x="65.6179%" y="837" width="0.0130%" height="15" fill="rgb(224,139,9)" fg:x="96043" fg:w="19"/><text x="65.8679%" y="847.50"></text></g><g><title>copy_process (65 samples, 0.04%)</title><rect x="65.5892%" y="853" width="0.0444%" height="15" fill="rgb(254,172,0)" fg:x="96001" fg:w="65"/><text x="65.8392%" y="863.50"></text></g><g><title>__libc_start_main (66 samples, 0.05%)</title><rect x="65.5892%" y="949" width="0.0451%" height="15" fill="rgb(235,203,1)" fg:x="96001" fg:w="66"/><text x="65.8392%" y="959.50"></text></g><g><title>__GI___clone (66 samples, 0.05%)</title><rect x="65.5892%" y="933" width="0.0451%" height="15" fill="rgb(216,205,24)" fg:x="96001" fg:w="66"/><text x="65.8392%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.05%)</title><rect x="65.5892%" y="917" width="0.0451%" height="15" fill="rgb(233,24,6)" fg:x="96001" fg:w="66"/><text x="65.8392%" y="927.50"></text></g><g><title>do_syscall_64 (66 samples, 0.05%)</title><rect x="65.5892%" y="901" width="0.0451%" height="15" fill="rgb(244,110,9)" fg:x="96001" fg:w="66"/><text x="65.8392%" y="911.50"></text></g><g><title>__do_sys_clone (66 samples, 0.05%)</title><rect x="65.5892%" y="885" width="0.0451%" height="15" fill="rgb(239,222,42)" fg:x="96001" fg:w="66"/><text x="65.8392%" y="895.50"></text></g><g><title>kernel_clone (66 samples, 0.05%)</title><rect x="65.5892%" y="869" width="0.0451%" height="15" fill="rgb(218,145,13)" fg:x="96001" fg:w="66"/><text x="65.8392%" y="879.50"></text></g><g><title>[unknown] (80 samples, 0.05%)</title><rect x="65.5872%" y="965" width="0.0547%" height="15" fill="rgb(207,69,11)" fg:x="95998" fg:w="80"/><text x="65.8372%" y="975.50"></text></g><g><title>__libc_sigaction (22 samples, 0.02%)</title><rect x="65.6521%" y="917" width="0.0150%" height="15" fill="rgb(220,223,22)" fg:x="96093" fg:w="22"/><text x="65.9021%" y="927.50"></text></g><g><title>__sigaction (17 samples, 0.01%)</title><rect x="65.6671%" y="917" width="0.0116%" height="15" fill="rgb(245,102,5)" fg:x="96115" fg:w="17"/><text x="65.9171%" y="927.50"></text></g><g><title>ClearSignalMask (47 samples, 0.03%)</title><rect x="65.6473%" y="933" width="0.0321%" height="15" fill="rgb(211,148,2)" fg:x="96086" fg:w="47"/><text x="65.8973%" y="943.50"></text></g><g><title>__GI___mkdir (25 samples, 0.02%)</title><rect x="65.6808%" y="917" width="0.0171%" height="15" fill="rgb(241,13,44)" fg:x="96135" fg:w="25"/><text x="65.9308%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="65.6808%" y="901" width="0.0171%" height="15" fill="rgb(219,137,21)" fg:x="96135" fg:w="25"/><text x="65.9308%" y="911.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="65.6808%" y="885" width="0.0171%" height="15" fill="rgb(242,206,5)" fg:x="96135" fg:w="25"/><text x="65.9308%" y="895.50"></text></g><g><title>do_mkdirat (25 samples, 0.02%)</title><rect x="65.6808%" y="869" width="0.0171%" height="15" fill="rgb(217,114,22)" fg:x="96135" fg:w="25"/><text x="65.9308%" y="879.50"></text></g><g><title>vfs_mkdir (21 samples, 0.01%)</title><rect x="65.6835%" y="853" width="0.0143%" height="15" fill="rgb(253,206,42)" fg:x="96139" fg:w="21"/><text x="65.9335%" y="863.50"></text></g><g><title>btrfs_mkdir (21 samples, 0.01%)</title><rect x="65.6835%" y="837" width="0.0143%" height="15" fill="rgb(236,102,18)" fg:x="96139" fg:w="21"/><text x="65.9335%" y="847.50"></text></g><g><title>CreateTarget (37 samples, 0.03%)</title><rect x="65.6794%" y="933" width="0.0253%" height="15" fill="rgb(208,59,49)" fg:x="96133" fg:w="37"/><text x="65.9294%" y="943.50"></text></g><g><title>do_filp_open (21 samples, 0.01%)</title><rect x="65.7156%" y="789" width="0.0143%" height="15" fill="rgb(215,194,28)" fg:x="96186" fg:w="21"/><text x="65.9656%" y="799.50"></text></g><g><title>path_openat (21 samples, 0.01%)</title><rect x="65.7156%" y="773" width="0.0143%" height="15" fill="rgb(243,207,11)" fg:x="96186" fg:w="21"/><text x="65.9656%" y="783.50"></text></g><g><title>__GI__IO_file_open (23 samples, 0.02%)</title><rect x="65.7149%" y="885" width="0.0157%" height="15" fill="rgb(254,179,35)" fg:x="96185" fg:w="23"/><text x="65.9649%" y="895.50"></text></g><g><title>__libc_open64 (23 samples, 0.02%)</title><rect x="65.7149%" y="869" width="0.0157%" height="15" fill="rgb(235,97,3)" fg:x="96185" fg:w="23"/><text x="65.9649%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="65.7149%" y="853" width="0.0157%" height="15" fill="rgb(215,155,33)" fg:x="96185" fg:w="23"/><text x="65.9649%" y="863.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="65.7149%" y="837" width="0.0157%" height="15" fill="rgb(223,128,12)" fg:x="96185" fg:w="23"/><text x="65.9649%" y="847.50"></text></g><g><title>__x64_sys_openat (23 samples, 0.02%)</title><rect x="65.7149%" y="821" width="0.0157%" height="15" fill="rgb(208,157,18)" fg:x="96185" fg:w="23"/><text x="65.9649%" y="831.50"></text></g><g><title>do_sys_openat2 (23 samples, 0.02%)</title><rect x="65.7149%" y="805" width="0.0157%" height="15" fill="rgb(249,70,54)" fg:x="96185" fg:w="23"/><text x="65.9649%" y="815.50"></text></g><g><title>_IO_new_file_fopen (27 samples, 0.02%)</title><rect x="65.7149%" y="901" width="0.0184%" height="15" fill="rgb(244,118,24)" fg:x="96185" fg:w="27"/><text x="65.9649%" y="911.50"></text></g><g><title>_IO_new_file_init_internal (19 samples, 0.01%)</title><rect x="65.7334%" y="901" width="0.0130%" height="15" fill="rgb(211,54,0)" fg:x="96212" fg:w="19"/><text x="65.9834%" y="911.50"></text></g><g><title>__GI__IO_link_in (19 samples, 0.01%)</title><rect x="65.7334%" y="885" width="0.0130%" height="15" fill="rgb(245,137,45)" fg:x="96212" fg:w="19"/><text x="65.9834%" y="895.50"></text></g><g><title>__fopen_internal (62 samples, 0.04%)</title><rect x="65.7149%" y="917" width="0.0424%" height="15" fill="rgb(232,154,31)" fg:x="96185" fg:w="62"/><text x="65.9649%" y="927.50"></text></g><g><title>WriteFile (83 samples, 0.06%)</title><rect x="65.7047%" y="933" width="0.0567%" height="15" fill="rgb(253,6,39)" fg:x="96170" fg:w="83"/><text x="65.9547%" y="943.50"></text></g><g><title>__GI___link (23 samples, 0.02%)</title><rect x="65.7641%" y="933" width="0.0157%" height="15" fill="rgb(234,183,24)" fg:x="96257" fg:w="23"/><text x="66.0141%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="65.7648%" y="917" width="0.0150%" height="15" fill="rgb(252,84,40)" fg:x="96258" fg:w="22"/><text x="66.0148%" y="927.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="65.7648%" y="901" width="0.0150%" height="15" fill="rgb(224,65,2)" fg:x="96258" fg:w="22"/><text x="66.0148%" y="911.50"></text></g><g><title>__x64_sys_link (22 samples, 0.02%)</title><rect x="65.7648%" y="885" width="0.0150%" height="15" fill="rgb(229,38,24)" fg:x="96258" fg:w="22"/><text x="66.0148%" y="895.50"></text></g><g><title>do_linkat (22 samples, 0.02%)</title><rect x="65.7648%" y="869" width="0.0150%" height="15" fill="rgb(218,131,50)" fg:x="96258" fg:w="22"/><text x="66.0148%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (101 samples, 0.07%)</title><rect x="65.7983%" y="805" width="0.0690%" height="15" fill="rgb(233,106,18)" fg:x="96307" fg:w="101"/><text x="66.0483%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (98 samples, 0.07%)</title><rect x="65.8004%" y="789" width="0.0670%" height="15" fill="rgb(220,216,11)" fg:x="96310" fg:w="98"/><text x="66.0504%" y="799.50"></text></g><g><title>native_write_msr (98 samples, 0.07%)</title><rect x="65.8004%" y="773" width="0.0670%" height="15" fill="rgb(251,100,45)" fg:x="96310" fg:w="98"/><text x="66.0504%" y="783.50"></text></g><g><title>finish_task_switch (111 samples, 0.08%)</title><rect x="65.7942%" y="821" width="0.0758%" height="15" fill="rgb(235,143,32)" fg:x="96301" fg:w="111"/><text x="66.0442%" y="831.50"></text></g><g><title>schedule (114 samples, 0.08%)</title><rect x="65.7935%" y="853" width="0.0779%" height="15" fill="rgb(248,124,34)" fg:x="96300" fg:w="114"/><text x="66.0435%" y="863.50"></text></g><g><title>__schedule (114 samples, 0.08%)</title><rect x="65.7935%" y="837" width="0.0779%" height="15" fill="rgb(225,221,4)" fg:x="96300" fg:w="114"/><text x="66.0435%" y="847.50"></text></g><g><title>__GI___wait4 (140 samples, 0.10%)</title><rect x="65.7901%" y="933" width="0.0956%" height="15" fill="rgb(242,27,43)" fg:x="96295" fg:w="140"/><text x="66.0401%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (139 samples, 0.09%)</title><rect x="65.7908%" y="917" width="0.0950%" height="15" fill="rgb(227,54,8)" fg:x="96296" fg:w="139"/><text x="66.0408%" y="927.50"></text></g><g><title>do_syscall_64 (139 samples, 0.09%)</title><rect x="65.7908%" y="901" width="0.0950%" height="15" fill="rgb(253,139,49)" fg:x="96296" fg:w="139"/><text x="66.0408%" y="911.50"></text></g><g><title>kernel_wait4 (139 samples, 0.09%)</title><rect x="65.7908%" y="885" width="0.0950%" height="15" fill="rgb(231,26,43)" fg:x="96296" fg:w="139"/><text x="66.0408%" y="895.50"></text></g><g><title>do_wait (139 samples, 0.09%)</title><rect x="65.7908%" y="869" width="0.0950%" height="15" fill="rgb(207,121,39)" fg:x="96296" fg:w="139"/><text x="66.0408%" y="879.50"></text></g><g><title>wait_consider_task (21 samples, 0.01%)</title><rect x="65.8714%" y="853" width="0.0143%" height="15" fill="rgb(223,101,35)" fg:x="96414" fg:w="21"/><text x="66.1214%" y="863.50"></text></g><g><title>release_task (20 samples, 0.01%)</title><rect x="65.8721%" y="837" width="0.0137%" height="15" fill="rgb(232,87,23)" fg:x="96415" fg:w="20"/><text x="66.1221%" y="847.50"></text></g><g><title>bprm_execve (81 samples, 0.06%)</title><rect x="65.9049%" y="837" width="0.0553%" height="15" fill="rgb(225,180,29)" fg:x="96463" fg:w="81"/><text x="66.1549%" y="847.50"></text></g><g><title>security_bprm_creds_for_exec (29 samples, 0.02%)</title><rect x="65.9404%" y="821" width="0.0198%" height="15" fill="rgb(225,25,17)" fg:x="96515" fg:w="29"/><text x="66.1904%" y="831.50"></text></g><g><title>apparmor_bprm_creds_for_exec (29 samples, 0.02%)</title><rect x="65.9404%" y="805" width="0.0198%" height="15" fill="rgb(223,8,52)" fg:x="96515" fg:w="29"/><text x="66.1904%" y="815.50"></text></g><g><title>profile_transition (25 samples, 0.02%)</title><rect x="65.9431%" y="789" width="0.0171%" height="15" fill="rgb(246,42,21)" fg:x="96519" fg:w="25"/><text x="66.1931%" y="799.50"></text></g><g><title>find_attach (21 samples, 0.01%)</title><rect x="65.9459%" y="773" width="0.0143%" height="15" fill="rgb(205,64,43)" fg:x="96523" fg:w="21"/><text x="66.1959%" y="783.50"></text></g><g><title>__execvpe_common (96 samples, 0.07%)</title><rect x="65.9028%" y="933" width="0.0656%" height="15" fill="rgb(221,160,13)" fg:x="96460" fg:w="96"/><text x="66.1528%" y="943.50"></text></g><g><title>__GI_execve (95 samples, 0.06%)</title><rect x="65.9035%" y="917" width="0.0649%" height="15" fill="rgb(239,58,35)" fg:x="96461" fg:w="95"/><text x="66.1535%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (95 samples, 0.06%)</title><rect x="65.9035%" y="901" width="0.0649%" height="15" fill="rgb(251,26,40)" fg:x="96461" fg:w="95"/><text x="66.1535%" y="911.50"></text></g><g><title>do_syscall_64 (95 samples, 0.06%)</title><rect x="65.9035%" y="885" width="0.0649%" height="15" fill="rgb(247,0,4)" fg:x="96461" fg:w="95"/><text x="66.1535%" y="895.50"></text></g><g><title>__x64_sys_execve (95 samples, 0.06%)</title><rect x="65.9035%" y="869" width="0.0649%" height="15" fill="rgb(218,130,10)" fg:x="96461" fg:w="95"/><text x="66.1535%" y="879.50"></text></g><g><title>do_execveat_common (95 samples, 0.06%)</title><rect x="65.9035%" y="853" width="0.0649%" height="15" fill="rgb(239,32,7)" fg:x="96461" fg:w="95"/><text x="66.1535%" y="863.50"></text></g><g><title>__nptl_set_robust (18 samples, 0.01%)</title><rect x="65.9732%" y="917" width="0.0123%" height="15" fill="rgb(210,192,24)" fg:x="96563" fg:w="18"/><text x="66.2232%" y="927.50"></text></g><g><title>handle_mm_fault (29 samples, 0.02%)</title><rect x="65.9937%" y="853" width="0.0198%" height="15" fill="rgb(226,212,17)" fg:x="96593" fg:w="29"/><text x="66.2437%" y="863.50"></text></g><g><title>filemap_map_pages (27 samples, 0.02%)</title><rect x="65.9951%" y="837" width="0.0184%" height="15" fill="rgb(219,201,28)" fg:x="96595" fg:w="27"/><text x="66.2451%" y="847.50"></text></g><g><title>exc_page_fault (31 samples, 0.02%)</title><rect x="65.9930%" y="885" width="0.0212%" height="15" fill="rgb(235,207,41)" fg:x="96592" fg:w="31"/><text x="66.2430%" y="895.50"></text></g><g><title>do_user_addr_fault (31 samples, 0.02%)</title><rect x="65.9930%" y="869" width="0.0212%" height="15" fill="rgb(241,95,54)" fg:x="96592" fg:w="31"/><text x="66.2430%" y="879.50"></text></g><g><title>asm_exc_page_fault (32 samples, 0.02%)</title><rect x="65.9930%" y="901" width="0.0219%" height="15" fill="rgb(248,12,23)" fg:x="96592" fg:w="32"/><text x="66.2430%" y="911.50"></text></g><g><title>dup_mm (21 samples, 0.01%)</title><rect x="66.0190%" y="821" width="0.0143%" height="15" fill="rgb(228,173,4)" fg:x="96630" fg:w="21"/><text x="66.2690%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="66.0149%" y="901" width="0.0219%" height="15" fill="rgb(254,99,5)" fg:x="96624" fg:w="32"/><text x="66.2649%" y="911.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="66.0149%" y="885" width="0.0219%" height="15" fill="rgb(212,184,17)" fg:x="96624" fg:w="32"/><text x="66.2649%" y="895.50"></text></g><g><title>__do_sys_clone (32 samples, 0.02%)</title><rect x="66.0149%" y="869" width="0.0219%" height="15" fill="rgb(252,174,1)" fg:x="96624" fg:w="32"/><text x="66.2649%" y="879.50"></text></g><g><title>kernel_clone (32 samples, 0.02%)</title><rect x="66.0149%" y="853" width="0.0219%" height="15" fill="rgb(241,118,51)" fg:x="96624" fg:w="32"/><text x="66.2649%" y="863.50"></text></g><g><title>copy_process (32 samples, 0.02%)</title><rect x="66.0149%" y="837" width="0.0219%" height="15" fill="rgb(227,94,47)" fg:x="96624" fg:w="32"/><text x="66.2649%" y="847.50"></text></g><g><title>__put_user_nocheck_4 (45 samples, 0.03%)</title><rect x="66.0381%" y="869" width="0.0307%" height="15" fill="rgb(229,104,2)" fg:x="96658" fg:w="45"/><text x="66.2881%" y="879.50"></text></g><g><title>asm_exc_page_fault (40 samples, 0.03%)</title><rect x="66.0415%" y="853" width="0.0273%" height="15" fill="rgb(219,28,31)" fg:x="96663" fg:w="40"/><text x="66.2915%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (442 samples, 0.30%)</title><rect x="66.0784%" y="853" width="0.3020%" height="15" fill="rgb(233,109,36)" fg:x="96717" fg:w="442"/><text x="66.3284%" y="863.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (442 samples, 0.30%)</title><rect x="66.0784%" y="837" width="0.3020%" height="15" fill="rgb(246,88,11)" fg:x="96717" fg:w="442"/><text x="66.3284%" y="847.50"></text></g><g><title>native_write_msr (442 samples, 0.30%)</title><rect x="66.0784%" y="821" width="0.3020%" height="15" fill="rgb(209,212,17)" fg:x="96717" fg:w="442"/><text x="66.3284%" y="831.50"></text></g><g><title>arch_fork (582 samples, 0.40%)</title><rect x="65.9862%" y="917" width="0.3976%" height="15" fill="rgb(243,59,29)" fg:x="96582" fg:w="582"/><text x="66.2362%" y="927.50"></text></g><g><title>ret_from_fork (506 samples, 0.35%)</title><rect x="66.0381%" y="901" width="0.3457%" height="15" fill="rgb(244,205,48)" fg:x="96658" fg:w="506"/><text x="66.2881%" y="911.50"></text></g><g><title>schedule_tail (506 samples, 0.35%)</title><rect x="66.0381%" y="885" width="0.3457%" height="15" fill="rgb(227,30,6)" fg:x="96658" fg:w="506"/><text x="66.2881%" y="895.50"></text></g><g><title>finish_task_switch (456 samples, 0.31%)</title><rect x="66.0723%" y="869" width="0.3115%" height="15" fill="rgb(220,205,48)" fg:x="96708" fg:w="456"/><text x="66.3223%" y="879.50"></text></g><g><title>__libc_fork (621 samples, 0.42%)</title><rect x="65.9684%" y="933" width="0.4243%" height="15" fill="rgb(250,94,14)" fg:x="96556" fg:w="621"/><text x="66.2184%" y="943.50"></text></g><g><title>__wake_up_common_lock (16 samples, 0.01%)</title><rect x="66.4016%" y="821" width="0.0109%" height="15" fill="rgb(216,119,42)" fg:x="97190" fg:w="16"/><text x="66.6516%" y="831.50"></text></g><g><title>__wake_up_common (16 samples, 0.01%)</title><rect x="66.4016%" y="805" width="0.0109%" height="15" fill="rgb(232,155,0)" fg:x="97190" fg:w="16"/><text x="66.6516%" y="815.50"></text></g><g><title>autoremove_wake_function (16 samples, 0.01%)</title><rect x="66.4016%" y="789" width="0.0109%" height="15" fill="rgb(212,24,32)" fg:x="97190" fg:w="16"/><text x="66.6516%" y="799.50"></text></g><g><title>try_to_wake_up (16 samples, 0.01%)</title><rect x="66.4016%" y="773" width="0.0109%" height="15" fill="rgb(216,69,20)" fg:x="97190" fg:w="16"/><text x="66.6516%" y="783.50"></text></g><g><title>__libc_write (25 samples, 0.02%)</title><rect x="66.3961%" y="933" width="0.0171%" height="15" fill="rgb(229,73,31)" fg:x="97182" fg:w="25"/><text x="66.6461%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="66.3961%" y="917" width="0.0171%" height="15" fill="rgb(224,219,20)" fg:x="97182" fg:w="25"/><text x="66.6461%" y="927.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="66.3961%" y="901" width="0.0171%" height="15" fill="rgb(215,146,41)" fg:x="97182" fg:w="25"/><text x="66.6461%" y="911.50"></text></g><g><title>ksys_write (25 samples, 0.02%)</title><rect x="66.3961%" y="885" width="0.0171%" height="15" fill="rgb(244,71,31)" fg:x="97182" fg:w="25"/><text x="66.6461%" y="895.50"></text></g><g><title>vfs_write (24 samples, 0.02%)</title><rect x="66.3968%" y="869" width="0.0164%" height="15" fill="rgb(224,24,11)" fg:x="97183" fg:w="24"/><text x="66.6468%" y="879.50"></text></g><g><title>new_sync_write (22 samples, 0.02%)</title><rect x="66.3982%" y="853" width="0.0150%" height="15" fill="rgb(229,76,15)" fg:x="97185" fg:w="22"/><text x="66.6482%" y="863.50"></text></g><g><title>pipe_write (22 samples, 0.02%)</title><rect x="66.3982%" y="837" width="0.0150%" height="15" fill="rgb(209,93,2)" fg:x="97185" fg:w="22"/><text x="66.6482%" y="847.50"></text></g><g><title>path_mount (26 samples, 0.02%)</title><rect x="66.4166%" y="869" width="0.0178%" height="15" fill="rgb(216,200,50)" fg:x="97212" fg:w="26"/><text x="66.6666%" y="879.50"></text></g><g><title>__mount (40 samples, 0.03%)</title><rect x="66.4132%" y="933" width="0.0273%" height="15" fill="rgb(211,67,34)" fg:x="97207" fg:w="40"/><text x="66.6632%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.03%)</title><rect x="66.4139%" y="917" width="0.0266%" height="15" fill="rgb(225,87,47)" fg:x="97208" fg:w="39"/><text x="66.6639%" y="927.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="66.4139%" y="901" width="0.0266%" height="15" fill="rgb(217,185,16)" fg:x="97208" fg:w="39"/><text x="66.6639%" y="911.50"></text></g><g><title>__x64_sys_mount (39 samples, 0.03%)</title><rect x="66.4139%" y="885" width="0.0266%" height="15" fill="rgb(205,0,0)" fg:x="97208" fg:w="39"/><text x="66.6639%" y="895.50"></text></g><g><title>std::string::_S_construct&lt;char const*&gt; (18 samples, 0.01%)</title><rect x="66.4733%" y="933" width="0.0123%" height="15" fill="rgb(207,116,45)" fg:x="97295" fg:w="18"/><text x="66.7233%" y="943.50"></text></g><g><title>std::string::_Rep::_S_create (15 samples, 0.01%)</title><rect x="66.4754%" y="917" width="0.0102%" height="15" fill="rgb(221,156,26)" fg:x="97298" fg:w="15"/><text x="66.7254%" y="927.50"></text></g><g><title>chroot_fs_refs (71 samples, 0.05%)</title><rect x="66.4952%" y="869" width="0.0485%" height="15" fill="rgb(213,140,4)" fg:x="97327" fg:w="71"/><text x="66.7452%" y="879.50"></text></g><g><title>_raw_spin_lock (39 samples, 0.03%)</title><rect x="66.5170%" y="853" width="0.0266%" height="15" fill="rgb(231,224,15)" fg:x="97359" fg:w="39"/><text x="66.7670%" y="863.50"></text></g><g><title>syscall (72 samples, 0.05%)</title><rect x="66.4952%" y="933" width="0.0492%" height="15" fill="rgb(244,76,20)" fg:x="97327" fg:w="72"/><text x="66.7452%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.05%)</title><rect x="66.4952%" y="917" width="0.0492%" height="15" fill="rgb(238,117,7)" fg:x="97327" fg:w="72"/><text x="66.7452%" y="927.50"></text></g><g><title>do_syscall_64 (72 samples, 0.05%)</title><rect x="66.4952%" y="901" width="0.0492%" height="15" fill="rgb(235,1,10)" fg:x="97327" fg:w="72"/><text x="66.7452%" y="911.50"></text></g><g><title>__do_sys_pivot_root (72 samples, 0.05%)</title><rect x="66.4952%" y="885" width="0.0492%" height="15" fill="rgb(216,165,6)" fg:x="97327" fg:w="72"/><text x="66.7452%" y="895.50"></text></g><g><title>Pid1Main (1,332 samples, 0.91%)</title><rect x="65.6439%" y="949" width="0.9100%" height="15" fill="rgb(246,91,35)" fg:x="96081" fg:w="1332"/><text x="65.8939%" y="959.50"></text></g><g><title>alloc_pages_vma (16 samples, 0.01%)</title><rect x="66.5703%" y="869" width="0.0109%" height="15" fill="rgb(228,96,24)" fg:x="97437" fg:w="16"/><text x="66.8203%" y="879.50"></text></g><g><title>__alloc_pages_nodemask (15 samples, 0.01%)</title><rect x="66.5710%" y="853" width="0.0102%" height="15" fill="rgb(254,217,53)" fg:x="97438" fg:w="15"/><text x="66.8210%" y="863.50"></text></g><g><title>get_page_from_freelist (15 samples, 0.01%)</title><rect x="66.5710%" y="837" width="0.0102%" height="15" fill="rgb(209,60,0)" fg:x="97438" fg:w="15"/><text x="66.8210%" y="847.50"></text></g><g><title>exc_page_fault (54 samples, 0.04%)</title><rect x="66.5539%" y="933" width="0.0369%" height="15" fill="rgb(250,93,26)" fg:x="97413" fg:w="54"/><text x="66.8039%" y="943.50"></text></g><g><title>do_user_addr_fault (53 samples, 0.04%)</title><rect x="66.5546%" y="917" width="0.0362%" height="15" fill="rgb(211,9,40)" fg:x="97414" fg:w="53"/><text x="66.8046%" y="927.50"></text></g><g><title>handle_mm_fault (50 samples, 0.03%)</title><rect x="66.5567%" y="901" width="0.0342%" height="15" fill="rgb(242,57,20)" fg:x="97417" fg:w="50"/><text x="66.8067%" y="911.50"></text></g><g><title>wp_page_copy (30 samples, 0.02%)</title><rect x="66.5703%" y="885" width="0.0205%" height="15" fill="rgb(248,85,48)" fg:x="97437" fg:w="30"/><text x="66.8203%" y="895.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.04%)</title><rect x="66.5539%" y="949" width="0.0376%" height="15" fill="rgb(212,117,2)" fg:x="97413" fg:w="55"/><text x="66.8039%" y="959.50"></text></g><g><title>_raw_spin_lock_irq (16 samples, 0.01%)</title><rect x="66.5977%" y="917" width="0.0109%" height="15" fill="rgb(243,19,3)" fg:x="97477" fg:w="16"/><text x="66.8477%" y="927.50"></text></g><g><title>calculate_sigpending (24 samples, 0.02%)</title><rect x="66.5942%" y="933" width="0.0164%" height="15" fill="rgb(232,217,24)" fg:x="97472" fg:w="24"/><text x="66.8442%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (406 samples, 0.28%)</title><rect x="66.6236%" y="901" width="0.2774%" height="15" fill="rgb(224,175,40)" fg:x="97515" fg:w="406"/><text x="66.8736%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (405 samples, 0.28%)</title><rect x="66.6243%" y="885" width="0.2767%" height="15" fill="rgb(212,162,32)" fg:x="97516" fg:w="405"/><text x="66.8743%" y="895.50"></text></g><g><title>native_write_msr (405 samples, 0.28%)</title><rect x="66.6243%" y="869" width="0.2767%" height="15" fill="rgb(215,9,4)" fg:x="97516" fg:w="405"/><text x="66.8743%" y="879.50"></text></g><g><title>asm_sysvec_irq_work (16 samples, 0.01%)</title><rect x="66.9010%" y="901" width="0.0109%" height="15" fill="rgb(242,42,7)" fg:x="97921" fg:w="16"/><text x="67.1510%" y="911.50"></text></g><g><title>schedule_tail (443 samples, 0.30%)</title><rect x="66.6106%" y="933" width="0.3027%" height="15" fill="rgb(242,184,45)" fg:x="97496" fg:w="443"/><text x="66.8606%" y="943.50"></text></g><g><title>finish_task_switch (443 samples, 0.30%)</title><rect x="66.6106%" y="917" width="0.3027%" height="15" fill="rgb(228,111,51)" fg:x="97496" fg:w="443"/><text x="66.8606%" y="927.50"></text></g><g><title>__GI___clone (1,862 samples, 1.27%)</title><rect x="65.6418%" y="965" width="1.2721%" height="15" fill="rgb(236,147,17)" fg:x="96078" fg:w="1862"/><text x="65.8918%" y="975.50"></text></g><g><title>ret_from_fork (470 samples, 0.32%)</title><rect x="66.5929%" y="949" width="0.3211%" height="15" fill="rgb(210,75,22)" fg:x="97470" fg:w="470"/><text x="66.8429%" y="959.50"></text></g><g><title>[libstdc++.so.6.0.28] (21 samples, 0.01%)</title><rect x="66.9147%" y="901" width="0.0143%" height="15" fill="rgb(217,159,45)" fg:x="97941" fg:w="21"/><text x="67.1647%" y="911.50"></text></g><g><title>_dl_start_user (28 samples, 0.02%)</title><rect x="66.9147%" y="965" width="0.0191%" height="15" fill="rgb(245,165,53)" fg:x="97941" fg:w="28"/><text x="67.1647%" y="975.50"></text></g><g><title>_dl_init (28 samples, 0.02%)</title><rect x="66.9147%" y="949" width="0.0191%" height="15" fill="rgb(251,190,50)" fg:x="97941" fg:w="28"/><text x="67.1647%" y="959.50"></text></g><g><title>call_init (28 samples, 0.02%)</title><rect x="66.9147%" y="933" width="0.0191%" height="15" fill="rgb(208,203,29)" fg:x="97941" fg:w="28"/><text x="67.1647%" y="943.50"></text></g><g><title>call_init (28 samples, 0.02%)</title><rect x="66.9147%" y="917" width="0.0191%" height="15" fill="rgb(207,209,35)" fg:x="97941" fg:w="28"/><text x="67.1647%" y="927.50"></text></g><g><title>__GI_exit (22 samples, 0.02%)</title><rect x="66.9365%" y="933" width="0.0150%" height="15" fill="rgb(230,144,49)" fg:x="97973" fg:w="22"/><text x="67.1865%" y="943.50"></text></g><g><title>__run_exit_handlers (22 samples, 0.02%)</title><rect x="66.9365%" y="917" width="0.0150%" height="15" fill="rgb(229,31,6)" fg:x="97973" fg:w="22"/><text x="67.1865%" y="927.50"></text></g><g><title>__libc_csu_init (17 samples, 0.01%)</title><rect x="66.9516%" y="933" width="0.0116%" height="15" fill="rgb(251,129,24)" fg:x="97995" fg:w="17"/><text x="67.2016%" y="943.50"></text></g><g><title>_GLOBAL__sub_I_opt (16 samples, 0.01%)</title><rect x="66.9523%" y="917" width="0.0109%" height="15" fill="rgb(235,105,15)" fg:x="97996" fg:w="16"/><text x="67.2023%" y="927.50"></text></g><g><title>std::ios_base::Init::Init (16 samples, 0.01%)</title><rect x="66.9523%" y="901" width="0.0109%" height="15" fill="rgb(216,52,43)" fg:x="97996" fg:w="16"/><text x="67.2023%" y="911.50"></text></g><g><title>alloc_pages_vma (36 samples, 0.02%)</title><rect x="66.9878%" y="837" width="0.0246%" height="15" fill="rgb(238,144,41)" fg:x="98048" fg:w="36"/><text x="67.2378%" y="847.50"></text></g><g><title>__alloc_pages_nodemask (32 samples, 0.02%)</title><rect x="66.9905%" y="821" width="0.0219%" height="15" fill="rgb(243,63,9)" fg:x="98052" fg:w="32"/><text x="67.2405%" y="831.50"></text></g><g><title>get_page_from_freelist (30 samples, 0.02%)</title><rect x="66.9919%" y="805" width="0.0205%" height="15" fill="rgb(246,208,1)" fg:x="98054" fg:w="30"/><text x="67.2419%" y="815.50"></text></g><g><title>prep_new_page (16 samples, 0.01%)</title><rect x="67.0014%" y="789" width="0.0109%" height="15" fill="rgb(233,182,18)" fg:x="98068" fg:w="16"/><text x="67.2514%" y="799.50"></text></g><g><title>kernel_init_free_pages (15 samples, 0.01%)</title><rect x="67.0021%" y="773" width="0.0102%" height="15" fill="rgb(242,224,8)" fg:x="98069" fg:w="15"/><text x="67.2521%" y="783.50"></text></g><g><title>clear_page_erms (15 samples, 0.01%)</title><rect x="67.0021%" y="757" width="0.0102%" height="15" fill="rgb(243,54,37)" fg:x="98069" fg:w="15"/><text x="67.2521%" y="767.50"></text></g><g><title>handle_mm_fault (64 samples, 0.04%)</title><rect x="66.9830%" y="853" width="0.0437%" height="15" fill="rgb(233,192,12)" fg:x="98041" fg:w="64"/><text x="67.2330%" y="863.50"></text></g><g><title>exc_page_fault (70 samples, 0.05%)</title><rect x="66.9803%" y="885" width="0.0478%" height="15" fill="rgb(251,192,53)" fg:x="98037" fg:w="70"/><text x="67.2303%" y="895.50"></text></g><g><title>do_user_addr_fault (69 samples, 0.05%)</title><rect x="66.9809%" y="869" width="0.0471%" height="15" fill="rgb(246,141,26)" fg:x="98038" fg:w="69"/><text x="67.2309%" y="879.50"></text></g><g><title>asm_exc_page_fault (74 samples, 0.05%)</title><rect x="66.9782%" y="901" width="0.0506%" height="15" fill="rgb(239,195,19)" fg:x="98034" fg:w="74"/><text x="67.2282%" y="911.50"></text></g><g><title>[libc-2.31.so] (101 samples, 0.07%)</title><rect x="66.9700%" y="917" width="0.0690%" height="15" fill="rgb(241,16,39)" fg:x="98022" fg:w="101"/><text x="67.2200%" y="927.50"></text></g><g><title>error_entry (15 samples, 0.01%)</title><rect x="67.0288%" y="901" width="0.0102%" height="15" fill="rgb(223,13,53)" fg:x="98108" fg:w="15"/><text x="67.2788%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.04%)</title><rect x="67.0431%" y="773" width="0.0369%" height="15" fill="rgb(214,227,0)" fg:x="98129" fg:w="54"/><text x="67.2931%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (53 samples, 0.04%)</title><rect x="67.0438%" y="757" width="0.0362%" height="15" fill="rgb(228,103,26)" fg:x="98130" fg:w="53"/><text x="67.2938%" y="767.50"></text></g><g><title>native_write_msr (51 samples, 0.03%)</title><rect x="67.0452%" y="741" width="0.0348%" height="15" fill="rgb(254,177,53)" fg:x="98132" fg:w="51"/><text x="67.2952%" y="751.50"></text></g><g><title>schedule (55 samples, 0.04%)</title><rect x="67.0431%" y="821" width="0.0376%" height="15" fill="rgb(208,201,34)" fg:x="98129" fg:w="55"/><text x="67.2931%" y="831.50"></text></g><g><title>__schedule (55 samples, 0.04%)</title><rect x="67.0431%" y="805" width="0.0376%" height="15" fill="rgb(212,39,5)" fg:x="98129" fg:w="55"/><text x="67.2931%" y="815.50"></text></g><g><title>finish_task_switch (55 samples, 0.04%)</title><rect x="67.0431%" y="789" width="0.0376%" height="15" fill="rgb(246,117,3)" fg:x="98129" fg:w="55"/><text x="67.2931%" y="799.50"></text></g><g><title>__GI___wait4 (68 samples, 0.05%)</title><rect x="67.0424%" y="917" width="0.0465%" height="15" fill="rgb(244,118,39)" fg:x="98128" fg:w="68"/><text x="67.2924%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.05%)</title><rect x="67.0424%" y="901" width="0.0465%" height="15" fill="rgb(241,64,10)" fg:x="98128" fg:w="68"/><text x="67.2924%" y="911.50"></text></g><g><title>do_syscall_64 (68 samples, 0.05%)</title><rect x="67.0424%" y="885" width="0.0465%" height="15" fill="rgb(229,39,44)" fg:x="98128" fg:w="68"/><text x="67.2924%" y="895.50"></text></g><g><title>__do_sys_wait4 (68 samples, 0.05%)</title><rect x="67.0424%" y="869" width="0.0465%" height="15" fill="rgb(230,226,3)" fg:x="98128" fg:w="68"/><text x="67.2924%" y="879.50"></text></g><g><title>kernel_wait4 (68 samples, 0.05%)</title><rect x="67.0424%" y="853" width="0.0465%" height="15" fill="rgb(222,13,42)" fg:x="98128" fg:w="68"/><text x="67.2924%" y="863.50"></text></g><g><title>do_wait (67 samples, 0.05%)</title><rect x="67.0431%" y="837" width="0.0458%" height="15" fill="rgb(247,180,54)" fg:x="98129" fg:w="67"/><text x="67.2931%" y="847.50"></text></g><g><title>__libc_start_main (257 samples, 0.18%)</title><rect x="66.9359%" y="949" width="0.1756%" height="15" fill="rgb(205,96,16)" fg:x="97972" fg:w="257"/><text x="67.1859%" y="959.50"></text></g><g><title>main (217 samples, 0.15%)</title><rect x="66.9632%" y="933" width="0.1483%" height="15" fill="rgb(205,100,21)" fg:x="98012" fg:w="217"/><text x="67.2132%" y="943.50"></text></g><g><title>_dl_load_cache_lookup (17 samples, 0.01%)</title><rect x="67.1265%" y="821" width="0.0116%" height="15" fill="rgb(248,51,4)" fg:x="98251" fg:w="17"/><text x="67.3765%" y="831.50"></text></g><g><title>__do_munmap (16 samples, 0.01%)</title><rect x="67.1422%" y="661" width="0.0109%" height="15" fill="rgb(217,197,30)" fg:x="98274" fg:w="16"/><text x="67.3922%" y="671.50"></text></g><g><title>__split_vma (15 samples, 0.01%)</title><rect x="67.1429%" y="645" width="0.0102%" height="15" fill="rgb(240,179,40)" fg:x="98275" fg:w="15"/><text x="67.3929%" y="655.50"></text></g><g><title>ksys_mmap_pgoff (31 samples, 0.02%)</title><rect x="67.1415%" y="725" width="0.0212%" height="15" fill="rgb(212,185,35)" fg:x="98273" fg:w="31"/><text x="67.3915%" y="735.50"></text></g><g><title>vm_mmap_pgoff (31 samples, 0.02%)</title><rect x="67.1415%" y="709" width="0.0212%" height="15" fill="rgb(251,222,31)" fg:x="98273" fg:w="31"/><text x="67.3915%" y="719.50"></text></g><g><title>do_mmap (31 samples, 0.02%)</title><rect x="67.1415%" y="693" width="0.0212%" height="15" fill="rgb(208,140,36)" fg:x="98273" fg:w="31"/><text x="67.3915%" y="703.50"></text></g><g><title>mmap_region (30 samples, 0.02%)</title><rect x="67.1422%" y="677" width="0.0205%" height="15" fill="rgb(220,148,1)" fg:x="98274" fg:w="30"/><text x="67.3922%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="67.1415%" y="757" width="0.0260%" height="15" fill="rgb(254,4,28)" fg:x="98273" fg:w="38"/><text x="67.3915%" y="767.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="67.1415%" y="741" width="0.0260%" height="15" fill="rgb(222,185,44)" fg:x="98273" fg:w="38"/><text x="67.3915%" y="751.50"></text></g><g><title>_dl_map_segments (44 samples, 0.03%)</title><rect x="67.1388%" y="805" width="0.0301%" height="15" fill="rgb(215,74,39)" fg:x="98269" fg:w="44"/><text x="67.3888%" y="815.50"></text></g><g><title>__mmap64 (40 samples, 0.03%)</title><rect x="67.1415%" y="789" width="0.0273%" height="15" fill="rgb(247,86,4)" fg:x="98273" fg:w="40"/><text x="67.3915%" y="799.50"></text></g><g><title>__mmap64 (40 samples, 0.03%)</title><rect x="67.1415%" y="773" width="0.0273%" height="15" fill="rgb(231,105,32)" fg:x="98273" fg:w="40"/><text x="67.3915%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (53 samples, 0.04%)</title><rect x="67.1381%" y="821" width="0.0362%" height="15" fill="rgb(222,65,35)" fg:x="98268" fg:w="53"/><text x="67.3881%" y="831.50"></text></g><g><title>_dl_catch_exception (79 samples, 0.05%)</title><rect x="67.1258%" y="869" width="0.0540%" height="15" fill="rgb(218,145,35)" fg:x="98250" fg:w="79"/><text x="67.3758%" y="879.50"></text></g><g><title>openaux (78 samples, 0.05%)</title><rect x="67.1265%" y="853" width="0.0533%" height="15" fill="rgb(208,7,15)" fg:x="98251" fg:w="78"/><text x="67.3765%" y="863.50"></text></g><g><title>_dl_map_object (78 samples, 0.05%)</title><rect x="67.1265%" y="837" width="0.0533%" height="15" fill="rgb(209,83,13)" fg:x="98251" fg:w="78"/><text x="67.3765%" y="847.50"></text></g><g><title>_dl_map_object_deps (91 samples, 0.06%)</title><rect x="67.1231%" y="885" width="0.0622%" height="15" fill="rgb(218,3,10)" fg:x="98246" fg:w="91"/><text x="67.3731%" y="895.50"></text></g><g><title>_dl_check_map_versions (16 samples, 0.01%)</title><rect x="67.1866%" y="837" width="0.0109%" height="15" fill="rgb(211,219,4)" fg:x="98339" fg:w="16"/><text x="67.4366%" y="847.50"></text></g><g><title>_dl_receive_error (17 samples, 0.01%)</title><rect x="67.1866%" y="885" width="0.0116%" height="15" fill="rgb(228,194,12)" fg:x="98339" fg:w="17"/><text x="67.4366%" y="895.50"></text></g><g><title>version_check_doit (17 samples, 0.01%)</title><rect x="67.1866%" y="869" width="0.0116%" height="15" fill="rgb(210,175,7)" fg:x="98339" fg:w="17"/><text x="67.4366%" y="879.50"></text></g><g><title>_dl_check_all_versions (17 samples, 0.01%)</title><rect x="67.1866%" y="853" width="0.0116%" height="15" fill="rgb(243,132,6)" fg:x="98339" fg:w="17"/><text x="67.4366%" y="863.50"></text></g><g><title>dl_new_hash (61 samples, 0.04%)</title><rect x="67.2419%" y="821" width="0.0417%" height="15" fill="rgb(207,72,18)" fg:x="98420" fg:w="61"/><text x="67.4919%" y="831.50"></text></g><g><title>check_match (24 samples, 0.02%)</title><rect x="67.3349%" y="805" width="0.0164%" height="15" fill="rgb(236,1,18)" fg:x="98556" fg:w="24"/><text x="67.5849%" y="815.50"></text></g><g><title>_dl_lookup_symbol_x (172 samples, 0.12%)</title><rect x="67.2385%" y="837" width="0.1175%" height="15" fill="rgb(227,0,18)" fg:x="98415" fg:w="172"/><text x="67.4885%" y="847.50"></text></g><g><title>do_lookup_x (106 samples, 0.07%)</title><rect x="67.2836%" y="821" width="0.0724%" height="15" fill="rgb(247,37,5)" fg:x="98481" fg:w="106"/><text x="67.5336%" y="831.50"></text></g><g><title>elf_machine_rela (212 samples, 0.14%)</title><rect x="67.2132%" y="853" width="0.1448%" height="15" fill="rgb(237,179,24)" fg:x="98378" fg:w="212"/><text x="67.4632%" y="863.50"></text></g><g><title>elf_dynamic_do_Rela (230 samples, 0.16%)</title><rect x="67.2044%" y="869" width="0.1571%" height="15" fill="rgb(226,53,20)" fg:x="98365" fg:w="230"/><text x="67.4544%" y="879.50"></text></g><g><title>_dl_relocate_object (242 samples, 0.17%)</title><rect x="67.1982%" y="885" width="0.1653%" height="15" fill="rgb(247,75,7)" fg:x="98356" fg:w="242"/><text x="67.4482%" y="895.50"></text></g><g><title>[ld-2.31.so] (378 samples, 0.26%)</title><rect x="67.1121%" y="901" width="0.2583%" height="15" fill="rgb(233,96,12)" fg:x="98230" fg:w="378"/><text x="67.3621%" y="911.50"></text></g><g><title>_dl_start_final (393 samples, 0.27%)</title><rect x="67.1121%" y="933" width="0.2685%" height="15" fill="rgb(224,125,0)" fg:x="98230" fg:w="393"/><text x="67.3621%" y="943.50"></text></g><g><title>_dl_sysdep_start (393 samples, 0.27%)</title><rect x="67.1121%" y="917" width="0.2685%" height="15" fill="rgb(224,92,25)" fg:x="98230" fg:w="393"/><text x="67.3621%" y="927.50"></text></g><g><title>_dl_start (400 samples, 0.27%)</title><rect x="67.1114%" y="949" width="0.2733%" height="15" fill="rgb(224,42,24)" fg:x="98229" fg:w="400"/><text x="67.3614%" y="959.50"></text></g><g><title>_start (663 samples, 0.45%)</title><rect x="66.9359%" y="965" width="0.4530%" height="15" fill="rgb(234,132,49)" fg:x="97972" fg:w="663"/><text x="67.1859%" y="975.50"></text></g><g><title>asm_exc_page_fault (118 samples, 0.08%)</title><rect x="67.3888%" y="965" width="0.0806%" height="15" fill="rgb(248,100,35)" fg:x="98635" fg:w="118"/><text x="67.6388%" y="975.50"></text></g><g><title>mmput (38 samples, 0.03%)</title><rect x="67.4729%" y="853" width="0.0260%" height="15" fill="rgb(239,94,40)" fg:x="98758" fg:w="38"/><text x="67.7229%" y="863.50"></text></g><g><title>exit_mmap (38 samples, 0.03%)</title><rect x="67.4729%" y="837" width="0.0260%" height="15" fill="rgb(235,139,28)" fg:x="98758" fg:w="38"/><text x="67.7229%" y="847.50"></text></g><g><title>unmap_vmas (23 samples, 0.02%)</title><rect x="67.4831%" y="821" width="0.0157%" height="15" fill="rgb(217,144,7)" fg:x="98773" fg:w="23"/><text x="67.7331%" y="831.50"></text></g><g><title>unmap_page_range (23 samples, 0.02%)</title><rect x="67.4831%" y="805" width="0.0157%" height="15" fill="rgb(227,55,4)" fg:x="98773" fg:w="23"/><text x="67.7331%" y="815.50"></text></g><g><title>begin_new_exec (43 samples, 0.03%)</title><rect x="67.4715%" y="869" width="0.0294%" height="15" fill="rgb(252,82,54)" fg:x="98756" fg:w="43"/><text x="67.7215%" y="879.50"></text></g><g><title>__x64_sys_execve (56 samples, 0.04%)</title><rect x="67.4708%" y="933" width="0.0383%" height="15" fill="rgb(245,172,4)" fg:x="98755" fg:w="56"/><text x="67.7208%" y="943.50"></text></g><g><title>do_execveat_common (56 samples, 0.04%)</title><rect x="67.4708%" y="917" width="0.0383%" height="15" fill="rgb(207,26,27)" fg:x="98755" fg:w="56"/><text x="67.7208%" y="927.50"></text></g><g><title>bprm_execve (56 samples, 0.04%)</title><rect x="67.4708%" y="901" width="0.0383%" height="15" fill="rgb(252,98,18)" fg:x="98755" fg:w="56"/><text x="67.7208%" y="911.50"></text></g><g><title>load_elf_binary (56 samples, 0.04%)</title><rect x="67.4708%" y="885" width="0.0383%" height="15" fill="rgb(244,8,26)" fg:x="98755" fg:w="56"/><text x="67.7208%" y="895.50"></text></g><g><title>unlink_anon_vmas (16 samples, 0.01%)</title><rect x="67.5159%" y="853" width="0.0109%" height="15" fill="rgb(237,173,45)" fg:x="98821" fg:w="16"/><text x="67.7659%" y="863.50"></text></g><g><title>free_pgtables (22 samples, 0.02%)</title><rect x="67.5152%" y="869" width="0.0150%" height="15" fill="rgb(208,213,49)" fg:x="98820" fg:w="22"/><text x="67.7652%" y="879.50"></text></g><g><title>tlb_finish_mmu (21 samples, 0.01%)</title><rect x="67.5323%" y="869" width="0.0143%" height="15" fill="rgb(212,122,37)" fg:x="98845" fg:w="21"/><text x="67.7823%" y="879.50"></text></g><g><title>release_pages (17 samples, 0.01%)</title><rect x="67.5350%" y="853" width="0.0116%" height="15" fill="rgb(213,80,17)" fg:x="98849" fg:w="17"/><text x="67.7850%" y="863.50"></text></g><g><title>mmput (61 samples, 0.04%)</title><rect x="67.5152%" y="901" width="0.0417%" height="15" fill="rgb(206,210,43)" fg:x="98820" fg:w="61"/><text x="67.7652%" y="911.50"></text></g><g><title>exit_mmap (61 samples, 0.04%)</title><rect x="67.5152%" y="885" width="0.0417%" height="15" fill="rgb(229,214,3)" fg:x="98820" fg:w="61"/><text x="67.7652%" y="895.50"></text></g><g><title>unmap_vmas (15 samples, 0.01%)</title><rect x="67.5466%" y="869" width="0.0102%" height="15" fill="rgb(235,213,29)" fg:x="98866" fg:w="15"/><text x="67.7966%" y="879.50"></text></g><g><title>__x64_sys_exit (78 samples, 0.05%)</title><rect x="67.5091%" y="933" width="0.0533%" height="15" fill="rgb(248,135,26)" fg:x="98811" fg:w="78"/><text x="67.7591%" y="943.50"></text></g><g><title>do_exit (78 samples, 0.05%)</title><rect x="67.5091%" y="917" width="0.0533%" height="15" fill="rgb(242,188,12)" fg:x="98811" fg:w="78"/><text x="67.7591%" y="927.50"></text></g><g><title>exit_mmap (27 samples, 0.02%)</title><rect x="67.5630%" y="869" width="0.0184%" height="15" fill="rgb(245,38,12)" fg:x="98890" fg:w="27"/><text x="67.8130%" y="879.50"></text></g><g><title>mmput (28 samples, 0.02%)</title><rect x="67.5630%" y="885" width="0.0191%" height="15" fill="rgb(218,42,13)" fg:x="98890" fg:w="28"/><text x="67.8130%" y="895.50"></text></g><g><title>__x64_sys_exit_group (31 samples, 0.02%)</title><rect x="67.5624%" y="933" width="0.0212%" height="15" fill="rgb(238,132,49)" fg:x="98889" fg:w="31"/><text x="67.8124%" y="943.50"></text></g><g><title>do_group_exit (31 samples, 0.02%)</title><rect x="67.5624%" y="917" width="0.0212%" height="15" fill="rgb(209,196,19)" fg:x="98889" fg:w="31"/><text x="67.8124%" y="927.50"></text></g><g><title>do_exit (31 samples, 0.02%)</title><rect x="67.5624%" y="901" width="0.0212%" height="15" fill="rgb(244,131,22)" fg:x="98889" fg:w="31"/><text x="67.8124%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (169 samples, 0.12%)</title><rect x="67.4694%" y="965" width="0.1155%" height="15" fill="rgb(223,18,34)" fg:x="98753" fg:w="169"/><text x="67.7194%" y="975.50"></text></g><g><title>do_syscall_64 (167 samples, 0.11%)</title><rect x="67.4708%" y="949" width="0.1141%" height="15" fill="rgb(252,124,54)" fg:x="98755" fg:w="167"/><text x="67.7208%" y="959.50"></text></g><g><title>linux-sandbox (2,966 samples, 2.03%)</title><rect x="65.5640%" y="981" width="2.0264%" height="15" fill="rgb(229,106,42)" fg:x="95964" fg:w="2966"/><text x="65.8140%" y="991.50">l..</text></g><g><title>__perf_event_task_sched_in (88 samples, 0.06%)</title><rect x="67.6314%" y="805" width="0.0601%" height="15" fill="rgb(221,129,1)" fg:x="98990" fg:w="88"/><text x="67.8814%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (86 samples, 0.06%)</title><rect x="67.6327%" y="789" width="0.0588%" height="15" fill="rgb(229,74,15)" fg:x="98992" fg:w="86"/><text x="67.8827%" y="799.50"></text></g><g><title>native_write_msr (86 samples, 0.06%)</title><rect x="67.6327%" y="773" width="0.0588%" height="15" fill="rgb(210,206,50)" fg:x="98992" fg:w="86"/><text x="67.8827%" y="783.50"></text></g><g><title>__libc_fork (121 samples, 0.08%)</title><rect x="67.6102%" y="885" width="0.0827%" height="15" fill="rgb(251,114,31)" fg:x="98959" fg:w="121"/><text x="67.8602%" y="895.50"></text></g><g><title>arch_fork (115 samples, 0.08%)</title><rect x="67.6143%" y="869" width="0.0786%" height="15" fill="rgb(215,225,28)" fg:x="98965" fg:w="115"/><text x="67.8643%" y="879.50"></text></g><g><title>ret_from_fork (104 samples, 0.07%)</title><rect x="67.6218%" y="853" width="0.0711%" height="15" fill="rgb(237,109,14)" fg:x="98976" fg:w="104"/><text x="67.8718%" y="863.50"></text></g><g><title>schedule_tail (103 samples, 0.07%)</title><rect x="67.6225%" y="837" width="0.0704%" height="15" fill="rgb(230,13,37)" fg:x="98977" fg:w="103"/><text x="67.8725%" y="847.50"></text></g><g><title>finish_task_switch (91 samples, 0.06%)</title><rect x="67.6307%" y="821" width="0.0622%" height="15" fill="rgb(231,40,28)" fg:x="98989" fg:w="91"/><text x="67.8807%" y="831.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (141 samples, 0.10%)</title><rect x="67.6013%" y="917" width="0.0963%" height="15" fill="rgb(231,202,18)" fg:x="98946" fg:w="141"/><text x="67.8513%" y="927.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (141 samples, 0.10%)</title><rect x="67.6013%" y="901" width="0.0963%" height="15" fill="rgb(225,33,18)" fg:x="98946" fg:w="141"/><text x="67.8513%" y="911.50"></text></g><g><title>__libc_start_main (152 samples, 0.10%)</title><rect x="67.5993%" y="949" width="0.1038%" height="15" fill="rgb(223,64,47)" fg:x="98943" fg:w="152"/><text x="67.8493%" y="959.50"></text></g><g><title>main (149 samples, 0.10%)</title><rect x="67.6013%" y="933" width="0.1018%" height="15" fill="rgb(234,114,13)" fg:x="98946" fg:w="149"/><text x="67.8513%" y="943.50"></text></g><g><title>_dl_map_object_deps (15 samples, 0.01%)</title><rect x="67.7045%" y="885" width="0.0102%" height="15" fill="rgb(248,56,40)" fg:x="99097" fg:w="15"/><text x="67.9545%" y="895.50"></text></g><g><title>elf_machine_rela (30 samples, 0.02%)</title><rect x="67.7154%" y="853" width="0.0205%" height="15" fill="rgb(221,194,21)" fg:x="99113" fg:w="30"/><text x="67.9654%" y="863.50"></text></g><g><title>_dl_lookup_symbol_x (26 samples, 0.02%)</title><rect x="67.7181%" y="837" width="0.0178%" height="15" fill="rgb(242,108,46)" fg:x="99117" fg:w="26"/><text x="67.9681%" y="847.50"></text></g><g><title>[ld-2.31.so] (49 samples, 0.03%)</title><rect x="67.7031%" y="901" width="0.0335%" height="15" fill="rgb(220,106,10)" fg:x="99095" fg:w="49"/><text x="67.9531%" y="911.50"></text></g><g><title>_dl_relocate_object (32 samples, 0.02%)</title><rect x="67.7147%" y="885" width="0.0219%" height="15" fill="rgb(211,88,4)" fg:x="99112" fg:w="32"/><text x="67.9647%" y="895.50"></text></g><g><title>elf_dynamic_do_Rela (31 samples, 0.02%)</title><rect x="67.7154%" y="869" width="0.0212%" height="15" fill="rgb(214,95,34)" fg:x="99113" fg:w="31"/><text x="67.9654%" y="879.50"></text></g><g><title>_dl_start_final (52 samples, 0.04%)</title><rect x="67.7031%" y="933" width="0.0355%" height="15" fill="rgb(250,160,33)" fg:x="99095" fg:w="52"/><text x="67.9531%" y="943.50"></text></g><g><title>_dl_sysdep_start (52 samples, 0.04%)</title><rect x="67.7031%" y="917" width="0.0355%" height="15" fill="rgb(225,29,10)" fg:x="99095" fg:w="52"/><text x="67.9531%" y="927.50"></text></g><g><title>_start (205 samples, 0.14%)</title><rect x="67.5993%" y="965" width="0.1401%" height="15" fill="rgb(224,28,30)" fg:x="98943" fg:w="205"/><text x="67.8493%" y="975.50"></text></g><g><title>_dl_start (53 samples, 0.04%)</title><rect x="67.7031%" y="949" width="0.0362%" height="15" fill="rgb(231,77,4)" fg:x="99095" fg:w="53"/><text x="67.9531%" y="959.50"></text></g><g><title>process-wrapper (227 samples, 0.16%)</title><rect x="67.5945%" y="981" width="0.1551%" height="15" fill="rgb(209,63,21)" fg:x="98936" fg:w="227"/><text x="67.8445%" y="991.50"></text></g><g><title>do_wait (64 samples, 0.04%)</title><rect x="67.8042%" y="869" width="0.0437%" height="15" fill="rgb(226,22,11)" fg:x="99243" fg:w="64"/><text x="68.0542%" y="879.50"></text></g><g><title>wait_consider_task (19 samples, 0.01%)</title><rect x="67.8350%" y="853" width="0.0130%" height="15" fill="rgb(216,82,30)" fg:x="99288" fg:w="19"/><text x="68.0850%" y="863.50"></text></g><g><title>release_task (18 samples, 0.01%)</title><rect x="67.8356%" y="837" width="0.0123%" height="15" fill="rgb(246,227,38)" fg:x="99289" fg:w="18"/><text x="68.0856%" y="847.50"></text></g><g><title>proc_invalidate_siblings_dcache (16 samples, 0.01%)</title><rect x="67.8370%" y="821" width="0.0109%" height="15" fill="rgb(251,203,53)" fg:x="99291" fg:w="16"/><text x="68.0870%" y="831.50"></text></g><g><title>do_syscall_64 (67 samples, 0.05%)</title><rect x="67.8029%" y="901" width="0.0458%" height="15" fill="rgb(254,101,1)" fg:x="99241" fg:w="67"/><text x="68.0529%" y="911.50"></text></g><g><title>kernel_wait4 (65 samples, 0.04%)</title><rect x="67.8042%" y="885" width="0.0444%" height="15" fill="rgb(241,180,5)" fg:x="99243" fg:w="65"/><text x="68.0542%" y="895.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (68 samples, 0.05%)</title><rect x="67.8029%" y="949" width="0.0465%" height="15" fill="rgb(218,168,4)" fg:x="99241" fg:w="68"/><text x="68.0529%" y="959.50"></text></g><g><title>__GI___wait4 (68 samples, 0.05%)</title><rect x="67.8029%" y="933" width="0.0465%" height="15" fill="rgb(224,223,32)" fg:x="99241" fg:w="68"/><text x="68.0529%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.05%)</title><rect x="67.8029%" y="917" width="0.0465%" height="15" fill="rgb(236,106,22)" fg:x="99241" fg:w="68"/><text x="68.0529%" y="927.50"></text></g><g><title>[perf-270039.map] (151 samples, 0.10%)</title><rect x="67.7523%" y="965" width="0.1032%" height="15" fill="rgb(206,121,5)" fg:x="99167" fg:w="151"/><text x="68.0023%" y="975.50"></text></g><g><title>process_reaper (156 samples, 0.11%)</title><rect x="67.7496%" y="981" width="0.1066%" height="15" fill="rgb(233,87,28)" fg:x="99163" fg:w="156"/><text x="67.9996%" y="991.50"></text></g><g><title>[anon] (16 samples, 0.01%)</title><rect x="67.8561%" y="965" width="0.0109%" height="15" fill="rgb(236,137,17)" fg:x="99319" fg:w="16"/><text x="68.1061%" y="975.50"></text></g><g><title>JVM_IsInterrupted (22 samples, 0.02%)</title><rect x="68.2886%" y="949" width="0.0150%" height="15" fill="rgb(209,183,38)" fg:x="99952" fg:w="22"/><text x="68.5386%" y="959.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (21 samples, 0.01%)</title><rect x="68.3105%" y="949" width="0.0143%" height="15" fill="rgb(206,162,44)" fg:x="99984" fg:w="21"/><text x="68.5605%" y="959.50"></text></g><g><title>deflate (21 samples, 0.01%)</title><rect x="68.3105%" y="933" width="0.0143%" height="15" fill="rgb(237,70,39)" fg:x="99984" fg:w="21"/><text x="68.5605%" y="943.50"></text></g><g><title>[libz.so.1.2.11] (21 samples, 0.01%)</title><rect x="68.3105%" y="917" width="0.0143%" height="15" fill="rgb(212,176,5)" fg:x="99984" fg:w="21"/><text x="68.5605%" y="927.50"></text></g><g><title>[libz.so.1.2.11] (18 samples, 0.01%)</title><rect x="68.3125%" y="901" width="0.0123%" height="15" fill="rgb(232,95,16)" fg:x="99987" fg:w="18"/><text x="68.5625%" y="911.50"></text></g><g><title>dequeue_entity (21 samples, 0.01%)</title><rect x="68.3959%" y="725" width="0.0143%" height="15" fill="rgb(219,115,35)" fg:x="100109" fg:w="21"/><text x="68.6459%" y="735.50"></text></g><g><title>dequeue_task_fair (25 samples, 0.02%)</title><rect x="68.3938%" y="741" width="0.0171%" height="15" fill="rgb(251,67,27)" fg:x="100106" fg:w="25"/><text x="68.6438%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (22 samples, 0.02%)</title><rect x="68.4130%" y="725" width="0.0150%" height="15" fill="rgb(222,95,40)" fg:x="100134" fg:w="22"/><text x="68.6630%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (22 samples, 0.02%)</title><rect x="68.4130%" y="709" width="0.0150%" height="15" fill="rgb(250,35,16)" fg:x="100134" fg:w="22"/><text x="68.6630%" y="719.50"></text></g><g><title>native_write_msr (22 samples, 0.02%)</title><rect x="68.4130%" y="693" width="0.0150%" height="15" fill="rgb(224,86,44)" fg:x="100134" fg:w="22"/><text x="68.6630%" y="703.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="68.4109%" y="741" width="0.0191%" height="15" fill="rgb(237,53,53)" fg:x="100131" fg:w="28"/><text x="68.6609%" y="751.50"></text></g><g><title>psi_task_change (20 samples, 0.01%)</title><rect x="68.4423%" y="741" width="0.0137%" height="15" fill="rgb(208,171,33)" fg:x="100177" fg:w="20"/><text x="68.6923%" y="751.50"></text></g><g><title>psi_group_change (15 samples, 0.01%)</title><rect x="68.4458%" y="725" width="0.0102%" height="15" fill="rgb(222,64,27)" fg:x="100182" fg:w="15"/><text x="68.6958%" y="735.50"></text></g><g><title>futex_wait_queue_me (111 samples, 0.08%)</title><rect x="68.3843%" y="789" width="0.0758%" height="15" fill="rgb(221,121,35)" fg:x="100092" fg:w="111"/><text x="68.6343%" y="799.50"></text></g><g><title>schedule (105 samples, 0.07%)</title><rect x="68.3884%" y="773" width="0.0717%" height="15" fill="rgb(228,137,42)" fg:x="100098" fg:w="105"/><text x="68.6384%" y="783.50"></text></g><g><title>__schedule (104 samples, 0.07%)</title><rect x="68.3890%" y="757" width="0.0711%" height="15" fill="rgb(227,54,21)" fg:x="100099" fg:w="104"/><text x="68.6390%" y="767.50"></text></g><g><title>do_syscall_64 (120 samples, 0.08%)</title><rect x="68.3815%" y="853" width="0.0820%" height="15" fill="rgb(240,168,33)" fg:x="100088" fg:w="120"/><text x="68.6315%" y="863.50"></text></g><g><title>__x64_sys_futex (120 samples, 0.08%)</title><rect x="68.3815%" y="837" width="0.0820%" height="15" fill="rgb(243,159,6)" fg:x="100088" fg:w="120"/><text x="68.6315%" y="847.50"></text></g><g><title>do_futex (120 samples, 0.08%)</title><rect x="68.3815%" y="821" width="0.0820%" height="15" fill="rgb(205,211,41)" fg:x="100088" fg:w="120"/><text x="68.6315%" y="831.50"></text></g><g><title>futex_wait (120 samples, 0.08%)</title><rect x="68.3815%" y="805" width="0.0820%" height="15" fill="rgb(253,30,1)" fg:x="100088" fg:w="120"/><text x="68.6315%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.08%)</title><rect x="68.3809%" y="869" width="0.0840%" height="15" fill="rgb(226,80,18)" fg:x="100087" fg:w="123"/><text x="68.6309%" y="879.50"></text></g><g><title>__pthread_cond_wait (141 samples, 0.10%)</title><rect x="68.3699%" y="917" width="0.0963%" height="15" fill="rgb(253,156,46)" fg:x="100071" fg:w="141"/><text x="68.6199%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (141 samples, 0.10%)</title><rect x="68.3699%" y="901" width="0.0963%" height="15" fill="rgb(248,87,27)" fg:x="100071" fg:w="141"/><text x="68.6199%" y="911.50"></text></g><g><title>futex_wait_cancelable (130 samples, 0.09%)</title><rect x="68.3774%" y="885" width="0.0888%" height="15" fill="rgb(227,122,2)" fg:x="100082" fg:w="130"/><text x="68.6274%" y="895.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="68.4724%" y="885" width="0.0109%" height="15" fill="rgb(229,94,39)" fg:x="100221" fg:w="16"/><text x="68.7224%" y="895.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="68.4724%" y="869" width="0.0109%" height="15" fill="rgb(225,173,31)" fg:x="100221" fg:w="16"/><text x="68.7224%" y="879.50"></text></g><g><title>do_futex (15 samples, 0.01%)</title><rect x="68.4731%" y="853" width="0.0102%" height="15" fill="rgb(239,176,30)" fg:x="100222" fg:w="15"/><text x="68.7231%" y="863.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (24 samples, 0.02%)</title><rect x="68.4676%" y="917" width="0.0164%" height="15" fill="rgb(212,104,21)" fg:x="100214" fg:w="24"/><text x="68.7176%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="68.4724%" y="901" width="0.0116%" height="15" fill="rgb(240,209,40)" fg:x="100221" fg:w="17"/><text x="68.7224%" y="911.50"></text></g><g><title>Parker::park (201 samples, 0.14%)</title><rect x="68.3481%" y="933" width="0.1373%" height="15" fill="rgb(234,195,5)" fg:x="100039" fg:w="201"/><text x="68.5981%" y="943.50"></text></g><g><title>Unsafe_Park (211 samples, 0.14%)</title><rect x="68.3460%" y="949" width="0.1442%" height="15" fill="rgb(238,213,1)" fg:x="100036" fg:w="211"/><text x="68.5960%" y="959.50"></text></g><g><title>[perf-270039.map] (916 samples, 0.63%)</title><rect x="67.8684%" y="965" width="0.6258%" height="15" fill="rgb(235,182,54)" fg:x="99337" fg:w="916"/><text x="68.1184%" y="975.50"></text></g><g><title>[unknown] (25 samples, 0.02%)</title><rect x="68.4943%" y="965" width="0.0171%" height="15" fill="rgb(229,50,46)" fg:x="100253" fg:w="25"/><text x="68.7443%" y="975.50"></text></g><g><title>profile-writer- (963 samples, 0.66%)</title><rect x="67.8561%" y="981" width="0.6579%" height="15" fill="rgb(219,145,13)" fg:x="99319" fg:w="963"/><text x="68.1061%" y="991.50"></text></g><g><title>PyImport_ImportModuleLevelObject (21 samples, 0.01%)</title><rect x="68.5441%" y="629" width="0.0143%" height="15" fill="rgb(220,226,10)" fg:x="100326" fg:w="21"/><text x="68.7941%" y="639.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (21 samples, 0.01%)</title><rect x="68.5441%" y="613" width="0.0143%" height="15" fill="rgb(248,47,30)" fg:x="100326" fg:w="21"/><text x="68.7941%" y="623.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.5441%" y="597" width="0.0143%" height="15" fill="rgb(231,209,44)" fg:x="100326" fg:w="21"/><text x="68.7941%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (21 samples, 0.01%)</title><rect x="68.5441%" y="581" width="0.0143%" height="15" fill="rgb(209,80,30)" fg:x="100326" fg:w="21"/><text x="68.7941%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.5448%" y="565" width="0.0137%" height="15" fill="rgb(232,9,14)" fg:x="100327" fg:w="20"/><text x="68.7948%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.5448%" y="549" width="0.0137%" height="15" fill="rgb(243,91,43)" fg:x="100327" fg:w="20"/><text x="68.7948%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.5448%" y="533" width="0.0137%" height="15" fill="rgb(231,90,52)" fg:x="100327" fg:w="20"/><text x="68.7948%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.5448%" y="517" width="0.0137%" height="15" fill="rgb(253,192,44)" fg:x="100327" fg:w="20"/><text x="68.7948%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.5455%" y="501" width="0.0130%" height="15" fill="rgb(241,66,31)" fg:x="100328" fg:w="19"/><text x="68.7955%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (19 samples, 0.01%)</title><rect x="68.5455%" y="485" width="0.0130%" height="15" fill="rgb(235,81,37)" fg:x="100328" fg:w="19"/><text x="68.7955%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.5455%" y="469" width="0.0130%" height="15" fill="rgb(223,221,9)" fg:x="100328" fg:w="19"/><text x="68.7955%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (19 samples, 0.01%)</title><rect x="68.5455%" y="453" width="0.0130%" height="15" fill="rgb(242,180,7)" fg:x="100328" fg:w="19"/><text x="68.7955%" y="463.50"></text></g><g><title>PyImport_ImportModuleLevelObject (24 samples, 0.02%)</title><rect x="68.5441%" y="949" width="0.0164%" height="15" fill="rgb(243,78,19)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="959.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (24 samples, 0.02%)</title><rect x="68.5441%" y="933" width="0.0164%" height="15" fill="rgb(233,23,17)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="943.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.5441%" y="917" width="0.0164%" height="15" fill="rgb(252,122,45)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.5441%" y="901" width="0.0164%" height="15" fill="rgb(247,108,20)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.5441%" y="885" width="0.0164%" height="15" fill="rgb(235,84,21)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.5441%" y="869" width="0.0164%" height="15" fill="rgb(247,129,10)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.5441%" y="853" width="0.0164%" height="15" fill="rgb(208,173,14)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.5441%" y="837" width="0.0164%" height="15" fill="rgb(236,31,38)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.5441%" y="821" width="0.0164%" height="15" fill="rgb(232,65,17)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.5441%" y="805" width="0.0164%" height="15" fill="rgb(224,45,49)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.5441%" y="789" width="0.0164%" height="15" fill="rgb(225,2,53)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.5441%" y="773" width="0.0164%" height="15" fill="rgb(248,210,53)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="783.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.5441%" y="757" width="0.0164%" height="15" fill="rgb(211,1,30)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.5441%" y="741" width="0.0164%" height="15" fill="rgb(224,96,15)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="751.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.5441%" y="725" width="0.0164%" height="15" fill="rgb(252,45,11)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="735.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.5441%" y="709" width="0.0164%" height="15" fill="rgb(220,125,38)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="719.50"></text></g><g><title>PyEval_EvalCode (24 samples, 0.02%)</title><rect x="68.5441%" y="693" width="0.0164%" height="15" fill="rgb(243,161,33)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="703.50"></text></g><g><title>_PyEval_EvalCodeWithName (24 samples, 0.02%)</title><rect x="68.5441%" y="677" width="0.0164%" height="15" fill="rgb(248,197,34)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="687.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.5441%" y="661" width="0.0164%" height="15" fill="rgb(228,165,23)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.5441%" y="645" width="0.0164%" height="15" fill="rgb(236,94,38)" fg:x="100326" fg:w="24"/><text x="68.7941%" y="655.50"></text></g><g><title>[python3.9] (56 samples, 0.04%)</title><rect x="68.5728%" y="949" width="0.0383%" height="15" fill="rgb(220,13,23)" fg:x="100368" fg:w="56"/><text x="68.8228%" y="959.50"></text></g><g><title>PyImport_ImportModuleLevelObject (18 samples, 0.01%)</title><rect x="68.6200%" y="613" width="0.0123%" height="15" fill="rgb(234,26,39)" fg:x="100437" fg:w="18"/><text x="68.8700%" y="623.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (18 samples, 0.01%)</title><rect x="68.6200%" y="597" width="0.0123%" height="15" fill="rgb(205,117,44)" fg:x="100437" fg:w="18"/><text x="68.8700%" y="607.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.6200%" y="581" width="0.0123%" height="15" fill="rgb(250,42,2)" fg:x="100437" fg:w="18"/><text x="68.8700%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.6200%" y="565" width="0.0123%" height="15" fill="rgb(223,83,14)" fg:x="100437" fg:w="18"/><text x="68.8700%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.6200%" y="549" width="0.0123%" height="15" fill="rgb(241,147,50)" fg:x="100437" fg:w="18"/><text x="68.8700%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.6200%" y="533" width="0.0123%" height="15" fill="rgb(218,90,6)" fg:x="100437" fg:w="18"/><text x="68.8700%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.6200%" y="517" width="0.0123%" height="15" fill="rgb(210,191,5)" fg:x="100437" fg:w="18"/><text x="68.8700%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.6200%" y="501" width="0.0123%" height="15" fill="rgb(225,139,19)" fg:x="100437" fg:w="18"/><text x="68.8700%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.6207%" y="485" width="0.0116%" height="15" fill="rgb(210,1,33)" fg:x="100438" fg:w="17"/><text x="68.8707%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.6207%" y="469" width="0.0116%" height="15" fill="rgb(213,50,3)" fg:x="100438" fg:w="17"/><text x="68.8707%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.6207%" y="453" width="0.0116%" height="15" fill="rgb(234,227,4)" fg:x="100438" fg:w="17"/><text x="68.8707%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.6207%" y="437" width="0.0116%" height="15" fill="rgb(246,63,5)" fg:x="100438" fg:w="17"/><text x="68.8707%" y="447.50"></text></g><g><title>PyImport_ImportModuleLevelObject (25 samples, 0.02%)</title><rect x="68.6186%" y="933" width="0.0171%" height="15" fill="rgb(245,136,27)" fg:x="100435" fg:w="25"/><text x="68.8686%" y="943.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (25 samples, 0.02%)</title><rect x="68.6186%" y="917" width="0.0171%" height="15" fill="rgb(247,199,27)" fg:x="100435" fg:w="25"/><text x="68.8686%" y="927.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.6186%" y="901" width="0.0171%" height="15" fill="rgb(252,158,49)" fg:x="100435" fg:w="25"/><text x="68.8686%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.6186%" y="885" width="0.0171%" height="15" fill="rgb(254,73,1)" fg:x="100435" fg:w="25"/><text x="68.8686%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.6200%" y="869" width="0.0157%" height="15" fill="rgb(248,93,19)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.6200%" y="853" width="0.0157%" height="15" fill="rgb(206,67,5)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.6200%" y="837" width="0.0157%" height="15" fill="rgb(209,210,4)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.6200%" y="821" width="0.0157%" height="15" fill="rgb(214,185,36)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.6200%" y="805" width="0.0157%" height="15" fill="rgb(233,191,26)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.6200%" y="789" width="0.0157%" height="15" fill="rgb(248,94,17)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.6200%" y="773" width="0.0157%" height="15" fill="rgb(250,64,4)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.6200%" y="757" width="0.0157%" height="15" fill="rgb(218,41,53)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="767.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.6200%" y="741" width="0.0157%" height="15" fill="rgb(251,176,28)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.6200%" y="725" width="0.0157%" height="15" fill="rgb(247,22,9)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="735.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.6200%" y="709" width="0.0157%" height="15" fill="rgb(218,201,14)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="719.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.6200%" y="693" width="0.0157%" height="15" fill="rgb(218,94,10)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="703.50"></text></g><g><title>PyEval_EvalCode (23 samples, 0.02%)</title><rect x="68.6200%" y="677" width="0.0157%" height="15" fill="rgb(222,183,52)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="687.50"></text></g><g><title>_PyEval_EvalCodeWithName (23 samples, 0.02%)</title><rect x="68.6200%" y="661" width="0.0157%" height="15" fill="rgb(242,140,25)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="671.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.6200%" y="645" width="0.0157%" height="15" fill="rgb(235,197,38)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.6200%" y="629" width="0.0157%" height="15" fill="rgb(237,136,15)" fg:x="100437" fg:w="23"/><text x="68.8700%" y="639.50"></text></g><g><title>[python3.9] (15 samples, 0.01%)</title><rect x="68.6699%" y="373" width="0.0102%" height="15" fill="rgb(223,44,49)" fg:x="100510" fg:w="15"/><text x="68.9199%" y="383.50"></text></g><g><title>PyImport_ImportModuleLevelObject (21 samples, 0.01%)</title><rect x="68.6678%" y="693" width="0.0143%" height="15" fill="rgb(227,71,15)" fg:x="100507" fg:w="21"/><text x="68.9178%" y="703.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (21 samples, 0.01%)</title><rect x="68.6678%" y="677" width="0.0143%" height="15" fill="rgb(225,153,20)" fg:x="100507" fg:w="21"/><text x="68.9178%" y="687.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.6678%" y="661" width="0.0143%" height="15" fill="rgb(210,190,26)" fg:x="100507" fg:w="21"/><text x="68.9178%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (21 samples, 0.01%)</title><rect x="68.6678%" y="645" width="0.0143%" height="15" fill="rgb(223,147,5)" fg:x="100507" fg:w="21"/><text x="68.9178%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (21 samples, 0.01%)</title><rect x="68.6678%" y="629" width="0.0143%" height="15" fill="rgb(207,14,23)" fg:x="100507" fg:w="21"/><text x="68.9178%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (21 samples, 0.01%)</title><rect x="68.6678%" y="613" width="0.0143%" height="15" fill="rgb(211,195,53)" fg:x="100507" fg:w="21"/><text x="68.9178%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (21 samples, 0.01%)</title><rect x="68.6678%" y="597" width="0.0143%" height="15" fill="rgb(237,75,46)" fg:x="100507" fg:w="21"/><text x="68.9178%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (21 samples, 0.01%)</title><rect x="68.6678%" y="581" width="0.0143%" height="15" fill="rgb(254,55,14)" fg:x="100507" fg:w="21"/><text x="68.9178%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.6685%" y="565" width="0.0137%" height="15" fill="rgb(230,185,30)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.6685%" y="549" width="0.0137%" height="15" fill="rgb(220,14,11)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.6685%" y="533" width="0.0137%" height="15" fill="rgb(215,169,44)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.6685%" y="517" width="0.0137%" height="15" fill="rgb(253,203,20)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="527.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.6685%" y="501" width="0.0137%" height="15" fill="rgb(229,225,17)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.6685%" y="485" width="0.0137%" height="15" fill="rgb(236,76,26)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="495.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.6685%" y="469" width="0.0137%" height="15" fill="rgb(234,15,30)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="479.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.6685%" y="453" width="0.0137%" height="15" fill="rgb(211,113,48)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="463.50"></text></g><g><title>PyEval_EvalCode (20 samples, 0.01%)</title><rect x="68.6685%" y="437" width="0.0137%" height="15" fill="rgb(221,31,36)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="447.50"></text></g><g><title>_PyEval_EvalCodeWithName (20 samples, 0.01%)</title><rect x="68.6685%" y="421" width="0.0137%" height="15" fill="rgb(215,118,52)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="431.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.6685%" y="405" width="0.0137%" height="15" fill="rgb(241,151,27)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="415.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.6685%" y="389" width="0.0137%" height="15" fill="rgb(253,51,3)" fg:x="100508" fg:w="20"/><text x="68.9185%" y="399.50"></text></g><g><title>_PyFunction_Vectorcall (58 samples, 0.04%)</title><rect x="68.6453%" y="933" width="0.0396%" height="15" fill="rgb(216,201,24)" fg:x="100474" fg:w="58"/><text x="68.8953%" y="943.50"></text></g><g><title>_PyEval_EvalFrameDefault (46 samples, 0.03%)</title><rect x="68.6535%" y="917" width="0.0314%" height="15" fill="rgb(231,107,4)" fg:x="100486" fg:w="46"/><text x="68.9035%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (46 samples, 0.03%)</title><rect x="68.6535%" y="901" width="0.0314%" height="15" fill="rgb(243,97,54)" fg:x="100486" fg:w="46"/><text x="68.9035%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.6623%" y="885" width="0.0225%" height="15" fill="rgb(221,32,51)" fg:x="100499" fg:w="33"/><text x="68.9123%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.6623%" y="869" width="0.0225%" height="15" fill="rgb(218,171,35)" fg:x="100499" fg:w="33"/><text x="68.9123%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.6678%" y="853" width="0.0171%" height="15" fill="rgb(214,20,53)" fg:x="100507" fg:w="25"/><text x="68.9178%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.6678%" y="837" width="0.0171%" height="15" fill="rgb(239,9,52)" fg:x="100507" fg:w="25"/><text x="68.9178%" y="847.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.6678%" y="821" width="0.0171%" height="15" fill="rgb(215,114,45)" fg:x="100507" fg:w="25"/><text x="68.9178%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.6678%" y="805" width="0.0171%" height="15" fill="rgb(208,118,9)" fg:x="100507" fg:w="25"/><text x="68.9178%" y="815.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.6678%" y="789" width="0.0171%" height="15" fill="rgb(235,7,39)" fg:x="100507" fg:w="25"/><text x="68.9178%" y="799.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.6678%" y="773" width="0.0171%" height="15" fill="rgb(243,225,15)" fg:x="100507" fg:w="25"/><text x="68.9178%" y="783.50"></text></g><g><title>PyEval_EvalCode (25 samples, 0.02%)</title><rect x="68.6678%" y="757" width="0.0171%" height="15" fill="rgb(225,216,18)" fg:x="100507" fg:w="25"/><text x="68.9178%" y="767.50"></text></g><g><title>_PyEval_EvalCodeWithName (25 samples, 0.02%)</title><rect x="68.6678%" y="741" width="0.0171%" height="15" fill="rgb(233,36,38)" fg:x="100507" fg:w="25"/><text x="68.9178%" y="751.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.6678%" y="725" width="0.0171%" height="15" fill="rgb(239,88,23)" fg:x="100507" fg:w="25"/><text x="68.9178%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.6678%" y="709" width="0.0171%" height="15" fill="rgb(219,181,35)" fg:x="100507" fg:w="25"/><text x="68.9178%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (103 samples, 0.07%)</title><rect x="68.6172%" y="949" width="0.0704%" height="15" fill="rgb(215,18,46)" fg:x="100433" fg:w="103"/><text x="68.8672%" y="959.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.6876%" y="949" width="0.0178%" height="15" fill="rgb(241,38,11)" fg:x="100536" fg:w="26"/><text x="68.9376%" y="959.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.6924%" y="933" width="0.0130%" height="15" fill="rgb(248,169,45)" fg:x="100543" fg:w="19"/><text x="68.9424%" y="943.50"></text></g><g><title>_PyFunction_Vectorcall (19 samples, 0.01%)</title><rect x="68.6924%" y="917" width="0.0130%" height="15" fill="rgb(239,50,49)" fg:x="100543" fg:w="19"/><text x="68.9424%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.6944%" y="901" width="0.0109%" height="15" fill="rgb(231,96,31)" fg:x="100546" fg:w="16"/><text x="68.9444%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.6944%" y="885" width="0.0109%" height="15" fill="rgb(224,193,37)" fg:x="100546" fg:w="16"/><text x="68.9444%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.6944%" y="869" width="0.0109%" height="15" fill="rgb(227,153,50)" fg:x="100546" fg:w="16"/><text x="68.9444%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.6944%" y="853" width="0.0109%" height="15" fill="rgb(249,228,3)" fg:x="100546" fg:w="16"/><text x="68.9444%" y="863.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (25 samples, 0.02%)</title><rect x="68.7054%" y="949" width="0.0171%" height="15" fill="rgb(219,164,43)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="959.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.7054%" y="933" width="0.0171%" height="15" fill="rgb(216,45,41)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="943.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.7054%" y="917" width="0.0171%" height="15" fill="rgb(210,226,51)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.7054%" y="901" width="0.0171%" height="15" fill="rgb(209,117,49)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.7054%" y="885" width="0.0171%" height="15" fill="rgb(206,196,24)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.7054%" y="869" width="0.0171%" height="15" fill="rgb(253,218,3)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.7054%" y="853" width="0.0171%" height="15" fill="rgb(252,166,2)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.7054%" y="837" width="0.0171%" height="15" fill="rgb(236,218,26)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.7054%" y="821" width="0.0171%" height="15" fill="rgb(254,84,19)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.7054%" y="805" width="0.0171%" height="15" fill="rgb(219,137,29)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.7054%" y="789" width="0.0171%" height="15" fill="rgb(227,47,52)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="799.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.7054%" y="773" width="0.0171%" height="15" fill="rgb(229,167,24)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.7054%" y="757" width="0.0171%" height="15" fill="rgb(233,164,1)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="767.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.7054%" y="741" width="0.0171%" height="15" fill="rgb(218,88,48)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="751.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.7054%" y="725" width="0.0171%" height="15" fill="rgb(226,214,24)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="735.50"></text></g><g><title>PyEval_EvalCode (25 samples, 0.02%)</title><rect x="68.7054%" y="709" width="0.0171%" height="15" fill="rgb(233,29,12)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="719.50"></text></g><g><title>_PyEval_EvalCodeWithName (25 samples, 0.02%)</title><rect x="68.7054%" y="693" width="0.0171%" height="15" fill="rgb(219,120,34)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="703.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.7054%" y="677" width="0.0171%" height="15" fill="rgb(226,78,44)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.7054%" y="661" width="0.0171%" height="15" fill="rgb(240,15,48)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="671.50"></text></g><g><title>PyImport_ImportModuleLevelObject (25 samples, 0.02%)</title><rect x="68.7054%" y="645" width="0.0171%" height="15" fill="rgb(253,176,7)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="655.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (25 samples, 0.02%)</title><rect x="68.7054%" y="629" width="0.0171%" height="15" fill="rgb(206,166,28)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="639.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.7054%" y="613" width="0.0171%" height="15" fill="rgb(241,53,51)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.7054%" y="597" width="0.0171%" height="15" fill="rgb(249,112,30)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.7054%" y="581" width="0.0171%" height="15" fill="rgb(217,85,30)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.7054%" y="565" width="0.0171%" height="15" fill="rgb(233,49,7)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.7054%" y="549" width="0.0171%" height="15" fill="rgb(234,109,9)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.7054%" y="533" width="0.0171%" height="15" fill="rgb(253,95,22)" fg:x="100562" fg:w="25"/><text x="68.9554%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.7061%" y="517" width="0.0164%" height="15" fill="rgb(233,176,25)" fg:x="100563" fg:w="24"/><text x="68.9561%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.7061%" y="501" width="0.0164%" height="15" fill="rgb(236,33,39)" fg:x="100563" fg:w="24"/><text x="68.9561%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.7061%" y="485" width="0.0164%" height="15" fill="rgb(223,226,42)" fg:x="100563" fg:w="24"/><text x="68.9561%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.7061%" y="469" width="0.0164%" height="15" fill="rgb(216,99,33)" fg:x="100563" fg:w="24"/><text x="68.9561%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.7115%" y="453" width="0.0109%" height="15" fill="rgb(235,84,23)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.7115%" y="437" width="0.0109%" height="15" fill="rgb(232,2,27)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="447.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.7115%" y="421" width="0.0109%" height="15" fill="rgb(241,23,22)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="431.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.7115%" y="405" width="0.0109%" height="15" fill="rgb(211,73,27)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="415.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.7115%" y="389" width="0.0109%" height="15" fill="rgb(235,109,49)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="399.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.7115%" y="373" width="0.0109%" height="15" fill="rgb(230,99,29)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="383.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.7115%" y="357" width="0.0109%" height="15" fill="rgb(245,199,7)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="367.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.7115%" y="341" width="0.0109%" height="15" fill="rgb(217,179,10)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="351.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.7115%" y="325" width="0.0109%" height="15" fill="rgb(254,99,47)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="335.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.7115%" y="309" width="0.0109%" height="15" fill="rgb(251,121,7)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="319.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.7115%" y="293" width="0.0109%" height="15" fill="rgb(250,177,26)" fg:x="100571" fg:w="16"/><text x="68.9615%" y="303.50"></text></g><g><title>[unknown] (280 samples, 0.19%)</title><rect x="68.5346%" y="965" width="0.1913%" height="15" fill="rgb(232,88,15)" fg:x="100312" fg:w="280"/><text x="68.7846%" y="975.50"></text></g><g><title>PyRun_SimpleStringFlags (15 samples, 0.01%)</title><rect x="68.7259%" y="901" width="0.0102%" height="15" fill="rgb(251,54,54)" fg:x="100592" fg:w="15"/><text x="68.9759%" y="911.50"></text></g><g><title>PyRun_StringFlags (15 samples, 0.01%)</title><rect x="68.7259%" y="885" width="0.0102%" height="15" fill="rgb(208,177,15)" fg:x="100592" fg:w="15"/><text x="68.9759%" y="895.50"></text></g><g><title>_PyGC_CollectNoFail (20 samples, 0.01%)</title><rect x="68.7477%" y="869" width="0.0137%" height="15" fill="rgb(205,97,32)" fg:x="100624" fg:w="20"/><text x="68.9977%" y="879.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.7477%" y="853" width="0.0137%" height="15" fill="rgb(217,192,13)" fg:x="100624" fg:w="20"/><text x="68.9977%" y="863.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.7505%" y="837" width="0.0109%" height="15" fill="rgb(215,163,41)" fg:x="100628" fg:w="16"/><text x="69.0005%" y="847.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.7464%" y="885" width="0.0171%" height="15" fill="rgb(246,83,29)" fg:x="100622" fg:w="25"/><text x="68.9964%" y="895.50"></text></g><g><title>Py_RunMain (65 samples, 0.04%)</title><rect x="68.7259%" y="917" width="0.0444%" height="15" fill="rgb(219,2,45)" fg:x="100592" fg:w="65"/><text x="68.9759%" y="927.50"></text></g><g><title>Py_FinalizeEx (50 samples, 0.03%)</title><rect x="68.7361%" y="901" width="0.0342%" height="15" fill="rgb(242,215,33)" fg:x="100607" fg:w="50"/><text x="68.9861%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.7764%" y="661" width="0.0116%" height="15" fill="rgb(217,1,6)" fg:x="100666" fg:w="17"/><text x="69.0264%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.7764%" y="645" width="0.0116%" height="15" fill="rgb(207,85,52)" fg:x="100666" fg:w="17"/><text x="69.0264%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.7764%" y="629" width="0.0116%" height="15" fill="rgb(231,171,19)" fg:x="100666" fg:w="17"/><text x="69.0264%" y="639.50"></text></g><g><title>PyImport_ImportModule (20 samples, 0.01%)</title><rect x="68.7751%" y="837" width="0.0137%" height="15" fill="rgb(207,128,4)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="847.50"></text></g><g><title>PyImport_Import (20 samples, 0.01%)</title><rect x="68.7751%" y="821" width="0.0137%" height="15" fill="rgb(219,208,4)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="831.50"></text></g><g><title>PyObject_CallFunction (20 samples, 0.01%)</title><rect x="68.7751%" y="805" width="0.0137%" height="15" fill="rgb(235,161,42)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="815.50"></text></g><g><title>_PyObject_MakeTpCall (20 samples, 0.01%)</title><rect x="68.7751%" y="789" width="0.0137%" height="15" fill="rgb(247,218,18)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="799.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.7751%" y="773" width="0.0137%" height="15" fill="rgb(232,114,51)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="783.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.7751%" y="757" width="0.0137%" height="15" fill="rgb(222,95,3)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="767.50"></text></g><g><title>PyImport_ImportModuleLevelObject (20 samples, 0.01%)</title><rect x="68.7751%" y="741" width="0.0137%" height="15" fill="rgb(240,65,29)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="751.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (20 samples, 0.01%)</title><rect x="68.7751%" y="725" width="0.0137%" height="15" fill="rgb(249,209,20)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="735.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.7751%" y="709" width="0.0137%" height="15" fill="rgb(241,48,37)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.7751%" y="693" width="0.0137%" height="15" fill="rgb(230,140,42)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.7751%" y="677" width="0.0137%" height="15" fill="rgb(230,176,45)" fg:x="100664" fg:w="20"/><text x="69.0251%" y="687.50"></text></g><g><title>PyObject_CallMethod (18 samples, 0.01%)</title><rect x="68.7887%" y="837" width="0.0123%" height="15" fill="rgb(245,112,21)" fg:x="100684" fg:w="18"/><text x="69.0387%" y="847.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.7887%" y="821" width="0.0123%" height="15" fill="rgb(207,183,35)" fg:x="100684" fg:w="18"/><text x="69.0387%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.7887%" y="805" width="0.0123%" height="15" fill="rgb(227,44,33)" fg:x="100684" fg:w="18"/><text x="69.0387%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.7887%" y="789" width="0.0123%" height="15" fill="rgb(246,120,21)" fg:x="100684" fg:w="18"/><text x="69.0387%" y="799.50"></text></g><g><title>Py_InitializeFromConfig (69 samples, 0.05%)</title><rect x="68.7703%" y="885" width="0.0471%" height="15" fill="rgb(235,57,52)" fg:x="100657" fg:w="69"/><text x="69.0203%" y="895.50"></text></g><g><title>[python3.9] (69 samples, 0.05%)</title><rect x="68.7703%" y="869" width="0.0471%" height="15" fill="rgb(238,84,10)" fg:x="100657" fg:w="69"/><text x="69.0203%" y="879.50"></text></g><g><title>[python3.9] (68 samples, 0.05%)</title><rect x="68.7710%" y="853" width="0.0465%" height="15" fill="rgb(251,200,32)" fg:x="100658" fg:w="68"/><text x="69.0210%" y="863.50"></text></g><g><title>Py_BytesMain (136 samples, 0.09%)</title><rect x="68.7259%" y="933" width="0.0929%" height="15" fill="rgb(247,159,13)" fg:x="100592" fg:w="136"/><text x="68.9759%" y="943.50"></text></g><g><title>[python3.9] (71 samples, 0.05%)</title><rect x="68.7703%" y="917" width="0.0485%" height="15" fill="rgb(238,64,4)" fg:x="100657" fg:w="71"/><text x="69.0203%" y="927.50"></text></g><g><title>[python3.9] (71 samples, 0.05%)</title><rect x="68.7703%" y="901" width="0.0485%" height="15" fill="rgb(221,131,51)" fg:x="100657" fg:w="71"/><text x="69.0203%" y="911.50"></text></g><g><title>__libc_start_main (137 samples, 0.09%)</title><rect x="68.7259%" y="949" width="0.0936%" height="15" fill="rgb(242,5,29)" fg:x="100592" fg:w="137"/><text x="68.9759%" y="959.50"></text></g><g><title>_start (145 samples, 0.10%)</title><rect x="68.7259%" y="965" width="0.0991%" height="15" fill="rgb(214,130,32)" fg:x="100592" fg:w="145"/><text x="68.9759%" y="975.50"></text></g><g><title>python3 (467 samples, 0.32%)</title><rect x="68.5154%" y="981" width="0.3191%" height="15" fill="rgb(244,210,16)" fg:x="100284" fg:w="467"/><text x="68.7654%" y="991.50"></text></g><g><title>_dl_map_object_deps (19 samples, 0.01%)</title><rect x="68.8495%" y="885" width="0.0130%" height="15" fill="rgb(234,48,26)" fg:x="100773" fg:w="19"/><text x="69.0995%" y="895.50"></text></g><g><title>_dl_catch_exception (19 samples, 0.01%)</title><rect x="68.8495%" y="869" width="0.0130%" height="15" fill="rgb(231,82,38)" fg:x="100773" fg:w="19"/><text x="69.0995%" y="879.50"></text></g><g><title>openaux (19 samples, 0.01%)</title><rect x="68.8495%" y="853" width="0.0130%" height="15" fill="rgb(254,128,41)" fg:x="100773" fg:w="19"/><text x="69.0995%" y="863.50"></text></g><g><title>_dl_map_object (19 samples, 0.01%)</title><rect x="68.8495%" y="837" width="0.0130%" height="15" fill="rgb(212,73,49)" fg:x="100773" fg:w="19"/><text x="69.0995%" y="847.50"></text></g><g><title>_start (30 samples, 0.02%)</title><rect x="68.8495%" y="965" width="0.0205%" height="15" fill="rgb(205,62,54)" fg:x="100773" fg:w="30"/><text x="69.0995%" y="975.50"></text></g><g><title>_dl_start (30 samples, 0.02%)</title><rect x="68.8495%" y="949" width="0.0205%" height="15" fill="rgb(228,0,8)" fg:x="100773" fg:w="30"/><text x="69.0995%" y="959.50"></text></g><g><title>_dl_start_final (30 samples, 0.02%)</title><rect x="68.8495%" y="933" width="0.0205%" height="15" fill="rgb(251,28,17)" fg:x="100773" fg:w="30"/><text x="69.0995%" y="943.50"></text></g><g><title>_dl_sysdep_start (30 samples, 0.02%)</title><rect x="68.8495%" y="917" width="0.0205%" height="15" fill="rgb(238,105,27)" fg:x="100773" fg:w="30"/><text x="69.0995%" y="927.50"></text></g><g><title>[ld-2.31.so] (30 samples, 0.02%)</title><rect x="68.8495%" y="901" width="0.0205%" height="15" fill="rgb(237,216,33)" fg:x="100773" fg:w="30"/><text x="69.0995%" y="911.50"></text></g><g><title>sed (72 samples, 0.05%)</title><rect x="68.8345%" y="981" width="0.0492%" height="15" fill="rgb(229,228,25)" fg:x="100751" fg:w="72"/><text x="69.0845%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="68.8734%" y="965" width="0.0102%" height="15" fill="rgb(233,75,23)" fg:x="100808" fg:w="15"/><text x="69.1234%" y="975.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="68.8734%" y="949" width="0.0102%" height="15" fill="rgb(231,207,16)" fg:x="100808" fg:w="15"/><text x="69.1234%" y="959.50"></text></g><g><title>[anon] (368 samples, 0.25%)</title><rect x="68.8946%" y="965" width="0.2514%" height="15" fill="rgb(231,191,45)" fg:x="100839" fg:w="368"/><text x="69.1446%" y="975.50"></text></g><g><title>__GI___close_nocancel (23 samples, 0.02%)</title><rect x="69.2198%" y="949" width="0.0157%" height="15" fill="rgb(224,133,17)" fg:x="101315" fg:w="23"/><text x="69.4698%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="69.2205%" y="933" width="0.0150%" height="15" fill="rgb(209,178,27)" fg:x="101316" fg:w="22"/><text x="69.4705%" y="943.50"></text></g><g><title>syscall_exit_to_user_mode (16 samples, 0.01%)</title><rect x="69.2246%" y="917" width="0.0109%" height="15" fill="rgb(218,37,11)" fg:x="101322" fg:w="16"/><text x="69.4746%" y="927.50"></text></g><g><title>exit_to_user_mode_prepare (16 samples, 0.01%)</title><rect x="69.2246%" y="901" width="0.0109%" height="15" fill="rgb(251,226,25)" fg:x="101322" fg:w="16"/><text x="69.4746%" y="911.50"></text></g><g><title>__GI___libc_free (21 samples, 0.01%)</title><rect x="69.2356%" y="949" width="0.0143%" height="15" fill="rgb(209,222,27)" fg:x="101338" fg:w="21"/><text x="69.4856%" y="959.50"></text></g><g><title>dput (15 samples, 0.01%)</title><rect x="69.2642%" y="869" width="0.0102%" height="15" fill="rgb(238,22,21)" fg:x="101380" fg:w="15"/><text x="69.5142%" y="879.50"></text></g><g><title>inode_permission.part.0 (34 samples, 0.02%)</title><rect x="69.3148%" y="805" width="0.0232%" height="15" fill="rgb(233,161,25)" fg:x="101454" fg:w="34"/><text x="69.5648%" y="815.50"></text></g><g><title>generic_permission (15 samples, 0.01%)</title><rect x="69.3278%" y="789" width="0.0102%" height="15" fill="rgb(226,122,53)" fg:x="101473" fg:w="15"/><text x="69.5778%" y="799.50"></text></g><g><title>lookup_fast (73 samples, 0.05%)</title><rect x="69.3524%" y="789" width="0.0499%" height="15" fill="rgb(220,123,17)" fg:x="101509" fg:w="73"/><text x="69.6024%" y="799.50"></text></g><g><title>__d_lookup_rcu (52 samples, 0.04%)</title><rect x="69.3667%" y="773" width="0.0355%" height="15" fill="rgb(230,224,35)" fg:x="101530" fg:w="52"/><text x="69.6167%" y="783.50"></text></g><g><title>link_path_walk.part.0 (186 samples, 0.13%)</title><rect x="69.2909%" y="821" width="0.1271%" height="15" fill="rgb(246,83,8)" fg:x="101419" fg:w="186"/><text x="69.5409%" y="831.50"></text></g><g><title>walk_component (111 samples, 0.08%)</title><rect x="69.3421%" y="805" width="0.0758%" height="15" fill="rgb(230,214,17)" fg:x="101494" fg:w="111"/><text x="69.5921%" y="815.50"></text></g><g><title>step_into (23 samples, 0.02%)</title><rect x="69.4023%" y="789" width="0.0157%" height="15" fill="rgb(222,97,18)" fg:x="101582" fg:w="23"/><text x="69.6523%" y="799.50"></text></g><g><title>filename_parentat (198 samples, 0.14%)</title><rect x="69.2854%" y="853" width="0.1353%" height="15" fill="rgb(206,79,1)" fg:x="101411" fg:w="198"/><text x="69.5354%" y="863.50"></text></g><g><title>path_parentat (196 samples, 0.13%)</title><rect x="69.2868%" y="837" width="0.1339%" height="15" fill="rgb(214,121,34)" fg:x="101413" fg:w="196"/><text x="69.5368%" y="847.50"></text></g><g><title>filename_create (229 samples, 0.16%)</title><rect x="69.2745%" y="869" width="0.1565%" height="15" fill="rgb(249,199,46)" fg:x="101395" fg:w="229"/><text x="69.5245%" y="879.50"></text></g><g><title>inode_permission.part.0 (49 samples, 0.03%)</title><rect x="69.4849%" y="821" width="0.0335%" height="15" fill="rgb(214,222,46)" fg:x="101703" fg:w="49"/><text x="69.7349%" y="831.50"></text></g><g><title>generic_permission (19 samples, 0.01%)</title><rect x="69.5054%" y="805" width="0.0130%" height="15" fill="rgb(248,168,30)" fg:x="101733" fg:w="19"/><text x="69.7554%" y="815.50"></text></g><g><title>lookup_fast (98 samples, 0.07%)</title><rect x="69.5334%" y="805" width="0.0670%" height="15" fill="rgb(226,14,28)" fg:x="101774" fg:w="98"/><text x="69.7834%" y="815.50"></text></g><g><title>__d_lookup_rcu (74 samples, 0.05%)</title><rect x="69.5498%" y="789" width="0.0506%" height="15" fill="rgb(253,123,1)" fg:x="101798" fg:w="74"/><text x="69.7998%" y="799.50"></text></g><g><title>link_path_walk.part.0 (270 samples, 0.18%)</title><rect x="69.4432%" y="837" width="0.1845%" height="15" fill="rgb(225,24,42)" fg:x="101642" fg:w="270"/><text x="69.6932%" y="847.50"></text></g><g><title>walk_component (153 samples, 0.10%)</title><rect x="69.5232%" y="821" width="0.1045%" height="15" fill="rgb(216,161,37)" fg:x="101759" fg:w="153"/><text x="69.7732%" y="831.50"></text></g><g><title>step_into (37 samples, 0.03%)</title><rect x="69.6024%" y="805" width="0.0253%" height="15" fill="rgb(251,164,26)" fg:x="101875" fg:w="37"/><text x="69.8524%" y="815.50"></text></g><g><title>path_lookupat (294 samples, 0.20%)</title><rect x="69.4357%" y="853" width="0.2009%" height="15" fill="rgb(219,177,3)" fg:x="101631" fg:w="294"/><text x="69.6857%" y="863.50"></text></g><g><title>filename_lookup (303 samples, 0.21%)</title><rect x="69.4310%" y="869" width="0.2070%" height="15" fill="rgb(222,65,0)" fg:x="101624" fg:w="303"/><text x="69.6810%" y="879.50"></text></g><g><title>memset_erms (25 samples, 0.02%)</title><rect x="69.6455%" y="837" width="0.0171%" height="15" fill="rgb(223,69,54)" fg:x="101938" fg:w="25"/><text x="69.8955%" y="847.50"></text></g><g><title>kmem_cache_alloc (37 samples, 0.03%)</title><rect x="69.6414%" y="853" width="0.0253%" height="15" fill="rgb(235,30,27)" fg:x="101932" fg:w="37"/><text x="69.8914%" y="863.50"></text></g><g><title>getname_flags.part.0 (77 samples, 0.05%)</title><rect x="69.6407%" y="869" width="0.0526%" height="15" fill="rgb(220,183,50)" fg:x="101931" fg:w="77"/><text x="69.8907%" y="879.50"></text></g><g><title>strncpy_from_user (39 samples, 0.03%)</title><rect x="69.6667%" y="853" width="0.0266%" height="15" fill="rgb(248,198,15)" fg:x="101969" fg:w="39"/><text x="69.9167%" y="863.50"></text></g><g><title>btrfs_trans_release_metadata (20 samples, 0.01%)</title><rect x="69.7398%" y="821" width="0.0137%" height="15" fill="rgb(222,211,4)" fg:x="102076" fg:w="20"/><text x="69.9898%" y="831.50"></text></g><g><title>btrfs_block_rsv_release (19 samples, 0.01%)</title><rect x="69.7404%" y="805" width="0.0130%" height="15" fill="rgb(214,102,34)" fg:x="102077" fg:w="19"/><text x="69.9904%" y="815.50"></text></g><g><title>__btrfs_end_transaction (41 samples, 0.03%)</title><rect x="69.7268%" y="837" width="0.0280%" height="15" fill="rgb(245,92,5)" fg:x="102057" fg:w="41"/><text x="69.9768%" y="847.50"></text></g><g><title>__btrfs_add_delayed_item (35 samples, 0.02%)</title><rect x="69.7616%" y="789" width="0.0239%" height="15" fill="rgb(252,72,51)" fg:x="102108" fg:w="35"/><text x="70.0116%" y="799.50"></text></g><g><title>__kmalloc (19 samples, 0.01%)</title><rect x="69.7917%" y="789" width="0.0130%" height="15" fill="rgb(252,208,19)" fg:x="102152" fg:w="19"/><text x="70.0417%" y="799.50"></text></g><g><title>mutex_spin_on_owner (18 samples, 0.01%)</title><rect x="69.8054%" y="773" width="0.0123%" height="15" fill="rgb(211,69,7)" fg:x="102172" fg:w="18"/><text x="70.0554%" y="783.50"></text></g><g><title>__mutex_lock.constprop.0 (20 samples, 0.01%)</title><rect x="69.8047%" y="789" width="0.0137%" height="15" fill="rgb(211,27,16)" fg:x="102171" fg:w="20"/><text x="70.0547%" y="799.50"></text></g><g><title>btrfs_insert_delayed_dir_index (110 samples, 0.08%)</title><rect x="69.7603%" y="805" width="0.0752%" height="15" fill="rgb(219,216,14)" fg:x="102106" fg:w="110"/><text x="70.0103%" y="815.50"></text></g><g><title>btrfs_release_path (19 samples, 0.01%)</title><rect x="69.8388%" y="805" width="0.0130%" height="15" fill="rgb(219,71,8)" fg:x="102221" fg:w="19"/><text x="70.0888%" y="815.50"></text></g><g><title>generic_bin_search.constprop.0 (32 samples, 0.02%)</title><rect x="69.8846%" y="757" width="0.0219%" height="15" fill="rgb(223,170,53)" fg:x="102288" fg:w="32"/><text x="70.1346%" y="767.50"></text></g><g><title>__radix_tree_lookup (19 samples, 0.01%)</title><rect x="69.9140%" y="725" width="0.0130%" height="15" fill="rgb(246,21,26)" fg:x="102331" fg:w="19"/><text x="70.1640%" y="735.50"></text></g><g><title>find_extent_buffer (30 samples, 0.02%)</title><rect x="69.9106%" y="741" width="0.0205%" height="15" fill="rgb(248,20,46)" fg:x="102326" fg:w="30"/><text x="70.1606%" y="751.50"></text></g><g><title>read_block_for_search.isra.0 (44 samples, 0.03%)</title><rect x="69.9065%" y="757" width="0.0301%" height="15" fill="rgb(252,94,11)" fg:x="102320" fg:w="44"/><text x="70.1565%" y="767.50"></text></g><g><title>push_leaf_left (19 samples, 0.01%)</title><rect x="69.9440%" y="741" width="0.0130%" height="15" fill="rgb(236,163,8)" fg:x="102375" fg:w="19"/><text x="70.1940%" y="751.50"></text></g><g><title>__push_leaf_left (19 samples, 0.01%)</title><rect x="69.9440%" y="725" width="0.0130%" height="15" fill="rgb(217,221,45)" fg:x="102375" fg:w="19"/><text x="70.1940%" y="735.50"></text></g><g><title>split_leaf (41 samples, 0.03%)</title><rect x="69.9365%" y="757" width="0.0280%" height="15" fill="rgb(238,38,17)" fg:x="102364" fg:w="41"/><text x="70.1865%" y="767.50"></text></g><g><title>btrfs_search_slot (157 samples, 0.11%)</title><rect x="69.8634%" y="773" width="0.1073%" height="15" fill="rgb(242,210,23)" fg:x="102257" fg:w="157"/><text x="70.1134%" y="783.50"></text></g><g><title>btrfs_get_token_32 (123 samples, 0.08%)</title><rect x="69.9946%" y="757" width="0.0840%" height="15" fill="rgb(250,86,53)" fg:x="102449" fg:w="123"/><text x="70.2446%" y="767.50"></text></g><g><title>check_setget_bounds.isra.0 (24 samples, 0.02%)</title><rect x="70.0622%" y="741" width="0.0164%" height="15" fill="rgb(223,168,25)" fg:x="102548" fg:w="24"/><text x="70.3122%" y="751.50"></text></g><g><title>btrfs_set_token_32 (101 samples, 0.07%)</title><rect x="70.0896%" y="757" width="0.0690%" height="15" fill="rgb(251,189,4)" fg:x="102588" fg:w="101"/><text x="70.3396%" y="767.50"></text></g><g><title>check_setget_bounds.isra.0 (20 samples, 0.01%)</title><rect x="70.1449%" y="741" width="0.0137%" height="15" fill="rgb(245,19,28)" fg:x="102669" fg:w="20"/><text x="70.3949%" y="751.50"></text></g><g><title>memcpy_extent_buffer (38 samples, 0.03%)</title><rect x="70.1620%" y="757" width="0.0260%" height="15" fill="rgb(207,10,34)" fg:x="102694" fg:w="38"/><text x="70.4120%" y="767.50"></text></g><g><title>memmove (29 samples, 0.02%)</title><rect x="70.1681%" y="741" width="0.0198%" height="15" fill="rgb(235,153,31)" fg:x="102703" fg:w="29"/><text x="70.4181%" y="751.50"></text></g><g><title>memmove_extent_buffer (28 samples, 0.02%)</title><rect x="70.1880%" y="757" width="0.0191%" height="15" fill="rgb(228,72,37)" fg:x="102732" fg:w="28"/><text x="70.4380%" y="767.50"></text></g><g><title>memmove (20 samples, 0.01%)</title><rect x="70.1934%" y="741" width="0.0137%" height="15" fill="rgb(215,15,16)" fg:x="102740" fg:w="20"/><text x="70.4434%" y="751.50"></text></g><g><title>insert_with_overflow (512 samples, 0.35%)</title><rect x="69.8586%" y="805" width="0.3498%" height="15" fill="rgb(250,119,29)" fg:x="102250" fg:w="512"/><text x="70.1086%" y="815.50"></text></g><g><title>btrfs_insert_empty_items (505 samples, 0.35%)</title><rect x="69.8634%" y="789" width="0.3450%" height="15" fill="rgb(214,59,1)" fg:x="102257" fg:w="505"/><text x="70.1134%" y="799.50"></text></g><g><title>setup_items_for_insert (348 samples, 0.24%)</title><rect x="69.9707%" y="773" width="0.2378%" height="15" fill="rgb(223,109,25)" fg:x="102414" fg:w="348"/><text x="70.2207%" y="783.50"></text></g><g><title>btrfs_insert_dir_item (682 samples, 0.47%)</title><rect x="69.7589%" y="821" width="0.4660%" height="15" fill="rgb(230,198,22)" fg:x="102104" fg:w="682"/><text x="70.0089%" y="831.50"></text></g><g><title>generic_bin_search.constprop.0 (56 samples, 0.04%)</title><rect x="70.2570%" y="773" width="0.0383%" height="15" fill="rgb(245,184,46)" fg:x="102833" fg:w="56"/><text x="70.5070%" y="783.50"></text></g><g><title>__radix_tree_lookup (39 samples, 0.03%)</title><rect x="70.3143%" y="741" width="0.0266%" height="15" fill="rgb(253,73,16)" fg:x="102917" fg:w="39"/><text x="70.5643%" y="751.50"></text></g><g><title>find_extent_buffer (63 samples, 0.04%)</title><rect x="70.3075%" y="757" width="0.0430%" height="15" fill="rgb(206,94,45)" fg:x="102907" fg:w="63"/><text x="70.5575%" y="767.50"></text></g><g><title>read_block_for_search.isra.0 (88 samples, 0.06%)</title><rect x="70.2952%" y="773" width="0.0601%" height="15" fill="rgb(236,83,27)" fg:x="102889" fg:w="88"/><text x="70.5452%" y="783.50"></text></g><g><title>btrfs_search_slot (184 samples, 0.13%)</title><rect x="70.2365%" y="789" width="0.1257%" height="15" fill="rgb(220,196,8)" fg:x="102803" fg:w="184"/><text x="70.4865%" y="799.50"></text></g><g><title>btrfs_get_token_32 (35 samples, 0.02%)</title><rect x="70.3779%" y="773" width="0.0239%" height="15" fill="rgb(254,185,14)" fg:x="103010" fg:w="35"/><text x="70.6279%" y="783.50"></text></g><g><title>btrfs_mark_buffer_dirty (19 samples, 0.01%)</title><rect x="70.4073%" y="773" width="0.0130%" height="15" fill="rgb(226,50,22)" fg:x="103053" fg:w="19"/><text x="70.6573%" y="783.50"></text></g><g><title>btrfs_set_token_32 (48 samples, 0.03%)</title><rect x="70.4202%" y="773" width="0.0328%" height="15" fill="rgb(253,147,0)" fg:x="103072" fg:w="48"/><text x="70.6702%" y="783.50"></text></g><g><title>memcpy_extent_buffer (53 samples, 0.04%)</title><rect x="70.4551%" y="773" width="0.0362%" height="15" fill="rgb(252,46,33)" fg:x="103123" fg:w="53"/><text x="70.7051%" y="783.50"></text></g><g><title>memmove (47 samples, 0.03%)</title><rect x="70.4592%" y="757" width="0.0321%" height="15" fill="rgb(242,22,54)" fg:x="103129" fg:w="47"/><text x="70.7092%" y="767.50"></text></g><g><title>memmove_extent_buffer (21 samples, 0.01%)</title><rect x="70.4913%" y="773" width="0.0143%" height="15" fill="rgb(223,178,32)" fg:x="103176" fg:w="21"/><text x="70.7413%" y="783.50"></text></g><g><title>btrfs_insert_empty_items (397 samples, 0.27%)</title><rect x="70.2365%" y="805" width="0.2712%" height="15" fill="rgb(214,106,53)" fg:x="102803" fg:w="397"/><text x="70.4865%" y="815.50"></text></g><g><title>setup_items_for_insert (213 samples, 0.15%)</title><rect x="70.3622%" y="789" width="0.1455%" height="15" fill="rgb(232,65,50)" fg:x="102987" fg:w="213"/><text x="70.6122%" y="799.50"></text></g><g><title>btrfs_insert_inode_ref (441 samples, 0.30%)</title><rect x="70.2248%" y="821" width="0.3013%" height="15" fill="rgb(231,110,28)" fg:x="102786" fg:w="441"/><text x="70.4748%" y="831.50"></text></g><g><title>btrfs_delayed_update_inode (24 samples, 0.02%)</title><rect x="70.5289%" y="805" width="0.0164%" height="15" fill="rgb(216,71,40)" fg:x="103231" fg:w="24"/><text x="70.7789%" y="815.50"></text></g><g><title>btrfs_update_inode (36 samples, 0.02%)</title><rect x="70.5261%" y="821" width="0.0246%" height="15" fill="rgb(229,89,53)" fg:x="103227" fg:w="36"/><text x="70.7761%" y="831.50"></text></g><g><title>btrfs_add_link (1,172 samples, 0.80%)</title><rect x="69.7548%" y="837" width="0.8007%" height="15" fill="rgb(210,124,14)" fg:x="102098" fg:w="1172"/><text x="70.0048%" y="847.50"></text></g><g><title>btrfs_get_or_create_delayed_node (17 samples, 0.01%)</title><rect x="70.5808%" y="805" width="0.0116%" height="15" fill="rgb(236,213,6)" fg:x="103307" fg:w="17"/><text x="70.8308%" y="815.50"></text></g><g><title>btrfs_get_delayed_node (16 samples, 0.01%)</title><rect x="70.5815%" y="789" width="0.0109%" height="15" fill="rgb(228,41,5)" fg:x="103308" fg:w="16"/><text x="70.8315%" y="799.50"></text></g><g><title>btrfs_delayed_update_inode (39 samples, 0.03%)</title><rect x="70.5699%" y="821" width="0.0266%" height="15" fill="rgb(221,167,25)" fg:x="103291" fg:w="39"/><text x="70.8199%" y="831.50"></text></g><g><title>btrfs_update_inode (54 samples, 0.04%)</title><rect x="70.5665%" y="837" width="0.0369%" height="15" fill="rgb(228,144,37)" fg:x="103286" fg:w="54"/><text x="70.8165%" y="847.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (21 samples, 0.01%)</title><rect x="70.6307%" y="773" width="0.0143%" height="15" fill="rgb(227,189,38)" fg:x="103380" fg:w="21"/><text x="70.8807%" y="783.50"></text></g><g><title>btrfs_block_rsv_add (51 samples, 0.03%)</title><rect x="70.6204%" y="821" width="0.0348%" height="15" fill="rgb(218,8,2)" fg:x="103365" fg:w="51"/><text x="70.8704%" y="831.50"></text></g><g><title>btrfs_reserve_metadata_bytes (47 samples, 0.03%)</title><rect x="70.6232%" y="805" width="0.0321%" height="15" fill="rgb(209,61,28)" fg:x="103369" fg:w="47"/><text x="70.8732%" y="815.50"></text></g><g><title>__reserve_bytes (44 samples, 0.03%)</title><rect x="70.6252%" y="789" width="0.0301%" height="15" fill="rgb(233,140,39)" fg:x="103372" fg:w="44"/><text x="70.8752%" y="799.50"></text></g><g><title>calc_available_free_space.isra.0 (15 samples, 0.01%)</title><rect x="70.6450%" y="773" width="0.0102%" height="15" fill="rgb(251,66,48)" fg:x="103401" fg:w="15"/><text x="70.8950%" y="783.50"></text></g><g><title>btrfs_link (1,395 samples, 0.95%)</title><rect x="69.7200%" y="853" width="0.9531%" height="15" fill="rgb(210,44,45)" fg:x="102047" fg:w="1395"/><text x="69.9700%" y="863.50"></text></g><g><title>start_transaction (95 samples, 0.06%)</title><rect x="70.6081%" y="837" width="0.0649%" height="15" fill="rgb(214,136,46)" fg:x="103347" fg:w="95"/><text x="70.8581%" y="847.50"></text></g><g><title>__x64_sys_link (2,091 samples, 1.43%)</title><rect x="69.2608%" y="901" width="1.4286%" height="15" fill="rgb(207,130,50)" fg:x="101375" fg:w="2091"/><text x="69.5108%" y="911.50"></text></g><g><title>do_linkat (2,091 samples, 1.43%)</title><rect x="69.2608%" y="885" width="1.4286%" height="15" fill="rgb(228,102,49)" fg:x="101375" fg:w="2091"/><text x="69.5108%" y="895.50"></text></g><g><title>vfs_link (1,429 samples, 0.98%)</title><rect x="69.7131%" y="869" width="0.9763%" height="15" fill="rgb(253,55,1)" fg:x="102037" fg:w="1429"/><text x="69.9631%" y="879.50"></text></g><g><title>do_syscall_64 (2,094 samples, 1.43%)</title><rect x="69.2601%" y="917" width="1.4307%" height="15" fill="rgb(238,222,9)" fg:x="101374" fg:w="2094"/><text x="69.5101%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,103 samples, 1.44%)</title><rect x="69.2581%" y="933" width="1.4368%" height="15" fill="rgb(246,99,6)" fg:x="101371" fg:w="2103"/><text x="69.5081%" y="943.50"></text></g><g><title>__GI___link (2,121 samples, 1.45%)</title><rect x="69.2499%" y="949" width="1.4491%" height="15" fill="rgb(219,110,26)" fg:x="101359" fg:w="2121"/><text x="69.4999%" y="959.50"></text></g><g><title>_copy_to_user (20 samples, 0.01%)</title><rect x="70.7325%" y="869" width="0.0137%" height="15" fill="rgb(239,160,33)" fg:x="103529" fg:w="20"/><text x="70.9825%" y="879.50"></text></g><g><title>copy_user_enhanced_fast_string (17 samples, 0.01%)</title><rect x="70.7345%" y="853" width="0.0116%" height="15" fill="rgb(220,202,23)" fg:x="103532" fg:w="17"/><text x="70.9845%" y="863.50"></text></g><g><title>cp_new_stat (34 samples, 0.02%)</title><rect x="70.7284%" y="885" width="0.0232%" height="15" fill="rgb(208,80,26)" fg:x="103523" fg:w="34"/><text x="70.9784%" y="895.50"></text></g><g><title>btrfs_getattr (38 samples, 0.03%)</title><rect x="70.7571%" y="869" width="0.0260%" height="15" fill="rgb(243,85,7)" fg:x="103565" fg:w="38"/><text x="71.0071%" y="879.50"></text></g><g><title>__legitimize_path (21 samples, 0.01%)</title><rect x="70.8008%" y="805" width="0.0143%" height="15" fill="rgb(228,77,47)" fg:x="103629" fg:w="21"/><text x="71.0508%" y="815.50"></text></g><g><title>complete_walk (28 samples, 0.02%)</title><rect x="70.7974%" y="837" width="0.0191%" height="15" fill="rgb(212,226,8)" fg:x="103624" fg:w="28"/><text x="71.0474%" y="847.50"></text></g><g><title>try_to_unlazy (26 samples, 0.02%)</title><rect x="70.7987%" y="821" width="0.0178%" height="15" fill="rgb(241,120,54)" fg:x="103626" fg:w="26"/><text x="71.0487%" y="831.50"></text></g><g><title>inode_permission.part.0 (123 samples, 0.08%)</title><rect x="70.8882%" y="821" width="0.0840%" height="15" fill="rgb(226,80,16)" fg:x="103757" fg:w="123"/><text x="71.1382%" y="831.50"></text></g><g><title>generic_permission (43 samples, 0.03%)</title><rect x="70.9429%" y="805" width="0.0294%" height="15" fill="rgb(240,76,13)" fg:x="103837" fg:w="43"/><text x="71.1929%" y="815.50"></text></g><g><title>lookup_fast (231 samples, 0.16%)</title><rect x="71.0017%" y="805" width="0.1578%" height="15" fill="rgb(252,74,8)" fg:x="103923" fg:w="231"/><text x="71.2517%" y="815.50"></text></g><g><title>__d_lookup_rcu (179 samples, 0.12%)</title><rect x="71.0372%" y="789" width="0.1223%" height="15" fill="rgb(244,155,2)" fg:x="103975" fg:w="179"/><text x="71.2872%" y="799.50"></text></g><g><title>link_path_walk.part.0 (584 samples, 0.40%)</title><rect x="70.8165%" y="837" width="0.3990%" height="15" fill="rgb(215,81,35)" fg:x="103652" fg:w="584"/><text x="71.0665%" y="847.50"></text></g><g><title>walk_component (346 samples, 0.24%)</title><rect x="70.9791%" y="821" width="0.2364%" height="15" fill="rgb(206,55,2)" fg:x="103890" fg:w="346"/><text x="71.2291%" y="831.50"></text></g><g><title>step_into (78 samples, 0.05%)</title><rect x="71.1622%" y="805" width="0.0533%" height="15" fill="rgb(231,2,34)" fg:x="104158" fg:w="78"/><text x="71.4122%" y="815.50"></text></g><g><title>page_get_link (16 samples, 0.01%)</title><rect x="71.2046%" y="789" width="0.0109%" height="15" fill="rgb(242,176,48)" fg:x="104220" fg:w="16"/><text x="71.4546%" y="799.50"></text></g><g><title>path_init (28 samples, 0.02%)</title><rect x="71.2155%" y="837" width="0.0191%" height="15" fill="rgb(249,31,36)" fg:x="104236" fg:w="28"/><text x="71.4655%" y="847.50"></text></g><g><title>nd_jump_root (25 samples, 0.02%)</title><rect x="71.2176%" y="821" width="0.0171%" height="15" fill="rgb(205,18,17)" fg:x="104239" fg:w="25"/><text x="71.4676%" y="831.50"></text></g><g><title>set_root (23 samples, 0.02%)</title><rect x="71.2189%" y="805" width="0.0157%" height="15" fill="rgb(254,130,5)" fg:x="104241" fg:w="23"/><text x="71.4689%" y="815.50"></text></g><g><title>lookup_fast (60 samples, 0.04%)</title><rect x="71.2401%" y="821" width="0.0410%" height="15" fill="rgb(229,42,45)" fg:x="104272" fg:w="60"/><text x="71.4901%" y="831.50"></text></g><g><title>__d_lookup_rcu (58 samples, 0.04%)</title><rect x="71.2415%" y="805" width="0.0396%" height="15" fill="rgb(245,95,25)" fg:x="104274" fg:w="58"/><text x="71.4915%" y="815.50"></text></g><g><title>filename_lookup (731 samples, 0.50%)</title><rect x="70.7830%" y="869" width="0.4994%" height="15" fill="rgb(249,193,38)" fg:x="103603" fg:w="731"/><text x="71.0330%" y="879.50"></text></g><g><title>path_lookupat (716 samples, 0.49%)</title><rect x="70.7933%" y="853" width="0.4892%" height="15" fill="rgb(241,140,43)" fg:x="103618" fg:w="716"/><text x="71.0433%" y="863.50"></text></g><g><title>walk_component (67 samples, 0.05%)</title><rect x="71.2367%" y="837" width="0.0458%" height="15" fill="rgb(245,78,48)" fg:x="104267" fg:w="67"/><text x="71.4867%" y="847.50"></text></g><g><title>security_inode_getattr (56 samples, 0.04%)</title><rect x="71.2927%" y="869" width="0.0383%" height="15" fill="rgb(214,92,39)" fg:x="104349" fg:w="56"/><text x="71.5427%" y="879.50"></text></g><g><title>tomoyo_path_perm (28 samples, 0.02%)</title><rect x="71.3118%" y="853" width="0.0191%" height="15" fill="rgb(211,189,14)" fg:x="104377" fg:w="28"/><text x="71.5618%" y="863.50"></text></g><g><title>tomoyo_init_request_info (15 samples, 0.01%)</title><rect x="71.3207%" y="837" width="0.0102%" height="15" fill="rgb(218,7,24)" fg:x="104390" fg:w="15"/><text x="71.5707%" y="847.50"></text></g><g><title>memset_erms (39 samples, 0.03%)</title><rect x="71.3480%" y="821" width="0.0266%" height="15" fill="rgb(224,200,49)" fg:x="104430" fg:w="39"/><text x="71.5980%" y="831.50"></text></g><g><title>kmem_cache_alloc (64 samples, 0.04%)</title><rect x="71.3371%" y="837" width="0.0437%" height="15" fill="rgb(218,210,14)" fg:x="104414" fg:w="64"/><text x="71.5871%" y="847.50"></text></g><g><title>user_path_at_empty (133 samples, 0.09%)</title><rect x="71.3310%" y="869" width="0.0909%" height="15" fill="rgb(234,142,31)" fg:x="104405" fg:w="133"/><text x="71.5810%" y="879.50"></text></g><g><title>getname_flags.part.0 (129 samples, 0.09%)</title><rect x="71.3337%" y="853" width="0.0881%" height="15" fill="rgb(227,165,2)" fg:x="104409" fg:w="129"/><text x="71.5837%" y="863.50"></text></g><g><title>strncpy_from_user (60 samples, 0.04%)</title><rect x="71.3808%" y="837" width="0.0410%" height="15" fill="rgb(232,44,46)" fg:x="104478" fg:w="60"/><text x="71.6308%" y="847.50"></text></g><g><title>__check_object_size (35 samples, 0.02%)</title><rect x="71.3979%" y="821" width="0.0239%" height="15" fill="rgb(236,149,47)" fg:x="104503" fg:w="35"/><text x="71.6479%" y="831.50"></text></g><g><title>__do_sys_newlstat (1,033 samples, 0.71%)</title><rect x="70.7243%" y="901" width="0.7058%" height="15" fill="rgb(227,45,31)" fg:x="103517" fg:w="1033"/><text x="70.9743%" y="911.50"></text></g><g><title>vfs_statx (993 samples, 0.68%)</title><rect x="70.7516%" y="885" width="0.6784%" height="15" fill="rgb(240,176,51)" fg:x="103557" fg:w="993"/><text x="71.0016%" y="895.50"></text></g><g><title>do_syscall_64 (1,043 samples, 0.71%)</title><rect x="70.7202%" y="917" width="0.7126%" height="15" fill="rgb(249,146,41)" fg:x="103511" fg:w="1043"/><text x="70.9702%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,058 samples, 0.72%)</title><rect x="70.7140%" y="933" width="0.7228%" height="15" fill="rgb(213,208,4)" fg:x="103502" fg:w="1058"/><text x="70.9640%" y="943.50"></text></g><g><title>__GI___lxstat (1,085 samples, 0.74%)</title><rect x="70.6990%" y="949" width="0.7413%" height="15" fill="rgb(245,84,36)" fg:x="103480" fg:w="1085"/><text x="70.9490%" y="959.50"></text></g><g><title>btrfs_lookup (16 samples, 0.01%)</title><rect x="71.4417%" y="853" width="0.0109%" height="15" fill="rgb(254,84,18)" fg:x="104567" fg:w="16"/><text x="71.6917%" y="863.50"></text></g><g><title>btrfs_lookup_dentry (16 samples, 0.01%)</title><rect x="71.4417%" y="837" width="0.0109%" height="15" fill="rgb(225,38,54)" fg:x="104567" fg:w="16"/><text x="71.6917%" y="847.50"></text></g><g><title>__lookup_hash (22 samples, 0.02%)</title><rect x="71.4417%" y="869" width="0.0150%" height="15" fill="rgb(246,50,30)" fg:x="104567" fg:w="22"/><text x="71.6917%" y="879.50"></text></g><g><title>filename_create (41 samples, 0.03%)</title><rect x="71.4417%" y="885" width="0.0280%" height="15" fill="rgb(246,148,9)" fg:x="104567" fg:w="41"/><text x="71.6917%" y="895.50"></text></g><g><title>filename_parentat (17 samples, 0.01%)</title><rect x="71.4580%" y="869" width="0.0116%" height="15" fill="rgb(223,75,4)" fg:x="104591" fg:w="17"/><text x="71.7080%" y="879.50"></text></g><g><title>path_parentat (17 samples, 0.01%)</title><rect x="71.4580%" y="853" width="0.0116%" height="15" fill="rgb(239,148,41)" fg:x="104591" fg:w="17"/><text x="71.7080%" y="863.50"></text></g><g><title>btrfs_search_slot (20 samples, 0.01%)</title><rect x="71.4820%" y="789" width="0.0137%" height="15" fill="rgb(205,195,3)" fg:x="104626" fg:w="20"/><text x="71.7320%" y="799.50"></text></g><g><title>insert_with_overflow (37 samples, 0.03%)</title><rect x="71.4820%" y="821" width="0.0253%" height="15" fill="rgb(254,161,1)" fg:x="104626" fg:w="37"/><text x="71.7320%" y="831.50"></text></g><g><title>btrfs_insert_empty_items (37 samples, 0.03%)</title><rect x="71.4820%" y="805" width="0.0253%" height="15" fill="rgb(211,229,8)" fg:x="104626" fg:w="37"/><text x="71.7320%" y="815.50"></text></g><g><title>setup_items_for_insert (17 samples, 0.01%)</title><rect x="71.4956%" y="789" width="0.0116%" height="15" fill="rgb(220,97,9)" fg:x="104646" fg:w="17"/><text x="71.7456%" y="799.50"></text></g><g><title>btrfs_insert_dir_item (47 samples, 0.03%)</title><rect x="71.4758%" y="837" width="0.0321%" height="15" fill="rgb(240,218,8)" fg:x="104617" fg:w="47"/><text x="71.7258%" y="847.50"></text></g><g><title>btrfs_add_link (50 samples, 0.03%)</title><rect x="71.4751%" y="853" width="0.0342%" height="15" fill="rgb(250,44,0)" fg:x="104616" fg:w="50"/><text x="71.7251%" y="863.50"></text></g><g><title>btrfs_search_slot (21 samples, 0.01%)</title><rect x="71.5161%" y="821" width="0.0143%" height="15" fill="rgb(236,41,53)" fg:x="104676" fg:w="21"/><text x="71.7661%" y="831.50"></text></g><g><title>btrfs_insert_empty_items (33 samples, 0.02%)</title><rect x="71.5161%" y="837" width="0.0225%" height="15" fill="rgb(218,227,13)" fg:x="104676" fg:w="33"/><text x="71.7661%" y="847.50"></text></g><g><title>btrfs_new_inode (66 samples, 0.05%)</title><rect x="71.5113%" y="853" width="0.0451%" height="15" fill="rgb(217,94,32)" fg:x="104669" fg:w="66"/><text x="71.7613%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (191 samples, 0.13%)</title><rect x="71.4417%" y="933" width="0.1305%" height="15" fill="rgb(213,217,12)" fg:x="104567" fg:w="191"/><text x="71.6917%" y="943.50"></text></g><g><title>do_syscall_64 (191 samples, 0.13%)</title><rect x="71.4417%" y="917" width="0.1305%" height="15" fill="rgb(229,13,46)" fg:x="104567" fg:w="191"/><text x="71.6917%" y="927.50"></text></g><g><title>do_mkdirat (191 samples, 0.13%)</title><rect x="71.4417%" y="901" width="0.1305%" height="15" fill="rgb(243,139,5)" fg:x="104567" fg:w="191"/><text x="71.6917%" y="911.50"></text></g><g><title>vfs_mkdir (144 samples, 0.10%)</title><rect x="71.4738%" y="885" width="0.0984%" height="15" fill="rgb(249,38,45)" fg:x="104614" fg:w="144"/><text x="71.7238%" y="895.50"></text></g><g><title>btrfs_mkdir (144 samples, 0.10%)</title><rect x="71.4738%" y="869" width="0.0984%" height="15" fill="rgb(216,70,11)" fg:x="104614" fg:w="144"/><text x="71.7238%" y="879.50"></text></g><g><title>__GI___mkdir (194 samples, 0.13%)</title><rect x="71.4403%" y="949" width="0.1325%" height="15" fill="rgb(253,101,25)" fg:x="104565" fg:w="194"/><text x="71.6903%" y="959.50"></text></g><g><title>btrfs_search_slot (35 samples, 0.02%)</title><rect x="71.6090%" y="837" width="0.0239%" height="15" fill="rgb(207,197,30)" fg:x="104812" fg:w="35"/><text x="71.8590%" y="847.50"></text></g><g><title>btrfs_real_readdir (103 samples, 0.07%)</title><rect x="71.5797%" y="853" width="0.0704%" height="15" fill="rgb(238,87,13)" fg:x="104769" fg:w="103"/><text x="71.8297%" y="863.50"></text></g><g><title>btrfs_dirty_inode (16 samples, 0.01%)</title><rect x="71.6541%" y="837" width="0.0109%" height="15" fill="rgb(215,155,8)" fg:x="104878" fg:w="16"/><text x="71.9041%" y="847.50"></text></g><g><title>iterate_dir (126 samples, 0.09%)</title><rect x="71.5797%" y="869" width="0.0861%" height="15" fill="rgb(239,166,38)" fg:x="104769" fg:w="126"/><text x="71.8297%" y="879.50"></text></g><g><title>touch_atime (21 samples, 0.01%)</title><rect x="71.6514%" y="853" width="0.0143%" height="15" fill="rgb(240,194,35)" fg:x="104874" fg:w="21"/><text x="71.9014%" y="863.50"></text></g><g><title>__x64_sys_getdents64 (130 samples, 0.09%)</title><rect x="71.5776%" y="885" width="0.0888%" height="15" fill="rgb(219,10,44)" fg:x="104766" fg:w="130"/><text x="71.8276%" y="895.50"></text></g><g><title>__GI___readdir64 (138 samples, 0.09%)</title><rect x="71.5728%" y="949" width="0.0943%" height="15" fill="rgb(251,220,35)" fg:x="104759" fg:w="138"/><text x="71.8228%" y="959.50"></text></g><g><title>__GI___getdents64 (131 samples, 0.09%)</title><rect x="71.5776%" y="933" width="0.0895%" height="15" fill="rgb(218,117,13)" fg:x="104766" fg:w="131"/><text x="71.8276%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (131 samples, 0.09%)</title><rect x="71.5776%" y="917" width="0.0895%" height="15" fill="rgb(221,213,40)" fg:x="104766" fg:w="131"/><text x="71.8276%" y="927.50"></text></g><g><title>do_syscall_64 (131 samples, 0.09%)</title><rect x="71.5776%" y="901" width="0.0895%" height="15" fill="rgb(251,224,35)" fg:x="104766" fg:w="131"/><text x="71.8276%" y="911.50"></text></g><g><title>btrfs_getattr (36 samples, 0.02%)</title><rect x="71.7102%" y="869" width="0.0246%" height="15" fill="rgb(241,33,39)" fg:x="104960" fg:w="36"/><text x="71.9602%" y="879.50"></text></g><g><title>kmem_cache_free (17 samples, 0.01%)</title><rect x="71.7409%" y="853" width="0.0116%" height="15" fill="rgb(222,74,17)" fg:x="105005" fg:w="17"/><text x="71.9909%" y="863.50"></text></g><g><title>inode_permission.part.0 (140 samples, 0.10%)</title><rect x="71.8721%" y="821" width="0.0956%" height="15" fill="rgb(225,103,0)" fg:x="105197" fg:w="140"/><text x="72.1221%" y="831.50"></text></g><g><title>generic_permission (62 samples, 0.04%)</title><rect x="71.9254%" y="805" width="0.0424%" height="15" fill="rgb(240,0,12)" fg:x="105275" fg:w="62"/><text x="72.1754%" y="815.50"></text></g><g><title>lookup_fast (256 samples, 0.17%)</title><rect x="72.0087%" y="805" width="0.1749%" height="15" fill="rgb(233,213,37)" fg:x="105397" fg:w="256"/><text x="72.2587%" y="815.50"></text></g><g><title>__d_lookup_rcu (195 samples, 0.13%)</title><rect x="72.0504%" y="789" width="0.1332%" height="15" fill="rgb(225,84,52)" fg:x="105458" fg:w="195"/><text x="72.3004%" y="799.50"></text></g><g><title>link_path_walk.part.0 (719 samples, 0.49%)</title><rect x="71.7621%" y="837" width="0.4912%" height="15" fill="rgb(247,160,51)" fg:x="105036" fg:w="719"/><text x="72.0121%" y="847.50"></text></g><g><title>walk_component (406 samples, 0.28%)</title><rect x="71.9759%" y="821" width="0.2774%" height="15" fill="rgb(244,60,51)" fg:x="105349" fg:w="406"/><text x="72.2259%" y="831.50"></text></g><g><title>step_into (101 samples, 0.07%)</title><rect x="72.1843%" y="805" width="0.0690%" height="15" fill="rgb(233,114,7)" fg:x="105654" fg:w="101"/><text x="72.4343%" y="815.50"></text></g><g><title>path_init (26 samples, 0.02%)</title><rect x="72.2533%" y="837" width="0.0178%" height="15" fill="rgb(246,136,16)" fg:x="105755" fg:w="26"/><text x="72.5033%" y="847.50"></text></g><g><title>nd_jump_root (20 samples, 0.01%)</title><rect x="72.2574%" y="821" width="0.0137%" height="15" fill="rgb(243,114,45)" fg:x="105761" fg:w="20"/><text x="72.5074%" y="831.50"></text></g><g><title>set_root (16 samples, 0.01%)</title><rect x="72.2601%" y="805" width="0.0109%" height="15" fill="rgb(247,183,43)" fg:x="105765" fg:w="16"/><text x="72.5101%" y="815.50"></text></g><g><title>btrfs_free_path (19 samples, 0.01%)</title><rect x="72.2820%" y="773" width="0.0130%" height="15" fill="rgb(251,210,42)" fg:x="105797" fg:w="19"/><text x="72.5320%" y="783.50"></text></g><g><title>btrfs_release_path (19 samples, 0.01%)</title><rect x="72.2820%" y="757" width="0.0130%" height="15" fill="rgb(221,88,35)" fg:x="105797" fg:w="19"/><text x="72.5320%" y="767.50"></text></g><g><title>generic_bin_search.constprop.0 (47 samples, 0.03%)</title><rect x="72.3285%" y="741" width="0.0321%" height="15" fill="rgb(242,21,20)" fg:x="105865" fg:w="47"/><text x="72.5785%" y="751.50"></text></g><g><title>__radix_tree_lookup (37 samples, 0.03%)</title><rect x="72.3811%" y="709" width="0.0253%" height="15" fill="rgb(233,226,36)" fg:x="105942" fg:w="37"/><text x="72.6311%" y="719.50"></text></g><g><title>mark_extent_buffer_accessed (18 samples, 0.01%)</title><rect x="72.4063%" y="709" width="0.0123%" height="15" fill="rgb(243,189,34)" fg:x="105979" fg:w="18"/><text x="72.6563%" y="719.50"></text></g><g><title>find_extent_buffer (68 samples, 0.05%)</title><rect x="72.3729%" y="725" width="0.0465%" height="15" fill="rgb(207,145,50)" fg:x="105930" fg:w="68"/><text x="72.6229%" y="735.50"></text></g><g><title>btrfs_search_slot (190 samples, 0.13%)</title><rect x="72.2957%" y="757" width="0.1298%" height="15" fill="rgb(242,1,50)" fg:x="105817" fg:w="190"/><text x="72.5457%" y="767.50"></text></g><g><title>read_block_for_search.isra.0 (95 samples, 0.06%)</title><rect x="72.3606%" y="741" width="0.0649%" height="15" fill="rgb(231,65,32)" fg:x="105912" fg:w="95"/><text x="72.6106%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (202 samples, 0.14%)</title><rect x="72.2950%" y="773" width="0.1380%" height="15" fill="rgb(208,68,49)" fg:x="105816" fg:w="202"/><text x="72.5450%" y="783.50"></text></g><g><title>btrfs_lookup (238 samples, 0.16%)</title><rect x="72.2813%" y="805" width="0.1626%" height="15" fill="rgb(253,54,49)" fg:x="105796" fg:w="238"/><text x="72.5313%" y="815.50"></text></g><g><title>btrfs_lookup_dentry (238 samples, 0.16%)</title><rect x="72.2813%" y="789" width="0.1626%" height="15" fill="rgb(245,186,24)" fg:x="105796" fg:w="238"/><text x="72.5313%" y="799.50"></text></g><g><title>memcg_slab_post_alloc_hook (28 samples, 0.02%)</title><rect x="72.4658%" y="741" width="0.0191%" height="15" fill="rgb(209,2,41)" fg:x="106066" fg:w="28"/><text x="72.7158%" y="751.50"></text></g><g><title>kmem_cache_alloc (80 samples, 0.05%)</title><rect x="72.4501%" y="757" width="0.0547%" height="15" fill="rgb(242,208,54)" fg:x="106043" fg:w="80"/><text x="72.7001%" y="767.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (24 samples, 0.02%)</title><rect x="72.4883%" y="741" width="0.0164%" height="15" fill="rgb(225,9,51)" fg:x="106099" fg:w="24"/><text x="72.7383%" y="751.50"></text></g><g><title>__d_alloc (86 samples, 0.06%)</title><rect x="72.4467%" y="773" width="0.0588%" height="15" fill="rgb(207,207,25)" fg:x="106038" fg:w="86"/><text x="72.6967%" y="783.50"></text></g><g><title>d_alloc_parallel (92 samples, 0.06%)</title><rect x="72.4439%" y="805" width="0.0629%" height="15" fill="rgb(253,96,18)" fg:x="106034" fg:w="92"/><text x="72.6939%" y="815.50"></text></g><g><title>d_alloc (88 samples, 0.06%)</title><rect x="72.4467%" y="789" width="0.0601%" height="15" fill="rgb(252,215,20)" fg:x="106038" fg:w="88"/><text x="72.6967%" y="799.50"></text></g><g><title>__lookup_slow (348 samples, 0.24%)</title><rect x="72.2813%" y="821" width="0.2378%" height="15" fill="rgb(245,227,26)" fg:x="105796" fg:w="348"/><text x="72.5313%" y="831.50"></text></g><g><title>d_splice_alias (18 samples, 0.01%)</title><rect x="72.5068%" y="805" width="0.0123%" height="15" fill="rgb(241,208,0)" fg:x="106126" fg:w="18"/><text x="72.7568%" y="815.50"></text></g><g><title>__d_add (18 samples, 0.01%)</title><rect x="72.5068%" y="789" width="0.0123%" height="15" fill="rgb(224,130,10)" fg:x="106126" fg:w="18"/><text x="72.7568%" y="799.50"></text></g><g><title>__d_lookup_rcu (92 samples, 0.06%)</title><rect x="72.5273%" y="805" width="0.0629%" height="15" fill="rgb(237,29,0)" fg:x="106156" fg:w="92"/><text x="72.7773%" y="815.50"></text></g><g><title>lookup_fast (110 samples, 0.08%)</title><rect x="72.5239%" y="821" width="0.0752%" height="15" fill="rgb(219,27,41)" fg:x="106151" fg:w="110"/><text x="72.7739%" y="831.50"></text></g><g><title>dput (21 samples, 0.01%)</title><rect x="72.6004%" y="805" width="0.0143%" height="15" fill="rgb(245,101,19)" fg:x="106263" fg:w="21"/><text x="72.8504%" y="815.50"></text></g><g><title>step_into (24 samples, 0.02%)</title><rect x="72.5990%" y="821" width="0.0164%" height="15" fill="rgb(243,44,37)" fg:x="106261" fg:w="24"/><text x="72.8490%" y="831.50"></text></g><g><title>path_lookupat (1,264 samples, 0.86%)</title><rect x="71.7525%" y="853" width="0.8636%" height="15" fill="rgb(228,213,43)" fg:x="105022" fg:w="1264"/><text x="72.0025%" y="863.50"></text></g><g><title>walk_component (494 samples, 0.34%)</title><rect x="72.2786%" y="837" width="0.3375%" height="15" fill="rgb(219,163,21)" fg:x="105792" fg:w="494"/><text x="72.5286%" y="847.50"></text></g><g><title>filename_lookup (1,293 samples, 0.88%)</title><rect x="71.7347%" y="869" width="0.8834%" height="15" fill="rgb(234,86,24)" fg:x="104996" fg:w="1293"/><text x="71.9847%" y="879.50"></text></g><g><title>security_inode_getattr (49 samples, 0.03%)</title><rect x="72.6270%" y="869" width="0.0335%" height="15" fill="rgb(225,10,24)" fg:x="106302" fg:w="49"/><text x="72.8770%" y="879.50"></text></g><g><title>tomoyo_path_perm (16 samples, 0.01%)</title><rect x="72.6496%" y="853" width="0.0109%" height="15" fill="rgb(218,109,7)" fg:x="106335" fg:w="16"/><text x="72.8996%" y="863.50"></text></g><g><title>memset_erms (22 samples, 0.02%)</title><rect x="72.6817%" y="821" width="0.0150%" height="15" fill="rgb(210,20,26)" fg:x="106382" fg:w="22"/><text x="72.9317%" y="831.50"></text></g><g><title>kmem_cache_alloc (47 samples, 0.03%)</title><rect x="72.6680%" y="837" width="0.0321%" height="15" fill="rgb(216,18,1)" fg:x="106362" fg:w="47"/><text x="72.9180%" y="847.50"></text></g><g><title>user_path_at_empty (115 samples, 0.08%)</title><rect x="72.6605%" y="869" width="0.0786%" height="15" fill="rgb(206,163,23)" fg:x="106351" fg:w="115"/><text x="72.9105%" y="879.50"></text></g><g><title>getname_flags.part.0 (112 samples, 0.08%)</title><rect x="72.6626%" y="853" width="0.0765%" height="15" fill="rgb(229,150,31)" fg:x="106354" fg:w="112"/><text x="72.9126%" y="863.50"></text></g><g><title>strncpy_from_user (57 samples, 0.04%)</title><rect x="72.7001%" y="837" width="0.0389%" height="15" fill="rgb(231,10,5)" fg:x="106409" fg:w="57"/><text x="72.9501%" y="847.50"></text></g><g><title>__check_object_size (28 samples, 0.02%)</title><rect x="72.7199%" y="821" width="0.0191%" height="15" fill="rgb(250,40,50)" fg:x="106438" fg:w="28"/><text x="72.9699%" y="831.50"></text></g><g><title>__virt_addr_valid (15 samples, 0.01%)</title><rect x="72.7288%" y="805" width="0.0102%" height="15" fill="rgb(217,119,7)" fg:x="106451" fg:w="15"/><text x="72.9788%" y="815.50"></text></g><g><title>__do_sys_newstat (1,545 samples, 1.06%)</title><rect x="71.6931%" y="901" width="1.0556%" height="15" fill="rgb(245,214,40)" fg:x="104935" fg:w="1545"/><text x="71.9431%" y="911.50"></text></g><g><title>vfs_statx (1,530 samples, 1.05%)</title><rect x="71.7033%" y="885" width="1.0453%" height="15" fill="rgb(216,187,1)" fg:x="104950" fg:w="1530"/><text x="71.9533%" y="895.50"></text></g><g><title>do_syscall_64 (1,549 samples, 1.06%)</title><rect x="71.6924%" y="917" width="1.0583%" height="15" fill="rgb(237,146,21)" fg:x="104934" fg:w="1549"/><text x="71.9424%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,563 samples, 1.07%)</title><rect x="71.6883%" y="933" width="1.0679%" height="15" fill="rgb(210,174,47)" fg:x="104928" fg:w="1563"/><text x="71.9383%" y="943.50"></text></g><g><title>__GI___xstat (1,590 samples, 1.09%)</title><rect x="71.6733%" y="949" width="1.0863%" height="15" fill="rgb(218,111,39)" fg:x="104906" fg:w="1590"/><text x="71.9233%" y="959.50"></text></g><g><title>__GI_remove (22 samples, 0.02%)</title><rect x="72.7596%" y="933" width="0.0150%" height="15" fill="rgb(224,95,19)" fg:x="106496" fg:w="22"/><text x="73.0096%" y="943.50"></text></g><g><title>__GI___rmdir (22 samples, 0.02%)</title><rect x="72.7596%" y="917" width="0.0150%" height="15" fill="rgb(234,15,38)" fg:x="106496" fg:w="22"/><text x="73.0096%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="72.7596%" y="901" width="0.0150%" height="15" fill="rgb(246,56,12)" fg:x="106496" fg:w="22"/><text x="73.0096%" y="911.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="72.7596%" y="885" width="0.0150%" height="15" fill="rgb(247,16,17)" fg:x="106496" fg:w="22"/><text x="73.0096%" y="895.50"></text></g><g><title>do_rmdir (22 samples, 0.02%)</title><rect x="72.7596%" y="869" width="0.0150%" height="15" fill="rgb(215,151,11)" fg:x="106496" fg:w="22"/><text x="73.0096%" y="879.50"></text></g><g><title>vfs_rmdir.part.0 (20 samples, 0.01%)</title><rect x="72.7609%" y="853" width="0.0137%" height="15" fill="rgb(225,16,24)" fg:x="106498" fg:w="20"/><text x="73.0109%" y="863.50"></text></g><g><title>filename_parentat (16 samples, 0.01%)</title><rect x="72.7855%" y="869" width="0.0109%" height="15" fill="rgb(217,117,5)" fg:x="106534" fg:w="16"/><text x="73.0355%" y="879.50"></text></g><g><title>path_parentat (16 samples, 0.01%)</title><rect x="72.7855%" y="853" width="0.0109%" height="15" fill="rgb(246,187,53)" fg:x="106534" fg:w="16"/><text x="73.0355%" y="863.50"></text></g><g><title>__GI_remove (57 samples, 0.04%)</title><rect x="72.7596%" y="949" width="0.0389%" height="15" fill="rgb(241,71,40)" fg:x="106496" fg:w="57"/><text x="73.0096%" y="959.50"></text></g><g><title>__unlink (35 samples, 0.02%)</title><rect x="72.7746%" y="933" width="0.0239%" height="15" fill="rgb(231,67,39)" fg:x="106518" fg:w="35"/><text x="73.0246%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="72.7746%" y="917" width="0.0239%" height="15" fill="rgb(222,120,24)" fg:x="106518" fg:w="35"/><text x="73.0246%" y="927.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="72.7746%" y="901" width="0.0239%" height="15" fill="rgb(248,3,3)" fg:x="106518" fg:w="35"/><text x="73.0246%" y="911.50"></text></g><g><title>do_unlinkat (33 samples, 0.02%)</title><rect x="72.7760%" y="885" width="0.0225%" height="15" fill="rgb(228,218,5)" fg:x="106520" fg:w="33"/><text x="73.0260%" y="895.50"></text></g><g><title>kmem_cache_alloc (24 samples, 0.02%)</title><rect x="72.8101%" y="869" width="0.0164%" height="15" fill="rgb(212,202,43)" fg:x="106570" fg:w="24"/><text x="73.0601%" y="879.50"></text></g><g><title>memset_erms (21 samples, 0.01%)</title><rect x="72.8122%" y="853" width="0.0143%" height="15" fill="rgb(235,183,2)" fg:x="106573" fg:w="21"/><text x="73.0622%" y="863.50"></text></g><g><title>__x64_sys_unlinkat (50 samples, 0.03%)</title><rect x="72.8088%" y="901" width="0.0342%" height="15" fill="rgb(230,165,10)" fg:x="106568" fg:w="50"/><text x="73.0588%" y="911.50"></text></g><g><title>getname_flags.part.0 (50 samples, 0.03%)</title><rect x="72.8088%" y="885" width="0.0342%" height="15" fill="rgb(219,54,40)" fg:x="106568" fg:w="50"/><text x="73.0588%" y="895.50"></text></g><g><title>strncpy_from_user (24 samples, 0.02%)</title><rect x="72.8265%" y="869" width="0.0164%" height="15" fill="rgb(244,73,9)" fg:x="106594" fg:w="24"/><text x="73.0765%" y="879.50"></text></g><g><title>btrfs_search_slot (18 samples, 0.01%)</title><rect x="72.8648%" y="805" width="0.0123%" height="15" fill="rgb(212,32,45)" fg:x="106650" fg:w="18"/><text x="73.1148%" y="815.50"></text></g><g><title>btrfs_del_inode_ref (21 samples, 0.01%)</title><rect x="72.8634%" y="821" width="0.0143%" height="15" fill="rgb(205,58,31)" fg:x="106648" fg:w="21"/><text x="73.1134%" y="831.50"></text></g><g><title>btrfs_del_inode_ref_in_log (27 samples, 0.02%)</title><rect x="72.8627%" y="837" width="0.0184%" height="15" fill="rgb(250,120,43)" fg:x="106647" fg:w="27"/><text x="73.1127%" y="847.50"></text></g><g><title>btrfs_del_items (27 samples, 0.02%)</title><rect x="72.8812%" y="837" width="0.0184%" height="15" fill="rgb(235,13,10)" fg:x="106674" fg:w="27"/><text x="73.1312%" y="847.50"></text></g><g><title>__btrfs_unlink_inode (90 samples, 0.06%)</title><rect x="72.8545%" y="853" width="0.0615%" height="15" fill="rgb(232,219,31)" fg:x="106635" fg:w="90"/><text x="73.1045%" y="863.50"></text></g><g><title>btrfs_search_slot (18 samples, 0.01%)</title><rect x="72.9174%" y="805" width="0.0123%" height="15" fill="rgb(218,157,51)" fg:x="106727" fg:w="18"/><text x="73.1674%" y="815.50"></text></g><g><title>btrfs_orphan_add (24 samples, 0.02%)</title><rect x="72.9167%" y="853" width="0.0164%" height="15" fill="rgb(211,91,52)" fg:x="106726" fg:w="24"/><text x="73.1667%" y="863.50"></text></g><g><title>btrfs_insert_orphan_item (24 samples, 0.02%)</title><rect x="72.9167%" y="837" width="0.0164%" height="15" fill="rgb(240,173,1)" fg:x="106726" fg:w="24"/><text x="73.1667%" y="847.50"></text></g><g><title>btrfs_insert_empty_items (23 samples, 0.02%)</title><rect x="72.9174%" y="821" width="0.0157%" height="15" fill="rgb(248,20,47)" fg:x="106727" fg:w="23"/><text x="73.1674%" y="831.50"></text></g><g><title>btrfs_rmdir (135 samples, 0.09%)</title><rect x="72.8539%" y="869" width="0.0922%" height="15" fill="rgb(217,221,40)" fg:x="106634" fg:w="135"/><text x="73.1039%" y="879.50"></text></g><g><title>destroy_inode (16 samples, 0.01%)</title><rect x="72.9468%" y="869" width="0.0109%" height="15" fill="rgb(226,149,51)" fg:x="106770" fg:w="16"/><text x="73.1968%" y="879.50"></text></g><g><title>btrfs_del_items (30 samples, 0.02%)</title><rect x="72.9700%" y="805" width="0.0205%" height="15" fill="rgb(252,193,7)" fg:x="106804" fg:w="30"/><text x="73.2200%" y="815.50"></text></g><g><title>__btrfs_update_delayed_inode (51 samples, 0.03%)</title><rect x="72.9700%" y="821" width="0.0348%" height="15" fill="rgb(205,123,0)" fg:x="106804" fg:w="51"/><text x="73.2200%" y="831.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (54 samples, 0.04%)</title><rect x="72.9686%" y="837" width="0.0369%" height="15" fill="rgb(233,173,25)" fg:x="106802" fg:w="54"/><text x="73.2186%" y="847.50"></text></g><g><title>btrfs_del_orphan_item (29 samples, 0.02%)</title><rect x="73.0055%" y="837" width="0.0198%" height="15" fill="rgb(216,63,32)" fg:x="106856" fg:w="29"/><text x="73.2555%" y="847.50"></text></g><g><title>btrfs_del_items (40 samples, 0.03%)</title><rect x="73.0301%" y="821" width="0.0273%" height="15" fill="rgb(209,56,45)" fg:x="106892" fg:w="40"/><text x="73.2801%" y="831.50"></text></g><g><title>btrfs_kill_delayed_inode_items (16 samples, 0.01%)</title><rect x="73.0609%" y="821" width="0.0109%" height="15" fill="rgb(226,111,49)" fg:x="106937" fg:w="16"/><text x="73.3109%" y="831.50"></text></g><g><title>__btrfs_kill_delayed_node (16 samples, 0.01%)</title><rect x="73.0609%" y="805" width="0.0109%" height="15" fill="rgb(244,181,21)" fg:x="106937" fg:w="16"/><text x="73.3109%" y="815.50"></text></g><g><title>btrfs_search_slot (18 samples, 0.01%)</title><rect x="73.0718%" y="821" width="0.0123%" height="15" fill="rgb(222,126,15)" fg:x="106953" fg:w="18"/><text x="73.3218%" y="831.50"></text></g><g><title>btrfs_truncate_inode_items (92 samples, 0.06%)</title><rect x="73.0260%" y="837" width="0.0629%" height="15" fill="rgb(222,95,17)" fg:x="106886" fg:w="92"/><text x="73.2760%" y="847.50"></text></g><g><title>btrfs_evict_inode (196 samples, 0.13%)</title><rect x="72.9625%" y="853" width="0.1339%" height="15" fill="rgb(254,46,5)" fg:x="106793" fg:w="196"/><text x="73.2125%" y="863.50"></text></g><g><title>evict (205 samples, 0.14%)</title><rect x="72.9577%" y="869" width="0.1401%" height="15" fill="rgb(236,216,35)" fg:x="106786" fg:w="205"/><text x="73.2077%" y="879.50"></text></g><g><title>d_lru_del (18 samples, 0.01%)</title><rect x="73.1032%" y="821" width="0.0123%" height="15" fill="rgb(217,187,26)" fg:x="106999" fg:w="18"/><text x="73.3532%" y="831.50"></text></g><g><title>list_lru_del (17 samples, 0.01%)</title><rect x="73.1039%" y="805" width="0.0116%" height="15" fill="rgb(207,192,25)" fg:x="107000" fg:w="17"/><text x="73.3539%" y="815.50"></text></g><g><title>d_walk (24 samples, 0.02%)</title><rect x="73.0998%" y="853" width="0.0164%" height="15" fill="rgb(253,135,27)" fg:x="106994" fg:w="24"/><text x="73.3498%" y="863.50"></text></g><g><title>select_collect (21 samples, 0.01%)</title><rect x="73.1019%" y="837" width="0.0143%" height="15" fill="rgb(211,122,29)" fg:x="106997" fg:w="21"/><text x="73.3519%" y="847.50"></text></g><g><title>__dentry_kill (30 samples, 0.02%)</title><rect x="73.1162%" y="837" width="0.0205%" height="15" fill="rgb(233,162,40)" fg:x="107018" fg:w="30"/><text x="73.3662%" y="847.50"></text></g><g><title>do_rmdir (442 samples, 0.30%)</title><rect x="72.8429%" y="901" width="0.3020%" height="15" fill="rgb(222,184,47)" fg:x="106618" fg:w="442"/><text x="73.0929%" y="911.50"></text></g><g><title>vfs_rmdir.part.0 (426 samples, 0.29%)</title><rect x="72.8539%" y="885" width="0.2910%" height="15" fill="rgb(249,99,23)" fg:x="106634" fg:w="426"/><text x="73.1039%" y="895.50"></text></g><g><title>shrink_dcache_parent (66 samples, 0.05%)</title><rect x="73.0998%" y="869" width="0.0451%" height="15" fill="rgb(214,60,12)" fg:x="106994" fg:w="66"/><text x="73.3498%" y="879.50"></text></g><g><title>shrink_dentry_list (42 samples, 0.03%)</title><rect x="73.1162%" y="853" width="0.0287%" height="15" fill="rgb(250,229,36)" fg:x="107018" fg:w="42"/><text x="73.3662%" y="863.50"></text></g><g><title>__lookup_hash (41 samples, 0.03%)</title><rect x="73.1476%" y="885" width="0.0280%" height="15" fill="rgb(232,195,10)" fg:x="107064" fg:w="41"/><text x="73.3976%" y="895.50"></text></g><g><title>lookup_dcache (41 samples, 0.03%)</title><rect x="73.1476%" y="869" width="0.0280%" height="15" fill="rgb(205,213,31)" fg:x="107064" fg:w="41"/><text x="73.3976%" y="879.50"></text></g><g><title>d_lookup (39 samples, 0.03%)</title><rect x="73.1490%" y="853" width="0.0266%" height="15" fill="rgb(237,43,8)" fg:x="107066" fg:w="39"/><text x="73.3990%" y="863.50"></text></g><g><title>__d_lookup (39 samples, 0.03%)</title><rect x="73.1490%" y="837" width="0.0266%" height="15" fill="rgb(216,208,3)" fg:x="107066" fg:w="39"/><text x="73.3990%" y="847.50"></text></g><g><title>evict (20 samples, 0.01%)</title><rect x="73.1845%" y="885" width="0.0137%" height="15" fill="rgb(228,179,44)" fg:x="107118" fg:w="20"/><text x="73.4345%" y="895.50"></text></g><g><title>btrfs_evict_inode (20 samples, 0.01%)</title><rect x="73.1845%" y="869" width="0.0137%" height="15" fill="rgb(230,192,27)" fg:x="107118" fg:w="20"/><text x="73.4345%" y="879.50"></text></g><g><title>filename_parentat (33 samples, 0.02%)</title><rect x="73.1982%" y="885" width="0.0225%" height="15" fill="rgb(251,30,38)" fg:x="107138" fg:w="33"/><text x="73.4482%" y="895.50"></text></g><g><title>path_parentat (30 samples, 0.02%)</title><rect x="73.2002%" y="869" width="0.0205%" height="15" fill="rgb(246,55,52)" fg:x="107141" fg:w="30"/><text x="73.4502%" y="879.50"></text></g><g><title>__btrfs_end_transaction (17 samples, 0.01%)</title><rect x="73.2474%" y="853" width="0.0116%" height="15" fill="rgb(249,79,26)" fg:x="107210" fg:w="17"/><text x="73.4974%" y="863.50"></text></g><g><title>btrfs_free_path (15 samples, 0.01%)</title><rect x="73.2727%" y="821" width="0.0102%" height="15" fill="rgb(220,202,16)" fg:x="107247" fg:w="15"/><text x="73.5227%" y="831.50"></text></g><g><title>btrfs_release_path (15 samples, 0.01%)</title><rect x="73.2727%" y="805" width="0.0102%" height="15" fill="rgb(250,170,23)" fg:x="107247" fg:w="15"/><text x="73.5227%" y="815.50"></text></g><g><title>read_block_for_search.isra.0 (18 samples, 0.01%)</title><rect x="73.3116%" y="789" width="0.0123%" height="15" fill="rgb(230,7,37)" fg:x="107304" fg:w="18"/><text x="73.5616%" y="799.50"></text></g><g><title>btrfs_lookup_dir_index_item (63 samples, 0.04%)</title><rect x="73.2829%" y="821" width="0.0430%" height="15" fill="rgb(213,71,1)" fg:x="107262" fg:w="63"/><text x="73.5329%" y="831.50"></text></g><g><title>btrfs_search_slot (62 samples, 0.04%)</title><rect x="73.2836%" y="805" width="0.0424%" height="15" fill="rgb(227,87,39)" fg:x="107263" fg:w="62"/><text x="73.5336%" y="815.50"></text></g><g><title>find_extent_buffer (17 samples, 0.01%)</title><rect x="73.3738%" y="773" width="0.0116%" height="15" fill="rgb(210,41,29)" fg:x="107395" fg:w="17"/><text x="73.6238%" y="783.50"></text></g><g><title>read_block_for_search.isra.0 (28 samples, 0.02%)</title><rect x="73.3669%" y="789" width="0.0191%" height="15" fill="rgb(206,191,31)" fg:x="107385" fg:w="28"/><text x="73.6169%" y="799.50"></text></g><g><title>btrfs_search_slot (93 samples, 0.06%)</title><rect x="73.3260%" y="805" width="0.0635%" height="15" fill="rgb(247,75,54)" fg:x="107325" fg:w="93"/><text x="73.5760%" y="815.50"></text></g><g><title>btrfs_lookup_dir_item (94 samples, 0.06%)</title><rect x="73.3260%" y="821" width="0.0642%" height="15" fill="rgb(208,54,50)" fg:x="107325" fg:w="94"/><text x="73.5760%" y="831.50"></text></g><g><title>btrfs_del_dir_entries_in_log (211 samples, 0.14%)</title><rect x="73.2665%" y="837" width="0.1442%" height="15" fill="rgb(214,90,37)" fg:x="107238" fg:w="211"/><text x="73.5165%" y="847.50"></text></g><g><title>btrfs_get_token_32 (51 samples, 0.03%)</title><rect x="73.4278%" y="805" width="0.0348%" height="15" fill="rgb(220,132,6)" fg:x="107474" fg:w="51"/><text x="73.6778%" y="815.50"></text></g><g><title>btrfs_set_token_32 (60 samples, 0.04%)</title><rect x="73.4640%" y="805" width="0.0410%" height="15" fill="rgb(213,167,7)" fg:x="107527" fg:w="60"/><text x="73.7140%" y="815.50"></text></g><g><title>btrfs_del_items (230 samples, 0.16%)</title><rect x="73.4127%" y="821" width="0.1571%" height="15" fill="rgb(243,36,27)" fg:x="107452" fg:w="230"/><text x="73.6627%" y="831.50"></text></g><g><title>memmove_extent_buffer (85 samples, 0.06%)</title><rect x="73.5118%" y="805" width="0.0581%" height="15" fill="rgb(235,147,12)" fg:x="107597" fg:w="85"/><text x="73.7618%" y="815.50"></text></g><g><title>memmove (75 samples, 0.05%)</title><rect x="73.5186%" y="789" width="0.0512%" height="15" fill="rgb(212,198,44)" fg:x="107607" fg:w="75"/><text x="73.7686%" y="799.50"></text></g><g><title>generic_bin_search.constprop.0 (36 samples, 0.02%)</title><rect x="73.6061%" y="805" width="0.0246%" height="15" fill="rgb(218,68,50)" fg:x="107735" fg:w="36"/><text x="73.8561%" y="815.50"></text></g><g><title>__radix_tree_lookup (20 samples, 0.01%)</title><rect x="73.6484%" y="773" width="0.0137%" height="15" fill="rgb(224,79,48)" fg:x="107797" fg:w="20"/><text x="73.8984%" y="783.50"></text></g><g><title>find_extent_buffer (50 samples, 0.03%)</title><rect x="73.6402%" y="789" width="0.0342%" height="15" fill="rgb(213,191,50)" fg:x="107785" fg:w="50"/><text x="73.8902%" y="799.50"></text></g><g><title>mark_extent_buffer_accessed (18 samples, 0.01%)</title><rect x="73.6621%" y="773" width="0.0123%" height="15" fill="rgb(254,146,10)" fg:x="107817" fg:w="18"/><text x="73.9121%" y="783.50"></text></g><g><title>read_block_for_search.isra.0 (69 samples, 0.05%)</title><rect x="73.6307%" y="805" width="0.0471%" height="15" fill="rgb(215,175,11)" fg:x="107771" fg:w="69"/><text x="73.8807%" y="815.50"></text></g><g><title>btrfs_search_slot (140 samples, 0.10%)</title><rect x="73.5863%" y="821" width="0.0956%" height="15" fill="rgb(207,49,7)" fg:x="107706" fg:w="140"/><text x="73.8363%" y="831.50"></text></g><g><title>btrfs_del_inode_ref (418 samples, 0.29%)</title><rect x="73.4107%" y="837" width="0.2856%" height="15" fill="rgb(234,144,29)" fg:x="107449" fg:w="418"/><text x="73.6607%" y="847.50"></text></g><g><title>btrfs_free_path (17 samples, 0.01%)</title><rect x="73.7004%" y="805" width="0.0116%" height="15" fill="rgb(213,222,48)" fg:x="107873" fg:w="17"/><text x="73.9504%" y="815.50"></text></g><g><title>generic_bin_search.constprop.0 (30 samples, 0.02%)</title><rect x="73.7564%" y="789" width="0.0205%" height="15" fill="rgb(222,8,6)" fg:x="107955" fg:w="30"/><text x="74.0064%" y="799.50"></text></g><g><title>find_extent_buffer (25 samples, 0.02%)</title><rect x="73.7926%" y="773" width="0.0171%" height="15" fill="rgb(221,114,49)" fg:x="108008" fg:w="25"/><text x="74.0426%" y="783.50"></text></g><g><title>read_block_for_search.isra.0 (54 samples, 0.04%)</title><rect x="73.7769%" y="789" width="0.0369%" height="15" fill="rgb(250,140,42)" fg:x="107985" fg:w="54"/><text x="74.0269%" y="799.50"></text></g><g><title>btrfs_search_slot (159 samples, 0.11%)</title><rect x="73.7120%" y="805" width="0.1086%" height="15" fill="rgb(250,150,27)" fg:x="107890" fg:w="159"/><text x="73.9620%" y="815.50"></text></g><g><title>btrfs_del_inode_ref (206 samples, 0.14%)</title><rect x="73.6983%" y="821" width="0.1407%" height="15" fill="rgb(252,159,3)" fg:x="107870" fg:w="206"/><text x="73.9483%" y="831.50"></text></g><g><title>btrfs_del_inode_ref_in_log (213 samples, 0.15%)</title><rect x="73.6963%" y="837" width="0.1455%" height="15" fill="rgb(241,182,3)" fg:x="107867" fg:w="213"/><text x="73.9463%" y="847.50"></text></g><g><title>btrfs_free_tree_block (17 samples, 0.01%)</title><rect x="73.8698%" y="805" width="0.0116%" height="15" fill="rgb(236,3,9)" fg:x="108121" fg:w="17"/><text x="74.1198%" y="815.50"></text></g><g><title>btrfs_del_leaf (18 samples, 0.01%)</title><rect x="73.8698%" y="821" width="0.0123%" height="15" fill="rgb(223,227,51)" fg:x="108121" fg:w="18"/><text x="74.1198%" y="831.50"></text></g><g><title>btrfs_get_token_32 (113 samples, 0.08%)</title><rect x="73.8848%" y="821" width="0.0772%" height="15" fill="rgb(232,133,30)" fg:x="108143" fg:w="113"/><text x="74.1348%" y="831.50"></text></g><g><title>btrfs_set_token_32 (84 samples, 0.06%)</title><rect x="73.9661%" y="821" width="0.0574%" height="15" fill="rgb(209,93,27)" fg:x="108262" fg:w="84"/><text x="74.2161%" y="831.50"></text></g><g><title>check_setget_bounds.isra.0 (18 samples, 0.01%)</title><rect x="74.0112%" y="805" width="0.0123%" height="15" fill="rgb(208,108,34)" fg:x="108328" fg:w="18"/><text x="74.2612%" y="815.50"></text></g><g><title>memcpy_extent_buffer (25 samples, 0.02%)</title><rect x="74.0262%" y="821" width="0.0171%" height="15" fill="rgb(215,189,13)" fg:x="108350" fg:w="25"/><text x="74.2762%" y="831.50"></text></g><g><title>memmove (19 samples, 0.01%)</title><rect x="74.0303%" y="805" width="0.0130%" height="15" fill="rgb(206,88,23)" fg:x="108356" fg:w="19"/><text x="74.2803%" y="815.50"></text></g><g><title>memmove_extent_buffer (48 samples, 0.03%)</title><rect x="74.0433%" y="821" width="0.0328%" height="15" fill="rgb(240,173,0)" fg:x="108375" fg:w="48"/><text x="74.2933%" y="831.50"></text></g><g><title>memmove (43 samples, 0.03%)</title><rect x="74.0467%" y="805" width="0.0294%" height="15" fill="rgb(223,106,52)" fg:x="108380" fg:w="43"/><text x="74.2967%" y="815.50"></text></g><g><title>btrfs_del_items (351 samples, 0.24%)</title><rect x="73.8418%" y="837" width="0.2398%" height="15" fill="rgb(206,130,16)" fg:x="108080" fg:w="351"/><text x="74.0918%" y="847.50"></text></g><g><title>__mutex_lock.constprop.0 (25 samples, 0.02%)</title><rect x="74.0953%" y="821" width="0.0171%" height="15" fill="rgb(220,54,25)" fg:x="108451" fg:w="25"/><text x="74.3453%" y="831.50"></text></g><g><title>mutex_spin_on_owner (25 samples, 0.02%)</title><rect x="74.0953%" y="805" width="0.0171%" height="15" fill="rgb(210,4,38)" fg:x="108451" fg:w="25"/><text x="74.3453%" y="815.50"></text></g><g><title>btrfs_delete_delayed_dir_index (69 samples, 0.05%)</title><rect x="74.0830%" y="837" width="0.0471%" height="15" fill="rgb(238,94,39)" fg:x="108433" fg:w="69"/><text x="74.3330%" y="847.50"></text></g><g><title>btrfs_match_dir_item_name (18 samples, 0.01%)</title><rect x="74.1403%" y="821" width="0.0123%" height="15" fill="rgb(234,124,34)" fg:x="108517" fg:w="18"/><text x="74.3903%" y="831.50"></text></g><g><title>generic_bin_search.constprop.0 (30 samples, 0.02%)</title><rect x="74.1820%" y="805" width="0.0205%" height="15" fill="rgb(221,91,40)" fg:x="108578" fg:w="30"/><text x="74.4320%" y="815.50"></text></g><g><title>__radix_tree_lookup (16 samples, 0.01%)</title><rect x="74.2182%" y="773" width="0.0109%" height="15" fill="rgb(246,53,28)" fg:x="108631" fg:w="16"/><text x="74.4682%" y="783.50"></text></g><g><title>find_extent_buffer (30 samples, 0.02%)</title><rect x="74.2155%" y="789" width="0.0205%" height="15" fill="rgb(229,109,7)" fg:x="108627" fg:w="30"/><text x="74.4655%" y="799.50"></text></g><g><title>read_block_for_search.isra.0 (54 samples, 0.04%)</title><rect x="74.2025%" y="805" width="0.0369%" height="15" fill="rgb(249,117,8)" fg:x="108608" fg:w="54"/><text x="74.4525%" y="815.50"></text></g><g><title>btrfs_search_slot (134 samples, 0.09%)</title><rect x="74.1526%" y="821" width="0.0916%" height="15" fill="rgb(210,181,1)" fg:x="108535" fg:w="134"/><text x="74.4026%" y="831.50"></text></g><g><title>btrfs_lookup_dir_item (156 samples, 0.11%)</title><rect x="74.1403%" y="837" width="0.1066%" height="15" fill="rgb(211,66,1)" fg:x="108517" fg:w="156"/><text x="74.3903%" y="847.50"></text></g><g><title>btrfs_release_path (16 samples, 0.01%)</title><rect x="74.2469%" y="837" width="0.0109%" height="15" fill="rgb(221,90,14)" fg:x="108673" fg:w="16"/><text x="74.4969%" y="847.50"></text></g><g><title>btrfs_delayed_update_inode (26 samples, 0.02%)</title><rect x="74.2579%" y="821" width="0.0178%" height="15" fill="rgb(219,222,44)" fg:x="108689" fg:w="26"/><text x="74.5079%" y="831.50"></text></g><g><title>btrfs_update_inode (29 samples, 0.02%)</title><rect x="74.2579%" y="837" width="0.0198%" height="15" fill="rgb(246,34,33)" fg:x="108689" fg:w="29"/><text x="74.5079%" y="847.50"></text></g><g><title>__btrfs_unlink_inode (1,504 samples, 1.03%)</title><rect x="73.2590%" y="853" width="1.0276%" height="15" fill="rgb(227,135,41)" fg:x="107227" fg:w="1504"/><text x="73.5090%" y="863.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (17 samples, 0.01%)</title><rect x="74.3098%" y="821" width="0.0116%" height="15" fill="rgb(226,15,14)" fg:x="108765" fg:w="17"/><text x="74.5598%" y="831.50"></text></g><g><title>btrfs_get_or_create_delayed_node (18 samples, 0.01%)</title><rect x="74.3255%" y="821" width="0.0123%" height="15" fill="rgb(236,148,47)" fg:x="108788" fg:w="18"/><text x="74.5755%" y="831.50"></text></g><g><title>btrfs_get_delayed_node (17 samples, 0.01%)</title><rect x="74.3262%" y="805" width="0.0116%" height="15" fill="rgb(233,162,52)" fg:x="108789" fg:w="17"/><text x="74.5762%" y="815.50"></text></g><g><title>btrfs_delayed_update_inode (57 samples, 0.04%)</title><rect x="74.3077%" y="837" width="0.0389%" height="15" fill="rgb(244,35,28)" fg:x="108762" fg:w="57"/><text x="74.5577%" y="847.50"></text></g><g><title>btrfs_update_inode (68 samples, 0.05%)</title><rect x="74.3064%" y="853" width="0.0465%" height="15" fill="rgb(205,121,10)" fg:x="108760" fg:w="68"/><text x="74.5564%" y="863.50"></text></g><g><title>btrfs_block_rsv_add (33 samples, 0.02%)</title><rect x="74.3590%" y="837" width="0.0225%" height="15" fill="rgb(250,58,18)" fg:x="108837" fg:w="33"/><text x="74.6090%" y="847.50"></text></g><g><title>btrfs_reserve_metadata_bytes (28 samples, 0.02%)</title><rect x="74.3624%" y="821" width="0.0191%" height="15" fill="rgb(216,37,13)" fg:x="108842" fg:w="28"/><text x="74.6124%" y="831.50"></text></g><g><title>__reserve_bytes (26 samples, 0.02%)</title><rect x="74.3638%" y="805" width="0.0178%" height="15" fill="rgb(221,215,42)" fg:x="108844" fg:w="26"/><text x="74.6138%" y="815.50"></text></g><g><title>btrfs_unlink (1,680 samples, 1.15%)</title><rect x="73.2474%" y="869" width="1.1478%" height="15" fill="rgb(217,214,19)" fg:x="107210" fg:w="1680"/><text x="73.4974%" y="879.50"></text></g><g><title>start_transaction (62 samples, 0.04%)</title><rect x="74.3528%" y="853" width="0.0424%" height="15" fill="rgb(233,139,13)" fg:x="108828" fg:w="62"/><text x="74.6028%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,358 samples, 1.61%)</title><rect x="72.8074%" y="933" width="1.6110%" height="15" fill="rgb(247,168,23)" fg:x="106566" fg:w="2358"/><text x="73.0574%" y="943.50"></text></g><g><title>do_syscall_64 (2,358 samples, 1.61%)</title><rect x="72.8074%" y="917" width="1.6110%" height="15" fill="rgb(207,202,1)" fg:x="106566" fg:w="2358"/><text x="73.0574%" y="927.50"></text></g><g><title>do_unlinkat (1,864 samples, 1.27%)</title><rect x="73.1449%" y="901" width="1.2735%" height="15" fill="rgb(220,155,48)" fg:x="107060" fg:w="1864"/><text x="73.3949%" y="911.50"></text></g><g><title>vfs_unlink (1,720 samples, 1.18%)</title><rect x="73.2433%" y="885" width="1.1751%" height="15" fill="rgb(250,43,26)" fg:x="107204" fg:w="1720"/><text x="73.4933%" y="895.50"></text></g><g><title>__GI_unlinkat (2,375 samples, 1.62%)</title><rect x="72.7985%" y="949" width="1.6226%" height="15" fill="rgb(212,190,23)" fg:x="106553" fg:w="2375"/><text x="73.0485%" y="959.50"></text></g><g><title>__fdopendir (15 samples, 0.01%)</title><rect x="74.4348%" y="949" width="0.0102%" height="15" fill="rgb(216,39,24)" fg:x="108948" fg:w="15"/><text x="74.6848%" y="959.50"></text></g><g><title>btrfs_create (15 samples, 0.01%)</title><rect x="74.4464%" y="837" width="0.0102%" height="15" fill="rgb(252,113,16)" fg:x="108965" fg:w="15"/><text x="74.6964%" y="847.50"></text></g><g><title>__libc_open64 (22 samples, 0.02%)</title><rect x="74.4451%" y="949" width="0.0150%" height="15" fill="rgb(208,113,19)" fg:x="108963" fg:w="22"/><text x="74.6951%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="74.4451%" y="933" width="0.0150%" height="15" fill="rgb(234,107,25)" fg:x="108963" fg:w="22"/><text x="74.6951%" y="943.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="74.4451%" y="917" width="0.0150%" height="15" fill="rgb(234,217,51)" fg:x="108963" fg:w="22"/><text x="74.6951%" y="927.50"></text></g><g><title>__x64_sys_openat (22 samples, 0.02%)</title><rect x="74.4451%" y="901" width="0.0150%" height="15" fill="rgb(251,29,42)" fg:x="108963" fg:w="22"/><text x="74.6951%" y="911.50"></text></g><g><title>do_sys_openat2 (22 samples, 0.02%)</title><rect x="74.4451%" y="885" width="0.0150%" height="15" fill="rgb(221,62,51)" fg:x="108963" fg:w="22"/><text x="74.6951%" y="895.50"></text></g><g><title>do_filp_open (21 samples, 0.01%)</title><rect x="74.4457%" y="869" width="0.0143%" height="15" fill="rgb(240,192,43)" fg:x="108964" fg:w="21"/><text x="74.6957%" y="879.50"></text></g><g><title>path_openat (21 samples, 0.01%)</title><rect x="74.4457%" y="853" width="0.0143%" height="15" fill="rgb(224,157,47)" fg:x="108964" fg:w="21"/><text x="74.6957%" y="863.50"></text></g><g><title>do_filp_open (27 samples, 0.02%)</title><rect x="74.4635%" y="869" width="0.0184%" height="15" fill="rgb(226,84,45)" fg:x="108990" fg:w="27"/><text x="74.7135%" y="879.50"></text></g><g><title>path_openat (27 samples, 0.02%)</title><rect x="74.4635%" y="853" width="0.0184%" height="15" fill="rgb(208,207,23)" fg:x="108990" fg:w="27"/><text x="74.7135%" y="863.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="74.4608%" y="917" width="0.0246%" height="15" fill="rgb(253,34,51)" fg:x="108986" fg:w="36"/><text x="74.7108%" y="927.50"></text></g><g><title>__x64_sys_openat (36 samples, 0.02%)</title><rect x="74.4608%" y="901" width="0.0246%" height="15" fill="rgb(227,26,34)" fg:x="108986" fg:w="36"/><text x="74.7108%" y="911.50"></text></g><g><title>do_sys_openat2 (34 samples, 0.02%)</title><rect x="74.4621%" y="885" width="0.0232%" height="15" fill="rgb(245,75,19)" fg:x="108988" fg:w="34"/><text x="74.7121%" y="895.50"></text></g><g><title>__libc_openat64 (38 samples, 0.03%)</title><rect x="74.4601%" y="949" width="0.0260%" height="15" fill="rgb(250,191,31)" fg:x="108985" fg:w="38"/><text x="74.7101%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.03%)</title><rect x="74.4608%" y="933" width="0.0253%" height="15" fill="rgb(224,11,50)" fg:x="108986" fg:w="37"/><text x="74.7108%" y="943.50"></text></g><g><title>__libc_write (18 samples, 0.01%)</title><rect x="74.4861%" y="949" width="0.0123%" height="15" fill="rgb(231,171,7)" fg:x="109023" fg:w="18"/><text x="74.7361%" y="959.50"></text></g><g><title>__libc_write (18 samples, 0.01%)</title><rect x="74.4861%" y="933" width="0.0123%" height="15" fill="rgb(252,214,10)" fg:x="109023" fg:w="18"/><text x="74.7361%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="74.4861%" y="917" width="0.0123%" height="15" fill="rgb(249,45,46)" fg:x="109023" fg:w="18"/><text x="74.7361%" y="927.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="74.4861%" y="901" width="0.0123%" height="15" fill="rgb(240,173,7)" fg:x="109023" fg:w="18"/><text x="74.7361%" y="911.50"></text></g><g><title>ksys_write (18 samples, 0.01%)</title><rect x="74.4861%" y="885" width="0.0123%" height="15" fill="rgb(235,214,13)" fg:x="109023" fg:w="18"/><text x="74.7361%" y="895.50"></text></g><g><title>vfs_write (18 samples, 0.01%)</title><rect x="74.4861%" y="869" width="0.0123%" height="15" fill="rgb(245,156,8)" fg:x="109023" fg:w="18"/><text x="74.7361%" y="879.50"></text></g><g><title>new_sync_write (18 samples, 0.01%)</title><rect x="74.4861%" y="853" width="0.0123%" height="15" fill="rgb(235,46,12)" fg:x="109023" fg:w="18"/><text x="74.7361%" y="863.50"></text></g><g><title>btrfs_file_write_iter (18 samples, 0.01%)</title><rect x="74.4861%" y="837" width="0.0123%" height="15" fill="rgb(221,81,14)" fg:x="109023" fg:w="18"/><text x="74.7361%" y="847.50"></text></g><g><title>do_filp_open (20 samples, 0.01%)</title><rect x="74.5004%" y="853" width="0.0137%" height="15" fill="rgb(238,207,9)" fg:x="109044" fg:w="20"/><text x="74.7504%" y="863.50"></text></g><g><title>path_openat (19 samples, 0.01%)</title><rect x="74.5011%" y="837" width="0.0130%" height="15" fill="rgb(224,129,35)" fg:x="109045" fg:w="19"/><text x="74.7511%" y="847.50"></text></g><g><title>__opendir (24 samples, 0.02%)</title><rect x="74.4984%" y="949" width="0.0164%" height="15" fill="rgb(243,218,34)" fg:x="109041" fg:w="24"/><text x="74.7484%" y="959.50"></text></g><g><title>__GI___open64_nocancel (24 samples, 0.02%)</title><rect x="74.4984%" y="933" width="0.0164%" height="15" fill="rgb(220,166,13)" fg:x="109041" fg:w="24"/><text x="74.7484%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="74.4990%" y="917" width="0.0157%" height="15" fill="rgb(227,167,49)" fg:x="109042" fg:w="23"/><text x="74.7490%" y="927.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="74.4990%" y="901" width="0.0157%" height="15" fill="rgb(234,142,12)" fg:x="109042" fg:w="23"/><text x="74.7490%" y="911.50"></text></g><g><title>__x64_sys_openat (23 samples, 0.02%)</title><rect x="74.4990%" y="885" width="0.0157%" height="15" fill="rgb(207,100,48)" fg:x="109042" fg:w="23"/><text x="74.7490%" y="895.50"></text></g><g><title>do_sys_openat2 (23 samples, 0.02%)</title><rect x="74.4990%" y="869" width="0.0157%" height="15" fill="rgb(210,25,14)" fg:x="109042" fg:w="23"/><text x="74.7490%" y="879.50"></text></g><g><title>_int_free (20 samples, 0.01%)</title><rect x="74.5175%" y="949" width="0.0137%" height="15" fill="rgb(246,116,27)" fg:x="109069" fg:w="20"/><text x="74.7675%" y="959.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (24 samples, 0.02%)</title><rect x="74.5537%" y="933" width="0.0164%" height="15" fill="rgb(214,193,42)" fg:x="109122" fg:w="24"/><text x="74.8037%" y="943.50"></text></g><g><title>ThreadStateTransition::transition_from_native (21 samples, 0.01%)</title><rect x="74.5701%" y="933" width="0.0143%" height="15" fill="rgb(214,122,8)" fg:x="109146" fg:w="21"/><text x="74.8201%" y="943.50"></text></g><g><title>[libc-2.31.so] (18 samples, 0.01%)</title><rect x="74.5844%" y="933" width="0.0123%" height="15" fill="rgb(244,173,18)" fg:x="109167" fg:w="18"/><text x="74.8344%" y="943.50"></text></g><g><title>jni_GetByteArrayRegion (102 samples, 0.07%)</title><rect x="74.5380%" y="949" width="0.0697%" height="15" fill="rgb(232,68,19)" fg:x="109099" fg:w="102"/><text x="74.7880%" y="959.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (16 samples, 0.01%)</title><rect x="74.6200%" y="933" width="0.0109%" height="15" fill="rgb(236,224,1)" fg:x="109219" fg:w="16"/><text x="74.8700%" y="943.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (16 samples, 0.01%)</title><rect x="74.6439%" y="933" width="0.0109%" height="15" fill="rgb(240,11,8)" fg:x="109254" fg:w="16"/><text x="74.8939%" y="943.50"></text></g><g><title>jni_GetObjectField (90 samples, 0.06%)</title><rect x="74.6077%" y="949" width="0.0615%" height="15" fill="rgb(244,159,20)" fg:x="109201" fg:w="90"/><text x="74.8577%" y="959.50"></text></g><g><title>ThreadStateTransition::transition_from_native (21 samples, 0.01%)</title><rect x="74.6548%" y="933" width="0.0143%" height="15" fill="rgb(240,223,54)" fg:x="109270" fg:w="21"/><text x="74.9048%" y="943.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (18 samples, 0.01%)</title><rect x="74.6856%" y="933" width="0.0123%" height="15" fill="rgb(237,146,5)" fg:x="109315" fg:w="18"/><text x="74.9356%" y="943.50"></text></g><g><title>jni_GetStringLength (66 samples, 0.05%)</title><rect x="74.6692%" y="949" width="0.0451%" height="15" fill="rgb(218,221,32)" fg:x="109291" fg:w="66"/><text x="74.9192%" y="959.50"></text></g><g><title>ThreadStateTransition::transition_from_native (24 samples, 0.02%)</title><rect x="74.6978%" y="933" width="0.0164%" height="15" fill="rgb(244,96,26)" fg:x="109333" fg:w="24"/><text x="74.9478%" y="943.50"></text></g><g><title>ObjAllocator::initialize (16 samples, 0.01%)</title><rect x="74.7716%" y="885" width="0.0109%" height="15" fill="rgb(245,184,37)" fg:x="109441" fg:w="16"/><text x="75.0216%" y="895.50"></text></g><g><title>InstanceKlass::allocate_instance (64 samples, 0.04%)</title><rect x="74.7464%" y="933" width="0.0437%" height="15" fill="rgb(248,91,47)" fg:x="109404" fg:w="64"/><text x="74.9964%" y="943.50"></text></g><g><title>CollectedHeap::obj_allocate (52 samples, 0.04%)</title><rect x="74.7546%" y="917" width="0.0355%" height="15" fill="rgb(243,199,8)" fg:x="109416" fg:w="52"/><text x="75.0046%" y="927.50"></text></g><g><title>MemAllocator::allocate (50 samples, 0.03%)</title><rect x="74.7559%" y="901" width="0.0342%" height="15" fill="rgb(249,12,15)" fg:x="109418" fg:w="50"/><text x="75.0059%" y="911.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (18 samples, 0.01%)</title><rect x="74.7955%" y="933" width="0.0123%" height="15" fill="rgb(245,97,12)" fg:x="109476" fg:w="18"/><text x="75.0455%" y="943.50"></text></g><g><title>ThreadStateTransition::transition_from_native (21 samples, 0.01%)</title><rect x="74.8078%" y="933" width="0.0143%" height="15" fill="rgb(244,61,1)" fg:x="109494" fg:w="21"/><text x="75.0578%" y="943.50"></text></g><g><title>alloc_object (28 samples, 0.02%)</title><rect x="74.8222%" y="933" width="0.0191%" height="15" fill="rgb(222,194,10)" fg:x="109515" fg:w="28"/><text x="75.0722%" y="943.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (61 samples, 0.04%)</title><rect x="74.8639%" y="917" width="0.0417%" height="15" fill="rgb(226,178,8)" fg:x="109576" fg:w="61"/><text x="75.1139%" y="927.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (51 samples, 0.03%)</title><rect x="74.9418%" y="901" width="0.0348%" height="15" fill="rgb(241,32,34)" fg:x="109690" fg:w="51"/><text x="75.1918%" y="911.50"></text></g><g><title>JavaCalls::call_helper (115 samples, 0.08%)</title><rect x="74.9062%" y="917" width="0.0786%" height="15" fill="rgb(254,26,6)" fg:x="109638" fg:w="115"/><text x="75.1562%" y="927.50"></text></g><g><title>jni_invoke_nonstatic (227 samples, 0.16%)</title><rect x="74.8413%" y="933" width="0.1551%" height="15" fill="rgb(249,71,11)" fg:x="109543" fg:w="227"/><text x="75.0913%" y="943.50"></text></g><g><title>jni_NewObjectV (412 samples, 0.28%)</title><rect x="74.7156%" y="949" width="0.2815%" height="15" fill="rgb(232,170,27)" fg:x="109359" fg:w="412"/><text x="74.9656%" y="959.50"></text></g><g><title>jni_NewString (18 samples, 0.01%)</title><rect x="74.9971%" y="949" width="0.0123%" height="15" fill="rgb(214,223,17)" fg:x="109771" fg:w="18"/><text x="75.2471%" y="959.50"></text></g><g><title>__GI___libc_malloc (23 samples, 0.02%)</title><rect x="75.0203%" y="933" width="0.0157%" height="15" fill="rgb(250,18,15)" fg:x="109805" fg:w="23"/><text x="75.2703%" y="943.50"></text></g><g><title>operator new (26 samples, 0.02%)</title><rect x="75.0203%" y="949" width="0.0178%" height="15" fill="rgb(212,153,51)" fg:x="109805" fg:w="26"/><text x="75.2703%" y="959.50"></text></g><g><title>[libunix_jni.so] (8,654 samples, 5.91%)</title><rect x="69.1461%" y="965" width="5.9125%" height="15" fill="rgb(219,194,12)" fg:x="101207" fg:w="8654"/><text x="69.3961%" y="975.50">[libunix..</text></g><g><title>G1BarrierSetRuntime::write_ref_array_post_entry (26 samples, 0.02%)</title><rect x="95.7497%" y="949" width="0.0178%" height="15" fill="rgb(212,58,17)" fg:x="140146" fg:w="26"/><text x="95.9997%" y="959.50"></text></g><g><title>G1BarrierSet::write_ref_array_work (17 samples, 0.01%)</title><rect x="95.7559%" y="933" width="0.0116%" height="15" fill="rgb(254,5,10)" fg:x="140155" fg:w="17"/><text x="96.0059%" y="943.50"></text></g><g><title>SystemDictionary::load_instance_class (15 samples, 0.01%)</title><rect x="95.7764%" y="885" width="0.0102%" height="15" fill="rgb(246,91,7)" fg:x="140185" fg:w="15"/><text x="96.0264%" y="895.50"></text></g><g><title>ConstantPool::klass_at_impl (27 samples, 0.02%)</title><rect x="95.7689%" y="933" width="0.0184%" height="15" fill="rgb(218,108,49)" fg:x="140174" fg:w="27"/><text x="96.0189%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_fail (26 samples, 0.02%)</title><rect x="95.7695%" y="917" width="0.0178%" height="15" fill="rgb(238,123,20)" fg:x="140175" fg:w="26"/><text x="96.0195%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (26 samples, 0.02%)</title><rect x="95.7695%" y="901" width="0.0178%" height="15" fill="rgb(231,69,23)" fg:x="140175" fg:w="26"/><text x="96.0195%" y="911.50"></text></g><g><title>Rewriter::rewrite (20 samples, 0.01%)</title><rect x="95.8180%" y="901" width="0.0137%" height="15" fill="rgb(230,209,3)" fg:x="140246" fg:w="20"/><text x="96.0680%" y="911.50"></text></g><g><title>Rewriter::Rewriter (19 samples, 0.01%)</title><rect x="95.8187%" y="885" width="0.0130%" height="15" fill="rgb(231,19,0)" fg:x="140247" fg:w="19"/><text x="96.0687%" y="895.50"></text></g><g><title>Rewriter::rewrite_bytecodes (16 samples, 0.01%)</title><rect x="95.8208%" y="869" width="0.0109%" height="15" fill="rgb(226,192,25)" fg:x="140250" fg:w="16"/><text x="96.0708%" y="879.50"></text></g><g><title>InstanceKlass::link_class_impl (73 samples, 0.05%)</title><rect x="95.7941%" y="917" width="0.0499%" height="15" fill="rgb(223,175,53)" fg:x="140211" fg:w="73"/><text x="96.0441%" y="927.50"></text></g><g><title>InstanceKlass::initialize_impl (76 samples, 0.05%)</title><rect x="95.7928%" y="933" width="0.0519%" height="15" fill="rgb(248,35,51)" fg:x="140209" fg:w="76"/><text x="96.0428%" y="943.50"></text></g><g><title>InterpreterRuntime::_new (119 samples, 0.08%)</title><rect x="95.7682%" y="949" width="0.0813%" height="15" fill="rgb(230,37,26)" fg:x="140173" fg:w="119"/><text x="96.0182%" y="959.50"></text></g><g><title>ObjArrayAllocator::initialize (15 samples, 0.01%)</title><rect x="95.8823%" y="885" width="0.0102%" height="15" fill="rgb(206,120,22)" fg:x="140340" fg:w="15"/><text x="96.1323%" y="895.50"></text></g><g><title>CollectedHeap::array_allocate (37 samples, 0.03%)</title><rect x="95.8713%" y="917" width="0.0253%" height="15" fill="rgb(207,165,28)" fg:x="140324" fg:w="37"/><text x="96.1213%" y="927.50"></text></g><g><title>MemAllocator::allocate (37 samples, 0.03%)</title><rect x="95.8713%" y="901" width="0.0253%" height="15" fill="rgb(226,23,46)" fg:x="140324" fg:w="37"/><text x="96.1213%" y="911.50"></text></g><g><title>InstanceKlass::allocate_objArray (56 samples, 0.04%)</title><rect x="95.8659%" y="933" width="0.0383%" height="15" fill="rgb(208,130,44)" fg:x="140316" fg:w="56"/><text x="96.1159%" y="943.50"></text></g><g><title>InterpreterRuntime::anewarray (84 samples, 0.06%)</title><rect x="95.8495%" y="949" width="0.0574%" height="15" fill="rgb(231,67,8)" fg:x="140292" fg:w="84"/><text x="96.0995%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="95.9082%" y="821" width="0.0102%" height="15" fill="rgb(205,183,22)" fg:x="140378" fg:w="15"/><text x="96.1582%" y="831.50"></text></g><g><title>Monitor::lock_without_safepoint_check (18 samples, 0.01%)</title><rect x="95.9069%" y="917" width="0.0123%" height="15" fill="rgb(224,47,9)" fg:x="140376" fg:w="18"/><text x="96.1569%" y="927.50"></text></g><g><title>Monitor::ILock (18 samples, 0.01%)</title><rect x="95.9069%" y="901" width="0.0123%" height="15" fill="rgb(250,183,49)" fg:x="140376" fg:w="18"/><text x="96.1569%" y="911.50"></text></g><g><title>os::PlatformEvent::park (17 samples, 0.01%)</title><rect x="95.9075%" y="885" width="0.0116%" height="15" fill="rgb(220,151,39)" fg:x="140377" fg:w="17"/><text x="96.1575%" y="895.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="95.9075%" y="869" width="0.0116%" height="15" fill="rgb(220,118,20)" fg:x="140377" fg:w="17"/><text x="96.1575%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="95.9075%" y="853" width="0.0116%" height="15" fill="rgb(231,65,51)" fg:x="140377" fg:w="17"/><text x="96.1575%" y="863.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="95.9082%" y="837" width="0.0109%" height="15" fill="rgb(253,125,37)" fg:x="140378" fg:w="16"/><text x="96.1582%" y="847.50"></text></g><g><title>InterpreterRuntime::at_safepoint (22 samples, 0.02%)</title><rect x="95.9069%" y="949" width="0.0150%" height="15" fill="rgb(232,102,6)" fg:x="140376" fg:w="22"/><text x="96.1569%" y="959.50"></text></g><g><title>SafepointSynchronize::block (22 samples, 0.02%)</title><rect x="95.9069%" y="933" width="0.0150%" height="15" fill="rgb(251,105,13)" fg:x="140376" fg:w="22"/><text x="96.1569%" y="943.50"></text></g><g><title>InterpreterRuntime::build_method_counters (17 samples, 0.01%)</title><rect x="95.9219%" y="949" width="0.0116%" height="15" fill="rgb(222,179,29)" fg:x="140398" fg:w="17"/><text x="96.1719%" y="959.50"></text></g><g><title>Method::build_method_counters (16 samples, 0.01%)</title><rect x="95.9226%" y="933" width="0.0109%" height="15" fill="rgb(229,180,53)" fg:x="140399" fg:w="16"/><text x="96.1726%" y="943.50"></text></g><g><title>JavaThread::pd_last_frame (16 samples, 0.01%)</title><rect x="95.9424%" y="917" width="0.0109%" height="15" fill="rgb(238,104,13)" fg:x="140428" fg:w="16"/><text x="96.1924%" y="927.50"></text></g><g><title>CodeCache::find_blob (16 samples, 0.01%)</title><rect x="95.9424%" y="901" width="0.0109%" height="15" fill="rgb(210,130,5)" fg:x="140428" fg:w="16"/><text x="96.1924%" y="911.50"></text></g><g><title>TieredThresholdPolicy::call_event (46 samples, 0.03%)</title><rect x="95.9718%" y="885" width="0.0314%" height="15" fill="rgb(233,87,49)" fg:x="140471" fg:w="46"/><text x="96.2218%" y="895.50"></text></g><g><title>TieredThresholdPolicy::loop_predicate (23 samples, 0.02%)</title><rect x="95.9875%" y="869" width="0.0157%" height="15" fill="rgb(243,34,9)" fg:x="140494" fg:w="23"/><text x="96.2375%" y="879.50"></text></g><g><title>CompileBroker::compile_method_base (35 samples, 0.02%)</title><rect x="96.0073%" y="837" width="0.0239%" height="15" fill="rgb(235,225,10)" fg:x="140523" fg:w="35"/><text x="96.2573%" y="847.50"></text></g><g><title>CompileBroker::compile_method (38 samples, 0.03%)</title><rect x="96.0059%" y="853" width="0.0260%" height="15" fill="rgb(212,0,30)" fg:x="140521" fg:w="38"/><text x="96.2559%" y="863.50"></text></g><g><title>TieredThresholdPolicy::compile (43 samples, 0.03%)</title><rect x="96.0032%" y="885" width="0.0294%" height="15" fill="rgb(211,177,0)" fg:x="140517" fg:w="43"/><text x="96.2532%" y="895.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (41 samples, 0.03%)</title><rect x="96.0046%" y="869" width="0.0280%" height="15" fill="rgb(225,220,11)" fg:x="140519" fg:w="41"/><text x="96.2546%" y="879.50"></text></g><g><title>TieredThresholdPolicy::event (117 samples, 0.08%)</title><rect x="95.9533%" y="917" width="0.0799%" height="15" fill="rgb(215,10,13)" fg:x="140444" fg:w="117"/><text x="96.2033%" y="927.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (105 samples, 0.07%)</title><rect x="95.9615%" y="901" width="0.0717%" height="15" fill="rgb(240,177,14)" fg:x="140456" fg:w="105"/><text x="96.2115%" y="911.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (144 samples, 0.10%)</title><rect x="95.9369%" y="933" width="0.0984%" height="15" fill="rgb(243,7,39)" fg:x="140420" fg:w="144"/><text x="96.1869%" y="943.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (147 samples, 0.10%)</title><rect x="95.9356%" y="949" width="0.1004%" height="15" fill="rgb(212,99,0)" fg:x="140418" fg:w="147"/><text x="96.1856%" y="959.50"></text></g><g><title>JavaThread::pd_last_frame (27 samples, 0.02%)</title><rect x="96.0592%" y="933" width="0.0184%" height="15" fill="rgb(225,162,48)" fg:x="140599" fg:w="27"/><text x="96.3092%" y="943.50"></text></g><g><title>CodeCache::find_blob (24 samples, 0.02%)</title><rect x="96.0613%" y="917" width="0.0164%" height="15" fill="rgb(246,16,25)" fg:x="140602" fg:w="24"/><text x="96.3113%" y="927.50"></text></g><g><title>InterpreterRuntime::ldc (69 samples, 0.05%)</title><rect x="96.0360%" y="949" width="0.0471%" height="15" fill="rgb(220,150,2)" fg:x="140565" fg:w="69"/><text x="96.2860%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.02%)</title><rect x="96.0872%" y="645" width="0.0212%" height="15" fill="rgb(237,113,11)" fg:x="140640" fg:w="31"/><text x="96.3372%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.02%)</title><rect x="96.0872%" y="629" width="0.0212%" height="15" fill="rgb(236,70,20)" fg:x="140640" fg:w="31"/><text x="96.3372%" y="639.50"></text></g><g><title>native_write_msr (31 samples, 0.02%)</title><rect x="96.0872%" y="613" width="0.0212%" height="15" fill="rgb(234,94,7)" fg:x="140640" fg:w="31"/><text x="96.3372%" y="623.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="96.0852%" y="773" width="0.0239%" height="15" fill="rgb(250,221,0)" fg:x="140637" fg:w="35"/><text x="96.3352%" y="783.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="96.0852%" y="757" width="0.0239%" height="15" fill="rgb(245,149,46)" fg:x="140637" fg:w="35"/><text x="96.3352%" y="767.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="96.0852%" y="741" width="0.0239%" height="15" fill="rgb(215,37,27)" fg:x="140637" fg:w="35"/><text x="96.3352%" y="751.50"></text></g><g><title>futex_wait (34 samples, 0.02%)</title><rect x="96.0859%" y="725" width="0.0232%" height="15" fill="rgb(232,65,3)" fg:x="140638" fg:w="34"/><text x="96.3359%" y="735.50"></text></g><g><title>futex_wait_queue_me (33 samples, 0.02%)</title><rect x="96.0865%" y="709" width="0.0225%" height="15" fill="rgb(214,2,16)" fg:x="140639" fg:w="33"/><text x="96.3365%" y="719.50"></text></g><g><title>schedule (32 samples, 0.02%)</title><rect x="96.0872%" y="693" width="0.0219%" height="15" fill="rgb(227,131,50)" fg:x="140640" fg:w="32"/><text x="96.3372%" y="703.50"></text></g><g><title>__schedule (32 samples, 0.02%)</title><rect x="96.0872%" y="677" width="0.0219%" height="15" fill="rgb(247,131,45)" fg:x="140640" fg:w="32"/><text x="96.3372%" y="687.50"></text></g><g><title>finish_task_switch (32 samples, 0.02%)</title><rect x="96.0872%" y="661" width="0.0219%" height="15" fill="rgb(215,97,47)" fg:x="140640" fg:w="32"/><text x="96.3372%" y="671.50"></text></g><g><title>Monitor::IWait (36 samples, 0.02%)</title><rect x="96.0852%" y="869" width="0.0246%" height="15" fill="rgb(233,143,12)" fg:x="140637" fg:w="36"/><text x="96.3352%" y="879.50"></text></g><g><title>os::PlatformEvent::park (36 samples, 0.02%)</title><rect x="96.0852%" y="853" width="0.0246%" height="15" fill="rgb(222,57,17)" fg:x="140637" fg:w="36"/><text x="96.3352%" y="863.50"></text></g><g><title>__pthread_cond_wait (36 samples, 0.02%)</title><rect x="96.0852%" y="837" width="0.0246%" height="15" fill="rgb(214,119,38)" fg:x="140637" fg:w="36"/><text x="96.3352%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.02%)</title><rect x="96.0852%" y="821" width="0.0246%" height="15" fill="rgb(217,28,47)" fg:x="140637" fg:w="36"/><text x="96.3352%" y="831.50"></text></g><g><title>futex_wait_cancelable (36 samples, 0.02%)</title><rect x="96.0852%" y="805" width="0.0246%" height="15" fill="rgb(231,14,52)" fg:x="140637" fg:w="36"/><text x="96.3352%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="96.0852%" y="789" width="0.0246%" height="15" fill="rgb(220,158,18)" fg:x="140637" fg:w="36"/><text x="96.3352%" y="799.50"></text></g><g><title>Monitor::wait (37 samples, 0.03%)</title><rect x="96.0852%" y="885" width="0.0253%" height="15" fill="rgb(222,143,46)" fg:x="140637" fg:w="37"/><text x="96.3352%" y="895.50"></text></g><g><title>InterpreterRuntime::monitorenter (42 samples, 0.03%)</title><rect x="96.0831%" y="949" width="0.0287%" height="15" fill="rgb(227,165,5)" fg:x="140634" fg:w="42"/><text x="96.3331%" y="959.50"></text></g><g><title>ObjectSynchronizer::fast_enter (39 samples, 0.03%)</title><rect x="96.0852%" y="933" width="0.0266%" height="15" fill="rgb(216,222,49)" fg:x="140637" fg:w="39"/><text x="96.3352%" y="943.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (39 samples, 0.03%)</title><rect x="96.0852%" y="917" width="0.0266%" height="15" fill="rgb(238,73,39)" fg:x="140637" fg:w="39"/><text x="96.3352%" y="927.50"></text></g><g><title>VMThread::execute (39 samples, 0.03%)</title><rect x="96.0852%" y="901" width="0.0266%" height="15" fill="rgb(252,115,9)" fg:x="140637" fg:w="39"/><text x="96.3352%" y="911.50"></text></g><g><title>InterpreterRuntime::newarray (16 samples, 0.01%)</title><rect x="96.1118%" y="949" width="0.0109%" height="15" fill="rgb(238,202,4)" fg:x="140676" fg:w="16"/><text x="96.3618%" y="959.50"></text></g><g><title>LinkResolver::resolve_field_access (20 samples, 0.01%)</title><rect x="96.1364%" y="917" width="0.0137%" height="15" fill="rgb(252,153,44)" fg:x="140712" fg:w="20"/><text x="96.3864%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (27 samples, 0.02%)</title><rect x="96.1323%" y="933" width="0.0184%" height="15" fill="rgb(235,128,27)" fg:x="140706" fg:w="27"/><text x="96.3823%" y="943.50"></text></g><g><title>ConstantPoolCacheEntry::set_direct_call (15 samples, 0.01%)</title><rect x="96.1603%" y="917" width="0.0102%" height="15" fill="rgb(221,121,47)" fg:x="140747" fg:w="15"/><text x="96.4103%" y="927.50"></text></g><g><title>SystemDictionary::resolve_or_fail (33 samples, 0.02%)</title><rect x="96.1890%" y="885" width="0.0225%" height="15" fill="rgb(247,211,47)" fg:x="140789" fg:w="33"/><text x="96.4390%" y="895.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (32 samples, 0.02%)</title><rect x="96.1897%" y="869" width="0.0219%" height="15" fill="rgb(252,47,49)" fg:x="140790" fg:w="32"/><text x="96.4397%" y="879.50"></text></g><g><title>ConstantPool::klass_ref_at (38 samples, 0.03%)</title><rect x="96.1870%" y="901" width="0.0260%" height="15" fill="rgb(219,119,53)" fg:x="140786" fg:w="38"/><text x="96.4370%" y="911.50"></text></g><g><title>LinkResolver::linktime_resolve_special_method (17 samples, 0.01%)</title><rect x="96.2129%" y="901" width="0.0116%" height="15" fill="rgb(243,165,53)" fg:x="140824" fg:w="17"/><text x="96.4629%" y="911.50"></text></g><g><title>LinkResolver::runtime_resolve_interface_method (19 samples, 0.01%)</title><rect x="96.2375%" y="885" width="0.0130%" height="15" fill="rgb(230,12,35)" fg:x="140860" fg:w="19"/><text x="96.4875%" y="895.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (39 samples, 0.03%)</title><rect x="96.2246%" y="901" width="0.0266%" height="15" fill="rgb(239,57,49)" fg:x="140841" fg:w="39"/><text x="96.4746%" y="911.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (27 samples, 0.02%)</title><rect x="96.2621%" y="885" width="0.0184%" height="15" fill="rgb(231,154,7)" fg:x="140896" fg:w="27"/><text x="96.5121%" y="895.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (17 samples, 0.01%)</title><rect x="96.2690%" y="869" width="0.0116%" height="15" fill="rgb(248,81,34)" fg:x="140906" fg:w="17"/><text x="96.5190%" y="879.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (17 samples, 0.01%)</title><rect x="96.2690%" y="853" width="0.0116%" height="15" fill="rgb(247,9,5)" fg:x="140906" fg:w="17"/><text x="96.5190%" y="863.50"></text></g><g><title>InstanceKlass::find_method_index (17 samples, 0.01%)</title><rect x="96.2690%" y="837" width="0.0116%" height="15" fill="rgb(228,172,27)" fg:x="140906" fg:w="17"/><text x="96.5190%" y="847.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (46 samples, 0.03%)</title><rect x="96.2512%" y="901" width="0.0314%" height="15" fill="rgb(230,57,44)" fg:x="140880" fg:w="46"/><text x="96.5012%" y="911.50"></text></g><g><title>Rewriter::rewrite (15 samples, 0.01%)</title><rect x="96.2915%" y="853" width="0.0102%" height="15" fill="rgb(249,35,22)" fg:x="140939" fg:w="15"/><text x="96.5415%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (30 samples, 0.02%)</title><rect x="96.2840%" y="885" width="0.0205%" height="15" fill="rgb(250,137,27)" fg:x="140928" fg:w="30"/><text x="96.5340%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (29 samples, 0.02%)</title><rect x="96.2847%" y="869" width="0.0198%" height="15" fill="rgb(251,57,31)" fg:x="140929" fg:w="29"/><text x="96.5347%" y="879.50"></text></g><g><title>LinkResolver::resolve_static_call (46 samples, 0.03%)</title><rect x="96.2826%" y="901" width="0.0314%" height="15" fill="rgb(238,60,0)" fg:x="140926" fg:w="46"/><text x="96.5326%" y="911.50"></text></g><g><title>LinkResolver::resolve_invoke (192 samples, 0.13%)</title><rect x="96.1849%" y="917" width="0.1312%" height="15" fill="rgb(242,185,39)" fg:x="140783" fg:w="192"/><text x="96.4349%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (258 samples, 0.18%)</title><rect x="96.1508%" y="933" width="0.1763%" height="15" fill="rgb(240,63,43)" fg:x="140733" fg:w="258"/><text x="96.4008%" y="943.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (28 samples, 0.02%)</title><rect x="96.3291%" y="869" width="0.0191%" height="15" fill="rgb(236,155,6)" fg:x="140994" fg:w="28"/><text x="96.5791%" y="879.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (27 samples, 0.02%)</title><rect x="96.3298%" y="853" width="0.0184%" height="15" fill="rgb(215,11,29)" fg:x="140995" fg:w="27"/><text x="96.5798%" y="863.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (17 samples, 0.01%)</title><rect x="96.3366%" y="837" width="0.0116%" height="15" fill="rgb(228,180,48)" fg:x="141005" fg:w="17"/><text x="96.5866%" y="847.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (36 samples, 0.02%)</title><rect x="96.3284%" y="885" width="0.0246%" height="15" fill="rgb(241,102,12)" fg:x="140993" fg:w="36"/><text x="96.5784%" y="895.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (51 samples, 0.03%)</title><rect x="96.3270%" y="933" width="0.0348%" height="15" fill="rgb(246,213,4)" fg:x="140991" fg:w="51"/><text x="96.5770%" y="943.50"></text></g><g><title>LinkResolver::resolve_invoke (49 samples, 0.03%)</title><rect x="96.3284%" y="917" width="0.0335%" height="15" fill="rgb(218,134,35)" fg:x="140993" fg:w="49"/><text x="96.5784%" y="927.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (49 samples, 0.03%)</title><rect x="96.3284%" y="901" width="0.0335%" height="15" fill="rgb(251,117,35)" fg:x="140993" fg:w="49"/><text x="96.5784%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (342 samples, 0.23%)</title><rect x="96.1289%" y="949" width="0.2337%" height="15" fill="rgb(206,156,45)" fg:x="140701" fg:w="342"/><text x="96.3789%" y="959.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (15 samples, 0.01%)</title><rect x="96.3626%" y="949" width="0.0102%" height="15" fill="rgb(218,52,27)" fg:x="141043" fg:w="15"/><text x="96.6126%" y="959.50"></text></g><g><title>JVM_Clone (30 samples, 0.02%)</title><rect x="96.3776%" y="949" width="0.0205%" height="15" fill="rgb(238,83,36)" fg:x="141065" fg:w="30"/><text x="96.6276%" y="959.50"></text></g><g><title>JVM_FindLoadedClass (21 samples, 0.01%)</title><rect x="96.4118%" y="949" width="0.0143%" height="15" fill="rgb(218,53,43)" fg:x="141115" fg:w="21"/><text x="96.6618%" y="959.50"></text></g><g><title>JVM_GetCallerClass (23 samples, 0.02%)</title><rect x="96.4268%" y="949" width="0.0157%" height="15" fill="rgb(239,54,39)" fg:x="141137" fg:w="23"/><text x="96.6768%" y="959.50"></text></g><g><title>get_parameter_types (21 samples, 0.01%)</title><rect x="96.4630%" y="901" width="0.0143%" height="15" fill="rgb(212,198,13)" fg:x="141190" fg:w="21"/><text x="96.7130%" y="911.50"></text></g><g><title>JVM_GetClassDeclaredMethods (40 samples, 0.03%)</title><rect x="96.4514%" y="949" width="0.0273%" height="15" fill="rgb(234,54,46)" fg:x="141173" fg:w="40"/><text x="96.7014%" y="959.50"></text></g><g><title>get_class_declared_methods_helper (39 samples, 0.03%)</title><rect x="96.4521%" y="933" width="0.0266%" height="15" fill="rgb(217,120,7)" fg:x="141174" fg:w="39"/><text x="96.7021%" y="943.50"></text></g><g><title>Reflection::new_method (34 samples, 0.02%)</title><rect x="96.4555%" y="917" width="0.0232%" height="15" fill="rgb(246,39,15)" fg:x="141179" fg:w="34"/><text x="96.7055%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="96.4992%" y="645" width="0.0123%" height="15" fill="rgb(242,143,31)" fg:x="141243" fg:w="18"/><text x="96.7492%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="96.4992%" y="629" width="0.0123%" height="15" fill="rgb(252,60,24)" fg:x="141243" fg:w="18"/><text x="96.7492%" y="639.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="96.4999%" y="613" width="0.0116%" height="15" fill="rgb(249,220,7)" fg:x="141244" fg:w="17"/><text x="96.7499%" y="623.50"></text></g><g><title>Monitor::IWait (23 samples, 0.02%)</title><rect x="96.4965%" y="869" width="0.0157%" height="15" fill="rgb(236,67,13)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="879.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.02%)</title><rect x="96.4965%" y="853" width="0.0157%" height="15" fill="rgb(210,62,39)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="863.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.02%)</title><rect x="96.4965%" y="837" width="0.0157%" height="15" fill="rgb(219,122,53)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.02%)</title><rect x="96.4965%" y="821" width="0.0157%" height="15" fill="rgb(218,87,25)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="831.50"></text></g><g><title>futex_wait_cancelable (23 samples, 0.02%)</title><rect x="96.4965%" y="805" width="0.0157%" height="15" fill="rgb(234,179,48)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="96.4965%" y="789" width="0.0157%" height="15" fill="rgb(248,90,0)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="799.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="96.4965%" y="773" width="0.0157%" height="15" fill="rgb(207,228,37)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="783.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="96.4965%" y="757" width="0.0157%" height="15" fill="rgb(235,214,15)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="767.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="96.4965%" y="741" width="0.0157%" height="15" fill="rgb(210,144,39)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="751.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="96.4965%" y="725" width="0.0157%" height="15" fill="rgb(222,67,41)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="735.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="96.4965%" y="709" width="0.0157%" height="15" fill="rgb(205,35,37)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="719.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="96.4965%" y="693" width="0.0157%" height="15" fill="rgb(216,125,40)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="703.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="96.4965%" y="677" width="0.0157%" height="15" fill="rgb(228,227,20)" fg:x="141239" fg:w="23"/><text x="96.7465%" y="687.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="96.4985%" y="661" width="0.0137%" height="15" fill="rgb(242,173,45)" fg:x="141242" fg:w="20"/><text x="96.7485%" y="671.50"></text></g><g><title>Monitor::wait (24 samples, 0.02%)</title><rect x="96.4965%" y="885" width="0.0164%" height="15" fill="rgb(215,79,24)" fg:x="141239" fg:w="24"/><text x="96.7465%" y="895.50"></text></g><g><title>VMThread::execute (34 samples, 0.02%)</title><rect x="96.4917%" y="901" width="0.0232%" height="15" fill="rgb(238,164,38)" fg:x="141232" fg:w="34"/><text x="96.7417%" y="911.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (38 samples, 0.03%)</title><rect x="96.4903%" y="917" width="0.0260%" height="15" fill="rgb(245,196,38)" fg:x="141230" fg:w="38"/><text x="96.7403%" y="927.50"></text></g><g><title>JVM_IHashCode (48 samples, 0.03%)</title><rect x="96.4842%" y="949" width="0.0328%" height="15" fill="rgb(231,217,29)" fg:x="141221" fg:w="48"/><text x="96.7342%" y="959.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (46 samples, 0.03%)</title><rect x="96.4855%" y="933" width="0.0314%" height="15" fill="rgb(245,6,4)" fg:x="141223" fg:w="46"/><text x="96.7355%" y="943.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (17 samples, 0.01%)</title><rect x="96.5279%" y="917" width="0.0116%" height="15" fill="rgb(214,76,49)" fg:x="141285" fg:w="17"/><text x="96.7779%" y="927.50"></text></g><g><title>JVM_InitStackTraceElementArray (20 samples, 0.01%)</title><rect x="96.5265%" y="949" width="0.0137%" height="15" fill="rgb(205,96,12)" fg:x="141283" fg:w="20"/><text x="96.7765%" y="959.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (20 samples, 0.01%)</title><rect x="96.5265%" y="933" width="0.0137%" height="15" fill="rgb(243,131,4)" fg:x="141283" fg:w="20"/><text x="96.7765%" y="943.50"></text></g><g><title>JVM_IsInterrupted (25 samples, 0.02%)</title><rect x="96.5552%" y="949" width="0.0171%" height="15" fill="rgb(214,114,4)" fg:x="141325" fg:w="25"/><text x="96.8052%" y="959.50"></text></g><g><title>JVM_StartThread (28 samples, 0.02%)</title><rect x="96.5853%" y="949" width="0.0191%" height="15" fill="rgb(234,215,15)" fg:x="141369" fg:w="28"/><text x="96.8353%" y="959.50"></text></g><g><title>SymbolTable::add (17 samples, 0.01%)</title><rect x="96.6413%" y="805" width="0.0116%" height="15" fill="rgb(250,216,45)" fg:x="141451" fg:w="17"/><text x="96.8913%" y="815.50"></text></g><g><title>SymbolTable::basic_add (16 samples, 0.01%)</title><rect x="96.6420%" y="789" width="0.0109%" height="15" fill="rgb(236,128,4)" fg:x="141452" fg:w="16"/><text x="96.8920%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (272 samples, 0.19%)</title><rect x="96.6529%" y="805" width="0.1858%" height="15" fill="rgb(234,50,33)" fg:x="141468" fg:w="272"/><text x="96.9029%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (298 samples, 0.20%)</title><rect x="96.6359%" y="821" width="0.2036%" height="15" fill="rgb(253,131,37)" fg:x="141443" fg:w="298"/><text x="96.8859%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool (304 samples, 0.21%)</title><rect x="96.6324%" y="837" width="0.2077%" height="15" fill="rgb(218,55,27)" fg:x="141438" fg:w="304"/><text x="96.8824%" y="847.50"></text></g><g><title>Method::allocate (18 samples, 0.01%)</title><rect x="96.8722%" y="805" width="0.0123%" height="15" fill="rgb(241,220,28)" fg:x="141789" fg:w="18"/><text x="97.1222%" y="815.50"></text></g><g><title>ClassFileParser::parse_method (69 samples, 0.05%)</title><rect x="96.8470%" y="821" width="0.0471%" height="15" fill="rgb(241,90,48)" fg:x="141752" fg:w="69"/><text x="97.0970%" y="831.50"></text></g><g><title>ClassFileParser::parse_methods (71 samples, 0.05%)</title><rect x="96.8470%" y="837" width="0.0485%" height="15" fill="rgb(216,43,37)" fg:x="141752" fg:w="71"/><text x="97.0970%" y="847.50"></text></g><g><title>Metaspace::allocate (17 samples, 0.01%)</title><rect x="96.8955%" y="821" width="0.0116%" height="15" fill="rgb(207,173,9)" fg:x="141823" fg:w="17"/><text x="97.1455%" y="831.50"></text></g><g><title>ConstantPool::allocate (18 samples, 0.01%)</title><rect x="96.8955%" y="837" width="0.0123%" height="15" fill="rgb(240,126,30)" fg:x="141823" fg:w="18"/><text x="97.1455%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (411 samples, 0.28%)</title><rect x="96.6277%" y="869" width="0.2808%" height="15" fill="rgb(228,178,53)" fg:x="141431" fg:w="411"/><text x="96.8777%" y="879.50"></text></g><g><title>ClassFileParser::parse_stream (410 samples, 0.28%)</title><rect x="96.6283%" y="853" width="0.2801%" height="15" fill="rgb(217,33,4)" fg:x="141432" fg:w="410"/><text x="96.8783%" y="863.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (26 samples, 0.02%)</title><rect x="96.9201%" y="821" width="0.0178%" height="15" fill="rgb(206,124,34)" fg:x="141859" fg:w="26"/><text x="97.1701%" y="831.50"></text></g><g><title>DefaultMethods::generate_default_methods (42 samples, 0.03%)</title><rect x="96.9132%" y="837" width="0.0287%" height="15" fill="rgb(208,122,53)" fg:x="141849" fg:w="42"/><text x="97.1632%" y="847.50"></text></g><g><title>ClassFileParser::fill_instance_klass (67 samples, 0.05%)</title><rect x="96.9085%" y="853" width="0.0458%" height="15" fill="rgb(215,202,26)" fg:x="141842" fg:w="67"/><text x="97.1585%" y="863.50"></text></g><g><title>ClassFileParser::create_instance_klass (70 samples, 0.05%)</title><rect x="96.9085%" y="869" width="0.0478%" height="15" fill="rgb(232,198,31)" fg:x="141842" fg:w="70"/><text x="97.1585%" y="879.50"></text></g><g><title>KlassFactory::create_from_stream (504 samples, 0.34%)</title><rect x="96.6270%" y="885" width="0.3443%" height="15" fill="rgb(222,23,35)" fg:x="141430" fg:w="504"/><text x="96.8770%" y="895.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (22 samples, 0.02%)</title><rect x="96.9563%" y="869" width="0.0150%" height="15" fill="rgb(242,27,53)" fg:x="141912" fg:w="22"/><text x="97.2063%" y="879.50"></text></g><g><title>Monitor::lock (16 samples, 0.01%)</title><rect x="96.9795%" y="853" width="0.0109%" height="15" fill="rgb(210,216,42)" fg:x="141946" fg:w="16"/><text x="97.2295%" y="863.50"></text></g><g><title>Monitor::ILock (15 samples, 0.01%)</title><rect x="96.9802%" y="837" width="0.0102%" height="15" fill="rgb(234,39,38)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="847.50"></text></g><g><title>os::PlatformEvent::park (15 samples, 0.01%)</title><rect x="96.9802%" y="821" width="0.0102%" height="15" fill="rgb(235,126,54)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="831.50"></text></g><g><title>__pthread_cond_wait (15 samples, 0.01%)</title><rect x="96.9802%" y="805" width="0.0102%" height="15" fill="rgb(235,150,33)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (15 samples, 0.01%)</title><rect x="96.9802%" y="789" width="0.0102%" height="15" fill="rgb(249,49,53)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="799.50"></text></g><g><title>futex_wait_cancelable (15 samples, 0.01%)</title><rect x="96.9802%" y="773" width="0.0102%" height="15" fill="rgb(238,60,50)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="96.9802%" y="757" width="0.0102%" height="15" fill="rgb(210,5,2)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="767.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="96.9802%" y="741" width="0.0102%" height="15" fill="rgb(214,207,24)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="751.50"></text></g><g><title>__x64_sys_futex (15 samples, 0.01%)</title><rect x="96.9802%" y="725" width="0.0102%" height="15" fill="rgb(228,173,2)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="735.50"></text></g><g><title>do_futex (15 samples, 0.01%)</title><rect x="96.9802%" y="709" width="0.0102%" height="15" fill="rgb(244,26,8)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="719.50"></text></g><g><title>futex_wait (15 samples, 0.01%)</title><rect x="96.9802%" y="693" width="0.0102%" height="15" fill="rgb(249,153,35)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="703.50"></text></g><g><title>futex_wait_queue_me (15 samples, 0.01%)</title><rect x="96.9802%" y="677" width="0.0102%" height="15" fill="rgb(221,215,40)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="687.50"></text></g><g><title>schedule (15 samples, 0.01%)</title><rect x="96.9802%" y="661" width="0.0102%" height="15" fill="rgb(238,106,35)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="671.50"></text></g><g><title>__schedule (15 samples, 0.01%)</title><rect x="96.9802%" y="645" width="0.0102%" height="15" fill="rgb(207,195,21)" fg:x="141947" fg:w="15"/><text x="97.2302%" y="655.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (30 samples, 0.02%)</title><rect x="96.9720%" y="885" width="0.0205%" height="15" fill="rgb(205,43,29)" fg:x="141935" fg:w="30"/><text x="97.2220%" y="895.50"></text></g><g><title>SystemDictionary::define_instance_class (28 samples, 0.02%)</title><rect x="96.9734%" y="869" width="0.0191%" height="15" fill="rgb(236,35,21)" fg:x="141937" fg:w="28"/><text x="97.2234%" y="879.50"></text></g><g><title>JVM_DefineClassWithSource (545 samples, 0.37%)</title><rect x="96.6208%" y="933" width="0.3724%" height="15" fill="rgb(244,74,8)" fg:x="141421" fg:w="545"/><text x="96.8708%" y="943.50"></text></g><g><title>jvm_define_class_common (544 samples, 0.37%)</title><rect x="96.6215%" y="917" width="0.3717%" height="15" fill="rgb(241,229,7)" fg:x="141422" fg:w="544"/><text x="96.8715%" y="927.50"></text></g><g><title>SystemDictionary::resolve_from_stream (536 samples, 0.37%)</title><rect x="96.6270%" y="901" width="0.3662%" height="15" fill="rgb(212,223,25)" fg:x="141430" fg:w="536"/><text x="96.8770%" y="911.50"></text></g><g><title>__GI___libc_malloc (16 samples, 0.01%)</title><rect x="96.9952%" y="933" width="0.0109%" height="15" fill="rgb(234,58,53)" fg:x="141969" fg:w="16"/><text x="97.2452%" y="943.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (574 samples, 0.39%)</title><rect x="96.6201%" y="949" width="0.3922%" height="15" fill="rgb(244,36,1)" fg:x="141420" fg:w="574"/><text x="96.8701%" y="959.50"></text></g><g><title>JVM_FindClassFromBootLoader (28 samples, 0.02%)</title><rect x="97.0130%" y="933" width="0.0191%" height="15" fill="rgb(222,40,54)" fg:x="141995" fg:w="28"/><text x="97.2630%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_null (26 samples, 0.02%)</title><rect x="97.0144%" y="917" width="0.0178%" height="15" fill="rgb(210,207,39)" fg:x="141997" fg:w="26"/><text x="97.2644%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (25 samples, 0.02%)</title><rect x="97.0150%" y="901" width="0.0171%" height="15" fill="rgb(234,52,14)" fg:x="141998" fg:w="25"/><text x="97.2650%" y="911.50"></text></g><g><title>SystemDictionary::load_instance_class (21 samples, 0.01%)</title><rect x="97.0178%" y="885" width="0.0143%" height="15" fill="rgb(239,108,46)" fg:x="142002" fg:w="21"/><text x="97.2678%" y="895.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (36 samples, 0.02%)</title><rect x="97.0123%" y="949" width="0.0246%" height="15" fill="rgb(252,223,5)" fg:x="141994" fg:w="36"/><text x="97.2623%" y="959.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (21 samples, 0.01%)</title><rect x="97.0492%" y="949" width="0.0143%" height="15" fill="rgb(227,181,11)" fg:x="142048" fg:w="21"/><text x="97.2992%" y="959.50"></text></g><g><title>os_getParentPidAndTimings (21 samples, 0.01%)</title><rect x="97.0492%" y="933" width="0.0143%" height="15" fill="rgb(248,126,40)" fg:x="142048" fg:w="21"/><text x="97.2992%" y="943.50"></text></g><g><title>copy_process (25 samples, 0.02%)</title><rect x="97.0799%" y="837" width="0.0171%" height="15" fill="rgb(243,1,18)" fg:x="142093" fg:w="25"/><text x="97.3299%" y="847.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="97.0793%" y="885" width="0.0191%" height="15" fill="rgb(214,145,23)" fg:x="142092" fg:w="28"/><text x="97.3293%" y="895.50"></text></g><g><title>__x64_sys_vfork (28 samples, 0.02%)</title><rect x="97.0793%" y="869" width="0.0191%" height="15" fill="rgb(241,218,11)" fg:x="142092" fg:w="28"/><text x="97.3293%" y="879.50"></text></g><g><title>kernel_clone (28 samples, 0.02%)</title><rect x="97.0793%" y="853" width="0.0191%" height="15" fill="rgb(214,219,24)" fg:x="142092" fg:w="28"/><text x="97.3293%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.02%)</title><rect x="97.0793%" y="901" width="0.0198%" height="15" fill="rgb(235,32,7)" fg:x="142092" fg:w="29"/><text x="97.3293%" y="911.50"></text></g><g><title>calculate_sigpending (36 samples, 0.02%)</title><rect x="97.0991%" y="885" width="0.0246%" height="15" fill="rgb(227,121,28)" fg:x="142121" fg:w="36"/><text x="97.3491%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (477 samples, 0.33%)</title><rect x="97.1380%" y="853" width="0.3259%" height="15" fill="rgb(216,129,49)" fg:x="142178" fg:w="477"/><text x="97.3880%" y="863.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (473 samples, 0.32%)</title><rect x="97.1407%" y="837" width="0.3232%" height="15" fill="rgb(207,194,50)" fg:x="142182" fg:w="473"/><text x="97.3907%" y="847.50"></text></g><g><title>native_write_msr (473 samples, 0.32%)</title><rect x="97.1407%" y="821" width="0.3232%" height="15" fill="rgb(207,4,18)" fg:x="142182" fg:w="473"/><text x="97.3907%" y="831.50"></text></g><g><title>__libc_vfork (572 samples, 0.39%)</title><rect x="97.0779%" y="917" width="0.3908%" height="15" fill="rgb(213,50,30)" fg:x="142090" fg:w="572"/><text x="97.3279%" y="927.50"></text></g><g><title>ret_from_fork (541 samples, 0.37%)</title><rect x="97.0991%" y="901" width="0.3696%" height="15" fill="rgb(208,77,22)" fg:x="142121" fg:w="541"/><text x="97.3491%" y="911.50"></text></g><g><title>schedule_tail (505 samples, 0.35%)</title><rect x="97.1237%" y="885" width="0.3450%" height="15" fill="rgb(244,204,34)" fg:x="142157" fg:w="505"/><text x="97.3737%" y="895.50"></text></g><g><title>finish_task_switch (500 samples, 0.34%)</title><rect x="97.1271%" y="869" width="0.3416%" height="15" fill="rgb(230,20,17)" fg:x="142162" fg:w="500"/><text x="97.3771%" y="879.50"></text></g><g><title>do_open_execat (28 samples, 0.02%)</title><rect x="97.4776%" y="789" width="0.0191%" height="15" fill="rgb(237,83,15)" fg:x="142675" fg:w="28"/><text x="97.7276%" y="799.50"></text></g><g><title>do_filp_open (28 samples, 0.02%)</title><rect x="97.4776%" y="773" width="0.0191%" height="15" fill="rgb(221,109,25)" fg:x="142675" fg:w="28"/><text x="97.7276%" y="783.50"></text></g><g><title>path_openat (28 samples, 0.02%)</title><rect x="97.4776%" y="757" width="0.0191%" height="15" fill="rgb(205,194,52)" fg:x="142675" fg:w="28"/><text x="97.7276%" y="767.50"></text></g><g><title>btrfs_lookup_xattr (16 samples, 0.01%)</title><rect x="97.5076%" y="677" width="0.0109%" height="15" fill="rgb(244,173,54)" fg:x="142719" fg:w="16"/><text x="97.7576%" y="687.50"></text></g><g><title>security_bprm_creds_from_file (20 samples, 0.01%)</title><rect x="97.5063%" y="757" width="0.0137%" height="15" fill="rgb(227,181,18)" fg:x="142717" fg:w="20"/><text x="97.7563%" y="767.50"></text></g><g><title>cap_bprm_creds_from_file (20 samples, 0.01%)</title><rect x="97.5063%" y="741" width="0.0137%" height="15" fill="rgb(238,36,30)" fg:x="142717" fg:w="20"/><text x="97.7563%" y="751.50"></text></g><g><title>get_vfs_caps_from_disk (20 samples, 0.01%)</title><rect x="97.5063%" y="725" width="0.0137%" height="15" fill="rgb(254,85,0)" fg:x="142717" fg:w="20"/><text x="97.7563%" y="735.50"></text></g><g><title>__vfs_getxattr (20 samples, 0.01%)</title><rect x="97.5063%" y="709" width="0.0137%" height="15" fill="rgb(247,63,33)" fg:x="142717" fg:w="20"/><text x="97.7563%" y="719.50"></text></g><g><title>btrfs_getxattr (20 samples, 0.01%)</title><rect x="97.5063%" y="693" width="0.0137%" height="15" fill="rgb(220,7,54)" fg:x="142717" fg:w="20"/><text x="97.7563%" y="703.50"></text></g><g><title>begin_new_exec (35 samples, 0.02%)</title><rect x="97.4967%" y="773" width="0.0239%" height="15" fill="rgb(238,227,21)" fg:x="142703" fg:w="35"/><text x="97.7467%" y="783.50"></text></g><g><title>load_elf_binary (41 samples, 0.03%)</title><rect x="97.4967%" y="789" width="0.0280%" height="15" fill="rgb(237,29,31)" fg:x="142703" fg:w="41"/><text x="97.7467%" y="799.50"></text></g><g><title>select_task_rq_fair (15 samples, 0.01%)</title><rect x="97.5322%" y="773" width="0.0102%" height="15" fill="rgb(211,21,50)" fg:x="142755" fg:w="15"/><text x="97.7822%" y="783.50"></text></g><g><title>sched_exec (28 samples, 0.02%)</title><rect x="97.5315%" y="789" width="0.0191%" height="15" fill="rgb(239,119,2)" fg:x="142754" fg:w="28"/><text x="97.7815%" y="799.50"></text></g><g><title>bprm_execve (159 samples, 0.11%)</title><rect x="97.4721%" y="805" width="0.1086%" height="15" fill="rgb(250,2,39)" fg:x="142667" fg:w="159"/><text x="97.7221%" y="815.50"></text></g><g><title>security_bprm_creds_for_exec (41 samples, 0.03%)</title><rect x="97.5527%" y="789" width="0.0280%" height="15" fill="rgb(244,46,53)" fg:x="142785" fg:w="41"/><text x="97.8027%" y="799.50"></text></g><g><title>apparmor_bprm_creds_for_exec (40 samples, 0.03%)</title><rect x="97.5534%" y="773" width="0.0273%" height="15" fill="rgb(209,21,19)" fg:x="142786" fg:w="40"/><text x="97.8034%" y="783.50"></text></g><g><title>profile_transition (31 samples, 0.02%)</title><rect x="97.5596%" y="757" width="0.0212%" height="15" fill="rgb(236,145,4)" fg:x="142795" fg:w="31"/><text x="97.8096%" y="767.50"></text></g><g><title>find_attach (23 samples, 0.02%)</title><rect x="97.5650%" y="741" width="0.0157%" height="15" fill="rgb(220,133,36)" fg:x="142803" fg:w="23"/><text x="97.8150%" y="751.50"></text></g><g><title>copy_string_kernel (16 samples, 0.01%)</title><rect x="97.5807%" y="805" width="0.0109%" height="15" fill="rgb(244,18,3)" fg:x="142826" fg:w="16"/><text x="97.8307%" y="815.50"></text></g><g><title>get_arg_page (16 samples, 0.01%)</title><rect x="97.5807%" y="789" width="0.0109%" height="15" fill="rgb(232,171,48)" fg:x="142826" fg:w="16"/><text x="97.8307%" y="799.50"></text></g><g><title>__get_user_pages_remote (15 samples, 0.01%)</title><rect x="97.5814%" y="773" width="0.0102%" height="15" fill="rgb(223,223,53)" fg:x="142827" fg:w="15"/><text x="97.8314%" y="783.50"></text></g><g><title>__get_user_pages (15 samples, 0.01%)</title><rect x="97.5814%" y="757" width="0.0102%" height="15" fill="rgb(246,92,13)" fg:x="142827" fg:w="15"/><text x="97.8314%" y="767.50"></text></g><g><title>copy_strings.isra.0 (43 samples, 0.03%)</title><rect x="97.5917%" y="805" width="0.0294%" height="15" fill="rgb(229,171,10)" fg:x="142842" fg:w="43"/><text x="97.8417%" y="815.50"></text></g><g><title>strnlen_user (18 samples, 0.01%)</title><rect x="97.6088%" y="789" width="0.0123%" height="15" fill="rgb(213,131,26)" fg:x="142867" fg:w="18"/><text x="97.8588%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (222 samples, 0.15%)</title><rect x="97.4701%" y="869" width="0.1517%" height="15" fill="rgb(242,87,54)" fg:x="142664" fg:w="222"/><text x="97.7201%" y="879.50"></text></g><g><title>do_syscall_64 (222 samples, 0.15%)</title><rect x="97.4701%" y="853" width="0.1517%" height="15" fill="rgb(237,21,35)" fg:x="142664" fg:w="222"/><text x="97.7201%" y="863.50"></text></g><g><title>__x64_sys_execve (222 samples, 0.15%)</title><rect x="97.4701%" y="837" width="0.1517%" height="15" fill="rgb(253,13,47)" fg:x="142664" fg:w="222"/><text x="97.7201%" y="847.50"></text></g><g><title>do_execveat_common (222 samples, 0.15%)</title><rect x="97.4701%" y="821" width="0.1517%" height="15" fill="rgb(215,122,49)" fg:x="142664" fg:w="222"/><text x="97.7201%" y="831.50"></text></g><g><title>JDK_execvpe (224 samples, 0.15%)</title><rect x="97.4694%" y="901" width="0.1530%" height="15" fill="rgb(209,179,30)" fg:x="142663" fg:w="224"/><text x="97.7194%" y="911.50"></text></g><g><title>__GI_execve (224 samples, 0.15%)</title><rect x="97.4694%" y="885" width="0.1530%" height="15" fill="rgb(235,100,24)" fg:x="142663" fg:w="224"/><text x="97.7194%" y="895.50"></text></g><g><title>__d_alloc (20 samples, 0.01%)</title><rect x="97.6559%" y="725" width="0.0137%" height="15" fill="rgb(209,67,24)" fg:x="142936" fg:w="20"/><text x="97.9059%" y="735.50"></text></g><g><title>kmem_cache_alloc (17 samples, 0.01%)</title><rect x="97.6579%" y="709" width="0.0116%" height="15" fill="rgb(206,74,32)" fg:x="142939" fg:w="17"/><text x="97.9079%" y="719.50"></text></g><g><title>d_alloc_parallel (30 samples, 0.02%)</title><rect x="97.6497%" y="757" width="0.0205%" height="15" fill="rgb(212,45,25)" fg:x="142927" fg:w="30"/><text x="97.8997%" y="767.50"></text></g><g><title>d_alloc (21 samples, 0.01%)</title><rect x="97.6559%" y="741" width="0.0143%" height="15" fill="rgb(239,26,3)" fg:x="142936" fg:w="21"/><text x="97.9059%" y="751.50"></text></g><g><title>d_hash_and_lookup (15 samples, 0.01%)</title><rect x="97.6702%" y="757" width="0.0102%" height="15" fill="rgb(218,36,15)" fg:x="142957" fg:w="15"/><text x="97.9202%" y="767.50"></text></g><g><title>alloc_inode (17 samples, 0.01%)</title><rect x="97.7044%" y="709" width="0.0116%" height="15" fill="rgb(206,108,24)" fg:x="143007" fg:w="17"/><text x="97.9544%" y="719.50"></text></g><g><title>proc_pid_make_inode (28 samples, 0.02%)</title><rect x="97.6989%" y="741" width="0.0191%" height="15" fill="rgb(234,204,42)" fg:x="142999" fg:w="28"/><text x="97.9489%" y="751.50"></text></g><g><title>new_inode (25 samples, 0.02%)</title><rect x="97.7010%" y="725" width="0.0171%" height="15" fill="rgb(229,2,11)" fg:x="143002" fg:w="25"/><text x="97.9510%" y="735.50"></text></g><g><title>proc_fill_cache (102 samples, 0.07%)</title><rect x="97.6497%" y="773" width="0.0697%" height="15" fill="rgb(221,20,48)" fg:x="142927" fg:w="102"/><text x="97.8997%" y="783.50"></text></g><g><title>proc_fd_instantiate (34 samples, 0.02%)</title><rect x="97.6962%" y="757" width="0.0232%" height="15" fill="rgb(244,164,10)" fg:x="142995" fg:w="34"/><text x="97.9462%" y="767.50"></text></g><g><title>proc_readfd_common (132 samples, 0.09%)</title><rect x="97.6347%" y="789" width="0.0902%" height="15" fill="rgb(243,229,2)" fg:x="142905" fg:w="132"/><text x="97.8847%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (138 samples, 0.09%)</title><rect x="97.6327%" y="853" width="0.0943%" height="15" fill="rgb(232,131,37)" fg:x="142902" fg:w="138"/><text x="97.8827%" y="863.50"></text></g><g><title>do_syscall_64 (138 samples, 0.09%)</title><rect x="97.6327%" y="837" width="0.0943%" height="15" fill="rgb(217,156,11)" fg:x="142902" fg:w="138"/><text x="97.8827%" y="847.50"></text></g><g><title>__x64_sys_getdents64 (138 samples, 0.09%)</title><rect x="97.6327%" y="821" width="0.0943%" height="15" fill="rgb(239,99,48)" fg:x="142902" fg:w="138"/><text x="97.8827%" y="831.50"></text></g><g><title>iterate_dir (138 samples, 0.09%)</title><rect x="97.6327%" y="805" width="0.0943%" height="15" fill="rgb(231,209,9)" fg:x="142902" fg:w="138"/><text x="97.8827%" y="815.50"></text></g><g><title>__GI___readdir64 (142 samples, 0.10%)</title><rect x="97.6306%" y="885" width="0.0970%" height="15" fill="rgb(254,97,27)" fg:x="142899" fg:w="142"/><text x="97.8806%" y="895.50"></text></g><g><title>__GI___getdents64 (140 samples, 0.10%)</title><rect x="97.6320%" y="869" width="0.0956%" height="15" fill="rgb(223,151,38)" fg:x="142901" fg:w="140"/><text x="97.8820%" y="879.50"></text></g><g><title>alloc_empty_file (15 samples, 0.01%)</title><rect x="97.7427%" y="757" width="0.0102%" height="15" fill="rgb(219,206,35)" fg:x="143063" fg:w="15"/><text x="97.9927%" y="767.50"></text></g><g><title>__d_alloc (20 samples, 0.01%)</title><rect x="97.7625%" y="677" width="0.0137%" height="15" fill="rgb(216,130,31)" fg:x="143092" fg:w="20"/><text x="98.0125%" y="687.50"></text></g><g><title>kmem_cache_alloc (18 samples, 0.01%)</title><rect x="97.7638%" y="661" width="0.0123%" height="15" fill="rgb(251,97,34)" fg:x="143094" fg:w="18"/><text x="98.0138%" y="671.50"></text></g><g><title>d_alloc_parallel (22 samples, 0.02%)</title><rect x="97.7618%" y="709" width="0.0150%" height="15" fill="rgb(246,159,47)" fg:x="143091" fg:w="22"/><text x="98.0118%" y="719.50"></text></g><g><title>d_alloc (21 samples, 0.01%)</title><rect x="97.7625%" y="693" width="0.0143%" height="15" fill="rgb(232,87,10)" fg:x="143092" fg:w="21"/><text x="98.0125%" y="703.50"></text></g><g><title>__lookup_slow (27 samples, 0.02%)</title><rect x="97.7611%" y="725" width="0.0184%" height="15" fill="rgb(249,1,37)" fg:x="143090" fg:w="27"/><text x="98.0111%" y="735.50"></text></g><g><title>link_path_walk.part.0 (75 samples, 0.05%)</title><rect x="97.7550%" y="757" width="0.0512%" height="15" fill="rgb(239,135,14)" fg:x="143081" fg:w="75"/><text x="98.0050%" y="767.50"></text></g><g><title>walk_component (66 samples, 0.05%)</title><rect x="97.7611%" y="741" width="0.0451%" height="15" fill="rgb(253,116,46)" fg:x="143090" fg:w="66"/><text x="98.0111%" y="751.50"></text></g><g><title>step_into (26 samples, 0.02%)</title><rect x="97.7884%" y="725" width="0.0178%" height="15" fill="rgb(222,217,37)" fg:x="143130" fg:w="26"/><text x="98.0384%" y="735.50"></text></g><g><title>proc_self_get_link (22 samples, 0.02%)</title><rect x="97.7912%" y="709" width="0.0150%" height="15" fill="rgb(252,96,8)" fg:x="143134" fg:w="22"/><text x="98.0412%" y="719.50"></text></g><g><title>sprintf (16 samples, 0.01%)</title><rect x="97.7953%" y="693" width="0.0109%" height="15" fill="rgb(254,103,41)" fg:x="143140" fg:w="16"/><text x="98.0453%" y="703.50"></text></g><g><title>vsnprintf (15 samples, 0.01%)</title><rect x="97.7960%" y="677" width="0.0102%" height="15" fill="rgb(218,213,19)" fg:x="143141" fg:w="15"/><text x="98.0460%" y="687.50"></text></g><g><title>do_filp_open (99 samples, 0.07%)</title><rect x="97.7399%" y="789" width="0.0676%" height="15" fill="rgb(253,95,21)" fg:x="143059" fg:w="99"/><text x="97.9899%" y="799.50"></text></g><g><title>path_openat (97 samples, 0.07%)</title><rect x="97.7413%" y="773" width="0.0663%" height="15" fill="rgb(229,26,28)" fg:x="143061" fg:w="97"/><text x="97.9913%" y="783.50"></text></g><g><title>do_syscall_64 (121 samples, 0.08%)</title><rect x="97.7365%" y="837" width="0.0827%" height="15" fill="rgb(230,129,16)" fg:x="143054" fg:w="121"/><text x="97.9865%" y="847.50"></text></g><g><title>__x64_sys_openat (121 samples, 0.08%)</title><rect x="97.7365%" y="821" width="0.0827%" height="15" fill="rgb(236,126,17)" fg:x="143054" fg:w="121"/><text x="97.9865%" y="831.50"></text></g><g><title>do_sys_openat2 (119 samples, 0.08%)</title><rect x="97.7379%" y="805" width="0.0813%" height="15" fill="rgb(209,33,33)" fg:x="143056" fg:w="119"/><text x="97.9879%" y="815.50"></text></g><g><title>getname_flags.part.0 (15 samples, 0.01%)</title><rect x="97.8089%" y="789" width="0.0102%" height="15" fill="rgb(227,85,29)" fg:x="143160" fg:w="15"/><text x="98.0589%" y="799.50"></text></g><g><title>__GI___open64_nocancel (122 samples, 0.08%)</title><rect x="97.7365%" y="869" width="0.0834%" height="15" fill="rgb(241,53,46)" fg:x="143054" fg:w="122"/><text x="97.9865%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (122 samples, 0.08%)</title><rect x="97.7365%" y="853" width="0.0834%" height="15" fill="rgb(228,167,53)" fg:x="143054" fg:w="122"/><text x="97.9865%" y="863.50"></text></g><g><title>__opendir (127 samples, 0.09%)</title><rect x="97.7365%" y="885" width="0.0868%" height="15" fill="rgb(238,195,45)" fg:x="143054" fg:w="127"/><text x="97.9865%" y="895.50"></text></g><g><title>opendir_tail (26 samples, 0.02%)</title><rect x="97.8260%" y="885" width="0.0178%" height="15" fill="rgb(252,124,45)" fg:x="143185" fg:w="26"/><text x="98.0760%" y="895.50"></text></g><g><title>__alloc_dir (23 samples, 0.02%)</title><rect x="97.8281%" y="869" width="0.0157%" height="15" fill="rgb(251,38,35)" fg:x="143188" fg:w="23"/><text x="98.0781%" y="879.50"></text></g><g><title>__GI___libc_malloc (23 samples, 0.02%)</title><rect x="97.8281%" y="853" width="0.0157%" height="15" fill="rgb(227,33,2)" fg:x="143188" fg:w="23"/><text x="98.0781%" y="863.50"></text></g><g><title>_int_malloc (21 samples, 0.01%)</title><rect x="97.8294%" y="837" width="0.0143%" height="15" fill="rgb(223,157,46)" fg:x="143190" fg:w="21"/><text x="98.0794%" y="847.50"></text></g><g><title>closeDescriptors (317 samples, 0.22%)</title><rect x="97.6279%" y="901" width="0.2166%" height="15" fill="rgb(222,78,41)" fg:x="142895" fg:w="317"/><text x="97.8779%" y="911.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,155 samples, 0.79%)</title><rect x="97.0635%" y="949" width="0.7891%" height="15" fill="rgb(248,176,11)" fg:x="142069" fg:w="1155"/><text x="97.3135%" y="959.50"></text></g><g><title>vforkChild (1,135 samples, 0.78%)</title><rect x="97.0772%" y="933" width="0.7754%" height="15" fill="rgb(241,221,18)" fg:x="142089" fg:w="1135"/><text x="97.3272%" y="943.50"></text></g><g><title>childProcess (562 samples, 0.38%)</title><rect x="97.4687%" y="917" width="0.3840%" height="15" fill="rgb(218,85,22)" fg:x="142662" fg:w="562"/><text x="97.7187%" y="927.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (15 samples, 0.01%)</title><rect x="97.8527%" y="949" width="0.0102%" height="15" fill="rgb(222,223,7)" fg:x="143224" fg:w="15"/><text x="98.1027%" y="959.50"></text></g><g><title>OptoRuntime::new_array_C (31 samples, 0.02%)</title><rect x="97.8738%" y="949" width="0.0212%" height="15" fill="rgb(254,59,39)" fg:x="143255" fg:w="31"/><text x="98.1238%" y="959.50"></text></g><g><title>TypeArrayKlass::allocate_common (19 samples, 0.01%)</title><rect x="97.8820%" y="933" width="0.0130%" height="15" fill="rgb(247,100,27)" fg:x="143267" fg:w="19"/><text x="98.1320%" y="943.50"></text></g><g><title>CollectedHeap::array_allocate (19 samples, 0.01%)</title><rect x="97.8820%" y="917" width="0.0130%" height="15" fill="rgb(237,207,10)" fg:x="143267" fg:w="19"/><text x="98.1320%" y="927.50"></text></g><g><title>MemAllocator::allocate (19 samples, 0.01%)</title><rect x="97.8820%" y="901" width="0.0130%" height="15" fill="rgb(220,121,28)" fg:x="143267" fg:w="19"/><text x="98.1320%" y="911.50"></text></g><g><title>ObjArrayAllocator::initialize (15 samples, 0.01%)</title><rect x="97.8848%" y="885" width="0.0102%" height="15" fill="rgb(213,223,20)" fg:x="143271" fg:w="15"/><text x="98.1348%" y="895.50"></text></g><g><title>asm_exc_page_fault (15 samples, 0.01%)</title><rect x="97.8848%" y="869" width="0.0102%" height="15" fill="rgb(205,121,27)" fg:x="143271" fg:w="15"/><text x="98.1348%" y="879.50"></text></g><g><title>exc_page_fault (15 samples, 0.01%)</title><rect x="97.8848%" y="853" width="0.0102%" height="15" fill="rgb(253,24,53)" fg:x="143271" fg:w="15"/><text x="98.1348%" y="863.50"></text></g><g><title>do_user_addr_fault (15 samples, 0.01%)</title><rect x="97.8848%" y="837" width="0.0102%" height="15" fill="rgb(224,224,47)" fg:x="143271" fg:w="15"/><text x="98.1348%" y="847.50"></text></g><g><title>handle_mm_fault (15 samples, 0.01%)</title><rect x="97.8848%" y="821" width="0.0102%" height="15" fill="rgb(250,125,36)" fg:x="143271" fg:w="15"/><text x="98.1348%" y="831.50"></text></g><g><title>do_huge_pmd_anonymous_page (15 samples, 0.01%)</title><rect x="97.8848%" y="805" width="0.0102%" height="15" fill="rgb(240,144,38)" fg:x="143271" fg:w="15"/><text x="98.1348%" y="815.50"></text></g><g><title>OptoRuntime::new_instance_C (25 samples, 0.02%)</title><rect x="97.9005%" y="949" width="0.0171%" height="15" fill="rgb(250,15,50)" fg:x="143294" fg:w="25"/><text x="98.1505%" y="959.50"></text></g><g><title>InstanceKlass::allocate_instance (23 samples, 0.02%)</title><rect x="97.9018%" y="933" width="0.0157%" height="15" fill="rgb(210,24,26)" fg:x="143296" fg:w="23"/><text x="98.1518%" y="943.50"></text></g><g><title>CollectedHeap::obj_allocate (23 samples, 0.02%)</title><rect x="97.9018%" y="917" width="0.0157%" height="15" fill="rgb(234,53,53)" fg:x="143296" fg:w="23"/><text x="98.1518%" y="927.50"></text></g><g><title>MemAllocator::allocate (23 samples, 0.02%)</title><rect x="97.9018%" y="901" width="0.0157%" height="15" fill="rgb(208,108,28)" fg:x="143296" fg:w="23"/><text x="98.1518%" y="911.50"></text></g><g><title>ObjAllocator::initialize (23 samples, 0.02%)</title><rect x="97.9018%" y="885" width="0.0157%" height="15" fill="rgb(227,143,7)" fg:x="143296" fg:w="23"/><text x="98.1518%" y="895.50"></text></g><g><title>asm_exc_page_fault (23 samples, 0.02%)</title><rect x="97.9018%" y="869" width="0.0157%" height="15" fill="rgb(238,189,38)" fg:x="143296" fg:w="23"/><text x="98.1518%" y="879.50"></text></g><g><title>exc_page_fault (23 samples, 0.02%)</title><rect x="97.9018%" y="853" width="0.0157%" height="15" fill="rgb(222,69,15)" fg:x="143296" fg:w="23"/><text x="98.1518%" y="863.50"></text></g><g><title>do_user_addr_fault (23 samples, 0.02%)</title><rect x="97.9018%" y="837" width="0.0157%" height="15" fill="rgb(213,169,7)" fg:x="143296" fg:w="23"/><text x="98.1518%" y="847.50"></text></g><g><title>handle_mm_fault (23 samples, 0.02%)</title><rect x="97.9018%" y="821" width="0.0157%" height="15" fill="rgb(251,219,4)" fg:x="143296" fg:w="23"/><text x="98.1518%" y="831.50"></text></g><g><title>do_huge_pmd_anonymous_page (22 samples, 0.02%)</title><rect x="97.9025%" y="805" width="0.0150%" height="15" fill="rgb(241,55,40)" fg:x="143297" fg:w="22"/><text x="98.1525%" y="815.50"></text></g><g><title>TieredThresholdPolicy::call_event (21 samples, 0.01%)</title><rect x="97.9415%" y="901" width="0.0143%" height="15" fill="rgb(243,57,30)" fg:x="143354" fg:w="21"/><text x="98.1915%" y="911.50"></text></g><g><title>TieredThresholdPolicy::event (50 samples, 0.03%)</title><rect x="97.9312%" y="933" width="0.0342%" height="15" fill="rgb(234,50,30)" fg:x="143339" fg:w="50"/><text x="98.1812%" y="943.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (36 samples, 0.02%)</title><rect x="97.9408%" y="917" width="0.0246%" height="15" fill="rgb(239,23,42)" fg:x="143353" fg:w="36"/><text x="98.1908%" y="927.50"></text></g><g><title>frame::sender (25 samples, 0.02%)</title><rect x="97.9654%" y="933" width="0.0171%" height="15" fill="rgb(217,38,19)" fg:x="143389" fg:w="25"/><text x="98.2154%" y="943.50"></text></g><g><title>CodeCache::find_blob (20 samples, 0.01%)</title><rect x="97.9688%" y="917" width="0.0137%" height="15" fill="rgb(215,179,16)" fg:x="143394" fg:w="20"/><text x="98.2188%" y="927.50"></text></g><g><title>Runtime1::counter_overflow (96 samples, 0.07%)</title><rect x="97.9176%" y="949" width="0.0656%" height="15" fill="rgb(254,21,37)" fg:x="143319" fg:w="96"/><text x="98.1676%" y="959.50"></text></g><g><title>Runtime1::monitorenter (22 samples, 0.02%)</title><rect x="97.9852%" y="949" width="0.0150%" height="15" fill="rgb(219,207,48)" fg:x="143418" fg:w="22"/><text x="98.2352%" y="959.50"></text></g><g><title>kernel_init_free_pages (23 samples, 0.02%)</title><rect x="98.0098%" y="725" width="0.0157%" height="15" fill="rgb(227,225,41)" fg:x="143454" fg:w="23"/><text x="98.2598%" y="735.50"></text></g><g><title>clear_page_erms (22 samples, 0.02%)</title><rect x="98.0105%" y="709" width="0.0150%" height="15" fill="rgb(223,130,1)" fg:x="143455" fg:w="22"/><text x="98.2605%" y="719.50"></text></g><g><title>alloc_pages_vma (24 samples, 0.02%)</title><rect x="98.0098%" y="789" width="0.0164%" height="15" fill="rgb(249,54,42)" fg:x="143454" fg:w="24"/><text x="98.2598%" y="799.50"></text></g><g><title>__alloc_pages_nodemask (24 samples, 0.02%)</title><rect x="98.0098%" y="773" width="0.0164%" height="15" fill="rgb(248,69,25)" fg:x="143454" fg:w="24"/><text x="98.2598%" y="783.50"></text></g><g><title>get_page_from_freelist (24 samples, 0.02%)</title><rect x="98.0098%" y="757" width="0.0164%" height="15" fill="rgb(234,21,32)" fg:x="143454" fg:w="24"/><text x="98.2598%" y="767.50"></text></g><g><title>prep_new_page (24 samples, 0.02%)</title><rect x="98.0098%" y="741" width="0.0164%" height="15" fill="rgb(252,136,6)" fg:x="143454" fg:w="24"/><text x="98.2598%" y="751.50"></text></g><g><title>ObjAllocator::initialize (39 samples, 0.03%)</title><rect x="98.0091%" y="885" width="0.0266%" height="15" fill="rgb(245,87,12)" fg:x="143453" fg:w="39"/><text x="98.2591%" y="895.50"></text></g><g><title>asm_exc_page_fault (39 samples, 0.03%)</title><rect x="98.0091%" y="869" width="0.0266%" height="15" fill="rgb(208,12,15)" fg:x="143453" fg:w="39"/><text x="98.2591%" y="879.50"></text></g><g><title>exc_page_fault (39 samples, 0.03%)</title><rect x="98.0091%" y="853" width="0.0266%" height="15" fill="rgb(250,98,2)" fg:x="143453" fg:w="39"/><text x="98.2591%" y="863.50"></text></g><g><title>do_user_addr_fault (39 samples, 0.03%)</title><rect x="98.0091%" y="837" width="0.0266%" height="15" fill="rgb(205,213,15)" fg:x="143453" fg:w="39"/><text x="98.2591%" y="847.50"></text></g><g><title>handle_mm_fault (39 samples, 0.03%)</title><rect x="98.0091%" y="821" width="0.0266%" height="15" fill="rgb(248,192,44)" fg:x="143453" fg:w="39"/><text x="98.2591%" y="831.50"></text></g><g><title>do_huge_pmd_anonymous_page (39 samples, 0.03%)</title><rect x="98.0091%" y="805" width="0.0266%" height="15" fill="rgb(221,89,17)" fg:x="143453" fg:w="39"/><text x="98.2591%" y="815.50"></text></g><g><title>InstanceKlass::allocate_instance (47 samples, 0.03%)</title><rect x="98.0043%" y="933" width="0.0321%" height="15" fill="rgb(209,55,3)" fg:x="143446" fg:w="47"/><text x="98.2543%" y="943.50"></text></g><g><title>CollectedHeap::obj_allocate (47 samples, 0.03%)</title><rect x="98.0043%" y="917" width="0.0321%" height="15" fill="rgb(247,23,45)" fg:x="143446" fg:w="47"/><text x="98.2543%" y="927.50"></text></g><g><title>MemAllocator::allocate (47 samples, 0.03%)</title><rect x="98.0043%" y="901" width="0.0321%" height="15" fill="rgb(235,152,23)" fg:x="143446" fg:w="47"/><text x="98.2543%" y="911.50"></text></g><g><title>Runtime1::new_instance (49 samples, 0.03%)</title><rect x="98.0043%" y="949" width="0.0335%" height="15" fill="rgb(244,63,13)" fg:x="143446" fg:w="49"/><text x="98.2543%" y="959.50"></text></g><g><title>finish_task_switch (15 samples, 0.01%)</title><rect x="98.0549%" y="725" width="0.0102%" height="15" fill="rgb(227,30,37)" fg:x="143520" fg:w="15"/><text x="98.3049%" y="735.50"></text></g><g><title>futex_wait_queue_me (17 samples, 0.01%)</title><rect x="98.0542%" y="773" width="0.0116%" height="15" fill="rgb(224,49,42)" fg:x="143519" fg:w="17"/><text x="98.3042%" y="783.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="98.0549%" y="757" width="0.0109%" height="15" fill="rgb(218,129,5)" fg:x="143520" fg:w="16"/><text x="98.3049%" y="767.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="98.0549%" y="741" width="0.0109%" height="15" fill="rgb(240,199,54)" fg:x="143520" fg:w="16"/><text x="98.3049%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (18 samples, 0.01%)</title><rect x="98.0542%" y="901" width="0.0123%" height="15" fill="rgb(234,31,13)" fg:x="143519" fg:w="18"/><text x="98.3042%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (18 samples, 0.01%)</title><rect x="98.0542%" y="885" width="0.0123%" height="15" fill="rgb(219,73,54)" fg:x="143519" fg:w="18"/><text x="98.3042%" y="895.50"></text></g><g><title>futex_abstimed_wait_cancelable (18 samples, 0.01%)</title><rect x="98.0542%" y="869" width="0.0123%" height="15" fill="rgb(251,162,10)" fg:x="143519" fg:w="18"/><text x="98.3042%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="98.0542%" y="853" width="0.0123%" height="15" fill="rgb(240,138,47)" fg:x="143519" fg:w="18"/><text x="98.3042%" y="863.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="98.0542%" y="837" width="0.0123%" height="15" fill="rgb(216,138,26)" fg:x="143519" fg:w="18"/><text x="98.3042%" y="847.50"></text></g><g><title>__x64_sys_futex (18 samples, 0.01%)</title><rect x="98.0542%" y="821" width="0.0123%" height="15" fill="rgb(243,17,35)" fg:x="143519" fg:w="18"/><text x="98.3042%" y="831.50"></text></g><g><title>do_futex (18 samples, 0.01%)</title><rect x="98.0542%" y="805" width="0.0123%" height="15" fill="rgb(241,60,18)" fg:x="143519" fg:w="18"/><text x="98.3042%" y="815.50"></text></g><g><title>futex_wait (18 samples, 0.01%)</title><rect x="98.0542%" y="789" width="0.0123%" height="15" fill="rgb(234,2,44)" fg:x="143519" fg:w="18"/><text x="98.3042%" y="799.50"></text></g><g><title>do_syscall_64 (34 samples, 0.02%)</title><rect x="98.0679%" y="837" width="0.0232%" height="15" fill="rgb(225,225,33)" fg:x="143539" fg:w="34"/><text x="98.3179%" y="847.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.02%)</title><rect x="98.0679%" y="821" width="0.0232%" height="15" fill="rgb(234,50,31)" fg:x="143539" fg:w="34"/><text x="98.3179%" y="831.50"></text></g><g><title>do_futex (34 samples, 0.02%)</title><rect x="98.0679%" y="805" width="0.0232%" height="15" fill="rgb(249,6,25)" fg:x="143539" fg:w="34"/><text x="98.3179%" y="815.50"></text></g><g><title>futex_wait (34 samples, 0.02%)</title><rect x="98.0679%" y="789" width="0.0232%" height="15" fill="rgb(241,5,17)" fg:x="143539" fg:w="34"/><text x="98.3179%" y="799.50"></text></g><g><title>futex_wait_queue_me (33 samples, 0.02%)</title><rect x="98.0686%" y="773" width="0.0225%" height="15" fill="rgb(207,116,10)" fg:x="143540" fg:w="33"/><text x="98.3186%" y="783.50"></text></g><g><title>schedule (31 samples, 0.02%)</title><rect x="98.0699%" y="757" width="0.0212%" height="15" fill="rgb(222,128,18)" fg:x="143542" fg:w="31"/><text x="98.3199%" y="767.50"></text></g><g><title>__schedule (31 samples, 0.02%)</title><rect x="98.0699%" y="741" width="0.0212%" height="15" fill="rgb(229,109,25)" fg:x="143542" fg:w="31"/><text x="98.3199%" y="751.50"></text></g><g><title>finish_task_switch (30 samples, 0.02%)</title><rect x="98.0706%" y="725" width="0.0205%" height="15" fill="rgb(222,102,25)" fg:x="143543" fg:w="30"/><text x="98.3206%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (29 samples, 0.02%)</title><rect x="98.0713%" y="709" width="0.0198%" height="15" fill="rgb(239,211,5)" fg:x="143544" fg:w="29"/><text x="98.3213%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="98.0720%" y="693" width="0.0191%" height="15" fill="rgb(223,136,26)" fg:x="143545" fg:w="28"/><text x="98.3220%" y="703.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="98.0720%" y="677" width="0.0191%" height="15" fill="rgb(227,30,15)" fg:x="143545" fg:w="28"/><text x="98.3220%" y="687.50"></text></g><g><title>ObjectMonitor::enter (62 samples, 0.04%)</title><rect x="98.0501%" y="933" width="0.0424%" height="15" fill="rgb(247,76,4)" fg:x="143513" fg:w="62"/><text x="98.3001%" y="943.50"></text></g><g><title>os::PlatformEvent::park (57 samples, 0.04%)</title><rect x="98.0535%" y="917" width="0.0389%" height="15" fill="rgb(245,38,48)" fg:x="143518" fg:w="57"/><text x="98.3035%" y="927.50"></text></g><g><title>__pthread_cond_wait (38 samples, 0.03%)</title><rect x="98.0665%" y="901" width="0.0260%" height="15" fill="rgb(210,220,14)" fg:x="143537" fg:w="38"/><text x="98.3165%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (38 samples, 0.03%)</title><rect x="98.0665%" y="885" width="0.0260%" height="15" fill="rgb(224,60,51)" fg:x="143537" fg:w="38"/><text x="98.3165%" y="895.50"></text></g><g><title>futex_wait_cancelable (37 samples, 0.03%)</title><rect x="98.0672%" y="869" width="0.0253%" height="15" fill="rgb(212,133,49)" fg:x="143538" fg:w="37"/><text x="98.3172%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="98.0679%" y="853" width="0.0246%" height="15" fill="rgb(231,39,22)" fg:x="143539" fg:w="36"/><text x="98.3179%" y="863.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (63 samples, 0.04%)</title><rect x="98.0501%" y="949" width="0.0430%" height="15" fill="rgb(236,173,22)" fg:x="143513" fg:w="63"/><text x="98.3001%" y="959.50"></text></g><g><title>SharedRuntime::handle_wrong_method_ic_miss (20 samples, 0.01%)</title><rect x="98.1013%" y="949" width="0.0137%" height="15" fill="rgb(210,70,0)" fg:x="143588" fg:w="20"/><text x="98.3513%" y="959.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (20 samples, 0.01%)</title><rect x="98.1013%" y="933" width="0.0137%" height="15" fill="rgb(215,170,11)" fg:x="143588" fg:w="20"/><text x="98.3513%" y="943.50"></text></g><g><title>ClassFileParser::parse_constant_pool (18 samples, 0.01%)</title><rect x="98.1348%" y="869" width="0.0123%" height="15" fill="rgb(220,154,28)" fg:x="143637" fg:w="18"/><text x="98.3848%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (17 samples, 0.01%)</title><rect x="98.1355%" y="853" width="0.0116%" height="15" fill="rgb(240,160,41)" fg:x="143638" fg:w="17"/><text x="98.3855%" y="863.50"></text></g><g><title>SymbolTable::lookup_only (15 samples, 0.01%)</title><rect x="98.1369%" y="837" width="0.0102%" height="15" fill="rgb(243,215,41)" fg:x="143640" fg:w="15"/><text x="98.3869%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (34 samples, 0.02%)</title><rect x="98.1348%" y="901" width="0.0232%" height="15" fill="rgb(214,208,31)" fg:x="143637" fg:w="34"/><text x="98.3848%" y="911.50"></text></g><g><title>ClassFileParser::parse_stream (34 samples, 0.02%)</title><rect x="98.1348%" y="885" width="0.0232%" height="15" fill="rgb(247,57,22)" fg:x="143637" fg:w="34"/><text x="98.3848%" y="895.50"></text></g><g><title>SystemDictionary::parse_stream (61 samples, 0.04%)</title><rect x="98.1253%" y="933" width="0.0417%" height="15" fill="rgb(228,73,52)" fg:x="143623" fg:w="61"/><text x="98.3753%" y="943.50"></text></g><g><title>KlassFactory::create_from_stream (48 samples, 0.03%)</title><rect x="98.1341%" y="917" width="0.0328%" height="15" fill="rgb(252,60,9)" fg:x="143636" fg:w="48"/><text x="98.3841%" y="927.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (63 samples, 0.04%)</title><rect x="98.1246%" y="949" width="0.0430%" height="15" fill="rgb(233,9,51)" fg:x="143622" fg:w="63"/><text x="98.3746%" y="959.50"></text></g><g><title>ClassFileParser::ClassFileParser (15 samples, 0.01%)</title><rect x="98.1690%" y="869" width="0.0102%" height="15" fill="rgb(223,67,14)" fg:x="143687" fg:w="15"/><text x="98.4190%" y="879.50"></text></g><g><title>ClassFileParser::parse_stream (15 samples, 0.01%)</title><rect x="98.1690%" y="853" width="0.0102%" height="15" fill="rgb(222,86,2)" fg:x="143687" fg:w="15"/><text x="98.4190%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (16 samples, 0.01%)</title><rect x="98.1690%" y="885" width="0.0109%" height="15" fill="rgb(243,58,54)" fg:x="143687" fg:w="16"/><text x="98.4190%" y="895.50"></text></g><g><title>JVM_DefineClass (25 samples, 0.02%)</title><rect x="98.1676%" y="933" width="0.0171%" height="15" fill="rgb(210,200,39)" fg:x="143685" fg:w="25"/><text x="98.4176%" y="943.50"></text></g><g><title>jvm_define_class_common (25 samples, 0.02%)</title><rect x="98.1676%" y="917" width="0.0171%" height="15" fill="rgb(238,135,9)" fg:x="143685" fg:w="25"/><text x="98.4176%" y="927.50"></text></g><g><title>SystemDictionary::resolve_from_stream (24 samples, 0.02%)</title><rect x="98.1683%" y="901" width="0.0164%" height="15" fill="rgb(232,179,7)" fg:x="143686" fg:w="24"/><text x="98.4183%" y="911.50"></text></g><g><title>Unsafe_DefineClass0 (26 samples, 0.02%)</title><rect x="98.1676%" y="949" width="0.0178%" height="15" fill="rgb(245,65,41)" fg:x="143685" fg:w="26"/><text x="98.4176%" y="959.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="98.2031%" y="741" width="0.0143%" height="15" fill="rgb(227,43,8)" fg:x="143737" fg:w="21"/><text x="98.4531%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="98.2038%" y="725" width="0.0137%" height="15" fill="rgb(235,91,14)" fg:x="143738" fg:w="20"/><text x="98.4538%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="98.2045%" y="709" width="0.0130%" height="15" fill="rgb(235,219,31)" fg:x="143739" fg:w="19"/><text x="98.4545%" y="719.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="98.2045%" y="693" width="0.0130%" height="15" fill="rgb(227,121,25)" fg:x="143739" fg:w="19"/><text x="98.4545%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (25 samples, 0.02%)</title><rect x="98.2011%" y="917" width="0.0171%" height="15" fill="rgb(254,129,24)" fg:x="143734" fg:w="25"/><text x="98.4511%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (25 samples, 0.02%)</title><rect x="98.2011%" y="901" width="0.0171%" height="15" fill="rgb(226,144,49)" fg:x="143734" fg:w="25"/><text x="98.4511%" y="911.50"></text></g><g><title>futex_abstimed_wait_cancelable (25 samples, 0.02%)</title><rect x="98.2011%" y="885" width="0.0171%" height="15" fill="rgb(214,187,32)" fg:x="143734" fg:w="25"/><text x="98.4511%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="98.2025%" y="869" width="0.0157%" height="15" fill="rgb(243,129,46)" fg:x="143736" fg:w="23"/><text x="98.4525%" y="879.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="98.2025%" y="853" width="0.0157%" height="15" fill="rgb(221,185,35)" fg:x="143736" fg:w="23"/><text x="98.4525%" y="863.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="98.2025%" y="837" width="0.0157%" height="15" fill="rgb(205,0,32)" fg:x="143736" fg:w="23"/><text x="98.4525%" y="847.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="98.2025%" y="821" width="0.0157%" height="15" fill="rgb(229,179,12)" fg:x="143736" fg:w="23"/><text x="98.4525%" y="831.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="98.2025%" y="805" width="0.0157%" height="15" fill="rgb(252,107,19)" fg:x="143736" fg:w="23"/><text x="98.4525%" y="815.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="98.2025%" y="789" width="0.0157%" height="15" fill="rgb(220,95,27)" fg:x="143736" fg:w="23"/><text x="98.4525%" y="799.50"></text></g><g><title>schedule (22 samples, 0.02%)</title><rect x="98.2031%" y="773" width="0.0150%" height="15" fill="rgb(240,113,40)" fg:x="143737" fg:w="22"/><text x="98.4531%" y="783.50"></text></g><g><title>__schedule (22 samples, 0.02%)</title><rect x="98.2031%" y="757" width="0.0150%" height="15" fill="rgb(208,4,43)" fg:x="143737" fg:w="22"/><text x="98.4531%" y="767.50"></text></g><g><title>dequeue_task_fair (15 samples, 0.01%)</title><rect x="98.2387%" y="741" width="0.0102%" height="15" fill="rgb(247,189,30)" fg:x="143789" fg:w="15"/><text x="98.4887%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (251 samples, 0.17%)</title><rect x="98.2510%" y="725" width="0.1715%" height="15" fill="rgb(231,157,17)" fg:x="143807" fg:w="251"/><text x="98.5010%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (239 samples, 0.16%)</title><rect x="98.2592%" y="709" width="0.1633%" height="15" fill="rgb(224,139,6)" fg:x="143819" fg:w="239"/><text x="98.5092%" y="719.50"></text></g><g><title>native_write_msr (236 samples, 0.16%)</title><rect x="98.2612%" y="693" width="0.1612%" height="15" fill="rgb(223,83,16)" fg:x="143822" fg:w="236"/><text x="98.5112%" y="703.50"></text></g><g><title>finish_task_switch (259 samples, 0.18%)</title><rect x="98.2489%" y="741" width="0.1770%" height="15" fill="rgb(232,211,20)" fg:x="143804" fg:w="259"/><text x="98.4989%" y="751.50"></text></g><g><title>futex_wait_queue_me (311 samples, 0.21%)</title><rect x="98.2277%" y="789" width="0.2125%" height="15" fill="rgb(225,203,35)" fg:x="143773" fg:w="311"/><text x="98.4777%" y="799.50"></text></g><g><title>schedule (307 samples, 0.21%)</title><rect x="98.2305%" y="773" width="0.2097%" height="15" fill="rgb(215,211,44)" fg:x="143777" fg:w="307"/><text x="98.4805%" y="783.50"></text></g><g><title>__schedule (303 samples, 0.21%)</title><rect x="98.2332%" y="757" width="0.2070%" height="15" fill="rgb(248,213,26)" fg:x="143781" fg:w="303"/><text x="98.4832%" y="767.50"></text></g><g><title>__x64_sys_futex (319 samples, 0.22%)</title><rect x="98.2250%" y="837" width="0.2179%" height="15" fill="rgb(214,23,52)" fg:x="143769" fg:w="319"/><text x="98.4750%" y="847.50"></text></g><g><title>do_futex (319 samples, 0.22%)</title><rect x="98.2250%" y="821" width="0.2179%" height="15" fill="rgb(225,173,50)" fg:x="143769" fg:w="319"/><text x="98.4750%" y="831.50"></text></g><g><title>futex_wait (318 samples, 0.22%)</title><rect x="98.2257%" y="805" width="0.2173%" height="15" fill="rgb(206,150,22)" fg:x="143770" fg:w="318"/><text x="98.4757%" y="815.50"></text></g><g><title>do_syscall_64 (321 samples, 0.22%)</title><rect x="98.2243%" y="853" width="0.2193%" height="15" fill="rgb(239,64,23)" fg:x="143768" fg:w="321"/><text x="98.4743%" y="863.50"></text></g><g><title>__pthread_cond_wait (334 samples, 0.23%)</title><rect x="98.2182%" y="917" width="0.2282%" height="15" fill="rgb(242,50,38)" fg:x="143759" fg:w="334"/><text x="98.4682%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (334 samples, 0.23%)</title><rect x="98.2182%" y="901" width="0.2282%" height="15" fill="rgb(217,91,15)" fg:x="143759" fg:w="334"/><text x="98.4682%" y="911.50"></text></g><g><title>futex_wait_cancelable (331 samples, 0.23%)</title><rect x="98.2202%" y="885" width="0.2261%" height="15" fill="rgb(230,172,6)" fg:x="143762" fg:w="331"/><text x="98.4702%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (325 samples, 0.22%)</title><rect x="98.2243%" y="869" width="0.2220%" height="15" fill="rgb(221,98,26)" fg:x="143768" fg:w="325"/><text x="98.4743%" y="879.50"></text></g><g><title>Parker::park (392 samples, 0.27%)</title><rect x="98.1908%" y="933" width="0.2678%" height="15" fill="rgb(227,210,45)" fg:x="143719" fg:w="392"/><text x="98.4408%" y="943.50"></text></g><g><title>Unsafe_Park (405 samples, 0.28%)</title><rect x="98.1874%" y="949" width="0.2767%" height="15" fill="rgb(206,8,30)" fg:x="143714" fg:w="405"/><text x="98.4374%" y="959.50"></text></g><g><title>enqueue_task_fair (18 samples, 0.01%)</title><rect x="98.5003%" y="773" width="0.0123%" height="15" fill="rgb(241,219,17)" fg:x="144172" fg:w="18"/><text x="98.7503%" y="783.50"></text></g><g><title>ttwu_do_activate (28 samples, 0.02%)</title><rect x="98.4997%" y="789" width="0.0191%" height="15" fill="rgb(247,121,29)" fg:x="144171" fg:w="28"/><text x="98.7497%" y="799.50"></text></g><g><title>do_syscall_64 (62 samples, 0.04%)</title><rect x="98.4812%" y="885" width="0.0424%" height="15" fill="rgb(219,169,49)" fg:x="144144" fg:w="62"/><text x="98.7312%" y="895.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.04%)</title><rect x="98.4812%" y="869" width="0.0424%" height="15" fill="rgb(253,49,49)" fg:x="144144" fg:w="62"/><text x="98.7312%" y="879.50"></text></g><g><title>do_futex (59 samples, 0.04%)</title><rect x="98.4833%" y="853" width="0.0403%" height="15" fill="rgb(217,178,3)" fg:x="144147" fg:w="59"/><text x="98.7333%" y="863.50"></text></g><g><title>futex_wake (58 samples, 0.04%)</title><rect x="98.4839%" y="837" width="0.0396%" height="15" fill="rgb(234,73,37)" fg:x="144148" fg:w="58"/><text x="98.7339%" y="847.50"></text></g><g><title>wake_up_q (48 samples, 0.03%)</title><rect x="98.4908%" y="821" width="0.0328%" height="15" fill="rgb(250,98,22)" fg:x="144158" fg:w="48"/><text x="98.7408%" y="831.50"></text></g><g><title>try_to_wake_up (48 samples, 0.03%)</title><rect x="98.4908%" y="805" width="0.0328%" height="15" fill="rgb(220,108,37)" fg:x="144158" fg:w="48"/><text x="98.7408%" y="815.50"></text></g><g><title>Unsafe_Unpark (88 samples, 0.06%)</title><rect x="98.4648%" y="949" width="0.0601%" height="15" fill="rgb(225,168,10)" fg:x="144120" fg:w="88"/><text x="98.7148%" y="959.50"></text></g><g><title>__pthread_cond_signal (68 samples, 0.05%)</title><rect x="98.4785%" y="933" width="0.0465%" height="15" fill="rgb(247,215,21)" fg:x="144140" fg:w="68"/><text x="98.7285%" y="943.50"></text></g><g><title>futex_wake (64 samples, 0.04%)</title><rect x="98.4812%" y="917" width="0.0437%" height="15" fill="rgb(253,189,31)" fg:x="144144" fg:w="64"/><text x="98.7312%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.04%)</title><rect x="98.4812%" y="901" width="0.0437%" height="15" fill="rgb(241,54,22)" fg:x="144144" fg:w="64"/><text x="98.7312%" y="911.50"></text></g><g><title>handle_mm_fault (40 samples, 0.03%)</title><rect x="98.5454%" y="901" width="0.0273%" height="15" fill="rgb(211,87,4)" fg:x="144238" fg:w="40"/><text x="98.7954%" y="911.50"></text></g><g><title>exc_page_fault (51 samples, 0.03%)</title><rect x="98.5386%" y="933" width="0.0348%" height="15" fill="rgb(245,112,24)" fg:x="144228" fg:w="51"/><text x="98.7886%" y="943.50"></text></g><g><title>do_user_addr_fault (49 samples, 0.03%)</title><rect x="98.5400%" y="917" width="0.0335%" height="15" fill="rgb(235,190,41)" fg:x="144230" fg:w="49"/><text x="98.7900%" y="927.50"></text></g><g><title>asm_exc_page_fault (56 samples, 0.04%)</title><rect x="98.5379%" y="949" width="0.0383%" height="15" fill="rgb(214,89,8)" fg:x="144227" fg:w="56"/><text x="98.7879%" y="959.50"></text></g><g><title>tick_sched_handle (17 samples, 0.01%)</title><rect x="98.5816%" y="853" width="0.0116%" height="15" fill="rgb(249,155,35)" fg:x="144291" fg:w="17"/><text x="98.8316%" y="863.50"></text></g><g><title>update_process_times (17 samples, 0.01%)</title><rect x="98.5816%" y="837" width="0.0116%" height="15" fill="rgb(249,88,26)" fg:x="144291" fg:w="17"/><text x="98.8316%" y="847.50"></text></g><g><title>tick_sched_timer (19 samples, 0.01%)</title><rect x="98.5816%" y="869" width="0.0130%" height="15" fill="rgb(232,56,8)" fg:x="144291" fg:w="19"/><text x="98.8316%" y="879.50"></text></g><g><title>__hrtimer_run_queues (23 samples, 0.02%)</title><rect x="98.5796%" y="885" width="0.0157%" height="15" fill="rgb(240,95,3)" fg:x="144288" fg:w="23"/><text x="98.8296%" y="895.50"></text></g><g><title>hrtimer_interrupt (28 samples, 0.02%)</title><rect x="98.5789%" y="901" width="0.0191%" height="15" fill="rgb(222,44,28)" fg:x="144287" fg:w="28"/><text x="98.8289%" y="911.50"></text></g><g><title>__sysvec_apic_timer_interrupt (30 samples, 0.02%)</title><rect x="98.5782%" y="917" width="0.0205%" height="15" fill="rgb(234,16,30)" fg:x="144286" fg:w="30"/><text x="98.8282%" y="927.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (47 samples, 0.03%)</title><rect x="98.5762%" y="949" width="0.0321%" height="15" fill="rgb(223,26,17)" fg:x="144283" fg:w="47"/><text x="98.8262%" y="959.50"></text></g><g><title>sysvec_apic_timer_interrupt (44 samples, 0.03%)</title><rect x="98.5782%" y="933" width="0.0301%" height="15" fill="rgb(239,187,47)" fg:x="144286" fg:w="44"/><text x="98.8282%" y="943.50"></text></g><g><title>fileDescriptorClose (16 samples, 0.01%)</title><rect x="98.6254%" y="949" width="0.0109%" height="15" fill="rgb(247,102,50)" fg:x="144355" fg:w="16"/><text x="98.8754%" y="959.50"></text></g><g><title>do_filp_open (46 samples, 0.03%)</title><rect x="98.6479%" y="853" width="0.0314%" height="15" fill="rgb(231,216,22)" fg:x="144388" fg:w="46"/><text x="98.8979%" y="863.50"></text></g><g><title>path_openat (46 samples, 0.03%)</title><rect x="98.6479%" y="837" width="0.0314%" height="15" fill="rgb(216,201,26)" fg:x="144388" fg:w="46"/><text x="98.8979%" y="847.50"></text></g><g><title>__libc_open64 (60 samples, 0.04%)</title><rect x="98.6459%" y="933" width="0.0410%" height="15" fill="rgb(214,186,23)" fg:x="144385" fg:w="60"/><text x="98.8959%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.04%)</title><rect x="98.6459%" y="917" width="0.0410%" height="15" fill="rgb(235,184,4)" fg:x="144385" fg:w="60"/><text x="98.8959%" y="927.50"></text></g><g><title>do_syscall_64 (59 samples, 0.04%)</title><rect x="98.6466%" y="901" width="0.0403%" height="15" fill="rgb(244,46,17)" fg:x="144386" fg:w="59"/><text x="98.8966%" y="911.50"></text></g><g><title>__x64_sys_openat (59 samples, 0.04%)</title><rect x="98.6466%" y="885" width="0.0403%" height="15" fill="rgb(248,74,46)" fg:x="144386" fg:w="59"/><text x="98.8966%" y="895.50"></text></g><g><title>do_sys_openat2 (58 samples, 0.04%)</title><rect x="98.6472%" y="869" width="0.0396%" height="15" fill="rgb(243,79,5)" fg:x="144387" fg:w="58"/><text x="98.8972%" y="879.50"></text></g><g><title>fileOpen (78 samples, 0.05%)</title><rect x="98.6363%" y="949" width="0.0533%" height="15" fill="rgb(213,148,1)" fg:x="144371" fg:w="78"/><text x="98.8863%" y="959.50"></text></g><g><title>jni_IsAssignableFrom (28 samples, 0.02%)</title><rect x="98.7005%" y="949" width="0.0191%" height="15" fill="rgb(221,30,0)" fg:x="144465" fg:w="28"/><text x="98.9505%" y="959.50"></text></g><g><title>os::javaTimeNanos (78 samples, 0.05%)</title><rect x="98.7197%" y="949" width="0.0533%" height="15" fill="rgb(207,85,29)" fg:x="144493" fg:w="78"/><text x="98.9697%" y="959.50"></text></g><g><title>__GI___clock_gettime (73 samples, 0.05%)</title><rect x="98.7231%" y="933" width="0.0499%" height="15" fill="rgb(239,31,46)" fg:x="144498" fg:w="73"/><text x="98.9731%" y="943.50"></text></g><g><title>__vdso_clock_gettime (58 samples, 0.04%)</title><rect x="98.7333%" y="917" width="0.0396%" height="15" fill="rgb(219,6,1)" fg:x="144513" fg:w="58"/><text x="98.9833%" y="927.50"></text></g><g><title>[[vdso]] (36 samples, 0.02%)</title><rect x="98.7484%" y="901" width="0.0246%" height="15" fill="rgb(229,90,29)" fg:x="144535" fg:w="36"/><text x="98.9984%" y="911.50"></text></g><g><title>[perf-270039.map] (34,711 samples, 23.72%)</title><rect x="75.0586%" y="965" width="23.7150%" height="15" fill="rgb(242,201,42)" fg:x="109861" fg:w="34711"/><text x="75.3086%" y="975.50">[perf-270039.map]</text></g><g><title>SharedRuntime::find_callee_method (15 samples, 0.01%)</title><rect x="98.7900%" y="949" width="0.0102%" height="15" fill="rgb(243,80,54)" fg:x="144596" fg:w="15"/><text x="99.0400%" y="959.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (15 samples, 0.01%)</title><rect x="98.8010%" y="949" width="0.0102%" height="15" fill="rgb(223,166,15)" fg:x="144612" fg:w="15"/><text x="99.0510%" y="959.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (15 samples, 0.01%)</title><rect x="98.8010%" y="933" width="0.0102%" height="15" fill="rgb(238,78,27)" fg:x="144612" fg:w="15"/><text x="99.0510%" y="943.50"></text></g><g><title>CompiledIC::set_to_monomorphic (17 samples, 0.01%)</title><rect x="98.8372%" y="933" width="0.0116%" height="15" fill="rgb(235,28,43)" fg:x="144665" fg:w="17"/><text x="99.0872%" y="943.50"></text></g><g><title>Bytecode_invoke::static_target (35 samples, 0.02%)</title><rect x="98.8556%" y="917" width="0.0239%" height="15" fill="rgb(240,210,28)" fg:x="144692" fg:w="35"/><text x="99.1056%" y="927.50"></text></g><g><title>LinkResolver::resolve_method_statically (35 samples, 0.02%)</title><rect x="98.8556%" y="901" width="0.0239%" height="15" fill="rgb(253,6,46)" fg:x="144692" fg:w="35"/><text x="99.1056%" y="911.50"></text></g><g><title>LinkResolver::resolve_method (17 samples, 0.01%)</title><rect x="98.8679%" y="885" width="0.0116%" height="15" fill="rgb(250,159,47)" fg:x="144710" fg:w="17"/><text x="99.1179%" y="895.50"></text></g><g><title>LinkResolver::resolve_invoke (30 samples, 0.02%)</title><rect x="98.8809%" y="917" width="0.0205%" height="15" fill="rgb(216,139,2)" fg:x="144729" fg:w="30"/><text x="99.1309%" y="927.50"></text></g><g><title>SharedRuntime::extract_attached_method (15 samples, 0.01%)</title><rect x="98.9021%" y="917" width="0.0102%" height="15" fill="rgb(221,124,44)" fg:x="144760" fg:w="15"/><text x="99.1521%" y="927.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (106 samples, 0.07%)</title><rect x="98.8542%" y="933" width="0.0724%" height="15" fill="rgb(205,37,22)" fg:x="144690" fg:w="106"/><text x="99.1042%" y="943.50"></text></g><g><title>frame::sender (20 samples, 0.01%)</title><rect x="98.9130%" y="917" width="0.0137%" height="15" fill="rgb(250,55,8)" fg:x="144776" fg:w="20"/><text x="99.1630%" y="927.50"></text></g><g><title>OopMapSet::update_register_map (19 samples, 0.01%)</title><rect x="98.9137%" y="901" width="0.0130%" height="15" fill="rgb(215,83,48)" fg:x="144777" fg:w="19"/><text x="99.1637%" y="911.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (170 samples, 0.12%)</title><rect x="98.8153%" y="949" width="0.1161%" height="15" fill="rgb(253,2,32)" fg:x="144633" fg:w="170"/><text x="99.0653%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.05%)</title><rect x="98.9438%" y="677" width="0.0526%" height="15" fill="rgb(236,67,28)" fg:x="144821" fg:w="77"/><text x="99.1938%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (77 samples, 0.05%)</title><rect x="98.9438%" y="661" width="0.0526%" height="15" fill="rgb(252,55,15)" fg:x="144821" fg:w="77"/><text x="99.1938%" y="671.50"></text></g><g><title>native_write_msr (77 samples, 0.05%)</title><rect x="98.9438%" y="645" width="0.0526%" height="15" fill="rgb(243,173,17)" fg:x="144821" fg:w="77"/><text x="99.1938%" y="655.50"></text></g><g><title>do_syscall_64 (86 samples, 0.06%)</title><rect x="98.9383%" y="805" width="0.0588%" height="15" fill="rgb(215,212,13)" fg:x="144813" fg:w="86"/><text x="99.1883%" y="815.50"></text></g><g><title>__x64_sys_futex (86 samples, 0.06%)</title><rect x="98.9383%" y="789" width="0.0588%" height="15" fill="rgb(253,176,6)" fg:x="144813" fg:w="86"/><text x="99.1883%" y="799.50"></text></g><g><title>do_futex (86 samples, 0.06%)</title><rect x="98.9383%" y="773" width="0.0588%" height="15" fill="rgb(236,105,26)" fg:x="144813" fg:w="86"/><text x="99.1883%" y="783.50"></text></g><g><title>futex_wait (83 samples, 0.06%)</title><rect x="98.9403%" y="757" width="0.0567%" height="15" fill="rgb(239,226,32)" fg:x="144816" fg:w="83"/><text x="99.1903%" y="767.50"></text></g><g><title>futex_wait_queue_me (82 samples, 0.06%)</title><rect x="98.9410%" y="741" width="0.0560%" height="15" fill="rgb(236,104,51)" fg:x="144817" fg:w="82"/><text x="99.1910%" y="751.50"></text></g><g><title>schedule (80 samples, 0.05%)</title><rect x="98.9424%" y="725" width="0.0547%" height="15" fill="rgb(220,172,33)" fg:x="144819" fg:w="80"/><text x="99.1924%" y="735.50"></text></g><g><title>__schedule (79 samples, 0.05%)</title><rect x="98.9431%" y="709" width="0.0540%" height="15" fill="rgb(224,182,25)" fg:x="144820" fg:w="79"/><text x="99.1931%" y="719.50"></text></g><g><title>finish_task_switch (78 samples, 0.05%)</title><rect x="98.9438%" y="693" width="0.0533%" height="15" fill="rgb(236,184,24)" fg:x="144821" fg:w="78"/><text x="99.1938%" y="703.50"></text></g><g><title>__pthread_cond_wait (89 samples, 0.06%)</title><rect x="98.9369%" y="869" width="0.0608%" height="15" fill="rgb(241,221,14)" fg:x="144811" fg:w="89"/><text x="99.1869%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (89 samples, 0.06%)</title><rect x="98.9369%" y="853" width="0.0608%" height="15" fill="rgb(227,146,5)" fg:x="144811" fg:w="89"/><text x="99.1869%" y="863.50"></text></g><g><title>futex_wait_cancelable (89 samples, 0.06%)</title><rect x="98.9369%" y="837" width="0.0608%" height="15" fill="rgb(214,15,23)" fg:x="144811" fg:w="89"/><text x="99.1869%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.06%)</title><rect x="98.9383%" y="821" width="0.0594%" height="15" fill="rgb(233,157,31)" fg:x="144813" fg:w="87"/><text x="99.1883%" y="831.50"></text></g><g><title>Monitor::lock_without_safepoint_check (95 samples, 0.06%)</title><rect x="98.9342%" y="917" width="0.0649%" height="15" fill="rgb(211,27,52)" fg:x="144807" fg:w="95"/><text x="99.1842%" y="927.50"></text></g><g><title>Monitor::ILock (95 samples, 0.06%)</title><rect x="98.9342%" y="901" width="0.0649%" height="15" fill="rgb(212,223,15)" fg:x="144807" fg:w="95"/><text x="99.1842%" y="911.50"></text></g><g><title>os::PlatformEvent::park (91 samples, 0.06%)</title><rect x="98.9369%" y="885" width="0.0622%" height="15" fill="rgb(254,211,0)" fg:x="144811" fg:w="91"/><text x="99.1869%" y="895.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (105 samples, 0.07%)</title><rect x="98.9315%" y="949" width="0.0717%" height="15" fill="rgb(205,43,38)" fg:x="144803" fg:w="105"/><text x="99.1815%" y="959.50"></text></g><g><title>SafepointSynchronize::block (102 samples, 0.07%)</title><rect x="98.9335%" y="933" width="0.0697%" height="15" fill="rgb(242,206,46)" fg:x="144806" fg:w="102"/><text x="99.1835%" y="943.50"></text></g><g><title>__fdget_pos (27 samples, 0.02%)</title><rect x="99.0585%" y="837" width="0.0184%" height="15" fill="rgb(220,221,12)" fg:x="144989" fg:w="27"/><text x="99.3085%" y="847.50"></text></g><g><title>copy_page_to_iter (413 samples, 0.28%)</title><rect x="99.1159%" y="789" width="0.2822%" height="15" fill="rgb(217,156,35)" fg:x="145073" fg:w="413"/><text x="99.3659%" y="799.50"></text></g><g><title>copy_user_enhanced_fast_string (389 samples, 0.27%)</title><rect x="99.1323%" y="773" width="0.2658%" height="15" fill="rgb(207,181,49)" fg:x="145097" fg:w="389"/><text x="99.3823%" y="783.50"></text></g><g><title>pagecache_get_page (55 samples, 0.04%)</title><rect x="99.4022%" y="789" width="0.0376%" height="15" fill="rgb(235,103,47)" fg:x="145492" fg:w="55"/><text x="99.6522%" y="799.50"></text></g><g><title>find_get_entry (48 samples, 0.03%)</title><rect x="99.4070%" y="773" width="0.0328%" height="15" fill="rgb(222,63,28)" fg:x="145499" fg:w="48"/><text x="99.6570%" y="783.50"></text></g><g><title>xas_load (30 samples, 0.02%)</title><rect x="99.4193%" y="757" width="0.0205%" height="15" fill="rgb(244,137,21)" fg:x="145517" fg:w="30"/><text x="99.6693%" y="767.50"></text></g><g><title>btrfs_dirty_inode (15 samples, 0.01%)</title><rect x="99.4486%" y="773" width="0.0102%" height="15" fill="rgb(228,35,27)" fg:x="145560" fg:w="15"/><text x="99.6986%" y="783.50"></text></g><g><title>touch_atime (29 samples, 0.02%)</title><rect x="99.4398%" y="789" width="0.0198%" height="15" fill="rgb(226,191,41)" fg:x="145547" fg:w="29"/><text x="99.6898%" y="799.50"></text></g><g><title>generic_file_buffered_read (524 samples, 0.36%)</title><rect x="99.1023%" y="805" width="0.3580%" height="15" fill="rgb(210,154,3)" fg:x="145053" fg:w="524"/><text x="99.3523%" y="815.50"></text></g><g><title>new_sync_read (532 samples, 0.36%)</title><rect x="99.0975%" y="821" width="0.3635%" height="15" fill="rgb(216,60,49)" fg:x="145046" fg:w="532"/><text x="99.3475%" y="831.50"></text></g><g><title>ksys_read (595 samples, 0.41%)</title><rect x="99.0572%" y="853" width="0.4065%" height="15" fill="rgb(226,17,20)" fg:x="144987" fg:w="595"/><text x="99.3072%" y="863.50"></text></g><g><title>vfs_read (559 samples, 0.38%)</title><rect x="99.0818%" y="837" width="0.3819%" height="15" fill="rgb(206,115,35)" fg:x="145023" fg:w="559"/><text x="99.3318%" y="847.50"></text></g><g><title>do_syscall_64 (599 samples, 0.41%)</title><rect x="99.0551%" y="869" width="0.4092%" height="15" fill="rgb(227,88,1)" fg:x="144984" fg:w="599"/><text x="99.3051%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (607 samples, 0.41%)</title><rect x="99.0517%" y="885" width="0.4147%" height="15" fill="rgb(230,222,24)" fg:x="144979" fg:w="607"/><text x="99.3017%" y="895.50"></text></g><g><title>handleRead (646 samples, 0.44%)</title><rect x="99.0264%" y="933" width="0.4414%" height="15" fill="rgb(214,124,32)" fg:x="144942" fg:w="646"/><text x="99.2764%" y="943.50"></text></g><g><title>__libc_read (645 samples, 0.44%)</title><rect x="99.0271%" y="917" width="0.4407%" height="15" fill="rgb(240,41,36)" fg:x="144943" fg:w="645"/><text x="99.2771%" y="927.50"></text></g><g><title>__libc_read (644 samples, 0.44%)</title><rect x="99.0278%" y="901" width="0.4400%" height="15" fill="rgb(221,17,52)" fg:x="144944" fg:w="644"/><text x="99.2778%" y="911.50"></text></g><g><title>jni_GetArrayLength (21 samples, 0.01%)</title><rect x="99.4678%" y="933" width="0.0143%" height="15" fill="rgb(252,70,16)" fg:x="145588" fg:w="21"/><text x="99.7178%" y="943.50"></text></g><g><title>jni_GetObjectField (53 samples, 0.04%)</title><rect x="99.4821%" y="933" width="0.0362%" height="15" fill="rgb(250,177,4)" fg:x="145609" fg:w="53"/><text x="99.7321%" y="943.50"></text></g><g><title>[libc-2.31.so] (86 samples, 0.06%)</title><rect x="99.5402%" y="917" width="0.0588%" height="15" fill="rgb(240,188,47)" fg:x="145694" fg:w="86"/><text x="99.7902%" y="927.50"></text></g><g><title>readBytes (849 samples, 0.58%)</title><rect x="99.0216%" y="949" width="0.5800%" height="15" fill="rgb(215,92,12)" fg:x="144935" fg:w="849"/><text x="99.2716%" y="959.50"></text></g><g><title>jni_SetByteArrayRegion (122 samples, 0.08%)</title><rect x="99.5183%" y="933" width="0.0834%" height="15" fill="rgb(242,110,29)" fg:x="145662" fg:w="122"/><text x="99.7683%" y="943.50"></text></g><g><title>[unknown] (1,223 samples, 0.84%)</title><rect x="98.7736%" y="965" width="0.8356%" height="15" fill="rgb(208,211,26)" fg:x="144572" fg:w="1223"/><text x="99.0236%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (113 samples, 0.08%)</title><rect x="99.6194%" y="901" width="0.0772%" height="15" fill="rgb(244,147,6)" fg:x="145810" fg:w="113"/><text x="99.8694%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (113 samples, 0.08%)</title><rect x="99.6194%" y="885" width="0.0772%" height="15" fill="rgb(211,130,42)" fg:x="145810" fg:w="113"/><text x="99.8694%" y="895.50"></text></g><g><title>native_write_msr (113 samples, 0.08%)</title><rect x="99.6194%" y="869" width="0.0772%" height="15" fill="rgb(220,63,1)" fg:x="145810" fg:w="113"/><text x="99.8694%" y="879.50"></text></g><g><title>schedule_tail (120 samples, 0.08%)</title><rect x="99.6188%" y="933" width="0.0820%" height="15" fill="rgb(241,212,30)" fg:x="145809" fg:w="120"/><text x="99.8688%" y="943.50"></text></g><g><title>finish_task_switch (120 samples, 0.08%)</title><rect x="99.6188%" y="917" width="0.0820%" height="15" fill="rgb(233,153,17)" fg:x="145809" fg:w="120"/><text x="99.8688%" y="927.50"></text></g><g><title>ret_from_fork (122 samples, 0.08%)</title><rect x="99.6181%" y="949" width="0.0834%" height="15" fill="rgb(236,3,10)" fg:x="145808" fg:w="122"/><text x="99.8681%" y="959.50"></text></g><g><title>JavaThread::run (23 samples, 0.02%)</title><rect x="99.7158%" y="901" width="0.0157%" height="15" fill="rgb(232,41,21)" fg:x="145951" fg:w="23"/><text x="99.9658%" y="911.50"></text></g><g><title>JavaThread::exit (17 samples, 0.01%)</title><rect x="99.7315%" y="885" width="0.0116%" height="15" fill="rgb(206,63,51)" fg:x="145974" fg:w="17"/><text x="99.9815%" y="895.50"></text></g><g><title>Thread::call_run (43 samples, 0.03%)</title><rect x="99.7158%" y="917" width="0.0294%" height="15" fill="rgb(250,214,3)" fg:x="145951" fg:w="43"/><text x="99.9658%" y="927.50"></text></g><g><title>JavaThread::thread_main_inner (20 samples, 0.01%)</title><rect x="99.7315%" y="901" width="0.0137%" height="15" fill="rgb(254,89,27)" fg:x="145974" fg:w="20"/><text x="99.9815%" y="911.50"></text></g><g><title>__GI___clone (207 samples, 0.14%)</title><rect x="99.6092%" y="965" width="0.1414%" height="15" fill="rgb(249,41,14)" fg:x="145795" fg:w="207"/><text x="99.8592%" y="975.50"></text></g><g><title>start_thread (72 samples, 0.05%)</title><rect x="99.7014%" y="949" width="0.0492%" height="15" fill="rgb(221,196,51)" fg:x="145930" fg:w="72"/><text x="99.9514%" y="959.50"></text></g><g><title>thread_native_entry (61 samples, 0.04%)</title><rect x="99.7090%" y="933" width="0.0417%" height="15" fill="rgb(214,116,26)" fg:x="145941" fg:w="61"/><text x="99.9590%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="99.7711%" y="965" width="0.0157%" height="15" fill="rgb(236,67,7)" fg:x="146032" fg:w="23"/><text x="100.0211%" y="975.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="99.7745%" y="949" width="0.0123%" height="15" fill="rgb(253,179,32)" fg:x="146037" fg:w="18"/><text x="100.0245%" y="959.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (21 samples, 0.01%)</title><rect x="99.7868%" y="965" width="0.0143%" height="15" fill="rgb(218,33,15)" fg:x="146055" fg:w="21"/><text x="100.0368%" y="975.50"></text></g><g><title>skyframe-evalua (45,270 samples, 30.93%)</title><rect x="68.8837%" y="981" width="30.9291%" height="15" fill="rgb(217,202,41)" fg:x="100823" fg:w="45270"/><text x="69.1337%" y="991.50">skyframe-evalua</text></g><g><title>Monitor::IWait (15 samples, 0.01%)</title><rect x="99.8497%" y="869" width="0.0102%" height="15" fill="rgb(234,133,5)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="879.50"></text></g><g><title>os::PlatformEvent::park (15 samples, 0.01%)</title><rect x="99.8497%" y="853" width="0.0102%" height="15" fill="rgb(240,47,40)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="863.50"></text></g><g><title>__pthread_cond_wait (15 samples, 0.01%)</title><rect x="99.8497%" y="837" width="0.0102%" height="15" fill="rgb(234,166,26)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (15 samples, 0.01%)</title><rect x="99.8497%" y="821" width="0.0102%" height="15" fill="rgb(244,125,51)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="831.50"></text></g><g><title>futex_wait_cancelable (15 samples, 0.01%)</title><rect x="99.8497%" y="805" width="0.0102%" height="15" fill="rgb(229,171,11)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="99.8497%" y="789" width="0.0102%" height="15" fill="rgb(224,38,45)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="799.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="99.8497%" y="773" width="0.0102%" height="15" fill="rgb(237,27,7)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="783.50"></text></g><g><title>__x64_sys_futex (15 samples, 0.01%)</title><rect x="99.8497%" y="757" width="0.0102%" height="15" fill="rgb(216,52,7)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="767.50"></text></g><g><title>do_futex (15 samples, 0.01%)</title><rect x="99.8497%" y="741" width="0.0102%" height="15" fill="rgb(243,11,11)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="751.50"></text></g><g><title>futex_wait (15 samples, 0.01%)</title><rect x="99.8497%" y="725" width="0.0102%" height="15" fill="rgb(253,167,20)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="735.50"></text></g><g><title>futex_wait_queue_me (15 samples, 0.01%)</title><rect x="99.8497%" y="709" width="0.0102%" height="15" fill="rgb(215,207,5)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="719.50"></text></g><g><title>schedule (15 samples, 0.01%)</title><rect x="99.8497%" y="693" width="0.0102%" height="15" fill="rgb(252,127,31)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="703.50"></text></g><g><title>__schedule (15 samples, 0.01%)</title><rect x="99.8497%" y="677" width="0.0102%" height="15" fill="rgb(209,106,27)" fg:x="146147" fg:w="15"/><text x="100.0997%" y="687.50"></text></g><g><title>Monitor::wait (22 samples, 0.02%)</title><rect x="99.8497%" y="885" width="0.0150%" height="15" fill="rgb(214,220,18)" fg:x="146147" fg:w="22"/><text x="100.0997%" y="895.50"></text></g><g><title>InterpreterRuntime::monitorenter (23 samples, 0.02%)</title><rect x="99.8497%" y="949" width="0.0157%" height="15" fill="rgb(237,89,12)" fg:x="146147" fg:w="23"/><text x="100.0997%" y="959.50"></text></g><g><title>ObjectSynchronizer::fast_enter (23 samples, 0.02%)</title><rect x="99.8497%" y="933" width="0.0157%" height="15" fill="rgb(209,167,36)" fg:x="146147" fg:w="23"/><text x="100.0997%" y="943.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (23 samples, 0.02%)</title><rect x="99.8497%" y="917" width="0.0157%" height="15" fill="rgb(243,45,22)" fg:x="146147" fg:w="23"/><text x="100.0997%" y="927.50"></text></g><g><title>VMThread::execute (23 samples, 0.02%)</title><rect x="99.8497%" y="901" width="0.0157%" height="15" fill="rgb(239,2,46)" fg:x="146147" fg:w="23"/><text x="100.0997%" y="911.50"></text></g><g><title>JVM_IHashCode (15 samples, 0.01%)</title><rect x="99.8668%" y="949" width="0.0102%" height="15" fill="rgb(241,101,0)" fg:x="146172" fg:w="15"/><text x="100.1168%" y="959.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (15 samples, 0.01%)</title><rect x="99.8668%" y="933" width="0.0102%" height="15" fill="rgb(244,34,31)" fg:x="146172" fg:w="15"/><text x="100.1168%" y="943.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (15 samples, 0.01%)</title><rect x="99.8668%" y="917" width="0.0102%" height="15" fill="rgb(248,23,22)" fg:x="146172" fg:w="15"/><text x="100.1168%" y="927.50"></text></g><g><title>VMThread::execute (15 samples, 0.01%)</title><rect x="99.8668%" y="901" width="0.0102%" height="15" fill="rgb(218,27,48)" fg:x="146172" fg:w="15"/><text x="100.1168%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (86 samples, 0.06%)</title><rect x="99.8962%" y="725" width="0.0588%" height="15" fill="rgb(232,78,1)" fg:x="146215" fg:w="86"/><text x="100.1462%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (85 samples, 0.06%)</title><rect x="99.8968%" y="709" width="0.0581%" height="15" fill="rgb(233,169,12)" fg:x="146216" fg:w="85"/><text x="100.1468%" y="719.50"></text></g><g><title>native_write_msr (85 samples, 0.06%)</title><rect x="99.8968%" y="693" width="0.0581%" height="15" fill="rgb(225,222,54)" fg:x="146216" fg:w="85"/><text x="100.1468%" y="703.50"></text></g><g><title>finish_task_switch (94 samples, 0.06%)</title><rect x="99.8941%" y="741" width="0.0642%" height="15" fill="rgb(245,126,29)" fg:x="146212" fg:w="94"/><text x="100.1441%" y="751.50"></text></g><g><title>do_syscall_64 (98 samples, 0.07%)</title><rect x="99.8921%" y="853" width="0.0670%" height="15" fill="rgb(241,63,48)" fg:x="146209" fg:w="98"/><text x="100.1421%" y="863.50"></text></g><g><title>__x64_sys_futex (98 samples, 0.07%)</title><rect x="99.8921%" y="837" width="0.0670%" height="15" fill="rgb(235,126,38)" fg:x="146209" fg:w="98"/><text x="100.1421%" y="847.50"></text></g><g><title>do_futex (98 samples, 0.07%)</title><rect x="99.8921%" y="821" width="0.0670%" height="15" fill="rgb(232,96,49)" fg:x="146209" fg:w="98"/><text x="100.1421%" y="831.50"></text></g><g><title>futex_wait (98 samples, 0.07%)</title><rect x="99.8921%" y="805" width="0.0670%" height="15" fill="rgb(211,146,40)" fg:x="146209" fg:w="98"/><text x="100.1421%" y="815.50"></text></g><g><title>futex_wait_queue_me (96 samples, 0.07%)</title><rect x="99.8934%" y="789" width="0.0656%" height="15" fill="rgb(247,93,44)" fg:x="146211" fg:w="96"/><text x="100.1434%" y="799.50"></text></g><g><title>schedule (95 samples, 0.06%)</title><rect x="99.8941%" y="773" width="0.0649%" height="15" fill="rgb(251,41,49)" fg:x="146212" fg:w="95"/><text x="100.1441%" y="783.50"></text></g><g><title>__schedule (95 samples, 0.06%)</title><rect x="99.8941%" y="757" width="0.0649%" height="15" fill="rgb(218,155,12)" fg:x="146212" fg:w="95"/><text x="100.1441%" y="767.50"></text></g><g><title>__pthread_cond_wait (100 samples, 0.07%)</title><rect x="99.8914%" y="917" width="0.0683%" height="15" fill="rgb(221,161,30)" fg:x="146208" fg:w="100"/><text x="100.1414%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (100 samples, 0.07%)</title><rect x="99.8914%" y="901" width="0.0683%" height="15" fill="rgb(221,179,11)" fg:x="146208" fg:w="100"/><text x="100.1414%" y="911.50"></text></g><g><title>futex_wait_cancelable (100 samples, 0.07%)</title><rect x="99.8914%" y="885" width="0.0683%" height="15" fill="rgb(224,170,48)" fg:x="146208" fg:w="100"/><text x="100.1414%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (99 samples, 0.07%)</title><rect x="99.8921%" y="869" width="0.0676%" height="15" fill="rgb(223,117,5)" fg:x="146209" fg:w="99"/><text x="100.1421%" y="879.50"></text></g><g><title>Unsafe_Park (104 samples, 0.07%)</title><rect x="99.8893%" y="949" width="0.0711%" height="15" fill="rgb(209,52,20)" fg:x="146205" fg:w="104"/><text x="100.1393%" y="959.50"></text></g><g><title>Parker::park (104 samples, 0.07%)</title><rect x="99.8893%" y="933" width="0.0711%" height="15" fill="rgb(209,19,41)" fg:x="146205" fg:w="104"/><text x="100.1393%" y="943.50"></text></g><g><title>[perf-270039.map] (224 samples, 0.15%)</title><rect x="99.8183%" y="965" width="0.1530%" height="15" fill="rgb(210,177,12)" fg:x="146101" fg:w="224"/><text x="100.0683%" y="975.50"></text></g><g><title>[unknown] (34 samples, 0.02%)</title><rect x="99.9713%" y="965" width="0.0232%" height="15" fill="rgb(211,159,37)" fg:x="146325" fg:w="34"/><text x="100.2213%" y="975.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (15 samples, 0.01%)</title><rect x="99.9843%" y="949" width="0.0102%" height="15" fill="rgb(209,20,2)" fg:x="146344" fg:w="15"/><text x="100.2343%" y="959.50"></text></g><g><title>SafepointSynchronize::block (15 samples, 0.01%)</title><rect x="99.9843%" y="933" width="0.0102%" height="15" fill="rgb(244,3,46)" fg:x="146344" fg:w="15"/><text x="100.2343%" y="943.50"></text></g><g><title>skyframe-invali (273 samples, 0.19%)</title><rect x="99.8128%" y="981" width="0.1865%" height="15" fill="rgb(220,94,38)" fg:x="146093" fg:w="273"/><text x="100.0628%" y="991.50"></text></g><g><title>all (146,367 samples, 100%)</title><rect x="0.0000%" y="997" width="100.0000%" height="15" fill="rgb(253,14,31)" fg:x="0" fg:w="146367"/><text x="0.2500%" y="1007.50"></text></g></svg></svg> -\ No newline at end of file diff --git a/results/llvm-j1.svg b/results/llvm-j1.svg @@ -0,0 +1,491 @@ +<?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="950" onload="init(evt)" viewBox="0 0 1200 950" 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="950" 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="933.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="933.00"> </text><svg id="frames" x="10" width="1180" total_samples="151062"><g><title>ActionLookupVal (19 samples, 0.01%)</title><rect x="0.0000%" y="885" width="0.0126%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="19"/><text x="0.2500%" y="895.50"></text></g><g><title>JavaThread::is_Java_thread (16 samples, 0.01%)</title><rect x="0.2727%" y="853" width="0.0106%" height="15" fill="rgb(217,0,24)" fg:x="412" fg:w="16"/><text x="0.5227%" y="863.50"></text></g><g><title>_dl_update_slotinfo (112 samples, 0.07%)</title><rect x="0.5700%" y="853" width="0.0741%" height="15" fill="rgb(221,193,54)" fg:x="861" fg:w="112"/><text x="0.8200%" y="863.50"></text></g><g><title>resource_allocate_bytes (18 samples, 0.01%)</title><rect x="0.7169%" y="853" width="0.0119%" height="15" fill="rgb(248,212,6)" fg:x="1083" fg:w="18"/><text x="0.9669%" y="863.50"></text></g><g><title>update_get_addr (36 samples, 0.02%)</title><rect x="0.7374%" y="853" width="0.0238%" height="15" fill="rgb(208,68,35)" fg:x="1114" fg:w="36"/><text x="0.9874%" y="863.50"></text></g><g><title>[anon] (1,104 samples, 0.73%)</title><rect x="0.0311%" y="869" width="0.7308%" height="15" fill="rgb(232,128,0)" fg:x="47" fg:w="1104"/><text x="0.2811%" y="879.50"></text></g><g><title>[perf-983083.map] (141 samples, 0.09%)</title><rect x="0.7633%" y="869" width="0.0933%" height="15" fill="rgb(207,160,47)" fg:x="1153" fg:w="141"/><text x="1.0133%" y="879.50"></text></g><g><title>_dl_update_slotinfo (24 samples, 0.02%)</title><rect x="0.8930%" y="853" width="0.0159%" height="15" fill="rgb(228,23,34)" fg:x="1349" fg:w="24"/><text x="1.1430%" y="863.50"></text></g><g><title>[unknown] (91 samples, 0.06%)</title><rect x="0.8566%" y="869" width="0.0602%" height="15" fill="rgb(218,30,26)" fg:x="1294" fg:w="91"/><text x="1.1066%" y="879.50"></text></g><g><title>CompileBroker::collect_statistics (16 samples, 0.01%)</title><rect x="0.9334%" y="757" width="0.0106%" height="15" fill="rgb(220,122,19)" fg:x="1410" fg:w="16"/><text x="1.1834%" y="767.50"></text></g><g><title>jio_vsnprintf (34 samples, 0.02%)</title><rect x="0.9480%" y="725" width="0.0225%" height="15" fill="rgb(250,228,42)" fg:x="1432" fg:w="34"/><text x="1.1980%" y="735.50"></text></g><g><title>os::vsnprintf (34 samples, 0.02%)</title><rect x="0.9480%" y="709" width="0.0225%" height="15" fill="rgb(240,193,28)" fg:x="1432" fg:w="34"/><text x="1.1980%" y="719.50"></text></g><g><title>__vsnprintf_internal (34 samples, 0.02%)</title><rect x="0.9480%" y="693" width="0.0225%" height="15" fill="rgb(216,20,37)" fg:x="1432" fg:w="34"/><text x="1.1980%" y="703.50"></text></g><g><title>__vfprintf_internal (32 samples, 0.02%)</title><rect x="0.9493%" y="677" width="0.0212%" height="15" fill="rgb(206,188,39)" fg:x="1434" fg:w="32"/><text x="1.1993%" y="687.50"></text></g><g><title>CompileBroker::post_compile (42 samples, 0.03%)</title><rect x="0.9440%" y="757" width="0.0278%" height="15" fill="rgb(217,207,13)" fg:x="1426" fg:w="42"/><text x="1.1940%" y="767.50"></text></g><g><title>StringEventLog::log (41 samples, 0.03%)</title><rect x="0.9446%" y="741" width="0.0271%" height="15" fill="rgb(231,73,38)" fg:x="1427" fg:w="41"/><text x="1.1946%" y="751.50"></text></g><g><title>Symbol::print_symbol_on (21 samples, 0.01%)</title><rect x="0.9963%" y="725" width="0.0139%" height="15" fill="rgb(225,20,46)" fg:x="1505" fg:w="21"/><text x="1.2463%" y="735.50"></text></g><g><title>Method::print_short_name (50 samples, 0.03%)</title><rect x="0.9850%" y="741" width="0.0331%" height="15" fill="rgb(210,31,41)" fg:x="1488" fg:w="50"/><text x="1.2350%" y="751.50"></text></g><g><title>os::vsnprintf (30 samples, 0.02%)</title><rect x="1.0234%" y="709" width="0.0199%" height="15" fill="rgb(221,200,47)" fg:x="1546" fg:w="30"/><text x="1.2734%" y="719.50"></text></g><g><title>__vsnprintf_internal (27 samples, 0.02%)</title><rect x="1.0254%" y="693" width="0.0179%" height="15" fill="rgb(226,26,5)" fg:x="1549" fg:w="27"/><text x="1.2754%" y="703.50"></text></g><g><title>__vfprintf_internal (25 samples, 0.02%)</title><rect x="1.0267%" y="677" width="0.0165%" height="15" fill="rgb(249,33,26)" fg:x="1551" fg:w="25"/><text x="1.2767%" y="687.50"></text></g><g><title>CompileTask::print (100 samples, 0.07%)</title><rect x="0.9830%" y="757" width="0.0662%" height="15" fill="rgb(235,183,28)" fg:x="1485" fg:w="100"/><text x="1.2330%" y="767.50"></text></g><g><title>outputStream::print (47 samples, 0.03%)</title><rect x="1.0181%" y="741" width="0.0311%" height="15" fill="rgb(221,5,38)" fg:x="1538" fg:w="47"/><text x="1.2681%" y="751.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (46 samples, 0.03%)</title><rect x="1.0188%" y="725" width="0.0305%" height="15" fill="rgb(247,18,42)" fg:x="1539" fg:w="46"/><text x="1.2688%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (17 samples, 0.01%)</title><rect x="1.1254%" y="549" width="0.0113%" height="15" fill="rgb(241,131,45)" fg:x="1700" fg:w="17"/><text x="1.3754%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (25 samples, 0.02%)</title><rect x="1.1240%" y="565" width="0.0165%" height="15" fill="rgb(249,31,29)" fg:x="1698" fg:w="25"/><text x="1.3740%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (34 samples, 0.02%)</title><rect x="1.1234%" y="581" width="0.0225%" height="15" fill="rgb(225,111,53)" fg:x="1697" fg:w="34"/><text x="1.3734%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (45 samples, 0.03%)</title><rect x="1.1227%" y="597" width="0.0298%" height="15" fill="rgb(238,160,17)" fg:x="1696" fg:w="45"/><text x="1.3727%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (74 samples, 0.05%)</title><rect x="1.1194%" y="613" width="0.0490%" height="15" fill="rgb(214,148,48)" fg:x="1691" fg:w="74"/><text x="1.3694%" y="623.50"></text></g><g><title>SubstitutionResolver::block_do (24 samples, 0.02%)</title><rect x="1.1525%" y="597" width="0.0159%" height="15" fill="rgb(232,36,49)" fg:x="1741" fg:w="24"/><text x="1.4025%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (114 samples, 0.08%)</title><rect x="1.1194%" y="629" width="0.0755%" height="15" fill="rgb(209,103,24)" fg:x="1691" fg:w="114"/><text x="1.3694%" y="639.50"></text></g><g><title>SubstitutionResolver::block_do (40 samples, 0.03%)</title><rect x="1.1684%" y="613" width="0.0265%" height="15" fill="rgb(229,88,8)" fg:x="1765" fg:w="40"/><text x="1.4184%" y="623.50"></text></g><g><title>ValueStack::values_do (17 samples, 0.01%)</title><rect x="1.1836%" y="597" width="0.0113%" height="15" fill="rgb(213,181,19)" fg:x="1788" fg:w="17"/><text x="1.4336%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (169 samples, 0.11%)</title><rect x="1.1148%" y="645" width="0.1119%" height="15" fill="rgb(254,191,54)" fg:x="1684" fg:w="169"/><text x="1.3648%" y="655.50"></text></g><g><title>SubstitutionResolver::block_do (48 samples, 0.03%)</title><rect x="1.1949%" y="629" width="0.0318%" height="15" fill="rgb(241,83,37)" fg:x="1805" fg:w="48"/><text x="1.4449%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (170 samples, 0.11%)</title><rect x="1.1148%" y="661" width="0.1125%" height="15" fill="rgb(233,36,39)" fg:x="1684" fg:w="170"/><text x="1.3648%" y="671.50"></text></g><g><title>ValueMap::ValueMap (19 samples, 0.01%)</title><rect x="1.2306%" y="661" width="0.0126%" height="15" fill="rgb(226,3,54)" fg:x="1859" fg:w="19"/><text x="1.4806%" y="671.50"></text></g><g><title>ValueMap::find_insert (45 samples, 0.03%)</title><rect x="1.2432%" y="661" width="0.0298%" height="15" fill="rgb(245,192,40)" fg:x="1878" fg:w="45"/><text x="1.4932%" y="671.50"></text></g><g><title>ValueMap::kill_memory (24 samples, 0.02%)</title><rect x="1.2756%" y="661" width="0.0159%" height="15" fill="rgb(238,167,29)" fg:x="1927" fg:w="24"/><text x="1.5256%" y="671.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (333 samples, 0.22%)</title><rect x="1.0764%" y="677" width="0.2204%" height="15" fill="rgb(232,182,51)" fg:x="1626" fg:w="333"/><text x="1.3264%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (21 samples, 0.01%)</title><rect x="1.3180%" y="549" width="0.0139%" height="15" fill="rgb(231,60,39)" fg:x="1991" fg:w="21"/><text x="1.5680%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (25 samples, 0.02%)</title><rect x="1.3173%" y="565" width="0.0165%" height="15" fill="rgb(208,69,12)" fg:x="1990" fg:w="25"/><text x="1.5673%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (38 samples, 0.03%)</title><rect x="1.3154%" y="581" width="0.0252%" height="15" fill="rgb(235,93,37)" fg:x="1987" fg:w="38"/><text x="1.5654%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (48 samples, 0.03%)</title><rect x="1.3140%" y="597" width="0.0318%" height="15" fill="rgb(213,116,39)" fg:x="1985" fg:w="48"/><text x="1.5640%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (71 samples, 0.05%)</title><rect x="1.3101%" y="613" width="0.0470%" height="15" fill="rgb(222,207,29)" fg:x="1979" fg:w="71"/><text x="1.5601%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (92 samples, 0.06%)</title><rect x="1.3028%" y="629" width="0.0609%" height="15" fill="rgb(206,96,30)" fg:x="1968" fg:w="92"/><text x="1.5528%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (95 samples, 0.06%)</title><rect x="1.3015%" y="645" width="0.0629%" height="15" fill="rgb(218,138,4)" fg:x="1966" fg:w="95"/><text x="1.5515%" y="655.50"></text></g><g><title>BlockListBuilder::make_block_at (16 samples, 0.01%)</title><rect x="1.3875%" y="613" width="0.0106%" height="15" fill="rgb(250,191,14)" fg:x="2096" fg:w="16"/><text x="1.6375%" y="623.50"></text></g><g><title>ciMethod::get_method_blocks (25 samples, 0.02%)</title><rect x="1.4365%" y="565" width="0.0165%" height="15" fill="rgb(239,60,40)" fg:x="2170" fg:w="25"/><text x="1.6865%" y="575.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (25 samples, 0.02%)</title><rect x="1.4365%" y="549" width="0.0165%" height="15" fill="rgb(206,27,48)" fg:x="2170" fg:w="25"/><text x="1.6865%" y="559.50"></text></g><g><title>ciMethodBlocks::do_analysis (16 samples, 0.01%)</title><rect x="1.4425%" y="533" width="0.0106%" height="15" fill="rgb(225,35,8)" fg:x="2179" fg:w="16"/><text x="1.6925%" y="543.50"></text></g><g><title>MethodLiveness::init_basic_blocks (57 samples, 0.04%)</title><rect x="1.4160%" y="581" width="0.0377%" height="15" fill="rgb(250,213,24)" fg:x="2139" fg:w="57"/><text x="1.6660%" y="591.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (129 samples, 0.09%)</title><rect x="1.3690%" y="645" width="0.0854%" height="15" fill="rgb(247,123,22)" fg:x="2068" fg:w="129"/><text x="1.6190%" y="655.50"></text></g><g><title>BlockListBuilder::set_leaders (114 samples, 0.08%)</title><rect x="1.3789%" y="629" width="0.0755%" height="15" fill="rgb(231,138,38)" fg:x="2083" fg:w="114"/><text x="1.6289%" y="639.50"></text></g><g><title>ciMethod::bci_block_start (84 samples, 0.06%)</title><rect x="1.3988%" y="613" width="0.0556%" height="15" fill="rgb(231,145,46)" fg:x="2113" fg:w="84"/><text x="1.6488%" y="623.50"></text></g><g><title>MethodLiveness::compute_liveness (82 samples, 0.05%)</title><rect x="1.4001%" y="597" width="0.0543%" height="15" fill="rgb(251,118,11)" fg:x="2115" fg:w="82"/><text x="1.6501%" y="607.50"></text></g><g><title>ValueStack::ValueStack (20 samples, 0.01%)</title><rect x="1.4676%" y="613" width="0.0132%" height="15" fill="rgb(217,147,25)" fg:x="2217" fg:w="20"/><text x="1.7176%" y="623.50"></text></g><g><title>GraphBuilder::connect_to_end (27 samples, 0.02%)</title><rect x="1.4643%" y="629" width="0.0179%" height="15" fill="rgb(247,81,37)" fg:x="2212" fg:w="27"/><text x="1.7143%" y="639.50"></text></g><g><title>BlockBegin::try_merge (33 samples, 0.02%)</title><rect x="1.5133%" y="613" width="0.0218%" height="15" fill="rgb(209,12,38)" fg:x="2286" fg:w="33"/><text x="1.7633%" y="623.50"></text></g><g><title>SymbolTable::lookup (17 samples, 0.01%)</title><rect x="1.5934%" y="517" width="0.0113%" height="15" fill="rgb(227,1,9)" fg:x="2407" fg:w="17"/><text x="1.8434%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (19 samples, 0.01%)</title><rect x="1.6073%" y="517" width="0.0126%" height="15" fill="rgb(248,47,43)" fg:x="2428" fg:w="19"/><text x="1.8573%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (52 samples, 0.03%)</title><rect x="1.5927%" y="533" width="0.0344%" height="15" fill="rgb(221,10,30)" fg:x="2406" fg:w="52"/><text x="1.8427%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (67 samples, 0.04%)</title><rect x="1.5854%" y="549" width="0.0444%" height="15" fill="rgb(210,229,1)" fg:x="2395" fg:w="67"/><text x="1.8354%" y="559.50"></text></g><g><title>ciField::ciField (96 samples, 0.06%)</title><rect x="1.5749%" y="565" width="0.0636%" height="15" fill="rgb(222,148,37)" fg:x="2379" fg:w="96"/><text x="1.8249%" y="575.50"></text></g><g><title>ciEnv::get_field_by_index (106 samples, 0.07%)</title><rect x="1.5709%" y="581" width="0.0702%" height="15" fill="rgb(234,67,33)" fg:x="2373" fg:w="106"/><text x="1.8209%" y="591.50"></text></g><g><title>ciBytecodeStream::get_field (123 samples, 0.08%)</title><rect x="1.5676%" y="597" width="0.0814%" height="15" fill="rgb(247,98,35)" fg:x="2368" fg:w="123"/><text x="1.8176%" y="607.50"></text></g><g><title>GraphBuilder::access_field (178 samples, 0.12%)</title><rect x="1.5391%" y="613" width="0.1178%" height="15" fill="rgb(247,138,52)" fg:x="2325" fg:w="178"/><text x="1.7891%" y="623.50"></text></g><g><title>GraphBuilder::append_with_bci (21 samples, 0.01%)</title><rect x="1.6569%" y="613" width="0.0139%" height="15" fill="rgb(213,79,30)" fg:x="2503" fg:w="21"/><text x="1.9069%" y="623.50"></text></g><g><title>GraphBuilder::check_cast (16 samples, 0.01%)</title><rect x="1.6715%" y="613" width="0.0106%" height="15" fill="rgb(246,177,23)" fg:x="2525" fg:w="16"/><text x="1.9215%" y="623.50"></text></g><g><title>GraphBuilder::append_with_bci (21 samples, 0.01%)</title><rect x="1.7211%" y="597" width="0.0139%" height="15" fill="rgb(230,62,27)" fg:x="2600" fg:w="21"/><text x="1.9711%" y="607.50"></text></g><g><title>BlockBegin::try_merge (36 samples, 0.02%)</title><rect x="1.8092%" y="533" width="0.0238%" height="15" fill="rgb(216,154,8)" fg:x="2733" fg:w="36"/><text x="2.0592%" y="543.50"></text></g><g><title>GraphBuilder::append_with_bci (16 samples, 0.01%)</title><rect x="1.8430%" y="517" width="0.0106%" height="15" fill="rgb(244,35,45)" fg:x="2784" fg:w="16"/><text x="2.0930%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (31 samples, 0.02%)</title><rect x="1.8754%" y="453" width="0.0205%" height="15" fill="rgb(251,115,12)" fg:x="2833" fg:w="31"/><text x="2.1254%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (38 samples, 0.03%)</title><rect x="1.8741%" y="469" width="0.0252%" height="15" fill="rgb(240,54,50)" fg:x="2831" fg:w="38"/><text x="2.1241%" y="479.50"></text></g><g><title>ciField::ciField (64 samples, 0.04%)</title><rect x="1.8648%" y="485" width="0.0424%" height="15" fill="rgb(233,84,52)" fg:x="2817" fg:w="64"/><text x="2.1148%" y="495.50"></text></g><g><title>ciEnv::get_field_by_index (72 samples, 0.05%)</title><rect x="1.8608%" y="501" width="0.0477%" height="15" fill="rgb(207,117,47)" fg:x="2811" fg:w="72"/><text x="2.1108%" y="511.50"></text></g><g><title>ciBytecodeStream::get_field (82 samples, 0.05%)</title><rect x="1.8608%" y="517" width="0.0543%" height="15" fill="rgb(249,43,39)" fg:x="2811" fg:w="82"/><text x="2.1108%" y="527.50"></text></g><g><title>GraphBuilder::access_field (120 samples, 0.08%)</title><rect x="1.8390%" y="533" width="0.0794%" height="15" fill="rgb(209,38,44)" fg:x="2778" fg:w="120"/><text x="2.0890%" y="543.50"></text></g><g><title>BlockBegin::try_merge (17 samples, 0.01%)</title><rect x="1.9873%" y="453" width="0.0113%" height="15" fill="rgb(236,212,23)" fg:x="3002" fg:w="17"/><text x="2.2373%" y="463.50"></text></g><g><title>ciField::ciField (37 samples, 0.02%)</title><rect x="2.0137%" y="405" width="0.0245%" height="15" fill="rgb(242,79,21)" fg:x="3042" fg:w="37"/><text x="2.2637%" y="415.50"></text></g><g><title>ciEnv::get_field_by_index (41 samples, 0.03%)</title><rect x="2.0118%" y="421" width="0.0271%" height="15" fill="rgb(211,96,35)" fg:x="3039" fg:w="41"/><text x="2.2618%" y="431.50"></text></g><g><title>ciBytecodeStream::get_field (47 samples, 0.03%)</title><rect x="2.0118%" y="437" width="0.0311%" height="15" fill="rgb(253,215,40)" fg:x="3039" fg:w="47"/><text x="2.2618%" y="447.50"></text></g><g><title>GraphBuilder::access_field (62 samples, 0.04%)</title><rect x="2.0038%" y="453" width="0.0410%" height="15" fill="rgb(211,81,21)" fg:x="3027" fg:w="62"/><text x="2.2538%" y="463.50"></text></g><g><title>ciEnv::get_field_by_index (17 samples, 0.01%)</title><rect x="2.0859%" y="341" width="0.0113%" height="15" fill="rgb(208,190,38)" fg:x="3151" fg:w="17"/><text x="2.3359%" y="351.50"></text></g><g><title>ciBytecodeStream::get_field (20 samples, 0.01%)</title><rect x="2.0859%" y="357" width="0.0132%" height="15" fill="rgb(235,213,38)" fg:x="3151" fg:w="20"/><text x="2.3359%" y="367.50"></text></g><g><title>GraphBuilder::access_field (28 samples, 0.02%)</title><rect x="2.0819%" y="373" width="0.0185%" height="15" fill="rgb(237,122,38)" fg:x="3145" fg:w="28"/><text x="2.3319%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (18 samples, 0.01%)</title><rect x="2.1309%" y="245" width="0.0119%" height="15" fill="rgb(244,218,35)" fg:x="3219" fg:w="18"/><text x="2.3809%" y="255.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (18 samples, 0.01%)</title><rect x="2.1309%" y="229" width="0.0119%" height="15" fill="rgb(240,68,47)" fg:x="3219" fg:w="18"/><text x="2.3809%" y="239.50"></text></g><g><title>GraphBuilder::try_inline (28 samples, 0.02%)</title><rect x="2.1296%" y="277" width="0.0185%" height="15" fill="rgb(210,16,53)" fg:x="3217" fg:w="28"/><text x="2.3796%" y="287.50"></text></g><g><title>GraphBuilder::try_inline_full (28 samples, 0.02%)</title><rect x="2.1296%" y="261" width="0.0185%" height="15" fill="rgb(235,124,12)" fg:x="3217" fg:w="28"/><text x="2.3796%" y="271.50"></text></g><g><title>GraphBuilder::invoke (43 samples, 0.03%)</title><rect x="2.1283%" y="293" width="0.0285%" height="15" fill="rgb(224,169,11)" fg:x="3215" fg:w="43"/><text x="2.3783%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (72 samples, 0.05%)</title><rect x="2.1170%" y="325" width="0.0477%" height="15" fill="rgb(250,166,2)" fg:x="3198" fg:w="72"/><text x="2.3670%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (70 samples, 0.05%)</title><rect x="2.1183%" y="309" width="0.0463%" height="15" fill="rgb(242,216,29)" fg:x="3200" fg:w="70"/><text x="2.3683%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (112 samples, 0.07%)</title><rect x="2.1130%" y="341" width="0.0741%" height="15" fill="rgb(230,116,27)" fg:x="3192" fg:w="112"/><text x="2.3630%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (123 samples, 0.08%)</title><rect x="2.1124%" y="357" width="0.0814%" height="15" fill="rgb(228,99,48)" fg:x="3191" fg:w="123"/><text x="2.3624%" y="367.50"></text></g><g><title>ciBytecodeStream::get_method (32 samples, 0.02%)</title><rect x="2.1958%" y="357" width="0.0212%" height="15" fill="rgb(253,11,6)" fg:x="3317" fg:w="32"/><text x="2.4458%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (29 samples, 0.02%)</title><rect x="2.1978%" y="341" width="0.0192%" height="15" fill="rgb(247,143,39)" fg:x="3320" fg:w="29"/><text x="2.4478%" y="351.50"></text></g><g><title>ciObjectFactory::get_metadata (16 samples, 0.01%)</title><rect x="2.2064%" y="325" width="0.0106%" height="15" fill="rgb(236,97,10)" fg:x="3333" fg:w="16"/><text x="2.4564%" y="335.50"></text></g><g><title>GraphBuilder::invoke (172 samples, 0.11%)</title><rect x="2.1071%" y="373" width="0.1139%" height="15" fill="rgb(233,208,19)" fg:x="3183" fg:w="172"/><text x="2.3571%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (243 samples, 0.16%)</title><rect x="2.0713%" y="405" width="0.1609%" height="15" fill="rgb(216,164,2)" fg:x="3129" fg:w="243"/><text x="2.3213%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (238 samples, 0.16%)</title><rect x="2.0746%" y="389" width="0.1576%" height="15" fill="rgb(220,129,5)" fg:x="3134" fg:w="238"/><text x="2.3246%" y="399.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (19 samples, 0.01%)</title><rect x="2.2348%" y="389" width="0.0126%" height="15" fill="rgb(242,17,10)" fg:x="3376" fg:w="19"/><text x="2.4848%" y="399.50"></text></g><g><title>GraphBuilder::push_scope (41 samples, 0.03%)</title><rect x="2.2335%" y="405" width="0.0271%" height="15" fill="rgb(242,107,0)" fg:x="3374" fg:w="41"/><text x="2.4835%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (24 samples, 0.02%)</title><rect x="2.2626%" y="405" width="0.0159%" height="15" fill="rgb(251,28,31)" fg:x="3418" fg:w="24"/><text x="2.5126%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (22 samples, 0.01%)</title><rect x="2.2640%" y="389" width="0.0146%" height="15" fill="rgb(233,223,10)" fg:x="3420" fg:w="22"/><text x="2.5140%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (327 samples, 0.22%)</title><rect x="2.0634%" y="421" width="0.2165%" height="15" fill="rgb(215,21,27)" fg:x="3117" fg:w="327"/><text x="2.3134%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (20 samples, 0.01%)</title><rect x="2.2818%" y="325" width="0.0132%" height="15" fill="rgb(232,23,21)" fg:x="3447" fg:w="20"/><text x="2.5318%" y="335.50"></text></g><g><title>GraphBuilder::invoke (23 samples, 0.02%)</title><rect x="2.2818%" y="341" width="0.0152%" height="15" fill="rgb(244,5,23)" fg:x="3447" fg:w="23"/><text x="2.5318%" y="351.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (26 samples, 0.02%)</title><rect x="2.2805%" y="373" width="0.0172%" height="15" fill="rgb(226,81,46)" fg:x="3445" fg:w="26"/><text x="2.5305%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (26 samples, 0.02%)</title><rect x="2.2805%" y="357" width="0.0172%" height="15" fill="rgb(247,70,30)" fg:x="3445" fg:w="26"/><text x="2.5305%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (358 samples, 0.24%)</title><rect x="2.0621%" y="437" width="0.2370%" height="15" fill="rgb(212,68,19)" fg:x="3115" fg:w="358"/><text x="2.3121%" y="447.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (28 samples, 0.02%)</title><rect x="2.2805%" y="421" width="0.0185%" height="15" fill="rgb(240,187,13)" fg:x="3445" fg:w="28"/><text x="2.5305%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (28 samples, 0.02%)</title><rect x="2.2805%" y="405" width="0.0185%" height="15" fill="rgb(223,113,26)" fg:x="3445" fg:w="28"/><text x="2.5305%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (28 samples, 0.02%)</title><rect x="2.2805%" y="389" width="0.0185%" height="15" fill="rgb(206,192,2)" fg:x="3445" fg:w="28"/><text x="2.5305%" y="399.50"></text></g><g><title>ciMethod::ciMethod (32 samples, 0.02%)</title><rect x="2.3361%" y="373" width="0.0212%" height="15" fill="rgb(241,108,4)" fg:x="3529" fg:w="32"/><text x="2.5861%" y="383.50"></text></g><g><title>ciSignature::ciSignature (22 samples, 0.01%)</title><rect x="2.3427%" y="357" width="0.0146%" height="15" fill="rgb(247,173,49)" fg:x="3539" fg:w="22"/><text x="2.5927%" y="367.50"></text></g><g><title>ciBytecodeStream::get_method (75 samples, 0.05%)</title><rect x="2.3083%" y="437" width="0.0496%" height="15" fill="rgb(224,114,35)" fg:x="3487" fg:w="75"/><text x="2.5583%" y="447.50"></text></g><g><title>ciEnv::get_method_by_index_impl (68 samples, 0.05%)</title><rect x="2.3130%" y="421" width="0.0450%" height="15" fill="rgb(245,159,27)" fg:x="3494" fg:w="68"/><text x="2.5630%" y="431.50"></text></g><g><title>ciObjectFactory::get_metadata (42 samples, 0.03%)</title><rect x="2.3302%" y="405" width="0.0278%" height="15" fill="rgb(245,172,44)" fg:x="3520" fg:w="42"/><text x="2.5802%" y="415.50"></text></g><g><title>ciObjectFactory::create_new_metadata (38 samples, 0.03%)</title><rect x="2.3328%" y="389" width="0.0252%" height="15" fill="rgb(236,23,11)" fg:x="3524" fg:w="38"/><text x="2.5828%" y="399.50"></text></g><g><title>GraphBuilder::invoke (475 samples, 0.31%)</title><rect x="2.0548%" y="453" width="0.3144%" height="15" fill="rgb(205,117,38)" fg:x="3104" fg:w="475"/><text x="2.3048%" y="463.50"></text></g><g><title>GraphBuilder::method_return (22 samples, 0.01%)</title><rect x="2.3705%" y="453" width="0.0146%" height="15" fill="rgb(237,72,25)" fg:x="3581" fg:w="22"/><text x="2.6205%" y="463.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (636 samples, 0.42%)</title><rect x="1.9734%" y="485" width="0.4210%" height="15" fill="rgb(244,70,9)" fg:x="2981" fg:w="636"/><text x="2.2234%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (629 samples, 0.42%)</title><rect x="1.9780%" y="469" width="0.4164%" height="15" fill="rgb(217,125,39)" fg:x="2988" fg:w="629"/><text x="2.2280%" y="479.50"></text></g><g><title>MethodLiveness::compute_liveness (26 samples, 0.02%)</title><rect x="2.4156%" y="421" width="0.0172%" height="15" fill="rgb(235,36,10)" fg:x="3649" fg:w="26"/><text x="2.6656%" y="431.50"></text></g><g><title>MethodLiveness::init_basic_blocks (19 samples, 0.01%)</title><rect x="2.4202%" y="405" width="0.0126%" height="15" fill="rgb(251,123,47)" fg:x="3656" fg:w="19"/><text x="2.6702%" y="415.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (47 samples, 0.03%)</title><rect x="2.4023%" y="469" width="0.0311%" height="15" fill="rgb(221,13,13)" fg:x="3629" fg:w="47"/><text x="2.6523%" y="479.50"></text></g><g><title>BlockListBuilder::set_leaders (40 samples, 0.03%)</title><rect x="2.4070%" y="453" width="0.0265%" height="15" fill="rgb(238,131,9)" fg:x="3636" fg:w="40"/><text x="2.6570%" y="463.50"></text></g><g><title>ciMethod::bci_block_start (27 samples, 0.02%)</title><rect x="2.4156%" y="437" width="0.0179%" height="15" fill="rgb(211,50,8)" fg:x="3649" fg:w="27"/><text x="2.6656%" y="447.50"></text></g><g><title>GraphBuilder::push_scope (74 samples, 0.05%)</title><rect x="2.4010%" y="485" width="0.0490%" height="15" fill="rgb(245,182,24)" fg:x="3627" fg:w="74"/><text x="2.6510%" y="495.50"></text></g><g><title>ciMethodData::load_data (25 samples, 0.02%)</title><rect x="2.4672%" y="453" width="0.0165%" height="15" fill="rgb(242,14,37)" fg:x="3727" fg:w="25"/><text x="2.7172%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (57 samples, 0.04%)</title><rect x="2.4546%" y="485" width="0.0377%" height="15" fill="rgb(246,228,12)" fg:x="3708" fg:w="57"/><text x="2.7046%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (53 samples, 0.04%)</title><rect x="2.4573%" y="469" width="0.0351%" height="15" fill="rgb(213,55,15)" fg:x="3712" fg:w="53"/><text x="2.7073%" y="479.50"></text></g><g><title>GraphBuilder::try_inline_full (806 samples, 0.53%)</title><rect x="1.9601%" y="501" width="0.5336%" height="15" fill="rgb(209,9,3)" fg:x="2961" fg:w="806"/><text x="2.2101%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (18 samples, 0.01%)</title><rect x="2.4983%" y="389" width="0.0119%" height="15" fill="rgb(230,59,30)" fg:x="3774" fg:w="18"/><text x="2.7483%" y="399.50"></text></g><g><title>GraphBuilder::try_inline (24 samples, 0.02%)</title><rect x="2.4983%" y="405" width="0.0159%" height="15" fill="rgb(209,121,21)" fg:x="3774" fg:w="24"/><text x="2.7483%" y="415.50"></text></g><g><title>GraphBuilder::invoke (26 samples, 0.02%)</title><rect x="2.4983%" y="421" width="0.0172%" height="15" fill="rgb(220,109,13)" fg:x="3774" fg:w="26"/><text x="2.7483%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (31 samples, 0.02%)</title><rect x="2.4957%" y="453" width="0.0205%" height="15" fill="rgb(232,18,1)" fg:x="3770" fg:w="31"/><text x="2.7457%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (31 samples, 0.02%)</title><rect x="2.4957%" y="437" width="0.0205%" height="15" fill="rgb(215,41,42)" fg:x="3770" fg:w="31"/><text x="2.7457%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (32 samples, 0.02%)</title><rect x="2.4957%" y="485" width="0.0212%" height="15" fill="rgb(224,123,36)" fg:x="3770" fg:w="32"/><text x="2.7457%" y="495.50"></text></g><g><title>GraphBuilder::try_inline_full (32 samples, 0.02%)</title><rect x="2.4957%" y="469" width="0.0212%" height="15" fill="rgb(240,125,3)" fg:x="3770" fg:w="32"/><text x="2.7457%" y="479.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (34 samples, 0.02%)</title><rect x="2.4957%" y="501" width="0.0225%" height="15" fill="rgb(205,98,50)" fg:x="3770" fg:w="34"/><text x="2.7457%" y="511.50"></text></g><g><title>GraphBuilder::try_inline (851 samples, 0.56%)</title><rect x="1.9562%" y="517" width="0.5633%" height="15" fill="rgb(205,185,37)" fg:x="2955" fg:w="851"/><text x="2.2062%" y="527.50"></text></g><g><title>ciEnv::lookup_method (46 samples, 0.03%)</title><rect x="2.5533%" y="485" width="0.0305%" height="15" fill="rgb(238,207,15)" fg:x="3857" fg:w="46"/><text x="2.8033%" y="495.50"></text></g><g><title>LinkResolver::resolve_static_call_or_null (17 samples, 0.01%)</title><rect x="2.5725%" y="469" width="0.0113%" height="15" fill="rgb(213,199,42)" fg:x="3886" fg:w="17"/><text x="2.8225%" y="479.50"></text></g><g><title>LinkResolver::resolve_static_call (17 samples, 0.01%)</title><rect x="2.5725%" y="453" width="0.0113%" height="15" fill="rgb(235,201,11)" fg:x="3886" fg:w="17"/><text x="2.8225%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (29 samples, 0.02%)</title><rect x="2.6128%" y="421" width="0.0192%" height="15" fill="rgb(207,46,11)" fg:x="3947" fg:w="29"/><text x="2.8628%" y="431.50"></text></g><g><title>ciObjectFactory::get_metadata (80 samples, 0.05%)</title><rect x="2.5837%" y="485" width="0.0530%" height="15" fill="rgb(241,35,35)" fg:x="3903" fg:w="80"/><text x="2.8337%" y="495.50"></text></g><g><title>ciObjectFactory::create_new_metadata (72 samples, 0.05%)</title><rect x="2.5890%" y="469" width="0.0477%" height="15" fill="rgb(243,32,47)" fg:x="3911" fg:w="72"/><text x="2.8390%" y="479.50"></text></g><g><title>ciMethod::ciMethod (66 samples, 0.04%)</title><rect x="2.5930%" y="453" width="0.0437%" height="15" fill="rgb(247,202,23)" fg:x="3917" fg:w="66"/><text x="2.8430%" y="463.50"></text></g><g><title>ciSignature::ciSignature (55 samples, 0.04%)</title><rect x="2.6003%" y="437" width="0.0364%" height="15" fill="rgb(219,102,11)" fg:x="3928" fg:w="55"/><text x="2.8503%" y="447.50"></text></g><g><title>ciEnv::get_method_by_index_impl (143 samples, 0.09%)</title><rect x="2.5433%" y="501" width="0.0947%" height="15" fill="rgb(243,110,44)" fg:x="3842" fg:w="143"/><text x="2.7933%" y="511.50"></text></g><g><title>ciBytecodeStream::get_method (155 samples, 0.10%)</title><rect x="2.5360%" y="517" width="0.1026%" height="15" fill="rgb(222,74,54)" fg:x="3831" fg:w="155"/><text x="2.7860%" y="527.50"></text></g><g><title>GraphBuilder::invoke (1,080 samples, 0.71%)</title><rect x="1.9356%" y="533" width="0.7149%" height="15" fill="rgb(216,99,12)" fg:x="2924" fg:w="1080"/><text x="2.1856%" y="543.50"></text></g><g><title>GraphBuilder::append_with_bci (23 samples, 0.02%)</title><rect x="2.6585%" y="517" width="0.0152%" height="15" fill="rgb(226,22,26)" fg:x="4016" fg:w="23"/><text x="2.9085%" y="527.50"></text></g><g><title>ValueStack::ValueStack (16 samples, 0.01%)</title><rect x="2.6631%" y="501" width="0.0106%" height="15" fill="rgb(217,163,10)" fg:x="4023" fg:w="16"/><text x="2.9131%" y="511.50"></text></g><g><title>GraphBuilder::method_return (52 samples, 0.03%)</title><rect x="2.6526%" y="533" width="0.0344%" height="15" fill="rgb(213,25,53)" fg:x="4007" fg:w="52"/><text x="2.9026%" y="543.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,373 samples, 0.91%)</title><rect x="1.7940%" y="549" width="0.9089%" height="15" fill="rgb(252,105,26)" fg:x="2710" fg:w="1373"/><text x="2.0440%" y="559.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,388 samples, 0.92%)</title><rect x="1.7847%" y="565" width="0.9188%" height="15" fill="rgb(220,39,43)" fg:x="2696" fg:w="1388"/><text x="2.0347%" y="575.50"></text></g><g><title>BlockListBuilder::set_leaders (49 samples, 0.03%)</title><rect x="2.7274%" y="533" width="0.0324%" height="15" fill="rgb(229,68,48)" fg:x="4120" fg:w="49"/><text x="2.9774%" y="543.50"></text></g><g><title>ciMethod::bci_block_start (35 samples, 0.02%)</title><rect x="2.7366%" y="517" width="0.0232%" height="15" fill="rgb(252,8,32)" fg:x="4134" fg:w="35"/><text x="2.9866%" y="527.50"></text></g><g><title>MethodLiveness::compute_liveness (32 samples, 0.02%)</title><rect x="2.7386%" y="501" width="0.0212%" height="15" fill="rgb(223,20,43)" fg:x="4137" fg:w="32"/><text x="2.9886%" y="511.50"></text></g><g><title>MethodLiveness::init_basic_blocks (21 samples, 0.01%)</title><rect x="2.7459%" y="485" width="0.0139%" height="15" fill="rgb(229,81,49)" fg:x="4148" fg:w="21"/><text x="2.9959%" y="495.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (65 samples, 0.04%)</title><rect x="2.7188%" y="549" width="0.0430%" height="15" fill="rgb(236,28,36)" fg:x="4107" fg:w="65"/><text x="2.9688%" y="559.50"></text></g><g><title>GraphBuilder::push_scope (110 samples, 0.07%)</title><rect x="2.7161%" y="565" width="0.0728%" height="15" fill="rgb(249,185,26)" fg:x="4103" fg:w="110"/><text x="2.9661%" y="575.50"></text></g><g><title>Method::build_interpreter_method_data (46 samples, 0.03%)</title><rect x="2.8041%" y="533" width="0.0305%" height="15" fill="rgb(249,174,33)" fg:x="4236" fg:w="46"/><text x="3.0541%" y="543.50"></text></g><g><title>MethodData::allocate (45 samples, 0.03%)</title><rect x="2.8048%" y="517" width="0.0298%" height="15" fill="rgb(233,201,37)" fg:x="4237" fg:w="45"/><text x="3.0548%" y="527.50"></text></g><g><title>MethodData::initialize (29 samples, 0.02%)</title><rect x="2.8154%" y="501" width="0.0192%" height="15" fill="rgb(221,78,26)" fg:x="4253" fg:w="29"/><text x="3.0654%" y="511.50"></text></g><g><title>ciMethodData::load_data (51 samples, 0.03%)</title><rect x="2.8386%" y="533" width="0.0338%" height="15" fill="rgb(250,127,30)" fg:x="4288" fg:w="51"/><text x="3.0886%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (122 samples, 0.08%)</title><rect x="2.7995%" y="565" width="0.0808%" height="15" fill="rgb(230,49,44)" fg:x="4229" fg:w="122"/><text x="3.0495%" y="575.50"></text></g><g><title>ciMethod::ensure_method_data (117 samples, 0.08%)</title><rect x="2.8028%" y="549" width="0.0775%" height="15" fill="rgb(229,67,23)" fg:x="4234" fg:w="117"/><text x="3.0528%" y="559.50"></text></g><g><title>GraphBuilder::try_inline_full (1,718 samples, 1.14%)</title><rect x="1.7496%" y="581" width="1.1373%" height="15" fill="rgb(249,83,47)" fg:x="2643" fg:w="1718"/><text x="1.9996%" y="591.50"></text></g><g><title>GraphBuilder::try_inline (1,732 samples, 1.15%)</title><rect x="1.7443%" y="597" width="1.1465%" height="15" fill="rgb(215,43,3)" fg:x="2635" fg:w="1732"/><text x="1.9943%" y="607.50"></text></g><g><title>ciBytecodeStream::get_declared_method_holder (19 samples, 0.01%)</title><rect x="2.9021%" y="597" width="0.0126%" height="15" fill="rgb(238,154,13)" fg:x="4384" fg:w="19"/><text x="3.1521%" y="607.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (16 samples, 0.01%)</title><rect x="2.9346%" y="565" width="0.0106%" height="15" fill="rgb(219,56,2)" fg:x="4433" fg:w="16"/><text x="3.1846%" y="575.50"></text></g><g><title>LinkResolver::resolve_interface_method (16 samples, 0.01%)</title><rect x="2.9485%" y="533" width="0.0106%" height="15" fill="rgb(233,0,4)" fg:x="4454" fg:w="16"/><text x="3.1985%" y="543.50"></text></g><g><title>LinkResolver::linktime_resolve_interface_method_or_null (20 samples, 0.01%)</title><rect x="2.9478%" y="549" width="0.0132%" height="15" fill="rgb(235,30,7)" fg:x="4453" fg:w="20"/><text x="3.1978%" y="559.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (18 samples, 0.01%)</title><rect x="2.9730%" y="517" width="0.0119%" height="15" fill="rgb(250,79,13)" fg:x="4491" fg:w="18"/><text x="3.2230%" y="527.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (16 samples, 0.01%)</title><rect x="2.9743%" y="501" width="0.0106%" height="15" fill="rgb(211,146,34)" fg:x="4493" fg:w="16"/><text x="3.2243%" y="511.50"></text></g><g><title>LinkResolver::resolve_method (32 samples, 0.02%)</title><rect x="2.9643%" y="533" width="0.0212%" height="15" fill="rgb(228,22,38)" fg:x="4478" fg:w="32"/><text x="3.2143%" y="543.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (40 samples, 0.03%)</title><rect x="2.9610%" y="549" width="0.0265%" height="15" fill="rgb(235,168,5)" fg:x="4473" fg:w="40"/><text x="3.2110%" y="559.50"></text></g><g><title>ciEnv::lookup_method (87 samples, 0.06%)</title><rect x="2.9451%" y="565" width="0.0576%" height="15" fill="rgb(221,155,16)" fg:x="4449" fg:w="87"/><text x="3.1951%" y="575.50"></text></g><g><title>SignatureStream::as_symbol (32 samples, 0.02%)</title><rect x="3.0425%" y="501" width="0.0212%" height="15" fill="rgb(215,215,53)" fg:x="4596" fg:w="32"/><text x="3.2925%" y="511.50"></text></g><g><title>SymbolTable::lookup (30 samples, 0.02%)</title><rect x="3.0438%" y="485" width="0.0199%" height="15" fill="rgb(223,4,10)" fg:x="4598" fg:w="30"/><text x="3.2938%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (37 samples, 0.02%)</title><rect x="3.0676%" y="501" width="0.0245%" height="15" fill="rgb(234,103,6)" fg:x="4634" fg:w="37"/><text x="3.3176%" y="511.50"></text></g><g><title>ciMethod::ciMethod (125 samples, 0.08%)</title><rect x="3.0160%" y="533" width="0.0827%" height="15" fill="rgb(227,97,0)" fg:x="4556" fg:w="125"/><text x="3.2660%" y="543.50"></text></g><g><title>ciSignature::ciSignature (99 samples, 0.07%)</title><rect x="3.0332%" y="517" width="0.0655%" height="15" fill="rgb(234,150,53)" fg:x="4582" fg:w="99"/><text x="3.2832%" y="527.50"></text></g><g><title>ciObjectFactory::get_metadata (147 samples, 0.10%)</title><rect x="3.0027%" y="565" width="0.0973%" height="15" fill="rgb(228,201,54)" fg:x="4536" fg:w="147"/><text x="3.2527%" y="575.50"></text></g><g><title>ciObjectFactory::create_new_metadata (134 samples, 0.09%)</title><rect x="3.0113%" y="549" width="0.0887%" height="15" fill="rgb(222,22,37)" fg:x="4549" fg:w="134"/><text x="3.2613%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (268 samples, 0.18%)</title><rect x="2.9279%" y="581" width="0.1774%" height="15" fill="rgb(237,53,32)" fg:x="4423" fg:w="268"/><text x="3.1779%" y="591.50"></text></g><g><title>ciBytecodeStream::get_method (289 samples, 0.19%)</title><rect x="2.9147%" y="597" width="0.1913%" height="15" fill="rgb(233,25,53)" fg:x="4403" fg:w="289"/><text x="3.1647%" y="607.50"></text></g><g><title>Dependencies::find_unique_concrete_method (21 samples, 0.01%)</title><rect x="3.1186%" y="581" width="0.0139%" height="15" fill="rgb(210,40,34)" fg:x="4711" fg:w="21"/><text x="3.3686%" y="591.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (21 samples, 0.01%)</title><rect x="3.1186%" y="565" width="0.0139%" height="15" fill="rgb(241,220,44)" fg:x="4711" fg:w="21"/><text x="3.3686%" y="575.50"></text></g><g><title>ClassHierarchyWalker::is_witness (21 samples, 0.01%)</title><rect x="3.1186%" y="549" width="0.0139%" height="15" fill="rgb(235,28,35)" fg:x="4711" fg:w="21"/><text x="3.3686%" y="559.50"></text></g><g><title>InstanceKlass::find_instance_method (20 samples, 0.01%)</title><rect x="3.1192%" y="533" width="0.0132%" height="15" fill="rgb(210,56,17)" fg:x="4712" fg:w="20"/><text x="3.3692%" y="543.50"></text></g><g><title>InstanceKlass::find_method_index (18 samples, 0.01%)</title><rect x="3.1206%" y="517" width="0.0119%" height="15" fill="rgb(224,130,29)" fg:x="4714" fg:w="18"/><text x="3.3706%" y="527.50"></text></g><g><title>ciMethod::find_monomorphic_target (27 samples, 0.02%)</title><rect x="3.1186%" y="597" width="0.0179%" height="15" fill="rgb(235,212,8)" fg:x="4711" fg:w="27"/><text x="3.3686%" y="607.50"></text></g><g><title>GraphBuilder::invoke (2,186 samples, 1.45%)</title><rect x="1.6980%" y="613" width="1.4471%" height="15" fill="rgb(223,33,50)" fg:x="2565" fg:w="2186"/><text x="1.9480%" y="623.50"></text></g><g><title>GraphBuilder::load_constant (17 samples, 0.01%)</title><rect x="3.1451%" y="613" width="0.0113%" height="15" fill="rgb(219,149,13)" fg:x="4751" fg:w="17"/><text x="3.3951%" y="623.50"></text></g><g><title>ciBytecodeStream::get_constant (16 samples, 0.01%)</title><rect x="3.1457%" y="597" width="0.0106%" height="15" fill="rgb(250,156,29)" fg:x="4752" fg:w="16"/><text x="3.3957%" y="607.50"></text></g><g><title>GraphBuilder::method_return (19 samples, 0.01%)</title><rect x="3.1576%" y="613" width="0.0126%" height="15" fill="rgb(216,193,19)" fg:x="4770" fg:w="19"/><text x="3.4076%" y="623.50"></text></g><g><title>GraphBuilder::new_instance (16 samples, 0.01%)</title><rect x="3.1702%" y="613" width="0.0106%" height="15" fill="rgb(216,135,14)" fg:x="4789" fg:w="16"/><text x="3.4202%" y="623.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,581 samples, 1.71%)</title><rect x="1.4822%" y="629" width="1.7086%" height="15" fill="rgb(241,47,5)" fg:x="2239" fg:w="2581"/><text x="1.7322%" y="639.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,616 samples, 1.73%)</title><rect x="1.4617%" y="645" width="1.7317%" height="15" fill="rgb(233,42,35)" fg:x="2208" fg:w="2616"/><text x="1.7117%" y="655.50"></text></g><g><title>GraphBuilder::setup_start_block (30 samples, 0.02%)</title><rect x="3.1941%" y="645" width="0.0199%" height="15" fill="rgb(231,13,6)" fg:x="4825" fg:w="30"/><text x="3.4441%" y="655.50"></text></g><g><title>GraphBuilder::GraphBuilder (2,909 samples, 1.93%)</title><rect x="1.2981%" y="661" width="1.9257%" height="15" fill="rgb(207,181,40)" fg:x="1961" fg:w="2909"/><text x="1.5481%" y="671.50">G..</text></g><g><title>IR::IR (2,929 samples, 1.94%)</title><rect x="1.2968%" y="677" width="1.9389%" height="15" fill="rgb(254,173,49)" fg:x="1959" fg:w="2929"/><text x="1.5468%" y="687.50">I..</text></g><g><title>ComputeLinearScanOrder::compute_order (23 samples, 0.02%)</title><rect x="3.2411%" y="645" width="0.0152%" height="15" fill="rgb(221,1,38)" fg:x="4896" fg:w="23"/><text x="3.4911%" y="655.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (58 samples, 0.04%)</title><rect x="3.2364%" y="661" width="0.0384%" height="15" fill="rgb(206,124,46)" fg:x="4889" fg:w="58"/><text x="3.4864%" y="671.50"></text></g><g><title>IR::compute_code (66 samples, 0.04%)</title><rect x="3.2358%" y="677" width="0.0437%" height="15" fill="rgb(249,21,11)" fg:x="4888" fg:w="66"/><text x="3.4858%" y="687.50"></text></g><g><title>BlockList::iterate_backward (79 samples, 0.05%)</title><rect x="3.2828%" y="661" width="0.0523%" height="15" fill="rgb(222,201,40)" fg:x="4959" fg:w="79"/><text x="3.5328%" y="671.50"></text></g><g><title>UseCountComputer::block_do (79 samples, 0.05%)</title><rect x="3.2828%" y="645" width="0.0523%" height="15" fill="rgb(235,61,29)" fg:x="4959" fg:w="79"/><text x="3.5328%" y="655.50"></text></g><g><title>ValueStack::values_do (35 samples, 0.02%)</title><rect x="3.3119%" y="629" width="0.0232%" height="15" fill="rgb(219,207,3)" fg:x="5003" fg:w="35"/><text x="3.5619%" y="639.50"></text></g><g><title>IR::compute_use_counts (110 samples, 0.07%)</title><rect x="3.2794%" y="677" width="0.0728%" height="15" fill="rgb(222,56,46)" fg:x="4954" fg:w="110"/><text x="3.5294%" y="687.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (26 samples, 0.02%)</title><rect x="3.3351%" y="661" width="0.0172%" height="15" fill="rgb(239,76,54)" fg:x="5038" fg:w="26"/><text x="3.5851%" y="671.50"></text></g><g><title>NullCheckEliminator::merge_state_for (26 samples, 0.02%)</title><rect x="3.4350%" y="629" width="0.0172%" height="15" fill="rgb(231,124,27)" fg:x="5189" fg:w="26"/><text x="3.6850%" y="639.50"></text></g><g><title>NullCheckEliminator::iterate_one (138 samples, 0.09%)</title><rect x="3.3682%" y="645" width="0.0914%" height="15" fill="rgb(249,195,6)" fg:x="5088" fg:w="138"/><text x="3.6182%" y="655.50"></text></g><g><title>IR::eliminate_null_checks (172 samples, 0.11%)</title><rect x="3.3523%" y="677" width="0.1139%" height="15" fill="rgb(237,174,47)" fg:x="5064" fg:w="172"/><text x="3.6023%" y="687.50"></text></g><g><title>Optimizer::eliminate_null_checks (172 samples, 0.11%)</title><rect x="3.3523%" y="661" width="0.1139%" height="15" fill="rgb(206,201,31)" fg:x="5064" fg:w="172"/><text x="3.6023%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (18 samples, 0.01%)</title><rect x="3.4741%" y="581" width="0.0119%" height="15" fill="rgb(231,57,52)" fg:x="5248" fg:w="18"/><text x="3.7241%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (25 samples, 0.02%)</title><rect x="3.4741%" y="597" width="0.0165%" height="15" fill="rgb(248,177,22)" fg:x="5248" fg:w="25"/><text x="3.7241%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (32 samples, 0.02%)</title><rect x="3.4734%" y="613" width="0.0212%" height="15" fill="rgb(215,211,37)" fg:x="5247" fg:w="32"/><text x="3.7234%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (36 samples, 0.02%)</title><rect x="3.4727%" y="629" width="0.0238%" height="15" fill="rgb(241,128,51)" fg:x="5246" fg:w="36"/><text x="3.7227%" y="639.50"></text></g><g><title>IR::optimize_blocks (47 samples, 0.03%)</title><rect x="3.4661%" y="677" width="0.0311%" height="15" fill="rgb(227,165,31)" fg:x="5236" fg:w="47"/><text x="3.7161%" y="687.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (38 samples, 0.03%)</title><rect x="3.4721%" y="661" width="0.0252%" height="15" fill="rgb(228,167,24)" fg:x="5245" fg:w="38"/><text x="3.7221%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (38 samples, 0.03%)</title><rect x="3.4721%" y="645" width="0.0252%" height="15" fill="rgb(228,143,12)" fg:x="5245" fg:w="38"/><text x="3.7221%" y="655.50"></text></g><g><title>BlockBegin::insert_block_between (16 samples, 0.01%)</title><rect x="3.4979%" y="661" width="0.0106%" height="15" fill="rgb(249,149,8)" fg:x="5284" fg:w="16"/><text x="3.7479%" y="671.50"></text></g><g><title>IR::split_critical_edges (38 samples, 0.03%)</title><rect x="3.4972%" y="677" width="0.0252%" height="15" fill="rgb(243,35,44)" fg:x="5283" fg:w="38"/><text x="3.7472%" y="687.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (16 samples, 0.01%)</title><rect x="3.5343%" y="565" width="0.0106%" height="15" fill="rgb(246,89,9)" fg:x="5339" fg:w="16"/><text x="3.7843%" y="575.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (19 samples, 0.01%)</title><rect x="3.5330%" y="581" width="0.0126%" height="15" fill="rgb(233,213,13)" fg:x="5337" fg:w="19"/><text x="3.7830%" y="591.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (21 samples, 0.01%)</title><rect x="3.5330%" y="597" width="0.0139%" height="15" fill="rgb(233,141,41)" fg:x="5337" fg:w="21"/><text x="3.7830%" y="607.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (22 samples, 0.01%)</title><rect x="3.5330%" y="613" width="0.0146%" height="15" fill="rgb(239,167,4)" fg:x="5337" fg:w="22"/><text x="3.7830%" y="623.50"></text></g><g><title>RangeCheckElimination::eliminate (38 samples, 0.03%)</title><rect x="3.5231%" y="677" width="0.0252%" height="15" fill="rgb(209,217,16)" fg:x="5322" fg:w="38"/><text x="3.7731%" y="687.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (24 samples, 0.02%)</title><rect x="3.5323%" y="661" width="0.0159%" height="15" fill="rgb(219,88,35)" fg:x="5336" fg:w="24"/><text x="3.7823%" y="671.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (24 samples, 0.02%)</title><rect x="3.5323%" y="645" width="0.0159%" height="15" fill="rgb(220,193,23)" fg:x="5336" fg:w="24"/><text x="3.7823%" y="655.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (23 samples, 0.02%)</title><rect x="3.5330%" y="629" width="0.0152%" height="15" fill="rgb(230,90,52)" fg:x="5337" fg:w="23"/><text x="3.7830%" y="639.50"></text></g><g><title>Compilation::build_hir (3,742 samples, 2.48%)</title><rect x="1.0731%" y="693" width="2.4771%" height="15" fill="rgb(252,106,19)" fg:x="1621" fg:w="3742"/><text x="1.3231%" y="703.50">Co..</text></g><g><title>CodeEmitInfo::record_debug_info (24 samples, 0.02%)</title><rect x="3.6124%" y="629" width="0.0159%" height="15" fill="rgb(206,74,20)" fg:x="5457" fg:w="24"/><text x="3.8624%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (25 samples, 0.02%)</title><rect x="3.6124%" y="645" width="0.0165%" height="15" fill="rgb(230,138,44)" fg:x="5457" fg:w="25"/><text x="3.8624%" y="655.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (17 samples, 0.01%)</title><rect x="3.6468%" y="581" width="0.0113%" height="15" fill="rgb(235,182,43)" fg:x="5509" fg:w="17"/><text x="3.8968%" y="591.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (29 samples, 0.02%)</title><rect x="3.6409%" y="597" width="0.0192%" height="15" fill="rgb(242,16,51)" fg:x="5500" fg:w="29"/><text x="3.8909%" y="607.50"></text></g><g><title>DebugInformationRecorder::describe_scope (22 samples, 0.01%)</title><rect x="3.6601%" y="597" width="0.0146%" height="15" fill="rgb(248,9,4)" fg:x="5529" fg:w="22"/><text x="3.9101%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (73 samples, 0.05%)</title><rect x="3.6316%" y="629" width="0.0483%" height="15" fill="rgb(210,31,22)" fg:x="5486" fg:w="73"/><text x="3.8816%" y="639.50"></text></g><g><title>CodeEmitInfo::record_debug_info (71 samples, 0.05%)</title><rect x="3.6329%" y="613" width="0.0470%" height="15" fill="rgb(239,54,39)" fg:x="5488" fg:w="71"/><text x="3.8829%" y="623.50"></text></g><g><title>LIR_Assembler::call (81 samples, 0.05%)</title><rect x="3.6290%" y="645" width="0.0536%" height="15" fill="rgb(230,99,41)" fg:x="5482" fg:w="81"/><text x="3.8790%" y="655.50"></text></g><g><title>LIR_Assembler::emit_static_call_stub (21 samples, 0.01%)</title><rect x="3.6833%" y="645" width="0.0139%" height="15" fill="rgb(253,106,12)" fg:x="5564" fg:w="21"/><text x="3.9333%" y="655.50"></text></g><g><title>LIR_Assembler::emit_call (135 samples, 0.09%)</title><rect x="3.6104%" y="661" width="0.0894%" height="15" fill="rgb(213,46,41)" fg:x="5454" fg:w="135"/><text x="3.8604%" y="671.50"></text></g><g><title>LIR_Assembler::check_icache (21 samples, 0.01%)</title><rect x="3.7064%" y="645" width="0.0139%" height="15" fill="rgb(215,133,35)" fg:x="5599" fg:w="21"/><text x="3.9564%" y="655.50"></text></g><g><title>C1_MacroAssembler::inline_cache_check (20 samples, 0.01%)</title><rect x="3.7071%" y="629" width="0.0132%" height="15" fill="rgb(213,28,5)" fg:x="5600" fg:w="20"/><text x="3.9571%" y="639.50"></text></g><g><title>LIR_Assembler::emit_op0 (34 samples, 0.02%)</title><rect x="3.6998%" y="661" width="0.0225%" height="15" fill="rgb(215,77,49)" fg:x="5589" fg:w="34"/><text x="3.9498%" y="671.50"></text></g><g><title>LIR_Assembler::mem2reg (26 samples, 0.02%)</title><rect x="3.7442%" y="645" width="0.0172%" height="15" fill="rgb(248,100,22)" fg:x="5656" fg:w="26"/><text x="3.9942%" y="655.50"></text></g><g><title>LIR_Assembler::reg2mem (17 samples, 0.01%)</title><rect x="3.7706%" y="645" width="0.0113%" height="15" fill="rgb(208,67,9)" fg:x="5696" fg:w="17"/><text x="4.0206%" y="655.50"></text></g><g><title>LIR_Assembler::emit_op1 (125 samples, 0.08%)</title><rect x="3.7223%" y="661" width="0.0827%" height="15" fill="rgb(219,133,21)" fg:x="5623" fg:w="125"/><text x="3.9723%" y="671.50"></text></g><g><title>LIR_Assembler::emit_op2 (21 samples, 0.01%)</title><rect x="3.8051%" y="661" width="0.0139%" height="15" fill="rgb(246,46,29)" fg:x="5748" fg:w="21"/><text x="4.0551%" y="671.50"></text></g><g><title>LIR_Assembler::emit_profile_call (54 samples, 0.04%)</title><rect x="3.8196%" y="661" width="0.0357%" height="15" fill="rgb(246,185,52)" fg:x="5770" fg:w="54"/><text x="4.0696%" y="671.50"></text></g><g><title>ciMethodData::bci_to_data (20 samples, 0.01%)</title><rect x="3.8421%" y="645" width="0.0132%" height="15" fill="rgb(252,136,11)" fg:x="5804" fg:w="20"/><text x="4.0921%" y="655.50"></text></g><g><title>LIR_OpAllocObj::emit_code (21 samples, 0.01%)</title><rect x="3.8812%" y="661" width="0.0139%" height="15" fill="rgb(219,138,53)" fg:x="5863" fg:w="21"/><text x="4.1312%" y="671.50"></text></g><g><title>LIR_Assembler::emit_alloc_obj (21 samples, 0.01%)</title><rect x="3.8812%" y="645" width="0.0139%" height="15" fill="rgb(211,51,23)" fg:x="5863" fg:w="21"/><text x="4.1312%" y="655.50"></text></g><g><title>LIR_Assembler::emit_typecheck_helper (21 samples, 0.01%)</title><rect x="3.9090%" y="629" width="0.0139%" height="15" fill="rgb(247,221,28)" fg:x="5905" fg:w="21"/><text x="4.1590%" y="639.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (36 samples, 0.02%)</title><rect x="3.9070%" y="661" width="0.0238%" height="15" fill="rgb(251,222,45)" fg:x="5902" fg:w="36"/><text x="4.1570%" y="671.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (36 samples, 0.02%)</title><rect x="3.9070%" y="645" width="0.0238%" height="15" fill="rgb(217,162,53)" fg:x="5902" fg:w="36"/><text x="4.1570%" y="655.50"></text></g><g><title>LIR_Assembler::emit_code (569 samples, 0.38%)</title><rect x="3.5595%" y="677" width="0.3767%" height="15" fill="rgb(229,93,14)" fg:x="5377" fg:w="569"/><text x="3.8095%" y="687.50"></text></g><g><title>Assembler::movq (17 samples, 0.01%)</title><rect x="3.9567%" y="629" width="0.0113%" height="15" fill="rgb(209,67,49)" fg:x="5977" fg:w="17"/><text x="4.2067%" y="639.50"></text></g><g><title>Assembler::pusha (23 samples, 0.02%)</title><rect x="3.9533%" y="645" width="0.0152%" height="15" fill="rgb(213,87,29)" fg:x="5972" fg:w="23"/><text x="4.2033%" y="655.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (40 samples, 0.03%)</title><rect x="3.9428%" y="677" width="0.0265%" height="15" fill="rgb(205,151,52)" fg:x="5956" fg:w="40"/><text x="4.1928%" y="687.50"></text></g><g><title>MacroAssembler::stop (32 samples, 0.02%)</title><rect x="3.9480%" y="661" width="0.0212%" height="15" fill="rgb(253,215,39)" fg:x="5964" fg:w="32"/><text x="4.1980%" y="671.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (17 samples, 0.01%)</title><rect x="3.9937%" y="597" width="0.0113%" height="15" fill="rgb(221,220,41)" fg:x="6033" fg:w="17"/><text x="4.2437%" y="607.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (38 samples, 0.03%)</title><rect x="3.9851%" y="613" width="0.0252%" height="15" fill="rgb(218,133,21)" fg:x="6020" fg:w="38"/><text x="4.2351%" y="623.50"></text></g><g><title>DebugInformationRecorder::describe_scope (28 samples, 0.02%)</title><rect x="4.0103%" y="613" width="0.0185%" height="15" fill="rgb(221,193,43)" fg:x="6058" fg:w="28"/><text x="4.2603%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (92 samples, 0.06%)</title><rect x="3.9772%" y="629" width="0.0609%" height="15" fill="rgb(240,128,52)" fg:x="6008" fg:w="92"/><text x="4.2272%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (93 samples, 0.06%)</title><rect x="3.9772%" y="645" width="0.0616%" height="15" fill="rgb(253,114,12)" fg:x="6008" fg:w="93"/><text x="4.2272%" y="655.50"></text></g><g><title>CounterOverflowStub::emit_code (109 samples, 0.07%)</title><rect x="3.9732%" y="661" width="0.0722%" height="15" fill="rgb(215,223,47)" fg:x="6002" fg:w="109"/><text x="4.2232%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (46 samples, 0.03%)</title><rect x="4.0593%" y="645" width="0.0305%" height="15" fill="rgb(248,225,23)" fg:x="6132" fg:w="46"/><text x="4.3093%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (46 samples, 0.03%)</title><rect x="4.0593%" y="629" width="0.0305%" height="15" fill="rgb(250,108,0)" fg:x="6132" fg:w="46"/><text x="4.3093%" y="639.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (59 samples, 0.04%)</title><rect x="4.0533%" y="661" width="0.0391%" height="15" fill="rgb(228,208,7)" fg:x="6123" fg:w="59"/><text x="4.3033%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (20 samples, 0.01%)</title><rect x="4.0970%" y="645" width="0.0132%" height="15" fill="rgb(244,45,10)" fg:x="6189" fg:w="20"/><text x="4.3470%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (20 samples, 0.01%)</title><rect x="4.0970%" y="629" width="0.0132%" height="15" fill="rgb(207,125,25)" fg:x="6189" fg:w="20"/><text x="4.3470%" y="639.50"></text></g><g><title>NewInstanceStub::emit_code (24 samples, 0.02%)</title><rect x="4.0950%" y="661" width="0.0159%" height="15" fill="rgb(210,195,18)" fg:x="6186" fg:w="24"/><text x="4.3450%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (20 samples, 0.01%)</title><rect x="4.1169%" y="645" width="0.0132%" height="15" fill="rgb(249,80,12)" fg:x="6219" fg:w="20"/><text x="4.3669%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (20 samples, 0.01%)</title><rect x="4.1169%" y="629" width="0.0132%" height="15" fill="rgb(221,65,9)" fg:x="6219" fg:w="20"/><text x="4.3669%" y="639.50"></text></g><g><title>PatchingStub::emit_code (31 samples, 0.02%)</title><rect x="4.1122%" y="661" width="0.0205%" height="15" fill="rgb(235,49,36)" fg:x="6212" fg:w="31"/><text x="4.3622%" y="671.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (258 samples, 0.17%)</title><rect x="3.9692%" y="677" width="0.1708%" height="15" fill="rgb(225,32,20)" fg:x="5996" fg:w="258"/><text x="4.2192%" y="687.50"></text></g><g><title>Compilation::emit_code_body (900 samples, 0.60%)</title><rect x="3.5502%" y="693" width="0.5958%" height="15" fill="rgb(215,141,46)" fg:x="5363" fg:w="900"/><text x="3.8002%" y="703.50"></text></g><g><title>LIRGenerator::block_do_prolog (21 samples, 0.01%)</title><rect x="4.1672%" y="645" width="0.0139%" height="15" fill="rgb(250,160,47)" fg:x="6295" fg:w="21"/><text x="4.4172%" y="655.50"></text></g><g><title>GrowableArray&lt;Instruction*&gt;::grow (20 samples, 0.01%)</title><rect x="4.1996%" y="629" width="0.0132%" height="15" fill="rgb(216,222,40)" fg:x="6344" fg:w="20"/><text x="4.4496%" y="639.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (17 samples, 0.01%)</title><rect x="4.2135%" y="613" width="0.0113%" height="15" fill="rgb(234,217,39)" fg:x="6365" fg:w="17"/><text x="4.4635%" y="623.50"></text></g><g><title>LIRGenerator::increment_event_counter (22 samples, 0.01%)</title><rect x="4.2128%" y="629" width="0.0146%" height="15" fill="rgb(207,178,40)" fg:x="6364" fg:w="22"/><text x="4.4628%" y="639.50"></text></g><g><title>LIRGenerator::do_Base (82 samples, 0.05%)</title><rect x="4.1844%" y="645" width="0.0543%" height="15" fill="rgb(221,136,13)" fg:x="6321" fg:w="82"/><text x="4.4344%" y="655.50"></text></g><g><title>LIRGenerator::move_to_phi (33 samples, 0.02%)</title><rect x="4.2658%" y="613" width="0.0218%" height="15" fill="rgb(249,199,10)" fg:x="6444" fg:w="33"/><text x="4.5158%" y="623.50"></text></g><g><title>PhiResolver::create_node (28 samples, 0.02%)</title><rect x="4.2691%" y="597" width="0.0185%" height="15" fill="rgb(249,222,13)" fg:x="6449" fg:w="28"/><text x="4.5191%" y="607.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (32 samples, 0.02%)</title><rect x="4.3380%" y="597" width="0.0212%" height="15" fill="rgb(244,185,38)" fg:x="6553" fg:w="32"/><text x="4.5880%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (157 samples, 0.10%)</title><rect x="4.2559%" y="629" width="0.1039%" height="15" fill="rgb(236,202,9)" fg:x="6429" fg:w="157"/><text x="4.5059%" y="639.50"></text></g><g><title>PhiResolverState::reset (107 samples, 0.07%)</title><rect x="4.2890%" y="613" width="0.0708%" height="15" fill="rgb(250,229,37)" fg:x="6479" fg:w="107"/><text x="4.5390%" y="623.50"></text></g><g><title>LIRGenerator::do_Goto (183 samples, 0.12%)</title><rect x="4.2426%" y="645" width="0.1211%" height="15" fill="rgb(206,174,23)" fg:x="6409" fg:w="183"/><text x="4.4926%" y="655.50"></text></g><g><title>LIRGenerator::profile_branch (18 samples, 0.01%)</title><rect x="4.3717%" y="629" width="0.0119%" height="15" fill="rgb(211,33,43)" fg:x="6604" fg:w="18"/><text x="4.6217%" y="639.50"></text></g><g><title>LIRGenerator::do_If (42 samples, 0.03%)</title><rect x="4.3638%" y="645" width="0.0278%" height="15" fill="rgb(245,58,50)" fg:x="6592" fg:w="42"/><text x="4.6138%" y="655.50"></text></g><g><title>FrameMap::java_calling_convention (19 samples, 0.01%)</title><rect x="4.3989%" y="629" width="0.0126%" height="15" fill="rgb(244,68,36)" fg:x="6645" fg:w="19"/><text x="4.6489%" y="639.50"></text></g><g><title>MethodLiveness::get_liveness_at (36 samples, 0.02%)</title><rect x="4.4392%" y="597" width="0.0238%" height="15" fill="rgb(232,229,15)" fg:x="6706" fg:w="36"/><text x="4.6892%" y="607.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (26 samples, 0.02%)</title><rect x="4.4459%" y="581" width="0.0172%" height="15" fill="rgb(254,30,23)" fg:x="6716" fg:w="26"/><text x="4.6959%" y="591.50"></text></g><g><title>LIRGenerator::state_for (51 samples, 0.03%)</title><rect x="4.4306%" y="629" width="0.0338%" height="15" fill="rgb(235,160,14)" fg:x="6693" fg:w="51"/><text x="4.6806%" y="639.50"></text></g><g><title>ciMethod::liveness_at_bci (41 samples, 0.03%)</title><rect x="4.4373%" y="613" width="0.0271%" height="15" fill="rgb(212,155,44)" fg:x="6703" fg:w="41"/><text x="4.6873%" y="623.50"></text></g><g><title>LIRGenerator::do_Invoke (121 samples, 0.08%)</title><rect x="4.3936%" y="645" width="0.0801%" height="15" fill="rgb(226,2,50)" fg:x="6637" fg:w="121"/><text x="4.6436%" y="655.50"></text></g><g><title>LIRGenerator::do_LoadField (31 samples, 0.02%)</title><rect x="4.4737%" y="645" width="0.0205%" height="15" fill="rgb(234,177,6)" fg:x="6758" fg:w="31"/><text x="4.7237%" y="655.50"></text></g><g><title>LIRGenerator::do_NewInstance (35 samples, 0.02%)</title><rect x="4.5001%" y="645" width="0.0232%" height="15" fill="rgb(217,24,9)" fg:x="6798" fg:w="35"/><text x="4.7501%" y="655.50"></text></g><g><title>LIRGenerator::state_for (21 samples, 0.01%)</title><rect x="4.5094%" y="629" width="0.0139%" height="15" fill="rgb(220,13,46)" fg:x="6812" fg:w="21"/><text x="4.7594%" y="639.50"></text></g><g><title>LIRGenerator::do_ProfileCall (19 samples, 0.01%)</title><rect x="4.5306%" y="645" width="0.0126%" height="15" fill="rgb(239,221,27)" fg:x="6844" fg:w="19"/><text x="4.7806%" y="655.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (25 samples, 0.02%)</title><rect x="4.5465%" y="629" width="0.0165%" height="15" fill="rgb(222,198,25)" fg:x="6868" fg:w="25"/><text x="4.7965%" y="639.50"></text></g><g><title>MethodLiveness::get_liveness_at (32 samples, 0.02%)</title><rect x="4.5736%" y="597" width="0.0212%" height="15" fill="rgb(211,99,13)" fg:x="6909" fg:w="32"/><text x="4.8236%" y="607.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (21 samples, 0.01%)</title><rect x="4.5809%" y="581" width="0.0139%" height="15" fill="rgb(232,111,31)" fg:x="6920" fg:w="21"/><text x="4.8309%" y="591.50"></text></g><g><title>LIRGenerator::state_for (49 samples, 0.03%)</title><rect x="4.5630%" y="629" width="0.0324%" height="15" fill="rgb(245,82,37)" fg:x="6893" fg:w="49"/><text x="4.8130%" y="639.50"></text></g><g><title>ciMethod::liveness_at_bci (36 samples, 0.02%)</title><rect x="4.5716%" y="613" width="0.0238%" height="15" fill="rgb(227,149,46)" fg:x="6906" fg:w="36"/><text x="4.8216%" y="623.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (83 samples, 0.05%)</title><rect x="4.5432%" y="645" width="0.0549%" height="15" fill="rgb(218,36,50)" fg:x="6863" fg:w="83"/><text x="4.7932%" y="655.50"></text></g><g><title>LIRGenerator::access_store_at (22 samples, 0.01%)</title><rect x="4.6061%" y="629" width="0.0146%" height="15" fill="rgb(226,80,48)" fg:x="6958" fg:w="22"/><text x="4.8561%" y="639.50"></text></g><g><title>LIRGenerator::do_StoreField (29 samples, 0.02%)</title><rect x="4.6047%" y="645" width="0.0192%" height="15" fill="rgb(238,224,15)" fg:x="6956" fg:w="29"/><text x="4.8547%" y="655.50"></text></g><g><title>LIRGenerator::block_do (733 samples, 0.49%)</title><rect x="4.1533%" y="661" width="0.4852%" height="15" fill="rgb(241,136,10)" fg:x="6274" fg:w="733"/><text x="4.4033%" y="671.50"></text></g><g><title>BlockList::iterate_forward (737 samples, 0.49%)</title><rect x="4.1519%" y="677" width="0.4879%" height="15" fill="rgb(208,32,45)" fg:x="6272" fg:w="737"/><text x="4.4019%" y="687.50"></text></g><g><title>ControlFlowOptimizer::optimize (27 samples, 0.02%)</title><rect x="4.6398%" y="677" width="0.0179%" height="15" fill="rgb(207,135,9)" fg:x="7009" fg:w="27"/><text x="4.8898%" y="687.50"></text></g><g><title>IntervalWalker::walk_to (110 samples, 0.07%)</title><rect x="4.7199%" y="629" width="0.0728%" height="15" fill="rgb(206,86,44)" fg:x="7130" fg:w="110"/><text x="4.9699%" y="639.50"></text></g><g><title>IntervalWalker::append_to_unhandled (25 samples, 0.02%)</title><rect x="4.8457%" y="597" width="0.0165%" height="15" fill="rgb(245,177,15)" fg:x="7320" fg:w="25"/><text x="5.0957%" y="607.50"></text></g><g><title>LinearScanWalker::find_free_reg (82 samples, 0.05%)</title><rect x="4.8622%" y="597" width="0.0543%" height="15" fill="rgb(206,64,50)" fg:x="7345" fg:w="82"/><text x="5.1122%" y="607.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_any (26 samples, 0.02%)</title><rect x="4.9165%" y="597" width="0.0172%" height="15" fill="rgb(234,36,40)" fg:x="7427" fg:w="26"/><text x="5.1665%" y="607.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (140 samples, 0.09%)</title><rect x="4.9337%" y="597" width="0.0927%" height="15" fill="rgb(213,64,8)" fg:x="7453" fg:w="140"/><text x="5.1837%" y="607.50"></text></g><g><title>Range::intersects_at (24 samples, 0.02%)</title><rect x="5.0105%" y="581" width="0.0159%" height="15" fill="rgb(210,75,36)" fg:x="7569" fg:w="24"/><text x="5.2605%" y="591.50"></text></g><g><title>Interval::Interval (16 samples, 0.01%)</title><rect x="5.0555%" y="549" width="0.0106%" height="15" fill="rgb(229,88,21)" fg:x="7637" fg:w="16"/><text x="5.3055%" y="559.50"></text></g><g><title>Interval::new_split_child (32 samples, 0.02%)</title><rect x="5.0489%" y="565" width="0.0212%" height="15" fill="rgb(252,204,47)" fg:x="7627" fg:w="32"/><text x="5.2989%" y="575.50"></text></g><g><title>Interval::split (56 samples, 0.04%)</title><rect x="5.0383%" y="581" width="0.0371%" height="15" fill="rgb(208,77,27)" fg:x="7611" fg:w="56"/><text x="5.2883%" y="591.50"></text></g><g><title>LinearScanWalker::split_before_usage (79 samples, 0.05%)</title><rect x="5.0264%" y="597" width="0.0523%" height="15" fill="rgb(221,76,26)" fg:x="7593" fg:w="79"/><text x="5.2764%" y="607.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (402 samples, 0.27%)</title><rect x="4.8139%" y="613" width="0.2661%" height="15" fill="rgb(225,139,18)" fg:x="7272" fg:w="402"/><text x="5.0639%" y="623.50"></text></g><g><title>IntervalWalker::append_to_unhandled (25 samples, 0.02%)</title><rect x="5.1012%" y="581" width="0.0165%" height="15" fill="rgb(230,137,11)" fg:x="7706" fg:w="25"/><text x="5.3512%" y="591.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (57 samples, 0.04%)</title><rect x="5.0992%" y="597" width="0.0377%" height="15" fill="rgb(212,28,1)" fg:x="7703" fg:w="57"/><text x="5.3492%" y="607.50"></text></g><g><title>LinearScanWalker::split_before_usage (29 samples, 0.02%)</title><rect x="5.1178%" y="581" width="0.0192%" height="15" fill="rgb(248,164,17)" fg:x="7731" fg:w="29"/><text x="5.3678%" y="591.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (104 samples, 0.07%)</title><rect x="5.0800%" y="613" width="0.0688%" height="15" fill="rgb(222,171,42)" fg:x="7674" fg:w="104"/><text x="5.3300%" y="623.50"></text></g><g><title>LinearScanWalker::split_for_spilling (18 samples, 0.01%)</title><rect x="5.1370%" y="597" width="0.0119%" height="15" fill="rgb(243,84,45)" fg:x="7760" fg:w="18"/><text x="5.3870%" y="607.50"></text></g><g><title>LinearScanWalker::insert_move (22 samples, 0.01%)</title><rect x="5.1668%" y="613" width="0.0146%" height="15" fill="rgb(252,49,23)" fg:x="7805" fg:w="22"/><text x="5.4168%" y="623.50"></text></g><g><title>LinearScanWalker::activate_current (595 samples, 0.39%)</title><rect x="4.7927%" y="629" width="0.3939%" height="15" fill="rgb(215,19,7)" fg:x="7240" fg:w="595"/><text x="5.0427%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (764 samples, 0.51%)</title><rect x="4.6815%" y="645" width="0.5058%" height="15" fill="rgb(238,81,41)" fg:x="7072" fg:w="764"/><text x="4.9315%" y="655.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (58 samples, 0.04%)</title><rect x="5.1879%" y="645" width="0.0384%" height="15" fill="rgb(210,199,37)" fg:x="7837" fg:w="58"/><text x="5.4379%" y="655.50"></text></g><g><title>resource_allocate_bytes (36 samples, 0.02%)</title><rect x="5.2025%" y="629" width="0.0238%" height="15" fill="rgb(244,192,49)" fg:x="7859" fg:w="36"/><text x="5.4525%" y="639.50"></text></g><g><title>LinearScan::allocate_registers (837 samples, 0.55%)</title><rect x="4.6749%" y="661" width="0.5541%" height="15" fill="rgb(226,211,11)" fg:x="7062" fg:w="837"/><text x="4.9249%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (68 samples, 0.05%)</title><rect x="5.3243%" y="629" width="0.0450%" height="15" fill="rgb(236,162,54)" fg:x="8043" fg:w="68"/><text x="5.5743%" y="639.50"></text></g><g><title>LIR_OpVisitState::append (25 samples, 0.02%)</title><rect x="5.3528%" y="613" width="0.0165%" height="15" fill="rgb(220,229,9)" fg:x="8086" fg:w="25"/><text x="5.6028%" y="623.50"></text></g><g><title>Interval::split_child_at_op_id (18 samples, 0.01%)</title><rect x="5.3951%" y="613" width="0.0119%" height="15" fill="rgb(250,87,22)" fg:x="8150" fg:w="18"/><text x="5.6451%" y="623.50"></text></g><g><title>LinearScan::color_lir_opr (66 samples, 0.04%)</title><rect x="5.3700%" y="629" width="0.0437%" height="15" fill="rgb(239,43,17)" fg:x="8112" fg:w="66"/><text x="5.6200%" y="639.50"></text></g><g><title>LinearScan::append_scope_value (20 samples, 0.01%)</title><rect x="5.4256%" y="613" width="0.0132%" height="15" fill="rgb(231,177,25)" fg:x="8196" fg:w="20"/><text x="5.6756%" y="623.50"></text></g><g><title>LinearScan::append_scope_value (18 samples, 0.01%)</title><rect x="5.4521%" y="597" width="0.0119%" height="15" fill="rgb(219,179,1)" fg:x="8236" fg:w="18"/><text x="5.7021%" y="607.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (17 samples, 0.01%)</title><rect x="5.4726%" y="581" width="0.0113%" height="15" fill="rgb(238,219,53)" fg:x="8267" fg:w="17"/><text x="5.7226%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (29 samples, 0.02%)</title><rect x="5.4673%" y="597" width="0.0192%" height="15" fill="rgb(232,167,36)" fg:x="8259" fg:w="29"/><text x="5.7173%" y="607.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (69 samples, 0.05%)</title><rect x="5.4454%" y="613" width="0.0457%" height="15" fill="rgb(244,19,51)" fg:x="8226" fg:w="69"/><text x="5.6954%" y="623.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (128 samples, 0.08%)</title><rect x="5.4137%" y="629" width="0.0847%" height="15" fill="rgb(224,6,22)" fg:x="8178" fg:w="128"/><text x="5.6637%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (77 samples, 0.05%)</title><rect x="5.5229%" y="597" width="0.0510%" height="15" fill="rgb(224,145,5)" fg:x="8343" fg:w="77"/><text x="5.7729%" y="607.50"></text></g><g><title>LinearScan::compute_oop_map (133 samples, 0.09%)</title><rect x="5.5077%" y="613" width="0.0880%" height="15" fill="rgb(234,130,49)" fg:x="8320" fg:w="133"/><text x="5.7577%" y="623.50"></text></g><g><title>LinearScan::compute_oop_map (148 samples, 0.10%)</title><rect x="5.4984%" y="629" width="0.0980%" height="15" fill="rgb(254,6,2)" fg:x="8306" fg:w="148"/><text x="5.7484%" y="639.50"></text></g><g><title>LinearScan::assign_reg_num (554 samples, 0.37%)</title><rect x="5.2303%" y="645" width="0.3667%" height="15" fill="rgb(208,96,46)" fg:x="7901" fg:w="554"/><text x="5.4803%" y="655.50"></text></g><g><title>LinearScan::assign_reg_num (582 samples, 0.39%)</title><rect x="5.2290%" y="661" width="0.3853%" height="15" fill="rgb(239,3,39)" fg:x="7899" fg:w="582"/><text x="5.4790%" y="671.50"></text></g><g><title>LinearScan::init_compute_oop_maps (22 samples, 0.01%)</title><rect x="5.5997%" y="645" width="0.0146%" height="15" fill="rgb(233,210,1)" fg:x="8459" fg:w="22"/><text x="5.8497%" y="655.50"></text></g><g><title>BitMap::get_next_one_offset (30 samples, 0.02%)</title><rect x="5.7294%" y="645" width="0.0199%" height="15" fill="rgb(244,137,37)" fg:x="8655" fg:w="30"/><text x="5.9794%" y="655.50"></text></g><g><title>Interval::add_use_pos (23 samples, 0.02%)</title><rect x="5.7586%" y="645" width="0.0152%" height="15" fill="rgb(240,136,2)" fg:x="8699" fg:w="23"/><text x="6.0086%" y="655.50"></text></g><g><title>LIR_OpVisitState::append (20 samples, 0.01%)</title><rect x="5.8075%" y="629" width="0.0132%" height="15" fill="rgb(239,18,37)" fg:x="8773" fg:w="20"/><text x="6.0575%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (61 samples, 0.04%)</title><rect x="5.7811%" y="645" width="0.0404%" height="15" fill="rgb(218,185,22)" fg:x="8733" fg:w="61"/><text x="6.0311%" y="655.50"></text></g><g><title>LinearScan::add_def (51 samples, 0.03%)</title><rect x="5.8215%" y="645" width="0.0338%" height="15" fill="rgb(225,218,4)" fg:x="8794" fg:w="51"/><text x="6.0715%" y="655.50"></text></g><g><title>LinearScan::add_register_hints (19 samples, 0.01%)</title><rect x="5.8552%" y="645" width="0.0126%" height="15" fill="rgb(230,182,32)" fg:x="8845" fg:w="19"/><text x="6.1052%" y="655.50"></text></g><g><title>Interval::add_range (35 samples, 0.02%)</title><rect x="5.8698%" y="629" width="0.0232%" height="15" fill="rgb(242,56,43)" fg:x="8867" fg:w="35"/><text x="6.1198%" y="639.50"></text></g><g><title>Interval::Interval (31 samples, 0.02%)</title><rect x="5.8949%" y="613" width="0.0205%" height="15" fill="rgb(233,99,24)" fg:x="8905" fg:w="31"/><text x="6.1449%" y="623.50"></text></g><g><title>LinearScan::create_interval (39 samples, 0.03%)</title><rect x="5.8929%" y="629" width="0.0258%" height="15" fill="rgb(234,209,42)" fg:x="8902" fg:w="39"/><text x="6.1429%" y="639.50"></text></g><g><title>LinearScan::add_temp (78 samples, 0.05%)</title><rect x="5.8678%" y="645" width="0.0516%" height="15" fill="rgb(227,7,12)" fg:x="8864" fg:w="78"/><text x="6.1178%" y="655.50"></text></g><g><title>Interval::add_range (30 samples, 0.02%)</title><rect x="5.9525%" y="629" width="0.0199%" height="15" fill="rgb(245,203,43)" fg:x="8992" fg:w="30"/><text x="6.2025%" y="639.50"></text></g><g><title>Interval::Interval (58 samples, 0.04%)</title><rect x="5.9810%" y="613" width="0.0384%" height="15" fill="rgb(238,205,33)" fg:x="9035" fg:w="58"/><text x="6.2310%" y="623.50"></text></g><g><title>resource_allocate_bytes (29 samples, 0.02%)</title><rect x="6.0002%" y="597" width="0.0192%" height="15" fill="rgb(231,56,7)" fg:x="9064" fg:w="29"/><text x="6.2502%" y="607.50"></text></g><g><title>LinearScan::create_interval (81 samples, 0.05%)</title><rect x="5.9724%" y="629" width="0.0536%" height="15" fill="rgb(244,186,29)" fg:x="9022" fg:w="81"/><text x="6.2224%" y="639.50"></text></g><g><title>LinearScan::add_use (162 samples, 0.11%)</title><rect x="5.9194%" y="645" width="0.1072%" height="15" fill="rgb(234,111,31)" fg:x="8942" fg:w="162"/><text x="6.1694%" y="655.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (24 samples, 0.02%)</title><rect x="6.0293%" y="645" width="0.0159%" height="15" fill="rgb(241,149,10)" fg:x="9108" fg:w="24"/><text x="6.2793%" y="655.50"></text></g><g><title>LinearScan::use_kind_of_output_operand (25 samples, 0.02%)</title><rect x="6.0452%" y="645" width="0.0165%" height="15" fill="rgb(249,206,44)" fg:x="9132" fg:w="25"/><text x="6.2952%" y="655.50"></text></g><g><title>LinearScan::build_intervals (682 samples, 0.45%)</title><rect x="5.6143%" y="661" width="0.4515%" height="15" fill="rgb(251,153,30)" fg:x="8481" fg:w="682"/><text x="5.8643%" y="671.50"></text></g><g><title>LinearScan::compute_global_live_sets (52 samples, 0.03%)</title><rect x="6.0657%" y="661" width="0.0344%" height="15" fill="rgb(239,152,38)" fg:x="9163" fg:w="52"/><text x="6.3157%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (79 samples, 0.05%)</title><rect x="6.1650%" y="645" width="0.0523%" height="15" fill="rgb(249,139,47)" fg:x="9313" fg:w="79"/><text x="6.4150%" y="655.50"></text></g><g><title>LIR_OpVisitState::append (21 samples, 0.01%)</title><rect x="6.2034%" y="629" width="0.0139%" height="15" fill="rgb(244,64,35)" fg:x="9371" fg:w="21"/><text x="6.4534%" y="639.50"></text></g><g><title>LinearScan::compute_local_live_sets (219 samples, 0.14%)</title><rect x="6.1001%" y="661" width="0.1450%" height="15" fill="rgb(216,46,15)" fg:x="9215" fg:w="219"/><text x="6.3501%" y="671.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (28 samples, 0.02%)</title><rect x="6.2266%" y="645" width="0.0185%" height="15" fill="rgb(250,74,19)" fg:x="9406" fg:w="28"/><text x="6.4766%" y="655.50"></text></g><g><title>LinearScan::eliminate_spill_moves (57 samples, 0.04%)</title><rect x="6.2451%" y="661" width="0.0377%" height="15" fill="rgb(249,42,33)" fg:x="9434" fg:w="57"/><text x="6.4951%" y="671.50"></text></g><g><title>LinearScan::number_instructions (36 samples, 0.02%)</title><rect x="6.2829%" y="661" width="0.0238%" height="15" fill="rgb(242,149,17)" fg:x="9491" fg:w="36"/><text x="6.5329%" y="671.50"></text></g><g><title>BitMap::get_next_one_offset (19 samples, 0.01%)</title><rect x="6.3345%" y="629" width="0.0126%" height="15" fill="rgb(244,29,21)" fg:x="9569" fg:w="19"/><text x="6.5845%" y="639.50"></text></g><g><title>Interval::split_child_at_op_id (32 samples, 0.02%)</title><rect x="6.3471%" y="629" width="0.0212%" height="15" fill="rgb(220,130,37)" fg:x="9588" fg:w="32"/><text x="6.5971%" y="639.50"></text></g><g><title>LinearScan::resolve_collect_mappings (76 samples, 0.05%)</title><rect x="6.3193%" y="645" width="0.0503%" height="15" fill="rgb(211,67,2)" fg:x="9546" fg:w="76"/><text x="6.5693%" y="655.50"></text></g><g><title>LinearScan::resolve_data_flow (109 samples, 0.07%)</title><rect x="6.3073%" y="661" width="0.0722%" height="15" fill="rgb(235,68,52)" fg:x="9528" fg:w="109"/><text x="6.5573%" y="671.50"></text></g><g><title>LinearScan::resolve_exception_handlers (38 samples, 0.03%)</title><rect x="6.3795%" y="661" width="0.0252%" height="15" fill="rgb(246,142,3)" fg:x="9637" fg:w="38"/><text x="6.6295%" y="671.50"></text></g><g><title>__GI___qsort_r (23 samples, 0.02%)</title><rect x="6.4113%" y="645" width="0.0152%" height="15" fill="rgb(241,25,7)" fg:x="9685" fg:w="23"/><text x="6.6613%" y="655.50"></text></g><g><title>msort_with_tmp (21 samples, 0.01%)</title><rect x="6.4126%" y="629" width="0.0139%" height="15" fill="rgb(242,119,39)" fg:x="9687" fg:w="21"/><text x="6.6626%" y="639.50"></text></g><g><title>msort_with_tmp (20 samples, 0.01%)</title><rect x="6.4133%" y="613" width="0.0132%" height="15" fill="rgb(241,98,45)" fg:x="9688" fg:w="20"/><text x="6.6633%" y="623.50"></text></g><g><title>msort_with_tmp (18 samples, 0.01%)</title><rect x="6.4146%" y="597" width="0.0119%" height="15" fill="rgb(254,28,30)" fg:x="9690" fg:w="18"/><text x="6.6646%" y="607.50"></text></g><g><title>msort_with_tmp (16 samples, 0.01%)</title><rect x="6.4159%" y="581" width="0.0106%" height="15" fill="rgb(241,142,54)" fg:x="9692" fg:w="16"/><text x="6.6659%" y="591.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (35 samples, 0.02%)</title><rect x="6.4047%" y="661" width="0.0232%" height="15" fill="rgb(222,85,15)" fg:x="9675" fg:w="35"/><text x="6.6547%" y="671.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (52 samples, 0.03%)</title><rect x="6.4278%" y="661" width="0.0344%" height="15" fill="rgb(210,85,47)" fg:x="9710" fg:w="52"/><text x="6.6778%" y="671.50"></text></g><g><title>LinearScan::do_linear_scan (2,720 samples, 1.80%)</title><rect x="4.6623%" y="677" width="1.8006%" height="15" fill="rgb(224,206,25)" fg:x="7043" fg:w="2720"/><text x="4.9123%" y="687.50">L..</text></g><g><title>Compilation::emit_lir (3,509 samples, 2.32%)</title><rect x="4.1460%" y="693" width="2.3229%" height="15" fill="rgb(243,201,19)" fg:x="6263" fg:w="3509"/><text x="4.3960%" y="703.50">C..</text></g><g><title>FrameMap::FrameMap (18 samples, 0.01%)</title><rect x="6.4689%" y="693" width="0.0119%" height="15" fill="rgb(236,59,4)" fg:x="9772" fg:w="18"/><text x="6.7189%" y="703.50"></text></g><g><title>Metaspace::allocate (17 samples, 0.01%)</title><rect x="6.4927%" y="629" width="0.0113%" height="15" fill="rgb(254,179,45)" fg:x="9808" fg:w="17"/><text x="6.7427%" y="639.50"></text></g><g><title>MethodData::initialize (23 samples, 0.02%)</title><rect x="6.5106%" y="629" width="0.0152%" height="15" fill="rgb(226,14,10)" fg:x="9835" fg:w="23"/><text x="6.7606%" y="639.50"></text></g><g><title>MethodData::allocate (51 samples, 0.03%)</title><rect x="6.4927%" y="645" width="0.0338%" height="15" fill="rgb(244,27,41)" fg:x="9808" fg:w="51"/><text x="6.7427%" y="655.50"></text></g><g><title>Method::build_interpreter_method_data (54 samples, 0.04%)</title><rect x="6.4914%" y="661" width="0.0357%" height="15" fill="rgb(235,35,32)" fg:x="9806" fg:w="54"/><text x="6.7414%" y="671.50"></text></g><g><title>ciMethodData::load_data (37 samples, 0.02%)</title><rect x="6.5271%" y="661" width="0.0245%" height="15" fill="rgb(218,68,31)" fg:x="9860" fg:w="37"/><text x="6.7771%" y="671.50"></text></g><g><title>Compilation::compile_java_method (8,292 samples, 5.49%)</title><rect x="1.0671%" y="709" width="5.4891%" height="15" fill="rgb(207,120,37)" fg:x="1612" fg:w="8292"/><text x="1.3171%" y="719.50">Compila..</text></g><g><title>ciMethod::ensure_method_data (104 samples, 0.07%)</title><rect x="6.4874%" y="693" width="0.0688%" height="15" fill="rgb(227,98,0)" fg:x="9800" fg:w="104"/><text x="6.7374%" y="703.50"></text></g><g><title>ciMethod::ensure_method_data (99 samples, 0.07%)</title><rect x="6.4907%" y="677" width="0.0655%" height="15" fill="rgb(207,7,3)" fg:x="9805" fg:w="99"/><text x="6.7407%" y="687.50"></text></g><g><title>DebugInformationRecorder::DebugInformationRecorder (21 samples, 0.01%)</title><rect x="6.5569%" y="693" width="0.0139%" height="15" fill="rgb(206,98,19)" fg:x="9905" fg:w="21"/><text x="6.8069%" y="703.50"></text></g><g><title>Dependencies::initialize (17 samples, 0.01%)</title><rect x="6.5708%" y="693" width="0.0113%" height="15" fill="rgb(217,5,26)" fg:x="9926" fg:w="17"/><text x="6.8208%" y="703.50"></text></g><g><title>Compilation::initialize (43 samples, 0.03%)</title><rect x="6.5569%" y="709" width="0.0285%" height="15" fill="rgb(235,190,38)" fg:x="9905" fg:w="43"/><text x="6.8069%" y="719.50"></text></g><g><title>CodeBuffer::finalize_oop_references (67 samples, 0.04%)</title><rect x="6.6191%" y="677" width="0.0444%" height="15" fill="rgb(247,86,24)" fg:x="9999" fg:w="67"/><text x="6.8691%" y="687.50"></text></g><g><title>CodeHeap::allocate (17 samples, 0.01%)</title><rect x="6.6635%" y="661" width="0.0113%" height="15" fill="rgb(205,101,16)" fg:x="10066" fg:w="17"/><text x="6.9135%" y="671.50"></text></g><g><title>CodeCache::allocate (34 samples, 0.02%)</title><rect x="6.6635%" y="677" width="0.0225%" height="15" fill="rgb(246,168,33)" fg:x="10066" fg:w="34"/><text x="6.9135%" y="687.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (31 samples, 0.02%)</title><rect x="6.7264%" y="629" width="0.0205%" height="15" fill="rgb(231,114,1)" fg:x="10161" fg:w="31"/><text x="6.9764%" y="639.50"></text></g><g><title>Relocation::pd_call_destination (29 samples, 0.02%)</title><rect x="6.7277%" y="613" width="0.0192%" height="15" fill="rgb(207,184,53)" fg:x="10163" fg:w="29"/><text x="6.9777%" y="623.50"></text></g><g><title>do_user_addr_fault (23 samples, 0.02%)</title><rect x="6.7668%" y="581" width="0.0152%" height="15" fill="rgb(224,95,51)" fg:x="10222" fg:w="23"/><text x="7.0168%" y="591.50"></text></g><g><title>handle_mm_fault (20 samples, 0.01%)</title><rect x="6.7687%" y="565" width="0.0132%" height="15" fill="rgb(212,188,45)" fg:x="10225" fg:w="20"/><text x="7.0187%" y="575.50"></text></g><g><title>asm_exc_page_fault (24 samples, 0.02%)</title><rect x="6.7668%" y="613" width="0.0159%" height="15" fill="rgb(223,154,38)" fg:x="10222" fg:w="24"/><text x="7.0168%" y="623.50"></text></g><g><title>exc_page_fault (24 samples, 0.02%)</title><rect x="6.7668%" y="597" width="0.0159%" height="15" fill="rgb(251,22,52)" fg:x="10222" fg:w="24"/><text x="7.0168%" y="607.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (33 samples, 0.02%)</title><rect x="6.7615%" y="629" width="0.0218%" height="15" fill="rgb(229,209,22)" fg:x="10214" fg:w="33"/><text x="7.0115%" y="639.50"></text></g><g><title>CodeBuffer::relocate_code_to (107 samples, 0.07%)</title><rect x="6.7138%" y="645" width="0.0708%" height="15" fill="rgb(234,138,34)" fg:x="10142" fg:w="107"/><text x="6.9638%" y="655.50"></text></g><g><title>CodeBuffer::copy_code_to (118 samples, 0.08%)</title><rect x="6.7105%" y="661" width="0.0781%" height="15" fill="rgb(212,95,11)" fg:x="10137" fg:w="118"/><text x="6.9605%" y="671.50"></text></g><g><title>__GI___libc_malloc (16 samples, 0.01%)</title><rect x="6.8025%" y="581" width="0.0106%" height="15" fill="rgb(240,179,47)" fg:x="10276" fg:w="16"/><text x="7.0525%" y="591.50"></text></g><g><title>AllocateHeap (20 samples, 0.01%)</title><rect x="6.8005%" y="613" width="0.0132%" height="15" fill="rgb(240,163,11)" fg:x="10273" fg:w="20"/><text x="7.0505%" y="623.50"></text></g><g><title>os::malloc (20 samples, 0.01%)</title><rect x="6.8005%" y="597" width="0.0132%" height="15" fill="rgb(236,37,12)" fg:x="10273" fg:w="20"/><text x="7.0505%" y="607.50"></text></g><g><title>CodeBlob::CodeBlob (37 samples, 0.02%)</title><rect x="6.7946%" y="645" width="0.0245%" height="15" fill="rgb(232,164,16)" fg:x="10264" fg:w="37"/><text x="7.0446%" y="655.50"></text></g><g><title>ImmutableOopMapSet::build_from (37 samples, 0.02%)</title><rect x="6.7946%" y="629" width="0.0245%" height="15" fill="rgb(244,205,15)" fg:x="10264" fg:w="37"/><text x="7.0446%" y="639.50"></text></g><g><title>CompiledMethod::CompiledMethod (45 samples, 0.03%)</title><rect x="6.7946%" y="661" width="0.0298%" height="15" fill="rgb(223,117,47)" fg:x="10264" fg:w="45"/><text x="7.0446%" y="671.50"></text></g><g><title>G1CodeRootSet::add (20 samples, 0.01%)</title><rect x="6.8349%" y="629" width="0.0132%" height="15" fill="rgb(244,107,35)" fg:x="10325" fg:w="20"/><text x="7.0849%" y="639.50"></text></g><g><title>G1CollectedHeap::register_nmethod (39 samples, 0.03%)</title><rect x="6.8270%" y="661" width="0.0258%" height="15" fill="rgb(205,140,8)" fg:x="10313" fg:w="39"/><text x="7.0770%" y="671.50"></text></g><g><title>nmethod::oops_do (39 samples, 0.03%)</title><rect x="6.8270%" y="645" width="0.0258%" height="15" fill="rgb(228,84,46)" fg:x="10313" fg:w="39"/><text x="7.0770%" y="655.50"></text></g><g><title>nmethod::fix_oop_relocations (19 samples, 0.01%)</title><rect x="6.8654%" y="661" width="0.0126%" height="15" fill="rgb(254,188,9)" fg:x="10371" fg:w="19"/><text x="7.1154%" y="671.50"></text></g><g><title>nmethod::nmethod (257 samples, 0.17%)</title><rect x="6.7085%" y="677" width="0.1701%" height="15" fill="rgb(206,112,54)" fg:x="10134" fg:w="257"/><text x="6.9585%" y="687.50"></text></g><g><title>nmethod::new_nmethod (400 samples, 0.26%)</title><rect x="6.6145%" y="693" width="0.2648%" height="15" fill="rgb(216,84,49)" fg:x="9992" fg:w="400"/><text x="6.8645%" y="703.50"></text></g><g><title>ciEnv::register_method (445 samples, 0.29%)</title><rect x="6.5854%" y="709" width="0.2946%" height="15" fill="rgb(214,194,35)" fg:x="9948" fg:w="445"/><text x="6.8354%" y="719.50"></text></g><g><title>Compilation::compile_method (8,785 samples, 5.82%)</title><rect x="1.0651%" y="725" width="5.8155%" height="15" fill="rgb(249,28,3)" fg:x="1609" fg:w="8785"/><text x="1.3151%" y="735.50">Compila..</text></g><g><title>Compilation::Compilation (8,799 samples, 5.82%)</title><rect x="1.0618%" y="741" width="5.8248%" height="15" fill="rgb(222,56,52)" fg:x="1604" fg:w="8799"/><text x="1.3118%" y="751.50">Compila..</text></g><g><title>Compiler::compile_method (8,820 samples, 5.84%)</title><rect x="1.0492%" y="757" width="5.8387%" height="15" fill="rgb(245,217,50)" fg:x="1585" fg:w="8820"/><text x="1.2992%" y="767.50">Compile..</text></g><g><title>ciObjectFactory::ciObjectFactory (20 samples, 0.01%)</title><rect x="6.9203%" y="741" width="0.0132%" height="15" fill="rgb(213,201,24)" fg:x="10454" fg:w="20"/><text x="7.1703%" y="751.50"></text></g><g><title>ciObjectFactory::get (48 samples, 0.03%)</title><rect x="6.9336%" y="741" width="0.0318%" height="15" fill="rgb(248,116,28)" fg:x="10474" fg:w="48"/><text x="7.1836%" y="751.50"></text></g><g><title>ciObjectFactory::get_metadata (29 samples, 0.02%)</title><rect x="6.9462%" y="725" width="0.0192%" height="15" fill="rgb(219,72,43)" fg:x="10493" fg:w="29"/><text x="7.1962%" y="735.50"></text></g><g><title>ciObjectFactory::create_new_metadata (25 samples, 0.02%)</title><rect x="6.9488%" y="709" width="0.0165%" height="15" fill="rgb(209,138,14)" fg:x="10497" fg:w="25"/><text x="7.1988%" y="719.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (22 samples, 0.01%)</title><rect x="6.9508%" y="693" width="0.0146%" height="15" fill="rgb(222,18,33)" fg:x="10500" fg:w="22"/><text x="7.2008%" y="703.50"></text></g><g><title>ciEnv::ciEnv (84 samples, 0.06%)</title><rect x="6.9117%" y="757" width="0.0556%" height="15" fill="rgb(213,199,7)" fg:x="10441" fg:w="84"/><text x="7.1617%" y="767.50"></text></g><g><title>SignatureStream::as_symbol (25 samples, 0.02%)</title><rect x="6.9786%" y="677" width="0.0165%" height="15" fill="rgb(250,110,10)" fg:x="10542" fg:w="25"/><text x="7.2286%" y="687.50"></text></g><g><title>SymbolTable::lookup (25 samples, 0.02%)</title><rect x="6.9786%" y="661" width="0.0165%" height="15" fill="rgb(248,123,6)" fg:x="10542" fg:w="25"/><text x="7.2286%" y="671.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (16 samples, 0.01%)</title><rect x="7.0037%" y="661" width="0.0106%" height="15" fill="rgb(206,91,31)" fg:x="10580" fg:w="16"/><text x="7.2537%" y="671.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (31 samples, 0.02%)</title><rect x="6.9998%" y="677" width="0.0205%" height="15" fill="rgb(211,154,13)" fg:x="10574" fg:w="31"/><text x="7.2498%" y="687.50"></text></g><g><title>ciMethod::ciMethod (91 samples, 0.06%)</title><rect x="6.9693%" y="709" width="0.0602%" height="15" fill="rgb(225,148,7)" fg:x="10528" fg:w="91"/><text x="7.2193%" y="719.50"></text></g><g><title>ciSignature::ciSignature (84 samples, 0.06%)</title><rect x="6.9740%" y="693" width="0.0556%" height="15" fill="rgb(220,160,43)" fg:x="10535" fg:w="84"/><text x="7.2240%" y="703.50"></text></g><g><title>ciEnv::get_method_from_handle (103 samples, 0.07%)</title><rect x="6.9673%" y="757" width="0.0682%" height="15" fill="rgb(213,52,39)" fg:x="10525" fg:w="103"/><text x="7.2173%" y="767.50"></text></g><g><title>ciObjectFactory::get_metadata (102 samples, 0.07%)</title><rect x="6.9680%" y="741" width="0.0675%" height="15" fill="rgb(243,137,7)" fg:x="10526" fg:w="102"/><text x="7.2180%" y="751.50"></text></g><g><title>ciObjectFactory::create_new_metadata (101 samples, 0.07%)</title><rect x="6.9687%" y="725" width="0.0669%" height="15" fill="rgb(230,79,13)" fg:x="10527" fg:w="101"/><text x="7.2187%" y="735.50"></text></g><g><title>ciEnv::~ciEnv (26 samples, 0.02%)</title><rect x="7.0355%" y="757" width="0.0172%" height="15" fill="rgb(247,105,23)" fg:x="10628" fg:w="26"/><text x="7.2855%" y="767.50"></text></g><g><title>ciObjectFactory::remove_symbols (24 samples, 0.02%)</title><rect x="7.0368%" y="741" width="0.0159%" height="15" fill="rgb(223,179,41)" fg:x="10630" fg:w="24"/><text x="7.2868%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (9,256 samples, 6.13%)</title><rect x="0.9261%" y="773" width="6.1273%" height="15" fill="rgb(218,9,34)" fg:x="1399" fg:w="9256"/><text x="1.1761%" y="783.50">CompileB..</text></g><g><title>__do_sys_sysinfo (17 samples, 0.01%)</title><rect x="7.0627%" y="693" width="0.0113%" height="15" fill="rgb(222,106,8)" fg:x="10669" fg:w="17"/><text x="7.3127%" y="703.50"></text></g><g><title>do_sysinfo.isra.0 (16 samples, 0.01%)</title><rect x="7.0633%" y="677" width="0.0106%" height="15" fill="rgb(211,220,0)" fg:x="10670" fg:w="16"/><text x="7.3133%" y="687.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="7.0620%" y="709" width="0.0126%" height="15" fill="rgb(229,52,16)" fg:x="10668" fg:w="19"/><text x="7.3120%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="7.0620%" y="725" width="0.0132%" height="15" fill="rgb(212,155,18)" fg:x="10668" fg:w="20"/><text x="7.3120%" y="735.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (34 samples, 0.02%)</title><rect x="7.0534%" y="773" width="0.0225%" height="15" fill="rgb(242,21,14)" fg:x="10655" fg:w="34"/><text x="7.3034%" y="783.50"></text></g><g><title>os::available_memory (28 samples, 0.02%)</title><rect x="7.0574%" y="757" width="0.0185%" height="15" fill="rgb(222,19,48)" fg:x="10661" fg:w="28"/><text x="7.3074%" y="767.50"></text></g><g><title>__sysinfo (25 samples, 0.02%)</title><rect x="7.0594%" y="741" width="0.0165%" height="15" fill="rgb(232,45,27)" fg:x="10664" fg:w="25"/><text x="7.3094%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.03%)</title><rect x="7.1044%" y="517" width="0.0324%" height="15" fill="rgb(249,103,42)" fg:x="10732" fg:w="49"/><text x="7.3544%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.03%)</title><rect x="7.1050%" y="501" width="0.0318%" height="15" fill="rgb(246,81,33)" fg:x="10733" fg:w="48"/><text x="7.3550%" y="511.50"></text></g><g><title>native_write_msr (48 samples, 0.03%)</title><rect x="7.1050%" y="485" width="0.0318%" height="15" fill="rgb(252,33,42)" fg:x="10733" fg:w="48"/><text x="7.3550%" y="495.50"></text></g><g><title>finish_task_switch (53 samples, 0.04%)</title><rect x="7.1037%" y="533" width="0.0351%" height="15" fill="rgb(209,212,41)" fg:x="10731" fg:w="53"/><text x="7.3537%" y="543.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.05%)</title><rect x="7.0971%" y="581" width="0.0450%" height="15" fill="rgb(207,154,6)" fg:x="10721" fg:w="68"/><text x="7.3471%" y="591.50"></text></g><g><title>schedule (64 samples, 0.04%)</title><rect x="7.0997%" y="565" width="0.0424%" height="15" fill="rgb(223,64,47)" fg:x="10725" fg:w="64"/><text x="7.3497%" y="575.50"></text></g><g><title>__schedule (64 samples, 0.04%)</title><rect x="7.0997%" y="549" width="0.0424%" height="15" fill="rgb(211,161,38)" fg:x="10725" fg:w="64"/><text x="7.3497%" y="559.50"></text></g><g><title>do_futex (75 samples, 0.05%)</title><rect x="7.0958%" y="613" width="0.0496%" height="15" fill="rgb(219,138,40)" fg:x="10719" fg:w="75"/><text x="7.3458%" y="623.50"></text></g><g><title>futex_wait (74 samples, 0.05%)</title><rect x="7.0964%" y="597" width="0.0490%" height="15" fill="rgb(241,228,46)" fg:x="10720" fg:w="74"/><text x="7.3464%" y="607.50"></text></g><g><title>do_syscall_64 (78 samples, 0.05%)</title><rect x="7.0944%" y="645" width="0.0516%" height="15" fill="rgb(223,209,38)" fg:x="10717" fg:w="78"/><text x="7.3444%" y="655.50"></text></g><g><title>__x64_sys_futex (77 samples, 0.05%)</title><rect x="7.0951%" y="629" width="0.0510%" height="15" fill="rgb(236,164,45)" fg:x="10718" fg:w="77"/><text x="7.3451%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (81 samples, 0.05%)</title><rect x="7.0938%" y="709" width="0.0536%" height="15" fill="rgb(231,15,5)" fg:x="10716" fg:w="81"/><text x="7.3438%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (81 samples, 0.05%)</title><rect x="7.0938%" y="693" width="0.0536%" height="15" fill="rgb(252,35,15)" fg:x="10716" fg:w="81"/><text x="7.3438%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (80 samples, 0.05%)</title><rect x="7.0944%" y="677" width="0.0530%" height="15" fill="rgb(248,181,18)" fg:x="10717" fg:w="80"/><text x="7.3444%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.05%)</title><rect x="7.0944%" y="661" width="0.0530%" height="15" fill="rgb(233,39,42)" fg:x="10717" fg:w="80"/><text x="7.3444%" y="671.50"></text></g><g><title>Monitor::wait (92 samples, 0.06%)</title><rect x="7.0898%" y="757" width="0.0609%" height="15" fill="rgb(238,110,33)" fg:x="10710" fg:w="92"/><text x="7.3398%" y="767.50"></text></g><g><title>Monitor::IWait (90 samples, 0.06%)</title><rect x="7.0911%" y="741" width="0.0596%" height="15" fill="rgb(233,195,10)" fg:x="10712" fg:w="90"/><text x="7.3411%" y="751.50"></text></g><g><title>os::PlatformEvent::park (89 samples, 0.06%)</title><rect x="7.0918%" y="725" width="0.0589%" height="15" fill="rgb(254,105,3)" fg:x="10713" fg:w="89"/><text x="7.3418%" y="735.50"></text></g><g><title>TieredThresholdPolicy::select_task (40 samples, 0.03%)</title><rect x="7.1507%" y="757" width="0.0265%" height="15" fill="rgb(221,225,9)" fg:x="10802" fg:w="40"/><text x="7.4007%" y="767.50"></text></g><g><title>CompileQueue::get (154 samples, 0.10%)</title><rect x="7.0759%" y="773" width="0.1019%" height="15" fill="rgb(224,227,45)" fg:x="10689" fg:w="154"/><text x="7.3259%" y="783.50"></text></g><g><title>Thread::call_run (9,457 samples, 6.26%)</title><rect x="0.9248%" y="821" width="6.2603%" height="15" fill="rgb(229,198,43)" fg:x="1397" fg:w="9457"/><text x="1.1748%" y="831.50">Thread::..</text></g><g><title>JavaThread::thread_main_inner (9,457 samples, 6.26%)</title><rect x="0.9248%" y="805" width="6.2603%" height="15" fill="rgb(206,209,35)" fg:x="1397" fg:w="9457"/><text x="1.1748%" y="815.50">JavaThre..</text></g><g><title>CompileBroker::compiler_thread_loop (9,457 samples, 6.26%)</title><rect x="0.9248%" y="789" width="6.2603%" height="15" fill="rgb(245,195,53)" fg:x="1397" fg:w="9457"/><text x="1.1748%" y="799.50">CompileB..</text></g><g><title>__GI___clone (9,465 samples, 6.27%)</title><rect x="0.9202%" y="869" width="6.2656%" height="15" fill="rgb(240,92,26)" fg:x="1390" fg:w="9465"/><text x="1.1702%" y="879.50">__GI___c..</text></g><g><title>start_thread (9,458 samples, 6.26%)</title><rect x="0.9248%" y="853" width="6.2610%" height="15" fill="rgb(207,40,23)" fg:x="1397" fg:w="9458"/><text x="1.1748%" y="863.50">start_th..</text></g><g><title>thread_native_entry (9,458 samples, 6.26%)</title><rect x="0.9248%" y="837" width="6.2610%" height="15" fill="rgb(223,111,35)" fg:x="1397" fg:w="9458"/><text x="1.1748%" y="847.50">thread_n..</text></g><g><title>C1_CompilerThre (10,891 samples, 7.21%)</title><rect x="0.0126%" y="885" width="7.2096%" height="15" fill="rgb(229,147,28)" fg:x="19" fg:w="10891"/><text x="0.2626%" y="895.50">C1_Compile..</text></g><g><title>Dict::Insert (16 samples, 0.01%)</title><rect x="7.2242%" y="869" width="0.0106%" height="15" fill="rgb(211,29,28)" fg:x="10913" fg:w="16"/><text x="7.4742%" y="879.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (29 samples, 0.02%)</title><rect x="7.2712%" y="869" width="0.0192%" height="15" fill="rgb(228,72,33)" fg:x="10984" fg:w="29"/><text x="7.5212%" y="879.50"></text></g><g><title>RegMask::is_UP (28 samples, 0.02%)</title><rect x="7.2718%" y="853" width="0.0185%" height="15" fill="rgb(205,214,31)" fg:x="10985" fg:w="28"/><text x="7.5218%" y="863.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (19 samples, 0.01%)</title><rect x="7.2910%" y="869" width="0.0126%" height="15" fill="rgb(224,111,15)" fg:x="11014" fg:w="19"/><text x="7.5410%" y="879.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (57 samples, 0.04%)</title><rect x="7.3308%" y="869" width="0.0377%" height="15" fill="rgb(253,21,26)" fg:x="11074" fg:w="57"/><text x="7.5808%" y="879.50"></text></g><g><title>ProjNode::pinned (56 samples, 0.04%)</title><rect x="7.3314%" y="853" width="0.0371%" height="15" fill="rgb(245,139,43)" fg:x="11075" fg:w="56"/><text x="7.5814%" y="863.50"></text></g><g><title>CProjNode::is_CFG (20 samples, 0.01%)</title><rect x="7.4751%" y="853" width="0.0132%" height="15" fill="rgb(252,170,7)" fg:x="11292" fg:w="20"/><text x="7.7251%" y="863.50"></text></g><g><title>ConINode::Opcode (16 samples, 0.01%)</title><rect x="7.5909%" y="853" width="0.0106%" height="15" fill="rgb(231,118,14)" fg:x="11467" fg:w="16"/><text x="7.8409%" y="863.50"></text></g><g><title>IfFalseNode::Opcode (17 samples, 0.01%)</title><rect x="7.7035%" y="853" width="0.0113%" height="15" fill="rgb(238,83,0)" fg:x="11637" fg:w="17"/><text x="7.9535%" y="863.50"></text></g><g><title>IfTrueNode::Opcode (24 samples, 0.02%)</title><rect x="7.7299%" y="853" width="0.0159%" height="15" fill="rgb(221,39,39)" fg:x="11677" fg:w="24"/><text x="7.9799%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (32 samples, 0.02%)</title><rect x="7.7571%" y="853" width="0.0212%" height="15" fill="rgb(222,119,46)" fg:x="11718" fg:w="32"/><text x="8.0071%" y="863.50"></text></g><g><title>MultiNode::is_CFG (50 samples, 0.03%)</title><rect x="7.9749%" y="853" width="0.0331%" height="15" fill="rgb(222,165,49)" fg:x="12047" fg:w="50"/><text x="8.2249%" y="863.50"></text></g><g><title>Node::is_CFG (46 samples, 0.03%)</title><rect x="8.0371%" y="853" width="0.0305%" height="15" fill="rgb(219,113,52)" fg:x="12141" fg:w="46"/><text x="8.2871%" y="863.50"></text></g><g><title>Node::pinned (32 samples, 0.02%)</title><rect x="8.0781%" y="853" width="0.0212%" height="15" fill="rgb(214,7,15)" fg:x="12203" fg:w="32"/><text x="8.3281%" y="863.50"></text></g><g><title>PhiNode::Opcode (28 samples, 0.02%)</title><rect x="8.2469%" y="853" width="0.0185%" height="15" fill="rgb(235,32,4)" fg:x="12458" fg:w="28"/><text x="8.4969%" y="863.50"></text></g><g><title>ProjNode::is_CFG (20 samples, 0.01%)</title><rect x="8.2920%" y="853" width="0.0132%" height="15" fill="rgb(238,90,54)" fg:x="12526" fg:w="20"/><text x="8.5420%" y="863.50"></text></g><g><title>ProjNode::pinned (18 samples, 0.01%)</title><rect x="8.3052%" y="853" width="0.0119%" height="15" fill="rgb(213,208,19)" fg:x="12546" fg:w="18"/><text x="8.5552%" y="863.50"></text></g><g><title>RegMask::Size (17 samples, 0.01%)</title><rect x="8.3251%" y="853" width="0.0113%" height="15" fill="rgb(233,156,4)" fg:x="12576" fg:w="17"/><text x="8.5751%" y="863.50"></text></g><g><title>RegionNode::is_CFG (47 samples, 0.03%)</title><rect x="8.3661%" y="853" width="0.0311%" height="15" fill="rgb(207,194,5)" fg:x="12638" fg:w="47"/><text x="8.6161%" y="863.50"></text></g><g><title>TypeNode::bottom_type (26 samples, 0.02%)</title><rect x="8.5349%" y="853" width="0.0172%" height="15" fill="rgb(206,111,30)" fg:x="12893" fg:w="26"/><text x="8.7849%" y="863.50"></text></g><g><title>_dl_update_slotinfo (175 samples, 0.12%)</title><rect x="8.6163%" y="853" width="0.1158%" height="15" fill="rgb(243,70,54)" fg:x="13016" fg:w="175"/><text x="8.8663%" y="863.50"></text></g><g><title>find_lowest_bit (29 samples, 0.02%)</title><rect x="8.8275%" y="853" width="0.0192%" height="15" fill="rgb(242,28,8)" fg:x="13335" fg:w="29"/><text x="9.0775%" y="863.50"></text></g><g><title>jmpDirNode::is_block_proj (21 samples, 0.01%)</title><rect x="8.8705%" y="853" width="0.0139%" height="15" fill="rgb(219,106,18)" fg:x="13400" fg:w="21"/><text x="9.1205%" y="863.50"></text></g><g><title>update_get_addr (43 samples, 0.03%)</title><rect x="8.9870%" y="853" width="0.0285%" height="15" fill="rgb(244,222,10)" fg:x="13576" fg:w="43"/><text x="9.2370%" y="863.50"></text></g><g><title>[anon] (2,472 samples, 1.64%)</title><rect x="7.3837%" y="869" width="1.6364%" height="15" fill="rgb(236,179,52)" fg:x="11154" fg:w="2472"/><text x="7.6337%" y="879.50"></text></g><g><title>Compile::call_generator (27 samples, 0.02%)</title><rect x="9.0479%" y="709" width="0.0179%" height="15" fill="rgb(213,23,39)" fg:x="13668" fg:w="27"/><text x="9.2979%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (27 samples, 0.02%)</title><rect x="9.0479%" y="693" width="0.0179%" height="15" fill="rgb(238,48,10)" fg:x="13668" fg:w="27"/><text x="9.2979%" y="703.50"></text></g><g><title>ciMethod::get_flow_analysis (22 samples, 0.01%)</title><rect x="9.0513%" y="677" width="0.0146%" height="15" fill="rgb(251,196,23)" fg:x="13673" fg:w="22"/><text x="9.3013%" y="687.50"></text></g><g><title>ciTypeFlow::do_flow (20 samples, 0.01%)</title><rect x="9.0526%" y="661" width="0.0132%" height="15" fill="rgb(250,152,24)" fg:x="13675" fg:w="20"/><text x="9.3026%" y="671.50"></text></g><g><title>ciTypeFlow::flow_types (20 samples, 0.01%)</title><rect x="9.0526%" y="645" width="0.0132%" height="15" fill="rgb(209,150,17)" fg:x="13675" fg:w="20"/><text x="9.3026%" y="655.50"></text></g><g><title>ciTypeFlow::df_flow_types (20 samples, 0.01%)</title><rect x="9.0526%" y="629" width="0.0132%" height="15" fill="rgb(234,202,34)" fg:x="13675" fg:w="20"/><text x="9.3026%" y="639.50"></text></g><g><title>ciTypeFlow::flow_block (20 samples, 0.01%)</title><rect x="9.0526%" y="613" width="0.0132%" height="15" fill="rgb(253,148,53)" fg:x="13675" fg:w="20"/><text x="9.3026%" y="623.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (18 samples, 0.01%)</title><rect x="9.0757%" y="597" width="0.0119%" height="15" fill="rgb(218,129,16)" fg:x="13710" fg:w="18"/><text x="9.3257%" y="607.50"></text></g><g><title>ciBytecodeStream::get_field (17 samples, 0.01%)</title><rect x="9.0764%" y="581" width="0.0113%" height="15" fill="rgb(216,85,19)" fg:x="13711" fg:w="17"/><text x="9.3264%" y="591.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (39 samples, 0.03%)</title><rect x="9.0877%" y="597" width="0.0258%" height="15" fill="rgb(235,228,7)" fg:x="13728" fg:w="39"/><text x="9.3377%" y="607.50"></text></g><g><title>ciBytecodeStream::get_method (39 samples, 0.03%)</title><rect x="9.0877%" y="581" width="0.0258%" height="15" fill="rgb(245,175,0)" fg:x="13728" fg:w="39"/><text x="9.3377%" y="591.50"></text></g><g><title>ciEnv::get_method_by_index_impl (36 samples, 0.02%)</title><rect x="9.0896%" y="565" width="0.0238%" height="15" fill="rgb(208,168,36)" fg:x="13731" fg:w="36"/><text x="9.3396%" y="575.50"></text></g><g><title>ciObjectFactory::get_metadata (28 samples, 0.02%)</title><rect x="9.0949%" y="549" width="0.0185%" height="15" fill="rgb(246,171,24)" fg:x="13739" fg:w="28"/><text x="9.3449%" y="559.50"></text></g><g><title>ciObjectFactory::create_new_metadata (25 samples, 0.02%)</title><rect x="9.0969%" y="533" width="0.0165%" height="15" fill="rgb(215,142,24)" fg:x="13742" fg:w="25"/><text x="9.3469%" y="543.50"></text></g><g><title>ciMethod::ciMethod (22 samples, 0.01%)</title><rect x="9.0989%" y="517" width="0.0146%" height="15" fill="rgb(250,187,7)" fg:x="13745" fg:w="22"/><text x="9.3489%" y="527.50"></text></g><g><title>ciSignature::ciSignature (17 samples, 0.01%)</title><rect x="9.1022%" y="501" width="0.0113%" height="15" fill="rgb(228,66,33)" fg:x="13750" fg:w="17"/><text x="9.3522%" y="511.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (66 samples, 0.04%)</title><rect x="9.0731%" y="613" width="0.0437%" height="15" fill="rgb(234,215,21)" fg:x="13706" fg:w="66"/><text x="9.3231%" y="623.50"></text></g><g><title>ciTypeFlow::df_flow_types (74 samples, 0.05%)</title><rect x="9.0691%" y="645" width="0.0490%" height="15" fill="rgb(222,191,20)" fg:x="13700" fg:w="74"/><text x="9.3191%" y="655.50"></text></g><g><title>ciTypeFlow::flow_block (74 samples, 0.05%)</title><rect x="9.0691%" y="629" width="0.0490%" height="15" fill="rgb(245,79,54)" fg:x="13700" fg:w="74"/><text x="9.3191%" y="639.50"></text></g><g><title>InlineTree::ok_to_inline (81 samples, 0.05%)</title><rect x="9.0658%" y="709" width="0.0536%" height="15" fill="rgb(240,10,37)" fg:x="13695" fg:w="81"/><text x="9.3158%" y="719.50"></text></g><g><title>ciMethod::get_flow_analysis (77 samples, 0.05%)</title><rect x="9.0685%" y="693" width="0.0510%" height="15" fill="rgb(214,192,32)" fg:x="13699" fg:w="77"/><text x="9.3185%" y="703.50"></text></g><g><title>ciTypeFlow::do_flow (77 samples, 0.05%)</title><rect x="9.0685%" y="677" width="0.0510%" height="15" fill="rgb(209,36,54)" fg:x="13699" fg:w="77"/><text x="9.3185%" y="687.50"></text></g><g><title>ciTypeFlow::flow_types (77 samples, 0.05%)</title><rect x="9.0685%" y="661" width="0.0510%" height="15" fill="rgb(220,10,11)" fg:x="13699" fg:w="77"/><text x="9.3185%" y="671.50"></text></g><g><title>Compile::call_generator (116 samples, 0.08%)</title><rect x="9.0479%" y="725" width="0.0768%" height="15" fill="rgb(221,106,17)" fg:x="13668" fg:w="116"/><text x="9.2979%" y="735.50"></text></g><g><title>ciEnv::get_method_by_index_impl (29 samples, 0.02%)</title><rect x="9.1956%" y="469" width="0.0192%" height="15" fill="rgb(251,142,44)" fg:x="13891" fg:w="29"/><text x="9.4456%" y="479.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (31 samples, 0.02%)</title><rect x="9.1949%" y="501" width="0.0205%" height="15" fill="rgb(238,13,15)" fg:x="13890" fg:w="31"/><text x="9.4449%" y="511.50"></text></g><g><title>ciBytecodeStream::get_method (31 samples, 0.02%)</title><rect x="9.1949%" y="485" width="0.0205%" height="15" fill="rgb(208,107,27)" fg:x="13890" fg:w="31"/><text x="9.4449%" y="495.50"></text></g><g><title>ciTypeFlow::flow_block (50 samples, 0.03%)</title><rect x="9.1856%" y="533" width="0.0331%" height="15" fill="rgb(205,136,37)" fg:x="13876" fg:w="50"/><text x="9.4356%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (46 samples, 0.03%)</title><rect x="9.1883%" y="517" width="0.0305%" height="15" fill="rgb(250,205,27)" fg:x="13880" fg:w="46"/><text x="9.4383%" y="527.50"></text></g><g><title>ciTypeFlow::df_flow_types (59 samples, 0.04%)</title><rect x="9.1803%" y="549" width="0.0391%" height="15" fill="rgb(210,80,43)" fg:x="13868" fg:w="59"/><text x="9.4303%" y="559.50"></text></g><g><title>ciTypeFlow::do_flow (67 samples, 0.04%)</title><rect x="9.1777%" y="581" width="0.0444%" height="15" fill="rgb(247,160,36)" fg:x="13864" fg:w="67"/><text x="9.4277%" y="591.50"></text></g><g><title>ciTypeFlow::flow_types (67 samples, 0.04%)</title><rect x="9.1777%" y="565" width="0.0444%" height="15" fill="rgb(234,13,49)" fg:x="13864" fg:w="67"/><text x="9.4277%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (91 samples, 0.06%)</title><rect x="9.1625%" y="613" width="0.0602%" height="15" fill="rgb(234,122,0)" fg:x="13841" fg:w="91"/><text x="9.4125%" y="623.50"></text></g><g><title>ciMethod::get_flow_analysis (74 samples, 0.05%)</title><rect x="9.1737%" y="597" width="0.0490%" height="15" fill="rgb(207,146,38)" fg:x="13858" fg:w="74"/><text x="9.4237%" y="607.50"></text></g><g><title>Compile::call_generator (111 samples, 0.07%)</title><rect x="9.1499%" y="629" width="0.0735%" height="15" fill="rgb(207,177,25)" fg:x="13822" fg:w="111"/><text x="9.3999%" y="639.50"></text></g><g><title>LibraryIntrinsic::generate (16 samples, 0.01%)</title><rect x="9.2386%" y="629" width="0.0106%" height="15" fill="rgb(211,178,42)" fg:x="13956" fg:w="16"/><text x="9.4886%" y="639.50"></text></g><g><title>ciTypeFlow::df_flow_types (25 samples, 0.02%)</title><rect x="9.3160%" y="453" width="0.0165%" height="15" fill="rgb(230,69,54)" fg:x="14073" fg:w="25"/><text x="9.5660%" y="463.50"></text></g><g><title>ciTypeFlow::flow_block (23 samples, 0.02%)</title><rect x="9.3174%" y="437" width="0.0152%" height="15" fill="rgb(214,135,41)" fg:x="14075" fg:w="23"/><text x="9.5674%" y="447.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (20 samples, 0.01%)</title><rect x="9.3194%" y="421" width="0.0132%" height="15" fill="rgb(237,67,25)" fg:x="14078" fg:w="20"/><text x="9.5694%" y="431.50"></text></g><g><title>Compile::call_generator (46 samples, 0.03%)</title><rect x="9.3028%" y="533" width="0.0305%" height="15" fill="rgb(222,189,50)" fg:x="14053" fg:w="46"/><text x="9.5528%" y="543.50"></text></g><g><title>InlineTree::ok_to_inline (41 samples, 0.03%)</title><rect x="9.3061%" y="517" width="0.0271%" height="15" fill="rgb(245,148,34)" fg:x="14058" fg:w="41"/><text x="9.5561%" y="527.50"></text></g><g><title>ciMethod::get_flow_analysis (31 samples, 0.02%)</title><rect x="9.3127%" y="501" width="0.0205%" height="15" fill="rgb(222,29,6)" fg:x="14068" fg:w="31"/><text x="9.5627%" y="511.50"></text></g><g><title>ciTypeFlow::do_flow (28 samples, 0.02%)</title><rect x="9.3147%" y="485" width="0.0185%" height="15" fill="rgb(221,189,43)" fg:x="14071" fg:w="28"/><text x="9.5647%" y="495.50"></text></g><g><title>ciTypeFlow::flow_types (28 samples, 0.02%)</title><rect x="9.3147%" y="469" width="0.0185%" height="15" fill="rgb(207,36,27)" fg:x="14071" fg:w="28"/><text x="9.5647%" y="479.50"></text></g><g><title>Compile::call_generator (19 samples, 0.01%)</title><rect x="9.3869%" y="437" width="0.0126%" height="15" fill="rgb(217,90,24)" fg:x="14180" fg:w="19"/><text x="9.6369%" y="447.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.02%)</title><rect x="9.4259%" y="389" width="0.0238%" height="15" fill="rgb(224,66,35)" fg:x="14239" fg:w="36"/><text x="9.6759%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="9.4279%" y="373" width="0.0218%" height="15" fill="rgb(221,13,50)" fg:x="14242" fg:w="33"/><text x="9.6779%" y="383.50"></text></g><g><title>Parse::do_all_blocks (40 samples, 0.03%)</title><rect x="9.4253%" y="405" width="0.0265%" height="15" fill="rgb(236,68,49)" fg:x="14238" fg:w="40"/><text x="9.6753%" y="415.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.04%)</title><rect x="9.4173%" y="437" width="0.0410%" height="15" fill="rgb(229,146,28)" fg:x="14226" fg:w="62"/><text x="9.6673%" y="447.50"></text></g><g><title>Parse::Parse (62 samples, 0.04%)</title><rect x="9.4173%" y="421" width="0.0410%" height="15" fill="rgb(225,31,38)" fg:x="14226" fg:w="62"/><text x="9.6673%" y="431.50"></text></g><g><title>Parse::do_call (134 samples, 0.09%)</title><rect x="9.3849%" y="453" width="0.0887%" height="15" fill="rgb(250,208,3)" fg:x="14177" fg:w="134"/><text x="9.6349%" y="463.50"></text></g><g><title>Parse::do_field_access (41 samples, 0.03%)</title><rect x="9.4749%" y="453" width="0.0271%" height="15" fill="rgb(246,54,23)" fg:x="14313" fg:w="41"/><text x="9.7249%" y="463.50"></text></g><g><title>Parse::do_if (20 samples, 0.01%)</title><rect x="9.5021%" y="453" width="0.0132%" height="15" fill="rgb(243,76,11)" fg:x="14354" fg:w="20"/><text x="9.7521%" y="463.50"></text></g><g><title>Parse::do_one_block (234 samples, 0.15%)</title><rect x="9.3723%" y="485" width="0.1549%" height="15" fill="rgb(245,21,50)" fg:x="14158" fg:w="234"/><text x="9.6223%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (232 samples, 0.15%)</title><rect x="9.3736%" y="469" width="0.1536%" height="15" fill="rgb(228,9,43)" fg:x="14160" fg:w="232"/><text x="9.6236%" y="479.50"></text></g><g><title>Parse::do_all_blocks (240 samples, 0.16%)</title><rect x="9.3716%" y="501" width="0.1589%" height="15" fill="rgb(208,100,47)" fg:x="14157" fg:w="240"/><text x="9.6216%" y="511.50"></text></g><g><title>ParseGenerator::generate (282 samples, 0.19%)</title><rect x="9.3531%" y="533" width="0.1867%" height="15" fill="rgb(232,26,8)" fg:x="14129" fg:w="282"/><text x="9.6031%" y="543.50"></text></g><g><title>Parse::Parse (281 samples, 0.19%)</title><rect x="9.3538%" y="517" width="0.1860%" height="15" fill="rgb(216,166,38)" fg:x="14130" fg:w="281"/><text x="9.6038%" y="527.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="9.5444%" y="517" width="0.0113%" height="15" fill="rgb(251,202,51)" fg:x="14418" fg:w="17"/><text x="9.7944%" y="527.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="9.5444%" y="501" width="0.0113%" height="15" fill="rgb(254,216,34)" fg:x="14418" fg:w="17"/><text x="9.7944%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (29 samples, 0.02%)</title><rect x="9.5398%" y="533" width="0.0192%" height="15" fill="rgb(251,32,27)" fg:x="14411" fg:w="29"/><text x="9.7898%" y="543.50"></text></g><g><title>Parse::do_call (410 samples, 0.27%)</title><rect x="9.3008%" y="549" width="0.2714%" height="15" fill="rgb(208,127,28)" fg:x="14050" fg:w="410"/><text x="9.5508%" y="559.50"></text></g><g><title>Parse::do_get_xxx (17 samples, 0.01%)</title><rect x="9.5808%" y="533" width="0.0113%" height="15" fill="rgb(224,137,22)" fg:x="14473" fg:w="17"/><text x="9.8308%" y="543.50"></text></g><g><title>G1BarrierSetC2::post_barrier (16 samples, 0.01%)</title><rect x="9.5947%" y="469" width="0.0106%" height="15" fill="rgb(254,70,32)" fg:x="14494" fg:w="16"/><text x="9.8447%" y="479.50"></text></g><g><title>GraphKit::access_store_at (29 samples, 0.02%)</title><rect x="9.5921%" y="517" width="0.0192%" height="15" fill="rgb(229,75,37)" fg:x="14490" fg:w="29"/><text x="9.8421%" y="527.50"></text></g><g><title>BarrierSetC2::store_at (28 samples, 0.02%)</title><rect x="9.5927%" y="501" width="0.0185%" height="15" fill="rgb(252,64,23)" fg:x="14491" fg:w="28"/><text x="9.8427%" y="511.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (25 samples, 0.02%)</title><rect x="9.5947%" y="485" width="0.0165%" height="15" fill="rgb(232,162,48)" fg:x="14494" fg:w="25"/><text x="9.8447%" y="495.50"></text></g><g><title>Parse::do_put_xxx (33 samples, 0.02%)</title><rect x="9.5921%" y="533" width="0.0218%" height="15" fill="rgb(246,160,12)" fg:x="14490" fg:w="33"/><text x="9.8421%" y="543.50"></text></g><g><title>Parse::do_field_access (65 samples, 0.04%)</title><rect x="9.5769%" y="549" width="0.0430%" height="15" fill="rgb(247,166,0)" fg:x="14467" fg:w="65"/><text x="9.8269%" y="559.50"></text></g><g><title>Parse::do_if (26 samples, 0.02%)</title><rect x="9.6199%" y="549" width="0.0172%" height="15" fill="rgb(249,219,21)" fg:x="14532" fg:w="26"/><text x="9.8699%" y="559.50"></text></g><g><title>Parse::do_one_block (590 samples, 0.39%)</title><rect x="9.2743%" y="581" width="0.3906%" height="15" fill="rgb(205,209,3)" fg:x="14010" fg:w="590"/><text x="9.5243%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (582 samples, 0.39%)</title><rect x="9.2796%" y="565" width="0.3853%" height="15" fill="rgb(243,44,1)" fg:x="14018" fg:w="582"/><text x="9.5296%" y="575.50"></text></g><g><title>Parse::do_all_blocks (600 samples, 0.40%)</title><rect x="9.2730%" y="597" width="0.3972%" height="15" fill="rgb(206,159,16)" fg:x="14008" fg:w="600"/><text x="9.5230%" y="607.50"></text></g><g><title>ParseGenerator::generate (657 samples, 0.43%)</title><rect x="9.2492%" y="629" width="0.4349%" height="15" fill="rgb(244,77,30)" fg:x="13972" fg:w="657"/><text x="9.4992%" y="639.50"></text></g><g><title>Parse::Parse (656 samples, 0.43%)</title><rect x="9.2498%" y="613" width="0.4343%" height="15" fill="rgb(218,69,12)" fg:x="13973" fg:w="656"/><text x="9.4998%" y="623.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="9.7073%" y="469" width="0.0146%" height="15" fill="rgb(212,87,7)" fg:x="14664" fg:w="22"/><text x="9.9573%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="9.7073%" y="453" width="0.0146%" height="15" fill="rgb(245,114,25)" fg:x="14664" fg:w="22"/><text x="9.9573%" y="463.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="9.7073%" y="517" width="0.0159%" height="15" fill="rgb(210,61,42)" fg:x="14664" fg:w="24"/><text x="9.9573%" y="527.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="9.7073%" y="501" width="0.0159%" height="15" fill="rgb(211,52,33)" fg:x="14664" fg:w="24"/><text x="9.9573%" y="511.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="9.7073%" y="485" width="0.0159%" height="15" fill="rgb(234,58,33)" fg:x="14664" fg:w="24"/><text x="9.9573%" y="495.50"></text></g><g><title>Parse::do_call (50 samples, 0.03%)</title><rect x="9.6954%" y="533" width="0.0331%" height="15" fill="rgb(220,115,36)" fg:x="14646" fg:w="50"/><text x="9.9454%" y="543.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.04%)</title><rect x="9.6927%" y="565" width="0.0424%" height="15" fill="rgb(243,153,54)" fg:x="14642" fg:w="64"/><text x="9.9427%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.04%)</title><rect x="9.6934%" y="549" width="0.0417%" height="15" fill="rgb(251,47,18)" fg:x="14643" fg:w="63"/><text x="9.9434%" y="559.50"></text></g><g><title>Parse::do_all_blocks (65 samples, 0.04%)</title><rect x="9.6927%" y="581" width="0.0430%" height="15" fill="rgb(242,102,42)" fg:x="14642" fg:w="65"/><text x="9.9427%" y="591.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.05%)</title><rect x="9.6914%" y="613" width="0.0457%" height="15" fill="rgb(234,31,38)" fg:x="14640" fg:w="69"/><text x="9.9414%" y="623.50"></text></g><g><title>Parse::Parse (69 samples, 0.05%)</title><rect x="9.6914%" y="597" width="0.0457%" height="15" fill="rgb(221,117,51)" fg:x="14640" fg:w="69"/><text x="9.9414%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (96 samples, 0.06%)</title><rect x="9.6848%" y="629" width="0.0636%" height="15" fill="rgb(212,20,18)" fg:x="14630" fg:w="96"/><text x="9.9348%" y="639.50"></text></g><g><title>Parse::do_call (922 samples, 0.61%)</title><rect x="9.1499%" y="645" width="0.6103%" height="15" fill="rgb(245,133,36)" fg:x="13822" fg:w="922"/><text x="9.3999%" y="655.50"></text></g><g><title>GraphKit::access_load_at (23 samples, 0.02%)</title><rect x="9.7741%" y="613" width="0.0152%" height="15" fill="rgb(212,6,19)" fg:x="14765" fg:w="23"/><text x="10.0241%" y="623.50"></text></g><g><title>BarrierSetC2::load_at (23 samples, 0.02%)</title><rect x="9.7741%" y="597" width="0.0152%" height="15" fill="rgb(218,1,36)" fg:x="14765" fg:w="23"/><text x="10.0241%" y="607.50"></text></g><g><title>G1BarrierSetC2::load_at_resolved (23 samples, 0.02%)</title><rect x="9.7741%" y="581" width="0.0152%" height="15" fill="rgb(246,84,54)" fg:x="14765" fg:w="23"/><text x="10.0241%" y="591.50"></text></g><g><title>BarrierSetC2::load_at_resolved (23 samples, 0.02%)</title><rect x="9.7741%" y="565" width="0.0152%" height="15" fill="rgb(242,110,6)" fg:x="14765" fg:w="23"/><text x="10.0241%" y="575.50"></text></g><g><title>GraphKit::make_load (22 samples, 0.01%)</title><rect x="9.7748%" y="549" width="0.0146%" height="15" fill="rgb(214,47,5)" fg:x="14766" fg:w="22"/><text x="10.0248%" y="559.50"></text></g><g><title>Parse::do_get_xxx (46 samples, 0.03%)</title><rect x="9.7688%" y="629" width="0.0305%" height="15" fill="rgb(218,159,25)" fg:x="14757" fg:w="46"/><text x="10.0188%" y="639.50"></text></g><g><title>G1BarrierSetC2::post_barrier (23 samples, 0.02%)</title><rect x="9.8026%" y="565" width="0.0152%" height="15" fill="rgb(215,211,28)" fg:x="14808" fg:w="23"/><text x="10.0526%" y="575.50"></text></g><g><title>GraphKit::access_store_at (44 samples, 0.03%)</title><rect x="9.7993%" y="613" width="0.0291%" height="15" fill="rgb(238,59,32)" fg:x="14803" fg:w="44"/><text x="10.0493%" y="623.50"></text></g><g><title>BarrierSetC2::store_at (44 samples, 0.03%)</title><rect x="9.7993%" y="597" width="0.0291%" height="15" fill="rgb(226,82,3)" fg:x="14803" fg:w="44"/><text x="10.0493%" y="607.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (41 samples, 0.03%)</title><rect x="9.8013%" y="581" width="0.0271%" height="15" fill="rgb(240,164,32)" fg:x="14806" fg:w="41"/><text x="10.0513%" y="591.50"></text></g><g><title>G1BarrierSetC2::pre_barrier (16 samples, 0.01%)</title><rect x="9.8178%" y="565" width="0.0106%" height="15" fill="rgb(232,46,7)" fg:x="14831" fg:w="16"/><text x="10.0678%" y="575.50"></text></g><g><title>Parse::do_put_xxx (46 samples, 0.03%)</title><rect x="9.7993%" y="629" width="0.0305%" height="15" fill="rgb(229,129,53)" fg:x="14803" fg:w="46"/><text x="10.0493%" y="639.50"></text></g><g><title>Parse::do_field_access (99 samples, 0.07%)</title><rect x="9.7649%" y="645" width="0.0655%" height="15" fill="rgb(234,188,29)" fg:x="14751" fg:w="99"/><text x="10.0149%" y="655.50"></text></g><g><title>Parse::do_if (17 samples, 0.01%)</title><rect x="9.8304%" y="645" width="0.0113%" height="15" fill="rgb(246,141,4)" fg:x="14850" fg:w="17"/><text x="10.0804%" y="655.50"></text></g><g><title>Parse::do_one_block (1,082 samples, 0.72%)</title><rect x="9.1347%" y="677" width="0.7163%" height="15" fill="rgb(229,23,39)" fg:x="13799" fg:w="1082"/><text x="9.3847%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (1,078 samples, 0.71%)</title><rect x="9.1373%" y="661" width="0.7136%" height="15" fill="rgb(206,12,3)" fg:x="13803" fg:w="1078"/><text x="9.3873%" y="671.50"></text></g><g><title>Parse::do_all_blocks (1,083 samples, 0.72%)</title><rect x="9.1347%" y="693" width="0.7169%" height="15" fill="rgb(252,226,20)" fg:x="13799" fg:w="1083"/><text x="9.3847%" y="703.50"></text></g><g><title>ParseGenerator::generate (1,096 samples, 0.73%)</title><rect x="9.1267%" y="725" width="0.7255%" height="15" fill="rgb(216,123,35)" fg:x="13787" fg:w="1096"/><text x="9.3767%" y="735.50"></text></g><g><title>Parse::Parse (1,096 samples, 0.73%)</title><rect x="9.1267%" y="709" width="0.7255%" height="15" fill="rgb(212,68,40)" fg:x="13787" fg:w="1096"/><text x="9.3767%" y="719.50"></text></g><g><title>Compile::call_generator (18 samples, 0.01%)</title><rect x="9.8602%" y="613" width="0.0119%" height="15" fill="rgb(254,125,32)" fg:x="14895" fg:w="18"/><text x="10.1102%" y="623.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.03%)</title><rect x="9.8913%" y="469" width="0.0271%" height="15" fill="rgb(253,97,22)" fg:x="14942" fg:w="41"/><text x="10.1413%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.03%)</title><rect x="9.8913%" y="453" width="0.0271%" height="15" fill="rgb(241,101,14)" fg:x="14942" fg:w="41"/><text x="10.1413%" y="463.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.03%)</title><rect x="9.8913%" y="485" width="0.0278%" height="15" fill="rgb(238,103,29)" fg:x="14942" fg:w="42"/><text x="10.1413%" y="495.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.03%)</title><rect x="9.8906%" y="517" width="0.0291%" height="15" fill="rgb(233,195,47)" fg:x="14941" fg:w="44"/><text x="10.1406%" y="527.50"></text></g><g><title>Parse::Parse (44 samples, 0.03%)</title><rect x="9.8906%" y="501" width="0.0291%" height="15" fill="rgb(246,218,30)" fg:x="14941" fg:w="44"/><text x="10.1406%" y="511.50"></text></g><g><title>Parse::do_call (60 samples, 0.04%)</title><rect x="9.8834%" y="533" width="0.0397%" height="15" fill="rgb(219,145,47)" fg:x="14930" fg:w="60"/><text x="10.1334%" y="543.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.06%)</title><rect x="9.8787%" y="581" width="0.0576%" height="15" fill="rgb(243,12,26)" fg:x="14923" fg:w="87"/><text x="10.1287%" y="591.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.06%)</title><rect x="9.8787%" y="565" width="0.0576%" height="15" fill="rgb(214,87,16)" fg:x="14923" fg:w="87"/><text x="10.1287%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (85 samples, 0.06%)</title><rect x="9.8800%" y="549" width="0.0563%" height="15" fill="rgb(208,99,42)" fg:x="14925" fg:w="85"/><text x="10.1300%" y="559.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.06%)</title><rect x="9.8767%" y="613" width="0.0636%" height="15" fill="rgb(253,99,2)" fg:x="14920" fg:w="96"/><text x="10.1267%" y="623.50"></text></g><g><title>Parse::Parse (96 samples, 0.06%)</title><rect x="9.8767%" y="597" width="0.0636%" height="15" fill="rgb(220,168,23)" fg:x="14920" fg:w="96"/><text x="10.1267%" y="607.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="9.9410%" y="597" width="0.0126%" height="15" fill="rgb(242,38,24)" fg:x="15017" fg:w="19"/><text x="10.1910%" y="607.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="9.9410%" y="581" width="0.0126%" height="15" fill="rgb(225,182,9)" fg:x="15017" fg:w="19"/><text x="10.1910%" y="591.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="9.9410%" y="565" width="0.0126%" height="15" fill="rgb(243,178,37)" fg:x="15017" fg:w="19"/><text x="10.1910%" y="575.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="9.9410%" y="549" width="0.0126%" height="15" fill="rgb(232,139,19)" fg:x="15017" fg:w="19"/><text x="10.1910%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="9.9410%" y="533" width="0.0126%" height="15" fill="rgb(225,201,24)" fg:x="15017" fg:w="19"/><text x="10.1910%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (21 samples, 0.01%)</title><rect x="9.9403%" y="613" width="0.0139%" height="15" fill="rgb(221,47,46)" fg:x="15016" fg:w="21"/><text x="10.1903%" y="623.50"></text></g><g><title>Parse::do_call (148 samples, 0.10%)</title><rect x="9.8589%" y="629" width="0.0980%" height="15" fill="rgb(249,23,13)" fg:x="14893" fg:w="148"/><text x="10.1089%" y="639.50"></text></g><g><title>Parse::do_all_blocks (172 samples, 0.11%)</title><rect x="9.8549%" y="677" width="0.1139%" height="15" fill="rgb(219,9,5)" fg:x="14887" fg:w="172"/><text x="10.1049%" y="687.50"></text></g><g><title>Parse::do_one_block (172 samples, 0.11%)</title><rect x="9.8549%" y="661" width="0.1139%" height="15" fill="rgb(254,171,16)" fg:x="14887" fg:w="172"/><text x="10.1049%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.11%)</title><rect x="9.8556%" y="645" width="0.1132%" height="15" fill="rgb(230,171,20)" fg:x="14888" fg:w="171"/><text x="10.1056%" y="655.50"></text></g><g><title>ParseGenerator::generate (176 samples, 0.12%)</title><rect x="9.8529%" y="709" width="0.1165%" height="15" fill="rgb(210,71,41)" fg:x="14884" fg:w="176"/><text x="10.1029%" y="719.50"></text></g><g><title>Parse::Parse (176 samples, 0.12%)</title><rect x="9.8529%" y="693" width="0.1165%" height="15" fill="rgb(206,173,20)" fg:x="14884" fg:w="176"/><text x="10.1029%" y="703.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="9.9714%" y="613" width="0.0152%" height="15" fill="rgb(233,88,34)" fg:x="15063" fg:w="23"/><text x="10.2214%" y="623.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.02%)</title><rect x="9.9701%" y="661" width="0.0212%" height="15" fill="rgb(223,209,46)" fg:x="15061" fg:w="32"/><text x="10.2201%" y="671.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="9.9701%" y="645" width="0.0212%" height="15" fill="rgb(250,43,18)" fg:x="15061" fg:w="32"/><text x="10.2201%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.02%)</title><rect x="9.9701%" y="629" width="0.0212%" height="15" fill="rgb(208,13,10)" fg:x="15061" fg:w="32"/><text x="10.2201%" y="639.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.02%)</title><rect x="9.9701%" y="693" width="0.0225%" height="15" fill="rgb(212,200,36)" fg:x="15061" fg:w="34"/><text x="10.2201%" y="703.50"></text></g><g><title>Parse::Parse (34 samples, 0.02%)</title><rect x="9.9701%" y="677" width="0.0225%" height="15" fill="rgb(225,90,30)" fg:x="15061" fg:w="34"/><text x="10.2201%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (36 samples, 0.02%)</title><rect x="9.9694%" y="709" width="0.0238%" height="15" fill="rgb(236,182,39)" fg:x="15060" fg:w="36"/><text x="10.2194%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (215 samples, 0.14%)</title><rect x="9.8522%" y="725" width="0.1423%" height="15" fill="rgb(212,144,35)" fg:x="14883" fg:w="215"/><text x="10.1022%" y="735.50"></text></g><g><title>Parse::do_call (1,446 samples, 0.96%)</title><rect x="9.0479%" y="741" width="0.9572%" height="15" fill="rgb(228,63,44)" fg:x="13668" fg:w="1446"/><text x="9.2979%" y="751.50"></text></g><g><title>C2Compiler::compile_method (1,487 samples, 0.98%)</title><rect x="9.0314%" y="853" width="0.9844%" height="15" fill="rgb(228,109,6)" fg:x="13643" fg:w="1487"/><text x="9.2814%" y="863.50"></text></g><g><title>Compile::Compile (1,487 samples, 0.98%)</title><rect x="9.0314%" y="837" width="0.9844%" height="15" fill="rgb(238,117,24)" fg:x="13643" fg:w="1487"/><text x="9.2814%" y="847.50"></text></g><g><title>ParseGenerator::generate (1,462 samples, 0.97%)</title><rect x="9.0479%" y="821" width="0.9678%" height="15" fill="rgb(242,26,26)" fg:x="13668" fg:w="1462"/><text x="9.2979%" y="831.50"></text></g><g><title>Parse::Parse (1,462 samples, 0.97%)</title><rect x="9.0479%" y="805" width="0.9678%" height="15" fill="rgb(221,92,48)" fg:x="13668" fg:w="1462"/><text x="9.2979%" y="815.50"></text></g><g><title>Parse::do_all_blocks (1,462 samples, 0.97%)</title><rect x="9.0479%" y="789" width="0.9678%" height="15" fill="rgb(209,209,32)" fg:x="13668" fg:w="1462"/><text x="9.2979%" y="799.50"></text></g><g><title>Parse::do_one_block (1,462 samples, 0.97%)</title><rect x="9.0479%" y="773" width="0.9678%" height="15" fill="rgb(221,70,22)" fg:x="13668" fg:w="1462"/><text x="9.2979%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (1,462 samples, 0.97%)</title><rect x="9.0479%" y="757" width="0.9678%" height="15" fill="rgb(248,145,5)" fg:x="13668" fg:w="1462"/><text x="9.2979%" y="767.50"></text></g><g><title>Parse::do_field_access (16 samples, 0.01%)</title><rect x="10.0052%" y="741" width="0.0106%" height="15" fill="rgb(226,116,26)" fg:x="15114" fg:w="16"/><text x="10.2552%" y="751.50"></text></g><g><title>MachSpillCopyNode::implementation (40 samples, 0.03%)</title><rect x="10.0224%" y="773" width="0.0265%" height="15" fill="rgb(244,5,17)" fg:x="15140" fg:w="40"/><text x="10.2724%" y="783.50"></text></g><g><title>Compile::Output (49 samples, 0.03%)</title><rect x="10.0171%" y="837" width="0.0324%" height="15" fill="rgb(252,159,33)" fg:x="15132" fg:w="49"/><text x="10.2671%" y="847.50"></text></g><g><title>Compile::init_buffer (49 samples, 0.03%)</title><rect x="10.0171%" y="821" width="0.0324%" height="15" fill="rgb(206,71,0)" fg:x="15132" fg:w="49"/><text x="10.2671%" y="831.50"></text></g><g><title>Compile::shorten_branches (41 samples, 0.03%)</title><rect x="10.0224%" y="805" width="0.0271%" height="15" fill="rgb(233,118,54)" fg:x="15140" fg:w="41"/><text x="10.2724%" y="815.50"></text></g><g><title>Compile::scratch_emit_size (41 samples, 0.03%)</title><rect x="10.0224%" y="789" width="0.0271%" height="15" fill="rgb(234,83,48)" fg:x="15140" fg:w="41"/><text x="10.2724%" y="799.50"></text></g><g><title>Compile::fill_buffer (16 samples, 0.01%)</title><rect x="10.0495%" y="837" width="0.0106%" height="15" fill="rgb(228,3,54)" fg:x="15181" fg:w="16"/><text x="10.2995%" y="847.50"></text></g><g><title>MachNode::adr_type (30 samples, 0.02%)</title><rect x="10.0733%" y="773" width="0.0199%" height="15" fill="rgb(226,155,13)" fg:x="15217" fg:w="30"/><text x="10.3233%" y="783.50"></text></g><g><title>TypeInstPtr::add_offset (20 samples, 0.01%)</title><rect x="10.0800%" y="757" width="0.0132%" height="15" fill="rgb(241,28,37)" fg:x="15227" fg:w="20"/><text x="10.3300%" y="767.50"></text></g><g><title>PhaseCFG::schedule_late (44 samples, 0.03%)</title><rect x="10.0647%" y="805" width="0.0291%" height="15" fill="rgb(233,93,10)" fg:x="15204" fg:w="44"/><text x="10.3147%" y="815.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (43 samples, 0.03%)</title><rect x="10.0654%" y="789" width="0.0285%" height="15" fill="rgb(225,113,19)" fg:x="15205" fg:w="43"/><text x="10.3154%" y="799.50"></text></g><g><title>PhaseCFG::sched_call (134 samples, 0.09%)</title><rect x="10.0939%" y="789" width="0.0887%" height="15" fill="rgb(241,2,18)" fg:x="15248" fg:w="134"/><text x="10.3439%" y="799.50"></text></g><g><title>PhaseCFG::schedule_local (135 samples, 0.09%)</title><rect x="10.0939%" y="805" width="0.0894%" height="15" fill="rgb(228,207,21)" fg:x="15248" fg:w="135"/><text x="10.3439%" y="815.50"></text></g><g><title>PhaseCFG::do_global_code_motion (184 samples, 0.12%)</title><rect x="10.0628%" y="837" width="0.1218%" height="15" fill="rgb(213,211,35)" fg:x="15201" fg:w="184"/><text x="10.3128%" y="847.50"></text></g><g><title>PhaseCFG::global_code_motion (184 samples, 0.12%)</title><rect x="10.0628%" y="821" width="0.1218%" height="15" fill="rgb(209,83,10)" fg:x="15201" fg:w="184"/><text x="10.3128%" y="831.50"></text></g><g><title>PhaseChaitin::Split (26 samples, 0.02%)</title><rect x="10.1846%" y="821" width="0.0172%" height="15" fill="rgb(209,164,1)" fg:x="15385" fg:w="26"/><text x="10.4346%" y="831.50"></text></g><g><title>PhaseChaitin::split_USE (23 samples, 0.02%)</title><rect x="10.1865%" y="805" width="0.0152%" height="15" fill="rgb(213,184,43)" fg:x="15388" fg:w="23"/><text x="10.4365%" y="815.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (23 samples, 0.02%)</title><rect x="10.1865%" y="789" width="0.0152%" height="15" fill="rgb(231,61,34)" fg:x="15388" fg:w="23"/><text x="10.4365%" y="799.50"></text></g><g><title>Compile::Code_Gen (285 samples, 0.19%)</title><rect x="10.0171%" y="853" width="0.1887%" height="15" fill="rgb(235,75,3)" fg:x="15132" fg:w="285"/><text x="10.2671%" y="863.50"></text></g><g><title>PhaseChaitin::Register_Allocate (32 samples, 0.02%)</title><rect x="10.1846%" y="837" width="0.0212%" height="15" fill="rgb(220,106,47)" fg:x="15385" fg:w="32"/><text x="10.4346%" y="847.50"></text></g><g><title>OopFlow::compute_reach (140 samples, 0.09%)</title><rect x="10.4500%" y="789" width="0.0927%" height="15" fill="rgb(210,196,33)" fg:x="15786" fg:w="140"/><text x="10.7000%" y="799.50"></text></g><g><title>OopFlow::build_oop_map (80 samples, 0.05%)</title><rect x="10.4897%" y="773" width="0.0530%" height="15" fill="rgb(229,154,42)" fg:x="15846" fg:w="80"/><text x="10.7397%" y="783.50"></text></g><g><title>Compile::BuildOopMaps (557 samples, 0.37%)</title><rect x="10.2150%" y="805" width="0.3687%" height="15" fill="rgb(228,114,26)" fg:x="15431" fg:w="557"/><text x="10.4650%" y="815.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (59 samples, 0.04%)</title><rect x="10.5447%" y="789" width="0.0391%" height="15" fill="rgb(208,144,1)" fg:x="15929" fg:w="59"/><text x="10.7947%" y="799.50"></text></g><g><title>BufferBlob::create (26 samples, 0.02%)</title><rect x="10.5983%" y="773" width="0.0172%" height="15" fill="rgb(239,112,37)" fg:x="16010" fg:w="26"/><text x="10.8483%" y="783.50"></text></g><g><title>Compile::init_scratch_buffer_blob (27 samples, 0.02%)</title><rect x="10.5983%" y="789" width="0.0179%" height="15" fill="rgb(210,96,50)" fg:x="16010" fg:w="27"/><text x="10.8483%" y="799.50"></text></g><g><title>Compile::scratch_emit_size (125 samples, 0.08%)</title><rect x="10.6883%" y="773" width="0.0827%" height="15" fill="rgb(222,178,2)" fg:x="16146" fg:w="125"/><text x="10.9383%" y="783.50"></text></g><g><title>Compile::shorten_branches (254 samples, 0.17%)</title><rect x="10.6162%" y="789" width="0.1681%" height="15" fill="rgb(226,74,18)" fg:x="16037" fg:w="254"/><text x="10.8662%" y="799.50"></text></g><g><title>Compile::init_buffer (305 samples, 0.20%)</title><rect x="10.5837%" y="805" width="0.2019%" height="15" fill="rgb(225,67,54)" fg:x="15988" fg:w="305"/><text x="10.8337%" y="815.50"></text></g><g><title>Compile::Output (875 samples, 0.58%)</title><rect x="10.2084%" y="821" width="0.5792%" height="15" fill="rgb(251,92,32)" fg:x="15421" fg:w="875"/><text x="10.4584%" y="831.50"></text></g><g><title>Compile::FillExceptionTables (20 samples, 0.01%)</title><rect x="10.8571%" y="805" width="0.0132%" height="15" fill="rgb(228,149,22)" fg:x="16401" fg:w="20"/><text x="11.1071%" y="815.50"></text></g><g><title>Compile::FillLocArray (31 samples, 0.02%)</title><rect x="10.8829%" y="789" width="0.0205%" height="15" fill="rgb(243,54,13)" fg:x="16440" fg:w="31"/><text x="11.1329%" y="799.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (19 samples, 0.01%)</title><rect x="10.9074%" y="773" width="0.0126%" height="15" fill="rgb(243,180,28)" fg:x="16477" fg:w="19"/><text x="11.1574%" y="783.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (32 samples, 0.02%)</title><rect x="10.9041%" y="789" width="0.0212%" height="15" fill="rgb(208,167,24)" fg:x="16472" fg:w="32"/><text x="11.1541%" y="799.50"></text></g><g><title>DebugInformationRecorder::describe_scope (27 samples, 0.02%)</title><rect x="10.9253%" y="789" width="0.0179%" height="15" fill="rgb(245,73,45)" fg:x="16504" fg:w="27"/><text x="11.1753%" y="799.50"></text></g><g><title>Compile::Process_OopMap_Node (142 samples, 0.09%)</title><rect x="10.8704%" y="805" width="0.0940%" height="15" fill="rgb(237,203,48)" fg:x="16421" fg:w="142"/><text x="11.1204%" y="815.50"></text></g><g><title>resource_allocate_bytes (22 samples, 0.01%)</title><rect x="10.9498%" y="789" width="0.0146%" height="15" fill="rgb(211,197,16)" fg:x="16541" fg:w="22"/><text x="11.1998%" y="799.50"></text></g><g><title>Compile::valid_bundle_info (35 samples, 0.02%)</title><rect x="10.9664%" y="805" width="0.0232%" height="15" fill="rgb(243,99,51)" fg:x="16566" fg:w="35"/><text x="11.2164%" y="815.50"></text></g><g><title>MachSpillCopyNode::implementation (24 samples, 0.02%)</title><rect x="10.9942%" y="805" width="0.0159%" height="15" fill="rgb(215,123,29)" fg:x="16608" fg:w="24"/><text x="11.2442%" y="815.50"></text></g><g><title>Compile::fill_buffer (382 samples, 0.25%)</title><rect x="10.7876%" y="821" width="0.2529%" height="15" fill="rgb(239,186,37)" fg:x="16296" fg:w="382"/><text x="11.0376%" y="831.50"></text></g><g><title>Arena::contains (17 samples, 0.01%)</title><rect x="11.0471%" y="805" width="0.0113%" height="15" fill="rgb(252,136,39)" fg:x="16688" fg:w="17"/><text x="11.2971%" y="815.50"></text></g><g><title>Matcher::init_first_stack_mask (30 samples, 0.02%)</title><rect x="11.0690%" y="789" width="0.0199%" height="15" fill="rgb(223,213,32)" fg:x="16721" fg:w="30"/><text x="11.3190%" y="799.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (37 samples, 0.02%)</title><rect x="11.0650%" y="805" width="0.0245%" height="15" fill="rgb(233,115,5)" fg:x="16715" fg:w="37"/><text x="11.3150%" y="815.50"></text></g><g><title>Matcher::is_bmi_pattern (20 samples, 0.01%)</title><rect x="11.2351%" y="789" width="0.0132%" height="15" fill="rgb(207,226,44)" fg:x="16972" fg:w="20"/><text x="11.4851%" y="799.50"></text></g><g><title>Matcher::find_shared (259 samples, 0.17%)</title><rect x="11.0895%" y="805" width="0.1715%" height="15" fill="rgb(208,126,0)" fg:x="16752" fg:w="259"/><text x="11.3395%" y="815.50"></text></g><g><title>Arena::contains (403 samples, 0.27%)</title><rect x="11.4377%" y="789" width="0.2668%" height="15" fill="rgb(244,66,21)" fg:x="17278" fg:w="403"/><text x="11.6877%" y="799.50"></text></g><g><title>Matcher::ReduceInst (17 samples, 0.01%)</title><rect x="11.7515%" y="757" width="0.0113%" height="15" fill="rgb(222,97,12)" fg:x="17752" fg:w="17"/><text x="12.0015%" y="767.50"></text></g><g><title>Matcher::match_tree (62 samples, 0.04%)</title><rect x="11.7343%" y="773" width="0.0410%" height="15" fill="rgb(219,213,19)" fg:x="17726" fg:w="62"/><text x="11.9843%" y="783.50"></text></g><g><title>Node::add_req (19 samples, 0.01%)</title><rect x="11.7627%" y="757" width="0.0126%" height="15" fill="rgb(252,169,30)" fg:x="17769" fg:w="19"/><text x="12.0127%" y="767.50"></text></g><g><title>Matcher::match_sfpt (94 samples, 0.06%)</title><rect x="11.7197%" y="789" width="0.0622%" height="15" fill="rgb(206,32,51)" fg:x="17704" fg:w="94"/><text x="11.9697%" y="799.50"></text></g><g><title>Matcher::Label_Root (37 samples, 0.02%)</title><rect x="11.9938%" y="725" width="0.0245%" height="15" fill="rgb(250,172,42)" fg:x="18118" fg:w="37"/><text x="12.2438%" y="735.50"></text></g><g><title>State::DFA (29 samples, 0.02%)</title><rect x="12.0196%" y="725" width="0.0192%" height="15" fill="rgb(209,34,43)" fg:x="18157" fg:w="29"/><text x="12.2696%" y="735.50"></text></g><g><title>Matcher::Label_Root (97 samples, 0.06%)</title><rect x="11.9792%" y="741" width="0.0642%" height="15" fill="rgb(223,11,35)" fg:x="18096" fg:w="97"/><text x="12.2292%" y="751.50"></text></g><g><title>State::_sub_Op_AddP (26 samples, 0.02%)</title><rect x="12.0533%" y="725" width="0.0172%" height="15" fill="rgb(251,219,26)" fg:x="18208" fg:w="26"/><text x="12.3033%" y="735.50"></text></g><g><title>State::DFA (51 samples, 0.03%)</title><rect x="12.0447%" y="741" width="0.0338%" height="15" fill="rgb(231,119,3)" fg:x="18195" fg:w="51"/><text x="12.2947%" y="751.50"></text></g><g><title>Matcher::Label_Root (223 samples, 0.15%)</title><rect x="11.9335%" y="757" width="0.1476%" height="15" fill="rgb(216,97,11)" fg:x="18027" fg:w="223"/><text x="12.1835%" y="767.50"></text></g><g><title>State::DFA (38 samples, 0.03%)</title><rect x="12.0818%" y="757" width="0.0252%" height="15" fill="rgb(223,59,9)" fg:x="18251" fg:w="38"/><text x="12.3318%" y="767.50"></text></g><g><title>Matcher::Label_Root (351 samples, 0.23%)</title><rect x="11.8872%" y="773" width="0.2324%" height="15" fill="rgb(233,93,31)" fg:x="17957" fg:w="351"/><text x="12.1372%" y="783.50"></text></g><g><title>Matcher::ReduceInst (16 samples, 0.01%)</title><rect x="12.1460%" y="709" width="0.0106%" height="15" fill="rgb(239,81,33)" fg:x="18348" fg:w="16"/><text x="12.3960%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (39 samples, 0.03%)</title><rect x="12.1447%" y="725" width="0.0258%" height="15" fill="rgb(213,120,34)" fg:x="18346" fg:w="39"/><text x="12.3947%" y="735.50"></text></g><g><title>State::MachNodeGenerator (17 samples, 0.01%)</title><rect x="12.1712%" y="725" width="0.0113%" height="15" fill="rgb(243,49,53)" fg:x="18386" fg:w="17"/><text x="12.4212%" y="735.50"></text></g><g><title>Matcher::ReduceInst (68 samples, 0.05%)</title><rect x="12.1414%" y="741" width="0.0450%" height="15" fill="rgb(247,216,33)" fg:x="18341" fg:w="68"/><text x="12.3914%" y="751.50"></text></g><g><title>Matcher::ReduceOper (16 samples, 0.01%)</title><rect x="12.1910%" y="741" width="0.0106%" height="15" fill="rgb(226,26,14)" fg:x="18416" fg:w="16"/><text x="12.4410%" y="751.50"></text></g><g><title>Matcher::ReduceInst_Interior (126 samples, 0.08%)</title><rect x="12.1308%" y="757" width="0.0834%" height="15" fill="rgb(215,49,53)" fg:x="18325" fg:w="126"/><text x="12.3808%" y="767.50"></text></g><g><title>State::MachOperGenerator (17 samples, 0.01%)</title><rect x="12.2029%" y="741" width="0.0113%" height="15" fill="rgb(245,162,40)" fg:x="18434" fg:w="17"/><text x="12.4529%" y="751.50"></text></g><g><title>State::MachNodeGenerator (47 samples, 0.03%)</title><rect x="12.2215%" y="757" width="0.0311%" height="15" fill="rgb(229,68,17)" fg:x="18462" fg:w="47"/><text x="12.4715%" y="767.50"></text></g><g><title>Matcher::ReduceInst (220 samples, 0.15%)</title><rect x="12.1195%" y="773" width="0.1456%" height="15" fill="rgb(213,182,10)" fg:x="18308" fg:w="220"/><text x="12.3695%" y="783.50"></text></g><g><title>Matcher::match_tree (744 samples, 0.49%)</title><rect x="11.7819%" y="789" width="0.4925%" height="15" fill="rgb(245,125,30)" fg:x="17798" fg:w="744"/><text x="12.0319%" y="799.50"></text></g><g><title>Node::clone (42 samples, 0.03%)</title><rect x="12.2771%" y="789" width="0.0278%" height="15" fill="rgb(232,202,2)" fg:x="18546" fg:w="42"/><text x="12.5271%" y="799.50"></text></g><g><title>Node::out_grow (27 samples, 0.02%)</title><rect x="12.3055%" y="789" width="0.0179%" height="15" fill="rgb(237,140,51)" fg:x="18589" fg:w="27"/><text x="12.5555%" y="799.50"></text></g><g><title>Matcher::xform (1,602 samples, 1.06%)</title><rect x="11.2669%" y="805" width="1.0605%" height="15" fill="rgb(236,157,25)" fg:x="17020" fg:w="1602"/><text x="11.5169%" y="815.50"></text></g><g><title>Matcher::match (1,940 samples, 1.28%)</title><rect x="11.0451%" y="821" width="1.2842%" height="15" fill="rgb(219,209,0)" fg:x="16685" fg:w="1940"/><text x="11.2951%" y="831.50"></text></g><g><title>PhaseBlockLayout::find_edges (54 samples, 0.04%)</title><rect x="12.3300%" y="805" width="0.0357%" height="15" fill="rgb(240,116,54)" fg:x="18626" fg:w="54"/><text x="12.5800%" y="815.50"></text></g><g><title>PhaseBlockLayout::grow_traces (39 samples, 0.03%)</title><rect x="12.3658%" y="805" width="0.0258%" height="15" fill="rgb(216,10,36)" fg:x="18680" fg:w="39"/><text x="12.6158%" y="815.50"></text></g><g><title>__GI___qsort_r (26 samples, 0.02%)</title><rect x="12.3744%" y="789" width="0.0172%" height="15" fill="rgb(222,72,44)" fg:x="18693" fg:w="26"/><text x="12.6244%" y="799.50"></text></g><g><title>msort_with_tmp (25 samples, 0.02%)</title><rect x="12.3751%" y="773" width="0.0165%" height="15" fill="rgb(232,159,9)" fg:x="18694" fg:w="25"/><text x="12.6251%" y="783.50"></text></g><g><title>msort_with_tmp (25 samples, 0.02%)</title><rect x="12.3751%" y="757" width="0.0165%" height="15" fill="rgb(210,39,32)" fg:x="18694" fg:w="25"/><text x="12.6251%" y="767.50"></text></g><g><title>msort_with_tmp (23 samples, 0.02%)</title><rect x="12.3764%" y="741" width="0.0152%" height="15" fill="rgb(216,194,45)" fg:x="18696" fg:w="23"/><text x="12.6264%" y="751.50"></text></g><g><title>msort_with_tmp (23 samples, 0.02%)</title><rect x="12.3764%" y="725" width="0.0152%" height="15" fill="rgb(218,18,35)" fg:x="18696" fg:w="23"/><text x="12.6264%" y="735.50"></text></g><g><title>msort_with_tmp (22 samples, 0.01%)</title><rect x="12.3770%" y="709" width="0.0146%" height="15" fill="rgb(207,83,51)" fg:x="18697" fg:w="22"/><text x="12.6270%" y="719.50"></text></g><g><title>msort_with_tmp (22 samples, 0.01%)</title><rect x="12.3770%" y="693" width="0.0146%" height="15" fill="rgb(225,63,43)" fg:x="18697" fg:w="22"/><text x="12.6270%" y="703.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="12.3790%" y="677" width="0.0126%" height="15" fill="rgb(207,57,36)" fg:x="18700" fg:w="19"/><text x="12.6290%" y="687.50"></text></g><g><title>msort_with_tmp (18 samples, 0.01%)</title><rect x="12.3797%" y="661" width="0.0119%" height="15" fill="rgb(216,99,33)" fg:x="18701" fg:w="18"/><text x="12.6297%" y="671.50"></text></g><g><title>Trace::fixup_blocks (16 samples, 0.01%)</title><rect x="12.3995%" y="789" width="0.0106%" height="15" fill="rgb(225,42,16)" fg:x="18731" fg:w="16"/><text x="12.6495%" y="799.50"></text></g><g><title>PhaseBlockLayout::reorder_traces (18 samples, 0.01%)</title><rect x="12.3995%" y="805" width="0.0119%" height="15" fill="rgb(220,201,45)" fg:x="18731" fg:w="18"/><text x="12.6495%" y="815.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (125 samples, 0.08%)</title><rect x="12.3294%" y="821" width="0.0827%" height="15" fill="rgb(225,33,4)" fg:x="18625" fg:w="125"/><text x="12.5794%" y="831.50"></text></g><g><title>Node::clone (19 samples, 0.01%)</title><rect x="12.4591%" y="789" width="0.0126%" height="15" fill="rgb(224,33,50)" fg:x="18821" fg:w="19"/><text x="12.7091%" y="799.50"></text></g><g><title>PhaseCFG::PhaseCFG (105 samples, 0.07%)</title><rect x="12.4121%" y="821" width="0.0695%" height="15" fill="rgb(246,198,51)" fg:x="18750" fg:w="105"/><text x="12.6621%" y="831.50"></text></g><g><title>PhaseCFG::build_cfg (99 samples, 0.07%)</title><rect x="12.4161%" y="805" width="0.0655%" height="15" fill="rgb(205,22,4)" fg:x="18756" fg:w="99"/><text x="12.6661%" y="815.50"></text></g><g><title>Block_Stack::most_frequent_successor (17 samples, 0.01%)</title><rect x="12.5061%" y="773" width="0.0113%" height="15" fill="rgb(206,3,8)" fg:x="18892" fg:w="17"/><text x="12.7561%" y="783.50"></text></g><g><title>PhaseCFG::do_DFS (24 samples, 0.02%)</title><rect x="12.5022%" y="789" width="0.0159%" height="15" fill="rgb(251,23,15)" fg:x="18886" fg:w="24"/><text x="12.7522%" y="799.50"></text></g><g><title>PhaseCFG::build_dominator_tree (56 samples, 0.04%)</title><rect x="12.4816%" y="805" width="0.0371%" height="15" fill="rgb(252,88,28)" fg:x="18855" fg:w="56"/><text x="12.7316%" y="815.50"></text></g><g><title>CFGLoop::compute_freq (21 samples, 0.01%)</title><rect x="12.5233%" y="789" width="0.0139%" height="15" fill="rgb(212,127,14)" fg:x="18918" fg:w="21"/><text x="12.7733%" y="799.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (39 samples, 0.03%)</title><rect x="12.5187%" y="805" width="0.0258%" height="15" fill="rgb(247,145,37)" fg:x="18911" fg:w="39"/><text x="12.7687%" y="815.50"></text></g><g><title>PhaseCFG::call_catch_cleanup (19 samples, 0.01%)</title><rect x="12.7034%" y="789" width="0.0126%" height="15" fill="rgb(209,117,53)" fg:x="19190" fg:w="19"/><text x="12.9534%" y="799.50"></text></g><g><title>PhaseCFG::implicit_null_check (32 samples, 0.02%)</title><rect x="12.7160%" y="789" width="0.0212%" height="15" fill="rgb(212,90,42)" fg:x="19209" fg:w="32"/><text x="12.9660%" y="799.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (33 samples, 0.02%)</title><rect x="12.7372%" y="789" width="0.0218%" height="15" fill="rgb(218,164,37)" fg:x="19241" fg:w="33"/><text x="12.9872%" y="799.50"></text></g><g><title>Node_Backward_Iterator::next (187 samples, 0.12%)</title><rect x="12.8126%" y="773" width="0.1238%" height="15" fill="rgb(246,65,34)" fg:x="19355" fg:w="187"/><text x="13.0626%" y="783.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (88 samples, 0.06%)</title><rect x="12.9364%" y="773" width="0.0583%" height="15" fill="rgb(231,100,33)" fg:x="19542" fg:w="88"/><text x="13.1864%" y="783.50"></text></g><g><title>MachNode::adr_type (21 samples, 0.01%)</title><rect x="13.0264%" y="757" width="0.0139%" height="15" fill="rgb(228,126,14)" fg:x="19678" fg:w="21"/><text x="13.2764%" y="767.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (84 samples, 0.06%)</title><rect x="12.9947%" y="773" width="0.0556%" height="15" fill="rgb(215,173,21)" fg:x="19630" fg:w="84"/><text x="13.2447%" y="783.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (35 samples, 0.02%)</title><rect x="13.0503%" y="773" width="0.0232%" height="15" fill="rgb(210,6,40)" fg:x="19714" fg:w="35"/><text x="13.3003%" y="783.50"></text></g><g><title>PhaseCFG::schedule_late (481 samples, 0.32%)</title><rect x="12.7590%" y="789" width="0.3184%" height="15" fill="rgb(212,48,18)" fg:x="19274" fg:w="481"/><text x="13.0090%" y="799.50"></text></g><g><title>Node::is_iteratively_computed (16 samples, 0.01%)</title><rect x="13.1952%" y="773" width="0.0106%" height="15" fill="rgb(230,214,11)" fg:x="19933" fg:w="16"/><text x="13.4452%" y="783.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (32 samples, 0.02%)</title><rect x="13.2058%" y="773" width="0.0212%" height="15" fill="rgb(254,105,39)" fg:x="19949" fg:w="32"/><text x="13.4558%" y="783.50"></text></g><g><title>PhaseCFG::needed_for_next_call (18 samples, 0.01%)</title><rect x="13.2270%" y="773" width="0.0119%" height="15" fill="rgb(245,158,5)" fg:x="19981" fg:w="18"/><text x="13.4770%" y="783.50"></text></g><g><title>PhaseCFG::select (71 samples, 0.05%)</title><rect x="13.2389%" y="773" width="0.0470%" height="15" fill="rgb(249,208,11)" fg:x="19999" fg:w="71"/><text x="13.4889%" y="783.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (52 samples, 0.03%)</title><rect x="13.2859%" y="773" width="0.0344%" height="15" fill="rgb(210,39,28)" fg:x="20070" fg:w="52"/><text x="13.5359%" y="783.50"></text></g><g><title>PhaseChaitin::raise_pressure (28 samples, 0.02%)</title><rect x="13.3018%" y="757" width="0.0185%" height="15" fill="rgb(211,56,53)" fg:x="20094" fg:w="28"/><text x="13.5518%" y="767.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (38 samples, 0.03%)</title><rect x="13.3204%" y="773" width="0.0252%" height="15" fill="rgb(226,201,30)" fg:x="20122" fg:w="38"/><text x="13.5704%" y="783.50"></text></g><g><title>PhaseCFG::schedule_local (412 samples, 0.27%)</title><rect x="13.0774%" y="789" width="0.2727%" height="15" fill="rgb(239,101,34)" fg:x="19755" fg:w="412"/><text x="13.3274%" y="799.50"></text></g><g><title>RegMask::Size (72 samples, 0.05%)</title><rect x="13.4958%" y="773" width="0.0477%" height="15" fill="rgb(226,209,5)" fg:x="20387" fg:w="72"/><text x="13.7458%" y="783.50"></text></g><g><title>RegMask::clear_to_sets (17 samples, 0.01%)</title><rect x="13.5434%" y="773" width="0.0113%" height="15" fill="rgb(250,105,47)" fg:x="20459" fg:w="17"/><text x="13.7934%" y="783.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (324 samples, 0.21%)</title><rect x="13.3680%" y="789" width="0.2145%" height="15" fill="rgb(230,72,3)" fg:x="20194" fg:w="324"/><text x="13.6180%" y="799.50"></text></g><g><title>PhaseChaitin::mark_ssa (66 samples, 0.04%)</title><rect x="13.5825%" y="789" width="0.0437%" height="15" fill="rgb(232,218,39)" fg:x="20518" fg:w="66"/><text x="13.8325%" y="799.50"></text></g><g><title>IndexSet::initialize (83 samples, 0.05%)</title><rect x="13.6474%" y="773" width="0.0549%" height="15" fill="rgb(248,166,6)" fg:x="20616" fg:w="83"/><text x="13.8974%" y="783.50"></text></g><g><title>PhaseIFG::init (143 samples, 0.09%)</title><rect x="13.6262%" y="789" width="0.0947%" height="15" fill="rgb(247,89,20)" fg:x="20584" fg:w="143"/><text x="13.8762%" y="799.50"></text></g><g><title>[libc-2.31.so] (28 samples, 0.02%)</title><rect x="13.7023%" y="773" width="0.0185%" height="15" fill="rgb(248,130,54)" fg:x="20699" fg:w="28"/><text x="13.9523%" y="783.50"></text></g><g><title>IndexSet::initialize (47 samples, 0.03%)</title><rect x="13.8387%" y="773" width="0.0311%" height="15" fill="rgb(234,196,4)" fg:x="20905" fg:w="47"/><text x="14.0887%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (31 samples, 0.02%)</title><rect x="13.9089%" y="757" width="0.0205%" height="15" fill="rgb(250,143,31)" fg:x="21011" fg:w="31"/><text x="14.1589%" y="767.50"></text></g><g><title>PhaseLive::add_livein (134 samples, 0.09%)</title><rect x="13.8698%" y="773" width="0.0887%" height="15" fill="rgb(211,110,34)" fg:x="20952" fg:w="134"/><text x="14.1198%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (44 samples, 0.03%)</title><rect x="13.9294%" y="757" width="0.0291%" height="15" fill="rgb(215,124,48)" fg:x="21042" fg:w="44"/><text x="14.1794%" y="767.50"></text></g><g><title>__tls_get_addr (16 samples, 0.01%)</title><rect x="14.0677%" y="741" width="0.0106%" height="15" fill="rgb(216,46,13)" fg:x="21251" fg:w="16"/><text x="14.3177%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (49 samples, 0.03%)</title><rect x="14.0492%" y="757" width="0.0324%" height="15" fill="rgb(205,184,25)" fg:x="21223" fg:w="49"/><text x="14.2992%" y="767.50"></text></g><g><title>PhaseLive::add_liveout (269 samples, 0.18%)</title><rect x="13.9585%" y="773" width="0.1781%" height="15" fill="rgb(228,1,10)" fg:x="21086" fg:w="269"/><text x="14.2085%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (69 samples, 0.05%)</title><rect x="14.0909%" y="757" width="0.0457%" height="15" fill="rgb(213,116,27)" fg:x="21286" fg:w="69"/><text x="14.3409%" y="767.50"></text></g><g><title>PhaseLive::compute (629 samples, 0.42%)</title><rect x="13.7209%" y="789" width="0.4164%" height="15" fill="rgb(241,95,50)" fg:x="20727" fg:w="629"/><text x="13.9709%" y="799.50"></text></g><g><title>PhaseCFG::do_global_code_motion (2,515 samples, 1.66%)</title><rect x="12.4816%" y="821" width="1.6649%" height="15" fill="rgb(238,48,32)" fg:x="18855" fg:w="2515"/><text x="12.7316%" y="831.50"></text></g><g><title>PhaseCFG::global_code_motion (2,420 samples, 1.60%)</title><rect x="12.5445%" y="805" width="1.6020%" height="15" fill="rgb(235,113,49)" fg:x="18950" fg:w="2420"/><text x="12.7945%" y="815.50"></text></g><g><title>PhaseCFG::fixup_flow (16 samples, 0.01%)</title><rect x="14.1465%" y="821" width="0.0106%" height="15" fill="rgb(205,127,43)" fg:x="21370" fg:w="16"/><text x="14.3965%" y="831.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (50 samples, 0.03%)</title><rect x="14.1571%" y="821" width="0.0331%" height="15" fill="rgb(250,162,2)" fg:x="21386" fg:w="50"/><text x="14.4071%" y="831.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (845 samples, 0.56%)</title><rect x="14.2637%" y="805" width="0.5594%" height="15" fill="rgb(220,13,41)" fg:x="21547" fg:w="845"/><text x="14.5137%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (189 samples, 0.13%)</title><rect x="15.1123%" y="789" width="0.1251%" height="15" fill="rgb(249,221,25)" fg:x="22829" fg:w="189"/><text x="15.3623%" y="799.50"></text></g><g><title>RegMask::find_first_set (19 samples, 0.01%)</title><rect x="15.2811%" y="773" width="0.0126%" height="15" fill="rgb(215,208,19)" fg:x="23084" fg:w="19"/><text x="15.5311%" y="783.50"></text></g><g><title>PhaseChaitin::bias_color (97 samples, 0.06%)</title><rect x="15.2375%" y="789" width="0.0642%" height="15" fill="rgb(236,175,2)" fg:x="23018" fg:w="97"/><text x="15.4875%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (27 samples, 0.02%)</title><rect x="15.4493%" y="773" width="0.0179%" height="15" fill="rgb(241,52,2)" fg:x="23338" fg:w="27"/><text x="15.6993%" y="783.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (43 samples, 0.03%)</title><rect x="15.4672%" y="773" width="0.0285%" height="15" fill="rgb(248,140,14)" fg:x="23365" fg:w="43"/><text x="15.7172%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (240 samples, 0.16%)</title><rect x="15.4956%" y="773" width="0.1589%" height="15" fill="rgb(253,22,42)" fg:x="23408" fg:w="240"/><text x="15.7456%" y="783.50"></text></g><g><title>PhaseIFG::re_insert (540 samples, 0.36%)</title><rect x="15.3050%" y="789" width="0.3575%" height="15" fill="rgb(234,61,47)" fg:x="23120" fg:w="540"/><text x="15.5550%" y="799.50"></text></g><g><title>RegMask::clear_to_sets (110 samples, 0.07%)</title><rect x="15.6624%" y="789" width="0.0728%" height="15" fill="rgb(208,226,15)" fg:x="23660" fg:w="110"/><text x="15.9124%" y="799.50"></text></g><g><title>PhaseChaitin::Select (1,381 samples, 0.91%)</title><rect x="14.8231%" y="805" width="0.9142%" height="15" fill="rgb(217,221,4)" fg:x="22392" fg:w="1381"/><text x="15.0731%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (227 samples, 0.15%)</title><rect x="15.8591%" y="789" width="0.1503%" height="15" fill="rgb(212,174,34)" fg:x="23957" fg:w="227"/><text x="16.1091%" y="799.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (47 samples, 0.03%)</title><rect x="16.1914%" y="773" width="0.0311%" height="15" fill="rgb(253,83,4)" fg:x="24459" fg:w="47"/><text x="16.4414%" y="783.50"></text></g><g><title>PhaseChaitin::Simplify (1,015 samples, 0.67%)</title><rect x="15.7372%" y="805" width="0.6719%" height="15" fill="rgb(250,195,49)" fg:x="23773" fg:w="1015"/><text x="15.9872%" y="815.50"></text></g><g><title>PhaseIFG::remove_node (604 samples, 0.40%)</title><rect x="16.0093%" y="789" width="0.3998%" height="15" fill="rgb(241,192,25)" fg:x="24184" fg:w="604"/><text x="16.2593%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (282 samples, 0.19%)</title><rect x="16.2225%" y="773" width="0.1867%" height="15" fill="rgb(208,124,10)" fg:x="24506" fg:w="282"/><text x="16.4725%" y="783.50"></text></g><g><title>MachNode::rematerialize (107 samples, 0.07%)</title><rect x="17.6398%" y="789" width="0.0708%" height="15" fill="rgb(222,33,0)" fg:x="26647" fg:w="107"/><text x="17.8898%" y="799.50"></text></g><g><title>Node::rematerialize (99 samples, 0.07%)</title><rect x="17.7291%" y="789" width="0.0655%" height="15" fill="rgb(234,209,28)" fg:x="26782" fg:w="99"/><text x="17.9791%" y="799.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (18 samples, 0.01%)</title><rect x="17.8284%" y="773" width="0.0119%" height="15" fill="rgb(224,11,23)" fg:x="26932" fg:w="18"/><text x="18.0784%" y="783.50"></text></g><g><title>PhaseChaitin::split_DEF (25 samples, 0.02%)</title><rect x="17.8258%" y="789" width="0.0165%" height="15" fill="rgb(232,99,1)" fg:x="26928" fg:w="25"/><text x="18.0758%" y="799.50"></text></g><g><title>PhaseChaitin::clone_projs (17 samples, 0.01%)</title><rect x="17.8509%" y="773" width="0.0113%" height="15" fill="rgb(237,95,45)" fg:x="26966" fg:w="17"/><text x="18.1009%" y="783.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (34 samples, 0.02%)</title><rect x="17.8423%" y="789" width="0.0225%" height="15" fill="rgb(208,109,11)" fg:x="26953" fg:w="34"/><text x="18.0923%" y="799.50"></text></g><g><title>RegMask::is_aligned_pairs (28 samples, 0.02%)</title><rect x="17.9006%" y="757" width="0.0185%" height="15" fill="rgb(216,190,48)" fg:x="27041" fg:w="28"/><text x="18.1506%" y="767.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (55 samples, 0.04%)</title><rect x="17.8854%" y="773" width="0.0364%" height="15" fill="rgb(251,171,36)" fg:x="27018" fg:w="55"/><text x="18.1354%" y="783.50"></text></g><g><title>PhaseChaitin::insert_proj (20 samples, 0.01%)</title><rect x="17.9218%" y="773" width="0.0132%" height="15" fill="rgb(230,62,22)" fg:x="27073" fg:w="20"/><text x="18.1718%" y="783.50"></text></g><g><title>PhaseChaitin::split_USE (109 samples, 0.07%)</title><rect x="17.8649%" y="789" width="0.0722%" height="15" fill="rgb(225,114,35)" fg:x="26987" fg:w="109"/><text x="18.1149%" y="799.50"></text></g><g><title>RegMask::Size (18 samples, 0.01%)</title><rect x="17.9423%" y="789" width="0.0119%" height="15" fill="rgb(215,118,42)" fg:x="27104" fg:w="18"/><text x="18.1923%" y="799.50"></text></g><g><title>PhaseChaitin::Split (2,361 samples, 1.56%)</title><rect x="16.4092%" y="805" width="1.5629%" height="15" fill="rgb(243,119,21)" fg:x="24788" fg:w="2361"/><text x="16.6592%" y="815.50"></text></g><g><title>_dl_update_slotinfo (16 samples, 0.01%)</title><rect x="18.4871%" y="741" width="0.0106%" height="15" fill="rgb(252,177,53)" fg:x="27927" fg:w="16"/><text x="18.7371%" y="751.50"></text></g><g><title>IndexSet::IndexSet (210 samples, 0.14%)</title><rect x="18.3593%" y="789" width="0.1390%" height="15" fill="rgb(237,209,29)" fg:x="27734" fg:w="210"/><text x="18.6093%" y="799.50"></text></g><g><title>__tls_get_addr (28 samples, 0.02%)</title><rect x="18.4798%" y="773" width="0.0185%" height="15" fill="rgb(212,65,23)" fg:x="27916" fg:w="28"/><text x="18.7298%" y="783.50"></text></g><g><title>update_get_addr (18 samples, 0.01%)</title><rect x="18.4864%" y="757" width="0.0119%" height="15" fill="rgb(230,222,46)" fg:x="27926" fg:w="18"/><text x="18.7364%" y="767.50"></text></g><g><title>MachNode::rematerialize (39 samples, 0.03%)</title><rect x="18.5096%" y="789" width="0.0258%" height="15" fill="rgb(215,135,32)" fg:x="27961" fg:w="39"/><text x="18.7596%" y="799.50"></text></g><g><title>JVMState::debug_start (25 samples, 0.02%)</title><rect x="18.7420%" y="773" width="0.0165%" height="15" fill="rgb(246,101,22)" fg:x="28312" fg:w="25"/><text x="18.9920%" y="783.50"></text></g><g><title>MachNode::ideal_reg (16 samples, 0.01%)</title><rect x="18.7910%" y="757" width="0.0106%" height="15" fill="rgb(206,107,13)" fg:x="28386" fg:w="16"/><text x="19.0410%" y="767.50"></text></g><g><title>MachNode::rematerialize (66 samples, 0.04%)</title><rect x="18.7605%" y="773" width="0.0437%" height="15" fill="rgb(250,100,44)" fg:x="28340" fg:w="66"/><text x="19.0105%" y="783.50"></text></g><g><title>PhaseChaitin::raise_pressure (95 samples, 0.06%)</title><rect x="18.8102%" y="773" width="0.0629%" height="15" fill="rgb(231,147,38)" fg:x="28415" fg:w="95"/><text x="19.0602%" y="783.50"></text></g><g><title>RegMask::is_UP (40 samples, 0.03%)</title><rect x="18.8466%" y="757" width="0.0265%" height="15" fill="rgb(229,8,40)" fg:x="28470" fg:w="40"/><text x="19.0966%" y="767.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (499 samples, 0.33%)</title><rect x="18.5440%" y="789" width="0.3303%" height="15" fill="rgb(221,135,30)" fg:x="28013" fg:w="499"/><text x="18.7940%" y="799.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (44 samples, 0.03%)</title><rect x="18.8744%" y="789" width="0.0291%" height="15" fill="rgb(249,193,18)" fg:x="28512" fg:w="44"/><text x="19.1244%" y="799.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (38 samples, 0.03%)</title><rect x="18.9035%" y="789" width="0.0252%" height="15" fill="rgb(209,133,39)" fg:x="28556" fg:w="38"/><text x="19.1535%" y="799.50"></text></g><g><title>RegMask::Size (26 samples, 0.02%)</title><rect x="18.9114%" y="773" width="0.0172%" height="15" fill="rgb(232,100,14)" fg:x="28568" fg:w="26"/><text x="19.1614%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (122 samples, 0.08%)</title><rect x="19.0465%" y="773" width="0.0808%" height="15" fill="rgb(224,185,1)" fg:x="28772" fg:w="122"/><text x="19.2965%" y="783.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (377 samples, 0.25%)</title><rect x="18.9287%" y="789" width="0.2496%" height="15" fill="rgb(223,139,8)" fg:x="28594" fg:w="377"/><text x="19.1787%" y="799.50"></text></g><g><title>RegMask::is_UP (77 samples, 0.05%)</title><rect x="19.1272%" y="773" width="0.0510%" height="15" fill="rgb(232,213,38)" fg:x="28894" fg:w="77"/><text x="19.3772%" y="783.50"></text></g><g><title>__tls_get_addr (24 samples, 0.02%)</title><rect x="20.1004%" y="757" width="0.0159%" height="15" fill="rgb(207,94,22)" fg:x="30364" fg:w="24"/><text x="20.3504%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (76 samples, 0.05%)</title><rect x="20.0692%" y="773" width="0.0503%" height="15" fill="rgb(219,183,54)" fg:x="30317" fg:w="76"/><text x="20.3192%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (569 samples, 0.38%)</title><rect x="20.1235%" y="773" width="0.3767%" height="15" fill="rgb(216,185,54)" fg:x="30399" fg:w="569"/><text x="20.3735%" y="783.50"></text></g><g><title>PhaseChaitin::interfere_with_live (1,999 samples, 1.32%)</title><rect x="19.1782%" y="789" width="1.3233%" height="15" fill="rgb(254,217,39)" fg:x="28971" fg:w="1999"/><text x="19.4282%" y="799.50"></text></g><g><title>PhaseChaitin::lower_pressure (68 samples, 0.05%)</title><rect x="20.5015%" y="789" width="0.0450%" height="15" fill="rgb(240,178,23)" fg:x="30970" fg:w="68"/><text x="20.7515%" y="799.50"></text></g><g><title>RegMask::is_UP (30 samples, 0.02%)</title><rect x="20.5267%" y="773" width="0.0199%" height="15" fill="rgb(218,11,47)" fg:x="31008" fg:w="30"/><text x="20.7767%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (137 samples, 0.09%)</title><rect x="20.7683%" y="773" width="0.0907%" height="15" fill="rgb(218,51,51)" fg:x="31373" fg:w="137"/><text x="21.0183%" y="783.50"></text></g><g><title>RegMask::Size (212 samples, 0.14%)</title><rect x="20.8590%" y="773" width="0.1403%" height="15" fill="rgb(238,126,27)" fg:x="31510" fg:w="212"/><text x="21.1090%" y="783.50"></text></g><g><title>RegMask::smear_to_sets (460 samples, 0.30%)</title><rect x="20.9993%" y="773" width="0.3045%" height="15" fill="rgb(249,202,22)" fg:x="31722" fg:w="460"/><text x="21.2493%" y="783.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,154 samples, 0.76%)</title><rect x="20.5465%" y="789" width="0.7639%" height="15" fill="rgb(254,195,49)" fg:x="31038" fg:w="1154"/><text x="20.7965%" y="799.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (21 samples, 0.01%)</title><rect x="21.3105%" y="789" width="0.0139%" height="15" fill="rgb(208,123,14)" fg:x="32192" fg:w="21"/><text x="21.5605%" y="799.50"></text></g><g><title>RegMask::smear_to_sets (38 samples, 0.03%)</title><rect x="21.3336%" y="789" width="0.0252%" height="15" fill="rgb(224,200,8)" fg:x="32227" fg:w="38"/><text x="21.5836%" y="799.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (5,117 samples, 3.39%)</title><rect x="17.9741%" y="805" width="3.3874%" height="15" fill="rgb(217,61,36)" fg:x="27152" fg:w="5117"/><text x="18.2241%" y="815.50">Pha..</text></g><g><title>IndexSetIterator::advance_and_next (50 samples, 0.03%)</title><rect x="21.5501%" y="773" width="0.0331%" height="15" fill="rgb(206,35,45)" fg:x="32554" fg:w="50"/><text x="21.8001%" y="783.50"></text></g><g><title>PhaseChaitin::interfere_with_live (240 samples, 0.16%)</title><rect x="21.4289%" y="789" width="0.1589%" height="15" fill="rgb(217,65,33)" fg:x="32371" fg:w="240"/><text x="21.6789%" y="799.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (345 samples, 0.23%)</title><rect x="21.3614%" y="805" width="0.2284%" height="15" fill="rgb(222,158,48)" fg:x="32269" fg:w="345"/><text x="21.6114%" y="815.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (85 samples, 0.06%)</title><rect x="21.5898%" y="805" width="0.0563%" height="15" fill="rgb(254,2,54)" fg:x="32614" fg:w="85"/><text x="21.8398%" y="815.50"></text></g><g><title>find_hihghest_bit (33 samples, 0.02%)</title><rect x="21.6242%" y="789" width="0.0218%" height="15" fill="rgb(250,143,38)" fg:x="32666" fg:w="33"/><text x="21.8742%" y="799.50"></text></g><g><title>PhaseChaitin::compact (42 samples, 0.03%)</title><rect x="21.6461%" y="805" width="0.0278%" height="15" fill="rgb(248,25,0)" fg:x="32699" fg:w="42"/><text x="21.8961%" y="815.50"></text></g><g><title>PhaseChaitin::de_ssa (59 samples, 0.04%)</title><rect x="21.6739%" y="805" width="0.0391%" height="15" fill="rgb(206,152,27)" fg:x="32741" fg:w="59"/><text x="21.9239%" y="815.50"></text></g><g><title>PhaseChaitin::fixup_spills (47 samples, 0.03%)</title><rect x="21.7136%" y="805" width="0.0311%" height="15" fill="rgb(240,77,30)" fg:x="32801" fg:w="47"/><text x="21.9636%" y="815.50"></text></g><g><title>MachCallJavaNode::in_RegMask (42 samples, 0.03%)</title><rect x="22.5927%" y="789" width="0.0278%" height="15" fill="rgb(231,5,3)" fg:x="34129" fg:w="42"/><text x="22.8427%" y="799.50"></text></g><g><title>MachNode::ideal_reg (69 samples, 0.05%)</title><rect x="22.6225%" y="789" width="0.0457%" height="15" fill="rgb(207,226,32)" fg:x="34174" fg:w="69"/><text x="22.8725%" y="799.50"></text></g><g><title>MachNode::in_RegMask (29 samples, 0.02%)</title><rect x="22.6682%" y="789" width="0.0192%" height="15" fill="rgb(222,207,47)" fg:x="34243" fg:w="29"/><text x="22.9182%" y="799.50"></text></g><g><title>MachProjNode::bottom_type (26 samples, 0.02%)</title><rect x="22.6900%" y="789" width="0.0172%" height="15" fill="rgb(229,115,45)" fg:x="34276" fg:w="26"/><text x="22.9400%" y="799.50"></text></g><g><title>RegMask::Size (795 samples, 0.53%)</title><rect x="22.7390%" y="789" width="0.5263%" height="15" fill="rgb(224,191,6)" fg:x="34350" fg:w="795"/><text x="22.9890%" y="799.50"></text></g><g><title>RegMask::clear_to_sets (137 samples, 0.09%)</title><rect x="23.2653%" y="789" width="0.0907%" height="15" fill="rgb(230,227,24)" fg:x="35145" fg:w="137"/><text x="23.5153%" y="799.50"></text></g><g><title>RegMask::is_aligned_pairs (55 samples, 0.04%)</title><rect x="23.3560%" y="789" width="0.0364%" height="15" fill="rgb(228,80,19)" fg:x="35282" fg:w="55"/><text x="23.6060%" y="799.50"></text></g><g><title>RegMask::is_bound1 (95 samples, 0.06%)</title><rect x="23.3924%" y="789" width="0.0629%" height="15" fill="rgb(247,229,0)" fg:x="35337" fg:w="95"/><text x="23.6424%" y="799.50"></text></g><g><title>RegMask::is_bound_pair (63 samples, 0.04%)</title><rect x="23.4553%" y="789" width="0.0417%" height="15" fill="rgb(237,194,15)" fg:x="35432" fg:w="63"/><text x="23.7053%" y="799.50"></text></g><g><title>RegMask::is_vector (21 samples, 0.01%)</title><rect x="23.4976%" y="789" width="0.0139%" height="15" fill="rgb(219,203,20)" fg:x="35496" fg:w="21"/><text x="23.7476%" y="799.50"></text></g><g><title>Type::hashcons (23 samples, 0.02%)</title><rect x="23.5115%" y="789" width="0.0152%" height="15" fill="rgb(234,128,8)" fg:x="35517" fg:w="23"/><text x="23.7615%" y="799.50"></text></g><g><title>Dict::Insert (23 samples, 0.02%)</title><rect x="23.5115%" y="773" width="0.0152%" height="15" fill="rgb(248,202,8)" fg:x="35517" fg:w="23"/><text x="23.7615%" y="783.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (2,754 samples, 1.82%)</title><rect x="21.7447%" y="805" width="1.8231%" height="15" fill="rgb(206,104,37)" fg:x="32848" fg:w="2754"/><text x="21.9947%" y="815.50">P..</text></g><g><title>PhaseChaitin::merge_multidefs (384 samples, 0.25%)</title><rect x="23.5678%" y="805" width="0.2542%" height="15" fill="rgb(223,8,27)" fg:x="35602" fg:w="384"/><text x="23.8178%" y="815.50"></text></g><g><title>Node::replace_by (25 samples, 0.02%)</title><rect x="24.6601%" y="789" width="0.0165%" height="15" fill="rgb(216,217,28)" fg:x="37252" fg:w="25"/><text x="24.9101%" y="799.50"></text></g><g><title>MachCallJavaNode::in_RegMask (16 samples, 0.01%)</title><rect x="25.4564%" y="757" width="0.0106%" height="15" fill="rgb(249,199,1)" fg:x="38455" fg:w="16"/><text x="25.7064%" y="767.50"></text></g><g><title>RegMask::Size (21 samples, 0.01%)</title><rect x="25.4684%" y="757" width="0.0139%" height="15" fill="rgb(240,85,17)" fg:x="38473" fg:w="21"/><text x="25.7184%" y="767.50"></text></g><g><title>PhaseChaitin::use_prior_register (63 samples, 0.04%)</title><rect x="25.4472%" y="773" width="0.0417%" height="15" fill="rgb(206,108,45)" fg:x="38441" fg:w="63"/><text x="25.6972%" y="783.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (20 samples, 0.01%)</title><rect x="25.4889%" y="773" width="0.0132%" height="15" fill="rgb(245,210,41)" fg:x="38504" fg:w="20"/><text x="25.7389%" y="783.50"></text></g><g><title>PhaseChaitin::elide_copy (1,248 samples, 0.83%)</title><rect x="24.6826%" y="789" width="0.8262%" height="15" fill="rgb(206,13,37)" fg:x="37286" fg:w="1248"/><text x="24.9326%" y="799.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (29 samples, 0.02%)</title><rect x="25.5101%" y="789" width="0.0192%" height="15" fill="rgb(250,61,18)" fg:x="38536" fg:w="29"/><text x="25.7601%" y="799.50"></text></g><g><title>[libc-2.31.so] (56 samples, 0.04%)</title><rect x="25.5332%" y="789" width="0.0371%" height="15" fill="rgb(235,172,48)" fg:x="38571" fg:w="56"/><text x="25.7832%" y="799.50"></text></g><g><title>find_lowest_bit (247 samples, 0.16%)</title><rect x="25.5743%" y="789" width="0.1635%" height="15" fill="rgb(249,201,17)" fg:x="38633" fg:w="247"/><text x="25.8243%" y="799.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (2,897 samples, 1.92%)</title><rect x="23.8227%" y="805" width="1.9178%" height="15" fill="rgb(219,208,6)" fg:x="35987" fg:w="2897"/><text x="24.0727%" y="815.50">P..</text></g><g><title>IndexSet::IndexSet (26 samples, 0.02%)</title><rect x="25.8099%" y="789" width="0.0172%" height="15" fill="rgb(248,31,23)" fg:x="38989" fg:w="26"/><text x="26.0599%" y="799.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (158 samples, 0.10%)</title><rect x="25.7417%" y="805" width="0.1046%" height="15" fill="rgb(245,15,42)" fg:x="38886" fg:w="158"/><text x="25.9917%" y="815.50"></text></g><g><title>PhaseIFG::Union (42 samples, 0.03%)</title><rect x="25.8907%" y="757" width="0.0278%" height="15" fill="rgb(222,217,39)" fg:x="39111" fg:w="42"/><text x="26.1407%" y="767.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (108 samples, 0.07%)</title><rect x="25.8477%" y="789" width="0.0715%" height="15" fill="rgb(210,219,27)" fg:x="39046" fg:w="108"/><text x="26.0977%" y="799.50"></text></g><g><title>PhaseCoalesce::combine_these_two (55 samples, 0.04%)</title><rect x="25.8828%" y="773" width="0.0364%" height="15" fill="rgb(252,166,36)" fg:x="39099" fg:w="55"/><text x="26.1328%" y="783.50"></text></g><g><title>PhaseCFG::is_uncommon (90 samples, 0.06%)</title><rect x="25.9483%" y="773" width="0.0596%" height="15" fill="rgb(245,132,34)" fg:x="39198" fg:w="90"/><text x="26.1983%" y="783.50"></text></g><g><title>Block::has_uncommon_code (23 samples, 0.02%)</title><rect x="25.9926%" y="757" width="0.0152%" height="15" fill="rgb(236,54,3)" fg:x="39265" fg:w="23"/><text x="26.2426%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (20 samples, 0.01%)</title><rect x="26.1158%" y="741" width="0.0132%" height="15" fill="rgb(241,173,43)" fg:x="39451" fg:w="20"/><text x="26.3658%" y="751.50"></text></g><g><title>IndexSet::lrg_union (163 samples, 0.11%)</title><rect x="26.0251%" y="757" width="0.1079%" height="15" fill="rgb(215,190,9)" fg:x="39314" fg:w="163"/><text x="26.2751%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (16 samples, 0.01%)</title><rect x="26.2349%" y="741" width="0.0106%" height="15" fill="rgb(242,101,16)" fg:x="39631" fg:w="16"/><text x="26.4849%" y="751.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (167 samples, 0.11%)</title><rect x="26.1356%" y="757" width="0.1106%" height="15" fill="rgb(223,190,21)" fg:x="39481" fg:w="167"/><text x="26.3856%" y="767.50"></text></g><g><title>PhaseIFG::effective_degree (49 samples, 0.03%)</title><rect x="26.2462%" y="757" width="0.0324%" height="15" fill="rgb(215,228,25)" fg:x="39648" fg:w="49"/><text x="26.4962%" y="767.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (668 samples, 0.44%)</title><rect x="25.8463%" y="805" width="0.4422%" height="15" fill="rgb(225,36,22)" fg:x="39044" fg:w="668"/><text x="26.0963%" y="815.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (558 samples, 0.37%)</title><rect x="25.9192%" y="789" width="0.3694%" height="15" fill="rgb(251,106,46)" fg:x="39154" fg:w="558"/><text x="26.1692%" y="799.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (424 samples, 0.28%)</title><rect x="26.0079%" y="773" width="0.2807%" height="15" fill="rgb(208,90,1)" fg:x="39288" fg:w="424"/><text x="26.2579%" y="783.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (32 samples, 0.02%)</title><rect x="26.4653%" y="789" width="0.0212%" height="15" fill="rgb(243,10,4)" fg:x="39979" fg:w="32"/><text x="26.7153%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (320 samples, 0.21%)</title><rect x="26.4865%" y="789" width="0.2118%" height="15" fill="rgb(212,137,27)" fg:x="40011" fg:w="320"/><text x="26.7365%" y="799.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (620 samples, 0.41%)</title><rect x="26.2885%" y="805" width="0.4104%" height="15" fill="rgb(231,220,49)" fg:x="39712" fg:w="620"/><text x="26.5385%" y="815.50"></text></g><g><title>IndexSet::alloc_block_containing (27 samples, 0.02%)</title><rect x="26.8671%" y="789" width="0.0179%" height="15" fill="rgb(237,96,20)" fg:x="40586" fg:w="27"/><text x="27.1171%" y="799.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (54 samples, 0.04%)</title><rect x="26.8850%" y="789" width="0.0357%" height="15" fill="rgb(239,229,30)" fg:x="40613" fg:w="54"/><text x="27.1350%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (276 samples, 0.18%)</title><rect x="26.9207%" y="789" width="0.1827%" height="15" fill="rgb(219,65,33)" fg:x="40667" fg:w="276"/><text x="27.1707%" y="799.50"></text></g><g><title>PhaseIFG::SquareUp (612 samples, 0.41%)</title><rect x="26.6990%" y="805" width="0.4051%" height="15" fill="rgb(243,134,7)" fg:x="40332" fg:w="612"/><text x="26.9490%" y="815.50"></text></g><g><title>IndexSet::initialize (139 samples, 0.09%)</title><rect x="27.1663%" y="789" width="0.0920%" height="15" fill="rgb(216,177,54)" fg:x="41038" fg:w="139"/><text x="27.4163%" y="799.50"></text></g><g><title>[libc-2.31.so] (42 samples, 0.03%)</title><rect x="27.2583%" y="789" width="0.0278%" height="15" fill="rgb(211,160,20)" fg:x="41177" fg:w="42"/><text x="27.5083%" y="799.50"></text></g><g><title>PhaseIFG::init (276 samples, 0.18%)</title><rect x="27.1041%" y="805" width="0.1827%" height="15" fill="rgb(239,85,39)" fg:x="40944" fg:w="276"/><text x="27.3541%" y="815.50"></text></g><g><title>__tls_get_addr (18 samples, 0.01%)</title><rect x="27.8647%" y="773" width="0.0119%" height="15" fill="rgb(232,125,22)" fg:x="42093" fg:w="18"/><text x="28.1147%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (51 samples, 0.03%)</title><rect x="27.8449%" y="789" width="0.0338%" height="15" fill="rgb(244,57,34)" fg:x="42063" fg:w="51"/><text x="28.0949%" y="799.50"></text></g><g><title>IndexSet::free_block (35 samples, 0.02%)</title><rect x="27.8786%" y="789" width="0.0232%" height="15" fill="rgb(214,203,32)" fg:x="42114" fg:w="35"/><text x="28.1286%" y="799.50"></text></g><g><title>IndexSet::initialize (84 samples, 0.06%)</title><rect x="27.9018%" y="789" width="0.0556%" height="15" fill="rgb(207,58,43)" fg:x="42149" fg:w="84"/><text x="28.1518%" y="799.50"></text></g><g><title>__tls_get_addr (39 samples, 0.03%)</title><rect x="28.3625%" y="757" width="0.0258%" height="15" fill="rgb(215,193,15)" fg:x="42845" fg:w="39"/><text x="28.6125%" y="767.50"></text></g><g><title>update_get_addr (25 samples, 0.02%)</title><rect x="28.3718%" y="741" width="0.0165%" height="15" fill="rgb(232,15,44)" fg:x="42859" fg:w="25"/><text x="28.6218%" y="751.50"></text></g><g><title>_dl_update_slotinfo (18 samples, 0.01%)</title><rect x="28.3764%" y="725" width="0.0119%" height="15" fill="rgb(212,3,48)" fg:x="42866" fg:w="18"/><text x="28.6264%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (133 samples, 0.09%)</title><rect x="28.3010%" y="773" width="0.0880%" height="15" fill="rgb(218,128,7)" fg:x="42752" fg:w="133"/><text x="28.5510%" y="783.50"></text></g><g><title>IndexSet::initialize (30 samples, 0.02%)</title><rect x="28.3890%" y="773" width="0.0199%" height="15" fill="rgb(226,216,39)" fg:x="42885" fg:w="30"/><text x="28.6390%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (205 samples, 0.14%)</title><rect x="28.4102%" y="773" width="0.1357%" height="15" fill="rgb(243,47,51)" fg:x="42917" fg:w="205"/><text x="28.6602%" y="783.50"></text></g><g><title>PhaseLive::add_liveout (899 samples, 0.60%)</title><rect x="27.9587%" y="789" width="0.5951%" height="15" fill="rgb(241,183,40)" fg:x="42235" fg:w="899"/><text x="28.2087%" y="799.50"></text></g><g><title>PhaseLive::compute (1,914 samples, 1.27%)</title><rect x="27.2901%" y="805" width="1.2670%" height="15" fill="rgb(231,217,32)" fg:x="41225" fg:w="1914"/><text x="27.5401%" y="815.50"></text></g><g><title>RegMask::Size (32 samples, 0.02%)</title><rect x="28.5605%" y="805" width="0.0212%" height="15" fill="rgb(229,61,38)" fg:x="43144" fg:w="32"/><text x="28.8105%" y="815.50"></text></g><g><title>find_lowest_bit (31 samples, 0.02%)</title><rect x="28.5929%" y="805" width="0.0205%" height="15" fill="rgb(225,210,5)" fg:x="43193" fg:w="31"/><text x="28.8429%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (21,784 samples, 14.42%)</title><rect x="14.2001%" y="821" width="14.4206%" height="15" fill="rgb(231,79,45)" fg:x="21451" fg:w="21784"/><text x="14.4501%" y="831.50">PhaseChaitin::Register..</text></g><g><title>PhasePeephole::do_transform (28 samples, 0.02%)</title><rect x="28.6227%" y="821" width="0.0185%" height="15" fill="rgb(224,100,7)" fg:x="43238" fg:w="28"/><text x="28.8727%" y="831.50"></text></g><g><title>Compile::Code_Gen (27,850 samples, 18.44%)</title><rect x="10.2064%" y="837" width="18.4361%" height="15" fill="rgb(241,198,18)" fg:x="15418" fg:w="27850"/><text x="10.4564%" y="847.50">Compile::Code_Gen</text></g><g><title>Compile::call_generator (17 samples, 0.01%)</title><rect x="28.6485%" y="549" width="0.0113%" height="15" fill="rgb(252,97,53)" fg:x="43277" fg:w="17"/><text x="28.8985%" y="559.50"></text></g><g><title>Compile::call_generator (28 samples, 0.02%)</title><rect x="28.6611%" y="453" width="0.0185%" height="15" fill="rgb(220,88,7)" fg:x="43296" fg:w="28"/><text x="28.9111%" y="463.50"></text></g><g><title>InlineTree::ok_to_inline (23 samples, 0.02%)</title><rect x="28.6644%" y="437" width="0.0152%" height="15" fill="rgb(213,176,14)" fg:x="43301" fg:w="23"/><text x="28.9144%" y="447.50"></text></g><g><title>ciMethod::get_flow_analysis (21 samples, 0.01%)</title><rect x="28.6657%" y="421" width="0.0139%" height="15" fill="rgb(246,73,7)" fg:x="43303" fg:w="21"/><text x="28.9157%" y="431.50"></text></g><g><title>ciTypeFlow::do_flow (21 samples, 0.01%)</title><rect x="28.6657%" y="405" width="0.0139%" height="15" fill="rgb(245,64,36)" fg:x="43303" fg:w="21"/><text x="28.9157%" y="415.50"></text></g><g><title>ciTypeFlow::flow_types (21 samples, 0.01%)</title><rect x="28.6657%" y="389" width="0.0139%" height="15" fill="rgb(245,80,10)" fg:x="43303" fg:w="21"/><text x="28.9157%" y="399.50"></text></g><g><title>ciTypeFlow::df_flow_types (21 samples, 0.01%)</title><rect x="28.6657%" y="373" width="0.0139%" height="15" fill="rgb(232,107,50)" fg:x="43303" fg:w="21"/><text x="28.9157%" y="383.50"></text></g><g><title>ciTypeFlow::flow_block (21 samples, 0.01%)</title><rect x="28.6657%" y="357" width="0.0139%" height="15" fill="rgb(253,3,0)" fg:x="43303" fg:w="21"/><text x="28.9157%" y="367.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (19 samples, 0.01%)</title><rect x="28.6670%" y="341" width="0.0126%" height="15" fill="rgb(212,99,53)" fg:x="43305" fg:w="19"/><text x="28.9170%" y="351.50"></text></g><g><title>InlineTree::ok_to_inline (18 samples, 0.01%)</title><rect x="28.6902%" y="341" width="0.0119%" height="15" fill="rgb(249,111,54)" fg:x="43340" fg:w="18"/><text x="28.9402%" y="351.50"></text></g><g><title>Compile::call_generator (26 samples, 0.02%)</title><rect x="28.6862%" y="357" width="0.0172%" height="15" fill="rgb(249,55,30)" fg:x="43334" fg:w="26"/><text x="28.9362%" y="367.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="28.7802%" y="133" width="0.0119%" height="15" fill="rgb(237,47,42)" fg:x="43476" fg:w="18"/><text x="29.0302%" y="143.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="28.7802%" y="117" width="0.0119%" height="15" fill="rgb(211,20,18)" fg:x="43476" fg:w="18"/><text x="29.0302%" y="127.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="28.7809%" y="101" width="0.0113%" height="15" fill="rgb(231,203,46)" fg:x="43477" fg:w="17"/><text x="29.0309%" y="111.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.02%)</title><rect x="28.7756%" y="165" width="0.0199%" height="15" fill="rgb(237,142,3)" fg:x="43469" fg:w="30"/><text x="29.0256%" y="175.50"></text></g><g><title>Parse::Parse (30 samples, 0.02%)</title><rect x="28.7756%" y="149" width="0.0199%" height="15" fill="rgb(241,107,1)" fg:x="43469" fg:w="30"/><text x="29.0256%" y="159.50"></text></g><g><title>Parse::do_call (59 samples, 0.04%)</title><rect x="28.7597%" y="181" width="0.0391%" height="15" fill="rgb(229,83,13)" fg:x="43445" fg:w="59"/><text x="29.0097%" y="191.50"></text></g><g><title>Parse::do_one_block (92 samples, 0.06%)</title><rect x="28.7564%" y="213" width="0.0609%" height="15" fill="rgb(241,91,40)" fg:x="43440" fg:w="92"/><text x="29.0064%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.06%)</title><rect x="28.7571%" y="197" width="0.0602%" height="15" fill="rgb(225,3,45)" fg:x="43441" fg:w="91"/><text x="29.0071%" y="207.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.06%)</title><rect x="28.7564%" y="229" width="0.0622%" height="15" fill="rgb(244,223,14)" fg:x="43440" fg:w="94"/><text x="29.0064%" y="239.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.07%)</title><rect x="28.7498%" y="261" width="0.0728%" height="15" fill="rgb(224,124,37)" fg:x="43430" fg:w="110"/><text x="28.9998%" y="271.50"></text></g><g><title>Parse::Parse (110 samples, 0.07%)</title><rect x="28.7498%" y="245" width="0.0728%" height="15" fill="rgb(251,171,30)" fg:x="43430" fg:w="110"/><text x="28.9998%" y="255.50"></text></g><g><title>Parse::do_call (155 samples, 0.10%)</title><rect x="28.7306%" y="277" width="0.1026%" height="15" fill="rgb(236,46,54)" fg:x="43401" fg:w="155"/><text x="28.9806%" y="287.50"></text></g><g><title>Parse::do_field_access (32 samples, 0.02%)</title><rect x="28.8345%" y="277" width="0.0212%" height="15" fill="rgb(245,213,5)" fg:x="43558" fg:w="32"/><text x="29.0845%" y="287.50"></text></g><g><title>Parse::do_one_block (224 samples, 0.15%)</title><rect x="28.7220%" y="309" width="0.1483%" height="15" fill="rgb(230,144,27)" fg:x="43388" fg:w="224"/><text x="28.9720%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (222 samples, 0.15%)</title><rect x="28.7233%" y="293" width="0.1470%" height="15" fill="rgb(220,86,6)" fg:x="43390" fg:w="222"/><text x="28.9733%" y="303.50"></text></g><g><title>Parse::do_all_blocks (227 samples, 0.15%)</title><rect x="28.7213%" y="325" width="0.1503%" height="15" fill="rgb(240,20,13)" fg:x="43387" fg:w="227"/><text x="28.9713%" y="335.50"></text></g><g><title>ParseGenerator::generate (244 samples, 0.16%)</title><rect x="28.7134%" y="357" width="0.1615%" height="15" fill="rgb(217,89,34)" fg:x="43375" fg:w="244"/><text x="28.9634%" y="367.50"></text></g><g><title>Parse::Parse (244 samples, 0.16%)</title><rect x="28.7134%" y="341" width="0.1615%" height="15" fill="rgb(229,13,5)" fg:x="43375" fg:w="244"/><text x="28.9634%" y="351.50"></text></g><g><title>PredictedCallGenerator::generate (20 samples, 0.01%)</title><rect x="28.8749%" y="357" width="0.0132%" height="15" fill="rgb(244,67,35)" fg:x="43619" fg:w="20"/><text x="29.1249%" y="367.50"></text></g><g><title>Parse::do_call (312 samples, 0.21%)</title><rect x="28.6862%" y="373" width="0.2065%" height="15" fill="rgb(221,40,2)" fg:x="43334" fg:w="312"/><text x="28.9362%" y="383.50"></text></g><g><title>Parse::do_put_xxx (21 samples, 0.01%)</title><rect x="28.9047%" y="357" width="0.0139%" height="15" fill="rgb(237,157,21)" fg:x="43664" fg:w="21"/><text x="29.1547%" y="367.50"></text></g><g><title>GraphKit::access_store_at (21 samples, 0.01%)</title><rect x="28.9047%" y="341" width="0.0139%" height="15" fill="rgb(222,94,11)" fg:x="43664" fg:w="21"/><text x="29.1547%" y="351.50"></text></g><g><title>BarrierSetC2::store_at (21 samples, 0.01%)</title><rect x="28.9047%" y="325" width="0.0139%" height="15" fill="rgb(249,113,6)" fg:x="43664" fg:w="21"/><text x="29.1547%" y="335.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (20 samples, 0.01%)</title><rect x="28.9054%" y="309" width="0.0132%" height="15" fill="rgb(238,137,36)" fg:x="43665" fg:w="20"/><text x="29.1554%" y="319.50"></text></g><g><title>Parse::do_field_access (37 samples, 0.02%)</title><rect x="28.8948%" y="373" width="0.0245%" height="15" fill="rgb(210,102,26)" fg:x="43649" fg:w="37"/><text x="29.1448%" y="383.50"></text></g><g><title>ParseGenerator::generate (371 samples, 0.25%)</title><rect x="28.6803%" y="453" width="0.2456%" height="15" fill="rgb(218,30,30)" fg:x="43325" fg:w="371"/><text x="28.9303%" y="463.50"></text></g><g><title>Parse::Parse (371 samples, 0.25%)</title><rect x="28.6803%" y="437" width="0.2456%" height="15" fill="rgb(214,67,26)" fg:x="43325" fg:w="371"/><text x="28.9303%" y="447.50"></text></g><g><title>Parse::do_all_blocks (367 samples, 0.24%)</title><rect x="28.6829%" y="421" width="0.2429%" height="15" fill="rgb(251,9,53)" fg:x="43329" fg:w="367"/><text x="28.9329%" y="431.50"></text></g><g><title>Parse::do_one_block (367 samples, 0.24%)</title><rect x="28.6829%" y="405" width="0.2429%" height="15" fill="rgb(228,204,25)" fg:x="43329" fg:w="367"/><text x="28.9329%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (367 samples, 0.24%)</title><rect x="28.6829%" y="389" width="0.2429%" height="15" fill="rgb(207,153,8)" fg:x="43329" fg:w="367"/><text x="28.9329%" y="399.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="28.9305%" y="293" width="0.0119%" height="15" fill="rgb(242,9,16)" fg:x="43703" fg:w="18"/><text x="29.1805%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="28.9305%" y="277" width="0.0119%" height="15" fill="rgb(217,211,10)" fg:x="43703" fg:w="18"/><text x="29.1805%" y="287.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="28.9298%" y="341" width="0.0132%" height="15" fill="rgb(219,228,52)" fg:x="43702" fg:w="20"/><text x="29.1798%" y="351.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="28.9298%" y="325" width="0.0132%" height="15" fill="rgb(231,92,29)" fg:x="43702" fg:w="20"/><text x="29.1798%" y="335.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="28.9305%" y="309" width="0.0126%" height="15" fill="rgb(232,8,23)" fg:x="43703" fg:w="19"/><text x="29.1805%" y="319.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="28.9272%" y="357" width="0.0172%" height="15" fill="rgb(216,211,34)" fg:x="43698" fg:w="26"/><text x="29.1772%" y="367.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.02%)</title><rect x="28.9259%" y="437" width="0.0205%" height="15" fill="rgb(236,151,0)" fg:x="43696" fg:w="31"/><text x="29.1759%" y="447.50"></text></g><g><title>Parse::Parse (31 samples, 0.02%)</title><rect x="28.9259%" y="421" width="0.0205%" height="15" fill="rgb(209,168,3)" fg:x="43696" fg:w="31"/><text x="29.1759%" y="431.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.02%)</title><rect x="28.9259%" y="405" width="0.0205%" height="15" fill="rgb(208,129,28)" fg:x="43696" fg:w="31"/><text x="29.1759%" y="415.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.02%)</title><rect x="28.9259%" y="389" width="0.0205%" height="15" fill="rgb(229,78,22)" fg:x="43696" fg:w="31"/><text x="29.1759%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="28.9259%" y="373" width="0.0205%" height="15" fill="rgb(228,187,13)" fg:x="43696" fg:w="31"/><text x="29.1759%" y="383.50"></text></g><g><title>PredictedCallGenerator::generate (35 samples, 0.02%)</title><rect x="28.9259%" y="453" width="0.0232%" height="15" fill="rgb(240,119,24)" fg:x="43696" fg:w="35"/><text x="29.1759%" y="463.50"></text></g><g><title>Parse::do_call (438 samples, 0.29%)</title><rect x="28.6611%" y="469" width="0.2899%" height="15" fill="rgb(209,194,42)" fg:x="43296" fg:w="438"/><text x="28.9111%" y="479.50"></text></g><g><title>ParseGenerator::generate (447 samples, 0.30%)</title><rect x="28.6598%" y="549" width="0.2959%" height="15" fill="rgb(247,200,46)" fg:x="43294" fg:w="447"/><text x="28.9098%" y="559.50"></text></g><g><title>Parse::Parse (447 samples, 0.30%)</title><rect x="28.6598%" y="533" width="0.2959%" height="15" fill="rgb(218,76,16)" fg:x="43294" fg:w="447"/><text x="28.9098%" y="543.50"></text></g><g><title>Parse::do_all_blocks (446 samples, 0.30%)</title><rect x="28.6604%" y="517" width="0.2952%" height="15" fill="rgb(225,21,48)" fg:x="43295" fg:w="446"/><text x="28.9104%" y="527.50"></text></g><g><title>Parse::do_one_block (446 samples, 0.30%)</title><rect x="28.6604%" y="501" width="0.2952%" height="15" fill="rgb(239,223,50)" fg:x="43295" fg:w="446"/><text x="28.9104%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (446 samples, 0.30%)</title><rect x="28.6604%" y="485" width="0.2952%" height="15" fill="rgb(244,45,21)" fg:x="43295" fg:w="446"/><text x="28.9104%" y="495.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="28.9629%" y="261" width="0.0113%" height="15" fill="rgb(232,33,43)" fg:x="43752" fg:w="17"/><text x="29.2129%" y="271.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="28.9629%" y="341" width="0.0152%" height="15" fill="rgb(209,8,3)" fg:x="43752" fg:w="23"/><text x="29.2129%" y="351.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="28.9629%" y="325" width="0.0152%" height="15" fill="rgb(214,25,53)" fg:x="43752" fg:w="23"/><text x="29.2129%" y="335.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="28.9629%" y="309" width="0.0152%" height="15" fill="rgb(254,186,54)" fg:x="43752" fg:w="23"/><text x="29.2129%" y="319.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="28.9629%" y="293" width="0.0152%" height="15" fill="rgb(208,174,49)" fg:x="43752" fg:w="23"/><text x="29.2129%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="28.9629%" y="277" width="0.0152%" height="15" fill="rgb(233,191,51)" fg:x="43752" fg:w="23"/><text x="29.2129%" y="287.50"></text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="28.9603%" y="357" width="0.0212%" height="15" fill="rgb(222,134,10)" fg:x="43748" fg:w="32"/><text x="29.2103%" y="367.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.03%)</title><rect x="28.9596%" y="437" width="0.0318%" height="15" fill="rgb(230,226,20)" fg:x="43747" fg:w="48"/><text x="29.2096%" y="447.50"></text></g><g><title>Parse::Parse (48 samples, 0.03%)</title><rect x="28.9596%" y="421" width="0.0318%" height="15" fill="rgb(251,111,25)" fg:x="43747" fg:w="48"/><text x="29.2096%" y="431.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.03%)</title><rect x="28.9596%" y="405" width="0.0318%" height="15" fill="rgb(224,40,46)" fg:x="43747" fg:w="48"/><text x="29.2096%" y="415.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.03%)</title><rect x="28.9596%" y="389" width="0.0318%" height="15" fill="rgb(236,108,47)" fg:x="43747" fg:w="48"/><text x="29.2096%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.03%)</title><rect x="28.9596%" y="373" width="0.0318%" height="15" fill="rgb(234,93,0)" fg:x="43747" fg:w="48"/><text x="29.2096%" y="383.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.04%)</title><rect x="28.9557%" y="533" width="0.0371%" height="15" fill="rgb(224,213,32)" fg:x="43741" fg:w="56"/><text x="29.2057%" y="543.50"></text></g><g><title>Parse::Parse (56 samples, 0.04%)</title><rect x="28.9557%" y="517" width="0.0371%" height="15" fill="rgb(251,11,48)" fg:x="43741" fg:w="56"/><text x="29.2057%" y="527.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.04%)</title><rect x="28.9563%" y="501" width="0.0364%" height="15" fill="rgb(236,173,5)" fg:x="43742" fg:w="55"/><text x="29.2063%" y="511.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.04%)</title><rect x="28.9563%" y="485" width="0.0364%" height="15" fill="rgb(230,95,12)" fg:x="43742" fg:w="55"/><text x="29.2063%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.04%)</title><rect x="28.9563%" y="469" width="0.0364%" height="15" fill="rgb(232,209,1)" fg:x="43742" fg:w="55"/><text x="29.2063%" y="479.50"></text></g><g><title>Parse::do_call (55 samples, 0.04%)</title><rect x="28.9563%" y="453" width="0.0364%" height="15" fill="rgb(232,6,1)" fg:x="43742" fg:w="55"/><text x="29.2063%" y="463.50"></text></g><g><title>Parse::do_call (521 samples, 0.34%)</title><rect x="28.6485%" y="565" width="0.3449%" height="15" fill="rgb(210,224,50)" fg:x="43277" fg:w="521"/><text x="28.8985%" y="575.50"></text></g><g><title>PredictedCallGenerator::generate (57 samples, 0.04%)</title><rect x="28.9557%" y="549" width="0.0377%" height="15" fill="rgb(228,127,35)" fg:x="43741" fg:w="57"/><text x="29.2057%" y="559.50"></text></g><g><title>Parse::do_all_blocks (523 samples, 0.35%)</title><rect x="28.6485%" y="613" width="0.3462%" height="15" fill="rgb(245,102,45)" fg:x="43277" fg:w="523"/><text x="28.8985%" y="623.50"></text></g><g><title>Parse::do_one_block (523 samples, 0.35%)</title><rect x="28.6485%" y="597" width="0.3462%" height="15" fill="rgb(214,1,49)" fg:x="43277" fg:w="523"/><text x="28.8985%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (523 samples, 0.35%)</title><rect x="28.6485%" y="581" width="0.3462%" height="15" fill="rgb(226,163,40)" fg:x="43277" fg:w="523"/><text x="28.8985%" y="591.50"></text></g><g><title>ParseGenerator::generate (524 samples, 0.35%)</title><rect x="28.6485%" y="645" width="0.3469%" height="15" fill="rgb(239,212,28)" fg:x="43277" fg:w="524"/><text x="28.8985%" y="655.50"></text></g><g><title>Parse::Parse (524 samples, 0.35%)</title><rect x="28.6485%" y="629" width="0.3469%" height="15" fill="rgb(220,20,13)" fg:x="43277" fg:w="524"/><text x="28.8985%" y="639.50"></text></g><g><title>Parse::do_call (22 samples, 0.01%)</title><rect x="29.0033%" y="357" width="0.0146%" height="15" fill="rgb(210,164,35)" fg:x="43813" fg:w="22"/><text x="29.2533%" y="367.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="29.0020%" y="405" width="0.0225%" height="15" fill="rgb(248,109,41)" fg:x="43811" fg:w="34"/><text x="29.2520%" y="415.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="29.0020%" y="389" width="0.0225%" height="15" fill="rgb(238,23,50)" fg:x="43811" fg:w="34"/><text x="29.2520%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="29.0020%" y="373" width="0.0225%" height="15" fill="rgb(211,48,49)" fg:x="43811" fg:w="34"/><text x="29.2520%" y="383.50"></text></g><g><title>ParseGenerator::generate (36 samples, 0.02%)</title><rect x="29.0013%" y="437" width="0.0238%" height="15" fill="rgb(223,36,21)" fg:x="43810" fg:w="36"/><text x="29.2513%" y="447.50"></text></g><g><title>Parse::Parse (36 samples, 0.02%)</title><rect x="29.0013%" y="421" width="0.0238%" height="15" fill="rgb(207,123,46)" fg:x="43810" fg:w="36"/><text x="29.2513%" y="431.50"></text></g><g><title>Parse::do_call (47 samples, 0.03%)</title><rect x="28.9980%" y="453" width="0.0311%" height="15" fill="rgb(240,218,32)" fg:x="43805" fg:w="47"/><text x="29.2480%" y="463.50"></text></g><g><title>ParseGenerator::generate (51 samples, 0.03%)</title><rect x="28.9980%" y="533" width="0.0338%" height="15" fill="rgb(252,5,43)" fg:x="43805" fg:w="51"/><text x="29.2480%" y="543.50"></text></g><g><title>Parse::Parse (51 samples, 0.03%)</title><rect x="28.9980%" y="517" width="0.0338%" height="15" fill="rgb(252,84,19)" fg:x="43805" fg:w="51"/><text x="29.2480%" y="527.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.03%)</title><rect x="28.9980%" y="501" width="0.0338%" height="15" fill="rgb(243,152,39)" fg:x="43805" fg:w="51"/><text x="29.2480%" y="511.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.03%)</title><rect x="28.9980%" y="485" width="0.0338%" height="15" fill="rgb(234,160,15)" fg:x="43805" fg:w="51"/><text x="29.2480%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.03%)</title><rect x="28.9980%" y="469" width="0.0338%" height="15" fill="rgb(237,34,20)" fg:x="43805" fg:w="51"/><text x="29.2480%" y="479.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.04%)</title><rect x="28.9954%" y="629" width="0.0391%" height="15" fill="rgb(229,97,13)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="639.50"></text></g><g><title>Parse::Parse (59 samples, 0.04%)</title><rect x="28.9954%" y="613" width="0.0391%" height="15" fill="rgb(234,71,50)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="623.50"></text></g><g><title>Parse::do_all_blocks (59 samples, 0.04%)</title><rect x="28.9954%" y="597" width="0.0391%" height="15" fill="rgb(253,155,4)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="607.50"></text></g><g><title>Parse::do_one_block (59 samples, 0.04%)</title><rect x="28.9954%" y="581" width="0.0391%" height="15" fill="rgb(222,185,37)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (59 samples, 0.04%)</title><rect x="28.9954%" y="565" width="0.0391%" height="15" fill="rgb(251,177,13)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="575.50"></text></g><g><title>Parse::do_call (59 samples, 0.04%)</title><rect x="28.9954%" y="549" width="0.0391%" height="15" fill="rgb(250,179,40)" fg:x="43801" fg:w="59"/><text x="29.2454%" y="559.50"></text></g><g><title>ParseGenerator::generate (591 samples, 0.39%)</title><rect x="28.6465%" y="741" width="0.3912%" height="15" fill="rgb(242,44,2)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="751.50"></text></g><g><title>Parse::Parse (591 samples, 0.39%)</title><rect x="28.6465%" y="725" width="0.3912%" height="15" fill="rgb(216,177,13)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="735.50"></text></g><g><title>Parse::do_all_blocks (591 samples, 0.39%)</title><rect x="28.6465%" y="709" width="0.3912%" height="15" fill="rgb(216,106,43)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="719.50"></text></g><g><title>Parse::do_one_block (591 samples, 0.39%)</title><rect x="28.6465%" y="693" width="0.3912%" height="15" fill="rgb(216,183,2)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (591 samples, 0.39%)</title><rect x="28.6465%" y="677" width="0.3912%" height="15" fill="rgb(249,75,3)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="687.50"></text></g><g><title>Parse::do_call (591 samples, 0.39%)</title><rect x="28.6465%" y="661" width="0.3912%" height="15" fill="rgb(219,67,39)" fg:x="43274" fg:w="591"/><text x="28.8965%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (64 samples, 0.04%)</title><rect x="28.9954%" y="645" width="0.0424%" height="15" fill="rgb(253,228,2)" fg:x="43801" fg:w="64"/><text x="29.2454%" y="655.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="29.0596%" y="261" width="0.0119%" height="15" fill="rgb(235,138,27)" fg:x="43898" fg:w="18"/><text x="29.3096%" y="271.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="29.0569%" y="309" width="0.0225%" height="15" fill="rgb(236,97,51)" fg:x="43894" fg:w="34"/><text x="29.3069%" y="319.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="29.0569%" y="293" width="0.0225%" height="15" fill="rgb(240,80,30)" fg:x="43894" fg:w="34"/><text x="29.3069%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.02%)</title><rect x="29.0583%" y="277" width="0.0212%" height="15" fill="rgb(230,178,19)" fg:x="43896" fg:w="32"/><text x="29.3083%" y="287.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.03%)</title><rect x="29.0569%" y="341" width="0.0258%" height="15" fill="rgb(210,190,27)" fg:x="43894" fg:w="39"/><text x="29.3069%" y="351.50"></text></g><g><title>Parse::Parse (39 samples, 0.03%)</title><rect x="29.0569%" y="325" width="0.0258%" height="15" fill="rgb(222,107,31)" fg:x="43894" fg:w="39"/><text x="29.3069%" y="335.50"></text></g><g><title>Parse::do_call (56 samples, 0.04%)</title><rect x="29.0483%" y="357" width="0.0371%" height="15" fill="rgb(216,127,34)" fg:x="43881" fg:w="56"/><text x="29.2983%" y="367.50"></text></g><g><title>ParseGenerator::generate (77 samples, 0.05%)</title><rect x="29.0457%" y="437" width="0.0510%" height="15" fill="rgb(234,116,52)" fg:x="43877" fg:w="77"/><text x="29.2957%" y="447.50"></text></g><g><title>Parse::Parse (77 samples, 0.05%)</title><rect x="29.0457%" y="421" width="0.0510%" height="15" fill="rgb(222,124,15)" fg:x="43877" fg:w="77"/><text x="29.2957%" y="431.50"></text></g><g><title>Parse::do_all_blocks (76 samples, 0.05%)</title><rect x="29.0464%" y="405" width="0.0503%" height="15" fill="rgb(231,179,28)" fg:x="43878" fg:w="76"/><text x="29.2964%" y="415.50"></text></g><g><title>Parse::do_one_block (76 samples, 0.05%)</title><rect x="29.0464%" y="389" width="0.0503%" height="15" fill="rgb(226,93,45)" fg:x="43878" fg:w="76"/><text x="29.2964%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (76 samples, 0.05%)</title><rect x="29.0464%" y="373" width="0.0503%" height="15" fill="rgb(215,8,51)" fg:x="43878" fg:w="76"/><text x="29.2964%" y="383.50"></text></g><g><title>Parse::do_call (86 samples, 0.06%)</title><rect x="29.0417%" y="453" width="0.0569%" height="15" fill="rgb(223,106,5)" fg:x="43871" fg:w="86"/><text x="29.2917%" y="463.50"></text></g><g><title>ParseGenerator::generate (90 samples, 0.06%)</title><rect x="29.0411%" y="533" width="0.0596%" height="15" fill="rgb(250,191,5)" fg:x="43870" fg:w="90"/><text x="29.2911%" y="543.50"></text></g><g><title>Parse::Parse (90 samples, 0.06%)</title><rect x="29.0411%" y="517" width="0.0596%" height="15" fill="rgb(242,132,44)" fg:x="43870" fg:w="90"/><text x="29.2911%" y="527.50"></text></g><g><title>Parse::do_all_blocks (89 samples, 0.06%)</title><rect x="29.0417%" y="501" width="0.0589%" height="15" fill="rgb(251,152,29)" fg:x="43871" fg:w="89"/><text x="29.2917%" y="511.50"></text></g><g><title>Parse::do_one_block (89 samples, 0.06%)</title><rect x="29.0417%" y="485" width="0.0589%" height="15" fill="rgb(218,179,5)" fg:x="43871" fg:w="89"/><text x="29.2917%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (89 samples, 0.06%)</title><rect x="29.0417%" y="469" width="0.0589%" height="15" fill="rgb(227,67,19)" fg:x="43871" fg:w="89"/><text x="29.2917%" y="479.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.06%)</title><rect x="29.0391%" y="629" width="0.0636%" height="15" fill="rgb(233,119,31)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="639.50"></text></g><g><title>Parse::Parse (96 samples, 0.06%)</title><rect x="29.0391%" y="613" width="0.0636%" height="15" fill="rgb(241,120,22)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="623.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.06%)</title><rect x="29.0391%" y="597" width="0.0636%" height="15" fill="rgb(224,102,30)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="607.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.06%)</title><rect x="29.0391%" y="581" width="0.0636%" height="15" fill="rgb(210,164,37)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.06%)</title><rect x="29.0391%" y="565" width="0.0636%" height="15" fill="rgb(226,191,16)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="575.50"></text></g><g><title>Parse::do_call (96 samples, 0.06%)</title><rect x="29.0391%" y="549" width="0.0636%" height="15" fill="rgb(214,40,45)" fg:x="43867" fg:w="96"/><text x="29.2891%" y="559.50"></text></g><g><title>ParseGenerator::generate (108 samples, 0.07%)</title><rect x="29.0377%" y="725" width="0.0715%" height="15" fill="rgb(244,29,26)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="735.50"></text></g><g><title>Parse::Parse (108 samples, 0.07%)</title><rect x="29.0377%" y="709" width="0.0715%" height="15" fill="rgb(216,16,5)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="719.50"></text></g><g><title>Parse::do_all_blocks (108 samples, 0.07%)</title><rect x="29.0377%" y="693" width="0.0715%" height="15" fill="rgb(249,76,35)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="703.50"></text></g><g><title>Parse::do_one_block (108 samples, 0.07%)</title><rect x="29.0377%" y="677" width="0.0715%" height="15" fill="rgb(207,11,44)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (108 samples, 0.07%)</title><rect x="29.0377%" y="661" width="0.0715%" height="15" fill="rgb(228,190,49)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="671.50"></text></g><g><title>Parse::do_call (108 samples, 0.07%)</title><rect x="29.0377%" y="645" width="0.0715%" height="15" fill="rgb(214,173,12)" fg:x="43865" fg:w="108"/><text x="29.2877%" y="655.50"></text></g><g><title>ParseGenerator::generate (721 samples, 0.48%)</title><rect x="28.6465%" y="837" width="0.4773%" height="15" fill="rgb(218,26,35)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="847.50"></text></g><g><title>Parse::Parse (721 samples, 0.48%)</title><rect x="28.6465%" y="821" width="0.4773%" height="15" fill="rgb(220,200,19)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="831.50"></text></g><g><title>Parse::do_all_blocks (721 samples, 0.48%)</title><rect x="28.6465%" y="805" width="0.4773%" height="15" fill="rgb(239,95,49)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="815.50"></text></g><g><title>Parse::do_one_block (721 samples, 0.48%)</title><rect x="28.6465%" y="789" width="0.4773%" height="15" fill="rgb(235,85,53)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (721 samples, 0.48%)</title><rect x="28.6465%" y="773" width="0.4773%" height="15" fill="rgb(233,133,31)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="783.50"></text></g><g><title>Parse::do_call (721 samples, 0.48%)</title><rect x="28.6465%" y="757" width="0.4773%" height="15" fill="rgb(218,25,20)" fg:x="43274" fg:w="721"/><text x="28.8965%" y="767.50"></text></g><g><title>PredictedCallGenerator::generate (130 samples, 0.09%)</title><rect x="29.0377%" y="741" width="0.0861%" height="15" fill="rgb(252,210,38)" fg:x="43865" fg:w="130"/><text x="29.2877%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (22 samples, 0.01%)</title><rect x="29.1092%" y="725" width="0.0146%" height="15" fill="rgb(242,134,21)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="735.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.01%)</title><rect x="29.1092%" y="709" width="0.0146%" height="15" fill="rgb(213,28,48)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="719.50"></text></g><g><title>Parse::Parse (22 samples, 0.01%)</title><rect x="29.1092%" y="693" width="0.0146%" height="15" fill="rgb(250,196,2)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="703.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.01%)</title><rect x="29.1092%" y="677" width="0.0146%" height="15" fill="rgb(227,5,17)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="687.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="29.1092%" y="661" width="0.0146%" height="15" fill="rgb(221,226,24)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="29.1092%" y="645" width="0.0146%" height="15" fill="rgb(211,5,48)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="655.50"></text></g><g><title>Parse::do_call (22 samples, 0.01%)</title><rect x="29.1092%" y="629" width="0.0146%" height="15" fill="rgb(219,150,6)" fg:x="43973" fg:w="22"/><text x="29.3592%" y="639.50"></text></g><g><title>Compile::Compile (28,585 samples, 18.92%)</title><rect x="10.2057%" y="853" width="18.9227%" height="15" fill="rgb(251,46,16)" fg:x="15417" fg:w="28585"/><text x="10.4557%" y="863.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (77 samples, 0.05%)</title><rect x="29.2066%" y="805" width="0.0510%" height="15" fill="rgb(220,204,40)" fg:x="44120" fg:w="77"/><text x="29.4566%" y="815.50"></text></g><g><title>Compile::final_graph_reshaping (205 samples, 0.14%)</title><rect x="29.1291%" y="837" width="0.1357%" height="15" fill="rgb(211,85,2)" fg:x="44003" fg:w="205"/><text x="29.3791%" y="847.50"></text></g><g><title>Compile::final_graph_reshaping_walk (200 samples, 0.13%)</title><rect x="29.1324%" y="821" width="0.1324%" height="15" fill="rgb(229,17,7)" fg:x="44008" fg:w="200"/><text x="29.3824%" y="831.50"></text></g><g><title>PhaseIterGVN::transform_old (36 samples, 0.02%)</title><rect x="29.3416%" y="805" width="0.0238%" height="15" fill="rgb(239,72,28)" fg:x="44324" fg:w="36"/><text x="29.5916%" y="815.50"></text></g><g><title>PhaseIterGVN::optimize (38 samples, 0.03%)</title><rect x="29.3409%" y="821" width="0.0252%" height="15" fill="rgb(230,47,54)" fg:x="44323" fg:w="38"/><text x="29.5909%" y="831.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (22 samples, 0.01%)</title><rect x="29.3661%" y="821" width="0.0146%" height="15" fill="rgb(214,50,8)" fg:x="44361" fg:w="22"/><text x="29.6161%" y="831.50"></text></g><g><title>Compile::remove_speculative_types (161 samples, 0.11%)</title><rect x="29.2807%" y="837" width="0.1066%" height="15" fill="rgb(216,198,43)" fg:x="44232" fg:w="161"/><text x="29.5307%" y="847.50"></text></g><g><title>BCEscapeAnalyzer::iterate_one_block (16 samples, 0.01%)</title><rect x="29.4303%" y="725" width="0.0106%" height="15" fill="rgb(234,20,35)" fg:x="44458" fg:w="16"/><text x="29.6803%" y="735.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (18 samples, 0.01%)</title><rect x="29.4296%" y="757" width="0.0119%" height="15" fill="rgb(254,45,19)" fg:x="44457" fg:w="18"/><text x="29.6796%" y="767.50"></text></g><g><title>BCEscapeAnalyzer::iterate_blocks (17 samples, 0.01%)</title><rect x="29.4303%" y="741" width="0.0113%" height="15" fill="rgb(219,14,44)" fg:x="44458" fg:w="17"/><text x="29.6803%" y="751.50"></text></g><g><title>ConnectionGraph::add_call_node (22 samples, 0.01%)</title><rect x="29.4296%" y="805" width="0.0146%" height="15" fill="rgb(217,220,26)" fg:x="44457" fg:w="22"/><text x="29.6796%" y="815.50"></text></g><g><title>ciMethod::get_bcea (22 samples, 0.01%)</title><rect x="29.4296%" y="789" width="0.0146%" height="15" fill="rgb(213,158,28)" fg:x="44457" fg:w="22"/><text x="29.6796%" y="799.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (22 samples, 0.01%)</title><rect x="29.4296%" y="773" width="0.0146%" height="15" fill="rgb(252,51,52)" fg:x="44457" fg:w="22"/><text x="29.6796%" y="783.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (16 samples, 0.01%)</title><rect x="29.4515%" y="741" width="0.0106%" height="15" fill="rgb(246,89,16)" fg:x="44490" fg:w="16"/><text x="29.7015%" y="751.50"></text></g><g><title>ConnectionGraph::add_final_edges (32 samples, 0.02%)</title><rect x="29.4442%" y="805" width="0.0212%" height="15" fill="rgb(216,158,49)" fg:x="44479" fg:w="32"/><text x="29.6942%" y="815.50"></text></g><g><title>ConnectionGraph::process_call_arguments (23 samples, 0.02%)</title><rect x="29.4502%" y="789" width="0.0152%" height="15" fill="rgb(236,107,19)" fg:x="44488" fg:w="23"/><text x="29.7002%" y="799.50"></text></g><g><title>ciMethod::get_bcea (21 samples, 0.01%)</title><rect x="29.4515%" y="773" width="0.0139%" height="15" fill="rgb(228,185,30)" fg:x="44490" fg:w="21"/><text x="29.7015%" y="783.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (21 samples, 0.01%)</title><rect x="29.4515%" y="757" width="0.0139%" height="15" fill="rgb(246,134,8)" fg:x="44490" fg:w="21"/><text x="29.7015%" y="767.50"></text></g><g><title>ConnectionGraph::add_field (16 samples, 0.01%)</title><rect x="29.4826%" y="789" width="0.0106%" height="15" fill="rgb(214,143,50)" fg:x="44537" fg:w="16"/><text x="29.7326%" y="799.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (45 samples, 0.03%)</title><rect x="29.4660%" y="805" width="0.0298%" height="15" fill="rgb(228,75,8)" fg:x="44512" fg:w="45"/><text x="29.7160%" y="815.50"></text></g><g><title>ConnectionGraph::add_fields_to_worklist (17 samples, 0.01%)</title><rect x="29.5283%" y="773" width="0.0113%" height="15" fill="rgb(207,175,4)" fg:x="44606" fg:w="17"/><text x="29.7783%" y="783.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (48 samples, 0.03%)</title><rect x="29.5084%" y="789" width="0.0318%" height="15" fill="rgb(205,108,24)" fg:x="44576" fg:w="48"/><text x="29.7584%" y="799.50"></text></g><g><title>ConnectionGraph::find_non_escaped_objects (16 samples, 0.01%)</title><rect x="29.5455%" y="789" width="0.0106%" height="15" fill="rgb(244,120,49)" fg:x="44632" fg:w="16"/><text x="29.7955%" y="799.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (87 samples, 0.06%)</title><rect x="29.4998%" y="805" width="0.0576%" height="15" fill="rgb(223,47,38)" fg:x="44563" fg:w="87"/><text x="29.7498%" y="815.50"></text></g><g><title>ConnectionGraph::split_memory_phi (25 samples, 0.02%)</title><rect x="29.5706%" y="773" width="0.0165%" height="15" fill="rgb(229,179,11)" fg:x="44670" fg:w="25"/><text x="29.8206%" y="783.50"></text></g><g><title>ConnectionGraph::find_inst_mem (20 samples, 0.01%)</title><rect x="29.5739%" y="757" width="0.0132%" height="15" fill="rgb(231,122,1)" fg:x="44675" fg:w="20"/><text x="29.8239%" y="767.50"></text></g><g><title>ConnectionGraph::split_memory_phi (16 samples, 0.01%)</title><rect x="29.5766%" y="741" width="0.0106%" height="15" fill="rgb(245,119,9)" fg:x="44679" fg:w="16"/><text x="29.8266%" y="751.50"></text></g><g><title>ConnectionGraph::find_inst_mem (35 samples, 0.02%)</title><rect x="29.5647%" y="789" width="0.0232%" height="15" fill="rgb(241,163,25)" fg:x="44661" fg:w="35"/><text x="29.8147%" y="799.50"></text></g><g><title>ConnectionGraph::split_unique_types (43 samples, 0.03%)</title><rect x="29.5627%" y="805" width="0.0285%" height="15" fill="rgb(217,214,3)" fg:x="44658" fg:w="43"/><text x="29.8127%" y="815.50"></text></g><g><title>ConnectionGraph::do_analysis (312 samples, 0.21%)</title><rect x="29.3873%" y="837" width="0.2065%" height="15" fill="rgb(240,86,28)" fg:x="44393" fg:w="312"/><text x="29.6373%" y="847.50"></text></g><g><title>ConnectionGraph::compute_escape (307 samples, 0.20%)</title><rect x="29.3906%" y="821" width="0.2032%" height="15" fill="rgb(215,47,9)" fg:x="44398" fg:w="307"/><text x="29.6406%" y="831.50"></text></g><g><title>LoadNode::Value (23 samples, 0.02%)</title><rect x="29.8023%" y="821" width="0.0152%" height="15" fill="rgb(252,25,45)" fg:x="45020" fg:w="23"/><text x="30.0523%" y="831.50"></text></g><g><title>PhiNode::Value (28 samples, 0.02%)</title><rect x="29.8275%" y="821" width="0.0185%" height="15" fill="rgb(251,164,9)" fg:x="45058" fg:w="28"/><text x="30.0775%" y="831.50"></text></g><g><title>TypeAryPtr::add_offset (21 samples, 0.01%)</title><rect x="29.8758%" y="821" width="0.0139%" height="15" fill="rgb(233,194,0)" fg:x="45131" fg:w="21"/><text x="30.1258%" y="831.50"></text></g><g><title>TypeInstPtr::add_offset (22 samples, 0.01%)</title><rect x="29.8897%" y="821" width="0.0146%" height="15" fill="rgb(249,111,24)" fg:x="45152" fg:w="22"/><text x="30.1397%" y="831.50"></text></g><g><title>PhaseCCP::analyze (489 samples, 0.32%)</title><rect x="29.5951%" y="837" width="0.3237%" height="15" fill="rgb(250,223,3)" fg:x="44707" fg:w="489"/><text x="29.8451%" y="847.50"></text></g><g><title>PhaseCCP::transform_once (83 samples, 0.05%)</title><rect x="29.9725%" y="805" width="0.0549%" height="15" fill="rgb(236,178,37)" fg:x="45277" fg:w="83"/><text x="30.2225%" y="815.50"></text></g><g><title>PhaseCCP::do_transform (165 samples, 0.11%)</title><rect x="29.9188%" y="837" width="0.1092%" height="15" fill="rgb(241,158,50)" fg:x="45196" fg:w="165"/><text x="30.1688%" y="847.50"></text></g><g><title>PhaseCCP::transform (165 samples, 0.11%)</title><rect x="29.9188%" y="821" width="0.1092%" height="15" fill="rgb(213,121,41)" fg:x="45196" fg:w="165"/><text x="30.1688%" y="831.50"></text></g><g><title>IdealLoopTree::counted_loop (28 samples, 0.02%)</title><rect x="30.0539%" y="821" width="0.0185%" height="15" fill="rgb(240,92,3)" fg:x="45400" fg:w="28"/><text x="30.3039%" y="831.50"></text></g><g><title>IdealLoopTree::counted_loop (27 samples, 0.02%)</title><rect x="30.0545%" y="805" width="0.0179%" height="15" fill="rgb(205,123,3)" fg:x="45401" fg:w="27"/><text x="30.3045%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (18 samples, 0.01%)</title><rect x="30.0830%" y="661" width="0.0119%" height="15" fill="rgb(205,97,47)" fg:x="45444" fg:w="18"/><text x="30.3330%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (22 samples, 0.01%)</title><rect x="30.0830%" y="677" width="0.0146%" height="15" fill="rgb(247,152,14)" fg:x="45444" fg:w="22"/><text x="30.3330%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (26 samples, 0.02%)</title><rect x="30.0824%" y="693" width="0.0172%" height="15" fill="rgb(248,195,53)" fg:x="45443" fg:w="26"/><text x="30.3324%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (30 samples, 0.02%)</title><rect x="30.0824%" y="709" width="0.0199%" height="15" fill="rgb(226,201,16)" fg:x="45443" fg:w="30"/><text x="30.3324%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (36 samples, 0.02%)</title><rect x="30.0817%" y="725" width="0.0238%" height="15" fill="rgb(205,98,0)" fg:x="45442" fg:w="36"/><text x="30.3317%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (41 samples, 0.03%)</title><rect x="30.0817%" y="741" width="0.0271%" height="15" fill="rgb(214,191,48)" fg:x="45442" fg:w="41"/><text x="30.3317%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (49 samples, 0.03%)</title><rect x="30.0804%" y="757" width="0.0324%" height="15" fill="rgb(237,112,39)" fg:x="45440" fg:w="49"/><text x="30.3304%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (16 samples, 0.01%)</title><rect x="30.1128%" y="757" width="0.0106%" height="15" fill="rgb(247,203,27)" fg:x="45489" fg:w="16"/><text x="30.3628%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (69 samples, 0.05%)</title><rect x="30.0784%" y="773" width="0.0457%" height="15" fill="rgb(235,124,28)" fg:x="45437" fg:w="69"/><text x="30.3284%" y="783.50"></text></g><g><title>PhaseIdealLoop::clone_loop (16 samples, 0.01%)</title><rect x="30.1307%" y="741" width="0.0106%" height="15" fill="rgb(208,207,46)" fg:x="45516" fg:w="16"/><text x="30.3807%" y="751.50"></text></g><g><title>PhaseIdealLoop::do_unroll (25 samples, 0.02%)</title><rect x="30.1287%" y="757" width="0.0165%" height="15" fill="rgb(234,176,4)" fg:x="45513" fg:w="25"/><text x="30.3787%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (42 samples, 0.03%)</title><rect x="30.1241%" y="773" width="0.0278%" height="15" fill="rgb(230,133,28)" fg:x="45506" fg:w="42"/><text x="30.3741%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (113 samples, 0.07%)</title><rect x="30.0777%" y="789" width="0.0748%" height="15" fill="rgb(211,137,40)" fg:x="45436" fg:w="113"/><text x="30.3277%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (29 samples, 0.02%)</title><rect x="30.1525%" y="789" width="0.0192%" height="15" fill="rgb(254,35,13)" fg:x="45549" fg:w="29"/><text x="30.4025%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (144 samples, 0.10%)</title><rect x="30.0777%" y="805" width="0.0953%" height="15" fill="rgb(225,49,51)" fg:x="45436" fg:w="144"/><text x="30.3277%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (164 samples, 0.11%)</title><rect x="30.0724%" y="821" width="0.1086%" height="15" fill="rgb(251,10,15)" fg:x="45428" fg:w="164"/><text x="30.3224%" y="831.50"></text></g><g><title>IdealLoopTree::loop_predication (30 samples, 0.02%)</title><rect x="30.1816%" y="789" width="0.0199%" height="15" fill="rgb(228,207,15)" fg:x="45593" fg:w="30"/><text x="30.4316%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (19 samples, 0.01%)</title><rect x="30.1889%" y="773" width="0.0126%" height="15" fill="rgb(241,99,19)" fg:x="45604" fg:w="19"/><text x="30.4389%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (18 samples, 0.01%)</title><rect x="30.2048%" y="773" width="0.0119%" height="15" fill="rgb(207,104,49)" fg:x="45628" fg:w="18"/><text x="30.4548%" y="783.50"></text></g><g><title>IdealLoopTree::loop_predication (58 samples, 0.04%)</title><rect x="30.1810%" y="805" width="0.0384%" height="15" fill="rgb(234,99,18)" fg:x="45592" fg:w="58"/><text x="30.4310%" y="815.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (27 samples, 0.02%)</title><rect x="30.2015%" y="789" width="0.0179%" height="15" fill="rgb(213,191,49)" fg:x="45623" fg:w="27"/><text x="30.4515%" y="799.50"></text></g><g><title>PathFrequency::to (21 samples, 0.01%)</title><rect x="30.2280%" y="789" width="0.0139%" height="15" fill="rgb(210,226,19)" fg:x="45663" fg:w="21"/><text x="30.4780%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (36 samples, 0.02%)</title><rect x="30.2419%" y="789" width="0.0238%" height="15" fill="rgb(229,97,18)" fg:x="45684" fg:w="36"/><text x="30.4919%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (21 samples, 0.01%)</title><rect x="30.2657%" y="789" width="0.0139%" height="15" fill="rgb(211,167,15)" fg:x="45720" fg:w="21"/><text x="30.5157%" y="799.50"></text></g><g><title>IdealLoopTree::loop_predication (161 samples, 0.11%)</title><rect x="30.1810%" y="821" width="0.1066%" height="15" fill="rgb(210,169,34)" fg:x="45592" fg:w="161"/><text x="30.4310%" y="831.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (103 samples, 0.07%)</title><rect x="30.2194%" y="805" width="0.0682%" height="15" fill="rgb(241,121,31)" fg:x="45650" fg:w="103"/><text x="30.4694%" y="815.50"></text></g><g><title>NTarjan::DFS (212 samples, 0.14%)</title><rect x="30.6530%" y="805" width="0.1403%" height="15" fill="rgb(232,40,11)" fg:x="46305" fg:w="212"/><text x="30.9030%" y="815.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="30.8112%" y="805" width="0.0113%" height="15" fill="rgb(205,86,26)" fg:x="46544" fg:w="17"/><text x="31.0612%" y="815.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="30.8112%" y="789" width="0.0113%" height="15" fill="rgb(231,126,28)" fg:x="46544" fg:w="17"/><text x="31.0612%" y="799.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="30.8112%" y="773" width="0.0113%" height="15" fill="rgb(219,221,18)" fg:x="46544" fg:w="17"/><text x="31.0612%" y="783.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="30.8119%" y="757" width="0.0106%" height="15" fill="rgb(211,40,0)" fg:x="46545" fg:w="16"/><text x="31.0619%" y="767.50"></text></g><g><title>PhaseIdealLoop::Dominators (784 samples, 0.52%)</title><rect x="30.3087%" y="821" width="0.5190%" height="15" fill="rgb(239,85,43)" fg:x="45785" fg:w="784"/><text x="30.5587%" y="831.50"></text></g><g><title>PhaseIdealLoop::dom_depth (45 samples, 0.03%)</title><rect x="31.4103%" y="773" width="0.0298%" height="15" fill="rgb(231,55,21)" fg:x="47449" fg:w="45"/><text x="31.6603%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (120 samples, 0.08%)</title><rect x="31.4401%" y="773" width="0.0794%" height="15" fill="rgb(225,184,43)" fg:x="47494" fg:w="120"/><text x="31.6901%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (260 samples, 0.17%)</title><rect x="31.3481%" y="789" width="0.1721%" height="15" fill="rgb(251,158,41)" fg:x="47355" fg:w="260"/><text x="31.5981%" y="799.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (293 samples, 0.19%)</title><rect x="31.3269%" y="805" width="0.1940%" height="15" fill="rgb(234,159,37)" fg:x="47323" fg:w="293"/><text x="31.5769%" y="815.50"></text></g><g><title>PhiNode::pinned (27 samples, 0.02%)</title><rect x="31.5208%" y="805" width="0.0179%" height="15" fill="rgb(216,204,22)" fg:x="47616" fg:w="27"/><text x="31.7708%" y="815.50"></text></g><g><title>ProjNode::pinned (18 samples, 0.01%)</title><rect x="31.5414%" y="805" width="0.0119%" height="15" fill="rgb(214,17,3)" fg:x="47647" fg:w="18"/><text x="31.7914%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,121 samples, 0.74%)</title><rect x="30.8277%" y="821" width="0.7421%" height="15" fill="rgb(212,111,17)" fg:x="46569" fg:w="1121"/><text x="31.0777%" y="831.50"></text></g><g><title>Node_List::push (16 samples, 0.01%)</title><rect x="32.1001%" y="805" width="0.0106%" height="15" fill="rgb(221,157,24)" fg:x="48491" fg:w="16"/><text x="32.3501%" y="815.50"></text></g><g><title>Node::unique_ctrl_out (61 samples, 0.04%)</title><rect x="32.4039%" y="789" width="0.0404%" height="15" fill="rgb(252,16,13)" fg:x="48950" fg:w="61"/><text x="32.6539%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (55 samples, 0.04%)</title><rect x="32.4450%" y="789" width="0.0364%" height="15" fill="rgb(221,62,2)" fg:x="49012" fg:w="55"/><text x="32.6950%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_depth (49 samples, 0.03%)</title><rect x="32.8077%" y="741" width="0.0324%" height="15" fill="rgb(247,87,22)" fg:x="49560" fg:w="49"/><text x="33.0577%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (196 samples, 0.13%)</title><rect x="32.7687%" y="757" width="0.1297%" height="15" fill="rgb(215,73,9)" fg:x="49501" fg:w="196"/><text x="33.0187%" y="767.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (88 samples, 0.06%)</title><rect x="32.8402%" y="741" width="0.0583%" height="15" fill="rgb(207,175,33)" fg:x="49609" fg:w="88"/><text x="33.0902%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (28 samples, 0.02%)</title><rect x="32.8984%" y="757" width="0.0185%" height="15" fill="rgb(243,129,54)" fg:x="49697" fg:w="28"/><text x="33.1484%" y="767.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (298 samples, 0.20%)</title><rect x="32.7203%" y="773" width="0.1973%" height="15" fill="rgb(227,119,45)" fg:x="49428" fg:w="298"/><text x="32.9703%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (29 samples, 0.02%)</title><rect x="32.9527%" y="757" width="0.0192%" height="15" fill="rgb(205,109,36)" fg:x="49779" fg:w="29"/><text x="33.2027%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (96 samples, 0.06%)</title><rect x="32.9183%" y="773" width="0.0636%" height="15" fill="rgb(205,6,39)" fg:x="49727" fg:w="96"/><text x="33.1683%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (20 samples, 0.01%)</title><rect x="32.9818%" y="773" width="0.0132%" height="15" fill="rgb(221,32,16)" fg:x="49823" fg:w="20"/><text x="33.2318%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (737 samples, 0.49%)</title><rect x="34.8923%" y="757" width="0.4879%" height="15" fill="rgb(228,144,50)" fg:x="52709" fg:w="737"/><text x="35.1423%" y="767.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,608 samples, 2.39%)</title><rect x="32.9951%" y="773" width="2.3884%" height="15" fill="rgb(229,201,53)" fg:x="49843" fg:w="3608"/><text x="33.2451%" y="783.50">Ph..</text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,397 samples, 2.91%)</title><rect x="32.4814%" y="789" width="2.9107%" height="15" fill="rgb(249,153,27)" fg:x="49067" fg:w="4397"/><text x="32.7314%" y="799.50">Ph..</text></g><g><title>PhaseIdealLoop::get_loop (24 samples, 0.02%)</title><rect x="35.3921%" y="789" width="0.0159%" height="15" fill="rgb(227,106,25)" fg:x="53464" fg:w="24"/><text x="35.6421%" y="799.50"></text></g><g><title>CallStaticJavaNode::uncommon_trap_request (16 samples, 0.01%)</title><rect x="35.4120%" y="773" width="0.0106%" height="15" fill="rgb(230,65,29)" fg:x="53494" fg:w="16"/><text x="35.6620%" y="783.50"></text></g><g><title>ProjNode::is_uncommon_trap_if_pattern (30 samples, 0.02%)</title><rect x="35.4100%" y="789" width="0.0199%" height="15" fill="rgb(221,57,46)" fg:x="53491" fg:w="30"/><text x="35.6600%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,015 samples, 3.32%)</title><rect x="32.1113%" y="805" width="3.3198%" height="15" fill="rgb(229,161,17)" fg:x="48508" fg:w="5015"/><text x="32.3613%" y="815.50">Pha..</text></g><g><title>PhaseIdealLoop::build_loop_late (5,852 samples, 3.87%)</title><rect x="31.5698%" y="821" width="3.8739%" height="15" fill="rgb(222,213,11)" fg:x="47690" fg:w="5852"/><text x="31.8198%" y="831.50">Phas..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (147 samples, 0.10%)</title><rect x="35.7310%" y="805" width="0.0973%" height="15" fill="rgb(235,35,13)" fg:x="53976" fg:w="147"/><text x="35.9810%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (593 samples, 0.39%)</title><rect x="35.4444%" y="821" width="0.3926%" height="15" fill="rgb(233,158,34)" fg:x="53543" fg:w="593"/><text x="35.6944%" y="831.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (18 samples, 0.01%)</title><rect x="35.8416%" y="805" width="0.0119%" height="15" fill="rgb(215,151,48)" fg:x="54143" fg:w="18"/><text x="36.0916%" y="815.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (22 samples, 0.01%)</title><rect x="35.8403%" y="821" width="0.0146%" height="15" fill="rgb(229,84,14)" fg:x="54141" fg:w="22"/><text x="36.0903%" y="831.50"></text></g><g><title>PhaseIdealLoop::do_split_if (66 samples, 0.04%)</title><rect x="36.0554%" y="805" width="0.0437%" height="15" fill="rgb(229,68,14)" fg:x="54466" fg:w="66"/><text x="36.3054%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (31 samples, 0.02%)</title><rect x="36.1659%" y="789" width="0.0205%" height="15" fill="rgb(243,106,26)" fg:x="54633" fg:w="31"/><text x="36.4159%" y="799.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (17 samples, 0.01%)</title><rect x="36.2043%" y="789" width="0.0113%" height="15" fill="rgb(206,45,38)" fg:x="54691" fg:w="17"/><text x="36.4543%" y="799.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (201 samples, 0.13%)</title><rect x="36.1004%" y="805" width="0.1331%" height="15" fill="rgb(226,6,15)" fg:x="54534" fg:w="201"/><text x="36.3504%" y="815.50"></text></g><g><title>ConstraintCastNode::dominating_cast (33 samples, 0.02%)</title><rect x="36.2871%" y="789" width="0.0218%" height="15" fill="rgb(232,22,54)" fg:x="54816" fg:w="33"/><text x="36.5371%" y="799.50"></text></g><g><title>PhaseIdealLoop::conditional_move (17 samples, 0.01%)</title><rect x="36.3103%" y="789" width="0.0113%" height="15" fill="rgb(229,222,32)" fg:x="54851" fg:w="17"/><text x="36.5603%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (34 samples, 0.02%)</title><rect x="36.3255%" y="789" width="0.0225%" height="15" fill="rgb(228,62,29)" fg:x="54874" fg:w="34"/><text x="36.5755%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (17 samples, 0.01%)</title><rect x="36.3718%" y="773" width="0.0113%" height="15" fill="rgb(251,103,34)" fg:x="54944" fg:w="17"/><text x="36.6218%" y="783.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (54 samples, 0.04%)</title><rect x="36.3480%" y="789" width="0.0357%" height="15" fill="rgb(233,12,30)" fg:x="54908" fg:w="54"/><text x="36.5980%" y="799.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (118 samples, 0.08%)</title><rect x="36.3851%" y="789" width="0.0781%" height="15" fill="rgb(238,52,0)" fg:x="54964" fg:w="118"/><text x="36.6351%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (38 samples, 0.03%)</title><rect x="36.4380%" y="773" width="0.0252%" height="15" fill="rgb(223,98,5)" fg:x="55044" fg:w="38"/><text x="36.6880%" y="783.50"></text></g><g><title>NodeHash::hash_find (19 samples, 0.01%)</title><rect x="36.4996%" y="773" width="0.0126%" height="15" fill="rgb(228,75,37)" fg:x="55137" fg:w="19"/><text x="36.7496%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (52 samples, 0.03%)</title><rect x="36.5181%" y="773" width="0.0344%" height="15" fill="rgb(205,115,49)" fg:x="55165" fg:w="52"/><text x="36.7681%" y="783.50"></text></g><g><title>Unique_Node_List::remove (24 samples, 0.02%)</title><rect x="36.5367%" y="757" width="0.0159%" height="15" fill="rgb(250,154,43)" fg:x="55193" fg:w="24"/><text x="36.7867%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (154 samples, 0.10%)</title><rect x="36.4632%" y="789" width="0.1019%" height="15" fill="rgb(226,43,29)" fg:x="55082" fg:w="154"/><text x="36.7132%" y="799.50"></text></g><g><title>PhaseIdealLoop::try_move_store_before_loop (16 samples, 0.01%)</title><rect x="36.5651%" y="789" width="0.0106%" height="15" fill="rgb(249,228,39)" fg:x="55236" fg:w="16"/><text x="36.8151%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (16 samples, 0.01%)</title><rect x="36.5790%" y="789" width="0.0106%" height="15" fill="rgb(216,79,43)" fg:x="55257" fg:w="16"/><text x="36.8290%" y="799.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (539 samples, 0.36%)</title><rect x="36.2335%" y="805" width="0.3568%" height="15" fill="rgb(228,95,12)" fg:x="54735" fg:w="539"/><text x="36.4835%" y="815.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,102 samples, 0.73%)</title><rect x="35.8634%" y="821" width="0.7295%" height="15" fill="rgb(249,221,15)" fg:x="54176" fg:w="1102"/><text x="36.1134%" y="831.50"></text></g><g><title>CallNode::Ideal (31 samples, 0.02%)</title><rect x="36.6969%" y="789" width="0.0205%" height="15" fill="rgb(233,34,13)" fg:x="55435" fg:w="31"/><text x="36.9469%" y="799.50"></text></g><g><title>Node::remove_dead_region (31 samples, 0.02%)</title><rect x="36.6969%" y="773" width="0.0205%" height="15" fill="rgb(214,103,39)" fg:x="55435" fg:w="31"/><text x="36.9469%" y="783.50"></text></g><g><title>CastIINode::Value (24 samples, 0.02%)</title><rect x="36.7180%" y="789" width="0.0159%" height="15" fill="rgb(251,126,39)" fg:x="55467" fg:w="24"/><text x="36.9680%" y="799.50"></text></g><g><title>TypeInt::filter_helper (17 samples, 0.01%)</title><rect x="36.7227%" y="773" width="0.0113%" height="15" fill="rgb(214,216,36)" fg:x="55474" fg:w="17"/><text x="36.9727%" y="783.50"></text></g><g><title>IfNode::Ideal (23 samples, 0.02%)</title><rect x="36.7697%" y="789" width="0.0152%" height="15" fill="rgb(220,221,8)" fg:x="55545" fg:w="23"/><text x="37.0197%" y="799.50"></text></g><g><title>MemNode::Ideal_common (23 samples, 0.02%)</title><rect x="36.8014%" y="773" width="0.0152%" height="15" fill="rgb(240,216,3)" fg:x="55593" fg:w="23"/><text x="37.0514%" y="783.50"></text></g><g><title>MemNode::all_controls_dominate (16 samples, 0.01%)</title><rect x="36.8200%" y="757" width="0.0106%" height="15" fill="rgb(232,218,17)" fg:x="55621" fg:w="16"/><text x="37.0700%" y="767.50"></text></g><g><title>MemNode::find_previous_store (23 samples, 0.02%)</title><rect x="36.8187%" y="773" width="0.0152%" height="15" fill="rgb(229,163,45)" fg:x="55619" fg:w="23"/><text x="37.0687%" y="783.50"></text></g><g><title>LoadNode::Ideal (66 samples, 0.04%)</title><rect x="36.7909%" y="789" width="0.0437%" height="15" fill="rgb(231,110,42)" fg:x="55577" fg:w="66"/><text x="37.0409%" y="799.50"></text></g><g><title>NodeHash::grow (22 samples, 0.01%)</title><rect x="36.9007%" y="773" width="0.0146%" height="15" fill="rgb(208,170,48)" fg:x="55743" fg:w="22"/><text x="37.1507%" y="783.50"></text></g><g><title>NodeHash::hash_find_insert (93 samples, 0.06%)</title><rect x="36.8577%" y="789" width="0.0616%" height="15" fill="rgb(239,116,25)" fg:x="55678" fg:w="93"/><text x="37.1077%" y="799.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (41 samples, 0.03%)</title><rect x="36.9199%" y="789" width="0.0271%" height="15" fill="rgb(219,200,50)" fg:x="55772" fg:w="41"/><text x="37.1699%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (30 samples, 0.02%)</title><rect x="36.9650%" y="773" width="0.0199%" height="15" fill="rgb(245,200,0)" fg:x="55840" fg:w="30"/><text x="37.2150%" y="783.50"></text></g><g><title>PhaseIterGVN::subsume_node (63 samples, 0.04%)</title><rect x="36.9477%" y="789" width="0.0417%" height="15" fill="rgb(245,119,33)" fg:x="55814" fg:w="63"/><text x="37.1977%" y="799.50"></text></g><g><title>PhiNode::Ideal (21 samples, 0.01%)</title><rect x="36.9928%" y="789" width="0.0139%" height="15" fill="rgb(231,125,12)" fg:x="55882" fg:w="21"/><text x="37.2428%" y="799.50"></text></g><g><title>PhiNode::Value (28 samples, 0.02%)</title><rect x="37.0093%" y="789" width="0.0185%" height="15" fill="rgb(216,96,41)" fg:x="55907" fg:w="28"/><text x="37.2593%" y="799.50"></text></g><g><title>RegionNode::is_unreachable_region (97 samples, 0.06%)</title><rect x="37.0861%" y="773" width="0.0642%" height="15" fill="rgb(248,43,45)" fg:x="56023" fg:w="97"/><text x="37.3361%" y="783.50"></text></g><g><title>RegionNode::Ideal (168 samples, 0.11%)</title><rect x="37.0411%" y="789" width="0.1112%" height="15" fill="rgb(217,222,7)" fg:x="55955" fg:w="168"/><text x="37.2911%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (16 samples, 0.01%)</title><rect x="37.1583%" y="549" width="0.0106%" height="15" fill="rgb(233,28,6)" fg:x="56132" fg:w="16"/><text x="37.4083%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (18 samples, 0.01%)</title><rect x="37.1583%" y="565" width="0.0119%" height="15" fill="rgb(231,218,15)" fg:x="56132" fg:w="18"/><text x="37.4083%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (22 samples, 0.01%)</title><rect x="37.1583%" y="581" width="0.0146%" height="15" fill="rgb(226,171,48)" fg:x="56132" fg:w="22"/><text x="37.4083%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="37.1583%" y="597" width="0.0159%" height="15" fill="rgb(235,201,9)" fg:x="56132" fg:w="24"/><text x="37.4083%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (28 samples, 0.02%)</title><rect x="37.1583%" y="613" width="0.0185%" height="15" fill="rgb(217,80,15)" fg:x="56132" fg:w="28"/><text x="37.4083%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (32 samples, 0.02%)</title><rect x="37.1583%" y="629" width="0.0212%" height="15" fill="rgb(219,152,8)" fg:x="56132" fg:w="32"/><text x="37.4083%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (33 samples, 0.02%)</title><rect x="37.1583%" y="645" width="0.0218%" height="15" fill="rgb(243,107,38)" fg:x="56132" fg:w="33"/><text x="37.4083%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (34 samples, 0.02%)</title><rect x="37.1583%" y="661" width="0.0225%" height="15" fill="rgb(231,17,5)" fg:x="56132" fg:w="34"/><text x="37.4083%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (36 samples, 0.02%)</title><rect x="37.1583%" y="677" width="0.0238%" height="15" fill="rgb(209,25,54)" fg:x="56132" fg:w="36"/><text x="37.4083%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.02%)</title><rect x="37.1583%" y="709" width="0.0245%" height="15" fill="rgb(219,0,2)" fg:x="56132" fg:w="37"/><text x="37.4083%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.02%)</title><rect x="37.1583%" y="693" width="0.0245%" height="15" fill="rgb(246,9,5)" fg:x="56132" fg:w="37"/><text x="37.4083%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (42 samples, 0.03%)</title><rect x="37.1583%" y="725" width="0.0278%" height="15" fill="rgb(226,159,4)" fg:x="56132" fg:w="42"/><text x="37.4083%" y="735.50"></text></g><g><title>InitializeNode::can_capture_store (47 samples, 0.03%)</title><rect x="37.1576%" y="773" width="0.0311%" height="15" fill="rgb(219,175,34)" fg:x="56131" fg:w="47"/><text x="37.4076%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (47 samples, 0.03%)</title><rect x="37.1576%" y="757" width="0.0311%" height="15" fill="rgb(236,10,46)" fg:x="56131" fg:w="47"/><text x="37.4076%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (46 samples, 0.03%)</title><rect x="37.1583%" y="741" width="0.0305%" height="15" fill="rgb(240,211,16)" fg:x="56132" fg:w="46"/><text x="37.4083%" y="751.50"></text></g><g><title>StoreNode::Ideal (56 samples, 0.04%)</title><rect x="37.1576%" y="789" width="0.0371%" height="15" fill="rgb(205,3,43)" fg:x="56131" fg:w="56"/><text x="37.4076%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (903 samples, 0.60%)</title><rect x="36.6134%" y="805" width="0.5978%" height="15" fill="rgb(245,7,22)" fg:x="55309" fg:w="903"/><text x="36.8634%" y="815.50"></text></g><g><title>PhaseIterGVN::optimize (941 samples, 0.62%)</title><rect x="36.5936%" y="821" width="0.6229%" height="15" fill="rgb(239,132,32)" fg:x="55279" fg:w="941"/><text x="36.8436%" y="831.50"></text></g><g><title>SuperWord::find_adjacent_refs (16 samples, 0.01%)</title><rect x="37.2377%" y="789" width="0.0106%" height="15" fill="rgb(228,202,34)" fg:x="56252" fg:w="16"/><text x="37.4877%" y="799.50"></text></g><g><title>SuperWord::SLP_extract (24 samples, 0.02%)</title><rect x="37.2350%" y="805" width="0.0159%" height="15" fill="rgb(254,200,22)" fg:x="56248" fg:w="24"/><text x="37.4850%" y="815.50"></text></g><g><title>SuperWord::transform_loop (25 samples, 0.02%)</title><rect x="37.2350%" y="821" width="0.0165%" height="15" fill="rgb(219,10,39)" fg:x="56248" fg:w="25"/><text x="37.4850%" y="831.50"></text></g><g><title>[libc-2.31.so] (19 samples, 0.01%)</title><rect x="37.2523%" y="821" width="0.0126%" height="15" fill="rgb(226,210,39)" fg:x="56274" fg:w="19"/><text x="37.5023%" y="831.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (10,924 samples, 7.23%)</title><rect x="30.0353%" y="837" width="7.2315%" height="15" fill="rgb(208,219,16)" fg:x="45372" fg:w="10924"/><text x="30.2853%" y="847.50">PhaseIdeal..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (89 samples, 0.06%)</title><rect x="37.2668%" y="837" width="0.0589%" height="15" fill="rgb(216,158,51)" fg:x="56296" fg:w="89"/><text x="37.5168%" y="847.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (40 samples, 0.03%)</title><rect x="37.2993%" y="821" width="0.0265%" height="15" fill="rgb(233,14,44)" fg:x="56345" fg:w="40"/><text x="37.5493%" y="831.50"></text></g><g><title>IfNode::search_identical (20 samples, 0.01%)</title><rect x="37.5190%" y="789" width="0.0132%" height="15" fill="rgb(237,97,39)" fg:x="56677" fg:w="20"/><text x="37.7690%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (58 samples, 0.04%)</title><rect x="37.5568%" y="773" width="0.0384%" height="15" fill="rgb(218,198,43)" fg:x="56734" fg:w="58"/><text x="37.8068%" y="783.50"></text></g><g><title>Unique_Node_List::remove (52 samples, 0.03%)</title><rect x="37.5607%" y="757" width="0.0344%" height="15" fill="rgb(231,104,20)" fg:x="56740" fg:w="52"/><text x="37.8107%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (71 samples, 0.05%)</title><rect x="37.5495%" y="789" width="0.0470%" height="15" fill="rgb(254,36,13)" fg:x="56723" fg:w="71"/><text x="37.7995%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (19 samples, 0.01%)</title><rect x="37.6091%" y="773" width="0.0126%" height="15" fill="rgb(248,14,50)" fg:x="56813" fg:w="19"/><text x="37.8591%" y="783.50"></text></g><g><title>IfNode::Ideal (184 samples, 0.12%)</title><rect x="37.5031%" y="805" width="0.1218%" height="15" fill="rgb(217,107,29)" fg:x="56653" fg:w="184"/><text x="37.7531%" y="815.50"></text></g><g><title>split_if (39 samples, 0.03%)</title><rect x="37.5991%" y="789" width="0.0258%" height="15" fill="rgb(251,169,33)" fg:x="56798" fg:w="39"/><text x="37.8491%" y="799.50"></text></g><g><title>MemNode::adr_type (21 samples, 0.01%)</title><rect x="37.6607%" y="773" width="0.0139%" height="15" fill="rgb(217,108,32)" fg:x="56891" fg:w="21"/><text x="37.9107%" y="783.50"></text></g><g><title>MemNode::Ideal_common (41 samples, 0.03%)</title><rect x="37.6534%" y="789" width="0.0271%" height="15" fill="rgb(219,66,42)" fg:x="56880" fg:w="41"/><text x="37.9034%" y="799.50"></text></g><g><title>MemNode::all_controls_dominate (22 samples, 0.01%)</title><rect x="37.6865%" y="773" width="0.0146%" height="15" fill="rgb(206,180,7)" fg:x="56930" fg:w="22"/><text x="37.9365%" y="783.50"></text></g><g><title>Node::dominates (21 samples, 0.01%)</title><rect x="37.6872%" y="757" width="0.0139%" height="15" fill="rgb(208,226,31)" fg:x="56931" fg:w="21"/><text x="37.9372%" y="767.50"></text></g><g><title>MemNode::find_previous_store (42 samples, 0.03%)</title><rect x="37.6819%" y="789" width="0.0278%" height="15" fill="rgb(218,26,49)" fg:x="56923" fg:w="42"/><text x="37.9319%" y="799.50"></text></g><g><title>LoadNode::Ideal (104 samples, 0.07%)</title><rect x="37.6428%" y="805" width="0.0688%" height="15" fill="rgb(233,197,48)" fg:x="56864" fg:w="104"/><text x="37.8928%" y="815.50"></text></g><g><title>LoadNode::Identity (19 samples, 0.01%)</title><rect x="37.7117%" y="805" width="0.0126%" height="15" fill="rgb(252,181,51)" fg:x="56968" fg:w="19"/><text x="37.9617%" y="815.50"></text></g><g><title>MergeMemNode::Ideal (23 samples, 0.02%)</title><rect x="37.7415%" y="805" width="0.0152%" height="15" fill="rgb(253,90,19)" fg:x="57013" fg:w="23"/><text x="37.9915%" y="815.50"></text></g><g><title>NodeHash::grow (24 samples, 0.02%)</title><rect x="37.8116%" y="789" width="0.0159%" height="15" fill="rgb(215,171,30)" fg:x="57119" fg:w="24"/><text x="38.0616%" y="799.50"></text></g><g><title>NodeHash::hash_find_insert (103 samples, 0.07%)</title><rect x="37.7626%" y="805" width="0.0682%" height="15" fill="rgb(214,222,9)" fg:x="57045" fg:w="103"/><text x="38.0126%" y="815.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (36 samples, 0.02%)</title><rect x="37.8308%" y="805" width="0.0238%" height="15" fill="rgb(223,3,22)" fg:x="57148" fg:w="36"/><text x="38.0808%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (50 samples, 0.03%)</title><rect x="37.8931%" y="789" width="0.0331%" height="15" fill="rgb(225,196,46)" fg:x="57242" fg:w="50"/><text x="38.1431%" y="799.50"></text></g><g><title>Unique_Node_List::remove (21 samples, 0.01%)</title><rect x="37.9122%" y="773" width="0.0139%" height="15" fill="rgb(209,110,37)" fg:x="57271" fg:w="21"/><text x="38.1622%" y="783.50"></text></g><g><title>PhaseIterGVN::subsume_node (118 samples, 0.08%)</title><rect x="37.8553%" y="805" width="0.0781%" height="15" fill="rgb(249,89,12)" fg:x="57185" fg:w="118"/><text x="38.1053%" y="815.50"></text></g><g><title>PhiNode::Ideal (91 samples, 0.06%)</title><rect x="37.9348%" y="805" width="0.0602%" height="15" fill="rgb(226,27,33)" fg:x="57305" fg:w="91"/><text x="38.1848%" y="815.50"></text></g><g><title>PhiNode::Value (27 samples, 0.02%)</title><rect x="37.9996%" y="805" width="0.0179%" height="15" fill="rgb(213,82,22)" fg:x="57403" fg:w="27"/><text x="38.2496%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (75 samples, 0.05%)</title><rect x="38.0897%" y="773" width="0.0496%" height="15" fill="rgb(248,140,0)" fg:x="57539" fg:w="75"/><text x="38.3397%" y="783.50"></text></g><g><title>Unique_Node_List::remove (60 samples, 0.04%)</title><rect x="38.0996%" y="757" width="0.0397%" height="15" fill="rgb(228,106,3)" fg:x="57554" fg:w="60"/><text x="38.3496%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (93 samples, 0.06%)</title><rect x="38.0817%" y="789" width="0.0616%" height="15" fill="rgb(209,23,37)" fg:x="57527" fg:w="93"/><text x="38.3317%" y="799.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (21 samples, 0.01%)</title><rect x="38.1433%" y="789" width="0.0139%" height="15" fill="rgb(241,93,50)" fg:x="57620" fg:w="21"/><text x="38.3933%" y="799.50"></text></g><g><title>RegionNode::is_unreachable_region (62 samples, 0.04%)</title><rect x="38.1578%" y="789" width="0.0410%" height="15" fill="rgb(253,46,43)" fg:x="57642" fg:w="62"/><text x="38.4078%" y="799.50"></text></g><g><title>RegionNode::Ideal (247 samples, 0.16%)</title><rect x="38.0374%" y="805" width="0.1635%" height="15" fill="rgb(226,206,43)" fg:x="57460" fg:w="247"/><text x="38.2874%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (16 samples, 0.01%)</title><rect x="38.2082%" y="469" width="0.0106%" height="15" fill="rgb(217,54,7)" fg:x="57718" fg:w="16"/><text x="38.4582%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.02%)</title><rect x="38.2082%" y="485" width="0.0159%" height="15" fill="rgb(223,5,52)" fg:x="57718" fg:w="24"/><text x="38.4582%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.02%)</title><rect x="38.2082%" y="501" width="0.0245%" height="15" fill="rgb(206,52,46)" fg:x="57718" fg:w="37"/><text x="38.4582%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (47 samples, 0.03%)</title><rect x="38.2082%" y="517" width="0.0311%" height="15" fill="rgb(253,136,11)" fg:x="57718" fg:w="47"/><text x="38.4582%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.03%)</title><rect x="38.2082%" y="533" width="0.0344%" height="15" fill="rgb(208,106,33)" fg:x="57718" fg:w="52"/><text x="38.4582%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (62 samples, 0.04%)</title><rect x="38.2082%" y="549" width="0.0410%" height="15" fill="rgb(206,54,4)" fg:x="57718" fg:w="62"/><text x="38.4582%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (71 samples, 0.05%)</title><rect x="38.2082%" y="565" width="0.0470%" height="15" fill="rgb(213,3,15)" fg:x="57718" fg:w="71"/><text x="38.4582%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (84 samples, 0.06%)</title><rect x="38.2082%" y="581" width="0.0556%" height="15" fill="rgb(252,211,39)" fg:x="57718" fg:w="84"/><text x="38.4582%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (90 samples, 0.06%)</title><rect x="38.2082%" y="597" width="0.0596%" height="15" fill="rgb(223,6,36)" fg:x="57718" fg:w="90"/><text x="38.4582%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (98 samples, 0.06%)</title><rect x="38.2082%" y="613" width="0.0649%" height="15" fill="rgb(252,169,45)" fg:x="57718" fg:w="98"/><text x="38.4582%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (111 samples, 0.07%)</title><rect x="38.2082%" y="629" width="0.0735%" height="15" fill="rgb(212,48,26)" fg:x="57718" fg:w="111"/><text x="38.4582%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (124 samples, 0.08%)</title><rect x="38.2082%" y="645" width="0.0821%" height="15" fill="rgb(251,102,48)" fg:x="57718" fg:w="124"/><text x="38.4582%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (130 samples, 0.09%)</title><rect x="38.2082%" y="661" width="0.0861%" height="15" fill="rgb(243,208,16)" fg:x="57718" fg:w="130"/><text x="38.4582%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (139 samples, 0.09%)</title><rect x="38.2082%" y="677" width="0.0920%" height="15" fill="rgb(219,96,24)" fg:x="57718" fg:w="139"/><text x="38.4582%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (148 samples, 0.10%)</title><rect x="38.2082%" y="693" width="0.0980%" height="15" fill="rgb(219,33,29)" fg:x="57718" fg:w="148"/><text x="38.4582%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (160 samples, 0.11%)</title><rect x="38.2082%" y="709" width="0.1059%" height="15" fill="rgb(223,176,5)" fg:x="57718" fg:w="160"/><text x="38.4582%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (170 samples, 0.11%)</title><rect x="38.2082%" y="725" width="0.1125%" height="15" fill="rgb(228,140,14)" fg:x="57718" fg:w="170"/><text x="38.4582%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (188 samples, 0.12%)</title><rect x="38.2082%" y="741" width="0.1245%" height="15" fill="rgb(217,179,31)" fg:x="57718" fg:w="188"/><text x="38.4582%" y="751.50"></text></g><g><title>MemNode::all_controls_dominate (18 samples, 0.01%)</title><rect x="38.3207%" y="725" width="0.0119%" height="15" fill="rgb(230,9,30)" fg:x="57888" fg:w="18"/><text x="38.5707%" y="735.50"></text></g><g><title>Node::dominates (17 samples, 0.01%)</title><rect x="38.3214%" y="709" width="0.0113%" height="15" fill="rgb(230,136,20)" fg:x="57889" fg:w="17"/><text x="38.5714%" y="719.50"></text></g><g><title>MemNode::all_controls_dominate (20 samples, 0.01%)</title><rect x="38.3326%" y="741" width="0.0132%" height="15" fill="rgb(215,210,22)" fg:x="57906" fg:w="20"/><text x="38.5826%" y="751.50"></text></g><g><title>Node::dominates (20 samples, 0.01%)</title><rect x="38.3326%" y="725" width="0.0132%" height="15" fill="rgb(218,43,5)" fg:x="57906" fg:w="20"/><text x="38.5826%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (209 samples, 0.14%)</title><rect x="38.2082%" y="757" width="0.1384%" height="15" fill="rgb(216,11,5)" fg:x="57718" fg:w="209"/><text x="38.4582%" y="767.50"></text></g><g><title>InitializeNode::can_capture_store (210 samples, 0.14%)</title><rect x="38.2082%" y="789" width="0.1390%" height="15" fill="rgb(209,82,29)" fg:x="57718" fg:w="210"/><text x="38.4582%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (210 samples, 0.14%)</title><rect x="38.2082%" y="773" width="0.1390%" height="15" fill="rgb(244,115,12)" fg:x="57718" fg:w="210"/><text x="38.4582%" y="783.50"></text></g><g><title>StoreNode::Ideal (230 samples, 0.15%)</title><rect x="38.2068%" y="805" width="0.1523%" height="15" fill="rgb(222,82,18)" fg:x="57716" fg:w="230"/><text x="38.4568%" y="815.50"></text></g><g><title>MemNode::Ideal_common (18 samples, 0.01%)</title><rect x="38.3472%" y="789" width="0.0119%" height="15" fill="rgb(249,227,8)" fg:x="57928" fg:w="18"/><text x="38.5972%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (1,539 samples, 1.02%)</title><rect x="37.3608%" y="821" width="1.0188%" height="15" fill="rgb(253,141,45)" fg:x="56438" fg:w="1539"/><text x="37.6108%" y="831.50"></text></g><g><title>PhaseIterGVN::optimize (1,600 samples, 1.06%)</title><rect x="37.3257%" y="837" width="1.0592%" height="15" fill="rgb(234,184,4)" fg:x="56385" fg:w="1600"/><text x="37.5757%" y="847.50"></text></g><g><title>PhaseIterGVN::transform_old (162 samples, 0.11%)</title><rect x="38.3988%" y="805" width="0.1072%" height="15" fill="rgb(218,194,23)" fg:x="58006" fg:w="162"/><text x="38.6488%" y="815.50"></text></g><g><title>PhaseIterGVN::optimize (169 samples, 0.11%)</title><rect x="38.3955%" y="821" width="0.1119%" height="15" fill="rgb(235,66,41)" fg:x="58001" fg:w="169"/><text x="38.6455%" y="831.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (59 samples, 0.04%)</title><rect x="38.5113%" y="821" width="0.0391%" height="15" fill="rgb(245,217,1)" fg:x="58176" fg:w="59"/><text x="38.7613%" y="831.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (269 samples, 0.18%)</title><rect x="38.3915%" y="837" width="0.1781%" height="15" fill="rgb(229,91,1)" fg:x="57995" fg:w="269"/><text x="38.6415%" y="847.50"></text></g><g><title>Compile::identify_useful_nodes (47 samples, 0.03%)</title><rect x="38.5815%" y="805" width="0.0311%" height="15" fill="rgb(207,101,30)" fg:x="58282" fg:w="47"/><text x="38.8315%" y="815.50"></text></g><g><title>Compile::remove_useless_nodes (34 samples, 0.02%)</title><rect x="38.6126%" y="805" width="0.0225%" height="15" fill="rgb(223,82,49)" fg:x="58329" fg:w="34"/><text x="38.8626%" y="815.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (108 samples, 0.07%)</title><rect x="38.5696%" y="837" width="0.0715%" height="15" fill="rgb(218,167,17)" fg:x="58264" fg:w="108"/><text x="38.8196%" y="847.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (100 samples, 0.07%)</title><rect x="38.5749%" y="821" width="0.0662%" height="15" fill="rgb(208,103,14)" fg:x="58272" fg:w="100"/><text x="38.8249%" y="831.50"></text></g><g><title>Compile::Optimize (14,371 samples, 9.51%)</title><rect x="29.1284%" y="853" width="9.5133%" height="15" fill="rgb(238,20,8)" fg:x="44002" fg:w="14371"/><text x="29.3784%" y="863.50">Compile::Optim..</text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="38.6709%" y="709" width="0.0212%" height="15" fill="rgb(218,80,54)" fg:x="58417" fg:w="32"/><text x="38.9209%" y="719.50"></text></g><g><title>Parse::do_field_access (23 samples, 0.02%)</title><rect x="38.6934%" y="709" width="0.0152%" height="15" fill="rgb(240,144,17)" fg:x="58451" fg:w="23"/><text x="38.9434%" y="719.50"></text></g><g><title>Parse::do_if (20 samples, 0.01%)</title><rect x="38.7086%" y="709" width="0.0132%" height="15" fill="rgb(245,27,50)" fg:x="58474" fg:w="20"/><text x="38.9586%" y="719.50"></text></g><g><title>Parse::do_one_block (117 samples, 0.08%)</title><rect x="38.6537%" y="741" width="0.0775%" height="15" fill="rgb(251,51,7)" fg:x="58391" fg:w="117"/><text x="38.9037%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.07%)</title><rect x="38.6590%" y="725" width="0.0722%" height="15" fill="rgb(245,217,29)" fg:x="58399" fg:w="109"/><text x="38.9090%" y="735.50"></text></g><g><title>Parse::do_all_blocks (123 samples, 0.08%)</title><rect x="38.6517%" y="757" width="0.0814%" height="15" fill="rgb(221,176,29)" fg:x="58388" fg:w="123"/><text x="38.9017%" y="767.50"></text></g><g><title>ParseGenerator::generate (127 samples, 0.08%)</title><rect x="38.6517%" y="789" width="0.0841%" height="15" fill="rgb(212,180,24)" fg:x="58388" fg:w="127"/><text x="38.9017%" y="799.50"></text></g><g><title>Parse::Parse (127 samples, 0.08%)</title><rect x="38.6517%" y="773" width="0.0841%" height="15" fill="rgb(254,24,2)" fg:x="58388" fg:w="127"/><text x="38.9017%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (149 samples, 0.10%)</title><rect x="38.6424%" y="853" width="0.0986%" height="15" fill="rgb(230,100,2)" fg:x="58374" fg:w="149"/><text x="38.8924%" y="863.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (149 samples, 0.10%)</title><rect x="38.6424%" y="837" width="0.0986%" height="15" fill="rgb(219,142,25)" fg:x="58374" fg:w="149"/><text x="38.8924%" y="847.50"></text></g><g><title>C2Compiler::compile_method (149 samples, 0.10%)</title><rect x="38.6424%" y="821" width="0.0986%" height="15" fill="rgb(240,73,43)" fg:x="58374" fg:w="149"/><text x="38.8924%" y="831.50"></text></g><g><title>Compile::Compile (149 samples, 0.10%)</title><rect x="38.6424%" y="805" width="0.0986%" height="15" fill="rgb(214,114,15)" fg:x="58374" fg:w="149"/><text x="38.8924%" y="815.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (20 samples, 0.01%)</title><rect x="38.7410%" y="677" width="0.0132%" height="15" fill="rgb(207,130,4)" fg:x="58523" fg:w="20"/><text x="38.9910%" y="687.50"></text></g><g><title>ciBytecodeStream::get_field (20 samples, 0.01%)</title><rect x="38.7410%" y="661" width="0.0132%" height="15" fill="rgb(221,25,40)" fg:x="58523" fg:w="20"/><text x="38.9910%" y="671.50"></text></g><g><title>ciObjectFactory::get_metadata (23 samples, 0.02%)</title><rect x="38.7589%" y="629" width="0.0152%" height="15" fill="rgb(241,184,7)" fg:x="58550" fg:w="23"/><text x="39.0089%" y="639.50"></text></g><g><title>ciObjectFactory::create_new_metadata (20 samples, 0.01%)</title><rect x="38.7609%" y="613" width="0.0132%" height="15" fill="rgb(235,159,4)" fg:x="58553" fg:w="20"/><text x="39.0109%" y="623.50"></text></g><g><title>ciMethod::ciMethod (19 samples, 0.01%)</title><rect x="38.7616%" y="597" width="0.0126%" height="15" fill="rgb(214,87,48)" fg:x="58554" fg:w="19"/><text x="39.0116%" y="607.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (31 samples, 0.02%)</title><rect x="38.7543%" y="677" width="0.0205%" height="15" fill="rgb(246,198,24)" fg:x="58543" fg:w="31"/><text x="39.0043%" y="687.50"></text></g><g><title>ciBytecodeStream::get_method (31 samples, 0.02%)</title><rect x="38.7543%" y="661" width="0.0205%" height="15" fill="rgb(209,66,40)" fg:x="58543" fg:w="31"/><text x="39.0043%" y="671.50"></text></g><g><title>ciEnv::get_method_by_index_impl (30 samples, 0.02%)</title><rect x="38.7549%" y="645" width="0.0199%" height="15" fill="rgb(233,147,39)" fg:x="58544" fg:w="30"/><text x="39.0049%" y="655.50"></text></g><g><title>CallGenerator::for_inline (53 samples, 0.04%)</title><rect x="38.7410%" y="805" width="0.0351%" height="15" fill="rgb(231,145,52)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="815.50"></text></g><g><title>InlineTree::check_can_parse (53 samples, 0.04%)</title><rect x="38.7410%" y="789" width="0.0351%" height="15" fill="rgb(206,20,26)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="799.50"></text></g><g><title>ciMethod::get_flow_analysis (53 samples, 0.04%)</title><rect x="38.7410%" y="773" width="0.0351%" height="15" fill="rgb(238,220,4)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="783.50"></text></g><g><title>ciTypeFlow::do_flow (53 samples, 0.04%)</title><rect x="38.7410%" y="757" width="0.0351%" height="15" fill="rgb(252,195,42)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="767.50"></text></g><g><title>ciTypeFlow::flow_types (53 samples, 0.04%)</title><rect x="38.7410%" y="741" width="0.0351%" height="15" fill="rgb(209,10,6)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="751.50"></text></g><g><title>ciTypeFlow::df_flow_types (53 samples, 0.04%)</title><rect x="38.7410%" y="725" width="0.0351%" height="15" fill="rgb(229,3,52)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="735.50"></text></g><g><title>ciTypeFlow::flow_block (53 samples, 0.04%)</title><rect x="38.7410%" y="709" width="0.0351%" height="15" fill="rgb(253,49,37)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="719.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (53 samples, 0.04%)</title><rect x="38.7410%" y="693" width="0.0351%" height="15" fill="rgb(240,103,49)" fg:x="58523" fg:w="53"/><text x="38.9910%" y="703.50"></text></g><g><title>Parse::array_load (17 samples, 0.01%)</title><rect x="38.7861%" y="725" width="0.0113%" height="15" fill="rgb(250,182,30)" fg:x="58591" fg:w="17"/><text x="39.0361%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (18 samples, 0.01%)</title><rect x="38.8251%" y="661" width="0.0119%" height="15" fill="rgb(248,8,30)" fg:x="58650" fg:w="18"/><text x="39.0751%" y="671.50"></text></g><g><title>ciTypeFlow::flow_types (17 samples, 0.01%)</title><rect x="38.8258%" y="645" width="0.0113%" height="15" fill="rgb(237,120,30)" fg:x="58651" fg:w="17"/><text x="39.0758%" y="655.50"></text></g><g><title>InlineTree::ok_to_inline (45 samples, 0.03%)</title><rect x="38.8079%" y="693" width="0.0298%" height="15" fill="rgb(221,146,34)" fg:x="58624" fg:w="45"/><text x="39.0579%" y="703.50"></text></g><g><title>ciMethod::get_flow_analysis (23 samples, 0.02%)</title><rect x="38.8225%" y="677" width="0.0152%" height="15" fill="rgb(242,55,13)" fg:x="58646" fg:w="23"/><text x="39.0725%" y="687.50"></text></g><g><title>Compile::call_generator (53 samples, 0.04%)</title><rect x="38.8039%" y="709" width="0.0351%" height="15" fill="rgb(242,112,31)" fg:x="58618" fg:w="53"/><text x="39.0539%" y="719.50"></text></g><g><title>LibraryIntrinsic::generate (16 samples, 0.01%)</title><rect x="38.8662%" y="709" width="0.0106%" height="15" fill="rgb(249,192,27)" fg:x="58712" fg:w="16"/><text x="39.1162%" y="719.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.07%)</title><rect x="38.8966%" y="661" width="0.0682%" height="15" fill="rgb(208,204,44)" fg:x="58758" fg:w="103"/><text x="39.1466%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.06%)</title><rect x="38.9032%" y="645" width="0.0616%" height="15" fill="rgb(208,93,54)" fg:x="58768" fg:w="93"/><text x="39.1532%" y="655.50"></text></g><g><title>Parse::do_all_blocks (114 samples, 0.08%)</title><rect x="38.8940%" y="677" width="0.0755%" height="15" fill="rgb(242,1,31)" fg:x="58754" fg:w="114"/><text x="39.1440%" y="687.50"></text></g><g><title>Parse::do_exits (16 samples, 0.01%)</title><rect x="38.9694%" y="677" width="0.0106%" height="15" fill="rgb(241,83,25)" fg:x="58868" fg:w="16"/><text x="39.2194%" y="687.50"></text></g><g><title>ParseGenerator::generate (171 samples, 0.11%)</title><rect x="38.8768%" y="709" width="0.1132%" height="15" fill="rgb(205,169,50)" fg:x="58728" fg:w="171"/><text x="39.1268%" y="719.50"></text></g><g><title>Parse::Parse (170 samples, 0.11%)</title><rect x="38.8774%" y="693" width="0.1125%" height="15" fill="rgb(239,186,37)" fg:x="58729" fg:w="170"/><text x="39.1274%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (42 samples, 0.03%)</title><rect x="38.9900%" y="709" width="0.0278%" height="15" fill="rgb(205,221,10)" fg:x="58899" fg:w="42"/><text x="39.2400%" y="719.50"></text></g><g><title>Parse::do_call (335 samples, 0.22%)</title><rect x="38.8039%" y="725" width="0.2218%" height="15" fill="rgb(218,196,15)" fg:x="58618" fg:w="335"/><text x="39.0539%" y="735.50"></text></g><g><title>GraphKit::access_store_at (17 samples, 0.01%)</title><rect x="39.0449%" y="693" width="0.0113%" height="15" fill="rgb(218,196,35)" fg:x="58982" fg:w="17"/><text x="39.2949%" y="703.50"></text></g><g><title>BarrierSetC2::store_at (17 samples, 0.01%)</title><rect x="39.0449%" y="677" width="0.0113%" height="15" fill="rgb(233,63,24)" fg:x="58982" fg:w="17"/><text x="39.2949%" y="687.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (16 samples, 0.01%)</title><rect x="39.0456%" y="661" width="0.0106%" height="15" fill="rgb(225,8,4)" fg:x="58983" fg:w="16"/><text x="39.2956%" y="671.50"></text></g><g><title>Parse::do_put_xxx (24 samples, 0.02%)</title><rect x="39.0422%" y="709" width="0.0159%" height="15" fill="rgb(234,105,35)" fg:x="58978" fg:w="24"/><text x="39.2922%" y="719.50"></text></g><g><title>Parse::do_field_access (46 samples, 0.03%)</title><rect x="39.0290%" y="725" width="0.0305%" height="15" fill="rgb(236,21,32)" fg:x="58958" fg:w="46"/><text x="39.2790%" y="735.50"></text></g><g><title>Parse::do_if (23 samples, 0.02%)</title><rect x="39.0595%" y="725" width="0.0152%" height="15" fill="rgb(228,109,6)" fg:x="59004" fg:w="23"/><text x="39.3095%" y="735.50"></text></g><g><title>Parse::do_all_blocks (465 samples, 0.31%)</title><rect x="38.7808%" y="773" width="0.3078%" height="15" fill="rgb(229,215,31)" fg:x="58583" fg:w="465"/><text x="39.0308%" y="783.50"></text></g><g><title>Parse::do_one_block (465 samples, 0.31%)</title><rect x="38.7808%" y="757" width="0.3078%" height="15" fill="rgb(221,52,54)" fg:x="58583" fg:w="465"/><text x="39.0308%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (459 samples, 0.30%)</title><rect x="38.7847%" y="741" width="0.3038%" height="15" fill="rgb(252,129,43)" fg:x="58589" fg:w="459"/><text x="39.0347%" y="751.50"></text></g><g><title>ParseGenerator::generate (475 samples, 0.31%)</title><rect x="38.7808%" y="805" width="0.3144%" height="15" fill="rgb(248,183,27)" fg:x="58583" fg:w="475"/><text x="39.0308%" y="815.50"></text></g><g><title>Parse::Parse (475 samples, 0.31%)</title><rect x="38.7808%" y="789" width="0.3144%" height="15" fill="rgb(250,0,22)" fg:x="58583" fg:w="475"/><text x="39.0308%" y="799.50"></text></g><g><title>CodeBuffer::relocate_code_to (16 samples, 0.01%)</title><rect x="39.0952%" y="741" width="0.0106%" height="15" fill="rgb(213,166,10)" fg:x="59058" fg:w="16"/><text x="39.3452%" y="751.50"></text></g><g><title>CodeBuffer::copy_code_to (20 samples, 0.01%)</title><rect x="39.0952%" y="757" width="0.0132%" height="15" fill="rgb(207,163,36)" fg:x="59058" fg:w="20"/><text x="39.3452%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (558 samples, 0.37%)</title><rect x="38.7410%" y="853" width="0.3694%" height="15" fill="rgb(208,122,22)" fg:x="58523" fg:w="558"/><text x="38.9910%" y="863.50"></text></g><g><title>C2Compiler::compile_method (558 samples, 0.37%)</title><rect x="38.7410%" y="837" width="0.3694%" height="15" fill="rgb(207,104,49)" fg:x="58523" fg:w="558"/><text x="38.9910%" y="847.50"></text></g><g><title>Compile::Compile (558 samples, 0.37%)</title><rect x="38.7410%" y="821" width="0.3694%" height="15" fill="rgb(248,211,50)" fg:x="58523" fg:w="558"/><text x="38.9910%" y="831.50"></text></g><g><title>ciEnv::register_method (23 samples, 0.02%)</title><rect x="39.0952%" y="805" width="0.0152%" height="15" fill="rgb(217,13,45)" fg:x="59058" fg:w="23"/><text x="39.3452%" y="815.50"></text></g><g><title>nmethod::new_nmethod (23 samples, 0.02%)</title><rect x="39.0952%" y="789" width="0.0152%" height="15" fill="rgb(211,216,49)" fg:x="59058" fg:w="23"/><text x="39.3452%" y="799.50"></text></g><g><title>nmethod::nmethod (23 samples, 0.02%)</title><rect x="39.0952%" y="773" width="0.0152%" height="15" fill="rgb(221,58,53)" fg:x="59058" fg:w="23"/><text x="39.3452%" y="783.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.02%)</title><rect x="39.1329%" y="725" width="0.0232%" height="15" fill="rgb(220,112,41)" fg:x="59115" fg:w="35"/><text x="39.3829%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="39.1336%" y="709" width="0.0225%" height="15" fill="rgb(236,38,28)" fg:x="59116" fg:w="34"/><text x="39.3836%" y="719.50"></text></g><g><title>Parse::do_all_blocks (38 samples, 0.03%)</title><rect x="39.1329%" y="741" width="0.0252%" height="15" fill="rgb(227,195,22)" fg:x="59115" fg:w="38"/><text x="39.3829%" y="751.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.03%)</title><rect x="39.1323%" y="773" width="0.0291%" height="15" fill="rgb(214,55,33)" fg:x="59114" fg:w="44"/><text x="39.3823%" y="783.50"></text></g><g><title>Parse::Parse (44 samples, 0.03%)</title><rect x="39.1323%" y="757" width="0.0291%" height="15" fill="rgb(248,80,13)" fg:x="59114" fg:w="44"/><text x="39.3823%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (52 samples, 0.03%)</title><rect x="39.1303%" y="853" width="0.0344%" height="15" fill="rgb(238,52,6)" fg:x="59111" fg:w="52"/><text x="39.3803%" y="863.50"></text></g><g><title>CompileBroker::compiler_thread_loop (52 samples, 0.03%)</title><rect x="39.1303%" y="837" width="0.0344%" height="15" fill="rgb(224,198,47)" fg:x="59111" fg:w="52"/><text x="39.3803%" y="847.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (52 samples, 0.03%)</title><rect x="39.1303%" y="821" width="0.0344%" height="15" fill="rgb(233,171,20)" fg:x="59111" fg:w="52"/><text x="39.3803%" y="831.50"></text></g><g><title>C2Compiler::compile_method (52 samples, 0.03%)</title><rect x="39.1303%" y="805" width="0.0344%" height="15" fill="rgb(241,30,25)" fg:x="59111" fg:w="52"/><text x="39.3803%" y="815.50"></text></g><g><title>Compile::Compile (52 samples, 0.03%)</title><rect x="39.1303%" y="789" width="0.0344%" height="15" fill="rgb(207,171,38)" fg:x="59111" fg:w="52"/><text x="39.3803%" y="799.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="39.1693%" y="389" width="0.0119%" height="15" fill="rgb(234,70,1)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="399.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="39.1693%" y="373" width="0.0119%" height="15" fill="rgb(232,178,18)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="383.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="39.1693%" y="357" width="0.0119%" height="15" fill="rgb(241,78,40)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="367.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="39.1693%" y="341" width="0.0119%" height="15" fill="rgb(222,35,25)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="39.1693%" y="325" width="0.0119%" height="15" fill="rgb(207,92,16)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="335.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="39.1693%" y="309" width="0.0119%" height="15" fill="rgb(216,59,51)" fg:x="59170" fg:w="18"/><text x="39.4193%" y="319.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="39.1700%" y="293" width="0.0113%" height="15" fill="rgb(213,80,28)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="303.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="39.1700%" y="277" width="0.0113%" height="15" fill="rgb(220,93,7)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="287.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="39.1700%" y="261" width="0.0113%" height="15" fill="rgb(225,24,44)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="271.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="39.1700%" y="245" width="0.0113%" height="15" fill="rgb(243,74,40)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="39.1700%" y="229" width="0.0113%" height="15" fill="rgb(228,39,7)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="239.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="39.1700%" y="213" width="0.0113%" height="15" fill="rgb(227,79,8)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="223.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="39.1700%" y="197" width="0.0113%" height="15" fill="rgb(236,58,11)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="207.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="39.1700%" y="181" width="0.0113%" height="15" fill="rgb(249,63,35)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="191.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="39.1700%" y="165" width="0.0113%" height="15" fill="rgb(252,114,16)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="175.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="39.1700%" y="149" width="0.0113%" height="15" fill="rgb(254,151,24)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="39.1700%" y="133" width="0.0113%" height="15" fill="rgb(253,54,39)" fg:x="59171" fg:w="17"/><text x="39.4200%" y="143.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="39.1693%" y="581" width="0.0132%" height="15" fill="rgb(243,25,45)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="591.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="39.1693%" y="565" width="0.0132%" height="15" fill="rgb(234,134,9)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="575.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="39.1693%" y="549" width="0.0132%" height="15" fill="rgb(227,166,31)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="559.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="39.1693%" y="533" width="0.0132%" height="15" fill="rgb(245,143,41)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="39.1693%" y="517" width="0.0132%" height="15" fill="rgb(238,181,32)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="527.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="39.1693%" y="501" width="0.0132%" height="15" fill="rgb(224,113,18)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="511.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="39.1693%" y="485" width="0.0132%" height="15" fill="rgb(240,229,28)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="495.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="39.1693%" y="469" width="0.0132%" height="15" fill="rgb(250,185,3)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="479.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="39.1693%" y="453" width="0.0132%" height="15" fill="rgb(212,59,25)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="463.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="39.1693%" y="437" width="0.0132%" height="15" fill="rgb(221,87,20)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="39.1693%" y="421" width="0.0132%" height="15" fill="rgb(213,74,28)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="431.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="39.1693%" y="405" width="0.0132%" height="15" fill="rgb(224,132,34)" fg:x="59170" fg:w="20"/><text x="39.4193%" y="415.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.01%)</title><rect x="39.1693%" y="677" width="0.0146%" height="15" fill="rgb(222,101,24)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="687.50"></text></g><g><title>Parse::Parse (22 samples, 0.01%)</title><rect x="39.1693%" y="661" width="0.0146%" height="15" fill="rgb(254,142,4)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="671.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.01%)</title><rect x="39.1693%" y="645" width="0.0146%" height="15" fill="rgb(230,229,49)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="655.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="39.1693%" y="629" width="0.0146%" height="15" fill="rgb(238,70,47)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="39.1693%" y="613" width="0.0146%" height="15" fill="rgb(231,160,17)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="623.50"></text></g><g><title>Parse::do_call (22 samples, 0.01%)</title><rect x="39.1693%" y="597" width="0.0146%" height="15" fill="rgb(218,68,53)" fg:x="59170" fg:w="22"/><text x="39.4193%" y="607.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="39.1693%" y="773" width="0.0152%" height="15" fill="rgb(236,111,10)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="783.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="39.1693%" y="757" width="0.0152%" height="15" fill="rgb(224,34,41)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="767.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="39.1693%" y="741" width="0.0152%" height="15" fill="rgb(241,118,19)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="751.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="39.1693%" y="725" width="0.0152%" height="15" fill="rgb(238,129,25)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="39.1693%" y="709" width="0.0152%" height="15" fill="rgb(238,22,31)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="719.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="39.1693%" y="693" width="0.0152%" height="15" fill="rgb(222,174,48)" fg:x="59170" fg:w="23"/><text x="39.4193%" y="703.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="39.1693%" y="853" width="0.0165%" height="15" fill="rgb(206,152,40)" fg:x="59170" fg:w="25"/><text x="39.4193%" y="863.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.02%)</title><rect x="39.1693%" y="837" width="0.0165%" height="15" fill="rgb(218,99,54)" fg:x="59170" fg:w="25"/><text x="39.4193%" y="847.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="39.1693%" y="821" width="0.0165%" height="15" fill="rgb(220,174,26)" fg:x="59170" fg:w="25"/><text x="39.4193%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="39.1693%" y="805" width="0.0165%" height="15" fill="rgb(245,116,9)" fg:x="59170" fg:w="25"/><text x="39.4193%" y="815.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="39.1693%" y="789" width="0.0165%" height="15" fill="rgb(209,72,35)" fg:x="59170" fg:w="25"/><text x="39.4193%" y="799.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="39.1866%" y="133" width="0.0119%" height="15" fill="rgb(226,126,21)" fg:x="59196" fg:w="18"/><text x="39.4366%" y="143.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="39.1859%" y="229" width="0.0152%" height="15" fill="rgb(227,192,1)" fg:x="59195" fg:w="23"/><text x="39.4359%" y="239.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.01%)</title><rect x="39.1866%" y="213" width="0.0146%" height="15" fill="rgb(237,180,29)" fg:x="59196" fg:w="22"/><text x="39.4366%" y="223.50"></text></g><g><title>Parse::Parse (22 samples, 0.01%)</title><rect x="39.1866%" y="197" width="0.0146%" height="15" fill="rgb(230,197,35)" fg:x="59196" fg:w="22"/><text x="39.4366%" y="207.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.01%)</title><rect x="39.1866%" y="181" width="0.0146%" height="15" fill="rgb(246,193,31)" fg:x="59196" fg:w="22"/><text x="39.4366%" y="191.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.01%)</title><rect x="39.1866%" y="165" width="0.0146%" height="15" fill="rgb(241,36,4)" fg:x="59196" fg:w="22"/><text x="39.4366%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.01%)</title><rect x="39.1866%" y="149" width="0.0146%" height="15" fill="rgb(241,130,17)" fg:x="59196" fg:w="22"/><text x="39.4366%" y="159.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="39.1859%" y="309" width="0.0159%" height="15" fill="rgb(206,137,32)" fg:x="59195" fg:w="24"/><text x="39.4359%" y="319.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="39.1859%" y="293" width="0.0159%" height="15" fill="rgb(237,228,51)" fg:x="59195" fg:w="24"/><text x="39.4359%" y="303.50"></text></g><g><title>Parse::do_all_blocks (24 samples, 0.02%)</title><rect x="39.1859%" y="277" width="0.0159%" height="15" fill="rgb(243,6,42)" fg:x="59195" fg:w="24"/><text x="39.4359%" y="287.50"></text></g><g><title>Parse::do_one_block (24 samples, 0.02%)</title><rect x="39.1859%" y="261" width="0.0159%" height="15" fill="rgb(251,74,28)" fg:x="59195" fg:w="24"/><text x="39.4359%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (24 samples, 0.02%)</title><rect x="39.1859%" y="245" width="0.0159%" height="15" fill="rgb(218,20,49)" fg:x="59195" fg:w="24"/><text x="39.4359%" y="255.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="39.1859%" y="405" width="0.0165%" height="15" fill="rgb(238,28,14)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="415.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="39.1859%" y="389" width="0.0165%" height="15" fill="rgb(229,40,46)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="399.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.02%)</title><rect x="39.1859%" y="373" width="0.0165%" height="15" fill="rgb(244,195,20)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="383.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="39.1859%" y="357" width="0.0165%" height="15" fill="rgb(253,56,35)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="39.1859%" y="341" width="0.0165%" height="15" fill="rgb(210,149,44)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="351.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="39.1859%" y="325" width="0.0165%" height="15" fill="rgb(240,135,12)" fg:x="59195" fg:w="25"/><text x="39.4359%" y="335.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="39.1859%" y="597" width="0.0185%" height="15" fill="rgb(251,24,50)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="607.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="39.1859%" y="581" width="0.0185%" height="15" fill="rgb(243,200,47)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="591.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="39.1859%" y="565" width="0.0185%" height="15" fill="rgb(224,166,26)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="575.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="39.1859%" y="549" width="0.0185%" height="15" fill="rgb(233,0,47)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="39.1859%" y="533" width="0.0185%" height="15" fill="rgb(253,80,5)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="543.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="39.1859%" y="517" width="0.0185%" height="15" fill="rgb(214,133,25)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="527.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="39.1859%" y="501" width="0.0185%" height="15" fill="rgb(209,27,14)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="511.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="39.1859%" y="485" width="0.0185%" height="15" fill="rgb(219,102,51)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="495.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="39.1859%" y="469" width="0.0185%" height="15" fill="rgb(237,18,16)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="479.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="39.1859%" y="453" width="0.0185%" height="15" fill="rgb(241,85,17)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="39.1859%" y="437" width="0.0185%" height="15" fill="rgb(236,90,42)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="447.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="39.1859%" y="421" width="0.0185%" height="15" fill="rgb(249,57,21)" fg:x="59195" fg:w="28"/><text x="39.4359%" y="431.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.02%)</title><rect x="39.1859%" y="693" width="0.0192%" height="15" fill="rgb(243,12,36)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="703.50"></text></g><g><title>Parse::Parse (29 samples, 0.02%)</title><rect x="39.1859%" y="677" width="0.0192%" height="15" fill="rgb(253,128,47)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="687.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.02%)</title><rect x="39.1859%" y="661" width="0.0192%" height="15" fill="rgb(207,33,20)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="671.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.02%)</title><rect x="39.1859%" y="645" width="0.0192%" height="15" fill="rgb(233,215,35)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.02%)</title><rect x="39.1859%" y="629" width="0.0192%" height="15" fill="rgb(249,188,52)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="639.50"></text></g><g><title>Parse::do_call (29 samples, 0.02%)</title><rect x="39.1859%" y="613" width="0.0192%" height="15" fill="rgb(225,12,32)" fg:x="59195" fg:w="29"/><text x="39.4359%" y="623.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.02%)</title><rect x="39.1859%" y="789" width="0.0199%" height="15" fill="rgb(247,98,14)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="799.50"></text></g><g><title>Parse::Parse (30 samples, 0.02%)</title><rect x="39.1859%" y="773" width="0.0199%" height="15" fill="rgb(247,219,48)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="783.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.02%)</title><rect x="39.1859%" y="757" width="0.0199%" height="15" fill="rgb(253,60,48)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="767.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.02%)</title><rect x="39.1859%" y="741" width="0.0199%" height="15" fill="rgb(245,15,52)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.02%)</title><rect x="39.1859%" y="725" width="0.0199%" height="15" fill="rgb(220,133,28)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="735.50"></text></g><g><title>Parse::do_call (30 samples, 0.02%)</title><rect x="39.1859%" y="709" width="0.0199%" height="15" fill="rgb(217,180,4)" fg:x="59195" fg:w="30"/><text x="39.4359%" y="719.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="39.1859%" y="853" width="0.0218%" height="15" fill="rgb(251,24,1)" fg:x="59195" fg:w="33"/><text x="39.4359%" y="863.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="39.1859%" y="837" width="0.0218%" height="15" fill="rgb(212,185,49)" fg:x="59195" fg:w="33"/><text x="39.4359%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="39.1859%" y="821" width="0.0218%" height="15" fill="rgb(215,175,22)" fg:x="59195" fg:w="33"/><text x="39.4359%" y="831.50"></text></g><g><title>Parse::do_call (33 samples, 0.02%)</title><rect x="39.1859%" y="805" width="0.0218%" height="15" fill="rgb(250,205,14)" fg:x="59195" fg:w="33"/><text x="39.4359%" y="815.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="39.2104%" y="181" width="0.0139%" height="15" fill="rgb(225,211,22)" fg:x="59232" fg:w="21"/><text x="39.4604%" y="191.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="39.2077%" y="357" width="0.0172%" height="15" fill="rgb(251,179,42)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="367.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="39.2077%" y="341" width="0.0172%" height="15" fill="rgb(208,216,51)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="351.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="39.2077%" y="325" width="0.0172%" height="15" fill="rgb(235,36,11)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="335.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="39.2077%" y="309" width="0.0172%" height="15" fill="rgb(213,189,28)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="39.2077%" y="293" width="0.0172%" height="15" fill="rgb(227,203,42)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="303.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="39.2077%" y="277" width="0.0172%" height="15" fill="rgb(244,72,36)" fg:x="59228" fg:w="26"/><text x="39.4577%" y="287.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="39.2097%" y="261" width="0.0152%" height="15" fill="rgb(213,53,17)" fg:x="59231" fg:w="23"/><text x="39.4597%" y="271.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="39.2097%" y="245" width="0.0152%" height="15" fill="rgb(207,167,3)" fg:x="59231" fg:w="23"/><text x="39.4597%" y="255.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="39.2097%" y="229" width="0.0152%" height="15" fill="rgb(216,98,30)" fg:x="59231" fg:w="23"/><text x="39.4597%" y="239.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="39.2097%" y="213" width="0.0152%" height="15" fill="rgb(236,123,15)" fg:x="59231" fg:w="23"/><text x="39.4597%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="39.2097%" y="197" width="0.0152%" height="15" fill="rgb(248,81,50)" fg:x="59231" fg:w="23"/><text x="39.4597%" y="207.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.02%)</title><rect x="39.2077%" y="453" width="0.0199%" height="15" fill="rgb(214,120,4)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="463.50"></text></g><g><title>Parse::Parse (30 samples, 0.02%)</title><rect x="39.2077%" y="437" width="0.0199%" height="15" fill="rgb(208,179,34)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="447.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.02%)</title><rect x="39.2077%" y="421" width="0.0199%" height="15" fill="rgb(227,140,7)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="431.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.02%)</title><rect x="39.2077%" y="405" width="0.0199%" height="15" fill="rgb(214,22,6)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.02%)</title><rect x="39.2077%" y="389" width="0.0199%" height="15" fill="rgb(207,137,27)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="399.50"></text></g><g><title>Parse::do_call (30 samples, 0.02%)</title><rect x="39.2077%" y="373" width="0.0199%" height="15" fill="rgb(210,8,46)" fg:x="59228" fg:w="30"/><text x="39.4577%" y="383.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.02%)</title><rect x="39.2077%" y="549" width="0.0205%" height="15" fill="rgb(240,16,54)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="559.50"></text></g><g><title>Parse::Parse (31 samples, 0.02%)</title><rect x="39.2077%" y="533" width="0.0205%" height="15" fill="rgb(211,209,29)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="543.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.02%)</title><rect x="39.2077%" y="517" width="0.0205%" height="15" fill="rgb(226,228,24)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="527.50"></text></g><g><title>Parse::do_one_block (31 samples, 0.02%)</title><rect x="39.2077%" y="501" width="0.0205%" height="15" fill="rgb(222,84,9)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="39.2077%" y="485" width="0.0205%" height="15" fill="rgb(234,203,30)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="495.50"></text></g><g><title>Parse::do_call (31 samples, 0.02%)</title><rect x="39.2077%" y="469" width="0.0205%" height="15" fill="rgb(238,109,14)" fg:x="59228" fg:w="31"/><text x="39.4577%" y="479.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.02%)</title><rect x="39.2077%" y="645" width="0.0245%" height="15" fill="rgb(233,206,34)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="655.50"></text></g><g><title>Parse::Parse (37 samples, 0.02%)</title><rect x="39.2077%" y="629" width="0.0245%" height="15" fill="rgb(220,167,47)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="639.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="39.2077%" y="613" width="0.0245%" height="15" fill="rgb(238,105,10)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="623.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.02%)</title><rect x="39.2077%" y="597" width="0.0245%" height="15" fill="rgb(213,227,17)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.02%)</title><rect x="39.2077%" y="581" width="0.0245%" height="15" fill="rgb(217,132,38)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="591.50"></text></g><g><title>Parse::do_call (37 samples, 0.02%)</title><rect x="39.2077%" y="565" width="0.0245%" height="15" fill="rgb(242,146,4)" fg:x="59228" fg:w="37"/><text x="39.4577%" y="575.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.03%)</title><rect x="39.2077%" y="741" width="0.0258%" height="15" fill="rgb(212,61,9)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="751.50"></text></g><g><title>Parse::Parse (39 samples, 0.03%)</title><rect x="39.2077%" y="725" width="0.0258%" height="15" fill="rgb(247,126,22)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="735.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.03%)</title><rect x="39.2077%" y="709" width="0.0258%" height="15" fill="rgb(220,196,2)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="719.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.03%)</title><rect x="39.2077%" y="693" width="0.0258%" height="15" fill="rgb(208,46,4)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.03%)</title><rect x="39.2077%" y="677" width="0.0258%" height="15" fill="rgb(252,104,46)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="687.50"></text></g><g><title>Parse::do_call (39 samples, 0.03%)</title><rect x="39.2077%" y="661" width="0.0258%" height="15" fill="rgb(237,152,48)" fg:x="59228" fg:w="39"/><text x="39.4577%" y="671.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="39.2077%" y="837" width="0.0271%" height="15" fill="rgb(221,59,37)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="847.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="39.2077%" y="821" width="0.0271%" height="15" fill="rgb(209,202,51)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="831.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.03%)</title><rect x="39.2077%" y="805" width="0.0271%" height="15" fill="rgb(228,81,30)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="815.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.03%)</title><rect x="39.2077%" y="789" width="0.0271%" height="15" fill="rgb(227,42,39)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.03%)</title><rect x="39.2077%" y="773" width="0.0271%" height="15" fill="rgb(221,26,2)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="783.50"></text></g><g><title>Parse::do_call (41 samples, 0.03%)</title><rect x="39.2077%" y="757" width="0.0271%" height="15" fill="rgb(254,61,31)" fg:x="59228" fg:w="41"/><text x="39.4577%" y="767.50"></text></g><g><title>Parse::do_call (47 samples, 0.03%)</title><rect x="39.2077%" y="853" width="0.0311%" height="15" fill="rgb(222,173,38)" fg:x="59228" fg:w="47"/><text x="39.4577%" y="863.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="39.2389%" y="613" width="0.0113%" height="15" fill="rgb(218,50,12)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="623.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="39.2389%" y="597" width="0.0113%" height="15" fill="rgb(223,88,40)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="607.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="39.2389%" y="581" width="0.0113%" height="15" fill="rgb(237,54,19)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="591.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="39.2389%" y="565" width="0.0113%" height="15" fill="rgb(251,129,25)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="39.2389%" y="549" width="0.0113%" height="15" fill="rgb(238,97,19)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="559.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="39.2389%" y="533" width="0.0113%" height="15" fill="rgb(240,169,18)" fg:x="59275" fg:w="17"/><text x="39.4889%" y="543.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="39.2389%" y="709" width="0.0132%" height="15" fill="rgb(230,187,49)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="719.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="39.2389%" y="693" width="0.0132%" height="15" fill="rgb(209,44,26)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="703.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="39.2389%" y="677" width="0.0132%" height="15" fill="rgb(244,0,6)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="687.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="39.2389%" y="661" width="0.0132%" height="15" fill="rgb(248,18,21)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="39.2389%" y="645" width="0.0132%" height="15" fill="rgb(245,180,19)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="655.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="39.2389%" y="629" width="0.0132%" height="15" fill="rgb(252,118,36)" fg:x="59275" fg:w="20"/><text x="39.4889%" y="639.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="39.2389%" y="805" width="0.0139%" height="15" fill="rgb(210,224,19)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="815.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="39.2389%" y="789" width="0.0139%" height="15" fill="rgb(218,30,24)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="799.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="39.2389%" y="773" width="0.0139%" height="15" fill="rgb(219,75,50)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="783.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="39.2389%" y="757" width="0.0139%" height="15" fill="rgb(234,72,50)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="39.2389%" y="741" width="0.0139%" height="15" fill="rgb(219,100,48)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="751.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="39.2389%" y="725" width="0.0139%" height="15" fill="rgb(253,5,41)" fg:x="59275" fg:w="21"/><text x="39.4889%" y="735.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="39.2389%" y="853" width="0.0152%" height="15" fill="rgb(247,181,11)" fg:x="59275" fg:w="23"/><text x="39.4889%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="39.2389%" y="837" width="0.0152%" height="15" fill="rgb(222,223,25)" fg:x="59275" fg:w="23"/><text x="39.4889%" y="847.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="39.2389%" y="821" width="0.0152%" height="15" fill="rgb(214,198,28)" fg:x="59275" fg:w="23"/><text x="39.4889%" y="831.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="39.2541%" y="725" width="0.0106%" height="15" fill="rgb(230,46,43)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="735.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="39.2541%" y="709" width="0.0106%" height="15" fill="rgb(233,65,53)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="719.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="39.2541%" y="693" width="0.0106%" height="15" fill="rgb(221,121,27)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="703.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="39.2541%" y="677" width="0.0106%" height="15" fill="rgb(247,70,47)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="39.2541%" y="661" width="0.0106%" height="15" fill="rgb(228,85,35)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="671.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="39.2541%" y="645" width="0.0106%" height="15" fill="rgb(209,50,18)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="655.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="39.2541%" y="629" width="0.0106%" height="15" fill="rgb(250,19,35)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="639.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="39.2541%" y="613" width="0.0106%" height="15" fill="rgb(253,107,29)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="623.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="39.2541%" y="597" width="0.0106%" height="15" fill="rgb(252,179,29)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="607.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="39.2541%" y="581" width="0.0106%" height="15" fill="rgb(238,194,6)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="39.2541%" y="565" width="0.0106%" height="15" fill="rgb(238,164,29)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="575.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="39.2541%" y="549" width="0.0106%" height="15" fill="rgb(224,25,9)" fg:x="59298" fg:w="16"/><text x="39.5041%" y="559.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="39.2541%" y="821" width="0.0119%" height="15" fill="rgb(244,153,23)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="831.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="39.2541%" y="805" width="0.0119%" height="15" fill="rgb(212,203,14)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="815.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="39.2541%" y="789" width="0.0119%" height="15" fill="rgb(220,164,20)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="799.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="39.2541%" y="773" width="0.0119%" height="15" fill="rgb(222,203,48)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="39.2541%" y="757" width="0.0119%" height="15" fill="rgb(215,159,22)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="767.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="39.2541%" y="741" width="0.0119%" height="15" fill="rgb(216,183,47)" fg:x="59298" fg:w="18"/><text x="39.5041%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="39.2541%" y="853" width="0.0126%" height="15" fill="rgb(229,195,25)" fg:x="59298" fg:w="19"/><text x="39.5041%" y="863.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="39.2541%" y="837" width="0.0126%" height="15" fill="rgb(224,132,51)" fg:x="59298" fg:w="19"/><text x="39.5041%" y="847.50"></text></g><g><title>Parse::do_call (37 samples, 0.02%)</title><rect x="39.2773%" y="101" width="0.0245%" height="15" fill="rgb(240,63,7)" fg:x="59333" fg:w="37"/><text x="39.5273%" y="111.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="39.2859%" y="85" width="0.0159%" height="15" fill="rgb(249,182,41)" fg:x="59346" fg:w="24"/><text x="39.5359%" y="95.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="39.2859%" y="69" width="0.0159%" height="15" fill="rgb(243,47,26)" fg:x="59346" fg:w="24"/><text x="39.5359%" y="79.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.04%)</title><rect x="39.2739%" y="181" width="0.0364%" height="15" fill="rgb(233,48,2)" fg:x="59328" fg:w="55"/><text x="39.5239%" y="191.50"></text></g><g><title>Parse::Parse (55 samples, 0.04%)</title><rect x="39.2739%" y="165" width="0.0364%" height="15" fill="rgb(244,165,34)" fg:x="59328" fg:w="55"/><text x="39.5239%" y="175.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.04%)</title><rect x="39.2746%" y="149" width="0.0357%" height="15" fill="rgb(207,89,7)" fg:x="59329" fg:w="54"/><text x="39.5246%" y="159.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.04%)</title><rect x="39.2746%" y="133" width="0.0357%" height="15" fill="rgb(244,117,36)" fg:x="59329" fg:w="54"/><text x="39.5246%" y="143.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.04%)</title><rect x="39.2753%" y="117" width="0.0351%" height="15" fill="rgb(226,144,34)" fg:x="59330" fg:w="53"/><text x="39.5253%" y="127.50"></text></g><g><title>Parse::do_call (64 samples, 0.04%)</title><rect x="39.2686%" y="197" width="0.0424%" height="15" fill="rgb(213,23,19)" fg:x="59320" fg:w="64"/><text x="39.5186%" y="207.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.04%)</title><rect x="39.2686%" y="277" width="0.0430%" height="15" fill="rgb(217,75,12)" fg:x="59320" fg:w="65"/><text x="39.5186%" y="287.50"></text></g><g><title>Parse::Parse (65 samples, 0.04%)</title><rect x="39.2686%" y="261" width="0.0430%" height="15" fill="rgb(224,159,17)" fg:x="59320" fg:w="65"/><text x="39.5186%" y="271.50"></text></g><g><title>Parse::do_all_blocks (65 samples, 0.04%)</title><rect x="39.2686%" y="245" width="0.0430%" height="15" fill="rgb(217,118,1)" fg:x="59320" fg:w="65"/><text x="39.5186%" y="255.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.04%)</title><rect x="39.2686%" y="229" width="0.0430%" height="15" fill="rgb(232,180,48)" fg:x="59320" fg:w="65"/><text x="39.5186%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.04%)</title><rect x="39.2686%" y="213" width="0.0430%" height="15" fill="rgb(230,27,33)" fg:x="59320" fg:w="65"/><text x="39.5186%" y="223.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.05%)</title><rect x="39.2680%" y="373" width="0.0457%" height="15" fill="rgb(205,31,21)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="383.50"></text></g><g><title>Parse::Parse (69 samples, 0.05%)</title><rect x="39.2680%" y="357" width="0.0457%" height="15" fill="rgb(253,59,4)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="367.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.05%)</title><rect x="39.2680%" y="341" width="0.0457%" height="15" fill="rgb(224,201,9)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="351.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.05%)</title><rect x="39.2680%" y="325" width="0.0457%" height="15" fill="rgb(229,206,30)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.05%)</title><rect x="39.2680%" y="309" width="0.0457%" height="15" fill="rgb(212,67,47)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="319.50"></text></g><g><title>Parse::do_call (69 samples, 0.05%)</title><rect x="39.2680%" y="293" width="0.0457%" height="15" fill="rgb(211,96,50)" fg:x="59319" fg:w="69"/><text x="39.5180%" y="303.50"></text></g><g><title>ParseGenerator::generate (83 samples, 0.05%)</title><rect x="39.2667%" y="469" width="0.0549%" height="15" fill="rgb(252,114,18)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="479.50"></text></g><g><title>Parse::Parse (83 samples, 0.05%)</title><rect x="39.2667%" y="453" width="0.0549%" height="15" fill="rgb(223,58,37)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="463.50"></text></g><g><title>Parse::do_all_blocks (83 samples, 0.05%)</title><rect x="39.2667%" y="437" width="0.0549%" height="15" fill="rgb(237,70,4)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="447.50"></text></g><g><title>Parse::do_one_block (83 samples, 0.05%)</title><rect x="39.2667%" y="421" width="0.0549%" height="15" fill="rgb(244,85,46)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (83 samples, 0.05%)</title><rect x="39.2667%" y="405" width="0.0549%" height="15" fill="rgb(223,39,52)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="415.50"></text></g><g><title>Parse::do_call (83 samples, 0.05%)</title><rect x="39.2667%" y="389" width="0.0549%" height="15" fill="rgb(218,200,14)" fg:x="59317" fg:w="83"/><text x="39.5167%" y="399.50"></text></g><g><title>ParseGenerator::generate (99 samples, 0.07%)</title><rect x="39.2667%" y="565" width="0.0655%" height="15" fill="rgb(208,171,16)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="575.50"></text></g><g><title>Parse::Parse (99 samples, 0.07%)</title><rect x="39.2667%" y="549" width="0.0655%" height="15" fill="rgb(234,200,18)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="559.50"></text></g><g><title>Parse::do_all_blocks (99 samples, 0.07%)</title><rect x="39.2667%" y="533" width="0.0655%" height="15" fill="rgb(228,45,11)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="543.50"></text></g><g><title>Parse::do_one_block (99 samples, 0.07%)</title><rect x="39.2667%" y="517" width="0.0655%" height="15" fill="rgb(237,182,11)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (99 samples, 0.07%)</title><rect x="39.2667%" y="501" width="0.0655%" height="15" fill="rgb(241,175,49)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="511.50"></text></g><g><title>Parse::do_call (99 samples, 0.07%)</title><rect x="39.2667%" y="485" width="0.0655%" height="15" fill="rgb(247,38,35)" fg:x="59317" fg:w="99"/><text x="39.5167%" y="495.50"></text></g><g><title>PredictedCallGenerator::generate (16 samples, 0.01%)</title><rect x="39.3216%" y="469" width="0.0106%" height="15" fill="rgb(228,39,49)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="479.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="39.3216%" y="453" width="0.0106%" height="15" fill="rgb(226,101,26)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="463.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="39.3216%" y="437" width="0.0106%" height="15" fill="rgb(206,141,19)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="447.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="39.3216%" y="421" width="0.0106%" height="15" fill="rgb(211,200,13)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="431.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="39.3216%" y="405" width="0.0106%" height="15" fill="rgb(241,121,6)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="39.3216%" y="389" width="0.0106%" height="15" fill="rgb(234,221,29)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="399.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="39.3216%" y="373" width="0.0106%" height="15" fill="rgb(229,136,5)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="383.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="39.3216%" y="357" width="0.0106%" height="15" fill="rgb(238,36,11)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="367.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="39.3216%" y="341" width="0.0106%" height="15" fill="rgb(251,55,41)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="351.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="39.3216%" y="325" width="0.0106%" height="15" fill="rgb(242,34,40)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="335.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="39.3216%" y="309" width="0.0106%" height="15" fill="rgb(215,42,17)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="39.3216%" y="293" width="0.0106%" height="15" fill="rgb(207,44,46)" fg:x="59400" fg:w="16"/><text x="39.5716%" y="303.50"></text></g><g><title>ParseGenerator::generate (104 samples, 0.07%)</title><rect x="39.2667%" y="661" width="0.0688%" height="15" fill="rgb(211,206,28)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="671.50"></text></g><g><title>Parse::Parse (104 samples, 0.07%)</title><rect x="39.2667%" y="645" width="0.0688%" height="15" fill="rgb(237,167,16)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="655.50"></text></g><g><title>Parse::do_all_blocks (104 samples, 0.07%)</title><rect x="39.2667%" y="629" width="0.0688%" height="15" fill="rgb(233,66,6)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="639.50"></text></g><g><title>Parse::do_one_block (104 samples, 0.07%)</title><rect x="39.2667%" y="613" width="0.0688%" height="15" fill="rgb(246,123,29)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (104 samples, 0.07%)</title><rect x="39.2667%" y="597" width="0.0688%" height="15" fill="rgb(209,62,40)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="607.50"></text></g><g><title>Parse::do_call (104 samples, 0.07%)</title><rect x="39.2667%" y="581" width="0.0688%" height="15" fill="rgb(218,4,25)" fg:x="59317" fg:w="104"/><text x="39.5167%" y="591.50"></text></g><g><title>ParseGenerator::generate (112 samples, 0.07%)</title><rect x="39.2667%" y="757" width="0.0741%" height="15" fill="rgb(253,91,49)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="767.50"></text></g><g><title>Parse::Parse (112 samples, 0.07%)</title><rect x="39.2667%" y="741" width="0.0741%" height="15" fill="rgb(228,155,29)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="751.50"></text></g><g><title>Parse::do_all_blocks (112 samples, 0.07%)</title><rect x="39.2667%" y="725" width="0.0741%" height="15" fill="rgb(243,57,37)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="735.50"></text></g><g><title>Parse::do_one_block (112 samples, 0.07%)</title><rect x="39.2667%" y="709" width="0.0741%" height="15" fill="rgb(244,167,17)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (112 samples, 0.07%)</title><rect x="39.2667%" y="693" width="0.0741%" height="15" fill="rgb(207,181,38)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="703.50"></text></g><g><title>Parse::do_call (112 samples, 0.07%)</title><rect x="39.2667%" y="677" width="0.0741%" height="15" fill="rgb(211,8,23)" fg:x="59317" fg:w="112"/><text x="39.5167%" y="687.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="39.3408%" y="741" width="0.0113%" height="15" fill="rgb(235,11,44)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="751.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="39.3408%" y="725" width="0.0113%" height="15" fill="rgb(248,18,52)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="735.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="39.3408%" y="709" width="0.0113%" height="15" fill="rgb(208,4,7)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="719.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="39.3408%" y="693" width="0.0113%" height="15" fill="rgb(240,17,39)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="39.3408%" y="677" width="0.0113%" height="15" fill="rgb(207,170,3)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="687.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="39.3408%" y="661" width="0.0113%" height="15" fill="rgb(236,100,52)" fg:x="59429" fg:w="17"/><text x="39.5908%" y="671.50"></text></g><g><title>ParseGenerator::generate (130 samples, 0.09%)</title><rect x="39.2667%" y="853" width="0.0861%" height="15" fill="rgb(246,78,51)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="863.50"></text></g><g><title>Parse::Parse (130 samples, 0.09%)</title><rect x="39.2667%" y="837" width="0.0861%" height="15" fill="rgb(211,17,15)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="847.50"></text></g><g><title>Parse::do_all_blocks (130 samples, 0.09%)</title><rect x="39.2667%" y="821" width="0.0861%" height="15" fill="rgb(209,59,46)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="831.50"></text></g><g><title>Parse::do_one_block (130 samples, 0.09%)</title><rect x="39.2667%" y="805" width="0.0861%" height="15" fill="rgb(210,92,25)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (130 samples, 0.09%)</title><rect x="39.2667%" y="789" width="0.0861%" height="15" fill="rgb(238,174,52)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="799.50"></text></g><g><title>Parse::do_call (130 samples, 0.09%)</title><rect x="39.2667%" y="773" width="0.0861%" height="15" fill="rgb(230,73,7)" fg:x="59317" fg:w="130"/><text x="39.5167%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (18 samples, 0.01%)</title><rect x="39.3408%" y="757" width="0.0119%" height="15" fill="rgb(243,124,40)" fg:x="59429" fg:w="18"/><text x="39.5908%" y="767.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="39.3805%" y="757" width="0.0152%" height="15" fill="rgb(244,170,11)" fg:x="59489" fg:w="23"/><text x="39.6305%" y="767.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="39.3805%" y="741" width="0.0152%" height="15" fill="rgb(207,114,54)" fg:x="59489" fg:w="23"/><text x="39.6305%" y="751.50"></text></g><g><title>Thread::call_run (51 samples, 0.03%)</title><rect x="39.3746%" y="853" width="0.0338%" height="15" fill="rgb(205,42,20)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (51 samples, 0.03%)</title><rect x="39.3746%" y="837" width="0.0338%" height="15" fill="rgb(230,30,28)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="847.50"></text></g><g><title>CompileBroker::compiler_thread_loop (51 samples, 0.03%)</title><rect x="39.3746%" y="821" width="0.0338%" height="15" fill="rgb(205,73,54)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (51 samples, 0.03%)</title><rect x="39.3746%" y="805" width="0.0338%" height="15" fill="rgb(254,227,23)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="815.50"></text></g><g><title>C2Compiler::compile_method (51 samples, 0.03%)</title><rect x="39.3746%" y="789" width="0.0338%" height="15" fill="rgb(228,202,34)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="799.50"></text></g><g><title>Compile::Compile (51 samples, 0.03%)</title><rect x="39.3746%" y="773" width="0.0338%" height="15" fill="rgb(222,225,37)" fg:x="59480" fg:w="51"/><text x="39.6246%" y="783.50"></text></g><g><title>ciEnv::register_method (19 samples, 0.01%)</title><rect x="39.3957%" y="757" width="0.0126%" height="15" fill="rgb(221,14,54)" fg:x="59512" fg:w="19"/><text x="39.6457%" y="767.50"></text></g><g><title>nmethod::new_nmethod (18 samples, 0.01%)</title><rect x="39.3964%" y="741" width="0.0119%" height="15" fill="rgb(254,102,2)" fg:x="59513" fg:w="18"/><text x="39.6464%" y="751.50"></text></g><g><title>_dl_update_slotinfo (38 samples, 0.03%)</title><rect x="39.4222%" y="853" width="0.0252%" height="15" fill="rgb(232,104,17)" fg:x="59552" fg:w="38"/><text x="39.6722%" y="863.50"></text></g><g><title>ciEnv::register_method (17 samples, 0.01%)</title><rect x="39.4739%" y="725" width="0.0113%" height="15" fill="rgb(250,220,14)" fg:x="59630" fg:w="17"/><text x="39.7239%" y="735.50"></text></g><g><title>start_thread (45 samples, 0.03%)</title><rect x="39.4560%" y="853" width="0.0298%" height="15" fill="rgb(241,158,9)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="863.50"></text></g><g><title>thread_native_entry (45 samples, 0.03%)</title><rect x="39.4560%" y="837" width="0.0298%" height="15" fill="rgb(246,9,43)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="847.50"></text></g><g><title>Thread::call_run (45 samples, 0.03%)</title><rect x="39.4560%" y="821" width="0.0298%" height="15" fill="rgb(206,73,33)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (45 samples, 0.03%)</title><rect x="39.4560%" y="805" width="0.0298%" height="15" fill="rgb(222,79,8)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (45 samples, 0.03%)</title><rect x="39.4560%" y="789" width="0.0298%" height="15" fill="rgb(234,8,54)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (45 samples, 0.03%)</title><rect x="39.4560%" y="773" width="0.0298%" height="15" fill="rgb(209,134,38)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="783.50"></text></g><g><title>C2Compiler::compile_method (45 samples, 0.03%)</title><rect x="39.4560%" y="757" width="0.0298%" height="15" fill="rgb(230,127,29)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="767.50"></text></g><g><title>Compile::Compile (45 samples, 0.03%)</title><rect x="39.4560%" y="741" width="0.0298%" height="15" fill="rgb(242,44,41)" fg:x="59603" fg:w="45"/><text x="39.7060%" y="751.50"></text></g><g><title>[unknown] (46,014 samples, 30.46%)</title><rect x="9.0314%" y="869" width="30.4603%" height="15" fill="rgb(222,56,43)" fg:x="13643" fg:w="46014"/><text x="9.2814%" y="879.50">[unknown]</text></g><g><title>Dict::doubhash (17 samples, 0.01%)</title><rect x="39.5513%" y="677" width="0.0113%" height="15" fill="rgb(238,39,47)" fg:x="59747" fg:w="17"/><text x="39.8013%" y="687.50"></text></g><g><title>Dict::Insert (51 samples, 0.03%)</title><rect x="39.5394%" y="693" width="0.0338%" height="15" fill="rgb(226,79,43)" fg:x="59729" fg:w="51"/><text x="39.7894%" y="703.50"></text></g><g><title>CompileWrapper::CompileWrapper (62 samples, 0.04%)</title><rect x="39.5381%" y="725" width="0.0410%" height="15" fill="rgb(242,105,53)" fg:x="59727" fg:w="62"/><text x="39.7881%" y="735.50"></text></g><g><title>Type::Initialize (61 samples, 0.04%)</title><rect x="39.5387%" y="709" width="0.0404%" height="15" fill="rgb(251,132,46)" fg:x="59728" fg:w="61"/><text x="39.7887%" y="719.50"></text></g><g><title>Compile::identify_useful_nodes (114 samples, 0.08%)</title><rect x="39.6056%" y="709" width="0.0755%" height="15" fill="rgb(231,77,14)" fg:x="59829" fg:w="114"/><text x="39.8556%" y="719.50"></text></g><g><title>Compile::remove_useless_nodes (116 samples, 0.08%)</title><rect x="39.6811%" y="709" width="0.0768%" height="15" fill="rgb(240,135,9)" fg:x="59943" fg:w="116"/><text x="39.9311%" y="719.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (298 samples, 0.20%)</title><rect x="39.5837%" y="725" width="0.1973%" height="15" fill="rgb(248,109,14)" fg:x="59796" fg:w="298"/><text x="39.8337%" y="735.50"></text></g><g><title>Unique_Node_List::remove_useless_nodes (21 samples, 0.01%)</title><rect x="39.7671%" y="709" width="0.0139%" height="15" fill="rgb(227,146,52)" fg:x="60073" fg:w="21"/><text x="40.0171%" y="719.50"></text></g><g><title>C2Compiler::compile_method (462 samples, 0.31%)</title><rect x="39.5036%" y="757" width="0.3058%" height="15" fill="rgb(232,54,3)" fg:x="59675" fg:w="462"/><text x="39.7536%" y="767.50"></text></g><g><title>Compile::Compile (455 samples, 0.30%)</title><rect x="39.5083%" y="741" width="0.3012%" height="15" fill="rgb(229,201,43)" fg:x="59682" fg:w="455"/><text x="39.7583%" y="751.50"></text></g><g><title>ciEnv::~ciEnv (19 samples, 0.01%)</title><rect x="39.8532%" y="757" width="0.0126%" height="15" fill="rgb(252,161,33)" fg:x="60203" fg:w="19"/><text x="40.1032%" y="767.50"></text></g><g><title>ciObjectFactory::remove_symbols (18 samples, 0.01%)</title><rect x="39.8538%" y="741" width="0.0119%" height="15" fill="rgb(226,146,40)" fg:x="60204" fg:w="18"/><text x="40.1038%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (553 samples, 0.37%)</title><rect x="39.5003%" y="773" width="0.3661%" height="15" fill="rgb(219,47,25)" fg:x="59670" fg:w="553"/><text x="39.7503%" y="783.50"></text></g><g><title>__pthread_cond_signal (20 samples, 0.01%)</title><rect x="39.8883%" y="725" width="0.0132%" height="15" fill="rgb(250,135,13)" fg:x="60256" fg:w="20"/><text x="40.1383%" y="735.50"></text></g><g><title>futex_wake (19 samples, 0.01%)</title><rect x="39.8889%" y="709" width="0.0126%" height="15" fill="rgb(219,229,18)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="39.8889%" y="693" width="0.0126%" height="15" fill="rgb(217,152,27)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="703.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="39.8889%" y="677" width="0.0126%" height="15" fill="rgb(225,71,47)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="687.50"></text></g><g><title>__x64_sys_futex (19 samples, 0.01%)</title><rect x="39.8889%" y="661" width="0.0126%" height="15" fill="rgb(220,139,14)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="671.50"></text></g><g><title>do_futex (19 samples, 0.01%)</title><rect x="39.8889%" y="645" width="0.0126%" height="15" fill="rgb(247,54,32)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="655.50"></text></g><g><title>futex_wake (19 samples, 0.01%)</title><rect x="39.8889%" y="629" width="0.0126%" height="15" fill="rgb(252,131,39)" fg:x="60257" fg:w="19"/><text x="40.1389%" y="639.50"></text></g><g><title>wake_up_q (16 samples, 0.01%)</title><rect x="39.8909%" y="613" width="0.0106%" height="15" fill="rgb(210,108,39)" fg:x="60260" fg:w="16"/><text x="40.1409%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (113 samples, 0.07%)</title><rect x="39.9300%" y="517" width="0.0748%" height="15" fill="rgb(205,23,29)" fg:x="60319" fg:w="113"/><text x="40.1800%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (110 samples, 0.07%)</title><rect x="39.9319%" y="501" width="0.0728%" height="15" fill="rgb(246,139,46)" fg:x="60322" fg:w="110"/><text x="40.1819%" y="511.50"></text></g><g><title>native_write_msr (109 samples, 0.07%)</title><rect x="39.9326%" y="485" width="0.0722%" height="15" fill="rgb(250,81,26)" fg:x="60323" fg:w="109"/><text x="40.1826%" y="495.50"></text></g><g><title>finish_task_switch (116 samples, 0.08%)</title><rect x="39.9293%" y="533" width="0.0768%" height="15" fill="rgb(214,104,7)" fg:x="60318" fg:w="116"/><text x="40.1793%" y="543.50"></text></g><g><title>futex_wait_queue_me (155 samples, 0.10%)</title><rect x="39.9134%" y="581" width="0.1026%" height="15" fill="rgb(233,189,8)" fg:x="60294" fg:w="155"/><text x="40.1634%" y="591.50"></text></g><g><title>schedule (142 samples, 0.09%)</title><rect x="39.9220%" y="565" width="0.0940%" height="15" fill="rgb(228,141,17)" fg:x="60307" fg:w="142"/><text x="40.1720%" y="575.50"></text></g><g><title>__schedule (141 samples, 0.09%)</title><rect x="39.9227%" y="549" width="0.0933%" height="15" fill="rgb(247,157,1)" fg:x="60308" fg:w="141"/><text x="40.1727%" y="559.50"></text></g><g><title>do_futex (165 samples, 0.11%)</title><rect x="39.9121%" y="613" width="0.1092%" height="15" fill="rgb(249,225,5)" fg:x="60292" fg:w="165"/><text x="40.1621%" y="623.50"></text></g><g><title>futex_wait (164 samples, 0.11%)</title><rect x="39.9128%" y="597" width="0.1086%" height="15" fill="rgb(242,55,13)" fg:x="60293" fg:w="164"/><text x="40.1628%" y="607.50"></text></g><g><title>do_syscall_64 (169 samples, 0.11%)</title><rect x="39.9101%" y="645" width="0.1119%" height="15" fill="rgb(230,49,50)" fg:x="60289" fg:w="169"/><text x="40.1601%" y="655.50"></text></g><g><title>__x64_sys_futex (168 samples, 0.11%)</title><rect x="39.9108%" y="629" width="0.1112%" height="15" fill="rgb(241,111,38)" fg:x="60290" fg:w="168"/><text x="40.1608%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (182 samples, 0.12%)</title><rect x="39.9041%" y="709" width="0.1205%" height="15" fill="rgb(252,155,4)" fg:x="60280" fg:w="182"/><text x="40.1541%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (182 samples, 0.12%)</title><rect x="39.9041%" y="693" width="0.1205%" height="15" fill="rgb(212,69,32)" fg:x="60280" fg:w="182"/><text x="40.1541%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (181 samples, 0.12%)</title><rect x="39.9048%" y="677" width="0.1198%" height="15" fill="rgb(243,107,47)" fg:x="60281" fg:w="181"/><text x="40.1548%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (174 samples, 0.12%)</title><rect x="39.9094%" y="661" width="0.1152%" height="15" fill="rgb(247,130,12)" fg:x="60288" fg:w="174"/><text x="40.1594%" y="671.50"></text></g><g><title>os::PlatformEvent::park (198 samples, 0.13%)</title><rect x="39.9015%" y="725" width="0.1311%" height="15" fill="rgb(233,74,16)" fg:x="60276" fg:w="198"/><text x="40.1515%" y="735.50"></text></g><g><title>Monitor::IWait (224 samples, 0.15%)</title><rect x="39.8856%" y="741" width="0.1483%" height="15" fill="rgb(208,58,18)" fg:x="60252" fg:w="224"/><text x="40.1356%" y="751.50"></text></g><g><title>Monitor::wait (233 samples, 0.15%)</title><rect x="39.8803%" y="757" width="0.1542%" height="15" fill="rgb(242,225,1)" fg:x="60244" fg:w="233"/><text x="40.1303%" y="767.50"></text></g><g><title>CompileQueue::get (268 samples, 0.18%)</title><rect x="39.8750%" y="773" width="0.1774%" height="15" fill="rgb(249,39,40)" fg:x="60236" fg:w="268"/><text x="40.1250%" y="783.50"></text></g><g><title>__GI___clone (843 samples, 0.56%)</title><rect x="39.4950%" y="869" width="0.5580%" height="15" fill="rgb(207,72,44)" fg:x="59662" fg:w="843"/><text x="39.7450%" y="879.50"></text></g><g><title>start_thread (842 samples, 0.56%)</title><rect x="39.4957%" y="853" width="0.5574%" height="15" fill="rgb(215,193,12)" fg:x="59663" fg:w="842"/><text x="39.7457%" y="863.50"></text></g><g><title>thread_native_entry (841 samples, 0.56%)</title><rect x="39.4964%" y="837" width="0.5567%" height="15" fill="rgb(248,41,39)" fg:x="59664" fg:w="841"/><text x="39.7464%" y="847.50"></text></g><g><title>Thread::call_run (841 samples, 0.56%)</title><rect x="39.4964%" y="821" width="0.5567%" height="15" fill="rgb(253,85,4)" fg:x="59664" fg:w="841"/><text x="39.7464%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (841 samples, 0.56%)</title><rect x="39.4964%" y="805" width="0.5567%" height="15" fill="rgb(243,70,31)" fg:x="59664" fg:w="841"/><text x="39.7464%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (841 samples, 0.56%)</title><rect x="39.4964%" y="789" width="0.5567%" height="15" fill="rgb(253,195,26)" fg:x="59664" fg:w="841"/><text x="39.7464%" y="799.50"></text></g><g><title>asm_exc_page_fault (56 samples, 0.04%)</title><rect x="40.0571%" y="869" width="0.0371%" height="15" fill="rgb(243,42,11)" fg:x="60511" fg:w="56"/><text x="40.3071%" y="879.50"></text></g><g><title>C2_CompilerThre (49,688 samples, 32.89%)</title><rect x="7.2222%" y="885" width="32.8925%" height="15" fill="rgb(239,66,17)" fg:x="10910" fg:w="49688"/><text x="7.4722%" y="895.50">C2_CompilerThre</text></g><g><title>__pthread_cond_timedwait (18 samples, 0.01%)</title><rect x="40.1617%" y="821" width="0.0119%" height="15" fill="rgb(217,132,21)" fg:x="60669" fg:w="18"/><text x="40.4117%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (18 samples, 0.01%)</title><rect x="40.1617%" y="805" width="0.0119%" height="15" fill="rgb(252,202,21)" fg:x="60669" fg:w="18"/><text x="40.4117%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (18 samples, 0.01%)</title><rect x="40.1617%" y="789" width="0.0119%" height="15" fill="rgb(233,98,36)" fg:x="60669" fg:w="18"/><text x="40.4117%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="40.1623%" y="773" width="0.0113%" height="15" fill="rgb(216,153,54)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="783.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="40.1623%" y="757" width="0.0113%" height="15" fill="rgb(250,99,7)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="767.50"></text></g><g><title>__x64_sys_futex (17 samples, 0.01%)</title><rect x="40.1623%" y="741" width="0.0113%" height="15" fill="rgb(207,56,50)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="751.50"></text></g><g><title>do_futex (17 samples, 0.01%)</title><rect x="40.1623%" y="725" width="0.0113%" height="15" fill="rgb(244,61,34)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="735.50"></text></g><g><title>futex_wait (17 samples, 0.01%)</title><rect x="40.1623%" y="709" width="0.0113%" height="15" fill="rgb(241,50,38)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="719.50"></text></g><g><title>futex_wait_queue_me (17 samples, 0.01%)</title><rect x="40.1623%" y="693" width="0.0113%" height="15" fill="rgb(212,166,30)" fg:x="60670" fg:w="17"/><text x="40.4123%" y="703.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="40.1630%" y="677" width="0.0106%" height="15" fill="rgb(249,127,32)" fg:x="60671" fg:w="16"/><text x="40.4130%" y="687.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="40.1630%" y="661" width="0.0106%" height="15" fill="rgb(209,103,0)" fg:x="60671" fg:w="16"/><text x="40.4130%" y="671.50"></text></g><g><title>Unsafe_Park (21 samples, 0.01%)</title><rect x="40.1610%" y="853" width="0.0139%" height="15" fill="rgb(238,209,51)" fg:x="60668" fg:w="21"/><text x="40.4110%" y="863.50"></text></g><g><title>Parker::park (21 samples, 0.01%)</title><rect x="40.1610%" y="837" width="0.0139%" height="15" fill="rgb(237,56,23)" fg:x="60668" fg:w="21"/><text x="40.4110%" y="847.50"></text></g><g><title>[perf-983083.map] (90 samples, 0.06%)</title><rect x="40.1166%" y="869" width="0.0596%" height="15" fill="rgb(215,153,46)" fg:x="60601" fg:w="90"/><text x="40.3666%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="40.1842%" y="645" width="0.0126%" height="15" fill="rgb(224,49,31)" fg:x="60703" fg:w="19"/><text x="40.4342%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="40.1842%" y="629" width="0.0126%" height="15" fill="rgb(250,18,42)" fg:x="60703" fg:w="19"/><text x="40.4342%" y="639.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="40.1842%" y="613" width="0.0126%" height="15" fill="rgb(215,176,39)" fg:x="60703" fg:w="19"/><text x="40.4342%" y="623.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="40.1835%" y="661" width="0.0139%" height="15" fill="rgb(223,77,29)" fg:x="60702" fg:w="21"/><text x="40.4335%" y="671.50"></text></g><g><title>new_sync_read (26 samples, 0.02%)</title><rect x="40.1815%" y="725" width="0.0172%" height="15" fill="rgb(234,94,52)" fg:x="60699" fg:w="26"/><text x="40.4315%" y="735.50"></text></g><g><title>pipe_read (26 samples, 0.02%)</title><rect x="40.1815%" y="709" width="0.0172%" height="15" fill="rgb(220,154,50)" fg:x="60699" fg:w="26"/><text x="40.4315%" y="719.50"></text></g><g><title>schedule (25 samples, 0.02%)</title><rect x="40.1822%" y="693" width="0.0165%" height="15" fill="rgb(212,11,10)" fg:x="60700" fg:w="25"/><text x="40.4322%" y="703.50"></text></g><g><title>__schedule (25 samples, 0.02%)</title><rect x="40.1822%" y="677" width="0.0165%" height="15" fill="rgb(205,166,19)" fg:x="60700" fg:w="25"/><text x="40.4322%" y="687.50"></text></g><g><title>Command-Accumul (128 samples, 0.08%)</title><rect x="40.1147%" y="885" width="0.0847%" height="15" fill="rgb(244,198,16)" fg:x="60598" fg:w="128"/><text x="40.3647%" y="895.50"></text></g><g><title>[unknown] (35 samples, 0.02%)</title><rect x="40.1762%" y="869" width="0.0232%" height="15" fill="rgb(219,69,12)" fg:x="60691" fg:w="35"/><text x="40.4262%" y="879.50"></text></g><g><title>readBytes (27 samples, 0.02%)</title><rect x="40.1815%" y="853" width="0.0179%" height="15" fill="rgb(245,30,7)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="863.50"></text></g><g><title>handleRead (27 samples, 0.02%)</title><rect x="40.1815%" y="837" width="0.0179%" height="15" fill="rgb(218,221,48)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="847.50"></text></g><g><title>__libc_read (27 samples, 0.02%)</title><rect x="40.1815%" y="821" width="0.0179%" height="15" fill="rgb(216,66,15)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="831.50"></text></g><g><title>__libc_read (27 samples, 0.02%)</title><rect x="40.1815%" y="805" width="0.0179%" height="15" fill="rgb(226,122,50)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="40.1815%" y="789" width="0.0179%" height="15" fill="rgb(239,156,16)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="799.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="40.1815%" y="773" width="0.0179%" height="15" fill="rgb(224,27,38)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="783.50"></text></g><g><title>ksys_read (27 samples, 0.02%)</title><rect x="40.1815%" y="757" width="0.0179%" height="15" fill="rgb(224,39,27)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="767.50"></text></g><g><title>vfs_read (27 samples, 0.02%)</title><rect x="40.1815%" y="741" width="0.0179%" height="15" fill="rgb(215,92,29)" fg:x="60699" fg:w="27"/><text x="40.4315%" y="751.50"></text></g><g><title>InterpreterRuntime::monitorenter (18 samples, 0.01%)</title><rect x="40.2106%" y="853" width="0.0119%" height="15" fill="rgb(207,159,16)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="863.50"></text></g><g><title>ObjectSynchronizer::fast_enter (18 samples, 0.01%)</title><rect x="40.2106%" y="837" width="0.0119%" height="15" fill="rgb(238,163,47)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="847.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (18 samples, 0.01%)</title><rect x="40.2106%" y="821" width="0.0119%" height="15" fill="rgb(219,91,49)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="831.50"></text></g><g><title>VMThread::execute (18 samples, 0.01%)</title><rect x="40.2106%" y="805" width="0.0119%" height="15" fill="rgb(227,167,31)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="815.50"></text></g><g><title>Monitor::wait (18 samples, 0.01%)</title><rect x="40.2106%" y="789" width="0.0119%" height="15" fill="rgb(234,80,54)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="799.50"></text></g><g><title>Monitor::IWait (18 samples, 0.01%)</title><rect x="40.2106%" y="773" width="0.0119%" height="15" fill="rgb(212,114,2)" fg:x="60743" fg:w="18"/><text x="40.4606%" y="783.50"></text></g><g><title>os::PlatformEvent::park (17 samples, 0.01%)</title><rect x="40.2113%" y="757" width="0.0113%" height="15" fill="rgb(234,50,24)" fg:x="60744" fg:w="17"/><text x="40.4613%" y="767.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="40.2113%" y="741" width="0.0113%" height="15" fill="rgb(221,68,8)" fg:x="60744" fg:w="17"/><text x="40.4613%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="40.2113%" y="725" width="0.0113%" height="15" fill="rgb(254,180,31)" fg:x="60744" fg:w="17"/><text x="40.4613%" y="735.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="40.2120%" y="709" width="0.0106%" height="15" fill="rgb(247,130,50)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="40.2120%" y="693" width="0.0106%" height="15" fill="rgb(211,109,4)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="703.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="40.2120%" y="677" width="0.0106%" height="15" fill="rgb(238,50,21)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="687.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="40.2120%" y="661" width="0.0106%" height="15" fill="rgb(225,57,45)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="671.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="40.2120%" y="645" width="0.0106%" height="15" fill="rgb(209,196,50)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="655.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="40.2120%" y="629" width="0.0106%" height="15" fill="rgb(242,140,13)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="639.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="40.2120%" y="613" width="0.0106%" height="15" fill="rgb(217,111,7)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="623.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="40.2120%" y="597" width="0.0106%" height="15" fill="rgb(253,193,51)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="607.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="40.2120%" y="581" width="0.0106%" height="15" fill="rgb(252,70,29)" fg:x="60745" fg:w="16"/><text x="40.4620%" y="591.50"></text></g><g><title>Finalizer (22 samples, 0.01%)</title><rect x="40.2100%" y="885" width="0.0146%" height="15" fill="rgb(232,127,12)" fg:x="60742" fg:w="22"/><text x="40.4600%" y="895.50"></text></g><g><title>[perf-983083.map] (22 samples, 0.01%)</title><rect x="40.2100%" y="869" width="0.0146%" height="15" fill="rgb(211,180,21)" fg:x="60742" fg:w="22"/><text x="40.4600%" y="879.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="40.4814%" y="645" width="0.0232%" height="15" fill="rgb(229,72,13)" fg:x="61152" fg:w="35"/><text x="40.7314%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="40.4821%" y="629" width="0.0225%" height="15" fill="rgb(240,211,49)" fg:x="61153" fg:w="34"/><text x="40.7321%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.02%)</title><rect x="40.4834%" y="613" width="0.0212%" height="15" fill="rgb(219,149,40)" fg:x="61155" fg:w="32"/><text x="40.7334%" y="623.50"></text></g><g><title>native_write_msr (32 samples, 0.02%)</title><rect x="40.4834%" y="597" width="0.0212%" height="15" fill="rgb(210,127,46)" fg:x="61155" fg:w="32"/><text x="40.7334%" y="607.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.05%)</title><rect x="40.4668%" y="693" width="0.0450%" height="15" fill="rgb(220,106,7)" fg:x="61130" fg:w="68"/><text x="40.7168%" y="703.50"></text></g><g><title>schedule (64 samples, 0.04%)</title><rect x="40.4695%" y="677" width="0.0424%" height="15" fill="rgb(249,31,22)" fg:x="61134" fg:w="64"/><text x="40.7195%" y="687.50"></text></g><g><title>__schedule (63 samples, 0.04%)</title><rect x="40.4701%" y="661" width="0.0417%" height="15" fill="rgb(253,1,49)" fg:x="61135" fg:w="63"/><text x="40.7201%" y="671.50"></text></g><g><title>do_futex (78 samples, 0.05%)</title><rect x="40.4655%" y="725" width="0.0516%" height="15" fill="rgb(227,144,33)" fg:x="61128" fg:w="78"/><text x="40.7155%" y="735.50"></text></g><g><title>futex_wait (77 samples, 0.05%)</title><rect x="40.4662%" y="709" width="0.0510%" height="15" fill="rgb(249,163,44)" fg:x="61129" fg:w="77"/><text x="40.7162%" y="719.50"></text></g><g><title>do_syscall_64 (80 samples, 0.05%)</title><rect x="40.4648%" y="757" width="0.0530%" height="15" fill="rgb(234,15,39)" fg:x="61127" fg:w="80"/><text x="40.7148%" y="767.50"></text></g><g><title>__x64_sys_futex (80 samples, 0.05%)</title><rect x="40.4648%" y="741" width="0.0530%" height="15" fill="rgb(207,66,16)" fg:x="61127" fg:w="80"/><text x="40.7148%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (92 samples, 0.06%)</title><rect x="40.4582%" y="821" width="0.0609%" height="15" fill="rgb(233,112,24)" fg:x="61117" fg:w="92"/><text x="40.7082%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (92 samples, 0.06%)</title><rect x="40.4582%" y="805" width="0.0609%" height="15" fill="rgb(230,90,22)" fg:x="61117" fg:w="92"/><text x="40.7082%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (87 samples, 0.06%)</title><rect x="40.4615%" y="789" width="0.0576%" height="15" fill="rgb(229,61,13)" fg:x="61122" fg:w="87"/><text x="40.7115%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.05%)</title><rect x="40.4648%" y="773" width="0.0543%" height="15" fill="rgb(225,57,24)" fg:x="61127" fg:w="82"/><text x="40.7148%" y="783.50"></text></g><g><title>do_syscall_64 (30 samples, 0.02%)</title><rect x="40.5211%" y="757" width="0.0199%" height="15" fill="rgb(208,169,48)" fg:x="61212" fg:w="30"/><text x="40.7711%" y="767.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.02%)</title><rect x="40.5218%" y="741" width="0.0192%" height="15" fill="rgb(244,218,51)" fg:x="61213" fg:w="29"/><text x="40.7718%" y="751.50"></text></g><g><title>do_futex (29 samples, 0.02%)</title><rect x="40.5218%" y="725" width="0.0192%" height="15" fill="rgb(214,148,10)" fg:x="61213" fg:w="29"/><text x="40.7718%" y="735.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="40.5224%" y="709" width="0.0185%" height="15" fill="rgb(225,174,27)" fg:x="61214" fg:w="28"/><text x="40.7724%" y="719.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="40.5224%" y="693" width="0.0185%" height="15" fill="rgb(230,96,26)" fg:x="61214" fg:w="28"/><text x="40.7724%" y="703.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="40.5224%" y="677" width="0.0185%" height="15" fill="rgb(232,10,30)" fg:x="61214" fg:w="28"/><text x="40.7724%" y="687.50"></text></g><g><title>__schedule (28 samples, 0.02%)</title><rect x="40.5224%" y="661" width="0.0185%" height="15" fill="rgb(222,8,50)" fg:x="61214" fg:w="28"/><text x="40.7724%" y="671.50"></text></g><g><title>finish_task_switch (27 samples, 0.02%)</title><rect x="40.5231%" y="645" width="0.0179%" height="15" fill="rgb(213,81,27)" fg:x="61215" fg:w="27"/><text x="40.7731%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="40.5231%" y="629" width="0.0179%" height="15" fill="rgb(245,50,10)" fg:x="61215" fg:w="27"/><text x="40.7731%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.02%)</title><rect x="40.5244%" y="613" width="0.0165%" height="15" fill="rgb(216,100,18)" fg:x="61217" fg:w="25"/><text x="40.7744%" y="623.50"></text></g><g><title>native_write_msr (25 samples, 0.02%)</title><rect x="40.5244%" y="597" width="0.0165%" height="15" fill="rgb(236,147,54)" fg:x="61217" fg:w="25"/><text x="40.7744%" y="607.50"></text></g><g><title>__pthread_cond_wait (34 samples, 0.02%)</title><rect x="40.5191%" y="821" width="0.0225%" height="15" fill="rgb(205,143,26)" fg:x="61209" fg:w="34"/><text x="40.7691%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (34 samples, 0.02%)</title><rect x="40.5191%" y="805" width="0.0225%" height="15" fill="rgb(236,26,9)" fg:x="61209" fg:w="34"/><text x="40.7691%" y="815.50"></text></g><g><title>futex_wait_cancelable (33 samples, 0.02%)</title><rect x="40.5198%" y="789" width="0.0218%" height="15" fill="rgb(221,165,53)" fg:x="61210" fg:w="33"/><text x="40.7698%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="40.5211%" y="773" width="0.0205%" height="15" fill="rgb(214,110,17)" fg:x="61212" fg:w="31"/><text x="40.7711%" y="783.50"></text></g><g><title>Parker::park (152 samples, 0.10%)</title><rect x="40.4509%" y="837" width="0.1006%" height="15" fill="rgb(237,197,12)" fg:x="61106" fg:w="152"/><text x="40.7009%" y="847.50"></text></g><g><title>Unsafe_Park (160 samples, 0.11%)</title><rect x="40.4490%" y="853" width="0.1059%" height="15" fill="rgb(205,84,17)" fg:x="61103" fg:w="160"/><text x="40.6990%" y="863.50"></text></g><g><title>[perf-983083.map] (494 samples, 0.33%)</title><rect x="40.2298%" y="869" width="0.3270%" height="15" fill="rgb(237,18,45)" fg:x="60772" fg:w="494"/><text x="40.4798%" y="879.50"></text></g><g><title>ForkJoinPool.co (523 samples, 0.35%)</title><rect x="40.2245%" y="885" width="0.3462%" height="15" fill="rgb(221,87,14)" fg:x="60764" fg:w="523"/><text x="40.4745%" y="895.50"></text></g><g><title>__GI___clone (31 samples, 0.02%)</title><rect x="40.5721%" y="869" width="0.0205%" height="15" fill="rgb(238,186,15)" fg:x="61289" fg:w="31"/><text x="40.8221%" y="879.50"></text></g><g><title>start_thread (31 samples, 0.02%)</title><rect x="40.5721%" y="853" width="0.0205%" height="15" fill="rgb(208,115,11)" fg:x="61289" fg:w="31"/><text x="40.8221%" y="863.50"></text></g><g><title>thread_native_entry (31 samples, 0.02%)</title><rect x="40.5721%" y="837" width="0.0205%" height="15" fill="rgb(254,175,0)" fg:x="61289" fg:w="31"/><text x="40.8221%" y="847.50"></text></g><g><title>Thread::call_run (31 samples, 0.02%)</title><rect x="40.5721%" y="821" width="0.0205%" height="15" fill="rgb(227,24,42)" fg:x="61289" fg:w="31"/><text x="40.8221%" y="831.50"></text></g><g><title>GangWorker::loop (31 samples, 0.02%)</title><rect x="40.5721%" y="805" width="0.0205%" height="15" fill="rgb(223,211,37)" fg:x="61289" fg:w="31"/><text x="40.8221%" y="815.50"></text></g><g><title>G1_Conc#0 (34 samples, 0.02%)</title><rect x="40.5708%" y="885" width="0.0225%" height="15" fill="rgb(235,49,27)" fg:x="61287" fg:w="34"/><text x="40.8208%" y="895.50"></text></g><g><title>G1CMRootRegionScanTask::work (17 samples, 0.01%)</title><rect x="40.5979%" y="789" width="0.0113%" height="15" fill="rgb(254,97,51)" fg:x="61328" fg:w="17"/><text x="40.8479%" y="799.50"></text></g><g><title>G1ConcurrentMark::scan_root_region (17 samples, 0.01%)</title><rect x="40.5979%" y="773" width="0.0113%" height="15" fill="rgb(249,51,40)" fg:x="61328" fg:w="17"/><text x="40.8479%" y="783.50"></text></g><g><title>__GI___clone (34 samples, 0.02%)</title><rect x="40.5939%" y="869" width="0.0225%" height="15" fill="rgb(210,128,45)" fg:x="61322" fg:w="34"/><text x="40.8439%" y="879.50"></text></g><g><title>start_thread (34 samples, 0.02%)</title><rect x="40.5939%" y="853" width="0.0225%" height="15" fill="rgb(224,137,50)" fg:x="61322" fg:w="34"/><text x="40.8439%" y="863.50"></text></g><g><title>thread_native_entry (34 samples, 0.02%)</title><rect x="40.5939%" y="837" width="0.0225%" height="15" fill="rgb(242,15,9)" fg:x="61322" fg:w="34"/><text x="40.8439%" y="847.50"></text></g><g><title>Thread::call_run (34 samples, 0.02%)</title><rect x="40.5939%" y="821" width="0.0225%" height="15" fill="rgb(233,187,41)" fg:x="61322" fg:w="34"/><text x="40.8439%" y="831.50"></text></g><g><title>GangWorker::loop (34 samples, 0.02%)</title><rect x="40.5939%" y="805" width="0.0225%" height="15" fill="rgb(227,2,29)" fg:x="61322" fg:w="34"/><text x="40.8439%" y="815.50"></text></g><g><title>G1_Conc#1 (37 samples, 0.02%)</title><rect x="40.5933%" y="885" width="0.0245%" height="15" fill="rgb(222,70,3)" fg:x="61321" fg:w="37"/><text x="40.8433%" y="895.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (35 samples, 0.02%)</title><rect x="40.6317%" y="773" width="0.0232%" height="15" fill="rgb(213,11,42)" fg:x="61379" fg:w="35"/><text x="40.8817%" y="783.50"></text></g><g><title>G1RemSet::refine_card_concurrently (35 samples, 0.02%)</title><rect x="40.6317%" y="757" width="0.0232%" height="15" fill="rgb(225,150,9)" fg:x="61379" fg:w="35"/><text x="40.8817%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (51 samples, 0.03%)</title><rect x="40.6317%" y="789" width="0.0338%" height="15" fill="rgb(230,162,45)" fg:x="61379" fg:w="51"/><text x="40.8817%" y="799.50"></text></g><g><title>G1_Refine#0 (64 samples, 0.04%)</title><rect x="40.6237%" y="885" width="0.0424%" height="15" fill="rgb(222,14,52)" fg:x="61367" fg:w="64"/><text x="40.8737%" y="895.50"></text></g><g><title>__GI___clone (61 samples, 0.04%)</title><rect x="40.6257%" y="869" width="0.0404%" height="15" fill="rgb(254,198,14)" fg:x="61370" fg:w="61"/><text x="40.8757%" y="879.50"></text></g><g><title>start_thread (54 samples, 0.04%)</title><rect x="40.6303%" y="853" width="0.0357%" height="15" fill="rgb(220,217,30)" fg:x="61377" fg:w="54"/><text x="40.8803%" y="863.50"></text></g><g><title>thread_native_entry (53 samples, 0.04%)</title><rect x="40.6310%" y="837" width="0.0351%" height="15" fill="rgb(215,146,41)" fg:x="61378" fg:w="53"/><text x="40.8810%" y="847.50"></text></g><g><title>Thread::call_run (52 samples, 0.03%)</title><rect x="40.6317%" y="821" width="0.0344%" height="15" fill="rgb(217,27,36)" fg:x="61379" fg:w="52"/><text x="40.8817%" y="831.50"></text></g><g><title>ConcurrentGCThread::run (52 samples, 0.03%)</title><rect x="40.6317%" y="805" width="0.0344%" height="15" fill="rgb(219,218,39)" fg:x="61379" fg:w="52"/><text x="40.8817%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (22 samples, 0.01%)</title><rect x="40.7058%" y="741" width="0.0146%" height="15" fill="rgb(219,4,42)" fg:x="61491" fg:w="22"/><text x="40.9558%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (38 samples, 0.03%)</title><rect x="40.6985%" y="757" width="0.0252%" height="15" fill="rgb(249,119,36)" fg:x="61480" fg:w="38"/><text x="40.9485%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (100 samples, 0.07%)</title><rect x="40.6952%" y="773" width="0.0662%" height="15" fill="rgb(209,23,33)" fg:x="61475" fg:w="100"/><text x="40.9452%" y="783.50"></text></g><g><title>SpinPause (55 samples, 0.04%)</title><rect x="40.7250%" y="757" width="0.0364%" height="15" fill="rgb(211,10,0)" fg:x="61520" fg:w="55"/><text x="40.9750%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (31 samples, 0.02%)</title><rect x="40.7667%" y="677" width="0.0205%" height="15" fill="rgb(208,99,37)" fg:x="61583" fg:w="31"/><text x="41.0167%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (23 samples, 0.02%)</title><rect x="40.7720%" y="661" width="0.0152%" height="15" fill="rgb(213,132,31)" fg:x="61591" fg:w="23"/><text x="41.0220%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (39 samples, 0.03%)</title><rect x="40.7621%" y="693" width="0.0258%" height="15" fill="rgb(243,129,40)" fg:x="61576" fg:w="39"/><text x="41.0121%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (50 samples, 0.03%)</title><rect x="40.7614%" y="773" width="0.0331%" height="15" fill="rgb(210,66,33)" fg:x="61575" fg:w="50"/><text x="41.0114%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (50 samples, 0.03%)</title><rect x="40.7614%" y="757" width="0.0331%" height="15" fill="rgb(209,189,4)" fg:x="61575" fg:w="50"/><text x="41.0114%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (50 samples, 0.03%)</title><rect x="40.7614%" y="741" width="0.0331%" height="15" fill="rgb(214,107,37)" fg:x="61575" fg:w="50"/><text x="41.0114%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (50 samples, 0.03%)</title><rect x="40.7614%" y="725" width="0.0331%" height="15" fill="rgb(245,88,54)" fg:x="61575" fg:w="50"/><text x="41.0114%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (49 samples, 0.03%)</title><rect x="40.7621%" y="709" width="0.0324%" height="15" fill="rgb(205,146,20)" fg:x="61576" fg:w="49"/><text x="41.0121%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="40.7945%" y="693" width="0.0132%" height="15" fill="rgb(220,161,25)" fg:x="61625" fg:w="20"/><text x="41.0445%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (18 samples, 0.01%)</title><rect x="40.7958%" y="677" width="0.0119%" height="15" fill="rgb(215,152,15)" fg:x="61627" fg:w="18"/><text x="41.0458%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (23 samples, 0.02%)</title><rect x="40.7945%" y="709" width="0.0152%" height="15" fill="rgb(233,192,44)" fg:x="61625" fg:w="23"/><text x="41.0445%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (24 samples, 0.02%)</title><rect x="40.7945%" y="725" width="0.0159%" height="15" fill="rgb(240,170,46)" fg:x="61625" fg:w="24"/><text x="41.0445%" y="735.50"></text></g><g><title>G1RemSet::scan_rem_set (35 samples, 0.02%)</title><rect x="40.7945%" y="773" width="0.0232%" height="15" fill="rgb(207,104,33)" fg:x="61625" fg:w="35"/><text x="41.0445%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (35 samples, 0.02%)</title><rect x="40.7945%" y="757" width="0.0232%" height="15" fill="rgb(219,21,39)" fg:x="61625" fg:w="35"/><text x="41.0445%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (35 samples, 0.02%)</title><rect x="40.7945%" y="741" width="0.0232%" height="15" fill="rgb(214,133,29)" fg:x="61625" fg:w="35"/><text x="41.0445%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (16 samples, 0.01%)</title><rect x="40.8230%" y="677" width="0.0106%" height="15" fill="rgb(226,93,6)" fg:x="61668" fg:w="16"/><text x="41.0730%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (27 samples, 0.02%)</title><rect x="40.8177%" y="757" width="0.0179%" height="15" fill="rgb(252,222,34)" fg:x="61660" fg:w="27"/><text x="41.0677%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (27 samples, 0.02%)</title><rect x="40.8177%" y="741" width="0.0179%" height="15" fill="rgb(252,92,48)" fg:x="61660" fg:w="27"/><text x="41.0677%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (27 samples, 0.02%)</title><rect x="40.8177%" y="725" width="0.0179%" height="15" fill="rgb(245,223,24)" fg:x="61660" fg:w="27"/><text x="41.0677%" y="735.50"></text></g><g><title>JavaThread::oops_do (27 samples, 0.02%)</title><rect x="40.8177%" y="709" width="0.0179%" height="15" fill="rgb(205,176,3)" fg:x="61660" fg:w="27"/><text x="41.0677%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (19 samples, 0.01%)</title><rect x="40.8230%" y="693" width="0.0126%" height="15" fill="rgb(235,151,15)" fg:x="61668" fg:w="19"/><text x="41.0730%" y="703.50"></text></g><g><title>JNIHandles::oops_do (18 samples, 0.01%)</title><rect x="40.8356%" y="741" width="0.0119%" height="15" fill="rgb(237,209,11)" fg:x="61687" fg:w="18"/><text x="41.0856%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (18 samples, 0.01%)</title><rect x="40.8356%" y="725" width="0.0119%" height="15" fill="rgb(243,227,24)" fg:x="61687" fg:w="18"/><text x="41.0856%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (17 samples, 0.01%)</title><rect x="40.8362%" y="709" width="0.0113%" height="15" fill="rgb(239,193,16)" fg:x="61688" fg:w="17"/><text x="41.0862%" y="719.50"></text></g><g><title>G1RootProcessor::process_vm_roots (20 samples, 0.01%)</title><rect x="40.8356%" y="757" width="0.0132%" height="15" fill="rgb(231,27,9)" fg:x="61687" fg:w="20"/><text x="41.0856%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (63 samples, 0.04%)</title><rect x="40.8177%" y="773" width="0.0417%" height="15" fill="rgb(219,169,10)" fg:x="61660" fg:w="63"/><text x="41.0677%" y="783.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (16 samples, 0.01%)</title><rect x="40.8488%" y="757" width="0.0106%" height="15" fill="rgb(244,229,43)" fg:x="61707" fg:w="16"/><text x="41.0988%" y="767.50"></text></g><g><title>G1ParTask::work (249 samples, 0.16%)</title><rect x="40.6952%" y="789" width="0.1648%" height="15" fill="rgb(254,38,20)" fg:x="61475" fg:w="249"/><text x="40.9452%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (26 samples, 0.02%)</title><rect x="40.8620%" y="757" width="0.0172%" height="15" fill="rgb(250,47,30)" fg:x="61727" fg:w="26"/><text x="41.1120%" y="767.50"></text></g><g><title>SpinPause (25 samples, 0.02%)</title><rect x="40.8627%" y="741" width="0.0165%" height="15" fill="rgb(224,124,36)" fg:x="61728" fg:w="25"/><text x="41.1127%" y="751.50"></text></g><g><title>RefProcPhase2Task::work (28 samples, 0.02%)</title><rect x="40.8620%" y="773" width="0.0185%" height="15" fill="rgb(246,68,51)" fg:x="61727" fg:w="28"/><text x="41.1120%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (35 samples, 0.02%)</title><rect x="40.8620%" y="789" width="0.0232%" height="15" fill="rgb(253,43,49)" fg:x="61727" fg:w="35"/><text x="41.1120%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (19 samples, 0.01%)</title><rect x="40.8852%" y="789" width="0.0126%" height="15" fill="rgb(219,54,36)" fg:x="61762" fg:w="19"/><text x="41.1352%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.03%)</title><rect x="40.9031%" y="565" width="0.0331%" height="15" fill="rgb(227,133,34)" fg:x="61789" fg:w="50"/><text x="41.1531%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.03%)</title><rect x="40.9031%" y="549" width="0.0331%" height="15" fill="rgb(247,227,15)" fg:x="61789" fg:w="50"/><text x="41.1531%" y="559.50"></text></g><g><title>native_write_msr (50 samples, 0.03%)</title><rect x="40.9031%" y="533" width="0.0331%" height="15" fill="rgb(229,96,14)" fg:x="61789" fg:w="50"/><text x="41.1531%" y="543.50"></text></g><g><title>finish_task_switch (54 samples, 0.04%)</title><rect x="40.9024%" y="581" width="0.0357%" height="15" fill="rgb(220,79,17)" fg:x="61788" fg:w="54"/><text x="41.1524%" y="591.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.04%)</title><rect x="40.9004%" y="629" width="0.0424%" height="15" fill="rgb(205,131,53)" fg:x="61785" fg:w="64"/><text x="41.1504%" y="639.50"></text></g><g><title>schedule (64 samples, 0.04%)</title><rect x="40.9004%" y="613" width="0.0424%" height="15" fill="rgb(209,50,29)" fg:x="61785" fg:w="64"/><text x="41.1504%" y="623.50"></text></g><g><title>__schedule (64 samples, 0.04%)</title><rect x="40.9004%" y="597" width="0.0424%" height="15" fill="rgb(245,86,46)" fg:x="61785" fg:w="64"/><text x="41.1504%" y="607.50"></text></g><g><title>__GI___clone (381 samples, 0.25%)</title><rect x="40.6912%" y="869" width="0.2522%" height="15" fill="rgb(235,66,46)" fg:x="61469" fg:w="381"/><text x="40.9412%" y="879.50"></text></g><g><title>start_thread (381 samples, 0.25%)</title><rect x="40.6912%" y="853" width="0.2522%" height="15" fill="rgb(232,148,31)" fg:x="61469" fg:w="381"/><text x="40.9412%" y="863.50"></text></g><g><title>thread_native_entry (381 samples, 0.25%)</title><rect x="40.6912%" y="837" width="0.2522%" height="15" fill="rgb(217,149,8)" fg:x="61469" fg:w="381"/><text x="40.9412%" y="847.50"></text></g><g><title>Thread::call_run (381 samples, 0.25%)</title><rect x="40.6912%" y="821" width="0.2522%" height="15" fill="rgb(209,183,11)" fg:x="61469" fg:w="381"/><text x="40.9412%" y="831.50"></text></g><g><title>GangWorker::loop (381 samples, 0.25%)</title><rect x="40.6912%" y="805" width="0.2522%" height="15" fill="rgb(208,55,20)" fg:x="61469" fg:w="381"/><text x="40.9412%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (68 samples, 0.05%)</title><rect x="40.8984%" y="789" width="0.0450%" height="15" fill="rgb(218,39,14)" fg:x="61782" fg:w="68"/><text x="41.1484%" y="799.50"></text></g><g><title>PosixSemaphore::wait (68 samples, 0.05%)</title><rect x="40.8984%" y="773" width="0.0450%" height="15" fill="rgb(216,169,33)" fg:x="61782" fg:w="68"/><text x="41.1484%" y="783.50"></text></g><g><title>__new_sem_wait_slow (68 samples, 0.05%)</title><rect x="40.8984%" y="757" width="0.0450%" height="15" fill="rgb(233,80,24)" fg:x="61782" fg:w="68"/><text x="41.1484%" y="767.50"></text></g><g><title>do_futex_wait (66 samples, 0.04%)</title><rect x="40.8998%" y="741" width="0.0437%" height="15" fill="rgb(213,179,31)" fg:x="61784" fg:w="66"/><text x="41.1498%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (66 samples, 0.04%)</title><rect x="40.8998%" y="725" width="0.0437%" height="15" fill="rgb(209,19,5)" fg:x="61784" fg:w="66"/><text x="41.1498%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.04%)</title><rect x="40.9004%" y="709" width="0.0430%" height="15" fill="rgb(219,18,35)" fg:x="61785" fg:w="65"/><text x="41.1504%" y="719.50"></text></g><g><title>do_syscall_64 (65 samples, 0.04%)</title><rect x="40.9004%" y="693" width="0.0430%" height="15" fill="rgb(209,169,16)" fg:x="61785" fg:w="65"/><text x="41.1504%" y="703.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.04%)</title><rect x="40.9004%" y="677" width="0.0430%" height="15" fill="rgb(245,90,51)" fg:x="61785" fg:w="65"/><text x="41.1504%" y="687.50"></text></g><g><title>do_futex (65 samples, 0.04%)</title><rect x="40.9004%" y="661" width="0.0430%" height="15" fill="rgb(220,99,45)" fg:x="61785" fg:w="65"/><text x="41.1504%" y="671.50"></text></g><g><title>futex_wait (65 samples, 0.04%)</title><rect x="40.9004%" y="645" width="0.0430%" height="15" fill="rgb(249,89,25)" fg:x="61785" fg:w="65"/><text x="41.1504%" y="655.50"></text></g><g><title>GC_Thread#0 (390 samples, 0.26%)</title><rect x="40.6873%" y="885" width="0.2582%" height="15" fill="rgb(239,193,0)" fg:x="61463" fg:w="390"/><text x="40.9373%" y="895.50"></text></g><g><title>G1ParScanThreadState::trim_queue (24 samples, 0.02%)</title><rect x="40.9593%" y="757" width="0.0159%" height="15" fill="rgb(231,126,1)" fg:x="61874" fg:w="24"/><text x="41.2093%" y="767.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="40.9640%" y="741" width="0.0113%" height="15" fill="rgb(243,166,3)" fg:x="61881" fg:w="17"/><text x="41.2140%" y="751.50"></text></g><g><title>SpinPause (24 samples, 0.02%)</title><rect x="40.9766%" y="757" width="0.0159%" height="15" fill="rgb(223,22,34)" fg:x="61900" fg:w="24"/><text x="41.2266%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (58 samples, 0.04%)</title><rect x="40.9547%" y="773" width="0.0384%" height="15" fill="rgb(251,52,51)" fg:x="61867" fg:w="58"/><text x="41.2047%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (30 samples, 0.02%)</title><rect x="40.9938%" y="693" width="0.0199%" height="15" fill="rgb(221,165,28)" fg:x="61926" fg:w="30"/><text x="41.2438%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (24 samples, 0.02%)</title><rect x="40.9977%" y="677" width="0.0159%" height="15" fill="rgb(218,121,47)" fg:x="61932" fg:w="24"/><text x="41.2477%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (19 samples, 0.01%)</title><rect x="41.0010%" y="661" width="0.0126%" height="15" fill="rgb(209,120,9)" fg:x="61937" fg:w="19"/><text x="41.2510%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (32 samples, 0.02%)</title><rect x="40.9938%" y="773" width="0.0212%" height="15" fill="rgb(236,68,12)" fg:x="61926" fg:w="32"/><text x="41.2438%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (32 samples, 0.02%)</title><rect x="40.9938%" y="757" width="0.0212%" height="15" fill="rgb(225,194,26)" fg:x="61926" fg:w="32"/><text x="41.2438%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (32 samples, 0.02%)</title><rect x="40.9938%" y="741" width="0.0212%" height="15" fill="rgb(231,84,39)" fg:x="61926" fg:w="32"/><text x="41.2438%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (32 samples, 0.02%)</title><rect x="40.9938%" y="725" width="0.0212%" height="15" fill="rgb(210,11,45)" fg:x="61926" fg:w="32"/><text x="41.2438%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (32 samples, 0.02%)</title><rect x="40.9938%" y="709" width="0.0212%" height="15" fill="rgb(224,54,52)" fg:x="61926" fg:w="32"/><text x="41.2438%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (21 samples, 0.01%)</title><rect x="41.0149%" y="773" width="0.0139%" height="15" fill="rgb(238,102,14)" fg:x="61958" fg:w="21"/><text x="41.2649%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (21 samples, 0.01%)</title><rect x="41.0149%" y="757" width="0.0139%" height="15" fill="rgb(243,160,52)" fg:x="61958" fg:w="21"/><text x="41.2649%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (21 samples, 0.01%)</title><rect x="41.0149%" y="741" width="0.0139%" height="15" fill="rgb(216,114,19)" fg:x="61958" fg:w="21"/><text x="41.2649%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (21 samples, 0.01%)</title><rect x="41.0295%" y="757" width="0.0139%" height="15" fill="rgb(244,166,37)" fg:x="61980" fg:w="21"/><text x="41.2795%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (21 samples, 0.01%)</title><rect x="41.0295%" y="741" width="0.0139%" height="15" fill="rgb(246,29,44)" fg:x="61980" fg:w="21"/><text x="41.2795%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (21 samples, 0.01%)</title><rect x="41.0295%" y="725" width="0.0139%" height="15" fill="rgb(215,56,53)" fg:x="61980" fg:w="21"/><text x="41.2795%" y="735.50"></text></g><g><title>JavaThread::oops_do (21 samples, 0.01%)</title><rect x="41.0295%" y="709" width="0.0139%" height="15" fill="rgb(217,60,2)" fg:x="61980" fg:w="21"/><text x="41.2795%" y="719.50"></text></g><g><title>G1ParTask::work (160 samples, 0.11%)</title><rect x="40.9547%" y="789" width="0.1059%" height="15" fill="rgb(207,26,24)" fg:x="61867" fg:w="160"/><text x="41.2047%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (48 samples, 0.03%)</title><rect x="41.0288%" y="773" width="0.0318%" height="15" fill="rgb(252,210,15)" fg:x="61979" fg:w="48"/><text x="41.2788%" y="783.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (25 samples, 0.02%)</title><rect x="41.0441%" y="757" width="0.0165%" height="15" fill="rgb(253,209,26)" fg:x="62002" fg:w="25"/><text x="41.2941%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (18 samples, 0.01%)</title><rect x="41.0487%" y="741" width="0.0119%" height="15" fill="rgb(238,170,14)" fg:x="62009" fg:w="18"/><text x="41.2987%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (16 samples, 0.01%)</title><rect x="41.0500%" y="725" width="0.0106%" height="15" fill="rgb(216,178,15)" fg:x="62011" fg:w="16"/><text x="41.3000%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (28 samples, 0.02%)</title><rect x="41.0646%" y="773" width="0.0185%" height="15" fill="rgb(250,197,2)" fg:x="62033" fg:w="28"/><text x="41.3146%" y="783.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (28 samples, 0.02%)</title><rect x="41.0646%" y="757" width="0.0185%" height="15" fill="rgb(212,70,42)" fg:x="62033" fg:w="28"/><text x="41.3146%" y="767.50"></text></g><g><title>SpinPause (26 samples, 0.02%)</title><rect x="41.0659%" y="741" width="0.0172%" height="15" fill="rgb(227,213,9)" fg:x="62035" fg:w="26"/><text x="41.3159%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (46 samples, 0.03%)</title><rect x="41.0646%" y="789" width="0.0305%" height="15" fill="rgb(245,99,25)" fg:x="62033" fg:w="46"/><text x="41.3146%" y="799.50"></text></g><g><title>RefProcPhase3Task::work (18 samples, 0.01%)</title><rect x="41.0831%" y="773" width="0.0119%" height="15" fill="rgb(250,82,29)" fg:x="62061" fg:w="18"/><text x="41.3331%" y="783.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (18 samples, 0.01%)</title><rect x="41.0831%" y="757" width="0.0119%" height="15" fill="rgb(241,226,54)" fg:x="62061" fg:w="18"/><text x="41.3331%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (18 samples, 0.01%)</title><rect x="41.0831%" y="741" width="0.0119%" height="15" fill="rgb(221,99,41)" fg:x="62061" fg:w="18"/><text x="41.3331%" y="751.50"></text></g><g><title>SpinPause (18 samples, 0.01%)</title><rect x="41.0831%" y="725" width="0.0119%" height="15" fill="rgb(213,90,21)" fg:x="62061" fg:w="18"/><text x="41.3331%" y="735.50"></text></g><g><title>ParallelSPCleanupTask::work (16 samples, 0.01%)</title><rect x="41.0957%" y="789" width="0.0106%" height="15" fill="rgb(205,208,24)" fg:x="62080" fg:w="16"/><text x="41.3457%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.05%)</title><rect x="41.1123%" y="565" width="0.0496%" height="15" fill="rgb(246,31,12)" fg:x="62105" fg:w="75"/><text x="41.3623%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.05%)</title><rect x="41.1123%" y="549" width="0.0496%" height="15" fill="rgb(213,154,6)" fg:x="62105" fg:w="75"/><text x="41.3623%" y="559.50"></text></g><g><title>native_write_msr (74 samples, 0.05%)</title><rect x="41.1129%" y="533" width="0.0490%" height="15" fill="rgb(222,163,29)" fg:x="62106" fg:w="74"/><text x="41.3629%" y="543.50"></text></g><g><title>finish_task_switch (77 samples, 0.05%)</title><rect x="41.1123%" y="581" width="0.0510%" height="15" fill="rgb(227,201,8)" fg:x="62105" fg:w="77"/><text x="41.3623%" y="591.50"></text></g><g><title>futex_wait_queue_me (91 samples, 0.06%)</title><rect x="41.1089%" y="629" width="0.0602%" height="15" fill="rgb(233,9,32)" fg:x="62100" fg:w="91"/><text x="41.3589%" y="639.50"></text></g><g><title>schedule (90 samples, 0.06%)</title><rect x="41.1096%" y="613" width="0.0596%" height="15" fill="rgb(217,54,24)" fg:x="62101" fg:w="90"/><text x="41.3596%" y="623.50"></text></g><g><title>__schedule (90 samples, 0.06%)</title><rect x="41.1096%" y="597" width="0.0596%" height="15" fill="rgb(235,192,0)" fg:x="62101" fg:w="90"/><text x="41.3596%" y="607.50"></text></g><g><title>do_syscall_64 (95 samples, 0.06%)</title><rect x="41.1070%" y="693" width="0.0629%" height="15" fill="rgb(235,45,9)" fg:x="62097" fg:w="95"/><text x="41.3570%" y="703.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.06%)</title><rect x="41.1076%" y="677" width="0.0622%" height="15" fill="rgb(246,42,40)" fg:x="62098" fg:w="94"/><text x="41.3576%" y="687.50"></text></g><g><title>do_futex (93 samples, 0.06%)</title><rect x="41.1083%" y="661" width="0.0616%" height="15" fill="rgb(248,111,24)" fg:x="62099" fg:w="93"/><text x="41.3583%" y="671.50"></text></g><g><title>futex_wait (93 samples, 0.06%)</title><rect x="41.1083%" y="645" width="0.0616%" height="15" fill="rgb(249,65,22)" fg:x="62099" fg:w="93"/><text x="41.3583%" y="655.50"></text></g><g><title>__GI___clone (332 samples, 0.22%)</title><rect x="40.9514%" y="869" width="0.2198%" height="15" fill="rgb(238,111,51)" fg:x="61862" fg:w="332"/><text x="41.2014%" y="879.50"></text></g><g><title>start_thread (332 samples, 0.22%)</title><rect x="40.9514%" y="853" width="0.2198%" height="15" fill="rgb(250,118,22)" fg:x="61862" fg:w="332"/><text x="41.2014%" y="863.50"></text></g><g><title>thread_native_entry (332 samples, 0.22%)</title><rect x="40.9514%" y="837" width="0.2198%" height="15" fill="rgb(234,84,26)" fg:x="61862" fg:w="332"/><text x="41.2014%" y="847.50"></text></g><g><title>Thread::call_run (332 samples, 0.22%)</title><rect x="40.9514%" y="821" width="0.2198%" height="15" fill="rgb(243,172,12)" fg:x="61862" fg:w="332"/><text x="41.2014%" y="831.50"></text></g><g><title>GangWorker::loop (332 samples, 0.22%)</title><rect x="40.9514%" y="805" width="0.2198%" height="15" fill="rgb(236,150,49)" fg:x="61862" fg:w="332"/><text x="41.2014%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (97 samples, 0.06%)</title><rect x="41.1070%" y="789" width="0.0642%" height="15" fill="rgb(225,197,26)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="799.50"></text></g><g><title>PosixSemaphore::wait (97 samples, 0.06%)</title><rect x="41.1070%" y="773" width="0.0642%" height="15" fill="rgb(214,17,42)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="783.50"></text></g><g><title>__new_sem_wait_slow (97 samples, 0.06%)</title><rect x="41.1070%" y="757" width="0.0642%" height="15" fill="rgb(224,165,40)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="767.50"></text></g><g><title>do_futex_wait (97 samples, 0.06%)</title><rect x="41.1070%" y="741" width="0.0642%" height="15" fill="rgb(246,100,4)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (97 samples, 0.06%)</title><rect x="41.1070%" y="725" width="0.0642%" height="15" fill="rgb(222,103,0)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (97 samples, 0.06%)</title><rect x="41.1070%" y="709" width="0.0642%" height="15" fill="rgb(227,189,26)" fg:x="62097" fg:w="97"/><text x="41.3570%" y="719.50"></text></g><g><title>GC_Thread#1 (342 samples, 0.23%)</title><rect x="40.9454%" y="885" width="0.2264%" height="15" fill="rgb(214,202,17)" fg:x="61853" fg:w="342"/><text x="41.1954%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (18 samples, 0.01%)</title><rect x="41.1917%" y="741" width="0.0119%" height="15" fill="rgb(229,111,3)" fg:x="62225" fg:w="18"/><text x="41.4417%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (30 samples, 0.02%)</title><rect x="41.1844%" y="757" width="0.0199%" height="15" fill="rgb(229,172,15)" fg:x="62214" fg:w="30"/><text x="41.4344%" y="767.50"></text></g><g><title>SpinPause (20 samples, 0.01%)</title><rect x="41.2063%" y="757" width="0.0132%" height="15" fill="rgb(230,224,35)" fg:x="62247" fg:w="20"/><text x="41.4563%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (59 samples, 0.04%)</title><rect x="41.1811%" y="773" width="0.0391%" height="15" fill="rgb(251,141,6)" fg:x="62209" fg:w="59"/><text x="41.4311%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="41.2268%" y="693" width="0.0132%" height="15" fill="rgb(225,208,6)" fg:x="62278" fg:w="20"/><text x="41.4768%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (28 samples, 0.02%)</title><rect x="41.2261%" y="725" width="0.0185%" height="15" fill="rgb(246,181,16)" fg:x="62277" fg:w="28"/><text x="41.4761%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (27 samples, 0.02%)</title><rect x="41.2268%" y="709" width="0.0179%" height="15" fill="rgb(227,129,36)" fg:x="62278" fg:w="27"/><text x="41.4768%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (39 samples, 0.03%)</title><rect x="41.2261%" y="773" width="0.0258%" height="15" fill="rgb(248,117,24)" fg:x="62277" fg:w="39"/><text x="41.4761%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (39 samples, 0.03%)</title><rect x="41.2261%" y="757" width="0.0258%" height="15" fill="rgb(214,185,35)" fg:x="62277" fg:w="39"/><text x="41.4761%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (39 samples, 0.03%)</title><rect x="41.2261%" y="741" width="0.0258%" height="15" fill="rgb(236,150,34)" fg:x="62277" fg:w="39"/><text x="41.4761%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (31 samples, 0.02%)</title><rect x="41.2645%" y="677" width="0.0205%" height="15" fill="rgb(243,228,27)" fg:x="62335" fg:w="31"/><text x="41.5145%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (23 samples, 0.02%)</title><rect x="41.2698%" y="661" width="0.0152%" height="15" fill="rgb(245,77,44)" fg:x="62343" fg:w="23"/><text x="41.5198%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (16 samples, 0.01%)</title><rect x="41.2744%" y="645" width="0.0106%" height="15" fill="rgb(235,214,42)" fg:x="62350" fg:w="16"/><text x="41.5244%" y="655.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (17 samples, 0.01%)</title><rect x="41.3327%" y="613" width="0.0113%" height="15" fill="rgb(221,74,3)" fg:x="62438" fg:w="17"/><text x="41.5827%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (83 samples, 0.05%)</title><rect x="41.3003%" y="645" width="0.0549%" height="15" fill="rgb(206,121,29)" fg:x="62389" fg:w="83"/><text x="41.5503%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (66 samples, 0.04%)</title><rect x="41.3115%" y="629" width="0.0437%" height="15" fill="rgb(249,131,53)" fg:x="62406" fg:w="66"/><text x="41.5615%" y="639.50"></text></g><g><title>InterpreterOopMap::iterate_oop (111 samples, 0.07%)</title><rect x="41.2850%" y="677" width="0.0735%" height="15" fill="rgb(236,170,29)" fg:x="62366" fg:w="111"/><text x="41.5350%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (110 samples, 0.07%)</title><rect x="41.2857%" y="661" width="0.0728%" height="15" fill="rgb(247,96,15)" fg:x="62367" fg:w="110"/><text x="41.5357%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (150 samples, 0.10%)</title><rect x="41.2645%" y="693" width="0.0993%" height="15" fill="rgb(211,210,7)" fg:x="62335" fg:w="150"/><text x="41.5145%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (165 samples, 0.11%)</title><rect x="41.2552%" y="757" width="0.1092%" height="15" fill="rgb(240,88,50)" fg:x="62321" fg:w="165"/><text x="41.5052%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (165 samples, 0.11%)</title><rect x="41.2552%" y="741" width="0.1092%" height="15" fill="rgb(209,229,26)" fg:x="62321" fg:w="165"/><text x="41.5052%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (165 samples, 0.11%)</title><rect x="41.2552%" y="725" width="0.1092%" height="15" fill="rgb(210,68,23)" fg:x="62321" fg:w="165"/><text x="41.5052%" y="735.50"></text></g><g><title>JavaThread::oops_do (165 samples, 0.11%)</title><rect x="41.2552%" y="709" width="0.1092%" height="15" fill="rgb(229,180,13)" fg:x="62321" fg:w="165"/><text x="41.5052%" y="719.50"></text></g><g><title>G1ParTask::work (283 samples, 0.19%)</title><rect x="41.1811%" y="789" width="0.1873%" height="15" fill="rgb(236,53,44)" fg:x="62209" fg:w="283"/><text x="41.4311%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (176 samples, 0.12%)</title><rect x="41.2519%" y="773" width="0.1165%" height="15" fill="rgb(244,214,29)" fg:x="62316" fg:w="176"/><text x="41.5019%" y="783.50"></text></g><g><title>RefProcPhase2Task::work (16 samples, 0.01%)</title><rect x="41.3744%" y="773" width="0.0106%" height="15" fill="rgb(220,75,29)" fg:x="62501" fg:w="16"/><text x="41.6244%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (33 samples, 0.02%)</title><rect x="41.3744%" y="789" width="0.0218%" height="15" fill="rgb(214,183,37)" fg:x="62501" fg:w="33"/><text x="41.6244%" y="799.50"></text></g><g><title>RefProcPhase3Task::work (17 samples, 0.01%)</title><rect x="41.3850%" y="773" width="0.0113%" height="15" fill="rgb(239,117,29)" fg:x="62517" fg:w="17"/><text x="41.6350%" y="783.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (17 samples, 0.01%)</title><rect x="41.3850%" y="757" width="0.0113%" height="15" fill="rgb(237,171,35)" fg:x="62517" fg:w="17"/><text x="41.6350%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (17 samples, 0.01%)</title><rect x="41.3850%" y="741" width="0.0113%" height="15" fill="rgb(229,178,53)" fg:x="62517" fg:w="17"/><text x="41.6350%" y="751.50"></text></g><g><title>SpinPause (17 samples, 0.01%)</title><rect x="41.3850%" y="725" width="0.0113%" height="15" fill="rgb(210,102,19)" fg:x="62517" fg:w="17"/><text x="41.6350%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.03%)</title><rect x="41.4148%" y="565" width="0.0324%" height="15" fill="rgb(235,127,22)" fg:x="62562" fg:w="49"/><text x="41.6648%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.03%)</title><rect x="41.4148%" y="549" width="0.0324%" height="15" fill="rgb(244,31,31)" fg:x="62562" fg:w="49"/><text x="41.6648%" y="559.50"></text></g><g><title>native_write_msr (49 samples, 0.03%)</title><rect x="41.4148%" y="533" width="0.0324%" height="15" fill="rgb(231,43,21)" fg:x="62562" fg:w="49"/><text x="41.6648%" y="543.50"></text></g><g><title>finish_task_switch (54 samples, 0.04%)</title><rect x="41.4128%" y="581" width="0.0357%" height="15" fill="rgb(217,131,35)" fg:x="62559" fg:w="54"/><text x="41.6628%" y="591.50"></text></g><g><title>do_syscall_64 (70 samples, 0.05%)</title><rect x="41.4068%" y="693" width="0.0463%" height="15" fill="rgb(221,149,4)" fg:x="62550" fg:w="70"/><text x="41.6568%" y="703.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.05%)</title><rect x="41.4068%" y="677" width="0.0463%" height="15" fill="rgb(232,170,28)" fg:x="62550" fg:w="70"/><text x="41.6568%" y="687.50"></text></g><g><title>do_futex (70 samples, 0.05%)</title><rect x="41.4068%" y="661" width="0.0463%" height="15" fill="rgb(238,56,10)" fg:x="62550" fg:w="70"/><text x="41.6568%" y="671.50"></text></g><g><title>futex_wait (68 samples, 0.05%)</title><rect x="41.4082%" y="645" width="0.0450%" height="15" fill="rgb(235,196,14)" fg:x="62552" fg:w="68"/><text x="41.6582%" y="655.50"></text></g><g><title>futex_wait_queue_me (66 samples, 0.04%)</title><rect x="41.4095%" y="629" width="0.0437%" height="15" fill="rgb(216,45,48)" fg:x="62554" fg:w="66"/><text x="41.6595%" y="639.50"></text></g><g><title>schedule (66 samples, 0.04%)</title><rect x="41.4095%" y="613" width="0.0437%" height="15" fill="rgb(238,213,17)" fg:x="62554" fg:w="66"/><text x="41.6595%" y="623.50"></text></g><g><title>__schedule (66 samples, 0.04%)</title><rect x="41.4095%" y="597" width="0.0437%" height="15" fill="rgb(212,13,2)" fg:x="62554" fg:w="66"/><text x="41.6595%" y="607.50"></text></g><g><title>__GI___clone (417 samples, 0.28%)</title><rect x="41.1785%" y="869" width="0.2760%" height="15" fill="rgb(240,114,20)" fg:x="62205" fg:w="417"/><text x="41.4285%" y="879.50"></text></g><g><title>start_thread (417 samples, 0.28%)</title><rect x="41.1785%" y="853" width="0.2760%" height="15" fill="rgb(228,41,40)" fg:x="62205" fg:w="417"/><text x="41.4285%" y="863.50"></text></g><g><title>thread_native_entry (417 samples, 0.28%)</title><rect x="41.1785%" y="837" width="0.2760%" height="15" fill="rgb(244,132,35)" fg:x="62205" fg:w="417"/><text x="41.4285%" y="847.50"></text></g><g><title>Thread::call_run (417 samples, 0.28%)</title><rect x="41.1785%" y="821" width="0.2760%" height="15" fill="rgb(253,189,4)" fg:x="62205" fg:w="417"/><text x="41.4285%" y="831.50"></text></g><g><title>GangWorker::loop (417 samples, 0.28%)</title><rect x="41.1785%" y="805" width="0.2760%" height="15" fill="rgb(224,37,19)" fg:x="62205" fg:w="417"/><text x="41.4285%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (73 samples, 0.05%)</title><rect x="41.4062%" y="789" width="0.0483%" height="15" fill="rgb(235,223,18)" fg:x="62549" fg:w="73"/><text x="41.6562%" y="799.50"></text></g><g><title>PosixSemaphore::wait (73 samples, 0.05%)</title><rect x="41.4062%" y="773" width="0.0483%" height="15" fill="rgb(235,163,25)" fg:x="62549" fg:w="73"/><text x="41.6562%" y="783.50"></text></g><g><title>__new_sem_wait_slow (73 samples, 0.05%)</title><rect x="41.4062%" y="757" width="0.0483%" height="15" fill="rgb(217,145,28)" fg:x="62549" fg:w="73"/><text x="41.6562%" y="767.50"></text></g><g><title>do_futex_wait (72 samples, 0.05%)</title><rect x="41.4068%" y="741" width="0.0477%" height="15" fill="rgb(223,223,32)" fg:x="62550" fg:w="72"/><text x="41.6568%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (72 samples, 0.05%)</title><rect x="41.4068%" y="725" width="0.0477%" height="15" fill="rgb(227,189,39)" fg:x="62550" fg:w="72"/><text x="41.6568%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.05%)</title><rect x="41.4068%" y="709" width="0.0477%" height="15" fill="rgb(248,10,22)" fg:x="62550" fg:w="72"/><text x="41.6568%" y="719.50"></text></g><g><title>GC_Thread#2 (429 samples, 0.28%)</title><rect x="41.1718%" y="885" width="0.2840%" height="15" fill="rgb(248,46,39)" fg:x="62195" fg:w="429"/><text x="41.4218%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="41.4717%" y="741" width="0.0113%" height="15" fill="rgb(248,113,48)" fg:x="62648" fg:w="17"/><text x="41.7217%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (23 samples, 0.02%)</title><rect x="41.4691%" y="757" width="0.0152%" height="15" fill="rgb(245,16,25)" fg:x="62644" fg:w="23"/><text x="41.7191%" y="767.50"></text></g><g><title>SpinPause (36 samples, 0.02%)</title><rect x="41.4869%" y="757" width="0.0238%" height="15" fill="rgb(249,152,16)" fg:x="62671" fg:w="36"/><text x="41.7369%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (67 samples, 0.04%)</title><rect x="41.4671%" y="773" width="0.0444%" height="15" fill="rgb(250,16,1)" fg:x="62641" fg:w="67"/><text x="41.7171%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (16 samples, 0.01%)</title><rect x="41.5121%" y="773" width="0.0106%" height="15" fill="rgb(249,138,3)" fg:x="62709" fg:w="16"/><text x="41.7621%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (16 samples, 0.01%)</title><rect x="41.5121%" y="757" width="0.0106%" height="15" fill="rgb(227,71,41)" fg:x="62709" fg:w="16"/><text x="41.7621%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (16 samples, 0.01%)</title><rect x="41.5121%" y="741" width="0.0106%" height="15" fill="rgb(209,184,23)" fg:x="62709" fg:w="16"/><text x="41.7621%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (16 samples, 0.01%)</title><rect x="41.5121%" y="725" width="0.0106%" height="15" fill="rgb(223,215,31)" fg:x="62709" fg:w="16"/><text x="41.7621%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (16 samples, 0.01%)</title><rect x="41.5121%" y="709" width="0.0106%" height="15" fill="rgb(210,146,28)" fg:x="62709" fg:w="16"/><text x="41.7621%" y="719.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (78 samples, 0.05%)</title><rect x="41.5300%" y="741" width="0.0516%" height="15" fill="rgb(209,183,41)" fg:x="62736" fg:w="78"/><text x="41.7800%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (78 samples, 0.05%)</title><rect x="41.5300%" y="725" width="0.0516%" height="15" fill="rgb(209,224,45)" fg:x="62736" fg:w="78"/><text x="41.7800%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (78 samples, 0.05%)</title><rect x="41.5300%" y="709" width="0.0516%" height="15" fill="rgb(224,209,51)" fg:x="62736" fg:w="78"/><text x="41.7800%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (67 samples, 0.04%)</title><rect x="41.5372%" y="693" width="0.0444%" height="15" fill="rgb(223,17,39)" fg:x="62747" fg:w="67"/><text x="41.7872%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (57 samples, 0.04%)</title><rect x="41.5439%" y="677" width="0.0377%" height="15" fill="rgb(234,204,37)" fg:x="62757" fg:w="57"/><text x="41.7939%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (38 samples, 0.03%)</title><rect x="41.5564%" y="661" width="0.0252%" height="15" fill="rgb(236,120,5)" fg:x="62776" fg:w="38"/><text x="41.8064%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (84 samples, 0.06%)</title><rect x="41.5300%" y="757" width="0.0556%" height="15" fill="rgb(248,97,27)" fg:x="62736" fg:w="84"/><text x="41.7800%" y="767.50"></text></g><g><title>G1ParTask::work (182 samples, 0.12%)</title><rect x="41.4671%" y="789" width="0.1205%" height="15" fill="rgb(240,66,17)" fg:x="62641" fg:w="182"/><text x="41.7171%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (89 samples, 0.06%)</title><rect x="41.5286%" y="773" width="0.0589%" height="15" fill="rgb(210,79,3)" fg:x="62734" fg:w="89"/><text x="41.7786%" y="783.50"></text></g><g><title>SpinPause (24 samples, 0.02%)</title><rect x="41.5955%" y="741" width="0.0159%" height="15" fill="rgb(214,176,27)" fg:x="62835" fg:w="24"/><text x="41.8455%" y="751.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (27 samples, 0.02%)</title><rect x="41.5942%" y="757" width="0.0179%" height="15" fill="rgb(235,185,3)" fg:x="62833" fg:w="27"/><text x="41.8442%" y="767.50"></text></g><g><title>RefProcPhase2Task::work (29 samples, 0.02%)</title><rect x="41.5942%" y="773" width="0.0192%" height="15" fill="rgb(227,24,12)" fg:x="62833" fg:w="29"/><text x="41.8442%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (44 samples, 0.03%)</title><rect x="41.5942%" y="789" width="0.0291%" height="15" fill="rgb(252,169,48)" fg:x="62833" fg:w="44"/><text x="41.8442%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (88 samples, 0.06%)</title><rect x="41.6465%" y="565" width="0.0583%" height="15" fill="rgb(212,65,1)" fg:x="62912" fg:w="88"/><text x="41.8965%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (86 samples, 0.06%)</title><rect x="41.6478%" y="549" width="0.0569%" height="15" fill="rgb(242,39,24)" fg:x="62914" fg:w="86"/><text x="41.8978%" y="559.50"></text></g><g><title>native_write_msr (86 samples, 0.06%)</title><rect x="41.6478%" y="533" width="0.0569%" height="15" fill="rgb(249,32,23)" fg:x="62914" fg:w="86"/><text x="41.8978%" y="543.50"></text></g><g><title>finish_task_switch (90 samples, 0.06%)</title><rect x="41.6458%" y="581" width="0.0596%" height="15" fill="rgb(251,195,23)" fg:x="62911" fg:w="90"/><text x="41.8958%" y="591.50"></text></g><g><title>futex_wait_queue_me (102 samples, 0.07%)</title><rect x="41.6405%" y="629" width="0.0675%" height="15" fill="rgb(236,174,8)" fg:x="62903" fg:w="102"/><text x="41.8905%" y="639.50"></text></g><g><title>schedule (101 samples, 0.07%)</title><rect x="41.6412%" y="613" width="0.0669%" height="15" fill="rgb(220,197,8)" fg:x="62904" fg:w="101"/><text x="41.8912%" y="623.50"></text></g><g><title>__schedule (100 samples, 0.07%)</title><rect x="41.6418%" y="597" width="0.0662%" height="15" fill="rgb(240,108,37)" fg:x="62905" fg:w="100"/><text x="41.8918%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (105 samples, 0.07%)</title><rect x="41.6392%" y="709" width="0.0695%" height="15" fill="rgb(232,176,24)" fg:x="62901" fg:w="105"/><text x="41.8892%" y="719.50"></text></g><g><title>do_syscall_64 (105 samples, 0.07%)</title><rect x="41.6392%" y="693" width="0.0695%" height="15" fill="rgb(243,35,29)" fg:x="62901" fg:w="105"/><text x="41.8892%" y="703.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.07%)</title><rect x="41.6392%" y="677" width="0.0695%" height="15" fill="rgb(210,37,18)" fg:x="62901" fg:w="105"/><text x="41.8892%" y="687.50"></text></g><g><title>do_futex (105 samples, 0.07%)</title><rect x="41.6392%" y="661" width="0.0695%" height="15" fill="rgb(224,184,40)" fg:x="62901" fg:w="105"/><text x="41.8892%" y="671.50"></text></g><g><title>futex_wait (105 samples, 0.07%)</title><rect x="41.6392%" y="645" width="0.0695%" height="15" fill="rgb(236,39,29)" fg:x="62901" fg:w="105"/><text x="41.8892%" y="655.50"></text></g><g><title>__GI___clone (375 samples, 0.25%)</title><rect x="41.4611%" y="869" width="0.2482%" height="15" fill="rgb(232,48,39)" fg:x="62632" fg:w="375"/><text x="41.7111%" y="879.50"></text></g><g><title>start_thread (375 samples, 0.25%)</title><rect x="41.4611%" y="853" width="0.2482%" height="15" fill="rgb(236,34,42)" fg:x="62632" fg:w="375"/><text x="41.7111%" y="863.50"></text></g><g><title>thread_native_entry (375 samples, 0.25%)</title><rect x="41.4611%" y="837" width="0.2482%" height="15" fill="rgb(243,106,37)" fg:x="62632" fg:w="375"/><text x="41.7111%" y="847.50"></text></g><g><title>Thread::call_run (375 samples, 0.25%)</title><rect x="41.4611%" y="821" width="0.2482%" height="15" fill="rgb(218,96,6)" fg:x="62632" fg:w="375"/><text x="41.7111%" y="831.50"></text></g><g><title>GangWorker::loop (375 samples, 0.25%)</title><rect x="41.4611%" y="805" width="0.2482%" height="15" fill="rgb(235,130,12)" fg:x="62632" fg:w="375"/><text x="41.7111%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (108 samples, 0.07%)</title><rect x="41.6379%" y="789" width="0.0715%" height="15" fill="rgb(231,95,0)" fg:x="62899" fg:w="108"/><text x="41.8879%" y="799.50"></text></g><g><title>PosixSemaphore::wait (108 samples, 0.07%)</title><rect x="41.6379%" y="773" width="0.0715%" height="15" fill="rgb(228,12,23)" fg:x="62899" fg:w="108"/><text x="41.8879%" y="783.50"></text></g><g><title>__new_sem_wait_slow (107 samples, 0.07%)</title><rect x="41.6385%" y="757" width="0.0708%" height="15" fill="rgb(216,12,1)" fg:x="62900" fg:w="107"/><text x="41.8885%" y="767.50"></text></g><g><title>do_futex_wait (106 samples, 0.07%)</title><rect x="41.6392%" y="741" width="0.0702%" height="15" fill="rgb(219,59,3)" fg:x="62901" fg:w="106"/><text x="41.8892%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.07%)</title><rect x="41.6392%" y="725" width="0.0702%" height="15" fill="rgb(215,208,46)" fg:x="62901" fg:w="106"/><text x="41.8892%" y="735.50"></text></g><g><title>GC_Thread#3 (388 samples, 0.26%)</title><rect x="41.4558%" y="885" width="0.2568%" height="15" fill="rgb(254,224,29)" fg:x="62624" fg:w="388"/><text x="41.7058%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="41.7325%" y="741" width="0.0139%" height="15" fill="rgb(232,14,29)" fg:x="63042" fg:w="21"/><text x="41.9825%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (31 samples, 0.02%)</title><rect x="41.7272%" y="757" width="0.0205%" height="15" fill="rgb(208,45,52)" fg:x="63034" fg:w="31"/><text x="41.9772%" y="767.50"></text></g><g><title>SpinPause (54 samples, 0.04%)</title><rect x="41.7491%" y="757" width="0.0357%" height="15" fill="rgb(234,191,28)" fg:x="63067" fg:w="54"/><text x="41.9991%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (97 samples, 0.06%)</title><rect x="41.7219%" y="773" width="0.0642%" height="15" fill="rgb(244,67,43)" fg:x="63026" fg:w="97"/><text x="41.9719%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (24 samples, 0.02%)</title><rect x="41.7862%" y="693" width="0.0159%" height="15" fill="rgb(236,189,24)" fg:x="63123" fg:w="24"/><text x="42.0362%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (23 samples, 0.02%)</title><rect x="41.7868%" y="677" width="0.0152%" height="15" fill="rgb(239,214,33)" fg:x="63124" fg:w="23"/><text x="42.0368%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="41.7881%" y="661" width="0.0139%" height="15" fill="rgb(226,176,41)" fg:x="63126" fg:w="21"/><text x="42.0381%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (25 samples, 0.02%)</title><rect x="41.7862%" y="773" width="0.0165%" height="15" fill="rgb(248,47,8)" fg:x="63123" fg:w="25"/><text x="42.0362%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (25 samples, 0.02%)</title><rect x="41.7862%" y="757" width="0.0165%" height="15" fill="rgb(218,81,44)" fg:x="63123" fg:w="25"/><text x="42.0362%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (25 samples, 0.02%)</title><rect x="41.7862%" y="741" width="0.0165%" height="15" fill="rgb(213,98,6)" fg:x="63123" fg:w="25"/><text x="42.0362%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (25 samples, 0.02%)</title><rect x="41.7862%" y="725" width="0.0165%" height="15" fill="rgb(222,85,22)" fg:x="63123" fg:w="25"/><text x="42.0362%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (25 samples, 0.02%)</title><rect x="41.7862%" y="709" width="0.0165%" height="15" fill="rgb(239,46,39)" fg:x="63123" fg:w="25"/><text x="42.0362%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (31 samples, 0.02%)</title><rect x="41.8226%" y="677" width="0.0205%" height="15" fill="rgb(237,12,29)" fg:x="63178" fg:w="31"/><text x="42.0726%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="41.8292%" y="661" width="0.0139%" height="15" fill="rgb(214,77,8)" fg:x="63188" fg:w="21"/><text x="42.0792%" y="671.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (53 samples, 0.04%)</title><rect x="41.8087%" y="741" width="0.0351%" height="15" fill="rgb(217,168,37)" fg:x="63157" fg:w="53"/><text x="42.0587%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (53 samples, 0.04%)</title><rect x="41.8087%" y="725" width="0.0351%" height="15" fill="rgb(221,217,23)" fg:x="63157" fg:w="53"/><text x="42.0587%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (53 samples, 0.04%)</title><rect x="41.8087%" y="709" width="0.0351%" height="15" fill="rgb(243,229,36)" fg:x="63157" fg:w="53"/><text x="42.0587%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (46 samples, 0.03%)</title><rect x="41.8133%" y="693" width="0.0305%" height="15" fill="rgb(251,163,40)" fg:x="63164" fg:w="46"/><text x="42.0633%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (29 samples, 0.02%)</title><rect x="41.8530%" y="629" width="0.0192%" height="15" fill="rgb(237,222,12)" fg:x="63224" fg:w="29"/><text x="42.1030%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (18 samples, 0.01%)</title><rect x="41.8603%" y="613" width="0.0119%" height="15" fill="rgb(248,132,6)" fg:x="63235" fg:w="18"/><text x="42.1103%" y="623.50"></text></g><g><title>G1CodeBlobClosure::do_code_blob (38 samples, 0.03%)</title><rect x="41.8477%" y="693" width="0.0252%" height="15" fill="rgb(227,167,50)" fg:x="63216" fg:w="38"/><text x="42.0977%" y="703.50"></text></g><g><title>nmethod::oops_do (38 samples, 0.03%)</title><rect x="41.8477%" y="677" width="0.0252%" height="15" fill="rgb(242,84,37)" fg:x="63216" fg:w="38"/><text x="42.0977%" y="687.50"></text></g><g><title>G1CodeBlobClosure::HeapRegionGatheringOopClosure::do_oop (37 samples, 0.02%)</title><rect x="41.8484%" y="661" width="0.0245%" height="15" fill="rgb(212,4,50)" fg:x="63217" fg:w="37"/><text x="42.0984%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (37 samples, 0.02%)</title><rect x="41.8484%" y="645" width="0.0245%" height="15" fill="rgb(230,228,32)" fg:x="63217" fg:w="37"/><text x="42.0984%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (46 samples, 0.03%)</title><rect x="41.8795%" y="677" width="0.0305%" height="15" fill="rgb(248,217,23)" fg:x="63264" fg:w="46"/><text x="42.1295%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (35 samples, 0.02%)</title><rect x="41.8868%" y="661" width="0.0232%" height="15" fill="rgb(238,197,32)" fg:x="63275" fg:w="35"/><text x="42.1368%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (29 samples, 0.02%)</title><rect x="41.8907%" y="645" width="0.0192%" height="15" fill="rgb(236,106,1)" fg:x="63281" fg:w="29"/><text x="42.1407%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (161 samples, 0.11%)</title><rect x="41.8087%" y="757" width="0.1066%" height="15" fill="rgb(219,228,13)" fg:x="63157" fg:w="161"/><text x="42.0587%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (108 samples, 0.07%)</title><rect x="41.8437%" y="741" width="0.0715%" height="15" fill="rgb(238,30,35)" fg:x="63210" fg:w="108"/><text x="42.0937%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (108 samples, 0.07%)</title><rect x="41.8437%" y="725" width="0.0715%" height="15" fill="rgb(236,70,23)" fg:x="63210" fg:w="108"/><text x="42.0937%" y="735.50"></text></g><g><title>JavaThread::oops_do (102 samples, 0.07%)</title><rect x="41.8477%" y="709" width="0.0675%" height="15" fill="rgb(249,104,48)" fg:x="63216" fg:w="102"/><text x="42.0977%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (54 samples, 0.04%)</title><rect x="41.8795%" y="693" width="0.0357%" height="15" fill="rgb(254,117,50)" fg:x="63264" fg:w="54"/><text x="42.1295%" y="703.50"></text></g><g><title>G1ParTask::work (294 samples, 0.19%)</title><rect x="41.7219%" y="789" width="0.1946%" height="15" fill="rgb(223,152,4)" fg:x="63026" fg:w="294"/><text x="41.9719%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (163 samples, 0.11%)</title><rect x="41.8087%" y="773" width="0.1079%" height="15" fill="rgb(245,6,2)" fg:x="63157" fg:w="163"/><text x="42.0587%" y="783.50"></text></g><g><title>RefProcPhase2Task::work (16 samples, 0.01%)</title><rect x="41.9238%" y="773" width="0.0106%" height="15" fill="rgb(249,150,24)" fg:x="63331" fg:w="16"/><text x="42.1738%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (31 samples, 0.02%)</title><rect x="41.9225%" y="789" width="0.0205%" height="15" fill="rgb(228,185,42)" fg:x="63329" fg:w="31"/><text x="42.1725%" y="799.50"></text></g><g><title>JavaThread::nmethods_do (19 samples, 0.01%)</title><rect x="41.9457%" y="757" width="0.0126%" height="15" fill="rgb(226,39,33)" fg:x="63364" fg:w="19"/><text x="42.1957%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (23 samples, 0.02%)</title><rect x="41.9437%" y="789" width="0.0152%" height="15" fill="rgb(221,166,19)" fg:x="63361" fg:w="23"/><text x="42.1937%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (22 samples, 0.01%)</title><rect x="41.9444%" y="773" width="0.0146%" height="15" fill="rgb(209,109,2)" fg:x="63362" fg:w="22"/><text x="42.1944%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (91 samples, 0.06%)</title><rect x="41.9656%" y="565" width="0.0602%" height="15" fill="rgb(252,216,26)" fg:x="63394" fg:w="91"/><text x="42.2156%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (90 samples, 0.06%)</title><rect x="41.9662%" y="549" width="0.0596%" height="15" fill="rgb(227,173,36)" fg:x="63395" fg:w="90"/><text x="42.2162%" y="559.50"></text></g><g><title>native_write_msr (90 samples, 0.06%)</title><rect x="41.9662%" y="533" width="0.0596%" height="15" fill="rgb(209,90,7)" fg:x="63395" fg:w="90"/><text x="42.2162%" y="543.50"></text></g><g><title>finish_task_switch (92 samples, 0.06%)</title><rect x="41.9656%" y="581" width="0.0609%" height="15" fill="rgb(250,194,11)" fg:x="63394" fg:w="92"/><text x="42.2156%" y="591.50"></text></g><g><title>do_syscall_64 (103 samples, 0.07%)</title><rect x="41.9616%" y="693" width="0.0682%" height="15" fill="rgb(220,72,50)" fg:x="63388" fg:w="103"/><text x="42.2116%" y="703.50"></text></g><g><title>__x64_sys_futex (102 samples, 0.07%)</title><rect x="41.9622%" y="677" width="0.0675%" height="15" fill="rgb(222,106,48)" fg:x="63389" fg:w="102"/><text x="42.2122%" y="687.50"></text></g><g><title>do_futex (102 samples, 0.07%)</title><rect x="41.9622%" y="661" width="0.0675%" height="15" fill="rgb(216,220,45)" fg:x="63389" fg:w="102"/><text x="42.2122%" y="671.50"></text></g><g><title>futex_wait (101 samples, 0.07%)</title><rect x="41.9629%" y="645" width="0.0669%" height="15" fill="rgb(234,112,18)" fg:x="63390" fg:w="101"/><text x="42.2129%" y="655.50"></text></g><g><title>futex_wait_queue_me (100 samples, 0.07%)</title><rect x="41.9636%" y="629" width="0.0662%" height="15" fill="rgb(206,179,9)" fg:x="63391" fg:w="100"/><text x="42.2136%" y="639.50"></text></g><g><title>schedule (100 samples, 0.07%)</title><rect x="41.9636%" y="613" width="0.0662%" height="15" fill="rgb(215,115,40)" fg:x="63391" fg:w="100"/><text x="42.2136%" y="623.50"></text></g><g><title>__schedule (100 samples, 0.07%)</title><rect x="41.9636%" y="597" width="0.0662%" height="15" fill="rgb(222,69,34)" fg:x="63391" fg:w="100"/><text x="42.2136%" y="607.50"></text></g><g><title>__new_sem_wait_slow (109 samples, 0.07%)</title><rect x="41.9603%" y="757" width="0.0722%" height="15" fill="rgb(209,161,10)" fg:x="63386" fg:w="109"/><text x="42.2103%" y="767.50"></text></g><g><title>do_futex_wait (109 samples, 0.07%)</title><rect x="41.9603%" y="741" width="0.0722%" height="15" fill="rgb(217,6,38)" fg:x="63386" fg:w="109"/><text x="42.2103%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (109 samples, 0.07%)</title><rect x="41.9603%" y="725" width="0.0722%" height="15" fill="rgb(229,229,48)" fg:x="63386" fg:w="109"/><text x="42.2103%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.07%)</title><rect x="41.9616%" y="709" width="0.0708%" height="15" fill="rgb(225,21,28)" fg:x="63388" fg:w="107"/><text x="42.2116%" y="719.50"></text></g><g><title>__GI___clone (471 samples, 0.31%)</title><rect x="41.7213%" y="869" width="0.3118%" height="15" fill="rgb(206,33,13)" fg:x="63025" fg:w="471"/><text x="41.9713%" y="879.50"></text></g><g><title>start_thread (471 samples, 0.31%)</title><rect x="41.7213%" y="853" width="0.3118%" height="15" fill="rgb(242,178,17)" fg:x="63025" fg:w="471"/><text x="41.9713%" y="863.50"></text></g><g><title>thread_native_entry (471 samples, 0.31%)</title><rect x="41.7213%" y="837" width="0.3118%" height="15" fill="rgb(220,162,5)" fg:x="63025" fg:w="471"/><text x="41.9713%" y="847.50"></text></g><g><title>Thread::call_run (471 samples, 0.31%)</title><rect x="41.7213%" y="821" width="0.3118%" height="15" fill="rgb(210,33,43)" fg:x="63025" fg:w="471"/><text x="41.9713%" y="831.50"></text></g><g><title>GangWorker::loop (471 samples, 0.31%)</title><rect x="41.7213%" y="805" width="0.3118%" height="15" fill="rgb(216,116,54)" fg:x="63025" fg:w="471"/><text x="41.9713%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (112 samples, 0.07%)</title><rect x="41.9589%" y="789" width="0.0741%" height="15" fill="rgb(249,92,24)" fg:x="63384" fg:w="112"/><text x="42.2089%" y="799.50"></text></g><g><title>PosixSemaphore::wait (110 samples, 0.07%)</title><rect x="41.9603%" y="773" width="0.0728%" height="15" fill="rgb(231,189,14)" fg:x="63386" fg:w="110"/><text x="42.2103%" y="783.50"></text></g><g><title>GC_Thread#4 (490 samples, 0.32%)</title><rect x="41.7127%" y="885" width="0.3244%" height="15" fill="rgb(230,8,41)" fg:x="63012" fg:w="490"/><text x="41.9627%" y="895.50"></text></g><g><title>G1ParScanThreadState::trim_queue (17 samples, 0.01%)</title><rect x="42.0476%" y="757" width="0.0113%" height="15" fill="rgb(249,7,27)" fg:x="63518" fg:w="17"/><text x="42.2976%" y="767.50"></text></g><g><title>SpinPause (41 samples, 0.03%)</title><rect x="42.0615%" y="757" width="0.0271%" height="15" fill="rgb(232,86,5)" fg:x="63539" fg:w="41"/><text x="42.3115%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (64 samples, 0.04%)</title><rect x="42.0470%" y="773" width="0.0424%" height="15" fill="rgb(224,175,18)" fg:x="63517" fg:w="64"/><text x="42.2970%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (16 samples, 0.01%)</title><rect x="42.0893%" y="773" width="0.0106%" height="15" fill="rgb(220,129,12)" fg:x="63581" fg:w="16"/><text x="42.3393%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (16 samples, 0.01%)</title><rect x="42.0893%" y="757" width="0.0106%" height="15" fill="rgb(210,19,36)" fg:x="63581" fg:w="16"/><text x="42.3393%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (16 samples, 0.01%)</title><rect x="42.0893%" y="741" width="0.0106%" height="15" fill="rgb(219,96,14)" fg:x="63581" fg:w="16"/><text x="42.3393%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (16 samples, 0.01%)</title><rect x="42.0893%" y="725" width="0.0106%" height="15" fill="rgb(249,106,1)" fg:x="63581" fg:w="16"/><text x="42.3393%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (16 samples, 0.01%)</title><rect x="42.0893%" y="709" width="0.0106%" height="15" fill="rgb(249,155,20)" fg:x="63581" fg:w="16"/><text x="42.3393%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (21 samples, 0.01%)</title><rect x="42.0999%" y="693" width="0.0139%" height="15" fill="rgb(244,168,9)" fg:x="63597" fg:w="21"/><text x="42.3499%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (19 samples, 0.01%)</title><rect x="42.1013%" y="677" width="0.0126%" height="15" fill="rgb(216,23,50)" fg:x="63599" fg:w="19"/><text x="42.3513%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (18 samples, 0.01%)</title><rect x="42.1019%" y="661" width="0.0119%" height="15" fill="rgb(224,219,20)" fg:x="63600" fg:w="18"/><text x="42.3519%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (23 samples, 0.02%)</title><rect x="42.0999%" y="725" width="0.0152%" height="15" fill="rgb(222,156,15)" fg:x="63597" fg:w="23"/><text x="42.3499%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (23 samples, 0.02%)</title><rect x="42.0999%" y="709" width="0.0152%" height="15" fill="rgb(231,97,17)" fg:x="63597" fg:w="23"/><text x="42.3499%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (32 samples, 0.02%)</title><rect x="42.0999%" y="773" width="0.0212%" height="15" fill="rgb(218,70,48)" fg:x="63597" fg:w="32"/><text x="42.3499%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (32 samples, 0.02%)</title><rect x="42.0999%" y="757" width="0.0212%" height="15" fill="rgb(212,196,52)" fg:x="63597" fg:w="32"/><text x="42.3499%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (32 samples, 0.02%)</title><rect x="42.0999%" y="741" width="0.0212%" height="15" fill="rgb(243,203,18)" fg:x="63597" fg:w="32"/><text x="42.3499%" y="751.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (38 samples, 0.03%)</title><rect x="42.1244%" y="741" width="0.0252%" height="15" fill="rgb(252,125,41)" fg:x="63634" fg:w="38"/><text x="42.3744%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (38 samples, 0.03%)</title><rect x="42.1244%" y="725" width="0.0252%" height="15" fill="rgb(223,180,33)" fg:x="63634" fg:w="38"/><text x="42.3744%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (38 samples, 0.03%)</title><rect x="42.1244%" y="709" width="0.0252%" height="15" fill="rgb(254,159,46)" fg:x="63634" fg:w="38"/><text x="42.3744%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (30 samples, 0.02%)</title><rect x="42.1297%" y="693" width="0.0199%" height="15" fill="rgb(254,38,10)" fg:x="63642" fg:w="30"/><text x="42.3797%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (25 samples, 0.02%)</title><rect x="42.1330%" y="677" width="0.0165%" height="15" fill="rgb(208,217,32)" fg:x="63647" fg:w="25"/><text x="42.3830%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="42.1357%" y="661" width="0.0139%" height="15" fill="rgb(221,120,13)" fg:x="63651" fg:w="21"/><text x="42.3857%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (31 samples, 0.02%)</title><rect x="42.1575%" y="645" width="0.0205%" height="15" fill="rgb(246,54,52)" fg:x="63684" fg:w="31"/><text x="42.4075%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (22 samples, 0.01%)</title><rect x="42.1635%" y="629" width="0.0146%" height="15" fill="rgb(242,34,25)" fg:x="63693" fg:w="22"/><text x="42.4135%" y="639.50"></text></g><g><title>InterpreterOopMap::iterate_oop (38 samples, 0.03%)</title><rect x="42.1536%" y="677" width="0.0252%" height="15" fill="rgb(247,209,9)" fg:x="63678" fg:w="38"/><text x="42.4036%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (37 samples, 0.02%)</title><rect x="42.1542%" y="661" width="0.0245%" height="15" fill="rgb(228,71,26)" fg:x="63679" fg:w="37"/><text x="42.4042%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (83 samples, 0.05%)</title><rect x="42.1244%" y="757" width="0.0549%" height="15" fill="rgb(222,145,49)" fg:x="63634" fg:w="83"/><text x="42.3744%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (45 samples, 0.03%)</title><rect x="42.1496%" y="741" width="0.0298%" height="15" fill="rgb(218,121,17)" fg:x="63672" fg:w="45"/><text x="42.3996%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (45 samples, 0.03%)</title><rect x="42.1496%" y="725" width="0.0298%" height="15" fill="rgb(244,50,7)" fg:x="63672" fg:w="45"/><text x="42.3996%" y="735.50"></text></g><g><title>JavaThread::oops_do (45 samples, 0.03%)</title><rect x="42.1496%" y="709" width="0.0298%" height="15" fill="rgb(246,229,37)" fg:x="63672" fg:w="45"/><text x="42.3996%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (39 samples, 0.03%)</title><rect x="42.1536%" y="693" width="0.0258%" height="15" fill="rgb(225,18,5)" fg:x="63678" fg:w="39"/><text x="42.4036%" y="703.50"></text></g><g><title>G1ParTask::work (218 samples, 0.14%)</title><rect x="42.0470%" y="789" width="0.1443%" height="15" fill="rgb(213,204,8)" fg:x="63517" fg:w="218"/><text x="42.2970%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (106 samples, 0.07%)</title><rect x="42.1211%" y="773" width="0.0702%" height="15" fill="rgb(238,103,6)" fg:x="63629" fg:w="106"/><text x="42.3711%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (22 samples, 0.01%)</title><rect x="42.1979%" y="789" width="0.0146%" height="15" fill="rgb(222,25,35)" fg:x="63745" fg:w="22"/><text x="42.4479%" y="799.50"></text></g><g><title>JavaThread::nmethods_do (17 samples, 0.01%)</title><rect x="42.2151%" y="757" width="0.0113%" height="15" fill="rgb(213,203,35)" fg:x="63771" fg:w="17"/><text x="42.4651%" y="767.50"></text></g><g><title>ParallelSPCleanupTask::work (29 samples, 0.02%)</title><rect x="42.2125%" y="789" width="0.0192%" height="15" fill="rgb(221,79,53)" fg:x="63767" fg:w="29"/><text x="42.4625%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (28 samples, 0.02%)</title><rect x="42.2131%" y="773" width="0.0185%" height="15" fill="rgb(243,200,35)" fg:x="63768" fg:w="28"/><text x="42.4631%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (38 samples, 0.03%)</title><rect x="42.2363%" y="565" width="0.0252%" height="15" fill="rgb(248,60,25)" fg:x="63803" fg:w="38"/><text x="42.4863%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="42.2370%" y="549" width="0.0245%" height="15" fill="rgb(227,53,46)" fg:x="63804" fg:w="37"/><text x="42.4870%" y="559.50"></text></g><g><title>native_write_msr (37 samples, 0.02%)</title><rect x="42.2370%" y="533" width="0.0245%" height="15" fill="rgb(216,120,32)" fg:x="63804" fg:w="37"/><text x="42.4870%" y="543.50"></text></g><g><title>finish_task_switch (41 samples, 0.03%)</title><rect x="42.2363%" y="581" width="0.0271%" height="15" fill="rgb(220,134,1)" fg:x="63803" fg:w="41"/><text x="42.4863%" y="591.50"></text></g><g><title>do_syscall_64 (56 samples, 0.04%)</title><rect x="42.2323%" y="693" width="0.0371%" height="15" fill="rgb(237,168,5)" fg:x="63797" fg:w="56"/><text x="42.4823%" y="703.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.04%)</title><rect x="42.2323%" y="677" width="0.0371%" height="15" fill="rgb(231,100,33)" fg:x="63797" fg:w="56"/><text x="42.4823%" y="687.50"></text></g><g><title>do_futex (55 samples, 0.04%)</title><rect x="42.2330%" y="661" width="0.0364%" height="15" fill="rgb(236,177,47)" fg:x="63798" fg:w="55"/><text x="42.4830%" y="671.50"></text></g><g><title>futex_wait (55 samples, 0.04%)</title><rect x="42.2330%" y="645" width="0.0364%" height="15" fill="rgb(235,7,49)" fg:x="63798" fg:w="55"/><text x="42.4830%" y="655.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.04%)</title><rect x="42.2330%" y="629" width="0.0364%" height="15" fill="rgb(232,119,22)" fg:x="63798" fg:w="55"/><text x="42.4830%" y="639.50"></text></g><g><title>schedule (55 samples, 0.04%)</title><rect x="42.2330%" y="613" width="0.0364%" height="15" fill="rgb(254,73,53)" fg:x="63798" fg:w="55"/><text x="42.4830%" y="623.50"></text></g><g><title>__schedule (55 samples, 0.04%)</title><rect x="42.2330%" y="597" width="0.0364%" height="15" fill="rgb(251,35,20)" fg:x="63798" fg:w="55"/><text x="42.4830%" y="607.50"></text></g><g><title>__GI___clone (345 samples, 0.23%)</title><rect x="42.0430%" y="869" width="0.2284%" height="15" fill="rgb(241,119,20)" fg:x="63511" fg:w="345"/><text x="42.2930%" y="879.50"></text></g><g><title>start_thread (345 samples, 0.23%)</title><rect x="42.0430%" y="853" width="0.2284%" height="15" fill="rgb(207,102,14)" fg:x="63511" fg:w="345"/><text x="42.2930%" y="863.50"></text></g><g><title>thread_native_entry (345 samples, 0.23%)</title><rect x="42.0430%" y="837" width="0.2284%" height="15" fill="rgb(248,201,50)" fg:x="63511" fg:w="345"/><text x="42.2930%" y="847.50"></text></g><g><title>Thread::call_run (345 samples, 0.23%)</title><rect x="42.0430%" y="821" width="0.2284%" height="15" fill="rgb(222,185,44)" fg:x="63511" fg:w="345"/><text x="42.2930%" y="831.50"></text></g><g><title>GangWorker::loop (345 samples, 0.23%)</title><rect x="42.0430%" y="805" width="0.2284%" height="15" fill="rgb(218,107,18)" fg:x="63511" fg:w="345"/><text x="42.2930%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (60 samples, 0.04%)</title><rect x="42.2317%" y="789" width="0.0397%" height="15" fill="rgb(237,177,39)" fg:x="63796" fg:w="60"/><text x="42.4817%" y="799.50"></text></g><g><title>PosixSemaphore::wait (60 samples, 0.04%)</title><rect x="42.2317%" y="773" width="0.0397%" height="15" fill="rgb(246,69,6)" fg:x="63796" fg:w="60"/><text x="42.4817%" y="783.50"></text></g><g><title>__new_sem_wait_slow (60 samples, 0.04%)</title><rect x="42.2317%" y="757" width="0.0397%" height="15" fill="rgb(234,208,37)" fg:x="63796" fg:w="60"/><text x="42.4817%" y="767.50"></text></g><g><title>do_futex_wait (60 samples, 0.04%)</title><rect x="42.2317%" y="741" width="0.0397%" height="15" fill="rgb(225,4,6)" fg:x="63796" fg:w="60"/><text x="42.4817%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (60 samples, 0.04%)</title><rect x="42.2317%" y="725" width="0.0397%" height="15" fill="rgb(233,45,0)" fg:x="63796" fg:w="60"/><text x="42.4817%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.04%)</title><rect x="42.2323%" y="709" width="0.0391%" height="15" fill="rgb(226,136,5)" fg:x="63797" fg:w="59"/><text x="42.4823%" y="719.50"></text></g><g><title>GC_Thread#5 (358 samples, 0.24%)</title><rect x="42.0370%" y="885" width="0.2370%" height="15" fill="rgb(211,91,47)" fg:x="63502" fg:w="358"/><text x="42.2870%" y="895.50"></text></g><g><title>G1ParScanThreadState::trim_queue (24 samples, 0.02%)</title><rect x="42.2873%" y="757" width="0.0159%" height="15" fill="rgb(242,88,51)" fg:x="63880" fg:w="24"/><text x="42.5373%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (87 samples, 0.06%)</title><rect x="42.2813%" y="773" width="0.0576%" height="15" fill="rgb(230,91,28)" fg:x="63871" fg:w="87"/><text x="42.5313%" y="783.50"></text></g><g><title>SpinPause (48 samples, 0.03%)</title><rect x="42.3071%" y="757" width="0.0318%" height="15" fill="rgb(254,186,29)" fg:x="63910" fg:w="48"/><text x="42.5571%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (17 samples, 0.01%)</title><rect x="42.3488%" y="709" width="0.0113%" height="15" fill="rgb(238,6,4)" fg:x="63973" fg:w="17"/><text x="42.5988%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (18 samples, 0.01%)</title><rect x="42.3488%" y="725" width="0.0119%" height="15" fill="rgb(221,151,16)" fg:x="63973" fg:w="18"/><text x="42.5988%" y="735.50"></text></g><g><title>G1RemSet::scan_rem_set (29 samples, 0.02%)</title><rect x="42.3488%" y="773" width="0.0192%" height="15" fill="rgb(251,143,52)" fg:x="63973" fg:w="29"/><text x="42.5988%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (29 samples, 0.02%)</title><rect x="42.3488%" y="757" width="0.0192%" height="15" fill="rgb(206,90,15)" fg:x="63973" fg:w="29"/><text x="42.5988%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (29 samples, 0.02%)</title><rect x="42.3488%" y="741" width="0.0192%" height="15" fill="rgb(218,35,8)" fg:x="63973" fg:w="29"/><text x="42.5988%" y="751.50"></text></g><g><title>InterpreterOopMap::iterate_oop (16 samples, 0.01%)</title><rect x="42.3833%" y="677" width="0.0106%" height="15" fill="rgb(239,215,6)" fg:x="64025" fg:w="16"/><text x="42.6333%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (16 samples, 0.01%)</title><rect x="42.3833%" y="661" width="0.0106%" height="15" fill="rgb(245,116,39)" fg:x="64025" fg:w="16"/><text x="42.6333%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (41 samples, 0.03%)</title><rect x="42.3687%" y="757" width="0.0271%" height="15" fill="rgb(242,65,28)" fg:x="64003" fg:w="41"/><text x="42.6187%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (27 samples, 0.02%)</title><rect x="42.3780%" y="741" width="0.0179%" height="15" fill="rgb(252,132,53)" fg:x="64017" fg:w="27"/><text x="42.6280%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (27 samples, 0.02%)</title><rect x="42.3780%" y="725" width="0.0179%" height="15" fill="rgb(224,159,50)" fg:x="64017" fg:w="27"/><text x="42.6280%" y="735.50"></text></g><g><title>JavaThread::oops_do (26 samples, 0.02%)</title><rect x="42.3786%" y="709" width="0.0172%" height="15" fill="rgb(224,93,4)" fg:x="64018" fg:w="26"/><text x="42.6286%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (21 samples, 0.01%)</title><rect x="42.3819%" y="693" width="0.0139%" height="15" fill="rgb(208,81,34)" fg:x="64023" fg:w="21"/><text x="42.6319%" y="703.50"></text></g><g><title>G1ParTask::work (185 samples, 0.12%)</title><rect x="42.2813%" y="789" width="0.1225%" height="15" fill="rgb(233,92,54)" fg:x="63871" fg:w="185"/><text x="42.5313%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (54 samples, 0.04%)</title><rect x="42.3680%" y="773" width="0.0357%" height="15" fill="rgb(237,21,14)" fg:x="64002" fg:w="54"/><text x="42.6180%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (23 samples, 0.02%)</title><rect x="42.4111%" y="789" width="0.0152%" height="15" fill="rgb(249,128,51)" fg:x="64067" fg:w="23"/><text x="42.6611%" y="799.50"></text></g><g><title>RefProcPhase3Task::work (17 samples, 0.01%)</title><rect x="42.4150%" y="773" width="0.0113%" height="15" fill="rgb(223,129,24)" fg:x="64073" fg:w="17"/><text x="42.6650%" y="783.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (17 samples, 0.01%)</title><rect x="42.4150%" y="757" width="0.0113%" height="15" fill="rgb(231,168,25)" fg:x="64073" fg:w="17"/><text x="42.6650%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (17 samples, 0.01%)</title><rect x="42.4150%" y="741" width="0.0113%" height="15" fill="rgb(224,39,20)" fg:x="64073" fg:w="17"/><text x="42.6650%" y="751.50"></text></g><g><title>SpinPause (17 samples, 0.01%)</title><rect x="42.4150%" y="725" width="0.0113%" height="15" fill="rgb(225,152,53)" fg:x="64073" fg:w="17"/><text x="42.6650%" y="735.50"></text></g><g><title>ParallelSPCleanupTask::work (20 samples, 0.01%)</title><rect x="42.4263%" y="789" width="0.0132%" height="15" fill="rgb(252,17,24)" fg:x="64090" fg:w="20"/><text x="42.6763%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (19 samples, 0.01%)</title><rect x="42.4270%" y="773" width="0.0126%" height="15" fill="rgb(250,114,30)" fg:x="64091" fg:w="19"/><text x="42.6770%" y="783.50"></text></g><g><title>finish_task_switch (41 samples, 0.03%)</title><rect x="42.4435%" y="581" width="0.0271%" height="15" fill="rgb(229,5,4)" fg:x="64116" fg:w="41"/><text x="42.6935%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.03%)</title><rect x="42.4442%" y="565" width="0.0265%" height="15" fill="rgb(225,176,49)" fg:x="64117" fg:w="40"/><text x="42.6942%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.03%)</title><rect x="42.4448%" y="549" width="0.0258%" height="15" fill="rgb(224,221,49)" fg:x="64118" fg:w="39"/><text x="42.6948%" y="559.50"></text></g><g><title>native_write_msr (39 samples, 0.03%)</title><rect x="42.4448%" y="533" width="0.0258%" height="15" fill="rgb(253,169,27)" fg:x="64118" fg:w="39"/><text x="42.6948%" y="543.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.03%)</title><rect x="42.4402%" y="629" width="0.0331%" height="15" fill="rgb(211,206,16)" fg:x="64111" fg:w="50"/><text x="42.6902%" y="639.50"></text></g><g><title>schedule (49 samples, 0.03%)</title><rect x="42.4409%" y="613" width="0.0324%" height="15" fill="rgb(244,87,35)" fg:x="64112" fg:w="49"/><text x="42.6909%" y="623.50"></text></g><g><title>__schedule (49 samples, 0.03%)</title><rect x="42.4409%" y="597" width="0.0324%" height="15" fill="rgb(246,28,10)" fg:x="64112" fg:w="49"/><text x="42.6909%" y="607.50"></text></g><g><title>do_syscall_64 (53 samples, 0.04%)</title><rect x="42.4402%" y="693" width="0.0351%" height="15" fill="rgb(229,12,44)" fg:x="64111" fg:w="53"/><text x="42.6902%" y="703.50"></text></g><g><title>__x64_sys_futex (53 samples, 0.04%)</title><rect x="42.4402%" y="677" width="0.0351%" height="15" fill="rgb(210,145,37)" fg:x="64111" fg:w="53"/><text x="42.6902%" y="687.50"></text></g><g><title>do_futex (53 samples, 0.04%)</title><rect x="42.4402%" y="661" width="0.0351%" height="15" fill="rgb(227,112,52)" fg:x="64111" fg:w="53"/><text x="42.6902%" y="671.50"></text></g><g><title>futex_wait (53 samples, 0.04%)</title><rect x="42.4402%" y="645" width="0.0351%" height="15" fill="rgb(238,155,34)" fg:x="64111" fg:w="53"/><text x="42.6902%" y="655.50"></text></g><g><title>__GI___clone (299 samples, 0.20%)</title><rect x="42.2780%" y="869" width="0.1979%" height="15" fill="rgb(239,226,36)" fg:x="63866" fg:w="299"/><text x="42.5280%" y="879.50"></text></g><g><title>start_thread (299 samples, 0.20%)</title><rect x="42.2780%" y="853" width="0.1979%" height="15" fill="rgb(230,16,23)" fg:x="63866" fg:w="299"/><text x="42.5280%" y="863.50"></text></g><g><title>thread_native_entry (299 samples, 0.20%)</title><rect x="42.2780%" y="837" width="0.1979%" height="15" fill="rgb(236,171,36)" fg:x="63866" fg:w="299"/><text x="42.5280%" y="847.50"></text></g><g><title>Thread::call_run (299 samples, 0.20%)</title><rect x="42.2780%" y="821" width="0.1979%" height="15" fill="rgb(221,22,14)" fg:x="63866" fg:w="299"/><text x="42.5280%" y="831.50"></text></g><g><title>GangWorker::loop (299 samples, 0.20%)</title><rect x="42.2780%" y="805" width="0.1979%" height="15" fill="rgb(242,43,11)" fg:x="63866" fg:w="299"/><text x="42.5280%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (55 samples, 0.04%)</title><rect x="42.4395%" y="789" width="0.0364%" height="15" fill="rgb(232,69,23)" fg:x="64110" fg:w="55"/><text x="42.6895%" y="799.50"></text></g><g><title>PosixSemaphore::wait (55 samples, 0.04%)</title><rect x="42.4395%" y="773" width="0.0364%" height="15" fill="rgb(216,180,54)" fg:x="64110" fg:w="55"/><text x="42.6895%" y="783.50"></text></g><g><title>__new_sem_wait_slow (55 samples, 0.04%)</title><rect x="42.4395%" y="757" width="0.0364%" height="15" fill="rgb(216,5,24)" fg:x="64110" fg:w="55"/><text x="42.6895%" y="767.50"></text></g><g><title>do_futex_wait (55 samples, 0.04%)</title><rect x="42.4395%" y="741" width="0.0364%" height="15" fill="rgb(225,89,9)" fg:x="64110" fg:w="55"/><text x="42.6895%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (55 samples, 0.04%)</title><rect x="42.4395%" y="725" width="0.0364%" height="15" fill="rgb(243,75,33)" fg:x="64110" fg:w="55"/><text x="42.6895%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.04%)</title><rect x="42.4402%" y="709" width="0.0357%" height="15" fill="rgb(247,141,45)" fg:x="64111" fg:w="54"/><text x="42.6902%" y="719.50"></text></g><g><title>GC_Thread#6 (306 samples, 0.20%)</title><rect x="42.2740%" y="885" width="0.2026%" height="15" fill="rgb(232,177,36)" fg:x="63860" fg:w="306"/><text x="42.5240%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (16 samples, 0.01%)</title><rect x="42.4998%" y="741" width="0.0106%" height="15" fill="rgb(219,125,36)" fg:x="64201" fg:w="16"/><text x="42.7498%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (33 samples, 0.02%)</title><rect x="42.4892%" y="757" width="0.0218%" height="15" fill="rgb(227,94,9)" fg:x="64185" fg:w="33"/><text x="42.7392%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (77 samples, 0.05%)</title><rect x="42.4872%" y="773" width="0.0510%" height="15" fill="rgb(240,34,52)" fg:x="64182" fg:w="77"/><text x="42.7372%" y="783.50"></text></g><g><title>SpinPause (37 samples, 0.02%)</title><rect x="42.5137%" y="757" width="0.0245%" height="15" fill="rgb(216,45,12)" fg:x="64222" fg:w="37"/><text x="42.7637%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (25 samples, 0.02%)</title><rect x="42.5435%" y="677" width="0.0165%" height="15" fill="rgb(246,21,19)" fg:x="64267" fg:w="25"/><text x="42.7935%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (19 samples, 0.01%)</title><rect x="42.5474%" y="661" width="0.0126%" height="15" fill="rgb(213,98,42)" fg:x="64273" fg:w="19"/><text x="42.7974%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (34 samples, 0.02%)</title><rect x="42.5382%" y="693" width="0.0225%" height="15" fill="rgb(250,136,47)" fg:x="64259" fg:w="34"/><text x="42.7882%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (38 samples, 0.03%)</title><rect x="42.5382%" y="709" width="0.0252%" height="15" fill="rgb(251,124,27)" fg:x="64259" fg:w="38"/><text x="42.7882%" y="719.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (39 samples, 0.03%)</title><rect x="42.5382%" y="773" width="0.0258%" height="15" fill="rgb(229,180,14)" fg:x="64259" fg:w="39"/><text x="42.7882%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (39 samples, 0.03%)</title><rect x="42.5382%" y="757" width="0.0258%" height="15" fill="rgb(245,216,25)" fg:x="64259" fg:w="39"/><text x="42.7882%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (39 samples, 0.03%)</title><rect x="42.5382%" y="741" width="0.0258%" height="15" fill="rgb(251,43,5)" fg:x="64259" fg:w="39"/><text x="42.7882%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (39 samples, 0.03%)</title><rect x="42.5382%" y="725" width="0.0258%" height="15" fill="rgb(250,128,24)" fg:x="64259" fg:w="39"/><text x="42.7882%" y="735.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (19 samples, 0.01%)</title><rect x="42.5640%" y="693" width="0.0126%" height="15" fill="rgb(217,117,27)" fg:x="64298" fg:w="19"/><text x="42.8140%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (21 samples, 0.01%)</title><rect x="42.5640%" y="725" width="0.0139%" height="15" fill="rgb(245,147,4)" fg:x="64298" fg:w="21"/><text x="42.8140%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (21 samples, 0.01%)</title><rect x="42.5640%" y="709" width="0.0139%" height="15" fill="rgb(242,201,35)" fg:x="64298" fg:w="21"/><text x="42.8140%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (40 samples, 0.03%)</title><rect x="42.5640%" y="773" width="0.0265%" height="15" fill="rgb(218,181,1)" fg:x="64298" fg:w="40"/><text x="42.8140%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (40 samples, 0.03%)</title><rect x="42.5640%" y="757" width="0.0265%" height="15" fill="rgb(222,6,29)" fg:x="64298" fg:w="40"/><text x="42.8140%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (40 samples, 0.03%)</title><rect x="42.5640%" y="741" width="0.0265%" height="15" fill="rgb(208,186,3)" fg:x="64298" fg:w="40"/><text x="42.8140%" y="751.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (19 samples, 0.01%)</title><rect x="42.5779%" y="725" width="0.0126%" height="15" fill="rgb(216,36,26)" fg:x="64319" fg:w="19"/><text x="42.8279%" y="735.50"></text></g><g><title>G1CodeRootSet::nmethods_do (19 samples, 0.01%)</title><rect x="42.5779%" y="709" width="0.0126%" height="15" fill="rgb(248,201,23)" fg:x="64319" fg:w="19"/><text x="42.8279%" y="719.50"></text></g><g><title>G1RootProcessor::process_java_roots (38 samples, 0.03%)</title><rect x="42.5911%" y="757" width="0.0252%" height="15" fill="rgb(251,170,31)" fg:x="64339" fg:w="38"/><text x="42.8411%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (27 samples, 0.02%)</title><rect x="42.5984%" y="741" width="0.0179%" height="15" fill="rgb(207,110,25)" fg:x="64350" fg:w="27"/><text x="42.8484%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (27 samples, 0.02%)</title><rect x="42.5984%" y="725" width="0.0179%" height="15" fill="rgb(250,54,15)" fg:x="64350" fg:w="27"/><text x="42.8484%" y="735.50"></text></g><g><title>JavaThread::oops_do (27 samples, 0.02%)</title><rect x="42.5984%" y="709" width="0.0179%" height="15" fill="rgb(227,68,33)" fg:x="64350" fg:w="27"/><text x="42.8484%" y="719.50"></text></g><g><title>G1ParTask::work (201 samples, 0.13%)</title><rect x="42.4872%" y="789" width="0.1331%" height="15" fill="rgb(238,34,41)" fg:x="64182" fg:w="201"/><text x="42.7372%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (45 samples, 0.03%)</title><rect x="42.5905%" y="773" width="0.0298%" height="15" fill="rgb(220,11,15)" fg:x="64338" fg:w="45"/><text x="42.8405%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (17 samples, 0.01%)</title><rect x="42.6229%" y="789" width="0.0113%" height="15" fill="rgb(246,111,35)" fg:x="64387" fg:w="17"/><text x="42.8729%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (21 samples, 0.01%)</title><rect x="42.6348%" y="789" width="0.0139%" height="15" fill="rgb(209,88,53)" fg:x="64405" fg:w="21"/><text x="42.8848%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (20 samples, 0.01%)</title><rect x="42.6355%" y="773" width="0.0132%" height="15" fill="rgb(231,185,47)" fg:x="64406" fg:w="20"/><text x="42.8855%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.05%)</title><rect x="42.6547%" y="565" width="0.0536%" height="15" fill="rgb(233,154,1)" fg:x="64435" fg:w="81"/><text x="42.9047%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.05%)</title><rect x="42.6547%" y="549" width="0.0536%" height="15" fill="rgb(225,15,46)" fg:x="64435" fg:w="81"/><text x="42.9047%" y="559.50"></text></g><g><title>native_write_msr (81 samples, 0.05%)</title><rect x="42.6547%" y="533" width="0.0536%" height="15" fill="rgb(211,135,41)" fg:x="64435" fg:w="81"/><text x="42.9047%" y="543.50"></text></g><g><title>finish_task_switch (85 samples, 0.06%)</title><rect x="42.6533%" y="581" width="0.0563%" height="15" fill="rgb(208,54,0)" fg:x="64433" fg:w="85"/><text x="42.9033%" y="591.50"></text></g><g><title>do_syscall_64 (94 samples, 0.06%)</title><rect x="42.6494%" y="693" width="0.0622%" height="15" fill="rgb(244,136,14)" fg:x="64427" fg:w="94"/><text x="42.8994%" y="703.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.06%)</title><rect x="42.6494%" y="677" width="0.0622%" height="15" fill="rgb(241,56,14)" fg:x="64427" fg:w="94"/><text x="42.8994%" y="687.50"></text></g><g><title>do_futex (94 samples, 0.06%)</title><rect x="42.6494%" y="661" width="0.0622%" height="15" fill="rgb(205,80,24)" fg:x="64427" fg:w="94"/><text x="42.8994%" y="671.50"></text></g><g><title>futex_wait (94 samples, 0.06%)</title><rect x="42.6494%" y="645" width="0.0622%" height="15" fill="rgb(220,57,4)" fg:x="64427" fg:w="94"/><text x="42.8994%" y="655.50"></text></g><g><title>futex_wait_queue_me (94 samples, 0.06%)</title><rect x="42.6494%" y="629" width="0.0622%" height="15" fill="rgb(226,193,50)" fg:x="64427" fg:w="94"/><text x="42.8994%" y="639.50"></text></g><g><title>schedule (93 samples, 0.06%)</title><rect x="42.6500%" y="613" width="0.0616%" height="15" fill="rgb(231,168,22)" fg:x="64428" fg:w="93"/><text x="42.9000%" y="623.50"></text></g><g><title>__schedule (93 samples, 0.06%)</title><rect x="42.6500%" y="597" width="0.0616%" height="15" fill="rgb(254,215,14)" fg:x="64428" fg:w="93"/><text x="42.9000%" y="607.50"></text></g><g><title>GC_Thread#7 (356 samples, 0.24%)</title><rect x="42.4766%" y="885" width="0.2357%" height="15" fill="rgb(211,115,16)" fg:x="64166" fg:w="356"/><text x="42.7266%" y="895.50"></text></g><g><title>__GI___clone (348 samples, 0.23%)</title><rect x="42.4819%" y="869" width="0.2304%" height="15" fill="rgb(236,210,16)" fg:x="64174" fg:w="348"/><text x="42.7319%" y="879.50"></text></g><g><title>start_thread (348 samples, 0.23%)</title><rect x="42.4819%" y="853" width="0.2304%" height="15" fill="rgb(221,94,12)" fg:x="64174" fg:w="348"/><text x="42.7319%" y="863.50"></text></g><g><title>thread_native_entry (348 samples, 0.23%)</title><rect x="42.4819%" y="837" width="0.2304%" height="15" fill="rgb(235,218,49)" fg:x="64174" fg:w="348"/><text x="42.7319%" y="847.50"></text></g><g><title>Thread::call_run (348 samples, 0.23%)</title><rect x="42.4819%" y="821" width="0.2304%" height="15" fill="rgb(217,114,14)" fg:x="64174" fg:w="348"/><text x="42.7319%" y="831.50"></text></g><g><title>GangWorker::loop (347 samples, 0.23%)</title><rect x="42.4826%" y="805" width="0.2297%" height="15" fill="rgb(216,145,22)" fg:x="64175" fg:w="347"/><text x="42.7326%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (96 samples, 0.06%)</title><rect x="42.6487%" y="789" width="0.0636%" height="15" fill="rgb(217,112,39)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="799.50"></text></g><g><title>PosixSemaphore::wait (96 samples, 0.06%)</title><rect x="42.6487%" y="773" width="0.0636%" height="15" fill="rgb(225,85,32)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="783.50"></text></g><g><title>__new_sem_wait_slow (96 samples, 0.06%)</title><rect x="42.6487%" y="757" width="0.0636%" height="15" fill="rgb(245,209,47)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="767.50"></text></g><g><title>do_futex_wait (96 samples, 0.06%)</title><rect x="42.6487%" y="741" width="0.0636%" height="15" fill="rgb(218,220,15)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (96 samples, 0.06%)</title><rect x="42.6487%" y="725" width="0.0636%" height="15" fill="rgb(222,202,31)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.06%)</title><rect x="42.6487%" y="709" width="0.0636%" height="15" fill="rgb(243,203,4)" fg:x="64426" fg:w="96"/><text x="42.8987%" y="719.50"></text></g><g><title>[perf-983083.map] (112 samples, 0.07%)</title><rect x="42.7268%" y="869" width="0.0741%" height="15" fill="rgb(237,92,17)" fg:x="64544" fg:w="112"/><text x="42.9768%" y="879.50"></text></g><g><title>Service_Thread (139 samples, 0.09%)</title><rect x="42.7222%" y="885" width="0.0920%" height="15" fill="rgb(231,119,7)" fg:x="64537" fg:w="139"/><text x="42.9722%" y="895.50"></text></g><g><title>[anon] (16 samples, 0.01%)</title><rect x="42.8215%" y="869" width="0.0106%" height="15" fill="rgb(237,82,41)" fg:x="64687" fg:w="16"/><text x="43.0715%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (87 samples, 0.06%)</title><rect x="42.8797%" y="533" width="0.0576%" height="15" fill="rgb(226,81,48)" fg:x="64775" fg:w="87"/><text x="43.1297%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.06%)</title><rect x="42.8817%" y="517" width="0.0556%" height="15" fill="rgb(234,70,51)" fg:x="64778" fg:w="84"/><text x="43.1317%" y="527.50"></text></g><g><title>native_write_msr (84 samples, 0.06%)</title><rect x="42.8817%" y="501" width="0.0556%" height="15" fill="rgb(251,86,4)" fg:x="64778" fg:w="84"/><text x="43.1317%" y="511.50"></text></g><g><title>finish_task_switch (91 samples, 0.06%)</title><rect x="42.8784%" y="549" width="0.0602%" height="15" fill="rgb(244,144,28)" fg:x="64773" fg:w="91"/><text x="43.1284%" y="559.50"></text></g><g><title>futex_wait_queue_me (133 samples, 0.09%)</title><rect x="42.8586%" y="597" width="0.0880%" height="15" fill="rgb(232,161,39)" fg:x="64743" fg:w="133"/><text x="43.1086%" y="607.50"></text></g><g><title>schedule (120 samples, 0.08%)</title><rect x="42.8672%" y="581" width="0.0794%" height="15" fill="rgb(247,34,51)" fg:x="64756" fg:w="120"/><text x="43.1172%" y="591.50"></text></g><g><title>__schedule (119 samples, 0.08%)</title><rect x="42.8678%" y="565" width="0.0788%" height="15" fill="rgb(225,132,2)" fg:x="64757" fg:w="119"/><text x="43.1178%" y="575.50"></text></g><g><title>do_futex (148 samples, 0.10%)</title><rect x="42.8559%" y="629" width="0.0980%" height="15" fill="rgb(209,159,44)" fg:x="64739" fg:w="148"/><text x="43.1059%" y="639.50"></text></g><g><title>futex_wait (146 samples, 0.10%)</title><rect x="42.8572%" y="613" width="0.0966%" height="15" fill="rgb(251,214,1)" fg:x="64741" fg:w="146"/><text x="43.1072%" y="623.50"></text></g><g><title>do_syscall_64 (153 samples, 0.10%)</title><rect x="42.8553%" y="661" width="0.1013%" height="15" fill="rgb(247,84,47)" fg:x="64738" fg:w="153"/><text x="43.1053%" y="671.50"></text></g><g><title>__x64_sys_futex (153 samples, 0.10%)</title><rect x="42.8553%" y="645" width="0.1013%" height="15" fill="rgb(240,111,43)" fg:x="64738" fg:w="153"/><text x="43.1053%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (162 samples, 0.11%)</title><rect x="42.8553%" y="677" width="0.1072%" height="15" fill="rgb(215,214,35)" fg:x="64738" fg:w="162"/><text x="43.1053%" y="687.50"></text></g><g><title>__pthread_cond_timedwait (177 samples, 0.12%)</title><rect x="42.8473%" y="725" width="0.1172%" height="15" fill="rgb(248,207,23)" fg:x="64726" fg:w="177"/><text x="43.0973%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (177 samples, 0.12%)</title><rect x="42.8473%" y="709" width="0.1172%" height="15" fill="rgb(214,186,4)" fg:x="64726" fg:w="177"/><text x="43.0973%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (168 samples, 0.11%)</title><rect x="42.8533%" y="693" width="0.1112%" height="15" fill="rgb(220,133,22)" fg:x="64735" fg:w="168"/><text x="43.1033%" y="703.50"></text></g><g><title>Monitor::wait (198 samples, 0.13%)</title><rect x="42.8413%" y="773" width="0.1311%" height="15" fill="rgb(239,134,19)" fg:x="64717" fg:w="198"/><text x="43.0913%" y="783.50"></text></g><g><title>Monitor::IWait (197 samples, 0.13%)</title><rect x="42.8420%" y="757" width="0.1304%" height="15" fill="rgb(250,140,9)" fg:x="64718" fg:w="197"/><text x="43.0920%" y="767.50"></text></g><g><title>os::PlatformEvent::park (190 samples, 0.13%)</title><rect x="42.8466%" y="741" width="0.1258%" height="15" fill="rgb(225,59,14)" fg:x="64725" fg:w="190"/><text x="43.0966%" y="751.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (87 samples, 0.06%)</title><rect x="42.9910%" y="725" width="0.0576%" height="15" fill="rgb(214,152,51)" fg:x="64943" fg:w="87"/><text x="43.2410%" y="735.50"></text></g><g><title>NMethodSweeper::process_compiled_method (113 samples, 0.07%)</title><rect x="42.9896%" y="741" width="0.0748%" height="15" fill="rgb(251,227,43)" fg:x="64941" fg:w="113"/><text x="43.2396%" y="751.50"></text></g><g><title>NMethodSweeper::possibly_sweep (146 samples, 0.10%)</title><rect x="42.9724%" y="773" width="0.0966%" height="15" fill="rgb(241,96,17)" fg:x="64915" fg:w="146"/><text x="43.2224%" y="783.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (134 samples, 0.09%)</title><rect x="42.9804%" y="757" width="0.0887%" height="15" fill="rgb(234,198,43)" fg:x="64927" fg:w="134"/><text x="43.2304%" y="767.50"></text></g><g><title>__GI___clone (361 samples, 0.24%)</title><rect x="42.8341%" y="869" width="0.2390%" height="15" fill="rgb(220,108,29)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="879.50"></text></g><g><title>start_thread (361 samples, 0.24%)</title><rect x="42.8341%" y="853" width="0.2390%" height="15" fill="rgb(226,163,33)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="863.50"></text></g><g><title>thread_native_entry (361 samples, 0.24%)</title><rect x="42.8341%" y="837" width="0.2390%" height="15" fill="rgb(205,194,45)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="847.50"></text></g><g><title>Thread::call_run (361 samples, 0.24%)</title><rect x="42.8341%" y="821" width="0.2390%" height="15" fill="rgb(206,143,44)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (361 samples, 0.24%)</title><rect x="42.8341%" y="805" width="0.2390%" height="15" fill="rgb(236,136,36)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="815.50"></text></g><g><title>NMethodSweeper::sweeper_loop (361 samples, 0.24%)</title><rect x="42.8341%" y="789" width="0.2390%" height="15" fill="rgb(249,172,42)" fg:x="64706" fg:w="361"/><text x="43.0841%" y="799.50"></text></g><g><title>Sweeper_thread (389 samples, 0.26%)</title><rect x="42.8202%" y="885" width="0.2575%" height="15" fill="rgb(216,139,23)" fg:x="64685" fg:w="389"/><text x="43.0702%" y="895.50"></text></g><g><title>JVM_Sleep (19 samples, 0.01%)</title><rect x="43.1392%" y="853" width="0.0126%" height="15" fill="rgb(207,166,20)" fg:x="65167" fg:w="19"/><text x="43.3892%" y="863.50"></text></g><g><title>os::sleep (17 samples, 0.01%)</title><rect x="43.1406%" y="837" width="0.0113%" height="15" fill="rgb(210,209,22)" fg:x="65169" fg:w="17"/><text x="43.3906%" y="847.50"></text></g><g><title>[perf-983083.map] (138 samples, 0.09%)</title><rect x="43.0803%" y="869" width="0.0914%" height="15" fill="rgb(232,118,20)" fg:x="65078" fg:w="138"/><text x="43.3303%" y="879.50"></text></g><g><title>Thread-0 (148 samples, 0.10%)</title><rect x="43.0777%" y="885" width="0.0980%" height="15" fill="rgb(238,113,42)" fg:x="65074" fg:w="148"/><text x="43.3277%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="43.1882%" y="533" width="0.0139%" height="15" fill="rgb(231,42,5)" fg:x="65241" fg:w="21"/><text x="43.4382%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="43.1882%" y="517" width="0.0139%" height="15" fill="rgb(243,166,24)" fg:x="65241" fg:w="21"/><text x="43.4382%" y="527.50"></text></g><g><title>native_write_msr (21 samples, 0.01%)</title><rect x="43.1882%" y="501" width="0.0139%" height="15" fill="rgb(237,226,12)" fg:x="65241" fg:w="21"/><text x="43.4382%" y="511.50"></text></g><g><title>finish_task_switch (22 samples, 0.01%)</title><rect x="43.1882%" y="549" width="0.0146%" height="15" fill="rgb(229,133,24)" fg:x="65241" fg:w="22"/><text x="43.4382%" y="559.50"></text></g><g><title>__pthread_cond_timedwait (35 samples, 0.02%)</title><rect x="43.1816%" y="725" width="0.0232%" height="15" fill="rgb(238,33,43)" fg:x="65231" fg:w="35"/><text x="43.4316%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.02%)</title><rect x="43.1816%" y="709" width="0.0232%" height="15" fill="rgb(227,59,38)" fg:x="65231" fg:w="35"/><text x="43.4316%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (34 samples, 0.02%)</title><rect x="43.1823%" y="693" width="0.0225%" height="15" fill="rgb(230,97,0)" fg:x="65232" fg:w="34"/><text x="43.4323%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="43.1829%" y="677" width="0.0218%" height="15" fill="rgb(250,173,50)" fg:x="65233" fg:w="33"/><text x="43.4329%" y="687.50"></text></g><g><title>do_syscall_64 (33 samples, 0.02%)</title><rect x="43.1829%" y="661" width="0.0218%" height="15" fill="rgb(240,15,50)" fg:x="65233" fg:w="33"/><text x="43.4329%" y="671.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.02%)</title><rect x="43.1829%" y="645" width="0.0218%" height="15" fill="rgb(221,93,22)" fg:x="65233" fg:w="33"/><text x="43.4329%" y="655.50"></text></g><g><title>do_futex (33 samples, 0.02%)</title><rect x="43.1829%" y="629" width="0.0218%" height="15" fill="rgb(245,180,53)" fg:x="65233" fg:w="33"/><text x="43.4329%" y="639.50"></text></g><g><title>futex_wait (33 samples, 0.02%)</title><rect x="43.1829%" y="613" width="0.0218%" height="15" fill="rgb(231,88,51)" fg:x="65233" fg:w="33"/><text x="43.4329%" y="623.50"></text></g><g><title>futex_wait_queue_me (31 samples, 0.02%)</title><rect x="43.1843%" y="597" width="0.0205%" height="15" fill="rgb(240,58,21)" fg:x="65235" fg:w="31"/><text x="43.4343%" y="607.50"></text></g><g><title>schedule (29 samples, 0.02%)</title><rect x="43.1856%" y="581" width="0.0192%" height="15" fill="rgb(237,21,10)" fg:x="65237" fg:w="29"/><text x="43.4356%" y="591.50"></text></g><g><title>__schedule (29 samples, 0.02%)</title><rect x="43.1856%" y="565" width="0.0192%" height="15" fill="rgb(218,43,11)" fg:x="65237" fg:w="29"/><text x="43.4356%" y="575.50"></text></g><g><title>__GI___clone (43 samples, 0.03%)</title><rect x="43.1776%" y="869" width="0.0285%" height="15" fill="rgb(218,221,29)" fg:x="65225" fg:w="43"/><text x="43.4276%" y="879.50"></text></g><g><title>start_thread (43 samples, 0.03%)</title><rect x="43.1776%" y="853" width="0.0285%" height="15" fill="rgb(214,118,42)" fg:x="65225" fg:w="43"/><text x="43.4276%" y="863.50"></text></g><g><title>thread_native_entry (43 samples, 0.03%)</title><rect x="43.1776%" y="837" width="0.0285%" height="15" fill="rgb(251,200,26)" fg:x="65225" fg:w="43"/><text x="43.4276%" y="847.50"></text></g><g><title>Thread::call_run (43 samples, 0.03%)</title><rect x="43.1776%" y="821" width="0.0285%" height="15" fill="rgb(237,101,39)" fg:x="65225" fg:w="43"/><text x="43.4276%" y="831.50"></text></g><g><title>WatcherThread::run (43 samples, 0.03%)</title><rect x="43.1776%" y="805" width="0.0285%" height="15" fill="rgb(251,117,11)" fg:x="65225" fg:w="43"/><text x="43.4276%" y="815.50"></text></g><g><title>WatcherThread::sleep (39 samples, 0.03%)</title><rect x="43.1803%" y="789" width="0.0258%" height="15" fill="rgb(216,223,23)" fg:x="65229" fg:w="39"/><text x="43.4303%" y="799.50"></text></g><g><title>Monitor::wait (39 samples, 0.03%)</title><rect x="43.1803%" y="773" width="0.0258%" height="15" fill="rgb(251,54,12)" fg:x="65229" fg:w="39"/><text x="43.4303%" y="783.50"></text></g><g><title>Monitor::IWait (39 samples, 0.03%)</title><rect x="43.1803%" y="757" width="0.0258%" height="15" fill="rgb(254,176,54)" fg:x="65229" fg:w="39"/><text x="43.4303%" y="767.50"></text></g><g><title>os::PlatformEvent::park (39 samples, 0.03%)</title><rect x="43.1803%" y="741" width="0.0258%" height="15" fill="rgb(210,32,8)" fg:x="65229" fg:w="39"/><text x="43.4303%" y="751.50"></text></g><g><title>VM_Periodic_Tas (47 samples, 0.03%)</title><rect x="43.1756%" y="885" width="0.0311%" height="15" fill="rgb(235,52,38)" fg:x="65222" fg:w="47"/><text x="43.4256%" y="895.50"></text></g><g><title>[unknown] (57 samples, 0.04%)</title><rect x="43.2140%" y="869" width="0.0377%" height="15" fill="rgb(231,4,44)" fg:x="65280" fg:w="57"/><text x="43.4640%" y="879.50"></text></g><g><title>vframe::sender (52 samples, 0.03%)</title><rect x="43.2174%" y="853" width="0.0344%" height="15" fill="rgb(249,2,32)" fg:x="65285" fg:w="52"/><text x="43.4674%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="43.2524%" y="805" width="0.0225%" height="15" fill="rgb(224,65,26)" fg:x="65338" fg:w="34"/><text x="43.5024%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="43.2524%" y="789" width="0.0225%" height="15" fill="rgb(250,73,40)" fg:x="65338" fg:w="34"/><text x="43.5024%" y="799.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="43.2524%" y="773" width="0.0225%" height="15" fill="rgb(253,177,16)" fg:x="65338" fg:w="34"/><text x="43.5024%" y="783.50"></text></g><g><title>ret_from_fork (36 samples, 0.02%)</title><rect x="43.2518%" y="853" width="0.0238%" height="15" fill="rgb(217,32,34)" fg:x="65337" fg:w="36"/><text x="43.5018%" y="863.50"></text></g><g><title>schedule_tail (35 samples, 0.02%)</title><rect x="43.2524%" y="837" width="0.0232%" height="15" fill="rgb(212,7,10)" fg:x="65338" fg:w="35"/><text x="43.5024%" y="847.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="43.2524%" y="821" width="0.0232%" height="15" fill="rgb(245,89,8)" fg:x="65338" fg:w="35"/><text x="43.5024%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (60 samples, 0.04%)</title><rect x="43.2922%" y="533" width="0.0397%" height="15" fill="rgb(237,16,53)" fg:x="65398" fg:w="60"/><text x="43.5422%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.04%)</title><rect x="43.2935%" y="517" width="0.0384%" height="15" fill="rgb(250,204,30)" fg:x="65400" fg:w="58"/><text x="43.5435%" y="527.50"></text></g><g><title>native_write_msr (58 samples, 0.04%)</title><rect x="43.2935%" y="501" width="0.0384%" height="15" fill="rgb(208,77,27)" fg:x="65400" fg:w="58"/><text x="43.5435%" y="511.50"></text></g><g><title>finish_task_switch (67 samples, 0.04%)</title><rect x="43.2895%" y="549" width="0.0444%" height="15" fill="rgb(250,204,28)" fg:x="65394" fg:w="67"/><text x="43.5395%" y="559.50"></text></g><g><title>futex_wait_queue_me (70 samples, 0.05%)</title><rect x="43.2882%" y="597" width="0.0463%" height="15" fill="rgb(244,63,21)" fg:x="65392" fg:w="70"/><text x="43.5382%" y="607.50"></text></g><g><title>schedule (70 samples, 0.05%)</title><rect x="43.2882%" y="581" width="0.0463%" height="15" fill="rgb(236,85,44)" fg:x="65392" fg:w="70"/><text x="43.5382%" y="591.50"></text></g><g><title>__schedule (70 samples, 0.05%)</title><rect x="43.2882%" y="565" width="0.0463%" height="15" fill="rgb(215,98,4)" fg:x="65392" fg:w="70"/><text x="43.5382%" y="575.50"></text></g><g><title>Monitor::wait (75 samples, 0.05%)</title><rect x="43.2855%" y="773" width="0.0496%" height="15" fill="rgb(235,38,11)" fg:x="65388" fg:w="75"/><text x="43.5355%" y="783.50"></text></g><g><title>Monitor::IWait (75 samples, 0.05%)</title><rect x="43.2855%" y="757" width="0.0496%" height="15" fill="rgb(254,186,25)" fg:x="65388" fg:w="75"/><text x="43.5355%" y="767.50"></text></g><g><title>os::PlatformEvent::park (74 samples, 0.05%)</title><rect x="43.2862%" y="741" width="0.0490%" height="15" fill="rgb(225,55,31)" fg:x="65389" fg:w="74"/><text x="43.5362%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (74 samples, 0.05%)</title><rect x="43.2862%" y="725" width="0.0490%" height="15" fill="rgb(211,15,21)" fg:x="65389" fg:w="74"/><text x="43.5362%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (73 samples, 0.05%)</title><rect x="43.2869%" y="709" width="0.0483%" height="15" fill="rgb(215,187,41)" fg:x="65390" fg:w="73"/><text x="43.5369%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (72 samples, 0.05%)</title><rect x="43.2875%" y="693" width="0.0477%" height="15" fill="rgb(248,69,32)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.05%)</title><rect x="43.2875%" y="677" width="0.0477%" height="15" fill="rgb(252,102,52)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="687.50"></text></g><g><title>do_syscall_64 (72 samples, 0.05%)</title><rect x="43.2875%" y="661" width="0.0477%" height="15" fill="rgb(253,140,32)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="671.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.05%)</title><rect x="43.2875%" y="645" width="0.0477%" height="15" fill="rgb(216,56,42)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="655.50"></text></g><g><title>do_futex (72 samples, 0.05%)</title><rect x="43.2875%" y="629" width="0.0477%" height="15" fill="rgb(216,184,14)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="639.50"></text></g><g><title>futex_wait (72 samples, 0.05%)</title><rect x="43.2875%" y="613" width="0.0477%" height="15" fill="rgb(237,187,27)" fg:x="65391" fg:w="72"/><text x="43.5375%" y="623.50"></text></g><g><title>ttwu_do_activate (18 samples, 0.01%)</title><rect x="43.4093%" y="549" width="0.0119%" height="15" fill="rgb(219,65,3)" fg:x="65575" fg:w="18"/><text x="43.6593%" y="559.50"></text></g><g><title>PosixSemaphore::signal (44 samples, 0.03%)</title><rect x="43.3928%" y="709" width="0.0291%" height="15" fill="rgb(245,83,25)" fg:x="65550" fg:w="44"/><text x="43.6428%" y="719.50"></text></g><g><title>__new_sem_post (44 samples, 0.03%)</title><rect x="43.3928%" y="693" width="0.0291%" height="15" fill="rgb(214,205,45)" fg:x="65550" fg:w="44"/><text x="43.6428%" y="703.50"></text></g><g><title>futex_wake (44 samples, 0.03%)</title><rect x="43.3928%" y="677" width="0.0291%" height="15" fill="rgb(241,20,18)" fg:x="65550" fg:w="44"/><text x="43.6428%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.03%)</title><rect x="43.3934%" y="661" width="0.0285%" height="15" fill="rgb(232,163,23)" fg:x="65551" fg:w="43"/><text x="43.6434%" y="671.50"></text></g><g><title>do_syscall_64 (43 samples, 0.03%)</title><rect x="43.3934%" y="645" width="0.0285%" height="15" fill="rgb(214,5,46)" fg:x="65551" fg:w="43"/><text x="43.6434%" y="655.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.03%)</title><rect x="43.3941%" y="629" width="0.0278%" height="15" fill="rgb(229,78,17)" fg:x="65552" fg:w="42"/><text x="43.6441%" y="639.50"></text></g><g><title>do_futex (41 samples, 0.03%)</title><rect x="43.3948%" y="613" width="0.0271%" height="15" fill="rgb(248,89,10)" fg:x="65553" fg:w="41"/><text x="43.6448%" y="623.50"></text></g><g><title>futex_wake (39 samples, 0.03%)</title><rect x="43.3961%" y="597" width="0.0258%" height="15" fill="rgb(248,54,15)" fg:x="65555" fg:w="39"/><text x="43.6461%" y="607.50"></text></g><g><title>wake_up_q (35 samples, 0.02%)</title><rect x="43.3987%" y="581" width="0.0232%" height="15" fill="rgb(223,116,6)" fg:x="65559" fg:w="35"/><text x="43.6487%" y="591.50"></text></g><g><title>try_to_wake_up (35 samples, 0.02%)</title><rect x="43.3987%" y="565" width="0.0232%" height="15" fill="rgb(205,125,38)" fg:x="65559" fg:w="35"/><text x="43.6487%" y="575.50"></text></g><g><title>finish_task_switch (64 samples, 0.04%)</title><rect x="43.4265%" y="517" width="0.0424%" height="15" fill="rgb(251,78,38)" fg:x="65601" fg:w="64"/><text x="43.6765%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.04%)</title><rect x="43.4285%" y="501" width="0.0404%" height="15" fill="rgb(253,78,28)" fg:x="65604" fg:w="61"/><text x="43.6785%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.04%)</title><rect x="43.4298%" y="485" width="0.0391%" height="15" fill="rgb(209,120,3)" fg:x="65606" fg:w="59"/><text x="43.6798%" y="495.50"></text></g><g><title>native_write_msr (59 samples, 0.04%)</title><rect x="43.4298%" y="469" width="0.0391%" height="15" fill="rgb(238,229,9)" fg:x="65606" fg:w="59"/><text x="43.6798%" y="479.50"></text></g><g><title>do_syscall_64 (73 samples, 0.05%)</title><rect x="43.4226%" y="629" width="0.0483%" height="15" fill="rgb(253,159,18)" fg:x="65595" fg:w="73"/><text x="43.6726%" y="639.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.05%)</title><rect x="43.4232%" y="613" width="0.0477%" height="15" fill="rgb(244,42,34)" fg:x="65596" fg:w="72"/><text x="43.6732%" y="623.50"></text></g><g><title>do_futex (72 samples, 0.05%)</title><rect x="43.4232%" y="597" width="0.0477%" height="15" fill="rgb(224,8,7)" fg:x="65596" fg:w="72"/><text x="43.6732%" y="607.50"></text></g><g><title>futex_wait (72 samples, 0.05%)</title><rect x="43.4232%" y="581" width="0.0477%" height="15" fill="rgb(210,201,45)" fg:x="65596" fg:w="72"/><text x="43.6732%" y="591.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.05%)</title><rect x="43.4232%" y="565" width="0.0477%" height="15" fill="rgb(252,185,21)" fg:x="65596" fg:w="72"/><text x="43.6732%" y="575.50"></text></g><g><title>schedule (70 samples, 0.05%)</title><rect x="43.4246%" y="549" width="0.0463%" height="15" fill="rgb(223,131,1)" fg:x="65598" fg:w="70"/><text x="43.6746%" y="559.50"></text></g><g><title>__schedule (69 samples, 0.05%)</title><rect x="43.4252%" y="533" width="0.0457%" height="15" fill="rgb(245,141,16)" fg:x="65599" fg:w="69"/><text x="43.6752%" y="543.50"></text></g><g><title>WorkGang::run_task (122 samples, 0.08%)</title><rect x="43.3915%" y="741" width="0.0808%" height="15" fill="rgb(229,55,45)" fg:x="65548" fg:w="122"/><text x="43.6415%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (120 samples, 0.08%)</title><rect x="43.3928%" y="725" width="0.0794%" height="15" fill="rgb(208,92,15)" fg:x="65550" fg:w="120"/><text x="43.6428%" y="735.50"></text></g><g><title>PosixSemaphore::wait (76 samples, 0.05%)</title><rect x="43.4219%" y="709" width="0.0503%" height="15" fill="rgb(234,185,47)" fg:x="65594" fg:w="76"/><text x="43.6719%" y="719.50"></text></g><g><title>__new_sem_wait_slow (76 samples, 0.05%)</title><rect x="43.4219%" y="693" width="0.0503%" height="15" fill="rgb(253,104,50)" fg:x="65594" fg:w="76"/><text x="43.6719%" y="703.50"></text></g><g><title>do_futex_wait (76 samples, 0.05%)</title><rect x="43.4219%" y="677" width="0.0503%" height="15" fill="rgb(205,70,7)" fg:x="65594" fg:w="76"/><text x="43.6719%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (76 samples, 0.05%)</title><rect x="43.4219%" y="661" width="0.0503%" height="15" fill="rgb(240,178,43)" fg:x="65594" fg:w="76"/><text x="43.6719%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (75 samples, 0.05%)</title><rect x="43.4226%" y="645" width="0.0496%" height="15" fill="rgb(214,112,2)" fg:x="65595" fg:w="75"/><text x="43.6726%" y="655.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (127 samples, 0.08%)</title><rect x="43.3888%" y="757" width="0.0841%" height="15" fill="rgb(206,46,17)" fg:x="65544" fg:w="127"/><text x="43.6388%" y="767.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="43.4795%" y="725" width="0.0126%" height="15" fill="rgb(225,220,16)" fg:x="65681" fg:w="19"/><text x="43.7295%" y="735.50"></text></g><g><title>__x64_sys_sched_yield (19 samples, 0.01%)</title><rect x="43.4795%" y="709" width="0.0126%" height="15" fill="rgb(238,65,40)" fg:x="65681" fg:w="19"/><text x="43.7295%" y="719.50"></text></g><g><title>SafepointSynchronize::begin (238 samples, 0.16%)</title><rect x="43.3352%" y="773" width="0.1576%" height="15" fill="rgb(230,151,21)" fg:x="65463" fg:w="238"/><text x="43.5852%" y="783.50"></text></g><g><title>__GI___sched_yield (23 samples, 0.02%)</title><rect x="43.4775%" y="757" width="0.0152%" height="15" fill="rgb(218,58,49)" fg:x="65678" fg:w="23"/><text x="43.7275%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="43.4795%" y="741" width="0.0132%" height="15" fill="rgb(219,179,14)" fg:x="65681" fg:w="20"/><text x="43.7295%" y="751.50"></text></g><g><title>VM_CGC_Operation::doit (17 samples, 0.01%)</title><rect x="43.5119%" y="741" width="0.0113%" height="15" fill="rgb(223,72,1)" fg:x="65730" fg:w="17"/><text x="43.7619%" y="751.50"></text></g><g><title>G1ConcurrentMark::remark (17 samples, 0.01%)</title><rect x="43.5119%" y="725" width="0.0113%" height="15" fill="rgb(238,126,10)" fg:x="65730" fg:w="17"/><text x="43.7619%" y="735.50"></text></g><g><title>CodeHeap::next_used (34 samples, 0.02%)</title><rect x="43.5278%" y="693" width="0.0225%" height="15" fill="rgb(224,206,38)" fg:x="65754" fg:w="34"/><text x="43.7778%" y="703.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (43 samples, 0.03%)</title><rect x="43.5245%" y="709" width="0.0285%" height="15" fill="rgb(212,201,54)" fg:x="65749" fg:w="43"/><text x="43.7745%" y="719.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (45 samples, 0.03%)</title><rect x="43.5239%" y="725" width="0.0298%" height="15" fill="rgb(218,154,48)" fg:x="65748" fg:w="45"/><text x="43.7739%" y="735.50"></text></g><g><title>VM_Deoptimize::doit (50 samples, 0.03%)</title><rect x="43.5239%" y="741" width="0.0331%" height="15" fill="rgb(232,93,24)" fg:x="65748" fg:w="50"/><text x="43.7739%" y="751.50"></text></g><g><title>VM_Operation::evaluate (97 samples, 0.06%)</title><rect x="43.5060%" y="757" width="0.0642%" height="15" fill="rgb(245,30,21)" fg:x="65721" fg:w="97"/><text x="43.7560%" y="767.50"></text></g><g><title>VMThread::evaluate_operation (99 samples, 0.07%)</title><rect x="43.5060%" y="773" width="0.0655%" height="15" fill="rgb(242,148,29)" fg:x="65721" fg:w="99"/><text x="43.7560%" y="783.50"></text></g><g><title>Thread::call_run (448 samples, 0.30%)</title><rect x="43.2763%" y="821" width="0.2966%" height="15" fill="rgb(244,153,54)" fg:x="65374" fg:w="448"/><text x="43.5263%" y="831.50"></text></g><g><title>VMThread::run (448 samples, 0.30%)</title><rect x="43.2763%" y="805" width="0.2966%" height="15" fill="rgb(252,87,22)" fg:x="65374" fg:w="448"/><text x="43.5263%" y="815.50"></text></g><g><title>VMThread::loop (448 samples, 0.30%)</title><rect x="43.2763%" y="789" width="0.2966%" height="15" fill="rgb(210,51,29)" fg:x="65374" fg:w="448"/><text x="43.5263%" y="799.50"></text></g><g><title>__GI___clone (490 samples, 0.32%)</title><rect x="43.2518%" y="869" width="0.3244%" height="15" fill="rgb(242,136,47)" fg:x="65337" fg:w="490"/><text x="43.5018%" y="879.50"></text></g><g><title>start_thread (454 samples, 0.30%)</title><rect x="43.2756%" y="853" width="0.3005%" height="15" fill="rgb(238,68,4)" fg:x="65373" fg:w="454"/><text x="43.5256%" y="863.50"></text></g><g><title>thread_native_entry (454 samples, 0.30%)</title><rect x="43.2756%" y="837" width="0.3005%" height="15" fill="rgb(242,161,30)" fg:x="65373" fg:w="454"/><text x="43.5256%" y="847.50"></text></g><g><title>VM_Thread (563 samples, 0.37%)</title><rect x="43.2068%" y="885" width="0.3727%" height="15" fill="rgb(218,58,44)" fg:x="65269" fg:w="563"/><text x="43.4568%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.05%)</title><rect x="43.7119%" y="709" width="0.0516%" height="15" fill="rgb(252,125,32)" fg:x="66032" fg:w="78"/><text x="43.9619%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.05%)</title><rect x="43.7138%" y="693" width="0.0496%" height="15" fill="rgb(219,178,0)" fg:x="66035" fg:w="75"/><text x="43.9638%" y="703.50"></text></g><g><title>native_write_msr (75 samples, 0.05%)</title><rect x="43.7138%" y="677" width="0.0496%" height="15" fill="rgb(213,152,7)" fg:x="66035" fg:w="75"/><text x="43.9638%" y="687.50"></text></g><g><title>finish_task_switch (85 samples, 0.06%)</title><rect x="43.7105%" y="725" width="0.0563%" height="15" fill="rgb(249,109,34)" fg:x="66030" fg:w="85"/><text x="43.9605%" y="735.50"></text></g><g><title>futex_wait (98 samples, 0.06%)</title><rect x="43.7032%" y="789" width="0.0649%" height="15" fill="rgb(232,96,21)" fg:x="66019" fg:w="98"/><text x="43.9532%" y="799.50"></text></g><g><title>futex_wait_queue_me (96 samples, 0.06%)</title><rect x="43.7046%" y="773" width="0.0636%" height="15" fill="rgb(228,27,39)" fg:x="66021" fg:w="96"/><text x="43.9546%" y="783.50"></text></g><g><title>schedule (92 samples, 0.06%)</title><rect x="43.7072%" y="757" width="0.0609%" height="15" fill="rgb(211,182,52)" fg:x="66025" fg:w="92"/><text x="43.9572%" y="767.50"></text></g><g><title>__schedule (91 samples, 0.06%)</title><rect x="43.7079%" y="741" width="0.0602%" height="15" fill="rgb(234,178,38)" fg:x="66026" fg:w="91"/><text x="43.9579%" y="751.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.07%)</title><rect x="43.7032%" y="821" width="0.0695%" height="15" fill="rgb(221,111,3)" fg:x="66019" fg:w="105"/><text x="43.9532%" y="831.50"></text></g><g><title>do_futex (105 samples, 0.07%)</title><rect x="43.7032%" y="805" width="0.0695%" height="15" fill="rgb(228,175,21)" fg:x="66019" fg:w="105"/><text x="43.9532%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="43.7860%" y="725" width="0.0139%" height="15" fill="rgb(228,174,43)" fg:x="66144" fg:w="21"/><text x="44.0360%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="43.7867%" y="709" width="0.0132%" height="15" fill="rgb(211,191,0)" fg:x="66145" fg:w="20"/><text x="44.0367%" y="719.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="43.7873%" y="693" width="0.0126%" height="15" fill="rgb(253,117,3)" fg:x="66146" fg:w="19"/><text x="44.0373%" y="703.50"></text></g><g><title>finish_task_switch (22 samples, 0.01%)</title><rect x="43.7860%" y="741" width="0.0146%" height="15" fill="rgb(241,127,19)" fg:x="66144" fg:w="22"/><text x="44.0360%" y="751.50"></text></g><g><title>__x64_sys_nanosleep (45 samples, 0.03%)</title><rect x="43.7767%" y="821" width="0.0298%" height="15" fill="rgb(218,103,12)" fg:x="66130" fg:w="45"/><text x="44.0267%" y="831.50"></text></g><g><title>hrtimer_nanosleep (44 samples, 0.03%)</title><rect x="43.7774%" y="805" width="0.0291%" height="15" fill="rgb(236,214,43)" fg:x="66131" fg:w="44"/><text x="44.0274%" y="815.50"></text></g><g><title>do_nanosleep (44 samples, 0.03%)</title><rect x="43.7774%" y="789" width="0.0291%" height="15" fill="rgb(244,144,19)" fg:x="66131" fg:w="44"/><text x="44.0274%" y="799.50"></text></g><g><title>schedule (38 samples, 0.03%)</title><rect x="43.7814%" y="773" width="0.0252%" height="15" fill="rgb(246,188,10)" fg:x="66137" fg:w="38"/><text x="44.0314%" y="783.50"></text></g><g><title>__schedule (38 samples, 0.03%)</title><rect x="43.7814%" y="757" width="0.0252%" height="15" fill="rgb(212,193,33)" fg:x="66137" fg:w="38"/><text x="44.0314%" y="767.50"></text></g><g><title>do_syscall_64 (180 samples, 0.12%)</title><rect x="43.6927%" y="837" width="0.1192%" height="15" fill="rgb(241,51,29)" fg:x="66003" fg:w="180"/><text x="43.9427%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (184 samples, 0.12%)</title><rect x="43.6927%" y="853" width="0.1218%" height="15" fill="rgb(211,58,19)" fg:x="66003" fg:w="184"/><text x="43.9427%" y="863.50"></text></g><g><title>schedule_tail (42 samples, 0.03%)</title><rect x="43.8151%" y="837" width="0.0278%" height="15" fill="rgb(229,111,26)" fg:x="66188" fg:w="42"/><text x="44.0651%" y="847.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="43.8151%" y="821" width="0.0278%" height="15" fill="rgb(213,115,40)" fg:x="66188" fg:w="42"/><text x="44.0651%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.03%)</title><rect x="43.8158%" y="805" width="0.0271%" height="15" fill="rgb(209,56,44)" fg:x="66189" fg:w="41"/><text x="44.0658%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (41 samples, 0.03%)</title><rect x="43.8158%" y="789" width="0.0271%" height="15" fill="rgb(230,108,32)" fg:x="66189" fg:w="41"/><text x="44.0658%" y="799.50"></text></g><g><title>native_write_msr (41 samples, 0.03%)</title><rect x="43.8158%" y="773" width="0.0271%" height="15" fill="rgb(216,165,31)" fg:x="66189" fg:w="41"/><text x="44.0658%" y="783.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (390 samples, 0.26%)</title><rect x="43.5854%" y="869" width="0.2582%" height="15" fill="rgb(218,122,21)" fg:x="65841" fg:w="390"/><text x="43.8354%" y="879.50"></text></g><g><title>ret_from_fork (44 samples, 0.03%)</title><rect x="43.8145%" y="853" width="0.0291%" height="15" fill="rgb(223,224,47)" fg:x="66187" fg:w="44"/><text x="44.0645%" y="863.50"></text></g><g><title>__libc_start_main (20 samples, 0.01%)</title><rect x="43.8449%" y="853" width="0.0132%" height="15" fill="rgb(238,102,44)" fg:x="66233" fg:w="20"/><text x="44.0949%" y="863.50"></text></g><g><title>_start (32 samples, 0.02%)</title><rect x="43.8449%" y="869" width="0.0212%" height="15" fill="rgb(236,46,40)" fg:x="66233" fg:w="32"/><text x="44.0949%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="43.8681%" y="869" width="0.0113%" height="15" fill="rgb(247,202,50)" fg:x="66268" fg:w="17"/><text x="44.1181%" y="879.50"></text></g><g><title>bazel (449 samples, 0.30%)</title><rect x="43.5828%" y="885" width="0.2972%" height="15" fill="rgb(209,99,20)" fg:x="65837" fg:w="449"/><text x="43.8328%" y="895.50"></text></g><g><title>_dl_map_object_from_fd (18 samples, 0.01%)</title><rect x="43.9124%" y="725" width="0.0119%" height="15" fill="rgb(252,27,34)" fg:x="66335" fg:w="18"/><text x="44.1624%" y="735.50"></text></g><g><title>_dl_catch_exception (22 samples, 0.01%)</title><rect x="43.9118%" y="773" width="0.0146%" height="15" fill="rgb(215,206,23)" fg:x="66334" fg:w="22"/><text x="44.1618%" y="783.50"></text></g><g><title>openaux (22 samples, 0.01%)</title><rect x="43.9118%" y="757" width="0.0146%" height="15" fill="rgb(212,135,36)" fg:x="66334" fg:w="22"/><text x="44.1618%" y="767.50"></text></g><g><title>_dl_map_object (22 samples, 0.01%)</title><rect x="43.9118%" y="741" width="0.0146%" height="15" fill="rgb(240,189,1)" fg:x="66334" fg:w="22"/><text x="44.1618%" y="751.50"></text></g><g><title>_dl_map_object_deps (24 samples, 0.02%)</title><rect x="43.9111%" y="789" width="0.0159%" height="15" fill="rgb(242,56,20)" fg:x="66333" fg:w="24"/><text x="44.1611%" y="799.50"></text></g><g><title>_dl_lookup_symbol_x (43 samples, 0.03%)</title><rect x="43.9435%" y="741" width="0.0285%" height="15" fill="rgb(247,132,33)" fg:x="66382" fg:w="43"/><text x="44.1935%" y="751.50"></text></g><g><title>do_lookup_x (26 samples, 0.02%)</title><rect x="43.9548%" y="725" width="0.0172%" height="15" fill="rgb(208,149,11)" fg:x="66399" fg:w="26"/><text x="44.2048%" y="735.50"></text></g><g><title>elf_machine_rela (54 samples, 0.04%)</title><rect x="43.9369%" y="757" width="0.0357%" height="15" fill="rgb(211,33,11)" fg:x="66372" fg:w="54"/><text x="44.1869%" y="767.50"></text></g><g><title>_dl_relocate_object (67 samples, 0.04%)</title><rect x="43.9290%" y="789" width="0.0444%" height="15" fill="rgb(221,29,38)" fg:x="66360" fg:w="67"/><text x="44.1790%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (62 samples, 0.04%)</title><rect x="43.9323%" y="773" width="0.0410%" height="15" fill="rgb(206,182,49)" fg:x="66365" fg:w="62"/><text x="44.1823%" y="783.50"></text></g><g><title>_start (108 samples, 0.07%)</title><rect x="43.9032%" y="869" width="0.0715%" height="15" fill="rgb(216,140,1)" fg:x="66321" fg:w="108"/><text x="44.1532%" y="879.50"></text></g><g><title>_dl_start (97 samples, 0.06%)</title><rect x="43.9104%" y="853" width="0.0642%" height="15" fill="rgb(232,57,40)" fg:x="66332" fg:w="97"/><text x="44.1604%" y="863.50"></text></g><g><title>_dl_start_final (97 samples, 0.06%)</title><rect x="43.9104%" y="837" width="0.0642%" height="15" fill="rgb(224,186,18)" fg:x="66332" fg:w="97"/><text x="44.1604%" y="847.50"></text></g><g><title>_dl_sysdep_start (97 samples, 0.06%)</title><rect x="43.9104%" y="821" width="0.0642%" height="15" fill="rgb(215,121,11)" fg:x="66332" fg:w="97"/><text x="44.1604%" y="831.50"></text></g><g><title>[ld-2.31.so] (97 samples, 0.06%)</title><rect x="43.9104%" y="805" width="0.0642%" height="15" fill="rgb(245,147,10)" fg:x="66332" fg:w="97"/><text x="44.1604%" y="815.50"></text></g><g><title>mmput (16 samples, 0.01%)</title><rect x="43.9846%" y="789" width="0.0106%" height="15" fill="rgb(238,153,13)" fg:x="66444" fg:w="16"/><text x="44.2346%" y="799.50"></text></g><g><title>exit_mmap (16 samples, 0.01%)</title><rect x="43.9846%" y="773" width="0.0106%" height="15" fill="rgb(233,108,0)" fg:x="66444" fg:w="16"/><text x="44.2346%" y="783.50"></text></g><g><title>build-runfiles (174 samples, 0.12%)</title><rect x="43.8807%" y="885" width="0.1152%" height="15" fill="rgb(212,157,17)" fg:x="66287" fg:w="174"/><text x="44.1307%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="43.9793%" y="869" width="0.0165%" height="15" fill="rgb(225,213,38)" fg:x="66436" fg:w="25"/><text x="44.2293%" y="879.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="43.9793%" y="853" width="0.0165%" height="15" fill="rgb(248,16,11)" fg:x="66436" fg:w="25"/><text x="44.2293%" y="863.50"></text></g><g><title>__x64_sys_exit_group (17 samples, 0.01%)</title><rect x="43.9846%" y="837" width="0.0113%" height="15" fill="rgb(241,33,4)" fg:x="66444" fg:w="17"/><text x="44.2346%" y="847.50"></text></g><g><title>do_group_exit (17 samples, 0.01%)</title><rect x="43.9846%" y="821" width="0.0113%" height="15" fill="rgb(222,26,43)" fg:x="66444" fg:w="17"/><text x="44.2346%" y="831.50"></text></g><g><title>do_exit (17 samples, 0.01%)</title><rect x="43.9846%" y="805" width="0.0113%" height="15" fill="rgb(243,29,36)" fg:x="66444" fg:w="17"/><text x="44.2346%" y="815.50"></text></g><g><title>_dl_map_object (18 samples, 0.01%)</title><rect x="44.0236%" y="565" width="0.0119%" height="15" fill="rgb(241,9,27)" fg:x="66503" fg:w="18"/><text x="44.2736%" y="575.50"></text></g><g><title>__GI__dl_catch_exception (26 samples, 0.02%)</title><rect x="44.0230%" y="597" width="0.0172%" height="15" fill="rgb(205,117,26)" fg:x="66502" fg:w="26"/><text x="44.2730%" y="607.50"></text></g><g><title>dl_open_worker (26 samples, 0.02%)</title><rect x="44.0230%" y="581" width="0.0172%" height="15" fill="rgb(209,80,39)" fg:x="66502" fg:w="26"/><text x="44.2730%" y="591.50"></text></g><g><title>__GI___nss_lookup (31 samples, 0.02%)</title><rect x="44.0223%" y="741" width="0.0205%" height="15" fill="rgb(239,155,6)" fg:x="66501" fg:w="31"/><text x="44.2723%" y="751.50"></text></g><g><title>__GI___nss_lookup_function (31 samples, 0.02%)</title><rect x="44.0223%" y="725" width="0.0205%" height="15" fill="rgb(212,104,12)" fg:x="66501" fg:w="31"/><text x="44.2723%" y="735.50"></text></g><g><title>nss_load_library (30 samples, 0.02%)</title><rect x="44.0230%" y="709" width="0.0199%" height="15" fill="rgb(234,204,3)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="719.50"></text></g><g><title>__GI___libc_dlopen_mode (30 samples, 0.02%)</title><rect x="44.0230%" y="693" width="0.0199%" height="15" fill="rgb(251,218,7)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="703.50"></text></g><g><title>dlerror_run (30 samples, 0.02%)</title><rect x="44.0230%" y="677" width="0.0199%" height="15" fill="rgb(221,81,32)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="687.50"></text></g><g><title>__GI__dl_catch_error (30 samples, 0.02%)</title><rect x="44.0230%" y="661" width="0.0199%" height="15" fill="rgb(214,152,26)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="671.50"></text></g><g><title>__GI__dl_catch_exception (30 samples, 0.02%)</title><rect x="44.0230%" y="645" width="0.0199%" height="15" fill="rgb(223,22,3)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="655.50"></text></g><g><title>do_dlopen (30 samples, 0.02%)</title><rect x="44.0230%" y="629" width="0.0199%" height="15" fill="rgb(207,174,7)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="639.50"></text></g><g><title>_dl_open (30 samples, 0.02%)</title><rect x="44.0230%" y="613" width="0.0199%" height="15" fill="rgb(224,19,52)" fg:x="66502" fg:w="30"/><text x="44.2730%" y="623.50"></text></g><g><title>getpwuid (45 samples, 0.03%)</title><rect x="44.0223%" y="773" width="0.0298%" height="15" fill="rgb(228,24,14)" fg:x="66501" fg:w="45"/><text x="44.2723%" y="783.50"></text></g><g><title>__getpwuid_r (45 samples, 0.03%)</title><rect x="44.0223%" y="757" width="0.0298%" height="15" fill="rgb(230,153,43)" fg:x="66501" fg:w="45"/><text x="44.2723%" y="767.50"></text></g><g><title>[bash] (51 samples, 0.03%)</title><rect x="44.0217%" y="789" width="0.0338%" height="15" fill="rgb(231,106,12)" fg:x="66500" fg:w="51"/><text x="44.2717%" y="799.50"></text></g><g><title>initialize_shell_variables (72 samples, 0.05%)</title><rect x="44.0217%" y="805" width="0.0477%" height="15" fill="rgb(215,92,2)" fg:x="66500" fg:w="72"/><text x="44.2717%" y="815.50"></text></g><g><title>[bash] (94 samples, 0.06%)</title><rect x="44.0137%" y="821" width="0.0622%" height="15" fill="rgb(249,143,25)" fg:x="66488" fg:w="94"/><text x="44.2637%" y="831.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="44.0859%" y="725" width="0.0126%" height="15" fill="rgb(252,7,35)" fg:x="66597" fg:w="19"/><text x="44.3359%" y="735.50"></text></g><g><title>unary_test (18 samples, 0.01%)</title><rect x="44.0865%" y="709" width="0.0119%" height="15" fill="rgb(216,69,40)" fg:x="66598" fg:w="18"/><text x="44.3365%" y="719.50"></text></g><g><title>__GI___xstat (18 samples, 0.01%)</title><rect x="44.0865%" y="693" width="0.0119%" height="15" fill="rgb(240,36,33)" fg:x="66598" fg:w="18"/><text x="44.3365%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="44.0865%" y="677" width="0.0119%" height="15" fill="rgb(231,128,14)" fg:x="66598" fg:w="18"/><text x="44.3365%" y="687.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="44.0872%" y="661" width="0.0113%" height="15" fill="rgb(245,143,14)" fg:x="66599" fg:w="17"/><text x="44.3372%" y="671.50"></text></g><g><title>__do_sys_newstat (17 samples, 0.01%)</title><rect x="44.0872%" y="645" width="0.0113%" height="15" fill="rgb(222,130,28)" fg:x="66599" fg:w="17"/><text x="44.3372%" y="655.50"></text></g><g><title>vfs_statx (17 samples, 0.01%)</title><rect x="44.0872%" y="629" width="0.0113%" height="15" fill="rgb(212,10,48)" fg:x="66599" fg:w="17"/><text x="44.3372%" y="639.50"></text></g><g><title>filename_lookup (17 samples, 0.01%)</title><rect x="44.0872%" y="613" width="0.0113%" height="15" fill="rgb(254,118,45)" fg:x="66599" fg:w="17"/><text x="44.3372%" y="623.50"></text></g><g><title>path_lookupat (17 samples, 0.01%)</title><rect x="44.0872%" y="597" width="0.0113%" height="15" fill="rgb(228,6,45)" fg:x="66599" fg:w="17"/><text x="44.3372%" y="607.50"></text></g><g><title>bprm_execve (20 samples, 0.01%)</title><rect x="44.1004%" y="613" width="0.0132%" height="15" fill="rgb(241,18,35)" fg:x="66619" fg:w="20"/><text x="44.3504%" y="623.50"></text></g><g><title>shell_execve (23 samples, 0.02%)</title><rect x="44.1004%" y="709" width="0.0152%" height="15" fill="rgb(227,214,53)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="719.50"></text></g><g><title>__GI_execve (23 samples, 0.02%)</title><rect x="44.1004%" y="693" width="0.0152%" height="15" fill="rgb(224,107,51)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="44.1004%" y="677" width="0.0152%" height="15" fill="rgb(248,60,28)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="687.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="44.1004%" y="661" width="0.0152%" height="15" fill="rgb(249,101,23)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="671.50"></text></g><g><title>__x64_sys_execve (23 samples, 0.02%)</title><rect x="44.1004%" y="645" width="0.0152%" height="15" fill="rgb(228,51,19)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="655.50"></text></g><g><title>do_execveat_common (23 samples, 0.02%)</title><rect x="44.1004%" y="629" width="0.0152%" height="15" fill="rgb(213,20,6)" fg:x="66619" fg:w="23"/><text x="44.3504%" y="639.50"></text></g><g><title>[bash] (48 samples, 0.03%)</title><rect x="44.0859%" y="741" width="0.0318%" height="15" fill="rgb(212,124,10)" fg:x="66597" fg:w="48"/><text x="44.3359%" y="751.50"></text></g><g><title>exec_builtin (29 samples, 0.02%)</title><rect x="44.0984%" y="725" width="0.0192%" height="15" fill="rgb(248,3,40)" fg:x="66616" fg:w="29"/><text x="44.3484%" y="735.50"></text></g><g><title>execute_command (56 samples, 0.04%)</title><rect x="44.0859%" y="773" width="0.0371%" height="15" fill="rgb(223,178,23)" fg:x="66597" fg:w="56"/><text x="44.3359%" y="783.50"></text></g><g><title>execute_command_internal (56 samples, 0.04%)</title><rect x="44.0859%" y="757" width="0.0371%" height="15" fill="rgb(240,132,45)" fg:x="66597" fg:w="56"/><text x="44.3359%" y="767.50"></text></g><g><title>execute_command (59 samples, 0.04%)</title><rect x="44.0845%" y="805" width="0.0391%" height="15" fill="rgb(245,164,36)" fg:x="66595" fg:w="59"/><text x="44.3345%" y="815.50"></text></g><g><title>execute_command_internal (59 samples, 0.04%)</title><rect x="44.0845%" y="789" width="0.0391%" height="15" fill="rgb(231,188,53)" fg:x="66595" fg:w="59"/><text x="44.3345%" y="799.50"></text></g><g><title>reader_loop (77 samples, 0.05%)</title><rect x="44.0845%" y="821" width="0.0510%" height="15" fill="rgb(237,198,39)" fg:x="66595" fg:w="77"/><text x="44.3345%" y="831.50"></text></g><g><title>read_command (18 samples, 0.01%)</title><rect x="44.1236%" y="805" width="0.0119%" height="15" fill="rgb(223,120,35)" fg:x="66654" fg:w="18"/><text x="44.3736%" y="815.50"></text></g><g><title>parse_command (18 samples, 0.01%)</title><rect x="44.1236%" y="789" width="0.0119%" height="15" fill="rgb(253,107,49)" fg:x="66654" fg:w="18"/><text x="44.3736%" y="799.50"></text></g><g><title>yyparse (18 samples, 0.01%)</title><rect x="44.1236%" y="773" width="0.0119%" height="15" fill="rgb(216,44,31)" fg:x="66654" fg:w="18"/><text x="44.3736%" y="783.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="44.1249%" y="757" width="0.0106%" height="15" fill="rgb(253,87,21)" fg:x="66656" fg:w="16"/><text x="44.3749%" y="767.50"></text></g><g><title>__libc_start_main (192 samples, 0.13%)</title><rect x="44.0137%" y="853" width="0.1271%" height="15" fill="rgb(226,18,2)" fg:x="66488" fg:w="192"/><text x="44.2637%" y="863.50"></text></g><g><title>main (192 samples, 0.13%)</title><rect x="44.0137%" y="837" width="0.1271%" height="15" fill="rgb(216,8,46)" fg:x="66488" fg:w="192"/><text x="44.2637%" y="847.50"></text></g><g><title>do_mmap (22 samples, 0.01%)</title><rect x="44.1547%" y="597" width="0.0146%" height="15" fill="rgb(226,140,39)" fg:x="66701" fg:w="22"/><text x="44.4047%" y="607.50"></text></g><g><title>mmap_region (22 samples, 0.01%)</title><rect x="44.1547%" y="581" width="0.0146%" height="15" fill="rgb(221,194,54)" fg:x="66701" fg:w="22"/><text x="44.4047%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (23 samples, 0.02%)</title><rect x="44.1547%" y="629" width="0.0152%" height="15" fill="rgb(213,92,11)" fg:x="66701" fg:w="23"/><text x="44.4047%" y="639.50"></text></g><g><title>vm_mmap_pgoff (23 samples, 0.02%)</title><rect x="44.1547%" y="613" width="0.0152%" height="15" fill="rgb(229,162,46)" fg:x="66701" fg:w="23"/><text x="44.4047%" y="623.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="44.1547%" y="645" width="0.0172%" height="15" fill="rgb(214,111,36)" fg:x="66701" fg:w="26"/><text x="44.4047%" y="655.50"></text></g><g><title>_dl_map_segments (32 samples, 0.02%)</title><rect x="44.1514%" y="709" width="0.0212%" height="15" fill="rgb(207,6,21)" fg:x="66696" fg:w="32"/><text x="44.4014%" y="719.50"></text></g><g><title>__mmap64 (27 samples, 0.02%)</title><rect x="44.1547%" y="693" width="0.0179%" height="15" fill="rgb(213,127,38)" fg:x="66701" fg:w="27"/><text x="44.4047%" y="703.50"></text></g><g><title>__mmap64 (27 samples, 0.02%)</title><rect x="44.1547%" y="677" width="0.0179%" height="15" fill="rgb(238,118,32)" fg:x="66701" fg:w="27"/><text x="44.4047%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="44.1547%" y="661" width="0.0179%" height="15" fill="rgb(240,139,39)" fg:x="66701" fg:w="27"/><text x="44.4047%" y="671.50"></text></g><g><title>_dl_map_object_from_fd (38 samples, 0.03%)</title><rect x="44.1507%" y="725" width="0.0252%" height="15" fill="rgb(235,10,37)" fg:x="66695" fg:w="38"/><text x="44.4007%" y="735.50"></text></g><g><title>_dl_catch_exception (54 samples, 0.04%)</title><rect x="44.1441%" y="773" width="0.0357%" height="15" fill="rgb(249,171,38)" fg:x="66685" fg:w="54"/><text x="44.3941%" y="783.50"></text></g><g><title>openaux (54 samples, 0.04%)</title><rect x="44.1441%" y="757" width="0.0357%" height="15" fill="rgb(242,144,32)" fg:x="66685" fg:w="54"/><text x="44.3941%" y="767.50"></text></g><g><title>_dl_map_object (54 samples, 0.04%)</title><rect x="44.1441%" y="741" width="0.0357%" height="15" fill="rgb(217,117,21)" fg:x="66685" fg:w="54"/><text x="44.3941%" y="751.50"></text></g><g><title>_dl_map_object_deps (59 samples, 0.04%)</title><rect x="44.1441%" y="789" width="0.0391%" height="15" fill="rgb(249,87,1)" fg:x="66685" fg:w="59"/><text x="44.3941%" y="799.50"></text></g><g><title>_dl_lookup_symbol_x (20 samples, 0.01%)</title><rect x="44.1951%" y="741" width="0.0132%" height="15" fill="rgb(248,196,48)" fg:x="66762" fg:w="20"/><text x="44.4451%" y="751.50"></text></g><g><title>do_lookup_x (16 samples, 0.01%)</title><rect x="44.1977%" y="725" width="0.0106%" height="15" fill="rgb(251,206,33)" fg:x="66766" fg:w="16"/><text x="44.4477%" y="735.50"></text></g><g><title>elf_machine_rela (26 samples, 0.02%)</title><rect x="44.1918%" y="757" width="0.0172%" height="15" fill="rgb(232,141,28)" fg:x="66757" fg:w="26"/><text x="44.4418%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (36 samples, 0.02%)</title><rect x="44.1885%" y="773" width="0.0238%" height="15" fill="rgb(209,167,14)" fg:x="66752" fg:w="36"/><text x="44.4385%" y="783.50"></text></g><g><title>_dl_relocate_object (42 samples, 0.03%)</title><rect x="44.1858%" y="789" width="0.0278%" height="15" fill="rgb(225,11,50)" fg:x="66748" fg:w="42"/><text x="44.4358%" y="799.50"></text></g><g><title>asm_exc_page_fault (18 samples, 0.01%)</title><rect x="44.2189%" y="789" width="0.0119%" height="15" fill="rgb(209,50,20)" fg:x="66798" fg:w="18"/><text x="44.4689%" y="799.50"></text></g><g><title>[ld-2.31.so] (141 samples, 0.09%)</title><rect x="44.1408%" y="805" width="0.0933%" height="15" fill="rgb(212,17,46)" fg:x="66680" fg:w="141"/><text x="44.3908%" y="815.50"></text></g><g><title>_dl_start_final (144 samples, 0.10%)</title><rect x="44.1408%" y="837" width="0.0953%" height="15" fill="rgb(216,101,39)" fg:x="66680" fg:w="144"/><text x="44.3908%" y="847.50"></text></g><g><title>_dl_sysdep_start (144 samples, 0.10%)</title><rect x="44.1408%" y="821" width="0.0953%" height="15" fill="rgb(212,228,48)" fg:x="66680" fg:w="144"/><text x="44.3908%" y="831.50"></text></g><g><title>_start (337 samples, 0.22%)</title><rect x="44.0137%" y="869" width="0.2231%" height="15" fill="rgb(250,6,50)" fg:x="66488" fg:w="337"/><text x="44.2637%" y="879.50"></text></g><g><title>_dl_start (145 samples, 0.10%)</title><rect x="44.1408%" y="853" width="0.0960%" height="15" fill="rgb(250,160,48)" fg:x="66680" fg:w="145"/><text x="44.3908%" y="863.50"></text></g><g><title>asm_exc_page_fault (16 samples, 0.01%)</title><rect x="44.2368%" y="869" width="0.0106%" height="15" fill="rgb(244,216,33)" fg:x="66825" fg:w="16"/><text x="44.4868%" y="879.50"></text></g><g><title>__x64_sys_execve (16 samples, 0.01%)</title><rect x="44.2481%" y="837" width="0.0106%" height="15" fill="rgb(207,157,5)" fg:x="66842" fg:w="16"/><text x="44.4981%" y="847.50"></text></g><g><title>do_execveat_common (16 samples, 0.01%)</title><rect x="44.2481%" y="821" width="0.0106%" height="15" fill="rgb(228,199,8)" fg:x="66842" fg:w="16"/><text x="44.4981%" y="831.50"></text></g><g><title>bprm_execve (16 samples, 0.01%)</title><rect x="44.2481%" y="805" width="0.0106%" height="15" fill="rgb(227,80,20)" fg:x="66842" fg:w="16"/><text x="44.4981%" y="815.50"></text></g><g><title>load_elf_binary (16 samples, 0.01%)</title><rect x="44.2481%" y="789" width="0.0106%" height="15" fill="rgb(222,9,33)" fg:x="66842" fg:w="16"/><text x="44.4981%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="44.2481%" y="869" width="0.0113%" height="15" fill="rgb(239,44,28)" fg:x="66842" fg:w="17"/><text x="44.4981%" y="879.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="44.2481%" y="853" width="0.0113%" height="15" fill="rgb(249,187,43)" fg:x="66842" fg:w="17"/><text x="44.4981%" y="863.50"></text></g><g><title>cc_wrapper.sh (400 samples, 0.26%)</title><rect x="43.9958%" y="885" width="0.2648%" height="15" fill="rgb(216,141,28)" fg:x="66461" fg:w="400"/><text x="44.2458%" y="895.50"></text></g><g><title>[[heap]] (151 samples, 0.10%)</title><rect x="44.2613%" y="869" width="0.1000%" height="15" fill="rgb(230,154,53)" fg:x="66862" fg:w="151"/><text x="44.5113%" y="879.50"></text></g><g><title>[[stack]] (94 samples, 0.06%)</title><rect x="44.3613%" y="869" width="0.0622%" height="15" fill="rgb(227,82,4)" fg:x="67013" fg:w="94"/><text x="44.6113%" y="879.50"></text></g><g><title>[anon] (28 samples, 0.02%)</title><rect x="44.4248%" y="869" width="0.0185%" height="15" fill="rgb(220,107,16)" fg:x="67109" fg:w="28"/><text x="44.6748%" y="879.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (18 samples, 0.01%)</title><rect x="44.4705%" y="677" width="0.0119%" height="15" fill="rgb(207,187,2)" fg:x="67178" fg:w="18"/><text x="44.7205%" y="687.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (21 samples, 0.01%)</title><rect x="44.4698%" y="757" width="0.0139%" height="15" fill="rgb(210,162,52)" fg:x="67177" fg:w="21"/><text x="44.7198%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (21 samples, 0.01%)</title><rect x="44.4698%" y="741" width="0.0139%" height="15" fill="rgb(217,216,49)" fg:x="67177" fg:w="21"/><text x="44.7198%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (21 samples, 0.01%)</title><rect x="44.4698%" y="725" width="0.0139%" height="15" fill="rgb(218,146,49)" fg:x="67177" fg:w="21"/><text x="44.7198%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (21 samples, 0.01%)</title><rect x="44.4698%" y="709" width="0.0139%" height="15" fill="rgb(216,55,40)" fg:x="67177" fg:w="21"/><text x="44.7198%" y="719.50"></text></g><g><title>clang::Parser::ParseLinkage (20 samples, 0.01%)</title><rect x="44.4705%" y="693" width="0.0132%" height="15" fill="rgb(208,196,21)" fg:x="67178" fg:w="20"/><text x="44.7205%" y="703.50"></text></g><g><title>ExecuteCC1Tool (29 samples, 0.02%)</title><rect x="44.4658%" y="853" width="0.0192%" height="15" fill="rgb(242,117,42)" fg:x="67171" fg:w="29"/><text x="44.7158%" y="863.50"></text></g><g><title>cc1_main (29 samples, 0.02%)</title><rect x="44.4658%" y="837" width="0.0192%" height="15" fill="rgb(210,11,23)" fg:x="67171" fg:w="29"/><text x="44.7158%" y="847.50"></text></g><g><title>clang::ExecuteCompilerInvocation (28 samples, 0.02%)</title><rect x="44.4665%" y="821" width="0.0185%" height="15" fill="rgb(217,110,2)" fg:x="67172" fg:w="28"/><text x="44.7165%" y="831.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (28 samples, 0.02%)</title><rect x="44.4665%" y="805" width="0.0185%" height="15" fill="rgb(229,77,54)" fg:x="67172" fg:w="28"/><text x="44.7165%" y="815.50"></text></g><g><title>clang::FrontendAction::Execute (28 samples, 0.02%)</title><rect x="44.4665%" y="789" width="0.0185%" height="15" fill="rgb(218,53,16)" fg:x="67172" fg:w="28"/><text x="44.7165%" y="799.50"></text></g><g><title>clang::ParseAST (28 samples, 0.02%)</title><rect x="44.4665%" y="773" width="0.0185%" height="15" fill="rgb(215,38,13)" fg:x="67172" fg:w="28"/><text x="44.7165%" y="783.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (23 samples, 0.02%)</title><rect x="44.5128%" y="837" width="0.0152%" height="15" fill="rgb(235,42,18)" fg:x="67242" fg:w="23"/><text x="44.7628%" y="847.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (23 samples, 0.02%)</title><rect x="44.5128%" y="821" width="0.0152%" height="15" fill="rgb(219,66,54)" fg:x="67242" fg:w="23"/><text x="44.7628%" y="831.50"></text></g><g><title>llvm::TargetPassConfig::addISelPasses (16 samples, 0.01%)</title><rect x="44.5354%" y="725" width="0.0106%" height="15" fill="rgb(222,205,4)" fg:x="67276" fg:w="16"/><text x="44.7854%" y="735.50"></text></g><g><title>llvm::TargetPassConfig::addMachinePasses (20 samples, 0.01%)</title><rect x="44.5459%" y="725" width="0.0132%" height="15" fill="rgb(227,213,46)" fg:x="67292" fg:w="20"/><text x="44.7959%" y="735.50"></text></g><g><title>llvm::LLVMTargetMachine::addPassesToEmitFile (56 samples, 0.04%)</title><rect x="44.5334%" y="741" width="0.0371%" height="15" fill="rgb(250,145,42)" fg:x="67273" fg:w="56"/><text x="44.7834%" y="751.50"></text></g><g><title>llvm::X86TargetMachine::createPassConfig (17 samples, 0.01%)</title><rect x="44.5592%" y="725" width="0.0113%" height="15" fill="rgb(219,15,2)" fg:x="67312" fg:w="17"/><text x="44.8092%" y="735.50"></text></g><g><title>llvm::TargetPassConfig::TargetPassConfig (17 samples, 0.01%)</title><rect x="44.5592%" y="709" width="0.0113%" height="15" fill="rgb(231,181,52)" fg:x="67312" fg:w="17"/><text x="44.8092%" y="719.50"></text></g><g><title>llvm::initializeCodeGen (17 samples, 0.01%)</title><rect x="44.5592%" y="693" width="0.0113%" height="15" fill="rgb(235,1,42)" fg:x="67312" fg:w="17"/><text x="44.8092%" y="703.50"></text></g><g><title>llvm::FPPassManager::runOnModule (20 samples, 0.01%)</title><rect x="44.5916%" y="725" width="0.0132%" height="15" fill="rgb(249,88,27)" fg:x="67361" fg:w="20"/><text x="44.8416%" y="735.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (20 samples, 0.01%)</title><rect x="44.5916%" y="709" width="0.0132%" height="15" fill="rgb(235,145,16)" fg:x="67361" fg:w="20"/><text x="44.8416%" y="719.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (44 samples, 0.03%)</title><rect x="44.5784%" y="741" width="0.0291%" height="15" fill="rgb(237,114,19)" fg:x="67341" fg:w="44"/><text x="44.8284%" y="751.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (114 samples, 0.08%)</title><rect x="44.5327%" y="773" width="0.0755%" height="15" fill="rgb(238,51,50)" fg:x="67272" fg:w="114"/><text x="44.7827%" y="783.50"></text></g><g><title>clang::EmitBackendOutput (114 samples, 0.08%)</title><rect x="44.5327%" y="757" width="0.0755%" height="15" fill="rgb(205,194,25)" fg:x="67272" fg:w="114"/><text x="44.7827%" y="767.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (17 samples, 0.01%)</title><rect x="44.6161%" y="533" width="0.0113%" height="15" fill="rgb(215,203,17)" fg:x="67398" fg:w="17"/><text x="44.8661%" y="543.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (36 samples, 0.02%)</title><rect x="44.6141%" y="629" width="0.0238%" height="15" fill="rgb(233,112,49)" fg:x="67395" fg:w="36"/><text x="44.8641%" y="639.50"></text></g><g><title>clang::Preprocessor::Lex (36 samples, 0.02%)</title><rect x="44.6141%" y="613" width="0.0238%" height="15" fill="rgb(241,130,26)" fg:x="67395" fg:w="36"/><text x="44.8641%" y="623.50"></text></g><g><title>clang::Preprocessor::CachingLex (35 samples, 0.02%)</title><rect x="44.6148%" y="597" width="0.0232%" height="15" fill="rgb(252,223,19)" fg:x="67396" fg:w="35"/><text x="44.8648%" y="607.50"></text></g><g><title>clang::Preprocessor::Lex (35 samples, 0.02%)</title><rect x="44.6148%" y="581" width="0.0232%" height="15" fill="rgb(211,95,25)" fg:x="67396" fg:w="35"/><text x="44.8648%" y="591.50"></text></g><g><title>clang::Lexer::LexTokenInternal (35 samples, 0.02%)</title><rect x="44.6148%" y="565" width="0.0232%" height="15" fill="rgb(251,182,27)" fg:x="67396" fg:w="35"/><text x="44.8648%" y="575.50"></text></g><g><title>clang::Preprocessor::HandleDirective (33 samples, 0.02%)</title><rect x="44.6161%" y="549" width="0.0218%" height="15" fill="rgb(238,24,4)" fg:x="67398" fg:w="33"/><text x="44.8661%" y="559.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (16 samples, 0.01%)</title><rect x="44.6380%" y="629" width="0.0106%" height="15" fill="rgb(224,220,25)" fg:x="67431" fg:w="16"/><text x="44.8880%" y="639.50"></text></g><g><title>clang::Sema::ActOnDeclarator (16 samples, 0.01%)</title><rect x="44.6380%" y="613" width="0.0106%" height="15" fill="rgb(239,133,26)" fg:x="67431" fg:w="16"/><text x="44.8880%" y="623.50"></text></g><g><title>clang::Sema::HandleDeclarator (16 samples, 0.01%)</title><rect x="44.6380%" y="597" width="0.0106%" height="15" fill="rgb(211,94,48)" fg:x="67431" fg:w="16"/><text x="44.8880%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclGroup (58 samples, 0.04%)</title><rect x="44.6141%" y="645" width="0.0384%" height="15" fill="rgb(239,87,6)" fg:x="67395" fg:w="58"/><text x="44.8641%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclaration (74 samples, 0.05%)</title><rect x="44.6141%" y="677" width="0.0490%" height="15" fill="rgb(227,62,0)" fg:x="67395" fg:w="74"/><text x="44.8641%" y="687.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (74 samples, 0.05%)</title><rect x="44.6141%" y="661" width="0.0490%" height="15" fill="rgb(211,226,4)" fg:x="67395" fg:w="74"/><text x="44.8641%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationSpecifiers (16 samples, 0.01%)</title><rect x="44.6525%" y="645" width="0.0106%" height="15" fill="rgb(253,38,52)" fg:x="67453" fg:w="16"/><text x="44.9025%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (17 samples, 0.01%)</title><rect x="44.6764%" y="629" width="0.0113%" height="15" fill="rgb(229,126,40)" fg:x="67489" fg:w="17"/><text x="44.9264%" y="639.50"></text></g><g><title>clang::Sema::ActOnDeclarator (17 samples, 0.01%)</title><rect x="44.6764%" y="613" width="0.0113%" height="15" fill="rgb(229,165,44)" fg:x="67489" fg:w="17"/><text x="44.9264%" y="623.50"></text></g><g><title>clang::Sema::HandleDeclarator (17 samples, 0.01%)</title><rect x="44.6764%" y="597" width="0.0113%" height="15" fill="rgb(247,95,47)" fg:x="67489" fg:w="17"/><text x="44.9264%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (22 samples, 0.01%)</title><rect x="44.6876%" y="629" width="0.0146%" height="15" fill="rgb(216,140,30)" fg:x="67506" fg:w="22"/><text x="44.9376%" y="639.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (20 samples, 0.01%)</title><rect x="44.6889%" y="613" width="0.0132%" height="15" fill="rgb(246,214,8)" fg:x="67508" fg:w="20"/><text x="44.9389%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclGroup (62 samples, 0.04%)</title><rect x="44.6631%" y="645" width="0.0410%" height="15" fill="rgb(227,224,15)" fg:x="67469" fg:w="62"/><text x="44.9131%" y="655.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (149 samples, 0.10%)</title><rect x="44.6141%" y="693" width="0.0986%" height="15" fill="rgb(233,175,4)" fg:x="67395" fg:w="149"/><text x="44.8641%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (75 samples, 0.05%)</title><rect x="44.6631%" y="677" width="0.0496%" height="15" fill="rgb(221,66,45)" fg:x="67469" fg:w="75"/><text x="44.9131%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (75 samples, 0.05%)</title><rect x="44.6631%" y="661" width="0.0496%" height="15" fill="rgb(221,178,18)" fg:x="67469" fg:w="75"/><text x="44.9131%" y="671.50"></text></g><g><title>cc1_main (303 samples, 0.20%)</title><rect x="44.5128%" y="853" width="0.2006%" height="15" fill="rgb(213,81,29)" fg:x="67242" fg:w="303"/><text x="44.7628%" y="863.50"></text></g><g><title>clang::ExecuteCompilerInvocation (280 samples, 0.19%)</title><rect x="44.5281%" y="837" width="0.1854%" height="15" fill="rgb(220,89,49)" fg:x="67265" fg:w="280"/><text x="44.7781%" y="847.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (280 samples, 0.19%)</title><rect x="44.5281%" y="821" width="0.1854%" height="15" fill="rgb(227,60,33)" fg:x="67265" fg:w="280"/><text x="44.7781%" y="831.50"></text></g><g><title>clang::FrontendAction::Execute (278 samples, 0.18%)</title><rect x="44.5294%" y="805" width="0.1840%" height="15" fill="rgb(205,113,12)" fg:x="67267" fg:w="278"/><text x="44.7794%" y="815.50"></text></g><g><title>clang::ParseAST (278 samples, 0.18%)</title><rect x="44.5294%" y="789" width="0.1840%" height="15" fill="rgb(211,32,1)" fg:x="67267" fg:w="278"/><text x="44.7794%" y="799.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (154 samples, 0.10%)</title><rect x="44.6115%" y="773" width="0.1019%" height="15" fill="rgb(246,2,12)" fg:x="67391" fg:w="154"/><text x="44.8615%" y="783.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (154 samples, 0.10%)</title><rect x="44.6115%" y="757" width="0.1019%" height="15" fill="rgb(243,37,27)" fg:x="67391" fg:w="154"/><text x="44.8615%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (154 samples, 0.10%)</title><rect x="44.6115%" y="741" width="0.1019%" height="15" fill="rgb(248,211,31)" fg:x="67391" fg:w="154"/><text x="44.8615%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (154 samples, 0.10%)</title><rect x="44.6115%" y="725" width="0.1019%" height="15" fill="rgb(242,146,47)" fg:x="67391" fg:w="154"/><text x="44.8615%" y="735.50"></text></g><g><title>clang::Parser::ParseLinkage (150 samples, 0.10%)</title><rect x="44.6141%" y="709" width="0.0993%" height="15" fill="rgb(206,70,20)" fg:x="67395" fg:w="150"/><text x="44.8641%" y="719.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (23 samples, 0.02%)</title><rect x="44.7313%" y="773" width="0.0152%" height="15" fill="rgb(215,10,51)" fg:x="67572" fg:w="23"/><text x="44.9813%" y="783.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (23 samples, 0.02%)</title><rect x="44.7313%" y="757" width="0.0152%" height="15" fill="rgb(243,178,53)" fg:x="67572" fg:w="23"/><text x="44.9813%" y="767.50"></text></g><g><title>llvm::X86LegalizerInfo::X86LegalizerInfo (22 samples, 0.01%)</title><rect x="44.7320%" y="741" width="0.0146%" height="15" fill="rgb(233,221,20)" fg:x="67573" fg:w="22"/><text x="44.9820%" y="751.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (46 samples, 0.03%)</title><rect x="44.7167%" y="853" width="0.0305%" height="15" fill="rgb(218,95,35)" fg:x="67550" fg:w="46"/><text x="44.9667%" y="863.50"></text></g><g><title>clang::EmitBackendOutput (40 samples, 0.03%)</title><rect x="44.7207%" y="837" width="0.0265%" height="15" fill="rgb(229,13,5)" fg:x="67556" fg:w="40"/><text x="44.9707%" y="847.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (40 samples, 0.03%)</title><rect x="44.7207%" y="821" width="0.0265%" height="15" fill="rgb(252,164,30)" fg:x="67556" fg:w="40"/><text x="44.9707%" y="831.50"></text></g><g><title>llvm::FPPassManager::runOnModule (32 samples, 0.02%)</title><rect x="44.7260%" y="805" width="0.0212%" height="15" fill="rgb(232,68,36)" fg:x="67564" fg:w="32"/><text x="44.9760%" y="815.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (32 samples, 0.02%)</title><rect x="44.7260%" y="789" width="0.0212%" height="15" fill="rgb(219,59,54)" fg:x="67564" fg:w="32"/><text x="44.9760%" y="799.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (28 samples, 0.02%)</title><rect x="44.7644%" y="709" width="0.0185%" height="15" fill="rgb(250,92,33)" fg:x="67622" fg:w="28"/><text x="45.0144%" y="719.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (27 samples, 0.02%)</title><rect x="44.7651%" y="693" width="0.0179%" height="15" fill="rgb(229,162,54)" fg:x="67623" fg:w="27"/><text x="45.0151%" y="703.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (29 samples, 0.02%)</title><rect x="44.7644%" y="805" width="0.0192%" height="15" fill="rgb(244,114,52)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="815.50"></text></g><g><title>clang::EmitBackendOutput (29 samples, 0.02%)</title><rect x="44.7644%" y="789" width="0.0192%" height="15" fill="rgb(212,211,43)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="799.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (29 samples, 0.02%)</title><rect x="44.7644%" y="773" width="0.0192%" height="15" fill="rgb(226,147,8)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="783.50"></text></g><g><title>llvm::FPPassManager::runOnModule (29 samples, 0.02%)</title><rect x="44.7644%" y="757" width="0.0192%" height="15" fill="rgb(226,23,13)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="767.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (29 samples, 0.02%)</title><rect x="44.7644%" y="741" width="0.0192%" height="15" fill="rgb(240,63,4)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="751.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (29 samples, 0.02%)</title><rect x="44.7644%" y="725" width="0.0192%" height="15" fill="rgb(221,1,32)" fg:x="67622" fg:w="29"/><text x="45.0144%" y="735.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (36 samples, 0.02%)</title><rect x="44.7644%" y="853" width="0.0238%" height="15" fill="rgb(242,117,10)" fg:x="67622" fg:w="36"/><text x="45.0144%" y="863.50"></text></g><g><title>clang::FrontendAction::Execute (36 samples, 0.02%)</title><rect x="44.7644%" y="837" width="0.0238%" height="15" fill="rgb(249,172,44)" fg:x="67622" fg:w="36"/><text x="45.0144%" y="847.50"></text></g><g><title>clang::ParseAST (36 samples, 0.02%)</title><rect x="44.7644%" y="821" width="0.0238%" height="15" fill="rgb(244,46,45)" fg:x="67622" fg:w="36"/><text x="45.0144%" y="831.50"></text></g><g><title>__GI___readlink (21 samples, 0.01%)</title><rect x="44.7995%" y="741" width="0.0139%" height="15" fill="rgb(206,43,17)" fg:x="67675" fg:w="21"/><text x="45.0495%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="44.7995%" y="725" width="0.0139%" height="15" fill="rgb(239,218,39)" fg:x="67675" fg:w="21"/><text x="45.0495%" y="735.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="44.7995%" y="709" width="0.0139%" height="15" fill="rgb(208,169,54)" fg:x="67675" fg:w="21"/><text x="45.0495%" y="719.50"></text></g><g><title>__x64_sys_readlink (21 samples, 0.01%)</title><rect x="44.7995%" y="693" width="0.0139%" height="15" fill="rgb(247,25,42)" fg:x="67675" fg:w="21"/><text x="45.0495%" y="703.50"></text></g><g><title>do_readlinkat (21 samples, 0.01%)</title><rect x="44.7995%" y="677" width="0.0139%" height="15" fill="rgb(226,23,31)" fg:x="67675" fg:w="21"/><text x="45.0495%" y="687.50"></text></g><g><title>do_filp_open (35 samples, 0.02%)</title><rect x="44.8160%" y="645" width="0.0232%" height="15" fill="rgb(247,16,28)" fg:x="67700" fg:w="35"/><text x="45.0660%" y="655.50"></text></g><g><title>path_openat (35 samples, 0.02%)</title><rect x="44.8160%" y="629" width="0.0232%" height="15" fill="rgb(231,147,38)" fg:x="67700" fg:w="35"/><text x="45.0660%" y="639.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="44.8154%" y="693" width="0.0258%" height="15" fill="rgb(253,81,48)" fg:x="67699" fg:w="39"/><text x="45.0654%" y="703.50"></text></g><g><title>__x64_sys_openat (39 samples, 0.03%)</title><rect x="44.8154%" y="677" width="0.0258%" height="15" fill="rgb(249,222,43)" fg:x="67699" fg:w="39"/><text x="45.0654%" y="687.50"></text></g><g><title>do_sys_openat2 (39 samples, 0.03%)</title><rect x="44.8154%" y="661" width="0.0258%" height="15" fill="rgb(221,3,27)" fg:x="67699" fg:w="39"/><text x="45.0654%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.03%)</title><rect x="44.8154%" y="709" width="0.0265%" height="15" fill="rgb(228,180,5)" fg:x="67699" fg:w="40"/><text x="45.0654%" y="719.50"></text></g><g><title>__libc_open64 (41 samples, 0.03%)</title><rect x="44.8154%" y="725" width="0.0271%" height="15" fill="rgb(227,131,42)" fg:x="67699" fg:w="41"/><text x="45.0654%" y="735.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (66 samples, 0.04%)</title><rect x="44.7995%" y="853" width="0.0437%" height="15" fill="rgb(212,3,39)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="863.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (66 samples, 0.04%)</title><rect x="44.7995%" y="837" width="0.0437%" height="15" fill="rgb(226,45,5)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="847.50"></text></g><g><title>clang::FileManager::getFileRef (66 samples, 0.04%)</title><rect x="44.7995%" y="821" width="0.0437%" height="15" fill="rgb(215,167,45)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="831.50"></text></g><g><title>clang::FileManager::getStatValue (66 samples, 0.04%)</title><rect x="44.7995%" y="805" width="0.0437%" height="15" fill="rgb(250,218,53)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="815.50"></text></g><g><title>clang::FileSystemStatCache::get (66 samples, 0.04%)</title><rect x="44.7995%" y="789" width="0.0437%" height="15" fill="rgb(207,140,0)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="799.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (66 samples, 0.04%)</title><rect x="44.7995%" y="773" width="0.0437%" height="15" fill="rgb(238,133,51)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="783.50"></text></g><g><title>llvm::sys::fs::openFileForRead (66 samples, 0.04%)</title><rect x="44.7995%" y="757" width="0.0437%" height="15" fill="rgb(218,203,53)" fg:x="67675" fg:w="66"/><text x="45.0495%" y="767.50"></text></g><g><title>llvm::sys::fs::openFile (42 samples, 0.03%)</title><rect x="44.8154%" y="741" width="0.0278%" height="15" fill="rgb(226,184,25)" fg:x="67699" fg:w="42"/><text x="45.0654%" y="751.50"></text></g><g><title>clang::EmitBackendOutput (16 samples, 0.01%)</title><rect x="44.8432%" y="853" width="0.0106%" height="15" fill="rgb(231,121,21)" fg:x="67741" fg:w="16"/><text x="45.0932%" y="863.50"></text></g><g><title>llvm::TargetLoweringBase::computeRegisterProperties (17 samples, 0.01%)</title><rect x="44.8630%" y="693" width="0.0113%" height="15" fill="rgb(251,14,34)" fg:x="67771" fg:w="17"/><text x="45.1130%" y="703.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (25 samples, 0.02%)</title><rect x="44.8584%" y="821" width="0.0165%" height="15" fill="rgb(249,193,11)" fg:x="67764" fg:w="25"/><text x="45.1084%" y="831.50"></text></g><g><title>clang::EmitBackendOutput (25 samples, 0.02%)</title><rect x="44.8584%" y="805" width="0.0165%" height="15" fill="rgb(220,172,37)" fg:x="67764" fg:w="25"/><text x="45.1084%" y="815.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (25 samples, 0.02%)</title><rect x="44.8584%" y="789" width="0.0165%" height="15" fill="rgb(231,229,43)" fg:x="67764" fg:w="25"/><text x="45.1084%" y="799.50"></text></g><g><title>llvm::FPPassManager::runOnModule (23 samples, 0.02%)</title><rect x="44.8597%" y="773" width="0.0152%" height="15" fill="rgb(250,161,5)" fg:x="67766" fg:w="23"/><text x="45.1097%" y="783.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (23 samples, 0.02%)</title><rect x="44.8597%" y="757" width="0.0152%" height="15" fill="rgb(218,225,18)" fg:x="67766" fg:w="23"/><text x="45.1097%" y="767.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (20 samples, 0.01%)</title><rect x="44.8617%" y="741" width="0.0132%" height="15" fill="rgb(245,45,42)" fg:x="67769" fg:w="20"/><text x="45.1117%" y="751.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (20 samples, 0.01%)</title><rect x="44.8617%" y="725" width="0.0132%" height="15" fill="rgb(211,115,1)" fg:x="67769" fg:w="20"/><text x="45.1117%" y="735.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (18 samples, 0.01%)</title><rect x="44.8630%" y="709" width="0.0119%" height="15" fill="rgb(248,133,52)" fg:x="67771" fg:w="18"/><text x="45.1130%" y="719.50"></text></g><g><title>clang::FrontendAction::Execute (29 samples, 0.02%)</title><rect x="44.8584%" y="853" width="0.0192%" height="15" fill="rgb(238,100,21)" fg:x="67764" fg:w="29"/><text x="45.1084%" y="863.50"></text></g><g><title>clang::ParseAST (29 samples, 0.02%)</title><rect x="44.8584%" y="837" width="0.0192%" height="15" fill="rgb(247,144,11)" fg:x="67764" fg:w="29"/><text x="45.1084%" y="847.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (46 samples, 0.03%)</title><rect x="44.9200%" y="837" width="0.0305%" height="15" fill="rgb(206,164,16)" fg:x="67857" fg:w="46"/><text x="45.1700%" y="847.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (33 samples, 0.02%)</title><rect x="44.9286%" y="821" width="0.0218%" height="15" fill="rgb(222,34,3)" fg:x="67870" fg:w="33"/><text x="45.1786%" y="831.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (33 samples, 0.02%)</title><rect x="44.9286%" y="805" width="0.0218%" height="15" fill="rgb(248,82,4)" fg:x="67870" fg:w="33"/><text x="45.1786%" y="815.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (33 samples, 0.02%)</title><rect x="44.9286%" y="789" width="0.0218%" height="15" fill="rgb(228,81,46)" fg:x="67870" fg:w="33"/><text x="45.1786%" y="799.50"></text></g><g><title>clang::Sema::ActOnParamDeclarator (20 samples, 0.01%)</title><rect x="44.9372%" y="773" width="0.0132%" height="15" fill="rgb(227,67,47)" fg:x="67883" fg:w="20"/><text x="45.1872%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclGroup (61 samples, 0.04%)</title><rect x="44.9114%" y="853" width="0.0404%" height="15" fill="rgb(215,93,53)" fg:x="67844" fg:w="61"/><text x="45.1614%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (21 samples, 0.01%)</title><rect x="44.9603%" y="805" width="0.0139%" height="15" fill="rgb(248,194,39)" fg:x="67918" fg:w="21"/><text x="45.2103%" y="815.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (19 samples, 0.01%)</title><rect x="44.9617%" y="789" width="0.0126%" height="15" fill="rgb(215,5,19)" fg:x="67920" fg:w="19"/><text x="45.2117%" y="799.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (19 samples, 0.01%)</title><rect x="44.9617%" y="773" width="0.0126%" height="15" fill="rgb(226,215,51)" fg:x="67920" fg:w="19"/><text x="45.2117%" y="783.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (19 samples, 0.01%)</title><rect x="44.9617%" y="757" width="0.0126%" height="15" fill="rgb(225,56,26)" fg:x="67920" fg:w="19"/><text x="45.2117%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclGroup (26 samples, 0.02%)</title><rect x="44.9577%" y="821" width="0.0172%" height="15" fill="rgb(222,75,29)" fg:x="67914" fg:w="26"/><text x="45.2077%" y="831.50"></text></g><g><title>clang::Sema::ActOnFunctionDeclarator (18 samples, 0.01%)</title><rect x="44.9795%" y="693" width="0.0119%" height="15" fill="rgb(236,139,6)" fg:x="67947" fg:w="18"/><text x="45.2295%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (33 samples, 0.02%)</title><rect x="44.9795%" y="741" width="0.0218%" height="15" fill="rgb(223,137,36)" fg:x="67947" fg:w="33"/><text x="45.2295%" y="751.50"></text></g><g><title>clang::Sema::ActOnDeclarator (33 samples, 0.02%)</title><rect x="44.9795%" y="725" width="0.0218%" height="15" fill="rgb(226,99,2)" fg:x="67947" fg:w="33"/><text x="45.2295%" y="735.50"></text></g><g><title>clang::Sema::HandleDeclarator (33 samples, 0.02%)</title><rect x="44.9795%" y="709" width="0.0218%" height="15" fill="rgb(206,133,23)" fg:x="67947" fg:w="33"/><text x="45.2295%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (68 samples, 0.05%)</title><rect x="44.9577%" y="853" width="0.0450%" height="15" fill="rgb(243,173,15)" fg:x="67914" fg:w="68"/><text x="45.2077%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (68 samples, 0.05%)</title><rect x="44.9577%" y="837" width="0.0450%" height="15" fill="rgb(228,69,28)" fg:x="67914" fg:w="68"/><text x="45.2077%" y="847.50"></text></g><g><title>clang::Parser::ParseLinkage (41 samples, 0.03%)</title><rect x="44.9756%" y="821" width="0.0271%" height="15" fill="rgb(212,51,22)" fg:x="67941" fg:w="41"/><text x="45.2256%" y="831.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (41 samples, 0.03%)</title><rect x="44.9756%" y="805" width="0.0271%" height="15" fill="rgb(227,113,0)" fg:x="67941" fg:w="41"/><text x="45.2256%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (36 samples, 0.02%)</title><rect x="44.9789%" y="789" width="0.0238%" height="15" fill="rgb(252,84,27)" fg:x="67946" fg:w="36"/><text x="45.2289%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (36 samples, 0.02%)</title><rect x="44.9789%" y="773" width="0.0238%" height="15" fill="rgb(223,145,39)" fg:x="67946" fg:w="36"/><text x="45.2289%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclGroup (36 samples, 0.02%)</title><rect x="44.9789%" y="757" width="0.0238%" height="15" fill="rgb(239,219,30)" fg:x="67946" fg:w="36"/><text x="45.2289%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (20 samples, 0.01%)</title><rect x="45.0153%" y="853" width="0.0132%" height="15" fill="rgb(224,196,39)" fg:x="68001" fg:w="20"/><text x="45.2653%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (18 samples, 0.01%)</title><rect x="45.0166%" y="837" width="0.0119%" height="15" fill="rgb(205,35,43)" fg:x="68003" fg:w="18"/><text x="45.2666%" y="847.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (18 samples, 0.01%)</title><rect x="45.0166%" y="821" width="0.0119%" height="15" fill="rgb(228,201,21)" fg:x="68003" fg:w="18"/><text x="45.2666%" y="831.50"></text></g><g><title>clang::Parser::ParseLinkage (20 samples, 0.01%)</title><rect x="45.0292%" y="853" width="0.0132%" height="15" fill="rgb(237,118,16)" fg:x="68022" fg:w="20"/><text x="45.2792%" y="863.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (20 samples, 0.01%)</title><rect x="45.0292%" y="837" width="0.0132%" height="15" fill="rgb(241,17,19)" fg:x="68022" fg:w="20"/><text x="45.2792%" y="847.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (16 samples, 0.01%)</title><rect x="45.0318%" y="821" width="0.0106%" height="15" fill="rgb(214,10,25)" fg:x="68026" fg:w="16"/><text x="45.2818%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (16 samples, 0.01%)</title><rect x="45.0318%" y="805" width="0.0106%" height="15" fill="rgb(238,37,29)" fg:x="68026" fg:w="16"/><text x="45.2818%" y="815.50"></text></g><g><title>clang::FileManager::getStatValue (16 samples, 0.01%)</title><rect x="45.0663%" y="725" width="0.0106%" height="15" fill="rgb(253,83,25)" fg:x="68078" fg:w="16"/><text x="45.3163%" y="735.50"></text></g><g><title>clang::FileSystemStatCache::get (16 samples, 0.01%)</title><rect x="45.0663%" y="709" width="0.0106%" height="15" fill="rgb(234,192,12)" fg:x="68078" fg:w="16"/><text x="45.3163%" y="719.50"></text></g><g><title>clang::FileManager::getDirectoryRef (22 samples, 0.01%)</title><rect x="45.0663%" y="741" width="0.0146%" height="15" fill="rgb(241,216,45)" fg:x="68078" fg:w="22"/><text x="45.3163%" y="751.50"></text></g><g><title>clang::FileManager::getFileRef (48 samples, 0.03%)</title><rect x="45.0623%" y="757" width="0.0318%" height="15" fill="rgb(242,22,33)" fg:x="68072" fg:w="48"/><text x="45.3123%" y="767.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (50 samples, 0.03%)</title><rect x="45.0616%" y="853" width="0.0331%" height="15" fill="rgb(231,105,49)" fg:x="68071" fg:w="50"/><text x="45.3116%" y="863.50"></text></g><g><title>clang::Preprocessor::LookupHeaderIncludeOrImport (50 samples, 0.03%)</title><rect x="45.0616%" y="837" width="0.0331%" height="15" fill="rgb(218,204,15)" fg:x="68071" fg:w="50"/><text x="45.3116%" y="847.50"></text></g><g><title>clang::Preprocessor::LookupFile (50 samples, 0.03%)</title><rect x="45.0616%" y="821" width="0.0331%" height="15" fill="rgb(235,138,41)" fg:x="68071" fg:w="50"/><text x="45.3116%" y="831.50"></text></g><g><title>clang::HeaderSearch::LookupFile (50 samples, 0.03%)</title><rect x="45.0616%" y="805" width="0.0331%" height="15" fill="rgb(246,0,9)" fg:x="68071" fg:w="50"/><text x="45.3116%" y="815.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (50 samples, 0.03%)</title><rect x="45.0616%" y="789" width="0.0331%" height="15" fill="rgb(210,74,4)" fg:x="68071" fg:w="50"/><text x="45.3116%" y="799.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (49 samples, 0.03%)</title><rect x="45.0623%" y="773" width="0.0324%" height="15" fill="rgb(250,60,41)" fg:x="68072" fg:w="49"/><text x="45.3123%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclaration (17 samples, 0.01%)</title><rect x="45.1331%" y="613" width="0.0113%" height="15" fill="rgb(220,115,12)" fg:x="68179" fg:w="17"/><text x="45.3831%" y="623.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (17 samples, 0.01%)</title><rect x="45.1331%" y="597" width="0.0113%" height="15" fill="rgb(237,100,13)" fg:x="68179" fg:w="17"/><text x="45.3831%" y="607.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (41 samples, 0.03%)</title><rect x="45.1292%" y="709" width="0.0271%" height="15" fill="rgb(213,55,26)" fg:x="68173" fg:w="41"/><text x="45.3792%" y="719.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (41 samples, 0.03%)</title><rect x="45.1292%" y="693" width="0.0271%" height="15" fill="rgb(216,17,4)" fg:x="68173" fg:w="41"/><text x="45.3792%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (41 samples, 0.03%)</title><rect x="45.1292%" y="677" width="0.0271%" height="15" fill="rgb(220,153,47)" fg:x="68173" fg:w="41"/><text x="45.3792%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (41 samples, 0.03%)</title><rect x="45.1292%" y="661" width="0.0271%" height="15" fill="rgb(215,131,9)" fg:x="68173" fg:w="41"/><text x="45.3792%" y="671.50"></text></g><g><title>clang::Parser::ParseLinkage (35 samples, 0.02%)</title><rect x="45.1331%" y="645" width="0.0232%" height="15" fill="rgb(233,46,42)" fg:x="68179" fg:w="35"/><text x="45.3831%" y="655.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (35 samples, 0.02%)</title><rect x="45.1331%" y="629" width="0.0232%" height="15" fill="rgb(226,86,7)" fg:x="68179" fg:w="35"/><text x="45.3831%" y="639.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (18 samples, 0.01%)</title><rect x="45.1444%" y="613" width="0.0119%" height="15" fill="rgb(239,226,21)" fg:x="68196" fg:w="18"/><text x="45.3944%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (18 samples, 0.01%)</title><rect x="45.1444%" y="597" width="0.0119%" height="15" fill="rgb(244,137,22)" fg:x="68196" fg:w="18"/><text x="45.3944%" y="607.50"></text></g><g><title>clang::driver::CC1Command::Execute (83 samples, 0.05%)</title><rect x="45.1146%" y="853" width="0.0549%" height="15" fill="rgb(211,139,35)" fg:x="68151" fg:w="83"/><text x="45.3646%" y="863.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (83 samples, 0.05%)</title><rect x="45.1146%" y="837" width="0.0549%" height="15" fill="rgb(214,62,50)" fg:x="68151" fg:w="83"/><text x="45.3646%" y="847.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (83 samples, 0.05%)</title><rect x="45.1146%" y="821" width="0.0549%" height="15" fill="rgb(212,113,44)" fg:x="68151" fg:w="83"/><text x="45.3646%" y="831.50"></text></g><g><title>ExecuteCC1Tool (83 samples, 0.05%)</title><rect x="45.1146%" y="805" width="0.0549%" height="15" fill="rgb(226,150,43)" fg:x="68151" fg:w="83"/><text x="45.3646%" y="815.50"></text></g><g><title>cc1_main (83 samples, 0.05%)</title><rect x="45.1146%" y="789" width="0.0549%" height="15" fill="rgb(250,71,37)" fg:x="68151" fg:w="83"/><text x="45.3646%" y="799.50"></text></g><g><title>clang::ExecuteCompilerInvocation (79 samples, 0.05%)</title><rect x="45.1172%" y="773" width="0.0523%" height="15" fill="rgb(219,76,19)" fg:x="68155" fg:w="79"/><text x="45.3672%" y="783.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (79 samples, 0.05%)</title><rect x="45.1172%" y="757" width="0.0523%" height="15" fill="rgb(250,39,11)" fg:x="68155" fg:w="79"/><text x="45.3672%" y="767.50"></text></g><g><title>clang::FrontendAction::Execute (69 samples, 0.05%)</title><rect x="45.1239%" y="741" width="0.0457%" height="15" fill="rgb(230,64,31)" fg:x="68165" fg:w="69"/><text x="45.3739%" y="751.50"></text></g><g><title>clang::ParseAST (69 samples, 0.05%)</title><rect x="45.1239%" y="725" width="0.0457%" height="15" fill="rgb(208,222,23)" fg:x="68165" fg:w="69"/><text x="45.3739%" y="735.50"></text></g><g><title>clang::Preprocessor::Lex (20 samples, 0.01%)</title><rect x="45.1563%" y="709" width="0.0132%" height="15" fill="rgb(227,125,18)" fg:x="68214" fg:w="20"/><text x="45.4063%" y="719.50"></text></g><g><title>clang::Lexer::LexTokenInternal (20 samples, 0.01%)</title><rect x="45.1563%" y="693" width="0.0132%" height="15" fill="rgb(234,210,9)" fg:x="68214" fg:w="20"/><text x="45.4063%" y="703.50"></text></g><g><title>clang::Preprocessor::HandleDirective (20 samples, 0.01%)</title><rect x="45.1563%" y="677" width="0.0132%" height="15" fill="rgb(217,127,24)" fg:x="68214" fg:w="20"/><text x="45.4063%" y="687.50"></text></g><g><title>clang::Preprocessor::HandleIncludeDirective (16 samples, 0.01%)</title><rect x="45.1589%" y="661" width="0.0106%" height="15" fill="rgb(239,141,48)" fg:x="68218" fg:w="16"/><text x="45.4089%" y="671.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (16 samples, 0.01%)</title><rect x="45.1589%" y="645" width="0.0106%" height="15" fill="rgb(227,109,8)" fg:x="68218" fg:w="16"/><text x="45.4089%" y="655.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (17 samples, 0.01%)</title><rect x="45.1748%" y="853" width="0.0113%" height="15" fill="rgb(235,184,23)" fg:x="68242" fg:w="17"/><text x="45.4248%" y="863.50"></text></g><g><title>clang::driver::tools::Clang::ConstructJob (23 samples, 0.02%)</title><rect x="45.2490%" y="773" width="0.0152%" height="15" fill="rgb(227,226,48)" fg:x="68354" fg:w="23"/><text x="45.4990%" y="783.50"></text></g><g><title>clang::driver::ToolChain::GetFilePath[abi:cxx11] (19 samples, 0.01%)</title><rect x="45.2649%" y="757" width="0.0126%" height="15" fill="rgb(206,150,11)" fg:x="68378" fg:w="19"/><text x="45.5149%" y="767.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (19 samples, 0.01%)</title><rect x="45.2649%" y="741" width="0.0126%" height="15" fill="rgb(254,2,33)" fg:x="68378" fg:w="19"/><text x="45.5149%" y="751.50"></text></g><g><title>clang::driver::Driver::BuildJobs (59 samples, 0.04%)</title><rect x="45.2443%" y="821" width="0.0391%" height="15" fill="rgb(243,160,20)" fg:x="68347" fg:w="59"/><text x="45.4943%" y="831.50"></text></g><g><title>clang::driver::Driver::BuildJobsForAction (59 samples, 0.04%)</title><rect x="45.2443%" y="805" width="0.0391%" height="15" fill="rgb(218,208,30)" fg:x="68347" fg:w="59"/><text x="45.4943%" y="815.50"></text></g><g><title>clang::driver::Driver::BuildJobsForActionNoCache (59 samples, 0.04%)</title><rect x="45.2443%" y="789" width="0.0391%" height="15" fill="rgb(224,120,49)" fg:x="68347" fg:w="59"/><text x="45.4943%" y="799.50"></text></g><g><title>clang::driver::tools::gnutools::Linker::ConstructJob (29 samples, 0.02%)</title><rect x="45.2642%" y="773" width="0.0192%" height="15" fill="rgb(246,12,2)" fg:x="68377" fg:w="29"/><text x="45.5142%" y="783.50"></text></g><g><title>llvm::sys::fs::directory_iterator::directory_iterator (16 samples, 0.01%)</title><rect x="45.2960%" y="757" width="0.0106%" height="15" fill="rgb(236,117,3)" fg:x="68425" fg:w="16"/><text x="45.5460%" y="767.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple (37 samples, 0.02%)</title><rect x="45.2854%" y="773" width="0.0245%" height="15" fill="rgb(216,128,52)" fg:x="68409" fg:w="37"/><text x="45.5354%" y="783.50"></text></g><g><title>__do_sys_newstat (16 samples, 0.01%)</title><rect x="45.3112%" y="693" width="0.0106%" height="15" fill="rgb(246,145,19)" fg:x="68448" fg:w="16"/><text x="45.5612%" y="703.50"></text></g><g><title>vfs_statx (16 samples, 0.01%)</title><rect x="45.3112%" y="677" width="0.0106%" height="15" fill="rgb(222,11,46)" fg:x="68448" fg:w="16"/><text x="45.5612%" y="687.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="45.3112%" y="709" width="0.0113%" height="15" fill="rgb(245,82,36)" fg:x="68448" fg:w="17"/><text x="45.5612%" y="719.50"></text></g><g><title>llvm::vfs::FileSystem::exists (18 samples, 0.01%)</title><rect x="45.3112%" y="773" width="0.0119%" height="15" fill="rgb(250,73,51)" fg:x="68448" fg:w="18"/><text x="45.5612%" y="783.50"></text></g><g><title>llvm::sys::fs::status (18 samples, 0.01%)</title><rect x="45.3112%" y="757" width="0.0119%" height="15" fill="rgb(221,189,23)" fg:x="68448" fg:w="18"/><text x="45.5612%" y="767.50"></text></g><g><title>__GI___xstat (18 samples, 0.01%)</title><rect x="45.3112%" y="741" width="0.0119%" height="15" fill="rgb(210,33,7)" fg:x="68448" fg:w="18"/><text x="45.5612%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="45.3112%" y="725" width="0.0119%" height="15" fill="rgb(210,107,22)" fg:x="68448" fg:w="18"/><text x="45.5612%" y="735.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (59 samples, 0.04%)</title><rect x="45.2847%" y="789" width="0.0391%" height="15" fill="rgb(222,116,37)" fg:x="68408" fg:w="59"/><text x="45.5347%" y="799.50"></text></g><g><title>clang::driver::CudaInstallationDetector::CudaInstallationDetector (16 samples, 0.01%)</title><rect x="45.3238%" y="773" width="0.0106%" height="15" fill="rgb(254,17,48)" fg:x="68467" fg:w="16"/><text x="45.5738%" y="783.50"></text></g><g><title>clang::driver::RocmInstallationDetector::getInstallationPathCandidates (18 samples, 0.01%)</title><rect x="45.3344%" y="741" width="0.0119%" height="15" fill="rgb(224,36,32)" fg:x="68483" fg:w="18"/><text x="45.5844%" y="751.50"></text></g><g><title>clang::driver::RocmInstallationDetector::RocmInstallationDetector (28 samples, 0.02%)</title><rect x="45.3344%" y="773" width="0.0185%" height="15" fill="rgb(232,90,46)" fg:x="68483" fg:w="28"/><text x="45.5844%" y="783.50"></text></g><g><title>clang::driver::RocmInstallationDetector::detectHIPRuntime (28 samples, 0.02%)</title><rect x="45.3344%" y="757" width="0.0185%" height="15" fill="rgb(241,66,40)" fg:x="68483" fg:w="28"/><text x="45.5844%" y="767.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (167 samples, 0.11%)</title><rect x="45.2443%" y="837" width="0.1106%" height="15" fill="rgb(249,184,29)" fg:x="68347" fg:w="167"/><text x="45.4943%" y="847.50"></text></g><g><title>clang::driver::Driver::getToolChain (108 samples, 0.07%)</title><rect x="45.2834%" y="821" width="0.0715%" height="15" fill="rgb(231,181,1)" fg:x="68406" fg:w="108"/><text x="45.5334%" y="831.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (108 samples, 0.07%)</title><rect x="45.2834%" y="805" width="0.0715%" height="15" fill="rgb(224,94,2)" fg:x="68406" fg:w="108"/><text x="45.5334%" y="815.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (47 samples, 0.03%)</title><rect x="45.3238%" y="789" width="0.0311%" height="15" fill="rgb(229,170,15)" fg:x="68467" fg:w="47"/><text x="45.5738%" y="799.50"></text></g><g><title>clang::Builtin::Context::builtinIsSupported (21 samples, 0.01%)</title><rect x="45.3787%" y="645" width="0.0139%" height="15" fill="rgb(240,127,35)" fg:x="68550" fg:w="21"/><text x="45.6287%" y="655.50"></text></g><g><title>llvm::StringMapImpl::LookupBucketFor (19 samples, 0.01%)</title><rect x="45.4025%" y="613" width="0.0126%" height="15" fill="rgb(248,196,34)" fg:x="68586" fg:w="19"/><text x="45.6525%" y="623.50"></text></g><g><title>llvm::StringMap&lt;clang::IdentifierInfo*, llvm::BumpPtrAllocatorImpl&lt;llvm::MallocAllocator, 4096ul, 4096ul, 128ul&gt; &gt;::try_emplace&lt;clang::IdentifierInfo*&gt; (31 samples, 0.02%)</title><rect x="45.3953%" y="629" width="0.0205%" height="15" fill="rgb(236,137,7)" fg:x="68575" fg:w="31"/><text x="45.6453%" y="639.50"></text></g><g><title>clang::Builtin::Context::initializeBuiltins (66 samples, 0.04%)</title><rect x="45.3761%" y="661" width="0.0437%" height="15" fill="rgb(235,127,16)" fg:x="68546" fg:w="66"/><text x="45.6261%" y="671.50"></text></g><g><title>clang::IdentifierTable::get (41 samples, 0.03%)</title><rect x="45.3926%" y="645" width="0.0271%" height="15" fill="rgb(250,192,54)" fg:x="68571" fg:w="41"/><text x="45.6426%" y="655.50"></text></g><g><title>clang::CompilerInstance::createPreprocessor (42 samples, 0.03%)</title><rect x="45.4237%" y="661" width="0.0278%" height="15" fill="rgb(218,98,20)" fg:x="68618" fg:w="42"/><text x="45.6737%" y="671.50"></text></g><g><title>std::__shared_ptr&lt;clang::Preprocessor, (__gnu_cxx::_Lock_policy)2&gt;::__shared_ptr&lt;std::allocator&lt;clang::Preprocessor&gt;, std::shared_ptr&lt;clang::PreprocessorOptions&gt;, clang::DiagnosticsEngine&amp;, clang::LangOptions&amp;, clang::SourceManager&amp;, clang::HeaderSearch&amp;, clang::CompilerInstance&amp;, decltype(nullptr), bool, clang::TranslationUnitKind&amp;&gt; (17 samples, 0.01%)</title><rect x="45.4403%" y="645" width="0.0113%" height="15" fill="rgb(230,176,47)" fg:x="68643" fg:w="17"/><text x="45.6903%" y="655.50"></text></g><g><title>clang::Preprocessor::Preprocessor (17 samples, 0.01%)</title><rect x="45.4403%" y="629" width="0.0113%" height="15" fill="rgb(244,2,33)" fg:x="68643" fg:w="17"/><text x="45.6903%" y="639.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (138 samples, 0.09%)</title><rect x="45.3708%" y="677" width="0.0914%" height="15" fill="rgb(231,100,17)" fg:x="68538" fg:w="138"/><text x="45.6208%" y="687.50"></text></g><g><title>clang::FrontendAction::CreateWrappedASTConsumer (16 samples, 0.01%)</title><rect x="45.4515%" y="661" width="0.0106%" height="15" fill="rgb(245,23,12)" fg:x="68660" fg:w="16"/><text x="45.7015%" y="671.50"></text></g><g><title>clang::CodeGenAction::CreateASTConsumer (16 samples, 0.01%)</title><rect x="45.4515%" y="645" width="0.0106%" height="15" fill="rgb(249,55,22)" fg:x="68660" fg:w="16"/><text x="45.7015%" y="655.50"></text></g><g><title>clang::FrontendAction::EndSourceFile (19 samples, 0.01%)</title><rect x="45.4621%" y="677" width="0.0126%" height="15" fill="rgb(207,134,9)" fg:x="68676" fg:w="19"/><text x="45.7121%" y="687.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (17 samples, 0.01%)</title><rect x="45.4972%" y="469" width="0.0113%" height="15" fill="rgb(218,134,0)" fg:x="68729" fg:w="17"/><text x="45.7472%" y="479.50"></text></g><g><title>clang::BalancedDelimiterTracker::consumeClose (47 samples, 0.03%)</title><rect x="45.4833%" y="549" width="0.0311%" height="15" fill="rgb(213,212,33)" fg:x="68708" fg:w="47"/><text x="45.7333%" y="559.50"></text></g><g><title>clang::Parser::ConsumeBrace (47 samples, 0.03%)</title><rect x="45.4833%" y="533" width="0.0311%" height="15" fill="rgb(252,106,18)" fg:x="68708" fg:w="47"/><text x="45.7333%" y="543.50"></text></g><g><title>clang::Preprocessor::Lex (47 samples, 0.03%)</title><rect x="45.4833%" y="517" width="0.0311%" height="15" fill="rgb(208,126,42)" fg:x="68708" fg:w="47"/><text x="45.7333%" y="527.50"></text></g><g><title>clang::Lexer::LexTokenInternal (47 samples, 0.03%)</title><rect x="45.4833%" y="501" width="0.0311%" height="15" fill="rgb(246,175,29)" fg:x="68708" fg:w="47"/><text x="45.7333%" y="511.50"></text></g><g><title>clang::Preprocessor::HandleDirective (39 samples, 0.03%)</title><rect x="45.4886%" y="485" width="0.0258%" height="15" fill="rgb(215,13,50)" fg:x="68716" fg:w="39"/><text x="45.7386%" y="495.50"></text></g><g><title>clang::Parser::ParseInnerNamespace (48 samples, 0.03%)</title><rect x="45.4833%" y="565" width="0.0318%" height="15" fill="rgb(216,172,15)" fg:x="68708" fg:w="48"/><text x="45.7333%" y="575.50"></text></g><g><title>clang::Parser::ParseFirstTopLevelDecl (51 samples, 0.03%)</title><rect x="45.4826%" y="645" width="0.0338%" height="15" fill="rgb(212,103,13)" fg:x="68707" fg:w="51"/><text x="45.7326%" y="655.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (51 samples, 0.03%)</title><rect x="45.4826%" y="629" width="0.0338%" height="15" fill="rgb(231,171,36)" fg:x="68707" fg:w="51"/><text x="45.7326%" y="639.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (51 samples, 0.03%)</title><rect x="45.4826%" y="613" width="0.0338%" height="15" fill="rgb(250,123,20)" fg:x="68707" fg:w="51"/><text x="45.7326%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclaration (51 samples, 0.03%)</title><rect x="45.4826%" y="597" width="0.0338%" height="15" fill="rgb(212,53,50)" fg:x="68707" fg:w="51"/><text x="45.7326%" y="607.50"></text></g><g><title>clang::Parser::ParseNamespace (50 samples, 0.03%)</title><rect x="45.4833%" y="581" width="0.0331%" height="15" fill="rgb(243,54,12)" fg:x="68708" fg:w="50"/><text x="45.7333%" y="591.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (23 samples, 0.02%)</title><rect x="45.5184%" y="565" width="0.0152%" height="15" fill="rgb(234,101,34)" fg:x="68761" fg:w="23"/><text x="45.7684%" y="575.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (28 samples, 0.02%)</title><rect x="45.5164%" y="629" width="0.0185%" height="15" fill="rgb(254,67,22)" fg:x="68758" fg:w="28"/><text x="45.7664%" y="639.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (28 samples, 0.02%)</title><rect x="45.5164%" y="613" width="0.0185%" height="15" fill="rgb(250,35,47)" fg:x="68758" fg:w="28"/><text x="45.7664%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (28 samples, 0.02%)</title><rect x="45.5164%" y="597" width="0.0185%" height="15" fill="rgb(226,126,38)" fg:x="68758" fg:w="28"/><text x="45.7664%" y="607.50"></text></g><g><title>clang::Parser::ParseLinkage (27 samples, 0.02%)</title><rect x="45.5171%" y="581" width="0.0179%" height="15" fill="rgb(216,138,53)" fg:x="68759" fg:w="27"/><text x="45.7671%" y="591.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (29 samples, 0.02%)</title><rect x="45.5164%" y="645" width="0.0192%" height="15" fill="rgb(246,199,43)" fg:x="68758" fg:w="29"/><text x="45.7664%" y="655.50"></text></g><g><title>clang::Preprocessor::ReadMacroName (23 samples, 0.02%)</title><rect x="45.5594%" y="581" width="0.0152%" height="15" fill="rgb(232,125,11)" fg:x="68823" fg:w="23"/><text x="45.8094%" y="591.50"></text></g><g><title>clang::Preprocessor::Lex (16 samples, 0.01%)</title><rect x="45.5641%" y="565" width="0.0106%" height="15" fill="rgb(218,219,45)" fg:x="68830" fg:w="16"/><text x="45.8141%" y="575.50"></text></g><g><title>clang::Preprocessor::ReadOptionalMacroParameterListAndBody (30 samples, 0.02%)</title><rect x="45.5747%" y="581" width="0.0199%" height="15" fill="rgb(216,102,54)" fg:x="68846" fg:w="30"/><text x="45.8247%" y="591.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (69 samples, 0.05%)</title><rect x="45.5568%" y="597" width="0.0457%" height="15" fill="rgb(250,228,7)" fg:x="68819" fg:w="69"/><text x="45.8068%" y="607.50"></text></g><g><title>clang::Preprocessor::EvaluateDirectiveExpression (28 samples, 0.02%)</title><rect x="45.6104%" y="581" width="0.0185%" height="15" fill="rgb(226,125,25)" fg:x="68900" fg:w="28"/><text x="45.8604%" y="591.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (48 samples, 0.03%)</title><rect x="45.6091%" y="597" width="0.0318%" height="15" fill="rgb(224,165,27)" fg:x="68898" fg:w="48"/><text x="45.8591%" y="607.50"></text></g><g><title>clang::Preprocessor::SkipExcludedConditionalBlock (18 samples, 0.01%)</title><rect x="45.6289%" y="581" width="0.0119%" height="15" fill="rgb(233,86,3)" fg:x="68928" fg:w="18"/><text x="45.8789%" y="591.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (451 samples, 0.30%)</title><rect x="45.3648%" y="693" width="0.2986%" height="15" fill="rgb(228,116,20)" fg:x="68529" fg:w="451"/><text x="45.6148%" y="703.50"></text></g><g><title>clang::FrontendAction::Execute (285 samples, 0.19%)</title><rect x="45.4747%" y="677" width="0.1887%" height="15" fill="rgb(209,192,17)" fg:x="68695" fg:w="285"/><text x="45.7247%" y="687.50"></text></g><g><title>clang::ParseAST (283 samples, 0.19%)</title><rect x="45.4760%" y="661" width="0.1873%" height="15" fill="rgb(224,88,34)" fg:x="68697" fg:w="283"/><text x="45.7260%" y="671.50"></text></g><g><title>clang::Preprocessor::Lex (181 samples, 0.12%)</title><rect x="45.5436%" y="645" width="0.1198%" height="15" fill="rgb(233,38,6)" fg:x="68799" fg:w="181"/><text x="45.7936%" y="655.50"></text></g><g><title>clang::Lexer::LexTokenInternal (180 samples, 0.12%)</title><rect x="45.5442%" y="629" width="0.1192%" height="15" fill="rgb(212,59,30)" fg:x="68800" fg:w="180"/><text x="45.7942%" y="639.50"></text></g><g><title>clang::Preprocessor::HandleDirective (167 samples, 0.11%)</title><rect x="45.5528%" y="613" width="0.1106%" height="15" fill="rgb(213,80,3)" fg:x="68813" fg:w="167"/><text x="45.8028%" y="623.50"></text></g><g><title>clang::ExecuteCompilerInvocation (464 samples, 0.31%)</title><rect x="45.3642%" y="709" width="0.3072%" height="15" fill="rgb(251,178,7)" fg:x="68528" fg:w="464"/><text x="45.6142%" y="719.50"></text></g><g><title>clang::driver::CC1Command::Execute (485 samples, 0.32%)</title><rect x="45.3549%" y="789" width="0.3211%" height="15" fill="rgb(213,154,26)" fg:x="68514" fg:w="485"/><text x="45.6049%" y="799.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (485 samples, 0.32%)</title><rect x="45.3549%" y="773" width="0.3211%" height="15" fill="rgb(238,165,49)" fg:x="68514" fg:w="485"/><text x="45.6049%" y="783.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (485 samples, 0.32%)</title><rect x="45.3549%" y="757" width="0.3211%" height="15" fill="rgb(248,91,46)" fg:x="68514" fg:w="485"/><text x="45.6049%" y="767.50"></text></g><g><title>ExecuteCC1Tool (485 samples, 0.32%)</title><rect x="45.3549%" y="741" width="0.3211%" height="15" fill="rgb(244,21,52)" fg:x="68514" fg:w="485"/><text x="45.6049%" y="751.50"></text></g><g><title>cc1_main (485 samples, 0.32%)</title><rect x="45.3549%" y="725" width="0.3211%" height="15" fill="rgb(247,122,20)" fg:x="68514" fg:w="485"/><text x="45.6049%" y="735.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (489 samples, 0.32%)</title><rect x="45.3549%" y="837" width="0.3237%" height="15" fill="rgb(218,27,9)" fg:x="68514" fg:w="489"/><text x="45.6049%" y="847.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (489 samples, 0.32%)</title><rect x="45.3549%" y="821" width="0.3237%" height="15" fill="rgb(246,7,6)" fg:x="68514" fg:w="489"/><text x="45.6049%" y="831.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (489 samples, 0.32%)</title><rect x="45.3549%" y="805" width="0.3237%" height="15" fill="rgb(227,135,54)" fg:x="68514" fg:w="489"/><text x="45.6049%" y="815.50"></text></g><g><title>main (671 samples, 0.44%)</title><rect x="45.2430%" y="853" width="0.4442%" height="15" fill="rgb(247,14,11)" fg:x="68345" fg:w="671"/><text x="45.4930%" y="863.50"></text></g><g><title>[unknown] (1,858 samples, 1.23%)</title><rect x="44.4632%" y="869" width="1.2300%" height="15" fill="rgb(206,149,34)" fg:x="67167" fg:w="1858"/><text x="44.7132%" y="879.50"></text></g><g><title>__GI___libc_sigaction (34 samples, 0.02%)</title><rect x="45.6938%" y="837" width="0.0225%" height="15" fill="rgb(227,228,4)" fg:x="69026" fg:w="34"/><text x="45.9438%" y="847.50"></text></g><g><title>__spawni_child (49 samples, 0.03%)</title><rect x="45.6932%" y="853" width="0.0324%" height="15" fill="rgb(238,218,28)" fg:x="69025" fg:w="49"/><text x="45.9432%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (206 samples, 0.14%)</title><rect x="45.7455%" y="805" width="0.1364%" height="15" fill="rgb(252,86,40)" fg:x="69104" fg:w="206"/><text x="45.9955%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (205 samples, 0.14%)</title><rect x="45.7461%" y="789" width="0.1357%" height="15" fill="rgb(251,225,11)" fg:x="69105" fg:w="205"/><text x="45.9961%" y="799.50"></text></g><g><title>native_write_msr (205 samples, 0.14%)</title><rect x="45.7461%" y="773" width="0.1357%" height="15" fill="rgb(206,46,49)" fg:x="69105" fg:w="205"/><text x="45.9961%" y="783.50"></text></g><g><title>__GI___clone (288 samples, 0.19%)</title><rect x="45.6932%" y="869" width="0.1907%" height="15" fill="rgb(245,128,24)" fg:x="69025" fg:w="288"/><text x="45.9432%" y="879.50"></text></g><g><title>ret_from_fork (228 samples, 0.15%)</title><rect x="45.7329%" y="853" width="0.1509%" height="15" fill="rgb(219,177,34)" fg:x="69085" fg:w="228"/><text x="45.9829%" y="863.50"></text></g><g><title>schedule_tail (221 samples, 0.15%)</title><rect x="45.7375%" y="837" width="0.1463%" height="15" fill="rgb(218,60,48)" fg:x="69092" fg:w="221"/><text x="45.9875%" y="847.50"></text></g><g><title>finish_task_switch (221 samples, 0.15%)</title><rect x="45.7375%" y="821" width="0.1463%" height="15" fill="rgb(221,11,5)" fg:x="69092" fg:w="221"/><text x="45.9875%" y="831.50"></text></g><g><title>[libstdc++.so.6.0.28] (21 samples, 0.01%)</title><rect x="45.8865%" y="805" width="0.0139%" height="15" fill="rgb(220,148,13)" fg:x="69317" fg:w="21"/><text x="46.1365%" y="815.50"></text></g><g><title>_dl_start_user (23 samples, 0.02%)</title><rect x="45.8858%" y="869" width="0.0152%" height="15" fill="rgb(210,16,3)" fg:x="69316" fg:w="23"/><text x="46.1358%" y="879.50"></text></g><g><title>_dl_init (23 samples, 0.02%)</title><rect x="45.8858%" y="853" width="0.0152%" height="15" fill="rgb(236,80,2)" fg:x="69316" fg:w="23"/><text x="46.1358%" y="863.50"></text></g><g><title>call_init (23 samples, 0.02%)</title><rect x="45.8858%" y="837" width="0.0152%" height="15" fill="rgb(239,129,19)" fg:x="69316" fg:w="23"/><text x="46.1358%" y="847.50"></text></g><g><title>call_init (23 samples, 0.02%)</title><rect x="45.8858%" y="821" width="0.0152%" height="15" fill="rgb(220,106,35)" fg:x="69316" fg:w="23"/><text x="46.1358%" y="831.50"></text></g><g><title>__GI_exit (64 samples, 0.04%)</title><rect x="45.9070%" y="837" width="0.0424%" height="15" fill="rgb(252,139,45)" fg:x="69348" fg:w="64"/><text x="46.1570%" y="847.50"></text></g><g><title>__run_exit_handlers (64 samples, 0.04%)</title><rect x="45.9070%" y="821" width="0.0424%" height="15" fill="rgb(229,8,36)" fg:x="69348" fg:w="64"/><text x="46.1570%" y="831.50"></text></g><g><title>__pthread_once_slow (17 samples, 0.01%)</title><rect x="46.2711%" y="773" width="0.0113%" height="15" fill="rgb(230,126,33)" fg:x="69898" fg:w="17"/><text x="46.5211%" y="783.50"></text></g><g><title>initializeCodeGenerationPassOnce (17 samples, 0.01%)</title><rect x="46.2711%" y="757" width="0.0113%" height="15" fill="rgb(239,140,21)" fg:x="69898" fg:w="17"/><text x="46.5211%" y="767.50"></text></g><g><title>llvm::initializeDependenceInfoPass (17 samples, 0.01%)</title><rect x="46.2711%" y="741" width="0.0113%" height="15" fill="rgb(254,104,9)" fg:x="69898" fg:w="17"/><text x="46.5211%" y="751.50"></text></g><g><title>llvm::initializeCodeGenerationPass (20 samples, 0.01%)</title><rect x="46.2697%" y="789" width="0.0132%" height="15" fill="rgb(239,52,14)" fg:x="69896" fg:w="20"/><text x="46.5197%" y="799.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (33 samples, 0.02%)</title><rect x="46.2684%" y="821" width="0.0218%" height="15" fill="rgb(208,227,44)" fg:x="69894" fg:w="33"/><text x="46.5184%" y="831.50"></text></g><g><title>polly::initializePollyPasses (31 samples, 0.02%)</title><rect x="46.2697%" y="805" width="0.0205%" height="15" fill="rgb(246,18,19)" fg:x="69896" fg:w="31"/><text x="46.5197%" y="815.50"></text></g><g><title>__libc_csu_init (637 samples, 0.42%)</title><rect x="45.9493%" y="837" width="0.4217%" height="15" fill="rgb(235,228,25)" fg:x="69412" fg:w="637"/><text x="46.1993%" y="847.50"></text></g><g><title>clang::driver::Driver::getToolChain (16 samples, 0.01%)</title><rect x="46.4088%" y="805" width="0.0106%" height="15" fill="rgb(240,156,20)" fg:x="70106" fg:w="16"/><text x="46.6588%" y="815.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (47 samples, 0.03%)</title><rect x="46.3896%" y="821" width="0.0311%" height="15" fill="rgb(224,8,20)" fg:x="70077" fg:w="47"/><text x="46.6396%" y="831.50"></text></g><g><title>clang::driver::CC1Command::Execute (25 samples, 0.02%)</title><rect x="46.4233%" y="773" width="0.0165%" height="15" fill="rgb(214,12,52)" fg:x="70128" fg:w="25"/><text x="46.6733%" y="783.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (25 samples, 0.02%)</title><rect x="46.4233%" y="757" width="0.0165%" height="15" fill="rgb(211,220,47)" fg:x="70128" fg:w="25"/><text x="46.6733%" y="767.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (25 samples, 0.02%)</title><rect x="46.4233%" y="741" width="0.0165%" height="15" fill="rgb(250,173,5)" fg:x="70128" fg:w="25"/><text x="46.6733%" y="751.50"></text></g><g><title>ExecuteCC1Tool (25 samples, 0.02%)</title><rect x="46.4233%" y="725" width="0.0165%" height="15" fill="rgb(250,125,52)" fg:x="70128" fg:w="25"/><text x="46.6733%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.05%)</title><rect x="46.4498%" y="581" width="0.0483%" height="15" fill="rgb(209,133,18)" fg:x="70168" fg:w="73"/><text x="46.6998%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (73 samples, 0.05%)</title><rect x="46.4498%" y="565" width="0.0483%" height="15" fill="rgb(216,173,22)" fg:x="70168" fg:w="73"/><text x="46.6998%" y="575.50"></text></g><g><title>native_write_msr (73 samples, 0.05%)</title><rect x="46.4498%" y="549" width="0.0483%" height="15" fill="rgb(205,3,22)" fg:x="70168" fg:w="73"/><text x="46.6998%" y="559.50"></text></g><g><title>schedule (78 samples, 0.05%)</title><rect x="46.4478%" y="629" width="0.0516%" height="15" fill="rgb(248,22,20)" fg:x="70165" fg:w="78"/><text x="46.6978%" y="639.50"></text></g><g><title>__schedule (78 samples, 0.05%)</title><rect x="46.4478%" y="613" width="0.0516%" height="15" fill="rgb(233,6,29)" fg:x="70165" fg:w="78"/><text x="46.6978%" y="623.50"></text></g><g><title>finish_task_switch (78 samples, 0.05%)</title><rect x="46.4478%" y="597" width="0.0516%" height="15" fill="rgb(240,22,54)" fg:x="70165" fg:w="78"/><text x="46.6978%" y="607.50"></text></g><g><title>llvm::sys::ExecuteAndWait (101 samples, 0.07%)</title><rect x="46.4399%" y="757" width="0.0669%" height="15" fill="rgb(231,133,32)" fg:x="70153" fg:w="101"/><text x="46.6899%" y="767.50"></text></g><g><title>llvm::sys::Wait (98 samples, 0.06%)</title><rect x="46.4419%" y="741" width="0.0649%" height="15" fill="rgb(248,193,4)" fg:x="70156" fg:w="98"/><text x="46.6919%" y="751.50"></text></g><g><title>__GI___wait4 (97 samples, 0.06%)</title><rect x="46.4425%" y="725" width="0.0642%" height="15" fill="rgb(211,178,46)" fg:x="70157" fg:w="97"/><text x="46.6925%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.06%)</title><rect x="46.4432%" y="709" width="0.0636%" height="15" fill="rgb(224,5,42)" fg:x="70158" fg:w="96"/><text x="46.6932%" y="719.50"></text></g><g><title>do_syscall_64 (96 samples, 0.06%)</title><rect x="46.4432%" y="693" width="0.0636%" height="15" fill="rgb(239,176,25)" fg:x="70158" fg:w="96"/><text x="46.6932%" y="703.50"></text></g><g><title>__do_sys_wait4 (96 samples, 0.06%)</title><rect x="46.4432%" y="677" width="0.0636%" height="15" fill="rgb(245,187,50)" fg:x="70158" fg:w="96"/><text x="46.6932%" y="687.50"></text></g><g><title>kernel_wait4 (96 samples, 0.06%)</title><rect x="46.4432%" y="661" width="0.0636%" height="15" fill="rgb(248,24,15)" fg:x="70158" fg:w="96"/><text x="46.6932%" y="671.50"></text></g><g><title>do_wait (96 samples, 0.06%)</title><rect x="46.4432%" y="645" width="0.0636%" height="15" fill="rgb(205,166,13)" fg:x="70158" fg:w="96"/><text x="46.6932%" y="655.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (129 samples, 0.09%)</title><rect x="46.4227%" y="805" width="0.0854%" height="15" fill="rgb(208,114,23)" fg:x="70127" fg:w="129"/><text x="46.6727%" y="815.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (129 samples, 0.09%)</title><rect x="46.4227%" y="789" width="0.0854%" height="15" fill="rgb(239,127,18)" fg:x="70127" fg:w="129"/><text x="46.6727%" y="799.50"></text></g><g><title>clang::driver::Command::Execute (103 samples, 0.07%)</title><rect x="46.4399%" y="773" width="0.0682%" height="15" fill="rgb(219,154,28)" fg:x="70153" fg:w="103"/><text x="46.6899%" y="783.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (133 samples, 0.09%)</title><rect x="46.4227%" y="821" width="0.0880%" height="15" fill="rgb(225,157,23)" fg:x="70127" fg:w="133"/><text x="46.6727%" y="831.50"></text></g><g><title>asm_exc_page_fault (21 samples, 0.01%)</title><rect x="46.5206%" y="741" width="0.0139%" height="15" fill="rgb(219,8,6)" fg:x="70275" fg:w="21"/><text x="46.7706%" y="751.50"></text></g><g><title>exc_page_fault (21 samples, 0.01%)</title><rect x="46.5206%" y="725" width="0.0139%" height="15" fill="rgb(212,47,6)" fg:x="70275" fg:w="21"/><text x="46.7706%" y="735.50"></text></g><g><title>do_user_addr_fault (20 samples, 0.01%)</title><rect x="46.5213%" y="709" width="0.0132%" height="15" fill="rgb(224,190,4)" fg:x="70276" fg:w="20"/><text x="46.7713%" y="719.50"></text></g><g><title>handle_mm_fault (20 samples, 0.01%)</title><rect x="46.5213%" y="693" width="0.0132%" height="15" fill="rgb(239,183,29)" fg:x="70276" fg:w="20"/><text x="46.7713%" y="703.50"></text></g><g><title>[libc-2.31.so] (29 samples, 0.02%)</title><rect x="46.5160%" y="757" width="0.0192%" height="15" fill="rgb(213,57,7)" fg:x="70268" fg:w="29"/><text x="46.7660%" y="767.50"></text></g><g><title>llvm::opt::OptTable::OptTable (53 samples, 0.04%)</title><rect x="46.5134%" y="773" width="0.0351%" height="15" fill="rgb(216,148,1)" fg:x="70264" fg:w="53"/><text x="46.7634%" y="783.50"></text></g><g><title>clang::driver::getDriverOptTable (79 samples, 0.05%)</title><rect x="46.5120%" y="805" width="0.0523%" height="15" fill="rgb(236,182,29)" fg:x="70262" fg:w="79"/><text x="46.7620%" y="815.50"></text></g><g><title>clang::driver::getDriverOptTable (77 samples, 0.05%)</title><rect x="46.5134%" y="789" width="0.0510%" height="15" fill="rgb(244,120,48)" fg:x="70264" fg:w="77"/><text x="46.7634%" y="799.50"></text></g><g><title>llvm::opt::OptTable::addValues (24 samples, 0.02%)</title><rect x="46.5484%" y="773" width="0.0159%" height="15" fill="rgb(206,71,34)" fg:x="70317" fg:w="24"/><text x="46.7984%" y="783.50"></text></g><g><title>optionMatches (23 samples, 0.02%)</title><rect x="46.5491%" y="757" width="0.0152%" height="15" fill="rgb(242,32,6)" fg:x="70318" fg:w="23"/><text x="46.7991%" y="767.50"></text></g><g><title>[libc-2.31.so] (19 samples, 0.01%)</title><rect x="46.5517%" y="741" width="0.0126%" height="15" fill="rgb(241,35,3)" fg:x="70322" fg:w="19"/><text x="46.8017%" y="751.50"></text></g><g><title>clang::driver::getDriverMode (82 samples, 0.05%)</title><rect x="46.5107%" y="821" width="0.0543%" height="15" fill="rgb(222,62,19)" fg:x="70260" fg:w="82"/><text x="46.7607%" y="831.50"></text></g><g><title>llvm::InitLLVM::~InitLLVM (50 samples, 0.03%)</title><rect x="46.5696%" y="821" width="0.0331%" height="15" fill="rgb(223,110,41)" fg:x="70349" fg:w="50"/><text x="46.8196%" y="831.50"></text></g><g><title>llvm::llvm_shutdown (50 samples, 0.03%)</title><rect x="46.5696%" y="805" width="0.0331%" height="15" fill="rgb(208,224,4)" fg:x="70349" fg:w="50"/><text x="46.8196%" y="815.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (35 samples, 0.02%)</title><rect x="46.5796%" y="789" width="0.0232%" height="15" fill="rgb(241,137,19)" fg:x="70364" fg:w="35"/><text x="46.8296%" y="799.50"></text></g><g><title>LLVMInitializeAArch64Target (21 samples, 0.01%)</title><rect x="46.6027%" y="805" width="0.0139%" height="15" fill="rgb(244,24,17)" fg:x="70399" fg:w="21"/><text x="46.8527%" y="815.50"></text></g><g><title>LLVMInitializeAMDGPUTarget (28 samples, 0.02%)</title><rect x="46.6166%" y="805" width="0.0185%" height="15" fill="rgb(245,178,49)" fg:x="70420" fg:w="28"/><text x="46.8666%" y="815.50"></text></g><g><title>llvm::InitializeAllTargets (100 samples, 0.07%)</title><rect x="46.6027%" y="821" width="0.0662%" height="15" fill="rgb(219,160,38)" fg:x="70399" fg:w="100"/><text x="46.8527%" y="831.50"></text></g><g><title>__libc_start_main (1,164 samples, 0.77%)</title><rect x="45.9070%" y="853" width="0.7705%" height="15" fill="rgb(228,137,14)" fg:x="69348" fg:w="1164"/><text x="46.1570%" y="863.50"></text></g><g><title>main (463 samples, 0.31%)</title><rect x="46.3710%" y="837" width="0.3065%" height="15" fill="rgb(237,134,11)" fg:x="70049" fg:w="463"/><text x="46.6210%" y="847.50"></text></g><g><title>__do_munmap (18 samples, 0.01%)</title><rect x="46.6908%" y="565" width="0.0119%" height="15" fill="rgb(211,126,44)" fg:x="70532" fg:w="18"/><text x="46.9408%" y="575.50"></text></g><g><title>do_mmap (32 samples, 0.02%)</title><rect x="46.6901%" y="597" width="0.0212%" height="15" fill="rgb(226,171,33)" fg:x="70531" fg:w="32"/><text x="46.9401%" y="607.50"></text></g><g><title>mmap_region (31 samples, 0.02%)</title><rect x="46.6908%" y="581" width="0.0205%" height="15" fill="rgb(253,99,13)" fg:x="70532" fg:w="31"/><text x="46.9408%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (33 samples, 0.02%)</title><rect x="46.6901%" y="629" width="0.0218%" height="15" fill="rgb(244,48,7)" fg:x="70531" fg:w="33"/><text x="46.9401%" y="639.50"></text></g><g><title>vm_mmap_pgoff (33 samples, 0.02%)</title><rect x="46.6901%" y="613" width="0.0218%" height="15" fill="rgb(244,217,54)" fg:x="70531" fg:w="33"/><text x="46.9401%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="46.6901%" y="661" width="0.0232%" height="15" fill="rgb(224,15,18)" fg:x="70531" fg:w="35"/><text x="46.9401%" y="671.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="46.6901%" y="645" width="0.0232%" height="15" fill="rgb(244,99,12)" fg:x="70531" fg:w="35"/><text x="46.9401%" y="655.50"></text></g><g><title>_dl_map_segments (43 samples, 0.03%)</title><rect x="46.6855%" y="709" width="0.0285%" height="15" fill="rgb(233,226,8)" fg:x="70524" fg:w="43"/><text x="46.9355%" y="719.50"></text></g><g><title>__mmap64 (36 samples, 0.02%)</title><rect x="46.6901%" y="693" width="0.0238%" height="15" fill="rgb(229,211,3)" fg:x="70531" fg:w="36"/><text x="46.9401%" y="703.50"></text></g><g><title>__mmap64 (36 samples, 0.02%)</title><rect x="46.6901%" y="677" width="0.0238%" height="15" fill="rgb(216,140,21)" fg:x="70531" fg:w="36"/><text x="46.9401%" y="687.50"></text></g><g><title>_dl_map_object_from_fd (62 samples, 0.04%)</title><rect x="46.6828%" y="725" width="0.0410%" height="15" fill="rgb(234,122,30)" fg:x="70520" fg:w="62"/><text x="46.9328%" y="735.50"></text></g><g><title>_dl_catch_exception (92 samples, 0.06%)</title><rect x="46.6788%" y="773" width="0.0609%" height="15" fill="rgb(236,25,46)" fg:x="70514" fg:w="92"/><text x="46.9288%" y="783.50"></text></g><g><title>openaux (92 samples, 0.06%)</title><rect x="46.6788%" y="757" width="0.0609%" height="15" fill="rgb(217,52,54)" fg:x="70514" fg:w="92"/><text x="46.9288%" y="767.50"></text></g><g><title>_dl_map_object (92 samples, 0.06%)</title><rect x="46.6788%" y="741" width="0.0609%" height="15" fill="rgb(222,29,26)" fg:x="70514" fg:w="92"/><text x="46.9288%" y="751.50"></text></g><g><title>_dl_map_object_deps (94 samples, 0.06%)</title><rect x="46.6788%" y="789" width="0.0622%" height="15" fill="rgb(216,177,29)" fg:x="70514" fg:w="94"/><text x="46.9288%" y="799.50"></text></g><g><title>_dl_protect_relro (17 samples, 0.01%)</title><rect x="46.7431%" y="773" width="0.0113%" height="15" fill="rgb(247,136,51)" fg:x="70611" fg:w="17"/><text x="46.9931%" y="783.50"></text></g><g><title>__mprotect (17 samples, 0.01%)</title><rect x="46.7431%" y="757" width="0.0113%" height="15" fill="rgb(231,47,47)" fg:x="70611" fg:w="17"/><text x="46.9931%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="46.7437%" y="741" width="0.0106%" height="15" fill="rgb(211,192,36)" fg:x="70612" fg:w="16"/><text x="46.9937%" y="751.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="46.7437%" y="725" width="0.0106%" height="15" fill="rgb(229,156,32)" fg:x="70612" fg:w="16"/><text x="46.9937%" y="735.50"></text></g><g><title>__x64_sys_mprotect (16 samples, 0.01%)</title><rect x="46.7437%" y="709" width="0.0106%" height="15" fill="rgb(248,213,20)" fg:x="70612" fg:w="16"/><text x="46.9937%" y="719.50"></text></g><g><title>do_mprotect_pkey (16 samples, 0.01%)</title><rect x="46.7437%" y="693" width="0.0106%" height="15" fill="rgb(217,64,7)" fg:x="70612" fg:w="16"/><text x="46.9937%" y="703.50"></text></g><g><title>mprotect_fixup (16 samples, 0.01%)</title><rect x="46.7437%" y="677" width="0.0106%" height="15" fill="rgb(232,142,8)" fg:x="70612" fg:w="16"/><text x="46.9937%" y="687.50"></text></g><g><title>dl_new_hash (34 samples, 0.02%)</title><rect x="46.8013%" y="725" width="0.0225%" height="15" fill="rgb(224,92,44)" fg:x="70699" fg:w="34"/><text x="47.0513%" y="735.50"></text></g><g><title>check_match (17 samples, 0.01%)</title><rect x="46.8874%" y="709" width="0.0113%" height="15" fill="rgb(214,169,17)" fg:x="70829" fg:w="17"/><text x="47.1374%" y="719.50"></text></g><g><title>_dl_lookup_symbol_x (161 samples, 0.11%)</title><rect x="46.7973%" y="741" width="0.1066%" height="15" fill="rgb(210,59,37)" fg:x="70693" fg:w="161"/><text x="47.0473%" y="751.50"></text></g><g><title>do_lookup_x (121 samples, 0.08%)</title><rect x="46.8238%" y="725" width="0.0801%" height="15" fill="rgb(214,116,48)" fg:x="70733" fg:w="121"/><text x="47.0738%" y="735.50"></text></g><g><title>alloc_pages_vma (40 samples, 0.03%)</title><rect x="46.9185%" y="677" width="0.0265%" height="15" fill="rgb(244,191,6)" fg:x="70876" fg:w="40"/><text x="47.1685%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (39 samples, 0.03%)</title><rect x="46.9191%" y="661" width="0.0258%" height="15" fill="rgb(241,50,52)" fg:x="70877" fg:w="39"/><text x="47.1691%" y="671.50"></text></g><g><title>get_page_from_freelist (34 samples, 0.02%)</title><rect x="46.9225%" y="645" width="0.0225%" height="15" fill="rgb(236,75,39)" fg:x="70882" fg:w="34"/><text x="47.1725%" y="655.50"></text></g><g><title>prep_new_page (26 samples, 0.02%)</title><rect x="46.9278%" y="629" width="0.0172%" height="15" fill="rgb(236,99,0)" fg:x="70890" fg:w="26"/><text x="47.1778%" y="639.50"></text></g><g><title>kernel_init_free_pages (26 samples, 0.02%)</title><rect x="46.9278%" y="613" width="0.0172%" height="15" fill="rgb(207,202,15)" fg:x="70890" fg:w="26"/><text x="47.1778%" y="623.50"></text></g><g><title>clear_page_erms (25 samples, 0.02%)</title><rect x="46.9284%" y="597" width="0.0165%" height="15" fill="rgb(233,207,14)" fg:x="70891" fg:w="25"/><text x="47.1784%" y="607.50"></text></g><g><title>copy_page (32 samples, 0.02%)</title><rect x="46.9463%" y="677" width="0.0212%" height="15" fill="rgb(226,27,51)" fg:x="70918" fg:w="32"/><text x="47.1963%" y="687.50"></text></g><g><title>handle_mm_fault (129 samples, 0.09%)</title><rect x="46.9079%" y="693" width="0.0854%" height="15" fill="rgb(206,104,42)" fg:x="70860" fg:w="129"/><text x="47.1579%" y="703.50"></text></g><g><title>asm_exc_page_fault (136 samples, 0.09%)</title><rect x="46.9039%" y="741" width="0.0900%" height="15" fill="rgb(212,225,4)" fg:x="70854" fg:w="136"/><text x="47.1539%" y="751.50"></text></g><g><title>exc_page_fault (135 samples, 0.09%)</title><rect x="46.9046%" y="725" width="0.0894%" height="15" fill="rgb(233,96,42)" fg:x="70855" fg:w="135"/><text x="47.1546%" y="735.50"></text></g><g><title>do_user_addr_fault (133 samples, 0.09%)</title><rect x="46.9059%" y="709" width="0.0880%" height="15" fill="rgb(229,21,32)" fg:x="70857" fg:w="133"/><text x="47.1559%" y="719.50"></text></g><g><title>elf_machine_rela (362 samples, 0.24%)</title><rect x="46.7636%" y="757" width="0.2396%" height="15" fill="rgb(226,216,24)" fg:x="70642" fg:w="362"/><text x="47.0136%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (386 samples, 0.26%)</title><rect x="46.7543%" y="773" width="0.2555%" height="15" fill="rgb(221,163,17)" fg:x="70628" fg:w="386"/><text x="47.0043%" y="783.50"></text></g><g><title>_dl_relocate_object (406 samples, 0.27%)</title><rect x="46.7431%" y="789" width="0.2688%" height="15" fill="rgb(216,216,42)" fg:x="70611" fg:w="406"/><text x="46.9931%" y="799.50"></text></g><g><title>_dl_start_final (514 samples, 0.34%)</title><rect x="46.6775%" y="837" width="0.3403%" height="15" fill="rgb(240,118,7)" fg:x="70512" fg:w="514"/><text x="46.9275%" y="847.50"></text></g><g><title>_dl_sysdep_start (514 samples, 0.34%)</title><rect x="46.6775%" y="821" width="0.3403%" height="15" fill="rgb(221,67,37)" fg:x="70512" fg:w="514"/><text x="46.9275%" y="831.50"></text></g><g><title>[ld-2.31.so] (513 samples, 0.34%)</title><rect x="46.6782%" y="805" width="0.3396%" height="15" fill="rgb(241,32,44)" fg:x="70513" fg:w="513"/><text x="46.9282%" y="815.50"></text></g><g><title>_dl_start (516 samples, 0.34%)</title><rect x="46.6775%" y="853" width="0.3416%" height="15" fill="rgb(235,204,43)" fg:x="70512" fg:w="516"/><text x="46.9275%" y="863.50"></text></g><g><title>_start (1,684 samples, 1.11%)</title><rect x="45.9070%" y="869" width="1.1148%" height="15" fill="rgb(213,116,10)" fg:x="69348" fg:w="1684"/><text x="46.1570%" y="879.50"></text></g><g><title>asm_exc_page_fault (187 samples, 0.12%)</title><rect x="47.0218%" y="869" width="0.1238%" height="15" fill="rgb(239,15,48)" fg:x="71032" fg:w="187"/><text x="47.2718%" y="879.50"></text></g><g><title>tlb_finish_mmu (35 samples, 0.02%)</title><rect x="47.1654%" y="757" width="0.0232%" height="15" fill="rgb(207,123,36)" fg:x="71249" fg:w="35"/><text x="47.4154%" y="767.50"></text></g><g><title>release_pages (29 samples, 0.02%)</title><rect x="47.1694%" y="741" width="0.0192%" height="15" fill="rgb(209,103,30)" fg:x="71255" fg:w="29"/><text x="47.4194%" y="751.50"></text></g><g><title>__mod_lruvec_state (24 samples, 0.02%)</title><rect x="47.2905%" y="709" width="0.0159%" height="15" fill="rgb(238,100,19)" fg:x="71438" fg:w="24"/><text x="47.5405%" y="719.50"></text></g><g><title>__mod_memcg_lruvec_state (33 samples, 0.02%)</title><rect x="47.3064%" y="709" width="0.0218%" height="15" fill="rgb(244,30,14)" fg:x="71462" fg:w="33"/><text x="47.5564%" y="719.50"></text></g><g><title>__mod_memcg_state.part.0 (16 samples, 0.01%)</title><rect x="47.3177%" y="693" width="0.0106%" height="15" fill="rgb(249,174,6)" fg:x="71479" fg:w="16"/><text x="47.5677%" y="703.50"></text></g><g><title>page_remove_rmap (127 samples, 0.08%)</title><rect x="47.2521%" y="725" width="0.0841%" height="15" fill="rgb(235,213,41)" fg:x="71380" fg:w="127"/><text x="47.5021%" y="735.50"></text></g><g><title>free_pages_and_swap_cache (21 samples, 0.01%)</title><rect x="47.3375%" y="709" width="0.0139%" height="15" fill="rgb(213,118,6)" fg:x="71509" fg:w="21"/><text x="47.5875%" y="719.50"></text></g><g><title>tlb_flush_mmu (72 samples, 0.05%)</title><rect x="47.3375%" y="725" width="0.0477%" height="15" fill="rgb(235,44,51)" fg:x="71509" fg:w="72"/><text x="47.5875%" y="735.50"></text></g><g><title>release_pages (51 samples, 0.03%)</title><rect x="47.3514%" y="709" width="0.0338%" height="15" fill="rgb(217,9,53)" fg:x="71530" fg:w="51"/><text x="47.6014%" y="719.50"></text></g><g><title>unmap_page_range (309 samples, 0.20%)</title><rect x="47.1886%" y="741" width="0.2046%" height="15" fill="rgb(237,172,34)" fg:x="71284" fg:w="309"/><text x="47.4386%" y="751.50"></text></g><g><title>mmput (361 samples, 0.24%)</title><rect x="47.1555%" y="789" width="0.2390%" height="15" fill="rgb(206,206,11)" fg:x="71234" fg:w="361"/><text x="47.4055%" y="799.50"></text></g><g><title>exit_mmap (361 samples, 0.24%)</title><rect x="47.1555%" y="773" width="0.2390%" height="15" fill="rgb(214,149,29)" fg:x="71234" fg:w="361"/><text x="47.4055%" y="783.50"></text></g><g><title>unmap_vmas (311 samples, 0.21%)</title><rect x="47.1886%" y="757" width="0.2059%" height="15" fill="rgb(208,123,3)" fg:x="71284" fg:w="311"/><text x="47.4386%" y="767.50"></text></g><g><title>__x64_sys_exit_group (368 samples, 0.24%)</title><rect x="47.1548%" y="837" width="0.2436%" height="15" fill="rgb(229,126,4)" fg:x="71233" fg:w="368"/><text x="47.4048%" y="847.50"></text></g><g><title>do_group_exit (368 samples, 0.24%)</title><rect x="47.1548%" y="821" width="0.2436%" height="15" fill="rgb(222,92,36)" fg:x="71233" fg:w="368"/><text x="47.4048%" y="831.50"></text></g><g><title>do_exit (368 samples, 0.24%)</title><rect x="47.1548%" y="805" width="0.2436%" height="15" fill="rgb(216,39,41)" fg:x="71233" fg:w="368"/><text x="47.4048%" y="815.50"></text></g><g><title>do_syscall_64 (383 samples, 0.25%)</title><rect x="47.1489%" y="853" width="0.2535%" height="15" fill="rgb(253,127,28)" fg:x="71224" fg:w="383"/><text x="47.3989%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (384 samples, 0.25%)</title><rect x="47.1489%" y="869" width="0.2542%" height="15" fill="rgb(249,152,51)" fg:x="71224" fg:w="384"/><text x="47.3989%" y="879.50"></text></g><g><title>clang (4,761 samples, 3.15%)</title><rect x="44.2606%" y="885" width="3.1517%" height="15" fill="rgb(209,123,42)" fg:x="66861" fg:w="4761"/><text x="44.5106%" y="895.50">cla..</text></g><g><title>JVM_Sleep (31 samples, 0.02%)</title><rect x="47.4150%" y="853" width="0.0205%" height="15" fill="rgb(241,118,22)" fg:x="71626" fg:w="31"/><text x="47.6650%" y="863.50"></text></g><g><title>os::sleep (30 samples, 0.02%)</title><rect x="47.4156%" y="837" width="0.0199%" height="15" fill="rgb(208,25,7)" fg:x="71627" fg:w="30"/><text x="47.6656%" y="847.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.02%)</title><rect x="47.4163%" y="821" width="0.0192%" height="15" fill="rgb(243,144,39)" fg:x="71628" fg:w="29"/><text x="47.6663%" y="831.50"></text></g><g><title>__pthread_cond_timedwait (29 samples, 0.02%)</title><rect x="47.4163%" y="805" width="0.0192%" height="15" fill="rgb(250,50,5)" fg:x="71628" fg:w="29"/><text x="47.6663%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.02%)</title><rect x="47.4163%" y="789" width="0.0192%" height="15" fill="rgb(207,67,11)" fg:x="71628" fg:w="29"/><text x="47.6663%" y="799.50"></text></g><g><title>futex_abstimed_wait_cancelable (28 samples, 0.02%)</title><rect x="47.4170%" y="773" width="0.0185%" height="15" fill="rgb(245,204,40)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="47.4170%" y="757" width="0.0185%" height="15" fill="rgb(238,228,24)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="767.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="47.4170%" y="741" width="0.0185%" height="15" fill="rgb(217,116,22)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="751.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.02%)</title><rect x="47.4170%" y="725" width="0.0185%" height="15" fill="rgb(234,98,12)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="735.50"></text></g><g><title>do_futex (28 samples, 0.02%)</title><rect x="47.4170%" y="709" width="0.0185%" height="15" fill="rgb(242,170,50)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="719.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="47.4170%" y="693" width="0.0185%" height="15" fill="rgb(235,7,5)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="703.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="47.4170%" y="677" width="0.0185%" height="15" fill="rgb(241,114,28)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="687.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="47.4170%" y="661" width="0.0185%" height="15" fill="rgb(246,112,42)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="671.50"></text></g><g><title>__schedule (28 samples, 0.02%)</title><rect x="47.4170%" y="645" width="0.0185%" height="15" fill="rgb(248,228,14)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="655.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="47.4170%" y="629" width="0.0185%" height="15" fill="rgb(208,133,18)" fg:x="71629" fg:w="28"/><text x="47.6670%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="47.4176%" y="613" width="0.0179%" height="15" fill="rgb(207,35,49)" fg:x="71630" fg:w="27"/><text x="47.6676%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.02%)</title><rect x="47.4183%" y="597" width="0.0172%" height="15" fill="rgb(205,68,36)" fg:x="71631" fg:w="26"/><text x="47.6683%" y="607.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="47.4183%" y="581" width="0.0172%" height="15" fill="rgb(245,62,40)" fg:x="71631" fg:w="26"/><text x="47.6683%" y="591.50"></text></g><g><title>[perf-983083.map] (36 samples, 0.02%)</title><rect x="47.4123%" y="869" width="0.0238%" height="15" fill="rgb(228,27,24)" fg:x="71622" fg:w="36"/><text x="47.6623%" y="879.50"></text></g><g><title>cli-update-thre (37 samples, 0.02%)</title><rect x="47.4123%" y="885" width="0.0245%" height="15" fill="rgb(253,19,12)" fg:x="71622" fg:w="37"/><text x="47.6623%" y="895.50"></text></g><g><title>[perf-983083.map] (115 samples, 0.08%)</title><rect x="47.4395%" y="869" width="0.0761%" height="15" fill="rgb(232,28,20)" fg:x="71663" fg:w="115"/><text x="47.6895%" y="879.50"></text></g><g><title>__GI___clone (28 samples, 0.02%)</title><rect x="47.5156%" y="869" width="0.0185%" height="15" fill="rgb(218,35,51)" fg:x="71778" fg:w="28"/><text x="47.7656%" y="879.50"></text></g><g><title>find-action-loo (148 samples, 0.10%)</title><rect x="47.4368%" y="885" width="0.0980%" height="15" fill="rgb(212,90,40)" fg:x="71659" fg:w="148"/><text x="47.6868%" y="895.50"></text></g><g><title>[perf-983083.map] (33 samples, 0.02%)</title><rect x="47.5374%" y="869" width="0.0218%" height="15" fill="rgb(220,172,12)" fg:x="71811" fg:w="33"/><text x="47.7874%" y="879.50"></text></g><g><title>ret_from_fork (20 samples, 0.01%)</title><rect x="47.5606%" y="853" width="0.0132%" height="15" fill="rgb(226,159,20)" fg:x="71846" fg:w="20"/><text x="47.8106%" y="863.50"></text></g><g><title>schedule_tail (20 samples, 0.01%)</title><rect x="47.5606%" y="837" width="0.0132%" height="15" fill="rgb(234,205,16)" fg:x="71846" fg:w="20"/><text x="47.8106%" y="847.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="47.5606%" y="821" width="0.0132%" height="15" fill="rgb(207,9,39)" fg:x="71846" fg:w="20"/><text x="47.8106%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="47.5606%" y="805" width="0.0132%" height="15" fill="rgb(249,143,15)" fg:x="71846" fg:w="20"/><text x="47.8106%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="47.5613%" y="789" width="0.0126%" height="15" fill="rgb(253,133,29)" fg:x="71847" fg:w="19"/><text x="47.8113%" y="799.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="47.5619%" y="773" width="0.0119%" height="15" fill="rgb(221,187,0)" fg:x="71848" fg:w="18"/><text x="47.8119%" y="783.50"></text></g><g><title>Monitor::wait (16 samples, 0.01%)</title><rect x="47.5745%" y="821" width="0.0106%" height="15" fill="rgb(205,204,26)" fg:x="71867" fg:w="16"/><text x="47.8245%" y="831.50"></text></g><g><title>Monitor::IWait (16 samples, 0.01%)</title><rect x="47.5745%" y="805" width="0.0106%" height="15" fill="rgb(224,68,54)" fg:x="71867" fg:w="16"/><text x="47.8245%" y="815.50"></text></g><g><title>globbing_pool-0 (82 samples, 0.05%)</title><rect x="47.5348%" y="885" width="0.0543%" height="15" fill="rgb(209,67,4)" fg:x="71807" fg:w="82"/><text x="47.7848%" y="895.50"></text></g><g><title>__GI___clone (45 samples, 0.03%)</title><rect x="47.5593%" y="869" width="0.0298%" height="15" fill="rgb(228,229,18)" fg:x="71844" fg:w="45"/><text x="47.8093%" y="879.50"></text></g><g><title>start_thread (23 samples, 0.02%)</title><rect x="47.5738%" y="853" width="0.0152%" height="15" fill="rgb(231,89,13)" fg:x="71866" fg:w="23"/><text x="47.8238%" y="863.50"></text></g><g><title>thread_native_entry (22 samples, 0.01%)</title><rect x="47.5745%" y="837" width="0.0146%" height="15" fill="rgb(210,182,18)" fg:x="71867" fg:w="22"/><text x="47.8245%" y="847.50"></text></g><g><title>Monitor::lock (27 samples, 0.02%)</title><rect x="47.6559%" y="837" width="0.0179%" height="15" fill="rgb(240,105,2)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="847.50"></text></g><g><title>Monitor::ILock (27 samples, 0.02%)</title><rect x="47.6559%" y="821" width="0.0179%" height="15" fill="rgb(207,170,50)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="831.50"></text></g><g><title>os::PlatformEvent::park (27 samples, 0.02%)</title><rect x="47.6559%" y="805" width="0.0179%" height="15" fill="rgb(232,133,24)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="815.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.02%)</title><rect x="47.6559%" y="789" width="0.0179%" height="15" fill="rgb(235,166,27)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="47.6559%" y="773" width="0.0179%" height="15" fill="rgb(209,19,13)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="783.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.02%)</title><rect x="47.6559%" y="757" width="0.0179%" height="15" fill="rgb(226,79,39)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="47.6559%" y="741" width="0.0179%" height="15" fill="rgb(222,163,10)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="751.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="47.6559%" y="725" width="0.0179%" height="15" fill="rgb(214,44,19)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="735.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="47.6559%" y="709" width="0.0179%" height="15" fill="rgb(210,217,13)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="719.50"></text></g><g><title>do_futex (27 samples, 0.02%)</title><rect x="47.6559%" y="693" width="0.0179%" height="15" fill="rgb(237,61,54)" fg:x="71990" fg:w="27"/><text x="47.9059%" y="703.50"></text></g><g><title>futex_wait (26 samples, 0.02%)</title><rect x="47.6566%" y="677" width="0.0172%" height="15" fill="rgb(226,184,24)" fg:x="71991" fg:w="26"/><text x="47.9066%" y="687.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.02%)</title><rect x="47.6566%" y="661" width="0.0172%" height="15" fill="rgb(223,226,4)" fg:x="71991" fg:w="26"/><text x="47.9066%" y="671.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="47.6566%" y="645" width="0.0172%" height="15" fill="rgb(210,26,41)" fg:x="71991" fg:w="26"/><text x="47.9066%" y="655.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="47.6566%" y="629" width="0.0172%" height="15" fill="rgb(220,221,6)" fg:x="71991" fg:w="26"/><text x="47.9066%" y="639.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="47.6566%" y="613" width="0.0172%" height="15" fill="rgb(225,89,49)" fg:x="71991" fg:w="26"/><text x="47.9066%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="47.6573%" y="597" width="0.0165%" height="15" fill="rgb(218,70,45)" fg:x="71992" fg:w="25"/><text x="47.9073%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.02%)</title><rect x="47.6573%" y="581" width="0.0165%" height="15" fill="rgb(238,166,21)" fg:x="71992" fg:w="25"/><text x="47.9073%" y="591.50"></text></g><g><title>native_write_msr (25 samples, 0.02%)</title><rect x="47.6573%" y="565" width="0.0165%" height="15" fill="rgb(224,141,44)" fg:x="71992" fg:w="25"/><text x="47.9073%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="47.6745%" y="581" width="0.0165%" height="15" fill="rgb(230,12,49)" fg:x="72018" fg:w="25"/><text x="47.9245%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.02%)</title><rect x="47.6745%" y="565" width="0.0165%" height="15" fill="rgb(212,174,12)" fg:x="72018" fg:w="25"/><text x="47.9245%" y="575.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="47.6751%" y="549" width="0.0159%" height="15" fill="rgb(246,67,9)" fg:x="72019" fg:w="24"/><text x="47.9251%" y="559.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="47.6745%" y="709" width="0.0172%" height="15" fill="rgb(239,35,23)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="719.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.02%)</title><rect x="47.6745%" y="693" width="0.0172%" height="15" fill="rgb(211,167,0)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="703.50"></text></g><g><title>do_futex (26 samples, 0.02%)</title><rect x="47.6745%" y="677" width="0.0172%" height="15" fill="rgb(225,119,45)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="687.50"></text></g><g><title>futex_wait (26 samples, 0.02%)</title><rect x="47.6745%" y="661" width="0.0172%" height="15" fill="rgb(210,162,6)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="671.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.02%)</title><rect x="47.6745%" y="645" width="0.0172%" height="15" fill="rgb(208,118,35)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="655.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="47.6745%" y="629" width="0.0172%" height="15" fill="rgb(239,4,53)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="639.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="47.6745%" y="613" width="0.0172%" height="15" fill="rgb(213,130,21)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="623.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="47.6745%" y="597" width="0.0172%" height="15" fill="rgb(235,148,0)" fg:x="72018" fg:w="26"/><text x="47.9245%" y="607.50"></text></g><g><title>Monitor::wait (28 samples, 0.02%)</title><rect x="47.6738%" y="821" width="0.0185%" height="15" fill="rgb(244,224,18)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="831.50"></text></g><g><title>Monitor::IWait (28 samples, 0.02%)</title><rect x="47.6738%" y="805" width="0.0185%" height="15" fill="rgb(211,214,4)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="815.50"></text></g><g><title>os::PlatformEvent::park (28 samples, 0.02%)</title><rect x="47.6738%" y="789" width="0.0185%" height="15" fill="rgb(206,119,25)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="799.50"></text></g><g><title>__pthread_cond_wait (28 samples, 0.02%)</title><rect x="47.6738%" y="773" width="0.0185%" height="15" fill="rgb(243,93,47)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (28 samples, 0.02%)</title><rect x="47.6738%" y="757" width="0.0185%" height="15" fill="rgb(224,194,6)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="767.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.02%)</title><rect x="47.6738%" y="741" width="0.0185%" height="15" fill="rgb(243,229,6)" fg:x="72017" fg:w="28"/><text x="47.9238%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="47.6745%" y="725" width="0.0179%" height="15" fill="rgb(207,23,50)" fg:x="72018" fg:w="27"/><text x="47.9245%" y="735.50"></text></g><g><title>JVM_StartThread (64 samples, 0.04%)</title><rect x="47.6513%" y="853" width="0.0424%" height="15" fill="rgb(253,192,32)" fg:x="71983" fg:w="64"/><text x="47.9013%" y="863.50"></text></g><g><title>os::create_thread (30 samples, 0.02%)</title><rect x="47.6738%" y="837" width="0.0199%" height="15" fill="rgb(213,21,6)" fg:x="72017" fg:w="30"/><text x="47.9238%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.02%)</title><rect x="47.6996%" y="629" width="0.0172%" height="15" fill="rgb(243,151,13)" fg:x="72056" fg:w="26"/><text x="47.9496%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.02%)</title><rect x="47.6996%" y="613" width="0.0172%" height="15" fill="rgb(233,165,41)" fg:x="72056" fg:w="26"/><text x="47.9496%" y="623.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="47.6996%" y="597" width="0.0172%" height="15" fill="rgb(246,176,45)" fg:x="72056" fg:w="26"/><text x="47.9496%" y="607.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="47.6996%" y="645" width="0.0185%" height="15" fill="rgb(217,170,52)" fg:x="72056" fg:w="28"/><text x="47.9496%" y="655.50"></text></g><g><title>__pthread_cond_wait (31 samples, 0.02%)</title><rect x="47.6990%" y="821" width="0.0205%" height="15" fill="rgb(214,203,54)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (31 samples, 0.02%)</title><rect x="47.6990%" y="805" width="0.0205%" height="15" fill="rgb(248,215,49)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="815.50"></text></g><g><title>futex_wait_cancelable (31 samples, 0.02%)</title><rect x="47.6990%" y="789" width="0.0205%" height="15" fill="rgb(208,46,10)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="47.6990%" y="773" width="0.0205%" height="15" fill="rgb(254,5,31)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="783.50"></text></g><g><title>do_syscall_64 (31 samples, 0.02%)</title><rect x="47.6990%" y="757" width="0.0205%" height="15" fill="rgb(222,104,33)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="767.50"></text></g><g><title>__x64_sys_futex (31 samples, 0.02%)</title><rect x="47.6990%" y="741" width="0.0205%" height="15" fill="rgb(248,49,16)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="751.50"></text></g><g><title>do_futex (31 samples, 0.02%)</title><rect x="47.6990%" y="725" width="0.0205%" height="15" fill="rgb(232,198,41)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="735.50"></text></g><g><title>futex_wait (31 samples, 0.02%)</title><rect x="47.6990%" y="709" width="0.0205%" height="15" fill="rgb(214,125,3)" fg:x="72055" fg:w="31"/><text x="47.9490%" y="719.50"></text></g><g><title>futex_wait_queue_me (30 samples, 0.02%)</title><rect x="47.6996%" y="693" width="0.0199%" height="15" fill="rgb(229,220,28)" fg:x="72056" fg:w="30"/><text x="47.9496%" y="703.50"></text></g><g><title>schedule (30 samples, 0.02%)</title><rect x="47.6996%" y="677" width="0.0199%" height="15" fill="rgb(222,64,37)" fg:x="72056" fg:w="30"/><text x="47.9496%" y="687.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="47.6996%" y="661" width="0.0199%" height="15" fill="rgb(249,184,13)" fg:x="72056" fg:w="30"/><text x="47.9496%" y="671.50"></text></g><g><title>Unsafe_Park (40 samples, 0.03%)</title><rect x="47.6937%" y="853" width="0.0265%" height="15" fill="rgb(252,176,6)" fg:x="72047" fg:w="40"/><text x="47.9437%" y="863.50"></text></g><g><title>Parker::park (40 samples, 0.03%)</title><rect x="47.6937%" y="837" width="0.0265%" height="15" fill="rgb(228,153,7)" fg:x="72047" fg:w="40"/><text x="47.9437%" y="847.50"></text></g><g><title>[perf-983083.map] (190 samples, 0.13%)</title><rect x="47.5964%" y="869" width="0.1258%" height="15" fill="rgb(242,193,5)" fg:x="71900" fg:w="190"/><text x="47.8464%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.02%)</title><rect x="47.7294%" y="805" width="0.0245%" height="15" fill="rgb(232,140,9)" fg:x="72101" fg:w="37"/><text x="47.9794%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="47.7294%" y="789" width="0.0245%" height="15" fill="rgb(213,222,16)" fg:x="72101" fg:w="37"/><text x="47.9794%" y="799.50"></text></g><g><title>native_write_msr (37 samples, 0.02%)</title><rect x="47.7294%" y="773" width="0.0245%" height="15" fill="rgb(222,75,50)" fg:x="72101" fg:w="37"/><text x="47.9794%" y="783.50"></text></g><g><title>ret_from_fork (42 samples, 0.03%)</title><rect x="47.7268%" y="853" width="0.0278%" height="15" fill="rgb(205,180,2)" fg:x="72097" fg:w="42"/><text x="47.9768%" y="863.50"></text></g><g><title>schedule_tail (40 samples, 0.03%)</title><rect x="47.7281%" y="837" width="0.0265%" height="15" fill="rgb(216,34,7)" fg:x="72099" fg:w="40"/><text x="47.9781%" y="847.50"></text></g><g><title>finish_task_switch (39 samples, 0.03%)</title><rect x="47.7287%" y="821" width="0.0258%" height="15" fill="rgb(253,16,32)" fg:x="72100" fg:w="39"/><text x="47.9787%" y="831.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="47.7559%" y="709" width="0.0232%" height="15" fill="rgb(208,97,28)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="719.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="47.7559%" y="693" width="0.0232%" height="15" fill="rgb(225,92,11)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="703.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="47.7559%" y="677" width="0.0232%" height="15" fill="rgb(243,38,12)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="687.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="47.7559%" y="661" width="0.0232%" height="15" fill="rgb(208,139,16)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="671.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="47.7559%" y="645" width="0.0232%" height="15" fill="rgb(227,24,9)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="655.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="47.7559%" y="629" width="0.0232%" height="15" fill="rgb(206,62,11)" fg:x="72141" fg:w="35"/><text x="48.0059%" y="639.50"></text></g><g><title>__schedule (34 samples, 0.02%)</title><rect x="47.7566%" y="613" width="0.0225%" height="15" fill="rgb(228,134,27)" fg:x="72142" fg:w="34"/><text x="48.0066%" y="623.50"></text></g><g><title>finish_task_switch (34 samples, 0.02%)</title><rect x="47.7566%" y="597" width="0.0225%" height="15" fill="rgb(205,55,33)" fg:x="72142" fg:w="34"/><text x="48.0066%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="47.7566%" y="581" width="0.0225%" height="15" fill="rgb(243,75,43)" fg:x="72142" fg:w="34"/><text x="48.0066%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.02%)</title><rect x="47.7585%" y="565" width="0.0205%" height="15" fill="rgb(223,27,42)" fg:x="72145" fg:w="31"/><text x="48.0085%" y="575.50"></text></g><g><title>native_write_msr (31 samples, 0.02%)</title><rect x="47.7585%" y="549" width="0.0205%" height="15" fill="rgb(232,189,33)" fg:x="72145" fg:w="31"/><text x="48.0085%" y="559.50"></text></g><g><title>__pthread_cond_wait (36 samples, 0.02%)</title><rect x="47.7559%" y="773" width="0.0238%" height="15" fill="rgb(210,9,39)" fg:x="72141" fg:w="36"/><text x="48.0059%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.02%)</title><rect x="47.7559%" y="757" width="0.0238%" height="15" fill="rgb(242,85,26)" fg:x="72141" fg:w="36"/><text x="48.0059%" y="767.50"></text></g><g><title>futex_wait_cancelable (36 samples, 0.02%)</title><rect x="47.7559%" y="741" width="0.0238%" height="15" fill="rgb(248,44,4)" fg:x="72141" fg:w="36"/><text x="48.0059%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="47.7559%" y="725" width="0.0238%" height="15" fill="rgb(250,96,46)" fg:x="72141" fg:w="36"/><text x="48.0059%" y="735.50"></text></g><g><title>Monitor::wait (38 samples, 0.03%)</title><rect x="47.7552%" y="821" width="0.0252%" height="15" fill="rgb(229,116,26)" fg:x="72140" fg:w="38"/><text x="48.0052%" y="831.50"></text></g><g><title>Monitor::IWait (38 samples, 0.03%)</title><rect x="47.7552%" y="805" width="0.0252%" height="15" fill="rgb(246,94,34)" fg:x="72140" fg:w="38"/><text x="48.0052%" y="815.50"></text></g><g><title>os::PlatformEvent::park (37 samples, 0.02%)</title><rect x="47.7559%" y="789" width="0.0245%" height="15" fill="rgb(251,73,21)" fg:x="72141" fg:w="37"/><text x="48.0059%" y="799.50"></text></g><g><title>__GI___clone (99 samples, 0.07%)</title><rect x="47.7228%" y="869" width="0.0655%" height="15" fill="rgb(254,121,25)" fg:x="72091" fg:w="99"/><text x="47.9728%" y="879.50"></text></g><g><title>start_thread (51 samples, 0.03%)</title><rect x="47.7546%" y="853" width="0.0338%" height="15" fill="rgb(215,161,49)" fg:x="72139" fg:w="51"/><text x="48.0046%" y="863.50"></text></g><g><title>thread_native_entry (50 samples, 0.03%)</title><rect x="47.7552%" y="837" width="0.0331%" height="15" fill="rgb(221,43,13)" fg:x="72140" fg:w="50"/><text x="48.0052%" y="847.50"></text></g><g><title>globbing_pool-1 (302 samples, 0.20%)</title><rect x="47.5891%" y="885" width="0.1999%" height="15" fill="rgb(249,5,37)" fg:x="71889" fg:w="302"/><text x="47.8391%" y="895.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (17 samples, 0.01%)</title><rect x="47.8380%" y="853" width="0.0113%" height="15" fill="rgb(226,25,44)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (17 samples, 0.01%)</title><rect x="47.8380%" y="837" width="0.0113%" height="15" fill="rgb(238,189,16)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="847.50"></text></g><g><title>TieredThresholdPolicy::event (17 samples, 0.01%)</title><rect x="47.8380%" y="821" width="0.0113%" height="15" fill="rgb(251,186,8)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (17 samples, 0.01%)</title><rect x="47.8380%" y="805" width="0.0113%" height="15" fill="rgb(254,34,31)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="815.50"></text></g><g><title>TieredThresholdPolicy::compile (17 samples, 0.01%)</title><rect x="47.8380%" y="789" width="0.0113%" height="15" fill="rgb(225,215,27)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="799.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (17 samples, 0.01%)</title><rect x="47.8380%" y="773" width="0.0113%" height="15" fill="rgb(221,192,48)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="783.50"></text></g><g><title>CompileBroker::compile_method (17 samples, 0.01%)</title><rect x="47.8380%" y="757" width="0.0113%" height="15" fill="rgb(219,137,20)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="767.50"></text></g><g><title>CompileBroker::compile_method_base (17 samples, 0.01%)</title><rect x="47.8380%" y="741" width="0.0113%" height="15" fill="rgb(219,84,11)" fg:x="72265" fg:w="17"/><text x="48.0880%" y="751.50"></text></g><g><title>Monitor::lock (16 samples, 0.01%)</title><rect x="47.8386%" y="725" width="0.0106%" height="15" fill="rgb(224,10,23)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="735.50"></text></g><g><title>Monitor::ILock (16 samples, 0.01%)</title><rect x="47.8386%" y="709" width="0.0106%" height="15" fill="rgb(248,22,39)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="719.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="47.8386%" y="693" width="0.0106%" height="15" fill="rgb(212,154,20)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="703.50"></text></g><g><title>__pthread_cond_wait (16 samples, 0.01%)</title><rect x="47.8386%" y="677" width="0.0106%" height="15" fill="rgb(236,199,50)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="47.8386%" y="661" width="0.0106%" height="15" fill="rgb(211,9,17)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="671.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="47.8386%" y="645" width="0.0106%" height="15" fill="rgb(243,216,36)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="47.8386%" y="629" width="0.0106%" height="15" fill="rgb(250,2,10)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="639.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="47.8386%" y="613" width="0.0106%" height="15" fill="rgb(226,50,48)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="623.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="47.8386%" y="597" width="0.0106%" height="15" fill="rgb(243,81,16)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="607.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="47.8386%" y="581" width="0.0106%" height="15" fill="rgb(250,14,2)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="591.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="47.8386%" y="565" width="0.0106%" height="15" fill="rgb(233,135,29)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="575.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="47.8386%" y="549" width="0.0106%" height="15" fill="rgb(224,64,43)" fg:x="72266" fg:w="16"/><text x="48.0886%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.03%)</title><rect x="47.8558%" y="597" width="0.0338%" height="15" fill="rgb(238,84,13)" fg:x="72292" fg:w="51"/><text x="48.1058%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.03%)</title><rect x="47.8565%" y="581" width="0.0331%" height="15" fill="rgb(253,48,26)" fg:x="72293" fg:w="50"/><text x="48.1065%" y="591.50"></text></g><g><title>native_write_msr (50 samples, 0.03%)</title><rect x="47.8565%" y="565" width="0.0331%" height="15" fill="rgb(205,223,31)" fg:x="72293" fg:w="50"/><text x="48.1065%" y="575.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.04%)</title><rect x="47.8552%" y="661" width="0.0357%" height="15" fill="rgb(221,41,32)" fg:x="72291" fg:w="54"/><text x="48.1052%" y="671.50"></text></g><g><title>schedule (54 samples, 0.04%)</title><rect x="47.8552%" y="645" width="0.0357%" height="15" fill="rgb(213,158,31)" fg:x="72291" fg:w="54"/><text x="48.1052%" y="655.50"></text></g><g><title>__schedule (54 samples, 0.04%)</title><rect x="47.8552%" y="629" width="0.0357%" height="15" fill="rgb(245,126,43)" fg:x="72291" fg:w="54"/><text x="48.1052%" y="639.50"></text></g><g><title>finish_task_switch (53 samples, 0.04%)</title><rect x="47.8558%" y="613" width="0.0351%" height="15" fill="rgb(227,7,22)" fg:x="72292" fg:w="53"/><text x="48.1058%" y="623.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.04%)</title><rect x="47.8539%" y="789" width="0.0377%" height="15" fill="rgb(252,90,44)" fg:x="72289" fg:w="57"/><text x="48.1039%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.04%)</title><rect x="47.8539%" y="773" width="0.0377%" height="15" fill="rgb(253,91,0)" fg:x="72289" fg:w="57"/><text x="48.1039%" y="783.50"></text></g><g><title>futex_wait_cancelable (57 samples, 0.04%)</title><rect x="47.8539%" y="757" width="0.0377%" height="15" fill="rgb(252,175,49)" fg:x="72289" fg:w="57"/><text x="48.1039%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.04%)</title><rect x="47.8545%" y="741" width="0.0371%" height="15" fill="rgb(246,150,1)" fg:x="72290" fg:w="56"/><text x="48.1045%" y="751.50"></text></g><g><title>do_syscall_64 (56 samples, 0.04%)</title><rect x="47.8545%" y="725" width="0.0371%" height="15" fill="rgb(241,192,25)" fg:x="72290" fg:w="56"/><text x="48.1045%" y="735.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.04%)</title><rect x="47.8545%" y="709" width="0.0371%" height="15" fill="rgb(239,187,11)" fg:x="72290" fg:w="56"/><text x="48.1045%" y="719.50"></text></g><g><title>do_futex (56 samples, 0.04%)</title><rect x="47.8545%" y="693" width="0.0371%" height="15" fill="rgb(218,202,51)" fg:x="72290" fg:w="56"/><text x="48.1045%" y="703.50"></text></g><g><title>futex_wait (55 samples, 0.04%)</title><rect x="47.8552%" y="677" width="0.0364%" height="15" fill="rgb(225,176,8)" fg:x="72291" fg:w="55"/><text x="48.1052%" y="687.50"></text></g><g><title>Monitor::lock (60 samples, 0.04%)</title><rect x="47.8525%" y="837" width="0.0397%" height="15" fill="rgb(219,122,41)" fg:x="72287" fg:w="60"/><text x="48.1025%" y="847.50"></text></g><g><title>Monitor::ILock (60 samples, 0.04%)</title><rect x="47.8525%" y="821" width="0.0397%" height="15" fill="rgb(248,140,20)" fg:x="72287" fg:w="60"/><text x="48.1025%" y="831.50"></text></g><g><title>os::PlatformEvent::park (59 samples, 0.04%)</title><rect x="47.8532%" y="805" width="0.0391%" height="15" fill="rgb(245,41,37)" fg:x="72288" fg:w="59"/><text x="48.1032%" y="815.50"></text></g><g><title>Monitor::wait (17 samples, 0.01%)</title><rect x="47.8942%" y="821" width="0.0113%" height="15" fill="rgb(235,82,39)" fg:x="72350" fg:w="17"/><text x="48.1442%" y="831.50"></text></g><g><title>Monitor::IWait (17 samples, 0.01%)</title><rect x="47.8942%" y="805" width="0.0113%" height="15" fill="rgb(230,108,42)" fg:x="72350" fg:w="17"/><text x="48.1442%" y="815.50"></text></g><g><title>os::PlatformEvent::park (17 samples, 0.01%)</title><rect x="47.8942%" y="789" width="0.0113%" height="15" fill="rgb(215,150,50)" fg:x="72350" fg:w="17"/><text x="48.1442%" y="799.50"></text></g><g><title>JVM_StartThread (88 samples, 0.06%)</title><rect x="47.8492%" y="853" width="0.0583%" height="15" fill="rgb(233,212,5)" fg:x="72282" fg:w="88"/><text x="48.0992%" y="863.50"></text></g><g><title>os::create_thread (20 samples, 0.01%)</title><rect x="47.8942%" y="837" width="0.0132%" height="15" fill="rgb(245,80,22)" fg:x="72350" fg:w="20"/><text x="48.1442%" y="847.50"></text></g><g><title>Unsafe_Park (18 samples, 0.01%)</title><rect x="47.9081%" y="853" width="0.0119%" height="15" fill="rgb(238,129,16)" fg:x="72371" fg:w="18"/><text x="48.1581%" y="863.50"></text></g><g><title>Parker::park (18 samples, 0.01%)</title><rect x="47.9081%" y="837" width="0.0119%" height="15" fill="rgb(240,19,0)" fg:x="72371" fg:w="18"/><text x="48.1581%" y="847.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="47.9088%" y="821" width="0.0113%" height="15" fill="rgb(232,42,35)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="47.9088%" y="805" width="0.0113%" height="15" fill="rgb(223,130,24)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="815.50"></text></g><g><title>futex_wait_cancelable (17 samples, 0.01%)</title><rect x="47.9088%" y="789" width="0.0113%" height="15" fill="rgb(237,16,22)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="47.9088%" y="773" width="0.0113%" height="15" fill="rgb(248,192,20)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="783.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="47.9088%" y="757" width="0.0113%" height="15" fill="rgb(233,167,2)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="767.50"></text></g><g><title>__x64_sys_futex (17 samples, 0.01%)</title><rect x="47.9088%" y="741" width="0.0113%" height="15" fill="rgb(252,71,44)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="751.50"></text></g><g><title>do_futex (17 samples, 0.01%)</title><rect x="47.9088%" y="725" width="0.0113%" height="15" fill="rgb(238,37,47)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="735.50"></text></g><g><title>futex_wait (17 samples, 0.01%)</title><rect x="47.9088%" y="709" width="0.0113%" height="15" fill="rgb(214,202,54)" fg:x="72372" fg:w="17"/><text x="48.1588%" y="719.50"></text></g><g><title>[perf-983083.map] (195 samples, 0.13%)</title><rect x="47.7976%" y="869" width="0.1291%" height="15" fill="rgb(254,165,40)" fg:x="72204" fg:w="195"/><text x="48.0476%" y="879.50"></text></g><g><title>schedule_tail (43 samples, 0.03%)</title><rect x="47.9340%" y="837" width="0.0285%" height="15" fill="rgb(246,173,38)" fg:x="72410" fg:w="43"/><text x="48.1840%" y="847.50"></text></g><g><title>finish_task_switch (43 samples, 0.03%)</title><rect x="47.9340%" y="821" width="0.0285%" height="15" fill="rgb(215,3,27)" fg:x="72410" fg:w="43"/><text x="48.1840%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.03%)</title><rect x="47.9340%" y="805" width="0.0285%" height="15" fill="rgb(239,169,51)" fg:x="72410" fg:w="43"/><text x="48.1840%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.03%)</title><rect x="47.9340%" y="789" width="0.0285%" height="15" fill="rgb(212,5,25)" fg:x="72410" fg:w="43"/><text x="48.1840%" y="799.50"></text></g><g><title>native_write_msr (43 samples, 0.03%)</title><rect x="47.9340%" y="773" width="0.0285%" height="15" fill="rgb(243,45,17)" fg:x="72410" fg:w="43"/><text x="48.1840%" y="783.50"></text></g><g><title>ret_from_fork (49 samples, 0.03%)</title><rect x="47.9320%" y="853" width="0.0324%" height="15" fill="rgb(242,97,9)" fg:x="72407" fg:w="49"/><text x="48.1820%" y="863.50"></text></g><g><title>__GI___clone (73 samples, 0.05%)</title><rect x="47.9280%" y="869" width="0.0483%" height="15" fill="rgb(228,71,31)" fg:x="72401" fg:w="73"/><text x="48.1780%" y="879.50"></text></g><g><title>start_thread (18 samples, 0.01%)</title><rect x="47.9644%" y="853" width="0.0119%" height="15" fill="rgb(252,184,16)" fg:x="72456" fg:w="18"/><text x="48.2144%" y="863.50"></text></g><g><title>thread_native_entry (18 samples, 0.01%)</title><rect x="47.9644%" y="837" width="0.0119%" height="15" fill="rgb(236,169,46)" fg:x="72456" fg:w="18"/><text x="48.2144%" y="847.50"></text></g><g><title>globbing_pool-2 (284 samples, 0.19%)</title><rect x="47.7890%" y="885" width="0.1880%" height="15" fill="rgb(207,17,47)" fg:x="72191" fg:w="284"/><text x="48.0390%" y="895.50"></text></g><g><title>[libunix_jni.so] (18 samples, 0.01%)</title><rect x="47.9790%" y="869" width="0.0119%" height="15" fill="rgb(206,201,28)" fg:x="72478" fg:w="18"/><text x="48.2290%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.02%)</title><rect x="48.0465%" y="629" width="0.0212%" height="15" fill="rgb(224,184,23)" fg:x="72580" fg:w="32"/><text x="48.2965%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.02%)</title><rect x="48.0472%" y="613" width="0.0205%" height="15" fill="rgb(208,139,48)" fg:x="72581" fg:w="31"/><text x="48.2972%" y="623.50"></text></g><g><title>native_write_msr (31 samples, 0.02%)</title><rect x="48.0472%" y="597" width="0.0205%" height="15" fill="rgb(208,130,10)" fg:x="72581" fg:w="31"/><text x="48.2972%" y="607.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="48.0458%" y="757" width="0.0238%" height="15" fill="rgb(211,213,45)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="767.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="48.0458%" y="741" width="0.0238%" height="15" fill="rgb(235,100,30)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="751.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="48.0458%" y="725" width="0.0238%" height="15" fill="rgb(206,144,31)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="735.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="48.0458%" y="709" width="0.0238%" height="15" fill="rgb(224,200,26)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="719.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.02%)</title><rect x="48.0458%" y="693" width="0.0238%" height="15" fill="rgb(247,104,53)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="703.50"></text></g><g><title>schedule (36 samples, 0.02%)</title><rect x="48.0458%" y="677" width="0.0238%" height="15" fill="rgb(220,14,17)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="687.50"></text></g><g><title>__schedule (36 samples, 0.02%)</title><rect x="48.0458%" y="661" width="0.0238%" height="15" fill="rgb(230,140,40)" fg:x="72579" fg:w="36"/><text x="48.2958%" y="671.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="48.0465%" y="645" width="0.0232%" height="15" fill="rgb(229,2,41)" fg:x="72580" fg:w="35"/><text x="48.2965%" y="655.50"></text></g><g><title>__pthread_cond_wait (38 samples, 0.03%)</title><rect x="48.0458%" y="821" width="0.0252%" height="15" fill="rgb(232,89,16)" fg:x="72579" fg:w="38"/><text x="48.2958%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (38 samples, 0.03%)</title><rect x="48.0458%" y="805" width="0.0252%" height="15" fill="rgb(247,59,52)" fg:x="72579" fg:w="38"/><text x="48.2958%" y="815.50"></text></g><g><title>futex_wait_cancelable (38 samples, 0.03%)</title><rect x="48.0458%" y="789" width="0.0252%" height="15" fill="rgb(226,110,21)" fg:x="72579" fg:w="38"/><text x="48.2958%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="48.0458%" y="773" width="0.0252%" height="15" fill="rgb(224,176,43)" fg:x="72579" fg:w="38"/><text x="48.2958%" y="783.50"></text></g><g><title>Unsafe_Park (39 samples, 0.03%)</title><rect x="48.0458%" y="853" width="0.0258%" height="15" fill="rgb(221,73,6)" fg:x="72579" fg:w="39"/><text x="48.2958%" y="863.50"></text></g><g><title>Parker::park (39 samples, 0.03%)</title><rect x="48.0458%" y="837" width="0.0258%" height="15" fill="rgb(232,78,19)" fg:x="72579" fg:w="39"/><text x="48.2958%" y="847.50"></text></g><g><title>[perf-983083.map] (126 samples, 0.08%)</title><rect x="47.9909%" y="869" width="0.0834%" height="15" fill="rgb(233,112,48)" fg:x="72496" fg:w="126"/><text x="48.2409%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="48.0776%" y="805" width="0.0119%" height="15" fill="rgb(243,131,47)" fg:x="72627" fg:w="18"/><text x="48.3276%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="48.0776%" y="789" width="0.0119%" height="15" fill="rgb(226,51,1)" fg:x="72627" fg:w="18"/><text x="48.3276%" y="799.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="48.0776%" y="773" width="0.0119%" height="15" fill="rgb(247,58,7)" fg:x="72627" fg:w="18"/><text x="48.3276%" y="783.50"></text></g><g><title>ret_from_fork (21 samples, 0.01%)</title><rect x="48.0763%" y="853" width="0.0139%" height="15" fill="rgb(209,7,32)" fg:x="72625" fg:w="21"/><text x="48.3263%" y="863.50"></text></g><g><title>schedule_tail (19 samples, 0.01%)</title><rect x="48.0776%" y="837" width="0.0126%" height="15" fill="rgb(209,39,41)" fg:x="72627" fg:w="19"/><text x="48.3276%" y="847.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="48.0776%" y="821" width="0.0126%" height="15" fill="rgb(226,182,46)" fg:x="72627" fg:w="19"/><text x="48.3276%" y="831.50"></text></g><g><title>__GI___clone (26 samples, 0.02%)</title><rect x="48.0750%" y="869" width="0.0172%" height="15" fill="rgb(230,219,10)" fg:x="72623" fg:w="26"/><text x="48.3250%" y="879.50"></text></g><g><title>globbing_pool-3 (176 samples, 0.12%)</title><rect x="47.9770%" y="885" width="0.1165%" height="15" fill="rgb(227,175,30)" fg:x="72475" fg:w="176"/><text x="48.2270%" y="895.50"></text></g><g><title>[libunix_jni.so] (22 samples, 0.01%)</title><rect x="48.0935%" y="869" width="0.0146%" height="15" fill="rgb(217,2,50)" fg:x="72651" fg:w="22"/><text x="48.3435%" y="879.50"></text></g><g><title>JVM_StartThread (22 samples, 0.01%)</title><rect x="48.1379%" y="853" width="0.0146%" height="15" fill="rgb(229,160,0)" fg:x="72718" fg:w="22"/><text x="48.3879%" y="863.50"></text></g><g><title>[perf-983083.map] (77 samples, 0.05%)</title><rect x="48.1081%" y="869" width="0.0510%" height="15" fill="rgb(207,78,37)" fg:x="72673" fg:w="77"/><text x="48.3581%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="48.1617%" y="805" width="0.0119%" height="15" fill="rgb(225,57,0)" fg:x="72754" fg:w="18"/><text x="48.4117%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="48.1617%" y="789" width="0.0119%" height="15" fill="rgb(232,154,2)" fg:x="72754" fg:w="18"/><text x="48.4117%" y="799.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="48.1617%" y="773" width="0.0119%" height="15" fill="rgb(241,212,25)" fg:x="72754" fg:w="18"/><text x="48.4117%" y="783.50"></text></g><g><title>ret_from_fork (21 samples, 0.01%)</title><rect x="48.1617%" y="853" width="0.0139%" height="15" fill="rgb(226,69,20)" fg:x="72754" fg:w="21"/><text x="48.4117%" y="863.50"></text></g><g><title>schedule_tail (21 samples, 0.01%)</title><rect x="48.1617%" y="837" width="0.0139%" height="15" fill="rgb(247,184,54)" fg:x="72754" fg:w="21"/><text x="48.4117%" y="847.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="48.1617%" y="821" width="0.0139%" height="15" fill="rgb(210,145,0)" fg:x="72754" fg:w="21"/><text x="48.4117%" y="831.50"></text></g><g><title>globbing_pool-4 (126 samples, 0.08%)</title><rect x="48.0935%" y="885" width="0.0834%" height="15" fill="rgb(253,82,12)" fg:x="72651" fg:w="126"/><text x="48.3435%" y="895.50"></text></g><g><title>__GI___clone (26 samples, 0.02%)</title><rect x="48.1597%" y="869" width="0.0172%" height="15" fill="rgb(245,42,11)" fg:x="72751" fg:w="26"/><text x="48.4097%" y="879.50"></text></g><g><title>Monitor::lock (23 samples, 0.02%)</title><rect x="48.2107%" y="725" width="0.0152%" height="15" fill="rgb(219,147,32)" fg:x="72828" fg:w="23"/><text x="48.4607%" y="735.50"></text></g><g><title>Monitor::ILock (23 samples, 0.02%)</title><rect x="48.2107%" y="709" width="0.0152%" height="15" fill="rgb(246,12,7)" fg:x="72828" fg:w="23"/><text x="48.4607%" y="719.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.02%)</title><rect x="48.2107%" y="693" width="0.0152%" height="15" fill="rgb(243,50,9)" fg:x="72828" fg:w="23"/><text x="48.4607%" y="703.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.02%)</title><rect x="48.2107%" y="677" width="0.0152%" height="15" fill="rgb(219,149,6)" fg:x="72828" fg:w="23"/><text x="48.4607%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.02%)</title><rect x="48.2107%" y="661" width="0.0152%" height="15" fill="rgb(241,51,42)" fg:x="72828" fg:w="23"/><text x="48.4607%" y="671.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.01%)</title><rect x="48.2113%" y="645" width="0.0146%" height="15" fill="rgb(226,128,27)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="48.2113%" y="629" width="0.0146%" height="15" fill="rgb(244,144,4)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="639.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="48.2113%" y="613" width="0.0146%" height="15" fill="rgb(221,4,13)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="623.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.01%)</title><rect x="48.2113%" y="597" width="0.0146%" height="15" fill="rgb(208,170,28)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="607.50"></text></g><g><title>do_futex (22 samples, 0.01%)</title><rect x="48.2113%" y="581" width="0.0146%" height="15" fill="rgb(226,131,13)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="591.50"></text></g><g><title>futex_wait (22 samples, 0.01%)</title><rect x="48.2113%" y="565" width="0.0146%" height="15" fill="rgb(215,72,41)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="575.50"></text></g><g><title>futex_wait_queue_me (22 samples, 0.01%)</title><rect x="48.2113%" y="549" width="0.0146%" height="15" fill="rgb(243,108,20)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="559.50"></text></g><g><title>schedule (22 samples, 0.01%)</title><rect x="48.2113%" y="533" width="0.0146%" height="15" fill="rgb(230,189,17)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="543.50"></text></g><g><title>__schedule (22 samples, 0.01%)</title><rect x="48.2113%" y="517" width="0.0146%" height="15" fill="rgb(220,50,17)" fg:x="72829" fg:w="22"/><text x="48.4613%" y="527.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="48.2120%" y="501" width="0.0139%" height="15" fill="rgb(248,152,48)" fg:x="72830" fg:w="21"/><text x="48.4620%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="48.2120%" y="485" width="0.0139%" height="15" fill="rgb(244,91,11)" fg:x="72830" fg:w="21"/><text x="48.4620%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="48.2120%" y="469" width="0.0139%" height="15" fill="rgb(220,157,5)" fg:x="72830" fg:w="21"/><text x="48.4620%" y="479.50"></text></g><g><title>native_write_msr (21 samples, 0.01%)</title><rect x="48.2120%" y="453" width="0.0139%" height="15" fill="rgb(253,137,8)" fg:x="72830" fg:w="21"/><text x="48.4620%" y="463.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (25 samples, 0.02%)</title><rect x="48.2107%" y="853" width="0.0165%" height="15" fill="rgb(217,137,51)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (25 samples, 0.02%)</title><rect x="48.2107%" y="837" width="0.0165%" height="15" fill="rgb(218,209,53)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="847.50"></text></g><g><title>TieredThresholdPolicy::event (25 samples, 0.02%)</title><rect x="48.2107%" y="821" width="0.0165%" height="15" fill="rgb(249,137,25)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (25 samples, 0.02%)</title><rect x="48.2107%" y="805" width="0.0165%" height="15" fill="rgb(239,155,26)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="815.50"></text></g><g><title>TieredThresholdPolicy::compile (25 samples, 0.02%)</title><rect x="48.2107%" y="789" width="0.0165%" height="15" fill="rgb(227,85,46)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="799.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (25 samples, 0.02%)</title><rect x="48.2107%" y="773" width="0.0165%" height="15" fill="rgb(251,107,43)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="783.50"></text></g><g><title>CompileBroker::compile_method (25 samples, 0.02%)</title><rect x="48.2107%" y="757" width="0.0165%" height="15" fill="rgb(234,170,33)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="767.50"></text></g><g><title>CompileBroker::compile_method_base (25 samples, 0.02%)</title><rect x="48.2107%" y="741" width="0.0165%" height="15" fill="rgb(206,29,35)" fg:x="72828" fg:w="25"/><text x="48.4607%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="48.2292%" y="629" width="0.0258%" height="15" fill="rgb(227,138,25)" fg:x="72856" fg:w="39"/><text x="48.4792%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.03%)</title><rect x="48.2292%" y="613" width="0.0258%" height="15" fill="rgb(249,131,35)" fg:x="72856" fg:w="39"/><text x="48.4792%" y="623.50"></text></g><g><title>native_write_msr (39 samples, 0.03%)</title><rect x="48.2292%" y="597" width="0.0258%" height="15" fill="rgb(239,6,40)" fg:x="72856" fg:w="39"/><text x="48.4792%" y="607.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="48.2285%" y="645" width="0.0278%" height="15" fill="rgb(246,136,47)" fg:x="72855" fg:w="42"/><text x="48.4785%" y="655.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="48.2279%" y="757" width="0.0291%" height="15" fill="rgb(253,58,26)" fg:x="72854" fg:w="44"/><text x="48.4779%" y="767.50"></text></g><g><title>__x64_sys_futex (44 samples, 0.03%)</title><rect x="48.2279%" y="741" width="0.0291%" height="15" fill="rgb(237,141,10)" fg:x="72854" fg:w="44"/><text x="48.4779%" y="751.50"></text></g><g><title>do_futex (44 samples, 0.03%)</title><rect x="48.2279%" y="725" width="0.0291%" height="15" fill="rgb(234,156,12)" fg:x="72854" fg:w="44"/><text x="48.4779%" y="735.50"></text></g><g><title>futex_wait (44 samples, 0.03%)</title><rect x="48.2279%" y="709" width="0.0291%" height="15" fill="rgb(243,224,36)" fg:x="72854" fg:w="44"/><text x="48.4779%" y="719.50"></text></g><g><title>futex_wait_queue_me (43 samples, 0.03%)</title><rect x="48.2285%" y="693" width="0.0285%" height="15" fill="rgb(205,229,51)" fg:x="72855" fg:w="43"/><text x="48.4785%" y="703.50"></text></g><g><title>schedule (43 samples, 0.03%)</title><rect x="48.2285%" y="677" width="0.0285%" height="15" fill="rgb(223,189,4)" fg:x="72855" fg:w="43"/><text x="48.4785%" y="687.50"></text></g><g><title>__schedule (43 samples, 0.03%)</title><rect x="48.2285%" y="661" width="0.0285%" height="15" fill="rgb(249,167,54)" fg:x="72855" fg:w="43"/><text x="48.4785%" y="671.50"></text></g><g><title>__pthread_cond_wait (45 samples, 0.03%)</title><rect x="48.2279%" y="821" width="0.0298%" height="15" fill="rgb(218,34,28)" fg:x="72854" fg:w="45"/><text x="48.4779%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (45 samples, 0.03%)</title><rect x="48.2279%" y="805" width="0.0298%" height="15" fill="rgb(232,109,42)" fg:x="72854" fg:w="45"/><text x="48.4779%" y="815.50"></text></g><g><title>futex_wait_cancelable (45 samples, 0.03%)</title><rect x="48.2279%" y="789" width="0.0298%" height="15" fill="rgb(248,214,46)" fg:x="72854" fg:w="45"/><text x="48.4779%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.03%)</title><rect x="48.2279%" y="773" width="0.0298%" height="15" fill="rgb(244,216,40)" fg:x="72854" fg:w="45"/><text x="48.4779%" y="783.50"></text></g><g><title>Unsafe_Park (46 samples, 0.03%)</title><rect x="48.2279%" y="853" width="0.0305%" height="15" fill="rgb(231,226,31)" fg:x="72854" fg:w="46"/><text x="48.4779%" y="863.50"></text></g><g><title>Parker::park (46 samples, 0.03%)</title><rect x="48.2279%" y="837" width="0.0305%" height="15" fill="rgb(238,38,43)" fg:x="72854" fg:w="46"/><text x="48.4779%" y="847.50"></text></g><g><title>[perf-983083.map] (125 samples, 0.08%)</title><rect x="48.1829%" y="869" width="0.0827%" height="15" fill="rgb(208,88,43)" fg:x="72786" fg:w="125"/><text x="48.4329%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="48.2676%" y="805" width="0.0238%" height="15" fill="rgb(205,136,37)" fg:x="72914" fg:w="36"/><text x="48.5176%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="48.2676%" y="789" width="0.0238%" height="15" fill="rgb(237,34,14)" fg:x="72914" fg:w="36"/><text x="48.5176%" y="799.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="48.2676%" y="773" width="0.0238%" height="15" fill="rgb(236,193,44)" fg:x="72914" fg:w="36"/><text x="48.5176%" y="783.50"></text></g><g><title>schedule_tail (39 samples, 0.03%)</title><rect x="48.2669%" y="837" width="0.0258%" height="15" fill="rgb(231,48,10)" fg:x="72913" fg:w="39"/><text x="48.5169%" y="847.50"></text></g><g><title>finish_task_switch (38 samples, 0.03%)</title><rect x="48.2676%" y="821" width="0.0252%" height="15" fill="rgb(213,141,34)" fg:x="72914" fg:w="38"/><text x="48.5176%" y="831.50"></text></g><g><title>ret_from_fork (42 samples, 0.03%)</title><rect x="48.2663%" y="853" width="0.0278%" height="15" fill="rgb(249,130,34)" fg:x="72912" fg:w="42"/><text x="48.5163%" y="863.50"></text></g><g><title>globbing_pool-5 (181 samples, 0.12%)</title><rect x="48.1769%" y="885" width="0.1198%" height="15" fill="rgb(219,42,41)" fg:x="72777" fg:w="181"/><text x="48.4269%" y="895.50"></text></g><g><title>__GI___clone (47 samples, 0.03%)</title><rect x="48.2656%" y="869" width="0.0311%" height="15" fill="rgb(224,100,54)" fg:x="72911" fg:w="47"/><text x="48.5156%" y="879.50"></text></g><g><title>[libunix_jni.so] (28 samples, 0.02%)</title><rect x="48.2967%" y="869" width="0.0185%" height="15" fill="rgb(229,200,27)" fg:x="72958" fg:w="28"/><text x="48.5467%" y="879.50"></text></g><g><title>JVM_StartThread (19 samples, 0.01%)</title><rect x="48.3656%" y="853" width="0.0126%" height="15" fill="rgb(217,118,10)" fg:x="73062" fg:w="19"/><text x="48.6156%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.03%)</title><rect x="48.3801%" y="629" width="0.0338%" height="15" fill="rgb(206,22,3)" fg:x="73084" fg:w="51"/><text x="48.6301%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.03%)</title><rect x="48.3801%" y="613" width="0.0338%" height="15" fill="rgb(232,163,46)" fg:x="73084" fg:w="51"/><text x="48.6301%" y="623.50"></text></g><g><title>native_write_msr (51 samples, 0.03%)</title><rect x="48.3801%" y="597" width="0.0338%" height="15" fill="rgb(206,95,13)" fg:x="73084" fg:w="51"/><text x="48.6301%" y="607.50"></text></g><g><title>finish_task_switch (57 samples, 0.04%)</title><rect x="48.3801%" y="645" width="0.0377%" height="15" fill="rgb(253,154,18)" fg:x="73084" fg:w="57"/><text x="48.6301%" y="655.50"></text></g><g><title>do_syscall_64 (61 samples, 0.04%)</title><rect x="48.3781%" y="757" width="0.0404%" height="15" fill="rgb(219,32,23)" fg:x="73081" fg:w="61"/><text x="48.6281%" y="767.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.04%)</title><rect x="48.3781%" y="741" width="0.0404%" height="15" fill="rgb(230,191,45)" fg:x="73081" fg:w="61"/><text x="48.6281%" y="751.50"></text></g><g><title>do_futex (61 samples, 0.04%)</title><rect x="48.3781%" y="725" width="0.0404%" height="15" fill="rgb(229,64,36)" fg:x="73081" fg:w="61"/><text x="48.6281%" y="735.50"></text></g><g><title>futex_wait (61 samples, 0.04%)</title><rect x="48.3781%" y="709" width="0.0404%" height="15" fill="rgb(205,129,25)" fg:x="73081" fg:w="61"/><text x="48.6281%" y="719.50"></text></g><g><title>futex_wait_queue_me (60 samples, 0.04%)</title><rect x="48.3788%" y="693" width="0.0397%" height="15" fill="rgb(254,112,7)" fg:x="73082" fg:w="60"/><text x="48.6288%" y="703.50"></text></g><g><title>schedule (60 samples, 0.04%)</title><rect x="48.3788%" y="677" width="0.0397%" height="15" fill="rgb(226,53,48)" fg:x="73082" fg:w="60"/><text x="48.6288%" y="687.50"></text></g><g><title>__schedule (60 samples, 0.04%)</title><rect x="48.3788%" y="661" width="0.0397%" height="15" fill="rgb(214,153,38)" fg:x="73082" fg:w="60"/><text x="48.6288%" y="671.50"></text></g><g><title>Unsafe_Park (63 samples, 0.04%)</title><rect x="48.3781%" y="853" width="0.0417%" height="15" fill="rgb(243,101,7)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="863.50"></text></g><g><title>Parker::park (63 samples, 0.04%)</title><rect x="48.3781%" y="837" width="0.0417%" height="15" fill="rgb(240,140,22)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="847.50"></text></g><g><title>__pthread_cond_wait (63 samples, 0.04%)</title><rect x="48.3781%" y="821" width="0.0417%" height="15" fill="rgb(235,114,2)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (63 samples, 0.04%)</title><rect x="48.3781%" y="805" width="0.0417%" height="15" fill="rgb(242,59,12)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="815.50"></text></g><g><title>futex_wait_cancelable (63 samples, 0.04%)</title><rect x="48.3781%" y="789" width="0.0417%" height="15" fill="rgb(252,134,9)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="48.3781%" y="773" width="0.0417%" height="15" fill="rgb(236,4,44)" fg:x="73081" fg:w="63"/><text x="48.6281%" y="783.50"></text></g><g><title>[perf-983083.map] (159 samples, 0.11%)</title><rect x="48.3153%" y="869" width="0.1053%" height="15" fill="rgb(254,172,41)" fg:x="72986" fg:w="159"/><text x="48.5653%" y="879.50"></text></g><g><title>ret_from_fork (20 samples, 0.01%)</title><rect x="48.4238%" y="853" width="0.0132%" height="15" fill="rgb(244,63,20)" fg:x="73150" fg:w="20"/><text x="48.6738%" y="863.50"></text></g><g><title>schedule_tail (20 samples, 0.01%)</title><rect x="48.4238%" y="837" width="0.0132%" height="15" fill="rgb(250,73,31)" fg:x="73150" fg:w="20"/><text x="48.6738%" y="847.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="48.4238%" y="821" width="0.0132%" height="15" fill="rgb(241,38,36)" fg:x="73150" fg:w="20"/><text x="48.6738%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="48.4251%" y="805" width="0.0119%" height="15" fill="rgb(245,211,2)" fg:x="73152" fg:w="18"/><text x="48.6751%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="48.4251%" y="789" width="0.0119%" height="15" fill="rgb(206,120,28)" fg:x="73152" fg:w="18"/><text x="48.6751%" y="799.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="48.4251%" y="773" width="0.0119%" height="15" fill="rgb(211,59,34)" fg:x="73152" fg:w="18"/><text x="48.6751%" y="783.50"></text></g><g><title>__GI___clone (40 samples, 0.03%)</title><rect x="48.4205%" y="869" width="0.0265%" height="15" fill="rgb(233,168,5)" fg:x="73145" fg:w="40"/><text x="48.6705%" y="879.50"></text></g><g><title>globbing_pool-6 (229 samples, 0.15%)</title><rect x="48.2967%" y="885" width="0.1516%" height="15" fill="rgb(234,33,13)" fg:x="72958" fg:w="229"/><text x="48.5467%" y="895.50"></text></g><g><title>JVM_StartThread (24 samples, 0.02%)</title><rect x="48.4715%" y="853" width="0.0159%" height="15" fill="rgb(231,150,26)" fg:x="73222" fg:w="24"/><text x="48.7215%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.02%)</title><rect x="48.4887%" y="629" width="0.0218%" height="15" fill="rgb(217,191,4)" fg:x="73248" fg:w="33"/><text x="48.7387%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.02%)</title><rect x="48.4894%" y="613" width="0.0212%" height="15" fill="rgb(246,198,38)" fg:x="73249" fg:w="32"/><text x="48.7394%" y="623.50"></text></g><g><title>native_write_msr (32 samples, 0.02%)</title><rect x="48.4894%" y="597" width="0.0212%" height="15" fill="rgb(245,64,37)" fg:x="73249" fg:w="32"/><text x="48.7394%" y="607.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="48.4887%" y="757" width="0.0238%" height="15" fill="rgb(250,30,36)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="767.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="48.4887%" y="741" width="0.0238%" height="15" fill="rgb(217,86,53)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="751.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="48.4887%" y="725" width="0.0238%" height="15" fill="rgb(228,157,16)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="735.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="48.4887%" y="709" width="0.0238%" height="15" fill="rgb(217,59,31)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="719.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.02%)</title><rect x="48.4887%" y="693" width="0.0238%" height="15" fill="rgb(237,138,41)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="703.50"></text></g><g><title>schedule (36 samples, 0.02%)</title><rect x="48.4887%" y="677" width="0.0238%" height="15" fill="rgb(227,91,49)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="687.50"></text></g><g><title>__schedule (36 samples, 0.02%)</title><rect x="48.4887%" y="661" width="0.0238%" height="15" fill="rgb(247,21,44)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="671.50"></text></g><g><title>finish_task_switch (36 samples, 0.02%)</title><rect x="48.4887%" y="645" width="0.0238%" height="15" fill="rgb(219,210,51)" fg:x="73248" fg:w="36"/><text x="48.7387%" y="655.50"></text></g><g><title>Unsafe_Park (40 samples, 0.03%)</title><rect x="48.4880%" y="853" width="0.0265%" height="15" fill="rgb(209,140,6)" fg:x="73247" fg:w="40"/><text x="48.7380%" y="863.50"></text></g><g><title>Parker::park (40 samples, 0.03%)</title><rect x="48.4880%" y="837" width="0.0265%" height="15" fill="rgb(221,188,24)" fg:x="73247" fg:w="40"/><text x="48.7380%" y="847.50"></text></g><g><title>__pthread_cond_wait (39 samples, 0.03%)</title><rect x="48.4887%" y="821" width="0.0258%" height="15" fill="rgb(232,154,20)" fg:x="73248" fg:w="39"/><text x="48.7387%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (39 samples, 0.03%)</title><rect x="48.4887%" y="805" width="0.0258%" height="15" fill="rgb(244,137,50)" fg:x="73248" fg:w="39"/><text x="48.7387%" y="815.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.03%)</title><rect x="48.4887%" y="789" width="0.0258%" height="15" fill="rgb(225,185,43)" fg:x="73248" fg:w="39"/><text x="48.7387%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.03%)</title><rect x="48.4887%" y="773" width="0.0258%" height="15" fill="rgb(213,205,38)" fg:x="73248" fg:w="39"/><text x="48.7387%" y="783.50"></text></g><g><title>[perf-983083.map] (94 samples, 0.06%)</title><rect x="48.4530%" y="869" width="0.0622%" height="15" fill="rgb(236,73,12)" fg:x="73194" fg:w="94"/><text x="48.7030%" y="879.50"></text></g><g><title>globbing_pool-7 (128 samples, 0.08%)</title><rect x="48.4483%" y="885" width="0.0847%" height="15" fill="rgb(235,219,13)" fg:x="73187" fg:w="128"/><text x="48.6983%" y="895.50"></text></g><g><title>__GI___clone (26 samples, 0.02%)</title><rect x="48.5158%" y="869" width="0.0172%" height="15" fill="rgb(218,59,36)" fg:x="73289" fg:w="26"/><text x="48.7658%" y="879.50"></text></g><g><title>do_syscall_64 (43 samples, 0.03%)</title><rect x="48.5814%" y="757" width="0.0285%" height="15" fill="rgb(205,110,39)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="767.50"></text></g><g><title>__x64_sys_futex (43 samples, 0.03%)</title><rect x="48.5814%" y="741" width="0.0285%" height="15" fill="rgb(218,206,42)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="751.50"></text></g><g><title>do_futex (43 samples, 0.03%)</title><rect x="48.5814%" y="725" width="0.0285%" height="15" fill="rgb(248,125,24)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="735.50"></text></g><g><title>futex_wait (43 samples, 0.03%)</title><rect x="48.5814%" y="709" width="0.0285%" height="15" fill="rgb(242,28,27)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="719.50"></text></g><g><title>futex_wait_queue_me (43 samples, 0.03%)</title><rect x="48.5814%" y="693" width="0.0285%" height="15" fill="rgb(216,228,15)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="703.50"></text></g><g><title>schedule (43 samples, 0.03%)</title><rect x="48.5814%" y="677" width="0.0285%" height="15" fill="rgb(235,116,46)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="687.50"></text></g><g><title>__schedule (43 samples, 0.03%)</title><rect x="48.5814%" y="661" width="0.0285%" height="15" fill="rgb(224,18,32)" fg:x="73388" fg:w="43"/><text x="48.8314%" y="671.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="48.5820%" y="645" width="0.0278%" height="15" fill="rgb(252,5,12)" fg:x="73389" fg:w="42"/><text x="48.8320%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.03%)</title><rect x="48.5820%" y="629" width="0.0278%" height="15" fill="rgb(251,36,5)" fg:x="73389" fg:w="42"/><text x="48.8320%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.03%)</title><rect x="48.5820%" y="613" width="0.0278%" height="15" fill="rgb(217,53,14)" fg:x="73389" fg:w="42"/><text x="48.8320%" y="623.50"></text></g><g><title>native_write_msr (41 samples, 0.03%)</title><rect x="48.5827%" y="597" width="0.0271%" height="15" fill="rgb(215,86,45)" fg:x="73390" fg:w="41"/><text x="48.8327%" y="607.50"></text></g><g><title>__pthread_cond_wait (47 samples, 0.03%)</title><rect x="48.5801%" y="821" width="0.0311%" height="15" fill="rgb(242,169,11)" fg:x="73386" fg:w="47"/><text x="48.8301%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (47 samples, 0.03%)</title><rect x="48.5801%" y="805" width="0.0311%" height="15" fill="rgb(211,213,45)" fg:x="73386" fg:w="47"/><text x="48.8301%" y="815.50"></text></g><g><title>futex_wait_cancelable (45 samples, 0.03%)</title><rect x="48.5814%" y="789" width="0.0298%" height="15" fill="rgb(205,88,11)" fg:x="73388" fg:w="45"/><text x="48.8314%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.03%)</title><rect x="48.5814%" y="773" width="0.0298%" height="15" fill="rgb(252,69,26)" fg:x="73388" fg:w="45"/><text x="48.8314%" y="783.50"></text></g><g><title>Unsafe_Park (51 samples, 0.03%)</title><rect x="48.5781%" y="853" width="0.0338%" height="15" fill="rgb(246,123,37)" fg:x="73383" fg:w="51"/><text x="48.8281%" y="863.50"></text></g><g><title>Parker::park (50 samples, 0.03%)</title><rect x="48.5787%" y="837" width="0.0331%" height="15" fill="rgb(212,205,5)" fg:x="73384" fg:w="50"/><text x="48.8287%" y="847.50"></text></g><g><title>[perf-983083.map] (124 samples, 0.08%)</title><rect x="48.5364%" y="869" width="0.0821%" height="15" fill="rgb(253,148,0)" fg:x="73320" fg:w="124"/><text x="48.7864%" y="879.50"></text></g><g><title>ret_from_fork (18 samples, 0.01%)</title><rect x="48.6218%" y="853" width="0.0119%" height="15" fill="rgb(239,22,4)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="863.50"></text></g><g><title>schedule_tail (18 samples, 0.01%)</title><rect x="48.6218%" y="837" width="0.0119%" height="15" fill="rgb(226,26,53)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="847.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="48.6218%" y="821" width="0.0119%" height="15" fill="rgb(225,229,45)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="48.6218%" y="805" width="0.0119%" height="15" fill="rgb(220,60,37)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="48.6218%" y="789" width="0.0119%" height="15" fill="rgb(217,180,35)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="799.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="48.6218%" y="773" width="0.0119%" height="15" fill="rgb(229,7,53)" fg:x="73449" fg:w="18"/><text x="48.8718%" y="783.50"></text></g><g><title>__GI___clone (25 samples, 0.02%)</title><rect x="48.6198%" y="869" width="0.0165%" height="15" fill="rgb(254,137,3)" fg:x="73446" fg:w="25"/><text x="48.8698%" y="879.50"></text></g><g><title>globbing_pool-8 (158 samples, 0.10%)</title><rect x="48.5331%" y="885" width="0.1046%" height="15" fill="rgb(215,140,41)" fg:x="73315" fg:w="158"/><text x="48.7831%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.03%)</title><rect x="48.6893%" y="629" width="0.0278%" height="15" fill="rgb(250,80,15)" fg:x="73551" fg:w="42"/><text x="48.9393%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.03%)</title><rect x="48.6893%" y="613" width="0.0278%" height="15" fill="rgb(252,191,6)" fg:x="73551" fg:w="42"/><text x="48.9393%" y="623.50"></text></g><g><title>native_write_msr (42 samples, 0.03%)</title><rect x="48.6893%" y="597" width="0.0278%" height="15" fill="rgb(246,217,18)" fg:x="73551" fg:w="42"/><text x="48.9393%" y="607.50"></text></g><g><title>finish_task_switch (44 samples, 0.03%)</title><rect x="48.6893%" y="645" width="0.0291%" height="15" fill="rgb(223,93,7)" fg:x="73551" fg:w="44"/><text x="48.9393%" y="655.50"></text></g><g><title>do_syscall_64 (46 samples, 0.03%)</title><rect x="48.6886%" y="757" width="0.0305%" height="15" fill="rgb(225,55,52)" fg:x="73550" fg:w="46"/><text x="48.9386%" y="767.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.03%)</title><rect x="48.6886%" y="741" width="0.0305%" height="15" fill="rgb(240,31,24)" fg:x="73550" fg:w="46"/><text x="48.9386%" y="751.50"></text></g><g><title>do_futex (46 samples, 0.03%)</title><rect x="48.6886%" y="725" width="0.0305%" height="15" fill="rgb(205,56,52)" fg:x="73550" fg:w="46"/><text x="48.9386%" y="735.50"></text></g><g><title>futex_wait (45 samples, 0.03%)</title><rect x="48.6893%" y="709" width="0.0298%" height="15" fill="rgb(246,146,12)" fg:x="73551" fg:w="45"/><text x="48.9393%" y="719.50"></text></g><g><title>futex_wait_queue_me (45 samples, 0.03%)</title><rect x="48.6893%" y="693" width="0.0298%" height="15" fill="rgb(239,84,36)" fg:x="73551" fg:w="45"/><text x="48.9393%" y="703.50"></text></g><g><title>schedule (45 samples, 0.03%)</title><rect x="48.6893%" y="677" width="0.0298%" height="15" fill="rgb(207,41,40)" fg:x="73551" fg:w="45"/><text x="48.9393%" y="687.50"></text></g><g><title>__schedule (45 samples, 0.03%)</title><rect x="48.6893%" y="661" width="0.0298%" height="15" fill="rgb(241,179,25)" fg:x="73551" fg:w="45"/><text x="48.9393%" y="671.50"></text></g><g><title>__pthread_cond_wait (48 samples, 0.03%)</title><rect x="48.6880%" y="821" width="0.0318%" height="15" fill="rgb(210,0,34)" fg:x="73549" fg:w="48"/><text x="48.9380%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (48 samples, 0.03%)</title><rect x="48.6880%" y="805" width="0.0318%" height="15" fill="rgb(225,217,29)" fg:x="73549" fg:w="48"/><text x="48.9380%" y="815.50"></text></g><g><title>futex_wait_cancelable (47 samples, 0.03%)</title><rect x="48.6886%" y="789" width="0.0311%" height="15" fill="rgb(216,191,38)" fg:x="73550" fg:w="47"/><text x="48.9386%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.03%)</title><rect x="48.6886%" y="773" width="0.0311%" height="15" fill="rgb(232,140,52)" fg:x="73550" fg:w="47"/><text x="48.9386%" y="783.50"></text></g><g><title>Unsafe_Park (50 samples, 0.03%)</title><rect x="48.6873%" y="853" width="0.0331%" height="15" fill="rgb(223,158,51)" fg:x="73548" fg:w="50"/><text x="48.9373%" y="863.50"></text></g><g><title>Parker::park (50 samples, 0.03%)</title><rect x="48.6873%" y="837" width="0.0331%" height="15" fill="rgb(235,29,51)" fg:x="73548" fg:w="50"/><text x="48.9373%" y="847.50"></text></g><g><title>[perf-983083.map] (116 samples, 0.08%)</title><rect x="48.6443%" y="869" width="0.0768%" height="15" fill="rgb(215,181,18)" fg:x="73483" fg:w="116"/><text x="48.8943%" y="879.50"></text></g><g><title>globbing_pool-9 (129 samples, 0.09%)</title><rect x="48.6376%" y="885" width="0.0854%" height="15" fill="rgb(227,125,34)" fg:x="73473" fg:w="129"/><text x="48.8876%" y="895.50"></text></g><g><title>[anon] (212 samples, 0.14%)</title><rect x="48.7336%" y="869" width="0.1403%" height="15" fill="rgb(230,197,49)" fg:x="73618" fg:w="212"/><text x="48.9836%" y="879.50"></text></g><g><title>[libunix_jni.so] (19 samples, 0.01%)</title><rect x="48.8740%" y="869" width="0.0126%" height="15" fill="rgb(239,141,16)" fg:x="73830" fg:w="19"/><text x="49.1240%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (31 samples, 0.02%)</title><rect x="50.2423%" y="693" width="0.0205%" height="15" fill="rgb(225,105,43)" fg:x="75897" fg:w="31"/><text x="50.4923%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (26 samples, 0.02%)</title><rect x="50.2456%" y="677" width="0.0172%" height="15" fill="rgb(214,131,14)" fg:x="75902" fg:w="26"/><text x="50.4956%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool (35 samples, 0.02%)</title><rect x="50.2410%" y="709" width="0.0232%" height="15" fill="rgb(229,177,11)" fg:x="75895" fg:w="35"/><text x="50.4910%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (59 samples, 0.04%)</title><rect x="50.2396%" y="741" width="0.0391%" height="15" fill="rgb(231,180,14)" fg:x="75893" fg:w="59"/><text x="50.4896%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (59 samples, 0.04%)</title><rect x="50.2396%" y="725" width="0.0391%" height="15" fill="rgb(232,88,2)" fg:x="75893" fg:w="59"/><text x="50.4896%" y="735.50"></text></g><g><title>ClassFileParser::fill_instance_klass (18 samples, 0.01%)</title><rect x="50.2787%" y="725" width="0.0119%" height="15" fill="rgb(205,220,8)" fg:x="75952" fg:w="18"/><text x="50.5287%" y="735.50"></text></g><g><title>ClassFileParser::create_instance_klass (20 samples, 0.01%)</title><rect x="50.2787%" y="741" width="0.0132%" height="15" fill="rgb(225,23,53)" fg:x="75952" fg:w="20"/><text x="50.5287%" y="751.50"></text></g><g><title>ClassLoader::load_class (19 samples, 0.01%)</title><rect x="50.2933%" y="677" width="0.0126%" height="15" fill="rgb(213,62,29)" fg:x="75974" fg:w="19"/><text x="50.5433%" y="687.50"></text></g><g><title>KlassFactory::create_from_stream (18 samples, 0.01%)</title><rect x="50.2939%" y="661" width="0.0119%" height="15" fill="rgb(227,75,7)" fg:x="75975" fg:w="18"/><text x="50.5439%" y="671.50"></text></g><g><title>SystemDictionary::resolve_super_or_fail (21 samples, 0.01%)</title><rect x="50.2926%" y="725" width="0.0139%" height="15" fill="rgb(207,105,14)" fg:x="75973" fg:w="21"/><text x="50.5426%" y="735.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (21 samples, 0.01%)</title><rect x="50.2926%" y="709" width="0.0139%" height="15" fill="rgb(245,62,29)" fg:x="75973" fg:w="21"/><text x="50.5426%" y="719.50"></text></g><g><title>SystemDictionary::load_instance_class (20 samples, 0.01%)</title><rect x="50.2933%" y="693" width="0.0132%" height="15" fill="rgb(236,202,4)" fg:x="75974" fg:w="20"/><text x="50.5433%" y="703.50"></text></g><g><title>ClassLoader::load_class (112 samples, 0.07%)</title><rect x="50.2337%" y="773" width="0.0741%" height="15" fill="rgb(250,67,1)" fg:x="75884" fg:w="112"/><text x="50.4837%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (103 samples, 0.07%)</title><rect x="50.2396%" y="757" width="0.0682%" height="15" fill="rgb(253,115,44)" fg:x="75893" fg:w="103"/><text x="50.4896%" y="767.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (24 samples, 0.02%)</title><rect x="50.2919%" y="741" width="0.0159%" height="15" fill="rgb(251,139,18)" fg:x="75972" fg:w="24"/><text x="50.5419%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (151 samples, 0.10%)</title><rect x="50.2330%" y="789" width="0.1000%" height="15" fill="rgb(218,22,32)" fg:x="75883" fg:w="151"/><text x="50.4830%" y="799.50"></text></g><g><title>ConstantPool::klass_at_impl (159 samples, 0.11%)</title><rect x="50.2284%" y="837" width="0.1053%" height="15" fill="rgb(243,53,5)" fg:x="75876" fg:w="159"/><text x="50.4784%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (157 samples, 0.10%)</title><rect x="50.2297%" y="821" width="0.1039%" height="15" fill="rgb(227,56,16)" fg:x="75878" fg:w="157"/><text x="50.4797%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (155 samples, 0.10%)</title><rect x="50.2310%" y="805" width="0.1026%" height="15" fill="rgb(245,53,0)" fg:x="75880" fg:w="155"/><text x="50.4810%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (20 samples, 0.01%)</title><rect x="50.3383%" y="805" width="0.0132%" height="15" fill="rgb(216,170,35)" fg:x="76042" fg:w="20"/><text x="50.5883%" y="815.50"></text></g><g><title>InstanceKlass::link_methods (29 samples, 0.02%)</title><rect x="50.3515%" y="805" width="0.0192%" height="15" fill="rgb(211,200,8)" fg:x="76062" fg:w="29"/><text x="50.6015%" y="815.50"></text></g><g><title>Method::link_method (29 samples, 0.02%)</title><rect x="50.3515%" y="789" width="0.0192%" height="15" fill="rgb(228,204,44)" fg:x="76062" fg:w="29"/><text x="50.6015%" y="799.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (25 samples, 0.02%)</title><rect x="50.3542%" y="773" width="0.0165%" height="15" fill="rgb(214,121,17)" fg:x="76066" fg:w="25"/><text x="50.6042%" y="783.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (25 samples, 0.02%)</title><rect x="50.3542%" y="757" width="0.0165%" height="15" fill="rgb(233,64,38)" fg:x="76066" fg:w="25"/><text x="50.6042%" y="767.50"></text></g><g><title>Rewriter::compute_index_maps (19 samples, 0.01%)</title><rect x="50.3806%" y="757" width="0.0126%" height="15" fill="rgb(253,54,19)" fg:x="76106" fg:w="19"/><text x="50.6306%" y="767.50"></text></g><g><title>Rewriter::rewrite_bytecodes (39 samples, 0.03%)</title><rect x="50.3806%" y="773" width="0.0258%" height="15" fill="rgb(253,94,18)" fg:x="76106" fg:w="39"/><text x="50.6306%" y="783.50"></text></g><g><title>Rewriter::scan_method (20 samples, 0.01%)</title><rect x="50.3932%" y="757" width="0.0132%" height="15" fill="rgb(227,57,52)" fg:x="76125" fg:w="20"/><text x="50.6432%" y="767.50"></text></g><g><title>Rewriter::rewrite (55 samples, 0.04%)</title><rect x="50.3727%" y="805" width="0.0364%" height="15" fill="rgb(230,228,50)" fg:x="76094" fg:w="55"/><text x="50.6227%" y="815.50"></text></g><g><title>Rewriter::Rewriter (55 samples, 0.04%)</title><rect x="50.3727%" y="789" width="0.0364%" height="15" fill="rgb(217,205,27)" fg:x="76094" fg:w="55"/><text x="50.6227%" y="799.50"></text></g><g><title>klassItable::initialize_itable (16 samples, 0.01%)</title><rect x="50.4104%" y="805" width="0.0106%" height="15" fill="rgb(252,71,50)" fg:x="76151" fg:w="16"/><text x="50.6604%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (140 samples, 0.09%)</title><rect x="50.3383%" y="821" width="0.0927%" height="15" fill="rgb(209,86,4)" fg:x="76042" fg:w="140"/><text x="50.5883%" y="831.50"></text></g><g><title>InstanceKlass::initialize_impl (149 samples, 0.10%)</title><rect x="50.3363%" y="837" width="0.0986%" height="15" fill="rgb(229,94,0)" fg:x="76039" fg:w="149"/><text x="50.5863%" y="847.50"></text></g><g><title>InterpreterRuntime::_new (313 samples, 0.21%)</title><rect x="50.2284%" y="853" width="0.2072%" height="15" fill="rgb(252,223,21)" fg:x="75876" fg:w="313"/><text x="50.4784%" y="863.50"></text></g><g><title>InterpreterRuntime::anewarray (20 samples, 0.01%)</title><rect x="50.4356%" y="853" width="0.0132%" height="15" fill="rgb(230,210,4)" fg:x="76189" fg:w="20"/><text x="50.6856%" y="863.50"></text></g><g><title>CompileBroker::compile_method_base (19 samples, 0.01%)</title><rect x="50.4793%" y="741" width="0.0126%" height="15" fill="rgb(240,149,38)" fg:x="76255" fg:w="19"/><text x="50.7293%" y="751.50"></text></g><g><title>TieredThresholdPolicy::compile (23 samples, 0.02%)</title><rect x="50.4773%" y="789" width="0.0152%" height="15" fill="rgb(254,105,20)" fg:x="76252" fg:w="23"/><text x="50.7273%" y="799.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (22 samples, 0.01%)</title><rect x="50.4779%" y="773" width="0.0146%" height="15" fill="rgb(253,87,46)" fg:x="76253" fg:w="22"/><text x="50.7279%" y="783.50"></text></g><g><title>CompileBroker::compile_method (21 samples, 0.01%)</title><rect x="50.4786%" y="757" width="0.0139%" height="15" fill="rgb(253,116,33)" fg:x="76254" fg:w="21"/><text x="50.7286%" y="767.50"></text></g><g><title>TieredThresholdPolicy::event (46 samples, 0.03%)</title><rect x="50.4634%" y="821" width="0.0305%" height="15" fill="rgb(229,198,5)" fg:x="76231" fg:w="46"/><text x="50.7134%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (46 samples, 0.03%)</title><rect x="50.4634%" y="805" width="0.0305%" height="15" fill="rgb(242,38,37)" fg:x="76231" fg:w="46"/><text x="50.7134%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (57 samples, 0.04%)</title><rect x="50.4581%" y="853" width="0.0377%" height="15" fill="rgb(242,69,53)" fg:x="76223" fg:w="57"/><text x="50.7081%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (55 samples, 0.04%)</title><rect x="50.4594%" y="837" width="0.0364%" height="15" fill="rgb(249,80,16)" fg:x="76225" fg:w="55"/><text x="50.7094%" y="847.50"></text></g><g><title>InterpreterRuntime::ldc (25 samples, 0.02%)</title><rect x="50.4958%" y="853" width="0.0165%" height="15" fill="rgb(206,128,11)" fg:x="76280" fg:w="25"/><text x="50.7458%" y="863.50"></text></g><g><title>ConstantPool::klass_ref_at (27 samples, 0.02%)</title><rect x="50.5336%" y="805" width="0.0179%" height="15" fill="rgb(212,35,20)" fg:x="76337" fg:w="27"/><text x="50.7836%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (25 samples, 0.02%)</title><rect x="50.5349%" y="789" width="0.0165%" height="15" fill="rgb(236,79,13)" fg:x="76339" fg:w="25"/><text x="50.7849%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (23 samples, 0.02%)</title><rect x="50.5362%" y="773" width="0.0152%" height="15" fill="rgb(233,123,3)" fg:x="76341" fg:w="23"/><text x="50.7862%" y="783.50"></text></g><g><title>SystemDictionary::load_instance_class (20 samples, 0.01%)</title><rect x="50.5382%" y="757" width="0.0132%" height="15" fill="rgb(214,93,52)" fg:x="76344" fg:w="20"/><text x="50.7882%" y="767.50"></text></g><g><title>ClassLoader::load_class (20 samples, 0.01%)</title><rect x="50.5382%" y="741" width="0.0132%" height="15" fill="rgb(251,37,40)" fg:x="76344" fg:w="20"/><text x="50.7882%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (16 samples, 0.01%)</title><rect x="50.5408%" y="725" width="0.0106%" height="15" fill="rgb(227,80,54)" fg:x="76348" fg:w="16"/><text x="50.7908%" y="735.50"></text></g><g><title>InstanceKlass::find_field (23 samples, 0.02%)</title><rect x="50.5541%" y="789" width="0.0152%" height="15" fill="rgb(254,48,11)" fg:x="76368" fg:w="23"/><text x="50.8041%" y="799.50"></text></g><g><title>InstanceKlass::find_local_field (21 samples, 0.01%)</title><rect x="50.5554%" y="773" width="0.0139%" height="15" fill="rgb(235,193,26)" fg:x="76370" fg:w="21"/><text x="50.8054%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (32 samples, 0.02%)</title><rect x="50.5693%" y="789" width="0.0212%" height="15" fill="rgb(229,99,21)" fg:x="76391" fg:w="32"/><text x="50.8193%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (27 samples, 0.02%)</title><rect x="50.5726%" y="773" width="0.0179%" height="15" fill="rgb(211,140,41)" fg:x="76396" fg:w="27"/><text x="50.8226%" y="783.50"></text></g><g><title>LinkResolver::resolve_field (65 samples, 0.04%)</title><rect x="50.5514%" y="805" width="0.0430%" height="15" fill="rgb(240,227,30)" fg:x="76364" fg:w="65"/><text x="50.8014%" y="815.50"></text></g><g><title>LinkResolver::resolve_field_access (96 samples, 0.06%)</title><rect x="50.5329%" y="821" width="0.0636%" height="15" fill="rgb(215,224,45)" fg:x="76336" fg:w="96"/><text x="50.7829%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (103 samples, 0.07%)</title><rect x="50.5296%" y="837" width="0.0682%" height="15" fill="rgb(206,123,31)" fg:x="76331" fg:w="103"/><text x="50.7796%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (29 samples, 0.02%)</title><rect x="50.6441%" y="661" width="0.0192%" height="15" fill="rgb(210,138,16)" fg:x="76504" fg:w="29"/><text x="50.8941%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (26 samples, 0.02%)</title><rect x="50.6461%" y="645" width="0.0172%" height="15" fill="rgb(228,57,28)" fg:x="76507" fg:w="26"/><text x="50.8961%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool (35 samples, 0.02%)</title><rect x="50.6408%" y="677" width="0.0232%" height="15" fill="rgb(242,170,10)" fg:x="76499" fg:w="35"/><text x="50.8908%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (45 samples, 0.03%)</title><rect x="50.6408%" y="709" width="0.0298%" height="15" fill="rgb(228,214,39)" fg:x="76499" fg:w="45"/><text x="50.8908%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (45 samples, 0.03%)</title><rect x="50.6408%" y="693" width="0.0298%" height="15" fill="rgb(218,179,33)" fg:x="76499" fg:w="45"/><text x="50.8908%" y="703.50"></text></g><g><title>ClassLoader::load_class (62 samples, 0.04%)</title><rect x="50.6355%" y="741" width="0.0410%" height="15" fill="rgb(235,193,39)" fg:x="76491" fg:w="62"/><text x="50.8855%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (54 samples, 0.04%)</title><rect x="50.6408%" y="725" width="0.0357%" height="15" fill="rgb(219,221,36)" fg:x="76499" fg:w="54"/><text x="50.8908%" y="735.50"></text></g><g><title>SystemDictionary::load_instance_class (69 samples, 0.05%)</title><rect x="50.6348%" y="757" width="0.0457%" height="15" fill="rgb(248,218,19)" fg:x="76490" fg:w="69"/><text x="50.8848%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (84 samples, 0.06%)</title><rect x="50.6269%" y="789" width="0.0556%" height="15" fill="rgb(205,50,9)" fg:x="76478" fg:w="84"/><text x="50.8769%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (84 samples, 0.06%)</title><rect x="50.6269%" y="773" width="0.0556%" height="15" fill="rgb(238,81,28)" fg:x="76478" fg:w="84"/><text x="50.8769%" y="783.50"></text></g><g><title>ConstantPool::klass_ref_at (90 samples, 0.06%)</title><rect x="50.6236%" y="805" width="0.0596%" height="15" fill="rgb(235,110,19)" fg:x="76473" fg:w="90"/><text x="50.8736%" y="815.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (22 samples, 0.01%)</title><rect x="50.6911%" y="805" width="0.0146%" height="15" fill="rgb(214,7,14)" fg:x="76575" fg:w="22"/><text x="50.9411%" y="815.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (20 samples, 0.01%)</title><rect x="50.7130%" y="789" width="0.0132%" height="15" fill="rgb(211,77,3)" fg:x="76608" fg:w="20"/><text x="50.9630%" y="799.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (16 samples, 0.01%)</title><rect x="50.7156%" y="773" width="0.0106%" height="15" fill="rgb(229,5,9)" fg:x="76612" fg:w="16"/><text x="50.9656%" y="783.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (16 samples, 0.01%)</title><rect x="50.7156%" y="757" width="0.0106%" height="15" fill="rgb(225,90,11)" fg:x="76612" fg:w="16"/><text x="50.9656%" y="767.50"></text></g><g><title>InstanceKlass::find_method_index (16 samples, 0.01%)</title><rect x="50.7156%" y="741" width="0.0106%" height="15" fill="rgb(242,56,8)" fg:x="76612" fg:w="16"/><text x="50.9656%" y="751.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (33 samples, 0.02%)</title><rect x="50.7057%" y="805" width="0.0218%" height="15" fill="rgb(249,212,39)" fg:x="76597" fg:w="33"/><text x="50.9557%" y="815.50"></text></g><g><title>Rewriter::Rewriter (38 samples, 0.03%)</title><rect x="50.7494%" y="741" width="0.0252%" height="15" fill="rgb(236,90,9)" fg:x="76663" fg:w="38"/><text x="50.9994%" y="751.50"></text></g><g><title>Rewriter::rewrite_bytecodes (32 samples, 0.02%)</title><rect x="50.7533%" y="725" width="0.0212%" height="15" fill="rgb(206,88,35)" fg:x="76669" fg:w="32"/><text x="51.0033%" y="735.50"></text></g><g><title>Rewriter::scan_method (23 samples, 0.02%)</title><rect x="50.7593%" y="709" width="0.0152%" height="15" fill="rgb(205,126,30)" fg:x="76678" fg:w="23"/><text x="51.0093%" y="719.50"></text></g><g><title>Rewriter::rewrite (39 samples, 0.03%)</title><rect x="50.7494%" y="757" width="0.0258%" height="15" fill="rgb(230,176,12)" fg:x="76663" fg:w="39"/><text x="50.9994%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (74 samples, 0.05%)</title><rect x="50.7321%" y="773" width="0.0490%" height="15" fill="rgb(243,19,9)" fg:x="76637" fg:w="74"/><text x="50.9821%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (76 samples, 0.05%)</title><rect x="50.7315%" y="789" width="0.0503%" height="15" fill="rgb(245,171,17)" fg:x="76636" fg:w="76"/><text x="50.9815%" y="799.50"></text></g><g><title>LinkResolver::resolve_static_call (99 samples, 0.07%)</title><rect x="50.7275%" y="805" width="0.0655%" height="15" fill="rgb(227,52,21)" fg:x="76630" fg:w="99"/><text x="50.9775%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (264 samples, 0.17%)</title><rect x="50.6203%" y="821" width="0.1748%" height="15" fill="rgb(238,69,14)" fg:x="76468" fg:w="264"/><text x="50.8703%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (310 samples, 0.21%)</title><rect x="50.5978%" y="837" width="0.2052%" height="15" fill="rgb(241,156,39)" fg:x="76434" fg:w="310"/><text x="50.8478%" y="847.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (20 samples, 0.01%)</title><rect x="50.8050%" y="773" width="0.0132%" height="15" fill="rgb(212,227,28)" fg:x="76747" fg:w="20"/><text x="51.0550%" y="783.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (20 samples, 0.01%)</title><rect x="50.8050%" y="757" width="0.0132%" height="15" fill="rgb(209,118,27)" fg:x="76747" fg:w="20"/><text x="51.0550%" y="767.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (27 samples, 0.02%)</title><rect x="50.8050%" y="789" width="0.0179%" height="15" fill="rgb(226,102,5)" fg:x="76747" fg:w="27"/><text x="51.0550%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (456 samples, 0.30%)</title><rect x="50.5283%" y="853" width="0.3019%" height="15" fill="rgb(223,34,3)" fg:x="76329" fg:w="456"/><text x="50.7783%" y="863.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (41 samples, 0.03%)</title><rect x="50.8030%" y="837" width="0.0271%" height="15" fill="rgb(221,81,38)" fg:x="76744" fg:w="41"/><text x="51.0530%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (39 samples, 0.03%)</title><rect x="50.8043%" y="821" width="0.0258%" height="15" fill="rgb(236,219,28)" fg:x="76746" fg:w="39"/><text x="51.0543%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (39 samples, 0.03%)</title><rect x="50.8043%" y="805" width="0.0258%" height="15" fill="rgb(213,200,14)" fg:x="76746" fg:w="39"/><text x="51.0543%" y="815.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (26 samples, 0.02%)</title><rect x="50.8334%" y="821" width="0.0172%" height="15" fill="rgb(240,33,19)" fg:x="76790" fg:w="26"/><text x="51.0834%" y="831.50"></text></g><g><title>ConstantPool::string_at_impl (23 samples, 0.02%)</title><rect x="50.8354%" y="805" width="0.0152%" height="15" fill="rgb(233,113,27)" fg:x="76793" fg:w="23"/><text x="51.0854%" y="815.50"></text></g><g><title>StringTable::intern (22 samples, 0.01%)</title><rect x="50.8361%" y="789" width="0.0146%" height="15" fill="rgb(220,221,18)" fg:x="76794" fg:w="22"/><text x="51.0861%" y="799.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (28 samples, 0.02%)</title><rect x="50.8328%" y="837" width="0.0185%" height="15" fill="rgb(238,92,8)" fg:x="76789" fg:w="28"/><text x="51.0828%" y="847.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (36 samples, 0.02%)</title><rect x="50.8301%" y="853" width="0.0238%" height="15" fill="rgb(222,164,16)" fg:x="76785" fg:w="36"/><text x="51.0801%" y="863.50"></text></g><g><title>JVM_ConstantPoolGetUTF8At (24 samples, 0.02%)</title><rect x="50.8592%" y="853" width="0.0159%" height="15" fill="rgb(241,119,3)" fg:x="76829" fg:w="24"/><text x="51.1092%" y="863.50"></text></g><g><title>JVM_FindLoadedClass (37 samples, 0.02%)</title><rect x="50.8831%" y="853" width="0.0245%" height="15" fill="rgb(241,44,8)" fg:x="76865" fg:w="37"/><text x="51.1331%" y="863.50"></text></g><g><title>java_lang_String::char_converter (19 samples, 0.01%)</title><rect x="50.8950%" y="837" width="0.0126%" height="15" fill="rgb(230,36,40)" fg:x="76883" fg:w="19"/><text x="51.1450%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (18 samples, 0.01%)</title><rect x="50.9162%" y="821" width="0.0119%" height="15" fill="rgb(243,16,36)" fg:x="76915" fg:w="18"/><text x="51.1662%" y="831.50"></text></g><g><title>JVM_GetClassDeclaredConstructors (21 samples, 0.01%)</title><rect x="50.9149%" y="853" width="0.0139%" height="15" fill="rgb(231,4,26)" fg:x="76913" fg:w="21"/><text x="51.1649%" y="863.50"></text></g><g><title>get_class_declared_methods_helper (20 samples, 0.01%)</title><rect x="50.9155%" y="837" width="0.0132%" height="15" fill="rgb(240,9,31)" fg:x="76914" fg:w="20"/><text x="51.1655%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (21 samples, 0.01%)</title><rect x="50.9341%" y="821" width="0.0139%" height="15" fill="rgb(207,173,15)" fg:x="76942" fg:w="21"/><text x="51.1841%" y="831.50"></text></g><g><title>get_parameter_types (19 samples, 0.01%)</title><rect x="50.9546%" y="805" width="0.0126%" height="15" fill="rgb(224,192,53)" fg:x="76973" fg:w="19"/><text x="51.2046%" y="815.50"></text></g><g><title>Reflection::new_method (30 samples, 0.02%)</title><rect x="50.9486%" y="821" width="0.0199%" height="15" fill="rgb(223,67,28)" fg:x="76964" fg:w="30"/><text x="51.1986%" y="831.50"></text></g><g><title>JVM_GetClassDeclaredMethods (56 samples, 0.04%)</title><rect x="50.9327%" y="853" width="0.0371%" height="15" fill="rgb(211,20,47)" fg:x="76940" fg:w="56"/><text x="51.1827%" y="863.50"></text></g><g><title>get_class_declared_methods_helper (56 samples, 0.04%)</title><rect x="50.9327%" y="837" width="0.0371%" height="15" fill="rgb(240,228,2)" fg:x="76940" fg:w="56"/><text x="51.1827%" y="847.50"></text></g><g><title>JVM_InitClassName (30 samples, 0.02%)</title><rect x="50.9791%" y="853" width="0.0199%" height="15" fill="rgb(248,151,12)" fg:x="77010" fg:w="30"/><text x="51.2291%" y="863.50"></text></g><g><title>java_lang_Class::name (29 samples, 0.02%)</title><rect x="50.9797%" y="837" width="0.0192%" height="15" fill="rgb(244,8,39)" fg:x="77011" fg:w="29"/><text x="51.2297%" y="847.50"></text></g><g><title>StringTable::intern (28 samples, 0.02%)</title><rect x="50.9804%" y="821" width="0.0185%" height="15" fill="rgb(222,26,8)" fg:x="77012" fg:w="28"/><text x="51.2304%" y="831.50"></text></g><g><title>Java_java_io_RandomAccessFile_seek0 (18 samples, 0.01%)</title><rect x="51.0393%" y="853" width="0.0119%" height="15" fill="rgb(213,106,44)" fg:x="77101" fg:w="18"/><text x="51.2893%" y="863.50"></text></g><g><title>__GI___libc_malloc (22 samples, 0.01%)</title><rect x="51.1207%" y="645" width="0.0146%" height="15" fill="rgb(214,129,20)" fg:x="77224" fg:w="22"/><text x="51.3707%" y="655.50"></text></g><g><title>AllocateHeap (27 samples, 0.02%)</title><rect x="51.1181%" y="677" width="0.0179%" height="15" fill="rgb(212,32,13)" fg:x="77220" fg:w="27"/><text x="51.3681%" y="687.50"></text></g><g><title>os::malloc (23 samples, 0.02%)</title><rect x="51.1207%" y="661" width="0.0152%" height="15" fill="rgb(208,168,33)" fg:x="77224" fg:w="23"/><text x="51.3707%" y="671.50"></text></g><g><title>SymbolTable::add (64 samples, 0.04%)</title><rect x="51.1035%" y="709" width="0.0424%" height="15" fill="rgb(231,207,8)" fg:x="77198" fg:w="64"/><text x="51.3535%" y="719.50"></text></g><g><title>SymbolTable::basic_add (64 samples, 0.04%)</title><rect x="51.1035%" y="693" width="0.0424%" height="15" fill="rgb(235,219,23)" fg:x="77198" fg:w="64"/><text x="51.3535%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (380 samples, 0.25%)</title><rect x="51.1459%" y="709" width="0.2516%" height="15" fill="rgb(226,216,26)" fg:x="77262" fg:w="380"/><text x="51.3959%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (471 samples, 0.31%)</title><rect x="51.0863%" y="725" width="0.3118%" height="15" fill="rgb(239,137,16)" fg:x="77172" fg:w="471"/><text x="51.3363%" y="735.50"></text></g><g><title>ClassFileParser::parse_constant_pool (494 samples, 0.33%)</title><rect x="51.0744%" y="741" width="0.3270%" height="15" fill="rgb(207,12,36)" fg:x="77154" fg:w="494"/><text x="51.3244%" y="751.50"></text></g><g><title>ClassFileParser::copy_localvariable_table (22 samples, 0.01%)</title><rect x="51.4444%" y="709" width="0.0146%" height="15" fill="rgb(210,214,24)" fg:x="77713" fg:w="22"/><text x="51.6944%" y="719.50"></text></g><g><title>ClassFileParser::parse_linenumber_table (18 samples, 0.01%)</title><rect x="51.4630%" y="709" width="0.0119%" height="15" fill="rgb(206,56,30)" fg:x="77741" fg:w="18"/><text x="51.7130%" y="719.50"></text></g><g><title>ConstMethod::allocate (17 samples, 0.01%)</title><rect x="51.4789%" y="693" width="0.0113%" height="15" fill="rgb(228,143,26)" fg:x="77765" fg:w="17"/><text x="51.7289%" y="703.50"></text></g><g><title>Method::allocate (39 samples, 0.03%)</title><rect x="51.4775%" y="709" width="0.0258%" height="15" fill="rgb(216,218,46)" fg:x="77763" fg:w="39"/><text x="51.7275%" y="719.50"></text></g><g><title>Metaspace::allocate (20 samples, 0.01%)</title><rect x="51.4901%" y="693" width="0.0132%" height="15" fill="rgb(206,6,19)" fg:x="77782" fg:w="20"/><text x="51.7401%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (155 samples, 0.10%)</title><rect x="51.4153%" y="725" width="0.1026%" height="15" fill="rgb(239,177,51)" fg:x="77669" fg:w="155"/><text x="51.6653%" y="735.50"></text></g><g><title>ClassFileParser::parse_methods (158 samples, 0.10%)</title><rect x="51.4140%" y="741" width="0.1046%" height="15" fill="rgb(216,55,25)" fg:x="77667" fg:w="158"/><text x="51.6640%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (693 samples, 0.46%)</title><rect x="51.0691%" y="757" width="0.4588%" height="15" fill="rgb(231,163,29)" fg:x="77146" fg:w="693"/><text x="51.3191%" y="767.50"></text></g><g><title>ClassFileParser::ClassFileParser (694 samples, 0.46%)</title><rect x="51.0691%" y="773" width="0.4594%" height="15" fill="rgb(232,149,50)" fg:x="77146" fg:w="694"/><text x="51.3191%" y="783.50"></text></g><g><title>InstanceKlass::find_method (31 samples, 0.02%)</title><rect x="51.5649%" y="709" width="0.0205%" height="15" fill="rgb(223,142,48)" fg:x="77895" fg:w="31"/><text x="51.8149%" y="719.50"></text></g><g><title>InstanceKlass::find_method_index (28 samples, 0.02%)</title><rect x="51.5669%" y="693" width="0.0185%" height="15" fill="rgb(245,83,23)" fg:x="77898" fg:w="28"/><text x="51.8169%" y="703.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (92 samples, 0.06%)</title><rect x="51.5424%" y="725" width="0.0609%" height="15" fill="rgb(224,63,2)" fg:x="77861" fg:w="92"/><text x="51.7924%" y="735.50"></text></g><g><title>resource_allocate_bytes (25 samples, 0.02%)</title><rect x="51.5868%" y="709" width="0.0165%" height="15" fill="rgb(218,65,53)" fg:x="77928" fg:w="25"/><text x="51.8368%" y="719.50"></text></g><g><title>DefaultMethods::generate_default_methods (133 samples, 0.09%)</title><rect x="51.5338%" y="741" width="0.0880%" height="15" fill="rgb(221,84,29)" fg:x="77848" fg:w="133"/><text x="51.7838%" y="751.50"></text></g><g><title>ClassFileParser::fill_instance_klass (174 samples, 0.12%)</title><rect x="51.5285%" y="757" width="0.1152%" height="15" fill="rgb(234,0,32)" fg:x="77840" fg:w="174"/><text x="51.7785%" y="767.50"></text></g><g><title>ClassFileParser::create_instance_klass (183 samples, 0.12%)</title><rect x="51.5285%" y="773" width="0.1211%" height="15" fill="rgb(206,20,16)" fg:x="77840" fg:w="183"/><text x="51.7785%" y="783.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (40 samples, 0.03%)</title><rect x="51.6497%" y="773" width="0.0265%" height="15" fill="rgb(244,172,18)" fg:x="78023" fg:w="40"/><text x="51.8997%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (923 samples, 0.61%)</title><rect x="51.0684%" y="789" width="0.6110%" height="15" fill="rgb(254,133,1)" fg:x="77145" fg:w="923"/><text x="51.3184%" y="799.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (26 samples, 0.02%)</title><rect x="51.6808%" y="789" width="0.0172%" height="15" fill="rgb(222,206,41)" fg:x="78070" fg:w="26"/><text x="51.9308%" y="799.50"></text></g><g><title>SystemDictionary::define_instance_class (23 samples, 0.02%)</title><rect x="51.6828%" y="773" width="0.0152%" height="15" fill="rgb(212,3,42)" fg:x="78073" fg:w="23"/><text x="51.9328%" y="783.50"></text></g><g><title>JVM_DefineClassWithSource (968 samples, 0.64%)</title><rect x="51.0578%" y="837" width="0.6408%" height="15" fill="rgb(241,11,4)" fg:x="77129" fg:w="968"/><text x="51.3078%" y="847.50"></text></g><g><title>jvm_define_class_common (967 samples, 0.64%)</title><rect x="51.0585%" y="821" width="0.6401%" height="15" fill="rgb(205,19,26)" fg:x="77130" fg:w="967"/><text x="51.3085%" y="831.50"></text></g><g><title>SystemDictionary::resolve_from_stream (953 samples, 0.63%)</title><rect x="51.0678%" y="805" width="0.6309%" height="15" fill="rgb(210,179,32)" fg:x="77144" fg:w="953"/><text x="51.3178%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,009 samples, 0.67%)</title><rect x="51.0552%" y="853" width="0.6679%" height="15" fill="rgb(227,116,49)" fg:x="77125" fg:w="1009"/><text x="51.3052%" y="863.50"></text></g><g><title>ClassFileParser::ClassFileParser (19 samples, 0.01%)</title><rect x="51.7503%" y="741" width="0.0126%" height="15" fill="rgb(211,146,6)" fg:x="78175" fg:w="19"/><text x="52.0003%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (19 samples, 0.01%)</title><rect x="51.7503%" y="725" width="0.0126%" height="15" fill="rgb(219,44,39)" fg:x="78175" fg:w="19"/><text x="52.0003%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (26 samples, 0.02%)</title><rect x="51.7503%" y="757" width="0.0172%" height="15" fill="rgb(234,128,11)" fg:x="78175" fg:w="26"/><text x="52.0003%" y="767.50"></text></g><g><title>ClassLoader::load_class (53 samples, 0.04%)</title><rect x="51.7357%" y="773" width="0.0351%" height="15" fill="rgb(220,183,53)" fg:x="78153" fg:w="53"/><text x="51.9857%" y="783.50"></text></g><g><title>SystemDictionary::load_instance_class (73 samples, 0.05%)</title><rect x="51.7357%" y="789" width="0.0483%" height="15" fill="rgb(213,219,32)" fg:x="78153" fg:w="73"/><text x="51.9857%" y="799.50"></text></g><g><title>JVM_FindClassFromBootLoader (92 samples, 0.06%)</title><rect x="51.7238%" y="837" width="0.0609%" height="15" fill="rgb(232,156,16)" fg:x="78135" fg:w="92"/><text x="51.9738%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_null (89 samples, 0.06%)</title><rect x="51.7258%" y="821" width="0.0589%" height="15" fill="rgb(246,135,34)" fg:x="78138" fg:w="89"/><text x="51.9758%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (89 samples, 0.06%)</title><rect x="51.7258%" y="805" width="0.0589%" height="15" fill="rgb(241,99,0)" fg:x="78138" fg:w="89"/><text x="51.9758%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (111 samples, 0.07%)</title><rect x="51.7231%" y="853" width="0.0735%" height="15" fill="rgb(222,103,45)" fg:x="78134" fg:w="111"/><text x="51.9731%" y="863.50"></text></g><g><title>Java_java_lang_Class_forName0 (25 samples, 0.02%)</title><rect x="51.7966%" y="853" width="0.0165%" height="15" fill="rgb(212,57,4)" fg:x="78245" fg:w="25"/><text x="52.0466%" y="863.50"></text></g><g><title>MHN_resolve_Mem (23 samples, 0.02%)</title><rect x="51.8277%" y="853" width="0.0152%" height="15" fill="rgb(215,68,47)" fg:x="78292" fg:w="23"/><text x="52.0777%" y="863.50"></text></g><g><title>MethodHandles::resolve_MemberName (23 samples, 0.02%)</title><rect x="51.8277%" y="837" width="0.0152%" height="15" fill="rgb(230,84,2)" fg:x="78292" fg:w="23"/><text x="52.0777%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (26 samples, 0.02%)</title><rect x="51.8615%" y="821" width="0.0172%" height="15" fill="rgb(220,102,14)" fg:x="78343" fg:w="26"/><text x="52.1115%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool (24 samples, 0.02%)</title><rect x="51.8787%" y="773" width="0.0159%" height="15" fill="rgb(240,10,32)" fg:x="78369" fg:w="24"/><text x="52.1287%" y="783.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (23 samples, 0.02%)</title><rect x="51.8794%" y="757" width="0.0152%" height="15" fill="rgb(215,47,27)" fg:x="78370" fg:w="23"/><text x="52.1294%" y="767.50"></text></g><g><title>SymbolTable::lookup_only (19 samples, 0.01%)</title><rect x="51.8820%" y="741" width="0.0126%" height="15" fill="rgb(233,188,43)" fg:x="78374" fg:w="19"/><text x="52.1320%" y="751.50"></text></g><g><title>ClassFileParser::ClassFileParser (37 samples, 0.02%)</title><rect x="51.8787%" y="805" width="0.0245%" height="15" fill="rgb(253,190,1)" fg:x="78369" fg:w="37"/><text x="52.1287%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (37 samples, 0.02%)</title><rect x="51.8787%" y="789" width="0.0245%" height="15" fill="rgb(206,114,52)" fg:x="78369" fg:w="37"/><text x="52.1287%" y="799.50"></text></g><g><title>KlassFactory::create_from_stream (55 samples, 0.04%)</title><rect x="51.8787%" y="821" width="0.0364%" height="15" fill="rgb(233,120,37)" fg:x="78369" fg:w="55"/><text x="52.1287%" y="831.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (90 samples, 0.06%)</title><rect x="51.8575%" y="853" width="0.0596%" height="15" fill="rgb(214,52,39)" fg:x="78337" fg:w="90"/><text x="52.1075%" y="863.50"></text></g><g><title>SystemDictionary::parse_stream (88 samples, 0.06%)</title><rect x="51.8588%" y="837" width="0.0583%" height="15" fill="rgb(223,80,29)" fg:x="78339" fg:w="88"/><text x="52.1088%" y="847.50"></text></g><g><title>[perf-983083.map] (4,639 samples, 3.07%)</title><rect x="48.8865%" y="869" width="3.0709%" height="15" fill="rgb(230,101,40)" fg:x="73849" fg:w="4639"/><text x="49.1365%" y="879.50">[pe..</text></g><g><title>SharedRuntime::find_callee_info_helper (24 samples, 0.02%)</title><rect x="51.9833%" y="837" width="0.0159%" height="15" fill="rgb(219,211,8)" fg:x="78527" fg:w="24"/><text x="52.2333%" y="847.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (41 samples, 0.03%)</title><rect x="51.9740%" y="853" width="0.0271%" height="15" fill="rgb(252,126,28)" fg:x="78513" fg:w="41"/><text x="52.2240%" y="863.50"></text></g><g><title>generic_file_buffered_read (40 samples, 0.03%)</title><rect x="52.0296%" y="709" width="0.0265%" height="15" fill="rgb(215,56,38)" fg:x="78597" fg:w="40"/><text x="52.2796%" y="719.50"></text></g><g><title>new_sync_read (45 samples, 0.03%)</title><rect x="52.0283%" y="725" width="0.0298%" height="15" fill="rgb(249,55,44)" fg:x="78595" fg:w="45"/><text x="52.2783%" y="735.50"></text></g><g><title>__libc_read (59 samples, 0.04%)</title><rect x="52.0210%" y="821" width="0.0391%" height="15" fill="rgb(220,221,32)" fg:x="78584" fg:w="59"/><text x="52.2710%" y="831.50"></text></g><g><title>__libc_read (58 samples, 0.04%)</title><rect x="52.0217%" y="805" width="0.0384%" height="15" fill="rgb(212,216,41)" fg:x="78585" fg:w="58"/><text x="52.2717%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.04%)</title><rect x="52.0237%" y="789" width="0.0364%" height="15" fill="rgb(228,213,43)" fg:x="78588" fg:w="55"/><text x="52.2737%" y="799.50"></text></g><g><title>do_syscall_64 (54 samples, 0.04%)</title><rect x="52.0243%" y="773" width="0.0357%" height="15" fill="rgb(211,31,26)" fg:x="78589" fg:w="54"/><text x="52.2743%" y="783.50"></text></g><g><title>ksys_read (54 samples, 0.04%)</title><rect x="52.0243%" y="757" width="0.0357%" height="15" fill="rgb(229,202,19)" fg:x="78589" fg:w="54"/><text x="52.2743%" y="767.50"></text></g><g><title>vfs_read (51 samples, 0.03%)</title><rect x="52.0263%" y="741" width="0.0338%" height="15" fill="rgb(229,105,46)" fg:x="78592" fg:w="51"/><text x="52.2763%" y="751.50"></text></g><g><title>handleRead (60 samples, 0.04%)</title><rect x="52.0210%" y="837" width="0.0397%" height="15" fill="rgb(235,108,1)" fg:x="78584" fg:w="60"/><text x="52.2710%" y="847.50"></text></g><g><title>readBytes (76 samples, 0.05%)</title><rect x="52.0184%" y="853" width="0.0503%" height="15" fill="rgb(245,111,35)" fg:x="78580" fg:w="76"/><text x="52.2684%" y="863.50"></text></g><g><title>[unknown] (169 samples, 0.11%)</title><rect x="51.9575%" y="869" width="0.1119%" height="15" fill="rgb(219,185,31)" fg:x="78488" fg:w="169"/><text x="52.2075%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (266 samples, 0.18%)</title><rect x="52.0859%" y="805" width="0.1761%" height="15" fill="rgb(214,4,43)" fg:x="78682" fg:w="266"/><text x="52.3359%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (259 samples, 0.17%)</title><rect x="52.0905%" y="789" width="0.1715%" height="15" fill="rgb(235,227,40)" fg:x="78689" fg:w="259"/><text x="52.3405%" y="799.50"></text></g><g><title>native_write_msr (259 samples, 0.17%)</title><rect x="52.0905%" y="773" width="0.1715%" height="15" fill="rgb(230,88,30)" fg:x="78689" fg:w="259"/><text x="52.3405%" y="783.50"></text></g><g><title>schedule_tail (279 samples, 0.18%)</title><rect x="52.0826%" y="837" width="0.1847%" height="15" fill="rgb(216,217,1)" fg:x="78677" fg:w="279"/><text x="52.3326%" y="847.50"></text></g><g><title>finish_task_switch (277 samples, 0.18%)</title><rect x="52.0839%" y="821" width="0.1834%" height="15" fill="rgb(248,139,50)" fg:x="78679" fg:w="277"/><text x="52.3339%" y="831.50"></text></g><g><title>ret_from_fork (290 samples, 0.19%)</title><rect x="52.0780%" y="853" width="0.1920%" height="15" fill="rgb(233,1,21)" fg:x="78670" fg:w="290"/><text x="52.3280%" y="863.50"></text></g><g><title>SystemDictionary::initialize_preloaded_classes (22 samples, 0.01%)</title><rect x="52.2825%" y="741" width="0.0146%" height="15" fill="rgb(215,183,12)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="751.50"></text></g><g><title>SystemDictionary::initialize_wk_klasses_until (22 samples, 0.01%)</title><rect x="52.2825%" y="725" width="0.0146%" height="15" fill="rgb(229,104,42)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="735.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (22 samples, 0.01%)</title><rect x="52.2825%" y="709" width="0.0146%" height="15" fill="rgb(243,34,48)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="719.50"></text></g><g><title>SystemDictionary::load_instance_class (22 samples, 0.01%)</title><rect x="52.2825%" y="693" width="0.0146%" height="15" fill="rgb(239,11,44)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="703.50"></text></g><g><title>ClassLoader::load_class (22 samples, 0.01%)</title><rect x="52.2825%" y="677" width="0.0146%" height="15" fill="rgb(231,98,35)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="687.50"></text></g><g><title>KlassFactory::create_from_stream (22 samples, 0.01%)</title><rect x="52.2825%" y="661" width="0.0146%" height="15" fill="rgb(233,28,25)" fg:x="78979" fg:w="22"/><text x="52.5325%" y="671.50"></text></g><g><title>universe2_init (24 samples, 0.02%)</title><rect x="52.2818%" y="773" width="0.0159%" height="15" fill="rgb(234,123,11)" fg:x="78978" fg:w="24"/><text x="52.5318%" y="783.50"></text></g><g><title>Universe::genesis (24 samples, 0.02%)</title><rect x="52.2818%" y="757" width="0.0159%" height="15" fill="rgb(220,69,3)" fg:x="78978" fg:w="24"/><text x="52.5318%" y="767.50"></text></g><g><title>init_globals (44 samples, 0.03%)</title><rect x="52.2765%" y="789" width="0.0291%" height="15" fill="rgb(214,64,36)" fg:x="78970" fg:w="44"/><text x="52.5265%" y="799.50"></text></g><g><title>JNI_CreateJavaVM (55 samples, 0.04%)</title><rect x="52.2706%" y="821" width="0.0364%" height="15" fill="rgb(211,138,32)" fg:x="78961" fg:w="55"/><text x="52.5206%" y="831.50"></text></g><g><title>Threads::create_vm (55 samples, 0.04%)</title><rect x="52.2706%" y="805" width="0.0364%" height="15" fill="rgb(213,118,47)" fg:x="78961" fg:w="55"/><text x="52.5206%" y="815.50"></text></g><g><title>JavaMain (57 samples, 0.04%)</title><rect x="52.2706%" y="837" width="0.0377%" height="15" fill="rgb(243,124,49)" fg:x="78961" fg:w="57"/><text x="52.5206%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="52.3202%" y="581" width="0.0179%" height="15" fill="rgb(221,30,28)" fg:x="79036" fg:w="27"/><text x="52.5702%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.02%)</title><rect x="52.3202%" y="565" width="0.0179%" height="15" fill="rgb(246,37,13)" fg:x="79036" fg:w="27"/><text x="52.5702%" y="575.50"></text></g><g><title>native_write_msr (27 samples, 0.02%)</title><rect x="52.3202%" y="549" width="0.0179%" height="15" fill="rgb(249,66,14)" fg:x="79036" fg:w="27"/><text x="52.5702%" y="559.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="52.3202%" y="597" width="0.0192%" height="15" fill="rgb(213,166,5)" fg:x="79036" fg:w="29"/><text x="52.5702%" y="607.50"></text></g><g><title>__pthread_cond_wait (33 samples, 0.02%)</title><rect x="52.3183%" y="773" width="0.0218%" height="15" fill="rgb(221,66,24)" fg:x="79033" fg:w="33"/><text x="52.5683%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (33 samples, 0.02%)</title><rect x="52.3183%" y="757" width="0.0218%" height="15" fill="rgb(210,132,17)" fg:x="79033" fg:w="33"/><text x="52.5683%" y="767.50"></text></g><g><title>futex_wait_cancelable (33 samples, 0.02%)</title><rect x="52.3183%" y="741" width="0.0218%" height="15" fill="rgb(243,202,5)" fg:x="79033" fg:w="33"/><text x="52.5683%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="52.3189%" y="725" width="0.0212%" height="15" fill="rgb(233,70,48)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="735.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="52.3189%" y="709" width="0.0212%" height="15" fill="rgb(238,41,26)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="719.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.02%)</title><rect x="52.3189%" y="693" width="0.0212%" height="15" fill="rgb(241,19,31)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="703.50"></text></g><g><title>do_futex (32 samples, 0.02%)</title><rect x="52.3189%" y="677" width="0.0212%" height="15" fill="rgb(214,76,10)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="687.50"></text></g><g><title>futex_wait (32 samples, 0.02%)</title><rect x="52.3189%" y="661" width="0.0212%" height="15" fill="rgb(254,202,22)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="671.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.02%)</title><rect x="52.3189%" y="645" width="0.0212%" height="15" fill="rgb(214,72,24)" fg:x="79034" fg:w="32"/><text x="52.5689%" y="655.50"></text></g><g><title>schedule (31 samples, 0.02%)</title><rect x="52.3196%" y="629" width="0.0205%" height="15" fill="rgb(221,92,46)" fg:x="79035" fg:w="31"/><text x="52.5696%" y="639.50"></text></g><g><title>__schedule (31 samples, 0.02%)</title><rect x="52.3196%" y="613" width="0.0205%" height="15" fill="rgb(246,13,50)" fg:x="79035" fg:w="31"/><text x="52.5696%" y="623.50"></text></g><g><title>Monitor::wait (43 samples, 0.03%)</title><rect x="52.3130%" y="821" width="0.0285%" height="15" fill="rgb(240,165,38)" fg:x="79025" fg:w="43"/><text x="52.5630%" y="831.50"></text></g><g><title>Monitor::IWait (43 samples, 0.03%)</title><rect x="52.3130%" y="805" width="0.0285%" height="15" fill="rgb(241,24,51)" fg:x="79025" fg:w="43"/><text x="52.5630%" y="815.50"></text></g><g><title>os::PlatformEvent::park (36 samples, 0.02%)</title><rect x="52.3176%" y="789" width="0.0238%" height="15" fill="rgb(227,51,44)" fg:x="79032" fg:w="36"/><text x="52.5676%" y="799.50"></text></g><g><title>JavaThread::run (23 samples, 0.02%)</title><rect x="52.3414%" y="805" width="0.0152%" height="15" fill="rgb(231,121,3)" fg:x="79068" fg:w="23"/><text x="52.5914%" y="815.50"></text></g><g><title>Thread::call_run (24 samples, 0.02%)</title><rect x="52.3414%" y="821" width="0.0159%" height="15" fill="rgb(245,3,41)" fg:x="79068" fg:w="24"/><text x="52.5914%" y="831.50"></text></g><g><title>os::current_stack_base (16 samples, 0.01%)</title><rect x="52.3613%" y="805" width="0.0106%" height="15" fill="rgb(214,13,26)" fg:x="79098" fg:w="16"/><text x="52.6113%" y="815.50"></text></g><g><title>pthread_getattr_np (16 samples, 0.01%)</title><rect x="52.3613%" y="789" width="0.0106%" height="15" fill="rgb(252,75,11)" fg:x="79098" fg:w="16"/><text x="52.6113%" y="799.50"></text></g><g><title>Thread::record_stack_base_and_size (20 samples, 0.01%)</title><rect x="52.3600%" y="821" width="0.0132%" height="15" fill="rgb(218,226,17)" fg:x="79096" fg:w="20"/><text x="52.6100%" y="831.50"></text></g><g><title>__GI___clone (461 samples, 0.31%)</title><rect x="52.0693%" y="869" width="0.3052%" height="15" fill="rgb(248,89,38)" fg:x="78657" fg:w="461"/><text x="52.3193%" y="879.50"></text></g><g><title>start_thread (158 samples, 0.10%)</title><rect x="52.2699%" y="853" width="0.1046%" height="15" fill="rgb(237,73,46)" fg:x="78960" fg:w="158"/><text x="52.5199%" y="863.50"></text></g><g><title>thread_native_entry (94 samples, 0.06%)</title><rect x="52.3123%" y="837" width="0.0622%" height="15" fill="rgb(242,78,33)" fg:x="79024" fg:w="94"/><text x="52.5623%" y="847.50"></text></g><g><title>asm_exc_page_fault (21 samples, 0.01%)</title><rect x="52.3778%" y="869" width="0.0139%" height="15" fill="rgb(235,60,3)" fg:x="79123" fg:w="21"/><text x="52.6278%" y="879.50"></text></g><g><title>java (5,553 samples, 3.68%)</title><rect x="48.7230%" y="885" width="3.6760%" height="15" fill="rgb(216,172,19)" fg:x="73602" fg:w="5553"/><text x="48.9730%" y="895.50">java</text></g><g><title>[[heap]] (78 samples, 0.05%)</title><rect x="52.3997%" y="869" width="0.0516%" height="15" fill="rgb(227,6,42)" fg:x="79156" fg:w="78"/><text x="52.6497%" y="879.50"></text></g><g><title>[[stack]] (41 samples, 0.03%)</title><rect x="52.4513%" y="869" width="0.0271%" height="15" fill="rgb(223,207,42)" fg:x="79234" fg:w="41"/><text x="52.7013%" y="879.50"></text></g><g><title>[anon] (27 samples, 0.02%)</title><rect x="52.4785%" y="869" width="0.0179%" height="15" fill="rgb(246,138,30)" fg:x="79275" fg:w="27"/><text x="52.7285%" y="879.50"></text></g><g><title>copy_process (24 samples, 0.02%)</title><rect x="52.5043%" y="773" width="0.0159%" height="15" fill="rgb(251,199,47)" fg:x="79314" fg:w="24"/><text x="52.7543%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="52.5043%" y="837" width="0.0212%" height="15" fill="rgb(228,218,44)" fg:x="79314" fg:w="32"/><text x="52.7543%" y="847.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="52.5043%" y="821" width="0.0212%" height="15" fill="rgb(220,68,6)" fg:x="79314" fg:w="32"/><text x="52.7543%" y="831.50"></text></g><g><title>__do_sys_clone (32 samples, 0.02%)</title><rect x="52.5043%" y="805" width="0.0212%" height="15" fill="rgb(240,60,26)" fg:x="79314" fg:w="32"/><text x="52.7543%" y="815.50"></text></g><g><title>kernel_clone (32 samples, 0.02%)</title><rect x="52.5043%" y="789" width="0.0212%" height="15" fill="rgb(211,200,19)" fg:x="79314" fg:w="32"/><text x="52.7543%" y="799.50"></text></g><g><title>__GI___clone (33 samples, 0.02%)</title><rect x="52.5043%" y="853" width="0.0218%" height="15" fill="rgb(242,145,30)" fg:x="79314" fg:w="33"/><text x="52.7543%" y="863.50"></text></g><g><title>[unknown] (173 samples, 0.11%)</title><rect x="52.5016%" y="869" width="0.1145%" height="15" fill="rgb(225,64,13)" fg:x="79310" fg:w="173"/><text x="52.7516%" y="879.50"></text></g><g><title>calculate_sigpending (23 samples, 0.02%)</title><rect x="52.6287%" y="837" width="0.0152%" height="15" fill="rgb(218,103,35)" fg:x="79502" fg:w="23"/><text x="52.8787%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (1,748 samples, 1.16%)</title><rect x="52.6631%" y="805" width="1.1571%" height="15" fill="rgb(216,93,46)" fg:x="79554" fg:w="1748"/><text x="52.9131%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,730 samples, 1.15%)</title><rect x="52.6751%" y="789" width="1.1452%" height="15" fill="rgb(225,159,27)" fg:x="79572" fg:w="1730"/><text x="52.9251%" y="799.50"></text></g><g><title>native_write_msr (1,726 samples, 1.14%)</title><rect x="52.6777%" y="773" width="1.1426%" height="15" fill="rgb(225,204,11)" fg:x="79576" fg:w="1726"/><text x="52.9277%" y="783.50"></text></g><g><title>irq_work_run (25 samples, 0.02%)</title><rect x="53.8296%" y="741" width="0.0165%" height="15" fill="rgb(205,56,4)" fg:x="81316" fg:w="25"/><text x="54.0796%" y="751.50"></text></g><g><title>irq_work_run_list (25 samples, 0.02%)</title><rect x="53.8296%" y="725" width="0.0165%" height="15" fill="rgb(206,6,35)" fg:x="81316" fg:w="25"/><text x="54.0796%" y="735.50"></text></g><g><title>irq_work_single (25 samples, 0.02%)</title><rect x="53.8296%" y="709" width="0.0165%" height="15" fill="rgb(247,73,52)" fg:x="81316" fg:w="25"/><text x="54.0796%" y="719.50"></text></g><g><title>perf_pending_event (25 samples, 0.02%)</title><rect x="53.8296%" y="693" width="0.0165%" height="15" fill="rgb(246,97,4)" fg:x="81316" fg:w="25"/><text x="54.0796%" y="703.50"></text></g><g><title>perf_event_wakeup (24 samples, 0.02%)</title><rect x="53.8302%" y="677" width="0.0159%" height="15" fill="rgb(212,37,15)" fg:x="81317" fg:w="24"/><text x="54.0802%" y="687.50"></text></g><g><title>__wake_up_common_lock (23 samples, 0.02%)</title><rect x="53.8309%" y="661" width="0.0152%" height="15" fill="rgb(208,130,40)" fg:x="81318" fg:w="23"/><text x="54.0809%" y="671.50"></text></g><g><title>__wake_up_common (23 samples, 0.02%)</title><rect x="53.8309%" y="645" width="0.0152%" height="15" fill="rgb(236,55,29)" fg:x="81318" fg:w="23"/><text x="54.0809%" y="655.50"></text></g><g><title>pollwake (21 samples, 0.01%)</title><rect x="53.8322%" y="629" width="0.0139%" height="15" fill="rgb(209,156,45)" fg:x="81320" fg:w="21"/><text x="54.0822%" y="639.50"></text></g><g><title>try_to_wake_up (18 samples, 0.01%)</title><rect x="53.8342%" y="613" width="0.0119%" height="15" fill="rgb(249,107,4)" fg:x="81323" fg:w="18"/><text x="54.0842%" y="623.50"></text></g><g><title>asm_call_sysvec_on_stack (28 samples, 0.02%)</title><rect x="53.8289%" y="773" width="0.0185%" height="15" fill="rgb(227,7,13)" fg:x="81315" fg:w="28"/><text x="54.0789%" y="783.50"></text></g><g><title>__sysvec_irq_work (27 samples, 0.02%)</title><rect x="53.8296%" y="757" width="0.0179%" height="15" fill="rgb(250,129,14)" fg:x="81316" fg:w="27"/><text x="54.0796%" y="767.50"></text></g><g><title>asm_sysvec_irq_work (41 samples, 0.03%)</title><rect x="53.8209%" y="805" width="0.0271%" height="15" fill="rgb(229,92,13)" fg:x="81303" fg:w="41"/><text x="54.0709%" y="815.50"></text></g><g><title>sysvec_irq_work (29 samples, 0.02%)</title><rect x="53.8289%" y="789" width="0.0192%" height="15" fill="rgb(245,98,39)" fg:x="81315" fg:w="29"/><text x="54.0789%" y="799.50"></text></g><g><title>schedule_tail (1,821 samples, 1.21%)</title><rect x="52.6439%" y="837" width="1.2055%" height="15" fill="rgb(234,135,48)" fg:x="79525" fg:w="1821"/><text x="52.8939%" y="847.50"></text></g><g><title>finish_task_switch (1,818 samples, 1.20%)</title><rect x="52.6459%" y="821" width="1.2035%" height="15" fill="rgb(230,98,28)" fg:x="79528" fg:w="1818"/><text x="52.8959%" y="831.50"></text></g><g><title>ret_from_fork (1,872 samples, 1.24%)</title><rect x="52.6281%" y="853" width="1.2392%" height="15" fill="rgb(223,121,0)" fg:x="79501" fg:w="1872"/><text x="52.8781%" y="863.50"></text></g><g><title>syscall_exit_to_user_mode (27 samples, 0.02%)</title><rect x="53.8494%" y="837" width="0.0179%" height="15" fill="rgb(234,173,33)" fg:x="81346" fg:w="27"/><text x="54.0994%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (26 samples, 0.02%)</title><rect x="53.8501%" y="821" width="0.0172%" height="15" fill="rgb(245,47,8)" fg:x="81347" fg:w="26"/><text x="54.1001%" y="831.50"></text></g><g><title>switch_fpu_return (18 samples, 0.01%)</title><rect x="53.8554%" y="805" width="0.0119%" height="15" fill="rgb(205,17,20)" fg:x="81355" fg:w="18"/><text x="54.1054%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (278 samples, 0.18%)</title><rect x="53.9560%" y="629" width="0.1840%" height="15" fill="rgb(232,151,16)" fg:x="81507" fg:w="278"/><text x="54.2060%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (276 samples, 0.18%)</title><rect x="53.9573%" y="613" width="0.1827%" height="15" fill="rgb(208,30,32)" fg:x="81509" fg:w="276"/><text x="54.2073%" y="623.50"></text></g><g><title>native_write_msr (275 samples, 0.18%)</title><rect x="53.9580%" y="597" width="0.1820%" height="15" fill="rgb(254,26,3)" fg:x="81510" fg:w="275"/><text x="54.2080%" y="607.50"></text></g><g><title>finish_task_switch (292 samples, 0.19%)</title><rect x="53.9514%" y="645" width="0.1933%" height="15" fill="rgb(240,177,30)" fg:x="81500" fg:w="292"/><text x="54.2014%" y="655.50"></text></g><g><title>futex_wait_queue_me (326 samples, 0.22%)</title><rect x="53.9375%" y="693" width="0.2158%" height="15" fill="rgb(248,76,44)" fg:x="81479" fg:w="326"/><text x="54.1875%" y="703.50"></text></g><g><title>schedule (322 samples, 0.21%)</title><rect x="53.9401%" y="677" width="0.2132%" height="15" fill="rgb(241,186,54)" fg:x="81483" fg:w="322"/><text x="54.1901%" y="687.50"></text></g><g><title>__schedule (319 samples, 0.21%)</title><rect x="53.9421%" y="661" width="0.2112%" height="15" fill="rgb(249,171,29)" fg:x="81486" fg:w="319"/><text x="54.1921%" y="671.50"></text></g><g><title>__x64_sys_futex (346 samples, 0.23%)</title><rect x="53.9335%" y="741" width="0.2290%" height="15" fill="rgb(237,151,44)" fg:x="81473" fg:w="346"/><text x="54.1835%" y="751.50"></text></g><g><title>do_futex (344 samples, 0.23%)</title><rect x="53.9348%" y="725" width="0.2277%" height="15" fill="rgb(228,174,30)" fg:x="81475" fg:w="344"/><text x="54.1848%" y="735.50"></text></g><g><title>futex_wait (343 samples, 0.23%)</title><rect x="53.9355%" y="709" width="0.2271%" height="15" fill="rgb(252,14,37)" fg:x="81476" fg:w="343"/><text x="54.1855%" y="719.50"></text></g><g><title>do_syscall_64 (348 samples, 0.23%)</title><rect x="53.9328%" y="757" width="0.2304%" height="15" fill="rgb(207,111,40)" fg:x="81472" fg:w="348"/><text x="54.1828%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (352 samples, 0.23%)</title><rect x="53.9328%" y="773" width="0.2330%" height="15" fill="rgb(248,171,54)" fg:x="81472" fg:w="352"/><text x="54.1828%" y="783.50"></text></g><g><title>__GI___pthread_mutex_lock (393 samples, 0.26%)</title><rect x="53.9063%" y="805" width="0.2602%" height="15" fill="rgb(211,127,2)" fg:x="81432" fg:w="393"/><text x="54.1563%" y="815.50"></text></g><g><title>__lll_lock_wait (362 samples, 0.24%)</title><rect x="53.9269%" y="789" width="0.2396%" height="15" fill="rgb(236,87,47)" fg:x="81463" fg:w="362"/><text x="54.1769%" y="799.50"></text></g><g><title>ttwu_do_activate (27 samples, 0.02%)</title><rect x="54.2433%" y="677" width="0.0179%" height="15" fill="rgb(223,190,45)" fg:x="81941" fg:w="27"/><text x="54.4933%" y="687.50"></text></g><g><title>__x64_sys_futex (103 samples, 0.07%)</title><rect x="54.1963%" y="757" width="0.0682%" height="15" fill="rgb(215,5,16)" fg:x="81870" fg:w="103"/><text x="54.4463%" y="767.50"></text></g><g><title>do_futex (103 samples, 0.07%)</title><rect x="54.1963%" y="741" width="0.0682%" height="15" fill="rgb(252,82,33)" fg:x="81870" fg:w="103"/><text x="54.4463%" y="751.50"></text></g><g><title>futex_wake (100 samples, 0.07%)</title><rect x="54.1983%" y="725" width="0.0662%" height="15" fill="rgb(247,213,44)" fg:x="81873" fg:w="100"/><text x="54.4483%" y="735.50"></text></g><g><title>wake_up_q (67 samples, 0.04%)</title><rect x="54.2201%" y="709" width="0.0444%" height="15" fill="rgb(205,196,44)" fg:x="81906" fg:w="67"/><text x="54.4701%" y="719.50"></text></g><g><title>try_to_wake_up (64 samples, 0.04%)</title><rect x="54.2221%" y="693" width="0.0424%" height="15" fill="rgb(237,96,54)" fg:x="81909" fg:w="64"/><text x="54.4721%" y="703.50"></text></g><g><title>do_syscall_64 (109 samples, 0.07%)</title><rect x="54.1943%" y="773" width="0.0722%" height="15" fill="rgb(230,113,34)" fg:x="81867" fg:w="109"/><text x="54.4443%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.08%)</title><rect x="54.1936%" y="789" width="0.0761%" height="15" fill="rgb(221,224,12)" fg:x="81866" fg:w="115"/><text x="54.4436%" y="799.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (155 samples, 0.10%)</title><rect x="54.1678%" y="805" width="0.1026%" height="15" fill="rgb(219,112,44)" fg:x="81827" fg:w="155"/><text x="54.4178%" y="815.50"></text></g><g><title>[libc-2.31.so] (24 samples, 0.02%)</title><rect x="54.3148%" y="677" width="0.0159%" height="15" fill="rgb(210,31,13)" fg:x="82049" fg:w="24"/><text x="54.5648%" y="687.50"></text></g><g><title>__GI___mprotect (24 samples, 0.02%)</title><rect x="54.3148%" y="661" width="0.0159%" height="15" fill="rgb(230,25,16)" fg:x="82049" fg:w="24"/><text x="54.5648%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="54.3154%" y="645" width="0.0152%" height="15" fill="rgb(246,108,53)" fg:x="82050" fg:w="23"/><text x="54.5654%" y="655.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="54.3154%" y="629" width="0.0152%" height="15" fill="rgb(241,172,50)" fg:x="82050" fg:w="23"/><text x="54.5654%" y="639.50"></text></g><g><title>__x64_sys_mprotect (23 samples, 0.02%)</title><rect x="54.3154%" y="613" width="0.0152%" height="15" fill="rgb(235,141,10)" fg:x="82050" fg:w="23"/><text x="54.5654%" y="623.50"></text></g><g><title>do_mprotect_pkey (22 samples, 0.01%)</title><rect x="54.3161%" y="597" width="0.0146%" height="15" fill="rgb(220,174,43)" fg:x="82051" fg:w="22"/><text x="54.5661%" y="607.50"></text></g><g><title>mprotect_fixup (20 samples, 0.01%)</title><rect x="54.3174%" y="581" width="0.0132%" height="15" fill="rgb(215,181,40)" fg:x="82053" fg:w="20"/><text x="54.5674%" y="591.50"></text></g><g><title>perf_event_mmap (17 samples, 0.01%)</title><rect x="54.3426%" y="549" width="0.0113%" height="15" fill="rgb(230,97,2)" fg:x="82091" fg:w="17"/><text x="54.5926%" y="559.50"></text></g><g><title>perf_iterate_sb (16 samples, 0.01%)</title><rect x="54.3432%" y="533" width="0.0106%" height="15" fill="rgb(211,25,27)" fg:x="82092" fg:w="16"/><text x="54.5932%" y="543.50"></text></g><g><title>do_mmap (42 samples, 0.03%)</title><rect x="54.3346%" y="581" width="0.0278%" height="15" fill="rgb(230,87,26)" fg:x="82079" fg:w="42"/><text x="54.5846%" y="591.50"></text></g><g><title>mmap_region (32 samples, 0.02%)</title><rect x="54.3413%" y="565" width="0.0212%" height="15" fill="rgb(227,160,17)" fg:x="82089" fg:w="32"/><text x="54.5913%" y="575.50"></text></g><g><title>do_syscall_64 (45 samples, 0.03%)</title><rect x="54.3346%" y="613" width="0.0298%" height="15" fill="rgb(244,85,34)" fg:x="82079" fg:w="45"/><text x="54.5846%" y="623.50"></text></g><g><title>vm_mmap_pgoff (45 samples, 0.03%)</title><rect x="54.3346%" y="597" width="0.0298%" height="15" fill="rgb(207,70,0)" fg:x="82079" fg:w="45"/><text x="54.5846%" y="607.50"></text></g><g><title>__GI___mmap64 (47 samples, 0.03%)</title><rect x="54.3340%" y="661" width="0.0311%" height="15" fill="rgb(223,129,7)" fg:x="82078" fg:w="47"/><text x="54.5840%" y="671.50"></text></g><g><title>__GI___mmap64 (47 samples, 0.03%)</title><rect x="54.3340%" y="645" width="0.0311%" height="15" fill="rgb(246,105,7)" fg:x="82078" fg:w="47"/><text x="54.5840%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.03%)</title><rect x="54.3346%" y="629" width="0.0305%" height="15" fill="rgb(215,154,42)" fg:x="82079" fg:w="46"/><text x="54.5846%" y="639.50"></text></g><g><title>__do_munmap (17 samples, 0.01%)</title><rect x="54.3651%" y="581" width="0.0113%" height="15" fill="rgb(220,215,30)" fg:x="82125" fg:w="17"/><text x="54.6151%" y="591.50"></text></g><g><title>__vm_munmap (19 samples, 0.01%)</title><rect x="54.3651%" y="597" width="0.0126%" height="15" fill="rgb(228,81,51)" fg:x="82125" fg:w="19"/><text x="54.6151%" y="607.50"></text></g><g><title>__GI_munmap (22 samples, 0.01%)</title><rect x="54.3651%" y="661" width="0.0146%" height="15" fill="rgb(247,71,54)" fg:x="82125" fg:w="22"/><text x="54.6151%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="54.3651%" y="645" width="0.0146%" height="15" fill="rgb(234,176,34)" fg:x="82125" fg:w="22"/><text x="54.6151%" y="655.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="54.3651%" y="629" width="0.0146%" height="15" fill="rgb(241,103,54)" fg:x="82125" fg:w="22"/><text x="54.6151%" y="639.50"></text></g><g><title>__x64_sys_munmap (22 samples, 0.01%)</title><rect x="54.3651%" y="613" width="0.0146%" height="15" fill="rgb(228,22,34)" fg:x="82125" fg:w="22"/><text x="54.6151%" y="623.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="54.3803%" y="613" width="0.0113%" height="15" fill="rgb(241,179,48)" fg:x="82148" fg:w="17"/><text x="54.6303%" y="623.50"></text></g><g><title>exc_page_fault (21 samples, 0.01%)</title><rect x="54.3797%" y="645" width="0.0139%" height="15" fill="rgb(235,167,37)" fg:x="82147" fg:w="21"/><text x="54.6297%" y="655.50"></text></g><g><title>do_user_addr_fault (20 samples, 0.01%)</title><rect x="54.3803%" y="629" width="0.0132%" height="15" fill="rgb(213,109,30)" fg:x="82148" fg:w="20"/><text x="54.6303%" y="639.50"></text></g><g><title>arena_get2 (122 samples, 0.08%)</title><rect x="54.3135%" y="709" width="0.0808%" height="15" fill="rgb(222,172,16)" fg:x="82047" fg:w="122"/><text x="54.5635%" y="719.50"></text></g><g><title>_int_new_arena (121 samples, 0.08%)</title><rect x="54.3141%" y="693" width="0.0801%" height="15" fill="rgb(233,192,5)" fg:x="82048" fg:w="121"/><text x="54.5641%" y="703.50"></text></g><g><title>new_heap (95 samples, 0.06%)</title><rect x="54.3313%" y="677" width="0.0629%" height="15" fill="rgb(247,189,41)" fg:x="82074" fg:w="95"/><text x="54.5813%" y="687.50"></text></g><g><title>asm_exc_page_fault (22 samples, 0.01%)</title><rect x="54.3797%" y="661" width="0.0146%" height="15" fill="rgb(218,134,47)" fg:x="82147" fg:w="22"/><text x="54.6297%" y="671.50"></text></g><g><title>__GI___libc_malloc (159 samples, 0.11%)</title><rect x="54.2896%" y="773" width="0.1053%" height="15" fill="rgb(216,29,3)" fg:x="82011" fg:w="159"/><text x="54.5396%" y="783.50"></text></g><g><title>tcache_init (124 samples, 0.08%)</title><rect x="54.3128%" y="757" width="0.0821%" height="15" fill="rgb(246,140,12)" fg:x="82046" fg:w="124"/><text x="54.5628%" y="767.50"></text></g><g><title>tcache_init (124 samples, 0.08%)</title><rect x="54.3128%" y="741" width="0.0821%" height="15" fill="rgb(230,136,11)" fg:x="82046" fg:w="124"/><text x="54.5628%" y="751.50"></text></g><g><title>arena_get2 (123 samples, 0.08%)</title><rect x="54.3135%" y="725" width="0.0814%" height="15" fill="rgb(247,22,47)" fg:x="82047" fg:w="123"/><text x="54.5635%" y="735.50"></text></g><g><title>operator new (166 samples, 0.11%)</title><rect x="54.2896%" y="789" width="0.1099%" height="15" fill="rgb(218,84,22)" fg:x="82011" fg:w="166"/><text x="54.5396%" y="799.50"></text></g><g><title>_int_free (21 samples, 0.01%)</title><rect x="54.4101%" y="773" width="0.0139%" height="15" fill="rgb(216,87,39)" fg:x="82193" fg:w="21"/><text x="54.6601%" y="783.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (240 samples, 0.16%)</title><rect x="54.2704%" y="805" width="0.1589%" height="15" fill="rgb(221,178,8)" fg:x="81982" fg:w="240"/><text x="54.5204%" y="815.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_manager (44 samples, 0.03%)</title><rect x="54.4002%" y="789" width="0.0291%" height="15" fill="rgb(230,42,11)" fg:x="82178" fg:w="44"/><text x="54.6502%" y="799.50"></text></g><g><title>__GI___pthread_mutex_lock (17 samples, 0.01%)</title><rect x="54.4300%" y="789" width="0.0113%" height="15" fill="rgb(237,229,4)" fg:x="82223" fg:w="17"/><text x="54.6800%" y="799.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (97 samples, 0.06%)</title><rect x="54.4412%" y="789" width="0.0642%" height="15" fill="rgb(222,31,33)" fg:x="82240" fg:w="97"/><text x="54.6912%" y="799.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;llvm::parallelForEach&lt;lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1}&gt;(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}&gt; (66 samples, 0.04%)</title><rect x="54.4617%" y="773" width="0.0437%" height="15" fill="rgb(210,17,39)" fg:x="82271" fg:w="66"/><text x="54.7117%" y="783.50"></text></g><g><title>lld::elf::computeIsPreemptible (44 samples, 0.03%)</title><rect x="54.4763%" y="757" width="0.0291%" height="15" fill="rgb(244,93,20)" fg:x="82293" fg:w="44"/><text x="54.7263%" y="767.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (125 samples, 0.08%)</title><rect x="54.4293%" y="805" width="0.0827%" height="15" fill="rgb(210,40,47)" fg:x="82222" fg:w="125"/><text x="54.6793%" y="815.50"></text></g><g><title>mark_wake_futex (36 samples, 0.02%)</title><rect x="54.6325%" y="645" width="0.0238%" height="15" fill="rgb(239,211,47)" fg:x="82529" fg:w="36"/><text x="54.8825%" y="655.50"></text></g><g><title>select_task_rq_fair (57 samples, 0.04%)</title><rect x="54.6742%" y="613" width="0.0377%" height="15" fill="rgb(251,223,49)" fg:x="82592" fg:w="57"/><text x="54.9242%" y="623.50"></text></g><g><title>update_cfs_rq_h_load (22 samples, 0.01%)</title><rect x="54.6974%" y="597" width="0.0146%" height="15" fill="rgb(221,149,5)" fg:x="82627" fg:w="22"/><text x="54.9474%" y="607.50"></text></g><g><title>enqueue_task_fair (64 samples, 0.04%)</title><rect x="54.7166%" y="597" width="0.0424%" height="15" fill="rgb(219,224,51)" fg:x="82656" fg:w="64"/><text x="54.9666%" y="607.50"></text></g><g><title>enqueue_entity (52 samples, 0.03%)</title><rect x="54.7246%" y="581" width="0.0344%" height="15" fill="rgb(223,7,8)" fg:x="82668" fg:w="52"/><text x="54.9746%" y="591.50"></text></g><g><title>update_load_avg (22 samples, 0.01%)</title><rect x="54.7444%" y="565" width="0.0146%" height="15" fill="rgb(241,217,22)" fg:x="82698" fg:w="22"/><text x="54.9944%" y="575.50"></text></g><g><title>ttwu_do_activate (156 samples, 0.10%)</title><rect x="54.7120%" y="613" width="0.1033%" height="15" fill="rgb(248,209,0)" fg:x="82649" fg:w="156"/><text x="54.9620%" y="623.50"></text></g><g><title>psi_task_change (85 samples, 0.06%)</title><rect x="54.7590%" y="597" width="0.0563%" height="15" fill="rgb(217,205,4)" fg:x="82720" fg:w="85"/><text x="55.0090%" y="607.50"></text></g><g><title>psi_group_change (67 samples, 0.04%)</title><rect x="54.7709%" y="581" width="0.0444%" height="15" fill="rgb(228,124,39)" fg:x="82738" fg:w="67"/><text x="55.0209%" y="591.50"></text></g><g><title>__x64_sys_futex (375 samples, 0.25%)</title><rect x="54.5935%" y="693" width="0.2482%" height="15" fill="rgb(250,116,42)" fg:x="82470" fg:w="375"/><text x="54.8435%" y="703.50"></text></g><g><title>do_futex (372 samples, 0.25%)</title><rect x="54.5955%" y="677" width="0.2463%" height="15" fill="rgb(223,202,9)" fg:x="82473" fg:w="372"/><text x="54.8455%" y="687.50"></text></g><g><title>futex_wake (369 samples, 0.24%)</title><rect x="54.5975%" y="661" width="0.2443%" height="15" fill="rgb(242,222,40)" fg:x="82476" fg:w="369"/><text x="54.8475%" y="671.50"></text></g><g><title>wake_up_q (276 samples, 0.18%)</title><rect x="54.6590%" y="645" width="0.1827%" height="15" fill="rgb(229,99,46)" fg:x="82569" fg:w="276"/><text x="54.9090%" y="655.50"></text></g><g><title>try_to_wake_up (274 samples, 0.18%)</title><rect x="54.6603%" y="629" width="0.1814%" height="15" fill="rgb(225,56,46)" fg:x="82571" fg:w="274"/><text x="54.9103%" y="639.50"></text></g><g><title>update_rq_clock (26 samples, 0.02%)</title><rect x="54.8245%" y="613" width="0.0172%" height="15" fill="rgb(227,94,5)" fg:x="82819" fg:w="26"/><text x="55.0745%" y="623.50"></text></g><g><title>do_syscall_64 (381 samples, 0.25%)</title><rect x="54.5908%" y="709" width="0.2522%" height="15" fill="rgb(205,112,38)" fg:x="82466" fg:w="381"/><text x="54.8408%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (384 samples, 0.25%)</title><rect x="54.5895%" y="725" width="0.2542%" height="15" fill="rgb(231,133,46)" fg:x="82464" fg:w="384"/><text x="54.8395%" y="735.50"></text></g><g><title>__condvar_dec_grefs (439 samples, 0.29%)</title><rect x="54.5544%" y="757" width="0.2906%" height="15" fill="rgb(217,16,9)" fg:x="82411" fg:w="439"/><text x="54.8044%" y="767.50"></text></g><g><title>futex_wake (396 samples, 0.26%)</title><rect x="54.5829%" y="741" width="0.2621%" height="15" fill="rgb(249,173,9)" fg:x="82454" fg:w="396"/><text x="54.8329%" y="751.50"></text></g><g><title>__condvar_fetch_add_wseq_acquire (17 samples, 0.01%)</title><rect x="54.8450%" y="757" width="0.0113%" height="15" fill="rgb(205,163,53)" fg:x="82850" fg:w="17"/><text x="55.0950%" y="767.50"></text></g><g><title>__x64_sys_futex (88 samples, 0.06%)</title><rect x="54.8735%" y="709" width="0.0583%" height="15" fill="rgb(217,54,41)" fg:x="82893" fg:w="88"/><text x="55.1235%" y="719.50"></text></g><g><title>do_futex (88 samples, 0.06%)</title><rect x="54.8735%" y="693" width="0.0583%" height="15" fill="rgb(228,216,12)" fg:x="82893" fg:w="88"/><text x="55.1235%" y="703.50"></text></g><g><title>futex_wake (86 samples, 0.06%)</title><rect x="54.8748%" y="677" width="0.0569%" height="15" fill="rgb(244,228,15)" fg:x="82895" fg:w="86"/><text x="55.1248%" y="687.50"></text></g><g><title>wake_up_q (36 samples, 0.02%)</title><rect x="54.9079%" y="661" width="0.0238%" height="15" fill="rgb(221,176,53)" fg:x="82945" fg:w="36"/><text x="55.1579%" y="671.50"></text></g><g><title>try_to_wake_up (35 samples, 0.02%)</title><rect x="54.9086%" y="645" width="0.0232%" height="15" fill="rgb(205,94,34)" fg:x="82946" fg:w="35"/><text x="55.1586%" y="655.50"></text></g><g><title>do_syscall_64 (92 samples, 0.06%)</title><rect x="54.8715%" y="725" width="0.0609%" height="15" fill="rgb(213,110,48)" fg:x="82890" fg:w="92"/><text x="55.1215%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (97 samples, 0.06%)</title><rect x="54.8708%" y="741" width="0.0642%" height="15" fill="rgb(236,142,28)" fg:x="82889" fg:w="97"/><text x="55.1208%" y="751.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (122 samples, 0.08%)</title><rect x="54.8576%" y="757" width="0.0808%" height="15" fill="rgb(225,135,29)" fg:x="82869" fg:w="122"/><text x="55.1076%" y="767.50"></text></g><g><title>__pthread_disable_asynccancel (34 samples, 0.02%)</title><rect x="54.9589%" y="741" width="0.0225%" height="15" fill="rgb(252,45,31)" fg:x="83022" fg:w="34"/><text x="55.2089%" y="751.50"></text></g><g><title>entry_SYSCALL_64 (20 samples, 0.01%)</title><rect x="54.9933%" y="741" width="0.0132%" height="15" fill="rgb(211,187,50)" fg:x="83074" fg:w="20"/><text x="55.2433%" y="751.50"></text></g><g><title>plist_add (32 samples, 0.02%)</title><rect x="55.1370%" y="645" width="0.0212%" height="15" fill="rgb(229,109,7)" fg:x="83291" fg:w="32"/><text x="55.3870%" y="655.50"></text></g><g><title>_raw_spin_lock (16 samples, 0.01%)</title><rect x="55.2204%" y="597" width="0.0106%" height="15" fill="rgb(251,131,51)" fg:x="83417" fg:w="16"/><text x="55.4704%" y="607.50"></text></g><g><title>__perf_event_task_sched_out (30 samples, 0.02%)</title><rect x="55.2138%" y="613" width="0.0199%" height="15" fill="rgb(251,180,35)" fg:x="83407" fg:w="30"/><text x="55.4638%" y="623.50"></text></g><g><title>update_cfs_group (25 samples, 0.02%)</title><rect x="55.2939%" y="581" width="0.0165%" height="15" fill="rgb(211,46,32)" fg:x="83528" fg:w="25"/><text x="55.5439%" y="591.50"></text></g><g><title>__calc_delta (18 samples, 0.01%)</title><rect x="55.3276%" y="565" width="0.0119%" height="15" fill="rgb(248,123,17)" fg:x="83579" fg:w="18"/><text x="55.5776%" y="575.50"></text></g><g><title>cpuacct_charge (20 samples, 0.01%)</title><rect x="55.3468%" y="565" width="0.0132%" height="15" fill="rgb(227,141,18)" fg:x="83608" fg:w="20"/><text x="55.5968%" y="575.50"></text></g><g><title>update_curr (80 samples, 0.05%)</title><rect x="55.3104%" y="581" width="0.0530%" height="15" fill="rgb(216,102,9)" fg:x="83553" fg:w="80"/><text x="55.5604%" y="591.50"></text></g><g><title>__update_load_avg_cfs_rq (17 samples, 0.01%)</title><rect x="55.3852%" y="565" width="0.0113%" height="15" fill="rgb(253,47,13)" fg:x="83666" fg:w="17"/><text x="55.6352%" y="575.50"></text></g><g><title>__update_load_avg_se (27 samples, 0.02%)</title><rect x="55.3965%" y="565" width="0.0179%" height="15" fill="rgb(226,93,23)" fg:x="83683" fg:w="27"/><text x="55.6465%" y="575.50"></text></g><g><title>dequeue_entity (229 samples, 0.15%)</title><rect x="55.2634%" y="597" width="0.1516%" height="15" fill="rgb(247,104,17)" fg:x="83482" fg:w="229"/><text x="55.5134%" y="607.50"></text></g><g><title>update_load_avg (78 samples, 0.05%)</title><rect x="55.3634%" y="581" width="0.0516%" height="15" fill="rgb(233,203,26)" fg:x="83633" fg:w="78"/><text x="55.6134%" y="591.50"></text></g><g><title>dequeue_task_fair (266 samples, 0.18%)</title><rect x="55.2435%" y="613" width="0.1761%" height="15" fill="rgb(244,98,49)" fg:x="83452" fg:w="266"/><text x="55.4935%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (8,089 samples, 5.35%)</title><rect x="55.4991%" y="597" width="5.3548%" height="15" fill="rgb(235,134,22)" fg:x="83838" fg:w="8089"/><text x="55.7491%" y="607.50">__perf_..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (8,032 samples, 5.32%)</title><rect x="55.5368%" y="581" width="5.3170%" height="15" fill="rgb(221,70,32)" fg:x="83895" fg:w="8032"/><text x="55.7868%" y="591.50">__intel..</text></g><g><title>native_write_msr (7,990 samples, 5.29%)</title><rect x="55.5646%" y="565" width="5.2892%" height="15" fill="rgb(238,15,50)" fg:x="83937" fg:w="7990"/><text x="55.8146%" y="575.50">native..</text></g><g><title>asm_sysvec_apic_timer_interrupt (18 samples, 0.01%)</title><rect x="60.8545%" y="597" width="0.0119%" height="15" fill="rgb(215,221,48)" fg:x="91928" fg:w="18"/><text x="61.1045%" y="607.50"></text></g><g><title>sysvec_apic_timer_interrupt (16 samples, 0.01%)</title><rect x="60.8558%" y="581" width="0.0106%" height="15" fill="rgb(236,73,3)" fg:x="91930" fg:w="16"/><text x="61.1058%" y="591.50"></text></g><g><title>ttwu_do_activate (21 samples, 0.01%)</title><rect x="60.9187%" y="389" width="0.0139%" height="15" fill="rgb(250,107,11)" fg:x="92025" fg:w="21"/><text x="61.1687%" y="399.50"></text></g><g><title>__wake_up_common (54 samples, 0.04%)</title><rect x="60.9028%" y="437" width="0.0357%" height="15" fill="rgb(242,39,14)" fg:x="92001" fg:w="54"/><text x="61.1528%" y="447.50"></text></g><g><title>pollwake (49 samples, 0.03%)</title><rect x="60.9061%" y="421" width="0.0324%" height="15" fill="rgb(248,164,37)" fg:x="92006" fg:w="49"/><text x="61.1561%" y="431.50"></text></g><g><title>try_to_wake_up (47 samples, 0.03%)</title><rect x="60.9074%" y="405" width="0.0311%" height="15" fill="rgb(217,60,12)" fg:x="92008" fg:w="47"/><text x="61.1574%" y="415.50"></text></g><g><title>irq_work_run (68 samples, 0.05%)</title><rect x="60.8949%" y="533" width="0.0450%" height="15" fill="rgb(240,125,29)" fg:x="91989" fg:w="68"/><text x="61.1449%" y="543.50"></text></g><g><title>irq_work_run_list (67 samples, 0.04%)</title><rect x="60.8955%" y="517" width="0.0444%" height="15" fill="rgb(208,207,28)" fg:x="91990" fg:w="67"/><text x="61.1455%" y="527.50"></text></g><g><title>irq_work_single (67 samples, 0.04%)</title><rect x="60.8955%" y="501" width="0.0444%" height="15" fill="rgb(209,159,27)" fg:x="91990" fg:w="67"/><text x="61.1455%" y="511.50"></text></g><g><title>perf_pending_event (67 samples, 0.04%)</title><rect x="60.8955%" y="485" width="0.0444%" height="15" fill="rgb(251,176,53)" fg:x="91990" fg:w="67"/><text x="61.1455%" y="495.50"></text></g><g><title>perf_event_wakeup (62 samples, 0.04%)</title><rect x="60.8988%" y="469" width="0.0410%" height="15" fill="rgb(211,85,7)" fg:x="91995" fg:w="62"/><text x="61.1488%" y="479.50"></text></g><g><title>__wake_up_common_lock (58 samples, 0.04%)</title><rect x="60.9015%" y="453" width="0.0384%" height="15" fill="rgb(216,64,54)" fg:x="91999" fg:w="58"/><text x="61.1515%" y="463.50"></text></g><g><title>asm_call_sysvec_on_stack (85 samples, 0.06%)</title><rect x="60.8863%" y="565" width="0.0563%" height="15" fill="rgb(217,54,24)" fg:x="91976" fg:w="85"/><text x="61.1363%" y="575.50"></text></g><g><title>__sysvec_irq_work (75 samples, 0.05%)</title><rect x="60.8929%" y="549" width="0.0496%" height="15" fill="rgb(208,206,53)" fg:x="91986" fg:w="75"/><text x="61.1429%" y="559.50"></text></g><g><title>asm_sysvec_irq_work (125 samples, 0.08%)</title><rect x="60.8677%" y="597" width="0.0827%" height="15" fill="rgb(251,74,39)" fg:x="91948" fg:w="125"/><text x="61.1177%" y="607.50"></text></g><g><title>sysvec_irq_work (101 samples, 0.07%)</title><rect x="60.8836%" y="581" width="0.0669%" height="15" fill="rgb(226,47,5)" fg:x="91972" fg:w="101"/><text x="61.1336%" y="591.50"></text></g><g><title>finish_task_switch (8,366 samples, 5.54%)</title><rect x="55.4196%" y="613" width="5.5381%" height="15" fill="rgb(234,111,33)" fg:x="83718" fg:w="8366"/><text x="55.6696%" y="623.50">finish_..</text></g><g><title>load_balance (17 samples, 0.01%)</title><rect x="60.9769%" y="581" width="0.0113%" height="15" fill="rgb(251,14,10)" fg:x="92113" fg:w="17"/><text x="61.2269%" y="591.50"></text></g><g><title>newidle_balance (41 samples, 0.03%)</title><rect x="60.9637%" y="597" width="0.0271%" height="15" fill="rgb(232,43,0)" fg:x="92093" fg:w="41"/><text x="61.2137%" y="607.50"></text></g><g><title>pick_next_task_fair (54 samples, 0.04%)</title><rect x="60.9578%" y="613" width="0.0357%" height="15" fill="rgb(222,68,43)" fg:x="92084" fg:w="54"/><text x="61.2078%" y="623.50"></text></g><g><title>pick_next_task_idle (26 samples, 0.02%)</title><rect x="60.9935%" y="613" width="0.0172%" height="15" fill="rgb(217,24,23)" fg:x="92138" fg:w="26"/><text x="61.2435%" y="623.50"></text></g><g><title>__update_idle_core (26 samples, 0.02%)</title><rect x="60.9935%" y="597" width="0.0172%" height="15" fill="rgb(229,209,14)" fg:x="92138" fg:w="26"/><text x="61.2435%" y="607.50"></text></g><g><title>psi_task_change (164 samples, 0.11%)</title><rect x="61.0107%" y="613" width="0.1086%" height="15" fill="rgb(250,149,48)" fg:x="92164" fg:w="164"/><text x="61.2607%" y="623.50"></text></g><g><title>psi_group_change (136 samples, 0.09%)</title><rect x="61.0292%" y="597" width="0.0900%" height="15" fill="rgb(210,120,37)" fg:x="92192" fg:w="136"/><text x="61.2792%" y="607.50"></text></g><g><title>record_times (35 samples, 0.02%)</title><rect x="61.0961%" y="581" width="0.0232%" height="15" fill="rgb(210,21,8)" fg:x="92293" fg:w="35"/><text x="61.3461%" y="591.50"></text></g><g><title>sched_clock_cpu (26 samples, 0.02%)</title><rect x="61.1021%" y="565" width="0.0172%" height="15" fill="rgb(243,145,7)" fg:x="92302" fg:w="26"/><text x="61.3521%" y="575.50"></text></g><g><title>sched_clock (22 samples, 0.01%)</title><rect x="61.1047%" y="549" width="0.0146%" height="15" fill="rgb(238,178,32)" fg:x="92306" fg:w="22"/><text x="61.3547%" y="559.50"></text></g><g><title>native_sched_clock (20 samples, 0.01%)</title><rect x="61.1060%" y="533" width="0.0132%" height="15" fill="rgb(222,4,10)" fg:x="92308" fg:w="20"/><text x="61.3560%" y="543.50"></text></g><g><title>futex_wait_queue_me (9,128 samples, 6.04%)</title><rect x="55.0986%" y="661" width="6.0426%" height="15" fill="rgb(239,7,37)" fg:x="83233" fg:w="9128"/><text x="55.3486%" y="671.50">futex_wa..</text></g><g><title>schedule (9,038 samples, 5.98%)</title><rect x="55.1581%" y="645" width="5.9830%" height="15" fill="rgb(215,31,37)" fg:x="83323" fg:w="9038"/><text x="55.4081%" y="655.50">schedule</text></g><g><title>__schedule (9,016 samples, 5.97%)</title><rect x="55.1727%" y="629" width="5.9684%" height="15" fill="rgb(224,83,33)" fg:x="83345" fg:w="9016"/><text x="55.4227%" y="639.50">__schedu..</text></g><g><title>update_rq_clock (20 samples, 0.01%)</title><rect x="61.1279%" y="613" width="0.0132%" height="15" fill="rgb(239,55,3)" fg:x="92341" fg:w="20"/><text x="61.3779%" y="623.50"></text></g><g><title>__get_user_nocheck_4 (19 samples, 0.01%)</title><rect x="61.1736%" y="645" width="0.0126%" height="15" fill="rgb(247,92,11)" fg:x="92410" fg:w="19"/><text x="61.4236%" y="655.50"></text></g><g><title>do_syscall_64 (9,356 samples, 6.19%)</title><rect x="55.0145%" y="725" width="6.1935%" height="15" fill="rgb(239,200,7)" fg:x="83106" fg:w="9356"/><text x="55.2645%" y="735.50">do_sysca..</text></g><g><title>__x64_sys_futex (9,334 samples, 6.18%)</title><rect x="55.0291%" y="709" width="6.1789%" height="15" fill="rgb(227,115,8)" fg:x="83128" fg:w="9334"/><text x="55.2791%" y="719.50">__x64_sy..</text></g><g><title>do_futex (9,313 samples, 6.17%)</title><rect x="55.0430%" y="693" width="6.1650%" height="15" fill="rgb(215,189,27)" fg:x="83149" fg:w="9313"/><text x="55.2930%" y="703.50">do_futex</text></g><g><title>futex_wait (9,280 samples, 6.14%)</title><rect x="55.0648%" y="677" width="6.1432%" height="15" fill="rgb(251,216,39)" fg:x="83182" fg:w="9280"/><text x="55.3148%" y="687.50">futex_wa..</text></g><g><title>futex_wait_setup (101 samples, 0.07%)</title><rect x="61.1411%" y="661" width="0.0669%" height="15" fill="rgb(207,29,47)" fg:x="92361" fg:w="101"/><text x="61.3911%" y="671.50"></text></g><g><title>hash_futex (16 samples, 0.01%)</title><rect x="61.1974%" y="645" width="0.0106%" height="15" fill="rgb(210,71,34)" fg:x="92446" fg:w="16"/><text x="61.4474%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (9,492 samples, 6.28%)</title><rect x="55.0066%" y="741" width="6.2835%" height="15" fill="rgb(253,217,51)" fg:x="83094" fg:w="9492"/><text x="55.2566%" y="751.50">entry_SY..</text></g><g><title>syscall_exit_to_user_mode (124 samples, 0.08%)</title><rect x="61.2080%" y="725" width="0.0821%" height="15" fill="rgb(222,117,46)" fg:x="92462" fg:w="124"/><text x="61.4580%" y="735.50"></text></g><g><title>exit_to_user_mode_prepare (115 samples, 0.08%)</title><rect x="61.2139%" y="709" width="0.0761%" height="15" fill="rgb(226,132,6)" fg:x="92471" fg:w="115"/><text x="61.4639%" y="719.50"></text></g><g><title>switch_fpu_return (103 samples, 0.07%)</title><rect x="61.2219%" y="693" width="0.0682%" height="15" fill="rgb(254,145,51)" fg:x="92483" fg:w="103"/><text x="61.4719%" y="703.50"></text></g><g><title>copy_kernel_to_fpregs (82 samples, 0.05%)</title><rect x="61.2358%" y="677" width="0.0543%" height="15" fill="rgb(231,199,27)" fg:x="92504" fg:w="82"/><text x="61.4858%" y="687.50"></text></g><g><title>__pthread_cond_wait (10,240 samples, 6.78%)</title><rect x="54.5220%" y="789" width="6.7787%" height="15" fill="rgb(245,158,14)" fg:x="82362" fg:w="10240"/><text x="54.7720%" y="799.50">__pthread..</text></g><g><title>__pthread_cond_wait_common (10,240 samples, 6.78%)</title><rect x="54.5220%" y="773" width="6.7787%" height="15" fill="rgb(240,113,14)" fg:x="82362" fg:w="10240"/><text x="54.7720%" y="783.50">__pthread..</text></g><g><title>futex_wait_cancelable (9,608 samples, 6.36%)</title><rect x="54.9404%" y="757" width="6.3603%" height="15" fill="rgb(210,20,13)" fg:x="82994" fg:w="9608"/><text x="55.1904%" y="767.50">futex_wa..</text></g><g><title>__perf_event_task_sched_in (236 samples, 0.16%)</title><rect x="61.3536%" y="613" width="0.1562%" height="15" fill="rgb(241,144,13)" fg:x="92682" fg:w="236"/><text x="61.6036%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (236 samples, 0.16%)</title><rect x="61.3536%" y="597" width="0.1562%" height="15" fill="rgb(235,43,34)" fg:x="92682" fg:w="236"/><text x="61.6036%" y="607.50"></text></g><g><title>native_write_msr (234 samples, 0.15%)</title><rect x="61.3549%" y="581" width="0.1549%" height="15" fill="rgb(208,36,20)" fg:x="92684" fg:w="234"/><text x="61.6049%" y="591.50"></text></g><g><title>finish_task_switch (244 samples, 0.16%)</title><rect x="61.3510%" y="629" width="0.1615%" height="15" fill="rgb(239,204,10)" fg:x="92678" fg:w="244"/><text x="61.6010%" y="639.50"></text></g><g><title>futex_wait_queue_me (286 samples, 0.19%)</title><rect x="61.3344%" y="677" width="0.1893%" height="15" fill="rgb(217,84,43)" fg:x="92653" fg:w="286"/><text x="61.5844%" y="687.50"></text></g><g><title>schedule (277 samples, 0.18%)</title><rect x="61.3404%" y="661" width="0.1834%" height="15" fill="rgb(241,170,50)" fg:x="92662" fg:w="277"/><text x="61.5904%" y="671.50"></text></g><g><title>__schedule (277 samples, 0.18%)</title><rect x="61.3404%" y="645" width="0.1834%" height="15" fill="rgb(226,205,29)" fg:x="92662" fg:w="277"/><text x="61.5904%" y="655.50"></text></g><g><title>do_syscall_64 (308 samples, 0.20%)</title><rect x="61.3291%" y="741" width="0.2039%" height="15" fill="rgb(233,113,1)" fg:x="92645" fg:w="308"/><text x="61.5791%" y="751.50"></text></g><g><title>__x64_sys_futex (306 samples, 0.20%)</title><rect x="61.3304%" y="725" width="0.2026%" height="15" fill="rgb(253,98,13)" fg:x="92647" fg:w="306"/><text x="61.5804%" y="735.50"></text></g><g><title>do_futex (306 samples, 0.20%)</title><rect x="61.3304%" y="709" width="0.2026%" height="15" fill="rgb(211,115,12)" fg:x="92647" fg:w="306"/><text x="61.5804%" y="719.50"></text></g><g><title>futex_wait (303 samples, 0.20%)</title><rect x="61.3324%" y="693" width="0.2006%" height="15" fill="rgb(208,12,16)" fg:x="92650" fg:w="303"/><text x="61.5824%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (315 samples, 0.21%)</title><rect x="61.3271%" y="757" width="0.2085%" height="15" fill="rgb(237,193,54)" fg:x="92642" fg:w="315"/><text x="61.5771%" y="767.50"></text></g><g><title>__pthread_mutex_cond_lock (356 samples, 0.24%)</title><rect x="61.3007%" y="789" width="0.2357%" height="15" fill="rgb(243,22,42)" fg:x="92602" fg:w="356"/><text x="61.5507%" y="799.50"></text></g><g><title>__lll_lock_wait (328 samples, 0.22%)</title><rect x="61.3192%" y="773" width="0.2171%" height="15" fill="rgb(233,151,36)" fg:x="92630" fg:w="328"/><text x="61.5692%" y="783.50"></text></g><g><title>std::condition_variable::wait (10,627 samples, 7.03%)</title><rect x="54.5121%" y="805" width="7.0349%" height="15" fill="rgb(237,57,45)" fg:x="82347" fg:w="10627"/><text x="54.7621%" y="815.50">std::cond..</text></g><g><title>pthread_cond_wait@plt (16 samples, 0.01%)</title><rect x="61.5363%" y="789" width="0.0106%" height="15" fill="rgb(221,88,17)" fg:x="92958" fg:w="16"/><text x="61.7863%" y="799.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (11,599 samples, 7.68%)</title><rect x="53.8732%" y="821" width="7.6783%" height="15" fill="rgb(230,79,15)" fg:x="81382" fg:w="11599"/><text x="54.1232%" y="831.50">llvm::paral..</text></g><g><title>__pthread_mutex_unlock_usercnt (17 samples, 0.01%)</title><rect x="61.5701%" y="789" width="0.0113%" height="15" fill="rgb(213,57,13)" fg:x="93009" fg:w="17"/><text x="61.8201%" y="799.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (16 samples, 0.01%)</title><rect x="61.5813%" y="789" width="0.0106%" height="15" fill="rgb(222,116,39)" fg:x="93026" fg:w="16"/><text x="61.8313%" y="799.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (24 samples, 0.02%)</title><rect x="61.5946%" y="773" width="0.0159%" height="15" fill="rgb(245,107,2)" fg:x="93046" fg:w="24"/><text x="61.8446%" y="783.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;llvm::parallelForEach&lt;lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1}&gt;(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}&gt; (22 samples, 0.01%)</title><rect x="61.5959%" y="757" width="0.0146%" height="15" fill="rgb(238,1,10)" fg:x="93048" fg:w="22"/><text x="61.8459%" y="767.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (34 samples, 0.02%)</title><rect x="61.5919%" y="789" width="0.0225%" height="15" fill="rgb(249,4,48)" fg:x="93042" fg:w="34"/><text x="61.8419%" y="799.50"></text></g><g><title>ttwu_do_activate (16 samples, 0.01%)</title><rect x="61.6416%" y="597" width="0.0106%" height="15" fill="rgb(223,151,18)" fg:x="93117" fg:w="16"/><text x="61.8916%" y="607.50"></text></g><g><title>__condvar_dec_grefs (48 samples, 0.03%)</title><rect x="61.6224%" y="741" width="0.0318%" height="15" fill="rgb(227,65,43)" fg:x="93088" fg:w="48"/><text x="61.8724%" y="751.50"></text></g><g><title>futex_wake (39 samples, 0.03%)</title><rect x="61.6283%" y="725" width="0.0258%" height="15" fill="rgb(218,40,45)" fg:x="93097" fg:w="39"/><text x="61.8783%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="61.6290%" y="709" width="0.0252%" height="15" fill="rgb(252,121,31)" fg:x="93098" fg:w="38"/><text x="61.8790%" y="719.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="61.6290%" y="693" width="0.0252%" height="15" fill="rgb(219,158,43)" fg:x="93098" fg:w="38"/><text x="61.8790%" y="703.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.03%)</title><rect x="61.6290%" y="677" width="0.0252%" height="15" fill="rgb(231,162,42)" fg:x="93098" fg:w="38"/><text x="61.8790%" y="687.50"></text></g><g><title>do_futex (38 samples, 0.03%)</title><rect x="61.6290%" y="661" width="0.0252%" height="15" fill="rgb(217,179,25)" fg:x="93098" fg:w="38"/><text x="61.8790%" y="671.50"></text></g><g><title>futex_wake (38 samples, 0.03%)</title><rect x="61.6290%" y="645" width="0.0252%" height="15" fill="rgb(206,212,31)" fg:x="93098" fg:w="38"/><text x="61.8790%" y="655.50"></text></g><g><title>wake_up_q (26 samples, 0.02%)</title><rect x="61.6369%" y="629" width="0.0172%" height="15" fill="rgb(235,144,12)" fg:x="93110" fg:w="26"/><text x="61.8869%" y="639.50"></text></g><g><title>try_to_wake_up (26 samples, 0.02%)</title><rect x="61.6369%" y="613" width="0.0172%" height="15" fill="rgb(213,51,10)" fg:x="93110" fg:w="26"/><text x="61.8869%" y="623.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="61.6555%" y="693" width="0.0106%" height="15" fill="rgb(231,145,14)" fg:x="93138" fg:w="16"/><text x="61.9055%" y="703.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="61.6555%" y="677" width="0.0106%" height="15" fill="rgb(235,15,28)" fg:x="93138" fg:w="16"/><text x="61.9055%" y="687.50"></text></g><g><title>futex_wake (16 samples, 0.01%)</title><rect x="61.6555%" y="661" width="0.0106%" height="15" fill="rgb(237,206,10)" fg:x="93138" fg:w="16"/><text x="61.9055%" y="671.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (18 samples, 0.01%)</title><rect x="61.6548%" y="741" width="0.0119%" height="15" fill="rgb(236,227,27)" fg:x="93137" fg:w="18"/><text x="61.9048%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="61.6555%" y="725" width="0.0113%" height="15" fill="rgb(246,83,35)" fg:x="93138" fg:w="17"/><text x="61.9055%" y="735.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="61.6555%" y="709" width="0.0113%" height="15" fill="rgb(220,136,24)" fg:x="93138" fg:w="17"/><text x="61.9055%" y="719.50"></text></g><g><title>dequeue_entity (30 samples, 0.02%)</title><rect x="61.7184%" y="581" width="0.0199%" height="15" fill="rgb(217,3,25)" fg:x="93233" fg:w="30"/><text x="61.9684%" y="591.50"></text></g><g><title>dequeue_task_fair (33 samples, 0.02%)</title><rect x="61.7177%" y="597" width="0.0218%" height="15" fill="rgb(239,24,14)" fg:x="93232" fg:w="33"/><text x="61.9677%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (1,175 samples, 0.78%)</title><rect x="61.7713%" y="581" width="0.7778%" height="15" fill="rgb(244,16,53)" fg:x="93313" fg:w="1175"/><text x="62.0213%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,167 samples, 0.77%)</title><rect x="61.7766%" y="565" width="0.7725%" height="15" fill="rgb(208,175,44)" fg:x="93321" fg:w="1167"/><text x="62.0266%" y="575.50"></text></g><g><title>native_write_msr (1,165 samples, 0.77%)</title><rect x="61.7779%" y="549" width="0.7712%" height="15" fill="rgb(252,18,48)" fg:x="93323" fg:w="1165"/><text x="62.0279%" y="559.50"></text></g><g><title>asm_sysvec_irq_work (20 samples, 0.01%)</title><rect x="62.5492%" y="581" width="0.0132%" height="15" fill="rgb(234,199,32)" fg:x="94488" fg:w="20"/><text x="62.7992%" y="591.50"></text></g><g><title>finish_task_switch (1,249 samples, 0.83%)</title><rect x="61.7396%" y="597" width="0.8268%" height="15" fill="rgb(225,77,54)" fg:x="93265" fg:w="1249"/><text x="61.9896%" y="607.50"></text></g><g><title>psi_task_change (16 samples, 0.01%)</title><rect x="62.5770%" y="597" width="0.0106%" height="15" fill="rgb(225,42,25)" fg:x="94530" fg:w="16"/><text x="62.8270%" y="607.50"></text></g><g><title>futex_wait_queue_me (1,359 samples, 0.90%)</title><rect x="61.6906%" y="645" width="0.8996%" height="15" fill="rgb(242,227,46)" fg:x="93191" fg:w="1359"/><text x="61.9406%" y="655.50"></text></g><g><title>schedule (1,339 samples, 0.89%)</title><rect x="61.7038%" y="629" width="0.8864%" height="15" fill="rgb(246,197,35)" fg:x="93211" fg:w="1339"/><text x="61.9538%" y="639.50"></text></g><g><title>__schedule (1,337 samples, 0.89%)</title><rect x="61.7051%" y="613" width="0.8851%" height="15" fill="rgb(215,159,26)" fg:x="93213" fg:w="1337"/><text x="61.9551%" y="623.50"></text></g><g><title>__x64_sys_futex (1,390 samples, 0.92%)</title><rect x="61.6773%" y="693" width="0.9202%" height="15" fill="rgb(212,194,50)" fg:x="93171" fg:w="1390"/><text x="61.9273%" y="703.50"></text></g><g><title>do_futex (1,386 samples, 0.92%)</title><rect x="61.6800%" y="677" width="0.9175%" height="15" fill="rgb(246,132,1)" fg:x="93175" fg:w="1386"/><text x="61.9300%" y="687.50"></text></g><g><title>futex_wait (1,383 samples, 0.92%)</title><rect x="61.6820%" y="661" width="0.9155%" height="15" fill="rgb(217,71,7)" fg:x="93178" fg:w="1383"/><text x="61.9320%" y="671.50"></text></g><g><title>do_syscall_64 (1,397 samples, 0.92%)</title><rect x="61.6734%" y="709" width="0.9248%" height="15" fill="rgb(252,59,32)" fg:x="93165" fg:w="1397"/><text x="61.9234%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,435 samples, 0.95%)</title><rect x="61.6720%" y="725" width="0.9499%" height="15" fill="rgb(253,204,25)" fg:x="93163" fg:w="1435"/><text x="61.9220%" y="735.50"></text></g><g><title>syscall_exit_to_user_mode (36 samples, 0.02%)</title><rect x="62.5981%" y="709" width="0.0238%" height="15" fill="rgb(232,21,16)" fg:x="94562" fg:w="36"/><text x="62.8481%" y="719.50"></text></g><g><title>exit_to_user_mode_prepare (33 samples, 0.02%)</title><rect x="62.6001%" y="693" width="0.0218%" height="15" fill="rgb(248,90,29)" fg:x="94565" fg:w="33"/><text x="62.8501%" y="703.50"></text></g><g><title>switch_fpu_return (29 samples, 0.02%)</title><rect x="62.6028%" y="677" width="0.0192%" height="15" fill="rgb(249,223,7)" fg:x="94569" fg:w="29"/><text x="62.8528%" y="687.50"></text></g><g><title>copy_kernel_to_fpregs (21 samples, 0.01%)</title><rect x="62.6081%" y="661" width="0.0139%" height="15" fill="rgb(231,119,42)" fg:x="94577" fg:w="21"/><text x="62.8581%" y="671.50"></text></g><g><title>__pthread_cond_wait (1,522 samples, 1.01%)</title><rect x="61.6151%" y="773" width="1.0075%" height="15" fill="rgb(215,41,35)" fg:x="93077" fg:w="1522"/><text x="61.8651%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (1,522 samples, 1.01%)</title><rect x="61.6151%" y="757" width="1.0075%" height="15" fill="rgb(220,44,45)" fg:x="93077" fg:w="1522"/><text x="61.8651%" y="767.50"></text></g><g><title>futex_wait_cancelable (1,443 samples, 0.96%)</title><rect x="61.6674%" y="741" width="0.9552%" height="15" fill="rgb(253,197,36)" fg:x="93156" fg:w="1443"/><text x="61.9174%" y="751.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="62.6312%" y="613" width="0.0192%" height="15" fill="rgb(245,225,54)" fg:x="94612" fg:w="29"/><text x="62.8812%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.02%)</title><rect x="62.6319%" y="597" width="0.0185%" height="15" fill="rgb(239,94,37)" fg:x="94613" fg:w="28"/><text x="62.8819%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="62.6319%" y="581" width="0.0185%" height="15" fill="rgb(242,217,10)" fg:x="94613" fg:w="28"/><text x="62.8819%" y="591.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="62.6319%" y="565" width="0.0185%" height="15" fill="rgb(250,193,7)" fg:x="94613" fg:w="28"/><text x="62.8819%" y="575.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.02%)</title><rect x="62.6279%" y="661" width="0.0238%" height="15" fill="rgb(230,104,19)" fg:x="94607" fg:w="36"/><text x="62.8779%" y="671.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="62.6286%" y="645" width="0.0232%" height="15" fill="rgb(230,181,4)" fg:x="94608" fg:w="35"/><text x="62.8786%" y="655.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="62.6286%" y="629" width="0.0232%" height="15" fill="rgb(216,219,49)" fg:x="94608" fg:w="35"/><text x="62.8786%" y="639.50"></text></g><g><title>do_syscall_64 (40 samples, 0.03%)</title><rect x="62.6273%" y="725" width="0.0265%" height="15" fill="rgb(254,144,0)" fg:x="94606" fg:w="40"/><text x="62.8773%" y="735.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.03%)</title><rect x="62.6279%" y="709" width="0.0258%" height="15" fill="rgb(205,209,38)" fg:x="94607" fg:w="39"/><text x="62.8779%" y="719.50"></text></g><g><title>do_futex (39 samples, 0.03%)</title><rect x="62.6279%" y="693" width="0.0258%" height="15" fill="rgb(240,21,42)" fg:x="94607" fg:w="39"/><text x="62.8779%" y="703.50"></text></g><g><title>futex_wait (39 samples, 0.03%)</title><rect x="62.6279%" y="677" width="0.0258%" height="15" fill="rgb(241,132,3)" fg:x="94607" fg:w="39"/><text x="62.8779%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (42 samples, 0.03%)</title><rect x="62.6273%" y="741" width="0.0278%" height="15" fill="rgb(225,14,2)" fg:x="94606" fg:w="42"/><text x="62.8773%" y="751.50"></text></g><g><title>__pthread_mutex_cond_lock (50 samples, 0.03%)</title><rect x="62.6226%" y="773" width="0.0331%" height="15" fill="rgb(210,141,35)" fg:x="94599" fg:w="50"/><text x="62.8726%" y="783.50"></text></g><g><title>__lll_lock_wait (46 samples, 0.03%)</title><rect x="62.6253%" y="757" width="0.0305%" height="15" fill="rgb(251,14,44)" fg:x="94603" fg:w="46"/><text x="62.8753%" y="767.50"></text></g><g><title>std::condition_variable::wait (1,574 samples, 1.04%)</title><rect x="61.6144%" y="789" width="1.0420%" height="15" fill="rgb(247,48,18)" fg:x="93076" fg:w="1574"/><text x="61.8644%" y="799.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (1,666 samples, 1.10%)</title><rect x="61.5542%" y="805" width="1.1029%" height="15" fill="rgb(225,0,40)" fg:x="92985" fg:w="1666"/><text x="61.8042%" y="815.50"></text></g><g><title>do_mmap (17 samples, 0.01%)</title><rect x="62.6590%" y="597" width="0.0113%" height="15" fill="rgb(221,31,33)" fg:x="94654" fg:w="17"/><text x="62.9090%" y="607.50"></text></g><g><title>__GI___mmap64 (22 samples, 0.01%)</title><rect x="62.6577%" y="677" width="0.0146%" height="15" fill="rgb(237,42,40)" fg:x="94652" fg:w="22"/><text x="62.9077%" y="687.50"></text></g><g><title>__GI___mmap64 (22 samples, 0.01%)</title><rect x="62.6577%" y="661" width="0.0146%" height="15" fill="rgb(233,51,29)" fg:x="94652" fg:w="22"/><text x="62.9077%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="62.6577%" y="645" width="0.0146%" height="15" fill="rgb(226,58,20)" fg:x="94652" fg:w="22"/><text x="62.9077%" y="655.50"></text></g><g><title>do_syscall_64 (22 samples, 0.01%)</title><rect x="62.6577%" y="629" width="0.0146%" height="15" fill="rgb(208,98,7)" fg:x="94652" fg:w="22"/><text x="62.9077%" y="639.50"></text></g><g><title>vm_mmap_pgoff (22 samples, 0.01%)</title><rect x="62.6577%" y="613" width="0.0146%" height="15" fill="rgb(228,143,44)" fg:x="94652" fg:w="22"/><text x="62.9077%" y="623.50"></text></g><g><title>arena_get2 (24 samples, 0.02%)</title><rect x="62.6577%" y="725" width="0.0159%" height="15" fill="rgb(246,55,38)" fg:x="94652" fg:w="24"/><text x="62.9077%" y="735.50"></text></g><g><title>_int_new_arena (24 samples, 0.02%)</title><rect x="62.6577%" y="709" width="0.0159%" height="15" fill="rgb(247,87,16)" fg:x="94652" fg:w="24"/><text x="62.9077%" y="719.50"></text></g><g><title>new_heap (24 samples, 0.02%)</title><rect x="62.6577%" y="693" width="0.0159%" height="15" fill="rgb(234,129,42)" fg:x="94652" fg:w="24"/><text x="62.9077%" y="703.50"></text></g><g><title>operator new (26 samples, 0.02%)</title><rect x="62.6571%" y="805" width="0.0172%" height="15" fill="rgb(220,82,16)" fg:x="94651" fg:w="26"/><text x="62.9071%" y="815.50"></text></g><g><title>__GI___libc_malloc (26 samples, 0.02%)</title><rect x="62.6571%" y="789" width="0.0172%" height="15" fill="rgb(211,88,4)" fg:x="94651" fg:w="26"/><text x="62.9071%" y="799.50"></text></g><g><title>tcache_init (26 samples, 0.02%)</title><rect x="62.6571%" y="773" width="0.0172%" height="15" fill="rgb(248,151,21)" fg:x="94651" fg:w="26"/><text x="62.9071%" y="783.50"></text></g><g><title>tcache_init (26 samples, 0.02%)</title><rect x="62.6571%" y="757" width="0.0172%" height="15" fill="rgb(238,163,6)" fg:x="94651" fg:w="26"/><text x="62.9071%" y="767.50"></text></g><g><title>arena_get2 (25 samples, 0.02%)</title><rect x="62.6577%" y="741" width="0.0165%" height="15" fill="rgb(209,183,11)" fg:x="94652" fg:w="25"/><text x="62.9077%" y="751.50"></text></g><g><title>[libstdc++.so.6.0.28] (13,310 samples, 8.81%)</title><rect x="53.8726%" y="837" width="8.8110%" height="15" fill="rgb(219,37,20)" fg:x="81381" fg:w="13310"/><text x="54.1226%" y="847.50">[libstdc++.s..</text></g><g><title>std::thread::_State_impl&lt;std::thread::_Invoker&lt;std::tuple&lt;llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::ThreadPoolExecutor(llvm::ThreadPoolStrategy)::{lambda()#1}&gt; &gt; &gt;::_M_run (1,706 samples, 1.13%)</title><rect x="61.5542%" y="821" width="1.1293%" height="15" fill="rgb(210,158,4)" fg:x="92985" fg:w="1706"/><text x="61.8042%" y="831.50"></text></g><g><title>tlb_finish_mmu (18 samples, 0.01%)</title><rect x="62.7146%" y="725" width="0.0119%" height="15" fill="rgb(221,167,53)" fg:x="94738" fg:w="18"/><text x="62.9646%" y="735.50"></text></g><g><title>flush_tlb_mm_range (16 samples, 0.01%)</title><rect x="62.7160%" y="709" width="0.0106%" height="15" fill="rgb(237,151,45)" fg:x="94740" fg:w="16"/><text x="62.9660%" y="719.50"></text></g><g><title>__x64_sys_madvise (31 samples, 0.02%)</title><rect x="62.7087%" y="773" width="0.0205%" height="15" fill="rgb(231,39,3)" fg:x="94729" fg:w="31"/><text x="62.9587%" y="783.50"></text></g><g><title>do_madvise.part.0 (31 samples, 0.02%)</title><rect x="62.7087%" y="757" width="0.0205%" height="15" fill="rgb(212,167,28)" fg:x="94729" fg:w="31"/><text x="62.9587%" y="767.50"></text></g><g><title>zap_page_range (28 samples, 0.02%)</title><rect x="62.7107%" y="741" width="0.0185%" height="15" fill="rgb(232,178,8)" fg:x="94732" fg:w="28"/><text x="62.9607%" y="751.50"></text></g><g><title>__GI_madvise (33 samples, 0.02%)</title><rect x="62.7080%" y="821" width="0.0218%" height="15" fill="rgb(225,151,20)" fg:x="94728" fg:w="33"/><text x="62.9580%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="62.7080%" y="805" width="0.0218%" height="15" fill="rgb(238,3,37)" fg:x="94728" fg:w="33"/><text x="62.9580%" y="815.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="62.7087%" y="789" width="0.0212%" height="15" fill="rgb(251,147,42)" fg:x="94729" fg:w="32"/><text x="62.9587%" y="799.50"></text></g><g><title>advise_stack_range (35 samples, 0.02%)</title><rect x="62.7080%" y="837" width="0.0232%" height="15" fill="rgb(208,173,10)" fg:x="94728" fg:w="35"/><text x="62.9580%" y="847.50"></text></g><g><title>__GI___clone (15,298 samples, 10.13%)</title><rect x="52.6161%" y="869" width="10.1270%" height="15" fill="rgb(246,225,4)" fg:x="79483" fg:w="15298"/><text x="52.8661%" y="879.50">__GI___clone</text></g><g><title>start_thread (13,408 samples, 8.88%)</title><rect x="53.8673%" y="853" width="8.8758%" height="15" fill="rgb(248,102,6)" fg:x="81373" fg:w="13408"/><text x="54.1173%" y="863.50">start_thread</text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (22 samples, 0.01%)</title><rect x="62.8808%" y="821" width="0.0146%" height="15" fill="rgb(232,6,21)" fg:x="94989" fg:w="22"/><text x="63.1308%" y="831.50"></text></g><g><title>polly::initializePollyPasses (19 samples, 0.01%)</title><rect x="62.8828%" y="805" width="0.0126%" height="15" fill="rgb(221,179,22)" fg:x="94992" fg:w="19"/><text x="63.1328%" y="815.50"></text></g><g><title>__libc_csu_init (269 samples, 0.18%)</title><rect x="62.7537%" y="837" width="0.1781%" height="15" fill="rgb(252,50,20)" fg:x="94797" fg:w="269"/><text x="63.0037%" y="847.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (27 samples, 0.02%)</title><rect x="62.9444%" y="741" width="0.0179%" height="15" fill="rgb(222,56,38)" fg:x="95085" fg:w="27"/><text x="63.1944%" y="751.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (56 samples, 0.04%)</title><rect x="62.9377%" y="773" width="0.0371%" height="15" fill="rgb(206,193,29)" fg:x="95075" fg:w="56"/><text x="63.1877%" y="783.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (46 samples, 0.03%)</title><rect x="62.9444%" y="757" width="0.0305%" height="15" fill="rgb(239,192,45)" fg:x="95085" fg:w="46"/><text x="63.1944%" y="767.50"></text></g><g><title>lld::elf::searchLibrary[abi:cxx11] (19 samples, 0.01%)</title><rect x="62.9622%" y="741" width="0.0126%" height="15" fill="rgb(254,18,36)" fg:x="95112" fg:w="19"/><text x="63.2122%" y="751.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (18 samples, 0.01%)</title><rect x="63.0066%" y="709" width="0.0119%" height="15" fill="rgb(221,127,11)" fg:x="95179" fg:w="18"/><text x="63.2566%" y="719.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (16 samples, 0.01%)</title><rect x="63.0079%" y="693" width="0.0106%" height="15" fill="rgb(234,146,35)" fg:x="95181" fg:w="16"/><text x="63.2579%" y="703.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (19 samples, 0.01%)</title><rect x="63.0185%" y="709" width="0.0126%" height="15" fill="rgb(254,201,37)" fg:x="95197" fg:w="19"/><text x="63.2685%" y="719.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (78 samples, 0.05%)</title><rect x="62.9900%" y="741" width="0.0516%" height="15" fill="rgb(211,202,23)" fg:x="95154" fg:w="78"/><text x="63.2400%" y="751.50"></text></g><g><title>lld::elf::SymbolTable::insert (69 samples, 0.05%)</title><rect x="62.9960%" y="725" width="0.0457%" height="15" fill="rgb(237,91,2)" fg:x="95163" fg:w="69"/><text x="63.2460%" y="735.50"></text></g><g><title>lld::elf::ArchiveFile::parse (99 samples, 0.07%)</title><rect x="62.9847%" y="757" width="0.0655%" height="15" fill="rgb(226,228,36)" fg:x="95146" fg:w="99"/><text x="63.2347%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.03%)</title><rect x="63.0648%" y="501" width="0.0311%" height="15" fill="rgb(213,63,50)" fg:x="95267" fg:w="47"/><text x="63.3148%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (45 samples, 0.03%)</title><rect x="63.0662%" y="485" width="0.0298%" height="15" fill="rgb(235,194,19)" fg:x="95269" fg:w="45"/><text x="63.3162%" y="495.50"></text></g><g><title>native_write_msr (45 samples, 0.03%)</title><rect x="63.0662%" y="469" width="0.0298%" height="15" fill="rgb(207,204,18)" fg:x="95269" fg:w="45"/><text x="63.3162%" y="479.50"></text></g><g><title>__GI___pthread_mutex_lock (51 samples, 0.03%)</title><rect x="63.0628%" y="677" width="0.0338%" height="15" fill="rgb(248,8,7)" fg:x="95264" fg:w="51"/><text x="63.3128%" y="687.50"></text></g><g><title>__lll_lock_wait (50 samples, 0.03%)</title><rect x="63.0635%" y="661" width="0.0331%" height="15" fill="rgb(223,145,47)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.03%)</title><rect x="63.0635%" y="645" width="0.0331%" height="15" fill="rgb(228,84,11)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="655.50"></text></g><g><title>do_syscall_64 (50 samples, 0.03%)</title><rect x="63.0635%" y="629" width="0.0331%" height="15" fill="rgb(218,76,45)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="639.50"></text></g><g><title>__x64_sys_futex (50 samples, 0.03%)</title><rect x="63.0635%" y="613" width="0.0331%" height="15" fill="rgb(223,80,15)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="623.50"></text></g><g><title>do_futex (50 samples, 0.03%)</title><rect x="63.0635%" y="597" width="0.0331%" height="15" fill="rgb(219,218,33)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="607.50"></text></g><g><title>futex_wait (50 samples, 0.03%)</title><rect x="63.0635%" y="581" width="0.0331%" height="15" fill="rgb(208,51,11)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="591.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.03%)</title><rect x="63.0635%" y="565" width="0.0331%" height="15" fill="rgb(229,165,39)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="575.50"></text></g><g><title>schedule (50 samples, 0.03%)</title><rect x="63.0635%" y="549" width="0.0331%" height="15" fill="rgb(241,100,24)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="559.50"></text></g><g><title>__schedule (50 samples, 0.03%)</title><rect x="63.0635%" y="533" width="0.0331%" height="15" fill="rgb(228,14,23)" fg:x="95265" fg:w="50"/><text x="63.3135%" y="543.50"></text></g><g><title>finish_task_switch (49 samples, 0.03%)</title><rect x="63.0642%" y="517" width="0.0324%" height="15" fill="rgb(247,116,52)" fg:x="95266" fg:w="49"/><text x="63.3142%" y="527.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (54 samples, 0.04%)</title><rect x="63.0628%" y="693" width="0.0357%" height="15" fill="rgb(216,149,33)" fg:x="95264" fg:w="54"/><text x="63.3128%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.02%)</title><rect x="63.1026%" y="469" width="0.0199%" height="15" fill="rgb(238,142,29)" fg:x="95324" fg:w="30"/><text x="63.3526%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="63.1026%" y="453" width="0.0199%" height="15" fill="rgb(224,83,40)" fg:x="95324" fg:w="30"/><text x="63.3526%" y="463.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="63.1026%" y="437" width="0.0199%" height="15" fill="rgb(234,165,11)" fg:x="95324" fg:w="30"/><text x="63.3526%" y="447.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (34 samples, 0.02%)</title><rect x="63.1006%" y="661" width="0.0225%" height="15" fill="rgb(215,96,23)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="671.50"></text></g><g><title>futex_wait_simple (34 samples, 0.02%)</title><rect x="63.1006%" y="645" width="0.0225%" height="15" fill="rgb(233,179,26)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="655.50"></text></g><g><title>futex_wait (34 samples, 0.02%)</title><rect x="63.1006%" y="629" width="0.0225%" height="15" fill="rgb(225,129,33)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="63.1006%" y="613" width="0.0225%" height="15" fill="rgb(237,49,13)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="623.50"></text></g><g><title>do_syscall_64 (34 samples, 0.02%)</title><rect x="63.1006%" y="597" width="0.0225%" height="15" fill="rgb(211,3,31)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="607.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.02%)</title><rect x="63.1006%" y="581" width="0.0225%" height="15" fill="rgb(216,152,19)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="591.50"></text></g><g><title>do_futex (34 samples, 0.02%)</title><rect x="63.1006%" y="565" width="0.0225%" height="15" fill="rgb(251,121,35)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="575.50"></text></g><g><title>futex_wait (34 samples, 0.02%)</title><rect x="63.1006%" y="549" width="0.0225%" height="15" fill="rgb(210,217,47)" fg:x="95321" fg:w="34"/><text x="63.3506%" y="559.50"></text></g><g><title>futex_wait_queue_me (33 samples, 0.02%)</title><rect x="63.1012%" y="533" width="0.0218%" height="15" fill="rgb(244,116,22)" fg:x="95322" fg:w="33"/><text x="63.3512%" y="543.50"></text></g><g><title>schedule (32 samples, 0.02%)</title><rect x="63.1019%" y="517" width="0.0212%" height="15" fill="rgb(228,17,21)" fg:x="95323" fg:w="32"/><text x="63.3519%" y="527.50"></text></g><g><title>__schedule (32 samples, 0.02%)</title><rect x="63.1019%" y="501" width="0.0212%" height="15" fill="rgb(240,149,34)" fg:x="95323" fg:w="32"/><text x="63.3519%" y="511.50"></text></g><g><title>finish_task_switch (31 samples, 0.02%)</title><rect x="63.1026%" y="485" width="0.0205%" height="15" fill="rgb(208,125,47)" fg:x="95324" fg:w="31"/><text x="63.3526%" y="495.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (104 samples, 0.07%)</title><rect x="63.0615%" y="709" width="0.0688%" height="15" fill="rgb(249,186,39)" fg:x="95262" fg:w="104"/><text x="63.3115%" y="719.50"></text></g><g><title>std::condition_variable::notify_one (46 samples, 0.03%)</title><rect x="63.0999%" y="693" width="0.0305%" height="15" fill="rgb(240,220,33)" fg:x="95320" fg:w="46"/><text x="63.3499%" y="703.50"></text></g><g><title>__pthread_cond_signal (46 samples, 0.03%)</title><rect x="63.0999%" y="677" width="0.0305%" height="15" fill="rgb(243,110,23)" fg:x="95320" fg:w="46"/><text x="63.3499%" y="687.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="63.1337%" y="501" width="0.0159%" height="15" fill="rgb(219,163,46)" fg:x="95371" fg:w="24"/><text x="63.3837%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.02%)</title><rect x="63.1337%" y="485" width="0.0159%" height="15" fill="rgb(216,126,30)" fg:x="95371" fg:w="24"/><text x="63.3837%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="63.1337%" y="469" width="0.0159%" height="15" fill="rgb(208,139,11)" fg:x="95371" fg:w="24"/><text x="63.3837%" y="479.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="63.1337%" y="453" width="0.0159%" height="15" fill="rgb(213,118,36)" fg:x="95371" fg:w="24"/><text x="63.3837%" y="463.50"></text></g><g><title>lld::elf::MergeNoTailSection::finalizeContents (143 samples, 0.09%)</title><rect x="63.0562%" y="741" width="0.0947%" height="15" fill="rgb(226,43,17)" fg:x="95254" fg:w="143"/><text x="63.3062%" y="751.50"></text></g><g><title>llvm::parallelForEachN (136 samples, 0.09%)</title><rect x="63.0609%" y="725" width="0.0900%" height="15" fill="rgb(254,217,4)" fg:x="95261" fg:w="136"/><text x="63.3109%" y="735.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::~TaskGroup (31 samples, 0.02%)</title><rect x="63.1304%" y="709" width="0.0205%" height="15" fill="rgb(210,134,47)" fg:x="95366" fg:w="31"/><text x="63.3804%" y="719.50"></text></g><g><title>std::condition_variable::wait (28 samples, 0.02%)</title><rect x="63.1324%" y="693" width="0.0185%" height="15" fill="rgb(237,24,49)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="703.50"></text></g><g><title>__pthread_cond_wait (28 samples, 0.02%)</title><rect x="63.1324%" y="677" width="0.0185%" height="15" fill="rgb(251,39,46)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (28 samples, 0.02%)</title><rect x="63.1324%" y="661" width="0.0185%" height="15" fill="rgb(251,220,3)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="671.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.02%)</title><rect x="63.1324%" y="645" width="0.0185%" height="15" fill="rgb(228,105,12)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="63.1324%" y="629" width="0.0185%" height="15" fill="rgb(215,196,1)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="639.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="63.1324%" y="613" width="0.0185%" height="15" fill="rgb(214,33,39)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="623.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.02%)</title><rect x="63.1324%" y="597" width="0.0185%" height="15" fill="rgb(220,19,52)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="607.50"></text></g><g><title>do_futex (28 samples, 0.02%)</title><rect x="63.1324%" y="581" width="0.0185%" height="15" fill="rgb(221,78,38)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="591.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="63.1324%" y="565" width="0.0185%" height="15" fill="rgb(253,30,16)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="575.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="63.1324%" y="549" width="0.0185%" height="15" fill="rgb(242,65,0)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="559.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="63.1324%" y="533" width="0.0185%" height="15" fill="rgb(235,201,12)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="543.50"></text></g><g><title>__schedule (28 samples, 0.02%)</title><rect x="63.1324%" y="517" width="0.0185%" height="15" fill="rgb(233,161,9)" fg:x="95369" fg:w="28"/><text x="63.3824%" y="527.50"></text></g><g><title>lld::elf::OutputSection::finalizeInputSections (146 samples, 0.10%)</title><rect x="63.0556%" y="757" width="0.0966%" height="15" fill="rgb(241,207,41)" fg:x="95253" fg:w="146"/><text x="63.3056%" y="767.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (22 samples, 0.01%)</title><rect x="63.1595%" y="741" width="0.0146%" height="15" fill="rgb(212,69,46)" fg:x="95410" fg:w="22"/><text x="63.4095%" y="751.50"></text></g><g><title>lld::elf::SymbolTable::find (33 samples, 0.02%)</title><rect x="63.1568%" y="757" width="0.0218%" height="15" fill="rgb(239,69,45)" fg:x="95406" fg:w="33"/><text x="63.4068%" y="767.50"></text></g><g><title>lld::elf::markLive&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (31 samples, 0.02%)</title><rect x="63.1873%" y="757" width="0.0205%" height="15" fill="rgb(242,117,48)" fg:x="95452" fg:w="31"/><text x="63.4373%" y="767.50"></text></g><g><title>lld::make&lt;lld::elf::SymbolUnion&gt; (26 samples, 0.02%)</title><rect x="63.2548%" y="693" width="0.0172%" height="15" fill="rgb(228,41,36)" fg:x="95554" fg:w="26"/><text x="63.5048%" y="703.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="63.2919%" y="661" width="0.0113%" height="15" fill="rgb(212,3,32)" fg:x="95610" fg:w="17"/><text x="63.5419%" y="671.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="63.2919%" y="645" width="0.0113%" height="15" fill="rgb(233,41,49)" fg:x="95610" fg:w="17"/><text x="63.5419%" y="655.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="63.2919%" y="629" width="0.0113%" height="15" fill="rgb(252,170,49)" fg:x="95610" fg:w="17"/><text x="63.5419%" y="639.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (69 samples, 0.05%)</title><rect x="63.2720%" y="693" width="0.0457%" height="15" fill="rgb(229,53,26)" fg:x="95580" fg:w="69"/><text x="63.5220%" y="703.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (65 samples, 0.04%)</title><rect x="63.2747%" y="677" width="0.0430%" height="15" fill="rgb(217,157,12)" fg:x="95584" fg:w="65"/><text x="63.5247%" y="687.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (35 samples, 0.02%)</title><rect x="63.3177%" y="693" width="0.0232%" height="15" fill="rgb(227,17,9)" fg:x="95649" fg:w="35"/><text x="63.5677%" y="703.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (180 samples, 0.12%)</title><rect x="63.2290%" y="725" width="0.1192%" height="15" fill="rgb(218,84,12)" fg:x="95515" fg:w="180"/><text x="63.4790%" y="735.50"></text></g><g><title>lld::elf::SymbolTable::insert (163 samples, 0.11%)</title><rect x="63.2403%" y="709" width="0.1079%" height="15" fill="rgb(212,79,24)" fg:x="95532" fg:w="163"/><text x="63.4903%" y="719.50"></text></g><g><title>llvm::Twine::toVector (23 samples, 0.02%)</title><rect x="63.3554%" y="725" width="0.0152%" height="15" fill="rgb(217,222,37)" fg:x="95706" fg:w="23"/><text x="63.6054%" y="735.50"></text></g><g><title>lld::elf::parseFile (251 samples, 0.17%)</title><rect x="63.2078%" y="757" width="0.1662%" height="15" fill="rgb(246,208,8)" fg:x="95483" fg:w="251"/><text x="63.4578%" y="767.50"></text></g><g><title>lld::elf::SharedFile::parse&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (243 samples, 0.16%)</title><rect x="63.2131%" y="741" width="0.1609%" height="15" fill="rgb(244,133,10)" fg:x="95491" fg:w="243"/><text x="63.4631%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (186 samples, 0.12%)</title><rect x="63.3985%" y="501" width="0.1231%" height="15" fill="rgb(209,219,41)" fg:x="95771" fg:w="186"/><text x="63.6485%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (184 samples, 0.12%)</title><rect x="63.3998%" y="485" width="0.1218%" height="15" fill="rgb(253,175,45)" fg:x="95773" fg:w="184"/><text x="63.6498%" y="495.50"></text></g><g><title>native_write_msr (184 samples, 0.12%)</title><rect x="63.3998%" y="469" width="0.1218%" height="15" fill="rgb(235,100,37)" fg:x="95773" fg:w="184"/><text x="63.6498%" y="479.50"></text></g><g><title>do_syscall_64 (201 samples, 0.13%)</title><rect x="63.3912%" y="629" width="0.1331%" height="15" fill="rgb(225,87,19)" fg:x="95760" fg:w="201"/><text x="63.6412%" y="639.50"></text></g><g><title>__x64_sys_futex (200 samples, 0.13%)</title><rect x="63.3919%" y="613" width="0.1324%" height="15" fill="rgb(217,152,17)" fg:x="95761" fg:w="200"/><text x="63.6419%" y="623.50"></text></g><g><title>do_futex (199 samples, 0.13%)</title><rect x="63.3925%" y="597" width="0.1317%" height="15" fill="rgb(235,72,13)" fg:x="95762" fg:w="199"/><text x="63.6425%" y="607.50"></text></g><g><title>futex_wait (197 samples, 0.13%)</title><rect x="63.3938%" y="581" width="0.1304%" height="15" fill="rgb(233,140,18)" fg:x="95764" fg:w="197"/><text x="63.6438%" y="591.50"></text></g><g><title>futex_wait_queue_me (196 samples, 0.13%)</title><rect x="63.3945%" y="565" width="0.1297%" height="15" fill="rgb(207,212,28)" fg:x="95765" fg:w="196"/><text x="63.6445%" y="575.50"></text></g><g><title>schedule (195 samples, 0.13%)</title><rect x="63.3952%" y="549" width="0.1291%" height="15" fill="rgb(220,130,25)" fg:x="95766" fg:w="195"/><text x="63.6452%" y="559.50"></text></g><g><title>__schedule (195 samples, 0.13%)</title><rect x="63.3952%" y="533" width="0.1291%" height="15" fill="rgb(205,55,34)" fg:x="95766" fg:w="195"/><text x="63.6452%" y="543.50"></text></g><g><title>finish_task_switch (195 samples, 0.13%)</title><rect x="63.3952%" y="517" width="0.1291%" height="15" fill="rgb(237,54,35)" fg:x="95766" fg:w="195"/><text x="63.6452%" y="527.50"></text></g><g><title>__pthread_cond_wait (205 samples, 0.14%)</title><rect x="63.3899%" y="693" width="0.1357%" height="15" fill="rgb(208,67,23)" fg:x="95758" fg:w="205"/><text x="63.6399%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (205 samples, 0.14%)</title><rect x="63.3899%" y="677" width="0.1357%" height="15" fill="rgb(206,207,50)" fg:x="95758" fg:w="205"/><text x="63.6399%" y="687.50"></text></g><g><title>futex_wait_cancelable (205 samples, 0.14%)</title><rect x="63.3899%" y="661" width="0.1357%" height="15" fill="rgb(213,211,42)" fg:x="95758" fg:w="205"/><text x="63.6399%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (203 samples, 0.13%)</title><rect x="63.3912%" y="645" width="0.1344%" height="15" fill="rgb(252,197,50)" fg:x="95760" fg:w="203"/><text x="63.6412%" y="655.50"></text></g><g><title>lld::elf::splitSections&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (230 samples, 0.15%)</title><rect x="63.3740%" y="757" width="0.1523%" height="15" fill="rgb(251,211,41)" fg:x="95734" fg:w="230"/><text x="63.6240%" y="767.50"></text></g><g><title>llvm::parallelForEachN (229 samples, 0.15%)</title><rect x="63.3746%" y="741" width="0.1516%" height="15" fill="rgb(229,211,5)" fg:x="95735" fg:w="229"/><text x="63.6246%" y="751.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::~TaskGroup (223 samples, 0.15%)</title><rect x="63.3786%" y="725" width="0.1476%" height="15" fill="rgb(239,36,31)" fg:x="95741" fg:w="223"/><text x="63.6286%" y="735.50"></text></g><g><title>std::condition_variable::wait (206 samples, 0.14%)</title><rect x="63.3899%" y="709" width="0.1364%" height="15" fill="rgb(248,67,31)" fg:x="95758" fg:w="206"/><text x="63.6399%" y="719.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (19 samples, 0.01%)</title><rect x="63.5408%" y="661" width="0.0126%" height="15" fill="rgb(249,55,44)" fg:x="95986" fg:w="19"/><text x="63.7908%" y="671.50"></text></g><g><title>lld::elf::MergeNoTailSection::writeTo (20 samples, 0.01%)</title><rect x="63.5408%" y="693" width="0.0132%" height="15" fill="rgb(216,82,12)" fg:x="95986" fg:w="20"/><text x="63.7908%" y="703.50"></text></g><g><title>llvm::parallelForEachN (20 samples, 0.01%)</title><rect x="63.5408%" y="677" width="0.0132%" height="15" fill="rgb(242,174,1)" fg:x="95986" fg:w="20"/><text x="63.7908%" y="687.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;(unsigned char*)::{lambda(unsigned long)#2}&gt; (27 samples, 0.02%)</title><rect x="63.5388%" y="709" width="0.0179%" height="15" fill="rgb(208,120,29)" fg:x="95983" fg:w="27"/><text x="63.7888%" y="719.50"></text></g><g><title>lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (43 samples, 0.03%)</title><rect x="63.5381%" y="741" width="0.0285%" height="15" fill="rgb(221,105,43)" fg:x="95982" fg:w="43"/><text x="63.7881%" y="751.50"></text></g><g><title>llvm::parallelForEachN (42 samples, 0.03%)</title><rect x="63.5388%" y="725" width="0.0278%" height="15" fill="rgb(234,124,22)" fg:x="95983" fg:w="42"/><text x="63.7888%" y="735.50"></text></g><g><title>futex_wait_queue_me (20 samples, 0.01%)</title><rect x="63.6156%" y="581" width="0.0132%" height="15" fill="rgb(212,23,30)" fg:x="96099" fg:w="20"/><text x="63.8656%" y="591.50"></text></g><g><title>schedule (19 samples, 0.01%)</title><rect x="63.6163%" y="565" width="0.0126%" height="15" fill="rgb(219,122,53)" fg:x="96100" fg:w="19"/><text x="63.8663%" y="575.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="63.6169%" y="549" width="0.0119%" height="15" fill="rgb(248,84,24)" fg:x="96101" fg:w="18"/><text x="63.8669%" y="559.50"></text></g><g><title>__x64_sys_futex (25 samples, 0.02%)</title><rect x="63.6143%" y="629" width="0.0165%" height="15" fill="rgb(245,115,18)" fg:x="96097" fg:w="25"/><text x="63.8643%" y="639.50"></text></g><g><title>do_futex (25 samples, 0.02%)</title><rect x="63.6143%" y="613" width="0.0165%" height="15" fill="rgb(227,176,51)" fg:x="96097" fg:w="25"/><text x="63.8643%" y="623.50"></text></g><g><title>futex_wait (25 samples, 0.02%)</title><rect x="63.6143%" y="597" width="0.0165%" height="15" fill="rgb(229,63,42)" fg:x="96097" fg:w="25"/><text x="63.8643%" y="607.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="63.6143%" y="645" width="0.0172%" height="15" fill="rgb(247,202,24)" fg:x="96097" fg:w="26"/><text x="63.8643%" y="655.50"></text></g><g><title>__GI___pthread_mutex_lock (39 samples, 0.03%)</title><rect x="63.6063%" y="693" width="0.0258%" height="15" fill="rgb(244,173,20)" fg:x="96085" fg:w="39"/><text x="63.8563%" y="703.50"></text></g><g><title>__lll_lock_wait (33 samples, 0.02%)</title><rect x="63.6103%" y="677" width="0.0218%" height="15" fill="rgb(242,81,47)" fg:x="96091" fg:w="33"/><text x="63.8603%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="63.6143%" y="661" width="0.0179%" height="15" fill="rgb(231,185,54)" fg:x="96097" fg:w="27"/><text x="63.8643%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="63.6381%" y="677" width="0.0252%" height="15" fill="rgb(243,55,32)" fg:x="96133" fg:w="38"/><text x="63.8881%" y="687.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="63.6381%" y="661" width="0.0252%" height="15" fill="rgb(208,167,19)" fg:x="96133" fg:w="38"/><text x="63.8881%" y="671.50"></text></g><g><title>__x64_sys_futex (37 samples, 0.02%)</title><rect x="63.6388%" y="645" width="0.0245%" height="15" fill="rgb(231,72,35)" fg:x="96134" fg:w="37"/><text x="63.8888%" y="655.50"></text></g><g><title>do_futex (37 samples, 0.02%)</title><rect x="63.6388%" y="629" width="0.0245%" height="15" fill="rgb(250,173,51)" fg:x="96134" fg:w="37"/><text x="63.8888%" y="639.50"></text></g><g><title>futex_wake (37 samples, 0.02%)</title><rect x="63.6388%" y="613" width="0.0245%" height="15" fill="rgb(209,5,22)" fg:x="96134" fg:w="37"/><text x="63.8888%" y="623.50"></text></g><g><title>wake_up_q (24 samples, 0.02%)</title><rect x="63.6474%" y="597" width="0.0159%" height="15" fill="rgb(250,174,19)" fg:x="96147" fg:w="24"/><text x="63.8974%" y="607.50"></text></g><g><title>try_to_wake_up (24 samples, 0.02%)</title><rect x="63.6474%" y="581" width="0.0159%" height="15" fill="rgb(217,3,49)" fg:x="96147" fg:w="24"/><text x="63.8974%" y="591.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (49 samples, 0.03%)</title><rect x="63.6322%" y="693" width="0.0324%" height="15" fill="rgb(218,225,5)" fg:x="96124" fg:w="49"/><text x="63.8822%" y="703.50"></text></g><g><title>operator new (17 samples, 0.01%)</title><rect x="63.6679%" y="661" width="0.0113%" height="15" fill="rgb(236,89,11)" fg:x="96178" fg:w="17"/><text x="63.9179%" y="671.50"></text></g><g><title>__GI___libc_malloc (17 samples, 0.01%)</title><rect x="63.6679%" y="645" width="0.0113%" height="15" fill="rgb(206,33,28)" fg:x="96178" fg:w="17"/><text x="63.9179%" y="655.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (126 samples, 0.08%)</title><rect x="63.6063%" y="709" width="0.0834%" height="15" fill="rgb(241,56,42)" fg:x="96085" fg:w="126"/><text x="63.8563%" y="719.50"></text></g><g><title>std::deque&lt;std::function&lt;void ()&gt;, std::allocator&lt;std::function&lt;void ()&gt; &gt; &gt;::push_back (36 samples, 0.02%)</title><rect x="63.6659%" y="693" width="0.0238%" height="15" fill="rgb(222,44,11)" fg:x="96175" fg:w="36"/><text x="63.9159%" y="703.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (35 samples, 0.02%)</title><rect x="63.6666%" y="677" width="0.0232%" height="15" fill="rgb(234,111,20)" fg:x="96176" fg:w="35"/><text x="63.9166%" y="687.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_manager (16 samples, 0.01%)</title><rect x="63.6792%" y="661" width="0.0106%" height="15" fill="rgb(237,77,6)" fg:x="96195" fg:w="16"/><text x="63.9292%" y="671.50"></text></g><g><title>operator new (16 samples, 0.01%)</title><rect x="63.6792%" y="645" width="0.0106%" height="15" fill="rgb(235,111,23)" fg:x="96195" fg:w="16"/><text x="63.9292%" y="655.50"></text></g><g><title>__GI___libc_malloc (16 samples, 0.01%)</title><rect x="63.6792%" y="629" width="0.0106%" height="15" fill="rgb(251,135,29)" fg:x="96195" fg:w="16"/><text x="63.9292%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (258 samples, 0.17%)</title><rect x="63.7281%" y="485" width="0.1708%" height="15" fill="rgb(217,57,1)" fg:x="96269" fg:w="258"/><text x="63.9781%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (257 samples, 0.17%)</title><rect x="63.7288%" y="469" width="0.1701%" height="15" fill="rgb(249,119,31)" fg:x="96270" fg:w="257"/><text x="63.9788%" y="479.50"></text></g><g><title>native_write_msr (256 samples, 0.17%)</title><rect x="63.7295%" y="453" width="0.1695%" height="15" fill="rgb(233,164,33)" fg:x="96271" fg:w="256"/><text x="63.9795%" y="463.50"></text></g><g><title>finish_task_switch (264 samples, 0.17%)</title><rect x="63.7255%" y="501" width="0.1748%" height="15" fill="rgb(250,217,43)" fg:x="96265" fg:w="264"/><text x="63.9755%" y="511.50"></text></g><g><title>futex_wait_queue_me (292 samples, 0.19%)</title><rect x="63.7142%" y="549" width="0.1933%" height="15" fill="rgb(232,154,50)" fg:x="96248" fg:w="292"/><text x="63.9642%" y="559.50"></text></g><g><title>schedule (289 samples, 0.19%)</title><rect x="63.7162%" y="533" width="0.1913%" height="15" fill="rgb(227,190,8)" fg:x="96251" fg:w="289"/><text x="63.9662%" y="543.50"></text></g><g><title>__schedule (288 samples, 0.19%)</title><rect x="63.7169%" y="517" width="0.1907%" height="15" fill="rgb(209,217,32)" fg:x="96252" fg:w="288"/><text x="63.9669%" y="527.50"></text></g><g><title>do_syscall_64 (301 samples, 0.20%)</title><rect x="63.7103%" y="613" width="0.1993%" height="15" fill="rgb(243,203,50)" fg:x="96242" fg:w="301"/><text x="63.9603%" y="623.50"></text></g><g><title>__x64_sys_futex (300 samples, 0.20%)</title><rect x="63.7109%" y="597" width="0.1986%" height="15" fill="rgb(232,152,27)" fg:x="96243" fg:w="300"/><text x="63.9609%" y="607.50"></text></g><g><title>do_futex (300 samples, 0.20%)</title><rect x="63.7109%" y="581" width="0.1986%" height="15" fill="rgb(240,34,29)" fg:x="96243" fg:w="300"/><text x="63.9609%" y="591.50"></text></g><g><title>futex_wait (299 samples, 0.20%)</title><rect x="63.7116%" y="565" width="0.1979%" height="15" fill="rgb(215,185,52)" fg:x="96244" fg:w="299"/><text x="63.9616%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (307 samples, 0.20%)</title><rect x="63.7089%" y="629" width="0.2032%" height="15" fill="rgb(240,89,49)" fg:x="96240" fg:w="307"/><text x="63.9589%" y="639.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (315 samples, 0.21%)</title><rect x="63.7043%" y="677" width="0.2085%" height="15" fill="rgb(225,12,52)" fg:x="96233" fg:w="315"/><text x="63.9543%" y="687.50"></text></g><g><title>futex_wait_simple (310 samples, 0.21%)</title><rect x="63.7076%" y="661" width="0.2052%" height="15" fill="rgb(239,128,45)" fg:x="96238" fg:w="310"/><text x="63.9576%" y="671.50"></text></g><g><title>futex_wait (310 samples, 0.21%)</title><rect x="63.7076%" y="645" width="0.2052%" height="15" fill="rgb(211,78,47)" fg:x="96238" fg:w="310"/><text x="63.9576%" y="655.50"></text></g><g><title>mark_wake_futex (21 samples, 0.01%)</title><rect x="63.9393%" y="581" width="0.0139%" height="15" fill="rgb(232,31,21)" fg:x="96588" fg:w="21"/><text x="64.1893%" y="591.50"></text></g><g><title>_raw_spin_lock (22 samples, 0.01%)</title><rect x="63.9671%" y="549" width="0.0146%" height="15" fill="rgb(222,168,14)" fg:x="96630" fg:w="22"/><text x="64.2171%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (18 samples, 0.01%)</title><rect x="63.9698%" y="533" width="0.0119%" height="15" fill="rgb(209,128,24)" fg:x="96634" fg:w="18"/><text x="64.2198%" y="543.50"></text></g><g><title>select_task_rq_fair (69 samples, 0.05%)</title><rect x="63.9870%" y="549" width="0.0457%" height="15" fill="rgb(249,35,13)" fg:x="96660" fg:w="69"/><text x="64.2370%" y="559.50"></text></g><g><title>update_cfs_rq_h_load (29 samples, 0.02%)</title><rect x="64.0135%" y="533" width="0.0192%" height="15" fill="rgb(218,7,2)" fg:x="96700" fg:w="29"/><text x="64.2635%" y="543.50"></text></g><g><title>enqueue_task_fair (79 samples, 0.05%)</title><rect x="64.0406%" y="533" width="0.0523%" height="15" fill="rgb(238,107,27)" fg:x="96741" fg:w="79"/><text x="64.2906%" y="543.50"></text></g><g><title>enqueue_entity (71 samples, 0.05%)</title><rect x="64.0459%" y="517" width="0.0470%" height="15" fill="rgb(217,88,38)" fg:x="96749" fg:w="71"/><text x="64.2959%" y="527.50"></text></g><g><title>update_load_avg (21 samples, 0.01%)</title><rect x="64.0790%" y="501" width="0.0139%" height="15" fill="rgb(230,207,0)" fg:x="96799" fg:w="21"/><text x="64.3290%" y="511.50"></text></g><g><title>ttwu_do_activate (161 samples, 0.11%)</title><rect x="64.0366%" y="549" width="0.1066%" height="15" fill="rgb(249,64,54)" fg:x="96735" fg:w="161"/><text x="64.2866%" y="559.50"></text></g><g><title>psi_task_change (76 samples, 0.05%)</title><rect x="64.0929%" y="533" width="0.0503%" height="15" fill="rgb(231,7,11)" fg:x="96820" fg:w="76"/><text x="64.3429%" y="543.50"></text></g><g><title>psi_group_change (71 samples, 0.05%)</title><rect x="64.0962%" y="517" width="0.0470%" height="15" fill="rgb(205,149,21)" fg:x="96825" fg:w="71"/><text x="64.3462%" y="527.50"></text></g><g><title>do_syscall_64 (355 samples, 0.24%)</title><rect x="63.9254%" y="645" width="0.2350%" height="15" fill="rgb(215,126,34)" fg:x="96567" fg:w="355"/><text x="64.1754%" y="655.50"></text></g><g><title>__x64_sys_futex (354 samples, 0.23%)</title><rect x="63.9261%" y="629" width="0.2343%" height="15" fill="rgb(241,132,45)" fg:x="96568" fg:w="354"/><text x="64.1761%" y="639.50"></text></g><g><title>do_futex (352 samples, 0.23%)</title><rect x="63.9274%" y="613" width="0.2330%" height="15" fill="rgb(252,69,32)" fg:x="96570" fg:w="352"/><text x="64.1774%" y="623.50"></text></g><g><title>futex_wake (352 samples, 0.23%)</title><rect x="63.9274%" y="597" width="0.2330%" height="15" fill="rgb(232,204,19)" fg:x="96570" fg:w="352"/><text x="64.1774%" y="607.50"></text></g><g><title>wake_up_q (312 samples, 0.21%)</title><rect x="63.9539%" y="581" width="0.2065%" height="15" fill="rgb(249,15,47)" fg:x="96610" fg:w="312"/><text x="64.2039%" y="591.50"></text></g><g><title>try_to_wake_up (303 samples, 0.20%)</title><rect x="63.9598%" y="565" width="0.2006%" height="15" fill="rgb(209,227,23)" fg:x="96619" fg:w="303"/><text x="64.2098%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (359 samples, 0.24%)</title><rect x="63.9241%" y="661" width="0.2377%" height="15" fill="rgb(248,92,24)" fg:x="96565" fg:w="359"/><text x="64.1741%" y="671.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (854 samples, 0.57%)</title><rect x="63.5984%" y="725" width="0.5653%" height="15" fill="rgb(247,59,2)" fg:x="96073" fg:w="854"/><text x="63.8484%" y="735.50"></text></g><g><title>std::condition_variable::notify_one (704 samples, 0.47%)</title><rect x="63.6977%" y="709" width="0.4660%" height="15" fill="rgb(221,30,5)" fg:x="96223" fg:w="704"/><text x="63.9477%" y="719.50"></text></g><g><title>__pthread_cond_signal (702 samples, 0.46%)</title><rect x="63.6990%" y="693" width="0.4647%" height="15" fill="rgb(208,108,53)" fg:x="96225" fg:w="702"/><text x="63.9490%" y="703.50"></text></g><g><title>futex_wake (373 samples, 0.25%)</title><rect x="63.9168%" y="677" width="0.2469%" height="15" fill="rgb(211,183,26)" fg:x="96554" fg:w="373"/><text x="64.1668%" y="687.50"></text></g><g><title>llvm::parallelForEachN (860 samples, 0.57%)</title><rect x="63.5977%" y="741" width="0.5693%" height="15" fill="rgb(232,132,4)" fg:x="96072" fg:w="860"/><text x="63.8477%" y="751.50"></text></g><g><title>lld::elf::writeResult&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (978 samples, 0.65%)</title><rect x="63.5262%" y="757" width="0.6474%" height="15" fill="rgb(253,128,37)" fg:x="95964" fg:w="978"/><text x="63.7762%" y="767.50"></text></g><g><title>lld::tryCreateFile (24 samples, 0.02%)</title><rect x="64.1737%" y="757" width="0.0159%" height="15" fill="rgb(221,58,24)" fg:x="96942" fg:w="24"/><text x="64.4237%" y="767.50"></text></g><g><title>lld::elf::LinkerDriver::link (1,836 samples, 1.22%)</title><rect x="62.9748%" y="773" width="1.2154%" height="15" fill="rgb(230,54,45)" fg:x="95131" fg:w="1836"/><text x="63.2248%" y="783.50"></text></g><g><title>LLVMInitializeAMDGPUTarget (18 samples, 0.01%)</title><rect x="64.1975%" y="757" width="0.0119%" height="15" fill="rgb(254,21,18)" fg:x="96978" fg:w="18"/><text x="64.4475%" y="767.50"></text></g><g><title>llvm::InitializeAllTargets (43 samples, 0.03%)</title><rect x="64.1922%" y="773" width="0.0285%" height="15" fill="rgb(221,108,0)" fg:x="96970" fg:w="43"/><text x="64.4422%" y="783.50"></text></g><g><title>lld::elf::link (1,974 samples, 1.31%)</title><rect x="62.9338%" y="805" width="1.3067%" height="15" fill="rgb(206,95,1)" fg:x="95069" fg:w="1974"/><text x="63.1838%" y="815.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (1,968 samples, 1.30%)</title><rect x="62.9377%" y="789" width="1.3028%" height="15" fill="rgb(237,52,5)" fg:x="95075" fg:w="1968"/><text x="63.1877%" y="799.50"></text></g><g><title>readConfigs (24 samples, 0.02%)</title><rect x="64.2246%" y="773" width="0.0159%" height="15" fill="rgb(218,150,34)" fg:x="97019" fg:w="24"/><text x="64.4746%" y="783.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (20 samples, 0.01%)</title><rect x="64.2458%" y="773" width="0.0132%" height="15" fill="rgb(235,194,28)" fg:x="97051" fg:w="20"/><text x="64.4958%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="64.2624%" y="613" width="0.0126%" height="15" fill="rgb(245,92,18)" fg:x="97076" fg:w="19"/><text x="64.5124%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="64.2624%" y="597" width="0.0126%" height="15" fill="rgb(253,203,53)" fg:x="97076" fg:w="19"/><text x="64.5124%" y="607.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="64.2624%" y="581" width="0.0126%" height="15" fill="rgb(249,185,47)" fg:x="97076" fg:w="19"/><text x="64.5124%" y="591.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="64.2624%" y="629" width="0.0132%" height="15" fill="rgb(252,194,52)" fg:x="97076" fg:w="20"/><text x="64.5124%" y="639.50"></text></g><g><title>llvm::llvm_shutdown (54 samples, 0.04%)</title><rect x="64.2405%" y="789" width="0.0357%" height="15" fill="rgb(210,53,36)" fg:x="97043" fg:w="54"/><text x="64.4905%" y="799.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::stop (26 samples, 0.02%)</title><rect x="64.2590%" y="773" width="0.0172%" height="15" fill="rgb(237,37,25)" fg:x="97071" fg:w="26"/><text x="64.5090%" y="783.50"></text></g><g><title>std::condition_variable::notify_all (26 samples, 0.02%)</title><rect x="64.2590%" y="757" width="0.0172%" height="15" fill="rgb(242,116,27)" fg:x="97071" fg:w="26"/><text x="64.5090%" y="767.50"></text></g><g><title>__pthread_cond_broadcast (26 samples, 0.02%)</title><rect x="64.2590%" y="741" width="0.0172%" height="15" fill="rgb(213,185,26)" fg:x="97071" fg:w="26"/><text x="64.5090%" y="751.50"></text></g><g><title>futex_wake (26 samples, 0.02%)</title><rect x="64.2590%" y="725" width="0.0172%" height="15" fill="rgb(225,204,8)" fg:x="97071" fg:w="26"/><text x="64.5090%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="64.2590%" y="709" width="0.0172%" height="15" fill="rgb(254,111,37)" fg:x="97071" fg:w="26"/><text x="64.5090%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (21 samples, 0.01%)</title><rect x="64.2624%" y="693" width="0.0139%" height="15" fill="rgb(242,35,9)" fg:x="97076" fg:w="21"/><text x="64.5124%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (21 samples, 0.01%)</title><rect x="64.2624%" y="677" width="0.0139%" height="15" fill="rgb(232,138,49)" fg:x="97076" fg:w="21"/><text x="64.5124%" y="687.50"></text></g><g><title>schedule (21 samples, 0.01%)</title><rect x="64.2624%" y="661" width="0.0139%" height="15" fill="rgb(247,56,4)" fg:x="97076" fg:w="21"/><text x="64.5124%" y="671.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="64.2624%" y="645" width="0.0139%" height="15" fill="rgb(226,179,17)" fg:x="97076" fg:w="21"/><text x="64.5124%" y="655.50"></text></g><g><title>lldMain (2,031 samples, 1.34%)</title><rect x="62.9331%" y="821" width="1.3445%" height="15" fill="rgb(216,163,45)" fg:x="95068" fg:w="2031"/><text x="63.1831%" y="831.50"></text></g><g><title>lld::exitLld (56 samples, 0.04%)</title><rect x="64.2405%" y="805" width="0.0371%" height="15" fill="rgb(211,157,3)" fg:x="97043" fg:w="56"/><text x="64.4905%" y="815.50"></text></g><g><title>__libc_start_main (2,306 samples, 1.53%)</title><rect x="62.7537%" y="853" width="1.5265%" height="15" fill="rgb(234,44,20)" fg:x="94797" fg:w="2306"/><text x="63.0037%" y="863.50"></text></g><g><title>main (2,037 samples, 1.35%)</title><rect x="62.9318%" y="837" width="1.3485%" height="15" fill="rgb(254,138,23)" fg:x="95066" fg:w="2037"/><text x="63.1818%" y="847.50"></text></g><g><title>_dl_map_segments (17 samples, 0.01%)</title><rect x="64.2816%" y="709" width="0.0113%" height="15" fill="rgb(206,119,39)" fg:x="97105" fg:w="17"/><text x="64.5316%" y="719.50"></text></g><g><title>__mmap64 (17 samples, 0.01%)</title><rect x="64.2816%" y="693" width="0.0113%" height="15" fill="rgb(231,105,52)" fg:x="97105" fg:w="17"/><text x="64.5316%" y="703.50"></text></g><g><title>__mmap64 (17 samples, 0.01%)</title><rect x="64.2816%" y="677" width="0.0113%" height="15" fill="rgb(250,20,5)" fg:x="97105" fg:w="17"/><text x="64.5316%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="64.2816%" y="661" width="0.0113%" height="15" fill="rgb(215,198,30)" fg:x="97105" fg:w="17"/><text x="64.5316%" y="671.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="64.2816%" y="645" width="0.0113%" height="15" fill="rgb(246,142,8)" fg:x="97105" fg:w="17"/><text x="64.5316%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (26 samples, 0.02%)</title><rect x="64.2816%" y="725" width="0.0172%" height="15" fill="rgb(243,26,38)" fg:x="97105" fg:w="26"/><text x="64.5316%" y="735.50"></text></g><g><title>_dl_map_object_deps (36 samples, 0.02%)</title><rect x="64.2816%" y="789" width="0.0238%" height="15" fill="rgb(205,133,28)" fg:x="97105" fg:w="36"/><text x="64.5316%" y="799.50"></text></g><g><title>_dl_catch_exception (36 samples, 0.02%)</title><rect x="64.2816%" y="773" width="0.0238%" height="15" fill="rgb(212,34,0)" fg:x="97105" fg:w="36"/><text x="64.5316%" y="783.50"></text></g><g><title>openaux (36 samples, 0.02%)</title><rect x="64.2816%" y="757" width="0.0238%" height="15" fill="rgb(251,226,22)" fg:x="97105" fg:w="36"/><text x="64.5316%" y="767.50"></text></g><g><title>_dl_map_object (36 samples, 0.02%)</title><rect x="64.2816%" y="741" width="0.0238%" height="15" fill="rgb(252,119,9)" fg:x="97105" fg:w="36"/><text x="64.5316%" y="751.50"></text></g><g><title>dl_new_hash (22 samples, 0.01%)</title><rect x="64.3252%" y="725" width="0.0146%" height="15" fill="rgb(213,150,50)" fg:x="97171" fg:w="22"/><text x="64.5752%" y="735.50"></text></g><g><title>_dl_lookup_symbol_x (81 samples, 0.05%)</title><rect x="64.3239%" y="741" width="0.0536%" height="15" fill="rgb(212,24,39)" fg:x="97169" fg:w="81"/><text x="64.5739%" y="751.50"></text></g><g><title>do_lookup_x (57 samples, 0.04%)</title><rect x="64.3398%" y="725" width="0.0377%" height="15" fill="rgb(213,46,39)" fg:x="97193" fg:w="57"/><text x="64.5898%" y="735.50"></text></g><g><title>exc_page_fault (19 samples, 0.01%)</title><rect x="64.3775%" y="725" width="0.0126%" height="15" fill="rgb(239,106,12)" fg:x="97250" fg:w="19"/><text x="64.6275%" y="735.50"></text></g><g><title>do_user_addr_fault (19 samples, 0.01%)</title><rect x="64.3775%" y="709" width="0.0126%" height="15" fill="rgb(249,229,21)" fg:x="97250" fg:w="19"/><text x="64.6275%" y="719.50"></text></g><g><title>handle_mm_fault (19 samples, 0.01%)</title><rect x="64.3775%" y="693" width="0.0126%" height="15" fill="rgb(212,158,3)" fg:x="97250" fg:w="19"/><text x="64.6275%" y="703.50"></text></g><g><title>asm_exc_page_fault (20 samples, 0.01%)</title><rect x="64.3775%" y="741" width="0.0132%" height="15" fill="rgb(253,26,48)" fg:x="97250" fg:w="20"/><text x="64.6275%" y="751.50"></text></g><g><title>elf_machine_rela (118 samples, 0.08%)</title><rect x="64.3133%" y="757" width="0.0781%" height="15" fill="rgb(238,178,20)" fg:x="97153" fg:w="118"/><text x="64.5633%" y="767.50"></text></g><g><title>_dl_relocate_object (128 samples, 0.08%)</title><rect x="64.3074%" y="789" width="0.0847%" height="15" fill="rgb(208,86,15)" fg:x="97144" fg:w="128"/><text x="64.5574%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (125 samples, 0.08%)</title><rect x="64.3094%" y="773" width="0.0827%" height="15" fill="rgb(239,42,53)" fg:x="97147" fg:w="125"/><text x="64.5594%" y="783.50"></text></g><g><title>[ld-2.31.so] (174 samples, 0.12%)</title><rect x="64.2802%" y="805" width="0.1152%" height="15" fill="rgb(245,226,8)" fg:x="97103" fg:w="174"/><text x="64.5302%" y="815.50"></text></g><g><title>_dl_start (176 samples, 0.12%)</title><rect x="64.2802%" y="853" width="0.1165%" height="15" fill="rgb(216,176,32)" fg:x="97103" fg:w="176"/><text x="64.5302%" y="863.50"></text></g><g><title>_dl_start_final (176 samples, 0.12%)</title><rect x="64.2802%" y="837" width="0.1165%" height="15" fill="rgb(231,186,21)" fg:x="97103" fg:w="176"/><text x="64.5302%" y="847.50"></text></g><g><title>_dl_sysdep_start (176 samples, 0.12%)</title><rect x="64.2802%" y="821" width="0.1165%" height="15" fill="rgb(205,95,49)" fg:x="97103" fg:w="176"/><text x="64.5302%" y="831.50"></text></g><g><title>_start (2,486 samples, 1.65%)</title><rect x="62.7537%" y="869" width="1.6457%" height="15" fill="rgb(217,145,8)" fg:x="94797" fg:w="2486"/><text x="63.0037%" y="879.50"></text></g><g><title>asm_exc_page_fault (75 samples, 0.05%)</title><rect x="64.3994%" y="869" width="0.0496%" height="15" fill="rgb(239,144,48)" fg:x="97283" fg:w="75"/><text x="64.6494%" y="879.50"></text></g><g><title>page_remove_rmap (45 samples, 0.03%)</title><rect x="64.5007%" y="725" width="0.0298%" height="15" fill="rgb(214,189,23)" fg:x="97436" fg:w="45"/><text x="64.7507%" y="735.50"></text></g><g><title>tlb_flush_mmu (34 samples, 0.02%)</title><rect x="64.5311%" y="725" width="0.0225%" height="15" fill="rgb(229,157,17)" fg:x="97482" fg:w="34"/><text x="64.7811%" y="735.50"></text></g><g><title>release_pages (21 samples, 0.01%)</title><rect x="64.5397%" y="709" width="0.0139%" height="15" fill="rgb(230,5,48)" fg:x="97495" fg:w="21"/><text x="64.7897%" y="719.50"></text></g><g><title>__x64_sys_exit_group (146 samples, 0.10%)</title><rect x="64.4616%" y="837" width="0.0966%" height="15" fill="rgb(224,156,48)" fg:x="97377" fg:w="146"/><text x="64.7116%" y="847.50"></text></g><g><title>do_group_exit (146 samples, 0.10%)</title><rect x="64.4616%" y="821" width="0.0966%" height="15" fill="rgb(223,14,29)" fg:x="97377" fg:w="146"/><text x="64.7116%" y="831.50"></text></g><g><title>do_exit (146 samples, 0.10%)</title><rect x="64.4616%" y="805" width="0.0966%" height="15" fill="rgb(229,96,36)" fg:x="97377" fg:w="146"/><text x="64.7116%" y="815.50"></text></g><g><title>mmput (141 samples, 0.09%)</title><rect x="64.4649%" y="789" width="0.0933%" height="15" fill="rgb(231,102,53)" fg:x="97382" fg:w="141"/><text x="64.7149%" y="799.50"></text></g><g><title>exit_mmap (141 samples, 0.09%)</title><rect x="64.4649%" y="773" width="0.0933%" height="15" fill="rgb(210,77,38)" fg:x="97382" fg:w="141"/><text x="64.7149%" y="783.50"></text></g><g><title>unmap_vmas (129 samples, 0.09%)</title><rect x="64.4729%" y="757" width="0.0854%" height="15" fill="rgb(235,131,6)" fg:x="97394" fg:w="129"/><text x="64.7229%" y="767.50"></text></g><g><title>unmap_page_range (129 samples, 0.09%)</title><rect x="64.4729%" y="741" width="0.0854%" height="15" fill="rgb(252,55,38)" fg:x="97394" fg:w="129"/><text x="64.7229%" y="751.50"></text></g><g><title>do_syscall_64 (175 samples, 0.12%)</title><rect x="64.4530%" y="853" width="0.1158%" height="15" fill="rgb(246,38,14)" fg:x="97364" fg:w="175"/><text x="64.7030%" y="863.50"></text></g><g><title>page_remove_rmap (40 samples, 0.03%)</title><rect x="64.5867%" y="693" width="0.0265%" height="15" fill="rgb(242,27,5)" fg:x="97566" fg:w="40"/><text x="64.8367%" y="703.50"></text></g><g><title>tlb_flush_mmu (27 samples, 0.02%)</title><rect x="64.6132%" y="693" width="0.0179%" height="15" fill="rgb(228,65,35)" fg:x="97606" fg:w="27"/><text x="64.8632%" y="703.50"></text></g><g><title>release_pages (20 samples, 0.01%)</title><rect x="64.6178%" y="677" width="0.0132%" height="15" fill="rgb(245,93,11)" fg:x="97613" fg:w="20"/><text x="64.8678%" y="687.50"></text></g><g><title>unmap_page_range (94 samples, 0.06%)</title><rect x="64.5708%" y="709" width="0.0622%" height="15" fill="rgb(213,1,31)" fg:x="97542" fg:w="94"/><text x="64.8208%" y="719.50"></text></g><g><title>mmput (98 samples, 0.06%)</title><rect x="64.5689%" y="757" width="0.0649%" height="15" fill="rgb(237,205,14)" fg:x="97539" fg:w="98"/><text x="64.8189%" y="767.50"></text></g><g><title>exit_mmap (98 samples, 0.06%)</title><rect x="64.5689%" y="741" width="0.0649%" height="15" fill="rgb(232,118,45)" fg:x="97539" fg:w="98"/><text x="64.8189%" y="751.50"></text></g><g><title>unmap_vmas (95 samples, 0.06%)</title><rect x="64.5708%" y="725" width="0.0629%" height="15" fill="rgb(218,5,6)" fg:x="97542" fg:w="95"/><text x="64.8208%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (280 samples, 0.19%)</title><rect x="64.4490%" y="869" width="0.1854%" height="15" fill="rgb(251,87,51)" fg:x="97358" fg:w="280"/><text x="64.6990%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (99 samples, 0.07%)</title><rect x="64.5689%" y="853" width="0.0655%" height="15" fill="rgb(207,225,20)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (99 samples, 0.07%)</title><rect x="64.5689%" y="837" width="0.0655%" height="15" fill="rgb(222,78,54)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="847.50"></text></g><g><title>arch_do_signal (99 samples, 0.07%)</title><rect x="64.5689%" y="821" width="0.0655%" height="15" fill="rgb(232,85,16)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="831.50"></text></g><g><title>get_signal (99 samples, 0.07%)</title><rect x="64.5689%" y="805" width="0.0655%" height="15" fill="rgb(244,25,33)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="815.50"></text></g><g><title>do_group_exit (99 samples, 0.07%)</title><rect x="64.5689%" y="789" width="0.0655%" height="15" fill="rgb(233,24,36)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="799.50"></text></g><g><title>do_exit (99 samples, 0.07%)</title><rect x="64.5689%" y="773" width="0.0655%" height="15" fill="rgb(253,49,54)" fg:x="97539" fg:w="99"/><text x="64.8189%" y="783.50"></text></g><g><title>ld.lld (18,505 samples, 12.25%)</title><rect x="52.3990%" y="885" width="12.2499%" height="15" fill="rgb(245,12,22)" fg:x="79155" fg:w="18505"/><text x="52.6490%" y="895.50">ld.lld</text></g><g><title>[[heap]] (39 samples, 0.03%)</title><rect x="64.6490%" y="869" width="0.0258%" height="15" fill="rgb(253,141,28)" fg:x="97660" fg:w="39"/><text x="64.8990%" y="879.50"></text></g><g><title>[bash] (29 samples, 0.02%)</title><rect x="64.6748%" y="853" width="0.0192%" height="15" fill="rgb(225,207,27)" fg:x="97699" fg:w="29"/><text x="64.9248%" y="863.50"></text></g><g><title>[[stack]] (34 samples, 0.02%)</title><rect x="64.6748%" y="869" width="0.0225%" height="15" fill="rgb(220,84,2)" fg:x="97699" fg:w="34"/><text x="64.9248%" y="879.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.7019%" y="869" width="0.0132%" height="15" fill="rgb(224,37,37)" fg:x="97740" fg:w="20"/><text x="64.9519%" y="879.50"></text></g><g><title>execute_command (16 samples, 0.01%)</title><rect x="64.7357%" y="437" width="0.0106%" height="15" fill="rgb(220,143,18)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="447.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="64.7357%" y="421" width="0.0106%" height="15" fill="rgb(210,88,33)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="431.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.7357%" y="405" width="0.0106%" height="15" fill="rgb(219,87,51)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="415.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="64.7357%" y="389" width="0.0106%" height="15" fill="rgb(211,7,35)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="399.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.7357%" y="373" width="0.0106%" height="15" fill="rgb(232,77,2)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="383.50"></text></g><g><title>execute_command (16 samples, 0.01%)</title><rect x="64.7357%" y="357" width="0.0106%" height="15" fill="rgb(249,94,25)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="367.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="64.7357%" y="341" width="0.0106%" height="15" fill="rgb(215,112,2)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="351.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.7357%" y="325" width="0.0106%" height="15" fill="rgb(226,115,48)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="335.50"></text></g><g><title>execute_command (16 samples, 0.01%)</title><rect x="64.7357%" y="309" width="0.0106%" height="15" fill="rgb(249,196,10)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="319.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="64.7357%" y="293" width="0.0106%" height="15" fill="rgb(237,109,14)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="303.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.7357%" y="277" width="0.0106%" height="15" fill="rgb(217,103,53)" fg:x="97791" fg:w="16"/><text x="64.9857%" y="287.50"></text></g><g><title>execute_command (18 samples, 0.01%)</title><rect x="64.7350%" y="741" width="0.0119%" height="15" fill="rgb(244,137,9)" fg:x="97790" fg:w="18"/><text x="64.9850%" y="751.50"></text></g><g><title>execute_command_internal (18 samples, 0.01%)</title><rect x="64.7350%" y="725" width="0.0119%" height="15" fill="rgb(227,201,3)" fg:x="97790" fg:w="18"/><text x="64.9850%" y="735.50"></text></g><g><title>[bash] (18 samples, 0.01%)</title><rect x="64.7350%" y="709" width="0.0119%" height="15" fill="rgb(243,94,6)" fg:x="97790" fg:w="18"/><text x="64.9850%" y="719.50"></text></g><g><title>execute_command_internal (18 samples, 0.01%)</title><rect x="64.7350%" y="693" width="0.0119%" height="15" fill="rgb(235,118,5)" fg:x="97790" fg:w="18"/><text x="64.9850%" y="703.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7357%" y="677" width="0.0113%" height="15" fill="rgb(247,10,30)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="687.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="661" width="0.0113%" height="15" fill="rgb(205,26,28)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="671.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7357%" y="645" width="0.0113%" height="15" fill="rgb(206,99,35)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="655.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="629" width="0.0113%" height="15" fill="rgb(238,130,40)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="639.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7357%" y="613" width="0.0113%" height="15" fill="rgb(224,126,31)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="623.50"></text></g><g><title>evalstring (17 samples, 0.01%)</title><rect x="64.7357%" y="597" width="0.0113%" height="15" fill="rgb(254,105,17)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="607.50"></text></g><g><title>parse_and_execute (17 samples, 0.01%)</title><rect x="64.7357%" y="581" width="0.0113%" height="15" fill="rgb(216,87,36)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="591.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="565" width="0.0113%" height="15" fill="rgb(240,21,12)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="575.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7357%" y="549" width="0.0113%" height="15" fill="rgb(245,192,34)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="559.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="533" width="0.0113%" height="15" fill="rgb(226,100,49)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="543.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="517" width="0.0113%" height="15" fill="rgb(245,188,27)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="527.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7357%" y="501" width="0.0113%" height="15" fill="rgb(212,170,8)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="511.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7357%" y="485" width="0.0113%" height="15" fill="rgb(217,113,29)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="495.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7357%" y="469" width="0.0113%" height="15" fill="rgb(237,30,3)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="479.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7357%" y="453" width="0.0113%" height="15" fill="rgb(227,19,28)" fg:x="97791" fg:w="17"/><text x="64.9857%" y="463.50"></text></g><g><title>[bash] (65 samples, 0.04%)</title><rect x="64.7152%" y="853" width="0.0430%" height="15" fill="rgb(239,172,45)" fg:x="97760" fg:w="65"/><text x="64.9652%" y="863.50"></text></g><g><title>execute_command_internal (41 samples, 0.03%)</title><rect x="64.7310%" y="837" width="0.0271%" height="15" fill="rgb(254,55,39)" fg:x="97784" fg:w="41"/><text x="64.9810%" y="847.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="64.7350%" y="821" width="0.0232%" height="15" fill="rgb(249,208,12)" fg:x="97790" fg:w="35"/><text x="64.9850%" y="831.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="64.7350%" y="805" width="0.0232%" height="15" fill="rgb(240,52,13)" fg:x="97790" fg:w="35"/><text x="64.9850%" y="815.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="64.7350%" y="789" width="0.0232%" height="15" fill="rgb(252,149,13)" fg:x="97790" fg:w="35"/><text x="64.9850%" y="799.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="64.7350%" y="773" width="0.0232%" height="15" fill="rgb(232,81,48)" fg:x="97790" fg:w="35"/><text x="64.9850%" y="783.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="64.7350%" y="757" width="0.0232%" height="15" fill="rgb(222,144,2)" fg:x="97790" fg:w="35"/><text x="64.9850%" y="767.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="741" width="0.0113%" height="15" fill="rgb(216,81,32)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="751.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="725" width="0.0113%" height="15" fill="rgb(244,78,51)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="735.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="709" width="0.0113%" height="15" fill="rgb(217,66,21)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="719.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="693" width="0.0113%" height="15" fill="rgb(247,101,42)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="703.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="677" width="0.0113%" height="15" fill="rgb(227,81,39)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="687.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="661" width="0.0113%" height="15" fill="rgb(220,223,44)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="671.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="645" width="0.0113%" height="15" fill="rgb(205,218,2)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="655.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="629" width="0.0113%" height="15" fill="rgb(212,207,28)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="639.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="613" width="0.0113%" height="15" fill="rgb(224,12,41)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="623.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="597" width="0.0113%" height="15" fill="rgb(216,118,12)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="607.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7469%" y="581" width="0.0113%" height="15" fill="rgb(252,97,46)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="591.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="565" width="0.0113%" height="15" fill="rgb(244,206,19)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="575.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="549" width="0.0113%" height="15" fill="rgb(231,84,31)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="559.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7469%" y="533" width="0.0113%" height="15" fill="rgb(244,133,0)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="543.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="517" width="0.0113%" height="15" fill="rgb(223,15,50)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="527.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="501" width="0.0113%" height="15" fill="rgb(250,118,49)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="511.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7469%" y="485" width="0.0113%" height="15" fill="rgb(248,25,38)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="495.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="469" width="0.0113%" height="15" fill="rgb(215,70,14)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="479.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="453" width="0.0113%" height="15" fill="rgb(215,28,15)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="463.50"></text></g><g><title>execute_command (17 samples, 0.01%)</title><rect x="64.7469%" y="437" width="0.0113%" height="15" fill="rgb(243,6,28)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="447.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="421" width="0.0113%" height="15" fill="rgb(222,130,1)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="431.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="405" width="0.0113%" height="15" fill="rgb(236,166,44)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="415.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="389" width="0.0113%" height="15" fill="rgb(221,108,14)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="399.50"></text></g><g><title>expand_words (17 samples, 0.01%)</title><rect x="64.7469%" y="373" width="0.0113%" height="15" fill="rgb(252,3,45)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="383.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="357" width="0.0113%" height="15" fill="rgb(237,68,30)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="367.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="341" width="0.0113%" height="15" fill="rgb(211,79,22)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="351.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="325" width="0.0113%" height="15" fill="rgb(252,185,21)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="335.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="309" width="0.0113%" height="15" fill="rgb(225,189,26)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="319.50"></text></g><g><title>command_substitute (17 samples, 0.01%)</title><rect x="64.7469%" y="293" width="0.0113%" height="15" fill="rgb(241,30,40)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="303.50"></text></g><g><title>parse_and_execute (17 samples, 0.01%)</title><rect x="64.7469%" y="277" width="0.0113%" height="15" fill="rgb(235,215,44)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="287.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="261" width="0.0113%" height="15" fill="rgb(205,8,29)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="271.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="245" width="0.0113%" height="15" fill="rgb(241,137,42)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="255.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="64.7469%" y="229" width="0.0113%" height="15" fill="rgb(237,155,2)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="239.50"></text></g><g><title>execute_command_internal (17 samples, 0.01%)</title><rect x="64.7469%" y="213" width="0.0113%" height="15" fill="rgb(245,29,42)" fg:x="97808" fg:w="17"/><text x="64.9969%" y="223.50"></text></g><g><title>__libc_fork (48 samples, 0.03%)</title><rect x="64.7827%" y="149" width="0.0318%" height="15" fill="rgb(234,101,35)" fg:x="97862" fg:w="48"/><text x="65.0327%" y="159.50"></text></g><g><title>arch_fork (47 samples, 0.03%)</title><rect x="64.7833%" y="133" width="0.0311%" height="15" fill="rgb(228,64,37)" fg:x="97863" fg:w="47"/><text x="65.0333%" y="143.50"></text></g><g><title>ret_from_fork (41 samples, 0.03%)</title><rect x="64.7873%" y="117" width="0.0271%" height="15" fill="rgb(217,214,36)" fg:x="97869" fg:w="41"/><text x="65.0373%" y="127.50"></text></g><g><title>schedule_tail (40 samples, 0.03%)</title><rect x="64.7880%" y="101" width="0.0265%" height="15" fill="rgb(243,70,3)" fg:x="97870" fg:w="40"/><text x="65.0380%" y="111.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="64.7913%" y="85" width="0.0232%" height="15" fill="rgb(253,158,52)" fg:x="97875" fg:w="35"/><text x="65.0413%" y="95.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="64.7919%" y="69" width="0.0225%" height="15" fill="rgb(234,111,54)" fg:x="97876" fg:w="34"/><text x="65.0419%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.02%)</title><rect x="64.7939%" y="53" width="0.0205%" height="15" fill="rgb(217,70,32)" fg:x="97879" fg:w="31"/><text x="65.0439%" y="63.50"></text></g><g><title>native_write_msr (31 samples, 0.02%)</title><rect x="64.7939%" y="37" width="0.0205%" height="15" fill="rgb(234,18,33)" fg:x="97879" fg:w="31"/><text x="65.0439%" y="47.50"></text></g><g><title>execute_command (52 samples, 0.03%)</title><rect x="64.7807%" y="821" width="0.0344%" height="15" fill="rgb(234,12,49)" fg:x="97859" fg:w="52"/><text x="65.0307%" y="831.50"></text></g><g><title>execute_command_internal (52 samples, 0.03%)</title><rect x="64.7807%" y="805" width="0.0344%" height="15" fill="rgb(236,10,21)" fg:x="97859" fg:w="52"/><text x="65.0307%" y="815.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="789" width="0.0324%" height="15" fill="rgb(248,182,45)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="799.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="773" width="0.0324%" height="15" fill="rgb(217,95,36)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="783.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="757" width="0.0324%" height="15" fill="rgb(212,110,31)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="767.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="741" width="0.0324%" height="15" fill="rgb(206,32,53)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="751.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="725" width="0.0324%" height="15" fill="rgb(246,141,37)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="735.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="709" width="0.0324%" height="15" fill="rgb(219,16,7)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="719.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="693" width="0.0324%" height="15" fill="rgb(230,205,45)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="703.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.7827%" y="677" width="0.0324%" height="15" fill="rgb(231,43,49)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="687.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="661" width="0.0324%" height="15" fill="rgb(212,106,34)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="671.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="645" width="0.0324%" height="15" fill="rgb(206,83,17)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="655.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="629" width="0.0324%" height="15" fill="rgb(244,154,49)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="639.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="613" width="0.0324%" height="15" fill="rgb(244,149,49)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="623.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="597" width="0.0324%" height="15" fill="rgb(227,134,18)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="607.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="581" width="0.0324%" height="15" fill="rgb(237,116,36)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="591.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="565" width="0.0324%" height="15" fill="rgb(205,129,40)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="575.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="549" width="0.0324%" height="15" fill="rgb(236,178,4)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="559.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="533" width="0.0324%" height="15" fill="rgb(251,76,53)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="543.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="517" width="0.0324%" height="15" fill="rgb(242,92,40)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="527.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="501" width="0.0324%" height="15" fill="rgb(209,45,30)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="511.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="485" width="0.0324%" height="15" fill="rgb(218,157,36)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="495.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.7827%" y="469" width="0.0324%" height="15" fill="rgb(222,186,16)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="479.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="453" width="0.0324%" height="15" fill="rgb(254,72,35)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="463.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="437" width="0.0324%" height="15" fill="rgb(224,25,35)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="447.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.7827%" y="421" width="0.0324%" height="15" fill="rgb(206,135,52)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="431.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="405" width="0.0324%" height="15" fill="rgb(229,174,47)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="415.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="389" width="0.0324%" height="15" fill="rgb(242,184,21)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="399.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.7827%" y="373" width="0.0324%" height="15" fill="rgb(213,22,45)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="383.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="357" width="0.0324%" height="15" fill="rgb(237,81,54)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="367.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="341" width="0.0324%" height="15" fill="rgb(248,177,18)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="351.50"></text></g><g><title>execute_command (49 samples, 0.03%)</title><rect x="64.7827%" y="325" width="0.0324%" height="15" fill="rgb(254,31,16)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="335.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="309" width="0.0324%" height="15" fill="rgb(235,20,31)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="319.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="293" width="0.0324%" height="15" fill="rgb(240,56,43)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="303.50"></text></g><g><title>execute_command_internal (49 samples, 0.03%)</title><rect x="64.7827%" y="277" width="0.0324%" height="15" fill="rgb(237,197,51)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="287.50"></text></g><g><title>expand_words (49 samples, 0.03%)</title><rect x="64.7827%" y="261" width="0.0324%" height="15" fill="rgb(241,162,44)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="271.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="245" width="0.0324%" height="15" fill="rgb(224,23,20)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="255.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="229" width="0.0324%" height="15" fill="rgb(250,109,34)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="239.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="213" width="0.0324%" height="15" fill="rgb(214,175,50)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="223.50"></text></g><g><title>[bash] (49 samples, 0.03%)</title><rect x="64.7827%" y="197" width="0.0324%" height="15" fill="rgb(213,182,5)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="207.50"></text></g><g><title>command_substitute (49 samples, 0.03%)</title><rect x="64.7827%" y="181" width="0.0324%" height="15" fill="rgb(209,199,19)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="191.50"></text></g><g><title>make_child (49 samples, 0.03%)</title><rect x="64.7827%" y="165" width="0.0324%" height="15" fill="rgb(236,224,42)" fg:x="97862" fg:w="49"/><text x="65.0327%" y="175.50"></text></g><g><title>[bash] (18 samples, 0.01%)</title><rect x="64.8217%" y="181" width="0.0119%" height="15" fill="rgb(246,226,29)" fg:x="97921" fg:w="18"/><text x="65.0717%" y="191.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="709" width="0.0132%" height="15" fill="rgb(227,223,11)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="719.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="693" width="0.0132%" height="15" fill="rgb(219,7,51)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="703.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="677" width="0.0132%" height="15" fill="rgb(245,167,10)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="687.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="661" width="0.0132%" height="15" fill="rgb(237,224,16)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="671.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="645" width="0.0132%" height="15" fill="rgb(226,132,13)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="655.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="629" width="0.0132%" height="15" fill="rgb(214,140,3)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="639.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="613" width="0.0132%" height="15" fill="rgb(221,177,4)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="623.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="597" width="0.0132%" height="15" fill="rgb(238,139,3)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="607.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="581" width="0.0132%" height="15" fill="rgb(216,17,39)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="591.50"></text></g><g><title>execute_command (20 samples, 0.01%)</title><rect x="64.8217%" y="565" width="0.0132%" height="15" fill="rgb(238,120,9)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="575.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="549" width="0.0132%" height="15" fill="rgb(244,92,53)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="559.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="533" width="0.0132%" height="15" fill="rgb(224,148,33)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="543.50"></text></g><g><title>execute_command (20 samples, 0.01%)</title><rect x="64.8217%" y="517" width="0.0132%" height="15" fill="rgb(243,6,36)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="527.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="501" width="0.0132%" height="15" fill="rgb(230,102,11)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="511.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="485" width="0.0132%" height="15" fill="rgb(234,148,36)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="495.50"></text></g><g><title>execute_command (20 samples, 0.01%)</title><rect x="64.8217%" y="469" width="0.0132%" height="15" fill="rgb(251,153,25)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="479.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="453" width="0.0132%" height="15" fill="rgb(215,129,8)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="463.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="437" width="0.0132%" height="15" fill="rgb(224,128,35)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="447.50"></text></g><g><title>execute_command (20 samples, 0.01%)</title><rect x="64.8217%" y="421" width="0.0132%" height="15" fill="rgb(237,56,52)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="431.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="405" width="0.0132%" height="15" fill="rgb(234,213,19)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="415.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="389" width="0.0132%" height="15" fill="rgb(252,82,23)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="399.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="373" width="0.0132%" height="15" fill="rgb(254,201,21)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="383.50"></text></g><g><title>expand_words (20 samples, 0.01%)</title><rect x="64.8217%" y="357" width="0.0132%" height="15" fill="rgb(250,186,11)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="367.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="341" width="0.0132%" height="15" fill="rgb(211,174,5)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="351.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="325" width="0.0132%" height="15" fill="rgb(214,121,10)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="335.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="309" width="0.0132%" height="15" fill="rgb(241,66,2)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="319.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="293" width="0.0132%" height="15" fill="rgb(220,167,19)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="303.50"></text></g><g><title>command_substitute (20 samples, 0.01%)</title><rect x="64.8217%" y="277" width="0.0132%" height="15" fill="rgb(231,54,50)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="287.50"></text></g><g><title>parse_and_execute (20 samples, 0.01%)</title><rect x="64.8217%" y="261" width="0.0132%" height="15" fill="rgb(239,217,53)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="271.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="245" width="0.0132%" height="15" fill="rgb(248,8,0)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="255.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="229" width="0.0132%" height="15" fill="rgb(229,118,37)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="239.50"></text></g><g><title>[bash] (20 samples, 0.01%)</title><rect x="64.8217%" y="213" width="0.0132%" height="15" fill="rgb(253,223,43)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="223.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="64.8217%" y="197" width="0.0132%" height="15" fill="rgb(211,77,36)" fg:x="97921" fg:w="20"/><text x="65.0717%" y="207.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="64.8191%" y="773" width="0.0165%" height="15" fill="rgb(219,3,53)" fg:x="97917" fg:w="25"/><text x="65.0691%" y="783.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.8191%" y="757" width="0.0165%" height="15" fill="rgb(244,45,42)" fg:x="97917" fg:w="25"/><text x="65.0691%" y="767.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.8191%" y="741" width="0.0165%" height="15" fill="rgb(225,95,27)" fg:x="97917" fg:w="25"/><text x="65.0691%" y="751.50"></text></g><g><title>execute_command_internal (21 samples, 0.01%)</title><rect x="64.8217%" y="725" width="0.0139%" height="15" fill="rgb(207,74,8)" fg:x="97921" fg:w="21"/><text x="65.0717%" y="735.50"></text></g><g><title>[bash] (85 samples, 0.06%)</title><rect x="64.7800%" y="837" width="0.0563%" height="15" fill="rgb(243,63,36)" fg:x="97858" fg:w="85"/><text x="65.0300%" y="847.50"></text></g><g><title>execute_command_internal (32 samples, 0.02%)</title><rect x="64.8151%" y="821" width="0.0212%" height="15" fill="rgb(211,180,12)" fg:x="97911" fg:w="32"/><text x="65.0651%" y="831.50"></text></g><g><title>execute_command_internal (26 samples, 0.02%)</title><rect x="64.8191%" y="805" width="0.0172%" height="15" fill="rgb(254,166,49)" fg:x="97917" fg:w="26"/><text x="65.0691%" y="815.50"></text></g><g><title>[bash] (26 samples, 0.02%)</title><rect x="64.8191%" y="789" width="0.0172%" height="15" fill="rgb(205,19,0)" fg:x="97917" fg:w="26"/><text x="65.0691%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (92 samples, 0.06%)</title><rect x="64.8634%" y="117" width="0.0609%" height="15" fill="rgb(224,172,32)" fg:x="97984" fg:w="92"/><text x="65.1134%" y="127.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (90 samples, 0.06%)</title><rect x="64.8648%" y="101" width="0.0596%" height="15" fill="rgb(254,136,30)" fg:x="97986" fg:w="90"/><text x="65.1148%" y="111.50"></text></g><g><title>native_write_msr (89 samples, 0.06%)</title><rect x="64.8654%" y="85" width="0.0589%" height="15" fill="rgb(246,19,35)" fg:x="97987" fg:w="89"/><text x="65.1154%" y="95.50"></text></g><g><title>arch_fork (122 samples, 0.08%)</title><rect x="64.8456%" y="181" width="0.0808%" height="15" fill="rgb(219,24,36)" fg:x="97957" fg:w="122"/><text x="65.0956%" y="191.50"></text></g><g><title>ret_from_fork (110 samples, 0.07%)</title><rect x="64.8535%" y="165" width="0.0728%" height="15" fill="rgb(251,55,1)" fg:x="97969" fg:w="110"/><text x="65.1035%" y="175.50"></text></g><g><title>schedule_tail (110 samples, 0.07%)</title><rect x="64.8535%" y="149" width="0.0728%" height="15" fill="rgb(218,117,39)" fg:x="97969" fg:w="110"/><text x="65.1035%" y="159.50"></text></g><g><title>finish_task_switch (102 samples, 0.07%)</title><rect x="64.8588%" y="133" width="0.0675%" height="15" fill="rgb(248,169,11)" fg:x="97977" fg:w="102"/><text x="65.1088%" y="143.50"></text></g><g><title>execute_command_internal (222 samples, 0.15%)</title><rect x="64.7800%" y="853" width="0.1470%" height="15" fill="rgb(244,40,44)" fg:x="97858" fg:w="222"/><text x="65.0300%" y="863.50"></text></g><g><title>execute_command_internal (135 samples, 0.09%)</title><rect x="64.8376%" y="837" width="0.0894%" height="15" fill="rgb(234,62,37)" fg:x="97945" fg:w="135"/><text x="65.0876%" y="847.50"></text></g><g><title>[bash] (135 samples, 0.09%)</title><rect x="64.8376%" y="821" width="0.0894%" height="15" fill="rgb(207,117,42)" fg:x="97945" fg:w="135"/><text x="65.0876%" y="831.50"></text></g><g><title>execute_command (135 samples, 0.09%)</title><rect x="64.8376%" y="805" width="0.0894%" height="15" fill="rgb(213,43,2)" fg:x="97945" fg:w="135"/><text x="65.0876%" y="815.50"></text></g><g><title>execute_command_internal (135 samples, 0.09%)</title><rect x="64.8376%" y="789" width="0.0894%" height="15" fill="rgb(244,202,51)" fg:x="97945" fg:w="135"/><text x="65.0876%" y="799.50"></text></g><g><title>[bash] (135 samples, 0.09%)</title><rect x="64.8376%" y="773" width="0.0894%" height="15" fill="rgb(253,174,46)" fg:x="97945" fg:w="135"/><text x="65.0876%" y="783.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="757" width="0.0854%" height="15" fill="rgb(251,23,1)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="767.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="741" width="0.0854%" height="15" fill="rgb(253,26,1)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="751.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="725" width="0.0854%" height="15" fill="rgb(216,89,31)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="735.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="709" width="0.0854%" height="15" fill="rgb(209,109,5)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="719.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="693" width="0.0854%" height="15" fill="rgb(229,63,13)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="703.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="677" width="0.0854%" height="15" fill="rgb(238,137,54)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="687.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="661" width="0.0854%" height="15" fill="rgb(228,1,9)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="671.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="645" width="0.0854%" height="15" fill="rgb(249,120,48)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="655.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="629" width="0.0854%" height="15" fill="rgb(209,72,36)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="639.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="613" width="0.0854%" height="15" fill="rgb(247,98,49)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="623.50"></text></g><g><title>execute_command (129 samples, 0.09%)</title><rect x="64.8416%" y="597" width="0.0854%" height="15" fill="rgb(233,75,36)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="607.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="581" width="0.0854%" height="15" fill="rgb(225,14,24)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="591.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="565" width="0.0854%" height="15" fill="rgb(237,193,20)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="575.50"></text></g><g><title>execute_command (129 samples, 0.09%)</title><rect x="64.8416%" y="549" width="0.0854%" height="15" fill="rgb(239,122,19)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="559.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="533" width="0.0854%" height="15" fill="rgb(231,220,10)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="543.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="517" width="0.0854%" height="15" fill="rgb(220,66,15)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="527.50"></text></g><g><title>execute_command (129 samples, 0.09%)</title><rect x="64.8416%" y="501" width="0.0854%" height="15" fill="rgb(215,171,52)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="511.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="485" width="0.0854%" height="15" fill="rgb(241,169,50)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="495.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="469" width="0.0854%" height="15" fill="rgb(236,189,0)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="479.50"></text></g><g><title>execute_command (129 samples, 0.09%)</title><rect x="64.8416%" y="453" width="0.0854%" height="15" fill="rgb(217,147,20)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="463.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="437" width="0.0854%" height="15" fill="rgb(206,188,39)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="447.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="421" width="0.0854%" height="15" fill="rgb(227,118,25)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="431.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="405" width="0.0854%" height="15" fill="rgb(248,171,40)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="415.50"></text></g><g><title>expand_words (129 samples, 0.09%)</title><rect x="64.8416%" y="389" width="0.0854%" height="15" fill="rgb(251,90,54)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="399.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="373" width="0.0854%" height="15" fill="rgb(234,11,46)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="383.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="357" width="0.0854%" height="15" fill="rgb(229,134,13)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="367.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="341" width="0.0854%" height="15" fill="rgb(223,129,3)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="351.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="325" width="0.0854%" height="15" fill="rgb(221,124,13)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="335.50"></text></g><g><title>command_substitute (129 samples, 0.09%)</title><rect x="64.8416%" y="309" width="0.0854%" height="15" fill="rgb(234,3,18)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="319.50"></text></g><g><title>parse_and_execute (129 samples, 0.09%)</title><rect x="64.8416%" y="293" width="0.0854%" height="15" fill="rgb(249,199,20)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="303.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="277" width="0.0854%" height="15" fill="rgb(224,134,6)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="287.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="261" width="0.0854%" height="15" fill="rgb(254,83,26)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="271.50"></text></g><g><title>[bash] (129 samples, 0.09%)</title><rect x="64.8416%" y="245" width="0.0854%" height="15" fill="rgb(217,88,9)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="255.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="64.8416%" y="229" width="0.0854%" height="15" fill="rgb(225,73,2)" fg:x="97951" fg:w="129"/><text x="65.0916%" y="239.50"></text></g><g><title>make_child (127 samples, 0.08%)</title><rect x="64.8429%" y="213" width="0.0841%" height="15" fill="rgb(226,44,39)" fg:x="97953" fg:w="127"/><text x="65.0929%" y="223.50"></text></g><g><title>__libc_fork (127 samples, 0.08%)</title><rect x="64.8429%" y="197" width="0.0841%" height="15" fill="rgb(228,53,17)" fg:x="97953" fg:w="127"/><text x="65.0929%" y="207.50"></text></g><g><title>[unknown] (348 samples, 0.23%)</title><rect x="64.7152%" y="869" width="0.2304%" height="15" fill="rgb(212,27,27)" fg:x="97760" fg:w="348"/><text x="64.9652%" y="879.50"></text></g><g><title>dispose_command (16 samples, 0.01%)</title><rect x="64.9614%" y="437" width="0.0106%" height="15" fill="rgb(241,50,6)" fg:x="98132" fg:w="16"/><text x="65.2114%" y="447.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.9614%" y="485" width="0.0119%" height="15" fill="rgb(225,28,51)" fg:x="98132" fg:w="18"/><text x="65.2114%" y="495.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.9614%" y="469" width="0.0119%" height="15" fill="rgb(215,33,16)" fg:x="98132" fg:w="18"/><text x="65.2114%" y="479.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="64.9614%" y="453" width="0.0119%" height="15" fill="rgb(243,40,39)" fg:x="98132" fg:w="18"/><text x="65.2114%" y="463.50"></text></g><g><title>dispose_command (21 samples, 0.01%)</title><rect x="64.9601%" y="581" width="0.0139%" height="15" fill="rgb(225,11,42)" fg:x="98130" fg:w="21"/><text x="65.2101%" y="591.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.9607%" y="565" width="0.0132%" height="15" fill="rgb(241,220,38)" fg:x="98131" fg:w="20"/><text x="65.2107%" y="575.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.9607%" y="549" width="0.0132%" height="15" fill="rgb(244,52,35)" fg:x="98131" fg:w="20"/><text x="65.2107%" y="559.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.9607%" y="533" width="0.0132%" height="15" fill="rgb(246,42,46)" fg:x="98131" fg:w="20"/><text x="65.2107%" y="543.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="64.9607%" y="517" width="0.0132%" height="15" fill="rgb(205,184,13)" fg:x="98131" fg:w="20"/><text x="65.2107%" y="527.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="64.9614%" y="501" width="0.0126%" height="15" fill="rgb(209,48,36)" fg:x="98132" fg:w="19"/><text x="65.2114%" y="511.50"></text></g><g><title>dispose_command (26 samples, 0.02%)</title><rect x="64.9574%" y="693" width="0.0172%" height="15" fill="rgb(244,34,51)" fg:x="98126" fg:w="26"/><text x="65.2074%" y="703.50"></text></g><g><title>dispose_command (26 samples, 0.02%)</title><rect x="64.9574%" y="677" width="0.0172%" height="15" fill="rgb(221,107,33)" fg:x="98126" fg:w="26"/><text x="65.2074%" y="687.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="64.9581%" y="661" width="0.0165%" height="15" fill="rgb(224,203,12)" fg:x="98127" fg:w="25"/><text x="65.2081%" y="671.50"></text></g><g><title>dispose_command (24 samples, 0.02%)</title><rect x="64.9588%" y="645" width="0.0159%" height="15" fill="rgb(230,215,18)" fg:x="98128" fg:w="24"/><text x="65.2088%" y="655.50"></text></g><g><title>dispose_command (24 samples, 0.02%)</title><rect x="64.9588%" y="629" width="0.0159%" height="15" fill="rgb(206,185,35)" fg:x="98128" fg:w="24"/><text x="65.2088%" y="639.50"></text></g><g><title>dispose_command (23 samples, 0.02%)</title><rect x="64.9594%" y="613" width="0.0152%" height="15" fill="rgb(228,140,34)" fg:x="98129" fg:w="23"/><text x="65.2094%" y="623.50"></text></g><g><title>dispose_command (23 samples, 0.02%)</title><rect x="64.9594%" y="597" width="0.0152%" height="15" fill="rgb(208,93,13)" fg:x="98129" fg:w="23"/><text x="65.2094%" y="607.50"></text></g><g><title>dispose_command (28 samples, 0.02%)</title><rect x="64.9568%" y="741" width="0.0185%" height="15" fill="rgb(221,193,39)" fg:x="98125" fg:w="28"/><text x="65.2068%" y="751.50"></text></g><g><title>dispose_command (28 samples, 0.02%)</title><rect x="64.9568%" y="725" width="0.0185%" height="15" fill="rgb(241,132,34)" fg:x="98125" fg:w="28"/><text x="65.2068%" y="735.50"></text></g><g><title>dispose_command (28 samples, 0.02%)</title><rect x="64.9568%" y="709" width="0.0185%" height="15" fill="rgb(221,141,10)" fg:x="98125" fg:w="28"/><text x="65.2068%" y="719.50"></text></g><g><title>dispose_command (30 samples, 0.02%)</title><rect x="64.9561%" y="805" width="0.0199%" height="15" fill="rgb(226,90,31)" fg:x="98124" fg:w="30"/><text x="65.2061%" y="815.50"></text></g><g><title>dispose_command (29 samples, 0.02%)</title><rect x="64.9568%" y="789" width="0.0192%" height="15" fill="rgb(243,75,5)" fg:x="98125" fg:w="29"/><text x="65.2068%" y="799.50"></text></g><g><title>dispose_command (29 samples, 0.02%)</title><rect x="64.9568%" y="773" width="0.0192%" height="15" fill="rgb(227,156,21)" fg:x="98125" fg:w="29"/><text x="65.2068%" y="783.50"></text></g><g><title>dispose_command (29 samples, 0.02%)</title><rect x="64.9568%" y="757" width="0.0192%" height="15" fill="rgb(250,195,8)" fg:x="98125" fg:w="29"/><text x="65.2068%" y="767.50"></text></g><g><title>execute_command (16 samples, 0.01%)</title><rect x="64.9866%" y="565" width="0.0106%" height="15" fill="rgb(220,134,5)" fg:x="98170" fg:w="16"/><text x="65.2366%" y="575.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="64.9866%" y="549" width="0.0106%" height="15" fill="rgb(246,106,34)" fg:x="98170" fg:w="16"/><text x="65.2366%" y="559.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="64.9866%" y="533" width="0.0106%" height="15" fill="rgb(205,1,4)" fg:x="98170" fg:w="16"/><text x="65.2366%" y="543.50"></text></g><g><title>execute_command_internal (24 samples, 0.02%)</title><rect x="64.9866%" y="661" width="0.0159%" height="15" fill="rgb(224,151,29)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="671.50"></text></g><g><title>execute_command_internal (24 samples, 0.02%)</title><rect x="64.9866%" y="645" width="0.0159%" height="15" fill="rgb(251,196,0)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="655.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="64.9866%" y="629" width="0.0159%" height="15" fill="rgb(212,127,0)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="639.50"></text></g><g><title>execute_command (24 samples, 0.02%)</title><rect x="64.9866%" y="613" width="0.0159%" height="15" fill="rgb(236,71,53)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="623.50"></text></g><g><title>execute_command_internal (24 samples, 0.02%)</title><rect x="64.9866%" y="597" width="0.0159%" height="15" fill="rgb(227,99,0)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="607.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="64.9866%" y="581" width="0.0159%" height="15" fill="rgb(239,89,21)" fg:x="98170" fg:w="24"/><text x="65.2366%" y="591.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.9866%" y="725" width="0.0165%" height="15" fill="rgb(243,122,19)" fg:x="98170" fg:w="25"/><text x="65.2366%" y="735.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.9866%" y="709" width="0.0165%" height="15" fill="rgb(229,192,45)" fg:x="98170" fg:w="25"/><text x="65.2366%" y="719.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="64.9866%" y="693" width="0.0165%" height="15" fill="rgb(235,165,35)" fg:x="98170" fg:w="25"/><text x="65.2366%" y="703.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="64.9866%" y="677" width="0.0165%" height="15" fill="rgb(253,202,0)" fg:x="98170" fg:w="25"/><text x="65.2366%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.05%)</title><rect x="65.0170%" y="629" width="0.0470%" height="15" fill="rgb(235,51,20)" fg:x="98216" fg:w="71"/><text x="65.2670%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.05%)</title><rect x="65.0183%" y="613" width="0.0457%" height="15" fill="rgb(218,95,46)" fg:x="98218" fg:w="69"/><text x="65.2683%" y="623.50"></text></g><g><title>native_write_msr (68 samples, 0.05%)</title><rect x="65.0190%" y="597" width="0.0450%" height="15" fill="rgb(212,81,10)" fg:x="98219" fg:w="68"/><text x="65.2690%" y="607.50"></text></g><g><title>arch_fork (90 samples, 0.06%)</title><rect x="65.0071%" y="693" width="0.0596%" height="15" fill="rgb(240,59,0)" fg:x="98201" fg:w="90"/><text x="65.2571%" y="703.50"></text></g><g><title>ret_from_fork (87 samples, 0.06%)</title><rect x="65.0091%" y="677" width="0.0576%" height="15" fill="rgb(212,191,42)" fg:x="98204" fg:w="87"/><text x="65.2591%" y="687.50"></text></g><g><title>schedule_tail (87 samples, 0.06%)</title><rect x="65.0091%" y="661" width="0.0576%" height="15" fill="rgb(233,140,3)" fg:x="98204" fg:w="87"/><text x="65.2591%" y="671.50"></text></g><g><title>finish_task_switch (81 samples, 0.05%)</title><rect x="65.0130%" y="645" width="0.0536%" height="15" fill="rgb(215,69,23)" fg:x="98210" fg:w="81"/><text x="65.2630%" y="655.50"></text></g><g><title>__libc_fork (91 samples, 0.06%)</title><rect x="65.0071%" y="709" width="0.0602%" height="15" fill="rgb(240,202,20)" fg:x="98201" fg:w="91"/><text x="65.2571%" y="719.50"></text></g><g><title>make_child (100 samples, 0.07%)</title><rect x="65.0038%" y="725" width="0.0662%" height="15" fill="rgb(209,146,50)" fg:x="98196" fg:w="100"/><text x="65.2538%" y="735.50"></text></g><g><title>execute_command (148 samples, 0.10%)</title><rect x="64.9839%" y="757" width="0.0980%" height="15" fill="rgb(253,102,54)" fg:x="98166" fg:w="148"/><text x="65.2339%" y="767.50"></text></g><g><title>execute_command_internal (148 samples, 0.10%)</title><rect x="64.9839%" y="741" width="0.0980%" height="15" fill="rgb(250,173,47)" fg:x="98166" fg:w="148"/><text x="65.2339%" y="751.50"></text></g><g><title>wait_for (16 samples, 0.01%)</title><rect x="65.0713%" y="725" width="0.0106%" height="15" fill="rgb(232,142,7)" fg:x="98298" fg:w="16"/><text x="65.3213%" y="735.50"></text></g><g><title>[bash] (178 samples, 0.12%)</title><rect x="64.9773%" y="773" width="0.1178%" height="15" fill="rgb(230,157,47)" fg:x="98156" fg:w="178"/><text x="65.2273%" y="783.50"></text></g><g><title>execute_command_internal (20 samples, 0.01%)</title><rect x="65.0819%" y="757" width="0.0132%" height="15" fill="rgb(214,177,35)" fg:x="98314" fg:w="20"/><text x="65.3319%" y="767.50"></text></g><g><title>execute_command_internal (19 samples, 0.01%)</title><rect x="65.0825%" y="741" width="0.0126%" height="15" fill="rgb(234,119,46)" fg:x="98315" fg:w="19"/><text x="65.3325%" y="751.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="65.0825%" y="725" width="0.0126%" height="15" fill="rgb(241,180,50)" fg:x="98315" fg:w="19"/><text x="65.3325%" y="735.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="65.1223%" y="197" width="0.0106%" height="15" fill="rgb(221,54,25)" fg:x="98375" fg:w="16"/><text x="65.3723%" y="207.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="65.1223%" y="245" width="0.0113%" height="15" fill="rgb(209,157,44)" fg:x="98375" fg:w="17"/><text x="65.3723%" y="255.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="65.1223%" y="229" width="0.0113%" height="15" fill="rgb(246,115,41)" fg:x="98375" fg:w="17"/><text x="65.3723%" y="239.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="65.1223%" y="213" width="0.0113%" height="15" fill="rgb(229,86,1)" fg:x="98375" fg:w="17"/><text x="65.3723%" y="223.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="65.1203%" y="277" width="0.0139%" height="15" fill="rgb(240,108,53)" fg:x="98372" fg:w="21"/><text x="65.3703%" y="287.50"></text></g><g><title>copy_command (20 samples, 0.01%)</title><rect x="65.1209%" y="261" width="0.0132%" height="15" fill="rgb(227,134,2)" fg:x="98373" fg:w="20"/><text x="65.3709%" y="271.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="65.1190%" y="293" width="0.0159%" height="15" fill="rgb(213,129,25)" fg:x="98370" fg:w="24"/><text x="65.3690%" y="303.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1190%" y="373" width="0.0172%" height="15" fill="rgb(226,35,21)" fg:x="98370" fg:w="26"/><text x="65.3690%" y="383.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1190%" y="357" width="0.0172%" height="15" fill="rgb(208,129,26)" fg:x="98370" fg:w="26"/><text x="65.3690%" y="367.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1190%" y="341" width="0.0172%" height="15" fill="rgb(224,83,6)" fg:x="98370" fg:w="26"/><text x="65.3690%" y="351.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1190%" y="325" width="0.0172%" height="15" fill="rgb(227,52,39)" fg:x="98370" fg:w="26"/><text x="65.3690%" y="335.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1190%" y="309" width="0.0172%" height="15" fill="rgb(241,30,17)" fg:x="98370" fg:w="26"/><text x="65.3690%" y="319.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1190%" y="453" width="0.0179%" height="15" fill="rgb(246,186,42)" fg:x="98370" fg:w="27"/><text x="65.3690%" y="463.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1190%" y="437" width="0.0179%" height="15" fill="rgb(221,169,15)" fg:x="98370" fg:w="27"/><text x="65.3690%" y="447.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1190%" y="421" width="0.0179%" height="15" fill="rgb(235,108,21)" fg:x="98370" fg:w="27"/><text x="65.3690%" y="431.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1190%" y="405" width="0.0179%" height="15" fill="rgb(219,148,30)" fg:x="98370" fg:w="27"/><text x="65.3690%" y="415.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1190%" y="389" width="0.0179%" height="15" fill="rgb(220,109,5)" fg:x="98370" fg:w="27"/><text x="65.3690%" y="399.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="65.1190%" y="469" width="0.0185%" height="15" fill="rgb(213,203,48)" fg:x="98370" fg:w="28"/><text x="65.3690%" y="479.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="65.1190%" y="517" width="0.0192%" height="15" fill="rgb(244,71,33)" fg:x="98370" fg:w="29"/><text x="65.3690%" y="527.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="65.1190%" y="501" width="0.0192%" height="15" fill="rgb(209,23,2)" fg:x="98370" fg:w="29"/><text x="65.3690%" y="511.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="65.1190%" y="485" width="0.0192%" height="15" fill="rgb(219,97,7)" fg:x="98370" fg:w="29"/><text x="65.3690%" y="495.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="65.1163%" y="533" width="0.0225%" height="15" fill="rgb(216,161,23)" fg:x="98366" fg:w="34"/><text x="65.3663%" y="543.50"></text></g><g><title>copy_command (36 samples, 0.02%)</title><rect x="65.1156%" y="581" width="0.0238%" height="15" fill="rgb(207,45,42)" fg:x="98365" fg:w="36"/><text x="65.3656%" y="591.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="65.1163%" y="565" width="0.0232%" height="15" fill="rgb(241,61,4)" fg:x="98366" fg:w="35"/><text x="65.3663%" y="575.50"></text></g><g><title>copy_command (35 samples, 0.02%)</title><rect x="65.1163%" y="549" width="0.0232%" height="15" fill="rgb(236,170,1)" fg:x="98366" fg:w="35"/><text x="65.3663%" y="559.50"></text></g><g><title>copy_command (51 samples, 0.03%)</title><rect x="65.1077%" y="613" width="0.0338%" height="15" fill="rgb(239,72,5)" fg:x="98353" fg:w="51"/><text x="65.3577%" y="623.50"></text></g><g><title>copy_command (39 samples, 0.03%)</title><rect x="65.1156%" y="597" width="0.0258%" height="15" fill="rgb(214,13,50)" fg:x="98365" fg:w="39"/><text x="65.3656%" y="607.50"></text></g><g><title>copy_command (55 samples, 0.04%)</title><rect x="65.1064%" y="629" width="0.0364%" height="15" fill="rgb(224,88,9)" fg:x="98351" fg:w="55"/><text x="65.3564%" y="639.50"></text></g><g><title>copy_command (62 samples, 0.04%)</title><rect x="65.1051%" y="645" width="0.0410%" height="15" fill="rgb(238,192,34)" fg:x="98349" fg:w="62"/><text x="65.3551%" y="655.50"></text></g><g><title>copy_command (65 samples, 0.04%)</title><rect x="65.1044%" y="661" width="0.0430%" height="15" fill="rgb(217,203,50)" fg:x="98348" fg:w="65"/><text x="65.3544%" y="671.50"></text></g><g><title>copy_command (74 samples, 0.05%)</title><rect x="65.0998%" y="677" width="0.0490%" height="15" fill="rgb(241,123,32)" fg:x="98341" fg:w="74"/><text x="65.3498%" y="687.50"></text></g><g><title>copy_command (79 samples, 0.05%)</title><rect x="65.0978%" y="693" width="0.0523%" height="15" fill="rgb(248,151,39)" fg:x="98338" fg:w="79"/><text x="65.3478%" y="703.50"></text></g><g><title>copy_command (84 samples, 0.06%)</title><rect x="65.0965%" y="709" width="0.0556%" height="15" fill="rgb(208,89,6)" fg:x="98336" fg:w="84"/><text x="65.3465%" y="719.50"></text></g><g><title>copy_command (89 samples, 0.06%)</title><rect x="65.0951%" y="757" width="0.0589%" height="15" fill="rgb(254,43,26)" fg:x="98334" fg:w="89"/><text x="65.3451%" y="767.50"></text></g><g><title>copy_command (88 samples, 0.06%)</title><rect x="65.0958%" y="741" width="0.0583%" height="15" fill="rgb(216,158,13)" fg:x="98335" fg:w="88"/><text x="65.3458%" y="751.50"></text></g><g><title>copy_command (88 samples, 0.06%)</title><rect x="65.0958%" y="725" width="0.0583%" height="15" fill="rgb(212,47,37)" fg:x="98335" fg:w="88"/><text x="65.3458%" y="735.50"></text></g><g><title>bind_function (93 samples, 0.06%)</title><rect x="65.0951%" y="773" width="0.0616%" height="15" fill="rgb(254,16,10)" fg:x="98334" fg:w="93"/><text x="65.3451%" y="783.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="65.1752%" y="309" width="0.0106%" height="15" fill="rgb(223,228,16)" fg:x="98455" fg:w="16"/><text x="65.4252%" y="319.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="65.1752%" y="293" width="0.0106%" height="15" fill="rgb(249,108,50)" fg:x="98455" fg:w="16"/><text x="65.4252%" y="303.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="65.1752%" y="341" width="0.0113%" height="15" fill="rgb(208,220,5)" fg:x="98455" fg:w="17"/><text x="65.4252%" y="351.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="65.1752%" y="325" width="0.0113%" height="15" fill="rgb(217,89,48)" fg:x="98455" fg:w="17"/><text x="65.4252%" y="335.50"></text></g><g><title>copy_command (18 samples, 0.01%)</title><rect x="65.1752%" y="357" width="0.0119%" height="15" fill="rgb(212,113,41)" fg:x="98455" fg:w="18"/><text x="65.4252%" y="367.50"></text></g><g><title>copy_command (19 samples, 0.01%)</title><rect x="65.1752%" y="373" width="0.0126%" height="15" fill="rgb(231,127,5)" fg:x="98455" fg:w="19"/><text x="65.4252%" y="383.50"></text></g><g><title>copy_command (21 samples, 0.01%)</title><rect x="65.1746%" y="389" width="0.0139%" height="15" fill="rgb(217,141,17)" fg:x="98454" fg:w="21"/><text x="65.4246%" y="399.50"></text></g><g><title>copy_command (23 samples, 0.02%)</title><rect x="65.1739%" y="421" width="0.0152%" height="15" fill="rgb(245,125,54)" fg:x="98453" fg:w="23"/><text x="65.4239%" y="431.50"></text></g><g><title>copy_command (22 samples, 0.01%)</title><rect x="65.1746%" y="405" width="0.0146%" height="15" fill="rgb(248,125,3)" fg:x="98454" fg:w="22"/><text x="65.4246%" y="415.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="65.1739%" y="453" width="0.0159%" height="15" fill="rgb(236,119,51)" fg:x="98453" fg:w="24"/><text x="65.4239%" y="463.50"></text></g><g><title>copy_command (24 samples, 0.02%)</title><rect x="65.1739%" y="437" width="0.0159%" height="15" fill="rgb(239,99,8)" fg:x="98453" fg:w="24"/><text x="65.4239%" y="447.50"></text></g><g><title>copy_command (27 samples, 0.02%)</title><rect x="65.1726%" y="517" width="0.0179%" height="15" fill="rgb(224,228,4)" fg:x="98451" fg:w="27"/><text x="65.4226%" y="527.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1732%" y="501" width="0.0172%" height="15" fill="rgb(220,131,45)" fg:x="98452" fg:w="26"/><text x="65.4232%" y="511.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1732%" y="485" width="0.0172%" height="15" fill="rgb(215,62,5)" fg:x="98452" fg:w="26"/><text x="65.4232%" y="495.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="65.1732%" y="469" width="0.0172%" height="15" fill="rgb(253,12,24)" fg:x="98452" fg:w="26"/><text x="65.4232%" y="479.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="65.1719%" y="533" width="0.0192%" height="15" fill="rgb(248,120,50)" fg:x="98450" fg:w="29"/><text x="65.4219%" y="543.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="65.1719%" y="565" width="0.0199%" height="15" fill="rgb(245,194,10)" fg:x="98450" fg:w="30"/><text x="65.4219%" y="575.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="65.1719%" y="549" width="0.0199%" height="15" fill="rgb(241,149,38)" fg:x="98450" fg:w="30"/><text x="65.4219%" y="559.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="65.1719%" y="581" width="0.0218%" height="15" fill="rgb(219,215,7)" fg:x="98450" fg:w="33"/><text x="65.4219%" y="591.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="65.1719%" y="597" width="0.0225%" height="15" fill="rgb(208,120,31)" fg:x="98450" fg:w="34"/><text x="65.4219%" y="607.50"></text></g><g><title>copy_command (48 samples, 0.03%)</title><rect x="65.1640%" y="613" width="0.0318%" height="15" fill="rgb(244,30,8)" fg:x="98438" fg:w="48"/><text x="65.4140%" y="623.50"></text></g><g><title>copy_command (53 samples, 0.04%)</title><rect x="65.1620%" y="629" width="0.0351%" height="15" fill="rgb(238,35,44)" fg:x="98435" fg:w="53"/><text x="65.4120%" y="639.50"></text></g><g><title>copy_command (57 samples, 0.04%)</title><rect x="65.1607%" y="661" width="0.0377%" height="15" fill="rgb(243,218,37)" fg:x="98433" fg:w="57"/><text x="65.4107%" y="671.50"></text></g><g><title>copy_command (56 samples, 0.04%)</title><rect x="65.1613%" y="645" width="0.0371%" height="15" fill="rgb(218,169,10)" fg:x="98434" fg:w="56"/><text x="65.4113%" y="655.50"></text></g><g><title>copy_command (63 samples, 0.04%)</title><rect x="65.1574%" y="677" width="0.0417%" height="15" fill="rgb(221,144,10)" fg:x="98428" fg:w="63"/><text x="65.4074%" y="687.50"></text></g><g><title>copy_command (65 samples, 0.04%)</title><rect x="65.1567%" y="693" width="0.0430%" height="15" fill="rgb(226,41,38)" fg:x="98427" fg:w="65"/><text x="65.4067%" y="703.50"></text></g><g><title>copy_command (66 samples, 0.04%)</title><rect x="65.1567%" y="709" width="0.0437%" height="15" fill="rgb(228,3,1)" fg:x="98427" fg:w="66"/><text x="65.4067%" y="719.50"></text></g><g><title>copy_command (68 samples, 0.05%)</title><rect x="65.1567%" y="725" width="0.0450%" height="15" fill="rgb(209,129,12)" fg:x="98427" fg:w="68"/><text x="65.4067%" y="735.50"></text></g><g><title>copy_function_def_contents (69 samples, 0.05%)</title><rect x="65.1567%" y="773" width="0.0457%" height="15" fill="rgb(213,136,33)" fg:x="98427" fg:w="69"/><text x="65.4067%" y="783.50"></text></g><g><title>copy_command (69 samples, 0.05%)</title><rect x="65.1567%" y="757" width="0.0457%" height="15" fill="rgb(209,181,29)" fg:x="98427" fg:w="69"/><text x="65.4067%" y="767.50"></text></g><g><title>copy_command (69 samples, 0.05%)</title><rect x="65.1567%" y="741" width="0.0457%" height="15" fill="rgb(234,173,18)" fg:x="98427" fg:w="69"/><text x="65.4067%" y="751.50"></text></g><g><title>[bash] (19 samples, 0.01%)</title><rect x="65.2024%" y="741" width="0.0126%" height="15" fill="rgb(227,73,47)" fg:x="98496" fg:w="19"/><text x="65.4524%" y="751.50"></text></g><g><title>__libc_fork (100 samples, 0.07%)</title><rect x="65.2229%" y="677" width="0.0662%" height="15" fill="rgb(234,9,34)" fg:x="98527" fg:w="100"/><text x="65.4729%" y="687.50"></text></g><g><title>arch_fork (99 samples, 0.07%)</title><rect x="65.2236%" y="661" width="0.0655%" height="15" fill="rgb(235,172,15)" fg:x="98528" fg:w="99"/><text x="65.4736%" y="671.50"></text></g><g><title>ret_from_fork (91 samples, 0.06%)</title><rect x="65.2288%" y="645" width="0.0602%" height="15" fill="rgb(245,61,2)" fg:x="98536" fg:w="91"/><text x="65.4788%" y="655.50"></text></g><g><title>schedule_tail (91 samples, 0.06%)</title><rect x="65.2288%" y="629" width="0.0602%" height="15" fill="rgb(238,39,47)" fg:x="98536" fg:w="91"/><text x="65.4788%" y="639.50"></text></g><g><title>finish_task_switch (79 samples, 0.05%)</title><rect x="65.2368%" y="613" width="0.0523%" height="15" fill="rgb(234,37,24)" fg:x="98548" fg:w="79"/><text x="65.4868%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.05%)</title><rect x="65.2375%" y="597" width="0.0516%" height="15" fill="rgb(248,223,24)" fg:x="98549" fg:w="78"/><text x="65.4875%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (76 samples, 0.05%)</title><rect x="65.2388%" y="581" width="0.0503%" height="15" fill="rgb(223,12,15)" fg:x="98551" fg:w="76"/><text x="65.4888%" y="591.50"></text></g><g><title>native_write_msr (76 samples, 0.05%)</title><rect x="65.2388%" y="565" width="0.0503%" height="15" fill="rgb(249,6,3)" fg:x="98551" fg:w="76"/><text x="65.4888%" y="575.50"></text></g><g><title>make_child (108 samples, 0.07%)</title><rect x="65.2229%" y="693" width="0.0715%" height="15" fill="rgb(237,105,33)" fg:x="98527" fg:w="108"/><text x="65.4729%" y="703.50"></text></g><g><title>__libc_fork (54 samples, 0.04%)</title><rect x="65.2997%" y="645" width="0.0357%" height="15" fill="rgb(252,208,35)" fg:x="98643" fg:w="54"/><text x="65.5497%" y="655.50"></text></g><g><title>arch_fork (53 samples, 0.04%)</title><rect x="65.3003%" y="629" width="0.0351%" height="15" fill="rgb(215,181,35)" fg:x="98644" fg:w="53"/><text x="65.5503%" y="639.50"></text></g><g><title>ret_from_fork (49 samples, 0.03%)</title><rect x="65.3030%" y="613" width="0.0324%" height="15" fill="rgb(246,212,3)" fg:x="98648" fg:w="49"/><text x="65.5530%" y="623.50"></text></g><g><title>schedule_tail (49 samples, 0.03%)</title><rect x="65.3030%" y="597" width="0.0324%" height="15" fill="rgb(247,156,24)" fg:x="98648" fg:w="49"/><text x="65.5530%" y="607.50"></text></g><g><title>finish_task_switch (41 samples, 0.03%)</title><rect x="65.3083%" y="581" width="0.0271%" height="15" fill="rgb(248,9,31)" fg:x="98656" fg:w="41"/><text x="65.5583%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="65.3096%" y="565" width="0.0258%" height="15" fill="rgb(234,26,45)" fg:x="98658" fg:w="39"/><text x="65.5596%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (38 samples, 0.03%)</title><rect x="65.3103%" y="549" width="0.0252%" height="15" fill="rgb(249,11,32)" fg:x="98659" fg:w="38"/><text x="65.5603%" y="559.50"></text></g><g><title>native_write_msr (38 samples, 0.03%)</title><rect x="65.3103%" y="533" width="0.0252%" height="15" fill="rgb(249,162,33)" fg:x="98659" fg:w="38"/><text x="65.5603%" y="543.50"></text></g><g><title>make_child (57 samples, 0.04%)</title><rect x="65.2990%" y="661" width="0.0377%" height="15" fill="rgb(232,4,32)" fg:x="98642" fg:w="57"/><text x="65.5490%" y="671.50"></text></g><g><title>schedule (18 samples, 0.01%)</title><rect x="65.3394%" y="549" width="0.0119%" height="15" fill="rgb(212,5,45)" fg:x="98703" fg:w="18"/><text x="65.5894%" y="559.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="65.3394%" y="533" width="0.0119%" height="15" fill="rgb(227,95,13)" fg:x="98703" fg:w="18"/><text x="65.5894%" y="543.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="65.3394%" y="517" width="0.0119%" height="15" fill="rgb(223,205,10)" fg:x="98703" fg:w="18"/><text x="65.5894%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="65.3394%" y="501" width="0.0119%" height="15" fill="rgb(222,178,8)" fg:x="98703" fg:w="18"/><text x="65.5894%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="65.3401%" y="485" width="0.0113%" height="15" fill="rgb(216,13,22)" fg:x="98704" fg:w="17"/><text x="65.5901%" y="495.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="65.3401%" y="469" width="0.0113%" height="15" fill="rgb(240,167,12)" fg:x="98704" fg:w="17"/><text x="65.5901%" y="479.50"></text></g><g><title>__GI___wait4 (21 samples, 0.01%)</title><rect x="65.3394%" y="629" width="0.0139%" height="15" fill="rgb(235,68,35)" fg:x="98703" fg:w="21"/><text x="65.5894%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="65.3394%" y="613" width="0.0139%" height="15" fill="rgb(253,40,27)" fg:x="98703" fg:w="21"/><text x="65.5894%" y="623.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="65.3394%" y="597" width="0.0139%" height="15" fill="rgb(214,19,28)" fg:x="98703" fg:w="21"/><text x="65.5894%" y="607.50"></text></g><g><title>kernel_wait4 (21 samples, 0.01%)</title><rect x="65.3394%" y="581" width="0.0139%" height="15" fill="rgb(210,167,45)" fg:x="98703" fg:w="21"/><text x="65.5894%" y="591.50"></text></g><g><title>do_wait (21 samples, 0.01%)</title><rect x="65.3394%" y="565" width="0.0139%" height="15" fill="rgb(232,97,40)" fg:x="98703" fg:w="21"/><text x="65.5894%" y="575.50"></text></g><g><title>execute_command_internal (91 samples, 0.06%)</title><rect x="65.2950%" y="677" width="0.0602%" height="15" fill="rgb(250,35,23)" fg:x="98636" fg:w="91"/><text x="65.5450%" y="687.50"></text></g><g><title>wait_for (24 samples, 0.02%)</title><rect x="65.3394%" y="661" width="0.0159%" height="15" fill="rgb(248,47,53)" fg:x="98703" fg:w="24"/><text x="65.5894%" y="671.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="65.3394%" y="645" width="0.0159%" height="15" fill="rgb(226,58,50)" fg:x="98703" fg:w="24"/><text x="65.5894%" y="655.50"></text></g><g><title>parse_and_execute (94 samples, 0.06%)</title><rect x="65.2944%" y="693" width="0.0622%" height="15" fill="rgb(217,105,26)" fg:x="98635" fg:w="94"/><text x="65.5444%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.05%)</title><rect x="65.3652%" y="517" width="0.0463%" height="15" fill="rgb(208,64,1)" fg:x="98742" fg:w="70"/><text x="65.6152%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.04%)</title><rect x="65.3672%" y="501" width="0.0444%" height="15" fill="rgb(214,80,1)" fg:x="98745" fg:w="67"/><text x="65.6172%" y="511.50"></text></g><g><title>native_write_msr (67 samples, 0.04%)</title><rect x="65.3672%" y="485" width="0.0444%" height="15" fill="rgb(206,175,26)" fg:x="98745" fg:w="67"/><text x="65.6172%" y="495.50"></text></g><g><title>schedule (74 samples, 0.05%)</title><rect x="65.3632%" y="565" width="0.0490%" height="15" fill="rgb(235,156,37)" fg:x="98739" fg:w="74"/><text x="65.6132%" y="575.50"></text></g><g><title>__schedule (74 samples, 0.05%)</title><rect x="65.3632%" y="549" width="0.0490%" height="15" fill="rgb(213,100,9)" fg:x="98739" fg:w="74"/><text x="65.6132%" y="559.50"></text></g><g><title>finish_task_switch (74 samples, 0.05%)</title><rect x="65.3632%" y="533" width="0.0490%" height="15" fill="rgb(241,15,13)" fg:x="98739" fg:w="74"/><text x="65.6132%" y="543.50"></text></g><g><title>do_syscall_64 (81 samples, 0.05%)</title><rect x="65.3593%" y="645" width="0.0536%" height="15" fill="rgb(205,97,43)" fg:x="98733" fg:w="81"/><text x="65.6093%" y="655.50"></text></g><g><title>ksys_read (81 samples, 0.05%)</title><rect x="65.3593%" y="629" width="0.0536%" height="15" fill="rgb(216,106,32)" fg:x="98733" fg:w="81"/><text x="65.6093%" y="639.50"></text></g><g><title>vfs_read (79 samples, 0.05%)</title><rect x="65.3606%" y="613" width="0.0523%" height="15" fill="rgb(226,200,8)" fg:x="98735" fg:w="79"/><text x="65.6106%" y="623.50"></text></g><g><title>new_sync_read (78 samples, 0.05%)</title><rect x="65.3612%" y="597" width="0.0516%" height="15" fill="rgb(244,54,29)" fg:x="98736" fg:w="78"/><text x="65.6112%" y="607.50"></text></g><g><title>pipe_read (78 samples, 0.05%)</title><rect x="65.3612%" y="581" width="0.0516%" height="15" fill="rgb(252,169,12)" fg:x="98736" fg:w="78"/><text x="65.6112%" y="591.50"></text></g><g><title>expand_word_leave_quoted (297 samples, 0.20%)</title><rect x="65.2176%" y="741" width="0.1966%" height="15" fill="rgb(231,199,11)" fg:x="98519" fg:w="297"/><text x="65.4676%" y="751.50"></text></g><g><title>[bash] (297 samples, 0.20%)</title><rect x="65.2176%" y="725" width="0.1966%" height="15" fill="rgb(233,191,18)" fg:x="98519" fg:w="297"/><text x="65.4676%" y="735.50"></text></g><g><title>command_substitute (297 samples, 0.20%)</title><rect x="65.2176%" y="709" width="0.1966%" height="15" fill="rgb(215,83,47)" fg:x="98519" fg:w="297"/><text x="65.4676%" y="719.50"></text></g><g><title>zread (83 samples, 0.05%)</title><rect x="65.3593%" y="693" width="0.0549%" height="15" fill="rgb(251,67,19)" fg:x="98733" fg:w="83"/><text x="65.6093%" y="703.50"></text></g><g><title>__GI___libc_read (83 samples, 0.05%)</title><rect x="65.3593%" y="677" width="0.0549%" height="15" fill="rgb(240,7,20)" fg:x="98733" fg:w="83"/><text x="65.6093%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.05%)</title><rect x="65.3593%" y="661" width="0.0549%" height="15" fill="rgb(210,150,26)" fg:x="98733" fg:w="83"/><text x="65.6093%" y="671.50"></text></g><g><title>execute_command (332 samples, 0.22%)</title><rect x="65.2024%" y="773" width="0.2198%" height="15" fill="rgb(228,75,42)" fg:x="98496" fg:w="332"/><text x="65.4524%" y="783.50"></text></g><g><title>execute_command_internal (332 samples, 0.22%)</title><rect x="65.2024%" y="757" width="0.2198%" height="15" fill="rgb(237,134,48)" fg:x="98496" fg:w="332"/><text x="65.4524%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (74 samples, 0.05%)</title><rect x="65.4526%" y="581" width="0.0490%" height="15" fill="rgb(205,80,50)" fg:x="98874" fg:w="74"/><text x="65.7026%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.05%)</title><rect x="65.4539%" y="565" width="0.0477%" height="15" fill="rgb(217,74,48)" fg:x="98876" fg:w="72"/><text x="65.7039%" y="575.50"></text></g><g><title>native_write_msr (72 samples, 0.05%)</title><rect x="65.4539%" y="549" width="0.0477%" height="15" fill="rgb(205,82,50)" fg:x="98876" fg:w="72"/><text x="65.7039%" y="559.50"></text></g><g><title>arch_fork (98 samples, 0.06%)</title><rect x="65.4374%" y="645" width="0.0649%" height="15" fill="rgb(228,1,33)" fg:x="98851" fg:w="98"/><text x="65.6874%" y="655.50"></text></g><g><title>ret_from_fork (91 samples, 0.06%)</title><rect x="65.4420%" y="629" width="0.0602%" height="15" fill="rgb(214,50,23)" fg:x="98858" fg:w="91"/><text x="65.6920%" y="639.50"></text></g><g><title>schedule_tail (90 samples, 0.06%)</title><rect x="65.4427%" y="613" width="0.0596%" height="15" fill="rgb(210,62,9)" fg:x="98859" fg:w="90"/><text x="65.6927%" y="623.50"></text></g><g><title>finish_task_switch (83 samples, 0.05%)</title><rect x="65.4473%" y="597" width="0.0549%" height="15" fill="rgb(210,104,37)" fg:x="98866" fg:w="83"/><text x="65.6973%" y="607.50"></text></g><g><title>__libc_fork (99 samples, 0.07%)</title><rect x="65.4374%" y="661" width="0.0655%" height="15" fill="rgb(232,104,43)" fg:x="98851" fg:w="99"/><text x="65.6874%" y="671.50"></text></g><g><title>make_child (104 samples, 0.07%)</title><rect x="65.4367%" y="677" width="0.0688%" height="15" fill="rgb(244,52,6)" fg:x="98850" fg:w="104"/><text x="65.6867%" y="687.50"></text></g><g><title>sched_exec (30 samples, 0.02%)</title><rect x="65.5115%" y="469" width="0.0199%" height="15" fill="rgb(211,174,52)" fg:x="98963" fg:w="30"/><text x="65.7615%" y="479.50"></text></g><g><title>stop_one_cpu (30 samples, 0.02%)</title><rect x="65.5115%" y="453" width="0.0199%" height="15" fill="rgb(229,48,4)" fg:x="98963" fg:w="30"/><text x="65.7615%" y="463.50"></text></g><g><title>_cond_resched (30 samples, 0.02%)</title><rect x="65.5115%" y="437" width="0.0199%" height="15" fill="rgb(205,155,16)" fg:x="98963" fg:w="30"/><text x="65.7615%" y="447.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="65.5115%" y="421" width="0.0199%" height="15" fill="rgb(211,141,53)" fg:x="98963" fg:w="30"/><text x="65.7615%" y="431.50"></text></g><g><title>finish_task_switch (30 samples, 0.02%)</title><rect x="65.5115%" y="405" width="0.0199%" height="15" fill="rgb(240,148,11)" fg:x="98963" fg:w="30"/><text x="65.7615%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (29 samples, 0.02%)</title><rect x="65.5122%" y="389" width="0.0192%" height="15" fill="rgb(214,45,23)" fg:x="98964" fg:w="29"/><text x="65.7622%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (29 samples, 0.02%)</title><rect x="65.5122%" y="373" width="0.0192%" height="15" fill="rgb(248,74,26)" fg:x="98964" fg:w="29"/><text x="65.7622%" y="383.50"></text></g><g><title>native_write_msr (27 samples, 0.02%)</title><rect x="65.5135%" y="357" width="0.0179%" height="15" fill="rgb(218,121,16)" fg:x="98966" fg:w="27"/><text x="65.7635%" y="367.50"></text></g><g><title>__GI_execve (41 samples, 0.03%)</title><rect x="65.5089%" y="565" width="0.0271%" height="15" fill="rgb(218,10,47)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="65.5089%" y="549" width="0.0271%" height="15" fill="rgb(227,99,14)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="559.50"></text></g><g><title>do_syscall_64 (41 samples, 0.03%)</title><rect x="65.5089%" y="533" width="0.0271%" height="15" fill="rgb(229,83,46)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="543.50"></text></g><g><title>__x64_sys_execve (41 samples, 0.03%)</title><rect x="65.5089%" y="517" width="0.0271%" height="15" fill="rgb(228,25,1)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="527.50"></text></g><g><title>do_execveat_common (41 samples, 0.03%)</title><rect x="65.5089%" y="501" width="0.0271%" height="15" fill="rgb(252,190,15)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="511.50"></text></g><g><title>bprm_execve (41 samples, 0.03%)</title><rect x="65.5089%" y="485" width="0.0271%" height="15" fill="rgb(213,103,51)" fg:x="98959" fg:w="41"/><text x="65.7589%" y="495.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="65.5075%" y="597" width="0.0298%" height="15" fill="rgb(220,38,44)" fg:x="98957" fg:w="45"/><text x="65.7575%" y="607.50"></text></g><g><title>shell_execve (43 samples, 0.03%)</title><rect x="65.5089%" y="581" width="0.0285%" height="15" fill="rgb(210,45,26)" fg:x="98959" fg:w="43"/><text x="65.7589%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (114 samples, 0.08%)</title><rect x="65.5638%" y="501" width="0.0755%" height="15" fill="rgb(205,95,48)" fg:x="99042" fg:w="114"/><text x="65.8138%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.07%)</title><rect x="65.5651%" y="485" width="0.0741%" height="15" fill="rgb(225,179,37)" fg:x="99044" fg:w="112"/><text x="65.8151%" y="495.50"></text></g><g><title>native_write_msr (112 samples, 0.07%)</title><rect x="65.5651%" y="469" width="0.0741%" height="15" fill="rgb(230,209,3)" fg:x="99044" fg:w="112"/><text x="65.8151%" y="479.50"></text></g><g><title>arch_fork (146 samples, 0.10%)</title><rect x="65.5459%" y="565" width="0.0966%" height="15" fill="rgb(248,12,46)" fg:x="99015" fg:w="146"/><text x="65.7959%" y="575.50"></text></g><g><title>ret_from_fork (132 samples, 0.09%)</title><rect x="65.5552%" y="549" width="0.0874%" height="15" fill="rgb(234,18,0)" fg:x="99029" fg:w="132"/><text x="65.8052%" y="559.50"></text></g><g><title>schedule_tail (132 samples, 0.09%)</title><rect x="65.5552%" y="533" width="0.0874%" height="15" fill="rgb(238,197,14)" fg:x="99029" fg:w="132"/><text x="65.8052%" y="543.50"></text></g><g><title>finish_task_switch (124 samples, 0.08%)</title><rect x="65.5605%" y="517" width="0.0821%" height="15" fill="rgb(251,162,48)" fg:x="99037" fg:w="124"/><text x="65.8105%" y="527.50"></text></g><g><title>__libc_fork (151 samples, 0.10%)</title><rect x="65.5453%" y="581" width="0.1000%" height="15" fill="rgb(237,73,42)" fg:x="99014" fg:w="151"/><text x="65.7953%" y="591.50"></text></g><g><title>make_child (156 samples, 0.10%)</title><rect x="65.5433%" y="597" width="0.1033%" height="15" fill="rgb(211,108,8)" fg:x="99011" fg:w="156"/><text x="65.7933%" y="607.50"></text></g><g><title>execute_command_internal (223 samples, 0.15%)</title><rect x="65.5056%" y="661" width="0.1476%" height="15" fill="rgb(213,45,22)" fg:x="98954" fg:w="223"/><text x="65.7556%" y="671.50"></text></g><g><title>[bash] (223 samples, 0.15%)</title><rect x="65.5056%" y="645" width="0.1476%" height="15" fill="rgb(252,154,5)" fg:x="98954" fg:w="223"/><text x="65.7556%" y="655.50"></text></g><g><title>[bash] (223 samples, 0.15%)</title><rect x="65.5056%" y="629" width="0.1476%" height="15" fill="rgb(221,79,52)" fg:x="98954" fg:w="223"/><text x="65.7556%" y="639.50"></text></g><g><title>execute_command_internal (223 samples, 0.15%)</title><rect x="65.5056%" y="613" width="0.1476%" height="15" fill="rgb(229,220,36)" fg:x="98954" fg:w="223"/><text x="65.7556%" y="623.50"></text></g><g><title>parse_and_execute (224 samples, 0.15%)</title><rect x="65.5056%" y="677" width="0.1483%" height="15" fill="rgb(211,17,16)" fg:x="98954" fg:w="224"/><text x="65.7556%" y="687.50"></text></g><g><title>command_substitute (341 samples, 0.23%)</title><rect x="65.4308%" y="693" width="0.2257%" height="15" fill="rgb(222,55,31)" fg:x="98841" fg:w="341"/><text x="65.6808%" y="703.50"></text></g><g><title>[bash] (354 samples, 0.23%)</title><rect x="65.4235%" y="709" width="0.2343%" height="15" fill="rgb(221,221,31)" fg:x="98830" fg:w="354"/><text x="65.6735%" y="719.50"></text></g><g><title>[bash] (355 samples, 0.24%)</title><rect x="65.4235%" y="725" width="0.2350%" height="15" fill="rgb(227,168,26)" fg:x="98830" fg:w="355"/><text x="65.6735%" y="735.50"></text></g><g><title>[bash] (357 samples, 0.24%)</title><rect x="65.4235%" y="741" width="0.2363%" height="15" fill="rgb(224,139,9)" fg:x="98830" fg:w="357"/><text x="65.6735%" y="751.50"></text></g><g><title>[bash] (362 samples, 0.24%)</title><rect x="65.4221%" y="757" width="0.2396%" height="15" fill="rgb(254,172,0)" fg:x="98828" fg:w="362"/><text x="65.6721%" y="767.50"></text></g><g><title>expand_words (363 samples, 0.24%)</title><rect x="65.4221%" y="773" width="0.2403%" height="15" fill="rgb(235,203,1)" fg:x="98828" fg:w="363"/><text x="65.6721%" y="783.50"></text></g><g><title>execute_command (1,042 samples, 0.69%)</title><rect x="64.9760%" y="805" width="0.6898%" height="15" fill="rgb(216,205,24)" fg:x="98154" fg:w="1042"/><text x="65.2260%" y="815.50"></text></g><g><title>execute_command_internal (1,041 samples, 0.69%)</title><rect x="64.9766%" y="789" width="0.6891%" height="15" fill="rgb(233,24,6)" fg:x="98155" fg:w="1041"/><text x="65.2266%" y="799.50"></text></g><g><title>[bash] (38 samples, 0.03%)</title><rect x="65.8763%" y="725" width="0.0252%" height="15" fill="rgb(244,110,9)" fg:x="99514" fg:w="38"/><text x="66.1263%" y="735.50"></text></g><g><title>buffered_getchar (56 samples, 0.04%)</title><rect x="65.9021%" y="725" width="0.0371%" height="15" fill="rgb(239,222,42)" fg:x="99553" fg:w="56"/><text x="66.1521%" y="735.50"></text></g><g><title>[bash] (247 samples, 0.16%)</title><rect x="65.7776%" y="741" width="0.1635%" height="15" fill="rgb(218,145,13)" fg:x="99365" fg:w="247"/><text x="66.0276%" y="751.50"></text></g><g><title>alloc_word_desc (16 samples, 0.01%)</title><rect x="65.9524%" y="741" width="0.0106%" height="15" fill="rgb(207,69,11)" fg:x="99629" fg:w="16"/><text x="66.2024%" y="751.50"></text></g><g><title>xmalloc (16 samples, 0.01%)</title><rect x="65.9524%" y="725" width="0.0106%" height="15" fill="rgb(220,223,22)" fg:x="99629" fg:w="16"/><text x="66.2024%" y="735.50"></text></g><g><title>_int_malloc (16 samples, 0.01%)</title><rect x="65.9954%" y="709" width="0.0106%" height="15" fill="rgb(245,102,5)" fg:x="99694" fg:w="16"/><text x="66.2454%" y="719.50"></text></g><g><title>__GI___libc_malloc (26 samples, 0.02%)</title><rect x="65.9895%" y="725" width="0.0172%" height="15" fill="rgb(211,148,2)" fg:x="99685" fg:w="26"/><text x="66.2395%" y="735.50"></text></g><g><title>xmalloc (29 samples, 0.02%)</title><rect x="65.9888%" y="741" width="0.0192%" height="15" fill="rgb(241,13,44)" fg:x="99684" fg:w="29"/><text x="66.2388%" y="751.50"></text></g><g><title>[bash] (453 samples, 0.30%)</title><rect x="65.7088%" y="757" width="0.2999%" height="15" fill="rgb(219,137,21)" fg:x="99261" fg:w="453"/><text x="65.9588%" y="767.50"></text></g><g><title>_int_malloc (16 samples, 0.01%)</title><rect x="66.0206%" y="709" width="0.0106%" height="15" fill="rgb(242,206,5)" fg:x="99732" fg:w="16"/><text x="66.2706%" y="719.50"></text></g><g><title>make_simple_command (23 samples, 0.02%)</title><rect x="66.0173%" y="757" width="0.0152%" height="15" fill="rgb(217,114,22)" fg:x="99727" fg:w="23"/><text x="66.2673%" y="767.50"></text></g><g><title>xmalloc (21 samples, 0.01%)</title><rect x="66.0186%" y="741" width="0.0139%" height="15" fill="rgb(253,206,42)" fg:x="99729" fg:w="21"/><text x="66.2686%" y="751.50"></text></g><g><title>__GI___libc_malloc (21 samples, 0.01%)</title><rect x="66.0186%" y="725" width="0.0139%" height="15" fill="rgb(236,102,18)" fg:x="99729" fg:w="21"/><text x="66.2686%" y="735.50"></text></g><g><title>reader_loop (1,631 samples, 1.08%)</title><rect x="64.9548%" y="821" width="1.0797%" height="15" fill="rgb(208,59,49)" fg:x="98122" fg:w="1631"/><text x="65.2048%" y="831.50"></text></g><g><title>read_command (557 samples, 0.37%)</title><rect x="65.6658%" y="805" width="0.3687%" height="15" fill="rgb(215,194,28)" fg:x="99196" fg:w="557"/><text x="65.9158%" y="815.50"></text></g><g><title>parse_command (557 samples, 0.37%)</title><rect x="65.6658%" y="789" width="0.3687%" height="15" fill="rgb(243,207,11)" fg:x="99196" fg:w="557"/><text x="65.9158%" y="799.50"></text></g><g><title>yyparse (556 samples, 0.37%)</title><rect x="65.6664%" y="773" width="0.3681%" height="15" fill="rgb(254,179,35)" fg:x="99197" fg:w="556"/><text x="65.9164%" y="783.50"></text></g><g><title>__libc_start_main (1,650 samples, 1.09%)</title><rect x="64.9468%" y="853" width="1.0923%" height="15" fill="rgb(235,97,3)" fg:x="98110" fg:w="1650"/><text x="65.1968%" y="863.50"></text></g><g><title>main (1,650 samples, 1.09%)</title><rect x="64.9468%" y="837" width="1.0923%" height="15" fill="rgb(215,155,33)" fg:x="98110" fg:w="1650"/><text x="65.1968%" y="847.50"></text></g><g><title>[ld-2.31.so] (16 samples, 0.01%)</title><rect x="66.0391%" y="805" width="0.0106%" height="15" fill="rgb(223,128,12)" fg:x="99760" fg:w="16"/><text x="66.2891%" y="815.50"></text></g><g><title>_start (1,667 samples, 1.10%)</title><rect x="64.9468%" y="869" width="1.1035%" height="15" fill="rgb(208,157,18)" fg:x="98110" fg:w="1667"/><text x="65.1968%" y="879.50"></text></g><g><title>_dl_start (17 samples, 0.01%)</title><rect x="66.0391%" y="853" width="0.0113%" height="15" fill="rgb(249,70,54)" fg:x="99760" fg:w="17"/><text x="66.2891%" y="863.50"></text></g><g><title>_dl_start_final (17 samples, 0.01%)</title><rect x="66.0391%" y="837" width="0.0113%" height="15" fill="rgb(244,118,24)" fg:x="99760" fg:w="17"/><text x="66.2891%" y="847.50"></text></g><g><title>_dl_sysdep_start (17 samples, 0.01%)</title><rect x="66.0391%" y="821" width="0.0113%" height="15" fill="rgb(211,54,0)" fg:x="99760" fg:w="17"/><text x="66.2891%" y="831.50"></text></g><g><title>asm_exc_page_fault (33 samples, 0.02%)</title><rect x="66.0504%" y="869" width="0.0218%" height="15" fill="rgb(245,137,45)" fg:x="99777" fg:w="33"/><text x="66.3004%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.03%)</title><rect x="66.0722%" y="869" width="0.0298%" height="15" fill="rgb(232,154,31)" fg:x="99810" fg:w="45"/><text x="66.3222%" y="879.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="66.0729%" y="853" width="0.0291%" height="15" fill="rgb(253,6,39)" fg:x="99811" fg:w="44"/><text x="66.3229%" y="863.50"></text></g><g><title>__x64_sys_exit_group (32 samples, 0.02%)</title><rect x="66.0808%" y="837" width="0.0212%" height="15" fill="rgb(234,183,24)" fg:x="99823" fg:w="32"/><text x="66.3308%" y="847.50"></text></g><g><title>do_group_exit (32 samples, 0.02%)</title><rect x="66.0808%" y="821" width="0.0212%" height="15" fill="rgb(252,84,40)" fg:x="99823" fg:w="32"/><text x="66.3308%" y="831.50"></text></g><g><title>do_exit (32 samples, 0.02%)</title><rect x="66.0808%" y="805" width="0.0212%" height="15" fill="rgb(224,65,2)" fg:x="99823" fg:w="32"/><text x="66.3308%" y="815.50"></text></g><g><title>mmput (32 samples, 0.02%)</title><rect x="66.0808%" y="789" width="0.0212%" height="15" fill="rgb(229,38,24)" fg:x="99823" fg:w="32"/><text x="66.3308%" y="799.50"></text></g><g><title>exit_mmap (32 samples, 0.02%)</title><rect x="66.0808%" y="773" width="0.0212%" height="15" fill="rgb(218,131,50)" fg:x="99823" fg:w="32"/><text x="66.3308%" y="783.50"></text></g><g><title>libtool (2,201 samples, 1.46%)</title><rect x="64.6490%" y="885" width="1.4570%" height="15" fill="rgb(233,106,18)" fg:x="97660" fg:w="2201"/><text x="64.8990%" y="895.50"></text></g><g><title>copy_namespaces (16 samples, 0.01%)</title><rect x="66.1205%" y="741" width="0.0106%" height="15" fill="rgb(220,216,11)" fg:x="99883" fg:w="16"/><text x="66.3705%" y="751.50"></text></g><g><title>create_new_namespaces (16 samples, 0.01%)</title><rect x="66.1205%" y="725" width="0.0106%" height="15" fill="rgb(251,100,45)" fg:x="99883" fg:w="16"/><text x="66.3705%" y="735.50"></text></g><g><title>dup_mm (29 samples, 0.02%)</title><rect x="66.1311%" y="741" width="0.0192%" height="15" fill="rgb(235,143,32)" fg:x="99899" fg:w="29"/><text x="66.3811%" y="751.50"></text></g><g><title>copy_process (60 samples, 0.04%)</title><rect x="66.1159%" y="757" width="0.0397%" height="15" fill="rgb(248,124,34)" fg:x="99876" fg:w="60"/><text x="66.3659%" y="767.50"></text></g><g><title>[unknown] (62 samples, 0.04%)</title><rect x="66.1159%" y="869" width="0.0410%" height="15" fill="rgb(225,221,4)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="879.50"></text></g><g><title>__libc_start_main (62 samples, 0.04%)</title><rect x="66.1159%" y="853" width="0.0410%" height="15" fill="rgb(242,27,43)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="863.50"></text></g><g><title>__GI___clone (62 samples, 0.04%)</title><rect x="66.1159%" y="837" width="0.0410%" height="15" fill="rgb(227,54,8)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.04%)</title><rect x="66.1159%" y="821" width="0.0410%" height="15" fill="rgb(253,139,49)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="831.50"></text></g><g><title>do_syscall_64 (62 samples, 0.04%)</title><rect x="66.1159%" y="805" width="0.0410%" height="15" fill="rgb(231,26,43)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="815.50"></text></g><g><title>__do_sys_clone (62 samples, 0.04%)</title><rect x="66.1159%" y="789" width="0.0410%" height="15" fill="rgb(207,121,39)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="799.50"></text></g><g><title>kernel_clone (62 samples, 0.04%)</title><rect x="66.1159%" y="773" width="0.0410%" height="15" fill="rgb(223,101,35)" fg:x="99876" fg:w="62"/><text x="66.3659%" y="783.50"></text></g><g><title>WriteFile (20 samples, 0.01%)</title><rect x="66.1596%" y="837" width="0.0132%" height="15" fill="rgb(232,87,23)" fg:x="99942" fg:w="20"/><text x="66.4096%" y="847.50"></text></g><g><title>__GI___getmntent_r (18 samples, 0.01%)</title><rect x="66.1748%" y="837" width="0.0119%" height="15" fill="rgb(225,180,29)" fg:x="99965" fg:w="18"/><text x="66.4248%" y="847.50"></text></g><g><title>get_mnt_entry (18 samples, 0.01%)</title><rect x="66.1748%" y="821" width="0.0119%" height="15" fill="rgb(225,25,17)" fg:x="99965" fg:w="18"/><text x="66.4248%" y="831.50"></text></g><g><title>schedule (72 samples, 0.05%)</title><rect x="66.1894%" y="757" width="0.0477%" height="15" fill="rgb(223,8,52)" fg:x="99987" fg:w="72"/><text x="66.4394%" y="767.50"></text></g><g><title>__schedule (72 samples, 0.05%)</title><rect x="66.1894%" y="741" width="0.0477%" height="15" fill="rgb(246,42,21)" fg:x="99987" fg:w="72"/><text x="66.4394%" y="751.50"></text></g><g><title>finish_task_switch (72 samples, 0.05%)</title><rect x="66.1894%" y="725" width="0.0477%" height="15" fill="rgb(205,64,43)" fg:x="99987" fg:w="72"/><text x="66.4394%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.04%)</title><rect x="66.1947%" y="709" width="0.0424%" height="15" fill="rgb(221,160,13)" fg:x="99995" fg:w="64"/><text x="66.4447%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.04%)</title><rect x="66.1967%" y="693" width="0.0404%" height="15" fill="rgb(239,58,35)" fg:x="99998" fg:w="61"/><text x="66.4467%" y="703.50"></text></g><g><title>native_write_msr (61 samples, 0.04%)</title><rect x="66.1967%" y="677" width="0.0404%" height="15" fill="rgb(251,26,40)" fg:x="99998" fg:w="61"/><text x="66.4467%" y="687.50"></text></g><g><title>__GI___wait4 (86 samples, 0.06%)</title><rect x="66.1881%" y="837" width="0.0569%" height="15" fill="rgb(247,0,4)" fg:x="99985" fg:w="86"/><text x="66.4381%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.06%)</title><rect x="66.1887%" y="821" width="0.0563%" height="15" fill="rgb(218,130,10)" fg:x="99986" fg:w="85"/><text x="66.4387%" y="831.50"></text></g><g><title>do_syscall_64 (85 samples, 0.06%)</title><rect x="66.1887%" y="805" width="0.0563%" height="15" fill="rgb(239,32,7)" fg:x="99986" fg:w="85"/><text x="66.4387%" y="815.50"></text></g><g><title>kernel_wait4 (85 samples, 0.06%)</title><rect x="66.1887%" y="789" width="0.0563%" height="15" fill="rgb(210,192,24)" fg:x="99986" fg:w="85"/><text x="66.4387%" y="799.50"></text></g><g><title>do_wait (85 samples, 0.06%)</title><rect x="66.1887%" y="773" width="0.0563%" height="15" fill="rgb(226,212,17)" fg:x="99986" fg:w="85"/><text x="66.4387%" y="783.50"></text></g><g><title>do_open_execat (28 samples, 0.02%)</title><rect x="66.2609%" y="725" width="0.0185%" height="15" fill="rgb(219,201,28)" fg:x="100095" fg:w="28"/><text x="66.5109%" y="735.50"></text></g><g><title>do_filp_open (28 samples, 0.02%)</title><rect x="66.2609%" y="709" width="0.0185%" height="15" fill="rgb(235,207,41)" fg:x="100095" fg:w="28"/><text x="66.5109%" y="719.50"></text></g><g><title>path_openat (28 samples, 0.02%)</title><rect x="66.2609%" y="693" width="0.0185%" height="15" fill="rgb(241,95,54)" fg:x="100095" fg:w="28"/><text x="66.5109%" y="703.50"></text></g><g><title>step_into (20 samples, 0.01%)</title><rect x="66.2662%" y="677" width="0.0132%" height="15" fill="rgb(248,12,23)" fg:x="100103" fg:w="20"/><text x="66.5162%" y="687.50"></text></g><g><title>bprm_execve (51 samples, 0.03%)</title><rect x="66.2609%" y="741" width="0.0338%" height="15" fill="rgb(228,173,4)" fg:x="100095" fg:w="51"/><text x="66.5109%" y="751.50"></text></g><g><title>do_execveat_common (69 samples, 0.05%)</title><rect x="66.2569%" y="757" width="0.0457%" height="15" fill="rgb(254,99,5)" fg:x="100089" fg:w="69"/><text x="66.5069%" y="767.50"></text></g><g><title>__execvpe_common (72 samples, 0.05%)</title><rect x="66.2556%" y="837" width="0.0477%" height="15" fill="rgb(212,184,17)" fg:x="100087" fg:w="72"/><text x="66.5056%" y="847.50"></text></g><g><title>__GI_execve (70 samples, 0.05%)</title><rect x="66.2569%" y="821" width="0.0463%" height="15" fill="rgb(252,174,1)" fg:x="100089" fg:w="70"/><text x="66.5069%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.05%)</title><rect x="66.2569%" y="805" width="0.0463%" height="15" fill="rgb(241,118,51)" fg:x="100089" fg:w="70"/><text x="66.5069%" y="815.50"></text></g><g><title>do_syscall_64 (70 samples, 0.05%)</title><rect x="66.2569%" y="789" width="0.0463%" height="15" fill="rgb(227,94,47)" fg:x="100089" fg:w="70"/><text x="66.5069%" y="799.50"></text></g><g><title>__x64_sys_execve (70 samples, 0.05%)</title><rect x="66.2569%" y="773" width="0.0463%" height="15" fill="rgb(229,104,2)" fg:x="100089" fg:w="70"/><text x="66.5069%" y="783.50"></text></g><g><title>handle_mm_fault (22 samples, 0.01%)</title><rect x="66.3092%" y="757" width="0.0146%" height="15" fill="rgb(219,28,31)" fg:x="100168" fg:w="22"/><text x="66.5592%" y="767.50"></text></g><g><title>filemap_map_pages (17 samples, 0.01%)</title><rect x="66.3125%" y="741" width="0.0113%" height="15" fill="rgb(233,109,36)" fg:x="100173" fg:w="17"/><text x="66.5625%" y="751.50"></text></g><g><title>asm_exc_page_fault (27 samples, 0.02%)</title><rect x="66.3065%" y="805" width="0.0179%" height="15" fill="rgb(246,88,11)" fg:x="100164" fg:w="27"/><text x="66.5565%" y="815.50"></text></g><g><title>exc_page_fault (27 samples, 0.02%)</title><rect x="66.3065%" y="789" width="0.0179%" height="15" fill="rgb(209,212,17)" fg:x="100164" fg:w="27"/><text x="66.5565%" y="799.50"></text></g><g><title>do_user_addr_fault (27 samples, 0.02%)</title><rect x="66.3065%" y="773" width="0.0179%" height="15" fill="rgb(243,59,29)" fg:x="100164" fg:w="27"/><text x="66.5565%" y="783.50"></text></g><g><title>dup_mm (26 samples, 0.02%)</title><rect x="66.3257%" y="725" width="0.0172%" height="15" fill="rgb(244,205,48)" fg:x="100193" fg:w="26"/><text x="66.5757%" y="735.50"></text></g><g><title>copy_process (32 samples, 0.02%)</title><rect x="66.3244%" y="741" width="0.0212%" height="15" fill="rgb(227,30,6)" fg:x="100191" fg:w="32"/><text x="66.5744%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.02%)</title><rect x="66.3244%" y="805" width="0.0218%" height="15" fill="rgb(220,205,48)" fg:x="100191" fg:w="33"/><text x="66.5744%" y="815.50"></text></g><g><title>do_syscall_64 (33 samples, 0.02%)</title><rect x="66.3244%" y="789" width="0.0218%" height="15" fill="rgb(250,94,14)" fg:x="100191" fg:w="33"/><text x="66.5744%" y="799.50"></text></g><g><title>__do_sys_clone (33 samples, 0.02%)</title><rect x="66.3244%" y="773" width="0.0218%" height="15" fill="rgb(216,119,42)" fg:x="100191" fg:w="33"/><text x="66.5744%" y="783.50"></text></g><g><title>kernel_clone (33 samples, 0.02%)</title><rect x="66.3244%" y="757" width="0.0218%" height="15" fill="rgb(232,155,0)" fg:x="100191" fg:w="33"/><text x="66.5744%" y="767.50"></text></g><g><title>__put_user_nocheck_4 (43 samples, 0.03%)</title><rect x="66.3469%" y="773" width="0.0285%" height="15" fill="rgb(212,24,32)" fg:x="100225" fg:w="43"/><text x="66.5969%" y="783.50"></text></g><g><title>asm_exc_page_fault (42 samples, 0.03%)</title><rect x="66.3476%" y="757" width="0.0278%" height="15" fill="rgb(216,69,20)" fg:x="100226" fg:w="42"/><text x="66.5976%" y="767.50"></text></g><g><title>exc_page_fault (19 samples, 0.01%)</title><rect x="66.3628%" y="741" width="0.0126%" height="15" fill="rgb(229,73,31)" fg:x="100249" fg:w="19"/><text x="66.6128%" y="751.50"></text></g><g><title>do_user_addr_fault (19 samples, 0.01%)</title><rect x="66.3628%" y="725" width="0.0126%" height="15" fill="rgb(224,219,20)" fg:x="100249" fg:w="19"/><text x="66.6128%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (353 samples, 0.23%)</title><rect x="66.3959%" y="757" width="0.2337%" height="15" fill="rgb(215,146,41)" fg:x="100299" fg:w="353"/><text x="66.6459%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (351 samples, 0.23%)</title><rect x="66.3972%" y="741" width="0.2324%" height="15" fill="rgb(244,71,31)" fg:x="100301" fg:w="351"/><text x="66.6472%" y="751.50"></text></g><g><title>native_write_msr (350 samples, 0.23%)</title><rect x="66.3979%" y="725" width="0.2317%" height="15" fill="rgb(224,24,11)" fg:x="100302" fg:w="350"/><text x="66.6479%" y="735.50"></text></g><g><title>schedule_tail (436 samples, 0.29%)</title><rect x="66.3469%" y="789" width="0.2886%" height="15" fill="rgb(229,76,15)" fg:x="100225" fg:w="436"/><text x="66.5969%" y="799.50"></text></g><g><title>finish_task_switch (384 samples, 0.25%)</title><rect x="66.3814%" y="773" width="0.2542%" height="15" fill="rgb(209,93,2)" fg:x="100277" fg:w="384"/><text x="66.6314%" y="783.50"></text></g><g><title>arch_fork (505 samples, 0.33%)</title><rect x="66.3046%" y="821" width="0.3343%" height="15" fill="rgb(216,200,50)" fg:x="100161" fg:w="505"/><text x="66.5546%" y="831.50"></text></g><g><title>ret_from_fork (442 samples, 0.29%)</title><rect x="66.3463%" y="805" width="0.2926%" height="15" fill="rgb(211,67,34)" fg:x="100224" fg:w="442"/><text x="66.5963%" y="815.50"></text></g><g><title>__libc_fork (511 samples, 0.34%)</title><rect x="66.3032%" y="837" width="0.3383%" height="15" fill="rgb(225,87,47)" fg:x="100159" fg:w="511"/><text x="66.5532%" y="847.50"></text></g><g><title>__memcg_init_list_lru_node (21 samples, 0.01%)</title><rect x="66.6627%" y="677" width="0.0139%" height="15" fill="rgb(217,185,16)" fg:x="100702" fg:w="21"/><text x="66.9127%" y="687.50"></text></g><g><title>kmem_cache_alloc_trace (20 samples, 0.01%)</title><rect x="66.6634%" y="661" width="0.0132%" height="15" fill="rgb(205,0,0)" fg:x="100703" fg:w="20"/><text x="66.9134%" y="671.50"></text></g><g><title>__list_lru_init (24 samples, 0.02%)</title><rect x="66.6614%" y="693" width="0.0159%" height="15" fill="rgb(207,116,45)" fg:x="100700" fg:w="24"/><text x="66.9114%" y="703.50"></text></g><g><title>alloc_super (27 samples, 0.02%)</title><rect x="66.6614%" y="709" width="0.0179%" height="15" fill="rgb(221,156,26)" fg:x="100700" fg:w="27"/><text x="66.9114%" y="719.50"></text></g><g><title>vfs_get_tree (37 samples, 0.02%)</title><rect x="66.6567%" y="757" width="0.0245%" height="15" fill="rgb(213,140,4)" fg:x="100693" fg:w="37"/><text x="66.9067%" y="767.50"></text></g><g><title>get_tree_nodev (37 samples, 0.02%)</title><rect x="66.6567%" y="741" width="0.0245%" height="15" fill="rgb(231,224,15)" fg:x="100693" fg:w="37"/><text x="66.9067%" y="751.50"></text></g><g><title>sget_fc (31 samples, 0.02%)</title><rect x="66.6607%" y="725" width="0.0205%" height="15" fill="rgb(244,76,20)" fg:x="100699" fg:w="31"/><text x="66.9107%" y="735.50"></text></g><g><title>path_mount (47 samples, 0.03%)</title><rect x="66.6508%" y="773" width="0.0311%" height="15" fill="rgb(238,117,7)" fg:x="100684" fg:w="47"/><text x="66.9008%" y="783.50"></text></g><g><title>__mount (60 samples, 0.04%)</title><rect x="66.6442%" y="837" width="0.0397%" height="15" fill="rgb(235,1,10)" fg:x="100674" fg:w="60"/><text x="66.8942%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.04%)</title><rect x="66.6442%" y="821" width="0.0397%" height="15" fill="rgb(216,165,6)" fg:x="100674" fg:w="60"/><text x="66.8942%" y="831.50"></text></g><g><title>do_syscall_64 (60 samples, 0.04%)</title><rect x="66.6442%" y="805" width="0.0397%" height="15" fill="rgb(246,91,35)" fg:x="100674" fg:w="60"/><text x="66.8942%" y="815.50"></text></g><g><title>__x64_sys_mount (60 samples, 0.04%)</title><rect x="66.6442%" y="789" width="0.0397%" height="15" fill="rgb(228,96,24)" fg:x="100674" fg:w="60"/><text x="66.8942%" y="799.50"></text></g><g><title>std::string::_S_construct&lt;char const*&gt; (20 samples, 0.01%)</title><rect x="66.6905%" y="837" width="0.0132%" height="15" fill="rgb(254,217,53)" fg:x="100744" fg:w="20"/><text x="66.9405%" y="847.50"></text></g><g><title>std::string::_Rep::_S_create (19 samples, 0.01%)</title><rect x="66.6912%" y="821" width="0.0126%" height="15" fill="rgb(209,60,0)" fg:x="100745" fg:w="19"/><text x="66.9412%" y="831.50"></text></g><g><title>Pid1Main (831 samples, 0.55%)</title><rect x="66.1576%" y="853" width="0.5501%" height="15" fill="rgb(250,93,26)" fg:x="99939" fg:w="831"/><text x="66.4076%" y="863.50"></text></g><g><title>filemap_map_pages (22 samples, 0.01%)</title><rect x="66.7176%" y="789" width="0.0146%" height="15" fill="rgb(211,9,40)" fg:x="100785" fg:w="22"/><text x="66.9676%" y="799.50"></text></g><g><title>handle_mm_fault (48 samples, 0.03%)</title><rect x="66.7117%" y="805" width="0.0318%" height="15" fill="rgb(242,57,20)" fg:x="100776" fg:w="48"/><text x="66.9617%" y="815.50"></text></g><g><title>wp_page_copy (17 samples, 0.01%)</title><rect x="66.7322%" y="789" width="0.0113%" height="15" fill="rgb(248,85,48)" fg:x="100807" fg:w="17"/><text x="66.9822%" y="799.50"></text></g><g><title>alloc_pages_vma (17 samples, 0.01%)</title><rect x="66.7322%" y="773" width="0.0113%" height="15" fill="rgb(212,117,2)" fg:x="100807" fg:w="17"/><text x="66.9822%" y="783.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.04%)</title><rect x="66.7077%" y="853" width="0.0364%" height="15" fill="rgb(243,19,3)" fg:x="100770" fg:w="55"/><text x="66.9577%" y="863.50"></text></g><g><title>exc_page_fault (55 samples, 0.04%)</title><rect x="66.7077%" y="837" width="0.0364%" height="15" fill="rgb(232,217,24)" fg:x="100770" fg:w="55"/><text x="66.9577%" y="847.50"></text></g><g><title>do_user_addr_fault (55 samples, 0.04%)</title><rect x="66.7077%" y="821" width="0.0364%" height="15" fill="rgb(224,175,40)" fg:x="100770" fg:w="55"/><text x="66.9577%" y="831.50"></text></g><g><title>calculate_sigpending (23 samples, 0.02%)</title><rect x="66.7461%" y="837" width="0.0152%" height="15" fill="rgb(212,162,32)" fg:x="100828" fg:w="23"/><text x="66.9961%" y="847.50"></text></g><g><title>_raw_spin_lock_irq (19 samples, 0.01%)</title><rect x="66.7488%" y="821" width="0.0126%" height="15" fill="rgb(215,9,4)" fg:x="100832" fg:w="19"/><text x="66.9988%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (366 samples, 0.24%)</title><rect x="66.7819%" y="805" width="0.2423%" height="15" fill="rgb(242,42,7)" fg:x="100882" fg:w="366"/><text x="67.0319%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (358 samples, 0.24%)</title><rect x="66.7871%" y="789" width="0.2370%" height="15" fill="rgb(242,184,45)" fg:x="100890" fg:w="358"/><text x="67.0371%" y="799.50"></text></g><g><title>native_write_msr (358 samples, 0.24%)</title><rect x="66.7871%" y="773" width="0.2370%" height="15" fill="rgb(228,111,51)" fg:x="100890" fg:w="358"/><text x="67.0371%" y="783.50"></text></g><g><title>schedule_tail (407 samples, 0.27%)</title><rect x="66.7613%" y="837" width="0.2694%" height="15" fill="rgb(236,147,17)" fg:x="100851" fg:w="407"/><text x="67.0113%" y="847.50"></text></g><g><title>finish_task_switch (406 samples, 0.27%)</title><rect x="66.7620%" y="821" width="0.2688%" height="15" fill="rgb(210,75,22)" fg:x="100852" fg:w="406"/><text x="67.0120%" y="831.50"></text></g><g><title>__GI___clone (1,322 samples, 0.88%)</title><rect x="66.1569%" y="869" width="0.8751%" height="15" fill="rgb(217,159,45)" fg:x="99938" fg:w="1322"/><text x="66.4069%" y="879.50"></text></g><g><title>ret_from_fork (432 samples, 0.29%)</title><rect x="66.7461%" y="853" width="0.2860%" height="15" fill="rgb(245,165,53)" fg:x="100828" fg:w="432"/><text x="66.9961%" y="863.50"></text></g><g><title>_dl_start_user (18 samples, 0.01%)</title><rect x="67.0327%" y="869" width="0.0119%" height="15" fill="rgb(251,190,50)" fg:x="101261" fg:w="18"/><text x="67.2827%" y="879.50"></text></g><g><title>_dl_init (18 samples, 0.01%)</title><rect x="67.0327%" y="853" width="0.0119%" height="15" fill="rgb(208,203,29)" fg:x="101261" fg:w="18"/><text x="67.2827%" y="863.50"></text></g><g><title>call_init (18 samples, 0.01%)</title><rect x="67.0327%" y="837" width="0.0119%" height="15" fill="rgb(207,209,35)" fg:x="101261" fg:w="18"/><text x="67.2827%" y="847.50"></text></g><g><title>call_init (18 samples, 0.01%)</title><rect x="67.0327%" y="821" width="0.0119%" height="15" fill="rgb(230,144,49)" fg:x="101261" fg:w="18"/><text x="67.2827%" y="831.50"></text></g><g><title>__GI_exit (16 samples, 0.01%)</title><rect x="67.0480%" y="837" width="0.0106%" height="15" fill="rgb(229,31,6)" fg:x="101284" fg:w="16"/><text x="67.2980%" y="847.50"></text></g><g><title>__run_exit_handlers (16 samples, 0.01%)</title><rect x="67.0480%" y="821" width="0.0106%" height="15" fill="rgb(251,129,24)" fg:x="101284" fg:w="16"/><text x="67.2980%" y="831.50"></text></g><g><title>alloc_pages_vma (27 samples, 0.02%)</title><rect x="67.0963%" y="741" width="0.0179%" height="15" fill="rgb(235,105,15)" fg:x="101357" fg:w="27"/><text x="67.3463%" y="751.50"></text></g><g><title>__alloc_pages_nodemask (25 samples, 0.02%)</title><rect x="67.0976%" y="725" width="0.0165%" height="15" fill="rgb(216,52,43)" fg:x="101359" fg:w="25"/><text x="67.3476%" y="735.50"></text></g><g><title>get_page_from_freelist (22 samples, 0.01%)</title><rect x="67.0996%" y="709" width="0.0146%" height="15" fill="rgb(238,144,41)" fg:x="101362" fg:w="22"/><text x="67.3496%" y="719.50"></text></g><g><title>handle_mm_fault (54 samples, 0.04%)</title><rect x="67.0897%" y="757" width="0.0357%" height="15" fill="rgb(243,63,9)" fg:x="101347" fg:w="54"/><text x="67.3397%" y="767.50"></text></g><g><title>asm_exc_page_fault (62 samples, 0.04%)</title><rect x="67.0850%" y="805" width="0.0410%" height="15" fill="rgb(246,208,1)" fg:x="101340" fg:w="62"/><text x="67.3350%" y="815.50"></text></g><g><title>exc_page_fault (59 samples, 0.04%)</title><rect x="67.0870%" y="789" width="0.0391%" height="15" fill="rgb(233,182,18)" fg:x="101343" fg:w="59"/><text x="67.3370%" y="799.50"></text></g><g><title>do_user_addr_fault (58 samples, 0.04%)</title><rect x="67.0877%" y="773" width="0.0384%" height="15" fill="rgb(242,224,8)" fg:x="101344" fg:w="58"/><text x="67.3377%" y="783.50"></text></g><g><title>[libc-2.31.so] (83 samples, 0.05%)</title><rect x="67.0764%" y="821" width="0.0549%" height="15" fill="rgb(243,54,37)" fg:x="101327" fg:w="83"/><text x="67.3264%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="67.1340%" y="677" width="0.0165%" height="15" fill="rgb(233,192,12)" fg:x="101414" fg:w="25"/><text x="67.3840%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="67.1347%" y="661" width="0.0159%" height="15" fill="rgb(251,192,53)" fg:x="101415" fg:w="24"/><text x="67.3847%" y="671.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="67.1347%" y="645" width="0.0159%" height="15" fill="rgb(246,141,26)" fg:x="101415" fg:w="24"/><text x="67.3847%" y="655.50"></text></g><g><title>schedule (26 samples, 0.02%)</title><rect x="67.1340%" y="725" width="0.0172%" height="15" fill="rgb(239,195,19)" fg:x="101414" fg:w="26"/><text x="67.3840%" y="735.50"></text></g><g><title>__schedule (26 samples, 0.02%)</title><rect x="67.1340%" y="709" width="0.0172%" height="15" fill="rgb(241,16,39)" fg:x="101414" fg:w="26"/><text x="67.3840%" y="719.50"></text></g><g><title>finish_task_switch (26 samples, 0.02%)</title><rect x="67.1340%" y="693" width="0.0172%" height="15" fill="rgb(223,13,53)" fg:x="101414" fg:w="26"/><text x="67.3840%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.02%)</title><rect x="67.1340%" y="805" width="0.0199%" height="15" fill="rgb(214,227,0)" fg:x="101414" fg:w="30"/><text x="67.3840%" y="815.50"></text></g><g><title>do_syscall_64 (30 samples, 0.02%)</title><rect x="67.1340%" y="789" width="0.0199%" height="15" fill="rgb(228,103,26)" fg:x="101414" fg:w="30"/><text x="67.3840%" y="799.50"></text></g><g><title>__do_sys_wait4 (30 samples, 0.02%)</title><rect x="67.1340%" y="773" width="0.0199%" height="15" fill="rgb(254,177,53)" fg:x="101414" fg:w="30"/><text x="67.3840%" y="783.50"></text></g><g><title>kernel_wait4 (30 samples, 0.02%)</title><rect x="67.1340%" y="757" width="0.0199%" height="15" fill="rgb(208,201,34)" fg:x="101414" fg:w="30"/><text x="67.3840%" y="767.50"></text></g><g><title>do_wait (30 samples, 0.02%)</title><rect x="67.1340%" y="741" width="0.0199%" height="15" fill="rgb(212,39,5)" fg:x="101414" fg:w="30"/><text x="67.3840%" y="751.50"></text></g><g><title>__GI___wait4 (31 samples, 0.02%)</title><rect x="67.1340%" y="821" width="0.0205%" height="15" fill="rgb(246,117,3)" fg:x="101414" fg:w="31"/><text x="67.3840%" y="831.50"></text></g><g><title>__libc_start_main (181 samples, 0.12%)</title><rect x="67.0480%" y="853" width="0.1198%" height="15" fill="rgb(244,118,39)" fg:x="101284" fg:w="181"/><text x="67.2980%" y="863.50"></text></g><g><title>main (151 samples, 0.10%)</title><rect x="67.0678%" y="837" width="0.1000%" height="15" fill="rgb(241,64,10)" fg:x="101314" fg:w="151"/><text x="67.3178%" y="847.50"></text></g><g><title>__split_vma (16 samples, 0.01%)</title><rect x="67.1784%" y="549" width="0.0106%" height="15" fill="rgb(229,39,44)" fg:x="101481" fg:w="16"/><text x="67.4284%" y="559.50"></text></g><g><title>__do_munmap (24 samples, 0.02%)</title><rect x="67.1777%" y="565" width="0.0159%" height="15" fill="rgb(230,226,3)" fg:x="101480" fg:w="24"/><text x="67.4277%" y="575.50"></text></g><g><title>mmap_region (43 samples, 0.03%)</title><rect x="67.1777%" y="581" width="0.0285%" height="15" fill="rgb(222,13,42)" fg:x="101480" fg:w="43"/><text x="67.4277%" y="591.50"></text></g><g><title>do_mmap (44 samples, 0.03%)</title><rect x="67.1777%" y="597" width="0.0291%" height="15" fill="rgb(247,180,54)" fg:x="101480" fg:w="44"/><text x="67.4277%" y="607.50"></text></g><g><title>ksys_mmap_pgoff (45 samples, 0.03%)</title><rect x="67.1777%" y="629" width="0.0298%" height="15" fill="rgb(205,96,16)" fg:x="101480" fg:w="45"/><text x="67.4277%" y="639.50"></text></g><g><title>vm_mmap_pgoff (45 samples, 0.03%)</title><rect x="67.1777%" y="613" width="0.0298%" height="15" fill="rgb(205,100,21)" fg:x="101480" fg:w="45"/><text x="67.4277%" y="623.50"></text></g><g><title>_dl_map_segments (61 samples, 0.04%)</title><rect x="67.1718%" y="709" width="0.0404%" height="15" fill="rgb(248,51,4)" fg:x="101471" fg:w="61"/><text x="67.4218%" y="719.50"></text></g><g><title>__mmap64 (53 samples, 0.04%)</title><rect x="67.1771%" y="693" width="0.0351%" height="15" fill="rgb(217,197,30)" fg:x="101479" fg:w="53"/><text x="67.4271%" y="703.50"></text></g><g><title>__mmap64 (53 samples, 0.04%)</title><rect x="67.1771%" y="677" width="0.0351%" height="15" fill="rgb(240,179,40)" fg:x="101479" fg:w="53"/><text x="67.4271%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.03%)</title><rect x="67.1777%" y="661" width="0.0344%" height="15" fill="rgb(212,185,35)" fg:x="101480" fg:w="52"/><text x="67.4277%" y="671.50"></text></g><g><title>do_syscall_64 (52 samples, 0.03%)</title><rect x="67.1777%" y="645" width="0.0344%" height="15" fill="rgb(251,222,31)" fg:x="101480" fg:w="52"/><text x="67.4277%" y="655.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="67.2174%" y="693" width="0.0113%" height="15" fill="rgb(208,140,36)" fg:x="101540" fg:w="17"/><text x="67.4674%" y="703.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="67.2174%" y="677" width="0.0113%" height="15" fill="rgb(220,148,1)" fg:x="101540" fg:w="17"/><text x="67.4674%" y="687.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="67.2174%" y="661" width="0.0113%" height="15" fill="rgb(254,4,28)" fg:x="101540" fg:w="17"/><text x="67.4674%" y="671.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="67.2174%" y="645" width="0.0113%" height="15" fill="rgb(222,185,44)" fg:x="101540" fg:w="17"/><text x="67.4674%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (89 samples, 0.06%)</title><rect x="67.1704%" y="725" width="0.0589%" height="15" fill="rgb(215,74,39)" fg:x="101469" fg:w="89"/><text x="67.4204%" y="735.50"></text></g><g><title>elf_get_dynamic_info (19 samples, 0.01%)</title><rect x="67.2168%" y="709" width="0.0126%" height="15" fill="rgb(247,86,4)" fg:x="101539" fg:w="19"/><text x="67.4668%" y="719.50"></text></g><g><title>_dl_map_object_deps (101 samples, 0.07%)</title><rect x="67.1684%" y="789" width="0.0669%" height="15" fill="rgb(231,105,32)" fg:x="101466" fg:w="101"/><text x="67.4184%" y="799.50"></text></g><g><title>_dl_catch_exception (101 samples, 0.07%)</title><rect x="67.1684%" y="773" width="0.0669%" height="15" fill="rgb(222,65,35)" fg:x="101466" fg:w="101"/><text x="67.4184%" y="783.50"></text></g><g><title>openaux (101 samples, 0.07%)</title><rect x="67.1684%" y="757" width="0.0669%" height="15" fill="rgb(218,145,35)" fg:x="101466" fg:w="101"/><text x="67.4184%" y="767.50"></text></g><g><title>_dl_map_object (101 samples, 0.07%)</title><rect x="67.1684%" y="741" width="0.0669%" height="15" fill="rgb(208,7,15)" fg:x="101466" fg:w="101"/><text x="67.4184%" y="751.50"></text></g><g><title>dl_new_hash (45 samples, 0.03%)</title><rect x="67.2724%" y="725" width="0.0298%" height="15" fill="rgb(209,83,13)" fg:x="101623" fg:w="45"/><text x="67.5224%" y="735.50"></text></g><g><title>check_match (21 samples, 0.01%)</title><rect x="67.3425%" y="709" width="0.0139%" height="15" fill="rgb(218,3,10)" fg:x="101729" fg:w="21"/><text x="67.5925%" y="719.50"></text></g><g><title>_dl_lookup_symbol_x (134 samples, 0.09%)</title><rect x="67.2704%" y="741" width="0.0887%" height="15" fill="rgb(211,219,4)" fg:x="101620" fg:w="134"/><text x="67.5204%" y="751.50"></text></g><g><title>do_lookup_x (86 samples, 0.06%)</title><rect x="67.3022%" y="725" width="0.0569%" height="15" fill="rgb(228,194,12)" fg:x="101668" fg:w="86"/><text x="67.5522%" y="735.50"></text></g><g><title>elf_machine_rela (162 samples, 0.11%)</title><rect x="67.2538%" y="757" width="0.1072%" height="15" fill="rgb(210,175,7)" fg:x="101595" fg:w="162"/><text x="67.5038%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (175 samples, 0.12%)</title><rect x="67.2472%" y="773" width="0.1158%" height="15" fill="rgb(243,132,6)" fg:x="101585" fg:w="175"/><text x="67.4972%" y="783.50"></text></g><g><title>[ld-2.31.so] (297 samples, 0.20%)</title><rect x="67.1678%" y="805" width="0.1966%" height="15" fill="rgb(207,72,18)" fg:x="101465" fg:w="297"/><text x="67.4178%" y="815.50"></text></g><g><title>_dl_relocate_object (189 samples, 0.13%)</title><rect x="67.2393%" y="789" width="0.1251%" height="15" fill="rgb(236,1,18)" fg:x="101573" fg:w="189"/><text x="67.4893%" y="799.50"></text></g><g><title>_dl_start (298 samples, 0.20%)</title><rect x="67.1678%" y="853" width="0.1973%" height="15" fill="rgb(227,0,18)" fg:x="101465" fg:w="298"/><text x="67.4178%" y="863.50"></text></g><g><title>_dl_start_final (298 samples, 0.20%)</title><rect x="67.1678%" y="837" width="0.1973%" height="15" fill="rgb(247,37,5)" fg:x="101465" fg:w="298"/><text x="67.4178%" y="847.50"></text></g><g><title>_dl_sysdep_start (298 samples, 0.20%)</title><rect x="67.1678%" y="821" width="0.1973%" height="15" fill="rgb(237,179,24)" fg:x="101465" fg:w="298"/><text x="67.4178%" y="831.50"></text></g><g><title>_start (480 samples, 0.32%)</title><rect x="67.0480%" y="869" width="0.3178%" height="15" fill="rgb(226,53,20)" fg:x="101284" fg:w="480"/><text x="67.2980%" y="879.50"></text></g><g><title>asm_exc_page_fault (92 samples, 0.06%)</title><rect x="67.3657%" y="869" width="0.0609%" height="15" fill="rgb(247,75,7)" fg:x="101764" fg:w="92"/><text x="67.6157%" y="879.50"></text></g><g><title>mmput (33 samples, 0.02%)</title><rect x="67.4372%" y="805" width="0.0218%" height="15" fill="rgb(233,96,12)" fg:x="101872" fg:w="33"/><text x="67.6872%" y="815.50"></text></g><g><title>exit_mmap (33 samples, 0.02%)</title><rect x="67.4372%" y="789" width="0.0218%" height="15" fill="rgb(224,125,0)" fg:x="101872" fg:w="33"/><text x="67.6872%" y="799.50"></text></g><g><title>unmap_vmas (21 samples, 0.01%)</title><rect x="67.4452%" y="773" width="0.0139%" height="15" fill="rgb(224,92,25)" fg:x="101884" fg:w="21"/><text x="67.6952%" y="783.50"></text></g><g><title>unmap_page_range (21 samples, 0.01%)</title><rect x="67.4452%" y="757" width="0.0139%" height="15" fill="rgb(224,42,24)" fg:x="101884" fg:w="21"/><text x="67.6952%" y="767.50"></text></g><g><title>__x64_sys_exit (54 samples, 0.04%)</title><rect x="67.4346%" y="837" width="0.0357%" height="15" fill="rgb(234,132,49)" fg:x="101868" fg:w="54"/><text x="67.6846%" y="847.50"></text></g><g><title>do_exit (54 samples, 0.04%)</title><rect x="67.4346%" y="821" width="0.0357%" height="15" fill="rgb(248,100,35)" fg:x="101868" fg:w="54"/><text x="67.6846%" y="831.50"></text></g><g><title>task_work_run (17 samples, 0.01%)</title><rect x="67.4591%" y="805" width="0.0113%" height="15" fill="rgb(239,94,40)" fg:x="101905" fg:w="17"/><text x="67.7091%" y="815.50"></text></g><g><title>cleanup_mnt (17 samples, 0.01%)</title><rect x="67.4591%" y="789" width="0.0113%" height="15" fill="rgb(235,139,28)" fg:x="101905" fg:w="17"/><text x="67.7091%" y="799.50"></text></g><g><title>mmput (32 samples, 0.02%)</title><rect x="67.4710%" y="789" width="0.0212%" height="15" fill="rgb(217,144,7)" fg:x="101923" fg:w="32"/><text x="67.7210%" y="799.50"></text></g><g><title>exit_mmap (32 samples, 0.02%)</title><rect x="67.4710%" y="773" width="0.0212%" height="15" fill="rgb(227,55,4)" fg:x="101923" fg:w="32"/><text x="67.7210%" y="783.50"></text></g><g><title>__x64_sys_exit_group (35 samples, 0.02%)</title><rect x="67.4703%" y="837" width="0.0232%" height="15" fill="rgb(252,82,54)" fg:x="101922" fg:w="35"/><text x="67.7203%" y="847.50"></text></g><g><title>do_group_exit (35 samples, 0.02%)</title><rect x="67.4703%" y="821" width="0.0232%" height="15" fill="rgb(245,172,4)" fg:x="101922" fg:w="35"/><text x="67.7203%" y="831.50"></text></g><g><title>do_exit (35 samples, 0.02%)</title><rect x="67.4703%" y="805" width="0.0232%" height="15" fill="rgb(207,26,27)" fg:x="101922" fg:w="35"/><text x="67.7203%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (106 samples, 0.07%)</title><rect x="67.4266%" y="869" width="0.0702%" height="15" fill="rgb(252,98,18)" fg:x="101856" fg:w="106"/><text x="67.6766%" y="879.50"></text></g><g><title>do_syscall_64 (106 samples, 0.07%)</title><rect x="67.4266%" y="853" width="0.0702%" height="15" fill="rgb(244,8,26)" fg:x="101856" fg:w="106"/><text x="67.6766%" y="863.50"></text></g><g><title>linux-sandbox (2,113 samples, 1.40%)</title><rect x="66.1060%" y="885" width="1.3988%" height="15" fill="rgb(237,173,45)" fg:x="99861" fg:w="2113"/><text x="66.3560%" y="895.50"></text></g><g><title>arch_fork (71 samples, 0.05%)</title><rect x="67.5239%" y="773" width="0.0470%" height="15" fill="rgb(208,213,49)" fg:x="102003" fg:w="71"/><text x="67.7739%" y="783.50"></text></g><g><title>ret_from_fork (64 samples, 0.04%)</title><rect x="67.5286%" y="757" width="0.0424%" height="15" fill="rgb(212,122,37)" fg:x="102010" fg:w="64"/><text x="67.7786%" y="767.50"></text></g><g><title>schedule_tail (64 samples, 0.04%)</title><rect x="67.5286%" y="741" width="0.0424%" height="15" fill="rgb(213,80,17)" fg:x="102010" fg:w="64"/><text x="67.7786%" y="751.50"></text></g><g><title>finish_task_switch (56 samples, 0.04%)</title><rect x="67.5339%" y="725" width="0.0371%" height="15" fill="rgb(206,210,43)" fg:x="102018" fg:w="56"/><text x="67.7839%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.04%)</title><rect x="67.5345%" y="709" width="0.0364%" height="15" fill="rgb(229,214,3)" fg:x="102019" fg:w="55"/><text x="67.7845%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.04%)</title><rect x="67.5345%" y="693" width="0.0364%" height="15" fill="rgb(235,213,29)" fg:x="102019" fg:w="55"/><text x="67.7845%" y="703.50"></text></g><g><title>native_write_msr (55 samples, 0.04%)</title><rect x="67.5345%" y="677" width="0.0364%" height="15" fill="rgb(248,135,26)" fg:x="102019" fg:w="55"/><text x="67.7845%" y="687.50"></text></g><g><title>__libc_fork (74 samples, 0.05%)</title><rect x="67.5233%" y="789" width="0.0490%" height="15" fill="rgb(242,188,12)" fg:x="102002" fg:w="74"/><text x="67.7733%" y="799.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (85 samples, 0.06%)</title><rect x="67.5200%" y="821" width="0.0563%" height="15" fill="rgb(245,38,12)" fg:x="101997" fg:w="85"/><text x="67.7700%" y="831.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (85 samples, 0.06%)</title><rect x="67.5200%" y="805" width="0.0563%" height="15" fill="rgb(218,42,13)" fg:x="101997" fg:w="85"/><text x="67.7700%" y="815.50"></text></g><g><title>WaitChild (16 samples, 0.01%)</title><rect x="67.5762%" y="805" width="0.0106%" height="15" fill="rgb(238,132,49)" fg:x="102082" fg:w="16"/><text x="67.8262%" y="815.50"></text></g><g><title>__GI___wait4 (16 samples, 0.01%)</title><rect x="67.5762%" y="789" width="0.0106%" height="15" fill="rgb(209,196,19)" fg:x="102082" fg:w="16"/><text x="67.8262%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="67.5762%" y="773" width="0.0106%" height="15" fill="rgb(244,131,22)" fg:x="102082" fg:w="16"/><text x="67.8262%" y="783.50"></text></g><g><title>LegacyProcessWrapper::WaitForChild (18 samples, 0.01%)</title><rect x="67.5762%" y="821" width="0.0119%" height="15" fill="rgb(223,18,34)" fg:x="102082" fg:w="18"/><text x="67.8262%" y="831.50"></text></g><g><title>__libc_start_main (109 samples, 0.07%)</title><rect x="67.5166%" y="853" width="0.0722%" height="15" fill="rgb(252,124,54)" fg:x="101992" fg:w="109"/><text x="67.7666%" y="863.50"></text></g><g><title>main (104 samples, 0.07%)</title><rect x="67.5200%" y="837" width="0.0688%" height="15" fill="rgb(229,106,42)" fg:x="101997" fg:w="104"/><text x="67.7700%" y="847.50"></text></g><g><title>_dl_catch_exception (21 samples, 0.01%)</title><rect x="67.5888%" y="773" width="0.0139%" height="15" fill="rgb(221,129,1)" fg:x="102101" fg:w="21"/><text x="67.8388%" y="783.50"></text></g><g><title>openaux (21 samples, 0.01%)</title><rect x="67.5888%" y="757" width="0.0139%" height="15" fill="rgb(229,74,15)" fg:x="102101" fg:w="21"/><text x="67.8388%" y="767.50"></text></g><g><title>_dl_map_object (21 samples, 0.01%)</title><rect x="67.5888%" y="741" width="0.0139%" height="15" fill="rgb(210,206,50)" fg:x="102101" fg:w="21"/><text x="67.8388%" y="751.50"></text></g><g><title>_dl_map_object_deps (22 samples, 0.01%)</title><rect x="67.5888%" y="789" width="0.0146%" height="15" fill="rgb(251,114,31)" fg:x="102101" fg:w="22"/><text x="67.8388%" y="799.50"></text></g><g><title>_dl_lookup_symbol_x (25 samples, 0.02%)</title><rect x="67.6159%" y="741" width="0.0165%" height="15" fill="rgb(215,225,28)" fg:x="102142" fg:w="25"/><text x="67.8659%" y="751.50"></text></g><g><title>do_lookup_x (20 samples, 0.01%)</title><rect x="67.6193%" y="725" width="0.0132%" height="15" fill="rgb(237,109,14)" fg:x="102147" fg:w="20"/><text x="67.8693%" y="735.50"></text></g><g><title>elf_machine_rela (36 samples, 0.02%)</title><rect x="67.6100%" y="757" width="0.0238%" height="15" fill="rgb(230,13,37)" fg:x="102133" fg:w="36"/><text x="67.8600%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (42 samples, 0.03%)</title><rect x="67.6067%" y="773" width="0.0278%" height="15" fill="rgb(231,40,28)" fg:x="102128" fg:w="42"/><text x="67.8567%" y="783.50"></text></g><g><title>_dl_relocate_object (47 samples, 0.03%)</title><rect x="67.6040%" y="789" width="0.0311%" height="15" fill="rgb(231,202,18)" fg:x="102124" fg:w="47"/><text x="67.8540%" y="799.50"></text></g><g><title>[ld-2.31.so] (72 samples, 0.05%)</title><rect x="67.5888%" y="805" width="0.0477%" height="15" fill="rgb(225,33,18)" fg:x="102101" fg:w="72"/><text x="67.8388%" y="815.50"></text></g><g><title>_dl_start_final (73 samples, 0.05%)</title><rect x="67.5888%" y="837" width="0.0483%" height="15" fill="rgb(223,64,47)" fg:x="102101" fg:w="73"/><text x="67.8388%" y="847.50"></text></g><g><title>_dl_sysdep_start (73 samples, 0.05%)</title><rect x="67.5888%" y="821" width="0.0483%" height="15" fill="rgb(234,114,13)" fg:x="102101" fg:w="73"/><text x="67.8388%" y="831.50"></text></g><g><title>_start (183 samples, 0.12%)</title><rect x="67.5166%" y="869" width="0.1211%" height="15" fill="rgb(248,56,40)" fg:x="101992" fg:w="183"/><text x="67.7666%" y="879.50"></text></g><g><title>_dl_start (74 samples, 0.05%)</title><rect x="67.5888%" y="853" width="0.0490%" height="15" fill="rgb(221,194,21)" fg:x="102101" fg:w="74"/><text x="67.8388%" y="863.50"></text></g><g><title>process-wrapper (203 samples, 0.13%)</title><rect x="67.5087%" y="885" width="0.1344%" height="15" fill="rgb(242,108,46)" fg:x="101980" fg:w="203"/><text x="67.7587%" y="895.50"></text></g><g><title>schedule (18 samples, 0.01%)</title><rect x="67.7060%" y="757" width="0.0119%" height="15" fill="rgb(220,106,10)" fg:x="102278" fg:w="18"/><text x="67.9560%" y="767.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="67.7060%" y="741" width="0.0119%" height="15" fill="rgb(211,88,4)" fg:x="102278" fg:w="18"/><text x="67.9560%" y="751.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="67.7060%" y="725" width="0.0119%" height="15" fill="rgb(214,95,34)" fg:x="102278" fg:w="18"/><text x="67.9560%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="67.7066%" y="709" width="0.0113%" height="15" fill="rgb(250,160,33)" fg:x="102279" fg:w="17"/><text x="67.9566%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="67.7066%" y="693" width="0.0113%" height="15" fill="rgb(225,29,10)" fg:x="102279" fg:w="17"/><text x="67.9566%" y="703.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="67.7066%" y="677" width="0.0113%" height="15" fill="rgb(224,28,30)" fg:x="102279" fg:w="17"/><text x="67.9566%" y="687.50"></text></g><g><title>do_syscall_64 (62 samples, 0.04%)</title><rect x="67.6848%" y="805" width="0.0410%" height="15" fill="rgb(231,77,4)" fg:x="102246" fg:w="62"/><text x="67.9348%" y="815.50"></text></g><g><title>kernel_wait4 (62 samples, 0.04%)</title><rect x="67.6848%" y="789" width="0.0410%" height="15" fill="rgb(209,63,21)" fg:x="102246" fg:w="62"/><text x="67.9348%" y="799.50"></text></g><g><title>do_wait (62 samples, 0.04%)</title><rect x="67.6848%" y="773" width="0.0410%" height="15" fill="rgb(226,22,11)" fg:x="102246" fg:w="62"/><text x="67.9348%" y="783.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (64 samples, 0.04%)</title><rect x="67.6841%" y="853" width="0.0424%" height="15" fill="rgb(216,82,30)" fg:x="102245" fg:w="64"/><text x="67.9341%" y="863.50"></text></g><g><title>__GI___wait4 (64 samples, 0.04%)</title><rect x="67.6841%" y="837" width="0.0424%" height="15" fill="rgb(246,227,38)" fg:x="102245" fg:w="64"/><text x="67.9341%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.04%)</title><rect x="67.6848%" y="821" width="0.0417%" height="15" fill="rgb(251,203,53)" fg:x="102246" fg:w="63"/><text x="67.9348%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="67.7318%" y="629" width="0.0119%" height="15" fill="rgb(254,101,1)" fg:x="102317" fg:w="18"/><text x="67.9818%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="67.7325%" y="613" width="0.0113%" height="15" fill="rgb(241,180,5)" fg:x="102318" fg:w="17"/><text x="67.9825%" y="623.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="67.7325%" y="597" width="0.0113%" height="15" fill="rgb(218,168,4)" fg:x="102318" fg:w="17"/><text x="67.9825%" y="607.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="67.7318%" y="645" width="0.0132%" height="15" fill="rgb(224,223,32)" fg:x="102317" fg:w="20"/><text x="67.9818%" y="655.50"></text></g><g><title>futex_wait_queue_me (25 samples, 0.02%)</title><rect x="67.7298%" y="693" width="0.0165%" height="15" fill="rgb(236,106,22)" fg:x="102314" fg:w="25"/><text x="67.9798%" y="703.50"></text></g><g><title>schedule (24 samples, 0.02%)</title><rect x="67.7305%" y="677" width="0.0159%" height="15" fill="rgb(206,121,5)" fg:x="102315" fg:w="24"/><text x="67.9805%" y="687.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="67.7311%" y="661" width="0.0152%" height="15" fill="rgb(233,87,28)" fg:x="102316" fg:w="23"/><text x="67.9811%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="67.7291%" y="773" width="0.0179%" height="15" fill="rgb(236,137,17)" fg:x="102313" fg:w="27"/><text x="67.9791%" y="783.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="67.7291%" y="757" width="0.0179%" height="15" fill="rgb(209,183,38)" fg:x="102313" fg:w="27"/><text x="67.9791%" y="767.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="67.7291%" y="741" width="0.0179%" height="15" fill="rgb(206,162,44)" fg:x="102313" fg:w="27"/><text x="67.9791%" y="751.50"></text></g><g><title>do_futex (27 samples, 0.02%)</title><rect x="67.7291%" y="725" width="0.0179%" height="15" fill="rgb(237,70,39)" fg:x="102313" fg:w="27"/><text x="67.9791%" y="735.50"></text></g><g><title>futex_wait (27 samples, 0.02%)</title><rect x="67.7291%" y="709" width="0.0179%" height="15" fill="rgb(212,176,5)" fg:x="102313" fg:w="27"/><text x="67.9791%" y="719.50"></text></g><g><title>[perf-983083.map] (155 samples, 0.10%)</title><rect x="67.6451%" y="869" width="0.1026%" height="15" fill="rgb(232,95,16)" fg:x="102186" fg:w="155"/><text x="67.8951%" y="879.50"></text></g><g><title>Unsafe_Park (32 samples, 0.02%)</title><rect x="67.7265%" y="853" width="0.0212%" height="15" fill="rgb(219,115,35)" fg:x="102309" fg:w="32"/><text x="67.9765%" y="863.50"></text></g><g><title>Parker::park (32 samples, 0.02%)</title><rect x="67.7265%" y="837" width="0.0212%" height="15" fill="rgb(251,67,27)" fg:x="102309" fg:w="32"/><text x="67.9765%" y="847.50"></text></g><g><title>__pthread_cond_timedwait (30 samples, 0.02%)</title><rect x="67.7278%" y="821" width="0.0199%" height="15" fill="rgb(222,95,40)" fg:x="102311" fg:w="30"/><text x="67.9778%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.02%)</title><rect x="67.7285%" y="805" width="0.0192%" height="15" fill="rgb(250,35,16)" fg:x="102312" fg:w="29"/><text x="67.9785%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (29 samples, 0.02%)</title><rect x="67.7285%" y="789" width="0.0192%" height="15" fill="rgb(224,86,44)" fg:x="102312" fg:w="29"/><text x="67.9785%" y="799.50"></text></g><g><title>free_unref_page_list (19 samples, 0.01%)</title><rect x="67.7814%" y="661" width="0.0126%" height="15" fill="rgb(237,53,53)" fg:x="102392" fg:w="19"/><text x="68.0314%" y="671.50"></text></g><g><title>tlb_flush_mmu (46 samples, 0.03%)</title><rect x="67.7682%" y="693" width="0.0305%" height="15" fill="rgb(208,171,33)" fg:x="102372" fg:w="46"/><text x="68.0182%" y="703.50"></text></g><g><title>release_pages (39 samples, 0.03%)</title><rect x="67.7728%" y="677" width="0.0258%" height="15" fill="rgb(222,64,27)" fg:x="102379" fg:w="39"/><text x="68.0228%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.05%)</title><rect x="67.7483%" y="869" width="0.0510%" height="15" fill="rgb(221,121,35)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (77 samples, 0.05%)</title><rect x="67.7483%" y="853" width="0.0510%" height="15" fill="rgb(228,137,42)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (77 samples, 0.05%)</title><rect x="67.7483%" y="837" width="0.0510%" height="15" fill="rgb(227,54,21)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="847.50"></text></g><g><title>arch_do_signal (77 samples, 0.05%)</title><rect x="67.7483%" y="821" width="0.0510%" height="15" fill="rgb(240,168,33)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="831.50"></text></g><g><title>get_signal (77 samples, 0.05%)</title><rect x="67.7483%" y="805" width="0.0510%" height="15" fill="rgb(243,159,6)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="815.50"></text></g><g><title>do_group_exit (77 samples, 0.05%)</title><rect x="67.7483%" y="789" width="0.0510%" height="15" fill="rgb(205,211,41)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="799.50"></text></g><g><title>do_exit (77 samples, 0.05%)</title><rect x="67.7483%" y="773" width="0.0510%" height="15" fill="rgb(253,30,1)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="783.50"></text></g><g><title>mmput (77 samples, 0.05%)</title><rect x="67.7483%" y="757" width="0.0510%" height="15" fill="rgb(226,80,18)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="767.50"></text></g><g><title>exit_mmap (77 samples, 0.05%)</title><rect x="67.7483%" y="741" width="0.0510%" height="15" fill="rgb(253,156,46)" fg:x="102342" fg:w="77"/><text x="67.9983%" y="751.50"></text></g><g><title>unmap_vmas (75 samples, 0.05%)</title><rect x="67.7497%" y="725" width="0.0496%" height="15" fill="rgb(248,87,27)" fg:x="102344" fg:w="75"/><text x="67.9997%" y="735.50"></text></g><g><title>unmap_page_range (75 samples, 0.05%)</title><rect x="67.7497%" y="709" width="0.0496%" height="15" fill="rgb(227,122,2)" fg:x="102344" fg:w="75"/><text x="67.9997%" y="719.50"></text></g><g><title>process_reaper (237 samples, 0.16%)</title><rect x="67.6431%" y="885" width="0.1569%" height="15" fill="rgb(229,94,39)" fg:x="102183" fg:w="237"/><text x="67.8931%" y="895.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (21 samples, 0.01%)</title><rect x="68.0284%" y="853" width="0.0139%" height="15" fill="rgb(225,173,31)" fg:x="102765" fg:w="21"/><text x="68.2784%" y="863.50"></text></g><g><title>deflate (21 samples, 0.01%)</title><rect x="68.0284%" y="837" width="0.0139%" height="15" fill="rgb(239,176,30)" fg:x="102765" fg:w="21"/><text x="68.2784%" y="847.50"></text></g><g><title>[libz.so.1.2.11] (21 samples, 0.01%)</title><rect x="68.0284%" y="821" width="0.0139%" height="15" fill="rgb(212,104,21)" fg:x="102765" fg:w="21"/><text x="68.2784%" y="831.50"></text></g><g><title>dequeue_task_fair (16 samples, 0.01%)</title><rect x="68.0807%" y="645" width="0.0106%" height="15" fill="rgb(240,209,40)" fg:x="102844" fg:w="16"/><text x="68.3307%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.04%)</title><rect x="68.0939%" y="629" width="0.0410%" height="15" fill="rgb(234,195,5)" fg:x="102864" fg:w="62"/><text x="68.3439%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.04%)</title><rect x="68.0946%" y="613" width="0.0404%" height="15" fill="rgb(238,213,1)" fg:x="102865" fg:w="61"/><text x="68.3446%" y="623.50"></text></g><g><title>native_write_msr (61 samples, 0.04%)</title><rect x="68.0946%" y="597" width="0.0404%" height="15" fill="rgb(235,182,54)" fg:x="102865" fg:w="61"/><text x="68.3446%" y="607.50"></text></g><g><title>finish_task_switch (68 samples, 0.05%)</title><rect x="68.0912%" y="645" width="0.0450%" height="15" fill="rgb(229,50,46)" fg:x="102860" fg:w="68"/><text x="68.3412%" y="655.50"></text></g><g><title>futex_wait_queue_me (105 samples, 0.07%)</title><rect x="68.0747%" y="693" width="0.0695%" height="15" fill="rgb(219,145,13)" fg:x="102835" fg:w="105"/><text x="68.3247%" y="703.50"></text></g><g><title>schedule (101 samples, 0.07%)</title><rect x="68.0773%" y="677" width="0.0669%" height="15" fill="rgb(220,226,10)" fg:x="102839" fg:w="101"/><text x="68.3273%" y="687.50"></text></g><g><title>__schedule (100 samples, 0.07%)</title><rect x="68.0780%" y="661" width="0.0662%" height="15" fill="rgb(248,47,30)" fg:x="102840" fg:w="100"/><text x="68.3280%" y="671.50"></text></g><g><title>do_syscall_64 (109 samples, 0.07%)</title><rect x="68.0727%" y="757" width="0.0722%" height="15" fill="rgb(231,209,44)" fg:x="102832" fg:w="109"/><text x="68.3227%" y="767.50"></text></g><g><title>__x64_sys_futex (109 samples, 0.07%)</title><rect x="68.0727%" y="741" width="0.0722%" height="15" fill="rgb(209,80,30)" fg:x="102832" fg:w="109"/><text x="68.3227%" y="751.50"></text></g><g><title>do_futex (109 samples, 0.07%)</title><rect x="68.0727%" y="725" width="0.0722%" height="15" fill="rgb(232,9,14)" fg:x="102832" fg:w="109"/><text x="68.3227%" y="735.50"></text></g><g><title>futex_wait (107 samples, 0.07%)</title><rect x="68.0740%" y="709" width="0.0708%" height="15" fill="rgb(243,91,43)" fg:x="102834" fg:w="107"/><text x="68.3240%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (114 samples, 0.08%)</title><rect x="68.0707%" y="773" width="0.0755%" height="15" fill="rgb(231,90,52)" fg:x="102829" fg:w="114"/><text x="68.3207%" y="783.50"></text></g><g><title>__pthread_cond_wait (126 samples, 0.08%)</title><rect x="68.0634%" y="821" width="0.0834%" height="15" fill="rgb(253,192,44)" fg:x="102818" fg:w="126"/><text x="68.3134%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (126 samples, 0.08%)</title><rect x="68.0634%" y="805" width="0.0834%" height="15" fill="rgb(241,66,31)" fg:x="102818" fg:w="126"/><text x="68.3134%" y="815.50"></text></g><g><title>futex_wait_cancelable (120 samples, 0.08%)</title><rect x="68.0674%" y="789" width="0.0794%" height="15" fill="rgb(235,81,37)" fg:x="102824" fg:w="120"/><text x="68.3174%" y="799.50"></text></g><g><title>Parker::park (146 samples, 0.10%)</title><rect x="68.0562%" y="837" width="0.0966%" height="15" fill="rgb(223,221,9)" fg:x="102807" fg:w="146"/><text x="68.3062%" y="847.50"></text></g><g><title>Unsafe_Park (153 samples, 0.10%)</title><rect x="68.0535%" y="853" width="0.1013%" height="15" fill="rgb(242,180,7)" fg:x="102803" fg:w="153"/><text x="68.3035%" y="863.50"></text></g><g><title>asm_exc_page_fault (18 samples, 0.01%)</title><rect x="68.1548%" y="853" width="0.0119%" height="15" fill="rgb(243,78,19)" fg:x="102956" fg:w="18"/><text x="68.4048%" y="863.50"></text></g><g><title>exc_page_fault (18 samples, 0.01%)</title><rect x="68.1548%" y="837" width="0.0119%" height="15" fill="rgb(233,23,17)" fg:x="102956" fg:w="18"/><text x="68.4048%" y="847.50"></text></g><g><title>do_user_addr_fault (18 samples, 0.01%)</title><rect x="68.1548%" y="821" width="0.0119%" height="15" fill="rgb(252,122,45)" fg:x="102956" fg:w="18"/><text x="68.4048%" y="831.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="68.1561%" y="805" width="0.0106%" height="15" fill="rgb(247,108,20)" fg:x="102958" fg:w="16"/><text x="68.4061%" y="815.50"></text></g><g><title>[perf-983083.map] (544 samples, 0.36%)</title><rect x="67.8079%" y="869" width="0.3601%" height="15" fill="rgb(235,84,21)" fg:x="102432" fg:w="544"/><text x="68.0579%" y="879.50"></text></g><g><title>profile-writer- (568 samples, 0.38%)</title><rect x="67.8000%" y="885" width="0.3760%" height="15" fill="rgb(247,129,10)" fg:x="102420" fg:w="568"/><text x="68.0500%" y="895.50"></text></g><g><title>[anon] (18 samples, 0.01%)</title><rect x="68.1952%" y="869" width="0.0119%" height="15" fill="rgb(208,173,14)" fg:x="103017" fg:w="18"/><text x="68.4452%" y="879.50"></text></g><g><title>PyImport_ImportModuleLevelObject (18 samples, 0.01%)</title><rect x="68.2091%" y="789" width="0.0119%" height="15" fill="rgb(236,31,38)" fg:x="103038" fg:w="18"/><text x="68.4591%" y="799.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (18 samples, 0.01%)</title><rect x="68.2091%" y="773" width="0.0119%" height="15" fill="rgb(232,65,17)" fg:x="103038" fg:w="18"/><text x="68.4591%" y="783.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.2091%" y="757" width="0.0119%" height="15" fill="rgb(224,45,49)" fg:x="103038" fg:w="18"/><text x="68.4591%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.2091%" y="741" width="0.0119%" height="15" fill="rgb(225,2,53)" fg:x="103038" fg:w="18"/><text x="68.4591%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="725" width="0.0106%" height="15" fill="rgb(248,210,53)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2104%" y="709" width="0.0106%" height="15" fill="rgb(211,1,30)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="693" width="0.0106%" height="15" fill="rgb(224,96,15)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2104%" y="677" width="0.0106%" height="15" fill="rgb(252,45,11)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="661" width="0.0106%" height="15" fill="rgb(220,125,38)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2104%" y="645" width="0.0106%" height="15" fill="rgb(243,161,33)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="629" width="0.0106%" height="15" fill="rgb(248,197,34)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2104%" y="613" width="0.0106%" height="15" fill="rgb(228,165,23)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="623.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2104%" y="597" width="0.0106%" height="15" fill="rgb(236,94,38)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="581" width="0.0106%" height="15" fill="rgb(220,13,23)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="591.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2104%" y="565" width="0.0106%" height="15" fill="rgb(234,26,39)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="575.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2104%" y="549" width="0.0106%" height="15" fill="rgb(205,117,44)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="559.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.2104%" y="533" width="0.0106%" height="15" fill="rgb(250,42,2)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="543.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.2104%" y="517" width="0.0106%" height="15" fill="rgb(223,83,14)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="527.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2104%" y="501" width="0.0106%" height="15" fill="rgb(241,147,50)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2104%" y="485" width="0.0106%" height="15" fill="rgb(218,90,6)" fg:x="103040" fg:w="16"/><text x="68.4604%" y="495.50"></text></g><g><title>PyEval_EvalCode (22 samples, 0.01%)</title><rect x="68.2091%" y="853" width="0.0146%" height="15" fill="rgb(210,191,5)" fg:x="103038" fg:w="22"/><text x="68.4591%" y="863.50"></text></g><g><title>_PyEval_EvalCodeWithName (22 samples, 0.01%)</title><rect x="68.2091%" y="837" width="0.0146%" height="15" fill="rgb(225,139,19)" fg:x="103038" fg:w="22"/><text x="68.4591%" y="847.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.2091%" y="821" width="0.0146%" height="15" fill="rgb(210,1,33)" fg:x="103038" fg:w="22"/><text x="68.4591%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.2091%" y="805" width="0.0146%" height="15" fill="rgb(213,50,3)" fg:x="103038" fg:w="22"/><text x="68.4591%" y="815.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="68.2256%" y="533" width="0.0172%" height="15" fill="rgb(234,227,4)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="543.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="68.2256%" y="517" width="0.0172%" height="15" fill="rgb(246,63,5)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="527.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.2256%" y="501" width="0.0172%" height="15" fill="rgb(245,136,27)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.2256%" y="485" width="0.0172%" height="15" fill="rgb(247,199,27)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.2256%" y="469" width="0.0172%" height="15" fill="rgb(252,158,49)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.2256%" y="453" width="0.0172%" height="15" fill="rgb(254,73,1)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.2256%" y="437" width="0.0172%" height="15" fill="rgb(248,93,19)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="447.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.2256%" y="421" width="0.0172%" height="15" fill="rgb(206,67,5)" fg:x="103063" fg:w="26"/><text x="68.4756%" y="431.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.2270%" y="405" width="0.0159%" height="15" fill="rgb(209,210,4)" fg:x="103065" fg:w="24"/><text x="68.4770%" y="415.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.2270%" y="389" width="0.0159%" height="15" fill="rgb(214,185,36)" fg:x="103065" fg:w="24"/><text x="68.4770%" y="399.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.2270%" y="373" width="0.0159%" height="15" fill="rgb(233,191,26)" fg:x="103065" fg:w="24"/><text x="68.4770%" y="383.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.2270%" y="357" width="0.0159%" height="15" fill="rgb(248,94,17)" fg:x="103065" fg:w="24"/><text x="68.4770%" y="367.50"></text></g><g><title>PyImport_ImportModuleLevelObject (27 samples, 0.02%)</title><rect x="68.2256%" y="853" width="0.0179%" height="15" fill="rgb(250,64,4)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="863.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (27 samples, 0.02%)</title><rect x="68.2256%" y="837" width="0.0179%" height="15" fill="rgb(218,41,53)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="847.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.2256%" y="821" width="0.0179%" height="15" fill="rgb(251,176,28)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.2256%" y="805" width="0.0179%" height="15" fill="rgb(247,22,9)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="789" width="0.0179%" height="15" fill="rgb(218,201,14)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.2256%" y="773" width="0.0179%" height="15" fill="rgb(218,94,10)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="757" width="0.0179%" height="15" fill="rgb(222,183,52)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.2256%" y="741" width="0.0179%" height="15" fill="rgb(242,140,25)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="725" width="0.0179%" height="15" fill="rgb(235,197,38)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.2256%" y="709" width="0.0179%" height="15" fill="rgb(237,136,15)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="693" width="0.0179%" height="15" fill="rgb(223,44,49)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.2256%" y="677" width="0.0179%" height="15" fill="rgb(227,71,15)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="687.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.2256%" y="661" width="0.0179%" height="15" fill="rgb(225,153,20)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="645" width="0.0179%" height="15" fill="rgb(210,190,26)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="655.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.2256%" y="629" width="0.0179%" height="15" fill="rgb(223,147,5)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="639.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.2256%" y="613" width="0.0179%" height="15" fill="rgb(207,14,23)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="623.50"></text></g><g><title>PyEval_EvalCode (27 samples, 0.02%)</title><rect x="68.2256%" y="597" width="0.0179%" height="15" fill="rgb(211,195,53)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="607.50"></text></g><g><title>_PyEval_EvalCodeWithName (27 samples, 0.02%)</title><rect x="68.2256%" y="581" width="0.0179%" height="15" fill="rgb(237,75,46)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="591.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.2256%" y="565" width="0.0179%" height="15" fill="rgb(254,55,14)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.2256%" y="549" width="0.0179%" height="15" fill="rgb(230,185,30)" fg:x="103063" fg:w="27"/><text x="68.4756%" y="559.50"></text></g><g><title>PyImport_ImportModuleLevelObject (17 samples, 0.01%)</title><rect x="68.2879%" y="821" width="0.0113%" height="15" fill="rgb(220,14,11)" fg:x="103157" fg:w="17"/><text x="68.5379%" y="831.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (17 samples, 0.01%)</title><rect x="68.2879%" y="805" width="0.0113%" height="15" fill="rgb(215,169,44)" fg:x="103157" fg:w="17"/><text x="68.5379%" y="815.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.2879%" y="789" width="0.0113%" height="15" fill="rgb(253,203,20)" fg:x="103157" fg:w="17"/><text x="68.5379%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.2879%" y="773" width="0.0113%" height="15" fill="rgb(229,225,17)" fg:x="103157" fg:w="17"/><text x="68.5379%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="757" width="0.0106%" height="15" fill="rgb(236,76,26)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2885%" y="741" width="0.0106%" height="15" fill="rgb(234,15,30)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="725" width="0.0106%" height="15" fill="rgb(211,113,48)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2885%" y="709" width="0.0106%" height="15" fill="rgb(221,31,36)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="693" width="0.0106%" height="15" fill="rgb(215,118,52)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2885%" y="677" width="0.0106%" height="15" fill="rgb(241,151,27)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="661" width="0.0106%" height="15" fill="rgb(253,51,3)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.2885%" y="645" width="0.0106%" height="15" fill="rgb(216,201,24)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="655.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2885%" y="629" width="0.0106%" height="15" fill="rgb(231,107,4)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="613" width="0.0106%" height="15" fill="rgb(243,97,54)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="623.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2885%" y="597" width="0.0106%" height="15" fill="rgb(221,32,51)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="607.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2885%" y="581" width="0.0106%" height="15" fill="rgb(218,171,35)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="591.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.2885%" y="565" width="0.0106%" height="15" fill="rgb(214,20,53)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="575.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.2885%" y="549" width="0.0106%" height="15" fill="rgb(239,9,52)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="559.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.2885%" y="533" width="0.0106%" height="15" fill="rgb(215,114,45)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.2885%" y="517" width="0.0106%" height="15" fill="rgb(208,118,9)" fg:x="103158" fg:w="16"/><text x="68.5385%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="68.2879%" y="837" width="0.0212%" height="15" fill="rgb(235,7,39)" fg:x="103157" fg:w="32"/><text x="68.5379%" y="847.50"></text></g><g><title>PyImport_ImportModuleLevelObject (23 samples, 0.02%)</title><rect x="68.3090%" y="565" width="0.0152%" height="15" fill="rgb(243,225,15)" fg:x="103189" fg:w="23"/><text x="68.5590%" y="575.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (23 samples, 0.02%)</title><rect x="68.3090%" y="549" width="0.0152%" height="15" fill="rgb(225,216,18)" fg:x="103189" fg:w="23"/><text x="68.5590%" y="559.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.3090%" y="533" width="0.0152%" height="15" fill="rgb(233,36,38)" fg:x="103189" fg:w="23"/><text x="68.5590%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.3090%" y="517" width="0.0152%" height="15" fill="rgb(239,88,23)" fg:x="103189" fg:w="23"/><text x="68.5590%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.3097%" y="501" width="0.0146%" height="15" fill="rgb(219,181,35)" fg:x="103190" fg:w="22"/><text x="68.5597%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.3097%" y="485" width="0.0146%" height="15" fill="rgb(215,18,46)" fg:x="103190" fg:w="22"/><text x="68.5597%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.3097%" y="469" width="0.0146%" height="15" fill="rgb(241,38,11)" fg:x="103190" fg:w="22"/><text x="68.5597%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.3097%" y="453" width="0.0146%" height="15" fill="rgb(248,169,45)" fg:x="103190" fg:w="22"/><text x="68.5597%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.3130%" y="437" width="0.0113%" height="15" fill="rgb(239,50,49)" fg:x="103195" fg:w="17"/><text x="68.5630%" y="447.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.3130%" y="421" width="0.0113%" height="15" fill="rgb(231,96,31)" fg:x="103195" fg:w="17"/><text x="68.5630%" y="431.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.3130%" y="405" width="0.0113%" height="15" fill="rgb(224,193,37)" fg:x="103195" fg:w="17"/><text x="68.5630%" y="415.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.3130%" y="389" width="0.0113%" height="15" fill="rgb(227,153,50)" fg:x="103195" fg:w="17"/><text x="68.5630%" y="399.50"></text></g><g><title>[python3.9] (99 samples, 0.07%)</title><rect x="68.2607%" y="853" width="0.0655%" height="15" fill="rgb(249,228,3)" fg:x="103116" fg:w="99"/><text x="68.5107%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3090%" y="837" width="0.0172%" height="15" fill="rgb(219,164,43)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="821" width="0.0172%" height="15" fill="rgb(216,45,41)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3090%" y="805" width="0.0172%" height="15" fill="rgb(210,226,51)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="789" width="0.0172%" height="15" fill="rgb(209,117,49)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3090%" y="773" width="0.0172%" height="15" fill="rgb(206,196,24)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="757" width="0.0172%" height="15" fill="rgb(253,218,3)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3090%" y="741" width="0.0172%" height="15" fill="rgb(252,166,2)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="725" width="0.0172%" height="15" fill="rgb(236,218,26)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3090%" y="709" width="0.0172%" height="15" fill="rgb(254,84,19)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="719.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.3090%" y="693" width="0.0172%" height="15" fill="rgb(219,137,29)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="677" width="0.0172%" height="15" fill="rgb(227,47,52)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="687.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.3090%" y="661" width="0.0172%" height="15" fill="rgb(229,167,24)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="671.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.3090%" y="645" width="0.0172%" height="15" fill="rgb(233,164,1)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="655.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.02%)</title><rect x="68.3090%" y="629" width="0.0172%" height="15" fill="rgb(218,88,48)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="639.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.02%)</title><rect x="68.3090%" y="613" width="0.0172%" height="15" fill="rgb(226,214,24)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="623.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.3090%" y="597" width="0.0172%" height="15" fill="rgb(233,29,12)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.3090%" y="581" width="0.0172%" height="15" fill="rgb(219,120,34)" fg:x="103189" fg:w="26"/><text x="68.5590%" y="591.50"></text></g><g><title>_PyEval_EvalCodeWithName (17 samples, 0.01%)</title><rect x="68.3269%" y="853" width="0.0113%" height="15" fill="rgb(226,78,44)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="863.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.3269%" y="837" width="0.0113%" height="15" fill="rgb(240,15,48)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.3269%" y="821" width="0.0113%" height="15" fill="rgb(253,176,7)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="831.50"></text></g><g><title>PyImport_ImportModuleLevelObject (17 samples, 0.01%)</title><rect x="68.3269%" y="805" width="0.0113%" height="15" fill="rgb(206,166,28)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="815.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (17 samples, 0.01%)</title><rect x="68.3269%" y="789" width="0.0113%" height="15" fill="rgb(241,53,51)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="799.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.3269%" y="773" width="0.0113%" height="15" fill="rgb(249,112,30)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.3269%" y="757" width="0.0113%" height="15" fill="rgb(217,85,30)" fg:x="103216" fg:w="17"/><text x="68.5769%" y="767.50"></text></g><g><title>PyImport_ImportModuleLevelObject (31 samples, 0.02%)</title><rect x="68.3388%" y="517" width="0.0205%" height="15" fill="rgb(233,49,7)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="527.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (31 samples, 0.02%)</title><rect x="68.3388%" y="501" width="0.0205%" height="15" fill="rgb(234,109,9)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="511.50"></text></g><g><title>[python3.9] (31 samples, 0.02%)</title><rect x="68.3388%" y="485" width="0.0205%" height="15" fill="rgb(253,95,22)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3388%" y="469" width="0.0205%" height="15" fill="rgb(233,176,25)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.3388%" y="453" width="0.0205%" height="15" fill="rgb(236,33,39)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3388%" y="437" width="0.0205%" height="15" fill="rgb(223,226,42)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.3388%" y="421" width="0.0205%" height="15" fill="rgb(216,99,33)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="431.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.3388%" y="405" width="0.0205%" height="15" fill="rgb(235,84,23)" fg:x="103234" fg:w="31"/><text x="68.5888%" y="415.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.3441%" y="389" width="0.0152%" height="15" fill="rgb(232,2,27)" fg:x="103242" fg:w="23"/><text x="68.5941%" y="399.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.3441%" y="373" width="0.0152%" height="15" fill="rgb(241,23,22)" fg:x="103242" fg:w="23"/><text x="68.5941%" y="383.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.3441%" y="357" width="0.0152%" height="15" fill="rgb(211,73,27)" fg:x="103242" fg:w="23"/><text x="68.5941%" y="367.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.3441%" y="341" width="0.0152%" height="15" fill="rgb(235,109,49)" fg:x="103242" fg:w="23"/><text x="68.5941%" y="351.50"></text></g><g><title>PyImport_ImportModuleLevelObject (42 samples, 0.03%)</title><rect x="68.3382%" y="837" width="0.0278%" height="15" fill="rgb(230,99,29)" fg:x="103233" fg:w="42"/><text x="68.5882%" y="847.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (42 samples, 0.03%)</title><rect x="68.3382%" y="821" width="0.0278%" height="15" fill="rgb(245,199,7)" fg:x="103233" fg:w="42"/><text x="68.5882%" y="831.50"></text></g><g><title>[python3.9] (42 samples, 0.03%)</title><rect x="68.3382%" y="805" width="0.0278%" height="15" fill="rgb(217,179,10)" fg:x="103233" fg:w="42"/><text x="68.5882%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (42 samples, 0.03%)</title><rect x="68.3382%" y="789" width="0.0278%" height="15" fill="rgb(254,99,47)" fg:x="103233" fg:w="42"/><text x="68.5882%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="773" width="0.0271%" height="15" fill="rgb(251,121,7)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.03%)</title><rect x="68.3388%" y="757" width="0.0271%" height="15" fill="rgb(250,177,26)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="741" width="0.0271%" height="15" fill="rgb(232,88,15)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.03%)</title><rect x="68.3388%" y="725" width="0.0271%" height="15" fill="rgb(251,54,54)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="709" width="0.0271%" height="15" fill="rgb(208,177,15)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.03%)</title><rect x="68.3388%" y="693" width="0.0271%" height="15" fill="rgb(205,97,32)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="677" width="0.0271%" height="15" fill="rgb(217,192,13)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.03%)</title><rect x="68.3388%" y="661" width="0.0271%" height="15" fill="rgb(215,163,41)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="671.50"></text></g><g><title>[python3.9] (41 samples, 0.03%)</title><rect x="68.3388%" y="645" width="0.0271%" height="15" fill="rgb(246,83,29)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="629" width="0.0271%" height="15" fill="rgb(219,2,45)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="639.50"></text></g><g><title>[python3.9] (41 samples, 0.03%)</title><rect x="68.3388%" y="613" width="0.0271%" height="15" fill="rgb(242,215,33)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="623.50"></text></g><g><title>[python3.9] (41 samples, 0.03%)</title><rect x="68.3388%" y="597" width="0.0271%" height="15" fill="rgb(217,1,6)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="607.50"></text></g><g><title>PyEval_EvalCode (41 samples, 0.03%)</title><rect x="68.3388%" y="581" width="0.0271%" height="15" fill="rgb(207,85,52)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="591.50"></text></g><g><title>_PyEval_EvalCodeWithName (41 samples, 0.03%)</title><rect x="68.3388%" y="565" width="0.0271%" height="15" fill="rgb(231,171,19)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="575.50"></text></g><g><title>[python3.9] (41 samples, 0.03%)</title><rect x="68.3388%" y="549" width="0.0271%" height="15" fill="rgb(207,128,4)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.03%)</title><rect x="68.3388%" y="533" width="0.0271%" height="15" fill="rgb(219,208,4)" fg:x="103234" fg:w="41"/><text x="68.5888%" y="543.50"></text></g><g><title>PyImport_ImportModuleLevelObject (22 samples, 0.01%)</title><rect x="68.3699%" y="421" width="0.0146%" height="15" fill="rgb(235,161,42)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="431.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (22 samples, 0.01%)</title><rect x="68.3699%" y="405" width="0.0146%" height="15" fill="rgb(247,218,18)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="415.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.3699%" y="389" width="0.0146%" height="15" fill="rgb(232,114,51)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="399.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.3699%" y="373" width="0.0146%" height="15" fill="rgb(222,95,3)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="383.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.3699%" y="357" width="0.0146%" height="15" fill="rgb(240,65,29)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="367.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.3699%" y="341" width="0.0146%" height="15" fill="rgb(249,209,20)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="351.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.3699%" y="325" width="0.0146%" height="15" fill="rgb(241,48,37)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="335.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="68.3699%" y="309" width="0.0146%" height="15" fill="rgb(230,140,42)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="319.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.3699%" y="293" width="0.0146%" height="15" fill="rgb(230,176,45)" fg:x="103281" fg:w="22"/><text x="68.6199%" y="303.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="68.3726%" y="277" width="0.0119%" height="15" fill="rgb(245,112,21)" fg:x="103285" fg:w="18"/><text x="68.6226%" y="287.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.3726%" y="261" width="0.0119%" height="15" fill="rgb(207,183,35)" fg:x="103285" fg:w="18"/><text x="68.6226%" y="271.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.3739%" y="245" width="0.0106%" height="15" fill="rgb(227,44,33)" fg:x="103287" fg:w="16"/><text x="68.6239%" y="255.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="68.3693%" y="741" width="0.0172%" height="15" fill="rgb(246,120,21)" fg:x="103280" fg:w="26"/><text x="68.6193%" y="751.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="68.3693%" y="725" width="0.0172%" height="15" fill="rgb(235,57,52)" fg:x="103280" fg:w="26"/><text x="68.6193%" y="735.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.3693%" y="709" width="0.0172%" height="15" fill="rgb(238,84,10)" fg:x="103280" fg:w="26"/><text x="68.6193%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.3693%" y="693" width="0.0172%" height="15" fill="rgb(251,200,32)" fg:x="103280" fg:w="26"/><text x="68.6193%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="677" width="0.0165%" height="15" fill="rgb(247,159,13)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.3699%" y="661" width="0.0165%" height="15" fill="rgb(238,64,4)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="645" width="0.0165%" height="15" fill="rgb(221,131,51)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.3699%" y="629" width="0.0165%" height="15" fill="rgb(242,5,29)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="613" width="0.0165%" height="15" fill="rgb(214,130,32)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.3699%" y="597" width="0.0165%" height="15" fill="rgb(244,210,16)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="581" width="0.0165%" height="15" fill="rgb(234,48,26)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="68.3699%" y="565" width="0.0165%" height="15" fill="rgb(231,82,38)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="575.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.3699%" y="549" width="0.0165%" height="15" fill="rgb(254,128,41)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="533" width="0.0165%" height="15" fill="rgb(212,73,49)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="543.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.3699%" y="517" width="0.0165%" height="15" fill="rgb(205,62,54)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="527.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.3699%" y="501" width="0.0165%" height="15" fill="rgb(228,0,8)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="511.50"></text></g><g><title>PyEval_EvalCode (25 samples, 0.02%)</title><rect x="68.3699%" y="485" width="0.0165%" height="15" fill="rgb(251,28,17)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="495.50"></text></g><g><title>_PyEval_EvalCodeWithName (25 samples, 0.02%)</title><rect x="68.3699%" y="469" width="0.0165%" height="15" fill="rgb(238,105,27)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="479.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.3699%" y="453" width="0.0165%" height="15" fill="rgb(237,216,33)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="68.3699%" y="437" width="0.0165%" height="15" fill="rgb(229,228,25)" fg:x="103281" fg:w="25"/><text x="68.6199%" y="447.50"></text></g><g><title>PyEval_EvalCode (28 samples, 0.02%)</title><rect x="68.3693%" y="805" width="0.0185%" height="15" fill="rgb(233,75,23)" fg:x="103280" fg:w="28"/><text x="68.6193%" y="815.50"></text></g><g><title>_PyEval_EvalCodeWithName (28 samples, 0.02%)</title><rect x="68.3693%" y="789" width="0.0185%" height="15" fill="rgb(231,207,16)" fg:x="103280" fg:w="28"/><text x="68.6193%" y="799.50"></text></g><g><title>[python3.9] (28 samples, 0.02%)</title><rect x="68.3693%" y="773" width="0.0185%" height="15" fill="rgb(231,191,45)" fg:x="103280" fg:w="28"/><text x="68.6193%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.02%)</title><rect x="68.3693%" y="757" width="0.0185%" height="15" fill="rgb(224,133,17)" fg:x="103280" fg:w="28"/><text x="68.6193%" y="767.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="68.3693%" y="837" width="0.0199%" height="15" fill="rgb(209,178,27)" fg:x="103280" fg:w="30"/><text x="68.6193%" y="847.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="68.3693%" y="821" width="0.0199%" height="15" fill="rgb(218,37,11)" fg:x="103280" fg:w="30"/><text x="68.6193%" y="831.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.3891%" y="821" width="0.0119%" height="15" fill="rgb(251,226,25)" fg:x="103310" fg:w="18"/><text x="68.6391%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="68.3891%" y="805" width="0.0119%" height="15" fill="rgb(209,222,27)" fg:x="103310" fg:w="18"/><text x="68.6391%" y="815.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4110%" y="757" width="0.0106%" height="15" fill="rgb(238,22,21)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.4110%" y="741" width="0.0106%" height="15" fill="rgb(233,161,25)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="751.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4110%" y="725" width="0.0106%" height="15" fill="rgb(226,122,53)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="735.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4110%" y="709" width="0.0106%" height="15" fill="rgb(220,123,17)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="719.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="68.4110%" y="693" width="0.0106%" height="15" fill="rgb(230,224,35)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="703.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="68.4110%" y="677" width="0.0106%" height="15" fill="rgb(246,83,8)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="687.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4110%" y="661" width="0.0106%" height="15" fill="rgb(230,214,17)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.4110%" y="645" width="0.0106%" height="15" fill="rgb(222,97,18)" fg:x="103343" fg:w="16"/><text x="68.6610%" y="655.50"></text></g><g><title>PyObject_Call (25 samples, 0.02%)</title><rect x="68.4229%" y="165" width="0.0165%" height="15" fill="rgb(206,79,1)" fg:x="103361" fg:w="25"/><text x="68.6729%" y="175.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.4229%" y="149" width="0.0165%" height="15" fill="rgb(214,121,34)" fg:x="103361" fg:w="25"/><text x="68.6729%" y="159.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.4229%" y="133" width="0.0165%" height="15" fill="rgb(249,199,46)" fg:x="103361" fg:w="25"/><text x="68.6729%" y="143.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.4229%" y="117" width="0.0165%" height="15" fill="rgb(214,222,46)" fg:x="103361" fg:w="25"/><text x="68.6729%" y="127.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4262%" y="101" width="0.0132%" height="15" fill="rgb(248,168,30)" fg:x="103366" fg:w="20"/><text x="68.6762%" y="111.50"></text></g><g><title>[python3.9] (31 samples, 0.02%)</title><rect x="68.4222%" y="261" width="0.0205%" height="15" fill="rgb(226,14,28)" fg:x="103360" fg:w="31"/><text x="68.6722%" y="271.50"></text></g><g><title>_PyObject_MakeTpCall (30 samples, 0.02%)</title><rect x="68.4229%" y="245" width="0.0199%" height="15" fill="rgb(253,123,1)" fg:x="103361" fg:w="30"/><text x="68.6729%" y="255.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="68.4229%" y="229" width="0.0199%" height="15" fill="rgb(225,24,42)" fg:x="103361" fg:w="30"/><text x="68.6729%" y="239.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="68.4229%" y="213" width="0.0199%" height="15" fill="rgb(216,161,37)" fg:x="103361" fg:w="30"/><text x="68.6729%" y="223.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="68.4229%" y="197" width="0.0199%" height="15" fill="rgb(251,164,26)" fg:x="103361" fg:w="30"/><text x="68.6729%" y="207.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="68.4229%" y="181" width="0.0199%" height="15" fill="rgb(219,177,3)" fg:x="103361" fg:w="30"/><text x="68.6729%" y="191.50"></text></g><g><title>PyImport_ImportModuleLevelObject (35 samples, 0.02%)</title><rect x="68.4216%" y="597" width="0.0232%" height="15" fill="rgb(222,65,0)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="607.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (35 samples, 0.02%)</title><rect x="68.4216%" y="581" width="0.0232%" height="15" fill="rgb(223,69,54)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="591.50"></text></g><g><title>[python3.9] (35 samples, 0.02%)</title><rect x="68.4216%" y="565" width="0.0232%" height="15" fill="rgb(235,30,27)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.02%)</title><rect x="68.4216%" y="549" width="0.0232%" height="15" fill="rgb(220,183,50)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (35 samples, 0.02%)</title><rect x="68.4216%" y="533" width="0.0232%" height="15" fill="rgb(248,198,15)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.02%)</title><rect x="68.4216%" y="517" width="0.0232%" height="15" fill="rgb(222,211,4)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (35 samples, 0.02%)</title><rect x="68.4216%" y="501" width="0.0232%" height="15" fill="rgb(214,102,34)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (35 samples, 0.02%)</title><rect x="68.4216%" y="485" width="0.0232%" height="15" fill="rgb(245,92,5)" fg:x="103359" fg:w="35"/><text x="68.6716%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.4222%" y="469" width="0.0225%" height="15" fill="rgb(252,72,51)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.4222%" y="453" width="0.0225%" height="15" fill="rgb(252,208,19)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.4222%" y="437" width="0.0225%" height="15" fill="rgb(211,69,7)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="447.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.4222%" y="421" width="0.0225%" height="15" fill="rgb(211,27,16)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="431.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4222%" y="405" width="0.0225%" height="15" fill="rgb(219,216,14)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="415.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.4222%" y="389" width="0.0225%" height="15" fill="rgb(219,71,8)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="399.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4222%" y="373" width="0.0225%" height="15" fill="rgb(223,170,53)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="383.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4222%" y="357" width="0.0225%" height="15" fill="rgb(246,21,26)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="367.50"></text></g><g><title>PyEval_EvalCode (34 samples, 0.02%)</title><rect x="68.4222%" y="341" width="0.0225%" height="15" fill="rgb(248,20,46)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="351.50"></text></g><g><title>_PyEval_EvalCodeWithName (34 samples, 0.02%)</title><rect x="68.4222%" y="325" width="0.0225%" height="15" fill="rgb(252,94,11)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="335.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4222%" y="309" width="0.0225%" height="15" fill="rgb(236,163,8)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="319.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.4222%" y="293" width="0.0225%" height="15" fill="rgb(217,221,45)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="303.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4222%" y="277" width="0.0225%" height="15" fill="rgb(238,38,17)" fg:x="103360" fg:w="34"/><text x="68.6722%" y="287.50"></text></g><g><title>_PyFunction_Vectorcall (87 samples, 0.06%)</title><rect x="68.3891%" y="837" width="0.0576%" height="15" fill="rgb(242,210,23)" fg:x="103310" fg:w="87"/><text x="68.6391%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (69 samples, 0.05%)</title><rect x="68.4011%" y="821" width="0.0457%" height="15" fill="rgb(250,86,53)" fg:x="103328" fg:w="69"/><text x="68.6511%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (69 samples, 0.05%)</title><rect x="68.4011%" y="805" width="0.0457%" height="15" fill="rgb(223,168,25)" fg:x="103328" fg:w="69"/><text x="68.6511%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (54 samples, 0.04%)</title><rect x="68.4110%" y="789" width="0.0357%" height="15" fill="rgb(251,189,4)" fg:x="103343" fg:w="54"/><text x="68.6610%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.04%)</title><rect x="68.4110%" y="773" width="0.0357%" height="15" fill="rgb(245,19,28)" fg:x="103343" fg:w="54"/><text x="68.6610%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.4216%" y="757" width="0.0252%" height="15" fill="rgb(207,10,34)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.4216%" y="741" width="0.0252%" height="15" fill="rgb(235,153,31)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="751.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.4216%" y="725" width="0.0252%" height="15" fill="rgb(228,72,37)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.4216%" y="709" width="0.0252%" height="15" fill="rgb(215,15,16)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="719.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.4216%" y="693" width="0.0252%" height="15" fill="rgb(250,119,29)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="703.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.4216%" y="677" width="0.0252%" height="15" fill="rgb(214,59,1)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="687.50"></text></g><g><title>PyEval_EvalCode (38 samples, 0.03%)</title><rect x="68.4216%" y="661" width="0.0252%" height="15" fill="rgb(223,109,25)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="671.50"></text></g><g><title>_PyEval_EvalCodeWithName (38 samples, 0.03%)</title><rect x="68.4216%" y="645" width="0.0252%" height="15" fill="rgb(230,198,22)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="655.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.4216%" y="629" width="0.0252%" height="15" fill="rgb(245,184,46)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.4216%" y="613" width="0.0252%" height="15" fill="rgb(253,73,16)" fg:x="103359" fg:w="38"/><text x="68.6716%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (167 samples, 0.11%)</title><rect x="68.3382%" y="853" width="0.1106%" height="15" fill="rgb(206,94,45)" fg:x="103233" fg:w="167"/><text x="68.5882%" y="863.50"></text></g><g><title>PyImport_ImportModuleLevelObject (17 samples, 0.01%)</title><rect x="68.4606%" y="613" width="0.0113%" height="15" fill="rgb(236,83,27)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="623.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (17 samples, 0.01%)</title><rect x="68.4606%" y="597" width="0.0113%" height="15" fill="rgb(220,196,8)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="607.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.4606%" y="581" width="0.0113%" height="15" fill="rgb(254,185,14)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4606%" y="565" width="0.0113%" height="15" fill="rgb(226,50,22)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4606%" y="549" width="0.0113%" height="15" fill="rgb(253,147,0)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4606%" y="533" width="0.0113%" height="15" fill="rgb(252,46,33)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.4606%" y="517" width="0.0113%" height="15" fill="rgb(242,22,54)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="68.4606%" y="501" width="0.0113%" height="15" fill="rgb(223,178,32)" fg:x="103418" fg:w="17"/><text x="68.7106%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.4613%" y="485" width="0.0106%" height="15" fill="rgb(214,106,53)" fg:x="103419" fg:w="16"/><text x="68.7113%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.4613%" y="469" width="0.0106%" height="15" fill="rgb(232,65,50)" fg:x="103419" fg:w="16"/><text x="68.7113%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="68.4613%" y="453" width="0.0106%" height="15" fill="rgb(231,110,28)" fg:x="103419" fg:w="16"/><text x="68.7113%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="68.4613%" y="437" width="0.0106%" height="15" fill="rgb(216,71,40)" fg:x="103419" fg:w="16"/><text x="68.7113%" y="447.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4606%" y="741" width="0.0126%" height="15" fill="rgb(229,89,53)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.4606%" y="725" width="0.0126%" height="15" fill="rgb(210,124,14)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="735.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4606%" y="709" width="0.0126%" height="15" fill="rgb(236,213,6)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="719.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4606%" y="693" width="0.0126%" height="15" fill="rgb(228,41,5)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="703.50"></text></g><g><title>PyEval_EvalCode (19 samples, 0.01%)</title><rect x="68.4606%" y="677" width="0.0126%" height="15" fill="rgb(221,167,25)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="687.50"></text></g><g><title>_PyEval_EvalCodeWithName (19 samples, 0.01%)</title><rect x="68.4606%" y="661" width="0.0126%" height="15" fill="rgb(228,144,37)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="671.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.4606%" y="645" width="0.0126%" height="15" fill="rgb(227,189,38)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.4606%" y="629" width="0.0126%" height="15" fill="rgb(218,8,2)" fg:x="103418" fg:w="19"/><text x="68.7106%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (46 samples, 0.03%)</title><rect x="68.4487%" y="853" width="0.0305%" height="15" fill="rgb(209,61,28)" fg:x="103400" fg:w="46"/><text x="68.6987%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="68.4553%" y="837" width="0.0238%" height="15" fill="rgb(233,140,39)" fg:x="103410" fg:w="36"/><text x="68.7053%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="68.4553%" y="821" width="0.0238%" height="15" fill="rgb(251,66,48)" fg:x="103410" fg:w="36"/><text x="68.7053%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4573%" y="805" width="0.0218%" height="15" fill="rgb(210,44,45)" fg:x="103413" fg:w="33"/><text x="68.7073%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.4573%" y="789" width="0.0218%" height="15" fill="rgb(214,136,46)" fg:x="103413" fg:w="33"/><text x="68.7073%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.02%)</title><rect x="68.4606%" y="773" width="0.0185%" height="15" fill="rgb(207,130,50)" fg:x="103418" fg:w="28"/><text x="68.7106%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.02%)</title><rect x="68.4606%" y="757" width="0.0185%" height="15" fill="rgb(228,102,49)" fg:x="103418" fg:w="28"/><text x="68.7106%" y="767.50"></text></g><g><title>PyImport_ImportModuleLevelObject (31 samples, 0.02%)</title><rect x="68.4798%" y="549" width="0.0205%" height="15" fill="rgb(253,55,1)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="559.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (31 samples, 0.02%)</title><rect x="68.4798%" y="533" width="0.0205%" height="15" fill="rgb(238,222,9)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="543.50"></text></g><g><title>[python3.9] (31 samples, 0.02%)</title><rect x="68.4798%" y="517" width="0.0205%" height="15" fill="rgb(246,99,6)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.4798%" y="501" width="0.0205%" height="15" fill="rgb(219,110,26)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.4798%" y="485" width="0.0205%" height="15" fill="rgb(239,160,33)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.4798%" y="469" width="0.0205%" height="15" fill="rgb(220,202,23)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="68.4798%" y="453" width="0.0205%" height="15" fill="rgb(208,80,26)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="68.4798%" y="437" width="0.0205%" height="15" fill="rgb(243,85,7)" fg:x="103447" fg:w="31"/><text x="68.7298%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.4825%" y="421" width="0.0179%" height="15" fill="rgb(228,77,47)" fg:x="103451" fg:w="27"/><text x="68.7325%" y="431.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.4825%" y="405" width="0.0179%" height="15" fill="rgb(212,226,8)" fg:x="103451" fg:w="27"/><text x="68.7325%" y="415.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.4825%" y="389" width="0.0179%" height="15" fill="rgb(241,120,54)" fg:x="103451" fg:w="27"/><text x="68.7325%" y="399.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="68.4825%" y="373" width="0.0179%" height="15" fill="rgb(226,80,16)" fg:x="103451" fg:w="27"/><text x="68.7325%" y="383.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.4871%" y="357" width="0.0132%" height="15" fill="rgb(240,76,13)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="367.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="68.4871%" y="341" width="0.0132%" height="15" fill="rgb(252,74,8)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="351.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="325" width="0.0132%" height="15" fill="rgb(244,155,2)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="335.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.4871%" y="309" width="0.0132%" height="15" fill="rgb(215,81,35)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="319.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="293" width="0.0132%" height="15" fill="rgb(206,55,2)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="303.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="277" width="0.0132%" height="15" fill="rgb(231,2,34)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="287.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="261" width="0.0132%" height="15" fill="rgb(242,176,48)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="271.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="245" width="0.0132%" height="15" fill="rgb(249,31,36)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="255.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="229" width="0.0132%" height="15" fill="rgb(205,18,17)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="239.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="213" width="0.0132%" height="15" fill="rgb(254,130,5)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="223.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.4871%" y="197" width="0.0132%" height="15" fill="rgb(229,42,45)" fg:x="103458" fg:w="20"/><text x="68.7371%" y="207.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.4898%" y="181" width="0.0106%" height="15" fill="rgb(245,95,25)" fg:x="103462" fg:w="16"/><text x="68.7398%" y="191.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (34 samples, 0.02%)</title><rect x="68.4792%" y="853" width="0.0225%" height="15" fill="rgb(249,193,38)" fg:x="103446" fg:w="34"/><text x="68.7292%" y="863.50"></text></g><g><title>[python3.9] (34 samples, 0.02%)</title><rect x="68.4792%" y="837" width="0.0225%" height="15" fill="rgb(241,140,43)" fg:x="103446" fg:w="34"/><text x="68.7292%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.4792%" y="821" width="0.0225%" height="15" fill="rgb(245,78,48)" fg:x="103446" fg:w="34"/><text x="68.7292%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="805" width="0.0218%" height="15" fill="rgb(214,92,39)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.4798%" y="789" width="0.0218%" height="15" fill="rgb(211,189,14)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="773" width="0.0218%" height="15" fill="rgb(218,7,24)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.4798%" y="757" width="0.0218%" height="15" fill="rgb(224,200,49)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="741" width="0.0218%" height="15" fill="rgb(218,210,14)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.4798%" y="725" width="0.0218%" height="15" fill="rgb(234,142,31)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="709" width="0.0218%" height="15" fill="rgb(227,165,2)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.02%)</title><rect x="68.4798%" y="693" width="0.0218%" height="15" fill="rgb(232,44,46)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="703.50"></text></g><g><title>[python3.9] (33 samples, 0.02%)</title><rect x="68.4798%" y="677" width="0.0218%" height="15" fill="rgb(236,149,47)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="661" width="0.0218%" height="15" fill="rgb(227,45,31)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="671.50"></text></g><g><title>[python3.9] (33 samples, 0.02%)</title><rect x="68.4798%" y="645" width="0.0218%" height="15" fill="rgb(240,176,51)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="655.50"></text></g><g><title>[python3.9] (33 samples, 0.02%)</title><rect x="68.4798%" y="629" width="0.0218%" height="15" fill="rgb(249,146,41)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="639.50"></text></g><g><title>PyEval_EvalCode (33 samples, 0.02%)</title><rect x="68.4798%" y="613" width="0.0218%" height="15" fill="rgb(213,208,4)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="623.50"></text></g><g><title>_PyEval_EvalCodeWithName (33 samples, 0.02%)</title><rect x="68.4798%" y="597" width="0.0218%" height="15" fill="rgb(245,84,36)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="607.50"></text></g><g><title>[python3.9] (33 samples, 0.02%)</title><rect x="68.4798%" y="581" width="0.0218%" height="15" fill="rgb(254,84,18)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.02%)</title><rect x="68.4798%" y="565" width="0.0218%" height="15" fill="rgb(225,38,54)" fg:x="103447" fg:w="33"/><text x="68.7298%" y="575.50"></text></g><g><title>[unknown] (454 samples, 0.30%)</title><rect x="68.2091%" y="869" width="0.3005%" height="15" fill="rgb(246,50,30)" fg:x="103038" fg:w="454"/><text x="68.4591%" y="879.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.5123%" y="453" width="0.0126%" height="15" fill="rgb(246,148,9)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="463.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.5123%" y="437" width="0.0126%" height="15" fill="rgb(223,75,4)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="447.50"></text></g><g><title>PyEval_EvalCode (19 samples, 0.01%)</title><rect x="68.5123%" y="421" width="0.0126%" height="15" fill="rgb(239,148,41)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="431.50"></text></g><g><title>_PyEval_EvalCodeWithName (19 samples, 0.01%)</title><rect x="68.5123%" y="405" width="0.0126%" height="15" fill="rgb(205,195,3)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="415.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="68.5123%" y="389" width="0.0126%" height="15" fill="rgb(254,161,1)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="399.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="68.5123%" y="373" width="0.0126%" height="15" fill="rgb(211,229,8)" fg:x="103496" fg:w="19"/><text x="68.7623%" y="383.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="68.5123%" y="485" width="0.0132%" height="15" fill="rgb(220,97,9)" fg:x="103496" fg:w="20"/><text x="68.7623%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="68.5123%" y="469" width="0.0132%" height="15" fill="rgb(240,218,8)" fg:x="103496" fg:w="20"/><text x="68.7623%" y="479.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="68.5103%" y="677" width="0.0172%" height="15" fill="rgb(250,44,0)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="687.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="68.5103%" y="661" width="0.0172%" height="15" fill="rgb(236,41,53)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="671.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="68.5103%" y="645" width="0.0172%" height="15" fill="rgb(218,227,13)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.5103%" y="629" width="0.0172%" height="15" fill="rgb(217,94,32)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.5103%" y="613" width="0.0172%" height="15" fill="rgb(213,217,12)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.5103%" y="597" width="0.0172%" height="15" fill="rgb(229,13,46)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="68.5103%" y="581" width="0.0172%" height="15" fill="rgb(243,139,5)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.5103%" y="565" width="0.0172%" height="15" fill="rgb(249,38,45)" fg:x="103493" fg:w="26"/><text x="68.7603%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.5123%" y="549" width="0.0152%" height="15" fill="rgb(216,70,11)" fg:x="103496" fg:w="23"/><text x="68.7623%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.5123%" y="533" width="0.0152%" height="15" fill="rgb(253,101,25)" fg:x="103496" fg:w="23"/><text x="68.7623%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="68.5123%" y="517" width="0.0152%" height="15" fill="rgb(207,197,30)" fg:x="103496" fg:w="23"/><text x="68.7623%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="68.5123%" y="501" width="0.0152%" height="15" fill="rgb(238,87,13)" fg:x="103496" fg:w="23"/><text x="68.7623%" y="511.50"></text></g><g><title>PyRun_SimpleStringFlags (27 samples, 0.02%)</title><rect x="68.5103%" y="805" width="0.0179%" height="15" fill="rgb(215,155,8)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="815.50"></text></g><g><title>PyRun_StringFlags (27 samples, 0.02%)</title><rect x="68.5103%" y="789" width="0.0179%" height="15" fill="rgb(239,166,38)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="799.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.5103%" y="773" width="0.0179%" height="15" fill="rgb(240,194,35)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="783.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.5103%" y="757" width="0.0179%" height="15" fill="rgb(219,10,44)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="767.50"></text></g><g><title>PyEval_EvalCode (27 samples, 0.02%)</title><rect x="68.5103%" y="741" width="0.0179%" height="15" fill="rgb(251,220,35)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="751.50"></text></g><g><title>_PyEval_EvalCodeWithName (27 samples, 0.02%)</title><rect x="68.5103%" y="725" width="0.0179%" height="15" fill="rgb(218,117,13)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="735.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="68.5103%" y="709" width="0.0179%" height="15" fill="rgb(221,213,40)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (27 samples, 0.02%)</title><rect x="68.5103%" y="693" width="0.0179%" height="15" fill="rgb(251,224,35)" fg:x="103493" fg:w="27"/><text x="68.7603%" y="703.50"></text></g><g><title>PyGC_Collect (23 samples, 0.02%)</title><rect x="68.5282%" y="789" width="0.0152%" height="15" fill="rgb(241,33,39)" fg:x="103520" fg:w="23"/><text x="68.7782%" y="799.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.5282%" y="773" width="0.0152%" height="15" fill="rgb(222,74,17)" fg:x="103520" fg:w="23"/><text x="68.7782%" y="783.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.5282%" y="757" width="0.0152%" height="15" fill="rgb(225,103,0)" fg:x="103520" fg:w="23"/><text x="68.7782%" y="767.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.5321%" y="741" width="0.0113%" height="15" fill="rgb(240,0,12)" fg:x="103526" fg:w="17"/><text x="68.7821%" y="751.50"></text></g><g><title>_PyGC_CollectNoFail (32 samples, 0.02%)</title><rect x="68.5460%" y="773" width="0.0212%" height="15" fill="rgb(233,213,37)" fg:x="103547" fg:w="32"/><text x="68.7960%" y="783.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="68.5460%" y="757" width="0.0212%" height="15" fill="rgb(225,84,52)" fg:x="103547" fg:w="32"/><text x="68.7960%" y="767.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="68.5507%" y="741" width="0.0165%" height="15" fill="rgb(247,160,51)" fg:x="103554" fg:w="25"/><text x="68.8007%" y="751.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.5447%" y="789" width="0.0252%" height="15" fill="rgb(244,60,51)" fg:x="103545" fg:w="38"/><text x="68.7947%" y="799.50"></text></g><g><title>Py_RunMain (106 samples, 0.07%)</title><rect x="68.5103%" y="821" width="0.0702%" height="15" fill="rgb(233,114,7)" fg:x="103493" fg:w="106"/><text x="68.7603%" y="831.50"></text></g><g><title>Py_FinalizeEx (79 samples, 0.05%)</title><rect x="68.5282%" y="805" width="0.0523%" height="15" fill="rgb(246,136,16)" fg:x="103520" fg:w="79"/><text x="68.7782%" y="815.50"></text></g><g><title>_PyGC_CollectNoFail (16 samples, 0.01%)</title><rect x="68.5699%" y="789" width="0.0106%" height="15" fill="rgb(243,114,45)" fg:x="103583" fg:w="16"/><text x="68.8199%" y="799.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="68.5699%" y="773" width="0.0106%" height="15" fill="rgb(247,183,43)" fg:x="103583" fg:w="16"/><text x="68.8199%" y="783.50"></text></g><g><title>[python3.9] (22 samples, 0.01%)</title><rect x="68.5944%" y="453" width="0.0146%" height="15" fill="rgb(251,210,42)" fg:x="103620" fg:w="22"/><text x="68.8444%" y="463.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="68.5944%" y="437" width="0.0146%" height="15" fill="rgb(221,88,35)" fg:x="103620" fg:w="22"/><text x="68.8444%" y="447.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="68.5950%" y="421" width="0.0139%" height="15" fill="rgb(242,21,20)" fg:x="103621" fg:w="21"/><text x="68.8450%" y="431.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.5977%" y="405" width="0.0113%" height="15" fill="rgb(233,226,36)" fg:x="103625" fg:w="17"/><text x="68.8477%" y="415.50"></text></g><g><title>PyEval_EvalCode (17 samples, 0.01%)</title><rect x="68.5977%" y="389" width="0.0113%" height="15" fill="rgb(243,189,34)" fg:x="103625" fg:w="17"/><text x="68.8477%" y="399.50"></text></g><g><title>_PyEval_EvalCodeWithName (17 samples, 0.01%)</title><rect x="68.5977%" y="373" width="0.0113%" height="15" fill="rgb(207,145,50)" fg:x="103625" fg:w="17"/><text x="68.8477%" y="383.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="68.5977%" y="357" width="0.0113%" height="15" fill="rgb(242,1,50)" fg:x="103625" fg:w="17"/><text x="68.8477%" y="367.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="68.5977%" y="341" width="0.0113%" height="15" fill="rgb(231,65,32)" fg:x="103625" fg:w="17"/><text x="68.8477%" y="351.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="68.5944%" y="469" width="0.0172%" height="15" fill="rgb(208,68,49)" fg:x="103620" fg:w="26"/><text x="68.8444%" y="479.50"></text></g><g><title>PyImport_ImportModule (38 samples, 0.03%)</title><rect x="68.5871%" y="741" width="0.0252%" height="15" fill="rgb(253,54,49)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="751.50"></text></g><g><title>PyImport_Import (38 samples, 0.03%)</title><rect x="68.5871%" y="725" width="0.0252%" height="15" fill="rgb(245,186,24)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="735.50"></text></g><g><title>PyObject_CallFunction (38 samples, 0.03%)</title><rect x="68.5871%" y="709" width="0.0252%" height="15" fill="rgb(209,2,41)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="719.50"></text></g><g><title>_PyObject_MakeTpCall (38 samples, 0.03%)</title><rect x="68.5871%" y="693" width="0.0252%" height="15" fill="rgb(242,208,54)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="703.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.5871%" y="677" width="0.0252%" height="15" fill="rgb(225,9,51)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="687.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.5871%" y="661" width="0.0252%" height="15" fill="rgb(207,207,25)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="671.50"></text></g><g><title>PyImport_ImportModuleLevelObject (38 samples, 0.03%)</title><rect x="68.5871%" y="645" width="0.0252%" height="15" fill="rgb(253,96,18)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="655.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (38 samples, 0.03%)</title><rect x="68.5871%" y="629" width="0.0252%" height="15" fill="rgb(252,215,20)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="639.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="68.5871%" y="613" width="0.0252%" height="15" fill="rgb(245,227,26)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="68.5871%" y="597" width="0.0252%" height="15" fill="rgb(241,208,0)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="68.5871%" y="581" width="0.0252%" height="15" fill="rgb(224,130,10)" fg:x="103609" fg:w="38"/><text x="68.8371%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="68.5884%" y="565" width="0.0238%" height="15" fill="rgb(237,29,0)" fg:x="103611" fg:w="36"/><text x="68.8384%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="68.5884%" y="549" width="0.0238%" height="15" fill="rgb(219,27,41)" fg:x="103611" fg:w="36"/><text x="68.8384%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="68.5884%" y="533" width="0.0238%" height="15" fill="rgb(245,101,19)" fg:x="103611" fg:w="36"/><text x="68.8384%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.5897%" y="517" width="0.0225%" height="15" fill="rgb(243,44,37)" fg:x="103613" fg:w="34"/><text x="68.8397%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="68.5897%" y="501" width="0.0225%" height="15" fill="rgb(228,213,43)" fg:x="103613" fg:w="34"/><text x="68.8397%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (34 samples, 0.02%)</title><rect x="68.5897%" y="485" width="0.0225%" height="15" fill="rgb(219,163,21)" fg:x="103613" fg:w="34"/><text x="68.8397%" y="495.50"></text></g><g><title>PyObject_CallMethod (24 samples, 0.02%)</title><rect x="68.6122%" y="741" width="0.0159%" height="15" fill="rgb(234,86,24)" fg:x="103647" fg:w="24"/><text x="68.8622%" y="751.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="68.6122%" y="725" width="0.0159%" height="15" fill="rgb(225,10,24)" fg:x="103647" fg:w="24"/><text x="68.8622%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="68.6122%" y="709" width="0.0159%" height="15" fill="rgb(218,109,7)" fg:x="103647" fg:w="24"/><text x="68.8622%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="68.6122%" y="693" width="0.0159%" height="15" fill="rgb(210,20,26)" fg:x="103647" fg:w="24"/><text x="68.8622%" y="703.50"></text></g><g><title>_PyCodec_Lookup (18 samples, 0.01%)</title><rect x="68.6407%" y="725" width="0.0119%" height="15" fill="rgb(216,18,1)" fg:x="103690" fg:w="18"/><text x="68.8907%" y="735.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="68.6407%" y="709" width="0.0119%" height="15" fill="rgb(206,163,23)" fg:x="103690" fg:w="18"/><text x="68.8907%" y="719.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="68.6387%" y="741" width="0.0152%" height="15" fill="rgb(229,150,31)" fg:x="103687" fg:w="23"/><text x="68.8887%" y="751.50"></text></g><g><title>Py_InitializeFromConfig (113 samples, 0.07%)</title><rect x="68.5805%" y="789" width="0.0748%" height="15" fill="rgb(231,10,5)" fg:x="103599" fg:w="113"/><text x="68.8305%" y="799.50"></text></g><g><title>[python3.9] (113 samples, 0.07%)</title><rect x="68.5805%" y="773" width="0.0748%" height="15" fill="rgb(250,40,50)" fg:x="103599" fg:w="113"/><text x="68.8305%" y="783.50"></text></g><g><title>[python3.9] (113 samples, 0.07%)</title><rect x="68.5805%" y="757" width="0.0748%" height="15" fill="rgb(217,119,7)" fg:x="103599" fg:w="113"/><text x="68.8305%" y="767.50"></text></g><g><title>Py_BytesMain (222 samples, 0.15%)</title><rect x="68.5103%" y="837" width="0.1470%" height="15" fill="rgb(245,214,40)" fg:x="103493" fg:w="222"/><text x="68.7603%" y="847.50"></text></g><g><title>[python3.9] (116 samples, 0.08%)</title><rect x="68.5805%" y="821" width="0.0768%" height="15" fill="rgb(216,187,1)" fg:x="103599" fg:w="116"/><text x="68.8305%" y="831.50"></text></g><g><title>[python3.9] (116 samples, 0.08%)</title><rect x="68.5805%" y="805" width="0.0768%" height="15" fill="rgb(237,146,21)" fg:x="103599" fg:w="116"/><text x="68.8305%" y="815.50"></text></g><g><title>__libc_start_main (223 samples, 0.15%)</title><rect x="68.5103%" y="853" width="0.1476%" height="15" fill="rgb(210,174,47)" fg:x="103493" fg:w="223"/><text x="68.7603%" y="863.50"></text></g><g><title>_start (233 samples, 0.15%)</title><rect x="68.5103%" y="869" width="0.1542%" height="15" fill="rgb(218,111,39)" fg:x="103493" fg:w="233"/><text x="68.7603%" y="879.50"></text></g><g><title>python3 (743 samples, 0.49%)</title><rect x="68.1813%" y="885" width="0.4919%" height="15" fill="rgb(224,95,19)" fg:x="102996" fg:w="743"/><text x="68.4313%" y="895.50"></text></g><g><title>[sed] (16 samples, 0.01%)</title><rect x="68.6738%" y="821" width="0.0106%" height="15" fill="rgb(234,15,38)" fg:x="103740" fg:w="16"/><text x="68.9238%" y="831.50"></text></g><g><title>[sed] (18 samples, 0.01%)</title><rect x="68.6731%" y="869" width="0.0119%" height="15" fill="rgb(246,56,12)" fg:x="103739" fg:w="18"/><text x="68.9231%" y="879.50"></text></g><g><title>__libc_start_main (18 samples, 0.01%)</title><rect x="68.6731%" y="853" width="0.0119%" height="15" fill="rgb(247,16,17)" fg:x="103739" fg:w="18"/><text x="68.9231%" y="863.50"></text></g><g><title>[sed] (18 samples, 0.01%)</title><rect x="68.6731%" y="837" width="0.0119%" height="15" fill="rgb(215,151,11)" fg:x="103739" fg:w="18"/><text x="68.9231%" y="847.50"></text></g><g><title>_dl_map_object_deps (22 samples, 0.01%)</title><rect x="68.6996%" y="789" width="0.0146%" height="15" fill="rgb(225,16,24)" fg:x="103779" fg:w="22"/><text x="68.9496%" y="799.50"></text></g><g><title>_dl_catch_exception (22 samples, 0.01%)</title><rect x="68.6996%" y="773" width="0.0146%" height="15" fill="rgb(217,117,5)" fg:x="103779" fg:w="22"/><text x="68.9496%" y="783.50"></text></g><g><title>openaux (22 samples, 0.01%)</title><rect x="68.6996%" y="757" width="0.0146%" height="15" fill="rgb(246,187,53)" fg:x="103779" fg:w="22"/><text x="68.9496%" y="767.50"></text></g><g><title>_dl_map_object (22 samples, 0.01%)</title><rect x="68.6996%" y="741" width="0.0146%" height="15" fill="rgb(241,71,40)" fg:x="103779" fg:w="22"/><text x="68.9496%" y="751.50"></text></g><g><title>[ld-2.31.so] (42 samples, 0.03%)</title><rect x="68.6983%" y="805" width="0.0278%" height="15" fill="rgb(231,67,39)" fg:x="103777" fg:w="42"/><text x="68.9483%" y="815.50"></text></g><g><title>_start (43 samples, 0.03%)</title><rect x="68.6983%" y="869" width="0.0285%" height="15" fill="rgb(222,120,24)" fg:x="103777" fg:w="43"/><text x="68.9483%" y="879.50"></text></g><g><title>_dl_start (43 samples, 0.03%)</title><rect x="68.6983%" y="853" width="0.0285%" height="15" fill="rgb(248,3,3)" fg:x="103777" fg:w="43"/><text x="68.9483%" y="863.50"></text></g><g><title>_dl_start_final (43 samples, 0.03%)</title><rect x="68.6983%" y="837" width="0.0285%" height="15" fill="rgb(228,218,5)" fg:x="103777" fg:w="43"/><text x="68.9483%" y="847.50"></text></g><g><title>_dl_sysdep_start (43 samples, 0.03%)</title><rect x="68.6983%" y="821" width="0.0285%" height="15" fill="rgb(212,202,43)" fg:x="103777" fg:w="43"/><text x="68.9483%" y="831.50"></text></g><g><title>sed (95 samples, 0.06%)</title><rect x="68.6731%" y="885" width="0.0629%" height="15" fill="rgb(235,183,2)" fg:x="103739" fg:w="95"/><text x="68.9231%" y="895.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (16 samples, 0.01%)</title><rect x="68.7493%" y="853" width="0.0106%" height="15" fill="rgb(230,165,10)" fg:x="103854" fg:w="16"/><text x="68.9993%" y="863.50"></text></g><g><title>[anon] (381 samples, 0.25%)</title><rect x="68.7486%" y="869" width="0.2522%" height="15" fill="rgb(219,54,40)" fg:x="103853" fg:w="381"/><text x="68.9986%" y="879.50"></text></g><g><title>__GI___close_nocancel (17 samples, 0.01%)</title><rect x="69.0458%" y="853" width="0.0113%" height="15" fill="rgb(244,73,9)" fg:x="104302" fg:w="17"/><text x="69.2958%" y="863.50"></text></g><g><title>link_path_walk.part.0 (28 samples, 0.02%)</title><rect x="69.0710%" y="741" width="0.0185%" height="15" fill="rgb(212,32,45)" fg:x="104340" fg:w="28"/><text x="69.3210%" y="751.50"></text></g><g><title>path_lookupat (47 samples, 0.03%)</title><rect x="69.0677%" y="757" width="0.0311%" height="15" fill="rgb(205,58,31)" fg:x="104335" fg:w="47"/><text x="69.3177%" y="767.50"></text></g><g><title>filename_lookup (50 samples, 0.03%)</title><rect x="69.0670%" y="773" width="0.0331%" height="15" fill="rgb(250,120,43)" fg:x="104334" fg:w="50"/><text x="69.3170%" y="783.50"></text></g><g><title>__do_sys_newlstat (67 samples, 0.04%)</title><rect x="69.0657%" y="805" width="0.0444%" height="15" fill="rgb(235,13,10)" fg:x="104332" fg:w="67"/><text x="69.3157%" y="815.50"></text></g><g><title>vfs_statx (66 samples, 0.04%)</title><rect x="69.0663%" y="789" width="0.0437%" height="15" fill="rgb(232,219,31)" fg:x="104333" fg:w="66"/><text x="69.3163%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.05%)</title><rect x="69.0650%" y="837" width="0.0463%" height="15" fill="rgb(218,157,51)" fg:x="104331" fg:w="70"/><text x="69.3150%" y="847.50"></text></g><g><title>do_syscall_64 (69 samples, 0.05%)</title><rect x="69.0657%" y="821" width="0.0457%" height="15" fill="rgb(211,91,52)" fg:x="104332" fg:w="69"/><text x="69.3157%" y="831.50"></text></g><g><title>__GI___lxstat (72 samples, 0.05%)</title><rect x="69.0644%" y="853" width="0.0477%" height="15" fill="rgb(240,173,1)" fg:x="104330" fg:w="72"/><text x="69.3144%" y="863.50"></text></g><g><title>btrfs_lookup_dir_item (18 samples, 0.01%)</title><rect x="69.1160%" y="725" width="0.0119%" height="15" fill="rgb(248,20,47)" fg:x="104408" fg:w="18"/><text x="69.3660%" y="735.50"></text></g><g><title>btrfs_search_slot (17 samples, 0.01%)</title><rect x="69.1167%" y="709" width="0.0113%" height="15" fill="rgb(217,221,40)" fg:x="104409" fg:w="17"/><text x="69.3667%" y="719.50"></text></g><g><title>btrfs_lookup (22 samples, 0.01%)</title><rect x="69.1147%" y="757" width="0.0146%" height="15" fill="rgb(226,149,51)" fg:x="104406" fg:w="22"/><text x="69.3647%" y="767.50"></text></g><g><title>btrfs_lookup_dentry (22 samples, 0.01%)</title><rect x="69.1147%" y="741" width="0.0146%" height="15" fill="rgb(252,193,7)" fg:x="104406" fg:w="22"/><text x="69.3647%" y="751.50"></text></g><g><title>__lookup_hash (27 samples, 0.02%)</title><rect x="69.1147%" y="773" width="0.0179%" height="15" fill="rgb(205,123,0)" fg:x="104406" fg:w="27"/><text x="69.3647%" y="783.50"></text></g><g><title>filename_create (48 samples, 0.03%)</title><rect x="69.1140%" y="789" width="0.0318%" height="15" fill="rgb(233,173,25)" fg:x="104405" fg:w="48"/><text x="69.3640%" y="799.50"></text></g><g><title>filename_parentat (20 samples, 0.01%)</title><rect x="69.1325%" y="773" width="0.0132%" height="15" fill="rgb(216,63,32)" fg:x="104433" fg:w="20"/><text x="69.3825%" y="783.50"></text></g><g><title>path_parentat (20 samples, 0.01%)</title><rect x="69.1325%" y="757" width="0.0132%" height="15" fill="rgb(209,56,45)" fg:x="104433" fg:w="20"/><text x="69.3825%" y="767.50"></text></g><g><title>link_path_walk.part.0 (17 samples, 0.01%)</title><rect x="69.1345%" y="741" width="0.0113%" height="15" fill="rgb(226,111,49)" fg:x="104436" fg:w="17"/><text x="69.3845%" y="751.50"></text></g><g><title>insert_with_overflow (33 samples, 0.02%)</title><rect x="69.1590%" y="725" width="0.0218%" height="15" fill="rgb(244,181,21)" fg:x="104473" fg:w="33"/><text x="69.4090%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (32 samples, 0.02%)</title><rect x="69.1597%" y="709" width="0.0212%" height="15" fill="rgb(222,126,15)" fg:x="104474" fg:w="32"/><text x="69.4097%" y="719.50"></text></g><g><title>setup_items_for_insert (18 samples, 0.01%)</title><rect x="69.1690%" y="693" width="0.0119%" height="15" fill="rgb(222,95,17)" fg:x="104488" fg:w="18"/><text x="69.4190%" y="703.50"></text></g><g><title>btrfs_insert_dir_item (47 samples, 0.03%)</title><rect x="69.1517%" y="741" width="0.0311%" height="15" fill="rgb(254,46,5)" fg:x="104462" fg:w="47"/><text x="69.4017%" y="751.50"></text></g><g><title>btrfs_add_link (49 samples, 0.03%)</title><rect x="69.1517%" y="757" width="0.0324%" height="15" fill="rgb(236,216,35)" fg:x="104462" fg:w="49"/><text x="69.4017%" y="767.50"></text></g><g><title>btrfs_search_slot (16 samples, 0.01%)</title><rect x="69.1895%" y="725" width="0.0106%" height="15" fill="rgb(217,187,26)" fg:x="104519" fg:w="16"/><text x="69.4395%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (26 samples, 0.02%)</title><rect x="69.1895%" y="741" width="0.0172%" height="15" fill="rgb(207,192,25)" fg:x="104519" fg:w="26"/><text x="69.4395%" y="751.50"></text></g><g><title>btrfs_new_inode (52 samples, 0.03%)</title><rect x="69.1875%" y="757" width="0.0344%" height="15" fill="rgb(253,135,27)" fg:x="104516" fg:w="52"/><text x="69.4375%" y="767.50"></text></g><g><title>btrfs_mkdir (129 samples, 0.09%)</title><rect x="69.1491%" y="773" width="0.0854%" height="15" fill="rgb(211,122,29)" fg:x="104458" fg:w="129"/><text x="69.3991%" y="783.50"></text></g><g><title>do_mkdirat (184 samples, 0.12%)</title><rect x="69.1133%" y="805" width="0.1218%" height="15" fill="rgb(233,162,40)" fg:x="104404" fg:w="184"/><text x="69.3633%" y="815.50"></text></g><g><title>vfs_mkdir (131 samples, 0.09%)</title><rect x="69.1484%" y="789" width="0.0867%" height="15" fill="rgb(222,184,47)" fg:x="104457" fg:w="131"/><text x="69.3984%" y="799.50"></text></g><g><title>__GI___mkdir (187 samples, 0.12%)</title><rect x="69.1120%" y="853" width="0.1238%" height="15" fill="rgb(249,99,23)" fg:x="104402" fg:w="187"/><text x="69.3620%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (186 samples, 0.12%)</title><rect x="69.1127%" y="837" width="0.1231%" height="15" fill="rgb(214,60,12)" fg:x="104403" fg:w="186"/><text x="69.3627%" y="847.50"></text></g><g><title>do_syscall_64 (186 samples, 0.12%)</title><rect x="69.1127%" y="821" width="0.1231%" height="15" fill="rgb(250,229,36)" fg:x="104403" fg:w="186"/><text x="69.3627%" y="831.50"></text></g><g><title>read_block_for_search.isra.0 (17 samples, 0.01%)</title><rect x="69.2861%" y="725" width="0.0113%" height="15" fill="rgb(232,195,10)" fg:x="104665" fg:w="17"/><text x="69.5361%" y="735.50"></text></g><g><title>btrfs_search_slot (43 samples, 0.03%)</title><rect x="69.2696%" y="741" width="0.0285%" height="15" fill="rgb(205,213,31)" fg:x="104640" fg:w="43"/><text x="69.5196%" y="751.50"></text></g><g><title>btrfs_real_readdir (100 samples, 0.07%)</title><rect x="69.2438%" y="757" width="0.0662%" height="15" fill="rgb(237,43,8)" fg:x="104601" fg:w="100"/><text x="69.4938%" y="767.50"></text></g><g><title>iterate_dir (121 samples, 0.08%)</title><rect x="69.2424%" y="773" width="0.0801%" height="15" fill="rgb(216,208,3)" fg:x="104599" fg:w="121"/><text x="69.4924%" y="783.50"></text></g><g><title>touch_atime (16 samples, 0.01%)</title><rect x="69.3119%" y="757" width="0.0106%" height="15" fill="rgb(228,179,44)" fg:x="104704" fg:w="16"/><text x="69.5619%" y="767.50"></text></g><g><title>btrfs_dirty_inode (16 samples, 0.01%)</title><rect x="69.3119%" y="741" width="0.0106%" height="15" fill="rgb(230,192,27)" fg:x="104704" fg:w="16"/><text x="69.5619%" y="751.50"></text></g><g><title>__x64_sys_getdents64 (126 samples, 0.08%)</title><rect x="69.2398%" y="789" width="0.0834%" height="15" fill="rgb(251,30,38)" fg:x="104595" fg:w="126"/><text x="69.4898%" y="799.50"></text></g><g><title>do_syscall_64 (127 samples, 0.08%)</title><rect x="69.2398%" y="805" width="0.0841%" height="15" fill="rgb(246,55,52)" fg:x="104595" fg:w="127"/><text x="69.4898%" y="815.50"></text></g><g><title>__GI___readdir64 (134 samples, 0.09%)</title><rect x="69.2358%" y="853" width="0.0887%" height="15" fill="rgb(249,79,26)" fg:x="104589" fg:w="134"/><text x="69.4858%" y="863.50"></text></g><g><title>__GI___getdents64 (128 samples, 0.08%)</title><rect x="69.2398%" y="837" width="0.0847%" height="15" fill="rgb(220,202,16)" fg:x="104595" fg:w="128"/><text x="69.4898%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (128 samples, 0.08%)</title><rect x="69.2398%" y="821" width="0.0847%" height="15" fill="rgb(250,170,23)" fg:x="104595" fg:w="128"/><text x="69.4898%" y="831.50"></text></g><g><title>link_path_walk.part.0 (18 samples, 0.01%)</title><rect x="69.3305%" y="741" width="0.0119%" height="15" fill="rgb(230,7,37)" fg:x="104732" fg:w="18"/><text x="69.5805%" y="751.50"></text></g><g><title>filename_lookup (24 samples, 0.02%)</title><rect x="69.3298%" y="773" width="0.0159%" height="15" fill="rgb(213,71,1)" fg:x="104731" fg:w="24"/><text x="69.5798%" y="783.50"></text></g><g><title>path_lookupat (23 samples, 0.02%)</title><rect x="69.3305%" y="757" width="0.0152%" height="15" fill="rgb(227,87,39)" fg:x="104732" fg:w="23"/><text x="69.5805%" y="767.50"></text></g><g><title>__GI___xstat (41 samples, 0.03%)</title><rect x="69.3272%" y="853" width="0.0271%" height="15" fill="rgb(210,41,29)" fg:x="104727" fg:w="41"/><text x="69.5772%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="69.3272%" y="837" width="0.0271%" height="15" fill="rgb(206,191,31)" fg:x="104727" fg:w="41"/><text x="69.5772%" y="847.50"></text></g><g><title>do_syscall_64 (40 samples, 0.03%)</title><rect x="69.3278%" y="821" width="0.0265%" height="15" fill="rgb(247,75,54)" fg:x="104728" fg:w="40"/><text x="69.5778%" y="831.50"></text></g><g><title>__do_sys_newstat (40 samples, 0.03%)</title><rect x="69.3278%" y="805" width="0.0265%" height="15" fill="rgb(208,54,50)" fg:x="104728" fg:w="40"/><text x="69.5778%" y="815.50"></text></g><g><title>vfs_statx (37 samples, 0.02%)</title><rect x="69.3298%" y="789" width="0.0245%" height="15" fill="rgb(214,90,37)" fg:x="104731" fg:w="37"/><text x="69.5798%" y="799.50"></text></g><g><title>__GI_remove (16 samples, 0.01%)</title><rect x="69.3543%" y="837" width="0.0106%" height="15" fill="rgb(220,132,6)" fg:x="104768" fg:w="16"/><text x="69.6043%" y="847.50"></text></g><g><title>__GI___rmdir (16 samples, 0.01%)</title><rect x="69.3543%" y="821" width="0.0106%" height="15" fill="rgb(213,167,7)" fg:x="104768" fg:w="16"/><text x="69.6043%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="69.3543%" y="805" width="0.0106%" height="15" fill="rgb(243,36,27)" fg:x="104768" fg:w="16"/><text x="69.6043%" y="815.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="69.3543%" y="789" width="0.0106%" height="15" fill="rgb(235,147,12)" fg:x="104768" fg:w="16"/><text x="69.6043%" y="799.50"></text></g><g><title>__GI_remove (46 samples, 0.03%)</title><rect x="69.3543%" y="853" width="0.0305%" height="15" fill="rgb(212,198,44)" fg:x="104768" fg:w="46"/><text x="69.6043%" y="863.50"></text></g><g><title>__unlink (30 samples, 0.02%)</title><rect x="69.3649%" y="837" width="0.0199%" height="15" fill="rgb(218,68,50)" fg:x="104784" fg:w="30"/><text x="69.6149%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="69.3662%" y="821" width="0.0185%" height="15" fill="rgb(224,79,48)" fg:x="104786" fg:w="28"/><text x="69.6162%" y="831.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="69.3662%" y="805" width="0.0185%" height="15" fill="rgb(213,191,50)" fg:x="104786" fg:w="28"/><text x="69.6162%" y="815.50"></text></g><g><title>do_unlinkat (26 samples, 0.02%)</title><rect x="69.3675%" y="789" width="0.0172%" height="15" fill="rgb(254,146,10)" fg:x="104788" fg:w="26"/><text x="69.6175%" y="799.50"></text></g><g><title>kmem_cache_alloc (24 samples, 0.02%)</title><rect x="69.4040%" y="773" width="0.0159%" height="15" fill="rgb(215,175,11)" fg:x="104843" fg:w="24"/><text x="69.6540%" y="783.50"></text></g><g><title>memset_erms (20 samples, 0.01%)</title><rect x="69.4066%" y="757" width="0.0132%" height="15" fill="rgb(207,49,7)" fg:x="104847" fg:w="20"/><text x="69.6566%" y="767.50"></text></g><g><title>__x64_sys_unlinkat (51 samples, 0.03%)</title><rect x="69.3987%" y="805" width="0.0338%" height="15" fill="rgb(234,144,29)" fg:x="104835" fg:w="51"/><text x="69.6487%" y="815.50"></text></g><g><title>getname_flags.part.0 (47 samples, 0.03%)</title><rect x="69.4013%" y="789" width="0.0311%" height="15" fill="rgb(213,222,48)" fg:x="104839" fg:w="47"/><text x="69.6513%" y="799.50"></text></g><g><title>strncpy_from_user (19 samples, 0.01%)</title><rect x="69.4198%" y="773" width="0.0126%" height="15" fill="rgb(222,8,6)" fg:x="104867" fg:w="19"/><text x="69.6698%" y="783.50"></text></g><g><title>btrfs_del_dir_entries_in_log (17 samples, 0.01%)</title><rect x="69.4437%" y="741" width="0.0113%" height="15" fill="rgb(221,114,49)" fg:x="104903" fg:w="17"/><text x="69.6937%" y="751.50"></text></g><g><title>btrfs_del_items (25 samples, 0.02%)</title><rect x="69.4649%" y="741" width="0.0165%" height="15" fill="rgb(250,140,42)" fg:x="104935" fg:w="25"/><text x="69.7149%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (16 samples, 0.01%)</title><rect x="69.4860%" y="741" width="0.0106%" height="15" fill="rgb(250,150,27)" fg:x="104967" fg:w="16"/><text x="69.7360%" y="751.50"></text></g><g><title>__btrfs_unlink_inode (88 samples, 0.06%)</title><rect x="69.4423%" y="757" width="0.0583%" height="15" fill="rgb(252,159,3)" fg:x="104901" fg:w="88"/><text x="69.6923%" y="767.50"></text></g><g><title>btrfs_insert_empty_items (17 samples, 0.01%)</title><rect x="69.5019%" y="725" width="0.0113%" height="15" fill="rgb(241,182,3)" fg:x="104991" fg:w="17"/><text x="69.7519%" y="735.50"></text></g><g><title>btrfs_orphan_add (21 samples, 0.01%)</title><rect x="69.5006%" y="757" width="0.0139%" height="15" fill="rgb(236,3,9)" fg:x="104989" fg:w="21"/><text x="69.7506%" y="767.50"></text></g><g><title>btrfs_insert_orphan_item (21 samples, 0.01%)</title><rect x="69.5006%" y="741" width="0.0139%" height="15" fill="rgb(223,227,51)" fg:x="104989" fg:w="21"/><text x="69.7506%" y="751.50"></text></g><g><title>btrfs_rmdir (123 samples, 0.08%)</title><rect x="69.4397%" y="773" width="0.0814%" height="15" fill="rgb(232,133,30)" fg:x="104897" fg:w="123"/><text x="69.6897%" y="783.50"></text></g><g><title>btrfs_del_items (22 samples, 0.01%)</title><rect x="69.5344%" y="709" width="0.0146%" height="15" fill="rgb(209,93,27)" fg:x="105040" fg:w="22"/><text x="69.7844%" y="719.50"></text></g><g><title>btrfs_lookup_inode (21 samples, 0.01%)</title><rect x="69.5496%" y="709" width="0.0139%" height="15" fill="rgb(208,108,34)" fg:x="105063" fg:w="21"/><text x="69.7996%" y="719.50"></text></g><g><title>btrfs_search_slot (21 samples, 0.01%)</title><rect x="69.5496%" y="693" width="0.0139%" height="15" fill="rgb(215,189,13)" fg:x="105063" fg:w="21"/><text x="69.7996%" y="703.50"></text></g><g><title>__btrfs_update_delayed_inode (48 samples, 0.03%)</title><rect x="69.5344%" y="725" width="0.0318%" height="15" fill="rgb(206,88,23)" fg:x="105040" fg:w="48"/><text x="69.7844%" y="735.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (51 samples, 0.03%)</title><rect x="69.5344%" y="741" width="0.0338%" height="15" fill="rgb(240,173,0)" fg:x="105040" fg:w="51"/><text x="69.7844%" y="751.50"></text></g><g><title>btrfs_search_slot (19 samples, 0.01%)</title><rect x="69.5694%" y="725" width="0.0126%" height="15" fill="rgb(223,106,52)" fg:x="105093" fg:w="19"/><text x="69.8194%" y="735.50"></text></g><g><title>btrfs_del_orphan_item (23 samples, 0.02%)</title><rect x="69.5681%" y="741" width="0.0152%" height="15" fill="rgb(206,130,16)" fg:x="105091" fg:w="23"/><text x="69.8181%" y="751.50"></text></g><g><title>btrfs_del_items (33 samples, 0.02%)</title><rect x="69.5873%" y="725" width="0.0218%" height="15" fill="rgb(220,54,25)" fg:x="105120" fg:w="33"/><text x="69.8373%" y="735.50"></text></g><g><title>__btrfs_kill_delayed_node (23 samples, 0.02%)</title><rect x="69.6112%" y="709" width="0.0152%" height="15" fill="rgb(210,4,38)" fg:x="105156" fg:w="23"/><text x="69.8612%" y="719.50"></text></g><g><title>btrfs_kill_delayed_inode_items (24 samples, 0.02%)</title><rect x="69.6112%" y="725" width="0.0159%" height="15" fill="rgb(238,94,39)" fg:x="105156" fg:w="24"/><text x="69.8612%" y="735.50"></text></g><g><title>btrfs_search_slot (25 samples, 0.02%)</title><rect x="69.6277%" y="725" width="0.0165%" height="15" fill="rgb(234,124,34)" fg:x="105181" fg:w="25"/><text x="69.8777%" y="735.50"></text></g><g><title>btrfs_truncate_inode_items (98 samples, 0.06%)</title><rect x="69.5833%" y="741" width="0.0649%" height="15" fill="rgb(221,91,40)" fg:x="105114" fg:w="98"/><text x="69.8333%" y="751.50"></text></g><g><title>evict (189 samples, 0.13%)</title><rect x="69.5284%" y="773" width="0.1251%" height="15" fill="rgb(246,53,28)" fg:x="105031" fg:w="189"/><text x="69.7784%" y="783.50"></text></g><g><title>btrfs_evict_inode (188 samples, 0.12%)</title><rect x="69.5291%" y="757" width="0.1245%" height="15" fill="rgb(229,109,7)" fg:x="105032" fg:w="188"/><text x="69.7791%" y="767.50"></text></g><g><title>d_walk (20 samples, 0.01%)</title><rect x="69.6535%" y="757" width="0.0132%" height="15" fill="rgb(249,117,8)" fg:x="105220" fg:w="20"/><text x="69.9035%" y="767.50"></text></g><g><title>___d_drop (17 samples, 0.01%)</title><rect x="69.6681%" y="725" width="0.0113%" height="15" fill="rgb(210,181,1)" fg:x="105242" fg:w="17"/><text x="69.9181%" y="735.50"></text></g><g><title>__dentry_kill (29 samples, 0.02%)</title><rect x="69.6681%" y="741" width="0.0192%" height="15" fill="rgb(211,66,1)" fg:x="105242" fg:w="29"/><text x="69.9181%" y="751.50"></text></g><g><title>do_rmdir (396 samples, 0.26%)</title><rect x="69.4324%" y="805" width="0.2621%" height="15" fill="rgb(221,90,14)" fg:x="104886" fg:w="396"/><text x="69.6824%" y="815.50"></text></g><g><title>vfs_rmdir.part.0 (385 samples, 0.25%)</title><rect x="69.4397%" y="789" width="0.2549%" height="15" fill="rgb(219,222,44)" fg:x="104897" fg:w="385"/><text x="69.6897%" y="799.50"></text></g><g><title>shrink_dcache_parent (62 samples, 0.04%)</title><rect x="69.6535%" y="773" width="0.0410%" height="15" fill="rgb(246,34,33)" fg:x="105220" fg:w="62"/><text x="69.9035%" y="783.50"></text></g><g><title>shrink_dentry_list (42 samples, 0.03%)</title><rect x="69.6668%" y="757" width="0.0278%" height="15" fill="rgb(227,135,41)" fg:x="105240" fg:w="42"/><text x="69.9168%" y="767.50"></text></g><g><title>__lookup_hash (51 samples, 0.03%)</title><rect x="69.6979%" y="789" width="0.0338%" height="15" fill="rgb(226,15,14)" fg:x="105287" fg:w="51"/><text x="69.9479%" y="799.50"></text></g><g><title>lookup_dcache (51 samples, 0.03%)</title><rect x="69.6979%" y="773" width="0.0338%" height="15" fill="rgb(236,148,47)" fg:x="105287" fg:w="51"/><text x="69.9479%" y="783.50"></text></g><g><title>d_lookup (51 samples, 0.03%)</title><rect x="69.6979%" y="757" width="0.0338%" height="15" fill="rgb(233,162,52)" fg:x="105287" fg:w="51"/><text x="69.9479%" y="767.50"></text></g><g><title>__d_lookup (51 samples, 0.03%)</title><rect x="69.6979%" y="741" width="0.0338%" height="15" fill="rgb(244,35,28)" fg:x="105287" fg:w="51"/><text x="69.9479%" y="751.50"></text></g><g><title>alloc_extent_map (18 samples, 0.01%)</title><rect x="69.7515%" y="741" width="0.0119%" height="15" fill="rgb(205,121,10)" fg:x="105368" fg:w="18"/><text x="70.0015%" y="751.50"></text></g><g><title>kmem_cache_alloc (17 samples, 0.01%)</title><rect x="69.7522%" y="725" width="0.0113%" height="15" fill="rgb(250,58,18)" fg:x="105369" fg:w="17"/><text x="70.0022%" y="735.50"></text></g><g><title>btrfs_drop_extent_cache (36 samples, 0.02%)</title><rect x="69.7488%" y="757" width="0.0238%" height="15" fill="rgb(216,37,13)" fg:x="105364" fg:w="36"/><text x="69.9988%" y="767.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (18 samples, 0.01%)</title><rect x="69.7727%" y="757" width="0.0119%" height="15" fill="rgb(221,215,42)" fg:x="105400" fg:w="18"/><text x="70.0227%" y="767.50"></text></g><g><title>clear_extent_bit (17 samples, 0.01%)</title><rect x="69.7733%" y="741" width="0.0113%" height="15" fill="rgb(217,214,19)" fg:x="105401" fg:w="17"/><text x="70.0233%" y="751.50"></text></g><g><title>__clear_extent_bit (17 samples, 0.01%)</title><rect x="69.7733%" y="725" width="0.0113%" height="15" fill="rgb(233,139,13)" fg:x="105401" fg:w="17"/><text x="70.0233%" y="735.50"></text></g><g><title>clear_record_extent_bits (16 samples, 0.01%)</title><rect x="69.7912%" y="741" width="0.0106%" height="15" fill="rgb(247,168,23)" fg:x="105428" fg:w="16"/><text x="70.0412%" y="751.50"></text></g><g><title>__clear_extent_bit (16 samples, 0.01%)</title><rect x="69.7912%" y="725" width="0.0106%" height="15" fill="rgb(207,202,1)" fg:x="105428" fg:w="16"/><text x="70.0412%" y="735.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (18 samples, 0.01%)</title><rect x="69.7905%" y="757" width="0.0119%" height="15" fill="rgb(220,155,48)" fg:x="105427" fg:w="18"/><text x="70.0405%" y="767.50"></text></g><g><title>btrfs_destroy_inode (105 samples, 0.07%)</title><rect x="69.7455%" y="773" width="0.0695%" height="15" fill="rgb(250,43,26)" fg:x="105359" fg:w="105"/><text x="69.9955%" y="783.50"></text></g><g><title>rb_erase (19 samples, 0.01%)</title><rect x="69.8025%" y="757" width="0.0126%" height="15" fill="rgb(212,190,23)" fg:x="105445" fg:w="19"/><text x="70.0525%" y="767.50"></text></g><g><title>destroy_inode (114 samples, 0.08%)</title><rect x="69.7402%" y="789" width="0.0755%" height="15" fill="rgb(216,39,24)" fg:x="105351" fg:w="114"/><text x="69.9902%" y="799.50"></text></g><g><title>btrfs_trans_release_metadata (19 samples, 0.01%)</title><rect x="69.8574%" y="741" width="0.0126%" height="15" fill="rgb(252,113,16)" fg:x="105528" fg:w="19"/><text x="70.1074%" y="751.50"></text></g><g><title>btrfs_block_rsv_release (18 samples, 0.01%)</title><rect x="69.8581%" y="725" width="0.0119%" height="15" fill="rgb(208,113,19)" fg:x="105529" fg:w="18"/><text x="70.1081%" y="735.50"></text></g><g><title>__btrfs_end_transaction (32 samples, 0.02%)</title><rect x="69.8528%" y="757" width="0.0212%" height="15" fill="rgb(234,107,25)" fg:x="105521" fg:w="32"/><text x="70.1028%" y="767.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (29 samples, 0.02%)</title><rect x="69.8740%" y="757" width="0.0192%" height="15" fill="rgb(234,217,51)" fg:x="105553" fg:w="29"/><text x="70.1240%" y="767.50"></text></g><g><title>btrfs_get_token_32 (76 samples, 0.05%)</title><rect x="69.9395%" y="709" width="0.0503%" height="15" fill="rgb(251,29,42)" fg:x="105652" fg:w="76"/><text x="70.1895%" y="719.50"></text></g><g><title>btrfs_set_token_32 (64 samples, 0.04%)</title><rect x="69.9977%" y="709" width="0.0424%" height="15" fill="rgb(221,62,51)" fg:x="105740" fg:w="64"/><text x="70.2477%" y="719.50"></text></g><g><title>memcpy_extent_buffer (16 samples, 0.01%)</title><rect x="70.0428%" y="709" width="0.0106%" height="15" fill="rgb(240,192,43)" fg:x="105808" fg:w="16"/><text x="70.2928%" y="719.50"></text></g><g><title>memmove_extent_buffer (98 samples, 0.06%)</title><rect x="70.0534%" y="709" width="0.0649%" height="15" fill="rgb(224,157,47)" fg:x="105824" fg:w="98"/><text x="70.3034%" y="719.50"></text></g><g><title>memmove (75 samples, 0.05%)</title><rect x="70.0686%" y="693" width="0.0496%" height="15" fill="rgb(226,84,45)" fg:x="105847" fg:w="75"/><text x="70.3186%" y="703.50"></text></g><g><title>btrfs_del_items (300 samples, 0.20%)</title><rect x="69.9236%" y="725" width="0.1986%" height="15" fill="rgb(208,207,23)" fg:x="105628" fg:w="300"/><text x="70.1736%" y="735.50"></text></g><g><title>btrfs_read_node_slot (24 samples, 0.02%)</title><rect x="70.1527%" y="677" width="0.0159%" height="15" fill="rgb(253,34,51)" fg:x="105974" fg:w="24"/><text x="70.4027%" y="687.50"></text></g><g><title>read_tree_block (18 samples, 0.01%)</title><rect x="70.1566%" y="661" width="0.0119%" height="15" fill="rgb(227,26,34)" fg:x="105980" fg:w="18"/><text x="70.4066%" y="671.50"></text></g><g><title>balance_level (54 samples, 0.04%)</title><rect x="70.1434%" y="693" width="0.0357%" height="15" fill="rgb(245,75,19)" fg:x="105960" fg:w="54"/><text x="70.3934%" y="703.50"></text></g><g><title>find_extent_buffer (36 samples, 0.02%)</title><rect x="70.2122%" y="677" width="0.0238%" height="15" fill="rgb(250,191,31)" fg:x="106064" fg:w="36"/><text x="70.4622%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (58 samples, 0.04%)</title><rect x="70.2023%" y="693" width="0.0384%" height="15" fill="rgb(224,11,50)" fg:x="106049" fg:w="58"/><text x="70.4523%" y="703.50"></text></g><g><title>find_extent_buffer (20 samples, 0.01%)</title><rect x="70.2440%" y="677" width="0.0132%" height="15" fill="rgb(231,171,7)" fg:x="106112" fg:w="20"/><text x="70.4940%" y="687.50"></text></g><g><title>reada_for_balance (32 samples, 0.02%)</title><rect x="70.2407%" y="693" width="0.0212%" height="15" fill="rgb(252,214,10)" fg:x="106107" fg:w="32"/><text x="70.4907%" y="703.50"></text></g><g><title>btrfs_lookup_inode (211 samples, 0.14%)</title><rect x="70.1295%" y="725" width="0.1397%" height="15" fill="rgb(249,45,46)" fg:x="105939" fg:w="211"/><text x="70.3795%" y="735.50"></text></g><g><title>btrfs_search_slot (209 samples, 0.14%)</title><rect x="70.1308%" y="709" width="0.1384%" height="15" fill="rgb(240,173,7)" fg:x="105941" fg:w="209"/><text x="70.3808%" y="719.50"></text></g><g><title>btrfs_release_path (20 samples, 0.01%)</title><rect x="70.2738%" y="725" width="0.0132%" height="15" fill="rgb(235,214,13)" fg:x="106157" fg:w="20"/><text x="70.5238%" y="735.50"></text></g><g><title>__btrfs_update_delayed_inode (574 samples, 0.38%)</title><rect x="69.9203%" y="741" width="0.3800%" height="15" fill="rgb(245,156,8)" fg:x="105623" fg:w="574"/><text x="70.1703%" y="751.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (648 samples, 0.43%)</title><rect x="69.9024%" y="757" width="0.4290%" height="15" fill="rgb(235,46,12)" fg:x="105596" fg:w="648"/><text x="70.1524%" y="767.50"></text></g><g><title>start_transaction (22 samples, 0.01%)</title><rect x="70.3168%" y="741" width="0.0146%" height="15" fill="rgb(221,81,14)" fg:x="106222" fg:w="22"/><text x="70.5668%" y="751.50"></text></g><g><title>btrfs_del_items (19 samples, 0.01%)</title><rect x="70.3334%" y="741" width="0.0126%" height="15" fill="rgb(238,207,9)" fg:x="106247" fg:w="19"/><text x="70.5834%" y="751.50"></text></g><g><title>btrfs_free_path (18 samples, 0.01%)</title><rect x="70.3460%" y="741" width="0.0119%" height="15" fill="rgb(224,129,35)" fg:x="106266" fg:w="18"/><text x="70.5960%" y="751.50"></text></g><g><title>btrfs_release_path (18 samples, 0.01%)</title><rect x="70.3460%" y="725" width="0.0119%" height="15" fill="rgb(243,218,34)" fg:x="106266" fg:w="18"/><text x="70.5960%" y="735.50"></text></g><g><title>btrfs_read_node_slot (20 samples, 0.01%)</title><rect x="70.3824%" y="709" width="0.0132%" height="15" fill="rgb(220,166,13)" fg:x="106321" fg:w="20"/><text x="70.6324%" y="719.50"></text></g><g><title>read_tree_block (16 samples, 0.01%)</title><rect x="70.3850%" y="693" width="0.0106%" height="15" fill="rgb(227,167,49)" fg:x="106325" fg:w="16"/><text x="70.6350%" y="703.50"></text></g><g><title>balance_level (50 samples, 0.03%)</title><rect x="70.3731%" y="725" width="0.0331%" height="15" fill="rgb(234,142,12)" fg:x="106307" fg:w="50"/><text x="70.6231%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (20 samples, 0.01%)</title><rect x="70.4208%" y="725" width="0.0132%" height="15" fill="rgb(207,100,48)" fg:x="106379" fg:w="20"/><text x="70.6708%" y="735.50"></text></g><g><title>find_extent_buffer (30 samples, 0.02%)</title><rect x="70.4459%" y="709" width="0.0199%" height="15" fill="rgb(210,25,14)" fg:x="106417" fg:w="30"/><text x="70.6959%" y="719.50"></text></g><g><title>read_block_for_search.isra.0 (56 samples, 0.04%)</title><rect x="70.4340%" y="725" width="0.0371%" height="15" fill="rgb(246,116,27)" fg:x="106399" fg:w="56"/><text x="70.6840%" y="735.50"></text></g><g><title>find_extent_buffer (21 samples, 0.01%)</title><rect x="70.4731%" y="709" width="0.0139%" height="15" fill="rgb(214,193,42)" fg:x="106458" fg:w="21"/><text x="70.7231%" y="719.50"></text></g><g><title>reada_for_balance (30 samples, 0.02%)</title><rect x="70.4711%" y="725" width="0.0199%" height="15" fill="rgb(214,122,8)" fg:x="106455" fg:w="30"/><text x="70.7211%" y="735.50"></text></g><g><title>btrfs_search_slot (209 samples, 0.14%)</title><rect x="70.3579%" y="741" width="0.1384%" height="15" fill="rgb(244,173,18)" fg:x="106284" fg:w="209"/><text x="70.6079%" y="751.50"></text></g><g><title>btrfs_del_orphan_item (258 samples, 0.17%)</title><rect x="70.3314%" y="757" width="0.1708%" height="15" fill="rgb(232,68,19)" fg:x="106244" fg:w="258"/><text x="70.5814%" y="767.50"></text></g><g><title>clear_state_bit (17 samples, 0.01%)</title><rect x="70.5287%" y="725" width="0.0113%" height="15" fill="rgb(236,224,1)" fg:x="106542" fg:w="17"/><text x="70.7787%" y="735.50"></text></g><g><title>__clear_extent_bit (33 samples, 0.02%)</title><rect x="70.5214%" y="741" width="0.0218%" height="15" fill="rgb(240,11,8)" fg:x="106531" fg:w="33"/><text x="70.7714%" y="751.50"></text></g><g><title>btrfs_free_tree_block (17 samples, 0.01%)</title><rect x="70.5637%" y="709" width="0.0113%" height="15" fill="rgb(244,159,20)" fg:x="106595" fg:w="17"/><text x="70.8137%" y="719.50"></text></g><g><title>btrfs_del_leaf (19 samples, 0.01%)</title><rect x="70.5631%" y="725" width="0.0126%" height="15" fill="rgb(240,223,54)" fg:x="106594" fg:w="19"/><text x="70.8131%" y="735.50"></text></g><g><title>btrfs_get_token_32 (49 samples, 0.03%)</title><rect x="70.5796%" y="725" width="0.0324%" height="15" fill="rgb(237,146,5)" fg:x="106619" fg:w="49"/><text x="70.8296%" y="735.50"></text></g><g><title>btrfs_set_token_32 (74 samples, 0.05%)</title><rect x="70.6180%" y="725" width="0.0490%" height="15" fill="rgb(218,221,32)" fg:x="106677" fg:w="74"/><text x="70.8680%" y="735.50"></text></g><g><title>memmove_extent_buffer (81 samples, 0.05%)</title><rect x="70.6816%" y="725" width="0.0536%" height="15" fill="rgb(244,96,26)" fg:x="106773" fg:w="81"/><text x="70.9316%" y="735.50"></text></g><g><title>memmove (66 samples, 0.04%)</title><rect x="70.6915%" y="709" width="0.0437%" height="15" fill="rgb(245,184,37)" fg:x="106788" fg:w="66"/><text x="70.9415%" y="719.50"></text></g><g><title>push_leaf_left (16 samples, 0.01%)</title><rect x="70.7352%" y="725" width="0.0106%" height="15" fill="rgb(248,91,47)" fg:x="106854" fg:w="16"/><text x="70.9852%" y="735.50"></text></g><g><title>btrfs_del_items (316 samples, 0.21%)</title><rect x="70.5439%" y="741" width="0.2092%" height="15" fill="rgb(243,199,8)" fg:x="106565" fg:w="316"/><text x="70.7939%" y="751.50"></text></g><g><title>alloc_extent_map (20 samples, 0.01%)</title><rect x="70.7537%" y="725" width="0.0132%" height="15" fill="rgb(249,12,15)" fg:x="106882" fg:w="20"/><text x="71.0037%" y="735.50"></text></g><g><title>kmem_cache_alloc (19 samples, 0.01%)</title><rect x="70.7544%" y="709" width="0.0126%" height="15" fill="rgb(245,97,12)" fg:x="106883" fg:w="19"/><text x="71.0044%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (32 samples, 0.02%)</title><rect x="70.7531%" y="741" width="0.0212%" height="15" fill="rgb(244,61,1)" fg:x="106881" fg:w="32"/><text x="71.0031%" y="751.50"></text></g><g><title>btrfs_free_path (23 samples, 0.02%)</title><rect x="70.7743%" y="741" width="0.0152%" height="15" fill="rgb(222,194,10)" fg:x="106913" fg:w="23"/><text x="71.0243%" y="751.50"></text></g><g><title>btrfs_release_path (23 samples, 0.02%)</title><rect x="70.7743%" y="725" width="0.0152%" height="15" fill="rgb(226,178,8)" fg:x="106913" fg:w="23"/><text x="71.0243%" y="735.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (17 samples, 0.01%)</title><rect x="70.7928%" y="741" width="0.0113%" height="15" fill="rgb(241,32,34)" fg:x="106941" fg:w="17"/><text x="71.0428%" y="751.50"></text></g><g><title>clear_extent_bit (16 samples, 0.01%)</title><rect x="70.7934%" y="725" width="0.0106%" height="15" fill="rgb(254,26,6)" fg:x="106942" fg:w="16"/><text x="71.0434%" y="735.50"></text></g><g><title>__clear_extent_bit (16 samples, 0.01%)</title><rect x="70.7934%" y="709" width="0.0106%" height="15" fill="rgb(249,71,11)" fg:x="106942" fg:w="16"/><text x="71.0434%" y="719.50"></text></g><g><title>btrfs_read_node_slot (32 samples, 0.02%)</title><rect x="70.8378%" y="709" width="0.0212%" height="15" fill="rgb(232,170,27)" fg:x="107009" fg:w="32"/><text x="71.0878%" y="719.50"></text></g><g><title>read_tree_block (23 samples, 0.02%)</title><rect x="70.8438%" y="693" width="0.0152%" height="15" fill="rgb(214,223,17)" fg:x="107018" fg:w="23"/><text x="71.0938%" y="703.50"></text></g><g><title>balance_level (60 samples, 0.04%)</title><rect x="70.8272%" y="725" width="0.0397%" height="15" fill="rgb(250,18,15)" fg:x="106993" fg:w="60"/><text x="71.0772%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (35 samples, 0.02%)</title><rect x="70.8848%" y="725" width="0.0232%" height="15" fill="rgb(212,153,51)" fg:x="107080" fg:w="35"/><text x="71.1348%" y="735.50"></text></g><g><title>find_extent_buffer (21 samples, 0.01%)</title><rect x="70.9186%" y="709" width="0.0139%" height="15" fill="rgb(219,194,12)" fg:x="107131" fg:w="21"/><text x="71.1686%" y="719.50"></text></g><g><title>read_block_for_search.isra.0 (43 samples, 0.03%)</title><rect x="70.9080%" y="725" width="0.0285%" height="15" fill="rgb(212,58,17)" fg:x="107115" fg:w="43"/><text x="71.1580%" y="735.50"></text></g><g><title>reada_for_balance (30 samples, 0.02%)</title><rect x="70.9364%" y="725" width="0.0199%" height="15" fill="rgb(254,5,10)" fg:x="107158" fg:w="30"/><text x="71.1864%" y="735.50"></text></g><g><title>btrfs_search_slot (232 samples, 0.15%)</title><rect x="70.8126%" y="741" width="0.1536%" height="15" fill="rgb(246,91,7)" fg:x="106971" fg:w="232"/><text x="71.0626%" y="751.50"></text></g><g><title>lock_extent_bits (23 samples, 0.02%)</title><rect x="70.9762%" y="741" width="0.0152%" height="15" fill="rgb(218,108,49)" fg:x="107218" fg:w="23"/><text x="71.2262%" y="751.50"></text></g><g><title>__set_extent_bit (22 samples, 0.01%)</title><rect x="70.9768%" y="725" width="0.0146%" height="15" fill="rgb(238,123,20)" fg:x="107219" fg:w="22"/><text x="71.2268%" y="735.50"></text></g><g><title>btrfs_truncate_inode_items (734 samples, 0.49%)</title><rect x="70.5081%" y="757" width="0.4859%" height="15" fill="rgb(231,69,23)" fg:x="106511" fg:w="734"/><text x="70.7581%" y="767.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (43 samples, 0.03%)</title><rect x="71.0159%" y="693" width="0.0285%" height="15" fill="rgb(230,209,3)" fg:x="107278" fg:w="43"/><text x="71.2659%" y="703.50"></text></g><g><title>btrfs_reduce_alloc_profile (23 samples, 0.02%)</title><rect x="71.0291%" y="677" width="0.0152%" height="15" fill="rgb(231,19,0)" fg:x="107298" fg:w="23"/><text x="71.2791%" y="687.50"></text></g><g><title>btrfs_block_rsv_refill (83 samples, 0.05%)</title><rect x="71.0040%" y="741" width="0.0549%" height="15" fill="rgb(226,192,25)" fg:x="107260" fg:w="83"/><text x="71.2540%" y="751.50"></text></g><g><title>btrfs_reserve_metadata_bytes (73 samples, 0.05%)</title><rect x="71.0106%" y="725" width="0.0483%" height="15" fill="rgb(223,175,53)" fg:x="107270" fg:w="73"/><text x="71.2606%" y="735.50"></text></g><g><title>__reserve_bytes (71 samples, 0.05%)</title><rect x="71.0119%" y="709" width="0.0470%" height="15" fill="rgb(248,35,51)" fg:x="107272" fg:w="71"/><text x="71.2619%" y="719.50"></text></g><g><title>calc_available_free_space.isra.0 (22 samples, 0.01%)</title><rect x="71.0443%" y="693" width="0.0146%" height="15" fill="rgb(230,37,26)" fg:x="107321" fg:w="22"/><text x="71.2943%" y="703.50"></text></g><g><title>join_transaction (17 samples, 0.01%)</title><rect x="71.0649%" y="725" width="0.0113%" height="15" fill="rgb(206,120,22)" fg:x="107352" fg:w="17"/><text x="71.3149%" y="735.50"></text></g><g><title>evict_refill_and_join (134 samples, 0.09%)</title><rect x="70.9954%" y="757" width="0.0887%" height="15" fill="rgb(207,165,28)" fg:x="107247" fg:w="134"/><text x="71.2454%" y="767.50"></text></g><g><title>start_transaction (38 samples, 0.03%)</title><rect x="71.0589%" y="741" width="0.0252%" height="15" fill="rgb(226,23,46)" fg:x="107343" fg:w="38"/><text x="71.3089%" y="751.50"></text></g><g><title>btrfs_evict_inode (1,897 samples, 1.26%)</title><rect x="69.8475%" y="773" width="1.2558%" height="15" fill="rgb(208,130,44)" fg:x="105513" fg:w="1897"/><text x="70.0975%" y="783.50"></text></g><g><title>evict (1,940 samples, 1.28%)</title><rect x="69.8236%" y="789" width="1.2842%" height="15" fill="rgb(231,67,8)" fg:x="105477" fg:w="1940"/><text x="70.0736%" y="799.50"></text></g><g><title>filename_parentat (38 samples, 0.03%)</title><rect x="71.1079%" y="789" width="0.0252%" height="15" fill="rgb(205,183,22)" fg:x="107417" fg:w="38"/><text x="71.3579%" y="799.50"></text></g><g><title>path_parentat (34 samples, 0.02%)</title><rect x="71.1105%" y="773" width="0.0225%" height="15" fill="rgb(224,47,9)" fg:x="107421" fg:w="34"/><text x="71.3605%" y="783.50"></text></g><g><title>path_init (21 samples, 0.01%)</title><rect x="71.1191%" y="757" width="0.0139%" height="15" fill="rgb(250,183,49)" fg:x="107434" fg:w="21"/><text x="71.3691%" y="767.50"></text></g><g><title>security_path_unlink (18 samples, 0.01%)</title><rect x="71.1536%" y="789" width="0.0119%" height="15" fill="rgb(220,151,39)" fg:x="107486" fg:w="18"/><text x="71.4036%" y="799.50"></text></g><g><title>__btrfs_end_transaction (24 samples, 0.02%)</title><rect x="71.1734%" y="757" width="0.0159%" height="15" fill="rgb(220,118,20)" fg:x="107516" fg:w="24"/><text x="71.4234%" y="767.50"></text></g><g><title>btrfs_free_path (17 samples, 0.01%)</title><rect x="71.2085%" y="725" width="0.0113%" height="15" fill="rgb(231,65,51)" fg:x="107569" fg:w="17"/><text x="71.4585%" y="735.50"></text></g><g><title>btrfs_release_path (17 samples, 0.01%)</title><rect x="71.2085%" y="709" width="0.0113%" height="15" fill="rgb(253,125,37)" fg:x="107569" fg:w="17"/><text x="71.4585%" y="719.50"></text></g><g><title>read_block_for_search.isra.0 (22 samples, 0.01%)</title><rect x="71.2436%" y="693" width="0.0146%" height="15" fill="rgb(232,102,6)" fg:x="107622" fg:w="22"/><text x="71.4936%" y="703.50"></text></g><g><title>btrfs_lookup_dir_index_item (62 samples, 0.04%)</title><rect x="71.2198%" y="725" width="0.0410%" height="15" fill="rgb(251,105,13)" fg:x="107586" fg:w="62"/><text x="71.4698%" y="735.50"></text></g><g><title>btrfs_search_slot (62 samples, 0.04%)</title><rect x="71.2198%" y="709" width="0.0410%" height="15" fill="rgb(222,179,29)" fg:x="107586" fg:w="62"/><text x="71.4698%" y="719.50"></text></g><g><title>find_extent_buffer (19 samples, 0.01%)</title><rect x="71.2913%" y="677" width="0.0126%" height="15" fill="rgb(229,180,53)" fg:x="107694" fg:w="19"/><text x="71.5413%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (28 samples, 0.02%)</title><rect x="71.2860%" y="693" width="0.0185%" height="15" fill="rgb(238,104,13)" fg:x="107686" fg:w="28"/><text x="71.5360%" y="703.50"></text></g><g><title>btrfs_search_slot (73 samples, 0.05%)</title><rect x="71.2615%" y="709" width="0.0483%" height="15" fill="rgb(210,130,5)" fg:x="107649" fg:w="73"/><text x="71.5115%" y="719.50"></text></g><g><title>btrfs_lookup_dir_item (75 samples, 0.05%)</title><rect x="71.2608%" y="725" width="0.0496%" height="15" fill="rgb(233,87,49)" fg:x="107648" fg:w="75"/><text x="71.5108%" y="735.50"></text></g><g><title>btrfs_release_path (16 samples, 0.01%)</title><rect x="71.3105%" y="725" width="0.0106%" height="15" fill="rgb(243,34,9)" fg:x="107723" fg:w="16"/><text x="71.5605%" y="735.50"></text></g><g><title>btrfs_del_dir_entries_in_log (196 samples, 0.13%)</title><rect x="71.2019%" y="741" width="0.1297%" height="15" fill="rgb(235,225,10)" fg:x="107559" fg:w="196"/><text x="71.4519%" y="751.50"></text></g><g><title>btrfs_free_path (27 samples, 0.02%)</title><rect x="71.3349%" y="709" width="0.0179%" height="15" fill="rgb(212,0,30)" fg:x="107760" fg:w="27"/><text x="71.5849%" y="719.50"></text></g><g><title>btrfs_release_path (25 samples, 0.02%)</title><rect x="71.3363%" y="693" width="0.0165%" height="15" fill="rgb(211,177,0)" fg:x="107762" fg:w="25"/><text x="71.5863%" y="703.50"></text></g><g><title>__radix_tree_lookup (19 samples, 0.01%)</title><rect x="71.4243%" y="661" width="0.0126%" height="15" fill="rgb(225,220,11)" fg:x="107895" fg:w="19"/><text x="71.6743%" y="671.50"></text></g><g><title>find_extent_buffer (32 samples, 0.02%)</title><rect x="71.4217%" y="677" width="0.0212%" height="15" fill="rgb(215,10,13)" fg:x="107891" fg:w="32"/><text x="71.6717%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (54 samples, 0.04%)</title><rect x="71.4084%" y="693" width="0.0357%" height="15" fill="rgb(240,177,14)" fg:x="107871" fg:w="54"/><text x="71.6584%" y="703.50"></text></g><g><title>btrfs_search_slot (145 samples, 0.10%)</title><rect x="71.3528%" y="709" width="0.0960%" height="15" fill="rgb(243,7,39)" fg:x="107787" fg:w="145"/><text x="71.6028%" y="719.50"></text></g><g><title>btrfs_del_inode_ref (201 samples, 0.13%)</title><rect x="71.3323%" y="725" width="0.1331%" height="15" fill="rgb(212,99,0)" fg:x="107756" fg:w="201"/><text x="71.5823%" y="735.50"></text></g><g><title>btrfs_del_inode_ref_in_log (219 samples, 0.14%)</title><rect x="71.3316%" y="741" width="0.1450%" height="15" fill="rgb(225,162,48)" fg:x="107755" fg:w="219"/><text x="71.5816%" y="751.50"></text></g><g><title>btrfs_get_token_32 (112 samples, 0.07%)</title><rect x="71.5104%" y="725" width="0.0741%" height="15" fill="rgb(246,16,25)" fg:x="108025" fg:w="112"/><text x="71.7604%" y="735.50"></text></g><g><title>btrfs_set_token_32 (104 samples, 0.07%)</title><rect x="71.5878%" y="725" width="0.0688%" height="15" fill="rgb(220,150,2)" fg:x="108142" fg:w="104"/><text x="71.8378%" y="735.50"></text></g><g><title>check_setget_bounds.isra.0 (25 samples, 0.02%)</title><rect x="71.6401%" y="709" width="0.0165%" height="15" fill="rgb(237,113,11)" fg:x="108221" fg:w="25"/><text x="71.8901%" y="719.50"></text></g><g><title>memcpy_extent_buffer (23 samples, 0.02%)</title><rect x="71.6600%" y="725" width="0.0152%" height="15" fill="rgb(236,70,20)" fg:x="108251" fg:w="23"/><text x="71.9100%" y="735.50"></text></g><g><title>memmove (20 samples, 0.01%)</title><rect x="71.6620%" y="709" width="0.0132%" height="15" fill="rgb(234,94,7)" fg:x="108254" fg:w="20"/><text x="71.9120%" y="719.50"></text></g><g><title>memmove_extent_buffer (72 samples, 0.05%)</title><rect x="71.6752%" y="725" width="0.0477%" height="15" fill="rgb(250,221,0)" fg:x="108274" fg:w="72"/><text x="71.9252%" y="735.50"></text></g><g><title>memmove (61 samples, 0.04%)</title><rect x="71.6825%" y="709" width="0.0404%" height="15" fill="rgb(245,149,46)" fg:x="108285" fg:w="61"/><text x="71.9325%" y="719.50"></text></g><g><title>btrfs_del_items (386 samples, 0.26%)</title><rect x="71.4766%" y="741" width="0.2555%" height="15" fill="rgb(215,37,27)" fg:x="107974" fg:w="386"/><text x="71.7266%" y="751.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (17 samples, 0.01%)</title><rect x="71.7348%" y="725" width="0.0113%" height="15" fill="rgb(232,65,3)" fg:x="108364" fg:w="17"/><text x="71.9848%" y="735.50"></text></g><g><title>btrfs_get_or_create_delayed_node (18 samples, 0.01%)</title><rect x="71.7460%" y="725" width="0.0119%" height="15" fill="rgb(214,2,16)" fg:x="108381" fg:w="18"/><text x="71.9960%" y="735.50"></text></g><g><title>btrfs_get_delayed_node (18 samples, 0.01%)</title><rect x="71.7460%" y="709" width="0.0119%" height="15" fill="rgb(227,131,50)" fg:x="108381" fg:w="18"/><text x="71.9960%" y="719.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (45 samples, 0.03%)</title><rect x="71.7321%" y="741" width="0.0298%" height="15" fill="rgb(247,131,45)" fg:x="108360" fg:w="45"/><text x="71.9821%" y="751.50"></text></g><g><title>__btrfs_add_delayed_item (20 samples, 0.01%)</title><rect x="71.7626%" y="725" width="0.0132%" height="15" fill="rgb(215,97,47)" fg:x="108406" fg:w="20"/><text x="72.0126%" y="735.50"></text></g><g><title>kmem_cache_alloc_trace (17 samples, 0.01%)</title><rect x="71.7977%" y="725" width="0.0113%" height="15" fill="rgb(233,143,12)" fg:x="108459" fg:w="17"/><text x="72.0477%" y="735.50"></text></g><g><title>btrfs_delete_delayed_dir_index (84 samples, 0.06%)</title><rect x="71.7619%" y="741" width="0.0556%" height="15" fill="rgb(222,57,17)" fg:x="108405" fg:w="84"/><text x="72.0119%" y="751.50"></text></g><g><title>btrfs_match_dir_item_name (26 samples, 0.02%)</title><rect x="71.8235%" y="725" width="0.0172%" height="15" fill="rgb(214,119,38)" fg:x="108498" fg:w="26"/><text x="72.0735%" y="735.50"></text></g><g><title>btrfs_read_node_slot (35 samples, 0.02%)</title><rect x="71.8678%" y="693" width="0.0232%" height="15" fill="rgb(217,28,47)" fg:x="108565" fg:w="35"/><text x="72.1178%" y="703.50"></text></g><g><title>read_tree_block (25 samples, 0.02%)</title><rect x="71.8745%" y="677" width="0.0165%" height="15" fill="rgb(231,14,52)" fg:x="108575" fg:w="25"/><text x="72.1245%" y="687.50"></text></g><g><title>balance_level (71 samples, 0.05%)</title><rect x="71.8533%" y="709" width="0.0470%" height="15" fill="rgb(220,158,18)" fg:x="108543" fg:w="71"/><text x="72.1033%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (38 samples, 0.03%)</title><rect x="71.9115%" y="709" width="0.0252%" height="15" fill="rgb(222,143,46)" fg:x="108631" fg:w="38"/><text x="72.1615%" y="719.50"></text></g><g><title>__radix_tree_lookup (20 samples, 0.01%)</title><rect x="71.9479%" y="677" width="0.0132%" height="15" fill="rgb(227,165,5)" fg:x="108686" fg:w="20"/><text x="72.1979%" y="687.50"></text></g><g><title>find_extent_buffer (36 samples, 0.02%)</title><rect x="71.9460%" y="693" width="0.0238%" height="15" fill="rgb(216,222,49)" fg:x="108683" fg:w="36"/><text x="72.1960%" y="703.50"></text></g><g><title>read_block_for_search.isra.0 (57 samples, 0.04%)</title><rect x="71.9367%" y="709" width="0.0377%" height="15" fill="rgb(238,73,39)" fg:x="108669" fg:w="57"/><text x="72.1867%" y="719.50"></text></g><g><title>reada_for_balance (25 samples, 0.02%)</title><rect x="71.9744%" y="709" width="0.0165%" height="15" fill="rgb(252,115,9)" fg:x="108726" fg:w="25"/><text x="72.2244%" y="719.50"></text></g><g><title>btrfs_search_slot (236 samples, 0.16%)</title><rect x="71.8407%" y="725" width="0.1562%" height="15" fill="rgb(238,202,4)" fg:x="108524" fg:w="236"/><text x="72.0907%" y="735.50"></text></g><g><title>btrfs_lookup_dir_item (270 samples, 0.18%)</title><rect x="71.8222%" y="741" width="0.1787%" height="15" fill="rgb(252,153,44)" fg:x="108496" fg:w="270"/><text x="72.0722%" y="751.50"></text></g><g><title>btrfs_release_path (24 samples, 0.02%)</title><rect x="72.0009%" y="741" width="0.0159%" height="15" fill="rgb(235,128,27)" fg:x="108766" fg:w="24"/><text x="72.2509%" y="751.50"></text></g><g><title>btrfs_delayed_update_inode (21 samples, 0.01%)</title><rect x="72.0188%" y="725" width="0.0139%" height="15" fill="rgb(221,121,47)" fg:x="108793" fg:w="21"/><text x="72.2688%" y="735.50"></text></g><g><title>btrfs_update_inode (31 samples, 0.02%)</title><rect x="72.0168%" y="741" width="0.0205%" height="15" fill="rgb(247,211,47)" fg:x="108790" fg:w="31"/><text x="72.2668%" y="751.50"></text></g><g><title>__btrfs_unlink_inode (1,299 samples, 0.86%)</title><rect x="71.1893%" y="757" width="0.8599%" height="15" fill="rgb(252,47,49)" fg:x="107540" fg:w="1299"/><text x="71.4393%" y="767.50"></text></g><g><title>btrfs_free_path (20 samples, 0.01%)</title><rect x="72.0539%" y="725" width="0.0132%" height="15" fill="rgb(219,119,53)" fg:x="108846" fg:w="20"/><text x="72.3039%" y="735.50"></text></g><g><title>btrfs_release_path (20 samples, 0.01%)</title><rect x="72.0539%" y="709" width="0.0132%" height="15" fill="rgb(243,165,53)" fg:x="108846" fg:w="20"/><text x="72.3039%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (25 samples, 0.02%)</title><rect x="72.0929%" y="693" width="0.0165%" height="15" fill="rgb(230,12,35)" fg:x="108905" fg:w="25"/><text x="72.3429%" y="703.50"></text></g><g><title>__radix_tree_lookup (19 samples, 0.01%)</title><rect x="72.1214%" y="661" width="0.0126%" height="15" fill="rgb(239,57,49)" fg:x="108948" fg:w="19"/><text x="72.3714%" y="671.50"></text></g><g><title>find_extent_buffer (36 samples, 0.02%)</title><rect x="72.1187%" y="677" width="0.0238%" height="15" fill="rgb(231,154,7)" fg:x="108944" fg:w="36"/><text x="72.3687%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (58 samples, 0.04%)</title><rect x="72.1095%" y="693" width="0.0384%" height="15" fill="rgb(248,81,34)" fg:x="108930" fg:w="58"/><text x="72.3595%" y="703.50"></text></g><g><title>btrfs_search_slot (127 samples, 0.08%)</title><rect x="72.0678%" y="709" width="0.0841%" height="15" fill="rgb(247,9,5)" fg:x="108867" fg:w="127"/><text x="72.3178%" y="719.50"></text></g><g><title>btrfs_insert_empty_items (159 samples, 0.11%)</title><rect x="72.0671%" y="725" width="0.1053%" height="15" fill="rgb(228,172,27)" fg:x="108866" fg:w="159"/><text x="72.3171%" y="735.50"></text></g><g><title>setup_items_for_insert (31 samples, 0.02%)</title><rect x="72.1518%" y="709" width="0.0205%" height="15" fill="rgb(230,57,44)" fg:x="108994" fg:w="31"/><text x="72.4018%" y="719.50"></text></g><g><title>btrfs_orphan_add (192 samples, 0.13%)</title><rect x="72.0532%" y="757" width="0.1271%" height="15" fill="rgb(249,35,22)" fg:x="108845" fg:w="192"/><text x="72.3032%" y="767.50"></text></g><g><title>btrfs_insert_orphan_item (192 samples, 0.13%)</title><rect x="72.0532%" y="741" width="0.1271%" height="15" fill="rgb(250,137,27)" fg:x="108845" fg:w="192"/><text x="72.3032%" y="751.50"></text></g><g><title>btrfs_delayed_update_inode (23 samples, 0.02%)</title><rect x="72.1916%" y="741" width="0.0152%" height="15" fill="rgb(251,57,31)" fg:x="109054" fg:w="23"/><text x="72.4416%" y="751.50"></text></g><g><title>btrfs_update_inode (35 samples, 0.02%)</title><rect x="72.1882%" y="757" width="0.0232%" height="15" fill="rgb(238,60,0)" fg:x="109049" fg:w="35"/><text x="72.4382%" y="767.50"></text></g><g><title>btrfs_block_rsv_add (36 samples, 0.02%)</title><rect x="72.2174%" y="741" width="0.0238%" height="15" fill="rgb(242,185,39)" fg:x="109093" fg:w="36"/><text x="72.4674%" y="751.50"></text></g><g><title>btrfs_reserve_metadata_bytes (31 samples, 0.02%)</title><rect x="72.2207%" y="725" width="0.0205%" height="15" fill="rgb(240,63,43)" fg:x="109098" fg:w="31"/><text x="72.4707%" y="735.50"></text></g><g><title>__reserve_bytes (29 samples, 0.02%)</title><rect x="72.2220%" y="709" width="0.0192%" height="15" fill="rgb(236,155,6)" fg:x="109100" fg:w="29"/><text x="72.4720%" y="719.50"></text></g><g><title>btrfs_unlink (1,631 samples, 1.08%)</title><rect x="71.1734%" y="773" width="1.0797%" height="15" fill="rgb(215,11,29)" fg:x="107516" fg:w="1631"/><text x="71.4234%" y="783.50"></text></g><g><title>start_transaction (63 samples, 0.04%)</title><rect x="72.2114%" y="757" width="0.0417%" height="15" fill="rgb(228,180,48)" fg:x="109084" fg:w="63"/><text x="72.4614%" y="767.50"></text></g><g><title>do_syscall_64 (4,357 samples, 2.88%)</title><rect x="69.3980%" y="821" width="2.8842%" height="15" fill="rgb(241,102,12)" fg:x="104834" fg:w="4357"/><text x="69.6480%" y="831.50">do..</text></g><g><title>do_unlinkat (3,909 samples, 2.59%)</title><rect x="69.6946%" y="805" width="2.5877%" height="15" fill="rgb(246,213,4)" fg:x="105282" fg:w="3909"/><text x="69.9446%" y="815.50">do..</text></g><g><title>vfs_unlink (1,685 samples, 1.12%)</title><rect x="71.1668%" y="789" width="1.1154%" height="15" fill="rgb(218,134,35)" fg:x="107506" fg:w="1685"/><text x="71.4168%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,365 samples, 2.89%)</title><rect x="69.3953%" y="837" width="2.8895%" height="15" fill="rgb(251,117,35)" fg:x="104830" fg:w="4365"/><text x="69.6453%" y="847.50">en..</text></g><g><title>__GI_unlinkat (4,386 samples, 2.90%)</title><rect x="69.3848%" y="853" width="2.9034%" height="15" fill="rgb(206,156,45)" fg:x="104814" fg:w="4386"/><text x="69.6348%" y="863.50">__..</text></g><g><title>__fdopendir (20 samples, 0.01%)</title><rect x="72.2935%" y="853" width="0.0132%" height="15" fill="rgb(218,52,27)" fg:x="109208" fg:w="20"/><text x="72.5435%" y="863.50"></text></g><g><title>btrfs_create (23 samples, 0.02%)</title><rect x="72.3074%" y="741" width="0.0152%" height="15" fill="rgb(238,83,36)" fg:x="109229" fg:w="23"/><text x="72.5574%" y="751.50"></text></g><g><title>do_filp_open (26 samples, 0.02%)</title><rect x="72.3067%" y="773" width="0.0172%" height="15" fill="rgb(218,53,43)" fg:x="109228" fg:w="26"/><text x="72.5567%" y="783.50"></text></g><g><title>path_openat (26 samples, 0.02%)</title><rect x="72.3067%" y="757" width="0.0172%" height="15" fill="rgb(239,54,39)" fg:x="109228" fg:w="26"/><text x="72.5567%" y="767.50"></text></g><g><title>__libc_open64 (27 samples, 0.02%)</title><rect x="72.3067%" y="853" width="0.0179%" height="15" fill="rgb(212,198,13)" fg:x="109228" fg:w="27"/><text x="72.5567%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="72.3067%" y="837" width="0.0179%" height="15" fill="rgb(234,54,46)" fg:x="109228" fg:w="27"/><text x="72.5567%" y="847.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="72.3067%" y="821" width="0.0179%" height="15" fill="rgb(217,120,7)" fg:x="109228" fg:w="27"/><text x="72.5567%" y="831.50"></text></g><g><title>__x64_sys_openat (27 samples, 0.02%)</title><rect x="72.3067%" y="805" width="0.0179%" height="15" fill="rgb(246,39,15)" fg:x="109228" fg:w="27"/><text x="72.5567%" y="815.50"></text></g><g><title>do_sys_openat2 (27 samples, 0.02%)</title><rect x="72.3067%" y="789" width="0.0179%" height="15" fill="rgb(242,143,31)" fg:x="109228" fg:w="27"/><text x="72.5567%" y="799.50"></text></g><g><title>do_filp_open (24 samples, 0.02%)</title><rect x="72.3253%" y="773" width="0.0159%" height="15" fill="rgb(252,60,24)" fg:x="109256" fg:w="24"/><text x="72.5753%" y="783.50"></text></g><g><title>path_openat (24 samples, 0.02%)</title><rect x="72.3253%" y="757" width="0.0159%" height="15" fill="rgb(249,220,7)" fg:x="109256" fg:w="24"/><text x="72.5753%" y="767.50"></text></g><g><title>do_syscall_64 (29 samples, 0.02%)</title><rect x="72.3246%" y="821" width="0.0192%" height="15" fill="rgb(236,67,13)" fg:x="109255" fg:w="29"/><text x="72.5746%" y="831.50"></text></g><g><title>__x64_sys_openat (29 samples, 0.02%)</title><rect x="72.3246%" y="805" width="0.0192%" height="15" fill="rgb(210,62,39)" fg:x="109255" fg:w="29"/><text x="72.5746%" y="815.50"></text></g><g><title>do_sys_openat2 (29 samples, 0.02%)</title><rect x="72.3246%" y="789" width="0.0192%" height="15" fill="rgb(219,122,53)" fg:x="109255" fg:w="29"/><text x="72.5746%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="72.3246%" y="837" width="0.0205%" height="15" fill="rgb(218,87,25)" fg:x="109255" fg:w="31"/><text x="72.5746%" y="847.50"></text></g><g><title>__libc_openat64 (32 samples, 0.02%)</title><rect x="72.3246%" y="853" width="0.0212%" height="15" fill="rgb(234,179,48)" fg:x="109255" fg:w="32"/><text x="72.5746%" y="863.50"></text></g><g><title>do_filp_open (21 samples, 0.01%)</title><rect x="72.3544%" y="757" width="0.0139%" height="15" fill="rgb(248,90,0)" fg:x="109300" fg:w="21"/><text x="72.6044%" y="767.50"></text></g><g><title>path_openat (21 samples, 0.01%)</title><rect x="72.3544%" y="741" width="0.0139%" height="15" fill="rgb(207,228,37)" fg:x="109300" fg:w="21"/><text x="72.6044%" y="751.50"></text></g><g><title>__opendir (24 samples, 0.02%)</title><rect x="72.3537%" y="853" width="0.0159%" height="15" fill="rgb(235,214,15)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="863.50"></text></g><g><title>__GI___open64_nocancel (24 samples, 0.02%)</title><rect x="72.3537%" y="837" width="0.0159%" height="15" fill="rgb(210,144,39)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="72.3537%" y="821" width="0.0159%" height="15" fill="rgb(222,67,41)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="831.50"></text></g><g><title>do_syscall_64 (24 samples, 0.02%)</title><rect x="72.3537%" y="805" width="0.0159%" height="15" fill="rgb(205,35,37)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="815.50"></text></g><g><title>__x64_sys_openat (24 samples, 0.02%)</title><rect x="72.3537%" y="789" width="0.0159%" height="15" fill="rgb(216,125,40)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="799.50"></text></g><g><title>do_sys_openat2 (24 samples, 0.02%)</title><rect x="72.3537%" y="773" width="0.0159%" height="15" fill="rgb(228,227,20)" fg:x="109299" fg:w="24"/><text x="72.6037%" y="783.50"></text></g><g><title>d_lru_add (19 samples, 0.01%)</title><rect x="72.3901%" y="773" width="0.0126%" height="15" fill="rgb(242,173,45)" fg:x="109354" fg:w="19"/><text x="72.6401%" y="783.50"></text></g><g><title>list_lru_add (19 samples, 0.01%)</title><rect x="72.3901%" y="757" width="0.0126%" height="15" fill="rgb(215,79,24)" fg:x="109354" fg:w="19"/><text x="72.6401%" y="767.50"></text></g><g><title>dput (27 samples, 0.02%)</title><rect x="72.3888%" y="789" width="0.0179%" height="15" fill="rgb(238,164,38)" fg:x="109352" fg:w="27"/><text x="72.6388%" y="799.50"></text></g><g><title>btrfs_free_path (27 samples, 0.02%)</title><rect x="72.4100%" y="725" width="0.0179%" height="15" fill="rgb(245,196,38)" fg:x="109384" fg:w="27"/><text x="72.6600%" y="735.50"></text></g><g><title>btrfs_release_path (26 samples, 0.02%)</title><rect x="72.4107%" y="709" width="0.0172%" height="15" fill="rgb(231,217,29)" fg:x="109385" fg:w="26"/><text x="72.6607%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (49 samples, 0.03%)</title><rect x="72.4636%" y="693" width="0.0324%" height="15" fill="rgb(245,6,4)" fg:x="109465" fg:w="49"/><text x="72.7136%" y="703.50"></text></g><g><title>__radix_tree_lookup (25 samples, 0.02%)</title><rect x="72.5133%" y="661" width="0.0165%" height="15" fill="rgb(214,76,49)" fg:x="109540" fg:w="25"/><text x="72.7633%" y="671.50"></text></g><g><title>find_extent_buffer (55 samples, 0.04%)</title><rect x="72.5053%" y="677" width="0.0364%" height="15" fill="rgb(205,96,12)" fg:x="109528" fg:w="55"/><text x="72.7553%" y="687.50"></text></g><g><title>mark_extent_buffer_accessed (18 samples, 0.01%)</title><rect x="72.5298%" y="661" width="0.0119%" height="15" fill="rgb(243,131,4)" fg:x="109565" fg:w="18"/><text x="72.7798%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (83 samples, 0.05%)</title><rect x="72.4961%" y="693" width="0.0549%" height="15" fill="rgb(214,114,4)" fg:x="109514" fg:w="83"/><text x="72.7461%" y="703.50"></text></g><g><title>btrfs_search_slot (190 samples, 0.13%)</title><rect x="72.4292%" y="709" width="0.1258%" height="15" fill="rgb(234,215,15)" fg:x="109413" fg:w="190"/><text x="72.6792%" y="719.50"></text></g><g><title>btrfs_lookup_dir_item (196 samples, 0.13%)</title><rect x="72.4279%" y="725" width="0.1297%" height="15" fill="rgb(250,216,45)" fg:x="109411" fg:w="196"/><text x="72.6779%" y="735.50"></text></g><g><title>btrfs_lookup (243 samples, 0.16%)</title><rect x="72.4087%" y="757" width="0.1609%" height="15" fill="rgb(236,128,4)" fg:x="109382" fg:w="243"/><text x="72.6587%" y="767.50"></text></g><g><title>btrfs_lookup_dentry (242 samples, 0.16%)</title><rect x="72.4093%" y="741" width="0.1602%" height="15" fill="rgb(234,50,33)" fg:x="109383" fg:w="242"/><text x="72.6593%" y="751.50"></text></g><g><title>kmem_cache_alloc (41 samples, 0.03%)</title><rect x="72.5729%" y="725" width="0.0271%" height="15" fill="rgb(253,131,37)" fg:x="109630" fg:w="41"/><text x="72.8229%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (18 samples, 0.01%)</title><rect x="72.5881%" y="709" width="0.0119%" height="15" fill="rgb(218,55,27)" fg:x="109653" fg:w="18"/><text x="72.8381%" y="719.50"></text></g><g><title>__d_alloc (45 samples, 0.03%)</title><rect x="72.5709%" y="741" width="0.0298%" height="15" fill="rgb(241,220,28)" fg:x="109627" fg:w="45"/><text x="72.8209%" y="751.50"></text></g><g><title>d_alloc (48 samples, 0.03%)</title><rect x="72.5695%" y="757" width="0.0318%" height="15" fill="rgb(241,90,48)" fg:x="109625" fg:w="48"/><text x="72.8195%" y="767.50"></text></g><g><title>__lookup_hash (310 samples, 0.21%)</title><rect x="72.4080%" y="773" width="0.2052%" height="15" fill="rgb(216,43,37)" fg:x="109381" fg:w="310"/><text x="72.6580%" y="783.50"></text></g><g><title>complete_walk (17 samples, 0.01%)</title><rect x="72.6192%" y="741" width="0.0113%" height="15" fill="rgb(207,173,9)" fg:x="109700" fg:w="17"/><text x="72.8692%" y="751.50"></text></g><g><title>try_to_unlazy (17 samples, 0.01%)</title><rect x="72.6192%" y="725" width="0.0113%" height="15" fill="rgb(240,126,30)" fg:x="109700" fg:w="17"/><text x="72.8692%" y="735.50"></text></g><g><title>inode_permission.part.0 (46 samples, 0.03%)</title><rect x="72.6569%" y="725" width="0.0305%" height="15" fill="rgb(228,178,53)" fg:x="109757" fg:w="46"/><text x="72.9069%" y="735.50"></text></g><g><title>lookup_fast (94 samples, 0.06%)</title><rect x="72.7006%" y="709" width="0.0622%" height="15" fill="rgb(217,33,4)" fg:x="109823" fg:w="94"/><text x="72.9506%" y="719.50"></text></g><g><title>__d_lookup_rcu (85 samples, 0.06%)</title><rect x="72.7066%" y="693" width="0.0563%" height="15" fill="rgb(206,124,34)" fg:x="109832" fg:w="85"/><text x="72.9566%" y="703.50"></text></g><g><title>link_path_walk.part.0 (226 samples, 0.15%)</title><rect x="72.6304%" y="741" width="0.1496%" height="15" fill="rgb(208,122,53)" fg:x="109717" fg:w="226"/><text x="72.8804%" y="751.50"></text></g><g><title>walk_component (135 samples, 0.09%)</title><rect x="72.6907%" y="725" width="0.0894%" height="15" fill="rgb(215,202,26)" fg:x="109808" fg:w="135"/><text x="72.9407%" y="735.50"></text></g><g><title>step_into (26 samples, 0.02%)</title><rect x="72.7628%" y="709" width="0.0172%" height="15" fill="rgb(232,198,31)" fg:x="109917" fg:w="26"/><text x="73.0128%" y="719.50"></text></g><g><title>filename_parentat (261 samples, 0.17%)</title><rect x="72.6146%" y="773" width="0.1728%" height="15" fill="rgb(222,23,35)" fg:x="109693" fg:w="261"/><text x="72.8646%" y="783.50"></text></g><g><title>path_parentat (255 samples, 0.17%)</title><rect x="72.6185%" y="757" width="0.1688%" height="15" fill="rgb(242,27,53)" fg:x="109699" fg:w="255"/><text x="72.8685%" y="767.50"></text></g><g><title>filename_create (580 samples, 0.38%)</title><rect x="72.4067%" y="789" width="0.3839%" height="15" fill="rgb(210,216,42)" fg:x="109379" fg:w="580"/><text x="72.6567%" y="799.50"></text></g><g><title>memset_erms (37 samples, 0.02%)</title><rect x="72.7992%" y="757" width="0.0245%" height="15" fill="rgb(234,39,38)" fg:x="109972" fg:w="37"/><text x="73.0492%" y="767.50"></text></g><g><title>kmem_cache_alloc (53 samples, 0.04%)</title><rect x="72.7920%" y="773" width="0.0351%" height="15" fill="rgb(235,126,54)" fg:x="109961" fg:w="53"/><text x="73.0420%" y="783.50"></text></g><g><title>getname_flags.part.0 (101 samples, 0.07%)</title><rect x="72.7906%" y="789" width="0.0669%" height="15" fill="rgb(235,150,33)" fg:x="109959" fg:w="101"/><text x="73.0406%" y="799.50"></text></g><g><title>strncpy_from_user (46 samples, 0.03%)</title><rect x="72.8271%" y="773" width="0.0305%" height="15" fill="rgb(249,49,53)" fg:x="110014" fg:w="46"/><text x="73.0771%" y="783.50"></text></g><g><title>__check_object_size (20 samples, 0.01%)</title><rect x="72.8443%" y="757" width="0.0132%" height="15" fill="rgb(238,60,50)" fg:x="110040" fg:w="20"/><text x="73.0943%" y="767.50"></text></g><g><title>security_path_symlink (22 samples, 0.01%)</title><rect x="72.8615%" y="789" width="0.0146%" height="15" fill="rgb(210,5,2)" fg:x="110066" fg:w="22"/><text x="73.1115%" y="799.50"></text></g><g><title>btrfs_trans_release_metadata (17 samples, 0.01%)</title><rect x="72.8926%" y="741" width="0.0113%" height="15" fill="rgb(214,207,24)" fg:x="110113" fg:w="17"/><text x="73.1426%" y="751.50"></text></g><g><title>btrfs_block_rsv_release (17 samples, 0.01%)</title><rect x="72.8926%" y="725" width="0.0113%" height="15" fill="rgb(228,173,2)" fg:x="110113" fg:w="17"/><text x="73.1426%" y="735.50"></text></g><g><title>__btrfs_end_transaction (35 samples, 0.02%)</title><rect x="72.8840%" y="757" width="0.0232%" height="15" fill="rgb(244,26,8)" fg:x="110100" fg:w="35"/><text x="73.1340%" y="767.50"></text></g><g><title>__btrfs_add_delayed_item (19 samples, 0.01%)</title><rect x="72.9197%" y="709" width="0.0126%" height="15" fill="rgb(249,153,35)" fg:x="110154" fg:w="19"/><text x="73.1697%" y="719.50"></text></g><g><title>__mutex_lock.constprop.0 (19 samples, 0.01%)</title><rect x="72.9495%" y="709" width="0.0126%" height="15" fill="rgb(221,215,40)" fg:x="110199" fg:w="19"/><text x="73.1995%" y="719.50"></text></g><g><title>mutex_spin_on_owner (17 samples, 0.01%)</title><rect x="72.9508%" y="693" width="0.0113%" height="15" fill="rgb(238,106,35)" fg:x="110201" fg:w="17"/><text x="73.2008%" y="703.50"></text></g><g><title>btrfs_insert_delayed_dir_index (84 samples, 0.06%)</title><rect x="72.9151%" y="725" width="0.0556%" height="15" fill="rgb(207,195,21)" fg:x="110147" fg:w="84"/><text x="73.1651%" y="735.50"></text></g><g><title>btrfs_release_path (25 samples, 0.02%)</title><rect x="72.9767%" y="725" width="0.0165%" height="15" fill="rgb(205,43,29)" fg:x="110240" fg:w="25"/><text x="73.2267%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (40 samples, 0.03%)</title><rect x="73.0329%" y="677" width="0.0265%" height="15" fill="rgb(236,35,21)" fg:x="110325" fg:w="40"/><text x="73.2829%" y="687.50"></text></g><g><title>__radix_tree_lookup (16 samples, 0.01%)</title><rect x="73.0760%" y="645" width="0.0106%" height="15" fill="rgb(244,74,8)" fg:x="110390" fg:w="16"/><text x="73.3260%" y="655.50"></text></g><g><title>find_extent_buffer (30 samples, 0.02%)</title><rect x="73.0733%" y="661" width="0.0199%" height="15" fill="rgb(241,229,7)" fg:x="110386" fg:w="30"/><text x="73.3233%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (60 samples, 0.04%)</title><rect x="73.0594%" y="677" width="0.0397%" height="15" fill="rgb(212,223,25)" fg:x="110365" fg:w="60"/><text x="73.3094%" y="687.50"></text></g><g><title>__push_leaf_right (25 samples, 0.02%)</title><rect x="73.1144%" y="645" width="0.0165%" height="15" fill="rgb(234,58,53)" fg:x="110448" fg:w="25"/><text x="73.3644%" y="655.50"></text></g><g><title>split_leaf (52 samples, 0.03%)</title><rect x="73.0991%" y="677" width="0.0344%" height="15" fill="rgb(244,36,1)" fg:x="110425" fg:w="52"/><text x="73.3491%" y="687.50"></text></g><g><title>push_leaf_right (31 samples, 0.02%)</title><rect x="73.1130%" y="661" width="0.0205%" height="15" fill="rgb(222,40,54)" fg:x="110446" fg:w="31"/><text x="73.3630%" y="671.50"></text></g><g><title>btrfs_search_slot (202 samples, 0.13%)</title><rect x="73.0064%" y="693" width="0.1337%" height="15" fill="rgb(210,207,39)" fg:x="110285" fg:w="202"/><text x="73.2564%" y="703.50"></text></g><g><title>btrfs_get_token_32 (98 samples, 0.06%)</title><rect x="73.1653%" y="677" width="0.0649%" height="15" fill="rgb(234,52,14)" fg:x="110525" fg:w="98"/><text x="73.4153%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (16 samples, 0.01%)</title><rect x="73.2196%" y="661" width="0.0106%" height="15" fill="rgb(239,108,46)" fg:x="110607" fg:w="16"/><text x="73.4696%" y="671.50"></text></g><g><title>btrfs_set_token_32 (101 samples, 0.07%)</title><rect x="73.2421%" y="677" width="0.0669%" height="15" fill="rgb(252,223,5)" fg:x="110641" fg:w="101"/><text x="73.4921%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (18 samples, 0.01%)</title><rect x="73.2971%" y="661" width="0.0119%" height="15" fill="rgb(227,181,11)" fg:x="110724" fg:w="18"/><text x="73.5471%" y="671.50"></text></g><g><title>memcpy_extent_buffer (38 samples, 0.03%)</title><rect x="73.3103%" y="677" width="0.0252%" height="15" fill="rgb(248,126,40)" fg:x="110744" fg:w="38"/><text x="73.5603%" y="687.50"></text></g><g><title>memmove (27 samples, 0.02%)</title><rect x="73.3176%" y="661" width="0.0179%" height="15" fill="rgb(243,1,18)" fg:x="110755" fg:w="27"/><text x="73.5676%" y="671.50"></text></g><g><title>memmove_extent_buffer (31 samples, 0.02%)</title><rect x="73.3355%" y="677" width="0.0205%" height="15" fill="rgb(214,145,23)" fg:x="110782" fg:w="31"/><text x="73.5855%" y="687.50"></text></g><g><title>memmove (21 samples, 0.01%)</title><rect x="73.3421%" y="661" width="0.0139%" height="15" fill="rgb(241,218,11)" fg:x="110792" fg:w="21"/><text x="73.5921%" y="671.50"></text></g><g><title>insert_with_overflow (550 samples, 0.36%)</title><rect x="72.9972%" y="725" width="0.3641%" height="15" fill="rgb(214,219,24)" fg:x="110271" fg:w="550"/><text x="73.2472%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (540 samples, 0.36%)</title><rect x="73.0038%" y="709" width="0.3575%" height="15" fill="rgb(235,32,7)" fg:x="110281" fg:w="540"/><text x="73.2538%" y="719.50"></text></g><g><title>setup_items_for_insert (334 samples, 0.22%)</title><rect x="73.1402%" y="693" width="0.2211%" height="15" fill="rgb(227,121,28)" fg:x="110487" fg:w="334"/><text x="73.3902%" y="703.50"></text></g><g><title>btrfs_insert_dir_item (698 samples, 0.46%)</title><rect x="72.9118%" y="741" width="0.4621%" height="15" fill="rgb(216,129,49)" fg:x="110142" fg:w="698"/><text x="73.1618%" y="751.50"></text></g><g><title>btrfs_delayed_update_inode (29 samples, 0.02%)</title><rect x="73.3752%" y="725" width="0.0192%" height="15" fill="rgb(207,194,50)" fg:x="110842" fg:w="29"/><text x="73.6252%" y="735.50"></text></g><g><title>btrfs_update_inode (37 samples, 0.02%)</title><rect x="73.3738%" y="741" width="0.0245%" height="15" fill="rgb(207,4,18)" fg:x="110840" fg:w="37"/><text x="73.6238%" y="751.50"></text></g><g><title>btrfs_add_link (745 samples, 0.49%)</title><rect x="72.9072%" y="757" width="0.4932%" height="15" fill="rgb(213,50,30)" fg:x="110135" fg:w="745"/><text x="73.1572%" y="767.50"></text></g><g><title>btrfs_free_path (18 samples, 0.01%)</title><rect x="73.4142%" y="757" width="0.0119%" height="15" fill="rgb(208,77,22)" fg:x="110901" fg:w="18"/><text x="73.6642%" y="767.50"></text></g><g><title>btrfs_release_path (18 samples, 0.01%)</title><rect x="73.4142%" y="741" width="0.0119%" height="15" fill="rgb(244,204,34)" fg:x="110901" fg:w="18"/><text x="73.6642%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (21 samples, 0.01%)</title><rect x="73.4506%" y="725" width="0.0139%" height="15" fill="rgb(230,20,17)" fg:x="110956" fg:w="21"/><text x="73.7006%" y="735.50"></text></g><g><title>__radix_tree_lookup (17 samples, 0.01%)</title><rect x="73.4778%" y="693" width="0.0113%" height="15" fill="rgb(237,83,15)" fg:x="110997" fg:w="17"/><text x="73.7278%" y="703.50"></text></g><g><title>find_extent_buffer (27 samples, 0.02%)</title><rect x="73.4751%" y="709" width="0.0179%" height="15" fill="rgb(221,109,25)" fg:x="110993" fg:w="27"/><text x="73.7251%" y="719.50"></text></g><g><title>read_block_for_search.isra.0 (52 samples, 0.03%)</title><rect x="73.4645%" y="725" width="0.0344%" height="15" fill="rgb(205,194,52)" fg:x="110977" fg:w="52"/><text x="73.7145%" y="735.50"></text></g><g><title>split_leaf (42 samples, 0.03%)</title><rect x="73.4990%" y="725" width="0.0278%" height="15" fill="rgb(244,173,54)" fg:x="111029" fg:w="42"/><text x="73.7490%" y="735.50"></text></g><g><title>btrfs_search_slot (154 samples, 0.10%)</title><rect x="73.4308%" y="741" width="0.1019%" height="15" fill="rgb(227,181,18)" fg:x="110926" fg:w="154"/><text x="73.6808%" y="751.50"></text></g><g><title>btrfs_get_token_32 (26 samples, 0.02%)</title><rect x="73.5513%" y="725" width="0.0172%" height="15" fill="rgb(238,36,30)" fg:x="111108" fg:w="26"/><text x="73.8013%" y="735.50"></text></g><g><title>btrfs_set_token_32 (30 samples, 0.02%)</title><rect x="73.5830%" y="725" width="0.0199%" height="15" fill="rgb(254,85,0)" fg:x="111156" fg:w="30"/><text x="73.8330%" y="735.50"></text></g><g><title>btrfs_insert_empty_items (275 samples, 0.18%)</title><rect x="73.4281%" y="757" width="0.1820%" height="15" fill="rgb(247,63,33)" fg:x="110922" fg:w="275"/><text x="73.6781%" y="767.50"></text></g><g><title>setup_items_for_insert (117 samples, 0.08%)</title><rect x="73.5327%" y="741" width="0.0775%" height="15" fill="rgb(220,7,54)" fg:x="111080" fg:w="117"/><text x="73.7827%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (29 samples, 0.02%)</title><rect x="73.6453%" y="709" width="0.0192%" height="15" fill="rgb(238,227,21)" fg:x="111250" fg:w="29"/><text x="73.8953%" y="719.50"></text></g><g><title>find_extent_buffer (30 samples, 0.02%)</title><rect x="73.6717%" y="693" width="0.0199%" height="15" fill="rgb(237,29,31)" fg:x="111290" fg:w="30"/><text x="73.9217%" y="703.50"></text></g><g><title>read_block_for_search.isra.0 (49 samples, 0.03%)</title><rect x="73.6645%" y="709" width="0.0324%" height="15" fill="rgb(211,21,50)" fg:x="111279" fg:w="49"/><text x="73.9145%" y="719.50"></text></g><g><title>__push_leaf_left (27 samples, 0.02%)</title><rect x="73.7168%" y="677" width="0.0179%" height="15" fill="rgb(239,119,2)" fg:x="111358" fg:w="27"/><text x="73.9668%" y="687.50"></text></g><g><title>split_leaf (59 samples, 0.04%)</title><rect x="73.6969%" y="709" width="0.0391%" height="15" fill="rgb(250,2,39)" fg:x="111328" fg:w="59"/><text x="73.9469%" y="719.50"></text></g><g><title>push_leaf_left (30 samples, 0.02%)</title><rect x="73.7161%" y="693" width="0.0199%" height="15" fill="rgb(244,46,53)" fg:x="111357" fg:w="30"/><text x="73.9661%" y="703.50"></text></g><g><title>btrfs_search_slot (174 samples, 0.12%)</title><rect x="73.6287%" y="725" width="0.1152%" height="15" fill="rgb(209,21,19)" fg:x="111225" fg:w="174"/><text x="73.8787%" y="735.50"></text></g><g><title>btrfs_get_token_32 (33 samples, 0.02%)</title><rect x="73.7591%" y="709" width="0.0218%" height="15" fill="rgb(236,145,4)" fg:x="111422" fg:w="33"/><text x="74.0091%" y="719.50"></text></g><g><title>btrfs_set_token_32 (31 samples, 0.02%)</title><rect x="73.7882%" y="709" width="0.0205%" height="15" fill="rgb(220,133,36)" fg:x="111466" fg:w="31"/><text x="74.0382%" y="719.50"></text></g><g><title>btrfs_insert_empty_items (289 samples, 0.19%)</title><rect x="73.6267%" y="741" width="0.1913%" height="15" fill="rgb(244,18,3)" fg:x="111222" fg:w="289"/><text x="73.8767%" y="751.50"></text></g><g><title>setup_items_for_insert (112 samples, 0.07%)</title><rect x="73.7439%" y="725" width="0.0741%" height="15" fill="rgb(232,171,48)" fg:x="111399" fg:w="112"/><text x="73.9939%" y="735.50"></text></g><g><title>btrfs_set_token_64 (25 samples, 0.02%)</title><rect x="73.8412%" y="725" width="0.0165%" height="15" fill="rgb(223,223,53)" fg:x="111546" fg:w="25"/><text x="74.0912%" y="735.50"></text></g><g><title>fill_inode_item (46 samples, 0.03%)</title><rect x="73.8306%" y="741" width="0.0305%" height="15" fill="rgb(246,92,13)" fg:x="111530" fg:w="46"/><text x="74.0806%" y="751.50"></text></g><g><title>inode_tree_add (58 samples, 0.04%)</title><rect x="73.8617%" y="741" width="0.0384%" height="15" fill="rgb(229,171,10)" fg:x="111577" fg:w="58"/><text x="74.1117%" y="751.50"></text></g><g><title>insert_inode_locked4 (24 samples, 0.02%)</title><rect x="73.9001%" y="741" width="0.0159%" height="15" fill="rgb(213,131,26)" fg:x="111635" fg:w="24"/><text x="74.1501%" y="751.50"></text></g><g><title>inode_insert5 (24 samples, 0.02%)</title><rect x="73.9001%" y="725" width="0.0159%" height="15" fill="rgb(242,87,54)" fg:x="111635" fg:w="24"/><text x="74.1501%" y="735.50"></text></g><g><title>memcg_slab_post_alloc_hook (18 samples, 0.01%)</title><rect x="73.9431%" y="677" width="0.0119%" height="15" fill="rgb(237,21,35)" fg:x="111700" fg:w="18"/><text x="74.1931%" y="687.50"></text></g><g><title>btrfs_alloc_inode (51 samples, 0.03%)</title><rect x="73.9299%" y="709" width="0.0338%" height="15" fill="rgb(253,13,47)" fg:x="111680" fg:w="51"/><text x="74.1799%" y="719.50"></text></g><g><title>kmem_cache_alloc (40 samples, 0.03%)</title><rect x="73.9372%" y="693" width="0.0265%" height="15" fill="rgb(215,122,49)" fg:x="111691" fg:w="40"/><text x="74.1872%" y="703.50"></text></g><g><title>alloc_inode (65 samples, 0.04%)</title><rect x="73.9286%" y="725" width="0.0430%" height="15" fill="rgb(209,179,30)" fg:x="111678" fg:w="65"/><text x="74.1786%" y="735.50"></text></g><g><title>new_inode (76 samples, 0.05%)</title><rect x="73.9240%" y="741" width="0.0503%" height="15" fill="rgb(235,100,24)" fg:x="111671" fg:w="76"/><text x="74.1740%" y="751.50"></text></g><g><title>btrfs_new_inode (553 samples, 0.37%)</title><rect x="73.6122%" y="757" width="0.3661%" height="15" fill="rgb(209,67,24)" fg:x="111200" fg:w="553"/><text x="73.8622%" y="767.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (20 samples, 0.01%)</title><rect x="73.9928%" y="725" width="0.0132%" height="15" fill="rgb(206,74,32)" fg:x="111775" fg:w="20"/><text x="74.2428%" y="735.50"></text></g><g><title>__radix_tree_lookup (17 samples, 0.01%)</title><rect x="74.0226%" y="693" width="0.0113%" height="15" fill="rgb(212,45,25)" fg:x="111820" fg:w="17"/><text x="74.2726%" y="703.50"></text></g><g><title>btrfs_get_delayed_node (20 samples, 0.01%)</title><rect x="74.0213%" y="709" width="0.0132%" height="15" fill="rgb(239,26,3)" fg:x="111818" fg:w="20"/><text x="74.2713%" y="719.50"></text></g><g><title>kmem_cache_alloc (16 samples, 0.01%)</title><rect x="74.0345%" y="709" width="0.0106%" height="15" fill="rgb(218,36,15)" fg:x="111838" fg:w="16"/><text x="74.2845%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (51 samples, 0.03%)</title><rect x="74.0120%" y="725" width="0.0338%" height="15" fill="rgb(206,108,24)" fg:x="111804" fg:w="51"/><text x="74.2620%" y="735.50"></text></g><g><title>btrfs_delayed_update_inode (106 samples, 0.07%)</title><rect x="73.9875%" y="741" width="0.0702%" height="15" fill="rgb(234,204,42)" fg:x="111767" fg:w="106"/><text x="74.2375%" y="751.50"></text></g><g><title>btrfs_update_inode (117 samples, 0.08%)</title><rect x="73.9855%" y="757" width="0.0775%" height="15" fill="rgb(229,2,11)" fg:x="111764" fg:w="117"/><text x="74.2355%" y="767.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (17 samples, 0.01%)</title><rect x="74.1014%" y="693" width="0.0113%" height="15" fill="rgb(221,20,48)" fg:x="111939" fg:w="17"/><text x="74.3514%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (29 samples, 0.02%)</title><rect x="74.0967%" y="741" width="0.0192%" height="15" fill="rgb(244,164,10)" fg:x="111932" fg:w="29"/><text x="74.3467%" y="751.50"></text></g><g><title>btrfs_reserve_metadata_bytes (26 samples, 0.02%)</title><rect x="74.0987%" y="725" width="0.0172%" height="15" fill="rgb(243,229,2)" fg:x="111935" fg:w="26"/><text x="74.3487%" y="735.50"></text></g><g><title>__reserve_bytes (26 samples, 0.02%)</title><rect x="74.0987%" y="709" width="0.0172%" height="15" fill="rgb(232,131,37)" fg:x="111935" fg:w="26"/><text x="74.3487%" y="719.50"></text></g><g><title>start_transaction (69 samples, 0.05%)</title><rect x="74.0835%" y="757" width="0.0457%" height="15" fill="rgb(217,156,11)" fg:x="111912" fg:w="69"/><text x="74.3335%" y="767.50"></text></g><g><title>strlen (39 samples, 0.03%)</title><rect x="74.1292%" y="757" width="0.0258%" height="15" fill="rgb(239,99,48)" fg:x="111981" fg:w="39"/><text x="74.3792%" y="767.50"></text></g><g><title>btrfs_symlink (1,937 samples, 1.28%)</title><rect x="72.8793%" y="773" width="1.2823%" height="15" fill="rgb(231,209,9)" fg:x="110093" fg:w="1937"/><text x="73.1293%" y="783.50"></text></g><g><title>do_syscall_64 (2,691 samples, 1.78%)</title><rect x="72.3822%" y="821" width="1.7814%" height="15" fill="rgb(254,97,27)" fg:x="109342" fg:w="2691"/><text x="72.6322%" y="831.50">d..</text></g><g><title>do_symlinkat (2,687 samples, 1.78%)</title><rect x="72.3848%" y="805" width="1.7787%" height="15" fill="rgb(223,151,38)" fg:x="109346" fg:w="2687"/><text x="72.6348%" y="815.50">d..</text></g><g><title>vfs_symlink (1,940 samples, 1.28%)</title><rect x="72.8793%" y="789" width="1.2842%" height="15" fill="rgb(219,206,35)" fg:x="110093" fg:w="1940"/><text x="73.1293%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,694 samples, 1.78%)</title><rect x="72.3815%" y="837" width="1.7834%" height="15" fill="rgb(216,130,31)" fg:x="109341" fg:w="2694"/><text x="72.6315%" y="847.50">e..</text></g><g><title>__symlink (2,716 samples, 1.80%)</title><rect x="72.3696%" y="853" width="1.7979%" height="15" fill="rgb(251,97,34)" fg:x="109323" fg:w="2716"/><text x="72.6196%" y="863.50">_..</text></g><g><title>jni_GetByteArrayRegion (31 samples, 0.02%)</title><rect x="74.1788%" y="853" width="0.0205%" height="15" fill="rgb(246,159,47)" fg:x="112056" fg:w="31"/><text x="74.4288%" y="863.50"></text></g><g><title>jni_GetObjectField (42 samples, 0.03%)</title><rect x="74.1993%" y="853" width="0.0278%" height="15" fill="rgb(232,87,10)" fg:x="112087" fg:w="42"/><text x="74.4493%" y="863.50"></text></g><g><title>jni_GetStringLength (34 samples, 0.02%)</title><rect x="74.2271%" y="853" width="0.0225%" height="15" fill="rgb(249,1,37)" fg:x="112129" fg:w="34"/><text x="74.4771%" y="863.50"></text></g><g><title>JavaCalls::call_helper (16 samples, 0.01%)</title><rect x="74.2702%" y="821" width="0.0106%" height="15" fill="rgb(239,135,14)" fg:x="112194" fg:w="16"/><text x="74.5202%" y="831.50"></text></g><g><title>jni_NewObjectV (49 samples, 0.03%)</title><rect x="74.2503%" y="853" width="0.0324%" height="15" fill="rgb(253,116,46)" fg:x="112164" fg:w="49"/><text x="74.5003%" y="863.50"></text></g><g><title>jni_invoke_nonstatic (31 samples, 0.02%)</title><rect x="74.2622%" y="837" width="0.0205%" height="15" fill="rgb(222,217,37)" fg:x="112182" fg:w="31"/><text x="74.5122%" y="847.50"></text></g><g><title>rename (23 samples, 0.02%)</title><rect x="74.3079%" y="853" width="0.0152%" height="15" fill="rgb(252,96,8)" fg:x="112251" fg:w="23"/><text x="74.5579%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="74.3079%" y="837" width="0.0152%" height="15" fill="rgb(254,103,41)" fg:x="112251" fg:w="23"/><text x="74.5579%" y="847.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="74.3079%" y="821" width="0.0152%" height="15" fill="rgb(218,213,19)" fg:x="112251" fg:w="23"/><text x="74.5579%" y="831.50"></text></g><g><title>__x64_sys_rename (23 samples, 0.02%)</title><rect x="74.3079%" y="805" width="0.0152%" height="15" fill="rgb(253,95,21)" fg:x="112251" fg:w="23"/><text x="74.5579%" y="815.50"></text></g><g><title>do_renameat2 (23 samples, 0.02%)</title><rect x="74.3079%" y="789" width="0.0152%" height="15" fill="rgb(229,26,28)" fg:x="112251" fg:w="23"/><text x="74.5579%" y="799.50"></text></g><g><title>vfs_rename (19 samples, 0.01%)</title><rect x="74.3105%" y="773" width="0.0126%" height="15" fill="rgb(230,129,16)" fg:x="112255" fg:w="19"/><text x="74.5605%" y="783.50"></text></g><g><title>btrfs_rename2 (19 samples, 0.01%)</title><rect x="74.3105%" y="757" width="0.0126%" height="15" fill="rgb(236,126,17)" fg:x="112255" fg:w="19"/><text x="74.5605%" y="767.50"></text></g><g><title>[libunix_jni.so] (8,057 samples, 5.33%)</title><rect x="69.0015%" y="869" width="5.3336%" height="15" fill="rgb(209,33,33)" fg:x="104235" fg:w="8057"/><text x="69.2515%" y="879.50">[libuni..</text></g><g><title>std::string::_Rep::_S_create (18 samples, 0.01%)</title><rect x="74.3231%" y="853" width="0.0119%" height="15" fill="rgb(227,85,29)" fg:x="112274" fg:w="18"/><text x="74.5731%" y="863.50"></text></g><g><title>ConstantPool::klass_at_impl (25 samples, 0.02%)</title><rect x="95.3026%" y="837" width="0.0165%" height="15" fill="rgb(241,53,46)" fg:x="143966" fg:w="25"/><text x="95.5526%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (25 samples, 0.02%)</title><rect x="95.3026%" y="821" width="0.0165%" height="15" fill="rgb(228,167,53)" fg:x="143966" fg:w="25"/><text x="95.5526%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (25 samples, 0.02%)</title><rect x="95.3026%" y="805" width="0.0165%" height="15" fill="rgb(238,195,45)" fg:x="143966" fg:w="25"/><text x="95.5526%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (18 samples, 0.01%)</title><rect x="95.3072%" y="789" width="0.0119%" height="15" fill="rgb(252,124,45)" fg:x="143973" fg:w="18"/><text x="95.5572%" y="799.50"></text></g><g><title>ObjectMonitor::enter (17 samples, 0.01%)</title><rect x="95.3377%" y="805" width="0.0113%" height="15" fill="rgb(251,38,35)" fg:x="144019" fg:w="17"/><text x="95.5877%" y="815.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="95.3383%" y="789" width="0.0106%" height="15" fill="rgb(227,33,2)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="799.50"></text></g><g><title>__pthread_cond_wait (16 samples, 0.01%)</title><rect x="95.3383%" y="773" width="0.0106%" height="15" fill="rgb(223,157,46)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="95.3383%" y="757" width="0.0106%" height="15" fill="rgb(222,78,41)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="767.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="95.3383%" y="741" width="0.0106%" height="15" fill="rgb(248,176,11)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="95.3383%" y="725" width="0.0106%" height="15" fill="rgb(241,221,18)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="735.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="95.3383%" y="709" width="0.0106%" height="15" fill="rgb(218,85,22)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="719.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="95.3383%" y="693" width="0.0106%" height="15" fill="rgb(222,223,7)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="703.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="95.3383%" y="677" width="0.0106%" height="15" fill="rgb(254,59,39)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="687.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="95.3383%" y="661" width="0.0106%" height="15" fill="rgb(247,100,27)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="671.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="95.3383%" y="645" width="0.0106%" height="15" fill="rgb(237,207,10)" fg:x="144020" fg:w="16"/><text x="95.5883%" y="655.50"></text></g><g><title>Rewriter::rewrite (26 samples, 0.02%)</title><rect x="95.3496%" y="805" width="0.0172%" height="15" fill="rgb(220,121,28)" fg:x="144037" fg:w="26"/><text x="95.5996%" y="815.50"></text></g><g><title>Rewriter::Rewriter (26 samples, 0.02%)</title><rect x="95.3496%" y="789" width="0.0172%" height="15" fill="rgb(213,223,20)" fg:x="144037" fg:w="26"/><text x="95.5996%" y="799.50"></text></g><g><title>Rewriter::rewrite_bytecodes (18 samples, 0.01%)</title><rect x="95.3549%" y="773" width="0.0119%" height="15" fill="rgb(205,121,27)" fg:x="144045" fg:w="18"/><text x="95.6049%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (85 samples, 0.06%)</title><rect x="95.3238%" y="821" width="0.0563%" height="15" fill="rgb(253,24,53)" fg:x="143998" fg:w="85"/><text x="95.5738%" y="831.50"></text></g><g><title>InstanceKlass::initialize_impl (91 samples, 0.06%)</title><rect x="95.3205%" y="837" width="0.0602%" height="15" fill="rgb(224,224,47)" fg:x="143993" fg:w="91"/><text x="95.5705%" y="847.50"></text></g><g><title>InterpreterRuntime::_new (120 samples, 0.08%)</title><rect x="95.3019%" y="853" width="0.0794%" height="15" fill="rgb(250,125,36)" fg:x="143965" fg:w="120"/><text x="95.5519%" y="863.50"></text></g><g><title>ObjArrayAllocator::initialize (20 samples, 0.01%)</title><rect x="95.4184%" y="789" width="0.0132%" height="15" fill="rgb(240,144,38)" fg:x="144141" fg:w="20"/><text x="95.6684%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (40 samples, 0.03%)</title><rect x="95.4078%" y="821" width="0.0265%" height="15" fill="rgb(250,15,50)" fg:x="144125" fg:w="40"/><text x="95.6578%" y="831.50"></text></g><g><title>MemAllocator::allocate (38 samples, 0.03%)</title><rect x="95.4092%" y="805" width="0.0252%" height="15" fill="rgb(210,24,26)" fg:x="144127" fg:w="38"/><text x="95.6592%" y="815.50"></text></g><g><title>InstanceKlass::allocate_objArray (67 samples, 0.04%)</title><rect x="95.3959%" y="837" width="0.0444%" height="15" fill="rgb(234,53,53)" fg:x="144107" fg:w="67"/><text x="95.6459%" y="847.50"></text></g><g><title>InterpreterRuntime::anewarray (96 samples, 0.06%)</title><rect x="95.3814%" y="853" width="0.0636%" height="15" fill="rgb(208,108,28)" fg:x="144085" fg:w="96"/><text x="95.6314%" y="863.50"></text></g><g><title>InterpreterRuntime::at_safepoint (16 samples, 0.01%)</title><rect x="95.4449%" y="853" width="0.0106%" height="15" fill="rgb(227,143,7)" fg:x="144181" fg:w="16"/><text x="95.6949%" y="863.50"></text></g><g><title>SafepointSynchronize::block (16 samples, 0.01%)</title><rect x="95.4449%" y="837" width="0.0106%" height="15" fill="rgb(238,189,38)" fg:x="144181" fg:w="16"/><text x="95.6949%" y="847.50"></text></g><g><title>InterpreterRuntime::build_method_counters (26 samples, 0.02%)</title><rect x="95.4555%" y="853" width="0.0172%" height="15" fill="rgb(222,69,15)" fg:x="144197" fg:w="26"/><text x="95.7055%" y="863.50"></text></g><g><title>Method::build_method_counters (26 samples, 0.02%)</title><rect x="95.4555%" y="837" width="0.0172%" height="15" fill="rgb(213,169,7)" fg:x="144197" fg:w="26"/><text x="95.7055%" y="847.50"></text></g><g><title>MethodCounters::allocate (22 samples, 0.01%)</title><rect x="95.4582%" y="821" width="0.0146%" height="15" fill="rgb(251,219,4)" fg:x="144201" fg:w="22"/><text x="95.7082%" y="831.50"></text></g><g><title>Metaspace::allocate (21 samples, 0.01%)</title><rect x="95.4588%" y="805" width="0.0139%" height="15" fill="rgb(241,55,40)" fg:x="144202" fg:w="21"/><text x="95.7088%" y="815.50"></text></g><g><title>JavaThread::pd_last_frame (23 samples, 0.02%)</title><rect x="95.4833%" y="821" width="0.0152%" height="15" fill="rgb(243,57,30)" fg:x="144239" fg:w="23"/><text x="95.7333%" y="831.50"></text></g><g><title>CodeCache::find_blob (22 samples, 0.01%)</title><rect x="95.4840%" y="805" width="0.0146%" height="15" fill="rgb(234,50,30)" fg:x="144240" fg:w="22"/><text x="95.7340%" y="815.50"></text></g><g><title>MethodData::allocate (28 samples, 0.02%)</title><rect x="95.5157%" y="773" width="0.0185%" height="15" fill="rgb(239,23,42)" fg:x="144288" fg:w="28"/><text x="95.7657%" y="783.50"></text></g><g><title>Method::build_interpreter_method_data (30 samples, 0.02%)</title><rect x="95.5157%" y="789" width="0.0199%" height="15" fill="rgb(217,38,19)" fg:x="144288" fg:w="30"/><text x="95.7657%" y="799.50"></text></g><g><title>TieredThresholdPolicy::call_event (46 samples, 0.03%)</title><rect x="95.5356%" y="789" width="0.0305%" height="15" fill="rgb(215,179,16)" fg:x="144318" fg:w="46"/><text x="95.7856%" y="799.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="95.5786%" y="597" width="0.0106%" height="15" fill="rgb(254,21,37)" fg:x="144383" fg:w="16"/><text x="95.8286%" y="607.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="95.5786%" y="581" width="0.0106%" height="15" fill="rgb(219,207,48)" fg:x="144383" fg:w="16"/><text x="95.8286%" y="591.50"></text></g><g><title>Monitor::ILock (19 samples, 0.01%)</title><rect x="95.5773%" y="709" width="0.0126%" height="15" fill="rgb(227,225,41)" fg:x="144381" fg:w="19"/><text x="95.8273%" y="719.50"></text></g><g><title>os::PlatformEvent::park (17 samples, 0.01%)</title><rect x="95.5786%" y="693" width="0.0113%" height="15" fill="rgb(223,130,1)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="703.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="95.5786%" y="677" width="0.0113%" height="15" fill="rgb(249,54,42)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="95.5786%" y="661" width="0.0113%" height="15" fill="rgb(248,69,25)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="671.50"></text></g><g><title>futex_wait_cancelable (17 samples, 0.01%)</title><rect x="95.5786%" y="645" width="0.0113%" height="15" fill="rgb(234,21,32)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="95.5786%" y="629" width="0.0113%" height="15" fill="rgb(252,136,6)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="639.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="95.5786%" y="613" width="0.0113%" height="15" fill="rgb(245,87,12)" fg:x="144383" fg:w="17"/><text x="95.8286%" y="623.50"></text></g><g><title>Monitor::lock (22 samples, 0.01%)</title><rect x="95.5767%" y="725" width="0.0146%" height="15" fill="rgb(208,12,15)" fg:x="144380" fg:w="22"/><text x="95.8267%" y="735.50"></text></g><g><title>CompileBroker::compile_method_base (43 samples, 0.03%)</title><rect x="95.5714%" y="741" width="0.0285%" height="15" fill="rgb(250,98,2)" fg:x="144372" fg:w="43"/><text x="95.8214%" y="751.50"></text></g><g><title>CompileBroker::compile_method (54 samples, 0.04%)</title><rect x="95.5674%" y="757" width="0.0357%" height="15" fill="rgb(205,213,15)" fg:x="144366" fg:w="54"/><text x="95.8174%" y="767.50"></text></g><g><title>TieredThresholdPolicy::compile (57 samples, 0.04%)</title><rect x="95.5661%" y="789" width="0.0377%" height="15" fill="rgb(248,192,44)" fg:x="144364" fg:w="57"/><text x="95.8161%" y="799.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (55 samples, 0.04%)</title><rect x="95.5674%" y="773" width="0.0364%" height="15" fill="rgb(221,89,17)" fg:x="144366" fg:w="55"/><text x="95.8174%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (160 samples, 0.11%)</title><rect x="95.4992%" y="821" width="0.1059%" height="15" fill="rgb(209,55,3)" fg:x="144263" fg:w="160"/><text x="95.7492%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (145 samples, 0.10%)</title><rect x="95.5091%" y="805" width="0.0960%" height="15" fill="rgb(247,23,45)" fg:x="144278" fg:w="145"/><text x="95.7591%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (197 samples, 0.13%)</title><rect x="95.4754%" y="837" width="0.1304%" height="15" fill="rgb(235,152,23)" fg:x="144227" fg:w="197"/><text x="95.7254%" y="847.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (200 samples, 0.13%)</title><rect x="95.4747%" y="853" width="0.1324%" height="15" fill="rgb(244,63,13)" fg:x="144226" fg:w="200"/><text x="95.7247%" y="863.50"></text></g><g><title>InterpreterRuntime::ldc (69 samples, 0.05%)</title><rect x="95.6071%" y="853" width="0.0457%" height="15" fill="rgb(227,30,37)" fg:x="144426" fg:w="69"/><text x="95.8571%" y="863.50"></text></g><g><title>ObjectMonitor::enter (22 samples, 0.01%)</title><rect x="95.6528%" y="837" width="0.0146%" height="15" fill="rgb(224,49,42)" fg:x="144495" fg:w="22"/><text x="95.9028%" y="847.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="95.6700%" y="565" width="0.0132%" height="15" fill="rgb(218,129,5)" fg:x="144521" fg:w="20"/><text x="95.9200%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="95.6700%" y="549" width="0.0132%" height="15" fill="rgb(240,199,54)" fg:x="144521" fg:w="20"/><text x="95.9200%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="95.6707%" y="533" width="0.0126%" height="15" fill="rgb(234,31,13)" fg:x="144522" fg:w="19"/><text x="95.9207%" y="543.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="95.6707%" y="517" width="0.0126%" height="15" fill="rgb(219,73,54)" fg:x="144522" fg:w="19"/><text x="95.9207%" y="527.50"></text></g><g><title>__pthread_cond_wait (26 samples, 0.02%)</title><rect x="95.6680%" y="741" width="0.0172%" height="15" fill="rgb(251,162,10)" fg:x="144518" fg:w="26"/><text x="95.9180%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (26 samples, 0.02%)</title><rect x="95.6680%" y="725" width="0.0172%" height="15" fill="rgb(240,138,47)" fg:x="144518" fg:w="26"/><text x="95.9180%" y="735.50"></text></g><g><title>futex_wait_cancelable (26 samples, 0.02%)</title><rect x="95.6680%" y="709" width="0.0172%" height="15" fill="rgb(216,138,26)" fg:x="144518" fg:w="26"/><text x="95.9180%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="95.6693%" y="693" width="0.0159%" height="15" fill="rgb(243,17,35)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="703.50"></text></g><g><title>do_syscall_64 (24 samples, 0.02%)</title><rect x="95.6693%" y="677" width="0.0159%" height="15" fill="rgb(241,60,18)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="687.50"></text></g><g><title>__x64_sys_futex (24 samples, 0.02%)</title><rect x="95.6693%" y="661" width="0.0159%" height="15" fill="rgb(234,2,44)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="671.50"></text></g><g><title>do_futex (24 samples, 0.02%)</title><rect x="95.6693%" y="645" width="0.0159%" height="15" fill="rgb(225,225,33)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="655.50"></text></g><g><title>futex_wait (24 samples, 0.02%)</title><rect x="95.6693%" y="629" width="0.0159%" height="15" fill="rgb(234,50,31)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="639.50"></text></g><g><title>futex_wait_queue_me (24 samples, 0.02%)</title><rect x="95.6693%" y="613" width="0.0159%" height="15" fill="rgb(249,6,25)" fg:x="144520" fg:w="24"/><text x="95.9193%" y="623.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="95.6700%" y="597" width="0.0152%" height="15" fill="rgb(241,5,17)" fg:x="144521" fg:w="23"/><text x="95.9200%" y="607.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="95.6700%" y="581" width="0.0152%" height="15" fill="rgb(207,116,10)" fg:x="144521" fg:w="23"/><text x="95.9200%" y="591.50"></text></g><g><title>Monitor::wait (28 samples, 0.02%)</title><rect x="95.6680%" y="789" width="0.0185%" height="15" fill="rgb(222,128,18)" fg:x="144518" fg:w="28"/><text x="95.9180%" y="799.50"></text></g><g><title>Monitor::IWait (28 samples, 0.02%)</title><rect x="95.6680%" y="773" width="0.0185%" height="15" fill="rgb(229,109,25)" fg:x="144518" fg:w="28"/><text x="95.9180%" y="783.50"></text></g><g><title>os::PlatformEvent::park (28 samples, 0.02%)</title><rect x="95.6680%" y="757" width="0.0185%" height="15" fill="rgb(222,102,25)" fg:x="144518" fg:w="28"/><text x="95.9180%" y="767.50"></text></g><g><title>InterpreterRuntime::monitorenter (55 samples, 0.04%)</title><rect x="95.6528%" y="853" width="0.0364%" height="15" fill="rgb(239,211,5)" fg:x="144495" fg:w="55"/><text x="95.9028%" y="863.50"></text></g><g><title>ObjectSynchronizer::fast_enter (33 samples, 0.02%)</title><rect x="95.6673%" y="837" width="0.0218%" height="15" fill="rgb(223,136,26)" fg:x="144517" fg:w="33"/><text x="95.9173%" y="847.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (33 samples, 0.02%)</title><rect x="95.6673%" y="821" width="0.0218%" height="15" fill="rgb(227,30,15)" fg:x="144517" fg:w="33"/><text x="95.9173%" y="831.50"></text></g><g><title>VMThread::execute (33 samples, 0.02%)</title><rect x="95.6673%" y="805" width="0.0218%" height="15" fill="rgb(247,76,4)" fg:x="144517" fg:w="33"/><text x="95.9173%" y="815.50"></text></g><g><title>InterpreterRuntime::newarray (32 samples, 0.02%)</title><rect x="95.6905%" y="853" width="0.0212%" height="15" fill="rgb(245,38,48)" fg:x="144552" fg:w="32"/><text x="95.9405%" y="863.50"></text></g><g><title>TypeArrayKlass::allocate_common (20 samples, 0.01%)</title><rect x="95.6985%" y="837" width="0.0132%" height="15" fill="rgb(210,220,14)" fg:x="144564" fg:w="20"/><text x="95.9485%" y="847.50"></text></g><g><title>CollectedHeap::array_allocate (17 samples, 0.01%)</title><rect x="95.7004%" y="821" width="0.0113%" height="15" fill="rgb(224,60,51)" fg:x="144567" fg:w="17"/><text x="95.9504%" y="831.50"></text></g><g><title>MemAllocator::allocate (17 samples, 0.01%)</title><rect x="95.7004%" y="805" width="0.0113%" height="15" fill="rgb(212,133,49)" fg:x="144567" fg:w="17"/><text x="95.9504%" y="815.50"></text></g><g><title>LinkResolver::resolve_field_access (22 samples, 0.01%)</title><rect x="95.7256%" y="821" width="0.0146%" height="15" fill="rgb(231,39,22)" fg:x="144605" fg:w="22"/><text x="95.9756%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (28 samples, 0.02%)</title><rect x="95.7223%" y="837" width="0.0185%" height="15" fill="rgb(236,173,22)" fg:x="144600" fg:w="28"/><text x="95.9723%" y="847.50"></text></g><g><title>ConstantPool::klass_ref_at (26 samples, 0.02%)</title><rect x="95.7706%" y="805" width="0.0172%" height="15" fill="rgb(210,70,0)" fg:x="144673" fg:w="26"/><text x="96.0206%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (23 samples, 0.02%)</title><rect x="95.7726%" y="789" width="0.0152%" height="15" fill="rgb(215,170,11)" fg:x="144676" fg:w="23"/><text x="96.0226%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (23 samples, 0.02%)</title><rect x="95.7726%" y="773" width="0.0152%" height="15" fill="rgb(220,154,28)" fg:x="144676" fg:w="23"/><text x="96.0226%" y="783.50"></text></g><g><title>LinkResolver::linktime_resolve_special_method (18 samples, 0.01%)</title><rect x="95.7878%" y="805" width="0.0119%" height="15" fill="rgb(240,160,41)" fg:x="144699" fg:w="18"/><text x="96.0378%" y="815.50"></text></g><g><title>LinkResolver::resolve_interface_method (20 samples, 0.01%)</title><rect x="95.8077%" y="789" width="0.0132%" height="15" fill="rgb(243,215,41)" fg:x="144729" fg:w="20"/><text x="96.0577%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (42 samples, 0.03%)</title><rect x="95.7997%" y="805" width="0.0278%" height="15" fill="rgb(214,208,31)" fg:x="144717" fg:w="42"/><text x="96.0497%" y="815.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (25 samples, 0.02%)</title><rect x="95.8368%" y="789" width="0.0165%" height="15" fill="rgb(247,57,22)" fg:x="144773" fg:w="25"/><text x="96.0868%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (47 samples, 0.03%)</title><rect x="95.8275%" y="805" width="0.0311%" height="15" fill="rgb(228,73,52)" fg:x="144759" fg:w="47"/><text x="96.0775%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (26 samples, 0.02%)</title><rect x="95.8593%" y="789" width="0.0172%" height="15" fill="rgb(252,60,9)" fg:x="144807" fg:w="26"/><text x="96.1093%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (24 samples, 0.02%)</title><rect x="95.8606%" y="773" width="0.0159%" height="15" fill="rgb(233,9,51)" fg:x="144809" fg:w="24"/><text x="96.1106%" y="783.50"></text></g><g><title>LinkResolver::resolve_static_call (37 samples, 0.02%)</title><rect x="95.8587%" y="805" width="0.0245%" height="15" fill="rgb(223,67,14)" fg:x="144806" fg:w="37"/><text x="96.1087%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (180 samples, 0.12%)</title><rect x="95.7686%" y="821" width="0.1192%" height="15" fill="rgb(222,86,2)" fg:x="144670" fg:w="180"/><text x="96.0186%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (244 samples, 0.16%)</title><rect x="95.7408%" y="837" width="0.1615%" height="15" fill="rgb(243,58,54)" fg:x="144628" fg:w="244"/><text x="95.9908%" y="847.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (36 samples, 0.02%)</title><rect x="95.9063%" y="773" width="0.0238%" height="15" fill="rgb(210,200,39)" fg:x="144878" fg:w="36"/><text x="96.1563%" y="783.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (36 samples, 0.02%)</title><rect x="95.9063%" y="757" width="0.0238%" height="15" fill="rgb(238,135,9)" fg:x="144878" fg:w="36"/><text x="96.1563%" y="767.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (22 samples, 0.01%)</title><rect x="95.9156%" y="741" width="0.0146%" height="15" fill="rgb(232,179,7)" fg:x="144892" fg:w="22"/><text x="96.1656%" y="751.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (62 samples, 0.04%)</title><rect x="95.9050%" y="789" width="0.0410%" height="15" fill="rgb(245,65,41)" fg:x="144876" fg:w="62"/><text x="96.1550%" y="799.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (24 samples, 0.02%)</title><rect x="95.9301%" y="773" width="0.0159%" height="15" fill="rgb(227,43,8)" fg:x="144914" fg:w="24"/><text x="96.1801%" y="783.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (22 samples, 0.01%)</title><rect x="95.9315%" y="757" width="0.0146%" height="15" fill="rgb(235,91,14)" fg:x="144916" fg:w="22"/><text x="96.1815%" y="767.50"></text></g><g><title>SystemDictionary::find_method_handle_type (18 samples, 0.01%)</title><rect x="95.9474%" y="757" width="0.0119%" height="15" fill="rgb(235,219,31)" fg:x="144940" fg:w="18"/><text x="96.1974%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (89 samples, 0.06%)</title><rect x="95.9023%" y="837" width="0.0589%" height="15" fill="rgb(227,121,25)" fg:x="144872" fg:w="89"/><text x="96.1523%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (85 samples, 0.06%)</title><rect x="95.9050%" y="821" width="0.0563%" height="15" fill="rgb(254,129,24)" fg:x="144876" fg:w="85"/><text x="96.1550%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (85 samples, 0.06%)</title><rect x="95.9050%" y="805" width="0.0563%" height="15" fill="rgb(226,144,49)" fg:x="144876" fg:w="85"/><text x="96.1550%" y="815.50"></text></g><g><title>LinkResolver::resolve_dynamic_call (23 samples, 0.02%)</title><rect x="95.9460%" y="789" width="0.0152%" height="15" fill="rgb(214,187,32)" fg:x="144938" fg:w="23"/><text x="96.1960%" y="799.50"></text></g><g><title>SystemDictionary::find_dynamic_call_site_invoker (23 samples, 0.02%)</title><rect x="95.9460%" y="773" width="0.0152%" height="15" fill="rgb(243,129,46)" fg:x="144938" fg:w="23"/><text x="96.1960%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (387 samples, 0.26%)</title><rect x="95.7157%" y="853" width="0.2562%" height="15" fill="rgb(221,185,35)" fg:x="144590" fg:w="387"/><text x="95.9657%" y="863.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (17 samples, 0.01%)</title><rect x="95.9719%" y="837" width="0.0113%" height="15" fill="rgb(205,0,32)" fg:x="144977" fg:w="17"/><text x="96.2219%" y="847.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (17 samples, 0.01%)</title><rect x="95.9719%" y="821" width="0.0113%" height="15" fill="rgb(229,179,12)" fg:x="144977" fg:w="17"/><text x="96.2219%" y="831.50"></text></g><g><title>ConstantPool::string_at_impl (16 samples, 0.01%)</title><rect x="95.9725%" y="805" width="0.0106%" height="15" fill="rgb(252,107,19)" fg:x="144978" fg:w="16"/><text x="96.2225%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (18 samples, 0.01%)</title><rect x="95.9719%" y="853" width="0.0119%" height="15" fill="rgb(220,95,27)" fg:x="144977" fg:w="18"/><text x="96.2219%" y="863.50"></text></g><g><title>JVM_Clone (31 samples, 0.02%)</title><rect x="95.9917%" y="853" width="0.0205%" height="15" fill="rgb(240,113,40)" fg:x="145007" fg:w="31"/><text x="96.2417%" y="863.50"></text></g><g><title>JVM_ConstantPoolGetUTF8At (17 samples, 0.01%)</title><rect x="96.0122%" y="853" width="0.0113%" height="15" fill="rgb(208,4,43)" fg:x="145038" fg:w="17"/><text x="96.2622%" y="863.50"></text></g><g><title>JVM_FindLoadedClass (21 samples, 0.01%)</title><rect x="96.0341%" y="853" width="0.0139%" height="15" fill="rgb(247,189,30)" fg:x="145071" fg:w="21"/><text x="96.2841%" y="863.50"></text></g><g><title>JVM_GetCallerClass (16 samples, 0.01%)</title><rect x="96.0486%" y="853" width="0.0106%" height="15" fill="rgb(231,157,17)" fg:x="145093" fg:w="16"/><text x="96.2986%" y="863.50"></text></g><g><title>get_parameter_types (21 samples, 0.01%)</title><rect x="96.0764%" y="805" width="0.0139%" height="15" fill="rgb(224,139,6)" fg:x="145135" fg:w="21"/><text x="96.3264%" y="815.50"></text></g><g><title>JVM_GetClassDeclaredMethods (43 samples, 0.03%)</title><rect x="96.0639%" y="853" width="0.0285%" height="15" fill="rgb(223,83,16)" fg:x="145116" fg:w="43"/><text x="96.3139%" y="863.50"></text></g><g><title>get_class_declared_methods_helper (43 samples, 0.03%)</title><rect x="96.0639%" y="837" width="0.0285%" height="15" fill="rgb(232,211,20)" fg:x="145116" fg:w="43"/><text x="96.3139%" y="847.50"></text></g><g><title>Reflection::new_method (36 samples, 0.02%)</title><rect x="96.0685%" y="821" width="0.0238%" height="15" fill="rgb(225,203,35)" fg:x="145123" fg:w="36"/><text x="96.3185%" y="831.50"></text></g><g><title>VMThread::execute (17 samples, 0.01%)</title><rect x="96.0996%" y="805" width="0.0113%" height="15" fill="rgb(215,211,44)" fg:x="145170" fg:w="17"/><text x="96.3496%" y="815.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (21 samples, 0.01%)</title><rect x="96.0976%" y="821" width="0.0139%" height="15" fill="rgb(248,213,26)" fg:x="145167" fg:w="21"/><text x="96.3476%" y="831.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (29 samples, 0.02%)</title><rect x="96.0937%" y="837" width="0.0192%" height="15" fill="rgb(214,23,52)" fg:x="145161" fg:w="29"/><text x="96.3437%" y="847.50"></text></g><g><title>JVM_IHashCode (41 samples, 0.03%)</title><rect x="96.0923%" y="853" width="0.0271%" height="15" fill="rgb(225,173,50)" fg:x="145159" fg:w="41"/><text x="96.3423%" y="863.50"></text></g><g><title>JVM_InitStackTraceElementArray (27 samples, 0.02%)</title><rect x="96.1268%" y="853" width="0.0179%" height="15" fill="rgb(206,150,22)" fg:x="145211" fg:w="27"/><text x="96.3768%" y="863.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (27 samples, 0.02%)</title><rect x="96.1268%" y="837" width="0.0179%" height="15" fill="rgb(239,64,23)" fg:x="145211" fg:w="27"/><text x="96.3768%" y="847.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (24 samples, 0.02%)</title><rect x="96.1287%" y="821" width="0.0159%" height="15" fill="rgb(242,50,38)" fg:x="145214" fg:w="24"/><text x="96.3787%" y="831.50"></text></g><g><title>StringTable::intern (16 samples, 0.01%)</title><rect x="96.1340%" y="805" width="0.0106%" height="15" fill="rgb(217,91,15)" fg:x="145222" fg:w="16"/><text x="96.3840%" y="815.50"></text></g><g><title>JVM_IsInterrupted (27 samples, 0.02%)</title><rect x="96.1618%" y="853" width="0.0179%" height="15" fill="rgb(230,172,6)" fg:x="145264" fg:w="27"/><text x="96.4118%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="96.2035%" y="565" width="0.0165%" height="15" fill="rgb(221,98,26)" fg:x="145327" fg:w="25"/><text x="96.4535%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="96.2042%" y="549" width="0.0159%" height="15" fill="rgb(227,210,45)" fg:x="145328" fg:w="24"/><text x="96.4542%" y="559.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="96.2042%" y="533" width="0.0159%" height="15" fill="rgb(206,8,30)" fg:x="145328" fg:w="24"/><text x="96.4542%" y="543.50"></text></g><g><title>Monitor::lock_without_safepoint_check (29 samples, 0.02%)</title><rect x="96.2016%" y="805" width="0.0192%" height="15" fill="rgb(241,219,17)" fg:x="145324" fg:w="29"/><text x="96.4516%" y="815.50"></text></g><g><title>Monitor::ILock (29 samples, 0.02%)</title><rect x="96.2016%" y="789" width="0.0192%" height="15" fill="rgb(247,121,29)" fg:x="145324" fg:w="29"/><text x="96.4516%" y="799.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.02%)</title><rect x="96.2016%" y="773" width="0.0192%" height="15" fill="rgb(219,169,49)" fg:x="145324" fg:w="29"/><text x="96.4516%" y="783.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.02%)</title><rect x="96.2029%" y="757" width="0.0179%" height="15" fill="rgb(253,49,49)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="96.2029%" y="741" width="0.0179%" height="15" fill="rgb(217,178,3)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="751.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.02%)</title><rect x="96.2029%" y="725" width="0.0179%" height="15" fill="rgb(234,73,37)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="96.2029%" y="709" width="0.0179%" height="15" fill="rgb(250,98,22)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="719.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="96.2029%" y="693" width="0.0179%" height="15" fill="rgb(220,108,37)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="703.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="96.2029%" y="677" width="0.0179%" height="15" fill="rgb(225,168,10)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="687.50"></text></g><g><title>do_futex (27 samples, 0.02%)</title><rect x="96.2029%" y="661" width="0.0179%" height="15" fill="rgb(247,215,21)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="671.50"></text></g><g><title>futex_wait (27 samples, 0.02%)</title><rect x="96.2029%" y="645" width="0.0179%" height="15" fill="rgb(253,189,31)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="655.50"></text></g><g><title>futex_wait_queue_me (27 samples, 0.02%)</title><rect x="96.2029%" y="629" width="0.0179%" height="15" fill="rgb(241,54,22)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="639.50"></text></g><g><title>schedule (27 samples, 0.02%)</title><rect x="96.2029%" y="613" width="0.0179%" height="15" fill="rgb(211,87,4)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="623.50"></text></g><g><title>__schedule (27 samples, 0.02%)</title><rect x="96.2029%" y="597" width="0.0179%" height="15" fill="rgb(245,112,24)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="607.50"></text></g><g><title>finish_task_switch (27 samples, 0.02%)</title><rect x="96.2029%" y="581" width="0.0179%" height="15" fill="rgb(235,190,41)" fg:x="145326" fg:w="27"/><text x="96.4529%" y="591.50"></text></g><g><title>JVM_Yield (30 samples, 0.02%)</title><rect x="96.2016%" y="853" width="0.0199%" height="15" fill="rgb(214,89,8)" fg:x="145324" fg:w="30"/><text x="96.4516%" y="863.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (30 samples, 0.02%)</title><rect x="96.2016%" y="837" width="0.0199%" height="15" fill="rgb(249,155,35)" fg:x="145324" fg:w="30"/><text x="96.4516%" y="847.50"></text></g><g><title>SafepointSynchronize::block (30 samples, 0.02%)</title><rect x="96.2016%" y="821" width="0.0199%" height="15" fill="rgb(249,88,26)" fg:x="145324" fg:w="30"/><text x="96.4516%" y="831.50"></text></g><g><title>Java_java_io_RandomAccessFile_seek0 (16 samples, 0.01%)</title><rect x="96.2221%" y="853" width="0.0106%" height="15" fill="rgb(232,56,8)" fg:x="145355" fg:w="16"/><text x="96.4721%" y="863.50"></text></g><g><title>SymbolTable::add (26 samples, 0.02%)</title><rect x="96.2618%" y="709" width="0.0172%" height="15" fill="rgb(240,95,3)" fg:x="145415" fg:w="26"/><text x="96.5118%" y="719.50"></text></g><g><title>SymbolTable::basic_add (26 samples, 0.02%)</title><rect x="96.2618%" y="693" width="0.0172%" height="15" fill="rgb(222,44,28)" fg:x="145415" fg:w="26"/><text x="96.5118%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (265 samples, 0.18%)</title><rect x="96.2790%" y="709" width="0.1754%" height="15" fill="rgb(234,16,30)" fg:x="145441" fg:w="265"/><text x="96.5290%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (304 samples, 0.20%)</title><rect x="96.2539%" y="725" width="0.2012%" height="15" fill="rgb(223,26,17)" fg:x="145403" fg:w="304"/><text x="96.5039%" y="735.50"></text></g><g><title>ClassFileParser::parse_constant_pool (316 samples, 0.21%)</title><rect x="96.2492%" y="741" width="0.2092%" height="15" fill="rgb(239,187,47)" fg:x="145396" fg:w="316"/><text x="96.4992%" y="751.50"></text></g><g><title>Method::allocate (22 samples, 0.01%)</title><rect x="96.4875%" y="709" width="0.0146%" height="15" fill="rgb(247,102,50)" fg:x="145756" fg:w="22"/><text x="96.7375%" y="719.50"></text></g><g><title>ClassFileParser::parse_methods (72 samples, 0.05%)</title><rect x="96.4664%" y="741" width="0.0477%" height="15" fill="rgb(231,216,22)" fg:x="145724" fg:w="72"/><text x="96.7164%" y="751.50"></text></g><g><title>ClassFileParser::parse_method (72 samples, 0.05%)</title><rect x="96.4664%" y="725" width="0.0477%" height="15" fill="rgb(216,201,26)" fg:x="145724" fg:w="72"/><text x="96.7164%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (413 samples, 0.27%)</title><rect x="96.2446%" y="757" width="0.2734%" height="15" fill="rgb(214,186,23)" fg:x="145389" fg:w="413"/><text x="96.4946%" y="767.50"></text></g><g><title>ClassFileParser::ClassFileParser (415 samples, 0.27%)</title><rect x="96.2446%" y="773" width="0.2747%" height="15" fill="rgb(235,184,4)" fg:x="145389" fg:w="415"/><text x="96.4946%" y="783.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (31 samples, 0.02%)</title><rect x="96.5273%" y="725" width="0.0205%" height="15" fill="rgb(244,46,17)" fg:x="145816" fg:w="31"/><text x="96.7773%" y="735.50"></text></g><g><title>DefaultMethods::generate_default_methods (45 samples, 0.03%)</title><rect x="96.5226%" y="741" width="0.0298%" height="15" fill="rgb(248,74,46)" fg:x="145809" fg:w="45"/><text x="96.7726%" y="751.50"></text></g><g><title>ClassFileParser::fill_instance_klass (69 samples, 0.05%)</title><rect x="96.5193%" y="757" width="0.0457%" height="15" fill="rgb(243,79,5)" fg:x="145804" fg:w="69"/><text x="96.7693%" y="767.50"></text></g><g><title>ClassFileParser::create_instance_klass (75 samples, 0.05%)</title><rect x="96.5193%" y="773" width="0.0496%" height="15" fill="rgb(213,148,1)" fg:x="145804" fg:w="75"/><text x="96.7693%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (518 samples, 0.34%)</title><rect x="96.2439%" y="789" width="0.3429%" height="15" fill="rgb(221,30,0)" fg:x="145388" fg:w="518"/><text x="96.4939%" y="799.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (27 samples, 0.02%)</title><rect x="96.5690%" y="773" width="0.0179%" height="15" fill="rgb(207,85,29)" fg:x="145879" fg:w="27"/><text x="96.8190%" y="783.50"></text></g><g><title>SystemDictionary::resolve_from_stream (537 samples, 0.36%)</title><rect x="96.2433%" y="805" width="0.3555%" height="15" fill="rgb(239,31,46)" fg:x="145387" fg:w="537"/><text x="96.4933%" y="815.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (18 samples, 0.01%)</title><rect x="96.5868%" y="789" width="0.0119%" height="15" fill="rgb(219,6,1)" fg:x="145906" fg:w="18"/><text x="96.8368%" y="799.50"></text></g><g><title>SystemDictionary::define_instance_class (17 samples, 0.01%)</title><rect x="96.5875%" y="773" width="0.0113%" height="15" fill="rgb(229,90,29)" fg:x="145907" fg:w="17"/><text x="96.8375%" y="783.50"></text></g><g><title>JVM_DefineClassWithSource (547 samples, 0.36%)</title><rect x="96.2380%" y="837" width="0.3621%" height="15" fill="rgb(242,201,42)" fg:x="145379" fg:w="547"/><text x="96.4880%" y="847.50"></text></g><g><title>jvm_define_class_common (547 samples, 0.36%)</title><rect x="96.2380%" y="821" width="0.3621%" height="15" fill="rgb(243,80,54)" fg:x="145379" fg:w="547"/><text x="96.4880%" y="831.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (562 samples, 0.37%)</title><rect x="96.2380%" y="853" width="0.3720%" height="15" fill="rgb(223,166,15)" fg:x="145379" fg:w="562"/><text x="96.4880%" y="863.50"></text></g><g><title>SystemDictionary::load_instance_class (23 samples, 0.02%)</title><rect x="96.6133%" y="789" width="0.0152%" height="15" fill="rgb(238,78,27)" fg:x="145946" fg:w="23"/><text x="96.8633%" y="799.50"></text></g><g><title>JVM_FindClassFromBootLoader (29 samples, 0.02%)</title><rect x="96.6100%" y="837" width="0.0192%" height="15" fill="rgb(235,28,43)" fg:x="145941" fg:w="29"/><text x="96.8600%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_null (28 samples, 0.02%)</title><rect x="96.6107%" y="821" width="0.0185%" height="15" fill="rgb(240,210,28)" fg:x="145942" fg:w="28"/><text x="96.8607%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (28 samples, 0.02%)</title><rect x="96.6107%" y="805" width="0.0185%" height="15" fill="rgb(253,6,46)" fg:x="145942" fg:w="28"/><text x="96.8607%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (33 samples, 0.02%)</title><rect x="96.6100%" y="853" width="0.0218%" height="15" fill="rgb(250,159,47)" fg:x="145941" fg:w="33"/><text x="96.8600%" y="863.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (26 samples, 0.02%)</title><rect x="96.6457%" y="853" width="0.0172%" height="15" fill="rgb(216,139,2)" fg:x="145995" fg:w="26"/><text x="96.8957%" y="863.50"></text></g><g><title>os_getParentPidAndTimings (26 samples, 0.02%)</title><rect x="96.6457%" y="837" width="0.0172%" height="15" fill="rgb(221,124,44)" fg:x="145995" fg:w="26"/><text x="96.8957%" y="847.50"></text></g><g><title>copy_process (25 samples, 0.02%)</title><rect x="96.6749%" y="741" width="0.0165%" height="15" fill="rgb(205,37,22)" fg:x="146039" fg:w="25"/><text x="96.9249%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="96.6742%" y="805" width="0.0212%" height="15" fill="rgb(250,55,8)" fg:x="146038" fg:w="32"/><text x="96.9242%" y="815.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="96.6742%" y="789" width="0.0212%" height="15" fill="rgb(215,83,48)" fg:x="146038" fg:w="32"/><text x="96.9242%" y="799.50"></text></g><g><title>__x64_sys_vfork (32 samples, 0.02%)</title><rect x="96.6742%" y="773" width="0.0212%" height="15" fill="rgb(253,2,32)" fg:x="146038" fg:w="32"/><text x="96.9242%" y="783.50"></text></g><g><title>kernel_clone (31 samples, 0.02%)</title><rect x="96.6749%" y="757" width="0.0205%" height="15" fill="rgb(236,67,28)" fg:x="146039" fg:w="31"/><text x="96.9249%" y="767.50"></text></g><g><title>calculate_sigpending (44 samples, 0.03%)</title><rect x="96.6954%" y="789" width="0.0291%" height="15" fill="rgb(252,55,15)" fg:x="146070" fg:w="44"/><text x="96.9454%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (834 samples, 0.55%)</title><rect x="96.7550%" y="757" width="0.5521%" height="15" fill="rgb(243,173,17)" fg:x="146160" fg:w="834"/><text x="97.0050%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (819 samples, 0.54%)</title><rect x="96.7649%" y="741" width="0.5422%" height="15" fill="rgb(215,212,13)" fg:x="146175" fg:w="819"/><text x="97.0149%" y="751.50"></text></g><g><title>native_write_msr (817 samples, 0.54%)</title><rect x="96.7662%" y="725" width="0.5408%" height="15" fill="rgb(253,176,6)" fg:x="146177" fg:w="817"/><text x="97.0162%" y="735.50"></text></g><g><title>asm_sysvec_irq_work (25 samples, 0.02%)</title><rect x="97.3071%" y="757" width="0.0165%" height="15" fill="rgb(236,105,26)" fg:x="146994" fg:w="25"/><text x="97.5571%" y="767.50"></text></g><g><title>schedule_tail (906 samples, 0.60%)</title><rect x="96.7245%" y="789" width="0.5998%" height="15" fill="rgb(239,226,32)" fg:x="146114" fg:w="906"/><text x="96.9745%" y="799.50"></text></g><g><title>finish_task_switch (892 samples, 0.59%)</title><rect x="96.7338%" y="773" width="0.5905%" height="15" fill="rgb(236,104,51)" fg:x="146128" fg:w="892"/><text x="96.9838%" y="783.50"></text></g><g><title>ret_from_fork (953 samples, 0.63%)</title><rect x="96.6954%" y="805" width="0.6309%" height="15" fill="rgb(220,172,33)" fg:x="146070" fg:w="953"/><text x="96.9454%" y="815.50"></text></g><g><title>__libc_vfork (987 samples, 0.65%)</title><rect x="96.6736%" y="821" width="0.6534%" height="15" fill="rgb(224,182,25)" fg:x="146037" fg:w="987"/><text x="96.9236%" y="831.50"></text></g><g><title>load_elf_binary (17 samples, 0.01%)</title><rect x="97.3494%" y="693" width="0.0113%" height="15" fill="rgb(236,184,24)" fg:x="147058" fg:w="17"/><text x="97.5994%" y="703.50"></text></g><g><title>sched_exec (18 samples, 0.01%)</title><rect x="97.3633%" y="693" width="0.0119%" height="15" fill="rgb(241,221,14)" fg:x="147079" fg:w="18"/><text x="97.6133%" y="703.50"></text></g><g><title>bprm_execve (76 samples, 0.05%)</title><rect x="97.3355%" y="709" width="0.0503%" height="15" fill="rgb(227,146,5)" fg:x="147037" fg:w="76"/><text x="97.5855%" y="719.50"></text></g><g><title>__get_user_pages_remote (19 samples, 0.01%)</title><rect x="97.3858%" y="677" width="0.0126%" height="15" fill="rgb(214,15,23)" fg:x="147113" fg:w="19"/><text x="97.6358%" y="687.50"></text></g><g><title>__get_user_pages (19 samples, 0.01%)</title><rect x="97.3858%" y="661" width="0.0126%" height="15" fill="rgb(233,157,31)" fg:x="147113" fg:w="19"/><text x="97.6358%" y="671.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="97.3878%" y="645" width="0.0106%" height="15" fill="rgb(211,27,52)" fg:x="147116" fg:w="16"/><text x="97.6378%" y="655.50"></text></g><g><title>copy_string_kernel (20 samples, 0.01%)</title><rect x="97.3858%" y="709" width="0.0132%" height="15" fill="rgb(212,223,15)" fg:x="147113" fg:w="20"/><text x="97.6358%" y="719.50"></text></g><g><title>get_arg_page (20 samples, 0.01%)</title><rect x="97.3858%" y="693" width="0.0132%" height="15" fill="rgb(254,211,0)" fg:x="147113" fg:w="20"/><text x="97.6358%" y="703.50"></text></g><g><title>JDK_execvpe (118 samples, 0.08%)</title><rect x="97.3302%" y="805" width="0.0781%" height="15" fill="rgb(205,43,38)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="815.50"></text></g><g><title>__GI_execve (118 samples, 0.08%)</title><rect x="97.3302%" y="789" width="0.0781%" height="15" fill="rgb(242,206,46)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (118 samples, 0.08%)</title><rect x="97.3302%" y="773" width="0.0781%" height="15" fill="rgb(220,221,12)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="783.50"></text></g><g><title>do_syscall_64 (118 samples, 0.08%)</title><rect x="97.3302%" y="757" width="0.0781%" height="15" fill="rgb(217,156,35)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="767.50"></text></g><g><title>__x64_sys_execve (118 samples, 0.08%)</title><rect x="97.3302%" y="741" width="0.0781%" height="15" fill="rgb(207,181,49)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="751.50"></text></g><g><title>do_execveat_common (118 samples, 0.08%)</title><rect x="97.3302%" y="725" width="0.0781%" height="15" fill="rgb(235,103,47)" fg:x="147029" fg:w="118"/><text x="97.5802%" y="735.50"></text></g><g><title>__close (18 samples, 0.01%)</title><rect x="97.4136%" y="805" width="0.0119%" height="15" fill="rgb(222,63,28)" fg:x="147155" fg:w="18"/><text x="97.6636%" y="815.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="97.4375%" y="757" width="0.0139%" height="15" fill="rgb(244,137,21)" fg:x="147191" fg:w="21"/><text x="97.6875%" y="767.50"></text></g><g><title>__x64_sys_close (21 samples, 0.01%)</title><rect x="97.4375%" y="741" width="0.0139%" height="15" fill="rgb(228,35,27)" fg:x="147191" fg:w="21"/><text x="97.6875%" y="751.50"></text></g><g><title>filp_close (20 samples, 0.01%)</title><rect x="97.4381%" y="725" width="0.0132%" height="15" fill="rgb(226,191,41)" fg:x="147192" fg:w="20"/><text x="97.6881%" y="735.50"></text></g><g><title>__close (24 samples, 0.02%)</title><rect x="97.4362%" y="789" width="0.0159%" height="15" fill="rgb(210,154,3)" fg:x="147189" fg:w="24"/><text x="97.6862%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.01%)</title><rect x="97.4375%" y="773" width="0.0146%" height="15" fill="rgb(216,60,49)" fg:x="147191" fg:w="22"/><text x="97.6875%" y="783.50"></text></g><g><title>do_filp_open (19 samples, 0.01%)</title><rect x="97.4580%" y="693" width="0.0126%" height="15" fill="rgb(226,17,20)" fg:x="147222" fg:w="19"/><text x="97.7080%" y="703.50"></text></g><g><title>path_openat (18 samples, 0.01%)</title><rect x="97.4587%" y="677" width="0.0119%" height="15" fill="rgb(206,115,35)" fg:x="147223" fg:w="18"/><text x="97.7087%" y="687.50"></text></g><g><title>__x64_sys_openat (50 samples, 0.03%)</title><rect x="97.4527%" y="725" width="0.0331%" height="15" fill="rgb(227,88,1)" fg:x="147214" fg:w="50"/><text x="97.7027%" y="735.50"></text></g><g><title>do_sys_openat2 (47 samples, 0.03%)</title><rect x="97.4547%" y="709" width="0.0311%" height="15" fill="rgb(230,222,24)" fg:x="147217" fg:w="47"/><text x="97.7047%" y="719.50"></text></g><g><title>getname_flags.part.0 (22 samples, 0.01%)</title><rect x="97.4712%" y="693" width="0.0146%" height="15" fill="rgb(214,124,32)" fg:x="147242" fg:w="22"/><text x="97.7212%" y="703.50"></text></g><g><title>__GI___open64_nocancel (53 samples, 0.04%)</title><rect x="97.4520%" y="773" width="0.0351%" height="15" fill="rgb(240,41,36)" fg:x="147213" fg:w="53"/><text x="97.7020%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.03%)</title><rect x="97.4527%" y="757" width="0.0344%" height="15" fill="rgb(221,17,52)" fg:x="147214" fg:w="52"/><text x="97.7027%" y="767.50"></text></g><g><title>do_syscall_64 (52 samples, 0.03%)</title><rect x="97.4527%" y="741" width="0.0344%" height="15" fill="rgb(252,70,16)" fg:x="147214" fg:w="52"/><text x="97.7027%" y="751.50"></text></g><g><title>__opendir (57 samples, 0.04%)</title><rect x="97.4520%" y="789" width="0.0377%" height="15" fill="rgb(250,177,4)" fg:x="147213" fg:w="57"/><text x="97.7020%" y="799.50"></text></g><g><title>closeDescriptors (101 samples, 0.07%)</title><rect x="97.4262%" y="805" width="0.0669%" height="15" fill="rgb(240,188,47)" fg:x="147174" fg:w="101"/><text x="97.6762%" y="815.50"></text></g><g><title>do_dup2 (16 samples, 0.01%)</title><rect x="97.5057%" y="725" width="0.0106%" height="15" fill="rgb(215,92,12)" fg:x="147294" fg:w="16"/><text x="97.7557%" y="735.50"></text></g><g><title>__GI___dup2 (34 samples, 0.02%)</title><rect x="97.4951%" y="789" width="0.0225%" height="15" fill="rgb(242,110,29)" fg:x="147278" fg:w="34"/><text x="97.7451%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="97.5010%" y="773" width="0.0165%" height="15" fill="rgb(208,211,26)" fg:x="147287" fg:w="25"/><text x="97.7510%" y="783.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="97.5010%" y="757" width="0.0165%" height="15" fill="rgb(244,147,6)" fg:x="147287" fg:w="25"/><text x="97.7510%" y="767.50"></text></g><g><title>__x64_sys_dup2 (21 samples, 0.01%)</title><rect x="97.5037%" y="741" width="0.0139%" height="15" fill="rgb(211,130,42)" fg:x="147291" fg:w="21"/><text x="97.7537%" y="751.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,302 samples, 0.86%)</title><rect x="96.6630%" y="853" width="0.8619%" height="15" fill="rgb(220,63,1)" fg:x="146021" fg:w="1302"/><text x="96.9130%" y="863.50"></text></g><g><title>vforkChild (1,286 samples, 0.85%)</title><rect x="96.6736%" y="837" width="0.8513%" height="15" fill="rgb(241,212,30)" fg:x="146037" fg:w="1286"/><text x="96.9236%" y="847.50"></text></g><g><title>childProcess (299 samples, 0.20%)</title><rect x="97.3269%" y="821" width="0.1979%" height="15" fill="rgb(233,153,17)" fg:x="147024" fg:w="299"/><text x="97.5769%" y="831.50"></text></g><g><title>moveDescriptor (46 samples, 0.03%)</title><rect x="97.4944%" y="805" width="0.0305%" height="15" fill="rgb(236,3,10)" fg:x="147277" fg:w="46"/><text x="97.7444%" y="815.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (18 samples, 0.01%)</title><rect x="97.5249%" y="853" width="0.0119%" height="15" fill="rgb(232,41,21)" fg:x="147323" fg:w="18"/><text x="97.7749%" y="863.50"></text></g><g><title>JVM_FillInStackTrace (18 samples, 0.01%)</title><rect x="97.5249%" y="837" width="0.0119%" height="15" fill="rgb(206,63,51)" fg:x="147323" fg:w="18"/><text x="97.7749%" y="847.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (18 samples, 0.01%)</title><rect x="97.5249%" y="821" width="0.0119%" height="15" fill="rgb(250,214,3)" fg:x="147323" fg:w="18"/><text x="97.7749%" y="831.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (16 samples, 0.01%)</title><rect x="97.5262%" y="805" width="0.0106%" height="15" fill="rgb(254,89,27)" fg:x="147325" fg:w="16"/><text x="97.7762%" y="815.50"></text></g><g><title>MHN_resolve_Mem (17 samples, 0.01%)</title><rect x="97.5374%" y="853" width="0.0113%" height="15" fill="rgb(249,41,14)" fg:x="147342" fg:w="17"/><text x="97.7874%" y="863.50"></text></g><g><title>MethodHandles::resolve_MemberName (17 samples, 0.01%)</title><rect x="97.5374%" y="837" width="0.0113%" height="15" fill="rgb(221,196,51)" fg:x="147342" fg:w="17"/><text x="97.7874%" y="847.50"></text></g><g><title>OptoRuntime::new_array_C (17 samples, 0.01%)</title><rect x="97.5487%" y="853" width="0.0113%" height="15" fill="rgb(214,116,26)" fg:x="147359" fg:w="17"/><text x="97.7987%" y="863.50"></text></g><g><title>CompileBroker::compile_method (17 samples, 0.01%)</title><rect x="97.6023%" y="773" width="0.0113%" height="15" fill="rgb(236,67,7)" fg:x="147440" fg:w="17"/><text x="97.8523%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (47 samples, 0.03%)</title><rect x="97.5831%" y="837" width="0.0311%" height="15" fill="rgb(253,179,32)" fg:x="147411" fg:w="47"/><text x="97.8331%" y="847.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (32 samples, 0.02%)</title><rect x="97.5930%" y="821" width="0.0212%" height="15" fill="rgb(218,33,15)" fg:x="147426" fg:w="32"/><text x="97.8430%" y="831.50"></text></g><g><title>TieredThresholdPolicy::compile (18 samples, 0.01%)</title><rect x="97.6023%" y="805" width="0.0119%" height="15" fill="rgb(217,202,41)" fg:x="147440" fg:w="18"/><text x="97.8523%" y="815.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (18 samples, 0.01%)</title><rect x="97.6023%" y="789" width="0.0119%" height="15" fill="rgb(234,133,5)" fg:x="147440" fg:w="18"/><text x="97.8523%" y="799.50"></text></g><g><title>Runtime1::counter_overflow (79 samples, 0.05%)</title><rect x="97.5725%" y="853" width="0.0523%" height="15" fill="rgb(240,47,40)" fg:x="147395" fg:w="79"/><text x="97.8225%" y="863.50"></text></g><g><title>Runtime1::monitorenter (31 samples, 0.02%)</title><rect x="97.6275%" y="853" width="0.0205%" height="15" fill="rgb(234,166,26)" fg:x="147478" fg:w="31"/><text x="97.8775%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="97.6765%" y="613" width="0.0225%" height="15" fill="rgb(244,125,51)" fg:x="147552" fg:w="34"/><text x="97.9265%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.02%)</title><rect x="97.6771%" y="597" width="0.0218%" height="15" fill="rgb(229,171,11)" fg:x="147553" fg:w="33"/><text x="97.9271%" y="607.50"></text></g><g><title>native_write_msr (33 samples, 0.02%)</title><rect x="97.6771%" y="581" width="0.0218%" height="15" fill="rgb(224,38,45)" fg:x="147553" fg:w="33"/><text x="97.9271%" y="591.50"></text></g><g><title>finish_task_switch (36 samples, 0.02%)</title><rect x="97.6765%" y="629" width="0.0238%" height="15" fill="rgb(237,27,7)" fg:x="147552" fg:w="36"/><text x="97.9265%" y="639.50"></text></g><g><title>ObjectMonitor::enter (53 samples, 0.04%)</title><rect x="97.6659%" y="837" width="0.0351%" height="15" fill="rgb(216,52,7)" fg:x="147536" fg:w="53"/><text x="97.9159%" y="847.50"></text></g><g><title>os::PlatformEvent::park (52 samples, 0.03%)</title><rect x="97.6665%" y="821" width="0.0344%" height="15" fill="rgb(243,11,11)" fg:x="147537" fg:w="52"/><text x="97.9165%" y="831.50"></text></g><g><title>__pthread_cond_wait (40 samples, 0.03%)</title><rect x="97.6745%" y="805" width="0.0265%" height="15" fill="rgb(253,167,20)" fg:x="147549" fg:w="40"/><text x="97.9245%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (40 samples, 0.03%)</title><rect x="97.6745%" y="789" width="0.0265%" height="15" fill="rgb(215,207,5)" fg:x="147549" fg:w="40"/><text x="97.9245%" y="799.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.03%)</title><rect x="97.6751%" y="773" width="0.0258%" height="15" fill="rgb(252,127,31)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.03%)</title><rect x="97.6751%" y="757" width="0.0258%" height="15" fill="rgb(209,106,27)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="767.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="97.6751%" y="741" width="0.0258%" height="15" fill="rgb(214,220,18)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="751.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.03%)</title><rect x="97.6751%" y="725" width="0.0258%" height="15" fill="rgb(237,89,12)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="735.50"></text></g><g><title>do_futex (39 samples, 0.03%)</title><rect x="97.6751%" y="709" width="0.0258%" height="15" fill="rgb(209,167,36)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="719.50"></text></g><g><title>futex_wait (39 samples, 0.03%)</title><rect x="97.6751%" y="693" width="0.0258%" height="15" fill="rgb(243,45,22)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="703.50"></text></g><g><title>futex_wait_queue_me (39 samples, 0.03%)</title><rect x="97.6751%" y="677" width="0.0258%" height="15" fill="rgb(239,2,46)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="687.50"></text></g><g><title>schedule (39 samples, 0.03%)</title><rect x="97.6751%" y="661" width="0.0258%" height="15" fill="rgb(241,101,0)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="671.50"></text></g><g><title>__schedule (39 samples, 0.03%)</title><rect x="97.6751%" y="645" width="0.0258%" height="15" fill="rgb(244,34,31)" fg:x="147550" fg:w="39"/><text x="97.9251%" y="655.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (54 samples, 0.04%)</title><rect x="97.6659%" y="853" width="0.0357%" height="15" fill="rgb(248,23,22)" fg:x="147536" fg:w="54"/><text x="97.9159%" y="863.50"></text></g><g><title>SharedRuntime::handle_wrong_method_ic_miss (35 samples, 0.02%)</title><rect x="97.7135%" y="853" width="0.0232%" height="15" fill="rgb(218,27,48)" fg:x="147608" fg:w="35"/><text x="97.9635%" y="863.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (34 samples, 0.02%)</title><rect x="97.7142%" y="837" width="0.0225%" height="15" fill="rgb(232,78,1)" fg:x="147609" fg:w="34"/><text x="97.9642%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (31 samples, 0.02%)</title><rect x="97.7638%" y="805" width="0.0205%" height="15" fill="rgb(233,169,12)" fg:x="147684" fg:w="31"/><text x="98.0138%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (31 samples, 0.02%)</title><rect x="97.7638%" y="789" width="0.0205%" height="15" fill="rgb(225,222,54)" fg:x="147684" fg:w="31"/><text x="98.0138%" y="799.50"></text></g><g><title>KlassFactory::create_from_stream (45 samples, 0.03%)</title><rect x="97.7638%" y="821" width="0.0298%" height="15" fill="rgb(245,126,29)" fg:x="147684" fg:w="45"/><text x="98.0138%" y="831.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (62 samples, 0.04%)</title><rect x="97.7532%" y="853" width="0.0410%" height="15" fill="rgb(241,63,48)" fg:x="147668" fg:w="62"/><text x="98.0032%" y="863.50"></text></g><g><title>SystemDictionary::parse_stream (59 samples, 0.04%)</title><rect x="97.7552%" y="837" width="0.0391%" height="15" fill="rgb(235,126,38)" fg:x="147671" fg:w="59"/><text x="98.0052%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (16 samples, 0.01%)</title><rect x="97.7956%" y="773" width="0.0106%" height="15" fill="rgb(232,96,49)" fg:x="147732" fg:w="16"/><text x="98.0456%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (16 samples, 0.01%)</title><rect x="97.7956%" y="757" width="0.0106%" height="15" fill="rgb(211,146,40)" fg:x="147732" fg:w="16"/><text x="98.0456%" y="767.50"></text></g><g><title>KlassFactory::create_from_stream (18 samples, 0.01%)</title><rect x="97.7956%" y="789" width="0.0119%" height="15" fill="rgb(247,93,44)" fg:x="147732" fg:w="18"/><text x="98.0456%" y="799.50"></text></g><g><title>JVM_DefineClass (23 samples, 0.02%)</title><rect x="97.7943%" y="837" width="0.0152%" height="15" fill="rgb(251,41,49)" fg:x="147730" fg:w="23"/><text x="98.0443%" y="847.50"></text></g><g><title>jvm_define_class_common (23 samples, 0.02%)</title><rect x="97.7943%" y="821" width="0.0152%" height="15" fill="rgb(218,155,12)" fg:x="147730" fg:w="23"/><text x="98.0443%" y="831.50"></text></g><g><title>SystemDictionary::resolve_from_stream (21 samples, 0.01%)</title><rect x="97.7956%" y="805" width="0.0139%" height="15" fill="rgb(221,161,30)" fg:x="147732" fg:w="21"/><text x="98.0456%" y="815.50"></text></g><g><title>Unsafe_DefineClass0 (24 samples, 0.02%)</title><rect x="97.7943%" y="853" width="0.0159%" height="15" fill="rgb(221,179,11)" fg:x="147730" fg:w="24"/><text x="98.0443%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="97.8300%" y="629" width="0.0132%" height="15" fill="rgb(224,170,48)" fg:x="147784" fg:w="20"/><text x="98.0800%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="97.8300%" y="613" width="0.0132%" height="15" fill="rgb(223,117,5)" fg:x="147784" fg:w="20"/><text x="98.0800%" y="623.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="97.8307%" y="597" width="0.0126%" height="15" fill="rgb(209,52,20)" fg:x="147785" fg:w="19"/><text x="98.0807%" y="607.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="97.8300%" y="645" width="0.0139%" height="15" fill="rgb(209,19,41)" fg:x="147784" fg:w="21"/><text x="98.0800%" y="655.50"></text></g><g><title>futex_wait_queue_me (25 samples, 0.02%)</title><rect x="97.8280%" y="693" width="0.0165%" height="15" fill="rgb(210,177,12)" fg:x="147781" fg:w="25"/><text x="98.0780%" y="703.50"></text></g><g><title>schedule (24 samples, 0.02%)</title><rect x="97.8287%" y="677" width="0.0159%" height="15" fill="rgb(211,159,37)" fg:x="147782" fg:w="24"/><text x="98.0787%" y="687.50"></text></g><g><title>__schedule (24 samples, 0.02%)</title><rect x="97.8287%" y="661" width="0.0159%" height="15" fill="rgb(209,20,2)" fg:x="147782" fg:w="24"/><text x="98.0787%" y="671.50"></text></g><g><title>__pthread_cond_timedwait (27 samples, 0.02%)</title><rect x="97.8280%" y="821" width="0.0179%" height="15" fill="rgb(244,3,46)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="97.8280%" y="805" width="0.0179%" height="15" fill="rgb(220,94,38)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (27 samples, 0.02%)</title><rect x="97.8280%" y="789" width="0.0179%" height="15" fill="rgb(253,14,31)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="97.8280%" y="773" width="0.0179%" height="15" fill="rgb(234,176,13)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="783.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="97.8280%" y="757" width="0.0179%" height="15" fill="rgb(218,62,25)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="767.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="97.8280%" y="741" width="0.0179%" height="15" fill="rgb(216,124,40)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="751.50"></text></g><g><title>do_futex (27 samples, 0.02%)</title><rect x="97.8280%" y="725" width="0.0179%" height="15" fill="rgb(228,170,12)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="735.50"></text></g><g><title>futex_wait (27 samples, 0.02%)</title><rect x="97.8280%" y="709" width="0.0179%" height="15" fill="rgb(231,226,5)" fg:x="147781" fg:w="27"/><text x="98.0780%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (303 samples, 0.20%)</title><rect x="97.8645%" y="629" width="0.2006%" height="15" fill="rgb(237,122,22)" fg:x="147836" fg:w="303"/><text x="98.1145%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (301 samples, 0.20%)</title><rect x="97.8658%" y="613" width="0.1993%" height="15" fill="rgb(209,185,25)" fg:x="147838" fg:w="301"/><text x="98.1158%" y="623.50"></text></g><g><title>native_write_msr (301 samples, 0.20%)</title><rect x="97.8658%" y="597" width="0.1993%" height="15" fill="rgb(228,200,32)" fg:x="147838" fg:w="301"/><text x="98.1158%" y="607.50"></text></g><g><title>finish_task_switch (312 samples, 0.21%)</title><rect x="97.8625%" y="645" width="0.2065%" height="15" fill="rgb(217,140,10)" fg:x="147833" fg:w="312"/><text x="98.1125%" y="655.50"></text></g><g><title>futex_wait_queue_me (345 samples, 0.23%)</title><rect x="97.8532%" y="693" width="0.2284%" height="15" fill="rgb(253,17,24)" fg:x="147819" fg:w="345"/><text x="98.1032%" y="703.50"></text></g><g><title>schedule (344 samples, 0.23%)</title><rect x="97.8539%" y="677" width="0.2277%" height="15" fill="rgb(212,61,6)" fg:x="147820" fg:w="344"/><text x="98.1039%" y="687.50"></text></g><g><title>__schedule (343 samples, 0.23%)</title><rect x="97.8545%" y="661" width="0.2271%" height="15" fill="rgb(205,14,25)" fg:x="147821" fg:w="343"/><text x="98.1045%" y="671.50"></text></g><g><title>__x64_sys_futex (351 samples, 0.23%)</title><rect x="97.8499%" y="741" width="0.2324%" height="15" fill="rgb(232,69,41)" fg:x="147814" fg:w="351"/><text x="98.0999%" y="751.50"></text></g><g><title>do_futex (350 samples, 0.23%)</title><rect x="97.8506%" y="725" width="0.2317%" height="15" fill="rgb(241,106,47)" fg:x="147815" fg:w="350"/><text x="98.1006%" y="735.50"></text></g><g><title>futex_wait (350 samples, 0.23%)</title><rect x="97.8506%" y="709" width="0.2317%" height="15" fill="rgb(210,213,53)" fg:x="147815" fg:w="350"/><text x="98.1006%" y="719.50"></text></g><g><title>do_syscall_64 (353 samples, 0.23%)</title><rect x="97.8492%" y="757" width="0.2337%" height="15" fill="rgb(253,175,27)" fg:x="147813" fg:w="353"/><text x="98.0992%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (369 samples, 0.24%)</title><rect x="97.8486%" y="773" width="0.2443%" height="15" fill="rgb(211,171,24)" fg:x="147812" fg:w="369"/><text x="98.0986%" y="783.50"></text></g><g><title>__pthread_cond_wait (374 samples, 0.25%)</title><rect x="97.8459%" y="821" width="0.2476%" height="15" fill="rgb(229,80,7)" fg:x="147808" fg:w="374"/><text x="98.0959%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (374 samples, 0.25%)</title><rect x="97.8459%" y="805" width="0.2476%" height="15" fill="rgb(212,46,39)" fg:x="147808" fg:w="374"/><text x="98.0959%" y="815.50"></text></g><g><title>futex_wait_cancelable (370 samples, 0.24%)</title><rect x="97.8486%" y="789" width="0.2449%" height="15" fill="rgb(240,80,45)" fg:x="147812" fg:w="370"/><text x="98.0986%" y="799.50"></text></g><g><title>Unsafe_Park (434 samples, 0.29%)</title><rect x="97.8122%" y="853" width="0.2873%" height="15" fill="rgb(253,177,40)" fg:x="147757" fg:w="434"/><text x="98.0622%" y="863.50"></text></g><g><title>Parker::park (431 samples, 0.29%)</title><rect x="97.8141%" y="837" width="0.2853%" height="15" fill="rgb(249,200,15)" fg:x="147760" fg:w="431"/><text x="98.0641%" y="847.50"></text></g><g><title>enqueue_entity (20 samples, 0.01%)</title><rect x="98.1385%" y="661" width="0.0132%" height="15" fill="rgb(217,78,26)" fg:x="148250" fg:w="20"/><text x="98.3885%" y="671.50"></text></g><g><title>enqueue_task_fair (27 samples, 0.02%)</title><rect x="98.1345%" y="677" width="0.0179%" height="15" fill="rgb(254,151,32)" fg:x="148244" fg:w="27"/><text x="98.3845%" y="687.50"></text></g><g><title>ttwu_do_activate (44 samples, 0.03%)</title><rect x="98.1339%" y="693" width="0.0291%" height="15" fill="rgb(226,165,27)" fg:x="148243" fg:w="44"/><text x="98.3839%" y="703.50"></text></g><g><title>psi_task_change (16 samples, 0.01%)</title><rect x="98.1524%" y="677" width="0.0106%" height="15" fill="rgb(250,206,4)" fg:x="148271" fg:w="16"/><text x="98.4024%" y="687.50"></text></g><g><title>__x64_sys_futex (76 samples, 0.05%)</title><rect x="98.1147%" y="773" width="0.0503%" height="15" fill="rgb(231,229,27)" fg:x="148214" fg:w="76"/><text x="98.3647%" y="783.50"></text></g><g><title>do_futex (76 samples, 0.05%)</title><rect x="98.1147%" y="757" width="0.0503%" height="15" fill="rgb(239,217,8)" fg:x="148214" fg:w="76"/><text x="98.3647%" y="767.50"></text></g><g><title>futex_wake (76 samples, 0.05%)</title><rect x="98.1147%" y="741" width="0.0503%" height="15" fill="rgb(225,204,27)" fg:x="148214" fg:w="76"/><text x="98.3647%" y="751.50"></text></g><g><title>wake_up_q (59 samples, 0.04%)</title><rect x="98.1259%" y="725" width="0.0391%" height="15" fill="rgb(230,56,32)" fg:x="148231" fg:w="59"/><text x="98.3759%" y="735.50"></text></g><g><title>try_to_wake_up (59 samples, 0.04%)</title><rect x="98.1259%" y="709" width="0.0391%" height="15" fill="rgb(222,56,27)" fg:x="148231" fg:w="59"/><text x="98.3759%" y="719.50"></text></g><g><title>do_syscall_64 (80 samples, 0.05%)</title><rect x="98.1127%" y="789" width="0.0530%" height="15" fill="rgb(253,108,27)" fg:x="148211" fg:w="80"/><text x="98.3627%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.06%)</title><rect x="98.1127%" y="805" width="0.0622%" height="15" fill="rgb(212,87,36)" fg:x="148211" fg:w="94"/><text x="98.3627%" y="815.50"></text></g><g><title>Unsafe_Unpark (114 samples, 0.08%)</title><rect x="98.1001%" y="853" width="0.0755%" height="15" fill="rgb(247,82,36)" fg:x="148192" fg:w="114"/><text x="98.3501%" y="863.50"></text></g><g><title>__pthread_cond_signal (101 samples, 0.07%)</title><rect x="98.1087%" y="837" width="0.0669%" height="15" fill="rgb(222,143,9)" fg:x="148205" fg:w="101"/><text x="98.3587%" y="847.50"></text></g><g><title>futex_wake (97 samples, 0.06%)</title><rect x="98.1114%" y="821" width="0.0642%" height="15" fill="rgb(238,162,48)" fg:x="148209" fg:w="97"/><text x="98.3614%" y="831.50"></text></g><g><title>kernel_init_free_pages (31 samples, 0.02%)</title><rect x="98.2464%" y="725" width="0.0205%" height="15" fill="rgb(221,59,43)" fg:x="148413" fg:w="31"/><text x="98.4964%" y="735.50"></text></g><g><title>clear_page_erms (30 samples, 0.02%)</title><rect x="98.2471%" y="709" width="0.0199%" height="15" fill="rgb(205,166,41)" fg:x="148414" fg:w="30"/><text x="98.4971%" y="719.50"></text></g><g><title>__alloc_pages_nodemask (64 samples, 0.04%)</title><rect x="98.2252%" y="773" width="0.0424%" height="15" fill="rgb(241,186,40)" fg:x="148381" fg:w="64"/><text x="98.4752%" y="783.50"></text></g><g><title>get_page_from_freelist (51 samples, 0.03%)</title><rect x="98.2338%" y="757" width="0.0338%" height="15" fill="rgb(216,119,35)" fg:x="148394" fg:w="51"/><text x="98.4838%" y="767.50"></text></g><g><title>prep_new_page (32 samples, 0.02%)</title><rect x="98.2464%" y="741" width="0.0212%" height="15" fill="rgb(208,68,38)" fg:x="148413" fg:w="32"/><text x="98.4964%" y="751.50"></text></g><g><title>alloc_pages_vma (71 samples, 0.05%)</title><rect x="98.2213%" y="789" width="0.0470%" height="15" fill="rgb(217,113,1)" fg:x="148375" fg:w="71"/><text x="98.4713%" y="799.50"></text></g><g><title>__pagevec_lru_add_fn (18 samples, 0.01%)</title><rect x="98.2822%" y="757" width="0.0119%" height="15" fill="rgb(242,153,3)" fg:x="148467" fg:w="18"/><text x="98.5322%" y="767.50"></text></g><g><title>lru_cache_add (32 samples, 0.02%)</title><rect x="98.2749%" y="789" width="0.0212%" height="15" fill="rgb(229,76,35)" fg:x="148456" fg:w="32"/><text x="98.5249%" y="799.50"></text></g><g><title>pagevec_lru_move_fn (26 samples, 0.02%)</title><rect x="98.2789%" y="773" width="0.0172%" height="15" fill="rgb(229,125,34)" fg:x="148462" fg:w="26"/><text x="98.5289%" y="783.50"></text></g><g><title>mem_cgroup_charge (30 samples, 0.02%)</title><rect x="98.2961%" y="789" width="0.0199%" height="15" fill="rgb(238,179,36)" fg:x="148488" fg:w="30"/><text x="98.5461%" y="799.50"></text></g><g><title>handle_mm_fault (201 samples, 0.13%)</title><rect x="98.1974%" y="805" width="0.1331%" height="15" fill="rgb(244,183,19)" fg:x="148339" fg:w="201"/><text x="98.4474%" y="815.50"></text></g><g><title>do_user_addr_fault (218 samples, 0.14%)</title><rect x="98.1875%" y="821" width="0.1443%" height="15" fill="rgb(216,85,49)" fg:x="148324" fg:w="218"/><text x="98.4375%" y="831.50"></text></g><g><title>exc_page_fault (221 samples, 0.15%)</title><rect x="98.1862%" y="837" width="0.1463%" height="15" fill="rgb(208,161,47)" fg:x="148322" fg:w="221"/><text x="98.4362%" y="847.50"></text></g><g><title>asm_exc_page_fault (227 samples, 0.15%)</title><rect x="98.1855%" y="853" width="0.1503%" height="15" fill="rgb(233,210,18)" fg:x="148321" fg:w="227"/><text x="98.4355%" y="863.50"></text></g><g><title>tick_sched_handle (18 samples, 0.01%)</title><rect x="98.3477%" y="757" width="0.0119%" height="15" fill="rgb(205,104,42)" fg:x="148566" fg:w="18"/><text x="98.5977%" y="767.50"></text></g><g><title>update_process_times (16 samples, 0.01%)</title><rect x="98.3490%" y="741" width="0.0106%" height="15" fill="rgb(248,90,43)" fg:x="148568" fg:w="16"/><text x="98.5990%" y="751.50"></text></g><g><title>tick_sched_timer (20 samples, 0.01%)</title><rect x="98.3477%" y="773" width="0.0132%" height="15" fill="rgb(206,198,11)" fg:x="148566" fg:w="20"/><text x="98.5977%" y="783.50"></text></g><g><title>__hrtimer_run_queues (27 samples, 0.02%)</title><rect x="98.3437%" y="789" width="0.0179%" height="15" fill="rgb(239,165,27)" fg:x="148560" fg:w="27"/><text x="98.5937%" y="799.50"></text></g><g><title>__sysvec_apic_timer_interrupt (34 samples, 0.02%)</title><rect x="98.3411%" y="821" width="0.0225%" height="15" fill="rgb(246,44,32)" fg:x="148556" fg:w="34"/><text x="98.5911%" y="831.50"></text></g><g><title>hrtimer_interrupt (33 samples, 0.02%)</title><rect x="98.3417%" y="805" width="0.0218%" height="15" fill="rgb(252,65,42)" fg:x="148557" fg:w="33"/><text x="98.5917%" y="815.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (64 samples, 0.04%)</title><rect x="98.3358%" y="853" width="0.0424%" height="15" fill="rgb(246,197,18)" fg:x="148548" fg:w="64"/><text x="98.5858%" y="863.50"></text></g><g><title>sysvec_apic_timer_interrupt (56 samples, 0.04%)</title><rect x="98.3411%" y="837" width="0.0371%" height="15" fill="rgb(216,192,4)" fg:x="148556" fg:w="56"/><text x="98.5911%" y="847.50"></text></g><g><title>irq_exit_rcu (22 samples, 0.01%)</title><rect x="98.3636%" y="821" width="0.0146%" height="15" fill="rgb(208,117,10)" fg:x="148590" fg:w="22"/><text x="98.6136%" y="831.50"></text></g><g><title>do_softirq_own_stack (21 samples, 0.01%)</title><rect x="98.3642%" y="805" width="0.0139%" height="15" fill="rgb(240,61,47)" fg:x="148591" fg:w="21"/><text x="98.6142%" y="815.50"></text></g><g><title>asm_call_sysvec_on_stack (21 samples, 0.01%)</title><rect x="98.3642%" y="789" width="0.0139%" height="15" fill="rgb(228,178,21)" fg:x="148591" fg:w="21"/><text x="98.6142%" y="799.50"></text></g><g><title>__softirqentry_text_start (21 samples, 0.01%)</title><rect x="98.3642%" y="773" width="0.0139%" height="15" fill="rgb(219,96,54)" fg:x="148591" fg:w="21"/><text x="98.6142%" y="783.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="98.3795%" y="773" width="0.0192%" height="15" fill="rgb(250,177,24)" fg:x="148614" fg:w="29"/><text x="98.6295%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (29 samples, 0.02%)</title><rect x="98.3795%" y="757" width="0.0192%" height="15" fill="rgb(242,154,46)" fg:x="148614" fg:w="29"/><text x="98.6295%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="98.3801%" y="741" width="0.0185%" height="15" fill="rgb(226,176,29)" fg:x="148615" fg:w="28"/><text x="98.6301%" y="751.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="98.3801%" y="725" width="0.0185%" height="15" fill="rgb(226,29,2)" fg:x="148615" fg:w="28"/><text x="98.6301%" y="735.50"></text></g><g><title>irqentry_exit_to_user_mode (36 samples, 0.02%)</title><rect x="98.3781%" y="837" width="0.0238%" height="15" fill="rgb(237,104,14)" fg:x="148612" fg:w="36"/><text x="98.6281%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (36 samples, 0.02%)</title><rect x="98.3781%" y="821" width="0.0238%" height="15" fill="rgb(245,207,31)" fg:x="148612" fg:w="36"/><text x="98.6281%" y="831.50"></text></g><g><title>schedule (36 samples, 0.02%)</title><rect x="98.3781%" y="805" width="0.0238%" height="15" fill="rgb(229,211,45)" fg:x="148612" fg:w="36"/><text x="98.6281%" y="815.50"></text></g><g><title>__schedule (36 samples, 0.02%)</title><rect x="98.3781%" y="789" width="0.0238%" height="15" fill="rgb(229,113,15)" fg:x="148612" fg:w="36"/><text x="98.6281%" y="799.50"></text></g><g><title>asm_sysvec_reschedule_ipi (37 samples, 0.02%)</title><rect x="98.3781%" y="853" width="0.0245%" height="15" fill="rgb(237,147,15)" fg:x="148612" fg:w="37"/><text x="98.6281%" y="863.50"></text></g><g><title>error_entry (18 samples, 0.01%)</title><rect x="98.4106%" y="853" width="0.0119%" height="15" fill="rgb(244,120,12)" fg:x="148661" fg:w="18"/><text x="98.6606%" y="863.50"></text></g><g><title>sync_regs (16 samples, 0.01%)</title><rect x="98.4119%" y="837" width="0.0106%" height="15" fill="rgb(205,120,12)" fg:x="148663" fg:w="16"/><text x="98.6619%" y="847.50"></text></g><g><title>fileDescriptorClose (16 samples, 0.01%)</title><rect x="98.4238%" y="853" width="0.0106%" height="15" fill="rgb(231,26,45)" fg:x="148681" fg:w="16"/><text x="98.6738%" y="863.50"></text></g><g><title>do_filp_open (40 samples, 0.03%)</title><rect x="98.4523%" y="757" width="0.0265%" height="15" fill="rgb(246,98,1)" fg:x="148724" fg:w="40"/><text x="98.7023%" y="767.50"></text></g><g><title>path_openat (40 samples, 0.03%)</title><rect x="98.4523%" y="741" width="0.0265%" height="15" fill="rgb(207,68,45)" fg:x="148724" fg:w="40"/><text x="98.7023%" y="751.50"></text></g><g><title>__libc_open64 (49 samples, 0.03%)</title><rect x="98.4477%" y="837" width="0.0324%" height="15" fill="rgb(231,27,38)" fg:x="148717" fg:w="49"/><text x="98.6977%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.03%)</title><rect x="98.4496%" y="821" width="0.0305%" height="15" fill="rgb(214,223,3)" fg:x="148720" fg:w="46"/><text x="98.6996%" y="831.50"></text></g><g><title>do_syscall_64 (46 samples, 0.03%)</title><rect x="98.4496%" y="805" width="0.0305%" height="15" fill="rgb(228,195,46)" fg:x="148720" fg:w="46"/><text x="98.6996%" y="815.50"></text></g><g><title>__x64_sys_openat (46 samples, 0.03%)</title><rect x="98.4496%" y="789" width="0.0305%" height="15" fill="rgb(231,100,42)" fg:x="148720" fg:w="46"/><text x="98.6996%" y="799.50"></text></g><g><title>do_sys_openat2 (46 samples, 0.03%)</title><rect x="98.4496%" y="773" width="0.0305%" height="15" fill="rgb(236,53,4)" fg:x="148720" fg:w="46"/><text x="98.6996%" y="783.50"></text></g><g><title>fileOpen (72 samples, 0.05%)</title><rect x="98.4344%" y="853" width="0.0477%" height="15" fill="rgb(230,152,12)" fg:x="148697" fg:w="72"/><text x="98.6844%" y="863.50"></text></g><g><title>jni_IsAssignableFrom (19 samples, 0.01%)</title><rect x="98.4940%" y="853" width="0.0126%" height="15" fill="rgb(226,101,19)" fg:x="148787" fg:w="19"/><text x="98.7440%" y="863.50"></text></g><g><title>os::javaTimeNanos (21 samples, 0.01%)</title><rect x="98.5086%" y="853" width="0.0139%" height="15" fill="rgb(250,149,32)" fg:x="148809" fg:w="21"/><text x="98.7586%" y="863.50"></text></g><g><title>__GI___clock_gettime (20 samples, 0.01%)</title><rect x="98.5092%" y="837" width="0.0132%" height="15" fill="rgb(232,178,12)" fg:x="148810" fg:w="20"/><text x="98.7592%" y="847.50"></text></g><g><title>[perf-983083.map] (36,542 samples, 24.19%)</title><rect x="74.3350%" y="869" width="24.1901%" height="15" fill="rgb(246,151,17)" fg:x="112292" fg:w="36542"/><text x="74.5850%" y="879.50">[perf-983083.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (16 samples, 0.01%)</title><rect x="98.5410%" y="837" width="0.0106%" height="15" fill="rgb(252,17,51)" fg:x="148858" fg:w="16"/><text x="98.7910%" y="847.50"></text></g><g><title>SharedRuntime::find_callee_method (21 samples, 0.01%)</title><rect x="98.5397%" y="853" width="0.0139%" height="15" fill="rgb(250,207,23)" fg:x="148856" fg:w="21"/><text x="98.7897%" y="863.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (18 samples, 0.01%)</title><rect x="98.5536%" y="853" width="0.0119%" height="15" fill="rgb(205,27,5)" fg:x="148877" fg:w="18"/><text x="98.8036%" y="863.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (18 samples, 0.01%)</title><rect x="98.5536%" y="837" width="0.0119%" height="15" fill="rgb(224,32,19)" fg:x="148877" fg:w="18"/><text x="98.8036%" y="847.50"></text></g><g><title>SharedRuntime::handle_wrong_method (22 samples, 0.01%)</title><rect x="98.5655%" y="853" width="0.0146%" height="15" fill="rgb(247,214,40)" fg:x="148895" fg:w="22"/><text x="98.8155%" y="863.50"></text></g><g><title>SharedRuntime::reresolve_call_site (22 samples, 0.01%)</title><rect x="98.5655%" y="837" width="0.0146%" height="15" fill="rgb(239,199,17)" fg:x="148895" fg:w="22"/><text x="98.8155%" y="847.50"></text></g><g><title>LinkResolver::resolve_method_statically (39 samples, 0.03%)</title><rect x="98.6204%" y="805" width="0.0258%" height="15" fill="rgb(251,159,9)" fg:x="148978" fg:w="39"/><text x="98.8704%" y="815.50"></text></g><g><title>LinkResolver::resolve_method (24 samples, 0.02%)</title><rect x="98.6304%" y="789" width="0.0159%" height="15" fill="rgb(225,78,32)" fg:x="148993" fg:w="24"/><text x="98.8804%" y="799.50"></text></g><g><title>Bytecode_invoke::static_target (40 samples, 0.03%)</title><rect x="98.6204%" y="821" width="0.0265%" height="15" fill="rgb(206,97,47)" fg:x="148978" fg:w="40"/><text x="98.8704%" y="831.50"></text></g><g><title>LinkResolver::resolve_invoke (29 samples, 0.02%)</title><rect x="98.6469%" y="821" width="0.0192%" height="15" fill="rgb(227,107,4)" fg:x="149018" fg:w="29"/><text x="98.8969%" y="831.50"></text></g><g><title>OopMapStream::find_next (20 samples, 0.01%)</title><rect x="98.6880%" y="789" width="0.0132%" height="15" fill="rgb(241,146,50)" fg:x="149080" fg:w="20"/><text x="98.9380%" y="799.50"></text></g><g><title>frame::sender (42 samples, 0.03%)</title><rect x="98.6741%" y="821" width="0.0278%" height="15" fill="rgb(232,92,30)" fg:x="149059" fg:w="42"/><text x="98.9241%" y="831.50"></text></g><g><title>OopMapSet::update_register_map (39 samples, 0.03%)</title><rect x="98.6760%" y="805" width="0.0258%" height="15" fill="rgb(222,0,40)" fg:x="149062" fg:w="39"/><text x="98.9260%" y="815.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (129 samples, 0.09%)</title><rect x="98.6191%" y="837" width="0.0854%" height="15" fill="rgb(219,54,33)" fg:x="148976" fg:w="129"/><text x="98.8691%" y="847.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (197 samples, 0.13%)</title><rect x="98.5801%" y="853" width="0.1304%" height="15" fill="rgb(226,209,28)" fg:x="148917" fg:w="197"/><text x="98.8301%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (105 samples, 0.07%)</title><rect x="98.7171%" y="581" width="0.0695%" height="15" fill="rgb(254,205,35)" fg:x="149124" fg:w="105"/><text x="98.9671%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.07%)</title><rect x="98.7204%" y="565" width="0.0662%" height="15" fill="rgb(230,159,3)" fg:x="149129" fg:w="100"/><text x="98.9704%" y="575.50"></text></g><g><title>native_write_msr (99 samples, 0.07%)</title><rect x="98.7211%" y="549" width="0.0655%" height="15" fill="rgb(232,190,24)" fg:x="149130" fg:w="99"/><text x="98.9711%" y="559.50"></text></g><g><title>finish_task_switch (109 samples, 0.07%)</title><rect x="98.7164%" y="597" width="0.0722%" height="15" fill="rgb(217,227,44)" fg:x="149123" fg:w="109"/><text x="98.9664%" y="607.50"></text></g><g><title>do_syscall_64 (118 samples, 0.08%)</title><rect x="98.7131%" y="709" width="0.0781%" height="15" fill="rgb(236,211,1)" fg:x="149118" fg:w="118"/><text x="98.9631%" y="719.50"></text></g><g><title>__x64_sys_futex (118 samples, 0.08%)</title><rect x="98.7131%" y="693" width="0.0781%" height="15" fill="rgb(250,127,46)" fg:x="149118" fg:w="118"/><text x="98.9631%" y="703.50"></text></g><g><title>do_futex (117 samples, 0.08%)</title><rect x="98.7138%" y="677" width="0.0775%" height="15" fill="rgb(229,213,6)" fg:x="149119" fg:w="117"/><text x="98.9638%" y="687.50"></text></g><g><title>futex_wait (117 samples, 0.08%)</title><rect x="98.7138%" y="661" width="0.0775%" height="15" fill="rgb(237,15,36)" fg:x="149119" fg:w="117"/><text x="98.9638%" y="671.50"></text></g><g><title>futex_wait_queue_me (117 samples, 0.08%)</title><rect x="98.7138%" y="645" width="0.0775%" height="15" fill="rgb(213,131,41)" fg:x="149119" fg:w="117"/><text x="98.9638%" y="655.50"></text></g><g><title>schedule (116 samples, 0.08%)</title><rect x="98.7144%" y="629" width="0.0768%" height="15" fill="rgb(225,82,44)" fg:x="149120" fg:w="116"/><text x="98.9644%" y="639.50"></text></g><g><title>__schedule (116 samples, 0.08%)</title><rect x="98.7144%" y="613" width="0.0768%" height="15" fill="rgb(249,42,11)" fg:x="149120" fg:w="116"/><text x="98.9644%" y="623.50"></text></g><g><title>Monitor::lock_without_safepoint_check (126 samples, 0.08%)</title><rect x="98.7111%" y="821" width="0.0834%" height="15" fill="rgb(253,11,29)" fg:x="149115" fg:w="126"/><text x="98.9611%" y="831.50"></text></g><g><title>Monitor::ILock (126 samples, 0.08%)</title><rect x="98.7111%" y="805" width="0.0834%" height="15" fill="rgb(206,8,54)" fg:x="149115" fg:w="126"/><text x="98.9611%" y="815.50"></text></g><g><title>os::PlatformEvent::park (125 samples, 0.08%)</title><rect x="98.7118%" y="789" width="0.0827%" height="15" fill="rgb(222,186,2)" fg:x="149116" fg:w="125"/><text x="98.9618%" y="799.50"></text></g><g><title>__pthread_cond_wait (125 samples, 0.08%)</title><rect x="98.7118%" y="773" width="0.0827%" height="15" fill="rgb(221,206,53)" fg:x="149116" fg:w="125"/><text x="98.9618%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (125 samples, 0.08%)</title><rect x="98.7118%" y="757" width="0.0827%" height="15" fill="rgb(230,150,21)" fg:x="149116" fg:w="125"/><text x="98.9618%" y="767.50"></text></g><g><title>futex_wait_cancelable (124 samples, 0.08%)</title><rect x="98.7124%" y="741" width="0.0821%" height="15" fill="rgb(253,202,10)" fg:x="149117" fg:w="124"/><text x="98.9624%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.08%)</title><rect x="98.7131%" y="725" width="0.0814%" height="15" fill="rgb(238,109,40)" fg:x="149118" fg:w="123"/><text x="98.9631%" y="735.50"></text></g><g><title>SafepointSynchronize::block (135 samples, 0.09%)</title><rect x="98.7105%" y="837" width="0.0894%" height="15" fill="rgb(247,120,22)" fg:x="149114" fg:w="135"/><text x="98.9605%" y="847.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (136 samples, 0.09%)</title><rect x="98.7105%" y="853" width="0.0900%" height="15" fill="rgb(207,43,30)" fg:x="149114" fg:w="136"/><text x="98.9605%" y="863.50"></text></g><g><title>__fdget_pos (22 samples, 0.01%)</title><rect x="98.8508%" y="741" width="0.0146%" height="15" fill="rgb(213,211,24)" fg:x="149326" fg:w="22"/><text x="99.1008%" y="751.50"></text></g><g><title>copy_page_to_iter (435 samples, 0.29%)</title><rect x="98.9263%" y="693" width="0.2880%" height="15" fill="rgb(239,73,39)" fg:x="149440" fg:w="435"/><text x="99.1763%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (411 samples, 0.27%)</title><rect x="98.9422%" y="677" width="0.2721%" height="15" fill="rgb(245,182,19)" fg:x="149464" fg:w="411"/><text x="99.1922%" y="687.50"></text></g><g><title>__activate_page (16 samples, 0.01%)</title><rect x="99.2255%" y="661" width="0.0106%" height="15" fill="rgb(247,143,26)" fg:x="149892" fg:w="16"/><text x="99.4755%" y="671.50"></text></g><g><title>mark_page_accessed (34 samples, 0.02%)</title><rect x="99.2142%" y="693" width="0.0225%" height="15" fill="rgb(228,191,23)" fg:x="149875" fg:w="34"/><text x="99.4642%" y="703.50"></text></g><g><title>pagevec_lru_move_fn (19 samples, 0.01%)</title><rect x="99.2242%" y="677" width="0.0126%" height="15" fill="rgb(253,165,31)" fg:x="149890" fg:w="19"/><text x="99.4742%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (73 samples, 0.05%)</title><rect x="99.2374%" y="677" width="0.0483%" height="15" fill="rgb(234,138,20)" fg:x="149910" fg:w="73"/><text x="99.4874%" y="687.50"></text></g><g><title>get_page_from_freelist (64 samples, 0.04%)</title><rect x="99.2434%" y="661" width="0.0424%" height="15" fill="rgb(218,191,29)" fg:x="149919" fg:w="64"/><text x="99.4934%" y="671.50"></text></g><g><title>prep_new_page (47 samples, 0.03%)</title><rect x="99.2546%" y="645" width="0.0311%" height="15" fill="rgb(221,157,19)" fg:x="149936" fg:w="47"/><text x="99.5046%" y="655.50"></text></g><g><title>kernel_init_free_pages (44 samples, 0.03%)</title><rect x="99.2566%" y="629" width="0.0291%" height="15" fill="rgb(237,26,42)" fg:x="149939" fg:w="44"/><text x="99.5066%" y="639.50"></text></g><g><title>clear_page_erms (42 samples, 0.03%)</title><rect x="99.2579%" y="613" width="0.0278%" height="15" fill="rgb(220,163,24)" fg:x="149941" fg:w="42"/><text x="99.5079%" y="623.50"></text></g><g><title>__add_to_page_cache_locked (65 samples, 0.04%)</title><rect x="99.2870%" y="661" width="0.0430%" height="15" fill="rgb(242,115,20)" fg:x="149985" fg:w="65"/><text x="99.5370%" y="671.50"></text></g><g><title>lru_cache_add (26 samples, 0.02%)</title><rect x="99.3301%" y="661" width="0.0172%" height="15" fill="rgb(210,206,9)" fg:x="150050" fg:w="26"/><text x="99.5801%" y="671.50"></text></g><g><title>pagevec_lru_move_fn (23 samples, 0.02%)</title><rect x="99.3321%" y="645" width="0.0152%" height="15" fill="rgb(208,71,17)" fg:x="150053" fg:w="23"/><text x="99.5821%" y="655.50"></text></g><g><title>add_to_page_cache_lru (125 samples, 0.08%)</title><rect x="99.2857%" y="677" width="0.0827%" height="15" fill="rgb(233,7,5)" fg:x="149983" fg:w="125"/><text x="99.5357%" y="687.50"></text></g><g><title>workingset_refault (31 samples, 0.02%)</title><rect x="99.3479%" y="661" width="0.0205%" height="15" fill="rgb(207,92,33)" fg:x="150077" fg:w="31"/><text x="99.5979%" y="671.50"></text></g><g><title>submit_extent_page (27 samples, 0.02%)</title><rect x="99.3930%" y="629" width="0.0179%" height="15" fill="rgb(218,87,9)" fg:x="150145" fg:w="27"/><text x="99.6430%" y="639.50"></text></g><g><title>btrfs_bio_fits_in_stripe (21 samples, 0.01%)</title><rect x="99.3969%" y="613" width="0.0139%" height="15" fill="rgb(219,47,37)" fg:x="150151" fg:w="21"/><text x="99.6469%" y="623.50"></text></g><g><title>btrfs_get_io_geometry (21 samples, 0.01%)</title><rect x="99.3969%" y="597" width="0.0139%" height="15" fill="rgb(221,152,34)" fg:x="150151" fg:w="21"/><text x="99.6469%" y="607.50"></text></g><g><title>btrfs_do_readpage (50 samples, 0.03%)</title><rect x="99.3810%" y="645" width="0.0331%" height="15" fill="rgb(235,176,21)" fg:x="150127" fg:w="50"/><text x="99.6310%" y="655.50"></text></g><g><title>btrfs_lookup_csum (21 samples, 0.01%)</title><rect x="99.4228%" y="597" width="0.0139%" height="15" fill="rgb(232,212,21)" fg:x="150190" fg:w="21"/><text x="99.6728%" y="607.50"></text></g><g><title>btrfs_search_slot (20 samples, 0.01%)</title><rect x="99.4234%" y="581" width="0.0132%" height="15" fill="rgb(245,82,39)" fg:x="150191" fg:w="20"/><text x="99.6734%" y="591.50"></text></g><g><title>btrfs_lookup_bio_sums (24 samples, 0.02%)</title><rect x="99.4221%" y="613" width="0.0159%" height="15" fill="rgb(241,52,51)" fg:x="150189" fg:w="24"/><text x="99.6721%" y="623.50"></text></g><g><title>submit_one_bio (44 samples, 0.03%)</title><rect x="99.4208%" y="645" width="0.0291%" height="15" fill="rgb(219,91,24)" fg:x="150187" fg:w="44"/><text x="99.6708%" y="655.50"></text></g><g><title>btrfs_submit_data_bio (44 samples, 0.03%)</title><rect x="99.4208%" y="629" width="0.0291%" height="15" fill="rgb(241,142,12)" fg:x="150187" fg:w="44"/><text x="99.6708%" y="639.50"></text></g><g><title>btrfs_map_bio (18 samples, 0.01%)</title><rect x="99.4380%" y="613" width="0.0119%" height="15" fill="rgb(230,27,9)" fg:x="150213" fg:w="18"/><text x="99.6880%" y="623.50"></text></g><g><title>read_pages (124 samples, 0.08%)</title><rect x="99.3691%" y="677" width="0.0821%" height="15" fill="rgb(249,181,32)" fg:x="150109" fg:w="124"/><text x="99.6191%" y="687.50"></text></g><g><title>extent_readahead (114 samples, 0.08%)</title><rect x="99.3758%" y="661" width="0.0755%" height="15" fill="rgb(230,107,3)" fg:x="150119" fg:w="114"/><text x="99.6258%" y="671.50"></text></g><g><title>page_cache_ra_unbounded (327 samples, 0.22%)</title><rect x="99.2374%" y="693" width="0.2165%" height="15" fill="rgb(246,204,14)" fg:x="149910" fg:w="327"/><text x="99.4874%" y="703.50"></text></g><g><title>pagecache_get_page (54 samples, 0.04%)</title><rect x="99.4539%" y="693" width="0.0357%" height="15" fill="rgb(213,192,47)" fg:x="150237" fg:w="54"/><text x="99.7039%" y="703.50"></text></g><g><title>find_get_entry (48 samples, 0.03%)</title><rect x="99.4578%" y="677" width="0.0318%" height="15" fill="rgb(240,44,36)" fg:x="150243" fg:w="48"/><text x="99.7078%" y="687.50"></text></g><g><title>xas_load (24 samples, 0.02%)</title><rect x="99.4737%" y="661" width="0.0159%" height="15" fill="rgb(244,209,38)" fg:x="150267" fg:w="24"/><text x="99.7237%" y="671.50"></text></g><g><title>touch_atime (20 samples, 0.01%)</title><rect x="99.4896%" y="693" width="0.0132%" height="15" fill="rgb(219,34,37)" fg:x="150291" fg:w="20"/><text x="99.7396%" y="703.50"></text></g><g><title>generic_file_buffered_read (939 samples, 0.62%)</title><rect x="98.8965%" y="709" width="0.6216%" height="15" fill="rgb(210,28,6)" fg:x="149395" fg:w="939"/><text x="99.1465%" y="719.50"></text></g><g><title>new_sync_read (953 samples, 0.63%)</title><rect x="98.8885%" y="725" width="0.6309%" height="15" fill="rgb(244,110,52)" fg:x="149383" fg:w="953"/><text x="99.1385%" y="735.50"></text></g><g><title>ksys_read (1,030 samples, 0.68%)</title><rect x="98.8482%" y="757" width="0.6818%" height="15" fill="rgb(254,124,47)" fg:x="149322" fg:w="1030"/><text x="99.0982%" y="767.50"></text></g><g><title>vfs_read (994 samples, 0.66%)</title><rect x="98.8720%" y="741" width="0.6580%" height="15" fill="rgb(254,110,13)" fg:x="149358" fg:w="994"/><text x="99.1220%" y="751.50"></text></g><g><title>security_file_permission (16 samples, 0.01%)</title><rect x="99.5194%" y="725" width="0.0106%" height="15" fill="rgb(252,57,21)" fg:x="150336" fg:w="16"/><text x="99.7694%" y="735.50"></text></g><g><title>do_syscall_64 (1,033 samples, 0.68%)</title><rect x="98.8475%" y="773" width="0.6838%" height="15" fill="rgb(242,60,45)" fg:x="149321" fg:w="1033"/><text x="99.0975%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,041 samples, 0.69%)</title><rect x="98.8462%" y="789" width="0.6891%" height="15" fill="rgb(234,49,30)" fg:x="149319" fg:w="1041"/><text x="99.0962%" y="799.50"></text></g><g><title>__libc_read (1,079 samples, 0.71%)</title><rect x="98.8243%" y="821" width="0.7143%" height="15" fill="rgb(218,98,6)" fg:x="149286" fg:w="1079"/><text x="99.0743%" y="831.50"></text></g><g><title>__libc_read (1,077 samples, 0.71%)</title><rect x="98.8256%" y="805" width="0.7130%" height="15" fill="rgb(220,174,29)" fg:x="149288" fg:w="1077"/><text x="99.0756%" y="815.50"></text></g><g><title>handleRead (1,081 samples, 0.72%)</title><rect x="98.8243%" y="837" width="0.7156%" height="15" fill="rgb(236,163,23)" fg:x="149286" fg:w="1081"/><text x="99.0743%" y="847.50"></text></g><g><title>jni_GetArrayLength (22 samples, 0.01%)</title><rect x="99.5399%" y="837" width="0.0146%" height="15" fill="rgb(242,114,45)" fg:x="150367" fg:w="22"/><text x="99.7899%" y="847.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (18 samples, 0.01%)</title><rect x="99.5777%" y="821" width="0.0119%" height="15" fill="rgb(232,10,53)" fg:x="150424" fg:w="18"/><text x="99.8277%" y="831.50"></text></g><g><title>jni_GetObjectField (69 samples, 0.05%)</title><rect x="99.5545%" y="837" width="0.0457%" height="15" fill="rgb(245,108,29)" fg:x="150389" fg:w="69"/><text x="99.8045%" y="847.50"></text></g><g><title>ThreadStateTransition::transition_from_native (16 samples, 0.01%)</title><rect x="99.5896%" y="821" width="0.0106%" height="15" fill="rgb(240,89,53)" fg:x="150442" fg:w="16"/><text x="99.8396%" y="831.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (21 samples, 0.01%)</title><rect x="99.6048%" y="821" width="0.0139%" height="15" fill="rgb(226,60,45)" fg:x="150465" fg:w="21"/><text x="99.8548%" y="831.50"></text></g><g><title>[libc-2.31.so] (100 samples, 0.07%)</title><rect x="99.6233%" y="821" width="0.0662%" height="15" fill="rgb(230,41,44)" fg:x="150493" fg:w="100"/><text x="99.8733%" y="831.50"></text></g><g><title>readBytes (1,334 samples, 0.88%)</title><rect x="98.8091%" y="853" width="0.8831%" height="15" fill="rgb(230,26,20)" fg:x="149263" fg:w="1334"/><text x="99.0591%" y="863.50"></text></g><g><title>jni_SetByteArrayRegion (139 samples, 0.09%)</title><rect x="99.6002%" y="837" width="0.0920%" height="15" fill="rgb(237,170,32)" fg:x="150458" fg:w="139"/><text x="99.8502%" y="847.50"></text></g><g><title>[unknown] (1,773 samples, 1.17%)</title><rect x="98.5251%" y="869" width="1.1737%" height="15" fill="rgb(212,35,42)" fg:x="148834" fg:w="1773"/><text x="98.7751%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (98 samples, 0.06%)</title><rect x="99.7061%" y="805" width="0.0649%" height="15" fill="rgb(227,31,34)" fg:x="150618" fg:w="98"/><text x="99.9561%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (98 samples, 0.06%)</title><rect x="99.7061%" y="789" width="0.0649%" height="15" fill="rgb(216,19,18)" fg:x="150618" fg:w="98"/><text x="99.9561%" y="799.50"></text></g><g><title>native_write_msr (98 samples, 0.06%)</title><rect x="99.7061%" y="773" width="0.0649%" height="15" fill="rgb(211,133,42)" fg:x="150618" fg:w="98"/><text x="99.9561%" y="783.50"></text></g><g><title>schedule_tail (102 samples, 0.07%)</title><rect x="99.7048%" y="837" width="0.0675%" height="15" fill="rgb(244,66,13)" fg:x="150616" fg:w="102"/><text x="99.9548%" y="847.50"></text></g><g><title>finish_task_switch (102 samples, 0.07%)</title><rect x="99.7048%" y="821" width="0.0675%" height="15" fill="rgb(218,185,50)" fg:x="150616" fg:w="102"/><text x="99.9548%" y="831.50"></text></g><g><title>ret_from_fork (110 samples, 0.07%)</title><rect x="99.7028%" y="853" width="0.0728%" height="15" fill="rgb(219,149,13)" fg:x="150613" fg:w="110"/><text x="99.9528%" y="863.50"></text></g><g><title>JavaThread::exit (19 samples, 0.01%)</title><rect x="99.7981%" y="789" width="0.0126%" height="15" fill="rgb(221,125,0)" fg:x="150757" fg:w="19"/><text x="100.0481%" y="799.50"></text></g><g><title>Thread::call_run (25 samples, 0.02%)</title><rect x="99.7961%" y="821" width="0.0165%" height="15" fill="rgb(247,126,27)" fg:x="150754" fg:w="25"/><text x="100.0461%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (22 samples, 0.01%)</title><rect x="99.7981%" y="805" width="0.0146%" height="15" fill="rgb(250,138,30)" fg:x="150757" fg:w="22"/><text x="100.0481%" y="815.50"></text></g><g><title>__GI___clone (179 samples, 0.12%)</title><rect x="99.6988%" y="869" width="0.1185%" height="15" fill="rgb(230,151,9)" fg:x="150607" fg:w="179"/><text x="99.9488%" y="879.50"></text></g><g><title>start_thread (63 samples, 0.04%)</title><rect x="99.7756%" y="853" width="0.0417%" height="15" fill="rgb(233,80,38)" fg:x="150723" fg:w="63"/><text x="100.0256%" y="863.50"></text></g><g><title>thread_native_entry (46 samples, 0.03%)</title><rect x="99.7868%" y="837" width="0.0305%" height="15" fill="rgb(232,68,43)" fg:x="150740" fg:w="46"/><text x="100.0368%" y="847.50"></text></g><g><title>asm_exc_page_fault (46 samples, 0.03%)</title><rect x="99.8233%" y="869" width="0.0305%" height="15" fill="rgb(254,5,50)" fg:x="150795" fg:w="46"/><text x="100.0733%" y="879.50"></text></g><g><title>skyframe-evalua (47,042 samples, 31.14%)</title><rect x="68.7360%" y="885" width="31.1409%" height="15" fill="rgb(225,45,5)" fg:x="103834" fg:w="47042"/><text x="68.9860%" y="895.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (84 samples, 0.06%)</title><rect x="99.9225%" y="629" width="0.0556%" height="15" fill="rgb(239,22,3)" fg:x="150945" fg:w="84"/><text x="100.1725%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.06%)</title><rect x="99.9225%" y="613" width="0.0556%" height="15" fill="rgb(243,129,0)" fg:x="150945" fg:w="84"/><text x="100.1725%" y="623.50"></text></g><g><title>native_write_msr (83 samples, 0.05%)</title><rect x="99.9232%" y="597" width="0.0549%" height="15" fill="rgb(223,164,0)" fg:x="150946" fg:w="83"/><text x="100.1732%" y="607.50"></text></g><g><title>futex_wait_queue_me (89 samples, 0.06%)</title><rect x="99.9219%" y="693" width="0.0589%" height="15" fill="rgb(221,46,29)" fg:x="150944" fg:w="89"/><text x="100.1719%" y="703.50"></text></g><g><title>schedule (89 samples, 0.06%)</title><rect x="99.9219%" y="677" width="0.0589%" height="15" fill="rgb(205,97,47)" fg:x="150944" fg:w="89"/><text x="100.1719%" y="687.50"></text></g><g><title>__schedule (89 samples, 0.06%)</title><rect x="99.9219%" y="661" width="0.0589%" height="15" fill="rgb(249,14,8)" fg:x="150944" fg:w="89"/><text x="100.1719%" y="671.50"></text></g><g><title>finish_task_switch (89 samples, 0.06%)</title><rect x="99.9219%" y="645" width="0.0589%" height="15" fill="rgb(216,77,3)" fg:x="150944" fg:w="89"/><text x="100.1719%" y="655.50"></text></g><g><title>do_syscall_64 (92 samples, 0.06%)</title><rect x="99.9206%" y="757" width="0.0609%" height="15" fill="rgb(206,168,54)" fg:x="150942" fg:w="92"/><text x="100.1706%" y="767.50"></text></g><g><title>__x64_sys_futex (91 samples, 0.06%)</title><rect x="99.9212%" y="741" width="0.0602%" height="15" fill="rgb(236,3,41)" fg:x="150943" fg:w="91"/><text x="100.1712%" y="751.50"></text></g><g><title>do_futex (91 samples, 0.06%)</title><rect x="99.9212%" y="725" width="0.0602%" height="15" fill="rgb(231,132,24)" fg:x="150943" fg:w="91"/><text x="100.1712%" y="735.50"></text></g><g><title>futex_wait (90 samples, 0.06%)</title><rect x="99.9219%" y="709" width="0.0596%" height="15" fill="rgb(227,221,40)" fg:x="150944" fg:w="90"/><text x="100.1719%" y="719.50"></text></g><g><title>__pthread_cond_wait (95 samples, 0.06%)</title><rect x="99.9192%" y="821" width="0.0629%" height="15" fill="rgb(233,151,11)" fg:x="150940" fg:w="95"/><text x="100.1692%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (95 samples, 0.06%)</title><rect x="99.9192%" y="805" width="0.0629%" height="15" fill="rgb(247,81,35)" fg:x="150940" fg:w="95"/><text x="100.1692%" y="815.50"></text></g><g><title>futex_wait_cancelable (95 samples, 0.06%)</title><rect x="99.9192%" y="789" width="0.0629%" height="15" fill="rgb(243,128,48)" fg:x="150940" fg:w="95"/><text x="100.1692%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.06%)</title><rect x="99.9206%" y="773" width="0.0616%" height="15" fill="rgb(253,16,10)" fg:x="150942" fg:w="93"/><text x="100.1706%" y="783.50"></text></g><g><title>Unsafe_Park (99 samples, 0.07%)</title><rect x="99.9186%" y="853" width="0.0655%" height="15" fill="rgb(228,67,27)" fg:x="150939" fg:w="99"/><text x="100.1686%" y="863.50"></text></g><g><title>Parker::park (99 samples, 0.07%)</title><rect x="99.9186%" y="837" width="0.0655%" height="15" fill="rgb(231,105,25)" fg:x="150939" fg:w="99"/><text x="100.1686%" y="847.50"></text></g><g><title>[perf-983083.map] (161 samples, 0.11%)</title><rect x="99.8795%" y="869" width="0.1066%" height="15" fill="rgb(213,166,47)" fg:x="150880" fg:w="161"/><text x="100.1295%" y="879.50"></text></g><g><title>skyframe-invali (184 samples, 0.12%)</title><rect x="99.8769%" y="885" width="0.1218%" height="15" fill="rgb(209,27,10)" fg:x="150876" fg:w="184"/><text x="100.1269%" y="895.50"></text></g><g><title>all (151,062 samples, 100%)</title><rect x="0.0000%" y="901" width="100.0000%" height="15" fill="rgb(241,44,30)" fg:x="0" fg:w="151062"/><text x="0.2500%" y="911.50"></text></g></svg></svg> +\ No newline at end of file diff --git a/results/llvm-j8.svg b/results/llvm-j8.svg @@ -0,0 +1,491 @@ +<?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="918" onload="init(evt)" viewBox="0 0 1200 918" 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="918" 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="901.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="901.00"> </text><svg id="frames" x="10" width="1180" total_samples="362261"><g><title>_dl_update_slotinfo (133 samples, 0.04%)</title><rect x="0.3034%" y="821" width="0.0367%" height="15" fill="rgb(227,0,7)" fg:x="1099" fg:w="133"/><text x="0.5534%" y="831.50"></text></g><g><title>update_get_addr (38 samples, 0.01%)</title><rect x="0.3903%" y="821" width="0.0105%" height="15" fill="rgb(217,0,24)" fg:x="1414" fg:w="38"/><text x="0.6403%" y="831.50"></text></g><g><title>[anon] (1,341 samples, 0.37%)</title><rect x="0.0312%" y="837" width="0.3702%" height="15" fill="rgb(221,193,54)" fg:x="113" fg:w="1341"/><text x="0.2812%" y="847.50"></text></g><g><title>[perf-985085.map] (136 samples, 0.04%)</title><rect x="0.4014%" y="837" width="0.0375%" height="15" fill="rgb(248,212,6)" fg:x="1454" fg:w="136"/><text x="0.6514%" y="847.50"></text></g><g><title>[unknown] (89 samples, 0.02%)</title><rect x="0.4389%" y="837" width="0.0246%" height="15" fill="rgb(208,68,35)" fg:x="1590" fg:w="89"/><text x="0.6889%" y="847.50"></text></g><g><title>jio_vsnprintf (58 samples, 0.02%)</title><rect x="0.4836%" y="693" width="0.0160%" height="15" fill="rgb(232,128,0)" fg:x="1752" fg:w="58"/><text x="0.7336%" y="703.50"></text></g><g><title>os::vsnprintf (57 samples, 0.02%)</title><rect x="0.4839%" y="677" width="0.0157%" height="15" fill="rgb(207,160,47)" fg:x="1753" fg:w="57"/><text x="0.7339%" y="687.50"></text></g><g><title>__vsnprintf_internal (57 samples, 0.02%)</title><rect x="0.4839%" y="661" width="0.0157%" height="15" fill="rgb(228,23,34)" fg:x="1753" fg:w="57"/><text x="0.7339%" y="671.50"></text></g><g><title>__vfprintf_internal (55 samples, 0.02%)</title><rect x="0.4845%" y="645" width="0.0152%" height="15" fill="rgb(218,30,26)" fg:x="1755" fg:w="55"/><text x="0.7345%" y="655.50"></text></g><g><title>CompileBroker::post_compile (63 samples, 0.02%)</title><rect x="0.4828%" y="725" width="0.0174%" height="15" fill="rgb(220,122,19)" fg:x="1749" fg:w="63"/><text x="0.7328%" y="735.50"></text></g><g><title>StringEventLog::log (61 samples, 0.02%)</title><rect x="0.4834%" y="709" width="0.0168%" height="15" fill="rgb(250,228,42)" fg:x="1751" fg:w="61"/><text x="0.7334%" y="719.50"></text></g><g><title>Method::print_short_name (53 samples, 0.01%)</title><rect x="0.5054%" y="709" width="0.0146%" height="15" fill="rgb(240,193,28)" fg:x="1831" fg:w="53"/><text x="0.7554%" y="719.50"></text></g><g><title>CompileTask::print (118 samples, 0.03%)</title><rect x="0.5052%" y="725" width="0.0326%" height="15" fill="rgb(216,20,37)" fg:x="1830" fg:w="118"/><text x="0.7552%" y="735.50"></text></g><g><title>outputStream::print (64 samples, 0.02%)</title><rect x="0.5201%" y="709" width="0.0177%" height="15" fill="rgb(206,188,39)" fg:x="1884" fg:w="64"/><text x="0.7701%" y="719.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (60 samples, 0.02%)</title><rect x="0.5212%" y="693" width="0.0166%" height="15" fill="rgb(217,207,13)" fg:x="1888" fg:w="60"/><text x="0.7712%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (69 samples, 0.02%)</title><rect x="0.5753%" y="581" width="0.0190%" height="15" fill="rgb(231,73,38)" fg:x="2084" fg:w="69"/><text x="0.8253%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (113 samples, 0.03%)</title><rect x="0.5739%" y="597" width="0.0312%" height="15" fill="rgb(225,20,46)" fg:x="2079" fg:w="113"/><text x="0.8239%" y="607.50"></text></g><g><title>SubstitutionResolver::block_do (39 samples, 0.01%)</title><rect x="0.5943%" y="581" width="0.0108%" height="15" fill="rgb(210,31,41)" fg:x="2153" fg:w="39"/><text x="0.8443%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (66 samples, 0.02%)</title><rect x="0.6051%" y="597" width="0.0182%" height="15" fill="rgb(221,200,47)" fg:x="2192" fg:w="66"/><text x="0.8551%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (186 samples, 0.05%)</title><rect x="0.5722%" y="613" width="0.0513%" height="15" fill="rgb(226,26,5)" fg:x="2073" fg:w="186"/><text x="0.8222%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (189 samples, 0.05%)</title><rect x="0.5720%" y="629" width="0.0522%" height="15" fill="rgb(249,33,26)" fg:x="2072" fg:w="189"/><text x="0.8220%" y="639.50"></text></g><g><title>ValueMap::find_insert (50 samples, 0.01%)</title><rect x="0.6341%" y="629" width="0.0138%" height="15" fill="rgb(235,183,28)" fg:x="2297" fg:w="50"/><text x="0.8841%" y="639.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (381 samples, 0.11%)</title><rect x="0.5537%" y="645" width="0.1052%" height="15" fill="rgb(221,5,38)" fg:x="2006" fg:w="381"/><text x="0.8037%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (46 samples, 0.01%)</title><rect x="0.6678%" y="565" width="0.0127%" height="15" fill="rgb(247,18,42)" fg:x="2419" fg:w="46"/><text x="0.9178%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (57 samples, 0.02%)</title><rect x="0.6658%" y="581" width="0.0157%" height="15" fill="rgb(241,131,45)" fg:x="2412" fg:w="57"/><text x="0.9158%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (84 samples, 0.02%)</title><rect x="0.6617%" y="597" width="0.0232%" height="15" fill="rgb(249,31,29)" fg:x="2397" fg:w="84"/><text x="0.9117%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (87 samples, 0.02%)</title><rect x="0.6614%" y="613" width="0.0240%" height="15" fill="rgb(225,111,53)" fg:x="2396" fg:w="87"/><text x="0.9114%" y="623.50"></text></g><g><title>MethodLiveness::init_basic_blocks (61 samples, 0.02%)</title><rect x="0.7172%" y="549" width="0.0168%" height="15" fill="rgb(238,160,17)" fg:x="2598" fg:w="61"/><text x="0.9672%" y="559.50"></text></g><g><title>MethodLiveness::compute_liveness (98 samples, 0.03%)</title><rect x="0.7072%" y="565" width="0.0271%" height="15" fill="rgb(214,148,48)" fg:x="2562" fg:w="98"/><text x="0.9572%" y="575.50"></text></g><g><title>BlockListBuilder::set_leaders (144 samples, 0.04%)</title><rect x="0.6948%" y="597" width="0.0398%" height="15" fill="rgb(232,36,49)" fg:x="2517" fg:w="144"/><text x="0.9448%" y="607.50"></text></g><g><title>ciMethod::bci_block_start (99 samples, 0.03%)</title><rect x="0.7072%" y="581" width="0.0273%" height="15" fill="rgb(209,103,24)" fg:x="2562" fg:w="99"/><text x="0.9572%" y="591.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (159 samples, 0.04%)</title><rect x="0.6909%" y="613" width="0.0439%" height="15" fill="rgb(229,88,8)" fg:x="2503" fg:w="159"/><text x="0.9409%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (68 samples, 0.02%)</title><rect x="0.7986%" y="501" width="0.0188%" height="15" fill="rgb(213,181,19)" fg:x="2893" fg:w="68"/><text x="1.0486%" y="511.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (80 samples, 0.02%)</title><rect x="0.7958%" y="517" width="0.0221%" height="15" fill="rgb(254,191,54)" fg:x="2883" fg:w="80"/><text x="1.0458%" y="527.50"></text></g><g><title>ciField::ciField (115 samples, 0.03%)</title><rect x="0.7911%" y="533" width="0.0317%" height="15" fill="rgb(241,83,37)" fg:x="2866" fg:w="115"/><text x="1.0411%" y="543.50"></text></g><g><title>ciEnv::get_field_by_index (132 samples, 0.04%)</title><rect x="0.7881%" y="549" width="0.0364%" height="15" fill="rgb(233,36,39)" fg:x="2855" fg:w="132"/><text x="1.0381%" y="559.50"></text></g><g><title>ciBytecodeStream::get_field (148 samples, 0.04%)</title><rect x="0.7878%" y="565" width="0.0409%" height="15" fill="rgb(226,3,54)" fg:x="2854" fg:w="148"/><text x="1.0378%" y="575.50"></text></g><g><title>GraphBuilder::access_field (228 samples, 0.06%)</title><rect x="0.7718%" y="581" width="0.0629%" height="15" fill="rgb(245,192,40)" fg:x="2796" fg:w="228"/><text x="1.0218%" y="591.50"></text></g><g><title>GraphBuilder::append_with_bci (39 samples, 0.01%)</title><rect x="0.8717%" y="565" width="0.0108%" height="15" fill="rgb(238,167,29)" fg:x="3158" fg:w="39"/><text x="1.1217%" y="575.50"></text></g><g><title>BlockBegin::try_merge (51 samples, 0.01%)</title><rect x="0.9173%" y="501" width="0.0141%" height="15" fill="rgb(232,182,51)" fg:x="3323" fg:w="51"/><text x="1.1673%" y="511.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (37 samples, 0.01%)</title><rect x="0.9570%" y="421" width="0.0102%" height="15" fill="rgb(231,60,39)" fg:x="3467" fg:w="37"/><text x="1.2070%" y="431.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (47 samples, 0.01%)</title><rect x="0.9551%" y="437" width="0.0130%" height="15" fill="rgb(208,69,12)" fg:x="3460" fg:w="47"/><text x="1.2051%" y="447.50"></text></g><g><title>ciField::ciField (86 samples, 0.02%)</title><rect x="0.9482%" y="453" width="0.0237%" height="15" fill="rgb(235,93,37)" fg:x="3435" fg:w="86"/><text x="1.1982%" y="463.50"></text></g><g><title>ciEnv::get_field_by_index (93 samples, 0.03%)</title><rect x="0.9466%" y="469" width="0.0257%" height="15" fill="rgb(213,116,39)" fg:x="3429" fg:w="93"/><text x="1.1966%" y="479.50"></text></g><g><title>ciBytecodeStream::get_field (105 samples, 0.03%)</title><rect x="0.9457%" y="485" width="0.0290%" height="15" fill="rgb(222,207,29)" fg:x="3426" fg:w="105"/><text x="1.1957%" y="495.50"></text></g><g><title>GraphBuilder::access_field (164 samples, 0.05%)</title><rect x="0.9347%" y="501" width="0.0453%" height="15" fill="rgb(206,96,30)" fg:x="3386" fg:w="164"/><text x="1.1847%" y="511.50"></text></g><g><title>ciBytecodeStream::get_field (43 samples, 0.01%)</title><rect x="1.0341%" y="405" width="0.0119%" height="15" fill="rgb(218,138,4)" fg:x="3746" fg:w="43"/><text x="1.2841%" y="415.50"></text></g><g><title>GraphBuilder::access_field (75 samples, 0.02%)</title><rect x="1.0280%" y="421" width="0.0207%" height="15" fill="rgb(250,191,14)" fg:x="3724" fg:w="75"/><text x="1.2780%" y="431.50"></text></g><g><title>GraphBuilder::access_field (41 samples, 0.01%)</title><rect x="1.0697%" y="341" width="0.0113%" height="15" fill="rgb(239,60,40)" fg:x="3875" fg:w="41"/><text x="1.3197%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (46 samples, 0.01%)</title><rect x="1.0964%" y="245" width="0.0127%" height="15" fill="rgb(206,27,48)" fg:x="3972" fg:w="46"/><text x="1.3464%" y="255.50"></text></g><g><title>GraphBuilder::try_inline_full (46 samples, 0.01%)</title><rect x="1.0964%" y="229" width="0.0127%" height="15" fill="rgb(225,35,8)" fg:x="3972" fg:w="46"/><text x="1.3464%" y="239.50"></text></g><g><title>GraphBuilder::invoke (64 samples, 0.02%)</title><rect x="1.0951%" y="261" width="0.0177%" height="15" fill="rgb(250,213,24)" fg:x="3967" fg:w="64"/><text x="1.3451%" y="271.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (102 samples, 0.03%)</title><rect x="1.0873%" y="293" width="0.0282%" height="15" fill="rgb(247,123,22)" fg:x="3939" fg:w="102"/><text x="1.3373%" y="303.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (101 samples, 0.03%)</title><rect x="1.0876%" y="277" width="0.0279%" height="15" fill="rgb(231,138,38)" fg:x="3940" fg:w="101"/><text x="1.3376%" y="287.50"></text></g><g><title>GraphBuilder::try_inline_full (148 samples, 0.04%)</title><rect x="1.0857%" y="309" width="0.0409%" height="15" fill="rgb(231,145,46)" fg:x="3933" fg:w="148"/><text x="1.3357%" y="319.50"></text></g><g><title>GraphBuilder::try_inline (163 samples, 0.04%)</title><rect x="1.0851%" y="325" width="0.0450%" height="15" fill="rgb(251,118,11)" fg:x="3931" fg:w="163"/><text x="1.3351%" y="335.50"></text></g><g><title>GraphBuilder::invoke (221 samples, 0.06%)</title><rect x="1.0829%" y="341" width="0.0610%" height="15" fill="rgb(217,147,25)" fg:x="3923" fg:w="221"/><text x="1.3329%" y="351.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (319 samples, 0.09%)</title><rect x="1.0633%" y="373" width="0.0881%" height="15" fill="rgb(247,81,37)" fg:x="3852" fg:w="319"/><text x="1.3133%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (315 samples, 0.09%)</title><rect x="1.0644%" y="357" width="0.0870%" height="15" fill="rgb(209,12,38)" fg:x="3856" fg:w="315"/><text x="1.3144%" y="367.50"></text></g><g><title>GraphBuilder::push_scope (40 samples, 0.01%)</title><rect x="1.1528%" y="373" width="0.0110%" height="15" fill="rgb(227,1,9)" fg:x="4176" fg:w="40"/><text x="1.4028%" y="383.50"></text></g><g><title>GraphBuilder::try_inline_full (408 samples, 0.11%)</title><rect x="1.0586%" y="389" width="0.1126%" height="15" fill="rgb(248,47,43)" fg:x="3835" fg:w="408"/><text x="1.3086%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (40 samples, 0.01%)</title><rect x="1.1718%" y="341" width="0.0110%" height="15" fill="rgb(221,10,30)" fg:x="4245" fg:w="40"/><text x="1.4218%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (39 samples, 0.01%)</title><rect x="1.1721%" y="325" width="0.0108%" height="15" fill="rgb(210,229,1)" fg:x="4246" fg:w="39"/><text x="1.4221%" y="335.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (42 samples, 0.01%)</title><rect x="1.1715%" y="389" width="0.0116%" height="15" fill="rgb(222,148,37)" fg:x="4244" fg:w="42"/><text x="1.4215%" y="399.50"></text></g><g><title>GraphBuilder::try_inline (42 samples, 0.01%)</title><rect x="1.1715%" y="373" width="0.0116%" height="15" fill="rgb(234,67,33)" fg:x="4244" fg:w="42"/><text x="1.4215%" y="383.50"></text></g><g><title>GraphBuilder::try_inline_full (42 samples, 0.01%)</title><rect x="1.1715%" y="357" width="0.0116%" height="15" fill="rgb(247,98,35)" fg:x="4244" fg:w="42"/><text x="1.4215%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (455 samples, 0.13%)</title><rect x="1.0578%" y="405" width="0.1256%" height="15" fill="rgb(247,138,52)" fg:x="3832" fg:w="455"/><text x="1.3078%" y="415.50"></text></g><g><title>ciEnv::get_method_by_index_impl (69 samples, 0.02%)</title><rect x="1.1895%" y="389" width="0.0190%" height="15" fill="rgb(213,79,30)" fg:x="4309" fg:w="69"/><text x="1.4395%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (77 samples, 0.02%)</title><rect x="1.1875%" y="405" width="0.0213%" height="15" fill="rgb(246,177,23)" fg:x="4302" fg:w="77"/><text x="1.4375%" y="415.50"></text></g><g><title>GraphBuilder::invoke (584 samples, 0.16%)</title><rect x="1.0531%" y="421" width="0.1612%" height="15" fill="rgb(230,62,27)" fg:x="3815" fg:w="584"/><text x="1.3031%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (763 samples, 0.21%)</title><rect x="1.0128%" y="453" width="0.2106%" height="15" fill="rgb(216,154,8)" fg:x="3669" fg:w="763"/><text x="1.2628%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (753 samples, 0.21%)</title><rect x="1.0156%" y="437" width="0.2079%" height="15" fill="rgb(244,35,45)" fg:x="3679" fg:w="753"/><text x="1.2656%" y="447.50"></text></g><g><title>BlockListBuilder::set_leaders (49 samples, 0.01%)</title><rect x="1.2281%" y="421" width="0.0135%" height="15" fill="rgb(251,115,12)" fg:x="4449" fg:w="49"/><text x="1.4781%" y="431.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (59 samples, 0.02%)</title><rect x="1.2259%" y="437" width="0.0163%" height="15" fill="rgb(240,54,50)" fg:x="4441" fg:w="59"/><text x="1.4759%" y="447.50"></text></g><g><title>GraphBuilder::push_scope (99 samples, 0.03%)</title><rect x="1.2251%" y="453" width="0.0273%" height="15" fill="rgb(233,84,52)" fg:x="4438" fg:w="99"/><text x="1.4751%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (54 samples, 0.01%)</title><rect x="1.2543%" y="453" width="0.0149%" height="15" fill="rgb(207,117,47)" fg:x="4544" fg:w="54"/><text x="1.5043%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (50 samples, 0.01%)</title><rect x="1.2554%" y="437" width="0.0138%" height="15" fill="rgb(249,43,39)" fg:x="4548" fg:w="50"/><text x="1.5054%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (960 samples, 0.27%)</title><rect x="1.0065%" y="469" width="0.2650%" height="15" fill="rgb(209,38,44)" fg:x="3646" fg:w="960"/><text x="1.2565%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (46 samples, 0.01%)</title><rect x="1.2728%" y="421" width="0.0127%" height="15" fill="rgb(236,212,23)" fg:x="4611" fg:w="46"/><text x="1.5228%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (46 samples, 0.01%)</title><rect x="1.2728%" y="405" width="0.0127%" height="15" fill="rgb(242,79,21)" fg:x="4611" fg:w="46"/><text x="1.5228%" y="415.50"></text></g><g><title>GraphBuilder::invoke (40 samples, 0.01%)</title><rect x="1.2745%" y="389" width="0.0110%" height="15" fill="rgb(211,96,35)" fg:x="4617" fg:w="40"/><text x="1.5245%" y="399.50"></text></g><g><title>GraphBuilder::try_inline (47 samples, 0.01%)</title><rect x="1.2728%" y="453" width="0.0130%" height="15" fill="rgb(253,215,40)" fg:x="4611" fg:w="47"/><text x="1.5228%" y="463.50"></text></g><g><title>GraphBuilder::try_inline_full (47 samples, 0.01%)</title><rect x="1.2728%" y="437" width="0.0130%" height="15" fill="rgb(211,81,21)" fg:x="4611" fg:w="47"/><text x="1.5228%" y="447.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (52 samples, 0.01%)</title><rect x="1.2726%" y="469" width="0.0144%" height="15" fill="rgb(208,190,38)" fg:x="4610" fg:w="52"/><text x="1.5226%" y="479.50"></text></g><g><title>GraphBuilder::try_inline (1,029 samples, 0.28%)</title><rect x="1.0042%" y="485" width="0.2840%" height="15" fill="rgb(235,213,38)" fg:x="3638" fg:w="1029"/><text x="1.2542%" y="495.50"></text></g><g><title>ciEnv::lookup_method (55 samples, 0.02%)</title><rect x="1.3068%" y="453" width="0.0152%" height="15" fill="rgb(237,122,38)" fg:x="4734" fg:w="55"/><text x="1.5568%" y="463.50"></text></g><g><title>ciMethod::ciMethod (74 samples, 0.02%)</title><rect x="1.3275%" y="421" width="0.0204%" height="15" fill="rgb(244,218,35)" fg:x="4809" fg:w="74"/><text x="1.5775%" y="431.50"></text></g><g><title>ciSignature::ciSignature (57 samples, 0.02%)</title><rect x="1.3322%" y="405" width="0.0157%" height="15" fill="rgb(240,68,47)" fg:x="4826" fg:w="57"/><text x="1.5822%" y="415.50"></text></g><g><title>ciObjectFactory::get_metadata (96 samples, 0.03%)</title><rect x="1.3220%" y="453" width="0.0265%" height="15" fill="rgb(210,16,53)" fg:x="4789" fg:w="96"/><text x="1.5720%" y="463.50"></text></g><g><title>ciObjectFactory::create_new_metadata (82 samples, 0.02%)</title><rect x="1.3258%" y="437" width="0.0226%" height="15" fill="rgb(235,124,12)" fg:x="4803" fg:w="82"/><text x="1.5758%" y="447.50"></text></g><g><title>ciBytecodeStream::get_method (188 samples, 0.05%)</title><rect x="1.2971%" y="485" width="0.0519%" height="15" fill="rgb(224,169,11)" fg:x="4699" fg:w="188"/><text x="1.5471%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (178 samples, 0.05%)</title><rect x="1.2999%" y="469" width="0.0491%" height="15" fill="rgb(250,166,2)" fg:x="4709" fg:w="178"/><text x="1.5499%" y="479.50"></text></g><g><title>GraphBuilder::invoke (1,322 samples, 0.36%)</title><rect x="0.9918%" y="501" width="0.3649%" height="15" fill="rgb(242,216,29)" fg:x="3593" fg:w="1322"/><text x="1.2418%" y="511.50"></text></g><g><title>GraphBuilder::method_return (52 samples, 0.01%)</title><rect x="1.3584%" y="501" width="0.0144%" height="15" fill="rgb(230,116,27)" fg:x="4921" fg:w="52"/><text x="1.6084%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,708 samples, 0.47%)</title><rect x="0.9065%" y="533" width="0.4715%" height="15" fill="rgb(228,99,48)" fg:x="3284" fg:w="1708"/><text x="1.1565%" y="543.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,700 samples, 0.47%)</title><rect x="0.9087%" y="517" width="0.4693%" height="15" fill="rgb(253,11,6)" fg:x="3292" fg:w="1700"/><text x="1.1587%" y="527.50"></text></g><g><title>MethodLiveness::init_basic_blocks (43 samples, 0.01%)</title><rect x="1.3995%" y="453" width="0.0119%" height="15" fill="rgb(247,143,39)" fg:x="5070" fg:w="43"/><text x="1.6495%" y="463.50"></text></g><g><title>BlockListBuilder::set_leaders (84 samples, 0.02%)</title><rect x="1.3888%" y="501" width="0.0232%" height="15" fill="rgb(236,97,10)" fg:x="5031" fg:w="84"/><text x="1.6388%" y="511.50"></text></g><g><title>ciMethod::bci_block_start (67 samples, 0.02%)</title><rect x="1.3935%" y="485" width="0.0185%" height="15" fill="rgb(233,208,19)" fg:x="5048" fg:w="67"/><text x="1.6435%" y="495.50"></text></g><g><title>MethodLiveness::compute_liveness (66 samples, 0.02%)</title><rect x="1.3937%" y="469" width="0.0182%" height="15" fill="rgb(216,164,2)" fg:x="5049" fg:w="66"/><text x="1.6437%" y="479.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (108 samples, 0.03%)</title><rect x="1.3833%" y="517" width="0.0298%" height="15" fill="rgb(220,129,5)" fg:x="5011" fg:w="108"/><text x="1.6333%" y="527.50"></text></g><g><title>GraphBuilder::push_scope (178 samples, 0.05%)</title><rect x="1.3805%" y="533" width="0.0491%" height="15" fill="rgb(242,17,10)" fg:x="5001" fg:w="178"/><text x="1.6305%" y="543.50"></text></g><g><title>Method::build_interpreter_method_data (55 samples, 0.02%)</title><rect x="1.4363%" y="501" width="0.0152%" height="15" fill="rgb(242,107,0)" fg:x="5203" fg:w="55"/><text x="1.6863%" y="511.50"></text></g><g><title>MethodData::allocate (54 samples, 0.01%)</title><rect x="1.4365%" y="485" width="0.0149%" height="15" fill="rgb(251,28,31)" fg:x="5204" fg:w="54"/><text x="1.6865%" y="495.50"></text></g><g><title>ciMethodData::load_data (59 samples, 0.02%)</title><rect x="1.4514%" y="501" width="0.0163%" height="15" fill="rgb(233,223,10)" fg:x="5258" fg:w="59"/><text x="1.7014%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (144 samples, 0.04%)</title><rect x="1.4338%" y="533" width="0.0398%" height="15" fill="rgb(215,21,27)" fg:x="5194" fg:w="144"/><text x="1.6838%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (136 samples, 0.04%)</title><rect x="1.4360%" y="517" width="0.0375%" height="15" fill="rgb(232,23,21)" fg:x="5202" fg:w="136"/><text x="1.6860%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (2,126 samples, 0.59%)</title><rect x="0.8905%" y="549" width="0.5869%" height="15" fill="rgb(244,5,23)" fg:x="3226" fg:w="2126"/><text x="1.1405%" y="559.50"></text></g><g><title>GraphBuilder::try_inline (2,144 samples, 0.59%)</title><rect x="0.8878%" y="565" width="0.5918%" height="15" fill="rgb(226,81,46)" fg:x="3216" fg:w="2144"/><text x="1.1378%" y="575.50"></text></g><g><title>ciEnv::lookup_method (96 samples, 0.03%)</title><rect x="1.5102%" y="533" width="0.0265%" height="15" fill="rgb(247,70,30)" fg:x="5471" fg:w="96"/><text x="1.7602%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (46 samples, 0.01%)</title><rect x="1.5643%" y="469" width="0.0127%" height="15" fill="rgb(212,68,19)" fg:x="5667" fg:w="46"/><text x="1.8143%" y="479.50"></text></g><g><title>ciMethod::ciMethod (139 samples, 0.04%)</title><rect x="1.5436%" y="501" width="0.0384%" height="15" fill="rgb(240,187,13)" fg:x="5592" fg:w="139"/><text x="1.7936%" y="511.50"></text></g><g><title>ciSignature::ciSignature (120 samples, 0.03%)</title><rect x="1.5489%" y="485" width="0.0331%" height="15" fill="rgb(223,113,26)" fg:x="5611" fg:w="120"/><text x="1.7989%" y="495.50"></text></g><g><title>ciObjectFactory::get_metadata (168 samples, 0.05%)</title><rect x="1.5367%" y="533" width="0.0464%" height="15" fill="rgb(206,192,2)" fg:x="5567" fg:w="168"/><text x="1.7867%" y="543.50"></text></g><g><title>ciObjectFactory::create_new_metadata (152 samples, 0.04%)</title><rect x="1.5412%" y="517" width="0.0420%" height="15" fill="rgb(241,108,4)" fg:x="5583" fg:w="152"/><text x="1.7912%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (309 samples, 0.09%)</title><rect x="1.5000%" y="549" width="0.0853%" height="15" fill="rgb(247,173,49)" fg:x="5434" fg:w="309"/><text x="1.7500%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (333 samples, 0.09%)</title><rect x="1.4940%" y="565" width="0.0919%" height="15" fill="rgb(224,114,35)" fg:x="5412" fg:w="333"/><text x="1.7440%" y="575.50"></text></g><g><title>ciMethod::find_monomorphic_target (46 samples, 0.01%)</title><rect x="1.5917%" y="565" width="0.0127%" height="15" fill="rgb(245,159,27)" fg:x="5766" fg:w="46"/><text x="1.8417%" y="575.50"></text></g><g><title>GraphBuilder::invoke (2,704 samples, 0.75%)</title><rect x="0.8599%" y="581" width="0.7464%" height="15" fill="rgb(245,172,44)" fg:x="3115" fg:w="2704"/><text x="1.1099%" y="591.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,208 samples, 0.89%)</title><rect x="0.7456%" y="597" width="0.8855%" height="15" fill="rgb(236,23,11)" fg:x="2701" fg:w="3208"/><text x="0.9956%" y="607.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,246 samples, 0.90%)</title><rect x="0.7362%" y="613" width="0.8960%" height="15" fill="rgb(205,117,38)" fg:x="2667" fg:w="3246"/><text x="0.9862%" y="623.50"></text></g><g><title>GraphBuilder::setup_start_block (45 samples, 0.01%)</title><rect x="1.6328%" y="613" width="0.0124%" height="15" fill="rgb(237,72,25)" fg:x="5915" fg:w="45"/><text x="1.8828%" y="623.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,594 samples, 0.99%)</title><rect x="0.6600%" y="629" width="0.9921%" height="15" fill="rgb(244,70,9)" fg:x="2391" fg:w="3594"/><text x="0.9100%" y="639.50"></text></g><g><title>IR::IR (3,619 samples, 1.00%)</title><rect x="0.6589%" y="645" width="0.9990%" height="15" fill="rgb(217,125,39)" fg:x="2387" fg:w="3619"/><text x="0.9089%" y="655.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (59 samples, 0.02%)</title><rect x="1.6582%" y="629" width="0.0163%" height="15" fill="rgb(235,36,10)" fg:x="6007" fg:w="59"/><text x="1.9082%" y="639.50"></text></g><g><title>IR::compute_code (64 samples, 0.02%)</title><rect x="1.6579%" y="645" width="0.0177%" height="15" fill="rgb(251,123,47)" fg:x="6006" fg:w="64"/><text x="1.9079%" y="655.50"></text></g><g><title>UseCountComputer::block_do (82 samples, 0.02%)</title><rect x="1.6783%" y="613" width="0.0226%" height="15" fill="rgb(221,13,13)" fg:x="6080" fg:w="82"/><text x="1.9283%" y="623.50"></text></g><g><title>BlockList::iterate_backward (88 samples, 0.02%)</title><rect x="1.6778%" y="629" width="0.0243%" height="15" fill="rgb(238,131,9)" fg:x="6078" fg:w="88"/><text x="1.9278%" y="639.50"></text></g><g><title>IR::compute_use_counts (132 samples, 0.04%)</title><rect x="1.6756%" y="645" width="0.0364%" height="15" fill="rgb(211,50,8)" fg:x="6070" fg:w="132"/><text x="1.9256%" y="655.50"></text></g><g><title>NullCheckEliminator::iterate_one (149 samples, 0.04%)</title><rect x="1.7189%" y="613" width="0.0411%" height="15" fill="rgb(245,182,24)" fg:x="6227" fg:w="149"/><text x="1.9689%" y="623.50"></text></g><g><title>IR::eliminate_null_checks (184 samples, 0.05%)</title><rect x="1.7120%" y="645" width="0.0508%" height="15" fill="rgb(242,14,37)" fg:x="6202" fg:w="184"/><text x="1.9620%" y="655.50"></text></g><g><title>Optimizer::eliminate_null_checks (184 samples, 0.05%)</title><rect x="1.7120%" y="629" width="0.0508%" height="15" fill="rgb(246,228,12)" fg:x="6202" fg:w="184"/><text x="1.9620%" y="639.50"></text></g><g><title>IR::optimize_blocks (37 samples, 0.01%)</title><rect x="1.7628%" y="645" width="0.0102%" height="15" fill="rgb(213,55,15)" fg:x="6386" fg:w="37"/><text x="2.0128%" y="655.50"></text></g><g><title>IR::split_critical_edges (44 samples, 0.01%)</title><rect x="1.7730%" y="645" width="0.0121%" height="15" fill="rgb(209,9,3)" fg:x="6423" fg:w="44"/><text x="2.0230%" y="655.50"></text></g><g><title>Compilation::build_hir (4,504 samples, 1.24%)</title><rect x="0.5524%" y="661" width="1.2433%" height="15" fill="rgb(230,59,30)" fg:x="2001" fg:w="4504"/><text x="0.8024%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (80 samples, 0.02%)</title><rect x="1.8407%" y="597" width="0.0221%" height="15" fill="rgb(209,121,21)" fg:x="6668" fg:w="80"/><text x="2.0907%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (80 samples, 0.02%)</title><rect x="1.8407%" y="581" width="0.0221%" height="15" fill="rgb(220,109,13)" fg:x="6668" fg:w="80"/><text x="2.0907%" y="591.50"></text></g><g><title>LIR_Assembler::call (88 samples, 0.02%)</title><rect x="1.8396%" y="613" width="0.0243%" height="15" fill="rgb(232,18,1)" fg:x="6664" fg:w="88"/><text x="2.0896%" y="623.50"></text></g><g><title>LIR_Assembler::emit_call (161 samples, 0.04%)</title><rect x="1.8271%" y="629" width="0.0444%" height="15" fill="rgb(215,41,42)" fg:x="6619" fg:w="161"/><text x="2.0771%" y="639.50"></text></g><g><title>LIR_Assembler::emit_op1 (150 samples, 0.04%)</title><rect x="1.8796%" y="629" width="0.0414%" height="15" fill="rgb(224,123,36)" fg:x="6809" fg:w="150"/><text x="2.1296%" y="639.50"></text></g><g><title>LIR_Assembler::emit_profile_call (53 samples, 0.01%)</title><rect x="1.9271%" y="629" width="0.0146%" height="15" fill="rgb(240,125,3)" fg:x="6981" fg:w="53"/><text x="2.1771%" y="639.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (46 samples, 0.01%)</title><rect x="1.9618%" y="629" width="0.0127%" height="15" fill="rgb(205,98,50)" fg:x="7107" fg:w="46"/><text x="2.2118%" y="639.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (46 samples, 0.01%)</title><rect x="1.9618%" y="613" width="0.0127%" height="15" fill="rgb(205,185,37)" fg:x="7107" fg:w="46"/><text x="2.2118%" y="623.50"></text></g><g><title>LIR_Assembler::emit_code (629 samples, 0.17%)</title><rect x="1.8026%" y="645" width="0.1736%" height="15" fill="rgb(238,207,15)" fg:x="6530" fg:w="629"/><text x="2.0526%" y="655.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (40 samples, 0.01%)</title><rect x="1.9801%" y="645" width="0.0110%" height="15" fill="rgb(213,199,42)" fg:x="7173" fg:w="40"/><text x="2.2301%" y="655.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (54 samples, 0.01%)</title><rect x="1.9975%" y="581" width="0.0149%" height="15" fill="rgb(235,201,11)" fg:x="7236" fg:w="54"/><text x="2.2475%" y="591.50"></text></g><g><title>DebugInformationRecorder::describe_scope (50 samples, 0.01%)</title><rect x="2.0124%" y="581" width="0.0138%" height="15" fill="rgb(207,46,11)" fg:x="7290" fg:w="50"/><text x="2.2624%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (131 samples, 0.04%)</title><rect x="1.9944%" y="597" width="0.0362%" height="15" fill="rgb(241,35,35)" fg:x="7225" fg:w="131"/><text x="2.2444%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (133 samples, 0.04%)</title><rect x="1.9944%" y="613" width="0.0367%" height="15" fill="rgb(243,32,47)" fg:x="7225" fg:w="133"/><text x="2.2444%" y="623.50"></text></g><g><title>CounterOverflowStub::emit_code (166 samples, 0.05%)</title><rect x="1.9925%" y="629" width="0.0458%" height="15" fill="rgb(247,202,23)" fg:x="7218" fg:w="166"/><text x="2.2425%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (44 samples, 0.01%)</title><rect x="2.0449%" y="613" width="0.0121%" height="15" fill="rgb(219,102,11)" fg:x="7408" fg:w="44"/><text x="2.2949%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (43 samples, 0.01%)</title><rect x="2.0452%" y="597" width="0.0119%" height="15" fill="rgb(243,110,44)" fg:x="7409" fg:w="43"/><text x="2.2952%" y="607.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (57 samples, 0.02%)</title><rect x="2.0433%" y="629" width="0.0157%" height="15" fill="rgb(222,74,54)" fg:x="7402" fg:w="57"/><text x="2.2933%" y="639.50"></text></g><g><title>NewInstanceStub::emit_code (37 samples, 0.01%)</title><rect x="2.0596%" y="629" width="0.0102%" height="15" fill="rgb(216,99,12)" fg:x="7461" fg:w="37"/><text x="2.3096%" y="639.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (343 samples, 0.09%)</title><rect x="1.9911%" y="645" width="0.0947%" height="15" fill="rgb(226,22,26)" fg:x="7213" fg:w="343"/><text x="2.2411%" y="655.50"></text></g><g><title>Compilation::emit_code_body (1,063 samples, 0.29%)</title><rect x="1.7957%" y="661" width="0.2934%" height="15" fill="rgb(217,163,10)" fg:x="6505" fg:w="1063"/><text x="2.0457%" y="671.50"></text></g><g><title>LIRGenerator::do_Base (95 samples, 0.03%)</title><rect x="2.1073%" y="613" width="0.0262%" height="15" fill="rgb(213,25,53)" fg:x="7634" fg:w="95"/><text x="2.3573%" y="623.50"></text></g><g><title>LIRGenerator::move_to_phi (50 samples, 0.01%)</title><rect x="2.1427%" y="581" width="0.0138%" height="15" fill="rgb(252,105,26)" fg:x="7762" fg:w="50"/><text x="2.3927%" y="591.50"></text></g><g><title>PhiResolver::create_node (39 samples, 0.01%)</title><rect x="2.1457%" y="565" width="0.0108%" height="15" fill="rgb(220,39,43)" fg:x="7773" fg:w="39"/><text x="2.3957%" y="575.50"></text></g><g><title>LIRGenerator::move_to_phi (222 samples, 0.06%)</title><rect x="2.1399%" y="597" width="0.0613%" height="15" fill="rgb(229,68,48)" fg:x="7752" fg:w="222"/><text x="2.3899%" y="607.50"></text></g><g><title>PhiResolverState::reset (156 samples, 0.04%)</title><rect x="2.1581%" y="581" width="0.0431%" height="15" fill="rgb(252,8,32)" fg:x="7818" fg:w="156"/><text x="2.4081%" y="591.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (43 samples, 0.01%)</title><rect x="2.1893%" y="565" width="0.0119%" height="15" fill="rgb(223,20,43)" fg:x="7931" fg:w="43"/><text x="2.4393%" y="575.50"></text></g><g><title>LIRGenerator::do_Goto (248 samples, 0.07%)</title><rect x="2.1360%" y="613" width="0.0685%" height="15" fill="rgb(229,81,49)" fg:x="7738" fg:w="248"/><text x="2.3860%" y="623.50"></text></g><g><title>LIRGenerator::do_If (56 samples, 0.02%)</title><rect x="2.2045%" y="613" width="0.0155%" height="15" fill="rgb(236,28,36)" fg:x="7986" fg:w="56"/><text x="2.4545%" y="623.50"></text></g><g><title>LIRGenerator::state_for (58 samples, 0.02%)</title><rect x="2.2404%" y="597" width="0.0160%" height="15" fill="rgb(249,185,26)" fg:x="8116" fg:w="58"/><text x="2.4904%" y="607.50"></text></g><g><title>ciMethod::liveness_at_bci (39 samples, 0.01%)</title><rect x="2.2456%" y="581" width="0.0108%" height="15" fill="rgb(249,174,33)" fg:x="8135" fg:w="39"/><text x="2.4956%" y="591.50"></text></g><g><title>MethodLiveness::get_liveness_at (38 samples, 0.01%)</title><rect x="2.2459%" y="565" width="0.0105%" height="15" fill="rgb(233,201,37)" fg:x="8136" fg:w="38"/><text x="2.4959%" y="575.50"></text></g><g><title>LIRGenerator::do_Invoke (131 samples, 0.04%)</title><rect x="2.2211%" y="613" width="0.0362%" height="15" fill="rgb(221,78,26)" fg:x="8046" fg:w="131"/><text x="2.4711%" y="623.50"></text></g><g><title>LIRGenerator::do_LoadField (43 samples, 0.01%)</title><rect x="2.2572%" y="613" width="0.0119%" height="15" fill="rgb(250,127,30)" fg:x="8177" fg:w="43"/><text x="2.5072%" y="623.50"></text></g><g><title>LIRGenerator::do_ProfileCall (38 samples, 0.01%)</title><rect x="2.2881%" y="613" width="0.0105%" height="15" fill="rgb(230,49,44)" fg:x="8289" fg:w="38"/><text x="2.5381%" y="623.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (46 samples, 0.01%)</title><rect x="2.2994%" y="597" width="0.0127%" height="15" fill="rgb(229,67,23)" fg:x="8330" fg:w="46"/><text x="2.5494%" y="607.50"></text></g><g><title>MethodLiveness::get_liveness_at (41 samples, 0.01%)</title><rect x="2.3157%" y="565" width="0.0113%" height="15" fill="rgb(249,83,47)" fg:x="8389" fg:w="41"/><text x="2.5657%" y="575.50"></text></g><g><title>LIRGenerator::state_for (55 samples, 0.02%)</title><rect x="2.3121%" y="597" width="0.0152%" height="15" fill="rgb(215,43,3)" fg:x="8376" fg:w="55"/><text x="2.5621%" y="607.50"></text></g><g><title>ciMethod::liveness_at_bci (43 samples, 0.01%)</title><rect x="2.3155%" y="581" width="0.0119%" height="15" fill="rgb(238,154,13)" fg:x="8388" fg:w="43"/><text x="2.5655%" y="591.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (116 samples, 0.03%)</title><rect x="2.2986%" y="613" width="0.0320%" height="15" fill="rgb(219,56,2)" fg:x="8327" fg:w="116"/><text x="2.5486%" y="623.50"></text></g><g><title>BlockList::iterate_forward (935 samples, 0.26%)</title><rect x="2.0910%" y="645" width="0.2581%" height="15" fill="rgb(233,0,4)" fg:x="7575" fg:w="935"/><text x="2.3410%" y="655.50"></text></g><g><title>LIRGenerator::block_do (933 samples, 0.26%)</title><rect x="2.0916%" y="629" width="0.2575%" height="15" fill="rgb(235,30,7)" fg:x="7577" fg:w="933"/><text x="2.3416%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (123 samples, 0.03%)</title><rect x="2.3817%" y="597" width="0.0340%" height="15" fill="rgb(250,79,13)" fg:x="8628" fg:w="123"/><text x="2.6317%" y="607.50"></text></g><g><title>LinearScanWalker::find_free_reg (103 samples, 0.03%)</title><rect x="2.4482%" y="565" width="0.0284%" height="15" fill="rgb(211,146,34)" fg:x="8869" fg:w="103"/><text x="2.6982%" y="575.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (157 samples, 0.04%)</title><rect x="2.4825%" y="565" width="0.0433%" height="15" fill="rgb(228,22,38)" fg:x="8993" fg:w="157"/><text x="2.7325%" y="575.50"></text></g><g><title>Interval::split (49 samples, 0.01%)</title><rect x="2.5291%" y="549" width="0.0135%" height="15" fill="rgb(235,168,5)" fg:x="9162" fg:w="49"/><text x="2.7791%" y="559.50"></text></g><g><title>LinearScanWalker::split_before_usage (78 samples, 0.02%)</title><rect x="2.5258%" y="565" width="0.0215%" height="15" fill="rgb(221,155,16)" fg:x="9150" fg:w="78"/><text x="2.7758%" y="575.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (452 samples, 0.12%)</title><rect x="2.4239%" y="581" width="0.1248%" height="15" fill="rgb(215,215,53)" fg:x="8781" fg:w="452"/><text x="2.6739%" y="591.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (62 samples, 0.02%)</title><rect x="2.5553%" y="565" width="0.0171%" height="15" fill="rgb(223,4,10)" fg:x="9257" fg:w="62"/><text x="2.8053%" y="575.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (123 samples, 0.03%)</title><rect x="2.5487%" y="581" width="0.0340%" height="15" fill="rgb(234,103,6)" fg:x="9233" fg:w="123"/><text x="2.7987%" y="591.50"></text></g><g><title>LinearScanWalker::activate_current (680 samples, 0.19%)</title><rect x="2.4157%" y="597" width="0.1877%" height="15" fill="rgb(227,97,0)" fg:x="8751" fg:w="680"/><text x="2.6657%" y="607.50"></text></g><g><title>IntervalWalker::walk_to (843 samples, 0.23%)</title><rect x="2.3709%" y="613" width="0.2327%" height="15" fill="rgb(234,150,53)" fg:x="8589" fg:w="843"/><text x="2.6209%" y="623.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (62 samples, 0.02%)</title><rect x="2.6039%" y="613" width="0.0171%" height="15" fill="rgb(228,201,54)" fg:x="9433" fg:w="62"/><text x="2.8539%" y="623.50"></text></g><g><title>resource_allocate_bytes (38 samples, 0.01%)</title><rect x="2.6105%" y="597" width="0.0105%" height="15" fill="rgb(222,22,37)" fg:x="9457" fg:w="38"/><text x="2.8605%" y="607.50"></text></g><g><title>LinearScan::allocate_registers (926 samples, 0.26%)</title><rect x="2.3671%" y="629" width="0.2556%" height="15" fill="rgb(237,53,32)" fg:x="8575" fg:w="926"/><text x="2.6171%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (73 samples, 0.02%)</title><rect x="2.6757%" y="597" width="0.0202%" height="15" fill="rgb(233,25,53)" fg:x="9693" fg:w="73"/><text x="2.9257%" y="607.50"></text></g><g><title>LinearScan::color_lir_opr (66 samples, 0.02%)</title><rect x="2.6958%" y="597" width="0.0182%" height="15" fill="rgb(210,40,34)" fg:x="9766" fg:w="66"/><text x="2.9458%" y="607.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (95 samples, 0.03%)</title><rect x="2.7328%" y="581" width="0.0262%" height="15" fill="rgb(241,220,44)" fg:x="9900" fg:w="95"/><text x="2.9828%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (171 samples, 0.05%)</title><rect x="2.7141%" y="597" width="0.0472%" height="15" fill="rgb(235,28,35)" fg:x="9832" fg:w="171"/><text x="2.9641%" y="607.50"></text></g><g><title>IntervalWalker::walk_to (91 samples, 0.03%)</title><rect x="2.7720%" y="565" width="0.0251%" height="15" fill="rgb(210,56,17)" fg:x="10042" fg:w="91"/><text x="3.0220%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (174 samples, 0.05%)</title><rect x="2.7613%" y="597" width="0.0480%" height="15" fill="rgb(224,130,29)" fg:x="10003" fg:w="174"/><text x="3.0113%" y="607.50"></text></g><g><title>LinearScan::compute_oop_map (161 samples, 0.04%)</title><rect x="2.7649%" y="581" width="0.0444%" height="15" fill="rgb(235,212,8)" fg:x="10016" fg:w="161"/><text x="3.0149%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (672 samples, 0.19%)</title><rect x="2.6241%" y="613" width="0.1855%" height="15" fill="rgb(223,33,50)" fg:x="9506" fg:w="672"/><text x="2.8741%" y="623.50"></text></g><g><title>LinearScan::assign_reg_num (696 samples, 0.19%)</title><rect x="2.6227%" y="629" width="0.1921%" height="15" fill="rgb(219,149,13)" fg:x="9501" fg:w="696"/><text x="2.8727%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (80 samples, 0.02%)</title><rect x="2.8946%" y="613" width="0.0221%" height="15" fill="rgb(250,156,29)" fg:x="10486" fg:w="80"/><text x="3.1446%" y="623.50"></text></g><g><title>LinearScan::add_def (67 samples, 0.02%)</title><rect x="2.9167%" y="613" width="0.0185%" height="15" fill="rgb(216,193,19)" fg:x="10566" fg:w="67"/><text x="3.1667%" y="623.50"></text></g><g><title>Interval::add_range (38 samples, 0.01%)</title><rect x="2.9451%" y="597" width="0.0105%" height="15" fill="rgb(216,135,14)" fg:x="10669" fg:w="38"/><text x="3.1951%" y="607.50"></text></g><g><title>LinearScan::add_temp (96 samples, 0.03%)</title><rect x="2.9424%" y="613" width="0.0265%" height="15" fill="rgb(241,47,5)" fg:x="10659" fg:w="96"/><text x="3.1924%" y="623.50"></text></g><g><title>LinearScan::create_interval (48 samples, 0.01%)</title><rect x="2.9556%" y="597" width="0.0133%" height="15" fill="rgb(233,42,35)" fg:x="10707" fg:w="48"/><text x="3.2056%" y="607.50"></text></g><g><title>Interval::add_range (43 samples, 0.01%)</title><rect x="2.9854%" y="597" width="0.0119%" height="15" fill="rgb(231,13,6)" fg:x="10815" fg:w="43"/><text x="3.2354%" y="607.50"></text></g><g><title>Interval::Interval (55 samples, 0.02%)</title><rect x="3.0023%" y="581" width="0.0152%" height="15" fill="rgb(207,181,40)" fg:x="10876" fg:w="55"/><text x="3.2523%" y="591.50"></text></g><g><title>LinearScan::create_interval (84 samples, 0.02%)</title><rect x="2.9976%" y="597" width="0.0232%" height="15" fill="rgb(254,173,49)" fg:x="10859" fg:w="84"/><text x="3.2476%" y="607.50"></text></g><g><title>LinearScan::add_use (191 samples, 0.05%)</title><rect x="2.9689%" y="613" width="0.0527%" height="15" fill="rgb(221,1,38)" fg:x="10755" fg:w="191"/><text x="3.2189%" y="623.50"></text></g><g><title>LinearScan::build_intervals (825 samples, 0.23%)</title><rect x="2.8148%" y="629" width="0.2277%" height="15" fill="rgb(206,124,46)" fg:x="10197" fg:w="825"/><text x="3.0648%" y="639.50"></text></g><g><title>LinearScan::compute_global_live_sets (74 samples, 0.02%)</title><rect x="3.0426%" y="629" width="0.0204%" height="15" fill="rgb(249,21,11)" fg:x="11022" fg:w="74"/><text x="3.2926%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (105 samples, 0.03%)</title><rect x="3.1041%" y="613" width="0.0290%" height="15" fill="rgb(222,201,40)" fg:x="11245" fg:w="105"/><text x="3.3541%" y="623.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (41 samples, 0.01%)</title><rect x="3.1372%" y="613" width="0.0113%" height="15" fill="rgb(235,61,29)" fg:x="11365" fg:w="41"/><text x="3.3872%" y="623.50"></text></g><g><title>LinearScan::compute_local_live_sets (311 samples, 0.09%)</title><rect x="3.0630%" y="629" width="0.0858%" height="15" fill="rgb(219,207,3)" fg:x="11096" fg:w="311"/><text x="3.3130%" y="639.50"></text></g><g><title>LinearScan::eliminate_spill_moves (72 samples, 0.02%)</title><rect x="3.1488%" y="629" width="0.0199%" height="15" fill="rgb(222,56,46)" fg:x="11407" fg:w="72"/><text x="3.3988%" y="639.50"></text></g><g><title>LinearScan::resolve_collect_mappings (78 samples, 0.02%)</title><rect x="3.1858%" y="613" width="0.0215%" height="15" fill="rgb(239,76,54)" fg:x="11541" fg:w="78"/><text x="3.4358%" y="623.50"></text></g><g><title>Interval::split_child_at_op_id (52 samples, 0.01%)</title><rect x="3.1930%" y="597" width="0.0144%" height="15" fill="rgb(231,124,27)" fg:x="11567" fg:w="52"/><text x="3.4430%" y="607.50"></text></g><g><title>LinearScan::resolve_data_flow (117 samples, 0.03%)</title><rect x="3.1781%" y="629" width="0.0323%" height="15" fill="rgb(249,195,6)" fg:x="11513" fg:w="117"/><text x="3.4281%" y="639.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (37 samples, 0.01%)</title><rect x="3.2181%" y="629" width="0.0102%" height="15" fill="rgb(237,174,47)" fg:x="11658" fg:w="37"/><text x="3.4681%" y="639.50"></text></g><g><title>LinearScan::do_linear_scan (3,192 samples, 0.88%)</title><rect x="2.3593%" y="645" width="0.8811%" height="15" fill="rgb(206,201,31)" fg:x="8547" fg:w="3192"/><text x="2.6093%" y="655.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (44 samples, 0.01%)</title><rect x="3.2283%" y="629" width="0.0121%" height="15" fill="rgb(231,57,52)" fg:x="11695" fg:w="44"/><text x="3.4783%" y="639.50"></text></g><g><title>Compilation::emit_lir (4,176 samples, 1.15%)</title><rect x="2.0891%" y="661" width="1.1528%" height="15" fill="rgb(248,177,22)" fg:x="7568" fg:w="4176"/><text x="2.3391%" y="671.50"></text></g><g><title>Method::build_interpreter_method_data (59 samples, 0.02%)</title><rect x="3.2510%" y="629" width="0.0163%" height="15" fill="rgb(215,211,37)" fg:x="11777" fg:w="59"/><text x="3.5010%" y="639.50"></text></g><g><title>MethodData::allocate (59 samples, 0.02%)</title><rect x="3.2510%" y="613" width="0.0163%" height="15" fill="rgb(241,128,51)" fg:x="11777" fg:w="59"/><text x="3.5010%" y="623.50"></text></g><g><title>ciMethodData::load_data (52 samples, 0.01%)</title><rect x="3.2675%" y="629" width="0.0144%" height="15" fill="rgb(227,165,31)" fg:x="11837" fg:w="52"/><text x="3.5175%" y="639.50"></text></g><g><title>Compilation::compile_java_method (9,901 samples, 2.73%)</title><rect x="0.5504%" y="677" width="2.7331%" height="15" fill="rgb(228,167,24)" fg:x="1994" fg:w="9901"/><text x="0.8004%" y="687.50">Co..</text></g><g><title>ciMethod::ensure_method_data (127 samples, 0.04%)</title><rect x="3.2485%" y="661" width="0.0351%" height="15" fill="rgb(228,143,12)" fg:x="11768" fg:w="127"/><text x="3.4985%" y="671.50"></text></g><g><title>ciMethod::ensure_method_data (118 samples, 0.03%)</title><rect x="3.2510%" y="645" width="0.0326%" height="15" fill="rgb(249,149,8)" fg:x="11777" fg:w="118"/><text x="3.5010%" y="655.50"></text></g><g><title>Compilation::initialize (53 samples, 0.01%)</title><rect x="3.2835%" y="677" width="0.0146%" height="15" fill="rgb(243,35,44)" fg:x="11895" fg:w="53"/><text x="3.5335%" y="687.50"></text></g><g><title>CodeBuffer::finalize_oop_references (68 samples, 0.02%)</title><rect x="3.3147%" y="645" width="0.0188%" height="15" fill="rgb(246,89,9)" fg:x="12008" fg:w="68"/><text x="3.5647%" y="655.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (44 samples, 0.01%)</title><rect x="3.3664%" y="597" width="0.0121%" height="15" fill="rgb(233,213,13)" fg:x="12195" fg:w="44"/><text x="3.6164%" y="607.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (41 samples, 0.01%)</title><rect x="3.3862%" y="597" width="0.0113%" height="15" fill="rgb(233,141,41)" fg:x="12267" fg:w="41"/><text x="3.6362%" y="607.50"></text></g><g><title>CodeBuffer::relocate_code_to (135 samples, 0.04%)</title><rect x="3.3619%" y="613" width="0.0373%" height="15" fill="rgb(239,167,4)" fg:x="12179" fg:w="135"/><text x="3.6119%" y="623.50"></text></g><g><title>CodeBuffer::copy_code_to (152 samples, 0.04%)</title><rect x="3.3606%" y="629" width="0.0420%" height="15" fill="rgb(209,217,16)" fg:x="12174" fg:w="152"/><text x="3.6106%" y="639.50"></text></g><g><title>CompiledMethod::CompiledMethod (39 samples, 0.01%)</title><rect x="3.4047%" y="629" width="0.0108%" height="15" fill="rgb(219,88,35)" fg:x="12334" fg:w="39"/><text x="3.6547%" y="639.50"></text></g><g><title>G1CollectedHeap::register_nmethod (55 samples, 0.02%)</title><rect x="3.4169%" y="629" width="0.0152%" height="15" fill="rgb(220,193,23)" fg:x="12378" fg:w="55"/><text x="3.6669%" y="639.50"></text></g><g><title>nmethod::oops_do (55 samples, 0.02%)</title><rect x="3.4169%" y="613" width="0.0152%" height="15" fill="rgb(230,90,52)" fg:x="12378" fg:w="55"/><text x="3.6669%" y="623.50"></text></g><g><title>nmethod::nmethod (318 samples, 0.09%)</title><rect x="3.3586%" y="645" width="0.0878%" height="15" fill="rgb(252,106,19)" fg:x="12167" fg:w="318"/><text x="3.6086%" y="655.50"></text></g><g><title>nmethod::new_nmethod (485 samples, 0.13%)</title><rect x="3.3131%" y="661" width="0.1339%" height="15" fill="rgb(206,74,20)" fg:x="12002" fg:w="485"/><text x="3.5631%" y="671.50"></text></g><g><title>ciEnv::register_method (539 samples, 0.15%)</title><rect x="3.2985%" y="677" width="0.1488%" height="15" fill="rgb(230,138,44)" fg:x="11949" fg:w="539"/><text x="3.5485%" y="687.50"></text></g><g><title>Compilation::compile_method (10,501 samples, 2.90%)</title><rect x="0.5491%" y="693" width="2.8987%" height="15" fill="rgb(235,182,43)" fg:x="1989" fg:w="10501"/><text x="0.7991%" y="703.50">Co..</text></g><g><title>Compiler::compile_method (10,551 samples, 2.91%)</title><rect x="0.5380%" y="725" width="2.9125%" height="15" fill="rgb(242,16,51)" fg:x="1949" fg:w="10551"/><text x="0.7880%" y="735.50">Co..</text></g><g><title>Compilation::Compilation (10,523 samples, 2.90%)</title><rect x="0.5457%" y="709" width="2.9048%" height="15" fill="rgb(248,9,4)" fg:x="1977" fg:w="10523"/><text x="0.7957%" y="719.50">Co..</text></g><g><title>ciObjectFactory::get (73 samples, 0.02%)</title><rect x="3.4724%" y="709" width="0.0202%" height="15" fill="rgb(210,31,22)" fg:x="12579" fg:w="73"/><text x="3.7224%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (47 samples, 0.01%)</title><rect x="3.4795%" y="693" width="0.0130%" height="15" fill="rgb(239,54,39)" fg:x="12605" fg:w="47"/><text x="3.7295%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (42 samples, 0.01%)</title><rect x="3.4809%" y="677" width="0.0116%" height="15" fill="rgb(230,99,41)" fg:x="12610" fg:w="42"/><text x="3.7309%" y="687.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (39 samples, 0.01%)</title><rect x="3.4817%" y="661" width="0.0108%" height="15" fill="rgb(253,106,12)" fg:x="12613" fg:w="39"/><text x="3.7317%" y="671.50"></text></g><g><title>ciEnv::ciEnv (114 samples, 0.03%)</title><rect x="3.4613%" y="725" width="0.0315%" height="15" fill="rgb(213,46,41)" fg:x="12539" fg:w="114"/><text x="3.7113%" y="735.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (44 samples, 0.01%)</title><rect x="3.5113%" y="645" width="0.0121%" height="15" fill="rgb(215,133,35)" fg:x="12720" fg:w="44"/><text x="3.7613%" y="655.50"></text></g><g><title>ciSignature::ciSignature (96 samples, 0.03%)</title><rect x="3.5000%" y="661" width="0.0265%" height="15" fill="rgb(213,28,5)" fg:x="12679" fg:w="96"/><text x="3.7500%" y="671.50"></text></g><g><title>ciMethod::ciMethod (112 samples, 0.03%)</title><rect x="3.4961%" y="677" width="0.0309%" height="15" fill="rgb(215,77,49)" fg:x="12665" fg:w="112"/><text x="3.7461%" y="687.50"></text></g><g><title>ciEnv::get_method_from_handle (137 samples, 0.04%)</title><rect x="3.4928%" y="725" width="0.0378%" height="15" fill="rgb(248,100,22)" fg:x="12653" fg:w="137"/><text x="3.7428%" y="735.50"></text></g><g><title>ciObjectFactory::get_metadata (131 samples, 0.04%)</title><rect x="3.4944%" y="709" width="0.0362%" height="15" fill="rgb(208,67,9)" fg:x="12659" fg:w="131"/><text x="3.7444%" y="719.50"></text></g><g><title>ciObjectFactory::create_new_metadata (127 samples, 0.04%)</title><rect x="3.4955%" y="693" width="0.0351%" height="15" fill="rgb(219,133,21)" fg:x="12663" fg:w="127"/><text x="3.7455%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,110 samples, 3.07%)</title><rect x="0.4715%" y="741" width="3.0668%" height="15" fill="rgb(246,46,29)" fg:x="1708" fg:w="11110"/><text x="0.7215%" y="751.50">Com..</text></g><g><title>CompileBroker::possibly_add_compiler_threads (40 samples, 0.01%)</title><rect x="3.5383%" y="741" width="0.0110%" height="15" fill="rgb(246,185,52)" fg:x="12818" fg:w="40"/><text x="3.7883%" y="751.50"></text></g><g><title>finish_task_switch (40 samples, 0.01%)</title><rect x="3.5665%" y="501" width="0.0110%" height="15" fill="rgb(252,136,11)" fg:x="12920" fg:w="40"/><text x="3.8165%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.01%)</title><rect x="3.5673%" y="485" width="0.0102%" height="15" fill="rgb(219,138,53)" fg:x="12923" fg:w="37"/><text x="3.8173%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.01%)</title><rect x="3.5673%" y="469" width="0.0102%" height="15" fill="rgb(211,51,23)" fg:x="12923" fg:w="37"/><text x="3.8173%" y="479.50"></text></g><g><title>futex_wait_queue_me (66 samples, 0.02%)</title><rect x="3.5612%" y="549" width="0.0182%" height="15" fill="rgb(247,221,28)" fg:x="12901" fg:w="66"/><text x="3.8112%" y="559.50"></text></g><g><title>schedule (61 samples, 0.02%)</title><rect x="3.5626%" y="533" width="0.0168%" height="15" fill="rgb(251,222,45)" fg:x="12906" fg:w="61"/><text x="3.8126%" y="543.50"></text></g><g><title>__schedule (61 samples, 0.02%)</title><rect x="3.5626%" y="517" width="0.0168%" height="15" fill="rgb(217,162,53)" fg:x="12906" fg:w="61"/><text x="3.8126%" y="527.50"></text></g><g><title>do_syscall_64 (72 samples, 0.02%)</title><rect x="3.5601%" y="613" width="0.0199%" height="15" fill="rgb(229,93,14)" fg:x="12897" fg:w="72"/><text x="3.8101%" y="623.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.02%)</title><rect x="3.5601%" y="597" width="0.0199%" height="15" fill="rgb(209,67,49)" fg:x="12897" fg:w="72"/><text x="3.8101%" y="607.50"></text></g><g><title>do_futex (69 samples, 0.02%)</title><rect x="3.5610%" y="581" width="0.0190%" height="15" fill="rgb(213,87,29)" fg:x="12900" fg:w="69"/><text x="3.8110%" y="591.50"></text></g><g><title>futex_wait (69 samples, 0.02%)</title><rect x="3.5610%" y="565" width="0.0190%" height="15" fill="rgb(205,151,52)" fg:x="12900" fg:w="69"/><text x="3.8110%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.02%)</title><rect x="3.5601%" y="629" width="0.0213%" height="15" fill="rgb(253,215,39)" fg:x="12897" fg:w="77"/><text x="3.8101%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (85 samples, 0.02%)</title><rect x="3.5582%" y="677" width="0.0235%" height="15" fill="rgb(221,220,41)" fg:x="12890" fg:w="85"/><text x="3.8082%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (85 samples, 0.02%)</title><rect x="3.5582%" y="661" width="0.0235%" height="15" fill="rgb(218,133,21)" fg:x="12890" fg:w="85"/><text x="3.8082%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (83 samples, 0.02%)</title><rect x="3.5588%" y="645" width="0.0229%" height="15" fill="rgb(221,193,43)" fg:x="12892" fg:w="83"/><text x="3.8088%" y="655.50"></text></g><g><title>Monitor::IWait (95 samples, 0.03%)</title><rect x="3.5577%" y="709" width="0.0262%" height="15" fill="rgb(240,128,52)" fg:x="12888" fg:w="95"/><text x="3.8077%" y="719.50"></text></g><g><title>os::PlatformEvent::park (93 samples, 0.03%)</title><rect x="3.5582%" y="693" width="0.0257%" height="15" fill="rgb(253,114,12)" fg:x="12890" fg:w="93"/><text x="3.8082%" y="703.50"></text></g><g><title>Monitor::wait (105 samples, 0.03%)</title><rect x="3.5552%" y="725" width="0.0290%" height="15" fill="rgb(215,223,47)" fg:x="12879" fg:w="105"/><text x="3.8052%" y="735.50"></text></g><g><title>TieredThresholdPolicy::select_task (86 samples, 0.02%)</title><rect x="3.5842%" y="725" width="0.0237%" height="15" fill="rgb(248,225,23)" fg:x="12984" fg:w="86"/><text x="3.8342%" y="735.50"></text></g><g><title>CompileQueue::get (221 samples, 0.06%)</title><rect x="3.5494%" y="741" width="0.0610%" height="15" fill="rgb(250,108,0)" fg:x="12858" fg:w="221"/><text x="3.7994%" y="751.50"></text></g><g><title>Thread::call_run (11,388 samples, 3.14%)</title><rect x="0.4693%" y="789" width="3.1436%" height="15" fill="rgb(228,208,7)" fg:x="1700" fg:w="11388"/><text x="0.7193%" y="799.50">Thr..</text></g><g><title>JavaThread::thread_main_inner (11,387 samples, 3.14%)</title><rect x="0.4696%" y="773" width="3.1433%" height="15" fill="rgb(244,45,10)" fg:x="1701" fg:w="11387"/><text x="0.7196%" y="783.50">Jav..</text></g><g><title>CompileBroker::compiler_thread_loop (11,387 samples, 3.14%)</title><rect x="0.4696%" y="757" width="3.1433%" height="15" fill="rgb(207,125,25)" fg:x="1701" fg:w="11387"/><text x="0.7196%" y="767.50">Com..</text></g><g><title>__GI___clone (11,407 samples, 3.15%)</title><rect x="0.4643%" y="837" width="3.1488%" height="15" fill="rgb(210,195,18)" fg:x="1682" fg:w="11407"/><text x="0.7143%" y="847.50">__G..</text></g><g><title>start_thread (11,390 samples, 3.14%)</title><rect x="0.4690%" y="821" width="3.1441%" height="15" fill="rgb(249,80,12)" fg:x="1699" fg:w="11390"/><text x="0.7190%" y="831.50">sta..</text></g><g><title>thread_native_entry (11,390 samples, 3.14%)</title><rect x="0.4690%" y="805" width="3.1441%" height="15" fill="rgb(221,65,9)" fg:x="1699" fg:w="11390"/><text x="0.7190%" y="815.50">thr..</text></g><g><title>C1_CompilerThre (13,100 samples, 3.62%)</title><rect x="0.0105%" y="853" width="3.6162%" height="15" fill="rgb(235,49,36)" fg:x="38" fg:w="13100"/><text x="0.2605%" y="863.50">C1_C..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (37 samples, 0.01%)</title><rect x="3.6476%" y="837" width="0.0102%" height="15" fill="rgb(225,32,20)" fg:x="13214" fg:w="37"/><text x="3.8976%" y="847.50"></text></g><g><title>RegMask::is_UP (37 samples, 0.01%)</title><rect x="3.6476%" y="821" width="0.0102%" height="15" fill="rgb(215,141,46)" fg:x="13214" fg:w="37"/><text x="3.8976%" y="831.50"></text></g><g><title>ProjNode::pinned (73 samples, 0.02%)</title><rect x="3.6860%" y="821" width="0.0202%" height="15" fill="rgb(250,160,47)" fg:x="13353" fg:w="73"/><text x="3.9360%" y="831.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (77 samples, 0.02%)</title><rect x="3.6852%" y="837" width="0.0213%" height="15" fill="rgb(216,222,40)" fg:x="13350" fg:w="77"/><text x="3.9352%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (61 samples, 0.02%)</title><rect x="3.9146%" y="821" width="0.0168%" height="15" fill="rgb(234,217,39)" fg:x="14181" fg:w="61"/><text x="4.1646%" y="831.50"></text></g><g><title>MultiNode::is_CFG (62 samples, 0.02%)</title><rect x="4.0521%" y="821" width="0.0171%" height="15" fill="rgb(207,178,40)" fg:x="14679" fg:w="62"/><text x="4.3021%" y="831.50"></text></g><g><title>Node::is_CFG (60 samples, 0.02%)</title><rect x="4.0896%" y="821" width="0.0166%" height="15" fill="rgb(221,136,13)" fg:x="14815" fg:w="60"/><text x="4.3396%" y="831.50"></text></g><g><title>PhiNode::Opcode (39 samples, 0.01%)</title><rect x="4.2069%" y="821" width="0.0108%" height="15" fill="rgb(249,199,10)" fg:x="15240" fg:w="39"/><text x="4.4569%" y="831.50"></text></g><g><title>RegionNode::is_CFG (48 samples, 0.01%)</title><rect x="4.2784%" y="821" width="0.0133%" height="15" fill="rgb(249,222,13)" fg:x="15499" fg:w="48"/><text x="4.5284%" y="831.50"></text></g><g><title>_dl_update_slotinfo (212 samples, 0.06%)</title><rect x="4.4015%" y="821" width="0.0585%" height="15" fill="rgb(244,185,38)" fg:x="15945" fg:w="212"/><text x="4.6515%" y="831.50"></text></g><g><title>find_lowest_bit (38 samples, 0.01%)</title><rect x="4.5144%" y="821" width="0.0105%" height="15" fill="rgb(236,202,9)" fg:x="16354" fg:w="38"/><text x="4.7644%" y="831.50"></text></g><g><title>update_get_addr (64 samples, 0.02%)</title><rect x="4.6008%" y="821" width="0.0177%" height="15" fill="rgb(250,229,37)" fg:x="16667" fg:w="64"/><text x="4.8508%" y="831.50"></text></g><g><title>[anon] (3,273 samples, 0.90%)</title><rect x="3.7161%" y="837" width="0.9035%" height="15" fill="rgb(206,174,23)" fg:x="13462" fg:w="3273"/><text x="3.9661%" y="847.50"></text></g><g><title>Compile::call_generator (39 samples, 0.01%)</title><rect x="4.6295%" y="677" width="0.0108%" height="15" fill="rgb(211,33,43)" fg:x="16771" fg:w="39"/><text x="4.8795%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (39 samples, 0.01%)</title><rect x="4.6295%" y="661" width="0.0108%" height="15" fill="rgb(245,58,50)" fg:x="16771" fg:w="39"/><text x="4.8795%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (62 samples, 0.02%)</title><rect x="4.6538%" y="565" width="0.0171%" height="15" fill="rgb(244,68,36)" fg:x="16859" fg:w="62"/><text x="4.9038%" y="575.50"></text></g><g><title>ciBytecodeStream::get_method (61 samples, 0.02%)</title><rect x="4.6541%" y="549" width="0.0168%" height="15" fill="rgb(232,229,15)" fg:x="16860" fg:w="61"/><text x="4.9041%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (57 samples, 0.02%)</title><rect x="4.6552%" y="533" width="0.0157%" height="15" fill="rgb(254,30,23)" fg:x="16864" fg:w="57"/><text x="4.9052%" y="543.50"></text></g><g><title>ciObjectFactory::get_metadata (41 samples, 0.01%)</title><rect x="4.6596%" y="517" width="0.0113%" height="15" fill="rgb(235,160,14)" fg:x="16880" fg:w="41"/><text x="4.9096%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (41 samples, 0.01%)</title><rect x="4.6596%" y="501" width="0.0113%" height="15" fill="rgb(212,155,44)" fg:x="16880" fg:w="41"/><text x="4.9096%" y="511.50"></text></g><g><title>ciMethod::ciMethod (40 samples, 0.01%)</title><rect x="4.6599%" y="485" width="0.0110%" height="15" fill="rgb(226,2,50)" fg:x="16881" fg:w="40"/><text x="4.9099%" y="495.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (104 samples, 0.03%)</title><rect x="4.6458%" y="581" width="0.0287%" height="15" fill="rgb(234,177,6)" fg:x="16830" fg:w="104"/><text x="4.8958%" y="591.50"></text></g><g><title>ciTypeFlow::df_flow_types (119 samples, 0.03%)</title><rect x="4.6420%" y="613" width="0.0328%" height="15" fill="rgb(217,24,9)" fg:x="16816" fg:w="119"/><text x="4.8920%" y="623.50"></text></g><g><title>ciTypeFlow::flow_block (119 samples, 0.03%)</title><rect x="4.6420%" y="597" width="0.0328%" height="15" fill="rgb(220,13,46)" fg:x="16816" fg:w="119"/><text x="4.8920%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (127 samples, 0.04%)</title><rect x="4.6403%" y="677" width="0.0351%" height="15" fill="rgb(239,221,27)" fg:x="16810" fg:w="127"/><text x="4.8903%" y="687.50"></text></g><g><title>ciMethod::get_flow_analysis (125 samples, 0.03%)</title><rect x="4.6409%" y="661" width="0.0345%" height="15" fill="rgb(222,198,25)" fg:x="16812" fg:w="125"/><text x="4.8909%" y="671.50"></text></g><g><title>ciTypeFlow::do_flow (125 samples, 0.03%)</title><rect x="4.6409%" y="645" width="0.0345%" height="15" fill="rgb(211,99,13)" fg:x="16812" fg:w="125"/><text x="4.8909%" y="655.50"></text></g><g><title>ciTypeFlow::flow_types (125 samples, 0.03%)</title><rect x="4.6409%" y="629" width="0.0345%" height="15" fill="rgb(232,111,31)" fg:x="16812" fg:w="125"/><text x="4.8909%" y="639.50"></text></g><g><title>Compile::call_generator (170 samples, 0.05%)</title><rect x="4.6295%" y="693" width="0.0469%" height="15" fill="rgb(245,82,37)" fg:x="16771" fg:w="170"/><text x="4.8795%" y="703.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (52 samples, 0.01%)</title><rect x="4.7129%" y="485" width="0.0144%" height="15" fill="rgb(227,149,46)" fg:x="17073" fg:w="52"/><text x="4.9629%" y="495.50"></text></g><g><title>ciTypeFlow::df_flow_types (74 samples, 0.02%)</title><rect x="4.7071%" y="517" width="0.0204%" height="15" fill="rgb(218,36,50)" fg:x="17052" fg:w="74"/><text x="4.9571%" y="527.50"></text></g><g><title>ciTypeFlow::flow_block (65 samples, 0.02%)</title><rect x="4.7096%" y="501" width="0.0179%" height="15" fill="rgb(226,80,48)" fg:x="17061" fg:w="65"/><text x="4.9596%" y="511.50"></text></g><g><title>ciTypeFlow::do_flow (81 samples, 0.02%)</title><rect x="4.7063%" y="549" width="0.0224%" height="15" fill="rgb(238,224,15)" fg:x="17049" fg:w="81"/><text x="4.9563%" y="559.50"></text></g><g><title>ciTypeFlow::flow_types (81 samples, 0.02%)</title><rect x="4.7063%" y="533" width="0.0224%" height="15" fill="rgb(241,136,10)" fg:x="17049" fg:w="81"/><text x="4.9563%" y="543.50"></text></g><g><title>InlineTree::ok_to_inline (109 samples, 0.03%)</title><rect x="4.6988%" y="581" width="0.0301%" height="15" fill="rgb(208,32,45)" fg:x="17022" fg:w="109"/><text x="4.9488%" y="591.50"></text></g><g><title>ciMethod::get_flow_analysis (87 samples, 0.02%)</title><rect x="4.7049%" y="565" width="0.0240%" height="15" fill="rgb(207,135,9)" fg:x="17044" fg:w="87"/><text x="4.9549%" y="575.50"></text></g><g><title>Compile::call_generator (148 samples, 0.04%)</title><rect x="4.6905%" y="597" width="0.0409%" height="15" fill="rgb(206,86,44)" fg:x="16992" fg:w="148"/><text x="4.9405%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (50 samples, 0.01%)</title><rect x="4.7767%" y="485" width="0.0138%" height="15" fill="rgb(245,177,15)" fg:x="17304" fg:w="50"/><text x="5.0267%" y="495.50"></text></g><g><title>Compile::call_generator (69 samples, 0.02%)</title><rect x="4.7728%" y="501" width="0.0190%" height="15" fill="rgb(206,64,50)" fg:x="17290" fg:w="69"/><text x="5.0228%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.01%)</title><rect x="4.8388%" y="341" width="0.0127%" height="15" fill="rgb(234,36,40)" fg:x="17529" fg:w="46"/><text x="5.0888%" y="351.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.01%)</title><rect x="4.8385%" y="357" width="0.0133%" height="15" fill="rgb(213,64,8)" fg:x="17528" fg:w="48"/><text x="5.0885%" y="367.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.01%)</title><rect x="4.8379%" y="373" width="0.0146%" height="15" fill="rgb(210,75,36)" fg:x="17526" fg:w="53"/><text x="5.0879%" y="383.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.03%)</title><rect x="4.8299%" y="405" width="0.0265%" height="15" fill="rgb(229,88,21)" fg:x="17497" fg:w="96"/><text x="5.0799%" y="415.50"></text></g><g><title>Parse::Parse (96 samples, 0.03%)</title><rect x="4.8299%" y="389" width="0.0265%" height="15" fill="rgb(252,204,47)" fg:x="17497" fg:w="96"/><text x="5.0799%" y="399.50"></text></g><g><title>Parse::do_call (166 samples, 0.05%)</title><rect x="4.8178%" y="421" width="0.0458%" height="15" fill="rgb(208,77,27)" fg:x="17453" fg:w="166"/><text x="5.0678%" y="431.50"></text></g><g><title>Parse::do_field_access (61 samples, 0.02%)</title><rect x="4.8644%" y="421" width="0.0168%" height="15" fill="rgb(221,76,26)" fg:x="17622" fg:w="61"/><text x="5.1144%" y="431.50"></text></g><g><title>Parse::do_one_block (313 samples, 0.09%)</title><rect x="4.8090%" y="453" width="0.0864%" height="15" fill="rgb(225,139,18)" fg:x="17421" fg:w="313"/><text x="5.0590%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (304 samples, 0.08%)</title><rect x="4.8114%" y="437" width="0.0839%" height="15" fill="rgb(230,137,11)" fg:x="17430" fg:w="304"/><text x="5.0614%" y="447.50"></text></g><g><title>Parse::do_all_blocks (322 samples, 0.09%)</title><rect x="4.8084%" y="469" width="0.0889%" height="15" fill="rgb(212,28,1)" fg:x="17419" fg:w="322"/><text x="5.0584%" y="479.50"></text></g><g><title>ParseGenerator::generate (377 samples, 0.10%)</title><rect x="4.7996%" y="501" width="0.1041%" height="15" fill="rgb(248,164,17)" fg:x="17387" fg:w="377"/><text x="5.0496%" y="511.50"></text></g><g><title>Parse::Parse (376 samples, 0.10%)</title><rect x="4.7999%" y="485" width="0.1038%" height="15" fill="rgb(222,171,42)" fg:x="17388" fg:w="376"/><text x="5.0499%" y="495.50"></text></g><g><title>PredictedCallGenerator::generate (41 samples, 0.01%)</title><rect x="4.9036%" y="501" width="0.0113%" height="15" fill="rgb(243,84,45)" fg:x="17764" fg:w="41"/><text x="5.1536%" y="511.50"></text></g><g><title>Parse::do_call (542 samples, 0.15%)</title><rect x="4.7728%" y="517" width="0.1496%" height="15" fill="rgb(252,49,23)" fg:x="17290" fg:w="542"/><text x="5.0228%" y="527.50"></text></g><g><title>Parse::do_get_xxx (45 samples, 0.01%)</title><rect x="4.9268%" y="501" width="0.0124%" height="15" fill="rgb(215,19,7)" fg:x="17848" fg:w="45"/><text x="5.1768%" y="511.50"></text></g><g><title>GraphKit::access_store_at (42 samples, 0.01%)</title><rect x="4.9395%" y="485" width="0.0116%" height="15" fill="rgb(238,81,41)" fg:x="17894" fg:w="42"/><text x="5.1895%" y="495.50"></text></g><g><title>BarrierSetC2::store_at (42 samples, 0.01%)</title><rect x="4.9395%" y="469" width="0.0116%" height="15" fill="rgb(210,199,37)" fg:x="17894" fg:w="42"/><text x="5.1895%" y="479.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (38 samples, 0.01%)</title><rect x="4.9406%" y="453" width="0.0105%" height="15" fill="rgb(244,192,49)" fg:x="17898" fg:w="38"/><text x="5.1906%" y="463.50"></text></g><g><title>Parse::do_put_xxx (45 samples, 0.01%)</title><rect x="4.9393%" y="501" width="0.0124%" height="15" fill="rgb(226,211,11)" fg:x="17893" fg:w="45"/><text x="5.1893%" y="511.50"></text></g><g><title>Parse::do_field_access (110 samples, 0.03%)</title><rect x="4.9249%" y="517" width="0.0304%" height="15" fill="rgb(236,162,54)" fg:x="17841" fg:w="110"/><text x="5.1749%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (780 samples, 0.22%)</title><rect x="4.7631%" y="533" width="0.2153%" height="15" fill="rgb(220,229,9)" fg:x="17255" fg:w="780"/><text x="5.0131%" y="543.50"></text></g><g><title>Parse::do_one_block (796 samples, 0.22%)</title><rect x="4.7590%" y="549" width="0.2197%" height="15" fill="rgb(250,87,22)" fg:x="17240" fg:w="796"/><text x="5.0090%" y="559.50"></text></g><g><title>Parse::do_all_blocks (808 samples, 0.22%)</title><rect x="4.7587%" y="565" width="0.2230%" height="15" fill="rgb(239,43,17)" fg:x="17239" fg:w="808"/><text x="5.0087%" y="575.50"></text></g><g><title>ParseGenerator::generate (863 samples, 0.24%)</title><rect x="4.7493%" y="597" width="0.2382%" height="15" fill="rgb(231,177,25)" fg:x="17205" fg:w="863"/><text x="4.9993%" y="607.50"></text></g><g><title>Parse::Parse (861 samples, 0.24%)</title><rect x="4.7499%" y="581" width="0.2377%" height="15" fill="rgb(219,179,1)" fg:x="17207" fg:w="861"/><text x="4.9999%" y="591.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.01%)</title><rect x="4.9992%" y="437" width="0.0124%" height="15" fill="rgb(238,219,53)" fg:x="18110" fg:w="45"/><text x="5.2492%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.01%)</title><rect x="4.9994%" y="421" width="0.0121%" height="15" fill="rgb(232,167,36)" fg:x="18111" fg:w="44"/><text x="5.2494%" y="431.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.01%)</title><rect x="4.9992%" y="453" width="0.0127%" height="15" fill="rgb(244,19,51)" fg:x="18110" fg:w="46"/><text x="5.2492%" y="463.50"></text></g><g><title>ParseGenerator::generate (54 samples, 0.01%)</title><rect x="4.9981%" y="485" width="0.0149%" height="15" fill="rgb(224,6,22)" fg:x="18106" fg:w="54"/><text x="5.2481%" y="495.50"></text></g><g><title>Parse::Parse (54 samples, 0.01%)</title><rect x="4.9981%" y="469" width="0.0149%" height="15" fill="rgb(224,145,5)" fg:x="18106" fg:w="54"/><text x="5.2481%" y="479.50"></text></g><g><title>Parse::do_call (81 samples, 0.02%)</title><rect x="4.9934%" y="501" width="0.0224%" height="15" fill="rgb(234,130,49)" fg:x="18089" fg:w="81"/><text x="5.2434%" y="511.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.03%)</title><rect x="4.9925%" y="549" width="0.0304%" height="15" fill="rgb(254,6,2)" fg:x="18086" fg:w="110"/><text x="5.2425%" y="559.50"></text></g><g><title>Parse::do_one_block (109 samples, 0.03%)</title><rect x="4.9928%" y="533" width="0.0301%" height="15" fill="rgb(208,96,46)" fg:x="18087" fg:w="109"/><text x="5.2428%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.03%)</title><rect x="4.9928%" y="517" width="0.0301%" height="15" fill="rgb(239,3,39)" fg:x="18087" fg:w="109"/><text x="5.2428%" y="527.50"></text></g><g><title>ParseGenerator::generate (123 samples, 0.03%)</title><rect x="4.9898%" y="581" width="0.0340%" height="15" fill="rgb(233,210,1)" fg:x="18076" fg:w="123"/><text x="5.2398%" y="591.50"></text></g><g><title>Parse::Parse (123 samples, 0.03%)</title><rect x="4.9898%" y="565" width="0.0340%" height="15" fill="rgb(244,137,37)" fg:x="18076" fg:w="123"/><text x="5.2398%" y="575.50"></text></g><g><title>PredictedCallGenerator::generate (160 samples, 0.04%)</title><rect x="4.9876%" y="597" width="0.0442%" height="15" fill="rgb(240,136,2)" fg:x="18068" fg:w="160"/><text x="5.2376%" y="607.50"></text></g><g><title>Parse::do_call (1,258 samples, 0.35%)</title><rect x="4.6905%" y="613" width="0.3473%" height="15" fill="rgb(239,18,37)" fg:x="16992" fg:w="1258"/><text x="4.9405%" y="623.50"></text></g><g><title>Parse::do_get_xxx (40 samples, 0.01%)</title><rect x="5.0417%" y="597" width="0.0110%" height="15" fill="rgb(218,185,22)" fg:x="18264" fg:w="40"/><text x="5.2917%" y="607.50"></text></g><g><title>GraphKit::access_store_at (63 samples, 0.02%)</title><rect x="5.0533%" y="581" width="0.0174%" height="15" fill="rgb(225,218,4)" fg:x="18306" fg:w="63"/><text x="5.3033%" y="591.50"></text></g><g><title>BarrierSetC2::store_at (63 samples, 0.02%)</title><rect x="5.0533%" y="565" width="0.0174%" height="15" fill="rgb(230,182,32)" fg:x="18306" fg:w="63"/><text x="5.3033%" y="575.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (61 samples, 0.02%)</title><rect x="5.0538%" y="549" width="0.0168%" height="15" fill="rgb(242,56,43)" fg:x="18308" fg:w="61"/><text x="5.3038%" y="559.50"></text></g><g><title>Parse::do_put_xxx (68 samples, 0.02%)</title><rect x="5.0527%" y="597" width="0.0188%" height="15" fill="rgb(233,99,24)" fg:x="18304" fg:w="68"/><text x="5.3027%" y="607.50"></text></g><g><title>Parse::do_field_access (114 samples, 0.03%)</title><rect x="5.0403%" y="613" width="0.0315%" height="15" fill="rgb(234,209,42)" fg:x="18259" fg:w="114"/><text x="5.2903%" y="623.50"></text></g><g><title>Parse::do_one_block (1,463 samples, 0.40%)</title><rect x="4.6801%" y="645" width="0.4039%" height="15" fill="rgb(227,7,12)" fg:x="16954" fg:w="1463"/><text x="4.9301%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (1,459 samples, 0.40%)</title><rect x="4.6812%" y="629" width="0.4027%" height="15" fill="rgb(245,203,43)" fg:x="16958" fg:w="1459"/><text x="4.9312%" y="639.50"></text></g><g><title>ParseGenerator::generate (1,473 samples, 0.41%)</title><rect x="4.6776%" y="693" width="0.4066%" height="15" fill="rgb(238,205,33)" fg:x="16945" fg:w="1473"/><text x="4.9276%" y="703.50"></text></g><g><title>Parse::Parse (1,473 samples, 0.41%)</title><rect x="4.6776%" y="677" width="0.4066%" height="15" fill="rgb(231,56,7)" fg:x="16945" fg:w="1473"/><text x="4.9276%" y="687.50"></text></g><g><title>Parse::do_all_blocks (1,464 samples, 0.40%)</title><rect x="4.6801%" y="661" width="0.4041%" height="15" fill="rgb(244,186,29)" fg:x="16954" fg:w="1464"/><text x="4.9301%" y="671.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.02%)</title><rect x="5.1181%" y="437" width="0.0171%" height="15" fill="rgb(234,111,31)" fg:x="18541" fg:w="62"/><text x="5.3681%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.02%)</title><rect x="5.1195%" y="421" width="0.0157%" height="15" fill="rgb(241,149,10)" fg:x="18546" fg:w="57"/><text x="5.3695%" y="431.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.02%)</title><rect x="5.1181%" y="453" width="0.0177%" height="15" fill="rgb(249,206,44)" fg:x="18541" fg:w="64"/><text x="5.3681%" y="463.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.02%)</title><rect x="5.1159%" y="485" width="0.0204%" height="15" fill="rgb(251,153,30)" fg:x="18533" fg:w="74"/><text x="5.3659%" y="495.50"></text></g><g><title>Parse::Parse (74 samples, 0.02%)</title><rect x="5.1159%" y="469" width="0.0204%" height="15" fill="rgb(239,152,38)" fg:x="18533" fg:w="74"/><text x="5.3659%" y="479.50"></text></g><g><title>Parse::do_call (116 samples, 0.03%)</title><rect x="5.1068%" y="501" width="0.0320%" height="15" fill="rgb(249,139,47)" fg:x="18500" fg:w="116"/><text x="5.3568%" y="511.50"></text></g><g><title>Parse::do_one_block (174 samples, 0.05%)</title><rect x="5.1041%" y="533" width="0.0480%" height="15" fill="rgb(244,64,35)" fg:x="18490" fg:w="174"/><text x="5.3541%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (173 samples, 0.05%)</title><rect x="5.1043%" y="517" width="0.0478%" height="15" fill="rgb(216,46,15)" fg:x="18491" fg:w="173"/><text x="5.3543%" y="527.50"></text></g><g><title>Parse::do_all_blocks (178 samples, 0.05%)</title><rect x="5.1041%" y="549" width="0.0491%" height="15" fill="rgb(250,74,19)" fg:x="18490" fg:w="178"/><text x="5.3541%" y="559.50"></text></g><g><title>ParseGenerator::generate (200 samples, 0.06%)</title><rect x="5.1010%" y="581" width="0.0552%" height="15" fill="rgb(249,42,33)" fg:x="18479" fg:w="200"/><text x="5.3510%" y="591.50"></text></g><g><title>Parse::Parse (200 samples, 0.06%)</title><rect x="5.1010%" y="565" width="0.0552%" height="15" fill="rgb(242,149,17)" fg:x="18479" fg:w="200"/><text x="5.3510%" y="575.50"></text></g><g><title>Parse::do_call (279 samples, 0.08%)</title><rect x="5.0883%" y="597" width="0.0770%" height="15" fill="rgb(244,29,21)" fg:x="18433" fg:w="279"/><text x="5.3383%" y="607.50"></text></g><g><title>Parse::do_all_blocks (329 samples, 0.09%)</title><rect x="5.0856%" y="645" width="0.0908%" height="15" fill="rgb(220,130,37)" fg:x="18423" fg:w="329"/><text x="5.3356%" y="655.50"></text></g><g><title>Parse::do_one_block (329 samples, 0.09%)</title><rect x="5.0856%" y="629" width="0.0908%" height="15" fill="rgb(211,67,2)" fg:x="18423" fg:w="329"/><text x="5.3356%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (329 samples, 0.09%)</title><rect x="5.0856%" y="613" width="0.0908%" height="15" fill="rgb(235,68,52)" fg:x="18423" fg:w="329"/><text x="5.3356%" y="623.50"></text></g><g><title>ParseGenerator::generate (336 samples, 0.09%)</title><rect x="5.0845%" y="677" width="0.0928%" height="15" fill="rgb(246,142,3)" fg:x="18419" fg:w="336"/><text x="5.3345%" y="687.50"></text></g><g><title>Parse::Parse (336 samples, 0.09%)</title><rect x="5.0845%" y="661" width="0.0928%" height="15" fill="rgb(241,25,7)" fg:x="18419" fg:w="336"/><text x="5.3345%" y="671.50"></text></g><g><title>Parse::do_call (40 samples, 0.01%)</title><rect x="5.1783%" y="581" width="0.0110%" height="15" fill="rgb(242,119,39)" fg:x="18759" fg:w="40"/><text x="5.4283%" y="591.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="5.1778%" y="613" width="0.0146%" height="15" fill="rgb(241,98,45)" fg:x="18757" fg:w="53"/><text x="5.4278%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.01%)</title><rect x="5.1778%" y="597" width="0.0146%" height="15" fill="rgb(254,28,30)" fg:x="18757" fg:w="53"/><text x="5.4278%" y="607.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.01%)</title><rect x="5.1778%" y="629" width="0.0149%" height="15" fill="rgb(241,142,54)" fg:x="18757" fg:w="54"/><text x="5.4278%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (57 samples, 0.02%)</title><rect x="5.1772%" y="677" width="0.0157%" height="15" fill="rgb(222,85,15)" fg:x="18755" fg:w="57"/><text x="5.4272%" y="687.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.02%)</title><rect x="5.1772%" y="661" width="0.0157%" height="15" fill="rgb(210,85,47)" fg:x="18755" fg:w="57"/><text x="5.4272%" y="671.50"></text></g><g><title>Parse::Parse (57 samples, 0.02%)</title><rect x="5.1772%" y="645" width="0.0157%" height="15" fill="rgb(224,206,25)" fg:x="18755" fg:w="57"/><text x="5.4272%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (395 samples, 0.11%)</title><rect x="5.0842%" y="693" width="0.1090%" height="15" fill="rgb(243,201,19)" fg:x="18418" fg:w="395"/><text x="5.3342%" y="703.50"></text></g><g><title>Parse::do_call (2,053 samples, 0.57%)</title><rect x="4.6295%" y="709" width="0.5667%" height="15" fill="rgb(236,59,4)" fg:x="16771" fg:w="2053"/><text x="4.8795%" y="719.50"></text></g><g><title>C2Compiler::compile_method (2,082 samples, 0.57%)</title><rect x="4.6248%" y="821" width="0.5747%" height="15" fill="rgb(254,179,45)" fg:x="16754" fg:w="2082"/><text x="4.8748%" y="831.50"></text></g><g><title>Compile::Compile (2,082 samples, 0.57%)</title><rect x="4.6248%" y="805" width="0.5747%" height="15" fill="rgb(226,14,10)" fg:x="16754" fg:w="2082"/><text x="4.8748%" y="815.50"></text></g><g><title>ParseGenerator::generate (2,066 samples, 0.57%)</title><rect x="4.6293%" y="789" width="0.5703%" height="15" fill="rgb(244,27,41)" fg:x="16770" fg:w="2066"/><text x="4.8793%" y="799.50"></text></g><g><title>Parse::Parse (2,066 samples, 0.57%)</title><rect x="4.6293%" y="773" width="0.5703%" height="15" fill="rgb(235,35,32)" fg:x="16770" fg:w="2066"/><text x="4.8793%" y="783.50"></text></g><g><title>Parse::do_all_blocks (2,066 samples, 0.57%)</title><rect x="4.6293%" y="757" width="0.5703%" height="15" fill="rgb(218,68,31)" fg:x="16770" fg:w="2066"/><text x="4.8793%" y="767.50"></text></g><g><title>Parse::do_one_block (2,066 samples, 0.57%)</title><rect x="4.6293%" y="741" width="0.5703%" height="15" fill="rgb(207,120,37)" fg:x="16770" fg:w="2066"/><text x="4.8793%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (2,066 samples, 0.57%)</title><rect x="4.6293%" y="725" width="0.5703%" height="15" fill="rgb(227,98,0)" fg:x="16770" fg:w="2066"/><text x="4.8793%" y="735.50"></text></g><g><title>MachSpillCopyNode::implementation (42 samples, 0.01%)</title><rect x="5.2009%" y="741" width="0.0116%" height="15" fill="rgb(207,7,3)" fg:x="18841" fg:w="42"/><text x="5.4509%" y="751.50"></text></g><g><title>Compile::Output (54 samples, 0.01%)</title><rect x="5.2004%" y="805" width="0.0149%" height="15" fill="rgb(206,98,19)" fg:x="18839" fg:w="54"/><text x="5.4504%" y="815.50"></text></g><g><title>Compile::init_buffer (54 samples, 0.01%)</title><rect x="5.2004%" y="789" width="0.0149%" height="15" fill="rgb(217,5,26)" fg:x="18839" fg:w="54"/><text x="5.4504%" y="799.50"></text></g><g><title>Compile::shorten_branches (52 samples, 0.01%)</title><rect x="5.2009%" y="773" width="0.0144%" height="15" fill="rgb(235,190,38)" fg:x="18841" fg:w="52"/><text x="5.4509%" y="783.50"></text></g><g><title>Compile::scratch_emit_size (52 samples, 0.01%)</title><rect x="5.2009%" y="757" width="0.0144%" height="15" fill="rgb(247,86,24)" fg:x="18841" fg:w="52"/><text x="5.4509%" y="767.50"></text></g><g><title>PhaseCFG::schedule_late (39 samples, 0.01%)</title><rect x="5.2239%" y="773" width="0.0108%" height="15" fill="rgb(205,101,16)" fg:x="18924" fg:w="39"/><text x="5.4739%" y="783.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (39 samples, 0.01%)</title><rect x="5.2239%" y="757" width="0.0108%" height="15" fill="rgb(246,168,33)" fg:x="18924" fg:w="39"/><text x="5.4739%" y="767.50"></text></g><g><title>PhaseCFG::sched_call (169 samples, 0.05%)</title><rect x="5.2346%" y="757" width="0.0467%" height="15" fill="rgb(231,114,1)" fg:x="18963" fg:w="169"/><text x="5.4846%" y="767.50"></text></g><g><title>PhaseCFG::schedule_local (170 samples, 0.05%)</title><rect x="5.2346%" y="773" width="0.0469%" height="15" fill="rgb(207,184,53)" fg:x="18963" fg:w="170"/><text x="5.4846%" y="783.50"></text></g><g><title>PhaseCFG::do_global_code_motion (214 samples, 0.06%)</title><rect x="5.2233%" y="805" width="0.0591%" height="15" fill="rgb(224,95,51)" fg:x="18922" fg:w="214"/><text x="5.4733%" y="815.50"></text></g><g><title>PhaseCFG::global_code_motion (214 samples, 0.06%)</title><rect x="5.2233%" y="789" width="0.0591%" height="15" fill="rgb(212,188,45)" fg:x="18922" fg:w="214"/><text x="5.4733%" y="799.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (41 samples, 0.01%)</title><rect x="5.2860%" y="757" width="0.0113%" height="15" fill="rgb(223,154,38)" fg:x="19149" fg:w="41"/><text x="5.5360%" y="767.50"></text></g><g><title>PhaseChaitin::Split (55 samples, 0.02%)</title><rect x="5.2824%" y="789" width="0.0152%" height="15" fill="rgb(251,22,52)" fg:x="19136" fg:w="55"/><text x="5.5324%" y="799.50"></text></g><g><title>PhaseChaitin::split_USE (42 samples, 0.01%)</title><rect x="5.2860%" y="773" width="0.0116%" height="15" fill="rgb(229,209,22)" fg:x="19149" fg:w="42"/><text x="5.5360%" y="783.50"></text></g><g><title>Compile::Code_Gen (358 samples, 0.10%)</title><rect x="5.2004%" y="821" width="0.0988%" height="15" fill="rgb(234,138,34)" fg:x="18839" fg:w="358"/><text x="5.4504%" y="831.50"></text></g><g><title>PhaseChaitin::Register_Allocate (61 samples, 0.02%)</title><rect x="5.2824%" y="805" width="0.0168%" height="15" fill="rgb(212,95,11)" fg:x="19136" fg:w="61"/><text x="5.5324%" y="815.50"></text></g><g><title>OopFlow::build_oop_map (109 samples, 0.03%)</title><rect x="5.4466%" y="741" width="0.0301%" height="15" fill="rgb(240,179,47)" fg:x="19731" fg:w="109"/><text x="5.6966%" y="751.50"></text></g><g><title>OopFlow::compute_reach (194 samples, 0.05%)</title><rect x="5.4237%" y="757" width="0.0536%" height="15" fill="rgb(240,163,11)" fg:x="19648" fg:w="194"/><text x="5.6737%" y="767.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (64 samples, 0.02%)</title><rect x="5.4784%" y="757" width="0.0177%" height="15" fill="rgb(236,37,12)" fg:x="19846" fg:w="64"/><text x="5.7284%" y="767.50"></text></g><g><title>Compile::BuildOopMaps (705 samples, 0.19%)</title><rect x="5.3025%" y="773" width="0.1946%" height="15" fill="rgb(232,164,16)" fg:x="19209" fg:w="705"/><text x="5.5525%" y="783.50"></text></g><g><title>Compile::scratch_emit_size (159 samples, 0.04%)</title><rect x="5.5515%" y="741" width="0.0439%" height="15" fill="rgb(244,205,15)" fg:x="20111" fg:w="159"/><text x="5.8015%" y="751.50"></text></g><g><title>Compile::init_buffer (382 samples, 0.11%)</title><rect x="5.4971%" y="773" width="0.1054%" height="15" fill="rgb(223,117,47)" fg:x="19914" fg:w="382"/><text x="5.7471%" y="783.50"></text></g><g><title>Compile::shorten_branches (328 samples, 0.09%)</title><rect x="5.5120%" y="757" width="0.0905%" height="15" fill="rgb(244,107,35)" fg:x="19968" fg:w="328"/><text x="5.7620%" y="767.50"></text></g><g><title>Compile::Output (1,096 samples, 0.30%)</title><rect x="5.3009%" y="789" width="0.3025%" height="15" fill="rgb(205,140,8)" fg:x="19203" fg:w="1096"/><text x="5.5509%" y="799.50"></text></g><g><title>Compile::FillLocArray (43 samples, 0.01%)</title><rect x="5.6484%" y="757" width="0.0119%" height="15" fill="rgb(228,84,46)" fg:x="20462" fg:w="43"/><text x="5.8984%" y="767.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (42 samples, 0.01%)</title><rect x="5.6617%" y="757" width="0.0116%" height="15" fill="rgb(254,188,9)" fg:x="20510" fg:w="42"/><text x="5.9117%" y="767.50"></text></g><g><title>DebugInformationRecorder::describe_scope (44 samples, 0.01%)</title><rect x="5.6733%" y="757" width="0.0121%" height="15" fill="rgb(206,112,54)" fg:x="20552" fg:w="44"/><text x="5.9233%" y="767.50"></text></g><g><title>Compile::Process_OopMap_Node (202 samples, 0.06%)</title><rect x="5.6407%" y="773" width="0.0558%" height="15" fill="rgb(216,84,49)" fg:x="20434" fg:w="202"/><text x="5.8907%" y="783.50"></text></g><g><title>Compile::valid_bundle_info (51 samples, 0.01%)</title><rect x="5.6981%" y="773" width="0.0141%" height="15" fill="rgb(214,194,35)" fg:x="20642" fg:w="51"/><text x="5.9481%" y="783.50"></text></g><g><title>Compile::fill_buffer (495 samples, 0.14%)</title><rect x="5.6034%" y="789" width="0.1366%" height="15" fill="rgb(249,28,3)" fg:x="20299" fg:w="495"/><text x="5.8534%" y="799.50"></text></g><g><title>Matcher::init_first_stack_mask (38 samples, 0.01%)</title><rect x="5.7558%" y="757" width="0.0105%" height="15" fill="rgb(222,56,52)" fg:x="20851" fg:w="38"/><text x="6.0058%" y="767.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (52 samples, 0.01%)</title><rect x="5.7528%" y="773" width="0.0144%" height="15" fill="rgb(245,217,50)" fg:x="20840" fg:w="52"/><text x="6.0028%" y="783.50"></text></g><g><title>Matcher::find_shared (337 samples, 0.09%)</title><rect x="5.7671%" y="773" width="0.0930%" height="15" fill="rgb(213,201,24)" fg:x="20892" fg:w="337"/><text x="6.0171%" y="783.50"></text></g><g><title>Arena::contains (498 samples, 0.14%)</title><rect x="5.9570%" y="757" width="0.1375%" height="15" fill="rgb(248,116,28)" fg:x="21580" fg:w="498"/><text x="6.2070%" y="767.50"></text></g><g><title>Matcher::match_tree (114 samples, 0.03%)</title><rect x="6.1147%" y="741" width="0.0315%" height="15" fill="rgb(219,72,43)" fg:x="22151" fg:w="114"/><text x="6.3647%" y="751.50"></text></g><g><title>Matcher::match_sfpt (154 samples, 0.04%)</title><rect x="6.1072%" y="757" width="0.0425%" height="15" fill="rgb(209,138,14)" fg:x="22124" fg:w="154"/><text x="6.3572%" y="767.50"></text></g><g><title>Matcher::Label_Root (41 samples, 0.01%)</title><rect x="6.2554%" y="693" width="0.0113%" height="15" fill="rgb(222,18,33)" fg:x="22661" fg:w="41"/><text x="6.5054%" y="703.50"></text></g><g><title>State::DFA (50 samples, 0.01%)</title><rect x="6.2668%" y="693" width="0.0138%" height="15" fill="rgb(213,199,7)" fg:x="22702" fg:w="50"/><text x="6.5168%" y="703.50"></text></g><g><title>Matcher::Label_Root (118 samples, 0.03%)</title><rect x="6.2513%" y="709" width="0.0326%" height="15" fill="rgb(250,110,10)" fg:x="22646" fg:w="118"/><text x="6.5013%" y="719.50"></text></g><g><title>State::DFA (53 samples, 0.01%)</title><rect x="6.2847%" y="709" width="0.0146%" height="15" fill="rgb(248,123,6)" fg:x="22767" fg:w="53"/><text x="6.5347%" y="719.50"></text></g><g><title>Matcher::Label_Root (263 samples, 0.07%)</title><rect x="6.2287%" y="725" width="0.0726%" height="15" fill="rgb(206,91,31)" fg:x="22564" fg:w="263"/><text x="6.4787%" y="735.50"></text></g><g><title>State::DFA (39 samples, 0.01%)</title><rect x="6.3026%" y="725" width="0.0108%" height="15" fill="rgb(211,154,13)" fg:x="22832" fg:w="39"/><text x="6.5526%" y="735.50"></text></g><g><title>Matcher::Label_Root (408 samples, 0.11%)</title><rect x="6.2107%" y="741" width="0.1126%" height="15" fill="rgb(225,148,7)" fg:x="22499" fg:w="408"/><text x="6.4607%" y="751.50"></text></g><g><title>Matcher::ReduceInst_Interior (53 samples, 0.01%)</title><rect x="6.3424%" y="693" width="0.0146%" height="15" fill="rgb(220,160,43)" fg:x="22976" fg:w="53"/><text x="6.5924%" y="703.50"></text></g><g><title>Matcher::ReduceInst (103 samples, 0.03%)</title><rect x="6.3388%" y="709" width="0.0284%" height="15" fill="rgb(213,52,39)" fg:x="22963" fg:w="103"/><text x="6.5888%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (189 samples, 0.05%)</title><rect x="6.3336%" y="725" width="0.0522%" height="15" fill="rgb(243,137,7)" fg:x="22944" fg:w="189"/><text x="6.5836%" y="735.50"></text></g><g><title>State::MachNodeGenerator (55 samples, 0.02%)</title><rect x="6.3946%" y="725" width="0.0152%" height="15" fill="rgb(230,79,13)" fg:x="23165" fg:w="55"/><text x="6.6446%" y="735.50"></text></g><g><title>Matcher::ReduceInst (339 samples, 0.09%)</title><rect x="6.3233%" y="741" width="0.0936%" height="15" fill="rgb(247,105,23)" fg:x="22907" fg:w="339"/><text x="6.5733%" y="751.50"></text></g><g><title>Matcher::match_tree (980 samples, 0.27%)</title><rect x="6.1497%" y="757" width="0.2705%" height="15" fill="rgb(223,179,41)" fg:x="22278" fg:w="980"/><text x="6.3997%" y="767.50"></text></g><g><title>Node::clone (77 samples, 0.02%)</title><rect x="6.4222%" y="757" width="0.0213%" height="15" fill="rgb(218,9,34)" fg:x="23265" fg:w="77"/><text x="6.6722%" y="767.50"></text></g><g><title>Node::out_grow (44 samples, 0.01%)</title><rect x="6.4440%" y="757" width="0.0121%" height="15" fill="rgb(222,106,8)" fg:x="23344" fg:w="44"/><text x="6.6940%" y="767.50"></text></g><g><title>Matcher::xform (2,153 samples, 0.59%)</title><rect x="5.8637%" y="773" width="0.5943%" height="15" fill="rgb(211,220,0)" fg:x="21242" fg:w="2153"/><text x="6.1137%" y="783.50"></text></g><g><title>Matcher::match (2,598 samples, 0.72%)</title><rect x="5.7434%" y="789" width="0.7172%" height="15" fill="rgb(229,52,16)" fg:x="20806" fg:w="2598"/><text x="5.9934%" y="799.50"></text></g><g><title>PhaseBlockLayout::find_edges (79 samples, 0.02%)</title><rect x="6.4627%" y="773" width="0.0218%" height="15" fill="rgb(212,155,18)" fg:x="23412" fg:w="79"/><text x="6.7127%" y="783.50"></text></g><g><title>PhaseBlockLayout::grow_traces (53 samples, 0.01%)</title><rect x="6.4846%" y="773" width="0.0146%" height="15" fill="rgb(242,21,14)" fg:x="23491" fg:w="53"/><text x="6.7346%" y="783.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (174 samples, 0.05%)</title><rect x="6.4608%" y="789" width="0.0480%" height="15" fill="rgb(222,19,48)" fg:x="23405" fg:w="174"/><text x="6.7108%" y="799.50"></text></g><g><title>PhaseCFG::PhaseCFG (143 samples, 0.04%)</title><rect x="6.5088%" y="789" width="0.0395%" height="15" fill="rgb(232,45,27)" fg:x="23579" fg:w="143"/><text x="6.7588%" y="799.50"></text></g><g><title>PhaseCFG::build_cfg (134 samples, 0.04%)</title><rect x="6.5113%" y="773" width="0.0370%" height="15" fill="rgb(249,103,42)" fg:x="23588" fg:w="134"/><text x="6.7613%" y="783.50"></text></g><g><title>PhaseCFG::build_dominator_tree (84 samples, 0.02%)</title><rect x="6.5489%" y="773" width="0.0232%" height="15" fill="rgb(246,81,33)" fg:x="23724" fg:w="84"/><text x="6.7989%" y="783.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (53 samples, 0.01%)</title><rect x="6.5721%" y="773" width="0.0146%" height="15" fill="rgb(252,33,42)" fg:x="23808" fg:w="53"/><text x="6.8221%" y="783.50"></text></g><g><title>PhaseCFG::implicit_null_check (59 samples, 0.02%)</title><rect x="6.6819%" y="757" width="0.0163%" height="15" fill="rgb(209,212,41)" fg:x="24206" fg:w="59"/><text x="6.9319%" y="767.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (41 samples, 0.01%)</title><rect x="6.6999%" y="757" width="0.0113%" height="15" fill="rgb(207,154,6)" fg:x="24271" fg:w="41"/><text x="6.9499%" y="767.50"></text></g><g><title>Node_Backward_Iterator::next (212 samples, 0.06%)</title><rect x="6.7427%" y="741" width="0.0585%" height="15" fill="rgb(223,64,47)" fg:x="24426" fg:w="212"/><text x="6.9927%" y="751.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (104 samples, 0.03%)</title><rect x="6.8012%" y="741" width="0.0287%" height="15" fill="rgb(211,161,38)" fg:x="24638" fg:w="104"/><text x="7.0512%" y="751.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (139 samples, 0.04%)</title><rect x="6.8299%" y="741" width="0.0384%" height="15" fill="rgb(219,138,40)" fg:x="24742" fg:w="139"/><text x="7.0799%" y="751.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (61 samples, 0.02%)</title><rect x="6.8683%" y="741" width="0.0168%" height="15" fill="rgb(241,228,46)" fg:x="24881" fg:w="61"/><text x="7.1183%" y="751.50"></text></g><g><title>PhaseCFG::schedule_late (633 samples, 0.17%)</title><rect x="6.7112%" y="757" width="0.1747%" height="15" fill="rgb(223,209,38)" fg:x="24312" fg:w="633"/><text x="6.9612%" y="767.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (64 samples, 0.02%)</title><rect x="6.9544%" y="741" width="0.0177%" height="15" fill="rgb(236,164,45)" fg:x="25193" fg:w="64"/><text x="7.2044%" y="751.50"></text></g><g><title>PhaseCFG::select (98 samples, 0.03%)</title><rect x="6.9767%" y="741" width="0.0271%" height="15" fill="rgb(231,15,5)" fg:x="25274" fg:w="98"/><text x="7.2267%" y="751.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (55 samples, 0.02%)</title><rect x="7.0038%" y="741" width="0.0152%" height="15" fill="rgb(252,35,15)" fg:x="25372" fg:w="55"/><text x="7.2538%" y="751.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (55 samples, 0.02%)</title><rect x="7.0190%" y="741" width="0.0152%" height="15" fill="rgb(248,181,18)" fg:x="25427" fg:w="55"/><text x="7.2690%" y="751.50"></text></g><g><title>PhaseCFG::schedule_local (547 samples, 0.15%)</title><rect x="6.8859%" y="757" width="0.1510%" height="15" fill="rgb(233,39,42)" fg:x="24945" fg:w="547"/><text x="7.1359%" y="767.50"></text></g><g><title>RegMask::Size (96 samples, 0.03%)</title><rect x="7.1186%" y="741" width="0.0265%" height="15" fill="rgb(238,110,33)" fg:x="25788" fg:w="96"/><text x="7.3686%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (420 samples, 0.12%)</title><rect x="7.0493%" y="757" width="0.1159%" height="15" fill="rgb(233,195,10)" fg:x="25537" fg:w="420"/><text x="7.2993%" y="767.50"></text></g><g><title>PhaseChaitin::mark_ssa (84 samples, 0.02%)</title><rect x="7.1653%" y="757" width="0.0232%" height="15" fill="rgb(254,105,3)" fg:x="25957" fg:w="84"/><text x="7.4153%" y="767.50"></text></g><g><title>IndexSet::initialize (101 samples, 0.03%)</title><rect x="7.2012%" y="741" width="0.0279%" height="15" fill="rgb(221,225,9)" fg:x="26087" fg:w="101"/><text x="7.4512%" y="751.50"></text></g><g><title>PhaseIFG::init (184 samples, 0.05%)</title><rect x="7.1885%" y="757" width="0.0508%" height="15" fill="rgb(224,227,45)" fg:x="26041" fg:w="184"/><text x="7.4385%" y="767.50"></text></g><g><title>[libc-2.31.so] (37 samples, 0.01%)</title><rect x="7.2290%" y="741" width="0.0102%" height="15" fill="rgb(229,198,43)" fg:x="26188" fg:w="37"/><text x="7.4790%" y="751.50"></text></g><g><title>IndexSet::initialize (54 samples, 0.01%)</title><rect x="7.2978%" y="741" width="0.0149%" height="15" fill="rgb(206,209,35)" fg:x="26437" fg:w="54"/><text x="7.5478%" y="751.50"></text></g><g><title>PhaseLive::add_livein (181 samples, 0.05%)</title><rect x="7.3132%" y="741" width="0.0500%" height="15" fill="rgb(245,195,53)" fg:x="26493" fg:w="181"/><text x="7.5632%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (65 samples, 0.02%)</title><rect x="7.3453%" y="725" width="0.0179%" height="15" fill="rgb(240,92,26)" fg:x="26609" fg:w="65"/><text x="7.5953%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (64 samples, 0.02%)</title><rect x="7.4107%" y="725" width="0.0177%" height="15" fill="rgb(207,40,23)" fg:x="26846" fg:w="64"/><text x="7.6607%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (106 samples, 0.03%)</title><rect x="7.4336%" y="725" width="0.0293%" height="15" fill="rgb(223,111,35)" fg:x="26929" fg:w="106"/><text x="7.6836%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (366 samples, 0.10%)</title><rect x="7.3632%" y="741" width="0.1010%" height="15" fill="rgb(229,147,28)" fg:x="26674" fg:w="366"/><text x="7.6132%" y="751.50"></text></g><g><title>PhaseLive::compute (818 samples, 0.23%)</title><rect x="7.2393%" y="757" width="0.2258%" height="15" fill="rgb(211,29,28)" fg:x="26225" fg:w="818"/><text x="7.4893%" y="767.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,344 samples, 0.92%)</title><rect x="6.5483%" y="789" width="0.9231%" height="15" fill="rgb(228,72,33)" fg:x="23722" fg:w="3344"/><text x="6.7983%" y="799.50"></text></g><g><title>PhaseCFG::global_code_motion (3,205 samples, 0.88%)</title><rect x="6.5867%" y="773" width="0.8847%" height="15" fill="rgb(205,214,31)" fg:x="23861" fg:w="3205"/><text x="6.8367%" y="783.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (63 samples, 0.02%)</title><rect x="7.4778%" y="789" width="0.0174%" height="15" fill="rgb(224,111,15)" fg:x="27089" fg:w="63"/><text x="7.7278%" y="799.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (993 samples, 0.27%)</title><rect x="7.5313%" y="773" width="0.2741%" height="15" fill="rgb(253,21,26)" fg:x="27283" fg:w="993"/><text x="7.7813%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (298 samples, 0.08%)</title><rect x="7.9542%" y="757" width="0.0823%" height="15" fill="rgb(245,139,43)" fg:x="28815" fg:w="298"/><text x="8.2042%" y="767.50"></text></g><g><title>RegMask::find_first_set (39 samples, 0.01%)</title><rect x="8.0682%" y="741" width="0.0108%" height="15" fill="rgb(252,170,7)" fg:x="29228" fg:w="39"/><text x="8.3182%" y="751.50"></text></g><g><title>PhaseChaitin::bias_color (173 samples, 0.05%)</title><rect x="8.0365%" y="757" width="0.0478%" height="15" fill="rgb(231,118,14)" fg:x="29113" fg:w="173"/><text x="8.2865%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (52 samples, 0.01%)</title><rect x="8.1698%" y="741" width="0.0144%" height="15" fill="rgb(238,83,0)" fg:x="29596" fg:w="52"/><text x="8.4198%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (63 samples, 0.02%)</title><rect x="8.1842%" y="741" width="0.0174%" height="15" fill="rgb(221,39,39)" fg:x="29648" fg:w="63"/><text x="8.4342%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (334 samples, 0.09%)</title><rect x="8.2015%" y="741" width="0.0922%" height="15" fill="rgb(222,119,46)" fg:x="29711" fg:w="334"/><text x="8.4515%" y="751.50"></text></g><g><title>PhaseIFG::re_insert (763 samples, 0.21%)</title><rect x="8.0867%" y="757" width="0.2106%" height="15" fill="rgb(222,165,49)" fg:x="29295" fg:w="763"/><text x="8.3367%" y="767.50"></text></g><g><title>RegMask::clear_to_sets (162 samples, 0.04%)</title><rect x="8.2973%" y="757" width="0.0447%" height="15" fill="rgb(219,113,52)" fg:x="30058" fg:w="162"/><text x="8.5473%" y="767.50"></text></g><g><title>PhaseChaitin::Select (1,958 samples, 0.54%)</title><rect x="7.8054%" y="773" width="0.5405%" height="15" fill="rgb(214,7,15)" fg:x="28276" fg:w="1958"/><text x="8.0554%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (328 samples, 0.09%)</title><rect x="8.4202%" y="757" width="0.0905%" height="15" fill="rgb(235,32,4)" fg:x="30503" fg:w="328"/><text x="8.6702%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (63 samples, 0.02%)</title><rect x="8.6173%" y="741" width="0.0174%" height="15" fill="rgb(238,90,54)" fg:x="31217" fg:w="63"/><text x="8.8673%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (393 samples, 0.11%)</title><rect x="8.6347%" y="741" width="0.1085%" height="15" fill="rgb(213,208,19)" fg:x="31280" fg:w="393"/><text x="8.8847%" y="751.50"></text></g><g><title>PhaseChaitin::Simplify (1,441 samples, 0.40%)</title><rect x="8.3459%" y="773" width="0.3978%" height="15" fill="rgb(233,156,4)" fg:x="30234" fg:w="1441"/><text x="8.5959%" y="783.50"></text></g><g><title>PhaseIFG::remove_node (844 samples, 0.23%)</title><rect x="8.5107%" y="757" width="0.2330%" height="15" fill="rgb(207,194,5)" fg:x="30831" fg:w="844"/><text x="8.7607%" y="767.50"></text></g><g><title>CProjNode::is_block_proj (42 samples, 0.01%)</title><rect x="9.3946%" y="757" width="0.0116%" height="15" fill="rgb(206,111,30)" fg:x="34033" fg:w="42"/><text x="9.6446%" y="767.50"></text></g><g><title>MachNode::rematerialize (161 samples, 0.04%)</title><rect x="9.4170%" y="757" width="0.0444%" height="15" fill="rgb(243,70,54)" fg:x="34114" fg:w="161"/><text x="9.6670%" y="767.50"></text></g><g><title>Node::rematerialize (116 samples, 0.03%)</title><rect x="9.4700%" y="757" width="0.0320%" height="15" fill="rgb(242,28,8)" fg:x="34306" fg:w="116"/><text x="9.7200%" y="767.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (62 samples, 0.02%)</title><rect x="9.5475%" y="741" width="0.0171%" height="15" fill="rgb(219,106,18)" fg:x="34587" fg:w="62"/><text x="9.7975%" y="751.50"></text></g><g><title>PhaseChaitin::split_USE (141 samples, 0.04%)</title><rect x="9.5324%" y="757" width="0.0389%" height="15" fill="rgb(244,222,10)" fg:x="34532" fg:w="141"/><text x="9.7824%" y="767.50"></text></g><g><title>PhaseChaitin::Split (3,061 samples, 0.84%)</title><rect x="8.7437%" y="773" width="0.8450%" height="15" fill="rgb(236,179,52)" fg:x="31675" fg:w="3061"/><text x="8.9937%" y="783.50"></text></g><g><title>IndexSet::IndexSet (237 samples, 0.07%)</title><rect x="9.8164%" y="757" width="0.0654%" height="15" fill="rgb(213,23,39)" fg:x="35561" fg:w="237"/><text x="10.0664%" y="767.50"></text></g><g><title>MachNode::rematerialize (63 samples, 0.02%)</title><rect x="9.8849%" y="757" width="0.0174%" height="15" fill="rgb(238,48,10)" fg:x="35809" fg:w="63"/><text x="10.1349%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (39 samples, 0.01%)</title><rect x="10.0265%" y="741" width="0.0108%" height="15" fill="rgb(251,196,23)" fg:x="36322" fg:w="39"/><text x="10.2765%" y="751.50"></text></g><g><title>MachNode::rematerialize (92 samples, 0.03%)</title><rect x="10.0461%" y="741" width="0.0254%" height="15" fill="rgb(250,152,24)" fg:x="36393" fg:w="92"/><text x="10.2961%" y="751.50"></text></g><g><title>PhaseChaitin::raise_pressure (152 samples, 0.04%)</title><rect x="10.0745%" y="741" width="0.0420%" height="15" fill="rgb(209,150,17)" fg:x="36496" fg:w="152"/><text x="10.3245%" y="751.50"></text></g><g><title>RegMask::is_UP (74 samples, 0.02%)</title><rect x="10.0960%" y="725" width="0.0204%" height="15" fill="rgb(234,202,34)" fg:x="36574" fg:w="74"/><text x="10.3460%" y="735.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (758 samples, 0.21%)</title><rect x="9.9086%" y="757" width="0.2092%" height="15" fill="rgb(253,148,53)" fg:x="35895" fg:w="758"/><text x="10.1586%" y="767.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (45 samples, 0.01%)</title><rect x="10.1264%" y="757" width="0.0124%" height="15" fill="rgb(218,129,16)" fg:x="36684" fg:w="45"/><text x="10.3764%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (155 samples, 0.04%)</title><rect x="10.2092%" y="741" width="0.0428%" height="15" fill="rgb(216,85,19)" fg:x="36984" fg:w="155"/><text x="10.4592%" y="751.50"></text></g><g><title>RegMask::is_UP (88 samples, 0.02%)</title><rect x="10.2520%" y="741" width="0.0243%" height="15" fill="rgb(235,228,7)" fg:x="37139" fg:w="88"/><text x="10.5020%" y="751.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (501 samples, 0.14%)</title><rect x="10.1388%" y="757" width="0.1383%" height="15" fill="rgb(245,175,0)" fg:x="36729" fg:w="501"/><text x="10.3888%" y="767.50"></text></g><g><title>__tls_get_addr (37 samples, 0.01%)</title><rect x="10.7925%" y="725" width="0.0102%" height="15" fill="rgb(208,168,36)" fg:x="39097" fg:w="37"/><text x="11.0425%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (123 samples, 0.03%)</title><rect x="10.7696%" y="741" width="0.0340%" height="15" fill="rgb(246,171,24)" fg:x="39014" fg:w="123"/><text x="11.0196%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (866 samples, 0.24%)</title><rect x="10.8041%" y="741" width="0.2391%" height="15" fill="rgb(215,142,24)" fg:x="39139" fg:w="866"/><text x="11.0541%" y="751.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,780 samples, 0.77%)</title><rect x="10.2771%" y="757" width="0.7674%" height="15" fill="rgb(250,187,7)" fg:x="37230" fg:w="2780"/><text x="10.5271%" y="767.50"></text></g><g><title>PhaseChaitin::lower_pressure (103 samples, 0.03%)</title><rect x="11.0445%" y="757" width="0.0284%" height="15" fill="rgb(228,66,33)" fg:x="40010" fg:w="103"/><text x="11.2945%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (222 samples, 0.06%)</title><rect x="11.2176%" y="741" width="0.0613%" height="15" fill="rgb(234,215,21)" fg:x="40637" fg:w="222"/><text x="11.4676%" y="751.50"></text></g><g><title>RegMask::Size (300 samples, 0.08%)</title><rect x="11.2789%" y="741" width="0.0828%" height="15" fill="rgb(222,191,20)" fg:x="40859" fg:w="300"/><text x="11.5289%" y="751.50"></text></g><g><title>RegMask::smear_to_sets (674 samples, 0.19%)</title><rect x="11.3617%" y="741" width="0.1861%" height="15" fill="rgb(245,79,54)" fg:x="41159" fg:w="674"/><text x="11.6117%" y="751.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,728 samples, 0.48%)</title><rect x="11.0730%" y="757" width="0.4770%" height="15" fill="rgb(240,10,37)" fg:x="40113" fg:w="1728"/><text x="11.3230%" y="767.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,187 samples, 1.98%)</title><rect x="9.5892%" y="773" width="1.9839%" height="15" fill="rgb(214,192,32)" fg:x="34738" fg:w="7187"/><text x="9.8392%" y="783.50">P..</text></g><g><title>IndexSetIterator::advance_and_next (62 samples, 0.02%)</title><rect x="11.6825%" y="741" width="0.0171%" height="15" fill="rgb(209,36,54)" fg:x="42321" fg:w="62"/><text x="11.9325%" y="751.50"></text></g><g><title>PhaseChaitin::interfere_with_live (322 samples, 0.09%)</title><rect x="11.6110%" y="757" width="0.0889%" height="15" fill="rgb(220,10,11)" fg:x="42062" fg:w="322"/><text x="11.8610%" y="767.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (462 samples, 0.13%)</title><rect x="11.5731%" y="773" width="0.1275%" height="15" fill="rgb(221,106,17)" fg:x="41925" fg:w="462"/><text x="11.8231%" y="783.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (121 samples, 0.03%)</title><rect x="11.7007%" y="773" width="0.0334%" height="15" fill="rgb(251,142,44)" fg:x="42387" fg:w="121"/><text x="11.9507%" y="783.50"></text></g><g><title>PhaseChaitin::de_ssa (80 samples, 0.02%)</title><rect x="11.7435%" y="773" width="0.0221%" height="15" fill="rgb(238,13,15)" fg:x="42542" fg:w="80"/><text x="11.9935%" y="783.50"></text></g><g><title>PhaseChaitin::fixup_spills (62 samples, 0.02%)</title><rect x="11.7658%" y="773" width="0.0171%" height="15" fill="rgb(208,107,27)" fg:x="42623" fg:w="62"/><text x="12.0158%" y="783.50"></text></g><g><title>MachCallJavaNode::in_RegMask (67 samples, 0.02%)</title><rect x="12.2398%" y="757" width="0.0185%" height="15" fill="rgb(205,136,37)" fg:x="44340" fg:w="67"/><text x="12.4898%" y="767.50"></text></g><g><title>MachNode::ideal_reg (69 samples, 0.02%)</title><rect x="12.2594%" y="757" width="0.0190%" height="15" fill="rgb(250,205,27)" fg:x="44411" fg:w="69"/><text x="12.5094%" y="767.50"></text></g><g><title>MachNode::in_RegMask (77 samples, 0.02%)</title><rect x="12.2784%" y="757" width="0.0213%" height="15" fill="rgb(210,80,43)" fg:x="44480" fg:w="77"/><text x="12.5284%" y="767.50"></text></g><g><title>PhiNode::in_RegMask (39 samples, 0.01%)</title><rect x="12.3152%" y="757" width="0.0108%" height="15" fill="rgb(247,160,36)" fg:x="44613" fg:w="39"/><text x="12.5652%" y="767.50"></text></g><g><title>RegMask::Size (1,160 samples, 0.32%)</title><rect x="12.3309%" y="757" width="0.3202%" height="15" fill="rgb(234,13,49)" fg:x="44670" fg:w="1160"/><text x="12.5809%" y="767.50"></text></g><g><title>RegMask::clear_to_sets (187 samples, 0.05%)</title><rect x="12.6511%" y="757" width="0.0516%" height="15" fill="rgb(234,122,0)" fg:x="45830" fg:w="187"/><text x="12.9011%" y="767.50"></text></g><g><title>RegMask::is_aligned_pairs (92 samples, 0.03%)</title><rect x="12.7027%" y="757" width="0.0254%" height="15" fill="rgb(207,146,38)" fg:x="46017" fg:w="92"/><text x="12.9527%" y="767.50"></text></g><g><title>RegMask::is_bound1 (130 samples, 0.04%)</title><rect x="12.7281%" y="757" width="0.0359%" height="15" fill="rgb(207,177,25)" fg:x="46109" fg:w="130"/><text x="12.9781%" y="767.50"></text></g><g><title>RegMask::is_bound_pair (91 samples, 0.03%)</title><rect x="12.7640%" y="757" width="0.0251%" height="15" fill="rgb(211,178,42)" fg:x="46239" fg:w="91"/><text x="13.0140%" y="767.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,792 samples, 1.05%)</title><rect x="11.7829%" y="773" width="1.0468%" height="15" fill="rgb(230,69,54)" fg:x="42685" fg:w="3792"/><text x="12.0329%" y="783.50"></text></g><g><title>PhaseChaitin::merge_multidefs (464 samples, 0.13%)</title><rect x="12.8297%" y="773" width="0.1281%" height="15" fill="rgb(214,135,41)" fg:x="46477" fg:w="464"/><text x="13.0797%" y="783.50"></text></g><g><title>PhaseChaitin::use_prior_register (90 samples, 0.02%)</title><rect x="13.9088%" y="741" width="0.0248%" height="15" fill="rgb(237,67,25)" fg:x="50386" fg:w="90"/><text x="14.1588%" y="751.50"></text></g><g><title>PhaseChaitin::elide_copy (1,900 samples, 0.52%)</title><rect x="13.4221%" y="757" width="0.5245%" height="15" fill="rgb(222,189,50)" fg:x="48623" fg:w="1900"/><text x="13.6721%" y="767.50"></text></g><g><title>[libc-2.31.so] (67 samples, 0.02%)</title><rect x="13.9576%" y="757" width="0.0185%" height="15" fill="rgb(245,148,34)" fg:x="50563" fg:w="67"/><text x="14.2076%" y="767.50"></text></g><g><title>find_lowest_bit (303 samples, 0.08%)</title><rect x="13.9794%" y="757" width="0.0836%" height="15" fill="rgb(222,29,6)" fg:x="50642" fg:w="303"/><text x="14.2294%" y="767.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,007 samples, 1.11%)</title><rect x="12.9578%" y="773" width="1.1061%" height="15" fill="rgb(221,189,43)" fg:x="46941" fg:w="4007"/><text x="13.2078%" y="783.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (191 samples, 0.05%)</title><rect x="14.0639%" y="773" width="0.0527%" height="15" fill="rgb(207,36,27)" fg:x="50948" fg:w="191"/><text x="14.3139%" y="783.50"></text></g><g><title>PhaseCoalesce::combine_these_two (72 samples, 0.02%)</title><rect x="14.1393%" y="741" width="0.0199%" height="15" fill="rgb(217,90,24)" fg:x="51221" fg:w="72"/><text x="14.3893%" y="751.50"></text></g><g><title>PhaseIFG::Union (53 samples, 0.01%)</title><rect x="14.1445%" y="725" width="0.0146%" height="15" fill="rgb(224,66,35)" fg:x="51240" fg:w="53"/><text x="14.3945%" y="735.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (149 samples, 0.04%)</title><rect x="14.1183%" y="757" width="0.0411%" height="15" fill="rgb(221,13,50)" fg:x="51145" fg:w="149"/><text x="14.3683%" y="767.50"></text></g><g><title>PhaseCFG::is_uncommon (117 samples, 0.03%)</title><rect x="14.1707%" y="741" width="0.0323%" height="15" fill="rgb(236,68,49)" fg:x="51335" fg:w="117"/><text x="14.4207%" y="751.50"></text></g><g><title>IndexSet::lrg_union (260 samples, 0.07%)</title><rect x="14.2152%" y="725" width="0.0718%" height="15" fill="rgb(229,146,28)" fg:x="51496" fg:w="260"/><text x="14.4652%" y="735.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (265 samples, 0.07%)</title><rect x="14.2905%" y="725" width="0.0732%" height="15" fill="rgb(225,31,38)" fg:x="51769" fg:w="265"/><text x="14.5405%" y="735.50"></text></g><g><title>PhaseIFG::effective_degree (71 samples, 0.02%)</title><rect x="14.3637%" y="725" width="0.0196%" height="15" fill="rgb(250,208,3)" fg:x="52034" fg:w="71"/><text x="14.6137%" y="735.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (680 samples, 0.19%)</title><rect x="14.2030%" y="741" width="0.1877%" height="15" fill="rgb(246,54,23)" fg:x="51452" fg:w="680"/><text x="14.4530%" y="751.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (994 samples, 0.27%)</title><rect x="14.1166%" y="773" width="0.2744%" height="15" fill="rgb(243,76,11)" fg:x="51139" fg:w="994"/><text x="14.3666%" y="783.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (839 samples, 0.23%)</title><rect x="14.1594%" y="757" width="0.2316%" height="15" fill="rgb(245,21,50)" fg:x="51294" fg:w="839"/><text x="14.4094%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (42 samples, 0.01%)</title><rect x="14.4942%" y="757" width="0.0116%" height="15" fill="rgb(228,9,43)" fg:x="52507" fg:w="42"/><text x="14.7442%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (445 samples, 0.12%)</title><rect x="14.5058%" y="757" width="0.1228%" height="15" fill="rgb(208,100,47)" fg:x="52549" fg:w="445"/><text x="14.7558%" y="767.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (862 samples, 0.24%)</title><rect x="14.3910%" y="773" width="0.2379%" height="15" fill="rgb(232,26,8)" fg:x="52133" fg:w="862"/><text x="14.6410%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (65 samples, 0.02%)</title><rect x="14.7170%" y="757" width="0.0179%" height="15" fill="rgb(216,166,38)" fg:x="53314" fg:w="65"/><text x="14.9670%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (76 samples, 0.02%)</title><rect x="14.7350%" y="757" width="0.0210%" height="15" fill="rgb(251,202,51)" fg:x="53379" fg:w="76"/><text x="14.9850%" y="767.50"></text></g><g><title>PhaseIFG::SquareUp (842 samples, 0.23%)</title><rect x="14.6290%" y="773" width="0.2324%" height="15" fill="rgb(254,216,34)" fg:x="52995" fg:w="842"/><text x="14.8790%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (382 samples, 0.11%)</title><rect x="14.7559%" y="757" width="0.1054%" height="15" fill="rgb(251,32,27)" fg:x="53455" fg:w="382"/><text x="15.0059%" y="767.50"></text></g><g><title>IndexSet::initialize (191 samples, 0.05%)</title><rect x="14.8929%" y="757" width="0.0527%" height="15" fill="rgb(208,127,28)" fg:x="53951" fg:w="191"/><text x="15.1429%" y="767.50"></text></g><g><title>[libc-2.31.so] (54 samples, 0.01%)</title><rect x="14.9456%" y="757" width="0.0149%" height="15" fill="rgb(224,137,22)" fg:x="54142" fg:w="54"/><text x="15.1956%" y="767.50"></text></g><g><title>PhaseIFG::init (360 samples, 0.10%)</title><rect x="14.8614%" y="773" width="0.0994%" height="15" fill="rgb(254,70,32)" fg:x="53837" fg:w="360"/><text x="15.1114%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (63 samples, 0.02%)</title><rect x="15.2630%" y="757" width="0.0174%" height="15" fill="rgb(229,75,37)" fg:x="55292" fg:w="63"/><text x="15.5130%" y="767.50"></text></g><g><title>IndexSet::free_block (42 samples, 0.01%)</title><rect x="15.2804%" y="757" width="0.0116%" height="15" fill="rgb(252,64,23)" fg:x="55355" fg:w="42"/><text x="15.5304%" y="767.50"></text></g><g><title>IndexSet::initialize (104 samples, 0.03%)</title><rect x="15.2920%" y="757" width="0.0287%" height="15" fill="rgb(232,162,48)" fg:x="55397" fg:w="104"/><text x="15.5420%" y="767.50"></text></g><g><title>__tls_get_addr (76 samples, 0.02%)</title><rect x="15.5462%" y="725" width="0.0210%" height="15" fill="rgb(246,160,12)" fg:x="56318" fg:w="76"/><text x="15.7962%" y="735.50"></text></g><g><title>update_get_addr (43 samples, 0.01%)</title><rect x="15.5554%" y="709" width="0.0119%" height="15" fill="rgb(247,166,0)" fg:x="56351" fg:w="43"/><text x="15.8054%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (226 samples, 0.06%)</title><rect x="15.5057%" y="741" width="0.0624%" height="15" fill="rgb(249,219,21)" fg:x="56171" fg:w="226"/><text x="15.7557%" y="751.50"></text></g><g><title>IndexSet::initialize (44 samples, 0.01%)</title><rect x="15.5681%" y="741" width="0.0121%" height="15" fill="rgb(205,209,3)" fg:x="56397" fg:w="44"/><text x="15.8181%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (313 samples, 0.09%)</title><rect x="15.5821%" y="741" width="0.0864%" height="15" fill="rgb(243,44,1)" fg:x="56448" fg:w="313"/><text x="15.8321%" y="751.50"></text></g><g><title>PhaseLive::add_liveout (1,271 samples, 0.35%)</title><rect x="15.3207%" y="757" width="0.3509%" height="15" fill="rgb(206,159,16)" fg:x="55501" fg:w="1271"/><text x="15.5707%" y="767.50"></text></g><g><title>PhaseLive::compute (2,584 samples, 0.71%)</title><rect x="14.9616%" y="773" width="0.7133%" height="15" fill="rgb(244,77,30)" fg:x="54200" fg:w="2584"/><text x="15.2116%" y="783.50"></text></g><g><title>RegMask::Size (57 samples, 0.02%)</title><rect x="15.6760%" y="773" width="0.0157%" height="15" fill="rgb(218,69,12)" fg:x="56788" fg:w="57"/><text x="15.9260%" y="783.50"></text></g><g><title>find_lowest_bit (46 samples, 0.01%)</title><rect x="15.7000%" y="773" width="0.0127%" height="15" fill="rgb(212,87,7)" fg:x="56875" fg:w="46"/><text x="15.9500%" y="783.50"></text></g><g><title>PhaseChaitin::Register_Allocate (29,766 samples, 8.22%)</title><rect x="7.4990%" y="789" width="8.2167%" height="15" fill="rgb(245,114,25)" fg:x="27166" fg:w="29766"/><text x="7.7490%" y="799.50">PhaseChaiti..</text></g><g><title>PhasePeephole::do_transform (39 samples, 0.01%)</title><rect x="15.7168%" y="789" width="0.0108%" height="15" fill="rgb(210,61,42)" fg:x="56936" fg:w="39"/><text x="15.9668%" y="799.50"></text></g><g><title>Compile::Code_Gen (37,780 samples, 10.43%)</title><rect x="5.2992%" y="805" width="10.4289%" height="15" fill="rgb(211,52,33)" fg:x="19197" fg:w="37780"/><text x="5.5492%" y="815.50">Compile::Code_G..</text></g><g><title>Compile::call_generator (37 samples, 0.01%)</title><rect x="15.7348%" y="421" width="0.0102%" height="15" fill="rgb(234,58,33)" fg:x="57001" fg:w="37"/><text x="15.9848%" y="431.50"></text></g><g><title>Parse::do_call (61 samples, 0.02%)</title><rect x="15.7839%" y="149" width="0.0168%" height="15" fill="rgb(220,115,36)" fg:x="57179" fg:w="61"/><text x="16.0339%" y="159.50"></text></g><g><title>Parse::do_one_block (95 samples, 0.03%)</title><rect x="15.7825%" y="181" width="0.0262%" height="15" fill="rgb(243,153,54)" fg:x="57174" fg:w="95"/><text x="16.0325%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.03%)</title><rect x="15.7831%" y="165" width="0.0257%" height="15" fill="rgb(251,47,18)" fg:x="57176" fg:w="93"/><text x="16.0331%" y="175.50"></text></g><g><title>Parse::do_all_blocks (99 samples, 0.03%)</title><rect x="15.7823%" y="197" width="0.0273%" height="15" fill="rgb(242,102,42)" fg:x="57173" fg:w="99"/><text x="16.0323%" y="207.50"></text></g><g><title>ParseGenerator::generate (116 samples, 0.03%)</title><rect x="15.7792%" y="229" width="0.0320%" height="15" fill="rgb(234,31,38)" fg:x="57162" fg:w="116"/><text x="16.0292%" y="239.50"></text></g><g><title>Parse::Parse (116 samples, 0.03%)</title><rect x="15.7792%" y="213" width="0.0320%" height="15" fill="rgb(221,117,51)" fg:x="57162" fg:w="116"/><text x="16.0292%" y="223.50"></text></g><g><title>Parse::do_call (157 samples, 0.04%)</title><rect x="15.7698%" y="245" width="0.0433%" height="15" fill="rgb(212,20,18)" fg:x="57128" fg:w="157"/><text x="16.0198%" y="255.50"></text></g><g><title>Parse::do_one_block (226 samples, 0.06%)</title><rect x="15.7643%" y="277" width="0.0624%" height="15" fill="rgb(245,133,36)" fg:x="57108" fg:w="226"/><text x="16.0143%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (220 samples, 0.06%)</title><rect x="15.7660%" y="261" width="0.0607%" height="15" fill="rgb(212,6,19)" fg:x="57114" fg:w="220"/><text x="16.0160%" y="271.50"></text></g><g><title>Parse::do_all_blocks (229 samples, 0.06%)</title><rect x="15.7643%" y="293" width="0.0632%" height="15" fill="rgb(218,1,36)" fg:x="57108" fg:w="229"/><text x="16.0143%" y="303.50"></text></g><g><title>ParseGenerator::generate (247 samples, 0.07%)</title><rect x="15.7616%" y="325" width="0.0682%" height="15" fill="rgb(246,84,54)" fg:x="57098" fg:w="247"/><text x="16.0116%" y="335.50"></text></g><g><title>Parse::Parse (245 samples, 0.07%)</title><rect x="15.7621%" y="309" width="0.0676%" height="15" fill="rgb(242,110,6)" fg:x="57100" fg:w="245"/><text x="16.0121%" y="319.50"></text></g><g><title>Parse::do_call (322 samples, 0.09%)</title><rect x="15.7480%" y="341" width="0.0889%" height="15" fill="rgb(214,47,5)" fg:x="57049" fg:w="322"/><text x="15.9980%" y="351.50"></text></g><g><title>ParseGenerator::generate (384 samples, 0.11%)</title><rect x="15.7456%" y="421" width="0.1060%" height="15" fill="rgb(218,159,25)" fg:x="57040" fg:w="384"/><text x="15.9956%" y="431.50"></text></g><g><title>Parse::Parse (384 samples, 0.11%)</title><rect x="15.7456%" y="405" width="0.1060%" height="15" fill="rgb(215,211,28)" fg:x="57040" fg:w="384"/><text x="15.9956%" y="415.50"></text></g><g><title>Parse::do_all_blocks (382 samples, 0.11%)</title><rect x="15.7461%" y="389" width="0.1054%" height="15" fill="rgb(238,59,32)" fg:x="57042" fg:w="382"/><text x="15.9961%" y="399.50"></text></g><g><title>Parse::do_one_block (382 samples, 0.11%)</title><rect x="15.7461%" y="373" width="0.1054%" height="15" fill="rgb(226,82,3)" fg:x="57042" fg:w="382"/><text x="15.9961%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (382 samples, 0.11%)</title><rect x="15.7461%" y="357" width="0.1054%" height="15" fill="rgb(240,164,32)" fg:x="57042" fg:w="382"/><text x="15.9961%" y="367.50"></text></g><g><title>PredictedCallGenerator::generate (37 samples, 0.01%)</title><rect x="15.8516%" y="421" width="0.0102%" height="15" fill="rgb(232,46,7)" fg:x="57424" fg:w="37"/><text x="16.1016%" y="431.50"></text></g><g><title>Parse::do_call (463 samples, 0.13%)</title><rect x="15.7348%" y="437" width="0.1278%" height="15" fill="rgb(229,129,53)" fg:x="57001" fg:w="463"/><text x="15.9848%" y="447.50"></text></g><g><title>Parse::do_all_blocks (471 samples, 0.13%)</title><rect x="15.7348%" y="485" width="0.1300%" height="15" fill="rgb(234,188,29)" fg:x="57001" fg:w="471"/><text x="15.9848%" y="495.50"></text></g><g><title>Parse::do_one_block (471 samples, 0.13%)</title><rect x="15.7348%" y="469" width="0.1300%" height="15" fill="rgb(246,141,4)" fg:x="57001" fg:w="471"/><text x="15.9848%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (471 samples, 0.13%)</title><rect x="15.7348%" y="453" width="0.1300%" height="15" fill="rgb(229,23,39)" fg:x="57001" fg:w="471"/><text x="15.9848%" y="463.50"></text></g><g><title>ParseGenerator::generate (472 samples, 0.13%)</title><rect x="15.7348%" y="517" width="0.1303%" height="15" fill="rgb(206,12,3)" fg:x="57001" fg:w="472"/><text x="15.9848%" y="527.50"></text></g><g><title>Parse::Parse (472 samples, 0.13%)</title><rect x="15.7348%" y="501" width="0.1303%" height="15" fill="rgb(252,226,20)" fg:x="57001" fg:w="472"/><text x="15.9848%" y="511.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="15.8698%" y="261" width="0.0116%" height="15" fill="rgb(216,123,35)" fg:x="57490" fg:w="42"/><text x="16.1198%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="15.8698%" y="245" width="0.0116%" height="15" fill="rgb(212,68,40)" fg:x="57490" fg:w="42"/><text x="16.1198%" y="255.50"></text></g><g><title>Parse::do_all_blocks (43 samples, 0.01%)</title><rect x="15.8698%" y="277" width="0.0119%" height="15" fill="rgb(254,125,32)" fg:x="57490" fg:w="43"/><text x="16.1198%" y="287.50"></text></g><g><title>ParseGenerator::generate (47 samples, 0.01%)</title><rect x="15.8692%" y="309" width="0.0130%" height="15" fill="rgb(253,97,22)" fg:x="57488" fg:w="47"/><text x="16.1192%" y="319.50"></text></g><g><title>Parse::Parse (47 samples, 0.01%)</title><rect x="15.8692%" y="293" width="0.0130%" height="15" fill="rgb(241,101,14)" fg:x="57488" fg:w="47"/><text x="16.1192%" y="303.50"></text></g><g><title>Parse::do_call (57 samples, 0.02%)</title><rect x="15.8681%" y="325" width="0.0157%" height="15" fill="rgb(238,103,29)" fg:x="57484" fg:w="57"/><text x="16.1181%" y="335.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.02%)</title><rect x="15.8673%" y="357" width="0.0196%" height="15" fill="rgb(233,195,47)" fg:x="57481" fg:w="71"/><text x="16.1173%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (71 samples, 0.02%)</title><rect x="15.8673%" y="341" width="0.0196%" height="15" fill="rgb(246,218,30)" fg:x="57481" fg:w="71"/><text x="16.1173%" y="351.50"></text></g><g><title>Parse::do_all_blocks (72 samples, 0.02%)</title><rect x="15.8673%" y="373" width="0.0199%" height="15" fill="rgb(219,145,47)" fg:x="57481" fg:w="72"/><text x="16.1173%" y="383.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.02%)</title><rect x="15.8670%" y="405" width="0.0204%" height="15" fill="rgb(243,12,26)" fg:x="57480" fg:w="74"/><text x="16.1170%" y="415.50"></text></g><g><title>Parse::Parse (74 samples, 0.02%)</title><rect x="15.8670%" y="389" width="0.0204%" height="15" fill="rgb(214,87,16)" fg:x="57480" fg:w="74"/><text x="16.1170%" y="399.50"></text></g><g><title>Parse::do_call (85 samples, 0.02%)</title><rect x="15.8654%" y="421" width="0.0235%" height="15" fill="rgb(208,99,42)" fg:x="57474" fg:w="85"/><text x="16.1154%" y="431.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.02%)</title><rect x="15.8651%" y="501" width="0.0240%" height="15" fill="rgb(253,99,2)" fg:x="57473" fg:w="87"/><text x="16.1151%" y="511.50"></text></g><g><title>Parse::Parse (87 samples, 0.02%)</title><rect x="15.8651%" y="485" width="0.0240%" height="15" fill="rgb(220,168,23)" fg:x="57473" fg:w="87"/><text x="16.1151%" y="495.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.02%)</title><rect x="15.8651%" y="469" width="0.0240%" height="15" fill="rgb(242,38,24)" fg:x="57473" fg:w="87"/><text x="16.1151%" y="479.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.02%)</title><rect x="15.8651%" y="453" width="0.0240%" height="15" fill="rgb(225,182,9)" fg:x="57473" fg:w="87"/><text x="16.1151%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.02%)</title><rect x="15.8651%" y="437" width="0.0240%" height="15" fill="rgb(243,178,37)" fg:x="57473" fg:w="87"/><text x="16.1151%" y="447.50"></text></g><g><title>Parse::do_call (595 samples, 0.16%)</title><rect x="15.7298%" y="533" width="0.1642%" height="15" fill="rgb(232,139,19)" fg:x="56983" fg:w="595"/><text x="15.9798%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (105 samples, 0.03%)</title><rect x="15.8651%" y="517" width="0.0290%" height="15" fill="rgb(225,201,24)" fg:x="57473" fg:w="105"/><text x="16.1151%" y="527.50"></text></g><g><title>ParseGenerator::generate (597 samples, 0.16%)</title><rect x="15.7298%" y="613" width="0.1648%" height="15" fill="rgb(221,47,46)" fg:x="56983" fg:w="597"/><text x="15.9798%" y="623.50"></text></g><g><title>Parse::Parse (597 samples, 0.16%)</title><rect x="15.7298%" y="597" width="0.1648%" height="15" fill="rgb(249,23,13)" fg:x="56983" fg:w="597"/><text x="15.9798%" y="607.50"></text></g><g><title>Parse::do_all_blocks (597 samples, 0.16%)</title><rect x="15.7298%" y="581" width="0.1648%" height="15" fill="rgb(219,9,5)" fg:x="56983" fg:w="597"/><text x="15.9798%" y="591.50"></text></g><g><title>Parse::do_one_block (597 samples, 0.16%)</title><rect x="15.7298%" y="565" width="0.1648%" height="15" fill="rgb(254,171,16)" fg:x="56983" fg:w="597"/><text x="15.9798%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (597 samples, 0.16%)</title><rect x="15.7298%" y="549" width="0.1648%" height="15" fill="rgb(230,171,20)" fg:x="56983" fg:w="597"/><text x="15.9798%" y="559.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="15.9021%" y="309" width="0.0105%" height="15" fill="rgb(210,71,41)" fg:x="57607" fg:w="38"/><text x="16.1521%" y="319.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="15.9021%" y="293" width="0.0105%" height="15" fill="rgb(206,173,20)" fg:x="57607" fg:w="38"/><text x="16.1521%" y="303.50"></text></g><g><title>Parse::do_call (59 samples, 0.02%)</title><rect x="15.8996%" y="325" width="0.0163%" height="15" fill="rgb(233,88,34)" fg:x="57598" fg:w="59"/><text x="16.1496%" y="335.50"></text></g><g><title>Parse::do_one_block (70 samples, 0.02%)</title><rect x="15.8990%" y="357" width="0.0193%" height="15" fill="rgb(223,209,46)" fg:x="57596" fg:w="70"/><text x="16.1490%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.02%)</title><rect x="15.8990%" y="341" width="0.0193%" height="15" fill="rgb(250,43,18)" fg:x="57596" fg:w="70"/><text x="16.1490%" y="351.50"></text></g><g><title>ParseGenerator::generate (72 samples, 0.02%)</title><rect x="15.8988%" y="405" width="0.0199%" height="15" fill="rgb(208,13,10)" fg:x="57595" fg:w="72"/><text x="16.1488%" y="415.50"></text></g><g><title>Parse::Parse (72 samples, 0.02%)</title><rect x="15.8988%" y="389" width="0.0199%" height="15" fill="rgb(212,200,36)" fg:x="57595" fg:w="72"/><text x="16.1488%" y="399.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.02%)</title><rect x="15.8990%" y="373" width="0.0196%" height="15" fill="rgb(225,90,30)" fg:x="57596" fg:w="71"/><text x="16.1490%" y="383.50"></text></g><g><title>Parse::do_call (92 samples, 0.03%)</title><rect x="15.8957%" y="421" width="0.0254%" height="15" fill="rgb(236,182,39)" fg:x="57584" fg:w="92"/><text x="16.1457%" y="431.50"></text></g><g><title>ParseGenerator::generate (98 samples, 0.03%)</title><rect x="15.8957%" y="501" width="0.0271%" height="15" fill="rgb(212,144,35)" fg:x="57584" fg:w="98"/><text x="16.1457%" y="511.50"></text></g><g><title>Parse::Parse (98 samples, 0.03%)</title><rect x="15.8957%" y="485" width="0.0271%" height="15" fill="rgb(228,63,44)" fg:x="57584" fg:w="98"/><text x="16.1457%" y="495.50"></text></g><g><title>Parse::do_all_blocks (98 samples, 0.03%)</title><rect x="15.8957%" y="469" width="0.0271%" height="15" fill="rgb(228,109,6)" fg:x="57584" fg:w="98"/><text x="16.1457%" y="479.50"></text></g><g><title>Parse::do_one_block (98 samples, 0.03%)</title><rect x="15.8957%" y="453" width="0.0271%" height="15" fill="rgb(238,117,24)" fg:x="57584" fg:w="98"/><text x="16.1457%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (98 samples, 0.03%)</title><rect x="15.8957%" y="437" width="0.0271%" height="15" fill="rgb(242,26,26)" fg:x="57584" fg:w="98"/><text x="16.1457%" y="447.50"></text></g><g><title>ParseGenerator::generate (118 samples, 0.03%)</title><rect x="15.8946%" y="597" width="0.0326%" height="15" fill="rgb(221,92,48)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="607.50"></text></g><g><title>Parse::Parse (118 samples, 0.03%)</title><rect x="15.8946%" y="581" width="0.0326%" height="15" fill="rgb(209,209,32)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="591.50"></text></g><g><title>Parse::do_all_blocks (118 samples, 0.03%)</title><rect x="15.8946%" y="565" width="0.0326%" height="15" fill="rgb(221,70,22)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="575.50"></text></g><g><title>Parse::do_one_block (118 samples, 0.03%)</title><rect x="15.8946%" y="549" width="0.0326%" height="15" fill="rgb(248,145,5)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (118 samples, 0.03%)</title><rect x="15.8946%" y="533" width="0.0326%" height="15" fill="rgb(226,116,26)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="543.50"></text></g><g><title>Parse::do_call (118 samples, 0.03%)</title><rect x="15.8946%" y="517" width="0.0326%" height="15" fill="rgb(244,5,17)" fg:x="57580" fg:w="118"/><text x="16.1446%" y="527.50"></text></g><g><title>ParseGenerator::generate (732 samples, 0.20%)</title><rect x="15.7293%" y="709" width="0.2021%" height="15" fill="rgb(252,159,33)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="719.50"></text></g><g><title>Parse::Parse (732 samples, 0.20%)</title><rect x="15.7293%" y="693" width="0.2021%" height="15" fill="rgb(206,71,0)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="703.50"></text></g><g><title>Parse::do_all_blocks (732 samples, 0.20%)</title><rect x="15.7293%" y="677" width="0.2021%" height="15" fill="rgb(233,118,54)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="687.50"></text></g><g><title>Parse::do_one_block (732 samples, 0.20%)</title><rect x="15.7293%" y="661" width="0.2021%" height="15" fill="rgb(234,83,48)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (732 samples, 0.20%)</title><rect x="15.7293%" y="645" width="0.2021%" height="15" fill="rgb(228,3,54)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="655.50"></text></g><g><title>Parse::do_call (732 samples, 0.20%)</title><rect x="15.7293%" y="629" width="0.2021%" height="15" fill="rgb(226,155,13)" fg:x="56981" fg:w="732"/><text x="15.9793%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (133 samples, 0.04%)</title><rect x="15.8946%" y="613" width="0.0367%" height="15" fill="rgb(241,28,37)" fg:x="57580" fg:w="133"/><text x="16.1446%" y="623.50"></text></g><g><title>Parse::do_call (61 samples, 0.02%)</title><rect x="15.9440%" y="229" width="0.0168%" height="15" fill="rgb(233,93,10)" fg:x="57759" fg:w="61"/><text x="16.1940%" y="239.50"></text></g><g><title>Parse::do_all_blocks (81 samples, 0.02%)</title><rect x="15.9435%" y="277" width="0.0224%" height="15" fill="rgb(225,113,19)" fg:x="57757" fg:w="81"/><text x="16.1935%" y="287.50"></text></g><g><title>Parse::do_one_block (81 samples, 0.02%)</title><rect x="15.9435%" y="261" width="0.0224%" height="15" fill="rgb(241,2,18)" fg:x="57757" fg:w="81"/><text x="16.1935%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.02%)</title><rect x="15.9438%" y="245" width="0.0221%" height="15" fill="rgb(228,207,21)" fg:x="57758" fg:w="80"/><text x="16.1938%" y="255.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.02%)</title><rect x="15.9421%" y="309" width="0.0240%" height="15" fill="rgb(213,211,35)" fg:x="57752" fg:w="87"/><text x="16.1921%" y="319.50"></text></g><g><title>Parse::Parse (85 samples, 0.02%)</title><rect x="15.9426%" y="293" width="0.0235%" height="15" fill="rgb(209,83,10)" fg:x="57754" fg:w="85"/><text x="16.1926%" y="303.50"></text></g><g><title>Parse::do_call (106 samples, 0.03%)</title><rect x="15.9380%" y="325" width="0.0293%" height="15" fill="rgb(209,164,1)" fg:x="57737" fg:w="106"/><text x="16.1880%" y="335.50"></text></g><g><title>Parse::do_one_block (128 samples, 0.04%)</title><rect x="15.9369%" y="357" width="0.0353%" height="15" fill="rgb(213,184,43)" fg:x="57733" fg:w="128"/><text x="16.1869%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (127 samples, 0.04%)</title><rect x="15.9371%" y="341" width="0.0351%" height="15" fill="rgb(231,61,34)" fg:x="57734" fg:w="127"/><text x="16.1871%" y="351.50"></text></g><g><title>Parse::do_all_blocks (131 samples, 0.04%)</title><rect x="15.9363%" y="373" width="0.0362%" height="15" fill="rgb(235,75,3)" fg:x="57731" fg:w="131"/><text x="16.1863%" y="383.50"></text></g><g><title>ParseGenerator::generate (133 samples, 0.04%)</title><rect x="15.9363%" y="405" width="0.0367%" height="15" fill="rgb(220,106,47)" fg:x="57731" fg:w="133"/><text x="16.1863%" y="415.50"></text></g><g><title>Parse::Parse (133 samples, 0.04%)</title><rect x="15.9363%" y="389" width="0.0367%" height="15" fill="rgb(210,196,33)" fg:x="57731" fg:w="133"/><text x="16.1863%" y="399.50"></text></g><g><title>Parse::do_call (164 samples, 0.05%)</title><rect x="15.9322%" y="421" width="0.0453%" height="15" fill="rgb(229,154,42)" fg:x="57716" fg:w="164"/><text x="16.1822%" y="431.50"></text></g><g><title>ParseGenerator::generate (173 samples, 0.05%)</title><rect x="15.9319%" y="501" width="0.0478%" height="15" fill="rgb(228,114,26)" fg:x="57715" fg:w="173"/><text x="16.1819%" y="511.50"></text></g><g><title>Parse::Parse (173 samples, 0.05%)</title><rect x="15.9319%" y="485" width="0.0478%" height="15" fill="rgb(208,144,1)" fg:x="57715" fg:w="173"/><text x="16.1819%" y="495.50"></text></g><g><title>Parse::do_all_blocks (173 samples, 0.05%)</title><rect x="15.9319%" y="469" width="0.0478%" height="15" fill="rgb(239,112,37)" fg:x="57715" fg:w="173"/><text x="16.1819%" y="479.50"></text></g><g><title>Parse::do_one_block (173 samples, 0.05%)</title><rect x="15.9319%" y="453" width="0.0478%" height="15" fill="rgb(210,96,50)" fg:x="57715" fg:w="173"/><text x="16.1819%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (173 samples, 0.05%)</title><rect x="15.9319%" y="437" width="0.0478%" height="15" fill="rgb(222,178,2)" fg:x="57715" fg:w="173"/><text x="16.1819%" y="447.50"></text></g><g><title>Parse::do_call (205 samples, 0.06%)</title><rect x="15.9313%" y="517" width="0.0566%" height="15" fill="rgb(226,74,18)" fg:x="57713" fg:w="205"/><text x="16.1813%" y="527.50"></text></g><g><title>ParseGenerator::generate (206 samples, 0.06%)</title><rect x="15.9313%" y="597" width="0.0569%" height="15" fill="rgb(225,67,54)" fg:x="57713" fg:w="206"/><text x="16.1813%" y="607.50"></text></g><g><title>Parse::Parse (206 samples, 0.06%)</title><rect x="15.9313%" y="581" width="0.0569%" height="15" fill="rgb(251,92,32)" fg:x="57713" fg:w="206"/><text x="16.1813%" y="591.50"></text></g><g><title>Parse::do_all_blocks (206 samples, 0.06%)</title><rect x="15.9313%" y="565" width="0.0569%" height="15" fill="rgb(228,149,22)" fg:x="57713" fg:w="206"/><text x="16.1813%" y="575.50"></text></g><g><title>Parse::do_one_block (206 samples, 0.06%)</title><rect x="15.9313%" y="549" width="0.0569%" height="15" fill="rgb(243,54,13)" fg:x="57713" fg:w="206"/><text x="16.1813%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (206 samples, 0.06%)</title><rect x="15.9313%" y="533" width="0.0569%" height="15" fill="rgb(243,180,28)" fg:x="57713" fg:w="206"/><text x="16.1813%" y="543.50"></text></g><g><title>ParseGenerator::generate (227 samples, 0.06%)</title><rect x="15.9313%" y="693" width="0.0627%" height="15" fill="rgb(208,167,24)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="703.50"></text></g><g><title>Parse::Parse (227 samples, 0.06%)</title><rect x="15.9313%" y="677" width="0.0627%" height="15" fill="rgb(245,73,45)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="687.50"></text></g><g><title>Parse::do_all_blocks (227 samples, 0.06%)</title><rect x="15.9313%" y="661" width="0.0627%" height="15" fill="rgb(237,203,48)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="671.50"></text></g><g><title>Parse::do_one_block (227 samples, 0.06%)</title><rect x="15.9313%" y="645" width="0.0627%" height="15" fill="rgb(211,197,16)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (227 samples, 0.06%)</title><rect x="15.9313%" y="629" width="0.0627%" height="15" fill="rgb(243,99,51)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="639.50"></text></g><g><title>Parse::do_call (227 samples, 0.06%)</title><rect x="15.9313%" y="613" width="0.0627%" height="15" fill="rgb(215,123,29)" fg:x="57713" fg:w="227"/><text x="16.1813%" y="623.50"></text></g><g><title>ParseGenerator::generate (1,018 samples, 0.28%)</title><rect x="15.7293%" y="805" width="0.2810%" height="15" fill="rgb(239,186,37)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="815.50"></text></g><g><title>Parse::Parse (1,018 samples, 0.28%)</title><rect x="15.7293%" y="789" width="0.2810%" height="15" fill="rgb(252,136,39)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="799.50"></text></g><g><title>Parse::do_all_blocks (1,018 samples, 0.28%)</title><rect x="15.7293%" y="773" width="0.2810%" height="15" fill="rgb(223,213,32)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="783.50"></text></g><g><title>Parse::do_one_block (1,018 samples, 0.28%)</title><rect x="15.7293%" y="757" width="0.2810%" height="15" fill="rgb(233,115,5)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (1,018 samples, 0.28%)</title><rect x="15.7293%" y="741" width="0.2810%" height="15" fill="rgb(207,226,44)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="751.50"></text></g><g><title>Parse::do_call (1,018 samples, 0.28%)</title><rect x="15.7293%" y="725" width="0.2810%" height="15" fill="rgb(208,126,0)" fg:x="56981" fg:w="1018"/><text x="15.9793%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (286 samples, 0.08%)</title><rect x="15.9313%" y="709" width="0.0789%" height="15" fill="rgb(244,66,21)" fg:x="57713" fg:w="286"/><text x="16.1813%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (59 samples, 0.02%)</title><rect x="15.9940%" y="693" width="0.0163%" height="15" fill="rgb(222,97,12)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="703.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.02%)</title><rect x="15.9940%" y="677" width="0.0163%" height="15" fill="rgb(219,213,19)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="687.50"></text></g><g><title>Parse::Parse (59 samples, 0.02%)</title><rect x="15.9940%" y="661" width="0.0163%" height="15" fill="rgb(252,169,30)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="671.50"></text></g><g><title>Parse::do_all_blocks (59 samples, 0.02%)</title><rect x="15.9940%" y="645" width="0.0163%" height="15" fill="rgb(206,32,51)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="655.50"></text></g><g><title>Parse::do_one_block (59 samples, 0.02%)</title><rect x="15.9940%" y="629" width="0.0163%" height="15" fill="rgb(250,172,42)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (59 samples, 0.02%)</title><rect x="15.9940%" y="613" width="0.0163%" height="15" fill="rgb(209,34,43)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="623.50"></text></g><g><title>Parse::do_call (59 samples, 0.02%)</title><rect x="15.9940%" y="597" width="0.0163%" height="15" fill="rgb(223,11,35)" fg:x="57940" fg:w="59"/><text x="16.2440%" y="607.50"></text></g><g><title>Compile::Compile (38,803 samples, 10.71%)</title><rect x="5.2992%" y="821" width="10.7113%" height="15" fill="rgb(251,219,26)" fg:x="19197" fg:w="38803"/><text x="5.5492%" y="831.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (97 samples, 0.03%)</title><rect x="16.0511%" y="773" width="0.0268%" height="15" fill="rgb(231,119,3)" fg:x="58147" fg:w="97"/><text x="16.3011%" y="783.50"></text></g><g><title>Compile::final_graph_reshaping (259 samples, 0.07%)</title><rect x="16.0114%" y="805" width="0.0715%" height="15" fill="rgb(216,97,11)" fg:x="58003" fg:w="259"/><text x="16.2614%" y="815.50"></text></g><g><title>Compile::final_graph_reshaping_walk (256 samples, 0.07%)</title><rect x="16.0122%" y="789" width="0.0707%" height="15" fill="rgb(223,59,9)" fg:x="58006" fg:w="256"/><text x="16.2622%" y="799.50"></text></g><g><title>Compile::inline_incrementally (39 samples, 0.01%)</title><rect x="16.0829%" y="805" width="0.0108%" height="15" fill="rgb(233,93,31)" fg:x="58262" fg:w="39"/><text x="16.3329%" y="815.50"></text></g><g><title>PhaseIterGVN::transform_old (62 samples, 0.02%)</title><rect x="16.1326%" y="773" width="0.0171%" height="15" fill="rgb(239,81,33)" fg:x="58442" fg:w="62"/><text x="16.3826%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (64 samples, 0.02%)</title><rect x="16.1323%" y="789" width="0.0177%" height="15" fill="rgb(213,120,34)" fg:x="58441" fg:w="64"/><text x="16.3823%" y="799.50"></text></g><g><title>Compile::remove_speculative_types (238 samples, 0.07%)</title><rect x="16.0964%" y="805" width="0.0657%" height="15" fill="rgb(243,49,53)" fg:x="58311" fg:w="238"/><text x="16.3464%" y="815.50"></text></g><g><title>ConnectionGraph::add_final_edges (42 samples, 0.01%)</title><rect x="16.1900%" y="773" width="0.0116%" height="15" fill="rgb(247,216,33)" fg:x="58650" fg:w="42"/><text x="16.4400%" y="783.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (66 samples, 0.02%)</title><rect x="16.2032%" y="773" width="0.0182%" height="15" fill="rgb(226,26,14)" fg:x="58698" fg:w="66"/><text x="16.4532%" y="783.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (70 samples, 0.02%)</title><rect x="16.2319%" y="757" width="0.0193%" height="15" fill="rgb(215,49,53)" fg:x="58802" fg:w="70"/><text x="16.4819%" y="767.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (152 samples, 0.04%)</title><rect x="16.2223%" y="773" width="0.0420%" height="15" fill="rgb(245,162,40)" fg:x="58767" fg:w="152"/><text x="16.4723%" y="783.50"></text></g><g><title>ConnectionGraph::split_unique_types (65 samples, 0.02%)</title><rect x="16.2664%" y="773" width="0.0179%" height="15" fill="rgb(229,68,17)" fg:x="58927" fg:w="65"/><text x="16.5164%" y="783.50"></text></g><g><title>ConnectionGraph::do_analysis (450 samples, 0.12%)</title><rect x="16.1621%" y="805" width="0.1242%" height="15" fill="rgb(213,182,10)" fg:x="58549" fg:w="450"/><text x="16.4121%" y="815.50"></text></g><g><title>ConnectionGraph::compute_escape (447 samples, 0.12%)</title><rect x="16.1629%" y="789" width="0.1234%" height="15" fill="rgb(245,125,30)" fg:x="58552" fg:w="447"/><text x="16.4129%" y="799.50"></text></g><g><title>TypeInstPtr::add_offset (49 samples, 0.01%)</title><rect x="16.4544%" y="789" width="0.0135%" height="15" fill="rgb(232,202,2)" fg:x="59608" fg:w="49"/><text x="16.7044%" y="799.50"></text></g><g><title>PhaseCCP::analyze (685 samples, 0.19%)</title><rect x="16.2874%" y="805" width="0.1891%" height="15" fill="rgb(237,140,51)" fg:x="59003" fg:w="685"/><text x="16.5374%" y="815.50"></text></g><g><title>PhaseCCP::transform_once (87 samples, 0.02%)</title><rect x="16.5047%" y="773" width="0.0240%" height="15" fill="rgb(236,157,25)" fg:x="59790" fg:w="87"/><text x="16.7547%" y="783.50"></text></g><g><title>PhaseCCP::do_transform (193 samples, 0.05%)</title><rect x="16.4765%" y="805" width="0.0533%" height="15" fill="rgb(219,209,0)" fg:x="59688" fg:w="193"/><text x="16.7265%" y="815.50"></text></g><g><title>PhaseCCP::transform (193 samples, 0.05%)</title><rect x="16.4765%" y="789" width="0.0533%" height="15" fill="rgb(240,116,54)" fg:x="59688" fg:w="193"/><text x="16.7265%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (45 samples, 0.01%)</title><rect x="16.5610%" y="693" width="0.0124%" height="15" fill="rgb(216,10,36)" fg:x="59994" fg:w="45"/><text x="16.8110%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (56 samples, 0.02%)</title><rect x="16.5610%" y="709" width="0.0155%" height="15" fill="rgb(222,72,44)" fg:x="59994" fg:w="56"/><text x="16.8110%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (70 samples, 0.02%)</title><rect x="16.5604%" y="725" width="0.0193%" height="15" fill="rgb(232,159,9)" fg:x="59992" fg:w="70"/><text x="16.8104%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (86 samples, 0.02%)</title><rect x="16.5599%" y="741" width="0.0237%" height="15" fill="rgb(210,39,32)" fg:x="59990" fg:w="86"/><text x="16.8099%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (43 samples, 0.01%)</title><rect x="16.5836%" y="741" width="0.0119%" height="15" fill="rgb(216,194,45)" fg:x="60076" fg:w="43"/><text x="16.8336%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (133 samples, 0.04%)</title><rect x="16.5591%" y="757" width="0.0367%" height="15" fill="rgb(218,18,35)" fg:x="59987" fg:w="133"/><text x="16.8091%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (37 samples, 0.01%)</title><rect x="16.5958%" y="757" width="0.0102%" height="15" fill="rgb(207,83,51)" fg:x="60120" fg:w="37"/><text x="16.8458%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (178 samples, 0.05%)</title><rect x="16.5585%" y="773" width="0.0491%" height="15" fill="rgb(225,63,43)" fg:x="59985" fg:w="178"/><text x="16.8085%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (194 samples, 0.05%)</title><rect x="16.5574%" y="789" width="0.0536%" height="15" fill="rgb(207,57,36)" fg:x="59981" fg:w="194"/><text x="16.8074%" y="799.50"></text></g><g><title>IdealLoopTree::loop_predication (64 samples, 0.02%)</title><rect x="16.6110%" y="773" width="0.0177%" height="15" fill="rgb(216,99,33)" fg:x="60175" fg:w="64"/><text x="16.8610%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (48 samples, 0.01%)</title><rect x="16.6154%" y="757" width="0.0133%" height="15" fill="rgb(225,42,16)" fg:x="60191" fg:w="48"/><text x="16.8654%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (69 samples, 0.02%)</title><rect x="16.6410%" y="757" width="0.0190%" height="15" fill="rgb(220,201,45)" fg:x="60284" fg:w="69"/><text x="16.8910%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (39 samples, 0.01%)</title><rect x="16.6601%" y="757" width="0.0108%" height="15" fill="rgb(225,33,4)" fg:x="60353" fg:w="39"/><text x="16.9101%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (234 samples, 0.06%)</title><rect x="16.6110%" y="789" width="0.0646%" height="15" fill="rgb(224,33,50)" fg:x="60175" fg:w="234"/><text x="16.8610%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (170 samples, 0.05%)</title><rect x="16.6286%" y="773" width="0.0469%" height="15" fill="rgb(246,198,51)" fg:x="60239" fg:w="170"/><text x="16.8786%" y="783.50"></text></g><g><title>NTarjan::DFS (284 samples, 0.08%)</title><rect x="16.8610%" y="773" width="0.0784%" height="15" fill="rgb(205,22,4)" fg:x="61081" fg:w="284"/><text x="17.1110%" y="783.50"></text></g><g><title>PhaseIdealLoop::Dominators (960 samples, 0.27%)</title><rect x="16.6882%" y="789" width="0.2650%" height="15" fill="rgb(206,3,8)" fg:x="60455" fg:w="960"/><text x="16.9382%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_depth (64 samples, 0.02%)</title><rect x="17.2815%" y="741" width="0.0177%" height="15" fill="rgb(251,23,15)" fg:x="62604" fg:w="64"/><text x="17.5315%" y="751.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (371 samples, 0.10%)</title><rect x="17.2378%" y="773" width="0.1024%" height="15" fill="rgb(252,88,28)" fg:x="62446" fg:w="371"/><text x="17.4878%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (337 samples, 0.09%)</title><rect x="17.2472%" y="757" width="0.0930%" height="15" fill="rgb(212,127,14)" fg:x="62480" fg:w="337"/><text x="17.4972%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (149 samples, 0.04%)</title><rect x="17.2991%" y="741" width="0.0411%" height="15" fill="rgb(247,145,37)" fg:x="62668" fg:w="149"/><text x="17.5491%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,474 samples, 0.41%)</title><rect x="16.9532%" y="789" width="0.4069%" height="15" fill="rgb(209,117,53)" fg:x="61415" fg:w="1474"/><text x="17.2032%" y="799.50"></text></g><g><title>Node::unique_ctrl_out (58 samples, 0.02%)</title><rect x="17.8175%" y="757" width="0.0160%" height="15" fill="rgb(212,90,42)" fg:x="64546" fg:w="58"/><text x="18.0675%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (71 samples, 0.02%)</title><rect x="17.8336%" y="757" width="0.0196%" height="15" fill="rgb(218,164,37)" fg:x="64604" fg:w="71"/><text x="18.0836%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_depth (50 samples, 0.01%)</title><rect x="18.0442%" y="709" width="0.0138%" height="15" fill="rgb(246,65,34)" fg:x="65367" fg:w="50"/><text x="18.2942%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (259 samples, 0.07%)</title><rect x="18.0207%" y="725" width="0.0715%" height="15" fill="rgb(231,100,33)" fg:x="65282" fg:w="259"/><text x="18.2707%" y="735.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (124 samples, 0.03%)</title><rect x="18.0580%" y="709" width="0.0342%" height="15" fill="rgb(228,126,14)" fg:x="65417" fg:w="124"/><text x="18.3080%" y="719.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (387 samples, 0.11%)</title><rect x="17.9950%" y="741" width="0.1068%" height="15" fill="rgb(215,173,21)" fg:x="65189" fg:w="387"/><text x="18.2450%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (146 samples, 0.04%)</title><rect x="18.1021%" y="741" width="0.0403%" height="15" fill="rgb(210,6,40)" fg:x="65577" fg:w="146"/><text x="18.3521%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (487 samples, 0.13%)</title><rect x="18.5551%" y="725" width="0.1344%" height="15" fill="rgb(212,48,18)" fg:x="67218" fg:w="487"/><text x="18.8051%" y="735.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,958 samples, 0.54%)</title><rect x="18.1493%" y="741" width="0.5405%" height="15" fill="rgb(230,214,11)" fg:x="65748" fg:w="1958"/><text x="18.3993%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (3,052 samples, 0.84%)</title><rect x="17.8532%" y="757" width="0.8425%" height="15" fill="rgb(254,105,39)" fg:x="64675" fg:w="3052"/><text x="18.1032%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_loop (37 samples, 0.01%)</title><rect x="18.6956%" y="757" width="0.0102%" height="15" fill="rgb(245,158,5)" fg:x="67727" fg:w="37"/><text x="18.9456%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (3,796 samples, 1.05%)</title><rect x="17.6671%" y="773" width="1.0479%" height="15" fill="rgb(249,208,11)" fg:x="64001" fg:w="3796"/><text x="17.9171%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (4,917 samples, 1.36%)</title><rect x="17.3601%" y="789" width="1.3573%" height="15" fill="rgb(210,39,28)" fg:x="62889" fg:w="4917"/><text x="17.6101%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (208 samples, 0.06%)</title><rect x="18.8731%" y="773" width="0.0574%" height="15" fill="rgb(211,56,53)" fg:x="68370" fg:w="208"/><text x="19.1231%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (776 samples, 0.21%)</title><rect x="18.7185%" y="789" width="0.2142%" height="15" fill="rgb(226,201,30)" fg:x="67810" fg:w="776"/><text x="18.9685%" y="799.50"></text></g><g><title>PhaseIdealLoop::do_split_if (94 samples, 0.03%)</title><rect x="19.0481%" y="773" width="0.0259%" height="15" fill="rgb(239,101,34)" fg:x="69004" fg:w="94"/><text x="19.2981%" y="783.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (249 samples, 0.07%)</title><rect x="19.0755%" y="773" width="0.0687%" height="15" fill="rgb(226,209,5)" fg:x="69103" fg:w="249"/><text x="19.3255%" y="783.50"></text></g><g><title>ConstraintCastNode::dominating_cast (48 samples, 0.01%)</title><rect x="19.1776%" y="757" width="0.0133%" height="15" fill="rgb(250,105,47)" fg:x="69473" fg:w="48"/><text x="19.4276%" y="767.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (72 samples, 0.02%)</title><rect x="19.2066%" y="757" width="0.0199%" height="15" fill="rgb(230,72,3)" fg:x="69578" fg:w="72"/><text x="19.4566%" y="767.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (159 samples, 0.04%)</title><rect x="19.2273%" y="757" width="0.0439%" height="15" fill="rgb(232,218,39)" fg:x="69653" fg:w="159"/><text x="19.4773%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (48 samples, 0.01%)</title><rect x="19.2579%" y="741" width="0.0133%" height="15" fill="rgb(248,166,6)" fg:x="69764" fg:w="48"/><text x="19.5079%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (54 samples, 0.01%)</title><rect x="19.2993%" y="741" width="0.0149%" height="15" fill="rgb(247,89,20)" fg:x="69914" fg:w="54"/><text x="19.5493%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (185 samples, 0.05%)</title><rect x="19.2712%" y="757" width="0.0511%" height="15" fill="rgb(248,130,54)" fg:x="69812" fg:w="185"/><text x="19.5212%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (695 samples, 0.19%)</title><rect x="19.1442%" y="773" width="0.1919%" height="15" fill="rgb(234,196,4)" fg:x="69352" fg:w="695"/><text x="19.3942%" y="783.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,418 samples, 0.39%)</title><rect x="18.9457%" y="789" width="0.3914%" height="15" fill="rgb(250,143,31)" fg:x="68633" fg:w="1418"/><text x="19.1957%" y="799.50"></text></g><g><title>CallNode::Ideal (46 samples, 0.01%)</title><rect x="19.3915%" y="757" width="0.0127%" height="15" fill="rgb(211,110,34)" fg:x="70248" fg:w="46"/><text x="19.6415%" y="767.50"></text></g><g><title>Node::remove_dead_region (44 samples, 0.01%)</title><rect x="19.3921%" y="741" width="0.0121%" height="15" fill="rgb(215,124,48)" fg:x="70250" fg:w="44"/><text x="19.6421%" y="751.50"></text></g><g><title>LoadNode::Ideal (75 samples, 0.02%)</title><rect x="19.4393%" y="757" width="0.0207%" height="15" fill="rgb(216,46,13)" fg:x="70421" fg:w="75"/><text x="19.6893%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (117 samples, 0.03%)</title><rect x="19.4697%" y="757" width="0.0323%" height="15" fill="rgb(205,184,25)" fg:x="70531" fg:w="117"/><text x="19.7197%" y="767.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (58 samples, 0.02%)</title><rect x="19.5025%" y="757" width="0.0160%" height="15" fill="rgb(228,1,10)" fg:x="70650" fg:w="58"/><text x="19.7525%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (77 samples, 0.02%)</title><rect x="19.5185%" y="757" width="0.0213%" height="15" fill="rgb(213,116,27)" fg:x="70708" fg:w="77"/><text x="19.7685%" y="767.50"></text></g><g><title>PhiNode::Ideal (39 samples, 0.01%)</title><rect x="19.5401%" y="757" width="0.0108%" height="15" fill="rgb(241,95,50)" fg:x="70786" fg:w="39"/><text x="19.7901%" y="767.50"></text></g><g><title>RegionNode::is_unreachable_region (93 samples, 0.03%)</title><rect x="19.5859%" y="741" width="0.0257%" height="15" fill="rgb(238,48,32)" fg:x="70952" fg:w="93"/><text x="19.8359%" y="751.50"></text></g><g><title>RegionNode::Ideal (165 samples, 0.05%)</title><rect x="19.5674%" y="757" width="0.0455%" height="15" fill="rgb(235,113,49)" fg:x="70885" fg:w="165"/><text x="19.8174%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (40 samples, 0.01%)</title><rect x="19.6151%" y="501" width="0.0110%" height="15" fill="rgb(205,127,43)" fg:x="71058" fg:w="40"/><text x="19.8651%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (44 samples, 0.01%)</title><rect x="19.6151%" y="517" width="0.0121%" height="15" fill="rgb(250,162,2)" fg:x="71058" fg:w="44"/><text x="19.8651%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.01%)</title><rect x="19.6151%" y="533" width="0.0144%" height="15" fill="rgb(220,13,41)" fg:x="71058" fg:w="52"/><text x="19.8651%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (56 samples, 0.02%)</title><rect x="19.6151%" y="549" width="0.0155%" height="15" fill="rgb(249,221,25)" fg:x="71058" fg:w="56"/><text x="19.8651%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (65 samples, 0.02%)</title><rect x="19.6151%" y="565" width="0.0179%" height="15" fill="rgb(215,208,19)" fg:x="71058" fg:w="65"/><text x="19.8651%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (72 samples, 0.02%)</title><rect x="19.6151%" y="581" width="0.0199%" height="15" fill="rgb(236,175,2)" fg:x="71058" fg:w="72"/><text x="19.8651%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.02%)</title><rect x="19.6149%" y="597" width="0.0221%" height="15" fill="rgb(241,52,2)" fg:x="71057" fg:w="80"/><text x="19.8649%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (85 samples, 0.02%)</title><rect x="19.6149%" y="613" width="0.0235%" height="15" fill="rgb(248,140,14)" fg:x="71057" fg:w="85"/><text x="19.8649%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (97 samples, 0.03%)</title><rect x="19.6149%" y="629" width="0.0268%" height="15" fill="rgb(253,22,42)" fg:x="71057" fg:w="97"/><text x="19.8649%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (101 samples, 0.03%)</title><rect x="19.6149%" y="645" width="0.0279%" height="15" fill="rgb(234,61,47)" fg:x="71057" fg:w="101"/><text x="19.8649%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (111 samples, 0.03%)</title><rect x="19.6149%" y="661" width="0.0306%" height="15" fill="rgb(208,226,15)" fg:x="71057" fg:w="111"/><text x="19.8649%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (116 samples, 0.03%)</title><rect x="19.6149%" y="677" width="0.0320%" height="15" fill="rgb(217,221,4)" fg:x="71057" fg:w="116"/><text x="19.8649%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (126 samples, 0.03%)</title><rect x="19.6149%" y="693" width="0.0348%" height="15" fill="rgb(212,174,34)" fg:x="71057" fg:w="126"/><text x="19.8649%" y="703.50"></text></g><g><title>InitializeNode::can_capture_store (143 samples, 0.04%)</title><rect x="19.6149%" y="741" width="0.0395%" height="15" fill="rgb(253,83,4)" fg:x="71057" fg:w="143"/><text x="19.8649%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (143 samples, 0.04%)</title><rect x="19.6149%" y="725" width="0.0395%" height="15" fill="rgb(250,195,49)" fg:x="71057" fg:w="143"/><text x="19.8649%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (143 samples, 0.04%)</title><rect x="19.6149%" y="709" width="0.0395%" height="15" fill="rgb(241,192,25)" fg:x="71057" fg:w="143"/><text x="19.8649%" y="719.50"></text></g><g><title>StoreNode::Ideal (163 samples, 0.04%)</title><rect x="19.6149%" y="757" width="0.0450%" height="15" fill="rgb(208,124,10)" fg:x="71057" fg:w="163"/><text x="19.8649%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (1,176 samples, 0.32%)</title><rect x="19.3471%" y="773" width="0.3246%" height="15" fill="rgb(222,33,0)" fg:x="70087" fg:w="1176"/><text x="19.5971%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (1,221 samples, 0.34%)</title><rect x="19.3377%" y="789" width="0.3370%" height="15" fill="rgb(234,209,28)" fg:x="70053" fg:w="1221"/><text x="19.5877%" y="799.50"></text></g><g><title>SuperWord::transform_loop (39 samples, 0.01%)</title><rect x="19.6844%" y="789" width="0.0108%" height="15" fill="rgb(224,11,23)" fg:x="71309" fg:w="39"/><text x="19.9344%" y="799.50"></text></g><g><title>SuperWord::SLP_extract (38 samples, 0.01%)</title><rect x="19.6847%" y="773" width="0.0105%" height="15" fill="rgb(232,99,1)" fg:x="71310" fg:w="38"/><text x="19.9347%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (11,472 samples, 3.17%)</title><rect x="16.5348%" y="805" width="3.1668%" height="15" fill="rgb(237,95,45)" fg:x="59899" fg:w="11472"/><text x="16.7848%" y="815.50">Pha..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (55 samples, 0.02%)</title><rect x="19.7170%" y="789" width="0.0152%" height="15" fill="rgb(208,109,11)" fg:x="71427" fg:w="55"/><text x="19.9670%" y="799.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (112 samples, 0.03%)</title><rect x="19.7015%" y="805" width="0.0309%" height="15" fill="rgb(216,190,48)" fg:x="71371" fg:w="112"/><text x="19.9515%" y="815.50"></text></g><g><title>IfNode::search_identical (46 samples, 0.01%)</title><rect x="19.8437%" y="757" width="0.0127%" height="15" fill="rgb(251,171,36)" fg:x="71886" fg:w="46"/><text x="20.0937%" y="767.50"></text></g><g><title>Unique_Node_List::remove (66 samples, 0.02%)</title><rect x="19.8721%" y="725" width="0.0182%" height="15" fill="rgb(230,62,22)" fg:x="71989" fg:w="66"/><text x="20.1221%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (87 samples, 0.02%)</title><rect x="19.8666%" y="757" width="0.0240%" height="15" fill="rgb(225,114,35)" fg:x="71969" fg:w="87"/><text x="20.1166%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (81 samples, 0.02%)</title><rect x="19.8683%" y="741" width="0.0224%" height="15" fill="rgb(215,118,42)" fg:x="71975" fg:w="81"/><text x="20.1183%" y="751.50"></text></g><g><title>IfNode::Ideal (273 samples, 0.08%)</title><rect x="19.8357%" y="773" width="0.0754%" height="15" fill="rgb(243,119,21)" fg:x="71857" fg:w="273"/><text x="20.0857%" y="783.50"></text></g><g><title>split_if (68 samples, 0.02%)</title><rect x="19.8923%" y="757" width="0.0188%" height="15" fill="rgb(252,177,53)" fg:x="72062" fg:w="68"/><text x="20.1423%" y="767.50"></text></g><g><title>MemNode::Ideal_common (53 samples, 0.01%)</title><rect x="19.9260%" y="757" width="0.0146%" height="15" fill="rgb(237,209,29)" fg:x="72184" fg:w="53"/><text x="20.1760%" y="767.50"></text></g><g><title>MemNode::find_previous_store (67 samples, 0.02%)</title><rect x="19.9420%" y="757" width="0.0185%" height="15" fill="rgb(212,65,23)" fg:x="72242" fg:w="67"/><text x="20.1920%" y="767.50"></text></g><g><title>LoadNode::Ideal (150 samples, 0.04%)</title><rect x="19.9204%" y="773" width="0.0414%" height="15" fill="rgb(230,222,46)" fg:x="72164" fg:w="150"/><text x="20.1704%" y="783.50"></text></g><g><title>MergeMemNode::Ideal (37 samples, 0.01%)</title><rect x="19.9823%" y="773" width="0.0102%" height="15" fill="rgb(215,135,32)" fg:x="72388" fg:w="37"/><text x="20.2323%" y="783.50"></text></g><g><title>NodeHash::grow (50 samples, 0.01%)</title><rect x="20.0240%" y="757" width="0.0138%" height="15" fill="rgb(246,101,22)" fg:x="72539" fg:w="50"/><text x="20.2740%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (149 samples, 0.04%)</title><rect x="20.0005%" y="773" width="0.0411%" height="15" fill="rgb(206,107,13)" fg:x="72454" fg:w="149"/><text x="20.2505%" y="783.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (49 samples, 0.01%)</title><rect x="20.0416%" y="773" width="0.0135%" height="15" fill="rgb(250,100,44)" fg:x="72603" fg:w="49"/><text x="20.2916%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (63 samples, 0.02%)</title><rect x="20.0706%" y="757" width="0.0174%" height="15" fill="rgb(231,147,38)" fg:x="72708" fg:w="63"/><text x="20.3206%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (137 samples, 0.04%)</title><rect x="20.0552%" y="773" width="0.0378%" height="15" fill="rgb(229,8,40)" fg:x="72652" fg:w="137"/><text x="20.3052%" y="783.50"></text></g><g><title>PhiNode::Ideal (103 samples, 0.03%)</title><rect x="20.0944%" y="773" width="0.0284%" height="15" fill="rgb(221,135,30)" fg:x="72794" fg:w="103"/><text x="20.3444%" y="783.50"></text></g><g><title>Unique_Node_List::remove (78 samples, 0.02%)</title><rect x="20.1805%" y="725" width="0.0215%" height="15" fill="rgb(249,193,18)" fg:x="73106" fg:w="78"/><text x="20.4305%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (89 samples, 0.02%)</title><rect x="20.1777%" y="741" width="0.0246%" height="15" fill="rgb(209,133,39)" fg:x="73096" fg:w="89"/><text x="20.4277%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (108 samples, 0.03%)</title><rect x="20.1744%" y="757" width="0.0298%" height="15" fill="rgb(232,100,14)" fg:x="73084" fg:w="108"/><text x="20.4244%" y="767.50"></text></g><g><title>RegionNode::is_unreachable_region (71 samples, 0.02%)</title><rect x="20.2122%" y="757" width="0.0196%" height="15" fill="rgb(224,185,1)" fg:x="73221" fg:w="71"/><text x="20.4622%" y="767.50"></text></g><g><title>RegionNode::Ideal (299 samples, 0.08%)</title><rect x="20.1512%" y="773" width="0.0825%" height="15" fill="rgb(223,139,8)" fg:x="73000" fg:w="299"/><text x="20.4012%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (40 samples, 0.01%)</title><rect x="20.2393%" y="469" width="0.0110%" height="15" fill="rgb(232,213,38)" fg:x="73319" fg:w="40"/><text x="20.4893%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (56 samples, 0.02%)</title><rect x="20.2393%" y="485" width="0.0155%" height="15" fill="rgb(207,94,22)" fg:x="73319" fg:w="56"/><text x="20.4893%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (70 samples, 0.02%)</title><rect x="20.2393%" y="501" width="0.0193%" height="15" fill="rgb(219,183,54)" fg:x="73319" fg:w="70"/><text x="20.4893%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (77 samples, 0.02%)</title><rect x="20.2393%" y="517" width="0.0213%" height="15" fill="rgb(216,185,54)" fg:x="73319" fg:w="77"/><text x="20.4893%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (91 samples, 0.03%)</title><rect x="20.2393%" y="533" width="0.0251%" height="15" fill="rgb(254,217,39)" fg:x="73319" fg:w="91"/><text x="20.4893%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (105 samples, 0.03%)</title><rect x="20.2393%" y="549" width="0.0290%" height="15" fill="rgb(240,178,23)" fg:x="73319" fg:w="105"/><text x="20.4893%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (126 samples, 0.03%)</title><rect x="20.2393%" y="565" width="0.0348%" height="15" fill="rgb(218,11,47)" fg:x="73319" fg:w="126"/><text x="20.4893%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (139 samples, 0.04%)</title><rect x="20.2393%" y="581" width="0.0384%" height="15" fill="rgb(218,51,51)" fg:x="73319" fg:w="139"/><text x="20.4893%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (150 samples, 0.04%)</title><rect x="20.2393%" y="597" width="0.0414%" height="15" fill="rgb(238,126,27)" fg:x="73319" fg:w="150"/><text x="20.4893%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (162 samples, 0.04%)</title><rect x="20.2393%" y="613" width="0.0447%" height="15" fill="rgb(249,202,22)" fg:x="73319" fg:w="162"/><text x="20.4893%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (175 samples, 0.05%)</title><rect x="20.2390%" y="629" width="0.0483%" height="15" fill="rgb(254,195,49)" fg:x="73318" fg:w="175"/><text x="20.4890%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (191 samples, 0.05%)</title><rect x="20.2390%" y="645" width="0.0527%" height="15" fill="rgb(208,123,14)" fg:x="73318" fg:w="191"/><text x="20.4890%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (210 samples, 0.06%)</title><rect x="20.2390%" y="661" width="0.0580%" height="15" fill="rgb(224,200,8)" fg:x="73318" fg:w="210"/><text x="20.4890%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (224 samples, 0.06%)</title><rect x="20.2390%" y="677" width="0.0618%" height="15" fill="rgb(217,61,36)" fg:x="73318" fg:w="224"/><text x="20.4890%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (249 samples, 0.07%)</title><rect x="20.2390%" y="693" width="0.0687%" height="15" fill="rgb(206,35,45)" fg:x="73318" fg:w="249"/><text x="20.4890%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (279 samples, 0.08%)</title><rect x="20.2390%" y="709" width="0.0770%" height="15" fill="rgb(217,65,33)" fg:x="73318" fg:w="279"/><text x="20.4890%" y="719.50"></text></g><g><title>InitializeNode::can_capture_store (308 samples, 0.09%)</title><rect x="20.2384%" y="757" width="0.0850%" height="15" fill="rgb(222,158,48)" fg:x="73316" fg:w="308"/><text x="20.4884%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (308 samples, 0.09%)</title><rect x="20.2384%" y="741" width="0.0850%" height="15" fill="rgb(254,2,54)" fg:x="73316" fg:w="308"/><text x="20.4884%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (306 samples, 0.08%)</title><rect x="20.2390%" y="725" width="0.0845%" height="15" fill="rgb(250,143,38)" fg:x="73318" fg:w="306"/><text x="20.4890%" y="735.50"></text></g><g><title>StoreNode::Ideal (329 samples, 0.09%)</title><rect x="20.2379%" y="773" width="0.0908%" height="15" fill="rgb(248,25,0)" fg:x="73314" fg:w="329"/><text x="20.4879%" y="783.50"></text></g><g><title>PhaseIterGVN::transform_old (2,133 samples, 0.59%)</title><rect x="19.7543%" y="789" width="0.5888%" height="15" fill="rgb(206,152,27)" fg:x="71562" fg:w="2133"/><text x="20.0043%" y="799.50"></text></g><g><title>PhaseIterGVN::optimize (2,233 samples, 0.62%)</title><rect x="19.7325%" y="805" width="0.6164%" height="15" fill="rgb(240,77,30)" fg:x="71483" fg:w="2233"/><text x="19.9825%" y="815.50"></text></g><g><title>PhaseIterGVN::transform_old (244 samples, 0.07%)</title><rect x="20.3591%" y="773" width="0.0674%" height="15" fill="rgb(231,5,3)" fg:x="73753" fg:w="244"/><text x="20.6091%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (254 samples, 0.07%)</title><rect x="20.3574%" y="789" width="0.0701%" height="15" fill="rgb(207,226,32)" fg:x="73747" fg:w="254"/><text x="20.6074%" y="799.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (79 samples, 0.02%)</title><rect x="20.4303%" y="789" width="0.0218%" height="15" fill="rgb(222,207,47)" fg:x="74011" fg:w="79"/><text x="20.6803%" y="799.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (379 samples, 0.10%)</title><rect x="20.3547%" y="805" width="0.1046%" height="15" fill="rgb(229,115,45)" fg:x="73737" fg:w="379"/><text x="20.6047%" y="815.50"></text></g><g><title>Compile::identify_useful_nodes (65 samples, 0.02%)</title><rect x="20.4681%" y="773" width="0.0179%" height="15" fill="rgb(224,191,6)" fg:x="74148" fg:w="65"/><text x="20.7181%" y="783.50"></text></g><g><title>Compile::remove_useless_nodes (40 samples, 0.01%)</title><rect x="20.4861%" y="773" width="0.0110%" height="15" fill="rgb(230,227,24)" fg:x="74213" fg:w="40"/><text x="20.7361%" y="783.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (138 samples, 0.04%)</title><rect x="20.4626%" y="789" width="0.0381%" height="15" fill="rgb(228,80,19)" fg:x="74128" fg:w="138"/><text x="20.7126%" y="799.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (151 samples, 0.04%)</title><rect x="20.4593%" y="805" width="0.0417%" height="15" fill="rgb(247,229,0)" fg:x="74116" fg:w="151"/><text x="20.7093%" y="815.50"></text></g><g><title>Compile::Optimize (16,272 samples, 4.49%)</title><rect x="16.0108%" y="821" width="4.4918%" height="15" fill="rgb(237,194,15)" fg:x="58001" fg:w="16272"/><text x="16.2608%" y="831.50">Compi..</text></g><g><title>Parse::do_field_access (41 samples, 0.01%)</title><rect x="20.5294%" y="677" width="0.0113%" height="15" fill="rgb(219,203,20)" fg:x="74370" fg:w="41"/><text x="20.7794%" y="687.50"></text></g><g><title>Parse::do_one_block (158 samples, 0.04%)</title><rect x="20.5087%" y="709" width="0.0436%" height="15" fill="rgb(234,128,8)" fg:x="74295" fg:w="158"/><text x="20.7587%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (148 samples, 0.04%)</title><rect x="20.5115%" y="693" width="0.0409%" height="15" fill="rgb(248,202,8)" fg:x="74305" fg:w="148"/><text x="20.7615%" y="703.50"></text></g><g><title>Parse::do_all_blocks (161 samples, 0.04%)</title><rect x="20.5081%" y="725" width="0.0444%" height="15" fill="rgb(206,104,37)" fg:x="74293" fg:w="161"/><text x="20.7581%" y="735.50"></text></g><g><title>ParseGenerator::generate (170 samples, 0.05%)</title><rect x="20.5081%" y="757" width="0.0469%" height="15" fill="rgb(223,8,27)" fg:x="74293" fg:w="170"/><text x="20.7581%" y="767.50"></text></g><g><title>Parse::Parse (170 samples, 0.05%)</title><rect x="20.5081%" y="741" width="0.0469%" height="15" fill="rgb(216,217,28)" fg:x="74293" fg:w="170"/><text x="20.7581%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (196 samples, 0.05%)</title><rect x="20.5043%" y="821" width="0.0541%" height="15" fill="rgb(249,199,1)" fg:x="74279" fg:w="196"/><text x="20.7543%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (196 samples, 0.05%)</title><rect x="20.5043%" y="805" width="0.0541%" height="15" fill="rgb(240,85,17)" fg:x="74279" fg:w="196"/><text x="20.7543%" y="815.50"></text></g><g><title>C2Compiler::compile_method (196 samples, 0.05%)</title><rect x="20.5043%" y="789" width="0.0541%" height="15" fill="rgb(206,108,45)" fg:x="74279" fg:w="196"/><text x="20.7543%" y="799.50"></text></g><g><title>Compile::Compile (196 samples, 0.05%)</title><rect x="20.5043%" y="773" width="0.0541%" height="15" fill="rgb(245,210,41)" fg:x="74279" fg:w="196"/><text x="20.7543%" y="783.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (50 samples, 0.01%)</title><rect x="20.5661%" y="645" width="0.0138%" height="15" fill="rgb(206,13,37)" fg:x="74503" fg:w="50"/><text x="20.8161%" y="655.50"></text></g><g><title>ciBytecodeStream::get_method (50 samples, 0.01%)</title><rect x="20.5661%" y="629" width="0.0138%" height="15" fill="rgb(250,61,18)" fg:x="74503" fg:w="50"/><text x="20.8161%" y="639.50"></text></g><g><title>ciEnv::get_method_by_index_impl (44 samples, 0.01%)</title><rect x="20.5678%" y="613" width="0.0121%" height="15" fill="rgb(235,172,48)" fg:x="74509" fg:w="44"/><text x="20.8178%" y="623.50"></text></g><g><title>CallGenerator::for_inline (83 samples, 0.02%)</title><rect x="20.5584%" y="773" width="0.0229%" height="15" fill="rgb(249,201,17)" fg:x="74475" fg:w="83"/><text x="20.8084%" y="783.50"></text></g><g><title>InlineTree::check_can_parse (83 samples, 0.02%)</title><rect x="20.5584%" y="757" width="0.0229%" height="15" fill="rgb(219,208,6)" fg:x="74475" fg:w="83"/><text x="20.8084%" y="767.50"></text></g><g><title>ciMethod::get_flow_analysis (83 samples, 0.02%)</title><rect x="20.5584%" y="741" width="0.0229%" height="15" fill="rgb(248,31,23)" fg:x="74475" fg:w="83"/><text x="20.8084%" y="751.50"></text></g><g><title>ciTypeFlow::do_flow (83 samples, 0.02%)</title><rect x="20.5584%" y="725" width="0.0229%" height="15" fill="rgb(245,15,42)" fg:x="74475" fg:w="83"/><text x="20.8084%" y="735.50"></text></g><g><title>ciTypeFlow::flow_types (83 samples, 0.02%)</title><rect x="20.5584%" y="709" width="0.0229%" height="15" fill="rgb(222,217,39)" fg:x="74475" fg:w="83"/><text x="20.8084%" y="719.50"></text></g><g><title>ciTypeFlow::df_flow_types (82 samples, 0.02%)</title><rect x="20.5587%" y="693" width="0.0226%" height="15" fill="rgb(210,219,27)" fg:x="74476" fg:w="82"/><text x="20.8087%" y="703.50"></text></g><g><title>ciTypeFlow::flow_block (82 samples, 0.02%)</title><rect x="20.5587%" y="677" width="0.0226%" height="15" fill="rgb(252,166,36)" fg:x="74476" fg:w="82"/><text x="20.8087%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (82 samples, 0.02%)</title><rect x="20.5587%" y="661" width="0.0226%" height="15" fill="rgb(245,132,34)" fg:x="74476" fg:w="82"/><text x="20.8087%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (67 samples, 0.02%)</title><rect x="20.5984%" y="661" width="0.0185%" height="15" fill="rgb(236,54,3)" fg:x="74620" fg:w="67"/><text x="20.8484%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (37 samples, 0.01%)</title><rect x="20.6067%" y="645" width="0.0102%" height="15" fill="rgb(241,173,43)" fg:x="74650" fg:w="37"/><text x="20.8567%" y="655.50"></text></g><g><title>Compile::call_generator (91 samples, 0.03%)</title><rect x="20.5959%" y="677" width="0.0251%" height="15" fill="rgb(215,190,9)" fg:x="74611" fg:w="91"/><text x="20.8459%" y="687.50"></text></g><g><title>Parse::do_one_block (129 samples, 0.04%)</title><rect x="20.6509%" y="629" width="0.0356%" height="15" fill="rgb(242,101,16)" fg:x="74810" fg:w="129"/><text x="20.9009%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (123 samples, 0.03%)</title><rect x="20.6525%" y="613" width="0.0340%" height="15" fill="rgb(223,190,21)" fg:x="74816" fg:w="123"/><text x="20.9025%" y="623.50"></text></g><g><title>Parse::do_all_blocks (142 samples, 0.04%)</title><rect x="20.6495%" y="645" width="0.0392%" height="15" fill="rgb(215,228,25)" fg:x="74805" fg:w="142"/><text x="20.8995%" y="655.50"></text></g><g><title>ParseGenerator::generate (228 samples, 0.06%)</title><rect x="20.6373%" y="677" width="0.0629%" height="15" fill="rgb(225,36,22)" fg:x="74761" fg:w="228"/><text x="20.8873%" y="687.50"></text></g><g><title>Parse::Parse (228 samples, 0.06%)</title><rect x="20.6373%" y="661" width="0.0629%" height="15" fill="rgb(251,106,46)" fg:x="74761" fg:w="228"/><text x="20.8873%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (56 samples, 0.02%)</title><rect x="20.7003%" y="677" width="0.0155%" height="15" fill="rgb(208,90,1)" fg:x="74989" fg:w="56"/><text x="20.9503%" y="687.50"></text></g><g><title>Parse::do_call (459 samples, 0.13%)</title><rect x="20.5959%" y="693" width="0.1267%" height="15" fill="rgb(243,10,4)" fg:x="74611" fg:w="459"/><text x="20.8459%" y="703.50"></text></g><g><title>Parse::do_field_access (62 samples, 0.02%)</title><rect x="20.7265%" y="693" width="0.0171%" height="15" fill="rgb(212,137,27)" fg:x="75084" fg:w="62"/><text x="20.9765%" y="703.50"></text></g><g><title>Parse::do_one_block (649 samples, 0.18%)</title><rect x="20.5838%" y="725" width="0.1792%" height="15" fill="rgb(231,220,49)" fg:x="74567" fg:w="649"/><text x="20.8338%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (645 samples, 0.18%)</title><rect x="20.5849%" y="709" width="0.1780%" height="15" fill="rgb(237,96,20)" fg:x="74571" fg:w="645"/><text x="20.8349%" y="719.50"></text></g><g><title>Parse::do_all_blocks (652 samples, 0.18%)</title><rect x="20.5832%" y="741" width="0.1800%" height="15" fill="rgb(239,229,30)" fg:x="74565" fg:w="652"/><text x="20.8332%" y="751.50"></text></g><g><title>ParseGenerator::generate (659 samples, 0.18%)</title><rect x="20.5832%" y="773" width="0.1819%" height="15" fill="rgb(219,65,33)" fg:x="74565" fg:w="659"/><text x="20.8332%" y="783.50"></text></g><g><title>Parse::Parse (659 samples, 0.18%)</title><rect x="20.5832%" y="757" width="0.1819%" height="15" fill="rgb(243,134,7)" fg:x="74565" fg:w="659"/><text x="20.8332%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (780 samples, 0.22%)</title><rect x="20.5584%" y="821" width="0.2153%" height="15" fill="rgb(216,177,54)" fg:x="74475" fg:w="780"/><text x="20.8084%" y="831.50"></text></g><g><title>C2Compiler::compile_method (780 samples, 0.22%)</title><rect x="20.5584%" y="805" width="0.2153%" height="15" fill="rgb(211,160,20)" fg:x="74475" fg:w="780"/><text x="20.8084%" y="815.50"></text></g><g><title>Compile::Compile (780 samples, 0.22%)</title><rect x="20.5584%" y="789" width="0.2153%" height="15" fill="rgb(239,85,39)" fg:x="74475" fg:w="780"/><text x="20.8084%" y="799.50"></text></g><g><title>Parse::do_one_block (59 samples, 0.02%)</title><rect x="20.7944%" y="693" width="0.0163%" height="15" fill="rgb(232,125,22)" fg:x="75330" fg:w="59"/><text x="21.0444%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.02%)</title><rect x="20.7955%" y="677" width="0.0152%" height="15" fill="rgb(244,57,34)" fg:x="75334" fg:w="55"/><text x="21.0455%" y="687.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.02%)</title><rect x="20.7938%" y="709" width="0.0174%" height="15" fill="rgb(214,203,32)" fg:x="75328" fg:w="63"/><text x="21.0438%" y="719.50"></text></g><g><title>ParseGenerator::generate (72 samples, 0.02%)</title><rect x="20.7938%" y="741" width="0.0199%" height="15" fill="rgb(207,58,43)" fg:x="75328" fg:w="72"/><text x="21.0438%" y="751.50"></text></g><g><title>Parse::Parse (72 samples, 0.02%)</title><rect x="20.7938%" y="725" width="0.0199%" height="15" fill="rgb(215,193,15)" fg:x="75328" fg:w="72"/><text x="21.0438%" y="735.50"></text></g><g><title>JavaThread::thread_main_inner (92 samples, 0.03%)</title><rect x="20.7894%" y="821" width="0.0254%" height="15" fill="rgb(232,15,44)" fg:x="75312" fg:w="92"/><text x="21.0394%" y="831.50"></text></g><g><title>CompileBroker::compiler_thread_loop (92 samples, 0.03%)</title><rect x="20.7894%" y="805" width="0.0254%" height="15" fill="rgb(212,3,48)" fg:x="75312" fg:w="92"/><text x="21.0394%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (92 samples, 0.03%)</title><rect x="20.7894%" y="789" width="0.0254%" height="15" fill="rgb(218,128,7)" fg:x="75312" fg:w="92"/><text x="21.0394%" y="799.50"></text></g><g><title>C2Compiler::compile_method (92 samples, 0.03%)</title><rect x="20.7894%" y="773" width="0.0254%" height="15" fill="rgb(226,216,39)" fg:x="75312" fg:w="92"/><text x="21.0394%" y="783.50"></text></g><g><title>Compile::Compile (92 samples, 0.03%)</title><rect x="20.7894%" y="757" width="0.0254%" height="15" fill="rgb(243,47,51)" fg:x="75312" fg:w="92"/><text x="21.0394%" y="767.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="20.8181%" y="741" width="0.0105%" height="15" fill="rgb(241,183,40)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="751.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="20.8181%" y="725" width="0.0105%" height="15" fill="rgb(231,217,32)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="735.50"></text></g><g><title>Parse::do_all_blocks (38 samples, 0.01%)</title><rect x="20.8181%" y="709" width="0.0105%" height="15" fill="rgb(229,61,38)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="719.50"></text></g><g><title>Parse::do_one_block (38 samples, 0.01%)</title><rect x="20.8181%" y="693" width="0.0105%" height="15" fill="rgb(225,210,5)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.01%)</title><rect x="20.8181%" y="677" width="0.0105%" height="15" fill="rgb(231,79,45)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="687.50"></text></g><g><title>Parse::do_call (38 samples, 0.01%)</title><rect x="20.8181%" y="661" width="0.0105%" height="15" fill="rgb(224,100,7)" fg:x="75416" fg:w="38"/><text x="21.0681%" y="671.50"></text></g><g><title>Parse::Parse (44 samples, 0.01%)</title><rect x="20.8181%" y="821" width="0.0121%" height="15" fill="rgb(241,198,18)" fg:x="75416" fg:w="44"/><text x="21.0681%" y="831.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.01%)</title><rect x="20.8181%" y="805" width="0.0121%" height="15" fill="rgb(252,97,53)" fg:x="75416" fg:w="44"/><text x="21.0681%" y="815.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.01%)</title><rect x="20.8181%" y="789" width="0.0121%" height="15" fill="rgb(220,88,7)" fg:x="75416" fg:w="44"/><text x="21.0681%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.01%)</title><rect x="20.8181%" y="773" width="0.0121%" height="15" fill="rgb(213,176,14)" fg:x="75416" fg:w="44"/><text x="21.0681%" y="783.50"></text></g><g><title>Parse::do_call (44 samples, 0.01%)</title><rect x="20.8181%" y="757" width="0.0121%" height="15" fill="rgb(246,73,7)" fg:x="75416" fg:w="44"/><text x="21.0681%" y="767.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.01%)</title><rect x="20.8303%" y="757" width="0.0102%" height="15" fill="rgb(245,64,36)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="767.50"></text></g><g><title>Parse::Parse (37 samples, 0.01%)</title><rect x="20.8303%" y="741" width="0.0102%" height="15" fill="rgb(245,80,10)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="751.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.01%)</title><rect x="20.8303%" y="725" width="0.0102%" height="15" fill="rgb(232,107,50)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="735.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.01%)</title><rect x="20.8303%" y="709" width="0.0102%" height="15" fill="rgb(253,3,0)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.01%)</title><rect x="20.8303%" y="693" width="0.0102%" height="15" fill="rgb(212,99,53)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="703.50"></text></g><g><title>Parse::do_call (37 samples, 0.01%)</title><rect x="20.8303%" y="677" width="0.0102%" height="15" fill="rgb(249,111,54)" fg:x="75460" fg:w="37"/><text x="21.0803%" y="687.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.01%)</title><rect x="20.8303%" y="821" width="0.0121%" height="15" fill="rgb(249,55,30)" fg:x="75460" fg:w="44"/><text x="21.0803%" y="831.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.01%)</title><rect x="20.8303%" y="805" width="0.0121%" height="15" fill="rgb(237,47,42)" fg:x="75460" fg:w="44"/><text x="21.0803%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.01%)</title><rect x="20.8303%" y="789" width="0.0121%" height="15" fill="rgb(211,20,18)" fg:x="75460" fg:w="44"/><text x="21.0803%" y="799.50"></text></g><g><title>Parse::do_call (44 samples, 0.01%)</title><rect x="20.8303%" y="773" width="0.0121%" height="15" fill="rgb(231,203,46)" fg:x="75460" fg:w="44"/><text x="21.0803%" y="783.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="20.8424%" y="517" width="0.0116%" height="15" fill="rgb(237,142,3)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="527.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="20.8424%" y="501" width="0.0116%" height="15" fill="rgb(241,107,1)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="511.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="20.8424%" y="485" width="0.0116%" height="15" fill="rgb(229,83,13)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="495.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="20.8424%" y="469" width="0.0116%" height="15" fill="rgb(241,91,40)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="20.8424%" y="453" width="0.0116%" height="15" fill="rgb(225,3,45)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="463.50"></text></g><g><title>Parse::do_call (42 samples, 0.01%)</title><rect x="20.8424%" y="437" width="0.0116%" height="15" fill="rgb(244,223,14)" fg:x="75504" fg:w="42"/><text x="21.0924%" y="447.50"></text></g><g><title>ParseGenerator::generate (47 samples, 0.01%)</title><rect x="20.8424%" y="613" width="0.0130%" height="15" fill="rgb(224,124,37)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="623.50"></text></g><g><title>Parse::Parse (47 samples, 0.01%)</title><rect x="20.8424%" y="597" width="0.0130%" height="15" fill="rgb(251,171,30)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="607.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.01%)</title><rect x="20.8424%" y="581" width="0.0130%" height="15" fill="rgb(236,46,54)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="591.50"></text></g><g><title>Parse::do_one_block (47 samples, 0.01%)</title><rect x="20.8424%" y="565" width="0.0130%" height="15" fill="rgb(245,213,5)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (47 samples, 0.01%)</title><rect x="20.8424%" y="549" width="0.0130%" height="15" fill="rgb(230,144,27)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="559.50"></text></g><g><title>Parse::do_call (47 samples, 0.01%)</title><rect x="20.8424%" y="533" width="0.0130%" height="15" fill="rgb(220,86,6)" fg:x="75504" fg:w="47"/><text x="21.0924%" y="543.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.02%)</title><rect x="20.8424%" y="709" width="0.0157%" height="15" fill="rgb(240,20,13)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="719.50"></text></g><g><title>Parse::Parse (57 samples, 0.02%)</title><rect x="20.8424%" y="693" width="0.0157%" height="15" fill="rgb(217,89,34)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="703.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.02%)</title><rect x="20.8424%" y="677" width="0.0157%" height="15" fill="rgb(229,13,5)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="687.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.02%)</title><rect x="20.8424%" y="661" width="0.0157%" height="15" fill="rgb(244,67,35)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.02%)</title><rect x="20.8424%" y="645" width="0.0157%" height="15" fill="rgb(221,40,2)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="655.50"></text></g><g><title>Parse::do_call (57 samples, 0.02%)</title><rect x="20.8424%" y="629" width="0.0157%" height="15" fill="rgb(237,157,21)" fg:x="75504" fg:w="57"/><text x="21.0924%" y="639.50"></text></g><g><title>ParseGenerator::generate (66 samples, 0.02%)</title><rect x="20.8424%" y="805" width="0.0182%" height="15" fill="rgb(222,94,11)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="815.50"></text></g><g><title>Parse::Parse (66 samples, 0.02%)</title><rect x="20.8424%" y="789" width="0.0182%" height="15" fill="rgb(249,113,6)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="799.50"></text></g><g><title>Parse::do_all_blocks (66 samples, 0.02%)</title><rect x="20.8424%" y="773" width="0.0182%" height="15" fill="rgb(238,137,36)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="783.50"></text></g><g><title>Parse::do_one_block (66 samples, 0.02%)</title><rect x="20.8424%" y="757" width="0.0182%" height="15" fill="rgb(210,102,26)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (66 samples, 0.02%)</title><rect x="20.8424%" y="741" width="0.0182%" height="15" fill="rgb(218,30,30)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="751.50"></text></g><g><title>Parse::do_call (66 samples, 0.02%)</title><rect x="20.8424%" y="725" width="0.0182%" height="15" fill="rgb(214,67,26)" fg:x="75504" fg:w="66"/><text x="21.0924%" y="735.50"></text></g><g><title>Parse::do_call (83 samples, 0.02%)</title><rect x="20.8424%" y="821" width="0.0229%" height="15" fill="rgb(251,9,53)" fg:x="75504" fg:w="83"/><text x="21.0924%" y="831.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="20.8653%" y="821" width="0.0116%" height="15" fill="rgb(228,204,25)" fg:x="75587" fg:w="42"/><text x="21.1153%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.01%)</title><rect x="20.8656%" y="805" width="0.0113%" height="15" fill="rgb(207,153,8)" fg:x="75588" fg:w="41"/><text x="21.1156%" y="815.50"></text></g><g><title>Parse::do_call (41 samples, 0.01%)</title><rect x="20.8656%" y="789" width="0.0113%" height="15" fill="rgb(242,9,16)" fg:x="75588" fg:w="41"/><text x="21.1156%" y="799.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.01%)</title><rect x="20.8772%" y="789" width="0.0108%" height="15" fill="rgb(217,211,10)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="799.50"></text></g><g><title>Parse::Parse (39 samples, 0.01%)</title><rect x="20.8772%" y="773" width="0.0108%" height="15" fill="rgb(219,228,52)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="783.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.01%)</title><rect x="20.8772%" y="757" width="0.0108%" height="15" fill="rgb(231,92,29)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="767.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.01%)</title><rect x="20.8772%" y="741" width="0.0108%" height="15" fill="rgb(232,8,23)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.01%)</title><rect x="20.8772%" y="725" width="0.0108%" height="15" fill="rgb(216,211,34)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="735.50"></text></g><g><title>Parse::do_call (39 samples, 0.01%)</title><rect x="20.8772%" y="709" width="0.0108%" height="15" fill="rgb(236,151,0)" fg:x="75630" fg:w="39"/><text x="21.1272%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (47 samples, 0.01%)</title><rect x="20.8769%" y="821" width="0.0130%" height="15" fill="rgb(209,168,3)" fg:x="75629" fg:w="47"/><text x="21.1269%" y="831.50"></text></g><g><title>Parse::do_call (47 samples, 0.01%)</title><rect x="20.8769%" y="805" width="0.0130%" height="15" fill="rgb(208,129,28)" fg:x="75629" fg:w="47"/><text x="21.1269%" y="815.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.01%)</title><rect x="20.8996%" y="53" width="0.0102%" height="15" fill="rgb(229,78,22)" fg:x="75711" fg:w="37"/><text x="21.1496%" y="63.50"></text></g><g><title>Parse::Parse (37 samples, 0.01%)</title><rect x="20.8996%" y="37" width="0.0102%" height="15" fill="rgb(228,187,13)" fg:x="75711" fg:w="37"/><text x="21.1496%" y="47.50"></text></g><g><title>Parse::do_call (51 samples, 0.01%)</title><rect x="20.8960%" y="69" width="0.0141%" height="15" fill="rgb(240,119,24)" fg:x="75698" fg:w="51"/><text x="21.1460%" y="79.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.02%)</title><rect x="20.8943%" y="149" width="0.0196%" height="15" fill="rgb(209,194,42)" fg:x="75692" fg:w="71"/><text x="21.1443%" y="159.50"></text></g><g><title>Parse::Parse (71 samples, 0.02%)</title><rect x="20.8943%" y="133" width="0.0196%" height="15" fill="rgb(247,200,46)" fg:x="75692" fg:w="71"/><text x="21.1443%" y="143.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.02%)</title><rect x="20.8949%" y="117" width="0.0190%" height="15" fill="rgb(218,76,16)" fg:x="75694" fg:w="69"/><text x="21.1449%" y="127.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.02%)</title><rect x="20.8949%" y="101" width="0.0190%" height="15" fill="rgb(225,21,48)" fg:x="75694" fg:w="69"/><text x="21.1449%" y="111.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.02%)</title><rect x="20.8949%" y="85" width="0.0190%" height="15" fill="rgb(239,223,50)" fg:x="75694" fg:w="69"/><text x="21.1449%" y="95.50"></text></g><g><title>Parse::do_call (78 samples, 0.02%)</title><rect x="20.8929%" y="165" width="0.0215%" height="15" fill="rgb(244,45,21)" fg:x="75687" fg:w="78"/><text x="21.1429%" y="175.50"></text></g><g><title>ParseGenerator::generate (80 samples, 0.02%)</title><rect x="20.8929%" y="245" width="0.0221%" height="15" fill="rgb(232,33,43)" fg:x="75687" fg:w="80"/><text x="21.1429%" y="255.50"></text></g><g><title>Parse::Parse (80 samples, 0.02%)</title><rect x="20.8929%" y="229" width="0.0221%" height="15" fill="rgb(209,8,3)" fg:x="75687" fg:w="80"/><text x="21.1429%" y="239.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.02%)</title><rect x="20.8929%" y="213" width="0.0221%" height="15" fill="rgb(214,25,53)" fg:x="75687" fg:w="80"/><text x="21.1429%" y="223.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.02%)</title><rect x="20.8929%" y="197" width="0.0221%" height="15" fill="rgb(254,186,54)" fg:x="75687" fg:w="80"/><text x="21.1429%" y="207.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.02%)</title><rect x="20.8929%" y="181" width="0.0221%" height="15" fill="rgb(208,174,49)" fg:x="75687" fg:w="80"/><text x="21.1429%" y="191.50"></text></g><g><title>ParseGenerator::generate (98 samples, 0.03%)</title><rect x="20.8899%" y="341" width="0.0271%" height="15" fill="rgb(233,191,51)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="351.50"></text></g><g><title>Parse::Parse (98 samples, 0.03%)</title><rect x="20.8899%" y="325" width="0.0271%" height="15" fill="rgb(222,134,10)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="335.50"></text></g><g><title>Parse::do_all_blocks (98 samples, 0.03%)</title><rect x="20.8899%" y="309" width="0.0271%" height="15" fill="rgb(230,226,20)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="319.50"></text></g><g><title>Parse::do_one_block (98 samples, 0.03%)</title><rect x="20.8899%" y="293" width="0.0271%" height="15" fill="rgb(251,111,25)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (98 samples, 0.03%)</title><rect x="20.8899%" y="277" width="0.0271%" height="15" fill="rgb(224,40,46)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="287.50"></text></g><g><title>Parse::do_call (98 samples, 0.03%)</title><rect x="20.8899%" y="261" width="0.0271%" height="15" fill="rgb(236,108,47)" fg:x="75676" fg:w="98"/><text x="21.1399%" y="271.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.03%)</title><rect x="20.8899%" y="437" width="0.0293%" height="15" fill="rgb(234,93,0)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="447.50"></text></g><g><title>Parse::Parse (106 samples, 0.03%)</title><rect x="20.8899%" y="421" width="0.0293%" height="15" fill="rgb(224,213,32)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="431.50"></text></g><g><title>Parse::do_all_blocks (106 samples, 0.03%)</title><rect x="20.8899%" y="405" width="0.0293%" height="15" fill="rgb(251,11,48)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="415.50"></text></g><g><title>Parse::do_one_block (106 samples, 0.03%)</title><rect x="20.8899%" y="389" width="0.0293%" height="15" fill="rgb(236,173,5)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (106 samples, 0.03%)</title><rect x="20.8899%" y="373" width="0.0293%" height="15" fill="rgb(230,95,12)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="383.50"></text></g><g><title>Parse::do_call (106 samples, 0.03%)</title><rect x="20.8899%" y="357" width="0.0293%" height="15" fill="rgb(232,209,1)" fg:x="75676" fg:w="106"/><text x="21.1399%" y="367.50"></text></g><g><title>ParseGenerator::generate (127 samples, 0.04%)</title><rect x="20.8899%" y="533" width="0.0351%" height="15" fill="rgb(232,6,1)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="543.50"></text></g><g><title>Parse::Parse (127 samples, 0.04%)</title><rect x="20.8899%" y="517" width="0.0351%" height="15" fill="rgb(210,224,50)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="527.50"></text></g><g><title>Parse::do_all_blocks (127 samples, 0.04%)</title><rect x="20.8899%" y="501" width="0.0351%" height="15" fill="rgb(228,127,35)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="511.50"></text></g><g><title>Parse::do_one_block (127 samples, 0.04%)</title><rect x="20.8899%" y="485" width="0.0351%" height="15" fill="rgb(245,102,45)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (127 samples, 0.04%)</title><rect x="20.8899%" y="469" width="0.0351%" height="15" fill="rgb(214,1,49)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="479.50"></text></g><g><title>Parse::do_call (127 samples, 0.04%)</title><rect x="20.8899%" y="453" width="0.0351%" height="15" fill="rgb(226,163,40)" fg:x="75676" fg:w="127"/><text x="21.1399%" y="463.50"></text></g><g><title>ParseGenerator::generate (148 samples, 0.04%)</title><rect x="20.8899%" y="629" width="0.0409%" height="15" fill="rgb(239,212,28)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="639.50"></text></g><g><title>Parse::Parse (148 samples, 0.04%)</title><rect x="20.8899%" y="613" width="0.0409%" height="15" fill="rgb(220,20,13)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="623.50"></text></g><g><title>Parse::do_all_blocks (148 samples, 0.04%)</title><rect x="20.8899%" y="597" width="0.0409%" height="15" fill="rgb(210,164,35)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="607.50"></text></g><g><title>Parse::do_one_block (148 samples, 0.04%)</title><rect x="20.8899%" y="581" width="0.0409%" height="15" fill="rgb(248,109,41)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (148 samples, 0.04%)</title><rect x="20.8899%" y="565" width="0.0409%" height="15" fill="rgb(238,23,50)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="575.50"></text></g><g><title>Parse::do_call (148 samples, 0.04%)</title><rect x="20.8899%" y="549" width="0.0409%" height="15" fill="rgb(211,48,49)" fg:x="75676" fg:w="148"/><text x="21.1399%" y="559.50"></text></g><g><title>ParseGenerator::generate (177 samples, 0.05%)</title><rect x="20.8899%" y="725" width="0.0489%" height="15" fill="rgb(223,36,21)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="735.50"></text></g><g><title>Parse::Parse (177 samples, 0.05%)</title><rect x="20.8899%" y="709" width="0.0489%" height="15" fill="rgb(207,123,46)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="719.50"></text></g><g><title>Parse::do_all_blocks (177 samples, 0.05%)</title><rect x="20.8899%" y="693" width="0.0489%" height="15" fill="rgb(240,218,32)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="703.50"></text></g><g><title>Parse::do_one_block (177 samples, 0.05%)</title><rect x="20.8899%" y="677" width="0.0489%" height="15" fill="rgb(252,5,43)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (177 samples, 0.05%)</title><rect x="20.8899%" y="661" width="0.0489%" height="15" fill="rgb(252,84,19)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="671.50"></text></g><g><title>Parse::do_call (177 samples, 0.05%)</title><rect x="20.8899%" y="645" width="0.0489%" height="15" fill="rgb(243,152,39)" fg:x="75676" fg:w="177"/><text x="21.1399%" y="655.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.01%)</title><rect x="20.9388%" y="709" width="0.0102%" height="15" fill="rgb(234,160,15)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="719.50"></text></g><g><title>Parse::Parse (37 samples, 0.01%)</title><rect x="20.9388%" y="693" width="0.0102%" height="15" fill="rgb(237,34,20)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="703.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.01%)</title><rect x="20.9388%" y="677" width="0.0102%" height="15" fill="rgb(229,97,13)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="687.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.01%)</title><rect x="20.9388%" y="661" width="0.0102%" height="15" fill="rgb(234,71,50)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.01%)</title><rect x="20.9388%" y="645" width="0.0102%" height="15" fill="rgb(253,155,4)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="655.50"></text></g><g><title>Parse::do_call (37 samples, 0.01%)</title><rect x="20.9388%" y="629" width="0.0102%" height="15" fill="rgb(222,185,37)" fg:x="75853" fg:w="37"/><text x="21.1888%" y="639.50"></text></g><g><title>ParseGenerator::generate (220 samples, 0.06%)</title><rect x="20.8899%" y="821" width="0.0607%" height="15" fill="rgb(251,177,13)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="831.50"></text></g><g><title>Parse::Parse (220 samples, 0.06%)</title><rect x="20.8899%" y="805" width="0.0607%" height="15" fill="rgb(250,179,40)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="815.50"></text></g><g><title>Parse::do_all_blocks (220 samples, 0.06%)</title><rect x="20.8899%" y="789" width="0.0607%" height="15" fill="rgb(242,44,2)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="799.50"></text></g><g><title>Parse::do_one_block (220 samples, 0.06%)</title><rect x="20.8899%" y="773" width="0.0607%" height="15" fill="rgb(216,177,13)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (220 samples, 0.06%)</title><rect x="20.8899%" y="757" width="0.0607%" height="15" fill="rgb(216,106,43)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="767.50"></text></g><g><title>Parse::do_call (220 samples, 0.06%)</title><rect x="20.8899%" y="741" width="0.0607%" height="15" fill="rgb(216,183,2)" fg:x="75676" fg:w="220"/><text x="21.1399%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (43 samples, 0.01%)</title><rect x="20.9388%" y="725" width="0.0119%" height="15" fill="rgb(249,75,3)" fg:x="75853" fg:w="43"/><text x="21.1888%" y="735.50"></text></g><g><title>Thread::call_run (59 samples, 0.02%)</title><rect x="20.9647%" y="821" width="0.0163%" height="15" fill="rgb(219,67,39)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (59 samples, 0.02%)</title><rect x="20.9647%" y="805" width="0.0163%" height="15" fill="rgb(253,228,2)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (59 samples, 0.02%)</title><rect x="20.9647%" y="789" width="0.0163%" height="15" fill="rgb(235,138,27)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (59 samples, 0.02%)</title><rect x="20.9647%" y="773" width="0.0163%" height="15" fill="rgb(236,97,51)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="783.50"></text></g><g><title>C2Compiler::compile_method (59 samples, 0.02%)</title><rect x="20.9647%" y="757" width="0.0163%" height="15" fill="rgb(240,80,30)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="767.50"></text></g><g><title>Compile::Compile (59 samples, 0.02%)</title><rect x="20.9647%" y="741" width="0.0163%" height="15" fill="rgb(230,178,19)" fg:x="75947" fg:w="59"/><text x="21.2147%" y="751.50"></text></g><g><title>_dl_update_slotinfo (56 samples, 0.02%)</title><rect x="20.9849%" y="821" width="0.0155%" height="15" fill="rgb(210,190,27)" fg:x="76020" fg:w="56"/><text x="21.2349%" y="831.50"></text></g><g><title>start_thread (76 samples, 0.02%)</title><rect x="21.0056%" y="821" width="0.0210%" height="15" fill="rgb(222,107,31)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="831.50"></text></g><g><title>thread_native_entry (76 samples, 0.02%)</title><rect x="21.0056%" y="805" width="0.0210%" height="15" fill="rgb(216,127,34)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="815.50"></text></g><g><title>Thread::call_run (76 samples, 0.02%)</title><rect x="21.0056%" y="789" width="0.0210%" height="15" fill="rgb(234,116,52)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (76 samples, 0.02%)</title><rect x="21.0056%" y="773" width="0.0210%" height="15" fill="rgb(222,124,15)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (76 samples, 0.02%)</title><rect x="21.0056%" y="757" width="0.0210%" height="15" fill="rgb(231,179,28)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (76 samples, 0.02%)</title><rect x="21.0056%" y="741" width="0.0210%" height="15" fill="rgb(226,93,45)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="751.50"></text></g><g><title>C2Compiler::compile_method (76 samples, 0.02%)</title><rect x="21.0056%" y="725" width="0.0210%" height="15" fill="rgb(215,8,51)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="735.50"></text></g><g><title>Compile::Compile (76 samples, 0.02%)</title><rect x="21.0056%" y="709" width="0.0210%" height="15" fill="rgb(223,106,5)" fg:x="76095" fg:w="76"/><text x="21.2556%" y="719.50"></text></g><g><title>[unknown] (59,442 samples, 16.41%)</title><rect x="4.6248%" y="837" width="16.4086%" height="15" fill="rgb(250,191,5)" fg:x="16754" fg:w="59442"/><text x="4.8748%" y="847.50">[unknown]</text></g><g><title>Dict::Insert (68 samples, 0.02%)</title><rect x="21.0597%" y="661" width="0.0188%" height="15" fill="rgb(242,132,44)" fg:x="76291" fg:w="68"/><text x="21.3097%" y="671.50"></text></g><g><title>CompileWrapper::CompileWrapper (90 samples, 0.02%)</title><rect x="21.0580%" y="693" width="0.0248%" height="15" fill="rgb(251,152,29)" fg:x="76285" fg:w="90"/><text x="21.3080%" y="703.50"></text></g><g><title>Type::Initialize (89 samples, 0.02%)</title><rect x="21.0583%" y="677" width="0.0246%" height="15" fill="rgb(218,179,5)" fg:x="76286" fg:w="89"/><text x="21.3083%" y="687.50"></text></g><g><title>Compile::identify_useful_nodes (157 samples, 0.04%)</title><rect x="21.0967%" y="677" width="0.0433%" height="15" fill="rgb(227,67,19)" fg:x="76425" fg:w="157"/><text x="21.3467%" y="687.50"></text></g><g><title>Compile::remove_useless_nodes (171 samples, 0.05%)</title><rect x="21.1400%" y="677" width="0.0472%" height="15" fill="rgb(233,119,31)" fg:x="76582" fg:w="171"/><text x="21.3900%" y="687.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (403 samples, 0.11%)</title><rect x="21.0870%" y="693" width="0.1112%" height="15" fill="rgb(241,120,22)" fg:x="76390" fg:w="403"/><text x="21.3370%" y="703.50"></text></g><g><title>C2Compiler::compile_method (634 samples, 0.18%)</title><rect x="21.0384%" y="725" width="0.1750%" height="15" fill="rgb(224,102,30)" fg:x="76214" fg:w="634"/><text x="21.2884%" y="735.50"></text></g><g><title>Compile::Compile (626 samples, 0.17%)</title><rect x="21.0406%" y="709" width="0.1728%" height="15" fill="rgb(210,164,37)" fg:x="76222" fg:w="626"/><text x="21.2906%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (758 samples, 0.21%)</title><rect x="21.0373%" y="741" width="0.2092%" height="15" fill="rgb(226,191,16)" fg:x="76210" fg:w="758"/><text x="21.2873%" y="751.50"></text></g><g><title>finish_task_switch (62 samples, 0.02%)</title><rect x="21.2758%" y="501" width="0.0171%" height="15" fill="rgb(214,40,45)" fg:x="77074" fg:w="62"/><text x="21.5258%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (60 samples, 0.02%)</title><rect x="21.2764%" y="485" width="0.0166%" height="15" fill="rgb(244,29,26)" fg:x="77076" fg:w="60"/><text x="21.5264%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.02%)</title><rect x="21.2769%" y="469" width="0.0160%" height="15" fill="rgb(216,16,5)" fg:x="77078" fg:w="58"/><text x="21.5269%" y="479.50"></text></g><g><title>native_write_msr (58 samples, 0.02%)</title><rect x="21.2769%" y="453" width="0.0160%" height="15" fill="rgb(249,76,35)" fg:x="77078" fg:w="58"/><text x="21.5269%" y="463.50"></text></g><g><title>futex_wait_queue_me (106 samples, 0.03%)</title><rect x="21.2673%" y="549" width="0.0293%" height="15" fill="rgb(207,11,44)" fg:x="77043" fg:w="106"/><text x="21.5173%" y="559.50"></text></g><g><title>schedule (92 samples, 0.03%)</title><rect x="21.2711%" y="533" width="0.0254%" height="15" fill="rgb(228,190,49)" fg:x="77057" fg:w="92"/><text x="21.5211%" y="543.50"></text></g><g><title>__schedule (91 samples, 0.03%)</title><rect x="21.2714%" y="517" width="0.0251%" height="15" fill="rgb(214,173,12)" fg:x="77058" fg:w="91"/><text x="21.5214%" y="527.50"></text></g><g><title>do_futex (117 samples, 0.03%)</title><rect x="21.2664%" y="581" width="0.0323%" height="15" fill="rgb(218,26,35)" fg:x="77040" fg:w="117"/><text x="21.5164%" y="591.50"></text></g><g><title>futex_wait (116 samples, 0.03%)</title><rect x="21.2667%" y="565" width="0.0320%" height="15" fill="rgb(220,200,19)" fg:x="77041" fg:w="116"/><text x="21.5167%" y="575.50"></text></g><g><title>do_syscall_64 (119 samples, 0.03%)</title><rect x="21.2662%" y="613" width="0.0328%" height="15" fill="rgb(239,95,49)" fg:x="77039" fg:w="119"/><text x="21.5162%" y="623.50"></text></g><g><title>__x64_sys_futex (119 samples, 0.03%)</title><rect x="21.2662%" y="597" width="0.0328%" height="15" fill="rgb(235,85,53)" fg:x="77039" fg:w="119"/><text x="21.5162%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.03%)</title><rect x="21.2659%" y="629" width="0.0340%" height="15" fill="rgb(233,133,31)" fg:x="77038" fg:w="123"/><text x="21.5159%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (132 samples, 0.04%)</title><rect x="21.2642%" y="677" width="0.0364%" height="15" fill="rgb(218,25,20)" fg:x="77032" fg:w="132"/><text x="21.5142%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (132 samples, 0.04%)</title><rect x="21.2642%" y="661" width="0.0364%" height="15" fill="rgb(252,210,38)" fg:x="77032" fg:w="132"/><text x="21.5142%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (129 samples, 0.04%)</title><rect x="21.2651%" y="645" width="0.0356%" height="15" fill="rgb(242,134,21)" fg:x="77035" fg:w="129"/><text x="21.5151%" y="655.50"></text></g><g><title>os::PlatformEvent::park (147 samples, 0.04%)</title><rect x="21.2631%" y="693" width="0.0406%" height="15" fill="rgb(213,28,48)" fg:x="77028" fg:w="147"/><text x="21.5131%" y="703.50"></text></g><g><title>Monitor::IWait (188 samples, 0.05%)</title><rect x="21.2526%" y="709" width="0.0519%" height="15" fill="rgb(250,196,2)" fg:x="76990" fg:w="188"/><text x="21.5026%" y="719.50"></text></g><g><title>Monitor::wait (197 samples, 0.05%)</title><rect x="21.2507%" y="725" width="0.0544%" height="15" fill="rgb(227,5,17)" fg:x="76983" fg:w="197"/><text x="21.5007%" y="735.50"></text></g><g><title>CompileQueue::get (238 samples, 0.07%)</title><rect x="21.2477%" y="741" width="0.0657%" height="15" fill="rgb(221,226,24)" fg:x="76972" fg:w="238"/><text x="21.4977%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,007 samples, 0.28%)</title><rect x="21.0362%" y="757" width="0.2780%" height="15" fill="rgb(211,5,48)" fg:x="76206" fg:w="1007"/><text x="21.2862%" y="767.50"></text></g><g><title>__GI___clone (1,012 samples, 0.28%)</title><rect x="21.0359%" y="837" width="0.2794%" height="15" fill="rgb(219,150,6)" fg:x="76205" fg:w="1012"/><text x="21.2859%" y="847.50"></text></g><g><title>start_thread (1,012 samples, 0.28%)</title><rect x="21.0359%" y="821" width="0.2794%" height="15" fill="rgb(251,46,16)" fg:x="76205" fg:w="1012"/><text x="21.2859%" y="831.50"></text></g><g><title>thread_native_entry (1,011 samples, 0.28%)</title><rect x="21.0362%" y="805" width="0.2791%" height="15" fill="rgb(220,204,40)" fg:x="76206" fg:w="1011"/><text x="21.2862%" y="815.50"></text></g><g><title>Thread::call_run (1,011 samples, 0.28%)</title><rect x="21.0362%" y="789" width="0.2791%" height="15" fill="rgb(211,85,2)" fg:x="76206" fg:w="1011"/><text x="21.2862%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (1,011 samples, 0.28%)</title><rect x="21.0362%" y="773" width="0.2791%" height="15" fill="rgb(229,17,7)" fg:x="76206" fg:w="1011"/><text x="21.2862%" y="783.50"></text></g><g><title>C2_CompilerThre (64,184 samples, 17.72%)</title><rect x="3.6267%" y="853" width="17.7176%" height="15" fill="rgb(239,72,28)" fg:x="13138" fg:w="64184"/><text x="3.8767%" y="863.50">C2_CompilerThre</text></g><g><title>[perf-985085.map] (114 samples, 0.03%)</title><rect x="21.3462%" y="837" width="0.0315%" height="15" fill="rgb(230,47,54)" fg:x="77329" fg:w="114"/><text x="21.5962%" y="847.50"></text></g><g><title>Command-Accumul (129 samples, 0.04%)</title><rect x="21.3443%" y="853" width="0.0356%" height="15" fill="rgb(214,50,8)" fg:x="77322" fg:w="129"/><text x="21.5943%" y="863.50"></text></g><g><title>futex_wait_queue_me (51 samples, 0.01%)</title><rect x="21.4909%" y="661" width="0.0141%" height="15" fill="rgb(216,198,43)" fg:x="77853" fg:w="51"/><text x="21.7409%" y="671.50"></text></g><g><title>schedule (50 samples, 0.01%)</title><rect x="21.4911%" y="645" width="0.0138%" height="15" fill="rgb(234,20,35)" fg:x="77854" fg:w="50"/><text x="21.7411%" y="655.50"></text></g><g><title>__schedule (50 samples, 0.01%)</title><rect x="21.4911%" y="629" width="0.0138%" height="15" fill="rgb(254,45,19)" fg:x="77854" fg:w="50"/><text x="21.7411%" y="639.50"></text></g><g><title>do_futex (60 samples, 0.02%)</title><rect x="21.4898%" y="693" width="0.0166%" height="15" fill="rgb(219,14,44)" fg:x="77849" fg:w="60"/><text x="21.7398%" y="703.50"></text></g><g><title>futex_wait (59 samples, 0.02%)</title><rect x="21.4900%" y="677" width="0.0163%" height="15" fill="rgb(217,220,26)" fg:x="77850" fg:w="59"/><text x="21.7400%" y="687.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.02%)</title><rect x="21.4898%" y="709" width="0.0168%" height="15" fill="rgb(213,158,28)" fg:x="77849" fg:w="61"/><text x="21.7398%" y="719.50"></text></g><g><title>do_syscall_64 (62 samples, 0.02%)</title><rect x="21.4898%" y="725" width="0.0171%" height="15" fill="rgb(252,51,52)" fg:x="77849" fg:w="62"/><text x="21.7398%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.02%)</title><rect x="21.4895%" y="741" width="0.0188%" height="15" fill="rgb(246,89,16)" fg:x="77848" fg:w="68"/><text x="21.7395%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (77 samples, 0.02%)</title><rect x="21.4873%" y="789" width="0.0213%" height="15" fill="rgb(216,158,49)" fg:x="77840" fg:w="77"/><text x="21.7373%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (77 samples, 0.02%)</title><rect x="21.4873%" y="773" width="0.0213%" height="15" fill="rgb(236,107,19)" fg:x="77840" fg:w="77"/><text x="21.7373%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (73 samples, 0.02%)</title><rect x="21.4884%" y="757" width="0.0202%" height="15" fill="rgb(228,185,30)" fg:x="77844" fg:w="73"/><text x="21.7384%" y="767.50"></text></g><g><title>Unsafe_Park (117 samples, 0.03%)</title><rect x="21.4856%" y="821" width="0.0323%" height="15" fill="rgb(246,134,8)" fg:x="77834" fg:w="117"/><text x="21.7356%" y="831.50"></text></g><g><title>Parker::park (115 samples, 0.03%)</title><rect x="21.4862%" y="805" width="0.0317%" height="15" fill="rgb(214,143,50)" fg:x="77836" fg:w="115"/><text x="21.7362%" y="815.50"></text></g><g><title>[perf-985085.map] (444 samples, 0.12%)</title><rect x="21.3959%" y="837" width="0.1226%" height="15" fill="rgb(228,75,8)" fg:x="77509" fg:w="444"/><text x="21.6459%" y="847.50"></text></g><g><title>ForkJoinPool.co (476 samples, 0.13%)</title><rect x="21.3929%" y="853" width="0.1314%" height="15" fill="rgb(207,175,4)" fg:x="77498" fg:w="476"/><text x="21.6429%" y="863.50"></text></g><g><title>__GI___clone (63 samples, 0.02%)</title><rect x="21.5245%" y="837" width="0.0174%" height="15" fill="rgb(205,108,24)" fg:x="77975" fg:w="63"/><text x="21.7745%" y="847.50"></text></g><g><title>start_thread (63 samples, 0.02%)</title><rect x="21.5245%" y="821" width="0.0174%" height="15" fill="rgb(244,120,49)" fg:x="77975" fg:w="63"/><text x="21.7745%" y="831.50"></text></g><g><title>thread_native_entry (63 samples, 0.02%)</title><rect x="21.5245%" y="805" width="0.0174%" height="15" fill="rgb(223,47,38)" fg:x="77975" fg:w="63"/><text x="21.7745%" y="815.50"></text></g><g><title>Thread::call_run (63 samples, 0.02%)</title><rect x="21.5245%" y="789" width="0.0174%" height="15" fill="rgb(229,179,11)" fg:x="77975" fg:w="63"/><text x="21.7745%" y="799.50"></text></g><g><title>GangWorker::loop (63 samples, 0.02%)</title><rect x="21.5245%" y="773" width="0.0174%" height="15" fill="rgb(231,122,1)" fg:x="77975" fg:w="63"/><text x="21.7745%" y="783.50"></text></g><g><title>G1_Conc#0 (66 samples, 0.02%)</title><rect x="21.5243%" y="853" width="0.0182%" height="15" fill="rgb(245,119,9)" fg:x="77974" fg:w="66"/><text x="21.7743%" y="863.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (74 samples, 0.02%)</title><rect x="21.5555%" y="741" width="0.0204%" height="15" fill="rgb(241,163,25)" fg:x="78087" fg:w="74"/><text x="21.8055%" y="751.50"></text></g><g><title>G1RemSet::refine_card_concurrently (72 samples, 0.02%)</title><rect x="21.5560%" y="725" width="0.0199%" height="15" fill="rgb(217,214,3)" fg:x="78089" fg:w="72"/><text x="21.8060%" y="735.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (77 samples, 0.02%)</title><rect x="21.5555%" y="757" width="0.0213%" height="15" fill="rgb(240,86,28)" fg:x="78087" fg:w="77"/><text x="21.8055%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (91 samples, 0.03%)</title><rect x="21.5555%" y="773" width="0.0251%" height="15" fill="rgb(215,47,9)" fg:x="78087" fg:w="91"/><text x="21.8055%" y="783.50"></text></g><g><title>G1_Refine#0 (97 samples, 0.03%)</title><rect x="21.5541%" y="853" width="0.0268%" height="15" fill="rgb(252,25,45)" fg:x="78082" fg:w="97"/><text x="21.8041%" y="863.50"></text></g><g><title>__GI___clone (92 samples, 0.03%)</title><rect x="21.5555%" y="837" width="0.0254%" height="15" fill="rgb(251,164,9)" fg:x="78087" fg:w="92"/><text x="21.8055%" y="847.50"></text></g><g><title>start_thread (92 samples, 0.03%)</title><rect x="21.5555%" y="821" width="0.0254%" height="15" fill="rgb(233,194,0)" fg:x="78087" fg:w="92"/><text x="21.8055%" y="831.50"></text></g><g><title>thread_native_entry (92 samples, 0.03%)</title><rect x="21.5555%" y="805" width="0.0254%" height="15" fill="rgb(249,111,24)" fg:x="78087" fg:w="92"/><text x="21.8055%" y="815.50"></text></g><g><title>Thread::call_run (92 samples, 0.03%)</title><rect x="21.5555%" y="789" width="0.0254%" height="15" fill="rgb(250,223,3)" fg:x="78087" fg:w="92"/><text x="21.8055%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (84 samples, 0.02%)</title><rect x="21.6013%" y="741" width="0.0232%" height="15" fill="rgb(236,178,37)" fg:x="78253" fg:w="84"/><text x="21.8513%" y="751.50"></text></g><g><title>SpinPause (61 samples, 0.02%)</title><rect x="21.6076%" y="725" width="0.0168%" height="15" fill="rgb(241,158,50)" fg:x="78276" fg:w="61"/><text x="21.8576%" y="735.50"></text></g><g><title>G1RootProcessor::process_java_roots (41 samples, 0.01%)</title><rect x="21.6361%" y="725" width="0.0113%" height="15" fill="rgb(213,121,41)" fg:x="78379" fg:w="41"/><text x="21.8861%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (41 samples, 0.01%)</title><rect x="21.6361%" y="709" width="0.0113%" height="15" fill="rgb(240,92,3)" fg:x="78379" fg:w="41"/><text x="21.8861%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (41 samples, 0.01%)</title><rect x="21.6361%" y="693" width="0.0113%" height="15" fill="rgb(205,123,3)" fg:x="78379" fg:w="41"/><text x="21.8861%" y="703.50"></text></g><g><title>JavaThread::oops_do (41 samples, 0.01%)</title><rect x="21.6361%" y="677" width="0.0113%" height="15" fill="rgb(205,97,47)" fg:x="78379" fg:w="41"/><text x="21.8861%" y="687.50"></text></g><g><title>G1ParTask::work (175 samples, 0.05%)</title><rect x="21.6013%" y="757" width="0.0483%" height="15" fill="rgb(247,152,14)" fg:x="78253" fg:w="175"/><text x="21.8513%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (64 samples, 0.02%)</title><rect x="21.6319%" y="741" width="0.0177%" height="15" fill="rgb(248,195,53)" fg:x="78364" fg:w="64"/><text x="21.8819%" y="751.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.01%)</title><rect x="21.6747%" y="597" width="0.0102%" height="15" fill="rgb(226,201,16)" fg:x="78519" fg:w="37"/><text x="21.9247%" y="607.50"></text></g><g><title>schedule (37 samples, 0.01%)</title><rect x="21.6747%" y="581" width="0.0102%" height="15" fill="rgb(205,98,0)" fg:x="78519" fg:w="37"/><text x="21.9247%" y="591.50"></text></g><g><title>__schedule (37 samples, 0.01%)</title><rect x="21.6747%" y="565" width="0.0102%" height="15" fill="rgb(214,191,48)" fg:x="78519" fg:w="37"/><text x="21.9247%" y="575.50"></text></g><g><title>do_syscall_64 (42 samples, 0.01%)</title><rect x="21.6747%" y="661" width="0.0116%" height="15" fill="rgb(237,112,39)" fg:x="78519" fg:w="42"/><text x="21.9247%" y="671.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.01%)</title><rect x="21.6747%" y="645" width="0.0116%" height="15" fill="rgb(247,203,27)" fg:x="78519" fg:w="42"/><text x="21.9247%" y="655.50"></text></g><g><title>do_futex (42 samples, 0.01%)</title><rect x="21.6747%" y="629" width="0.0116%" height="15" fill="rgb(235,124,28)" fg:x="78519" fg:w="42"/><text x="21.9247%" y="639.50"></text></g><g><title>futex_wait (42 samples, 0.01%)</title><rect x="21.6747%" y="613" width="0.0116%" height="15" fill="rgb(208,207,46)" fg:x="78519" fg:w="42"/><text x="21.9247%" y="623.50"></text></g><g><title>__GI___clone (317 samples, 0.09%)</title><rect x="21.5993%" y="837" width="0.0875%" height="15" fill="rgb(234,176,4)" fg:x="78246" fg:w="317"/><text x="21.8493%" y="847.50"></text></g><g><title>start_thread (317 samples, 0.09%)</title><rect x="21.5993%" y="821" width="0.0875%" height="15" fill="rgb(230,133,28)" fg:x="78246" fg:w="317"/><text x="21.8493%" y="831.50"></text></g><g><title>thread_native_entry (317 samples, 0.09%)</title><rect x="21.5993%" y="805" width="0.0875%" height="15" fill="rgb(211,137,40)" fg:x="78246" fg:w="317"/><text x="21.8493%" y="815.50"></text></g><g><title>Thread::call_run (317 samples, 0.09%)</title><rect x="21.5993%" y="789" width="0.0875%" height="15" fill="rgb(254,35,13)" fg:x="78246" fg:w="317"/><text x="21.8493%" y="799.50"></text></g><g><title>GangWorker::loop (317 samples, 0.09%)</title><rect x="21.5993%" y="773" width="0.0875%" height="15" fill="rgb(225,49,51)" fg:x="78246" fg:w="317"/><text x="21.8493%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (46 samples, 0.01%)</title><rect x="21.6742%" y="757" width="0.0127%" height="15" fill="rgb(251,10,15)" fg:x="78517" fg:w="46"/><text x="21.9242%" y="767.50"></text></g><g><title>PosixSemaphore::wait (46 samples, 0.01%)</title><rect x="21.6742%" y="741" width="0.0127%" height="15" fill="rgb(228,207,15)" fg:x="78517" fg:w="46"/><text x="21.9242%" y="751.50"></text></g><g><title>__new_sem_wait_slow (46 samples, 0.01%)</title><rect x="21.6742%" y="725" width="0.0127%" height="15" fill="rgb(241,99,19)" fg:x="78517" fg:w="46"/><text x="21.9242%" y="735.50"></text></g><g><title>do_futex_wait (45 samples, 0.01%)</title><rect x="21.6744%" y="709" width="0.0124%" height="15" fill="rgb(207,104,49)" fg:x="78518" fg:w="45"/><text x="21.9244%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (45 samples, 0.01%)</title><rect x="21.6744%" y="693" width="0.0124%" height="15" fill="rgb(234,99,18)" fg:x="78518" fg:w="45"/><text x="21.9244%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.01%)</title><rect x="21.6747%" y="677" width="0.0121%" height="15" fill="rgb(213,191,49)" fg:x="78519" fg:w="44"/><text x="21.9247%" y="687.50"></text></g><g><title>GC_Thread#0 (324 samples, 0.09%)</title><rect x="21.5980%" y="853" width="0.0894%" height="15" fill="rgb(210,226,19)" fg:x="78241" fg:w="324"/><text x="21.8480%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue (38 samples, 0.01%)</title><rect x="21.6971%" y="725" width="0.0105%" height="15" fill="rgb(229,97,18)" fg:x="78600" fg:w="38"/><text x="21.9471%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (109 samples, 0.03%)</title><rect x="21.6960%" y="741" width="0.0301%" height="15" fill="rgb(211,167,15)" fg:x="78596" fg:w="109"/><text x="21.9460%" y="751.50"></text></g><g><title>SpinPause (65 samples, 0.02%)</title><rect x="21.7081%" y="725" width="0.0179%" height="15" fill="rgb(210,169,34)" fg:x="78640" fg:w="65"/><text x="21.9581%" y="735.50"></text></g><g><title>frame::oops_interpreted_do (46 samples, 0.01%)</title><rect x="21.7537%" y="661" width="0.0127%" height="15" fill="rgb(241,121,31)" fg:x="78805" fg:w="46"/><text x="22.0037%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (91 samples, 0.03%)</title><rect x="21.7421%" y="725" width="0.0251%" height="15" fill="rgb(232,40,11)" fg:x="78763" fg:w="91"/><text x="21.9921%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (91 samples, 0.03%)</title><rect x="21.7421%" y="709" width="0.0251%" height="15" fill="rgb(205,86,26)" fg:x="78763" fg:w="91"/><text x="21.9921%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (91 samples, 0.03%)</title><rect x="21.7421%" y="693" width="0.0251%" height="15" fill="rgb(231,126,28)" fg:x="78763" fg:w="91"/><text x="21.9921%" y="703.50"></text></g><g><title>JavaThread::oops_do (91 samples, 0.03%)</title><rect x="21.7421%" y="677" width="0.0251%" height="15" fill="rgb(219,221,18)" fg:x="78763" fg:w="91"/><text x="21.9921%" y="687.50"></text></g><g><title>G1ParTask::work (298 samples, 0.08%)</title><rect x="21.6960%" y="757" width="0.0823%" height="15" fill="rgb(211,40,0)" fg:x="78596" fg:w="298"/><text x="21.9460%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (136 samples, 0.04%)</title><rect x="21.7407%" y="741" width="0.0375%" height="15" fill="rgb(239,85,43)" fg:x="78758" fg:w="136"/><text x="21.9907%" y="751.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (39 samples, 0.01%)</title><rect x="21.7675%" y="725" width="0.0108%" height="15" fill="rgb(231,55,21)" fg:x="78855" fg:w="39"/><text x="22.0175%" y="735.50"></text></g><g><title>ParallelSPCleanupTask::work (37 samples, 0.01%)</title><rect x="21.7920%" y="757" width="0.0102%" height="15" fill="rgb(225,184,43)" fg:x="78944" fg:w="37"/><text x="22.0420%" y="767.50"></text></g><g><title>__GI___clone (435 samples, 0.12%)</title><rect x="21.6924%" y="837" width="0.1201%" height="15" fill="rgb(251,158,41)" fg:x="78583" fg:w="435"/><text x="21.9424%" y="847.50"></text></g><g><title>start_thread (435 samples, 0.12%)</title><rect x="21.6924%" y="821" width="0.1201%" height="15" fill="rgb(234,159,37)" fg:x="78583" fg:w="435"/><text x="21.9424%" y="831.50"></text></g><g><title>thread_native_entry (435 samples, 0.12%)</title><rect x="21.6924%" y="805" width="0.1201%" height="15" fill="rgb(216,204,22)" fg:x="78583" fg:w="435"/><text x="21.9424%" y="815.50"></text></g><g><title>Thread::call_run (435 samples, 0.12%)</title><rect x="21.6924%" y="789" width="0.1201%" height="15" fill="rgb(214,17,3)" fg:x="78583" fg:w="435"/><text x="21.9424%" y="799.50"></text></g><g><title>GangWorker::loop (435 samples, 0.12%)</title><rect x="21.6924%" y="773" width="0.1201%" height="15" fill="rgb(212,111,17)" fg:x="78583" fg:w="435"/><text x="21.9424%" y="783.50"></text></g><g><title>GC_Thread#1 (457 samples, 0.13%)</title><rect x="21.6874%" y="853" width="0.1262%" height="15" fill="rgb(221,157,24)" fg:x="78565" fg:w="457"/><text x="21.9374%" y="863.50"></text></g><g><title>SpinPause (44 samples, 0.01%)</title><rect x="21.8251%" y="725" width="0.0121%" height="15" fill="rgb(252,16,13)" fg:x="79064" fg:w="44"/><text x="22.0751%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (65 samples, 0.02%)</title><rect x="21.8196%" y="741" width="0.0179%" height="15" fill="rgb(221,62,2)" fg:x="79044" fg:w="65"/><text x="22.0696%" y="751.50"></text></g><g><title>G1RemSet::scan_rem_set (44 samples, 0.01%)</title><rect x="21.8464%" y="741" width="0.0121%" height="15" fill="rgb(247,87,22)" fg:x="79141" fg:w="44"/><text x="22.0964%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (44 samples, 0.01%)</title><rect x="21.8464%" y="725" width="0.0121%" height="15" fill="rgb(215,73,9)" fg:x="79141" fg:w="44"/><text x="22.0964%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (44 samples, 0.01%)</title><rect x="21.8464%" y="709" width="0.0121%" height="15" fill="rgb(207,175,33)" fg:x="79141" fg:w="44"/><text x="22.0964%" y="719.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (92 samples, 0.03%)</title><rect x="21.8585%" y="709" width="0.0254%" height="15" fill="rgb(243,129,54)" fg:x="79185" fg:w="92"/><text x="22.1085%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (91 samples, 0.03%)</title><rect x="21.8588%" y="693" width="0.0251%" height="15" fill="rgb(227,119,45)" fg:x="79186" fg:w="91"/><text x="22.1088%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (91 samples, 0.03%)</title><rect x="21.8588%" y="677" width="0.0251%" height="15" fill="rgb(205,109,36)" fg:x="79186" fg:w="91"/><text x="22.1088%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (77 samples, 0.02%)</title><rect x="21.8627%" y="661" width="0.0213%" height="15" fill="rgb(205,6,39)" fg:x="79200" fg:w="77"/><text x="22.1127%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (60 samples, 0.02%)</title><rect x="21.8674%" y="645" width="0.0166%" height="15" fill="rgb(221,32,16)" fg:x="79217" fg:w="60"/><text x="22.1174%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (48 samples, 0.01%)</title><rect x="21.8707%" y="629" width="0.0133%" height="15" fill="rgb(228,144,50)" fg:x="79229" fg:w="48"/><text x="22.1207%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (144 samples, 0.04%)</title><rect x="21.8585%" y="725" width="0.0398%" height="15" fill="rgb(229,201,53)" fg:x="79185" fg:w="144"/><text x="22.1085%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (52 samples, 0.01%)</title><rect x="21.8839%" y="709" width="0.0144%" height="15" fill="rgb(249,153,27)" fg:x="79277" fg:w="52"/><text x="22.1339%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (52 samples, 0.01%)</title><rect x="21.8839%" y="693" width="0.0144%" height="15" fill="rgb(227,106,25)" fg:x="79277" fg:w="52"/><text x="22.1339%" y="703.50"></text></g><g><title>JavaThread::oops_do (52 samples, 0.01%)</title><rect x="21.8839%" y="677" width="0.0144%" height="15" fill="rgb(230,65,29)" fg:x="79277" fg:w="52"/><text x="22.1339%" y="687.50"></text></g><g><title>G1ParTask::work (290 samples, 0.08%)</title><rect x="21.8194%" y="757" width="0.0801%" height="15" fill="rgb(221,57,46)" fg:x="79043" fg:w="290"/><text x="22.0694%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (148 samples, 0.04%)</title><rect x="21.8585%" y="741" width="0.0409%" height="15" fill="rgb(229,161,17)" fg:x="79185" fg:w="148"/><text x="22.1085%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (37 samples, 0.01%)</title><rect x="21.9019%" y="757" width="0.0102%" height="15" fill="rgb(222,213,11)" fg:x="79342" fg:w="37"/><text x="22.1519%" y="767.50"></text></g><g><title>__GI___clone (409 samples, 0.11%)</title><rect x="21.8180%" y="837" width="0.1129%" height="15" fill="rgb(235,35,13)" fg:x="79038" fg:w="409"/><text x="22.0680%" y="847.50"></text></g><g><title>start_thread (409 samples, 0.11%)</title><rect x="21.8180%" y="821" width="0.1129%" height="15" fill="rgb(233,158,34)" fg:x="79038" fg:w="409"/><text x="22.0680%" y="831.50"></text></g><g><title>thread_native_entry (409 samples, 0.11%)</title><rect x="21.8180%" y="805" width="0.1129%" height="15" fill="rgb(215,151,48)" fg:x="79038" fg:w="409"/><text x="22.0680%" y="815.50"></text></g><g><title>Thread::call_run (409 samples, 0.11%)</title><rect x="21.8180%" y="789" width="0.1129%" height="15" fill="rgb(229,84,14)" fg:x="79038" fg:w="409"/><text x="22.0680%" y="799.50"></text></g><g><title>GangWorker::loop (409 samples, 0.11%)</title><rect x="21.8180%" y="773" width="0.1129%" height="15" fill="rgb(229,68,14)" fg:x="79038" fg:w="409"/><text x="22.0680%" y="783.50"></text></g><g><title>GC_Thread#2 (427 samples, 0.12%)</title><rect x="21.8136%" y="853" width="0.1179%" height="15" fill="rgb(243,106,26)" fg:x="79022" fg:w="427"/><text x="22.0636%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (64 samples, 0.02%)</title><rect x="21.9358%" y="741" width="0.0177%" height="15" fill="rgb(206,45,38)" fg:x="79465" fg:w="64"/><text x="22.1858%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (46 samples, 0.01%)</title><rect x="21.9944%" y="597" width="0.0127%" height="15" fill="rgb(226,6,15)" fg:x="79677" fg:w="46"/><text x="22.2444%" y="607.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (56 samples, 0.02%)</title><rect x="21.9919%" y="613" width="0.0155%" height="15" fill="rgb(232,22,54)" fg:x="79668" fg:w="56"/><text x="22.2419%" y="623.50"></text></g><g><title>InterpreterOopMap::iterate_oop (73 samples, 0.02%)</title><rect x="21.9880%" y="645" width="0.0202%" height="15" fill="rgb(229,222,32)" fg:x="79654" fg:w="73"/><text x="22.2380%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (72 samples, 0.02%)</title><rect x="21.9883%" y="629" width="0.0199%" height="15" fill="rgb(228,62,29)" fg:x="79655" fg:w="72"/><text x="22.2383%" y="639.50"></text></g><g><title>frame::oops_interpreted_do (92 samples, 0.03%)</title><rect x="21.9853%" y="661" width="0.0254%" height="15" fill="rgb(251,103,34)" fg:x="79644" fg:w="92"/><text x="22.2353%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (147 samples, 0.04%)</title><rect x="21.9703%" y="725" width="0.0406%" height="15" fill="rgb(233,12,30)" fg:x="79590" fg:w="147"/><text x="22.2203%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (147 samples, 0.04%)</title><rect x="21.9703%" y="709" width="0.0406%" height="15" fill="rgb(238,52,0)" fg:x="79590" fg:w="147"/><text x="22.2203%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (147 samples, 0.04%)</title><rect x="21.9703%" y="693" width="0.0406%" height="15" fill="rgb(223,98,5)" fg:x="79590" fg:w="147"/><text x="22.2203%" y="703.50"></text></g><g><title>JavaThread::oops_do (147 samples, 0.04%)</title><rect x="21.9703%" y="677" width="0.0406%" height="15" fill="rgb(228,75,37)" fg:x="79590" fg:w="147"/><text x="22.2203%" y="687.50"></text></g><g><title>G1RootProcessor::evacuate_roots (162 samples, 0.04%)</title><rect x="21.9695%" y="741" width="0.0447%" height="15" fill="rgb(205,115,49)" fg:x="79587" fg:w="162"/><text x="22.2195%" y="751.50"></text></g><g><title>G1ParTask::work (285 samples, 0.08%)</title><rect x="21.9358%" y="757" width="0.0787%" height="15" fill="rgb(250,154,43)" fg:x="79465" fg:w="285"/><text x="22.1858%" y="767.50"></text></g><g><title>__GI___clone (391 samples, 0.11%)</title><rect x="21.9342%" y="837" width="0.1079%" height="15" fill="rgb(226,43,29)" fg:x="79459" fg:w="391"/><text x="22.1842%" y="847.50"></text></g><g><title>start_thread (391 samples, 0.11%)</title><rect x="21.9342%" y="821" width="0.1079%" height="15" fill="rgb(249,228,39)" fg:x="79459" fg:w="391"/><text x="22.1842%" y="831.50"></text></g><g><title>thread_native_entry (391 samples, 0.11%)</title><rect x="21.9342%" y="805" width="0.1079%" height="15" fill="rgb(216,79,43)" fg:x="79459" fg:w="391"/><text x="22.1842%" y="815.50"></text></g><g><title>Thread::call_run (391 samples, 0.11%)</title><rect x="21.9342%" y="789" width="0.1079%" height="15" fill="rgb(228,95,12)" fg:x="79459" fg:w="391"/><text x="22.1842%" y="799.50"></text></g><g><title>GangWorker::loop (391 samples, 0.11%)</title><rect x="21.9342%" y="773" width="0.1079%" height="15" fill="rgb(249,221,15)" fg:x="79459" fg:w="391"/><text x="22.1842%" y="783.50"></text></g><g><title>GC_Thread#3 (405 samples, 0.11%)</title><rect x="21.9314%" y="853" width="0.1118%" height="15" fill="rgb(233,34,13)" fg:x="79449" fg:w="405"/><text x="22.1814%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (87 samples, 0.02%)</title><rect x="22.0457%" y="741" width="0.0240%" height="15" fill="rgb(214,103,39)" fg:x="79863" fg:w="87"/><text x="22.2957%" y="751.50"></text></g><g><title>SpinPause (48 samples, 0.01%)</title><rect x="22.0565%" y="725" width="0.0133%" height="15" fill="rgb(251,126,39)" fg:x="79902" fg:w="48"/><text x="22.3065%" y="735.50"></text></g><g><title>G1ParTask::work (210 samples, 0.06%)</title><rect x="22.0457%" y="757" width="0.0580%" height="15" fill="rgb(214,216,36)" fg:x="79863" fg:w="210"/><text x="22.2957%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (80 samples, 0.02%)</title><rect x="22.0816%" y="741" width="0.0221%" height="15" fill="rgb(220,221,8)" fg:x="79993" fg:w="80"/><text x="22.3316%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (79 samples, 0.02%)</title><rect x="22.0819%" y="725" width="0.0218%" height="15" fill="rgb(240,216,3)" fg:x="79994" fg:w="79"/><text x="22.3319%" y="735.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (79 samples, 0.02%)</title><rect x="22.0819%" y="709" width="0.0218%" height="15" fill="rgb(232,218,17)" fg:x="79994" fg:w="79"/><text x="22.3319%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (79 samples, 0.02%)</title><rect x="22.0819%" y="693" width="0.0218%" height="15" fill="rgb(229,163,45)" fg:x="79994" fg:w="79"/><text x="22.3319%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (79 samples, 0.02%)</title><rect x="22.0819%" y="677" width="0.0218%" height="15" fill="rgb(231,110,42)" fg:x="79994" fg:w="79"/><text x="22.3319%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (55 samples, 0.02%)</title><rect x="22.0885%" y="661" width="0.0152%" height="15" fill="rgb(208,170,48)" fg:x="80018" fg:w="55"/><text x="22.3385%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (43 samples, 0.01%)</title><rect x="22.0918%" y="645" width="0.0119%" height="15" fill="rgb(239,116,25)" fg:x="80030" fg:w="43"/><text x="22.3418%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (37 samples, 0.01%)</title><rect x="22.0935%" y="629" width="0.0102%" height="15" fill="rgb(219,200,50)" fg:x="80036" fg:w="37"/><text x="22.3435%" y="639.50"></text></g><g><title>ParallelSPCleanupTask::work (38 samples, 0.01%)</title><rect x="22.1142%" y="757" width="0.0105%" height="15" fill="rgb(245,200,0)" fg:x="80111" fg:w="38"/><text x="22.3642%" y="767.50"></text></g><g><title>GC_Thread#4 (316 samples, 0.09%)</title><rect x="22.0432%" y="853" width="0.0872%" height="15" fill="rgb(245,119,33)" fg:x="79854" fg:w="316"/><text x="22.2932%" y="863.50"></text></g><g><title>__GI___clone (311 samples, 0.09%)</title><rect x="22.0446%" y="837" width="0.0858%" height="15" fill="rgb(231,125,12)" fg:x="79859" fg:w="311"/><text x="22.2946%" y="847.50"></text></g><g><title>start_thread (311 samples, 0.09%)</title><rect x="22.0446%" y="821" width="0.0858%" height="15" fill="rgb(216,96,41)" fg:x="79859" fg:w="311"/><text x="22.2946%" y="831.50"></text></g><g><title>thread_native_entry (311 samples, 0.09%)</title><rect x="22.0446%" y="805" width="0.0858%" height="15" fill="rgb(248,43,45)" fg:x="79859" fg:w="311"/><text x="22.2946%" y="815.50"></text></g><g><title>Thread::call_run (311 samples, 0.09%)</title><rect x="22.0446%" y="789" width="0.0858%" height="15" fill="rgb(217,222,7)" fg:x="79859" fg:w="311"/><text x="22.2946%" y="799.50"></text></g><g><title>GangWorker::loop (311 samples, 0.09%)</title><rect x="22.0446%" y="773" width="0.0858%" height="15" fill="rgb(233,28,6)" fg:x="79859" fg:w="311"/><text x="22.2946%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue (49 samples, 0.01%)</title><rect x="22.1368%" y="725" width="0.0135%" height="15" fill="rgb(231,218,15)" fg:x="80193" fg:w="49"/><text x="22.3868%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (108 samples, 0.03%)</title><rect x="22.1349%" y="741" width="0.0298%" height="15" fill="rgb(226,171,48)" fg:x="80186" fg:w="108"/><text x="22.3849%" y="751.50"></text></g><g><title>SpinPause (49 samples, 0.01%)</title><rect x="22.1512%" y="725" width="0.0135%" height="15" fill="rgb(235,201,9)" fg:x="80245" fg:w="49"/><text x="22.4012%" y="735.50"></text></g><g><title>G1RootProcessor::process_java_roots (106 samples, 0.03%)</title><rect x="22.1785%" y="725" width="0.0293%" height="15" fill="rgb(217,80,15)" fg:x="80344" fg:w="106"/><text x="22.4285%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (106 samples, 0.03%)</title><rect x="22.1785%" y="709" width="0.0293%" height="15" fill="rgb(219,152,8)" fg:x="80344" fg:w="106"/><text x="22.4285%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (106 samples, 0.03%)</title><rect x="22.1785%" y="693" width="0.0293%" height="15" fill="rgb(243,107,38)" fg:x="80344" fg:w="106"/><text x="22.4285%" y="703.50"></text></g><g><title>JavaThread::oops_do (106 samples, 0.03%)</title><rect x="22.1785%" y="677" width="0.0293%" height="15" fill="rgb(231,17,5)" fg:x="80344" fg:w="106"/><text x="22.4285%" y="687.50"></text></g><g><title>frame::oops_interpreted_do (50 samples, 0.01%)</title><rect x="22.1939%" y="661" width="0.0138%" height="15" fill="rgb(209,25,54)" fg:x="80400" fg:w="50"/><text x="22.4439%" y="671.50"></text></g><g><title>G1ParTask::work (294 samples, 0.08%)</title><rect x="22.1349%" y="757" width="0.0812%" height="15" fill="rgb(219,0,2)" fg:x="80186" fg:w="294"/><text x="22.3849%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (138 samples, 0.04%)</title><rect x="22.1779%" y="741" width="0.0381%" height="15" fill="rgb(246,9,5)" fg:x="80342" fg:w="138"/><text x="22.4279%" y="751.50"></text></g><g><title>__GI___clone (402 samples, 0.11%)</title><rect x="22.1321%" y="837" width="0.1110%" height="15" fill="rgb(226,159,4)" fg:x="80176" fg:w="402"/><text x="22.3821%" y="847.50"></text></g><g><title>start_thread (402 samples, 0.11%)</title><rect x="22.1321%" y="821" width="0.1110%" height="15" fill="rgb(219,175,34)" fg:x="80176" fg:w="402"/><text x="22.3821%" y="831.50"></text></g><g><title>thread_native_entry (402 samples, 0.11%)</title><rect x="22.1321%" y="805" width="0.1110%" height="15" fill="rgb(236,10,46)" fg:x="80176" fg:w="402"/><text x="22.3821%" y="815.50"></text></g><g><title>Thread::call_run (402 samples, 0.11%)</title><rect x="22.1321%" y="789" width="0.1110%" height="15" fill="rgb(240,211,16)" fg:x="80176" fg:w="402"/><text x="22.3821%" y="799.50"></text></g><g><title>GangWorker::loop (402 samples, 0.11%)</title><rect x="22.1321%" y="773" width="0.1110%" height="15" fill="rgb(205,3,43)" fg:x="80176" fg:w="402"/><text x="22.3821%" y="783.50"></text></g><g><title>GC_Thread#5 (412 samples, 0.11%)</title><rect x="22.1305%" y="853" width="0.1137%" height="15" fill="rgb(245,7,22)" fg:x="80170" fg:w="412"/><text x="22.3805%" y="863.50"></text></g><g><title>SpinPause (37 samples, 0.01%)</title><rect x="22.2616%" y="725" width="0.0102%" height="15" fill="rgb(239,132,32)" fg:x="80645" fg:w="37"/><text x="22.5116%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (81 samples, 0.02%)</title><rect x="22.2497%" y="741" width="0.0224%" height="15" fill="rgb(228,202,34)" fg:x="80602" fg:w="81"/><text x="22.4997%" y="751.50"></text></g><g><title>JNIHandleBlock::oops_do (39 samples, 0.01%)</title><rect x="22.2917%" y="661" width="0.0108%" height="15" fill="rgb(254,200,22)" fg:x="80754" fg:w="39"/><text x="22.5417%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (39 samples, 0.01%)</title><rect x="22.2917%" y="645" width="0.0108%" height="15" fill="rgb(219,10,39)" fg:x="80754" fg:w="39"/><text x="22.5417%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (84 samples, 0.02%)</title><rect x="22.2889%" y="725" width="0.0232%" height="15" fill="rgb(226,210,39)" fg:x="80744" fg:w="84"/><text x="22.5389%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (84 samples, 0.02%)</title><rect x="22.2889%" y="709" width="0.0232%" height="15" fill="rgb(208,219,16)" fg:x="80744" fg:w="84"/><text x="22.5389%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (84 samples, 0.02%)</title><rect x="22.2889%" y="693" width="0.0232%" height="15" fill="rgb(216,158,51)" fg:x="80744" fg:w="84"/><text x="22.5389%" y="703.50"></text></g><g><title>JavaThread::oops_do (84 samples, 0.02%)</title><rect x="22.2889%" y="677" width="0.0232%" height="15" fill="rgb(233,14,44)" fg:x="80744" fg:w="84"/><text x="22.5389%" y="687.50"></text></g><g><title>G1ParTask::work (245 samples, 0.07%)</title><rect x="22.2497%" y="757" width="0.0676%" height="15" fill="rgb(237,97,39)" fg:x="80602" fg:w="245"/><text x="22.4997%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (104 samples, 0.03%)</title><rect x="22.2886%" y="741" width="0.0287%" height="15" fill="rgb(218,198,43)" fg:x="80743" fg:w="104"/><text x="22.5386%" y="751.50"></text></g><g><title>ParallelSPCleanupTask::work (39 samples, 0.01%)</title><rect x="22.3289%" y="757" width="0.0108%" height="15" fill="rgb(231,104,20)" fg:x="80889" fg:w="39"/><text x="22.5789%" y="767.50"></text></g><g><title>finish_task_switch (47 samples, 0.01%)</title><rect x="22.3414%" y="549" width="0.0130%" height="15" fill="rgb(254,36,13)" fg:x="80934" fg:w="47"/><text x="22.5914%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (45 samples, 0.01%)</title><rect x="22.3419%" y="533" width="0.0124%" height="15" fill="rgb(248,14,50)" fg:x="80936" fg:w="45"/><text x="22.5919%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (45 samples, 0.01%)</title><rect x="22.3419%" y="517" width="0.0124%" height="15" fill="rgb(217,107,29)" fg:x="80936" fg:w="45"/><text x="22.5919%" y="527.50"></text></g><g><title>native_write_msr (45 samples, 0.01%)</title><rect x="22.3419%" y="501" width="0.0124%" height="15" fill="rgb(251,169,33)" fg:x="80936" fg:w="45"/><text x="22.5919%" y="511.50"></text></g><g><title>futex_wait_queue_me (59 samples, 0.02%)</title><rect x="22.3405%" y="597" width="0.0163%" height="15" fill="rgb(217,108,32)" fg:x="80931" fg:w="59"/><text x="22.5905%" y="607.50"></text></g><g><title>schedule (57 samples, 0.02%)</title><rect x="22.3411%" y="581" width="0.0157%" height="15" fill="rgb(219,66,42)" fg:x="80933" fg:w="57"/><text x="22.5911%" y="591.50"></text></g><g><title>__schedule (57 samples, 0.02%)</title><rect x="22.3411%" y="565" width="0.0157%" height="15" fill="rgb(206,180,7)" fg:x="80933" fg:w="57"/><text x="22.5911%" y="575.50"></text></g><g><title>do_syscall_64 (61 samples, 0.02%)</title><rect x="22.3405%" y="661" width="0.0168%" height="15" fill="rgb(208,226,31)" fg:x="80931" fg:w="61"/><text x="22.5905%" y="671.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.02%)</title><rect x="22.3405%" y="645" width="0.0168%" height="15" fill="rgb(218,26,49)" fg:x="80931" fg:w="61"/><text x="22.5905%" y="655.50"></text></g><g><title>do_futex (61 samples, 0.02%)</title><rect x="22.3405%" y="629" width="0.0168%" height="15" fill="rgb(233,197,48)" fg:x="80931" fg:w="61"/><text x="22.5905%" y="639.50"></text></g><g><title>futex_wait (61 samples, 0.02%)</title><rect x="22.3405%" y="613" width="0.0168%" height="15" fill="rgb(252,181,51)" fg:x="80931" fg:w="61"/><text x="22.5905%" y="623.50"></text></g><g><title>__GI___clone (401 samples, 0.11%)</title><rect x="22.2475%" y="837" width="0.1107%" height="15" fill="rgb(253,90,19)" fg:x="80594" fg:w="401"/><text x="22.4975%" y="847.50"></text></g><g><title>start_thread (401 samples, 0.11%)</title><rect x="22.2475%" y="821" width="0.1107%" height="15" fill="rgb(215,171,30)" fg:x="80594" fg:w="401"/><text x="22.4975%" y="831.50"></text></g><g><title>thread_native_entry (401 samples, 0.11%)</title><rect x="22.2475%" y="805" width="0.1107%" height="15" fill="rgb(214,222,9)" fg:x="80594" fg:w="401"/><text x="22.4975%" y="815.50"></text></g><g><title>Thread::call_run (401 samples, 0.11%)</title><rect x="22.2475%" y="789" width="0.1107%" height="15" fill="rgb(223,3,22)" fg:x="80594" fg:w="401"/><text x="22.4975%" y="799.50"></text></g><g><title>GangWorker::loop (401 samples, 0.11%)</title><rect x="22.2475%" y="773" width="0.1107%" height="15" fill="rgb(225,196,46)" fg:x="80594" fg:w="401"/><text x="22.4975%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (66 samples, 0.02%)</title><rect x="22.3400%" y="757" width="0.0182%" height="15" fill="rgb(209,110,37)" fg:x="80929" fg:w="66"/><text x="22.5900%" y="767.50"></text></g><g><title>PosixSemaphore::wait (66 samples, 0.02%)</title><rect x="22.3400%" y="741" width="0.0182%" height="15" fill="rgb(249,89,12)" fg:x="80929" fg:w="66"/><text x="22.5900%" y="751.50"></text></g><g><title>__new_sem_wait_slow (65 samples, 0.02%)</title><rect x="22.3402%" y="725" width="0.0179%" height="15" fill="rgb(226,27,33)" fg:x="80930" fg:w="65"/><text x="22.5902%" y="735.50"></text></g><g><title>do_futex_wait (65 samples, 0.02%)</title><rect x="22.3402%" y="709" width="0.0179%" height="15" fill="rgb(213,82,22)" fg:x="80930" fg:w="65"/><text x="22.5902%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (65 samples, 0.02%)</title><rect x="22.3402%" y="693" width="0.0179%" height="15" fill="rgb(248,140,0)" fg:x="80930" fg:w="65"/><text x="22.5902%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.02%)</title><rect x="22.3405%" y="677" width="0.0177%" height="15" fill="rgb(228,106,3)" fg:x="80931" fg:w="64"/><text x="22.5905%" y="687.50"></text></g><g><title>GC_Thread#6 (418 samples, 0.12%)</title><rect x="22.2442%" y="853" width="0.1154%" height="15" fill="rgb(209,23,37)" fg:x="80582" fg:w="418"/><text x="22.4942%" y="863.50"></text></g><g><title>SpinPause (53 samples, 0.01%)</title><rect x="22.3775%" y="725" width="0.0146%" height="15" fill="rgb(241,93,50)" fg:x="81065" fg:w="53"/><text x="22.6275%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (103 samples, 0.03%)</title><rect x="22.3640%" y="741" width="0.0284%" height="15" fill="rgb(253,46,43)" fg:x="81016" fg:w="103"/><text x="22.6140%" y="751.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (68 samples, 0.02%)</title><rect x="22.4062%" y="709" width="0.0188%" height="15" fill="rgb(226,206,43)" fg:x="81169" fg:w="68"/><text x="22.6562%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (65 samples, 0.02%)</title><rect x="22.4070%" y="693" width="0.0179%" height="15" fill="rgb(217,54,7)" fg:x="81172" fg:w="65"/><text x="22.6570%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (65 samples, 0.02%)</title><rect x="22.4070%" y="677" width="0.0179%" height="15" fill="rgb(223,5,52)" fg:x="81172" fg:w="65"/><text x="22.6570%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.02%)</title><rect x="22.4093%" y="661" width="0.0157%" height="15" fill="rgb(206,52,46)" fg:x="81180" fg:w="57"/><text x="22.6593%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (46 samples, 0.01%)</title><rect x="22.4123%" y="645" width="0.0127%" height="15" fill="rgb(253,136,11)" fg:x="81191" fg:w="46"/><text x="22.6623%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (40 samples, 0.01%)</title><rect x="22.4140%" y="629" width="0.0110%" height="15" fill="rgb(208,106,33)" fg:x="81197" fg:w="40"/><text x="22.6640%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (85 samples, 0.02%)</title><rect x="22.4062%" y="725" width="0.0235%" height="15" fill="rgb(206,54,4)" fg:x="81169" fg:w="85"/><text x="22.6562%" y="735.50"></text></g><g><title>G1ParTask::work (261 samples, 0.07%)</title><rect x="22.3640%" y="757" width="0.0720%" height="15" fill="rgb(213,3,15)" fg:x="81016" fg:w="261"/><text x="22.6140%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (109 samples, 0.03%)</title><rect x="22.4059%" y="741" width="0.0301%" height="15" fill="rgb(252,211,39)" fg:x="81168" fg:w="109"/><text x="22.6559%" y="751.50"></text></g><g><title>ParallelSPCleanupTask::work (57 samples, 0.02%)</title><rect x="22.4487%" y="757" width="0.0157%" height="15" fill="rgb(223,6,36)" fg:x="81323" fg:w="57"/><text x="22.6987%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (48 samples, 0.01%)</title><rect x="22.4512%" y="741" width="0.0133%" height="15" fill="rgb(252,169,45)" fg:x="81332" fg:w="48"/><text x="22.7012%" y="751.50"></text></g><g><title>__GI___clone (403 samples, 0.11%)</title><rect x="22.3618%" y="837" width="0.1112%" height="15" fill="rgb(212,48,26)" fg:x="81008" fg:w="403"/><text x="22.6118%" y="847.50"></text></g><g><title>start_thread (403 samples, 0.11%)</title><rect x="22.3618%" y="821" width="0.1112%" height="15" fill="rgb(251,102,48)" fg:x="81008" fg:w="403"/><text x="22.6118%" y="831.50"></text></g><g><title>thread_native_entry (403 samples, 0.11%)</title><rect x="22.3618%" y="805" width="0.1112%" height="15" fill="rgb(243,208,16)" fg:x="81008" fg:w="403"/><text x="22.6118%" y="815.50"></text></g><g><title>Thread::call_run (403 samples, 0.11%)</title><rect x="22.3618%" y="789" width="0.1112%" height="15" fill="rgb(219,96,24)" fg:x="81008" fg:w="403"/><text x="22.6118%" y="799.50"></text></g><g><title>GangWorker::loop (403 samples, 0.11%)</title><rect x="22.3618%" y="773" width="0.1112%" height="15" fill="rgb(219,33,29)" fg:x="81008" fg:w="403"/><text x="22.6118%" y="783.50"></text></g><g><title>GC_Thread#7 (413 samples, 0.11%)</title><rect x="22.3596%" y="853" width="0.1140%" height="15" fill="rgb(223,176,5)" fg:x="81000" fg:w="413"/><text x="22.6096%" y="863.50"></text></g><g><title>[perf-985085.map] (121 samples, 0.03%)</title><rect x="22.4852%" y="837" width="0.0334%" height="15" fill="rgb(228,140,14)" fg:x="81455" fg:w="121"/><text x="22.7352%" y="847.50"></text></g><g><title>Service_Thread (153 samples, 0.04%)</title><rect x="22.4827%" y="853" width="0.0422%" height="15" fill="rgb(217,179,31)" fg:x="81446" fg:w="153"/><text x="22.7327%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (181 samples, 0.05%)</title><rect x="22.5580%" y="501" width="0.0500%" height="15" fill="rgb(230,9,30)" fg:x="81719" fg:w="181"/><text x="22.8080%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (175 samples, 0.05%)</title><rect x="22.5597%" y="485" width="0.0483%" height="15" fill="rgb(230,136,20)" fg:x="81725" fg:w="175"/><text x="22.8097%" y="495.50"></text></g><g><title>native_write_msr (174 samples, 0.05%)</title><rect x="22.5600%" y="469" width="0.0480%" height="15" fill="rgb(215,210,22)" fg:x="81726" fg:w="174"/><text x="22.8100%" y="479.50"></text></g><g><title>finish_task_switch (193 samples, 0.05%)</title><rect x="22.5575%" y="517" width="0.0533%" height="15" fill="rgb(218,43,5)" fg:x="81717" fg:w="193"/><text x="22.8075%" y="527.50"></text></g><g><title>futex_wait_queue_me (265 samples, 0.07%)</title><rect x="22.5434%" y="565" width="0.0732%" height="15" fill="rgb(216,11,5)" fg:x="81666" fg:w="265"/><text x="22.7934%" y="575.50"></text></g><g><title>schedule (249 samples, 0.07%)</title><rect x="22.5478%" y="549" width="0.0687%" height="15" fill="rgb(209,82,29)" fg:x="81682" fg:w="249"/><text x="22.7978%" y="559.50"></text></g><g><title>__schedule (248 samples, 0.07%)</title><rect x="22.5481%" y="533" width="0.0685%" height="15" fill="rgb(244,115,12)" fg:x="81683" fg:w="248"/><text x="22.7981%" y="543.50"></text></g><g><title>do_futex (286 samples, 0.08%)</title><rect x="22.5429%" y="597" width="0.0789%" height="15" fill="rgb(222,82,18)" fg:x="81664" fg:w="286"/><text x="22.7929%" y="607.50"></text></g><g><title>futex_wait (285 samples, 0.08%)</title><rect x="22.5431%" y="581" width="0.0787%" height="15" fill="rgb(249,227,8)" fg:x="81665" fg:w="285"/><text x="22.7931%" y="591.50"></text></g><g><title>do_syscall_64 (297 samples, 0.08%)</title><rect x="22.5404%" y="629" width="0.0820%" height="15" fill="rgb(253,141,45)" fg:x="81655" fg:w="297"/><text x="22.7904%" y="639.50"></text></g><g><title>__x64_sys_futex (297 samples, 0.08%)</title><rect x="22.5404%" y="613" width="0.0820%" height="15" fill="rgb(234,184,4)" fg:x="81655" fg:w="297"/><text x="22.7904%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (305 samples, 0.08%)</title><rect x="22.5396%" y="645" width="0.0842%" height="15" fill="rgb(218,194,23)" fg:x="81652" fg:w="305"/><text x="22.7896%" y="655.50"></text></g><g><title>__pthread_cond_timedwait (324 samples, 0.09%)</title><rect x="22.5346%" y="693" width="0.0894%" height="15" fill="rgb(235,66,41)" fg:x="81634" fg:w="324"/><text x="22.7846%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (324 samples, 0.09%)</title><rect x="22.5346%" y="677" width="0.0894%" height="15" fill="rgb(245,217,1)" fg:x="81634" fg:w="324"/><text x="22.7846%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (315 samples, 0.09%)</title><rect x="22.5371%" y="661" width="0.0870%" height="15" fill="rgb(229,91,1)" fg:x="81643" fg:w="315"/><text x="22.7871%" y="671.50"></text></g><g><title>Monitor::wait (358 samples, 0.10%)</title><rect x="22.5304%" y="741" width="0.0988%" height="15" fill="rgb(207,101,30)" fg:x="81619" fg:w="358"/><text x="22.7804%" y="751.50"></text></g><g><title>Monitor::IWait (355 samples, 0.10%)</title><rect x="22.5313%" y="725" width="0.0980%" height="15" fill="rgb(223,82,49)" fg:x="81622" fg:w="355"/><text x="22.7813%" y="735.50"></text></g><g><title>os::PlatformEvent::park (348 samples, 0.10%)</title><rect x="22.5332%" y="709" width="0.0961%" height="15" fill="rgb(218,167,17)" fg:x="81629" fg:w="348"/><text x="22.7832%" y="719.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (44 samples, 0.01%)</title><rect x="22.6364%" y="693" width="0.0121%" height="15" fill="rgb(208,103,14)" fg:x="82003" fg:w="44"/><text x="22.8864%" y="703.50"></text></g><g><title>NMethodSweeper::process_compiled_method (60 samples, 0.02%)</title><rect x="22.6362%" y="709" width="0.0166%" height="15" fill="rgb(238,20,8)" fg:x="82002" fg:w="60"/><text x="22.8862%" y="719.50"></text></g><g><title>NMethodSweeper::possibly_sweep (88 samples, 0.02%)</title><rect x="22.6293%" y="741" width="0.0243%" height="15" fill="rgb(218,80,54)" fg:x="81977" fg:w="88"/><text x="22.8793%" y="751.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (83 samples, 0.02%)</title><rect x="22.6306%" y="725" width="0.0229%" height="15" fill="rgb(240,144,17)" fg:x="81982" fg:w="83"/><text x="22.8806%" y="735.50"></text></g><g><title>__GI___clone (467 samples, 0.13%)</title><rect x="22.5280%" y="837" width="0.1289%" height="15" fill="rgb(245,27,50)" fg:x="81610" fg:w="467"/><text x="22.7780%" y="847.50"></text></g><g><title>start_thread (467 samples, 0.13%)</title><rect x="22.5280%" y="821" width="0.1289%" height="15" fill="rgb(251,51,7)" fg:x="81610" fg:w="467"/><text x="22.7780%" y="831.50"></text></g><g><title>thread_native_entry (467 samples, 0.13%)</title><rect x="22.5280%" y="805" width="0.1289%" height="15" fill="rgb(245,217,29)" fg:x="81610" fg:w="467"/><text x="22.7780%" y="815.50"></text></g><g><title>Thread::call_run (467 samples, 0.13%)</title><rect x="22.5280%" y="789" width="0.1289%" height="15" fill="rgb(221,176,29)" fg:x="81610" fg:w="467"/><text x="22.7780%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (467 samples, 0.13%)</title><rect x="22.5280%" y="773" width="0.1289%" height="15" fill="rgb(212,180,24)" fg:x="81610" fg:w="467"/><text x="22.7780%" y="783.50"></text></g><g><title>NMethodSweeper::sweeper_loop (465 samples, 0.13%)</title><rect x="22.5285%" y="757" width="0.1284%" height="15" fill="rgb(254,24,2)" fg:x="81612" fg:w="465"/><text x="22.7785%" y="767.50"></text></g><g><title>Sweeper_thread (484 samples, 0.13%)</title><rect x="22.5252%" y="853" width="0.1336%" height="15" fill="rgb(230,100,2)" fg:x="81600" fg:w="484"/><text x="22.7752%" y="863.50"></text></g><g><title>[perf-985085.map] (200 samples, 0.06%)</title><rect x="22.6613%" y="837" width="0.0552%" height="15" fill="rgb(219,142,25)" fg:x="82093" fg:w="200"/><text x="22.9113%" y="847.50"></text></g><g><title>Thread-0 (231 samples, 0.06%)</title><rect x="22.6588%" y="853" width="0.0638%" height="15" fill="rgb(240,73,43)" fg:x="82084" fg:w="231"/><text x="22.9088%" y="863.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="22.7262%" y="629" width="0.0108%" height="15" fill="rgb(214,114,15)" fg:x="82328" fg:w="39"/><text x="22.9762%" y="639.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.01%)</title><rect x="22.7264%" y="613" width="0.0105%" height="15" fill="rgb(207,130,4)" fg:x="82329" fg:w="38"/><text x="22.9764%" y="623.50"></text></g><g><title>do_futex (38 samples, 0.01%)</title><rect x="22.7264%" y="597" width="0.0105%" height="15" fill="rgb(221,25,40)" fg:x="82329" fg:w="38"/><text x="22.9764%" y="607.50"></text></g><g><title>futex_wait (38 samples, 0.01%)</title><rect x="22.7264%" y="581" width="0.0105%" height="15" fill="rgb(241,184,7)" fg:x="82329" fg:w="38"/><text x="22.9764%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (44 samples, 0.01%)</title><rect x="22.7253%" y="693" width="0.0121%" height="15" fill="rgb(235,159,4)" fg:x="82325" fg:w="44"/><text x="22.9753%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (44 samples, 0.01%)</title><rect x="22.7253%" y="677" width="0.0121%" height="15" fill="rgb(214,87,48)" fg:x="82325" fg:w="44"/><text x="22.9753%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (43 samples, 0.01%)</title><rect x="22.7256%" y="661" width="0.0119%" height="15" fill="rgb(246,198,24)" fg:x="82326" fg:w="43"/><text x="22.9756%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="22.7262%" y="645" width="0.0113%" height="15" fill="rgb(209,66,40)" fg:x="82328" fg:w="41"/><text x="22.9762%" y="655.50"></text></g><g><title>VM_Periodic_Tas (57 samples, 0.02%)</title><rect x="22.7226%" y="853" width="0.0157%" height="15" fill="rgb(233,147,39)" fg:x="82315" fg:w="57"/><text x="22.9726%" y="863.50"></text></g><g><title>__GI___clone (55 samples, 0.02%)</title><rect x="22.7231%" y="837" width="0.0152%" height="15" fill="rgb(231,145,52)" fg:x="82317" fg:w="55"/><text x="22.9731%" y="847.50"></text></g><g><title>start_thread (55 samples, 0.02%)</title><rect x="22.7231%" y="821" width="0.0152%" height="15" fill="rgb(206,20,26)" fg:x="82317" fg:w="55"/><text x="22.9731%" y="831.50"></text></g><g><title>thread_native_entry (55 samples, 0.02%)</title><rect x="22.7231%" y="805" width="0.0152%" height="15" fill="rgb(238,220,4)" fg:x="82317" fg:w="55"/><text x="22.9731%" y="815.50"></text></g><g><title>Thread::call_run (55 samples, 0.02%)</title><rect x="22.7231%" y="789" width="0.0152%" height="15" fill="rgb(252,195,42)" fg:x="82317" fg:w="55"/><text x="22.9731%" y="799.50"></text></g><g><title>WatcherThread::run (55 samples, 0.02%)</title><rect x="22.7231%" y="773" width="0.0152%" height="15" fill="rgb(209,10,6)" fg:x="82317" fg:w="55"/><text x="22.9731%" y="783.50"></text></g><g><title>WatcherThread::sleep (48 samples, 0.01%)</title><rect x="22.7251%" y="757" width="0.0133%" height="15" fill="rgb(229,3,52)" fg:x="82324" fg:w="48"/><text x="22.9751%" y="767.50"></text></g><g><title>Monitor::wait (47 samples, 0.01%)</title><rect x="22.7253%" y="741" width="0.0130%" height="15" fill="rgb(253,49,37)" fg:x="82325" fg:w="47"/><text x="22.9753%" y="751.50"></text></g><g><title>Monitor::IWait (47 samples, 0.01%)</title><rect x="22.7253%" y="725" width="0.0130%" height="15" fill="rgb(240,103,49)" fg:x="82325" fg:w="47"/><text x="22.9753%" y="735.50"></text></g><g><title>os::PlatformEvent::park (47 samples, 0.01%)</title><rect x="22.7253%" y="709" width="0.0130%" height="15" fill="rgb(250,182,30)" fg:x="82325" fg:w="47"/><text x="22.9753%" y="719.50"></text></g><g><title>[unknown] (123 samples, 0.03%)</title><rect x="22.7435%" y="837" width="0.0340%" height="15" fill="rgb(248,8,30)" fg:x="82391" fg:w="123"/><text x="22.9935%" y="847.50"></text></g><g><title>vframe::sender (111 samples, 0.03%)</title><rect x="22.7469%" y="821" width="0.0306%" height="15" fill="rgb(237,120,30)" fg:x="82403" fg:w="111"/><text x="22.9969%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.01%)</title><rect x="22.7902%" y="501" width="0.0135%" height="15" fill="rgb(221,146,34)" fg:x="82560" fg:w="49"/><text x="23.0402%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.01%)</title><rect x="22.7902%" y="485" width="0.0135%" height="15" fill="rgb(242,55,13)" fg:x="82560" fg:w="49"/><text x="23.0402%" y="495.50"></text></g><g><title>native_write_msr (49 samples, 0.01%)</title><rect x="22.7902%" y="469" width="0.0135%" height="15" fill="rgb(242,112,31)" fg:x="82560" fg:w="49"/><text x="23.0402%" y="479.50"></text></g><g><title>finish_task_switch (50 samples, 0.01%)</title><rect x="22.7902%" y="517" width="0.0138%" height="15" fill="rgb(249,192,27)" fg:x="82560" fg:w="50"/><text x="23.0402%" y="527.50"></text></g><g><title>futex_wait_queue_me (63 samples, 0.02%)</title><rect x="22.7874%" y="565" width="0.0174%" height="15" fill="rgb(208,204,44)" fg:x="82550" fg:w="63"/><text x="23.0374%" y="575.50"></text></g><g><title>schedule (59 samples, 0.02%)</title><rect x="22.7885%" y="549" width="0.0163%" height="15" fill="rgb(208,93,54)" fg:x="82554" fg:w="59"/><text x="23.0385%" y="559.50"></text></g><g><title>__schedule (58 samples, 0.02%)</title><rect x="22.7888%" y="533" width="0.0160%" height="15" fill="rgb(242,1,31)" fg:x="82555" fg:w="58"/><text x="23.0388%" y="543.50"></text></g><g><title>do_futex (66 samples, 0.02%)</title><rect x="22.7872%" y="597" width="0.0182%" height="15" fill="rgb(241,83,25)" fg:x="82549" fg:w="66"/><text x="23.0372%" y="607.50"></text></g><g><title>futex_wait (66 samples, 0.02%)</title><rect x="22.7872%" y="581" width="0.0182%" height="15" fill="rgb(205,169,50)" fg:x="82549" fg:w="66"/><text x="23.0372%" y="591.50"></text></g><g><title>do_syscall_64 (67 samples, 0.02%)</title><rect x="22.7872%" y="629" width="0.0185%" height="15" fill="rgb(239,186,37)" fg:x="82549" fg:w="67"/><text x="23.0372%" y="639.50"></text></g><g><title>__x64_sys_futex (67 samples, 0.02%)</title><rect x="22.7872%" y="613" width="0.0185%" height="15" fill="rgb(205,221,10)" fg:x="82549" fg:w="67"/><text x="23.0372%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (70 samples, 0.02%)</title><rect x="22.7866%" y="693" width="0.0193%" height="15" fill="rgb(218,196,15)" fg:x="82547" fg:w="70"/><text x="23.0366%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (70 samples, 0.02%)</title><rect x="22.7866%" y="677" width="0.0193%" height="15" fill="rgb(218,196,35)" fg:x="82547" fg:w="70"/><text x="23.0366%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (70 samples, 0.02%)</title><rect x="22.7866%" y="661" width="0.0193%" height="15" fill="rgb(233,63,24)" fg:x="82547" fg:w="70"/><text x="23.0366%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.02%)</title><rect x="22.7872%" y="645" width="0.0188%" height="15" fill="rgb(225,8,4)" fg:x="82549" fg:w="68"/><text x="23.0372%" y="655.50"></text></g><g><title>Monitor::wait (73 samples, 0.02%)</title><rect x="22.7863%" y="741" width="0.0202%" height="15" fill="rgb(234,105,35)" fg:x="82546" fg:w="73"/><text x="23.0363%" y="751.50"></text></g><g><title>Monitor::IWait (73 samples, 0.02%)</title><rect x="22.7863%" y="725" width="0.0202%" height="15" fill="rgb(236,21,32)" fg:x="82546" fg:w="73"/><text x="23.0363%" y="735.50"></text></g><g><title>os::PlatformEvent::park (73 samples, 0.02%)</title><rect x="22.7863%" y="709" width="0.0202%" height="15" fill="rgb(228,109,6)" fg:x="82546" fg:w="73"/><text x="23.0363%" y="719.50"></text></g><g><title>PosixSemaphore::signal (68 samples, 0.02%)</title><rect x="22.8609%" y="677" width="0.0188%" height="15" fill="rgb(229,215,31)" fg:x="82816" fg:w="68"/><text x="23.1109%" y="687.50"></text></g><g><title>__new_sem_post (68 samples, 0.02%)</title><rect x="22.8609%" y="661" width="0.0188%" height="15" fill="rgb(221,52,54)" fg:x="82816" fg:w="68"/><text x="23.1109%" y="671.50"></text></g><g><title>futex_wake (68 samples, 0.02%)</title><rect x="22.8609%" y="645" width="0.0188%" height="15" fill="rgb(252,129,43)" fg:x="82816" fg:w="68"/><text x="23.1109%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.02%)</title><rect x="22.8620%" y="629" width="0.0177%" height="15" fill="rgb(248,183,27)" fg:x="82820" fg:w="64"/><text x="23.1120%" y="639.50"></text></g><g><title>do_syscall_64 (64 samples, 0.02%)</title><rect x="22.8620%" y="613" width="0.0177%" height="15" fill="rgb(250,0,22)" fg:x="82820" fg:w="64"/><text x="23.1120%" y="623.50"></text></g><g><title>__x64_sys_futex (64 samples, 0.02%)</title><rect x="22.8620%" y="597" width="0.0177%" height="15" fill="rgb(213,166,10)" fg:x="82820" fg:w="64"/><text x="23.1120%" y="607.50"></text></g><g><title>do_futex (64 samples, 0.02%)</title><rect x="22.8620%" y="581" width="0.0177%" height="15" fill="rgb(207,163,36)" fg:x="82820" fg:w="64"/><text x="23.1120%" y="591.50"></text></g><g><title>futex_wake (64 samples, 0.02%)</title><rect x="22.8620%" y="565" width="0.0177%" height="15" fill="rgb(208,122,22)" fg:x="82820" fg:w="64"/><text x="23.1120%" y="575.50"></text></g><g><title>wake_up_q (57 samples, 0.02%)</title><rect x="22.8639%" y="549" width="0.0157%" height="15" fill="rgb(207,104,49)" fg:x="82827" fg:w="57"/><text x="23.1139%" y="559.50"></text></g><g><title>try_to_wake_up (56 samples, 0.02%)</title><rect x="22.8642%" y="533" width="0.0155%" height="15" fill="rgb(248,211,50)" fg:x="82828" fg:w="56"/><text x="23.1142%" y="543.50"></text></g><g><title>WorkGang::run_task (84 samples, 0.02%)</title><rect x="22.8609%" y="709" width="0.0232%" height="15" fill="rgb(217,13,45)" fg:x="82816" fg:w="84"/><text x="23.1109%" y="719.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (84 samples, 0.02%)</title><rect x="22.8609%" y="693" width="0.0232%" height="15" fill="rgb(211,216,49)" fg:x="82816" fg:w="84"/><text x="23.1109%" y="703.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (89 samples, 0.02%)</title><rect x="22.8600%" y="725" width="0.0246%" height="15" fill="rgb(221,58,53)" fg:x="82813" fg:w="89"/><text x="23.1100%" y="735.50"></text></g><g><title>SafepointSynchronize::begin (324 samples, 0.09%)</title><rect x="22.8065%" y="741" width="0.0894%" height="15" fill="rgb(220,112,41)" fg:x="82619" fg:w="324"/><text x="23.0565%" y="751.50"></text></g><g><title>CodeHeap::next_used (39 samples, 0.01%)</title><rect x="22.9152%" y="661" width="0.0108%" height="15" fill="rgb(236,38,28)" fg:x="83013" fg:w="39"/><text x="23.1652%" y="671.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (58 samples, 0.02%)</title><rect x="22.9122%" y="677" width="0.0160%" height="15" fill="rgb(227,195,22)" fg:x="83002" fg:w="58"/><text x="23.1622%" y="687.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (59 samples, 0.02%)</title><rect x="22.9122%" y="693" width="0.0163%" height="15" fill="rgb(214,55,33)" fg:x="83002" fg:w="59"/><text x="23.1622%" y="703.50"></text></g><g><title>VM_Deoptimize::doit (62 samples, 0.02%)</title><rect x="22.9122%" y="709" width="0.0171%" height="15" fill="rgb(248,80,13)" fg:x="83002" fg:w="62"/><text x="23.1622%" y="719.50"></text></g><g><title>VM_Operation::evaluate (119 samples, 0.03%)</title><rect x="22.9042%" y="725" width="0.0328%" height="15" fill="rgb(238,52,6)" fg:x="82973" fg:w="119"/><text x="23.1542%" y="735.50"></text></g><g><title>VMThread::evaluate_operation (120 samples, 0.03%)</title><rect x="22.9042%" y="741" width="0.0331%" height="15" fill="rgb(224,198,47)" fg:x="82973" fg:w="120"/><text x="23.1542%" y="751.50"></text></g><g><title>Thread::call_run (569 samples, 0.16%)</title><rect x="22.7811%" y="789" width="0.1571%" height="15" fill="rgb(233,171,20)" fg:x="82527" fg:w="569"/><text x="23.0311%" y="799.50"></text></g><g><title>VMThread::run (569 samples, 0.16%)</title><rect x="22.7811%" y="773" width="0.1571%" height="15" fill="rgb(241,30,25)" fg:x="82527" fg:w="569"/><text x="23.0311%" y="783.50"></text></g><g><title>VMThread::loop (568 samples, 0.16%)</title><rect x="22.7814%" y="757" width="0.1568%" height="15" fill="rgb(207,171,38)" fg:x="82528" fg:w="568"/><text x="23.0314%" y="767.50"></text></g><g><title>__GI___clone (584 samples, 0.16%)</title><rect x="22.7775%" y="837" width="0.1612%" height="15" fill="rgb(234,70,1)" fg:x="82514" fg:w="584"/><text x="23.0275%" y="847.50"></text></g><g><title>start_thread (571 samples, 0.16%)</title><rect x="22.7811%" y="821" width="0.1576%" height="15" fill="rgb(232,178,18)" fg:x="82527" fg:w="571"/><text x="23.0311%" y="831.50"></text></g><g><title>thread_native_entry (571 samples, 0.16%)</title><rect x="22.7811%" y="805" width="0.1576%" height="15" fill="rgb(241,78,40)" fg:x="82527" fg:w="571"/><text x="23.0311%" y="815.50"></text></g><g><title>VM_Thread (727 samples, 0.20%)</title><rect x="22.7383%" y="853" width="0.2007%" height="15" fill="rgb(222,35,25)" fg:x="82372" fg:w="727"/><text x="22.9883%" y="863.50"></text></g><g><title>schedule_hrtimeout_range_clock (38 samples, 0.01%)</title><rect x="23.0530%" y="757" width="0.0105%" height="15" fill="rgb(207,92,16)" fg:x="83512" fg:w="38"/><text x="23.3030%" y="767.50"></text></g><g><title>__x64_sys_epoll_pwait (51 samples, 0.01%)</title><rect x="23.0497%" y="789" width="0.0141%" height="15" fill="rgb(216,59,51)" fg:x="83500" fg:w="51"/><text x="23.2997%" y="799.50"></text></g><g><title>do_epoll_wait (50 samples, 0.01%)</title><rect x="23.0500%" y="773" width="0.0138%" height="15" fill="rgb(213,80,28)" fg:x="83501" fg:w="50"/><text x="23.3000%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (159 samples, 0.04%)</title><rect x="23.0698%" y="677" width="0.0439%" height="15" fill="rgb(220,93,7)" fg:x="83573" fg:w="159"/><text x="23.3198%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (154 samples, 0.04%)</title><rect x="23.0712%" y="661" width="0.0425%" height="15" fill="rgb(225,24,44)" fg:x="83578" fg:w="154"/><text x="23.3212%" y="671.50"></text></g><g><title>native_write_msr (154 samples, 0.04%)</title><rect x="23.0712%" y="645" width="0.0425%" height="15" fill="rgb(243,74,40)" fg:x="83578" fg:w="154"/><text x="23.3212%" y="655.50"></text></g><g><title>finish_task_switch (177 samples, 0.05%)</title><rect x="23.0685%" y="693" width="0.0489%" height="15" fill="rgb(228,39,7)" fg:x="83568" fg:w="177"/><text x="23.3185%" y="703.50"></text></g><g><title>futex_wait (193 samples, 0.05%)</title><rect x="23.0649%" y="757" width="0.0533%" height="15" fill="rgb(227,79,8)" fg:x="83555" fg:w="193"/><text x="23.3149%" y="767.50"></text></g><g><title>futex_wait_queue_me (192 samples, 0.05%)</title><rect x="23.0651%" y="741" width="0.0530%" height="15" fill="rgb(236,58,11)" fg:x="83556" fg:w="192"/><text x="23.3151%" y="751.50"></text></g><g><title>schedule (188 samples, 0.05%)</title><rect x="23.0662%" y="725" width="0.0519%" height="15" fill="rgb(249,63,35)" fg:x="83560" fg:w="188"/><text x="23.3162%" y="735.50"></text></g><g><title>__schedule (187 samples, 0.05%)</title><rect x="23.0665%" y="709" width="0.0516%" height="15" fill="rgb(252,114,16)" fg:x="83561" fg:w="187"/><text x="23.3165%" y="719.50"></text></g><g><title>__x64_sys_futex (211 samples, 0.06%)</title><rect x="23.0643%" y="789" width="0.0582%" height="15" fill="rgb(254,151,24)" fg:x="83553" fg:w="211"/><text x="23.3143%" y="799.50"></text></g><g><title>do_futex (209 samples, 0.06%)</title><rect x="23.0649%" y="773" width="0.0577%" height="15" fill="rgb(253,54,39)" fg:x="83555" fg:w="209"/><text x="23.3149%" y="783.50"></text></g><g><title>do_syscall_64 (344 samples, 0.09%)</title><rect x="23.0483%" y="805" width="0.0950%" height="15" fill="rgb(243,25,45)" fg:x="83495" fg:w="344"/><text x="23.2983%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (357 samples, 0.10%)</title><rect x="23.0475%" y="821" width="0.0985%" height="15" fill="rgb(234,134,9)" fg:x="83492" fg:w="357"/><text x="23.2975%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.01%)</title><rect x="23.1485%" y="773" width="0.0116%" height="15" fill="rgb(227,166,31)" fg:x="83858" fg:w="42"/><text x="23.3985%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (41 samples, 0.01%)</title><rect x="23.1488%" y="757" width="0.0113%" height="15" fill="rgb(245,143,41)" fg:x="83859" fg:w="41"/><text x="23.3988%" y="767.50"></text></g><g><title>native_write_msr (41 samples, 0.01%)</title><rect x="23.1488%" y="741" width="0.0113%" height="15" fill="rgb(238,181,32)" fg:x="83859" fg:w="41"/><text x="23.3988%" y="751.50"></text></g><g><title>schedule_tail (46 samples, 0.01%)</title><rect x="23.1482%" y="805" width="0.0127%" height="15" fill="rgb(224,113,18)" fg:x="83857" fg:w="46"/><text x="23.3982%" y="815.50"></text></g><g><title>finish_task_switch (46 samples, 0.01%)</title><rect x="23.1482%" y="789" width="0.0127%" height="15" fill="rgb(240,229,28)" fg:x="83857" fg:w="46"/><text x="23.3982%" y="799.50"></text></g><g><title>ret_from_fork (50 samples, 0.01%)</title><rect x="23.1474%" y="821" width="0.0138%" height="15" fill="rgb(250,185,3)" fg:x="83854" fg:w="50"/><text x="23.3974%" y="831.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (783 samples, 0.22%)</title><rect x="22.9456%" y="837" width="0.2161%" height="15" fill="rgb(212,59,25)" fg:x="83123" fg:w="783"/><text x="23.1956%" y="847.50"></text></g><g><title>bazel (845 samples, 0.23%)</title><rect x="22.9442%" y="853" width="0.2333%" height="15" fill="rgb(221,87,20)" fg:x="83118" fg:w="845"/><text x="23.1942%" y="863.50"></text></g><g><title>RunfilesCreator::ReadManifest (42 samples, 0.01%)</title><rect x="23.1822%" y="821" width="0.0116%" height="15" fill="rgb(213,74,28)" fg:x="83980" fg:w="42"/><text x="23.4322%" y="831.50"></text></g><g><title>[unknown] (47 samples, 0.01%)</title><rect x="23.1822%" y="837" width="0.0130%" height="15" fill="rgb(224,132,34)" fg:x="83980" fg:w="47"/><text x="23.4322%" y="847.50"></text></g><g><title>RunfilesCreator::CreateFiles (52 samples, 0.01%)</title><rect x="23.2062%" y="773" width="0.0144%" height="15" fill="rgb(222,101,24)" fg:x="84067" fg:w="52"/><text x="23.4562%" y="783.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (144 samples, 0.04%)</title><rect x="23.2062%" y="789" width="0.0398%" height="15" fill="rgb(254,142,4)" fg:x="84067" fg:w="144"/><text x="23.4562%" y="799.50"></text></g><g><title>rename (64 samples, 0.02%)</title><rect x="23.2283%" y="773" width="0.0177%" height="15" fill="rgb(230,229,49)" fg:x="84147" fg:w="64"/><text x="23.4783%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.02%)</title><rect x="23.2291%" y="757" width="0.0168%" height="15" fill="rgb(238,70,47)" fg:x="84150" fg:w="61"/><text x="23.4791%" y="767.50"></text></g><g><title>do_syscall_64 (61 samples, 0.02%)</title><rect x="23.2291%" y="741" width="0.0168%" height="15" fill="rgb(231,160,17)" fg:x="84150" fg:w="61"/><text x="23.4791%" y="751.50"></text></g><g><title>__x64_sys_rename (61 samples, 0.02%)</title><rect x="23.2291%" y="725" width="0.0168%" height="15" fill="rgb(218,68,53)" fg:x="84150" fg:w="61"/><text x="23.4791%" y="735.50"></text></g><g><title>do_renameat2 (61 samples, 0.02%)</title><rect x="23.2291%" y="709" width="0.0168%" height="15" fill="rgb(236,111,10)" fg:x="84150" fg:w="61"/><text x="23.4791%" y="719.50"></text></g><g><title>vfs_rename (60 samples, 0.02%)</title><rect x="23.2294%" y="693" width="0.0166%" height="15" fill="rgb(224,34,41)" fg:x="84151" fg:w="60"/><text x="23.4794%" y="703.50"></text></g><g><title>btrfs_rename2 (59 samples, 0.02%)</title><rect x="23.2297%" y="677" width="0.0163%" height="15" fill="rgb(241,118,19)" fg:x="84152" fg:w="59"/><text x="23.4797%" y="687.50"></text></g><g><title>__libc_start_main (165 samples, 0.05%)</title><rect x="23.2026%" y="821" width="0.0455%" height="15" fill="rgb(238,129,25)" fg:x="84054" fg:w="165"/><text x="23.4526%" y="831.50"></text></g><g><title>main (152 samples, 0.04%)</title><rect x="23.2062%" y="805" width="0.0420%" height="15" fill="rgb(238,22,31)" fg:x="84067" fg:w="152"/><text x="23.4562%" y="815.50"></text></g><g><title>ksys_mmap_pgoff (37 samples, 0.01%)</title><rect x="23.2556%" y="597" width="0.0102%" height="15" fill="rgb(222,174,48)" fg:x="84246" fg:w="37"/><text x="23.5056%" y="607.50"></text></g><g><title>vm_mmap_pgoff (37 samples, 0.01%)</title><rect x="23.2556%" y="581" width="0.0102%" height="15" fill="rgb(206,152,40)" fg:x="84246" fg:w="37"/><text x="23.5056%" y="591.50"></text></g><g><title>_dl_map_segments (44 samples, 0.01%)</title><rect x="23.2540%" y="677" width="0.0121%" height="15" fill="rgb(218,99,54)" fg:x="84240" fg:w="44"/><text x="23.5040%" y="687.50"></text></g><g><title>__mmap64 (38 samples, 0.01%)</title><rect x="23.2556%" y="661" width="0.0105%" height="15" fill="rgb(220,174,26)" fg:x="84246" fg:w="38"/><text x="23.5056%" y="671.50"></text></g><g><title>__mmap64 (38 samples, 0.01%)</title><rect x="23.2556%" y="645" width="0.0105%" height="15" fill="rgb(245,116,9)" fg:x="84246" fg:w="38"/><text x="23.5056%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="23.2556%" y="629" width="0.0105%" height="15" fill="rgb(209,72,35)" fg:x="84246" fg:w="38"/><text x="23.5056%" y="639.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="23.2556%" y="613" width="0.0105%" height="15" fill="rgb(226,126,21)" fg:x="84246" fg:w="38"/><text x="23.5056%" y="623.50"></text></g><g><title>_dl_map_object_from_fd (62 samples, 0.02%)</title><rect x="23.2537%" y="693" width="0.0171%" height="15" fill="rgb(227,192,1)" fg:x="84239" fg:w="62"/><text x="23.5037%" y="703.50"></text></g><g><title>_dl_catch_exception (83 samples, 0.02%)</title><rect x="23.2515%" y="741" width="0.0229%" height="15" fill="rgb(237,180,29)" fg:x="84231" fg:w="83"/><text x="23.5015%" y="751.50"></text></g><g><title>openaux (83 samples, 0.02%)</title><rect x="23.2515%" y="725" width="0.0229%" height="15" fill="rgb(230,197,35)" fg:x="84231" fg:w="83"/><text x="23.5015%" y="735.50"></text></g><g><title>_dl_map_object (83 samples, 0.02%)</title><rect x="23.2515%" y="709" width="0.0229%" height="15" fill="rgb(246,193,31)" fg:x="84231" fg:w="83"/><text x="23.5015%" y="719.50"></text></g><g><title>_dl_map_object_deps (86 samples, 0.02%)</title><rect x="23.2509%" y="757" width="0.0237%" height="15" fill="rgb(241,36,4)" fg:x="84229" fg:w="86"/><text x="23.5009%" y="767.50"></text></g><g><title>dl_new_hash (45 samples, 0.01%)</title><rect x="23.2943%" y="693" width="0.0124%" height="15" fill="rgb(241,130,17)" fg:x="84386" fg:w="45"/><text x="23.5443%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (120 samples, 0.03%)</title><rect x="23.2923%" y="709" width="0.0331%" height="15" fill="rgb(206,137,32)" fg:x="84379" fg:w="120"/><text x="23.5423%" y="719.50"></text></g><g><title>do_lookup_x (68 samples, 0.02%)</title><rect x="23.3067%" y="693" width="0.0188%" height="15" fill="rgb(237,228,51)" fg:x="84431" fg:w="68"/><text x="23.5567%" y="703.50"></text></g><g><title>elf_machine_rela (152 samples, 0.04%)</title><rect x="23.2846%" y="725" width="0.0420%" height="15" fill="rgb(243,6,42)" fg:x="84351" fg:w="152"/><text x="23.5346%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (178 samples, 0.05%)</title><rect x="23.2799%" y="741" width="0.0491%" height="15" fill="rgb(251,74,28)" fg:x="84334" fg:w="178"/><text x="23.5299%" y="751.50"></text></g><g><title>_dl_relocate_object (198 samples, 0.05%)</title><rect x="23.2752%" y="757" width="0.0547%" height="15" fill="rgb(218,20,49)" fg:x="84317" fg:w="198"/><text x="23.5252%" y="767.50"></text></g><g><title>[ld-2.31.so] (298 samples, 0.08%)</title><rect x="23.2484%" y="773" width="0.0823%" height="15" fill="rgb(238,28,14)" fg:x="84220" fg:w="298"/><text x="23.4984%" y="783.50"></text></g><g><title>_dl_start_final (307 samples, 0.08%)</title><rect x="23.2482%" y="805" width="0.0847%" height="15" fill="rgb(229,40,46)" fg:x="84219" fg:w="307"/><text x="23.4982%" y="815.50"></text></g><g><title>_dl_sysdep_start (307 samples, 0.08%)</title><rect x="23.2482%" y="789" width="0.0847%" height="15" fill="rgb(244,195,20)" fg:x="84219" fg:w="307"/><text x="23.4982%" y="799.50"></text></g><g><title>_dl_start (310 samples, 0.09%)</title><rect x="23.2482%" y="821" width="0.0856%" height="15" fill="rgb(253,56,35)" fg:x="84219" fg:w="310"/><text x="23.4982%" y="831.50"></text></g><g><title>_start (480 samples, 0.13%)</title><rect x="23.2023%" y="837" width="0.1325%" height="15" fill="rgb(210,149,44)" fg:x="84053" fg:w="480"/><text x="23.4523%" y="847.50"></text></g><g><title>mmput (50 samples, 0.01%)</title><rect x="23.3450%" y="757" width="0.0138%" height="15" fill="rgb(240,135,12)" fg:x="84570" fg:w="50"/><text x="23.5950%" y="767.50"></text></g><g><title>exit_mmap (50 samples, 0.01%)</title><rect x="23.3450%" y="741" width="0.0138%" height="15" fill="rgb(251,24,50)" fg:x="84570" fg:w="50"/><text x="23.5950%" y="751.50"></text></g><g><title>build-runfiles (666 samples, 0.18%)</title><rect x="23.1783%" y="853" width="0.1838%" height="15" fill="rgb(243,200,47)" fg:x="83966" fg:w="666"/><text x="23.4283%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.02%)</title><rect x="23.3373%" y="837" width="0.0248%" height="15" fill="rgb(224,166,26)" fg:x="84542" fg:w="90"/><text x="23.5873%" y="847.50"></text></g><g><title>do_syscall_64 (90 samples, 0.02%)</title><rect x="23.3373%" y="821" width="0.0248%" height="15" fill="rgb(233,0,47)" fg:x="84542" fg:w="90"/><text x="23.5873%" y="831.50"></text></g><g><title>__x64_sys_exit_group (63 samples, 0.02%)</title><rect x="23.3448%" y="805" width="0.0174%" height="15" fill="rgb(253,80,5)" fg:x="84569" fg:w="63"/><text x="23.5948%" y="815.50"></text></g><g><title>do_group_exit (63 samples, 0.02%)</title><rect x="23.3448%" y="789" width="0.0174%" height="15" fill="rgb(214,133,25)" fg:x="84569" fg:w="63"/><text x="23.5948%" y="799.50"></text></g><g><title>do_exit (63 samples, 0.02%)</title><rect x="23.3448%" y="773" width="0.0174%" height="15" fill="rgb(209,27,14)" fg:x="84569" fg:w="63"/><text x="23.5948%" y="783.50"></text></g><g><title>__GI__dl_catch_exception (46 samples, 0.01%)</title><rect x="23.3878%" y="565" width="0.0127%" height="15" fill="rgb(219,102,51)" fg:x="84725" fg:w="46"/><text x="23.6378%" y="575.50"></text></g><g><title>dl_open_worker (46 samples, 0.01%)</title><rect x="23.3878%" y="549" width="0.0127%" height="15" fill="rgb(237,18,16)" fg:x="84725" fg:w="46"/><text x="23.6378%" y="559.50"></text></g><g><title>__GI___libc_dlopen_mode (50 samples, 0.01%)</title><rect x="23.3878%" y="661" width="0.0138%" height="15" fill="rgb(241,85,17)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="671.50"></text></g><g><title>dlerror_run (50 samples, 0.01%)</title><rect x="23.3878%" y="645" width="0.0138%" height="15" fill="rgb(236,90,42)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="655.50"></text></g><g><title>__GI__dl_catch_error (50 samples, 0.01%)</title><rect x="23.3878%" y="629" width="0.0138%" height="15" fill="rgb(249,57,21)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="639.50"></text></g><g><title>__GI__dl_catch_exception (50 samples, 0.01%)</title><rect x="23.3878%" y="613" width="0.0138%" height="15" fill="rgb(243,12,36)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="623.50"></text></g><g><title>do_dlopen (50 samples, 0.01%)</title><rect x="23.3878%" y="597" width="0.0138%" height="15" fill="rgb(253,128,47)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="607.50"></text></g><g><title>_dl_open (50 samples, 0.01%)</title><rect x="23.3878%" y="581" width="0.0138%" height="15" fill="rgb(207,33,20)" fg:x="84725" fg:w="50"/><text x="23.6378%" y="591.50"></text></g><g><title>__GI___nss_lookup (51 samples, 0.01%)</title><rect x="23.3878%" y="709" width="0.0141%" height="15" fill="rgb(233,215,35)" fg:x="84725" fg:w="51"/><text x="23.6378%" y="719.50"></text></g><g><title>__GI___nss_lookup_function (51 samples, 0.01%)</title><rect x="23.3878%" y="693" width="0.0141%" height="15" fill="rgb(249,188,52)" fg:x="84725" fg:w="51"/><text x="23.6378%" y="703.50"></text></g><g><title>nss_load_library (51 samples, 0.01%)</title><rect x="23.3878%" y="677" width="0.0141%" height="15" fill="rgb(225,12,32)" fg:x="84725" fg:w="51"/><text x="23.6378%" y="687.50"></text></g><g><title>getpwuid (95 samples, 0.03%)</title><rect x="23.3878%" y="741" width="0.0262%" height="15" fill="rgb(247,98,14)" fg:x="84725" fg:w="95"/><text x="23.6378%" y="751.50"></text></g><g><title>__getpwuid_r (95 samples, 0.03%)</title><rect x="23.3878%" y="725" width="0.0262%" height="15" fill="rgb(247,219,48)" fg:x="84725" fg:w="95"/><text x="23.6378%" y="735.50"></text></g><g><title>[bash] (118 samples, 0.03%)</title><rect x="23.3837%" y="757" width="0.0326%" height="15" fill="rgb(253,60,48)" fg:x="84710" fg:w="118"/><text x="23.6337%" y="767.50"></text></g><g><title>initialize_shell_variables (152 samples, 0.04%)</title><rect x="23.3834%" y="773" width="0.0420%" height="15" fill="rgb(245,15,52)" fg:x="84709" fg:w="152"/><text x="23.6334%" y="783.50"></text></g><g><title>[bash] (187 samples, 0.05%)</title><rect x="23.3771%" y="789" width="0.0516%" height="15" fill="rgb(220,133,28)" fg:x="84686" fg:w="187"/><text x="23.6271%" y="799.50"></text></g><g><title>bprm_execve (59 samples, 0.02%)</title><rect x="23.4499%" y="581" width="0.0163%" height="15" fill="rgb(217,180,4)" fg:x="84950" fg:w="59"/><text x="23.6999%" y="591.50"></text></g><g><title>shell_execve (74 samples, 0.02%)</title><rect x="23.4488%" y="677" width="0.0204%" height="15" fill="rgb(251,24,1)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="687.50"></text></g><g><title>__GI_execve (74 samples, 0.02%)</title><rect x="23.4488%" y="661" width="0.0204%" height="15" fill="rgb(212,185,49)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.02%)</title><rect x="23.4488%" y="645" width="0.0204%" height="15" fill="rgb(215,175,22)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="655.50"></text></g><g><title>do_syscall_64 (74 samples, 0.02%)</title><rect x="23.4488%" y="629" width="0.0204%" height="15" fill="rgb(250,205,14)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="639.50"></text></g><g><title>__x64_sys_execve (74 samples, 0.02%)</title><rect x="23.4488%" y="613" width="0.0204%" height="15" fill="rgb(225,211,22)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="623.50"></text></g><g><title>do_execveat_common (74 samples, 0.02%)</title><rect x="23.4488%" y="597" width="0.0204%" height="15" fill="rgb(251,179,42)" fg:x="84946" fg:w="74"/><text x="23.6988%" y="607.50"></text></g><g><title>exec_builtin (81 samples, 0.02%)</title><rect x="23.4472%" y="693" width="0.0224%" height="15" fill="rgb(208,216,51)" fg:x="84940" fg:w="81"/><text x="23.6972%" y="703.50"></text></g><g><title>[bash] (102 samples, 0.03%)</title><rect x="23.4417%" y="709" width="0.0282%" height="15" fill="rgb(235,36,11)" fg:x="84920" fg:w="102"/><text x="23.6917%" y="719.50"></text></g><g><title>execute_command (118 samples, 0.03%)</title><rect x="23.4417%" y="741" width="0.0326%" height="15" fill="rgb(213,189,28)" fg:x="84920" fg:w="118"/><text x="23.6917%" y="751.50"></text></g><g><title>execute_command_internal (118 samples, 0.03%)</title><rect x="23.4417%" y="725" width="0.0326%" height="15" fill="rgb(227,203,42)" fg:x="84920" fg:w="118"/><text x="23.6917%" y="735.50"></text></g><g><title>execute_command_internal (131 samples, 0.04%)</title><rect x="23.4392%" y="757" width="0.0362%" height="15" fill="rgb(244,72,36)" fg:x="84911" fg:w="131"/><text x="23.6892%" y="767.50"></text></g><g><title>execute_command (132 samples, 0.04%)</title><rect x="23.4392%" y="773" width="0.0364%" height="15" fill="rgb(213,53,17)" fg:x="84911" fg:w="132"/><text x="23.6892%" y="783.50"></text></g><g><title>[bash] (40 samples, 0.01%)</title><rect x="23.4773%" y="725" width="0.0110%" height="15" fill="rgb(207,167,3)" fg:x="85049" fg:w="40"/><text x="23.7273%" y="735.50"></text></g><g><title>reader_loop (179 samples, 0.05%)</title><rect x="23.4392%" y="789" width="0.0494%" height="15" fill="rgb(216,98,30)" fg:x="84911" fg:w="179"/><text x="23.6892%" y="799.50"></text></g><g><title>read_command (47 samples, 0.01%)</title><rect x="23.4756%" y="773" width="0.0130%" height="15" fill="rgb(236,123,15)" fg:x="85043" fg:w="47"/><text x="23.7256%" y="783.50"></text></g><g><title>parse_command (47 samples, 0.01%)</title><rect x="23.4756%" y="757" width="0.0130%" height="15" fill="rgb(248,81,50)" fg:x="85043" fg:w="47"/><text x="23.7256%" y="767.50"></text></g><g><title>yyparse (47 samples, 0.01%)</title><rect x="23.4756%" y="741" width="0.0130%" height="15" fill="rgb(214,120,4)" fg:x="85043" fg:w="47"/><text x="23.7256%" y="751.50"></text></g><g><title>set_default_locale (40 samples, 0.01%)</title><rect x="23.4900%" y="789" width="0.0110%" height="15" fill="rgb(208,179,34)" fg:x="85095" fg:w="40"/><text x="23.7400%" y="799.50"></text></g><g><title>__libc_start_main (463 samples, 0.13%)</title><rect x="23.3762%" y="821" width="0.1278%" height="15" fill="rgb(227,140,7)" fg:x="84683" fg:w="463"/><text x="23.6262%" y="831.50"></text></g><g><title>main (460 samples, 0.13%)</title><rect x="23.3771%" y="805" width="0.1270%" height="15" fill="rgb(214,22,6)" fg:x="84686" fg:w="460"/><text x="23.6271%" y="815.50"></text></g><g><title>do_mmap (43 samples, 0.01%)</title><rect x="23.5187%" y="565" width="0.0119%" height="15" fill="rgb(207,137,27)" fg:x="85199" fg:w="43"/><text x="23.7687%" y="575.50"></text></g><g><title>mmap_region (41 samples, 0.01%)</title><rect x="23.5192%" y="549" width="0.0113%" height="15" fill="rgb(210,8,46)" fg:x="85201" fg:w="41"/><text x="23.7692%" y="559.50"></text></g><g><title>_dl_map_segments (56 samples, 0.02%)</title><rect x="23.5154%" y="677" width="0.0155%" height="15" fill="rgb(240,16,54)" fg:x="85187" fg:w="56"/><text x="23.7654%" y="687.50"></text></g><g><title>__mmap64 (47 samples, 0.01%)</title><rect x="23.5179%" y="661" width="0.0130%" height="15" fill="rgb(211,209,29)" fg:x="85196" fg:w="47"/><text x="23.7679%" y="671.50"></text></g><g><title>__mmap64 (47 samples, 0.01%)</title><rect x="23.5179%" y="645" width="0.0130%" height="15" fill="rgb(226,228,24)" fg:x="85196" fg:w="47"/><text x="23.7679%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.01%)</title><rect x="23.5179%" y="629" width="0.0130%" height="15" fill="rgb(222,84,9)" fg:x="85196" fg:w="47"/><text x="23.7679%" y="639.50"></text></g><g><title>do_syscall_64 (47 samples, 0.01%)</title><rect x="23.5179%" y="613" width="0.0130%" height="15" fill="rgb(234,203,30)" fg:x="85196" fg:w="47"/><text x="23.7679%" y="623.50"></text></g><g><title>ksys_mmap_pgoff (46 samples, 0.01%)</title><rect x="23.5181%" y="597" width="0.0127%" height="15" fill="rgb(238,109,14)" fg:x="85197" fg:w="46"/><text x="23.7681%" y="607.50"></text></g><g><title>vm_mmap_pgoff (44 samples, 0.01%)</title><rect x="23.5187%" y="581" width="0.0121%" height="15" fill="rgb(233,206,34)" fg:x="85199" fg:w="44"/><text x="23.7687%" y="591.50"></text></g><g><title>_dl_map_object_from_fd (83 samples, 0.02%)</title><rect x="23.5134%" y="693" width="0.0229%" height="15" fill="rgb(220,167,47)" fg:x="85180" fg:w="83"/><text x="23.7634%" y="703.50"></text></g><g><title>_dl_catch_exception (122 samples, 0.03%)</title><rect x="23.5079%" y="741" width="0.0337%" height="15" fill="rgb(238,105,10)" fg:x="85160" fg:w="122"/><text x="23.7579%" y="751.50"></text></g><g><title>openaux (122 samples, 0.03%)</title><rect x="23.5079%" y="725" width="0.0337%" height="15" fill="rgb(213,227,17)" fg:x="85160" fg:w="122"/><text x="23.7579%" y="735.50"></text></g><g><title>_dl_map_object (122 samples, 0.03%)</title><rect x="23.5079%" y="709" width="0.0337%" height="15" fill="rgb(217,132,38)" fg:x="85160" fg:w="122"/><text x="23.7579%" y="719.50"></text></g><g><title>_dl_map_object_deps (127 samples, 0.04%)</title><rect x="23.5074%" y="757" width="0.0351%" height="15" fill="rgb(242,146,4)" fg:x="85158" fg:w="127"/><text x="23.7574%" y="767.50"></text></g><g><title>elf_machine_rela (62 samples, 0.02%)</title><rect x="23.5526%" y="725" width="0.0171%" height="15" fill="rgb(212,61,9)" fg:x="85322" fg:w="62"/><text x="23.8026%" y="735.50"></text></g><g><title>_dl_lookup_symbol_x (47 samples, 0.01%)</title><rect x="23.5568%" y="709" width="0.0130%" height="15" fill="rgb(247,126,22)" fg:x="85337" fg:w="47"/><text x="23.8068%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (101 samples, 0.03%)</title><rect x="23.5488%" y="741" width="0.0279%" height="15" fill="rgb(220,196,2)" fg:x="85308" fg:w="101"/><text x="23.7988%" y="751.50"></text></g><g><title>_dl_relocate_object (118 samples, 0.03%)</title><rect x="23.5446%" y="757" width="0.0326%" height="15" fill="rgb(208,46,4)" fg:x="85293" fg:w="118"/><text x="23.7946%" y="767.50"></text></g><g><title>[ld-2.31.so] (286 samples, 0.08%)</title><rect x="23.5043%" y="773" width="0.0789%" height="15" fill="rgb(252,104,46)" fg:x="85147" fg:w="286"/><text x="23.7543%" y="783.50"></text></g><g><title>_dl_start_final (298 samples, 0.08%)</title><rect x="23.5043%" y="805" width="0.0823%" height="15" fill="rgb(237,152,48)" fg:x="85147" fg:w="298"/><text x="23.7543%" y="815.50"></text></g><g><title>_dl_sysdep_start (298 samples, 0.08%)</title><rect x="23.5043%" y="789" width="0.0823%" height="15" fill="rgb(221,59,37)" fg:x="85147" fg:w="298"/><text x="23.7543%" y="799.50"></text></g><g><title>_dl_start (307 samples, 0.08%)</title><rect x="23.5040%" y="821" width="0.0847%" height="15" fill="rgb(209,202,51)" fg:x="85146" fg:w="307"/><text x="23.7540%" y="831.50"></text></g><g><title>_start (781 samples, 0.22%)</title><rect x="23.3762%" y="837" width="0.2156%" height="15" fill="rgb(228,81,30)" fg:x="84683" fg:w="781"/><text x="23.6262%" y="847.50"></text></g><g><title>exit_mmap (72 samples, 0.02%)</title><rect x="23.6037%" y="709" width="0.0199%" height="15" fill="rgb(227,42,39)" fg:x="85507" fg:w="72"/><text x="23.8537%" y="719.50"></text></g><g><title>mmput (73 samples, 0.02%)</title><rect x="23.6037%" y="725" width="0.0202%" height="15" fill="rgb(221,26,2)" fg:x="85507" fg:w="73"/><text x="23.8537%" y="735.50"></text></g><g><title>begin_new_exec (79 samples, 0.02%)</title><rect x="23.6029%" y="741" width="0.0218%" height="15" fill="rgb(254,61,31)" fg:x="85504" fg:w="79"/><text x="23.8529%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (140 samples, 0.04%)</title><rect x="23.6004%" y="837" width="0.0386%" height="15" fill="rgb(222,173,38)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="847.50"></text></g><g><title>do_syscall_64 (140 samples, 0.04%)</title><rect x="23.6004%" y="821" width="0.0386%" height="15" fill="rgb(218,50,12)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="831.50"></text></g><g><title>__x64_sys_execve (140 samples, 0.04%)</title><rect x="23.6004%" y="805" width="0.0386%" height="15" fill="rgb(223,88,40)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="815.50"></text></g><g><title>do_execveat_common (140 samples, 0.04%)</title><rect x="23.6004%" y="789" width="0.0386%" height="15" fill="rgb(237,54,19)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="799.50"></text></g><g><title>bprm_execve (140 samples, 0.04%)</title><rect x="23.6004%" y="773" width="0.0386%" height="15" fill="rgb(251,129,25)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="783.50"></text></g><g><title>load_elf_binary (140 samples, 0.04%)</title><rect x="23.6004%" y="757" width="0.0386%" height="15" fill="rgb(238,97,19)" fg:x="85495" fg:w="140"/><text x="23.8504%" y="767.50"></text></g><g><title>cc_wrapper.sh (1,005 samples, 0.28%)</title><rect x="23.3622%" y="853" width="0.2774%" height="15" fill="rgb(240,169,18)" fg:x="84632" fg:w="1005"/><text x="23.6122%" y="863.50"></text></g><g><title>[[heap]] (311 samples, 0.09%)</title><rect x="23.6410%" y="837" width="0.0858%" height="15" fill="rgb(230,187,49)" fg:x="85642" fg:w="311"/><text x="23.8910%" y="847.50"></text></g><g><title>[[stack]] (172 samples, 0.05%)</title><rect x="23.7268%" y="837" width="0.0475%" height="15" fill="rgb(209,44,26)" fg:x="85953" fg:w="172"/><text x="23.9768%" y="847.50"></text></g><g><title>[anon] (50 samples, 0.01%)</title><rect x="23.7782%" y="837" width="0.0138%" height="15" fill="rgb(244,0,6)" fg:x="86139" fg:w="50"/><text x="24.0282%" y="847.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (41 samples, 0.01%)</title><rect x="23.8201%" y="725" width="0.0113%" height="15" fill="rgb(248,18,21)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (41 samples, 0.01%)</title><rect x="23.8201%" y="709" width="0.0113%" height="15" fill="rgb(245,180,19)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (41 samples, 0.01%)</title><rect x="23.8201%" y="693" width="0.0113%" height="15" fill="rgb(252,118,36)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (41 samples, 0.01%)</title><rect x="23.8201%" y="677" width="0.0113%" height="15" fill="rgb(210,224,19)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="687.50"></text></g><g><title>clang::Parser::ParseLinkage (41 samples, 0.01%)</title><rect x="23.8201%" y="661" width="0.0113%" height="15" fill="rgb(218,30,24)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="671.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (41 samples, 0.01%)</title><rect x="23.8201%" y="645" width="0.0113%" height="15" fill="rgb(219,75,50)" fg:x="86291" fg:w="41"/><text x="24.0701%" y="655.50"></text></g><g><title>ExecuteCC1Tool (57 samples, 0.02%)</title><rect x="23.8171%" y="821" width="0.0157%" height="15" fill="rgb(234,72,50)" fg:x="86280" fg:w="57"/><text x="24.0671%" y="831.50"></text></g><g><title>cc1_main (57 samples, 0.02%)</title><rect x="23.8171%" y="805" width="0.0157%" height="15" fill="rgb(219,100,48)" fg:x="86280" fg:w="57"/><text x="24.0671%" y="815.50"></text></g><g><title>clang::ExecuteCompilerInvocation (54 samples, 0.01%)</title><rect x="23.8179%" y="789" width="0.0149%" height="15" fill="rgb(253,5,41)" fg:x="86283" fg:w="54"/><text x="24.0679%" y="799.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (54 samples, 0.01%)</title><rect x="23.8179%" y="773" width="0.0149%" height="15" fill="rgb(247,181,11)" fg:x="86283" fg:w="54"/><text x="24.0679%" y="783.50"></text></g><g><title>clang::FrontendAction::Execute (54 samples, 0.01%)</title><rect x="23.8179%" y="757" width="0.0149%" height="15" fill="rgb(222,223,25)" fg:x="86283" fg:w="54"/><text x="24.0679%" y="767.50"></text></g><g><title>clang::ParseAST (54 samples, 0.01%)</title><rect x="23.8179%" y="741" width="0.0149%" height="15" fill="rgb(214,198,28)" fg:x="86283" fg:w="54"/><text x="24.0679%" y="751.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (57 samples, 0.02%)</title><rect x="23.8590%" y="805" width="0.0157%" height="15" fill="rgb(230,46,43)" fg:x="86432" fg:w="57"/><text x="24.1090%" y="815.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (57 samples, 0.02%)</title><rect x="23.8590%" y="789" width="0.0157%" height="15" fill="rgb(233,65,53)" fg:x="86432" fg:w="57"/><text x="24.1090%" y="799.50"></text></g><g><title>llvm::LLVMTargetMachine::addPassesToEmitFile (80 samples, 0.02%)</title><rect x="23.8775%" y="709" width="0.0221%" height="15" fill="rgb(221,121,27)" fg:x="86499" fg:w="80"/><text x="24.1275%" y="719.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (64 samples, 0.02%)</title><rect x="23.9029%" y="709" width="0.0177%" height="15" fill="rgb(247,70,47)" fg:x="86591" fg:w="64"/><text x="24.1529%" y="719.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (159 samples, 0.04%)</title><rect x="23.8775%" y="741" width="0.0439%" height="15" fill="rgb(228,85,35)" fg:x="86499" fg:w="159"/><text x="24.1275%" y="751.50"></text></g><g><title>clang::EmitBackendOutput (159 samples, 0.04%)</title><rect x="23.8775%" y="725" width="0.0439%" height="15" fill="rgb(209,50,18)" fg:x="86499" fg:w="159"/><text x="24.1275%" y="735.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (42 samples, 0.01%)</title><rect x="23.9269%" y="501" width="0.0116%" height="15" fill="rgb(250,19,35)" fg:x="86678" fg:w="42"/><text x="24.1769%" y="511.50"></text></g><g><title>clang::Preprocessor::HandleDirective (85 samples, 0.02%)</title><rect x="23.9269%" y="517" width="0.0235%" height="15" fill="rgb(253,107,29)" fg:x="86678" fg:w="85"/><text x="24.1769%" y="527.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (90 samples, 0.02%)</title><rect x="23.9258%" y="597" width="0.0248%" height="15" fill="rgb(252,179,29)" fg:x="86674" fg:w="90"/><text x="24.1758%" y="607.50"></text></g><g><title>clang::Preprocessor::Lex (90 samples, 0.02%)</title><rect x="23.9258%" y="581" width="0.0248%" height="15" fill="rgb(238,194,6)" fg:x="86674" fg:w="90"/><text x="24.1758%" y="591.50"></text></g><g><title>clang::Preprocessor::CachingLex (90 samples, 0.02%)</title><rect x="23.9258%" y="565" width="0.0248%" height="15" fill="rgb(238,164,29)" fg:x="86674" fg:w="90"/><text x="24.1758%" y="575.50"></text></g><g><title>clang::Preprocessor::Lex (90 samples, 0.02%)</title><rect x="23.9258%" y="549" width="0.0248%" height="15" fill="rgb(224,25,9)" fg:x="86674" fg:w="90"/><text x="24.1758%" y="559.50"></text></g><g><title>clang::Lexer::LexTokenInternal (90 samples, 0.02%)</title><rect x="23.9258%" y="533" width="0.0248%" height="15" fill="rgb(244,153,23)" fg:x="86674" fg:w="90"/><text x="24.1758%" y="543.50"></text></g><g><title>clang::Parser::ParseDeclGroup (130 samples, 0.04%)</title><rect x="23.9258%" y="613" width="0.0359%" height="15" fill="rgb(212,203,14)" fg:x="86674" fg:w="130"/><text x="24.1758%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclaration (155 samples, 0.04%)</title><rect x="23.9258%" y="645" width="0.0428%" height="15" fill="rgb(220,164,20)" fg:x="86674" fg:w="155"/><text x="24.1758%" y="655.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (155 samples, 0.04%)</title><rect x="23.9258%" y="629" width="0.0428%" height="15" fill="rgb(222,203,48)" fg:x="86674" fg:w="155"/><text x="24.1758%" y="639.50"></text></g><g><title>clang::Sema::ActOnDeclarator (37 samples, 0.01%)</title><rect x="23.9816%" y="581" width="0.0102%" height="15" fill="rgb(215,159,22)" fg:x="86876" fg:w="37"/><text x="24.2316%" y="591.50"></text></g><g><title>clang::Sema::HandleDeclarator (37 samples, 0.01%)</title><rect x="23.9816%" y="565" width="0.0102%" height="15" fill="rgb(216,183,47)" fg:x="86876" fg:w="37"/><text x="24.2316%" y="575.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (38 samples, 0.01%)</title><rect x="23.9816%" y="597" width="0.0105%" height="15" fill="rgb(229,195,25)" fg:x="86876" fg:w="38"/><text x="24.2316%" y="607.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (38 samples, 0.01%)</title><rect x="23.9929%" y="581" width="0.0105%" height="15" fill="rgb(224,132,51)" fg:x="86917" fg:w="38"/><text x="24.2429%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (44 samples, 0.01%)</title><rect x="23.9921%" y="597" width="0.0121%" height="15" fill="rgb(240,63,7)" fg:x="86914" fg:w="44"/><text x="24.2421%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclGroup (139 samples, 0.04%)</title><rect x="23.9686%" y="613" width="0.0384%" height="15" fill="rgb(249,182,41)" fg:x="86829" fg:w="139"/><text x="24.2186%" y="623.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (314 samples, 0.09%)</title><rect x="23.9258%" y="661" width="0.0867%" height="15" fill="rgb(243,47,26)" fg:x="86674" fg:w="314"/><text x="24.1758%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (159 samples, 0.04%)</title><rect x="23.9686%" y="645" width="0.0439%" height="15" fill="rgb(233,48,2)" fg:x="86829" fg:w="159"/><text x="24.2186%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (159 samples, 0.04%)</title><rect x="23.9686%" y="629" width="0.0439%" height="15" fill="rgb(244,165,34)" fg:x="86829" fg:w="159"/><text x="24.2186%" y="639.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (325 samples, 0.09%)</title><rect x="23.9236%" y="741" width="0.0897%" height="15" fill="rgb(207,89,7)" fg:x="86666" fg:w="325"/><text x="24.1736%" y="751.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (325 samples, 0.09%)</title><rect x="23.9236%" y="725" width="0.0897%" height="15" fill="rgb(244,117,36)" fg:x="86666" fg:w="325"/><text x="24.1736%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (325 samples, 0.09%)</title><rect x="23.9236%" y="709" width="0.0897%" height="15" fill="rgb(226,144,34)" fg:x="86666" fg:w="325"/><text x="24.1736%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (325 samples, 0.09%)</title><rect x="23.9236%" y="693" width="0.0897%" height="15" fill="rgb(213,23,19)" fg:x="86666" fg:w="325"/><text x="24.1736%" y="703.50"></text></g><g><title>clang::Parser::ParseLinkage (317 samples, 0.09%)</title><rect x="23.9258%" y="677" width="0.0875%" height="15" fill="rgb(217,75,12)" fg:x="86674" fg:w="317"/><text x="24.1758%" y="687.50"></text></g><g><title>cc1_main (567 samples, 0.16%)</title><rect x="23.8590%" y="821" width="0.1565%" height="15" fill="rgb(224,159,17)" fg:x="86432" fg:w="567"/><text x="24.1090%" y="831.50"></text></g><g><title>clang::ExecuteCompilerInvocation (510 samples, 0.14%)</title><rect x="23.8748%" y="805" width="0.1408%" height="15" fill="rgb(217,118,1)" fg:x="86489" fg:w="510"/><text x="24.1248%" y="815.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (510 samples, 0.14%)</title><rect x="23.8748%" y="789" width="0.1408%" height="15" fill="rgb(232,180,48)" fg:x="86489" fg:w="510"/><text x="24.1248%" y="799.50"></text></g><g><title>clang::FrontendAction::Execute (506 samples, 0.14%)</title><rect x="23.8759%" y="773" width="0.1397%" height="15" fill="rgb(230,27,33)" fg:x="86493" fg:w="506"/><text x="24.1259%" y="783.50"></text></g><g><title>clang::ParseAST (506 samples, 0.14%)</title><rect x="23.8759%" y="757" width="0.1397%" height="15" fill="rgb(205,31,21)" fg:x="86493" fg:w="506"/><text x="24.1259%" y="767.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (88 samples, 0.02%)</title><rect x="24.0164%" y="821" width="0.0243%" height="15" fill="rgb(253,59,4)" fg:x="87002" fg:w="88"/><text x="24.2664%" y="831.50"></text></g><g><title>clang::EmitBackendOutput (82 samples, 0.02%)</title><rect x="24.0180%" y="805" width="0.0226%" height="15" fill="rgb(224,201,9)" fg:x="87008" fg:w="82"/><text x="24.2680%" y="815.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (82 samples, 0.02%)</title><rect x="24.0180%" y="789" width="0.0226%" height="15" fill="rgb(229,206,30)" fg:x="87008" fg:w="82"/><text x="24.2680%" y="799.50"></text></g><g><title>llvm::FPPassManager::runOnModule (47 samples, 0.01%)</title><rect x="24.0277%" y="773" width="0.0130%" height="15" fill="rgb(212,67,47)" fg:x="87043" fg:w="47"/><text x="24.2777%" y="783.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (47 samples, 0.01%)</title><rect x="24.0277%" y="757" width="0.0130%" height="15" fill="rgb(211,96,50)" fg:x="87043" fg:w="47"/><text x="24.2777%" y="767.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (44 samples, 0.01%)</title><rect x="24.0548%" y="677" width="0.0121%" height="15" fill="rgb(252,114,18)" fg:x="87141" fg:w="44"/><text x="24.3048%" y="687.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (41 samples, 0.01%)</title><rect x="24.0556%" y="661" width="0.0113%" height="15" fill="rgb(223,58,37)" fg:x="87144" fg:w="41"/><text x="24.3056%" y="671.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (52 samples, 0.01%)</title><rect x="24.0528%" y="773" width="0.0144%" height="15" fill="rgb(237,70,4)" fg:x="87134" fg:w="52"/><text x="24.3028%" y="783.50"></text></g><g><title>clang::EmitBackendOutput (52 samples, 0.01%)</title><rect x="24.0528%" y="757" width="0.0144%" height="15" fill="rgb(244,85,46)" fg:x="87134" fg:w="52"/><text x="24.3028%" y="767.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (52 samples, 0.01%)</title><rect x="24.0528%" y="741" width="0.0144%" height="15" fill="rgb(223,39,52)" fg:x="87134" fg:w="52"/><text x="24.3028%" y="751.50"></text></g><g><title>llvm::FPPassManager::runOnModule (52 samples, 0.01%)</title><rect x="24.0528%" y="725" width="0.0144%" height="15" fill="rgb(218,200,14)" fg:x="87134" fg:w="52"/><text x="24.3028%" y="735.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (52 samples, 0.01%)</title><rect x="24.0528%" y="709" width="0.0144%" height="15" fill="rgb(208,171,16)" fg:x="87134" fg:w="52"/><text x="24.3028%" y="719.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (45 samples, 0.01%)</title><rect x="24.0548%" y="693" width="0.0124%" height="15" fill="rgb(234,200,18)" fg:x="87141" fg:w="45"/><text x="24.3048%" y="703.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (55 samples, 0.02%)</title><rect x="24.0528%" y="821" width="0.0152%" height="15" fill="rgb(228,45,11)" fg:x="87134" fg:w="55"/><text x="24.3028%" y="831.50"></text></g><g><title>clang::FrontendAction::Execute (55 samples, 0.02%)</title><rect x="24.0528%" y="805" width="0.0152%" height="15" fill="rgb(237,182,11)" fg:x="87134" fg:w="55"/><text x="24.3028%" y="815.50"></text></g><g><title>clang::ParseAST (55 samples, 0.02%)</title><rect x="24.0528%" y="789" width="0.0152%" height="15" fill="rgb(241,175,49)" fg:x="87134" fg:w="55"/><text x="24.3028%" y="799.50"></text></g><g><title>filename_lookup (37 samples, 0.01%)</title><rect x="24.0796%" y="629" width="0.0102%" height="15" fill="rgb(247,38,35)" fg:x="87231" fg:w="37"/><text x="24.3296%" y="639.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="24.0790%" y="677" width="0.0146%" height="15" fill="rgb(228,39,49)" fg:x="87229" fg:w="53"/><text x="24.3290%" y="687.50"></text></g><g><title>__x64_sys_readlink (52 samples, 0.01%)</title><rect x="24.0793%" y="661" width="0.0144%" height="15" fill="rgb(226,101,26)" fg:x="87230" fg:w="52"/><text x="24.3293%" y="671.50"></text></g><g><title>do_readlinkat (52 samples, 0.01%)</title><rect x="24.0793%" y="645" width="0.0144%" height="15" fill="rgb(206,141,19)" fg:x="87230" fg:w="52"/><text x="24.3293%" y="655.50"></text></g><g><title>__GI___readlink (55 samples, 0.02%)</title><rect x="24.0788%" y="709" width="0.0152%" height="15" fill="rgb(211,200,13)" fg:x="87228" fg:w="55"/><text x="24.3288%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="24.0790%" y="693" width="0.0149%" height="15" fill="rgb(241,121,6)" fg:x="87229" fg:w="54"/><text x="24.3290%" y="703.50"></text></g><g><title>btrfs_search_slot (65 samples, 0.02%)</title><rect x="24.1028%" y="533" width="0.0179%" height="15" fill="rgb(234,221,29)" fg:x="87315" fg:w="65"/><text x="24.3528%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (66 samples, 0.02%)</title><rect x="24.1028%" y="549" width="0.0182%" height="15" fill="rgb(229,136,5)" fg:x="87315" fg:w="66"/><text x="24.3528%" y="559.50"></text></g><g><title>btrfs_lookup (70 samples, 0.02%)</title><rect x="24.1022%" y="581" width="0.0193%" height="15" fill="rgb(238,36,11)" fg:x="87313" fg:w="70"/><text x="24.3522%" y="591.50"></text></g><g><title>btrfs_lookup_dentry (70 samples, 0.02%)</title><rect x="24.1022%" y="565" width="0.0193%" height="15" fill="rgb(251,55,41)" fg:x="87313" fg:w="70"/><text x="24.3522%" y="575.50"></text></g><g><title>link_path_walk.part.0 (37 samples, 0.01%)</title><rect x="24.1246%" y="581" width="0.0102%" height="15" fill="rgb(242,34,40)" fg:x="87394" fg:w="37"/><text x="24.3746%" y="591.50"></text></g><g><title>page_get_link (40 samples, 0.01%)</title><rect x="24.1378%" y="565" width="0.0110%" height="15" fill="rgb(215,42,17)" fg:x="87442" fg:w="40"/><text x="24.3878%" y="575.50"></text></g><g><title>do_read_cache_page (40 samples, 0.01%)</title><rect x="24.1378%" y="549" width="0.0110%" height="15" fill="rgb(207,44,46)" fg:x="87442" fg:w="40"/><text x="24.3878%" y="559.50"></text></g><g><title>step_into (58 samples, 0.02%)</title><rect x="24.1365%" y="581" width="0.0160%" height="15" fill="rgb(211,206,28)" fg:x="87437" fg:w="58"/><text x="24.3865%" y="591.50"></text></g><g><title>do_filp_open (198 samples, 0.05%)</title><rect x="24.0981%" y="613" width="0.0547%" height="15" fill="rgb(237,167,16)" fg:x="87298" fg:w="198"/><text x="24.3481%" y="623.50"></text></g><g><title>path_openat (197 samples, 0.05%)</title><rect x="24.0984%" y="597" width="0.0544%" height="15" fill="rgb(233,66,6)" fg:x="87299" fg:w="197"/><text x="24.3484%" y="607.50"></text></g><g><title>__x64_sys_openat (215 samples, 0.06%)</title><rect x="24.0970%" y="645" width="0.0593%" height="15" fill="rgb(246,123,29)" fg:x="87294" fg:w="215"/><text x="24.3470%" y="655.50"></text></g><g><title>do_sys_openat2 (214 samples, 0.06%)</title><rect x="24.0973%" y="629" width="0.0591%" height="15" fill="rgb(209,62,40)" fg:x="87295" fg:w="214"/><text x="24.3473%" y="639.50"></text></g><g><title>do_syscall_64 (217 samples, 0.06%)</title><rect x="24.0967%" y="661" width="0.0599%" height="15" fill="rgb(218,4,25)" fg:x="87293" fg:w="217"/><text x="24.3467%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (220 samples, 0.06%)</title><rect x="24.0967%" y="677" width="0.0607%" height="15" fill="rgb(253,91,49)" fg:x="87293" fg:w="220"/><text x="24.3467%" y="687.50"></text></g><g><title>__libc_open64 (222 samples, 0.06%)</title><rect x="24.0964%" y="693" width="0.0613%" height="15" fill="rgb(228,155,29)" fg:x="87292" fg:w="222"/><text x="24.3464%" y="703.50"></text></g><g><title>llvm::sys::fs::openFile (226 samples, 0.06%)</title><rect x="24.0962%" y="709" width="0.0624%" height="15" fill="rgb(243,57,37)" fg:x="87291" fg:w="226"/><text x="24.3462%" y="719.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (290 samples, 0.08%)</title><rect x="24.0788%" y="821" width="0.0801%" height="15" fill="rgb(244,167,17)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="831.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (290 samples, 0.08%)</title><rect x="24.0788%" y="805" width="0.0801%" height="15" fill="rgb(207,181,38)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="815.50"></text></g><g><title>clang::FileManager::getFileRef (290 samples, 0.08%)</title><rect x="24.0788%" y="789" width="0.0801%" height="15" fill="rgb(211,8,23)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="799.50"></text></g><g><title>clang::FileManager::getStatValue (290 samples, 0.08%)</title><rect x="24.0788%" y="773" width="0.0801%" height="15" fill="rgb(235,11,44)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="783.50"></text></g><g><title>clang::FileSystemStatCache::get (290 samples, 0.08%)</title><rect x="24.0788%" y="757" width="0.0801%" height="15" fill="rgb(248,18,52)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="767.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (290 samples, 0.08%)</title><rect x="24.0788%" y="741" width="0.0801%" height="15" fill="rgb(208,4,7)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="751.50"></text></g><g><title>llvm::sys::fs::openFileForRead (290 samples, 0.08%)</title><rect x="24.0788%" y="725" width="0.0801%" height="15" fill="rgb(240,17,39)" fg:x="87228" fg:w="290"/><text x="24.3288%" y="735.50"></text></g><g><title>clang::FrontendAction::Execute (41 samples, 0.01%)</title><rect x="24.1707%" y="821" width="0.0113%" height="15" fill="rgb(207,170,3)" fg:x="87561" fg:w="41"/><text x="24.4207%" y="831.50"></text></g><g><title>clang::ParseAST (41 samples, 0.01%)</title><rect x="24.1707%" y="805" width="0.0113%" height="15" fill="rgb(236,100,52)" fg:x="87561" fg:w="41"/><text x="24.4207%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (71 samples, 0.02%)</title><rect x="24.2179%" y="805" width="0.0196%" height="15" fill="rgb(246,78,51)" fg:x="87732" fg:w="71"/><text x="24.4679%" y="815.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (56 samples, 0.02%)</title><rect x="24.2220%" y="789" width="0.0155%" height="15" fill="rgb(211,17,15)" fg:x="87747" fg:w="56"/><text x="24.4720%" y="799.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (56 samples, 0.02%)</title><rect x="24.2220%" y="773" width="0.0155%" height="15" fill="rgb(209,59,46)" fg:x="87747" fg:w="56"/><text x="24.4720%" y="783.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (56 samples, 0.02%)</title><rect x="24.2220%" y="757" width="0.0155%" height="15" fill="rgb(210,92,25)" fg:x="87747" fg:w="56"/><text x="24.4720%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclGroup (97 samples, 0.03%)</title><rect x="24.2121%" y="821" width="0.0268%" height="15" fill="rgb(238,174,52)" fg:x="87711" fg:w="97"/><text x="24.4621%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (40 samples, 0.01%)</title><rect x="24.2507%" y="773" width="0.0110%" height="15" fill="rgb(230,73,7)" fg:x="87851" fg:w="40"/><text x="24.5007%" y="783.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (37 samples, 0.01%)</title><rect x="24.2516%" y="757" width="0.0102%" height="15" fill="rgb(243,124,40)" fg:x="87854" fg:w="37"/><text x="24.5016%" y="767.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (37 samples, 0.01%)</title><rect x="24.2516%" y="741" width="0.0102%" height="15" fill="rgb(244,170,11)" fg:x="87854" fg:w="37"/><text x="24.5016%" y="751.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (37 samples, 0.01%)</title><rect x="24.2516%" y="725" width="0.0102%" height="15" fill="rgb(207,114,54)" fg:x="87854" fg:w="37"/><text x="24.5016%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclGroup (58 samples, 0.02%)</title><rect x="24.2472%" y="789" width="0.0160%" height="15" fill="rgb(205,42,20)" fg:x="87838" fg:w="58"/><text x="24.4972%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (52 samples, 0.01%)</title><rect x="24.2673%" y="709" width="0.0144%" height="15" fill="rgb(230,30,28)" fg:x="87911" fg:w="52"/><text x="24.5173%" y="719.50"></text></g><g><title>clang::Sema::ActOnDeclarator (52 samples, 0.01%)</title><rect x="24.2673%" y="693" width="0.0144%" height="15" fill="rgb(205,73,54)" fg:x="87911" fg:w="52"/><text x="24.5173%" y="703.50"></text></g><g><title>clang::Sema::HandleDeclarator (52 samples, 0.01%)</title><rect x="24.2673%" y="677" width="0.0144%" height="15" fill="rgb(254,227,23)" fg:x="87911" fg:w="52"/><text x="24.5173%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (126 samples, 0.03%)</title><rect x="24.2472%" y="821" width="0.0348%" height="15" fill="rgb(228,202,34)" fg:x="87838" fg:w="126"/><text x="24.4972%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (126 samples, 0.03%)</title><rect x="24.2472%" y="805" width="0.0348%" height="15" fill="rgb(222,225,37)" fg:x="87838" fg:w="126"/><text x="24.4972%" y="815.50"></text></g><g><title>clang::Parser::ParseLinkage (65 samples, 0.02%)</title><rect x="24.2640%" y="789" width="0.0179%" height="15" fill="rgb(221,14,54)" fg:x="87899" fg:w="65"/><text x="24.5140%" y="799.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (65 samples, 0.02%)</title><rect x="24.2640%" y="773" width="0.0179%" height="15" fill="rgb(254,102,2)" fg:x="87899" fg:w="65"/><text x="24.5140%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (55 samples, 0.02%)</title><rect x="24.2668%" y="757" width="0.0152%" height="15" fill="rgb(232,104,17)" fg:x="87909" fg:w="55"/><text x="24.5168%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (55 samples, 0.02%)</title><rect x="24.2668%" y="741" width="0.0152%" height="15" fill="rgb(250,220,14)" fg:x="87909" fg:w="55"/><text x="24.5168%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclGroup (55 samples, 0.02%)</title><rect x="24.2668%" y="725" width="0.0152%" height="15" fill="rgb(241,158,9)" fg:x="87909" fg:w="55"/><text x="24.5168%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (38 samples, 0.01%)</title><rect x="24.2946%" y="821" width="0.0105%" height="15" fill="rgb(246,9,43)" fg:x="88010" fg:w="38"/><text x="24.5446%" y="831.50"></text></g><g><title>btrfs_lookup_dir_item (37 samples, 0.01%)</title><rect x="24.3429%" y="469" width="0.0102%" height="15" fill="rgb(206,73,33)" fg:x="88185" fg:w="37"/><text x="24.5929%" y="479.50"></text></g><g><title>btrfs_search_slot (37 samples, 0.01%)</title><rect x="24.3429%" y="453" width="0.0102%" height="15" fill="rgb(222,79,8)" fg:x="88185" fg:w="37"/><text x="24.5929%" y="463.50"></text></g><g><title>btrfs_lookup (41 samples, 0.01%)</title><rect x="24.3424%" y="501" width="0.0113%" height="15" fill="rgb(234,8,54)" fg:x="88183" fg:w="41"/><text x="24.5924%" y="511.50"></text></g><g><title>btrfs_lookup_dentry (41 samples, 0.01%)</title><rect x="24.3424%" y="485" width="0.0113%" height="15" fill="rgb(209,134,38)" fg:x="88183" fg:w="41"/><text x="24.5924%" y="495.50"></text></g><g><title>__lookup_slow (45 samples, 0.01%)</title><rect x="24.3424%" y="517" width="0.0124%" height="15" fill="rgb(230,127,29)" fg:x="88183" fg:w="45"/><text x="24.5924%" y="527.50"></text></g><g><title>filename_lookup (58 samples, 0.02%)</title><rect x="24.3394%" y="565" width="0.0160%" height="15" fill="rgb(242,44,41)" fg:x="88172" fg:w="58"/><text x="24.5894%" y="575.50"></text></g><g><title>path_lookupat (56 samples, 0.02%)</title><rect x="24.3399%" y="549" width="0.0155%" height="15" fill="rgb(222,56,43)" fg:x="88174" fg:w="56"/><text x="24.5899%" y="559.50"></text></g><g><title>walk_component (48 samples, 0.01%)</title><rect x="24.3421%" y="533" width="0.0133%" height="15" fill="rgb(238,39,47)" fg:x="88182" fg:w="48"/><text x="24.5921%" y="543.50"></text></g><g><title>do_syscall_64 (71 samples, 0.02%)</title><rect x="24.3385%" y="613" width="0.0196%" height="15" fill="rgb(226,79,43)" fg:x="88169" fg:w="71"/><text x="24.5885%" y="623.50"></text></g><g><title>__do_sys_newstat (69 samples, 0.02%)</title><rect x="24.3391%" y="597" width="0.0190%" height="15" fill="rgb(242,105,53)" fg:x="88171" fg:w="69"/><text x="24.5891%" y="607.50"></text></g><g><title>vfs_statx (69 samples, 0.02%)</title><rect x="24.3391%" y="581" width="0.0190%" height="15" fill="rgb(251,132,46)" fg:x="88171" fg:w="69"/><text x="24.5891%" y="591.50"></text></g><g><title>__GI___xstat (74 samples, 0.02%)</title><rect x="24.3380%" y="645" width="0.0204%" height="15" fill="rgb(231,77,14)" fg:x="88167" fg:w="74"/><text x="24.5880%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.02%)</title><rect x="24.3385%" y="629" width="0.0199%" height="15" fill="rgb(240,135,9)" fg:x="88169" fg:w="72"/><text x="24.5885%" y="639.50"></text></g><g><title>llvm::sys::fs::status (76 samples, 0.02%)</title><rect x="24.3380%" y="661" width="0.0210%" height="15" fill="rgb(248,109,14)" fg:x="88167" fg:w="76"/><text x="24.5880%" y="671.50"></text></g><g><title>clang::FileManager::getStatValue (82 samples, 0.02%)</title><rect x="24.3377%" y="693" width="0.0226%" height="15" fill="rgb(227,146,52)" fg:x="88166" fg:w="82"/><text x="24.5877%" y="703.50"></text></g><g><title>clang::FileSystemStatCache::get (82 samples, 0.02%)</title><rect x="24.3377%" y="677" width="0.0226%" height="15" fill="rgb(232,54,3)" fg:x="88166" fg:w="82"/><text x="24.5877%" y="687.50"></text></g><g><title>clang::FileManager::getDirectoryRef (93 samples, 0.03%)</title><rect x="24.3377%" y="709" width="0.0257%" height="15" fill="rgb(229,201,43)" fg:x="88166" fg:w="93"/><text x="24.5877%" y="719.50"></text></g><g><title>clang::FileManager::getFileRef (160 samples, 0.04%)</title><rect x="24.3347%" y="725" width="0.0442%" height="15" fill="rgb(252,161,33)" fg:x="88155" fg:w="160"/><text x="24.5847%" y="735.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (162 samples, 0.04%)</title><rect x="24.3347%" y="741" width="0.0447%" height="15" fill="rgb(226,146,40)" fg:x="88155" fg:w="162"/><text x="24.5847%" y="751.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (178 samples, 0.05%)</title><rect x="24.3327%" y="821" width="0.0491%" height="15" fill="rgb(219,47,25)" fg:x="88148" fg:w="178"/><text x="24.5827%" y="831.50"></text></g><g><title>clang::Preprocessor::LookupHeaderIncludeOrImport (176 samples, 0.05%)</title><rect x="24.3333%" y="805" width="0.0486%" height="15" fill="rgb(250,135,13)" fg:x="88150" fg:w="176"/><text x="24.5833%" y="815.50"></text></g><g><title>clang::Preprocessor::LookupFile (176 samples, 0.05%)</title><rect x="24.3333%" y="789" width="0.0486%" height="15" fill="rgb(219,229,18)" fg:x="88150" fg:w="176"/><text x="24.5833%" y="799.50"></text></g><g><title>clang::HeaderSearch::LookupFile (176 samples, 0.05%)</title><rect x="24.3333%" y="773" width="0.0486%" height="15" fill="rgb(217,152,27)" fg:x="88150" fg:w="176"/><text x="24.5833%" y="783.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (176 samples, 0.05%)</title><rect x="24.3333%" y="757" width="0.0486%" height="15" fill="rgb(225,71,47)" fg:x="88150" fg:w="176"/><text x="24.5833%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (75 samples, 0.02%)</title><rect x="24.4144%" y="597" width="0.0207%" height="15" fill="rgb(220,139,14)" fg:x="88444" fg:w="75"/><text x="24.6644%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (39 samples, 0.01%)</title><rect x="24.4244%" y="581" width="0.0108%" height="15" fill="rgb(247,54,32)" fg:x="88480" fg:w="39"/><text x="24.6744%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (39 samples, 0.01%)</title><rect x="24.4244%" y="565" width="0.0108%" height="15" fill="rgb(252,131,39)" fg:x="88480" fg:w="39"/><text x="24.6744%" y="575.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (81 samples, 0.02%)</title><rect x="24.4131%" y="677" width="0.0224%" height="15" fill="rgb(210,108,39)" fg:x="88439" fg:w="81"/><text x="24.6631%" y="687.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (81 samples, 0.02%)</title><rect x="24.4131%" y="661" width="0.0224%" height="15" fill="rgb(205,23,29)" fg:x="88439" fg:w="81"/><text x="24.6631%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (81 samples, 0.02%)</title><rect x="24.4131%" y="645" width="0.0224%" height="15" fill="rgb(246,139,46)" fg:x="88439" fg:w="81"/><text x="24.6631%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (81 samples, 0.02%)</title><rect x="24.4131%" y="629" width="0.0224%" height="15" fill="rgb(250,81,26)" fg:x="88439" fg:w="81"/><text x="24.6631%" y="639.50"></text></g><g><title>clang::Parser::ParseLinkage (76 samples, 0.02%)</title><rect x="24.4144%" y="613" width="0.0210%" height="15" fill="rgb(214,104,7)" fg:x="88444" fg:w="76"/><text x="24.6644%" y="623.50"></text></g><g><title>clang::driver::CC1Command::Execute (167 samples, 0.05%)</title><rect x="24.4023%" y="821" width="0.0461%" height="15" fill="rgb(233,189,8)" fg:x="88400" fg:w="167"/><text x="24.6523%" y="831.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (167 samples, 0.05%)</title><rect x="24.4023%" y="805" width="0.0461%" height="15" fill="rgb(228,141,17)" fg:x="88400" fg:w="167"/><text x="24.6523%" y="815.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (167 samples, 0.05%)</title><rect x="24.4023%" y="789" width="0.0461%" height="15" fill="rgb(247,157,1)" fg:x="88400" fg:w="167"/><text x="24.6523%" y="799.50"></text></g><g><title>ExecuteCC1Tool (167 samples, 0.05%)</title><rect x="24.4023%" y="773" width="0.0461%" height="15" fill="rgb(249,225,5)" fg:x="88400" fg:w="167"/><text x="24.6523%" y="783.50"></text></g><g><title>cc1_main (167 samples, 0.05%)</title><rect x="24.4023%" y="757" width="0.0461%" height="15" fill="rgb(242,55,13)" fg:x="88400" fg:w="167"/><text x="24.6523%" y="767.50"></text></g><g><title>clang::ExecuteCompilerInvocation (164 samples, 0.05%)</title><rect x="24.4031%" y="741" width="0.0453%" height="15" fill="rgb(230,49,50)" fg:x="88403" fg:w="164"/><text x="24.6531%" y="751.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (164 samples, 0.05%)</title><rect x="24.4031%" y="725" width="0.0453%" height="15" fill="rgb(241,111,38)" fg:x="88403" fg:w="164"/><text x="24.6531%" y="735.50"></text></g><g><title>clang::FrontendAction::Execute (151 samples, 0.04%)</title><rect x="24.4067%" y="709" width="0.0417%" height="15" fill="rgb(252,155,4)" fg:x="88416" fg:w="151"/><text x="24.6567%" y="719.50"></text></g><g><title>clang::ParseAST (151 samples, 0.04%)</title><rect x="24.4067%" y="693" width="0.0417%" height="15" fill="rgb(212,69,32)" fg:x="88416" fg:w="151"/><text x="24.6567%" y="703.50"></text></g><g><title>clang::Preprocessor::Lex (47 samples, 0.01%)</title><rect x="24.4354%" y="677" width="0.0130%" height="15" fill="rgb(243,107,47)" fg:x="88520" fg:w="47"/><text x="24.6854%" y="687.50"></text></g><g><title>clang::Lexer::LexTokenInternal (47 samples, 0.01%)</title><rect x="24.4354%" y="661" width="0.0130%" height="15" fill="rgb(247,130,12)" fg:x="88520" fg:w="47"/><text x="24.6854%" y="671.50"></text></g><g><title>clang::Preprocessor::HandleDirective (47 samples, 0.01%)</title><rect x="24.4354%" y="645" width="0.0130%" height="15" fill="rgb(233,74,16)" fg:x="88520" fg:w="47"/><text x="24.6854%" y="655.50"></text></g><g><title>clang::driver::tools::Clang::ConstructJob (82 samples, 0.02%)</title><rect x="24.5086%" y="741" width="0.0226%" height="15" fill="rgb(208,58,18)" fg:x="88785" fg:w="82"/><text x="24.7586%" y="751.50"></text></g><g><title>__btrfs_read_lock_root_node (37 samples, 0.01%)</title><rect x="24.5365%" y="469" width="0.0102%" height="15" fill="rgb(242,225,1)" fg:x="88886" fg:w="37"/><text x="24.7865%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (37 samples, 0.01%)</title><rect x="24.5365%" y="453" width="0.0102%" height="15" fill="rgb(249,39,40)" fg:x="88886" fg:w="37"/><text x="24.7865%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (55 samples, 0.02%)</title><rect x="24.5362%" y="501" width="0.0152%" height="15" fill="rgb(207,72,44)" fg:x="88885" fg:w="55"/><text x="24.7862%" y="511.50"></text></g><g><title>btrfs_search_slot (55 samples, 0.02%)</title><rect x="24.5362%" y="485" width="0.0152%" height="15" fill="rgb(215,193,12)" fg:x="88885" fg:w="55"/><text x="24.7862%" y="495.50"></text></g><g><title>btrfs_lookup (57 samples, 0.02%)</title><rect x="24.5359%" y="533" width="0.0157%" height="15" fill="rgb(248,41,39)" fg:x="88884" fg:w="57"/><text x="24.7859%" y="543.50"></text></g><g><title>btrfs_lookup_dentry (57 samples, 0.02%)</title><rect x="24.5359%" y="517" width="0.0157%" height="15" fill="rgb(253,85,4)" fg:x="88884" fg:w="57"/><text x="24.7859%" y="527.50"></text></g><g><title>__lookup_slow (60 samples, 0.02%)</title><rect x="24.5359%" y="549" width="0.0166%" height="15" fill="rgb(243,70,31)" fg:x="88884" fg:w="60"/><text x="24.7859%" y="559.50"></text></g><g><title>filename_lookup (71 samples, 0.02%)</title><rect x="24.5342%" y="597" width="0.0196%" height="15" fill="rgb(253,195,26)" fg:x="88878" fg:w="71"/><text x="24.7842%" y="607.50"></text></g><g><title>path_lookupat (69 samples, 0.02%)</title><rect x="24.5348%" y="581" width="0.0190%" height="15" fill="rgb(243,42,11)" fg:x="88880" fg:w="69"/><text x="24.7848%" y="591.50"></text></g><g><title>walk_component (65 samples, 0.02%)</title><rect x="24.5359%" y="565" width="0.0179%" height="15" fill="rgb(239,66,17)" fg:x="88884" fg:w="65"/><text x="24.7859%" y="575.50"></text></g><g><title>do_syscall_64 (85 samples, 0.02%)</title><rect x="24.5340%" y="629" width="0.0235%" height="15" fill="rgb(217,132,21)" fg:x="88877" fg:w="85"/><text x="24.7840%" y="639.50"></text></g><g><title>do_faccessat (84 samples, 0.02%)</title><rect x="24.5342%" y="613" width="0.0232%" height="15" fill="rgb(252,202,21)" fg:x="88878" fg:w="84"/><text x="24.7842%" y="623.50"></text></g><g><title>__GI___access (88 samples, 0.02%)</title><rect x="24.5334%" y="661" width="0.0243%" height="15" fill="rgb(233,98,36)" fg:x="88875" fg:w="88"/><text x="24.7834%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.02%)</title><rect x="24.5340%" y="645" width="0.0237%" height="15" fill="rgb(216,153,54)" fg:x="88877" fg:w="86"/><text x="24.7840%" y="655.50"></text></g><g><title>llvm::sys::fs::access (92 samples, 0.03%)</title><rect x="24.5334%" y="677" width="0.0254%" height="15" fill="rgb(250,99,7)" fg:x="88875" fg:w="92"/><text x="24.7834%" y="687.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (98 samples, 0.03%)</title><rect x="24.5326%" y="693" width="0.0271%" height="15" fill="rgb(207,56,50)" fg:x="88872" fg:w="98"/><text x="24.7826%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (39 samples, 0.01%)</title><rect x="24.5621%" y="485" width="0.0108%" height="15" fill="rgb(244,61,34)" fg:x="88979" fg:w="39"/><text x="24.8121%" y="495.50"></text></g><g><title>btrfs_search_slot (56 samples, 0.02%)</title><rect x="24.5621%" y="501" width="0.0155%" height="15" fill="rgb(241,50,38)" fg:x="88979" fg:w="56"/><text x="24.8121%" y="511.50"></text></g><g><title>btrfs_lookup (60 samples, 0.02%)</title><rect x="24.5613%" y="549" width="0.0166%" height="15" fill="rgb(212,166,30)" fg:x="88976" fg:w="60"/><text x="24.8113%" y="559.50"></text></g><g><title>btrfs_lookup_dentry (60 samples, 0.02%)</title><rect x="24.5613%" y="533" width="0.0166%" height="15" fill="rgb(249,127,32)" fg:x="88976" fg:w="60"/><text x="24.8113%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (57 samples, 0.02%)</title><rect x="24.5621%" y="517" width="0.0157%" height="15" fill="rgb(209,103,0)" fg:x="88979" fg:w="57"/><text x="24.8121%" y="527.50"></text></g><g><title>__lookup_slow (62 samples, 0.02%)</title><rect x="24.5613%" y="565" width="0.0171%" height="15" fill="rgb(238,209,51)" fg:x="88976" fg:w="62"/><text x="24.8113%" y="575.50"></text></g><g><title>filename_lookup (69 samples, 0.02%)</title><rect x="24.5599%" y="613" width="0.0190%" height="15" fill="rgb(237,56,23)" fg:x="88971" fg:w="69"/><text x="24.8099%" y="623.50"></text></g><g><title>path_lookupat (68 samples, 0.02%)</title><rect x="24.5602%" y="597" width="0.0188%" height="15" fill="rgb(215,153,46)" fg:x="88972" fg:w="68"/><text x="24.8102%" y="607.50"></text></g><g><title>walk_component (64 samples, 0.02%)</title><rect x="24.5613%" y="581" width="0.0177%" height="15" fill="rgb(224,49,31)" fg:x="88976" fg:w="64"/><text x="24.8113%" y="591.50"></text></g><g><title>__GI___access (81 samples, 0.02%)</title><rect x="24.5599%" y="677" width="0.0224%" height="15" fill="rgb(250,18,42)" fg:x="88971" fg:w="81"/><text x="24.8099%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.02%)</title><rect x="24.5599%" y="661" width="0.0224%" height="15" fill="rgb(215,176,39)" fg:x="88971" fg:w="81"/><text x="24.8099%" y="671.50"></text></g><g><title>do_syscall_64 (81 samples, 0.02%)</title><rect x="24.5599%" y="645" width="0.0224%" height="15" fill="rgb(223,77,29)" fg:x="88971" fg:w="81"/><text x="24.8099%" y="655.50"></text></g><g><title>do_faccessat (81 samples, 0.02%)</title><rect x="24.5599%" y="629" width="0.0224%" height="15" fill="rgb(234,94,52)" fg:x="88971" fg:w="81"/><text x="24.8099%" y="639.50"></text></g><g><title>llvm::sys::fs::access (84 samples, 0.02%)</title><rect x="24.5599%" y="693" width="0.0232%" height="15" fill="rgb(220,154,50)" fg:x="88971" fg:w="84"/><text x="24.8099%" y="703.50"></text></g><g><title>clang::driver::ToolChain::GetFilePath[abi:cxx11] (185 samples, 0.05%)</title><rect x="24.5323%" y="725" width="0.0511%" height="15" fill="rgb(212,11,10)" fg:x="88871" fg:w="185"/><text x="24.7823%" y="735.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (185 samples, 0.05%)</title><rect x="24.5323%" y="709" width="0.0511%" height="15" fill="rgb(205,166,19)" fg:x="88871" fg:w="185"/><text x="24.7823%" y="719.50"></text></g><g><title>clang::driver::Driver::GetProgramPath[abi:cxx11] (51 samples, 0.01%)</title><rect x="24.5834%" y="709" width="0.0141%" height="15" fill="rgb(244,198,16)" fg:x="89056" fg:w="51"/><text x="24.8334%" y="719.50"></text></g><g><title>clang::driver::ToolChain::GetLinkerPath[abi:cxx11] (55 samples, 0.02%)</title><rect x="24.5834%" y="725" width="0.0152%" height="15" fill="rgb(219,69,12)" fg:x="89056" fg:w="55"/><text x="24.8334%" y="735.50"></text></g><g><title>clang::driver::tools::gnutools::Linker::ConstructJob (298 samples, 0.08%)</title><rect x="24.5312%" y="741" width="0.0823%" height="15" fill="rgb(245,30,7)" fg:x="88867" fg:w="298"/><text x="24.7812%" y="751.50"></text></g><g><title>clang::driver::Driver::BuildJobs (395 samples, 0.11%)</title><rect x="24.5047%" y="789" width="0.1090%" height="15" fill="rgb(218,221,48)" fg:x="88771" fg:w="395"/><text x="24.7547%" y="799.50"></text></g><g><title>clang::driver::Driver::BuildJobsForAction (395 samples, 0.11%)</title><rect x="24.5047%" y="773" width="0.1090%" height="15" fill="rgb(216,66,15)" fg:x="88771" fg:w="395"/><text x="24.7547%" y="783.50"></text></g><g><title>clang::driver::Driver::BuildJobsForActionNoCache (395 samples, 0.11%)</title><rect x="24.5047%" y="757" width="0.1090%" height="15" fill="rgb(226,122,50)" fg:x="88771" fg:w="395"/><text x="24.7547%" y="767.50"></text></g><g><title>do_filp_open (41 samples, 0.01%)</title><rect x="24.6353%" y="597" width="0.0113%" height="15" fill="rgb(239,156,16)" fg:x="89244" fg:w="41"/><text x="24.8853%" y="607.50"></text></g><g><title>path_openat (41 samples, 0.01%)</title><rect x="24.6353%" y="581" width="0.0113%" height="15" fill="rgb(224,27,38)" fg:x="89244" fg:w="41"/><text x="24.8853%" y="591.50"></text></g><g><title>do_syscall_64 (60 samples, 0.02%)</title><rect x="24.6336%" y="645" width="0.0166%" height="15" fill="rgb(224,39,27)" fg:x="89238" fg:w="60"/><text x="24.8836%" y="655.50"></text></g><g><title>__x64_sys_openat (59 samples, 0.02%)</title><rect x="24.6339%" y="629" width="0.0163%" height="15" fill="rgb(215,92,29)" fg:x="89239" fg:w="59"/><text x="24.8839%" y="639.50"></text></g><g><title>do_sys_openat2 (59 samples, 0.02%)</title><rect x="24.6339%" y="613" width="0.0163%" height="15" fill="rgb(207,159,16)" fg:x="89239" fg:w="59"/><text x="24.8839%" y="623.50"></text></g><g><title>__opendir (63 samples, 0.02%)</title><rect x="24.6336%" y="693" width="0.0174%" height="15" fill="rgb(238,163,47)" fg:x="89238" fg:w="63"/><text x="24.8836%" y="703.50"></text></g><g><title>__GI___open64_nocancel (63 samples, 0.02%)</title><rect x="24.6336%" y="677" width="0.0174%" height="15" fill="rgb(219,91,49)" fg:x="89238" fg:w="63"/><text x="24.8836%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.02%)</title><rect x="24.6336%" y="661" width="0.0174%" height="15" fill="rgb(227,167,31)" fg:x="89238" fg:w="63"/><text x="24.8836%" y="671.50"></text></g><g><title>llvm::sys::fs::directory_iterator::directory_iterator (97 samples, 0.03%)</title><rect x="24.6317%" y="725" width="0.0268%" height="15" fill="rgb(234,80,54)" fg:x="89231" fg:w="97"/><text x="24.8817%" y="735.50"></text></g><g><title>llvm::sys::fs::detail::directory_iterator_construct (92 samples, 0.03%)</title><rect x="24.6331%" y="709" width="0.0254%" height="15" fill="rgb(212,114,2)" fg:x="89236" fg:w="92"/><text x="24.8831%" y="719.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple (178 samples, 0.05%)</title><rect x="24.6160%" y="741" width="0.0491%" height="15" fill="rgb(234,50,24)" fg:x="89174" fg:w="178"/><text x="24.8660%" y="751.50"></text></g><g><title>__btrfs_read_lock_root_node (37 samples, 0.01%)</title><rect x="24.6728%" y="501" width="0.0102%" height="15" fill="rgb(221,68,8)" fg:x="89380" fg:w="37"/><text x="24.9228%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (37 samples, 0.01%)</title><rect x="24.6728%" y="485" width="0.0102%" height="15" fill="rgb(254,180,31)" fg:x="89380" fg:w="37"/><text x="24.9228%" y="495.50"></text></g><g><title>btrfs_search_slot (66 samples, 0.02%)</title><rect x="24.6725%" y="517" width="0.0182%" height="15" fill="rgb(247,130,50)" fg:x="89379" fg:w="66"/><text x="24.9225%" y="527.50"></text></g><g><title>btrfs_lookup (67 samples, 0.02%)</title><rect x="24.6725%" y="565" width="0.0185%" height="15" fill="rgb(211,109,4)" fg:x="89379" fg:w="67"/><text x="24.9225%" y="575.50"></text></g><g><title>btrfs_lookup_dentry (67 samples, 0.02%)</title><rect x="24.6725%" y="549" width="0.0185%" height="15" fill="rgb(238,50,21)" fg:x="89379" fg:w="67"/><text x="24.9225%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (67 samples, 0.02%)</title><rect x="24.6725%" y="533" width="0.0185%" height="15" fill="rgb(225,57,45)" fg:x="89379" fg:w="67"/><text x="24.9225%" y="543.50"></text></g><g><title>__lookup_slow (70 samples, 0.02%)</title><rect x="24.6725%" y="581" width="0.0193%" height="15" fill="rgb(209,196,50)" fg:x="89379" fg:w="70"/><text x="24.9225%" y="591.50"></text></g><g><title>filename_lookup (96 samples, 0.03%)</title><rect x="24.6676%" y="629" width="0.0265%" height="15" fill="rgb(242,140,13)" fg:x="89361" fg:w="96"/><text x="24.9176%" y="639.50"></text></g><g><title>path_lookupat (94 samples, 0.03%)</title><rect x="24.6681%" y="613" width="0.0259%" height="15" fill="rgb(217,111,7)" fg:x="89363" fg:w="94"/><text x="24.9181%" y="623.50"></text></g><g><title>walk_component (78 samples, 0.02%)</title><rect x="24.6725%" y="597" width="0.0215%" height="15" fill="rgb(253,193,51)" fg:x="89379" fg:w="78"/><text x="24.9225%" y="607.50"></text></g><g><title>do_syscall_64 (108 samples, 0.03%)</title><rect x="24.6670%" y="677" width="0.0298%" height="15" fill="rgb(252,70,29)" fg:x="89359" fg:w="108"/><text x="24.9170%" y="687.50"></text></g><g><title>__do_sys_newstat (108 samples, 0.03%)</title><rect x="24.6670%" y="661" width="0.0298%" height="15" fill="rgb(232,127,12)" fg:x="89359" fg:w="108"/><text x="24.9170%" y="671.50"></text></g><g><title>vfs_statx (107 samples, 0.03%)</title><rect x="24.6673%" y="645" width="0.0295%" height="15" fill="rgb(211,180,21)" fg:x="89360" fg:w="107"/><text x="24.9173%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.03%)</title><rect x="24.6667%" y="693" width="0.0304%" height="15" fill="rgb(229,72,13)" fg:x="89358" fg:w="110"/><text x="24.9167%" y="703.50"></text></g><g><title>__GI___xstat (112 samples, 0.03%)</title><rect x="24.6665%" y="709" width="0.0309%" height="15" fill="rgb(240,211,49)" fg:x="89357" fg:w="112"/><text x="24.9165%" y="719.50"></text></g><g><title>llvm::sys::fs::status (118 samples, 0.03%)</title><rect x="24.6659%" y="725" width="0.0326%" height="15" fill="rgb(219,149,40)" fg:x="89355" fg:w="118"/><text x="24.9159%" y="735.50"></text></g><g><title>llvm::vfs::FileSystem::exists (120 samples, 0.03%)</title><rect x="24.6656%" y="741" width="0.0331%" height="15" fill="rgb(210,127,46)" fg:x="89354" fg:w="120"/><text x="24.9156%" y="751.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (309 samples, 0.09%)</title><rect x="24.6146%" y="757" width="0.0853%" height="15" fill="rgb(220,106,7)" fg:x="89169" fg:w="309"/><text x="24.8646%" y="767.50"></text></g><g><title>clang::driver::CudaInstallationDetector::CudaInstallationDetector (43 samples, 0.01%)</title><rect x="24.7001%" y="741" width="0.0119%" height="15" fill="rgb(249,31,22)" fg:x="89479" fg:w="43"/><text x="24.9501%" y="751.50"></text></g><g><title>clang::driver::RocmInstallationDetector::getInstallationPathCandidates (37 samples, 0.01%)</title><rect x="24.7120%" y="709" width="0.0102%" height="15" fill="rgb(253,1,49)" fg:x="89522" fg:w="37"/><text x="24.9620%" y="719.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="24.7266%" y="613" width="0.0105%" height="15" fill="rgb(227,144,33)" fg:x="89575" fg:w="38"/><text x="24.9766%" y="623.50"></text></g><g><title>__x64_sys_openat (38 samples, 0.01%)</title><rect x="24.7266%" y="597" width="0.0105%" height="15" fill="rgb(249,163,44)" fg:x="89575" fg:w="38"/><text x="24.9766%" y="607.50"></text></g><g><title>do_sys_openat2 (38 samples, 0.01%)</title><rect x="24.7266%" y="581" width="0.0105%" height="15" fill="rgb(234,15,39)" fg:x="89575" fg:w="38"/><text x="24.9766%" y="591.50"></text></g><g><title>clang::driver::RocmInstallationDetector::RocmInstallationDetector (92 samples, 0.03%)</title><rect x="24.7120%" y="741" width="0.0254%" height="15" fill="rgb(207,66,16)" fg:x="89522" fg:w="92"/><text x="24.9620%" y="751.50"></text></g><g><title>clang::driver::RocmInstallationDetector::detectHIPRuntime (92 samples, 0.03%)</title><rect x="24.7120%" y="725" width="0.0254%" height="15" fill="rgb(233,112,24)" fg:x="89522" fg:w="92"/><text x="24.9620%" y="735.50"></text></g><g><title>llvm::vfs::FileSystem::getBufferForFile (43 samples, 0.01%)</title><rect x="24.7255%" y="709" width="0.0119%" height="15" fill="rgb(230,90,22)" fg:x="89571" fg:w="43"/><text x="24.9755%" y="719.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (42 samples, 0.01%)</title><rect x="24.7258%" y="693" width="0.0116%" height="15" fill="rgb(229,61,13)" fg:x="89572" fg:w="42"/><text x="24.9758%" y="703.50"></text></g><g><title>llvm::sys::fs::openFileForRead (42 samples, 0.01%)</title><rect x="24.7258%" y="677" width="0.0116%" height="15" fill="rgb(225,57,24)" fg:x="89572" fg:w="42"/><text x="24.9758%" y="687.50"></text></g><g><title>llvm::sys::fs::openFile (42 samples, 0.01%)</title><rect x="24.7258%" y="661" width="0.0116%" height="15" fill="rgb(208,169,48)" fg:x="89572" fg:w="42"/><text x="24.9758%" y="671.50"></text></g><g><title>__libc_open64 (40 samples, 0.01%)</title><rect x="24.7264%" y="645" width="0.0110%" height="15" fill="rgb(244,218,51)" fg:x="89574" fg:w="40"/><text x="24.9764%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="24.7266%" y="629" width="0.0108%" height="15" fill="rgb(214,148,10)" fg:x="89575" fg:w="39"/><text x="24.9766%" y="639.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (863 samples, 0.24%)</title><rect x="24.5044%" y="805" width="0.2382%" height="15" fill="rgb(225,174,27)" fg:x="88770" fg:w="863"/><text x="24.7544%" y="815.50"></text></g><g><title>clang::driver::Driver::getToolChain (467 samples, 0.13%)</title><rect x="24.6137%" y="789" width="0.1289%" height="15" fill="rgb(230,96,26)" fg:x="89166" fg:w="467"/><text x="24.8637%" y="799.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (467 samples, 0.13%)</title><rect x="24.6137%" y="773" width="0.1289%" height="15" fill="rgb(232,10,30)" fg:x="89166" fg:w="467"/><text x="24.8637%" y="783.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (155 samples, 0.04%)</title><rect x="24.6999%" y="757" width="0.0428%" height="15" fill="rgb(222,8,50)" fg:x="89478" fg:w="155"/><text x="24.9499%" y="767.50"></text></g><g><title>llvm::StringMapImpl::LookupBucketFor (43 samples, 0.01%)</title><rect x="24.7846%" y="581" width="0.0119%" height="15" fill="rgb(213,81,27)" fg:x="89785" fg:w="43"/><text x="25.0346%" y="591.50"></text></g><g><title>llvm::StringMap&lt;clang::IdentifierInfo*, llvm::BumpPtrAllocatorImpl&lt;llvm::MallocAllocator, 4096ul, 4096ul, 128ul&gt; &gt;::try_emplace&lt;clang::IdentifierInfo*&gt; (84 samples, 0.02%)</title><rect x="24.7741%" y="597" width="0.0232%" height="15" fill="rgb(245,50,10)" fg:x="89747" fg:w="84"/><text x="25.0241%" y="607.50"></text></g><g><title>clang::IdentifierTable::get (106 samples, 0.03%)</title><rect x="24.7703%" y="613" width="0.0293%" height="15" fill="rgb(216,100,18)" fg:x="89733" fg:w="106"/><text x="25.0203%" y="623.50"></text></g><g><title>clang::Builtin::Context::initializeBuiltins (152 samples, 0.04%)</title><rect x="24.7578%" y="629" width="0.0420%" height="15" fill="rgb(236,147,54)" fg:x="89688" fg:w="152"/><text x="25.0078%" y="639.50"></text></g><g><title>clang::CompilerInstance::createPreprocessor (99 samples, 0.03%)</title><rect x="24.8048%" y="629" width="0.0273%" height="15" fill="rgb(205,143,26)" fg:x="89858" fg:w="99"/><text x="25.0548%" y="639.50"></text></g><g><title>llvm::sys::fs::TempFile::create (38 samples, 0.01%)</title><rect x="24.8324%" y="533" width="0.0105%" height="15" fill="rgb(236,26,9)" fg:x="89958" fg:w="38"/><text x="25.0824%" y="543.50"></text></g><g><title>GetOutputStream (43 samples, 0.01%)</title><rect x="24.8324%" y="597" width="0.0119%" height="15" fill="rgb(221,165,53)" fg:x="89958" fg:w="43"/><text x="25.0824%" y="607.50"></text></g><g><title>clang::CompilerInstance::createDefaultOutputFile (43 samples, 0.01%)</title><rect x="24.8324%" y="581" width="0.0119%" height="15" fill="rgb(214,110,17)" fg:x="89958" fg:w="43"/><text x="25.0824%" y="591.50"></text></g><g><title>clang::CompilerInstance::createOutputFile (43 samples, 0.01%)</title><rect x="24.8324%" y="565" width="0.0119%" height="15" fill="rgb(237,197,12)" fg:x="89958" fg:w="43"/><text x="25.0824%" y="575.50"></text></g><g><title>clang::CompilerInstance::createOutputFileImpl (43 samples, 0.01%)</title><rect x="24.8324%" y="549" width="0.0119%" height="15" fill="rgb(205,84,17)" fg:x="89958" fg:w="43"/><text x="25.0824%" y="559.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (342 samples, 0.09%)</title><rect x="24.7526%" y="645" width="0.0944%" height="15" fill="rgb(237,18,45)" fg:x="89669" fg:w="342"/><text x="25.0026%" y="655.50"></text></g><g><title>clang::FrontendAction::CreateWrappedASTConsumer (54 samples, 0.01%)</title><rect x="24.8321%" y="629" width="0.0149%" height="15" fill="rgb(221,87,14)" fg:x="89957" fg:w="54"/><text x="25.0821%" y="639.50"></text></g><g><title>clang::CodeGenAction::CreateASTConsumer (53 samples, 0.01%)</title><rect x="24.8324%" y="613" width="0.0146%" height="15" fill="rgb(238,186,15)" fg:x="89958" fg:w="53"/><text x="25.0824%" y="623.50"></text></g><g><title>btrfs_del_inode_ref (37 samples, 0.01%)</title><rect x="24.8514%" y="453" width="0.0102%" height="15" fill="rgb(208,115,11)" fg:x="90027" fg:w="37"/><text x="25.1014%" y="463.50"></text></g><g><title>__btrfs_unlink_inode (51 samples, 0.01%)</title><rect x="24.8514%" y="469" width="0.0141%" height="15" fill="rgb(254,175,0)" fg:x="90027" fg:w="51"/><text x="25.1014%" y="479.50"></text></g><g><title>llvm::sys::fs::TempFile::keep (75 samples, 0.02%)</title><rect x="24.8489%" y="613" width="0.0207%" height="15" fill="rgb(227,24,42)" fg:x="90018" fg:w="75"/><text x="25.0989%" y="623.50"></text></g><g><title>llvm::sys::fs::rename (72 samples, 0.02%)</title><rect x="24.8498%" y="597" width="0.0199%" height="15" fill="rgb(223,211,37)" fg:x="90021" fg:w="72"/><text x="25.0998%" y="607.50"></text></g><g><title>rename (70 samples, 0.02%)</title><rect x="24.8503%" y="581" width="0.0193%" height="15" fill="rgb(235,49,27)" fg:x="90023" fg:w="70"/><text x="25.1003%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.02%)</title><rect x="24.8503%" y="565" width="0.0193%" height="15" fill="rgb(254,97,51)" fg:x="90023" fg:w="70"/><text x="25.1003%" y="575.50"></text></g><g><title>do_syscall_64 (70 samples, 0.02%)</title><rect x="24.8503%" y="549" width="0.0193%" height="15" fill="rgb(249,51,40)" fg:x="90023" fg:w="70"/><text x="25.1003%" y="559.50"></text></g><g><title>__x64_sys_rename (70 samples, 0.02%)</title><rect x="24.8503%" y="533" width="0.0193%" height="15" fill="rgb(210,128,45)" fg:x="90023" fg:w="70"/><text x="25.1003%" y="543.50"></text></g><g><title>do_renameat2 (69 samples, 0.02%)</title><rect x="24.8506%" y="517" width="0.0190%" height="15" fill="rgb(224,137,50)" fg:x="90024" fg:w="69"/><text x="25.1006%" y="527.50"></text></g><g><title>vfs_rename (67 samples, 0.02%)</title><rect x="24.8511%" y="501" width="0.0185%" height="15" fill="rgb(242,15,9)" fg:x="90026" fg:w="67"/><text x="25.1011%" y="511.50"></text></g><g><title>btrfs_rename2 (67 samples, 0.02%)</title><rect x="24.8511%" y="485" width="0.0185%" height="15" fill="rgb(233,187,41)" fg:x="90026" fg:w="67"/><text x="25.1011%" y="495.50"></text></g><g><title>clang::CompilerInstance::clearOutputFiles (77 samples, 0.02%)</title><rect x="24.8487%" y="629" width="0.0213%" height="15" fill="rgb(227,2,29)" fg:x="90017" fg:w="77"/><text x="25.0987%" y="639.50"></text></g><g><title>clang::FrontendAction::EndSourceFile (129 samples, 0.04%)</title><rect x="24.8470%" y="645" width="0.0356%" height="15" fill="rgb(222,70,3)" fg:x="90011" fg:w="129"/><text x="25.0970%" y="655.50"></text></g><g><title>clang::DependencyFileGenerator::outputDependencyFile (46 samples, 0.01%)</title><rect x="24.8699%" y="629" width="0.0127%" height="15" fill="rgb(213,11,42)" fg:x="90094" fg:w="46"/><text x="25.1199%" y="639.50"></text></g><g><title>clang::BalancedDelimiterTracker::consumeClose (97 samples, 0.03%)</title><rect x="24.8931%" y="517" width="0.0268%" height="15" fill="rgb(225,150,9)" fg:x="90178" fg:w="97"/><text x="25.1431%" y="527.50"></text></g><g><title>clang::Parser::ConsumeBrace (97 samples, 0.03%)</title><rect x="24.8931%" y="501" width="0.0268%" height="15" fill="rgb(230,162,45)" fg:x="90178" fg:w="97"/><text x="25.1431%" y="511.50"></text></g><g><title>clang::Preprocessor::Lex (97 samples, 0.03%)</title><rect x="24.8931%" y="485" width="0.0268%" height="15" fill="rgb(222,14,52)" fg:x="90178" fg:w="97"/><text x="25.1431%" y="495.50"></text></g><g><title>clang::Lexer::LexTokenInternal (96 samples, 0.03%)</title><rect x="24.8934%" y="469" width="0.0265%" height="15" fill="rgb(254,198,14)" fg:x="90179" fg:w="96"/><text x="25.1434%" y="479.50"></text></g><g><title>clang::Preprocessor::HandleDirective (84 samples, 0.02%)</title><rect x="24.8967%" y="453" width="0.0232%" height="15" fill="rgb(220,217,30)" fg:x="90191" fg:w="84"/><text x="25.1467%" y="463.50"></text></g><g><title>clang::Parser::ParseInnerNamespace (98 samples, 0.03%)</title><rect x="24.8931%" y="533" width="0.0271%" height="15" fill="rgb(215,146,41)" fg:x="90178" fg:w="98"/><text x="25.1431%" y="543.50"></text></g><g><title>clang::Parser::ParseFirstTopLevelDecl (106 samples, 0.03%)</title><rect x="24.8928%" y="613" width="0.0293%" height="15" fill="rgb(217,27,36)" fg:x="90177" fg:w="106"/><text x="25.1428%" y="623.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (106 samples, 0.03%)</title><rect x="24.8928%" y="597" width="0.0293%" height="15" fill="rgb(219,218,39)" fg:x="90177" fg:w="106"/><text x="25.1428%" y="607.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (106 samples, 0.03%)</title><rect x="24.8928%" y="581" width="0.0293%" height="15" fill="rgb(219,4,42)" fg:x="90177" fg:w="106"/><text x="25.1428%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclaration (106 samples, 0.03%)</title><rect x="24.8928%" y="565" width="0.0293%" height="15" fill="rgb(249,119,36)" fg:x="90177" fg:w="106"/><text x="25.1428%" y="575.50"></text></g><g><title>clang::Parser::ParseNamespace (105 samples, 0.03%)</title><rect x="24.8931%" y="549" width="0.0290%" height="15" fill="rgb(209,23,33)" fg:x="90178" fg:w="105"/><text x="25.1431%" y="559.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (42 samples, 0.01%)</title><rect x="24.9251%" y="533" width="0.0116%" height="15" fill="rgb(211,10,0)" fg:x="90294" fg:w="42"/><text x="25.1751%" y="543.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (72 samples, 0.02%)</title><rect x="24.9221%" y="597" width="0.0199%" height="15" fill="rgb(208,99,37)" fg:x="90283" fg:w="72"/><text x="25.1721%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (72 samples, 0.02%)</title><rect x="24.9221%" y="581" width="0.0199%" height="15" fill="rgb(213,132,31)" fg:x="90283" fg:w="72"/><text x="25.1721%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (72 samples, 0.02%)</title><rect x="24.9221%" y="565" width="0.0199%" height="15" fill="rgb(243,129,40)" fg:x="90283" fg:w="72"/><text x="25.1721%" y="575.50"></text></g><g><title>clang::Parser::ParseLinkage (68 samples, 0.02%)</title><rect x="24.9232%" y="549" width="0.0188%" height="15" fill="rgb(210,66,33)" fg:x="90287" fg:w="68"/><text x="25.1732%" y="559.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (76 samples, 0.02%)</title><rect x="24.9221%" y="613" width="0.0210%" height="15" fill="rgb(209,189,4)" fg:x="90283" fg:w="76"/><text x="25.1721%" y="623.50"></text></g><g><title>clang::Preprocessor::ReadMacroName (47 samples, 0.01%)</title><rect x="24.9651%" y="549" width="0.0130%" height="15" fill="rgb(214,107,37)" fg:x="90439" fg:w="47"/><text x="25.2151%" y="559.50"></text></g><g><title>clang::Preprocessor::Lex (39 samples, 0.01%)</title><rect x="24.9674%" y="533" width="0.0108%" height="15" fill="rgb(245,88,54)" fg:x="90447" fg:w="39"/><text x="25.2174%" y="543.50"></text></g><g><title>clang::Lexer::LexTokenInternal (39 samples, 0.01%)</title><rect x="24.9674%" y="517" width="0.0108%" height="15" fill="rgb(205,146,20)" fg:x="90447" fg:w="39"/><text x="25.2174%" y="527.50"></text></g><g><title>clang::Lexer::LexIdentifierContinue (37 samples, 0.01%)</title><rect x="24.9679%" y="501" width="0.0102%" height="15" fill="rgb(220,161,25)" fg:x="90449" fg:w="37"/><text x="25.2179%" y="511.50"></text></g><g><title>clang::Preprocessor::ReadOptionalMacroParameterListAndBody (72 samples, 0.02%)</title><rect x="24.9781%" y="549" width="0.0199%" height="15" fill="rgb(215,152,15)" fg:x="90486" fg:w="72"/><text x="25.2281%" y="559.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (160 samples, 0.04%)</title><rect x="24.9616%" y="565" width="0.0442%" height="15" fill="rgb(233,192,44)" fg:x="90426" fg:w="160"/><text x="25.2116%" y="575.50"></text></g><g><title>EvaluateDirectiveSubExpr (42 samples, 0.01%)</title><rect x="25.0146%" y="533" width="0.0116%" height="15" fill="rgb(240,170,46)" fg:x="90618" fg:w="42"/><text x="25.2646%" y="543.50"></text></g><g><title>clang::Preprocessor::EvaluateDirectiveExpression (107 samples, 0.03%)</title><rect x="25.0118%" y="549" width="0.0295%" height="15" fill="rgb(207,104,33)" fg:x="90608" fg:w="107"/><text x="25.2618%" y="559.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (156 samples, 0.04%)</title><rect x="25.0115%" y="565" width="0.0431%" height="15" fill="rgb(219,21,39)" fg:x="90607" fg:w="156"/><text x="25.2615%" y="575.50"></text></g><g><title>clang::Preprocessor::SkipExcludedConditionalBlock (48 samples, 0.01%)</title><rect x="25.0413%" y="549" width="0.0133%" height="15" fill="rgb(214,133,29)" fg:x="90715" fg:w="48"/><text x="25.2913%" y="559.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (1,203 samples, 0.33%)</title><rect x="24.7501%" y="661" width="0.3321%" height="15" fill="rgb(226,93,6)" fg:x="89660" fg:w="1203"/><text x="25.0001%" y="671.50"></text></g><g><title>clang::FrontendAction::Execute (723 samples, 0.20%)</title><rect x="24.8826%" y="645" width="0.1996%" height="15" fill="rgb(252,222,34)" fg:x="90140" fg:w="723"/><text x="25.1326%" y="655.50"></text></g><g><title>clang::ParseAST (714 samples, 0.20%)</title><rect x="24.8851%" y="629" width="0.1971%" height="15" fill="rgb(252,92,48)" fg:x="90149" fg:w="714"/><text x="25.1351%" y="639.50"></text></g><g><title>clang::Preprocessor::Lex (493 samples, 0.14%)</title><rect x="24.9461%" y="613" width="0.1361%" height="15" fill="rgb(245,223,24)" fg:x="90370" fg:w="493"/><text x="25.1961%" y="623.50"></text></g><g><title>clang::Lexer::LexTokenInternal (488 samples, 0.13%)</title><rect x="24.9475%" y="597" width="0.1347%" height="15" fill="rgb(205,176,3)" fg:x="90375" fg:w="488"/><text x="25.1975%" y="607.50"></text></g><g><title>clang::Preprocessor::HandleDirective (453 samples, 0.13%)</title><rect x="24.9571%" y="581" width="0.1250%" height="15" fill="rgb(235,151,15)" fg:x="90410" fg:w="453"/><text x="25.2071%" y="591.50"></text></g><g><title>clang::ExecuteCompilerInvocation (1,240 samples, 0.34%)</title><rect x="24.7496%" y="677" width="0.3423%" height="15" fill="rgb(237,209,11)" fg:x="89658" fg:w="1240"/><text x="24.9996%" y="687.50"></text></g><g><title>clang::driver::CC1Command::Execute (1,295 samples, 0.36%)</title><rect x="24.7427%" y="757" width="0.3575%" height="15" fill="rgb(243,227,24)" fg:x="89633" fg:w="1295"/><text x="24.9927%" y="767.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (1,295 samples, 0.36%)</title><rect x="24.7427%" y="741" width="0.3575%" height="15" fill="rgb(239,193,16)" fg:x="89633" fg:w="1295"/><text x="24.9927%" y="751.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (1,295 samples, 0.36%)</title><rect x="24.7427%" y="725" width="0.3575%" height="15" fill="rgb(231,27,9)" fg:x="89633" fg:w="1295"/><text x="24.9927%" y="735.50"></text></g><g><title>ExecuteCC1Tool (1,295 samples, 0.36%)</title><rect x="24.7427%" y="709" width="0.3575%" height="15" fill="rgb(219,169,10)" fg:x="89633" fg:w="1295"/><text x="24.9927%" y="719.50"></text></g><g><title>cc1_main (1,295 samples, 0.36%)</title><rect x="24.7427%" y="693" width="0.3575%" height="15" fill="rgb(244,229,43)" fg:x="89633" fg:w="1295"/><text x="24.9927%" y="703.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (1,307 samples, 0.36%)</title><rect x="24.7427%" y="805" width="0.3608%" height="15" fill="rgb(254,38,20)" fg:x="89633" fg:w="1307"/><text x="24.9927%" y="815.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (1,307 samples, 0.36%)</title><rect x="24.7427%" y="789" width="0.3608%" height="15" fill="rgb(250,47,30)" fg:x="89633" fg:w="1307"/><text x="24.9927%" y="799.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (1,307 samples, 0.36%)</title><rect x="24.7427%" y="773" width="0.3608%" height="15" fill="rgb(224,124,36)" fg:x="89633" fg:w="1307"/><text x="24.9927%" y="783.50"></text></g><g><title>main (2,193 samples, 0.61%)</title><rect x="24.5044%" y="821" width="0.6054%" height="15" fill="rgb(246,68,51)" fg:x="88770" fg:w="2193"/><text x="24.7544%" y="831.50"></text></g><g><title>[unknown] (4,714 samples, 1.30%)</title><rect x="23.8118%" y="837" width="1.3013%" height="15" fill="rgb(253,43,49)" fg:x="86261" fg:w="4714"/><text x="24.0618%" y="847.50"></text></g><g><title>__spawni_child (68 samples, 0.02%)</title><rect x="25.1131%" y="821" width="0.0188%" height="15" fill="rgb(219,54,36)" fg:x="90975" fg:w="68"/><text x="25.3631%" y="831.50"></text></g><g><title>__GI_execve (52 samples, 0.01%)</title><rect x="25.1175%" y="805" width="0.0144%" height="15" fill="rgb(227,133,34)" fg:x="90991" fg:w="52"/><text x="25.3675%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="25.1175%" y="789" width="0.0144%" height="15" fill="rgb(247,227,15)" fg:x="90991" fg:w="52"/><text x="25.3675%" y="799.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="25.1175%" y="773" width="0.0144%" height="15" fill="rgb(229,96,14)" fg:x="90991" fg:w="52"/><text x="25.3675%" y="783.50"></text></g><g><title>__x64_sys_execve (52 samples, 0.01%)</title><rect x="25.1175%" y="757" width="0.0144%" height="15" fill="rgb(220,79,17)" fg:x="90991" fg:w="52"/><text x="25.3675%" y="767.50"></text></g><g><title>do_execveat_common (52 samples, 0.01%)</title><rect x="25.1175%" y="741" width="0.0144%" height="15" fill="rgb(205,131,53)" fg:x="90991" fg:w="52"/><text x="25.3675%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.02%)</title><rect x="25.1385%" y="773" width="0.0193%" height="15" fill="rgb(209,50,29)" fg:x="91067" fg:w="70"/><text x="25.3885%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.02%)</title><rect x="25.1393%" y="757" width="0.0185%" height="15" fill="rgb(245,86,46)" fg:x="91070" fg:w="67"/><text x="25.3893%" y="767.50"></text></g><g><title>native_write_msr (67 samples, 0.02%)</title><rect x="25.1393%" y="741" width="0.0185%" height="15" fill="rgb(235,66,46)" fg:x="91070" fg:w="67"/><text x="25.3893%" y="751.50"></text></g><g><title>__GI___clone (164 samples, 0.05%)</title><rect x="25.1131%" y="837" width="0.0453%" height="15" fill="rgb(232,148,31)" fg:x="90975" fg:w="164"/><text x="25.3631%" y="847.50"></text></g><g><title>ret_from_fork (75 samples, 0.02%)</title><rect x="25.1377%" y="821" width="0.0207%" height="15" fill="rgb(217,149,8)" fg:x="91064" fg:w="75"/><text x="25.3877%" y="831.50"></text></g><g><title>schedule_tail (74 samples, 0.02%)</title><rect x="25.1380%" y="805" width="0.0204%" height="15" fill="rgb(209,183,11)" fg:x="91065" fg:w="74"/><text x="25.3880%" y="815.50"></text></g><g><title>finish_task_switch (72 samples, 0.02%)</title><rect x="25.1385%" y="789" width="0.0199%" height="15" fill="rgb(208,55,20)" fg:x="91067" fg:w="72"/><text x="25.3885%" y="799.50"></text></g><g><title>[libstdc++.so.6.0.28] (38 samples, 0.01%)</title><rect x="25.1617%" y="773" width="0.0105%" height="15" fill="rgb(218,39,14)" fg:x="91151" fg:w="38"/><text x="25.4117%" y="783.50"></text></g><g><title>_dl_start_user (45 samples, 0.01%)</title><rect x="25.1617%" y="837" width="0.0124%" height="15" fill="rgb(216,169,33)" fg:x="91151" fg:w="45"/><text x="25.4117%" y="847.50"></text></g><g><title>_dl_init (45 samples, 0.01%)</title><rect x="25.1617%" y="821" width="0.0124%" height="15" fill="rgb(233,80,24)" fg:x="91151" fg:w="45"/><text x="25.4117%" y="831.50"></text></g><g><title>call_init (45 samples, 0.01%)</title><rect x="25.1617%" y="805" width="0.0124%" height="15" fill="rgb(213,179,31)" fg:x="91151" fg:w="45"/><text x="25.4117%" y="815.50"></text></g><g><title>call_init (45 samples, 0.01%)</title><rect x="25.1617%" y="789" width="0.0124%" height="15" fill="rgb(209,19,5)" fg:x="91151" fg:w="45"/><text x="25.4117%" y="799.50"></text></g><g><title>__GI_exit (159 samples, 0.04%)</title><rect x="25.1780%" y="805" width="0.0439%" height="15" fill="rgb(219,18,35)" fg:x="91210" fg:w="159"/><text x="25.4280%" y="815.50"></text></g><g><title>__run_exit_handlers (159 samples, 0.04%)</title><rect x="25.1780%" y="789" width="0.0439%" height="15" fill="rgb(209,169,16)" fg:x="91210" fg:w="159"/><text x="25.4280%" y="799.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (48 samples, 0.01%)</title><rect x="25.4350%" y="789" width="0.0133%" height="15" fill="rgb(245,90,51)" fg:x="92141" fg:w="48"/><text x="25.6850%" y="799.50"></text></g><g><title>polly::initializePollyPasses (41 samples, 0.01%)</title><rect x="25.4369%" y="773" width="0.0113%" height="15" fill="rgb(220,99,45)" fg:x="92148" fg:w="41"/><text x="25.6869%" y="783.50"></text></g><g><title>__libc_csu_init (1,002 samples, 0.28%)</title><rect x="25.2219%" y="805" width="0.2766%" height="15" fill="rgb(249,89,25)" fg:x="91369" fg:w="1002"/><text x="25.4719%" y="815.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (44 samples, 0.01%)</title><rect x="25.5368%" y="757" width="0.0121%" height="15" fill="rgb(239,193,0)" fg:x="92510" fg:w="44"/><text x="25.7868%" y="767.50"></text></g><g><title>clang::driver::Driver::getToolChain (45 samples, 0.01%)</title><rect x="25.5368%" y="773" width="0.0124%" height="15" fill="rgb(231,126,1)" fg:x="92510" fg:w="45"/><text x="25.7868%" y="783.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (126 samples, 0.03%)</title><rect x="25.5159%" y="789" width="0.0348%" height="15" fill="rgb(243,166,3)" fg:x="92434" fg:w="126"/><text x="25.7659%" y="799.50"></text></g><g><title>clang::driver::CC1Command::Execute (69 samples, 0.02%)</title><rect x="25.5520%" y="741" width="0.0190%" height="15" fill="rgb(223,22,34)" fg:x="92565" fg:w="69"/><text x="25.8020%" y="751.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (69 samples, 0.02%)</title><rect x="25.5520%" y="725" width="0.0190%" height="15" fill="rgb(251,52,51)" fg:x="92565" fg:w="69"/><text x="25.8020%" y="735.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (67 samples, 0.02%)</title><rect x="25.5526%" y="709" width="0.0185%" height="15" fill="rgb(221,165,28)" fg:x="92567" fg:w="67"/><text x="25.8026%" y="719.50"></text></g><g><title>ExecuteCC1Tool (67 samples, 0.02%)</title><rect x="25.5526%" y="693" width="0.0185%" height="15" fill="rgb(218,121,47)" fg:x="92567" fg:w="67"/><text x="25.8026%" y="703.50"></text></g><g><title>llvm::sys::ExecuteAndWait (41 samples, 0.01%)</title><rect x="25.5716%" y="725" width="0.0113%" height="15" fill="rgb(209,120,9)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="735.50"></text></g><g><title>llvm::sys::Wait (41 samples, 0.01%)</title><rect x="25.5716%" y="709" width="0.0113%" height="15" fill="rgb(236,68,12)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="719.50"></text></g><g><title>__GI___wait4 (41 samples, 0.01%)</title><rect x="25.5716%" y="693" width="0.0113%" height="15" fill="rgb(225,194,26)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="25.5716%" y="677" width="0.0113%" height="15" fill="rgb(231,84,39)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="687.50"></text></g><g><title>do_syscall_64 (41 samples, 0.01%)</title><rect x="25.5716%" y="661" width="0.0113%" height="15" fill="rgb(210,11,45)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="671.50"></text></g><g><title>__do_sys_wait4 (41 samples, 0.01%)</title><rect x="25.5716%" y="645" width="0.0113%" height="15" fill="rgb(224,54,52)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="655.50"></text></g><g><title>kernel_wait4 (41 samples, 0.01%)</title><rect x="25.5716%" y="629" width="0.0113%" height="15" fill="rgb(238,102,14)" fg:x="92636" fg:w="41"/><text x="25.8216%" y="639.50"></text></g><g><title>do_wait (40 samples, 0.01%)</title><rect x="25.5719%" y="613" width="0.0110%" height="15" fill="rgb(243,160,52)" fg:x="92637" fg:w="40"/><text x="25.8219%" y="623.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (114 samples, 0.03%)</title><rect x="25.5520%" y="773" width="0.0315%" height="15" fill="rgb(216,114,19)" fg:x="92565" fg:w="114"/><text x="25.8020%" y="783.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (114 samples, 0.03%)</title><rect x="25.5520%" y="757" width="0.0315%" height="15" fill="rgb(244,166,37)" fg:x="92565" fg:w="114"/><text x="25.8020%" y="767.50"></text></g><g><title>clang::driver::Command::Execute (45 samples, 0.01%)</title><rect x="25.5711%" y="741" width="0.0124%" height="15" fill="rgb(246,29,44)" fg:x="92634" fg:w="45"/><text x="25.8211%" y="751.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (122 samples, 0.03%)</title><rect x="25.5515%" y="789" width="0.0337%" height="15" fill="rgb(215,56,53)" fg:x="92563" fg:w="122"/><text x="25.8015%" y="799.50"></text></g><g><title>[libc-2.31.so] (40 samples, 0.01%)</title><rect x="25.5940%" y="725" width="0.0110%" height="15" fill="rgb(217,60,2)" fg:x="92717" fg:w="40"/><text x="25.8440%" y="735.50"></text></g><g><title>llvm::opt::OptTable::OptTable (78 samples, 0.02%)</title><rect x="25.5893%" y="741" width="0.0215%" height="15" fill="rgb(207,26,24)" fg:x="92700" fg:w="78"/><text x="25.8393%" y="751.50"></text></g><g><title>clang::driver::getDriverOptTable (116 samples, 0.03%)</title><rect x="25.5890%" y="773" width="0.0320%" height="15" fill="rgb(252,210,15)" fg:x="92699" fg:w="116"/><text x="25.8390%" y="783.50"></text></g><g><title>clang::driver::getDriverOptTable (115 samples, 0.03%)</title><rect x="25.5893%" y="757" width="0.0317%" height="15" fill="rgb(253,209,26)" fg:x="92700" fg:w="115"/><text x="25.8393%" y="767.50"></text></g><g><title>llvm::opt::OptTable::addValues (37 samples, 0.01%)</title><rect x="25.6108%" y="741" width="0.0102%" height="15" fill="rgb(238,170,14)" fg:x="92778" fg:w="37"/><text x="25.8608%" y="751.50"></text></g><g><title>clang::driver::getDriverMode (123 samples, 0.03%)</title><rect x="25.5874%" y="789" width="0.0340%" height="15" fill="rgb(216,178,15)" fg:x="92693" fg:w="123"/><text x="25.8374%" y="799.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (107 samples, 0.03%)</title><rect x="25.6384%" y="757" width="0.0295%" height="15" fill="rgb(250,197,2)" fg:x="92878" fg:w="107"/><text x="25.8884%" y="767.50"></text></g><g><title>llvm::InitLLVM::~InitLLVM (160 samples, 0.04%)</title><rect x="25.6246%" y="789" width="0.0442%" height="15" fill="rgb(212,70,42)" fg:x="92828" fg:w="160"/><text x="25.8746%" y="799.50"></text></g><g><title>llvm::llvm_shutdown (160 samples, 0.04%)</title><rect x="25.6246%" y="773" width="0.0442%" height="15" fill="rgb(227,213,9)" fg:x="92828" fg:w="160"/><text x="25.8746%" y="783.50"></text></g><g><title>llvm::InitializeAllTargets (159 samples, 0.04%)</title><rect x="25.6688%" y="789" width="0.0439%" height="15" fill="rgb(245,99,25)" fg:x="92988" fg:w="159"/><text x="25.9188%" y="799.50"></text></g><g><title>__libc_start_main (1,965 samples, 0.54%)</title><rect x="25.1777%" y="821" width="0.5424%" height="15" fill="rgb(250,82,29)" fg:x="91209" fg:w="1965"/><text x="25.4277%" y="831.50"></text></g><g><title>main (803 samples, 0.22%)</title><rect x="25.4985%" y="805" width="0.2217%" height="15" fill="rgb(241,226,54)" fg:x="92371" fg:w="803"/><text x="25.7485%" y="815.50"></text></g><g><title>__do_munmap (49 samples, 0.01%)</title><rect x="25.7331%" y="533" width="0.0135%" height="15" fill="rgb(221,99,41)" fg:x="93221" fg:w="49"/><text x="25.9831%" y="543.50"></text></g><g><title>mmap_region (86 samples, 0.02%)</title><rect x="25.7328%" y="549" width="0.0237%" height="15" fill="rgb(213,90,21)" fg:x="93220" fg:w="86"/><text x="25.9828%" y="559.50"></text></g><g><title>do_mmap (88 samples, 0.02%)</title><rect x="25.7326%" y="565" width="0.0243%" height="15" fill="rgb(205,208,24)" fg:x="93219" fg:w="88"/><text x="25.9826%" y="575.50"></text></g><g><title>ksys_mmap_pgoff (92 samples, 0.03%)</title><rect x="25.7320%" y="597" width="0.0254%" height="15" fill="rgb(246,31,12)" fg:x="93217" fg:w="92"/><text x="25.9820%" y="607.50"></text></g><g><title>vm_mmap_pgoff (91 samples, 0.03%)</title><rect x="25.7323%" y="581" width="0.0251%" height="15" fill="rgb(213,154,6)" fg:x="93218" fg:w="91"/><text x="25.9823%" y="591.50"></text></g><g><title>do_syscall_64 (94 samples, 0.03%)</title><rect x="25.7320%" y="613" width="0.0259%" height="15" fill="rgb(222,163,29)" fg:x="93217" fg:w="94"/><text x="25.9820%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (95 samples, 0.03%)</title><rect x="25.7320%" y="629" width="0.0262%" height="15" fill="rgb(227,201,8)" fg:x="93217" fg:w="95"/><text x="25.9820%" y="639.50"></text></g><g><title>_dl_map_segments (111 samples, 0.03%)</title><rect x="25.7279%" y="677" width="0.0306%" height="15" fill="rgb(233,9,32)" fg:x="93202" fg:w="111"/><text x="25.9779%" y="687.50"></text></g><g><title>__mmap64 (97 samples, 0.03%)</title><rect x="25.7317%" y="661" width="0.0268%" height="15" fill="rgb(217,54,24)" fg:x="93216" fg:w="97"/><text x="25.9817%" y="671.50"></text></g><g><title>__mmap64 (97 samples, 0.03%)</title><rect x="25.7317%" y="645" width="0.0268%" height="15" fill="rgb(235,192,0)" fg:x="93216" fg:w="97"/><text x="25.9817%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (149 samples, 0.04%)</title><rect x="25.7268%" y="693" width="0.0411%" height="15" fill="rgb(235,45,9)" fg:x="93198" fg:w="149"/><text x="25.9768%" y="703.50"></text></g><g><title>_dl_catch_exception (211 samples, 0.06%)</title><rect x="25.7234%" y="741" width="0.0582%" height="15" fill="rgb(246,42,40)" fg:x="93186" fg:w="211"/><text x="25.9734%" y="751.50"></text></g><g><title>openaux (211 samples, 0.06%)</title><rect x="25.7234%" y="725" width="0.0582%" height="15" fill="rgb(248,111,24)" fg:x="93186" fg:w="211"/><text x="25.9734%" y="735.50"></text></g><g><title>_dl_map_object (211 samples, 0.06%)</title><rect x="25.7234%" y="709" width="0.0582%" height="15" fill="rgb(249,65,22)" fg:x="93186" fg:w="211"/><text x="25.9734%" y="719.50"></text></g><g><title>_dl_map_object_deps (219 samples, 0.06%)</title><rect x="25.7226%" y="757" width="0.0605%" height="15" fill="rgb(238,111,51)" fg:x="93183" fg:w="219"/><text x="25.9726%" y="767.50"></text></g><g><title>_dl_protect_relro (38 samples, 0.01%)</title><rect x="25.7880%" y="741" width="0.0105%" height="15" fill="rgb(250,118,22)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="751.50"></text></g><g><title>__mprotect (38 samples, 0.01%)</title><rect x="25.7880%" y="725" width="0.0105%" height="15" fill="rgb(234,84,26)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="25.7880%" y="709" width="0.0105%" height="15" fill="rgb(243,172,12)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="719.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="25.7880%" y="693" width="0.0105%" height="15" fill="rgb(236,150,49)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="703.50"></text></g><g><title>__x64_sys_mprotect (38 samples, 0.01%)</title><rect x="25.7880%" y="677" width="0.0105%" height="15" fill="rgb(225,197,26)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="687.50"></text></g><g><title>do_mprotect_pkey (38 samples, 0.01%)</title><rect x="25.7880%" y="661" width="0.0105%" height="15" fill="rgb(214,17,42)" fg:x="93420" fg:w="38"/><text x="26.0380%" y="671.50"></text></g><g><title>mprotect_fixup (37 samples, 0.01%)</title><rect x="25.7883%" y="645" width="0.0102%" height="15" fill="rgb(224,165,40)" fg:x="93421" fg:w="37"/><text x="26.0383%" y="655.50"></text></g><g><title>dl_new_hash (78 samples, 0.02%)</title><rect x="25.8449%" y="693" width="0.0215%" height="15" fill="rgb(246,100,4)" fg:x="93626" fg:w="78"/><text x="26.0949%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (296 samples, 0.08%)</title><rect x="25.8416%" y="709" width="0.0817%" height="15" fill="rgb(222,103,0)" fg:x="93614" fg:w="296"/><text x="26.0916%" y="719.50"></text></g><g><title>do_lookup_x (206 samples, 0.06%)</title><rect x="25.8664%" y="693" width="0.0569%" height="15" fill="rgb(227,189,26)" fg:x="93704" fg:w="206"/><text x="26.1164%" y="703.50"></text></g><g><title>kernel_init_free_pages (38 samples, 0.01%)</title><rect x="25.9454%" y="581" width="0.0105%" height="15" fill="rgb(214,202,17)" fg:x="93990" fg:w="38"/><text x="26.1954%" y="591.50"></text></g><g><title>clear_page_erms (38 samples, 0.01%)</title><rect x="25.9454%" y="565" width="0.0105%" height="15" fill="rgb(229,111,3)" fg:x="93990" fg:w="38"/><text x="26.1954%" y="575.50"></text></g><g><title>__alloc_pages_nodemask (60 samples, 0.02%)</title><rect x="25.9396%" y="629" width="0.0166%" height="15" fill="rgb(229,172,15)" fg:x="93969" fg:w="60"/><text x="26.1896%" y="639.50"></text></g><g><title>get_page_from_freelist (54 samples, 0.01%)</title><rect x="25.9412%" y="613" width="0.0149%" height="15" fill="rgb(230,224,35)" fg:x="93975" fg:w="54"/><text x="26.1912%" y="623.50"></text></g><g><title>prep_new_page (39 samples, 0.01%)</title><rect x="25.9454%" y="597" width="0.0108%" height="15" fill="rgb(251,141,6)" fg:x="93990" fg:w="39"/><text x="26.1954%" y="607.50"></text></g><g><title>alloc_pages_vma (61 samples, 0.02%)</title><rect x="25.9396%" y="645" width="0.0168%" height="15" fill="rgb(225,208,6)" fg:x="93969" fg:w="61"/><text x="26.1896%" y="655.50"></text></g><g><title>copy_page (51 samples, 0.01%)</title><rect x="25.9573%" y="645" width="0.0141%" height="15" fill="rgb(246,181,16)" fg:x="94033" fg:w="51"/><text x="26.2073%" y="655.50"></text></g><g><title>finish_fault (37 samples, 0.01%)</title><rect x="25.9746%" y="645" width="0.0102%" height="15" fill="rgb(227,129,36)" fg:x="94096" fg:w="37"/><text x="26.2246%" y="655.50"></text></g><g><title>handle_mm_fault (220 samples, 0.06%)</title><rect x="25.9280%" y="661" width="0.0607%" height="15" fill="rgb(248,117,24)" fg:x="93927" fg:w="220"/><text x="26.1780%" y="671.50"></text></g><g><title>exc_page_fault (238 samples, 0.07%)</title><rect x="25.9239%" y="693" width="0.0657%" height="15" fill="rgb(214,185,35)" fg:x="93912" fg:w="238"/><text x="26.1739%" y="703.50"></text></g><g><title>do_user_addr_fault (234 samples, 0.06%)</title><rect x="25.9250%" y="677" width="0.0646%" height="15" fill="rgb(236,150,34)" fg:x="93916" fg:w="234"/><text x="26.1750%" y="687.50"></text></g><g><title>asm_exc_page_fault (242 samples, 0.07%)</title><rect x="25.9233%" y="709" width="0.0668%" height="15" fill="rgb(243,228,27)" fg:x="93910" fg:w="242"/><text x="26.1733%" y="719.50"></text></g><g><title>elf_machine_rela (671 samples, 0.19%)</title><rect x="25.8115%" y="725" width="0.1852%" height="15" fill="rgb(245,77,44)" fg:x="93505" fg:w="671"/><text x="26.0615%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (731 samples, 0.20%)</title><rect x="25.7985%" y="741" width="0.2018%" height="15" fill="rgb(235,214,42)" fg:x="93458" fg:w="731"/><text x="26.0485%" y="751.50"></text></g><g><title>_dl_relocate_object (774 samples, 0.21%)</title><rect x="25.7875%" y="757" width="0.2137%" height="15" fill="rgb(221,74,3)" fg:x="93418" fg:w="774"/><text x="26.0375%" y="767.50"></text></g><g><title>[ld-2.31.so] (1,026 samples, 0.28%)</title><rect x="25.7204%" y="773" width="0.2832%" height="15" fill="rgb(206,121,29)" fg:x="93175" fg:w="1026"/><text x="25.9704%" y="783.50"></text></g><g><title>_dl_start_final (1,029 samples, 0.28%)</title><rect x="25.7201%" y="805" width="0.2840%" height="15" fill="rgb(249,131,53)" fg:x="93174" fg:w="1029"/><text x="25.9701%" y="815.50"></text></g><g><title>_dl_sysdep_start (1,029 samples, 0.28%)</title><rect x="25.7201%" y="789" width="0.2840%" height="15" fill="rgb(236,170,29)" fg:x="93174" fg:w="1029"/><text x="25.9701%" y="799.50"></text></g><g><title>_dl_start (1,036 samples, 0.29%)</title><rect x="25.7201%" y="821" width="0.2860%" height="15" fill="rgb(247,96,15)" fg:x="93174" fg:w="1036"/><text x="25.9701%" y="831.50"></text></g><g><title>_start (3,006 samples, 0.83%)</title><rect x="25.1777%" y="837" width="0.8298%" height="15" fill="rgb(211,210,7)" fg:x="91209" fg:w="3006"/><text x="25.4277%" y="847.50"></text></g><g><title>asm_exc_page_fault (261 samples, 0.07%)</title><rect x="26.0075%" y="837" width="0.0720%" height="15" fill="rgb(240,88,50)" fg:x="94215" fg:w="261"/><text x="26.2575%" y="847.50"></text></g><g><title>free_unref_page_list (37 samples, 0.01%)</title><rect x="26.1146%" y="693" width="0.0102%" height="15" fill="rgb(209,229,26)" fg:x="94603" fg:w="37"/><text x="26.3646%" y="703.50"></text></g><g><title>tlb_finish_mmu (83 samples, 0.02%)</title><rect x="26.1022%" y="725" width="0.0229%" height="15" fill="rgb(210,68,23)" fg:x="94558" fg:w="83"/><text x="26.3522%" y="735.50"></text></g><g><title>release_pages (67 samples, 0.02%)</title><rect x="26.1066%" y="709" width="0.0185%" height="15" fill="rgb(229,180,13)" fg:x="94574" fg:w="67"/><text x="26.3566%" y="719.50"></text></g><g><title>mark_page_accessed (46 samples, 0.01%)</title><rect x="26.1850%" y="693" width="0.0127%" height="15" fill="rgb(236,53,44)" fg:x="94858" fg:w="46"/><text x="26.4350%" y="703.50"></text></g><g><title>__mod_lruvec_state (44 samples, 0.01%)</title><rect x="26.2264%" y="677" width="0.0121%" height="15" fill="rgb(244,214,29)" fg:x="95008" fg:w="44"/><text x="26.4764%" y="687.50"></text></g><g><title>__mod_memcg_lruvec_state (55 samples, 0.02%)</title><rect x="26.2385%" y="677" width="0.0152%" height="15" fill="rgb(220,75,29)" fg:x="95052" fg:w="55"/><text x="26.4885%" y="687.50"></text></g><g><title>page_remove_rmap (220 samples, 0.06%)</title><rect x="26.1977%" y="693" width="0.0607%" height="15" fill="rgb(214,183,37)" fg:x="94904" fg:w="220"/><text x="26.4477%" y="703.50"></text></g><g><title>free_pages_and_swap_cache (39 samples, 0.01%)</title><rect x="26.2592%" y="677" width="0.0108%" height="15" fill="rgb(239,117,29)" fg:x="95127" fg:w="39"/><text x="26.5092%" y="687.50"></text></g><g><title>tlb_flush_mmu (115 samples, 0.03%)</title><rect x="26.2592%" y="693" width="0.0317%" height="15" fill="rgb(237,171,35)" fg:x="95127" fg:w="115"/><text x="26.5092%" y="703.50"></text></g><g><title>release_pages (76 samples, 0.02%)</title><rect x="26.2700%" y="677" width="0.0210%" height="15" fill="rgb(229,178,53)" fg:x="95166" fg:w="76"/><text x="26.5200%" y="687.50"></text></g><g><title>unmap_page_range (640 samples, 0.18%)</title><rect x="26.1259%" y="709" width="0.1767%" height="15" fill="rgb(210,102,19)" fg:x="94644" fg:w="640"/><text x="26.3759%" y="719.50"></text></g><g><title>mmput (753 samples, 0.21%)</title><rect x="26.0953%" y="757" width="0.2079%" height="15" fill="rgb(235,127,22)" fg:x="94533" fg:w="753"/><text x="26.3453%" y="767.50"></text></g><g><title>exit_mmap (752 samples, 0.21%)</title><rect x="26.0955%" y="741" width="0.2076%" height="15" fill="rgb(244,31,31)" fg:x="94534" fg:w="752"/><text x="26.3455%" y="751.50"></text></g><g><title>unmap_vmas (645 samples, 0.18%)</title><rect x="26.1251%" y="725" width="0.1780%" height="15" fill="rgb(231,43,21)" fg:x="94641" fg:w="645"/><text x="26.3751%" y="735.50"></text></g><g><title>__x64_sys_exit_group (757 samples, 0.21%)</title><rect x="26.0947%" y="805" width="0.2090%" height="15" fill="rgb(217,131,35)" fg:x="94531" fg:w="757"/><text x="26.3447%" y="815.50"></text></g><g><title>do_group_exit (757 samples, 0.21%)</title><rect x="26.0947%" y="789" width="0.2090%" height="15" fill="rgb(221,149,4)" fg:x="94531" fg:w="757"/><text x="26.3447%" y="799.50"></text></g><g><title>do_exit (757 samples, 0.21%)</title><rect x="26.0947%" y="773" width="0.2090%" height="15" fill="rgb(232,170,28)" fg:x="94531" fg:w="757"/><text x="26.3447%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (798 samples, 0.22%)</title><rect x="26.0859%" y="837" width="0.2203%" height="15" fill="rgb(238,56,10)" fg:x="94499" fg:w="798"/><text x="26.3359%" y="847.50"></text></g><g><title>do_syscall_64 (798 samples, 0.22%)</title><rect x="26.0859%" y="821" width="0.2203%" height="15" fill="rgb(235,196,14)" fg:x="94499" fg:w="798"/><text x="26.3359%" y="831.50"></text></g><g><title>clang (9,683 samples, 2.67%)</title><rect x="23.6396%" y="853" width="2.6729%" height="15" fill="rgb(216,45,48)" fg:x="85637" fg:w="9683"/><text x="23.8896%" y="863.50">cl..</text></g><g><title>[perf-985085.map] (119 samples, 0.03%)</title><rect x="26.3202%" y="837" width="0.0328%" height="15" fill="rgb(238,213,17)" fg:x="95348" fg:w="119"/><text x="26.5702%" y="847.50"></text></g><g><title>find-action-loo (136 samples, 0.04%)</title><rect x="26.3202%" y="853" width="0.0375%" height="15" fill="rgb(212,13,2)" fg:x="95348" fg:w="136"/><text x="26.5702%" y="863.50"></text></g><g><title>[perf-985085.map] (66 samples, 0.02%)</title><rect x="26.3606%" y="837" width="0.0182%" height="15" fill="rgb(240,114,20)" fg:x="95494" fg:w="66"/><text x="26.6106%" y="847.50"></text></g><g><title>globbing_pool-0 (82 samples, 0.02%)</title><rect x="26.3578%" y="853" width="0.0226%" height="15" fill="rgb(228,41,40)" fg:x="95484" fg:w="82"/><text x="26.6078%" y="863.50"></text></g><g><title>[perf-985085.map] (106 samples, 0.03%)</title><rect x="26.3854%" y="837" width="0.0293%" height="15" fill="rgb(244,132,35)" fg:x="95584" fg:w="106"/><text x="26.6354%" y="847.50"></text></g><g><title>globbing_pool-1 (132 samples, 0.04%)</title><rect x="26.3804%" y="853" width="0.0364%" height="15" fill="rgb(253,189,4)" fg:x="95566" fg:w="132"/><text x="26.6304%" y="863.50"></text></g><g><title>[perf-985085.map] (112 samples, 0.03%)</title><rect x="26.4271%" y="837" width="0.0309%" height="15" fill="rgb(224,37,19)" fg:x="95735" fg:w="112"/><text x="26.6771%" y="847.50"></text></g><g><title>globbing_pool-2 (165 samples, 0.05%)</title><rect x="26.4169%" y="853" width="0.0455%" height="15" fill="rgb(235,223,18)" fg:x="95698" fg:w="165"/><text x="26.6669%" y="863.50"></text></g><g><title>[perf-985085.map] (94 samples, 0.03%)</title><rect x="26.4682%" y="837" width="0.0259%" height="15" fill="rgb(235,163,25)" fg:x="95884" fg:w="94"/><text x="26.7182%" y="847.50"></text></g><g><title>globbing_pool-3 (120 samples, 0.03%)</title><rect x="26.4624%" y="853" width="0.0331%" height="15" fill="rgb(217,145,28)" fg:x="95863" fg:w="120"/><text x="26.7124%" y="863.50"></text></g><g><title>[perf-985085.map] (90 samples, 0.02%)</title><rect x="26.5005%" y="837" width="0.0248%" height="15" fill="rgb(223,223,32)" fg:x="96001" fg:w="90"/><text x="26.7505%" y="847.50"></text></g><g><title>globbing_pool-4 (202 samples, 0.06%)</title><rect x="26.4955%" y="853" width="0.0558%" height="15" fill="rgb(227,189,39)" fg:x="95983" fg:w="202"/><text x="26.7455%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.03%)</title><rect x="26.5262%" y="837" width="0.0251%" height="15" fill="rgb(248,10,22)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (91 samples, 0.03%)</title><rect x="26.5262%" y="821" width="0.0251%" height="15" fill="rgb(248,46,39)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (91 samples, 0.03%)</title><rect x="26.5262%" y="805" width="0.0251%" height="15" fill="rgb(248,113,48)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="815.50"></text></g><g><title>arch_do_signal (91 samples, 0.03%)</title><rect x="26.5262%" y="789" width="0.0251%" height="15" fill="rgb(245,16,25)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="799.50"></text></g><g><title>get_signal (91 samples, 0.03%)</title><rect x="26.5262%" y="773" width="0.0251%" height="15" fill="rgb(249,152,16)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="783.50"></text></g><g><title>do_group_exit (91 samples, 0.03%)</title><rect x="26.5262%" y="757" width="0.0251%" height="15" fill="rgb(250,16,1)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="767.50"></text></g><g><title>do_exit (91 samples, 0.03%)</title><rect x="26.5262%" y="741" width="0.0251%" height="15" fill="rgb(249,138,3)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="751.50"></text></g><g><title>mmput (91 samples, 0.03%)</title><rect x="26.5262%" y="725" width="0.0251%" height="15" fill="rgb(227,71,41)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="735.50"></text></g><g><title>exit_mmap (91 samples, 0.03%)</title><rect x="26.5262%" y="709" width="0.0251%" height="15" fill="rgb(209,184,23)" fg:x="96094" fg:w="91"/><text x="26.7762%" y="719.50"></text></g><g><title>unmap_vmas (89 samples, 0.02%)</title><rect x="26.5267%" y="693" width="0.0246%" height="15" fill="rgb(223,215,31)" fg:x="96096" fg:w="89"/><text x="26.7767%" y="703.50"></text></g><g><title>unmap_page_range (89 samples, 0.02%)</title><rect x="26.5267%" y="677" width="0.0246%" height="15" fill="rgb(210,146,28)" fg:x="96096" fg:w="89"/><text x="26.7767%" y="687.50"></text></g><g><title>tlb_flush_mmu (54 samples, 0.01%)</title><rect x="26.5364%" y="661" width="0.0149%" height="15" fill="rgb(209,183,41)" fg:x="96131" fg:w="54"/><text x="26.7864%" y="671.50"></text></g><g><title>release_pages (49 samples, 0.01%)</title><rect x="26.5378%" y="645" width="0.0135%" height="15" fill="rgb(209,224,45)" fg:x="96136" fg:w="49"/><text x="26.7878%" y="655.50"></text></g><g><title>[perf-985085.map] (49 samples, 0.01%)</title><rect x="26.5527%" y="837" width="0.0135%" height="15" fill="rgb(224,209,51)" fg:x="96190" fg:w="49"/><text x="26.8027%" y="847.50"></text></g><g><title>globbing_pool-5 (58 samples, 0.02%)</title><rect x="26.5513%" y="853" width="0.0160%" height="15" fill="rgb(223,17,39)" fg:x="96185" fg:w="58"/><text x="26.8013%" y="863.50"></text></g><g><title>globbing_pool-6 (48 samples, 0.01%)</title><rect x="26.5673%" y="853" width="0.0133%" height="15" fill="rgb(234,204,37)" fg:x="96243" fg:w="48"/><text x="26.8173%" y="863.50"></text></g><g><title>[perf-985085.map] (61 samples, 0.02%)</title><rect x="26.5841%" y="837" width="0.0168%" height="15" fill="rgb(236,120,5)" fg:x="96304" fg:w="61"/><text x="26.8341%" y="847.50"></text></g><g><title>globbing_pool-7 (78 samples, 0.02%)</title><rect x="26.5806%" y="853" width="0.0215%" height="15" fill="rgb(248,97,27)" fg:x="96291" fg:w="78"/><text x="26.8306%" y="863.50"></text></g><g><title>[perf-985085.map] (89 samples, 0.02%)</title><rect x="26.6071%" y="837" width="0.0246%" height="15" fill="rgb(240,66,17)" fg:x="96387" fg:w="89"/><text x="26.8571%" y="847.50"></text></g><g><title>globbing_pool-8 (124 samples, 0.03%)</title><rect x="26.6021%" y="853" width="0.0342%" height="15" fill="rgb(210,79,3)" fg:x="96369" fg:w="124"/><text x="26.8521%" y="863.50"></text></g><g><title>[perf-985085.map] (92 samples, 0.03%)</title><rect x="26.6385%" y="837" width="0.0254%" height="15" fill="rgb(214,176,27)" fg:x="96501" fg:w="92"/><text x="26.8885%" y="847.50"></text></g><g><title>globbing_pool-9 (125 samples, 0.03%)</title><rect x="26.6363%" y="853" width="0.0345%" height="15" fill="rgb(235,185,3)" fg:x="96493" fg:w="125"/><text x="26.8863%" y="863.50"></text></g><g><title>[anon] (236 samples, 0.07%)</title><rect x="26.6758%" y="837" width="0.0651%" height="15" fill="rgb(227,24,12)" fg:x="96636" fg:w="236"/><text x="26.9258%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool (59 samples, 0.02%)</title><rect x="27.3571%" y="677" width="0.0163%" height="15" fill="rgb(252,169,48)" fg:x="99104" fg:w="59"/><text x="27.6071%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (58 samples, 0.02%)</title><rect x="27.3573%" y="661" width="0.0160%" height="15" fill="rgb(212,65,1)" fg:x="99105" fg:w="58"/><text x="27.6073%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (51 samples, 0.01%)</title><rect x="27.3593%" y="645" width="0.0141%" height="15" fill="rgb(242,39,24)" fg:x="99112" fg:w="51"/><text x="27.6093%" y="655.50"></text></g><g><title>ClassFileParser::ClassFileParser (80 samples, 0.02%)</title><rect x="27.3562%" y="709" width="0.0221%" height="15" fill="rgb(249,32,23)" fg:x="99101" fg:w="80"/><text x="27.6062%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (79 samples, 0.02%)</title><rect x="27.3565%" y="693" width="0.0218%" height="15" fill="rgb(251,195,23)" fg:x="99102" fg:w="79"/><text x="27.6065%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (128 samples, 0.04%)</title><rect x="27.3562%" y="725" width="0.0353%" height="15" fill="rgb(236,174,8)" fg:x="99101" fg:w="128"/><text x="27.6062%" y="735.50"></text></g><g><title>ClassLoader::load_class (139 samples, 0.04%)</title><rect x="27.3535%" y="741" width="0.0384%" height="15" fill="rgb(220,197,8)" fg:x="99091" fg:w="139"/><text x="27.6035%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (152 samples, 0.04%)</title><rect x="27.3532%" y="757" width="0.0420%" height="15" fill="rgb(240,108,37)" fg:x="99090" fg:w="152"/><text x="27.6032%" y="767.50"></text></g><g><title>ConstantPool::klass_at_impl (165 samples, 0.05%)</title><rect x="27.3510%" y="805" width="0.0455%" height="15" fill="rgb(232,176,24)" fg:x="99082" fg:w="165"/><text x="27.6010%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (162 samples, 0.04%)</title><rect x="27.3518%" y="789" width="0.0447%" height="15" fill="rgb(243,35,29)" fg:x="99085" fg:w="162"/><text x="27.6018%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (162 samples, 0.04%)</title><rect x="27.3518%" y="773" width="0.0447%" height="15" fill="rgb(210,37,18)" fg:x="99085" fg:w="162"/><text x="27.6018%" y="783.50"></text></g><g><title>Rewriter::rewrite_bytecodes (40 samples, 0.01%)</title><rect x="27.4250%" y="741" width="0.0110%" height="15" fill="rgb(224,184,40)" fg:x="99350" fg:w="40"/><text x="27.6750%" y="751.50"></text></g><g><title>Rewriter::rewrite (62 samples, 0.02%)</title><rect x="27.4192%" y="773" width="0.0171%" height="15" fill="rgb(236,39,29)" fg:x="99329" fg:w="62"/><text x="27.6692%" y="783.50"></text></g><g><title>Rewriter::Rewriter (61 samples, 0.02%)</title><rect x="27.4195%" y="757" width="0.0168%" height="15" fill="rgb(232,48,39)" fg:x="99330" fg:w="61"/><text x="27.6695%" y="767.50"></text></g><g><title>InstanceKlass::initialize_impl (157 samples, 0.04%)</title><rect x="27.3988%" y="805" width="0.0433%" height="15" fill="rgb(236,34,42)" fg:x="99255" fg:w="157"/><text x="27.6488%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (154 samples, 0.04%)</title><rect x="27.3996%" y="789" width="0.0425%" height="15" fill="rgb(243,106,37)" fg:x="99258" fg:w="154"/><text x="27.6496%" y="799.50"></text></g><g><title>InterpreterRuntime::_new (332 samples, 0.09%)</title><rect x="27.3507%" y="821" width="0.0916%" height="15" fill="rgb(218,96,6)" fg:x="99081" fg:w="332"/><text x="27.6007%" y="831.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (70 samples, 0.02%)</title><rect x="27.4576%" y="821" width="0.0193%" height="15" fill="rgb(235,130,12)" fg:x="99468" fg:w="70"/><text x="27.7076%" y="831.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (70 samples, 0.02%)</title><rect x="27.4576%" y="805" width="0.0193%" height="15" fill="rgb(231,95,0)" fg:x="99468" fg:w="70"/><text x="27.7076%" y="815.50"></text></g><g><title>TieredThresholdPolicy::event (63 samples, 0.02%)</title><rect x="27.4595%" y="789" width="0.0174%" height="15" fill="rgb(228,12,23)" fg:x="99475" fg:w="63"/><text x="27.7095%" y="799.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (57 samples, 0.02%)</title><rect x="27.4611%" y="773" width="0.0157%" height="15" fill="rgb(216,12,1)" fg:x="99481" fg:w="57"/><text x="27.7111%" y="783.50"></text></g><g><title>LinkResolver::resolve_field (53 samples, 0.01%)</title><rect x="27.5059%" y="773" width="0.0146%" height="15" fill="rgb(219,59,3)" fg:x="99643" fg:w="53"/><text x="27.7559%" y="783.50"></text></g><g><title>LinkResolver::resolve_field_access (80 samples, 0.02%)</title><rect x="27.4987%" y="789" width="0.0221%" height="15" fill="rgb(215,208,46)" fg:x="99617" fg:w="80"/><text x="27.7487%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (96 samples, 0.03%)</title><rect x="27.4945%" y="805" width="0.0265%" height="15" fill="rgb(254,224,29)" fg:x="99602" fg:w="96"/><text x="27.7445%" y="815.50"></text></g><g><title>ClassLoader::load_class (51 samples, 0.01%)</title><rect x="27.5371%" y="709" width="0.0141%" height="15" fill="rgb(232,14,29)" fg:x="99756" fg:w="51"/><text x="27.7871%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (44 samples, 0.01%)</title><rect x="27.5390%" y="693" width="0.0121%" height="15" fill="rgb(208,45,52)" fg:x="99763" fg:w="44"/><text x="27.7890%" y="703.50"></text></g><g><title>SystemDictionary::load_instance_class (54 samples, 0.01%)</title><rect x="27.5371%" y="725" width="0.0149%" height="15" fill="rgb(234,191,28)" fg:x="99756" fg:w="54"/><text x="27.7871%" y="735.50"></text></g><g><title>ConstantPool::klass_ref_at (77 samples, 0.02%)</title><rect x="27.5310%" y="773" width="0.0213%" height="15" fill="rgb(244,67,43)" fg:x="99734" fg:w="77"/><text x="27.7810%" y="783.50"></text></g><g><title>SystemDictionary::resolve_or_fail (68 samples, 0.02%)</title><rect x="27.5335%" y="757" width="0.0188%" height="15" fill="rgb(236,189,24)" fg:x="99743" fg:w="68"/><text x="27.7835%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (65 samples, 0.02%)</title><rect x="27.5343%" y="741" width="0.0179%" height="15" fill="rgb(239,214,33)" fg:x="99746" fg:w="65"/><text x="27.7843%" y="751.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (43 samples, 0.01%)</title><rect x="27.5608%" y="773" width="0.0119%" height="15" fill="rgb(226,176,41)" fg:x="99842" fg:w="43"/><text x="27.8108%" y="783.50"></text></g><g><title>Rewriter::rewrite (40 samples, 0.01%)</title><rect x="27.5820%" y="725" width="0.0110%" height="15" fill="rgb(248,47,8)" fg:x="99919" fg:w="40"/><text x="27.8320%" y="735.50"></text></g><g><title>Rewriter::Rewriter (40 samples, 0.01%)</title><rect x="27.5820%" y="709" width="0.0110%" height="15" fill="rgb(218,81,44)" fg:x="99919" fg:w="40"/><text x="27.8320%" y="719.50"></text></g><g><title>InstanceKlass::initialize_impl (85 samples, 0.02%)</title><rect x="27.5727%" y="757" width="0.0235%" height="15" fill="rgb(213,98,6)" fg:x="99885" fg:w="85"/><text x="27.8227%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (85 samples, 0.02%)</title><rect x="27.5727%" y="741" width="0.0235%" height="15" fill="rgb(222,85,22)" fg:x="99885" fg:w="85"/><text x="27.8227%" y="751.50"></text></g><g><title>LinkResolver::resolve_static_call (103 samples, 0.03%)</title><rect x="27.5727%" y="773" width="0.0284%" height="15" fill="rgb(239,46,39)" fg:x="99885" fg:w="103"/><text x="27.8227%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (265 samples, 0.07%)</title><rect x="27.5293%" y="789" width="0.0732%" height="15" fill="rgb(237,12,29)" fg:x="99728" fg:w="265"/><text x="27.7793%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (309 samples, 0.09%)</title><rect x="27.5210%" y="805" width="0.0853%" height="15" fill="rgb(214,77,8)" fg:x="99698" fg:w="309"/><text x="27.7710%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (52 samples, 0.01%)</title><rect x="27.6063%" y="805" width="0.0144%" height="15" fill="rgb(217,168,37)" fg:x="100007" fg:w="52"/><text x="27.8563%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (51 samples, 0.01%)</title><rect x="27.6066%" y="789" width="0.0141%" height="15" fill="rgb(221,217,23)" fg:x="100008" fg:w="51"/><text x="27.8566%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (51 samples, 0.01%)</title><rect x="27.6066%" y="773" width="0.0141%" height="15" fill="rgb(243,229,36)" fg:x="100008" fg:w="51"/><text x="27.8566%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (467 samples, 0.13%)</title><rect x="27.4932%" y="821" width="0.1289%" height="15" fill="rgb(251,163,40)" fg:x="99597" fg:w="467"/><text x="27.7432%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (37 samples, 0.01%)</title><rect x="27.6221%" y="821" width="0.0102%" height="15" fill="rgb(237,222,12)" fg:x="100064" fg:w="37"/><text x="27.8721%" y="831.50"></text></g><g><title>SymbolTable::add (54 samples, 0.01%)</title><rect x="27.7256%" y="677" width="0.0149%" height="15" fill="rgb(248,132,6)" fg:x="100439" fg:w="54"/><text x="27.9756%" y="687.50"></text></g><g><title>SymbolTable::basic_add (53 samples, 0.01%)</title><rect x="27.7259%" y="661" width="0.0146%" height="15" fill="rgb(227,167,50)" fg:x="100440" fg:w="53"/><text x="27.9759%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (453 samples, 0.13%)</title><rect x="27.7405%" y="677" width="0.1250%" height="15" fill="rgb(242,84,37)" fg:x="100493" fg:w="453"/><text x="27.9905%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (534 samples, 0.15%)</title><rect x="27.7184%" y="693" width="0.1474%" height="15" fill="rgb(212,4,50)" fg:x="100413" fg:w="534"/><text x="27.9684%" y="703.50"></text></g><g><title>ClassFileParser::parse_constant_pool (551 samples, 0.15%)</title><rect x="27.7151%" y="709" width="0.1521%" height="15" fill="rgb(230,228,32)" fg:x="100401" fg:w="551"/><text x="27.9651%" y="719.50"></text></g><g><title>Method::allocate (40 samples, 0.01%)</title><rect x="27.8959%" y="677" width="0.0110%" height="15" fill="rgb(248,217,23)" fg:x="101056" fg:w="40"/><text x="28.1459%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (161 samples, 0.04%)</title><rect x="27.8733%" y="693" width="0.0444%" height="15" fill="rgb(238,197,32)" fg:x="100974" fg:w="161"/><text x="28.1233%" y="703.50"></text></g><g><title>ClassFileParser::parse_methods (168 samples, 0.05%)</title><rect x="27.8727%" y="709" width="0.0464%" height="15" fill="rgb(236,106,1)" fg:x="100972" fg:w="168"/><text x="28.1227%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (776 samples, 0.21%)</title><rect x="27.7099%" y="741" width="0.2142%" height="15" fill="rgb(219,228,13)" fg:x="100382" fg:w="776"/><text x="27.9599%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (774 samples, 0.21%)</title><rect x="27.7104%" y="725" width="0.2137%" height="15" fill="rgb(238,30,35)" fg:x="100384" fg:w="774"/><text x="27.9604%" y="735.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (94 samples, 0.03%)</title><rect x="27.9323%" y="693" width="0.0259%" height="15" fill="rgb(236,70,23)" fg:x="101188" fg:w="94"/><text x="28.1823%" y="703.50"></text></g><g><title>DefaultMethods::generate_default_methods (137 samples, 0.04%)</title><rect x="27.9266%" y="709" width="0.0378%" height="15" fill="rgb(249,104,48)" fg:x="101167" fg:w="137"/><text x="28.1766%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (180 samples, 0.05%)</title><rect x="27.9241%" y="725" width="0.0497%" height="15" fill="rgb(254,117,50)" fg:x="101158" fg:w="180"/><text x="28.1741%" y="735.50"></text></g><g><title>ClassFileParser::create_instance_klass (190 samples, 0.05%)</title><rect x="27.9241%" y="741" width="0.0524%" height="15" fill="rgb(223,152,4)" fg:x="101158" fg:w="190"/><text x="28.1741%" y="751.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (58 samples, 0.02%)</title><rect x="27.9765%" y="741" width="0.0160%" height="15" fill="rgb(245,6,2)" fg:x="101348" fg:w="58"/><text x="28.2265%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (1,029 samples, 0.28%)</title><rect x="27.7096%" y="757" width="0.2840%" height="15" fill="rgb(249,150,24)" fg:x="100381" fg:w="1029"/><text x="27.9596%" y="767.50"></text></g><g><title>JVM_DefineClassWithSource (1,072 samples, 0.30%)</title><rect x="27.7063%" y="805" width="0.2959%" height="15" fill="rgb(228,185,42)" fg:x="100369" fg:w="1072"/><text x="27.9563%" y="815.50"></text></g><g><title>jvm_define_class_common (1,071 samples, 0.30%)</title><rect x="27.7065%" y="789" width="0.2956%" height="15" fill="rgb(226,39,33)" fg:x="100370" fg:w="1071"/><text x="27.9565%" y="799.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,061 samples, 0.29%)</title><rect x="27.7093%" y="773" width="0.2929%" height="15" fill="rgb(221,166,19)" fg:x="100380" fg:w="1061"/><text x="27.9593%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,113 samples, 0.31%)</title><rect x="27.7060%" y="821" width="0.3072%" height="15" fill="rgb(209,109,2)" fg:x="100368" fg:w="1113"/><text x="27.9560%" y="831.50"></text></g><g><title>ClassLoader::load_class (42 samples, 0.01%)</title><rect x="28.0185%" y="741" width="0.0116%" height="15" fill="rgb(252,216,26)" fg:x="101500" fg:w="42"/><text x="28.2685%" y="751.50"></text></g><g><title>SystemDictionary::resolve_or_null (69 samples, 0.02%)</title><rect x="28.0138%" y="789" width="0.0190%" height="15" fill="rgb(227,173,36)" fg:x="101483" fg:w="69"/><text x="28.2638%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (68 samples, 0.02%)</title><rect x="28.0141%" y="773" width="0.0188%" height="15" fill="rgb(209,90,7)" fg:x="101484" fg:w="68"/><text x="28.2641%" y="783.50"></text></g><g><title>SystemDictionary::load_instance_class (52 samples, 0.01%)</title><rect x="28.0185%" y="757" width="0.0144%" height="15" fill="rgb(250,194,11)" fg:x="101500" fg:w="52"/><text x="28.2685%" y="767.50"></text></g><g><title>JVM_FindClassFromBootLoader (72 samples, 0.02%)</title><rect x="28.0132%" y="805" width="0.0199%" height="15" fill="rgb(220,72,50)" fg:x="101481" fg:w="72"/><text x="28.2632%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (91 samples, 0.03%)</title><rect x="28.0132%" y="821" width="0.0251%" height="15" fill="rgb(222,106,48)" fg:x="101481" fg:w="91"/><text x="28.2632%" y="831.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (65 samples, 0.02%)</title><rect x="28.0668%" y="821" width="0.0179%" height="15" fill="rgb(216,220,45)" fg:x="101675" fg:w="65"/><text x="28.3168%" y="831.50"></text></g><g><title>SystemDictionary::parse_stream (62 samples, 0.02%)</title><rect x="28.0676%" y="805" width="0.0171%" height="15" fill="rgb(234,112,18)" fg:x="101678" fg:w="62"/><text x="28.3176%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (43 samples, 0.01%)</title><rect x="28.0729%" y="789" width="0.0119%" height="15" fill="rgb(206,179,9)" fg:x="101697" fg:w="43"/><text x="28.3229%" y="799.50"></text></g><g><title>[perf-985085.map] (4,901 samples, 1.35%)</title><rect x="26.7459%" y="837" width="1.3529%" height="15" fill="rgb(215,115,40)" fg:x="96890" fg:w="4901"/><text x="26.9959%" y="847.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (47 samples, 0.01%)</title><rect x="28.1112%" y="821" width="0.0130%" height="15" fill="rgb(222,69,34)" fg:x="101836" fg:w="47"/><text x="28.3612%" y="831.50"></text></g><g><title>new_sync_read (38 samples, 0.01%)</title><rect x="28.1330%" y="693" width="0.0105%" height="15" fill="rgb(209,161,10)" fg:x="101915" fg:w="38"/><text x="28.3830%" y="703.50"></text></g><g><title>ksys_read (47 samples, 0.01%)</title><rect x="28.1314%" y="725" width="0.0130%" height="15" fill="rgb(217,6,38)" fg:x="101909" fg:w="47"/><text x="28.3814%" y="735.50"></text></g><g><title>vfs_read (42 samples, 0.01%)</title><rect x="28.1328%" y="709" width="0.0116%" height="15" fill="rgb(229,229,48)" fg:x="101914" fg:w="42"/><text x="28.3828%" y="719.50"></text></g><g><title>do_syscall_64 (48 samples, 0.01%)</title><rect x="28.1314%" y="741" width="0.0133%" height="15" fill="rgb(225,21,28)" fg:x="101909" fg:w="48"/><text x="28.3814%" y="751.50"></text></g><g><title>handleRead (51 samples, 0.01%)</title><rect x="28.1311%" y="805" width="0.0141%" height="15" fill="rgb(206,33,13)" fg:x="101908" fg:w="51"/><text x="28.3811%" y="815.50"></text></g><g><title>__libc_read (51 samples, 0.01%)</title><rect x="28.1311%" y="789" width="0.0141%" height="15" fill="rgb(242,178,17)" fg:x="101908" fg:w="51"/><text x="28.3811%" y="799.50"></text></g><g><title>__libc_read (51 samples, 0.01%)</title><rect x="28.1311%" y="773" width="0.0141%" height="15" fill="rgb(220,162,5)" fg:x="101908" fg:w="51"/><text x="28.3811%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%)</title><rect x="28.1311%" y="757" width="0.0141%" height="15" fill="rgb(210,33,43)" fg:x="101908" fg:w="51"/><text x="28.3811%" y="767.50"></text></g><g><title>readBytes (67 samples, 0.02%)</title><rect x="28.1297%" y="821" width="0.0185%" height="15" fill="rgb(216,116,54)" fg:x="101903" fg:w="67"/><text x="28.3797%" y="831.50"></text></g><g><title>[unknown] (187 samples, 0.05%)</title><rect x="28.0988%" y="837" width="0.0516%" height="15" fill="rgb(249,92,24)" fg:x="101791" fg:w="187"/><text x="28.3488%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (118 samples, 0.03%)</title><rect x="28.1568%" y="773" width="0.0326%" height="15" fill="rgb(231,189,14)" fg:x="102001" fg:w="118"/><text x="28.4068%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (116 samples, 0.03%)</title><rect x="28.1573%" y="757" width="0.0320%" height="15" fill="rgb(230,8,41)" fg:x="102003" fg:w="116"/><text x="28.4073%" y="767.50"></text></g><g><title>native_write_msr (116 samples, 0.03%)</title><rect x="28.1573%" y="741" width="0.0320%" height="15" fill="rgb(249,7,27)" fg:x="102003" fg:w="116"/><text x="28.4073%" y="751.50"></text></g><g><title>ret_from_fork (125 samples, 0.03%)</title><rect x="28.1559%" y="821" width="0.0345%" height="15" fill="rgb(232,86,5)" fg:x="101998" fg:w="125"/><text x="28.4059%" y="831.50"></text></g><g><title>schedule_tail (123 samples, 0.03%)</title><rect x="28.1565%" y="805" width="0.0340%" height="15" fill="rgb(224,175,18)" fg:x="102000" fg:w="123"/><text x="28.4065%" y="815.50"></text></g><g><title>finish_task_switch (123 samples, 0.03%)</title><rect x="28.1565%" y="789" width="0.0340%" height="15" fill="rgb(220,129,12)" fg:x="102000" fg:w="123"/><text x="28.4065%" y="799.50"></text></g><g><title>init_globals (42 samples, 0.01%)</title><rect x="28.1927%" y="757" width="0.0116%" height="15" fill="rgb(210,19,36)" fg:x="102131" fg:w="42"/><text x="28.4427%" y="767.50"></text></g><g><title>JNI_CreateJavaVM (55 samples, 0.02%)</title><rect x="28.1904%" y="789" width="0.0152%" height="15" fill="rgb(219,96,14)" fg:x="102123" fg:w="55"/><text x="28.4404%" y="799.50"></text></g><g><title>Threads::create_vm (55 samples, 0.02%)</title><rect x="28.1904%" y="773" width="0.0152%" height="15" fill="rgb(249,106,1)" fg:x="102123" fg:w="55"/><text x="28.4404%" y="783.50"></text></g><g><title>JavaMain (57 samples, 0.02%)</title><rect x="28.1904%" y="805" width="0.0157%" height="15" fill="rgb(249,155,20)" fg:x="102123" fg:w="57"/><text x="28.4404%" y="815.50"></text></g><g><title>__GI___clone (271 samples, 0.07%)</title><rect x="28.1507%" y="837" width="0.0748%" height="15" fill="rgb(244,168,9)" fg:x="101979" fg:w="271"/><text x="28.4007%" y="847.50"></text></g><g><title>start_thread (127 samples, 0.04%)</title><rect x="28.1904%" y="821" width="0.0351%" height="15" fill="rgb(216,23,50)" fg:x="102123" fg:w="127"/><text x="28.4404%" y="831.50"></text></g><g><title>thread_native_entry (67 samples, 0.02%)</title><rect x="28.2070%" y="805" width="0.0185%" height="15" fill="rgb(224,219,20)" fg:x="102183" fg:w="67"/><text x="28.4570%" y="815.50"></text></g><g><title>java (5,667 samples, 1.56%)</title><rect x="26.6708%" y="853" width="1.5643%" height="15" fill="rgb(222,156,15)" fg:x="96618" fg:w="5667"/><text x="26.9208%" y="863.50"></text></g><g><title>[[heap]] (133 samples, 0.04%)</title><rect x="28.2352%" y="837" width="0.0367%" height="15" fill="rgb(231,97,17)" fg:x="102285" fg:w="133"/><text x="28.4852%" y="847.50"></text></g><g><title>[[stack]] (85 samples, 0.02%)</title><rect x="28.2719%" y="837" width="0.0235%" height="15" fill="rgb(218,70,48)" fg:x="102418" fg:w="85"/><text x="28.5219%" y="847.50"></text></g><g><title>[anon] (45 samples, 0.01%)</title><rect x="28.2953%" y="837" width="0.0124%" height="15" fill="rgb(212,196,52)" fg:x="102503" fg:w="45"/><text x="28.5453%" y="847.50"></text></g><g><title>copy_process (71 samples, 0.02%)</title><rect x="28.3207%" y="741" width="0.0196%" height="15" fill="rgb(243,203,18)" fg:x="102595" fg:w="71"/><text x="28.5707%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.02%)</title><rect x="28.3207%" y="805" width="0.0240%" height="15" fill="rgb(252,125,41)" fg:x="102595" fg:w="87"/><text x="28.5707%" y="815.50"></text></g><g><title>do_syscall_64 (87 samples, 0.02%)</title><rect x="28.3207%" y="789" width="0.0240%" height="15" fill="rgb(223,180,33)" fg:x="102595" fg:w="87"/><text x="28.5707%" y="799.50"></text></g><g><title>__do_sys_clone (87 samples, 0.02%)</title><rect x="28.3207%" y="773" width="0.0240%" height="15" fill="rgb(254,159,46)" fg:x="102595" fg:w="87"/><text x="28.5707%" y="783.50"></text></g><g><title>kernel_clone (87 samples, 0.02%)</title><rect x="28.3207%" y="757" width="0.0240%" height="15" fill="rgb(254,38,10)" fg:x="102595" fg:w="87"/><text x="28.5707%" y="767.50"></text></g><g><title>__GI___clone (89 samples, 0.02%)</title><rect x="28.3205%" y="821" width="0.0246%" height="15" fill="rgb(208,217,32)" fg:x="102594" fg:w="89"/><text x="28.5705%" y="831.50"></text></g><g><title>[unknown] (376 samples, 0.10%)</title><rect x="28.3172%" y="837" width="0.1038%" height="15" fill="rgb(221,120,13)" fg:x="102582" fg:w="376"/><text x="28.5672%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (371 samples, 0.10%)</title><rect x="28.4301%" y="773" width="0.1024%" height="15" fill="rgb(246,54,52)" fg:x="102991" fg:w="371"/><text x="28.6801%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (364 samples, 0.10%)</title><rect x="28.4320%" y="757" width="0.1005%" height="15" fill="rgb(242,34,25)" fg:x="102998" fg:w="364"/><text x="28.6820%" y="767.50"></text></g><g><title>native_write_msr (364 samples, 0.10%)</title><rect x="28.4320%" y="741" width="0.1005%" height="15" fill="rgb(247,209,9)" fg:x="102998" fg:w="364"/><text x="28.6820%" y="751.50"></text></g><g><title>schedule_tail (391 samples, 0.11%)</title><rect x="28.4273%" y="805" width="0.1079%" height="15" fill="rgb(228,71,26)" fg:x="102981" fg:w="391"/><text x="28.6773%" y="815.50"></text></g><g><title>finish_task_switch (390 samples, 0.11%)</title><rect x="28.4276%" y="789" width="0.1077%" height="15" fill="rgb(222,145,49)" fg:x="102982" fg:w="390"/><text x="28.6776%" y="799.50"></text></g><g><title>ret_from_fork (415 samples, 0.11%)</title><rect x="28.4229%" y="821" width="0.1146%" height="15" fill="rgb(218,121,17)" fg:x="102965" fg:w="415"/><text x="28.6729%" y="831.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="28.5631%" y="613" width="0.0146%" height="15" fill="rgb(244,50,7)" fg:x="103473" fg:w="53"/><text x="28.8131%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.01%)</title><rect x="28.5637%" y="597" width="0.0141%" height="15" fill="rgb(246,229,37)" fg:x="103475" fg:w="51"/><text x="28.8137%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.01%)</title><rect x="28.5639%" y="581" width="0.0138%" height="15" fill="rgb(225,18,5)" fg:x="103476" fg:w="50"/><text x="28.8139%" y="591.50"></text></g><g><title>native_write_msr (49 samples, 0.01%)</title><rect x="28.5642%" y="565" width="0.0135%" height="15" fill="rgb(213,204,8)" fg:x="103477" fg:w="49"/><text x="28.8142%" y="575.50"></text></g><g><title>futex_wait_queue_me (99 samples, 0.03%)</title><rect x="28.5573%" y="661" width="0.0273%" height="15" fill="rgb(238,103,6)" fg:x="103452" fg:w="99"/><text x="28.8073%" y="671.50"></text></g><g><title>schedule (97 samples, 0.03%)</title><rect x="28.5579%" y="645" width="0.0268%" height="15" fill="rgb(222,25,35)" fg:x="103454" fg:w="97"/><text x="28.8079%" y="655.50"></text></g><g><title>__schedule (95 samples, 0.03%)</title><rect x="28.5584%" y="629" width="0.0262%" height="15" fill="rgb(213,203,35)" fg:x="103456" fg:w="95"/><text x="28.8084%" y="639.50"></text></g><g><title>__x64_sys_futex (118 samples, 0.03%)</title><rect x="28.5557%" y="709" width="0.0326%" height="15" fill="rgb(221,79,53)" fg:x="103446" fg:w="118"/><text x="28.8057%" y="719.50"></text></g><g><title>do_futex (116 samples, 0.03%)</title><rect x="28.5562%" y="693" width="0.0320%" height="15" fill="rgb(243,200,35)" fg:x="103448" fg:w="116"/><text x="28.8062%" y="703.50"></text></g><g><title>futex_wait (114 samples, 0.03%)</title><rect x="28.5568%" y="677" width="0.0315%" height="15" fill="rgb(248,60,25)" fg:x="103450" fg:w="114"/><text x="28.8068%" y="687.50"></text></g><g><title>do_syscall_64 (121 samples, 0.03%)</title><rect x="28.5557%" y="725" width="0.0334%" height="15" fill="rgb(227,53,46)" fg:x="103446" fg:w="121"/><text x="28.8057%" y="735.50"></text></g><g><title>__GI___pthread_mutex_lock (159 samples, 0.04%)</title><rect x="28.5457%" y="773" width="0.0439%" height="15" fill="rgb(216,120,32)" fg:x="103410" fg:w="159"/><text x="28.7957%" y="783.50"></text></g><g><title>__lll_lock_wait (130 samples, 0.04%)</title><rect x="28.5537%" y="757" width="0.0359%" height="15" fill="rgb(220,134,1)" fg:x="103439" fg:w="130"/><text x="28.8037%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (124 samples, 0.03%)</title><rect x="28.5554%" y="741" width="0.0342%" height="15" fill="rgb(237,168,5)" fg:x="103445" fg:w="124"/><text x="28.8054%" y="751.50"></text></g><g><title>__x64_sys_futex (151 samples, 0.04%)</title><rect x="28.6037%" y="725" width="0.0417%" height="15" fill="rgb(231,100,33)" fg:x="103620" fg:w="151"/><text x="28.8537%" y="735.50"></text></g><g><title>do_futex (150 samples, 0.04%)</title><rect x="28.6040%" y="709" width="0.0414%" height="15" fill="rgb(236,177,47)" fg:x="103621" fg:w="150"/><text x="28.8540%" y="719.50"></text></g><g><title>futex_wake (149 samples, 0.04%)</title><rect x="28.6042%" y="693" width="0.0411%" height="15" fill="rgb(235,7,49)" fg:x="103622" fg:w="149"/><text x="28.8542%" y="703.50"></text></g><g><title>wake_up_q (108 samples, 0.03%)</title><rect x="28.6156%" y="677" width="0.0298%" height="15" fill="rgb(232,119,22)" fg:x="103663" fg:w="108"/><text x="28.8656%" y="687.50"></text></g><g><title>try_to_wake_up (105 samples, 0.03%)</title><rect x="28.6164%" y="661" width="0.0290%" height="15" fill="rgb(254,73,53)" fg:x="103666" fg:w="105"/><text x="28.8664%" y="671.50"></text></g><g><title>do_syscall_64 (155 samples, 0.04%)</title><rect x="28.6029%" y="741" width="0.0428%" height="15" fill="rgb(251,35,20)" fg:x="103617" fg:w="155"/><text x="28.8529%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (166 samples, 0.05%)</title><rect x="28.6015%" y="757" width="0.0458%" height="15" fill="rgb(241,119,20)" fg:x="103612" fg:w="166"/><text x="28.8515%" y="767.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (210 samples, 0.06%)</title><rect x="28.5904%" y="773" width="0.0580%" height="15" fill="rgb(207,102,14)" fg:x="103572" fg:w="210"/><text x="28.8404%" y="783.50"></text></g><g><title>__GI___libc_malloc (106 samples, 0.03%)</title><rect x="28.6603%" y="741" width="0.0293%" height="15" fill="rgb(248,201,50)" fg:x="103825" fg:w="106"/><text x="28.9103%" y="751.50"></text></g><g><title>tcache_init (69 samples, 0.02%)</title><rect x="28.6705%" y="725" width="0.0190%" height="15" fill="rgb(222,185,44)" fg:x="103862" fg:w="69"/><text x="28.9205%" y="735.50"></text></g><g><title>tcache_init (68 samples, 0.02%)</title><rect x="28.6708%" y="709" width="0.0188%" height="15" fill="rgb(218,107,18)" fg:x="103863" fg:w="68"/><text x="28.9208%" y="719.50"></text></g><g><title>arena_get2 (68 samples, 0.02%)</title><rect x="28.6708%" y="693" width="0.0188%" height="15" fill="rgb(237,177,39)" fg:x="103863" fg:w="68"/><text x="28.9208%" y="703.50"></text></g><g><title>arena_get2 (68 samples, 0.02%)</title><rect x="28.6708%" y="677" width="0.0188%" height="15" fill="rgb(246,69,6)" fg:x="103863" fg:w="68"/><text x="28.9208%" y="687.50"></text></g><g><title>_int_new_arena (67 samples, 0.02%)</title><rect x="28.6710%" y="661" width="0.0185%" height="15" fill="rgb(234,208,37)" fg:x="103864" fg:w="67"/><text x="28.9210%" y="671.50"></text></g><g><title>new_heap (57 samples, 0.02%)</title><rect x="28.6738%" y="645" width="0.0157%" height="15" fill="rgb(225,4,6)" fg:x="103874" fg:w="57"/><text x="28.9238%" y="655.50"></text></g><g><title>operator new (111 samples, 0.03%)</title><rect x="28.6603%" y="757" width="0.0306%" height="15" fill="rgb(233,45,0)" fg:x="103825" fg:w="111"/><text x="28.9103%" y="767.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (215 samples, 0.06%)</title><rect x="28.6492%" y="773" width="0.0593%" height="15" fill="rgb(226,136,5)" fg:x="103785" fg:w="215"/><text x="28.8992%" y="783.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_manager (60 samples, 0.02%)</title><rect x="28.6920%" y="757" width="0.0166%" height="15" fill="rgb(211,91,47)" fg:x="103940" fg:w="60"/><text x="28.9420%" y="767.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (165 samples, 0.05%)</title><rect x="28.7199%" y="757" width="0.0455%" height="15" fill="rgb(242,88,51)" fg:x="104041" fg:w="165"/><text x="28.9699%" y="767.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;llvm::parallelForEach&lt;lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1}&gt;(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}&gt; (132 samples, 0.04%)</title><rect x="28.7290%" y="741" width="0.0364%" height="15" fill="rgb(230,91,28)" fg:x="104074" fg:w="132"/><text x="28.9790%" y="751.50"></text></g><g><title>lld::elf::computeIsPreemptible (95 samples, 0.03%)</title><rect x="28.7392%" y="725" width="0.0262%" height="15" fill="rgb(254,186,29)" fg:x="104111" fg:w="95"/><text x="28.9892%" y="735.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (222 samples, 0.06%)</title><rect x="28.7086%" y="773" width="0.0613%" height="15" fill="rgb(238,6,4)" fg:x="104000" fg:w="222"/><text x="28.9586%" y="783.50"></text></g><g><title>ttwu_do_activate (69 samples, 0.02%)</title><rect x="28.8157%" y="581" width="0.0190%" height="15" fill="rgb(221,151,16)" fg:x="104388" fg:w="69"/><text x="29.0657%" y="591.50"></text></g><g><title>do_syscall_64 (183 samples, 0.05%)</title><rect x="28.7889%" y="677" width="0.0505%" height="15" fill="rgb(251,143,52)" fg:x="104291" fg:w="183"/><text x="29.0389%" y="687.50"></text></g><g><title>__x64_sys_futex (181 samples, 0.05%)</title><rect x="28.7895%" y="661" width="0.0500%" height="15" fill="rgb(206,90,15)" fg:x="104293" fg:w="181"/><text x="29.0395%" y="671.50"></text></g><g><title>do_futex (181 samples, 0.05%)</title><rect x="28.7895%" y="645" width="0.0500%" height="15" fill="rgb(218,35,8)" fg:x="104293" fg:w="181"/><text x="29.0395%" y="655.50"></text></g><g><title>futex_wake (178 samples, 0.05%)</title><rect x="28.7903%" y="629" width="0.0491%" height="15" fill="rgb(239,215,6)" fg:x="104296" fg:w="178"/><text x="29.0403%" y="639.50"></text></g><g><title>wake_up_q (155 samples, 0.04%)</title><rect x="28.7966%" y="613" width="0.0428%" height="15" fill="rgb(245,116,39)" fg:x="104319" fg:w="155"/><text x="29.0466%" y="623.50"></text></g><g><title>try_to_wake_up (152 samples, 0.04%)</title><rect x="28.7975%" y="597" width="0.0420%" height="15" fill="rgb(242,65,28)" fg:x="104322" fg:w="152"/><text x="29.0475%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (185 samples, 0.05%)</title><rect x="28.7889%" y="693" width="0.0511%" height="15" fill="rgb(252,132,53)" fg:x="104291" fg:w="185"/><text x="29.0389%" y="703.50"></text></g><g><title>__condvar_dec_grefs (215 samples, 0.06%)</title><rect x="28.7809%" y="725" width="0.0593%" height="15" fill="rgb(224,159,50)" fg:x="104262" fg:w="215"/><text x="29.0309%" y="735.50"></text></g><g><title>futex_wake (189 samples, 0.05%)</title><rect x="28.7881%" y="709" width="0.0522%" height="15" fill="rgb(224,93,4)" fg:x="104288" fg:w="189"/><text x="29.0381%" y="719.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.02%)</title><rect x="28.8530%" y="677" width="0.0179%" height="15" fill="rgb(208,81,34)" fg:x="104523" fg:w="65"/><text x="29.1030%" y="687.50"></text></g><g><title>do_futex (63 samples, 0.02%)</title><rect x="28.8535%" y="661" width="0.0174%" height="15" fill="rgb(233,92,54)" fg:x="104525" fg:w="63"/><text x="29.1035%" y="671.50"></text></g><g><title>futex_wake (58 samples, 0.02%)</title><rect x="28.8549%" y="645" width="0.0160%" height="15" fill="rgb(237,21,14)" fg:x="104530" fg:w="58"/><text x="29.1049%" y="655.50"></text></g><g><title>do_syscall_64 (71 samples, 0.02%)</title><rect x="28.8521%" y="693" width="0.0196%" height="15" fill="rgb(249,128,51)" fg:x="104520" fg:w="71"/><text x="29.1021%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.02%)</title><rect x="28.8513%" y="709" width="0.0218%" height="15" fill="rgb(223,129,24)" fg:x="104517" fg:w="79"/><text x="29.1013%" y="719.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (102 samples, 0.03%)</title><rect x="28.8452%" y="725" width="0.0282%" height="15" fill="rgb(231,168,25)" fg:x="104495" fg:w="102"/><text x="29.0952%" y="735.50"></text></g><g><title>__pthread_disable_asynccancel (40 samples, 0.01%)</title><rect x="28.8784%" y="709" width="0.0110%" height="15" fill="rgb(224,39,20)" fg:x="104615" fg:w="40"/><text x="29.1284%" y="719.50"></text></g><g><title>__perf_event_task_sched_out (51 samples, 0.01%)</title><rect x="28.9617%" y="581" width="0.0141%" height="15" fill="rgb(225,152,53)" fg:x="104917" fg:w="51"/><text x="29.2117%" y="591.50"></text></g><g><title>update_curr (59 samples, 0.02%)</title><rect x="29.0040%" y="549" width="0.0163%" height="15" fill="rgb(252,17,24)" fg:x="105070" fg:w="59"/><text x="29.2540%" y="559.50"></text></g><g><title>dequeue_entity (177 samples, 0.05%)</title><rect x="28.9915%" y="565" width="0.0489%" height="15" fill="rgb(250,114,30)" fg:x="105025" fg:w="177"/><text x="29.2415%" y="575.50"></text></g><g><title>update_load_avg (73 samples, 0.02%)</title><rect x="29.0202%" y="549" width="0.0202%" height="15" fill="rgb(229,5,4)" fg:x="105129" fg:w="73"/><text x="29.2702%" y="559.50"></text></g><g><title>dequeue_task_fair (231 samples, 0.06%)</title><rect x="28.9844%" y="581" width="0.0638%" height="15" fill="rgb(225,176,49)" fg:x="104999" fg:w="231"/><text x="29.2344%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (2,022 samples, 0.56%)</title><rect x="29.0650%" y="565" width="0.5582%" height="15" fill="rgb(224,221,49)" fg:x="105291" fg:w="2022"/><text x="29.3150%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,976 samples, 0.55%)</title><rect x="29.0777%" y="549" width="0.5455%" height="15" fill="rgb(253,169,27)" fg:x="105337" fg:w="1976"/><text x="29.3277%" y="559.50"></text></g><g><title>native_write_msr (1,962 samples, 0.54%)</title><rect x="29.0815%" y="533" width="0.5416%" height="15" fill="rgb(211,206,16)" fg:x="105351" fg:w="1962"/><text x="29.3315%" y="543.50"></text></g><g><title>finish_task_switch (2,127 samples, 0.59%)</title><rect x="29.0481%" y="581" width="0.5871%" height="15" fill="rgb(244,87,35)" fg:x="105230" fg:w="2127"/><text x="29.2981%" y="591.50"></text></g><g><title>pick_next_task_fair (57 samples, 0.02%)</title><rect x="29.6353%" y="581" width="0.0157%" height="15" fill="rgb(246,28,10)" fg:x="107357" fg:w="57"/><text x="29.8853%" y="591.50"></text></g><g><title>psi_task_change (195 samples, 0.05%)</title><rect x="29.6604%" y="581" width="0.0538%" height="15" fill="rgb(229,12,44)" fg:x="107448" fg:w="195"/><text x="29.9104%" y="591.50"></text></g><g><title>psi_group_change (173 samples, 0.05%)</title><rect x="29.6665%" y="565" width="0.0478%" height="15" fill="rgb(210,145,37)" fg:x="107470" fg:w="173"/><text x="29.9165%" y="575.50"></text></g><g><title>record_times (48 samples, 0.01%)</title><rect x="29.7010%" y="549" width="0.0133%" height="15" fill="rgb(227,112,52)" fg:x="107595" fg:w="48"/><text x="29.9510%" y="559.50"></text></g><g><title>psi_task_switch (50 samples, 0.01%)</title><rect x="29.7142%" y="581" width="0.0138%" height="15" fill="rgb(238,155,34)" fg:x="107643" fg:w="50"/><text x="29.9642%" y="591.50"></text></g><g><title>psi_group_change (39 samples, 0.01%)</title><rect x="29.7172%" y="565" width="0.0108%" height="15" fill="rgb(239,226,36)" fg:x="107654" fg:w="39"/><text x="29.9672%" y="575.50"></text></g><g><title>futex_wait_queue_me (2,935 samples, 0.81%)</title><rect x="28.9272%" y="629" width="0.8102%" height="15" fill="rgb(230,16,23)" fg:x="104792" fg:w="2935"/><text x="29.1772%" y="639.50"></text></g><g><title>schedule (2,878 samples, 0.79%)</title><rect x="28.9429%" y="613" width="0.7945%" height="15" fill="rgb(236,171,36)" fg:x="104849" fg:w="2878"/><text x="29.1929%" y="623.50"></text></g><g><title>__schedule (2,861 samples, 0.79%)</title><rect x="28.9476%" y="597" width="0.7898%" height="15" fill="rgb(221,22,14)" fg:x="104866" fg:w="2861"/><text x="29.1976%" y="607.50"></text></g><g><title>do_syscall_64 (3,101 samples, 0.86%)</title><rect x="28.9018%" y="693" width="0.8560%" height="15" fill="rgb(242,43,11)" fg:x="104700" fg:w="3101"/><text x="29.1518%" y="703.50"></text></g><g><title>__x64_sys_futex (3,087 samples, 0.85%)</title><rect x="28.9057%" y="677" width="0.8521%" height="15" fill="rgb(232,69,23)" fg:x="104714" fg:w="3087"/><text x="29.1557%" y="687.50"></text></g><g><title>do_futex (3,073 samples, 0.85%)</title><rect x="28.9095%" y="661" width="0.8483%" height="15" fill="rgb(216,180,54)" fg:x="104728" fg:w="3073"/><text x="29.1595%" y="671.50"></text></g><g><title>futex_wait (3,051 samples, 0.84%)</title><rect x="28.9156%" y="645" width="0.8422%" height="15" fill="rgb(216,5,24)" fg:x="104750" fg:w="3051"/><text x="29.1656%" y="655.50"></text></g><g><title>futex_wait_setup (74 samples, 0.02%)</title><rect x="29.7374%" y="629" width="0.0204%" height="15" fill="rgb(225,89,9)" fg:x="107727" fg:w="74"/><text x="29.9874%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,220 samples, 0.89%)</title><rect x="28.8991%" y="709" width="0.8889%" height="15" fill="rgb(243,75,33)" fg:x="104690" fg:w="3220"/><text x="29.1491%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (109 samples, 0.03%)</title><rect x="29.7578%" y="693" width="0.0301%" height="15" fill="rgb(247,141,45)" fg:x="107801" fg:w="109"/><text x="30.0078%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (106 samples, 0.03%)</title><rect x="29.7587%" y="677" width="0.0293%" height="15" fill="rgb(232,177,36)" fg:x="107804" fg:w="106"/><text x="30.0087%" y="687.50"></text></g><g><title>switch_fpu_return (97 samples, 0.03%)</title><rect x="29.7611%" y="661" width="0.0268%" height="15" fill="rgb(219,125,36)" fg:x="107813" fg:w="97"/><text x="30.0111%" y="671.50"></text></g><g><title>copy_kernel_to_fpregs (77 samples, 0.02%)</title><rect x="29.7667%" y="645" width="0.0213%" height="15" fill="rgb(227,94,9)" fg:x="107833" fg:w="77"/><text x="30.0167%" y="655.50"></text></g><g><title>__pthread_cond_wait (3,701 samples, 1.02%)</title><rect x="28.7710%" y="757" width="1.0216%" height="15" fill="rgb(240,34,52)" fg:x="104226" fg:w="3701"/><text x="29.0210%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (3,700 samples, 1.02%)</title><rect x="28.7712%" y="741" width="1.0214%" height="15" fill="rgb(216,45,12)" fg:x="104227" fg:w="3700"/><text x="29.0212%" y="751.50"></text></g><g><title>futex_wait_cancelable (3,326 samples, 0.92%)</title><rect x="28.8745%" y="725" width="0.9181%" height="15" fill="rgb(246,21,19)" fg:x="104601" fg:w="3326"/><text x="29.1245%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (157 samples, 0.04%)</title><rect x="29.8133%" y="581" width="0.0433%" height="15" fill="rgb(213,98,42)" fg:x="108002" fg:w="157"/><text x="30.0633%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (155 samples, 0.04%)</title><rect x="29.8139%" y="565" width="0.0428%" height="15" fill="rgb(250,136,47)" fg:x="108004" fg:w="155"/><text x="30.0639%" y="575.50"></text></g><g><title>native_write_msr (155 samples, 0.04%)</title><rect x="29.8139%" y="549" width="0.0428%" height="15" fill="rgb(251,124,27)" fg:x="108004" fg:w="155"/><text x="30.0639%" y="559.50"></text></g><g><title>finish_task_switch (167 samples, 0.05%)</title><rect x="29.8122%" y="597" width="0.0461%" height="15" fill="rgb(229,180,14)" fg:x="107998" fg:w="167"/><text x="30.0622%" y="607.50"></text></g><g><title>futex_wait_queue_me (220 samples, 0.06%)</title><rect x="29.8025%" y="645" width="0.0607%" height="15" fill="rgb(245,216,25)" fg:x="107963" fg:w="220"/><text x="30.0525%" y="655.50"></text></g><g><title>schedule (215 samples, 0.06%)</title><rect x="29.8039%" y="629" width="0.0593%" height="15" fill="rgb(251,43,5)" fg:x="107968" fg:w="215"/><text x="30.0539%" y="639.50"></text></g><g><title>__schedule (212 samples, 0.06%)</title><rect x="29.8048%" y="613" width="0.0585%" height="15" fill="rgb(250,128,24)" fg:x="107971" fg:w="212"/><text x="30.0548%" y="623.50"></text></g><g><title>__x64_sys_futex (242 samples, 0.07%)</title><rect x="29.8006%" y="693" width="0.0668%" height="15" fill="rgb(217,117,27)" fg:x="107956" fg:w="242"/><text x="30.0506%" y="703.50"></text></g><g><title>do_futex (242 samples, 0.07%)</title><rect x="29.8006%" y="677" width="0.0668%" height="15" fill="rgb(245,147,4)" fg:x="107956" fg:w="242"/><text x="30.0506%" y="687.50"></text></g><g><title>futex_wait (241 samples, 0.07%)</title><rect x="29.8009%" y="661" width="0.0665%" height="15" fill="rgb(242,201,35)" fg:x="107957" fg:w="241"/><text x="30.0509%" y="671.50"></text></g><g><title>do_syscall_64 (247 samples, 0.07%)</title><rect x="29.8001%" y="709" width="0.0682%" height="15" fill="rgb(218,181,1)" fg:x="107954" fg:w="247"/><text x="30.0501%" y="719.50"></text></g><g><title>__pthread_mutex_cond_lock (281 samples, 0.08%)</title><rect x="29.7926%" y="757" width="0.0776%" height="15" fill="rgb(222,6,29)" fg:x="107927" fg:w="281"/><text x="30.0426%" y="767.50"></text></g><g><title>__lll_lock_wait (262 samples, 0.07%)</title><rect x="29.7979%" y="741" width="0.0723%" height="15" fill="rgb(208,186,3)" fg:x="107946" fg:w="262"/><text x="30.0479%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (256 samples, 0.07%)</title><rect x="29.7995%" y="725" width="0.0707%" height="15" fill="rgb(216,36,26)" fg:x="107952" fg:w="256"/><text x="30.0495%" y="735.50"></text></g><g><title>std::condition_variable::wait (3,998 samples, 1.10%)</title><rect x="28.7699%" y="773" width="1.1036%" height="15" fill="rgb(248,201,23)" fg:x="104222" fg:w="3998"/><text x="29.0199%" y="783.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (4,839 samples, 1.34%)</title><rect x="28.5388%" y="789" width="1.3358%" height="15" fill="rgb(251,170,31)" fg:x="103385" fg:w="4839"/><text x="28.7888%" y="799.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (40 samples, 0.01%)</title><rect x="29.8856%" y="757" width="0.0110%" height="15" fill="rgb(207,110,25)" fg:x="108264" fg:w="40"/><text x="30.1356%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (312 samples, 0.09%)</title><rect x="29.9502%" y="549" width="0.0861%" height="15" fill="rgb(250,54,15)" fg:x="108498" fg:w="312"/><text x="30.2002%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (310 samples, 0.09%)</title><rect x="29.9508%" y="533" width="0.0856%" height="15" fill="rgb(227,68,33)" fg:x="108500" fg:w="310"/><text x="30.2008%" y="543.50"></text></g><g><title>native_write_msr (308 samples, 0.09%)</title><rect x="29.9513%" y="517" width="0.0850%" height="15" fill="rgb(238,34,41)" fg:x="108502" fg:w="308"/><text x="30.2013%" y="527.50"></text></g><g><title>finish_task_switch (328 samples, 0.09%)</title><rect x="29.9469%" y="565" width="0.0905%" height="15" fill="rgb(220,11,15)" fg:x="108486" fg:w="328"/><text x="30.1969%" y="575.50"></text></g><g><title>futex_wait_queue_me (444 samples, 0.12%)</title><rect x="29.9317%" y="613" width="0.1226%" height="15" fill="rgb(246,111,35)" fg:x="108431" fg:w="444"/><text x="30.1817%" y="623.50"></text></g><g><title>schedule (438 samples, 0.12%)</title><rect x="29.9334%" y="597" width="0.1209%" height="15" fill="rgb(209,88,53)" fg:x="108437" fg:w="438"/><text x="30.1834%" y="607.50"></text></g><g><title>__schedule (438 samples, 0.12%)</title><rect x="29.9334%" y="581" width="0.1209%" height="15" fill="rgb(231,185,47)" fg:x="108437" fg:w="438"/><text x="30.1834%" y="591.50"></text></g><g><title>__x64_sys_futex (464 samples, 0.13%)</title><rect x="29.9290%" y="661" width="0.1281%" height="15" fill="rgb(233,154,1)" fg:x="108421" fg:w="464"/><text x="30.1790%" y="671.50"></text></g><g><title>do_futex (461 samples, 0.13%)</title><rect x="29.9298%" y="645" width="0.1273%" height="15" fill="rgb(225,15,46)" fg:x="108424" fg:w="461"/><text x="30.1798%" y="655.50"></text></g><g><title>futex_wait (459 samples, 0.13%)</title><rect x="29.9304%" y="629" width="0.1267%" height="15" fill="rgb(211,135,41)" fg:x="108426" fg:w="459"/><text x="30.1804%" y="639.50"></text></g><g><title>do_syscall_64 (468 samples, 0.13%)</title><rect x="29.9281%" y="677" width="0.1292%" height="15" fill="rgb(208,54,0)" fg:x="108418" fg:w="468"/><text x="30.1781%" y="687.50"></text></g><g><title>__pthread_cond_wait (545 samples, 0.15%)</title><rect x="29.9110%" y="741" width="0.1504%" height="15" fill="rgb(244,136,14)" fg:x="108356" fg:w="545"/><text x="30.1610%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (545 samples, 0.15%)</title><rect x="29.9110%" y="725" width="0.1504%" height="15" fill="rgb(241,56,14)" fg:x="108356" fg:w="545"/><text x="30.1610%" y="735.50"></text></g><g><title>futex_wait_cancelable (502 samples, 0.14%)</title><rect x="29.9229%" y="709" width="0.1386%" height="15" fill="rgb(205,80,24)" fg:x="108399" fg:w="502"/><text x="30.1729%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (485 samples, 0.13%)</title><rect x="29.9276%" y="693" width="0.1339%" height="15" fill="rgb(220,57,4)" fg:x="108416" fg:w="485"/><text x="30.1776%" y="703.50"></text></g><g><title>finish_task_switch (37 samples, 0.01%)</title><rect x="30.0642%" y="581" width="0.0102%" height="15" fill="rgb(226,193,50)" fg:x="108911" fg:w="37"/><text x="30.3142%" y="591.50"></text></g><g><title>do_syscall_64 (46 samples, 0.01%)</title><rect x="30.0629%" y="693" width="0.0127%" height="15" fill="rgb(231,168,22)" fg:x="108906" fg:w="46"/><text x="30.3129%" y="703.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.01%)</title><rect x="30.0629%" y="677" width="0.0127%" height="15" fill="rgb(254,215,14)" fg:x="108906" fg:w="46"/><text x="30.3129%" y="687.50"></text></g><g><title>do_futex (46 samples, 0.01%)</title><rect x="30.0629%" y="661" width="0.0127%" height="15" fill="rgb(211,115,16)" fg:x="108906" fg:w="46"/><text x="30.3129%" y="671.50"></text></g><g><title>futex_wait (46 samples, 0.01%)</title><rect x="30.0629%" y="645" width="0.0127%" height="15" fill="rgb(236,210,16)" fg:x="108906" fg:w="46"/><text x="30.3129%" y="655.50"></text></g><g><title>futex_wait_queue_me (46 samples, 0.01%)</title><rect x="30.0629%" y="629" width="0.0127%" height="15" fill="rgb(221,94,12)" fg:x="108906" fg:w="46"/><text x="30.3129%" y="639.50"></text></g><g><title>schedule (45 samples, 0.01%)</title><rect x="30.0631%" y="613" width="0.0124%" height="15" fill="rgb(235,218,49)" fg:x="108907" fg:w="45"/><text x="30.3131%" y="623.50"></text></g><g><title>__schedule (44 samples, 0.01%)</title><rect x="30.0634%" y="597" width="0.0121%" height="15" fill="rgb(217,114,14)" fg:x="108908" fg:w="44"/><text x="30.3134%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="30.0626%" y="709" width="0.0135%" height="15" fill="rgb(216,145,22)" fg:x="108905" fg:w="49"/><text x="30.3126%" y="719.50"></text></g><g><title>__pthread_mutex_cond_lock (54 samples, 0.01%)</title><rect x="30.0615%" y="741" width="0.0149%" height="15" fill="rgb(217,112,39)" fg:x="108901" fg:w="54"/><text x="30.3115%" y="751.50"></text></g><g><title>__lll_lock_wait (50 samples, 0.01%)</title><rect x="30.0626%" y="725" width="0.0138%" height="15" fill="rgb(225,85,32)" fg:x="108905" fg:w="50"/><text x="30.3126%" y="735.50"></text></g><g><title>std::condition_variable::wait (601 samples, 0.17%)</title><rect x="29.9110%" y="757" width="0.1659%" height="15" fill="rgb(245,209,47)" fg:x="108356" fg:w="601"/><text x="30.1610%" y="767.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (733 samples, 0.20%)</title><rect x="29.8749%" y="773" width="0.2023%" height="15" fill="rgb(218,220,15)" fg:x="108225" fg:w="733"/><text x="30.1249%" y="783.50"></text></g><g><title>std::thread::_State_impl&lt;std::thread::_Invoker&lt;std::tuple&lt;llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::ThreadPoolExecutor(llvm::ThreadPoolStrategy)::{lambda()#1}&gt; &gt; &gt;::_M_run (779 samples, 0.22%)</title><rect x="29.8749%" y="789" width="0.2150%" height="15" fill="rgb(222,202,31)" fg:x="108225" fg:w="779"/><text x="30.1249%" y="799.50"></text></g><g><title>[libstdc++.so.6.0.28] (5,624 samples, 1.55%)</title><rect x="28.5380%" y="805" width="1.5525%" height="15" fill="rgb(243,203,4)" fg:x="103382" fg:w="5624"/><text x="28.7880%" y="815.50"></text></g><g><title>advise_stack_range (37 samples, 0.01%)</title><rect x="30.0976%" y="805" width="0.0102%" height="15" fill="rgb(237,92,17)" fg:x="109032" fg:w="37"/><text x="30.3476%" y="815.50"></text></g><g><title>__GI___clone (6,130 samples, 1.69%)</title><rect x="28.4209%" y="837" width="1.6922%" height="15" fill="rgb(231,119,7)" fg:x="102958" fg:w="6130"/><text x="28.6709%" y="847.50"></text></g><g><title>start_thread (5,708 samples, 1.58%)</title><rect x="28.5374%" y="821" width="1.5757%" height="15" fill="rgb(237,82,41)" fg:x="103380" fg:w="5708"/><text x="28.7874%" y="831.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (42 samples, 0.01%)</title><rect x="30.2332%" y="789" width="0.0116%" height="15" fill="rgb(226,81,48)" fg:x="109523" fg:w="42"/><text x="30.4832%" y="799.50"></text></g><g><title>__libc_csu_init (525 samples, 0.14%)</title><rect x="30.1250%" y="805" width="0.1449%" height="15" fill="rgb(234,70,51)" fg:x="109131" fg:w="525"/><text x="30.3750%" y="815.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (64 samples, 0.02%)</title><rect x="30.2831%" y="709" width="0.0177%" height="15" fill="rgb(251,86,4)" fg:x="109704" fg:w="64"/><text x="30.5331%" y="719.50"></text></g><g><title>filename_lookup (39 samples, 0.01%)</title><rect x="30.3008%" y="597" width="0.0108%" height="15" fill="rgb(244,144,28)" fg:x="109768" fg:w="39"/><text x="30.5508%" y="607.50"></text></g><g><title>path_lookupat (39 samples, 0.01%)</title><rect x="30.3008%" y="581" width="0.0108%" height="15" fill="rgb(232,161,39)" fg:x="109768" fg:w="39"/><text x="30.5508%" y="591.50"></text></g><g><title>do_syscall_64 (43 samples, 0.01%)</title><rect x="30.3008%" y="629" width="0.0119%" height="15" fill="rgb(247,34,51)" fg:x="109768" fg:w="43"/><text x="30.5508%" y="639.50"></text></g><g><title>do_faccessat (43 samples, 0.01%)</title><rect x="30.3008%" y="613" width="0.0119%" height="15" fill="rgb(225,132,2)" fg:x="109768" fg:w="43"/><text x="30.5508%" y="623.50"></text></g><g><title>findFile[abi:cxx11] (44 samples, 0.01%)</title><rect x="30.3008%" y="693" width="0.0121%" height="15" fill="rgb(209,159,44)" fg:x="109768" fg:w="44"/><text x="30.5508%" y="703.50"></text></g><g><title>llvm::sys::fs::access (44 samples, 0.01%)</title><rect x="30.3008%" y="677" width="0.0121%" height="15" fill="rgb(251,214,1)" fg:x="109768" fg:w="44"/><text x="30.5508%" y="687.50"></text></g><g><title>__GI___access (44 samples, 0.01%)</title><rect x="30.3008%" y="661" width="0.0121%" height="15" fill="rgb(247,84,47)" fg:x="109768" fg:w="44"/><text x="30.5508%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.01%)</title><rect x="30.3008%" y="645" width="0.0121%" height="15" fill="rgb(240,111,43)" fg:x="109768" fg:w="44"/><text x="30.5508%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (54 samples, 0.01%)</title><rect x="30.3174%" y="485" width="0.0149%" height="15" fill="rgb(215,214,35)" fg:x="109828" fg:w="54"/><text x="30.5674%" y="495.50"></text></g><g><title>btrfs_search_slot (54 samples, 0.01%)</title><rect x="30.3174%" y="469" width="0.0149%" height="15" fill="rgb(248,207,23)" fg:x="109828" fg:w="54"/><text x="30.5674%" y="479.50"></text></g><g><title>btrfs_lookup (55 samples, 0.02%)</title><rect x="30.3174%" y="517" width="0.0152%" height="15" fill="rgb(214,186,4)" fg:x="109828" fg:w="55"/><text x="30.5674%" y="527.50"></text></g><g><title>btrfs_lookup_dentry (55 samples, 0.02%)</title><rect x="30.3174%" y="501" width="0.0152%" height="15" fill="rgb(220,133,22)" fg:x="109828" fg:w="55"/><text x="30.5674%" y="511.50"></text></g><g><title>__lookup_slow (56 samples, 0.02%)</title><rect x="30.3174%" y="533" width="0.0155%" height="15" fill="rgb(239,134,19)" fg:x="109828" fg:w="56"/><text x="30.5674%" y="543.50"></text></g><g><title>filename_lookup (74 samples, 0.02%)</title><rect x="30.3141%" y="581" width="0.0204%" height="15" fill="rgb(250,140,9)" fg:x="109816" fg:w="74"/><text x="30.5641%" y="591.50"></text></g><g><title>path_lookupat (73 samples, 0.02%)</title><rect x="30.3143%" y="565" width="0.0202%" height="15" fill="rgb(225,59,14)" fg:x="109817" fg:w="73"/><text x="30.5643%" y="575.50"></text></g><g><title>walk_component (62 samples, 0.02%)</title><rect x="30.3174%" y="549" width="0.0171%" height="15" fill="rgb(214,152,51)" fg:x="109828" fg:w="62"/><text x="30.5674%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (84 samples, 0.02%)</title><rect x="30.3138%" y="629" width="0.0232%" height="15" fill="rgb(251,227,43)" fg:x="109815" fg:w="84"/><text x="30.5638%" y="639.50"></text></g><g><title>do_syscall_64 (84 samples, 0.02%)</title><rect x="30.3138%" y="613" width="0.0232%" height="15" fill="rgb(241,96,17)" fg:x="109815" fg:w="84"/><text x="30.5638%" y="623.50"></text></g><g><title>do_faccessat (84 samples, 0.02%)</title><rect x="30.3138%" y="597" width="0.0232%" height="15" fill="rgb(234,198,43)" fg:x="109815" fg:w="84"/><text x="30.5638%" y="607.50"></text></g><g><title>__GI___access (88 samples, 0.02%)</title><rect x="30.3132%" y="645" width="0.0243%" height="15" fill="rgb(220,108,29)" fg:x="109813" fg:w="88"/><text x="30.5632%" y="655.50"></text></g><g><title>llvm::sys::fs::access (91 samples, 0.03%)</title><rect x="30.3132%" y="661" width="0.0251%" height="15" fill="rgb(226,163,33)" fg:x="109813" fg:w="91"/><text x="30.5632%" y="671.50"></text></g><g><title>lld::elf::searchLibraryBaseName[abi:cxx11] (96 samples, 0.03%)</title><rect x="30.3130%" y="693" width="0.0265%" height="15" fill="rgb(205,194,45)" fg:x="109812" fg:w="96"/><text x="30.5630%" y="703.50"></text></g><g><title>findFile[abi:cxx11] (96 samples, 0.03%)</title><rect x="30.3130%" y="677" width="0.0265%" height="15" fill="rgb(206,143,44)" fg:x="109812" fg:w="96"/><text x="30.5630%" y="687.50"></text></g><g><title>lld::elf::searchLibrary[abi:cxx11] (141 samples, 0.04%)</title><rect x="30.3008%" y="709" width="0.0389%" height="15" fill="rgb(236,136,36)" fg:x="109768" fg:w="141"/><text x="30.5508%" y="719.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (236 samples, 0.07%)</title><rect x="30.2749%" y="741" width="0.0651%" height="15" fill="rgb(249,172,42)" fg:x="109674" fg:w="236"/><text x="30.5249%" y="751.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (207 samples, 0.06%)</title><rect x="30.2829%" y="725" width="0.0571%" height="15" fill="rgb(216,139,23)" fg:x="109703" fg:w="207"/><text x="30.5329%" y="735.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (45 samples, 0.01%)</title><rect x="30.3759%" y="677" width="0.0124%" height="15" fill="rgb(207,166,20)" fg:x="110040" fg:w="45"/><text x="30.6259%" y="687.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (157 samples, 0.04%)</title><rect x="30.3513%" y="709" width="0.0433%" height="15" fill="rgb(210,209,22)" fg:x="109951" fg:w="157"/><text x="30.6013%" y="719.50"></text></g><g><title>lld::elf::SymbolTable::insert (148 samples, 0.04%)</title><rect x="30.3538%" y="693" width="0.0409%" height="15" fill="rgb(232,118,20)" fg:x="109960" fg:w="148"/><text x="30.6038%" y="703.50"></text></g><g><title>lld::elf::ArchiveFile::parse (202 samples, 0.06%)</title><rect x="30.3491%" y="725" width="0.0558%" height="15" fill="rgb(238,113,42)" fg:x="109943" fg:w="202"/><text x="30.5991%" y="735.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="30.4143%" y="597" width="0.0108%" height="15" fill="rgb(231,42,5)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="607.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.01%)</title><rect x="30.4143%" y="581" width="0.0108%" height="15" fill="rgb(243,166,24)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="591.50"></text></g><g><title>do_futex (39 samples, 0.01%)</title><rect x="30.4143%" y="565" width="0.0108%" height="15" fill="rgb(237,226,12)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="575.50"></text></g><g><title>futex_wait (39 samples, 0.01%)</title><rect x="30.4143%" y="549" width="0.0108%" height="15" fill="rgb(229,133,24)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="559.50"></text></g><g><title>futex_wait_queue_me (39 samples, 0.01%)</title><rect x="30.4143%" y="533" width="0.0108%" height="15" fill="rgb(238,33,43)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="543.50"></text></g><g><title>schedule (39 samples, 0.01%)</title><rect x="30.4143%" y="517" width="0.0108%" height="15" fill="rgb(227,59,38)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="527.50"></text></g><g><title>__schedule (39 samples, 0.01%)</title><rect x="30.4143%" y="501" width="0.0108%" height="15" fill="rgb(230,97,0)" fg:x="110179" fg:w="39"/><text x="30.6643%" y="511.50"></text></g><g><title>finish_task_switch (37 samples, 0.01%)</title><rect x="30.4148%" y="485" width="0.0102%" height="15" fill="rgb(250,173,50)" fg:x="110181" fg:w="37"/><text x="30.6648%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.01%)</title><rect x="30.4148%" y="469" width="0.0102%" height="15" fill="rgb(240,15,50)" fg:x="110181" fg:w="37"/><text x="30.6648%" y="479.50"></text></g><g><title>__GI___pthread_mutex_lock (41 samples, 0.01%)</title><rect x="30.4143%" y="645" width="0.0113%" height="15" fill="rgb(221,93,22)" fg:x="110179" fg:w="41"/><text x="30.6643%" y="655.50"></text></g><g><title>__lll_lock_wait (41 samples, 0.01%)</title><rect x="30.4143%" y="629" width="0.0113%" height="15" fill="rgb(245,180,53)" fg:x="110179" fg:w="41"/><text x="30.6643%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="30.4143%" y="613" width="0.0113%" height="15" fill="rgb(231,88,51)" fg:x="110179" fg:w="41"/><text x="30.6643%" y="623.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (49 samples, 0.01%)</title><rect x="30.4143%" y="661" width="0.0135%" height="15" fill="rgb(240,58,21)" fg:x="110179" fg:w="49"/><text x="30.6643%" y="671.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (115 samples, 0.03%)</title><rect x="30.4143%" y="677" width="0.0317%" height="15" fill="rgb(237,21,10)" fg:x="110179" fg:w="115"/><text x="30.6643%" y="687.50"></text></g><g><title>std::condition_variable::notify_one (65 samples, 0.02%)</title><rect x="30.4281%" y="661" width="0.0179%" height="15" fill="rgb(218,43,11)" fg:x="110229" fg:w="65"/><text x="30.6781%" y="671.50"></text></g><g><title>__pthread_cond_signal (65 samples, 0.02%)</title><rect x="30.4281%" y="645" width="0.0179%" height="15" fill="rgb(218,221,29)" fg:x="110229" fg:w="65"/><text x="30.6781%" y="655.50"></text></g><g><title>lld::elf::MergeNoTailSection::finalizeContents (146 samples, 0.04%)</title><rect x="30.4121%" y="709" width="0.0403%" height="15" fill="rgb(214,118,42)" fg:x="110171" fg:w="146"/><text x="30.6621%" y="719.50"></text></g><g><title>llvm::parallelForEachN (140 samples, 0.04%)</title><rect x="30.4137%" y="693" width="0.0386%" height="15" fill="rgb(251,200,26)" fg:x="110177" fg:w="140"/><text x="30.6637%" y="703.50"></text></g><g><title>lld::elf::OutputSection::finalizeInputSections (147 samples, 0.04%)</title><rect x="30.4121%" y="725" width="0.0406%" height="15" fill="rgb(237,101,39)" fg:x="110171" fg:w="147"/><text x="30.6621%" y="735.50"></text></g><g><title>lld::elf::SymbolTable::find (54 samples, 0.01%)</title><rect x="30.4570%" y="725" width="0.0149%" height="15" fill="rgb(251,117,11)" fg:x="110334" fg:w="54"/><text x="30.7070%" y="735.50"></text></g><g><title>lld::make&lt;lld::elf::SymbolUnion&gt; (68 samples, 0.02%)</title><rect x="30.5291%" y="661" width="0.0188%" height="15" fill="rgb(216,223,23)" fg:x="110595" fg:w="68"/><text x="30.7791%" y="671.50"></text></g><g><title>handle_mm_fault (37 samples, 0.01%)</title><rect x="30.5617%" y="581" width="0.0102%" height="15" fill="rgb(251,54,12)" fg:x="110713" fg:w="37"/><text x="30.8117%" y="591.50"></text></g><g><title>exc_page_fault (43 samples, 0.01%)</title><rect x="30.5606%" y="613" width="0.0119%" height="15" fill="rgb(254,176,54)" fg:x="110709" fg:w="43"/><text x="30.8106%" y="623.50"></text></g><g><title>do_user_addr_fault (43 samples, 0.01%)</title><rect x="30.5606%" y="597" width="0.0119%" height="15" fill="rgb(210,32,8)" fg:x="110709" fg:w="43"/><text x="30.8106%" y="607.50"></text></g><g><title>asm_exc_page_fault (45 samples, 0.01%)</title><rect x="30.5603%" y="629" width="0.0124%" height="15" fill="rgb(235,52,38)" fg:x="110708" fg:w="45"/><text x="30.8103%" y="639.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (42 samples, 0.01%)</title><rect x="30.5749%" y="629" width="0.0116%" height="15" fill="rgb(231,4,44)" fg:x="110761" fg:w="42"/><text x="30.8249%" y="639.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (149 samples, 0.04%)</title><rect x="30.5479%" y="661" width="0.0411%" height="15" fill="rgb(249,2,32)" fg:x="110663" fg:w="149"/><text x="30.7979%" y="671.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (144 samples, 0.04%)</title><rect x="30.5492%" y="645" width="0.0398%" height="15" fill="rgb(224,65,26)" fg:x="110668" fg:w="144"/><text x="30.7992%" y="655.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (87 samples, 0.02%)</title><rect x="30.5890%" y="661" width="0.0240%" height="15" fill="rgb(250,73,40)" fg:x="110812" fg:w="87"/><text x="30.8390%" y="671.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (427 samples, 0.12%)</title><rect x="30.5076%" y="693" width="0.1179%" height="15" fill="rgb(253,177,16)" fg:x="110517" fg:w="427"/><text x="30.7576%" y="703.50"></text></g><g><title>lld::elf::SymbolTable::insert (381 samples, 0.11%)</title><rect x="30.5203%" y="677" width="0.1052%" height="15" fill="rgb(217,32,34)" fg:x="110563" fg:w="381"/><text x="30.7703%" y="687.50"></text></g><g><title>llvm::Twine::toVector (79 samples, 0.02%)</title><rect x="30.6315%" y="693" width="0.0218%" height="15" fill="rgb(212,7,10)" fg:x="110966" fg:w="79"/><text x="30.8815%" y="703.50"></text></g><g><title>lld::elf::SharedFile::parse&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (602 samples, 0.17%)</title><rect x="30.4949%" y="709" width="0.1662%" height="15" fill="rgb(245,89,8)" fg:x="110471" fg:w="602"/><text x="30.7449%" y="719.50"></text></g><g><title>lld::elf::parseFile (621 samples, 0.17%)</title><rect x="30.4899%" y="725" width="0.1714%" height="15" fill="rgb(237,16,53)" fg:x="110453" fg:w="621"/><text x="30.7399%" y="735.50"></text></g><g><title>do_syscall_64 (37 samples, 0.01%)</title><rect x="30.6964%" y="549" width="0.0102%" height="15" fill="rgb(250,204,30)" fg:x="111201" fg:w="37"/><text x="30.9464%" y="559.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (62 samples, 0.02%)</title><rect x="30.6898%" y="629" width="0.0171%" height="15" fill="rgb(208,77,27)" fg:x="111177" fg:w="62"/><text x="30.9398%" y="639.50"></text></g><g><title>std::condition_variable::notify_one (53 samples, 0.01%)</title><rect x="30.6922%" y="613" width="0.0146%" height="15" fill="rgb(250,204,28)" fg:x="111186" fg:w="53"/><text x="30.9422%" y="623.50"></text></g><g><title>__pthread_cond_signal (53 samples, 0.01%)</title><rect x="30.6922%" y="597" width="0.0146%" height="15" fill="rgb(244,63,21)" fg:x="111186" fg:w="53"/><text x="30.9422%" y="607.50"></text></g><g><title>futex_wake (41 samples, 0.01%)</title><rect x="30.6955%" y="581" width="0.0113%" height="15" fill="rgb(236,85,44)" fg:x="111198" fg:w="41"/><text x="30.9455%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="30.6961%" y="565" width="0.0108%" height="15" fill="rgb(215,98,4)" fg:x="111200" fg:w="39"/><text x="30.9461%" y="575.50"></text></g><g><title>lld::elf::MergeNoTailSection::writeTo (66 samples, 0.02%)</title><rect x="30.6898%" y="661" width="0.0182%" height="15" fill="rgb(235,38,11)" fg:x="111177" fg:w="66"/><text x="30.9398%" y="671.50"></text></g><g><title>llvm::parallelForEachN (66 samples, 0.02%)</title><rect x="30.6898%" y="645" width="0.0182%" height="15" fill="rgb(254,186,25)" fg:x="111177" fg:w="66"/><text x="30.9398%" y="655.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;(unsigned char*)::{lambda(unsigned long)#2}&gt; (81 samples, 0.02%)</title><rect x="30.6873%" y="677" width="0.0224%" height="15" fill="rgb(225,55,31)" fg:x="111168" fg:w="81"/><text x="30.9373%" y="687.50"></text></g><g><title>lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (117 samples, 0.03%)</title><rect x="30.6862%" y="709" width="0.0323%" height="15" fill="rgb(211,15,21)" fg:x="111164" fg:w="117"/><text x="30.9362%" y="719.50"></text></g><g><title>llvm::parallelForEachN (113 samples, 0.03%)</title><rect x="30.6873%" y="693" width="0.0312%" height="15" fill="rgb(215,187,41)" fg:x="111168" fg:w="113"/><text x="30.9373%" y="703.50"></text></g><g><title>lld::elf::postScanRelocations (39 samples, 0.01%)</title><rect x="30.7229%" y="709" width="0.0108%" height="15" fill="rgb(248,69,32)" fg:x="111297" fg:w="39"/><text x="30.9729%" y="719.50"></text></g><g><title>llvm::FileOutputBuffer::create (62 samples, 0.02%)</title><rect x="30.7392%" y="709" width="0.0171%" height="15" fill="rgb(252,102,52)" fg:x="111356" fg:w="62"/><text x="30.9892%" y="719.50"></text></g><g><title>finish_task_switch (54 samples, 0.01%)</title><rect x="30.7855%" y="501" width="0.0149%" height="15" fill="rgb(253,140,32)" fg:x="111524" fg:w="54"/><text x="31.0355%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (52 samples, 0.01%)</title><rect x="30.7861%" y="485" width="0.0144%" height="15" fill="rgb(216,56,42)" fg:x="111526" fg:w="52"/><text x="31.0361%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.01%)</title><rect x="30.7864%" y="469" width="0.0141%" height="15" fill="rgb(216,184,14)" fg:x="111527" fg:w="51"/><text x="31.0364%" y="479.50"></text></g><g><title>native_write_msr (51 samples, 0.01%)</title><rect x="30.7864%" y="453" width="0.0141%" height="15" fill="rgb(237,187,27)" fg:x="111527" fg:w="51"/><text x="31.0364%" y="463.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.02%)</title><rect x="30.7828%" y="549" width="0.0224%" height="15" fill="rgb(219,65,3)" fg:x="111514" fg:w="81"/><text x="31.0328%" y="559.50"></text></g><g><title>schedule (78 samples, 0.02%)</title><rect x="30.7836%" y="533" width="0.0215%" height="15" fill="rgb(245,83,25)" fg:x="111517" fg:w="78"/><text x="31.0336%" y="543.50"></text></g><g><title>__schedule (78 samples, 0.02%)</title><rect x="30.7836%" y="517" width="0.0215%" height="15" fill="rgb(214,205,45)" fg:x="111517" fg:w="78"/><text x="31.0336%" y="527.50"></text></g><g><title>do_syscall_64 (92 samples, 0.03%)</title><rect x="30.7822%" y="613" width="0.0254%" height="15" fill="rgb(241,20,18)" fg:x="111512" fg:w="92"/><text x="31.0322%" y="623.50"></text></g><g><title>__x64_sys_futex (92 samples, 0.03%)</title><rect x="30.7822%" y="597" width="0.0254%" height="15" fill="rgb(232,163,23)" fg:x="111512" fg:w="92"/><text x="31.0322%" y="607.50"></text></g><g><title>do_futex (90 samples, 0.02%)</title><rect x="30.7828%" y="581" width="0.0248%" height="15" fill="rgb(214,5,46)" fg:x="111514" fg:w="90"/><text x="31.0328%" y="591.50"></text></g><g><title>futex_wait (90 samples, 0.02%)</title><rect x="30.7828%" y="565" width="0.0248%" height="15" fill="rgb(229,78,17)" fg:x="111514" fg:w="90"/><text x="31.0328%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.03%)</title><rect x="30.7822%" y="629" width="0.0257%" height="15" fill="rgb(248,89,10)" fg:x="111512" fg:w="93"/><text x="31.0322%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (123 samples, 0.03%)</title><rect x="30.7742%" y="661" width="0.0340%" height="15" fill="rgb(248,54,15)" fg:x="111483" fg:w="123"/><text x="31.0242%" y="671.50"></text></g><g><title>__lll_lock_wait (101 samples, 0.03%)</title><rect x="30.7803%" y="645" width="0.0279%" height="15" fill="rgb(223,116,6)" fg:x="111505" fg:w="101"/><text x="31.0303%" y="655.50"></text></g><g><title>do_syscall_64 (81 samples, 0.02%)</title><rect x="30.8156%" y="629" width="0.0224%" height="15" fill="rgb(205,125,38)" fg:x="111633" fg:w="81"/><text x="31.0656%" y="639.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.02%)</title><rect x="30.8162%" y="613" width="0.0218%" height="15" fill="rgb(251,78,38)" fg:x="111635" fg:w="79"/><text x="31.0662%" y="623.50"></text></g><g><title>do_futex (79 samples, 0.02%)</title><rect x="30.8162%" y="597" width="0.0218%" height="15" fill="rgb(253,78,28)" fg:x="111635" fg:w="79"/><text x="31.0662%" y="607.50"></text></g><g><title>futex_wake (75 samples, 0.02%)</title><rect x="30.8173%" y="581" width="0.0207%" height="15" fill="rgb(209,120,3)" fg:x="111639" fg:w="75"/><text x="31.0673%" y="591.50"></text></g><g><title>wake_up_q (62 samples, 0.02%)</title><rect x="30.8209%" y="565" width="0.0171%" height="15" fill="rgb(238,229,9)" fg:x="111652" fg:w="62"/><text x="31.0709%" y="575.50"></text></g><g><title>try_to_wake_up (62 samples, 0.02%)</title><rect x="30.8209%" y="549" width="0.0171%" height="15" fill="rgb(253,159,18)" fg:x="111652" fg:w="62"/><text x="31.0709%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (84 samples, 0.02%)</title><rect x="30.8154%" y="645" width="0.0232%" height="15" fill="rgb(244,42,34)" fg:x="111632" fg:w="84"/><text x="31.0654%" y="655.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (111 samples, 0.03%)</title><rect x="30.8082%" y="661" width="0.0306%" height="15" fill="rgb(224,8,7)" fg:x="111606" fg:w="111"/><text x="31.0582%" y="671.50"></text></g><g><title>_int_malloc (39 samples, 0.01%)</title><rect x="30.8441%" y="597" width="0.0108%" height="15" fill="rgb(210,201,45)" fg:x="111736" fg:w="39"/><text x="31.0941%" y="607.50"></text></g><g><title>__GI___libc_malloc (60 samples, 0.02%)</title><rect x="30.8396%" y="613" width="0.0166%" height="15" fill="rgb(252,185,21)" fg:x="111720" fg:w="60"/><text x="31.0896%" y="623.50"></text></g><g><title>operator new (62 samples, 0.02%)</title><rect x="30.8396%" y="629" width="0.0171%" height="15" fill="rgb(223,131,1)" fg:x="111720" fg:w="62"/><text x="31.0896%" y="639.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (348 samples, 0.10%)</title><rect x="30.7731%" y="677" width="0.0961%" height="15" fill="rgb(245,141,16)" fg:x="111479" fg:w="348"/><text x="31.0231%" y="687.50"></text></g><g><title>std::deque&lt;std::function&lt;void ()&gt;, std::allocator&lt;std::function&lt;void ()&gt; &gt; &gt;::push_back (109 samples, 0.03%)</title><rect x="30.8391%" y="661" width="0.0301%" height="15" fill="rgb(229,55,45)" fg:x="111718" fg:w="109"/><text x="31.0891%" y="671.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (109 samples, 0.03%)</title><rect x="30.8391%" y="645" width="0.0301%" height="15" fill="rgb(208,92,15)" fg:x="111718" fg:w="109"/><text x="31.0891%" y="655.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_manager (44 samples, 0.01%)</title><rect x="30.8570%" y="629" width="0.0121%" height="15" fill="rgb(234,185,47)" fg:x="111783" fg:w="44"/><text x="31.1070%" y="639.50"></text></g><g><title>operator new (42 samples, 0.01%)</title><rect x="30.8576%" y="613" width="0.0116%" height="15" fill="rgb(253,104,50)" fg:x="111785" fg:w="42"/><text x="31.1076%" y="623.50"></text></g><g><title>__GI___libc_malloc (41 samples, 0.01%)</title><rect x="30.8579%" y="597" width="0.0113%" height="15" fill="rgb(205,70,7)" fg:x="111786" fg:w="41"/><text x="31.1079%" y="607.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (45 samples, 0.01%)</title><rect x="30.8722%" y="677" width="0.0124%" height="15" fill="rgb(240,178,43)" fg:x="111838" fg:w="45"/><text x="31.1222%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (252 samples, 0.07%)</title><rect x="30.9161%" y="453" width="0.0696%" height="15" fill="rgb(214,112,2)" fg:x="111997" fg:w="252"/><text x="31.1661%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (248 samples, 0.07%)</title><rect x="30.9172%" y="437" width="0.0685%" height="15" fill="rgb(206,46,17)" fg:x="112001" fg:w="248"/><text x="31.1672%" y="447.50"></text></g><g><title>native_write_msr (245 samples, 0.07%)</title><rect x="30.9180%" y="421" width="0.0676%" height="15" fill="rgb(225,220,16)" fg:x="112004" fg:w="245"/><text x="31.1680%" y="431.50"></text></g><g><title>finish_task_switch (266 samples, 0.07%)</title><rect x="30.9147%" y="469" width="0.0734%" height="15" fill="rgb(238,65,40)" fg:x="111992" fg:w="266"/><text x="31.1647%" y="479.50"></text></g><g><title>futex_wait_queue_me (353 samples, 0.10%)</title><rect x="30.9015%" y="517" width="0.0974%" height="15" fill="rgb(230,151,21)" fg:x="111944" fg:w="353"/><text x="31.1515%" y="527.50"></text></g><g><title>schedule (346 samples, 0.10%)</title><rect x="30.9034%" y="501" width="0.0955%" height="15" fill="rgb(218,58,49)" fg:x="111951" fg:w="346"/><text x="31.1534%" y="511.50"></text></g><g><title>__schedule (343 samples, 0.09%)</title><rect x="30.9042%" y="485" width="0.0947%" height="15" fill="rgb(219,179,14)" fg:x="111954" fg:w="343"/><text x="31.1542%" y="495.50"></text></g><g><title>do_syscall_64 (370 samples, 0.10%)</title><rect x="30.8990%" y="581" width="0.1021%" height="15" fill="rgb(223,72,1)" fg:x="111935" fg:w="370"/><text x="31.1490%" y="591.50"></text></g><g><title>__x64_sys_futex (368 samples, 0.10%)</title><rect x="30.8995%" y="565" width="0.1016%" height="15" fill="rgb(238,126,10)" fg:x="111937" fg:w="368"/><text x="31.1495%" y="575.50"></text></g><g><title>do_futex (367 samples, 0.10%)</title><rect x="30.8998%" y="549" width="0.1013%" height="15" fill="rgb(224,206,38)" fg:x="111938" fg:w="367"/><text x="31.1498%" y="559.50"></text></g><g><title>futex_wait (365 samples, 0.10%)</title><rect x="30.9004%" y="533" width="0.1008%" height="15" fill="rgb(212,201,54)" fg:x="111940" fg:w="365"/><text x="31.1504%" y="543.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (401 samples, 0.11%)</title><rect x="30.8937%" y="645" width="0.1107%" height="15" fill="rgb(218,154,48)" fg:x="111916" fg:w="401"/><text x="31.1437%" y="655.50"></text></g><g><title>futex_wait_simple (390 samples, 0.11%)</title><rect x="30.8968%" y="629" width="0.1077%" height="15" fill="rgb(232,93,24)" fg:x="111927" fg:w="390"/><text x="31.1468%" y="639.50"></text></g><g><title>futex_wait (390 samples, 0.11%)</title><rect x="30.8968%" y="613" width="0.1077%" height="15" fill="rgb(245,30,21)" fg:x="111927" fg:w="390"/><text x="31.1468%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (383 samples, 0.11%)</title><rect x="30.8987%" y="597" width="0.1057%" height="15" fill="rgb(242,148,29)" fg:x="111934" fg:w="383"/><text x="31.1487%" y="607.50"></text></g><g><title>mark_wake_futex (54 samples, 0.01%)</title><rect x="31.0315%" y="549" width="0.0149%" height="15" fill="rgb(244,153,54)" fg:x="112415" fg:w="54"/><text x="31.2815%" y="559.50"></text></g><g><title>_raw_spin_lock (153 samples, 0.04%)</title><rect x="31.0597%" y="517" width="0.0422%" height="15" fill="rgb(252,87,22)" fg:x="112517" fg:w="153"/><text x="31.3097%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (139 samples, 0.04%)</title><rect x="31.0635%" y="501" width="0.0384%" height="15" fill="rgb(210,51,29)" fg:x="112531" fg:w="139"/><text x="31.3135%" y="511.50"></text></g><g><title>available_idle_cpu (47 samples, 0.01%)</title><rect x="31.1298%" y="501" width="0.0130%" height="15" fill="rgb(242,136,47)" fg:x="112771" fg:w="47"/><text x="31.3798%" y="511.50"></text></g><g><title>select_task_rq_fair (197 samples, 0.05%)</title><rect x="31.1074%" y="517" width="0.0544%" height="15" fill="rgb(238,68,4)" fg:x="112690" fg:w="197"/><text x="31.3574%" y="527.50"></text></g><g><title>enqueue_entity (165 samples, 0.05%)</title><rect x="31.1797%" y="485" width="0.0455%" height="15" fill="rgb(242,161,30)" fg:x="112952" fg:w="165"/><text x="31.4297%" y="495.50"></text></g><g><title>update_load_avg (65 samples, 0.02%)</title><rect x="31.2073%" y="469" width="0.0179%" height="15" fill="rgb(218,58,44)" fg:x="113052" fg:w="65"/><text x="31.4573%" y="479.50"></text></g><g><title>enqueue_task_fair (225 samples, 0.06%)</title><rect x="31.1712%" y="501" width="0.0621%" height="15" fill="rgb(252,125,32)" fg:x="112921" fg:w="225"/><text x="31.4212%" y="511.50"></text></g><g><title>ttwu_do_activate (435 samples, 0.12%)</title><rect x="31.1679%" y="517" width="0.1201%" height="15" fill="rgb(219,178,0)" fg:x="112909" fg:w="435"/><text x="31.4179%" y="527.50"></text></g><g><title>psi_task_change (197 samples, 0.05%)</title><rect x="31.2336%" y="501" width="0.0544%" height="15" fill="rgb(213,152,7)" fg:x="113147" fg:w="197"/><text x="31.4836%" y="511.50"></text></g><g><title>psi_group_change (181 samples, 0.05%)</title><rect x="31.2380%" y="485" width="0.0500%" height="15" fill="rgb(249,109,34)" fg:x="113163" fg:w="181"/><text x="31.4880%" y="495.50"></text></g><g><title>__x64_sys_futex (1,043 samples, 0.29%)</title><rect x="31.0174%" y="597" width="0.2879%" height="15" fill="rgb(232,96,21)" fg:x="112364" fg:w="1043"/><text x="31.2674%" y="607.50"></text></g><g><title>do_futex (1,037 samples, 0.29%)</title><rect x="31.0191%" y="581" width="0.2863%" height="15" fill="rgb(228,27,39)" fg:x="112370" fg:w="1037"/><text x="31.2691%" y="591.50"></text></g><g><title>futex_wake (1,035 samples, 0.29%)</title><rect x="31.0196%" y="565" width="0.2857%" height="15" fill="rgb(211,182,52)" fg:x="112372" fg:w="1035"/><text x="31.2696%" y="575.50"></text></g><g><title>wake_up_q (930 samples, 0.26%)</title><rect x="31.0486%" y="549" width="0.2567%" height="15" fill="rgb(234,178,38)" fg:x="112477" fg:w="930"/><text x="31.2986%" y="559.50"></text></g><g><title>try_to_wake_up (915 samples, 0.25%)</title><rect x="31.0527%" y="533" width="0.2526%" height="15" fill="rgb(221,111,3)" fg:x="112492" fg:w="915"/><text x="31.3027%" y="543.50"></text></g><g><title>do_syscall_64 (1,049 samples, 0.29%)</title><rect x="31.0166%" y="613" width="0.2896%" height="15" fill="rgb(228,175,21)" fg:x="112361" fg:w="1049"/><text x="31.2666%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,087 samples, 0.30%)</title><rect x="31.0155%" y="629" width="0.3001%" height="15" fill="rgb(228,174,43)" fg:x="112357" fg:w="1087"/><text x="31.2655%" y="639.50"></text></g><g><title>std::condition_variable::notify_one (1,563 samples, 0.43%)</title><rect x="30.8868%" y="677" width="0.4315%" height="15" fill="rgb(211,191,0)" fg:x="111891" fg:w="1563"/><text x="31.1368%" y="687.50"></text></g><g><title>__pthread_cond_signal (1,560 samples, 0.43%)</title><rect x="30.8877%" y="661" width="0.4306%" height="15" fill="rgb(253,117,3)" fg:x="111894" fg:w="1560"/><text x="31.1377%" y="671.50"></text></g><g><title>futex_wake (1,126 samples, 0.31%)</title><rect x="31.0075%" y="645" width="0.3108%" height="15" fill="rgb(241,127,19)" fg:x="112328" fg:w="1126"/><text x="31.2575%" y="655.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (2,034 samples, 0.56%)</title><rect x="30.7577%" y="693" width="0.5615%" height="15" fill="rgb(218,103,12)" fg:x="111423" fg:w="2034"/><text x="31.0077%" y="703.50"></text></g><g><title>llvm::parallelForEachN (2,061 samples, 0.57%)</title><rect x="30.7568%" y="709" width="0.5689%" height="15" fill="rgb(236,214,43)" fg:x="111420" fg:w="2061"/><text x="31.0068%" y="719.50"></text></g><g><title>__btrfs_unlink_inode (51 samples, 0.01%)</title><rect x="31.3293%" y="565" width="0.0141%" height="15" fill="rgb(244,144,19)" fg:x="113494" fg:w="51"/><text x="31.5793%" y="575.50"></text></g><g><title>do_syscall_64 (76 samples, 0.02%)</title><rect x="31.3285%" y="645" width="0.0210%" height="15" fill="rgb(246,188,10)" fg:x="113491" fg:w="76"/><text x="31.5785%" y="655.50"></text></g><g><title>__x64_sys_rename (76 samples, 0.02%)</title><rect x="31.3285%" y="629" width="0.0210%" height="15" fill="rgb(212,193,33)" fg:x="113491" fg:w="76"/><text x="31.5785%" y="639.50"></text></g><g><title>do_renameat2 (76 samples, 0.02%)</title><rect x="31.3285%" y="613" width="0.0210%" height="15" fill="rgb(241,51,29)" fg:x="113491" fg:w="76"/><text x="31.5785%" y="623.50"></text></g><g><title>vfs_rename (73 samples, 0.02%)</title><rect x="31.3293%" y="597" width="0.0202%" height="15" fill="rgb(211,58,19)" fg:x="113494" fg:w="73"/><text x="31.5793%" y="607.50"></text></g><g><title>btrfs_rename2 (73 samples, 0.02%)</title><rect x="31.3293%" y="581" width="0.0202%" height="15" fill="rgb(229,111,26)" fg:x="113494" fg:w="73"/><text x="31.5793%" y="591.50"></text></g><g><title>llvm::sys::fs::TempFile::keep (87 samples, 0.02%)</title><rect x="31.3258%" y="709" width="0.0240%" height="15" fill="rgb(213,115,40)" fg:x="113481" fg:w="87"/><text x="31.5758%" y="719.50"></text></g><g><title>llvm::sys::fs::rename (80 samples, 0.02%)</title><rect x="31.3277%" y="693" width="0.0221%" height="15" fill="rgb(209,56,44)" fg:x="113488" fg:w="80"/><text x="31.5777%" y="703.50"></text></g><g><title>rename (78 samples, 0.02%)</title><rect x="31.3282%" y="677" width="0.0215%" height="15" fill="rgb(230,108,32)" fg:x="113490" fg:w="78"/><text x="31.5782%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.02%)</title><rect x="31.3285%" y="661" width="0.0213%" height="15" fill="rgb(216,165,31)" fg:x="113491" fg:w="77"/><text x="31.5785%" y="671.50"></text></g><g><title>lld::elf::writeResult&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (2,478 samples, 0.68%)</title><rect x="30.6688%" y="725" width="0.6840%" height="15" fill="rgb(218,122,21)" fg:x="111101" fg:w="2478"/><text x="30.9188%" y="735.50"></text></g><g><title>llvm::FileOutputBuffer::create (75 samples, 0.02%)</title><rect x="31.3545%" y="709" width="0.0207%" height="15" fill="rgb(223,224,47)" fg:x="113585" fg:w="75"/><text x="31.6045%" y="719.50"></text></g><g><title>evict (80 samples, 0.02%)</title><rect x="31.3779%" y="597" width="0.0221%" height="15" fill="rgb(238,102,44)" fg:x="113670" fg:w="80"/><text x="31.6279%" y="607.50"></text></g><g><title>btrfs_evict_inode (80 samples, 0.02%)</title><rect x="31.3779%" y="581" width="0.0221%" height="15" fill="rgb(236,46,40)" fg:x="113670" fg:w="80"/><text x="31.6279%" y="591.50"></text></g><g><title>__btrfs_unlink_inode (37 samples, 0.01%)</title><rect x="31.4003%" y="565" width="0.0102%" height="15" fill="rgb(247,202,50)" fg:x="113751" fg:w="37"/><text x="31.6503%" y="575.50"></text></g><g><title>__GI_remove (130 samples, 0.04%)</title><rect x="31.3774%" y="677" width="0.0359%" height="15" fill="rgb(209,99,20)" fg:x="113668" fg:w="130"/><text x="31.6274%" y="687.50"></text></g><g><title>__unlink (129 samples, 0.04%)</title><rect x="31.3777%" y="661" width="0.0356%" height="15" fill="rgb(252,27,34)" fg:x="113669" fg:w="129"/><text x="31.6277%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (129 samples, 0.04%)</title><rect x="31.3777%" y="645" width="0.0356%" height="15" fill="rgb(215,206,23)" fg:x="113669" fg:w="129"/><text x="31.6277%" y="655.50"></text></g><g><title>do_syscall_64 (129 samples, 0.04%)</title><rect x="31.3777%" y="629" width="0.0356%" height="15" fill="rgb(212,135,36)" fg:x="113669" fg:w="129"/><text x="31.6277%" y="639.50"></text></g><g><title>do_unlinkat (129 samples, 0.04%)</title><rect x="31.3777%" y="613" width="0.0356%" height="15" fill="rgb(240,189,1)" fg:x="113669" fg:w="129"/><text x="31.6277%" y="623.50"></text></g><g><title>vfs_unlink (48 samples, 0.01%)</title><rect x="31.4000%" y="597" width="0.0133%" height="15" fill="rgb(242,56,20)" fg:x="113750" fg:w="48"/><text x="31.6500%" y="607.50"></text></g><g><title>btrfs_unlink (48 samples, 0.01%)</title><rect x="31.4000%" y="581" width="0.0133%" height="15" fill="rgb(247,132,33)" fg:x="113750" fg:w="48"/><text x="31.6500%" y="591.50"></text></g><g><title>lld::tryCreateFile (218 samples, 0.06%)</title><rect x="31.3534%" y="725" width="0.0602%" height="15" fill="rgb(208,149,11)" fg:x="113581" fg:w="218"/><text x="31.6034%" y="735.50"></text></g><g><title>llvm::sys::fs::TempFile::discard (138 samples, 0.04%)</title><rect x="31.3754%" y="709" width="0.0381%" height="15" fill="rgb(211,33,11)" fg:x="113661" fg:w="138"/><text x="31.6254%" y="719.50"></text></g><g><title>llvm::sys::fs::remove (134 samples, 0.04%)</title><rect x="31.3765%" y="693" width="0.0370%" height="15" fill="rgb(221,29,38)" fg:x="113665" fg:w="134"/><text x="31.6265%" y="703.50"></text></g><g><title>lld::elf::LinkerDriver::link (3,891 samples, 1.07%)</title><rect x="30.3400%" y="741" width="1.0741%" height="15" fill="rgb(206,182,49)" fg:x="109910" fg:w="3891"/><text x="30.5900%" y="751.50"></text></g><g><title>llvm::InitializeAllTargets (67 samples, 0.02%)</title><rect x="31.4166%" y="741" width="0.0185%" height="15" fill="rgb(216,140,1)" fg:x="113810" fg:w="67"/><text x="31.6666%" y="751.50"></text></g><g><title>lld::elf::link (4,271 samples, 1.18%)</title><rect x="30.2702%" y="773" width="1.1790%" height="15" fill="rgb(232,57,40)" fg:x="109657" fg:w="4271"/><text x="30.5202%" y="783.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (4,257 samples, 1.18%)</title><rect x="30.2740%" y="757" width="1.1751%" height="15" fill="rgb(224,186,18)" fg:x="109671" fg:w="4257"/><text x="30.5240%" y="767.50"></text></g><g><title>readConfigs (41 samples, 0.01%)</title><rect x="31.4378%" y="741" width="0.0113%" height="15" fill="rgb(215,121,11)" fg:x="113887" fg:w="41"/><text x="31.6878%" y="751.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (69 samples, 0.02%)</title><rect x="31.4552%" y="741" width="0.0190%" height="15" fill="rgb(245,147,10)" fg:x="113950" fg:w="69"/><text x="31.7052%" y="751.50"></text></g><g><title>llvm::llvm_shutdown (107 samples, 0.03%)</title><rect x="31.4491%" y="757" width="0.0295%" height="15" fill="rgb(238,153,13)" fg:x="113928" fg:w="107"/><text x="31.6991%" y="767.50"></text></g><g><title>lldMain (4,387 samples, 1.21%)</title><rect x="30.2702%" y="789" width="1.2110%" height="15" fill="rgb(233,108,0)" fg:x="109657" fg:w="4387"/><text x="30.5202%" y="799.50"></text></g><g><title>lld::exitLld (116 samples, 0.03%)</title><rect x="31.4491%" y="773" width="0.0320%" height="15" fill="rgb(212,157,17)" fg:x="113928" fg:w="116"/><text x="31.6991%" y="783.50"></text></g><g><title>__libc_start_main (4,920 samples, 1.36%)</title><rect x="30.1247%" y="821" width="1.3581%" height="15" fill="rgb(225,213,38)" fg:x="109130" fg:w="4920"/><text x="30.3747%" y="831.50"></text></g><g><title>main (4,394 samples, 1.21%)</title><rect x="30.2699%" y="805" width="1.2129%" height="15" fill="rgb(248,16,11)" fg:x="109656" fg:w="4394"/><text x="30.5199%" y="815.50"></text></g><g><title>ksys_mmap_pgoff (57 samples, 0.02%)</title><rect x="31.4936%" y="597" width="0.0157%" height="15" fill="rgb(241,33,4)" fg:x="114089" fg:w="57"/><text x="31.7436%" y="607.50"></text></g><g><title>vm_mmap_pgoff (56 samples, 0.02%)</title><rect x="31.4939%" y="581" width="0.0155%" height="15" fill="rgb(222,26,43)" fg:x="114090" fg:w="56"/><text x="31.7439%" y="591.50"></text></g><g><title>do_mmap (56 samples, 0.02%)</title><rect x="31.4939%" y="565" width="0.0155%" height="15" fill="rgb(243,29,36)" fg:x="114090" fg:w="56"/><text x="31.7439%" y="575.50"></text></g><g><title>mmap_region (55 samples, 0.02%)</title><rect x="31.4941%" y="549" width="0.0152%" height="15" fill="rgb(241,9,27)" fg:x="114091" fg:w="55"/><text x="31.7441%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.02%)</title><rect x="31.4936%" y="629" width="0.0168%" height="15" fill="rgb(205,117,26)" fg:x="114089" fg:w="61"/><text x="31.7436%" y="639.50"></text></g><g><title>do_syscall_64 (61 samples, 0.02%)</title><rect x="31.4936%" y="613" width="0.0168%" height="15" fill="rgb(209,80,39)" fg:x="114089" fg:w="61"/><text x="31.7436%" y="623.50"></text></g><g><title>_dl_map_segments (71 samples, 0.02%)</title><rect x="31.4914%" y="677" width="0.0196%" height="15" fill="rgb(239,155,6)" fg:x="114081" fg:w="71"/><text x="31.7414%" y="687.50"></text></g><g><title>__mmap64 (64 samples, 0.02%)</title><rect x="31.4933%" y="661" width="0.0177%" height="15" fill="rgb(212,104,12)" fg:x="114088" fg:w="64"/><text x="31.7433%" y="671.50"></text></g><g><title>__mmap64 (64 samples, 0.02%)</title><rect x="31.4933%" y="645" width="0.0177%" height="15" fill="rgb(234,204,3)" fg:x="114088" fg:w="64"/><text x="31.7433%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (88 samples, 0.02%)</title><rect x="31.4903%" y="693" width="0.0243%" height="15" fill="rgb(251,218,7)" fg:x="114077" fg:w="88"/><text x="31.7403%" y="703.50"></text></g><g><title>_dl_catch_exception (144 samples, 0.04%)</title><rect x="31.4864%" y="741" width="0.0398%" height="15" fill="rgb(221,81,32)" fg:x="114063" fg:w="144"/><text x="31.7364%" y="751.50"></text></g><g><title>openaux (144 samples, 0.04%)</title><rect x="31.4864%" y="725" width="0.0398%" height="15" fill="rgb(214,152,26)" fg:x="114063" fg:w="144"/><text x="31.7364%" y="735.50"></text></g><g><title>_dl_map_object (144 samples, 0.04%)</title><rect x="31.4864%" y="709" width="0.0398%" height="15" fill="rgb(223,22,3)" fg:x="114063" fg:w="144"/><text x="31.7364%" y="719.50"></text></g><g><title>_dl_map_object_deps (146 samples, 0.04%)</title><rect x="31.4861%" y="757" width="0.0403%" height="15" fill="rgb(207,174,7)" fg:x="114062" fg:w="146"/><text x="31.7361%" y="767.50"></text></g><g><title>dl_new_hash (42 samples, 0.01%)</title><rect x="31.5513%" y="693" width="0.0116%" height="15" fill="rgb(224,19,52)" fg:x="114298" fg:w="42"/><text x="31.8013%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (167 samples, 0.05%)</title><rect x="31.5494%" y="709" width="0.0461%" height="15" fill="rgb(228,24,14)" fg:x="114291" fg:w="167"/><text x="31.7994%" y="719.50"></text></g><g><title>do_lookup_x (118 samples, 0.03%)</title><rect x="31.5629%" y="693" width="0.0326%" height="15" fill="rgb(230,153,43)" fg:x="114340" fg:w="118"/><text x="31.8129%" y="703.50"></text></g><g><title>asm_exc_page_fault (48 samples, 0.01%)</title><rect x="31.5955%" y="709" width="0.0133%" height="15" fill="rgb(231,106,12)" fg:x="114458" fg:w="48"/><text x="31.8455%" y="719.50"></text></g><g><title>exc_page_fault (48 samples, 0.01%)</title><rect x="31.5955%" y="693" width="0.0133%" height="15" fill="rgb(215,92,2)" fg:x="114458" fg:w="48"/><text x="31.8455%" y="703.50"></text></g><g><title>do_user_addr_fault (48 samples, 0.01%)</title><rect x="31.5955%" y="677" width="0.0133%" height="15" fill="rgb(249,143,25)" fg:x="114458" fg:w="48"/><text x="31.8455%" y="687.50"></text></g><g><title>handle_mm_fault (46 samples, 0.01%)</title><rect x="31.5960%" y="661" width="0.0127%" height="15" fill="rgb(252,7,35)" fg:x="114460" fg:w="46"/><text x="31.8460%" y="671.50"></text></g><g><title>elf_machine_rela (261 samples, 0.07%)</title><rect x="31.5386%" y="725" width="0.0720%" height="15" fill="rgb(216,69,40)" fg:x="114252" fg:w="261"/><text x="31.7886%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (290 samples, 0.08%)</title><rect x="31.5325%" y="741" width="0.0801%" height="15" fill="rgb(240,36,33)" fg:x="114230" fg:w="290"/><text x="31.7825%" y="751.50"></text></g><g><title>_dl_relocate_object (307 samples, 0.08%)</title><rect x="31.5286%" y="757" width="0.0847%" height="15" fill="rgb(231,128,14)" fg:x="114216" fg:w="307"/><text x="31.7786%" y="767.50"></text></g><g><title>[ld-2.31.so] (481 samples, 0.13%)</title><rect x="31.4831%" y="773" width="0.1328%" height="15" fill="rgb(245,143,14)" fg:x="114051" fg:w="481"/><text x="31.7331%" y="783.50"></text></g><g><title>_dl_start_final (491 samples, 0.14%)</title><rect x="31.4828%" y="805" width="0.1355%" height="15" fill="rgb(222,130,28)" fg:x="114050" fg:w="491"/><text x="31.7328%" y="815.50"></text></g><g><title>_dl_sysdep_start (491 samples, 0.14%)</title><rect x="31.4828%" y="789" width="0.1355%" height="15" fill="rgb(212,10,48)" fg:x="114050" fg:w="491"/><text x="31.7328%" y="799.50"></text></g><g><title>_dl_start (493 samples, 0.14%)</title><rect x="31.4828%" y="821" width="0.1361%" height="15" fill="rgb(254,118,45)" fg:x="114050" fg:w="493"/><text x="31.7328%" y="831.50"></text></g><g><title>_start (5,416 samples, 1.50%)</title><rect x="30.1247%" y="837" width="1.4951%" height="15" fill="rgb(228,6,45)" fg:x="109130" fg:w="5416"/><text x="30.3747%" y="847.50"></text></g><g><title>asm_exc_page_fault (136 samples, 0.04%)</title><rect x="31.6197%" y="837" width="0.0375%" height="15" fill="rgb(241,18,35)" fg:x="114546" fg:w="136"/><text x="31.8697%" y="847.50"></text></g><g><title>page_remove_rmap (86 samples, 0.02%)</title><rect x="31.6957%" y="693" width="0.0237%" height="15" fill="rgb(227,214,53)" fg:x="114821" fg:w="86"/><text x="31.9457%" y="703.50"></text></g><g><title>tlb_flush_mmu (55 samples, 0.02%)</title><rect x="31.7194%" y="693" width="0.0152%" height="15" fill="rgb(224,107,51)" fg:x="114907" fg:w="55"/><text x="31.9694%" y="703.50"></text></g><g><title>release_pages (41 samples, 0.01%)</title><rect x="31.7233%" y="677" width="0.0113%" height="15" fill="rgb(248,60,28)" fg:x="114921" fg:w="41"/><text x="31.9733%" y="687.50"></text></g><g><title>mmput (231 samples, 0.06%)</title><rect x="31.6738%" y="757" width="0.0638%" height="15" fill="rgb(249,101,23)" fg:x="114742" fg:w="231"/><text x="31.9238%" y="767.50"></text></g><g><title>exit_mmap (231 samples, 0.06%)</title><rect x="31.6738%" y="741" width="0.0638%" height="15" fill="rgb(228,51,19)" fg:x="114742" fg:w="231"/><text x="31.9238%" y="751.50"></text></g><g><title>unmap_vmas (215 samples, 0.06%)</title><rect x="31.6783%" y="725" width="0.0593%" height="15" fill="rgb(213,20,6)" fg:x="114758" fg:w="215"/><text x="31.9283%" y="735.50"></text></g><g><title>unmap_page_range (215 samples, 0.06%)</title><rect x="31.6783%" y="709" width="0.0593%" height="15" fill="rgb(212,124,10)" fg:x="114758" fg:w="215"/><text x="31.9283%" y="719.50"></text></g><g><title>__x64_sys_exit_group (249 samples, 0.07%)</title><rect x="31.6697%" y="805" width="0.0687%" height="15" fill="rgb(248,3,40)" fg:x="114727" fg:w="249"/><text x="31.9197%" y="815.50"></text></g><g><title>do_group_exit (249 samples, 0.07%)</title><rect x="31.6697%" y="789" width="0.0687%" height="15" fill="rgb(223,178,23)" fg:x="114727" fg:w="249"/><text x="31.9197%" y="799.50"></text></g><g><title>do_exit (249 samples, 0.07%)</title><rect x="31.6697%" y="773" width="0.0687%" height="15" fill="rgb(240,132,45)" fg:x="114727" fg:w="249"/><text x="31.9197%" y="783.50"></text></g><g><title>do_syscall_64 (298 samples, 0.08%)</title><rect x="31.6603%" y="821" width="0.0823%" height="15" fill="rgb(245,164,36)" fg:x="114693" fg:w="298"/><text x="31.9103%" y="831.50"></text></g><g><title>page_remove_rmap (57 samples, 0.02%)</title><rect x="31.7688%" y="661" width="0.0157%" height="15" fill="rgb(231,188,53)" fg:x="115086" fg:w="57"/><text x="32.0188%" y="671.50"></text></g><g><title>tlb_flush_mmu (38 samples, 0.01%)</title><rect x="31.7845%" y="661" width="0.0105%" height="15" fill="rgb(237,198,39)" fg:x="115143" fg:w="38"/><text x="32.0345%" y="671.50"></text></g><g><title>unmap_page_range (188 samples, 0.05%)</title><rect x="31.7473%" y="677" width="0.0519%" height="15" fill="rgb(223,120,35)" fg:x="115008" fg:w="188"/><text x="31.9973%" y="687.50"></text></g><g><title>mmput (203 samples, 0.06%)</title><rect x="31.7434%" y="725" width="0.0560%" height="15" fill="rgb(253,107,49)" fg:x="114994" fg:w="203"/><text x="31.9934%" y="735.50"></text></g><g><title>exit_mmap (203 samples, 0.06%)</title><rect x="31.7434%" y="709" width="0.0560%" height="15" fill="rgb(216,44,31)" fg:x="114994" fg:w="203"/><text x="31.9934%" y="719.50"></text></g><g><title>unmap_vmas (189 samples, 0.05%)</title><rect x="31.7473%" y="693" width="0.0522%" height="15" fill="rgb(253,87,21)" fg:x="115008" fg:w="189"/><text x="31.9973%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (512 samples, 0.14%)</title><rect x="31.6584%" y="837" width="0.1413%" height="15" fill="rgb(226,18,2)" fg:x="114686" fg:w="512"/><text x="31.9084%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (207 samples, 0.06%)</title><rect x="31.7426%" y="821" width="0.0571%" height="15" fill="rgb(216,8,46)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (207 samples, 0.06%)</title><rect x="31.7426%" y="805" width="0.0571%" height="15" fill="rgb(226,140,39)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="815.50"></text></g><g><title>arch_do_signal (207 samples, 0.06%)</title><rect x="31.7426%" y="789" width="0.0571%" height="15" fill="rgb(221,194,54)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="799.50"></text></g><g><title>get_signal (207 samples, 0.06%)</title><rect x="31.7426%" y="773" width="0.0571%" height="15" fill="rgb(213,92,11)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="783.50"></text></g><g><title>do_group_exit (207 samples, 0.06%)</title><rect x="31.7426%" y="757" width="0.0571%" height="15" fill="rgb(229,162,46)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="767.50"></text></g><g><title>do_exit (207 samples, 0.06%)</title><rect x="31.7426%" y="741" width="0.0571%" height="15" fill="rgb(214,111,36)" fg:x="114991" fg:w="207"/><text x="31.9926%" y="751.50"></text></g><g><title>ld.lld (12,978 samples, 3.58%)</title><rect x="28.2352%" y="853" width="3.5825%" height="15" fill="rgb(207,6,21)" fg:x="102285" fg:w="12978"/><text x="28.4852%" y="863.50">ld.l..</text></g><g><title>[[heap]] (46 samples, 0.01%)</title><rect x="31.8177%" y="837" width="0.0127%" height="15" fill="rgb(213,127,38)" fg:x="115263" fg:w="46"/><text x="32.0677%" y="847.50"></text></g><g><title>[[stack]] (43 samples, 0.01%)</title><rect x="31.8304%" y="837" width="0.0119%" height="15" fill="rgb(238,118,32)" fg:x="115309" fg:w="43"/><text x="32.0804%" y="847.50"></text></g><g><title>[bash] (94 samples, 0.03%)</title><rect x="31.8505%" y="821" width="0.0259%" height="15" fill="rgb(240,139,39)" fg:x="115382" fg:w="94"/><text x="32.1005%" y="831.50"></text></g><g><title>arch_fork (44 samples, 0.01%)</title><rect x="31.8922%" y="101" width="0.0121%" height="15" fill="rgb(235,10,37)" fg:x="115533" fg:w="44"/><text x="32.1422%" y="111.50"></text></g><g><title>__libc_fork (46 samples, 0.01%)</title><rect x="31.8919%" y="117" width="0.0127%" height="15" fill="rgb(249,171,38)" fg:x="115532" fg:w="46"/><text x="32.1419%" y="127.50"></text></g><g><title>make_child (47 samples, 0.01%)</title><rect x="31.8919%" y="133" width="0.0130%" height="15" fill="rgb(242,144,32)" fg:x="115532" fg:w="47"/><text x="32.1419%" y="143.50"></text></g><g><title>execute_command (53 samples, 0.01%)</title><rect x="31.8905%" y="789" width="0.0146%" height="15" fill="rgb(217,117,21)" fg:x="115527" fg:w="53"/><text x="32.1405%" y="799.50"></text></g><g><title>execute_command_internal (53 samples, 0.01%)</title><rect x="31.8905%" y="773" width="0.0146%" height="15" fill="rgb(249,87,1)" fg:x="115527" fg:w="53"/><text x="32.1405%" y="783.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="757" width="0.0133%" height="15" fill="rgb(248,196,48)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="767.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="741" width="0.0133%" height="15" fill="rgb(251,206,33)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="751.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="725" width="0.0133%" height="15" fill="rgb(232,141,28)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="735.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="709" width="0.0133%" height="15" fill="rgb(209,167,14)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="719.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="693" width="0.0133%" height="15" fill="rgb(225,11,50)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="703.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="677" width="0.0133%" height="15" fill="rgb(209,50,20)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="687.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="661" width="0.0133%" height="15" fill="rgb(212,17,46)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="671.50"></text></g><g><title>execute_command (48 samples, 0.01%)</title><rect x="31.8919%" y="645" width="0.0133%" height="15" fill="rgb(216,101,39)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="655.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="629" width="0.0133%" height="15" fill="rgb(212,228,48)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="639.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="613" width="0.0133%" height="15" fill="rgb(250,6,50)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="623.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="597" width="0.0133%" height="15" fill="rgb(250,160,48)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="607.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="581" width="0.0133%" height="15" fill="rgb(244,216,33)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="591.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="565" width="0.0133%" height="15" fill="rgb(207,157,5)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="575.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="549" width="0.0133%" height="15" fill="rgb(228,199,8)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="559.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="533" width="0.0133%" height="15" fill="rgb(227,80,20)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="543.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="517" width="0.0133%" height="15" fill="rgb(222,9,33)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="527.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="501" width="0.0133%" height="15" fill="rgb(239,44,28)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="511.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="485" width="0.0133%" height="15" fill="rgb(249,187,43)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="495.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="469" width="0.0133%" height="15" fill="rgb(216,141,28)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="479.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="453" width="0.0133%" height="15" fill="rgb(230,154,53)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="463.50"></text></g><g><title>execute_command (48 samples, 0.01%)</title><rect x="31.8919%" y="437" width="0.0133%" height="15" fill="rgb(227,82,4)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="447.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="421" width="0.0133%" height="15" fill="rgb(220,107,16)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="431.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="405" width="0.0133%" height="15" fill="rgb(207,187,2)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="415.50"></text></g><g><title>execute_command (48 samples, 0.01%)</title><rect x="31.8919%" y="389" width="0.0133%" height="15" fill="rgb(210,162,52)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="399.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="373" width="0.0133%" height="15" fill="rgb(217,216,49)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="383.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="357" width="0.0133%" height="15" fill="rgb(218,146,49)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="367.50"></text></g><g><title>execute_command (48 samples, 0.01%)</title><rect x="31.8919%" y="341" width="0.0133%" height="15" fill="rgb(216,55,40)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="351.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="325" width="0.0133%" height="15" fill="rgb(208,196,21)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="335.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="309" width="0.0133%" height="15" fill="rgb(242,117,42)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="319.50"></text></g><g><title>execute_command (48 samples, 0.01%)</title><rect x="31.8919%" y="293" width="0.0133%" height="15" fill="rgb(210,11,23)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="303.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="277" width="0.0133%" height="15" fill="rgb(217,110,2)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="287.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="261" width="0.0133%" height="15" fill="rgb(229,77,54)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="271.50"></text></g><g><title>execute_command_internal (48 samples, 0.01%)</title><rect x="31.8919%" y="245" width="0.0133%" height="15" fill="rgb(218,53,16)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="255.50"></text></g><g><title>expand_words (48 samples, 0.01%)</title><rect x="31.8919%" y="229" width="0.0133%" height="15" fill="rgb(215,38,13)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="239.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="213" width="0.0133%" height="15" fill="rgb(235,42,18)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="223.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="197" width="0.0133%" height="15" fill="rgb(219,66,54)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="207.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="181" width="0.0133%" height="15" fill="rgb(222,205,4)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="191.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="31.8919%" y="165" width="0.0133%" height="15" fill="rgb(227,213,46)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="175.50"></text></g><g><title>command_substitute (48 samples, 0.01%)</title><rect x="31.8919%" y="149" width="0.0133%" height="15" fill="rgb(250,145,42)" fg:x="115532" fg:w="48"/><text x="32.1419%" y="159.50"></text></g><g><title>execute_command (64 samples, 0.02%)</title><rect x="31.9082%" y="741" width="0.0177%" height="15" fill="rgb(219,15,2)" fg:x="115591" fg:w="64"/><text x="32.1582%" y="751.50"></text></g><g><title>execute_command_internal (64 samples, 0.02%)</title><rect x="31.9082%" y="725" width="0.0177%" height="15" fill="rgb(231,181,52)" fg:x="115591" fg:w="64"/><text x="32.1582%" y="735.50"></text></g><g><title>[bash] (64 samples, 0.02%)</title><rect x="31.9082%" y="709" width="0.0177%" height="15" fill="rgb(235,1,42)" fg:x="115591" fg:w="64"/><text x="32.1582%" y="719.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="693" width="0.0152%" height="15" fill="rgb(249,88,27)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="703.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="677" width="0.0152%" height="15" fill="rgb(235,145,16)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="687.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="661" width="0.0152%" height="15" fill="rgb(237,114,19)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="671.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="645" width="0.0152%" height="15" fill="rgb(238,51,50)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="655.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="629" width="0.0152%" height="15" fill="rgb(205,194,25)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="639.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="613" width="0.0152%" height="15" fill="rgb(215,203,17)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="623.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="597" width="0.0152%" height="15" fill="rgb(233,112,49)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="607.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="581" width="0.0152%" height="15" fill="rgb(241,130,26)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="591.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="565" width="0.0152%" height="15" fill="rgb(252,223,19)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="575.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="549" width="0.0152%" height="15" fill="rgb(211,95,25)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="559.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="31.9107%" y="533" width="0.0152%" height="15" fill="rgb(251,182,27)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="543.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="517" width="0.0152%" height="15" fill="rgb(238,24,4)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="527.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="501" width="0.0152%" height="15" fill="rgb(224,220,25)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="511.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="31.9107%" y="485" width="0.0152%" height="15" fill="rgb(239,133,26)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="495.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="469" width="0.0152%" height="15" fill="rgb(211,94,48)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="479.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="453" width="0.0152%" height="15" fill="rgb(239,87,6)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="463.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="31.9107%" y="437" width="0.0152%" height="15" fill="rgb(227,62,0)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="447.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="421" width="0.0152%" height="15" fill="rgb(211,226,4)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="431.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="405" width="0.0152%" height="15" fill="rgb(253,38,52)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="415.50"></text></g><g><title>execute_command (55 samples, 0.02%)</title><rect x="31.9107%" y="389" width="0.0152%" height="15" fill="rgb(229,126,40)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="399.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="373" width="0.0152%" height="15" fill="rgb(229,165,44)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="383.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="357" width="0.0152%" height="15" fill="rgb(247,95,47)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="367.50"></text></g><g><title>execute_command_internal (55 samples, 0.02%)</title><rect x="31.9107%" y="341" width="0.0152%" height="15" fill="rgb(216,140,30)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="351.50"></text></g><g><title>expand_words (55 samples, 0.02%)</title><rect x="31.9107%" y="325" width="0.0152%" height="15" fill="rgb(246,214,8)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="335.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="309" width="0.0152%" height="15" fill="rgb(227,224,15)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="319.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="293" width="0.0152%" height="15" fill="rgb(233,175,4)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="303.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="277" width="0.0152%" height="15" fill="rgb(221,66,45)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="287.50"></text></g><g><title>[bash] (55 samples, 0.02%)</title><rect x="31.9107%" y="261" width="0.0152%" height="15" fill="rgb(221,178,18)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="271.50"></text></g><g><title>command_substitute (55 samples, 0.02%)</title><rect x="31.9107%" y="245" width="0.0152%" height="15" fill="rgb(213,81,29)" fg:x="115600" fg:w="55"/><text x="32.1607%" y="255.50"></text></g><g><title>parse_and_execute (54 samples, 0.01%)</title><rect x="31.9110%" y="229" width="0.0149%" height="15" fill="rgb(220,89,49)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="239.50"></text></g><g><title>execute_command_internal (54 samples, 0.01%)</title><rect x="31.9110%" y="213" width="0.0149%" height="15" fill="rgb(227,60,33)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="223.50"></text></g><g><title>[bash] (54 samples, 0.01%)</title><rect x="31.9110%" y="197" width="0.0149%" height="15" fill="rgb(205,113,12)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="207.50"></text></g><g><title>[bash] (54 samples, 0.01%)</title><rect x="31.9110%" y="181" width="0.0149%" height="15" fill="rgb(211,32,1)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="191.50"></text></g><g><title>execute_command_internal (54 samples, 0.01%)</title><rect x="31.9110%" y="165" width="0.0149%" height="15" fill="rgb(246,2,12)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="175.50"></text></g><g><title>[bash] (54 samples, 0.01%)</title><rect x="31.9110%" y="149" width="0.0149%" height="15" fill="rgb(243,37,27)" fg:x="115601" fg:w="54"/><text x="32.1610%" y="159.50"></text></g><g><title>shell_execve (38 samples, 0.01%)</title><rect x="31.9154%" y="133" width="0.0105%" height="15" fill="rgb(248,211,31)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="143.50"></text></g><g><title>__GI_execve (38 samples, 0.01%)</title><rect x="31.9154%" y="117" width="0.0105%" height="15" fill="rgb(242,146,47)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="127.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="31.9154%" y="101" width="0.0105%" height="15" fill="rgb(206,70,20)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="111.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="31.9154%" y="85" width="0.0105%" height="15" fill="rgb(215,10,51)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="95.50"></text></g><g><title>__x64_sys_execve (38 samples, 0.01%)</title><rect x="31.9154%" y="69" width="0.0105%" height="15" fill="rgb(243,178,53)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="79.50"></text></g><g><title>do_execveat_common (38 samples, 0.01%)</title><rect x="31.9154%" y="53" width="0.0105%" height="15" fill="rgb(233,221,20)" fg:x="115617" fg:w="38"/><text x="32.1654%" y="63.50"></text></g><g><title>bprm_execve (37 samples, 0.01%)</title><rect x="31.9157%" y="37" width="0.0102%" height="15" fill="rgb(218,95,35)" fg:x="115618" fg:w="37"/><text x="32.1657%" y="47.50"></text></g><g><title>[bash] (134 samples, 0.04%)</title><rect x="31.8903%" y="805" width="0.0370%" height="15" fill="rgb(229,13,5)" fg:x="115526" fg:w="134"/><text x="32.1403%" y="815.50"></text></g><g><title>execute_command_internal (80 samples, 0.02%)</title><rect x="31.9052%" y="789" width="0.0221%" height="15" fill="rgb(252,164,30)" fg:x="115580" fg:w="80"/><text x="32.1552%" y="799.50"></text></g><g><title>execute_command_internal (69 samples, 0.02%)</title><rect x="31.9082%" y="773" width="0.0190%" height="15" fill="rgb(232,68,36)" fg:x="115591" fg:w="69"/><text x="32.1582%" y="783.50"></text></g><g><title>[bash] (69 samples, 0.02%)</title><rect x="31.9082%" y="757" width="0.0190%" height="15" fill="rgb(219,59,54)" fg:x="115591" fg:w="69"/><text x="32.1582%" y="767.50"></text></g><g><title>arch_fork (52 samples, 0.01%)</title><rect x="31.9306%" y="149" width="0.0144%" height="15" fill="rgb(250,92,33)" fg:x="115672" fg:w="52"/><text x="32.1806%" y="159.50"></text></g><g><title>make_child (54 samples, 0.01%)</title><rect x="31.9306%" y="181" width="0.0149%" height="15" fill="rgb(229,162,54)" fg:x="115672" fg:w="54"/><text x="32.1806%" y="191.50"></text></g><g><title>__libc_fork (54 samples, 0.01%)</title><rect x="31.9306%" y="165" width="0.0149%" height="15" fill="rgb(244,114,52)" fg:x="115672" fg:w="54"/><text x="32.1806%" y="175.50"></text></g><g><title>execute_command (67 samples, 0.02%)</title><rect x="31.9278%" y="773" width="0.0185%" height="15" fill="rgb(212,211,43)" fg:x="115662" fg:w="67"/><text x="32.1778%" y="783.50"></text></g><g><title>execute_command_internal (67 samples, 0.02%)</title><rect x="31.9278%" y="757" width="0.0185%" height="15" fill="rgb(226,147,8)" fg:x="115662" fg:w="67"/><text x="32.1778%" y="767.50"></text></g><g><title>[bash] (67 samples, 0.02%)</title><rect x="31.9278%" y="741" width="0.0185%" height="15" fill="rgb(226,23,13)" fg:x="115662" fg:w="67"/><text x="32.1778%" y="751.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="725" width="0.0179%" height="15" fill="rgb(240,63,4)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="735.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="709" width="0.0179%" height="15" fill="rgb(221,1,32)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="719.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="693" width="0.0179%" height="15" fill="rgb(242,117,10)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="703.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="677" width="0.0179%" height="15" fill="rgb(249,172,44)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="687.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="661" width="0.0179%" height="15" fill="rgb(244,46,45)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="671.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="645" width="0.0179%" height="15" fill="rgb(206,43,17)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="655.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="629" width="0.0179%" height="15" fill="rgb(239,218,39)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="639.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="613" width="0.0179%" height="15" fill="rgb(208,169,54)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="623.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="597" width="0.0179%" height="15" fill="rgb(247,25,42)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="607.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="581" width="0.0179%" height="15" fill="rgb(226,23,31)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="591.50"></text></g><g><title>execute_command (65 samples, 0.02%)</title><rect x="31.9284%" y="565" width="0.0179%" height="15" fill="rgb(247,16,28)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="575.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="549" width="0.0179%" height="15" fill="rgb(231,147,38)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="559.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="533" width="0.0179%" height="15" fill="rgb(253,81,48)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="543.50"></text></g><g><title>execute_command (65 samples, 0.02%)</title><rect x="31.9284%" y="517" width="0.0179%" height="15" fill="rgb(249,222,43)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="527.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="501" width="0.0179%" height="15" fill="rgb(221,3,27)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="511.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="485" width="0.0179%" height="15" fill="rgb(228,180,5)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="495.50"></text></g><g><title>execute_command (65 samples, 0.02%)</title><rect x="31.9284%" y="469" width="0.0179%" height="15" fill="rgb(227,131,42)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="479.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="453" width="0.0179%" height="15" fill="rgb(212,3,39)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="463.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="437" width="0.0179%" height="15" fill="rgb(226,45,5)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="447.50"></text></g><g><title>execute_command (65 samples, 0.02%)</title><rect x="31.9284%" y="421" width="0.0179%" height="15" fill="rgb(215,167,45)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="431.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="405" width="0.0179%" height="15" fill="rgb(250,218,53)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="415.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="389" width="0.0179%" height="15" fill="rgb(207,140,0)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="399.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="373" width="0.0179%" height="15" fill="rgb(238,133,51)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="383.50"></text></g><g><title>expand_words (65 samples, 0.02%)</title><rect x="31.9284%" y="357" width="0.0179%" height="15" fill="rgb(218,203,53)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="367.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="341" width="0.0179%" height="15" fill="rgb(226,184,25)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="351.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="325" width="0.0179%" height="15" fill="rgb(231,121,21)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="335.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="309" width="0.0179%" height="15" fill="rgb(251,14,34)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="319.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="293" width="0.0179%" height="15" fill="rgb(249,193,11)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="303.50"></text></g><g><title>command_substitute (65 samples, 0.02%)</title><rect x="31.9284%" y="277" width="0.0179%" height="15" fill="rgb(220,172,37)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="287.50"></text></g><g><title>parse_and_execute (65 samples, 0.02%)</title><rect x="31.9284%" y="261" width="0.0179%" height="15" fill="rgb(231,229,43)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="271.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="245" width="0.0179%" height="15" fill="rgb(250,161,5)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="255.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="229" width="0.0179%" height="15" fill="rgb(218,225,18)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="239.50"></text></g><g><title>[bash] (65 samples, 0.02%)</title><rect x="31.9284%" y="213" width="0.0179%" height="15" fill="rgb(245,45,42)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="223.50"></text></g><g><title>execute_command_internal (65 samples, 0.02%)</title><rect x="31.9284%" y="197" width="0.0179%" height="15" fill="rgb(211,115,1)" fg:x="115664" fg:w="65"/><text x="32.1784%" y="207.50"></text></g><g><title>execute_command_internal (206 samples, 0.06%)</title><rect x="31.8900%" y="821" width="0.0569%" height="15" fill="rgb(248,133,52)" fg:x="115525" fg:w="206"/><text x="32.1400%" y="831.50"></text></g><g><title>execute_command_internal (69 samples, 0.02%)</title><rect x="31.9278%" y="805" width="0.0190%" height="15" fill="rgb(238,100,21)" fg:x="115662" fg:w="69"/><text x="32.1778%" y="815.50"></text></g><g><title>[bash] (69 samples, 0.02%)</title><rect x="31.9278%" y="789" width="0.0190%" height="15" fill="rgb(247,144,11)" fg:x="115662" fg:w="69"/><text x="32.1778%" y="799.50"></text></g><g><title>main (41 samples, 0.01%)</title><rect x="31.9474%" y="821" width="0.0113%" height="15" fill="rgb(206,164,16)" fg:x="115733" fg:w="41"/><text x="32.1974%" y="831.50"></text></g><g><title>reader_loop (41 samples, 0.01%)</title><rect x="31.9474%" y="805" width="0.0113%" height="15" fill="rgb(222,34,3)" fg:x="115733" fg:w="41"/><text x="32.1974%" y="815.50"></text></g><g><title>execute_command (41 samples, 0.01%)</title><rect x="31.9474%" y="789" width="0.0113%" height="15" fill="rgb(248,82,4)" fg:x="115733" fg:w="41"/><text x="32.1974%" y="799.50"></text></g><g><title>execute_command_internal (41 samples, 0.01%)</title><rect x="31.9474%" y="773" width="0.0113%" height="15" fill="rgb(228,81,46)" fg:x="115733" fg:w="41"/><text x="32.1974%" y="783.50"></text></g><g><title>[bash] (41 samples, 0.01%)</title><rect x="31.9474%" y="757" width="0.0113%" height="15" fill="rgb(227,67,47)" fg:x="115733" fg:w="41"/><text x="32.1974%" y="767.50"></text></g><g><title>[unknown] (406 samples, 0.11%)</title><rect x="31.8505%" y="837" width="0.1121%" height="15" fill="rgb(215,93,53)" fg:x="115382" fg:w="406"/><text x="32.1005%" y="847.50"></text></g><g><title>__libc_fork (37 samples, 0.01%)</title><rect x="31.9921%" y="677" width="0.0102%" height="15" fill="rgb(248,194,39)" fg:x="115895" fg:w="37"/><text x="32.2421%" y="687.50"></text></g><g><title>make_child (40 samples, 0.01%)</title><rect x="31.9921%" y="693" width="0.0110%" height="15" fill="rgb(215,5,19)" fg:x="115895" fg:w="40"/><text x="32.2421%" y="703.50"></text></g><g><title>execute_command (98 samples, 0.03%)</title><rect x="31.9794%" y="725" width="0.0271%" height="15" fill="rgb(226,215,51)" fg:x="115849" fg:w="98"/><text x="32.2294%" y="735.50"></text></g><g><title>execute_command_internal (98 samples, 0.03%)</title><rect x="31.9794%" y="709" width="0.0271%" height="15" fill="rgb(225,56,26)" fg:x="115849" fg:w="98"/><text x="32.2294%" y="719.50"></text></g><g><title>[bash] (144 samples, 0.04%)</title><rect x="31.9783%" y="741" width="0.0398%" height="15" fill="rgb(222,75,29)" fg:x="115845" fg:w="144"/><text x="32.2283%" y="751.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0291%" y="485" width="0.0102%" height="15" fill="rgb(236,139,6)" fg:x="116029" fg:w="37"/><text x="32.2791%" y="495.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0291%" y="469" width="0.0102%" height="15" fill="rgb(223,137,36)" fg:x="116029" fg:w="37"/><text x="32.2791%" y="479.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0291%" y="453" width="0.0102%" height="15" fill="rgb(226,99,2)" fg:x="116029" fg:w="37"/><text x="32.2791%" y="463.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0291%" y="437" width="0.0102%" height="15" fill="rgb(206,133,23)" fg:x="116029" fg:w="37"/><text x="32.2791%" y="447.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0291%" y="421" width="0.0102%" height="15" fill="rgb(243,173,15)" fg:x="116029" fg:w="37"/><text x="32.2791%" y="431.50"></text></g><g><title>copy_command (42 samples, 0.01%)</title><rect x="32.0286%" y="517" width="0.0116%" height="15" fill="rgb(228,69,28)" fg:x="116027" fg:w="42"/><text x="32.2786%" y="527.50"></text></g><g><title>copy_command (42 samples, 0.01%)</title><rect x="32.0286%" y="501" width="0.0116%" height="15" fill="rgb(212,51,22)" fg:x="116027" fg:w="42"/><text x="32.2786%" y="511.50"></text></g><g><title>copy_command (43 samples, 0.01%)</title><rect x="32.0286%" y="533" width="0.0119%" height="15" fill="rgb(227,113,0)" fg:x="116027" fg:w="43"/><text x="32.2786%" y="543.50"></text></g><g><title>copy_command (46 samples, 0.01%)</title><rect x="32.0280%" y="549" width="0.0127%" height="15" fill="rgb(252,84,27)" fg:x="116025" fg:w="46"/><text x="32.2780%" y="559.50"></text></g><g><title>copy_command (48 samples, 0.01%)</title><rect x="32.0280%" y="565" width="0.0133%" height="15" fill="rgb(223,145,39)" fg:x="116025" fg:w="48"/><text x="32.2780%" y="575.50"></text></g><g><title>copy_command (69 samples, 0.02%)</title><rect x="32.0225%" y="597" width="0.0190%" height="15" fill="rgb(239,219,30)" fg:x="116005" fg:w="69"/><text x="32.2725%" y="607.50"></text></g><g><title>copy_command (66 samples, 0.02%)</title><rect x="32.0233%" y="581" width="0.0182%" height="15" fill="rgb(224,196,39)" fg:x="116008" fg:w="66"/><text x="32.2733%" y="591.50"></text></g><g><title>copy_command (73 samples, 0.02%)</title><rect x="32.0222%" y="613" width="0.0202%" height="15" fill="rgb(205,35,43)" fg:x="116004" fg:w="73"/><text x="32.2722%" y="623.50"></text></g><g><title>copy_command (77 samples, 0.02%)</title><rect x="32.0222%" y="629" width="0.0213%" height="15" fill="rgb(228,201,21)" fg:x="116004" fg:w="77"/><text x="32.2722%" y="639.50"></text></g><g><title>copy_command (87 samples, 0.02%)</title><rect x="32.0200%" y="645" width="0.0240%" height="15" fill="rgb(237,118,16)" fg:x="115996" fg:w="87"/><text x="32.2700%" y="655.50"></text></g><g><title>copy_command (92 samples, 0.03%)</title><rect x="32.0195%" y="661" width="0.0254%" height="15" fill="rgb(241,17,19)" fg:x="115994" fg:w="92"/><text x="32.2695%" y="671.50"></text></g><g><title>copy_command (101 samples, 0.03%)</title><rect x="32.0184%" y="677" width="0.0279%" height="15" fill="rgb(214,10,25)" fg:x="115990" fg:w="101"/><text x="32.2684%" y="687.50"></text></g><g><title>copy_command (102 samples, 0.03%)</title><rect x="32.0184%" y="693" width="0.0282%" height="15" fill="rgb(238,37,29)" fg:x="115990" fg:w="102"/><text x="32.2684%" y="703.50"></text></g><g><title>copy_command (103 samples, 0.03%)</title><rect x="32.0184%" y="709" width="0.0284%" height="15" fill="rgb(253,83,25)" fg:x="115990" fg:w="103"/><text x="32.2684%" y="719.50"></text></g><g><title>bind_function (105 samples, 0.03%)</title><rect x="32.0181%" y="741" width="0.0290%" height="15" fill="rgb(234,192,12)" fg:x="115989" fg:w="105"/><text x="32.2681%" y="751.50"></text></g><g><title>copy_command (104 samples, 0.03%)</title><rect x="32.0184%" y="725" width="0.0287%" height="15" fill="rgb(241,216,45)" fg:x="115990" fg:w="104"/><text x="32.2684%" y="735.50"></text></g><g><title>copy_command (37 samples, 0.01%)</title><rect x="32.0575%" y="325" width="0.0102%" height="15" fill="rgb(242,22,33)" fg:x="116132" fg:w="37"/><text x="32.3075%" y="335.50"></text></g><g><title>copy_command (39 samples, 0.01%)</title><rect x="32.0573%" y="357" width="0.0108%" height="15" fill="rgb(231,105,49)" fg:x="116131" fg:w="39"/><text x="32.3073%" y="367.50"></text></g><g><title>copy_command (38 samples, 0.01%)</title><rect x="32.0575%" y="341" width="0.0105%" height="15" fill="rgb(218,204,15)" fg:x="116132" fg:w="38"/><text x="32.3075%" y="351.50"></text></g><g><title>copy_command (40 samples, 0.01%)</title><rect x="32.0573%" y="389" width="0.0110%" height="15" fill="rgb(235,138,41)" fg:x="116131" fg:w="40"/><text x="32.3073%" y="399.50"></text></g><g><title>copy_command (40 samples, 0.01%)</title><rect x="32.0573%" y="373" width="0.0110%" height="15" fill="rgb(246,0,9)" fg:x="116131" fg:w="40"/><text x="32.3073%" y="383.50"></text></g><g><title>copy_command (47 samples, 0.01%)</title><rect x="32.0564%" y="421" width="0.0130%" height="15" fill="rgb(210,74,4)" fg:x="116128" fg:w="47"/><text x="32.3064%" y="431.50"></text></g><g><title>copy_command (45 samples, 0.01%)</title><rect x="32.0570%" y="405" width="0.0124%" height="15" fill="rgb(250,60,41)" fg:x="116130" fg:w="45"/><text x="32.3070%" y="415.50"></text></g><g><title>copy_command (48 samples, 0.01%)</title><rect x="32.0564%" y="453" width="0.0133%" height="15" fill="rgb(220,115,12)" fg:x="116128" fg:w="48"/><text x="32.3064%" y="463.50"></text></g><g><title>copy_command (48 samples, 0.01%)</title><rect x="32.0564%" y="437" width="0.0133%" height="15" fill="rgb(237,100,13)" fg:x="116128" fg:w="48"/><text x="32.3064%" y="447.50"></text></g><g><title>copy_command (49 samples, 0.01%)</title><rect x="32.0564%" y="469" width="0.0135%" height="15" fill="rgb(213,55,26)" fg:x="116128" fg:w="49"/><text x="32.3064%" y="479.50"></text></g><g><title>copy_command (51 samples, 0.01%)</title><rect x="32.0564%" y="485" width="0.0141%" height="15" fill="rgb(216,17,4)" fg:x="116128" fg:w="51"/><text x="32.3064%" y="495.50"></text></g><g><title>copy_command (56 samples, 0.02%)</title><rect x="32.0562%" y="501" width="0.0155%" height="15" fill="rgb(220,153,47)" fg:x="116127" fg:w="56"/><text x="32.3062%" y="511.50"></text></g><g><title>copy_command (58 samples, 0.02%)</title><rect x="32.0562%" y="517" width="0.0160%" height="15" fill="rgb(215,131,9)" fg:x="116127" fg:w="58"/><text x="32.3062%" y="527.50"></text></g><g><title>copy_command (59 samples, 0.02%)</title><rect x="32.0562%" y="533" width="0.0163%" height="15" fill="rgb(233,46,42)" fg:x="116127" fg:w="59"/><text x="32.3062%" y="543.50"></text></g><g><title>copy_command (63 samples, 0.02%)</title><rect x="32.0562%" y="549" width="0.0174%" height="15" fill="rgb(226,86,7)" fg:x="116127" fg:w="63"/><text x="32.3062%" y="559.50"></text></g><g><title>copy_command (66 samples, 0.02%)</title><rect x="32.0559%" y="565" width="0.0182%" height="15" fill="rgb(239,226,21)" fg:x="116126" fg:w="66"/><text x="32.3059%" y="575.50"></text></g><g><title>copy_command (83 samples, 0.02%)</title><rect x="32.0518%" y="581" width="0.0229%" height="15" fill="rgb(244,137,22)" fg:x="116111" fg:w="83"/><text x="32.3018%" y="591.50"></text></g><g><title>copy_command (85 samples, 0.02%)</title><rect x="32.0518%" y="597" width="0.0235%" height="15" fill="rgb(211,139,35)" fg:x="116111" fg:w="85"/><text x="32.3018%" y="607.50"></text></g><g><title>copy_command (89 samples, 0.02%)</title><rect x="32.0512%" y="613" width="0.0246%" height="15" fill="rgb(214,62,50)" fg:x="116109" fg:w="89"/><text x="32.3012%" y="623.50"></text></g><g><title>copy_command (93 samples, 0.03%)</title><rect x="32.0506%" y="629" width="0.0257%" height="15" fill="rgb(212,113,44)" fg:x="116107" fg:w="93"/><text x="32.3006%" y="639.50"></text></g><g><title>copy_command (100 samples, 0.03%)</title><rect x="32.0495%" y="645" width="0.0276%" height="15" fill="rgb(226,150,43)" fg:x="116103" fg:w="100"/><text x="32.2995%" y="655.50"></text></g><g><title>copy_command (108 samples, 0.03%)</title><rect x="32.0484%" y="661" width="0.0298%" height="15" fill="rgb(250,71,37)" fg:x="116099" fg:w="108"/><text x="32.2984%" y="671.50"></text></g><g><title>copy_command (112 samples, 0.03%)</title><rect x="32.0479%" y="677" width="0.0309%" height="15" fill="rgb(219,76,19)" fg:x="116097" fg:w="112"/><text x="32.2979%" y="687.50"></text></g><g><title>copy_command (113 samples, 0.03%)</title><rect x="32.0479%" y="693" width="0.0312%" height="15" fill="rgb(250,39,11)" fg:x="116097" fg:w="113"/><text x="32.2979%" y="703.50"></text></g><g><title>copy_command (114 samples, 0.03%)</title><rect x="32.0479%" y="725" width="0.0315%" height="15" fill="rgb(230,64,31)" fg:x="116097" fg:w="114"/><text x="32.2979%" y="735.50"></text></g><g><title>copy_command (114 samples, 0.03%)</title><rect x="32.0479%" y="709" width="0.0315%" height="15" fill="rgb(208,222,23)" fg:x="116097" fg:w="114"/><text x="32.2979%" y="719.50"></text></g><g><title>copy_function_def_contents (118 samples, 0.03%)</title><rect x="32.0476%" y="741" width="0.0326%" height="15" fill="rgb(227,125,18)" fg:x="116096" fg:w="118"/><text x="32.2976%" y="751.50"></text></g><g><title>arch_fork (45 samples, 0.01%)</title><rect x="32.0937%" y="629" width="0.0124%" height="15" fill="rgb(234,210,9)" fg:x="116263" fg:w="45"/><text x="32.3437%" y="639.50"></text></g><g><title>__libc_fork (46 samples, 0.01%)</title><rect x="32.0937%" y="645" width="0.0127%" height="15" fill="rgb(217,127,24)" fg:x="116263" fg:w="46"/><text x="32.3437%" y="655.50"></text></g><g><title>make_child (48 samples, 0.01%)</title><rect x="32.0937%" y="661" width="0.0133%" height="15" fill="rgb(239,141,48)" fg:x="116263" fg:w="48"/><text x="32.3437%" y="671.50"></text></g><g><title>parse_and_execute (80 samples, 0.02%)</title><rect x="32.1070%" y="661" width="0.0221%" height="15" fill="rgb(227,109,8)" fg:x="116311" fg:w="80"/><text x="32.3570%" y="671.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="32.1083%" y="645" width="0.0207%" height="15" fill="rgb(235,184,23)" fg:x="116316" fg:w="75"/><text x="32.3583%" y="655.50"></text></g><g><title>expand_word_leave_quoted (169 samples, 0.05%)</title><rect x="32.0898%" y="709" width="0.0467%" height="15" fill="rgb(227,226,48)" fg:x="116249" fg:w="169"/><text x="32.3398%" y="719.50"></text></g><g><title>[bash] (169 samples, 0.05%)</title><rect x="32.0898%" y="693" width="0.0467%" height="15" fill="rgb(206,150,11)" fg:x="116249" fg:w="169"/><text x="32.3398%" y="703.50"></text></g><g><title>command_substitute (169 samples, 0.05%)</title><rect x="32.0898%" y="677" width="0.0467%" height="15" fill="rgb(254,2,33)" fg:x="116249" fg:w="169"/><text x="32.3398%" y="687.50"></text></g><g><title>execute_command (216 samples, 0.06%)</title><rect x="32.0805%" y="741" width="0.0596%" height="15" fill="rgb(243,160,20)" fg:x="116215" fg:w="216"/><text x="32.3305%" y="751.50"></text></g><g><title>execute_command_internal (215 samples, 0.06%)</title><rect x="32.0807%" y="725" width="0.0593%" height="15" fill="rgb(218,208,30)" fg:x="116216" fg:w="215"/><text x="32.3307%" y="735.50"></text></g><g><title>[bash] (54 samples, 0.01%)</title><rect x="32.1580%" y="565" width="0.0149%" height="15" fill="rgb(224,120,49)" fg:x="116496" fg:w="54"/><text x="32.4080%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.01%)</title><rect x="32.1876%" y="469" width="0.0133%" height="15" fill="rgb(246,12,2)" fg:x="116603" fg:w="48"/><text x="32.4376%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (47 samples, 0.01%)</title><rect x="32.1878%" y="453" width="0.0130%" height="15" fill="rgb(236,117,3)" fg:x="116604" fg:w="47"/><text x="32.4378%" y="463.50"></text></g><g><title>native_write_msr (46 samples, 0.01%)</title><rect x="32.1881%" y="437" width="0.0127%" height="15" fill="rgb(216,128,52)" fg:x="116605" fg:w="46"/><text x="32.4381%" y="447.50"></text></g><g><title>ret_from_fork (56 samples, 0.02%)</title><rect x="32.1859%" y="517" width="0.0155%" height="15" fill="rgb(246,145,19)" fg:x="116597" fg:w="56"/><text x="32.4359%" y="527.50"></text></g><g><title>schedule_tail (56 samples, 0.02%)</title><rect x="32.1859%" y="501" width="0.0155%" height="15" fill="rgb(222,11,46)" fg:x="116597" fg:w="56"/><text x="32.4359%" y="511.50"></text></g><g><title>finish_task_switch (52 samples, 0.01%)</title><rect x="32.1870%" y="485" width="0.0144%" height="15" fill="rgb(245,82,36)" fg:x="116601" fg:w="52"/><text x="32.4370%" y="495.50"></text></g><g><title>arch_fork (83 samples, 0.02%)</title><rect x="32.1787%" y="533" width="0.0229%" height="15" fill="rgb(250,73,51)" fg:x="116571" fg:w="83"/><text x="32.4287%" y="543.50"></text></g><g><title>__libc_fork (87 samples, 0.02%)</title><rect x="32.1782%" y="549" width="0.0240%" height="15" fill="rgb(221,189,23)" fg:x="116569" fg:w="87"/><text x="32.4282%" y="559.50"></text></g><g><title>make_child (90 samples, 0.02%)</title><rect x="32.1782%" y="565" width="0.0248%" height="15" fill="rgb(210,33,7)" fg:x="116569" fg:w="90"/><text x="32.4282%" y="575.50"></text></g><g><title>[bash] (195 samples, 0.05%)</title><rect x="32.1561%" y="613" width="0.0538%" height="15" fill="rgb(210,107,22)" fg:x="116489" fg:w="195"/><text x="32.4061%" y="623.50"></text></g><g><title>[bash] (195 samples, 0.05%)</title><rect x="32.1561%" y="597" width="0.0538%" height="15" fill="rgb(222,116,37)" fg:x="116489" fg:w="195"/><text x="32.4061%" y="607.50"></text></g><g><title>execute_command_internal (189 samples, 0.05%)</title><rect x="32.1578%" y="581" width="0.0522%" height="15" fill="rgb(254,17,48)" fg:x="116495" fg:w="189"/><text x="32.4078%" y="591.50"></text></g><g><title>execute_command_internal (196 samples, 0.05%)</title><rect x="32.1561%" y="629" width="0.0541%" height="15" fill="rgb(224,36,32)" fg:x="116489" fg:w="196"/><text x="32.4061%" y="639.50"></text></g><g><title>parse_and_execute (204 samples, 0.06%)</title><rect x="32.1547%" y="645" width="0.0563%" height="15" fill="rgb(232,90,46)" fg:x="116484" fg:w="204"/><text x="32.4047%" y="655.50"></text></g><g><title>command_substitute (258 samples, 0.07%)</title><rect x="32.1428%" y="661" width="0.0712%" height="15" fill="rgb(241,66,40)" fg:x="116441" fg:w="258"/><text x="32.3928%" y="671.50"></text></g><g><title>[bash] (267 samples, 0.07%)</title><rect x="32.1409%" y="677" width="0.0737%" height="15" fill="rgb(249,184,29)" fg:x="116434" fg:w="267"/><text x="32.3909%" y="687.50"></text></g><g><title>[bash] (269 samples, 0.07%)</title><rect x="32.1409%" y="693" width="0.0743%" height="15" fill="rgb(231,181,1)" fg:x="116434" fg:w="269"/><text x="32.3909%" y="703.50"></text></g><g><title>[bash] (272 samples, 0.08%)</title><rect x="32.1406%" y="709" width="0.0751%" height="15" fill="rgb(224,94,2)" fg:x="116433" fg:w="272"/><text x="32.3906%" y="719.50"></text></g><g><title>expand_words (278 samples, 0.08%)</title><rect x="32.1404%" y="741" width="0.0767%" height="15" fill="rgb(229,170,15)" fg:x="116432" fg:w="278"/><text x="32.3904%" y="751.50"></text></g><g><title>[bash] (278 samples, 0.08%)</title><rect x="32.1404%" y="725" width="0.0767%" height="15" fill="rgb(240,127,35)" fg:x="116432" fg:w="278"/><text x="32.3904%" y="735.50"></text></g><g><title>execute_command (873 samples, 0.24%)</title><rect x="31.9772%" y="773" width="0.2410%" height="15" fill="rgb(248,196,34)" fg:x="115841" fg:w="873"/><text x="32.2272%" y="783.50"></text></g><g><title>execute_command_internal (870 samples, 0.24%)</title><rect x="31.9780%" y="757" width="0.2402%" height="15" fill="rgb(236,137,7)" fg:x="115844" fg:w="870"/><text x="32.2280%" y="767.50"></text></g><g><title>[bash] (64 samples, 0.02%)</title><rect x="32.3314%" y="693" width="0.0177%" height="15" fill="rgb(235,127,16)" fg:x="117124" fg:w="64"/><text x="32.5814%" y="703.50"></text></g><g><title>buffered_getchar (90 samples, 0.02%)</title><rect x="32.3507%" y="693" width="0.0248%" height="15" fill="rgb(250,192,54)" fg:x="117194" fg:w="90"/><text x="32.6007%" y="703.50"></text></g><g><title>[bash] (369 samples, 0.10%)</title><rect x="32.2753%" y="709" width="0.1019%" height="15" fill="rgb(218,98,20)" fg:x="116921" fg:w="369"/><text x="32.5253%" y="719.50"></text></g><g><title>[bash] (617 samples, 0.17%)</title><rect x="32.2397%" y="725" width="0.1703%" height="15" fill="rgb(230,176,47)" fg:x="116792" fg:w="617"/><text x="32.4897%" y="735.50"></text></g><g><title>reader_loop (1,663 samples, 0.46%)</title><rect x="31.9676%" y="789" width="0.4591%" height="15" fill="rgb(244,2,33)" fg:x="115806" fg:w="1663"/><text x="32.2176%" y="799.50"></text></g><g><title>read_command (755 samples, 0.21%)</title><rect x="32.2182%" y="773" width="0.2084%" height="15" fill="rgb(231,100,17)" fg:x="116714" fg:w="755"/><text x="32.4682%" y="783.50"></text></g><g><title>parse_command (755 samples, 0.21%)</title><rect x="32.2182%" y="757" width="0.2084%" height="15" fill="rgb(245,23,12)" fg:x="116714" fg:w="755"/><text x="32.4682%" y="767.50"></text></g><g><title>yyparse (755 samples, 0.21%)</title><rect x="32.2182%" y="741" width="0.2084%" height="15" fill="rgb(249,55,22)" fg:x="116714" fg:w="755"/><text x="32.4682%" y="751.50"></text></g><g><title>__libc_start_main (1,694 samples, 0.47%)</title><rect x="31.9637%" y="821" width="0.4676%" height="15" fill="rgb(207,134,9)" fg:x="115792" fg:w="1694"/><text x="32.2137%" y="831.50"></text></g><g><title>main (1,694 samples, 0.47%)</title><rect x="31.9637%" y="805" width="0.4676%" height="15" fill="rgb(218,134,0)" fg:x="115792" fg:w="1694"/><text x="32.2137%" y="815.50"></text></g><g><title>_dl_start_final (40 samples, 0.01%)</title><rect x="32.4313%" y="805" width="0.0110%" height="15" fill="rgb(213,212,33)" fg:x="117486" fg:w="40"/><text x="32.6813%" y="815.50"></text></g><g><title>_dl_sysdep_start (40 samples, 0.01%)</title><rect x="32.4313%" y="789" width="0.0110%" height="15" fill="rgb(252,106,18)" fg:x="117486" fg:w="40"/><text x="32.6813%" y="799.50"></text></g><g><title>[ld-2.31.so] (40 samples, 0.01%)</title><rect x="32.4313%" y="773" width="0.0110%" height="15" fill="rgb(208,126,42)" fg:x="117486" fg:w="40"/><text x="32.6813%" y="783.50"></text></g><g><title>_start (1,735 samples, 0.48%)</title><rect x="31.9637%" y="837" width="0.4789%" height="15" fill="rgb(246,175,29)" fg:x="115792" fg:w="1735"/><text x="32.2137%" y="847.50"></text></g><g><title>_dl_start (41 samples, 0.01%)</title><rect x="32.4313%" y="821" width="0.0113%" height="15" fill="rgb(215,13,50)" fg:x="117486" fg:w="41"/><text x="32.6813%" y="831.50"></text></g><g><title>asm_exc_page_fault (46 samples, 0.01%)</title><rect x="32.4426%" y="837" width="0.0127%" height="15" fill="rgb(216,172,15)" fg:x="117527" fg:w="46"/><text x="32.6926%" y="847.50"></text></g><g><title>mmput (97 samples, 0.03%)</title><rect x="32.4628%" y="757" width="0.0268%" height="15" fill="rgb(212,103,13)" fg:x="117600" fg:w="97"/><text x="32.7128%" y="767.50"></text></g><g><title>exit_mmap (97 samples, 0.03%)</title><rect x="32.4628%" y="741" width="0.0268%" height="15" fill="rgb(231,171,36)" fg:x="117600" fg:w="97"/><text x="32.7128%" y="751.50"></text></g><g><title>unmap_vmas (49 samples, 0.01%)</title><rect x="32.4760%" y="725" width="0.0135%" height="15" fill="rgb(250,123,20)" fg:x="117648" fg:w="49"/><text x="32.7260%" y="735.50"></text></g><g><title>unmap_page_range (48 samples, 0.01%)</title><rect x="32.4763%" y="709" width="0.0133%" height="15" fill="rgb(212,53,50)" fg:x="117649" fg:w="48"/><text x="32.7263%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (129 samples, 0.04%)</title><rect x="32.4556%" y="837" width="0.0356%" height="15" fill="rgb(243,54,12)" fg:x="117574" fg:w="129"/><text x="32.7056%" y="847.50"></text></g><g><title>do_syscall_64 (129 samples, 0.04%)</title><rect x="32.4556%" y="821" width="0.0356%" height="15" fill="rgb(234,101,34)" fg:x="117574" fg:w="129"/><text x="32.7056%" y="831.50"></text></g><g><title>__x64_sys_exit_group (105 samples, 0.03%)</title><rect x="32.4622%" y="805" width="0.0290%" height="15" fill="rgb(254,67,22)" fg:x="117598" fg:w="105"/><text x="32.7122%" y="815.50"></text></g><g><title>do_group_exit (105 samples, 0.03%)</title><rect x="32.4622%" y="789" width="0.0290%" height="15" fill="rgb(250,35,47)" fg:x="117598" fg:w="105"/><text x="32.7122%" y="799.50"></text></g><g><title>do_exit (105 samples, 0.03%)</title><rect x="32.4622%" y="773" width="0.0290%" height="15" fill="rgb(226,126,38)" fg:x="117598" fg:w="105"/><text x="32.7122%" y="783.50"></text></g><g><title>libtool (2,446 samples, 0.68%)</title><rect x="31.8177%" y="853" width="0.6752%" height="15" fill="rgb(216,138,53)" fg:x="115263" fg:w="2446"/><text x="32.0677%" y="863.50"></text></g><g><title>copy_namespaces (45 samples, 0.01%)</title><rect x="32.5114%" y="709" width="0.0124%" height="15" fill="rgb(246,199,43)" fg:x="117776" fg:w="45"/><text x="32.7614%" y="719.50"></text></g><g><title>create_new_namespaces (45 samples, 0.01%)</title><rect x="32.5114%" y="693" width="0.0124%" height="15" fill="rgb(232,125,11)" fg:x="117776" fg:w="45"/><text x="32.7614%" y="703.50"></text></g><g><title>dup_mm (43 samples, 0.01%)</title><rect x="32.5241%" y="709" width="0.0119%" height="15" fill="rgb(218,219,45)" fg:x="117822" fg:w="43"/><text x="32.7741%" y="719.50"></text></g><g><title>copy_process (108 samples, 0.03%)</title><rect x="32.5078%" y="725" width="0.0298%" height="15" fill="rgb(216,102,54)" fg:x="117763" fg:w="108"/><text x="32.7578%" y="735.50"></text></g><g><title>__libc_start_main (112 samples, 0.03%)</title><rect x="32.5075%" y="821" width="0.0309%" height="15" fill="rgb(250,228,7)" fg:x="117762" fg:w="112"/><text x="32.7575%" y="831.50"></text></g><g><title>__GI___clone (112 samples, 0.03%)</title><rect x="32.5075%" y="805" width="0.0309%" height="15" fill="rgb(226,125,25)" fg:x="117762" fg:w="112"/><text x="32.7575%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (111 samples, 0.03%)</title><rect x="32.5078%" y="789" width="0.0306%" height="15" fill="rgb(224,165,27)" fg:x="117763" fg:w="111"/><text x="32.7578%" y="799.50"></text></g><g><title>do_syscall_64 (111 samples, 0.03%)</title><rect x="32.5078%" y="773" width="0.0306%" height="15" fill="rgb(233,86,3)" fg:x="117763" fg:w="111"/><text x="32.7578%" y="783.50"></text></g><g><title>__do_sys_clone (111 samples, 0.03%)</title><rect x="32.5078%" y="757" width="0.0306%" height="15" fill="rgb(228,116,20)" fg:x="117763" fg:w="111"/><text x="32.7578%" y="767.50"></text></g><g><title>kernel_clone (111 samples, 0.03%)</title><rect x="32.5078%" y="741" width="0.0306%" height="15" fill="rgb(209,192,17)" fg:x="117763" fg:w="111"/><text x="32.7578%" y="751.50"></text></g><g><title>[unknown] (130 samples, 0.04%)</title><rect x="32.5056%" y="837" width="0.0359%" height="15" fill="rgb(224,88,34)" fg:x="117755" fg:w="130"/><text x="32.7556%" y="847.50"></text></g><g><title>WriteFile (50 samples, 0.01%)</title><rect x="32.5489%" y="805" width="0.0138%" height="15" fill="rgb(233,38,6)" fg:x="117912" fg:w="50"/><text x="32.7989%" y="815.50"></text></g><g><title>__GI__IO_default_uflow (71 samples, 0.02%)</title><rect x="32.5657%" y="741" width="0.0196%" height="15" fill="rgb(212,59,30)" fg:x="117973" fg:w="71"/><text x="32.8157%" y="751.50"></text></g><g><title>_IO_new_file_underflow (71 samples, 0.02%)</title><rect x="32.5657%" y="725" width="0.0196%" height="15" fill="rgb(213,80,3)" fg:x="117973" fg:w="71"/><text x="32.8157%" y="735.50"></text></g><g><title>__GI___read_nocancel (68 samples, 0.02%)</title><rect x="32.5666%" y="709" width="0.0188%" height="15" fill="rgb(251,178,7)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.02%)</title><rect x="32.5666%" y="693" width="0.0188%" height="15" fill="rgb(213,154,26)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="703.50"></text></g><g><title>do_syscall_64 (68 samples, 0.02%)</title><rect x="32.5666%" y="677" width="0.0188%" height="15" fill="rgb(238,165,49)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="687.50"></text></g><g><title>ksys_read (68 samples, 0.02%)</title><rect x="32.5666%" y="661" width="0.0188%" height="15" fill="rgb(248,91,46)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="671.50"></text></g><g><title>vfs_read (68 samples, 0.02%)</title><rect x="32.5666%" y="645" width="0.0188%" height="15" fill="rgb(244,21,52)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="655.50"></text></g><g><title>new_sync_read (68 samples, 0.02%)</title><rect x="32.5666%" y="629" width="0.0188%" height="15" fill="rgb(247,122,20)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="639.50"></text></g><g><title>seq_read_iter (68 samples, 0.02%)</title><rect x="32.5666%" y="613" width="0.0188%" height="15" fill="rgb(218,27,9)" fg:x="117976" fg:w="68"/><text x="32.8166%" y="623.50"></text></g><g><title>show_vfsmnt (63 samples, 0.02%)</title><rect x="32.5680%" y="597" width="0.0174%" height="15" fill="rgb(246,7,6)" fg:x="117981" fg:w="63"/><text x="32.8180%" y="607.50"></text></g><g><title>__GI___fgets_unlocked (78 samples, 0.02%)</title><rect x="32.5641%" y="773" width="0.0215%" height="15" fill="rgb(227,135,54)" fg:x="117967" fg:w="78"/><text x="32.8141%" y="783.50"></text></g><g><title>__GI__IO_getline_info (77 samples, 0.02%)</title><rect x="32.5644%" y="757" width="0.0213%" height="15" fill="rgb(247,14,11)" fg:x="117968" fg:w="77"/><text x="32.8144%" y="767.50"></text></g><g><title>__GI___getmntent_r (91 samples, 0.03%)</title><rect x="32.5635%" y="805" width="0.0251%" height="15" fill="rgb(206,149,34)" fg:x="117965" fg:w="91"/><text x="32.8135%" y="815.50"></text></g><g><title>get_mnt_entry (90 samples, 0.02%)</title><rect x="32.5638%" y="789" width="0.0248%" height="15" fill="rgb(227,228,4)" fg:x="117966" fg:w="90"/><text x="32.8138%" y="799.50"></text></g><g><title>schedule (76 samples, 0.02%)</title><rect x="32.5950%" y="725" width="0.0210%" height="15" fill="rgb(238,218,28)" fg:x="118079" fg:w="76"/><text x="32.8450%" y="735.50"></text></g><g><title>__schedule (76 samples, 0.02%)</title><rect x="32.5950%" y="709" width="0.0210%" height="15" fill="rgb(252,86,40)" fg:x="118079" fg:w="76"/><text x="32.8450%" y="719.50"></text></g><g><title>finish_task_switch (75 samples, 0.02%)</title><rect x="32.5953%" y="693" width="0.0207%" height="15" fill="rgb(251,225,11)" fg:x="118080" fg:w="75"/><text x="32.8453%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.02%)</title><rect x="32.5964%" y="677" width="0.0196%" height="15" fill="rgb(206,46,49)" fg:x="118084" fg:w="71"/><text x="32.8464%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.02%)</title><rect x="32.5964%" y="661" width="0.0196%" height="15" fill="rgb(245,128,24)" fg:x="118084" fg:w="71"/><text x="32.8464%" y="671.50"></text></g><g><title>native_write_msr (70 samples, 0.02%)</title><rect x="32.5967%" y="645" width="0.0193%" height="15" fill="rgb(219,177,34)" fg:x="118085" fg:w="70"/><text x="32.8467%" y="655.50"></text></g><g><title>__GI___wait4 (98 samples, 0.03%)</title><rect x="32.5947%" y="805" width="0.0271%" height="15" fill="rgb(218,60,48)" fg:x="118078" fg:w="98"/><text x="32.8447%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.03%)</title><rect x="32.5947%" y="789" width="0.0271%" height="15" fill="rgb(221,11,5)" fg:x="118078" fg:w="98"/><text x="32.8447%" y="799.50"></text></g><g><title>do_syscall_64 (98 samples, 0.03%)</title><rect x="32.5947%" y="773" width="0.0271%" height="15" fill="rgb(220,148,13)" fg:x="118078" fg:w="98"/><text x="32.8447%" y="783.50"></text></g><g><title>kernel_wait4 (98 samples, 0.03%)</title><rect x="32.5947%" y="757" width="0.0271%" height="15" fill="rgb(210,16,3)" fg:x="118078" fg:w="98"/><text x="32.8447%" y="767.50"></text></g><g><title>do_wait (98 samples, 0.03%)</title><rect x="32.5947%" y="741" width="0.0271%" height="15" fill="rgb(236,80,2)" fg:x="118078" fg:w="98"/><text x="32.8447%" y="751.50"></text></g><g><title>bprm_execve (119 samples, 0.03%)</title><rect x="32.6298%" y="709" width="0.0328%" height="15" fill="rgb(239,129,19)" fg:x="118205" fg:w="119"/><text x="32.8798%" y="719.50"></text></g><g><title>__execvpe_common (145 samples, 0.04%)</title><rect x="32.6268%" y="805" width="0.0400%" height="15" fill="rgb(220,106,35)" fg:x="118194" fg:w="145"/><text x="32.8768%" y="815.50"></text></g><g><title>__GI_execve (140 samples, 0.04%)</title><rect x="32.6281%" y="789" width="0.0386%" height="15" fill="rgb(252,139,45)" fg:x="118199" fg:w="140"/><text x="32.8781%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (140 samples, 0.04%)</title><rect x="32.6281%" y="773" width="0.0386%" height="15" fill="rgb(229,8,36)" fg:x="118199" fg:w="140"/><text x="32.8781%" y="783.50"></text></g><g><title>do_syscall_64 (140 samples, 0.04%)</title><rect x="32.6281%" y="757" width="0.0386%" height="15" fill="rgb(230,126,33)" fg:x="118199" fg:w="140"/><text x="32.8781%" y="767.50"></text></g><g><title>__x64_sys_execve (140 samples, 0.04%)</title><rect x="32.6281%" y="741" width="0.0386%" height="15" fill="rgb(239,140,21)" fg:x="118199" fg:w="140"/><text x="32.8781%" y="751.50"></text></g><g><title>do_execveat_common (140 samples, 0.04%)</title><rect x="32.6281%" y="725" width="0.0386%" height="15" fill="rgb(254,104,9)" fg:x="118199" fg:w="140"/><text x="32.8781%" y="735.50"></text></g><g><title>dup_mm (59 samples, 0.02%)</title><rect x="32.6701%" y="693" width="0.0163%" height="15" fill="rgb(239,52,14)" fg:x="118351" fg:w="59"/><text x="32.9201%" y="703.50"></text></g><g><title>copy_process (75 samples, 0.02%)</title><rect x="32.6690%" y="709" width="0.0207%" height="15" fill="rgb(208,227,44)" fg:x="118347" fg:w="75"/><text x="32.9190%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.02%)</title><rect x="32.6687%" y="773" width="0.0213%" height="15" fill="rgb(246,18,19)" fg:x="118346" fg:w="77"/><text x="32.9187%" y="783.50"></text></g><g><title>do_syscall_64 (76 samples, 0.02%)</title><rect x="32.6690%" y="757" width="0.0210%" height="15" fill="rgb(235,228,25)" fg:x="118347" fg:w="76"/><text x="32.9190%" y="767.50"></text></g><g><title>__do_sys_clone (76 samples, 0.02%)</title><rect x="32.6690%" y="741" width="0.0210%" height="15" fill="rgb(240,156,20)" fg:x="118347" fg:w="76"/><text x="32.9190%" y="751.50"></text></g><g><title>kernel_clone (76 samples, 0.02%)</title><rect x="32.6690%" y="725" width="0.0210%" height="15" fill="rgb(224,8,20)" fg:x="118347" fg:w="76"/><text x="32.9190%" y="735.50"></text></g><g><title>arch_fork (156 samples, 0.04%)</title><rect x="32.6679%" y="789" width="0.0431%" height="15" fill="rgb(214,12,52)" fg:x="118343" fg:w="156"/><text x="32.9179%" y="799.50"></text></g><g><title>ret_from_fork (76 samples, 0.02%)</title><rect x="32.6900%" y="773" width="0.0210%" height="15" fill="rgb(211,220,47)" fg:x="118423" fg:w="76"/><text x="32.9400%" y="783.50"></text></g><g><title>schedule_tail (76 samples, 0.02%)</title><rect x="32.6900%" y="757" width="0.0210%" height="15" fill="rgb(250,173,5)" fg:x="118423" fg:w="76"/><text x="32.9400%" y="767.50"></text></g><g><title>finish_task_switch (66 samples, 0.02%)</title><rect x="32.6927%" y="741" width="0.0182%" height="15" fill="rgb(250,125,52)" fg:x="118433" fg:w="66"/><text x="32.9427%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.02%)</title><rect x="32.6933%" y="725" width="0.0177%" height="15" fill="rgb(209,133,18)" fg:x="118435" fg:w="64"/><text x="32.9433%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.02%)</title><rect x="32.6936%" y="709" width="0.0174%" height="15" fill="rgb(216,173,22)" fg:x="118436" fg:w="63"/><text x="32.9436%" y="719.50"></text></g><g><title>native_write_msr (63 samples, 0.02%)</title><rect x="32.6936%" y="693" width="0.0174%" height="15" fill="rgb(205,3,22)" fg:x="118436" fg:w="63"/><text x="32.9436%" y="703.50"></text></g><g><title>__libc_fork (168 samples, 0.05%)</title><rect x="32.6668%" y="805" width="0.0464%" height="15" fill="rgb(248,22,20)" fg:x="118339" fg:w="168"/><text x="32.9168%" y="815.50"></text></g><g><title>path_mount (48 samples, 0.01%)</title><rect x="32.7242%" y="741" width="0.0133%" height="15" fill="rgb(233,6,29)" fg:x="118547" fg:w="48"/><text x="32.9742%" y="751.50"></text></g><g><title>do_syscall_64 (95 samples, 0.03%)</title><rect x="32.7156%" y="773" width="0.0262%" height="15" fill="rgb(240,22,54)" fg:x="118516" fg:w="95"/><text x="32.9656%" y="783.50"></text></g><g><title>__x64_sys_mount (95 samples, 0.03%)</title><rect x="32.7156%" y="757" width="0.0262%" height="15" fill="rgb(231,133,32)" fg:x="118516" fg:w="95"/><text x="32.9656%" y="767.50"></text></g><g><title>__mount (98 samples, 0.03%)</title><rect x="32.7151%" y="805" width="0.0271%" height="15" fill="rgb(248,193,4)" fg:x="118514" fg:w="98"/><text x="32.9651%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.03%)</title><rect x="32.7156%" y="789" width="0.0265%" height="15" fill="rgb(211,178,46)" fg:x="118516" fg:w="96"/><text x="32.9656%" y="799.50"></text></g><g><title>_dl_runtime_resolve_xsavec (42 samples, 0.01%)</title><rect x="32.7424%" y="805" width="0.0116%" height="15" fill="rgb(224,5,42)" fg:x="118613" fg:w="42"/><text x="32.9924%" y="815.50"></text></g><g><title>Pid1Main (825 samples, 0.23%)</title><rect x="32.5420%" y="821" width="0.2277%" height="15" fill="rgb(239,176,25)" fg:x="117887" fg:w="825"/><text x="32.7920%" y="831.50"></text></g><g><title>schedule_tail (101 samples, 0.03%)</title><rect x="32.7753%" y="805" width="0.0279%" height="15" fill="rgb(245,187,50)" fg:x="118732" fg:w="101"/><text x="33.0253%" y="815.50"></text></g><g><title>finish_task_switch (100 samples, 0.03%)</title><rect x="32.7755%" y="789" width="0.0276%" height="15" fill="rgb(248,24,15)" fg:x="118733" fg:w="100"/><text x="33.0255%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.03%)</title><rect x="32.7764%" y="773" width="0.0268%" height="15" fill="rgb(205,166,13)" fg:x="118736" fg:w="97"/><text x="33.0264%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (96 samples, 0.03%)</title><rect x="32.7766%" y="757" width="0.0265%" height="15" fill="rgb(208,114,23)" fg:x="118737" fg:w="96"/><text x="33.0266%" y="767.50"></text></g><g><title>native_write_msr (96 samples, 0.03%)</title><rect x="32.7766%" y="741" width="0.0265%" height="15" fill="rgb(239,127,18)" fg:x="118737" fg:w="96"/><text x="33.0266%" y="751.50"></text></g><g><title>__GI___clone (950 samples, 0.26%)</title><rect x="32.5415%" y="837" width="0.2622%" height="15" fill="rgb(219,154,28)" fg:x="117885" fg:w="950"/><text x="32.7915%" y="847.50"></text></g><g><title>ret_from_fork (106 samples, 0.03%)</title><rect x="32.7744%" y="821" width="0.0293%" height="15" fill="rgb(225,157,23)" fg:x="118729" fg:w="106"/><text x="33.0244%" y="831.50"></text></g><g><title>_dl_start_user (44 samples, 0.01%)</title><rect x="32.8048%" y="837" width="0.0121%" height="15" fill="rgb(219,8,6)" fg:x="118839" fg:w="44"/><text x="33.0548%" y="847.50"></text></g><g><title>_dl_init (44 samples, 0.01%)</title><rect x="32.8048%" y="821" width="0.0121%" height="15" fill="rgb(212,47,6)" fg:x="118839" fg:w="44"/><text x="33.0548%" y="831.50"></text></g><g><title>call_init (44 samples, 0.01%)</title><rect x="32.8048%" y="805" width="0.0121%" height="15" fill="rgb(224,190,4)" fg:x="118839" fg:w="44"/><text x="33.0548%" y="815.50"></text></g><g><title>call_init (43 samples, 0.01%)</title><rect x="32.8051%" y="789" width="0.0119%" height="15" fill="rgb(239,183,29)" fg:x="118840" fg:w="43"/><text x="33.0551%" y="799.50"></text></g><g><title>__GI_exit (39 samples, 0.01%)</title><rect x="32.8222%" y="805" width="0.0108%" height="15" fill="rgb(213,57,7)" fg:x="118902" fg:w="39"/><text x="33.0722%" y="815.50"></text></g><g><title>__run_exit_handlers (39 samples, 0.01%)</title><rect x="32.8222%" y="789" width="0.0108%" height="15" fill="rgb(216,148,1)" fg:x="118902" fg:w="39"/><text x="33.0722%" y="799.50"></text></g><g><title>alloc_pages_vma (51 samples, 0.01%)</title><rect x="32.8608%" y="709" width="0.0141%" height="15" fill="rgb(236,182,29)" fg:x="119042" fg:w="51"/><text x="33.1108%" y="719.50"></text></g><g><title>__alloc_pages_nodemask (50 samples, 0.01%)</title><rect x="32.8611%" y="693" width="0.0138%" height="15" fill="rgb(244,120,48)" fg:x="119043" fg:w="50"/><text x="33.1111%" y="703.50"></text></g><g><title>get_page_from_freelist (46 samples, 0.01%)</title><rect x="32.8622%" y="677" width="0.0127%" height="15" fill="rgb(206,71,34)" fg:x="119047" fg:w="46"/><text x="33.1122%" y="687.50"></text></g><g><title>exc_page_fault (113 samples, 0.03%)</title><rect x="32.8539%" y="757" width="0.0312%" height="15" fill="rgb(242,32,6)" fg:x="119017" fg:w="113"/><text x="33.1039%" y="767.50"></text></g><g><title>do_user_addr_fault (112 samples, 0.03%)</title><rect x="32.8542%" y="741" width="0.0309%" height="15" fill="rgb(241,35,3)" fg:x="119018" fg:w="112"/><text x="33.1042%" y="751.50"></text></g><g><title>handle_mm_fault (107 samples, 0.03%)</title><rect x="32.8556%" y="725" width="0.0295%" height="15" fill="rgb(222,62,19)" fg:x="119023" fg:w="107"/><text x="33.1056%" y="735.50"></text></g><g><title>asm_exc_page_fault (115 samples, 0.03%)</title><rect x="32.8537%" y="773" width="0.0317%" height="15" fill="rgb(223,110,41)" fg:x="119016" fg:w="115"/><text x="33.1037%" y="783.50"></text></g><g><title>[libc-2.31.so] (146 samples, 0.04%)</title><rect x="32.8492%" y="789" width="0.0403%" height="15" fill="rgb(208,224,4)" fg:x="119000" fg:w="146"/><text x="33.0992%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (45 samples, 0.01%)</title><rect x="32.9119%" y="629" width="0.0124%" height="15" fill="rgb(241,137,19)" fg:x="119227" fg:w="45"/><text x="33.1619%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (45 samples, 0.01%)</title><rect x="32.9119%" y="613" width="0.0124%" height="15" fill="rgb(244,24,17)" fg:x="119227" fg:w="45"/><text x="33.1619%" y="623.50"></text></g><g><title>native_write_msr (45 samples, 0.01%)</title><rect x="32.9119%" y="597" width="0.0124%" height="15" fill="rgb(245,178,49)" fg:x="119227" fg:w="45"/><text x="33.1619%" y="607.50"></text></g><g><title>schedule (47 samples, 0.01%)</title><rect x="32.9116%" y="677" width="0.0130%" height="15" fill="rgb(219,160,38)" fg:x="119226" fg:w="47"/><text x="33.1616%" y="687.50"></text></g><g><title>__schedule (47 samples, 0.01%)</title><rect x="32.9116%" y="661" width="0.0130%" height="15" fill="rgb(228,137,14)" fg:x="119226" fg:w="47"/><text x="33.1616%" y="671.50"></text></g><g><title>finish_task_switch (46 samples, 0.01%)</title><rect x="32.9119%" y="645" width="0.0127%" height="15" fill="rgb(237,134,11)" fg:x="119227" fg:w="46"/><text x="33.1619%" y="655.50"></text></g><g><title>__libc_read (53 samples, 0.01%)</title><rect x="32.9102%" y="789" width="0.0146%" height="15" fill="rgb(211,126,44)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.01%)</title><rect x="32.9102%" y="773" width="0.0146%" height="15" fill="rgb(226,171,33)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="783.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="32.9102%" y="757" width="0.0146%" height="15" fill="rgb(253,99,13)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="767.50"></text></g><g><title>ksys_read (53 samples, 0.01%)</title><rect x="32.9102%" y="741" width="0.0146%" height="15" fill="rgb(244,48,7)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="751.50"></text></g><g><title>vfs_read (53 samples, 0.01%)</title><rect x="32.9102%" y="725" width="0.0146%" height="15" fill="rgb(244,217,54)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="735.50"></text></g><g><title>new_sync_read (53 samples, 0.01%)</title><rect x="32.9102%" y="709" width="0.0146%" height="15" fill="rgb(224,15,18)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="719.50"></text></g><g><title>pipe_read (53 samples, 0.01%)</title><rect x="32.9102%" y="693" width="0.0146%" height="15" fill="rgb(244,99,12)" fg:x="119221" fg:w="53"/><text x="33.1602%" y="703.50"></text></g><g><title>__libc_start_main (393 samples, 0.11%)</title><rect x="32.8222%" y="821" width="0.1085%" height="15" fill="rgb(233,226,8)" fg:x="118902" fg:w="393"/><text x="33.0722%" y="831.50"></text></g><g><title>main (320 samples, 0.09%)</title><rect x="32.8423%" y="805" width="0.0883%" height="15" fill="rgb(229,211,3)" fg:x="118975" fg:w="320"/><text x="33.0923%" y="815.50"></text></g><g><title>__do_munmap (60 samples, 0.02%)</title><rect x="32.9494%" y="533" width="0.0166%" height="15" fill="rgb(216,140,21)" fg:x="119363" fg:w="60"/><text x="33.1994%" y="543.50"></text></g><g><title>do_mmap (96 samples, 0.03%)</title><rect x="32.9486%" y="565" width="0.0265%" height="15" fill="rgb(234,122,30)" fg:x="119360" fg:w="96"/><text x="33.1986%" y="575.50"></text></g><g><title>mmap_region (94 samples, 0.03%)</title><rect x="32.9492%" y="549" width="0.0259%" height="15" fill="rgb(236,25,46)" fg:x="119362" fg:w="94"/><text x="33.1992%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (99 samples, 0.03%)</title><rect x="32.9483%" y="597" width="0.0273%" height="15" fill="rgb(217,52,54)" fg:x="119359" fg:w="99"/><text x="33.1983%" y="607.50"></text></g><g><title>vm_mmap_pgoff (99 samples, 0.03%)</title><rect x="32.9483%" y="581" width="0.0273%" height="15" fill="rgb(222,29,26)" fg:x="119359" fg:w="99"/><text x="33.1983%" y="591.50"></text></g><g><title>do_syscall_64 (108 samples, 0.03%)</title><rect x="32.9483%" y="613" width="0.0298%" height="15" fill="rgb(216,177,29)" fg:x="119359" fg:w="108"/><text x="33.1983%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (109 samples, 0.03%)</title><rect x="32.9483%" y="629" width="0.0301%" height="15" fill="rgb(247,136,51)" fg:x="119359" fg:w="109"/><text x="33.1983%" y="639.50"></text></g><g><title>_dl_map_segments (122 samples, 0.03%)</title><rect x="32.9450%" y="677" width="0.0337%" height="15" fill="rgb(231,47,47)" fg:x="119347" fg:w="122"/><text x="33.1950%" y="687.50"></text></g><g><title>__mmap64 (111 samples, 0.03%)</title><rect x="32.9481%" y="661" width="0.0306%" height="15" fill="rgb(211,192,36)" fg:x="119358" fg:w="111"/><text x="33.1981%" y="671.50"></text></g><g><title>__mmap64 (111 samples, 0.03%)</title><rect x="32.9481%" y="645" width="0.0306%" height="15" fill="rgb(229,156,32)" fg:x="119358" fg:w="111"/><text x="33.1981%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (159 samples, 0.04%)</title><rect x="32.9425%" y="693" width="0.0439%" height="15" fill="rgb(248,213,20)" fg:x="119338" fg:w="159"/><text x="33.1925%" y="703.50"></text></g><g><title>_dl_catch_exception (222 samples, 0.06%)</title><rect x="32.9351%" y="741" width="0.0613%" height="15" fill="rgb(217,64,7)" fg:x="119311" fg:w="222"/><text x="33.1851%" y="751.50"></text></g><g><title>openaux (222 samples, 0.06%)</title><rect x="32.9351%" y="725" width="0.0613%" height="15" fill="rgb(232,142,8)" fg:x="119311" fg:w="222"/><text x="33.1851%" y="735.50"></text></g><g><title>_dl_map_object (222 samples, 0.06%)</title><rect x="32.9351%" y="709" width="0.0613%" height="15" fill="rgb(224,92,44)" fg:x="119311" fg:w="222"/><text x="33.1851%" y="719.50"></text></g><g><title>_dl_map_object_deps (231 samples, 0.06%)</title><rect x="32.9348%" y="757" width="0.0638%" height="15" fill="rgb(214,169,17)" fg:x="119310" fg:w="231"/><text x="33.1848%" y="767.50"></text></g><g><title>dl_new_hash (90 samples, 0.02%)</title><rect x="33.0353%" y="693" width="0.0248%" height="15" fill="rgb(210,59,37)" fg:x="119674" fg:w="90"/><text x="33.2853%" y="703.50"></text></g><g><title>check_match (43 samples, 0.01%)</title><rect x="33.1098%" y="677" width="0.0119%" height="15" fill="rgb(214,116,48)" fg:x="119944" fg:w="43"/><text x="33.3598%" y="687.50"></text></g><g><title>_dl_lookup_symbol_x (336 samples, 0.09%)</title><rect x="33.0320%" y="709" width="0.0928%" height="15" fill="rgb(244,191,6)" fg:x="119662" fg:w="336"/><text x="33.2820%" y="719.50"></text></g><g><title>do_lookup_x (234 samples, 0.06%)</title><rect x="33.0601%" y="693" width="0.0646%" height="15" fill="rgb(241,50,52)" fg:x="119764" fg:w="234"/><text x="33.3101%" y="703.50"></text></g><g><title>elf_machine_rela (398 samples, 0.11%)</title><rect x="33.0160%" y="725" width="0.1099%" height="15" fill="rgb(236,75,39)" fg:x="119604" fg:w="398"/><text x="33.2660%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (446 samples, 0.12%)</title><rect x="33.0077%" y="741" width="0.1231%" height="15" fill="rgb(236,99,0)" fg:x="119574" fg:w="446"/><text x="33.2577%" y="751.50"></text></g><g><title>_dl_relocate_object (466 samples, 0.13%)</title><rect x="33.0027%" y="757" width="0.1286%" height="15" fill="rgb(207,202,15)" fg:x="119556" fg:w="466"/><text x="33.2527%" y="767.50"></text></g><g><title>[ld-2.31.so] (737 samples, 0.20%)</title><rect x="32.9310%" y="773" width="0.2034%" height="15" fill="rgb(233,207,14)" fg:x="119296" fg:w="737"/><text x="33.1810%" y="783.50"></text></g><g><title>_dl_start_final (753 samples, 0.21%)</title><rect x="32.9307%" y="805" width="0.2079%" height="15" fill="rgb(226,27,51)" fg:x="119295" fg:w="753"/><text x="33.1807%" y="815.50"></text></g><g><title>_dl_sysdep_start (753 samples, 0.21%)</title><rect x="32.9307%" y="789" width="0.2079%" height="15" fill="rgb(206,104,42)" fg:x="119295" fg:w="753"/><text x="33.1807%" y="799.50"></text></g><g><title>_dl_start (762 samples, 0.21%)</title><rect x="32.9307%" y="821" width="0.2103%" height="15" fill="rgb(212,225,4)" fg:x="119295" fg:w="762"/><text x="33.1807%" y="831.50"></text></g><g><title>_start (1,163 samples, 0.32%)</title><rect x="32.8222%" y="837" width="0.3210%" height="15" fill="rgb(233,96,42)" fg:x="118902" fg:w="1163"/><text x="33.0722%" y="847.50"></text></g><g><title>asm_exc_page_fault (139 samples, 0.04%)</title><rect x="33.1432%" y="837" width="0.0384%" height="15" fill="rgb(229,21,32)" fg:x="120065" fg:w="139"/><text x="33.3932%" y="847.50"></text></g><g><title>mmput (87 samples, 0.02%)</title><rect x="33.1855%" y="725" width="0.0240%" height="15" fill="rgb(226,216,24)" fg:x="120218" fg:w="87"/><text x="33.4355%" y="735.50"></text></g><g><title>exit_mmap (86 samples, 0.02%)</title><rect x="33.1857%" y="709" width="0.0237%" height="15" fill="rgb(221,163,17)" fg:x="120219" fg:w="86"/><text x="33.4357%" y="719.50"></text></g><g><title>begin_new_exec (92 samples, 0.03%)</title><rect x="33.1849%" y="741" width="0.0254%" height="15" fill="rgb(216,216,42)" fg:x="120216" fg:w="92"/><text x="33.4349%" y="751.50"></text></g><g><title>__x64_sys_execve (142 samples, 0.04%)</title><rect x="33.1822%" y="805" width="0.0392%" height="15" fill="rgb(240,118,7)" fg:x="120206" fg:w="142"/><text x="33.4322%" y="815.50"></text></g><g><title>do_execveat_common (142 samples, 0.04%)</title><rect x="33.1822%" y="789" width="0.0392%" height="15" fill="rgb(221,67,37)" fg:x="120206" fg:w="142"/><text x="33.4322%" y="799.50"></text></g><g><title>bprm_execve (142 samples, 0.04%)</title><rect x="33.1822%" y="773" width="0.0392%" height="15" fill="rgb(241,32,44)" fg:x="120206" fg:w="142"/><text x="33.4322%" y="783.50"></text></g><g><title>load_elf_binary (142 samples, 0.04%)</title><rect x="33.1822%" y="757" width="0.0392%" height="15" fill="rgb(235,204,43)" fg:x="120206" fg:w="142"/><text x="33.4322%" y="767.50"></text></g><g><title>tlb_finish_mmu (54 samples, 0.01%)</title><rect x="33.2396%" y="741" width="0.0149%" height="15" fill="rgb(213,116,10)" fg:x="120414" fg:w="54"/><text x="33.4896%" y="751.50"></text></g><g><title>release_pages (47 samples, 0.01%)</title><rect x="33.2415%" y="725" width="0.0130%" height="15" fill="rgb(239,15,48)" fg:x="120421" fg:w="47"/><text x="33.4915%" y="735.50"></text></g><g><title>mmput (146 samples, 0.04%)</title><rect x="33.2263%" y="773" width="0.0403%" height="15" fill="rgb(207,123,36)" fg:x="120366" fg:w="146"/><text x="33.4763%" y="783.50"></text></g><g><title>exit_mmap (146 samples, 0.04%)</title><rect x="33.2263%" y="757" width="0.0403%" height="15" fill="rgb(209,103,30)" fg:x="120366" fg:w="146"/><text x="33.4763%" y="767.50"></text></g><g><title>unmap_vmas (44 samples, 0.01%)</title><rect x="33.2545%" y="741" width="0.0121%" height="15" fill="rgb(238,100,19)" fg:x="120468" fg:w="44"/><text x="33.5045%" y="751.50"></text></g><g><title>unmap_page_range (44 samples, 0.01%)</title><rect x="33.2545%" y="725" width="0.0121%" height="15" fill="rgb(244,30,14)" fg:x="120468" fg:w="44"/><text x="33.5045%" y="735.50"></text></g><g><title>task_work_run (52 samples, 0.01%)</title><rect x="33.2669%" y="773" width="0.0144%" height="15" fill="rgb(249,174,6)" fg:x="120513" fg:w="52"/><text x="33.5169%" y="783.50"></text></g><g><title>cleanup_mnt (51 samples, 0.01%)</title><rect x="33.2672%" y="757" width="0.0141%" height="15" fill="rgb(235,213,41)" fg:x="120514" fg:w="51"/><text x="33.5172%" y="767.50"></text></g><g><title>__x64_sys_exit (218 samples, 0.06%)</title><rect x="33.2214%" y="805" width="0.0602%" height="15" fill="rgb(213,118,6)" fg:x="120348" fg:w="218"/><text x="33.4714%" y="815.50"></text></g><g><title>do_exit (218 samples, 0.06%)</title><rect x="33.2214%" y="789" width="0.0602%" height="15" fill="rgb(235,44,51)" fg:x="120348" fg:w="218"/><text x="33.4714%" y="799.50"></text></g><g><title>unmap_page_range (59 samples, 0.02%)</title><rect x="33.2981%" y="709" width="0.0163%" height="15" fill="rgb(217,9,53)" fg:x="120626" fg:w="59"/><text x="33.5481%" y="719.50"></text></g><g><title>mmput (118 samples, 0.03%)</title><rect x="33.2821%" y="757" width="0.0326%" height="15" fill="rgb(237,172,34)" fg:x="120568" fg:w="118"/><text x="33.5321%" y="767.50"></text></g><g><title>exit_mmap (117 samples, 0.03%)</title><rect x="33.2824%" y="741" width="0.0323%" height="15" fill="rgb(206,206,11)" fg:x="120569" fg:w="117"/><text x="33.5324%" y="751.50"></text></g><g><title>unmap_vmas (60 samples, 0.02%)</title><rect x="33.2981%" y="725" width="0.0166%" height="15" fill="rgb(214,149,29)" fg:x="120626" fg:w="60"/><text x="33.5481%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (490 samples, 0.14%)</title><rect x="33.1816%" y="837" width="0.1353%" height="15" fill="rgb(208,123,3)" fg:x="120204" fg:w="490"/><text x="33.4316%" y="847.50"></text></g><g><title>do_syscall_64 (488 samples, 0.13%)</title><rect x="33.1822%" y="821" width="0.1347%" height="15" fill="rgb(229,126,4)" fg:x="120206" fg:w="488"/><text x="33.4322%" y="831.50"></text></g><g><title>__x64_sys_exit_group (128 samples, 0.04%)</title><rect x="33.2815%" y="805" width="0.0353%" height="15" fill="rgb(222,92,36)" fg:x="120566" fg:w="128"/><text x="33.5315%" y="815.50"></text></g><g><title>do_group_exit (128 samples, 0.04%)</title><rect x="33.2815%" y="789" width="0.0353%" height="15" fill="rgb(216,39,41)" fg:x="120566" fg:w="128"/><text x="33.5315%" y="799.50"></text></g><g><title>do_exit (128 samples, 0.04%)</title><rect x="33.2815%" y="773" width="0.0353%" height="15" fill="rgb(253,127,28)" fg:x="120566" fg:w="128"/><text x="33.5315%" y="783.50"></text></g><g><title>linux-sandbox (2,987 samples, 0.82%)</title><rect x="32.4929%" y="853" width="0.8245%" height="15" fill="rgb(249,152,51)" fg:x="117709" fg:w="2987"/><text x="32.7429%" y="863.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (54 samples, 0.01%)</title><rect x="33.3254%" y="789" width="0.0149%" height="15" fill="rgb(209,123,42)" fg:x="120725" fg:w="54"/><text x="33.5754%" y="799.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (54 samples, 0.01%)</title><rect x="33.3254%" y="773" width="0.0149%" height="15" fill="rgb(241,118,22)" fg:x="120725" fg:w="54"/><text x="33.5754%" y="783.50"></text></g><g><title>__libc_fork (41 samples, 0.01%)</title><rect x="33.3290%" y="757" width="0.0113%" height="15" fill="rgb(208,25,7)" fg:x="120738" fg:w="41"/><text x="33.5790%" y="767.50"></text></g><g><title>arch_fork (39 samples, 0.01%)</title><rect x="33.3296%" y="741" width="0.0108%" height="15" fill="rgb(243,144,39)" fg:x="120740" fg:w="39"/><text x="33.5796%" y="751.50"></text></g><g><title>__libc_start_main (72 samples, 0.02%)</title><rect x="33.3249%" y="821" width="0.0199%" height="15" fill="rgb(250,50,5)" fg:x="120723" fg:w="72"/><text x="33.5749%" y="831.50"></text></g><g><title>main (70 samples, 0.02%)</title><rect x="33.3254%" y="805" width="0.0193%" height="15" fill="rgb(207,67,11)" fg:x="120725" fg:w="70"/><text x="33.5754%" y="815.50"></text></g><g><title>_dl_catch_exception (40 samples, 0.01%)</title><rect x="33.3456%" y="741" width="0.0110%" height="15" fill="rgb(245,204,40)" fg:x="120798" fg:w="40"/><text x="33.5956%" y="751.50"></text></g><g><title>openaux (40 samples, 0.01%)</title><rect x="33.3456%" y="725" width="0.0110%" height="15" fill="rgb(238,228,24)" fg:x="120798" fg:w="40"/><text x="33.5956%" y="735.50"></text></g><g><title>_dl_map_object (40 samples, 0.01%)</title><rect x="33.3456%" y="709" width="0.0110%" height="15" fill="rgb(217,116,22)" fg:x="120798" fg:w="40"/><text x="33.5956%" y="719.50"></text></g><g><title>_dl_map_object_deps (41 samples, 0.01%)</title><rect x="33.3456%" y="757" width="0.0113%" height="15" fill="rgb(234,98,12)" fg:x="120798" fg:w="41"/><text x="33.5956%" y="767.50"></text></g><g><title>elf_machine_rela (56 samples, 0.02%)</title><rect x="33.3583%" y="725" width="0.0155%" height="15" fill="rgb(242,170,50)" fg:x="120844" fg:w="56"/><text x="33.6083%" y="735.50"></text></g><g><title>_dl_lookup_symbol_x (39 samples, 0.01%)</title><rect x="33.3630%" y="709" width="0.0108%" height="15" fill="rgb(235,7,5)" fg:x="120861" fg:w="39"/><text x="33.6130%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (60 samples, 0.02%)</title><rect x="33.3580%" y="741" width="0.0166%" height="15" fill="rgb(241,114,28)" fg:x="120843" fg:w="60"/><text x="33.6080%" y="751.50"></text></g><g><title>_dl_relocate_object (65 samples, 0.02%)</title><rect x="33.3572%" y="757" width="0.0179%" height="15" fill="rgb(246,112,42)" fg:x="120840" fg:w="65"/><text x="33.6072%" y="767.50"></text></g><g><title>[ld-2.31.so] (111 samples, 0.03%)</title><rect x="33.3450%" y="773" width="0.0306%" height="15" fill="rgb(248,228,14)" fg:x="120796" fg:w="111"/><text x="33.5950%" y="783.50"></text></g><g><title>_dl_start_final (114 samples, 0.03%)</title><rect x="33.3447%" y="805" width="0.0315%" height="15" fill="rgb(208,133,18)" fg:x="120795" fg:w="114"/><text x="33.5947%" y="815.50"></text></g><g><title>_dl_sysdep_start (114 samples, 0.03%)</title><rect x="33.3447%" y="789" width="0.0315%" height="15" fill="rgb(207,35,49)" fg:x="120795" fg:w="114"/><text x="33.5947%" y="799.50"></text></g><g><title>_dl_start (115 samples, 0.03%)</title><rect x="33.3447%" y="821" width="0.0317%" height="15" fill="rgb(205,68,36)" fg:x="120795" fg:w="115"/><text x="33.5947%" y="831.50"></text></g><g><title>_start (188 samples, 0.05%)</title><rect x="33.3249%" y="837" width="0.0519%" height="15" fill="rgb(245,62,40)" fg:x="120723" fg:w="188"/><text x="33.5749%" y="847.50"></text></g><g><title>process-wrapper (254 samples, 0.07%)</title><rect x="33.3191%" y="853" width="0.0701%" height="15" fill="rgb(228,27,24)" fg:x="120702" fg:w="254"/><text x="33.5691%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="33.3787%" y="837" width="0.0105%" height="15" fill="rgb(253,19,12)" fg:x="120918" fg:w="38"/><text x="33.6287%" y="847.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="33.3787%" y="821" width="0.0105%" height="15" fill="rgb(232,28,20)" fg:x="120918" fg:w="38"/><text x="33.6287%" y="831.50"></text></g><g><title>finish_task_switch (40 samples, 0.01%)</title><rect x="33.4568%" y="693" width="0.0110%" height="15" fill="rgb(218,35,51)" fg:x="121201" fg:w="40"/><text x="33.7068%" y="703.50"></text></g><g><title>schedule (43 samples, 0.01%)</title><rect x="33.4563%" y="725" width="0.0119%" height="15" fill="rgb(212,90,40)" fg:x="121199" fg:w="43"/><text x="33.7063%" y="735.50"></text></g><g><title>__schedule (43 samples, 0.01%)</title><rect x="33.4563%" y="709" width="0.0119%" height="15" fill="rgb(220,172,12)" fg:x="121199" fg:w="43"/><text x="33.7063%" y="719.50"></text></g><g><title>__dentry_kill (55 samples, 0.02%)</title><rect x="33.4753%" y="629" width="0.0152%" height="15" fill="rgb(226,159,20)" fg:x="121268" fg:w="55"/><text x="33.7253%" y="639.50"></text></g><g><title>d_invalidate (81 samples, 0.02%)</title><rect x="33.4701%" y="677" width="0.0224%" height="15" fill="rgb(234,205,16)" fg:x="121249" fg:w="81"/><text x="33.7201%" y="687.50"></text></g><g><title>shrink_dcache_parent (81 samples, 0.02%)</title><rect x="33.4701%" y="661" width="0.0224%" height="15" fill="rgb(207,9,39)" fg:x="121249" fg:w="81"/><text x="33.7201%" y="671.50"></text></g><g><title>shrink_dentry_list (62 samples, 0.02%)</title><rect x="33.4753%" y="645" width="0.0171%" height="15" fill="rgb(249,143,15)" fg:x="121268" fg:w="62"/><text x="33.7253%" y="655.50"></text></g><g><title>do_wait (212 samples, 0.06%)</title><rect x="33.4345%" y="741" width="0.0585%" height="15" fill="rgb(253,133,29)" fg:x="121120" fg:w="212"/><text x="33.6845%" y="751.50"></text></g><g><title>wait_consider_task (90 samples, 0.02%)</title><rect x="33.4681%" y="725" width="0.0248%" height="15" fill="rgb(221,187,0)" fg:x="121242" fg:w="90"/><text x="33.7181%" y="735.50"></text></g><g><title>release_task (90 samples, 0.02%)</title><rect x="33.4681%" y="709" width="0.0248%" height="15" fill="rgb(205,204,26)" fg:x="121242" fg:w="90"/><text x="33.7181%" y="719.50"></text></g><g><title>proc_invalidate_siblings_dcache (84 samples, 0.02%)</title><rect x="33.4698%" y="693" width="0.0232%" height="15" fill="rgb(224,68,54)" fg:x="121248" fg:w="84"/><text x="33.7198%" y="703.50"></text></g><g><title>do_syscall_64 (213 samples, 0.06%)</title><rect x="33.4345%" y="773" width="0.0588%" height="15" fill="rgb(209,67,4)" fg:x="121120" fg:w="213"/><text x="33.6845%" y="783.50"></text></g><g><title>kernel_wait4 (213 samples, 0.06%)</title><rect x="33.4345%" y="757" width="0.0588%" height="15" fill="rgb(228,229,18)" fg:x="121120" fg:w="213"/><text x="33.6845%" y="767.50"></text></g><g><title>__GI___wait4 (216 samples, 0.06%)</title><rect x="33.4339%" y="805" width="0.0596%" height="15" fill="rgb(231,89,13)" fg:x="121118" fg:w="216"/><text x="33.6839%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (214 samples, 0.06%)</title><rect x="33.4345%" y="789" width="0.0591%" height="15" fill="rgb(210,182,18)" fg:x="121120" fg:w="214"/><text x="33.6845%" y="799.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (217 samples, 0.06%)</title><rect x="33.4339%" y="821" width="0.0599%" height="15" fill="rgb(240,105,2)" fg:x="121118" fg:w="217"/><text x="33.6839%" y="831.50"></text></g><g><title>[perf-985085.map] (409 samples, 0.11%)</title><rect x="33.3911%" y="837" width="0.1129%" height="15" fill="rgb(207,170,50)" fg:x="120963" fg:w="409"/><text x="33.6411%" y="847.50"></text></g><g><title>process_reaper (422 samples, 0.12%)</title><rect x="33.3892%" y="853" width="0.1165%" height="15" fill="rgb(232,133,24)" fg:x="120956" fg:w="422"/><text x="33.6392%" y="863.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (39 samples, 0.01%)</title><rect x="33.6484%" y="821" width="0.0108%" height="15" fill="rgb(235,166,27)" fg:x="121895" fg:w="39"/><text x="33.8984%" y="831.50"></text></g><g><title>deflate (39 samples, 0.01%)</title><rect x="33.6484%" y="805" width="0.0108%" height="15" fill="rgb(209,19,13)" fg:x="121895" fg:w="39"/><text x="33.8984%" y="815.50"></text></g><g><title>[libz.so.1.2.11] (39 samples, 0.01%)</title><rect x="33.6484%" y="789" width="0.0108%" height="15" fill="rgb(226,79,39)" fg:x="121895" fg:w="39"/><text x="33.8984%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.02%)</title><rect x="33.6821%" y="597" width="0.0215%" height="15" fill="rgb(222,163,10)" fg:x="122017" fg:w="78"/><text x="33.9321%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (78 samples, 0.02%)</title><rect x="33.6821%" y="581" width="0.0215%" height="15" fill="rgb(214,44,19)" fg:x="122017" fg:w="78"/><text x="33.9321%" y="591.50"></text></g><g><title>native_write_msr (78 samples, 0.02%)</title><rect x="33.6821%" y="565" width="0.0215%" height="15" fill="rgb(210,217,13)" fg:x="122017" fg:w="78"/><text x="33.9321%" y="575.50"></text></g><g><title>finish_task_switch (85 samples, 0.02%)</title><rect x="33.6812%" y="613" width="0.0235%" height="15" fill="rgb(237,61,54)" fg:x="122014" fg:w="85"/><text x="33.9312%" y="623.50"></text></g><g><title>futex_wait_queue_me (125 samples, 0.03%)</title><rect x="33.6746%" y="661" width="0.0345%" height="15" fill="rgb(226,184,24)" fg:x="121990" fg:w="125"/><text x="33.9246%" y="671.50"></text></g><g><title>schedule (123 samples, 0.03%)</title><rect x="33.6752%" y="645" width="0.0340%" height="15" fill="rgb(223,226,4)" fg:x="121992" fg:w="123"/><text x="33.9252%" y="655.50"></text></g><g><title>__schedule (123 samples, 0.03%)</title><rect x="33.6752%" y="629" width="0.0340%" height="15" fill="rgb(210,26,41)" fg:x="121992" fg:w="123"/><text x="33.9252%" y="639.50"></text></g><g><title>do_syscall_64 (137 samples, 0.04%)</title><rect x="33.6721%" y="725" width="0.0378%" height="15" fill="rgb(220,221,6)" fg:x="121981" fg:w="137"/><text x="33.9221%" y="735.50"></text></g><g><title>__x64_sys_futex (136 samples, 0.04%)</title><rect x="33.6724%" y="709" width="0.0375%" height="15" fill="rgb(225,89,49)" fg:x="121982" fg:w="136"/><text x="33.9224%" y="719.50"></text></g><g><title>do_futex (135 samples, 0.04%)</title><rect x="33.6727%" y="693" width="0.0373%" height="15" fill="rgb(218,70,45)" fg:x="121983" fg:w="135"/><text x="33.9227%" y="703.50"></text></g><g><title>futex_wait (134 samples, 0.04%)</title><rect x="33.6730%" y="677" width="0.0370%" height="15" fill="rgb(238,166,21)" fg:x="121984" fg:w="134"/><text x="33.9230%" y="687.50"></text></g><g><title>__pthread_cond_wait (159 samples, 0.04%)</title><rect x="33.6683%" y="789" width="0.0439%" height="15" fill="rgb(224,141,44)" fg:x="121967" fg:w="159"/><text x="33.9183%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (159 samples, 0.04%)</title><rect x="33.6683%" y="773" width="0.0439%" height="15" fill="rgb(230,12,49)" fg:x="121967" fg:w="159"/><text x="33.9183%" y="783.50"></text></g><g><title>futex_wait_cancelable (154 samples, 0.04%)</title><rect x="33.6696%" y="757" width="0.0425%" height="15" fill="rgb(212,174,12)" fg:x="121972" fg:w="154"/><text x="33.9196%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (145 samples, 0.04%)</title><rect x="33.6721%" y="741" width="0.0400%" height="15" fill="rgb(246,67,9)" fg:x="121981" fg:w="145"/><text x="33.9221%" y="751.50"></text></g><g><title>Parker::park (186 samples, 0.05%)</title><rect x="33.6639%" y="805" width="0.0513%" height="15" fill="rgb(239,35,23)" fg:x="121951" fg:w="186"/><text x="33.9139%" y="815.50"></text></g><g><title>Unsafe_Park (193 samples, 0.05%)</title><rect x="33.6633%" y="821" width="0.0533%" height="15" fill="rgb(211,167,0)" fg:x="121949" fg:w="193"/><text x="33.9133%" y="831.50"></text></g><g><title>asm_exc_page_fault (37 samples, 0.01%)</title><rect x="33.7174%" y="821" width="0.0102%" height="15" fill="rgb(225,119,45)" fg:x="122145" fg:w="37"/><text x="33.9674%" y="831.50"></text></g><g><title>[perf-985085.map] (790 samples, 0.22%)</title><rect x="33.5104%" y="837" width="0.2181%" height="15" fill="rgb(210,162,6)" fg:x="121395" fg:w="790"/><text x="33.7604%" y="847.50"></text></g><g><title>profile-writer- (835 samples, 0.23%)</title><rect x="33.5057%" y="853" width="0.2305%" height="15" fill="rgb(208,118,35)" fg:x="121378" fg:w="835"/><text x="33.7557%" y="863.50"></text></g><g><title>[python3.9] (107 samples, 0.03%)</title><rect x="33.7754%" y="821" width="0.0295%" height="15" fill="rgb(239,4,53)" fg:x="122355" fg:w="107"/><text x="34.0254%" y="831.50"></text></g><g><title>PyImport_ImportModuleLevelObject (37 samples, 0.01%)</title><rect x="33.8430%" y="565" width="0.0102%" height="15" fill="rgb(213,130,21)" fg:x="122600" fg:w="37"/><text x="34.0930%" y="575.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (37 samples, 0.01%)</title><rect x="33.8430%" y="549" width="0.0102%" height="15" fill="rgb(235,148,0)" fg:x="122600" fg:w="37"/><text x="34.0930%" y="559.50"></text></g><g><title>[python3.9] (37 samples, 0.01%)</title><rect x="33.8430%" y="533" width="0.0102%" height="15" fill="rgb(244,224,18)" fg:x="122600" fg:w="37"/><text x="34.0930%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.01%)</title><rect x="33.8430%" y="517" width="0.0102%" height="15" fill="rgb(211,214,4)" fg:x="122600" fg:w="37"/><text x="34.0930%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (100 samples, 0.03%)</title><rect x="33.8270%" y="805" width="0.0276%" height="15" fill="rgb(206,119,25)" fg:x="122542" fg:w="100"/><text x="34.0770%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (89 samples, 0.02%)</title><rect x="33.8300%" y="789" width="0.0246%" height="15" fill="rgb(243,93,47)" fg:x="122553" fg:w="89"/><text x="34.0800%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (87 samples, 0.02%)</title><rect x="33.8306%" y="773" width="0.0240%" height="15" fill="rgb(224,194,6)" fg:x="122555" fg:w="87"/><text x="34.0806%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (67 samples, 0.02%)</title><rect x="33.8361%" y="757" width="0.0185%" height="15" fill="rgb(243,229,6)" fg:x="122575" fg:w="67"/><text x="34.0861%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (67 samples, 0.02%)</title><rect x="33.8361%" y="741" width="0.0185%" height="15" fill="rgb(207,23,50)" fg:x="122575" fg:w="67"/><text x="34.0861%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (42 samples, 0.01%)</title><rect x="33.8430%" y="725" width="0.0116%" height="15" fill="rgb(253,192,32)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (42 samples, 0.01%)</title><rect x="33.8430%" y="709" width="0.0116%" height="15" fill="rgb(213,21,6)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="719.50"></text></g><g><title>[python3.9] (42 samples, 0.01%)</title><rect x="33.8430%" y="693" width="0.0116%" height="15" fill="rgb(243,151,13)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (42 samples, 0.01%)</title><rect x="33.8430%" y="677" width="0.0116%" height="15" fill="rgb(233,165,41)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="687.50"></text></g><g><title>[python3.9] (42 samples, 0.01%)</title><rect x="33.8430%" y="661" width="0.0116%" height="15" fill="rgb(246,176,45)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="671.50"></text></g><g><title>[python3.9] (42 samples, 0.01%)</title><rect x="33.8430%" y="645" width="0.0116%" height="15" fill="rgb(217,170,52)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="655.50"></text></g><g><title>PyEval_EvalCode (42 samples, 0.01%)</title><rect x="33.8430%" y="629" width="0.0116%" height="15" fill="rgb(214,203,54)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="639.50"></text></g><g><title>_PyEval_EvalCodeWithName (42 samples, 0.01%)</title><rect x="33.8430%" y="613" width="0.0116%" height="15" fill="rgb(248,215,49)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="623.50"></text></g><g><title>[python3.9] (42 samples, 0.01%)</title><rect x="33.8430%" y="597" width="0.0116%" height="15" fill="rgb(208,46,10)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (42 samples, 0.01%)</title><rect x="33.8430%" y="581" width="0.0116%" height="15" fill="rgb(254,5,31)" fg:x="122600" fg:w="42"/><text x="34.0930%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (165 samples, 0.05%)</title><rect x="33.8093%" y="821" width="0.0455%" height="15" fill="rgb(222,104,33)" fg:x="122478" fg:w="165"/><text x="34.0593%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (47 samples, 0.01%)</title><rect x="33.8549%" y="821" width="0.0130%" height="15" fill="rgb(248,49,16)" fg:x="122643" fg:w="47"/><text x="34.1049%" y="831.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (44 samples, 0.01%)</title><rect x="33.8678%" y="821" width="0.0121%" height="15" fill="rgb(232,198,41)" fg:x="122690" fg:w="44"/><text x="34.1178%" y="831.50"></text></g><g><title>[python3.9] (44 samples, 0.01%)</title><rect x="33.8678%" y="805" width="0.0121%" height="15" fill="rgb(214,125,3)" fg:x="122690" fg:w="44"/><text x="34.1178%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (44 samples, 0.01%)</title><rect x="33.8678%" y="789" width="0.0121%" height="15" fill="rgb(229,220,28)" fg:x="122690" fg:w="44"/><text x="34.1178%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.01%)</title><rect x="33.8681%" y="773" width="0.0119%" height="15" fill="rgb(222,64,37)" fg:x="122691" fg:w="43"/><text x="34.1181%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.01%)</title><rect x="33.8681%" y="757" width="0.0119%" height="15" fill="rgb(249,184,13)" fg:x="122691" fg:w="43"/><text x="34.1181%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.01%)</title><rect x="33.8681%" y="741" width="0.0119%" height="15" fill="rgb(252,176,6)" fg:x="122691" fg:w="43"/><text x="34.1181%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.01%)</title><rect x="33.8681%" y="725" width="0.0119%" height="15" fill="rgb(228,153,7)" fg:x="122691" fg:w="43"/><text x="34.1181%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.01%)</title><rect x="33.8687%" y="709" width="0.0113%" height="15" fill="rgb(242,193,5)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.01%)</title><rect x="33.8687%" y="693" width="0.0113%" height="15" fill="rgb(232,140,9)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.01%)</title><rect x="33.8687%" y="677" width="0.0113%" height="15" fill="rgb(213,222,16)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (41 samples, 0.01%)</title><rect x="33.8687%" y="661" width="0.0113%" height="15" fill="rgb(222,75,50)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="671.50"></text></g><g><title>[python3.9] (41 samples, 0.01%)</title><rect x="33.8687%" y="645" width="0.0113%" height="15" fill="rgb(205,180,2)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.01%)</title><rect x="33.8687%" y="629" width="0.0113%" height="15" fill="rgb(216,34,7)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="639.50"></text></g><g><title>[python3.9] (41 samples, 0.01%)</title><rect x="33.8687%" y="613" width="0.0113%" height="15" fill="rgb(253,16,32)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="623.50"></text></g><g><title>[python3.9] (41 samples, 0.01%)</title><rect x="33.8687%" y="597" width="0.0113%" height="15" fill="rgb(208,97,28)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="607.50"></text></g><g><title>PyEval_EvalCode (41 samples, 0.01%)</title><rect x="33.8687%" y="581" width="0.0113%" height="15" fill="rgb(225,92,11)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="591.50"></text></g><g><title>_PyEval_EvalCodeWithName (41 samples, 0.01%)</title><rect x="33.8687%" y="565" width="0.0113%" height="15" fill="rgb(243,38,12)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="575.50"></text></g><g><title>[python3.9] (41 samples, 0.01%)</title><rect x="33.8687%" y="549" width="0.0113%" height="15" fill="rgb(208,139,16)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (41 samples, 0.01%)</title><rect x="33.8687%" y="533" width="0.0113%" height="15" fill="rgb(227,24,9)" fg:x="122693" fg:w="41"/><text x="34.1187%" y="543.50"></text></g><g><title>[unknown] (463 samples, 0.13%)</title><rect x="33.7536%" y="837" width="0.1278%" height="15" fill="rgb(206,62,11)" fg:x="122276" fg:w="463"/><text x="34.0036%" y="847.50"></text></g><g><title>[python3.9] (43 samples, 0.01%)</title><rect x="33.8988%" y="757" width="0.0119%" height="15" fill="rgb(228,134,27)" fg:x="122802" fg:w="43"/><text x="34.1488%" y="767.50"></text></g><g><title>Py_RunMain (121 samples, 0.03%)</title><rect x="33.8822%" y="789" width="0.0334%" height="15" fill="rgb(205,55,33)" fg:x="122742" fg:w="121"/><text x="34.1322%" y="799.50"></text></g><g><title>Py_FinalizeEx (88 samples, 0.02%)</title><rect x="33.8913%" y="773" width="0.0243%" height="15" fill="rgb(243,75,43)" fg:x="122775" fg:w="88"/><text x="34.1413%" y="783.50"></text></g><g><title>PyImport_ImportModule (47 samples, 0.01%)</title><rect x="33.9189%" y="709" width="0.0130%" height="15" fill="rgb(223,27,42)" fg:x="122875" fg:w="47"/><text x="34.1689%" y="719.50"></text></g><g><title>PyImport_Import (46 samples, 0.01%)</title><rect x="33.9192%" y="693" width="0.0127%" height="15" fill="rgb(232,189,33)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="703.50"></text></g><g><title>PyObject_CallFunction (46 samples, 0.01%)</title><rect x="33.9192%" y="677" width="0.0127%" height="15" fill="rgb(210,9,39)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="687.50"></text></g><g><title>_PyObject_MakeTpCall (46 samples, 0.01%)</title><rect x="33.9192%" y="661" width="0.0127%" height="15" fill="rgb(242,85,26)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="671.50"></text></g><g><title>[python3.9] (46 samples, 0.01%)</title><rect x="33.9192%" y="645" width="0.0127%" height="15" fill="rgb(248,44,4)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="655.50"></text></g><g><title>[python3.9] (46 samples, 0.01%)</title><rect x="33.9192%" y="629" width="0.0127%" height="15" fill="rgb(250,96,46)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="639.50"></text></g><g><title>PyImport_ImportModuleLevelObject (46 samples, 0.01%)</title><rect x="33.9192%" y="613" width="0.0127%" height="15" fill="rgb(229,116,26)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="623.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (46 samples, 0.01%)</title><rect x="33.9192%" y="597" width="0.0127%" height="15" fill="rgb(246,94,34)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="607.50"></text></g><g><title>[python3.9] (46 samples, 0.01%)</title><rect x="33.9192%" y="581" width="0.0127%" height="15" fill="rgb(251,73,21)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (46 samples, 0.01%)</title><rect x="33.9192%" y="565" width="0.0127%" height="15" fill="rgb(254,121,25)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (46 samples, 0.01%)</title><rect x="33.9192%" y="549" width="0.0127%" height="15" fill="rgb(215,161,49)" fg:x="122876" fg:w="46"/><text x="34.1692%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (44 samples, 0.01%)</title><rect x="33.9197%" y="533" width="0.0121%" height="15" fill="rgb(221,43,13)" fg:x="122878" fg:w="44"/><text x="34.1697%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (44 samples, 0.01%)</title><rect x="33.9197%" y="517" width="0.0121%" height="15" fill="rgb(249,5,37)" fg:x="122878" fg:w="44"/><text x="34.1697%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (44 samples, 0.01%)</title><rect x="33.9197%" y="501" width="0.0121%" height="15" fill="rgb(226,25,44)" fg:x="122878" fg:w="44"/><text x="34.1697%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (44 samples, 0.01%)</title><rect x="33.9197%" y="485" width="0.0121%" height="15" fill="rgb(238,189,16)" fg:x="122878" fg:w="44"/><text x="34.1697%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (44 samples, 0.01%)</title><rect x="33.9197%" y="469" width="0.0121%" height="15" fill="rgb(251,186,8)" fg:x="122878" fg:w="44"/><text x="34.1697%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.01%)</title><rect x="33.9200%" y="453" width="0.0119%" height="15" fill="rgb(254,34,31)" fg:x="122879" fg:w="43"/><text x="34.1700%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (37 samples, 0.01%)</title><rect x="33.9217%" y="437" width="0.0102%" height="15" fill="rgb(225,215,27)" fg:x="122885" fg:w="37"/><text x="34.1717%" y="447.50"></text></g><g><title>Py_InitializeFromConfig (134 samples, 0.04%)</title><rect x="33.9156%" y="757" width="0.0370%" height="15" fill="rgb(221,192,48)" fg:x="122863" fg:w="134"/><text x="34.1656%" y="767.50"></text></g><g><title>[python3.9] (134 samples, 0.04%)</title><rect x="33.9156%" y="741" width="0.0370%" height="15" fill="rgb(219,137,20)" fg:x="122863" fg:w="134"/><text x="34.1656%" y="751.50"></text></g><g><title>[python3.9] (134 samples, 0.04%)</title><rect x="33.9156%" y="725" width="0.0370%" height="15" fill="rgb(219,84,11)" fg:x="122863" fg:w="134"/><text x="34.1656%" y="735.50"></text></g><g><title>Py_BytesMain (258 samples, 0.07%)</title><rect x="33.8822%" y="805" width="0.0712%" height="15" fill="rgb(224,10,23)" fg:x="122742" fg:w="258"/><text x="34.1322%" y="815.50"></text></g><g><title>[python3.9] (137 samples, 0.04%)</title><rect x="33.9156%" y="789" width="0.0378%" height="15" fill="rgb(248,22,39)" fg:x="122863" fg:w="137"/><text x="34.1656%" y="799.50"></text></g><g><title>[python3.9] (137 samples, 0.04%)</title><rect x="33.9156%" y="773" width="0.0378%" height="15" fill="rgb(212,154,20)" fg:x="122863" fg:w="137"/><text x="34.1656%" y="783.50"></text></g><g><title>__libc_start_main (259 samples, 0.07%)</title><rect x="33.8822%" y="821" width="0.0715%" height="15" fill="rgb(236,199,50)" fg:x="122742" fg:w="259"/><text x="34.1322%" y="831.50"></text></g><g><title>_start (274 samples, 0.08%)</title><rect x="33.8822%" y="837" width="0.0756%" height="15" fill="rgb(211,9,17)" fg:x="122742" fg:w="274"/><text x="34.1322%" y="847.50"></text></g><g><title>python3 (821 samples, 0.23%)</title><rect x="33.7378%" y="853" width="0.2266%" height="15" fill="rgb(243,216,36)" fg:x="122219" fg:w="821"/><text x="33.9878%" y="863.50"></text></g><g><title>_dl_map_object_from_fd (38 samples, 0.01%)</title><rect x="33.9813%" y="693" width="0.0105%" height="15" fill="rgb(250,2,10)" fg:x="123101" fg:w="38"/><text x="34.2313%" y="703.50"></text></g><g><title>_dl_catch_exception (47 samples, 0.01%)</title><rect x="33.9802%" y="741" width="0.0130%" height="15" fill="rgb(226,50,48)" fg:x="123097" fg:w="47"/><text x="34.2302%" y="751.50"></text></g><g><title>openaux (47 samples, 0.01%)</title><rect x="33.9802%" y="725" width="0.0130%" height="15" fill="rgb(243,81,16)" fg:x="123097" fg:w="47"/><text x="34.2302%" y="735.50"></text></g><g><title>_dl_map_object (47 samples, 0.01%)</title><rect x="33.9802%" y="709" width="0.0130%" height="15" fill="rgb(250,14,2)" fg:x="123097" fg:w="47"/><text x="34.2302%" y="719.50"></text></g><g><title>_dl_map_object_deps (49 samples, 0.01%)</title><rect x="33.9799%" y="757" width="0.0135%" height="15" fill="rgb(233,135,29)" fg:x="123096" fg:w="49"/><text x="34.2299%" y="767.50"></text></g><g><title>[ld-2.31.so] (81 samples, 0.02%)</title><rect x="33.9794%" y="773" width="0.0224%" height="15" fill="rgb(224,64,43)" fg:x="123094" fg:w="81"/><text x="34.2294%" y="783.50"></text></g><g><title>_dl_start (84 samples, 0.02%)</title><rect x="33.9791%" y="821" width="0.0232%" height="15" fill="rgb(238,84,13)" fg:x="123093" fg:w="84"/><text x="34.2291%" y="831.50"></text></g><g><title>_dl_start_final (84 samples, 0.02%)</title><rect x="33.9791%" y="805" width="0.0232%" height="15" fill="rgb(253,48,26)" fg:x="123093" fg:w="84"/><text x="34.2291%" y="815.50"></text></g><g><title>_dl_sysdep_start (84 samples, 0.02%)</title><rect x="33.9791%" y="789" width="0.0232%" height="15" fill="rgb(205,223,31)" fg:x="123093" fg:w="84"/><text x="34.2291%" y="799.50"></text></g><g><title>_start (87 samples, 0.02%)</title><rect x="33.9788%" y="837" width="0.0240%" height="15" fill="rgb(221,41,32)" fg:x="123092" fg:w="87"/><text x="34.2288%" y="847.50"></text></g><g><title>sed (161 samples, 0.04%)</title><rect x="33.9645%" y="853" width="0.0444%" height="15" fill="rgb(213,158,31)" fg:x="123040" fg:w="161"/><text x="34.2145%" y="863.50"></text></g><g><title>[anon] (705 samples, 0.19%)</title><rect x="34.0128%" y="837" width="0.1946%" height="15" fill="rgb(245,126,43)" fg:x="123215" fg:w="705"/><text x="34.2628%" y="847.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="34.3253%" y="789" width="0.0108%" height="15" fill="rgb(227,7,22)" fg:x="124347" fg:w="39"/><text x="34.5753%" y="799.50"></text></g><g><title>__fput (83 samples, 0.02%)</title><rect x="34.3379%" y="741" width="0.0229%" height="15" fill="rgb(252,90,44)" fg:x="124393" fg:w="83"/><text x="34.5879%" y="751.50"></text></g><g><title>__GI___close_nocancel (137 samples, 0.04%)</title><rect x="34.3247%" y="821" width="0.0378%" height="15" fill="rgb(253,91,0)" fg:x="124345" fg:w="137"/><text x="34.5747%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (136 samples, 0.04%)</title><rect x="34.3250%" y="805" width="0.0375%" height="15" fill="rgb(252,175,49)" fg:x="124346" fg:w="136"/><text x="34.5750%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (96 samples, 0.03%)</title><rect x="34.3360%" y="789" width="0.0265%" height="15" fill="rgb(246,150,1)" fg:x="124386" fg:w="96"/><text x="34.5860%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (96 samples, 0.03%)</title><rect x="34.3360%" y="773" width="0.0265%" height="15" fill="rgb(241,192,25)" fg:x="124386" fg:w="96"/><text x="34.5860%" y="783.50"></text></g><g><title>task_work_run (91 samples, 0.03%)</title><rect x="34.3374%" y="757" width="0.0251%" height="15" fill="rgb(239,187,11)" fg:x="124391" fg:w="91"/><text x="34.5874%" y="767.50"></text></g><g><title>__GI___libc_free (40 samples, 0.01%)</title><rect x="34.3628%" y="821" width="0.0110%" height="15" fill="rgb(218,202,51)" fg:x="124483" fg:w="40"/><text x="34.6128%" y="831.50"></text></g><g><title>link_path_walk.part.0 (43 samples, 0.01%)</title><rect x="34.3805%" y="709" width="0.0119%" height="15" fill="rgb(225,176,8)" fg:x="124547" fg:w="43"/><text x="34.6305%" y="719.50"></text></g><g><title>filename_lookup (61 samples, 0.02%)</title><rect x="34.3780%" y="741" width="0.0168%" height="15" fill="rgb(219,122,41)" fg:x="124538" fg:w="61"/><text x="34.6280%" y="751.50"></text></g><g><title>path_lookupat (56 samples, 0.02%)</title><rect x="34.3794%" y="725" width="0.0155%" height="15" fill="rgb(248,140,20)" fg:x="124543" fg:w="56"/><text x="34.6294%" y="735.50"></text></g><g><title>__do_sys_newlstat (87 samples, 0.02%)</title><rect x="34.3752%" y="773" width="0.0240%" height="15" fill="rgb(245,41,37)" fg:x="124528" fg:w="87"/><text x="34.6252%" y="783.50"></text></g><g><title>vfs_statx (80 samples, 0.02%)</title><rect x="34.3771%" y="757" width="0.0221%" height="15" fill="rgb(235,82,39)" fg:x="124535" fg:w="80"/><text x="34.6271%" y="767.50"></text></g><g><title>do_syscall_64 (91 samples, 0.03%)</title><rect x="34.3747%" y="789" width="0.0251%" height="15" fill="rgb(230,108,42)" fg:x="124526" fg:w="91"/><text x="34.6247%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.03%)</title><rect x="34.3747%" y="805" width="0.0259%" height="15" fill="rgb(215,150,50)" fg:x="124526" fg:w="94"/><text x="34.6247%" y="815.50"></text></g><g><title>__GI___lxstat (98 samples, 0.03%)</title><rect x="34.3738%" y="821" width="0.0271%" height="15" fill="rgb(233,212,5)" fg:x="124523" fg:w="98"/><text x="34.6238%" y="831.50"></text></g><g><title>prepare_to_wait_event (67 samples, 0.02%)</title><rect x="34.4241%" y="629" width="0.0185%" height="15" fill="rgb(245,80,22)" fg:x="124705" fg:w="67"/><text x="34.6741%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (62 samples, 0.02%)</title><rect x="34.4255%" y="613" width="0.0171%" height="15" fill="rgb(238,129,16)" fg:x="124710" fg:w="62"/><text x="34.6755%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (62 samples, 0.02%)</title><rect x="34.4255%" y="597" width="0.0171%" height="15" fill="rgb(240,19,0)" fg:x="124710" fg:w="62"/><text x="34.6755%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (169 samples, 0.05%)</title><rect x="34.4175%" y="645" width="0.0467%" height="15" fill="rgb(232,42,35)" fg:x="124681" fg:w="169"/><text x="34.6675%" y="655.50"></text></g><g><title>schedule (59 samples, 0.02%)</title><rect x="34.4478%" y="629" width="0.0163%" height="15" fill="rgb(223,130,24)" fg:x="124791" fg:w="59"/><text x="34.6978%" y="639.50"></text></g><g><title>__schedule (58 samples, 0.02%)</title><rect x="34.4481%" y="613" width="0.0160%" height="15" fill="rgb(237,16,22)" fg:x="124792" fg:w="58"/><text x="34.6981%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (177 samples, 0.05%)</title><rect x="34.4169%" y="661" width="0.0489%" height="15" fill="rgb(248,192,20)" fg:x="124679" fg:w="177"/><text x="34.6669%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (54 samples, 0.01%)</title><rect x="34.4658%" y="661" width="0.0149%" height="15" fill="rgb(233,167,2)" fg:x="124856" fg:w="54"/><text x="34.7158%" y="671.50"></text></g><g><title>schedule (39 samples, 0.01%)</title><rect x="34.4699%" y="645" width="0.0108%" height="15" fill="rgb(252,71,44)" fg:x="124871" fg:w="39"/><text x="34.7199%" y="655.50"></text></g><g><title>__schedule (39 samples, 0.01%)</title><rect x="34.4699%" y="629" width="0.0108%" height="15" fill="rgb(238,37,47)" fg:x="124871" fg:w="39"/><text x="34.7199%" y="639.50"></text></g><g><title>__wake_up_common (58 samples, 0.02%)</title><rect x="34.4807%" y="645" width="0.0160%" height="15" fill="rgb(214,202,54)" fg:x="124910" fg:w="58"/><text x="34.7307%" y="655.50"></text></g><g><title>autoremove_wake_function (58 samples, 0.02%)</title><rect x="34.4807%" y="629" width="0.0160%" height="15" fill="rgb(254,165,40)" fg:x="124910" fg:w="58"/><text x="34.7307%" y="639.50"></text></g><g><title>try_to_wake_up (57 samples, 0.02%)</title><rect x="34.4809%" y="613" width="0.0157%" height="15" fill="rgb(246,173,38)" fg:x="124911" fg:w="57"/><text x="34.7309%" y="623.50"></text></g><g><title>__wake_up_common_lock (60 samples, 0.02%)</title><rect x="34.4807%" y="661" width="0.0166%" height="15" fill="rgb(215,3,27)" fg:x="124910" fg:w="60"/><text x="34.7307%" y="671.50"></text></g><g><title>btrfs_search_slot (396 samples, 0.11%)</title><rect x="34.4141%" y="677" width="0.1093%" height="15" fill="rgb(239,169,51)" fg:x="124669" fg:w="396"/><text x="34.6641%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (399 samples, 0.11%)</title><rect x="34.4139%" y="693" width="0.1101%" height="15" fill="rgb(212,5,25)" fg:x="124668" fg:w="399"/><text x="34.6639%" y="703.50"></text></g><g><title>btrfs_lookup (416 samples, 0.11%)</title><rect x="34.4097%" y="725" width="0.1148%" height="15" fill="rgb(243,45,17)" fg:x="124653" fg:w="416"/><text x="34.6597%" y="735.50"></text></g><g><title>btrfs_lookup_dentry (416 samples, 0.11%)</title><rect x="34.4097%" y="709" width="0.1148%" height="15" fill="rgb(242,97,9)" fg:x="124653" fg:w="416"/><text x="34.6597%" y="719.50"></text></g><g><title>__lookup_hash (452 samples, 0.12%)</title><rect x="34.4094%" y="741" width="0.1248%" height="15" fill="rgb(228,71,31)" fg:x="124652" fg:w="452"/><text x="34.6594%" y="751.50"></text></g><g><title>link_path_walk.part.0 (80 samples, 0.02%)</title><rect x="34.5389%" y="709" width="0.0221%" height="15" fill="rgb(252,184,16)" fg:x="125121" fg:w="80"/><text x="34.7889%" y="719.50"></text></g><g><title>walk_component (42 samples, 0.01%)</title><rect x="34.5494%" y="693" width="0.0116%" height="15" fill="rgb(236,169,46)" fg:x="125159" fg:w="42"/><text x="34.7994%" y="703.50"></text></g><g><title>filename_parentat (112 samples, 0.03%)</title><rect x="34.5345%" y="741" width="0.0309%" height="15" fill="rgb(207,17,47)" fg:x="125105" fg:w="112"/><text x="34.7845%" y="751.50"></text></g><g><title>path_parentat (106 samples, 0.03%)</title><rect x="34.5361%" y="725" width="0.0293%" height="15" fill="rgb(206,201,28)" fg:x="125111" fg:w="106"/><text x="34.7861%" y="735.50"></text></g><g><title>filename_create (572 samples, 0.16%)</title><rect x="34.4092%" y="757" width="0.1579%" height="15" fill="rgb(224,184,23)" fg:x="124651" fg:w="572"/><text x="34.6592%" y="767.50"></text></g><g><title>prepare_to_wait_event (53 samples, 0.01%)</title><rect x="34.5999%" y="613" width="0.0146%" height="15" fill="rgb(208,139,48)" fg:x="125342" fg:w="53"/><text x="34.8499%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (49 samples, 0.01%)</title><rect x="34.6010%" y="597" width="0.0135%" height="15" fill="rgb(208,130,10)" fg:x="125346" fg:w="49"/><text x="34.8510%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (49 samples, 0.01%)</title><rect x="34.6010%" y="581" width="0.0135%" height="15" fill="rgb(211,213,45)" fg:x="125346" fg:w="49"/><text x="34.8510%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (132 samples, 0.04%)</title><rect x="34.5966%" y="629" width="0.0364%" height="15" fill="rgb(235,100,30)" fg:x="125330" fg:w="132"/><text x="34.8466%" y="639.50"></text></g><g><title>schedule (51 samples, 0.01%)</title><rect x="34.6190%" y="613" width="0.0141%" height="15" fill="rgb(206,144,31)" fg:x="125411" fg:w="51"/><text x="34.8690%" y="623.50"></text></g><g><title>__schedule (51 samples, 0.01%)</title><rect x="34.6190%" y="597" width="0.0141%" height="15" fill="rgb(224,200,26)" fg:x="125411" fg:w="51"/><text x="34.8690%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (133 samples, 0.04%)</title><rect x="34.5966%" y="645" width="0.0367%" height="15" fill="rgb(247,104,53)" fg:x="125330" fg:w="133"/><text x="34.8466%" y="655.50"></text></g><g><title>__btrfs_tree_lock (45 samples, 0.01%)</title><rect x="34.6333%" y="645" width="0.0124%" height="15" fill="rgb(220,14,17)" fg:x="125463" fg:w="45"/><text x="34.8833%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (51 samples, 0.01%)</title><rect x="34.6466%" y="645" width="0.0141%" height="15" fill="rgb(230,140,40)" fg:x="125511" fg:w="51"/><text x="34.8966%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (50 samples, 0.01%)</title><rect x="34.6468%" y="629" width="0.0138%" height="15" fill="rgb(229,2,41)" fg:x="125512" fg:w="50"/><text x="34.8968%" y="639.50"></text></g><g><title>ttwu_do_activate (39 samples, 0.01%)</title><rect x="34.6797%" y="565" width="0.0108%" height="15" fill="rgb(232,89,16)" fg:x="125631" fg:w="39"/><text x="34.9297%" y="575.50"></text></g><g><title>__wake_up_common_lock (65 samples, 0.02%)</title><rect x="34.6744%" y="629" width="0.0179%" height="15" fill="rgb(247,59,52)" fg:x="125612" fg:w="65"/><text x="34.9244%" y="639.50"></text></g><g><title>__wake_up_common (65 samples, 0.02%)</title><rect x="34.6744%" y="613" width="0.0179%" height="15" fill="rgb(226,110,21)" fg:x="125612" fg:w="65"/><text x="34.9244%" y="623.50"></text></g><g><title>autoremove_wake_function (64 samples, 0.02%)</title><rect x="34.6747%" y="597" width="0.0177%" height="15" fill="rgb(224,176,43)" fg:x="125613" fg:w="64"/><text x="34.9247%" y="607.50"></text></g><g><title>try_to_wake_up (64 samples, 0.02%)</title><rect x="34.6747%" y="581" width="0.0177%" height="15" fill="rgb(221,73,6)" fg:x="125613" fg:w="64"/><text x="34.9247%" y="591.50"></text></g><g><title>btrfs_search_slot (366 samples, 0.10%)</title><rect x="34.5930%" y="661" width="0.1010%" height="15" fill="rgb(232,78,19)" fg:x="125317" fg:w="366"/><text x="34.8430%" y="671.50"></text></g><g><title>unlock_up (75 samples, 0.02%)</title><rect x="34.6733%" y="645" width="0.0207%" height="15" fill="rgb(233,112,48)" fg:x="125608" fg:w="75"/><text x="34.9233%" y="655.50"></text></g><g><title>insert_with_overflow (436 samples, 0.12%)</title><rect x="34.5930%" y="693" width="0.1204%" height="15" fill="rgb(243,131,47)" fg:x="125317" fg:w="436"/><text x="34.8430%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (436 samples, 0.12%)</title><rect x="34.5930%" y="677" width="0.1204%" height="15" fill="rgb(226,51,1)" fg:x="125317" fg:w="436"/><text x="34.8430%" y="687.50"></text></g><g><title>setup_items_for_insert (70 samples, 0.02%)</title><rect x="34.6940%" y="661" width="0.0193%" height="15" fill="rgb(247,58,7)" fg:x="125683" fg:w="70"/><text x="34.9440%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (482 samples, 0.13%)</title><rect x="34.5817%" y="709" width="0.1331%" height="15" fill="rgb(209,7,32)" fg:x="125276" fg:w="482"/><text x="34.8317%" y="719.50"></text></g><g><title>btrfs_add_link (499 samples, 0.14%)</title><rect x="34.5809%" y="725" width="0.1377%" height="15" fill="rgb(209,39,41)" fg:x="125273" fg:w="499"/><text x="34.8309%" y="735.50"></text></g><g><title>_raw_spin_lock_irqsave (60 samples, 0.02%)</title><rect x="34.7424%" y="629" width="0.0166%" height="15" fill="rgb(226,182,46)" fg:x="125858" fg:w="60"/><text x="34.9924%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (58 samples, 0.02%)</title><rect x="34.7429%" y="613" width="0.0160%" height="15" fill="rgb(230,219,10)" fg:x="125860" fg:w="58"/><text x="34.9929%" y="623.50"></text></g><g><title>prepare_to_wait_event (68 samples, 0.02%)</title><rect x="34.7407%" y="645" width="0.0188%" height="15" fill="rgb(227,175,30)" fg:x="125852" fg:w="68"/><text x="34.9907%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (153 samples, 0.04%)</title><rect x="34.7352%" y="661" width="0.0422%" height="15" fill="rgb(217,2,50)" fg:x="125832" fg:w="153"/><text x="34.9852%" y="671.50"></text></g><g><title>__btrfs_read_lock_root_node (156 samples, 0.04%)</title><rect x="34.7352%" y="677" width="0.0431%" height="15" fill="rgb(229,160,0)" fg:x="125832" fg:w="156"/><text x="34.9852%" y="687.50"></text></g><g><title>__btrfs_tree_lock (70 samples, 0.02%)</title><rect x="34.7782%" y="677" width="0.0193%" height="15" fill="rgb(207,78,37)" fg:x="125988" fg:w="70"/><text x="35.0282%" y="687.50"></text></g><g><title>schedule (51 samples, 0.01%)</title><rect x="34.7835%" y="661" width="0.0141%" height="15" fill="rgb(225,57,0)" fg:x="126007" fg:w="51"/><text x="35.0335%" y="671.50"></text></g><g><title>__schedule (50 samples, 0.01%)</title><rect x="34.7838%" y="645" width="0.0138%" height="15" fill="rgb(232,154,2)" fg:x="126008" fg:w="50"/><text x="35.0338%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (62 samples, 0.02%)</title><rect x="34.7995%" y="677" width="0.0171%" height="15" fill="rgb(241,212,25)" fg:x="126065" fg:w="62"/><text x="35.0495%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (58 samples, 0.02%)</title><rect x="34.8006%" y="661" width="0.0160%" height="15" fill="rgb(226,69,20)" fg:x="126069" fg:w="58"/><text x="35.0506%" y="671.50"></text></g><g><title>__wake_up_common (59 samples, 0.02%)</title><rect x="34.8326%" y="645" width="0.0163%" height="15" fill="rgb(247,184,54)" fg:x="126185" fg:w="59"/><text x="35.0826%" y="655.50"></text></g><g><title>autoremove_wake_function (59 samples, 0.02%)</title><rect x="34.8326%" y="629" width="0.0163%" height="15" fill="rgb(210,145,0)" fg:x="126185" fg:w="59"/><text x="35.0826%" y="639.50"></text></g><g><title>try_to_wake_up (58 samples, 0.02%)</title><rect x="34.8329%" y="613" width="0.0160%" height="15" fill="rgb(253,82,12)" fg:x="126186" fg:w="58"/><text x="35.0829%" y="623.50"></text></g><g><title>__wake_up_common_lock (61 samples, 0.02%)</title><rect x="34.8323%" y="661" width="0.0168%" height="15" fill="rgb(245,42,11)" fg:x="126184" fg:w="61"/><text x="35.0823%" y="671.50"></text></g><g><title>btrfs_search_slot (426 samples, 0.12%)</title><rect x="34.7330%" y="693" width="0.1176%" height="15" fill="rgb(219,147,32)" fg:x="125824" fg:w="426"/><text x="34.9830%" y="703.50"></text></g><g><title>unlock_up (70 samples, 0.02%)</title><rect x="34.8312%" y="677" width="0.0193%" height="15" fill="rgb(246,12,7)" fg:x="126180" fg:w="70"/><text x="35.0812%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (473 samples, 0.13%)</title><rect x="34.7327%" y="709" width="0.1306%" height="15" fill="rgb(243,50,9)" fg:x="125823" fg:w="473"/><text x="34.9827%" y="719.50"></text></g><g><title>setup_items_for_insert (46 samples, 0.01%)</title><rect x="34.8506%" y="693" width="0.0127%" height="15" fill="rgb(219,149,6)" fg:x="126250" fg:w="46"/><text x="35.1006%" y="703.50"></text></g><g><title>btrfs_new_inode (591 samples, 0.16%)</title><rect x="34.7255%" y="725" width="0.1631%" height="15" fill="rgb(241,51,42)" fg:x="125797" fg:w="591"/><text x="34.9755%" y="735.50"></text></g><g><title>btrfs_delayed_update_inode (45 samples, 0.01%)</title><rect x="34.8887%" y="709" width="0.0124%" height="15" fill="rgb(226,128,27)" fg:x="126388" fg:w="45"/><text x="35.1387%" y="719.50"></text></g><g><title>btrfs_update_inode (50 samples, 0.01%)</title><rect x="34.8887%" y="725" width="0.0138%" height="15" fill="rgb(244,144,4)" fg:x="126388" fg:w="50"/><text x="35.1387%" y="735.50"></text></g><g><title>btrfs_mkdir (1,219 samples, 0.34%)</title><rect x="34.5767%" y="741" width="0.3365%" height="15" fill="rgb(221,4,13)" fg:x="125258" fg:w="1219"/><text x="34.8267%" y="751.50"></text></g><g><title>do_mkdirat (1,849 samples, 0.51%)</title><rect x="34.4050%" y="773" width="0.5104%" height="15" fill="rgb(208,170,28)" fg:x="124636" fg:w="1849"/><text x="34.6550%" y="783.50"></text></g><g><title>vfs_mkdir (1,229 samples, 0.34%)</title><rect x="34.5762%" y="757" width="0.3393%" height="15" fill="rgb(226,131,13)" fg:x="125256" fg:w="1229"/><text x="34.8262%" y="767.50"></text></g><g><title>do_syscall_64 (1,854 samples, 0.51%)</title><rect x="34.4045%" y="789" width="0.5118%" height="15" fill="rgb(215,72,41)" fg:x="124634" fg:w="1854"/><text x="34.6545%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,857 samples, 0.51%)</title><rect x="34.4042%" y="805" width="0.5126%" height="15" fill="rgb(243,108,20)" fg:x="124633" fg:w="1857"/><text x="34.6542%" y="815.50"></text></g><g><title>__GI___mkdir (1,871 samples, 0.52%)</title><rect x="34.4009%" y="821" width="0.5165%" height="15" fill="rgb(230,189,17)" fg:x="124621" fg:w="1871"/><text x="34.6509%" y="831.50"></text></g><g><title>btrfs_filldir (74 samples, 0.02%)</title><rect x="34.9475%" y="709" width="0.0204%" height="15" fill="rgb(220,50,17)" fg:x="126601" fg:w="74"/><text x="35.1975%" y="719.50"></text></g><g><title>filldir64 (72 samples, 0.02%)</title><rect x="34.9480%" y="693" width="0.0199%" height="15" fill="rgb(248,152,48)" fg:x="126603" fg:w="72"/><text x="35.1980%" y="703.50"></text></g><g><title>btrfs_next_old_leaf (47 samples, 0.01%)</title><rect x="34.9751%" y="709" width="0.0130%" height="15" fill="rgb(244,91,11)" fg:x="126701" fg:w="47"/><text x="35.2251%" y="719.50"></text></g><g><title>btrfs_release_path (37 samples, 0.01%)</title><rect x="34.9955%" y="709" width="0.0102%" height="15" fill="rgb(220,157,5)" fg:x="126775" fg:w="37"/><text x="35.2455%" y="719.50"></text></g><g><title>finish_wait (69 samples, 0.02%)</title><rect x="35.0192%" y="661" width="0.0190%" height="15" fill="rgb(253,137,8)" fg:x="126861" fg:w="69"/><text x="35.2692%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (63 samples, 0.02%)</title><rect x="35.0209%" y="645" width="0.0174%" height="15" fill="rgb(217,137,51)" fg:x="126867" fg:w="63"/><text x="35.2709%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (61 samples, 0.02%)</title><rect x="35.0214%" y="629" width="0.0168%" height="15" fill="rgb(218,209,53)" fg:x="126869" fg:w="61"/><text x="35.2714%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (258 samples, 0.07%)</title><rect x="35.0441%" y="645" width="0.0712%" height="15" fill="rgb(249,137,25)" fg:x="126951" fg:w="258"/><text x="35.2941%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (252 samples, 0.07%)</title><rect x="35.0457%" y="629" width="0.0696%" height="15" fill="rgb(239,155,26)" fg:x="126957" fg:w="252"/><text x="35.2957%" y="639.50"></text></g><g><title>prepare_to_wait_event (280 samples, 0.08%)</title><rect x="35.0383%" y="661" width="0.0773%" height="15" fill="rgb(227,85,46)" fg:x="126930" fg:w="280"/><text x="35.2883%" y="671.50"></text></g><g><title>queued_read_lock_slowpath (90 samples, 0.02%)</title><rect x="35.1156%" y="661" width="0.0248%" height="15" fill="rgb(251,107,43)" fg:x="127210" fg:w="90"/><text x="35.3656%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (58 samples, 0.02%)</title><rect x="35.1244%" y="645" width="0.0160%" height="15" fill="rgb(234,170,33)" fg:x="127242" fg:w="58"/><text x="35.3744%" y="655.50"></text></g><g><title>dequeue_task_fair (44 samples, 0.01%)</title><rect x="35.1440%" y="629" width="0.0121%" height="15" fill="rgb(206,29,35)" fg:x="127313" fg:w="44"/><text x="35.3940%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="35.1578%" y="613" width="0.0149%" height="15" fill="rgb(227,138,25)" fg:x="127363" fg:w="54"/><text x="35.4078%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (53 samples, 0.01%)</title><rect x="35.1581%" y="597" width="0.0146%" height="15" fill="rgb(249,131,35)" fg:x="127364" fg:w="53"/><text x="35.4081%" y="607.50"></text></g><g><title>native_write_msr (52 samples, 0.01%)</title><rect x="35.1584%" y="581" width="0.0144%" height="15" fill="rgb(239,6,40)" fg:x="127365" fg:w="52"/><text x="35.4084%" y="591.50"></text></g><g><title>finish_task_switch (62 samples, 0.02%)</title><rect x="35.1561%" y="629" width="0.0171%" height="15" fill="rgb(246,136,47)" fg:x="127357" fg:w="62"/><text x="35.4061%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (633 samples, 0.17%)</title><rect x="35.0137%" y="677" width="0.1747%" height="15" fill="rgb(253,58,26)" fg:x="126841" fg:w="633"/><text x="35.2637%" y="687.50"></text></g><g><title>schedule (174 samples, 0.05%)</title><rect x="35.1404%" y="661" width="0.0480%" height="15" fill="rgb(237,141,10)" fg:x="127300" fg:w="174"/><text x="35.3904%" y="671.50"></text></g><g><title>__schedule (174 samples, 0.05%)</title><rect x="35.1404%" y="645" width="0.0480%" height="15" fill="rgb(234,156,12)" fg:x="127300" fg:w="174"/><text x="35.3904%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (645 samples, 0.18%)</title><rect x="35.0137%" y="693" width="0.1780%" height="15" fill="rgb(243,224,36)" fg:x="126841" fg:w="645"/><text x="35.2637%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (134 samples, 0.04%)</title><rect x="35.1918%" y="693" width="0.0370%" height="15" fill="rgb(205,229,51)" fg:x="127486" fg:w="134"/><text x="35.4418%" y="703.50"></text></g><g><title>schedule (91 samples, 0.03%)</title><rect x="35.2036%" y="677" width="0.0251%" height="15" fill="rgb(223,189,4)" fg:x="127529" fg:w="91"/><text x="35.4536%" y="687.50"></text></g><g><title>__schedule (90 samples, 0.02%)</title><rect x="35.2039%" y="661" width="0.0248%" height="15" fill="rgb(249,167,54)" fg:x="127530" fg:w="90"/><text x="35.4539%" y="671.50"></text></g><g><title>ttwu_do_activate (67 samples, 0.02%)</title><rect x="35.2539%" y="629" width="0.0185%" height="15" fill="rgb(218,34,28)" fg:x="127711" fg:w="67"/><text x="35.5039%" y="639.50"></text></g><g><title>__wake_up_common (175 samples, 0.05%)</title><rect x="35.2290%" y="677" width="0.0483%" height="15" fill="rgb(232,109,42)" fg:x="127621" fg:w="175"/><text x="35.4790%" y="687.50"></text></g><g><title>autoremove_wake_function (172 samples, 0.05%)</title><rect x="35.2298%" y="661" width="0.0475%" height="15" fill="rgb(248,214,46)" fg:x="127624" fg:w="172"/><text x="35.4798%" y="671.50"></text></g><g><title>try_to_wake_up (167 samples, 0.05%)</title><rect x="35.2312%" y="645" width="0.0461%" height="15" fill="rgb(244,216,40)" fg:x="127629" fg:w="167"/><text x="35.4812%" y="655.50"></text></g><g><title>__wake_up_common_lock (180 samples, 0.05%)</title><rect x="35.2287%" y="693" width="0.0497%" height="15" fill="rgb(231,226,31)" fg:x="127620" fg:w="180"/><text x="35.4787%" y="703.50"></text></g><g><title>btrfs_tree_read_lock_atomic (77 samples, 0.02%)</title><rect x="35.2848%" y="693" width="0.0213%" height="15" fill="rgb(238,38,43)" fg:x="127823" fg:w="77"/><text x="35.5348%" y="703.50"></text></g><g><title>queued_read_lock_slowpath (67 samples, 0.02%)</title><rect x="35.2875%" y="677" width="0.0185%" height="15" fill="rgb(208,88,43)" fg:x="127833" fg:w="67"/><text x="35.5375%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (37 samples, 0.01%)</title><rect x="35.3096%" y="693" width="0.0102%" height="15" fill="rgb(205,136,37)" fg:x="127913" fg:w="37"/><text x="35.5596%" y="703.50"></text></g><g><title>__radix_tree_lookup (39 samples, 0.01%)</title><rect x="35.3328%" y="661" width="0.0108%" height="15" fill="rgb(237,34,14)" fg:x="127997" fg:w="39"/><text x="35.5828%" y="671.50"></text></g><g><title>find_extent_buffer (65 samples, 0.02%)</title><rect x="35.3303%" y="677" width="0.0179%" height="15" fill="rgb(236,193,44)" fg:x="127988" fg:w="65"/><text x="35.5803%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (109 samples, 0.03%)</title><rect x="35.3198%" y="693" width="0.0301%" height="15" fill="rgb(231,48,10)" fg:x="127950" fg:w="109"/><text x="35.5698%" y="703.50"></text></g><g><title>btrfs_search_slot (1,257 samples, 0.35%)</title><rect x="35.0057%" y="709" width="0.3470%" height="15" fill="rgb(213,141,34)" fg:x="126812" fg:w="1257"/><text x="35.2557%" y="719.50"></text></g><g><title>btrfs_real_readdir (1,614 samples, 0.45%)</title><rect x="34.9389%" y="725" width="0.4455%" height="15" fill="rgb(249,130,34)" fg:x="126570" fg:w="1614"/><text x="35.1889%" y="735.50"></text></g><g><title>read_extent_buffer (62 samples, 0.02%)</title><rect x="35.3673%" y="709" width="0.0171%" height="15" fill="rgb(219,42,41)" fg:x="128122" fg:w="62"/><text x="35.6173%" y="719.50"></text></g><g><title>btrfs_delayed_update_inode (55 samples, 0.02%)</title><rect x="35.3974%" y="677" width="0.0152%" height="15" fill="rgb(224,100,54)" fg:x="128231" fg:w="55"/><text x="35.6474%" y="687.50"></text></g><g><title>btrfs_update_inode (60 samples, 0.02%)</title><rect x="35.3969%" y="693" width="0.0166%" height="15" fill="rgb(229,200,27)" fg:x="128229" fg:w="60"/><text x="35.6469%" y="703.50"></text></g><g><title>btrfs_dirty_inode (93 samples, 0.03%)</title><rect x="35.3930%" y="709" width="0.0257%" height="15" fill="rgb(217,118,10)" fg:x="128215" fg:w="93"/><text x="35.6430%" y="719.50"></text></g><g><title>touch_atime (107 samples, 0.03%)</title><rect x="35.3897%" y="725" width="0.0295%" height="15" fill="rgb(206,22,3)" fg:x="128203" fg:w="107"/><text x="35.6397%" y="735.50"></text></g><g><title>iterate_dir (1,753 samples, 0.48%)</title><rect x="34.9364%" y="741" width="0.4839%" height="15" fill="rgb(232,163,46)" fg:x="126561" fg:w="1753"/><text x="35.1864%" y="751.50"></text></g><g><title>do_syscall_64 (1,775 samples, 0.49%)</title><rect x="34.9306%" y="773" width="0.4900%" height="15" fill="rgb(206,95,13)" fg:x="126540" fg:w="1775"/><text x="35.1806%" y="783.50"></text></g><g><title>__x64_sys_getdents64 (1,774 samples, 0.49%)</title><rect x="34.9309%" y="757" width="0.4897%" height="15" fill="rgb(253,154,18)" fg:x="126541" fg:w="1774"/><text x="35.1809%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,790 samples, 0.49%)</title><rect x="34.9298%" y="789" width="0.4941%" height="15" fill="rgb(219,32,23)" fg:x="126537" fg:w="1790"/><text x="35.1798%" y="799.50"></text></g><g><title>__GI___readdir64 (1,838 samples, 0.51%)</title><rect x="34.9174%" y="821" width="0.5074%" height="15" fill="rgb(230,191,45)" fg:x="126492" fg:w="1838"/><text x="35.1674%" y="831.50"></text></g><g><title>__GI___getdents64 (1,807 samples, 0.50%)</title><rect x="34.9259%" y="805" width="0.4988%" height="15" fill="rgb(229,64,36)" fg:x="126523" fg:w="1807"/><text x="35.1759%" y="815.50"></text></g><g><title>link_path_walk.part.0 (38 samples, 0.01%)</title><rect x="35.4289%" y="709" width="0.0105%" height="15" fill="rgb(205,129,25)" fg:x="128345" fg:w="38"/><text x="35.6789%" y="719.50"></text></g><g><title>path_lookupat (49 samples, 0.01%)</title><rect x="35.4278%" y="725" width="0.0135%" height="15" fill="rgb(254,112,7)" fg:x="128341" fg:w="49"/><text x="35.6778%" y="735.50"></text></g><g><title>filename_lookup (52 samples, 0.01%)</title><rect x="35.4272%" y="741" width="0.0144%" height="15" fill="rgb(226,53,48)" fg:x="128339" fg:w="52"/><text x="35.6772%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.02%)</title><rect x="35.4258%" y="805" width="0.0193%" height="15" fill="rgb(214,153,38)" fg:x="128334" fg:w="70"/><text x="35.6758%" y="815.50"></text></g><g><title>do_syscall_64 (70 samples, 0.02%)</title><rect x="35.4258%" y="789" width="0.0193%" height="15" fill="rgb(243,101,7)" fg:x="128334" fg:w="70"/><text x="35.6758%" y="799.50"></text></g><g><title>__do_sys_newstat (70 samples, 0.02%)</title><rect x="35.4258%" y="773" width="0.0193%" height="15" fill="rgb(240,140,22)" fg:x="128334" fg:w="70"/><text x="35.6758%" y="783.50"></text></g><g><title>vfs_statx (69 samples, 0.02%)</title><rect x="35.4261%" y="757" width="0.0190%" height="15" fill="rgb(235,114,2)" fg:x="128335" fg:w="69"/><text x="35.6761%" y="767.50"></text></g><g><title>__GI___xstat (74 samples, 0.02%)</title><rect x="35.4250%" y="821" width="0.0204%" height="15" fill="rgb(242,59,12)" fg:x="128331" fg:w="74"/><text x="35.6750%" y="831.50"></text></g><g><title>btrfs_lookup_dir_item (50 samples, 0.01%)</title><rect x="35.4510%" y="677" width="0.0138%" height="15" fill="rgb(252,134,9)" fg:x="128425" fg:w="50"/><text x="35.7010%" y="687.50"></text></g><g><title>btrfs_search_slot (50 samples, 0.01%)</title><rect x="35.4510%" y="661" width="0.0138%" height="15" fill="rgb(236,4,44)" fg:x="128425" fg:w="50"/><text x="35.7010%" y="671.50"></text></g><g><title>__btrfs_unlink_inode (66 samples, 0.02%)</title><rect x="35.4476%" y="693" width="0.0182%" height="15" fill="rgb(254,172,41)" fg:x="128413" fg:w="66"/><text x="35.6976%" y="703.50"></text></g><g><title>btrfs_rmdir (80 samples, 0.02%)</title><rect x="35.4474%" y="709" width="0.0221%" height="15" fill="rgb(244,63,20)" fg:x="128412" fg:w="80"/><text x="35.6974%" y="719.50"></text></g><g><title>btrfs_del_orphan_item (44 samples, 0.01%)</title><rect x="35.4797%" y="677" width="0.0121%" height="15" fill="rgb(250,73,31)" fg:x="128529" fg:w="44"/><text x="35.7297%" y="687.50"></text></g><g><title>btrfs_search_slot (44 samples, 0.01%)</title><rect x="35.4797%" y="661" width="0.0121%" height="15" fill="rgb(241,38,36)" fg:x="128529" fg:w="44"/><text x="35.7297%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (43 samples, 0.01%)</title><rect x="35.4918%" y="677" width="0.0119%" height="15" fill="rgb(245,211,2)" fg:x="128573" fg:w="43"/><text x="35.7418%" y="687.50"></text></g><g><title>evict (122 samples, 0.03%)</title><rect x="35.4703%" y="709" width="0.0337%" height="15" fill="rgb(206,120,28)" fg:x="128495" fg:w="122"/><text x="35.7203%" y="719.50"></text></g><g><title>btrfs_evict_inode (122 samples, 0.03%)</title><rect x="35.4703%" y="693" width="0.0337%" height="15" fill="rgb(211,59,34)" fg:x="128495" fg:w="122"/><text x="35.7203%" y="703.50"></text></g><g><title>__GI_remove (216 samples, 0.06%)</title><rect x="35.4454%" y="805" width="0.0596%" height="15" fill="rgb(233,168,5)" fg:x="128405" fg:w="216"/><text x="35.6954%" y="815.50"></text></g><g><title>__GI___rmdir (215 samples, 0.06%)</title><rect x="35.4457%" y="789" width="0.0593%" height="15" fill="rgb(234,33,13)" fg:x="128406" fg:w="215"/><text x="35.6957%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (213 samples, 0.06%)</title><rect x="35.4463%" y="773" width="0.0588%" height="15" fill="rgb(231,150,26)" fg:x="128408" fg:w="213"/><text x="35.6963%" y="783.50"></text></g><g><title>do_syscall_64 (213 samples, 0.06%)</title><rect x="35.4463%" y="757" width="0.0588%" height="15" fill="rgb(217,191,4)" fg:x="128408" fg:w="213"/><text x="35.6963%" y="767.50"></text></g><g><title>do_rmdir (212 samples, 0.06%)</title><rect x="35.4465%" y="741" width="0.0585%" height="15" fill="rgb(246,198,38)" fg:x="128409" fg:w="212"/><text x="35.6965%" y="751.50"></text></g><g><title>vfs_rmdir.part.0 (209 samples, 0.06%)</title><rect x="35.4474%" y="725" width="0.0577%" height="15" fill="rgb(245,64,37)" fg:x="128412" fg:w="209"/><text x="35.6974%" y="735.50"></text></g><g><title>btrfs_lookup (37 samples, 0.01%)</title><rect x="35.5070%" y="725" width="0.0102%" height="15" fill="rgb(250,30,36)" fg:x="128628" fg:w="37"/><text x="35.7570%" y="735.50"></text></g><g><title>btrfs_lookup_dentry (37 samples, 0.01%)</title><rect x="35.5070%" y="709" width="0.0102%" height="15" fill="rgb(217,86,53)" fg:x="128628" fg:w="37"/><text x="35.7570%" y="719.50"></text></g><g><title>btrfs_lookup_dir_item (37 samples, 0.01%)</title><rect x="35.5070%" y="693" width="0.0102%" height="15" fill="rgb(228,157,16)" fg:x="128628" fg:w="37"/><text x="35.7570%" y="703.50"></text></g><g><title>__lookup_hash (41 samples, 0.01%)</title><rect x="35.5070%" y="741" width="0.0113%" height="15" fill="rgb(217,59,31)" fg:x="128628" fg:w="41"/><text x="35.7570%" y="751.50"></text></g><g><title>__GI_remove (307 samples, 0.08%)</title><rect x="35.4454%" y="821" width="0.0847%" height="15" fill="rgb(237,138,41)" fg:x="128405" fg:w="307"/><text x="35.6954%" y="831.50"></text></g><g><title>__unlink (91 samples, 0.03%)</title><rect x="35.5051%" y="805" width="0.0251%" height="15" fill="rgb(227,91,49)" fg:x="128621" fg:w="91"/><text x="35.7551%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.02%)</title><rect x="35.5056%" y="789" width="0.0246%" height="15" fill="rgb(247,21,44)" fg:x="128623" fg:w="89"/><text x="35.7556%" y="799.50"></text></g><g><title>do_syscall_64 (89 samples, 0.02%)</title><rect x="35.5056%" y="773" width="0.0246%" height="15" fill="rgb(219,210,51)" fg:x="128623" fg:w="89"/><text x="35.7556%" y="783.50"></text></g><g><title>do_unlinkat (84 samples, 0.02%)</title><rect x="35.5070%" y="757" width="0.0232%" height="15" fill="rgb(209,140,6)" fg:x="128628" fg:w="84"/><text x="35.7570%" y="767.50"></text></g><g><title>__switch_to_asm (85 samples, 0.02%)</title><rect x="35.5534%" y="805" width="0.0235%" height="15" fill="rgb(221,188,24)" fg:x="128796" fg:w="85"/><text x="35.8034%" y="815.50"></text></g><g><title>_raw_spin_lock_irqsave (74 samples, 0.02%)</title><rect x="35.5854%" y="805" width="0.0204%" height="15" fill="rgb(232,154,20)" fg:x="128912" fg:w="74"/><text x="35.8354%" y="815.50"></text></g><g><title>memset_erms (102 samples, 0.03%)</title><rect x="35.6690%" y="725" width="0.0282%" height="15" fill="rgb(244,137,50)" fg:x="129215" fg:w="102"/><text x="35.9190%" y="735.50"></text></g><g><title>kmem_cache_alloc (163 samples, 0.04%)</title><rect x="35.6547%" y="741" width="0.0450%" height="15" fill="rgb(225,185,43)" fg:x="129163" fg:w="163"/><text x="35.9047%" y="751.50"></text></g><g><title>__virt_addr_valid (61 samples, 0.02%)</title><rect x="35.7397%" y="709" width="0.0168%" height="15" fill="rgb(213,205,38)" fg:x="129471" fg:w="61"/><text x="35.9897%" y="719.50"></text></g><g><title>__x64_sys_unlinkat (425 samples, 0.12%)</title><rect x="35.6428%" y="773" width="0.1173%" height="15" fill="rgb(236,73,12)" fg:x="129120" fg:w="425"/><text x="35.8928%" y="783.50"></text></g><g><title>getname_flags.part.0 (395 samples, 0.11%)</title><rect x="35.6511%" y="757" width="0.1090%" height="15" fill="rgb(235,219,13)" fg:x="129150" fg:w="395"/><text x="35.9011%" y="767.50"></text></g><g><title>strncpy_from_user (219 samples, 0.06%)</title><rect x="35.6997%" y="741" width="0.0605%" height="15" fill="rgb(218,59,36)" fg:x="129326" fg:w="219"/><text x="35.9497%" y="751.50"></text></g><g><title>__check_object_size (129 samples, 0.04%)</title><rect x="35.7245%" y="725" width="0.0356%" height="15" fill="rgb(205,110,39)" fg:x="129416" fg:w="129"/><text x="35.9745%" y="735.50"></text></g><g><title>filename_parentat (55 samples, 0.02%)</title><rect x="35.7737%" y="757" width="0.0152%" height="15" fill="rgb(218,206,42)" fg:x="129594" fg:w="55"/><text x="36.0237%" y="767.50"></text></g><g><title>path_parentat (53 samples, 0.01%)</title><rect x="35.7742%" y="741" width="0.0146%" height="15" fill="rgb(248,125,24)" fg:x="129596" fg:w="53"/><text x="36.0242%" y="751.50"></text></g><g><title>btrfs_del_dir_entries_in_log (66 samples, 0.02%)</title><rect x="35.8148%" y="709" width="0.0182%" height="15" fill="rgb(242,28,27)" fg:x="129743" fg:w="66"/><text x="36.0648%" y="719.50"></text></g><g><title>btrfs_search_slot (74 samples, 0.02%)</title><rect x="35.8377%" y="677" width="0.0204%" height="15" fill="rgb(216,228,15)" fg:x="129826" fg:w="74"/><text x="36.0877%" y="687.50"></text></g><g><title>btrfs_del_inode_ref (109 samples, 0.03%)</title><rect x="35.8336%" y="693" width="0.0301%" height="15" fill="rgb(235,116,46)" fg:x="129811" fg:w="109"/><text x="36.0836%" y="703.50"></text></g><g><title>btrfs_del_inode_ref_in_log (117 samples, 0.03%)</title><rect x="35.8330%" y="709" width="0.0323%" height="15" fill="rgb(224,18,32)" fg:x="129809" fg:w="117"/><text x="36.0830%" y="719.50"></text></g><g><title>btrfs_get_token_32 (38 samples, 0.01%)</title><rect x="35.8799%" y="693" width="0.0105%" height="15" fill="rgb(252,5,12)" fg:x="129979" fg:w="38"/><text x="36.1299%" y="703.50"></text></g><g><title>memmove_extent_buffer (40 samples, 0.01%)</title><rect x="35.8990%" y="693" width="0.0110%" height="15" fill="rgb(251,36,5)" fg:x="130048" fg:w="40"/><text x="36.1490%" y="703.50"></text></g><g><title>btrfs_del_items (171 samples, 0.05%)</title><rect x="35.8653%" y="709" width="0.0472%" height="15" fill="rgb(217,53,14)" fg:x="129926" fg:w="171"/><text x="36.1153%" y="719.50"></text></g><g><title>_raw_spin_lock_irqsave (86 samples, 0.02%)</title><rect x="35.9503%" y="629" width="0.0237%" height="15" fill="rgb(215,86,45)" fg:x="130234" fg:w="86"/><text x="36.2003%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (81 samples, 0.02%)</title><rect x="35.9517%" y="613" width="0.0224%" height="15" fill="rgb(242,169,11)" fg:x="130239" fg:w="81"/><text x="36.2017%" y="623.50"></text></g><g><title>prepare_to_wait_event (96 samples, 0.03%)</title><rect x="35.9484%" y="645" width="0.0265%" height="15" fill="rgb(211,213,45)" fg:x="130227" fg:w="96"/><text x="36.1984%" y="655.50"></text></g><g><title>queued_read_lock_slowpath (44 samples, 0.01%)</title><rect x="35.9749%" y="645" width="0.0121%" height="15" fill="rgb(205,88,11)" fg:x="130323" fg:w="44"/><text x="36.2249%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (219 samples, 0.06%)</title><rect x="35.9385%" y="661" width="0.0605%" height="15" fill="rgb(252,69,26)" fg:x="130191" fg:w="219"/><text x="36.1885%" y="671.50"></text></g><g><title>schedule (43 samples, 0.01%)</title><rect x="35.9870%" y="645" width="0.0119%" height="15" fill="rgb(246,123,37)" fg:x="130367" fg:w="43"/><text x="36.2370%" y="655.50"></text></g><g><title>__schedule (40 samples, 0.01%)</title><rect x="35.9879%" y="629" width="0.0110%" height="15" fill="rgb(212,205,5)" fg:x="130370" fg:w="40"/><text x="36.2379%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (221 samples, 0.06%)</title><rect x="35.9382%" y="677" width="0.0610%" height="15" fill="rgb(253,148,0)" fg:x="130190" fg:w="221"/><text x="36.1882%" y="687.50"></text></g><g><title>__btrfs_tree_lock (49 samples, 0.01%)</title><rect x="35.9992%" y="677" width="0.0135%" height="15" fill="rgb(239,22,4)" fg:x="130411" fg:w="49"/><text x="36.2492%" y="687.50"></text></g><g><title>schedule (46 samples, 0.01%)</title><rect x="36.0000%" y="661" width="0.0127%" height="15" fill="rgb(226,26,53)" fg:x="130414" fg:w="46"/><text x="36.2500%" y="671.50"></text></g><g><title>__schedule (45 samples, 0.01%)</title><rect x="36.0003%" y="645" width="0.0124%" height="15" fill="rgb(225,229,45)" fg:x="130415" fg:w="45"/><text x="36.2503%" y="655.50"></text></g><g><title>finish_wait (146 samples, 0.04%)</title><rect x="36.0246%" y="645" width="0.0403%" height="15" fill="rgb(220,60,37)" fg:x="130503" fg:w="146"/><text x="36.2746%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (139 samples, 0.04%)</title><rect x="36.0265%" y="629" width="0.0384%" height="15" fill="rgb(217,180,35)" fg:x="130510" fg:w="139"/><text x="36.2765%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (134 samples, 0.04%)</title><rect x="36.0279%" y="613" width="0.0370%" height="15" fill="rgb(229,7,53)" fg:x="130515" fg:w="134"/><text x="36.2779%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (487 samples, 0.13%)</title><rect x="36.0781%" y="629" width="0.1344%" height="15" fill="rgb(254,137,3)" fg:x="130697" fg:w="487"/><text x="36.3281%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (461 samples, 0.13%)</title><rect x="36.0853%" y="613" width="0.1273%" height="15" fill="rgb(215,140,41)" fg:x="130723" fg:w="461"/><text x="36.3353%" y="623.50"></text></g><g><title>prepare_to_wait_event (541 samples, 0.15%)</title><rect x="36.0652%" y="645" width="0.1493%" height="15" fill="rgb(250,80,15)" fg:x="130650" fg:w="541"/><text x="36.3152%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (186 samples, 0.05%)</title><rect x="36.2145%" y="645" width="0.0513%" height="15" fill="rgb(252,191,6)" fg:x="131191" fg:w="186"/><text x="36.4645%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (108 samples, 0.03%)</title><rect x="36.2360%" y="629" width="0.0298%" height="15" fill="rgb(246,217,18)" fg:x="131269" fg:w="108"/><text x="36.4860%" y="639.50"></text></g><g><title>dequeue_entity (60 samples, 0.02%)</title><rect x="36.2774%" y="597" width="0.0166%" height="15" fill="rgb(223,93,7)" fg:x="131419" fg:w="60"/><text x="36.5274%" y="607.50"></text></g><g><title>dequeue_task_fair (73 samples, 0.02%)</title><rect x="36.2758%" y="613" width="0.0202%" height="15" fill="rgb(225,55,52)" fg:x="131413" fg:w="73"/><text x="36.5258%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.03%)</title><rect x="36.3006%" y="597" width="0.0276%" height="15" fill="rgb(240,31,24)" fg:x="131503" fg:w="100"/><text x="36.5506%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (95 samples, 0.03%)</title><rect x="36.3020%" y="581" width="0.0262%" height="15" fill="rgb(205,56,52)" fg:x="131508" fg:w="95"/><text x="36.5520%" y="591.50"></text></g><g><title>native_write_msr (93 samples, 0.03%)</title><rect x="36.3026%" y="565" width="0.0257%" height="15" fill="rgb(246,146,12)" fg:x="131510" fg:w="93"/><text x="36.5526%" y="575.50"></text></g><g><title>finish_task_switch (123 samples, 0.03%)</title><rect x="36.2959%" y="613" width="0.0340%" height="15" fill="rgb(239,84,36)" fg:x="131486" fg:w="123"/><text x="36.5459%" y="623.50"></text></g><g><title>psi_task_change (82 samples, 0.02%)</title><rect x="36.3379%" y="613" width="0.0226%" height="15" fill="rgb(207,41,40)" fg:x="131638" fg:w="82"/><text x="36.5879%" y="623.50"></text></g><g><title>psi_group_change (69 samples, 0.02%)</title><rect x="36.3415%" y="597" width="0.0190%" height="15" fill="rgb(241,179,25)" fg:x="131651" fg:w="69"/><text x="36.5915%" y="607.50"></text></g><g><title>__btrfs_tree_lock (1,274 samples, 0.35%)</title><rect x="36.0141%" y="661" width="0.3517%" height="15" fill="rgb(210,0,34)" fg:x="130465" fg:w="1274"/><text x="36.2641%" y="671.50"></text></g><g><title>schedule (362 samples, 0.10%)</title><rect x="36.2658%" y="645" width="0.0999%" height="15" fill="rgb(225,217,29)" fg:x="131377" fg:w="362"/><text x="36.5158%" y="655.50"></text></g><g><title>__schedule (362 samples, 0.10%)</title><rect x="36.2658%" y="629" width="0.0999%" height="15" fill="rgb(216,191,38)" fg:x="131377" fg:w="362"/><text x="36.5158%" y="639.50"></text></g><g><title>btrfs_lock_root_node (1,277 samples, 0.35%)</title><rect x="36.0138%" y="677" width="0.3525%" height="15" fill="rgb(232,140,52)" fg:x="130464" fg:w="1277"/><text x="36.2638%" y="687.50"></text></g><g><title>btrfs_try_tree_write_lock (51 samples, 0.01%)</title><rect x="36.3683%" y="677" width="0.0141%" height="15" fill="rgb(223,158,51)" fg:x="131748" fg:w="51"/><text x="36.6183%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (46 samples, 0.01%)</title><rect x="36.3696%" y="661" width="0.0127%" height="15" fill="rgb(235,29,51)" fg:x="131753" fg:w="46"/><text x="36.6196%" y="671.50"></text></g><g><title>select_task_rq_fair (48 samples, 0.01%)</title><rect x="36.4204%" y="597" width="0.0133%" height="15" fill="rgb(215,181,18)" fg:x="131937" fg:w="48"/><text x="36.6704%" y="607.50"></text></g><g><title>enqueue_task_fair (45 samples, 0.01%)</title><rect x="36.4364%" y="581" width="0.0124%" height="15" fill="rgb(227,125,34)" fg:x="131995" fg:w="45"/><text x="36.6864%" y="591.50"></text></g><g><title>ttwu_do_activate (97 samples, 0.03%)</title><rect x="36.4356%" y="597" width="0.0268%" height="15" fill="rgb(230,197,49)" fg:x="131992" fg:w="97"/><text x="36.6856%" y="607.50"></text></g><g><title>psi_task_change (49 samples, 0.01%)</title><rect x="36.4489%" y="581" width="0.0135%" height="15" fill="rgb(239,141,16)" fg:x="132040" fg:w="49"/><text x="36.6989%" y="591.50"></text></g><g><title>psi_group_change (45 samples, 0.01%)</title><rect x="36.4500%" y="565" width="0.0124%" height="15" fill="rgb(225,105,43)" fg:x="132044" fg:w="45"/><text x="36.7000%" y="575.50"></text></g><g><title>__wake_up_common (233 samples, 0.06%)</title><rect x="36.4036%" y="645" width="0.0643%" height="15" fill="rgb(214,131,14)" fg:x="131876" fg:w="233"/><text x="36.6536%" y="655.50"></text></g><g><title>autoremove_wake_function (231 samples, 0.06%)</title><rect x="36.4041%" y="629" width="0.0638%" height="15" fill="rgb(229,177,11)" fg:x="131878" fg:w="231"/><text x="36.6541%" y="639.50"></text></g><g><title>try_to_wake_up (229 samples, 0.06%)</title><rect x="36.4047%" y="613" width="0.0632%" height="15" fill="rgb(231,180,14)" fg:x="131880" fg:w="229"/><text x="36.6547%" y="623.50"></text></g><g><title>__wake_up_common_lock (241 samples, 0.07%)</title><rect x="36.4033%" y="661" width="0.0665%" height="15" fill="rgb(232,88,2)" fg:x="131875" fg:w="241"/><text x="36.6533%" y="671.50"></text></g><g><title>btrfs_search_slot (1,944 samples, 0.54%)</title><rect x="35.9343%" y="693" width="0.5366%" height="15" fill="rgb(205,220,8)" fg:x="130176" fg:w="1944"/><text x="36.1843%" y="703.50"></text></g><g><title>unlock_up (249 samples, 0.07%)</title><rect x="36.4022%" y="677" width="0.0687%" height="15" fill="rgb(225,23,53)" fg:x="131871" fg:w="249"/><text x="36.6522%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (1,969 samples, 0.54%)</title><rect x="35.9288%" y="709" width="0.5435%" height="15" fill="rgb(213,62,29)" fg:x="130156" fg:w="1969"/><text x="36.1788%" y="719.50"></text></g><g><title>__wake_up_common (74 samples, 0.02%)</title><rect x="36.4723%" y="677" width="0.0204%" height="15" fill="rgb(227,75,7)" fg:x="132125" fg:w="74"/><text x="36.7223%" y="687.50"></text></g><g><title>autoremove_wake_function (73 samples, 0.02%)</title><rect x="36.4726%" y="661" width="0.0202%" height="15" fill="rgb(207,105,14)" fg:x="132126" fg:w="73"/><text x="36.7226%" y="671.50"></text></g><g><title>try_to_wake_up (71 samples, 0.02%)</title><rect x="36.4732%" y="645" width="0.0196%" height="15" fill="rgb(245,62,29)" fg:x="132128" fg:w="71"/><text x="36.7232%" y="655.50"></text></g><g><title>__wake_up_common_lock (75 samples, 0.02%)</title><rect x="36.4723%" y="693" width="0.0207%" height="15" fill="rgb(236,202,4)" fg:x="132125" fg:w="75"/><text x="36.7223%" y="703.50"></text></g><g><title>btrfs_release_path (86 samples, 0.02%)</title><rect x="36.4723%" y="709" width="0.0237%" height="15" fill="rgb(250,67,1)" fg:x="132125" fg:w="86"/><text x="36.7223%" y="719.50"></text></g><g><title>__btrfs_unlink_inode (2,514 samples, 0.69%)</title><rect x="35.8117%" y="725" width="0.6940%" height="15" fill="rgb(253,115,44)" fg:x="129732" fg:w="2514"/><text x="36.0617%" y="735.50"></text></g><g><title>_raw_spin_lock_irqsave (124 samples, 0.03%)</title><rect x="36.5388%" y="613" width="0.0342%" height="15" fill="rgb(251,139,18)" fg:x="132366" fg:w="124"/><text x="36.7888%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (123 samples, 0.03%)</title><rect x="36.5391%" y="597" width="0.0340%" height="15" fill="rgb(218,22,32)" fg:x="132367" fg:w="123"/><text x="36.7891%" y="607.50"></text></g><g><title>prepare_to_wait_event (133 samples, 0.04%)</title><rect x="36.5369%" y="629" width="0.0367%" height="15" fill="rgb(243,53,5)" fg:x="132359" fg:w="133"/><text x="36.7869%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (282 samples, 0.08%)</title><rect x="36.5259%" y="645" width="0.0778%" height="15" fill="rgb(227,56,16)" fg:x="132319" fg:w="282"/><text x="36.7759%" y="655.50"></text></g><g><title>schedule (79 samples, 0.02%)</title><rect x="36.5819%" y="629" width="0.0218%" height="15" fill="rgb(245,53,0)" fg:x="132522" fg:w="79"/><text x="36.8319%" y="639.50"></text></g><g><title>__schedule (79 samples, 0.02%)</title><rect x="36.5819%" y="613" width="0.0218%" height="15" fill="rgb(216,170,35)" fg:x="132522" fg:w="79"/><text x="36.8319%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (289 samples, 0.08%)</title><rect x="36.5256%" y="661" width="0.0798%" height="15" fill="rgb(211,200,8)" fg:x="132318" fg:w="289"/><text x="36.7756%" y="671.50"></text></g><g><title>__btrfs_tree_lock (89 samples, 0.02%)</title><rect x="36.6054%" y="661" width="0.0246%" height="15" fill="rgb(228,204,44)" fg:x="132607" fg:w="89"/><text x="36.8554%" y="671.50"></text></g><g><title>schedule (55 samples, 0.02%)</title><rect x="36.6148%" y="645" width="0.0152%" height="15" fill="rgb(214,121,17)" fg:x="132641" fg:w="55"/><text x="36.8648%" y="655.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="36.6150%" y="629" width="0.0149%" height="15" fill="rgb(233,64,38)" fg:x="132642" fg:w="54"/><text x="36.8650%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (41 samples, 0.01%)</title><rect x="36.6424%" y="661" width="0.0113%" height="15" fill="rgb(253,54,19)" fg:x="132741" fg:w="41"/><text x="36.8924%" y="671.50"></text></g><g><title>ttwu_do_activate (51 samples, 0.01%)</title><rect x="36.6738%" y="581" width="0.0141%" height="15" fill="rgb(253,94,18)" fg:x="132855" fg:w="51"/><text x="36.9238%" y="591.50"></text></g><g><title>__wake_up_common_lock (131 samples, 0.04%)</title><rect x="36.6556%" y="645" width="0.0362%" height="15" fill="rgb(227,57,52)" fg:x="132789" fg:w="131"/><text x="36.9056%" y="655.50"></text></g><g><title>__wake_up_common (131 samples, 0.04%)</title><rect x="36.6556%" y="629" width="0.0362%" height="15" fill="rgb(230,228,50)" fg:x="132789" fg:w="131"/><text x="36.9056%" y="639.50"></text></g><g><title>autoremove_wake_function (128 samples, 0.04%)</title><rect x="36.6564%" y="613" width="0.0353%" height="15" fill="rgb(217,205,27)" fg:x="132792" fg:w="128"/><text x="36.9064%" y="623.50"></text></g><g><title>try_to_wake_up (126 samples, 0.03%)</title><rect x="36.6570%" y="597" width="0.0348%" height="15" fill="rgb(252,71,50)" fg:x="132794" fg:w="126"/><text x="36.9070%" y="607.50"></text></g><g><title>btrfs_search_slot (625 samples, 0.17%)</title><rect x="36.5206%" y="677" width="0.1725%" height="15" fill="rgb(209,86,4)" fg:x="132300" fg:w="625"/><text x="36.7706%" y="687.50"></text></g><g><title>unlock_up (143 samples, 0.04%)</title><rect x="36.6537%" y="661" width="0.0395%" height="15" fill="rgb(229,94,0)" fg:x="132782" fg:w="143"/><text x="36.9037%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (656 samples, 0.18%)</title><rect x="36.5195%" y="693" width="0.1811%" height="15" fill="rgb(252,223,21)" fg:x="132296" fg:w="656"/><text x="36.7695%" y="703.50"></text></g><g><title>btrfs_orphan_add (704 samples, 0.19%)</title><rect x="36.5082%" y="725" width="0.1943%" height="15" fill="rgb(230,210,4)" fg:x="132255" fg:w="704"/><text x="36.7582%" y="735.50"></text></g><g><title>btrfs_insert_orphan_item (702 samples, 0.19%)</title><rect x="36.5088%" y="709" width="0.1938%" height="15" fill="rgb(240,149,38)" fg:x="132257" fg:w="702"/><text x="36.7588%" y="719.50"></text></g><g><title>btrfs_rmdir (3,323 samples, 0.92%)</title><rect x="35.8015%" y="741" width="0.9173%" height="15" fill="rgb(254,105,20)" fg:x="129695" fg:w="3323"/><text x="36.0515%" y="751.50"></text></g><g><title>destroy_inode (78 samples, 0.02%)</title><rect x="36.7257%" y="741" width="0.0215%" height="15" fill="rgb(253,87,46)" fg:x="133043" fg:w="78"/><text x="36.9757%" y="751.50"></text></g><g><title>btrfs_destroy_inode (61 samples, 0.02%)</title><rect x="36.7304%" y="725" width="0.0168%" height="15" fill="rgb(253,116,33)" fg:x="133060" fg:w="61"/><text x="36.9804%" y="735.50"></text></g><g><title>__btrfs_end_transaction (43 samples, 0.01%)</title><rect x="36.7517%" y="709" width="0.0119%" height="15" fill="rgb(229,198,5)" fg:x="133137" fg:w="43"/><text x="37.0017%" y="719.50"></text></g><g><title>btrfs_get_token_32 (45 samples, 0.01%)</title><rect x="36.7989%" y="661" width="0.0124%" height="15" fill="rgb(242,38,37)" fg:x="133308" fg:w="45"/><text x="37.0489%" y="671.50"></text></g><g><title>memmove_extent_buffer (37 samples, 0.01%)</title><rect x="36.8240%" y="661" width="0.0102%" height="15" fill="rgb(242,69,53)" fg:x="133399" fg:w="37"/><text x="37.0740%" y="671.50"></text></g><g><title>btrfs_del_items (179 samples, 0.05%)</title><rect x="36.7851%" y="677" width="0.0494%" height="15" fill="rgb(249,80,16)" fg:x="133258" fg:w="179"/><text x="37.0351%" y="687.50"></text></g><g><title>prepare_to_wait_event (98 samples, 0.03%)</title><rect x="36.8511%" y="613" width="0.0271%" height="15" fill="rgb(206,128,11)" fg:x="133497" fg:w="98"/><text x="37.1011%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (95 samples, 0.03%)</title><rect x="36.8519%" y="597" width="0.0262%" height="15" fill="rgb(212,35,20)" fg:x="133500" fg:w="95"/><text x="37.1019%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (92 samples, 0.03%)</title><rect x="36.8527%" y="581" width="0.0254%" height="15" fill="rgb(236,79,13)" fg:x="133503" fg:w="92"/><text x="37.1027%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (212 samples, 0.06%)</title><rect x="36.8430%" y="629" width="0.0585%" height="15" fill="rgb(233,123,3)" fg:x="133468" fg:w="212"/><text x="37.0930%" y="639.50"></text></g><g><title>schedule (66 samples, 0.02%)</title><rect x="36.8834%" y="613" width="0.0182%" height="15" fill="rgb(214,93,52)" fg:x="133614" fg:w="66"/><text x="37.1334%" y="623.50"></text></g><g><title>__schedule (65 samples, 0.02%)</title><rect x="36.8836%" y="597" width="0.0179%" height="15" fill="rgb(251,37,40)" fg:x="133615" fg:w="65"/><text x="37.1336%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (219 samples, 0.06%)</title><rect x="36.8425%" y="645" width="0.0605%" height="15" fill="rgb(227,80,54)" fg:x="133466" fg:w="219"/><text x="37.0925%" y="655.50"></text></g><g><title>__btrfs_tree_lock (67 samples, 0.02%)</title><rect x="36.9030%" y="645" width="0.0185%" height="15" fill="rgb(254,48,11)" fg:x="133685" fg:w="67"/><text x="37.1530%" y="655.50"></text></g><g><title>schedule (58 samples, 0.02%)</title><rect x="36.9054%" y="629" width="0.0160%" height="15" fill="rgb(235,193,26)" fg:x="133694" fg:w="58"/><text x="37.1554%" y="639.50"></text></g><g><title>__schedule (58 samples, 0.02%)</title><rect x="36.9054%" y="613" width="0.0160%" height="15" fill="rgb(229,99,21)" fg:x="133694" fg:w="58"/><text x="37.1554%" y="623.50"></text></g><g><title>finish_wait (92 samples, 0.03%)</title><rect x="36.9303%" y="613" width="0.0254%" height="15" fill="rgb(211,140,41)" fg:x="133784" fg:w="92"/><text x="37.1803%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (87 samples, 0.02%)</title><rect x="36.9317%" y="597" width="0.0240%" height="15" fill="rgb(240,227,30)" fg:x="133789" fg:w="87"/><text x="37.1817%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (81 samples, 0.02%)</title><rect x="36.9333%" y="581" width="0.0224%" height="15" fill="rgb(215,224,45)" fg:x="133795" fg:w="81"/><text x="37.1833%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (356 samples, 0.10%)</title><rect x="36.9651%" y="597" width="0.0983%" height="15" fill="rgb(206,123,31)" fg:x="133910" fg:w="356"/><text x="37.2151%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (338 samples, 0.09%)</title><rect x="36.9700%" y="581" width="0.0933%" height="15" fill="rgb(210,138,16)" fg:x="133928" fg:w="338"/><text x="37.2200%" y="591.50"></text></g><g><title>prepare_to_wait_event (393 samples, 0.11%)</title><rect x="36.9560%" y="613" width="0.1085%" height="15" fill="rgb(228,57,28)" fg:x="133877" fg:w="393"/><text x="37.2060%" y="623.50"></text></g><g><title>queued_write_lock_slowpath (144 samples, 0.04%)</title><rect x="37.0644%" y="613" width="0.0398%" height="15" fill="rgb(242,170,10)" fg:x="134270" fg:w="144"/><text x="37.3144%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (83 samples, 0.02%)</title><rect x="37.0813%" y="597" width="0.0229%" height="15" fill="rgb(228,214,39)" fg:x="134331" fg:w="83"/><text x="37.3313%" y="607.50"></text></g><g><title>dequeue_entity (46 samples, 0.01%)</title><rect x="37.1166%" y="565" width="0.0127%" height="15" fill="rgb(218,179,33)" fg:x="134459" fg:w="46"/><text x="37.3666%" y="575.50"></text></g><g><title>dequeue_task_fair (58 samples, 0.02%)</title><rect x="37.1155%" y="581" width="0.0160%" height="15" fill="rgb(235,193,39)" fg:x="134455" fg:w="58"/><text x="37.3655%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (94 samples, 0.03%)</title><rect x="37.1354%" y="565" width="0.0259%" height="15" fill="rgb(219,221,36)" fg:x="134527" fg:w="94"/><text x="37.3854%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (92 samples, 0.03%)</title><rect x="37.1359%" y="549" width="0.0254%" height="15" fill="rgb(248,218,19)" fg:x="134529" fg:w="92"/><text x="37.3859%" y="559.50"></text></g><g><title>native_write_msr (91 samples, 0.03%)</title><rect x="37.1362%" y="533" width="0.0251%" height="15" fill="rgb(205,50,9)" fg:x="134530" fg:w="91"/><text x="37.3862%" y="543.50"></text></g><g><title>finish_task_switch (112 samples, 0.03%)</title><rect x="37.1315%" y="581" width="0.0309%" height="15" fill="rgb(238,81,28)" fg:x="134513" fg:w="112"/><text x="37.3815%" y="591.50"></text></g><g><title>psi_task_change (50 samples, 0.01%)</title><rect x="37.1674%" y="581" width="0.0138%" height="15" fill="rgb(235,110,19)" fg:x="134643" fg:w="50"/><text x="37.4174%" y="591.50"></text></g><g><title>psi_group_change (42 samples, 0.01%)</title><rect x="37.1696%" y="565" width="0.0116%" height="15" fill="rgb(214,7,14)" fg:x="134651" fg:w="42"/><text x="37.4196%" y="575.50"></text></g><g><title>__btrfs_tree_lock (956 samples, 0.26%)</title><rect x="36.9220%" y="629" width="0.2639%" height="15" fill="rgb(211,77,3)" fg:x="133754" fg:w="956"/><text x="37.1720%" y="639.50"></text></g><g><title>schedule (296 samples, 0.08%)</title><rect x="37.1042%" y="613" width="0.0817%" height="15" fill="rgb(229,5,9)" fg:x="134414" fg:w="296"/><text x="37.3542%" y="623.50"></text></g><g><title>__schedule (294 samples, 0.08%)</title><rect x="37.1047%" y="597" width="0.0812%" height="15" fill="rgb(225,90,11)" fg:x="134416" fg:w="294"/><text x="37.3547%" y="607.50"></text></g><g><title>btrfs_lock_root_node (957 samples, 0.26%)</title><rect x="36.9220%" y="645" width="0.2642%" height="15" fill="rgb(242,56,8)" fg:x="133754" fg:w="957"/><text x="37.1720%" y="655.50"></text></g><g><title>select_task_rq_fair (49 samples, 0.01%)</title><rect x="37.2386%" y="565" width="0.0135%" height="15" fill="rgb(249,212,39)" fg:x="134901" fg:w="49"/><text x="37.4886%" y="575.50"></text></g><g><title>enqueue_entity (59 samples, 0.02%)</title><rect x="37.2579%" y="533" width="0.0163%" height="15" fill="rgb(236,90,9)" fg:x="134971" fg:w="59"/><text x="37.5079%" y="543.50"></text></g><g><title>enqueue_task_fair (77 samples, 0.02%)</title><rect x="37.2555%" y="549" width="0.0213%" height="15" fill="rgb(206,88,35)" fg:x="134962" fg:w="77"/><text x="37.5055%" y="559.50"></text></g><g><title>ttwu_do_activate (154 samples, 0.04%)</title><rect x="37.2541%" y="565" width="0.0425%" height="15" fill="rgb(205,126,30)" fg:x="134957" fg:w="154"/><text x="37.5041%" y="575.50"></text></g><g><title>psi_task_change (71 samples, 0.02%)</title><rect x="37.2770%" y="549" width="0.0196%" height="15" fill="rgb(230,176,12)" fg:x="135040" fg:w="71"/><text x="37.5270%" y="559.50"></text></g><g><title>psi_group_change (63 samples, 0.02%)</title><rect x="37.2792%" y="533" width="0.0174%" height="15" fill="rgb(243,19,9)" fg:x="135048" fg:w="63"/><text x="37.5292%" y="543.50"></text></g><g><title>__wake_up_common (320 samples, 0.09%)</title><rect x="37.2165%" y="613" width="0.0883%" height="15" fill="rgb(245,171,17)" fg:x="134821" fg:w="320"/><text x="37.4665%" y="623.50"></text></g><g><title>autoremove_wake_function (314 samples, 0.09%)</title><rect x="37.2182%" y="597" width="0.0867%" height="15" fill="rgb(227,52,21)" fg:x="134827" fg:w="314"/><text x="37.4682%" y="607.50"></text></g><g><title>try_to_wake_up (306 samples, 0.08%)</title><rect x="37.2204%" y="581" width="0.0845%" height="15" fill="rgb(238,69,14)" fg:x="134835" fg:w="306"/><text x="37.4704%" y="591.50"></text></g><g><title>__wake_up_common_lock (329 samples, 0.09%)</title><rect x="37.2165%" y="629" width="0.0908%" height="15" fill="rgb(241,156,39)" fg:x="134821" fg:w="329"/><text x="37.4665%" y="639.50"></text></g><g><title>btrfs_lookup_inode (1,712 samples, 0.47%)</title><rect x="36.8359%" y="677" width="0.4726%" height="15" fill="rgb(212,227,28)" fg:x="133442" fg:w="1712"/><text x="37.0859%" y="687.50"></text></g><g><title>btrfs_search_slot (1,706 samples, 0.47%)</title><rect x="36.8375%" y="661" width="0.4709%" height="15" fill="rgb(209,118,27)" fg:x="133448" fg:w="1706"/><text x="37.0875%" y="671.50"></text></g><g><title>unlock_up (336 samples, 0.09%)</title><rect x="37.2157%" y="645" width="0.0928%" height="15" fill="rgb(226,102,5)" fg:x="134818" fg:w="336"/><text x="37.4657%" y="655.50"></text></g><g><title>ttwu_do_activate (40 samples, 0.01%)</title><rect x="37.3189%" y="597" width="0.0110%" height="15" fill="rgb(223,34,3)" fg:x="135192" fg:w="40"/><text x="37.5689%" y="607.50"></text></g><g><title>__wake_up_common (81 samples, 0.02%)</title><rect x="37.3104%" y="645" width="0.0224%" height="15" fill="rgb(221,81,38)" fg:x="135161" fg:w="81"/><text x="37.5604%" y="655.50"></text></g><g><title>autoremove_wake_function (79 samples, 0.02%)</title><rect x="37.3109%" y="629" width="0.0218%" height="15" fill="rgb(236,219,28)" fg:x="135163" fg:w="79"/><text x="37.5609%" y="639.50"></text></g><g><title>try_to_wake_up (76 samples, 0.02%)</title><rect x="37.3118%" y="613" width="0.0210%" height="15" fill="rgb(213,200,14)" fg:x="135166" fg:w="76"/><text x="37.5618%" y="623.50"></text></g><g><title>__wake_up_common_lock (82 samples, 0.02%)</title><rect x="37.3104%" y="661" width="0.0226%" height="15" fill="rgb(240,33,19)" fg:x="135161" fg:w="82"/><text x="37.5604%" y="671.50"></text></g><g><title>btrfs_release_path (94 samples, 0.03%)</title><rect x="37.3101%" y="677" width="0.0259%" height="15" fill="rgb(233,113,27)" fg:x="135160" fg:w="94"/><text x="37.5601%" y="687.50"></text></g><g><title>__btrfs_update_delayed_inode (2,027 samples, 0.56%)</title><rect x="36.7837%" y="693" width="0.5595%" height="15" fill="rgb(220,221,18)" fg:x="133253" fg:w="2027"/><text x="37.0337%" y="703.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (2,092 samples, 0.58%)</title><rect x="36.7760%" y="709" width="0.5775%" height="15" fill="rgb(238,92,8)" fg:x="133225" fg:w="2092"/><text x="37.0260%" y="719.50"></text></g><g><title>__wake_up_common (88 samples, 0.02%)</title><rect x="37.3615%" y="645" width="0.0243%" height="15" fill="rgb(222,164,16)" fg:x="135346" fg:w="88"/><text x="37.6115%" y="655.50"></text></g><g><title>autoremove_wake_function (86 samples, 0.02%)</title><rect x="37.3620%" y="629" width="0.0237%" height="15" fill="rgb(241,119,3)" fg:x="135348" fg:w="86"/><text x="37.6120%" y="639.50"></text></g><g><title>try_to_wake_up (86 samples, 0.02%)</title><rect x="37.3620%" y="613" width="0.0237%" height="15" fill="rgb(241,44,8)" fg:x="135348" fg:w="86"/><text x="37.6120%" y="623.50"></text></g><g><title>__wake_up_common_lock (94 samples, 0.03%)</title><rect x="37.3609%" y="661" width="0.0259%" height="15" fill="rgb(230,36,40)" fg:x="135344" fg:w="94"/><text x="37.6109%" y="671.50"></text></g><g><title>btrfs_free_path (105 samples, 0.03%)</title><rect x="37.3604%" y="693" width="0.0290%" height="15" fill="rgb(243,16,36)" fg:x="135342" fg:w="105"/><text x="37.6104%" y="703.50"></text></g><g><title>btrfs_release_path (105 samples, 0.03%)</title><rect x="37.3604%" y="677" width="0.0290%" height="15" fill="rgb(231,4,26)" fg:x="135342" fg:w="105"/><text x="37.6104%" y="687.50"></text></g><g><title>finish_wait (55 samples, 0.02%)</title><rect x="37.3968%" y="645" width="0.0152%" height="15" fill="rgb(240,9,31)" fg:x="135474" fg:w="55"/><text x="37.6468%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (54 samples, 0.01%)</title><rect x="37.3971%" y="629" width="0.0149%" height="15" fill="rgb(207,173,15)" fg:x="135475" fg:w="54"/><text x="37.6471%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (54 samples, 0.01%)</title><rect x="37.3971%" y="613" width="0.0149%" height="15" fill="rgb(224,192,53)" fg:x="135475" fg:w="54"/><text x="37.6471%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (176 samples, 0.05%)</title><rect x="37.4156%" y="629" width="0.0486%" height="15" fill="rgb(223,67,28)" fg:x="135542" fg:w="176"/><text x="37.6656%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (171 samples, 0.05%)</title><rect x="37.4169%" y="613" width="0.0472%" height="15" fill="rgb(211,20,47)" fg:x="135547" fg:w="171"/><text x="37.6669%" y="623.50"></text></g><g><title>prepare_to_wait_event (191 samples, 0.05%)</title><rect x="37.4120%" y="645" width="0.0527%" height="15" fill="rgb(240,228,2)" fg:x="135529" fg:w="191"/><text x="37.6620%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (365 samples, 0.10%)</title><rect x="37.3932%" y="661" width="0.1008%" height="15" fill="rgb(248,151,12)" fg:x="135461" fg:w="365"/><text x="37.6432%" y="671.50"></text></g><g><title>schedule (73 samples, 0.02%)</title><rect x="37.4738%" y="645" width="0.0202%" height="15" fill="rgb(244,8,39)" fg:x="135753" fg:w="73"/><text x="37.7238%" y="655.50"></text></g><g><title>__schedule (72 samples, 0.02%)</title><rect x="37.4741%" y="629" width="0.0199%" height="15" fill="rgb(222,26,8)" fg:x="135754" fg:w="72"/><text x="37.7241%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (368 samples, 0.10%)</title><rect x="37.3932%" y="677" width="0.1016%" height="15" fill="rgb(213,106,44)" fg:x="135461" fg:w="368"/><text x="37.6432%" y="687.50"></text></g><g><title>__btrfs_tree_lock (64 samples, 0.02%)</title><rect x="37.4948%" y="677" width="0.0177%" height="15" fill="rgb(214,129,20)" fg:x="135829" fg:w="64"/><text x="37.7448%" y="687.50"></text></g><g><title>schedule (61 samples, 0.02%)</title><rect x="37.4956%" y="661" width="0.0168%" height="15" fill="rgb(212,32,13)" fg:x="135832" fg:w="61"/><text x="37.7456%" y="671.50"></text></g><g><title>__schedule (61 samples, 0.02%)</title><rect x="37.4956%" y="645" width="0.0168%" height="15" fill="rgb(208,168,33)" fg:x="135832" fg:w="61"/><text x="37.7456%" y="655.50"></text></g><g><title>finish_wait (163 samples, 0.04%)</title><rect x="37.5268%" y="645" width="0.0450%" height="15" fill="rgb(231,207,8)" fg:x="135945" fg:w="163"/><text x="37.7768%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (155 samples, 0.04%)</title><rect x="37.5290%" y="629" width="0.0428%" height="15" fill="rgb(235,219,23)" fg:x="135953" fg:w="155"/><text x="37.7790%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (146 samples, 0.04%)</title><rect x="37.5315%" y="613" width="0.0403%" height="15" fill="rgb(226,216,26)" fg:x="135962" fg:w="146"/><text x="37.7815%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (509 samples, 0.14%)</title><rect x="37.5823%" y="629" width="0.1405%" height="15" fill="rgb(239,137,16)" fg:x="136146" fg:w="509"/><text x="37.8323%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (486 samples, 0.13%)</title><rect x="37.5886%" y="613" width="0.1342%" height="15" fill="rgb(207,12,36)" fg:x="136169" fg:w="486"/><text x="37.8386%" y="623.50"></text></g><g><title>prepare_to_wait_event (555 samples, 0.15%)</title><rect x="37.5718%" y="645" width="0.1532%" height="15" fill="rgb(210,214,24)" fg:x="136108" fg:w="555"/><text x="37.8218%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (188 samples, 0.05%)</title><rect x="37.7250%" y="645" width="0.0519%" height="15" fill="rgb(206,56,30)" fg:x="136663" fg:w="188"/><text x="37.9750%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (104 samples, 0.03%)</title><rect x="37.7482%" y="629" width="0.0287%" height="15" fill="rgb(228,143,26)" fg:x="136747" fg:w="104"/><text x="37.9982%" y="639.50"></text></g><g><title>dequeue_entity (70 samples, 0.02%)</title><rect x="37.7902%" y="597" width="0.0193%" height="15" fill="rgb(216,218,46)" fg:x="136899" fg:w="70"/><text x="38.0402%" y="607.50"></text></g><g><title>dequeue_task_fair (80 samples, 0.02%)</title><rect x="37.7879%" y="613" width="0.0221%" height="15" fill="rgb(206,6,19)" fg:x="136891" fg:w="80"/><text x="38.0379%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (98 samples, 0.03%)</title><rect x="37.8136%" y="597" width="0.0271%" height="15" fill="rgb(239,177,51)" fg:x="136984" fg:w="98"/><text x="38.0636%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (96 samples, 0.03%)</title><rect x="37.8142%" y="581" width="0.0265%" height="15" fill="rgb(216,55,25)" fg:x="136986" fg:w="96"/><text x="38.0642%" y="591.50"></text></g><g><title>native_write_msr (93 samples, 0.03%)</title><rect x="37.8150%" y="565" width="0.0257%" height="15" fill="rgb(231,163,29)" fg:x="136989" fg:w="93"/><text x="38.0650%" y="575.50"></text></g><g><title>finish_task_switch (113 samples, 0.03%)</title><rect x="37.8100%" y="613" width="0.0312%" height="15" fill="rgb(232,149,50)" fg:x="136971" fg:w="113"/><text x="38.0600%" y="623.50"></text></g><g><title>psi_task_change (71 samples, 0.02%)</title><rect x="37.8487%" y="613" width="0.0196%" height="15" fill="rgb(223,142,48)" fg:x="137111" fg:w="71"/><text x="38.0987%" y="623.50"></text></g><g><title>psi_group_change (62 samples, 0.02%)</title><rect x="37.8512%" y="597" width="0.0171%" height="15" fill="rgb(245,83,23)" fg:x="137120" fg:w="62"/><text x="38.1012%" y="607.50"></text></g><g><title>__btrfs_tree_lock (1,303 samples, 0.36%)</title><rect x="37.5147%" y="661" width="0.3597%" height="15" fill="rgb(224,63,2)" fg:x="135901" fg:w="1303"/><text x="37.7647%" y="671.50"></text></g><g><title>schedule (353 samples, 0.10%)</title><rect x="37.7769%" y="645" width="0.0974%" height="15" fill="rgb(218,65,53)" fg:x="136851" fg:w="353"/><text x="38.0269%" y="655.50"></text></g><g><title>__schedule (346 samples, 0.10%)</title><rect x="37.7788%" y="629" width="0.0955%" height="15" fill="rgb(221,84,29)" fg:x="136858" fg:w="346"/><text x="38.0288%" y="639.50"></text></g><g><title>btrfs_lock_root_node (1,306 samples, 0.36%)</title><rect x="37.5144%" y="677" width="0.3605%" height="15" fill="rgb(234,0,32)" fg:x="135900" fg:w="1306"/><text x="37.7644%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (42 samples, 0.01%)</title><rect x="37.8904%" y="677" width="0.0116%" height="15" fill="rgb(206,20,16)" fg:x="137262" fg:w="42"/><text x="38.1404%" y="687.50"></text></g><g><title>select_task_rq_fair (48 samples, 0.01%)</title><rect x="37.9240%" y="597" width="0.0133%" height="15" fill="rgb(244,172,18)" fg:x="137384" fg:w="48"/><text x="38.1740%" y="607.50"></text></g><g><title>enqueue_entity (38 samples, 0.01%)</title><rect x="37.9417%" y="565" width="0.0105%" height="15" fill="rgb(254,133,1)" fg:x="137448" fg:w="38"/><text x="38.1917%" y="575.50"></text></g><g><title>enqueue_task_fair (49 samples, 0.01%)</title><rect x="37.9400%" y="581" width="0.0135%" height="15" fill="rgb(222,206,41)" fg:x="137442" fg:w="49"/><text x="38.1900%" y="591.50"></text></g><g><title>ttwu_do_activate (111 samples, 0.03%)</title><rect x="37.9378%" y="597" width="0.0306%" height="15" fill="rgb(212,3,42)" fg:x="137434" fg:w="111"/><text x="38.1878%" y="607.50"></text></g><g><title>psi_task_change (54 samples, 0.01%)</title><rect x="37.9536%" y="581" width="0.0149%" height="15" fill="rgb(241,11,4)" fg:x="137491" fg:w="54"/><text x="38.2036%" y="591.50"></text></g><g><title>psi_group_change (51 samples, 0.01%)</title><rect x="37.9544%" y="565" width="0.0141%" height="15" fill="rgb(205,19,26)" fg:x="137494" fg:w="51"/><text x="38.2044%" y="575.50"></text></g><g><title>__wake_up_common (242 samples, 0.07%)</title><rect x="37.9061%" y="645" width="0.0668%" height="15" fill="rgb(210,179,32)" fg:x="137319" fg:w="242"/><text x="38.1561%" y="655.50"></text></g><g><title>autoremove_wake_function (240 samples, 0.07%)</title><rect x="37.9066%" y="629" width="0.0663%" height="15" fill="rgb(227,116,49)" fg:x="137321" fg:w="240"/><text x="38.1566%" y="639.50"></text></g><g><title>try_to_wake_up (234 samples, 0.06%)</title><rect x="37.9083%" y="613" width="0.0646%" height="15" fill="rgb(211,146,6)" fg:x="137327" fg:w="234"/><text x="38.1583%" y="623.50"></text></g><g><title>__wake_up_common_lock (256 samples, 0.07%)</title><rect x="37.9058%" y="661" width="0.0707%" height="15" fill="rgb(219,44,39)" fg:x="137318" fg:w="256"/><text x="38.1558%" y="671.50"></text></g><g><title>btrfs_search_slot (2,134 samples, 0.59%)</title><rect x="37.3893%" y="693" width="0.5891%" height="15" fill="rgb(234,128,11)" fg:x="135447" fg:w="2134"/><text x="37.6393%" y="703.50"></text></g><g><title>unlock_up (266 samples, 0.07%)</title><rect x="37.9050%" y="677" width="0.0734%" height="15" fill="rgb(220,183,53)" fg:x="137315" fg:w="266"/><text x="38.1550%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (2,273 samples, 0.63%)</title><rect x="37.3535%" y="709" width="0.6274%" height="15" fill="rgb(213,219,32)" fg:x="135317" fg:w="2273"/><text x="37.6035%" y="719.50"></text></g><g><title>__clear_extent_bit (38 samples, 0.01%)</title><rect x="37.9892%" y="693" width="0.0105%" height="15" fill="rgb(232,156,16)" fg:x="137620" fg:w="38"/><text x="38.2392%" y="703.50"></text></g><g><title>_find_next_bit.constprop.0 (82 samples, 0.02%)</title><rect x="38.0082%" y="613" width="0.0226%" height="15" fill="rgb(246,135,34)" fg:x="137689" fg:w="82"/><text x="38.2582%" y="623.50"></text></g><g><title>steal_from_bitmap.part.0 (104 samples, 0.03%)</title><rect x="38.0044%" y="629" width="0.0287%" height="15" fill="rgb(241,99,0)" fg:x="137675" fg:w="104"/><text x="38.2544%" y="639.50"></text></g><g><title>__btrfs_add_free_space (115 samples, 0.03%)</title><rect x="38.0022%" y="645" width="0.0317%" height="15" fill="rgb(222,103,45)" fg:x="137667" fg:w="115"/><text x="38.2522%" y="655.50"></text></g><g><title>btrfs_free_tree_block (119 samples, 0.03%)</title><rect x="38.0022%" y="661" width="0.0328%" height="15" fill="rgb(212,57,4)" fg:x="137667" fg:w="119"/><text x="38.2522%" y="671.50"></text></g><g><title>btrfs_del_leaf (129 samples, 0.04%)</title><rect x="38.0022%" y="677" width="0.0356%" height="15" fill="rgb(215,68,47)" fg:x="137667" fg:w="129"/><text x="38.2522%" y="687.50"></text></g><g><title>btrfs_get_token_32 (53 samples, 0.01%)</title><rect x="38.0397%" y="677" width="0.0146%" height="15" fill="rgb(230,84,2)" fg:x="137803" fg:w="53"/><text x="38.2897%" y="687.50"></text></g><g><title>btrfs_del_items (288 samples, 0.08%)</title><rect x="37.9997%" y="693" width="0.0795%" height="15" fill="rgb(220,102,14)" fg:x="137658" fg:w="288"/><text x="38.2497%" y="703.50"></text></g><g><title>__wake_up_common (63 samples, 0.02%)</title><rect x="38.0844%" y="645" width="0.0174%" height="15" fill="rgb(240,10,32)" fg:x="137965" fg:w="63"/><text x="38.3344%" y="655.50"></text></g><g><title>autoremove_wake_function (60 samples, 0.02%)</title><rect x="38.0852%" y="629" width="0.0166%" height="15" fill="rgb(215,47,27)" fg:x="137968" fg:w="60"/><text x="38.3352%" y="639.50"></text></g><g><title>try_to_wake_up (60 samples, 0.02%)</title><rect x="38.0852%" y="613" width="0.0166%" height="15" fill="rgb(233,188,43)" fg:x="137968" fg:w="60"/><text x="38.3352%" y="623.50"></text></g><g><title>__wake_up_common_lock (64 samples, 0.02%)</title><rect x="38.0844%" y="661" width="0.0177%" height="15" fill="rgb(253,190,1)" fg:x="137965" fg:w="64"/><text x="38.3344%" y="671.50"></text></g><g><title>btrfs_free_path (79 samples, 0.02%)</title><rect x="38.0836%" y="693" width="0.0218%" height="15" fill="rgb(206,114,52)" fg:x="137962" fg:w="79"/><text x="38.3336%" y="703.50"></text></g><g><title>btrfs_release_path (78 samples, 0.02%)</title><rect x="38.0839%" y="677" width="0.0215%" height="15" fill="rgb(233,120,37)" fg:x="137963" fg:w="78"/><text x="38.3339%" y="687.50"></text></g><g><title>__btrfs_kill_delayed_node (60 samples, 0.02%)</title><rect x="38.1084%" y="677" width="0.0166%" height="15" fill="rgb(214,52,39)" fg:x="138052" fg:w="60"/><text x="38.3584%" y="687.50"></text></g><g><title>btrfs_kill_delayed_inode_items (66 samples, 0.02%)</title><rect x="38.1076%" y="693" width="0.0182%" height="15" fill="rgb(223,80,29)" fg:x="138049" fg:w="66"/><text x="38.3576%" y="703.50"></text></g><g><title>finish_wait (40 samples, 0.01%)</title><rect x="38.1355%" y="645" width="0.0110%" height="15" fill="rgb(230,101,40)" fg:x="138150" fg:w="40"/><text x="38.3855%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (39 samples, 0.01%)</title><rect x="38.1358%" y="629" width="0.0108%" height="15" fill="rgb(219,211,8)" fg:x="138151" fg:w="39"/><text x="38.3858%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (39 samples, 0.01%)</title><rect x="38.1358%" y="613" width="0.0108%" height="15" fill="rgb(252,126,28)" fg:x="138151" fg:w="39"/><text x="38.3858%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (119 samples, 0.03%)</title><rect x="38.1476%" y="629" width="0.0328%" height="15" fill="rgb(215,56,38)" fg:x="138194" fg:w="119"/><text x="38.3976%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (116 samples, 0.03%)</title><rect x="38.1485%" y="613" width="0.0320%" height="15" fill="rgb(249,55,44)" fg:x="138197" fg:w="116"/><text x="38.3985%" y="623.50"></text></g><g><title>prepare_to_wait_event (124 samples, 0.03%)</title><rect x="38.1465%" y="645" width="0.0342%" height="15" fill="rgb(220,221,32)" fg:x="138190" fg:w="124"/><text x="38.3965%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (267 samples, 0.07%)</title><rect x="38.1336%" y="661" width="0.0737%" height="15" fill="rgb(212,216,41)" fg:x="138143" fg:w="267"/><text x="38.3836%" y="671.50"></text></g><g><title>schedule (73 samples, 0.02%)</title><rect x="38.1871%" y="645" width="0.0202%" height="15" fill="rgb(228,213,43)" fg:x="138337" fg:w="73"/><text x="38.4371%" y="655.50"></text></g><g><title>__schedule (71 samples, 0.02%)</title><rect x="38.1877%" y="629" width="0.0196%" height="15" fill="rgb(211,31,26)" fg:x="138339" fg:w="71"/><text x="38.4377%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (275 samples, 0.08%)</title><rect x="38.1327%" y="677" width="0.0759%" height="15" fill="rgb(229,202,19)" fg:x="138140" fg:w="275"/><text x="38.3827%" y="687.50"></text></g><g><title>__btrfs_tree_lock (75 samples, 0.02%)</title><rect x="38.2086%" y="677" width="0.0207%" height="15" fill="rgb(229,105,46)" fg:x="138415" fg:w="75"/><text x="38.4586%" y="687.50"></text></g><g><title>schedule (66 samples, 0.02%)</title><rect x="38.2111%" y="661" width="0.0182%" height="15" fill="rgb(235,108,1)" fg:x="138424" fg:w="66"/><text x="38.4611%" y="671.50"></text></g><g><title>__schedule (65 samples, 0.02%)</title><rect x="38.2114%" y="645" width="0.0179%" height="15" fill="rgb(245,111,35)" fg:x="138425" fg:w="65"/><text x="38.4614%" y="655.50"></text></g><g><title>finish_wait (93 samples, 0.03%)</title><rect x="38.2360%" y="645" width="0.0257%" height="15" fill="rgb(219,185,31)" fg:x="138514" fg:w="93"/><text x="38.4860%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (86 samples, 0.02%)</title><rect x="38.2379%" y="629" width="0.0237%" height="15" fill="rgb(214,4,43)" fg:x="138521" fg:w="86"/><text x="38.4879%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (80 samples, 0.02%)</title><rect x="38.2396%" y="613" width="0.0221%" height="15" fill="rgb(235,227,40)" fg:x="138527" fg:w="80"/><text x="38.4896%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (328 samples, 0.09%)</title><rect x="38.2685%" y="629" width="0.0905%" height="15" fill="rgb(230,88,30)" fg:x="138632" fg:w="328"/><text x="38.5185%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (319 samples, 0.09%)</title><rect x="38.2710%" y="613" width="0.0881%" height="15" fill="rgb(216,217,1)" fg:x="138641" fg:w="319"/><text x="38.5210%" y="623.50"></text></g><g><title>prepare_to_wait_event (358 samples, 0.10%)</title><rect x="38.2616%" y="645" width="0.0988%" height="15" fill="rgb(248,139,50)" fg:x="138607" fg:w="358"/><text x="38.5116%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (119 samples, 0.03%)</title><rect x="38.3605%" y="645" width="0.0328%" height="15" fill="rgb(233,1,21)" fg:x="138965" fg:w="119"/><text x="38.6105%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (67 samples, 0.02%)</title><rect x="38.3748%" y="629" width="0.0185%" height="15" fill="rgb(215,183,12)" fg:x="139017" fg:w="67"/><text x="38.6248%" y="639.50"></text></g><g><title>dequeue_entity (43 samples, 0.01%)</title><rect x="38.4046%" y="597" width="0.0119%" height="15" fill="rgb(229,104,42)" fg:x="139125" fg:w="43"/><text x="38.6546%" y="607.50"></text></g><g><title>dequeue_task_fair (50 samples, 0.01%)</title><rect x="38.4035%" y="613" width="0.0138%" height="15" fill="rgb(243,34,48)" fg:x="139121" fg:w="50"/><text x="38.6535%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.02%)</title><rect x="38.4204%" y="597" width="0.0232%" height="15" fill="rgb(239,11,44)" fg:x="139182" fg:w="84"/><text x="38.6704%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (83 samples, 0.02%)</title><rect x="38.4206%" y="581" width="0.0229%" height="15" fill="rgb(231,98,35)" fg:x="139183" fg:w="83"/><text x="38.6706%" y="591.50"></text></g><g><title>native_write_msr (82 samples, 0.02%)</title><rect x="38.4209%" y="565" width="0.0226%" height="15" fill="rgb(233,28,25)" fg:x="139184" fg:w="82"/><text x="38.6709%" y="575.50"></text></g><g><title>finish_task_switch (98 samples, 0.03%)</title><rect x="38.4173%" y="613" width="0.0271%" height="15" fill="rgb(234,123,11)" fg:x="139171" fg:w="98"/><text x="38.6673%" y="623.50"></text></g><g><title>psi_task_change (50 samples, 0.01%)</title><rect x="38.4494%" y="613" width="0.0138%" height="15" fill="rgb(220,69,3)" fg:x="139287" fg:w="50"/><text x="38.6994%" y="623.50"></text></g><g><title>psi_group_change (45 samples, 0.01%)</title><rect x="38.4507%" y="597" width="0.0124%" height="15" fill="rgb(214,64,36)" fg:x="139292" fg:w="45"/><text x="38.7007%" y="607.50"></text></g><g><title>__btrfs_tree_lock (859 samples, 0.24%)</title><rect x="38.2304%" y="661" width="0.2371%" height="15" fill="rgb(211,138,32)" fg:x="138494" fg:w="859"/><text x="38.4804%" y="671.50"></text></g><g><title>schedule (269 samples, 0.07%)</title><rect x="38.3933%" y="645" width="0.0743%" height="15" fill="rgb(213,118,47)" fg:x="139084" fg:w="269"/><text x="38.6433%" y="655.50"></text></g><g><title>__schedule (263 samples, 0.07%)</title><rect x="38.3950%" y="629" width="0.0726%" height="15" fill="rgb(243,124,49)" fg:x="139090" fg:w="263"/><text x="38.6450%" y="639.50"></text></g><g><title>btrfs_lock_root_node (860 samples, 0.24%)</title><rect x="38.2304%" y="677" width="0.2374%" height="15" fill="rgb(221,30,28)" fg:x="138494" fg:w="860"/><text x="38.4804%" y="687.50"></text></g><g><title>btrfs_try_tree_write_lock (66 samples, 0.02%)</title><rect x="38.4709%" y="677" width="0.0182%" height="15" fill="rgb(246,37,13)" fg:x="139365" fg:w="66"/><text x="38.7209%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (64 samples, 0.02%)</title><rect x="38.4714%" y="661" width="0.0177%" height="15" fill="rgb(249,66,14)" fg:x="139367" fg:w="64"/><text x="38.7214%" y="671.50"></text></g><g><title>select_task_rq_fair (66 samples, 0.02%)</title><rect x="38.5308%" y="597" width="0.0182%" height="15" fill="rgb(213,166,5)" fg:x="139582" fg:w="66"/><text x="38.7808%" y="607.50"></text></g><g><title>enqueue_entity (44 samples, 0.01%)</title><rect x="38.5556%" y="565" width="0.0121%" height="15" fill="rgb(221,66,24)" fg:x="139672" fg:w="44"/><text x="38.8056%" y="575.50"></text></g><g><title>enqueue_task_fair (63 samples, 0.02%)</title><rect x="38.5515%" y="581" width="0.0174%" height="15" fill="rgb(210,132,17)" fg:x="139657" fg:w="63"/><text x="38.8015%" y="591.50"></text></g><g><title>ttwu_do_activate (143 samples, 0.04%)</title><rect x="38.5504%" y="597" width="0.0395%" height="15" fill="rgb(243,202,5)" fg:x="139653" fg:w="143"/><text x="38.8004%" y="607.50"></text></g><g><title>psi_task_change (76 samples, 0.02%)</title><rect x="38.5689%" y="581" width="0.0210%" height="15" fill="rgb(233,70,48)" fg:x="139720" fg:w="76"/><text x="38.8189%" y="591.50"></text></g><g><title>psi_group_change (66 samples, 0.02%)</title><rect x="38.5716%" y="565" width="0.0182%" height="15" fill="rgb(238,41,26)" fg:x="139730" fg:w="66"/><text x="38.8216%" y="575.50"></text></g><g><title>__wake_up_common (305 samples, 0.08%)</title><rect x="38.5117%" y="645" width="0.0842%" height="15" fill="rgb(241,19,31)" fg:x="139513" fg:w="305"/><text x="38.7617%" y="655.50"></text></g><g><title>autoremove_wake_function (301 samples, 0.08%)</title><rect x="38.5128%" y="629" width="0.0831%" height="15" fill="rgb(214,76,10)" fg:x="139517" fg:w="301"/><text x="38.7628%" y="639.50"></text></g><g><title>try_to_wake_up (293 samples, 0.08%)</title><rect x="38.5150%" y="613" width="0.0809%" height="15" fill="rgb(254,202,22)" fg:x="139525" fg:w="293"/><text x="38.7650%" y="623.50"></text></g><g><title>__wake_up_common_lock (318 samples, 0.09%)</title><rect x="38.5117%" y="661" width="0.0878%" height="15" fill="rgb(214,72,24)" fg:x="139513" fg:w="318"/><text x="38.7617%" y="671.50"></text></g><g><title>btrfs_search_slot (1,718 samples, 0.47%)</title><rect x="38.1264%" y="693" width="0.4742%" height="15" fill="rgb(221,92,46)" fg:x="138117" fg:w="1718"/><text x="38.3764%" y="703.50"></text></g><g><title>unlock_up (323 samples, 0.09%)</title><rect x="38.5115%" y="677" width="0.0892%" height="15" fill="rgb(246,13,50)" fg:x="139512" fg:w="323"/><text x="38.7615%" y="687.50"></text></g><g><title>btrfs_truncate_inode_items (2,268 samples, 0.63%)</title><rect x="37.9823%" y="709" width="0.6261%" height="15" fill="rgb(240,165,38)" fg:x="137595" fg:w="2268"/><text x="38.2323%" y="719.50"></text></g><g><title>btrfs_block_rsv_refill (45 samples, 0.01%)</title><rect x="38.6100%" y="693" width="0.0124%" height="15" fill="rgb(241,24,51)" fg:x="139869" fg:w="45"/><text x="38.8600%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (37 samples, 0.01%)</title><rect x="38.6122%" y="677" width="0.0102%" height="15" fill="rgb(227,51,44)" fg:x="139877" fg:w="37"/><text x="38.8622%" y="687.50"></text></g><g><title>evict_refill_and_join (70 samples, 0.02%)</title><rect x="38.6084%" y="709" width="0.0193%" height="15" fill="rgb(231,121,3)" fg:x="139863" fg:w="70"/><text x="38.8584%" y="719.50"></text></g><g><title>btrfs_evict_inode (6,825 samples, 1.88%)</title><rect x="36.7489%" y="725" width="1.8840%" height="15" fill="rgb(245,3,41)" fg:x="133127" fg:w="6825"/><text x="36.9989%" y="735.50">b..</text></g><g><title>evict (6,833 samples, 1.89%)</title><rect x="36.7478%" y="741" width="1.8862%" height="15" fill="rgb(214,13,26)" fg:x="133123" fg:w="6833"/><text x="36.9978%" y="751.50">e..</text></g><g><title>d_lru_del (109 samples, 0.03%)</title><rect x="38.6558%" y="693" width="0.0301%" height="15" fill="rgb(252,75,11)" fg:x="140035" fg:w="109"/><text x="38.9058%" y="703.50"></text></g><g><title>list_lru_del (107 samples, 0.03%)</title><rect x="38.6564%" y="677" width="0.0295%" height="15" fill="rgb(218,226,17)" fg:x="140037" fg:w="107"/><text x="38.9064%" y="687.50"></text></g><g><title>mem_cgroup_from_obj (44 samples, 0.01%)</title><rect x="38.6738%" y="661" width="0.0121%" height="15" fill="rgb(248,89,38)" fg:x="140100" fg:w="44"/><text x="38.9238%" y="671.50"></text></g><g><title>d_walk (175 samples, 0.05%)</title><rect x="38.6393%" y="725" width="0.0483%" height="15" fill="rgb(237,73,46)" fg:x="139975" fg:w="175"/><text x="38.8893%" y="735.50"></text></g><g><title>select_collect (120 samples, 0.03%)</title><rect x="38.6545%" y="709" width="0.0331%" height="15" fill="rgb(242,78,33)" fg:x="140030" fg:w="120"/><text x="38.9045%" y="719.50"></text></g><g><title>___d_drop (87 samples, 0.02%)</title><rect x="38.6909%" y="693" width="0.0240%" height="15" fill="rgb(235,60,3)" fg:x="140162" fg:w="87"/><text x="38.9409%" y="703.50"></text></g><g><title>call_rcu (47 samples, 0.01%)</title><rect x="38.7168%" y="693" width="0.0130%" height="15" fill="rgb(216,172,19)" fg:x="140256" fg:w="47"/><text x="38.9668%" y="703.50"></text></g><g><title>__dentry_kill (152 samples, 0.04%)</title><rect x="38.6884%" y="709" width="0.0420%" height="15" fill="rgb(227,6,42)" fg:x="140153" fg:w="152"/><text x="38.9384%" y="719.50"></text></g><g><title>shrink_dcache_parent (389 samples, 0.11%)</title><rect x="38.6382%" y="741" width="0.1074%" height="15" fill="rgb(223,207,42)" fg:x="139971" fg:w="389"/><text x="38.8882%" y="751.50"></text></g><g><title>shrink_dentry_list (210 samples, 0.06%)</title><rect x="38.6876%" y="725" width="0.0580%" height="15" fill="rgb(246,138,30)" fg:x="140150" fg:w="210"/><text x="38.9376%" y="735.50"></text></g><g><title>do_rmdir (10,816 samples, 2.99%)</title><rect x="35.7601%" y="773" width="2.9857%" height="15" fill="rgb(251,199,47)" fg:x="129545" fg:w="10816"/><text x="36.0101%" y="783.50">do_..</text></g><g><title>vfs_rmdir.part.0 (10,668 samples, 2.94%)</title><rect x="35.8010%" y="757" width="2.9448%" height="15" fill="rgb(228,218,44)" fg:x="129693" fg:w="10668"/><text x="36.0510%" y="767.50">vf..</text></g><g><title>__d_lookup (193 samples, 0.05%)</title><rect x="38.7674%" y="709" width="0.0533%" height="15" fill="rgb(220,68,6)" fg:x="140439" fg:w="193"/><text x="39.0174%" y="719.50"></text></g><g><title>__lookup_hash (219 samples, 0.06%)</title><rect x="38.7605%" y="757" width="0.0605%" height="15" fill="rgb(240,60,26)" fg:x="140414" fg:w="219"/><text x="39.0105%" y="767.50"></text></g><g><title>lookup_dcache (212 samples, 0.06%)</title><rect x="38.7624%" y="741" width="0.0585%" height="15" fill="rgb(211,200,19)" fg:x="140421" fg:w="212"/><text x="39.0124%" y="751.50"></text></g><g><title>d_lookup (202 samples, 0.06%)</title><rect x="38.7651%" y="725" width="0.0558%" height="15" fill="rgb(242,145,30)" fg:x="140431" fg:w="202"/><text x="39.0151%" y="735.50"></text></g><g><title>call_rcu (83 samples, 0.02%)</title><rect x="38.8209%" y="757" width="0.0229%" height="15" fill="rgb(225,64,13)" fg:x="140633" fg:w="83"/><text x="39.0709%" y="767.50"></text></g><g><title>__srcu_read_lock (40 samples, 0.01%)</title><rect x="38.8640%" y="693" width="0.0110%" height="15" fill="rgb(218,103,35)" fg:x="140789" fg:w="40"/><text x="39.1140%" y="703.50"></text></g><g><title>fsnotify_destroy_marks (60 samples, 0.02%)</title><rect x="38.8596%" y="725" width="0.0166%" height="15" fill="rgb(216,93,46)" fg:x="140773" fg:w="60"/><text x="39.1096%" y="735.50"></text></g><g><title>fsnotify_grab_connector (52 samples, 0.01%)</title><rect x="38.8618%" y="709" width="0.0144%" height="15" fill="rgb(225,159,27)" fg:x="140781" fg:w="52"/><text x="39.1118%" y="719.50"></text></g><g><title>__destroy_inode (140 samples, 0.04%)</title><rect x="38.8474%" y="741" width="0.0386%" height="15" fill="rgb(225,204,11)" fg:x="140729" fg:w="140"/><text x="39.0974%" y="751.50"></text></g><g><title>alloc_extent_map (107 samples, 0.03%)</title><rect x="38.9073%" y="709" width="0.0295%" height="15" fill="rgb(205,56,4)" fg:x="140946" fg:w="107"/><text x="39.1573%" y="719.50"></text></g><g><title>kmem_cache_alloc (86 samples, 0.02%)</title><rect x="38.9131%" y="693" width="0.0237%" height="15" fill="rgb(206,6,35)" fg:x="140967" fg:w="86"/><text x="39.1631%" y="703.50"></text></g><g><title>kmem_cache_free (60 samples, 0.02%)</title><rect x="38.9426%" y="709" width="0.0166%" height="15" fill="rgb(247,73,52)" fg:x="141074" fg:w="60"/><text x="39.1926%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (234 samples, 0.06%)</title><rect x="38.8960%" y="725" width="0.0646%" height="15" fill="rgb(246,97,4)" fg:x="140905" fg:w="234"/><text x="39.1460%" y="735.50"></text></g><g><title>alloc_extent_state (52 samples, 0.01%)</title><rect x="38.9736%" y="677" width="0.0144%" height="15" fill="rgb(212,37,15)" fg:x="141186" fg:w="52"/><text x="39.2236%" y="687.50"></text></g><g><title>kmem_cache_alloc (49 samples, 0.01%)</title><rect x="38.9744%" y="661" width="0.0135%" height="15" fill="rgb(208,130,40)" fg:x="141189" fg:w="49"/><text x="39.2244%" y="671.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (129 samples, 0.04%)</title><rect x="38.9606%" y="725" width="0.0356%" height="15" fill="rgb(236,55,29)" fg:x="141139" fg:w="129"/><text x="39.2106%" y="735.50"></text></g><g><title>clear_extent_bit (103 samples, 0.03%)</title><rect x="38.9678%" y="709" width="0.0284%" height="15" fill="rgb(209,156,45)" fg:x="141165" fg:w="103"/><text x="39.2178%" y="719.50"></text></g><g><title>__clear_extent_bit (101 samples, 0.03%)</title><rect x="38.9683%" y="693" width="0.0279%" height="15" fill="rgb(249,107,4)" fg:x="141167" fg:w="101"/><text x="39.2183%" y="703.50"></text></g><g><title>alloc_extent_state (108 samples, 0.03%)</title><rect x="39.0255%" y="677" width="0.0298%" height="15" fill="rgb(227,7,13)" fg:x="141374" fg:w="108"/><text x="39.2755%" y="687.50"></text></g><g><title>kmem_cache_alloc (81 samples, 0.02%)</title><rect x="39.0329%" y="661" width="0.0224%" height="15" fill="rgb(250,129,14)" fg:x="141401" fg:w="81"/><text x="39.2829%" y="671.50"></text></g><g><title>clear_record_extent_bits (208 samples, 0.06%)</title><rect x="39.0111%" y="709" width="0.0574%" height="15" fill="rgb(229,92,13)" fg:x="141322" fg:w="208"/><text x="39.2611%" y="719.50"></text></g><g><title>__clear_extent_bit (196 samples, 0.05%)</title><rect x="39.0144%" y="693" width="0.0541%" height="15" fill="rgb(245,98,39)" fg:x="141334" fg:w="196"/><text x="39.2644%" y="703.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (270 samples, 0.07%)</title><rect x="39.0050%" y="725" width="0.0745%" height="15" fill="rgb(234,135,48)" fg:x="141300" fg:w="270"/><text x="39.2550%" y="735.50"></text></g><g><title>btrfs_destroy_inode (933 samples, 0.26%)</title><rect x="38.8861%" y="741" width="0.2575%" height="15" fill="rgb(230,98,28)" fg:x="140869" fg:w="933"/><text x="39.1361%" y="751.50"></text></g><g><title>rb_erase (232 samples, 0.06%)</title><rect x="39.0796%" y="725" width="0.0640%" height="15" fill="rgb(223,121,0)" fg:x="141570" fg:w="232"/><text x="39.3296%" y="735.50"></text></g><g><title>destroy_inode (1,105 samples, 0.31%)</title><rect x="38.8438%" y="757" width="0.3050%" height="15" fill="rgb(234,173,33)" fg:x="140716" fg:w="1105"/><text x="39.0938%" y="767.50"></text></g><g><title>btrfs_dentry_delete (44 samples, 0.01%)</title><rect x="39.1762%" y="741" width="0.0121%" height="15" fill="rgb(245,47,8)" fg:x="141920" fg:w="44"/><text x="39.4262%" y="751.50"></text></g><g><title>lockref_put_or_lock (50 samples, 0.01%)</title><rect x="39.1883%" y="741" width="0.0138%" height="15" fill="rgb(205,17,20)" fg:x="141964" fg:w="50"/><text x="39.4383%" y="751.50"></text></g><g><title>dput (168 samples, 0.05%)</title><rect x="39.1563%" y="757" width="0.0464%" height="15" fill="rgb(232,151,16)" fg:x="141848" fg:w="168"/><text x="39.4063%" y="767.50"></text></g><g><title>__list_del_entry_valid (56 samples, 0.02%)</title><rect x="39.2115%" y="741" width="0.0155%" height="15" fill="rgb(208,30,32)" fg:x="142048" fg:w="56"/><text x="39.4615%" y="751.50"></text></g><g><title>__remove_inode_hash (37 samples, 0.01%)</title><rect x="39.2270%" y="741" width="0.0102%" height="15" fill="rgb(254,26,3)" fg:x="142104" fg:w="37"/><text x="39.4770%" y="751.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="39.2372%" y="741" width="0.0141%" height="15" fill="rgb(240,177,30)" fg:x="142141" fg:w="51"/><text x="39.4872%" y="751.50"></text></g><g><title>_raw_spin_lock (110 samples, 0.03%)</title><rect x="39.3542%" y="677" width="0.0304%" height="15" fill="rgb(248,76,44)" fg:x="142565" fg:w="110"/><text x="39.6042%" y="687.50"></text></g><g><title>btrfs_trans_release_metadata (203 samples, 0.06%)</title><rect x="39.3321%" y="709" width="0.0560%" height="15" fill="rgb(241,186,54)" fg:x="142485" fg:w="203"/><text x="39.5821%" y="719.50"></text></g><g><title>btrfs_block_rsv_release (193 samples, 0.05%)</title><rect x="39.3349%" y="693" width="0.0533%" height="15" fill="rgb(249,171,29)" fg:x="142495" fg:w="193"/><text x="39.5849%" y="703.50"></text></g><g><title>__btrfs_end_transaction (505 samples, 0.14%)</title><rect x="39.2767%" y="725" width="0.1394%" height="15" fill="rgb(237,151,44)" fg:x="142284" fg:w="505"/><text x="39.5267%" y="735.50"></text></g><g><title>kmem_cache_free (101 samples, 0.03%)</title><rect x="39.3882%" y="709" width="0.0279%" height="15" fill="rgb(228,174,30)" fg:x="142688" fg:w="101"/><text x="39.6382%" y="719.50"></text></g><g><title>mutex_lock (57 samples, 0.02%)</title><rect x="39.4368%" y="709" width="0.0157%" height="15" fill="rgb(252,14,37)" fg:x="142864" fg:w="57"/><text x="39.6868%" y="719.50"></text></g><g><title>__radix_tree_delete (41 samples, 0.01%)</title><rect x="39.4572%" y="693" width="0.0113%" height="15" fill="rgb(207,111,40)" fg:x="142938" fg:w="41"/><text x="39.7072%" y="703.50"></text></g><g><title>__radix_tree_lookup (125 samples, 0.03%)</title><rect x="39.4685%" y="693" width="0.0345%" height="15" fill="rgb(248,171,54)" fg:x="142979" fg:w="125"/><text x="39.7185%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (328 samples, 0.09%)</title><rect x="39.4161%" y="725" width="0.0905%" height="15" fill="rgb(211,127,2)" fg:x="142789" fg:w="328"/><text x="39.6661%" y="735.50"></text></g><g><title>radix_tree_delete_item (191 samples, 0.05%)</title><rect x="39.4539%" y="709" width="0.0527%" height="15" fill="rgb(236,87,47)" fg:x="142926" fg:w="191"/><text x="39.7039%" y="719.50"></text></g><g><title>btrfs_alloc_block_rsv (122 samples, 0.03%)</title><rect x="39.5141%" y="725" width="0.0337%" height="15" fill="rgb(223,190,45)" fg:x="143144" fg:w="122"/><text x="39.7641%" y="735.50"></text></g><g><title>kmem_cache_alloc_trace (74 samples, 0.02%)</title><rect x="39.5273%" y="709" width="0.0204%" height="15" fill="rgb(215,5,16)" fg:x="143192" fg:w="74"/><text x="39.7773%" y="719.50"></text></g><g><title>btrfs_btree_balance_dirty (66 samples, 0.02%)</title><rect x="39.5477%" y="725" width="0.0182%" height="15" fill="rgb(252,82,33)" fg:x="143266" fg:w="66"/><text x="39.7977%" y="735.50"></text></g><g><title>__btrfs_end_transaction (188 samples, 0.05%)</title><rect x="39.5759%" y="709" width="0.0519%" height="15" fill="rgb(247,213,44)" fg:x="143368" fg:w="188"/><text x="39.8259%" y="719.50"></text></g><g><title>kmem_cache_free (53 samples, 0.01%)</title><rect x="39.6132%" y="693" width="0.0146%" height="15" fill="rgb(205,196,44)" fg:x="143503" fg:w="53"/><text x="39.8632%" y="703.50"></text></g><g><title>mutex_lock (51 samples, 0.01%)</title><rect x="39.6579%" y="693" width="0.0141%" height="15" fill="rgb(237,96,54)" fg:x="143665" fg:w="51"/><text x="39.9079%" y="703.50"></text></g><g><title>_cond_resched (44 samples, 0.01%)</title><rect x="39.6598%" y="677" width="0.0121%" height="15" fill="rgb(230,113,34)" fg:x="143672" fg:w="44"/><text x="39.9098%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (166 samples, 0.05%)</title><rect x="39.6278%" y="709" width="0.0458%" height="15" fill="rgb(221,224,12)" fg:x="143556" fg:w="166"/><text x="39.8778%" y="719.50"></text></g><g><title>_find_next_bit.constprop.0 (216 samples, 0.06%)</title><rect x="39.7426%" y="613" width="0.0596%" height="15" fill="rgb(219,112,44)" fg:x="143972" fg:w="216"/><text x="39.9926%" y="623.50"></text></g><g><title>steal_from_bitmap.part.0 (260 samples, 0.07%)</title><rect x="39.7338%" y="629" width="0.0718%" height="15" fill="rgb(210,31,13)" fg:x="143940" fg:w="260"/><text x="39.9838%" y="639.50"></text></g><g><title>__btrfs_add_free_space (279 samples, 0.08%)</title><rect x="39.7296%" y="645" width="0.0770%" height="15" fill="rgb(230,25,16)" fg:x="143925" fg:w="279"/><text x="39.9796%" y="655.50"></text></g><g><title>btrfs_free_tree_block (299 samples, 0.08%)</title><rect x="39.7294%" y="661" width="0.0825%" height="15" fill="rgb(246,108,53)" fg:x="143924" fg:w="299"/><text x="39.9794%" y="671.50"></text></g><g><title>btrfs_del_leaf (307 samples, 0.08%)</title><rect x="39.7294%" y="677" width="0.0847%" height="15" fill="rgb(241,172,50)" fg:x="143924" fg:w="307"/><text x="39.9794%" y="687.50"></text></g><g><title>btrfs_get_token_32 (425 samples, 0.12%)</title><rect x="39.8224%" y="677" width="0.1173%" height="15" fill="rgb(235,141,10)" fg:x="144261" fg:w="425"/><text x="40.0724%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (51 samples, 0.01%)</title><rect x="39.9256%" y="661" width="0.0141%" height="15" fill="rgb(220,174,43)" fg:x="144635" fg:w="51"/><text x="40.1756%" y="671.50"></text></g><g><title>btrfs_set_token_32 (308 samples, 0.09%)</title><rect x="39.9472%" y="677" width="0.0850%" height="15" fill="rgb(215,181,40)" fg:x="144713" fg:w="308"/><text x="40.1972%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (47 samples, 0.01%)</title><rect x="40.0192%" y="661" width="0.0130%" height="15" fill="rgb(230,97,2)" fg:x="144974" fg:w="47"/><text x="40.2692%" y="671.50"></text></g><g><title>memcpy_extent_buffer (70 samples, 0.02%)</title><rect x="40.0405%" y="677" width="0.0193%" height="15" fill="rgb(211,25,27)" fg:x="145051" fg:w="70"/><text x="40.2905%" y="687.50"></text></g><g><title>memmove (51 samples, 0.01%)</title><rect x="40.0457%" y="661" width="0.0141%" height="15" fill="rgb(230,87,26)" fg:x="145070" fg:w="51"/><text x="40.2957%" y="671.50"></text></g><g><title>copy_pages (68 samples, 0.02%)</title><rect x="40.0744%" y="661" width="0.0188%" height="15" fill="rgb(227,160,17)" fg:x="145174" fg:w="68"/><text x="40.3244%" y="671.50"></text></g><g><title>memmove_extent_buffer (617 samples, 0.17%)</title><rect x="40.0598%" y="677" width="0.1703%" height="15" fill="rgb(244,85,34)" fg:x="145121" fg:w="617"/><text x="40.3098%" y="687.50"></text></g><g><title>memmove (496 samples, 0.14%)</title><rect x="40.0932%" y="661" width="0.1369%" height="15" fill="rgb(207,70,0)" fg:x="145242" fg:w="496"/><text x="40.3432%" y="671.50"></text></g><g><title>push_leaf_left (42 samples, 0.01%)</title><rect x="40.2301%" y="677" width="0.0116%" height="15" fill="rgb(223,129,7)" fg:x="145738" fg:w="42"/><text x="40.4801%" y="687.50"></text></g><g><title>btrfs_del_items (1,987 samples, 0.55%)</title><rect x="39.6979%" y="693" width="0.5485%" height="15" fill="rgb(246,105,7)" fg:x="143810" fg:w="1987"/><text x="39.9479%" y="703.50"></text></g><g><title>_raw_spin_lock (48 samples, 0.01%)</title><rect x="40.2555%" y="661" width="0.0133%" height="15" fill="rgb(215,154,42)" fg:x="145830" fg:w="48"/><text x="40.5055%" y="671.50"></text></g><g><title>btrfs_block_rsv_release (82 samples, 0.02%)</title><rect x="40.2486%" y="677" width="0.0226%" height="15" fill="rgb(220,215,30)" fg:x="145805" fg:w="82"/><text x="40.4986%" y="687.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (116 samples, 0.03%)</title><rect x="40.2464%" y="693" width="0.0320%" height="15" fill="rgb(228,81,51)" fg:x="145797" fg:w="116"/><text x="40.4964%" y="703.50"></text></g><g><title>_raw_read_lock (58 samples, 0.02%)</title><rect x="40.3803%" y="629" width="0.0160%" height="15" fill="rgb(247,71,54)" fg:x="146282" fg:w="58"/><text x="40.6303%" y="639.50"></text></g><g><title>finish_wait (514 samples, 0.14%)</title><rect x="40.3971%" y="629" width="0.1419%" height="15" fill="rgb(234,176,34)" fg:x="146343" fg:w="514"/><text x="40.6471%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (490 samples, 0.14%)</title><rect x="40.4037%" y="613" width="0.1353%" height="15" fill="rgb(241,103,54)" fg:x="146367" fg:w="490"/><text x="40.6537%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (468 samples, 0.13%)</title><rect x="40.4098%" y="597" width="0.1292%" height="15" fill="rgb(228,22,34)" fg:x="146389" fg:w="468"/><text x="40.6598%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (2,018 samples, 0.56%)</title><rect x="40.5788%" y="613" width="0.5571%" height="15" fill="rgb(241,179,48)" fg:x="147001" fg:w="2018"/><text x="40.8288%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,956 samples, 0.54%)</title><rect x="40.5959%" y="597" width="0.5399%" height="15" fill="rgb(235,167,37)" fg:x="147063" fg:w="1956"/><text x="40.8459%" y="607.50"></text></g><g><title>prepare_to_wait_event (2,184 samples, 0.60%)</title><rect x="40.5396%" y="629" width="0.6029%" height="15" fill="rgb(213,109,30)" fg:x="146859" fg:w="2184"/><text x="40.7896%" y="639.50"></text></g><g><title>queued_read_lock_slowpath (642 samples, 0.18%)</title><rect x="41.1424%" y="629" width="0.1772%" height="15" fill="rgb(222,172,16)" fg:x="149043" fg:w="642"/><text x="41.3924%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (459 samples, 0.13%)</title><rect x="41.1930%" y="613" width="0.1267%" height="15" fill="rgb(233,192,5)" fg:x="149226" fg:w="459"/><text x="41.4430%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (42 samples, 0.01%)</title><rect x="41.3456%" y="597" width="0.0116%" height="15" fill="rgb(247,189,41)" fg:x="149779" fg:w="42"/><text x="41.5956%" y="607.50"></text></g><g><title>update_curr (82 samples, 0.02%)</title><rect x="41.3909%" y="565" width="0.0226%" height="15" fill="rgb(218,134,47)" fg:x="149943" fg:w="82"/><text x="41.6409%" y="575.50"></text></g><g><title>dequeue_entity (218 samples, 0.06%)</title><rect x="41.3729%" y="581" width="0.0602%" height="15" fill="rgb(216,29,3)" fg:x="149878" fg:w="218"/><text x="41.6229%" y="591.50"></text></g><g><title>update_load_avg (71 samples, 0.02%)</title><rect x="41.4135%" y="565" width="0.0196%" height="15" fill="rgb(246,140,12)" fg:x="150025" fg:w="71"/><text x="41.6635%" y="575.50"></text></g><g><title>dequeue_task_fair (284 samples, 0.08%)</title><rect x="41.3627%" y="597" width="0.0784%" height="15" fill="rgb(230,136,11)" fg:x="149841" fg:w="284"/><text x="41.6127%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (221 samples, 0.06%)</title><rect x="41.4519%" y="581" width="0.0610%" height="15" fill="rgb(247,22,47)" fg:x="150164" fg:w="221"/><text x="41.7019%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (210 samples, 0.06%)</title><rect x="41.4549%" y="565" width="0.0580%" height="15" fill="rgb(218,84,22)" fg:x="150175" fg:w="210"/><text x="41.7049%" y="575.50"></text></g><g><title>native_write_msr (208 samples, 0.06%)</title><rect x="41.4555%" y="549" width="0.0574%" height="15" fill="rgb(216,87,39)" fg:x="150177" fg:w="208"/><text x="41.7055%" y="559.50"></text></g><g><title>finish_task_switch (272 samples, 0.08%)</title><rect x="41.4411%" y="597" width="0.0751%" height="15" fill="rgb(221,178,8)" fg:x="150125" fg:w="272"/><text x="41.6911%" y="607.50"></text></g><g><title>pick_next_task_fair (65 samples, 0.02%)</title><rect x="41.5165%" y="597" width="0.0179%" height="15" fill="rgb(230,42,11)" fg:x="150398" fg:w="65"/><text x="41.7665%" y="607.50"></text></g><g><title>__update_idle_core (48 samples, 0.01%)</title><rect x="41.5355%" y="581" width="0.0133%" height="15" fill="rgb(237,229,4)" fg:x="150467" fg:w="48"/><text x="41.7855%" y="591.50"></text></g><g><title>pick_next_task_idle (53 samples, 0.01%)</title><rect x="41.5344%" y="597" width="0.0146%" height="15" fill="rgb(222,31,33)" fg:x="150463" fg:w="53"/><text x="41.7844%" y="607.50"></text></g><g><title>psi_task_change (255 samples, 0.07%)</title><rect x="41.5490%" y="597" width="0.0704%" height="15" fill="rgb(210,17,39)" fg:x="150516" fg:w="255"/><text x="41.7990%" y="607.50"></text></g><g><title>psi_group_change (223 samples, 0.06%)</title><rect x="41.5579%" y="581" width="0.0616%" height="15" fill="rgb(244,93,20)" fg:x="150548" fg:w="223"/><text x="41.8079%" y="591.50"></text></g><g><title>record_times (59 samples, 0.02%)</title><rect x="41.6032%" y="565" width="0.0163%" height="15" fill="rgb(210,40,47)" fg:x="150712" fg:w="59"/><text x="41.8532%" y="575.50"></text></g><g><title>sched_clock_cpu (40 samples, 0.01%)</title><rect x="41.6084%" y="549" width="0.0110%" height="15" fill="rgb(239,211,47)" fg:x="150731" fg:w="40"/><text x="41.8584%" y="559.50"></text></g><g><title>psi_task_switch (61 samples, 0.02%)</title><rect x="41.6194%" y="597" width="0.0168%" height="15" fill="rgb(251,223,49)" fg:x="150771" fg:w="61"/><text x="41.8694%" y="607.50"></text></g><g><title>psi_group_change (46 samples, 0.01%)</title><rect x="41.6236%" y="581" width="0.0127%" height="15" fill="rgb(221,149,5)" fg:x="150786" fg:w="46"/><text x="41.8736%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (4,650 samples, 1.28%)</title><rect x="40.3623%" y="645" width="1.2836%" height="15" fill="rgb(219,224,51)" fg:x="146217" fg:w="4650"/><text x="40.6123%" y="655.50"></text></g><g><title>schedule (1,182 samples, 0.33%)</title><rect x="41.3197%" y="629" width="0.3263%" height="15" fill="rgb(223,7,8)" fg:x="149685" fg:w="1182"/><text x="41.5697%" y="639.50"></text></g><g><title>__schedule (1,167 samples, 0.32%)</title><rect x="41.3238%" y="613" width="0.3221%" height="15" fill="rgb(241,217,22)" fg:x="149700" fg:w="1167"/><text x="41.5738%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (4,715 samples, 1.30%)</title><rect x="40.3590%" y="661" width="1.3015%" height="15" fill="rgb(248,209,0)" fg:x="146205" fg:w="4715"/><text x="40.6090%" y="671.50"></text></g><g><title>btrfs_root_node (53 samples, 0.01%)</title><rect x="41.6459%" y="645" width="0.0146%" height="15" fill="rgb(217,205,4)" fg:x="150867" fg:w="53"/><text x="41.8959%" y="655.50"></text></g><g><title>prepare_to_wait_event (58 samples, 0.02%)</title><rect x="41.6744%" y="645" width="0.0160%" height="15" fill="rgb(228,124,39)" fg:x="150970" fg:w="58"/><text x="41.9244%" y="655.50"></text></g><g><title>update_curr (42 samples, 0.01%)</title><rect x="41.7334%" y="581" width="0.0116%" height="15" fill="rgb(250,116,42)" fg:x="151184" fg:w="42"/><text x="41.9834%" y="591.50"></text></g><g><title>dequeue_entity (135 samples, 0.04%)</title><rect x="41.7199%" y="597" width="0.0373%" height="15" fill="rgb(223,202,9)" fg:x="151135" fg:w="135"/><text x="41.9699%" y="607.50"></text></g><g><title>update_load_avg (44 samples, 0.01%)</title><rect x="41.7450%" y="581" width="0.0121%" height="15" fill="rgb(242,222,40)" fg:x="151226" fg:w="44"/><text x="41.9950%" y="591.50"></text></g><g><title>dequeue_task_fair (174 samples, 0.05%)</title><rect x="41.7152%" y="613" width="0.0480%" height="15" fill="rgb(229,99,46)" fg:x="151118" fg:w="174"/><text x="41.9652%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (157 samples, 0.04%)</title><rect x="41.7710%" y="597" width="0.0433%" height="15" fill="rgb(225,56,46)" fg:x="151320" fg:w="157"/><text x="42.0210%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (152 samples, 0.04%)</title><rect x="41.7724%" y="581" width="0.0420%" height="15" fill="rgb(227,94,5)" fg:x="151325" fg:w="152"/><text x="42.0224%" y="591.50"></text></g><g><title>native_write_msr (151 samples, 0.04%)</title><rect x="41.7726%" y="565" width="0.0417%" height="15" fill="rgb(205,112,38)" fg:x="151326" fg:w="151"/><text x="42.0226%" y="575.50"></text></g><g><title>finish_task_switch (193 samples, 0.05%)</title><rect x="41.7633%" y="613" width="0.0533%" height="15" fill="rgb(231,133,46)" fg:x="151292" fg:w="193"/><text x="42.0133%" y="623.50"></text></g><g><title>psi_task_change (111 samples, 0.03%)</title><rect x="41.8284%" y="613" width="0.0306%" height="15" fill="rgb(217,16,9)" fg:x="151528" fg:w="111"/><text x="42.0784%" y="623.50"></text></g><g><title>psi_group_change (94 samples, 0.03%)</title><rect x="41.8331%" y="597" width="0.0259%" height="15" fill="rgb(249,173,9)" fg:x="151545" fg:w="94"/><text x="42.0831%" y="607.50"></text></g><g><title>__btrfs_tree_lock (770 samples, 0.21%)</title><rect x="41.6606%" y="661" width="0.2126%" height="15" fill="rgb(205,163,53)" fg:x="150920" fg:w="770"/><text x="41.9106%" y="671.50"></text></g><g><title>schedule (662 samples, 0.18%)</title><rect x="41.6904%" y="645" width="0.1827%" height="15" fill="rgb(217,54,41)" fg:x="151028" fg:w="662"/><text x="41.9404%" y="655.50"></text></g><g><title>__schedule (650 samples, 0.18%)</title><rect x="41.6937%" y="629" width="0.1794%" height="15" fill="rgb(228,216,12)" fg:x="151040" fg:w="650"/><text x="41.9437%" y="639.50"></text></g><g><title>balance_level (42 samples, 0.01%)</title><rect x="41.8731%" y="661" width="0.0116%" height="15" fill="rgb(244,228,15)" fg:x="151690" fg:w="42"/><text x="42.1231%" y="671.50"></text></g><g><title>__schedule (42 samples, 0.01%)</title><rect x="41.9540%" y="613" width="0.0116%" height="15" fill="rgb(221,176,53)" fg:x="151983" fg:w="42"/><text x="42.2040%" y="623.50"></text></g><g><title>_cond_resched (56 samples, 0.02%)</title><rect x="41.9515%" y="629" width="0.0155%" height="15" fill="rgb(205,94,34)" fg:x="151974" fg:w="56"/><text x="42.2015%" y="639.50"></text></g><g><title>_raw_write_lock (156 samples, 0.04%)</title><rect x="41.9717%" y="629" width="0.0431%" height="15" fill="rgb(213,110,48)" fg:x="152047" fg:w="156"/><text x="42.2217%" y="639.50"></text></g><g><title>__list_del_entry_valid (115 samples, 0.03%)</title><rect x="42.0211%" y="613" width="0.0317%" height="15" fill="rgb(236,142,28)" fg:x="152226" fg:w="115"/><text x="42.2711%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (1,744 samples, 0.48%)</title><rect x="42.0528%" y="613" width="0.4814%" height="15" fill="rgb(225,135,29)" fg:x="152341" fg:w="1744"/><text x="42.3028%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,659 samples, 0.46%)</title><rect x="42.0763%" y="597" width="0.4580%" height="15" fill="rgb(252,45,31)" fg:x="152426" fg:w="1659"/><text x="42.3263%" y="607.50"></text></g><g><title>finish_wait (1,882 samples, 0.52%)</title><rect x="42.0150%" y="629" width="0.5195%" height="15" fill="rgb(211,187,50)" fg:x="152204" fg:w="1882"/><text x="42.2650%" y="639.50"></text></g><g><title>__list_add_valid (129 samples, 0.04%)</title><rect x="42.6472%" y="613" width="0.0356%" height="15" fill="rgb(229,109,7)" fg:x="154494" fg:w="129"/><text x="42.8972%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (6,150 samples, 1.70%)</title><rect x="42.6828%" y="613" width="1.6977%" height="15" fill="rgb(251,131,51)" fg:x="154623" fg:w="6150"/><text x="42.9328%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,827 samples, 1.61%)</title><rect x="42.7719%" y="597" width="1.6085%" height="15" fill="rgb(251,180,35)" fg:x="154946" fg:w="5827"/><text x="43.0219%" y="607.50"></text></g><g><title>prepare_to_wait_event (6,786 samples, 1.87%)</title><rect x="42.5362%" y="629" width="1.8732%" height="15" fill="rgb(211,46,32)" fg:x="154092" fg:w="6786"/><text x="42.7862%" y="639.50">p..</text></g><g><title>_raw_spin_unlock_irqrestore (105 samples, 0.03%)</title><rect x="44.3804%" y="613" width="0.0290%" height="15" fill="rgb(248,123,17)" fg:x="160773" fg:w="105"/><text x="44.6304%" y="623.50"></text></g><g><title>queued_write_lock_slowpath (2,267 samples, 0.63%)</title><rect x="44.4094%" y="629" width="0.6258%" height="15" fill="rgb(227,141,18)" fg:x="160878" fg:w="2267"/><text x="44.6594%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,271 samples, 0.35%)</title><rect x="44.6844%" y="613" width="0.3509%" height="15" fill="rgb(216,102,9)" fg:x="161874" fg:w="1271"/><text x="44.9344%" y="623.50"></text></g><g><title>_raw_spin_lock (85 samples, 0.02%)</title><rect x="45.1426%" y="581" width="0.0235%" height="15" fill="rgb(253,47,13)" fg:x="163534" fg:w="85"/><text x="45.3926%" y="591.50"></text></g><g><title>__perf_event_task_sched_out (184 samples, 0.05%)</title><rect x="45.1172%" y="597" width="0.0508%" height="15" fill="rgb(226,93,23)" fg:x="163442" fg:w="184"/><text x="45.3672%" y="607.50"></text></g><g><title>_raw_spin_lock (44 samples, 0.01%)</title><rect x="45.1721%" y="597" width="0.0121%" height="15" fill="rgb(247,104,17)" fg:x="163641" fg:w="44"/><text x="45.4221%" y="607.50"></text></g><g><title>reweight_entity (46 samples, 0.01%)</title><rect x="45.2436%" y="565" width="0.0127%" height="15" fill="rgb(233,203,26)" fg:x="163900" fg:w="46"/><text x="45.4936%" y="575.50"></text></g><g><title>update_cfs_group (92 samples, 0.03%)</title><rect x="45.2563%" y="565" width="0.0254%" height="15" fill="rgb(244,98,49)" fg:x="163946" fg:w="92"/><text x="45.5063%" y="575.50"></text></g><g><title>__calc_delta (72 samples, 0.02%)</title><rect x="45.3168%" y="549" width="0.0199%" height="15" fill="rgb(235,134,22)" fg:x="164165" fg:w="72"/><text x="45.5668%" y="559.50"></text></g><g><title>cpuacct_charge (62 samples, 0.02%)</title><rect x="45.3386%" y="549" width="0.0171%" height="15" fill="rgb(221,70,32)" fg:x="164244" fg:w="62"/><text x="45.5886%" y="559.50"></text></g><g><title>update_curr (302 samples, 0.08%)</title><rect x="45.2817%" y="565" width="0.0834%" height="15" fill="rgb(238,15,50)" fg:x="164038" fg:w="302"/><text x="45.5317%" y="575.50"></text></g><g><title>__update_load_avg_cfs_rq (65 samples, 0.02%)</title><rect x="45.3966%" y="549" width="0.0179%" height="15" fill="rgb(215,221,48)" fg:x="164454" fg:w="65"/><text x="45.6466%" y="559.50"></text></g><g><title>__update_load_avg_se (111 samples, 0.03%)</title><rect x="45.4145%" y="549" width="0.0306%" height="15" fill="rgb(236,73,3)" fg:x="164519" fg:w="111"/><text x="45.6645%" y="559.50"></text></g><g><title>dequeue_entity (865 samples, 0.24%)</title><rect x="45.2088%" y="581" width="0.2388%" height="15" fill="rgb(250,107,11)" fg:x="163774" fg:w="865"/><text x="45.4588%" y="591.50"></text></g><g><title>update_load_avg (299 samples, 0.08%)</title><rect x="45.3651%" y="565" width="0.0825%" height="15" fill="rgb(242,39,14)" fg:x="164340" fg:w="299"/><text x="45.6151%" y="575.50"></text></g><g><title>dequeue_task_fair (1,038 samples, 0.29%)</title><rect x="45.1843%" y="597" width="0.2865%" height="15" fill="rgb(248,164,37)" fg:x="163685" fg:w="1038"/><text x="45.4343%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (844 samples, 0.23%)</title><rect x="45.5202%" y="581" width="0.2330%" height="15" fill="rgb(217,60,12)" fg:x="164902" fg:w="844"/><text x="45.7702%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (812 samples, 0.22%)</title><rect x="45.5291%" y="565" width="0.2241%" height="15" fill="rgb(240,125,29)" fg:x="164934" fg:w="812"/><text x="45.7791%" y="575.50"></text></g><g><title>native_write_msr (806 samples, 0.22%)</title><rect x="45.5307%" y="549" width="0.2225%" height="15" fill="rgb(208,207,28)" fg:x="164940" fg:w="806"/><text x="45.7807%" y="559.50"></text></g><g><title>finish_task_switch (1,064 samples, 0.29%)</title><rect x="45.4708%" y="597" width="0.2937%" height="15" fill="rgb(209,159,27)" fg:x="164723" fg:w="1064"/><text x="45.7208%" y="607.50"></text></g><g><title>newidle_balance (88 samples, 0.02%)</title><rect x="45.7789%" y="581" width="0.0243%" height="15" fill="rgb(251,176,53)" fg:x="165839" fg:w="88"/><text x="46.0289%" y="591.50"></text></g><g><title>pick_next_task_fair (193 samples, 0.05%)</title><rect x="45.7648%" y="597" width="0.0533%" height="15" fill="rgb(211,85,7)" fg:x="165788" fg:w="193"/><text x="46.0148%" y="607.50"></text></g><g><title>pick_next_task_idle (181 samples, 0.05%)</title><rect x="45.8181%" y="597" width="0.0500%" height="15" fill="rgb(216,64,54)" fg:x="165981" fg:w="181"/><text x="46.0681%" y="607.50"></text></g><g><title>__update_idle_core (172 samples, 0.05%)</title><rect x="45.8206%" y="581" width="0.0475%" height="15" fill="rgb(217,54,24)" fg:x="165990" fg:w="172"/><text x="46.0706%" y="591.50"></text></g><g><title>psi_task_change (821 samples, 0.23%)</title><rect x="45.8680%" y="597" width="0.2266%" height="15" fill="rgb(208,206,53)" fg:x="166162" fg:w="821"/><text x="46.1180%" y="607.50"></text></g><g><title>psi_group_change (722 samples, 0.20%)</title><rect x="45.8954%" y="581" width="0.1993%" height="15" fill="rgb(251,74,39)" fg:x="166261" fg:w="722"/><text x="46.1454%" y="591.50"></text></g><g><title>record_times (231 samples, 0.06%)</title><rect x="46.0309%" y="565" width="0.0638%" height="15" fill="rgb(226,47,5)" fg:x="166752" fg:w="231"/><text x="46.2809%" y="575.50"></text></g><g><title>sched_clock_cpu (144 samples, 0.04%)</title><rect x="46.0549%" y="549" width="0.0398%" height="15" fill="rgb(234,111,33)" fg:x="166839" fg:w="144"/><text x="46.3049%" y="559.50"></text></g><g><title>sched_clock (120 samples, 0.03%)</title><rect x="46.0615%" y="533" width="0.0331%" height="15" fill="rgb(251,14,10)" fg:x="166863" fg:w="120"/><text x="46.3115%" y="543.50"></text></g><g><title>native_sched_clock (118 samples, 0.03%)</title><rect x="46.0621%" y="517" width="0.0326%" height="15" fill="rgb(232,43,0)" fg:x="166865" fg:w="118"/><text x="46.3121%" y="527.50"></text></g><g><title>psi_task_switch (126 samples, 0.03%)</title><rect x="46.0947%" y="597" width="0.0348%" height="15" fill="rgb(222,68,43)" fg:x="166983" fg:w="126"/><text x="46.3447%" y="607.50"></text></g><g><title>psi_group_change (100 samples, 0.03%)</title><rect x="46.1018%" y="581" width="0.0276%" height="15" fill="rgb(217,24,23)" fg:x="167009" fg:w="100"/><text x="46.3518%" y="591.50"></text></g><g><title>put_prev_task_fair (47 samples, 0.01%)</title><rect x="46.1294%" y="597" width="0.0130%" height="15" fill="rgb(229,209,14)" fg:x="167109" fg:w="47"/><text x="46.3794%" y="607.50"></text></g><g><title>put_prev_entity (37 samples, 0.01%)</title><rect x="46.1322%" y="581" width="0.0102%" height="15" fill="rgb(250,149,48)" fg:x="167119" fg:w="37"/><text x="46.3822%" y="591.50"></text></g><g><title>__btrfs_tree_lock (15,505 samples, 4.28%)</title><rect x="41.8927%" y="645" width="4.2801%" height="15" fill="rgb(210,120,37)" fg:x="151761" fg:w="15505"/><text x="42.1427%" y="655.50">__btr..</text></g><g><title>schedule (4,121 samples, 1.14%)</title><rect x="45.0352%" y="629" width="1.1376%" height="15" fill="rgb(210,21,8)" fg:x="163145" fg:w="4121"/><text x="45.2852%" y="639.50"></text></g><g><title>__schedule (4,058 samples, 1.12%)</title><rect x="45.0526%" y="613" width="1.1202%" height="15" fill="rgb(243,145,7)" fg:x="163208" fg:w="4058"/><text x="45.3026%" y="623.50"></text></g><g><title>update_rq_clock (99 samples, 0.03%)</title><rect x="46.1455%" y="597" width="0.0273%" height="15" fill="rgb(238,178,32)" fg:x="167167" fg:w="99"/><text x="46.3955%" y="607.50"></text></g><g><title>sched_clock_cpu (54 samples, 0.01%)</title><rect x="46.1579%" y="581" width="0.0149%" height="15" fill="rgb(222,4,10)" fg:x="167212" fg:w="54"/><text x="46.4079%" y="591.50"></text></g><g><title>sched_clock (48 samples, 0.01%)</title><rect x="46.1595%" y="565" width="0.0133%" height="15" fill="rgb(239,7,37)" fg:x="167218" fg:w="48"/><text x="46.4095%" y="575.50"></text></g><g><title>native_sched_clock (46 samples, 0.01%)</title><rect x="46.1601%" y="549" width="0.0127%" height="15" fill="rgb(215,31,37)" fg:x="167220" fg:w="46"/><text x="46.4101%" y="559.50"></text></g><g><title>btrfs_lock_root_node (15,525 samples, 4.29%)</title><rect x="41.8911%" y="661" width="4.2856%" height="15" fill="rgb(224,83,33)" fg:x="151755" fg:w="15525"/><text x="42.1411%" y="671.50">btrfs..</text></g><g><title>btrfs_set_path_blocking (75 samples, 0.02%)</title><rect x="46.1767%" y="661" width="0.0207%" height="15" fill="rgb(239,55,3)" fg:x="167280" fg:w="75"/><text x="46.4267%" y="671.50"></text></g><g><title>btrfs_set_lock_blocking_write (46 samples, 0.01%)</title><rect x="46.1847%" y="645" width="0.0127%" height="15" fill="rgb(247,92,11)" fg:x="167309" fg:w="46"/><text x="46.4347%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (491 samples, 0.14%)</title><rect x="46.2065%" y="661" width="0.1355%" height="15" fill="rgb(239,200,7)" fg:x="167388" fg:w="491"/><text x="46.4565%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (462 samples, 0.13%)</title><rect x="46.2145%" y="645" width="0.1275%" height="15" fill="rgb(227,115,8)" fg:x="167417" fg:w="462"/><text x="46.4645%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (256 samples, 0.07%)</title><rect x="46.3497%" y="661" width="0.0707%" height="15" fill="rgb(215,189,27)" fg:x="167907" fg:w="256"/><text x="46.5997%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (52 samples, 0.01%)</title><rect x="46.4336%" y="645" width="0.0144%" height="15" fill="rgb(251,216,39)" fg:x="168211" fg:w="52"/><text x="46.6836%" y="655.50"></text></g><g><title>btrfs_get_64 (58 samples, 0.02%)</title><rect x="46.4480%" y="645" width="0.0160%" height="15" fill="rgb(207,29,47)" fg:x="168263" fg:w="58"/><text x="46.6980%" y="655.50"></text></g><g><title>__radix_tree_lookup (168 samples, 0.05%)</title><rect x="46.4938%" y="629" width="0.0464%" height="15" fill="rgb(210,71,34)" fg:x="168429" fg:w="168"/><text x="46.7438%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (70 samples, 0.02%)</title><rect x="46.5405%" y="629" width="0.0193%" height="15" fill="rgb(253,217,51)" fg:x="168598" fg:w="70"/><text x="46.7905%" y="639.50"></text></g><g><title>mark_page_accessed (56 samples, 0.02%)</title><rect x="46.5443%" y="613" width="0.0155%" height="15" fill="rgb(222,117,46)" fg:x="168612" fg:w="56"/><text x="46.7943%" y="623.50"></text></g><g><title>find_extent_buffer (327 samples, 0.09%)</title><rect x="46.4706%" y="645" width="0.0903%" height="15" fill="rgb(226,132,6)" fg:x="168345" fg:w="327"/><text x="46.7206%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (549 samples, 0.15%)</title><rect x="46.4204%" y="661" width="0.1515%" height="15" fill="rgb(254,145,51)" fg:x="168163" fg:w="549"/><text x="46.6704%" y="671.50"></text></g><g><title>read_extent_buffer (40 samples, 0.01%)</title><rect x="46.5609%" y="645" width="0.0110%" height="15" fill="rgb(231,199,27)" fg:x="168672" fg:w="40"/><text x="46.8109%" y="655.50"></text></g><g><title>__radix_tree_lookup (56 samples, 0.02%)</title><rect x="46.6037%" y="629" width="0.0155%" height="15" fill="rgb(245,158,14)" fg:x="168827" fg:w="56"/><text x="46.8537%" y="639.50"></text></g><g><title>find_extent_buffer (136 samples, 0.04%)</title><rect x="46.5904%" y="645" width="0.0375%" height="15" fill="rgb(240,113,14)" fg:x="168779" fg:w="136"/><text x="46.8404%" y="655.50"></text></g><g><title>reada_for_balance (221 samples, 0.06%)</title><rect x="46.5719%" y="661" width="0.0610%" height="15" fill="rgb(210,20,13)" fg:x="168712" fg:w="221"/><text x="46.8219%" y="671.50"></text></g><g><title>__list_del_entry_valid (100 samples, 0.03%)</title><rect x="46.6738%" y="597" width="0.0276%" height="15" fill="rgb(241,144,13)" fg:x="169081" fg:w="100"/><text x="46.9238%" y="607.50"></text></g><g><title>_raw_spin_lock (156 samples, 0.04%)</title><rect x="46.8419%" y="581" width="0.0431%" height="15" fill="rgb(235,43,34)" fg:x="169690" fg:w="156"/><text x="47.0919%" y="591.50"></text></g><g><title>native_queued_spin_lock_slowpath (100 samples, 0.03%)</title><rect x="46.8574%" y="565" width="0.0276%" height="15" fill="rgb(208,36,20)" fg:x="169746" fg:w="100"/><text x="47.1074%" y="575.50"></text></g><g><title>_raw_spin_lock_irqsave (138 samples, 0.04%)</title><rect x="46.8850%" y="581" width="0.0381%" height="15" fill="rgb(239,204,10)" fg:x="169846" fg:w="138"/><text x="47.1350%" y="591.50"></text></g><g><title>available_idle_cpu (117 samples, 0.03%)</title><rect x="47.0056%" y="565" width="0.0323%" height="15" fill="rgb(217,84,43)" fg:x="170283" fg:w="117"/><text x="47.2556%" y="575.50"></text></g><g><title>cpumask_next_wrap (42 samples, 0.01%)</title><rect x="47.0456%" y="565" width="0.0116%" height="15" fill="rgb(241,170,50)" fg:x="170428" fg:w="42"/><text x="47.2956%" y="575.50"></text></g><g><title>select_task_rq_fair (615 samples, 0.17%)</title><rect x="46.9294%" y="581" width="0.1698%" height="15" fill="rgb(226,205,29)" fg:x="170007" fg:w="615"/><text x="47.1794%" y="591.50"></text></g><g><title>update_cfs_rq_h_load (127 samples, 0.04%)</title><rect x="47.0641%" y="565" width="0.0351%" height="15" fill="rgb(233,113,1)" fg:x="170495" fg:w="127"/><text x="47.3141%" y="575.50"></text></g><g><title>set_task_cpu (67 samples, 0.02%)</title><rect x="47.0992%" y="581" width="0.0185%" height="15" fill="rgb(253,98,13)" fg:x="170622" fg:w="67"/><text x="47.3492%" y="591.50"></text></g><g><title>migrate_task_rq_fair (40 samples, 0.01%)</title><rect x="47.1066%" y="565" width="0.0110%" height="15" fill="rgb(211,115,12)" fg:x="170649" fg:w="40"/><text x="47.3566%" y="575.50"></text></g><g><title>reweight_entity (45 samples, 0.01%)</title><rect x="47.2242%" y="533" width="0.0124%" height="15" fill="rgb(208,12,16)" fg:x="171075" fg:w="45"/><text x="47.4742%" y="543.50"></text></g><g><title>update_cfs_group (55 samples, 0.02%)</title><rect x="47.2367%" y="533" width="0.0152%" height="15" fill="rgb(237,193,54)" fg:x="171120" fg:w="55"/><text x="47.4867%" y="543.50"></text></g><g><title>update_curr (63 samples, 0.02%)</title><rect x="47.2518%" y="533" width="0.0174%" height="15" fill="rgb(243,22,42)" fg:x="171175" fg:w="63"/><text x="47.5018%" y="543.50"></text></g><g><title>enqueue_entity (554 samples, 0.15%)</title><rect x="47.1665%" y="549" width="0.1529%" height="15" fill="rgb(233,151,36)" fg:x="170866" fg:w="554"/><text x="47.4165%" y="559.50"></text></g><g><title>update_load_avg (182 samples, 0.05%)</title><rect x="47.2692%" y="533" width="0.0502%" height="15" fill="rgb(237,57,45)" fg:x="171238" fg:w="182"/><text x="47.5192%" y="543.50"></text></g><g><title>enqueue_task_fair (739 samples, 0.20%)</title><rect x="47.1315%" y="565" width="0.2040%" height="15" fill="rgb(221,88,17)" fg:x="170739" fg:w="739"/><text x="47.3815%" y="575.50"></text></g><g><title>ttwu_do_activate (1,534 samples, 0.42%)</title><rect x="47.1177%" y="581" width="0.4235%" height="15" fill="rgb(230,79,15)" fg:x="170689" fg:w="1534"/><text x="47.3677%" y="591.50"></text></g><g><title>psi_task_change (745 samples, 0.21%)</title><rect x="47.3355%" y="565" width="0.2057%" height="15" fill="rgb(213,57,13)" fg:x="171478" fg:w="745"/><text x="47.5855%" y="575.50"></text></g><g><title>psi_group_change (670 samples, 0.18%)</title><rect x="47.3562%" y="549" width="0.1849%" height="15" fill="rgb(222,116,39)" fg:x="171553" fg:w="670"/><text x="47.6062%" y="559.50"></text></g><g><title>record_times (106 samples, 0.03%)</title><rect x="47.5119%" y="533" width="0.0293%" height="15" fill="rgb(245,107,2)" fg:x="172117" fg:w="106"/><text x="47.7619%" y="543.50"></text></g><g><title>sched_clock_cpu (68 samples, 0.02%)</title><rect x="47.5224%" y="517" width="0.0188%" height="15" fill="rgb(238,1,10)" fg:x="172155" fg:w="68"/><text x="47.7724%" y="527.50"></text></g><g><title>sched_clock (55 samples, 0.02%)</title><rect x="47.5260%" y="501" width="0.0152%" height="15" fill="rgb(249,4,48)" fg:x="172168" fg:w="55"/><text x="47.7760%" y="511.50"></text></g><g><title>native_sched_clock (47 samples, 0.01%)</title><rect x="47.5282%" y="485" width="0.0130%" height="15" fill="rgb(223,151,18)" fg:x="172176" fg:w="47"/><text x="47.7782%" y="495.50"></text></g><g><title>ttwu_do_wakeup (145 samples, 0.04%)</title><rect x="47.5411%" y="581" width="0.0400%" height="15" fill="rgb(227,65,43)" fg:x="172223" fg:w="145"/><text x="47.7911%" y="591.50"></text></g><g><title>check_preempt_curr (132 samples, 0.04%)</title><rect x="47.5447%" y="565" width="0.0364%" height="15" fill="rgb(218,40,45)" fg:x="172236" fg:w="132"/><text x="47.7947%" y="575.50"></text></g><g><title>resched_curr (63 samples, 0.02%)</title><rect x="47.5638%" y="549" width="0.0174%" height="15" fill="rgb(252,121,31)" fg:x="172305" fg:w="63"/><text x="47.8138%" y="559.50"></text></g><g><title>ttwu_queue_wakelist (59 samples, 0.02%)</title><rect x="47.5812%" y="581" width="0.0163%" height="15" fill="rgb(219,158,43)" fg:x="172368" fg:w="59"/><text x="47.8312%" y="591.50"></text></g><g><title>__wake_up_common (3,548 samples, 0.98%)</title><rect x="46.6542%" y="629" width="0.9794%" height="15" fill="rgb(231,162,42)" fg:x="169010" fg:w="3548"/><text x="46.9042%" y="639.50"></text></g><g><title>autoremove_wake_function (3,482 samples, 0.96%)</title><rect x="46.6724%" y="613" width="0.9612%" height="15" fill="rgb(217,179,25)" fg:x="169076" fg:w="3482"/><text x="46.9224%" y="623.50"></text></g><g><title>try_to_wake_up (3,375 samples, 0.93%)</title><rect x="46.7020%" y="597" width="0.9316%" height="15" fill="rgb(206,212,31)" fg:x="169183" fg:w="3375"/><text x="46.9520%" y="607.50"></text></g><g><title>update_rq_clock (131 samples, 0.04%)</title><rect x="47.5975%" y="581" width="0.0362%" height="15" fill="rgb(235,144,12)" fg:x="172427" fg:w="131"/><text x="47.8475%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (116 samples, 0.03%)</title><rect x="47.6336%" y="629" width="0.0320%" height="15" fill="rgb(213,51,10)" fg:x="172558" fg:w="116"/><text x="47.8836%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (96 samples, 0.03%)</title><rect x="47.6391%" y="613" width="0.0265%" height="15" fill="rgb(231,145,14)" fg:x="172578" fg:w="96"/><text x="47.8891%" y="623.50"></text></g><g><title>__wake_up_common_lock (3,702 samples, 1.02%)</title><rect x="46.6492%" y="645" width="1.0219%" height="15" fill="rgb(235,15,28)" fg:x="168992" fg:w="3702"/><text x="46.8992%" y="655.50"></text></g><g><title>btrfs_lookup_inode (26,806 samples, 7.40%)</title><rect x="40.2853%" y="693" width="7.3996%" height="15" fill="rgb(237,206,10)" fg:x="145938" fg:w="26806"/><text x="40.5353%" y="703.50">btrfs_look..</text></g><g><title>btrfs_search_slot (26,766 samples, 7.39%)</title><rect x="40.2964%" y="677" width="7.3886%" height="15" fill="rgb(236,227,27)" fg:x="145978" fg:w="26766"/><text x="40.5464%" y="687.50">btrfs_sear..</text></g><g><title>unlock_up (3,811 samples, 1.05%)</title><rect x="46.6330%" y="661" width="1.0520%" height="15" fill="rgb(246,83,35)" fg:x="168933" fg:w="3811"/><text x="46.8830%" y="671.50"></text></g><g><title>btrfs_tree_unlock (49 samples, 0.01%)</title><rect x="47.6714%" y="645" width="0.0135%" height="15" fill="rgb(220,136,24)" fg:x="172695" fg:w="49"/><text x="47.9214%" y="655.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.02%)</title><rect x="47.7747%" y="613" width="0.0166%" height="15" fill="rgb(217,3,25)" fg:x="173069" fg:w="60"/><text x="48.0247%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (43 samples, 0.01%)</title><rect x="47.7794%" y="597" width="0.0119%" height="15" fill="rgb(239,24,14)" fg:x="173086" fg:w="43"/><text x="48.0294%" y="607.50"></text></g><g><title>select_task_rq_fair (167 samples, 0.05%)</title><rect x="47.8012%" y="613" width="0.0461%" height="15" fill="rgb(244,16,53)" fg:x="173165" fg:w="167"/><text x="48.0512%" y="623.50"></text></g><g><title>update_cfs_rq_h_load (52 samples, 0.01%)</title><rect x="47.8329%" y="597" width="0.0144%" height="15" fill="rgb(208,175,44)" fg:x="173280" fg:w="52"/><text x="48.0829%" y="607.50"></text></g><g><title>enqueue_entity (159 samples, 0.04%)</title><rect x="47.8638%" y="581" width="0.0439%" height="15" fill="rgb(252,18,48)" fg:x="173392" fg:w="159"/><text x="48.1138%" y="591.50"></text></g><g><title>update_load_avg (48 samples, 0.01%)</title><rect x="47.8945%" y="565" width="0.0133%" height="15" fill="rgb(234,199,32)" fg:x="173503" fg:w="48"/><text x="48.1445%" y="575.50"></text></g><g><title>enqueue_task_fair (195 samples, 0.05%)</title><rect x="47.8558%" y="597" width="0.0538%" height="15" fill="rgb(225,77,54)" fg:x="173363" fg:w="195"/><text x="48.1058%" y="607.50"></text></g><g><title>ttwu_do_activate (420 samples, 0.12%)</title><rect x="47.8506%" y="613" width="0.1159%" height="15" fill="rgb(225,42,25)" fg:x="173344" fg:w="420"/><text x="48.1006%" y="623.50"></text></g><g><title>psi_task_change (206 samples, 0.06%)</title><rect x="47.9097%" y="597" width="0.0569%" height="15" fill="rgb(242,227,46)" fg:x="173558" fg:w="206"/><text x="48.1597%" y="607.50"></text></g><g><title>psi_group_change (192 samples, 0.05%)</title><rect x="47.9135%" y="581" width="0.0530%" height="15" fill="rgb(246,197,35)" fg:x="173572" fg:w="192"/><text x="48.1635%" y="591.50"></text></g><g><title>ttwu_do_wakeup (39 samples, 0.01%)</title><rect x="47.9665%" y="613" width="0.0108%" height="15" fill="rgb(215,159,26)" fg:x="173764" fg:w="39"/><text x="48.2165%" y="623.50"></text></g><g><title>check_preempt_curr (38 samples, 0.01%)</title><rect x="47.9668%" y="597" width="0.0105%" height="15" fill="rgb(212,194,50)" fg:x="173765" fg:w="38"/><text x="48.2168%" y="607.50"></text></g><g><title>ttwu_queue_wakelist (51 samples, 0.01%)</title><rect x="47.9773%" y="613" width="0.0141%" height="15" fill="rgb(246,132,1)" fg:x="173803" fg:w="51"/><text x="48.2273%" y="623.50"></text></g><g><title>__wake_up_common (1,092 samples, 0.30%)</title><rect x="47.7023%" y="661" width="0.3014%" height="15" fill="rgb(217,71,7)" fg:x="172807" fg:w="1092"/><text x="47.9523%" y="671.50"></text></g><g><title>autoremove_wake_function (1,059 samples, 0.29%)</title><rect x="47.7115%" y="645" width="0.2923%" height="15" fill="rgb(252,59,32)" fg:x="172840" fg:w="1059"/><text x="47.9615%" y="655.50"></text></g><g><title>try_to_wake_up (1,040 samples, 0.29%)</title><rect x="47.7167%" y="629" width="0.2871%" height="15" fill="rgb(253,204,25)" fg:x="172859" fg:w="1040"/><text x="47.9667%" y="639.50"></text></g><g><title>update_rq_clock (45 samples, 0.01%)</title><rect x="47.9914%" y="613" width="0.0124%" height="15" fill="rgb(232,21,16)" fg:x="173854" fg:w="45"/><text x="48.2414%" y="623.50"></text></g><g><title>__wake_up_common_lock (1,119 samples, 0.31%)</title><rect x="47.7012%" y="677" width="0.3089%" height="15" fill="rgb(248,90,29)" fg:x="172803" fg:w="1119"/><text x="47.9512%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (78 samples, 0.02%)</title><rect x="48.0201%" y="677" width="0.0215%" height="15" fill="rgb(249,223,7)" fg:x="173958" fg:w="78"/><text x="48.2701%" y="687.50"></text></g><g><title>btrfs_release_path (1,255 samples, 0.35%)</title><rect x="47.6990%" y="693" width="0.3464%" height="15" fill="rgb(231,119,42)" fg:x="172795" fg:w="1255"/><text x="47.9490%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (41 samples, 0.01%)</title><rect x="48.0455%" y="677" width="0.0113%" height="15" fill="rgb(215,41,35)" fg:x="174050" fg:w="41"/><text x="48.2955%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (41 samples, 0.01%)</title><rect x="48.0455%" y="661" width="0.0113%" height="15" fill="rgb(220,44,45)" fg:x="174050" fg:w="41"/><text x="48.2955%" y="671.50"></text></g><g><title>prepare_to_wait_event (82 samples, 0.02%)</title><rect x="48.0676%" y="645" width="0.0226%" height="15" fill="rgb(253,197,36)" fg:x="174130" fg:w="82"/><text x="48.3176%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (80 samples, 0.02%)</title><rect x="48.0681%" y="629" width="0.0221%" height="15" fill="rgb(245,225,54)" fg:x="174132" fg:w="80"/><text x="48.3181%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (78 samples, 0.02%)</title><rect x="48.0687%" y="613" width="0.0215%" height="15" fill="rgb(239,94,37)" fg:x="174134" fg:w="78"/><text x="48.3187%" y="623.50"></text></g><g><title>__btrfs_tree_lock (185 samples, 0.05%)</title><rect x="48.0593%" y="661" width="0.0511%" height="15" fill="rgb(242,217,10)" fg:x="174100" fg:w="185"/><text x="48.3093%" y="671.50"></text></g><g><title>schedule (48 samples, 0.01%)</title><rect x="48.0971%" y="645" width="0.0133%" height="15" fill="rgb(250,193,7)" fg:x="174237" fg:w="48"/><text x="48.3471%" y="655.50"></text></g><g><title>__schedule (47 samples, 0.01%)</title><rect x="48.0974%" y="629" width="0.0130%" height="15" fill="rgb(230,104,19)" fg:x="174238" fg:w="47"/><text x="48.3474%" y="639.50"></text></g><g><title>btrfs_lock_root_node (187 samples, 0.05%)</title><rect x="48.0590%" y="677" width="0.0516%" height="15" fill="rgb(230,181,4)" fg:x="174099" fg:w="187"/><text x="48.3090%" y="687.50"></text></g><g><title>__wake_up_common_lock (40 samples, 0.01%)</title><rect x="48.1145%" y="661" width="0.0110%" height="15" fill="rgb(216,219,49)" fg:x="174300" fg:w="40"/><text x="48.3645%" y="671.50"></text></g><g><title>btrfs_search_slot (291 samples, 0.08%)</title><rect x="48.0455%" y="693" width="0.0803%" height="15" fill="rgb(254,144,0)" fg:x="174050" fg:w="291"/><text x="48.2955%" y="703.50"></text></g><g><title>unlock_up (41 samples, 0.01%)</title><rect x="48.1145%" y="677" width="0.0113%" height="15" fill="rgb(205,209,38)" fg:x="174300" fg:w="41"/><text x="48.3645%" y="687.50"></text></g><g><title>finish_one_item (66 samples, 0.02%)</title><rect x="48.1258%" y="693" width="0.0182%" height="15" fill="rgb(240,21,42)" fg:x="174341" fg:w="66"/><text x="48.3758%" y="703.50"></text></g><g><title>__btrfs_update_delayed_inode (30,774 samples, 8.49%)</title><rect x="39.6736%" y="709" width="8.4950%" height="15" fill="rgb(241,132,3)" fg:x="143722" fg:w="30774"/><text x="39.9236%" y="719.50">__btrfs_upda..</text></g><g><title>write_extent_buffer (76 samples, 0.02%)</title><rect x="48.1476%" y="693" width="0.0210%" height="15" fill="rgb(225,14,2)" fg:x="174420" fg:w="76"/><text x="48.3976%" y="703.50"></text></g><g><title>btrfs_btree_balance_dirty (42 samples, 0.01%)</title><rect x="48.1719%" y="709" width="0.0116%" height="15" fill="rgb(210,141,35)" fg:x="174508" fg:w="42"/><text x="48.4219%" y="719.50"></text></g><g><title>btrfs_get_delayed_node (40 samples, 0.01%)</title><rect x="48.1871%" y="709" width="0.0110%" height="15" fill="rgb(251,14,44)" fg:x="174563" fg:w="40"/><text x="48.4371%" y="719.50"></text></g><g><title>kmem_cache_alloc (37 samples, 0.01%)</title><rect x="48.1981%" y="709" width="0.0102%" height="15" fill="rgb(247,48,18)" fg:x="174603" fg:w="37"/><text x="48.4481%" y="719.50"></text></g><g><title>kmem_cache_free (74 samples, 0.02%)</title><rect x="48.2083%" y="709" width="0.0204%" height="15" fill="rgb(225,0,40)" fg:x="174640" fg:w="74"/><text x="48.4583%" y="719.50"></text></g><g><title>join_transaction (58 samples, 0.02%)</title><rect x="48.2600%" y="693" width="0.0160%" height="15" fill="rgb(221,31,33)" fg:x="174827" fg:w="58"/><text x="48.5100%" y="703.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (31,610 samples, 8.73%)</title><rect x="39.5659%" y="725" width="8.7258%" height="15" fill="rgb(237,42,40)" fg:x="143332" fg:w="31610"/><text x="39.8159%" y="735.50">btrfs_commit..</text></g><g><title>start_transaction (176 samples, 0.05%)</title><rect x="48.2431%" y="709" width="0.0486%" height="15" fill="rgb(233,51,29)" fg:x="174766" fg:w="176"/><text x="48.4931%" y="719.50"></text></g><g><title>kmem_cache_alloc (57 samples, 0.02%)</title><rect x="48.2760%" y="693" width="0.0157%" height="15" fill="rgb(226,58,20)" fg:x="174885" fg:w="57"/><text x="48.5260%" y="703.50"></text></g><g><title>btrfs_mark_buffer_dirty (40 samples, 0.01%)</title><rect x="48.3400%" y="693" width="0.0110%" height="15" fill="rgb(208,98,7)" fg:x="175117" fg:w="40"/><text x="48.5900%" y="703.50"></text></g><g><title>memcpy_extent_buffer (48 samples, 0.01%)</title><rect x="48.3629%" y="693" width="0.0133%" height="15" fill="rgb(228,143,44)" fg:x="175200" fg:w="48"/><text x="48.6129%" y="703.50"></text></g><g><title>btrfs_del_items (292 samples, 0.08%)</title><rect x="48.3027%" y="709" width="0.0806%" height="15" fill="rgb(246,55,38)" fg:x="174982" fg:w="292"/><text x="48.5527%" y="719.50"></text></g><g><title>_raw_spin_lock (84 samples, 0.02%)</title><rect x="48.4631%" y="613" width="0.0232%" height="15" fill="rgb(247,87,16)" fg:x="175563" fg:w="84"/><text x="48.7131%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (77 samples, 0.02%)</title><rect x="48.4651%" y="597" width="0.0213%" height="15" fill="rgb(234,129,42)" fg:x="175570" fg:w="77"/><text x="48.7151%" y="607.50"></text></g><g><title>select_task_rq_fair (138 samples, 0.04%)</title><rect x="48.4910%" y="613" width="0.0381%" height="15" fill="rgb(220,82,16)" fg:x="175664" fg:w="138"/><text x="48.7410%" y="623.50"></text></g><g><title>enqueue_entity (110 samples, 0.03%)</title><rect x="48.5407%" y="581" width="0.0304%" height="15" fill="rgb(211,88,4)" fg:x="175844" fg:w="110"/><text x="48.7907%" y="591.50"></text></g><g><title>update_load_avg (46 samples, 0.01%)</title><rect x="48.5584%" y="565" width="0.0127%" height="15" fill="rgb(248,151,21)" fg:x="175908" fg:w="46"/><text x="48.8084%" y="575.50"></text></g><g><title>enqueue_task_fair (142 samples, 0.04%)</title><rect x="48.5357%" y="597" width="0.0392%" height="15" fill="rgb(238,163,6)" fg:x="175826" fg:w="142"/><text x="48.7857%" y="607.50"></text></g><g><title>ttwu_do_activate (329 samples, 0.09%)</title><rect x="48.5338%" y="613" width="0.0908%" height="15" fill="rgb(209,183,11)" fg:x="175819" fg:w="329"/><text x="48.7838%" y="623.50"></text></g><g><title>psi_task_change (179 samples, 0.05%)</title><rect x="48.5752%" y="597" width="0.0494%" height="15" fill="rgb(219,37,20)" fg:x="175969" fg:w="179"/><text x="48.8252%" y="607.50"></text></g><g><title>psi_group_change (154 samples, 0.04%)</title><rect x="48.5821%" y="581" width="0.0425%" height="15" fill="rgb(210,158,4)" fg:x="175994" fg:w="154"/><text x="48.8321%" y="591.50"></text></g><g><title>__wake_up_common (927 samples, 0.26%)</title><rect x="48.3916%" y="661" width="0.2559%" height="15" fill="rgb(221,167,53)" fg:x="175304" fg:w="927"/><text x="48.6416%" y="671.50"></text></g><g><title>autoremove_wake_function (905 samples, 0.25%)</title><rect x="48.3977%" y="645" width="0.2498%" height="15" fill="rgb(237,151,45)" fg:x="175326" fg:w="905"/><text x="48.6477%" y="655.50"></text></g><g><title>try_to_wake_up (890 samples, 0.25%)</title><rect x="48.4018%" y="629" width="0.2457%" height="15" fill="rgb(231,39,3)" fg:x="175341" fg:w="890"/><text x="48.6518%" y="639.50"></text></g><g><title>__wake_up_common_lock (951 samples, 0.26%)</title><rect x="48.3902%" y="677" width="0.2625%" height="15" fill="rgb(212,167,28)" fg:x="175299" fg:w="951"/><text x="48.6402%" y="687.50"></text></g><g><title>btrfs_tree_unlock (37 samples, 0.01%)</title><rect x="48.6528%" y="677" width="0.0102%" height="15" fill="rgb(232,178,8)" fg:x="176250" fg:w="37"/><text x="48.9028%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (60 samples, 0.02%)</title><rect x="48.6638%" y="677" width="0.0166%" height="15" fill="rgb(225,151,20)" fg:x="176290" fg:w="60"/><text x="48.9138%" y="687.50"></text></g><g><title>btrfs_free_path (1,098 samples, 0.30%)</title><rect x="48.3833%" y="709" width="0.3031%" height="15" fill="rgb(238,3,37)" fg:x="175274" fg:w="1098"/><text x="48.6333%" y="719.50"></text></g><g><title>btrfs_release_path (1,094 samples, 0.30%)</title><rect x="48.3845%" y="693" width="0.3020%" height="15" fill="rgb(251,147,42)" fg:x="175278" fg:w="1094"/><text x="48.6345%" y="703.50"></text></g><g><title>_raw_read_lock (69 samples, 0.02%)</title><rect x="48.7648%" y="661" width="0.0190%" height="15" fill="rgb(208,173,10)" fg:x="176656" fg:w="69"/><text x="49.0148%" y="671.50"></text></g><g><title>finish_wait (683 samples, 0.19%)</title><rect x="48.7861%" y="661" width="0.1885%" height="15" fill="rgb(246,225,4)" fg:x="176733" fg:w="683"/><text x="49.0361%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (641 samples, 0.18%)</title><rect x="48.7977%" y="645" width="0.1769%" height="15" fill="rgb(248,102,6)" fg:x="176775" fg:w="641"/><text x="49.0477%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (628 samples, 0.17%)</title><rect x="48.8013%" y="629" width="0.1734%" height="15" fill="rgb(232,6,21)" fg:x="176788" fg:w="628"/><text x="49.0513%" y="639.50"></text></g><g><title>__list_add_valid (38 samples, 0.01%)</title><rect x="48.9989%" y="645" width="0.0105%" height="15" fill="rgb(221,179,22)" fg:x="177504" fg:w="38"/><text x="49.2489%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (2,470 samples, 0.68%)</title><rect x="49.0094%" y="645" width="0.6818%" height="15" fill="rgb(252,50,20)" fg:x="177542" fg:w="2470"/><text x="49.2594%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,412 samples, 0.67%)</title><rect x="49.0254%" y="629" width="0.6658%" height="15" fill="rgb(222,56,38)" fg:x="177600" fg:w="2412"/><text x="49.2754%" y="639.50"></text></g><g><title>prepare_to_wait_event (2,623 samples, 0.72%)</title><rect x="48.9763%" y="661" width="0.7241%" height="15" fill="rgb(206,193,29)" fg:x="177422" fg:w="2623"/><text x="49.2263%" y="671.50"></text></g><g><title>queued_read_lock_slowpath (274 samples, 0.08%)</title><rect x="49.7004%" y="661" width="0.0756%" height="15" fill="rgb(239,192,45)" fg:x="180045" fg:w="274"/><text x="49.9504%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (172 samples, 0.05%)</title><rect x="49.7285%" y="645" width="0.0475%" height="15" fill="rgb(254,18,36)" fg:x="180147" fg:w="172"/><text x="49.9785%" y="655.50"></text></g><g><title>__perf_event_task_sched_out (50 samples, 0.01%)</title><rect x="49.7950%" y="629" width="0.0138%" height="15" fill="rgb(221,127,11)" fg:x="180388" fg:w="50"/><text x="50.0450%" y="639.50"></text></g><g><title>update_curr (60 samples, 0.02%)</title><rect x="49.8364%" y="597" width="0.0166%" height="15" fill="rgb(234,146,35)" fg:x="180538" fg:w="60"/><text x="50.0864%" y="607.50"></text></g><g><title>dequeue_entity (197 samples, 0.05%)</title><rect x="49.8215%" y="613" width="0.0544%" height="15" fill="rgb(254,201,37)" fg:x="180484" fg:w="197"/><text x="50.0715%" y="623.50"></text></g><g><title>update_load_avg (83 samples, 0.02%)</title><rect x="49.8530%" y="597" width="0.0229%" height="15" fill="rgb(211,202,23)" fg:x="180598" fg:w="83"/><text x="50.1030%" y="607.50"></text></g><g><title>dequeue_task_fair (261 samples, 0.07%)</title><rect x="49.8127%" y="629" width="0.0720%" height="15" fill="rgb(237,91,2)" fg:x="180452" fg:w="261"/><text x="50.0627%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (264 samples, 0.07%)</title><rect x="49.8922%" y="613" width="0.0729%" height="15" fill="rgb(226,228,36)" fg:x="180740" fg:w="264"/><text x="50.1422%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (250 samples, 0.07%)</title><rect x="49.8961%" y="597" width="0.0690%" height="15" fill="rgb(213,63,50)" fg:x="180754" fg:w="250"/><text x="50.1461%" y="607.50"></text></g><g><title>native_write_msr (242 samples, 0.07%)</title><rect x="49.8983%" y="581" width="0.0668%" height="15" fill="rgb(235,194,19)" fg:x="180762" fg:w="242"/><text x="50.1483%" y="591.50"></text></g><g><title>finish_task_switch (301 samples, 0.08%)</title><rect x="49.8848%" y="629" width="0.0831%" height="15" fill="rgb(207,204,18)" fg:x="180713" fg:w="301"/><text x="50.1348%" y="639.50"></text></g><g><title>pick_next_task_fair (45 samples, 0.01%)</title><rect x="49.9678%" y="629" width="0.0124%" height="15" fill="rgb(248,8,7)" fg:x="181014" fg:w="45"/><text x="50.2178%" y="639.50"></text></g><g><title>pick_next_task_idle (40 samples, 0.01%)</title><rect x="49.9803%" y="629" width="0.0110%" height="15" fill="rgb(223,145,47)" fg:x="181059" fg:w="40"/><text x="50.2303%" y="639.50"></text></g><g><title>psi_task_change (195 samples, 0.05%)</title><rect x="49.9913%" y="629" width="0.0538%" height="15" fill="rgb(228,84,11)" fg:x="181099" fg:w="195"/><text x="50.2413%" y="639.50"></text></g><g><title>psi_group_change (171 samples, 0.05%)</title><rect x="49.9979%" y="613" width="0.0472%" height="15" fill="rgb(218,76,45)" fg:x="181123" fg:w="171"/><text x="50.2479%" y="623.50"></text></g><g><title>record_times (53 samples, 0.01%)</title><rect x="50.0305%" y="597" width="0.0146%" height="15" fill="rgb(223,80,15)" fg:x="181241" fg:w="53"/><text x="50.2805%" y="607.50"></text></g><g><title>psi_task_switch (47 samples, 0.01%)</title><rect x="50.0451%" y="629" width="0.0130%" height="15" fill="rgb(219,218,33)" fg:x="181294" fg:w="47"/><text x="50.2951%" y="639.50"></text></g><g><title>psi_group_change (40 samples, 0.01%)</title><rect x="50.0471%" y="613" width="0.0110%" height="15" fill="rgb(208,51,11)" fg:x="181301" fg:w="40"/><text x="50.2971%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (4,805 samples, 1.33%)</title><rect x="48.7458%" y="677" width="1.3264%" height="15" fill="rgb(229,165,39)" fg:x="176587" fg:w="4805"/><text x="48.9958%" y="687.50"></text></g><g><title>schedule (1,073 samples, 0.30%)</title><rect x="49.7760%" y="661" width="0.2962%" height="15" fill="rgb(241,100,24)" fg:x="180319" fg:w="1073"/><text x="50.0260%" y="671.50"></text></g><g><title>__schedule (1,065 samples, 0.29%)</title><rect x="49.7782%" y="645" width="0.2940%" height="15" fill="rgb(228,14,23)" fg:x="180327" fg:w="1065"/><text x="50.0282%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (4,837 samples, 1.34%)</title><rect x="48.7422%" y="693" width="1.3352%" height="15" fill="rgb(247,116,52)" fg:x="176574" fg:w="4837"/><text x="48.9922%" y="703.50"></text></g><g><title>prepare_to_wait_event (66 samples, 0.02%)</title><rect x="50.0940%" y="677" width="0.0182%" height="15" fill="rgb(216,149,33)" fg:x="181471" fg:w="66"/><text x="50.3440%" y="687.50"></text></g><g><title>update_curr (38 samples, 0.01%)</title><rect x="50.1462%" y="613" width="0.0105%" height="15" fill="rgb(238,142,29)" fg:x="181660" fg:w="38"/><text x="50.3962%" y="623.50"></text></g><g><title>dequeue_entity (140 samples, 0.04%)</title><rect x="50.1351%" y="629" width="0.0386%" height="15" fill="rgb(224,83,40)" fg:x="181620" fg:w="140"/><text x="50.3851%" y="639.50"></text></g><g><title>update_load_avg (62 samples, 0.02%)</title><rect x="50.1567%" y="613" width="0.0171%" height="15" fill="rgb(234,165,11)" fg:x="181698" fg:w="62"/><text x="50.4067%" y="623.50"></text></g><g><title>dequeue_task_fair (165 samples, 0.05%)</title><rect x="50.1315%" y="645" width="0.0455%" height="15" fill="rgb(215,96,23)" fg:x="181607" fg:w="165"/><text x="50.3815%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (170 samples, 0.05%)</title><rect x="50.1867%" y="629" width="0.0469%" height="15" fill="rgb(233,179,26)" fg:x="181807" fg:w="170"/><text x="50.4367%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (165 samples, 0.05%)</title><rect x="50.1881%" y="613" width="0.0455%" height="15" fill="rgb(225,129,33)" fg:x="181812" fg:w="165"/><text x="50.4381%" y="623.50"></text></g><g><title>native_write_msr (162 samples, 0.04%)</title><rect x="50.1890%" y="597" width="0.0447%" height="15" fill="rgb(237,49,13)" fg:x="181815" fg:w="162"/><text x="50.4390%" y="607.50"></text></g><g><title>finish_task_switch (208 samples, 0.06%)</title><rect x="50.1771%" y="645" width="0.0574%" height="15" fill="rgb(211,3,31)" fg:x="181772" fg:w="208"/><text x="50.4271%" y="655.50"></text></g><g><title>psi_task_change (106 samples, 0.03%)</title><rect x="50.2516%" y="645" width="0.0293%" height="15" fill="rgb(216,152,19)" fg:x="182042" fg:w="106"/><text x="50.5016%" y="655.50"></text></g><g><title>psi_group_change (95 samples, 0.03%)</title><rect x="50.2547%" y="629" width="0.0262%" height="15" fill="rgb(251,121,35)" fg:x="182053" fg:w="95"/><text x="50.5047%" y="639.50"></text></g><g><title>__btrfs_tree_lock (779 samples, 0.22%)</title><rect x="50.0774%" y="693" width="0.2150%" height="15" fill="rgb(210,217,47)" fg:x="181411" fg:w="779"/><text x="50.3274%" y="703.50"></text></g><g><title>schedule (653 samples, 0.18%)</title><rect x="50.1122%" y="677" width="0.1803%" height="15" fill="rgb(244,116,22)" fg:x="181537" fg:w="653"/><text x="50.3622%" y="687.50"></text></g><g><title>__schedule (645 samples, 0.18%)</title><rect x="50.1144%" y="661" width="0.1780%" height="15" fill="rgb(228,17,21)" fg:x="181545" fg:w="645"/><text x="50.3644%" y="671.50"></text></g><g><title>balance_level (40 samples, 0.01%)</title><rect x="50.2930%" y="693" width="0.0110%" height="15" fill="rgb(240,149,34)" fg:x="182192" fg:w="40"/><text x="50.5430%" y="703.50"></text></g><g><title>__schedule (53 samples, 0.01%)</title><rect x="50.3797%" y="645" width="0.0146%" height="15" fill="rgb(208,125,47)" fg:x="182506" fg:w="53"/><text x="50.6297%" y="655.50"></text></g><g><title>_cond_resched (71 samples, 0.02%)</title><rect x="50.3769%" y="661" width="0.0196%" height="15" fill="rgb(249,186,39)" fg:x="182496" fg:w="71"/><text x="50.6269%" y="671.50"></text></g><g><title>_raw_write_lock (138 samples, 0.04%)</title><rect x="50.4037%" y="661" width="0.0381%" height="15" fill="rgb(240,220,33)" fg:x="182593" fg:w="138"/><text x="50.6537%" y="671.50"></text></g><g><title>__list_del_entry_valid (87 samples, 0.02%)</title><rect x="50.4471%" y="645" width="0.0240%" height="15" fill="rgb(243,110,23)" fg:x="182750" fg:w="87"/><text x="50.6971%" y="655.50"></text></g><g><title>finish_wait (1,907 samples, 0.53%)</title><rect x="50.4421%" y="661" width="0.5264%" height="15" fill="rgb(219,163,46)" fg:x="182732" fg:w="1907"/><text x="50.6921%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (1,802 samples, 0.50%)</title><rect x="50.4711%" y="645" width="0.4974%" height="15" fill="rgb(216,126,30)" fg:x="182837" fg:w="1802"/><text x="50.7211%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,711 samples, 0.47%)</title><rect x="50.4962%" y="629" width="0.4723%" height="15" fill="rgb(208,139,11)" fg:x="182928" fg:w="1711"/><text x="50.7462%" y="639.50"></text></g><g><title>__list_add_valid (138 samples, 0.04%)</title><rect x="51.0831%" y="645" width="0.0381%" height="15" fill="rgb(213,118,36)" fg:x="185054" fg:w="138"/><text x="51.3331%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (6,514 samples, 1.80%)</title><rect x="51.1212%" y="645" width="1.7982%" height="15" fill="rgb(226,43,17)" fg:x="185192" fg:w="6514"/><text x="51.3712%" y="655.50">_..</text></g><g><title>native_queued_spin_lock_slowpath (6,172 samples, 1.70%)</title><rect x="51.2156%" y="629" width="1.7037%" height="15" fill="rgb(254,217,4)" fg:x="185534" fg:w="6172"/><text x="51.4656%" y="639.50"></text></g><g><title>_raw_spin_unlock_irqrestore (117 samples, 0.03%)</title><rect x="52.9193%" y="645" width="0.0323%" height="15" fill="rgb(210,134,47)" fg:x="191706" fg:w="117"/><text x="53.1693%" y="655.50"></text></g><g><title>prepare_to_wait_event (7,174 samples, 1.98%)</title><rect x="50.9715%" y="661" width="1.9803%" height="15" fill="rgb(237,24,49)" fg:x="184650" fg:w="7174"/><text x="51.2215%" y="671.50">p..</text></g><g><title>queued_write_lock_slowpath (2,363 samples, 0.65%)</title><rect x="52.9519%" y="661" width="0.6523%" height="15" fill="rgb(251,39,46)" fg:x="191824" fg:w="2363"/><text x="53.2019%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,355 samples, 0.37%)</title><rect x="53.2301%" y="645" width="0.3740%" height="15" fill="rgb(251,220,3)" fg:x="192832" fg:w="1355"/><text x="53.4801%" y="655.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.02%)</title><rect x="53.7132%" y="613" width="0.0199%" height="15" fill="rgb(228,105,12)" fg:x="194582" fg:w="72"/><text x="53.9632%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (177 samples, 0.05%)</title><rect x="53.6875%" y="629" width="0.0489%" height="15" fill="rgb(215,196,1)" fg:x="194489" fg:w="177"/><text x="53.9375%" y="639.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.02%)</title><rect x="53.7414%" y="629" width="0.0160%" height="15" fill="rgb(214,33,39)" fg:x="194684" fg:w="58"/><text x="53.9914%" y="639.50"></text></g><g><title>reweight_entity (39 samples, 0.01%)</title><rect x="53.8236%" y="597" width="0.0108%" height="15" fill="rgb(220,19,52)" fg:x="194982" fg:w="39"/><text x="54.0736%" y="607.50"></text></g><g><title>update_cfs_group (99 samples, 0.03%)</title><rect x="53.8344%" y="597" width="0.0273%" height="15" fill="rgb(221,78,38)" fg:x="195021" fg:w="99"/><text x="54.0844%" y="607.50"></text></g><g><title>__calc_delta (66 samples, 0.02%)</title><rect x="53.8976%" y="581" width="0.0182%" height="15" fill="rgb(253,30,16)" fg:x="195250" fg:w="66"/><text x="54.1476%" y="591.50"></text></g><g><title>cpuacct_charge (51 samples, 0.01%)</title><rect x="53.9222%" y="581" width="0.0141%" height="15" fill="rgb(242,65,0)" fg:x="195339" fg:w="51"/><text x="54.1722%" y="591.50"></text></g><g><title>update_curr (299 samples, 0.08%)</title><rect x="53.8617%" y="597" width="0.0825%" height="15" fill="rgb(235,201,12)" fg:x="195120" fg:w="299"/><text x="54.1117%" y="607.50"></text></g><g><title>__update_load_avg_cfs_rq (84 samples, 0.02%)</title><rect x="53.9785%" y="581" width="0.0232%" height="15" fill="rgb(233,161,9)" fg:x="195543" fg:w="84"/><text x="54.2285%" y="591.50"></text></g><g><title>__update_load_avg_se (109 samples, 0.03%)</title><rect x="54.0017%" y="581" width="0.0301%" height="15" fill="rgb(241,207,41)" fg:x="195627" fg:w="109"/><text x="54.2517%" y="591.50"></text></g><g><title>dequeue_entity (920 samples, 0.25%)</title><rect x="53.7819%" y="613" width="0.2540%" height="15" fill="rgb(212,69,46)" fg:x="194831" fg:w="920"/><text x="54.0319%" y="623.50"></text></g><g><title>update_load_avg (332 samples, 0.09%)</title><rect x="53.9443%" y="597" width="0.0916%" height="15" fill="rgb(239,69,45)" fg:x="195419" fg:w="332"/><text x="54.1943%" y="607.50"></text></g><g><title>dequeue_task_fair (1,100 samples, 0.30%)</title><rect x="53.7576%" y="629" width="0.3036%" height="15" fill="rgb(242,117,48)" fg:x="194743" fg:w="1100"/><text x="54.0076%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (976 samples, 0.27%)</title><rect x="54.1088%" y="613" width="0.2694%" height="15" fill="rgb(228,41,36)" fg:x="196015" fg:w="976"/><text x="54.3588%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (941 samples, 0.26%)</title><rect x="54.1184%" y="597" width="0.2598%" height="15" fill="rgb(212,3,32)" fg:x="196050" fg:w="941"/><text x="54.3684%" y="607.50"></text></g><g><title>native_write_msr (922 samples, 0.25%)</title><rect x="54.1237%" y="581" width="0.2545%" height="15" fill="rgb(233,41,49)" fg:x="196069" fg:w="922"/><text x="54.3737%" y="591.50"></text></g><g><title>finish_task_switch (1,189 samples, 0.33%)</title><rect x="54.0613%" y="629" width="0.3282%" height="15" fill="rgb(252,170,49)" fg:x="195843" fg:w="1189"/><text x="54.3113%" y="639.50"></text></g><g><title>newidle_balance (93 samples, 0.03%)</title><rect x="54.4055%" y="613" width="0.0257%" height="15" fill="rgb(229,53,26)" fg:x="197090" fg:w="93"/><text x="54.6555%" y="623.50"></text></g><g><title>pick_next_task_fair (211 samples, 0.06%)</title><rect x="54.3898%" y="629" width="0.0582%" height="15" fill="rgb(217,157,12)" fg:x="197033" fg:w="211"/><text x="54.6398%" y="639.50"></text></g><g><title>__update_idle_core (154 samples, 0.04%)</title><rect x="54.4536%" y="613" width="0.0425%" height="15" fill="rgb(227,17,9)" fg:x="197264" fg:w="154"/><text x="54.7036%" y="623.50"></text></g><g><title>pick_next_task_idle (175 samples, 0.05%)</title><rect x="54.4480%" y="629" width="0.0483%" height="15" fill="rgb(218,84,12)" fg:x="197244" fg:w="175"/><text x="54.6980%" y="639.50"></text></g><g><title>psi_task_change (835 samples, 0.23%)</title><rect x="54.4963%" y="629" width="0.2305%" height="15" fill="rgb(212,79,24)" fg:x="197419" fg:w="835"/><text x="54.7463%" y="639.50"></text></g><g><title>psi_group_change (731 samples, 0.20%)</title><rect x="54.5251%" y="613" width="0.2018%" height="15" fill="rgb(217,222,37)" fg:x="197523" fg:w="731"/><text x="54.7751%" y="623.50"></text></g><g><title>record_times (204 samples, 0.06%)</title><rect x="54.6705%" y="597" width="0.0563%" height="15" fill="rgb(246,208,8)" fg:x="198050" fg:w="204"/><text x="54.9205%" y="607.50"></text></g><g><title>sched_clock_cpu (124 samples, 0.03%)</title><rect x="54.6926%" y="581" width="0.0342%" height="15" fill="rgb(244,133,10)" fg:x="198130" fg:w="124"/><text x="54.9426%" y="591.50"></text></g><g><title>sched_clock (110 samples, 0.03%)</title><rect x="54.6965%" y="565" width="0.0304%" height="15" fill="rgb(209,219,41)" fg:x="198144" fg:w="110"/><text x="54.9465%" y="575.50"></text></g><g><title>native_sched_clock (102 samples, 0.03%)</title><rect x="54.6987%" y="549" width="0.0282%" height="15" fill="rgb(253,175,45)" fg:x="198152" fg:w="102"/><text x="54.9487%" y="559.50"></text></g><g><title>psi_task_switch (123 samples, 0.03%)</title><rect x="54.7268%" y="629" width="0.0340%" height="15" fill="rgb(235,100,37)" fg:x="198254" fg:w="123"/><text x="54.9768%" y="639.50"></text></g><g><title>psi_group_change (95 samples, 0.03%)</title><rect x="54.7346%" y="613" width="0.0262%" height="15" fill="rgb(225,87,19)" fg:x="198282" fg:w="95"/><text x="54.9846%" y="623.50"></text></g><g><title>put_prev_task_fair (51 samples, 0.01%)</title><rect x="54.7608%" y="629" width="0.0141%" height="15" fill="rgb(217,152,17)" fg:x="198377" fg:w="51"/><text x="55.0108%" y="639.50"></text></g><g><title>put_prev_entity (41 samples, 0.01%)</title><rect x="54.7636%" y="613" width="0.0113%" height="15" fill="rgb(235,72,13)" fg:x="198387" fg:w="41"/><text x="55.0136%" y="623.50"></text></g><g><title>__btrfs_tree_lock (16,262 samples, 4.49%)</title><rect x="50.3126%" y="677" width="4.4890%" height="15" fill="rgb(233,140,18)" fg:x="182263" fg:w="16262"/><text x="50.5626%" y="687.50">__btr..</text></g><g><title>schedule (4,338 samples, 1.20%)</title><rect x="53.6042%" y="661" width="1.1975%" height="15" fill="rgb(207,212,28)" fg:x="194187" fg:w="4338"/><text x="53.8542%" y="671.50"></text></g><g><title>__schedule (4,269 samples, 1.18%)</title><rect x="53.6232%" y="645" width="1.1784%" height="15" fill="rgb(220,130,25)" fg:x="194256" fg:w="4269"/><text x="53.8732%" y="655.50"></text></g><g><title>update_rq_clock (81 samples, 0.02%)</title><rect x="54.7793%" y="629" width="0.0224%" height="15" fill="rgb(205,55,34)" fg:x="198444" fg:w="81"/><text x="55.0293%" y="639.50"></text></g><g><title>sched_clock_cpu (42 samples, 0.01%)</title><rect x="54.7901%" y="613" width="0.0116%" height="15" fill="rgb(237,54,35)" fg:x="198483" fg:w="42"/><text x="55.0401%" y="623.50"></text></g><g><title>sched_clock (40 samples, 0.01%)</title><rect x="54.7906%" y="597" width="0.0110%" height="15" fill="rgb(208,67,23)" fg:x="198485" fg:w="40"/><text x="55.0406%" y="607.50"></text></g><g><title>native_sched_clock (38 samples, 0.01%)</title><rect x="54.7912%" y="581" width="0.0105%" height="15" fill="rgb(206,207,50)" fg:x="198487" fg:w="38"/><text x="55.0412%" y="591.50"></text></g><g><title>btrfs_lock_root_node (16,290 samples, 4.50%)</title><rect x="50.3104%" y="693" width="4.4968%" height="15" fill="rgb(213,211,42)" fg:x="182255" fg:w="16290"/><text x="50.5604%" y="703.50">btrfs..</text></g><g><title>btrfs_set_path_blocking (79 samples, 0.02%)</title><rect x="54.8072%" y="693" width="0.0218%" height="15" fill="rgb(252,197,50)" fg:x="198545" fg:w="79"/><text x="55.0572%" y="703.50"></text></g><g><title>btrfs_try_tree_write_lock (325 samples, 0.09%)</title><rect x="54.8389%" y="693" width="0.0897%" height="15" fill="rgb(251,211,41)" fg:x="198660" fg:w="325"/><text x="55.0889%" y="703.50"></text></g><g><title>queued_write_lock_slowpath (295 samples, 0.08%)</title><rect x="54.8472%" y="677" width="0.0814%" height="15" fill="rgb(229,211,5)" fg:x="198690" fg:w="295"/><text x="55.0972%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (232 samples, 0.06%)</title><rect x="54.9347%" y="693" width="0.0640%" height="15" fill="rgb(239,36,31)" fg:x="199007" fg:w="232"/><text x="55.1847%" y="703.50"></text></g><g><title>btrfs_buffer_uptodate (47 samples, 0.01%)</title><rect x="55.0123%" y="677" width="0.0130%" height="15" fill="rgb(248,67,31)" fg:x="199288" fg:w="47"/><text x="55.2623%" y="687.50"></text></g><g><title>btrfs_get_64 (69 samples, 0.02%)</title><rect x="55.0252%" y="677" width="0.0190%" height="15" fill="rgb(249,55,44)" fg:x="199335" fg:w="69"/><text x="55.2752%" y="687.50"></text></g><g><title>__radix_tree_lookup (142 samples, 0.04%)</title><rect x="55.0758%" y="661" width="0.0392%" height="15" fill="rgb(216,82,12)" fg:x="199518" fg:w="142"/><text x="55.3258%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (73 samples, 0.02%)</title><rect x="55.1150%" y="661" width="0.0202%" height="15" fill="rgb(242,174,1)" fg:x="199660" fg:w="73"/><text x="55.3650%" y="671.50"></text></g><g><title>mark_page_accessed (58 samples, 0.02%)</title><rect x="55.1191%" y="645" width="0.0160%" height="15" fill="rgb(208,120,29)" fg:x="199675" fg:w="58"/><text x="55.3691%" y="655.50"></text></g><g><title>find_extent_buffer (305 samples, 0.08%)</title><rect x="55.0517%" y="677" width="0.0842%" height="15" fill="rgb(221,105,43)" fg:x="199431" fg:w="305"/><text x="55.3017%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (540 samples, 0.15%)</title><rect x="54.9987%" y="693" width="0.1491%" height="15" fill="rgb(234,124,22)" fg:x="199239" fg:w="540"/><text x="55.2487%" y="703.50"></text></g><g><title>read_extent_buffer (43 samples, 0.01%)</title><rect x="55.1359%" y="677" width="0.0119%" height="15" fill="rgb(212,23,30)" fg:x="199736" fg:w="43"/><text x="55.3859%" y="687.50"></text></g><g><title>__radix_tree_lookup (47 samples, 0.01%)</title><rect x="55.1746%" y="661" width="0.0130%" height="15" fill="rgb(219,122,53)" fg:x="199876" fg:w="47"/><text x="55.4246%" y="671.50"></text></g><g><title>find_extent_buffer (111 samples, 0.03%)</title><rect x="55.1658%" y="677" width="0.0306%" height="15" fill="rgb(248,84,24)" fg:x="199844" fg:w="111"/><text x="55.4158%" y="687.50"></text></g><g><title>reada_for_balance (197 samples, 0.05%)</title><rect x="55.1478%" y="693" width="0.0544%" height="15" fill="rgb(245,115,18)" fg:x="199779" fg:w="197"/><text x="55.3978%" y="703.50"></text></g><g><title>__list_del_entry_valid (91 samples, 0.03%)</title><rect x="55.2328%" y="629" width="0.0251%" height="15" fill="rgb(227,176,51)" fg:x="200087" fg:w="91"/><text x="55.4828%" y="639.50"></text></g><g><title>_raw_spin_lock (141 samples, 0.04%)</title><rect x="55.3891%" y="613" width="0.0389%" height="15" fill="rgb(229,63,42)" fg:x="200653" fg:w="141"/><text x="55.6391%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (94 samples, 0.03%)</title><rect x="55.4020%" y="597" width="0.0259%" height="15" fill="rgb(247,202,24)" fg:x="200700" fg:w="94"/><text x="55.6520%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (131 samples, 0.04%)</title><rect x="55.4280%" y="613" width="0.0362%" height="15" fill="rgb(244,173,20)" fg:x="200794" fg:w="131"/><text x="55.6780%" y="623.50"></text></g><g><title>available_idle_cpu (145 samples, 0.04%)</title><rect x="55.5420%" y="597" width="0.0400%" height="15" fill="rgb(242,81,47)" fg:x="201207" fg:w="145"/><text x="55.7920%" y="607.50"></text></g><g><title>select_task_rq_fair (652 samples, 0.18%)</title><rect x="55.4694%" y="613" width="0.1800%" height="15" fill="rgb(231,185,54)" fg:x="200944" fg:w="652"/><text x="55.7194%" y="623.50"></text></g><g><title>update_cfs_rq_h_load (149 samples, 0.04%)</title><rect x="55.6082%" y="597" width="0.0411%" height="15" fill="rgb(243,55,32)" fg:x="201447" fg:w="149"/><text x="55.8582%" y="607.50"></text></g><g><title>set_task_cpu (70 samples, 0.02%)</title><rect x="55.6494%" y="613" width="0.0193%" height="15" fill="rgb(208,167,19)" fg:x="201596" fg:w="70"/><text x="55.8994%" y="623.50"></text></g><g><title>migrate_task_rq_fair (41 samples, 0.01%)</title><rect x="55.6574%" y="597" width="0.0113%" height="15" fill="rgb(231,72,35)" fg:x="201625" fg:w="41"/><text x="55.9074%" y="607.50"></text></g><g><title>reweight_entity (41 samples, 0.01%)</title><rect x="55.7606%" y="565" width="0.0113%" height="15" fill="rgb(250,173,51)" fg:x="201999" fg:w="41"/><text x="56.0106%" y="575.50"></text></g><g><title>update_cfs_group (41 samples, 0.01%)</title><rect x="55.7719%" y="565" width="0.0113%" height="15" fill="rgb(209,5,22)" fg:x="202040" fg:w="41"/><text x="56.0219%" y="575.50"></text></g><g><title>update_curr (70 samples, 0.02%)</title><rect x="55.7833%" y="565" width="0.0193%" height="15" fill="rgb(250,174,19)" fg:x="202081" fg:w="70"/><text x="56.0333%" y="575.50"></text></g><g><title>__update_load_avg_cfs_rq (38 samples, 0.01%)</title><rect x="55.8225%" y="549" width="0.0105%" height="15" fill="rgb(217,3,49)" fg:x="202223" fg:w="38"/><text x="56.0725%" y="559.50"></text></g><g><title>__update_load_avg_se (43 samples, 0.01%)</title><rect x="55.8329%" y="549" width="0.0119%" height="15" fill="rgb(218,225,5)" fg:x="202261" fg:w="43"/><text x="56.0829%" y="559.50"></text></g><g><title>enqueue_entity (513 samples, 0.14%)</title><rect x="55.7087%" y="581" width="0.1416%" height="15" fill="rgb(236,89,11)" fg:x="201811" fg:w="513"/><text x="55.9587%" y="591.50"></text></g><g><title>update_load_avg (173 samples, 0.05%)</title><rect x="55.8026%" y="565" width="0.0478%" height="15" fill="rgb(206,33,28)" fg:x="202151" fg:w="173"/><text x="56.0526%" y="575.50"></text></g><g><title>enqueue_task_fair (689 samples, 0.19%)</title><rect x="55.6792%" y="597" width="0.1902%" height="15" fill="rgb(241,56,42)" fg:x="201704" fg:w="689"/><text x="55.9292%" y="607.50"></text></g><g><title>ttwu_do_activate (1,431 samples, 0.40%)</title><rect x="55.6687%" y="613" width="0.3950%" height="15" fill="rgb(222,44,11)" fg:x="201666" fg:w="1431"/><text x="55.9187%" y="623.50"></text></g><g><title>psi_task_change (704 samples, 0.19%)</title><rect x="55.8694%" y="597" width="0.1943%" height="15" fill="rgb(234,111,20)" fg:x="202393" fg:w="704"/><text x="56.1194%" y="607.50"></text></g><g><title>psi_group_change (644 samples, 0.18%)</title><rect x="55.8859%" y="581" width="0.1778%" height="15" fill="rgb(237,77,6)" fg:x="202453" fg:w="644"/><text x="56.1359%" y="591.50"></text></g><g><title>record_times (122 samples, 0.03%)</title><rect x="56.0300%" y="565" width="0.0337%" height="15" fill="rgb(235,111,23)" fg:x="202975" fg:w="122"/><text x="56.2800%" y="575.50"></text></g><g><title>sched_clock_cpu (82 samples, 0.02%)</title><rect x="56.0411%" y="549" width="0.0226%" height="15" fill="rgb(251,135,29)" fg:x="203015" fg:w="82"/><text x="56.2911%" y="559.50"></text></g><g><title>sched_clock (67 samples, 0.02%)</title><rect x="56.0452%" y="533" width="0.0185%" height="15" fill="rgb(217,57,1)" fg:x="203030" fg:w="67"/><text x="56.2952%" y="543.50"></text></g><g><title>native_sched_clock (57 samples, 0.02%)</title><rect x="56.0480%" y="517" width="0.0157%" height="15" fill="rgb(249,119,31)" fg:x="203040" fg:w="57"/><text x="56.2980%" y="527.50"></text></g><g><title>ttwu_do_wakeup (118 samples, 0.03%)</title><rect x="56.0637%" y="613" width="0.0326%" height="15" fill="rgb(233,164,33)" fg:x="203097" fg:w="118"/><text x="56.3137%" y="623.50"></text></g><g><title>check_preempt_curr (103 samples, 0.03%)</title><rect x="56.0679%" y="597" width="0.0284%" height="15" fill="rgb(250,217,43)" fg:x="203112" fg:w="103"/><text x="56.3179%" y="607.50"></text></g><g><title>resched_curr (45 samples, 0.01%)</title><rect x="56.0839%" y="581" width="0.0124%" height="15" fill="rgb(232,154,50)" fg:x="203170" fg:w="45"/><text x="56.3339%" y="591.50"></text></g><g><title>ttwu_queue_wakelist (71 samples, 0.02%)</title><rect x="56.0963%" y="613" width="0.0196%" height="15" fill="rgb(227,190,8)" fg:x="203215" fg:w="71"/><text x="56.3463%" y="623.50"></text></g><g><title>__wake_up_common (3,368 samples, 0.93%)</title><rect x="55.2168%" y="661" width="0.9297%" height="15" fill="rgb(209,217,32)" fg:x="200029" fg:w="3368"/><text x="55.4668%" y="671.50"></text></g><g><title>autoremove_wake_function (3,322 samples, 0.92%)</title><rect x="55.2295%" y="645" width="0.9170%" height="15" fill="rgb(243,203,50)" fg:x="200075" fg:w="3322"/><text x="55.4795%" y="655.50"></text></g><g><title>try_to_wake_up (3,216 samples, 0.89%)</title><rect x="55.2588%" y="629" width="0.8878%" height="15" fill="rgb(232,152,27)" fg:x="200181" fg:w="3216"/><text x="55.5088%" y="639.50"></text></g><g><title>update_rq_clock (111 samples, 0.03%)</title><rect x="56.1159%" y="613" width="0.0306%" height="15" fill="rgb(240,34,29)" fg:x="203286" fg:w="111"/><text x="56.3659%" y="623.50"></text></g><g><title>sched_clock_cpu (37 samples, 0.01%)</title><rect x="56.1363%" y="597" width="0.0102%" height="15" fill="rgb(215,185,52)" fg:x="203360" fg:w="37"/><text x="56.3863%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (148 samples, 0.04%)</title><rect x="56.1465%" y="661" width="0.0409%" height="15" fill="rgb(240,89,49)" fg:x="203397" fg:w="148"/><text x="56.3965%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (128 samples, 0.04%)</title><rect x="56.1521%" y="645" width="0.0353%" height="15" fill="rgb(225,12,52)" fg:x="203417" fg:w="128"/><text x="56.4021%" y="655.50"></text></g><g><title>__wake_up_common_lock (3,549 samples, 0.98%)</title><rect x="55.2132%" y="677" width="0.9797%" height="15" fill="rgb(239,128,45)" fg:x="200016" fg:w="3549"/><text x="55.4632%" y="687.50"></text></g><g><title>btrfs_search_slot (27,254 samples, 7.52%)</title><rect x="48.6864%" y="709" width="7.5233%" height="15" fill="rgb(211,78,47)" fg:x="176372" fg:w="27254"/><text x="48.9364%" y="719.50">btrfs_sear..</text></g><g><title>unlock_up (3,650 samples, 1.01%)</title><rect x="55.2022%" y="693" width="1.0076%" height="15" fill="rgb(232,31,21)" fg:x="199976" fg:w="3650"/><text x="55.4522%" y="703.50"></text></g><g><title>btrfs_tree_unlock (61 samples, 0.02%)</title><rect x="56.1929%" y="677" width="0.0168%" height="15" fill="rgb(222,168,14)" fg:x="203565" fg:w="61"/><text x="56.4429%" y="687.50"></text></g><g><title>kmem_cache_alloc (42 samples, 0.01%)</title><rect x="56.2097%" y="709" width="0.0116%" height="15" fill="rgb(209,128,24)" fg:x="203626" fg:w="42"/><text x="56.4597%" y="719.50"></text></g><g><title>btrfs_del_orphan_item (28,795 samples, 7.95%)</title><rect x="48.2917%" y="725" width="7.9487%" height="15" fill="rgb(249,35,13)" fg:x="174942" fg:w="28795"/><text x="48.5417%" y="735.50">btrfs_del_o..</text></g><g><title>kmem_cache_free (69 samples, 0.02%)</title><rect x="56.2213%" y="709" width="0.0190%" height="15" fill="rgb(218,7,2)" fg:x="203668" fg:w="69"/><text x="56.4713%" y="719.50"></text></g><g><title>btrfs_free_block_rsv (49 samples, 0.01%)</title><rect x="56.2465%" y="725" width="0.0135%" height="15" fill="rgb(238,107,27)" fg:x="203759" fg:w="49"/><text x="56.4965%" y="735.50"></text></g><g><title>btrfs_block_rsv_release (47 samples, 0.01%)</title><rect x="56.2470%" y="709" width="0.0130%" height="15" fill="rgb(217,88,38)" fg:x="203761" fg:w="47"/><text x="56.4970%" y="719.50"></text></g><g><title>alloc_extent_state (55 samples, 0.02%)</title><rect x="56.3431%" y="693" width="0.0152%" height="15" fill="rgb(230,207,0)" fg:x="204109" fg:w="55"/><text x="56.5931%" y="703.50"></text></g><g><title>kmem_cache_alloc (46 samples, 0.01%)</title><rect x="56.3456%" y="677" width="0.0127%" height="15" fill="rgb(249,64,54)" fg:x="204118" fg:w="46"/><text x="56.5956%" y="687.50"></text></g><g><title>__wake_up_common_lock (42 samples, 0.01%)</title><rect x="56.3663%" y="677" width="0.0116%" height="15" fill="rgb(231,7,11)" fg:x="204193" fg:w="42"/><text x="56.6163%" y="687.50"></text></g><g><title>kmem_cache_free (49 samples, 0.01%)</title><rect x="56.3903%" y="677" width="0.0135%" height="15" fill="rgb(205,149,21)" fg:x="204280" fg:w="49"/><text x="56.6403%" y="687.50"></text></g><g><title>clear_state_bit (173 samples, 0.05%)</title><rect x="56.3583%" y="693" width="0.0478%" height="15" fill="rgb(215,126,34)" fg:x="204164" fg:w="173"/><text x="56.6083%" y="703.50"></text></g><g><title>__clear_extent_bit (325 samples, 0.09%)</title><rect x="56.3265%" y="709" width="0.0897%" height="15" fill="rgb(241,132,45)" fg:x="204049" fg:w="325"/><text x="56.5765%" y="719.50"></text></g><g><title>_find_next_bit.constprop.0 (799 samples, 0.22%)</title><rect x="56.5032%" y="629" width="0.2206%" height="15" fill="rgb(252,69,32)" fg:x="204689" fg:w="799"/><text x="56.7532%" y="639.50"></text></g><g><title>find_next_zero_bit (43 samples, 0.01%)</title><rect x="56.7240%" y="629" width="0.0119%" height="15" fill="rgb(232,204,19)" fg:x="205489" fg:w="43"/><text x="56.9740%" y="639.50"></text></g><g><title>steal_from_bitmap.part.0 (950 samples, 0.26%)</title><rect x="56.4739%" y="645" width="0.2622%" height="15" fill="rgb(249,15,47)" fg:x="204583" fg:w="950"/><text x="56.7239%" y="655.50"></text></g><g><title>__btrfs_add_free_space (1,013 samples, 0.28%)</title><rect x="56.4618%" y="661" width="0.2796%" height="15" fill="rgb(209,227,23)" fg:x="204539" fg:w="1013"/><text x="56.7118%" y="671.50"></text></g><g><title>btrfs_free_tree_block (1,074 samples, 0.30%)</title><rect x="56.4615%" y="677" width="0.2965%" height="15" fill="rgb(248,92,24)" fg:x="204538" fg:w="1074"/><text x="56.7115%" y="687.50"></text></g><g><title>btrfs_del_leaf (1,115 samples, 0.31%)</title><rect x="56.4609%" y="693" width="0.3078%" height="15" fill="rgb(247,59,2)" fg:x="204536" fg:w="1115"/><text x="56.7109%" y="703.50"></text></g><g><title>btrfs_get_32 (46 samples, 0.01%)</title><rect x="56.7687%" y="693" width="0.0127%" height="15" fill="rgb(221,30,5)" fg:x="205651" fg:w="46"/><text x="57.0187%" y="703.50"></text></g><g><title>btrfs_get_token_32 (402 samples, 0.11%)</title><rect x="56.7814%" y="693" width="0.1110%" height="15" fill="rgb(208,108,53)" fg:x="205697" fg:w="402"/><text x="57.0314%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (60 samples, 0.02%)</title><rect x="56.8758%" y="677" width="0.0166%" height="15" fill="rgb(211,183,26)" fg:x="206039" fg:w="60"/><text x="57.1258%" y="687.50"></text></g><g><title>btrfs_set_token_32 (317 samples, 0.09%)</title><rect x="56.9034%" y="693" width="0.0875%" height="15" fill="rgb(232,132,4)" fg:x="206139" fg:w="317"/><text x="57.1534%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (49 samples, 0.01%)</title><rect x="56.9774%" y="677" width="0.0135%" height="15" fill="rgb(253,128,37)" fg:x="206407" fg:w="49"/><text x="57.2274%" y="687.50"></text></g><g><title>fixup_low_keys (48 samples, 0.01%)</title><rect x="56.9912%" y="693" width="0.0133%" height="15" fill="rgb(221,58,24)" fg:x="206457" fg:w="48"/><text x="57.2412%" y="703.50"></text></g><g><title>leaf_space_used (41 samples, 0.01%)</title><rect x="57.0045%" y="693" width="0.0113%" height="15" fill="rgb(230,54,45)" fg:x="206505" fg:w="41"/><text x="57.2545%" y="703.50"></text></g><g><title>memcpy_extent_buffer (50 samples, 0.01%)</title><rect x="57.0158%" y="693" width="0.0138%" height="15" fill="rgb(254,21,18)" fg:x="206546" fg:w="50"/><text x="57.2658%" y="703.50"></text></g><g><title>copy_pages (76 samples, 0.02%)</title><rect x="57.0417%" y="677" width="0.0210%" height="15" fill="rgb(221,108,0)" fg:x="206640" fg:w="76"/><text x="57.2917%" y="687.50"></text></g><g><title>memmove_extent_buffer (486 samples, 0.13%)</title><rect x="57.0296%" y="693" width="0.1342%" height="15" fill="rgb(206,95,1)" fg:x="206596" fg:w="486"/><text x="57.2796%" y="703.50"></text></g><g><title>memmove (366 samples, 0.10%)</title><rect x="57.0627%" y="677" width="0.1010%" height="15" fill="rgb(237,52,5)" fg:x="206716" fg:w="366"/><text x="57.3127%" y="687.50"></text></g><g><title>__push_leaf_left (85 samples, 0.02%)</title><rect x="57.1651%" y="677" width="0.0235%" height="15" fill="rgb(218,150,34)" fg:x="207087" fg:w="85"/><text x="57.4151%" y="687.50"></text></g><g><title>push_leaf_left (130 samples, 0.04%)</title><rect x="57.1638%" y="693" width="0.0359%" height="15" fill="rgb(235,194,28)" fg:x="207082" fg:w="130"/><text x="57.4138%" y="703.50"></text></g><g><title>push_leaf_right (41 samples, 0.01%)</title><rect x="57.1996%" y="693" width="0.0113%" height="15" fill="rgb(245,92,18)" fg:x="207212" fg:w="41"/><text x="57.4496%" y="703.50"></text></g><g><title>btrfs_del_items (2,891 samples, 0.80%)</title><rect x="56.4173%" y="709" width="0.7980%" height="15" fill="rgb(253,203,53)" fg:x="204378" fg:w="2891"/><text x="56.6673%" y="719.50"></text></g><g><title>alloc_extent_map (130 samples, 0.04%)</title><rect x="57.2267%" y="693" width="0.0359%" height="15" fill="rgb(249,185,47)" fg:x="207310" fg:w="130"/><text x="57.4767%" y="703.50"></text></g><g><title>kmem_cache_alloc (93 samples, 0.03%)</title><rect x="57.2369%" y="677" width="0.0257%" height="15" fill="rgb(252,194,52)" fg:x="207347" fg:w="93"/><text x="57.4869%" y="687.50"></text></g><g><title>kmem_cache_free (64 samples, 0.02%)</title><rect x="57.2689%" y="693" width="0.0177%" height="15" fill="rgb(210,53,36)" fg:x="207463" fg:w="64"/><text x="57.5189%" y="703.50"></text></g><g><title>btrfs_drop_extent_cache (261 samples, 0.07%)</title><rect x="57.2154%" y="709" width="0.0720%" height="15" fill="rgb(237,37,25)" fg:x="207269" fg:w="261"/><text x="57.4654%" y="719.50"></text></g><g><title>_raw_spin_lock (49 samples, 0.01%)</title><rect x="57.3559%" y="613" width="0.0135%" height="15" fill="rgb(242,116,27)" fg:x="207778" fg:w="49"/><text x="57.6059%" y="623.50"></text></g><g><title>select_task_rq_fair (168 samples, 0.05%)</title><rect x="57.3785%" y="613" width="0.0464%" height="15" fill="rgb(213,185,26)" fg:x="207860" fg:w="168"/><text x="57.6285%" y="623.50"></text></g><g><title>update_cfs_rq_h_load (56 samples, 0.02%)</title><rect x="57.4094%" y="597" width="0.0155%" height="15" fill="rgb(225,204,8)" fg:x="207972" fg:w="56"/><text x="57.6594%" y="607.50"></text></g><g><title>enqueue_entity (194 samples, 0.05%)</title><rect x="57.4450%" y="581" width="0.0536%" height="15" fill="rgb(254,111,37)" fg:x="208101" fg:w="194"/><text x="57.6950%" y="591.50"></text></g><g><title>update_load_avg (66 samples, 0.02%)</title><rect x="57.4804%" y="565" width="0.0182%" height="15" fill="rgb(242,35,9)" fg:x="208229" fg:w="66"/><text x="57.7304%" y="575.50"></text></g><g><title>enqueue_task_fair (235 samples, 0.06%)</title><rect x="57.4351%" y="597" width="0.0649%" height="15" fill="rgb(232,138,49)" fg:x="208065" fg:w="235"/><text x="57.6851%" y="607.50"></text></g><g><title>ttwu_do_activate (487 samples, 0.13%)</title><rect x="57.4293%" y="613" width="0.1344%" height="15" fill="rgb(247,56,4)" fg:x="208044" fg:w="487"/><text x="57.6793%" y="623.50"></text></g><g><title>psi_task_change (231 samples, 0.06%)</title><rect x="57.5000%" y="597" width="0.0638%" height="15" fill="rgb(226,179,17)" fg:x="208300" fg:w="231"/><text x="57.7500%" y="607.50"></text></g><g><title>psi_group_change (216 samples, 0.06%)</title><rect x="57.5041%" y="581" width="0.0596%" height="15" fill="rgb(216,163,45)" fg:x="208315" fg:w="216"/><text x="57.7541%" y="591.50"></text></g><g><title>ttwu_do_wakeup (43 samples, 0.01%)</title><rect x="57.5637%" y="613" width="0.0119%" height="15" fill="rgb(211,157,3)" fg:x="208531" fg:w="43"/><text x="57.8137%" y="623.50"></text></g><g><title>check_preempt_curr (38 samples, 0.01%)</title><rect x="57.5651%" y="597" width="0.0105%" height="15" fill="rgb(234,44,20)" fg:x="208536" fg:w="38"/><text x="57.8151%" y="607.50"></text></g><g><title>__wake_up_common (1,086 samples, 0.30%)</title><rect x="57.2976%" y="661" width="0.2998%" height="15" fill="rgb(254,138,23)" fg:x="207567" fg:w="1086"/><text x="57.5476%" y="671.50"></text></g><g><title>autoremove_wake_function (1,058 samples, 0.29%)</title><rect x="57.3054%" y="645" width="0.2921%" height="15" fill="rgb(206,119,39)" fg:x="207595" fg:w="1058"/><text x="57.5554%" y="655.50"></text></g><g><title>try_to_wake_up (1,038 samples, 0.29%)</title><rect x="57.3109%" y="629" width="0.2865%" height="15" fill="rgb(231,105,52)" fg:x="207615" fg:w="1038"/><text x="57.5609%" y="639.50"></text></g><g><title>update_rq_clock (45 samples, 0.01%)</title><rect x="57.5850%" y="613" width="0.0124%" height="15" fill="rgb(250,20,5)" fg:x="208608" fg:w="45"/><text x="57.8350%" y="623.50"></text></g><g><title>__wake_up_common_lock (1,107 samples, 0.31%)</title><rect x="57.2965%" y="677" width="0.3056%" height="15" fill="rgb(215,198,30)" fg:x="207563" fg:w="1107"/><text x="57.5465%" y="687.50"></text></g><g><title>btrfs_tree_unlock (48 samples, 0.01%)</title><rect x="57.6021%" y="677" width="0.0133%" height="15" fill="rgb(246,142,8)" fg:x="208670" fg:w="48"/><text x="57.8521%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (65 samples, 0.02%)</title><rect x="57.6167%" y="677" width="0.0179%" height="15" fill="rgb(243,26,38)" fg:x="208723" fg:w="65"/><text x="57.8667%" y="687.50"></text></g><g><title>btrfs_free_path (1,286 samples, 0.35%)</title><rect x="57.2874%" y="709" width="0.3550%" height="15" fill="rgb(205,133,28)" fg:x="207530" fg:w="1286"/><text x="57.5374%" y="719.50"></text></g><g><title>btrfs_release_path (1,279 samples, 0.35%)</title><rect x="57.2894%" y="693" width="0.3531%" height="15" fill="rgb(212,34,0)" fg:x="207537" fg:w="1279"/><text x="57.5394%" y="703.50"></text></g><g><title>alloc_extent_state (115 samples, 0.03%)</title><rect x="57.6830%" y="661" width="0.0317%" height="15" fill="rgb(251,226,22)" fg:x="208963" fg:w="115"/><text x="57.9330%" y="671.50"></text></g><g><title>kmem_cache_alloc (94 samples, 0.03%)</title><rect x="57.6888%" y="645" width="0.0259%" height="15" fill="rgb(252,119,9)" fg:x="208984" fg:w="94"/><text x="57.9388%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (49 samples, 0.01%)</title><rect x="57.7012%" y="629" width="0.0135%" height="15" fill="rgb(213,150,50)" fg:x="209029" fg:w="49"/><text x="57.9512%" y="639.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (265 samples, 0.07%)</title><rect x="57.6593%" y="709" width="0.0732%" height="15" fill="rgb(212,24,39)" fg:x="208877" fg:w="265"/><text x="57.9093%" y="719.50"></text></g><g><title>clear_extent_bit (238 samples, 0.07%)</title><rect x="57.6667%" y="693" width="0.0657%" height="15" fill="rgb(213,46,39)" fg:x="208904" fg:w="238"/><text x="57.9167%" y="703.50"></text></g><g><title>__clear_extent_bit (236 samples, 0.07%)</title><rect x="57.6673%" y="677" width="0.0651%" height="15" fill="rgb(239,106,12)" fg:x="208906" fg:w="236"/><text x="57.9173%" y="687.50"></text></g><g><title>kmem_cache_free (49 samples, 0.01%)</title><rect x="57.7189%" y="661" width="0.0135%" height="15" fill="rgb(249,229,21)" fg:x="209093" fg:w="49"/><text x="57.9689%" y="671.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (69 samples, 0.02%)</title><rect x="57.7324%" y="709" width="0.0190%" height="15" fill="rgb(212,158,3)" fg:x="209142" fg:w="69"/><text x="57.9824%" y="719.50"></text></g><g><title>btrfs_kill_delayed_inode_items (79 samples, 0.02%)</title><rect x="57.7515%" y="709" width="0.0218%" height="15" fill="rgb(253,26,48)" fg:x="209211" fg:w="79"/><text x="58.0015%" y="719.50"></text></g><g><title>_raw_read_lock (57 samples, 0.02%)</title><rect x="57.8597%" y="661" width="0.0157%" height="15" fill="rgb(238,178,20)" fg:x="209603" fg:w="57"/><text x="58.1097%" y="671.50"></text></g><g><title>finish_wait (621 samples, 0.17%)</title><rect x="57.8773%" y="661" width="0.1714%" height="15" fill="rgb(208,86,15)" fg:x="209667" fg:w="621"/><text x="58.1273%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (595 samples, 0.16%)</title><rect x="57.8845%" y="645" width="0.1642%" height="15" fill="rgb(239,42,53)" fg:x="209693" fg:w="595"/><text x="58.1345%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (580 samples, 0.16%)</title><rect x="57.8886%" y="629" width="0.1601%" height="15" fill="rgb(245,226,8)" fg:x="209708" fg:w="580"/><text x="58.1386%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (1,877 samples, 0.52%)</title><rect x="58.0755%" y="645" width="0.5181%" height="15" fill="rgb(216,176,32)" fg:x="210385" fg:w="1877"/><text x="58.3255%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,817 samples, 0.50%)</title><rect x="58.0921%" y="629" width="0.5016%" height="15" fill="rgb(231,186,21)" fg:x="210445" fg:w="1817"/><text x="58.3421%" y="639.50"></text></g><g><title>prepare_to_wait_event (1,989 samples, 0.55%)</title><rect x="58.0490%" y="661" width="0.5491%" height="15" fill="rgb(205,95,49)" fg:x="210289" fg:w="1989"/><text x="58.2990%" y="671.50"></text></g><g><title>queued_read_lock_slowpath (316 samples, 0.09%)</title><rect x="58.5981%" y="661" width="0.0872%" height="15" fill="rgb(217,145,8)" fg:x="212278" fg:w="316"/><text x="58.8481%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (198 samples, 0.05%)</title><rect x="58.6307%" y="645" width="0.0547%" height="15" fill="rgb(239,144,48)" fg:x="212396" fg:w="198"/><text x="58.8807%" y="655.50"></text></g><g><title>update_curr (64 samples, 0.02%)</title><rect x="58.7356%" y="597" width="0.0177%" height="15" fill="rgb(214,189,23)" fg:x="212776" fg:w="64"/><text x="58.9856%" y="607.50"></text></g><g><title>dequeue_entity (166 samples, 0.05%)</title><rect x="58.7253%" y="613" width="0.0458%" height="15" fill="rgb(229,157,17)" fg:x="212739" fg:w="166"/><text x="58.9753%" y="623.50"></text></g><g><title>update_load_avg (65 samples, 0.02%)</title><rect x="58.7532%" y="597" width="0.0179%" height="15" fill="rgb(230,5,48)" fg:x="212840" fg:w="65"/><text x="59.0032%" y="607.50"></text></g><g><title>dequeue_task_fair (218 samples, 0.06%)</title><rect x="58.7173%" y="629" width="0.0602%" height="15" fill="rgb(224,156,48)" fg:x="212710" fg:w="218"/><text x="58.9673%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (203 samples, 0.06%)</title><rect x="58.7852%" y="613" width="0.0560%" height="15" fill="rgb(223,14,29)" fg:x="212956" fg:w="203"/><text x="59.0352%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (198 samples, 0.05%)</title><rect x="58.7866%" y="597" width="0.0547%" height="15" fill="rgb(229,96,36)" fg:x="212961" fg:w="198"/><text x="59.0366%" y="607.50"></text></g><g><title>native_write_msr (194 samples, 0.05%)</title><rect x="58.7877%" y="581" width="0.0536%" height="15" fill="rgb(231,102,53)" fg:x="212965" fg:w="194"/><text x="59.0377%" y="591.50"></text></g><g><title>finish_task_switch (247 samples, 0.07%)</title><rect x="58.7775%" y="629" width="0.0682%" height="15" fill="rgb(210,77,38)" fg:x="212928" fg:w="247"/><text x="59.0275%" y="639.50"></text></g><g><title>pick_next_task_fair (42 samples, 0.01%)</title><rect x="58.8457%" y="629" width="0.0116%" height="15" fill="rgb(235,131,6)" fg:x="213175" fg:w="42"/><text x="59.0957%" y="639.50"></text></g><g><title>psi_task_change (149 samples, 0.04%)</title><rect x="58.8656%" y="629" width="0.0411%" height="15" fill="rgb(252,55,38)" fg:x="213247" fg:w="149"/><text x="59.1156%" y="639.50"></text></g><g><title>psi_group_change (136 samples, 0.04%)</title><rect x="58.8692%" y="613" width="0.0375%" height="15" fill="rgb(246,38,14)" fg:x="213260" fg:w="136"/><text x="59.1192%" y="623.50"></text></g><g><title>record_times (40 samples, 0.01%)</title><rect x="58.8957%" y="597" width="0.0110%" height="15" fill="rgb(242,27,5)" fg:x="213356" fg:w="40"/><text x="59.1457%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (3,914 samples, 1.08%)</title><rect x="57.8428%" y="677" width="1.0804%" height="15" fill="rgb(228,65,35)" fg:x="209542" fg:w="3914"/><text x="58.0928%" y="687.50"></text></g><g><title>schedule (862 samples, 0.24%)</title><rect x="58.6853%" y="661" width="0.2379%" height="15" fill="rgb(245,93,11)" fg:x="212594" fg:w="862"/><text x="58.9353%" y="671.50"></text></g><g><title>__schedule (849 samples, 0.23%)</title><rect x="58.6889%" y="645" width="0.2344%" height="15" fill="rgb(213,1,31)" fg:x="212607" fg:w="849"/><text x="58.9389%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (3,973 samples, 1.10%)</title><rect x="57.8390%" y="693" width="1.0967%" height="15" fill="rgb(237,205,14)" fg:x="209528" fg:w="3973"/><text x="58.0890%" y="703.50"></text></g><g><title>btrfs_root_node (45 samples, 0.01%)</title><rect x="58.9233%" y="677" width="0.0124%" height="15" fill="rgb(232,118,45)" fg:x="213456" fg:w="45"/><text x="59.1733%" y="687.50"></text></g><g><title>prepare_to_wait_event (64 samples, 0.02%)</title><rect x="58.9442%" y="677" width="0.0177%" height="15" fill="rgb(218,5,6)" fg:x="213532" fg:w="64"/><text x="59.1942%" y="687.50"></text></g><g><title>update_curr (41 samples, 0.01%)</title><rect x="58.9972%" y="613" width="0.0113%" height="15" fill="rgb(251,87,51)" fg:x="213724" fg:w="41"/><text x="59.2472%" y="623.50"></text></g><g><title>dequeue_entity (114 samples, 0.03%)</title><rect x="58.9887%" y="629" width="0.0315%" height="15" fill="rgb(207,225,20)" fg:x="213693" fg:w="114"/><text x="59.2387%" y="639.50"></text></g><g><title>update_load_avg (42 samples, 0.01%)</title><rect x="59.0086%" y="613" width="0.0116%" height="15" fill="rgb(222,78,54)" fg:x="213765" fg:w="42"/><text x="59.2586%" y="623.50"></text></g><g><title>dequeue_task_fair (144 samples, 0.04%)</title><rect x="58.9868%" y="645" width="0.0398%" height="15" fill="rgb(232,85,16)" fg:x="213686" fg:w="144"/><text x="59.2368%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (161 samples, 0.04%)</title><rect x="59.0326%" y="629" width="0.0444%" height="15" fill="rgb(244,25,33)" fg:x="213852" fg:w="161"/><text x="59.2826%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (157 samples, 0.04%)</title><rect x="59.0337%" y="613" width="0.0433%" height="15" fill="rgb(233,24,36)" fg:x="213856" fg:w="157"/><text x="59.2837%" y="623.50"></text></g><g><title>native_write_msr (154 samples, 0.04%)</title><rect x="59.0345%" y="597" width="0.0425%" height="15" fill="rgb(253,49,54)" fg:x="213859" fg:w="154"/><text x="59.2845%" y="607.50"></text></g><g><title>finish_task_switch (190 samples, 0.05%)</title><rect x="59.0265%" y="645" width="0.0524%" height="15" fill="rgb(245,12,22)" fg:x="213830" fg:w="190"/><text x="59.2765%" y="655.50"></text></g><g><title>pick_next_task_fair (42 samples, 0.01%)</title><rect x="59.0790%" y="645" width="0.0116%" height="15" fill="rgb(253,141,28)" fg:x="214020" fg:w="42"/><text x="59.3290%" y="655.50"></text></g><g><title>psi_task_change (117 samples, 0.03%)</title><rect x="59.0977%" y="645" width="0.0323%" height="15" fill="rgb(225,207,27)" fg:x="214088" fg:w="117"/><text x="59.3477%" y="655.50"></text></g><g><title>psi_group_change (98 samples, 0.03%)</title><rect x="59.1030%" y="629" width="0.0271%" height="15" fill="rgb(220,84,2)" fg:x="214107" fg:w="98"/><text x="59.3530%" y="639.50"></text></g><g><title>__btrfs_tree_lock (748 samples, 0.21%)</title><rect x="58.9357%" y="693" width="0.2065%" height="15" fill="rgb(224,37,37)" fg:x="213501" fg:w="748"/><text x="59.1857%" y="703.50"></text></g><g><title>schedule (653 samples, 0.18%)</title><rect x="58.9619%" y="677" width="0.1803%" height="15" fill="rgb(220,143,18)" fg:x="213596" fg:w="653"/><text x="59.2119%" y="687.50"></text></g><g><title>__schedule (640 samples, 0.18%)</title><rect x="58.9655%" y="661" width="0.1767%" height="15" fill="rgb(210,88,33)" fg:x="213609" fg:w="640"/><text x="59.2155%" y="671.50"></text></g><g><title>balance_level (46 samples, 0.01%)</title><rect x="59.1430%" y="693" width="0.0127%" height="15" fill="rgb(219,87,51)" fg:x="214252" fg:w="46"/><text x="59.3930%" y="703.50"></text></g><g><title>_cond_resched (42 samples, 0.01%)</title><rect x="59.2051%" y="661" width="0.0116%" height="15" fill="rgb(211,7,35)" fg:x="214477" fg:w="42"/><text x="59.4551%" y="671.50"></text></g><g><title>_raw_write_lock (81 samples, 0.02%)</title><rect x="59.2200%" y="661" width="0.0224%" height="15" fill="rgb(232,77,2)" fg:x="214531" fg:w="81"/><text x="59.4700%" y="671.50"></text></g><g><title>__list_del_entry_valid (56 samples, 0.02%)</title><rect x="59.2476%" y="645" width="0.0155%" height="15" fill="rgb(249,94,25)" fg:x="214631" fg:w="56"/><text x="59.4976%" y="655.50"></text></g><g><title>finish_wait (1,299 samples, 0.36%)</title><rect x="59.2424%" y="661" width="0.3586%" height="15" fill="rgb(215,112,2)" fg:x="214612" fg:w="1299"/><text x="59.4924%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (1,224 samples, 0.34%)</title><rect x="59.2631%" y="645" width="0.3379%" height="15" fill="rgb(226,115,48)" fg:x="214687" fg:w="1224"/><text x="59.5131%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,159 samples, 0.32%)</title><rect x="59.2810%" y="629" width="0.3199%" height="15" fill="rgb(249,196,10)" fg:x="214752" fg:w="1159"/><text x="59.5310%" y="639.50"></text></g><g><title>__list_add_valid (96 samples, 0.03%)</title><rect x="59.6829%" y="645" width="0.0265%" height="15" fill="rgb(237,109,14)" fg:x="216208" fg:w="96"/><text x="59.9329%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (4,381 samples, 1.21%)</title><rect x="59.7094%" y="645" width="1.2093%" height="15" fill="rgb(217,103,53)" fg:x="216304" fg:w="4381"/><text x="59.9594%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,157 samples, 1.15%)</title><rect x="59.7713%" y="629" width="1.1475%" height="15" fill="rgb(244,137,9)" fg:x="216528" fg:w="4157"/><text x="60.0213%" y="639.50"></text></g><g><title>prepare_to_wait_event (4,824 samples, 1.33%)</title><rect x="59.6048%" y="661" width="1.3316%" height="15" fill="rgb(227,201,3)" fg:x="215925" fg:w="4824"/><text x="59.8548%" y="671.50"></text></g><g><title>_raw_spin_unlock_irqrestore (64 samples, 0.02%)</title><rect x="60.9188%" y="645" width="0.0177%" height="15" fill="rgb(243,94,6)" fg:x="220685" fg:w="64"/><text x="61.1688%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (1,685 samples, 0.47%)</title><rect x="60.9365%" y="661" width="0.4651%" height="15" fill="rgb(235,118,5)" fg:x="220749" fg:w="1685"/><text x="61.1865%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (931 samples, 0.26%)</title><rect x="61.1446%" y="645" width="0.2570%" height="15" fill="rgb(247,10,30)" fg:x="221503" fg:w="931"/><text x="61.3946%" y="655.50"></text></g><g><title>_raw_spin_lock (39 samples, 0.01%)</title><rect x="61.4794%" y="613" width="0.0108%" height="15" fill="rgb(205,26,28)" fg:x="222716" fg:w="39"/><text x="61.7294%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (106 samples, 0.03%)</title><rect x="61.4637%" y="629" width="0.0293%" height="15" fill="rgb(206,99,35)" fg:x="222659" fg:w="106"/><text x="61.7137%" y="639.50"></text></g><g><title>update_cfs_group (67 samples, 0.02%)</title><rect x="61.5645%" y="597" width="0.0185%" height="15" fill="rgb(238,130,40)" fg:x="223024" fg:w="67"/><text x="61.8145%" y="607.50"></text></g><g><title>__calc_delta (38 samples, 0.01%)</title><rect x="61.6078%" y="581" width="0.0105%" height="15" fill="rgb(224,126,31)" fg:x="223181" fg:w="38"/><text x="61.8578%" y="591.50"></text></g><g><title>cpuacct_charge (45 samples, 0.01%)</title><rect x="61.6219%" y="581" width="0.0124%" height="15" fill="rgb(254,105,17)" fg:x="223232" fg:w="45"/><text x="61.8719%" y="591.50"></text></g><g><title>update_curr (204 samples, 0.06%)</title><rect x="61.5829%" y="597" width="0.0563%" height="15" fill="rgb(216,87,36)" fg:x="223091" fg:w="204"/><text x="61.8329%" y="607.50"></text></g><g><title>__update_load_avg_cfs_rq (57 samples, 0.02%)</title><rect x="61.6597%" y="581" width="0.0157%" height="15" fill="rgb(240,21,12)" fg:x="223369" fg:w="57"/><text x="61.9097%" y="591.50"></text></g><g><title>__update_load_avg_se (76 samples, 0.02%)</title><rect x="61.6754%" y="581" width="0.0210%" height="15" fill="rgb(245,192,34)" fg:x="223426" fg:w="76"/><text x="61.9254%" y="591.50"></text></g><g><title>dequeue_entity (624 samples, 0.17%)</title><rect x="61.5266%" y="613" width="0.1723%" height="15" fill="rgb(226,100,49)" fg:x="222887" fg:w="624"/><text x="61.7766%" y="623.50"></text></g><g><title>update_load_avg (216 samples, 0.06%)</title><rect x="61.6393%" y="597" width="0.0596%" height="15" fill="rgb(245,188,27)" fg:x="223295" fg:w="216"/><text x="61.8893%" y="607.50"></text></g><g><title>dequeue_task_fair (758 samples, 0.21%)</title><rect x="61.5073%" y="629" width="0.2092%" height="15" fill="rgb(212,170,8)" fg:x="222817" fg:w="758"/><text x="61.7573%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (738 samples, 0.20%)</title><rect x="61.7571%" y="613" width="0.2037%" height="15" fill="rgb(217,113,29)" fg:x="223722" fg:w="738"/><text x="62.0071%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (710 samples, 0.20%)</title><rect x="61.7649%" y="597" width="0.1960%" height="15" fill="rgb(237,30,3)" fg:x="223750" fg:w="710"/><text x="62.0149%" y="607.50"></text></g><g><title>native_write_msr (694 samples, 0.19%)</title><rect x="61.7693%" y="581" width="0.1916%" height="15" fill="rgb(227,19,28)" fg:x="223766" fg:w="694"/><text x="62.0193%" y="591.50"></text></g><g><title>finish_task_switch (902 samples, 0.25%)</title><rect x="61.7166%" y="629" width="0.2490%" height="15" fill="rgb(239,172,45)" fg:x="223575" fg:w="902"/><text x="61.9666%" y="639.50"></text></g><g><title>newidle_balance (62 samples, 0.02%)</title><rect x="61.9755%" y="613" width="0.0171%" height="15" fill="rgb(254,55,39)" fg:x="224513" fg:w="62"/><text x="62.2255%" y="623.50"></text></g><g><title>pick_next_task_fair (139 samples, 0.04%)</title><rect x="61.9661%" y="629" width="0.0384%" height="15" fill="rgb(249,208,12)" fg:x="224479" fg:w="139"/><text x="62.2161%" y="639.50"></text></g><g><title>pick_next_task_idle (122 samples, 0.03%)</title><rect x="62.0045%" y="629" width="0.0337%" height="15" fill="rgb(240,52,13)" fg:x="224618" fg:w="122"/><text x="62.2545%" y="639.50"></text></g><g><title>__update_idle_core (101 samples, 0.03%)</title><rect x="62.0103%" y="613" width="0.0279%" height="15" fill="rgb(252,149,13)" fg:x="224639" fg:w="101"/><text x="62.2603%" y="623.50"></text></g><g><title>psi_task_change (630 samples, 0.17%)</title><rect x="62.0381%" y="629" width="0.1739%" height="15" fill="rgb(232,81,48)" fg:x="224740" fg:w="630"/><text x="62.2881%" y="639.50"></text></g><g><title>psi_group_change (549 samples, 0.15%)</title><rect x="62.0605%" y="613" width="0.1515%" height="15" fill="rgb(222,144,2)" fg:x="224821" fg:w="549"/><text x="62.3105%" y="623.50"></text></g><g><title>record_times (157 samples, 0.04%)</title><rect x="62.1687%" y="597" width="0.0433%" height="15" fill="rgb(216,81,32)" fg:x="225213" fg:w="157"/><text x="62.4187%" y="607.50"></text></g><g><title>sched_clock_cpu (109 samples, 0.03%)</title><rect x="62.1820%" y="581" width="0.0301%" height="15" fill="rgb(244,78,51)" fg:x="225261" fg:w="109"/><text x="62.4320%" y="591.50"></text></g><g><title>sched_clock (91 samples, 0.03%)</title><rect x="62.1869%" y="565" width="0.0251%" height="15" fill="rgb(217,66,21)" fg:x="225279" fg:w="91"/><text x="62.4369%" y="575.50"></text></g><g><title>native_sched_clock (88 samples, 0.02%)</title><rect x="62.1878%" y="549" width="0.0243%" height="15" fill="rgb(247,101,42)" fg:x="225282" fg:w="88"/><text x="62.4378%" y="559.50"></text></g><g><title>psi_task_switch (87 samples, 0.02%)</title><rect x="62.2121%" y="629" width="0.0240%" height="15" fill="rgb(227,81,39)" fg:x="225370" fg:w="87"/><text x="62.4621%" y="639.50"></text></g><g><title>psi_group_change (71 samples, 0.02%)</title><rect x="62.2165%" y="613" width="0.0196%" height="15" fill="rgb(220,223,44)" fg:x="225386" fg:w="71"/><text x="62.4665%" y="623.50"></text></g><g><title>__btrfs_tree_lock (11,259 samples, 3.11%)</title><rect x="59.1607%" y="677" width="3.1080%" height="15" fill="rgb(205,218,2)" fg:x="214316" fg:w="11259"/><text x="59.4107%" y="687.50">__b..</text></g><g><title>schedule (3,141 samples, 0.87%)</title><rect x="61.4016%" y="661" width="0.8671%" height="15" fill="rgb(212,207,28)" fg:x="222434" fg:w="3141"/><text x="61.6516%" y="671.50"></text></g><g><title>__schedule (3,099 samples, 0.86%)</title><rect x="61.4132%" y="645" width="0.8555%" height="15" fill="rgb(224,12,41)" fg:x="222476" fg:w="3099"/><text x="61.6632%" y="655.50"></text></g><g><title>update_rq_clock (73 samples, 0.02%)</title><rect x="62.2485%" y="629" width="0.0202%" height="15" fill="rgb(216,118,12)" fg:x="225502" fg:w="73"/><text x="62.4985%" y="639.50"></text></g><g><title>sched_clock_cpu (38 samples, 0.01%)</title><rect x="62.2582%" y="613" width="0.0105%" height="15" fill="rgb(252,97,46)" fg:x="225537" fg:w="38"/><text x="62.5082%" y="623.50"></text></g><g><title>btrfs_lock_root_node (11,281 samples, 3.11%)</title><rect x="59.1596%" y="693" width="3.1141%" height="15" fill="rgb(244,206,19)" fg:x="214312" fg:w="11281"/><text x="59.4096%" y="703.50">btr..</text></g><g><title>btrfs_set_path_blocking (87 samples, 0.02%)</title><rect x="62.2736%" y="693" width="0.0240%" height="15" fill="rgb(231,84,31)" fg:x="225593" fg:w="87"/><text x="62.5236%" y="703.50"></text></g><g><title>btrfs_try_tree_write_lock (707 samples, 0.20%)</title><rect x="62.3062%" y="693" width="0.1952%" height="15" fill="rgb(244,133,0)" fg:x="225711" fg:w="707"/><text x="62.5562%" y="703.50"></text></g><g><title>queued_write_lock_slowpath (672 samples, 0.19%)</title><rect x="62.3158%" y="677" width="0.1855%" height="15" fill="rgb(223,15,50)" fg:x="225746" fg:w="672"/><text x="62.5658%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (245 samples, 0.07%)</title><rect x="62.5082%" y="693" width="0.0676%" height="15" fill="rgb(250,118,49)" fg:x="226443" fg:w="245"/><text x="62.7582%" y="703.50"></text></g><g><title>btrfs_get_64 (40 samples, 0.01%)</title><rect x="62.6007%" y="677" width="0.0110%" height="15" fill="rgb(248,25,38)" fg:x="226778" fg:w="40"/><text x="62.8507%" y="687.50"></text></g><g><title>__radix_tree_lookup (161 samples, 0.04%)</title><rect x="62.6366%" y="661" width="0.0444%" height="15" fill="rgb(215,70,14)" fg:x="226908" fg:w="161"/><text x="62.8866%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (52 samples, 0.01%)</title><rect x="62.6811%" y="661" width="0.0144%" height="15" fill="rgb(215,28,15)" fg:x="227069" fg:w="52"/><text x="62.9311%" y="671.50"></text></g><g><title>mark_page_accessed (40 samples, 0.01%)</title><rect x="62.6844%" y="645" width="0.0110%" height="15" fill="rgb(243,6,28)" fg:x="227081" fg:w="40"/><text x="62.9344%" y="655.50"></text></g><g><title>find_extent_buffer (280 samples, 0.08%)</title><rect x="62.6187%" y="677" width="0.0773%" height="15" fill="rgb(222,130,1)" fg:x="226843" fg:w="280"/><text x="62.8687%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (468 samples, 0.13%)</title><rect x="62.5759%" y="693" width="0.1292%" height="15" fill="rgb(236,166,44)" fg:x="226688" fg:w="468"/><text x="62.8259%" y="703.50"></text></g><g><title>__radix_tree_lookup (59 samples, 0.02%)</title><rect x="62.7255%" y="661" width="0.0163%" height="15" fill="rgb(221,108,14)" fg:x="227230" fg:w="59"/><text x="62.9755%" y="671.50"></text></g><g><title>find_extent_buffer (118 samples, 0.03%)</title><rect x="62.7169%" y="677" width="0.0326%" height="15" fill="rgb(252,3,45)" fg:x="227199" fg:w="118"/><text x="62.9669%" y="687.50"></text></g><g><title>reada_for_balance (189 samples, 0.05%)</title><rect x="62.7051%" y="693" width="0.0522%" height="15" fill="rgb(237,68,30)" fg:x="227156" fg:w="189"/><text x="62.9551%" y="703.50"></text></g><g><title>__list_del_entry_valid (100 samples, 0.03%)</title><rect x="62.7893%" y="629" width="0.0276%" height="15" fill="rgb(211,79,22)" fg:x="227461" fg:w="100"/><text x="63.0393%" y="639.50"></text></g><g><title>_raw_spin_lock (153 samples, 0.04%)</title><rect x="62.9582%" y="613" width="0.0422%" height="15" fill="rgb(252,185,21)" fg:x="228073" fg:w="153"/><text x="63.2082%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (100 samples, 0.03%)</title><rect x="62.9728%" y="597" width="0.0276%" height="15" fill="rgb(225,189,26)" fg:x="228126" fg:w="100"/><text x="63.2228%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (121 samples, 0.03%)</title><rect x="63.0004%" y="613" width="0.0334%" height="15" fill="rgb(241,30,40)" fg:x="228226" fg:w="121"/><text x="63.2504%" y="623.50"></text></g><g><title>available_idle_cpu (169 samples, 0.05%)</title><rect x="63.1028%" y="597" width="0.0467%" height="15" fill="rgb(235,215,44)" fg:x="228597" fg:w="169"/><text x="63.3528%" y="607.50"></text></g><g><title>cpumask_next_wrap (39 samples, 0.01%)</title><rect x="63.1575%" y="597" width="0.0108%" height="15" fill="rgb(205,8,29)" fg:x="228795" fg:w="39"/><text x="63.4075%" y="607.50"></text></g><g><title>select_task_rq_fair (604 samples, 0.17%)</title><rect x="63.0369%" y="613" width="0.1667%" height="15" fill="rgb(241,137,42)" fg:x="228358" fg:w="604"/><text x="63.2869%" y="623.50"></text></g><g><title>update_cfs_rq_h_load (91 samples, 0.03%)</title><rect x="63.1785%" y="597" width="0.0251%" height="15" fill="rgb(237,155,2)" fg:x="228871" fg:w="91"/><text x="63.4285%" y="607.50"></text></g><g><title>set_task_cpu (81 samples, 0.02%)</title><rect x="63.2036%" y="613" width="0.0224%" height="15" fill="rgb(245,29,42)" fg:x="228962" fg:w="81"/><text x="63.4536%" y="623.50"></text></g><g><title>migrate_task_rq_fair (48 samples, 0.01%)</title><rect x="63.2127%" y="597" width="0.0133%" height="15" fill="rgb(234,101,35)" fg:x="228995" fg:w="48"/><text x="63.4627%" y="607.50"></text></g><g><title>reweight_entity (44 samples, 0.01%)</title><rect x="63.3237%" y="565" width="0.0121%" height="15" fill="rgb(228,64,37)" fg:x="229397" fg:w="44"/><text x="63.5737%" y="575.50"></text></g><g><title>update_cfs_group (59 samples, 0.02%)</title><rect x="63.3358%" y="565" width="0.0163%" height="15" fill="rgb(217,214,36)" fg:x="229441" fg:w="59"/><text x="63.5858%" y="575.50"></text></g><g><title>update_curr (68 samples, 0.02%)</title><rect x="63.3521%" y="565" width="0.0188%" height="15" fill="rgb(243,70,3)" fg:x="229500" fg:w="68"/><text x="63.6021%" y="575.50"></text></g><g><title>__update_load_avg_cfs_rq (42 samples, 0.01%)</title><rect x="63.3982%" y="549" width="0.0116%" height="15" fill="rgb(253,158,52)" fg:x="229667" fg:w="42"/><text x="63.6482%" y="559.50"></text></g><g><title>enqueue_entity (549 samples, 0.15%)</title><rect x="63.2693%" y="581" width="0.1515%" height="15" fill="rgb(234,111,54)" fg:x="229200" fg:w="549"/><text x="63.5193%" y="591.50"></text></g><g><title>update_load_avg (181 samples, 0.05%)</title><rect x="63.3709%" y="565" width="0.0500%" height="15" fill="rgb(217,70,32)" fg:x="229568" fg:w="181"/><text x="63.6209%" y="575.50"></text></g><g><title>enqueue_task_fair (715 samples, 0.20%)</title><rect x="63.2389%" y="597" width="0.1974%" height="15" fill="rgb(234,18,33)" fg:x="229090" fg:w="715"/><text x="63.4889%" y="607.50"></text></g><g><title>ttwu_do_activate (1,431 samples, 0.40%)</title><rect x="63.2260%" y="613" width="0.3950%" height="15" fill="rgb(234,12,49)" fg:x="229043" fg:w="1431"/><text x="63.4760%" y="623.50"></text></g><g><title>psi_task_change (667 samples, 0.18%)</title><rect x="63.4369%" y="597" width="0.1841%" height="15" fill="rgb(236,10,21)" fg:x="229807" fg:w="667"/><text x="63.6869%" y="607.50"></text></g><g><title>psi_group_change (600 samples, 0.17%)</title><rect x="63.4554%" y="581" width="0.1656%" height="15" fill="rgb(248,182,45)" fg:x="229874" fg:w="600"/><text x="63.7054%" y="591.50"></text></g><g><title>record_times (100 samples, 0.03%)</title><rect x="63.5934%" y="565" width="0.0276%" height="15" fill="rgb(217,95,36)" fg:x="230374" fg:w="100"/><text x="63.8434%" y="575.50"></text></g><g><title>sched_clock_cpu (66 samples, 0.02%)</title><rect x="63.6028%" y="549" width="0.0182%" height="15" fill="rgb(212,110,31)" fg:x="230408" fg:w="66"/><text x="63.8528%" y="559.50"></text></g><g><title>sched_clock (59 samples, 0.02%)</title><rect x="63.6047%" y="533" width="0.0163%" height="15" fill="rgb(206,32,53)" fg:x="230415" fg:w="59"/><text x="63.8547%" y="543.50"></text></g><g><title>native_sched_clock (54 samples, 0.01%)</title><rect x="63.6061%" y="517" width="0.0149%" height="15" fill="rgb(246,141,37)" fg:x="230420" fg:w="54"/><text x="63.8561%" y="527.50"></text></g><g><title>ttwu_do_wakeup (130 samples, 0.04%)</title><rect x="63.6210%" y="613" width="0.0359%" height="15" fill="rgb(219,16,7)" fg:x="230474" fg:w="130"/><text x="63.8710%" y="623.50"></text></g><g><title>check_preempt_curr (114 samples, 0.03%)</title><rect x="63.6254%" y="597" width="0.0315%" height="15" fill="rgb(230,205,45)" fg:x="230490" fg:w="114"/><text x="63.8754%" y="607.50"></text></g><g><title>resched_curr (46 samples, 0.01%)</title><rect x="63.6442%" y="581" width="0.0127%" height="15" fill="rgb(231,43,49)" fg:x="230558" fg:w="46"/><text x="63.8942%" y="591.50"></text></g><g><title>ttwu_queue_wakelist (57 samples, 0.02%)</title><rect x="63.6569%" y="613" width="0.0157%" height="15" fill="rgb(212,106,34)" fg:x="230604" fg:w="57"/><text x="63.9069%" y="623.50"></text></g><g><title>__wake_up_common (3,369 samples, 0.93%)</title><rect x="62.7760%" y="661" width="0.9300%" height="15" fill="rgb(206,83,17)" fg:x="227413" fg:w="3369"/><text x="63.0260%" y="671.50"></text></g><g><title>autoremove_wake_function (3,328 samples, 0.92%)</title><rect x="62.7873%" y="645" width="0.9187%" height="15" fill="rgb(244,154,49)" fg:x="227454" fg:w="3328"/><text x="63.0373%" y="655.50"></text></g><g><title>try_to_wake_up (3,218 samples, 0.89%)</title><rect x="62.8177%" y="629" width="0.8883%" height="15" fill="rgb(244,149,49)" fg:x="227564" fg:w="3218"/><text x="63.0677%" y="639.50"></text></g><g><title>update_rq_clock (121 samples, 0.03%)</title><rect x="63.6726%" y="613" width="0.0334%" height="15" fill="rgb(227,134,18)" fg:x="230661" fg:w="121"/><text x="63.9226%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (154 samples, 0.04%)</title><rect x="63.7060%" y="661" width="0.0425%" height="15" fill="rgb(237,116,36)" fg:x="230782" fg:w="154"/><text x="63.9560%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (127 samples, 0.04%)</title><rect x="63.7135%" y="645" width="0.0351%" height="15" fill="rgb(205,129,40)" fg:x="230809" fg:w="127"/><text x="63.9635%" y="655.50"></text></g><g><title>__wake_up_common_lock (3,563 samples, 0.98%)</title><rect x="62.7727%" y="677" width="0.9835%" height="15" fill="rgb(236,178,4)" fg:x="227401" fg:w="3563"/><text x="63.0227%" y="687.50"></text></g><g><title>btrfs_search_slot (21,712 samples, 5.99%)</title><rect x="57.7791%" y="709" width="5.9935%" height="15" fill="rgb(251,76,53)" fg:x="209311" fg:w="21712"/><text x="58.0291%" y="719.50">btrfs_se..</text></g><g><title>unlock_up (3,678 samples, 1.02%)</title><rect x="62.7572%" y="693" width="1.0153%" height="15" fill="rgb(242,92,40)" fg:x="227345" fg:w="3678"/><text x="63.0072%" y="703.50"></text></g><g><title>btrfs_tree_unlock (59 samples, 0.02%)</title><rect x="63.7562%" y="677" width="0.0163%" height="15" fill="rgb(209,45,30)" fg:x="230964" fg:w="59"/><text x="64.0062%" y="687.50"></text></g><g><title>alloc_extent_state (76 samples, 0.02%)</title><rect x="63.8214%" y="677" width="0.0210%" height="15" fill="rgb(218,157,36)" fg:x="231200" fg:w="76"/><text x="64.0714%" y="687.50"></text></g><g><title>kmem_cache_alloc (47 samples, 0.01%)</title><rect x="63.8294%" y="661" width="0.0130%" height="15" fill="rgb(222,186,16)" fg:x="231229" fg:w="47"/><text x="64.0794%" y="671.50"></text></g><g><title>lock_extent_bits (256 samples, 0.07%)</title><rect x="63.8010%" y="709" width="0.0707%" height="15" fill="rgb(254,72,35)" fg:x="231126" fg:w="256"/><text x="64.0510%" y="719.50"></text></g><g><title>__set_extent_bit (241 samples, 0.07%)</title><rect x="63.8051%" y="693" width="0.0665%" height="15" fill="rgb(224,25,35)" fg:x="231141" fg:w="241"/><text x="64.0551%" y="703.50"></text></g><g><title>insert_state (83 samples, 0.02%)</title><rect x="63.8487%" y="677" width="0.0229%" height="15" fill="rgb(206,135,52)" fg:x="231299" fg:w="83"/><text x="64.0987%" y="687.50"></text></g><g><title>set_state_bits (50 samples, 0.01%)</title><rect x="63.8578%" y="661" width="0.0138%" height="15" fill="rgb(229,174,47)" fg:x="231332" fg:w="50"/><text x="64.1078%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (27,558 samples, 7.61%)</title><rect x="56.2732%" y="725" width="7.6072%" height="15" fill="rgb(242,184,21)" fg:x="203856" fg:w="27558"/><text x="56.5232%" y="735.50">btrfs_trun..</text></g><g><title>btrfs_block_rsv_migrate (43 samples, 0.01%)</title><rect x="63.8943%" y="709" width="0.0119%" height="15" fill="rgb(213,22,45)" fg:x="231464" fg:w="43"/><text x="64.1443%" y="719.50"></text></g><g><title>_raw_spin_lock (39 samples, 0.01%)</title><rect x="63.8954%" y="693" width="0.0108%" height="15" fill="rgb(237,81,54)" fg:x="231468" fg:w="39"/><text x="64.1454%" y="703.50"></text></g><g><title>btrfs_block_rsv_add_bytes (38 samples, 0.01%)</title><rect x="63.9249%" y="693" width="0.0105%" height="15" fill="rgb(248,177,18)" fg:x="231575" fg:w="38"/><text x="64.1749%" y="703.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (181 samples, 0.05%)</title><rect x="63.9727%" y="661" width="0.0500%" height="15" fill="rgb(254,31,16)" fg:x="231748" fg:w="181"/><text x="64.2227%" y="671.50"></text></g><g><title>btrfs_reduce_alloc_profile (81 samples, 0.02%)</title><rect x="64.0003%" y="645" width="0.0224%" height="15" fill="rgb(235,20,31)" fg:x="231848" fg:w="81"/><text x="64.2503%" y="655.50"></text></g><g><title>btrfs_block_rsv_refill (585 samples, 0.16%)</title><rect x="63.9061%" y="709" width="0.1615%" height="15" fill="rgb(240,56,43)" fg:x="231507" fg:w="585"/><text x="64.1561%" y="719.50"></text></g><g><title>btrfs_reserve_metadata_bytes (479 samples, 0.13%)</title><rect x="63.9354%" y="693" width="0.1322%" height="15" fill="rgb(237,197,51)" fg:x="231613" fg:w="479"/><text x="64.1854%" y="703.50"></text></g><g><title>__reserve_bytes (459 samples, 0.13%)</title><rect x="63.9409%" y="677" width="0.1267%" height="15" fill="rgb(241,162,44)" fg:x="231633" fg:w="459"/><text x="64.1909%" y="687.50"></text></g><g><title>calc_available_free_space.isra.0 (163 samples, 0.04%)</title><rect x="64.0226%" y="661" width="0.0450%" height="15" fill="rgb(224,23,20)" fg:x="231929" fg:w="163"/><text x="64.2726%" y="671.50"></text></g><g><title>btrfs_reduce_alloc_profile (84 samples, 0.02%)</title><rect x="64.0444%" y="645" width="0.0232%" height="15" fill="rgb(250,109,34)" fg:x="232008" fg:w="84"/><text x="64.2944%" y="655.50"></text></g><g><title>join_transaction (80 samples, 0.02%)</title><rect x="64.1063%" y="693" width="0.0221%" height="15" fill="rgb(214,175,50)" fg:x="232232" fg:w="80"/><text x="64.3563%" y="703.50"></text></g><g><title>_raw_spin_lock (41 samples, 0.01%)</title><rect x="64.1170%" y="677" width="0.0113%" height="15" fill="rgb(213,182,5)" fg:x="232271" fg:w="41"/><text x="64.3670%" y="687.50"></text></g><g><title>evict_refill_and_join (1,003 samples, 0.28%)</title><rect x="63.8824%" y="725" width="0.2769%" height="15" fill="rgb(209,199,19)" fg:x="231421" fg:w="1003"/><text x="64.1324%" y="735.50"></text></g><g><title>start_transaction (311 samples, 0.09%)</title><rect x="64.0734%" y="709" width="0.0858%" height="15" fill="rgb(236,224,42)" fg:x="232113" fg:w="311"/><text x="64.3234%" y="719.50"></text></g><g><title>kmem_cache_alloc (112 samples, 0.03%)</title><rect x="64.1283%" y="693" width="0.0309%" height="15" fill="rgb(246,226,29)" fg:x="232312" fg:w="112"/><text x="64.3783%" y="703.50"></text></g><g><title>kfree (97 samples, 0.03%)</title><rect x="64.1609%" y="725" width="0.0268%" height="15" fill="rgb(227,223,11)" fg:x="232430" fg:w="97"/><text x="64.4109%" y="735.50"></text></g><g><title>kmem_cache_free (108 samples, 0.03%)</title><rect x="64.1877%" y="725" width="0.0298%" height="15" fill="rgb(219,7,51)" fg:x="232527" fg:w="108"/><text x="64.4377%" y="735.50"></text></g><g><title>__pagevec_release (49 samples, 0.01%)</title><rect x="64.2352%" y="709" width="0.0135%" height="15" fill="rgb(245,167,10)" fg:x="232699" fg:w="49"/><text x="64.4852%" y="719.50"></text></g><g><title>btrfs_evict_inode (90,587 samples, 25.01%)</title><rect x="39.2513%" y="741" width="25.0060%" height="15" fill="rgb(237,224,16)" fg:x="142192" fg:w="90587"/><text x="39.5013%" y="751.50">btrfs_evict_inode</text></g><g><title>truncate_inode_pages_range (95 samples, 0.03%)</title><rect x="64.2310%" y="725" width="0.0262%" height="15" fill="rgb(226,132,13)" fg:x="232684" fg:w="95"/><text x="64.4810%" y="735.50"></text></g><g><title>evict (90,843 samples, 25.08%)</title><rect x="39.2027%" y="757" width="25.0767%" height="15" fill="rgb(214,140,3)" fg:x="142016" fg:w="90843"/><text x="39.4527%" y="767.50">evict</text></g><g><title>__legitimize_path (55 samples, 0.02%)</title><rect x="64.3036%" y="693" width="0.0152%" height="15" fill="rgb(221,177,4)" fg:x="232947" fg:w="55"/><text x="64.5536%" y="703.50"></text></g><g><title>complete_walk (117 samples, 0.03%)</title><rect x="64.2929%" y="725" width="0.0323%" height="15" fill="rgb(238,139,3)" fg:x="232908" fg:w="117"/><text x="64.5429%" y="735.50"></text></g><g><title>try_to_unlazy (104 samples, 0.03%)</title><rect x="64.2965%" y="709" width="0.0287%" height="15" fill="rgb(216,17,39)" fg:x="232921" fg:w="104"/><text x="64.5465%" y="719.50"></text></g><g><title>inode_permission.part.0 (92 samples, 0.03%)</title><rect x="64.3332%" y="709" width="0.0254%" height="15" fill="rgb(238,120,9)" fg:x="233054" fg:w="92"/><text x="64.5832%" y="719.50"></text></g><g><title>link_path_walk.part.0 (132 samples, 0.04%)</title><rect x="64.3252%" y="725" width="0.0364%" height="15" fill="rgb(244,92,53)" fg:x="233025" fg:w="132"/><text x="64.5752%" y="735.50"></text></g><g><title>__fget_light (132 samples, 0.04%)</title><rect x="64.3760%" y="709" width="0.0364%" height="15" fill="rgb(224,148,33)" fg:x="233209" fg:w="132"/><text x="64.6260%" y="719.50"></text></g><g><title>__fget_files (95 samples, 0.03%)</title><rect x="64.3862%" y="693" width="0.0262%" height="15" fill="rgb(243,6,36)" fg:x="233246" fg:w="95"/><text x="64.6362%" y="703.50"></text></g><g><title>path_init (192 samples, 0.05%)</title><rect x="64.3616%" y="725" width="0.0530%" height="15" fill="rgb(230,102,11)" fg:x="233157" fg:w="192"/><text x="64.6116%" y="735.50"></text></g><g><title>filename_parentat (528 samples, 0.15%)</title><rect x="64.2793%" y="757" width="0.1458%" height="15" fill="rgb(234,148,36)" fg:x="232859" fg:w="528"/><text x="64.5293%" y="767.50"></text></g><g><title>path_parentat (489 samples, 0.13%)</title><rect x="64.2901%" y="741" width="0.1350%" height="15" fill="rgb(251,153,25)" fg:x="232898" fg:w="489"/><text x="64.5401%" y="751.50"></text></g><g><title>terminate_walk (38 samples, 0.01%)</title><rect x="64.4146%" y="725" width="0.0105%" height="15" fill="rgb(215,129,8)" fg:x="233349" fg:w="38"/><text x="64.6646%" y="735.50"></text></g><g><title>ihold (60 samples, 0.02%)</title><rect x="64.4251%" y="757" width="0.0166%" height="15" fill="rgb(224,128,35)" fg:x="233387" fg:w="60"/><text x="64.6751%" y="767.50"></text></g><g><title>iput.part.0 (74 samples, 0.02%)</title><rect x="64.4417%" y="757" width="0.0204%" height="15" fill="rgb(237,56,52)" fg:x="233447" fg:w="74"/><text x="64.6917%" y="767.50"></text></g><g><title>kmem_cache_free (77 samples, 0.02%)</title><rect x="64.4621%" y="757" width="0.0213%" height="15" fill="rgb(234,213,19)" fg:x="233521" fg:w="77"/><text x="64.7121%" y="767.50"></text></g><g><title>mnt_drop_write (41 samples, 0.01%)</title><rect x="64.4833%" y="757" width="0.0113%" height="15" fill="rgb(252,82,23)" fg:x="233598" fg:w="41"/><text x="64.7333%" y="767.50"></text></g><g><title>mnt_want_write (44 samples, 0.01%)</title><rect x="64.4947%" y="757" width="0.0121%" height="15" fill="rgb(254,201,21)" fg:x="233639" fg:w="44"/><text x="64.7447%" y="767.50"></text></g><g><title>putname (64 samples, 0.02%)</title><rect x="64.5134%" y="757" width="0.0177%" height="15" fill="rgb(250,186,11)" fg:x="233707" fg:w="64"/><text x="64.7634%" y="767.50"></text></g><g><title>apparmor_path_unlink (37 samples, 0.01%)</title><rect x="64.5344%" y="741" width="0.0102%" height="15" fill="rgb(211,174,5)" fg:x="233783" fg:w="37"/><text x="64.7844%" y="751.50"></text></g><g><title>security_path_unlink (125 samples, 0.03%)</title><rect x="64.5311%" y="757" width="0.0345%" height="15" fill="rgb(214,121,10)" fg:x="233771" fg:w="125"/><text x="64.7811%" y="767.50"></text></g><g><title>tomoyo_path_unlink (76 samples, 0.02%)</title><rect x="64.5446%" y="741" width="0.0210%" height="15" fill="rgb(241,66,2)" fg:x="233820" fg:w="76"/><text x="64.7946%" y="751.50"></text></g><g><title>tomoyo_path_perm (73 samples, 0.02%)</title><rect x="64.5455%" y="725" width="0.0202%" height="15" fill="rgb(220,167,19)" fg:x="233823" fg:w="73"/><text x="64.7955%" y="735.50"></text></g><g><title>tomoyo_init_request_info (53 samples, 0.01%)</title><rect x="64.5510%" y="709" width="0.0146%" height="15" fill="rgb(231,54,50)" fg:x="233843" fg:w="53"/><text x="64.8010%" y="719.50"></text></g><g><title>tomoyo_domain (37 samples, 0.01%)</title><rect x="64.5554%" y="693" width="0.0102%" height="15" fill="rgb(239,217,53)" fg:x="233859" fg:w="37"/><text x="64.8054%" y="703.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.02%)</title><rect x="64.6404%" y="677" width="0.0177%" height="15" fill="rgb(248,8,0)" fg:x="234167" fg:w="64"/><text x="64.8904%" y="687.50"></text></g><g><title>btrfs_trans_release_metadata (138 samples, 0.04%)</title><rect x="64.6252%" y="709" width="0.0381%" height="15" fill="rgb(229,118,37)" fg:x="234112" fg:w="138"/><text x="64.8752%" y="719.50"></text></g><g><title>btrfs_block_rsv_release (125 samples, 0.03%)</title><rect x="64.6288%" y="693" width="0.0345%" height="15" fill="rgb(253,223,43)" fg:x="234125" fg:w="125"/><text x="64.8788%" y="703.50"></text></g><g><title>__btrfs_end_transaction (327 samples, 0.09%)</title><rect x="64.5921%" y="725" width="0.0903%" height="15" fill="rgb(211,77,36)" fg:x="233992" fg:w="327"/><text x="64.8421%" y="735.50"></text></g><g><title>kmem_cache_free (69 samples, 0.02%)</title><rect x="64.6633%" y="709" width="0.0190%" height="15" fill="rgb(219,3,53)" fg:x="234250" fg:w="69"/><text x="64.9133%" y="719.50"></text></g><g><title>btrfs_free_path (58 samples, 0.02%)</title><rect x="64.7351%" y="693" width="0.0160%" height="15" fill="rgb(244,45,42)" fg:x="234510" fg:w="58"/><text x="64.9851%" y="703.50"></text></g><g><title>btrfs_release_path (53 samples, 0.01%)</title><rect x="64.7365%" y="677" width="0.0146%" height="15" fill="rgb(225,95,27)" fg:x="234515" fg:w="53"/><text x="64.9865%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (43 samples, 0.01%)</title><rect x="64.7947%" y="661" width="0.0119%" height="15" fill="rgb(207,74,8)" fg:x="234726" fg:w="43"/><text x="65.0447%" y="671.50"></text></g><g><title>find_extent_buffer (47 samples, 0.01%)</title><rect x="64.8176%" y="645" width="0.0130%" height="15" fill="rgb(243,63,36)" fg:x="234809" fg:w="47"/><text x="65.0676%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (102 samples, 0.03%)</title><rect x="64.8066%" y="661" width="0.0282%" height="15" fill="rgb(211,180,12)" fg:x="234769" fg:w="102"/><text x="65.0566%" y="671.50"></text></g><g><title>btrfs_lookup_dir_index_item (325 samples, 0.09%)</title><rect x="64.7511%" y="693" width="0.0897%" height="15" fill="rgb(254,166,49)" fg:x="234568" fg:w="325"/><text x="65.0011%" y="703.50"></text></g><g><title>btrfs_search_slot (316 samples, 0.09%)</title><rect x="64.7536%" y="677" width="0.0872%" height="15" fill="rgb(205,19,0)" fg:x="234577" fg:w="316"/><text x="65.0036%" y="687.50"></text></g><g><title>find_extent_buffer (66 samples, 0.02%)</title><rect x="64.9087%" y="645" width="0.0182%" height="15" fill="rgb(224,172,32)" fg:x="235139" fg:w="66"/><text x="65.1587%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (115 samples, 0.03%)</title><rect x="64.8996%" y="661" width="0.0317%" height="15" fill="rgb(254,136,30)" fg:x="235106" fg:w="115"/><text x="65.1496%" y="671.50"></text></g><g><title>btrfs_search_slot (328 samples, 0.09%)</title><rect x="64.8455%" y="677" width="0.0905%" height="15" fill="rgb(246,19,35)" fg:x="234910" fg:w="328"/><text x="65.0955%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (362 samples, 0.10%)</title><rect x="64.8408%" y="693" width="0.0999%" height="15" fill="rgb(219,24,36)" fg:x="234893" fg:w="362"/><text x="65.0908%" y="703.50"></text></g><g><title>btrfs_release_path (60 samples, 0.02%)</title><rect x="64.9407%" y="693" width="0.0166%" height="15" fill="rgb(251,55,1)" fg:x="235255" fg:w="60"/><text x="65.1907%" y="703.50"></text></g><g><title>btrfs_del_dir_entries_in_log (934 samples, 0.26%)</title><rect x="64.7144%" y="709" width="0.2578%" height="15" fill="rgb(218,117,39)" fg:x="234435" fg:w="934"/><text x="64.9644%" y="719.50"></text></g><g><title>btrfs_free_path (141 samples, 0.04%)</title><rect x="64.9833%" y="677" width="0.0389%" height="15" fill="rgb(248,169,11)" fg:x="235409" fg:w="141"/><text x="65.2333%" y="687.50"></text></g><g><title>btrfs_release_path (129 samples, 0.04%)</title><rect x="64.9866%" y="661" width="0.0356%" height="15" fill="rgb(244,40,44)" fg:x="235421" fg:w="129"/><text x="65.2366%" y="671.50"></text></g><g><title>__btrfs_read_lock_root_node (112 samples, 0.03%)</title><rect x="65.0617%" y="661" width="0.0309%" height="15" fill="rgb(234,62,37)" fg:x="235693" fg:w="112"/><text x="65.3117%" y="671.50"></text></g><g><title>btrfs_root_node (76 samples, 0.02%)</title><rect x="65.0716%" y="645" width="0.0210%" height="15" fill="rgb(207,117,42)" fg:x="235729" fg:w="76"/><text x="65.3216%" y="655.50"></text></g><g><title>balance_level (46 samples, 0.01%)</title><rect x="65.0928%" y="661" width="0.0127%" height="15" fill="rgb(213,43,2)" fg:x="235806" fg:w="46"/><text x="65.3428%" y="671.50"></text></g><g><title>btrfs_lock_root_node (50 samples, 0.01%)</title><rect x="65.1078%" y="661" width="0.0138%" height="15" fill="rgb(244,202,51)" fg:x="235860" fg:w="50"/><text x="65.3578%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (43 samples, 0.01%)</title><rect x="65.1216%" y="661" width="0.0119%" height="15" fill="rgb(253,174,46)" fg:x="235910" fg:w="43"/><text x="65.3716%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (120 samples, 0.03%)</title><rect x="65.1483%" y="661" width="0.0331%" height="15" fill="rgb(251,23,1)" fg:x="236007" fg:w="120"/><text x="65.3983%" y="671.50"></text></g><g><title>__radix_tree_lookup (86 samples, 0.02%)</title><rect x="65.2149%" y="629" width="0.0237%" height="15" fill="rgb(253,26,1)" fg:x="236248" fg:w="86"/><text x="65.4649%" y="639.50"></text></g><g><title>find_extent_buffer (177 samples, 0.05%)</title><rect x="65.2033%" y="645" width="0.0489%" height="15" fill="rgb(216,89,31)" fg:x="236206" fg:w="177"/><text x="65.4533%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (49 samples, 0.01%)</title><rect x="65.2386%" y="629" width="0.0135%" height="15" fill="rgb(209,109,5)" fg:x="236334" fg:w="49"/><text x="65.4886%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (290 samples, 0.08%)</title><rect x="65.1815%" y="661" width="0.0801%" height="15" fill="rgb(229,63,13)" fg:x="236127" fg:w="290"/><text x="65.4315%" y="671.50"></text></g><g><title>btrfs_search_slot (907 samples, 0.25%)</title><rect x="65.0222%" y="677" width="0.2504%" height="15" fill="rgb(238,137,54)" fg:x="235550" fg:w="907"/><text x="65.2722%" y="687.50"></text></g><g><title>crc32c (60 samples, 0.02%)</title><rect x="65.2726%" y="677" width="0.0166%" height="15" fill="rgb(228,1,9)" fg:x="236457" fg:w="60"/><text x="65.5226%" y="687.50"></text></g><g><title>kmem_cache_alloc (93 samples, 0.03%)</title><rect x="65.2891%" y="677" width="0.0257%" height="15" fill="rgb(249,120,48)" fg:x="236517" fg:w="93"/><text x="65.5391%" y="687.50"></text></g><g><title>btrfs_del_inode_ref (1,285 samples, 0.35%)</title><rect x="64.9777%" y="693" width="0.3547%" height="15" fill="rgb(209,72,36)" fg:x="235389" fg:w="1285"/><text x="65.2277%" y="703.50"></text></g><g><title>kmem_cache_free (64 samples, 0.02%)</title><rect x="65.3148%" y="677" width="0.0177%" height="15" fill="rgb(247,98,49)" fg:x="236610" fg:w="64"/><text x="65.5648%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (1,374 samples, 0.38%)</title><rect x="64.9722%" y="709" width="0.3793%" height="15" fill="rgb(233,75,36)" fg:x="235369" fg:w="1374"/><text x="65.2222%" y="719.50"></text></g><g><title>_find_next_bit.constprop.0 (226 samples, 0.06%)</title><rect x="65.4153%" y="629" width="0.0624%" height="15" fill="rgb(225,14,24)" fg:x="236974" fg:w="226"/><text x="65.6653%" y="639.50"></text></g><g><title>steal_from_bitmap.part.0 (277 samples, 0.08%)</title><rect x="65.4056%" y="645" width="0.0765%" height="15" fill="rgb(237,193,20)" fg:x="236939" fg:w="277"/><text x="65.6556%" y="655.50"></text></g><g><title>__btrfs_add_free_space (289 samples, 0.08%)</title><rect x="65.4039%" y="661" width="0.0798%" height="15" fill="rgb(239,122,19)" fg:x="236933" fg:w="289"/><text x="65.6539%" y="671.50"></text></g><g><title>btrfs_free_tree_block (309 samples, 0.09%)</title><rect x="65.4039%" y="677" width="0.0853%" height="15" fill="rgb(231,220,10)" fg:x="236933" fg:w="309"/><text x="65.6539%" y="687.50"></text></g><g><title>btrfs_del_leaf (317 samples, 0.09%)</title><rect x="65.4039%" y="693" width="0.0875%" height="15" fill="rgb(220,66,15)" fg:x="236933" fg:w="317"/><text x="65.6539%" y="703.50"></text></g><g><title>btrfs_get_32 (47 samples, 0.01%)</title><rect x="65.4915%" y="693" width="0.0130%" height="15" fill="rgb(215,171,52)" fg:x="237250" fg:w="47"/><text x="65.7415%" y="703.50"></text></g><g><title>btrfs_get_token_32 (660 samples, 0.18%)</title><rect x="65.5044%" y="693" width="0.1822%" height="15" fill="rgb(241,169,50)" fg:x="237297" fg:w="660"/><text x="65.7544%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (83 samples, 0.02%)</title><rect x="65.6637%" y="677" width="0.0229%" height="15" fill="rgb(236,189,0)" fg:x="237874" fg:w="83"/><text x="65.9137%" y="687.50"></text></g><g><title>btrfs_mark_buffer_dirty (50 samples, 0.01%)</title><rect x="65.6866%" y="693" width="0.0138%" height="15" fill="rgb(217,147,20)" fg:x="237957" fg:w="50"/><text x="65.9366%" y="703.50"></text></g><g><title>btrfs_set_token_32 (513 samples, 0.14%)</title><rect x="65.7010%" y="693" width="0.1416%" height="15" fill="rgb(206,188,39)" fg:x="238009" fg:w="513"/><text x="65.9510%" y="703.50"></text></g><g><title>check_setget_bounds.isra.0 (73 samples, 0.02%)</title><rect x="65.8224%" y="677" width="0.0202%" height="15" fill="rgb(227,118,25)" fg:x="238449" fg:w="73"/><text x="66.0724%" y="687.50"></text></g><g><title>memcpy_extent_buffer (89 samples, 0.02%)</title><rect x="65.8514%" y="693" width="0.0246%" height="15" fill="rgb(248,171,40)" fg:x="238554" fg:w="89"/><text x="66.1014%" y="703.50"></text></g><g><title>memmove (62 samples, 0.02%)</title><rect x="65.8589%" y="677" width="0.0171%" height="15" fill="rgb(251,90,54)" fg:x="238581" fg:w="62"/><text x="66.1089%" y="687.50"></text></g><g><title>copy_pages (50 samples, 0.01%)</title><rect x="65.8851%" y="677" width="0.0138%" height="15" fill="rgb(234,11,46)" fg:x="238676" fg:w="50"/><text x="66.1351%" y="687.50"></text></g><g><title>memmove_extent_buffer (416 samples, 0.11%)</title><rect x="65.8760%" y="693" width="0.1148%" height="15" fill="rgb(229,134,13)" fg:x="238643" fg:w="416"/><text x="66.1260%" y="703.50"></text></g><g><title>memmove (333 samples, 0.09%)</title><rect x="65.8989%" y="677" width="0.0919%" height="15" fill="rgb(223,129,3)" fg:x="238726" fg:w="333"/><text x="66.1489%" y="687.50"></text></g><g><title>btrfs_del_items (2,364 samples, 0.65%)</title><rect x="65.3515%" y="709" width="0.6526%" height="15" fill="rgb(221,124,13)" fg:x="236743" fg:w="2364"/><text x="65.6015%" y="719.50"></text></g><g><title>__list_add_valid (39 samples, 0.01%)</title><rect x="66.0295%" y="677" width="0.0108%" height="15" fill="rgb(234,3,18)" fg:x="239199" fg:w="39"/><text x="66.2795%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (111 samples, 0.03%)</title><rect x="66.0157%" y="693" width="0.0306%" height="15" fill="rgb(249,199,20)" fg:x="239149" fg:w="111"/><text x="66.2657%" y="703.50"></text></g><g><title>btrfs_get_or_create_delayed_node (101 samples, 0.03%)</title><rect x="66.0463%" y="693" width="0.0279%" height="15" fill="rgb(224,134,6)" fg:x="239260" fg:w="101"/><text x="66.2963%" y="703.50"></text></g><g><title>btrfs_get_delayed_node (98 samples, 0.03%)</title><rect x="66.0471%" y="677" width="0.0271%" height="15" fill="rgb(254,83,26)" fg:x="239263" fg:w="98"/><text x="66.2971%" y="687.50"></text></g><g><title>mutex_lock (38 samples, 0.01%)</title><rect x="66.0742%" y="693" width="0.0105%" height="15" fill="rgb(217,88,9)" fg:x="239361" fg:w="38"/><text x="66.3242%" y="703.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (301 samples, 0.08%)</title><rect x="66.0041%" y="709" width="0.0831%" height="15" fill="rgb(225,73,2)" fg:x="239107" fg:w="301"/><text x="66.2541%" y="719.50"></text></g><g><title>btrfs_comp_cpu_keys (97 samples, 0.03%)</title><rect x="66.0971%" y="677" width="0.0268%" height="15" fill="rgb(226,44,39)" fg:x="239444" fg:w="97"/><text x="66.3471%" y="687.50"></text></g><g><title>__btrfs_add_delayed_item (148 samples, 0.04%)</title><rect x="66.0899%" y="693" width="0.0409%" height="15" fill="rgb(228,53,17)" fg:x="239418" fg:w="148"/><text x="66.3399%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (74 samples, 0.02%)</title><rect x="66.1308%" y="693" width="0.0204%" height="15" fill="rgb(212,27,27)" fg:x="239566" fg:w="74"/><text x="66.3808%" y="703.50"></text></g><g><title>mutex_spin_on_owner (56 samples, 0.02%)</title><rect x="66.1523%" y="677" width="0.0155%" height="15" fill="rgb(241,50,6)" fg:x="239644" fg:w="56"/><text x="66.4023%" y="687.50"></text></g><g><title>__mutex_lock.constprop.0 (97 samples, 0.03%)</title><rect x="66.1512%" y="693" width="0.0268%" height="15" fill="rgb(225,28,51)" fg:x="239640" fg:w="97"/><text x="66.4012%" y="703.50"></text></g><g><title>schedule_preempt_disabled (37 samples, 0.01%)</title><rect x="66.1678%" y="677" width="0.0102%" height="15" fill="rgb(215,33,16)" fg:x="239700" fg:w="37"/><text x="66.4178%" y="687.50"></text></g><g><title>schedule (37 samples, 0.01%)</title><rect x="66.1678%" y="661" width="0.0102%" height="15" fill="rgb(243,40,39)" fg:x="239700" fg:w="37"/><text x="66.4178%" y="671.50"></text></g><g><title>__schedule (37 samples, 0.01%)</title><rect x="66.1678%" y="645" width="0.0102%" height="15" fill="rgb(225,11,42)" fg:x="239700" fg:w="37"/><text x="66.4178%" y="655.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (79 samples, 0.02%)</title><rect x="66.1805%" y="693" width="0.0218%" height="15" fill="rgb(241,220,38)" fg:x="239746" fg:w="79"/><text x="66.4305%" y="703.50"></text></g><g><title>btrfs_block_rsv_migrate (60 samples, 0.02%)</title><rect x="66.1857%" y="677" width="0.0166%" height="15" fill="rgb(244,52,35)" fg:x="239765" fg:w="60"/><text x="66.4357%" y="687.50"></text></g><g><title>_raw_spin_lock (42 samples, 0.01%)</title><rect x="66.1907%" y="661" width="0.0116%" height="15" fill="rgb(246,42,46)" fg:x="239783" fg:w="42"/><text x="66.4407%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (81 samples, 0.02%)</title><rect x="66.2117%" y="693" width="0.0224%" height="15" fill="rgb(205,184,13)" fg:x="239859" fg:w="81"/><text x="66.4617%" y="703.50"></text></g><g><title>btrfs_delete_delayed_dir_index (565 samples, 0.16%)</title><rect x="66.0872%" y="709" width="0.1560%" height="15" fill="rgb(209,48,36)" fg:x="239408" fg:w="565"/><text x="66.3372%" y="719.50"></text></g><g><title>btrfs_delete_one_dir_name (44 samples, 0.01%)</title><rect x="66.2431%" y="709" width="0.0121%" height="15" fill="rgb(244,34,51)" fg:x="239973" fg:w="44"/><text x="66.4931%" y="719.50"></text></g><g><title>btrfs_get_16 (64 samples, 0.02%)</title><rect x="66.2798%" y="677" width="0.0177%" height="15" fill="rgb(221,107,33)" fg:x="240106" fg:w="64"/><text x="66.5298%" y="687.50"></text></g><g><title>btrfs_match_dir_item_name (220 samples, 0.06%)</title><rect x="66.2674%" y="693" width="0.0607%" height="15" fill="rgb(224,203,12)" fg:x="240061" fg:w="220"/><text x="66.5174%" y="703.50"></text></g><g><title>memcmp_extent_buffer (79 samples, 0.02%)</title><rect x="66.3063%" y="677" width="0.0218%" height="15" fill="rgb(230,215,18)" fg:x="240202" fg:w="79"/><text x="66.5563%" y="687.50"></text></g><g><title>memcmp (52 samples, 0.01%)</title><rect x="66.3138%" y="661" width="0.0144%" height="15" fill="rgb(206,185,35)" fg:x="240229" fg:w="52"/><text x="66.5638%" y="671.50"></text></g><g><title>_raw_read_lock (44 samples, 0.01%)</title><rect x="66.4181%" y="645" width="0.0121%" height="15" fill="rgb(228,140,34)" fg:x="240607" fg:w="44"/><text x="66.6681%" y="655.50"></text></g><g><title>finish_wait (271 samples, 0.07%)</title><rect x="66.4308%" y="645" width="0.0748%" height="15" fill="rgb(208,93,13)" fg:x="240653" fg:w="271"/><text x="66.6808%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (258 samples, 0.07%)</title><rect x="66.4344%" y="629" width="0.0712%" height="15" fill="rgb(221,193,39)" fg:x="240666" fg:w="258"/><text x="66.6844%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (240 samples, 0.07%)</title><rect x="66.4394%" y="613" width="0.0663%" height="15" fill="rgb(241,132,34)" fg:x="240684" fg:w="240"/><text x="66.6894%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (1,150 samples, 0.32%)</title><rect x="66.5308%" y="629" width="0.3175%" height="15" fill="rgb(221,141,10)" fg:x="241015" fg:w="1150"/><text x="66.7808%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,120 samples, 0.31%)</title><rect x="66.5390%" y="613" width="0.3092%" height="15" fill="rgb(226,90,31)" fg:x="241045" fg:w="1120"/><text x="66.7890%" y="623.50"></text></g><g><title>prepare_to_wait_event (1,249 samples, 0.34%)</title><rect x="66.5059%" y="645" width="0.3448%" height="15" fill="rgb(243,75,5)" fg:x="240925" fg:w="1249"/><text x="66.7559%" y="655.50"></text></g><g><title>queued_read_lock_slowpath (347 samples, 0.10%)</title><rect x="66.8507%" y="645" width="0.0958%" height="15" fill="rgb(227,156,21)" fg:x="242174" fg:w="347"/><text x="67.1007%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (217 samples, 0.06%)</title><rect x="66.8866%" y="629" width="0.0599%" height="15" fill="rgb(250,195,8)" fg:x="242304" fg:w="217"/><text x="67.1366%" y="639.50"></text></g><g><title>update_curr (48 samples, 0.01%)</title><rect x="66.9934%" y="581" width="0.0133%" height="15" fill="rgb(220,134,5)" fg:x="242691" fg:w="48"/><text x="67.2434%" y="591.50"></text></g><g><title>dequeue_entity (142 samples, 0.04%)</title><rect x="66.9807%" y="597" width="0.0392%" height="15" fill="rgb(246,106,34)" fg:x="242645" fg:w="142"/><text x="67.2307%" y="607.50"></text></g><g><title>update_load_avg (48 samples, 0.01%)</title><rect x="67.0067%" y="581" width="0.0133%" height="15" fill="rgb(205,1,4)" fg:x="242739" fg:w="48"/><text x="67.2567%" y="591.50"></text></g><g><title>dequeue_task_fair (173 samples, 0.05%)</title><rect x="66.9763%" y="613" width="0.0478%" height="15" fill="rgb(224,151,29)" fg:x="242629" fg:w="173"/><text x="67.2263%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (117 samples, 0.03%)</title><rect x="67.0315%" y="597" width="0.0323%" height="15" fill="rgb(251,196,0)" fg:x="242829" fg:w="117"/><text x="67.2815%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (111 samples, 0.03%)</title><rect x="67.0332%" y="581" width="0.0306%" height="15" fill="rgb(212,127,0)" fg:x="242835" fg:w="111"/><text x="67.2832%" y="591.50"></text></g><g><title>native_write_msr (109 samples, 0.03%)</title><rect x="67.0337%" y="565" width="0.0301%" height="15" fill="rgb(236,71,53)" fg:x="242837" fg:w="109"/><text x="67.2837%" y="575.50"></text></g><g><title>finish_task_switch (147 samples, 0.04%)</title><rect x="67.0241%" y="613" width="0.0406%" height="15" fill="rgb(227,99,0)" fg:x="242802" fg:w="147"/><text x="67.2741%" y="623.50"></text></g><g><title>pick_next_task_fair (51 samples, 0.01%)</title><rect x="67.0646%" y="613" width="0.0141%" height="15" fill="rgb(239,89,21)" fg:x="242949" fg:w="51"/><text x="67.3146%" y="623.50"></text></g><g><title>psi_task_change (118 samples, 0.03%)</title><rect x="67.0853%" y="613" width="0.0326%" height="15" fill="rgb(243,122,19)" fg:x="243024" fg:w="118"/><text x="67.3353%" y="623.50"></text></g><g><title>psi_group_change (100 samples, 0.03%)</title><rect x="67.0903%" y="597" width="0.0276%" height="15" fill="rgb(229,192,45)" fg:x="243042" fg:w="100"/><text x="67.3403%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (2,642 samples, 0.73%)</title><rect x="66.4038%" y="661" width="0.7293%" height="15" fill="rgb(235,165,35)" fg:x="240555" fg:w="2642"/><text x="66.6538%" y="671.50"></text></g><g><title>schedule (676 samples, 0.19%)</title><rect x="66.9465%" y="645" width="0.1866%" height="15" fill="rgb(253,202,0)" fg:x="242521" fg:w="676"/><text x="67.1965%" y="655.50"></text></g><g><title>__schedule (666 samples, 0.18%)</title><rect x="66.9492%" y="629" width="0.1838%" height="15" fill="rgb(235,51,20)" fg:x="242531" fg:w="666"/><text x="67.1992%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (2,713 samples, 0.75%)</title><rect x="66.4002%" y="677" width="0.7489%" height="15" fill="rgb(218,95,46)" fg:x="240542" fg:w="2713"/><text x="66.6502%" y="687.50"></text></g><g><title>btrfs_root_node (58 samples, 0.02%)</title><rect x="67.1331%" y="661" width="0.0160%" height="15" fill="rgb(212,81,10)" fg:x="243197" fg:w="58"/><text x="67.3831%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (43 samples, 0.01%)</title><rect x="67.1676%" y="645" width="0.0119%" height="15" fill="rgb(240,59,0)" fg:x="243322" fg:w="43"/><text x="67.4176%" y="655.50"></text></g><g><title>prepare_to_wait_event (70 samples, 0.02%)</title><rect x="67.1612%" y="661" width="0.0193%" height="15" fill="rgb(212,191,42)" fg:x="243299" fg:w="70"/><text x="67.4112%" y="671.50"></text></g><g><title>__perf_event_task_sched_out (38 samples, 0.01%)</title><rect x="67.1988%" y="629" width="0.0105%" height="15" fill="rgb(233,140,3)" fg:x="243435" fg:w="38"/><text x="67.4488%" y="639.50"></text></g><g><title>update_curr (61 samples, 0.02%)</title><rect x="67.2308%" y="597" width="0.0168%" height="15" fill="rgb(215,69,23)" fg:x="243551" fg:w="61"/><text x="67.4808%" y="607.50"></text></g><g><title>dequeue_entity (162 samples, 0.04%)</title><rect x="67.2165%" y="613" width="0.0447%" height="15" fill="rgb(240,202,20)" fg:x="243499" fg:w="162"/><text x="67.4665%" y="623.50"></text></g><g><title>update_load_avg (49 samples, 0.01%)</title><rect x="67.2476%" y="597" width="0.0135%" height="15" fill="rgb(209,146,50)" fg:x="243612" fg:w="49"/><text x="67.4976%" y="607.50"></text></g><g><title>dequeue_task_fair (206 samples, 0.06%)</title><rect x="67.2118%" y="629" width="0.0569%" height="15" fill="rgb(253,102,54)" fg:x="243482" fg:w="206"/><text x="67.4618%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (204 samples, 0.06%)</title><rect x="67.2775%" y="613" width="0.0563%" height="15" fill="rgb(250,173,47)" fg:x="243720" fg:w="204"/><text x="67.5275%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (199 samples, 0.05%)</title><rect x="67.2788%" y="597" width="0.0549%" height="15" fill="rgb(232,142,7)" fg:x="243725" fg:w="199"/><text x="67.5288%" y="607.50"></text></g><g><title>native_write_msr (194 samples, 0.05%)</title><rect x="67.2802%" y="581" width="0.0536%" height="15" fill="rgb(230,157,47)" fg:x="243730" fg:w="194"/><text x="67.5302%" y="591.50"></text></g><g><title>finish_task_switch (243 samples, 0.07%)</title><rect x="67.2686%" y="629" width="0.0671%" height="15" fill="rgb(214,177,35)" fg:x="243688" fg:w="243"/><text x="67.5186%" y="639.50"></text></g><g><title>pick_next_task_fair (46 samples, 0.01%)</title><rect x="67.3357%" y="629" width="0.0127%" height="15" fill="rgb(234,119,46)" fg:x="243931" fg:w="46"/><text x="67.5857%" y="639.50"></text></g><g><title>psi_task_change (187 samples, 0.05%)</title><rect x="67.3572%" y="629" width="0.0516%" height="15" fill="rgb(241,180,50)" fg:x="244009" fg:w="187"/><text x="67.6072%" y="639.50"></text></g><g><title>psi_group_change (151 samples, 0.04%)</title><rect x="67.3672%" y="613" width="0.0417%" height="15" fill="rgb(221,54,25)" fg:x="244045" fg:w="151"/><text x="67.6172%" y="623.50"></text></g><g><title>psi_task_switch (37 samples, 0.01%)</title><rect x="67.4089%" y="629" width="0.0102%" height="15" fill="rgb(209,157,44)" fg:x="244196" fg:w="37"/><text x="67.6589%" y="639.50"></text></g><g><title>__schedule (889 samples, 0.25%)</title><rect x="67.1828%" y="645" width="0.2454%" height="15" fill="rgb(246,115,41)" fg:x="243377" fg:w="889"/><text x="67.4328%" y="655.50"></text></g><g><title>__btrfs_tree_lock (1,012 samples, 0.28%)</title><rect x="67.1491%" y="677" width="0.2794%" height="15" fill="rgb(229,86,1)" fg:x="243255" fg:w="1012"/><text x="67.3991%" y="687.50"></text></g><g><title>schedule (898 samples, 0.25%)</title><rect x="67.1806%" y="661" width="0.2479%" height="15" fill="rgb(240,108,53)" fg:x="243369" fg:w="898"/><text x="67.4306%" y="671.50"></text></g><g><title>_cond_resched (43 samples, 0.01%)</title><rect x="67.4895%" y="645" width="0.0119%" height="15" fill="rgb(227,134,2)" fg:x="244488" fg:w="43"/><text x="67.7395%" y="655.50"></text></g><g><title>_raw_write_lock (99 samples, 0.03%)</title><rect x="67.5024%" y="645" width="0.0273%" height="15" fill="rgb(213,129,25)" fg:x="244535" fg:w="99"/><text x="67.7524%" y="655.50"></text></g><g><title>__list_del_entry_valid (56 samples, 0.02%)</title><rect x="67.5325%" y="629" width="0.0155%" height="15" fill="rgb(226,35,21)" fg:x="244644" fg:w="56"/><text x="67.7825%" y="639.50"></text></g><g><title>finish_wait (1,254 samples, 0.35%)</title><rect x="67.5298%" y="645" width="0.3462%" height="15" fill="rgb(208,129,26)" fg:x="244634" fg:w="1254"/><text x="67.7798%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (1,188 samples, 0.33%)</title><rect x="67.5480%" y="629" width="0.3279%" height="15" fill="rgb(224,83,6)" fg:x="244700" fg:w="1188"/><text x="67.7980%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,122 samples, 0.31%)</title><rect x="67.5662%" y="613" width="0.3097%" height="15" fill="rgb(227,52,39)" fg:x="244766" fg:w="1122"/><text x="67.8162%" y="623.50"></text></g><g><title>__list_add_valid (104 samples, 0.03%)</title><rect x="67.9538%" y="629" width="0.0287%" height="15" fill="rgb(241,30,17)" fg:x="246170" fg:w="104"/><text x="68.2038%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (4,157 samples, 1.15%)</title><rect x="67.9825%" y="629" width="1.1475%" height="15" fill="rgb(246,186,42)" fg:x="246274" fg:w="4157"/><text x="68.2325%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,955 samples, 1.09%)</title><rect x="68.0382%" y="613" width="1.0918%" height="15" fill="rgb(221,169,15)" fg:x="246476" fg:w="3955"/><text x="68.2882%" y="623.50"></text></g><g><title>prepare_to_wait_event (4,612 samples, 1.27%)</title><rect x="67.8779%" y="645" width="1.2731%" height="15" fill="rgb(235,108,21)" fg:x="245895" fg:w="4612"/><text x="68.1279%" y="655.50"></text></g><g><title>_raw_spin_unlock_irqrestore (76 samples, 0.02%)</title><rect x="69.1300%" y="629" width="0.0210%" height="15" fill="rgb(219,148,30)" fg:x="250431" fg:w="76"/><text x="69.3800%" y="639.50"></text></g><g><title>queued_write_lock_slowpath (1,619 samples, 0.45%)</title><rect x="69.1510%" y="645" width="0.4469%" height="15" fill="rgb(220,109,5)" fg:x="250507" fg:w="1619"/><text x="69.4010%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (899 samples, 0.25%)</title><rect x="69.3497%" y="629" width="0.2482%" height="15" fill="rgb(213,203,48)" fg:x="251227" fg:w="899"/><text x="69.5997%" y="639.50"></text></g><g><title>_raw_spin_lock (48 samples, 0.01%)</title><rect x="69.6724%" y="597" width="0.0133%" height="15" fill="rgb(244,71,33)" fg:x="252396" fg:w="48"/><text x="69.9224%" y="607.50"></text></g><g><title>__perf_event_task_sched_out (119 samples, 0.03%)</title><rect x="69.6548%" y="613" width="0.0328%" height="15" fill="rgb(209,23,2)" fg:x="252332" fg:w="119"/><text x="69.9048%" y="623.50"></text></g><g><title>_raw_spin_lock (44 samples, 0.01%)</title><rect x="69.6917%" y="613" width="0.0121%" height="15" fill="rgb(219,97,7)" fg:x="252466" fg:w="44"/><text x="69.9417%" y="623.50"></text></g><g><title>update_cfs_group (66 samples, 0.02%)</title><rect x="69.7566%" y="581" width="0.0182%" height="15" fill="rgb(216,161,23)" fg:x="252701" fg:w="66"/><text x="70.0066%" y="591.50"></text></g><g><title>__calc_delta (47 samples, 0.01%)</title><rect x="69.8027%" y="565" width="0.0130%" height="15" fill="rgb(207,45,42)" fg:x="252868" fg:w="47"/><text x="70.0527%" y="575.50"></text></g><g><title>update_curr (219 samples, 0.06%)</title><rect x="69.7748%" y="581" width="0.0605%" height="15" fill="rgb(241,61,4)" fg:x="252767" fg:w="219"/><text x="70.0248%" y="591.50"></text></g><g><title>__update_load_avg_cfs_rq (68 samples, 0.02%)</title><rect x="69.8596%" y="565" width="0.0188%" height="15" fill="rgb(236,170,1)" fg:x="253074" fg:w="68"/><text x="70.1096%" y="575.50"></text></g><g><title>__update_load_avg_se (80 samples, 0.02%)</title><rect x="69.8783%" y="565" width="0.0221%" height="15" fill="rgb(239,72,5)" fg:x="253142" fg:w="80"/><text x="70.1283%" y="575.50"></text></g><g><title>dequeue_entity (663 samples, 0.18%)</title><rect x="69.7205%" y="597" width="0.1830%" height="15" fill="rgb(214,13,50)" fg:x="252570" fg:w="663"/><text x="69.9705%" y="607.50"></text></g><g><title>update_load_avg (247 samples, 0.07%)</title><rect x="69.8353%" y="581" width="0.0682%" height="15" fill="rgb(224,88,9)" fg:x="252986" fg:w="247"/><text x="70.0853%" y="591.50"></text></g><g><title>dequeue_task_fair (775 samples, 0.21%)</title><rect x="69.7039%" y="613" width="0.2139%" height="15" fill="rgb(238,192,34)" fg:x="252510" fg:w="775"/><text x="69.9539%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (692 samples, 0.19%)</title><rect x="69.9532%" y="597" width="0.1910%" height="15" fill="rgb(217,203,50)" fg:x="253413" fg:w="692"/><text x="70.2032%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (670 samples, 0.18%)</title><rect x="69.9592%" y="581" width="0.1849%" height="15" fill="rgb(241,123,32)" fg:x="253435" fg:w="670"/><text x="70.2092%" y="591.50"></text></g><g><title>native_write_msr (661 samples, 0.18%)</title><rect x="69.9617%" y="565" width="0.1825%" height="15" fill="rgb(248,151,39)" fg:x="253444" fg:w="661"/><text x="70.2117%" y="575.50"></text></g><g><title>finish_task_switch (859 samples, 0.24%)</title><rect x="69.9178%" y="613" width="0.2371%" height="15" fill="rgb(208,89,6)" fg:x="253285" fg:w="859"/><text x="70.1678%" y="623.50"></text></g><g><title>newidle_balance (66 samples, 0.02%)</title><rect x="70.1616%" y="597" width="0.0182%" height="15" fill="rgb(254,43,26)" fg:x="254168" fg:w="66"/><text x="70.4116%" y="607.50"></text></g><g><title>pick_next_task_fair (129 samples, 0.04%)</title><rect x="70.1552%" y="613" width="0.0356%" height="15" fill="rgb(216,158,13)" fg:x="254145" fg:w="129"/><text x="70.4052%" y="623.50"></text></g><g><title>pick_next_task_idle (106 samples, 0.03%)</title><rect x="70.1908%" y="613" width="0.0293%" height="15" fill="rgb(212,47,37)" fg:x="254274" fg:w="106"/><text x="70.4408%" y="623.50"></text></g><g><title>__update_idle_core (92 samples, 0.03%)</title><rect x="70.1947%" y="597" width="0.0254%" height="15" fill="rgb(254,16,10)" fg:x="254288" fg:w="92"/><text x="70.4447%" y="607.50"></text></g><g><title>psi_task_change (618 samples, 0.17%)</title><rect x="70.2201%" y="613" width="0.1706%" height="15" fill="rgb(223,228,16)" fg:x="254380" fg:w="618"/><text x="70.4701%" y="623.50"></text></g><g><title>psi_group_change (529 samples, 0.15%)</title><rect x="70.2447%" y="597" width="0.1460%" height="15" fill="rgb(249,108,50)" fg:x="254469" fg:w="529"/><text x="70.4947%" y="607.50"></text></g><g><title>record_times (154 samples, 0.04%)</title><rect x="70.3482%" y="581" width="0.0425%" height="15" fill="rgb(208,220,5)" fg:x="254844" fg:w="154"/><text x="70.5982%" y="591.50"></text></g><g><title>sched_clock_cpu (107 samples, 0.03%)</title><rect x="70.3611%" y="565" width="0.0295%" height="15" fill="rgb(217,89,48)" fg:x="254891" fg:w="107"/><text x="70.6111%" y="575.50"></text></g><g><title>sched_clock (89 samples, 0.02%)</title><rect x="70.3661%" y="549" width="0.0246%" height="15" fill="rgb(212,113,41)" fg:x="254909" fg:w="89"/><text x="70.6161%" y="559.50"></text></g><g><title>native_sched_clock (82 samples, 0.02%)</title><rect x="70.3680%" y="533" width="0.0226%" height="15" fill="rgb(231,127,5)" fg:x="254916" fg:w="82"/><text x="70.6180%" y="543.50"></text></g><g><title>psi_task_switch (77 samples, 0.02%)</title><rect x="70.3907%" y="613" width="0.0213%" height="15" fill="rgb(217,141,17)" fg:x="254998" fg:w="77"/><text x="70.6407%" y="623.50"></text></g><g><title>psi_group_change (53 samples, 0.01%)</title><rect x="70.3973%" y="597" width="0.0146%" height="15" fill="rgb(245,125,54)" fg:x="255022" fg:w="53"/><text x="70.6473%" y="607.50"></text></g><g><title>__btrfs_tree_lock (10,840 samples, 2.99%)</title><rect x="67.4447%" y="661" width="2.9923%" height="15" fill="rgb(248,125,3)" fg:x="244326" fg:w="10840"/><text x="67.6947%" y="671.50">__b..</text></g><g><title>schedule (3,040 samples, 0.84%)</title><rect x="69.5979%" y="645" width="0.8392%" height="15" fill="rgb(236,119,51)" fg:x="252126" fg:w="3040"/><text x="69.8479%" y="655.50"></text></g><g><title>__schedule (2,998 samples, 0.83%)</title><rect x="69.6095%" y="629" width="0.8276%" height="15" fill="rgb(239,99,8)" fg:x="252168" fg:w="2998"/><text x="69.8595%" y="639.50"></text></g><g><title>update_rq_clock (58 samples, 0.02%)</title><rect x="70.4211%" y="613" width="0.0160%" height="15" fill="rgb(224,228,4)" fg:x="255108" fg:w="58"/><text x="70.6711%" y="623.50"></text></g><g><title>sched_clock_cpu (44 samples, 0.01%)</title><rect x="70.4249%" y="597" width="0.0121%" height="15" fill="rgb(220,131,45)" fg:x="255122" fg:w="44"/><text x="70.6749%" y="607.50"></text></g><g><title>sched_clock (40 samples, 0.01%)</title><rect x="70.4260%" y="581" width="0.0110%" height="15" fill="rgb(215,62,5)" fg:x="255126" fg:w="40"/><text x="70.6760%" y="591.50"></text></g><g><title>native_sched_clock (38 samples, 0.01%)</title><rect x="70.4266%" y="565" width="0.0105%" height="15" fill="rgb(253,12,24)" fg:x="255128" fg:w="38"/><text x="70.6766%" y="575.50"></text></g><g><title>btrfs_lock_root_node (10,871 samples, 3.00%)</title><rect x="67.4431%" y="677" width="3.0009%" height="15" fill="rgb(248,120,50)" fg:x="244320" fg:w="10871"/><text x="67.6931%" y="687.50">btr..</text></g><g><title>btrfs_set_path_blocking (59 samples, 0.02%)</title><rect x="70.4440%" y="677" width="0.0163%" height="15" fill="rgb(245,194,10)" fg:x="255191" fg:w="59"/><text x="70.6940%" y="687.50"></text></g><g><title>btrfs_try_tree_write_lock (325 samples, 0.09%)</title><rect x="70.4677%" y="677" width="0.0897%" height="15" fill="rgb(241,149,38)" fg:x="255277" fg:w="325"/><text x="70.7177%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (296 samples, 0.08%)</title><rect x="70.4757%" y="661" width="0.0817%" height="15" fill="rgb(219,215,7)" fg:x="255306" fg:w="296"/><text x="70.7257%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (308 samples, 0.09%)</title><rect x="70.5640%" y="677" width="0.0850%" height="15" fill="rgb(208,120,31)" fg:x="255626" fg:w="308"/><text x="70.8140%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (55 samples, 0.02%)</title><rect x="70.6604%" y="661" width="0.0152%" height="15" fill="rgb(244,30,8)" fg:x="255975" fg:w="55"/><text x="70.9104%" y="671.50"></text></g><g><title>verify_parent_transid (41 samples, 0.01%)</title><rect x="70.6642%" y="645" width="0.0113%" height="15" fill="rgb(238,35,44)" fg:x="255989" fg:w="41"/><text x="70.9142%" y="655.50"></text></g><g><title>btrfs_get_64 (58 samples, 0.02%)</title><rect x="70.6756%" y="661" width="0.0160%" height="15" fill="rgb(243,218,37)" fg:x="256030" fg:w="58"/><text x="70.9256%" y="671.50"></text></g><g><title>__radix_tree_lookup (183 samples, 0.05%)</title><rect x="70.7214%" y="645" width="0.0505%" height="15" fill="rgb(218,169,10)" fg:x="256196" fg:w="183"/><text x="70.9714%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (66 samples, 0.02%)</title><rect x="70.7719%" y="645" width="0.0182%" height="15" fill="rgb(221,144,10)" fg:x="256379" fg:w="66"/><text x="71.0219%" y="655.50"></text></g><g><title>mark_page_accessed (56 samples, 0.02%)</title><rect x="70.7747%" y="629" width="0.0155%" height="15" fill="rgb(226,41,38)" fg:x="256389" fg:w="56"/><text x="71.0247%" y="639.50"></text></g><g><title>find_extent_buffer (339 samples, 0.09%)</title><rect x="70.6971%" y="661" width="0.0936%" height="15" fill="rgb(228,3,1)" fg:x="256108" fg:w="339"/><text x="70.9471%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (559 samples, 0.15%)</title><rect x="70.6491%" y="677" width="0.1543%" height="15" fill="rgb(209,129,12)" fg:x="255934" fg:w="559"/><text x="70.8991%" y="687.50"></text></g><g><title>read_extent_buffer (46 samples, 0.01%)</title><rect x="70.7907%" y="661" width="0.0127%" height="15" fill="rgb(213,136,33)" fg:x="256447" fg:w="46"/><text x="71.0407%" y="671.50"></text></g><g><title>__radix_tree_lookup (54 samples, 0.01%)</title><rect x="70.8315%" y="645" width="0.0149%" height="15" fill="rgb(209,181,29)" fg:x="256595" fg:w="54"/><text x="71.0815%" y="655.50"></text></g><g><title>find_extent_buffer (120 samples, 0.03%)</title><rect x="70.8219%" y="661" width="0.0331%" height="15" fill="rgb(234,173,18)" fg:x="256560" fg:w="120"/><text x="71.0719%" y="671.50"></text></g><g><title>reada_for_balance (200 samples, 0.06%)</title><rect x="70.8034%" y="677" width="0.0552%" height="15" fill="rgb(227,73,47)" fg:x="256493" fg:w="200"/><text x="71.0534%" y="687.50"></text></g><g><title>__list_del_entry_valid (87 samples, 0.02%)</title><rect x="70.8992%" y="613" width="0.0240%" height="15" fill="rgb(234,9,34)" fg:x="256840" fg:w="87"/><text x="71.1492%" y="623.50"></text></g><g><title>_raw_spin_lock (189 samples, 0.05%)</title><rect x="71.0479%" y="597" width="0.0522%" height="15" fill="rgb(235,172,15)" fg:x="257379" fg:w="189"/><text x="71.2979%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (127 samples, 0.04%)</title><rect x="71.0651%" y="581" width="0.0351%" height="15" fill="rgb(245,61,2)" fg:x="257441" fg:w="127"/><text x="71.3151%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (136 samples, 0.04%)</title><rect x="71.1001%" y="597" width="0.0375%" height="15" fill="rgb(238,39,47)" fg:x="257568" fg:w="136"/><text x="71.3501%" y="607.50"></text></g><g><title>available_idle_cpu (193 samples, 0.05%)</title><rect x="71.2265%" y="581" width="0.0533%" height="15" fill="rgb(234,37,24)" fg:x="258026" fg:w="193"/><text x="71.4765%" y="591.50"></text></g><g><title>cpumask_next_wrap (53 samples, 0.01%)</title><rect x="71.2878%" y="581" width="0.0146%" height="15" fill="rgb(248,223,24)" fg:x="258248" fg:w="53"/><text x="71.5378%" y="591.50"></text></g><g><title>select_task_rq_fair (745 samples, 0.21%)</title><rect x="71.1415%" y="597" width="0.2057%" height="15" fill="rgb(223,12,15)" fg:x="257718" fg:w="745"/><text x="71.3915%" y="607.50"></text></g><g><title>update_cfs_rq_h_load (123 samples, 0.03%)</title><rect x="71.3132%" y="581" width="0.0340%" height="15" fill="rgb(249,6,3)" fg:x="258340" fg:w="123"/><text x="71.5632%" y="591.50"></text></g><g><title>migrate_task_rq_fair (42 samples, 0.01%)</title><rect x="71.3571%" y="581" width="0.0116%" height="15" fill="rgb(237,105,33)" fg:x="258499" fg:w="42"/><text x="71.6071%" y="591.50"></text></g><g><title>set_task_cpu (80 samples, 0.02%)</title><rect x="71.3472%" y="597" width="0.0221%" height="15" fill="rgb(252,208,35)" fg:x="258463" fg:w="80"/><text x="71.5972%" y="607.50"></text></g><g><title>update_cfs_group (54 samples, 0.01%)</title><rect x="71.4910%" y="549" width="0.0149%" height="15" fill="rgb(215,181,35)" fg:x="258984" fg:w="54"/><text x="71.7410%" y="559.50"></text></g><g><title>update_curr (74 samples, 0.02%)</title><rect x="71.5059%" y="549" width="0.0204%" height="15" fill="rgb(246,212,3)" fg:x="259038" fg:w="74"/><text x="71.7559%" y="559.50"></text></g><g><title>__update_load_avg_cfs_rq (52 samples, 0.01%)</title><rect x="71.5581%" y="533" width="0.0144%" height="15" fill="rgb(247,156,24)" fg:x="259227" fg:w="52"/><text x="71.8081%" y="543.50"></text></g><g><title>enqueue_entity (621 samples, 0.17%)</title><rect x="71.4176%" y="565" width="0.1714%" height="15" fill="rgb(248,9,31)" fg:x="258718" fg:w="621"/><text x="71.6676%" y="575.50"></text></g><g><title>update_load_avg (227 samples, 0.06%)</title><rect x="71.5263%" y="549" width="0.0627%" height="15" fill="rgb(234,26,45)" fg:x="259112" fg:w="227"/><text x="71.7763%" y="559.50"></text></g><g><title>enqueue_task_fair (793 samples, 0.22%)</title><rect x="71.3875%" y="581" width="0.2189%" height="15" fill="rgb(249,11,32)" fg:x="258609" fg:w="793"/><text x="71.6375%" y="591.50"></text></g><g><title>ttwu_do_activate (1,663 samples, 0.46%)</title><rect x="71.3693%" y="597" width="0.4591%" height="15" fill="rgb(249,162,33)" fg:x="258543" fg:w="1663"/><text x="71.6193%" y="607.50"></text></g><g><title>psi_task_change (804 samples, 0.22%)</title><rect x="71.6064%" y="581" width="0.2219%" height="15" fill="rgb(232,4,32)" fg:x="259402" fg:w="804"/><text x="71.8564%" y="591.50"></text></g><g><title>psi_group_change (726 samples, 0.20%)</title><rect x="71.6279%" y="565" width="0.2004%" height="15" fill="rgb(212,5,45)" fg:x="259480" fg:w="726"/><text x="71.8779%" y="575.50"></text></g><g><title>record_times (126 samples, 0.03%)</title><rect x="71.7935%" y="549" width="0.0348%" height="15" fill="rgb(227,95,13)" fg:x="260080" fg:w="126"/><text x="72.0435%" y="559.50"></text></g><g><title>sched_clock_cpu (87 samples, 0.02%)</title><rect x="71.8043%" y="533" width="0.0240%" height="15" fill="rgb(223,205,10)" fg:x="260119" fg:w="87"/><text x="72.0543%" y="543.50"></text></g><g><title>sched_clock (74 samples, 0.02%)</title><rect x="71.8079%" y="517" width="0.0204%" height="15" fill="rgb(222,178,8)" fg:x="260132" fg:w="74"/><text x="72.0579%" y="527.50"></text></g><g><title>native_sched_clock (66 samples, 0.02%)</title><rect x="71.8101%" y="501" width="0.0182%" height="15" fill="rgb(216,13,22)" fg:x="260140" fg:w="66"/><text x="72.0601%" y="511.50"></text></g><g><title>resched_curr (53 samples, 0.01%)</title><rect x="71.8526%" y="565" width="0.0146%" height="15" fill="rgb(240,167,12)" fg:x="260294" fg:w="53"/><text x="72.1026%" y="575.50"></text></g><g><title>ttwu_do_wakeup (142 samples, 0.04%)</title><rect x="71.8283%" y="597" width="0.0392%" height="15" fill="rgb(235,68,35)" fg:x="260206" fg:w="142"/><text x="72.0783%" y="607.50"></text></g><g><title>check_preempt_curr (128 samples, 0.04%)</title><rect x="71.8322%" y="581" width="0.0353%" height="15" fill="rgb(253,40,27)" fg:x="260220" fg:w="128"/><text x="72.0822%" y="591.50"></text></g><g><title>ttwu_queue_wakelist (76 samples, 0.02%)</title><rect x="71.8675%" y="597" width="0.0210%" height="15" fill="rgb(214,19,28)" fg:x="260348" fg:w="76"/><text x="72.1175%" y="607.50"></text></g><g><title>__wake_up_common (3,815 samples, 1.05%)</title><rect x="70.8754%" y="645" width="1.0531%" height="15" fill="rgb(210,167,45)" fg:x="256754" fg:w="3815"/><text x="71.1254%" y="655.50"></text></g><g><title>autoremove_wake_function (3,748 samples, 1.03%)</title><rect x="70.8939%" y="629" width="1.0346%" height="15" fill="rgb(232,97,40)" fg:x="256821" fg:w="3748"/><text x="71.1439%" y="639.50"></text></g><g><title>try_to_wake_up (3,641 samples, 1.01%)</title><rect x="70.9235%" y="613" width="1.0051%" height="15" fill="rgb(250,35,23)" fg:x="256928" fg:w="3641"/><text x="71.1735%" y="623.50"></text></g><g><title>update_rq_clock (145 samples, 0.04%)</title><rect x="71.8885%" y="597" width="0.0400%" height="15" fill="rgb(248,47,53)" fg:x="260424" fg:w="145"/><text x="72.1385%" y="607.50"></text></g><g><title>sched_clock_cpu (48 samples, 0.01%)</title><rect x="71.9153%" y="581" width="0.0133%" height="15" fill="rgb(226,58,50)" fg:x="260521" fg:w="48"/><text x="72.1653%" y="591.50"></text></g><g><title>sched_clock (42 samples, 0.01%)</title><rect x="71.9169%" y="565" width="0.0116%" height="15" fill="rgb(217,105,26)" fg:x="260527" fg:w="42"/><text x="72.1669%" y="575.50"></text></g><g><title>native_sched_clock (40 samples, 0.01%)</title><rect x="71.9175%" y="549" width="0.0110%" height="15" fill="rgb(208,64,1)" fg:x="260529" fg:w="40"/><text x="72.1675%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (103 samples, 0.03%)</title><rect x="71.9285%" y="645" width="0.0284%" height="15" fill="rgb(214,80,1)" fg:x="260569" fg:w="103"/><text x="72.1785%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (85 samples, 0.02%)</title><rect x="71.9335%" y="629" width="0.0235%" height="15" fill="rgb(206,175,26)" fg:x="260587" fg:w="85"/><text x="72.1835%" y="639.50"></text></g><g><title>__wake_up_common_lock (3,952 samples, 1.09%)</title><rect x="70.8732%" y="661" width="1.0909%" height="15" fill="rgb(235,156,37)" fg:x="256746" fg:w="3952"/><text x="71.1232%" y="671.50"></text></g><g><title>btrfs_search_slot (20,477 samples, 5.65%)</title><rect x="66.3281%" y="693" width="5.6526%" height="15" fill="rgb(213,100,9)" fg:x="240281" fg:w="20477"/><text x="66.5781%" y="703.50">btrfs_s..</text></g><g><title>unlock_up (4,065 samples, 1.12%)</title><rect x="70.8586%" y="677" width="1.1221%" height="15" fill="rgb(241,15,13)" fg:x="256693" fg:w="4065"/><text x="71.1086%" y="687.50"></text></g><g><title>btrfs_tree_unlock (60 samples, 0.02%)</title><rect x="71.9641%" y="661" width="0.0166%" height="15" fill="rgb(205,97,43)" fg:x="260698" fg:w="60"/><text x="72.2141%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (20,805 samples, 5.74%)</title><rect x="66.2578%" y="709" width="5.7431%" height="15" fill="rgb(216,106,32)" fg:x="240026" fg:w="20805"/><text x="66.5078%" y="719.50">btrfs_l..</text></g><g><title>crc32c (73 samples, 0.02%)</title><rect x="71.9807%" y="693" width="0.0202%" height="15" fill="rgb(226,200,8)" fg:x="260758" fg:w="73"/><text x="72.2307%" y="703.50"></text></g><g><title>_raw_spin_lock (38 samples, 0.01%)</title><rect x="72.0809%" y="629" width="0.0105%" height="15" fill="rgb(244,54,29)" fg:x="261121" fg:w="38"/><text x="72.3309%" y="639.50"></text></g><g><title>select_task_rq_fair (156 samples, 0.04%)</title><rect x="72.0997%" y="629" width="0.0431%" height="15" fill="rgb(252,169,12)" fg:x="261189" fg:w="156"/><text x="72.3497%" y="639.50"></text></g><g><title>update_cfs_rq_h_load (42 samples, 0.01%)</title><rect x="72.1311%" y="613" width="0.0116%" height="15" fill="rgb(231,199,11)" fg:x="261303" fg:w="42"/><text x="72.3811%" y="623.50"></text></g><g><title>enqueue_entity (169 samples, 0.05%)</title><rect x="72.1587%" y="597" width="0.0467%" height="15" fill="rgb(233,191,18)" fg:x="261403" fg:w="169"/><text x="72.4087%" y="607.50"></text></g><g><title>update_load_avg (55 samples, 0.02%)</title><rect x="72.1902%" y="581" width="0.0152%" height="15" fill="rgb(215,83,47)" fg:x="261517" fg:w="55"/><text x="72.4402%" y="591.50"></text></g><g><title>enqueue_task_fair (200 samples, 0.06%)</title><rect x="72.1510%" y="613" width="0.0552%" height="15" fill="rgb(251,67,19)" fg:x="261375" fg:w="200"/><text x="72.4010%" y="623.50"></text></g><g><title>ttwu_do_activate (437 samples, 0.12%)</title><rect x="72.1460%" y="629" width="0.1206%" height="15" fill="rgb(240,7,20)" fg:x="261357" fg:w="437"/><text x="72.3960%" y="639.50"></text></g><g><title>psi_task_change (219 samples, 0.06%)</title><rect x="72.2062%" y="613" width="0.0605%" height="15" fill="rgb(210,150,26)" fg:x="261575" fg:w="219"/><text x="72.4562%" y="623.50"></text></g><g><title>psi_group_change (198 samples, 0.05%)</title><rect x="72.2120%" y="597" width="0.0547%" height="15" fill="rgb(228,75,42)" fg:x="261596" fg:w="198"/><text x="72.4620%" y="607.50"></text></g><g><title>ttwu_queue_wakelist (39 samples, 0.01%)</title><rect x="72.2763%" y="629" width="0.0108%" height="15" fill="rgb(237,134,48)" fg:x="261829" fg:w="39"/><text x="72.5263%" y="639.50"></text></g><g><title>__wake_up_common (1,050 samples, 0.29%)</title><rect x="72.0083%" y="677" width="0.2898%" height="15" fill="rgb(205,80,50)" fg:x="260858" fg:w="1050"/><text x="72.2583%" y="687.50"></text></g><g><title>autoremove_wake_function (1,015 samples, 0.28%)</title><rect x="72.0180%" y="661" width="0.2802%" height="15" fill="rgb(217,74,48)" fg:x="260893" fg:w="1015"/><text x="72.2680%" y="671.50"></text></g><g><title>try_to_wake_up (995 samples, 0.27%)</title><rect x="72.0235%" y="645" width="0.2747%" height="15" fill="rgb(205,82,50)" fg:x="260913" fg:w="995"/><text x="72.2735%" y="655.50"></text></g><g><title>update_rq_clock (40 samples, 0.01%)</title><rect x="72.2871%" y="629" width="0.0110%" height="15" fill="rgb(228,1,33)" fg:x="261868" fg:w="40"/><text x="72.5371%" y="639.50"></text></g><g><title>__wake_up_common_lock (1,072 samples, 0.30%)</title><rect x="72.0064%" y="693" width="0.2959%" height="15" fill="rgb(214,50,23)" fg:x="260851" fg:w="1072"/><text x="72.2564%" y="703.50"></text></g><g><title>btrfs_tree_unlock (40 samples, 0.01%)</title><rect x="72.3023%" y="693" width="0.0110%" height="15" fill="rgb(210,62,9)" fg:x="261923" fg:w="40"/><text x="72.5523%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (59 samples, 0.02%)</title><rect x="72.3136%" y="693" width="0.0163%" height="15" fill="rgb(210,104,37)" fg:x="261964" fg:w="59"/><text x="72.5636%" y="703.50"></text></g><g><title>btrfs_release_path (1,213 samples, 0.33%)</title><rect x="72.0009%" y="709" width="0.3348%" height="15" fill="rgb(232,104,43)" fg:x="260831" fg:w="1213"/><text x="72.2509%" y="719.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (51 samples, 0.01%)</title><rect x="72.3445%" y="677" width="0.0141%" height="15" fill="rgb(244,52,6)" fg:x="262076" fg:w="51"/><text x="72.5945%" y="687.50"></text></g><g><title>fill_stack_inode_item (79 samples, 0.02%)</title><rect x="72.3674%" y="677" width="0.0218%" height="15" fill="rgb(211,174,52)" fg:x="262159" fg:w="79"/><text x="72.6174%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (206 samples, 0.06%)</title><rect x="72.3407%" y="693" width="0.0569%" height="15" fill="rgb(229,48,4)" fg:x="262062" fg:w="206"/><text x="72.5907%" y="703.50"></text></g><g><title>btrfs_update_inode (288 samples, 0.08%)</title><rect x="72.3357%" y="709" width="0.0795%" height="15" fill="rgb(205,155,16)" fg:x="262044" fg:w="288"/><text x="72.5857%" y="719.50"></text></g><g><title>btrfs_update_root_times (64 samples, 0.02%)</title><rect x="72.3975%" y="693" width="0.0177%" height="15" fill="rgb(211,141,53)" fg:x="262268" fg:w="64"/><text x="72.6475%" y="703.50"></text></g><g><title>ktime_get_real_ts64 (37 samples, 0.01%)</title><rect x="72.4050%" y="677" width="0.0102%" height="15" fill="rgb(240,148,11)" fg:x="262295" fg:w="37"/><text x="72.6550%" y="687.50"></text></g><g><title>kmem_cache_alloc (44 samples, 0.01%)</title><rect x="72.4185%" y="709" width="0.0121%" height="15" fill="rgb(214,45,23)" fg:x="262344" fg:w="44"/><text x="72.6685%" y="719.50"></text></g><g><title>__btrfs_unlink_inode (28,108 samples, 7.76%)</title><rect x="64.6824%" y="725" width="7.7590%" height="15" fill="rgb(248,74,26)" fg:x="234319" fg:w="28108"/><text x="64.9324%" y="735.50">__btrfs_unl..</text></g><g><title>kmem_cache_free (39 samples, 0.01%)</title><rect x="72.4307%" y="709" width="0.0108%" height="15" fill="rgb(218,121,16)" fg:x="262388" fg:w="39"/><text x="72.6807%" y="719.50"></text></g><g><title>__queue_work (63 samples, 0.02%)</title><rect x="72.4530%" y="693" width="0.0174%" height="15" fill="rgb(218,10,47)" fg:x="262469" fg:w="63"/><text x="72.7030%" y="703.50"></text></g><g><title>try_to_wake_up (45 samples, 0.01%)</title><rect x="72.4580%" y="677" width="0.0124%" height="15" fill="rgb(227,99,14)" fg:x="262487" fg:w="45"/><text x="72.7080%" y="687.50"></text></g><g><title>btrfs_btree_balance_dirty (106 samples, 0.03%)</title><rect x="72.4414%" y="725" width="0.0293%" height="15" fill="rgb(229,83,46)" fg:x="262427" fg:w="106"/><text x="72.6914%" y="735.50"></text></g><g><title>queue_work_on (66 samples, 0.02%)</title><rect x="72.4525%" y="709" width="0.0182%" height="15" fill="rgb(228,25,1)" fg:x="262467" fg:w="66"/><text x="72.7025%" y="719.50"></text></g><g><title>__wake_up_common (152 samples, 0.04%)</title><rect x="72.4883%" y="645" width="0.0420%" height="15" fill="rgb(252,190,15)" fg:x="262597" fg:w="152"/><text x="72.7383%" y="655.50"></text></g><g><title>autoremove_wake_function (147 samples, 0.04%)</title><rect x="72.4897%" y="629" width="0.0406%" height="15" fill="rgb(213,103,51)" fg:x="262602" fg:w="147"/><text x="72.7397%" y="639.50"></text></g><g><title>try_to_wake_up (147 samples, 0.04%)</title><rect x="72.4897%" y="613" width="0.0406%" height="15" fill="rgb(220,38,44)" fg:x="262602" fg:w="147"/><text x="72.7397%" y="623.50"></text></g><g><title>__wake_up_common_lock (155 samples, 0.04%)</title><rect x="72.4883%" y="661" width="0.0428%" height="15" fill="rgb(210,45,26)" fg:x="262597" fg:w="155"/><text x="72.7383%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (90 samples, 0.02%)</title><rect x="72.5375%" y="661" width="0.0248%" height="15" fill="rgb(205,95,48)" fg:x="262775" fg:w="90"/><text x="72.7875%" y="671.50"></text></g><g><title>btrfs_free_path (325 samples, 0.09%)</title><rect x="72.4809%" y="693" width="0.0897%" height="15" fill="rgb(225,179,37)" fg:x="262570" fg:w="325"/><text x="72.7309%" y="703.50"></text></g><g><title>btrfs_release_path (313 samples, 0.09%)</title><rect x="72.4842%" y="677" width="0.0864%" height="15" fill="rgb(230,209,3)" fg:x="262582" fg:w="313"/><text x="72.7342%" y="687.50"></text></g><g><title>finish_wait (168 samples, 0.05%)</title><rect x="72.6302%" y="629" width="0.0464%" height="15" fill="rgb(248,12,46)" fg:x="263111" fg:w="168"/><text x="72.8802%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (158 samples, 0.04%)</title><rect x="72.6330%" y="613" width="0.0436%" height="15" fill="rgb(234,18,0)" fg:x="263121" fg:w="158"/><text x="72.8830%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (154 samples, 0.04%)</title><rect x="72.6341%" y="597" width="0.0425%" height="15" fill="rgb(238,197,14)" fg:x="263125" fg:w="154"/><text x="72.8841%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (651 samples, 0.18%)</title><rect x="72.6860%" y="613" width="0.1797%" height="15" fill="rgb(251,162,48)" fg:x="263313" fg:w="651"/><text x="72.9360%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (623 samples, 0.17%)</title><rect x="72.6937%" y="597" width="0.1720%" height="15" fill="rgb(237,73,42)" fg:x="263341" fg:w="623"/><text x="72.9437%" y="607.50"></text></g><g><title>prepare_to_wait_event (694 samples, 0.19%)</title><rect x="72.6766%" y="629" width="0.1916%" height="15" fill="rgb(211,108,8)" fg:x="263279" fg:w="694"/><text x="72.9266%" y="639.50"></text></g><g><title>queued_read_lock_slowpath (243 samples, 0.07%)</title><rect x="72.8682%" y="629" width="0.0671%" height="15" fill="rgb(213,45,22)" fg:x="263973" fg:w="243"/><text x="73.1182%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (134 samples, 0.04%)</title><rect x="72.8983%" y="613" width="0.0370%" height="15" fill="rgb(252,154,5)" fg:x="264082" fg:w="134"/><text x="73.1483%" y="623.50"></text></g><g><title>dequeue_entity (72 samples, 0.02%)</title><rect x="72.9538%" y="581" width="0.0199%" height="15" fill="rgb(221,79,52)" fg:x="264283" fg:w="72"/><text x="73.2038%" y="591.50"></text></g><g><title>dequeue_task_fair (88 samples, 0.02%)</title><rect x="72.9518%" y="597" width="0.0243%" height="15" fill="rgb(229,220,36)" fg:x="264276" fg:w="88"/><text x="73.2018%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (98 samples, 0.03%)</title><rect x="72.9786%" y="581" width="0.0271%" height="15" fill="rgb(211,17,16)" fg:x="264373" fg:w="98"/><text x="73.2286%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (96 samples, 0.03%)</title><rect x="72.9792%" y="565" width="0.0265%" height="15" fill="rgb(222,55,31)" fg:x="264375" fg:w="96"/><text x="73.2292%" y="575.50"></text></g><g><title>native_write_msr (96 samples, 0.03%)</title><rect x="72.9792%" y="549" width="0.0265%" height="15" fill="rgb(221,221,31)" fg:x="264375" fg:w="96"/><text x="73.2292%" y="559.50"></text></g><g><title>finish_task_switch (112 samples, 0.03%)</title><rect x="72.9761%" y="597" width="0.0309%" height="15" fill="rgb(227,168,26)" fg:x="264364" fg:w="112"/><text x="73.2261%" y="607.50"></text></g><g><title>psi_task_change (51 samples, 0.01%)</title><rect x="73.0150%" y="597" width="0.0141%" height="15" fill="rgb(224,139,9)" fg:x="264505" fg:w="51"/><text x="73.2650%" y="607.50"></text></g><g><title>psi_group_change (45 samples, 0.01%)</title><rect x="73.0167%" y="581" width="0.0124%" height="15" fill="rgb(254,172,0)" fg:x="264511" fg:w="45"/><text x="73.2667%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (1,518 samples, 0.42%)</title><rect x="72.6178%" y="645" width="0.4190%" height="15" fill="rgb(235,203,1)" fg:x="263066" fg:w="1518"/><text x="72.8678%" y="655.50"></text></g><g><title>schedule (368 samples, 0.10%)</title><rect x="72.9353%" y="629" width="0.1016%" height="15" fill="rgb(216,205,24)" fg:x="264216" fg:w="368"/><text x="73.1853%" y="639.50"></text></g><g><title>__schedule (362 samples, 0.10%)</title><rect x="72.9369%" y="613" width="0.0999%" height="15" fill="rgb(233,24,6)" fg:x="264222" fg:w="362"/><text x="73.1869%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (1,570 samples, 0.43%)</title><rect x="72.6164%" y="661" width="0.4334%" height="15" fill="rgb(244,110,9)" fg:x="263061" fg:w="1570"/><text x="72.8664%" y="671.50"></text></g><g><title>btrfs_root_node (47 samples, 0.01%)</title><rect x="73.0368%" y="645" width="0.0130%" height="15" fill="rgb(239,222,42)" fg:x="264584" fg:w="47"/><text x="73.2868%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (102 samples, 0.03%)</title><rect x="73.0840%" y="629" width="0.0282%" height="15" fill="rgb(218,145,13)" fg:x="264755" fg:w="102"/><text x="73.3340%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (37 samples, 0.01%)</title><rect x="73.1020%" y="613" width="0.0102%" height="15" fill="rgb(207,69,11)" fg:x="264820" fg:w="37"/><text x="73.3520%" y="623.50"></text></g><g><title>prepare_to_wait_event (158 samples, 0.04%)</title><rect x="73.0711%" y="645" width="0.0436%" height="15" fill="rgb(220,223,22)" fg:x="264708" fg:w="158"/><text x="73.3211%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (86 samples, 0.02%)</title><rect x="73.1147%" y="645" width="0.0237%" height="15" fill="rgb(245,102,5)" fg:x="264866" fg:w="86"/><text x="73.3647%" y="655.50"></text></g><g><title>__perf_event_task_sched_out (46 samples, 0.01%)</title><rect x="73.1575%" y="613" width="0.0127%" height="15" fill="rgb(211,148,2)" fg:x="265021" fg:w="46"/><text x="73.4075%" y="623.50"></text></g><g><title>update_curr (64 samples, 0.02%)</title><rect x="73.1917%" y="581" width="0.0177%" height="15" fill="rgb(241,13,44)" fg:x="265145" fg:w="64"/><text x="73.4417%" y="591.50"></text></g><g><title>dequeue_entity (167 samples, 0.05%)</title><rect x="73.1798%" y="597" width="0.0461%" height="15" fill="rgb(219,137,21)" fg:x="265102" fg:w="167"/><text x="73.4298%" y="607.50"></text></g><g><title>update_load_avg (60 samples, 0.02%)</title><rect x="73.2094%" y="581" width="0.0166%" height="15" fill="rgb(242,206,5)" fg:x="265209" fg:w="60"/><text x="73.4594%" y="591.50"></text></g><g><title>dequeue_task_fair (218 samples, 0.06%)</title><rect x="73.1727%" y="613" width="0.0602%" height="15" fill="rgb(217,114,22)" fg:x="265076" fg:w="218"/><text x="73.4227%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (216 samples, 0.06%)</title><rect x="73.2411%" y="597" width="0.0596%" height="15" fill="rgb(253,206,42)" fg:x="265324" fg:w="216"/><text x="73.4911%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (208 samples, 0.06%)</title><rect x="73.2433%" y="581" width="0.0574%" height="15" fill="rgb(236,102,18)" fg:x="265332" fg:w="208"/><text x="73.4933%" y="591.50"></text></g><g><title>native_write_msr (202 samples, 0.06%)</title><rect x="73.2450%" y="565" width="0.0558%" height="15" fill="rgb(208,59,49)" fg:x="265338" fg:w="202"/><text x="73.4950%" y="575.50"></text></g><g><title>finish_task_switch (254 samples, 0.07%)</title><rect x="73.2328%" y="613" width="0.0701%" height="15" fill="rgb(215,194,28)" fg:x="265294" fg:w="254"/><text x="73.4828%" y="623.50"></text></g><g><title>pick_next_task_fair (48 samples, 0.01%)</title><rect x="73.3030%" y="613" width="0.0133%" height="15" fill="rgb(243,207,11)" fg:x="265548" fg:w="48"/><text x="73.5530%" y="623.50"></text></g><g><title>psi_task_change (160 samples, 0.04%)</title><rect x="73.3248%" y="613" width="0.0442%" height="15" fill="rgb(254,179,35)" fg:x="265627" fg:w="160"/><text x="73.5748%" y="623.50"></text></g><g><title>psi_group_change (134 samples, 0.04%)</title><rect x="73.3319%" y="597" width="0.0370%" height="15" fill="rgb(235,97,3)" fg:x="265653" fg:w="134"/><text x="73.5819%" y="607.50"></text></g><g><title>psi_task_switch (49 samples, 0.01%)</title><rect x="73.3689%" y="613" width="0.0135%" height="15" fill="rgb(215,155,33)" fg:x="265787" fg:w="49"/><text x="73.6189%" y="623.50"></text></g><g><title>__btrfs_tree_lock (1,232 samples, 0.34%)</title><rect x="73.0498%" y="661" width="0.3401%" height="15" fill="rgb(223,128,12)" fg:x="264631" fg:w="1232"/><text x="73.2998%" y="671.50"></text></g><g><title>schedule (911 samples, 0.25%)</title><rect x="73.1384%" y="645" width="0.2515%" height="15" fill="rgb(208,157,18)" fg:x="264952" fg:w="911"/><text x="73.3884%" y="655.50"></text></g><g><title>__schedule (899 samples, 0.25%)</title><rect x="73.1417%" y="629" width="0.2482%" height="15" fill="rgb(249,70,54)" fg:x="264964" fg:w="899"/><text x="73.3917%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (61 samples, 0.02%)</title><rect x="73.3927%" y="661" width="0.0168%" height="15" fill="rgb(244,118,24)" fg:x="265873" fg:w="61"/><text x="73.6427%" y="671.50"></text></g><g><title>leaf_space_used (43 samples, 0.01%)</title><rect x="73.3976%" y="645" width="0.0119%" height="15" fill="rgb(211,54,0)" fg:x="265891" fg:w="43"/><text x="73.6476%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (99 samples, 0.03%)</title><rect x="73.4095%" y="661" width="0.0273%" height="15" fill="rgb(245,137,45)" fg:x="265934" fg:w="99"/><text x="73.6595%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (920 samples, 0.25%)</title><rect x="73.4368%" y="661" width="0.2540%" height="15" fill="rgb(232,154,31)" fg:x="266033" fg:w="920"/><text x="73.6868%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (903 samples, 0.25%)</title><rect x="73.4415%" y="645" width="0.2493%" height="15" fill="rgb(253,6,39)" fg:x="266050" fg:w="903"/><text x="73.6915%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (164 samples, 0.05%)</title><rect x="73.6455%" y="629" width="0.0453%" height="15" fill="rgb(234,183,24)" fg:x="266789" fg:w="164"/><text x="73.8955%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (200 samples, 0.06%)</title><rect x="73.6908%" y="661" width="0.0552%" height="15" fill="rgb(252,84,40)" fg:x="266953" fg:w="200"/><text x="73.9408%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (45 samples, 0.01%)</title><rect x="73.7537%" y="645" width="0.0124%" height="15" fill="rgb(224,65,2)" fg:x="267181" fg:w="45"/><text x="74.0037%" y="655.50"></text></g><g><title>verify_parent_transid (37 samples, 0.01%)</title><rect x="73.7559%" y="629" width="0.0102%" height="15" fill="rgb(229,38,24)" fg:x="267189" fg:w="37"/><text x="74.0059%" y="639.50"></text></g><g><title>__radix_tree_lookup (117 samples, 0.03%)</title><rect x="73.8120%" y="629" width="0.0323%" height="15" fill="rgb(218,131,50)" fg:x="267392" fg:w="117"/><text x="74.0620%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (52 samples, 0.01%)</title><rect x="73.8445%" y="629" width="0.0144%" height="15" fill="rgb(233,106,18)" fg:x="267510" fg:w="52"/><text x="74.0945%" y="639.50"></text></g><g><title>mark_page_accessed (41 samples, 0.01%)</title><rect x="73.8476%" y="613" width="0.0113%" height="15" fill="rgb(220,216,11)" fg:x="267521" fg:w="41"/><text x="74.0976%" y="623.50"></text></g><g><title>find_extent_buffer (290 samples, 0.08%)</title><rect x="73.7800%" y="645" width="0.0801%" height="15" fill="rgb(251,100,45)" fg:x="267276" fg:w="290"/><text x="74.0300%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (454 samples, 0.13%)</title><rect x="73.7460%" y="661" width="0.1253%" height="15" fill="rgb(235,143,32)" fg:x="267153" fg:w="454"/><text x="73.9960%" y="671.50"></text></g><g><title>read_extent_buffer (41 samples, 0.01%)</title><rect x="73.8600%" y="645" width="0.0113%" height="15" fill="rgb(248,124,34)" fg:x="267566" fg:w="41"/><text x="74.1100%" y="655.50"></text></g><g><title>__list_del_entry_valid (54 samples, 0.01%)</title><rect x="73.8981%" y="597" width="0.0149%" height="15" fill="rgb(225,221,4)" fg:x="267704" fg:w="54"/><text x="74.1481%" y="607.50"></text></g><g><title>_raw_spin_lock (161 samples, 0.04%)</title><rect x="73.9644%" y="581" width="0.0444%" height="15" fill="rgb(242,27,43)" fg:x="267944" fg:w="161"/><text x="74.2144%" y="591.50"></text></g><g><title>native_queued_spin_lock_slowpath (118 samples, 0.03%)</title><rect x="73.9762%" y="565" width="0.0326%" height="15" fill="rgb(227,54,8)" fg:x="267987" fg:w="118"/><text x="74.2262%" y="575.50"></text></g><g><title>_raw_spin_lock_irqsave (81 samples, 0.02%)</title><rect x="74.0088%" y="581" width="0.0224%" height="15" fill="rgb(253,139,49)" fg:x="268105" fg:w="81"/><text x="74.2588%" y="591.50"></text></g><g><title>available_idle_cpu (94 samples, 0.03%)</title><rect x="74.0880%" y="565" width="0.0259%" height="15" fill="rgb(231,26,43)" fg:x="268392" fg:w="94"/><text x="74.3380%" y="575.50"></text></g><g><title>select_task_rq_fair (442 samples, 0.12%)</title><rect x="74.0331%" y="581" width="0.1220%" height="15" fill="rgb(207,121,39)" fg:x="268193" fg:w="442"/><text x="74.2831%" y="591.50"></text></g><g><title>update_cfs_rq_h_load (73 samples, 0.02%)</title><rect x="74.1349%" y="565" width="0.0202%" height="15" fill="rgb(223,101,35)" fg:x="268562" fg:w="73"/><text x="74.3849%" y="575.50"></text></g><g><title>set_task_cpu (52 samples, 0.01%)</title><rect x="74.1551%" y="581" width="0.0144%" height="15" fill="rgb(232,87,23)" fg:x="268635" fg:w="52"/><text x="74.4051%" y="591.50"></text></g><g><title>update_curr (42 samples, 0.01%)</title><rect x="74.2542%" y="533" width="0.0116%" height="15" fill="rgb(225,180,29)" fg:x="268994" fg:w="42"/><text x="74.5042%" y="543.50"></text></g><g><title>enqueue_entity (376 samples, 0.10%)</title><rect x="74.1993%" y="549" width="0.1038%" height="15" fill="rgb(225,25,17)" fg:x="268795" fg:w="376"/><text x="74.4493%" y="559.50"></text></g><g><title>update_load_avg (135 samples, 0.04%)</title><rect x="74.2658%" y="533" width="0.0373%" height="15" fill="rgb(223,8,52)" fg:x="269036" fg:w="135"/><text x="74.5158%" y="543.50"></text></g><g><title>enqueue_task_fair (514 samples, 0.14%)</title><rect x="74.1791%" y="565" width="0.1419%" height="15" fill="rgb(246,42,21)" fg:x="268722" fg:w="514"/><text x="74.4291%" y="575.50"></text></g><g><title>ttwu_do_activate (1,073 samples, 0.30%)</title><rect x="74.1695%" y="581" width="0.2962%" height="15" fill="rgb(205,64,43)" fg:x="268687" fg:w="1073"/><text x="74.4195%" y="591.50"></text></g><g><title>psi_task_change (524 samples, 0.14%)</title><rect x="74.3210%" y="565" width="0.1446%" height="15" fill="rgb(221,160,13)" fg:x="269236" fg:w="524"/><text x="74.5710%" y="575.50"></text></g><g><title>psi_group_change (474 samples, 0.13%)</title><rect x="74.3348%" y="549" width="0.1308%" height="15" fill="rgb(239,58,35)" fg:x="269286" fg:w="474"/><text x="74.5848%" y="559.50"></text></g><g><title>record_times (74 samples, 0.02%)</title><rect x="74.4452%" y="533" width="0.0204%" height="15" fill="rgb(251,26,40)" fg:x="269686" fg:w="74"/><text x="74.6952%" y="543.50"></text></g><g><title>sched_clock_cpu (48 samples, 0.01%)</title><rect x="74.4524%" y="517" width="0.0133%" height="15" fill="rgb(247,0,4)" fg:x="269712" fg:w="48"/><text x="74.7024%" y="527.50"></text></g><g><title>ttwu_do_wakeup (83 samples, 0.02%)</title><rect x="74.4656%" y="581" width="0.0229%" height="15" fill="rgb(218,130,10)" fg:x="269760" fg:w="83"/><text x="74.7156%" y="591.50"></text></g><g><title>check_preempt_curr (72 samples, 0.02%)</title><rect x="74.4687%" y="565" width="0.0199%" height="15" fill="rgb(239,32,7)" fg:x="269771" fg:w="72"/><text x="74.7187%" y="575.50"></text></g><g><title>ttwu_queue_wakelist (43 samples, 0.01%)</title><rect x="74.4886%" y="581" width="0.0119%" height="15" fill="rgb(210,192,24)" fg:x="269843" fg:w="43"/><text x="74.7386%" y="591.50"></text></g><g><title>__wake_up_common (2,287 samples, 0.63%)</title><rect x="73.8901%" y="629" width="0.6313%" height="15" fill="rgb(226,212,17)" fg:x="267675" fg:w="2287"/><text x="74.1401%" y="639.50"></text></g><g><title>autoremove_wake_function (2,260 samples, 0.62%)</title><rect x="73.8975%" y="613" width="0.6239%" height="15" fill="rgb(219,201,28)" fg:x="267702" fg:w="2260"/><text x="74.1475%" y="623.50"></text></g><g><title>try_to_wake_up (2,204 samples, 0.61%)</title><rect x="73.9130%" y="597" width="0.6084%" height="15" fill="rgb(235,207,41)" fg:x="267758" fg:w="2204"/><text x="74.1630%" y="607.50"></text></g><g><title>update_rq_clock (76 samples, 0.02%)</title><rect x="74.5004%" y="581" width="0.0210%" height="15" fill="rgb(241,95,54)" fg:x="269886" fg:w="76"/><text x="74.7504%" y="591.50"></text></g><g><title>__wake_up_common_lock (2,325 samples, 0.64%)</title><rect x="73.8893%" y="645" width="0.6418%" height="15" fill="rgb(248,12,23)" fg:x="267672" fg:w="2325"/><text x="74.1393%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (43 samples, 0.01%)</title><rect x="74.5358%" y="645" width="0.0119%" height="15" fill="rgb(228,173,4)" fg:x="270014" fg:w="43"/><text x="74.7858%" y="655.50"></text></g><g><title>btrfs_search_slot (7,143 samples, 1.97%)</title><rect x="72.5794%" y="677" width="1.9718%" height="15" fill="rgb(254,99,5)" fg:x="262927" fg:w="7143"/><text x="72.8294%" y="687.50">b..</text></g><g><title>unlock_up (2,456 samples, 0.68%)</title><rect x="73.8733%" y="661" width="0.6780%" height="15" fill="rgb(212,184,17)" fg:x="267614" fg:w="2456"/><text x="74.1233%" y="671.50"></text></g><g><title>btrfs_leaf_free_space (60 samples, 0.02%)</title><rect x="74.5808%" y="661" width="0.0166%" height="15" fill="rgb(252,174,1)" fg:x="270177" fg:w="60"/><text x="74.8308%" y="671.50"></text></g><g><title>leaf_space_used (53 samples, 0.01%)</title><rect x="74.5827%" y="645" width="0.0146%" height="15" fill="rgb(241,118,51)" fg:x="270184" fg:w="53"/><text x="74.8327%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (40 samples, 0.01%)</title><rect x="74.5973%" y="661" width="0.0110%" height="15" fill="rgb(227,94,47)" fg:x="270237" fg:w="40"/><text x="74.8473%" y="671.50"></text></g><g><title>btrfs_set_token_32 (41 samples, 0.01%)</title><rect x="74.6084%" y="661" width="0.0113%" height="15" fill="rgb(229,104,2)" fg:x="270277" fg:w="41"/><text x="74.8584%" y="671.50"></text></g><g><title>memmove_extent_buffer (49 samples, 0.01%)</title><rect x="74.6271%" y="661" width="0.0135%" height="15" fill="rgb(219,28,31)" fg:x="270345" fg:w="49"/><text x="74.8771%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (7,536 samples, 2.08%)</title><rect x="72.5706%" y="693" width="2.0803%" height="15" fill="rgb(233,109,36)" fg:x="262895" fg:w="7536"/><text x="72.8206%" y="703.50">b..</text></g><g><title>setup_items_for_insert (361 samples, 0.10%)</title><rect x="74.5512%" y="677" width="0.0997%" height="15" fill="rgb(246,88,11)" fg:x="270070" fg:w="361"/><text x="74.8012%" y="687.50"></text></g><g><title>write_extent_buffer (37 samples, 0.01%)</title><rect x="74.6407%" y="661" width="0.0102%" height="15" fill="rgb(209,212,17)" fg:x="270394" fg:w="37"/><text x="74.8907%" y="671.50"></text></g><g><title>kmem_cache_alloc (37 samples, 0.01%)</title><rect x="74.6509%" y="693" width="0.0102%" height="15" fill="rgb(243,59,29)" fg:x="270431" fg:w="37"/><text x="74.9009%" y="703.50"></text></g><g><title>btrfs_orphan_add (7,993 samples, 2.21%)</title><rect x="72.4740%" y="725" width="2.2064%" height="15" fill="rgb(244,205,48)" fg:x="262545" fg:w="7993"/><text x="72.7240%" y="735.50">b..</text></g><g><title>btrfs_insert_orphan_item (7,982 samples, 2.20%)</title><rect x="72.4770%" y="709" width="2.2034%" height="15" fill="rgb(227,30,6)" fg:x="262556" fg:w="7982"/><text x="72.7270%" y="719.50">b..</text></g><g><title>kmem_cache_free (70 samples, 0.02%)</title><rect x="74.6611%" y="693" width="0.0193%" height="15" fill="rgb(220,205,48)" fg:x="270468" fg:w="70"/><text x="74.9111%" y="703.50"></text></g><g><title>mutex_lock (55 samples, 0.02%)</title><rect x="74.6821%" y="709" width="0.0152%" height="15" fill="rgb(250,94,14)" fg:x="270544" fg:w="55"/><text x="74.9321%" y="719.50"></text></g><g><title>btrfs_record_unlink_dir (76 samples, 0.02%)</title><rect x="74.6804%" y="725" width="0.0210%" height="15" fill="rgb(216,119,42)" fg:x="270538" fg:w="76"/><text x="74.9304%" y="735.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (50 samples, 0.01%)</title><rect x="74.7127%" y="693" width="0.0138%" height="15" fill="rgb(232,155,0)" fg:x="270655" fg:w="50"/><text x="74.9627%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (154 samples, 0.04%)</title><rect x="74.7061%" y="709" width="0.0425%" height="15" fill="rgb(212,24,32)" fg:x="270631" fg:w="154"/><text x="74.9561%" y="719.50"></text></g><g><title>btrfs_update_inode (189 samples, 0.05%)</title><rect x="74.7030%" y="725" width="0.0522%" height="15" fill="rgb(216,69,20)" fg:x="270620" fg:w="189"/><text x="74.9530%" y="735.50"></text></g><g><title>drop_nlink (44 samples, 0.01%)</title><rect x="74.7552%" y="725" width="0.0121%" height="15" fill="rgb(229,73,31)" fg:x="270809" fg:w="44"/><text x="75.0052%" y="735.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (78 samples, 0.02%)</title><rect x="74.8240%" y="661" width="0.0215%" height="15" fill="rgb(224,219,20)" fg:x="271058" fg:w="78"/><text x="75.0740%" y="671.50"></text></g><g><title>__reserve_bytes (209 samples, 0.06%)</title><rect x="74.8082%" y="677" width="0.0577%" height="15" fill="rgb(215,146,41)" fg:x="271001" fg:w="209"/><text x="75.0582%" y="687.50"></text></g><g><title>calc_available_free_space.isra.0 (74 samples, 0.02%)</title><rect x="74.8455%" y="661" width="0.0204%" height="15" fill="rgb(244,71,31)" fg:x="271136" fg:w="74"/><text x="75.0955%" y="671.50"></text></g><g><title>btrfs_reduce_alloc_profile (42 samples, 0.01%)</title><rect x="74.8543%" y="645" width="0.0116%" height="15" fill="rgb(224,24,11)" fg:x="271168" fg:w="42"/><text x="75.1043%" y="655.50"></text></g><g><title>btrfs_block_rsv_add (267 samples, 0.07%)</title><rect x="74.7925%" y="709" width="0.0737%" height="15" fill="rgb(229,76,15)" fg:x="270944" fg:w="267"/><text x="75.0425%" y="719.50"></text></g><g><title>btrfs_reserve_metadata_bytes (240 samples, 0.07%)</title><rect x="74.7999%" y="693" width="0.0663%" height="15" fill="rgb(209,93,2)" fg:x="270971" fg:w="240"/><text x="75.0499%" y="703.50"></text></g><g><title>join_transaction (37 samples, 0.01%)</title><rect x="74.8687%" y="709" width="0.0102%" height="15" fill="rgb(216,200,50)" fg:x="271220" fg:w="37"/><text x="75.1187%" y="719.50"></text></g><g><title>kmem_cache_alloc (56 samples, 0.02%)</title><rect x="74.8789%" y="709" width="0.0155%" height="15" fill="rgb(211,67,34)" fg:x="271257" fg:w="56"/><text x="75.1289%" y="719.50"></text></g><g><title>btrfs_unlink (37,406 samples, 10.33%)</title><rect x="64.5808%" y="741" width="10.3257%" height="15" fill="rgb(225,87,47)" fg:x="233951" fg:w="37406"/><text x="64.8308%" y="751.50">btrfs_unlink</text></g><g><title>start_transaction (504 samples, 0.14%)</title><rect x="74.7674%" y="725" width="0.1391%" height="15" fill="rgb(217,185,16)" fg:x="270853" fg:w="504"/><text x="75.0174%" y="735.50"></text></g><g><title>wait_current_trans (44 samples, 0.01%)</title><rect x="74.8943%" y="709" width="0.0121%" height="15" fill="rgb(205,0,0)" fg:x="271313" fg:w="44"/><text x="75.1443%" y="719.50"></text></g><g><title>__srcu_read_lock (40 samples, 0.01%)</title><rect x="74.9316%" y="693" width="0.0110%" height="15" fill="rgb(207,116,45)" fg:x="271448" fg:w="40"/><text x="75.1816%" y="703.50"></text></g><g><title>dentry_unlink_inode (120 samples, 0.03%)</title><rect x="74.9128%" y="741" width="0.0331%" height="15" fill="rgb(221,156,26)" fg:x="271380" fg:w="120"/><text x="75.1628%" y="751.50"></text></g><g><title>fsnotify_destroy_marks (70 samples, 0.02%)</title><rect x="74.9266%" y="725" width="0.0193%" height="15" fill="rgb(213,140,4)" fg:x="271430" fg:w="70"/><text x="75.1766%" y="735.50"></text></g><g><title>fsnotify_grab_connector (59 samples, 0.02%)</title><rect x="74.9297%" y="709" width="0.0163%" height="15" fill="rgb(231,224,15)" fg:x="271441" fg:w="59"/><text x="75.1797%" y="719.50"></text></g><g><title>down_write (37 samples, 0.01%)</title><rect x="74.9460%" y="741" width="0.0102%" height="15" fill="rgb(244,76,20)" fg:x="271500" fg:w="37"/><text x="75.1960%" y="751.50"></text></g><g><title>fsnotify (75 samples, 0.02%)</title><rect x="74.9562%" y="741" width="0.0207%" height="15" fill="rgb(238,117,7)" fg:x="271537" fg:w="75"/><text x="75.2062%" y="751.50"></text></g><g><title>inode_permission.part.0 (43 samples, 0.01%)</title><rect x="74.9934%" y="725" width="0.0119%" height="15" fill="rgb(235,1,10)" fg:x="271672" fg:w="43"/><text x="75.2434%" y="735.50"></text></g><g><title>may_delete (52 samples, 0.01%)</title><rect x="74.9915%" y="741" width="0.0144%" height="15" fill="rgb(216,165,6)" fg:x="271665" fg:w="52"/><text x="75.2415%" y="751.50"></text></g><g><title>do_unlinkat (131,380 samples, 36.27%)</title><rect x="38.7458%" y="773" width="36.2667%" height="15" fill="rgb(246,91,35)" fg:x="140361" fg:w="131380"/><text x="38.9958%" y="783.50">do_unlinkat</text></g><g><title>vfs_unlink (37,838 samples, 10.44%)</title><rect x="64.5675%" y="757" width="10.4450%" height="15" fill="rgb(228,96,24)" fg:x="233903" fg:w="37838"/><text x="64.8175%" y="767.50">vfs_unlink</text></g><g><title>do_syscall_64 (142,673 samples, 39.38%)</title><rect x="35.6329%" y="789" width="39.3840%" height="15" fill="rgb(254,217,53)" fg:x="129084" fg:w="142673"/><text x="35.8829%" y="799.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (142,813 samples, 39.42%)</title><rect x="35.6285%" y="805" width="39.4227%" height="15" fill="rgb(209,60,0)" fg:x="129068" fg:w="142813"/><text x="35.8785%" y="815.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (124 samples, 0.03%)</title><rect x="75.0169%" y="789" width="0.0342%" height="15" fill="rgb(250,93,26)" fg:x="271757" fg:w="124"/><text x="75.2669%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (113 samples, 0.03%)</title><rect x="75.0199%" y="773" width="0.0312%" height="15" fill="rgb(211,9,40)" fg:x="271768" fg:w="113"/><text x="75.2699%" y="783.50"></text></g><g><title>switch_fpu_return (99 samples, 0.03%)</title><rect x="75.0238%" y="757" width="0.0273%" height="15" fill="rgb(242,57,20)" fg:x="271782" fg:w="99"/><text x="75.2738%" y="767.50"></text></g><g><title>copy_kernel_to_fpregs (67 samples, 0.02%)</title><rect x="75.0326%" y="741" width="0.0185%" height="15" fill="rgb(248,85,48)" fg:x="271814" fg:w="67"/><text x="75.2826%" y="751.50"></text></g><g><title>__GI_unlinkat (143,214 samples, 39.53%)</title><rect x="35.5302%" y="821" width="39.5334%" height="15" fill="rgb(212,117,2)" fg:x="128712" fg:w="143214"/><text x="35.7802%" y="831.50">__GI_unlinkat</text></g><g><title>__closedir (45 samples, 0.01%)</title><rect x="75.0669%" y="821" width="0.0124%" height="15" fill="rgb(243,19,3)" fg:x="271938" fg:w="45"/><text x="75.3169%" y="831.50"></text></g><g><title>__GI___fxstat (42 samples, 0.01%)</title><rect x="75.0942%" y="805" width="0.0116%" height="15" fill="rgb(232,217,24)" fg:x="272037" fg:w="42"/><text x="75.3442%" y="815.50"></text></g><g><title>__GI___libc_malloc (45 samples, 0.01%)</title><rect x="75.1080%" y="789" width="0.0124%" height="15" fill="rgb(224,175,40)" fg:x="272087" fg:w="45"/><text x="75.3580%" y="799.50"></text></g><g><title>_int_malloc (39 samples, 0.01%)</title><rect x="75.1097%" y="773" width="0.0108%" height="15" fill="rgb(212,162,32)" fg:x="272093" fg:w="39"/><text x="75.3597%" y="783.50"></text></g><g><title>__fdopendir (117 samples, 0.03%)</title><rect x="75.0890%" y="821" width="0.0323%" height="15" fill="rgb(215,9,4)" fg:x="272018" fg:w="117"/><text x="75.3390%" y="831.50"></text></g><g><title>__alloc_dir (56 samples, 0.02%)</title><rect x="75.1058%" y="805" width="0.0155%" height="15" fill="rgb(242,42,7)" fg:x="272079" fg:w="56"/><text x="75.3558%" y="815.50"></text></g><g><title>__libc_open64 (44 samples, 0.01%)</title><rect x="75.1213%" y="821" width="0.0121%" height="15" fill="rgb(242,184,45)" fg:x="272135" fg:w="44"/><text x="75.3713%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.01%)</title><rect x="75.1215%" y="805" width="0.0119%" height="15" fill="rgb(228,111,51)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="815.50"></text></g><g><title>do_syscall_64 (43 samples, 0.01%)</title><rect x="75.1215%" y="789" width="0.0119%" height="15" fill="rgb(236,147,17)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="799.50"></text></g><g><title>__x64_sys_openat (43 samples, 0.01%)</title><rect x="75.1215%" y="773" width="0.0119%" height="15" fill="rgb(210,75,22)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="783.50"></text></g><g><title>do_sys_openat2 (43 samples, 0.01%)</title><rect x="75.1215%" y="757" width="0.0119%" height="15" fill="rgb(217,159,45)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="767.50"></text></g><g><title>do_filp_open (43 samples, 0.01%)</title><rect x="75.1215%" y="741" width="0.0119%" height="15" fill="rgb(245,165,53)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="751.50"></text></g><g><title>path_openat (43 samples, 0.01%)</title><rect x="75.1215%" y="725" width="0.0119%" height="15" fill="rgb(251,190,50)" fg:x="272136" fg:w="43"/><text x="75.3715%" y="735.50"></text></g><g><title>__alloc_file (46 samples, 0.01%)</title><rect x="75.1486%" y="693" width="0.0127%" height="15" fill="rgb(208,203,29)" fg:x="272234" fg:w="46"/><text x="75.3986%" y="703.50"></text></g><g><title>alloc_empty_file (50 samples, 0.01%)</title><rect x="75.1478%" y="709" width="0.0138%" height="15" fill="rgb(207,209,35)" fg:x="272231" fg:w="50"/><text x="75.3978%" y="719.50"></text></g><g><title>do_dentry_open (72 samples, 0.02%)</title><rect x="75.1638%" y="709" width="0.0199%" height="15" fill="rgb(230,144,49)" fg:x="272289" fg:w="72"/><text x="75.4138%" y="719.50"></text></g><g><title>do_filp_open (182 samples, 0.05%)</title><rect x="75.1450%" y="741" width="0.0502%" height="15" fill="rgb(229,31,6)" fg:x="272221" fg:w="182"/><text x="75.3950%" y="751.50"></text></g><g><title>path_openat (181 samples, 0.05%)</title><rect x="75.1453%" y="725" width="0.0500%" height="15" fill="rgb(251,129,24)" fg:x="272222" fg:w="181"/><text x="75.3953%" y="735.50"></text></g><g><title>__x64_sys_openat (236 samples, 0.07%)</title><rect x="75.1392%" y="773" width="0.0651%" height="15" fill="rgb(235,105,15)" fg:x="272200" fg:w="236"/><text x="75.3892%" y="783.50"></text></g><g><title>do_sys_openat2 (233 samples, 0.06%)</title><rect x="75.1400%" y="757" width="0.0643%" height="15" fill="rgb(216,52,43)" fg:x="272203" fg:w="233"/><text x="75.3900%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (243 samples, 0.07%)</title><rect x="75.1375%" y="805" width="0.0671%" height="15" fill="rgb(238,144,41)" fg:x="272194" fg:w="243"/><text x="75.3875%" y="815.50"></text></g><g><title>do_syscall_64 (241 samples, 0.07%)</title><rect x="75.1381%" y="789" width="0.0665%" height="15" fill="rgb(243,63,9)" fg:x="272196" fg:w="241"/><text x="75.3881%" y="799.50"></text></g><g><title>__libc_openat64 (259 samples, 0.07%)</title><rect x="75.1334%" y="821" width="0.0715%" height="15" fill="rgb(246,208,1)" fg:x="272179" fg:w="259"/><text x="75.3834%" y="831.50"></text></g><g><title>d_lru_add (105 samples, 0.03%)</title><rect x="75.2684%" y="741" width="0.0290%" height="15" fill="rgb(233,182,18)" fg:x="272668" fg:w="105"/><text x="75.5184%" y="751.50"></text></g><g><title>list_lru_add (101 samples, 0.03%)</title><rect x="75.2695%" y="725" width="0.0279%" height="15" fill="rgb(242,224,8)" fg:x="272672" fg:w="101"/><text x="75.5195%" y="735.50"></text></g><g><title>dput (178 samples, 0.05%)</title><rect x="75.2562%" y="757" width="0.0491%" height="15" fill="rgb(243,54,37)" fg:x="272624" fg:w="178"/><text x="75.5062%" y="767.50"></text></g><g><title>free_extent_buffer.part.0 (48 samples, 0.01%)</title><rect x="75.3286%" y="661" width="0.0133%" height="15" fill="rgb(233,192,12)" fg:x="272886" fg:w="48"/><text x="75.5786%" y="671.50"></text></g><g><title>btrfs_free_path (86 samples, 0.02%)</title><rect x="75.3217%" y="693" width="0.0237%" height="15" fill="rgb(251,192,53)" fg:x="272861" fg:w="86"/><text x="75.5717%" y="703.50"></text></g><g><title>btrfs_release_path (77 samples, 0.02%)</title><rect x="75.3241%" y="677" width="0.0213%" height="15" fill="rgb(246,141,26)" fg:x="272870" fg:w="77"/><text x="75.5741%" y="687.50"></text></g><g><title>finish_wait (187 samples, 0.05%)</title><rect x="75.3909%" y="629" width="0.0516%" height="15" fill="rgb(239,195,19)" fg:x="273112" fg:w="187"/><text x="75.6409%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (169 samples, 0.05%)</title><rect x="75.3959%" y="613" width="0.0467%" height="15" fill="rgb(241,16,39)" fg:x="273130" fg:w="169"/><text x="75.6459%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (163 samples, 0.04%)</title><rect x="75.3976%" y="597" width="0.0450%" height="15" fill="rgb(223,13,53)" fg:x="273136" fg:w="163"/><text x="75.6476%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (693 samples, 0.19%)</title><rect x="75.4544%" y="613" width="0.1913%" height="15" fill="rgb(214,227,0)" fg:x="273342" fg:w="693"/><text x="75.7044%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (677 samples, 0.19%)</title><rect x="75.4589%" y="597" width="0.1869%" height="15" fill="rgb(228,103,26)" fg:x="273358" fg:w="677"/><text x="75.7089%" y="607.50"></text></g><g><title>prepare_to_wait_event (751 samples, 0.21%)</title><rect x="75.4426%" y="629" width="0.2073%" height="15" fill="rgb(254,177,53)" fg:x="273299" fg:w="751"/><text x="75.6926%" y="639.50"></text></g><g><title>queued_read_lock_slowpath (182 samples, 0.05%)</title><rect x="75.6499%" y="629" width="0.0502%" height="15" fill="rgb(208,201,34)" fg:x="274050" fg:w="182"/><text x="75.8999%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (121 samples, 0.03%)</title><rect x="75.6667%" y="613" width="0.0334%" height="15" fill="rgb(212,39,5)" fg:x="274111" fg:w="121"/><text x="75.9167%" y="623.50"></text></g><g><title>update_curr (44 samples, 0.01%)</title><rect x="75.7241%" y="565" width="0.0121%" height="15" fill="rgb(246,117,3)" fg:x="274319" fg:w="44"/><text x="75.9741%" y="575.50"></text></g><g><title>dequeue_entity (98 samples, 0.03%)</title><rect x="75.7178%" y="581" width="0.0271%" height="15" fill="rgb(244,118,39)" fg:x="274296" fg:w="98"/><text x="75.9678%" y="591.50"></text></g><g><title>dequeue_task_fair (118 samples, 0.03%)</title><rect x="75.7128%" y="597" width="0.0326%" height="15" fill="rgb(241,64,10)" fg:x="274278" fg:w="118"/><text x="75.9628%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (95 samples, 0.03%)</title><rect x="75.7476%" y="581" width="0.0262%" height="15" fill="rgb(229,39,44)" fg:x="274404" fg:w="95"/><text x="75.9976%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (91 samples, 0.03%)</title><rect x="75.7487%" y="565" width="0.0251%" height="15" fill="rgb(230,226,3)" fg:x="274408" fg:w="91"/><text x="75.9987%" y="575.50"></text></g><g><title>native_write_msr (90 samples, 0.02%)</title><rect x="75.7490%" y="549" width="0.0248%" height="15" fill="rgb(222,13,42)" fg:x="274409" fg:w="90"/><text x="75.9990%" y="559.50"></text></g><g><title>finish_task_switch (105 samples, 0.03%)</title><rect x="75.7454%" y="597" width="0.0290%" height="15" fill="rgb(247,180,54)" fg:x="274396" fg:w="105"/><text x="75.9954%" y="607.50"></text></g><g><title>psi_task_change (72 samples, 0.02%)</title><rect x="75.7835%" y="597" width="0.0199%" height="15" fill="rgb(205,96,16)" fg:x="274534" fg:w="72"/><text x="76.0335%" y="607.50"></text></g><g><title>psi_group_change (63 samples, 0.02%)</title><rect x="75.7860%" y="581" width="0.0174%" height="15" fill="rgb(205,100,21)" fg:x="274543" fg:w="63"/><text x="76.0360%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (1,564 samples, 0.43%)</title><rect x="75.3774%" y="645" width="0.4317%" height="15" fill="rgb(248,51,4)" fg:x="273063" fg:w="1564"/><text x="75.6274%" y="655.50"></text></g><g><title>schedule (395 samples, 0.11%)</title><rect x="75.7001%" y="629" width="0.1090%" height="15" fill="rgb(217,197,30)" fg:x="274232" fg:w="395"/><text x="75.9501%" y="639.50"></text></g><g><title>__schedule (387 samples, 0.11%)</title><rect x="75.7023%" y="613" width="0.1068%" height="15" fill="rgb(240,179,40)" fg:x="274240" fg:w="387"/><text x="75.9523%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (1,617 samples, 0.45%)</title><rect x="75.3741%" y="661" width="0.4464%" height="15" fill="rgb(212,185,35)" fg:x="273051" fg:w="1617"/><text x="75.6241%" y="671.50"></text></g><g><title>btrfs_root_node (41 samples, 0.01%)</title><rect x="75.8092%" y="645" width="0.0113%" height="15" fill="rgb(251,222,31)" fg:x="274627" fg:w="41"/><text x="76.0592%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (37 samples, 0.01%)</title><rect x="75.8437%" y="629" width="0.0102%" height="15" fill="rgb(208,140,36)" fg:x="274752" fg:w="37"/><text x="76.0937%" y="639.50"></text></g><g><title>prepare_to_wait_event (69 samples, 0.02%)</title><rect x="75.8370%" y="645" width="0.0190%" height="15" fill="rgb(220,148,1)" fg:x="274728" fg:w="69"/><text x="76.0870%" y="655.50"></text></g><g><title>dequeue_entity (64 samples, 0.02%)</title><rect x="75.8740%" y="597" width="0.0177%" height="15" fill="rgb(254,4,28)" fg:x="274862" fg:w="64"/><text x="76.1240%" y="607.50"></text></g><g><title>dequeue_task_fair (78 samples, 0.02%)</title><rect x="75.8721%" y="613" width="0.0215%" height="15" fill="rgb(222,185,44)" fg:x="274855" fg:w="78"/><text x="76.1221%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.02%)</title><rect x="75.8958%" y="597" width="0.0202%" height="15" fill="rgb(215,74,39)" fg:x="274941" fg:w="73"/><text x="76.1458%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.02%)</title><rect x="75.8964%" y="581" width="0.0196%" height="15" fill="rgb(247,86,4)" fg:x="274943" fg:w="71"/><text x="76.1464%" y="591.50"></text></g><g><title>native_write_msr (70 samples, 0.02%)</title><rect x="75.8967%" y="565" width="0.0193%" height="15" fill="rgb(231,105,32)" fg:x="274944" fg:w="70"/><text x="76.1467%" y="575.50"></text></g><g><title>finish_task_switch (82 samples, 0.02%)</title><rect x="75.8936%" y="613" width="0.0226%" height="15" fill="rgb(222,65,35)" fg:x="274933" fg:w="82"/><text x="76.1436%" y="623.50"></text></g><g><title>psi_task_change (53 samples, 0.01%)</title><rect x="75.9226%" y="613" width="0.0146%" height="15" fill="rgb(218,145,35)" fg:x="275038" fg:w="53"/><text x="76.1726%" y="623.50"></text></g><g><title>psi_group_change (46 samples, 0.01%)</title><rect x="75.9245%" y="597" width="0.0127%" height="15" fill="rgb(208,7,15)" fg:x="275045" fg:w="46"/><text x="76.1745%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (445 samples, 0.12%)</title><rect x="75.8205%" y="661" width="0.1228%" height="15" fill="rgb(209,83,13)" fg:x="274668" fg:w="445"/><text x="76.0705%" y="671.50"></text></g><g><title>schedule (295 samples, 0.08%)</title><rect x="75.8619%" y="645" width="0.0814%" height="15" fill="rgb(218,3,10)" fg:x="274818" fg:w="295"/><text x="76.1119%" y="655.50"></text></g><g><title>__schedule (291 samples, 0.08%)</title><rect x="75.8630%" y="629" width="0.0803%" height="15" fill="rgb(211,219,4)" fg:x="274822" fg:w="291"/><text x="76.1130%" y="639.50"></text></g><g><title>select_task_rq_fair (130 samples, 0.04%)</title><rect x="75.9723%" y="597" width="0.0359%" height="15" fill="rgb(228,194,12)" fg:x="275218" fg:w="130"/><text x="76.2223%" y="607.50"></text></g><g><title>enqueue_entity (75 samples, 0.02%)</title><rect x="76.0176%" y="565" width="0.0207%" height="15" fill="rgb(210,175,7)" fg:x="275382" fg:w="75"/><text x="76.2676%" y="575.50"></text></g><g><title>enqueue_task_fair (114 samples, 0.03%)</title><rect x="76.0118%" y="581" width="0.0315%" height="15" fill="rgb(243,132,6)" fg:x="275361" fg:w="114"/><text x="76.2618%" y="591.50"></text></g><g><title>ttwu_do_activate (251 samples, 0.07%)</title><rect x="76.0101%" y="597" width="0.0693%" height="15" fill="rgb(207,72,18)" fg:x="275355" fg:w="251"/><text x="76.2601%" y="607.50"></text></g><g><title>psi_task_change (130 samples, 0.04%)</title><rect x="76.0435%" y="581" width="0.0359%" height="15" fill="rgb(236,1,18)" fg:x="275476" fg:w="130"/><text x="76.2935%" y="591.50"></text></g><g><title>psi_group_change (112 samples, 0.03%)</title><rect x="76.0485%" y="565" width="0.0309%" height="15" fill="rgb(227,0,18)" fg:x="275494" fg:w="112"/><text x="76.2985%" y="575.50"></text></g><g><title>__wake_up_common (536 samples, 0.15%)</title><rect x="75.9447%" y="645" width="0.1480%" height="15" fill="rgb(247,37,5)" fg:x="275118" fg:w="536"/><text x="76.1947%" y="655.50"></text></g><g><title>autoremove_wake_function (531 samples, 0.15%)</title><rect x="75.9461%" y="629" width="0.1466%" height="15" fill="rgb(237,179,24)" fg:x="275123" fg:w="531"/><text x="76.1961%" y="639.50"></text></g><g><title>try_to_wake_up (521 samples, 0.14%)</title><rect x="75.9488%" y="613" width="0.1438%" height="15" fill="rgb(226,53,20)" fg:x="275133" fg:w="521"/><text x="76.1988%" y="623.50"></text></g><g><title>__wake_up_common_lock (545 samples, 0.15%)</title><rect x="75.9436%" y="661" width="0.1504%" height="15" fill="rgb(247,75,7)" fg:x="275114" fg:w="545"/><text x="76.1936%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (59 samples, 0.02%)</title><rect x="76.0979%" y="661" width="0.0163%" height="15" fill="rgb(233,96,12)" fg:x="275673" fg:w="59"/><text x="76.3479%" y="671.50"></text></g><g><title>btrfs_set_lock_blocking_read (38 samples, 0.01%)</title><rect x="76.1037%" y="645" width="0.0105%" height="15" fill="rgb(224,125,0)" fg:x="275694" fg:w="38"/><text x="76.3537%" y="655.50"></text></g><g><title>btrfs_tree_read_lock_atomic (178 samples, 0.05%)</title><rect x="76.1142%" y="661" width="0.0491%" height="15" fill="rgb(224,92,25)" fg:x="275732" fg:w="178"/><text x="76.3642%" y="671.50"></text></g><g><title>queued_read_lock_slowpath (152 samples, 0.04%)</title><rect x="76.1214%" y="645" width="0.0420%" height="15" fill="rgb(224,42,24)" fg:x="275758" fg:w="152"/><text x="76.3714%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (69 samples, 0.02%)</title><rect x="76.1443%" y="629" width="0.0190%" height="15" fill="rgb(234,132,49)" fg:x="275841" fg:w="69"/><text x="76.3943%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (152 samples, 0.04%)</title><rect x="76.1744%" y="661" width="0.0420%" height="15" fill="rgb(248,100,35)" fg:x="275950" fg:w="152"/><text x="76.4244%" y="671.50"></text></g><g><title>btrfs_get_64 (41 samples, 0.01%)</title><rect x="76.2307%" y="645" width="0.0113%" height="15" fill="rgb(239,94,40)" fg:x="276154" fg:w="41"/><text x="76.4807%" y="655.50"></text></g><g><title>__radix_tree_lookup (119 samples, 0.03%)</title><rect x="76.2597%" y="629" width="0.0328%" height="15" fill="rgb(235,139,28)" fg:x="276259" fg:w="119"/><text x="76.5097%" y="639.50"></text></g><g><title>find_extent_buffer (197 samples, 0.05%)</title><rect x="76.2450%" y="645" width="0.0544%" height="15" fill="rgb(217,144,7)" fg:x="276206" fg:w="197"/><text x="76.4950%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (333 samples, 0.09%)</title><rect x="76.2163%" y="661" width="0.0919%" height="15" fill="rgb(227,55,4)" fg:x="276102" fg:w="333"/><text x="76.4663%" y="671.50"></text></g><g><title>btrfs_search_slot (3,496 samples, 0.97%)</title><rect x="75.3495%" y="677" width="0.9651%" height="15" fill="rgb(252,82,54)" fg:x="272962" fg:w="3496"/><text x="75.5995%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (3,537 samples, 0.98%)</title><rect x="75.3454%" y="693" width="0.9764%" height="15" fill="rgb(245,172,4)" fg:x="272947" fg:w="3537"/><text x="75.5954%" y="703.50"></text></g><g><title>btrfs_lookup (3,700 samples, 1.02%)</title><rect x="75.3131%" y="725" width="1.0214%" height="15" fill="rgb(207,26,27)" fg:x="272830" fg:w="3700"/><text x="75.5631%" y="735.50"></text></g><g><title>btrfs_lookup_dentry (3,696 samples, 1.02%)</title><rect x="75.3142%" y="709" width="1.0203%" height="15" fill="rgb(252,98,18)" fg:x="272834" fg:w="3696"/><text x="75.5642%" y="719.50"></text></g><g><title>memcg_slab_post_alloc_hook (80 samples, 0.02%)</title><rect x="76.3557%" y="677" width="0.0221%" height="15" fill="rgb(244,8,26)" fg:x="276607" fg:w="80"/><text x="76.6057%" y="687.50"></text></g><g><title>kmem_cache_alloc (207 samples, 0.06%)</title><rect x="76.3444%" y="693" width="0.0571%" height="15" fill="rgb(237,173,45)" fg:x="276566" fg:w="207"/><text x="76.5944%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (75 samples, 0.02%)</title><rect x="76.3808%" y="677" width="0.0207%" height="15" fill="rgb(208,213,49)" fg:x="276698" fg:w="75"/><text x="76.6308%" y="687.50"></text></g><g><title>__d_alloc (248 samples, 0.07%)</title><rect x="76.3347%" y="709" width="0.0685%" height="15" fill="rgb(212,122,37)" fg:x="276531" fg:w="248"/><text x="76.5847%" y="719.50"></text></g><g><title>d_alloc (258 samples, 0.07%)</title><rect x="76.3345%" y="725" width="0.0712%" height="15" fill="rgb(213,80,17)" fg:x="276530" fg:w="258"/><text x="76.5845%" y="735.50"></text></g><g><title>__lookup_hash (4,064 samples, 1.12%)</title><rect x="75.3112%" y="741" width="1.1218%" height="15" fill="rgb(206,210,43)" fg:x="272823" fg:w="4064"/><text x="75.5612%" y="751.50"></text></g><g><title>lookup_dcache (65 samples, 0.02%)</title><rect x="76.4151%" y="725" width="0.0179%" height="15" fill="rgb(229,214,3)" fg:x="276822" fg:w="65"/><text x="76.6651%" y="735.50"></text></g><g><title>d_lookup (62 samples, 0.02%)</title><rect x="76.4159%" y="709" width="0.0171%" height="15" fill="rgb(235,213,29)" fg:x="276825" fg:w="62"/><text x="76.6659%" y="719.50"></text></g><g><title>__d_lookup (54 samples, 0.01%)</title><rect x="76.4181%" y="693" width="0.0149%" height="15" fill="rgb(248,135,26)" fg:x="276833" fg:w="54"/><text x="76.6681%" y="703.50"></text></g><g><title>complete_walk (60 samples, 0.02%)</title><rect x="76.4405%" y="709" width="0.0166%" height="15" fill="rgb(242,188,12)" fg:x="276914" fg:w="60"/><text x="76.6905%" y="719.50"></text></g><g><title>try_to_unlazy (57 samples, 0.02%)</title><rect x="76.4413%" y="693" width="0.0157%" height="15" fill="rgb(245,38,12)" fg:x="276917" fg:w="57"/><text x="76.6913%" y="703.50"></text></g><g><title>inode_permission.part.0 (225 samples, 0.06%)</title><rect x="76.5017%" y="693" width="0.0621%" height="15" fill="rgb(218,42,13)" fg:x="277136" fg:w="225"/><text x="76.7517%" y="703.50"></text></g><g><title>generic_permission (62 samples, 0.02%)</title><rect x="76.5467%" y="677" width="0.0171%" height="15" fill="rgb(238,132,49)" fg:x="277299" fg:w="62"/><text x="76.7967%" y="687.50"></text></g><g><title>lookup_fast (375 samples, 0.10%)</title><rect x="76.5846%" y="677" width="0.1035%" height="15" fill="rgb(209,196,19)" fg:x="277436" fg:w="375"/><text x="76.8346%" y="687.50"></text></g><g><title>__d_lookup_rcu (331 samples, 0.09%)</title><rect x="76.5967%" y="661" width="0.0914%" height="15" fill="rgb(244,131,22)" fg:x="277480" fg:w="331"/><text x="76.8467%" y="671.50"></text></g><g><title>link_path_walk.part.0 (905 samples, 0.25%)</title><rect x="76.4570%" y="709" width="0.2498%" height="15" fill="rgb(223,18,34)" fg:x="276974" fg:w="905"/><text x="76.7070%" y="719.50"></text></g><g><title>walk_component (504 samples, 0.14%)</title><rect x="76.5677%" y="693" width="0.1391%" height="15" fill="rgb(252,124,54)" fg:x="277375" fg:w="504"/><text x="76.8177%" y="703.50"></text></g><g><title>step_into (68 samples, 0.02%)</title><rect x="76.6881%" y="677" width="0.0188%" height="15" fill="rgb(229,106,42)" fg:x="277811" fg:w="68"/><text x="76.9381%" y="687.50"></text></g><g><title>path_init (49 samples, 0.01%)</title><rect x="76.7068%" y="709" width="0.0135%" height="15" fill="rgb(221,129,1)" fg:x="277879" fg:w="49"/><text x="76.9568%" y="719.50"></text></g><g><title>filename_parentat (1,057 samples, 0.29%)</title><rect x="76.4355%" y="741" width="0.2918%" height="15" fill="rgb(229,74,15)" fg:x="276896" fg:w="1057"/><text x="76.6855%" y="751.50"></text></g><g><title>path_parentat (1,045 samples, 0.29%)</title><rect x="76.4388%" y="725" width="0.2885%" height="15" fill="rgb(210,206,50)" fg:x="276908" fg:w="1045"/><text x="76.6888%" y="735.50"></text></g><g><title>filename_create (5,218 samples, 1.44%)</title><rect x="75.3054%" y="757" width="1.4404%" height="15" fill="rgb(251,114,31)" fg:x="272802" fg:w="5218"/><text x="75.5554%" y="767.50"></text></g><g><title>memset_erms (115 samples, 0.03%)</title><rect x="76.7654%" y="725" width="0.0317%" height="15" fill="rgb(215,225,28)" fg:x="278091" fg:w="115"/><text x="77.0154%" y="735.50"></text></g><g><title>kmem_cache_alloc (189 samples, 0.05%)</title><rect x="76.7499%" y="741" width="0.0522%" height="15" fill="rgb(237,109,14)" fg:x="278035" fg:w="189"/><text x="76.9999%" y="751.50"></text></g><g><title>getname_flags.part.0 (394 samples, 0.11%)</title><rect x="76.7466%" y="757" width="0.1088%" height="15" fill="rgb(230,13,37)" fg:x="278023" fg:w="394"/><text x="76.9966%" y="767.50"></text></g><g><title>strncpy_from_user (193 samples, 0.05%)</title><rect x="76.8021%" y="741" width="0.0533%" height="15" fill="rgb(231,40,28)" fg:x="278224" fg:w="193"/><text x="77.0521%" y="751.50"></text></g><g><title>__check_object_size (95 samples, 0.03%)</title><rect x="76.8291%" y="725" width="0.0262%" height="15" fill="rgb(231,202,18)" fg:x="278322" fg:w="95"/><text x="77.0791%" y="735.50"></text></g><g><title>apparmor_path_symlink (39 samples, 0.01%)</title><rect x="76.8711%" y="741" width="0.0108%" height="15" fill="rgb(225,33,18)" fg:x="278474" fg:w="39"/><text x="77.1211%" y="751.50"></text></g><g><title>security_path_symlink (96 samples, 0.03%)</title><rect x="76.8678%" y="757" width="0.0265%" height="15" fill="rgb(223,64,47)" fg:x="278462" fg:w="96"/><text x="77.1178%" y="767.50"></text></g><g><title>tomoyo_path_symlink (45 samples, 0.01%)</title><rect x="76.8819%" y="741" width="0.0124%" height="15" fill="rgb(234,114,13)" fg:x="278513" fg:w="45"/><text x="77.1319%" y="751.50"></text></g><g><title>tomoyo_path_perm (43 samples, 0.01%)</title><rect x="76.8824%" y="725" width="0.0119%" height="15" fill="rgb(248,56,40)" fg:x="278515" fg:w="43"/><text x="77.1324%" y="735.50"></text></g><g><title>btrfs_trans_release_metadata (61 samples, 0.02%)</title><rect x="76.9376%" y="709" width="0.0168%" height="15" fill="rgb(221,194,21)" fg:x="278715" fg:w="61"/><text x="77.1876%" y="719.50"></text></g><g><title>btrfs_block_rsv_release (57 samples, 0.02%)</title><rect x="76.9387%" y="693" width="0.0157%" height="15" fill="rgb(242,108,46)" fg:x="278719" fg:w="57"/><text x="77.1887%" y="703.50"></text></g><g><title>__btrfs_end_transaction (156 samples, 0.04%)</title><rect x="76.9189%" y="725" width="0.0431%" height="15" fill="rgb(220,106,10)" fg:x="278647" fg:w="156"/><text x="77.1689%" y="735.50"></text></g><g><title>btrfs_comp_cpu_keys (51 samples, 0.01%)</title><rect x="76.9876%" y="661" width="0.0141%" height="15" fill="rgb(211,88,4)" fg:x="278896" fg:w="51"/><text x="77.2376%" y="671.50"></text></g><g><title>__btrfs_add_delayed_item (85 samples, 0.02%)</title><rect x="76.9829%" y="677" width="0.0235%" height="15" fill="rgb(214,95,34)" fg:x="278879" fg:w="85"/><text x="77.2329%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (45 samples, 0.01%)</title><rect x="77.0064%" y="677" width="0.0124%" height="15" fill="rgb(250,160,33)" fg:x="278964" fg:w="45"/><text x="77.2564%" y="687.50"></text></g><g><title>__kmalloc (97 samples, 0.03%)</title><rect x="77.0188%" y="677" width="0.0268%" height="15" fill="rgb(225,29,10)" fg:x="279009" fg:w="97"/><text x="77.2688%" y="687.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (48 samples, 0.01%)</title><rect x="77.0538%" y="677" width="0.0133%" height="15" fill="rgb(224,28,30)" fg:x="279136" fg:w="48"/><text x="77.3038%" y="687.50"></text></g><g><title>btrfs_block_rsv_migrate (40 samples, 0.01%)</title><rect x="77.0560%" y="661" width="0.0110%" height="15" fill="rgb(231,77,4)" fg:x="279144" fg:w="40"/><text x="77.3060%" y="671.50"></text></g><g><title>_raw_spin_lock (37 samples, 0.01%)</title><rect x="77.0569%" y="645" width="0.0102%" height="15" fill="rgb(209,63,21)" fg:x="279147" fg:w="37"/><text x="77.3069%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (365 samples, 0.10%)</title><rect x="76.9768%" y="693" width="0.1008%" height="15" fill="rgb(226,22,11)" fg:x="278857" fg:w="365"/><text x="77.2268%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (45 samples, 0.01%)</title><rect x="77.0864%" y="677" width="0.0124%" height="15" fill="rgb(216,82,30)" fg:x="279254" fg:w="45"/><text x="77.3364%" y="687.50"></text></g><g><title>btrfs_release_path (74 samples, 0.02%)</title><rect x="77.0823%" y="693" width="0.0204%" height="15" fill="rgb(246,227,38)" fg:x="279239" fg:w="74"/><text x="77.3323%" y="703.50"></text></g><g><title>finish_wait (144 samples, 0.04%)</title><rect x="77.1590%" y="613" width="0.0398%" height="15" fill="rgb(251,203,53)" fg:x="279517" fg:w="144"/><text x="77.4090%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (142 samples, 0.04%)</title><rect x="77.1596%" y="597" width="0.0392%" height="15" fill="rgb(254,101,1)" fg:x="279519" fg:w="142"/><text x="77.4096%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (135 samples, 0.04%)</title><rect x="77.1615%" y="581" width="0.0373%" height="15" fill="rgb(241,180,5)" fg:x="279526" fg:w="135"/><text x="77.4115%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (581 samples, 0.16%)</title><rect x="77.2079%" y="597" width="0.1604%" height="15" fill="rgb(218,168,4)" fg:x="279694" fg:w="581"/><text x="77.4579%" y="607.50"></text></g><g><title>native_queued_spin_lock_slowpath (567 samples, 0.16%)</title><rect x="77.2117%" y="581" width="0.1565%" height="15" fill="rgb(224,223,32)" fg:x="279708" fg:w="567"/><text x="77.4617%" y="591.50"></text></g><g><title>prepare_to_wait_event (617 samples, 0.17%)</title><rect x="77.1988%" y="613" width="0.1703%" height="15" fill="rgb(236,106,22)" fg:x="279661" fg:w="617"/><text x="77.4488%" y="623.50"></text></g><g><title>queued_read_lock_slowpath (204 samples, 0.06%)</title><rect x="77.3691%" y="613" width="0.0563%" height="15" fill="rgb(206,121,5)" fg:x="280278" fg:w="204"/><text x="77.6191%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (126 samples, 0.03%)</title><rect x="77.3906%" y="597" width="0.0348%" height="15" fill="rgb(233,87,28)" fg:x="280356" fg:w="126"/><text x="77.6406%" y="607.50"></text></g><g><title>dequeue_entity (68 samples, 0.02%)</title><rect x="77.4406%" y="565" width="0.0188%" height="15" fill="rgb(236,137,17)" fg:x="280537" fg:w="68"/><text x="77.6906%" y="575.50"></text></g><g><title>dequeue_task_fair (81 samples, 0.02%)</title><rect x="77.4392%" y="581" width="0.0224%" height="15" fill="rgb(209,183,38)" fg:x="280532" fg:w="81"/><text x="77.6892%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.02%)</title><rect x="77.4662%" y="565" width="0.0202%" height="15" fill="rgb(206,162,44)" fg:x="280630" fg:w="73"/><text x="77.7162%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.02%)</title><rect x="77.4679%" y="549" width="0.0185%" height="15" fill="rgb(237,70,39)" fg:x="280636" fg:w="67"/><text x="77.7179%" y="559.50"></text></g><g><title>native_write_msr (64 samples, 0.02%)</title><rect x="77.4687%" y="533" width="0.0177%" height="15" fill="rgb(212,176,5)" fg:x="280639" fg:w="64"/><text x="77.7187%" y="543.50"></text></g><g><title>finish_task_switch (93 samples, 0.03%)</title><rect x="77.4616%" y="581" width="0.0257%" height="15" fill="rgb(232,95,16)" fg:x="280613" fg:w="93"/><text x="77.7116%" y="591.50"></text></g><g><title>psi_task_change (52 samples, 0.01%)</title><rect x="77.4947%" y="581" width="0.0144%" height="15" fill="rgb(219,115,35)" fg:x="280733" fg:w="52"/><text x="77.7447%" y="591.50"></text></g><g><title>psi_group_change (46 samples, 0.01%)</title><rect x="77.4963%" y="565" width="0.0127%" height="15" fill="rgb(251,67,27)" fg:x="280739" fg:w="46"/><text x="77.7463%" y="575.50"></text></g><g><title>__btrfs_tree_read_lock (1,332 samples, 0.37%)</title><rect x="77.1477%" y="629" width="0.3677%" height="15" fill="rgb(222,95,40)" fg:x="279476" fg:w="1332"/><text x="77.3977%" y="639.50"></text></g><g><title>schedule (326 samples, 0.09%)</title><rect x="77.4254%" y="613" width="0.0900%" height="15" fill="rgb(250,35,16)" fg:x="280482" fg:w="326"/><text x="77.6754%" y="623.50"></text></g><g><title>__schedule (317 samples, 0.09%)</title><rect x="77.4279%" y="597" width="0.0875%" height="15" fill="rgb(224,86,44)" fg:x="280491" fg:w="317"/><text x="77.6779%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (1,360 samples, 0.38%)</title><rect x="77.1463%" y="645" width="0.3754%" height="15" fill="rgb(237,53,53)" fg:x="279471" fg:w="1360"/><text x="77.3963%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (40 samples, 0.01%)</title><rect x="77.5347%" y="613" width="0.0110%" height="15" fill="rgb(208,171,33)" fg:x="280878" fg:w="40"/><text x="77.7847%" y="623.50"></text></g><g><title>prepare_to_wait_event (53 samples, 0.01%)</title><rect x="77.5317%" y="629" width="0.0146%" height="15" fill="rgb(222,64,27)" fg:x="280867" fg:w="53"/><text x="77.7817%" y="639.50"></text></g><g><title>queued_write_lock_slowpath (37 samples, 0.01%)</title><rect x="77.5463%" y="629" width="0.0102%" height="15" fill="rgb(221,121,35)" fg:x="280920" fg:w="37"/><text x="77.7963%" y="639.50"></text></g><g><title>dequeue_entity (49 samples, 0.01%)</title><rect x="77.5667%" y="581" width="0.0135%" height="15" fill="rgb(228,137,42)" fg:x="280994" fg:w="49"/><text x="77.8167%" y="591.50"></text></g><g><title>dequeue_task_fair (57 samples, 0.02%)</title><rect x="77.5648%" y="597" width="0.0157%" height="15" fill="rgb(227,54,21)" fg:x="280987" fg:w="57"/><text x="77.8148%" y="607.50"></text></g><g><title>psi_task_change (43 samples, 0.01%)</title><rect x="77.5957%" y="597" width="0.0119%" height="15" fill="rgb(240,168,33)" fg:x="281099" fg:w="43"/><text x="77.8457%" y="607.50"></text></g><g><title>__btrfs_tree_lock (324 samples, 0.09%)</title><rect x="77.5217%" y="645" width="0.0894%" height="15" fill="rgb(243,159,6)" fg:x="280831" fg:w="324"/><text x="77.7717%" y="655.50"></text></g><g><title>schedule (198 samples, 0.05%)</title><rect x="77.5565%" y="629" width="0.0547%" height="15" fill="rgb(205,211,41)" fg:x="280957" fg:w="198"/><text x="77.8065%" y="639.50"></text></g><g><title>__schedule (196 samples, 0.05%)</title><rect x="77.5571%" y="613" width="0.0541%" height="15" fill="rgb(253,30,1)" fg:x="280959" fg:w="196"/><text x="77.8071%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (38 samples, 0.01%)</title><rect x="77.6142%" y="645" width="0.0105%" height="15" fill="rgb(226,80,18)" fg:x="281166" fg:w="38"/><text x="77.8642%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (471 samples, 0.13%)</title><rect x="77.6288%" y="645" width="0.1300%" height="15" fill="rgb(253,156,46)" fg:x="281219" fg:w="471"/><text x="77.8788%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (454 samples, 0.13%)</title><rect x="77.6335%" y="629" width="0.1253%" height="15" fill="rgb(248,87,27)" fg:x="281236" fg:w="454"/><text x="77.8835%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (92 samples, 0.03%)</title><rect x="77.7335%" y="613" width="0.0254%" height="15" fill="rgb(227,122,2)" fg:x="281598" fg:w="92"/><text x="77.9835%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (129 samples, 0.04%)</title><rect x="77.7589%" y="645" width="0.0356%" height="15" fill="rgb(229,94,39)" fg:x="281690" fg:w="129"/><text x="78.0089%" y="655.50"></text></g><g><title>__radix_tree_lookup (79 samples, 0.02%)</title><rect x="77.8234%" y="613" width="0.0218%" height="15" fill="rgb(225,173,31)" fg:x="281924" fg:w="79"/><text x="78.0734%" y="623.50"></text></g><g><title>find_extent_buffer (143 samples, 0.04%)</title><rect x="77.8149%" y="629" width="0.0395%" height="15" fill="rgb(239,176,30)" fg:x="281893" fg:w="143"/><text x="78.0649%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (240 samples, 0.07%)</title><rect x="77.7945%" y="645" width="0.0663%" height="15" fill="rgb(212,104,21)" fg:x="281819" fg:w="240"/><text x="78.0445%" y="655.50"></text></g><g><title>__push_leaf_left (44 samples, 0.01%)</title><rect x="77.8734%" y="613" width="0.0121%" height="15" fill="rgb(240,209,40)" fg:x="282105" fg:w="44"/><text x="78.1234%" y="623.50"></text></g><g><title>push_leaf_left (54 samples, 0.01%)</title><rect x="77.8729%" y="629" width="0.0149%" height="15" fill="rgb(234,195,5)" fg:x="282103" fg:w="54"/><text x="78.1229%" y="639.50"></text></g><g><title>__push_leaf_right (76 samples, 0.02%)</title><rect x="77.8886%" y="613" width="0.0210%" height="15" fill="rgb(238,213,1)" fg:x="282160" fg:w="76"/><text x="78.1386%" y="623.50"></text></g><g><title>split_leaf (191 samples, 0.05%)</title><rect x="77.8607%" y="645" width="0.0527%" height="15" fill="rgb(235,182,54)" fg:x="282059" fg:w="191"/><text x="78.1107%" y="655.50"></text></g><g><title>push_leaf_right (93 samples, 0.03%)</title><rect x="77.8878%" y="629" width="0.0257%" height="15" fill="rgb(229,50,46)" fg:x="282157" fg:w="93"/><text x="78.1378%" y="639.50"></text></g><g><title>select_task_rq_fair (83 samples, 0.02%)</title><rect x="77.9488%" y="565" width="0.0229%" height="15" fill="rgb(219,145,13)" fg:x="282378" fg:w="83"/><text x="78.1988%" y="575.50"></text></g><g><title>enqueue_entity (73 samples, 0.02%)</title><rect x="77.9783%" y="533" width="0.0202%" height="15" fill="rgb(220,226,10)" fg:x="282485" fg:w="73"/><text x="78.2283%" y="543.50"></text></g><g><title>enqueue_task_fair (99 samples, 0.03%)</title><rect x="77.9747%" y="549" width="0.0273%" height="15" fill="rgb(248,47,30)" fg:x="282472" fg:w="99"/><text x="78.2247%" y="559.50"></text></g><g><title>ttwu_do_activate (194 samples, 0.05%)</title><rect x="77.9728%" y="565" width="0.0536%" height="15" fill="rgb(231,209,44)" fg:x="282465" fg:w="194"/><text x="78.2228%" y="575.50"></text></g><g><title>psi_task_change (88 samples, 0.02%)</title><rect x="78.0020%" y="549" width="0.0243%" height="15" fill="rgb(209,80,30)" fg:x="282571" fg:w="88"/><text x="78.2520%" y="559.50"></text></g><g><title>psi_group_change (77 samples, 0.02%)</title><rect x="78.0051%" y="533" width="0.0213%" height="15" fill="rgb(232,9,14)" fg:x="282582" fg:w="77"/><text x="78.2551%" y="543.50"></text></g><g><title>__wake_up_common (407 samples, 0.11%)</title><rect x="77.9225%" y="613" width="0.1123%" height="15" fill="rgb(243,91,43)" fg:x="282283" fg:w="407"/><text x="78.1725%" y="623.50"></text></g><g><title>autoremove_wake_function (402 samples, 0.11%)</title><rect x="77.9239%" y="597" width="0.1110%" height="15" fill="rgb(231,90,52)" fg:x="282288" fg:w="402"/><text x="78.1739%" y="607.50"></text></g><g><title>try_to_wake_up (389 samples, 0.11%)</title><rect x="77.9275%" y="581" width="0.1074%" height="15" fill="rgb(253,192,44)" fg:x="282301" fg:w="389"/><text x="78.1775%" y="591.50"></text></g><g><title>__wake_up_common_lock (415 samples, 0.11%)</title><rect x="77.9217%" y="629" width="0.1146%" height="15" fill="rgb(241,66,31)" fg:x="282280" fg:w="415"/><text x="78.1717%" y="639.50"></text></g><g><title>btrfs_search_slot (3,329 samples, 0.92%)</title><rect x="77.1281%" y="661" width="0.9190%" height="15" fill="rgb(235,81,37)" fg:x="279405" fg:w="3329"/><text x="77.3781%" y="671.50"></text></g><g><title>unlock_up (484 samples, 0.13%)</title><rect x="77.9134%" y="645" width="0.1336%" height="15" fill="rgb(223,221,9)" fg:x="282250" fg:w="484"/><text x="78.1634%" y="655.50"></text></g><g><title>btrfs_get_token_32 (378 samples, 0.10%)</title><rect x="78.0711%" y="645" width="0.1043%" height="15" fill="rgb(242,180,7)" fg:x="282821" fg:w="378"/><text x="78.3211%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (46 samples, 0.01%)</title><rect x="78.1627%" y="629" width="0.0127%" height="15" fill="rgb(243,78,19)" fg:x="283153" fg:w="46"/><text x="78.4127%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (38 samples, 0.01%)</title><rect x="78.1754%" y="645" width="0.0105%" height="15" fill="rgb(233,23,17)" fg:x="283199" fg:w="38"/><text x="78.4254%" y="655.50"></text></g><g><title>btrfs_set_token_32 (304 samples, 0.08%)</title><rect x="78.1922%" y="645" width="0.0839%" height="15" fill="rgb(252,122,45)" fg:x="283260" fg:w="304"/><text x="78.4422%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (42 samples, 0.01%)</title><rect x="78.2646%" y="629" width="0.0116%" height="15" fill="rgb(247,108,20)" fg:x="283522" fg:w="42"/><text x="78.5146%" y="639.50"></text></g><g><title>memcpy_extent_buffer (144 samples, 0.04%)</title><rect x="78.2820%" y="645" width="0.0398%" height="15" fill="rgb(235,84,21)" fg:x="283585" fg:w="144"/><text x="78.5320%" y="655.50"></text></g><g><title>memmove (112 samples, 0.03%)</title><rect x="78.2908%" y="629" width="0.0309%" height="15" fill="rgb(247,129,10)" fg:x="283617" fg:w="112"/><text x="78.5408%" y="639.50"></text></g><g><title>memmove_extent_buffer (128 samples, 0.04%)</title><rect x="78.3217%" y="645" width="0.0353%" height="15" fill="rgb(208,173,14)" fg:x="283729" fg:w="128"/><text x="78.5717%" y="655.50"></text></g><g><title>memmove (88 samples, 0.02%)</title><rect x="78.3327%" y="629" width="0.0243%" height="15" fill="rgb(236,31,38)" fg:x="283769" fg:w="88"/><text x="78.5827%" y="639.50"></text></g><g><title>insert_with_overflow (4,501 samples, 1.24%)</title><rect x="77.1176%" y="693" width="1.2425%" height="15" fill="rgb(232,65,17)" fg:x="279367" fg:w="4501"/><text x="77.3676%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (4,466 samples, 1.23%)</title><rect x="77.1273%" y="677" width="1.2328%" height="15" fill="rgb(224,45,49)" fg:x="279402" fg:w="4466"/><text x="77.3773%" y="687.50"></text></g><g><title>setup_items_for_insert (1,134 samples, 0.31%)</title><rect x="78.0470%" y="661" width="0.3130%" height="15" fill="rgb(225,2,53)" fg:x="282734" fg:w="1134"/><text x="78.2970%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (5,130 samples, 1.42%)</title><rect x="76.9699%" y="709" width="1.4161%" height="15" fill="rgb(248,210,53)" fg:x="278832" fg:w="5130"/><text x="77.2199%" y="719.50"></text></g><g><title>btrfs_delayed_update_inode (94 samples, 0.03%)</title><rect x="78.3927%" y="693" width="0.0259%" height="15" fill="rgb(211,1,30)" fg:x="283986" fg:w="94"/><text x="78.6427%" y="703.50"></text></g><g><title>btrfs_update_inode (155 samples, 0.04%)</title><rect x="78.3860%" y="709" width="0.0428%" height="15" fill="rgb(224,96,15)" fg:x="283962" fg:w="155"/><text x="78.6360%" y="719.50"></text></g><g><title>btrfs_update_root_times (37 samples, 0.01%)</title><rect x="78.4186%" y="693" width="0.0102%" height="15" fill="rgb(252,45,11)" fg:x="284080" fg:w="37"/><text x="78.6686%" y="703.50"></text></g><g><title>btrfs_add_link (5,323 samples, 1.47%)</title><rect x="76.9619%" y="725" width="1.4694%" height="15" fill="rgb(220,125,38)" fg:x="278803" fg:w="5323"/><text x="77.2119%" y="735.50"></text></g><g><title>ttwu_do_activate (39 samples, 0.01%)</title><rect x="78.4633%" y="661" width="0.0108%" height="15" fill="rgb(243,161,33)" fg:x="284242" fg:w="39"/><text x="78.7133%" y="671.50"></text></g><g><title>__queue_work (125 samples, 0.03%)</title><rect x="78.4434%" y="693" width="0.0345%" height="15" fill="rgb(248,197,34)" fg:x="284170" fg:w="125"/><text x="78.6934%" y="703.50"></text></g><g><title>try_to_wake_up (92 samples, 0.03%)</title><rect x="78.4526%" y="677" width="0.0254%" height="15" fill="rgb(228,165,23)" fg:x="284203" fg:w="92"/><text x="78.7026%" y="687.50"></text></g><g><title>btrfs_btree_balance_dirty (168 samples, 0.05%)</title><rect x="78.4318%" y="725" width="0.0464%" height="15" fill="rgb(236,94,38)" fg:x="284128" fg:w="168"/><text x="78.6818%" y="735.50"></text></g><g><title>queue_work_on (127 samples, 0.04%)</title><rect x="78.4432%" y="709" width="0.0351%" height="15" fill="rgb(220,13,23)" fg:x="284169" fg:w="127"/><text x="78.6932%" y="719.50"></text></g><g><title>btrfs_find_free_ino (42 samples, 0.01%)</title><rect x="78.4785%" y="725" width="0.0116%" height="15" fill="rgb(234,26,39)" fg:x="284297" fg:w="42"/><text x="78.7285%" y="735.50"></text></g><g><title>__wake_up_common (138 samples, 0.04%)</title><rect x="78.4940%" y="677" width="0.0381%" height="15" fill="rgb(205,117,44)" fg:x="284353" fg:w="138"/><text x="78.7440%" y="687.50"></text></g><g><title>autoremove_wake_function (136 samples, 0.04%)</title><rect x="78.4945%" y="661" width="0.0375%" height="15" fill="rgb(250,42,2)" fg:x="284355" fg:w="136"/><text x="78.7445%" y="671.50"></text></g><g><title>try_to_wake_up (136 samples, 0.04%)</title><rect x="78.4945%" y="645" width="0.0375%" height="15" fill="rgb(223,83,14)" fg:x="284355" fg:w="136"/><text x="78.7445%" y="655.50"></text></g><g><title>__wake_up_common_lock (141 samples, 0.04%)</title><rect x="78.4934%" y="693" width="0.0389%" height="15" fill="rgb(241,147,50)" fg:x="284351" fg:w="141"/><text x="78.7434%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (41 samples, 0.01%)</title><rect x="78.5362%" y="693" width="0.0113%" height="15" fill="rgb(218,90,6)" fg:x="284506" fg:w="41"/><text x="78.7862%" y="703.50"></text></g><g><title>btrfs_free_path (224 samples, 0.06%)</title><rect x="78.4901%" y="725" width="0.0618%" height="15" fill="rgb(210,191,5)" fg:x="284339" fg:w="224"/><text x="78.7401%" y="735.50"></text></g><g><title>btrfs_release_path (222 samples, 0.06%)</title><rect x="78.4906%" y="709" width="0.0613%" height="15" fill="rgb(225,139,19)" fg:x="284341" fg:w="222"/><text x="78.7406%" y="719.50"></text></g><g><title>finish_wait (140 samples, 0.04%)</title><rect x="78.5958%" y="661" width="0.0386%" height="15" fill="rgb(210,1,33)" fg:x="284722" fg:w="140"/><text x="78.8458%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (134 samples, 0.04%)</title><rect x="78.5975%" y="645" width="0.0370%" height="15" fill="rgb(213,50,3)" fg:x="284728" fg:w="134"/><text x="78.8475%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (129 samples, 0.04%)</title><rect x="78.5989%" y="629" width="0.0356%" height="15" fill="rgb(234,227,4)" fg:x="284733" fg:w="129"/><text x="78.8489%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (535 samples, 0.15%)</title><rect x="78.6441%" y="645" width="0.1477%" height="15" fill="rgb(246,63,5)" fg:x="284897" fg:w="535"/><text x="78.8941%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (524 samples, 0.14%)</title><rect x="78.6472%" y="629" width="0.1446%" height="15" fill="rgb(245,136,27)" fg:x="284908" fg:w="524"/><text x="78.8972%" y="639.50"></text></g><g><title>prepare_to_wait_event (578 samples, 0.16%)</title><rect x="78.6345%" y="661" width="0.1596%" height="15" fill="rgb(247,199,27)" fg:x="284862" fg:w="578"/><text x="78.8845%" y="671.50"></text></g><g><title>queued_read_lock_slowpath (240 samples, 0.07%)</title><rect x="78.7940%" y="661" width="0.0663%" height="15" fill="rgb(252,158,49)" fg:x="285440" fg:w="240"/><text x="79.0440%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (150 samples, 0.04%)</title><rect x="78.8189%" y="645" width="0.0414%" height="15" fill="rgb(254,73,1)" fg:x="285530" fg:w="150"/><text x="79.0689%" y="655.50"></text></g><g><title>dequeue_entity (71 samples, 0.02%)</title><rect x="78.8741%" y="613" width="0.0196%" height="15" fill="rgb(248,93,19)" fg:x="285730" fg:w="71"/><text x="79.1241%" y="623.50"></text></g><g><title>dequeue_task_fair (92 samples, 0.03%)</title><rect x="78.8708%" y="629" width="0.0254%" height="15" fill="rgb(206,67,5)" fg:x="285718" fg:w="92"/><text x="79.1208%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.02%)</title><rect x="78.8995%" y="613" width="0.0182%" height="15" fill="rgb(209,210,4)" fg:x="285822" fg:w="66"/><text x="79.1495%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.02%)</title><rect x="78.8997%" y="597" width="0.0179%" height="15" fill="rgb(214,185,36)" fg:x="285823" fg:w="65"/><text x="79.1497%" y="607.50"></text></g><g><title>native_write_msr (65 samples, 0.02%)</title><rect x="78.8997%" y="581" width="0.0179%" height="15" fill="rgb(233,191,26)" fg:x="285823" fg:w="65"/><text x="79.1497%" y="591.50"></text></g><g><title>finish_task_switch (79 samples, 0.02%)</title><rect x="78.8962%" y="629" width="0.0218%" height="15" fill="rgb(248,94,17)" fg:x="285810" fg:w="79"/><text x="79.1462%" y="639.50"></text></g><g><title>psi_task_change (58 samples, 0.02%)</title><rect x="78.9279%" y="629" width="0.0160%" height="15" fill="rgb(250,64,4)" fg:x="285925" fg:w="58"/><text x="79.1779%" y="639.50"></text></g><g><title>psi_group_change (53 samples, 0.01%)</title><rect x="78.9293%" y="613" width="0.0146%" height="15" fill="rgb(218,41,53)" fg:x="285930" fg:w="53"/><text x="79.1793%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (1,327 samples, 0.37%)</title><rect x="78.5842%" y="677" width="0.3663%" height="15" fill="rgb(251,176,28)" fg:x="284680" fg:w="1327"/><text x="78.8342%" y="687.50"></text></g><g><title>schedule (327 samples, 0.09%)</title><rect x="78.8603%" y="661" width="0.0903%" height="15" fill="rgb(247,22,9)" fg:x="285680" fg:w="327"/><text x="79.1103%" y="671.50"></text></g><g><title>__schedule (322 samples, 0.09%)</title><rect x="78.8616%" y="645" width="0.0889%" height="15" fill="rgb(218,201,14)" fg:x="285685" fg:w="322"/><text x="79.1116%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (1,360 samples, 0.38%)</title><rect x="78.5823%" y="693" width="0.3754%" height="15" fill="rgb(218,94,10)" fg:x="284673" fg:w="1360"/><text x="78.8323%" y="703.50"></text></g><g><title>_raw_spin_lock_irqsave (41 samples, 0.01%)</title><rect x="78.9726%" y="661" width="0.0113%" height="15" fill="rgb(222,183,52)" fg:x="286087" fg:w="41"/><text x="79.2226%" y="671.50"></text></g><g><title>prepare_to_wait_event (64 samples, 0.02%)</title><rect x="78.9685%" y="677" width="0.0177%" height="15" fill="rgb(242,140,25)" fg:x="286072" fg:w="64"/><text x="79.2185%" y="687.50"></text></g><g><title>dequeue_entity (50 samples, 0.01%)</title><rect x="79.0066%" y="629" width="0.0138%" height="15" fill="rgb(235,197,38)" fg:x="286210" fg:w="50"/><text x="79.2566%" y="639.50"></text></g><g><title>dequeue_task_fair (61 samples, 0.02%)</title><rect x="79.0044%" y="645" width="0.0168%" height="15" fill="rgb(237,136,15)" fg:x="286202" fg:w="61"/><text x="79.2544%" y="655.50"></text></g><g><title>finish_task_switch (66 samples, 0.02%)</title><rect x="79.0212%" y="645" width="0.0182%" height="15" fill="rgb(223,44,49)" fg:x="286263" fg:w="66"/><text x="79.2712%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.01%)</title><rect x="79.0248%" y="629" width="0.0146%" height="15" fill="rgb(227,71,15)" fg:x="286276" fg:w="53"/><text x="79.2748%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.01%)</title><rect x="79.0256%" y="613" width="0.0138%" height="15" fill="rgb(225,153,20)" fg:x="286279" fg:w="50"/><text x="79.2756%" y="623.50"></text></g><g><title>native_write_msr (50 samples, 0.01%)</title><rect x="79.0256%" y="597" width="0.0138%" height="15" fill="rgb(210,190,26)" fg:x="286279" fg:w="50"/><text x="79.2756%" y="607.50"></text></g><g><title>psi_task_change (39 samples, 0.01%)</title><rect x="79.0472%" y="645" width="0.0108%" height="15" fill="rgb(223,147,5)" fg:x="286357" fg:w="39"/><text x="79.2972%" y="655.50"></text></g><g><title>__btrfs_tree_lock (381 samples, 0.11%)</title><rect x="78.9577%" y="693" width="0.1052%" height="15" fill="rgb(207,14,23)" fg:x="286033" fg:w="381"/><text x="79.2077%" y="703.50"></text></g><g><title>schedule (242 samples, 0.07%)</title><rect x="78.9961%" y="677" width="0.0668%" height="15" fill="rgb(211,195,53)" fg:x="286172" fg:w="242"/><text x="79.2461%" y="687.50"></text></g><g><title>__schedule (239 samples, 0.07%)</title><rect x="78.9969%" y="661" width="0.0660%" height="15" fill="rgb(237,75,46)" fg:x="286175" fg:w="239"/><text x="79.2469%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (48 samples, 0.01%)</title><rect x="79.0703%" y="693" width="0.0133%" height="15" fill="rgb(254,55,14)" fg:x="286441" fg:w="48"/><text x="79.3203%" y="703.50"></text></g><g><title>btrfs_try_tree_write_lock (675 samples, 0.19%)</title><rect x="79.0839%" y="693" width="0.1863%" height="15" fill="rgb(230,185,30)" fg:x="286490" fg:w="675"/><text x="79.3339%" y="703.50"></text></g><g><title>queued_write_lock_slowpath (652 samples, 0.18%)</title><rect x="79.0902%" y="677" width="0.1800%" height="15" fill="rgb(220,14,11)" fg:x="286513" fg:w="652"/><text x="79.3402%" y="687.50"></text></g><g><title>native_queued_spin_lock_slowpath (156 samples, 0.04%)</title><rect x="79.2271%" y="661" width="0.0431%" height="15" fill="rgb(215,169,44)" fg:x="287009" fg:w="156"/><text x="79.4771%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (127 samples, 0.04%)</title><rect x="79.2702%" y="693" width="0.0351%" height="15" fill="rgb(253,203,20)" fg:x="287165" fg:w="127"/><text x="79.5202%" y="703.50"></text></g><g><title>__radix_tree_lookup (56 samples, 0.02%)</title><rect x="79.3370%" y="661" width="0.0155%" height="15" fill="rgb(229,225,17)" fg:x="287407" fg:w="56"/><text x="79.5870%" y="671.50"></text></g><g><title>find_extent_buffer (131 samples, 0.04%)</title><rect x="79.3249%" y="677" width="0.0362%" height="15" fill="rgb(236,76,26)" fg:x="287363" fg:w="131"/><text x="79.5749%" y="687.50"></text></g><g><title>read_block_for_search.isra.0 (230 samples, 0.06%)</title><rect x="79.3053%" y="693" width="0.0635%" height="15" fill="rgb(234,15,30)" fg:x="287292" fg:w="230"/><text x="79.5553%" y="703.50"></text></g><g><title>alloc_tree_block_no_bg_flush (76 samples, 0.02%)</title><rect x="79.3693%" y="677" width="0.0210%" height="15" fill="rgb(211,113,48)" fg:x="287524" fg:w="76"/><text x="79.6193%" y="687.50"></text></g><g><title>btrfs_alloc_tree_block (76 samples, 0.02%)</title><rect x="79.3693%" y="661" width="0.0210%" height="15" fill="rgb(221,31,36)" fg:x="287524" fg:w="76"/><text x="79.6193%" y="671.50"></text></g><g><title>__push_leaf_left (40 samples, 0.01%)</title><rect x="79.3975%" y="661" width="0.0110%" height="15" fill="rgb(215,118,52)" fg:x="287626" fg:w="40"/><text x="79.6475%" y="671.50"></text></g><g><title>push_leaf_left (50 samples, 0.01%)</title><rect x="79.3972%" y="677" width="0.0138%" height="15" fill="rgb(241,151,27)" fg:x="287625" fg:w="50"/><text x="79.6472%" y="687.50"></text></g><g><title>split_leaf (155 samples, 0.04%)</title><rect x="79.3687%" y="693" width="0.0428%" height="15" fill="rgb(253,51,3)" fg:x="287522" fg:w="155"/><text x="79.6187%" y="703.50"></text></g><g><title>select_task_rq_fair (100 samples, 0.03%)</title><rect x="79.4518%" y="613" width="0.0276%" height="15" fill="rgb(216,201,24)" fg:x="287823" fg:w="100"/><text x="79.7018%" y="623.50"></text></g><g><title>enqueue_entity (73 samples, 0.02%)</title><rect x="79.4888%" y="581" width="0.0202%" height="15" fill="rgb(231,107,4)" fg:x="287957" fg:w="73"/><text x="79.7388%" y="591.50"></text></g><g><title>enqueue_task_fair (102 samples, 0.03%)</title><rect x="79.4847%" y="597" width="0.0282%" height="15" fill="rgb(243,97,54)" fg:x="287942" fg:w="102"/><text x="79.7347%" y="607.50"></text></g><g><title>ttwu_do_activate (203 samples, 0.06%)</title><rect x="79.4833%" y="613" width="0.0560%" height="15" fill="rgb(221,32,51)" fg:x="287937" fg:w="203"/><text x="79.7333%" y="623.50"></text></g><g><title>psi_task_change (96 samples, 0.03%)</title><rect x="79.5128%" y="597" width="0.0265%" height="15" fill="rgb(218,171,35)" fg:x="288044" fg:w="96"/><text x="79.7628%" y="607.50"></text></g><g><title>psi_group_change (82 samples, 0.02%)</title><rect x="79.5167%" y="581" width="0.0226%" height="15" fill="rgb(214,20,53)" fg:x="288058" fg:w="82"/><text x="79.7667%" y="591.50"></text></g><g><title>__wake_up_common (495 samples, 0.14%)</title><rect x="79.4184%" y="661" width="0.1366%" height="15" fill="rgb(239,9,52)" fg:x="287702" fg:w="495"/><text x="79.6684%" y="671.50"></text></g><g><title>autoremove_wake_function (488 samples, 0.13%)</title><rect x="79.4204%" y="645" width="0.1347%" height="15" fill="rgb(215,114,45)" fg:x="287709" fg:w="488"/><text x="79.6704%" y="655.50"></text></g><g><title>try_to_wake_up (480 samples, 0.13%)</title><rect x="79.4226%" y="629" width="0.1325%" height="15" fill="rgb(208,118,9)" fg:x="287717" fg:w="480"/><text x="79.6726%" y="639.50"></text></g><g><title>__wake_up_common_lock (502 samples, 0.14%)</title><rect x="79.4176%" y="677" width="0.1386%" height="15" fill="rgb(235,7,39)" fg:x="287699" fg:w="502"/><text x="79.6676%" y="687.50"></text></g><g><title>btrfs_search_slot (3,628 samples, 1.00%)</title><rect x="78.5635%" y="709" width="1.0015%" height="15" fill="rgb(243,225,15)" fg:x="284605" fg:w="3628"/><text x="78.8135%" y="719.50"></text></g><g><title>unlock_up (556 samples, 0.15%)</title><rect x="79.4115%" y="693" width="0.1535%" height="15" fill="rgb(225,216,18)" fg:x="287677" fg:w="556"/><text x="79.6615%" y="703.50"></text></g><g><title>btrfs_get_token_32 (102 samples, 0.03%)</title><rect x="79.5838%" y="693" width="0.0282%" height="15" fill="rgb(233,36,38)" fg:x="288301" fg:w="102"/><text x="79.8338%" y="703.50"></text></g><g><title>btrfs_set_token_32 (135 samples, 0.04%)</title><rect x="79.6252%" y="693" width="0.0373%" height="15" fill="rgb(239,88,23)" fg:x="288451" fg:w="135"/><text x="79.8752%" y="703.50"></text></g><g><title>memmove_extent_buffer (38 samples, 0.01%)</title><rect x="79.6702%" y="693" width="0.0105%" height="15" fill="rgb(219,181,35)" fg:x="288614" fg:w="38"/><text x="79.9202%" y="703.50"></text></g><g><title>btrfs_insert_empty_items (4,074 samples, 1.12%)</title><rect x="78.5616%" y="725" width="1.1246%" height="15" fill="rgb(215,18,46)" fg:x="284598" fg:w="4074"/><text x="78.8116%" y="735.50"></text></g><g><title>setup_items_for_insert (439 samples, 0.12%)</title><rect x="79.5650%" y="709" width="0.1212%" height="15" fill="rgb(241,38,11)" fg:x="288233" fg:w="439"/><text x="79.8150%" y="719.50"></text></g><g><title>free_extent_buffer.part.0 (65 samples, 0.02%)</title><rect x="79.7116%" y="677" width="0.0179%" height="15" fill="rgb(248,169,45)" fg:x="288764" fg:w="65"/><text x="79.9616%" y="687.50"></text></g><g><title>btrfs_free_path (91 samples, 0.03%)</title><rect x="79.7074%" y="709" width="0.0251%" height="15" fill="rgb(239,50,49)" fg:x="288749" fg:w="91"/><text x="79.9574%" y="719.50"></text></g><g><title>btrfs_release_path (90 samples, 0.02%)</title><rect x="79.7077%" y="693" width="0.0248%" height="15" fill="rgb(231,96,31)" fg:x="288750" fg:w="90"/><text x="79.9577%" y="703.50"></text></g><g><title>finish_wait (151 samples, 0.04%)</title><rect x="79.7720%" y="645" width="0.0417%" height="15" fill="rgb(224,193,37)" fg:x="288983" fg:w="151"/><text x="80.0220%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (143 samples, 0.04%)</title><rect x="79.7743%" y="629" width="0.0395%" height="15" fill="rgb(227,153,50)" fg:x="288991" fg:w="143"/><text x="80.0243%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (138 samples, 0.04%)</title><rect x="79.7756%" y="613" width="0.0381%" height="15" fill="rgb(249,228,3)" fg:x="288996" fg:w="138"/><text x="80.0256%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (571 samples, 0.16%)</title><rect x="79.8228%" y="629" width="0.1576%" height="15" fill="rgb(219,164,43)" fg:x="289167" fg:w="571"/><text x="80.0728%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (543 samples, 0.15%)</title><rect x="79.8306%" y="613" width="0.1499%" height="15" fill="rgb(216,45,41)" fg:x="289195" fg:w="543"/><text x="80.0806%" y="623.50"></text></g><g><title>prepare_to_wait_event (610 samples, 0.17%)</title><rect x="79.8140%" y="645" width="0.1684%" height="15" fill="rgb(210,226,51)" fg:x="289135" fg:w="610"/><text x="80.0640%" y="655.50"></text></g><g><title>queued_read_lock_slowpath (268 samples, 0.07%)</title><rect x="79.9824%" y="645" width="0.0740%" height="15" fill="rgb(209,117,49)" fg:x="289745" fg:w="268"/><text x="80.2324%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (164 samples, 0.05%)</title><rect x="80.0111%" y="629" width="0.0453%" height="15" fill="rgb(206,196,24)" fg:x="289849" fg:w="164"/><text x="80.2611%" y="639.50"></text></g><g><title>dequeue_entity (63 samples, 0.02%)</title><rect x="80.0707%" y="597" width="0.0174%" height="15" fill="rgb(253,218,3)" fg:x="290065" fg:w="63"/><text x="80.3207%" y="607.50"></text></g><g><title>dequeue_task_fair (78 samples, 0.02%)</title><rect x="80.0677%" y="613" width="0.0215%" height="15" fill="rgb(252,166,2)" fg:x="290054" fg:w="78"/><text x="80.3177%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.02%)</title><rect x="80.0936%" y="597" width="0.0182%" height="15" fill="rgb(236,218,26)" fg:x="290148" fg:w="66"/><text x="80.3436%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.02%)</title><rect x="80.0939%" y="581" width="0.0179%" height="15" fill="rgb(254,84,19)" fg:x="290149" fg:w="65"/><text x="80.3439%" y="591.50"></text></g><g><title>native_write_msr (64 samples, 0.02%)</title><rect x="80.0942%" y="565" width="0.0177%" height="15" fill="rgb(219,137,29)" fg:x="290150" fg:w="64"/><text x="80.3442%" y="575.50"></text></g><g><title>finish_task_switch (83 samples, 0.02%)</title><rect x="80.0892%" y="613" width="0.0229%" height="15" fill="rgb(227,47,52)" fg:x="290132" fg:w="83"/><text x="80.3392%" y="623.50"></text></g><g><title>psi_task_change (70 samples, 0.02%)</title><rect x="80.1212%" y="613" width="0.0193%" height="15" fill="rgb(229,167,24)" fg:x="290248" fg:w="70"/><text x="80.3712%" y="623.50"></text></g><g><title>psi_group_change (63 samples, 0.02%)</title><rect x="80.1232%" y="597" width="0.0174%" height="15" fill="rgb(233,164,1)" fg:x="290255" fg:w="63"/><text x="80.3732%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (1,391 samples, 0.38%)</title><rect x="79.7638%" y="661" width="0.3840%" height="15" fill="rgb(218,88,48)" fg:x="288953" fg:w="1391"/><text x="80.0138%" y="671.50"></text></g><g><title>schedule (331 samples, 0.09%)</title><rect x="80.0564%" y="645" width="0.0914%" height="15" fill="rgb(226,214,24)" fg:x="290013" fg:w="331"/><text x="80.3064%" y="655.50"></text></g><g><title>__schedule (326 samples, 0.09%)</title><rect x="80.0577%" y="629" width="0.0900%" height="15" fill="rgb(233,29,12)" fg:x="290018" fg:w="326"/><text x="80.3077%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (1,434 samples, 0.40%)</title><rect x="79.7618%" y="677" width="0.3958%" height="15" fill="rgb(219,120,34)" fg:x="288946" fg:w="1434"/><text x="80.0118%" y="687.50"></text></g><g><title>prepare_to_wait_event (46 samples, 0.01%)</title><rect x="80.1709%" y="661" width="0.0127%" height="15" fill="rgb(226,78,44)" fg:x="290428" fg:w="46"/><text x="80.4209%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (49 samples, 0.01%)</title><rect x="80.1836%" y="661" width="0.0135%" height="15" fill="rgb(240,15,48)" fg:x="290474" fg:w="49"/><text x="80.4336%" y="671.50"></text></g><g><title>dequeue_entity (60 samples, 0.02%)</title><rect x="80.2074%" y="613" width="0.0166%" height="15" fill="rgb(253,176,7)" fg:x="290560" fg:w="60"/><text x="80.4574%" y="623.50"></text></g><g><title>dequeue_task_fair (68 samples, 0.02%)</title><rect x="80.2060%" y="629" width="0.0188%" height="15" fill="rgb(206,166,28)" fg:x="290555" fg:w="68"/><text x="80.4560%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.02%)</title><rect x="80.2267%" y="613" width="0.0193%" height="15" fill="rgb(241,53,51)" fg:x="290630" fg:w="70"/><text x="80.4767%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.02%)</title><rect x="80.2270%" y="597" width="0.0190%" height="15" fill="rgb(249,112,30)" fg:x="290631" fg:w="69"/><text x="80.4770%" y="607.50"></text></g><g><title>native_write_msr (67 samples, 0.02%)</title><rect x="80.2275%" y="581" width="0.0185%" height="15" fill="rgb(217,85,30)" fg:x="290633" fg:w="67"/><text x="80.4775%" y="591.50"></text></g><g><title>finish_task_switch (79 samples, 0.02%)</title><rect x="80.2248%" y="629" width="0.0218%" height="15" fill="rgb(233,49,7)" fg:x="290623" fg:w="79"/><text x="80.4748%" y="639.50"></text></g><g><title>psi_task_change (42 samples, 0.01%)</title><rect x="80.2529%" y="629" width="0.0116%" height="15" fill="rgb(234,109,9)" fg:x="290725" fg:w="42"/><text x="80.5029%" y="639.50"></text></g><g><title>psi_group_change (37 samples, 0.01%)</title><rect x="80.2543%" y="613" width="0.0102%" height="15" fill="rgb(253,95,22)" fg:x="290730" fg:w="37"/><text x="80.5043%" y="623.50"></text></g><g><title>__btrfs_tree_lock (408 samples, 0.11%)</title><rect x="80.1577%" y="677" width="0.1126%" height="15" fill="rgb(233,176,25)" fg:x="290380" fg:w="408"/><text x="80.4077%" y="687.50"></text></g><g><title>schedule (265 samples, 0.07%)</title><rect x="80.1972%" y="661" width="0.0732%" height="15" fill="rgb(236,33,39)" fg:x="290523" fg:w="265"/><text x="80.4472%" y="671.50"></text></g><g><title>__schedule (263 samples, 0.07%)</title><rect x="80.1977%" y="645" width="0.0726%" height="15" fill="rgb(223,226,42)" fg:x="290525" fg:w="263"/><text x="80.4477%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (563 samples, 0.16%)</title><rect x="80.2860%" y="677" width="0.1554%" height="15" fill="rgb(216,99,33)" fg:x="290845" fg:w="563"/><text x="80.5360%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (547 samples, 0.15%)</title><rect x="80.2905%" y="661" width="0.1510%" height="15" fill="rgb(235,84,23)" fg:x="290861" fg:w="547"/><text x="80.5405%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (161 samples, 0.04%)</title><rect x="80.3970%" y="645" width="0.0444%" height="15" fill="rgb(232,2,27)" fg:x="291247" fg:w="161"/><text x="80.6470%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (125 samples, 0.03%)</title><rect x="80.4414%" y="677" width="0.0345%" height="15" fill="rgb(241,23,22)" fg:x="291408" fg:w="125"/><text x="80.6914%" y="687.50"></text></g><g><title>__radix_tree_lookup (70 samples, 0.02%)</title><rect x="80.5116%" y="645" width="0.0193%" height="15" fill="rgb(211,73,27)" fg:x="291662" fg:w="70"/><text x="80.7616%" y="655.50"></text></g><g><title>find_extent_buffer (175 samples, 0.05%)</title><rect x="80.4939%" y="661" width="0.0483%" height="15" fill="rgb(235,109,49)" fg:x="291598" fg:w="175"/><text x="80.7439%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (41 samples, 0.01%)</title><rect x="80.5309%" y="645" width="0.0113%" height="15" fill="rgb(230,99,29)" fg:x="291732" fg:w="41"/><text x="80.7809%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (259 samples, 0.07%)</title><rect x="80.4760%" y="677" width="0.0715%" height="15" fill="rgb(245,199,7)" fg:x="291533" fg:w="259"/><text x="80.7260%" y="687.50"></text></g><g><title>alloc_tree_block_no_bg_flush (79 samples, 0.02%)</title><rect x="80.5477%" y="661" width="0.0218%" height="15" fill="rgb(217,179,10)" fg:x="291793" fg:w="79"/><text x="80.7977%" y="671.50"></text></g><g><title>btrfs_alloc_tree_block (78 samples, 0.02%)</title><rect x="80.5480%" y="645" width="0.0215%" height="15" fill="rgb(254,99,47)" fg:x="291794" fg:w="78"/><text x="80.7980%" y="655.50"></text></g><g><title>__push_leaf_left (48 samples, 0.01%)</title><rect x="80.5789%" y="645" width="0.0133%" height="15" fill="rgb(251,121,7)" fg:x="291906" fg:w="48"/><text x="80.8289%" y="655.50"></text></g><g><title>push_leaf_left (58 samples, 0.02%)</title><rect x="80.5784%" y="661" width="0.0160%" height="15" fill="rgb(250,177,26)" fg:x="291904" fg:w="58"/><text x="80.8284%" y="671.50"></text></g><g><title>split_leaf (172 samples, 0.05%)</title><rect x="80.5475%" y="677" width="0.0475%" height="15" fill="rgb(232,88,15)" fg:x="291792" fg:w="172"/><text x="80.7975%" y="687.50"></text></g><g><title>select_task_rq_fair (88 samples, 0.02%)</title><rect x="80.6421%" y="597" width="0.0243%" height="15" fill="rgb(251,54,54)" fg:x="292135" fg:w="88"/><text x="80.8921%" y="607.50"></text></g><g><title>enqueue_entity (94 samples, 0.03%)</title><rect x="80.6772%" y="565" width="0.0259%" height="15" fill="rgb(208,177,15)" fg:x="292262" fg:w="94"/><text x="80.9272%" y="575.50"></text></g><g><title>enqueue_task_fair (138 samples, 0.04%)</title><rect x="80.6697%" y="581" width="0.0381%" height="15" fill="rgb(205,97,32)" fg:x="292235" fg:w="138"/><text x="80.9197%" y="591.50"></text></g><g><title>ttwu_do_activate (236 samples, 0.07%)</title><rect x="80.6692%" y="597" width="0.0651%" height="15" fill="rgb(217,192,13)" fg:x="292233" fg:w="236"/><text x="80.9192%" y="607.50"></text></g><g><title>psi_task_change (96 samples, 0.03%)</title><rect x="80.7078%" y="581" width="0.0265%" height="15" fill="rgb(215,163,41)" fg:x="292373" fg:w="96"/><text x="80.9578%" y="591.50"></text></g><g><title>psi_group_change (88 samples, 0.02%)</title><rect x="80.7100%" y="565" width="0.0243%" height="15" fill="rgb(246,83,29)" fg:x="292381" fg:w="88"/><text x="80.9600%" y="575.50"></text></g><g><title>__wake_up_common (537 samples, 0.15%)</title><rect x="80.6035%" y="645" width="0.1482%" height="15" fill="rgb(219,2,45)" fg:x="291995" fg:w="537"/><text x="80.8535%" y="655.50"></text></g><g><title>autoremove_wake_function (529 samples, 0.15%)</title><rect x="80.6057%" y="629" width="0.1460%" height="15" fill="rgb(242,215,33)" fg:x="292003" fg:w="529"/><text x="80.8557%" y="639.50"></text></g><g><title>try_to_wake_up (517 samples, 0.14%)</title><rect x="80.6090%" y="613" width="0.1427%" height="15" fill="rgb(217,1,6)" fg:x="292015" fg:w="517"/><text x="80.8590%" y="623.50"></text></g><g><title>__wake_up_common_lock (547 samples, 0.15%)</title><rect x="80.6029%" y="661" width="0.1510%" height="15" fill="rgb(207,85,52)" fg:x="291993" fg:w="547"/><text x="80.8529%" y="671.50"></text></g><g><title>btrfs_search_slot (3,698 samples, 1.02%)</title><rect x="79.7406%" y="693" width="1.0208%" height="15" fill="rgb(231,171,19)" fg:x="288869" fg:w="3698"/><text x="79.9906%" y="703.50"></text></g><g><title>unlock_up (603 samples, 0.17%)</title><rect x="80.5949%" y="677" width="0.1665%" height="15" fill="rgb(207,128,4)" fg:x="291964" fg:w="603"/><text x="80.8449%" y="687.50"></text></g><g><title>btrfs_get_token_32 (138 samples, 0.04%)</title><rect x="80.7835%" y="677" width="0.0381%" height="15" fill="rgb(219,208,4)" fg:x="292647" fg:w="138"/><text x="81.0335%" y="687.50"></text></g><g><title>btrfs_set_token_32 (124 samples, 0.03%)</title><rect x="80.8381%" y="677" width="0.0342%" height="15" fill="rgb(235,161,42)" fg:x="292845" fg:w="124"/><text x="81.0881%" y="687.50"></text></g><g><title>memmove_extent_buffer (64 samples, 0.02%)</title><rect x="80.8762%" y="677" width="0.0177%" height="15" fill="rgb(247,218,18)" fg:x="292983" fg:w="64"/><text x="81.1262%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (4,219 samples, 1.16%)</title><rect x="79.7392%" y="709" width="1.1646%" height="15" fill="rgb(232,114,51)" fg:x="288864" fg:w="4219"/><text x="79.9892%" y="719.50"></text></g><g><title>setup_items_for_insert (516 samples, 0.14%)</title><rect x="80.7614%" y="693" width="0.1424%" height="15" fill="rgb(222,95,3)" fg:x="292567" fg:w="516"/><text x="81.0114%" y="703.50"></text></g><g><title>btrfs_set_token_32 (55 samples, 0.02%)</title><rect x="80.9375%" y="693" width="0.0152%" height="15" fill="rgb(240,65,29)" fg:x="293205" fg:w="55"/><text x="81.1875%" y="703.50"></text></g><g><title>btrfs_set_token_64 (90 samples, 0.02%)</title><rect x="80.9527%" y="693" width="0.0248%" height="15" fill="rgb(249,209,20)" fg:x="293260" fg:w="90"/><text x="81.2027%" y="703.50"></text></g><g><title>fill_inode_item (205 samples, 0.06%)</title><rect x="80.9298%" y="709" width="0.0566%" height="15" fill="rgb(241,48,37)" fg:x="293177" fg:w="205"/><text x="81.1798%" y="719.50"></text></g><g><title>inode_tree_add (298 samples, 0.08%)</title><rect x="80.9969%" y="709" width="0.0823%" height="15" fill="rgb(230,140,42)" fg:x="293420" fg:w="298"/><text x="81.2469%" y="719.50"></text></g><g><title>rb_insert_color (39 samples, 0.01%)</title><rect x="81.0683%" y="693" width="0.0108%" height="15" fill="rgb(230,176,45)" fg:x="293679" fg:w="39"/><text x="81.3183%" y="703.50"></text></g><g><title>insert_inode_locked4 (74 samples, 0.02%)</title><rect x="81.0791%" y="709" width="0.0204%" height="15" fill="rgb(245,112,21)" fg:x="293718" fg:w="74"/><text x="81.3291%" y="719.50"></text></g><g><title>inode_insert5 (74 samples, 0.02%)</title><rect x="81.0791%" y="693" width="0.0204%" height="15" fill="rgb(207,183,35)" fg:x="293718" fg:w="74"/><text x="81.3291%" y="703.50"></text></g><g><title>find_inode (42 samples, 0.01%)</title><rect x="81.0879%" y="677" width="0.0116%" height="15" fill="rgb(227,44,33)" fg:x="293750" fg:w="42"/><text x="81.3379%" y="687.50"></text></g><g><title>memcg_slab_post_alloc_hook (62 samples, 0.02%)</title><rect x="81.1639%" y="645" width="0.0171%" height="15" fill="rgb(246,120,21)" fg:x="294025" fg:w="62"/><text x="81.4139%" y="655.50"></text></g><g><title>btrfs_alloc_inode (259 samples, 0.07%)</title><rect x="81.1318%" y="677" width="0.0715%" height="15" fill="rgb(235,57,52)" fg:x="293909" fg:w="259"/><text x="81.3818%" y="687.50"></text></g><g><title>kmem_cache_alloc (191 samples, 0.05%)</title><rect x="81.1506%" y="661" width="0.0527%" height="15" fill="rgb(238,84,10)" fg:x="293977" fg:w="191"/><text x="81.4006%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (81 samples, 0.02%)</title><rect x="81.1810%" y="645" width="0.0224%" height="15" fill="rgb(251,200,32)" fg:x="294087" fg:w="81"/><text x="81.4310%" y="655.50"></text></g><g><title>obj_cgroup_charge (40 samples, 0.01%)</title><rect x="81.1923%" y="629" width="0.0110%" height="15" fill="rgb(247,159,13)" fg:x="294128" fg:w="40"/><text x="81.4423%" y="639.50"></text></g><g><title>alloc_inode (357 samples, 0.10%)</title><rect x="81.1285%" y="693" width="0.0985%" height="15" fill="rgb(238,64,4)" fg:x="293897" fg:w="357"/><text x="81.3785%" y="703.50"></text></g><g><title>inode_init_always (86 samples, 0.02%)</title><rect x="81.2033%" y="677" width="0.0237%" height="15" fill="rgb(221,131,51)" fg:x="294168" fg:w="86"/><text x="81.4533%" y="687.50"></text></g><g><title>new_inode (398 samples, 0.11%)</title><rect x="81.1211%" y="709" width="0.1099%" height="15" fill="rgb(242,5,29)" fg:x="293870" fg:w="398"/><text x="81.3711%" y="719.50"></text></g><g><title>btrfs_new_inode (5,601 samples, 1.55%)</title><rect x="79.6909%" y="725" width="1.5461%" height="15" fill="rgb(214,130,32)" fg:x="288689" fg:w="5601"/><text x="79.9409%" y="735.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (50 samples, 0.01%)</title><rect x="81.2632%" y="693" width="0.0138%" height="15" fill="rgb(244,210,16)" fg:x="294385" fg:w="50"/><text x="81.5132%" y="703.50"></text></g><g><title>__radix_tree_lookup (71 samples, 0.02%)</title><rect x="81.3008%" y="661" width="0.0196%" height="15" fill="rgb(234,48,26)" fg:x="294521" fg:w="71"/><text x="81.5508%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (85 samples, 0.02%)</title><rect x="81.2997%" y="677" width="0.0235%" height="15" fill="rgb(231,82,38)" fg:x="294517" fg:w="85"/><text x="81.5497%" y="687.50"></text></g><g><title>kmem_cache_alloc (72 samples, 0.02%)</title><rect x="81.3231%" y="677" width="0.0199%" height="15" fill="rgb(254,128,41)" fg:x="294602" fg:w="72"/><text x="81.5731%" y="687.50"></text></g><g><title>btrfs_get_or_create_delayed_node (239 samples, 0.07%)</title><rect x="81.2864%" y="693" width="0.0660%" height="15" fill="rgb(212,73,49)" fg:x="294469" fg:w="239"/><text x="81.5364%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (391 samples, 0.11%)</title><rect x="81.2544%" y="709" width="0.1079%" height="15" fill="rgb(205,62,54)" fg:x="294353" fg:w="391"/><text x="81.5044%" y="719.50"></text></g><g><title>btrfs_update_inode (440 samples, 0.12%)</title><rect x="81.2486%" y="725" width="0.1215%" height="15" fill="rgb(228,0,8)" fg:x="294332" fg:w="440"/><text x="81.4986%" y="735.50"></text></g><g><title>d_instantiate_new (81 samples, 0.02%)</title><rect x="81.3723%" y="725" width="0.0224%" height="15" fill="rgb(251,28,17)" fg:x="294780" fg:w="81"/><text x="81.6223%" y="735.50"></text></g><g><title>kmem_cache_alloc (49 samples, 0.01%)</title><rect x="81.3963%" y="725" width="0.0135%" height="15" fill="rgb(238,105,27)" fg:x="294867" fg:w="49"/><text x="81.6463%" y="735.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (63 samples, 0.02%)</title><rect x="81.4697%" y="661" width="0.0174%" height="15" fill="rgb(237,216,33)" fg:x="295133" fg:w="63"/><text x="81.7197%" y="671.50"></text></g><g><title>btrfs_block_rsv_add (210 samples, 0.06%)</title><rect x="81.4432%" y="709" width="0.0580%" height="15" fill="rgb(229,228,25)" fg:x="295037" fg:w="210"/><text x="81.6932%" y="719.50"></text></g><g><title>btrfs_reserve_metadata_bytes (195 samples, 0.05%)</title><rect x="81.4474%" y="693" width="0.0538%" height="15" fill="rgb(233,75,23)" fg:x="295052" fg:w="195"/><text x="81.6974%" y="703.50"></text></g><g><title>__reserve_bytes (170 samples, 0.05%)</title><rect x="81.4543%" y="677" width="0.0469%" height="15" fill="rgb(231,207,16)" fg:x="295077" fg:w="170"/><text x="81.7043%" y="687.50"></text></g><g><title>calc_available_free_space.isra.0 (51 samples, 0.01%)</title><rect x="81.4871%" y="661" width="0.0141%" height="15" fill="rgb(231,191,45)" fg:x="295196" fg:w="51"/><text x="81.7371%" y="671.50"></text></g><g><title>join_transaction (41 samples, 0.01%)</title><rect x="81.5020%" y="709" width="0.0113%" height="15" fill="rgb(224,133,17)" fg:x="295250" fg:w="41"/><text x="81.7520%" y="719.50"></text></g><g><title>start_transaction (390 samples, 0.11%)</title><rect x="81.4217%" y="725" width="0.1077%" height="15" fill="rgb(209,178,27)" fg:x="294959" fg:w="390"/><text x="81.6717%" y="735.50"></text></g><g><title>strlen (116 samples, 0.03%)</title><rect x="81.5293%" y="725" width="0.0320%" height="15" fill="rgb(218,37,11)" fg:x="295349" fg:w="116"/><text x="81.7793%" y="735.50"></text></g><g><title>btrfs_symlink (16,887 samples, 4.66%)</title><rect x="76.9059%" y="741" width="4.6616%" height="15" fill="rgb(251,226,25)" fg:x="278600" fg:w="16887"/><text x="77.1559%" y="751.50">btrfs..</text></g><g><title>do_symlinkat (22,959 samples, 6.34%)</title><rect x="75.2449%" y="773" width="6.3377%" height="15" fill="rgb(209,222,27)" fg:x="272583" fg:w="22959"/><text x="75.4949%" y="783.50">do_symli..</text></g><g><title>vfs_symlink (16,971 samples, 4.68%)</title><rect x="76.8979%" y="757" width="4.6847%" height="15" fill="rgb(238,22,21)" fg:x="278571" fg:w="16971"/><text x="77.1479%" y="767.50">vfs_s..</text></g><g><title>do_syscall_64 (22,986 samples, 6.35%)</title><rect x="75.2416%" y="789" width="6.3451%" height="15" fill="rgb(233,161,25)" fg:x="272571" fg:w="22986"/><text x="75.4916%" y="799.50">do_sysca..</text></g><g><title>entry_SYSCALL_64_after_hwframe (23,042 samples, 6.36%)</title><rect x="75.2386%" y="805" width="6.3606%" height="15" fill="rgb(226,122,53)" fg:x="272560" fg:w="23042"/><text x="75.4886%" y="815.50">entry_SY..</text></g><g><title>syscall_exit_to_user_mode (45 samples, 0.01%)</title><rect x="81.5868%" y="789" width="0.0124%" height="15" fill="rgb(220,123,17)" fg:x="295557" fg:w="45"/><text x="81.8368%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (42 samples, 0.01%)</title><rect x="81.5876%" y="773" width="0.0116%" height="15" fill="rgb(230,224,35)" fg:x="295560" fg:w="42"/><text x="81.8376%" y="783.50"></text></g><g><title>__symlink (23,138 samples, 6.39%)</title><rect x="75.2187%" y="821" width="6.3871%" height="15" fill="rgb(246,83,8)" fg:x="272488" fg:w="23138"/><text x="75.4687%" y="831.50">__symlink</text></g><g><title>_int_free (53 samples, 0.01%)</title><rect x="81.6058%" y="821" width="0.0146%" height="15" fill="rgb(230,214,17)" fg:x="295626" fg:w="53"/><text x="81.8558%" y="831.50"></text></g><g><title>jni_ExceptionOccurred (42 samples, 0.01%)</title><rect x="81.6279%" y="821" width="0.0116%" height="15" fill="rgb(222,97,18)" fg:x="295706" fg:w="42"/><text x="81.8779%" y="831.50"></text></g><g><title>check_bounds (45 samples, 0.01%)</title><rect x="81.6624%" y="805" width="0.0124%" height="15" fill="rgb(206,79,1)" fg:x="295831" fg:w="45"/><text x="81.9124%" y="815.50"></text></g><g><title>jni_GetByteArrayRegion (144 samples, 0.04%)</title><rect x="81.6395%" y="821" width="0.0398%" height="15" fill="rgb(214,121,34)" fg:x="295748" fg:w="144"/><text x="81.8895%" y="831.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (45 samples, 0.01%)</title><rect x="81.6861%" y="805" width="0.0124%" height="15" fill="rgb(249,199,46)" fg:x="295917" fg:w="45"/><text x="81.9361%" y="815.50"></text></g><g><title>jni_GetObjectField (152 samples, 0.04%)</title><rect x="81.6792%" y="821" width="0.0420%" height="15" fill="rgb(214,222,46)" fg:x="295892" fg:w="152"/><text x="81.9292%" y="831.50"></text></g><g><title>jni_GetStringLength (95 samples, 0.03%)</title><rect x="81.7212%" y="821" width="0.0262%" height="15" fill="rgb(248,168,30)" fg:x="296044" fg:w="95"/><text x="81.9712%" y="831.50"></text></g><g><title>jni_NewObjectV (83 samples, 0.02%)</title><rect x="81.7480%" y="821" width="0.0229%" height="15" fill="rgb(226,14,28)" fg:x="296141" fg:w="83"/><text x="81.9980%" y="831.50"></text></g><g><title>__GI___libc_malloc (47 samples, 0.01%)</title><rect x="81.7877%" y="805" width="0.0130%" height="15" fill="rgb(253,123,1)" fg:x="296285" fg:w="47"/><text x="82.0377%" y="815.50"></text></g><g><title>operator new (62 samples, 0.02%)</title><rect x="81.7877%" y="821" width="0.0171%" height="15" fill="rgb(225,24,42)" fg:x="296285" fg:w="62"/><text x="82.0377%" y="831.50"></text></g><g><title>btrfs_lock_root_node (63 samples, 0.02%)</title><rect x="81.8291%" y="661" width="0.0174%" height="15" fill="rgb(216,161,37)" fg:x="296435" fg:w="63"/><text x="82.0791%" y="671.50"></text></g><g><title>__btrfs_tree_lock (63 samples, 0.02%)</title><rect x="81.8291%" y="645" width="0.0174%" height="15" fill="rgb(251,164,26)" fg:x="296435" fg:w="63"/><text x="82.0791%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (119 samples, 0.03%)</title><rect x="81.8178%" y="693" width="0.0328%" height="15" fill="rgb(219,177,3)" fg:x="296394" fg:w="119"/><text x="82.0678%" y="703.50"></text></g><g><title>btrfs_search_slot (113 samples, 0.03%)</title><rect x="81.8195%" y="677" width="0.0312%" height="15" fill="rgb(222,65,0)" fg:x="296400" fg:w="113"/><text x="82.0695%" y="687.50"></text></g><g><title>btrfs_lock_root_node (41 samples, 0.01%)</title><rect x="81.8559%" y="661" width="0.0113%" height="15" fill="rgb(223,69,54)" fg:x="296532" fg:w="41"/><text x="82.1059%" y="671.50"></text></g><g><title>__btrfs_tree_lock (41 samples, 0.01%)</title><rect x="81.8559%" y="645" width="0.0113%" height="15" fill="rgb(235,30,27)" fg:x="296532" fg:w="41"/><text x="82.1059%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (67 samples, 0.02%)</title><rect x="81.8531%" y="693" width="0.0185%" height="15" fill="rgb(220,183,50)" fg:x="296522" fg:w="67"/><text x="82.1031%" y="703.50"></text></g><g><title>btrfs_search_slot (67 samples, 0.02%)</title><rect x="81.8531%" y="677" width="0.0185%" height="15" fill="rgb(248,198,15)" fg:x="296522" fg:w="67"/><text x="82.1031%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (201 samples, 0.06%)</title><rect x="81.8173%" y="709" width="0.0555%" height="15" fill="rgb(222,211,4)" fg:x="296392" fg:w="201"/><text x="82.0673%" y="719.50"></text></g><g><title>btrfs_rename2 (289 samples, 0.08%)</title><rect x="81.8167%" y="725" width="0.0798%" height="15" fill="rgb(214,102,34)" fg:x="296390" fg:w="289"/><text x="82.0667%" y="735.50"></text></g><g><title>do_syscall_64 (303 samples, 0.08%)</title><rect x="81.8134%" y="789" width="0.0836%" height="15" fill="rgb(245,92,5)" fg:x="296378" fg:w="303"/><text x="82.0634%" y="799.50"></text></g><g><title>__x64_sys_rename (303 samples, 0.08%)</title><rect x="81.8134%" y="773" width="0.0836%" height="15" fill="rgb(252,72,51)" fg:x="296378" fg:w="303"/><text x="82.0634%" y="783.50"></text></g><g><title>do_renameat2 (303 samples, 0.08%)</title><rect x="81.8134%" y="757" width="0.0836%" height="15" fill="rgb(252,208,19)" fg:x="296378" fg:w="303"/><text x="82.0634%" y="767.50"></text></g><g><title>vfs_rename (291 samples, 0.08%)</title><rect x="81.8167%" y="741" width="0.0803%" height="15" fill="rgb(211,69,7)" fg:x="296390" fg:w="291"/><text x="82.0667%" y="751.50"></text></g><g><title>rename (306 samples, 0.08%)</title><rect x="81.8128%" y="821" width="0.0845%" height="15" fill="rgb(211,27,16)" fg:x="296376" fg:w="306"/><text x="82.0628%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (304 samples, 0.08%)</title><rect x="81.8134%" y="805" width="0.0839%" height="15" fill="rgb(219,216,14)" fg:x="296378" fg:w="304"/><text x="82.0634%" y="815.50"></text></g><g><title>operator new (59 samples, 0.02%)</title><rect x="81.8992%" y="805" width="0.0163%" height="15" fill="rgb(219,71,8)" fg:x="296689" fg:w="59"/><text x="82.1492%" y="815.50"></text></g><g><title>__GI___libc_malloc (59 samples, 0.02%)</title><rect x="81.8992%" y="789" width="0.0163%" height="15" fill="rgb(223,170,53)" fg:x="296689" fg:w="59"/><text x="82.1492%" y="799.50"></text></g><g><title>[libunix_jni.so] (172,829 samples, 47.71%)</title><rect x="34.2077%" y="837" width="47.7084%" height="15" fill="rgb(246,21,26)" fg:x="123921" fg:w="172829"/><text x="34.4577%" y="847.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (64 samples, 0.02%)</title><rect x="81.8984%" y="821" width="0.0177%" height="15" fill="rgb(248,20,46)" fg:x="296686" fg:w="64"/><text x="82.1484%" y="831.50"></text></g><g><title>ConstantPool::klass_at_impl (52 samples, 0.01%)</title><rect x="97.9291%" y="805" width="0.0144%" height="15" fill="rgb(252,94,11)" fg:x="354759" fg:w="52"/><text x="98.1791%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (49 samples, 0.01%)</title><rect x="97.9299%" y="789" width="0.0135%" height="15" fill="rgb(236,163,8)" fg:x="354762" fg:w="49"/><text x="98.1799%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (47 samples, 0.01%)</title><rect x="97.9305%" y="773" width="0.0130%" height="15" fill="rgb(217,221,45)" fg:x="354764" fg:w="47"/><text x="98.1805%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (71 samples, 0.02%)</title><rect x="97.9451%" y="789" width="0.0196%" height="15" fill="rgb(238,38,17)" fg:x="354817" fg:w="71"/><text x="98.1951%" y="799.50"></text></g><g><title>InterpreterRuntime::_new (133 samples, 0.04%)</title><rect x="97.9291%" y="821" width="0.0367%" height="15" fill="rgb(242,210,23)" fg:x="354759" fg:w="133"/><text x="98.1791%" y="831.50"></text></g><g><title>InstanceKlass::initialize_impl (78 samples, 0.02%)</title><rect x="97.9443%" y="805" width="0.0215%" height="15" fill="rgb(250,86,53)" fg:x="354814" fg:w="78"/><text x="98.1943%" y="815.50"></text></g><g><title>ObjArrayAllocator::initialize (39 samples, 0.01%)</title><rect x="97.9904%" y="757" width="0.0108%" height="15" fill="rgb(223,168,25)" fg:x="354981" fg:w="39"/><text x="98.2404%" y="767.50"></text></g><g><title>CollectedHeap::array_allocate (68 samples, 0.02%)</title><rect x="97.9843%" y="789" width="0.0188%" height="15" fill="rgb(251,189,4)" fg:x="354959" fg:w="68"/><text x="98.2343%" y="799.50"></text></g><g><title>MemAllocator::allocate (66 samples, 0.02%)</title><rect x="97.9849%" y="773" width="0.0182%" height="15" fill="rgb(245,19,28)" fg:x="354961" fg:w="66"/><text x="98.2349%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (115 samples, 0.03%)</title><rect x="97.9774%" y="805" width="0.0317%" height="15" fill="rgb(207,10,34)" fg:x="354934" fg:w="115"/><text x="98.2274%" y="815.50"></text></g><g><title>InterpreterRuntime::anewarray (165 samples, 0.05%)</title><rect x="97.9658%" y="821" width="0.0455%" height="15" fill="rgb(235,153,31)" fg:x="354892" fg:w="165"/><text x="98.2158%" y="831.50"></text></g><g><title>TieredThresholdPolicy::call_event (46 samples, 0.01%)</title><rect x="98.0619%" y="757" width="0.0127%" height="15" fill="rgb(228,72,37)" fg:x="355240" fg:w="46"/><text x="98.3119%" y="767.50"></text></g><g><title>CompileBroker::compile_method_base (39 samples, 0.01%)</title><rect x="98.0782%" y="709" width="0.0108%" height="15" fill="rgb(215,15,16)" fg:x="355299" fg:w="39"/><text x="98.3282%" y="719.50"></text></g><g><title>CompileBroker::compile_method (55 samples, 0.02%)</title><rect x="98.0749%" y="725" width="0.0152%" height="15" fill="rgb(250,119,29)" fg:x="355287" fg:w="55"/><text x="98.3249%" y="735.50"></text></g><g><title>TieredThresholdPolicy::compile (57 samples, 0.02%)</title><rect x="98.0746%" y="757" width="0.0157%" height="15" fill="rgb(214,59,1)" fg:x="355286" fg:w="57"/><text x="98.3246%" y="767.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (56 samples, 0.02%)</title><rect x="98.0749%" y="741" width="0.0155%" height="15" fill="rgb(223,109,25)" fg:x="355287" fg:w="56"/><text x="98.3249%" y="751.50"></text></g><g><title>TieredThresholdPolicy::event (166 samples, 0.05%)</title><rect x="98.0448%" y="789" width="0.0458%" height="15" fill="rgb(230,198,22)" fg:x="355178" fg:w="166"/><text x="98.2948%" y="799.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (144 samples, 0.04%)</title><rect x="98.0509%" y="773" width="0.0398%" height="15" fill="rgb(245,184,46)" fg:x="355200" fg:w="144"/><text x="98.3009%" y="783.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (219 samples, 0.06%)</title><rect x="98.0307%" y="805" width="0.0605%" height="15" fill="rgb(253,73,16)" fg:x="355127" fg:w="219"/><text x="98.2807%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (223 samples, 0.06%)</title><rect x="98.0299%" y="821" width="0.0616%" height="15" fill="rgb(206,94,45)" fg:x="355124" fg:w="223"/><text x="98.2799%" y="831.50"></text></g><g><title>InterpreterRuntime::ldc (72 samples, 0.02%)</title><rect x="98.0914%" y="821" width="0.0199%" height="15" fill="rgb(236,83,27)" fg:x="355347" fg:w="72"/><text x="98.3414%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (40 samples, 0.01%)</title><rect x="98.1323%" y="805" width="0.0110%" height="15" fill="rgb(220,196,8)" fg:x="355495" fg:w="40"/><text x="98.3823%" y="815.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (59 samples, 0.02%)</title><rect x="98.1723%" y="773" width="0.0163%" height="15" fill="rgb(254,185,14)" fg:x="355640" fg:w="59"/><text x="98.4223%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (47 samples, 0.01%)</title><rect x="98.1886%" y="773" width="0.0130%" height="15" fill="rgb(226,50,22)" fg:x="355699" fg:w="47"/><text x="98.4386%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (42 samples, 0.01%)</title><rect x="98.2035%" y="741" width="0.0116%" height="15" fill="rgb(253,147,0)" fg:x="355753" fg:w="42"/><text x="98.4535%" y="751.50"></text></g><g><title>InstanceKlass::initialize_impl (52 samples, 0.01%)</title><rect x="98.2030%" y="757" width="0.0144%" height="15" fill="rgb(252,46,33)" fg:x="355751" fg:w="52"/><text x="98.4530%" y="767.50"></text></g><g><title>LinkResolver::resolve_static_call (85 samples, 0.02%)</title><rect x="98.2016%" y="773" width="0.0235%" height="15" fill="rgb(242,22,54)" fg:x="355746" fg:w="85"/><text x="98.4516%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (248 samples, 0.07%)</title><rect x="98.1596%" y="789" width="0.0685%" height="15" fill="rgb(223,178,32)" fg:x="355594" fg:w="248"/><text x="98.4096%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (328 samples, 0.09%)</title><rect x="98.1433%" y="805" width="0.0905%" height="15" fill="rgb(214,106,53)" fg:x="355535" fg:w="328"/><text x="98.3933%" y="815.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (51 samples, 0.01%)</title><rect x="98.2344%" y="757" width="0.0141%" height="15" fill="rgb(232,65,50)" fg:x="355865" fg:w="51"/><text x="98.4844%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (82 samples, 0.02%)</title><rect x="98.2339%" y="805" width="0.0226%" height="15" fill="rgb(231,110,28)" fg:x="355863" fg:w="82"/><text x="98.4839%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (80 samples, 0.02%)</title><rect x="98.2344%" y="789" width="0.0221%" height="15" fill="rgb(216,71,40)" fg:x="355865" fg:w="80"/><text x="98.4844%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (80 samples, 0.02%)</title><rect x="98.2344%" y="773" width="0.0221%" height="15" fill="rgb(229,89,53)" fg:x="355865" fg:w="80"/><text x="98.4844%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (460 samples, 0.13%)</title><rect x="98.1312%" y="821" width="0.1270%" height="15" fill="rgb(210,124,14)" fg:x="355491" fg:w="460"/><text x="98.3812%" y="831.50"></text></g><g><title>JVM_Clone (57 samples, 0.02%)</title><rect x="98.2678%" y="821" width="0.0157%" height="15" fill="rgb(236,213,6)" fg:x="355986" fg:w="57"/><text x="98.5178%" y="831.50"></text></g><g><title>JVM_IHashCode (40 samples, 0.01%)</title><rect x="98.3222%" y="821" width="0.0110%" height="15" fill="rgb(228,41,5)" fg:x="356183" fg:w="40"/><text x="98.5722%" y="831.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (39 samples, 0.01%)</title><rect x="98.3225%" y="805" width="0.0108%" height="15" fill="rgb(221,167,25)" fg:x="356184" fg:w="39"/><text x="98.5725%" y="815.50"></text></g><g><title>ObjectMonitor::wait (40 samples, 0.01%)</title><rect x="98.3597%" y="789" width="0.0110%" height="15" fill="rgb(228,144,37)" fg:x="356319" fg:w="40"/><text x="98.6097%" y="799.50"></text></g><g><title>os::PlatformEvent::park (37 samples, 0.01%)</title><rect x="98.3606%" y="773" width="0.0102%" height="15" fill="rgb(227,189,38)" fg:x="356322" fg:w="37"/><text x="98.6106%" y="783.50"></text></g><g><title>__pthread_cond_wait (37 samples, 0.01%)</title><rect x="98.3606%" y="757" width="0.0102%" height="15" fill="rgb(218,8,2)" fg:x="356322" fg:w="37"/><text x="98.6106%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (37 samples, 0.01%)</title><rect x="98.3606%" y="741" width="0.0102%" height="15" fill="rgb(209,61,28)" fg:x="356322" fg:w="37"/><text x="98.6106%" y="751.50"></text></g><g><title>ObjectSynchronizer::wait (49 samples, 0.01%)</title><rect x="98.3589%" y="805" width="0.0135%" height="15" fill="rgb(233,140,39)" fg:x="356316" fg:w="49"/><text x="98.6089%" y="815.50"></text></g><g><title>JVM_MonitorWait (52 samples, 0.01%)</title><rect x="98.3584%" y="821" width="0.0144%" height="15" fill="rgb(251,66,48)" fg:x="356314" fg:w="52"/><text x="98.6084%" y="831.50"></text></g><g><title>Java_java_io_UnixFileSystem_getBooleanAttributes0 (38 samples, 0.01%)</title><rect x="98.3868%" y="821" width="0.0105%" height="15" fill="rgb(210,44,45)" fg:x="356417" fg:w="38"/><text x="98.6368%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (341 samples, 0.09%)</title><rect x="98.4050%" y="693" width="0.0941%" height="15" fill="rgb(214,136,46)" fg:x="356483" fg:w="341"/><text x="98.6550%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (297 samples, 0.08%)</title><rect x="98.4172%" y="677" width="0.0820%" height="15" fill="rgb(207,130,50)" fg:x="356527" fg:w="297"/><text x="98.6672%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool (351 samples, 0.10%)</title><rect x="98.4034%" y="709" width="0.0969%" height="15" fill="rgb(228,102,49)" fg:x="356477" fg:w="351"/><text x="98.6534%" y="719.50"></text></g><g><title>ClassFileParser::parse_method (80 samples, 0.02%)</title><rect x="98.5036%" y="693" width="0.0221%" height="15" fill="rgb(253,55,1)" fg:x="356840" fg:w="80"/><text x="98.7536%" y="703.50"></text></g><g><title>ClassFileParser::parse_methods (82 samples, 0.02%)</title><rect x="98.5036%" y="709" width="0.0226%" height="15" fill="rgb(238,222,9)" fg:x="356840" fg:w="82"/><text x="98.7536%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (455 samples, 0.13%)</title><rect x="98.4020%" y="725" width="0.1256%" height="15" fill="rgb(246,99,6)" fg:x="356472" fg:w="455"/><text x="98.6520%" y="735.50"></text></g><g><title>ClassFileParser::ClassFileParser (458 samples, 0.13%)</title><rect x="98.4017%" y="741" width="0.1264%" height="15" fill="rgb(219,110,26)" fg:x="356471" fg:w="458"/><text x="98.6517%" y="751.50"></text></g><g><title>DefaultMethods::generate_default_methods (50 samples, 0.01%)</title><rect x="98.5290%" y="709" width="0.0138%" height="15" fill="rgb(239,160,33)" fg:x="356932" fg:w="50"/><text x="98.7790%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (77 samples, 0.02%)</title><rect x="98.5281%" y="725" width="0.0213%" height="15" fill="rgb(220,202,23)" fg:x="356929" fg:w="77"/><text x="98.7781%" y="735.50"></text></g><g><title>ClassFileParser::create_instance_klass (86 samples, 0.02%)</title><rect x="98.5281%" y="741" width="0.0237%" height="15" fill="rgb(208,80,26)" fg:x="356929" fg:w="86"/><text x="98.7781%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (571 samples, 0.16%)</title><rect x="98.4014%" y="757" width="0.1576%" height="15" fill="rgb(243,85,7)" fg:x="356470" fg:w="571"/><text x="98.6514%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (590 samples, 0.16%)</title><rect x="98.4009%" y="773" width="0.1629%" height="15" fill="rgb(228,77,47)" fg:x="356468" fg:w="590"/><text x="98.6509%" y="783.50"></text></g><g><title>JVM_DefineClassWithSource (603 samples, 0.17%)</title><rect x="98.3976%" y="805" width="0.1665%" height="15" fill="rgb(212,226,8)" fg:x="356456" fg:w="603"/><text x="98.6476%" y="815.50"></text></g><g><title>jvm_define_class_common (602 samples, 0.17%)</title><rect x="98.3978%" y="789" width="0.1662%" height="15" fill="rgb(241,120,54)" fg:x="356457" fg:w="602"/><text x="98.6478%" y="799.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (629 samples, 0.17%)</title><rect x="98.3973%" y="821" width="0.1736%" height="15" fill="rgb(226,80,16)" fg:x="356455" fg:w="629"/><text x="98.6473%" y="831.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (63 samples, 0.02%)</title><rect x="98.5861%" y="821" width="0.0174%" height="15" fill="rgb(240,76,13)" fg:x="357139" fg:w="63"/><text x="98.8361%" y="831.50"></text></g><g><title>os_getParentPidAndTimings (63 samples, 0.02%)</title><rect x="98.5861%" y="805" width="0.0174%" height="15" fill="rgb(252,74,8)" fg:x="357139" fg:w="63"/><text x="98.8361%" y="815.50"></text></g><g><title>copy_process (57 samples, 0.02%)</title><rect x="98.6201%" y="709" width="0.0157%" height="15" fill="rgb(244,155,2)" fg:x="357262" fg:w="57"/><text x="98.8701%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.03%)</title><rect x="98.6195%" y="773" width="0.0271%" height="15" fill="rgb(215,81,35)" fg:x="357260" fg:w="98"/><text x="98.8695%" y="783.50"></text></g><g><title>do_syscall_64 (98 samples, 0.03%)</title><rect x="98.6195%" y="757" width="0.0271%" height="15" fill="rgb(206,55,2)" fg:x="357260" fg:w="98"/><text x="98.8695%" y="767.50"></text></g><g><title>__x64_sys_vfork (98 samples, 0.03%)</title><rect x="98.6195%" y="741" width="0.0271%" height="15" fill="rgb(231,2,34)" fg:x="357260" fg:w="98"/><text x="98.8695%" y="751.50"></text></g><g><title>kernel_clone (98 samples, 0.03%)</title><rect x="98.6195%" y="725" width="0.0271%" height="15" fill="rgb(242,176,48)" fg:x="357260" fg:w="98"/><text x="98.8695%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (204 samples, 0.06%)</title><rect x="98.6504%" y="725" width="0.0563%" height="15" fill="rgb(249,31,36)" fg:x="357372" fg:w="204"/><text x="98.9004%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (202 samples, 0.06%)</title><rect x="98.6510%" y="709" width="0.0558%" height="15" fill="rgb(205,18,17)" fg:x="357374" fg:w="202"/><text x="98.9010%" y="719.50"></text></g><g><title>native_write_msr (201 samples, 0.06%)</title><rect x="98.6512%" y="693" width="0.0555%" height="15" fill="rgb(254,130,5)" fg:x="357375" fg:w="201"/><text x="98.9012%" y="703.50"></text></g><g><title>schedule_tail (213 samples, 0.06%)</title><rect x="98.6485%" y="757" width="0.0588%" height="15" fill="rgb(229,42,45)" fg:x="357365" fg:w="213"/><text x="98.8985%" y="767.50"></text></g><g><title>finish_task_switch (211 samples, 0.06%)</title><rect x="98.6490%" y="741" width="0.0582%" height="15" fill="rgb(245,95,25)" fg:x="357367" fg:w="211"/><text x="98.8990%" y="751.50"></text></g><g><title>__libc_vfork (326 samples, 0.09%)</title><rect x="98.6181%" y="789" width="0.0900%" height="15" fill="rgb(249,193,38)" fg:x="357255" fg:w="326"/><text x="98.8681%" y="799.50"></text></g><g><title>ret_from_fork (223 samples, 0.06%)</title><rect x="98.6466%" y="773" width="0.0616%" height="15" fill="rgb(241,140,43)" fg:x="357358" fg:w="223"/><text x="98.8966%" y="783.50"></text></g><g><title>bprm_execve (112 samples, 0.03%)</title><rect x="98.7134%" y="677" width="0.0309%" height="15" fill="rgb(245,78,48)" fg:x="357600" fg:w="112"/><text x="98.9634%" y="687.50"></text></g><g><title>JDK_execvpe (165 samples, 0.05%)</title><rect x="98.7084%" y="773" width="0.0455%" height="15" fill="rgb(214,92,39)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="783.50"></text></g><g><title>__GI_execve (165 samples, 0.05%)</title><rect x="98.7084%" y="757" width="0.0455%" height="15" fill="rgb(211,189,14)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (165 samples, 0.05%)</title><rect x="98.7084%" y="741" width="0.0455%" height="15" fill="rgb(218,7,24)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="751.50"></text></g><g><title>do_syscall_64 (165 samples, 0.05%)</title><rect x="98.7084%" y="725" width="0.0455%" height="15" fill="rgb(224,200,49)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="735.50"></text></g><g><title>__x64_sys_execve (165 samples, 0.05%)</title><rect x="98.7084%" y="709" width="0.0455%" height="15" fill="rgb(218,210,14)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="719.50"></text></g><g><title>do_execveat_common (165 samples, 0.05%)</title><rect x="98.7084%" y="693" width="0.0455%" height="15" fill="rgb(234,142,31)" fg:x="357582" fg:w="165"/><text x="98.9584%" y="703.50"></text></g><g><title>proc_fill_cache (75 samples, 0.02%)</title><rect x="98.7636%" y="645" width="0.0207%" height="15" fill="rgb(227,165,2)" fg:x="357782" fg:w="75"/><text x="99.0136%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.02%)</title><rect x="98.7617%" y="725" width="0.0243%" height="15" fill="rgb(232,44,46)" fg:x="357775" fg:w="88"/><text x="99.0117%" y="735.50"></text></g><g><title>do_syscall_64 (88 samples, 0.02%)</title><rect x="98.7617%" y="709" width="0.0243%" height="15" fill="rgb(236,149,47)" fg:x="357775" fg:w="88"/><text x="99.0117%" y="719.50"></text></g><g><title>__x64_sys_getdents64 (88 samples, 0.02%)</title><rect x="98.7617%" y="693" width="0.0243%" height="15" fill="rgb(227,45,31)" fg:x="357775" fg:w="88"/><text x="99.0117%" y="703.50"></text></g><g><title>iterate_dir (88 samples, 0.02%)</title><rect x="98.7617%" y="677" width="0.0243%" height="15" fill="rgb(240,176,51)" fg:x="357775" fg:w="88"/><text x="99.0117%" y="687.50"></text></g><g><title>proc_readfd_common (88 samples, 0.02%)</title><rect x="98.7617%" y="661" width="0.0243%" height="15" fill="rgb(249,146,41)" fg:x="357775" fg:w="88"/><text x="99.0117%" y="671.50"></text></g><g><title>__GI___readdir64 (91 samples, 0.03%)</title><rect x="98.7611%" y="757" width="0.0251%" height="15" fill="rgb(213,208,4)" fg:x="357773" fg:w="91"/><text x="99.0111%" y="767.50"></text></g><g><title>__GI___getdents64 (90 samples, 0.02%)</title><rect x="98.7614%" y="741" width="0.0248%" height="15" fill="rgb(245,84,36)" fg:x="357774" fg:w="90"/><text x="99.0114%" y="751.50"></text></g><g><title>__close (37 samples, 0.01%)</title><rect x="98.7862%" y="757" width="0.0102%" height="15" fill="rgb(254,84,18)" fg:x="357864" fg:w="37"/><text x="99.0362%" y="767.50"></text></g><g><title>closeDescriptors (160 samples, 0.04%)</title><rect x="98.7597%" y="773" width="0.0442%" height="15" fill="rgb(225,38,54)" fg:x="357768" fg:w="160"/><text x="99.0097%" y="783.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (742 samples, 0.20%)</title><rect x="98.6035%" y="821" width="0.2048%" height="15" fill="rgb(246,50,30)" fg:x="357202" fg:w="742"/><text x="98.8535%" y="831.50"></text></g><g><title>vforkChild (691 samples, 0.19%)</title><rect x="98.6176%" y="805" width="0.1907%" height="15" fill="rgb(246,148,9)" fg:x="357253" fg:w="691"/><text x="98.8676%" y="815.50"></text></g><g><title>childProcess (363 samples, 0.10%)</title><rect x="98.7081%" y="789" width="0.1002%" height="15" fill="rgb(223,75,4)" fg:x="357581" fg:w="363"/><text x="98.9581%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (39 samples, 0.01%)</title><rect x="98.8423%" y="805" width="0.0108%" height="15" fill="rgb(239,148,41)" fg:x="358067" fg:w="39"/><text x="99.0923%" y="815.50"></text></g><g><title>Runtime1::counter_overflow (75 samples, 0.02%)</title><rect x="98.8376%" y="821" width="0.0207%" height="15" fill="rgb(205,195,3)" fg:x="358050" fg:w="75"/><text x="99.0876%" y="831.50"></text></g><g><title>ObjectMonitor::enter (50 samples, 0.01%)</title><rect x="98.8768%" y="805" width="0.0138%" height="15" fill="rgb(254,161,1)" fg:x="358192" fg:w="50"/><text x="99.1268%" y="815.50"></text></g><g><title>os::PlatformEvent::park (46 samples, 0.01%)</title><rect x="98.8779%" y="789" width="0.0127%" height="15" fill="rgb(211,229,8)" fg:x="358196" fg:w="46"/><text x="99.1279%" y="799.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (59 samples, 0.02%)</title><rect x="98.8765%" y="821" width="0.0163%" height="15" fill="rgb(220,97,9)" fg:x="358191" fg:w="59"/><text x="99.1265%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (52 samples, 0.01%)</title><rect x="98.9190%" y="773" width="0.0144%" height="15" fill="rgb(240,218,8)" fg:x="358345" fg:w="52"/><text x="99.1690%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (52 samples, 0.01%)</title><rect x="98.9190%" y="757" width="0.0144%" height="15" fill="rgb(250,44,0)" fg:x="358345" fg:w="52"/><text x="99.1690%" y="767.50"></text></g><g><title>KlassFactory::create_from_stream (75 samples, 0.02%)</title><rect x="98.9190%" y="789" width="0.0207%" height="15" fill="rgb(236,41,53)" fg:x="358345" fg:w="75"/><text x="99.1690%" y="799.50"></text></g><g><title>SystemDictionary::parse_stream (115 samples, 0.03%)</title><rect x="98.9107%" y="805" width="0.0317%" height="15" fill="rgb(218,227,13)" fg:x="358315" fg:w="115"/><text x="99.1607%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (118 samples, 0.03%)</title><rect x="98.9102%" y="821" width="0.0326%" height="15" fill="rgb(217,94,32)" fg:x="358313" fg:w="118"/><text x="99.1602%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (136 samples, 0.04%)</title><rect x="98.9612%" y="597" width="0.0375%" height="15" fill="rgb(213,217,12)" fg:x="358498" fg:w="136"/><text x="99.2112%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (135 samples, 0.04%)</title><rect x="98.9615%" y="581" width="0.0373%" height="15" fill="rgb(229,13,46)" fg:x="358499" fg:w="135"/><text x="99.2115%" y="591.50"></text></g><g><title>native_write_msr (133 samples, 0.04%)</title><rect x="98.9621%" y="565" width="0.0367%" height="15" fill="rgb(243,139,5)" fg:x="358501" fg:w="133"/><text x="99.2121%" y="575.50"></text></g><g><title>finish_task_switch (146 samples, 0.04%)</title><rect x="98.9601%" y="613" width="0.0403%" height="15" fill="rgb(249,38,45)" fg:x="358494" fg:w="146"/><text x="99.2101%" y="623.50"></text></g><g><title>futex_wait_queue_me (166 samples, 0.05%)</title><rect x="98.9577%" y="661" width="0.0458%" height="15" fill="rgb(216,70,11)" fg:x="358485" fg:w="166"/><text x="99.2077%" y="671.50"></text></g><g><title>schedule (165 samples, 0.05%)</title><rect x="98.9579%" y="645" width="0.0455%" height="15" fill="rgb(253,101,25)" fg:x="358486" fg:w="165"/><text x="99.2079%" y="655.50"></text></g><g><title>__schedule (164 samples, 0.05%)</title><rect x="98.9582%" y="629" width="0.0453%" height="15" fill="rgb(207,197,30)" fg:x="358487" fg:w="164"/><text x="99.2082%" y="639.50"></text></g><g><title>do_syscall_64 (170 samples, 0.05%)</title><rect x="98.9568%" y="725" width="0.0469%" height="15" fill="rgb(238,87,13)" fg:x="358482" fg:w="170"/><text x="99.2068%" y="735.50"></text></g><g><title>__x64_sys_futex (170 samples, 0.05%)</title><rect x="98.9568%" y="709" width="0.0469%" height="15" fill="rgb(215,155,8)" fg:x="358482" fg:w="170"/><text x="99.2068%" y="719.50"></text></g><g><title>do_futex (169 samples, 0.05%)</title><rect x="98.9571%" y="693" width="0.0467%" height="15" fill="rgb(239,166,38)" fg:x="358483" fg:w="169"/><text x="99.2071%" y="703.50"></text></g><g><title>futex_wait (169 samples, 0.05%)</title><rect x="98.9571%" y="677" width="0.0467%" height="15" fill="rgb(240,194,35)" fg:x="358483" fg:w="169"/><text x="99.2071%" y="687.50"></text></g><g><title>__pthread_cond_wait (180 samples, 0.05%)</title><rect x="98.9554%" y="789" width="0.0497%" height="15" fill="rgb(219,10,44)" fg:x="358477" fg:w="180"/><text x="99.2054%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (180 samples, 0.05%)</title><rect x="98.9554%" y="773" width="0.0497%" height="15" fill="rgb(251,220,35)" fg:x="358477" fg:w="180"/><text x="99.2054%" y="783.50"></text></g><g><title>futex_wait_cancelable (179 samples, 0.05%)</title><rect x="98.9557%" y="757" width="0.0494%" height="15" fill="rgb(218,117,13)" fg:x="358478" fg:w="179"/><text x="99.2057%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (175 samples, 0.05%)</title><rect x="98.9568%" y="741" width="0.0483%" height="15" fill="rgb(221,213,40)" fg:x="358482" fg:w="175"/><text x="99.2068%" y="751.50"></text></g><g><title>Unsafe_Park (204 samples, 0.06%)</title><rect x="98.9502%" y="821" width="0.0563%" height="15" fill="rgb(251,224,35)" fg:x="358458" fg:w="204"/><text x="99.2002%" y="831.50"></text></g><g><title>Parker::park (199 samples, 0.05%)</title><rect x="98.9516%" y="805" width="0.0549%" height="15" fill="rgb(241,33,39)" fg:x="358463" fg:w="199"/><text x="99.2016%" y="815.50"></text></g><g><title>ttwu_do_activate (54 samples, 0.01%)</title><rect x="99.0300%" y="661" width="0.0149%" height="15" fill="rgb(222,74,17)" fg:x="358747" fg:w="54"/><text x="99.2800%" y="671.50"></text></g><g><title>__x64_sys_futex (112 samples, 0.03%)</title><rect x="99.0162%" y="741" width="0.0309%" height="15" fill="rgb(225,103,0)" fg:x="358697" fg:w="112"/><text x="99.2662%" y="751.50"></text></g><g><title>do_futex (111 samples, 0.03%)</title><rect x="99.0165%" y="725" width="0.0306%" height="15" fill="rgb(240,0,12)" fg:x="358698" fg:w="111"/><text x="99.2665%" y="735.50"></text></g><g><title>futex_wake (110 samples, 0.03%)</title><rect x="99.0167%" y="709" width="0.0304%" height="15" fill="rgb(233,213,37)" fg:x="358699" fg:w="110"/><text x="99.2667%" y="719.50"></text></g><g><title>wake_up_q (92 samples, 0.03%)</title><rect x="99.0217%" y="693" width="0.0254%" height="15" fill="rgb(225,84,52)" fg:x="358717" fg:w="92"/><text x="99.2717%" y="703.50"></text></g><g><title>try_to_wake_up (91 samples, 0.03%)</title><rect x="99.0220%" y="677" width="0.0251%" height="15" fill="rgb(247,160,51)" fg:x="358718" fg:w="91"/><text x="99.2720%" y="687.50"></text></g><g><title>do_syscall_64 (116 samples, 0.03%)</title><rect x="99.0156%" y="757" width="0.0320%" height="15" fill="rgb(244,60,51)" fg:x="358695" fg:w="116"/><text x="99.2656%" y="767.50"></text></g><g><title>__pthread_cond_signal (127 samples, 0.04%)</title><rect x="99.0142%" y="805" width="0.0351%" height="15" fill="rgb(233,114,7)" fg:x="358690" fg:w="127"/><text x="99.2642%" y="815.50"></text></g><g><title>futex_wake (123 samples, 0.03%)</title><rect x="99.0154%" y="789" width="0.0340%" height="15" fill="rgb(246,136,16)" fg:x="358694" fg:w="123"/><text x="99.2654%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (122 samples, 0.03%)</title><rect x="99.0156%" y="773" width="0.0337%" height="15" fill="rgb(243,114,45)" fg:x="358695" fg:w="122"/><text x="99.2656%" y="783.50"></text></g><g><title>Unsafe_Unpark (152 samples, 0.04%)</title><rect x="99.0087%" y="821" width="0.0420%" height="15" fill="rgb(247,183,43)" fg:x="358670" fg:w="152"/><text x="99.2587%" y="831.50"></text></g><g><title>kernel_init_free_pages (46 samples, 0.01%)</title><rect x="99.0995%" y="693" width="0.0127%" height="15" fill="rgb(251,210,42)" fg:x="358999" fg:w="46"/><text x="99.3495%" y="703.50"></text></g><g><title>clear_page_erms (44 samples, 0.01%)</title><rect x="99.1001%" y="677" width="0.0121%" height="15" fill="rgb(221,88,35)" fg:x="359001" fg:w="44"/><text x="99.3501%" y="687.50"></text></g><g><title>get_page_from_freelist (84 samples, 0.02%)</title><rect x="99.0893%" y="725" width="0.0232%" height="15" fill="rgb(242,21,20)" fg:x="358962" fg:w="84"/><text x="99.3393%" y="735.50"></text></g><g><title>prep_new_page (49 samples, 0.01%)</title><rect x="99.0990%" y="709" width="0.0135%" height="15" fill="rgb(233,226,36)" fg:x="358997" fg:w="49"/><text x="99.3490%" y="719.50"></text></g><g><title>__alloc_pages_nodemask (100 samples, 0.03%)</title><rect x="99.0860%" y="741" width="0.0276%" height="15" fill="rgb(243,189,34)" fg:x="358950" fg:w="100"/><text x="99.3360%" y="751.50"></text></g><g><title>alloc_pages_vma (109 samples, 0.03%)</title><rect x="99.0846%" y="757" width="0.0301%" height="15" fill="rgb(207,145,50)" fg:x="358945" fg:w="109"/><text x="99.3346%" y="767.50"></text></g><g><title>handle_mm_fault (246 samples, 0.07%)</title><rect x="99.0708%" y="773" width="0.0679%" height="15" fill="rgb(242,1,50)" fg:x="358895" fg:w="246"/><text x="99.3208%" y="783.50"></text></g><g><title>exc_page_fault (277 samples, 0.08%)</title><rect x="99.0639%" y="805" width="0.0765%" height="15" fill="rgb(231,65,32)" fg:x="358870" fg:w="277"/><text x="99.3139%" y="815.50"></text></g><g><title>do_user_addr_fault (273 samples, 0.08%)</title><rect x="99.0650%" y="789" width="0.0754%" height="15" fill="rgb(208,68,49)" fg:x="358874" fg:w="273"/><text x="99.3150%" y="799.50"></text></g><g><title>asm_exc_page_fault (285 samples, 0.08%)</title><rect x="99.0634%" y="821" width="0.0787%" height="15" fill="rgb(253,54,49)" fg:x="358868" fg:w="285"/><text x="99.3134%" y="831.50"></text></g><g><title>tick_sched_handle (46 samples, 0.01%)</title><rect x="99.1498%" y="725" width="0.0127%" height="15" fill="rgb(245,186,24)" fg:x="359181" fg:w="46"/><text x="99.3998%" y="735.50"></text></g><g><title>update_process_times (46 samples, 0.01%)</title><rect x="99.1498%" y="709" width="0.0127%" height="15" fill="rgb(209,2,41)" fg:x="359181" fg:w="46"/><text x="99.3998%" y="719.50"></text></g><g><title>tick_sched_timer (50 samples, 0.01%)</title><rect x="99.1495%" y="741" width="0.0138%" height="15" fill="rgb(242,208,54)" fg:x="359180" fg:w="50"/><text x="99.3995%" y="751.50"></text></g><g><title>__hrtimer_run_queues (65 samples, 0.02%)</title><rect x="99.1459%" y="757" width="0.0179%" height="15" fill="rgb(225,9,51)" fg:x="359167" fg:w="65"/><text x="99.3959%" y="767.50"></text></g><g><title>__sysvec_apic_timer_interrupt (76 samples, 0.02%)</title><rect x="99.1445%" y="789" width="0.0210%" height="15" fill="rgb(207,207,25)" fg:x="359162" fg:w="76"/><text x="99.3945%" y="799.50"></text></g><g><title>hrtimer_interrupt (75 samples, 0.02%)</title><rect x="99.1448%" y="773" width="0.0207%" height="15" fill="rgb(253,96,18)" fg:x="359163" fg:w="75"/><text x="99.3948%" y="783.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (117 samples, 0.03%)</title><rect x="99.1421%" y="821" width="0.0323%" height="15" fill="rgb(252,215,20)" fg:x="359153" fg:w="117"/><text x="99.3921%" y="831.50"></text></g><g><title>sysvec_apic_timer_interrupt (108 samples, 0.03%)</title><rect x="99.1445%" y="805" width="0.0298%" height="15" fill="rgb(245,227,26)" fg:x="359162" fg:w="108"/><text x="99.3945%" y="815.50"></text></g><g><title>schedule (39 samples, 0.01%)</title><rect x="99.1744%" y="773" width="0.0108%" height="15" fill="rgb(241,208,0)" fg:x="359270" fg:w="39"/><text x="99.4244%" y="783.50"></text></g><g><title>__schedule (39 samples, 0.01%)</title><rect x="99.1744%" y="757" width="0.0108%" height="15" fill="rgb(224,130,10)" fg:x="359270" fg:w="39"/><text x="99.4244%" y="767.50"></text></g><g><title>irqentry_exit_to_user_mode (40 samples, 0.01%)</title><rect x="99.1744%" y="805" width="0.0110%" height="15" fill="rgb(237,29,0)" fg:x="359270" fg:w="40"/><text x="99.4244%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (40 samples, 0.01%)</title><rect x="99.1744%" y="789" width="0.0110%" height="15" fill="rgb(219,27,41)" fg:x="359270" fg:w="40"/><text x="99.4244%" y="799.50"></text></g><g><title>asm_sysvec_reschedule_ipi (42 samples, 0.01%)</title><rect x="99.1744%" y="821" width="0.0116%" height="15" fill="rgb(245,101,19)" fg:x="359270" fg:w="42"/><text x="99.4244%" y="831.50"></text></g><g><title>__sysvec_thermal (38 samples, 0.01%)</title><rect x="99.1862%" y="789" width="0.0105%" height="15" fill="rgb(243,44,37)" fg:x="359313" fg:w="38"/><text x="99.4362%" y="799.50"></text></g><g><title>intel_thermal_interrupt (38 samples, 0.01%)</title><rect x="99.1862%" y="773" width="0.0105%" height="15" fill="rgb(228,213,43)" fg:x="359313" fg:w="38"/><text x="99.4362%" y="783.50"></text></g><g><title>asm_sysvec_thermal (41 samples, 0.01%)</title><rect x="99.1859%" y="821" width="0.0113%" height="15" fill="rgb(219,163,21)" fg:x="359312" fg:w="41"/><text x="99.4359%" y="831.50"></text></g><g><title>sysvec_thermal (41 samples, 0.01%)</title><rect x="99.1859%" y="805" width="0.0113%" height="15" fill="rgb(234,86,24)" fg:x="359312" fg:w="41"/><text x="99.4359%" y="815.50"></text></g><g><title>error_entry (38 samples, 0.01%)</title><rect x="99.1992%" y="821" width="0.0105%" height="15" fill="rgb(225,10,24)" fg:x="359360" fg:w="38"/><text x="99.4492%" y="831.50"></text></g><g><title>btrfs_create (65 samples, 0.02%)</title><rect x="99.2334%" y="693" width="0.0179%" height="15" fill="rgb(218,109,7)" fg:x="359484" fg:w="65"/><text x="99.4834%" y="703.50"></text></g><g><title>do_filp_open (115 samples, 0.03%)</title><rect x="99.2274%" y="725" width="0.0317%" height="15" fill="rgb(210,20,26)" fg:x="359462" fg:w="115"/><text x="99.4774%" y="735.50"></text></g><g><title>path_openat (114 samples, 0.03%)</title><rect x="99.2276%" y="709" width="0.0315%" height="15" fill="rgb(216,18,1)" fg:x="359463" fg:w="114"/><text x="99.4776%" y="719.50"></text></g><g><title>do_syscall_64 (132 samples, 0.04%)</title><rect x="99.2249%" y="773" width="0.0364%" height="15" fill="rgb(206,163,23)" fg:x="359453" fg:w="132"/><text x="99.4749%" y="783.50"></text></g><g><title>__x64_sys_openat (132 samples, 0.04%)</title><rect x="99.2249%" y="757" width="0.0364%" height="15" fill="rgb(229,150,31)" fg:x="359453" fg:w="132"/><text x="99.4749%" y="767.50"></text></g><g><title>do_sys_openat2 (132 samples, 0.04%)</title><rect x="99.2249%" y="741" width="0.0364%" height="15" fill="rgb(231,10,5)" fg:x="359453" fg:w="132"/><text x="99.4749%" y="751.50"></text></g><g><title>__libc_open64 (136 samples, 0.04%)</title><rect x="99.2240%" y="805" width="0.0375%" height="15" fill="rgb(250,40,50)" fg:x="359450" fg:w="136"/><text x="99.4740%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (133 samples, 0.04%)</title><rect x="99.2249%" y="789" width="0.0367%" height="15" fill="rgb(217,119,7)" fg:x="359453" fg:w="133"/><text x="99.4749%" y="799.50"></text></g><g><title>fileOpen (171 samples, 0.05%)</title><rect x="99.2166%" y="821" width="0.0472%" height="15" fill="rgb(245,214,40)" fg:x="359423" fg:w="171"/><text x="99.4666%" y="831.50"></text></g><g><title>[perf-985085.map] (62,923 samples, 17.37%)</title><rect x="81.9161%" y="837" width="17.3695%" height="15" fill="rgb(216,187,1)" fg:x="296750" fg:w="62923"/><text x="82.1661%" y="847.50">[perf-985085.map]</text></g><g><title>LinkResolver::resolve_method_statically (48 samples, 0.01%)</title><rect x="99.3320%" y="773" width="0.0133%" height="15" fill="rgb(237,146,21)" fg:x="359841" fg:w="48"/><text x="99.5820%" y="783.50"></text></g><g><title>Bytecode_invoke::static_target (50 samples, 0.01%)</title><rect x="99.3317%" y="789" width="0.0138%" height="15" fill="rgb(210,174,47)" fg:x="359840" fg:w="50"/><text x="99.5817%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (42 samples, 0.01%)</title><rect x="99.3463%" y="789" width="0.0116%" height="15" fill="rgb(218,111,39)" fg:x="359893" fg:w="42"/><text x="99.5963%" y="799.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (167 samples, 0.05%)</title><rect x="99.3314%" y="805" width="0.0461%" height="15" fill="rgb(224,95,19)" fg:x="359839" fg:w="167"/><text x="99.5814%" y="815.50"></text></g><g><title>frame::sender (53 samples, 0.01%)</title><rect x="99.3629%" y="789" width="0.0146%" height="15" fill="rgb(234,15,38)" fg:x="359953" fg:w="53"/><text x="99.6129%" y="799.50"></text></g><g><title>OopMapSet::update_register_map (50 samples, 0.01%)</title><rect x="99.3637%" y="773" width="0.0138%" height="15" fill="rgb(246,56,12)" fg:x="359956" fg:w="50"/><text x="99.6137%" y="783.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (257 samples, 0.07%)</title><rect x="99.3140%" y="821" width="0.0709%" height="15" fill="rgb(247,16,17)" fg:x="359776" fg:w="257"/><text x="99.5640%" y="831.50"></text></g><g><title>Monitor::lock_without_safepoint_check (40 samples, 0.01%)</title><rect x="99.3852%" y="789" width="0.0110%" height="15" fill="rgb(215,151,11)" fg:x="360034" fg:w="40"/><text x="99.6352%" y="799.50"></text></g><g><title>Monitor::ILock (40 samples, 0.01%)</title><rect x="99.3852%" y="773" width="0.0110%" height="15" fill="rgb(225,16,24)" fg:x="360034" fg:w="40"/><text x="99.6352%" y="783.50"></text></g><g><title>SafepointSynchronize::block (49 samples, 0.01%)</title><rect x="99.3852%" y="805" width="0.0135%" height="15" fill="rgb(217,117,5)" fg:x="360034" fg:w="49"/><text x="99.6352%" y="815.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (50 samples, 0.01%)</title><rect x="99.3852%" y="821" width="0.0138%" height="15" fill="rgb(246,187,53)" fg:x="360034" fg:w="50"/><text x="99.6352%" y="831.50"></text></g><g><title>__fget_light (42 samples, 0.01%)</title><rect x="99.4407%" y="693" width="0.0116%" height="15" fill="rgb(241,71,40)" fg:x="360235" fg:w="42"/><text x="99.6907%" y="703.50"></text></g><g><title>__fdget_pos (59 samples, 0.02%)</title><rect x="99.4388%" y="709" width="0.0163%" height="15" fill="rgb(231,67,39)" fg:x="360228" fg:w="59"/><text x="99.6888%" y="719.50"></text></g><g><title>copy_page_to_iter (617 samples, 0.17%)</title><rect x="99.4940%" y="661" width="0.1703%" height="15" fill="rgb(222,120,24)" fg:x="360428" fg:w="617"/><text x="99.7440%" y="671.50"></text></g><g><title>copy_user_enhanced_fast_string (569 samples, 0.16%)</title><rect x="99.5073%" y="645" width="0.1571%" height="15" fill="rgb(248,3,3)" fg:x="360476" fg:w="569"/><text x="99.7573%" y="655.50"></text></g><g><title>pagecache_get_page (141 samples, 0.04%)</title><rect x="99.6693%" y="661" width="0.0389%" height="15" fill="rgb(228,218,5)" fg:x="361063" fg:w="141"/><text x="99.9193%" y="671.50"></text></g><g><title>find_get_entry (125 samples, 0.03%)</title><rect x="99.6737%" y="645" width="0.0345%" height="15" fill="rgb(212,202,43)" fg:x="361079" fg:w="125"/><text x="99.9237%" y="655.50"></text></g><g><title>xas_load (61 samples, 0.02%)</title><rect x="99.6914%" y="629" width="0.0168%" height="15" fill="rgb(235,183,2)" fg:x="361143" fg:w="61"/><text x="99.9414%" y="639.50"></text></g><g><title>touch_atime (45 samples, 0.01%)</title><rect x="99.7082%" y="661" width="0.0124%" height="15" fill="rgb(230,165,10)" fg:x="361204" fg:w="45"/><text x="99.9582%" y="671.50"></text></g><g><title>generic_file_buffered_read (884 samples, 0.24%)</title><rect x="99.4772%" y="677" width="0.2440%" height="15" fill="rgb(219,54,40)" fg:x="360367" fg:w="884"/><text x="99.7272%" y="687.50"></text></g><g><title>new_sync_read (903 samples, 0.25%)</title><rect x="99.4730%" y="693" width="0.2493%" height="15" fill="rgb(244,73,9)" fg:x="360352" fg:w="903"/><text x="99.7230%" y="703.50"></text></g><g><title>ksys_read (1,103 samples, 0.30%)</title><rect x="99.4358%" y="725" width="0.3045%" height="15" fill="rgb(212,32,45)" fg:x="360217" fg:w="1103"/><text x="99.6858%" y="735.50"></text></g><g><title>vfs_read (1,020 samples, 0.28%)</title><rect x="99.4587%" y="709" width="0.2816%" height="15" fill="rgb(205,58,31)" fg:x="360300" fg:w="1020"/><text x="99.7087%" y="719.50"></text></g><g><title>security_file_permission (58 samples, 0.02%)</title><rect x="99.7242%" y="693" width="0.0160%" height="15" fill="rgb(250,120,43)" fg:x="361262" fg:w="58"/><text x="99.9742%" y="703.50"></text></g><g><title>apparmor_file_permission (49 samples, 0.01%)</title><rect x="99.7267%" y="677" width="0.0135%" height="15" fill="rgb(235,13,10)" fg:x="361271" fg:w="49"/><text x="99.9767%" y="687.50"></text></g><g><title>do_syscall_64 (1,110 samples, 0.31%)</title><rect x="99.4358%" y="741" width="0.3064%" height="15" fill="rgb(232,219,31)" fg:x="360217" fg:w="1110"/><text x="99.6858%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,135 samples, 0.31%)</title><rect x="99.4338%" y="757" width="0.3133%" height="15" fill="rgb(218,157,51)" fg:x="360210" fg:w="1135"/><text x="99.6838%" y="767.50"></text></g><g><title>__libc_read (1,201 samples, 0.33%)</title><rect x="99.4181%" y="773" width="0.3315%" height="15" fill="rgb(211,91,52)" fg:x="360153" fg:w="1201"/><text x="99.6681%" y="783.50"></text></g><g><title>__libc_read (1,203 samples, 0.33%)</title><rect x="99.4178%" y="789" width="0.3321%" height="15" fill="rgb(240,173,1)" fg:x="360152" fg:w="1203"/><text x="99.6678%" y="799.50"></text></g><g><title>handleRead (1,213 samples, 0.33%)</title><rect x="99.4173%" y="805" width="0.3348%" height="15" fill="rgb(248,20,47)" fg:x="360150" fg:w="1213"/><text x="99.6673%" y="815.50"></text></g><g><title>jni_GetArrayLength (38 samples, 0.01%)</title><rect x="99.7521%" y="805" width="0.0105%" height="15" fill="rgb(217,221,40)" fg:x="361363" fg:w="38"/><text x="100.0021%" y="815.50"></text></g><g><title>jni_GetObjectField (148 samples, 0.04%)</title><rect x="99.7626%" y="805" width="0.0409%" height="15" fill="rgb(226,149,51)" fg:x="361401" fg:w="148"/><text x="100.0126%" y="815.50"></text></g><g><title>[libc-2.31.so] (183 samples, 0.05%)</title><rect x="99.8195%" y="789" width="0.0505%" height="15" fill="rgb(252,193,7)" fg:x="361607" fg:w="183"/><text x="100.0695%" y="799.50"></text></g><g><title>readBytes (1,695 samples, 0.47%)</title><rect x="99.4090%" y="821" width="0.4679%" height="15" fill="rgb(205,123,0)" fg:x="360120" fg:w="1695"/><text x="99.6590%" y="831.50"></text></g><g><title>jni_SetByteArrayRegion (266 samples, 0.07%)</title><rect x="99.8035%" y="805" width="0.0734%" height="15" fill="rgb(233,173,25)" fg:x="361549" fg:w="266"/><text x="100.0535%" y="815.50"></text></g><g><title>[unknown] (2,161 samples, 0.60%)</title><rect x="99.2856%" y="837" width="0.5965%" height="15" fill="rgb(216,63,32)" fg:x="359673" fg:w="2161"/><text x="99.5356%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.02%)</title><rect x="99.8854%" y="773" width="0.0157%" height="15" fill="rgb(209,56,45)" fg:x="361846" fg:w="57"/><text x="100.1354%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.02%)</title><rect x="99.8857%" y="757" width="0.0155%" height="15" fill="rgb(226,111,49)" fg:x="361847" fg:w="56"/><text x="100.1357%" y="767.50"></text></g><g><title>native_write_msr (56 samples, 0.02%)</title><rect x="99.8857%" y="741" width="0.0155%" height="15" fill="rgb(244,181,21)" fg:x="361847" fg:w="56"/><text x="100.1357%" y="751.50"></text></g><g><title>schedule_tail (59 samples, 0.02%)</title><rect x="99.8852%" y="805" width="0.0163%" height="15" fill="rgb(222,126,15)" fg:x="361845" fg:w="59"/><text x="100.1352%" y="815.50"></text></g><g><title>finish_task_switch (59 samples, 0.02%)</title><rect x="99.8852%" y="789" width="0.0163%" height="15" fill="rgb(222,95,17)" fg:x="361845" fg:w="59"/><text x="100.1352%" y="799.50"></text></g><g><title>ret_from_fork (62 samples, 0.02%)</title><rect x="99.8849%" y="821" width="0.0171%" height="15" fill="rgb(254,46,5)" fg:x="361844" fg:w="62"/><text x="100.1349%" y="831.50"></text></g><g><title>__GI___clone (117 samples, 0.03%)</title><rect x="99.8821%" y="837" width="0.0323%" height="15" fill="rgb(236,216,35)" fg:x="361834" fg:w="117"/><text x="100.1321%" y="847.50"></text></g><g><title>start_thread (45 samples, 0.01%)</title><rect x="99.9020%" y="821" width="0.0124%" height="15" fill="rgb(217,187,26)" fg:x="361906" fg:w="45"/><text x="100.1520%" y="831.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.02%)</title><rect x="99.9230%" y="837" width="0.0152%" height="15" fill="rgb(207,192,25)" fg:x="361982" fg:w="55"/><text x="100.1730%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.01%)</title><rect x="99.9404%" y="837" width="0.0110%" height="15" fill="rgb(253,135,27)" fg:x="362045" fg:w="40"/><text x="100.1904%" y="847.50"></text></g><g><title>skyframe-evalua (238,929 samples, 65.95%)</title><rect x="34.0089%" y="853" width="65.9549%" height="15" fill="rgb(211,122,29)" fg:x="123201" fg:w="238929"/><text x="34.2589%" y="863.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (39 samples, 0.01%)</title><rect x="99.9771%" y="597" width="0.0108%" height="15" fill="rgb(233,162,40)" fg:x="362178" fg:w="39"/><text x="100.2271%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.01%)</title><rect x="99.9771%" y="581" width="0.0108%" height="15" fill="rgb(222,184,47)" fg:x="362178" fg:w="39"/><text x="100.2271%" y="591.50"></text></g><g><title>native_write_msr (39 samples, 0.01%)</title><rect x="99.9771%" y="565" width="0.0108%" height="15" fill="rgb(249,99,23)" fg:x="362178" fg:w="39"/><text x="100.2271%" y="575.50"></text></g><g><title>finish_task_switch (43 samples, 0.01%)</title><rect x="99.9771%" y="613" width="0.0119%" height="15" fill="rgb(214,60,12)" fg:x="362178" fg:w="43"/><text x="100.2271%" y="623.50"></text></g><g><title>do_syscall_64 (48 samples, 0.01%)</title><rect x="99.9763%" y="725" width="0.0133%" height="15" fill="rgb(250,229,36)" fg:x="362175" fg:w="48"/><text x="100.2263%" y="735.50"></text></g><g><title>__x64_sys_futex (47 samples, 0.01%)</title><rect x="99.9765%" y="709" width="0.0130%" height="15" fill="rgb(232,195,10)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="719.50"></text></g><g><title>do_futex (47 samples, 0.01%)</title><rect x="99.9765%" y="693" width="0.0130%" height="15" fill="rgb(205,213,31)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="703.50"></text></g><g><title>futex_wait (47 samples, 0.01%)</title><rect x="99.9765%" y="677" width="0.0130%" height="15" fill="rgb(237,43,8)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="687.50"></text></g><g><title>futex_wait_queue_me (47 samples, 0.01%)</title><rect x="99.9765%" y="661" width="0.0130%" height="15" fill="rgb(216,208,3)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="671.50"></text></g><g><title>schedule (47 samples, 0.01%)</title><rect x="99.9765%" y="645" width="0.0130%" height="15" fill="rgb(228,179,44)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="655.50"></text></g><g><title>__schedule (47 samples, 0.01%)</title><rect x="99.9765%" y="629" width="0.0130%" height="15" fill="rgb(230,192,27)" fg:x="362176" fg:w="47"/><text x="100.2265%" y="639.50"></text></g><g><title>__pthread_cond_wait (49 samples, 0.01%)</title><rect x="99.9763%" y="789" width="0.0135%" height="15" fill="rgb(251,30,38)" fg:x="362175" fg:w="49"/><text x="100.2263%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (49 samples, 0.01%)</title><rect x="99.9763%" y="773" width="0.0135%" height="15" fill="rgb(246,55,52)" fg:x="362175" fg:w="49"/><text x="100.2263%" y="783.50"></text></g><g><title>futex_wait_cancelable (49 samples, 0.01%)</title><rect x="99.9763%" y="757" width="0.0135%" height="15" fill="rgb(249,79,26)" fg:x="362175" fg:w="49"/><text x="100.2263%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="99.9763%" y="741" width="0.0135%" height="15" fill="rgb(220,202,16)" fg:x="362175" fg:w="49"/><text x="100.2263%" y="751.50"></text></g><g><title>Parker::park (52 samples, 0.01%)</title><rect x="99.9757%" y="805" width="0.0144%" height="15" fill="rgb(250,170,23)" fg:x="362173" fg:w="52"/><text x="100.2257%" y="815.50"></text></g><g><title>Unsafe_Park (58 samples, 0.02%)</title><rect x="99.9757%" y="821" width="0.0160%" height="15" fill="rgb(230,7,37)" fg:x="362173" fg:w="58"/><text x="100.2257%" y="831.50"></text></g><g><title>[perf-985085.map] (106 samples, 0.03%)</title><rect x="99.9644%" y="837" width="0.0293%" height="15" fill="rgb(213,71,1)" fg:x="362132" fg:w="106"/><text x="100.2144%" y="847.50"></text></g><g><title>skyframe-invali (128 samples, 0.04%)</title><rect x="99.9638%" y="853" width="0.0353%" height="15" fill="rgb(227,87,39)" fg:x="362130" fg:w="128"/><text x="100.2138%" y="863.50"></text></g><g><title>all (362,261 samples, 100%)</title><rect x="0.0000%" y="869" width="100.0000%" height="15" fill="rgb(210,41,29)" fg:x="0" fg:w="362261"/><text x="0.2500%" y="879.50"></text></g></svg></svg> +\ No newline at end of file diff --git a/results/llvm-nosandbox-j1.svg b/results/llvm-nosandbox-j1.svg @@ -1,491 +0,0 @@ -<?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="1046" onload="init(evt)" viewBox="0 0 1200 1046" 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="1046" 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="1029.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="1029.00"> </text><svg id="frames" x="10" width="1180" total_samples="145987"><g><title>[perf-627991.map] (17 samples, 0.01%)</title><rect x="0.0007%" y="965" width="0.0116%" height="15" fill="rgb(227,0,7)" fg:x="1" fg:w="17"/><text x="0.2507%" y="975.50"></text></g><g><title>ActionLookupVal (22 samples, 0.02%)</title><rect x="0.0000%" y="981" width="0.0151%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="22"/><text x="0.2500%" y="991.50"></text></g><g><title>_dl_update_slotinfo (110 samples, 0.08%)</title><rect x="0.5939%" y="949" width="0.0753%" height="15" fill="rgb(221,193,54)" fg:x="867" fg:w="110"/><text x="0.8439%" y="959.50"></text></g><g><title>resource_allocate_bytes (21 samples, 0.01%)</title><rect x="0.7590%" y="949" width="0.0144%" height="15" fill="rgb(248,212,6)" fg:x="1108" fg:w="21"/><text x="1.0090%" y="959.50"></text></g><g><title>update_get_addr (26 samples, 0.02%)</title><rect x="0.7843%" y="949" width="0.0178%" height="15" fill="rgb(208,68,35)" fg:x="1145" fg:w="26"/><text x="1.0343%" y="959.50"></text></g><g><title>[anon] (1,112 samples, 0.76%)</title><rect x="0.0411%" y="965" width="0.7617%" height="15" fill="rgb(232,128,0)" fg:x="60" fg:w="1112"/><text x="0.2911%" y="975.50"></text></g><g><title>[perf-627991.map] (140 samples, 0.10%)</title><rect x="0.8042%" y="965" width="0.0959%" height="15" fill="rgb(207,160,47)" fg:x="1174" fg:w="140"/><text x="1.0542%" y="975.50"></text></g><g><title>_dl_update_slotinfo (26 samples, 0.02%)</title><rect x="0.9371%" y="949" width="0.0178%" height="15" fill="rgb(228,23,34)" fg:x="1368" fg:w="26"/><text x="1.1871%" y="959.50"></text></g><g><title>[unknown] (92 samples, 0.06%)</title><rect x="0.9001%" y="965" width="0.0630%" height="15" fill="rgb(218,30,26)" fg:x="1314" fg:w="92"/><text x="1.1501%" y="975.50"></text></g><g><title>ret_from_fork (24 samples, 0.02%)</title><rect x="0.9658%" y="949" width="0.0164%" height="15" fill="rgb(220,122,19)" fg:x="1410" fg:w="24"/><text x="1.2158%" y="959.50"></text></g><g><title>schedule_tail (21 samples, 0.01%)</title><rect x="0.9679%" y="933" width="0.0144%" height="15" fill="rgb(250,228,42)" fg:x="1413" fg:w="21"/><text x="1.2179%" y="943.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="0.9679%" y="917" width="0.0144%" height="15" fill="rgb(240,193,28)" fg:x="1413" fg:w="21"/><text x="1.2179%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="0.9679%" y="901" width="0.0144%" height="15" fill="rgb(216,20,37)" fg:x="1413" fg:w="21"/><text x="1.2179%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="0.9679%" y="885" width="0.0144%" height="15" fill="rgb(206,188,39)" fg:x="1413" fg:w="21"/><text x="1.2179%" y="895.50"></text></g><g><title>native_write_msr (21 samples, 0.01%)</title><rect x="0.9679%" y="869" width="0.0144%" height="15" fill="rgb(217,207,13)" fg:x="1413" fg:w="21"/><text x="1.2179%" y="879.50"></text></g><g><title>CompileBroker::collect_statistics (21 samples, 0.01%)</title><rect x="0.9967%" y="853" width="0.0144%" height="15" fill="rgb(231,73,38)" fg:x="1455" fg:w="21"/><text x="1.2467%" y="863.50"></text></g><g><title>jio_vsnprintf (36 samples, 0.02%)</title><rect x="1.0179%" y="821" width="0.0247%" height="15" fill="rgb(225,20,46)" fg:x="1486" fg:w="36"/><text x="1.2679%" y="831.50"></text></g><g><title>os::vsnprintf (36 samples, 0.02%)</title><rect x="1.0179%" y="805" width="0.0247%" height="15" fill="rgb(210,31,41)" fg:x="1486" fg:w="36"/><text x="1.2679%" y="815.50"></text></g><g><title>__vsnprintf_internal (35 samples, 0.02%)</title><rect x="1.0186%" y="789" width="0.0240%" height="15" fill="rgb(221,200,47)" fg:x="1487" fg:w="35"/><text x="1.2686%" y="799.50"></text></g><g><title>__vfprintf_internal (35 samples, 0.02%)</title><rect x="1.0186%" y="773" width="0.0240%" height="15" fill="rgb(226,26,5)" fg:x="1487" fg:w="35"/><text x="1.2686%" y="783.50"></text></g><g><title>CompileBroker::post_compile (48 samples, 0.03%)</title><rect x="1.0110%" y="853" width="0.0329%" height="15" fill="rgb(249,33,26)" fg:x="1476" fg:w="48"/><text x="1.2610%" y="863.50"></text></g><g><title>StringEventLog::log (47 samples, 0.03%)</title><rect x="1.0117%" y="837" width="0.0322%" height="15" fill="rgb(235,183,28)" fg:x="1477" fg:w="47"/><text x="1.2617%" y="847.50"></text></g><g><title>CompileBroker::set_last_compile (27 samples, 0.02%)</title><rect x="1.0439%" y="853" width="0.0185%" height="15" fill="rgb(221,5,38)" fg:x="1524" fg:w="27"/><text x="1.2939%" y="863.50"></text></g><g><title>Symbol::print_symbol_on (19 samples, 0.01%)</title><rect x="1.0775%" y="821" width="0.0130%" height="15" fill="rgb(247,18,42)" fg:x="1573" fg:w="19"/><text x="1.3275%" y="831.50"></text></g><g><title>Method::print_short_name (47 samples, 0.03%)</title><rect x="1.0672%" y="837" width="0.0322%" height="15" fill="rgb(241,131,45)" fg:x="1558" fg:w="47"/><text x="1.3172%" y="847.50"></text></g><g><title>os::vsnprintf (31 samples, 0.02%)</title><rect x="1.1090%" y="805" width="0.0212%" height="15" fill="rgb(249,31,29)" fg:x="1619" fg:w="31"/><text x="1.3590%" y="815.50"></text></g><g><title>__vsnprintf_internal (30 samples, 0.02%)</title><rect x="1.1097%" y="789" width="0.0205%" height="15" fill="rgb(225,111,53)" fg:x="1620" fg:w="30"/><text x="1.3597%" y="799.50"></text></g><g><title>__vfprintf_internal (26 samples, 0.02%)</title><rect x="1.1124%" y="773" width="0.0178%" height="15" fill="rgb(238,160,17)" fg:x="1624" fg:w="26"/><text x="1.3624%" y="783.50"></text></g><g><title>CompileTask::print (102 samples, 0.07%)</title><rect x="1.0645%" y="853" width="0.0699%" height="15" fill="rgb(214,148,48)" fg:x="1554" fg:w="102"/><text x="1.3145%" y="863.50"></text></g><g><title>outputStream::print (51 samples, 0.03%)</title><rect x="1.0994%" y="837" width="0.0349%" height="15" fill="rgb(232,36,49)" fg:x="1605" fg:w="51"/><text x="1.3494%" y="847.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (48 samples, 0.03%)</title><rect x="1.1015%" y="821" width="0.0329%" height="15" fill="rgb(209,103,24)" fg:x="1608" fg:w="48"/><text x="1.3515%" y="831.50"></text></g><g><title>BlockBegin::iterate_preorder (16 samples, 0.01%)</title><rect x="1.2063%" y="661" width="0.0110%" height="15" fill="rgb(229,88,8)" fg:x="1761" fg:w="16"/><text x="1.4563%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (30 samples, 0.02%)</title><rect x="1.2049%" y="677" width="0.0205%" height="15" fill="rgb(213,181,19)" fg:x="1759" fg:w="30"/><text x="1.4549%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (42 samples, 0.03%)</title><rect x="1.2042%" y="693" width="0.0288%" height="15" fill="rgb(254,191,54)" fg:x="1758" fg:w="42"/><text x="1.4542%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (60 samples, 0.04%)</title><rect x="1.2035%" y="709" width="0.0411%" height="15" fill="rgb(241,83,37)" fg:x="1757" fg:w="60"/><text x="1.4535%" y="719.50"></text></g><g><title>SubstitutionResolver::block_do (17 samples, 0.01%)</title><rect x="1.2330%" y="693" width="0.0116%" height="15" fill="rgb(233,36,39)" fg:x="1800" fg:w="17"/><text x="1.4830%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (107 samples, 0.07%)</title><rect x="1.1994%" y="725" width="0.0733%" height="15" fill="rgb(226,3,54)" fg:x="1751" fg:w="107"/><text x="1.4494%" y="735.50"></text></g><g><title>SubstitutionResolver::block_do (41 samples, 0.03%)</title><rect x="1.2446%" y="709" width="0.0281%" height="15" fill="rgb(245,192,40)" fg:x="1817" fg:w="41"/><text x="1.4946%" y="719.50"></text></g><g><title>ValueStack::values_do (17 samples, 0.01%)</title><rect x="1.2611%" y="693" width="0.0116%" height="15" fill="rgb(238,167,29)" fg:x="1841" fg:w="17"/><text x="1.5111%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (164 samples, 0.11%)</title><rect x="1.1960%" y="741" width="0.1123%" height="15" fill="rgb(232,182,51)" fg:x="1746" fg:w="164"/><text x="1.4460%" y="751.50"></text></g><g><title>SubstitutionResolver::block_do (52 samples, 0.04%)</title><rect x="1.2727%" y="725" width="0.0356%" height="15" fill="rgb(231,60,39)" fg:x="1858" fg:w="52"/><text x="1.5227%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (166 samples, 0.11%)</title><rect x="1.1953%" y="757" width="0.1137%" height="15" fill="rgb(208,69,12)" fg:x="1745" fg:w="166"/><text x="1.4453%" y="767.50"></text></g><g><title>ValueMap::ValueMap (27 samples, 0.02%)</title><rect x="1.3166%" y="757" width="0.0185%" height="15" fill="rgb(235,93,37)" fg:x="1922" fg:w="27"/><text x="1.5666%" y="767.50"></text></g><g><title>ValueMap::find_insert (43 samples, 0.03%)</title><rect x="1.3351%" y="757" width="0.0295%" height="15" fill="rgb(213,116,39)" fg:x="1949" fg:w="43"/><text x="1.5851%" y="767.50"></text></g><g><title>ValueMap::kill_memory (25 samples, 0.02%)</title><rect x="1.3686%" y="757" width="0.0171%" height="15" fill="rgb(222,207,29)" fg:x="1998" fg:w="25"/><text x="1.6186%" y="767.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (344 samples, 0.24%)</title><rect x="1.1583%" y="773" width="0.2356%" height="15" fill="rgb(206,96,30)" fg:x="1691" fg:w="344"/><text x="1.4083%" y="783.50"></text></g><g><title>BlockBegin::iterate_preorder (17 samples, 0.01%)</title><rect x="1.4090%" y="645" width="0.0116%" height="15" fill="rgb(218,138,4)" fg:x="2057" fg:w="17"/><text x="1.6590%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (24 samples, 0.02%)</title><rect x="1.4090%" y="661" width="0.0164%" height="15" fill="rgb(250,191,14)" fg:x="2057" fg:w="24"/><text x="1.6590%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (35 samples, 0.02%)</title><rect x="1.4070%" y="677" width="0.0240%" height="15" fill="rgb(239,60,40)" fg:x="2054" fg:w="35"/><text x="1.6570%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (47 samples, 0.03%)</title><rect x="1.4056%" y="693" width="0.0322%" height="15" fill="rgb(206,27,48)" fg:x="2052" fg:w="47"/><text x="1.6556%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (61 samples, 0.04%)</title><rect x="1.4029%" y="709" width="0.0418%" height="15" fill="rgb(225,35,8)" fg:x="2048" fg:w="61"/><text x="1.6529%" y="719.50"></text></g><g><title>PhiSimplifier::block_do (16 samples, 0.01%)</title><rect x="1.4446%" y="709" width="0.0110%" height="15" fill="rgb(250,213,24)" fg:x="2109" fg:w="16"/><text x="1.6946%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (85 samples, 0.06%)</title><rect x="1.3981%" y="725" width="0.0582%" height="15" fill="rgb(247,123,22)" fg:x="2041" fg:w="85"/><text x="1.6481%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (87 samples, 0.06%)</title><rect x="1.3974%" y="741" width="0.0596%" height="15" fill="rgb(231,138,38)" fg:x="2040" fg:w="87"/><text x="1.6474%" y="751.50"></text></g><g><title>BlockListBuilder::make_block_at (19 samples, 0.01%)</title><rect x="1.4803%" y="709" width="0.0130%" height="15" fill="rgb(231,145,46)" fg:x="2161" fg:w="19"/><text x="1.7303%" y="719.50"></text></g><g><title>MethodLiveness::init_basic_blocks (59 samples, 0.04%)</title><rect x="1.5097%" y="677" width="0.0404%" height="15" fill="rgb(251,118,11)" fg:x="2204" fg:w="59"/><text x="1.7597%" y="687.50"></text></g><g><title>ciMethod::get_method_blocks (23 samples, 0.02%)</title><rect x="1.5344%" y="661" width="0.0158%" height="15" fill="rgb(217,147,25)" fg:x="2240" fg:w="23"/><text x="1.7844%" y="671.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (22 samples, 0.02%)</title><rect x="1.5351%" y="645" width="0.0151%" height="15" fill="rgb(247,81,37)" fg:x="2241" fg:w="22"/><text x="1.7851%" y="655.50"></text></g><g><title>ciMethodBlocks::do_analysis (16 samples, 0.01%)</title><rect x="1.5392%" y="629" width="0.0110%" height="15" fill="rgb(209,12,38)" fg:x="2247" fg:w="16"/><text x="1.7892%" y="639.50"></text></g><g><title>MethodLiveness::compute_liveness (83 samples, 0.06%)</title><rect x="1.4940%" y="693" width="0.0569%" height="15" fill="rgb(227,1,9)" fg:x="2181" fg:w="83"/><text x="1.7440%" y="703.50"></text></g><g><title>BlockListBuilder::set_leaders (114 samples, 0.08%)</title><rect x="1.4748%" y="725" width="0.0781%" height="15" fill="rgb(248,47,43)" fg:x="2153" fg:w="114"/><text x="1.7248%" y="735.50"></text></g><g><title>ciMethod::bci_block_start (87 samples, 0.06%)</title><rect x="1.4933%" y="709" width="0.0596%" height="15" fill="rgb(221,10,30)" fg:x="2180" fg:w="87"/><text x="1.7433%" y="719.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (132 samples, 0.09%)</title><rect x="1.4652%" y="741" width="0.0904%" height="15" fill="rgb(210,229,1)" fg:x="2139" fg:w="132"/><text x="1.7152%" y="751.50"></text></g><g><title>ValueStack::ValueStack (21 samples, 0.01%)</title><rect x="1.5714%" y="709" width="0.0144%" height="15" fill="rgb(222,148,37)" fg:x="2294" fg:w="21"/><text x="1.8214%" y="719.50"></text></g><g><title>GraphBuilder::connect_to_end (30 samples, 0.02%)</title><rect x="1.5659%" y="725" width="0.0205%" height="15" fill="rgb(234,67,33)" fg:x="2286" fg:w="30"/><text x="1.8159%" y="735.50"></text></g><g><title>BlockBegin::try_merge (30 samples, 0.02%)</title><rect x="1.6152%" y="709" width="0.0205%" height="15" fill="rgb(247,98,35)" fg:x="2358" fg:w="30"/><text x="1.8652%" y="719.50"></text></g><g><title>GraphBuilder::append_with_bci (17 samples, 0.01%)</title><rect x="1.6522%" y="693" width="0.0116%" height="15" fill="rgb(247,138,52)" fg:x="2412" fg:w="17"/><text x="1.9022%" y="703.50"></text></g><g><title>SymbolTable::lookup (15 samples, 0.01%)</title><rect x="1.6967%" y="613" width="0.0103%" height="15" fill="rgb(213,79,30)" fg:x="2477" fg:w="15"/><text x="1.9467%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (22 samples, 0.02%)</title><rect x="1.7091%" y="613" width="0.0151%" height="15" fill="rgb(246,177,23)" fg:x="2495" fg:w="22"/><text x="1.9591%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (54 samples, 0.04%)</title><rect x="1.6926%" y="629" width="0.0370%" height="15" fill="rgb(230,62,27)" fg:x="2471" fg:w="54"/><text x="1.9426%" y="639.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (74 samples, 0.05%)</title><rect x="1.6830%" y="645" width="0.0507%" height="15" fill="rgb(216,154,8)" fg:x="2457" fg:w="74"/><text x="1.9330%" y="655.50"></text></g><g><title>ciField::ciField (100 samples, 0.07%)</title><rect x="1.6755%" y="661" width="0.0685%" height="15" fill="rgb(244,35,45)" fg:x="2446" fg:w="100"/><text x="1.9255%" y="671.50"></text></g><g><title>ciEnv::get_field_by_index (109 samples, 0.07%)</title><rect x="1.6728%" y="677" width="0.0747%" height="15" fill="rgb(251,115,12)" fg:x="2442" fg:w="109"/><text x="1.9228%" y="687.50"></text></g><g><title>ciBytecodeStream::get_field (118 samples, 0.08%)</title><rect x="1.6728%" y="693" width="0.0808%" height="15" fill="rgb(240,54,50)" fg:x="2442" fg:w="118"/><text x="1.9228%" y="703.50"></text></g><g><title>GraphBuilder::access_field (163 samples, 0.11%)</title><rect x="1.6454%" y="709" width="0.1117%" height="15" fill="rgb(233,84,52)" fg:x="2402" fg:w="163"/><text x="1.8954%" y="719.50"></text></g><g><title>GraphBuilder::append_with_bci (19 samples, 0.01%)</title><rect x="1.7570%" y="709" width="0.0130%" height="15" fill="rgb(207,117,47)" fg:x="2565" fg:w="19"/><text x="2.0070%" y="719.50"></text></g><g><title>GraphBuilder::check_cast (18 samples, 0.01%)</title><rect x="1.7728%" y="709" width="0.0123%" height="15" fill="rgb(249,43,39)" fg:x="2588" fg:w="18"/><text x="2.0228%" y="719.50"></text></g><g><title>GraphBuilder::if_node (19 samples, 0.01%)</title><rect x="1.7865%" y="709" width="0.0130%" height="15" fill="rgb(209,38,44)" fg:x="2608" fg:w="19"/><text x="2.0365%" y="719.50"></text></g><g><title>GraphBuilder::append_with_bci (22 samples, 0.02%)</title><rect x="1.8289%" y="693" width="0.0151%" height="15" fill="rgb(236,212,23)" fg:x="2670" fg:w="22"/><text x="2.0789%" y="703.50"></text></g><g><title>BlockBegin::try_merge (42 samples, 0.03%)</title><rect x="1.9193%" y="629" width="0.0288%" height="15" fill="rgb(242,79,21)" fg:x="2802" fg:w="42"/><text x="2.1693%" y="639.50"></text></g><g><title>ciMethod::liveness_at_bci (21 samples, 0.01%)</title><rect x="1.9337%" y="613" width="0.0144%" height="15" fill="rgb(211,96,35)" fg:x="2823" fg:w="21"/><text x="2.1837%" y="623.50"></text></g><g><title>MethodLiveness::get_liveness_at (20 samples, 0.01%)</title><rect x="1.9344%" y="597" width="0.0137%" height="15" fill="rgb(253,215,40)" fg:x="2824" fg:w="20"/><text x="2.1844%" y="607.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (15 samples, 0.01%)</title><rect x="1.9378%" y="581" width="0.0103%" height="15" fill="rgb(211,81,21)" fg:x="2829" fg:w="15"/><text x="2.1878%" y="591.50"></text></g><g><title>GraphBuilder::append_with_bci (20 samples, 0.01%)</title><rect x="1.9584%" y="613" width="0.0137%" height="15" fill="rgb(208,190,38)" fg:x="2859" fg:w="20"/><text x="2.2084%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (21 samples, 0.01%)</title><rect x="1.9920%" y="549" width="0.0144%" height="15" fill="rgb(235,213,38)" fg:x="2908" fg:w="21"/><text x="2.2420%" y="559.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (31 samples, 0.02%)</title><rect x="1.9878%" y="565" width="0.0212%" height="15" fill="rgb(237,122,38)" fg:x="2902" fg:w="31"/><text x="2.2378%" y="575.50"></text></g><g><title>ciField::ciField (55 samples, 0.04%)</title><rect x="1.9810%" y="581" width="0.0377%" height="15" fill="rgb(244,218,35)" fg:x="2892" fg:w="55"/><text x="2.2310%" y="591.50"></text></g><g><title>ciEnv::get_field_by_index (60 samples, 0.04%)</title><rect x="1.9789%" y="597" width="0.0411%" height="15" fill="rgb(240,68,47)" fg:x="2889" fg:w="60"/><text x="2.2289%" y="607.50"></text></g><g><title>ciBytecodeStream::get_field (65 samples, 0.04%)</title><rect x="1.9783%" y="613" width="0.0445%" height="15" fill="rgb(210,16,53)" fg:x="2888" fg:w="65"/><text x="2.2283%" y="623.50"></text></g><g><title>GraphBuilder::access_field (102 samples, 0.07%)</title><rect x="1.9550%" y="629" width="0.0699%" height="15" fill="rgb(235,124,12)" fg:x="2854" fg:w="102"/><text x="2.2050%" y="639.50"></text></g><g><title>BlockBegin::try_merge (25 samples, 0.02%)</title><rect x="2.1057%" y="549" width="0.0171%" height="15" fill="rgb(224,169,11)" fg:x="3074" fg:w="25"/><text x="2.3557%" y="559.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (19 samples, 0.01%)</title><rect x="2.1447%" y="485" width="0.0130%" height="15" fill="rgb(250,166,2)" fg:x="3131" fg:w="19"/><text x="2.3947%" y="495.50"></text></g><g><title>ciField::ciField (32 samples, 0.02%)</title><rect x="2.1399%" y="501" width="0.0219%" height="15" fill="rgb(242,216,29)" fg:x="3124" fg:w="32"/><text x="2.3899%" y="511.50"></text></g><g><title>ciEnv::get_field_by_index (36 samples, 0.02%)</title><rect x="2.1379%" y="517" width="0.0247%" height="15" fill="rgb(230,116,27)" fg:x="3121" fg:w="36"/><text x="2.3879%" y="527.50"></text></g><g><title>ciBytecodeStream::get_field (45 samples, 0.03%)</title><rect x="2.1379%" y="533" width="0.0308%" height="15" fill="rgb(228,99,48)" fg:x="3121" fg:w="45"/><text x="2.3879%" y="543.50"></text></g><g><title>GraphBuilder::access_field (71 samples, 0.05%)</title><rect x="2.1248%" y="549" width="0.0486%" height="15" fill="rgb(253,11,6)" fg:x="3102" fg:w="71"/><text x="2.3748%" y="559.50"></text></g><g><title>ciField::ciField (17 samples, 0.01%)</title><rect x="2.2338%" y="421" width="0.0116%" height="15" fill="rgb(247,143,39)" fg:x="3261" fg:w="17"/><text x="2.4838%" y="431.50"></text></g><g><title>ciEnv::get_field_by_index (18 samples, 0.01%)</title><rect x="2.2338%" y="437" width="0.0123%" height="15" fill="rgb(236,97,10)" fg:x="3261" fg:w="18"/><text x="2.4838%" y="447.50"></text></g><g><title>ciBytecodeStream::get_field (22 samples, 0.02%)</title><rect x="2.2338%" y="453" width="0.0151%" height="15" fill="rgb(233,208,19)" fg:x="3261" fg:w="22"/><text x="2.4838%" y="463.50"></text></g><g><title>GraphBuilder::access_field (29 samples, 0.02%)</title><rect x="2.2310%" y="469" width="0.0199%" height="15" fill="rgb(216,164,2)" fg:x="3257" fg:w="29"/><text x="2.4810%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (26 samples, 0.02%)</title><rect x="2.2824%" y="341" width="0.0178%" height="15" fill="rgb(220,129,5)" fg:x="3332" fg:w="26"/><text x="2.5324%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (25 samples, 0.02%)</title><rect x="2.2831%" y="325" width="0.0171%" height="15" fill="rgb(242,17,10)" fg:x="3333" fg:w="25"/><text x="2.5331%" y="335.50"></text></g><g><title>GraphBuilder::try_inline_full (38 samples, 0.03%)</title><rect x="2.2810%" y="357" width="0.0260%" height="15" fill="rgb(242,107,0)" fg:x="3330" fg:w="38"/><text x="2.5310%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (39 samples, 0.03%)</title><rect x="2.2810%" y="373" width="0.0267%" height="15" fill="rgb(251,28,31)" fg:x="3330" fg:w="39"/><text x="2.5310%" y="383.50"></text></g><g><title>GraphBuilder::invoke (58 samples, 0.04%)</title><rect x="2.2783%" y="389" width="0.0397%" height="15" fill="rgb(233,223,10)" fg:x="3326" fg:w="58"/><text x="2.5283%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (81 samples, 0.06%)</title><rect x="2.2666%" y="421" width="0.0555%" height="15" fill="rgb(215,21,27)" fg:x="3309" fg:w="81"/><text x="2.5166%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (80 samples, 0.05%)</title><rect x="2.2673%" y="405" width="0.0548%" height="15" fill="rgb(232,23,21)" fg:x="3310" fg:w="80"/><text x="2.5173%" y="415.50"></text></g><g><title>GraphBuilder::push_scope (25 samples, 0.02%)</title><rect x="2.3221%" y="421" width="0.0171%" height="15" fill="rgb(244,5,23)" fg:x="3390" fg:w="25"/><text x="2.5721%" y="431.50"></text></g><g><title>GraphBuilder::try_inline_full (128 samples, 0.09%)</title><rect x="2.2605%" y="437" width="0.0877%" height="15" fill="rgb(226,81,46)" fg:x="3300" fg:w="128"/><text x="2.5105%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (136 samples, 0.09%)</title><rect x="2.2591%" y="453" width="0.0932%" height="15" fill="rgb(247,70,30)" fg:x="3298" fg:w="136"/><text x="2.5091%" y="463.50"></text></g><g><title>ciBytecodeStream::get_method (33 samples, 0.02%)</title><rect x="2.3584%" y="453" width="0.0226%" height="15" fill="rgb(212,68,19)" fg:x="3443" fg:w="33"/><text x="2.6084%" y="463.50"></text></g><g><title>ciEnv::get_method_by_index_impl (32 samples, 0.02%)</title><rect x="2.3591%" y="437" width="0.0219%" height="15" fill="rgb(240,187,13)" fg:x="3444" fg:w="32"/><text x="2.6091%" y="447.50"></text></g><g><title>ciObjectFactory::get_metadata (18 samples, 0.01%)</title><rect x="2.3687%" y="421" width="0.0123%" height="15" fill="rgb(223,113,26)" fg:x="3458" fg:w="18"/><text x="2.6187%" y="431.50"></text></g><g><title>ciObjectFactory::create_new_metadata (16 samples, 0.01%)</title><rect x="2.3701%" y="405" width="0.0110%" height="15" fill="rgb(206,192,2)" fg:x="3460" fg:w="16"/><text x="2.6201%" y="415.50"></text></g><g><title>GraphBuilder::invoke (190 samples, 0.13%)</title><rect x="2.2557%" y="469" width="0.1301%" height="15" fill="rgb(241,108,4)" fg:x="3293" fg:w="190"/><text x="2.5057%" y="479.50"></text></g><g><title>GraphBuilder::method_return (22 samples, 0.02%)</title><rect x="2.3872%" y="469" width="0.0151%" height="15" fill="rgb(247,173,49)" fg:x="3485" fg:w="22"/><text x="2.6372%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (281 samples, 0.19%)</title><rect x="2.2139%" y="501" width="0.1925%" height="15" fill="rgb(224,114,35)" fg:x="3232" fg:w="281"/><text x="2.4639%" y="511.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (276 samples, 0.19%)</title><rect x="2.2173%" y="485" width="0.1891%" height="15" fill="rgb(245,159,27)" fg:x="3237" fg:w="276"/><text x="2.4673%" y="495.50"></text></g><g><title>BlockListBuilder::set_leaders (19 samples, 0.01%)</title><rect x="2.4112%" y="469" width="0.0130%" height="15" fill="rgb(245,172,44)" fg:x="3520" fg:w="19"/><text x="2.6612%" y="479.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (25 samples, 0.02%)</title><rect x="2.4077%" y="485" width="0.0171%" height="15" fill="rgb(236,23,11)" fg:x="3515" fg:w="25"/><text x="2.6577%" y="495.50"></text></g><g><title>GraphBuilder::push_scope (40 samples, 0.03%)</title><rect x="2.4071%" y="501" width="0.0274%" height="15" fill="rgb(205,117,38)" fg:x="3514" fg:w="40"/><text x="2.6571%" y="511.50"></text></g><g><title>ciMethodData::load_data (15 samples, 0.01%)</title><rect x="2.4379%" y="469" width="0.0103%" height="15" fill="rgb(237,72,25)" fg:x="3559" fg:w="15"/><text x="2.6879%" y="479.50"></text></g><g><title>ciMethod::ensure_method_data (21 samples, 0.01%)</title><rect x="2.4351%" y="501" width="0.0144%" height="15" fill="rgb(244,70,9)" fg:x="3555" fg:w="21"/><text x="2.6851%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (21 samples, 0.01%)</title><rect x="2.4351%" y="485" width="0.0144%" height="15" fill="rgb(217,125,39)" fg:x="3555" fg:w="21"/><text x="2.6851%" y="495.50"></text></g><g><title>GraphBuilder::try_inline_full (358 samples, 0.25%)</title><rect x="2.2050%" y="517" width="0.2452%" height="15" fill="rgb(235,36,10)" fg:x="3219" fg:w="358"/><text x="2.4550%" y="527.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (15 samples, 0.01%)</title><rect x="2.4550%" y="389" width="0.0103%" height="15" fill="rgb(251,123,47)" fg:x="3584" fg:w="15"/><text x="2.7050%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (17 samples, 0.01%)</title><rect x="2.4550%" y="405" width="0.0116%" height="15" fill="rgb(221,13,13)" fg:x="3584" fg:w="17"/><text x="2.7050%" y="415.50"></text></g><g><title>GraphBuilder::try_inline (20 samples, 0.01%)</title><rect x="2.4550%" y="421" width="0.0137%" height="15" fill="rgb(238,131,9)" fg:x="3584" fg:w="20"/><text x="2.7050%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (27 samples, 0.02%)</title><rect x="2.4523%" y="469" width="0.0185%" height="15" fill="rgb(211,50,8)" fg:x="3580" fg:w="27"/><text x="2.7023%" y="479.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (27 samples, 0.02%)</title><rect x="2.4523%" y="453" width="0.0185%" height="15" fill="rgb(245,182,24)" fg:x="3580" fg:w="27"/><text x="2.7023%" y="463.50"></text></g><g><title>GraphBuilder::invoke (23 samples, 0.02%)</title><rect x="2.4550%" y="437" width="0.0158%" height="15" fill="rgb(242,14,37)" fg:x="3584" fg:w="23"/><text x="2.7050%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (29 samples, 0.02%)</title><rect x="2.4516%" y="501" width="0.0199%" height="15" fill="rgb(246,228,12)" fg:x="3579" fg:w="29"/><text x="2.7016%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (28 samples, 0.02%)</title><rect x="2.4523%" y="485" width="0.0192%" height="15" fill="rgb(213,55,15)" fg:x="3580" fg:w="28"/><text x="2.7023%" y="495.50"></text></g><g><title>GraphBuilder::try_inline (391 samples, 0.27%)</title><rect x="2.2043%" y="533" width="0.2678%" height="15" fill="rgb(209,9,3)" fg:x="3218" fg:w="391"/><text x="2.4543%" y="543.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (30 samples, 0.02%)</title><rect x="2.4516%" y="517" width="0.0205%" height="15" fill="rgb(230,59,30)" fg:x="3579" fg:w="30"/><text x="2.7016%" y="527.50"></text></g><g><title>ciEnv::lookup_method (15 samples, 0.01%)</title><rect x="2.4886%" y="501" width="0.0103%" height="15" fill="rgb(209,121,21)" fg:x="3633" fg:w="15"/><text x="2.7386%" y="511.50"></text></g><g><title>ciMethod::ciMethod (26 samples, 0.02%)</title><rect x="2.5050%" y="469" width="0.0178%" height="15" fill="rgb(220,109,13)" fg:x="3657" fg:w="26"/><text x="2.7550%" y="479.50"></text></g><g><title>ciSignature::ciSignature (16 samples, 0.01%)</title><rect x="2.5119%" y="453" width="0.0110%" height="15" fill="rgb(232,18,1)" fg:x="3667" fg:w="16"/><text x="2.7619%" y="463.50"></text></g><g><title>ciBytecodeStream::get_method (68 samples, 0.05%)</title><rect x="2.4783%" y="533" width="0.0466%" height="15" fill="rgb(215,41,42)" fg:x="3618" fg:w="68"/><text x="2.7283%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (64 samples, 0.04%)</title><rect x="2.4810%" y="517" width="0.0438%" height="15" fill="rgb(224,123,36)" fg:x="3622" fg:w="64"/><text x="2.7310%" y="527.50"></text></g><g><title>ciObjectFactory::get_metadata (38 samples, 0.03%)</title><rect x="2.4989%" y="501" width="0.0260%" height="15" fill="rgb(240,125,3)" fg:x="3648" fg:w="38"/><text x="2.7489%" y="511.50"></text></g><g><title>ciObjectFactory::create_new_metadata (32 samples, 0.02%)</title><rect x="2.5030%" y="485" width="0.0219%" height="15" fill="rgb(205,98,50)" fg:x="3654" fg:w="32"/><text x="2.7530%" y="495.50"></text></g><g><title>GraphBuilder::invoke (510 samples, 0.35%)</title><rect x="2.1927%" y="549" width="0.3493%" height="15" fill="rgb(205,185,37)" fg:x="3201" fg:w="510"/><text x="2.4427%" y="559.50"></text></g><g><title>GraphBuilder::method_return (21 samples, 0.01%)</title><rect x="2.5434%" y="549" width="0.0144%" height="15" fill="rgb(238,207,15)" fg:x="3713" fg:w="21"/><text x="2.7934%" y="559.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (697 samples, 0.48%)</title><rect x="2.0892%" y="581" width="0.4774%" height="15" fill="rgb(213,199,42)" fg:x="3050" fg:w="697"/><text x="2.3392%" y="591.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (690 samples, 0.47%)</title><rect x="2.0940%" y="565" width="0.4726%" height="15" fill="rgb(235,201,11)" fg:x="3057" fg:w="690"/><text x="2.3440%" y="575.50"></text></g><g><title>BlockListBuilder::set_leaders (37 samples, 0.03%)</title><rect x="2.5749%" y="549" width="0.0253%" height="15" fill="rgb(207,46,11)" fg:x="3759" fg:w="37"/><text x="2.8249%" y="559.50"></text></g><g><title>ciMethod::bci_block_start (24 samples, 0.02%)</title><rect x="2.5838%" y="533" width="0.0164%" height="15" fill="rgb(241,35,35)" fg:x="3772" fg:w="24"/><text x="2.8338%" y="543.50"></text></g><g><title>MethodLiveness::compute_liveness (22 samples, 0.02%)</title><rect x="2.5852%" y="517" width="0.0151%" height="15" fill="rgb(243,32,47)" fg:x="3774" fg:w="22"/><text x="2.8352%" y="527.50"></text></g><g><title>MethodLiveness::init_basic_blocks (20 samples, 0.01%)</title><rect x="2.5865%" y="501" width="0.0137%" height="15" fill="rgb(247,202,23)" fg:x="3776" fg:w="20"/><text x="2.8365%" y="511.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (48 samples, 0.03%)</title><rect x="2.5694%" y="565" width="0.0329%" height="15" fill="rgb(219,102,11)" fg:x="3751" fg:w="48"/><text x="2.8194%" y="575.50"></text></g><g><title>GraphBuilder::push_scope (75 samples, 0.05%)</title><rect x="2.5694%" y="581" width="0.0514%" height="15" fill="rgb(243,110,44)" fg:x="3751" fg:w="75"/><text x="2.8194%" y="591.50"></text></g><g><title>Method::build_interpreter_method_data (16 samples, 0.01%)</title><rect x="2.6269%" y="549" width="0.0110%" height="15" fill="rgb(222,74,54)" fg:x="3835" fg:w="16"/><text x="2.8769%" y="559.50"></text></g><g><title>MethodData::allocate (16 samples, 0.01%)</title><rect x="2.6269%" y="533" width="0.0110%" height="15" fill="rgb(216,99,12)" fg:x="3835" fg:w="16"/><text x="2.8769%" y="543.50"></text></g><g><title>ciMethodData::load_data (41 samples, 0.03%)</title><rect x="2.6379%" y="549" width="0.0281%" height="15" fill="rgb(226,22,26)" fg:x="3851" fg:w="41"/><text x="2.8879%" y="559.50"></text></g><g><title>ciMethod::ensure_method_data (72 samples, 0.05%)</title><rect x="2.6249%" y="581" width="0.0493%" height="15" fill="rgb(217,163,10)" fg:x="3832" fg:w="72"/><text x="2.8749%" y="591.50"></text></g><g><title>ciMethod::ensure_method_data (69 samples, 0.05%)</title><rect x="2.6269%" y="565" width="0.0473%" height="15" fill="rgb(213,25,53)" fg:x="3835" fg:w="69"/><text x="2.8769%" y="575.50"></text></g><g><title>GraphBuilder::try_inline_full (880 samples, 0.60%)</title><rect x="2.0735%" y="597" width="0.6028%" height="15" fill="rgb(252,105,26)" fg:x="3027" fg:w="880"/><text x="2.3235%" y="607.50"></text></g><g><title>GraphBuilder::try_inline (16 samples, 0.01%)</title><rect x="2.6804%" y="501" width="0.0110%" height="15" fill="rgb(220,39,43)" fg:x="3913" fg:w="16"/><text x="2.9304%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (25 samples, 0.02%)</title><rect x="2.6783%" y="549" width="0.0171%" height="15" fill="rgb(229,68,48)" fg:x="3910" fg:w="25"/><text x="2.9283%" y="559.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (25 samples, 0.02%)</title><rect x="2.6783%" y="533" width="0.0171%" height="15" fill="rgb(252,8,32)" fg:x="3910" fg:w="25"/><text x="2.9283%" y="543.50"></text></g><g><title>GraphBuilder::invoke (22 samples, 0.02%)</title><rect x="2.6804%" y="517" width="0.0151%" height="15" fill="rgb(223,20,43)" fg:x="3913" fg:w="22"/><text x="2.9304%" y="527.50"></text></g><g><title>GraphBuilder::try_inline (26 samples, 0.02%)</title><rect x="2.6783%" y="581" width="0.0178%" height="15" fill="rgb(229,81,49)" fg:x="3910" fg:w="26"/><text x="2.9283%" y="591.50"></text></g><g><title>GraphBuilder::try_inline_full (26 samples, 0.02%)</title><rect x="2.6783%" y="565" width="0.0178%" height="15" fill="rgb(236,28,36)" fg:x="3910" fg:w="26"/><text x="2.9283%" y="575.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (30 samples, 0.02%)</title><rect x="2.6783%" y="597" width="0.0205%" height="15" fill="rgb(249,185,26)" fg:x="3910" fg:w="30"/><text x="2.9283%" y="607.50"></text></g><g><title>GraphBuilder::try_inline (919 samples, 0.63%)</title><rect x="2.0707%" y="613" width="0.6295%" height="15" fill="rgb(249,174,33)" fg:x="3023" fg:w="919"/><text x="2.3207%" y="623.50"></text></g><g><title>ciEnv::lookup_method (41 samples, 0.03%)</title><rect x="2.7283%" y="581" width="0.0281%" height="15" fill="rgb(233,201,37)" fg:x="3983" fg:w="41"/><text x="2.9783%" y="591.50"></text></g><g><title>LinkResolver::resolve_static_call_or_null (15 samples, 0.01%)</title><rect x="2.7461%" y="565" width="0.0103%" height="15" fill="rgb(221,78,26)" fg:x="4009" fg:w="15"/><text x="2.9961%" y="575.50"></text></g><g><title>LinkResolver::resolve_static_call (15 samples, 0.01%)</title><rect x="2.7461%" y="549" width="0.0103%" height="15" fill="rgb(250,127,30)" fg:x="4009" fg:w="15"/><text x="2.9961%" y="559.50"></text></g><g><title>LinkResolver::resolve_method (15 samples, 0.01%)</title><rect x="2.7461%" y="533" width="0.0103%" height="15" fill="rgb(230,49,44)" fg:x="4009" fg:w="15"/><text x="2.9961%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (24 samples, 0.02%)</title><rect x="2.7989%" y="517" width="0.0164%" height="15" fill="rgb(229,67,23)" fg:x="4086" fg:w="24"/><text x="3.0489%" y="527.50"></text></g><g><title>ciSignature::ciSignature (57 samples, 0.04%)</title><rect x="2.7783%" y="533" width="0.0390%" height="15" fill="rgb(249,83,47)" fg:x="4056" fg:w="57"/><text x="3.0283%" y="543.50"></text></g><g><title>ciObjectFactory::get_metadata (90 samples, 0.06%)</title><rect x="2.7564%" y="581" width="0.0616%" height="15" fill="rgb(215,43,3)" fg:x="4024" fg:w="90"/><text x="3.0064%" y="591.50"></text></g><g><title>ciObjectFactory::create_new_metadata (81 samples, 0.06%)</title><rect x="2.7626%" y="565" width="0.0555%" height="15" fill="rgb(238,154,13)" fg:x="4033" fg:w="81"/><text x="3.0126%" y="575.50"></text></g><g><title>ciMethod::ciMethod (74 samples, 0.05%)</title><rect x="2.7674%" y="549" width="0.0507%" height="15" fill="rgb(219,56,2)" fg:x="4040" fg:w="74"/><text x="3.0174%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (150 samples, 0.10%)</title><rect x="2.7174%" y="597" width="0.1027%" height="15" fill="rgb(233,0,4)" fg:x="3967" fg:w="150"/><text x="2.9674%" y="607.50"></text></g><g><title>ciBytecodeStream::get_method (162 samples, 0.11%)</title><rect x="2.7098%" y="613" width="0.1110%" height="15" fill="rgb(235,30,7)" fg:x="3956" fg:w="162"/><text x="2.9598%" y="623.50"></text></g><g><title>Dependencies::find_unique_concrete_method (15 samples, 0.01%)</title><rect x="2.8263%" y="597" width="0.0103%" height="15" fill="rgb(250,79,13)" fg:x="4126" fg:w="15"/><text x="3.0763%" y="607.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (15 samples, 0.01%)</title><rect x="2.8263%" y="581" width="0.0103%" height="15" fill="rgb(211,146,34)" fg:x="4126" fg:w="15"/><text x="3.0763%" y="591.50"></text></g><g><title>ClassHierarchyWalker::is_witness (15 samples, 0.01%)</title><rect x="2.8263%" y="565" width="0.0103%" height="15" fill="rgb(228,22,38)" fg:x="4126" fg:w="15"/><text x="3.0763%" y="575.50"></text></g><g><title>ciMethod::find_monomorphic_target (19 samples, 0.01%)</title><rect x="2.8263%" y="613" width="0.0130%" height="15" fill="rgb(235,168,5)" fg:x="4126" fg:w="19"/><text x="3.0763%" y="623.50"></text></g><g><title>GraphBuilder::invoke (1,156 samples, 0.79%)</title><rect x="2.0502%" y="629" width="0.7919%" height="15" fill="rgb(221,155,16)" fg:x="2993" fg:w="1156"/><text x="2.3002%" y="639.50"></text></g><g><title>GraphBuilder::method_return (41 samples, 0.03%)</title><rect x="2.8448%" y="629" width="0.0281%" height="15" fill="rgb(215,215,53)" fg:x="4153" fg:w="41"/><text x="3.0948%" y="639.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,441 samples, 0.99%)</title><rect x="1.8974%" y="661" width="0.9871%" height="15" fill="rgb(223,4,10)" fg:x="2770" fg:w="1441"/><text x="2.1474%" y="671.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,433 samples, 0.98%)</title><rect x="1.9029%" y="645" width="0.9816%" height="15" fill="rgb(234,103,6)" fg:x="2778" fg:w="1433"/><text x="2.1529%" y="655.50"></text></g><g><title>ciMethod::get_method_blocks (16 samples, 0.01%)</title><rect x="2.9325%" y="565" width="0.0110%" height="15" fill="rgb(227,97,0)" fg:x="4281" fg:w="16"/><text x="3.1825%" y="575.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (15 samples, 0.01%)</title><rect x="2.9331%" y="549" width="0.0103%" height="15" fill="rgb(234,150,53)" fg:x="4282" fg:w="15"/><text x="3.1831%" y="559.50"></text></g><g><title>MethodLiveness::compute_liveness (41 samples, 0.03%)</title><rect x="2.9167%" y="597" width="0.0281%" height="15" fill="rgb(228,201,54)" fg:x="4258" fg:w="41"/><text x="3.1667%" y="607.50"></text></g><g><title>MethodLiveness::init_basic_blocks (30 samples, 0.02%)</title><rect x="2.9242%" y="581" width="0.0205%" height="15" fill="rgb(222,22,37)" fg:x="4269" fg:w="30"/><text x="3.1742%" y="591.50"></text></g><g><title>BlockListBuilder::set_leaders (59 samples, 0.04%)</title><rect x="2.9051%" y="629" width="0.0404%" height="15" fill="rgb(237,53,32)" fg:x="4241" fg:w="59"/><text x="3.1551%" y="639.50"></text></g><g><title>ciMethod::bci_block_start (43 samples, 0.03%)</title><rect x="2.9160%" y="613" width="0.0295%" height="15" fill="rgb(233,25,53)" fg:x="4257" fg:w="43"/><text x="3.1660%" y="623.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (74 samples, 0.05%)</title><rect x="2.8968%" y="645" width="0.0507%" height="15" fill="rgb(210,40,34)" fg:x="4229" fg:w="74"/><text x="3.1468%" y="655.50"></text></g><g><title>GraphBuilder::push_scope (102 samples, 0.07%)</title><rect x="2.8934%" y="661" width="0.0699%" height="15" fill="rgb(241,220,44)" fg:x="4224" fg:w="102"/><text x="3.1434%" y="671.50"></text></g><g><title>MethodData::compute_allocation_size_in_bytes (15 samples, 0.01%)</title><rect x="2.9914%" y="597" width="0.0103%" height="15" fill="rgb(235,28,35)" fg:x="4367" fg:w="15"/><text x="3.2414%" y="607.50"></text></g><g><title>Method::build_interpreter_method_data (46 samples, 0.03%)</title><rect x="2.9831%" y="629" width="0.0315%" height="15" fill="rgb(210,56,17)" fg:x="4355" fg:w="46"/><text x="3.2331%" y="639.50"></text></g><g><title>MethodData::allocate (45 samples, 0.03%)</title><rect x="2.9838%" y="613" width="0.0308%" height="15" fill="rgb(224,130,29)" fg:x="4356" fg:w="45"/><text x="3.2338%" y="623.50"></text></g><g><title>MethodData::initialize (19 samples, 0.01%)</title><rect x="3.0016%" y="597" width="0.0130%" height="15" fill="rgb(235,212,8)" fg:x="4382" fg:w="19"/><text x="3.2516%" y="607.50"></text></g><g><title>ciMethodData::load_data (51 samples, 0.03%)</title><rect x="3.0153%" y="629" width="0.0349%" height="15" fill="rgb(223,33,50)" fg:x="4402" fg:w="51"/><text x="3.2653%" y="639.50"></text></g><g><title>ciMethod::ensure_method_data (126 samples, 0.09%)</title><rect x="2.9756%" y="661" width="0.0863%" height="15" fill="rgb(219,149,13)" fg:x="4344" fg:w="126"/><text x="3.2256%" y="671.50"></text></g><g><title>ciMethod::ensure_method_data (115 samples, 0.08%)</title><rect x="2.9831%" y="645" width="0.0788%" height="15" fill="rgb(250,156,29)" fg:x="4355" fg:w="115"/><text x="3.2331%" y="655.50"></text></g><g><title>ciObjectFactory::get_metadata (17 samples, 0.01%)</title><rect x="3.0503%" y="629" width="0.0116%" height="15" fill="rgb(216,193,19)" fg:x="4453" fg:w="17"/><text x="3.3003%" y="639.50"></text></g><g><title>GraphBuilder::try_inline_full (1,765 samples, 1.21%)</title><rect x="1.8598%" y="677" width="1.2090%" height="15" fill="rgb(216,135,14)" fg:x="2715" fg:w="1765"/><text x="2.1098%" y="687.50"></text></g><g><title>GraphBuilder::try_inline (1,781 samples, 1.22%)</title><rect x="1.8529%" y="693" width="1.2200%" height="15" fill="rgb(241,47,5)" fg:x="2705" fg:w="1781"/><text x="2.1029%" y="703.50"></text></g><g><title>ciBytecodeStream::get_declared_method_holder (28 samples, 0.02%)</title><rect x="3.0907%" y="693" width="0.0192%" height="15" fill="rgb(233,42,35)" fg:x="4512" fg:w="28"/><text x="3.3407%" y="703.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (21 samples, 0.01%)</title><rect x="3.1263%" y="661" width="0.0144%" height="15" fill="rgb(231,13,6)" fg:x="4564" fg:w="21"/><text x="3.3763%" y="671.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (22 samples, 0.02%)</title><rect x="3.1564%" y="613" width="0.0151%" height="15" fill="rgb(207,181,40)" fg:x="4608" fg:w="22"/><text x="3.4064%" y="623.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (22 samples, 0.02%)</title><rect x="3.1564%" y="597" width="0.0151%" height="15" fill="rgb(254,173,49)" fg:x="4608" fg:w="22"/><text x="3.4064%" y="607.50"></text></g><g><title>InstanceKlass::find_method_index (18 samples, 0.01%)</title><rect x="3.1592%" y="581" width="0.0123%" height="15" fill="rgb(221,1,38)" fg:x="4612" fg:w="18"/><text x="3.4092%" y="591.50"></text></g><g><title>LinkResolver::resolve_method (37 samples, 0.03%)</title><rect x="3.1475%" y="629" width="0.0253%" height="15" fill="rgb(206,124,46)" fg:x="4595" fg:w="37"/><text x="3.3975%" y="639.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (39 samples, 0.03%)</title><rect x="3.1469%" y="645" width="0.0267%" height="15" fill="rgb(249,21,11)" fg:x="4594" fg:w="39"/><text x="3.3969%" y="655.50"></text></g><g><title>LinkResolver::resolve_static_call_or_null (28 samples, 0.02%)</title><rect x="3.1797%" y="645" width="0.0192%" height="15" fill="rgb(222,201,40)" fg:x="4642" fg:w="28"/><text x="3.4297%" y="655.50"></text></g><g><title>LinkResolver::resolve_static_call (27 samples, 0.02%)</title><rect x="3.1804%" y="629" width="0.0185%" height="15" fill="rgb(235,61,29)" fg:x="4643" fg:w="27"/><text x="3.4304%" y="639.50"></text></g><g><title>LinkResolver::resolve_method (26 samples, 0.02%)</title><rect x="3.1811%" y="613" width="0.0178%" height="15" fill="rgb(219,207,3)" fg:x="4644" fg:w="26"/><text x="3.4311%" y="623.50"></text></g><g><title>ciEnv::lookup_method (88 samples, 0.06%)</title><rect x="3.1407%" y="661" width="0.0603%" height="15" fill="rgb(222,56,46)" fg:x="4585" fg:w="88"/><text x="3.3907%" y="671.50"></text></g><g><title>ciObjectFactory::get_symbol (18 samples, 0.01%)</title><rect x="3.2195%" y="613" width="0.0123%" height="15" fill="rgb(239,76,54)" fg:x="4700" fg:w="18"/><text x="3.4695%" y="623.50"></text></g><g><title>SignatureStream::as_symbol (36 samples, 0.02%)</title><rect x="3.2393%" y="597" width="0.0247%" height="15" fill="rgb(231,124,27)" fg:x="4729" fg:w="36"/><text x="3.4893%" y="607.50"></text></g><g><title>SymbolTable::lookup (34 samples, 0.02%)</title><rect x="3.2407%" y="581" width="0.0233%" height="15" fill="rgb(249,195,6)" fg:x="4731" fg:w="34"/><text x="3.4907%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (32 samples, 0.02%)</title><rect x="3.2702%" y="597" width="0.0219%" height="15" fill="rgb(237,174,47)" fg:x="4774" fg:w="32"/><text x="3.5202%" y="607.50"></text></g><g><title>ciMethod::ciMethod (126 samples, 0.09%)</title><rect x="3.2133%" y="629" width="0.0863%" height="15" fill="rgb(206,201,31)" fg:x="4691" fg:w="126"/><text x="3.4633%" y="639.50"></text></g><g><title>ciSignature::ciSignature (99 samples, 0.07%)</title><rect x="3.2318%" y="613" width="0.0678%" height="15" fill="rgb(231,57,52)" fg:x="4718" fg:w="99"/><text x="3.4818%" y="623.50"></text></g><g><title>ciObjectFactory::get_metadata (153 samples, 0.10%)</title><rect x="3.2010%" y="661" width="0.1048%" height="15" fill="rgb(248,177,22)" fg:x="4673" fg:w="153"/><text x="3.4510%" y="671.50"></text></g><g><title>ciObjectFactory::create_new_metadata (143 samples, 0.10%)</title><rect x="3.2078%" y="645" width="0.0980%" height="15" fill="rgb(215,211,37)" fg:x="4683" fg:w="143"/><text x="3.4578%" y="655.50"></text></g><g><title>ciEnv::get_method_by_index_impl (276 samples, 0.19%)</title><rect x="3.1195%" y="677" width="0.1891%" height="15" fill="rgb(241,128,51)" fg:x="4554" fg:w="276"/><text x="3.3695%" y="687.50"></text></g><g><title>ciBytecodeStream::get_method (292 samples, 0.20%)</title><rect x="3.1099%" y="693" width="0.2000%" height="15" fill="rgb(227,165,31)" fg:x="4540" fg:w="292"/><text x="3.3599%" y="703.50"></text></g><g><title>InstanceKlass::find_instance_method (23 samples, 0.02%)</title><rect x="3.3208%" y="629" width="0.0158%" height="15" fill="rgb(228,167,24)" fg:x="4848" fg:w="23"/><text x="3.5708%" y="639.50"></text></g><g><title>InstanceKlass::find_method_index (22 samples, 0.02%)</title><rect x="3.3215%" y="613" width="0.0151%" height="15" fill="rgb(228,143,12)" fg:x="4849" fg:w="22"/><text x="3.5715%" y="623.50"></text></g><g><title>Dependencies::find_unique_concrete_method (27 samples, 0.02%)</title><rect x="3.3195%" y="677" width="0.0185%" height="15" fill="rgb(249,149,8)" fg:x="4846" fg:w="27"/><text x="3.5695%" y="687.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (27 samples, 0.02%)</title><rect x="3.3195%" y="661" width="0.0185%" height="15" fill="rgb(243,35,44)" fg:x="4846" fg:w="27"/><text x="3.5695%" y="671.50"></text></g><g><title>ClassHierarchyWalker::is_witness (27 samples, 0.02%)</title><rect x="3.3195%" y="645" width="0.0185%" height="15" fill="rgb(246,89,9)" fg:x="4846" fg:w="27"/><text x="3.5695%" y="655.50"></text></g><g><title>ciMethod::find_monomorphic_target (40 samples, 0.03%)</title><rect x="3.3195%" y="693" width="0.0274%" height="15" fill="rgb(233,213,13)" fg:x="4846" fg:w="40"/><text x="3.5695%" y="703.50"></text></g><g><title>GraphBuilder::invoke (2,254 samples, 1.54%)</title><rect x="1.8125%" y="709" width="1.5440%" height="15" fill="rgb(233,141,41)" fg:x="2646" fg:w="2254"/><text x="2.0625%" y="719.50"></text></g><g><title>GraphBuilder::load_constant (23 samples, 0.02%)</title><rect x="3.3565%" y="709" width="0.0158%" height="15" fill="rgb(239,167,4)" fg:x="4900" fg:w="23"/><text x="3.6065%" y="719.50"></text></g><g><title>ciBytecodeStream::get_constant (17 samples, 0.01%)</title><rect x="3.3606%" y="693" width="0.0116%" height="15" fill="rgb(209,217,16)" fg:x="4906" fg:w="17"/><text x="3.6106%" y="703.50"></text></g><g><title>ciEnv::get_constant_by_index (16 samples, 0.01%)</title><rect x="3.3613%" y="677" width="0.0110%" height="15" fill="rgb(219,88,35)" fg:x="4907" fg:w="16"/><text x="3.6113%" y="687.50"></text></g><g><title>ciEnv::get_constant_by_index_impl (16 samples, 0.01%)</title><rect x="3.3613%" y="661" width="0.0110%" height="15" fill="rgb(220,193,23)" fg:x="4907" fg:w="16"/><text x="3.6113%" y="671.50"></text></g><g><title>GraphBuilder::new_instance (22 samples, 0.02%)</title><rect x="3.3811%" y="709" width="0.0151%" height="15" fill="rgb(230,90,52)" fg:x="4936" fg:w="22"/><text x="3.6311%" y="719.50"></text></g><g><title>ciBytecodeStream::get_klass (18 samples, 0.01%)</title><rect x="3.3839%" y="693" width="0.0123%" height="15" fill="rgb(252,106,19)" fg:x="4940" fg:w="18"/><text x="3.6339%" y="703.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,663 samples, 1.82%)</title><rect x="1.5864%" y="725" width="1.8241%" height="15" fill="rgb(206,74,20)" fg:x="2316" fg:w="2663"/><text x="1.8364%" y="735.50">G..</text></g><g><title>GraphBuilder::iterate_all_blocks (2,701 samples, 1.85%)</title><rect x="1.5645%" y="741" width="1.8502%" height="15" fill="rgb(230,138,44)" fg:x="2284" fg:w="2701"/><text x="1.8145%" y="751.50">G..</text></g><g><title>GraphBuilder::setup_start_block (34 samples, 0.02%)</title><rect x="3.4167%" y="741" width="0.0233%" height="15" fill="rgb(235,182,43)" fg:x="4988" fg:w="34"/><text x="3.6667%" y="751.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,002 samples, 2.06%)</title><rect x="1.3946%" y="757" width="2.0563%" height="15" fill="rgb(242,16,51)" fg:x="2036" fg:w="3002"/><text x="1.6446%" y="767.50">G..</text></g><g><title>IR::IR (3,019 samples, 2.07%)</title><rect x="1.3940%" y="773" width="2.0680%" height="15" fill="rgb(248,9,4)" fg:x="2035" fg:w="3019"/><text x="1.6440%" y="783.50">I..</text></g><g><title>ComputeLinearScanOrder::compute_order (32 samples, 0.02%)</title><rect x="3.4667%" y="741" width="0.0219%" height="15" fill="rgb(210,31,22)" fg:x="5061" fg:w="32"/><text x="3.7167%" y="751.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (54 samples, 0.04%)</title><rect x="3.4626%" y="757" width="0.0370%" height="15" fill="rgb(239,54,39)" fg:x="5055" fg:w="54"/><text x="3.7126%" y="767.50"></text></g><g><title>IR::compute_code (63 samples, 0.04%)</title><rect x="3.4620%" y="773" width="0.0432%" height="15" fill="rgb(230,99,41)" fg:x="5054" fg:w="63"/><text x="3.7120%" y="783.50"></text></g><g><title>UseCountComputer::block_do (84 samples, 0.06%)</title><rect x="3.5078%" y="741" width="0.0575%" height="15" fill="rgb(253,106,12)" fg:x="5121" fg:w="84"/><text x="3.7578%" y="751.50"></text></g><g><title>ValueStack::values_do (25 samples, 0.02%)</title><rect x="3.5483%" y="725" width="0.0171%" height="15" fill="rgb(213,46,41)" fg:x="5180" fg:w="25"/><text x="3.7983%" y="735.50"></text></g><g><title>BlockList::iterate_backward (87 samples, 0.06%)</title><rect x="3.5065%" y="757" width="0.0596%" height="15" fill="rgb(215,133,35)" fg:x="5119" fg:w="87"/><text x="3.7565%" y="767.50"></text></g><g><title>IR::compute_use_counts (112 samples, 0.08%)</title><rect x="3.5051%" y="773" width="0.0767%" height="15" fill="rgb(213,28,5)" fg:x="5117" fg:w="112"/><text x="3.7551%" y="783.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (22 samples, 0.02%)</title><rect x="3.5668%" y="757" width="0.0151%" height="15" fill="rgb(215,77,49)" fg:x="5207" fg:w="22"/><text x="3.8168%" y="767.50"></text></g><g><title>NullCheckEliminator::merge_state_for (23 samples, 0.02%)</title><rect x="3.6661%" y="725" width="0.0158%" height="15" fill="rgb(248,100,22)" fg:x="5352" fg:w="23"/><text x="3.9161%" y="735.50"></text></g><g><title>NullCheckEliminator::iterate_one (143 samples, 0.10%)</title><rect x="3.5969%" y="741" width="0.0980%" height="15" fill="rgb(208,67,9)" fg:x="5251" fg:w="143"/><text x="3.8469%" y="751.50"></text></g><g><title>IR::eliminate_null_checks (171 samples, 0.12%)</title><rect x="3.5818%" y="773" width="0.1171%" height="15" fill="rgb(219,133,21)" fg:x="5229" fg:w="171"/><text x="3.8318%" y="783.50"></text></g><g><title>Optimizer::eliminate_null_checks (170 samples, 0.12%)</title><rect x="3.5825%" y="757" width="0.1164%" height="15" fill="rgb(246,46,29)" fg:x="5230" fg:w="170"/><text x="3.8325%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (19 samples, 0.01%)</title><rect x="3.7065%" y="677" width="0.0130%" height="15" fill="rgb(246,185,52)" fg:x="5411" fg:w="19"/><text x="3.9565%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (23 samples, 0.02%)</title><rect x="3.7065%" y="693" width="0.0158%" height="15" fill="rgb(252,136,11)" fg:x="5411" fg:w="23"/><text x="3.9565%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (33 samples, 0.02%)</title><rect x="3.7065%" y="709" width="0.0226%" height="15" fill="rgb(219,138,53)" fg:x="5411" fg:w="33"/><text x="3.9565%" y="719.50"></text></g><g><title>IR::optimize_blocks (54 samples, 0.04%)</title><rect x="3.6990%" y="773" width="0.0370%" height="15" fill="rgb(211,51,23)" fg:x="5400" fg:w="54"/><text x="3.9490%" y="783.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (44 samples, 0.03%)</title><rect x="3.7058%" y="757" width="0.0301%" height="15" fill="rgb(247,221,28)" fg:x="5410" fg:w="44"/><text x="3.9558%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (44 samples, 0.03%)</title><rect x="3.7058%" y="741" width="0.0301%" height="15" fill="rgb(251,222,45)" fg:x="5410" fg:w="44"/><text x="3.9558%" y="751.50"></text></g><g><title>BlockBegin::iterate_preorder (44 samples, 0.03%)</title><rect x="3.7058%" y="725" width="0.0301%" height="15" fill="rgb(217,162,53)" fg:x="5410" fg:w="44"/><text x="3.9558%" y="735.50"></text></g><g><title>BlockBegin::insert_block_between (26 samples, 0.02%)</title><rect x="3.7366%" y="757" width="0.0178%" height="15" fill="rgb(229,93,14)" fg:x="5455" fg:w="26"/><text x="3.9866%" y="767.50"></text></g><g><title>IR::split_critical_edges (49 samples, 0.03%)</title><rect x="3.7359%" y="773" width="0.0336%" height="15" fill="rgb(209,67,49)" fg:x="5454" fg:w="49"/><text x="3.9859%" y="783.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (16 samples, 0.01%)</title><rect x="3.7818%" y="709" width="0.0110%" height="15" fill="rgb(213,87,29)" fg:x="5521" fg:w="16"/><text x="4.0318%" y="719.50"></text></g><g><title>RangeCheckElimination::eliminate (33 samples, 0.02%)</title><rect x="3.7709%" y="773" width="0.0226%" height="15" fill="rgb(205,151,52)" fg:x="5505" fg:w="33"/><text x="4.0209%" y="783.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (18 samples, 0.01%)</title><rect x="3.7812%" y="757" width="0.0123%" height="15" fill="rgb(253,215,39)" fg:x="5520" fg:w="18"/><text x="4.0312%" y="767.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (17 samples, 0.01%)</title><rect x="3.7818%" y="741" width="0.0116%" height="15" fill="rgb(221,220,41)" fg:x="5521" fg:w="17"/><text x="4.0318%" y="751.50"></text></g><g><title>RangeCheckEliminator::calc_bounds (17 samples, 0.01%)</title><rect x="3.7818%" y="725" width="0.0116%" height="15" fill="rgb(218,133,21)" fg:x="5521" fg:w="17"/><text x="4.0318%" y="735.50"></text></g><g><title>Compilation::build_hir (3,854 samples, 2.64%)</title><rect x="1.1556%" y="789" width="2.6400%" height="15" fill="rgb(221,193,43)" fg:x="1687" fg:w="3854"/><text x="1.4056%" y="799.50">Co..</text></g><g><title>LIR_Assembler::add_call_info (28 samples, 0.02%)</title><rect x="3.8771%" y="741" width="0.0192%" height="15" fill="rgb(240,128,52)" fg:x="5660" fg:w="28"/><text x="4.1271%" y="751.50"></text></g><g><title>CodeEmitInfo::record_debug_info (28 samples, 0.02%)</title><rect x="3.8771%" y="725" width="0.0192%" height="15" fill="rgb(253,114,12)" fg:x="5660" fg:w="28"/><text x="4.1271%" y="735.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (29 samples, 0.02%)</title><rect x="3.9120%" y="693" width="0.0199%" height="15" fill="rgb(215,223,47)" fg:x="5711" fg:w="29"/><text x="4.1620%" y="703.50"></text></g><g><title>DebugInformationRecorder::describe_scope (27 samples, 0.02%)</title><rect x="3.9319%" y="693" width="0.0185%" height="15" fill="rgb(248,225,23)" fg:x="5740" fg:w="27"/><text x="4.1819%" y="703.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (15 samples, 0.01%)</title><rect x="3.9401%" y="677" width="0.0103%" height="15" fill="rgb(250,108,0)" fg:x="5752" fg:w="15"/><text x="4.1901%" y="687.50"></text></g><g><title>LIR_Assembler::add_call_info (82 samples, 0.06%)</title><rect x="3.8997%" y="725" width="0.0562%" height="15" fill="rgb(228,208,7)" fg:x="5693" fg:w="82"/><text x="4.1497%" y="735.50"></text></g><g><title>CodeEmitInfo::record_debug_info (82 samples, 0.06%)</title><rect x="3.8997%" y="709" width="0.0562%" height="15" fill="rgb(244,45,10)" fg:x="5693" fg:w="82"/><text x="4.1497%" y="719.50"></text></g><g><title>LIR_Assembler::call (91 samples, 0.06%)</title><rect x="3.8962%" y="741" width="0.0623%" height="15" fill="rgb(207,125,25)" fg:x="5688" fg:w="91"/><text x="4.1462%" y="751.50"></text></g><g><title>LIR_Assembler::emit_static_call_stub (22 samples, 0.02%)</title><rect x="3.9586%" y="741" width="0.0151%" height="15" fill="rgb(210,195,18)" fg:x="5779" fg:w="22"/><text x="4.2086%" y="751.50"></text></g><g><title>LIR_Assembler::emit_call (154 samples, 0.11%)</title><rect x="3.8723%" y="757" width="0.1055%" height="15" fill="rgb(249,80,12)" fg:x="5653" fg:w="154"/><text x="4.1223%" y="767.50"></text></g><g><title>LIR_Assembler::check_icache (15 samples, 0.01%)</title><rect x="3.9832%" y="741" width="0.0103%" height="15" fill="rgb(221,65,9)" fg:x="5815" fg:w="15"/><text x="4.2332%" y="751.50"></text></g><g><title>LIR_Assembler::emit_op0 (28 samples, 0.02%)</title><rect x="3.9778%" y="757" width="0.0192%" height="15" fill="rgb(235,49,36)" fg:x="5807" fg:w="28"/><text x="4.2278%" y="767.50"></text></g><g><title>LIR_Assembler::const2reg (21 samples, 0.01%)</title><rect x="4.0134%" y="741" width="0.0144%" height="15" fill="rgb(225,32,20)" fg:x="5859" fg:w="21"/><text x="4.2634%" y="751.50"></text></g><g><title>LIR_Assembler::mem2reg (43 samples, 0.03%)</title><rect x="4.0278%" y="741" width="0.0295%" height="15" fill="rgb(215,141,46)" fg:x="5880" fg:w="43"/><text x="4.2778%" y="751.50"></text></g><g><title>LIR_Assembler::move_op (16 samples, 0.01%)</title><rect x="4.0572%" y="741" width="0.0110%" height="15" fill="rgb(250,160,47)" fg:x="5923" fg:w="16"/><text x="4.3072%" y="751.50"></text></g><g><title>LIR_Assembler::reg2mem (18 samples, 0.01%)</title><rect x="4.0682%" y="741" width="0.0123%" height="15" fill="rgb(216,222,40)" fg:x="5939" fg:w="18"/><text x="4.3182%" y="751.50"></text></g><g><title>LIR_Assembler::emit_op1 (143 samples, 0.10%)</title><rect x="3.9969%" y="757" width="0.0980%" height="15" fill="rgb(234,217,39)" fg:x="5835" fg:w="143"/><text x="4.2469%" y="767.50"></text></g><g><title>LIR_Assembler::emit_op2 (21 samples, 0.01%)</title><rect x="4.0949%" y="757" width="0.0144%" height="15" fill="rgb(207,178,40)" fg:x="5978" fg:w="21"/><text x="4.3449%" y="767.50"></text></g><g><title>LIR_Assembler::emit_profile_call (53 samples, 0.04%)</title><rect x="4.1106%" y="757" width="0.0363%" height="15" fill="rgb(221,136,13)" fg:x="6001" fg:w="53"/><text x="4.3606%" y="767.50"></text></g><g><title>ciMethodData::bci_to_data (27 samples, 0.02%)</title><rect x="4.1284%" y="741" width="0.0185%" height="15" fill="rgb(249,199,10)" fg:x="6027" fg:w="27"/><text x="4.3784%" y="751.50"></text></g><g><title>LIR_Assembler::emit_typecheck_helper (24 samples, 0.02%)</title><rect x="4.1997%" y="725" width="0.0164%" height="15" fill="rgb(249,222,13)" fg:x="6131" fg:w="24"/><text x="4.4497%" y="735.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (40 samples, 0.03%)</title><rect x="4.1949%" y="757" width="0.0274%" height="15" fill="rgb(244,185,38)" fg:x="6124" fg:w="40"/><text x="4.4449%" y="767.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (40 samples, 0.03%)</title><rect x="4.1949%" y="741" width="0.0274%" height="15" fill="rgb(236,202,9)" fg:x="6124" fg:w="40"/><text x="4.4449%" y="751.50"></text></g><g><title>LIR_Assembler::emit_code (608 samples, 0.42%)</title><rect x="3.8127%" y="773" width="0.4165%" height="15" fill="rgb(250,229,37)" fg:x="5566" fg:w="608"/><text x="4.0627%" y="783.50"></text></g><g><title>Assembler::pusha (19 samples, 0.01%)</title><rect x="4.2490%" y="741" width="0.0130%" height="15" fill="rgb(206,174,23)" fg:x="6203" fg:w="19"/><text x="4.4990%" y="751.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (38 samples, 0.03%)</title><rect x="4.2380%" y="773" width="0.0260%" height="15" fill="rgb(211,33,43)" fg:x="6187" fg:w="38"/><text x="4.4880%" y="783.50"></text></g><g><title>MacroAssembler::stop (31 samples, 0.02%)</title><rect x="4.2428%" y="757" width="0.0212%" height="15" fill="rgb(245,58,50)" fg:x="6194" fg:w="31"/><text x="4.4928%" y="767.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (21 samples, 0.01%)</title><rect x="4.2928%" y="693" width="0.0144%" height="15" fill="rgb(244,68,36)" fg:x="6267" fg:w="21"/><text x="4.5428%" y="703.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (39 samples, 0.03%)</title><rect x="4.2839%" y="709" width="0.0267%" height="15" fill="rgb(232,229,15)" fg:x="6254" fg:w="39"/><text x="4.5339%" y="719.50"></text></g><g><title>DebugInformationRecorder::describe_scope (29 samples, 0.02%)</title><rect x="4.3107%" y="709" width="0.0199%" height="15" fill="rgb(254,30,23)" fg:x="6293" fg:w="29"/><text x="4.5607%" y="719.50"></text></g><g><title>CodeEmitInfo::record_debug_info (94 samples, 0.06%)</title><rect x="4.2764%" y="725" width="0.0644%" height="15" fill="rgb(235,160,14)" fg:x="6243" fg:w="94"/><text x="4.5264%" y="735.50"></text></g><g><title>OopMap::deep_copy (15 samples, 0.01%)</title><rect x="4.3305%" y="709" width="0.0103%" height="15" fill="rgb(212,155,44)" fg:x="6322" fg:w="15"/><text x="4.5805%" y="719.50"></text></g><g><title>LIR_Assembler::add_call_info (96 samples, 0.07%)</title><rect x="4.2757%" y="741" width="0.0658%" height="15" fill="rgb(226,2,50)" fg:x="6242" fg:w="96"/><text x="4.5257%" y="751.50"></text></g><g><title>CounterOverflowStub::emit_code (123 samples, 0.08%)</title><rect x="4.2723%" y="757" width="0.0843%" height="15" fill="rgb(234,177,6)" fg:x="6237" fg:w="123"/><text x="4.5223%" y="767.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (16 samples, 0.01%)</title><rect x="4.3757%" y="709" width="0.0110%" height="15" fill="rgb(217,24,9)" fg:x="6388" fg:w="16"/><text x="4.6257%" y="719.50"></text></g><g><title>LIR_Assembler::add_call_info (46 samples, 0.03%)</title><rect x="4.3696%" y="741" width="0.0315%" height="15" fill="rgb(220,13,46)" fg:x="6379" fg:w="46"/><text x="4.6196%" y="751.50"></text></g><g><title>CodeEmitInfo::record_debug_info (46 samples, 0.03%)</title><rect x="4.3696%" y="725" width="0.0315%" height="15" fill="rgb(239,221,27)" fg:x="6379" fg:w="46"/><text x="4.6196%" y="735.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (60 samples, 0.04%)</title><rect x="4.3648%" y="757" width="0.0411%" height="15" fill="rgb(222,198,25)" fg:x="6372" fg:w="60"/><text x="4.6148%" y="767.50"></text></g><g><title>LIR_Assembler::add_call_info (16 samples, 0.01%)</title><rect x="4.4127%" y="741" width="0.0110%" height="15" fill="rgb(211,99,13)" fg:x="6442" fg:w="16"/><text x="4.6627%" y="751.50"></text></g><g><title>CodeEmitInfo::record_debug_info (16 samples, 0.01%)</title><rect x="4.4127%" y="725" width="0.0110%" height="15" fill="rgb(232,111,31)" fg:x="6442" fg:w="16"/><text x="4.6627%" y="735.50"></text></g><g><title>NewInstanceStub::emit_code (27 samples, 0.02%)</title><rect x="4.4093%" y="757" width="0.0185%" height="15" fill="rgb(245,82,37)" fg:x="6437" fg:w="27"/><text x="4.6593%" y="767.50"></text></g><g><title>LIR_Assembler::add_call_info (17 samples, 0.01%)</title><rect x="4.4312%" y="741" width="0.0116%" height="15" fill="rgb(227,149,46)" fg:x="6469" fg:w="17"/><text x="4.6812%" y="751.50"></text></g><g><title>CodeEmitInfo::record_debug_info (17 samples, 0.01%)</title><rect x="4.4312%" y="725" width="0.0116%" height="15" fill="rgb(218,36,50)" fg:x="6469" fg:w="17"/><text x="4.6812%" y="735.50"></text></g><g><title>PatchingStub::emit_code (27 samples, 0.02%)</title><rect x="4.4298%" y="757" width="0.0185%" height="15" fill="rgb(226,80,48)" fg:x="6467" fg:w="27"/><text x="4.6798%" y="767.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (287 samples, 0.20%)</title><rect x="4.2641%" y="773" width="0.1966%" height="15" fill="rgb(238,224,15)" fg:x="6225" fg:w="287"/><text x="4.5141%" y="783.50"></text></g><g><title>Compilation::emit_code_body (984 samples, 0.67%)</title><rect x="3.7955%" y="789" width="0.6740%" height="15" fill="rgb(241,136,10)" fg:x="5541" fg:w="984"/><text x="4.0455%" y="799.50"></text></g><g><title>LIR_List::LIR_List (16 samples, 0.01%)</title><rect x="4.4970%" y="725" width="0.0110%" height="15" fill="rgb(208,32,45)" fg:x="6565" fg:w="16"/><text x="4.7470%" y="735.50"></text></g><g><title>LIRGenerator::block_do_prolog (26 samples, 0.02%)</title><rect x="4.4922%" y="741" width="0.0178%" height="15" fill="rgb(207,135,9)" fg:x="6558" fg:w="26"/><text x="4.7422%" y="751.50"></text></g><g><title>GrowableArray&lt;Instruction*&gt;::grow (22 samples, 0.02%)</title><rect x="4.5305%" y="725" width="0.0151%" height="15" fill="rgb(206,86,44)" fg:x="6614" fg:w="22"/><text x="4.7805%" y="735.50"></text></g><g><title>LIRGenerator::increment_event_counter (16 samples, 0.01%)</title><rect x="4.5456%" y="725" width="0.0110%" height="15" fill="rgb(245,177,15)" fg:x="6636" fg:w="16"/><text x="4.7956%" y="735.50"></text></g><g><title>LIRGenerator::do_Base (75 samples, 0.05%)</title><rect x="4.5134%" y="741" width="0.0514%" height="15" fill="rgb(206,64,50)" fg:x="6589" fg:w="75"/><text x="4.7634%" y="751.50"></text></g><g><title>LIRGenerator::move_to_phi (31 samples, 0.02%)</title><rect x="4.5853%" y="709" width="0.0212%" height="15" fill="rgb(234,36,40)" fg:x="6694" fg:w="31"/><text x="4.8353%" y="719.50"></text></g><g><title>PhiResolver::create_node (30 samples, 0.02%)</title><rect x="4.5860%" y="693" width="0.0205%" height="15" fill="rgb(213,64,8)" fg:x="6695" fg:w="30"/><text x="4.8360%" y="703.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (30 samples, 0.02%)</title><rect x="4.6915%" y="693" width="0.0205%" height="15" fill="rgb(210,75,36)" fg:x="6849" fg:w="30"/><text x="4.9415%" y="703.50"></text></g><g><title>LIRGenerator::move_to_phi (198 samples, 0.14%)</title><rect x="4.5771%" y="725" width="0.1356%" height="15" fill="rgb(229,88,21)" fg:x="6682" fg:w="198"/><text x="4.8271%" y="735.50"></text></g><g><title>PhiResolverState::reset (151 samples, 0.10%)</title><rect x="4.6093%" y="709" width="0.1034%" height="15" fill="rgb(252,204,47)" fg:x="6729" fg:w="151"/><text x="4.8593%" y="719.50"></text></g><g><title>LIRGenerator::do_Goto (219 samples, 0.15%)</title><rect x="4.5689%" y="741" width="0.1500%" height="15" fill="rgb(208,77,27)" fg:x="6670" fg:w="219"/><text x="4.8189%" y="751.50"></text></g><g><title>LIRGenerator::profile_branch (25 samples, 0.02%)</title><rect x="4.7319%" y="725" width="0.0171%" height="15" fill="rgb(221,76,26)" fg:x="6908" fg:w="25"/><text x="4.9819%" y="735.50"></text></g><g><title>LIRGenerator::do_If (61 samples, 0.04%)</title><rect x="4.7189%" y="741" width="0.0418%" height="15" fill="rgb(225,139,18)" fg:x="6889" fg:w="61"/><text x="4.9689%" y="751.50"></text></g><g><title>FrameMap::java_calling_convention (21 samples, 0.01%)</title><rect x="4.7689%" y="725" width="0.0144%" height="15" fill="rgb(230,137,11)" fg:x="6962" fg:w="21"/><text x="5.0189%" y="735.50"></text></g><g><title>MethodLiveness::get_liveness_at (33 samples, 0.02%)</title><rect x="4.8134%" y="693" width="0.0226%" height="15" fill="rgb(212,28,1)" fg:x="7027" fg:w="33"/><text x="5.0634%" y="703.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (30 samples, 0.02%)</title><rect x="4.8155%" y="677" width="0.0205%" height="15" fill="rgb(248,164,17)" fg:x="7030" fg:w="30"/><text x="5.0655%" y="687.50"></text></g><g><title>LIRGenerator::state_for (52 samples, 0.04%)</title><rect x="4.8011%" y="725" width="0.0356%" height="15" fill="rgb(222,171,42)" fg:x="7009" fg:w="52"/><text x="5.0511%" y="735.50"></text></g><g><title>ciMethod::liveness_at_bci (35 samples, 0.02%)</title><rect x="4.8128%" y="709" width="0.0240%" height="15" fill="rgb(243,84,45)" fg:x="7026" fg:w="35"/><text x="5.0628%" y="719.50"></text></g><g><title>LIRGenerator::do_Invoke (112 samples, 0.08%)</title><rect x="4.7628%" y="741" width="0.0767%" height="15" fill="rgb(252,49,23)" fg:x="6953" fg:w="112"/><text x="5.0128%" y="751.50"></text></g><g><title>LIRGenerator::do_LoadField (30 samples, 0.02%)</title><rect x="4.8395%" y="741" width="0.0205%" height="15" fill="rgb(215,19,7)" fg:x="7065" fg:w="30"/><text x="5.0895%" y="751.50"></text></g><g><title>LIRGenerator::do_NewInstance (28 samples, 0.02%)</title><rect x="4.8703%" y="741" width="0.0192%" height="15" fill="rgb(238,81,41)" fg:x="7110" fg:w="28"/><text x="5.1203%" y="751.50"></text></g><g><title>LIRGenerator::state_for (20 samples, 0.01%)</title><rect x="4.8758%" y="725" width="0.0137%" height="15" fill="rgb(210,199,37)" fg:x="7118" fg:w="20"/><text x="5.1258%" y="735.50"></text></g><g><title>ciMethod::liveness_at_bci (15 samples, 0.01%)</title><rect x="4.8792%" y="709" width="0.0103%" height="15" fill="rgb(244,192,49)" fg:x="7123" fg:w="15"/><text x="5.1292%" y="719.50"></text></g><g><title>LIRGenerator::do_ProfileCall (30 samples, 0.02%)</title><rect x="4.9004%" y="741" width="0.0205%" height="15" fill="rgb(226,211,11)" fg:x="7154" fg:w="30"/><text x="5.1504%" y="751.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (34 samples, 0.02%)</title><rect x="4.9230%" y="725" width="0.0233%" height="15" fill="rgb(236,162,54)" fg:x="7187" fg:w="34"/><text x="5.1730%" y="735.50"></text></g><g><title>MethodLiveness::get_liveness_at (20 samples, 0.01%)</title><rect x="4.9593%" y="693" width="0.0137%" height="15" fill="rgb(220,229,9)" fg:x="7240" fg:w="20"/><text x="5.2093%" y="703.50"></text></g><g><title>LIRGenerator::state_for (41 samples, 0.03%)</title><rect x="4.9463%" y="725" width="0.0281%" height="15" fill="rgb(250,87,22)" fg:x="7221" fg:w="41"/><text x="5.1963%" y="735.50"></text></g><g><title>ciMethod::liveness_at_bci (22 samples, 0.02%)</title><rect x="4.9593%" y="709" width="0.0151%" height="15" fill="rgb(239,43,17)" fg:x="7240" fg:w="22"/><text x="5.2093%" y="719.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (86 samples, 0.06%)</title><rect x="4.9210%" y="741" width="0.0589%" height="15" fill="rgb(231,177,25)" fg:x="7184" fg:w="86"/><text x="5.1710%" y="751.50"></text></g><g><title>LIRGenerator::access_store_at (24 samples, 0.02%)</title><rect x="4.9915%" y="725" width="0.0164%" height="15" fill="rgb(219,179,1)" fg:x="7287" fg:w="24"/><text x="5.2415%" y="735.50"></text></g><g><title>LIRGenerator::do_StoreField (30 samples, 0.02%)</title><rect x="4.9915%" y="741" width="0.0205%" height="15" fill="rgb(238,219,53)" fg:x="7287" fg:w="30"/><text x="5.2415%" y="751.50"></text></g><g><title>LIRGenerator::block_do (797 samples, 0.55%)</title><rect x="4.4799%" y="757" width="0.5459%" height="15" fill="rgb(232,167,36)" fg:x="6540" fg:w="797"/><text x="4.7299%" y="767.50"></text></g><g><title>BlockList::iterate_forward (805 samples, 0.55%)</title><rect x="4.4751%" y="773" width="0.5514%" height="15" fill="rgb(244,19,51)" fg:x="6533" fg:w="805"/><text x="4.7251%" y="783.50"></text></g><g><title>ControlFlowOptimizer::delete_empty_blocks (20 samples, 0.01%)</title><rect x="5.0285%" y="757" width="0.0137%" height="15" fill="rgb(224,6,22)" fg:x="7341" fg:w="20"/><text x="5.2785%" y="767.50"></text></g><g><title>ControlFlowOptimizer::optimize (32 samples, 0.02%)</title><rect x="5.0265%" y="773" width="0.0219%" height="15" fill="rgb(224,145,5)" fg:x="7338" fg:w="32"/><text x="5.2765%" y="783.50"></text></g><g><title>EdgeMoveOptimizer::optimize (19 samples, 0.01%)</title><rect x="5.0546%" y="757" width="0.0130%" height="15" fill="rgb(234,130,49)" fg:x="7379" fg:w="19"/><text x="5.3046%" y="767.50"></text></g><g><title>IntervalWalker::walk_to (124 samples, 0.08%)</title><rect x="5.1046%" y="725" width="0.0849%" height="15" fill="rgb(254,6,2)" fg:x="7452" fg:w="124"/><text x="5.3546%" y="735.50"></text></g><g><title>IntervalWalker::append_to_unhandled (20 samples, 0.01%)</title><rect x="5.2409%" y="693" width="0.0137%" height="15" fill="rgb(208,96,46)" fg:x="7651" fg:w="20"/><text x="5.4909%" y="703.50"></text></g><g><title>LinearScanWalker::find_free_reg (82 samples, 0.06%)</title><rect x="5.2546%" y="693" width="0.0562%" height="15" fill="rgb(239,3,39)" fg:x="7671" fg:w="82"/><text x="5.5046%" y="703.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_any (21 samples, 0.01%)</title><rect x="5.3107%" y="693" width="0.0144%" height="15" fill="rgb(233,210,1)" fg:x="7753" fg:w="21"/><text x="5.5607%" y="703.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (139 samples, 0.10%)</title><rect x="5.3251%" y="693" width="0.0952%" height="15" fill="rgb(244,137,37)" fg:x="7774" fg:w="139"/><text x="5.5751%" y="703.50"></text></g><g><title>Range::intersects_at (21 samples, 0.01%)</title><rect x="5.4060%" y="677" width="0.0144%" height="15" fill="rgb(240,136,2)" fg:x="7892" fg:w="21"/><text x="5.6560%" y="687.50"></text></g><g><title>Interval::new_split_child (16 samples, 0.01%)</title><rect x="5.4320%" y="661" width="0.0110%" height="15" fill="rgb(239,18,37)" fg:x="7930" fg:w="16"/><text x="5.6820%" y="671.50"></text></g><g><title>Interval::split (32 samples, 0.02%)</title><rect x="5.4265%" y="677" width="0.0219%" height="15" fill="rgb(218,185,22)" fg:x="7922" fg:w="32"/><text x="5.6765%" y="687.50"></text></g><g><title>LinearScanWalker::split_before_usage (45 samples, 0.03%)</title><rect x="5.4203%" y="693" width="0.0308%" height="15" fill="rgb(225,218,4)" fg:x="7913" fg:w="45"/><text x="5.6703%" y="703.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (362 samples, 0.25%)</title><rect x="5.2080%" y="709" width="0.2480%" height="15" fill="rgb(230,182,32)" fg:x="7603" fg:w="362"/><text x="5.4580%" y="719.50"></text></g><g><title>LinearScanWalker::spill_block_inactive_fixed (18 samples, 0.01%)</title><rect x="5.4649%" y="693" width="0.0123%" height="15" fill="rgb(242,56,43)" fg:x="7978" fg:w="18"/><text x="5.7149%" y="703.50"></text></g><g><title>IntervalWalker::append_to_unhandled (22 samples, 0.02%)</title><rect x="5.4854%" y="677" width="0.0151%" height="15" fill="rgb(233,99,24)" fg:x="8008" fg:w="22"/><text x="5.7354%" y="687.50"></text></g><g><title>Interval::split (16 samples, 0.01%)</title><rect x="5.5025%" y="661" width="0.0110%" height="15" fill="rgb(234,209,42)" fg:x="8033" fg:w="16"/><text x="5.7525%" y="671.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (48 samples, 0.03%)</title><rect x="5.4840%" y="693" width="0.0329%" height="15" fill="rgb(227,7,12)" fg:x="8006" fg:w="48"/><text x="5.7340%" y="703.50"></text></g><g><title>LinearScanWalker::split_before_usage (24 samples, 0.02%)</title><rect x="5.5005%" y="677" width="0.0164%" height="15" fill="rgb(245,203,43)" fg:x="8030" fg:w="24"/><text x="5.7505%" y="687.50"></text></g><g><title>Interval::split_child_before_op_id (27 samples, 0.02%)</title><rect x="5.5210%" y="677" width="0.0185%" height="15" fill="rgb(238,205,33)" fg:x="8060" fg:w="27"/><text x="5.7710%" y="687.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (124 samples, 0.08%)</title><rect x="5.4560%" y="709" width="0.0849%" height="15" fill="rgb(231,56,7)" fg:x="7965" fg:w="124"/><text x="5.7060%" y="719.50"></text></g><g><title>LinearScanWalker::split_for_spilling (35 samples, 0.02%)</title><rect x="5.5169%" y="693" width="0.0240%" height="15" fill="rgb(244,186,29)" fg:x="8054" fg:w="35"/><text x="5.7669%" y="703.50"></text></g><g><title>LinearScanWalker::init_vars_for_alloc (16 samples, 0.01%)</title><rect x="5.5478%" y="709" width="0.0110%" height="15" fill="rgb(234,111,31)" fg:x="8099" fg:w="16"/><text x="5.7978%" y="719.50"></text></g><g><title>LinearScanWalker::insert_move (33 samples, 0.02%)</title><rect x="5.5587%" y="709" width="0.0226%" height="15" fill="rgb(241,149,10)" fg:x="8115" fg:w="33"/><text x="5.8087%" y="719.50"></text></g><g><title>IntervalWalker::walk_to (738 samples, 0.51%)</title><rect x="5.0806%" y="741" width="0.5055%" height="15" fill="rgb(249,206,44)" fg:x="7417" fg:w="738"/><text x="5.3306%" y="751.50"></text></g><g><title>LinearScanWalker::activate_current (579 samples, 0.40%)</title><rect x="5.1895%" y="725" width="0.3966%" height="15" fill="rgb(251,153,30)" fg:x="7576" fg:w="579"/><text x="5.4395%" y="735.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (56 samples, 0.04%)</title><rect x="5.5868%" y="741" width="0.0384%" height="15" fill="rgb(239,152,38)" fg:x="8156" fg:w="56"/><text x="5.8368%" y="751.50"></text></g><g><title>resource_allocate_bytes (36 samples, 0.02%)</title><rect x="5.6005%" y="725" width="0.0247%" height="15" fill="rgb(249,139,47)" fg:x="8176" fg:w="36"/><text x="5.8505%" y="735.50"></text></g><g><title>__tls_get_addr (23 samples, 0.02%)</title><rect x="5.6094%" y="709" width="0.0158%" height="15" fill="rgb(244,64,35)" fg:x="8189" fg:w="23"/><text x="5.8594%" y="719.50"></text></g><g><title>LinearScan::allocate_registers (813 samples, 0.56%)</title><rect x="5.0689%" y="757" width="0.5569%" height="15" fill="rgb(216,46,15)" fg:x="7400" fg:w="813"/><text x="5.3189%" y="767.50"></text></g><g><title>LIR_OpVisitState::visit (66 samples, 0.05%)</title><rect x="5.7142%" y="725" width="0.0452%" height="15" fill="rgb(250,74,19)" fg:x="8342" fg:w="66"/><text x="5.9642%" y="735.50"></text></g><g><title>LIR_OpVisitState::append (21 samples, 0.01%)</title><rect x="5.7450%" y="709" width="0.0144%" height="15" fill="rgb(249,42,33)" fg:x="8387" fg:w="21"/><text x="5.9950%" y="719.50"></text></g><g><title>Interval::split_child_at_op_id (20 samples, 0.01%)</title><rect x="5.7765%" y="709" width="0.0137%" height="15" fill="rgb(242,149,17)" fg:x="8433" fg:w="20"/><text x="6.0265%" y="719.50"></text></g><g><title>LinearScan::color_lir_opr (46 samples, 0.03%)</title><rect x="5.7615%" y="725" width="0.0315%" height="15" fill="rgb(244,29,21)" fg:x="8411" fg:w="46"/><text x="6.0115%" y="735.50"></text></g><g><title>LinearScan::append_scope_value (20 samples, 0.01%)</title><rect x="5.8053%" y="709" width="0.0137%" height="15" fill="rgb(220,130,37)" fg:x="8475" fg:w="20"/><text x="6.0553%" y="719.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (35 samples, 0.02%)</title><rect x="5.8409%" y="693" width="0.0240%" height="15" fill="rgb(211,67,2)" fg:x="8527" fg:w="35"/><text x="6.0909%" y="703.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (63 samples, 0.04%)</title><rect x="5.8300%" y="709" width="0.0432%" height="15" fill="rgb(235,68,52)" fg:x="8511" fg:w="63"/><text x="6.0800%" y="719.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (132 samples, 0.09%)</title><rect x="5.7930%" y="725" width="0.0904%" height="15" fill="rgb(246,142,3)" fg:x="8457" fg:w="132"/><text x="6.0430%" y="735.50"></text></g><g><title>IntervalWalker::walk_to (99 samples, 0.07%)</title><rect x="5.9115%" y="693" width="0.0678%" height="15" fill="rgb(241,25,7)" fg:x="8630" fg:w="99"/><text x="6.1615%" y="703.50"></text></g><g><title>LinearScan::compute_oop_map (163 samples, 0.11%)</title><rect x="5.8937%" y="709" width="0.1117%" height="15" fill="rgb(242,119,39)" fg:x="8604" fg:w="163"/><text x="6.1437%" y="719.50"></text></g><g><title>LinearScan::assign_reg_num (549 samples, 0.38%)</title><rect x="5.6300%" y="741" width="0.3761%" height="15" fill="rgb(241,98,45)" fg:x="8219" fg:w="549"/><text x="5.8800%" y="751.50"></text></g><g><title>LinearScan::compute_oop_map (179 samples, 0.12%)</title><rect x="5.8834%" y="725" width="0.1226%" height="15" fill="rgb(254,28,30)" fg:x="8589" fg:w="179"/><text x="6.1334%" y="735.50"></text></g><g><title>LinearScan::assign_reg_num (586 samples, 0.40%)</title><rect x="5.6258%" y="757" width="0.4014%" height="15" fill="rgb(241,142,54)" fg:x="8213" fg:w="586"/><text x="5.8758%" y="767.50"></text></g><g><title>LinearScan::init_compute_oop_maps (26 samples, 0.02%)</title><rect x="6.0094%" y="741" width="0.0178%" height="15" fill="rgb(222,85,15)" fg:x="8773" fg:w="26"/><text x="6.2594%" y="751.50"></text></g><g><title>BitMap::get_next_one_offset (33 samples, 0.02%)</title><rect x="6.1485%" y="741" width="0.0226%" height="15" fill="rgb(210,85,47)" fg:x="8976" fg:w="33"/><text x="6.3985%" y="751.50"></text></g><g><title>Interval::add_use_pos (17 samples, 0.01%)</title><rect x="6.1821%" y="741" width="0.0116%" height="15" fill="rgb(224,206,25)" fg:x="9025" fg:w="17"/><text x="6.4321%" y="751.50"></text></g><g><title>LIR_OpVisitState::visit (70 samples, 0.05%)</title><rect x="6.2012%" y="741" width="0.0479%" height="15" fill="rgb(243,201,19)" fg:x="9053" fg:w="70"/><text x="6.4512%" y="751.50"></text></g><g><title>LIR_OpVisitState::append (22 samples, 0.02%)</title><rect x="6.2341%" y="725" width="0.0151%" height="15" fill="rgb(236,59,4)" fg:x="9101" fg:w="22"/><text x="6.4841%" y="735.50"></text></g><g><title>LinearScan::add_def (46 samples, 0.03%)</title><rect x="6.2492%" y="741" width="0.0315%" height="15" fill="rgb(254,179,45)" fg:x="9123" fg:w="46"/><text x="6.4992%" y="751.50"></text></g><g><title>Interval::add_range (26 samples, 0.02%)</title><rect x="6.2958%" y="725" width="0.0178%" height="15" fill="rgb(226,14,10)" fg:x="9191" fg:w="26"/><text x="6.5458%" y="735.50"></text></g><g><title>Interval::Interval (23 samples, 0.02%)</title><rect x="6.3170%" y="709" width="0.0158%" height="15" fill="rgb(244,27,41)" fg:x="9222" fg:w="23"/><text x="6.5670%" y="719.50"></text></g><g><title>LinearScan::add_temp (64 samples, 0.04%)</title><rect x="6.2896%" y="741" width="0.0438%" height="15" fill="rgb(235,35,32)" fg:x="9182" fg:w="64"/><text x="6.5396%" y="751.50"></text></g><g><title>LinearScan::create_interval (29 samples, 0.02%)</title><rect x="6.3136%" y="725" width="0.0199%" height="15" fill="rgb(218,68,31)" fg:x="9217" fg:w="29"/><text x="6.5636%" y="735.50"></text></g><g><title>Interval::add_range (33 samples, 0.02%)</title><rect x="6.3602%" y="725" width="0.0226%" height="15" fill="rgb(207,120,37)" fg:x="9285" fg:w="33"/><text x="6.6102%" y="735.50"></text></g><g><title>__tls_get_addr (18 samples, 0.01%)</title><rect x="6.4225%" y="677" width="0.0123%" height="15" fill="rgb(227,98,0)" fg:x="9376" fg:w="18"/><text x="6.6725%" y="687.50"></text></g><g><title>Interval::Interval (65 samples, 0.04%)</title><rect x="6.3917%" y="709" width="0.0445%" height="15" fill="rgb(207,7,3)" fg:x="9331" fg:w="65"/><text x="6.6417%" y="719.50"></text></g><g><title>resource_allocate_bytes (40 samples, 0.03%)</title><rect x="6.4088%" y="693" width="0.0274%" height="15" fill="rgb(206,98,19)" fg:x="9356" fg:w="40"/><text x="6.6588%" y="703.50"></text></g><g><title>LinearScan::add_use (153 samples, 0.10%)</title><rect x="6.3334%" y="741" width="0.1048%" height="15" fill="rgb(217,5,26)" fg:x="9246" fg:w="153"/><text x="6.5834%" y="751.50"></text></g><g><title>LinearScan::create_interval (80 samples, 0.05%)</title><rect x="6.3834%" y="725" width="0.0548%" height="15" fill="rgb(235,190,38)" fg:x="9319" fg:w="80"/><text x="6.6334%" y="735.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (24 samples, 0.02%)</title><rect x="6.4430%" y="741" width="0.0164%" height="15" fill="rgb(247,86,24)" fg:x="9406" fg:w="24"/><text x="6.6930%" y="751.50"></text></g><g><title>LinearScan::use_kind_of_output_operand (22 samples, 0.02%)</title><rect x="6.4595%" y="741" width="0.0151%" height="15" fill="rgb(205,101,16)" fg:x="9430" fg:w="22"/><text x="6.7095%" y="751.50"></text></g><g><title>LinearScan::build_intervals (657 samples, 0.45%)</title><rect x="6.0272%" y="757" width="0.4500%" height="15" fill="rgb(246,168,33)" fg:x="8799" fg:w="657"/><text x="6.2772%" y="767.50"></text></g><g><title>LinearScan::compute_global_live_sets (51 samples, 0.03%)</title><rect x="6.4773%" y="757" width="0.0349%" height="15" fill="rgb(231,114,1)" fg:x="9456" fg:w="51"/><text x="6.7273%" y="767.50"></text></g><g><title>LIR_OpVisitState::visit (88 samples, 0.06%)</title><rect x="6.5903%" y="741" width="0.0603%" height="15" fill="rgb(207,184,53)" fg:x="9621" fg:w="88"/><text x="6.8403%" y="751.50"></text></g><g><title>LIR_OpVisitState::append (24 samples, 0.02%)</title><rect x="6.6342%" y="725" width="0.0164%" height="15" fill="rgb(224,95,51)" fg:x="9685" fg:w="24"/><text x="6.8842%" y="735.50"></text></g><g><title>LinearScan::compute_local_live_sets (247 samples, 0.17%)</title><rect x="6.5122%" y="757" width="0.1692%" height="15" fill="rgb(212,188,45)" fg:x="9507" fg:w="247"/><text x="6.7622%" y="767.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (31 samples, 0.02%)</title><rect x="6.6602%" y="741" width="0.0212%" height="15" fill="rgb(223,154,38)" fg:x="9723" fg:w="31"/><text x="6.9102%" y="751.50"></text></g><g><title>resource_allocate_bytes (17 samples, 0.01%)</title><rect x="6.6698%" y="725" width="0.0116%" height="15" fill="rgb(251,22,52)" fg:x="9737" fg:w="17"/><text x="6.9198%" y="735.50"></text></g><g><title>LinearScan::eliminate_spill_moves (62 samples, 0.04%)</title><rect x="6.6814%" y="757" width="0.0425%" height="15" fill="rgb(229,209,22)" fg:x="9754" fg:w="62"/><text x="6.9314%" y="767.50"></text></g><g><title>LinearScan::number_instructions (30 samples, 0.02%)</title><rect x="6.7239%" y="757" width="0.0205%" height="15" fill="rgb(234,138,34)" fg:x="9816" fg:w="30"/><text x="6.9739%" y="767.50"></text></g><g><title>BitMap::get_next_one_offset (21 samples, 0.01%)</title><rect x="6.7759%" y="725" width="0.0144%" height="15" fill="rgb(212,95,11)" fg:x="9892" fg:w="21"/><text x="7.0259%" y="735.50"></text></g><g><title>LinearScan::resolve_collect_mappings (75 samples, 0.05%)</title><rect x="6.7664%" y="741" width="0.0514%" height="15" fill="rgb(240,179,47)" fg:x="9878" fg:w="75"/><text x="7.0164%" y="751.50"></text></g><g><title>Interval::split_child_at_op_id (40 samples, 0.03%)</title><rect x="6.7903%" y="725" width="0.0274%" height="15" fill="rgb(240,163,11)" fg:x="9913" fg:w="40"/><text x="7.0403%" y="735.50"></text></g><g><title>LinearScan::resolve_data_flow (122 samples, 0.08%)</title><rect x="6.7479%" y="757" width="0.0836%" height="15" fill="rgb(236,37,12)" fg:x="9851" fg:w="122"/><text x="6.9979%" y="767.50"></text></g><g><title>LinearScan::resolve_exception_edge (17 samples, 0.01%)</title><rect x="6.8431%" y="741" width="0.0116%" height="15" fill="rgb(232,164,16)" fg:x="9990" fg:w="17"/><text x="7.0931%" y="751.50"></text></g><g><title>LinearScan::resolve_exception_handlers (36 samples, 0.02%)</title><rect x="6.8314%" y="757" width="0.0247%" height="15" fill="rgb(244,205,15)" fg:x="9973" fg:w="36"/><text x="7.0814%" y="767.50"></text></g><g><title>__GI___qsort_r (25 samples, 0.02%)</title><rect x="6.8698%" y="741" width="0.0171%" height="15" fill="rgb(223,117,47)" fg:x="10029" fg:w="25"/><text x="7.1198%" y="751.50"></text></g><g><title>msort_with_tmp (24 samples, 0.02%)</title><rect x="6.8705%" y="725" width="0.0164%" height="15" fill="rgb(244,107,35)" fg:x="10030" fg:w="24"/><text x="7.1205%" y="735.50"></text></g><g><title>msort_with_tmp (24 samples, 0.02%)</title><rect x="6.8705%" y="709" width="0.0164%" height="15" fill="rgb(205,140,8)" fg:x="10030" fg:w="24"/><text x="7.1205%" y="719.50"></text></g><g><title>msort_with_tmp (22 samples, 0.02%)</title><rect x="6.8718%" y="693" width="0.0151%" height="15" fill="rgb(228,84,46)" fg:x="10032" fg:w="22"/><text x="7.1218%" y="703.50"></text></g><g><title>msort_with_tmp (22 samples, 0.02%)</title><rect x="6.8718%" y="677" width="0.0151%" height="15" fill="rgb(254,188,9)" fg:x="10032" fg:w="22"/><text x="7.1218%" y="687.50"></text></g><g><title>msort_with_tmp (20 samples, 0.01%)</title><rect x="6.8732%" y="661" width="0.0137%" height="15" fill="rgb(206,112,54)" fg:x="10034" fg:w="20"/><text x="7.1232%" y="671.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="6.8739%" y="645" width="0.0130%" height="15" fill="rgb(216,84,49)" fg:x="10035" fg:w="19"/><text x="7.1239%" y="655.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (47 samples, 0.03%)</title><rect x="6.8561%" y="757" width="0.0322%" height="15" fill="rgb(214,194,35)" fg:x="10009" fg:w="47"/><text x="7.1061%" y="767.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (49 samples, 0.03%)</title><rect x="6.8883%" y="757" width="0.0336%" height="15" fill="rgb(249,28,3)" fg:x="10056" fg:w="49"/><text x="7.1383%" y="767.50"></text></g><g><title>LinearScan::do_linear_scan (2,732 samples, 1.87%)</title><rect x="5.0525%" y="773" width="1.8714%" height="15" fill="rgb(222,56,52)" fg:x="7376" fg:w="2732"/><text x="5.3025%" y="783.50">L..</text></g><g><title>Compilation::emit_lir (3,584 samples, 2.46%)</title><rect x="4.4696%" y="789" width="2.4550%" height="15" fill="rgb(245,217,50)" fg:x="6525" fg:w="3584"/><text x="4.7196%" y="799.50">Co..</text></g><g><title>FrameMap::FrameMap (16 samples, 0.01%)</title><rect x="6.9246%" y="789" width="0.0110%" height="15" fill="rgb(213,201,24)" fg:x="10109" fg:w="16"/><text x="7.1746%" y="799.50"></text></g><g><title>MethodData::compute_allocation_size_in_bytes (18 samples, 0.01%)</title><rect x="6.9479%" y="725" width="0.0123%" height="15" fill="rgb(248,116,28)" fg:x="10143" fg:w="18"/><text x="7.1979%" y="735.50"></text></g><g><title>MethodData::initialize (25 samples, 0.02%)</title><rect x="6.9602%" y="725" width="0.0171%" height="15" fill="rgb(219,72,43)" fg:x="10161" fg:w="25"/><text x="7.2102%" y="735.50"></text></g><g><title>Method::build_interpreter_method_data (58 samples, 0.04%)</title><rect x="6.9403%" y="757" width="0.0397%" height="15" fill="rgb(209,138,14)" fg:x="10132" fg:w="58"/><text x="7.1903%" y="767.50"></text></g><g><title>MethodData::allocate (58 samples, 0.04%)</title><rect x="6.9403%" y="741" width="0.0397%" height="15" fill="rgb(222,18,33)" fg:x="10132" fg:w="58"/><text x="7.1903%" y="751.50"></text></g><g><title>ciMethodData::load_data (36 samples, 0.02%)</title><rect x="6.9814%" y="757" width="0.0247%" height="15" fill="rgb(213,199,7)" fg:x="10192" fg:w="36"/><text x="7.2314%" y="767.50"></text></g><g><title>Compilation::compile_java_method (8,556 samples, 5.86%)</title><rect x="1.1501%" y="805" width="5.8608%" height="15" fill="rgb(250,110,10)" fg:x="1679" fg:w="8556"/><text x="1.4001%" y="815.50">Compila..</text></g><g><title>ciMethod::ensure_method_data (106 samples, 0.07%)</title><rect x="6.9383%" y="789" width="0.0726%" height="15" fill="rgb(248,123,6)" fg:x="10129" fg:w="106"/><text x="7.1883%" y="799.50"></text></g><g><title>ciMethod::ensure_method_data (104 samples, 0.07%)</title><rect x="6.9397%" y="773" width="0.0712%" height="15" fill="rgb(206,91,31)" fg:x="10131" fg:w="104"/><text x="7.1897%" y="783.50"></text></g><g><title>DebugInformationRecorder::DebugInformationRecorder (17 samples, 0.01%)</title><rect x="7.0116%" y="789" width="0.0116%" height="15" fill="rgb(211,154,13)" fg:x="10236" fg:w="17"/><text x="7.2616%" y="799.50"></text></g><g><title>Dependencies::initialize (22 samples, 0.02%)</title><rect x="7.0232%" y="789" width="0.0151%" height="15" fill="rgb(225,148,7)" fg:x="10253" fg:w="22"/><text x="7.2732%" y="799.50"></text></g><g><title>Compilation::initialize (41 samples, 0.03%)</title><rect x="7.0116%" y="805" width="0.0281%" height="15" fill="rgb(220,160,43)" fg:x="10236" fg:w="41"/><text x="7.2616%" y="815.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (22 samples, 0.02%)</title><rect x="7.0575%" y="789" width="0.0151%" height="15" fill="rgb(213,52,39)" fg:x="10303" fg:w="22"/><text x="7.3075%" y="799.50"></text></g><g><title>SafepointSynchronize::block (22 samples, 0.02%)</title><rect x="7.0575%" y="773" width="0.0151%" height="15" fill="rgb(243,137,7)" fg:x="10303" fg:w="22"/><text x="7.3075%" y="783.50"></text></g><g><title>Monitor::lock_without_safepoint_check (22 samples, 0.02%)</title><rect x="7.0575%" y="757" width="0.0151%" height="15" fill="rgb(230,79,13)" fg:x="10303" fg:w="22"/><text x="7.3075%" y="767.50"></text></g><g><title>Monitor::ILock (22 samples, 0.02%)</title><rect x="7.0575%" y="741" width="0.0151%" height="15" fill="rgb(247,105,23)" fg:x="10303" fg:w="22"/><text x="7.3075%" y="751.50"></text></g><g><title>os::PlatformEvent::park (21 samples, 0.01%)</title><rect x="7.0582%" y="725" width="0.0144%" height="15" fill="rgb(223,179,41)" fg:x="10304" fg:w="21"/><text x="7.3082%" y="735.50"></text></g><g><title>__pthread_cond_wait (21 samples, 0.01%)</title><rect x="7.0582%" y="709" width="0.0144%" height="15" fill="rgb(218,9,34)" fg:x="10304" fg:w="21"/><text x="7.3082%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (21 samples, 0.01%)</title><rect x="7.0582%" y="693" width="0.0144%" height="15" fill="rgb(222,106,8)" fg:x="10304" fg:w="21"/><text x="7.3082%" y="703.50"></text></g><g><title>futex_wait_cancelable (20 samples, 0.01%)</title><rect x="7.0588%" y="677" width="0.0137%" height="15" fill="rgb(211,220,0)" fg:x="10305" fg:w="20"/><text x="7.3088%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="7.0595%" y="661" width="0.0130%" height="15" fill="rgb(229,52,16)" fg:x="10306" fg:w="19"/><text x="7.3095%" y="671.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="7.0595%" y="645" width="0.0130%" height="15" fill="rgb(212,155,18)" fg:x="10306" fg:w="19"/><text x="7.3095%" y="655.50"></text></g><g><title>__x64_sys_futex (19 samples, 0.01%)</title><rect x="7.0595%" y="629" width="0.0130%" height="15" fill="rgb(242,21,14)" fg:x="10306" fg:w="19"/><text x="7.3095%" y="639.50"></text></g><g><title>do_futex (19 samples, 0.01%)</title><rect x="7.0595%" y="613" width="0.0130%" height="15" fill="rgb(222,19,48)" fg:x="10306" fg:w="19"/><text x="7.3095%" y="623.50"></text></g><g><title>futex_wait (19 samples, 0.01%)</title><rect x="7.0595%" y="597" width="0.0130%" height="15" fill="rgb(232,45,27)" fg:x="10306" fg:w="19"/><text x="7.3095%" y="607.50"></text></g><g><title>futex_wait_queue_me (19 samples, 0.01%)</title><rect x="7.0595%" y="581" width="0.0130%" height="15" fill="rgb(249,103,42)" fg:x="10306" fg:w="19"/><text x="7.3095%" y="591.50"></text></g><g><title>schedule (19 samples, 0.01%)</title><rect x="7.0595%" y="565" width="0.0130%" height="15" fill="rgb(246,81,33)" fg:x="10306" fg:w="19"/><text x="7.3095%" y="575.50"></text></g><g><title>__schedule (19 samples, 0.01%)</title><rect x="7.0595%" y="549" width="0.0130%" height="15" fill="rgb(252,33,42)" fg:x="10306" fg:w="19"/><text x="7.3095%" y="559.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="7.0595%" y="533" width="0.0130%" height="15" fill="rgb(209,212,41)" fg:x="10306" fg:w="19"/><text x="7.3095%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="7.0595%" y="517" width="0.0130%" height="15" fill="rgb(207,154,6)" fg:x="10306" fg:w="19"/><text x="7.3095%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="7.0602%" y="501" width="0.0123%" height="15" fill="rgb(223,64,47)" fg:x="10307" fg:w="18"/><text x="7.3102%" y="511.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="7.0602%" y="485" width="0.0123%" height="15" fill="rgb(211,161,38)" fg:x="10307" fg:w="18"/><text x="7.3102%" y="495.50"></text></g><g><title>Monitor::lock (21 samples, 0.01%)</title><rect x="7.0746%" y="789" width="0.0144%" height="15" fill="rgb(219,138,40)" fg:x="10328" fg:w="21"/><text x="7.3246%" y="799.50"></text></g><g><title>CodeBuffer::finalize_oop_references (58 samples, 0.04%)</title><rect x="7.1020%" y="773" width="0.0397%" height="15" fill="rgb(241,228,46)" fg:x="10368" fg:w="58"/><text x="7.3520%" y="783.50"></text></g><g><title>CodeHeap::allocate (20 samples, 0.01%)</title><rect x="7.1417%" y="757" width="0.0137%" height="15" fill="rgb(223,209,38)" fg:x="10426" fg:w="20"/><text x="7.3917%" y="767.50"></text></g><g><title>CodeCache::allocate (35 samples, 0.02%)</title><rect x="7.1417%" y="773" width="0.0240%" height="15" fill="rgb(236,164,45)" fg:x="10426" fg:w="35"/><text x="7.3917%" y="783.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (29 samples, 0.02%)</title><rect x="7.2020%" y="725" width="0.0199%" height="15" fill="rgb(231,15,5)" fg:x="10514" fg:w="29"/><text x="7.4520%" y="735.50"></text></g><g><title>Relocation::pd_call_destination (26 samples, 0.02%)</title><rect x="7.2041%" y="709" width="0.0178%" height="15" fill="rgb(252,35,15)" fg:x="10517" fg:w="26"/><text x="7.4541%" y="719.50"></text></g><g><title>RelocIterator::reloc (18 samples, 0.01%)</title><rect x="7.2232%" y="725" width="0.0123%" height="15" fill="rgb(248,181,18)" fg:x="10545" fg:w="18"/><text x="7.4732%" y="735.50"></text></g><g><title>asm_exc_page_fault (24 samples, 0.02%)</title><rect x="7.2438%" y="709" width="0.0164%" height="15" fill="rgb(233,39,42)" fg:x="10575" fg:w="24"/><text x="7.4938%" y="719.50"></text></g><g><title>exc_page_fault (24 samples, 0.02%)</title><rect x="7.2438%" y="693" width="0.0164%" height="15" fill="rgb(238,110,33)" fg:x="10575" fg:w="24"/><text x="7.4938%" y="703.50"></text></g><g><title>do_user_addr_fault (24 samples, 0.02%)</title><rect x="7.2438%" y="677" width="0.0164%" height="15" fill="rgb(233,195,10)" fg:x="10575" fg:w="24"/><text x="7.4938%" y="687.50"></text></g><g><title>handle_mm_fault (21 samples, 0.01%)</title><rect x="7.2459%" y="661" width="0.0144%" height="15" fill="rgb(254,105,3)" fg:x="10578" fg:w="21"/><text x="7.4959%" y="671.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (28 samples, 0.02%)</title><rect x="7.2424%" y="725" width="0.0192%" height="15" fill="rgb(221,225,9)" fg:x="10573" fg:w="28"/><text x="7.4924%" y="735.50"></text></g><g><title>CodeBuffer::relocate_code_to (105 samples, 0.07%)</title><rect x="7.1924%" y="741" width="0.0719%" height="15" fill="rgb(224,227,45)" fg:x="10500" fg:w="105"/><text x="7.4424%" y="751.50"></text></g><g><title>CodeBuffer::copy_code_to (117 samples, 0.08%)</title><rect x="7.1911%" y="757" width="0.0801%" height="15" fill="rgb(229,198,43)" fg:x="10498" fg:w="117"/><text x="7.4411%" y="767.50"></text></g><g><title>AllocateHeap (25 samples, 0.02%)</title><rect x="7.2808%" y="709" width="0.0171%" height="15" fill="rgb(206,209,35)" fg:x="10629" fg:w="25"/><text x="7.5308%" y="719.50"></text></g><g><title>os::malloc (24 samples, 0.02%)</title><rect x="7.2815%" y="693" width="0.0164%" height="15" fill="rgb(245,195,53)" fg:x="10630" fg:w="24"/><text x="7.5315%" y="703.50"></text></g><g><title>__GI___libc_malloc (24 samples, 0.02%)</title><rect x="7.2815%" y="677" width="0.0164%" height="15" fill="rgb(240,92,26)" fg:x="10630" fg:w="24"/><text x="7.5315%" y="687.50"></text></g><g><title>CodeBlob::CodeBlob (35 samples, 0.02%)</title><rect x="7.2787%" y="741" width="0.0240%" height="15" fill="rgb(207,40,23)" fg:x="10626" fg:w="35"/><text x="7.5287%" y="751.50"></text></g><g><title>ImmutableOopMapSet::build_from (33 samples, 0.02%)</title><rect x="7.2801%" y="725" width="0.0226%" height="15" fill="rgb(223,111,35)" fg:x="10628" fg:w="33"/><text x="7.5301%" y="735.50"></text></g><g><title>CompiledMethod::CompiledMethod (39 samples, 0.03%)</title><rect x="7.2787%" y="757" width="0.0267%" height="15" fill="rgb(229,147,28)" fg:x="10626" fg:w="39"/><text x="7.5287%" y="767.50"></text></g><g><title>G1CodeRootSet::add (21 samples, 0.01%)</title><rect x="7.3171%" y="725" width="0.0144%" height="15" fill="rgb(211,29,28)" fg:x="10682" fg:w="21"/><text x="7.5671%" y="735.50"></text></g><g><title>nmethod::oops_do (40 samples, 0.03%)</title><rect x="7.3082%" y="741" width="0.0274%" height="15" fill="rgb(228,72,33)" fg:x="10669" fg:w="40"/><text x="7.5582%" y="751.50"></text></g><g><title>G1CollectedHeap::register_nmethod (41 samples, 0.03%)</title><rect x="7.3082%" y="757" width="0.0281%" height="15" fill="rgb(205,214,31)" fg:x="10669" fg:w="41"/><text x="7.5582%" y="767.50"></text></g><g><title>nmethod::nmethod (263 samples, 0.18%)</title><rect x="7.1863%" y="773" width="0.1802%" height="15" fill="rgb(224,111,15)" fg:x="10491" fg:w="263"/><text x="7.4363%" y="783.50"></text></g><g><title>nmethod::fix_oop_relocations (21 samples, 0.01%)</title><rect x="7.3520%" y="757" width="0.0144%" height="15" fill="rgb(253,21,26)" fg:x="10733" fg:w="21"/><text x="7.6020%" y="767.50"></text></g><g><title>ciEnv::register_method (475 samples, 0.33%)</title><rect x="7.0417%" y="805" width="0.3254%" height="15" fill="rgb(245,139,43)" fg:x="10280" fg:w="475"/><text x="7.2917%" y="815.50"></text></g><g><title>nmethod::new_nmethod (399 samples, 0.27%)</title><rect x="7.0938%" y="789" width="0.2733%" height="15" fill="rgb(252,170,7)" fg:x="10356" fg:w="399"/><text x="7.3438%" y="799.50"></text></g><g><title>Compilation::compile_method (9,083 samples, 6.22%)</title><rect x="1.1460%" y="821" width="6.2218%" height="15" fill="rgb(231,118,14)" fg:x="1673" fg:w="9083"/><text x="1.3960%" y="831.50">Compilat..</text></g><g><title>Compiler::compile_method (9,112 samples, 6.24%)</title><rect x="1.1343%" y="853" width="6.2417%" height="15" fill="rgb(238,83,0)" fg:x="1656" fg:w="9112"/><text x="1.3843%" y="863.50">Compiler..</text></g><g><title>Compilation::Compilation (9,098 samples, 6.23%)</title><rect x="1.1439%" y="837" width="6.2321%" height="15" fill="rgb(221,39,39)" fg:x="1670" fg:w="9098"/><text x="1.3939%" y="847.50">Compilat..</text></g><g><title>StringEventLog::log (16 samples, 0.01%)</title><rect x="7.3808%" y="853" width="0.0110%" height="15" fill="rgb(222,119,46)" fg:x="10775" fg:w="16"/><text x="7.6308%" y="863.50"></text></g><g><title>ciObjectFactory::ciObjectFactory (34 samples, 0.02%)</title><rect x="7.4034%" y="837" width="0.0233%" height="15" fill="rgb(222,165,49)" fg:x="10808" fg:w="34"/><text x="7.6534%" y="847.50"></text></g><g><title>ciObjectFactory::get (41 samples, 0.03%)</title><rect x="7.4267%" y="837" width="0.0281%" height="15" fill="rgb(219,113,52)" fg:x="10842" fg:w="41"/><text x="7.6767%" y="847.50"></text></g><g><title>ciObjectFactory::get_metadata (22 samples, 0.02%)</title><rect x="7.4397%" y="821" width="0.0151%" height="15" fill="rgb(214,7,15)" fg:x="10861" fg:w="22"/><text x="7.6897%" y="831.50"></text></g><g><title>ciObjectFactory::create_new_metadata (17 samples, 0.01%)</title><rect x="7.4431%" y="805" width="0.0116%" height="15" fill="rgb(235,32,4)" fg:x="10866" fg:w="17"/><text x="7.6931%" y="815.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (17 samples, 0.01%)</title><rect x="7.4431%" y="789" width="0.0116%" height="15" fill="rgb(238,90,54)" fg:x="10866" fg:w="17"/><text x="7.6931%" y="799.50"></text></g><g><title>ciEnv::ciEnv (86 samples, 0.06%)</title><rect x="7.3972%" y="853" width="0.0589%" height="15" fill="rgb(213,208,19)" fg:x="10799" fg:w="86"/><text x="7.6472%" y="863.50"></text></g><g><title>SignatureStream::as_symbol (36 samples, 0.02%)</title><rect x="7.4740%" y="773" width="0.0247%" height="15" fill="rgb(233,156,4)" fg:x="10911" fg:w="36"/><text x="7.7240%" y="783.50"></text></g><g><title>SymbolTable::lookup (35 samples, 0.02%)</title><rect x="7.4746%" y="757" width="0.0240%" height="15" fill="rgb(207,194,5)" fg:x="10912" fg:w="35"/><text x="7.7246%" y="767.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (16 samples, 0.01%)</title><rect x="7.5048%" y="757" width="0.0110%" height="15" fill="rgb(206,111,30)" fg:x="10956" fg:w="16"/><text x="7.7548%" y="767.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (34 samples, 0.02%)</title><rect x="7.5014%" y="773" width="0.0233%" height="15" fill="rgb(243,70,54)" fg:x="10951" fg:w="34"/><text x="7.7514%" y="783.50"></text></g><g><title>ciMethod::ciMethod (102 samples, 0.07%)</title><rect x="7.4596%" y="805" width="0.0699%" height="15" fill="rgb(242,28,8)" fg:x="10890" fg:w="102"/><text x="7.7096%" y="815.50"></text></g><g><title>ciSignature::ciSignature (96 samples, 0.07%)</title><rect x="7.4637%" y="789" width="0.0658%" height="15" fill="rgb(219,106,18)" fg:x="10896" fg:w="96"/><text x="7.7137%" y="799.50"></text></g><g><title>ciEnv::get_method_from_handle (119 samples, 0.08%)</title><rect x="7.4561%" y="853" width="0.0815%" height="15" fill="rgb(244,222,10)" fg:x="10885" fg:w="119"/><text x="7.7061%" y="863.50"></text></g><g><title>ciObjectFactory::get_metadata (117 samples, 0.08%)</title><rect x="7.4575%" y="837" width="0.0801%" height="15" fill="rgb(236,179,52)" fg:x="10887" fg:w="117"/><text x="7.7075%" y="847.50"></text></g><g><title>ciObjectFactory::create_new_metadata (114 samples, 0.08%)</title><rect x="7.4596%" y="821" width="0.0781%" height="15" fill="rgb(213,23,39)" fg:x="10890" fg:w="114"/><text x="7.7096%" y="831.50"></text></g><g><title>ciEnv::~ciEnv (33 samples, 0.02%)</title><rect x="7.5377%" y="853" width="0.0226%" height="15" fill="rgb(238,48,10)" fg:x="11004" fg:w="33"/><text x="7.7877%" y="863.50"></text></g><g><title>ciObjectFactory::remove_symbols (29 samples, 0.02%)</title><rect x="7.5404%" y="837" width="0.0199%" height="15" fill="rgb(251,196,23)" fg:x="11008" fg:w="29"/><text x="7.7904%" y="847.50"></text></g><g><title>Symbol::decrement_refcount (19 samples, 0.01%)</title><rect x="7.5472%" y="821" width="0.0130%" height="15" fill="rgb(250,152,24)" fg:x="11018" fg:w="19"/><text x="7.7972%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (9,598 samples, 6.57%)</title><rect x="0.9884%" y="869" width="6.5746%" height="15" fill="rgb(209,150,17)" fg:x="1443" fg:w="9598"/><text x="1.2384%" y="879.50">CompileBr..</text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="7.5692%" y="805" width="0.0171%" height="15" fill="rgb(234,202,34)" fg:x="11050" fg:w="25"/><text x="7.8192%" y="815.50"></text></g><g><title>__do_sys_sysinfo (24 samples, 0.02%)</title><rect x="7.5699%" y="789" width="0.0164%" height="15" fill="rgb(253,148,53)" fg:x="11051" fg:w="24"/><text x="7.8199%" y="799.50"></text></g><g><title>do_sysinfo.isra.0 (22 samples, 0.02%)</title><rect x="7.5712%" y="773" width="0.0151%" height="15" fill="rgb(218,129,16)" fg:x="11053" fg:w="22"/><text x="7.8212%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="7.5692%" y="821" width="0.0178%" height="15" fill="rgb(216,85,19)" fg:x="11050" fg:w="26"/><text x="7.8192%" y="831.50"></text></g><g><title>__sysinfo (27 samples, 0.02%)</title><rect x="7.5692%" y="837" width="0.0185%" height="15" fill="rgb(235,228,7)" fg:x="11050" fg:w="27"/><text x="7.8192%" y="847.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (37 samples, 0.03%)</title><rect x="7.5630%" y="869" width="0.0253%" height="15" fill="rgb(245,175,0)" fg:x="11041" fg:w="37"/><text x="7.8130%" y="879.50"></text></g><g><title>os::available_memory (30 samples, 0.02%)</title><rect x="7.5678%" y="853" width="0.0205%" height="15" fill="rgb(208,168,36)" fg:x="11048" fg:w="30"/><text x="7.8178%" y="863.50"></text></g><g><title>CompileTask::select_for_compilation (19 samples, 0.01%)</title><rect x="7.5911%" y="853" width="0.0130%" height="15" fill="rgb(246,171,24)" fg:x="11082" fg:w="19"/><text x="7.8411%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.05%)</title><rect x="7.6205%" y="613" width="0.0527%" height="15" fill="rgb(215,142,24)" fg:x="11125" fg:w="77"/><text x="7.8705%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (76 samples, 0.05%)</title><rect x="7.6212%" y="597" width="0.0521%" height="15" fill="rgb(250,187,7)" fg:x="11126" fg:w="76"/><text x="7.8712%" y="607.50"></text></g><g><title>native_write_msr (76 samples, 0.05%)</title><rect x="7.6212%" y="581" width="0.0521%" height="15" fill="rgb(228,66,33)" fg:x="11126" fg:w="76"/><text x="7.8712%" y="591.50"></text></g><g><title>finish_task_switch (83 samples, 0.06%)</title><rect x="7.6178%" y="629" width="0.0569%" height="15" fill="rgb(234,215,21)" fg:x="11121" fg:w="83"/><text x="7.8678%" y="639.50"></text></g><g><title>futex_wait_queue_me (99 samples, 0.07%)</title><rect x="7.6110%" y="677" width="0.0678%" height="15" fill="rgb(222,191,20)" fg:x="11111" fg:w="99"/><text x="7.8610%" y="687.50"></text></g><g><title>schedule (96 samples, 0.07%)</title><rect x="7.6130%" y="661" width="0.0658%" height="15" fill="rgb(245,79,54)" fg:x="11114" fg:w="96"/><text x="7.8630%" y="671.50"></text></g><g><title>__schedule (96 samples, 0.07%)</title><rect x="7.6130%" y="645" width="0.0658%" height="15" fill="rgb(240,10,37)" fg:x="11114" fg:w="96"/><text x="7.8630%" y="655.50"></text></g><g><title>do_futex (110 samples, 0.08%)</title><rect x="7.6082%" y="709" width="0.0753%" height="15" fill="rgb(214,192,32)" fg:x="11107" fg:w="110"/><text x="7.8582%" y="719.50"></text></g><g><title>futex_wait (109 samples, 0.07%)</title><rect x="7.6089%" y="693" width="0.0747%" height="15" fill="rgb(209,36,54)" fg:x="11108" fg:w="109"/><text x="7.8589%" y="703.50"></text></g><g><title>do_syscall_64 (112 samples, 0.08%)</title><rect x="7.6082%" y="741" width="0.0767%" height="15" fill="rgb(220,10,11)" fg:x="11107" fg:w="112"/><text x="7.8582%" y="751.50"></text></g><g><title>__x64_sys_futex (112 samples, 0.08%)</title><rect x="7.6082%" y="725" width="0.0767%" height="15" fill="rgb(221,106,17)" fg:x="11107" fg:w="112"/><text x="7.8582%" y="735.50"></text></g><g><title>__pthread_cond_timedwait (116 samples, 0.08%)</title><rect x="7.6075%" y="805" width="0.0795%" height="15" fill="rgb(251,142,44)" fg:x="11106" fg:w="116"/><text x="7.8575%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (115 samples, 0.08%)</title><rect x="7.6082%" y="789" width="0.0788%" height="15" fill="rgb(238,13,15)" fg:x="11107" fg:w="115"/><text x="7.8582%" y="799.50"></text></g><g><title>futex_abstimed_wait_cancelable (115 samples, 0.08%)</title><rect x="7.6082%" y="773" width="0.0788%" height="15" fill="rgb(208,107,27)" fg:x="11107" fg:w="115"/><text x="7.8582%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.08%)</title><rect x="7.6082%" y="757" width="0.0788%" height="15" fill="rgb(205,136,37)" fg:x="11107" fg:w="115"/><text x="7.8582%" y="767.50"></text></g><g><title>Monitor::wait (124 samples, 0.08%)</title><rect x="7.6055%" y="853" width="0.0849%" height="15" fill="rgb(250,205,27)" fg:x="11103" fg:w="124"/><text x="7.8555%" y="863.50"></text></g><g><title>Monitor::IWait (122 samples, 0.08%)</title><rect x="7.6068%" y="837" width="0.0836%" height="15" fill="rgb(210,80,43)" fg:x="11105" fg:w="122"/><text x="7.8568%" y="847.50"></text></g><g><title>os::PlatformEvent::park (121 samples, 0.08%)</title><rect x="7.6075%" y="821" width="0.0829%" height="15" fill="rgb(247,160,36)" fg:x="11106" fg:w="121"/><text x="7.8575%" y="831.50"></text></g><g><title>TieredThresholdPolicy::select_task (59 samples, 0.04%)</title><rect x="7.6904%" y="853" width="0.0404%" height="15" fill="rgb(234,13,49)" fg:x="11227" fg:w="59"/><text x="7.9404%" y="863.50"></text></g><g><title>CompileQueue::get (213 samples, 0.15%)</title><rect x="7.5883%" y="869" width="0.1459%" height="15" fill="rgb(234,122,0)" fg:x="11078" fg:w="213"/><text x="7.8383%" y="879.50"></text></g><g><title>Thread::call_run (9,865 samples, 6.76%)</title><rect x="0.9830%" y="917" width="6.7575%" height="15" fill="rgb(207,146,38)" fg:x="1435" fg:w="9865"/><text x="1.2330%" y="927.50">Thread::c..</text></g><g><title>JavaThread::thread_main_inner (9,865 samples, 6.76%)</title><rect x="0.9830%" y="901" width="6.7575%" height="15" fill="rgb(207,177,25)" fg:x="1435" fg:w="9865"/><text x="1.2330%" y="911.50">JavaThrea..</text></g><g><title>CompileBroker::compiler_thread_loop (9,865 samples, 6.76%)</title><rect x="0.9830%" y="885" width="6.7575%" height="15" fill="rgb(211,178,42)" fg:x="1435" fg:w="9865"/><text x="1.2330%" y="895.50">CompileBr..</text></g><g><title>__GI___clone (9,894 samples, 6.78%)</title><rect x="0.9652%" y="965" width="6.7773%" height="15" fill="rgb(230,69,54)" fg:x="1409" fg:w="9894"/><text x="1.2152%" y="975.50">__GI___cl..</text></g><g><title>start_thread (9,869 samples, 6.76%)</title><rect x="0.9823%" y="949" width="6.7602%" height="15" fill="rgb(214,135,41)" fg:x="1434" fg:w="9869"/><text x="1.2323%" y="959.50">start_thr..</text></g><g><title>thread_native_entry (9,868 samples, 6.76%)</title><rect x="0.9830%" y="933" width="6.7595%" height="15" fill="rgb(237,67,25)" fg:x="1435" fg:w="9868"/><text x="1.2330%" y="943.50">thread_na..</text></g><g><title>C1_CompilerThre (11,313 samples, 7.75%)</title><rect x="0.0151%" y="981" width="7.7493%" height="15" fill="rgb(222,189,50)" fg:x="22" fg:w="11313"/><text x="0.2651%" y="991.50">C1_Compiler..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (22 samples, 0.02%)</title><rect x="7.8117%" y="965" width="0.0151%" height="15" fill="rgb(245,148,34)" fg:x="11404" fg:w="22"/><text x="8.0617%" y="975.50"></text></g><g><title>RegMask::is_UP (22 samples, 0.02%)</title><rect x="7.8117%" y="949" width="0.0151%" height="15" fill="rgb(222,29,6)" fg:x="11404" fg:w="22"/><text x="8.0617%" y="959.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (22 samples, 0.02%)</title><rect x="7.8288%" y="965" width="0.0151%" height="15" fill="rgb(221,189,43)" fg:x="11429" fg:w="22"/><text x="8.0788%" y="975.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (62 samples, 0.04%)</title><rect x="7.8740%" y="965" width="0.0425%" height="15" fill="rgb(207,36,27)" fg:x="11495" fg:w="62"/><text x="8.1240%" y="975.50"></text></g><g><title>ProjNode::pinned (62 samples, 0.04%)</title><rect x="7.8740%" y="949" width="0.0425%" height="15" fill="rgb(217,90,24)" fg:x="11495" fg:w="62"/><text x="8.1240%" y="959.50"></text></g><g><title>BoolNode::Opcode (17 samples, 0.01%)</title><rect x="7.9829%" y="949" width="0.0116%" height="15" fill="rgb(224,66,35)" fg:x="11654" fg:w="17"/><text x="8.2329%" y="959.50"></text></g><g><title>CProjNode::is_CFG (25 samples, 0.02%)</title><rect x="8.0014%" y="949" width="0.0171%" height="15" fill="rgb(221,13,50)" fg:x="11681" fg:w="25"/><text x="8.2514%" y="959.50"></text></g><g><title>IfFalseNode::Opcode (16 samples, 0.01%)</title><rect x="8.2076%" y="949" width="0.0110%" height="15" fill="rgb(236,68,49)" fg:x="11982" fg:w="16"/><text x="8.4576%" y="959.50"></text></g><g><title>IfTrueNode::Opcode (20 samples, 0.01%)</title><rect x="8.2336%" y="949" width="0.0137%" height="15" fill="rgb(229,146,28)" fg:x="12020" fg:w="20"/><text x="8.4836%" y="959.50"></text></g><g><title>IndexSetIterator::advance_and_next (34 samples, 0.02%)</title><rect x="8.2548%" y="949" width="0.0233%" height="15" fill="rgb(225,31,38)" fg:x="12051" fg:w="34"/><text x="8.5048%" y="959.50"></text></g><g><title>MachNode::oper_input_base (19 samples, 0.01%)</title><rect x="8.3877%" y="949" width="0.0130%" height="15" fill="rgb(250,208,3)" fg:x="12245" fg:w="19"/><text x="8.6377%" y="959.50"></text></g><g><title>MultiNode::is_CFG (52 samples, 0.04%)</title><rect x="8.4877%" y="949" width="0.0356%" height="15" fill="rgb(246,54,23)" fg:x="12391" fg:w="52"/><text x="8.7377%" y="959.50"></text></g><g><title>Node::is_CFG (47 samples, 0.03%)</title><rect x="8.5528%" y="949" width="0.0322%" height="15" fill="rgb(243,76,11)" fg:x="12486" fg:w="47"/><text x="8.8028%" y="959.50"></text></g><g><title>Node::pinned (22 samples, 0.02%)</title><rect x="8.6021%" y="949" width="0.0151%" height="15" fill="rgb(245,21,50)" fg:x="12558" fg:w="22"/><text x="8.8521%" y="959.50"></text></g><g><title>PhiNode::Opcode (27 samples, 0.02%)</title><rect x="8.7590%" y="949" width="0.0185%" height="15" fill="rgb(228,9,43)" fg:x="12787" fg:w="27"/><text x="9.0090%" y="959.50"></text></g><g><title>ProjNode::Opcode (15 samples, 0.01%)</title><rect x="8.7926%" y="949" width="0.0103%" height="15" fill="rgb(208,100,47)" fg:x="12836" fg:w="15"/><text x="9.0426%" y="959.50"></text></g><g><title>ProjNode::pinned (19 samples, 0.01%)</title><rect x="8.8131%" y="949" width="0.0130%" height="15" fill="rgb(232,26,8)" fg:x="12866" fg:w="19"/><text x="9.0631%" y="959.50"></text></g><g><title>RegionNode::is_CFG (32 samples, 0.02%)</title><rect x="8.8816%" y="949" width="0.0219%" height="15" fill="rgb(216,166,38)" fg:x="12966" fg:w="32"/><text x="9.1316%" y="959.50"></text></g><g><title>TypeNode::bottom_type (23 samples, 0.02%)</title><rect x="9.0453%" y="949" width="0.0158%" height="15" fill="rgb(251,202,51)" fg:x="13205" fg:w="23"/><text x="9.2953%" y="959.50"></text></g><g><title>_dl_update_slotinfo (153 samples, 0.10%)</title><rect x="9.1179%" y="949" width="0.1048%" height="15" fill="rgb(254,216,34)" fg:x="13311" fg:w="153"/><text x="9.3679%" y="959.50"></text></g><g><title>find_lowest_bit (28 samples, 0.02%)</title><rect x="9.3241%" y="949" width="0.0192%" height="15" fill="rgb(251,32,27)" fg:x="13612" fg:w="28"/><text x="9.5741%" y="959.50"></text></g><g><title>jmpDirNode::is_block_proj (36 samples, 0.02%)</title><rect x="9.3652%" y="949" width="0.0247%" height="15" fill="rgb(208,127,28)" fg:x="13672" fg:w="36"/><text x="9.6152%" y="959.50"></text></g><g><title>update_get_addr (33 samples, 0.02%)</title><rect x="9.4878%" y="949" width="0.0226%" height="15" fill="rgb(224,137,22)" fg:x="13851" fg:w="33"/><text x="9.7378%" y="959.50"></text></g><g><title>[anon] (2,310 samples, 1.58%)</title><rect x="7.9315%" y="965" width="1.5823%" height="15" fill="rgb(254,70,32)" fg:x="11579" fg:w="2310"/><text x="8.1815%" y="975.50"></text></g><g><title>[perf-627991.map] (19 samples, 0.01%)</title><rect x="9.5159%" y="965" width="0.0130%" height="15" fill="rgb(229,75,37)" fg:x="13892" fg:w="19"/><text x="9.7659%" y="975.50"></text></g><g><title>Compile::call_generator (18 samples, 0.01%)</title><rect x="9.5406%" y="805" width="0.0123%" height="15" fill="rgb(252,64,23)" fg:x="13928" fg:w="18"/><text x="9.7906%" y="815.50"></text></g><g><title>InlineTree::ok_to_inline (18 samples, 0.01%)</title><rect x="9.5406%" y="789" width="0.0123%" height="15" fill="rgb(232,162,48)" fg:x="13928" fg:w="18"/><text x="9.7906%" y="799.50"></text></g><g><title>ciEnv::get_field_by_index (16 samples, 0.01%)</title><rect x="9.5673%" y="661" width="0.0110%" height="15" fill="rgb(246,160,12)" fg:x="13967" fg:w="16"/><text x="9.8173%" y="671.50"></text></g><g><title>ciField::ciField (16 samples, 0.01%)</title><rect x="9.5673%" y="645" width="0.0110%" height="15" fill="rgb(247,166,0)" fg:x="13967" fg:w="16"/><text x="9.8173%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (19 samples, 0.01%)</title><rect x="9.5666%" y="693" width="0.0130%" height="15" fill="rgb(249,219,21)" fg:x="13966" fg:w="19"/><text x="9.8166%" y="703.50"></text></g><g><title>ciBytecodeStream::get_field (18 samples, 0.01%)</title><rect x="9.5673%" y="677" width="0.0123%" height="15" fill="rgb(205,209,3)" fg:x="13967" fg:w="18"/><text x="9.8173%" y="687.50"></text></g><g><title>ciMethod::ciMethod (17 samples, 0.01%)</title><rect x="9.5919%" y="613" width="0.0116%" height="15" fill="rgb(243,44,1)" fg:x="14003" fg:w="17"/><text x="9.8419%" y="623.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (36 samples, 0.02%)</title><rect x="9.5796%" y="693" width="0.0247%" height="15" fill="rgb(206,159,16)" fg:x="13985" fg:w="36"/><text x="9.8296%" y="703.50"></text></g><g><title>ciBytecodeStream::get_method (35 samples, 0.02%)</title><rect x="9.5803%" y="677" width="0.0240%" height="15" fill="rgb(244,77,30)" fg:x="13986" fg:w="35"/><text x="9.8303%" y="687.50"></text></g><g><title>ciEnv::get_method_by_index_impl (32 samples, 0.02%)</title><rect x="9.5824%" y="661" width="0.0219%" height="15" fill="rgb(218,69,12)" fg:x="13989" fg:w="32"/><text x="9.8324%" y="671.50"></text></g><g><title>ciObjectFactory::get_metadata (20 samples, 0.01%)</title><rect x="9.5906%" y="645" width="0.0137%" height="15" fill="rgb(212,87,7)" fg:x="14001" fg:w="20"/><text x="9.8406%" y="655.50"></text></g><g><title>ciObjectFactory::create_new_metadata (18 samples, 0.01%)</title><rect x="9.5919%" y="629" width="0.0123%" height="15" fill="rgb(245,114,25)" fg:x="14003" fg:w="18"/><text x="9.8419%" y="639.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (67 samples, 0.05%)</title><rect x="9.5632%" y="709" width="0.0459%" height="15" fill="rgb(210,61,42)" fg:x="13961" fg:w="67"/><text x="9.8132%" y="719.50"></text></g><g><title>ciTypeFlow::df_flow_types (79 samples, 0.05%)</title><rect x="9.5570%" y="741" width="0.0541%" height="15" fill="rgb(211,52,33)" fg:x="13952" fg:w="79"/><text x="9.8070%" y="751.50"></text></g><g><title>ciTypeFlow::flow_block (79 samples, 0.05%)</title><rect x="9.5570%" y="725" width="0.0541%" height="15" fill="rgb(234,58,33)" fg:x="13952" fg:w="79"/><text x="9.8070%" y="735.50"></text></g><g><title>Compile::call_generator (104 samples, 0.07%)</title><rect x="9.5406%" y="821" width="0.0712%" height="15" fill="rgb(220,115,36)" fg:x="13928" fg:w="104"/><text x="9.7906%" y="831.50"></text></g><g><title>InlineTree::ok_to_inline (86 samples, 0.06%)</title><rect x="9.5529%" y="805" width="0.0589%" height="15" fill="rgb(243,153,54)" fg:x="13946" fg:w="86"/><text x="9.8029%" y="815.50"></text></g><g><title>ciMethod::get_flow_analysis (81 samples, 0.06%)</title><rect x="9.5563%" y="789" width="0.0555%" height="15" fill="rgb(251,47,18)" fg:x="13951" fg:w="81"/><text x="9.8063%" y="799.50"></text></g><g><title>ciTypeFlow::do_flow (81 samples, 0.06%)</title><rect x="9.5563%" y="773" width="0.0555%" height="15" fill="rgb(242,102,42)" fg:x="13951" fg:w="81"/><text x="9.8063%" y="783.50"></text></g><g><title>ciTypeFlow::flow_types (81 samples, 0.06%)</title><rect x="9.5563%" y="757" width="0.0555%" height="15" fill="rgb(234,31,38)" fg:x="13951" fg:w="81"/><text x="9.8063%" y="767.50"></text></g><g><title>InlineTree::try_to_inline (16 samples, 0.01%)</title><rect x="9.6536%" y="693" width="0.0110%" height="15" fill="rgb(221,117,51)" fg:x="14093" fg:w="16"/><text x="9.9036%" y="703.50"></text></g><g><title>ciEnv::get_method_by_index_impl (17 samples, 0.01%)</title><rect x="9.6892%" y="565" width="0.0116%" height="15" fill="rgb(212,20,18)" fg:x="14145" fg:w="17"/><text x="9.9392%" y="575.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (22 samples, 0.02%)</title><rect x="9.6865%" y="597" width="0.0151%" height="15" fill="rgb(245,133,36)" fg:x="14141" fg:w="22"/><text x="9.9365%" y="607.50"></text></g><g><title>ciBytecodeStream::get_method (21 samples, 0.01%)</title><rect x="9.6872%" y="581" width="0.0144%" height="15" fill="rgb(212,6,19)" fg:x="14142" fg:w="21"/><text x="9.9372%" y="591.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (41 samples, 0.03%)</title><rect x="9.6762%" y="613" width="0.0281%" height="15" fill="rgb(218,1,36)" fg:x="14126" fg:w="41"/><text x="9.9262%" y="623.50"></text></g><g><title>ciTypeFlow::flow_block (46 samples, 0.03%)</title><rect x="9.6735%" y="629" width="0.0315%" height="15" fill="rgb(246,84,54)" fg:x="14122" fg:w="46"/><text x="9.9235%" y="639.50"></text></g><g><title>ciTypeFlow::df_flow_types (54 samples, 0.04%)</title><rect x="9.6687%" y="645" width="0.0370%" height="15" fill="rgb(242,110,6)" fg:x="14115" fg:w="54"/><text x="9.9187%" y="655.50"></text></g><g><title>ciTypeFlow::do_flow (58 samples, 0.04%)</title><rect x="9.6680%" y="677" width="0.0397%" height="15" fill="rgb(214,47,5)" fg:x="14114" fg:w="58"/><text x="9.9180%" y="687.50"></text></g><g><title>ciTypeFlow::flow_types (57 samples, 0.04%)</title><rect x="9.6687%" y="661" width="0.0390%" height="15" fill="rgb(218,159,25)" fg:x="14115" fg:w="57"/><text x="9.9187%" y="671.50"></text></g><g><title>InlineTree::ok_to_inline (82 samples, 0.06%)</title><rect x="9.6522%" y="709" width="0.0562%" height="15" fill="rgb(215,211,28)" fg:x="14091" fg:w="82"/><text x="9.9022%" y="719.50"></text></g><g><title>ciMethod::get_flow_analysis (63 samples, 0.04%)</title><rect x="9.6652%" y="693" width="0.0432%" height="15" fill="rgb(238,59,32)" fg:x="14110" fg:w="63"/><text x="9.9152%" y="703.50"></text></g><g><title>Compile::call_generator (97 samples, 0.07%)</title><rect x="9.6440%" y="725" width="0.0664%" height="15" fill="rgb(226,82,3)" fg:x="14079" fg:w="97"/><text x="9.8940%" y="735.50"></text></g><g><title>LibraryCallKit::try_to_inline (16 samples, 0.01%)</title><rect x="9.7283%" y="709" width="0.0110%" height="15" fill="rgb(240,164,32)" fg:x="14202" fg:w="16"/><text x="9.9783%" y="719.50"></text></g><g><title>LibraryIntrinsic::generate (19 samples, 0.01%)</title><rect x="9.7269%" y="725" width="0.0130%" height="15" fill="rgb(232,46,7)" fg:x="14200" fg:w="19"/><text x="9.9769%" y="735.50"></text></g><g><title>GraphKit::null_check_common (16 samples, 0.01%)</title><rect x="9.7557%" y="677" width="0.0110%" height="15" fill="rgb(229,129,53)" fg:x="14242" fg:w="16"/><text x="10.0057%" y="687.50"></text></g><g><title>Parse::create_entry_map (24 samples, 0.02%)</title><rect x="9.7516%" y="693" width="0.0164%" height="15" fill="rgb(234,188,29)" fg:x="14236" fg:w="24"/><text x="10.0016%" y="703.50"></text></g><g><title>ciTypeFlow::df_flow_types (20 samples, 0.01%)</title><rect x="9.8153%" y="549" width="0.0137%" height="15" fill="rgb(246,141,4)" fg:x="14329" fg:w="20"/><text x="10.0653%" y="559.50"></text></g><g><title>ciTypeFlow::flow_block (16 samples, 0.01%)</title><rect x="9.8180%" y="533" width="0.0110%" height="15" fill="rgb(229,23,39)" fg:x="14333" fg:w="16"/><text x="10.0680%" y="543.50"></text></g><g><title>InlineTree::ok_to_inline (36 samples, 0.02%)</title><rect x="9.8064%" y="613" width="0.0247%" height="15" fill="rgb(206,12,3)" fg:x="14316" fg:w="36"/><text x="10.0564%" y="623.50"></text></g><g><title>ciMethod::get_flow_analysis (27 samples, 0.02%)</title><rect x="9.8125%" y="597" width="0.0185%" height="15" fill="rgb(252,226,20)" fg:x="14325" fg:w="27"/><text x="10.0625%" y="607.50"></text></g><g><title>ciTypeFlow::do_flow (24 samples, 0.02%)</title><rect x="9.8146%" y="581" width="0.0164%" height="15" fill="rgb(216,123,35)" fg:x="14328" fg:w="24"/><text x="10.0646%" y="591.50"></text></g><g><title>ciTypeFlow::flow_types (24 samples, 0.02%)</title><rect x="9.8146%" y="565" width="0.0164%" height="15" fill="rgb(212,68,40)" fg:x="14328" fg:w="24"/><text x="10.0646%" y="575.50"></text></g><g><title>Compile::call_generator (47 samples, 0.03%)</title><rect x="9.8016%" y="629" width="0.0322%" height="15" fill="rgb(254,125,32)" fg:x="14309" fg:w="47"/><text x="10.0516%" y="639.50"></text></g><g><title>Parse::do_one_block (40 samples, 0.03%)</title><rect x="9.9331%" y="485" width="0.0274%" height="15" fill="rgb(253,97,22)" fg:x="14501" fg:w="40"/><text x="10.1831%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.03%)</title><rect x="9.9344%" y="469" width="0.0260%" height="15" fill="rgb(241,101,14)" fg:x="14503" fg:w="38"/><text x="10.1844%" y="479.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.03%)</title><rect x="9.9324%" y="501" width="0.0322%" height="15" fill="rgb(238,103,29)" fg:x="14500" fg:w="47"/><text x="10.1824%" y="511.50"></text></g><g><title>ParseGenerator::generate (72 samples, 0.05%)</title><rect x="9.9235%" y="533" width="0.0493%" height="15" fill="rgb(233,195,47)" fg:x="14487" fg:w="72"/><text x="10.1735%" y="543.50"></text></g><g><title>Parse::Parse (72 samples, 0.05%)</title><rect x="9.9235%" y="517" width="0.0493%" height="15" fill="rgb(246,218,30)" fg:x="14487" fg:w="72"/><text x="10.1735%" y="527.50"></text></g><g><title>Parse::do_call (127 samples, 0.09%)</title><rect x="9.8981%" y="549" width="0.0870%" height="15" fill="rgb(219,145,47)" fg:x="14450" fg:w="127"/><text x="10.1481%" y="559.50"></text></g><g><title>GraphKit::access_store_at (18 samples, 0.01%)</title><rect x="9.9988%" y="517" width="0.0123%" height="15" fill="rgb(243,12,26)" fg:x="14597" fg:w="18"/><text x="10.2488%" y="527.50"></text></g><g><title>BarrierSetC2::store_at (18 samples, 0.01%)</title><rect x="9.9988%" y="501" width="0.0123%" height="15" fill="rgb(214,87,16)" fg:x="14597" fg:w="18"/><text x="10.2488%" y="511.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (15 samples, 0.01%)</title><rect x="10.0009%" y="485" width="0.0103%" height="15" fill="rgb(208,99,42)" fg:x="14600" fg:w="15"/><text x="10.2509%" y="495.50"></text></g><g><title>Parse::do_put_xxx (21 samples, 0.01%)</title><rect x="9.9982%" y="533" width="0.0144%" height="15" fill="rgb(253,99,2)" fg:x="14596" fg:w="21"/><text x="10.2482%" y="543.50"></text></g><g><title>Parse::do_field_access (49 samples, 0.03%)</title><rect x="9.9872%" y="549" width="0.0336%" height="15" fill="rgb(220,168,23)" fg:x="14580" fg:w="49"/><text x="10.2372%" y="559.50"></text></g><g><title>Parse::do_if (16 samples, 0.01%)</title><rect x="10.0208%" y="549" width="0.0110%" height="15" fill="rgb(242,38,24)" fg:x="14629" fg:w="16"/><text x="10.2708%" y="559.50"></text></g><g><title>Parse::do_one_block (237 samples, 0.16%)</title><rect x="9.8803%" y="581" width="0.1623%" height="15" fill="rgb(225,182,9)" fg:x="14424" fg:w="237"/><text x="10.1303%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (230 samples, 0.16%)</title><rect x="9.8851%" y="565" width="0.1575%" height="15" fill="rgb(243,178,37)" fg:x="14431" fg:w="230"/><text x="10.1351%" y="575.50"></text></g><g><title>Parse::do_all_blocks (247 samples, 0.17%)</title><rect x="9.8776%" y="597" width="0.1692%" height="15" fill="rgb(232,139,19)" fg:x="14420" fg:w="247"/><text x="10.1276%" y="607.50"></text></g><g><title>ParseGenerator::generate (283 samples, 0.19%)</title><rect x="9.8591%" y="629" width="0.1939%" height="15" fill="rgb(225,201,24)" fg:x="14393" fg:w="283"/><text x="10.1091%" y="639.50"></text></g><g><title>Parse::Parse (283 samples, 0.19%)</title><rect x="9.8591%" y="613" width="0.1939%" height="15" fill="rgb(221,47,46)" fg:x="14393" fg:w="283"/><text x="10.1091%" y="623.50"></text></g><g><title>Parse::do_all_blocks (15 samples, 0.01%)</title><rect x="10.0605%" y="581" width="0.0103%" height="15" fill="rgb(249,23,13)" fg:x="14687" fg:w="15"/><text x="10.3105%" y="591.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="10.0577%" y="613" width="0.0137%" height="15" fill="rgb(219,9,5)" fg:x="14683" fg:w="20"/><text x="10.3077%" y="623.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="10.0577%" y="597" width="0.0137%" height="15" fill="rgb(254,171,16)" fg:x="14683" fg:w="20"/><text x="10.3077%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (36 samples, 0.02%)</title><rect x="10.0529%" y="629" width="0.0247%" height="15" fill="rgb(230,171,20)" fg:x="14676" fg:w="36"/><text x="10.3029%" y="639.50"></text></g><g><title>Parse::do_call (422 samples, 0.29%)</title><rect x="9.8016%" y="645" width="0.2891%" height="15" fill="rgb(210,71,41)" fg:x="14309" fg:w="422"/><text x="10.0516%" y="655.50"></text></g><g><title>LoadNode::make (16 samples, 0.01%)</title><rect x="10.0961%" y="533" width="0.0110%" height="15" fill="rgb(206,173,20)" fg:x="14739" fg:w="16"/><text x="10.3461%" y="543.50"></text></g><g><title>GraphKit::access_load_at (18 samples, 0.01%)</title><rect x="10.0961%" y="613" width="0.0123%" height="15" fill="rgb(233,88,34)" fg:x="14739" fg:w="18"/><text x="10.3461%" y="623.50"></text></g><g><title>BarrierSetC2::load_at (18 samples, 0.01%)</title><rect x="10.0961%" y="597" width="0.0123%" height="15" fill="rgb(223,209,46)" fg:x="14739" fg:w="18"/><text x="10.3461%" y="607.50"></text></g><g><title>G1BarrierSetC2::load_at_resolved (18 samples, 0.01%)</title><rect x="10.0961%" y="581" width="0.0123%" height="15" fill="rgb(250,43,18)" fg:x="14739" fg:w="18"/><text x="10.3461%" y="591.50"></text></g><g><title>BarrierSetC2::load_at_resolved (18 samples, 0.01%)</title><rect x="10.0961%" y="565" width="0.0123%" height="15" fill="rgb(208,13,10)" fg:x="14739" fg:w="18"/><text x="10.3461%" y="575.50"></text></g><g><title>GraphKit::make_load (18 samples, 0.01%)</title><rect x="10.0961%" y="549" width="0.0123%" height="15" fill="rgb(212,200,36)" fg:x="14739" fg:w="18"/><text x="10.3461%" y="559.50"></text></g><g><title>Parse::do_get_xxx (27 samples, 0.02%)</title><rect x="10.0947%" y="629" width="0.0185%" height="15" fill="rgb(225,90,30)" fg:x="14737" fg:w="27"/><text x="10.3447%" y="639.50"></text></g><g><title>G1BarrierSetC2::post_barrier (18 samples, 0.01%)</title><rect x="10.1187%" y="565" width="0.0123%" height="15" fill="rgb(236,182,39)" fg:x="14772" fg:w="18"/><text x="10.3687%" y="575.50"></text></g><g><title>Parse::do_put_xxx (31 samples, 0.02%)</title><rect x="10.1132%" y="629" width="0.0212%" height="15" fill="rgb(212,144,35)" fg:x="14764" fg:w="31"/><text x="10.3632%" y="639.50"></text></g><g><title>GraphKit::access_store_at (31 samples, 0.02%)</title><rect x="10.1132%" y="613" width="0.0212%" height="15" fill="rgb(228,63,44)" fg:x="14764" fg:w="31"/><text x="10.3632%" y="623.50"></text></g><g><title>BarrierSetC2::store_at (31 samples, 0.02%)</title><rect x="10.1132%" y="597" width="0.0212%" height="15" fill="rgb(228,109,6)" fg:x="14764" fg:w="31"/><text x="10.3632%" y="607.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (28 samples, 0.02%)</title><rect x="10.1153%" y="581" width="0.0192%" height="15" fill="rgb(238,117,24)" fg:x="14767" fg:w="28"/><text x="10.3653%" y="591.50"></text></g><g><title>Parse::do_field_access (73 samples, 0.05%)</title><rect x="10.0920%" y="645" width="0.0500%" height="15" fill="rgb(242,26,26)" fg:x="14733" fg:w="73"/><text x="10.3420%" y="655.50"></text></g><g><title>Parse::do_if (26 samples, 0.02%)</title><rect x="10.1420%" y="645" width="0.0178%" height="15" fill="rgb(221,92,48)" fg:x="14806" fg:w="26"/><text x="10.3920%" y="655.50"></text></g><g><title>Parse::do_one_block (612 samples, 0.42%)</title><rect x="9.7694%" y="677" width="0.4192%" height="15" fill="rgb(209,209,32)" fg:x="14262" fg:w="612"/><text x="10.0194%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (606 samples, 0.42%)</title><rect x="9.7735%" y="661" width="0.4151%" height="15" fill="rgb(221,70,22)" fg:x="14268" fg:w="606"/><text x="10.0235%" y="671.50"></text></g><g><title>Parse::do_all_blocks (620 samples, 0.42%)</title><rect x="9.7680%" y="693" width="0.4247%" height="15" fill="rgb(248,145,5)" fg:x="14260" fg:w="620"/><text x="10.0180%" y="703.50"></text></g><g><title>ParseGenerator::generate (679 samples, 0.47%)</title><rect x="9.7399%" y="725" width="0.4651%" height="15" fill="rgb(226,116,26)" fg:x="14219" fg:w="679"/><text x="9.9899%" y="735.50"></text></g><g><title>Parse::Parse (678 samples, 0.46%)</title><rect x="9.7406%" y="709" width="0.4644%" height="15" fill="rgb(244,5,17)" fg:x="14220" fg:w="678"/><text x="9.9906%" y="719.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="10.2221%" y="581" width="0.0123%" height="15" fill="rgb(252,159,33)" fg:x="14923" fg:w="18"/><text x="10.4721%" y="591.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="10.2221%" y="565" width="0.0123%" height="15" fill="rgb(206,71,0)" fg:x="14923" fg:w="18"/><text x="10.4721%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="10.2221%" y="549" width="0.0123%" height="15" fill="rgb(233,118,54)" fg:x="14923" fg:w="18"/><text x="10.4721%" y="559.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="10.2201%" y="613" width="0.0158%" height="15" fill="rgb(234,83,48)" fg:x="14920" fg:w="23"/><text x="10.4701%" y="623.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="10.2201%" y="597" width="0.0158%" height="15" fill="rgb(228,3,54)" fg:x="14920" fg:w="23"/><text x="10.4701%" y="607.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="10.2160%" y="629" width="0.0233%" height="15" fill="rgb(226,155,13)" fg:x="14914" fg:w="34"/><text x="10.4660%" y="639.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.03%)</title><rect x="10.2119%" y="677" width="0.0322%" height="15" fill="rgb(241,28,37)" fg:x="14908" fg:w="47"/><text x="10.4619%" y="687.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.03%)</title><rect x="10.2126%" y="661" width="0.0315%" height="15" fill="rgb(233,93,10)" fg:x="14909" fg:w="46"/><text x="10.4626%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.03%)</title><rect x="10.2139%" y="645" width="0.0301%" height="15" fill="rgb(225,113,19)" fg:x="14911" fg:w="44"/><text x="10.4639%" y="655.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.04%)</title><rect x="10.2105%" y="709" width="0.0363%" height="15" fill="rgb(241,2,18)" fg:x="14906" fg:w="53"/><text x="10.4605%" y="719.50"></text></g><g><title>Parse::Parse (53 samples, 0.04%)</title><rect x="10.2105%" y="693" width="0.0363%" height="15" fill="rgb(228,207,21)" fg:x="14906" fg:w="53"/><text x="10.4605%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (74 samples, 0.05%)</title><rect x="10.2050%" y="725" width="0.0507%" height="15" fill="rgb(213,211,35)" fg:x="14898" fg:w="74"/><text x="10.4550%" y="735.50"></text></g><g><title>Parse::do_call (914 samples, 0.63%)</title><rect x="9.6440%" y="741" width="0.6261%" height="15" fill="rgb(209,83,10)" fg:x="14079" fg:w="914"/><text x="9.8940%" y="751.50"></text></g><g><title>G1BarrierSetC2::load_at_resolved (17 samples, 0.01%)</title><rect x="10.2872%" y="677" width="0.0116%" height="15" fill="rgb(209,164,1)" fg:x="15018" fg:w="17"/><text x="10.5372%" y="687.50"></text></g><g><title>BarrierSetC2::load_at_resolved (17 samples, 0.01%)</title><rect x="10.2872%" y="661" width="0.0116%" height="15" fill="rgb(213,184,43)" fg:x="15018" fg:w="17"/><text x="10.5372%" y="671.50"></text></g><g><title>GraphKit::make_load (17 samples, 0.01%)</title><rect x="10.2872%" y="645" width="0.0116%" height="15" fill="rgb(231,61,34)" fg:x="15018" fg:w="17"/><text x="10.5372%" y="655.50"></text></g><g><title>GraphKit::access_load_at (19 samples, 0.01%)</title><rect x="10.2872%" y="709" width="0.0130%" height="15" fill="rgb(235,75,3)" fg:x="15018" fg:w="19"/><text x="10.5372%" y="719.50"></text></g><g><title>BarrierSetC2::load_at (19 samples, 0.01%)</title><rect x="10.2872%" y="693" width="0.0130%" height="15" fill="rgb(220,106,47)" fg:x="15018" fg:w="19"/><text x="10.5372%" y="703.50"></text></g><g><title>Parse::do_get_xxx (38 samples, 0.03%)</title><rect x="10.2783%" y="725" width="0.0260%" height="15" fill="rgb(210,196,33)" fg:x="15005" fg:w="38"/><text x="10.5283%" y="735.50"></text></g><g><title>Parse::do_put_xxx (34 samples, 0.02%)</title><rect x="10.3043%" y="725" width="0.0233%" height="15" fill="rgb(229,154,42)" fg:x="15043" fg:w="34"/><text x="10.5543%" y="735.50"></text></g><g><title>GraphKit::access_store_at (33 samples, 0.02%)</title><rect x="10.3050%" y="709" width="0.0226%" height="15" fill="rgb(228,114,26)" fg:x="15044" fg:w="33"/><text x="10.5550%" y="719.50"></text></g><g><title>BarrierSetC2::store_at (33 samples, 0.02%)</title><rect x="10.3050%" y="693" width="0.0226%" height="15" fill="rgb(208,144,1)" fg:x="15044" fg:w="33"/><text x="10.5550%" y="703.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (29 samples, 0.02%)</title><rect x="10.3078%" y="677" width="0.0199%" height="15" fill="rgb(239,112,37)" fg:x="15048" fg:w="29"/><text x="10.5578%" y="687.50"></text></g><g><title>Parse::do_field_access (77 samples, 0.05%)</title><rect x="10.2763%" y="741" width="0.0527%" height="15" fill="rgb(210,96,50)" fg:x="15002" fg:w="77"/><text x="10.5263%" y="751.50"></text></g><g><title>Parse::do_one_block (1,055 samples, 0.72%)</title><rect x="9.6207%" y="773" width="0.7227%" height="15" fill="rgb(222,178,2)" fg:x="14045" fg:w="1055"/><text x="9.8707%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (1,052 samples, 0.72%)</title><rect x="9.6228%" y="757" width="0.7206%" height="15" fill="rgb(226,74,18)" fg:x="14048" fg:w="1052"/><text x="9.8728%" y="767.50"></text></g><g><title>Parse::do_all_blocks (1,057 samples, 0.72%)</title><rect x="9.6200%" y="789" width="0.7240%" height="15" fill="rgb(225,67,54)" fg:x="14044" fg:w="1057"/><text x="9.8700%" y="799.50"></text></g><g><title>ParseGenerator::generate (1,071 samples, 0.73%)</title><rect x="9.6125%" y="821" width="0.7336%" height="15" fill="rgb(251,92,32)" fg:x="14033" fg:w="1071"/><text x="9.8625%" y="831.50"></text></g><g><title>Parse::Parse (1,071 samples, 0.73%)</title><rect x="9.6125%" y="805" width="0.7336%" height="15" fill="rgb(228,149,22)" fg:x="14033" fg:w="1071"/><text x="9.8625%" y="815.50"></text></g><g><title>Compile::call_generator (18 samples, 0.01%)</title><rect x="10.3509%" y="709" width="0.0123%" height="15" fill="rgb(243,54,13)" fg:x="15111" fg:w="18"/><text x="10.6009%" y="719.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="10.3920%" y="565" width="0.0192%" height="15" fill="rgb(243,180,28)" fg:x="15171" fg:w="28"/><text x="10.6420%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="10.3934%" y="549" width="0.0178%" height="15" fill="rgb(208,167,24)" fg:x="15173" fg:w="26"/><text x="10.6434%" y="559.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.02%)</title><rect x="10.3913%" y="613" width="0.0205%" height="15" fill="rgb(245,73,45)" fg:x="15170" fg:w="30"/><text x="10.6413%" y="623.50"></text></g><g><title>Parse::Parse (30 samples, 0.02%)</title><rect x="10.3913%" y="597" width="0.0205%" height="15" fill="rgb(237,203,48)" fg:x="15170" fg:w="30"/><text x="10.6413%" y="607.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.02%)</title><rect x="10.3920%" y="581" width="0.0199%" height="15" fill="rgb(211,197,16)" fg:x="15171" fg:w="29"/><text x="10.6420%" y="591.50"></text></g><g><title>Parse::do_call (49 samples, 0.03%)</title><rect x="10.3817%" y="629" width="0.0336%" height="15" fill="rgb(243,99,51)" fg:x="15156" fg:w="49"/><text x="10.6317%" y="639.50"></text></g><g><title>Parse::do_field_access (15 samples, 0.01%)</title><rect x="10.4153%" y="629" width="0.0103%" height="15" fill="rgb(215,123,29)" fg:x="15205" fg:w="15"/><text x="10.6653%" y="639.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.06%)</title><rect x="10.3749%" y="661" width="0.0562%" height="15" fill="rgb(239,186,37)" fg:x="15146" fg:w="82"/><text x="10.6249%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (81 samples, 0.06%)</title><rect x="10.3756%" y="645" width="0.0555%" height="15" fill="rgb(252,136,39)" fg:x="15147" fg:w="81"/><text x="10.6256%" y="655.50"></text></g><g><title>Parse::do_all_blocks (84 samples, 0.06%)</title><rect x="10.3749%" y="677" width="0.0575%" height="15" fill="rgb(223,213,32)" fg:x="15146" fg:w="84"/><text x="10.6249%" y="687.50"></text></g><g><title>ParseGenerator::generate (95 samples, 0.07%)</title><rect x="10.3708%" y="709" width="0.0651%" height="15" fill="rgb(233,115,5)" fg:x="15140" fg:w="95"/><text x="10.6208%" y="719.50"></text></g><g><title>Parse::Parse (95 samples, 0.07%)</title><rect x="10.3708%" y="693" width="0.0651%" height="15" fill="rgb(207,226,44)" fg:x="15140" fg:w="95"/><text x="10.6208%" y="703.50"></text></g><g><title>Parse::do_call (15 samples, 0.01%)</title><rect x="10.4365%" y="613" width="0.0103%" height="15" fill="rgb(208,126,0)" fg:x="15236" fg:w="15"/><text x="10.6865%" y="623.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="10.4359%" y="677" width="0.0130%" height="15" fill="rgb(244,66,21)" fg:x="15235" fg:w="19"/><text x="10.6859%" y="687.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="10.4365%" y="661" width="0.0123%" height="15" fill="rgb(222,97,12)" fg:x="15236" fg:w="18"/><text x="10.6865%" y="671.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="10.4365%" y="645" width="0.0123%" height="15" fill="rgb(219,213,19)" fg:x="15236" fg:w="18"/><text x="10.6865%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="10.4365%" y="629" width="0.0123%" height="15" fill="rgb(252,169,30)" fg:x="15236" fg:w="18"/><text x="10.6865%" y="639.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="10.4359%" y="693" width="0.0137%" height="15" fill="rgb(206,32,51)" fg:x="15235" fg:w="20"/><text x="10.6859%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (23 samples, 0.02%)</title><rect x="10.4359%" y="709" width="0.0158%" height="15" fill="rgb(250,172,42)" fg:x="15235" fg:w="23"/><text x="10.6859%" y="719.50"></text></g><g><title>Parse::do_call (152 samples, 0.10%)</title><rect x="10.3509%" y="725" width="0.1041%" height="15" fill="rgb(209,34,43)" fg:x="15111" fg:w="152"/><text x="10.6009%" y="735.50"></text></g><g><title>Parse::do_field_access (16 samples, 0.01%)</title><rect x="10.4578%" y="725" width="0.0110%" height="15" fill="rgb(223,11,35)" fg:x="15267" fg:w="16"/><text x="10.7078%" y="735.50"></text></g><g><title>Parse::do_one_block (193 samples, 0.13%)</title><rect x="10.3482%" y="757" width="0.1322%" height="15" fill="rgb(251,219,26)" fg:x="15107" fg:w="193"/><text x="10.5982%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (192 samples, 0.13%)</title><rect x="10.3489%" y="741" width="0.1315%" height="15" fill="rgb(231,119,3)" fg:x="15108" fg:w="192"/><text x="10.5989%" y="751.50"></text></g><g><title>Parse::do_all_blocks (194 samples, 0.13%)</title><rect x="10.3482%" y="773" width="0.1329%" height="15" fill="rgb(216,97,11)" fg:x="15107" fg:w="194"/><text x="10.5982%" y="783.50"></text></g><g><title>ParseGenerator::generate (196 samples, 0.13%)</title><rect x="10.3475%" y="805" width="0.1343%" height="15" fill="rgb(223,59,9)" fg:x="15106" fg:w="196"/><text x="10.5975%" y="815.50"></text></g><g><title>Parse::Parse (196 samples, 0.13%)</title><rect x="10.3475%" y="789" width="0.1343%" height="15" fill="rgb(233,93,31)" fg:x="15106" fg:w="196"/><text x="10.5975%" y="799.50"></text></g><g><title>Parse::do_call (30 samples, 0.02%)</title><rect x="10.4831%" y="709" width="0.0205%" height="15" fill="rgb(239,81,33)" fg:x="15304" fg:w="30"/><text x="10.7331%" y="719.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.03%)</title><rect x="10.4824%" y="741" width="0.0267%" height="15" fill="rgb(213,120,34)" fg:x="15303" fg:w="39"/><text x="10.7324%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.03%)</title><rect x="10.4824%" y="725" width="0.0267%" height="15" fill="rgb(243,49,53)" fg:x="15303" fg:w="39"/><text x="10.7324%" y="735.50"></text></g><g><title>Parse::do_all_blocks (40 samples, 0.03%)</title><rect x="10.4824%" y="757" width="0.0274%" height="15" fill="rgb(247,216,33)" fg:x="15303" fg:w="40"/><text x="10.7324%" y="767.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.03%)</title><rect x="10.4818%" y="789" width="0.0301%" height="15" fill="rgb(226,26,14)" fg:x="15302" fg:w="44"/><text x="10.7318%" y="799.50"></text></g><g><title>Parse::Parse (44 samples, 0.03%)</title><rect x="10.4818%" y="773" width="0.0301%" height="15" fill="rgb(215,49,53)" fg:x="15302" fg:w="44"/><text x="10.7318%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (45 samples, 0.03%)</title><rect x="10.4818%" y="805" width="0.0308%" height="15" fill="rgb(245,162,40)" fg:x="15302" fg:w="45"/><text x="10.7318%" y="815.50"></text></g><g><title>PredictedCallGenerator::generate (245 samples, 0.17%)</title><rect x="10.3461%" y="821" width="0.1678%" height="15" fill="rgb(229,68,17)" fg:x="15104" fg:w="245"/><text x="10.5961%" y="831.50"></text></g><g><title>Parse::do_call (1,428 samples, 0.98%)</title><rect x="9.5406%" y="837" width="0.9782%" height="15" fill="rgb(213,182,10)" fg:x="13928" fg:w="1428"/><text x="9.7906%" y="847.50"></text></g><g><title>C2Compiler::compile_method (1,451 samples, 0.99%)</title><rect x="9.5310%" y="949" width="0.9939%" height="15" fill="rgb(245,125,30)" fg:x="13914" fg:w="1451"/><text x="9.7810%" y="959.50"></text></g><g><title>Compile::Compile (1,451 samples, 0.99%)</title><rect x="9.5310%" y="933" width="0.9939%" height="15" fill="rgb(232,202,2)" fg:x="13914" fg:w="1451"/><text x="9.7810%" y="943.50"></text></g><g><title>ParseGenerator::generate (1,437 samples, 0.98%)</title><rect x="9.5406%" y="917" width="0.9843%" height="15" fill="rgb(237,140,51)" fg:x="13928" fg:w="1437"/><text x="9.7906%" y="927.50"></text></g><g><title>Parse::Parse (1,437 samples, 0.98%)</title><rect x="9.5406%" y="901" width="0.9843%" height="15" fill="rgb(236,157,25)" fg:x="13928" fg:w="1437"/><text x="9.7906%" y="911.50"></text></g><g><title>Parse::do_all_blocks (1,437 samples, 0.98%)</title><rect x="9.5406%" y="885" width="0.9843%" height="15" fill="rgb(219,209,0)" fg:x="13928" fg:w="1437"/><text x="9.7906%" y="895.50"></text></g><g><title>Parse::do_one_block (1,437 samples, 0.98%)</title><rect x="9.5406%" y="869" width="0.9843%" height="15" fill="rgb(240,116,54)" fg:x="13928" fg:w="1437"/><text x="9.7906%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (1,437 samples, 0.98%)</title><rect x="9.5406%" y="853" width="0.9843%" height="15" fill="rgb(216,10,36)" fg:x="13928" fg:w="1437"/><text x="9.7906%" y="863.50"></text></g><g><title>MachSpillCopyNode::implementation (30 samples, 0.02%)</title><rect x="10.5290%" y="869" width="0.0205%" height="15" fill="rgb(222,72,44)" fg:x="15371" fg:w="30"/><text x="10.7790%" y="879.50"></text></g><g><title>Compile::Output (38 samples, 0.03%)</title><rect x="10.5263%" y="933" width="0.0260%" height="15" fill="rgb(232,159,9)" fg:x="15367" fg:w="38"/><text x="10.7763%" y="943.50"></text></g><g><title>Compile::init_buffer (38 samples, 0.03%)</title><rect x="10.5263%" y="917" width="0.0260%" height="15" fill="rgb(210,39,32)" fg:x="15367" fg:w="38"/><text x="10.7763%" y="927.50"></text></g><g><title>Compile::shorten_branches (35 samples, 0.02%)</title><rect x="10.5283%" y="901" width="0.0240%" height="15" fill="rgb(216,194,45)" fg:x="15370" fg:w="35"/><text x="10.7783%" y="911.50"></text></g><g><title>Compile::scratch_emit_size (35 samples, 0.02%)</title><rect x="10.5283%" y="885" width="0.0240%" height="15" fill="rgb(218,18,35)" fg:x="15370" fg:w="35"/><text x="10.7783%" y="895.50"></text></g><g><title>PhaseCFG::schedule_late (37 samples, 0.03%)</title><rect x="10.5605%" y="901" width="0.0253%" height="15" fill="rgb(207,83,51)" fg:x="15417" fg:w="37"/><text x="10.8105%" y="911.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (37 samples, 0.03%)</title><rect x="10.5605%" y="885" width="0.0253%" height="15" fill="rgb(225,63,43)" fg:x="15417" fg:w="37"/><text x="10.8105%" y="895.50"></text></g><g><title>MachNode::adr_type (27 samples, 0.02%)</title><rect x="10.5674%" y="869" width="0.0185%" height="15" fill="rgb(207,57,36)" fg:x="15427" fg:w="27"/><text x="10.8174%" y="879.50"></text></g><g><title>TypeInstPtr::add_offset (16 samples, 0.01%)</title><rect x="10.5749%" y="853" width="0.0110%" height="15" fill="rgb(216,99,33)" fg:x="15438" fg:w="16"/><text x="10.8249%" y="863.50"></text></g><g><title>PhaseCFG::schedule_local (128 samples, 0.09%)</title><rect x="10.5859%" y="901" width="0.0877%" height="15" fill="rgb(225,42,16)" fg:x="15454" fg:w="128"/><text x="10.8359%" y="911.50"></text></g><g><title>PhaseCFG::sched_call (128 samples, 0.09%)</title><rect x="10.5859%" y="885" width="0.0877%" height="15" fill="rgb(220,201,45)" fg:x="15454" fg:w="128"/><text x="10.8359%" y="895.50"></text></g><g><title>PhaseCFG::do_global_code_motion (170 samples, 0.12%)</title><rect x="10.5598%" y="933" width="0.1164%" height="15" fill="rgb(225,33,4)" fg:x="15416" fg:w="170"/><text x="10.8098%" y="943.50"></text></g><g><title>PhaseCFG::global_code_motion (170 samples, 0.12%)</title><rect x="10.5598%" y="917" width="0.1164%" height="15" fill="rgb(224,33,50)" fg:x="15416" fg:w="170"/><text x="10.8098%" y="927.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (26 samples, 0.02%)</title><rect x="10.6790%" y="885" width="0.0178%" height="15" fill="rgb(246,198,51)" fg:x="15590" fg:w="26"/><text x="10.9290%" y="895.50"></text></g><g><title>PhaseChaitin::Split (35 samples, 0.02%)</title><rect x="10.6763%" y="917" width="0.0240%" height="15" fill="rgb(205,22,4)" fg:x="15586" fg:w="35"/><text x="10.9263%" y="927.50"></text></g><g><title>PhaseChaitin::split_USE (31 samples, 0.02%)</title><rect x="10.6790%" y="901" width="0.0212%" height="15" fill="rgb(206,3,8)" fg:x="15590" fg:w="31"/><text x="10.9290%" y="911.50"></text></g><g><title>Compile::Code_Gen (260 samples, 0.18%)</title><rect x="10.5263%" y="949" width="0.1781%" height="15" fill="rgb(251,23,15)" fg:x="15367" fg:w="260"/><text x="10.7763%" y="959.50"></text></g><g><title>PhaseChaitin::Register_Allocate (41 samples, 0.03%)</title><rect x="10.6763%" y="933" width="0.0281%" height="15" fill="rgb(252,88,28)" fg:x="15586" fg:w="41"/><text x="10.9263%" y="943.50"></text></g><g><title>OopFlow::build_oop_map (76 samples, 0.05%)</title><rect x="10.9955%" y="869" width="0.0521%" height="15" fill="rgb(212,127,14)" fg:x="16052" fg:w="76"/><text x="11.2455%" y="879.50"></text></g><g><title>OopFlow::compute_reach (136 samples, 0.09%)</title><rect x="10.9558%" y="885" width="0.0932%" height="15" fill="rgb(247,145,37)" fg:x="15994" fg:w="136"/><text x="11.2058%" y="895.50"></text></g><g><title>Compile::BuildOopMaps (566 samples, 0.39%)</title><rect x="10.7099%" y="901" width="0.3877%" height="15" fill="rgb(209,117,53)" fg:x="15635" fg:w="566"/><text x="10.9599%" y="911.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (61 samples, 0.04%)</title><rect x="11.0558%" y="885" width="0.0418%" height="15" fill="rgb(212,90,42)" fg:x="16140" fg:w="61"/><text x="11.3058%" y="895.50"></text></g><g><title>Compile::init_scratch_buffer_blob (22 samples, 0.02%)</title><rect x="11.1044%" y="885" width="0.0151%" height="15" fill="rgb(218,164,37)" fg:x="16211" fg:w="22"/><text x="11.3544%" y="895.50"></text></g><g><title>BufferBlob::create (21 samples, 0.01%)</title><rect x="11.1051%" y="869" width="0.0144%" height="15" fill="rgb(246,65,34)" fg:x="16212" fg:w="21"/><text x="11.3551%" y="879.50"></text></g><g><title>Compile::scratch_emit_size (139 samples, 0.10%)</title><rect x="11.1894%" y="869" width="0.0952%" height="15" fill="rgb(231,100,33)" fg:x="16335" fg:w="139"/><text x="11.4394%" y="879.50"></text></g><g><title>Compile::shorten_branches (261 samples, 0.18%)</title><rect x="11.1195%" y="885" width="0.1788%" height="15" fill="rgb(228,126,14)" fg:x="16233" fg:w="261"/><text x="11.3695%" y="895.50"></text></g><g><title>Compile::init_buffer (294 samples, 0.20%)</title><rect x="11.0976%" y="901" width="0.2014%" height="15" fill="rgb(215,173,21)" fg:x="16201" fg:w="294"/><text x="11.3476%" y="911.50"></text></g><g><title>Compile::Output (867 samples, 0.59%)</title><rect x="10.7057%" y="917" width="0.5939%" height="15" fill="rgb(210,6,40)" fg:x="15629" fg:w="867"/><text x="10.9557%" y="927.50"></text></g><g><title>Compile::FillExceptionTables (19 samples, 0.01%)</title><rect x="11.3777%" y="901" width="0.0130%" height="15" fill="rgb(212,48,18)" fg:x="16610" fg:w="19"/><text x="11.6277%" y="911.50"></text></g><g><title>Compile::FillLocArray (41 samples, 0.03%)</title><rect x="11.4079%" y="885" width="0.0281%" height="15" fill="rgb(230,214,11)" fg:x="16654" fg:w="41"/><text x="11.6579%" y="895.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (31 samples, 0.02%)</title><rect x="11.4394%" y="885" width="0.0212%" height="15" fill="rgb(254,105,39)" fg:x="16700" fg:w="31"/><text x="11.6894%" y="895.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (20 samples, 0.01%)</title><rect x="11.4654%" y="869" width="0.0137%" height="15" fill="rgb(245,158,5)" fg:x="16738" fg:w="20"/><text x="11.7154%" y="879.50"></text></g><g><title>DebugInformationRecorder::describe_scope (28 samples, 0.02%)</title><rect x="11.4606%" y="885" width="0.0192%" height="15" fill="rgb(249,208,11)" fg:x="16731" fg:w="28"/><text x="11.7106%" y="895.50"></text></g><g><title>Compile::Process_OopMap_Node (151 samples, 0.10%)</title><rect x="11.3907%" y="901" width="0.1034%" height="15" fill="rgb(210,39,28)" fg:x="16629" fg:w="151"/><text x="11.6407%" y="911.50"></text></g><g><title>resource_allocate_bytes (18 samples, 0.01%)</title><rect x="11.4818%" y="885" width="0.0123%" height="15" fill="rgb(211,56,53)" fg:x="16762" fg:w="18"/><text x="11.7318%" y="895.50"></text></g><g><title>Compile::valid_bundle_info (27 samples, 0.02%)</title><rect x="11.4976%" y="901" width="0.0185%" height="15" fill="rgb(226,201,30)" fg:x="16785" fg:w="27"/><text x="11.7476%" y="911.50"></text></g><g><title>MachSpillCopyNode::implementation (23 samples, 0.02%)</title><rect x="11.5243%" y="901" width="0.0158%" height="15" fill="rgb(239,101,34)" fg:x="16824" fg:w="23"/><text x="11.7743%" y="911.50"></text></g><g><title>Compile::fill_buffer (402 samples, 0.28%)</title><rect x="11.3003%" y="917" width="0.2754%" height="15" fill="rgb(226,209,5)" fg:x="16497" fg:w="402"/><text x="11.5503%" y="927.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (39 samples, 0.03%)</title><rect x="11.5983%" y="901" width="0.0267%" height="15" fill="rgb(250,105,47)" fg:x="16932" fg:w="39"/><text x="11.8483%" y="911.50"></text></g><g><title>Matcher::init_first_stack_mask (35 samples, 0.02%)</title><rect x="11.6010%" y="885" width="0.0240%" height="15" fill="rgb(230,72,3)" fg:x="16936" fg:w="35"/><text x="11.8510%" y="895.50"></text></g><g><title>Matcher::is_bmi_pattern (19 samples, 0.01%)</title><rect x="11.7702%" y="885" width="0.0130%" height="15" fill="rgb(232,218,39)" fg:x="17183" fg:w="19"/><text x="12.0202%" y="895.50"></text></g><g><title>Matcher::find_shared (246 samples, 0.17%)</title><rect x="11.6250%" y="901" width="0.1685%" height="15" fill="rgb(248,166,6)" fg:x="16971" fg:w="246"/><text x="11.8750%" y="911.50"></text></g><g><title>Arena::contains (399 samples, 0.27%)</title><rect x="11.9654%" y="885" width="0.2733%" height="15" fill="rgb(247,89,20)" fg:x="17468" fg:w="399"/><text x="12.2154%" y="895.50"></text></g><g><title>Matcher::collect_null_checks (22 samples, 0.02%)</title><rect x="12.2422%" y="885" width="0.0151%" height="15" fill="rgb(248,130,54)" fg:x="17872" fg:w="22"/><text x="12.4922%" y="895.50"></text></g><g><title>Matcher::Label_Root (20 samples, 0.01%)</title><rect x="12.2812%" y="853" width="0.0137%" height="15" fill="rgb(234,196,4)" fg:x="17929" fg:w="20"/><text x="12.5312%" y="863.50"></text></g><g><title>Matcher::ReduceInst (25 samples, 0.02%)</title><rect x="12.2949%" y="853" width="0.0171%" height="15" fill="rgb(250,143,31)" fg:x="17949" fg:w="25"/><text x="12.5449%" y="863.50"></text></g><g><title>Node::add_req (31 samples, 0.02%)</title><rect x="12.3121%" y="853" width="0.0212%" height="15" fill="rgb(211,110,34)" fg:x="17974" fg:w="31"/><text x="12.5621%" y="863.50"></text></g><g><title>Matcher::match_tree (98 samples, 0.07%)</title><rect x="12.2668%" y="869" width="0.0671%" height="15" fill="rgb(215,124,48)" fg:x="17908" fg:w="98"/><text x="12.5168%" y="879.50"></text></g><g><title>Matcher::match_sfpt (125 samples, 0.09%)</title><rect x="12.2573%" y="885" width="0.0856%" height="15" fill="rgb(216,46,13)" fg:x="17894" fg:w="125"/><text x="12.5073%" y="895.50"></text></g><g><title>Matcher::Label_Root (17 samples, 0.01%)</title><rect x="12.5395%" y="805" width="0.0116%" height="15" fill="rgb(205,184,25)" fg:x="18306" fg:w="17"/><text x="12.7895%" y="815.50"></text></g><g><title>Matcher::Label_Root (41 samples, 0.03%)</title><rect x="12.5333%" y="821" width="0.0281%" height="15" fill="rgb(228,1,10)" fg:x="18297" fg:w="41"/><text x="12.7833%" y="831.50"></text></g><g><title>State::DFA (36 samples, 0.02%)</title><rect x="12.5621%" y="821" width="0.0247%" height="15" fill="rgb(213,116,27)" fg:x="18339" fg:w="36"/><text x="12.8121%" y="831.50"></text></g><g><title>Matcher::Label_Root (96 samples, 0.07%)</title><rect x="12.5223%" y="837" width="0.0658%" height="15" fill="rgb(241,95,50)" fg:x="18281" fg:w="96"/><text x="12.7723%" y="847.50"></text></g><g><title>State::_sub_Op_AddP (16 samples, 0.01%)</title><rect x="12.6004%" y="821" width="0.0110%" height="15" fill="rgb(238,48,32)" fg:x="18395" fg:w="16"/><text x="12.8504%" y="831.50"></text></g><g><title>State::DFA (40 samples, 0.03%)</title><rect x="12.5915%" y="837" width="0.0274%" height="15" fill="rgb(235,113,49)" fg:x="18382" fg:w="40"/><text x="12.8415%" y="847.50"></text></g><g><title>Matcher::Label_Root (201 samples, 0.14%)</title><rect x="12.4854%" y="853" width="0.1377%" height="15" fill="rgb(205,127,43)" fg:x="18227" fg:w="201"/><text x="12.7354%" y="863.50"></text></g><g><title>State::DFA (37 samples, 0.03%)</title><rect x="12.6244%" y="853" width="0.0253%" height="15" fill="rgb(250,162,2)" fg:x="18430" fg:w="37"/><text x="12.8744%" y="863.50"></text></g><g><title>Matcher::Label_Root (310 samples, 0.21%)</title><rect x="12.4504%" y="869" width="0.2123%" height="15" fill="rgb(220,13,41)" fg:x="18176" fg:w="310"/><text x="12.7004%" y="879.50"></text></g><g><title>Matcher::ReduceInst (19 samples, 0.01%)</title><rect x="12.6929%" y="805" width="0.0130%" height="15" fill="rgb(249,221,25)" fg:x="18530" fg:w="19"/><text x="12.9429%" y="815.50"></text></g><g><title>Matcher::ReduceInst_Interior (49 samples, 0.03%)</title><rect x="12.6895%" y="821" width="0.0336%" height="15" fill="rgb(215,208,19)" fg:x="18525" fg:w="49"/><text x="12.9395%" y="831.50"></text></g><g><title>Matcher::ReduceInst (77 samples, 0.05%)</title><rect x="12.6833%" y="837" width="0.0527%" height="15" fill="rgb(236,175,2)" fg:x="18516" fg:w="77"/><text x="12.9333%" y="847.50"></text></g><g><title>Matcher::ReduceOper (17 samples, 0.01%)</title><rect x="12.7395%" y="837" width="0.0116%" height="15" fill="rgb(241,52,2)" fg:x="18598" fg:w="17"/><text x="12.9895%" y="847.50"></text></g><g><title>Matcher::ReduceInst_Interior (139 samples, 0.10%)</title><rect x="12.6737%" y="853" width="0.0952%" height="15" fill="rgb(248,140,14)" fg:x="18502" fg:w="139"/><text x="12.9237%" y="863.50"></text></g><g><title>State::MachOperGenerator (21 samples, 0.01%)</title><rect x="12.7546%" y="837" width="0.0144%" height="15" fill="rgb(253,22,42)" fg:x="18620" fg:w="21"/><text x="13.0046%" y="847.50"></text></g><g><title>Node::add_req (20 samples, 0.01%)</title><rect x="12.7703%" y="853" width="0.0137%" height="15" fill="rgb(234,61,47)" fg:x="18643" fg:w="20"/><text x="13.0203%" y="863.50"></text></g><g><title>Node::grow (15 samples, 0.01%)</title><rect x="12.7737%" y="837" width="0.0103%" height="15" fill="rgb(208,226,15)" fg:x="18648" fg:w="15"/><text x="13.0237%" y="847.50"></text></g><g><title>State::MachNodeGenerator (40 samples, 0.03%)</title><rect x="12.7874%" y="853" width="0.0274%" height="15" fill="rgb(217,221,4)" fg:x="18668" fg:w="40"/><text x="13.0374%" y="863.50"></text></g><g><title>State::MachOperGenerator (21 samples, 0.01%)</title><rect x="12.8148%" y="853" width="0.0144%" height="15" fill="rgb(212,174,34)" fg:x="18708" fg:w="21"/><text x="13.0648%" y="863.50"></text></g><g><title>Matcher::ReduceInst (252 samples, 0.17%)</title><rect x="12.6628%" y="869" width="0.1726%" height="15" fill="rgb(253,83,4)" fg:x="18486" fg:w="252"/><text x="12.9128%" y="879.50"></text></g><g><title>Matcher::match_tree (732 samples, 0.50%)</title><rect x="12.3429%" y="885" width="0.5014%" height="15" fill="rgb(250,195,49)" fg:x="18019" fg:w="732"/><text x="12.5929%" y="895.50"></text></g><g><title>Node::clone (57 samples, 0.04%)</title><rect x="12.8470%" y="885" width="0.0390%" height="15" fill="rgb(241,192,25)" fg:x="18755" fg:w="57"/><text x="13.0970%" y="895.50"></text></g><g><title>Node::out_grow (31 samples, 0.02%)</title><rect x="12.8861%" y="885" width="0.0212%" height="15" fill="rgb(208,124,10)" fg:x="18812" fg:w="31"/><text x="13.1361%" y="895.50"></text></g><g><title>Matcher::xform (1,616 samples, 1.11%)</title><rect x="11.8011%" y="901" width="1.1069%" height="15" fill="rgb(222,33,0)" fg:x="17228" fg:w="1616"/><text x="12.0511%" y="911.50"></text></g><g><title>Matcher::match (1,943 samples, 1.33%)</title><rect x="11.5805%" y="917" width="1.3309%" height="15" fill="rgb(234,209,28)" fg:x="16906" fg:w="1943"/><text x="11.8305%" y="927.50"></text></g><g><title>PhaseBlockLayout::find_edges (45 samples, 0.03%)</title><rect x="12.9135%" y="901" width="0.0308%" height="15" fill="rgb(224,11,23)" fg:x="18852" fg:w="45"/><text x="13.1635%" y="911.50"></text></g><g><title>PhaseBlockLayout::grow_traces (37 samples, 0.03%)</title><rect x="12.9443%" y="901" width="0.0253%" height="15" fill="rgb(232,99,1)" fg:x="18897" fg:w="37"/><text x="13.1943%" y="911.50"></text></g><g><title>__GI___qsort_r (27 samples, 0.02%)</title><rect x="12.9512%" y="885" width="0.0185%" height="15" fill="rgb(237,95,45)" fg:x="18907" fg:w="27"/><text x="13.2012%" y="895.50"></text></g><g><title>msort_with_tmp (27 samples, 0.02%)</title><rect x="12.9512%" y="869" width="0.0185%" height="15" fill="rgb(208,109,11)" fg:x="18907" fg:w="27"/><text x="13.2012%" y="879.50"></text></g><g><title>msort_with_tmp (27 samples, 0.02%)</title><rect x="12.9512%" y="853" width="0.0185%" height="15" fill="rgb(216,190,48)" fg:x="18907" fg:w="27"/><text x="13.2012%" y="863.50"></text></g><g><title>msort_with_tmp (26 samples, 0.02%)</title><rect x="12.9518%" y="837" width="0.0178%" height="15" fill="rgb(251,171,36)" fg:x="18908" fg:w="26"/><text x="13.2018%" y="847.50"></text></g><g><title>msort_with_tmp (25 samples, 0.02%)</title><rect x="12.9525%" y="821" width="0.0171%" height="15" fill="rgb(230,62,22)" fg:x="18909" fg:w="25"/><text x="13.2025%" y="831.50"></text></g><g><title>msort_with_tmp (23 samples, 0.02%)</title><rect x="12.9539%" y="805" width="0.0158%" height="15" fill="rgb(225,114,35)" fg:x="18911" fg:w="23"/><text x="13.2039%" y="815.50"></text></g><g><title>msort_with_tmp (22 samples, 0.02%)</title><rect x="12.9546%" y="789" width="0.0151%" height="15" fill="rgb(215,118,42)" fg:x="18912" fg:w="22"/><text x="13.2046%" y="799.50"></text></g><g><title>msort_with_tmp (22 samples, 0.02%)</title><rect x="12.9546%" y="773" width="0.0151%" height="15" fill="rgb(243,119,21)" fg:x="18912" fg:w="22"/><text x="13.2046%" y="783.50"></text></g><g><title>msort_with_tmp (22 samples, 0.02%)</title><rect x="12.9546%" y="757" width="0.0151%" height="15" fill="rgb(252,177,53)" fg:x="18912" fg:w="22"/><text x="13.2046%" y="767.50"></text></g><g><title>msort_with_tmp (20 samples, 0.01%)</title><rect x="12.9559%" y="741" width="0.0137%" height="15" fill="rgb(237,209,29)" fg:x="18914" fg:w="20"/><text x="13.2059%" y="751.50"></text></g><g><title>msort_with_tmp (19 samples, 0.01%)</title><rect x="12.9566%" y="725" width="0.0130%" height="15" fill="rgb(212,65,23)" fg:x="18915" fg:w="19"/><text x="13.2066%" y="735.50"></text></g><g><title>msort_with_tmp (16 samples, 0.01%)</title><rect x="12.9587%" y="709" width="0.0110%" height="15" fill="rgb(230,222,46)" fg:x="18918" fg:w="16"/><text x="13.2087%" y="719.50"></text></g><g><title>msort_with_tmp (15 samples, 0.01%)</title><rect x="12.9594%" y="693" width="0.0103%" height="15" fill="rgb(215,135,32)" fg:x="18919" fg:w="15"/><text x="13.2094%" y="703.50"></text></g><g><title>Trace::fixup_blocks (16 samples, 0.01%)</title><rect x="12.9765%" y="885" width="0.0110%" height="15" fill="rgb(246,101,22)" fg:x="18944" fg:w="16"/><text x="13.2265%" y="895.50"></text></g><g><title>PhaseBlockLayout::reorder_traces (17 samples, 0.01%)</title><rect x="12.9765%" y="901" width="0.0116%" height="15" fill="rgb(206,107,13)" fg:x="18944" fg:w="17"/><text x="13.2265%" y="911.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (114 samples, 0.08%)</title><rect x="12.9114%" y="917" width="0.0781%" height="15" fill="rgb(250,100,44)" fg:x="18849" fg:w="114"/><text x="13.1614%" y="927.50"></text></g><g><title>PhaseCFG::PhaseCFG (112 samples, 0.08%)</title><rect x="12.9895%" y="917" width="0.0767%" height="15" fill="rgb(231,147,38)" fg:x="18963" fg:w="112"/><text x="13.2395%" y="927.50"></text></g><g><title>PhaseCFG::build_cfg (107 samples, 0.07%)</title><rect x="12.9929%" y="901" width="0.0733%" height="15" fill="rgb(229,8,40)" fg:x="18968" fg:w="107"/><text x="13.2429%" y="911.50"></text></g><g><title>PhaseCFG::do_DFS (31 samples, 0.02%)</title><rect x="13.0868%" y="885" width="0.0212%" height="15" fill="rgb(221,135,30)" fg:x="19105" fg:w="31"/><text x="13.3368%" y="895.50"></text></g><g><title>Block_Stack::most_frequent_successor (24 samples, 0.02%)</title><rect x="13.0916%" y="869" width="0.0164%" height="15" fill="rgb(249,193,18)" fg:x="19112" fg:w="24"/><text x="13.3416%" y="879.50"></text></g><g><title>PhaseCFG::build_dominator_tree (63 samples, 0.04%)</title><rect x="13.0662%" y="901" width="0.0432%" height="15" fill="rgb(209,133,39)" fg:x="19075" fg:w="63"/><text x="13.3162%" y="911.50"></text></g><g><title>Block::succ_prob (16 samples, 0.01%)</title><rect x="13.1169%" y="869" width="0.0110%" height="15" fill="rgb(232,100,14)" fg:x="19149" fg:w="16"/><text x="13.3669%" y="879.50"></text></g><g><title>CFGLoop::compute_freq (28 samples, 0.02%)</title><rect x="13.1135%" y="885" width="0.0192%" height="15" fill="rgb(224,185,1)" fg:x="19144" fg:w="28"/><text x="13.3635%" y="895.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (48 samples, 0.03%)</title><rect x="13.1094%" y="901" width="0.0329%" height="15" fill="rgb(223,139,8)" fg:x="19138" fg:w="48"/><text x="13.3594%" y="911.50"></text></g><g><title>PhaseCFG::call_catch_cleanup (15 samples, 0.01%)</title><rect x="13.3156%" y="885" width="0.0103%" height="15" fill="rgb(232,213,38)" fg:x="19439" fg:w="15"/><text x="13.5656%" y="895.50"></text></g><g><title>PhaseCFG::implicit_null_check (45 samples, 0.03%)</title><rect x="13.3258%" y="885" width="0.0308%" height="15" fill="rgb(207,94,22)" fg:x="19454" fg:w="45"/><text x="13.5758%" y="895.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (39 samples, 0.03%)</title><rect x="13.3567%" y="885" width="0.0267%" height="15" fill="rgb(219,183,54)" fg:x="19499" fg:w="39"/><text x="13.6067%" y="895.50"></text></g><g><title>Node_Backward_Iterator::next (195 samples, 0.13%)</title><rect x="13.4430%" y="869" width="0.1336%" height="15" fill="rgb(216,185,54)" fg:x="19625" fg:w="195"/><text x="13.6930%" y="879.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (76 samples, 0.05%)</title><rect x="13.5766%" y="869" width="0.0521%" height="15" fill="rgb(254,217,39)" fg:x="19820" fg:w="76"/><text x="13.8266%" y="879.50"></text></g><g><title>MachNode::adr_type (22 samples, 0.02%)</title><rect x="13.6635%" y="853" width="0.0151%" height="15" fill="rgb(240,178,23)" fg:x="19947" fg:w="22"/><text x="13.9135%" y="863.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (92 samples, 0.06%)</title><rect x="13.6286%" y="869" width="0.0630%" height="15" fill="rgb(218,11,47)" fg:x="19896" fg:w="92"/><text x="13.8786%" y="879.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (39 samples, 0.03%)</title><rect x="13.6916%" y="869" width="0.0267%" height="15" fill="rgb(218,51,51)" fg:x="19988" fg:w="39"/><text x="13.9416%" y="879.50"></text></g><g><title>Node_Array::insert (23 samples, 0.02%)</title><rect x="13.7026%" y="853" width="0.0158%" height="15" fill="rgb(238,126,27)" fg:x="20004" fg:w="23"/><text x="13.9526%" y="863.50"></text></g><g><title>PhaseCFG::schedule_late (492 samples, 0.34%)</title><rect x="13.3834%" y="885" width="0.3370%" height="15" fill="rgb(249,202,22)" fg:x="19538" fg:w="492"/><text x="13.6334%" y="895.50"></text></g><g><title>Node::is_iteratively_computed (20 samples, 0.01%)</title><rect x="13.8423%" y="869" width="0.0137%" height="15" fill="rgb(254,195,49)" fg:x="20208" fg:w="20"/><text x="14.0923%" y="879.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (35 samples, 0.02%)</title><rect x="13.8560%" y="869" width="0.0240%" height="15" fill="rgb(208,123,14)" fg:x="20228" fg:w="35"/><text x="14.1060%" y="879.50"></text></g><g><title>PhaseCFG::needed_for_next_call (16 samples, 0.01%)</title><rect x="13.8800%" y="869" width="0.0110%" height="15" fill="rgb(224,200,8)" fg:x="20263" fg:w="16"/><text x="14.1300%" y="879.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (18 samples, 0.01%)</title><rect x="13.9334%" y="853" width="0.0123%" height="15" fill="rgb(217,61,36)" fg:x="20341" fg:w="18"/><text x="14.1834%" y="863.50"></text></g><g><title>PhaseCFG::select (87 samples, 0.06%)</title><rect x="13.8910%" y="869" width="0.0596%" height="15" fill="rgb(206,35,45)" fg:x="20279" fg:w="87"/><text x="14.1410%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (20 samples, 0.01%)</title><rect x="13.9554%" y="853" width="0.0137%" height="15" fill="rgb(217,65,33)" fg:x="20373" fg:w="20"/><text x="14.2054%" y="863.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (49 samples, 0.03%)</title><rect x="13.9506%" y="869" width="0.0336%" height="15" fill="rgb(222,158,48)" fg:x="20366" fg:w="49"/><text x="14.2006%" y="879.50"></text></g><g><title>PhaseChaitin::raise_pressure (22 samples, 0.02%)</title><rect x="13.9691%" y="853" width="0.0151%" height="15" fill="rgb(254,2,54)" fg:x="20393" fg:w="22"/><text x="14.2191%" y="863.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (37 samples, 0.03%)</title><rect x="13.9841%" y="869" width="0.0253%" height="15" fill="rgb(250,143,38)" fg:x="20415" fg:w="37"/><text x="14.2341%" y="879.50"></text></g><g><title>PhaseCFG::schedule_local (427 samples, 0.29%)</title><rect x="13.7204%" y="885" width="0.2925%" height="15" fill="rgb(248,25,0)" fg:x="20030" fg:w="427"/><text x="13.9704%" y="895.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (24 samples, 0.02%)</title><rect x="14.0129%" y="885" width="0.0164%" height="15" fill="rgb(206,152,27)" fg:x="20457" fg:w="24"/><text x="14.2629%" y="895.50"></text></g><g><title>RegMask::Size (74 samples, 0.05%)</title><rect x="14.1882%" y="869" width="0.0507%" height="15" fill="rgb(240,77,30)" fg:x="20713" fg:w="74"/><text x="14.4382%" y="879.50"></text></g><g><title>RegMask::clear_to_sets (16 samples, 0.01%)</title><rect x="14.2389%" y="869" width="0.0110%" height="15" fill="rgb(231,5,3)" fg:x="20787" fg:w="16"/><text x="14.4889%" y="879.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (347 samples, 0.24%)</title><rect x="14.0382%" y="885" width="0.2377%" height="15" fill="rgb(207,226,32)" fg:x="20494" fg:w="347"/><text x="14.2882%" y="895.50"></text></g><g><title>PhaseChaitin::mark_ssa (73 samples, 0.05%)</title><rect x="14.2759%" y="885" width="0.0500%" height="15" fill="rgb(222,207,47)" fg:x="20841" fg:w="73"/><text x="14.5259%" y="895.50"></text></g><g><title>asm_exc_page_fault (19 samples, 0.01%)</title><rect x="14.3999%" y="853" width="0.0130%" height="15" fill="rgb(229,115,45)" fg:x="21022" fg:w="19"/><text x="14.6499%" y="863.50"></text></g><g><title>exc_page_fault (19 samples, 0.01%)</title><rect x="14.3999%" y="837" width="0.0130%" height="15" fill="rgb(224,191,6)" fg:x="21022" fg:w="19"/><text x="14.6499%" y="847.50"></text></g><g><title>do_user_addr_fault (19 samples, 0.01%)</title><rect x="14.3999%" y="821" width="0.0130%" height="15" fill="rgb(230,227,24)" fg:x="21022" fg:w="19"/><text x="14.6499%" y="831.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="14.4013%" y="805" width="0.0116%" height="15" fill="rgb(228,80,19)" fg:x="21024" fg:w="17"/><text x="14.6513%" y="815.50"></text></g><g><title>IndexSet::initialize (81 samples, 0.06%)</title><rect x="14.3588%" y="869" width="0.0555%" height="15" fill="rgb(247,229,0)" fg:x="20962" fg:w="81"/><text x="14.6088%" y="879.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="14.4232%" y="853" width="0.0116%" height="15" fill="rgb(237,194,15)" fg:x="21056" fg:w="17"/><text x="14.6732%" y="863.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="14.4232%" y="837" width="0.0116%" height="15" fill="rgb(219,203,20)" fg:x="21056" fg:w="17"/><text x="14.6732%" y="847.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="14.4232%" y="821" width="0.0116%" height="15" fill="rgb(234,128,8)" fg:x="21056" fg:w="17"/><text x="14.6732%" y="831.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="14.4239%" y="805" width="0.0110%" height="15" fill="rgb(248,202,8)" fg:x="21057" fg:w="16"/><text x="14.6739%" y="815.50"></text></g><g><title>[libc-2.31.so] (32 samples, 0.02%)</title><rect x="14.4143%" y="869" width="0.0219%" height="15" fill="rgb(206,104,37)" fg:x="21043" fg:w="32"/><text x="14.6643%" y="879.50"></text></g><g><title>PhaseIFG::init (162 samples, 0.11%)</title><rect x="14.3259%" y="885" width="0.1110%" height="15" fill="rgb(223,8,27)" fg:x="20914" fg:w="162"/><text x="14.5759%" y="895.50"></text></g><g><title>IndexSet::initialize (55 samples, 0.04%)</title><rect x="14.5739%" y="869" width="0.0377%" height="15" fill="rgb(216,217,28)" fg:x="21276" fg:w="55"/><text x="14.8239%" y="879.50"></text></g><g><title>IndexSet::alloc_block_containing (25 samples, 0.02%)</title><rect x="14.6582%" y="853" width="0.0171%" height="15" fill="rgb(249,199,1)" fg:x="21399" fg:w="25"/><text x="14.9082%" y="863.50"></text></g><g><title>PhaseLive::add_livein (152 samples, 0.10%)</title><rect x="14.6116%" y="869" width="0.1041%" height="15" fill="rgb(240,85,17)" fg:x="21331" fg:w="152"/><text x="14.8616%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (59 samples, 0.04%)</title><rect x="14.6753%" y="853" width="0.0404%" height="15" fill="rgb(206,108,45)" fg:x="21424" fg:w="59"/><text x="14.9253%" y="863.50"></text></g><g><title>IndexSet::alloc_block_containing (41 samples, 0.03%)</title><rect x="14.8198%" y="853" width="0.0281%" height="15" fill="rgb(245,210,41)" fg:x="21635" fg:w="41"/><text x="15.0698%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (69 samples, 0.05%)</title><rect x="14.8575%" y="853" width="0.0473%" height="15" fill="rgb(206,13,37)" fg:x="21690" fg:w="69"/><text x="15.1075%" y="863.50"></text></g><g><title>PhaseLive::add_liveout (279 samples, 0.19%)</title><rect x="14.7157%" y="869" width="0.1911%" height="15" fill="rgb(250,61,18)" fg:x="21483" fg:w="279"/><text x="14.9657%" y="879.50"></text></g><g><title>PhaseLive::compute (688 samples, 0.47%)</title><rect x="14.4369%" y="885" width="0.4713%" height="15" fill="rgb(235,172,48)" fg:x="21076" fg:w="688"/><text x="14.6869%" y="895.50"></text></g><g><title>PhaseCFG::global_code_motion (2,592 samples, 1.78%)</title><rect x="13.1423%" y="901" width="1.7755%" height="15" fill="rgb(249,201,17)" fg:x="19186" fg:w="2592"/><text x="13.3923%" y="911.50">P..</text></g><g><title>PhaseCFG::do_global_code_motion (2,704 samples, 1.85%)</title><rect x="13.0662%" y="917" width="1.8522%" height="15" fill="rgb(219,208,6)" fg:x="19075" fg:w="2704"/><text x="13.3162%" y="927.50">P..</text></g><g><title>PhaseCFG::fixup_flow (21 samples, 0.01%)</title><rect x="14.9185%" y="917" width="0.0144%" height="15" fill="rgb(248,31,23)" fg:x="21779" fg:w="21"/><text x="15.1685%" y="927.50"></text></g><g><title>Block::is_Empty (19 samples, 0.01%)</title><rect x="14.9561%" y="901" width="0.0130%" height="15" fill="rgb(245,15,42)" fg:x="21834" fg:w="19"/><text x="15.2061%" y="911.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (54 samples, 0.04%)</title><rect x="14.9328%" y="917" width="0.0370%" height="15" fill="rgb(222,217,39)" fg:x="21800" fg:w="54"/><text x="15.1828%" y="927.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (943 samples, 0.65%)</title><rect x="15.0486%" y="901" width="0.6459%" height="15" fill="rgb(210,219,27)" fg:x="21969" fg:w="943"/><text x="15.2986%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (239 samples, 0.16%)</title><rect x="16.0001%" y="885" width="0.1637%" height="15" fill="rgb(252,166,36)" fg:x="23358" fg:w="239"/><text x="16.2501%" y="895.50"></text></g><g><title>RegMask::find_first_set (27 samples, 0.02%)</title><rect x="16.2124%" y="869" width="0.0185%" height="15" fill="rgb(245,132,34)" fg:x="23668" fg:w="27"/><text x="16.4624%" y="879.50"></text></g><g><title>PhaseChaitin::bias_color (112 samples, 0.08%)</title><rect x="16.1638%" y="885" width="0.0767%" height="15" fill="rgb(236,54,3)" fg:x="23597" fg:w="112"/><text x="16.4138%" y="895.50"></text></g><g><title>IndexSet::alloc_block_containing (44 samples, 0.03%)</title><rect x="16.4069%" y="869" width="0.0301%" height="15" fill="rgb(241,173,43)" fg:x="23952" fg:w="44"/><text x="16.6569%" y="879.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (59 samples, 0.04%)</title><rect x="16.4371%" y="869" width="0.0404%" height="15" fill="rgb(215,190,9)" fg:x="23996" fg:w="59"/><text x="16.6871%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (300 samples, 0.21%)</title><rect x="16.4775%" y="869" width="0.2055%" height="15" fill="rgb(242,101,16)" fg:x="24055" fg:w="300"/><text x="16.7275%" y="879.50"></text></g><g><title>PhaseIFG::re_insert (644 samples, 0.44%)</title><rect x="16.2446%" y="885" width="0.4411%" height="15" fill="rgb(223,190,21)" fg:x="23715" fg:w="644"/><text x="16.4946%" y="895.50"></text></g><g><title>RegMask::clear_to_sets (116 samples, 0.08%)</title><rect x="16.6857%" y="885" width="0.0795%" height="15" fill="rgb(215,228,25)" fg:x="24359" fg:w="116"/><text x="16.9357%" y="895.50"></text></g><g><title>PhaseChaitin::Select (1,564 samples, 1.07%)</title><rect x="15.6945%" y="901" width="1.0713%" height="15" fill="rgb(225,36,22)" fg:x="22912" fg:w="1564"/><text x="15.9445%" y="911.50"></text></g><g><title>IndexSetIterator::advance_and_next (267 samples, 0.18%)</title><rect x="16.8885%" y="885" width="0.1829%" height="15" fill="rgb(251,106,46)" fg:x="24655" fg:w="267"/><text x="17.1385%" y="895.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (43 samples, 0.03%)</title><rect x="17.3228%" y="869" width="0.0295%" height="15" fill="rgb(208,90,1)" fg:x="25289" fg:w="43"/><text x="17.5728%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (301 samples, 0.21%)</title><rect x="17.3522%" y="869" width="0.2062%" height="15" fill="rgb(243,10,4)" fg:x="25332" fg:w="301"/><text x="17.6022%" y="879.50"></text></g><g><title>PhaseIFG::remove_node (712 samples, 0.49%)</title><rect x="17.0714%" y="885" width="0.4877%" height="15" fill="rgb(212,137,27)" fg:x="24922" fg:w="712"/><text x="17.3214%" y="895.50"></text></g><g><title>PhaseChaitin::Simplify (1,159 samples, 0.79%)</title><rect x="16.7659%" y="901" width="0.7939%" height="15" fill="rgb(231,220,49)" fg:x="24476" fg:w="1159"/><text x="17.0159%" y="911.50"></text></g><g><title>CProjNode::is_block_proj (15 samples, 0.01%)</title><rect x="18.9626%" y="885" width="0.0103%" height="15" fill="rgb(237,96,20)" fg:x="27683" fg:w="15"/><text x="19.2126%" y="895.50"></text></g><g><title>MachNode::ideal_reg (24 samples, 0.02%)</title><rect x="19.0620%" y="869" width="0.0164%" height="15" fill="rgb(239,229,30)" fg:x="27828" fg:w="24"/><text x="19.3120%" y="879.50"></text></g><g><title>MachNode::rematerialize (136 samples, 0.09%)</title><rect x="18.9907%" y="885" width="0.0932%" height="15" fill="rgb(219,65,33)" fg:x="27724" fg:w="136"/><text x="19.2407%" y="895.50"></text></g><g><title>Node::rematerialize (121 samples, 0.08%)</title><rect x="19.0976%" y="885" width="0.0829%" height="15" fill="rgb(243,134,7)" fg:x="27880" fg:w="121"/><text x="19.3476%" y="895.50"></text></g><g><title>Node::replace_by (16 samples, 0.01%)</title><rect x="19.1805%" y="885" width="0.0110%" height="15" fill="rgb(216,177,54)" fg:x="28001" fg:w="16"/><text x="19.4305%" y="895.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (21 samples, 0.01%)</title><rect x="19.2127%" y="869" width="0.0144%" height="15" fill="rgb(211,160,20)" fg:x="28048" fg:w="21"/><text x="19.4627%" y="879.50"></text></g><g><title>PhaseChaitin::split_DEF (33 samples, 0.02%)</title><rect x="19.2099%" y="885" width="0.0226%" height="15" fill="rgb(239,85,39)" fg:x="28044" fg:w="33"/><text x="19.4599%" y="895.50"></text></g><g><title>PhaseChaitin::clone_projs (18 samples, 0.01%)</title><rect x="19.2394%" y="869" width="0.0123%" height="15" fill="rgb(232,125,22)" fg:x="28087" fg:w="18"/><text x="19.4894%" y="879.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (38 samples, 0.03%)</title><rect x="19.2325%" y="885" width="0.0260%" height="15" fill="rgb(244,57,34)" fg:x="28077" fg:w="38"/><text x="19.4825%" y="895.50"></text></g><g><title>RegMask::is_aligned_pairs (20 samples, 0.01%)</title><rect x="19.3003%" y="853" width="0.0137%" height="15" fill="rgb(214,203,32)" fg:x="28176" fg:w="20"/><text x="19.5503%" y="863.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (52 samples, 0.04%)</title><rect x="19.2805%" y="869" width="0.0356%" height="15" fill="rgb(207,58,43)" fg:x="28147" fg:w="52"/><text x="19.5305%" y="879.50"></text></g><g><title>PhaseChaitin::insert_proj (24 samples, 0.02%)</title><rect x="19.3161%" y="869" width="0.0164%" height="15" fill="rgb(215,193,15)" fg:x="28199" fg:w="24"/><text x="19.5661%" y="879.50"></text></g><g><title>PhaseChaitin::split_USE (109 samples, 0.07%)</title><rect x="19.2586%" y="885" width="0.0747%" height="15" fill="rgb(232,15,44)" fg:x="28115" fg:w="109"/><text x="19.5086%" y="895.50"></text></g><g><title>PhaseChaitin::Split (2,651 samples, 1.82%)</title><rect x="17.5598%" y="901" width="1.8159%" height="15" fill="rgb(212,3,48)" fg:x="25635" fg:w="2651"/><text x="17.8098%" y="911.50">P..</text></g><g><title>__tls_get_addr (19 samples, 0.01%)</title><rect x="19.9518%" y="869" width="0.0130%" height="15" fill="rgb(218,128,7)" fg:x="29127" fg:w="19"/><text x="20.2018%" y="879.50"></text></g><g><title>IndexSet::IndexSet (232 samples, 0.16%)</title><rect x="19.8114%" y="885" width="0.1589%" height="15" fill="rgb(226,216,39)" fg:x="28922" fg:w="232"/><text x="20.0614%" y="895.50"></text></g><g><title>MachNode::rematerialize (52 samples, 0.04%)</title><rect x="19.9771%" y="885" width="0.0356%" height="15" fill="rgb(243,47,51)" fg:x="29164" fg:w="52"/><text x="20.2271%" y="895.50"></text></g><g><title>IndexSet::alloc_block_containing (26 samples, 0.02%)</title><rect x="20.2182%" y="869" width="0.0178%" height="15" fill="rgb(241,183,40)" fg:x="29516" fg:w="26"/><text x="20.4682%" y="879.50"></text></g><g><title>JVMState::debug_start (20 samples, 0.01%)</title><rect x="20.2360%" y="869" width="0.0137%" height="15" fill="rgb(231,217,32)" fg:x="29542" fg:w="20"/><text x="20.4860%" y="879.50"></text></g><g><title>MachNode::rematerialize (60 samples, 0.04%)</title><rect x="20.2497%" y="869" width="0.0411%" height="15" fill="rgb(229,61,38)" fg:x="29562" fg:w="60"/><text x="20.4997%" y="879.50"></text></g><g><title>PhaseChaitin::raise_pressure (84 samples, 0.06%)</title><rect x="20.2943%" y="869" width="0.0575%" height="15" fill="rgb(225,210,5)" fg:x="29627" fg:w="84"/><text x="20.5443%" y="879.50"></text></g><g><title>RegMask::is_UP (33 samples, 0.02%)</title><rect x="20.3292%" y="853" width="0.0226%" height="15" fill="rgb(231,79,45)" fg:x="29678" fg:w="33"/><text x="20.5792%" y="863.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (488 samples, 0.33%)</title><rect x="20.0189%" y="885" width="0.3343%" height="15" fill="rgb(224,100,7)" fg:x="29225" fg:w="488"/><text x="20.2689%" y="895.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (16 samples, 0.01%)</title><rect x="20.3532%" y="885" width="0.0110%" height="15" fill="rgb(241,198,18)" fg:x="29713" fg:w="16"/><text x="20.6032%" y="895.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (44 samples, 0.03%)</title><rect x="20.3641%" y="885" width="0.0301%" height="15" fill="rgb(252,97,53)" fg:x="29729" fg:w="44"/><text x="20.6141%" y="895.50"></text></g><g><title>RegMask::Size (28 samples, 0.02%)</title><rect x="20.3751%" y="869" width="0.0192%" height="15" fill="rgb(220,88,7)" fg:x="29745" fg:w="28"/><text x="20.6251%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (135 samples, 0.09%)</title><rect x="20.5148%" y="869" width="0.0925%" height="15" fill="rgb(213,176,14)" fg:x="29949" fg:w="135"/><text x="20.7648%" y="879.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (371 samples, 0.25%)</title><rect x="20.3943%" y="885" width="0.2541%" height="15" fill="rgb(246,73,7)" fg:x="29773" fg:w="371"/><text x="20.6443%" y="895.50"></text></g><g><title>RegMask::is_UP (60 samples, 0.04%)</title><rect x="20.6073%" y="869" width="0.0411%" height="15" fill="rgb(245,64,36)" fg:x="30084" fg:w="60"/><text x="20.8573%" y="879.50"></text></g><g><title>__tls_get_addr (16 samples, 0.01%)</title><rect x="21.7307%" y="853" width="0.0110%" height="15" fill="rgb(245,80,10)" fg:x="31724" fg:w="16"/><text x="21.9807%" y="863.50"></text></g><g><title>IndexSet::alloc_block_containing (89 samples, 0.06%)</title><rect x="21.6821%" y="869" width="0.0610%" height="15" fill="rgb(232,107,50)" fg:x="31653" fg:w="89"/><text x="21.9321%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (649 samples, 0.44%)</title><rect x="21.7499%" y="869" width="0.4446%" height="15" fill="rgb(253,3,0)" fg:x="31752" fg:w="649"/><text x="21.9999%" y="879.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,262 samples, 1.55%)</title><rect x="20.6484%" y="885" width="1.5495%" height="15" fill="rgb(212,99,53)" fg:x="30144" fg:w="2262"/><text x="20.8984%" y="895.50"></text></g><g><title>PhaseChaitin::lower_pressure (85 samples, 0.06%)</title><rect x="22.1979%" y="885" width="0.0582%" height="15" fill="rgb(249,111,54)" fg:x="32406" fg:w="85"/><text x="22.4479%" y="895.50"></text></g><g><title>RegMask::is_UP (29 samples, 0.02%)</title><rect x="22.2362%" y="869" width="0.0199%" height="15" fill="rgb(249,55,30)" fg:x="32462" fg:w="29"/><text x="22.4862%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (142 samples, 0.10%)</title><rect x="22.5130%" y="869" width="0.0973%" height="15" fill="rgb(237,47,42)" fg:x="32866" fg:w="142"/><text x="22.7630%" y="879.50"></text></g><g><title>RegMask::Size (214 samples, 0.15%)</title><rect x="22.6102%" y="869" width="0.1466%" height="15" fill="rgb(211,20,18)" fg:x="33008" fg:w="214"/><text x="22.8602%" y="879.50"></text></g><g><title>RegMask::smear_to_sets (458 samples, 0.31%)</title><rect x="22.7568%" y="869" width="0.3137%" height="15" fill="rgb(231,203,46)" fg:x="33222" fg:w="458"/><text x="23.0068%" y="879.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,199 samples, 0.82%)</title><rect x="22.2561%" y="885" width="0.8213%" height="15" fill="rgb(237,142,3)" fg:x="32491" fg:w="1199"/><text x="22.5061%" y="895.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (22 samples, 0.02%)</title><rect x="23.0774%" y="885" width="0.0151%" height="15" fill="rgb(241,107,1)" fg:x="33690" fg:w="22"/><text x="23.3274%" y="895.50"></text></g><g><title>RegMask::smear_to_sets (29 samples, 0.02%)</title><rect x="23.0993%" y="885" width="0.0199%" height="15" fill="rgb(229,83,13)" fg:x="33722" fg:w="29"/><text x="23.3493%" y="895.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (5,471 samples, 3.75%)</title><rect x="19.3764%" y="901" width="3.7476%" height="15" fill="rgb(241,91,40)" fg:x="28287" fg:w="5471"/><text x="19.6264%" y="911.50">Phas..</text></g><g><title>IndexSet::alloc_block_containing (17 samples, 0.01%)</title><rect x="23.3452%" y="869" width="0.0116%" height="15" fill="rgb(225,3,45)" fg:x="34081" fg:w="17"/><text x="23.5952%" y="879.50"></text></g><g><title>PhaseChaitin::interfere_with_live (256 samples, 0.18%)</title><rect x="23.2055%" y="885" width="0.1754%" height="15" fill="rgb(244,223,14)" fg:x="33877" fg:w="256"/><text x="23.4555%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (34 samples, 0.02%)</title><rect x="23.3576%" y="869" width="0.0233%" height="15" fill="rgb(224,124,37)" fg:x="34099" fg:w="34"/><text x="23.6076%" y="879.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (377 samples, 0.26%)</title><rect x="23.1240%" y="901" width="0.2582%" height="15" fill="rgb(251,171,30)" fg:x="33758" fg:w="377"/><text x="23.3740%" y="911.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (85 samples, 0.06%)</title><rect x="23.3822%" y="901" width="0.0582%" height="15" fill="rgb(236,46,54)" fg:x="34135" fg:w="85"/><text x="23.6322%" y="911.50"></text></g><g><title>find_hihghest_bit (21 samples, 0.01%)</title><rect x="23.4261%" y="885" width="0.0144%" height="15" fill="rgb(245,213,5)" fg:x="34199" fg:w="21"/><text x="23.6761%" y="895.50"></text></g><g><title>PhaseChaitin::compact (25 samples, 0.02%)</title><rect x="23.4404%" y="901" width="0.0171%" height="15" fill="rgb(230,144,27)" fg:x="34220" fg:w="25"/><text x="23.6904%" y="911.50"></text></g><g><title>PhaseChaitin::de_ssa (68 samples, 0.05%)</title><rect x="23.4576%" y="901" width="0.0466%" height="15" fill="rgb(220,86,6)" fg:x="34245" fg:w="68"/><text x="23.7076%" y="911.50"></text></g><g><title>PhaseChaitin::fixup_spills (39 samples, 0.03%)</title><rect x="23.5041%" y="901" width="0.0267%" height="15" fill="rgb(240,20,13)" fg:x="34313" fg:w="39"/><text x="23.7541%" y="911.50"></text></g><g><title>__tls_get_addr (15 samples, 0.01%)</title><rect x="24.4131%" y="869" width="0.0103%" height="15" fill="rgb(217,89,34)" fg:x="35640" fg:w="15"/><text x="24.6631%" y="879.50"></text></g><g><title>MachCallJavaNode::in_RegMask (44 samples, 0.03%)</title><rect x="24.3940%" y="885" width="0.0301%" height="15" fill="rgb(229,13,5)" fg:x="35612" fg:w="44"/><text x="24.6440%" y="895.50"></text></g><g><title>MachNode::ideal_reg (53 samples, 0.04%)</title><rect x="24.4268%" y="885" width="0.0363%" height="15" fill="rgb(244,67,35)" fg:x="35660" fg:w="53"/><text x="24.6768%" y="895.50"></text></g><g><title>MachNode::in_RegMask (45 samples, 0.03%)</title><rect x="24.4631%" y="885" width="0.0308%" height="15" fill="rgb(221,40,2)" fg:x="35713" fg:w="45"/><text x="24.7131%" y="895.50"></text></g><g><title>MachProjNode::bottom_type (28 samples, 0.02%)</title><rect x="24.4967%" y="885" width="0.0192%" height="15" fill="rgb(237,157,21)" fg:x="35762" fg:w="28"/><text x="24.7467%" y="895.50"></text></g><g><title>PhiNode::in_RegMask (27 samples, 0.02%)</title><rect x="24.5268%" y="885" width="0.0185%" height="15" fill="rgb(222,94,11)" fg:x="35806" fg:w="27"/><text x="24.7768%" y="895.50"></text></g><g><title>PhiNode::out_RegMask (17 samples, 0.01%)</title><rect x="24.5453%" y="885" width="0.0116%" height="15" fill="rgb(249,113,6)" fg:x="35833" fg:w="17"/><text x="24.7953%" y="895.50"></text></g><g><title>RegMask::Size (821 samples, 0.56%)</title><rect x="24.5570%" y="885" width="0.5624%" height="15" fill="rgb(238,137,36)" fg:x="35850" fg:w="821"/><text x="24.8070%" y="895.50"></text></g><g><title>RegMask::clear_to_sets (137 samples, 0.09%)</title><rect x="25.1194%" y="885" width="0.0938%" height="15" fill="rgb(210,102,26)" fg:x="36671" fg:w="137"/><text x="25.3694%" y="895.50"></text></g><g><title>RegMask::is_aligned_pairs (67 samples, 0.05%)</title><rect x="25.2132%" y="885" width="0.0459%" height="15" fill="rgb(218,30,30)" fg:x="36808" fg:w="67"/><text x="25.4632%" y="895.50"></text></g><g><title>RegMask::is_bound1 (94 samples, 0.06%)</title><rect x="25.2591%" y="885" width="0.0644%" height="15" fill="rgb(214,67,26)" fg:x="36875" fg:w="94"/><text x="25.5091%" y="895.50"></text></g><g><title>RegMask::is_bound_pair (74 samples, 0.05%)</title><rect x="25.3235%" y="885" width="0.0507%" height="15" fill="rgb(251,9,53)" fg:x="36969" fg:w="74"/><text x="25.5735%" y="895.50"></text></g><g><title>Dict::Insert (23 samples, 0.02%)</title><rect x="25.3858%" y="869" width="0.0158%" height="15" fill="rgb(228,204,25)" fg:x="37060" fg:w="23"/><text x="25.6358%" y="879.50"></text></g><g><title>Type::hashcons (26 samples, 0.02%)</title><rect x="25.3845%" y="885" width="0.0178%" height="15" fill="rgb(207,153,8)" fg:x="37058" fg:w="26"/><text x="25.6345%" y="895.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (2,789 samples, 1.91%)</title><rect x="23.5309%" y="901" width="1.9104%" height="15" fill="rgb(242,9,16)" fg:x="34352" fg:w="2789"/><text x="23.7809%" y="911.50">P..</text></g><g><title>PhaseChaitin::merge_multidefs (346 samples, 0.24%)</title><rect x="25.4413%" y="901" width="0.2370%" height="15" fill="rgb(217,211,10)" fg:x="37141" fg:w="346"/><text x="25.6913%" y="911.50"></text></g><g><title>Node::replace_by (27 samples, 0.02%)</title><rect x="26.5298%" y="885" width="0.0185%" height="15" fill="rgb(219,228,52)" fg:x="38730" fg:w="27"/><text x="26.7798%" y="895.50"></text></g><g><title>MachCallJavaNode::in_RegMask (18 samples, 0.01%)</title><rect x="27.4415%" y="853" width="0.0123%" height="15" fill="rgb(231,92,29)" fg:x="40061" fg:w="18"/><text x="27.6915%" y="863.50"></text></g><g><title>RegMask::Size (24 samples, 0.02%)</title><rect x="27.4552%" y="853" width="0.0164%" height="15" fill="rgb(232,8,23)" fg:x="40081" fg:w="24"/><text x="27.7052%" y="863.50"></text></g><g><title>PhaseChaitin::use_prior_register (66 samples, 0.05%)</title><rect x="27.4305%" y="869" width="0.0452%" height="15" fill="rgb(216,211,34)" fg:x="40045" fg:w="66"/><text x="27.6805%" y="879.50"></text></g><g><title>PhaseChaitin::yank (18 samples, 0.01%)</title><rect x="27.4819%" y="853" width="0.0123%" height="15" fill="rgb(236,151,0)" fg:x="40120" fg:w="18"/><text x="27.7319%" y="863.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (36 samples, 0.02%)</title><rect x="27.4757%" y="869" width="0.0247%" height="15" fill="rgb(209,168,3)" fg:x="40111" fg:w="36"/><text x="27.7257%" y="879.50"></text></g><g><title>PhaseChaitin::elide_copy (1,382 samples, 0.95%)</title><rect x="26.5578%" y="885" width="0.9467%" height="15" fill="rgb(208,129,28)" fg:x="38771" fg:w="1382"/><text x="26.8078%" y="895.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (27 samples, 0.02%)</title><rect x="27.5066%" y="885" width="0.0185%" height="15" fill="rgb(229,78,22)" fg:x="40156" fg:w="27"/><text x="27.7566%" y="895.50"></text></g><g><title>PhaseChaitin::yank (16 samples, 0.01%)</title><rect x="27.5141%" y="869" width="0.0110%" height="15" fill="rgb(228,187,13)" fg:x="40167" fg:w="16"/><text x="27.7641%" y="879.50"></text></g><g><title>[libc-2.31.so] (48 samples, 0.03%)</title><rect x="27.5257%" y="885" width="0.0329%" height="15" fill="rgb(240,119,24)" fg:x="40184" fg:w="48"/><text x="27.7757%" y="895.50"></text></g><g><title>find_lowest_bit (262 samples, 0.18%)</title><rect x="27.5600%" y="885" width="0.1795%" height="15" fill="rgb(209,194,42)" fg:x="40234" fg:w="262"/><text x="27.8100%" y="895.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (3,011 samples, 2.06%)</title><rect x="25.6783%" y="901" width="2.0625%" height="15" fill="rgb(247,200,46)" fg:x="37487" fg:w="3011"/><text x="25.9283%" y="911.50">P..</text></g><g><title>IndexSet::IndexSet (24 samples, 0.02%)</title><rect x="27.8038%" y="885" width="0.0164%" height="15" fill="rgb(218,76,16)" fg:x="40590" fg:w="24"/><text x="28.0538%" y="895.50"></text></g><g><title>IndexSet::free_block (15 samples, 0.01%)</title><rect x="27.8217%" y="885" width="0.0103%" height="15" fill="rgb(225,21,48)" fg:x="40616" fg:w="15"/><text x="28.0717%" y="895.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (139 samples, 0.10%)</title><rect x="27.7415%" y="901" width="0.0952%" height="15" fill="rgb(239,223,50)" fg:x="40499" fg:w="139"/><text x="27.9915%" y="911.50"></text></g><g><title>PhaseIFG::Union (28 samples, 0.02%)</title><rect x="27.9114%" y="853" width="0.0192%" height="15" fill="rgb(244,45,21)" fg:x="40747" fg:w="28"/><text x="28.1614%" y="863.50"></text></g><g><title>PhaseCoalesce::combine_these_two (55 samples, 0.04%)</title><rect x="27.8963%" y="869" width="0.0377%" height="15" fill="rgb(232,33,43)" fg:x="40725" fg:w="55"/><text x="28.1463%" y="879.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (133 samples, 0.09%)</title><rect x="27.8443%" y="885" width="0.0911%" height="15" fill="rgb(209,8,3)" fg:x="40649" fg:w="133"/><text x="28.0943%" y="895.50"></text></g><g><title>Block::has_uncommon_code (23 samples, 0.02%)</title><rect x="28.0169%" y="853" width="0.0158%" height="15" fill="rgb(214,25,53)" fg:x="40901" fg:w="23"/><text x="28.2669%" y="863.50"></text></g><g><title>PhaseCFG::is_uncommon (112 samples, 0.08%)</title><rect x="27.9566%" y="869" width="0.0767%" height="15" fill="rgb(254,186,54)" fg:x="40813" fg:w="112"/><text x="28.2066%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (24 samples, 0.02%)</title><rect x="28.2354%" y="837" width="0.0164%" height="15" fill="rgb(208,174,49)" fg:x="41220" fg:w="24"/><text x="28.4854%" y="847.50"></text></g><g><title>IndexSet::lrg_union (285 samples, 0.20%)</title><rect x="28.0593%" y="853" width="0.1952%" height="15" fill="rgb(233,191,51)" fg:x="40963" fg:w="285"/><text x="28.3093%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (26 samples, 0.02%)</title><rect x="28.5882%" y="837" width="0.0178%" height="15" fill="rgb(222,134,10)" fg:x="41735" fg:w="26"/><text x="28.8382%" y="847.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (502 samples, 0.34%)</title><rect x="28.2648%" y="853" width="0.3439%" height="15" fill="rgb(230,226,20)" fg:x="41263" fg:w="502"/><text x="28.5148%" y="863.50"></text></g><g><title>PhaseIFG::effective_degree (92 samples, 0.06%)</title><rect x="28.6087%" y="853" width="0.0630%" height="15" fill="rgb(251,111,25)" fg:x="41765" fg:w="92"/><text x="28.8587%" y="863.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (942 samples, 0.65%)</title><rect x="28.0333%" y="869" width="0.6453%" height="15" fill="rgb(224,40,46)" fg:x="40925" fg:w="942"/><text x="28.2833%" y="879.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,231 samples, 0.84%)</title><rect x="27.8367%" y="901" width="0.8432%" height="15" fill="rgb(236,108,47)" fg:x="40638" fg:w="1231"/><text x="28.0867%" y="911.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,087 samples, 0.74%)</title><rect x="27.9354%" y="885" width="0.7446%" height="15" fill="rgb(234,93,0)" fg:x="40782" fg:w="1087"/><text x="28.1854%" y="895.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (24 samples, 0.02%)</title><rect x="28.8978%" y="885" width="0.0164%" height="15" fill="rgb(224,213,32)" fg:x="42187" fg:w="24"/><text x="29.1478%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (406 samples, 0.28%)</title><rect x="28.9142%" y="885" width="0.2781%" height="15" fill="rgb(251,11,48)" fg:x="42211" fg:w="406"/><text x="29.1642%" y="895.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (748 samples, 0.51%)</title><rect x="28.6806%" y="901" width="0.5124%" height="15" fill="rgb(236,173,5)" fg:x="41870" fg:w="748"/><text x="28.9306%" y="911.50"></text></g><g><title>IndexSet::alloc_block_containing (37 samples, 0.03%)</title><rect x="29.3828%" y="885" width="0.0253%" height="15" fill="rgb(230,95,12)" fg:x="42895" fg:w="37"/><text x="29.6328%" y="895.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (72 samples, 0.05%)</title><rect x="29.4081%" y="885" width="0.0493%" height="15" fill="rgb(232,209,1)" fg:x="42932" fg:w="72"/><text x="29.6581%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (309 samples, 0.21%)</title><rect x="29.4574%" y="885" width="0.2117%" height="15" fill="rgb(232,6,1)" fg:x="43004" fg:w="309"/><text x="29.7074%" y="895.50"></text></g><g><title>PhaseIFG::SquareUp (695 samples, 0.48%)</title><rect x="29.1937%" y="901" width="0.4761%" height="15" fill="rgb(210,224,50)" fg:x="42619" fg:w="695"/><text x="29.4437%" y="911.50"></text></g><g><title>IndexSet::initialize (171 samples, 0.12%)</title><rect x="29.7266%" y="885" width="0.1171%" height="15" fill="rgb(228,127,35)" fg:x="43397" fg:w="171"/><text x="29.9766%" y="895.50"></text></g><g><title>exc_page_fault (16 samples, 0.01%)</title><rect x="29.8636%" y="853" width="0.0110%" height="15" fill="rgb(245,102,45)" fg:x="43597" fg:w="16"/><text x="30.1136%" y="863.50"></text></g><g><title>do_user_addr_fault (16 samples, 0.01%)</title><rect x="29.8636%" y="837" width="0.0110%" height="15" fill="rgb(214,1,49)" fg:x="43597" fg:w="16"/><text x="30.1136%" y="847.50"></text></g><g><title>handle_mm_fault (16 samples, 0.01%)</title><rect x="29.8636%" y="821" width="0.0110%" height="15" fill="rgb(226,163,40)" fg:x="43597" fg:w="16"/><text x="30.1136%" y="831.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="29.8636%" y="869" width="0.0116%" height="15" fill="rgb(239,212,28)" fg:x="43597" fg:w="17"/><text x="30.1136%" y="879.50"></text></g><g><title>PhaseIFG::init (304 samples, 0.21%)</title><rect x="29.6698%" y="901" width="0.2082%" height="15" fill="rgb(220,20,13)" fg:x="43314" fg:w="304"/><text x="29.9198%" y="911.50"></text></g><g><title>[libc-2.31.so] (50 samples, 0.03%)</title><rect x="29.8438%" y="885" width="0.0342%" height="15" fill="rgb(210,164,35)" fg:x="43568" fg:w="50"/><text x="30.0938%" y="895.50"></text></g><g><title>IndexSet::alloc_block_containing (49 samples, 0.03%)</title><rect x="30.5103%" y="885" width="0.0336%" height="15" fill="rgb(248,109,41)" fg:x="44541" fg:w="49"/><text x="30.7603%" y="895.50"></text></g><g><title>__tls_get_addr (19 samples, 0.01%)</title><rect x="30.5637%" y="869" width="0.0130%" height="15" fill="rgb(238,23,50)" fg:x="44619" fg:w="19"/><text x="30.8137%" y="879.50"></text></g><g><title>IndexSet::free_block (50 samples, 0.03%)</title><rect x="30.5438%" y="885" width="0.0342%" height="15" fill="rgb(211,48,49)" fg:x="44590" fg:w="50"/><text x="30.7938%" y="895.50"></text></g><g><title>IndexSet::initialize (93 samples, 0.06%)</title><rect x="30.5781%" y="885" width="0.0637%" height="15" fill="rgb(223,36,21)" fg:x="44640" fg:w="93"/><text x="30.8281%" y="895.50"></text></g><g><title>__tls_get_addr (42 samples, 0.03%)</title><rect x="31.0671%" y="853" width="0.0288%" height="15" fill="rgb(207,123,46)" fg:x="45354" fg:w="42"/><text x="31.3171%" y="863.50"></text></g><g><title>update_get_addr (23 samples, 0.02%)</title><rect x="31.0802%" y="837" width="0.0158%" height="15" fill="rgb(240,218,32)" fg:x="45373" fg:w="23"/><text x="31.3302%" y="847.50"></text></g><g><title>IndexSet::alloc_block_containing (164 samples, 0.11%)</title><rect x="30.9856%" y="869" width="0.1123%" height="15" fill="rgb(252,5,43)" fg:x="45235" fg:w="164"/><text x="31.2356%" y="879.50"></text></g><g><title>IndexSet::initialize (27 samples, 0.02%)</title><rect x="31.0980%" y="869" width="0.0185%" height="15" fill="rgb(252,84,19)" fg:x="45399" fg:w="27"/><text x="31.3480%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (230 samples, 0.16%)</title><rect x="31.1185%" y="869" width="0.1575%" height="15" fill="rgb(243,152,39)" fg:x="45429" fg:w="230"/><text x="31.3685%" y="879.50"></text></g><g><title>PhaseLive::add_liveout (934 samples, 0.64%)</title><rect x="30.6425%" y="885" width="0.6398%" height="15" fill="rgb(234,160,15)" fg:x="44734" fg:w="934"/><text x="30.8925%" y="895.50"></text></g><g><title>PhaseLive::compute (2,062 samples, 1.41%)</title><rect x="29.8787%" y="901" width="1.4125%" height="15" fill="rgb(237,34,20)" fg:x="43619" fg:w="2062"/><text x="30.1287%" y="911.50"></text></g><g><title>RegMask::Size (30 samples, 0.02%)</title><rect x="31.2925%" y="901" width="0.0205%" height="15" fill="rgb(229,97,13)" fg:x="45683" fg:w="30"/><text x="31.5425%" y="911.50"></text></g><g><title>find_lowest_bit (23 samples, 0.02%)</title><rect x="31.3302%" y="901" width="0.0158%" height="15" fill="rgb(234,71,50)" fg:x="45738" fg:w="23"/><text x="31.5802%" y="911.50"></text></g><g><title>PhaseChaitin::Register_Allocate (23,903 samples, 16.37%)</title><rect x="14.9794%" y="917" width="16.3734%" height="15" fill="rgb(253,155,4)" fg:x="21868" fg:w="23903"/><text x="15.2294%" y="927.50">PhaseChaitin::Register_Al..</text></g><g><title>PhasePeephole::do_transform (38 samples, 0.03%)</title><rect x="31.3535%" y="917" width="0.0260%" height="15" fill="rgb(222,185,37)" fg:x="45772" fg:w="38"/><text x="31.6035%" y="927.50"></text></g><g><title>Compile::Code_Gen (30,186 samples, 20.68%)</title><rect x="10.7044%" y="933" width="20.6772%" height="15" fill="rgb(251,177,13)" fg:x="15627" fg:w="30186"/><text x="10.9544%" y="943.50">Compile::Code_Gen</text></g><g><title>Compile::call_generator (32 samples, 0.02%)</title><rect x="31.3994%" y="549" width="0.0219%" height="15" fill="rgb(250,179,40)" fg:x="45839" fg:w="32"/><text x="31.6494%" y="559.50"></text></g><g><title>InlineTree::ok_to_inline (25 samples, 0.02%)</title><rect x="31.4042%" y="533" width="0.0171%" height="15" fill="rgb(242,44,2)" fg:x="45846" fg:w="25"/><text x="31.6542%" y="543.50"></text></g><g><title>ciMethod::get_flow_analysis (25 samples, 0.02%)</title><rect x="31.4042%" y="517" width="0.0171%" height="15" fill="rgb(216,177,13)" fg:x="45846" fg:w="25"/><text x="31.6542%" y="527.50"></text></g><g><title>ciTypeFlow::do_flow (25 samples, 0.02%)</title><rect x="31.4042%" y="501" width="0.0171%" height="15" fill="rgb(216,106,43)" fg:x="45846" fg:w="25"/><text x="31.6542%" y="511.50"></text></g><g><title>ciTypeFlow::flow_types (25 samples, 0.02%)</title><rect x="31.4042%" y="485" width="0.0171%" height="15" fill="rgb(216,183,2)" fg:x="45846" fg:w="25"/><text x="31.6542%" y="495.50"></text></g><g><title>ciTypeFlow::df_flow_types (24 samples, 0.02%)</title><rect x="31.4049%" y="469" width="0.0164%" height="15" fill="rgb(249,75,3)" fg:x="45847" fg:w="24"/><text x="31.6549%" y="479.50"></text></g><g><title>ciTypeFlow::flow_block (24 samples, 0.02%)</title><rect x="31.4049%" y="453" width="0.0164%" height="15" fill="rgb(219,67,39)" fg:x="45847" fg:w="24"/><text x="31.6549%" y="463.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (22 samples, 0.02%)</title><rect x="31.4062%" y="437" width="0.0151%" height="15" fill="rgb(253,228,2)" fg:x="45849" fg:w="22"/><text x="31.6562%" y="447.50"></text></g><g><title>InlineTree::ok_to_inline (15 samples, 0.01%)</title><rect x="31.4610%" y="341" width="0.0103%" height="15" fill="rgb(235,138,27)" fg:x="45929" fg:w="15"/><text x="31.7110%" y="351.50"></text></g><g><title>Compile::call_generator (17 samples, 0.01%)</title><rect x="31.4603%" y="357" width="0.0116%" height="15" fill="rgb(236,97,51)" fg:x="45928" fg:w="17"/><text x="31.7103%" y="367.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.02%)</title><rect x="31.5055%" y="213" width="0.0199%" height="15" fill="rgb(240,80,30)" fg:x="45994" fg:w="29"/><text x="31.7555%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="31.5069%" y="197" width="0.0185%" height="15" fill="rgb(230,178,19)" fg:x="45996" fg:w="27"/><text x="31.7569%" y="207.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.02%)</title><rect x="31.5049%" y="229" width="0.0219%" height="15" fill="rgb(210,190,27)" fg:x="45993" fg:w="32"/><text x="31.7549%" y="239.50"></text></g><g><title>ParseGenerator::generate (36 samples, 0.02%)</title><rect x="31.5035%" y="261" width="0.0247%" height="15" fill="rgb(222,107,31)" fg:x="45991" fg:w="36"/><text x="31.7535%" y="271.50"></text></g><g><title>Parse::Parse (36 samples, 0.02%)</title><rect x="31.5035%" y="245" width="0.0247%" height="15" fill="rgb(216,127,34)" fg:x="45991" fg:w="36"/><text x="31.7535%" y="255.50"></text></g><g><title>Parse::do_call (65 samples, 0.04%)</title><rect x="31.4877%" y="277" width="0.0445%" height="15" fill="rgb(234,116,52)" fg:x="45968" fg:w="65"/><text x="31.7377%" y="287.50"></text></g><g><title>Parse::do_field_access (22 samples, 0.02%)</title><rect x="31.5329%" y="277" width="0.0151%" height="15" fill="rgb(222,124,15)" fg:x="46034" fg:w="22"/><text x="31.7829%" y="287.50"></text></g><g><title>Parse::do_all_blocks (106 samples, 0.07%)</title><rect x="31.4823%" y="325" width="0.0726%" height="15" fill="rgb(231,179,28)" fg:x="45960" fg:w="106"/><text x="31.7323%" y="335.50"></text></g><g><title>Parse::do_one_block (104 samples, 0.07%)</title><rect x="31.4836%" y="309" width="0.0712%" height="15" fill="rgb(226,93,45)" fg:x="45962" fg:w="104"/><text x="31.7336%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.07%)</title><rect x="31.4843%" y="293" width="0.0706%" height="15" fill="rgb(215,8,51)" fg:x="45963" fg:w="103"/><text x="31.7343%" y="303.50"></text></g><g><title>ParseGenerator::generate (115 samples, 0.08%)</title><rect x="31.4802%" y="357" width="0.0788%" height="15" fill="rgb(223,106,5)" fg:x="45957" fg:w="115"/><text x="31.7302%" y="367.50"></text></g><g><title>Parse::Parse (114 samples, 0.08%)</title><rect x="31.4809%" y="341" width="0.0781%" height="15" fill="rgb(250,191,5)" fg:x="45958" fg:w="114"/><text x="31.7309%" y="351.50"></text></g><g><title>Parse::do_call (165 samples, 0.11%)</title><rect x="31.4603%" y="373" width="0.1130%" height="15" fill="rgb(242,132,44)" fg:x="45928" fg:w="165"/><text x="31.7103%" y="383.50"></text></g><g><title>Parse::do_field_access (18 samples, 0.01%)</title><rect x="31.5734%" y="373" width="0.0123%" height="15" fill="rgb(251,152,29)" fg:x="46093" fg:w="18"/><text x="31.8234%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (202 samples, 0.14%)</title><rect x="31.4576%" y="389" width="0.1384%" height="15" fill="rgb(218,179,5)" fg:x="45924" fg:w="202"/><text x="31.7076%" y="399.50"></text></g><g><title>Parse::do_one_block (205 samples, 0.14%)</title><rect x="31.4562%" y="405" width="0.1404%" height="15" fill="rgb(227,67,19)" fg:x="45922" fg:w="205"/><text x="31.7062%" y="415.50"></text></g><g><title>Parse::do_all_blocks (208 samples, 0.14%)</title><rect x="31.4562%" y="421" width="0.1425%" height="15" fill="rgb(233,119,31)" fg:x="45922" fg:w="208"/><text x="31.7062%" y="431.50"></text></g><g><title>ParseGenerator::generate (223 samples, 0.15%)</title><rect x="31.4480%" y="453" width="0.1528%" height="15" fill="rgb(241,120,22)" fg:x="45910" fg:w="223"/><text x="31.6980%" y="463.50"></text></g><g><title>Parse::Parse (223 samples, 0.15%)</title><rect x="31.4480%" y="437" width="0.1528%" height="15" fill="rgb(224,102,30)" fg:x="45910" fg:w="223"/><text x="31.6980%" y="447.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="31.6028%" y="357" width="0.0116%" height="15" fill="rgb(210,164,37)" fg:x="46136" fg:w="17"/><text x="31.8528%" y="367.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="31.6028%" y="405" width="0.0123%" height="15" fill="rgb(226,191,16)" fg:x="46136" fg:w="18"/><text x="31.8528%" y="415.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="31.6028%" y="389" width="0.0123%" height="15" fill="rgb(214,40,45)" fg:x="46136" fg:w="18"/><text x="31.8528%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="31.6028%" y="373" width="0.0123%" height="15" fill="rgb(244,29,26)" fg:x="46136" fg:w="18"/><text x="31.8528%" y="383.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="31.6028%" y="437" width="0.0130%" height="15" fill="rgb(216,16,5)" fg:x="46136" fg:w="19"/><text x="31.8528%" y="447.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="31.6028%" y="421" width="0.0130%" height="15" fill="rgb(249,76,35)" fg:x="46136" fg:w="19"/><text x="31.8528%" y="431.50"></text></g><g><title>PredictedCallGenerator::generate (27 samples, 0.02%)</title><rect x="31.6008%" y="453" width="0.0185%" height="15" fill="rgb(207,11,44)" fg:x="46133" fg:w="27"/><text x="31.8508%" y="463.50"></text></g><g><title>Parse::do_call (289 samples, 0.20%)</title><rect x="31.4281%" y="469" width="0.1980%" height="15" fill="rgb(228,190,49)" fg:x="45881" fg:w="289"/><text x="31.6781%" y="479.50"></text></g><g><title>Parse::do_field_access (27 samples, 0.02%)</title><rect x="31.6275%" y="469" width="0.0185%" height="15" fill="rgb(214,173,12)" fg:x="46172" fg:w="27"/><text x="31.8775%" y="479.50"></text></g><g><title>Parse::do_one_block (337 samples, 0.23%)</title><rect x="31.4233%" y="501" width="0.2308%" height="15" fill="rgb(218,26,35)" fg:x="45874" fg:w="337"/><text x="31.6733%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (336 samples, 0.23%)</title><rect x="31.4240%" y="485" width="0.2302%" height="15" fill="rgb(220,200,19)" fg:x="45875" fg:w="336"/><text x="31.6740%" y="495.50"></text></g><g><title>Parse::do_all_blocks (338 samples, 0.23%)</title><rect x="31.4233%" y="517" width="0.2315%" height="15" fill="rgb(239,95,49)" fg:x="45874" fg:w="338"/><text x="31.6733%" y="527.50"></text></g><g><title>ParseGenerator::generate (340 samples, 0.23%)</title><rect x="31.4233%" y="549" width="0.2329%" height="15" fill="rgb(235,85,53)" fg:x="45874" fg:w="340"/><text x="31.6733%" y="559.50"></text></g><g><title>Parse::Parse (340 samples, 0.23%)</title><rect x="31.4233%" y="533" width="0.2329%" height="15" fill="rgb(233,133,31)" fg:x="45874" fg:w="340"/><text x="31.6733%" y="543.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="31.6631%" y="437" width="0.0158%" height="15" fill="rgb(218,25,20)" fg:x="46224" fg:w="23"/><text x="31.9131%" y="447.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="31.6631%" y="421" width="0.0158%" height="15" fill="rgb(252,210,38)" fg:x="46224" fg:w="23"/><text x="31.9131%" y="431.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="31.6631%" y="405" width="0.0158%" height="15" fill="rgb(242,134,21)" fg:x="46224" fg:w="23"/><text x="31.9131%" y="415.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="31.6631%" y="389" width="0.0158%" height="15" fill="rgb(213,28,48)" fg:x="46224" fg:w="23"/><text x="31.9131%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.02%)</title><rect x="31.6638%" y="373" width="0.0151%" height="15" fill="rgb(250,196,2)" fg:x="46225" fg:w="22"/><text x="31.9138%" y="383.50"></text></g><g><title>Parse::do_call (38 samples, 0.03%)</title><rect x="31.6576%" y="453" width="0.0260%" height="15" fill="rgb(227,5,17)" fg:x="46216" fg:w="38"/><text x="31.9076%" y="463.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="31.6562%" y="533" width="0.0281%" height="15" fill="rgb(221,226,24)" fg:x="46214" fg:w="41"/><text x="31.9062%" y="543.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="31.6562%" y="517" width="0.0281%" height="15" fill="rgb(211,5,48)" fg:x="46214" fg:w="41"/><text x="31.9062%" y="527.50"></text></g><g><title>Parse::do_all_blocks (40 samples, 0.03%)</title><rect x="31.6569%" y="501" width="0.0274%" height="15" fill="rgb(219,150,6)" fg:x="46215" fg:w="40"/><text x="31.9069%" y="511.50"></text></g><g><title>Parse::do_one_block (40 samples, 0.03%)</title><rect x="31.6569%" y="485" width="0.0274%" height="15" fill="rgb(251,46,16)" fg:x="46215" fg:w="40"/><text x="31.9069%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.03%)</title><rect x="31.6576%" y="469" width="0.0267%" height="15" fill="rgb(220,204,40)" fg:x="46216" fg:w="39"/><text x="31.9076%" y="479.50"></text></g><g><title>PredictedCallGenerator::generate (44 samples, 0.03%)</title><rect x="31.6562%" y="549" width="0.0301%" height="15" fill="rgb(211,85,2)" fg:x="46214" fg:w="44"/><text x="31.9062%" y="559.50"></text></g><g><title>Parse::do_call (421 samples, 0.29%)</title><rect x="31.3994%" y="565" width="0.2884%" height="15" fill="rgb(229,17,7)" fg:x="45839" fg:w="421"/><text x="31.6494%" y="575.50"></text></g><g><title>Parse::do_all_blocks (425 samples, 0.29%)</title><rect x="31.3994%" y="613" width="0.2911%" height="15" fill="rgb(239,72,28)" fg:x="45839" fg:w="425"/><text x="31.6494%" y="623.50"></text></g><g><title>Parse::do_one_block (425 samples, 0.29%)</title><rect x="31.3994%" y="597" width="0.2911%" height="15" fill="rgb(230,47,54)" fg:x="45839" fg:w="425"/><text x="31.6494%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (425 samples, 0.29%)</title><rect x="31.3994%" y="581" width="0.2911%" height="15" fill="rgb(214,50,8)" fg:x="45839" fg:w="425"/><text x="31.6494%" y="591.50"></text></g><g><title>ParseGenerator::generate (426 samples, 0.29%)</title><rect x="31.3994%" y="645" width="0.2918%" height="15" fill="rgb(216,198,43)" fg:x="45839" fg:w="426"/><text x="31.6494%" y="655.50"></text></g><g><title>Parse::Parse (426 samples, 0.29%)</title><rect x="31.3994%" y="629" width="0.2918%" height="15" fill="rgb(234,20,35)" fg:x="45839" fg:w="426"/><text x="31.6494%" y="639.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="31.7015%" y="357" width="0.0110%" height="15" fill="rgb(254,45,19)" fg:x="46280" fg:w="16"/><text x="31.9515%" y="367.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="31.7008%" y="437" width="0.0137%" height="15" fill="rgb(219,14,44)" fg:x="46279" fg:w="20"/><text x="31.9508%" y="447.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="31.7008%" y="421" width="0.0137%" height="15" fill="rgb(217,220,26)" fg:x="46279" fg:w="20"/><text x="31.9508%" y="431.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="31.7015%" y="405" width="0.0130%" height="15" fill="rgb(213,158,28)" fg:x="46280" fg:w="19"/><text x="31.9515%" y="415.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="31.7015%" y="389" width="0.0130%" height="15" fill="rgb(252,51,52)" fg:x="46280" fg:w="19"/><text x="31.9515%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="31.7015%" y="373" width="0.0130%" height="15" fill="rgb(246,89,16)" fg:x="46280" fg:w="19"/><text x="31.9515%" y="383.50"></text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="31.6960%" y="453" width="0.0219%" height="15" fill="rgb(216,158,49)" fg:x="46272" fg:w="32"/><text x="31.9460%" y="463.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.03%)</title><rect x="31.6953%" y="533" width="0.0267%" height="15" fill="rgb(236,107,19)" fg:x="46271" fg:w="39"/><text x="31.9453%" y="543.50"></text></g><g><title>Parse::Parse (39 samples, 0.03%)</title><rect x="31.6953%" y="517" width="0.0267%" height="15" fill="rgb(228,185,30)" fg:x="46271" fg:w="39"/><text x="31.9453%" y="527.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.03%)</title><rect x="31.6953%" y="501" width="0.0267%" height="15" fill="rgb(246,134,8)" fg:x="46271" fg:w="39"/><text x="31.9453%" y="511.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.03%)</title><rect x="31.6953%" y="485" width="0.0267%" height="15" fill="rgb(214,143,50)" fg:x="46271" fg:w="39"/><text x="31.9453%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.03%)</title><rect x="31.6960%" y="469" width="0.0260%" height="15" fill="rgb(228,75,8)" fg:x="46272" fg:w="38"/><text x="31.9460%" y="479.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="31.7254%" y="341" width="0.0123%" height="15" fill="rgb(207,175,4)" fg:x="46315" fg:w="18"/><text x="31.9754%" y="351.50"></text></g><g><title>ParseGenerator::generate (15 samples, 0.01%)</title><rect x="31.7275%" y="325" width="0.0103%" height="15" fill="rgb(205,108,24)" fg:x="46318" fg:w="15"/><text x="31.9775%" y="335.50"></text></g><g><title>Parse::Parse (15 samples, 0.01%)</title><rect x="31.7275%" y="309" width="0.0103%" height="15" fill="rgb(244,120,49)" fg:x="46318" fg:w="15"/><text x="31.9775%" y="319.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="31.7254%" y="389" width="0.0137%" height="15" fill="rgb(223,47,38)" fg:x="46315" fg:w="20"/><text x="31.9754%" y="399.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="31.7254%" y="373" width="0.0137%" height="15" fill="rgb(229,179,11)" fg:x="46315" fg:w="20"/><text x="31.9754%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="31.7254%" y="357" width="0.0137%" height="15" fill="rgb(231,122,1)" fg:x="46315" fg:w="20"/><text x="31.9754%" y="367.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="31.7254%" y="421" width="0.0144%" height="15" fill="rgb(245,119,9)" fg:x="46315" fg:w="21"/><text x="31.9754%" y="431.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="31.7254%" y="405" width="0.0144%" height="15" fill="rgb(241,163,25)" fg:x="46315" fg:w="21"/><text x="31.9754%" y="415.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="31.7227%" y="437" width="0.0192%" height="15" fill="rgb(217,214,3)" fg:x="46311" fg:w="28"/><text x="31.9727%" y="447.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.02%)</title><rect x="31.7220%" y="517" width="0.0219%" height="15" fill="rgb(240,86,28)" fg:x="46310" fg:w="32"/><text x="31.9720%" y="527.50"></text></g><g><title>Parse::Parse (32 samples, 0.02%)</title><rect x="31.7220%" y="501" width="0.0219%" height="15" fill="rgb(215,47,9)" fg:x="46310" fg:w="32"/><text x="31.9720%" y="511.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.02%)</title><rect x="31.7220%" y="485" width="0.0219%" height="15" fill="rgb(252,25,45)" fg:x="46310" fg:w="32"/><text x="31.9720%" y="495.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="31.7220%" y="469" width="0.0219%" height="15" fill="rgb(251,164,9)" fg:x="46310" fg:w="32"/><text x="31.9720%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.02%)</title><rect x="31.7227%" y="453" width="0.0212%" height="15" fill="rgb(233,194,0)" fg:x="46311" fg:w="31"/><text x="31.9727%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (33 samples, 0.02%)</title><rect x="31.7220%" y="533" width="0.0226%" height="15" fill="rgb(249,111,24)" fg:x="46310" fg:w="33"/><text x="31.9720%" y="543.50"></text></g><g><title>Parse::do_call (78 samples, 0.05%)</title><rect x="31.6919%" y="549" width="0.0534%" height="15" fill="rgb(250,223,3)" fg:x="46266" fg:w="78"/><text x="31.9419%" y="559.50"></text></g><g><title>ParseGenerator::generate (80 samples, 0.05%)</title><rect x="31.6912%" y="629" width="0.0548%" height="15" fill="rgb(236,178,37)" fg:x="46265" fg:w="80"/><text x="31.9412%" y="639.50"></text></g><g><title>Parse::Parse (80 samples, 0.05%)</title><rect x="31.6912%" y="613" width="0.0548%" height="15" fill="rgb(241,158,50)" fg:x="46265" fg:w="80"/><text x="31.9412%" y="623.50"></text></g><g><title>Parse::do_all_blocks (79 samples, 0.05%)</title><rect x="31.6919%" y="597" width="0.0541%" height="15" fill="rgb(213,121,41)" fg:x="46266" fg:w="79"/><text x="31.9419%" y="607.50"></text></g><g><title>Parse::do_one_block (79 samples, 0.05%)</title><rect x="31.6919%" y="581" width="0.0541%" height="15" fill="rgb(240,92,3)" fg:x="46266" fg:w="79"/><text x="31.9419%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (79 samples, 0.05%)</title><rect x="31.6919%" y="565" width="0.0541%" height="15" fill="rgb(205,123,3)" fg:x="46266" fg:w="79"/><text x="31.9419%" y="575.50"></text></g><g><title>Parse::do_call (523 samples, 0.36%)</title><rect x="31.3912%" y="661" width="0.3583%" height="15" fill="rgb(205,97,47)" fg:x="45827" fg:w="523"/><text x="31.6412%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (85 samples, 0.06%)</title><rect x="31.6912%" y="645" width="0.0582%" height="15" fill="rgb(247,152,14)" fg:x="46265" fg:w="85"/><text x="31.9412%" y="655.50"></text></g><g><title>ParseGenerator::generate (524 samples, 0.36%)</title><rect x="31.3912%" y="741" width="0.3589%" height="15" fill="rgb(248,195,53)" fg:x="45827" fg:w="524"/><text x="31.6412%" y="751.50"></text></g><g><title>Parse::Parse (524 samples, 0.36%)</title><rect x="31.3912%" y="725" width="0.3589%" height="15" fill="rgb(226,201,16)" fg:x="45827" fg:w="524"/><text x="31.6412%" y="735.50"></text></g><g><title>Parse::do_all_blocks (524 samples, 0.36%)</title><rect x="31.3912%" y="709" width="0.3589%" height="15" fill="rgb(205,98,0)" fg:x="45827" fg:w="524"/><text x="31.6412%" y="719.50"></text></g><g><title>Parse::do_one_block (524 samples, 0.36%)</title><rect x="31.3912%" y="693" width="0.3589%" height="15" fill="rgb(214,191,48)" fg:x="45827" fg:w="524"/><text x="31.6412%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (524 samples, 0.36%)</title><rect x="31.3912%" y="677" width="0.3589%" height="15" fill="rgb(237,112,39)" fg:x="45827" fg:w="524"/><text x="31.6412%" y="687.50"></text></g><g><title>Parse::do_one_block (15 samples, 0.01%)</title><rect x="31.7610%" y="389" width="0.0103%" height="15" fill="rgb(247,203,27)" fg:x="46367" fg:w="15"/><text x="32.0110%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (15 samples, 0.01%)</title><rect x="31.7610%" y="373" width="0.0103%" height="15" fill="rgb(235,124,28)" fg:x="46367" fg:w="15"/><text x="32.0110%" y="383.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="31.7604%" y="437" width="0.0123%" height="15" fill="rgb(208,207,46)" fg:x="46366" fg:w="18"/><text x="32.0104%" y="447.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="31.7604%" y="421" width="0.0123%" height="15" fill="rgb(234,176,4)" fg:x="46366" fg:w="18"/><text x="32.0104%" y="431.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="31.7610%" y="405" width="0.0116%" height="15" fill="rgb(230,133,28)" fg:x="46367" fg:w="17"/><text x="32.0110%" y="415.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="31.7590%" y="453" width="0.0144%" height="15" fill="rgb(211,137,40)" fg:x="46364" fg:w="21"/><text x="32.0090%" y="463.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="31.7569%" y="533" width="0.0192%" height="15" fill="rgb(254,35,13)" fg:x="46361" fg:w="28"/><text x="32.0069%" y="543.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="31.7569%" y="517" width="0.0192%" height="15" fill="rgb(225,49,51)" fg:x="46361" fg:w="28"/><text x="32.0069%" y="527.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="31.7576%" y="501" width="0.0185%" height="15" fill="rgb(251,10,15)" fg:x="46362" fg:w="27"/><text x="32.0076%" y="511.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="31.7576%" y="485" width="0.0185%" height="15" fill="rgb(228,207,15)" fg:x="46362" fg:w="27"/><text x="32.0076%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="31.7576%" y="469" width="0.0185%" height="15" fill="rgb(241,99,19)" fg:x="46362" fg:w="27"/><text x="32.0076%" y="479.50"></text></g><g><title>Parse::do_call (38 samples, 0.03%)</title><rect x="31.7528%" y="549" width="0.0260%" height="15" fill="rgb(207,104,49)" fg:x="46355" fg:w="38"/><text x="32.0028%" y="559.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="31.7521%" y="629" width="0.0281%" height="15" fill="rgb(234,99,18)" fg:x="46354" fg:w="41"/><text x="32.0021%" y="639.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="31.7521%" y="613" width="0.0281%" height="15" fill="rgb(213,191,49)" fg:x="46354" fg:w="41"/><text x="32.0021%" y="623.50"></text></g><g><title>Parse::do_all_blocks (40 samples, 0.03%)</title><rect x="31.7528%" y="597" width="0.0274%" height="15" fill="rgb(210,226,19)" fg:x="46355" fg:w="40"/><text x="32.0028%" y="607.50"></text></g><g><title>Parse::do_one_block (40 samples, 0.03%)</title><rect x="31.7528%" y="581" width="0.0274%" height="15" fill="rgb(229,97,18)" fg:x="46355" fg:w="40"/><text x="32.0028%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (40 samples, 0.03%)</title><rect x="31.7528%" y="565" width="0.0274%" height="15" fill="rgb(211,167,15)" fg:x="46355" fg:w="40"/><text x="32.0028%" y="575.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="31.7809%" y="533" width="0.0123%" height="15" fill="rgb(210,169,34)" fg:x="46396" fg:w="18"/><text x="32.0309%" y="543.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="31.7802%" y="613" width="0.0137%" height="15" fill="rgb(241,121,31)" fg:x="46395" fg:w="20"/><text x="32.0302%" y="623.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="31.7802%" y="597" width="0.0137%" height="15" fill="rgb(232,40,11)" fg:x="46395" fg:w="20"/><text x="32.0302%" y="607.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="31.7802%" y="581" width="0.0137%" height="15" fill="rgb(205,86,26)" fg:x="46395" fg:w="20"/><text x="32.0302%" y="591.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="31.7802%" y="565" width="0.0137%" height="15" fill="rgb(231,126,28)" fg:x="46395" fg:w="20"/><text x="32.0302%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="31.7802%" y="549" width="0.0137%" height="15" fill="rgb(219,221,18)" fg:x="46395" fg:w="20"/><text x="32.0302%" y="559.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.05%)</title><rect x="31.7501%" y="725" width="0.0459%" height="15" fill="rgb(211,40,0)" fg:x="46351" fg:w="67"/><text x="32.0001%" y="735.50"></text></g><g><title>Parse::Parse (67 samples, 0.05%)</title><rect x="31.7501%" y="709" width="0.0459%" height="15" fill="rgb(239,85,43)" fg:x="46351" fg:w="67"/><text x="32.0001%" y="719.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.05%)</title><rect x="31.7501%" y="693" width="0.0459%" height="15" fill="rgb(231,55,21)" fg:x="46351" fg:w="67"/><text x="32.0001%" y="703.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.05%)</title><rect x="31.7501%" y="677" width="0.0459%" height="15" fill="rgb(225,184,43)" fg:x="46351" fg:w="67"/><text x="32.0001%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (66 samples, 0.05%)</title><rect x="31.7508%" y="661" width="0.0452%" height="15" fill="rgb(251,158,41)" fg:x="46352" fg:w="66"/><text x="32.0008%" y="671.50"></text></g><g><title>Parse::do_call (66 samples, 0.05%)</title><rect x="31.7508%" y="645" width="0.0452%" height="15" fill="rgb(234,159,37)" fg:x="46352" fg:w="66"/><text x="32.0008%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (23 samples, 0.02%)</title><rect x="31.7802%" y="629" width="0.0158%" height="15" fill="rgb(216,204,22)" fg:x="46395" fg:w="23"/><text x="32.0302%" y="639.50"></text></g><g><title>ParseGenerator::generate (611 samples, 0.42%)</title><rect x="31.3836%" y="837" width="0.4185%" height="15" fill="rgb(214,17,3)" fg:x="45816" fg:w="611"/><text x="31.6336%" y="847.50"></text></g><g><title>Parse::Parse (611 samples, 0.42%)</title><rect x="31.3836%" y="821" width="0.4185%" height="15" fill="rgb(212,111,17)" fg:x="45816" fg:w="611"/><text x="31.6336%" y="831.50"></text></g><g><title>Parse::do_all_blocks (611 samples, 0.42%)</title><rect x="31.3836%" y="805" width="0.4185%" height="15" fill="rgb(221,157,24)" fg:x="45816" fg:w="611"/><text x="31.6336%" y="815.50"></text></g><g><title>Parse::do_one_block (611 samples, 0.42%)</title><rect x="31.3836%" y="789" width="0.4185%" height="15" fill="rgb(252,16,13)" fg:x="45816" fg:w="611"/><text x="31.6336%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (611 samples, 0.42%)</title><rect x="31.3836%" y="773" width="0.4185%" height="15" fill="rgb(221,62,2)" fg:x="45816" fg:w="611"/><text x="31.6336%" y="783.50"></text></g><g><title>Parse::do_call (611 samples, 0.42%)</title><rect x="31.3836%" y="757" width="0.4185%" height="15" fill="rgb(247,87,22)" fg:x="45816" fg:w="611"/><text x="31.6336%" y="767.50"></text></g><g><title>PredictedCallGenerator::generate (76 samples, 0.05%)</title><rect x="31.7501%" y="741" width="0.0521%" height="15" fill="rgb(215,73,9)" fg:x="46351" fg:w="76"/><text x="32.0001%" y="751.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="31.8248%" y="341" width="0.0123%" height="15" fill="rgb(207,175,33)" fg:x="46460" fg:w="18"/><text x="32.0748%" y="351.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="31.8248%" y="325" width="0.0123%" height="15" fill="rgb(243,129,54)" fg:x="46460" fg:w="18"/><text x="32.0748%" y="335.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="31.8254%" y="309" width="0.0116%" height="15" fill="rgb(227,119,45)" fg:x="46461" fg:w="17"/><text x="32.0754%" y="319.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="31.8254%" y="293" width="0.0116%" height="15" fill="rgb(205,109,36)" fg:x="46461" fg:w="17"/><text x="32.0754%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="31.8261%" y="277" width="0.0110%" height="15" fill="rgb(205,6,39)" fg:x="46462" fg:w="16"/><text x="32.0761%" y="287.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="31.8213%" y="357" width="0.0171%" height="15" fill="rgb(221,32,16)" fg:x="46455" fg:w="25"/><text x="32.0713%" y="367.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.03%)</title><rect x="31.8200%" y="389" width="0.0267%" height="15" fill="rgb(228,144,50)" fg:x="46453" fg:w="39"/><text x="32.0700%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.03%)</title><rect x="31.8200%" y="373" width="0.0267%" height="15" fill="rgb(229,201,53)" fg:x="46453" fg:w="39"/><text x="32.0700%" y="383.50"></text></g><g><title>Parse::do_all_blocks (40 samples, 0.03%)</title><rect x="31.8200%" y="405" width="0.0274%" height="15" fill="rgb(249,153,27)" fg:x="46453" fg:w="40"/><text x="32.0700%" y="415.50"></text></g><g><title>ParseGenerator::generate (46 samples, 0.03%)</title><rect x="31.8186%" y="437" width="0.0315%" height="15" fill="rgb(227,106,25)" fg:x="46451" fg:w="46"/><text x="32.0686%" y="447.50"></text></g><g><title>Parse::Parse (46 samples, 0.03%)</title><rect x="31.8186%" y="421" width="0.0315%" height="15" fill="rgb(230,65,29)" fg:x="46451" fg:w="46"/><text x="32.0686%" y="431.50"></text></g><g><title>Parse::do_call (61 samples, 0.04%)</title><rect x="31.8117%" y="453" width="0.0418%" height="15" fill="rgb(221,57,46)" fg:x="46441" fg:w="61"/><text x="32.0617%" y="463.50"></text></g><g><title>Parse::do_all_blocks (73 samples, 0.05%)</title><rect x="31.8104%" y="501" width="0.0500%" height="15" fill="rgb(229,161,17)" fg:x="46439" fg:w="73"/><text x="32.0604%" y="511.50"></text></g><g><title>Parse::do_one_block (73 samples, 0.05%)</title><rect x="31.8104%" y="485" width="0.0500%" height="15" fill="rgb(222,213,11)" fg:x="46439" fg:w="73"/><text x="32.0604%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (73 samples, 0.05%)</title><rect x="31.8104%" y="469" width="0.0500%" height="15" fill="rgb(235,35,13)" fg:x="46439" fg:w="73"/><text x="32.0604%" y="479.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.05%)</title><rect x="31.8104%" y="533" width="0.0507%" height="15" fill="rgb(233,158,34)" fg:x="46439" fg:w="74"/><text x="32.0604%" y="543.50"></text></g><g><title>Parse::Parse (74 samples, 0.05%)</title><rect x="31.8104%" y="517" width="0.0507%" height="15" fill="rgb(215,151,48)" fg:x="46439" fg:w="74"/><text x="32.0604%" y="527.50"></text></g><g><title>Parse::do_call (84 samples, 0.06%)</title><rect x="31.8063%" y="549" width="0.0575%" height="15" fill="rgb(229,84,14)" fg:x="46433" fg:w="84"/><text x="32.0563%" y="559.50"></text></g><g><title>ParseGenerator::generate (86 samples, 0.06%)</title><rect x="31.8063%" y="629" width="0.0589%" height="15" fill="rgb(229,68,14)" fg:x="46433" fg:w="86"/><text x="32.0563%" y="639.50"></text></g><g><title>Parse::Parse (86 samples, 0.06%)</title><rect x="31.8063%" y="613" width="0.0589%" height="15" fill="rgb(243,106,26)" fg:x="46433" fg:w="86"/><text x="32.0563%" y="623.50"></text></g><g><title>Parse::do_all_blocks (86 samples, 0.06%)</title><rect x="31.8063%" y="597" width="0.0589%" height="15" fill="rgb(206,45,38)" fg:x="46433" fg:w="86"/><text x="32.0563%" y="607.50"></text></g><g><title>Parse::do_one_block (86 samples, 0.06%)</title><rect x="31.8063%" y="581" width="0.0589%" height="15" fill="rgb(226,6,15)" fg:x="46433" fg:w="86"/><text x="32.0563%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.06%)</title><rect x="31.8063%" y="565" width="0.0589%" height="15" fill="rgb(232,22,54)" fg:x="46433" fg:w="86"/><text x="32.0563%" y="575.50"></text></g><g><title>Parse::do_all_blocks (105 samples, 0.07%)</title><rect x="31.8021%" y="693" width="0.0719%" height="15" fill="rgb(229,222,32)" fg:x="46427" fg:w="105"/><text x="32.0521%" y="703.50"></text></g><g><title>Parse::do_one_block (105 samples, 0.07%)</title><rect x="31.8021%" y="677" width="0.0719%" height="15" fill="rgb(228,62,29)" fg:x="46427" fg:w="105"/><text x="32.0521%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (105 samples, 0.07%)</title><rect x="31.8021%" y="661" width="0.0719%" height="15" fill="rgb(251,103,34)" fg:x="46427" fg:w="105"/><text x="32.0521%" y="671.50"></text></g><g><title>Parse::do_call (105 samples, 0.07%)</title><rect x="31.8021%" y="645" width="0.0719%" height="15" fill="rgb(233,12,30)" fg:x="46427" fg:w="105"/><text x="32.0521%" y="655.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.07%)</title><rect x="31.8021%" y="725" width="0.0726%" height="15" fill="rgb(238,52,0)" fg:x="46427" fg:w="106"/><text x="32.0521%" y="735.50"></text></g><g><title>Parse::Parse (106 samples, 0.07%)</title><rect x="31.8021%" y="709" width="0.0726%" height="15" fill="rgb(223,98,5)" fg:x="46427" fg:w="106"/><text x="32.0521%" y="719.50"></text></g><g><title>ParseGenerator::generate (122 samples, 0.08%)</title><rect x="31.8021%" y="821" width="0.0836%" height="15" fill="rgb(228,75,37)" fg:x="46427" fg:w="122"/><text x="32.0521%" y="831.50"></text></g><g><title>Parse::Parse (122 samples, 0.08%)</title><rect x="31.8021%" y="805" width="0.0836%" height="15" fill="rgb(205,115,49)" fg:x="46427" fg:w="122"/><text x="32.0521%" y="815.50"></text></g><g><title>Parse::do_all_blocks (122 samples, 0.08%)</title><rect x="31.8021%" y="789" width="0.0836%" height="15" fill="rgb(250,154,43)" fg:x="46427" fg:w="122"/><text x="32.0521%" y="799.50"></text></g><g><title>Parse::do_one_block (122 samples, 0.08%)</title><rect x="31.8021%" y="773" width="0.0836%" height="15" fill="rgb(226,43,29)" fg:x="46427" fg:w="122"/><text x="32.0521%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (122 samples, 0.08%)</title><rect x="31.8021%" y="757" width="0.0836%" height="15" fill="rgb(249,228,39)" fg:x="46427" fg:w="122"/><text x="32.0521%" y="767.50"></text></g><g><title>Parse::do_call (122 samples, 0.08%)</title><rect x="31.8021%" y="741" width="0.0836%" height="15" fill="rgb(216,79,43)" fg:x="46427" fg:w="122"/><text x="32.0521%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (16 samples, 0.01%)</title><rect x="31.8748%" y="725" width="0.0110%" height="15" fill="rgb(228,95,12)" fg:x="46533" fg:w="16"/><text x="32.1248%" y="735.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="31.8748%" y="709" width="0.0110%" height="15" fill="rgb(249,221,15)" fg:x="46533" fg:w="16"/><text x="32.1248%" y="719.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="31.8748%" y="693" width="0.0110%" height="15" fill="rgb(233,34,13)" fg:x="46533" fg:w="16"/><text x="32.1248%" y="703.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="31.8748%" y="677" width="0.0110%" height="15" fill="rgb(214,103,39)" fg:x="46533" fg:w="16"/><text x="32.1248%" y="687.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="31.8748%" y="661" width="0.0110%" height="15" fill="rgb(251,126,39)" fg:x="46533" fg:w="16"/><text x="32.1248%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="31.8748%" y="645" width="0.0110%" height="15" fill="rgb(214,216,36)" fg:x="46533" fg:w="16"/><text x="32.1248%" y="655.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="31.8748%" y="629" width="0.0110%" height="15" fill="rgb(220,221,8)" fg:x="46533" fg:w="16"/><text x="32.1248%" y="639.50"></text></g><g><title>ParseGenerator::generate (15 samples, 0.01%)</title><rect x="31.8871%" y="613" width="0.0103%" height="15" fill="rgb(240,216,3)" fg:x="46551" fg:w="15"/><text x="32.1371%" y="623.50"></text></g><g><title>Parse::Parse (15 samples, 0.01%)</title><rect x="31.8871%" y="597" width="0.0103%" height="15" fill="rgb(232,218,17)" fg:x="46551" fg:w="15"/><text x="32.1371%" y="607.50"></text></g><g><title>Parse::do_all_blocks (15 samples, 0.01%)</title><rect x="31.8871%" y="581" width="0.0103%" height="15" fill="rgb(229,163,45)" fg:x="46551" fg:w="15"/><text x="32.1371%" y="591.50"></text></g><g><title>Parse::do_one_block (15 samples, 0.01%)</title><rect x="31.8871%" y="565" width="0.0103%" height="15" fill="rgb(231,110,42)" fg:x="46551" fg:w="15"/><text x="32.1371%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (15 samples, 0.01%)</title><rect x="31.8871%" y="549" width="0.0103%" height="15" fill="rgb(208,170,48)" fg:x="46551" fg:w="15"/><text x="32.1371%" y="559.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="31.8857%" y="629" width="0.0130%" height="15" fill="rgb(239,116,25)" fg:x="46549" fg:w="19"/><text x="32.1357%" y="639.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.02%)</title><rect x="31.8857%" y="709" width="0.0151%" height="15" fill="rgb(219,200,50)" fg:x="46549" fg:w="22"/><text x="32.1357%" y="719.50"></text></g><g><title>Parse::Parse (22 samples, 0.02%)</title><rect x="31.8857%" y="693" width="0.0151%" height="15" fill="rgb(245,200,0)" fg:x="46549" fg:w="22"/><text x="32.1357%" y="703.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.02%)</title><rect x="31.8857%" y="677" width="0.0151%" height="15" fill="rgb(245,119,33)" fg:x="46549" fg:w="22"/><text x="32.1357%" y="687.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.02%)</title><rect x="31.8857%" y="661" width="0.0151%" height="15" fill="rgb(231,125,12)" fg:x="46549" fg:w="22"/><text x="32.1357%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.02%)</title><rect x="31.8857%" y="645" width="0.0151%" height="15" fill="rgb(216,96,41)" fg:x="46549" fg:w="22"/><text x="32.1357%" y="655.50"></text></g><g><title>ParseGenerator::generate (15 samples, 0.01%)</title><rect x="31.9008%" y="693" width="0.0103%" height="15" fill="rgb(248,43,45)" fg:x="46571" fg:w="15"/><text x="32.1508%" y="703.50"></text></g><g><title>Parse::Parse (15 samples, 0.01%)</title><rect x="31.9008%" y="677" width="0.0103%" height="15" fill="rgb(217,222,7)" fg:x="46571" fg:w="15"/><text x="32.1508%" y="687.50"></text></g><g><title>Parse::do_all_blocks (15 samples, 0.01%)</title><rect x="31.9008%" y="661" width="0.0103%" height="15" fill="rgb(233,28,6)" fg:x="46571" fg:w="15"/><text x="32.1508%" y="671.50"></text></g><g><title>Parse::do_one_block (15 samples, 0.01%)</title><rect x="31.9008%" y="645" width="0.0103%" height="15" fill="rgb(231,218,15)" fg:x="46571" fg:w="15"/><text x="32.1508%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (15 samples, 0.01%)</title><rect x="31.9008%" y="629" width="0.0103%" height="15" fill="rgb(226,171,48)" fg:x="46571" fg:w="15"/><text x="32.1508%" y="639.50"></text></g><g><title>Parse::do_call (15 samples, 0.01%)</title><rect x="31.9008%" y="613" width="0.0103%" height="15" fill="rgb(235,201,9)" fg:x="46571" fg:w="15"/><text x="32.1508%" y="623.50"></text></g><g><title>Compile::Compile (30,965 samples, 21.21%)</title><rect x="10.7044%" y="949" width="21.2108%" height="15" fill="rgb(217,80,15)" fg:x="15627" fg:w="30965"/><text x="10.9544%" y="959.50">Compile::Compile</text></g><g><title>ParseGenerator::generate (776 samples, 0.53%)</title><rect x="31.3836%" y="933" width="0.5316%" height="15" fill="rgb(219,152,8)" fg:x="45816" fg:w="776"/><text x="31.6336%" y="943.50"></text></g><g><title>Parse::Parse (776 samples, 0.53%)</title><rect x="31.3836%" y="917" width="0.5316%" height="15" fill="rgb(243,107,38)" fg:x="45816" fg:w="776"/><text x="31.6336%" y="927.50"></text></g><g><title>Parse::do_all_blocks (776 samples, 0.53%)</title><rect x="31.3836%" y="901" width="0.5316%" height="15" fill="rgb(231,17,5)" fg:x="45816" fg:w="776"/><text x="31.6336%" y="911.50"></text></g><g><title>Parse::do_one_block (776 samples, 0.53%)</title><rect x="31.3836%" y="885" width="0.5316%" height="15" fill="rgb(209,25,54)" fg:x="45816" fg:w="776"/><text x="31.6336%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (776 samples, 0.53%)</title><rect x="31.3836%" y="869" width="0.5316%" height="15" fill="rgb(219,0,2)" fg:x="45816" fg:w="776"/><text x="31.6336%" y="879.50"></text></g><g><title>Parse::do_call (776 samples, 0.53%)</title><rect x="31.3836%" y="853" width="0.5316%" height="15" fill="rgb(246,9,5)" fg:x="45816" fg:w="776"/><text x="31.6336%" y="863.50"></text></g><g><title>PredictedCallGenerator::generate (165 samples, 0.11%)</title><rect x="31.8021%" y="837" width="0.1130%" height="15" fill="rgb(226,159,4)" fg:x="46427" fg:w="165"/><text x="32.0521%" y="847.50"></text></g><g><title>PredictedCallGenerator::generate (43 samples, 0.03%)</title><rect x="31.8857%" y="821" width="0.0295%" height="15" fill="rgb(219,175,34)" fg:x="46549" fg:w="43"/><text x="32.1357%" y="831.50"></text></g><g><title>ParseGenerator::generate (43 samples, 0.03%)</title><rect x="31.8857%" y="805" width="0.0295%" height="15" fill="rgb(236,10,46)" fg:x="46549" fg:w="43"/><text x="32.1357%" y="815.50"></text></g><g><title>Parse::Parse (43 samples, 0.03%)</title><rect x="31.8857%" y="789" width="0.0295%" height="15" fill="rgb(240,211,16)" fg:x="46549" fg:w="43"/><text x="32.1357%" y="799.50"></text></g><g><title>Parse::do_all_blocks (43 samples, 0.03%)</title><rect x="31.8857%" y="773" width="0.0295%" height="15" fill="rgb(205,3,43)" fg:x="46549" fg:w="43"/><text x="32.1357%" y="783.50"></text></g><g><title>Parse::do_one_block (43 samples, 0.03%)</title><rect x="31.8857%" y="757" width="0.0295%" height="15" fill="rgb(245,7,22)" fg:x="46549" fg:w="43"/><text x="32.1357%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (43 samples, 0.03%)</title><rect x="31.8857%" y="741" width="0.0295%" height="15" fill="rgb(239,132,32)" fg:x="46549" fg:w="43"/><text x="32.1357%" y="751.50"></text></g><g><title>Parse::do_call (43 samples, 0.03%)</title><rect x="31.8857%" y="725" width="0.0295%" height="15" fill="rgb(228,202,34)" fg:x="46549" fg:w="43"/><text x="32.1357%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (21 samples, 0.01%)</title><rect x="31.9008%" y="709" width="0.0144%" height="15" fill="rgb(254,200,22)" fg:x="46571" fg:w="21"/><text x="32.1508%" y="719.50"></text></g><g><title>Compile::final_graph_reshaping_impl (78 samples, 0.05%)</title><rect x="32.0028%" y="901" width="0.0534%" height="15" fill="rgb(219,10,39)" fg:x="46720" fg:w="78"/><text x="32.2528%" y="911.50"></text></g><g><title>Compile::final_graph_reshaping_walk (211 samples, 0.14%)</title><rect x="31.9200%" y="917" width="0.1445%" height="15" fill="rgb(226,210,39)" fg:x="46599" fg:w="211"/><text x="32.1700%" y="927.50"></text></g><g><title>Compile::final_graph_reshaping (217 samples, 0.15%)</title><rect x="31.9165%" y="933" width="0.1486%" height="15" fill="rgb(208,219,16)" fg:x="46594" fg:w="217"/><text x="32.1665%" y="943.50"></text></g><g><title>Compile::inline_incrementally (19 samples, 0.01%)</title><rect x="32.0652%" y="933" width="0.0130%" height="15" fill="rgb(216,158,51)" fg:x="46811" fg:w="19"/><text x="32.3152%" y="943.50"></text></g><g><title>Compile::inline_incrementally_one (17 samples, 0.01%)</title><rect x="32.0666%" y="917" width="0.0116%" height="15" fill="rgb(233,14,44)" fg:x="46813" fg:w="17"/><text x="32.3166%" y="927.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (15 samples, 0.01%)</title><rect x="32.0679%" y="901" width="0.0103%" height="15" fill="rgb(237,97,39)" fg:x="46815" fg:w="15"/><text x="32.3179%" y="911.50"></text></g><g><title>PhaseIterGVN::optimize (35 samples, 0.02%)</title><rect x="32.1645%" y="917" width="0.0240%" height="15" fill="rgb(218,198,43)" fg:x="46956" fg:w="35"/><text x="32.4145%" y="927.50"></text></g><g><title>PhaseIterGVN::transform_old (35 samples, 0.02%)</title><rect x="32.1645%" y="901" width="0.0240%" height="15" fill="rgb(231,104,20)" fg:x="46956" fg:w="35"/><text x="32.4145%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (36 samples, 0.02%)</title><rect x="32.1885%" y="917" width="0.0247%" height="15" fill="rgb(254,36,13)" fg:x="46991" fg:w="36"/><text x="32.4385%" y="927.50"></text></g><g><title>Compile::remove_speculative_types (194 samples, 0.13%)</title><rect x="32.0857%" y="933" width="0.1329%" height="15" fill="rgb(248,14,50)" fg:x="46841" fg:w="194"/><text x="32.3357%" y="943.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (15 samples, 0.01%)</title><rect x="32.2666%" y="853" width="0.0103%" height="15" fill="rgb(217,107,29)" fg:x="47105" fg:w="15"/><text x="32.5166%" y="863.50"></text></g><g><title>BCEscapeAnalyzer::iterate_blocks (15 samples, 0.01%)</title><rect x="32.2666%" y="837" width="0.0103%" height="15" fill="rgb(251,169,33)" fg:x="47105" fg:w="15"/><text x="32.5166%" y="847.50"></text></g><g><title>BCEscapeAnalyzer::iterate_one_block (15 samples, 0.01%)</title><rect x="32.2666%" y="821" width="0.0103%" height="15" fill="rgb(217,108,32)" fg:x="47105" fg:w="15"/><text x="32.5166%" y="831.50"></text></g><g><title>ConnectionGraph::add_call_node (16 samples, 0.01%)</title><rect x="32.2666%" y="901" width="0.0110%" height="15" fill="rgb(219,66,42)" fg:x="47105" fg:w="16"/><text x="32.5166%" y="911.50"></text></g><g><title>ciMethod::get_bcea (16 samples, 0.01%)</title><rect x="32.2666%" y="885" width="0.0110%" height="15" fill="rgb(206,180,7)" fg:x="47105" fg:w="16"/><text x="32.5166%" y="895.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (16 samples, 0.01%)</title><rect x="32.2666%" y="869" width="0.0110%" height="15" fill="rgb(208,226,31)" fg:x="47105" fg:w="16"/><text x="32.5166%" y="879.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (20 samples, 0.01%)</title><rect x="32.2816%" y="837" width="0.0137%" height="15" fill="rgb(218,26,49)" fg:x="47127" fg:w="20"/><text x="32.5316%" y="847.50"></text></g><g><title>BCEscapeAnalyzer::iterate_blocks (18 samples, 0.01%)</title><rect x="32.2830%" y="821" width="0.0123%" height="15" fill="rgb(233,197,48)" fg:x="47129" fg:w="18"/><text x="32.5330%" y="831.50"></text></g><g><title>BCEscapeAnalyzer::iterate_one_block (17 samples, 0.01%)</title><rect x="32.2837%" y="805" width="0.0116%" height="15" fill="rgb(252,181,51)" fg:x="47130" fg:w="17"/><text x="32.5337%" y="815.50"></text></g><g><title>ConnectionGraph::process_call_arguments (27 samples, 0.02%)</title><rect x="32.2796%" y="885" width="0.0185%" height="15" fill="rgb(253,90,19)" fg:x="47124" fg:w="27"/><text x="32.5296%" y="895.50"></text></g><g><title>ciMethod::get_bcea (24 samples, 0.02%)</title><rect x="32.2816%" y="869" width="0.0164%" height="15" fill="rgb(215,171,30)" fg:x="47127" fg:w="24"/><text x="32.5316%" y="879.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (24 samples, 0.02%)</title><rect x="32.2816%" y="853" width="0.0164%" height="15" fill="rgb(214,222,9)" fg:x="47127" fg:w="24"/><text x="32.5316%" y="863.50"></text></g><g><title>ConnectionGraph::add_final_edges (31 samples, 0.02%)</title><rect x="32.2775%" y="901" width="0.0212%" height="15" fill="rgb(223,3,22)" fg:x="47121" fg:w="31"/><text x="32.5275%" y="911.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (62 samples, 0.04%)</title><rect x="32.3008%" y="901" width="0.0425%" height="15" fill="rgb(225,196,46)" fg:x="47155" fg:w="62"/><text x="32.5508%" y="911.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (49 samples, 0.03%)</title><rect x="32.3611%" y="885" width="0.0336%" height="15" fill="rgb(209,110,37)" fg:x="47243" fg:w="49"/><text x="32.6111%" y="895.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (96 samples, 0.07%)</title><rect x="32.3474%" y="901" width="0.0658%" height="15" fill="rgb(249,89,12)" fg:x="47223" fg:w="96"/><text x="32.5974%" y="911.50"></text></g><g><title>ConnectionGraph::find_inst_mem (19 samples, 0.01%)</title><rect x="32.4234%" y="885" width="0.0130%" height="15" fill="rgb(226,27,33)" fg:x="47334" fg:w="19"/><text x="32.6734%" y="895.50"></text></g><g><title>ConnectionGraph::split_unique_types (33 samples, 0.02%)</title><rect x="32.4200%" y="901" width="0.0226%" height="15" fill="rgb(213,82,22)" fg:x="47329" fg:w="33"/><text x="32.6700%" y="911.50"></text></g><g><title>ConnectionGraph::compute_escape (323 samples, 0.22%)</title><rect x="32.2220%" y="917" width="0.2213%" height="15" fill="rgb(248,140,0)" fg:x="47040" fg:w="323"/><text x="32.4720%" y="927.50"></text></g><g><title>ConnectionGraph::do_analysis (330 samples, 0.23%)</title><rect x="32.2186%" y="933" width="0.2260%" height="15" fill="rgb(228,106,3)" fg:x="47035" fg:w="330"/><text x="32.4686%" y="943.50"></text></g><g><title>AddPNode::bottom_type (18 samples, 0.01%)</title><rect x="32.6022%" y="917" width="0.0123%" height="15" fill="rgb(209,23,37)" fg:x="47595" fg:w="18"/><text x="32.8522%" y="927.50"></text></g><g><title>LoadNode::Value (17 samples, 0.01%)</title><rect x="32.6591%" y="917" width="0.0116%" height="15" fill="rgb(241,93,50)" fg:x="47678" fg:w="17"/><text x="32.9091%" y="927.50"></text></g><g><title>PhiNode::Value (33 samples, 0.02%)</title><rect x="32.6789%" y="917" width="0.0226%" height="15" fill="rgb(253,46,43)" fg:x="47707" fg:w="33"/><text x="32.9289%" y="927.50"></text></g><g><title>Type::hashcons (19 samples, 0.01%)</title><rect x="32.7262%" y="917" width="0.0130%" height="15" fill="rgb(226,206,43)" fg:x="47776" fg:w="19"/><text x="32.9762%" y="927.50"></text></g><g><title>Type::hashcons (15 samples, 0.01%)</title><rect x="32.7495%" y="901" width="0.0103%" height="15" fill="rgb(217,54,7)" fg:x="47810" fg:w="15"/><text x="32.9995%" y="911.50"></text></g><g><title>TypeOopPtr::TypeOopPtr (18 samples, 0.01%)</title><rect x="32.7625%" y="885" width="0.0123%" height="15" fill="rgb(223,5,52)" fg:x="47829" fg:w="18"/><text x="33.0125%" y="895.50"></text></g><g><title>TypeInstPtr::add_offset (42 samples, 0.03%)</title><rect x="32.7488%" y="917" width="0.0288%" height="15" fill="rgb(206,52,46)" fg:x="47809" fg:w="42"/><text x="32.9988%" y="927.50"></text></g><g><title>TypeInstPtr::make (26 samples, 0.02%)</title><rect x="32.7598%" y="901" width="0.0178%" height="15" fill="rgb(253,136,11)" fg:x="47825" fg:w="26"/><text x="33.0098%" y="911.50"></text></g><g><title>VectorSet::operator&gt;&gt;= (16 samples, 0.01%)</title><rect x="32.7844%" y="917" width="0.0110%" height="15" fill="rgb(208,106,33)" fg:x="47861" fg:w="16"/><text x="33.0344%" y="927.50"></text></g><g><title>PhaseCCP::analyze (515 samples, 0.35%)</title><rect x="32.4467%" y="933" width="0.3528%" height="15" fill="rgb(206,54,4)" fg:x="47368" fg:w="515"/><text x="32.6967%" y="943.50"></text></g><g><title>ProjNode::bottom_type (15 samples, 0.01%)</title><rect x="32.8851%" y="885" width="0.0103%" height="15" fill="rgb(213,3,15)" fg:x="48008" fg:w="15"/><text x="33.1351%" y="895.50"></text></g><g><title>PhaseCCP::transform_once (70 samples, 0.05%)</title><rect x="32.8611%" y="901" width="0.0479%" height="15" fill="rgb(252,211,39)" fg:x="47973" fg:w="70"/><text x="33.1111%" y="911.50"></text></g><g><title>PhaseCCP::do_transform (162 samples, 0.11%)</title><rect x="32.7995%" y="933" width="0.1110%" height="15" fill="rgb(223,6,36)" fg:x="47883" fg:w="162"/><text x="33.0495%" y="943.50"></text></g><g><title>PhaseCCP::transform (162 samples, 0.11%)</title><rect x="32.7995%" y="917" width="0.1110%" height="15" fill="rgb(252,169,45)" fg:x="47883" fg:w="162"/><text x="33.0495%" y="927.50"></text></g><g><title>IdealLoopTree::counted_loop (15 samples, 0.01%)</title><rect x="32.9413%" y="885" width="0.0103%" height="15" fill="rgb(212,48,26)" fg:x="48090" fg:w="15"/><text x="33.1913%" y="895.50"></text></g><g><title>IdealLoopTree::counted_loop (28 samples, 0.02%)</title><rect x="32.9392%" y="917" width="0.0192%" height="15" fill="rgb(251,102,48)" fg:x="48087" fg:w="28"/><text x="33.1892%" y="927.50"></text></g><g><title>IdealLoopTree::counted_loop (27 samples, 0.02%)</title><rect x="32.9399%" y="901" width="0.0185%" height="15" fill="rgb(243,208,16)" fg:x="48088" fg:w="27"/><text x="33.1899%" y="911.50"></text></g><g><title>IdealLoopTree::iteration_split (15 samples, 0.01%)</title><rect x="32.9653%" y="757" width="0.0103%" height="15" fill="rgb(219,96,24)" fg:x="48125" fg:w="15"/><text x="33.2153%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (15 samples, 0.01%)</title><rect x="32.9653%" y="741" width="0.0103%" height="15" fill="rgb(219,33,29)" fg:x="48125" fg:w="15"/><text x="33.2153%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (21 samples, 0.01%)</title><rect x="32.9653%" y="773" width="0.0144%" height="15" fill="rgb(223,176,5)" fg:x="48125" fg:w="21"/><text x="33.2153%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (28 samples, 0.02%)</title><rect x="32.9653%" y="805" width="0.0192%" height="15" fill="rgb(228,140,14)" fg:x="48125" fg:w="28"/><text x="33.2153%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (28 samples, 0.02%)</title><rect x="32.9653%" y="789" width="0.0192%" height="15" fill="rgb(217,179,31)" fg:x="48125" fg:w="28"/><text x="33.2153%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (37 samples, 0.03%)</title><rect x="32.9639%" y="821" width="0.0253%" height="15" fill="rgb(230,9,30)" fg:x="48123" fg:w="37"/><text x="33.2139%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split (47 samples, 0.03%)</title><rect x="32.9632%" y="837" width="0.0322%" height="15" fill="rgb(230,136,20)" fg:x="48122" fg:w="47"/><text x="33.2132%" y="847.50"></text></g><g><title>IdealLoopTree::iteration_split (54 samples, 0.04%)</title><rect x="32.9632%" y="853" width="0.0370%" height="15" fill="rgb(215,210,22)" fg:x="48122" fg:w="54"/><text x="33.2132%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split (67 samples, 0.05%)</title><rect x="32.9625%" y="869" width="0.0459%" height="15" fill="rgb(218,43,5)" fg:x="48121" fg:w="67"/><text x="33.2125%" y="879.50"></text></g><g><title>PhaseIdealLoop::clone_loop (15 samples, 0.01%)</title><rect x="33.0125%" y="837" width="0.0103%" height="15" fill="rgb(216,11,5)" fg:x="48194" fg:w="15"/><text x="33.2625%" y="847.50"></text></g><g><title>PhaseIdealLoop::do_unroll (22 samples, 0.02%)</title><rect x="33.0112%" y="853" width="0.0151%" height="15" fill="rgb(209,82,29)" fg:x="48192" fg:w="22"/><text x="33.2612%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (33 samples, 0.02%)</title><rect x="33.0084%" y="869" width="0.0226%" height="15" fill="rgb(244,115,12)" fg:x="48188" fg:w="33"/><text x="33.2584%" y="879.50"></text></g><g><title>IdealLoopTree::iteration_split (106 samples, 0.07%)</title><rect x="32.9618%" y="885" width="0.0726%" height="15" fill="rgb(222,82,18)" fg:x="48120" fg:w="106"/><text x="33.2118%" y="895.50"></text></g><g><title>PhaseIdealLoop::insert_pre_post_loops (16 samples, 0.01%)</title><rect x="33.0420%" y="869" width="0.0110%" height="15" fill="rgb(249,227,8)" fg:x="48237" fg:w="16"/><text x="33.2920%" y="879.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (30 samples, 0.02%)</title><rect x="33.0344%" y="885" width="0.0205%" height="15" fill="rgb(253,141,45)" fg:x="48226" fg:w="30"/><text x="33.2844%" y="895.50"></text></g><g><title>IdealLoopTree::iteration_split (142 samples, 0.10%)</title><rect x="32.9605%" y="901" width="0.0973%" height="15" fill="rgb(234,184,4)" fg:x="48118" fg:w="142"/><text x="33.2105%" y="911.50"></text></g><g><title>IdealLoopTree::iteration_split (163 samples, 0.11%)</title><rect x="32.9584%" y="917" width="0.1117%" height="15" fill="rgb(218,194,23)" fg:x="48115" fg:w="163"/><text x="33.2084%" y="927.50"></text></g><g><title>IdealLoopTree::loop_predication (26 samples, 0.02%)</title><rect x="33.0714%" y="885" width="0.0178%" height="15" fill="rgb(235,66,41)" fg:x="48280" fg:w="26"/><text x="33.3214%" y="895.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (16 samples, 0.01%)</title><rect x="33.0783%" y="869" width="0.0110%" height="15" fill="rgb(245,217,1)" fg:x="48290" fg:w="16"/><text x="33.3283%" y="879.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (25 samples, 0.02%)</title><rect x="33.0954%" y="869" width="0.0171%" height="15" fill="rgb(229,91,1)" fg:x="48315" fg:w="25"/><text x="33.3454%" y="879.50"></text></g><g><title>IdealLoopTree::loop_predication (70 samples, 0.05%)</title><rect x="33.0708%" y="901" width="0.0479%" height="15" fill="rgb(207,101,30)" fg:x="48279" fg:w="70"/><text x="33.3208%" y="911.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (43 samples, 0.03%)</title><rect x="33.0892%" y="885" width="0.0295%" height="15" fill="rgb(223,82,49)" fg:x="48306" fg:w="43"/><text x="33.3392%" y="895.50"></text></g><g><title>PathFrequency::to (15 samples, 0.01%)</title><rect x="33.1256%" y="885" width="0.0103%" height="15" fill="rgb(218,167,17)" fg:x="48359" fg:w="15"/><text x="33.3756%" y="895.50"></text></g><g><title>PathFrequency::to (15 samples, 0.01%)</title><rect x="33.1372%" y="869" width="0.0103%" height="15" fill="rgb(208,103,14)" fg:x="48376" fg:w="15"/><text x="33.3872%" y="879.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (39 samples, 0.03%)</title><rect x="33.1358%" y="885" width="0.0267%" height="15" fill="rgb(238,20,8)" fg:x="48374" fg:w="39"/><text x="33.3858%" y="895.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (30 samples, 0.02%)</title><rect x="33.1625%" y="885" width="0.0205%" height="15" fill="rgb(218,80,54)" fg:x="48413" fg:w="30"/><text x="33.4125%" y="895.50"></text></g><g><title>IdealLoopTree::loop_predication (179 samples, 0.12%)</title><rect x="33.0701%" y="917" width="0.1226%" height="15" fill="rgb(240,144,17)" fg:x="48278" fg:w="179"/><text x="33.3201%" y="927.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (108 samples, 0.07%)</title><rect x="33.1187%" y="901" width="0.0740%" height="15" fill="rgb(245,27,50)" fg:x="48349" fg:w="108"/><text x="33.3687%" y="911.50"></text></g><g><title>Arena::grow (17 samples, 0.01%)</title><rect x="33.5592%" y="901" width="0.0116%" height="15" fill="rgb(251,51,7)" fg:x="48992" fg:w="17"/><text x="33.8092%" y="911.50"></text></g><g><title>NTarjan::DFS (246 samples, 0.17%)</title><rect x="33.5811%" y="901" width="0.1685%" height="15" fill="rgb(245,217,29)" fg:x="49024" fg:w="246"/><text x="33.8311%" y="911.50"></text></g><g><title>handle_mm_fault (19 samples, 0.01%)</title><rect x="33.7660%" y="853" width="0.0130%" height="15" fill="rgb(221,176,29)" fg:x="49294" fg:w="19"/><text x="34.0160%" y="863.50"></text></g><g><title>asm_exc_page_fault (21 samples, 0.01%)</title><rect x="33.7660%" y="901" width="0.0144%" height="15" fill="rgb(212,180,24)" fg:x="49294" fg:w="21"/><text x="34.0160%" y="911.50"></text></g><g><title>exc_page_fault (21 samples, 0.01%)</title><rect x="33.7660%" y="885" width="0.0144%" height="15" fill="rgb(254,24,2)" fg:x="49294" fg:w="21"/><text x="34.0160%" y="895.50"></text></g><g><title>do_user_addr_fault (21 samples, 0.01%)</title><rect x="33.7660%" y="869" width="0.0144%" height="15" fill="rgb(230,100,2)" fg:x="49294" fg:w="21"/><text x="34.0160%" y="879.50"></text></g><g><title>PhaseIdealLoop::Dominators (828 samples, 0.57%)</title><rect x="33.2194%" y="917" width="0.5672%" height="15" fill="rgb(219,142,25)" fg:x="48496" fg:w="828"/><text x="33.4694%" y="927.50"></text></g><g><title>PhaseIdealLoop::dom_depth (38 samples, 0.03%)</title><rect x="34.4181%" y="869" width="0.0260%" height="15" fill="rgb(240,73,43)" fg:x="50246" fg:w="38"/><text x="34.6681%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (91 samples, 0.06%)</title><rect x="34.4442%" y="869" width="0.0623%" height="15" fill="rgb(214,114,15)" fg:x="50284" fg:w="91"/><text x="34.6942%" y="879.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (254 samples, 0.17%)</title><rect x="34.3332%" y="901" width="0.1740%" height="15" fill="rgb(207,130,4)" fg:x="50122" fg:w="254"/><text x="34.5832%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (225 samples, 0.15%)</title><rect x="34.3531%" y="885" width="0.1541%" height="15" fill="rgb(221,25,40)" fg:x="50151" fg:w="225"/><text x="34.6031%" y="895.50"></text></g><g><title>PhiNode::pinned (24 samples, 0.02%)</title><rect x="34.5079%" y="901" width="0.0164%" height="15" fill="rgb(241,184,7)" fg:x="50377" fg:w="24"/><text x="34.7579%" y="911.50"></text></g><g><title>ProjNode::pinned (15 samples, 0.01%)</title><rect x="34.5264%" y="901" width="0.0103%" height="15" fill="rgb(235,159,4)" fg:x="50404" fg:w="15"/><text x="34.7764%" y="911.50"></text></g><g><title>RegionNode::pinned (16 samples, 0.01%)</title><rect x="34.5366%" y="901" width="0.0110%" height="15" fill="rgb(214,87,48)" fg:x="50419" fg:w="16"/><text x="34.7866%" y="911.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,116 samples, 0.76%)</title><rect x="33.7866%" y="917" width="0.7645%" height="15" fill="rgb(246,198,24)" fg:x="49324" fg:w="1116"/><text x="34.0366%" y="927.50"></text></g><g><title>Node_List::push (22 samples, 0.02%)</title><rect x="35.1805%" y="901" width="0.0151%" height="15" fill="rgb(209,66,40)" fg:x="51359" fg:w="22"/><text x="35.4305%" y="911.50"></text></g><g><title>Node::unique_ctrl_out (55 samples, 0.04%)</title><rect x="35.4881%" y="885" width="0.0377%" height="15" fill="rgb(233,147,39)" fg:x="51808" fg:w="55"/><text x="35.7381%" y="895.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (64 samples, 0.04%)</title><rect x="35.5265%" y="885" width="0.0438%" height="15" fill="rgb(231,145,52)" fg:x="51864" fg:w="64"/><text x="35.7765%" y="895.50"></text></g><g><title>PhaseIdealLoop::dom_depth (33 samples, 0.02%)</title><rect x="35.7977%" y="837" width="0.0226%" height="15" fill="rgb(206,20,26)" fg:x="52260" fg:w="33"/><text x="36.0477%" y="847.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (182 samples, 0.12%)</title><rect x="35.7532%" y="853" width="0.1247%" height="15" fill="rgb(238,220,4)" fg:x="52195" fg:w="182"/><text x="36.0032%" y="863.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (84 samples, 0.06%)</title><rect x="35.8203%" y="837" width="0.0575%" height="15" fill="rgb(252,195,42)" fg:x="52293" fg:w="84"/><text x="36.0703%" y="847.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (20 samples, 0.01%)</title><rect x="35.8779%" y="853" width="0.0137%" height="15" fill="rgb(209,10,6)" fg:x="52377" fg:w="20"/><text x="36.1279%" y="863.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (267 samples, 0.18%)</title><rect x="35.7093%" y="869" width="0.1829%" height="15" fill="rgb(229,3,52)" fg:x="52131" fg:w="267"/><text x="35.9593%" y="879.50"></text></g><g><title>PhaseIdealLoop::dom_depth (22 samples, 0.02%)</title><rect x="35.9258%" y="853" width="0.0151%" height="15" fill="rgb(253,49,37)" fg:x="52447" fg:w="22"/><text x="36.1758%" y="863.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (77 samples, 0.05%)</title><rect x="35.8929%" y="869" width="0.0527%" height="15" fill="rgb(240,103,49)" fg:x="52399" fg:w="77"/><text x="36.1429%" y="879.50"></text></g><g><title>PhaseIdealLoop::dom_depth (183 samples, 0.13%)</title><rect x="36.3875%" y="853" width="0.1254%" height="15" fill="rgb(250,182,30)" fg:x="53121" fg:w="183"/><text x="36.6375%" y="863.50"></text></g><g><title>PhaseIdealLoop::is_dominator (823 samples, 0.56%)</title><rect x="35.9518%" y="869" width="0.5637%" height="15" fill="rgb(248,8,30)" fg:x="52485" fg:w="823"/><text x="36.2018%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (1,393 samples, 0.95%)</title><rect x="35.5703%" y="885" width="0.9542%" height="15" fill="rgb(237,120,30)" fg:x="51928" fg:w="1393"/><text x="35.8203%" y="895.50"></text></g><g><title>PhaseIdealLoop::get_loop (27 samples, 0.02%)</title><rect x="36.5245%" y="885" width="0.0185%" height="15" fill="rgb(221,146,34)" fg:x="53321" fg:w="27"/><text x="36.7745%" y="895.50"></text></g><g><title>ProjNode::is_uncommon_trap_if_pattern (20 samples, 0.01%)</title><rect x="36.5505%" y="885" width="0.0137%" height="15" fill="rgb(242,55,13)" fg:x="53359" fg:w="20"/><text x="36.8005%" y="895.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (2,003 samples, 1.37%)</title><rect x="35.1956%" y="901" width="1.3720%" height="15" fill="rgb(242,112,31)" fg:x="51381" fg:w="2003"/><text x="35.4456%" y="911.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (2,950 samples, 2.02%)</title><rect x="34.5510%" y="917" width="2.0207%" height="15" fill="rgb(249,192,27)" fg:x="50440" fg:w="2950"/><text x="34.8010%" y="927.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (159 samples, 0.11%)</title><rect x="36.8779%" y="901" width="0.1089%" height="15" fill="rgb(208,204,44)" fg:x="53837" fg:w="159"/><text x="37.1279%" y="911.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (605 samples, 0.41%)</title><rect x="36.5765%" y="917" width="0.4144%" height="15" fill="rgb(208,93,54)" fg:x="53397" fg:w="605"/><text x="36.8265%" y="927.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (22 samples, 0.02%)</title><rect x="36.9916%" y="901" width="0.0151%" height="15" fill="rgb(242,1,31)" fg:x="54003" fg:w="22"/><text x="37.2416%" y="911.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (26 samples, 0.02%)</title><rect x="36.9916%" y="917" width="0.0178%" height="15" fill="rgb(241,83,25)" fg:x="54003" fg:w="26"/><text x="37.2416%" y="927.50"></text></g><g><title>PhaseIdealLoop::handle_use (24 samples, 0.02%)</title><rect x="37.2458%" y="885" width="0.0164%" height="15" fill="rgb(205,169,50)" fg:x="54374" fg:w="24"/><text x="37.4958%" y="895.50"></text></g><g><title>PhaseIdealLoop::spinup (17 samples, 0.01%)</title><rect x="37.2506%" y="869" width="0.0116%" height="15" fill="rgb(239,186,37)" fg:x="54381" fg:w="17"/><text x="37.5006%" y="879.50"></text></g><g><title>PhaseIdealLoop::split_thru_region (16 samples, 0.01%)</title><rect x="37.2622%" y="885" width="0.0110%" height="15" fill="rgb(205,221,10)" fg:x="54398" fg:w="16"/><text x="37.5122%" y="895.50"></text></g><g><title>PhaseIdealLoop::do_split_if (70 samples, 0.05%)</title><rect x="37.2437%" y="901" width="0.0479%" height="15" fill="rgb(218,196,15)" fg:x="54371" fg:w="70"/><text x="37.4937%" y="911.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (16 samples, 0.01%)</title><rect x="37.3718%" y="885" width="0.0110%" height="15" fill="rgb(218,196,35)" fg:x="54558" fg:w="16"/><text x="37.6218%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (16 samples, 0.01%)</title><rect x="37.3937%" y="885" width="0.0110%" height="15" fill="rgb(233,63,24)" fg:x="54590" fg:w="16"/><text x="37.6437%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (175 samples, 0.12%)</title><rect x="37.2958%" y="901" width="0.1199%" height="15" fill="rgb(225,8,4)" fg:x="54447" fg:w="175"/><text x="37.5458%" y="911.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (15 samples, 0.01%)</title><rect x="37.5122%" y="821" width="0.0103%" height="15" fill="rgb(234,105,35)" fg:x="54763" fg:w="15"/><text x="37.7622%" y="831.50"></text></g><g><title>SafepointSynchronize::block (15 samples, 0.01%)</title><rect x="37.5122%" y="805" width="0.0103%" height="15" fill="rgb(236,21,32)" fg:x="54763" fg:w="15"/><text x="37.7622%" y="815.50"></text></g><g><title>ConstraintCastNode::dominating_cast (62 samples, 0.04%)</title><rect x="37.4821%" y="885" width="0.0425%" height="15" fill="rgb(228,109,6)" fg:x="54719" fg:w="62"/><text x="37.7321%" y="895.50"></text></g><g><title>TypePtr::xmeet (30 samples, 0.02%)</title><rect x="37.5040%" y="869" width="0.0205%" height="15" fill="rgb(229,215,31)" fg:x="54751" fg:w="30"/><text x="37.7540%" y="879.50"></text></g><g><title>TypeInstPtr::xmeet_helper (28 samples, 0.02%)</title><rect x="37.5054%" y="853" width="0.0192%" height="15" fill="rgb(221,52,54)" fg:x="54753" fg:w="28"/><text x="37.7554%" y="863.50"></text></g><g><title>ciKlass::least_common_ancestor (19 samples, 0.01%)</title><rect x="37.5116%" y="837" width="0.0130%" height="15" fill="rgb(252,129,43)" fg:x="54762" fg:w="19"/><text x="37.7616%" y="847.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (30 samples, 0.02%)</title><rect x="37.5383%" y="885" width="0.0205%" height="15" fill="rgb(248,183,27)" fg:x="54801" fg:w="30"/><text x="37.7883%" y="895.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (48 samples, 0.03%)</title><rect x="37.5595%" y="885" width="0.0329%" height="15" fill="rgb(250,0,22)" fg:x="54832" fg:w="48"/><text x="37.8095%" y="895.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (15 samples, 0.01%)</title><rect x="37.5821%" y="869" width="0.0103%" height="15" fill="rgb(213,166,10)" fg:x="54865" fg:w="15"/><text x="37.8321%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (44 samples, 0.03%)</title><rect x="37.6444%" y="869" width="0.0301%" height="15" fill="rgb(207,163,36)" fg:x="54956" fg:w="44"/><text x="37.8944%" y="879.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (122 samples, 0.08%)</title><rect x="37.5924%" y="885" width="0.0836%" height="15" fill="rgb(208,122,22)" fg:x="54880" fg:w="122"/><text x="37.8424%" y="895.50"></text></g><g><title>LoadNode::Identity (16 samples, 0.01%)</title><rect x="37.6903%" y="869" width="0.0110%" height="15" fill="rgb(207,104,49)" fg:x="55023" fg:w="16"/><text x="37.9403%" y="879.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (48 samples, 0.03%)</title><rect x="37.7280%" y="869" width="0.0329%" height="15" fill="rgb(248,211,50)" fg:x="55078" fg:w="48"/><text x="37.9780%" y="879.50"></text></g><g><title>Unique_Node_List::remove (22 samples, 0.02%)</title><rect x="37.7458%" y="853" width="0.0151%" height="15" fill="rgb(217,13,45)" fg:x="55104" fg:w="22"/><text x="37.9958%" y="863.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (149 samples, 0.10%)</title><rect x="37.6760%" y="885" width="0.1021%" height="15" fill="rgb(211,216,49)" fg:x="55002" fg:w="149"/><text x="37.9260%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (568 samples, 0.39%)</title><rect x="37.4157%" y="901" width="0.3891%" height="15" fill="rgb(221,58,53)" fg:x="54622" fg:w="568"/><text x="37.6657%" y="911.50"></text></g><g><title>PhaseIterGVN::subsume_node (18 samples, 0.01%)</title><rect x="37.7924%" y="885" width="0.0123%" height="15" fill="rgb(220,112,41)" fg:x="55172" fg:w="18"/><text x="38.0424%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,155 samples, 0.79%)</title><rect x="37.0170%" y="917" width="0.7912%" height="15" fill="rgb(236,38,28)" fg:x="54040" fg:w="1155"/><text x="37.2670%" y="927.50"></text></g><g><title>AddNode::Value (22 samples, 0.02%)</title><rect x="37.9041%" y="885" width="0.0151%" height="15" fill="rgb(227,195,22)" fg:x="55335" fg:w="22"/><text x="38.1541%" y="895.50"></text></g><g><title>AddNode::add_of_identity (21 samples, 0.01%)</title><rect x="37.9047%" y="869" width="0.0144%" height="15" fill="rgb(214,55,33)" fg:x="55336" fg:w="21"/><text x="38.1547%" y="879.50"></text></g><g><title>CallNode::Ideal (24 samples, 0.02%)</title><rect x="37.9349%" y="885" width="0.0164%" height="15" fill="rgb(248,80,13)" fg:x="55380" fg:w="24"/><text x="38.1849%" y="895.50"></text></g><g><title>Node::remove_dead_region (24 samples, 0.02%)</title><rect x="37.9349%" y="869" width="0.0164%" height="15" fill="rgb(238,52,6)" fg:x="55380" fg:w="24"/><text x="38.1849%" y="879.50"></text></g><g><title>CastIINode::Value (20 samples, 0.01%)</title><rect x="37.9554%" y="885" width="0.0137%" height="15" fill="rgb(224,198,47)" fg:x="55410" fg:w="20"/><text x="38.2054%" y="895.50"></text></g><g><title>ConNode::hash (15 samples, 0.01%)</title><rect x="37.9753%" y="885" width="0.0103%" height="15" fill="rgb(233,171,20)" fg:x="55439" fg:w="15"/><text x="38.2253%" y="895.50"></text></g><g><title>ConstraintCastNode::Identity (18 samples, 0.01%)</title><rect x="37.9856%" y="885" width="0.0123%" height="15" fill="rgb(241,30,25)" fg:x="55454" fg:w="18"/><text x="38.2356%" y="895.50"></text></g><g><title>ConvI2LNode::Value (18 samples, 0.01%)</title><rect x="38.0054%" y="885" width="0.0123%" height="15" fill="rgb(207,171,38)" fg:x="55483" fg:w="18"/><text x="38.2554%" y="895.50"></text></g><g><title>IfNode::Ideal (17 samples, 0.01%)</title><rect x="38.0191%" y="885" width="0.0116%" height="15" fill="rgb(234,70,1)" fg:x="55503" fg:w="17"/><text x="38.2691%" y="895.50"></text></g><g><title>MemNode::Ideal_common (17 samples, 0.01%)</title><rect x="38.0438%" y="869" width="0.0116%" height="15" fill="rgb(232,178,18)" fg:x="55539" fg:w="17"/><text x="38.2938%" y="879.50"></text></g><g><title>MemNode::all_controls_dominate (21 samples, 0.01%)</title><rect x="38.0616%" y="853" width="0.0144%" height="15" fill="rgb(241,78,40)" fg:x="55565" fg:w="21"/><text x="38.3116%" y="863.50"></text></g><g><title>Node::dominates (20 samples, 0.01%)</title><rect x="38.0623%" y="837" width="0.0137%" height="15" fill="rgb(222,35,25)" fg:x="55566" fg:w="20"/><text x="38.3123%" y="847.50"></text></g><g><title>MemNode::find_previous_store (29 samples, 0.02%)</title><rect x="38.0602%" y="869" width="0.0199%" height="15" fill="rgb(207,92,16)" fg:x="55563" fg:w="29"/><text x="38.3102%" y="879.50"></text></g><g><title>LoadNode::Ideal (66 samples, 0.05%)</title><rect x="38.0356%" y="885" width="0.0452%" height="15" fill="rgb(216,59,51)" fg:x="55527" fg:w="66"/><text x="38.2856%" y="895.50"></text></g><g><title>NodeHash::grow (24 samples, 0.02%)</title><rect x="38.1541%" y="869" width="0.0164%" height="15" fill="rgb(213,80,28)" fg:x="55700" fg:w="24"/><text x="38.4041%" y="879.50"></text></g><g><title>NodeHash::hash_find_insert (92 samples, 0.06%)</title><rect x="38.1102%" y="885" width="0.0630%" height="15" fill="rgb(220,93,7)" fg:x="55636" fg:w="92"/><text x="38.3602%" y="895.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (54 samples, 0.04%)</title><rect x="38.1739%" y="885" width="0.0370%" height="15" fill="rgb(225,24,44)" fg:x="55729" fg:w="54"/><text x="38.4239%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (32 samples, 0.02%)</title><rect x="38.2226%" y="869" width="0.0219%" height="15" fill="rgb(243,74,40)" fg:x="55800" fg:w="32"/><text x="38.4726%" y="879.50"></text></g><g><title>PhaseIterGVN::subsume_node (57 samples, 0.04%)</title><rect x="38.2109%" y="885" width="0.0390%" height="15" fill="rgb(228,39,7)" fg:x="55783" fg:w="57"/><text x="38.4609%" y="895.50"></text></g><g><title>PhiNode::Ideal (33 samples, 0.02%)</title><rect x="38.2514%" y="885" width="0.0226%" height="15" fill="rgb(227,79,8)" fg:x="55842" fg:w="33"/><text x="38.5014%" y="895.50"></text></g><g><title>PhiNode::Value (25 samples, 0.02%)</title><rect x="38.2760%" y="885" width="0.0171%" height="15" fill="rgb(236,58,11)" fg:x="55878" fg:w="25"/><text x="38.5260%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (17 samples, 0.01%)</title><rect x="38.3322%" y="853" width="0.0116%" height="15" fill="rgb(249,63,35)" fg:x="55960" fg:w="17"/><text x="38.5822%" y="863.50"></text></g><g><title>PhaseIterGVN::subsume_node (27 samples, 0.02%)</title><rect x="38.3260%" y="869" width="0.0185%" height="15" fill="rgb(252,114,16)" fg:x="55951" fg:w="27"/><text x="38.5760%" y="879.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (15 samples, 0.01%)</title><rect x="38.3445%" y="869" width="0.0103%" height="15" fill="rgb(254,151,24)" fg:x="55978" fg:w="15"/><text x="38.5945%" y="879.50"></text></g><g><title>RegionNode::Ideal (171 samples, 0.12%)</title><rect x="38.3055%" y="885" width="0.1171%" height="15" fill="rgb(253,54,39)" fg:x="55921" fg:w="171"/><text x="38.5555%" y="895.50"></text></g><g><title>RegionNode::is_unreachable_region (99 samples, 0.07%)</title><rect x="38.3548%" y="869" width="0.0678%" height="15" fill="rgb(243,25,45)" fg:x="55993" fg:w="99"/><text x="38.6048%" y="879.50"></text></g><g><title>InitializeNode::detect_init_independence (15 samples, 0.01%)</title><rect x="38.4294%" y="565" width="0.0103%" height="15" fill="rgb(234,134,9)" fg:x="56102" fg:w="15"/><text x="38.6794%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (19 samples, 0.01%)</title><rect x="38.4294%" y="581" width="0.0130%" height="15" fill="rgb(227,166,31)" fg:x="56102" fg:w="19"/><text x="38.6794%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (21 samples, 0.01%)</title><rect x="38.4294%" y="597" width="0.0144%" height="15" fill="rgb(245,143,41)" fg:x="56102" fg:w="21"/><text x="38.6794%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (25 samples, 0.02%)</title><rect x="38.4294%" y="613" width="0.0171%" height="15" fill="rgb(238,181,32)" fg:x="56102" fg:w="25"/><text x="38.6794%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (28 samples, 0.02%)</title><rect x="38.4294%" y="629" width="0.0192%" height="15" fill="rgb(224,113,18)" fg:x="56102" fg:w="28"/><text x="38.6794%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (33 samples, 0.02%)</title><rect x="38.4294%" y="645" width="0.0226%" height="15" fill="rgb(240,229,28)" fg:x="56102" fg:w="33"/><text x="38.6794%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (34 samples, 0.02%)</title><rect x="38.4294%" y="661" width="0.0233%" height="15" fill="rgb(250,185,3)" fg:x="56102" fg:w="34"/><text x="38.6794%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.03%)</title><rect x="38.4294%" y="677" width="0.0253%" height="15" fill="rgb(212,59,25)" fg:x="56102" fg:w="37"/><text x="38.6794%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (43 samples, 0.03%)</title><rect x="38.4294%" y="693" width="0.0295%" height="15" fill="rgb(221,87,20)" fg:x="56102" fg:w="43"/><text x="38.6794%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (48 samples, 0.03%)</title><rect x="38.4294%" y="709" width="0.0329%" height="15" fill="rgb(213,74,28)" fg:x="56102" fg:w="48"/><text x="38.6794%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.04%)</title><rect x="38.4294%" y="725" width="0.0356%" height="15" fill="rgb(224,132,34)" fg:x="56102" fg:w="52"/><text x="38.6794%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (54 samples, 0.04%)</title><rect x="38.4294%" y="741" width="0.0370%" height="15" fill="rgb(222,101,24)" fg:x="56102" fg:w="54"/><text x="38.6794%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (58 samples, 0.04%)</title><rect x="38.4294%" y="757" width="0.0397%" height="15" fill="rgb(254,142,4)" fg:x="56102" fg:w="58"/><text x="38.6794%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (60 samples, 0.04%)</title><rect x="38.4294%" y="773" width="0.0411%" height="15" fill="rgb(230,229,49)" fg:x="56102" fg:w="60"/><text x="38.6794%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (64 samples, 0.04%)</title><rect x="38.4294%" y="789" width="0.0438%" height="15" fill="rgb(238,70,47)" fg:x="56102" fg:w="64"/><text x="38.6794%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (67 samples, 0.05%)</title><rect x="38.4294%" y="805" width="0.0459%" height="15" fill="rgb(231,160,17)" fg:x="56102" fg:w="67"/><text x="38.6794%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (71 samples, 0.05%)</title><rect x="38.4294%" y="821" width="0.0486%" height="15" fill="rgb(218,68,53)" fg:x="56102" fg:w="71"/><text x="38.6794%" y="831.50"></text></g><g><title>InitializeNode::can_capture_store (81 samples, 0.06%)</title><rect x="38.4288%" y="869" width="0.0555%" height="15" fill="rgb(236,111,10)" fg:x="56101" fg:w="81"/><text x="38.6788%" y="879.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.05%)</title><rect x="38.4294%" y="853" width="0.0548%" height="15" fill="rgb(224,34,41)" fg:x="56102" fg:w="80"/><text x="38.6794%" y="863.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.05%)</title><rect x="38.4294%" y="837" width="0.0548%" height="15" fill="rgb(241,118,19)" fg:x="56102" fg:w="80"/><text x="38.6794%" y="847.50"></text></g><g><title>StoreNode::Ideal (90 samples, 0.06%)</title><rect x="38.4288%" y="885" width="0.0616%" height="15" fill="rgb(238,129,25)" fg:x="56101" fg:w="90"/><text x="38.6788%" y="895.50"></text></g><g><title>PhaseIterGVN::transform_old (995 samples, 0.68%)</title><rect x="37.8328%" y="901" width="0.6816%" height="15" fill="rgb(238,22,31)" fg:x="55231" fg:w="995"/><text x="38.0828%" y="911.50"></text></g><g><title>PhaseIterGVN::optimize (1,040 samples, 0.71%)</title><rect x="37.8088%" y="917" width="0.7124%" height="15" fill="rgb(222,174,48)" fg:x="55196" fg:w="1040"/><text x="38.0588%" y="927.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (15 samples, 0.01%)</title><rect x="38.5212%" y="917" width="0.0103%" height="15" fill="rgb(206,152,40)" fg:x="56236" fg:w="15"/><text x="38.7712%" y="927.50"></text></g><g><title>SuperWord::find_adjacent_refs (17 samples, 0.01%)</title><rect x="38.5603%" y="885" width="0.0116%" height="15" fill="rgb(218,99,54)" fg:x="56293" fg:w="17"/><text x="38.8103%" y="895.50"></text></g><g><title>SuperWord::transform_loop (32 samples, 0.02%)</title><rect x="38.5514%" y="917" width="0.0219%" height="15" fill="rgb(220,174,26)" fg:x="56280" fg:w="32"/><text x="38.8014%" y="927.50"></text></g><g><title>SuperWord::SLP_extract (32 samples, 0.02%)</title><rect x="38.5514%" y="901" width="0.0219%" height="15" fill="rgb(245,116,9)" fg:x="56280" fg:w="32"/><text x="38.8014%" y="911.50"></text></g><g><title>[libc-2.31.so] (19 samples, 0.01%)</title><rect x="38.5754%" y="917" width="0.0130%" height="15" fill="rgb(209,72,35)" fg:x="56315" fg:w="19"/><text x="38.8254%" y="927.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (8,284 samples, 5.67%)</title><rect x="32.9159%" y="933" width="5.6745%" height="15" fill="rgb(226,126,21)" fg:x="48053" fg:w="8284"/><text x="33.1659%" y="943.50">PhaseId..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (88 samples, 0.06%)</title><rect x="38.5904%" y="933" width="0.0603%" height="15" fill="rgb(227,192,1)" fg:x="56337" fg:w="88"/><text x="38.8404%" y="943.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (46 samples, 0.03%)</title><rect x="38.6192%" y="917" width="0.0315%" height="15" fill="rgb(237,180,29)" fg:x="56379" fg:w="46"/><text x="38.8692%" y="927.50"></text></g><g><title>CallNode::Ideal (18 samples, 0.01%)</title><rect x="38.7466%" y="901" width="0.0123%" height="15" fill="rgb(230,197,35)" fg:x="56565" fg:w="18"/><text x="38.9966%" y="911.50"></text></g><g><title>Node::remove_dead_region (17 samples, 0.01%)</title><rect x="38.7473%" y="885" width="0.0116%" height="15" fill="rgb(246,193,31)" fg:x="56566" fg:w="17"/><text x="38.9973%" y="895.50"></text></g><g><title>IfNode::search_identical (28 samples, 0.02%)</title><rect x="38.8172%" y="885" width="0.0192%" height="15" fill="rgb(241,36,4)" fg:x="56668" fg:w="28"/><text x="39.0672%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (64 samples, 0.04%)</title><rect x="38.8541%" y="869" width="0.0438%" height="15" fill="rgb(241,130,17)" fg:x="56722" fg:w="64"/><text x="39.1041%" y="879.50"></text></g><g><title>Unique_Node_List::remove (55 samples, 0.04%)</title><rect x="38.8603%" y="853" width="0.0377%" height="15" fill="rgb(206,137,32)" fg:x="56731" fg:w="55"/><text x="39.1103%" y="863.50"></text></g><g><title>PhaseIterGVN::subsume_node (75 samples, 0.05%)</title><rect x="38.8500%" y="885" width="0.0514%" height="15" fill="rgb(237,228,51)" fg:x="56716" fg:w="75"/><text x="39.1000%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (26 samples, 0.02%)</title><rect x="38.9110%" y="869" width="0.0178%" height="15" fill="rgb(243,6,42)" fg:x="56805" fg:w="26"/><text x="39.1610%" y="879.50"></text></g><g><title>Unique_Node_List::remove (18 samples, 0.01%)</title><rect x="38.9165%" y="853" width="0.0123%" height="15" fill="rgb(251,74,28)" fg:x="56813" fg:w="18"/><text x="39.1665%" y="863.50"></text></g><g><title>IfNode::Ideal (198 samples, 0.14%)</title><rect x="38.7987%" y="901" width="0.1356%" height="15" fill="rgb(218,20,49)" fg:x="56641" fg:w="198"/><text x="39.0487%" y="911.50"></text></g><g><title>split_if (45 samples, 0.03%)</title><rect x="38.9035%" y="885" width="0.0308%" height="15" fill="rgb(238,28,14)" fg:x="56794" fg:w="45"/><text x="39.1535%" y="895.50"></text></g><g><title>MemNode::adr_type (23 samples, 0.02%)</title><rect x="38.9692%" y="869" width="0.0158%" height="15" fill="rgb(229,40,46)" fg:x="56890" fg:w="23"/><text x="39.2192%" y="879.50"></text></g><g><title>MemNode::Ideal_common (52 samples, 0.04%)</title><rect x="38.9583%" y="885" width="0.0356%" height="15" fill="rgb(244,195,20)" fg:x="56874" fg:w="52"/><text x="39.2083%" y="895.50"></text></g><g><title>Node::dominates (27 samples, 0.02%)</title><rect x="39.0000%" y="853" width="0.0185%" height="15" fill="rgb(253,56,35)" fg:x="56935" fg:w="27"/><text x="39.2500%" y="863.50"></text></g><g><title>MemNode::all_controls_dominate (29 samples, 0.02%)</title><rect x="38.9994%" y="869" width="0.0199%" height="15" fill="rgb(210,149,44)" fg:x="56934" fg:w="29"/><text x="39.2494%" y="879.50"></text></g><g><title>MemNode::find_previous_store (49 samples, 0.03%)</title><rect x="38.9953%" y="885" width="0.0336%" height="15" fill="rgb(240,135,12)" fg:x="56928" fg:w="49"/><text x="39.2453%" y="895.50"></text></g><g><title>LoadNode::Ideal (120 samples, 0.08%)</title><rect x="38.9473%" y="901" width="0.0822%" height="15" fill="rgb(251,24,50)" fg:x="56858" fg:w="120"/><text x="39.1973%" y="911.50"></text></g><g><title>LoadNode::Identity (22 samples, 0.02%)</title><rect x="39.0295%" y="901" width="0.0151%" height="15" fill="rgb(243,200,47)" fg:x="56978" fg:w="22"/><text x="39.2795%" y="911.50"></text></g><g><title>LoadNode::Value (20 samples, 0.01%)</title><rect x="39.0446%" y="901" width="0.0137%" height="15" fill="rgb(224,166,26)" fg:x="57000" fg:w="20"/><text x="39.2946%" y="911.50"></text></g><g><title>MergeMemNode::Ideal (27 samples, 0.02%)</title><rect x="39.0651%" y="901" width="0.0185%" height="15" fill="rgb(233,0,47)" fg:x="57030" fg:w="27"/><text x="39.3151%" y="911.50"></text></g><g><title>NodeHash::grow (36 samples, 0.02%)</title><rect x="39.1384%" y="885" width="0.0247%" height="15" fill="rgb(253,80,5)" fg:x="57137" fg:w="36"/><text x="39.3884%" y="895.50"></text></g><g><title>NodeHash::hash_find_insert (108 samples, 0.07%)</title><rect x="39.0918%" y="901" width="0.0740%" height="15" fill="rgb(214,133,25)" fg:x="57069" fg:w="108"/><text x="39.3418%" y="911.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (33 samples, 0.02%)</title><rect x="39.1658%" y="901" width="0.0226%" height="15" fill="rgb(209,27,14)" fg:x="57177" fg:w="33"/><text x="39.4158%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (43 samples, 0.03%)</title><rect x="39.2213%" y="885" width="0.0295%" height="15" fill="rgb(219,102,51)" fg:x="57258" fg:w="43"/><text x="39.4713%" y="895.50"></text></g><g><title>PhaseIterGVN::subsume_node (97 samples, 0.07%)</title><rect x="39.1884%" y="901" width="0.0664%" height="15" fill="rgb(237,18,16)" fg:x="57210" fg:w="97"/><text x="39.4384%" y="911.50"></text></g><g><title>PhiNode::unique_input (16 samples, 0.01%)</title><rect x="39.2939%" y="885" width="0.0110%" height="15" fill="rgb(241,85,17)" fg:x="57364" fg:w="16"/><text x="39.5439%" y="895.50"></text></g><g><title>PhiNode::Ideal (75 samples, 0.05%)</title><rect x="39.2562%" y="901" width="0.0514%" height="15" fill="rgb(236,90,42)" fg:x="57309" fg:w="75"/><text x="39.5062%" y="911.50"></text></g><g><title>PhiNode::Value (23 samples, 0.02%)</title><rect x="39.3117%" y="901" width="0.0158%" height="15" fill="rgb(249,57,21)" fg:x="57390" fg:w="23"/><text x="39.5617%" y="911.50"></text></g><g><title>RangeCheckNode::Ideal (20 samples, 0.01%)</title><rect x="39.3377%" y="901" width="0.0137%" height="15" fill="rgb(243,12,36)" fg:x="57428" fg:w="20"/><text x="39.5877%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (93 samples, 0.06%)</title><rect x="39.4001%" y="869" width="0.0637%" height="15" fill="rgb(253,128,47)" fg:x="57519" fg:w="93"/><text x="39.6501%" y="879.50"></text></g><g><title>Unique_Node_List::remove (83 samples, 0.06%)</title><rect x="39.4069%" y="853" width="0.0569%" height="15" fill="rgb(207,33,20)" fg:x="57529" fg:w="83"/><text x="39.6569%" y="863.50"></text></g><g><title>PhaseIterGVN::subsume_node (104 samples, 0.07%)</title><rect x="39.3960%" y="885" width="0.0712%" height="15" fill="rgb(233,215,35)" fg:x="57513" fg:w="104"/><text x="39.6460%" y="895.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (22 samples, 0.02%)</title><rect x="39.4672%" y="885" width="0.0151%" height="15" fill="rgb(249,188,52)" fg:x="57617" fg:w="22"/><text x="39.7172%" y="895.50"></text></g><g><title>RegionNode::is_unreachable_region (74 samples, 0.05%)</title><rect x="39.4823%" y="885" width="0.0507%" height="15" fill="rgb(225,12,32)" fg:x="57639" fg:w="74"/><text x="39.7323%" y="895.50"></text></g><g><title>RegionNode::Ideal (269 samples, 0.18%)</title><rect x="39.3514%" y="901" width="0.1843%" height="15" fill="rgb(247,98,14)" fg:x="57448" fg:w="269"/><text x="39.6014%" y="911.50"></text></g><g><title>InitializeNode::detect_init_independence (23 samples, 0.02%)</title><rect x="39.5460%" y="581" width="0.0158%" height="15" fill="rgb(247,219,48)" fg:x="57732" fg:w="23"/><text x="39.7960%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (30 samples, 0.02%)</title><rect x="39.5460%" y="597" width="0.0205%" height="15" fill="rgb(253,60,48)" fg:x="57732" fg:w="30"/><text x="39.7960%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (34 samples, 0.02%)</title><rect x="39.5460%" y="613" width="0.0233%" height="15" fill="rgb(245,15,52)" fg:x="57732" fg:w="34"/><text x="39.7960%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (37 samples, 0.03%)</title><rect x="39.5460%" y="629" width="0.0253%" height="15" fill="rgb(220,133,28)" fg:x="57732" fg:w="37"/><text x="39.7960%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (47 samples, 0.03%)</title><rect x="39.5460%" y="645" width="0.0322%" height="15" fill="rgb(217,180,4)" fg:x="57732" fg:w="47"/><text x="39.7960%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (56 samples, 0.04%)</title><rect x="39.5460%" y="661" width="0.0384%" height="15" fill="rgb(251,24,1)" fg:x="57732" fg:w="56"/><text x="39.7960%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (65 samples, 0.04%)</title><rect x="39.5460%" y="677" width="0.0445%" height="15" fill="rgb(212,185,49)" fg:x="57732" fg:w="65"/><text x="39.7960%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.05%)</title><rect x="39.5460%" y="693" width="0.0473%" height="15" fill="rgb(215,175,22)" fg:x="57732" fg:w="69"/><text x="39.7960%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (78 samples, 0.05%)</title><rect x="39.5460%" y="709" width="0.0534%" height="15" fill="rgb(250,205,14)" fg:x="57732" fg:w="78"/><text x="39.7960%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (86 samples, 0.06%)</title><rect x="39.5460%" y="725" width="0.0589%" height="15" fill="rgb(225,211,22)" fg:x="57732" fg:w="86"/><text x="39.7960%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (97 samples, 0.07%)</title><rect x="39.5460%" y="741" width="0.0664%" height="15" fill="rgb(251,179,42)" fg:x="57732" fg:w="97"/><text x="39.7960%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (109 samples, 0.07%)</title><rect x="39.5446%" y="757" width="0.0747%" height="15" fill="rgb(208,216,51)" fg:x="57730" fg:w="109"/><text x="39.7946%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (120 samples, 0.08%)</title><rect x="39.5446%" y="773" width="0.0822%" height="15" fill="rgb(235,36,11)" fg:x="57730" fg:w="120"/><text x="39.7946%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (136 samples, 0.09%)</title><rect x="39.5446%" y="789" width="0.0932%" height="15" fill="rgb(213,189,28)" fg:x="57730" fg:w="136"/><text x="39.7946%" y="799.50"></text></g><g><title>MemNode::all_controls_dominate (16 samples, 0.01%)</title><rect x="39.6268%" y="773" width="0.0110%" height="15" fill="rgb(227,203,42)" fg:x="57850" fg:w="16"/><text x="39.8768%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (150 samples, 0.10%)</title><rect x="39.5446%" y="805" width="0.1027%" height="15" fill="rgb(244,72,36)" fg:x="57730" fg:w="150"/><text x="39.7946%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (158 samples, 0.11%)</title><rect x="39.5446%" y="821" width="0.1082%" height="15" fill="rgb(213,53,17)" fg:x="57730" fg:w="158"/><text x="39.7946%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (181 samples, 0.12%)</title><rect x="39.5446%" y="837" width="0.1240%" height="15" fill="rgb(207,167,3)" fg:x="57730" fg:w="181"/><text x="39.7946%" y="847.50"></text></g><g><title>MemNode::all_controls_dominate (23 samples, 0.02%)</title><rect x="39.6528%" y="821" width="0.0158%" height="15" fill="rgb(216,98,30)" fg:x="57888" fg:w="23"/><text x="39.9028%" y="831.50"></text></g><g><title>Node::dominates (23 samples, 0.02%)</title><rect x="39.6528%" y="805" width="0.0158%" height="15" fill="rgb(236,123,15)" fg:x="57888" fg:w="23"/><text x="39.9028%" y="815.50"></text></g><g><title>InitializeNode::can_capture_store (204 samples, 0.14%)</title><rect x="39.5439%" y="885" width="0.1397%" height="15" fill="rgb(248,81,50)" fg:x="57729" fg:w="204"/><text x="39.7939%" y="895.50"></text></g><g><title>InitializeNode::detect_init_independence (204 samples, 0.14%)</title><rect x="39.5439%" y="869" width="0.1397%" height="15" fill="rgb(214,120,4)" fg:x="57729" fg:w="204"/><text x="39.7939%" y="879.50"></text></g><g><title>InitializeNode::detect_init_independence (204 samples, 0.14%)</title><rect x="39.5439%" y="853" width="0.1397%" height="15" fill="rgb(208,179,34)" fg:x="57729" fg:w="204"/><text x="39.7939%" y="863.50"></text></g><g><title>MemNode::all_controls_dominate (22 samples, 0.02%)</title><rect x="39.6686%" y="837" width="0.0151%" height="15" fill="rgb(227,140,7)" fg:x="57911" fg:w="22"/><text x="39.9186%" y="847.50"></text></g><g><title>Node::dominates (20 samples, 0.01%)</title><rect x="39.6700%" y="821" width="0.0137%" height="15" fill="rgb(214,22,6)" fg:x="57913" fg:w="20"/><text x="39.9200%" y="831.50"></text></g><g><title>StoreNode::Ideal (225 samples, 0.15%)</title><rect x="39.5432%" y="901" width="0.1541%" height="15" fill="rgb(207,137,27)" fg:x="57728" fg:w="225"/><text x="39.7932%" y="911.50"></text></g><g><title>MemNode::Ideal_common (20 samples, 0.01%)</title><rect x="39.6837%" y="885" width="0.0137%" height="15" fill="rgb(210,8,46)" fg:x="57933" fg:w="20"/><text x="39.9337%" y="895.50"></text></g><g><title>PhaseIterGVN::transform_old (1,525 samples, 1.04%)</title><rect x="38.6802%" y="917" width="1.0446%" height="15" fill="rgb(240,16,54)" fg:x="56468" fg:w="1525"/><text x="38.9302%" y="927.50"></text></g><g><title>PhaseIterGVN::optimize (1,577 samples, 1.08%)</title><rect x="38.6507%" y="933" width="1.0802%" height="15" fill="rgb(211,209,29)" fg:x="56425" fg:w="1577"/><text x="38.9007%" y="943.50"></text></g><g><title>IfNode::Ideal (16 samples, 0.01%)</title><rect x="39.7672%" y="885" width="0.0110%" height="15" fill="rgb(226,228,24)" fg:x="58055" fg:w="16"/><text x="40.0172%" y="895.50"></text></g><g><title>PhaseIterGVN::subsume_node (15 samples, 0.01%)</title><rect x="39.8063%" y="885" width="0.0103%" height="15" fill="rgb(222,84,9)" fg:x="58112" fg:w="15"/><text x="40.0563%" y="895.50"></text></g><g><title>PhaseIterGVN::transform_old (156 samples, 0.11%)</title><rect x="39.7446%" y="901" width="0.1069%" height="15" fill="rgb(234,203,30)" fg:x="58022" fg:w="156"/><text x="39.9946%" y="911.50"></text></g><g><title>PhaseIterGVN::optimize (166 samples, 0.11%)</title><rect x="39.7385%" y="917" width="0.1137%" height="15" fill="rgb(238,109,14)" fg:x="58013" fg:w="166"/><text x="39.9885%" y="927.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (17 samples, 0.01%)</title><rect x="39.8700%" y="885" width="0.0116%" height="15" fill="rgb(233,206,34)" fg:x="58205" fg:w="17"/><text x="40.1200%" y="895.50"></text></g><g><title>PhaseIterGVN::subsume_node (22 samples, 0.02%)</title><rect x="39.8672%" y="901" width="0.0151%" height="15" fill="rgb(220,167,47)" fg:x="58201" fg:w="22"/><text x="40.1172%" y="911.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (59 samples, 0.04%)</title><rect x="39.8549%" y="917" width="0.0404%" height="15" fill="rgb(238,105,10)" fg:x="58183" fg:w="59"/><text x="40.1049%" y="927.50"></text></g><g><title>PhaseMacroExpand::expand_arraycopy_node (19 samples, 0.01%)</title><rect x="39.8953%" y="917" width="0.0130%" height="15" fill="rgb(213,227,17)" fg:x="58242" fg:w="19"/><text x="40.1453%" y="927.50"></text></g><g><title>PhaseMacroExpand::generate_arraycopy (17 samples, 0.01%)</title><rect x="39.8967%" y="901" width="0.0116%" height="15" fill="rgb(217,132,38)" fg:x="58244" fg:w="17"/><text x="40.1467%" y="911.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (256 samples, 0.18%)</title><rect x="39.7378%" y="933" width="0.1754%" height="15" fill="rgb(242,146,4)" fg:x="58012" fg:w="256"/><text x="39.9878%" y="943.50"></text></g><g><title>Compile::identify_useful_nodes (47 samples, 0.03%)</title><rect x="39.9262%" y="901" width="0.0322%" height="15" fill="rgb(212,61,9)" fg:x="58287" fg:w="47"/><text x="40.1762%" y="911.50"></text></g><g><title>Compile::remove_useless_nodes (34 samples, 0.02%)</title><rect x="39.9584%" y="901" width="0.0233%" height="15" fill="rgb(247,126,22)" fg:x="58334" fg:w="34"/><text x="40.2084%" y="911.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (110 samples, 0.08%)</title><rect x="39.9131%" y="933" width="0.0753%" height="15" fill="rgb(220,196,2)" fg:x="58268" fg:w="110"/><text x="40.1631%" y="943.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (105 samples, 0.07%)</title><rect x="39.9166%" y="917" width="0.0719%" height="15" fill="rgb(208,46,4)" fg:x="58273" fg:w="105"/><text x="40.1666%" y="927.50"></text></g><g><title>Compile::Optimize (11,795 samples, 8.08%)</title><rect x="31.9152%" y="949" width="8.0795%" height="15" fill="rgb(252,104,46)" fg:x="46592" fg:w="11795"/><text x="32.1652%" y="959.50">Compile::Op..</text></g><g><title>Parse::do_call (29 samples, 0.02%)</title><rect x="40.0193%" y="805" width="0.0199%" height="15" fill="rgb(237,152,48)" fg:x="58423" fg:w="29"/><text x="40.2693%" y="815.50"></text></g><g><title>Parse::do_get_xxx (16 samples, 0.01%)</title><rect x="40.0453%" y="789" width="0.0110%" height="15" fill="rgb(221,59,37)" fg:x="58461" fg:w="16"/><text x="40.2953%" y="799.50"></text></g><g><title>Parse::do_field_access (26 samples, 0.02%)</title><rect x="40.0412%" y="805" width="0.0178%" height="15" fill="rgb(209,202,51)" fg:x="58455" fg:w="26"/><text x="40.2912%" y="815.50"></text></g><g><title>Parse::do_if (21 samples, 0.01%)</title><rect x="40.0590%" y="805" width="0.0144%" height="15" fill="rgb(228,81,30)" fg:x="58481" fg:w="21"/><text x="40.3090%" y="815.50"></text></g><g><title>Parse::do_one_block (122 samples, 0.08%)</title><rect x="40.0036%" y="837" width="0.0836%" height="15" fill="rgb(227,42,39)" fg:x="58400" fg:w="122"/><text x="40.2536%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (111 samples, 0.08%)</title><rect x="40.0111%" y="821" width="0.0760%" height="15" fill="rgb(221,26,2)" fg:x="58411" fg:w="111"/><text x="40.2611%" y="831.50"></text></g><g><title>Parse::do_all_blocks (125 samples, 0.09%)</title><rect x="40.0029%" y="853" width="0.0856%" height="15" fill="rgb(254,61,31)" fg:x="58399" fg:w="125"/><text x="40.2529%" y="863.50"></text></g><g><title>ParseGenerator::generate (132 samples, 0.09%)</title><rect x="40.0029%" y="885" width="0.0904%" height="15" fill="rgb(222,173,38)" fg:x="58399" fg:w="132"/><text x="40.2529%" y="895.50"></text></g><g><title>Parse::Parse (132 samples, 0.09%)</title><rect x="40.0029%" y="869" width="0.0904%" height="15" fill="rgb(218,50,12)" fg:x="58399" fg:w="132"/><text x="40.2529%" y="879.50"></text></g><g><title>CompileBroker::compiler_thread_loop (155 samples, 0.11%)</title><rect x="39.9953%" y="949" width="0.1062%" height="15" fill="rgb(223,88,40)" fg:x="58388" fg:w="155"/><text x="40.2453%" y="959.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (155 samples, 0.11%)</title><rect x="39.9953%" y="933" width="0.1062%" height="15" fill="rgb(237,54,19)" fg:x="58388" fg:w="155"/><text x="40.2453%" y="943.50"></text></g><g><title>C2Compiler::compile_method (155 samples, 0.11%)</title><rect x="39.9953%" y="917" width="0.1062%" height="15" fill="rgb(251,129,25)" fg:x="58388" fg:w="155"/><text x="40.2453%" y="927.50"></text></g><g><title>Compile::Compile (155 samples, 0.11%)</title><rect x="39.9953%" y="901" width="0.1062%" height="15" fill="rgb(238,97,19)" fg:x="58388" fg:w="155"/><text x="40.2453%" y="911.50"></text></g><g><title>ciField::ciField (18 samples, 0.01%)</title><rect x="40.1029%" y="725" width="0.0123%" height="15" fill="rgb(240,169,18)" fg:x="58545" fg:w="18"/><text x="40.3529%" y="735.50"></text></g><g><title>ciEnv::get_field_by_index (19 samples, 0.01%)</title><rect x="40.1029%" y="741" width="0.0130%" height="15" fill="rgb(230,187,49)" fg:x="58545" fg:w="19"/><text x="40.3529%" y="751.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (20 samples, 0.01%)</title><rect x="40.1029%" y="773" width="0.0137%" height="15" fill="rgb(209,44,26)" fg:x="58545" fg:w="20"/><text x="40.3529%" y="783.50"></text></g><g><title>ciBytecodeStream::get_field (20 samples, 0.01%)</title><rect x="40.1029%" y="757" width="0.0137%" height="15" fill="rgb(244,0,6)" fg:x="58545" fg:w="20"/><text x="40.3529%" y="767.50"></text></g><g><title>CallGenerator::for_inline (49 samples, 0.03%)</title><rect x="40.1015%" y="901" width="0.0336%" height="15" fill="rgb(248,18,21)" fg:x="58543" fg:w="49"/><text x="40.3515%" y="911.50"></text></g><g><title>InlineTree::check_can_parse (49 samples, 0.03%)</title><rect x="40.1015%" y="885" width="0.0336%" height="15" fill="rgb(245,180,19)" fg:x="58543" fg:w="49"/><text x="40.3515%" y="895.50"></text></g><g><title>ciMethod::get_flow_analysis (49 samples, 0.03%)</title><rect x="40.1015%" y="869" width="0.0336%" height="15" fill="rgb(252,118,36)" fg:x="58543" fg:w="49"/><text x="40.3515%" y="879.50"></text></g><g><title>ciTypeFlow::do_flow (49 samples, 0.03%)</title><rect x="40.1015%" y="853" width="0.0336%" height="15" fill="rgb(210,224,19)" fg:x="58543" fg:w="49"/><text x="40.3515%" y="863.50"></text></g><g><title>ciTypeFlow::flow_types (49 samples, 0.03%)</title><rect x="40.1015%" y="837" width="0.0336%" height="15" fill="rgb(218,30,24)" fg:x="58543" fg:w="49"/><text x="40.3515%" y="847.50"></text></g><g><title>ciTypeFlow::df_flow_types (47 samples, 0.03%)</title><rect x="40.1029%" y="821" width="0.0322%" height="15" fill="rgb(219,75,50)" fg:x="58545" fg:w="47"/><text x="40.3529%" y="831.50"></text></g><g><title>ciTypeFlow::flow_block (47 samples, 0.03%)</title><rect x="40.1029%" y="805" width="0.0322%" height="15" fill="rgb(234,72,50)" fg:x="58545" fg:w="47"/><text x="40.3529%" y="815.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (47 samples, 0.03%)</title><rect x="40.1029%" y="789" width="0.0322%" height="15" fill="rgb(219,100,48)" fg:x="58545" fg:w="47"/><text x="40.3529%" y="799.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (27 samples, 0.02%)</title><rect x="40.1166%" y="773" width="0.0185%" height="15" fill="rgb(253,5,41)" fg:x="58565" fg:w="27"/><text x="40.3666%" y="783.50"></text></g><g><title>ciBytecodeStream::get_method (27 samples, 0.02%)</title><rect x="40.1166%" y="757" width="0.0185%" height="15" fill="rgb(247,181,11)" fg:x="58565" fg:w="27"/><text x="40.3666%" y="767.50"></text></g><g><title>ciEnv::get_method_by_index_impl (27 samples, 0.02%)</title><rect x="40.1166%" y="741" width="0.0185%" height="15" fill="rgb(222,223,25)" fg:x="58565" fg:w="27"/><text x="40.3666%" y="751.50"></text></g><g><title>ciObjectFactory::get_metadata (22 samples, 0.02%)</title><rect x="40.1200%" y="725" width="0.0151%" height="15" fill="rgb(214,198,28)" fg:x="58570" fg:w="22"/><text x="40.3700%" y="735.50"></text></g><g><title>ciObjectFactory::create_new_metadata (21 samples, 0.01%)</title><rect x="40.1207%" y="709" width="0.0144%" height="15" fill="rgb(230,46,43)" fg:x="58571" fg:w="21"/><text x="40.3707%" y="719.50"></text></g><g><title>ciMethod::ciMethod (20 samples, 0.01%)</title><rect x="40.1214%" y="693" width="0.0137%" height="15" fill="rgb(233,65,53)" fg:x="58572" fg:w="20"/><text x="40.3714%" y="703.50"></text></g><g><title>ciSignature::ciSignature (16 samples, 0.01%)</title><rect x="40.1241%" y="677" width="0.0110%" height="15" fill="rgb(221,121,27)" fg:x="58576" fg:w="16"/><text x="40.3741%" y="687.50"></text></g><g><title>Parse::array_load (15 samples, 0.01%)</title><rect x="40.1454%" y="821" width="0.0103%" height="15" fill="rgb(247,70,47)" fg:x="58607" fg:w="15"/><text x="40.3954%" y="831.50"></text></g><g><title>InlineTree::ok_to_inline (35 samples, 0.02%)</title><rect x="40.1625%" y="789" width="0.0240%" height="15" fill="rgb(228,85,35)" fg:x="58632" fg:w="35"/><text x="40.4125%" y="799.50"></text></g><g><title>ciMethod::get_flow_analysis (19 samples, 0.01%)</title><rect x="40.1734%" y="773" width="0.0130%" height="15" fill="rgb(209,50,18)" fg:x="58648" fg:w="19"/><text x="40.4234%" y="783.50"></text></g><g><title>Compile::call_generator (47 samples, 0.03%)</title><rect x="40.1604%" y="805" width="0.0322%" height="15" fill="rgb(250,19,35)" fg:x="58629" fg:w="47"/><text x="40.4104%" y="815.50"></text></g><g><title>LibraryIntrinsic::generate (15 samples, 0.01%)</title><rect x="40.2186%" y="805" width="0.0103%" height="15" fill="rgb(253,107,29)" fg:x="58714" fg:w="15"/><text x="40.4686%" y="815.50"></text></g><g><title>LibraryCallKit::try_to_inline (15 samples, 0.01%)</title><rect x="40.2186%" y="789" width="0.0103%" height="15" fill="rgb(252,179,29)" fg:x="58714" fg:w="15"/><text x="40.4686%" y="799.50"></text></g><g><title>Parse::build_exits (16 samples, 0.01%)</title><rect x="40.2351%" y="773" width="0.0110%" height="15" fill="rgb(238,194,6)" fg:x="58738" fg:w="16"/><text x="40.4851%" y="783.50"></text></g><g><title>Parse::do_get_xxx (15 samples, 0.01%)</title><rect x="40.2789%" y="709" width="0.0103%" height="15" fill="rgb(238,164,29)" fg:x="58802" fg:w="15"/><text x="40.5289%" y="719.50"></text></g><g><title>Parse::do_field_access (22 samples, 0.02%)</title><rect x="40.2782%" y="725" width="0.0151%" height="15" fill="rgb(224,25,9)" fg:x="58801" fg:w="22"/><text x="40.5282%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.06%)</title><rect x="40.2591%" y="741" width="0.0562%" height="15" fill="rgb(244,153,23)" fg:x="58773" fg:w="82"/><text x="40.5091%" y="751.50"></text></g><g><title>Parse::do_one_block (88 samples, 0.06%)</title><rect x="40.2556%" y="757" width="0.0603%" height="15" fill="rgb(212,203,14)" fg:x="58768" fg:w="88"/><text x="40.5056%" y="767.50"></text></g><g><title>Parse::do_all_blocks (101 samples, 0.07%)</title><rect x="40.2543%" y="773" width="0.0692%" height="15" fill="rgb(220,164,20)" fg:x="58766" fg:w="101"/><text x="40.5043%" y="783.50"></text></g><g><title>ParseGenerator::generate (156 samples, 0.11%)</title><rect x="40.2289%" y="805" width="0.1069%" height="15" fill="rgb(222,203,48)" fg:x="58729" fg:w="156"/><text x="40.4789%" y="815.50"></text></g><g><title>Parse::Parse (155 samples, 0.11%)</title><rect x="40.2296%" y="789" width="0.1062%" height="15" fill="rgb(215,159,22)" fg:x="58730" fg:w="155"/><text x="40.4796%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (49 samples, 0.03%)</title><rect x="40.3358%" y="805" width="0.0336%" height="15" fill="rgb(216,183,47)" fg:x="58885" fg:w="49"/><text x="40.5858%" y="815.50"></text></g><g><title>Parse::do_call (324 samples, 0.22%)</title><rect x="40.1604%" y="821" width="0.2219%" height="15" fill="rgb(229,195,25)" fg:x="58629" fg:w="324"/><text x="40.4104%" y="831.50"></text></g><g><title>Parse::do_get_xxx (22 samples, 0.02%)</title><rect x="40.3933%" y="805" width="0.0151%" height="15" fill="rgb(224,132,51)" fg:x="58969" fg:w="22"/><text x="40.6433%" y="815.50"></text></g><g><title>GraphKit::access_store_at (23 samples, 0.02%)</title><rect x="40.4098%" y="789" width="0.0158%" height="15" fill="rgb(240,63,7)" fg:x="58993" fg:w="23"/><text x="40.6598%" y="799.50"></text></g><g><title>BarrierSetC2::store_at (23 samples, 0.02%)</title><rect x="40.4098%" y="773" width="0.0158%" height="15" fill="rgb(249,182,41)" fg:x="58993" fg:w="23"/><text x="40.6598%" y="783.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (22 samples, 0.02%)</title><rect x="40.4104%" y="757" width="0.0151%" height="15" fill="rgb(243,47,26)" fg:x="58994" fg:w="22"/><text x="40.6604%" y="767.50"></text></g><g><title>Parse::do_field_access (52 samples, 0.04%)</title><rect x="40.3913%" y="821" width="0.0356%" height="15" fill="rgb(233,48,2)" fg:x="58966" fg:w="52"/><text x="40.6413%" y="831.50"></text></g><g><title>Parse::do_put_xxx (27 samples, 0.02%)</title><rect x="40.4084%" y="805" width="0.0185%" height="15" fill="rgb(244,165,34)" fg:x="58991" fg:w="27"/><text x="40.6584%" y="815.50"></text></g><g><title>Parse::do_if (19 samples, 0.01%)</title><rect x="40.4269%" y="821" width="0.0130%" height="15" fill="rgb(207,89,7)" fg:x="59018" fg:w="19"/><text x="40.6769%" y="831.50"></text></g><g><title>Parse::do_all_blocks (462 samples, 0.32%)</title><rect x="40.1371%" y="869" width="0.3165%" height="15" fill="rgb(244,117,36)" fg:x="58595" fg:w="462"/><text x="40.3871%" y="879.50"></text></g><g><title>Parse::do_one_block (462 samples, 0.32%)</title><rect x="40.1371%" y="853" width="0.3165%" height="15" fill="rgb(226,144,34)" fg:x="58595" fg:w="462"/><text x="40.3871%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (453 samples, 0.31%)</title><rect x="40.1433%" y="837" width="0.3103%" height="15" fill="rgb(213,23,19)" fg:x="58604" fg:w="453"/><text x="40.3933%" y="847.50"></text></g><g><title>ParseGenerator::generate (467 samples, 0.32%)</title><rect x="40.1371%" y="901" width="0.3199%" height="15" fill="rgb(217,75,12)" fg:x="58595" fg:w="467"/><text x="40.3871%" y="911.50"></text></g><g><title>Parse::Parse (467 samples, 0.32%)</title><rect x="40.1371%" y="885" width="0.3199%" height="15" fill="rgb(224,159,17)" fg:x="58595" fg:w="467"/><text x="40.3871%" y="895.50"></text></g><g><title>CodeBuffer::relocate_code_to (20 samples, 0.01%)</title><rect x="40.4577%" y="837" width="0.0137%" height="15" fill="rgb(217,118,1)" fg:x="59063" fg:w="20"/><text x="40.7077%" y="847.50"></text></g><g><title>CodeBuffer::copy_code_to (21 samples, 0.01%)</title><rect x="40.4577%" y="853" width="0.0144%" height="15" fill="rgb(232,180,48)" fg:x="59063" fg:w="21"/><text x="40.7077%" y="863.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (544 samples, 0.37%)</title><rect x="40.1015%" y="949" width="0.3726%" height="15" fill="rgb(230,27,33)" fg:x="58543" fg:w="544"/><text x="40.3515%" y="959.50"></text></g><g><title>C2Compiler::compile_method (544 samples, 0.37%)</title><rect x="40.1015%" y="933" width="0.3726%" height="15" fill="rgb(205,31,21)" fg:x="58543" fg:w="544"/><text x="40.3515%" y="943.50"></text></g><g><title>Compile::Compile (544 samples, 0.37%)</title><rect x="40.1015%" y="917" width="0.3726%" height="15" fill="rgb(253,59,4)" fg:x="58543" fg:w="544"/><text x="40.3515%" y="927.50"></text></g><g><title>ciEnv::register_method (25 samples, 0.02%)</title><rect x="40.4570%" y="901" width="0.0171%" height="15" fill="rgb(224,201,9)" fg:x="59062" fg:w="25"/><text x="40.7070%" y="911.50"></text></g><g><title>nmethod::new_nmethod (24 samples, 0.02%)</title><rect x="40.4577%" y="885" width="0.0164%" height="15" fill="rgb(229,206,30)" fg:x="59063" fg:w="24"/><text x="40.7077%" y="895.50"></text></g><g><title>nmethod::nmethod (24 samples, 0.02%)</title><rect x="40.4577%" y="869" width="0.0164%" height="15" fill="rgb(212,67,47)" fg:x="59063" fg:w="24"/><text x="40.7077%" y="879.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="40.5029%" y="821" width="0.0219%" height="15" fill="rgb(211,96,50)" fg:x="59129" fg:w="32"/><text x="40.7529%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.02%)</title><rect x="40.5043%" y="805" width="0.0205%" height="15" fill="rgb(252,114,18)" fg:x="59131" fg:w="30"/><text x="40.7543%" y="815.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.02%)</title><rect x="40.5029%" y="837" width="0.0233%" height="15" fill="rgb(223,58,37)" fg:x="59129" fg:w="34"/><text x="40.7529%" y="847.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.03%)</title><rect x="40.5016%" y="869" width="0.0281%" height="15" fill="rgb(237,70,4)" fg:x="59127" fg:w="41"/><text x="40.7516%" y="879.50"></text></g><g><title>Parse::Parse (41 samples, 0.03%)</title><rect x="40.5016%" y="853" width="0.0281%" height="15" fill="rgb(244,85,46)" fg:x="59127" fg:w="41"/><text x="40.7516%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (60 samples, 0.04%)</title><rect x="40.4926%" y="949" width="0.0411%" height="15" fill="rgb(223,39,52)" fg:x="59114" fg:w="60"/><text x="40.7426%" y="959.50"></text></g><g><title>CompileBroker::compiler_thread_loop (60 samples, 0.04%)</title><rect x="40.4926%" y="933" width="0.0411%" height="15" fill="rgb(218,200,14)" fg:x="59114" fg:w="60"/><text x="40.7426%" y="943.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (60 samples, 0.04%)</title><rect x="40.4926%" y="917" width="0.0411%" height="15" fill="rgb(208,171,16)" fg:x="59114" fg:w="60"/><text x="40.7426%" y="927.50"></text></g><g><title>C2Compiler::compile_method (60 samples, 0.04%)</title><rect x="40.4926%" y="901" width="0.0411%" height="15" fill="rgb(234,200,18)" fg:x="59114" fg:w="60"/><text x="40.7426%" y="911.50"></text></g><g><title>Compile::Compile (60 samples, 0.04%)</title><rect x="40.4926%" y="885" width="0.0411%" height="15" fill="rgb(228,45,11)" fg:x="59114" fg:w="60"/><text x="40.7426%" y="895.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="40.5392%" y="485" width="0.0116%" height="15" fill="rgb(237,182,11)" fg:x="59182" fg:w="17"/><text x="40.7892%" y="495.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="40.5392%" y="469" width="0.0116%" height="15" fill="rgb(241,175,49)" fg:x="59182" fg:w="17"/><text x="40.7892%" y="479.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="40.5392%" y="453" width="0.0116%" height="15" fill="rgb(247,38,35)" fg:x="59182" fg:w="17"/><text x="40.7892%" y="463.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="40.5392%" y="437" width="0.0116%" height="15" fill="rgb(228,39,49)" fg:x="59182" fg:w="17"/><text x="40.7892%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="40.5392%" y="421" width="0.0116%" height="15" fill="rgb(226,101,26)" fg:x="59182" fg:w="17"/><text x="40.7892%" y="431.50"></text></g><g><title>Parse::do_call (17 samples, 0.01%)</title><rect x="40.5392%" y="405" width="0.0116%" height="15" fill="rgb(206,141,19)" fg:x="59182" fg:w="17"/><text x="40.7892%" y="415.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="40.5392%" y="677" width="0.0158%" height="15" fill="rgb(211,200,13)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="687.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="40.5392%" y="661" width="0.0158%" height="15" fill="rgb(241,121,6)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="671.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="40.5392%" y="645" width="0.0158%" height="15" fill="rgb(234,221,29)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="655.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="40.5392%" y="629" width="0.0158%" height="15" fill="rgb(229,136,5)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="40.5392%" y="613" width="0.0158%" height="15" fill="rgb(238,36,11)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="623.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="40.5392%" y="597" width="0.0158%" height="15" fill="rgb(251,55,41)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="607.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="40.5392%" y="581" width="0.0158%" height="15" fill="rgb(242,34,40)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="591.50"></text></g><g><title>Parse::Parse (23 samples, 0.02%)</title><rect x="40.5392%" y="565" width="0.0158%" height="15" fill="rgb(215,42,17)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="575.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.02%)</title><rect x="40.5392%" y="549" width="0.0158%" height="15" fill="rgb(207,44,46)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="559.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.02%)</title><rect x="40.5392%" y="533" width="0.0158%" height="15" fill="rgb(211,206,28)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.02%)</title><rect x="40.5392%" y="517" width="0.0158%" height="15" fill="rgb(237,167,16)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="527.50"></text></g><g><title>Parse::do_call (23 samples, 0.02%)</title><rect x="40.5392%" y="501" width="0.0158%" height="15" fill="rgb(233,66,6)" fg:x="59182" fg:w="23"/><text x="40.7892%" y="511.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.02%)</title><rect x="40.5392%" y="773" width="0.0171%" height="15" fill="rgb(246,123,29)" fg:x="59182" fg:w="25"/><text x="40.7892%" y="783.50"></text></g><g><title>Parse::Parse (25 samples, 0.02%)</title><rect x="40.5392%" y="757" width="0.0171%" height="15" fill="rgb(209,62,40)" fg:x="59182" fg:w="25"/><text x="40.7892%" y="767.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.02%)</title><rect x="40.5392%" y="741" width="0.0171%" height="15" fill="rgb(218,4,25)" fg:x="59182" fg:w="25"/><text x="40.7892%" y="751.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.02%)</title><rect x="40.5392%" y="725" width="0.0171%" height="15" fill="rgb(253,91,49)" fg:x="59182" fg:w="25"/><text x="40.7892%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.02%)</title><rect x="40.5392%" y="709" width="0.0171%" height="15" fill="rgb(228,155,29)" fg:x="59182" fg:w="25"/><text x="40.7892%" y="719.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="40.5392%" y="693" width="0.0171%" height="15" fill="rgb(243,57,37)" fg:x="59182" fg:w="25"/><text x="40.7892%" y="703.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.02%)</title><rect x="40.5392%" y="869" width="0.0185%" height="15" fill="rgb(244,167,17)" fg:x="59182" fg:w="27"/><text x="40.7892%" y="879.50"></text></g><g><title>Parse::Parse (27 samples, 0.02%)</title><rect x="40.5392%" y="853" width="0.0185%" height="15" fill="rgb(207,181,38)" fg:x="59182" fg:w="27"/><text x="40.7892%" y="863.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.02%)</title><rect x="40.5392%" y="837" width="0.0185%" height="15" fill="rgb(211,8,23)" fg:x="59182" fg:w="27"/><text x="40.7892%" y="847.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.02%)</title><rect x="40.5392%" y="821" width="0.0185%" height="15" fill="rgb(235,11,44)" fg:x="59182" fg:w="27"/><text x="40.7892%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.02%)</title><rect x="40.5392%" y="805" width="0.0185%" height="15" fill="rgb(248,18,52)" fg:x="59182" fg:w="27"/><text x="40.7892%" y="815.50"></text></g><g><title>Parse::do_call (27 samples, 0.02%)</title><rect x="40.5392%" y="789" width="0.0185%" height="15" fill="rgb(208,4,7)" fg:x="59182" fg:w="27"/><text x="40.7892%" y="799.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="40.5392%" y="949" width="0.0192%" height="15" fill="rgb(240,17,39)" fg:x="59182" fg:w="28"/><text x="40.7892%" y="959.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="40.5392%" y="933" width="0.0192%" height="15" fill="rgb(207,170,3)" fg:x="59182" fg:w="28"/><text x="40.7892%" y="943.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="40.5392%" y="917" width="0.0192%" height="15" fill="rgb(236,100,52)" fg:x="59182" fg:w="28"/><text x="40.7892%" y="927.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="40.5392%" y="901" width="0.0192%" height="15" fill="rgb(246,78,51)" fg:x="59182" fg:w="28"/><text x="40.7892%" y="911.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="40.5392%" y="885" width="0.0192%" height="15" fill="rgb(211,17,15)" fg:x="59182" fg:w="28"/><text x="40.7892%" y="895.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="40.5584%" y="501" width="0.0110%" height="15" fill="rgb(209,59,46)" fg:x="59210" fg:w="16"/><text x="40.8084%" y="511.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="40.5584%" y="485" width="0.0110%" height="15" fill="rgb(210,92,25)" fg:x="59210" fg:w="16"/><text x="40.8084%" y="495.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="40.5584%" y="469" width="0.0110%" height="15" fill="rgb(238,174,52)" fg:x="59210" fg:w="16"/><text x="40.8084%" y="479.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="40.5584%" y="453" width="0.0110%" height="15" fill="rgb(230,73,7)" fg:x="59210" fg:w="16"/><text x="40.8084%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="40.5584%" y="437" width="0.0110%" height="15" fill="rgb(243,124,40)" fg:x="59210" fg:w="16"/><text x="40.8084%" y="447.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="40.5584%" y="421" width="0.0110%" height="15" fill="rgb(244,170,11)" fg:x="59210" fg:w="16"/><text x="40.8084%" y="431.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="40.5584%" y="597" width="0.0130%" height="15" fill="rgb(207,114,54)" fg:x="59210" fg:w="19"/><text x="40.8084%" y="607.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="40.5584%" y="581" width="0.0130%" height="15" fill="rgb(205,42,20)" fg:x="59210" fg:w="19"/><text x="40.8084%" y="591.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="40.5584%" y="565" width="0.0130%" height="15" fill="rgb(230,30,28)" fg:x="59210" fg:w="19"/><text x="40.8084%" y="575.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="40.5584%" y="549" width="0.0130%" height="15" fill="rgb(205,73,54)" fg:x="59210" fg:w="19"/><text x="40.8084%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="40.5584%" y="533" width="0.0130%" height="15" fill="rgb(254,227,23)" fg:x="59210" fg:w="19"/><text x="40.8084%" y="543.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="40.5584%" y="517" width="0.0130%" height="15" fill="rgb(228,202,34)" fg:x="59210" fg:w="19"/><text x="40.8084%" y="527.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="40.5584%" y="693" width="0.0144%" height="15" fill="rgb(222,225,37)" fg:x="59210" fg:w="21"/><text x="40.8084%" y="703.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="40.5584%" y="677" width="0.0144%" height="15" fill="rgb(221,14,54)" fg:x="59210" fg:w="21"/><text x="40.8084%" y="687.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="40.5584%" y="661" width="0.0144%" height="15" fill="rgb(254,102,2)" fg:x="59210" fg:w="21"/><text x="40.8084%" y="671.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="40.5584%" y="645" width="0.0144%" height="15" fill="rgb(232,104,17)" fg:x="59210" fg:w="21"/><text x="40.8084%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="40.5584%" y="629" width="0.0144%" height="15" fill="rgb(250,220,14)" fg:x="59210" fg:w="21"/><text x="40.8084%" y="639.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="40.5584%" y="613" width="0.0144%" height="15" fill="rgb(241,158,9)" fg:x="59210" fg:w="21"/><text x="40.8084%" y="623.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="40.5584%" y="789" width="0.0178%" height="15" fill="rgb(246,9,43)" fg:x="59210" fg:w="26"/><text x="40.8084%" y="799.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="40.5584%" y="773" width="0.0178%" height="15" fill="rgb(206,73,33)" fg:x="59210" fg:w="26"/><text x="40.8084%" y="783.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="40.5584%" y="757" width="0.0178%" height="15" fill="rgb(222,79,8)" fg:x="59210" fg:w="26"/><text x="40.8084%" y="767.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="40.5584%" y="741" width="0.0178%" height="15" fill="rgb(234,8,54)" fg:x="59210" fg:w="26"/><text x="40.8084%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="40.5584%" y="725" width="0.0178%" height="15" fill="rgb(209,134,38)" fg:x="59210" fg:w="26"/><text x="40.8084%" y="735.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="40.5584%" y="709" width="0.0178%" height="15" fill="rgb(230,127,29)" fg:x="59210" fg:w="26"/><text x="40.8084%" y="719.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.02%)</title><rect x="40.5584%" y="885" width="0.0219%" height="15" fill="rgb(242,44,41)" fg:x="59210" fg:w="32"/><text x="40.8084%" y="895.50"></text></g><g><title>Parse::Parse (32 samples, 0.02%)</title><rect x="40.5584%" y="869" width="0.0219%" height="15" fill="rgb(222,56,43)" fg:x="59210" fg:w="32"/><text x="40.8084%" y="879.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.02%)</title><rect x="40.5584%" y="853" width="0.0219%" height="15" fill="rgb(238,39,47)" fg:x="59210" fg:w="32"/><text x="40.8084%" y="863.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="40.5584%" y="837" width="0.0219%" height="15" fill="rgb(226,79,43)" fg:x="59210" fg:w="32"/><text x="40.8084%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.02%)</title><rect x="40.5584%" y="821" width="0.0219%" height="15" fill="rgb(242,105,53)" fg:x="59210" fg:w="32"/><text x="40.8084%" y="831.50"></text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="40.5584%" y="805" width="0.0219%" height="15" fill="rgb(251,132,46)" fg:x="59210" fg:w="32"/><text x="40.8084%" y="815.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.02%)</title><rect x="40.5584%" y="949" width="0.0247%" height="15" fill="rgb(231,77,14)" fg:x="59210" fg:w="36"/><text x="40.8084%" y="959.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.02%)</title><rect x="40.5584%" y="933" width="0.0247%" height="15" fill="rgb(240,135,9)" fg:x="59210" fg:w="36"/><text x="40.8084%" y="943.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.02%)</title><rect x="40.5584%" y="917" width="0.0247%" height="15" fill="rgb(248,109,14)" fg:x="59210" fg:w="36"/><text x="40.8084%" y="927.50"></text></g><g><title>Parse::do_call (36 samples, 0.02%)</title><rect x="40.5584%" y="901" width="0.0247%" height="15" fill="rgb(227,146,52)" fg:x="59210" fg:w="36"/><text x="40.8084%" y="911.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="40.5851%" y="357" width="0.0137%" height="15" fill="rgb(232,54,3)" fg:x="59249" fg:w="20"/><text x="40.8351%" y="367.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="40.5851%" y="341" width="0.0137%" height="15" fill="rgb(229,201,43)" fg:x="59249" fg:w="20"/><text x="40.8351%" y="351.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="40.5851%" y="325" width="0.0137%" height="15" fill="rgb(252,161,33)" fg:x="59249" fg:w="20"/><text x="40.8351%" y="335.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="40.5851%" y="309" width="0.0137%" height="15" fill="rgb(226,146,40)" fg:x="59249" fg:w="20"/><text x="40.8351%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="40.5851%" y="293" width="0.0137%" height="15" fill="rgb(219,47,25)" fg:x="59249" fg:w="20"/><text x="40.8351%" y="303.50"></text></g><g><title>Parse::do_call (19 samples, 0.01%)</title><rect x="40.5858%" y="277" width="0.0130%" height="15" fill="rgb(250,135,13)" fg:x="59250" fg:w="19"/><text x="40.8358%" y="287.50"></text></g><g><title>Parse::do_call (25 samples, 0.02%)</title><rect x="40.5831%" y="373" width="0.0171%" height="15" fill="rgb(219,229,18)" fg:x="59246" fg:w="25"/><text x="40.8331%" y="383.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="40.5831%" y="453" width="0.0178%" height="15" fill="rgb(217,152,27)" fg:x="59246" fg:w="26"/><text x="40.8331%" y="463.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="40.5831%" y="437" width="0.0178%" height="15" fill="rgb(225,71,47)" fg:x="59246" fg:w="26"/><text x="40.8331%" y="447.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="40.5831%" y="421" width="0.0178%" height="15" fill="rgb(220,139,14)" fg:x="59246" fg:w="26"/><text x="40.8331%" y="431.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="40.5831%" y="405" width="0.0178%" height="15" fill="rgb(247,54,32)" fg:x="59246" fg:w="26"/><text x="40.8331%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="40.5831%" y="389" width="0.0178%" height="15" fill="rgb(252,131,39)" fg:x="59246" fg:w="26"/><text x="40.8331%" y="399.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="40.5831%" y="549" width="0.0192%" height="15" fill="rgb(210,108,39)" fg:x="59246" fg:w="28"/><text x="40.8331%" y="559.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="40.5831%" y="533" width="0.0192%" height="15" fill="rgb(205,23,29)" fg:x="59246" fg:w="28"/><text x="40.8331%" y="543.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="40.5831%" y="517" width="0.0192%" height="15" fill="rgb(246,139,46)" fg:x="59246" fg:w="28"/><text x="40.8331%" y="527.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="40.5831%" y="501" width="0.0192%" height="15" fill="rgb(250,81,26)" fg:x="59246" fg:w="28"/><text x="40.8331%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="40.5831%" y="485" width="0.0192%" height="15" fill="rgb(214,104,7)" fg:x="59246" fg:w="28"/><text x="40.8331%" y="495.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="40.5831%" y="469" width="0.0192%" height="15" fill="rgb(233,189,8)" fg:x="59246" fg:w="28"/><text x="40.8331%" y="479.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.02%)</title><rect x="40.5831%" y="645" width="0.0219%" height="15" fill="rgb(228,141,17)" fg:x="59246" fg:w="32"/><text x="40.8331%" y="655.50"></text></g><g><title>Parse::Parse (32 samples, 0.02%)</title><rect x="40.5831%" y="629" width="0.0219%" height="15" fill="rgb(247,157,1)" fg:x="59246" fg:w="32"/><text x="40.8331%" y="639.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.02%)</title><rect x="40.5831%" y="613" width="0.0219%" height="15" fill="rgb(249,225,5)" fg:x="59246" fg:w="32"/><text x="40.8331%" y="623.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.02%)</title><rect x="40.5831%" y="597" width="0.0219%" height="15" fill="rgb(242,55,13)" fg:x="59246" fg:w="32"/><text x="40.8331%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.02%)</title><rect x="40.5831%" y="581" width="0.0219%" height="15" fill="rgb(230,49,50)" fg:x="59246" fg:w="32"/><text x="40.8331%" y="591.50"></text></g><g><title>Parse::do_call (32 samples, 0.02%)</title><rect x="40.5831%" y="565" width="0.0219%" height="15" fill="rgb(241,111,38)" fg:x="59246" fg:w="32"/><text x="40.8331%" y="575.50"></text></g><g><title>ParseGenerator::generate (36 samples, 0.02%)</title><rect x="40.5831%" y="741" width="0.0247%" height="15" fill="rgb(252,155,4)" fg:x="59246" fg:w="36"/><text x="40.8331%" y="751.50"></text></g><g><title>Parse::Parse (36 samples, 0.02%)</title><rect x="40.5831%" y="725" width="0.0247%" height="15" fill="rgb(212,69,32)" fg:x="59246" fg:w="36"/><text x="40.8331%" y="735.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.02%)</title><rect x="40.5831%" y="709" width="0.0247%" height="15" fill="rgb(243,107,47)" fg:x="59246" fg:w="36"/><text x="40.8331%" y="719.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.02%)</title><rect x="40.5831%" y="693" width="0.0247%" height="15" fill="rgb(247,130,12)" fg:x="59246" fg:w="36"/><text x="40.8331%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.02%)</title><rect x="40.5831%" y="677" width="0.0247%" height="15" fill="rgb(233,74,16)" fg:x="59246" fg:w="36"/><text x="40.8331%" y="687.50"></text></g><g><title>Parse::do_call (36 samples, 0.02%)</title><rect x="40.5831%" y="661" width="0.0247%" height="15" fill="rgb(208,58,18)" fg:x="59246" fg:w="36"/><text x="40.8331%" y="671.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.03%)</title><rect x="40.5831%" y="837" width="0.0301%" height="15" fill="rgb(242,225,1)" fg:x="59246" fg:w="44"/><text x="40.8331%" y="847.50"></text></g><g><title>Parse::Parse (44 samples, 0.03%)</title><rect x="40.5831%" y="821" width="0.0301%" height="15" fill="rgb(249,39,40)" fg:x="59246" fg:w="44"/><text x="40.8331%" y="831.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.03%)</title><rect x="40.5831%" y="805" width="0.0301%" height="15" fill="rgb(207,72,44)" fg:x="59246" fg:w="44"/><text x="40.8331%" y="815.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.03%)</title><rect x="40.5831%" y="789" width="0.0301%" height="15" fill="rgb(215,193,12)" fg:x="59246" fg:w="44"/><text x="40.8331%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.03%)</title><rect x="40.5831%" y="773" width="0.0301%" height="15" fill="rgb(248,41,39)" fg:x="59246" fg:w="44"/><text x="40.8331%" y="783.50"></text></g><g><title>Parse::do_call (44 samples, 0.03%)</title><rect x="40.5831%" y="757" width="0.0301%" height="15" fill="rgb(253,85,4)" fg:x="59246" fg:w="44"/><text x="40.8331%" y="767.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.04%)</title><rect x="40.5831%" y="933" width="0.0356%" height="15" fill="rgb(243,70,31)" fg:x="59246" fg:w="52"/><text x="40.8331%" y="943.50"></text></g><g><title>Parse::Parse (52 samples, 0.04%)</title><rect x="40.5831%" y="917" width="0.0356%" height="15" fill="rgb(253,195,26)" fg:x="59246" fg:w="52"/><text x="40.8331%" y="927.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.04%)</title><rect x="40.5831%" y="901" width="0.0356%" height="15" fill="rgb(243,42,11)" fg:x="59246" fg:w="52"/><text x="40.8331%" y="911.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.04%)</title><rect x="40.5831%" y="885" width="0.0356%" height="15" fill="rgb(239,66,17)" fg:x="59246" fg:w="52"/><text x="40.8331%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.04%)</title><rect x="40.5831%" y="869" width="0.0356%" height="15" fill="rgb(217,132,21)" fg:x="59246" fg:w="52"/><text x="40.8331%" y="879.50"></text></g><g><title>Parse::do_call (52 samples, 0.04%)</title><rect x="40.5831%" y="853" width="0.0356%" height="15" fill="rgb(252,202,21)" fg:x="59246" fg:w="52"/><text x="40.8331%" y="863.50"></text></g><g><title>Parse::do_call (59 samples, 0.04%)</title><rect x="40.5831%" y="949" width="0.0404%" height="15" fill="rgb(233,98,36)" fg:x="59246" fg:w="59"/><text x="40.8331%" y="959.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="40.6242%" y="325" width="0.0123%" height="15" fill="rgb(216,153,54)" fg:x="59306" fg:w="18"/><text x="40.8742%" y="335.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="40.6242%" y="309" width="0.0123%" height="15" fill="rgb(250,99,7)" fg:x="59306" fg:w="18"/><text x="40.8742%" y="319.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="40.6242%" y="293" width="0.0123%" height="15" fill="rgb(207,56,50)" fg:x="59306" fg:w="18"/><text x="40.8742%" y="303.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="40.6242%" y="277" width="0.0123%" height="15" fill="rgb(244,61,34)" fg:x="59306" fg:w="18"/><text x="40.8742%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="40.6242%" y="261" width="0.0123%" height="15" fill="rgb(241,50,38)" fg:x="59306" fg:w="18"/><text x="40.8742%" y="271.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="40.6235%" y="421" width="0.0144%" height="15" fill="rgb(212,166,30)" fg:x="59305" fg:w="21"/><text x="40.8735%" y="431.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="40.6235%" y="405" width="0.0144%" height="15" fill="rgb(249,127,32)" fg:x="59305" fg:w="21"/><text x="40.8735%" y="415.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="40.6235%" y="389" width="0.0144%" height="15" fill="rgb(209,103,0)" fg:x="59305" fg:w="21"/><text x="40.8735%" y="399.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="40.6235%" y="373" width="0.0144%" height="15" fill="rgb(238,209,51)" fg:x="59305" fg:w="21"/><text x="40.8735%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="40.6235%" y="357" width="0.0144%" height="15" fill="rgb(237,56,23)" fg:x="59305" fg:w="21"/><text x="40.8735%" y="367.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="40.6235%" y="341" width="0.0144%" height="15" fill="rgb(215,153,46)" fg:x="59305" fg:w="21"/><text x="40.8735%" y="351.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.02%)</title><rect x="40.6235%" y="613" width="0.0151%" height="15" fill="rgb(224,49,31)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="623.50"></text></g><g><title>Parse::Parse (22 samples, 0.02%)</title><rect x="40.6235%" y="597" width="0.0151%" height="15" fill="rgb(250,18,42)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="607.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.02%)</title><rect x="40.6235%" y="581" width="0.0151%" height="15" fill="rgb(215,176,39)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="591.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.02%)</title><rect x="40.6235%" y="565" width="0.0151%" height="15" fill="rgb(223,77,29)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.02%)</title><rect x="40.6235%" y="549" width="0.0151%" height="15" fill="rgb(234,94,52)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="559.50"></text></g><g><title>Parse::do_call (22 samples, 0.02%)</title><rect x="40.6235%" y="533" width="0.0151%" height="15" fill="rgb(220,154,50)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="543.50"></text></g><g><title>ParseGenerator::generate (22 samples, 0.02%)</title><rect x="40.6235%" y="517" width="0.0151%" height="15" fill="rgb(212,11,10)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="527.50"></text></g><g><title>Parse::Parse (22 samples, 0.02%)</title><rect x="40.6235%" y="501" width="0.0151%" height="15" fill="rgb(205,166,19)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="511.50"></text></g><g><title>Parse::do_all_blocks (22 samples, 0.02%)</title><rect x="40.6235%" y="485" width="0.0151%" height="15" fill="rgb(244,198,16)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="495.50"></text></g><g><title>Parse::do_one_block (22 samples, 0.02%)</title><rect x="40.6235%" y="469" width="0.0151%" height="15" fill="rgb(219,69,12)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (22 samples, 0.02%)</title><rect x="40.6235%" y="453" width="0.0151%" height="15" fill="rgb(245,30,7)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="463.50"></text></g><g><title>Parse::do_call (22 samples, 0.02%)</title><rect x="40.6235%" y="437" width="0.0151%" height="15" fill="rgb(218,221,48)" fg:x="59305" fg:w="22"/><text x="40.8735%" y="447.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="40.6235%" y="709" width="0.0178%" height="15" fill="rgb(216,66,15)" fg:x="59305" fg:w="26"/><text x="40.8735%" y="719.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="40.6235%" y="693" width="0.0178%" height="15" fill="rgb(226,122,50)" fg:x="59305" fg:w="26"/><text x="40.8735%" y="703.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="40.6235%" y="677" width="0.0178%" height="15" fill="rgb(239,156,16)" fg:x="59305" fg:w="26"/><text x="40.8735%" y="687.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="40.6235%" y="661" width="0.0178%" height="15" fill="rgb(224,27,38)" fg:x="59305" fg:w="26"/><text x="40.8735%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="40.6235%" y="645" width="0.0178%" height="15" fill="rgb(224,39,27)" fg:x="59305" fg:w="26"/><text x="40.8735%" y="655.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="40.6235%" y="629" width="0.0178%" height="15" fill="rgb(215,92,29)" fg:x="59305" fg:w="26"/><text x="40.8735%" y="639.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="40.6235%" y="805" width="0.0192%" height="15" fill="rgb(207,159,16)" fg:x="59305" fg:w="28"/><text x="40.8735%" y="815.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="40.6235%" y="789" width="0.0192%" height="15" fill="rgb(238,163,47)" fg:x="59305" fg:w="28"/><text x="40.8735%" y="799.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="40.6235%" y="773" width="0.0192%" height="15" fill="rgb(219,91,49)" fg:x="59305" fg:w="28"/><text x="40.8735%" y="783.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="40.6235%" y="757" width="0.0192%" height="15" fill="rgb(227,167,31)" fg:x="59305" fg:w="28"/><text x="40.8735%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="40.6235%" y="741" width="0.0192%" height="15" fill="rgb(234,80,54)" fg:x="59305" fg:w="28"/><text x="40.8735%" y="751.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="40.6235%" y="725" width="0.0192%" height="15" fill="rgb(212,114,2)" fg:x="59305" fg:w="28"/><text x="40.8735%" y="735.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.02%)</title><rect x="40.6235%" y="901" width="0.0226%" height="15" fill="rgb(234,50,24)" fg:x="59305" fg:w="33"/><text x="40.8735%" y="911.50"></text></g><g><title>Parse::Parse (33 samples, 0.02%)</title><rect x="40.6235%" y="885" width="0.0226%" height="15" fill="rgb(221,68,8)" fg:x="59305" fg:w="33"/><text x="40.8735%" y="895.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.02%)</title><rect x="40.6235%" y="869" width="0.0226%" height="15" fill="rgb(254,180,31)" fg:x="59305" fg:w="33"/><text x="40.8735%" y="879.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.02%)</title><rect x="40.6235%" y="853" width="0.0226%" height="15" fill="rgb(247,130,50)" fg:x="59305" fg:w="33"/><text x="40.8735%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.02%)</title><rect x="40.6235%" y="837" width="0.0226%" height="15" fill="rgb(211,109,4)" fg:x="59305" fg:w="33"/><text x="40.8735%" y="847.50"></text></g><g><title>Parse::do_call (33 samples, 0.02%)</title><rect x="40.6235%" y="821" width="0.0226%" height="15" fill="rgb(238,50,21)" fg:x="59305" fg:w="33"/><text x="40.8735%" y="831.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.02%)</title><rect x="40.6235%" y="949" width="0.0233%" height="15" fill="rgb(225,57,45)" fg:x="59305" fg:w="34"/><text x="40.8735%" y="959.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.02%)</title><rect x="40.6235%" y="933" width="0.0233%" height="15" fill="rgb(209,196,50)" fg:x="59305" fg:w="34"/><text x="40.8735%" y="943.50"></text></g><g><title>Parse::do_call (34 samples, 0.02%)</title><rect x="40.6235%" y="917" width="0.0233%" height="15" fill="rgb(242,140,13)" fg:x="59305" fg:w="34"/><text x="40.8735%" y="927.50"></text></g><g><title>Parse::do_call (15 samples, 0.01%)</title><rect x="40.6475%" y="261" width="0.0103%" height="15" fill="rgb(217,111,7)" fg:x="59340" fg:w="15"/><text x="40.8975%" y="271.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="40.6468%" y="357" width="0.0123%" height="15" fill="rgb(253,193,51)" fg:x="59339" fg:w="18"/><text x="40.8968%" y="367.50"></text></g><g><title>ParseGenerator::generate (17 samples, 0.01%)</title><rect x="40.6475%" y="341" width="0.0116%" height="15" fill="rgb(252,70,29)" fg:x="59340" fg:w="17"/><text x="40.8975%" y="351.50"></text></g><g><title>Parse::Parse (17 samples, 0.01%)</title><rect x="40.6475%" y="325" width="0.0116%" height="15" fill="rgb(232,127,12)" fg:x="59340" fg:w="17"/><text x="40.8975%" y="335.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="40.6475%" y="309" width="0.0116%" height="15" fill="rgb(211,180,21)" fg:x="59340" fg:w="17"/><text x="40.8975%" y="319.50"></text></g><g><title>Parse::do_one_block (17 samples, 0.01%)</title><rect x="40.6475%" y="293" width="0.0116%" height="15" fill="rgb(229,72,13)" fg:x="59340" fg:w="17"/><text x="40.8975%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (17 samples, 0.01%)</title><rect x="40.6475%" y="277" width="0.0116%" height="15" fill="rgb(240,211,49)" fg:x="59340" fg:w="17"/><text x="40.8975%" y="287.50"></text></g><g><title>ParseGenerator::generate (19 samples, 0.01%)</title><rect x="40.6468%" y="437" width="0.0130%" height="15" fill="rgb(219,149,40)" fg:x="59339" fg:w="19"/><text x="40.8968%" y="447.50"></text></g><g><title>Parse::Parse (19 samples, 0.01%)</title><rect x="40.6468%" y="421" width="0.0130%" height="15" fill="rgb(210,127,46)" fg:x="59339" fg:w="19"/><text x="40.8968%" y="431.50"></text></g><g><title>Parse::do_all_blocks (19 samples, 0.01%)</title><rect x="40.6468%" y="405" width="0.0130%" height="15" fill="rgb(220,106,7)" fg:x="59339" fg:w="19"/><text x="40.8968%" y="415.50"></text></g><g><title>Parse::do_one_block (19 samples, 0.01%)</title><rect x="40.6468%" y="389" width="0.0130%" height="15" fill="rgb(249,31,22)" fg:x="59339" fg:w="19"/><text x="40.8968%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (19 samples, 0.01%)</title><rect x="40.6468%" y="373" width="0.0130%" height="15" fill="rgb(253,1,49)" fg:x="59339" fg:w="19"/><text x="40.8968%" y="383.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="40.6468%" y="533" width="0.0144%" height="15" fill="rgb(227,144,33)" fg:x="59339" fg:w="21"/><text x="40.8968%" y="543.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="40.6468%" y="517" width="0.0144%" height="15" fill="rgb(249,163,44)" fg:x="59339" fg:w="21"/><text x="40.8968%" y="527.50"></text></g><g><title>Parse::do_all_blocks (21 samples, 0.01%)</title><rect x="40.6468%" y="501" width="0.0144%" height="15" fill="rgb(234,15,39)" fg:x="59339" fg:w="21"/><text x="40.8968%" y="511.50"></text></g><g><title>Parse::do_one_block (21 samples, 0.01%)</title><rect x="40.6468%" y="485" width="0.0144%" height="15" fill="rgb(207,66,16)" fg:x="59339" fg:w="21"/><text x="40.8968%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (21 samples, 0.01%)</title><rect x="40.6468%" y="469" width="0.0144%" height="15" fill="rgb(233,112,24)" fg:x="59339" fg:w="21"/><text x="40.8968%" y="479.50"></text></g><g><title>Parse::do_call (21 samples, 0.01%)</title><rect x="40.6468%" y="453" width="0.0144%" height="15" fill="rgb(230,90,22)" fg:x="59339" fg:w="21"/><text x="40.8968%" y="463.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.02%)</title><rect x="40.6468%" y="629" width="0.0178%" height="15" fill="rgb(229,61,13)" fg:x="59339" fg:w="26"/><text x="40.8968%" y="639.50"></text></g><g><title>Parse::Parse (26 samples, 0.02%)</title><rect x="40.6468%" y="613" width="0.0178%" height="15" fill="rgb(225,57,24)" fg:x="59339" fg:w="26"/><text x="40.8968%" y="623.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.02%)</title><rect x="40.6468%" y="597" width="0.0178%" height="15" fill="rgb(208,169,48)" fg:x="59339" fg:w="26"/><text x="40.8968%" y="607.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.02%)</title><rect x="40.6468%" y="581" width="0.0178%" height="15" fill="rgb(244,218,51)" fg:x="59339" fg:w="26"/><text x="40.8968%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.02%)</title><rect x="40.6468%" y="565" width="0.0178%" height="15" fill="rgb(214,148,10)" fg:x="59339" fg:w="26"/><text x="40.8968%" y="575.50"></text></g><g><title>Parse::do_call (26 samples, 0.02%)</title><rect x="40.6468%" y="549" width="0.0178%" height="15" fill="rgb(225,174,27)" fg:x="59339" fg:w="26"/><text x="40.8968%" y="559.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.02%)</title><rect x="40.6468%" y="725" width="0.0192%" height="15" fill="rgb(230,96,26)" fg:x="59339" fg:w="28"/><text x="40.8968%" y="735.50"></text></g><g><title>Parse::Parse (28 samples, 0.02%)</title><rect x="40.6468%" y="709" width="0.0192%" height="15" fill="rgb(232,10,30)" fg:x="59339" fg:w="28"/><text x="40.8968%" y="719.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.02%)</title><rect x="40.6468%" y="693" width="0.0192%" height="15" fill="rgb(222,8,50)" fg:x="59339" fg:w="28"/><text x="40.8968%" y="703.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.02%)</title><rect x="40.6468%" y="677" width="0.0192%" height="15" fill="rgb(213,81,27)" fg:x="59339" fg:w="28"/><text x="40.8968%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.02%)</title><rect x="40.6468%" y="661" width="0.0192%" height="15" fill="rgb(245,50,10)" fg:x="59339" fg:w="28"/><text x="40.8968%" y="671.50"></text></g><g><title>Parse::do_call (28 samples, 0.02%)</title><rect x="40.6468%" y="645" width="0.0192%" height="15" fill="rgb(216,100,18)" fg:x="59339" fg:w="28"/><text x="40.8968%" y="655.50"></text></g><g><title>ParseGenerator::generate (37 samples, 0.03%)</title><rect x="40.6468%" y="821" width="0.0253%" height="15" fill="rgb(236,147,54)" fg:x="59339" fg:w="37"/><text x="40.8968%" y="831.50"></text></g><g><title>Parse::Parse (37 samples, 0.03%)</title><rect x="40.6468%" y="805" width="0.0253%" height="15" fill="rgb(205,143,26)" fg:x="59339" fg:w="37"/><text x="40.8968%" y="815.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.03%)</title><rect x="40.6468%" y="789" width="0.0253%" height="15" fill="rgb(236,26,9)" fg:x="59339" fg:w="37"/><text x="40.8968%" y="799.50"></text></g><g><title>Parse::do_one_block (37 samples, 0.03%)</title><rect x="40.6468%" y="773" width="0.0253%" height="15" fill="rgb(221,165,53)" fg:x="59339" fg:w="37"/><text x="40.8968%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (37 samples, 0.03%)</title><rect x="40.6468%" y="757" width="0.0253%" height="15" fill="rgb(214,110,17)" fg:x="59339" fg:w="37"/><text x="40.8968%" y="767.50"></text></g><g><title>Parse::do_call (37 samples, 0.03%)</title><rect x="40.6468%" y="741" width="0.0253%" height="15" fill="rgb(237,197,12)" fg:x="59339" fg:w="37"/><text x="40.8968%" y="751.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.03%)</title><rect x="40.6468%" y="917" width="0.0288%" height="15" fill="rgb(205,84,17)" fg:x="59339" fg:w="42"/><text x="40.8968%" y="927.50"></text></g><g><title>Parse::Parse (42 samples, 0.03%)</title><rect x="40.6468%" y="901" width="0.0288%" height="15" fill="rgb(237,18,45)" fg:x="59339" fg:w="42"/><text x="40.8968%" y="911.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.03%)</title><rect x="40.6468%" y="885" width="0.0288%" height="15" fill="rgb(221,87,14)" fg:x="59339" fg:w="42"/><text x="40.8968%" y="895.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.03%)</title><rect x="40.6468%" y="869" width="0.0288%" height="15" fill="rgb(238,186,15)" fg:x="59339" fg:w="42"/><text x="40.8968%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.03%)</title><rect x="40.6468%" y="853" width="0.0288%" height="15" fill="rgb(208,115,11)" fg:x="59339" fg:w="42"/><text x="40.8968%" y="863.50"></text></g><g><title>Parse::do_call (42 samples, 0.03%)</title><rect x="40.6468%" y="837" width="0.0288%" height="15" fill="rgb(254,175,0)" fg:x="59339" fg:w="42"/><text x="40.8968%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.03%)</title><rect x="40.6468%" y="949" width="0.0315%" height="15" fill="rgb(227,24,42)" fg:x="59339" fg:w="46"/><text x="40.8968%" y="959.50"></text></g><g><title>Parse::do_call (46 samples, 0.03%)</title><rect x="40.6468%" y="933" width="0.0315%" height="15" fill="rgb(223,211,37)" fg:x="59339" fg:w="46"/><text x="40.8968%" y="943.50"></text></g><g><title>ParseGenerator::generate (24 samples, 0.02%)</title><rect x="40.6961%" y="181" width="0.0164%" height="15" fill="rgb(235,49,27)" fg:x="59411" fg:w="24"/><text x="40.9461%" y="191.50"></text></g><g><title>Parse::Parse (24 samples, 0.02%)</title><rect x="40.6961%" y="165" width="0.0164%" height="15" fill="rgb(254,97,51)" fg:x="59411" fg:w="24"/><text x="40.9461%" y="175.50"></text></g><g><title>Parse::do_call (40 samples, 0.03%)</title><rect x="40.6858%" y="197" width="0.0274%" height="15" fill="rgb(249,51,40)" fg:x="59396" fg:w="40"/><text x="40.9358%" y="207.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.04%)</title><rect x="40.6851%" y="277" width="0.0356%" height="15" fill="rgb(210,128,45)" fg:x="59395" fg:w="52"/><text x="40.9351%" y="287.50"></text></g><g><title>Parse::Parse (52 samples, 0.04%)</title><rect x="40.6851%" y="261" width="0.0356%" height="15" fill="rgb(224,137,50)" fg:x="59395" fg:w="52"/><text x="40.9351%" y="271.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.04%)</title><rect x="40.6851%" y="245" width="0.0356%" height="15" fill="rgb(242,15,9)" fg:x="59395" fg:w="52"/><text x="40.9351%" y="255.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.04%)</title><rect x="40.6851%" y="229" width="0.0356%" height="15" fill="rgb(233,187,41)" fg:x="59395" fg:w="52"/><text x="40.9351%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.04%)</title><rect x="40.6851%" y="213" width="0.0356%" height="15" fill="rgb(227,2,29)" fg:x="59395" fg:w="52"/><text x="40.9351%" y="223.50"></text></g><g><title>Parse::do_call (59 samples, 0.04%)</title><rect x="40.6824%" y="293" width="0.0404%" height="15" fill="rgb(222,70,3)" fg:x="59391" fg:w="59"/><text x="40.9324%" y="303.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.04%)</title><rect x="40.6824%" y="373" width="0.0418%" height="15" fill="rgb(213,11,42)" fg:x="59391" fg:w="61"/><text x="40.9324%" y="383.50"></text></g><g><title>Parse::Parse (61 samples, 0.04%)</title><rect x="40.6824%" y="357" width="0.0418%" height="15" fill="rgb(225,150,9)" fg:x="59391" fg:w="61"/><text x="40.9324%" y="367.50"></text></g><g><title>Parse::do_all_blocks (61 samples, 0.04%)</title><rect x="40.6824%" y="341" width="0.0418%" height="15" fill="rgb(230,162,45)" fg:x="59391" fg:w="61"/><text x="40.9324%" y="351.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.04%)</title><rect x="40.6824%" y="325" width="0.0418%" height="15" fill="rgb(222,14,52)" fg:x="59391" fg:w="61"/><text x="40.9324%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.04%)</title><rect x="40.6824%" y="309" width="0.0418%" height="15" fill="rgb(254,198,14)" fg:x="59391" fg:w="61"/><text x="40.9324%" y="319.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.05%)</title><rect x="40.6790%" y="469" width="0.0486%" height="15" fill="rgb(220,217,30)" fg:x="59386" fg:w="71"/><text x="40.9290%" y="479.50"></text></g><g><title>Parse::Parse (71 samples, 0.05%)</title><rect x="40.6790%" y="453" width="0.0486%" height="15" fill="rgb(215,146,41)" fg:x="59386" fg:w="71"/><text x="40.9290%" y="463.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.05%)</title><rect x="40.6790%" y="437" width="0.0486%" height="15" fill="rgb(217,27,36)" fg:x="59386" fg:w="71"/><text x="40.9290%" y="447.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.05%)</title><rect x="40.6790%" y="421" width="0.0486%" height="15" fill="rgb(219,218,39)" fg:x="59386" fg:w="71"/><text x="40.9290%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (71 samples, 0.05%)</title><rect x="40.6790%" y="405" width="0.0486%" height="15" fill="rgb(219,4,42)" fg:x="59386" fg:w="71"/><text x="40.9290%" y="415.50"></text></g><g><title>Parse::do_call (71 samples, 0.05%)</title><rect x="40.6790%" y="389" width="0.0486%" height="15" fill="rgb(249,119,36)" fg:x="59386" fg:w="71"/><text x="40.9290%" y="399.50"></text></g><g><title>ParseGenerator::generate (81 samples, 0.06%)</title><rect x="40.6783%" y="565" width="0.0555%" height="15" fill="rgb(209,23,33)" fg:x="59385" fg:w="81"/><text x="40.9283%" y="575.50"></text></g><g><title>Parse::Parse (81 samples, 0.06%)</title><rect x="40.6783%" y="549" width="0.0555%" height="15" fill="rgb(211,10,0)" fg:x="59385" fg:w="81"/><text x="40.9283%" y="559.50"></text></g><g><title>Parse::do_all_blocks (81 samples, 0.06%)</title><rect x="40.6783%" y="533" width="0.0555%" height="15" fill="rgb(208,99,37)" fg:x="59385" fg:w="81"/><text x="40.9283%" y="543.50"></text></g><g><title>Parse::do_one_block (81 samples, 0.06%)</title><rect x="40.6783%" y="517" width="0.0555%" height="15" fill="rgb(213,132,31)" fg:x="59385" fg:w="81"/><text x="40.9283%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (81 samples, 0.06%)</title><rect x="40.6783%" y="501" width="0.0555%" height="15" fill="rgb(243,129,40)" fg:x="59385" fg:w="81"/><text x="40.9283%" y="511.50"></text></g><g><title>Parse::do_call (81 samples, 0.06%)</title><rect x="40.6783%" y="485" width="0.0555%" height="15" fill="rgb(210,66,33)" fg:x="59385" fg:w="81"/><text x="40.9283%" y="495.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.06%)</title><rect x="40.6783%" y="661" width="0.0644%" height="15" fill="rgb(209,189,4)" fg:x="59385" fg:w="94"/><text x="40.9283%" y="671.50"></text></g><g><title>Parse::Parse (94 samples, 0.06%)</title><rect x="40.6783%" y="645" width="0.0644%" height="15" fill="rgb(214,107,37)" fg:x="59385" fg:w="94"/><text x="40.9283%" y="655.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.06%)</title><rect x="40.6783%" y="629" width="0.0644%" height="15" fill="rgb(245,88,54)" fg:x="59385" fg:w="94"/><text x="40.9283%" y="639.50"></text></g><g><title>Parse::do_one_block (94 samples, 0.06%)</title><rect x="40.6783%" y="613" width="0.0644%" height="15" fill="rgb(205,146,20)" fg:x="59385" fg:w="94"/><text x="40.9283%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (94 samples, 0.06%)</title><rect x="40.6783%" y="597" width="0.0644%" height="15" fill="rgb(220,161,25)" fg:x="59385" fg:w="94"/><text x="40.9283%" y="607.50"></text></g><g><title>Parse::do_call (94 samples, 0.06%)</title><rect x="40.6783%" y="581" width="0.0644%" height="15" fill="rgb(215,152,15)" fg:x="59385" fg:w="94"/><text x="40.9283%" y="591.50"></text></g><g><title>ParseGenerator::generate (15 samples, 0.01%)</title><rect x="40.7427%" y="549" width="0.0103%" height="15" fill="rgb(233,192,44)" fg:x="59479" fg:w="15"/><text x="40.9927%" y="559.50"></text></g><g><title>Parse::Parse (15 samples, 0.01%)</title><rect x="40.7427%" y="533" width="0.0103%" height="15" fill="rgb(240,170,46)" fg:x="59479" fg:w="15"/><text x="40.9927%" y="543.50"></text></g><g><title>Parse::do_all_blocks (15 samples, 0.01%)</title><rect x="40.7427%" y="517" width="0.0103%" height="15" fill="rgb(207,104,33)" fg:x="59479" fg:w="15"/><text x="40.9927%" y="527.50"></text></g><g><title>Parse::do_one_block (15 samples, 0.01%)</title><rect x="40.7427%" y="501" width="0.0103%" height="15" fill="rgb(219,21,39)" fg:x="59479" fg:w="15"/><text x="40.9927%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (15 samples, 0.01%)</title><rect x="40.7427%" y="485" width="0.0103%" height="15" fill="rgb(214,133,29)" fg:x="59479" fg:w="15"/><text x="40.9927%" y="495.50"></text></g><g><title>Parse::do_call (15 samples, 0.01%)</title><rect x="40.7427%" y="469" width="0.0103%" height="15" fill="rgb(226,93,6)" fg:x="59479" fg:w="15"/><text x="40.9927%" y="479.50"></text></g><g><title>ParseGenerator::generate (20 samples, 0.01%)</title><rect x="40.7427%" y="645" width="0.0137%" height="15" fill="rgb(252,222,34)" fg:x="59479" fg:w="20"/><text x="40.9927%" y="655.50"></text></g><g><title>Parse::Parse (20 samples, 0.01%)</title><rect x="40.7427%" y="629" width="0.0137%" height="15" fill="rgb(252,92,48)" fg:x="59479" fg:w="20"/><text x="40.9927%" y="639.50"></text></g><g><title>Parse::do_all_blocks (20 samples, 0.01%)</title><rect x="40.7427%" y="613" width="0.0137%" height="15" fill="rgb(245,223,24)" fg:x="59479" fg:w="20"/><text x="40.9927%" y="623.50"></text></g><g><title>Parse::do_one_block (20 samples, 0.01%)</title><rect x="40.7427%" y="597" width="0.0137%" height="15" fill="rgb(205,176,3)" fg:x="59479" fg:w="20"/><text x="40.9927%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (20 samples, 0.01%)</title><rect x="40.7427%" y="581" width="0.0137%" height="15" fill="rgb(235,151,15)" fg:x="59479" fg:w="20"/><text x="40.9927%" y="591.50"></text></g><g><title>Parse::do_call (20 samples, 0.01%)</title><rect x="40.7427%" y="565" width="0.0137%" height="15" fill="rgb(237,209,11)" fg:x="59479" fg:w="20"/><text x="40.9927%" y="575.50"></text></g><g><title>ParseGenerator::generate (115 samples, 0.08%)</title><rect x="40.6783%" y="757" width="0.0788%" height="15" fill="rgb(243,227,24)" fg:x="59385" fg:w="115"/><text x="40.9283%" y="767.50"></text></g><g><title>Parse::Parse (115 samples, 0.08%)</title><rect x="40.6783%" y="741" width="0.0788%" height="15" fill="rgb(239,193,16)" fg:x="59385" fg:w="115"/><text x="40.9283%" y="751.50"></text></g><g><title>Parse::do_all_blocks (115 samples, 0.08%)</title><rect x="40.6783%" y="725" width="0.0788%" height="15" fill="rgb(231,27,9)" fg:x="59385" fg:w="115"/><text x="40.9283%" y="735.50"></text></g><g><title>Parse::do_one_block (115 samples, 0.08%)</title><rect x="40.6783%" y="709" width="0.0788%" height="15" fill="rgb(219,169,10)" fg:x="59385" fg:w="115"/><text x="40.9283%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (115 samples, 0.08%)</title><rect x="40.6783%" y="693" width="0.0788%" height="15" fill="rgb(244,229,43)" fg:x="59385" fg:w="115"/><text x="40.9283%" y="703.50"></text></g><g><title>Parse::do_call (115 samples, 0.08%)</title><rect x="40.6783%" y="677" width="0.0788%" height="15" fill="rgb(254,38,20)" fg:x="59385" fg:w="115"/><text x="40.9283%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (21 samples, 0.01%)</title><rect x="40.7427%" y="661" width="0.0144%" height="15" fill="rgb(250,47,30)" fg:x="59479" fg:w="21"/><text x="40.9927%" y="671.50"></text></g><g><title>ParseGenerator::generate (127 samples, 0.09%)</title><rect x="40.6783%" y="853" width="0.0870%" height="15" fill="rgb(224,124,36)" fg:x="59385" fg:w="127"/><text x="40.9283%" y="863.50"></text></g><g><title>Parse::Parse (127 samples, 0.09%)</title><rect x="40.6783%" y="837" width="0.0870%" height="15" fill="rgb(246,68,51)" fg:x="59385" fg:w="127"/><text x="40.9283%" y="847.50"></text></g><g><title>Parse::do_all_blocks (127 samples, 0.09%)</title><rect x="40.6783%" y="821" width="0.0870%" height="15" fill="rgb(253,43,49)" fg:x="59385" fg:w="127"/><text x="40.9283%" y="831.50"></text></g><g><title>Parse::do_one_block (127 samples, 0.09%)</title><rect x="40.6783%" y="805" width="0.0870%" height="15" fill="rgb(219,54,36)" fg:x="59385" fg:w="127"/><text x="40.9283%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (127 samples, 0.09%)</title><rect x="40.6783%" y="789" width="0.0870%" height="15" fill="rgb(227,133,34)" fg:x="59385" fg:w="127"/><text x="40.9283%" y="799.50"></text></g><g><title>Parse::do_call (127 samples, 0.09%)</title><rect x="40.6783%" y="773" width="0.0870%" height="15" fill="rgb(247,227,15)" fg:x="59385" fg:w="127"/><text x="40.9283%" y="783.50"></text></g><g><title>ParseGenerator::generate (16 samples, 0.01%)</title><rect x="40.7653%" y="741" width="0.0110%" height="15" fill="rgb(229,96,14)" fg:x="59512" fg:w="16"/><text x="41.0153%" y="751.50"></text></g><g><title>Parse::Parse (16 samples, 0.01%)</title><rect x="40.7653%" y="725" width="0.0110%" height="15" fill="rgb(220,79,17)" fg:x="59512" fg:w="16"/><text x="41.0153%" y="735.50"></text></g><g><title>Parse::do_all_blocks (16 samples, 0.01%)</title><rect x="40.7653%" y="709" width="0.0110%" height="15" fill="rgb(205,131,53)" fg:x="59512" fg:w="16"/><text x="41.0153%" y="719.50"></text></g><g><title>Parse::do_one_block (16 samples, 0.01%)</title><rect x="40.7653%" y="693" width="0.0110%" height="15" fill="rgb(209,50,29)" fg:x="59512" fg:w="16"/><text x="41.0153%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (16 samples, 0.01%)</title><rect x="40.7653%" y="677" width="0.0110%" height="15" fill="rgb(245,86,46)" fg:x="59512" fg:w="16"/><text x="41.0153%" y="687.50"></text></g><g><title>Parse::do_call (16 samples, 0.01%)</title><rect x="40.7653%" y="661" width="0.0110%" height="15" fill="rgb(235,66,46)" fg:x="59512" fg:w="16"/><text x="41.0153%" y="671.50"></text></g><g><title>ParseGenerator::generate (18 samples, 0.01%)</title><rect x="40.7653%" y="837" width="0.0123%" height="15" fill="rgb(232,148,31)" fg:x="59512" fg:w="18"/><text x="41.0153%" y="847.50"></text></g><g><title>Parse::Parse (18 samples, 0.01%)</title><rect x="40.7653%" y="821" width="0.0123%" height="15" fill="rgb(217,149,8)" fg:x="59512" fg:w="18"/><text x="41.0153%" y="831.50"></text></g><g><title>Parse::do_all_blocks (18 samples, 0.01%)</title><rect x="40.7653%" y="805" width="0.0123%" height="15" fill="rgb(209,183,11)" fg:x="59512" fg:w="18"/><text x="41.0153%" y="815.50"></text></g><g><title>Parse::do_one_block (18 samples, 0.01%)</title><rect x="40.7653%" y="789" width="0.0123%" height="15" fill="rgb(208,55,20)" fg:x="59512" fg:w="18"/><text x="41.0153%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (18 samples, 0.01%)</title><rect x="40.7653%" y="773" width="0.0123%" height="15" fill="rgb(218,39,14)" fg:x="59512" fg:w="18"/><text x="41.0153%" y="783.50"></text></g><g><title>Parse::do_call (18 samples, 0.01%)</title><rect x="40.7653%" y="757" width="0.0123%" height="15" fill="rgb(216,169,33)" fg:x="59512" fg:w="18"/><text x="41.0153%" y="767.50"></text></g><g><title>ParseGenerator::generate (150 samples, 0.10%)</title><rect x="40.6783%" y="949" width="0.1027%" height="15" fill="rgb(233,80,24)" fg:x="59385" fg:w="150"/><text x="40.9283%" y="959.50"></text></g><g><title>Parse::Parse (150 samples, 0.10%)</title><rect x="40.6783%" y="933" width="0.1027%" height="15" fill="rgb(213,179,31)" fg:x="59385" fg:w="150"/><text x="40.9283%" y="943.50"></text></g><g><title>Parse::do_all_blocks (150 samples, 0.10%)</title><rect x="40.6783%" y="917" width="0.1027%" height="15" fill="rgb(209,19,5)" fg:x="59385" fg:w="150"/><text x="40.9283%" y="927.50"></text></g><g><title>Parse::do_one_block (150 samples, 0.10%)</title><rect x="40.6783%" y="901" width="0.1027%" height="15" fill="rgb(219,18,35)" fg:x="59385" fg:w="150"/><text x="40.9283%" y="911.50"></text></g><g><title>Parse::do_one_bytecode (150 samples, 0.10%)</title><rect x="40.6783%" y="885" width="0.1027%" height="15" fill="rgb(209,169,16)" fg:x="59385" fg:w="150"/><text x="40.9283%" y="895.50"></text></g><g><title>Parse::do_call (150 samples, 0.10%)</title><rect x="40.6783%" y="869" width="0.1027%" height="15" fill="rgb(245,90,51)" fg:x="59385" fg:w="150"/><text x="40.9283%" y="879.50"></text></g><g><title>PredictedCallGenerator::generate (23 samples, 0.02%)</title><rect x="40.7653%" y="853" width="0.0158%" height="15" fill="rgb(220,99,45)" fg:x="59512" fg:w="23"/><text x="41.0153%" y="863.50"></text></g><g><title>Parse::do_all_blocks (17 samples, 0.01%)</title><rect x="40.8098%" y="821" width="0.0116%" height="15" fill="rgb(249,89,25)" fg:x="59577" fg:w="17"/><text x="41.0598%" y="831.50"></text></g><g><title>ParseGenerator::generate (21 samples, 0.01%)</title><rect x="40.8077%" y="853" width="0.0144%" height="15" fill="rgb(239,193,0)" fg:x="59574" fg:w="21"/><text x="41.0577%" y="863.50"></text></g><g><title>Parse::Parse (21 samples, 0.01%)</title><rect x="40.8077%" y="837" width="0.0144%" height="15" fill="rgb(231,126,1)" fg:x="59574" fg:w="21"/><text x="41.0577%" y="847.50"></text></g><g><title>Thread::call_run (45 samples, 0.03%)</title><rect x="40.8029%" y="949" width="0.0308%" height="15" fill="rgb(243,166,3)" fg:x="59567" fg:w="45"/><text x="41.0529%" y="959.50"></text></g><g><title>JavaThread::thread_main_inner (45 samples, 0.03%)</title><rect x="40.8029%" y="933" width="0.0308%" height="15" fill="rgb(223,22,34)" fg:x="59567" fg:w="45"/><text x="41.0529%" y="943.50"></text></g><g><title>CompileBroker::compiler_thread_loop (45 samples, 0.03%)</title><rect x="40.8029%" y="917" width="0.0308%" height="15" fill="rgb(251,52,51)" fg:x="59567" fg:w="45"/><text x="41.0529%" y="927.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (45 samples, 0.03%)</title><rect x="40.8029%" y="901" width="0.0308%" height="15" fill="rgb(221,165,28)" fg:x="59567" fg:w="45"/><text x="41.0529%" y="911.50"></text></g><g><title>C2Compiler::compile_method (45 samples, 0.03%)</title><rect x="40.8029%" y="885" width="0.0308%" height="15" fill="rgb(218,121,47)" fg:x="59567" fg:w="45"/><text x="41.0529%" y="895.50"></text></g><g><title>Compile::Compile (45 samples, 0.03%)</title><rect x="40.8029%" y="869" width="0.0308%" height="15" fill="rgb(209,120,9)" fg:x="59567" fg:w="45"/><text x="41.0529%" y="879.50"></text></g><g><title>ciEnv::register_method (17 samples, 0.01%)</title><rect x="40.8221%" y="853" width="0.0116%" height="15" fill="rgb(236,68,12)" fg:x="59595" fg:w="17"/><text x="41.0721%" y="863.50"></text></g><g><title>nmethod::new_nmethod (15 samples, 0.01%)</title><rect x="40.8235%" y="837" width="0.0103%" height="15" fill="rgb(225,194,26)" fg:x="59597" fg:w="15"/><text x="41.0735%" y="847.50"></text></g><g><title>_dl_update_slotinfo (24 samples, 0.02%)</title><rect x="40.8434%" y="949" width="0.0164%" height="15" fill="rgb(231,84,39)" fg:x="59626" fg:w="24"/><text x="41.0934%" y="959.50"></text></g><g><title>CallGenerator::for_inline (21 samples, 0.01%)</title><rect x="40.8680%" y="821" width="0.0144%" height="15" fill="rgb(210,11,45)" fg:x="59662" fg:w="21"/><text x="41.1180%" y="831.50"></text></g><g><title>InlineTree::check_can_parse (21 samples, 0.01%)</title><rect x="40.8680%" y="805" width="0.0144%" height="15" fill="rgb(224,54,52)" fg:x="59662" fg:w="21"/><text x="41.1180%" y="815.50"></text></g><g><title>ciMethod::get_flow_analysis (21 samples, 0.01%)</title><rect x="40.8680%" y="789" width="0.0144%" height="15" fill="rgb(238,102,14)" fg:x="59662" fg:w="21"/><text x="41.1180%" y="799.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.02%)</title><rect x="40.8831%" y="821" width="0.0158%" height="15" fill="rgb(243,160,52)" fg:x="59684" fg:w="23"/><text x="41.1331%" y="831.50"></text></g><g><title>Parse::Parse (22 samples, 0.02%)</title><rect x="40.8838%" y="805" width="0.0151%" height="15" fill="rgb(216,114,19)" fg:x="59685" fg:w="22"/><text x="41.1338%" y="815.50"></text></g><g><title>ciEnv::register_method (25 samples, 0.02%)</title><rect x="40.8995%" y="821" width="0.0171%" height="15" fill="rgb(244,166,37)" fg:x="59708" fg:w="25"/><text x="41.1495%" y="831.50"></text></g><g><title>start_thread (74 samples, 0.05%)</title><rect x="40.8680%" y="949" width="0.0507%" height="15" fill="rgb(246,29,44)" fg:x="59662" fg:w="74"/><text x="41.1180%" y="959.50"></text></g><g><title>thread_native_entry (74 samples, 0.05%)</title><rect x="40.8680%" y="933" width="0.0507%" height="15" fill="rgb(215,56,53)" fg:x="59662" fg:w="74"/><text x="41.1180%" y="943.50"></text></g><g><title>Thread::call_run (74 samples, 0.05%)</title><rect x="40.8680%" y="917" width="0.0507%" height="15" fill="rgb(217,60,2)" fg:x="59662" fg:w="74"/><text x="41.1180%" y="927.50"></text></g><g><title>JavaThread::thread_main_inner (74 samples, 0.05%)</title><rect x="40.8680%" y="901" width="0.0507%" height="15" fill="rgb(207,26,24)" fg:x="59662" fg:w="74"/><text x="41.1180%" y="911.50"></text></g><g><title>CompileBroker::compiler_thread_loop (74 samples, 0.05%)</title><rect x="40.8680%" y="885" width="0.0507%" height="15" fill="rgb(252,210,15)" fg:x="59662" fg:w="74"/><text x="41.1180%" y="895.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (74 samples, 0.05%)</title><rect x="40.8680%" y="869" width="0.0507%" height="15" fill="rgb(253,209,26)" fg:x="59662" fg:w="74"/><text x="41.1180%" y="879.50"></text></g><g><title>C2Compiler::compile_method (74 samples, 0.05%)</title><rect x="40.8680%" y="853" width="0.0507%" height="15" fill="rgb(238,170,14)" fg:x="59662" fg:w="74"/><text x="41.1180%" y="863.50"></text></g><g><title>Compile::Compile (74 samples, 0.05%)</title><rect x="40.8680%" y="837" width="0.0507%" height="15" fill="rgb(216,178,15)" fg:x="59662" fg:w="74"/><text x="41.1180%" y="847.50"></text></g><g><title>[unknown] (45,839 samples, 31.40%)</title><rect x="9.5296%" y="965" width="31.3994%" height="15" fill="rgb(250,197,2)" fg:x="13912" fg:w="45839"/><text x="9.7796%" y="975.50">[unknown]</text></g><g><title>thread_native_entry (15 samples, 0.01%)</title><rect x="40.9187%" y="949" width="0.0103%" height="15" fill="rgb(212,70,42)" fg:x="59736" fg:w="15"/><text x="41.1687%" y="959.50"></text></g><g><title>Thread::call_run (15 samples, 0.01%)</title><rect x="40.9187%" y="933" width="0.0103%" height="15" fill="rgb(227,213,9)" fg:x="59736" fg:w="15"/><text x="41.1687%" y="943.50"></text></g><g><title>JavaThread::thread_main_inner (15 samples, 0.01%)</title><rect x="40.9187%" y="917" width="0.0103%" height="15" fill="rgb(245,99,25)" fg:x="59736" fg:w="15"/><text x="41.1687%" y="927.50"></text></g><g><title>CompileBroker::compiler_thread_loop (15 samples, 0.01%)</title><rect x="40.9187%" y="901" width="0.0103%" height="15" fill="rgb(250,82,29)" fg:x="59736" fg:w="15"/><text x="41.1687%" y="911.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (15 samples, 0.01%)</title><rect x="40.9187%" y="885" width="0.0103%" height="15" fill="rgb(241,226,54)" fg:x="59736" fg:w="15"/><text x="41.1687%" y="895.50"></text></g><g><title>C2Compiler::compile_method (15 samples, 0.01%)</title><rect x="40.9187%" y="869" width="0.0103%" height="15" fill="rgb(221,99,41)" fg:x="59736" fg:w="15"/><text x="41.1687%" y="879.50"></text></g><g><title>Compile::Compile (15 samples, 0.01%)</title><rect x="40.9187%" y="853" width="0.0103%" height="15" fill="rgb(213,90,21)" fg:x="59736" fg:w="15"/><text x="41.1687%" y="863.50"></text></g><g><title>Compile::inline_string_calls (21 samples, 0.01%)</title><rect x="40.9680%" y="821" width="0.0144%" height="15" fill="rgb(205,208,24)" fg:x="59808" fg:w="21"/><text x="41.2180%" y="831.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (21 samples, 0.01%)</title><rect x="40.9680%" y="805" width="0.0144%" height="15" fill="rgb(246,31,12)" fg:x="59808" fg:w="21"/><text x="41.2180%" y="815.50"></text></g><g><title>Dict::Insert (45 samples, 0.03%)</title><rect x="40.9913%" y="789" width="0.0308%" height="15" fill="rgb(213,154,6)" fg:x="59842" fg:w="45"/><text x="41.2413%" y="799.50"></text></g><g><title>CompileWrapper::CompileWrapper (56 samples, 0.04%)</title><rect x="40.9906%" y="821" width="0.0384%" height="15" fill="rgb(222,163,29)" fg:x="59841" fg:w="56"/><text x="41.2406%" y="831.50"></text></g><g><title>Type::Initialize (55 samples, 0.04%)</title><rect x="40.9913%" y="805" width="0.0377%" height="15" fill="rgb(227,201,8)" fg:x="59842" fg:w="55"/><text x="41.2413%" y="815.50"></text></g><g><title>Compile::identify_useful_nodes (122 samples, 0.08%)</title><rect x="41.0550%" y="805" width="0.0836%" height="15" fill="rgb(233,9,32)" fg:x="59935" fg:w="122"/><text x="41.3050%" y="815.50"></text></g><g><title>Compile::remove_useless_nodes (116 samples, 0.08%)</title><rect x="41.1386%" y="805" width="0.0795%" height="15" fill="rgb(217,54,24)" fg:x="60057" fg:w="116"/><text x="41.3886%" y="815.50"></text></g><g><title>Node::has_special_unique_user (16 samples, 0.01%)</title><rect x="41.2071%" y="789" width="0.0110%" height="15" fill="rgb(235,192,0)" fg:x="60157" fg:w="16"/><text x="41.4571%" y="799.50"></text></g><g><title>Compile::update_dead_node_list (22 samples, 0.02%)</title><rect x="41.2181%" y="805" width="0.0151%" height="15" fill="rgb(235,45,9)" fg:x="60173" fg:w="22"/><text x="41.4681%" y="815.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (309 samples, 0.21%)</title><rect x="41.0338%" y="821" width="0.2117%" height="15" fill="rgb(246,42,40)" fg:x="59904" fg:w="309"/><text x="41.2838%" y="831.50"></text></g><g><title>Unique_Node_List::remove_useless_nodes (18 samples, 0.01%)</title><rect x="41.2331%" y="805" width="0.0123%" height="15" fill="rgb(248,111,24)" fg:x="60195" fg:w="18"/><text x="41.4831%" y="815.50"></text></g><g><title>C2Compiler::compile_method (477 samples, 0.33%)</title><rect x="40.9434%" y="853" width="0.3267%" height="15" fill="rgb(249,65,22)" fg:x="59772" fg:w="477"/><text x="41.1934%" y="863.50"></text></g><g><title>Compile::Compile (471 samples, 0.32%)</title><rect x="40.9475%" y="837" width="0.3226%" height="15" fill="rgb(238,111,51)" fg:x="59778" fg:w="471"/><text x="41.1975%" y="847.50"></text></g><g><title>CompileTask::print (22 samples, 0.02%)</title><rect x="41.2879%" y="853" width="0.0151%" height="15" fill="rgb(250,118,22)" fg:x="60275" fg:w="22"/><text x="41.5379%" y="863.50"></text></g><g><title>ciEnv::ciEnv (19 samples, 0.01%)</title><rect x="41.3057%" y="853" width="0.0130%" height="15" fill="rgb(234,84,26)" fg:x="60301" fg:w="19"/><text x="41.5557%" y="863.50"></text></g><g><title>ciEnv::get_method_from_handle (15 samples, 0.01%)</title><rect x="41.3187%" y="853" width="0.0103%" height="15" fill="rgb(243,172,12)" fg:x="60320" fg:w="15"/><text x="41.5687%" y="863.50"></text></g><g><title>ciObjectFactory::get_metadata (15 samples, 0.01%)</title><rect x="41.3187%" y="837" width="0.0103%" height="15" fill="rgb(236,150,49)" fg:x="60320" fg:w="15"/><text x="41.5687%" y="847.50"></text></g><g><title>ciObjectFactory::create_new_metadata (15 samples, 0.01%)</title><rect x="41.3187%" y="821" width="0.0103%" height="15" fill="rgb(225,197,26)" fg:x="60320" fg:w="15"/><text x="41.5687%" y="831.50"></text></g><g><title>ciMethod::ciMethod (15 samples, 0.01%)</title><rect x="41.3187%" y="805" width="0.0103%" height="15" fill="rgb(214,17,42)" fg:x="60320" fg:w="15"/><text x="41.5687%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (584 samples, 0.40%)</title><rect x="40.9393%" y="869" width="0.4000%" height="15" fill="rgb(224,165,40)" fg:x="59766" fg:w="584"/><text x="41.1893%" y="879.50"></text></g><g><title>ciEnv::~ciEnv (15 samples, 0.01%)</title><rect x="41.3290%" y="853" width="0.0103%" height="15" fill="rgb(246,100,4)" fg:x="60335" fg:w="15"/><text x="41.5790%" y="863.50"></text></g><g><title>ttwu_do_activate (19 samples, 0.01%)</title><rect x="41.3674%" y="677" width="0.0130%" height="15" fill="rgb(222,103,0)" fg:x="60391" fg:w="19"/><text x="41.6174%" y="687.50"></text></g><g><title>__pthread_cond_signal (33 samples, 0.02%)</title><rect x="41.3585%" y="821" width="0.0226%" height="15" fill="rgb(227,189,26)" fg:x="60378" fg:w="33"/><text x="41.6085%" y="831.50"></text></g><g><title>futex_wake (32 samples, 0.02%)</title><rect x="41.3592%" y="805" width="0.0219%" height="15" fill="rgb(214,202,17)" fg:x="60379" fg:w="32"/><text x="41.6092%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.02%)</title><rect x="41.3592%" y="789" width="0.0219%" height="15" fill="rgb(229,111,3)" fg:x="60379" fg:w="32"/><text x="41.6092%" y="799.50"></text></g><g><title>do_syscall_64 (32 samples, 0.02%)</title><rect x="41.3592%" y="773" width="0.0219%" height="15" fill="rgb(229,172,15)" fg:x="60379" fg:w="32"/><text x="41.6092%" y="783.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.02%)</title><rect x="41.3592%" y="757" width="0.0219%" height="15" fill="rgb(230,224,35)" fg:x="60379" fg:w="32"/><text x="41.6092%" y="767.50"></text></g><g><title>do_futex (32 samples, 0.02%)</title><rect x="41.3592%" y="741" width="0.0219%" height="15" fill="rgb(251,141,6)" fg:x="60379" fg:w="32"/><text x="41.6092%" y="751.50"></text></g><g><title>futex_wake (32 samples, 0.02%)</title><rect x="41.3592%" y="725" width="0.0219%" height="15" fill="rgb(225,208,6)" fg:x="60379" fg:w="32"/><text x="41.6092%" y="735.50"></text></g><g><title>wake_up_q (28 samples, 0.02%)</title><rect x="41.3619%" y="709" width="0.0192%" height="15" fill="rgb(246,181,16)" fg:x="60383" fg:w="28"/><text x="41.6119%" y="719.50"></text></g><g><title>try_to_wake_up (28 samples, 0.02%)</title><rect x="41.3619%" y="693" width="0.0192%" height="15" fill="rgb(227,129,36)" fg:x="60383" fg:w="28"/><text x="41.6119%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (204 samples, 0.14%)</title><rect x="41.4119%" y="613" width="0.1397%" height="15" fill="rgb(248,117,24)" fg:x="60456" fg:w="204"/><text x="41.6619%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (200 samples, 0.14%)</title><rect x="41.4146%" y="597" width="0.1370%" height="15" fill="rgb(214,185,35)" fg:x="60460" fg:w="200"/><text x="41.6646%" y="607.50"></text></g><g><title>native_write_msr (200 samples, 0.14%)</title><rect x="41.4146%" y="581" width="0.1370%" height="15" fill="rgb(236,150,34)" fg:x="60460" fg:w="200"/><text x="41.6646%" y="591.50"></text></g><g><title>finish_task_switch (222 samples, 0.15%)</title><rect x="41.4064%" y="629" width="0.1521%" height="15" fill="rgb(243,228,27)" fg:x="60448" fg:w="222"/><text x="41.6564%" y="639.50"></text></g><g><title>futex_wait_queue_me (257 samples, 0.18%)</title><rect x="41.3900%" y="677" width="0.1760%" height="15" fill="rgb(245,77,44)" fg:x="60424" fg:w="257"/><text x="41.6400%" y="687.50"></text></g><g><title>schedule (243 samples, 0.17%)</title><rect x="41.3996%" y="661" width="0.1665%" height="15" fill="rgb(235,214,42)" fg:x="60438" fg:w="243"/><text x="41.6496%" y="671.50"></text></g><g><title>__schedule (242 samples, 0.17%)</title><rect x="41.4003%" y="645" width="0.1658%" height="15" fill="rgb(221,74,3)" fg:x="60439" fg:w="242"/><text x="41.6503%" y="655.50"></text></g><g><title>do_futex (273 samples, 0.19%)</title><rect x="41.3886%" y="709" width="0.1870%" height="15" fill="rgb(206,121,29)" fg:x="60422" fg:w="273"/><text x="41.6386%" y="719.50"></text></g><g><title>futex_wait (273 samples, 0.19%)</title><rect x="41.3886%" y="693" width="0.1870%" height="15" fill="rgb(249,131,53)" fg:x="60422" fg:w="273"/><text x="41.6386%" y="703.50"></text></g><g><title>do_syscall_64 (277 samples, 0.19%)</title><rect x="41.3872%" y="741" width="0.1897%" height="15" fill="rgb(236,170,29)" fg:x="60420" fg:w="277"/><text x="41.6372%" y="751.50"></text></g><g><title>__x64_sys_futex (276 samples, 0.19%)</title><rect x="41.3879%" y="725" width="0.1891%" height="15" fill="rgb(247,96,15)" fg:x="60421" fg:w="276"/><text x="41.6379%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (282 samples, 0.19%)</title><rect x="41.3872%" y="757" width="0.1932%" height="15" fill="rgb(211,210,7)" fg:x="60420" fg:w="282"/><text x="41.6372%" y="767.50"></text></g><g><title>__pthread_cond_timedwait (295 samples, 0.20%)</title><rect x="41.3811%" y="805" width="0.2021%" height="15" fill="rgb(240,88,50)" fg:x="60411" fg:w="295"/><text x="41.6311%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (295 samples, 0.20%)</title><rect x="41.3811%" y="789" width="0.2021%" height="15" fill="rgb(209,229,26)" fg:x="60411" fg:w="295"/><text x="41.6311%" y="799.50"></text></g><g><title>futex_abstimed_wait_cancelable (292 samples, 0.20%)</title><rect x="41.3831%" y="773" width="0.2000%" height="15" fill="rgb(210,68,23)" fg:x="60414" fg:w="292"/><text x="41.6331%" y="783.50"></text></g><g><title>Monitor::IWait (345 samples, 0.24%)</title><rect x="41.3557%" y="837" width="0.2363%" height="15" fill="rgb(229,180,13)" fg:x="60374" fg:w="345"/><text x="41.6057%" y="847.50"></text></g><g><title>os::PlatformEvent::park (308 samples, 0.21%)</title><rect x="41.3811%" y="821" width="0.2110%" height="15" fill="rgb(236,53,44)" fg:x="60411" fg:w="308"/><text x="41.6311%" y="831.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="41.5948%" y="597" width="0.0123%" height="15" fill="rgb(244,214,29)" fg:x="60723" fg:w="18"/><text x="41.8448%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="41.5948%" y="581" width="0.0123%" height="15" fill="rgb(220,75,29)" fg:x="60723" fg:w="18"/><text x="41.8448%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="41.5948%" y="565" width="0.0123%" height="15" fill="rgb(214,183,37)" fg:x="60723" fg:w="18"/><text x="41.8448%" y="575.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="41.5948%" y="549" width="0.0123%" height="15" fill="rgb(239,117,29)" fg:x="60723" fg:w="18"/><text x="41.8448%" y="559.50"></text></g><g><title>Monitor::lock_without_safepoint_check (24 samples, 0.02%)</title><rect x="41.5921%" y="821" width="0.0164%" height="15" fill="rgb(237,171,35)" fg:x="60719" fg:w="24"/><text x="41.8421%" y="831.50"></text></g><g><title>Monitor::ILock (24 samples, 0.02%)</title><rect x="41.5921%" y="805" width="0.0164%" height="15" fill="rgb(229,178,53)" fg:x="60719" fg:w="24"/><text x="41.8421%" y="815.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.02%)</title><rect x="41.5927%" y="789" width="0.0158%" height="15" fill="rgb(210,102,19)" fg:x="60720" fg:w="23"/><text x="41.8427%" y="799.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.02%)</title><rect x="41.5927%" y="773" width="0.0158%" height="15" fill="rgb(235,127,22)" fg:x="60720" fg:w="23"/><text x="41.8427%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.02%)</title><rect x="41.5927%" y="757" width="0.0158%" height="15" fill="rgb(244,31,31)" fg:x="60720" fg:w="23"/><text x="41.8427%" y="767.50"></text></g><g><title>futex_wait_cancelable (23 samples, 0.02%)</title><rect x="41.5927%" y="741" width="0.0158%" height="15" fill="rgb(231,43,21)" fg:x="60720" fg:w="23"/><text x="41.8427%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="41.5927%" y="725" width="0.0158%" height="15" fill="rgb(217,131,35)" fg:x="60720" fg:w="23"/><text x="41.8427%" y="735.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="41.5927%" y="709" width="0.0158%" height="15" fill="rgb(221,149,4)" fg:x="60720" fg:w="23"/><text x="41.8427%" y="719.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.02%)</title><rect x="41.5934%" y="693" width="0.0151%" height="15" fill="rgb(232,170,28)" fg:x="60721" fg:w="22"/><text x="41.8434%" y="703.50"></text></g><g><title>do_futex (21 samples, 0.01%)</title><rect x="41.5941%" y="677" width="0.0144%" height="15" fill="rgb(238,56,10)" fg:x="60722" fg:w="21"/><text x="41.8441%" y="687.50"></text></g><g><title>futex_wait (21 samples, 0.01%)</title><rect x="41.5941%" y="661" width="0.0144%" height="15" fill="rgb(235,196,14)" fg:x="60722" fg:w="21"/><text x="41.8441%" y="671.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.01%)</title><rect x="41.5941%" y="645" width="0.0144%" height="15" fill="rgb(216,45,48)" fg:x="60722" fg:w="21"/><text x="41.8441%" y="655.50"></text></g><g><title>schedule (21 samples, 0.01%)</title><rect x="41.5941%" y="629" width="0.0144%" height="15" fill="rgb(238,213,17)" fg:x="60722" fg:w="21"/><text x="41.8441%" y="639.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="41.5941%" y="613" width="0.0144%" height="15" fill="rgb(212,13,2)" fg:x="60722" fg:w="21"/><text x="41.8441%" y="623.50"></text></g><g><title>Monitor::wait (375 samples, 0.26%)</title><rect x="41.3523%" y="853" width="0.2569%" height="15" fill="rgb(240,114,20)" fg:x="60369" fg:w="375"/><text x="41.6023%" y="863.50"></text></g><g><title>SafepointSynchronize::block (25 samples, 0.02%)</title><rect x="41.5921%" y="837" width="0.0171%" height="15" fill="rgb(228,41,40)" fg:x="60719" fg:w="25"/><text x="41.8421%" y="847.50"></text></g><g><title>CompileQueue::get (403 samples, 0.28%)</title><rect x="41.3414%" y="869" width="0.2761%" height="15" fill="rgb(244,132,35)" fg:x="60353" fg:w="403"/><text x="41.5914%" y="879.50"></text></g><g><title>Thread::call_run (992 samples, 0.68%)</title><rect x="40.9386%" y="917" width="0.6795%" height="15" fill="rgb(253,189,4)" fg:x="59765" fg:w="992"/><text x="41.1886%" y="927.50"></text></g><g><title>JavaThread::thread_main_inner (992 samples, 0.68%)</title><rect x="40.9386%" y="901" width="0.6795%" height="15" fill="rgb(224,37,19)" fg:x="59765" fg:w="992"/><text x="41.1886%" y="911.50"></text></g><g><title>CompileBroker::compiler_thread_loop (992 samples, 0.68%)</title><rect x="40.9386%" y="885" width="0.6795%" height="15" fill="rgb(235,223,18)" fg:x="59765" fg:w="992"/><text x="41.1886%" y="895.50"></text></g><g><title>__GI___clone (1,000 samples, 0.68%)</title><rect x="40.9338%" y="965" width="0.6850%" height="15" fill="rgb(235,163,25)" fg:x="59758" fg:w="1000"/><text x="41.1838%" y="975.50"></text></g><g><title>start_thread (994 samples, 0.68%)</title><rect x="40.9379%" y="949" width="0.6809%" height="15" fill="rgb(217,145,28)" fg:x="59764" fg:w="994"/><text x="41.1879%" y="959.50"></text></g><g><title>thread_native_entry (993 samples, 0.68%)</title><rect x="40.9386%" y="933" width="0.6802%" height="15" fill="rgb(223,223,32)" fg:x="59765" fg:w="993"/><text x="41.1886%" y="943.50"></text></g><g><title>asm_exc_page_fault (53 samples, 0.04%)</title><rect x="41.6236%" y="965" width="0.0363%" height="15" fill="rgb(227,189,39)" fg:x="60765" fg:w="53"/><text x="41.8736%" y="975.50"></text></g><g><title>C2_CompilerThre (49,513 samples, 33.92%)</title><rect x="7.7644%" y="981" width="33.9160%" height="15" fill="rgb(248,10,22)" fg:x="11335" fg:w="49513"/><text x="8.0144%" y="991.50">C2_CompilerThre</text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="41.7284%" y="725" width="0.0130%" height="15" fill="rgb(248,46,39)" fg:x="60918" fg:w="19"/><text x="41.9784%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="41.7291%" y="709" width="0.0123%" height="15" fill="rgb(248,113,48)" fg:x="60919" fg:w="18"/><text x="41.9791%" y="719.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="41.7291%" y="693" width="0.0123%" height="15" fill="rgb(245,16,25)" fg:x="60919" fg:w="18"/><text x="41.9791%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (23 samples, 0.02%)</title><rect x="41.7263%" y="917" width="0.0158%" height="15" fill="rgb(249,152,16)" fg:x="60915" fg:w="23"/><text x="41.9763%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.02%)</title><rect x="41.7263%" y="901" width="0.0158%" height="15" fill="rgb(250,16,1)" fg:x="60915" fg:w="23"/><text x="41.9763%" y="911.50"></text></g><g><title>futex_abstimed_wait_cancelable (22 samples, 0.02%)</title><rect x="41.7270%" y="885" width="0.0151%" height="15" fill="rgb(249,138,3)" fg:x="60916" fg:w="22"/><text x="41.9770%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="41.7270%" y="869" width="0.0151%" height="15" fill="rgb(227,71,41)" fg:x="60916" fg:w="22"/><text x="41.9770%" y="879.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="41.7270%" y="853" width="0.0151%" height="15" fill="rgb(209,184,23)" fg:x="60916" fg:w="22"/><text x="41.9770%" y="863.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.02%)</title><rect x="41.7270%" y="837" width="0.0151%" height="15" fill="rgb(223,215,31)" fg:x="60916" fg:w="22"/><text x="41.9770%" y="847.50"></text></g><g><title>do_futex (22 samples, 0.02%)</title><rect x="41.7270%" y="821" width="0.0151%" height="15" fill="rgb(210,146,28)" fg:x="60916" fg:w="22"/><text x="41.9770%" y="831.50"></text></g><g><title>futex_wait (22 samples, 0.02%)</title><rect x="41.7270%" y="805" width="0.0151%" height="15" fill="rgb(209,183,41)" fg:x="60916" fg:w="22"/><text x="41.9770%" y="815.50"></text></g><g><title>futex_wait_queue_me (22 samples, 0.02%)</title><rect x="41.7270%" y="789" width="0.0151%" height="15" fill="rgb(209,224,45)" fg:x="60916" fg:w="22"/><text x="41.9770%" y="799.50"></text></g><g><title>schedule (20 samples, 0.01%)</title><rect x="41.7284%" y="773" width="0.0137%" height="15" fill="rgb(224,209,51)" fg:x="60918" fg:w="20"/><text x="41.9784%" y="783.50"></text></g><g><title>__schedule (20 samples, 0.01%)</title><rect x="41.7284%" y="757" width="0.0137%" height="15" fill="rgb(223,17,39)" fg:x="60918" fg:w="20"/><text x="41.9784%" y="767.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="41.7284%" y="741" width="0.0137%" height="15" fill="rgb(234,204,37)" fg:x="60918" fg:w="20"/><text x="41.9784%" y="751.50"></text></g><g><title>Unsafe_Park (27 samples, 0.02%)</title><rect x="41.7243%" y="949" width="0.0185%" height="15" fill="rgb(236,120,5)" fg:x="60912" fg:w="27"/><text x="41.9743%" y="959.50"></text></g><g><title>Parker::park (24 samples, 0.02%)</title><rect x="41.7263%" y="933" width="0.0164%" height="15" fill="rgb(248,97,27)" fg:x="60915" fg:w="24"/><text x="41.9763%" y="943.50"></text></g><g><title>[perf-627991.map] (96 samples, 0.07%)</title><rect x="41.6811%" y="965" width="0.0658%" height="15" fill="rgb(240,66,17)" fg:x="60849" fg:w="96"/><text x="41.9311%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="41.7517%" y="741" width="0.0185%" height="15" fill="rgb(210,79,3)" fg:x="60952" fg:w="27"/><text x="42.0017%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.02%)</title><rect x="41.7517%" y="725" width="0.0185%" height="15" fill="rgb(214,176,27)" fg:x="60952" fg:w="27"/><text x="42.0017%" y="735.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="41.7523%" y="709" width="0.0178%" height="15" fill="rgb(235,185,3)" fg:x="60953" fg:w="26"/><text x="42.0023%" y="719.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="41.7517%" y="757" width="0.0192%" height="15" fill="rgb(227,24,12)" fg:x="60952" fg:w="28"/><text x="42.0017%" y="767.50"></text></g><g><title>handleRead (36 samples, 0.02%)</title><rect x="41.7476%" y="933" width="0.0247%" height="15" fill="rgb(252,169,48)" fg:x="60946" fg:w="36"/><text x="41.9976%" y="943.50"></text></g><g><title>__libc_read (35 samples, 0.02%)</title><rect x="41.7482%" y="917" width="0.0240%" height="15" fill="rgb(212,65,1)" fg:x="60947" fg:w="35"/><text x="41.9982%" y="927.50"></text></g><g><title>__libc_read (35 samples, 0.02%)</title><rect x="41.7482%" y="901" width="0.0240%" height="15" fill="rgb(242,39,24)" fg:x="60947" fg:w="35"/><text x="41.9982%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="41.7489%" y="885" width="0.0233%" height="15" fill="rgb(249,32,23)" fg:x="60948" fg:w="34"/><text x="41.9989%" y="895.50"></text></g><g><title>do_syscall_64 (34 samples, 0.02%)</title><rect x="41.7489%" y="869" width="0.0233%" height="15" fill="rgb(251,195,23)" fg:x="60948" fg:w="34"/><text x="41.9989%" y="879.50"></text></g><g><title>ksys_read (34 samples, 0.02%)</title><rect x="41.7489%" y="853" width="0.0233%" height="15" fill="rgb(236,174,8)" fg:x="60948" fg:w="34"/><text x="41.9989%" y="863.50"></text></g><g><title>vfs_read (33 samples, 0.02%)</title><rect x="41.7496%" y="837" width="0.0226%" height="15" fill="rgb(220,197,8)" fg:x="60949" fg:w="33"/><text x="41.9996%" y="847.50"></text></g><g><title>new_sync_read (33 samples, 0.02%)</title><rect x="41.7496%" y="821" width="0.0226%" height="15" fill="rgb(240,108,37)" fg:x="60949" fg:w="33"/><text x="41.9996%" y="831.50"></text></g><g><title>pipe_read (33 samples, 0.02%)</title><rect x="41.7496%" y="805" width="0.0226%" height="15" fill="rgb(232,176,24)" fg:x="60949" fg:w="33"/><text x="41.9996%" y="815.50"></text></g><g><title>schedule (31 samples, 0.02%)</title><rect x="41.7510%" y="789" width="0.0212%" height="15" fill="rgb(243,35,29)" fg:x="60951" fg:w="31"/><text x="42.0010%" y="799.50"></text></g><g><title>__schedule (31 samples, 0.02%)</title><rect x="41.7510%" y="773" width="0.0212%" height="15" fill="rgb(210,37,18)" fg:x="60951" fg:w="31"/><text x="42.0010%" y="783.50"></text></g><g><title>[unknown] (38 samples, 0.03%)</title><rect x="41.7469%" y="965" width="0.0260%" height="15" fill="rgb(224,184,40)" fg:x="60945" fg:w="38"/><text x="41.9969%" y="975.50"></text></g><g><title>readBytes (38 samples, 0.03%)</title><rect x="41.7469%" y="949" width="0.0260%" height="15" fill="rgb(236,39,29)" fg:x="60945" fg:w="38"/><text x="41.9969%" y="959.50"></text></g><g><title>Command-Accumul (139 samples, 0.10%)</title><rect x="41.6804%" y="981" width="0.0952%" height="15" fill="rgb(232,48,39)" fg:x="60848" fg:w="139"/><text x="41.9304%" y="991.50"></text></g><g><title>dequeue_task_fair (18 samples, 0.01%)</title><rect x="42.0866%" y="741" width="0.0123%" height="15" fill="rgb(236,34,42)" fg:x="61441" fg:w="18"/><text x="42.3366%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.04%)</title><rect x="42.0990%" y="725" width="0.0370%" height="15" fill="rgb(243,106,37)" fg:x="61459" fg:w="54"/><text x="42.3490%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.03%)</title><rect x="42.1010%" y="709" width="0.0349%" height="15" fill="rgb(218,96,6)" fg:x="61462" fg:w="51"/><text x="42.3510%" y="719.50"></text></g><g><title>native_write_msr (51 samples, 0.03%)</title><rect x="42.1010%" y="693" width="0.0349%" height="15" fill="rgb(235,130,12)" fg:x="61462" fg:w="51"/><text x="42.3510%" y="703.50"></text></g><g><title>finish_task_switch (55 samples, 0.04%)</title><rect x="42.0990%" y="741" width="0.0377%" height="15" fill="rgb(231,95,0)" fg:x="61459" fg:w="55"/><text x="42.3490%" y="751.50"></text></g><g><title>futex_wait_queue_me (102 samples, 0.07%)</title><rect x="42.0763%" y="789" width="0.0699%" height="15" fill="rgb(228,12,23)" fg:x="61426" fg:w="102"/><text x="42.3263%" y="799.50"></text></g><g><title>schedule (92 samples, 0.06%)</title><rect x="42.0832%" y="773" width="0.0630%" height="15" fill="rgb(216,12,1)" fg:x="61436" fg:w="92"/><text x="42.3332%" y="783.50"></text></g><g><title>__schedule (91 samples, 0.06%)</title><rect x="42.0839%" y="757" width="0.0623%" height="15" fill="rgb(219,59,3)" fg:x="61437" fg:w="91"/><text x="42.3339%" y="767.50"></text></g><g><title>do_futex (110 samples, 0.08%)</title><rect x="42.0757%" y="821" width="0.0753%" height="15" fill="rgb(215,208,46)" fg:x="61425" fg:w="110"/><text x="42.3257%" y="831.50"></text></g><g><title>futex_wait (110 samples, 0.08%)</title><rect x="42.0757%" y="805" width="0.0753%" height="15" fill="rgb(254,224,29)" fg:x="61425" fg:w="110"/><text x="42.3257%" y="815.50"></text></g><g><title>do_syscall_64 (113 samples, 0.08%)</title><rect x="42.0750%" y="853" width="0.0774%" height="15" fill="rgb(232,14,29)" fg:x="61424" fg:w="113"/><text x="42.3250%" y="863.50"></text></g><g><title>__x64_sys_futex (113 samples, 0.08%)</title><rect x="42.0750%" y="837" width="0.0774%" height="15" fill="rgb(208,45,52)" fg:x="61424" fg:w="113"/><text x="42.3250%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (119 samples, 0.08%)</title><rect x="42.0729%" y="869" width="0.0815%" height="15" fill="rgb(234,191,28)" fg:x="61421" fg:w="119"/><text x="42.3229%" y="879.50"></text></g><g><title>__pthread_cond_timedwait (133 samples, 0.09%)</title><rect x="42.0640%" y="917" width="0.0911%" height="15" fill="rgb(244,67,43)" fg:x="61408" fg:w="133"/><text x="42.3140%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (133 samples, 0.09%)</title><rect x="42.0640%" y="901" width="0.0911%" height="15" fill="rgb(236,189,24)" fg:x="61408" fg:w="133"/><text x="42.3140%" y="911.50"></text></g><g><title>futex_abstimed_wait_cancelable (125 samples, 0.09%)</title><rect x="42.0695%" y="885" width="0.0856%" height="15" fill="rgb(239,214,33)" fg:x="61416" fg:w="125"/><text x="42.3195%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.03%)</title><rect x="42.1565%" y="725" width="0.0274%" height="15" fill="rgb(226,176,41)" fg:x="61543" fg:w="40"/><text x="42.4065%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (38 samples, 0.03%)</title><rect x="42.1579%" y="709" width="0.0260%" height="15" fill="rgb(248,47,8)" fg:x="61545" fg:w="38"/><text x="42.4079%" y="719.50"></text></g><g><title>native_write_msr (37 samples, 0.03%)</title><rect x="42.1585%" y="693" width="0.0253%" height="15" fill="rgb(218,81,44)" fg:x="61546" fg:w="37"/><text x="42.4085%" y="703.50"></text></g><g><title>finish_task_switch (43 samples, 0.03%)</title><rect x="42.1565%" y="741" width="0.0295%" height="15" fill="rgb(213,98,6)" fg:x="61543" fg:w="43"/><text x="42.4065%" y="751.50"></text></g><g><title>do_syscall_64 (48 samples, 0.03%)</title><rect x="42.1558%" y="853" width="0.0329%" height="15" fill="rgb(222,85,22)" fg:x="61542" fg:w="48"/><text x="42.4058%" y="863.50"></text></g><g><title>__x64_sys_futex (48 samples, 0.03%)</title><rect x="42.1558%" y="837" width="0.0329%" height="15" fill="rgb(239,46,39)" fg:x="61542" fg:w="48"/><text x="42.4058%" y="847.50"></text></g><g><title>do_futex (48 samples, 0.03%)</title><rect x="42.1558%" y="821" width="0.0329%" height="15" fill="rgb(237,12,29)" fg:x="61542" fg:w="48"/><text x="42.4058%" y="831.50"></text></g><g><title>futex_wait (48 samples, 0.03%)</title><rect x="42.1558%" y="805" width="0.0329%" height="15" fill="rgb(214,77,8)" fg:x="61542" fg:w="48"/><text x="42.4058%" y="815.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.03%)</title><rect x="42.1558%" y="789" width="0.0329%" height="15" fill="rgb(217,168,37)" fg:x="61542" fg:w="48"/><text x="42.4058%" y="799.50"></text></g><g><title>schedule (48 samples, 0.03%)</title><rect x="42.1558%" y="773" width="0.0329%" height="15" fill="rgb(221,217,23)" fg:x="61542" fg:w="48"/><text x="42.4058%" y="783.50"></text></g><g><title>__schedule (48 samples, 0.03%)</title><rect x="42.1558%" y="757" width="0.0329%" height="15" fill="rgb(243,229,36)" fg:x="61542" fg:w="48"/><text x="42.4058%" y="767.50"></text></g><g><title>__pthread_cond_wait (51 samples, 0.03%)</title><rect x="42.1551%" y="917" width="0.0349%" height="15" fill="rgb(251,163,40)" fg:x="61541" fg:w="51"/><text x="42.4051%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (51 samples, 0.03%)</title><rect x="42.1551%" y="901" width="0.0349%" height="15" fill="rgb(237,222,12)" fg:x="61541" fg:w="51"/><text x="42.4051%" y="911.50"></text></g><g><title>futex_wait_cancelable (50 samples, 0.03%)</title><rect x="42.1558%" y="885" width="0.0342%" height="15" fill="rgb(248,132,6)" fg:x="61542" fg:w="50"/><text x="42.4058%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.03%)</title><rect x="42.1558%" y="869" width="0.0342%" height="15" fill="rgb(227,167,50)" fg:x="61542" fg:w="50"/><text x="42.4058%" y="879.50"></text></g><g><title>Parker::park (203 samples, 0.14%)</title><rect x="42.0558%" y="933" width="0.1391%" height="15" fill="rgb(242,84,37)" fg:x="61396" fg:w="203"/><text x="42.3058%" y="943.50"></text></g><g><title>Unsafe_Park (214 samples, 0.15%)</title><rect x="42.0503%" y="949" width="0.1466%" height="15" fill="rgb(212,4,50)" fg:x="61388" fg:w="214"/><text x="42.3003%" y="959.50"></text></g><g><title>[perf-627991.map] (576 samples, 0.39%)</title><rect x="41.8044%" y="965" width="0.3946%" height="15" fill="rgb(230,228,32)" fg:x="61029" fg:w="576"/><text x="42.0544%" y="975.50"></text></g><g><title>ForkJoinPool.co (607 samples, 0.42%)</title><rect x="41.7982%" y="981" width="0.4158%" height="15" fill="rgb(248,217,23)" fg:x="61020" fg:w="607"/><text x="42.0482%" y="991.50"></text></g><g><title>G1CMRootRegionScanTask::work (16 samples, 0.01%)</title><rect x="42.2175%" y="885" width="0.0110%" height="15" fill="rgb(238,197,32)" fg:x="61632" fg:w="16"/><text x="42.4675%" y="895.50"></text></g><g><title>G1ConcurrentMark::scan_root_region (16 samples, 0.01%)</title><rect x="42.2175%" y="869" width="0.0110%" height="15" fill="rgb(236,106,1)" fg:x="61632" fg:w="16"/><text x="42.4675%" y="879.50"></text></g><g><title>G1_Conc#0 (40 samples, 0.03%)</title><rect x="42.2140%" y="981" width="0.0274%" height="15" fill="rgb(219,228,13)" fg:x="61627" fg:w="40"/><text x="42.4640%" y="991.50"></text></g><g><title>__GI___clone (39 samples, 0.03%)</title><rect x="42.2147%" y="965" width="0.0267%" height="15" fill="rgb(238,30,35)" fg:x="61628" fg:w="39"/><text x="42.4647%" y="975.50"></text></g><g><title>start_thread (39 samples, 0.03%)</title><rect x="42.2147%" y="949" width="0.0267%" height="15" fill="rgb(236,70,23)" fg:x="61628" fg:w="39"/><text x="42.4647%" y="959.50"></text></g><g><title>thread_native_entry (39 samples, 0.03%)</title><rect x="42.2147%" y="933" width="0.0267%" height="15" fill="rgb(249,104,48)" fg:x="61628" fg:w="39"/><text x="42.4647%" y="943.50"></text></g><g><title>Thread::call_run (39 samples, 0.03%)</title><rect x="42.2147%" y="917" width="0.0267%" height="15" fill="rgb(254,117,50)" fg:x="61628" fg:w="39"/><text x="42.4647%" y="927.50"></text></g><g><title>GangWorker::loop (39 samples, 0.03%)</title><rect x="42.2147%" y="901" width="0.0267%" height="15" fill="rgb(223,152,4)" fg:x="61628" fg:w="39"/><text x="42.4647%" y="911.50"></text></g><g><title>G1ConcurrentMark::scan_root_region (20 samples, 0.01%)</title><rect x="42.2428%" y="869" width="0.0137%" height="15" fill="rgb(245,6,2)" fg:x="61669" fg:w="20"/><text x="42.4928%" y="879.50"></text></g><g><title>G1CMRootRegionScanTask::work (21 samples, 0.01%)</title><rect x="42.2428%" y="885" width="0.0144%" height="15" fill="rgb(249,150,24)" fg:x="61669" fg:w="21"/><text x="42.4928%" y="895.50"></text></g><g><title>__GI___clone (47 samples, 0.03%)</title><rect x="42.2421%" y="965" width="0.0322%" height="15" fill="rgb(228,185,42)" fg:x="61668" fg:w="47"/><text x="42.4921%" y="975.50"></text></g><g><title>start_thread (47 samples, 0.03%)</title><rect x="42.2421%" y="949" width="0.0322%" height="15" fill="rgb(226,39,33)" fg:x="61668" fg:w="47"/><text x="42.4921%" y="959.50"></text></g><g><title>thread_native_entry (47 samples, 0.03%)</title><rect x="42.2421%" y="933" width="0.0322%" height="15" fill="rgb(221,166,19)" fg:x="61668" fg:w="47"/><text x="42.4921%" y="943.50"></text></g><g><title>Thread::call_run (47 samples, 0.03%)</title><rect x="42.2421%" y="917" width="0.0322%" height="15" fill="rgb(209,109,2)" fg:x="61668" fg:w="47"/><text x="42.4921%" y="927.50"></text></g><g><title>GangWorker::loop (47 samples, 0.03%)</title><rect x="42.2421%" y="901" width="0.0322%" height="15" fill="rgb(252,216,26)" fg:x="61668" fg:w="47"/><text x="42.4921%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (21 samples, 0.01%)</title><rect x="42.2599%" y="885" width="0.0144%" height="15" fill="rgb(227,173,36)" fg:x="61694" fg:w="21"/><text x="42.5099%" y="895.50"></text></g><g><title>PosixSemaphore::wait (21 samples, 0.01%)</title><rect x="42.2599%" y="869" width="0.0144%" height="15" fill="rgb(209,90,7)" fg:x="61694" fg:w="21"/><text x="42.5099%" y="879.50"></text></g><g><title>__new_sem_wait_slow (21 samples, 0.01%)</title><rect x="42.2599%" y="853" width="0.0144%" height="15" fill="rgb(250,194,11)" fg:x="61694" fg:w="21"/><text x="42.5099%" y="863.50"></text></g><g><title>do_futex_wait (21 samples, 0.01%)</title><rect x="42.2599%" y="837" width="0.0144%" height="15" fill="rgb(220,72,50)" fg:x="61694" fg:w="21"/><text x="42.5099%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (21 samples, 0.01%)</title><rect x="42.2599%" y="821" width="0.0144%" height="15" fill="rgb(222,106,48)" fg:x="61694" fg:w="21"/><text x="42.5099%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="42.2606%" y="805" width="0.0137%" height="15" fill="rgb(216,220,45)" fg:x="61695" fg:w="20"/><text x="42.5106%" y="815.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="42.2606%" y="789" width="0.0137%" height="15" fill="rgb(234,112,18)" fg:x="61695" fg:w="20"/><text x="42.5106%" y="799.50"></text></g><g><title>__x64_sys_futex (20 samples, 0.01%)</title><rect x="42.2606%" y="773" width="0.0137%" height="15" fill="rgb(206,179,9)" fg:x="61695" fg:w="20"/><text x="42.5106%" y="783.50"></text></g><g><title>do_futex (20 samples, 0.01%)</title><rect x="42.2606%" y="757" width="0.0137%" height="15" fill="rgb(215,115,40)" fg:x="61695" fg:w="20"/><text x="42.5106%" y="767.50"></text></g><g><title>futex_wait (20 samples, 0.01%)</title><rect x="42.2606%" y="741" width="0.0137%" height="15" fill="rgb(222,69,34)" fg:x="61695" fg:w="20"/><text x="42.5106%" y="751.50"></text></g><g><title>futex_wait_queue_me (19 samples, 0.01%)</title><rect x="42.2613%" y="725" width="0.0130%" height="15" fill="rgb(209,161,10)" fg:x="61696" fg:w="19"/><text x="42.5113%" y="735.50"></text></g><g><title>schedule (19 samples, 0.01%)</title><rect x="42.2613%" y="709" width="0.0130%" height="15" fill="rgb(217,6,38)" fg:x="61696" fg:w="19"/><text x="42.5113%" y="719.50"></text></g><g><title>__schedule (19 samples, 0.01%)</title><rect x="42.2613%" y="693" width="0.0130%" height="15" fill="rgb(229,229,48)" fg:x="61696" fg:w="19"/><text x="42.5113%" y="703.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="42.2613%" y="677" width="0.0130%" height="15" fill="rgb(225,21,28)" fg:x="61696" fg:w="19"/><text x="42.5113%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="42.2613%" y="661" width="0.0130%" height="15" fill="rgb(206,33,13)" fg:x="61696" fg:w="19"/><text x="42.5113%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="42.2613%" y="645" width="0.0130%" height="15" fill="rgb(242,178,17)" fg:x="61696" fg:w="19"/><text x="42.5113%" y="655.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="42.2613%" y="629" width="0.0130%" height="15" fill="rgb(220,162,5)" fg:x="61696" fg:w="19"/><text x="42.5113%" y="639.50"></text></g><g><title>G1_Conc#1 (49 samples, 0.03%)</title><rect x="42.2414%" y="981" width="0.0336%" height="15" fill="rgb(210,33,43)" fg:x="61667" fg:w="49"/><text x="42.4914%" y="991.50"></text></g><g><title>G1ConcurrentMarkThread::run_service (22 samples, 0.02%)</title><rect x="42.2757%" y="885" width="0.0151%" height="15" fill="rgb(216,116,54)" fg:x="61717" fg:w="22"/><text x="42.5257%" y="895.50"></text></g><g><title>__GI___clone (38 samples, 0.03%)</title><rect x="42.2750%" y="965" width="0.0260%" height="15" fill="rgb(249,92,24)" fg:x="61716" fg:w="38"/><text x="42.5250%" y="975.50"></text></g><g><title>start_thread (38 samples, 0.03%)</title><rect x="42.2750%" y="949" width="0.0260%" height="15" fill="rgb(231,189,14)" fg:x="61716" fg:w="38"/><text x="42.5250%" y="959.50"></text></g><g><title>thread_native_entry (37 samples, 0.03%)</title><rect x="42.2757%" y="933" width="0.0253%" height="15" fill="rgb(230,8,41)" fg:x="61717" fg:w="37"/><text x="42.5257%" y="943.50"></text></g><g><title>Thread::call_run (37 samples, 0.03%)</title><rect x="42.2757%" y="917" width="0.0253%" height="15" fill="rgb(249,7,27)" fg:x="61717" fg:w="37"/><text x="42.5257%" y="927.50"></text></g><g><title>ConcurrentGCThread::run (37 samples, 0.03%)</title><rect x="42.2757%" y="901" width="0.0253%" height="15" fill="rgb(232,86,5)" fg:x="61717" fg:w="37"/><text x="42.5257%" y="911.50"></text></g><g><title>Monitor::wait (15 samples, 0.01%)</title><rect x="42.2908%" y="885" width="0.0103%" height="15" fill="rgb(224,175,18)" fg:x="61739" fg:w="15"/><text x="42.5408%" y="895.50"></text></g><g><title>G1_Main_Marker (39 samples, 0.03%)</title><rect x="42.2750%" y="981" width="0.0267%" height="15" fill="rgb(220,129,12)" fg:x="61716" fg:w="39"/><text x="42.5250%" y="991.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (38 samples, 0.03%)</title><rect x="42.3099%" y="869" width="0.0260%" height="15" fill="rgb(210,19,36)" fg:x="61767" fg:w="38"/><text x="42.5599%" y="879.50"></text></g><g><title>G1RemSet::refine_card_concurrently (38 samples, 0.03%)</title><rect x="42.3099%" y="853" width="0.0260%" height="15" fill="rgb(219,96,14)" fg:x="61767" fg:w="38"/><text x="42.5599%" y="863.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (45 samples, 0.03%)</title><rect x="42.3099%" y="885" width="0.0308%" height="15" fill="rgb(249,106,1)" fg:x="61767" fg:w="45"/><text x="42.5599%" y="895.50"></text></g><g><title>__pthread_cond_timedwait (16 samples, 0.01%)</title><rect x="42.3408%" y="837" width="0.0110%" height="15" fill="rgb(249,155,20)" fg:x="61812" fg:w="16"/><text x="42.5908%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="42.3408%" y="821" width="0.0110%" height="15" fill="rgb(244,168,9)" fg:x="61812" fg:w="16"/><text x="42.5908%" y="831.50"></text></g><g><title>futex_abstimed_wait_cancelable (16 samples, 0.01%)</title><rect x="42.3408%" y="805" width="0.0110%" height="15" fill="rgb(216,23,50)" fg:x="61812" fg:w="16"/><text x="42.5908%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="42.3408%" y="789" width="0.0110%" height="15" fill="rgb(224,219,20)" fg:x="61812" fg:w="16"/><text x="42.5908%" y="799.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="42.3408%" y="773" width="0.0110%" height="15" fill="rgb(222,156,15)" fg:x="61812" fg:w="16"/><text x="42.5908%" y="783.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="42.3408%" y="757" width="0.0110%" height="15" fill="rgb(231,97,17)" fg:x="61812" fg:w="16"/><text x="42.5908%" y="767.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="42.3408%" y="741" width="0.0110%" height="15" fill="rgb(218,70,48)" fg:x="61812" fg:w="16"/><text x="42.5908%" y="751.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="42.3408%" y="725" width="0.0110%" height="15" fill="rgb(212,196,52)" fg:x="61812" fg:w="16"/><text x="42.5908%" y="735.50"></text></g><g><title>futex_wait_queue_me (15 samples, 0.01%)</title><rect x="42.3414%" y="709" width="0.0103%" height="15" fill="rgb(243,203,18)" fg:x="61813" fg:w="15"/><text x="42.5914%" y="719.50"></text></g><g><title>schedule (15 samples, 0.01%)</title><rect x="42.3414%" y="693" width="0.0103%" height="15" fill="rgb(252,125,41)" fg:x="61813" fg:w="15"/><text x="42.5914%" y="703.50"></text></g><g><title>__schedule (15 samples, 0.01%)</title><rect x="42.3414%" y="677" width="0.0103%" height="15" fill="rgb(223,180,33)" fg:x="61813" fg:w="15"/><text x="42.5914%" y="687.50"></text></g><g><title>Monitor::wait (17 samples, 0.01%)</title><rect x="42.3408%" y="885" width="0.0116%" height="15" fill="rgb(254,159,46)" fg:x="61812" fg:w="17"/><text x="42.5908%" y="895.50"></text></g><g><title>Monitor::IWait (17 samples, 0.01%)</title><rect x="42.3408%" y="869" width="0.0116%" height="15" fill="rgb(254,38,10)" fg:x="61812" fg:w="17"/><text x="42.5908%" y="879.50"></text></g><g><title>os::PlatformEvent::park (17 samples, 0.01%)</title><rect x="42.3408%" y="853" width="0.0116%" height="15" fill="rgb(208,217,32)" fg:x="61812" fg:w="17"/><text x="42.5908%" y="863.50"></text></g><g><title>G1_Refine#0 (75 samples, 0.05%)</title><rect x="42.3017%" y="981" width="0.0514%" height="15" fill="rgb(221,120,13)" fg:x="61755" fg:w="75"/><text x="42.5517%" y="991.50"></text></g><g><title>__GI___clone (70 samples, 0.05%)</title><rect x="42.3051%" y="965" width="0.0479%" height="15" fill="rgb(246,54,52)" fg:x="61760" fg:w="70"/><text x="42.5551%" y="975.50"></text></g><g><title>start_thread (70 samples, 0.05%)</title><rect x="42.3051%" y="949" width="0.0479%" height="15" fill="rgb(242,34,25)" fg:x="61760" fg:w="70"/><text x="42.5551%" y="959.50"></text></g><g><title>thread_native_entry (70 samples, 0.05%)</title><rect x="42.3051%" y="933" width="0.0479%" height="15" fill="rgb(247,209,9)" fg:x="61760" fg:w="70"/><text x="42.5551%" y="943.50"></text></g><g><title>Thread::call_run (63 samples, 0.04%)</title><rect x="42.3099%" y="917" width="0.0432%" height="15" fill="rgb(228,71,26)" fg:x="61767" fg:w="63"/><text x="42.5599%" y="927.50"></text></g><g><title>ConcurrentGCThread::run (63 samples, 0.04%)</title><rect x="42.3099%" y="901" width="0.0432%" height="15" fill="rgb(222,145,49)" fg:x="61767" fg:w="63"/><text x="42.5599%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.02%)</title><rect x="42.3675%" y="629" width="0.0192%" height="15" fill="rgb(218,121,17)" fg:x="61851" fg:w="28"/><text x="42.6175%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="42.3675%" y="613" width="0.0192%" height="15" fill="rgb(244,50,7)" fg:x="61851" fg:w="28"/><text x="42.6175%" y="623.50"></text></g><g><title>native_write_msr (28 samples, 0.02%)</title><rect x="42.3675%" y="597" width="0.0192%" height="15" fill="rgb(246,229,37)" fg:x="61851" fg:w="28"/><text x="42.6175%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (31 samples, 0.02%)</title><rect x="42.3661%" y="821" width="0.0212%" height="15" fill="rgb(225,18,5)" fg:x="61849" fg:w="31"/><text x="42.6161%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (31 samples, 0.02%)</title><rect x="42.3661%" y="805" width="0.0212%" height="15" fill="rgb(213,204,8)" fg:x="61849" fg:w="31"/><text x="42.6161%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (31 samples, 0.02%)</title><rect x="42.3661%" y="789" width="0.0212%" height="15" fill="rgb(238,103,6)" fg:x="61849" fg:w="31"/><text x="42.6161%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="42.3661%" y="773" width="0.0212%" height="15" fill="rgb(222,25,35)" fg:x="61849" fg:w="31"/><text x="42.6161%" y="783.50"></text></g><g><title>do_syscall_64 (31 samples, 0.02%)</title><rect x="42.3661%" y="757" width="0.0212%" height="15" fill="rgb(213,203,35)" fg:x="61849" fg:w="31"/><text x="42.6161%" y="767.50"></text></g><g><title>__x64_sys_futex (31 samples, 0.02%)</title><rect x="42.3661%" y="741" width="0.0212%" height="15" fill="rgb(221,79,53)" fg:x="61849" fg:w="31"/><text x="42.6161%" y="751.50"></text></g><g><title>do_futex (31 samples, 0.02%)</title><rect x="42.3661%" y="725" width="0.0212%" height="15" fill="rgb(243,200,35)" fg:x="61849" fg:w="31"/><text x="42.6161%" y="735.50"></text></g><g><title>futex_wait (31 samples, 0.02%)</title><rect x="42.3661%" y="709" width="0.0212%" height="15" fill="rgb(248,60,25)" fg:x="61849" fg:w="31"/><text x="42.6161%" y="719.50"></text></g><g><title>futex_wait_queue_me (31 samples, 0.02%)</title><rect x="42.3661%" y="693" width="0.0212%" height="15" fill="rgb(227,53,46)" fg:x="61849" fg:w="31"/><text x="42.6161%" y="703.50"></text></g><g><title>schedule (30 samples, 0.02%)</title><rect x="42.3668%" y="677" width="0.0205%" height="15" fill="rgb(216,120,32)" fg:x="61850" fg:w="30"/><text x="42.6168%" y="687.50"></text></g><g><title>__schedule (30 samples, 0.02%)</title><rect x="42.3668%" y="661" width="0.0205%" height="15" fill="rgb(220,134,1)" fg:x="61850" fg:w="30"/><text x="42.6168%" y="671.50"></text></g><g><title>finish_task_switch (30 samples, 0.02%)</title><rect x="42.3668%" y="645" width="0.0205%" height="15" fill="rgb(237,168,5)" fg:x="61850" fg:w="30"/><text x="42.6168%" y="655.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (40 samples, 0.03%)</title><rect x="42.3606%" y="885" width="0.0274%" height="15" fill="rgb(231,100,33)" fg:x="61841" fg:w="40"/><text x="42.6106%" y="895.50"></text></g><g><title>Monitor::wait (34 samples, 0.02%)</title><rect x="42.3647%" y="869" width="0.0233%" height="15" fill="rgb(236,177,47)" fg:x="61847" fg:w="34"/><text x="42.6147%" y="879.50"></text></g><g><title>Monitor::IWait (34 samples, 0.02%)</title><rect x="42.3647%" y="853" width="0.0233%" height="15" fill="rgb(235,7,49)" fg:x="61847" fg:w="34"/><text x="42.6147%" y="863.50"></text></g><g><title>os::PlatformEvent::park (33 samples, 0.02%)</title><rect x="42.3654%" y="837" width="0.0226%" height="15" fill="rgb(232,119,22)" fg:x="61848" fg:w="33"/><text x="42.6154%" y="847.50"></text></g><g><title>G1_Young_RemSet (48 samples, 0.03%)</title><rect x="42.3606%" y="981" width="0.0329%" height="15" fill="rgb(254,73,53)" fg:x="61841" fg:w="48"/><text x="42.6106%" y="991.50"></text></g><g><title>__GI___clone (48 samples, 0.03%)</title><rect x="42.3606%" y="965" width="0.0329%" height="15" fill="rgb(251,35,20)" fg:x="61841" fg:w="48"/><text x="42.6106%" y="975.50"></text></g><g><title>start_thread (48 samples, 0.03%)</title><rect x="42.3606%" y="949" width="0.0329%" height="15" fill="rgb(241,119,20)" fg:x="61841" fg:w="48"/><text x="42.6106%" y="959.50"></text></g><g><title>thread_native_entry (48 samples, 0.03%)</title><rect x="42.3606%" y="933" width="0.0329%" height="15" fill="rgb(207,102,14)" fg:x="61841" fg:w="48"/><text x="42.6106%" y="943.50"></text></g><g><title>Thread::call_run (48 samples, 0.03%)</title><rect x="42.3606%" y="917" width="0.0329%" height="15" fill="rgb(248,201,50)" fg:x="61841" fg:w="48"/><text x="42.6106%" y="927.50"></text></g><g><title>ConcurrentGCThread::run (48 samples, 0.03%)</title><rect x="42.3606%" y="901" width="0.0329%" height="15" fill="rgb(222,185,44)" fg:x="61841" fg:w="48"/><text x="42.6106%" y="911.50"></text></g><g><title>G1CMRemarkTask::work (25 samples, 0.02%)</title><rect x="42.4010%" y="885" width="0.0171%" height="15" fill="rgb(218,107,18)" fg:x="61900" fg:w="25"/><text x="42.6510%" y="895.50"></text></g><g><title>G1CMTask::do_marking_step (25 samples, 0.02%)</title><rect x="42.4010%" y="869" width="0.0171%" height="15" fill="rgb(237,177,39)" fg:x="61900" fg:w="25"/><text x="42.6510%" y="879.50"></text></g><g><title>SpinPause (25 samples, 0.02%)</title><rect x="42.4010%" y="853" width="0.0171%" height="15" fill="rgb(246,69,6)" fg:x="61900" fg:w="25"/><text x="42.6510%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue (15 samples, 0.01%)</title><rect x="42.4195%" y="853" width="0.0103%" height="15" fill="rgb(234,208,37)" fg:x="61927" fg:w="15"/><text x="42.6695%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (29 samples, 0.02%)</title><rect x="42.4182%" y="869" width="0.0199%" height="15" fill="rgb(225,4,6)" fg:x="61925" fg:w="29"/><text x="42.6682%" y="879.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (20 samples, 0.01%)</title><rect x="42.4469%" y="773" width="0.0137%" height="15" fill="rgb(233,45,0)" fg:x="61967" fg:w="20"/><text x="42.6969%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (23 samples, 0.02%)</title><rect x="42.4456%" y="789" width="0.0158%" height="15" fill="rgb(226,136,5)" fg:x="61965" fg:w="23"/><text x="42.6956%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (27 samples, 0.02%)</title><rect x="42.4456%" y="805" width="0.0185%" height="15" fill="rgb(211,91,47)" fg:x="61965" fg:w="27"/><text x="42.6956%" y="815.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (30 samples, 0.02%)</title><rect x="42.4449%" y="821" width="0.0205%" height="15" fill="rgb(242,88,51)" fg:x="61964" fg:w="30"/><text x="42.6949%" y="831.50"></text></g><g><title>G1RemSet::scan_rem_set (32 samples, 0.02%)</title><rect x="42.4449%" y="869" width="0.0219%" height="15" fill="rgb(230,91,28)" fg:x="61964" fg:w="32"/><text x="42.6949%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (32 samples, 0.02%)</title><rect x="42.4449%" y="853" width="0.0219%" height="15" fill="rgb(254,186,29)" fg:x="61964" fg:w="32"/><text x="42.6949%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (32 samples, 0.02%)</title><rect x="42.4449%" y="837" width="0.0219%" height="15" fill="rgb(238,6,4)" fg:x="61964" fg:w="32"/><text x="42.6949%" y="847.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (46 samples, 0.03%)</title><rect x="42.4668%" y="837" width="0.0315%" height="15" fill="rgb(221,151,16)" fg:x="61996" fg:w="46"/><text x="42.7168%" y="847.50"></text></g><g><title>G1CLDScanClosure::do_cld (46 samples, 0.03%)</title><rect x="42.4668%" y="821" width="0.0315%" height="15" fill="rgb(251,143,52)" fg:x="61996" fg:w="46"/><text x="42.7168%" y="831.50"></text></g><g><title>ClassLoaderData::oops_do (46 samples, 0.03%)</title><rect x="42.4668%" y="805" width="0.0315%" height="15" fill="rgb(206,90,15)" fg:x="61996" fg:w="46"/><text x="42.7168%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (36 samples, 0.02%)</title><rect x="42.4736%" y="789" width="0.0247%" height="15" fill="rgb(218,35,8)" fg:x="62006" fg:w="36"/><text x="42.7236%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (26 samples, 0.02%)</title><rect x="42.4805%" y="773" width="0.0178%" height="15" fill="rgb(239,215,6)" fg:x="62016" fg:w="26"/><text x="42.7305%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="42.4839%" y="757" width="0.0144%" height="15" fill="rgb(245,116,39)" fg:x="62021" fg:w="21"/><text x="42.7339%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (27 samples, 0.02%)</title><rect x="42.5134%" y="741" width="0.0185%" height="15" fill="rgb(242,65,28)" fg:x="62064" fg:w="27"/><text x="42.7634%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (21 samples, 0.01%)</title><rect x="42.5175%" y="725" width="0.0144%" height="15" fill="rgb(252,132,53)" fg:x="62070" fg:w="21"/><text x="42.7675%" y="735.50"></text></g><g><title>InterpreterOopMap::iterate_oop (40 samples, 0.03%)</title><rect x="42.5058%" y="773" width="0.0274%" height="15" fill="rgb(224,159,50)" fg:x="62053" fg:w="40"/><text x="42.7558%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (40 samples, 0.03%)</title><rect x="42.5058%" y="757" width="0.0274%" height="15" fill="rgb(224,93,4)" fg:x="62053" fg:w="40"/><text x="42.7558%" y="767.50"></text></g><g><title>G1RootProcessor::process_java_roots (99 samples, 0.07%)</title><rect x="42.4668%" y="853" width="0.0678%" height="15" fill="rgb(208,81,34)" fg:x="61996" fg:w="99"/><text x="42.7168%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (53 samples, 0.04%)</title><rect x="42.4983%" y="837" width="0.0363%" height="15" fill="rgb(233,92,54)" fg:x="62042" fg:w="53"/><text x="42.7483%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (53 samples, 0.04%)</title><rect x="42.4983%" y="821" width="0.0363%" height="15" fill="rgb(237,21,14)" fg:x="62042" fg:w="53"/><text x="42.7483%" y="831.50"></text></g><g><title>JavaThread::oops_do (53 samples, 0.04%)</title><rect x="42.4983%" y="805" width="0.0363%" height="15" fill="rgb(249,128,51)" fg:x="62042" fg:w="53"/><text x="42.7483%" y="815.50"></text></g><g><title>frame::oops_interpreted_do (43 samples, 0.03%)</title><rect x="42.5052%" y="789" width="0.0295%" height="15" fill="rgb(223,129,24)" fg:x="62052" fg:w="43"/><text x="42.7552%" y="799.50"></text></g><g><title>G1ParTask::work (187 samples, 0.13%)</title><rect x="42.4182%" y="885" width="0.1281%" height="15" fill="rgb(231,168,25)" fg:x="61925" fg:w="187"/><text x="42.6682%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (116 samples, 0.08%)</title><rect x="42.4668%" y="869" width="0.0795%" height="15" fill="rgb(224,39,20)" fg:x="61996" fg:w="116"/><text x="42.7168%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (22 samples, 0.02%)</title><rect x="42.5531%" y="885" width="0.0151%" height="15" fill="rgb(225,152,53)" fg:x="62122" fg:w="22"/><text x="42.8031%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (20 samples, 0.01%)</title><rect x="42.5545%" y="869" width="0.0137%" height="15" fill="rgb(252,17,24)" fg:x="62124" fg:w="20"/><text x="42.8045%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (20 samples, 0.01%)</title><rect x="42.5545%" y="853" width="0.0137%" height="15" fill="rgb(250,114,30)" fg:x="62124" fg:w="20"/><text x="42.8045%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (20 samples, 0.01%)</title><rect x="42.5545%" y="837" width="0.0137%" height="15" fill="rgb(229,5,4)" fg:x="62124" fg:w="20"/><text x="42.8045%" y="847.50"></text></g><g><title>SpinPause (20 samples, 0.01%)</title><rect x="42.5545%" y="821" width="0.0137%" height="15" fill="rgb(225,176,49)" fg:x="62124" fg:w="20"/><text x="42.8045%" y="831.50"></text></g><g><title>ParallelSPCleanupTask::work (15 samples, 0.01%)</title><rect x="42.5689%" y="885" width="0.0103%" height="15" fill="rgb(224,221,49)" fg:x="62145" fg:w="15"/><text x="42.8189%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.05%)</title><rect x="42.5853%" y="661" width="0.0459%" height="15" fill="rgb(253,169,27)" fg:x="62169" fg:w="67"/><text x="42.8353%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.05%)</title><rect x="42.5853%" y="645" width="0.0459%" height="15" fill="rgb(211,206,16)" fg:x="62169" fg:w="67"/><text x="42.8353%" y="655.50"></text></g><g><title>native_write_msr (67 samples, 0.05%)</title><rect x="42.5853%" y="629" width="0.0459%" height="15" fill="rgb(244,87,35)" fg:x="62169" fg:w="67"/><text x="42.8353%" y="639.50"></text></g><g><title>finish_task_switch (70 samples, 0.05%)</title><rect x="42.5839%" y="677" width="0.0479%" height="15" fill="rgb(246,28,10)" fg:x="62167" fg:w="70"/><text x="42.8339%" y="687.50"></text></g><g><title>do_syscall_64 (82 samples, 0.06%)</title><rect x="42.5805%" y="789" width="0.0562%" height="15" fill="rgb(229,12,44)" fg:x="62162" fg:w="82"/><text x="42.8305%" y="799.50"></text></g><g><title>__x64_sys_futex (82 samples, 0.06%)</title><rect x="42.5805%" y="773" width="0.0562%" height="15" fill="rgb(210,145,37)" fg:x="62162" fg:w="82"/><text x="42.8305%" y="783.50"></text></g><g><title>do_futex (82 samples, 0.06%)</title><rect x="42.5805%" y="757" width="0.0562%" height="15" fill="rgb(227,112,52)" fg:x="62162" fg:w="82"/><text x="42.8305%" y="767.50"></text></g><g><title>futex_wait (81 samples, 0.06%)</title><rect x="42.5812%" y="741" width="0.0555%" height="15" fill="rgb(238,155,34)" fg:x="62163" fg:w="81"/><text x="42.8312%" y="751.50"></text></g><g><title>futex_wait_queue_me (80 samples, 0.05%)</title><rect x="42.5819%" y="725" width="0.0548%" height="15" fill="rgb(239,226,36)" fg:x="62164" fg:w="80"/><text x="42.8319%" y="735.50"></text></g><g><title>schedule (79 samples, 0.05%)</title><rect x="42.5826%" y="709" width="0.0541%" height="15" fill="rgb(230,16,23)" fg:x="62165" fg:w="79"/><text x="42.8326%" y="719.50"></text></g><g><title>__schedule (79 samples, 0.05%)</title><rect x="42.5826%" y="693" width="0.0541%" height="15" fill="rgb(236,171,36)" fg:x="62165" fg:w="79"/><text x="42.8326%" y="703.50"></text></g><g><title>__GI___clone (347 samples, 0.24%)</title><rect x="42.4010%" y="965" width="0.2377%" height="15" fill="rgb(221,22,14)" fg:x="61900" fg:w="347"/><text x="42.6510%" y="975.50"></text></g><g><title>start_thread (347 samples, 0.24%)</title><rect x="42.4010%" y="949" width="0.2377%" height="15" fill="rgb(242,43,11)" fg:x="61900" fg:w="347"/><text x="42.6510%" y="959.50"></text></g><g><title>thread_native_entry (347 samples, 0.24%)</title><rect x="42.4010%" y="933" width="0.2377%" height="15" fill="rgb(232,69,23)" fg:x="61900" fg:w="347"/><text x="42.6510%" y="943.50"></text></g><g><title>Thread::call_run (347 samples, 0.24%)</title><rect x="42.4010%" y="917" width="0.2377%" height="15" fill="rgb(216,180,54)" fg:x="61900" fg:w="347"/><text x="42.6510%" y="927.50"></text></g><g><title>GangWorker::loop (347 samples, 0.24%)</title><rect x="42.4010%" y="901" width="0.2377%" height="15" fill="rgb(216,5,24)" fg:x="61900" fg:w="347"/><text x="42.6510%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (87 samples, 0.06%)</title><rect x="42.5791%" y="885" width="0.0596%" height="15" fill="rgb(225,89,9)" fg:x="62160" fg:w="87"/><text x="42.8291%" y="895.50"></text></g><g><title>PosixSemaphore::wait (87 samples, 0.06%)</title><rect x="42.5791%" y="869" width="0.0596%" height="15" fill="rgb(243,75,33)" fg:x="62160" fg:w="87"/><text x="42.8291%" y="879.50"></text></g><g><title>__new_sem_wait_slow (87 samples, 0.06%)</title><rect x="42.5791%" y="853" width="0.0596%" height="15" fill="rgb(247,141,45)" fg:x="62160" fg:w="87"/><text x="42.8291%" y="863.50"></text></g><g><title>do_futex_wait (86 samples, 0.06%)</title><rect x="42.5798%" y="837" width="0.0589%" height="15" fill="rgb(232,177,36)" fg:x="62161" fg:w="86"/><text x="42.8298%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (86 samples, 0.06%)</title><rect x="42.5798%" y="821" width="0.0589%" height="15" fill="rgb(219,125,36)" fg:x="62161" fg:w="86"/><text x="42.8298%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.06%)</title><rect x="42.5805%" y="805" width="0.0582%" height="15" fill="rgb(227,94,9)" fg:x="62162" fg:w="85"/><text x="42.8305%" y="815.50"></text></g><g><title>GC_Thread#0 (359 samples, 0.25%)</title><rect x="42.3935%" y="981" width="0.2459%" height="15" fill="rgb(240,34,52)" fg:x="61889" fg:w="359"/><text x="42.6435%" y="991.50"></text></g><g><title>G1CMRemarkTask::work (43 samples, 0.03%)</title><rect x="42.6442%" y="885" width="0.0295%" height="15" fill="rgb(216,45,12)" fg:x="62255" fg:w="43"/><text x="42.8942%" y="895.50"></text></g><g><title>G1CMTask::do_marking_step (43 samples, 0.03%)</title><rect x="42.6442%" y="869" width="0.0295%" height="15" fill="rgb(246,21,19)" fg:x="62255" fg:w="43"/><text x="42.8942%" y="879.50"></text></g><g><title>SpinPause (43 samples, 0.03%)</title><rect x="42.6442%" y="853" width="0.0295%" height="15" fill="rgb(213,98,42)" fg:x="62255" fg:w="43"/><text x="42.8942%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue (30 samples, 0.02%)</title><rect x="42.6791%" y="853" width="0.0205%" height="15" fill="rgb(250,136,47)" fg:x="62306" fg:w="30"/><text x="42.9291%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (20 samples, 0.01%)</title><rect x="42.6860%" y="837" width="0.0137%" height="15" fill="rgb(251,124,27)" fg:x="62316" fg:w="20"/><text x="42.9360%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (51 samples, 0.03%)</title><rect x="42.6743%" y="869" width="0.0349%" height="15" fill="rgb(229,180,14)" fg:x="62299" fg:w="51"/><text x="42.9243%" y="879.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (15 samples, 0.01%)</title><rect x="42.7093%" y="821" width="0.0103%" height="15" fill="rgb(245,216,25)" fg:x="62350" fg:w="15"/><text x="42.9593%" y="831.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (15 samples, 0.01%)</title><rect x="42.7093%" y="805" width="0.0103%" height="15" fill="rgb(251,43,5)" fg:x="62350" fg:w="15"/><text x="42.9593%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (15 samples, 0.01%)</title><rect x="42.7093%" y="789" width="0.0103%" height="15" fill="rgb(250,128,24)" fg:x="62350" fg:w="15"/><text x="42.9593%" y="799.50"></text></g><g><title>G1RemSet::scan_rem_set (27 samples, 0.02%)</title><rect x="42.7093%" y="869" width="0.0185%" height="15" fill="rgb(217,117,27)" fg:x="62350" fg:w="27"/><text x="42.9593%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (27 samples, 0.02%)</title><rect x="42.7093%" y="853" width="0.0185%" height="15" fill="rgb(245,147,4)" fg:x="62350" fg:w="27"/><text x="42.9593%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (27 samples, 0.02%)</title><rect x="42.7093%" y="837" width="0.0185%" height="15" fill="rgb(242,201,35)" fg:x="62350" fg:w="27"/><text x="42.9593%" y="847.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (38 samples, 0.03%)</title><rect x="42.7353%" y="725" width="0.0260%" height="15" fill="rgb(218,181,1)" fg:x="62388" fg:w="38"/><text x="42.9853%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (27 samples, 0.02%)</title><rect x="42.7428%" y="709" width="0.0185%" height="15" fill="rgb(222,6,29)" fg:x="62399" fg:w="27"/><text x="42.9928%" y="719.50"></text></g><g><title>G1CodeBlobClosure::HeapRegionGatheringOopClosure::do_oop (50 samples, 0.03%)</title><rect x="42.7285%" y="757" width="0.0342%" height="15" fill="rgb(208,186,3)" fg:x="62378" fg:w="50"/><text x="42.9785%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (50 samples, 0.03%)</title><rect x="42.7285%" y="741" width="0.0342%" height="15" fill="rgb(216,36,26)" fg:x="62378" fg:w="50"/><text x="42.9785%" y="751.50"></text></g><g><title>G1CodeBlobClosure::do_code_blob (51 samples, 0.03%)</title><rect x="42.7285%" y="789" width="0.0349%" height="15" fill="rgb(248,201,23)" fg:x="62378" fg:w="51"/><text x="42.9785%" y="799.50"></text></g><g><title>nmethod::oops_do (51 samples, 0.03%)</title><rect x="42.7285%" y="773" width="0.0349%" height="15" fill="rgb(251,170,31)" fg:x="62378" fg:w="51"/><text x="42.9785%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (27 samples, 0.02%)</title><rect x="42.7792%" y="757" width="0.0185%" height="15" fill="rgb(207,110,25)" fg:x="62452" fg:w="27"/><text x="43.0292%" y="767.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (18 samples, 0.01%)</title><rect x="42.7853%" y="741" width="0.0123%" height="15" fill="rgb(250,54,15)" fg:x="62461" fg:w="18"/><text x="43.0353%" y="751.50"></text></g><g><title>HandleArea::oops_do (54 samples, 0.04%)</title><rect x="42.7634%" y="789" width="0.0370%" height="15" fill="rgb(227,68,33)" fg:x="62429" fg:w="54"/><text x="43.0134%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (40 samples, 0.03%)</title><rect x="42.7730%" y="773" width="0.0274%" height="15" fill="rgb(238,34,41)" fg:x="62443" fg:w="40"/><text x="43.0230%" y="783.50"></text></g><g><title>G1RootProcessor::process_java_roots (136 samples, 0.09%)</title><rect x="42.7278%" y="853" width="0.0932%" height="15" fill="rgb(220,11,15)" fg:x="62377" fg:w="136"/><text x="42.9778%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (136 samples, 0.09%)</title><rect x="42.7278%" y="837" width="0.0932%" height="15" fill="rgb(246,111,35)" fg:x="62377" fg:w="136"/><text x="42.9778%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (136 samples, 0.09%)</title><rect x="42.7278%" y="821" width="0.0932%" height="15" fill="rgb(209,88,53)" fg:x="62377" fg:w="136"/><text x="42.9778%" y="831.50"></text></g><g><title>JavaThread::oops_do (135 samples, 0.09%)</title><rect x="42.7285%" y="805" width="0.0925%" height="15" fill="rgb(231,185,47)" fg:x="62378" fg:w="135"/><text x="42.9785%" y="815.50"></text></g><g><title>frame::oops_interpreted_do (24 samples, 0.02%)</title><rect x="42.8045%" y="789" width="0.0164%" height="15" fill="rgb(233,154,1)" fg:x="62489" fg:w="24"/><text x="43.0545%" y="799.50"></text></g><g><title>G1ParTask::work (216 samples, 0.15%)</title><rect x="42.6743%" y="885" width="0.1480%" height="15" fill="rgb(225,15,46)" fg:x="62299" fg:w="216"/><text x="42.9243%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (138 samples, 0.09%)</title><rect x="42.7278%" y="869" width="0.0945%" height="15" fill="rgb(211,135,41)" fg:x="62377" fg:w="138"/><text x="42.9778%" y="879.50"></text></g><g><title>ParallelSPCleanupTask::work (20 samples, 0.01%)</title><rect x="42.8312%" y="885" width="0.0137%" height="15" fill="rgb(208,54,0)" fg:x="62528" fg:w="20"/><text x="43.0812%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (20 samples, 0.01%)</title><rect x="42.8312%" y="869" width="0.0137%" height="15" fill="rgb(244,136,14)" fg:x="62528" fg:w="20"/><text x="43.0812%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.04%)</title><rect x="42.8497%" y="661" width="0.0425%" height="15" fill="rgb(241,56,14)" fg:x="62555" fg:w="62"/><text x="43.0997%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.04%)</title><rect x="42.8497%" y="645" width="0.0425%" height="15" fill="rgb(205,80,24)" fg:x="62555" fg:w="62"/><text x="43.0997%" y="655.50"></text></g><g><title>native_write_msr (62 samples, 0.04%)</title><rect x="42.8497%" y="629" width="0.0425%" height="15" fill="rgb(220,57,4)" fg:x="62555" fg:w="62"/><text x="43.0997%" y="639.50"></text></g><g><title>finish_task_switch (63 samples, 0.04%)</title><rect x="42.8497%" y="677" width="0.0432%" height="15" fill="rgb(226,193,50)" fg:x="62555" fg:w="63"/><text x="43.0997%" y="687.50"></text></g><g><title>futex_wait_queue_me (73 samples, 0.05%)</title><rect x="42.8463%" y="725" width="0.0500%" height="15" fill="rgb(231,168,22)" fg:x="62550" fg:w="73"/><text x="43.0963%" y="735.50"></text></g><g><title>schedule (70 samples, 0.05%)</title><rect x="42.8483%" y="709" width="0.0479%" height="15" fill="rgb(254,215,14)" fg:x="62553" fg:w="70"/><text x="43.0983%" y="719.50"></text></g><g><title>__schedule (70 samples, 0.05%)</title><rect x="42.8483%" y="693" width="0.0479%" height="15" fill="rgb(211,115,16)" fg:x="62553" fg:w="70"/><text x="43.0983%" y="703.50"></text></g><g><title>do_syscall_64 (75 samples, 0.05%)</title><rect x="42.8463%" y="789" width="0.0514%" height="15" fill="rgb(236,210,16)" fg:x="62550" fg:w="75"/><text x="43.0963%" y="799.50"></text></g><g><title>__x64_sys_futex (75 samples, 0.05%)</title><rect x="42.8463%" y="773" width="0.0514%" height="15" fill="rgb(221,94,12)" fg:x="62550" fg:w="75"/><text x="43.0963%" y="783.50"></text></g><g><title>do_futex (75 samples, 0.05%)</title><rect x="42.8463%" y="757" width="0.0514%" height="15" fill="rgb(235,218,49)" fg:x="62550" fg:w="75"/><text x="43.0963%" y="767.50"></text></g><g><title>futex_wait (75 samples, 0.05%)</title><rect x="42.8463%" y="741" width="0.0514%" height="15" fill="rgb(217,114,14)" fg:x="62550" fg:w="75"/><text x="43.0963%" y="751.50"></text></g><g><title>GC_Thread#1 (379 samples, 0.26%)</title><rect x="42.6394%" y="981" width="0.2596%" height="15" fill="rgb(216,145,22)" fg:x="62248" fg:w="379"/><text x="42.8894%" y="991.50"></text></g><g><title>__GI___clone (373 samples, 0.26%)</title><rect x="42.6435%" y="965" width="0.2555%" height="15" fill="rgb(217,112,39)" fg:x="62254" fg:w="373"/><text x="42.8935%" y="975.50"></text></g><g><title>start_thread (373 samples, 0.26%)</title><rect x="42.6435%" y="949" width="0.2555%" height="15" fill="rgb(225,85,32)" fg:x="62254" fg:w="373"/><text x="42.8935%" y="959.50"></text></g><g><title>thread_native_entry (373 samples, 0.26%)</title><rect x="42.6435%" y="933" width="0.2555%" height="15" fill="rgb(245,209,47)" fg:x="62254" fg:w="373"/><text x="42.8935%" y="943.50"></text></g><g><title>Thread::call_run (373 samples, 0.26%)</title><rect x="42.6435%" y="917" width="0.2555%" height="15" fill="rgb(218,220,15)" fg:x="62254" fg:w="373"/><text x="42.8935%" y="927.50"></text></g><g><title>GangWorker::loop (373 samples, 0.26%)</title><rect x="42.6435%" y="901" width="0.2555%" height="15" fill="rgb(222,202,31)" fg:x="62254" fg:w="373"/><text x="42.8935%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (78 samples, 0.05%)</title><rect x="42.8456%" y="885" width="0.0534%" height="15" fill="rgb(243,203,4)" fg:x="62549" fg:w="78"/><text x="43.0956%" y="895.50"></text></g><g><title>PosixSemaphore::wait (78 samples, 0.05%)</title><rect x="42.8456%" y="869" width="0.0534%" height="15" fill="rgb(237,92,17)" fg:x="62549" fg:w="78"/><text x="43.0956%" y="879.50"></text></g><g><title>__new_sem_wait_slow (78 samples, 0.05%)</title><rect x="42.8456%" y="853" width="0.0534%" height="15" fill="rgb(231,119,7)" fg:x="62549" fg:w="78"/><text x="43.0956%" y="863.50"></text></g><g><title>do_futex_wait (78 samples, 0.05%)</title><rect x="42.8456%" y="837" width="0.0534%" height="15" fill="rgb(237,82,41)" fg:x="62549" fg:w="78"/><text x="43.0956%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (78 samples, 0.05%)</title><rect x="42.8456%" y="821" width="0.0534%" height="15" fill="rgb(226,81,48)" fg:x="62549" fg:w="78"/><text x="43.0956%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.05%)</title><rect x="42.8463%" y="805" width="0.0527%" height="15" fill="rgb(234,70,51)" fg:x="62550" fg:w="77"/><text x="43.0963%" y="815.50"></text></g><g><title>G1CMRemarkTask::work (16 samples, 0.01%)</title><rect x="42.9045%" y="885" width="0.0110%" height="15" fill="rgb(251,86,4)" fg:x="62635" fg:w="16"/><text x="43.1545%" y="895.50"></text></g><g><title>G1CMTask::do_marking_step (16 samples, 0.01%)</title><rect x="42.9045%" y="869" width="0.0110%" height="15" fill="rgb(244,144,28)" fg:x="62635" fg:w="16"/><text x="43.1545%" y="879.50"></text></g><g><title>SpinPause (16 samples, 0.01%)</title><rect x="42.9045%" y="853" width="0.0110%" height="15" fill="rgb(232,161,39)" fg:x="62635" fg:w="16"/><text x="43.1545%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (20 samples, 0.01%)</title><rect x="42.9230%" y="837" width="0.0137%" height="15" fill="rgb(247,34,51)" fg:x="62662" fg:w="20"/><text x="43.1730%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (29 samples, 0.02%)</title><rect x="42.9189%" y="853" width="0.0199%" height="15" fill="rgb(225,132,2)" fg:x="62656" fg:w="29"/><text x="43.1689%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (50 samples, 0.03%)</title><rect x="42.9155%" y="869" width="0.0342%" height="15" fill="rgb(209,159,44)" fg:x="62651" fg:w="50"/><text x="43.1655%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (23 samples, 0.02%)</title><rect x="42.9600%" y="789" width="0.0158%" height="15" fill="rgb(251,214,1)" fg:x="62716" fg:w="23"/><text x="43.2100%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (20 samples, 0.01%)</title><rect x="42.9620%" y="773" width="0.0137%" height="15" fill="rgb(247,84,47)" fg:x="62719" fg:w="20"/><text x="43.2120%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (16 samples, 0.01%)</title><rect x="42.9648%" y="757" width="0.0110%" height="15" fill="rgb(240,111,43)" fg:x="62723" fg:w="16"/><text x="43.2148%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (28 samples, 0.02%)</title><rect x="42.9593%" y="821" width="0.0192%" height="15" fill="rgb(215,214,35)" fg:x="62715" fg:w="28"/><text x="43.2093%" y="831.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (27 samples, 0.02%)</title><rect x="42.9600%" y="805" width="0.0185%" height="15" fill="rgb(248,207,23)" fg:x="62716" fg:w="27"/><text x="43.2100%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (44 samples, 0.03%)</title><rect x="42.9593%" y="869" width="0.0301%" height="15" fill="rgb(214,186,4)" fg:x="62715" fg:w="44"/><text x="43.2093%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (44 samples, 0.03%)</title><rect x="42.9593%" y="853" width="0.0301%" height="15" fill="rgb(220,133,22)" fg:x="62715" fg:w="44"/><text x="43.2093%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (44 samples, 0.03%)</title><rect x="42.9593%" y="837" width="0.0301%" height="15" fill="rgb(239,134,19)" fg:x="62715" fg:w="44"/><text x="43.2093%" y="847.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (16 samples, 0.01%)</title><rect x="42.9785%" y="821" width="0.0110%" height="15" fill="rgb(250,140,9)" fg:x="62743" fg:w="16"/><text x="43.2285%" y="831.50"></text></g><g><title>G1CodeRootSet::nmethods_do (16 samples, 0.01%)</title><rect x="42.9785%" y="805" width="0.0110%" height="15" fill="rgb(225,59,14)" fg:x="62743" fg:w="16"/><text x="43.2285%" y="815.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (35 samples, 0.02%)</title><rect x="43.0011%" y="773" width="0.0240%" height="15" fill="rgb(214,152,51)" fg:x="62776" fg:w="35"/><text x="43.2511%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (30 samples, 0.02%)</title><rect x="43.0045%" y="757" width="0.0205%" height="15" fill="rgb(251,227,43)" fg:x="62781" fg:w="30"/><text x="43.2545%" y="767.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (53 samples, 0.04%)</title><rect x="42.9894%" y="837" width="0.0363%" height="15" fill="rgb(241,96,17)" fg:x="62759" fg:w="53"/><text x="43.2394%" y="847.50"></text></g><g><title>G1CLDScanClosure::do_cld (52 samples, 0.04%)</title><rect x="42.9901%" y="821" width="0.0356%" height="15" fill="rgb(234,198,43)" fg:x="62760" fg:w="52"/><text x="43.2401%" y="831.50"></text></g><g><title>ClassLoaderData::oops_do (52 samples, 0.04%)</title><rect x="42.9901%" y="805" width="0.0356%" height="15" fill="rgb(220,108,29)" fg:x="62760" fg:w="52"/><text x="43.2401%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (47 samples, 0.03%)</title><rect x="42.9936%" y="789" width="0.0322%" height="15" fill="rgb(226,163,33)" fg:x="62765" fg:w="47"/><text x="43.2436%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (78 samples, 0.05%)</title><rect x="42.9894%" y="853" width="0.0534%" height="15" fill="rgb(205,194,45)" fg:x="62759" fg:w="78"/><text x="43.2394%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (25 samples, 0.02%)</title><rect x="43.0257%" y="837" width="0.0171%" height="15" fill="rgb(206,143,44)" fg:x="62812" fg:w="25"/><text x="43.2757%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (25 samples, 0.02%)</title><rect x="43.0257%" y="821" width="0.0171%" height="15" fill="rgb(236,136,36)" fg:x="62812" fg:w="25"/><text x="43.2757%" y="831.50"></text></g><g><title>JavaThread::oops_do (25 samples, 0.02%)</title><rect x="43.0257%" y="805" width="0.0171%" height="15" fill="rgb(249,172,42)" fg:x="62812" fg:w="25"/><text x="43.2757%" y="815.50"></text></g><g><title>G1ParTask::work (202 samples, 0.14%)</title><rect x="42.9155%" y="885" width="0.1384%" height="15" fill="rgb(216,139,23)" fg:x="62651" fg:w="202"/><text x="43.1655%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (94 samples, 0.06%)</title><rect x="42.9894%" y="869" width="0.0644%" height="15" fill="rgb(207,166,20)" fg:x="62759" fg:w="94"/><text x="43.2394%" y="879.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (15 samples, 0.01%)</title><rect x="43.0436%" y="853" width="0.0103%" height="15" fill="rgb(210,209,22)" fg:x="62838" fg:w="15"/><text x="43.2936%" y="863.50"></text></g><g><title>G1STWRefProcTaskProxy::work (34 samples, 0.02%)</title><rect x="43.0627%" y="885" width="0.0233%" height="15" fill="rgb(232,118,20)" fg:x="62866" fg:w="34"/><text x="43.3127%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (34 samples, 0.02%)</title><rect x="43.0627%" y="869" width="0.0233%" height="15" fill="rgb(238,113,42)" fg:x="62866" fg:w="34"/><text x="43.3127%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (34 samples, 0.02%)</title><rect x="43.0627%" y="853" width="0.0233%" height="15" fill="rgb(231,42,5)" fg:x="62866" fg:w="34"/><text x="43.3127%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (34 samples, 0.02%)</title><rect x="43.0627%" y="837" width="0.0233%" height="15" fill="rgb(243,166,24)" fg:x="62866" fg:w="34"/><text x="43.3127%" y="847.50"></text></g><g><title>SpinPause (34 samples, 0.02%)</title><rect x="43.0627%" y="821" width="0.0233%" height="15" fill="rgb(237,226,12)" fg:x="62866" fg:w="34"/><text x="43.3127%" y="831.50"></text></g><g><title>finish_task_switch (47 samples, 0.03%)</title><rect x="43.1025%" y="677" width="0.0322%" height="15" fill="rgb(229,133,24)" fg:x="62924" fg:w="47"/><text x="43.3525%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.03%)</title><rect x="43.1045%" y="661" width="0.0301%" height="15" fill="rgb(238,33,43)" fg:x="62927" fg:w="44"/><text x="43.3545%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.03%)</title><rect x="43.1052%" y="645" width="0.0295%" height="15" fill="rgb(227,59,38)" fg:x="62928" fg:w="43"/><text x="43.3552%" y="655.50"></text></g><g><title>native_write_msr (43 samples, 0.03%)</title><rect x="43.1052%" y="629" width="0.0295%" height="15" fill="rgb(230,97,0)" fg:x="62928" fg:w="43"/><text x="43.3552%" y="639.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.04%)</title><rect x="43.0997%" y="725" width="0.0390%" height="15" fill="rgb(250,173,50)" fg:x="62920" fg:w="57"/><text x="43.3497%" y="735.50"></text></g><g><title>schedule (56 samples, 0.04%)</title><rect x="43.1004%" y="709" width="0.0384%" height="15" fill="rgb(240,15,50)" fg:x="62921" fg:w="56"/><text x="43.3504%" y="719.50"></text></g><g><title>__schedule (55 samples, 0.04%)</title><rect x="43.1011%" y="693" width="0.0377%" height="15" fill="rgb(221,93,22)" fg:x="62922" fg:w="55"/><text x="43.3511%" y="703.50"></text></g><g><title>do_syscall_64 (61 samples, 0.04%)</title><rect x="43.0977%" y="789" width="0.0418%" height="15" fill="rgb(245,180,53)" fg:x="62917" fg:w="61"/><text x="43.3477%" y="799.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.04%)</title><rect x="43.0977%" y="773" width="0.0418%" height="15" fill="rgb(231,88,51)" fg:x="62917" fg:w="61"/><text x="43.3477%" y="783.50"></text></g><g><title>do_futex (61 samples, 0.04%)</title><rect x="43.0977%" y="757" width="0.0418%" height="15" fill="rgb(240,58,21)" fg:x="62917" fg:w="61"/><text x="43.3477%" y="767.50"></text></g><g><title>futex_wait (59 samples, 0.04%)</title><rect x="43.0990%" y="741" width="0.0404%" height="15" fill="rgb(237,21,10)" fg:x="62919" fg:w="59"/><text x="43.3490%" y="751.50"></text></g><g><title>GC_Thread#2 (354 samples, 0.24%)</title><rect x="42.8990%" y="981" width="0.2425%" height="15" fill="rgb(218,43,11)" fg:x="62627" fg:w="354"/><text x="43.1490%" y="991.50"></text></g><g><title>__GI___clone (348 samples, 0.24%)</title><rect x="42.9031%" y="965" width="0.2384%" height="15" fill="rgb(218,221,29)" fg:x="62633" fg:w="348"/><text x="43.1531%" y="975.50"></text></g><g><title>start_thread (348 samples, 0.24%)</title><rect x="42.9031%" y="949" width="0.2384%" height="15" fill="rgb(214,118,42)" fg:x="62633" fg:w="348"/><text x="43.1531%" y="959.50"></text></g><g><title>thread_native_entry (348 samples, 0.24%)</title><rect x="42.9031%" y="933" width="0.2384%" height="15" fill="rgb(251,200,26)" fg:x="62633" fg:w="348"/><text x="43.1531%" y="943.50"></text></g><g><title>Thread::call_run (348 samples, 0.24%)</title><rect x="42.9031%" y="917" width="0.2384%" height="15" fill="rgb(237,101,39)" fg:x="62633" fg:w="348"/><text x="43.1531%" y="927.50"></text></g><g><title>GangWorker::loop (348 samples, 0.24%)</title><rect x="42.9031%" y="901" width="0.2384%" height="15" fill="rgb(251,117,11)" fg:x="62633" fg:w="348"/><text x="43.1531%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (64 samples, 0.04%)</title><rect x="43.0977%" y="885" width="0.0438%" height="15" fill="rgb(216,223,23)" fg:x="62917" fg:w="64"/><text x="43.3477%" y="895.50"></text></g><g><title>PosixSemaphore::wait (64 samples, 0.04%)</title><rect x="43.0977%" y="869" width="0.0438%" height="15" fill="rgb(251,54,12)" fg:x="62917" fg:w="64"/><text x="43.3477%" y="879.50"></text></g><g><title>__new_sem_wait_slow (64 samples, 0.04%)</title><rect x="43.0977%" y="853" width="0.0438%" height="15" fill="rgb(254,176,54)" fg:x="62917" fg:w="64"/><text x="43.3477%" y="863.50"></text></g><g><title>do_futex_wait (64 samples, 0.04%)</title><rect x="43.0977%" y="837" width="0.0438%" height="15" fill="rgb(210,32,8)" fg:x="62917" fg:w="64"/><text x="43.3477%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (64 samples, 0.04%)</title><rect x="43.0977%" y="821" width="0.0438%" height="15" fill="rgb(235,52,38)" fg:x="62917" fg:w="64"/><text x="43.3477%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.04%)</title><rect x="43.0977%" y="805" width="0.0438%" height="15" fill="rgb(231,4,44)" fg:x="62917" fg:w="64"/><text x="43.3477%" y="815.50"></text></g><g><title>G1CMRemarkTask::work (47 samples, 0.03%)</title><rect x="43.1490%" y="885" width="0.0322%" height="15" fill="rgb(249,2,32)" fg:x="62992" fg:w="47"/><text x="43.3990%" y="895.50"></text></g><g><title>G1CMTask::do_marking_step (47 samples, 0.03%)</title><rect x="43.1490%" y="869" width="0.0322%" height="15" fill="rgb(224,65,26)" fg:x="62992" fg:w="47"/><text x="43.3990%" y="879.50"></text></g><g><title>SpinPause (46 samples, 0.03%)</title><rect x="43.1497%" y="853" width="0.0315%" height="15" fill="rgb(250,73,40)" fg:x="62993" fg:w="46"/><text x="43.3997%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue (20 samples, 0.01%)</title><rect x="43.1874%" y="853" width="0.0137%" height="15" fill="rgb(253,177,16)" fg:x="63048" fg:w="20"/><text x="43.4374%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (48 samples, 0.03%)</title><rect x="43.1812%" y="869" width="0.0329%" height="15" fill="rgb(217,32,34)" fg:x="63039" fg:w="48"/><text x="43.4312%" y="879.50"></text></g><g><title>SpinPause (17 samples, 0.01%)</title><rect x="43.2025%" y="853" width="0.0116%" height="15" fill="rgb(212,7,10)" fg:x="63070" fg:w="17"/><text x="43.4525%" y="863.50"></text></g><g><title>G1RemSet::scan_rem_set (19 samples, 0.01%)</title><rect x="43.2141%" y="869" width="0.0130%" height="15" fill="rgb(245,89,8)" fg:x="63087" fg:w="19"/><text x="43.4641%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (19 samples, 0.01%)</title><rect x="43.2141%" y="853" width="0.0130%" height="15" fill="rgb(237,16,53)" fg:x="63087" fg:w="19"/><text x="43.4641%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (19 samples, 0.01%)</title><rect x="43.2141%" y="837" width="0.0130%" height="15" fill="rgb(250,204,30)" fg:x="63087" fg:w="19"/><text x="43.4641%" y="847.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (17 samples, 0.01%)</title><rect x="43.2271%" y="853" width="0.0116%" height="15" fill="rgb(208,77,27)" fg:x="63106" fg:w="17"/><text x="43.4771%" y="863.50"></text></g><g><title>G1CLDScanClosure::do_cld (17 samples, 0.01%)</title><rect x="43.2271%" y="837" width="0.0116%" height="15" fill="rgb(250,204,28)" fg:x="63106" fg:w="17"/><text x="43.4771%" y="847.50"></text></g><g><title>ClassLoaderData::oops_do (17 samples, 0.01%)</title><rect x="43.2271%" y="821" width="0.0116%" height="15" fill="rgb(244,63,21)" fg:x="63106" fg:w="17"/><text x="43.4771%" y="831.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (28 samples, 0.02%)</title><rect x="43.2395%" y="837" width="0.0192%" height="15" fill="rgb(236,85,44)" fg:x="63124" fg:w="28"/><text x="43.4895%" y="847.50"></text></g><g><title>G1CLDScanClosure::do_cld (27 samples, 0.02%)</title><rect x="43.2402%" y="821" width="0.0185%" height="15" fill="rgb(215,98,4)" fg:x="63125" fg:w="27"/><text x="43.4902%" y="831.50"></text></g><g><title>ClassLoaderData::oops_do (27 samples, 0.02%)</title><rect x="43.2402%" y="805" width="0.0185%" height="15" fill="rgb(235,38,11)" fg:x="63125" fg:w="27"/><text x="43.4902%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (19 samples, 0.01%)</title><rect x="43.2456%" y="789" width="0.0130%" height="15" fill="rgb(254,186,25)" fg:x="63133" fg:w="19"/><text x="43.4956%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (16 samples, 0.01%)</title><rect x="43.2477%" y="773" width="0.0110%" height="15" fill="rgb(225,55,31)" fg:x="63136" fg:w="16"/><text x="43.4977%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (15 samples, 0.01%)</title><rect x="43.2484%" y="757" width="0.0103%" height="15" fill="rgb(211,15,21)" fg:x="63137" fg:w="15"/><text x="43.4984%" y="767.50"></text></g><g><title>HandleArea::oops_do (20 samples, 0.01%)</title><rect x="43.2586%" y="789" width="0.0137%" height="15" fill="rgb(215,187,41)" fg:x="63152" fg:w="20"/><text x="43.5086%" y="799.50"></text></g><g><title>InterpreterOopMap::iterate_oop (27 samples, 0.02%)</title><rect x="43.2737%" y="773" width="0.0185%" height="15" fill="rgb(248,69,32)" fg:x="63174" fg:w="27"/><text x="43.5237%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (27 samples, 0.02%)</title><rect x="43.2737%" y="757" width="0.0185%" height="15" fill="rgb(252,102,52)" fg:x="63174" fg:w="27"/><text x="43.5237%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (23 samples, 0.02%)</title><rect x="43.2765%" y="741" width="0.0158%" height="15" fill="rgb(253,140,32)" fg:x="63178" fg:w="23"/><text x="43.5265%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (16 samples, 0.01%)</title><rect x="43.2813%" y="725" width="0.0110%" height="15" fill="rgb(216,56,42)" fg:x="63185" fg:w="16"/><text x="43.5313%" y="735.50"></text></g><g><title>G1RootProcessor::process_java_roots (79 samples, 0.05%)</title><rect x="43.2395%" y="853" width="0.0541%" height="15" fill="rgb(216,184,14)" fg:x="63124" fg:w="79"/><text x="43.4895%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (51 samples, 0.03%)</title><rect x="43.2586%" y="837" width="0.0349%" height="15" fill="rgb(237,187,27)" fg:x="63152" fg:w="51"/><text x="43.5086%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (51 samples, 0.03%)</title><rect x="43.2586%" y="821" width="0.0349%" height="15" fill="rgb(219,65,3)" fg:x="63152" fg:w="51"/><text x="43.5086%" y="831.50"></text></g><g><title>JavaThread::oops_do (51 samples, 0.03%)</title><rect x="43.2586%" y="805" width="0.0349%" height="15" fill="rgb(245,83,25)" fg:x="63152" fg:w="51"/><text x="43.5086%" y="815.50"></text></g><g><title>frame::oops_interpreted_do (29 samples, 0.02%)</title><rect x="43.2737%" y="789" width="0.0199%" height="15" fill="rgb(214,205,45)" fg:x="63174" fg:w="29"/><text x="43.5237%" y="799.50"></text></g><g><title>G1ParTask::work (178 samples, 0.12%)</title><rect x="43.1812%" y="885" width="0.1219%" height="15" fill="rgb(241,20,18)" fg:x="63039" fg:w="178"/><text x="43.4312%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (111 samples, 0.08%)</title><rect x="43.2271%" y="869" width="0.0760%" height="15" fill="rgb(232,163,23)" fg:x="63106" fg:w="111"/><text x="43.4771%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (24 samples, 0.02%)</title><rect x="43.3114%" y="885" width="0.0164%" height="15" fill="rgb(214,5,46)" fg:x="63229" fg:w="24"/><text x="43.5614%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (24 samples, 0.02%)</title><rect x="43.3114%" y="869" width="0.0164%" height="15" fill="rgb(229,78,17)" fg:x="63229" fg:w="24"/><text x="43.5614%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (24 samples, 0.02%)</title><rect x="43.3114%" y="853" width="0.0164%" height="15" fill="rgb(248,89,10)" fg:x="63229" fg:w="24"/><text x="43.5614%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (24 samples, 0.02%)</title><rect x="43.3114%" y="837" width="0.0164%" height="15" fill="rgb(248,54,15)" fg:x="63229" fg:w="24"/><text x="43.5614%" y="847.50"></text></g><g><title>SpinPause (24 samples, 0.02%)</title><rect x="43.3114%" y="821" width="0.0164%" height="15" fill="rgb(223,116,6)" fg:x="63229" fg:w="24"/><text x="43.5614%" y="831.50"></text></g><g><title>ParallelSPCleanupTask::work (18 samples, 0.01%)</title><rect x="43.3278%" y="885" width="0.0123%" height="15" fill="rgb(205,125,38)" fg:x="63253" fg:w="18"/><text x="43.5778%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.05%)</title><rect x="43.3518%" y="661" width="0.0514%" height="15" fill="rgb(251,78,38)" fg:x="63288" fg:w="75"/><text x="43.6018%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.05%)</title><rect x="43.3518%" y="645" width="0.0514%" height="15" fill="rgb(253,78,28)" fg:x="63288" fg:w="75"/><text x="43.6018%" y="655.50"></text></g><g><title>native_write_msr (75 samples, 0.05%)</title><rect x="43.3518%" y="629" width="0.0514%" height="15" fill="rgb(209,120,3)" fg:x="63288" fg:w="75"/><text x="43.6018%" y="639.50"></text></g><g><title>finish_task_switch (80 samples, 0.05%)</title><rect x="43.3491%" y="677" width="0.0548%" height="15" fill="rgb(238,229,9)" fg:x="63284" fg:w="80"/><text x="43.5991%" y="687.50"></text></g><g><title>do_syscall_64 (99 samples, 0.07%)</title><rect x="43.3429%" y="789" width="0.0678%" height="15" fill="rgb(253,159,18)" fg:x="63275" fg:w="99"/><text x="43.5929%" y="799.50"></text></g><g><title>__x64_sys_futex (99 samples, 0.07%)</title><rect x="43.3429%" y="773" width="0.0678%" height="15" fill="rgb(244,42,34)" fg:x="63275" fg:w="99"/><text x="43.5929%" y="783.50"></text></g><g><title>do_futex (99 samples, 0.07%)</title><rect x="43.3429%" y="757" width="0.0678%" height="15" fill="rgb(224,8,7)" fg:x="63275" fg:w="99"/><text x="43.5929%" y="767.50"></text></g><g><title>futex_wait (98 samples, 0.07%)</title><rect x="43.3436%" y="741" width="0.0671%" height="15" fill="rgb(210,201,45)" fg:x="63276" fg:w="98"/><text x="43.5936%" y="751.50"></text></g><g><title>futex_wait_queue_me (98 samples, 0.07%)</title><rect x="43.3436%" y="725" width="0.0671%" height="15" fill="rgb(252,185,21)" fg:x="63276" fg:w="98"/><text x="43.5936%" y="735.50"></text></g><g><title>schedule (96 samples, 0.07%)</title><rect x="43.3450%" y="709" width="0.0658%" height="15" fill="rgb(223,131,1)" fg:x="63278" fg:w="96"/><text x="43.5950%" y="719.50"></text></g><g><title>__schedule (96 samples, 0.07%)</title><rect x="43.3450%" y="693" width="0.0658%" height="15" fill="rgb(245,141,16)" fg:x="63278" fg:w="96"/><text x="43.5950%" y="703.50"></text></g><g><title>GC_Thread#3 (397 samples, 0.27%)</title><rect x="43.1415%" y="981" width="0.2719%" height="15" fill="rgb(229,55,45)" fg:x="62981" fg:w="397"/><text x="43.3915%" y="991.50"></text></g><g><title>__GI___clone (386 samples, 0.26%)</title><rect x="43.1490%" y="965" width="0.2644%" height="15" fill="rgb(208,92,15)" fg:x="62992" fg:w="386"/><text x="43.3990%" y="975.50"></text></g><g><title>start_thread (386 samples, 0.26%)</title><rect x="43.1490%" y="949" width="0.2644%" height="15" fill="rgb(234,185,47)" fg:x="62992" fg:w="386"/><text x="43.3990%" y="959.50"></text></g><g><title>thread_native_entry (386 samples, 0.26%)</title><rect x="43.1490%" y="933" width="0.2644%" height="15" fill="rgb(253,104,50)" fg:x="62992" fg:w="386"/><text x="43.3990%" y="943.50"></text></g><g><title>Thread::call_run (386 samples, 0.26%)</title><rect x="43.1490%" y="917" width="0.2644%" height="15" fill="rgb(205,70,7)" fg:x="62992" fg:w="386"/><text x="43.3990%" y="927.50"></text></g><g><title>GangWorker::loop (386 samples, 0.26%)</title><rect x="43.1490%" y="901" width="0.2644%" height="15" fill="rgb(240,178,43)" fg:x="62992" fg:w="386"/><text x="43.3990%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (105 samples, 0.07%)</title><rect x="43.3415%" y="885" width="0.0719%" height="15" fill="rgb(214,112,2)" fg:x="63273" fg:w="105"/><text x="43.5915%" y="895.50"></text></g><g><title>PosixSemaphore::wait (105 samples, 0.07%)</title><rect x="43.3415%" y="869" width="0.0719%" height="15" fill="rgb(206,46,17)" fg:x="63273" fg:w="105"/><text x="43.5915%" y="879.50"></text></g><g><title>__new_sem_wait_slow (105 samples, 0.07%)</title><rect x="43.3415%" y="853" width="0.0719%" height="15" fill="rgb(225,220,16)" fg:x="63273" fg:w="105"/><text x="43.5915%" y="863.50"></text></g><g><title>do_futex_wait (104 samples, 0.07%)</title><rect x="43.3422%" y="837" width="0.0712%" height="15" fill="rgb(238,65,40)" fg:x="63274" fg:w="104"/><text x="43.5922%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (104 samples, 0.07%)</title><rect x="43.3422%" y="821" width="0.0712%" height="15" fill="rgb(230,151,21)" fg:x="63274" fg:w="104"/><text x="43.5922%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (103 samples, 0.07%)</title><rect x="43.3429%" y="805" width="0.0706%" height="15" fill="rgb(218,58,49)" fg:x="63275" fg:w="103"/><text x="43.5929%" y="815.50"></text></g><g><title>G1CMTask::do_marking_step (19 samples, 0.01%)</title><rect x="43.4169%" y="869" width="0.0130%" height="15" fill="rgb(219,179,14)" fg:x="63383" fg:w="19"/><text x="43.6669%" y="879.50"></text></g><g><title>SpinPause (19 samples, 0.01%)</title><rect x="43.4169%" y="853" width="0.0130%" height="15" fill="rgb(223,72,1)" fg:x="63383" fg:w="19"/><text x="43.6669%" y="863.50"></text></g><g><title>G1CMRemarkTask::work (20 samples, 0.01%)</title><rect x="43.4169%" y="885" width="0.0137%" height="15" fill="rgb(238,126,10)" fg:x="63383" fg:w="20"/><text x="43.6669%" y="895.50"></text></g><g><title>G1ParScanThreadState::trim_queue (20 samples, 0.01%)</title><rect x="43.4354%" y="853" width="0.0137%" height="15" fill="rgb(224,206,38)" fg:x="63410" fg:w="20"/><text x="43.6854%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (34 samples, 0.02%)</title><rect x="43.4313%" y="869" width="0.0233%" height="15" fill="rgb(212,201,54)" fg:x="63404" fg:w="34"/><text x="43.6813%" y="879.50"></text></g><g><title>G1CodeBlobClosure::do_code_blob (19 samples, 0.01%)</title><rect x="43.4546%" y="789" width="0.0130%" height="15" fill="rgb(218,154,48)" fg:x="63438" fg:w="19"/><text x="43.7046%" y="799.50"></text></g><g><title>nmethod::oops_do (19 samples, 0.01%)</title><rect x="43.4546%" y="773" width="0.0130%" height="15" fill="rgb(232,93,24)" fg:x="63438" fg:w="19"/><text x="43.7046%" y="783.50"></text></g><g><title>G1RemSet::scan_rem_set (21 samples, 0.01%)</title><rect x="43.4546%" y="869" width="0.0144%" height="15" fill="rgb(245,30,21)" fg:x="63438" fg:w="21"/><text x="43.7046%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (21 samples, 0.01%)</title><rect x="43.4546%" y="853" width="0.0144%" height="15" fill="rgb(242,148,29)" fg:x="63438" fg:w="21"/><text x="43.7046%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (21 samples, 0.01%)</title><rect x="43.4546%" y="837" width="0.0144%" height="15" fill="rgb(244,153,54)" fg:x="63438" fg:w="21"/><text x="43.7046%" y="847.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (21 samples, 0.01%)</title><rect x="43.4546%" y="821" width="0.0144%" height="15" fill="rgb(252,87,22)" fg:x="63438" fg:w="21"/><text x="43.7046%" y="831.50"></text></g><g><title>G1CodeRootSet::nmethods_do (21 samples, 0.01%)</title><rect x="43.4546%" y="805" width="0.0144%" height="15" fill="rgb(210,51,29)" fg:x="63438" fg:w="21"/><text x="43.7046%" y="815.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (36 samples, 0.02%)</title><rect x="43.4696%" y="837" width="0.0247%" height="15" fill="rgb(242,136,47)" fg:x="63460" fg:w="36"/><text x="43.7196%" y="847.50"></text></g><g><title>G1CLDScanClosure::do_cld (34 samples, 0.02%)</title><rect x="43.4710%" y="821" width="0.0233%" height="15" fill="rgb(238,68,4)" fg:x="63462" fg:w="34"/><text x="43.7210%" y="831.50"></text></g><g><title>ClassLoaderData::oops_do (34 samples, 0.02%)</title><rect x="43.4710%" y="805" width="0.0233%" height="15" fill="rgb(242,161,30)" fg:x="63462" fg:w="34"/><text x="43.7210%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (25 samples, 0.02%)</title><rect x="43.4772%" y="789" width="0.0171%" height="15" fill="rgb(218,58,44)" fg:x="63471" fg:w="25"/><text x="43.7272%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (21 samples, 0.01%)</title><rect x="43.4799%" y="773" width="0.0144%" height="15" fill="rgb(252,125,32)" fg:x="63475" fg:w="21"/><text x="43.7299%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (19 samples, 0.01%)</title><rect x="43.4813%" y="757" width="0.0130%" height="15" fill="rgb(219,178,0)" fg:x="63477" fg:w="19"/><text x="43.7313%" y="767.50"></text></g><g><title>G1RootProcessor::process_java_roots (42 samples, 0.03%)</title><rect x="43.4696%" y="853" width="0.0288%" height="15" fill="rgb(213,152,7)" fg:x="63460" fg:w="42"/><text x="43.7196%" y="863.50"></text></g><g><title>G1ParTask::work (112 samples, 0.08%)</title><rect x="43.4313%" y="885" width="0.0767%" height="15" fill="rgb(249,109,34)" fg:x="63404" fg:w="112"/><text x="43.6813%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (57 samples, 0.04%)</title><rect x="43.4689%" y="869" width="0.0390%" height="15" fill="rgb(232,96,21)" fg:x="63459" fg:w="57"/><text x="43.7189%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (33 samples, 0.02%)</title><rect x="43.5148%" y="885" width="0.0226%" height="15" fill="rgb(228,27,39)" fg:x="63526" fg:w="33"/><text x="43.7648%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (30 samples, 0.02%)</title><rect x="43.5169%" y="869" width="0.0205%" height="15" fill="rgb(211,182,52)" fg:x="63529" fg:w="30"/><text x="43.7669%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (30 samples, 0.02%)</title><rect x="43.5169%" y="853" width="0.0205%" height="15" fill="rgb(234,178,38)" fg:x="63529" fg:w="30"/><text x="43.7669%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (30 samples, 0.02%)</title><rect x="43.5169%" y="837" width="0.0205%" height="15" fill="rgb(221,111,3)" fg:x="63529" fg:w="30"/><text x="43.7669%" y="847.50"></text></g><g><title>SpinPause (30 samples, 0.02%)</title><rect x="43.5169%" y="821" width="0.0205%" height="15" fill="rgb(228,175,21)" fg:x="63529" fg:w="30"/><text x="43.7669%" y="831.50"></text></g><g><title>ParallelSPCleanupTask::work (22 samples, 0.02%)</title><rect x="43.5381%" y="885" width="0.0151%" height="15" fill="rgb(228,174,43)" fg:x="63560" fg:w="22"/><text x="43.7881%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (19 samples, 0.01%)</title><rect x="43.5402%" y="869" width="0.0130%" height="15" fill="rgb(211,191,0)" fg:x="63563" fg:w="19"/><text x="43.7902%" y="879.50"></text></g><g><title>finish_task_switch (64 samples, 0.04%)</title><rect x="43.5600%" y="677" width="0.0438%" height="15" fill="rgb(253,117,3)" fg:x="63592" fg:w="64"/><text x="43.8100%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.04%)</title><rect x="43.5600%" y="661" width="0.0438%" height="15" fill="rgb(241,127,19)" fg:x="63592" fg:w="64"/><text x="43.8100%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.04%)</title><rect x="43.5600%" y="645" width="0.0438%" height="15" fill="rgb(218,103,12)" fg:x="63592" fg:w="64"/><text x="43.8100%" y="655.50"></text></g><g><title>native_write_msr (63 samples, 0.04%)</title><rect x="43.5607%" y="629" width="0.0432%" height="15" fill="rgb(236,214,43)" fg:x="63593" fg:w="63"/><text x="43.8107%" y="639.50"></text></g><g><title>futex_wait_queue_me (77 samples, 0.05%)</title><rect x="43.5566%" y="725" width="0.0527%" height="15" fill="rgb(244,144,19)" fg:x="63587" fg:w="77"/><text x="43.8066%" y="735.50"></text></g><g><title>schedule (76 samples, 0.05%)</title><rect x="43.5573%" y="709" width="0.0521%" height="15" fill="rgb(246,188,10)" fg:x="63588" fg:w="76"/><text x="43.8073%" y="719.50"></text></g><g><title>__schedule (76 samples, 0.05%)</title><rect x="43.5573%" y="693" width="0.0521%" height="15" fill="rgb(212,193,33)" fg:x="63588" fg:w="76"/><text x="43.8073%" y="703.50"></text></g><g><title>do_syscall_64 (80 samples, 0.05%)</title><rect x="43.5552%" y="789" width="0.0548%" height="15" fill="rgb(241,51,29)" fg:x="63585" fg:w="80"/><text x="43.8052%" y="799.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.05%)</title><rect x="43.5559%" y="773" width="0.0541%" height="15" fill="rgb(211,58,19)" fg:x="63586" fg:w="79"/><text x="43.8059%" y="783.50"></text></g><g><title>do_futex (79 samples, 0.05%)</title><rect x="43.5559%" y="757" width="0.0541%" height="15" fill="rgb(229,111,26)" fg:x="63586" fg:w="79"/><text x="43.8059%" y="767.50"></text></g><g><title>futex_wait (79 samples, 0.05%)</title><rect x="43.5559%" y="741" width="0.0541%" height="15" fill="rgb(213,115,40)" fg:x="63586" fg:w="79"/><text x="43.8059%" y="751.50"></text></g><g><title>GC_Thread#4 (289 samples, 0.20%)</title><rect x="43.4135%" y="981" width="0.1980%" height="15" fill="rgb(209,56,44)" fg:x="63378" fg:w="289"/><text x="43.6635%" y="991.50"></text></g><g><title>__GI___clone (284 samples, 0.19%)</title><rect x="43.4169%" y="965" width="0.1945%" height="15" fill="rgb(230,108,32)" fg:x="63383" fg:w="284"/><text x="43.6669%" y="975.50"></text></g><g><title>start_thread (284 samples, 0.19%)</title><rect x="43.4169%" y="949" width="0.1945%" height="15" fill="rgb(216,165,31)" fg:x="63383" fg:w="284"/><text x="43.6669%" y="959.50"></text></g><g><title>thread_native_entry (284 samples, 0.19%)</title><rect x="43.4169%" y="933" width="0.1945%" height="15" fill="rgb(218,122,21)" fg:x="63383" fg:w="284"/><text x="43.6669%" y="943.50"></text></g><g><title>Thread::call_run (284 samples, 0.19%)</title><rect x="43.4169%" y="917" width="0.1945%" height="15" fill="rgb(223,224,47)" fg:x="63383" fg:w="284"/><text x="43.6669%" y="927.50"></text></g><g><title>GangWorker::loop (284 samples, 0.19%)</title><rect x="43.4169%" y="901" width="0.1945%" height="15" fill="rgb(238,102,44)" fg:x="63383" fg:w="284"/><text x="43.6669%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (84 samples, 0.06%)</title><rect x="43.5539%" y="885" width="0.0575%" height="15" fill="rgb(236,46,40)" fg:x="63583" fg:w="84"/><text x="43.8039%" y="895.50"></text></g><g><title>PosixSemaphore::wait (84 samples, 0.06%)</title><rect x="43.5539%" y="869" width="0.0575%" height="15" fill="rgb(247,202,50)" fg:x="63583" fg:w="84"/><text x="43.8039%" y="879.50"></text></g><g><title>__new_sem_wait_slow (84 samples, 0.06%)</title><rect x="43.5539%" y="853" width="0.0575%" height="15" fill="rgb(209,99,20)" fg:x="63583" fg:w="84"/><text x="43.8039%" y="863.50"></text></g><g><title>do_futex_wait (83 samples, 0.06%)</title><rect x="43.5546%" y="837" width="0.0569%" height="15" fill="rgb(252,27,34)" fg:x="63584" fg:w="83"/><text x="43.8046%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (83 samples, 0.06%)</title><rect x="43.5546%" y="821" width="0.0569%" height="15" fill="rgb(215,206,23)" fg:x="63584" fg:w="83"/><text x="43.8046%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.06%)</title><rect x="43.5552%" y="805" width="0.0562%" height="15" fill="rgb(212,135,36)" fg:x="63585" fg:w="82"/><text x="43.8052%" y="815.50"></text></g><g><title>G1CMRemarkTask::work (33 samples, 0.02%)</title><rect x="43.6142%" y="885" width="0.0226%" height="15" fill="rgb(240,189,1)" fg:x="63671" fg:w="33"/><text x="43.8642%" y="895.50"></text></g><g><title>G1CMTask::do_marking_step (33 samples, 0.02%)</title><rect x="43.6142%" y="869" width="0.0226%" height="15" fill="rgb(242,56,20)" fg:x="63671" fg:w="33"/><text x="43.8642%" y="879.50"></text></g><g><title>SpinPause (33 samples, 0.02%)</title><rect x="43.6142%" y="853" width="0.0226%" height="15" fill="rgb(247,132,33)" fg:x="63671" fg:w="33"/><text x="43.8642%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue (48 samples, 0.03%)</title><rect x="43.6381%" y="853" width="0.0329%" height="15" fill="rgb(208,149,11)" fg:x="63706" fg:w="48"/><text x="43.8881%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (30 samples, 0.02%)</title><rect x="43.6505%" y="837" width="0.0205%" height="15" fill="rgb(211,33,11)" fg:x="63724" fg:w="30"/><text x="43.9005%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (70 samples, 0.05%)</title><rect x="43.6368%" y="869" width="0.0479%" height="15" fill="rgb(221,29,38)" fg:x="63704" fg:w="70"/><text x="43.8868%" y="879.50"></text></g><g><title>SpinPause (19 samples, 0.01%)</title><rect x="43.6717%" y="853" width="0.0130%" height="15" fill="rgb(206,182,49)" fg:x="63755" fg:w="19"/><text x="43.9217%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="43.6854%" y="789" width="0.0137%" height="15" fill="rgb(216,140,1)" fg:x="63775" fg:w="20"/><text x="43.9354%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (16 samples, 0.01%)</title><rect x="43.6881%" y="773" width="0.0110%" height="15" fill="rgb(232,57,40)" fg:x="63779" fg:w="16"/><text x="43.9381%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (15 samples, 0.01%)</title><rect x="43.6888%" y="757" width="0.0103%" height="15" fill="rgb(224,186,18)" fg:x="63780" fg:w="15"/><text x="43.9388%" y="767.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (23 samples, 0.02%)</title><rect x="43.6854%" y="869" width="0.0158%" height="15" fill="rgb(215,121,11)" fg:x="63775" fg:w="23"/><text x="43.9354%" y="879.50"></text></g><g><title>G1RemSet::update_rem_set (23 samples, 0.02%)</title><rect x="43.6854%" y="853" width="0.0158%" height="15" fill="rgb(245,147,10)" fg:x="63775" fg:w="23"/><text x="43.9354%" y="863.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (23 samples, 0.02%)</title><rect x="43.6854%" y="837" width="0.0158%" height="15" fill="rgb(238,153,13)" fg:x="63775" fg:w="23"/><text x="43.9354%" y="847.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (23 samples, 0.02%)</title><rect x="43.6854%" y="821" width="0.0158%" height="15" fill="rgb(233,108,0)" fg:x="63775" fg:w="23"/><text x="43.9354%" y="831.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (23 samples, 0.02%)</title><rect x="43.6854%" y="805" width="0.0158%" height="15" fill="rgb(212,157,17)" fg:x="63775" fg:w="23"/><text x="43.9354%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (19 samples, 0.01%)</title><rect x="43.7018%" y="789" width="0.0130%" height="15" fill="rgb(225,213,38)" fg:x="63799" fg:w="19"/><text x="43.9518%" y="799.50"></text></g><g><title>G1RemSet::scan_rem_set (21 samples, 0.01%)</title><rect x="43.7012%" y="869" width="0.0144%" height="15" fill="rgb(248,16,11)" fg:x="63798" fg:w="21"/><text x="43.9512%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (21 samples, 0.01%)</title><rect x="43.7012%" y="853" width="0.0144%" height="15" fill="rgb(241,33,4)" fg:x="63798" fg:w="21"/><text x="43.9512%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (21 samples, 0.01%)</title><rect x="43.7012%" y="837" width="0.0144%" height="15" fill="rgb(222,26,43)" fg:x="63798" fg:w="21"/><text x="43.9512%" y="847.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (21 samples, 0.01%)</title><rect x="43.7012%" y="821" width="0.0144%" height="15" fill="rgb(243,29,36)" fg:x="63798" fg:w="21"/><text x="43.9512%" y="831.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (20 samples, 0.01%)</title><rect x="43.7018%" y="805" width="0.0137%" height="15" fill="rgb(241,9,27)" fg:x="63799" fg:w="20"/><text x="43.9518%" y="815.50"></text></g><g><title>InterpreterOopMap::iterate_oop (40 samples, 0.03%)</title><rect x="43.7313%" y="773" width="0.0274%" height="15" fill="rgb(205,117,26)" fg:x="63842" fg:w="40"/><text x="43.9813%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (37 samples, 0.03%)</title><rect x="43.7333%" y="757" width="0.0253%" height="15" fill="rgb(209,80,39)" fg:x="63845" fg:w="37"/><text x="43.9833%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (29 samples, 0.02%)</title><rect x="43.7388%" y="741" width="0.0199%" height="15" fill="rgb(239,155,6)" fg:x="63853" fg:w="29"/><text x="43.9888%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (24 samples, 0.02%)</title><rect x="43.7423%" y="725" width="0.0164%" height="15" fill="rgb(212,104,12)" fg:x="63858" fg:w="24"/><text x="43.9923%" y="735.50"></text></g><g><title>frame::oops_interpreted_do (43 samples, 0.03%)</title><rect x="43.7313%" y="789" width="0.0295%" height="15" fill="rgb(234,204,3)" fg:x="63842" fg:w="43"/><text x="43.9813%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (64 samples, 0.04%)</title><rect x="43.7176%" y="853" width="0.0438%" height="15" fill="rgb(251,218,7)" fg:x="63822" fg:w="64"/><text x="43.9676%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (64 samples, 0.04%)</title><rect x="43.7176%" y="837" width="0.0438%" height="15" fill="rgb(221,81,32)" fg:x="63822" fg:w="64"/><text x="43.9676%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (64 samples, 0.04%)</title><rect x="43.7176%" y="821" width="0.0438%" height="15" fill="rgb(214,152,26)" fg:x="63822" fg:w="64"/><text x="43.9676%" y="831.50"></text></g><g><title>JavaThread::oops_do (64 samples, 0.04%)</title><rect x="43.7176%" y="805" width="0.0438%" height="15" fill="rgb(223,22,3)" fg:x="63822" fg:w="64"/><text x="43.9676%" y="815.50"></text></g><g><title>G1ParTask::work (192 samples, 0.13%)</title><rect x="43.6368%" y="885" width="0.1315%" height="15" fill="rgb(207,174,7)" fg:x="63704" fg:w="192"/><text x="43.8868%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (77 samples, 0.05%)</title><rect x="43.7155%" y="869" width="0.0527%" height="15" fill="rgb(224,19,52)" fg:x="63819" fg:w="77"/><text x="43.9655%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (24 samples, 0.02%)</title><rect x="43.7772%" y="885" width="0.0164%" height="15" fill="rgb(228,24,14)" fg:x="63909" fg:w="24"/><text x="44.0272%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (22 samples, 0.02%)</title><rect x="43.7786%" y="869" width="0.0151%" height="15" fill="rgb(230,153,43)" fg:x="63911" fg:w="22"/><text x="44.0286%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (22 samples, 0.02%)</title><rect x="43.7786%" y="853" width="0.0151%" height="15" fill="rgb(231,106,12)" fg:x="63911" fg:w="22"/><text x="44.0286%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (22 samples, 0.02%)</title><rect x="43.7786%" y="837" width="0.0151%" height="15" fill="rgb(215,92,2)" fg:x="63911" fg:w="22"/><text x="44.0286%" y="847.50"></text></g><g><title>SpinPause (21 samples, 0.01%)</title><rect x="43.7792%" y="821" width="0.0144%" height="15" fill="rgb(249,143,25)" fg:x="63912" fg:w="21"/><text x="44.0292%" y="831.50"></text></g><g><title>ParallelSPCleanupTask::work (22 samples, 0.02%)</title><rect x="43.7950%" y="885" width="0.0151%" height="15" fill="rgb(252,7,35)" fg:x="63935" fg:w="22"/><text x="44.0450%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (20 samples, 0.01%)</title><rect x="43.7964%" y="869" width="0.0137%" height="15" fill="rgb(216,69,40)" fg:x="63937" fg:w="20"/><text x="44.0464%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.07%)</title><rect x="43.8183%" y="661" width="0.0664%" height="15" fill="rgb(240,36,33)" fg:x="63969" fg:w="97"/><text x="44.0683%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (97 samples, 0.07%)</title><rect x="43.8183%" y="645" width="0.0664%" height="15" fill="rgb(231,128,14)" fg:x="63969" fg:w="97"/><text x="44.0683%" y="655.50"></text></g><g><title>native_write_msr (94 samples, 0.06%)</title><rect x="43.8203%" y="629" width="0.0644%" height="15" fill="rgb(245,143,14)" fg:x="63972" fg:w="94"/><text x="44.0703%" y="639.50"></text></g><g><title>finish_task_switch (101 samples, 0.07%)</title><rect x="43.8162%" y="677" width="0.0692%" height="15" fill="rgb(222,130,28)" fg:x="63966" fg:w="101"/><text x="44.0662%" y="687.50"></text></g><g><title>do_syscall_64 (117 samples, 0.08%)</title><rect x="43.8101%" y="789" width="0.0801%" height="15" fill="rgb(212,10,48)" fg:x="63957" fg:w="117"/><text x="44.0601%" y="799.50"></text></g><g><title>__x64_sys_futex (117 samples, 0.08%)</title><rect x="43.8101%" y="773" width="0.0801%" height="15" fill="rgb(254,118,45)" fg:x="63957" fg:w="117"/><text x="44.0601%" y="783.50"></text></g><g><title>do_futex (116 samples, 0.08%)</title><rect x="43.8108%" y="757" width="0.0795%" height="15" fill="rgb(228,6,45)" fg:x="63958" fg:w="116"/><text x="44.0608%" y="767.50"></text></g><g><title>futex_wait (116 samples, 0.08%)</title><rect x="43.8108%" y="741" width="0.0795%" height="15" fill="rgb(241,18,35)" fg:x="63958" fg:w="116"/><text x="44.0608%" y="751.50"></text></g><g><title>futex_wait_queue_me (116 samples, 0.08%)</title><rect x="43.8108%" y="725" width="0.0795%" height="15" fill="rgb(227,214,53)" fg:x="63958" fg:w="116"/><text x="44.0608%" y="735.50"></text></g><g><title>schedule (115 samples, 0.08%)</title><rect x="43.8114%" y="709" width="0.0788%" height="15" fill="rgb(224,107,51)" fg:x="63959" fg:w="115"/><text x="44.0614%" y="719.50"></text></g><g><title>__schedule (113 samples, 0.08%)</title><rect x="43.8128%" y="693" width="0.0774%" height="15" fill="rgb(248,60,28)" fg:x="63961" fg:w="113"/><text x="44.0628%" y="703.50"></text></g><g><title>GC_Thread#5 (413 samples, 0.28%)</title><rect x="43.6114%" y="981" width="0.2829%" height="15" fill="rgb(249,101,23)" fg:x="63667" fg:w="413"/><text x="43.8614%" y="991.50"></text></g><g><title>__GI___clone (409 samples, 0.28%)</title><rect x="43.6142%" y="965" width="0.2802%" height="15" fill="rgb(228,51,19)" fg:x="63671" fg:w="409"/><text x="43.8642%" y="975.50"></text></g><g><title>start_thread (409 samples, 0.28%)</title><rect x="43.6142%" y="949" width="0.2802%" height="15" fill="rgb(213,20,6)" fg:x="63671" fg:w="409"/><text x="43.8642%" y="959.50"></text></g><g><title>thread_native_entry (409 samples, 0.28%)</title><rect x="43.6142%" y="933" width="0.2802%" height="15" fill="rgb(212,124,10)" fg:x="63671" fg:w="409"/><text x="43.8642%" y="943.50"></text></g><g><title>Thread::call_run (409 samples, 0.28%)</title><rect x="43.6142%" y="917" width="0.2802%" height="15" fill="rgb(248,3,40)" fg:x="63671" fg:w="409"/><text x="43.8642%" y="927.50"></text></g><g><title>GangWorker::loop (409 samples, 0.28%)</title><rect x="43.6142%" y="901" width="0.2802%" height="15" fill="rgb(223,178,23)" fg:x="63671" fg:w="409"/><text x="43.8642%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (123 samples, 0.08%)</title><rect x="43.8101%" y="885" width="0.0843%" height="15" fill="rgb(240,132,45)" fg:x="63957" fg:w="123"/><text x="44.0601%" y="895.50"></text></g><g><title>PosixSemaphore::wait (123 samples, 0.08%)</title><rect x="43.8101%" y="869" width="0.0843%" height="15" fill="rgb(245,164,36)" fg:x="63957" fg:w="123"/><text x="44.0601%" y="879.50"></text></g><g><title>__new_sem_wait_slow (123 samples, 0.08%)</title><rect x="43.8101%" y="853" width="0.0843%" height="15" fill="rgb(231,188,53)" fg:x="63957" fg:w="123"/><text x="44.0601%" y="863.50"></text></g><g><title>do_futex_wait (123 samples, 0.08%)</title><rect x="43.8101%" y="837" width="0.0843%" height="15" fill="rgb(237,198,39)" fg:x="63957" fg:w="123"/><text x="44.0601%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (123 samples, 0.08%)</title><rect x="43.8101%" y="821" width="0.0843%" height="15" fill="rgb(223,120,35)" fg:x="63957" fg:w="123"/><text x="44.0601%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.08%)</title><rect x="43.8101%" y="805" width="0.0843%" height="15" fill="rgb(253,107,49)" fg:x="63957" fg:w="123"/><text x="44.0601%" y="815.50"></text></g><g><title>G1CMRemarkTask::work (43 samples, 0.03%)</title><rect x="43.8977%" y="885" width="0.0295%" height="15" fill="rgb(216,44,31)" fg:x="64085" fg:w="43"/><text x="44.1477%" y="895.50"></text></g><g><title>G1CMTask::do_marking_step (42 samples, 0.03%)</title><rect x="43.8984%" y="869" width="0.0288%" height="15" fill="rgb(253,87,21)" fg:x="64086" fg:w="42"/><text x="44.1484%" y="879.50"></text></g><g><title>SpinPause (42 samples, 0.03%)</title><rect x="43.8984%" y="853" width="0.0288%" height="15" fill="rgb(226,18,2)" fg:x="64086" fg:w="42"/><text x="44.1484%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue (21 samples, 0.01%)</title><rect x="43.9320%" y="853" width="0.0144%" height="15" fill="rgb(216,8,46)" fg:x="64135" fg:w="21"/><text x="44.1820%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (43 samples, 0.03%)</title><rect x="43.9272%" y="869" width="0.0295%" height="15" fill="rgb(226,140,39)" fg:x="64128" fg:w="43"/><text x="44.1772%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (15 samples, 0.01%)</title><rect x="43.9573%" y="789" width="0.0103%" height="15" fill="rgb(221,194,54)" fg:x="64172" fg:w="15"/><text x="44.2073%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (17 samples, 0.01%)</title><rect x="43.9573%" y="869" width="0.0116%" height="15" fill="rgb(213,92,11)" fg:x="64172" fg:w="17"/><text x="44.2073%" y="879.50"></text></g><g><title>G1RemSet::update_rem_set (17 samples, 0.01%)</title><rect x="43.9573%" y="853" width="0.0116%" height="15" fill="rgb(229,162,46)" fg:x="64172" fg:w="17"/><text x="44.2073%" y="863.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (17 samples, 0.01%)</title><rect x="43.9573%" y="837" width="0.0116%" height="15" fill="rgb(214,111,36)" fg:x="64172" fg:w="17"/><text x="44.2073%" y="847.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (17 samples, 0.01%)</title><rect x="43.9573%" y="821" width="0.0116%" height="15" fill="rgb(207,6,21)" fg:x="64172" fg:w="17"/><text x="44.2073%" y="831.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (17 samples, 0.01%)</title><rect x="43.9573%" y="805" width="0.0116%" height="15" fill="rgb(213,127,38)" fg:x="64172" fg:w="17"/><text x="44.2073%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (18 samples, 0.01%)</title><rect x="43.9697%" y="789" width="0.0123%" height="15" fill="rgb(238,118,32)" fg:x="64190" fg:w="18"/><text x="44.2197%" y="799.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (22 samples, 0.02%)</title><rect x="43.9697%" y="821" width="0.0151%" height="15" fill="rgb(240,139,39)" fg:x="64190" fg:w="22"/><text x="44.2197%" y="831.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (22 samples, 0.02%)</title><rect x="43.9697%" y="805" width="0.0151%" height="15" fill="rgb(235,10,37)" fg:x="64190" fg:w="22"/><text x="44.2197%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (32 samples, 0.02%)</title><rect x="43.9690%" y="869" width="0.0219%" height="15" fill="rgb(249,171,38)" fg:x="64189" fg:w="32"/><text x="44.2190%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (32 samples, 0.02%)</title><rect x="43.9690%" y="853" width="0.0219%" height="15" fill="rgb(242,144,32)" fg:x="64189" fg:w="32"/><text x="44.2190%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (31 samples, 0.02%)</title><rect x="43.9697%" y="837" width="0.0212%" height="15" fill="rgb(217,117,21)" fg:x="64190" fg:w="31"/><text x="44.2197%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (15 samples, 0.01%)</title><rect x="43.9964%" y="725" width="0.0103%" height="15" fill="rgb(249,87,1)" fg:x="64229" fg:w="15"/><text x="44.2464%" y="735.50"></text></g><g><title>frame::oops_do_internal (19 samples, 0.01%)</title><rect x="43.9943%" y="789" width="0.0130%" height="15" fill="rgb(248,196,48)" fg:x="64226" fg:w="19"/><text x="44.2443%" y="799.50"></text></g><g><title>OopMapSet::oops_do (19 samples, 0.01%)</title><rect x="43.9943%" y="773" width="0.0130%" height="15" fill="rgb(251,206,33)" fg:x="64226" fg:w="19"/><text x="44.2443%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (19 samples, 0.01%)</title><rect x="43.9943%" y="757" width="0.0130%" height="15" fill="rgb(232,141,28)" fg:x="64226" fg:w="19"/><text x="44.2443%" y="767.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (18 samples, 0.01%)</title><rect x="43.9950%" y="741" width="0.0123%" height="15" fill="rgb(209,167,14)" fg:x="64227" fg:w="18"/><text x="44.2450%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (36 samples, 0.02%)</title><rect x="43.9916%" y="853" width="0.0247%" height="15" fill="rgb(225,11,50)" fg:x="64222" fg:w="36"/><text x="44.2416%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (36 samples, 0.02%)</title><rect x="43.9916%" y="837" width="0.0247%" height="15" fill="rgb(209,50,20)" fg:x="64222" fg:w="36"/><text x="44.2416%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (36 samples, 0.02%)</title><rect x="43.9916%" y="821" width="0.0247%" height="15" fill="rgb(212,17,46)" fg:x="64222" fg:w="36"/><text x="44.2416%" y="831.50"></text></g><g><title>JavaThread::oops_do (36 samples, 0.02%)</title><rect x="43.9916%" y="805" width="0.0247%" height="15" fill="rgb(216,101,39)" fg:x="64222" fg:w="36"/><text x="44.2416%" y="815.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (23 samples, 0.02%)</title><rect x="44.0176%" y="773" width="0.0158%" height="15" fill="rgb(212,228,48)" fg:x="64260" fg:w="23"/><text x="44.2676%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (18 samples, 0.01%)</title><rect x="44.0210%" y="757" width="0.0123%" height="15" fill="rgb(250,6,50)" fg:x="64265" fg:w="18"/><text x="44.2710%" y="767.50"></text></g><g><title>Management::oops_do (26 samples, 0.02%)</title><rect x="44.0162%" y="837" width="0.0178%" height="15" fill="rgb(250,160,48)" fg:x="64258" fg:w="26"/><text x="44.2662%" y="847.50"></text></g><g><title>MemoryService::oops_do (26 samples, 0.02%)</title><rect x="44.0162%" y="821" width="0.0178%" height="15" fill="rgb(244,216,33)" fg:x="64258" fg:w="26"/><text x="44.2662%" y="831.50"></text></g><g><title>MemoryPool::oops_do (26 samples, 0.02%)</title><rect x="44.0162%" y="805" width="0.0178%" height="15" fill="rgb(207,157,5)" fg:x="64258" fg:w="26"/><text x="44.2662%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (26 samples, 0.02%)</title><rect x="44.0162%" y="789" width="0.0178%" height="15" fill="rgb(228,199,8)" fg:x="64258" fg:w="26"/><text x="44.2662%" y="799.50"></text></g><g><title>G1RootProcessor::process_vm_roots (28 samples, 0.02%)</title><rect x="44.0162%" y="853" width="0.0192%" height="15" fill="rgb(227,80,20)" fg:x="64258" fg:w="28"/><text x="44.2662%" y="863.50"></text></g><g><title>G1ParTask::work (164 samples, 0.11%)</title><rect x="43.9272%" y="885" width="0.1123%" height="15" fill="rgb(222,9,33)" fg:x="64128" fg:w="164"/><text x="44.1772%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (71 samples, 0.05%)</title><rect x="43.9909%" y="869" width="0.0486%" height="15" fill="rgb(239,44,28)" fg:x="64221" fg:w="71"/><text x="44.2409%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (36 samples, 0.02%)</title><rect x="44.0402%" y="885" width="0.0247%" height="15" fill="rgb(249,187,43)" fg:x="64293" fg:w="36"/><text x="44.2902%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (34 samples, 0.02%)</title><rect x="44.0416%" y="869" width="0.0233%" height="15" fill="rgb(216,141,28)" fg:x="64295" fg:w="34"/><text x="44.2916%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (34 samples, 0.02%)</title><rect x="44.0416%" y="853" width="0.0233%" height="15" fill="rgb(230,154,53)" fg:x="64295" fg:w="34"/><text x="44.2916%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (34 samples, 0.02%)</title><rect x="44.0416%" y="837" width="0.0233%" height="15" fill="rgb(227,82,4)" fg:x="64295" fg:w="34"/><text x="44.2916%" y="847.50"></text></g><g><title>SpinPause (33 samples, 0.02%)</title><rect x="44.0423%" y="821" width="0.0226%" height="15" fill="rgb(220,107,16)" fg:x="64296" fg:w="33"/><text x="44.2923%" y="831.50"></text></g><g><title>ParallelSPCleanupTask::work (17 samples, 0.01%)</title><rect x="44.0656%" y="885" width="0.0116%" height="15" fill="rgb(207,187,2)" fg:x="64330" fg:w="17"/><text x="44.3156%" y="895.50"></text></g><g><title>finish_task_switch (79 samples, 0.05%)</title><rect x="44.0827%" y="677" width="0.0541%" height="15" fill="rgb(210,162,52)" fg:x="64355" fg:w="79"/><text x="44.3327%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.05%)</title><rect x="44.0841%" y="661" width="0.0527%" height="15" fill="rgb(217,216,49)" fg:x="64357" fg:w="77"/><text x="44.3341%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (76 samples, 0.05%)</title><rect x="44.0847%" y="645" width="0.0521%" height="15" fill="rgb(218,146,49)" fg:x="64358" fg:w="76"/><text x="44.3347%" y="655.50"></text></g><g><title>native_write_msr (75 samples, 0.05%)</title><rect x="44.0854%" y="629" width="0.0514%" height="15" fill="rgb(216,55,40)" fg:x="64359" fg:w="75"/><text x="44.3354%" y="639.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.06%)</title><rect x="44.0793%" y="725" width="0.0603%" height="15" fill="rgb(208,196,21)" fg:x="64350" fg:w="88"/><text x="44.3293%" y="735.50"></text></g><g><title>schedule (85 samples, 0.06%)</title><rect x="44.0813%" y="709" width="0.0582%" height="15" fill="rgb(242,117,42)" fg:x="64353" fg:w="85"/><text x="44.3313%" y="719.50"></text></g><g><title>__schedule (85 samples, 0.06%)</title><rect x="44.0813%" y="693" width="0.0582%" height="15" fill="rgb(210,11,23)" fg:x="64353" fg:w="85"/><text x="44.3313%" y="703.50"></text></g><g><title>do_syscall_64 (91 samples, 0.06%)</title><rect x="44.0779%" y="789" width="0.0623%" height="15" fill="rgb(217,110,2)" fg:x="64348" fg:w="91"/><text x="44.3279%" y="799.50"></text></g><g><title>__x64_sys_futex (91 samples, 0.06%)</title><rect x="44.0779%" y="773" width="0.0623%" height="15" fill="rgb(229,77,54)" fg:x="64348" fg:w="91"/><text x="44.3279%" y="783.50"></text></g><g><title>do_futex (91 samples, 0.06%)</title><rect x="44.0779%" y="757" width="0.0623%" height="15" fill="rgb(218,53,16)" fg:x="64348" fg:w="91"/><text x="44.3279%" y="767.50"></text></g><g><title>futex_wait (90 samples, 0.06%)</title><rect x="44.0786%" y="741" width="0.0616%" height="15" fill="rgb(215,38,13)" fg:x="64349" fg:w="90"/><text x="44.3286%" y="751.50"></text></g><g><title>GC_Thread#6 (360 samples, 0.25%)</title><rect x="43.8943%" y="981" width="0.2466%" height="15" fill="rgb(235,42,18)" fg:x="64080" fg:w="360"/><text x="44.1443%" y="991.50"></text></g><g><title>__GI___clone (356 samples, 0.24%)</title><rect x="43.8971%" y="965" width="0.2439%" height="15" fill="rgb(219,66,54)" fg:x="64084" fg:w="356"/><text x="44.1471%" y="975.50"></text></g><g><title>start_thread (356 samples, 0.24%)</title><rect x="43.8971%" y="949" width="0.2439%" height="15" fill="rgb(222,205,4)" fg:x="64084" fg:w="356"/><text x="44.1471%" y="959.50"></text></g><g><title>thread_native_entry (356 samples, 0.24%)</title><rect x="43.8971%" y="933" width="0.2439%" height="15" fill="rgb(227,213,46)" fg:x="64084" fg:w="356"/><text x="44.1471%" y="943.50"></text></g><g><title>Thread::call_run (356 samples, 0.24%)</title><rect x="43.8971%" y="917" width="0.2439%" height="15" fill="rgb(250,145,42)" fg:x="64084" fg:w="356"/><text x="44.1471%" y="927.50"></text></g><g><title>GangWorker::loop (356 samples, 0.24%)</title><rect x="43.8971%" y="901" width="0.2439%" height="15" fill="rgb(219,15,2)" fg:x="64084" fg:w="356"/><text x="44.1471%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (93 samples, 0.06%)</title><rect x="44.0772%" y="885" width="0.0637%" height="15" fill="rgb(231,181,52)" fg:x="64347" fg:w="93"/><text x="44.3272%" y="895.50"></text></g><g><title>PosixSemaphore::wait (93 samples, 0.06%)</title><rect x="44.0772%" y="869" width="0.0637%" height="15" fill="rgb(235,1,42)" fg:x="64347" fg:w="93"/><text x="44.3272%" y="879.50"></text></g><g><title>__new_sem_wait_slow (93 samples, 0.06%)</title><rect x="44.0772%" y="853" width="0.0637%" height="15" fill="rgb(249,88,27)" fg:x="64347" fg:w="93"/><text x="44.3272%" y="863.50"></text></g><g><title>do_futex_wait (93 samples, 0.06%)</title><rect x="44.0772%" y="837" width="0.0637%" height="15" fill="rgb(235,145,16)" fg:x="64347" fg:w="93"/><text x="44.3272%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (93 samples, 0.06%)</title><rect x="44.0772%" y="821" width="0.0637%" height="15" fill="rgb(237,114,19)" fg:x="64347" fg:w="93"/><text x="44.3272%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.06%)</title><rect x="44.0779%" y="805" width="0.0630%" height="15" fill="rgb(238,51,50)" fg:x="64348" fg:w="92"/><text x="44.3279%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (28 samples, 0.02%)</title><rect x="44.1669%" y="837" width="0.0192%" height="15" fill="rgb(205,194,25)" fg:x="64478" fg:w="28"/><text x="44.4169%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (46 samples, 0.03%)</title><rect x="44.1567%" y="853" width="0.0315%" height="15" fill="rgb(215,203,17)" fg:x="64463" fg:w="46"/><text x="44.4067%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (83 samples, 0.06%)</title><rect x="44.1505%" y="869" width="0.0569%" height="15" fill="rgb(233,112,49)" fg:x="64454" fg:w="83"/><text x="44.4005%" y="879.50"></text></g><g><title>SpinPause (26 samples, 0.02%)</title><rect x="44.1896%" y="853" width="0.0178%" height="15" fill="rgb(241,130,26)" fg:x="64511" fg:w="26"/><text x="44.4396%" y="863.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (15 samples, 0.01%)</title><rect x="44.2101%" y="773" width="0.0103%" height="15" fill="rgb(252,223,19)" fg:x="64541" fg:w="15"/><text x="44.4601%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (20 samples, 0.01%)</title><rect x="44.2074%" y="789" width="0.0137%" height="15" fill="rgb(211,95,25)" fg:x="64537" fg:w="20"/><text x="44.4574%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (21 samples, 0.01%)</title><rect x="44.2074%" y="869" width="0.0144%" height="15" fill="rgb(251,182,27)" fg:x="64537" fg:w="21"/><text x="44.4574%" y="879.50"></text></g><g><title>G1RemSet::update_rem_set (21 samples, 0.01%)</title><rect x="44.2074%" y="853" width="0.0144%" height="15" fill="rgb(238,24,4)" fg:x="64537" fg:w="21"/><text x="44.4574%" y="863.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (21 samples, 0.01%)</title><rect x="44.2074%" y="837" width="0.0144%" height="15" fill="rgb(224,220,25)" fg:x="64537" fg:w="21"/><text x="44.4574%" y="847.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (21 samples, 0.01%)</title><rect x="44.2074%" y="821" width="0.0144%" height="15" fill="rgb(239,133,26)" fg:x="64537" fg:w="21"/><text x="44.4574%" y="831.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (21 samples, 0.01%)</title><rect x="44.2074%" y="805" width="0.0144%" height="15" fill="rgb(211,94,48)" fg:x="64537" fg:w="21"/><text x="44.4574%" y="815.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (27 samples, 0.02%)</title><rect x="44.2224%" y="789" width="0.0185%" height="15" fill="rgb(239,87,6)" fg:x="64559" fg:w="27"/><text x="44.4724%" y="799.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (23 samples, 0.02%)</title><rect x="44.2252%" y="773" width="0.0158%" height="15" fill="rgb(227,62,0)" fg:x="64563" fg:w="23"/><text x="44.4752%" y="783.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (17 samples, 0.01%)</title><rect x="44.2293%" y="757" width="0.0116%" height="15" fill="rgb(211,226,4)" fg:x="64569" fg:w="17"/><text x="44.4793%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (28 samples, 0.02%)</title><rect x="44.2224%" y="821" width="0.0192%" height="15" fill="rgb(253,38,52)" fg:x="64559" fg:w="28"/><text x="44.4724%" y="831.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (28 samples, 0.02%)</title><rect x="44.2224%" y="805" width="0.0192%" height="15" fill="rgb(229,126,40)" fg:x="64559" fg:w="28"/><text x="44.4724%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (36 samples, 0.02%)</title><rect x="44.2217%" y="869" width="0.0247%" height="15" fill="rgb(229,165,44)" fg:x="64558" fg:w="36"/><text x="44.4717%" y="879.50"></text></g><g><title>G1CollectionSet::iterate_from (35 samples, 0.02%)</title><rect x="44.2224%" y="853" width="0.0240%" height="15" fill="rgb(247,95,47)" fg:x="64559" fg:w="35"/><text x="44.4724%" y="863.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (35 samples, 0.02%)</title><rect x="44.2224%" y="837" width="0.0240%" height="15" fill="rgb(216,140,30)" fg:x="64559" fg:w="35"/><text x="44.4724%" y="847.50"></text></g><g><title>G1RootProcessor::process_java_roots (18 samples, 0.01%)</title><rect x="44.2471%" y="853" width="0.0123%" height="15" fill="rgb(246,214,8)" fg:x="64595" fg:w="18"/><text x="44.4971%" y="863.50"></text></g><g><title>Threads::possibly_parallel_oops_do (18 samples, 0.01%)</title><rect x="44.2471%" y="837" width="0.0123%" height="15" fill="rgb(227,224,15)" fg:x="64595" fg:w="18"/><text x="44.4971%" y="847.50"></text></g><g><title>Threads::possibly_parallel_threads_do (18 samples, 0.01%)</title><rect x="44.2471%" y="821" width="0.0123%" height="15" fill="rgb(233,175,4)" fg:x="64595" fg:w="18"/><text x="44.4971%" y="831.50"></text></g><g><title>JavaThread::oops_do (17 samples, 0.01%)</title><rect x="44.2478%" y="805" width="0.0116%" height="15" fill="rgb(221,66,45)" fg:x="64596" fg:w="17"/><text x="44.4978%" y="815.50"></text></g><g><title>G1ParTask::work (191 samples, 0.13%)</title><rect x="44.1505%" y="885" width="0.1308%" height="15" fill="rgb(221,178,18)" fg:x="64454" fg:w="191"/><text x="44.4005%" y="895.50"></text></g><g><title>G1RootProcessor::evacuate_roots (51 samples, 0.03%)</title><rect x="44.2464%" y="869" width="0.0349%" height="15" fill="rgb(213,81,29)" fg:x="64594" fg:w="51"/><text x="44.4964%" y="879.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (24 samples, 0.02%)</title><rect x="44.2649%" y="853" width="0.0164%" height="15" fill="rgb(220,89,49)" fg:x="64621" fg:w="24"/><text x="44.5149%" y="863.50"></text></g><g><title>G1STWRefProcTaskProxy::work (23 samples, 0.02%)</title><rect x="44.2882%" y="885" width="0.0158%" height="15" fill="rgb(227,60,33)" fg:x="64655" fg:w="23"/><text x="44.5382%" y="895.50"></text></g><g><title>RefProcPhase3Task::work (23 samples, 0.02%)</title><rect x="44.2882%" y="869" width="0.0158%" height="15" fill="rgb(205,113,12)" fg:x="64655" fg:w="23"/><text x="44.5382%" y="879.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (23 samples, 0.02%)</title><rect x="44.2882%" y="853" width="0.0158%" height="15" fill="rgb(211,32,1)" fg:x="64655" fg:w="23"/><text x="44.5382%" y="863.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (23 samples, 0.02%)</title><rect x="44.2882%" y="837" width="0.0158%" height="15" fill="rgb(246,2,12)" fg:x="64655" fg:w="23"/><text x="44.5382%" y="847.50"></text></g><g><title>SpinPause (23 samples, 0.02%)</title><rect x="44.2882%" y="821" width="0.0158%" height="15" fill="rgb(243,37,27)" fg:x="64655" fg:w="23"/><text x="44.5382%" y="831.50"></text></g><g><title>ParallelSPCleanupTask::work (19 samples, 0.01%)</title><rect x="44.3046%" y="885" width="0.0130%" height="15" fill="rgb(248,211,31)" fg:x="64679" fg:w="19"/><text x="44.5546%" y="895.50"></text></g><g><title>Threads::possibly_parallel_threads_do (16 samples, 0.01%)</title><rect x="44.3067%" y="869" width="0.0110%" height="15" fill="rgb(242,146,47)" fg:x="64682" fg:w="16"/><text x="44.5567%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (38 samples, 0.03%)</title><rect x="44.3259%" y="661" width="0.0260%" height="15" fill="rgb(206,70,20)" fg:x="64710" fg:w="38"/><text x="44.5759%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (38 samples, 0.03%)</title><rect x="44.3259%" y="645" width="0.0260%" height="15" fill="rgb(215,10,51)" fg:x="64710" fg:w="38"/><text x="44.5759%" y="655.50"></text></g><g><title>native_write_msr (38 samples, 0.03%)</title><rect x="44.3259%" y="629" width="0.0260%" height="15" fill="rgb(243,178,53)" fg:x="64710" fg:w="38"/><text x="44.5759%" y="639.50"></text></g><g><title>finish_task_switch (39 samples, 0.03%)</title><rect x="44.3259%" y="677" width="0.0267%" height="15" fill="rgb(233,221,20)" fg:x="64710" fg:w="39"/><text x="44.5759%" y="687.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.03%)</title><rect x="44.3218%" y="725" width="0.0329%" height="15" fill="rgb(218,95,35)" fg:x="64704" fg:w="48"/><text x="44.5718%" y="735.50"></text></g><g><title>schedule (45 samples, 0.03%)</title><rect x="44.3238%" y="709" width="0.0308%" height="15" fill="rgb(229,13,5)" fg:x="64707" fg:w="45"/><text x="44.5738%" y="719.50"></text></g><g><title>__schedule (45 samples, 0.03%)</title><rect x="44.3238%" y="693" width="0.0308%" height="15" fill="rgb(252,164,30)" fg:x="64707" fg:w="45"/><text x="44.5738%" y="703.50"></text></g><g><title>do_syscall_64 (54 samples, 0.04%)</title><rect x="44.3204%" y="789" width="0.0370%" height="15" fill="rgb(232,68,36)" fg:x="64702" fg:w="54"/><text x="44.5704%" y="799.50"></text></g><g><title>__x64_sys_futex (54 samples, 0.04%)</title><rect x="44.3204%" y="773" width="0.0370%" height="15" fill="rgb(219,59,54)" fg:x="64702" fg:w="54"/><text x="44.5704%" y="783.50"></text></g><g><title>do_futex (54 samples, 0.04%)</title><rect x="44.3204%" y="757" width="0.0370%" height="15" fill="rgb(250,92,33)" fg:x="64702" fg:w="54"/><text x="44.5704%" y="767.50"></text></g><g><title>futex_wait (52 samples, 0.04%)</title><rect x="44.3218%" y="741" width="0.0356%" height="15" fill="rgb(229,162,54)" fg:x="64704" fg:w="52"/><text x="44.5718%" y="751.50"></text></g><g><title>GC_Thread#7 (322 samples, 0.22%)</title><rect x="44.1409%" y="981" width="0.2206%" height="15" fill="rgb(244,114,52)" fg:x="64440" fg:w="322"/><text x="44.3909%" y="991.50"></text></g><g><title>__GI___clone (315 samples, 0.22%)</title><rect x="44.1457%" y="965" width="0.2158%" height="15" fill="rgb(212,211,43)" fg:x="64447" fg:w="315"/><text x="44.3957%" y="975.50"></text></g><g><title>start_thread (315 samples, 0.22%)</title><rect x="44.1457%" y="949" width="0.2158%" height="15" fill="rgb(226,147,8)" fg:x="64447" fg:w="315"/><text x="44.3957%" y="959.50"></text></g><g><title>thread_native_entry (315 samples, 0.22%)</title><rect x="44.1457%" y="933" width="0.2158%" height="15" fill="rgb(226,23,13)" fg:x="64447" fg:w="315"/><text x="44.3957%" y="943.50"></text></g><g><title>Thread::call_run (315 samples, 0.22%)</title><rect x="44.1457%" y="917" width="0.2158%" height="15" fill="rgb(240,63,4)" fg:x="64447" fg:w="315"/><text x="44.3957%" y="927.50"></text></g><g><title>GangWorker::loop (315 samples, 0.22%)</title><rect x="44.1457%" y="901" width="0.2158%" height="15" fill="rgb(221,1,32)" fg:x="64447" fg:w="315"/><text x="44.3957%" y="911.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (63 samples, 0.04%)</title><rect x="44.3183%" y="885" width="0.0432%" height="15" fill="rgb(242,117,10)" fg:x="64699" fg:w="63"/><text x="44.5683%" y="895.50"></text></g><g><title>PosixSemaphore::wait (63 samples, 0.04%)</title><rect x="44.3183%" y="869" width="0.0432%" height="15" fill="rgb(249,172,44)" fg:x="64699" fg:w="63"/><text x="44.5683%" y="879.50"></text></g><g><title>__new_sem_wait_slow (63 samples, 0.04%)</title><rect x="44.3183%" y="853" width="0.0432%" height="15" fill="rgb(244,46,45)" fg:x="64699" fg:w="63"/><text x="44.5683%" y="863.50"></text></g><g><title>do_futex_wait (62 samples, 0.04%)</title><rect x="44.3190%" y="837" width="0.0425%" height="15" fill="rgb(206,43,17)" fg:x="64700" fg:w="62"/><text x="44.5690%" y="847.50"></text></g><g><title>futex_abstimed_wait_cancelable (62 samples, 0.04%)</title><rect x="44.3190%" y="821" width="0.0425%" height="15" fill="rgb(239,218,39)" fg:x="64700" fg:w="62"/><text x="44.5690%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.04%)</title><rect x="44.3204%" y="805" width="0.0411%" height="15" fill="rgb(208,169,54)" fg:x="64702" fg:w="60"/><text x="44.5704%" y="815.50"></text></g><g><title>JVM_WaitForReferencePendingList (16 samples, 0.01%)</title><rect x="44.3663%" y="949" width="0.0110%" height="15" fill="rgb(247,25,42)" fg:x="64769" fg:w="16"/><text x="44.6163%" y="959.50"></text></g><g><title>[perf-627991.map] (23 samples, 0.02%)</title><rect x="44.3629%" y="965" width="0.0158%" height="15" fill="rgb(226,23,31)" fg:x="64764" fg:w="23"/><text x="44.6129%" y="975.50"></text></g><g><title>Reference_Handl (24 samples, 0.02%)</title><rect x="44.3629%" y="981" width="0.0164%" height="15" fill="rgb(247,16,28)" fg:x="64764" fg:w="24"/><text x="44.6129%" y="991.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (20 samples, 0.01%)</title><rect x="44.4320%" y="949" width="0.0137%" height="15" fill="rgb(231,147,38)" fg:x="64865" fg:w="20"/><text x="44.6820%" y="959.50"></text></g><g><title>[perf-627991.map] (102 samples, 0.07%)</title><rect x="44.3820%" y="965" width="0.0699%" height="15" fill="rgb(253,81,48)" fg:x="64792" fg:w="102"/><text x="44.6320%" y="975.50"></text></g><g><title>Service_Thread (118 samples, 0.08%)</title><rect x="44.3800%" y="981" width="0.0808%" height="15" fill="rgb(249,222,43)" fg:x="64789" fg:w="118"/><text x="44.6300%" y="991.50"></text></g><g><title>dequeue_task_fair (15 samples, 0.01%)</title><rect x="44.5136%" y="645" width="0.0103%" height="15" fill="rgb(221,3,27)" fg:x="64984" fg:w="15"/><text x="44.7636%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (86 samples, 0.06%)</title><rect x="44.5245%" y="629" width="0.0589%" height="15" fill="rgb(228,180,5)" fg:x="65000" fg:w="86"/><text x="44.7745%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (85 samples, 0.06%)</title><rect x="44.5252%" y="613" width="0.0582%" height="15" fill="rgb(227,131,42)" fg:x="65001" fg:w="85"/><text x="44.7752%" y="623.50"></text></g><g><title>native_write_msr (83 samples, 0.06%)</title><rect x="44.5266%" y="597" width="0.0569%" height="15" fill="rgb(212,3,39)" fg:x="65003" fg:w="83"/><text x="44.7766%" y="607.50"></text></g><g><title>finish_task_switch (93 samples, 0.06%)</title><rect x="44.5238%" y="645" width="0.0637%" height="15" fill="rgb(226,45,5)" fg:x="64999" fg:w="93"/><text x="44.7738%" y="655.50"></text></g><g><title>futex_wait_queue_me (138 samples, 0.09%)</title><rect x="44.4978%" y="693" width="0.0945%" height="15" fill="rgb(215,167,45)" fg:x="64961" fg:w="138"/><text x="44.7478%" y="703.50"></text></g><g><title>schedule (123 samples, 0.08%)</title><rect x="44.5081%" y="677" width="0.0843%" height="15" fill="rgb(250,218,53)" fg:x="64976" fg:w="123"/><text x="44.7581%" y="687.50"></text></g><g><title>__schedule (121 samples, 0.08%)</title><rect x="44.5094%" y="661" width="0.0829%" height="15" fill="rgb(207,140,0)" fg:x="64978" fg:w="121"/><text x="44.7594%" y="671.50"></text></g><g><title>do_futex (153 samples, 0.10%)</title><rect x="44.4944%" y="725" width="0.1048%" height="15" fill="rgb(238,133,51)" fg:x="64956" fg:w="153"/><text x="44.7444%" y="735.50"></text></g><g><title>futex_wait (152 samples, 0.10%)</title><rect x="44.4951%" y="709" width="0.1041%" height="15" fill="rgb(218,203,53)" fg:x="64957" fg:w="152"/><text x="44.7451%" y="719.50"></text></g><g><title>do_syscall_64 (157 samples, 0.11%)</title><rect x="44.4930%" y="757" width="0.1075%" height="15" fill="rgb(226,184,25)" fg:x="64954" fg:w="157"/><text x="44.7430%" y="767.50"></text></g><g><title>__x64_sys_futex (156 samples, 0.11%)</title><rect x="44.4937%" y="741" width="0.1069%" height="15" fill="rgb(231,121,21)" fg:x="64955" fg:w="156"/><text x="44.7437%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (180 samples, 0.12%)</title><rect x="44.4841%" y="821" width="0.1233%" height="15" fill="rgb(251,14,34)" fg:x="64941" fg:w="180"/><text x="44.7341%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (180 samples, 0.12%)</title><rect x="44.4841%" y="805" width="0.1233%" height="15" fill="rgb(249,193,11)" fg:x="64941" fg:w="180"/><text x="44.7341%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (178 samples, 0.12%)</title><rect x="44.4855%" y="789" width="0.1219%" height="15" fill="rgb(220,172,37)" fg:x="64943" fg:w="178"/><text x="44.7355%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (169 samples, 0.12%)</title><rect x="44.4916%" y="773" width="0.1158%" height="15" fill="rgb(231,229,43)" fg:x="64952" fg:w="169"/><text x="44.7416%" y="783.50"></text></g><g><title>Monitor::wait (207 samples, 0.14%)</title><rect x="44.4738%" y="869" width="0.1418%" height="15" fill="rgb(250,161,5)" fg:x="64926" fg:w="207"/><text x="44.7238%" y="879.50"></text></g><g><title>Monitor::IWait (206 samples, 0.14%)</title><rect x="44.4745%" y="853" width="0.1411%" height="15" fill="rgb(218,225,18)" fg:x="64927" fg:w="206"/><text x="44.7245%" y="863.50"></text></g><g><title>os::PlatformEvent::park (199 samples, 0.14%)</title><rect x="44.4793%" y="837" width="0.1363%" height="15" fill="rgb(245,45,42)" fg:x="64934" fg:w="199"/><text x="44.7293%" y="847.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (74 samples, 0.05%)</title><rect x="44.6307%" y="821" width="0.0507%" height="15" fill="rgb(211,115,1)" fg:x="65155" fg:w="74"/><text x="44.8807%" y="831.50"></text></g><g><title>NMethodSweeper::process_compiled_method (104 samples, 0.07%)</title><rect x="44.6286%" y="837" width="0.0712%" height="15" fill="rgb(248,133,52)" fg:x="65152" fg:w="104"/><text x="44.8786%" y="847.50"></text></g><g><title>NMethodSweeper::possibly_sweep (127 samples, 0.09%)</title><rect x="44.6156%" y="869" width="0.0870%" height="15" fill="rgb(238,100,21)" fg:x="65133" fg:w="127"/><text x="44.8656%" y="879.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (121 samples, 0.08%)</title><rect x="44.6197%" y="853" width="0.0829%" height="15" fill="rgb(247,144,11)" fg:x="65139" fg:w="121"/><text x="44.8697%" y="863.50"></text></g><g><title>__GI___clone (342 samples, 0.23%)</title><rect x="44.4704%" y="965" width="0.2343%" height="15" fill="rgb(206,164,16)" fg:x="64921" fg:w="342"/><text x="44.7204%" y="975.50"></text></g><g><title>start_thread (342 samples, 0.23%)</title><rect x="44.4704%" y="949" width="0.2343%" height="15" fill="rgb(222,34,3)" fg:x="64921" fg:w="342"/><text x="44.7204%" y="959.50"></text></g><g><title>thread_native_entry (342 samples, 0.23%)</title><rect x="44.4704%" y="933" width="0.2343%" height="15" fill="rgb(248,82,4)" fg:x="64921" fg:w="342"/><text x="44.7204%" y="943.50"></text></g><g><title>Thread::call_run (342 samples, 0.23%)</title><rect x="44.4704%" y="917" width="0.2343%" height="15" fill="rgb(228,81,46)" fg:x="64921" fg:w="342"/><text x="44.7204%" y="927.50"></text></g><g><title>JavaThread::thread_main_inner (342 samples, 0.23%)</title><rect x="44.4704%" y="901" width="0.2343%" height="15" fill="rgb(227,67,47)" fg:x="64921" fg:w="342"/><text x="44.7204%" y="911.50"></text></g><g><title>NMethodSweeper::sweeper_loop (342 samples, 0.23%)</title><rect x="44.4704%" y="885" width="0.2343%" height="15" fill="rgb(215,93,53)" fg:x="64921" fg:w="342"/><text x="44.7204%" y="895.50"></text></g><g><title>Sweeper_thread (350 samples, 0.24%)</title><rect x="44.4663%" y="981" width="0.2397%" height="15" fill="rgb(248,194,39)" fg:x="64915" fg:w="350"/><text x="44.7163%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="44.7526%" y="709" width="0.0144%" height="15" fill="rgb(215,5,19)" fg:x="65333" fg:w="21"/><text x="45.0026%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="44.7526%" y="693" width="0.0144%" height="15" fill="rgb(226,215,51)" fg:x="65333" fg:w="21"/><text x="45.0026%" y="703.50"></text></g><g><title>native_write_msr (21 samples, 0.01%)</title><rect x="44.7526%" y="677" width="0.0144%" height="15" fill="rgb(225,56,26)" fg:x="65333" fg:w="21"/><text x="45.0026%" y="687.50"></text></g><g><title>finish_task_switch (22 samples, 0.02%)</title><rect x="44.7526%" y="725" width="0.0151%" height="15" fill="rgb(222,75,29)" fg:x="65333" fg:w="22"/><text x="45.0026%" y="735.50"></text></g><g><title>__pthread_cond_timedwait (24 samples, 0.02%)</title><rect x="44.7519%" y="901" width="0.0164%" height="15" fill="rgb(236,139,6)" fg:x="65332" fg:w="24"/><text x="45.0019%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="44.7519%" y="885" width="0.0164%" height="15" fill="rgb(223,137,36)" fg:x="65332" fg:w="24"/><text x="45.0019%" y="895.50"></text></g><g><title>futex_abstimed_wait_cancelable (24 samples, 0.02%)</title><rect x="44.7519%" y="869" width="0.0164%" height="15" fill="rgb(226,99,2)" fg:x="65332" fg:w="24"/><text x="45.0019%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="44.7519%" y="853" width="0.0164%" height="15" fill="rgb(206,133,23)" fg:x="65332" fg:w="24"/><text x="45.0019%" y="863.50"></text></g><g><title>do_syscall_64 (24 samples, 0.02%)</title><rect x="44.7519%" y="837" width="0.0164%" height="15" fill="rgb(243,173,15)" fg:x="65332" fg:w="24"/><text x="45.0019%" y="847.50"></text></g><g><title>__x64_sys_futex (24 samples, 0.02%)</title><rect x="44.7519%" y="821" width="0.0164%" height="15" fill="rgb(228,69,28)" fg:x="65332" fg:w="24"/><text x="45.0019%" y="831.50"></text></g><g><title>do_futex (24 samples, 0.02%)</title><rect x="44.7519%" y="805" width="0.0164%" height="15" fill="rgb(212,51,22)" fg:x="65332" fg:w="24"/><text x="45.0019%" y="815.50"></text></g><g><title>futex_wait (24 samples, 0.02%)</title><rect x="44.7519%" y="789" width="0.0164%" height="15" fill="rgb(227,113,0)" fg:x="65332" fg:w="24"/><text x="45.0019%" y="799.50"></text></g><g><title>futex_wait_queue_me (24 samples, 0.02%)</title><rect x="44.7519%" y="773" width="0.0164%" height="15" fill="rgb(252,84,27)" fg:x="65332" fg:w="24"/><text x="45.0019%" y="783.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="44.7526%" y="757" width="0.0158%" height="15" fill="rgb(223,145,39)" fg:x="65333" fg:w="23"/><text x="45.0026%" y="767.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="44.7526%" y="741" width="0.0158%" height="15" fill="rgb(239,219,30)" fg:x="65333" fg:w="23"/><text x="45.0026%" y="751.50"></text></g><g><title>JVM_Sleep (27 samples, 0.02%)</title><rect x="44.7506%" y="949" width="0.0185%" height="15" fill="rgb(224,196,39)" fg:x="65330" fg:w="27"/><text x="45.0006%" y="959.50"></text></g><g><title>os::sleep (26 samples, 0.02%)</title><rect x="44.7512%" y="933" width="0.0178%" height="15" fill="rgb(205,35,43)" fg:x="65331" fg:w="26"/><text x="45.0012%" y="943.50"></text></g><g><title>os::PlatformEvent::park (25 samples, 0.02%)</title><rect x="44.7519%" y="917" width="0.0171%" height="15" fill="rgb(228,201,21)" fg:x="65332" fg:w="25"/><text x="45.0019%" y="927.50"></text></g><g><title>[perf-627991.map] (115 samples, 0.08%)</title><rect x="44.7074%" y="965" width="0.0788%" height="15" fill="rgb(237,118,16)" fg:x="65267" fg:w="115"/><text x="44.9574%" y="975.50"></text></g><g><title>Thread-0 (133 samples, 0.09%)</title><rect x="44.7060%" y="981" width="0.0911%" height="15" fill="rgb(241,17,19)" fg:x="65265" fg:w="133"/><text x="44.9560%" y="991.50"></text></g><g><title>PeriodicTask::real_time_tick (15 samples, 0.01%)</title><rect x="44.7992%" y="885" width="0.0103%" height="15" fill="rgb(214,10,25)" fg:x="65401" fg:w="15"/><text x="45.0492%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (79 samples, 0.05%)</title><rect x="44.8177%" y="629" width="0.0541%" height="15" fill="rgb(238,37,29)" fg:x="65428" fg:w="79"/><text x="45.0677%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (78 samples, 0.05%)</title><rect x="44.8184%" y="613" width="0.0534%" height="15" fill="rgb(253,83,25)" fg:x="65429" fg:w="78"/><text x="45.0684%" y="623.50"></text></g><g><title>native_write_msr (77 samples, 0.05%)</title><rect x="44.8191%" y="597" width="0.0527%" height="15" fill="rgb(234,192,12)" fg:x="65430" fg:w="77"/><text x="45.0691%" y="607.50"></text></g><g><title>finish_task_switch (83 samples, 0.06%)</title><rect x="44.8163%" y="645" width="0.0569%" height="15" fill="rgb(241,216,45)" fg:x="65426" fg:w="83"/><text x="45.0663%" y="655.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.06%)</title><rect x="44.8143%" y="693" width="0.0603%" height="15" fill="rgb(242,22,33)" fg:x="65423" fg:w="88"/><text x="45.0643%" y="703.50"></text></g><g><title>schedule (87 samples, 0.06%)</title><rect x="44.8149%" y="677" width="0.0596%" height="15" fill="rgb(231,105,49)" fg:x="65424" fg:w="87"/><text x="45.0649%" y="687.50"></text></g><g><title>__schedule (87 samples, 0.06%)</title><rect x="44.8149%" y="661" width="0.0596%" height="15" fill="rgb(218,204,15)" fg:x="65424" fg:w="87"/><text x="45.0649%" y="671.50"></text></g><g><title>do_futex (91 samples, 0.06%)</title><rect x="44.8129%" y="725" width="0.0623%" height="15" fill="rgb(235,138,41)" fg:x="65421" fg:w="91"/><text x="45.0629%" y="735.50"></text></g><g><title>futex_wait (89 samples, 0.06%)</title><rect x="44.8143%" y="709" width="0.0610%" height="15" fill="rgb(246,0,9)" fg:x="65423" fg:w="89"/><text x="45.0643%" y="719.50"></text></g><g><title>do_syscall_64 (92 samples, 0.06%)</title><rect x="44.8129%" y="757" width="0.0630%" height="15" fill="rgb(210,74,4)" fg:x="65421" fg:w="92"/><text x="45.0629%" y="767.50"></text></g><g><title>__x64_sys_futex (92 samples, 0.06%)</title><rect x="44.8129%" y="741" width="0.0630%" height="15" fill="rgb(250,60,41)" fg:x="65421" fg:w="92"/><text x="45.0629%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.06%)</title><rect x="44.8129%" y="773" width="0.0637%" height="15" fill="rgb(220,115,12)" fg:x="65421" fg:w="93"/><text x="45.0629%" y="783.50"></text></g><g><title>__pthread_cond_timedwait (95 samples, 0.07%)</title><rect x="44.8122%" y="821" width="0.0651%" height="15" fill="rgb(237,100,13)" fg:x="65420" fg:w="95"/><text x="45.0622%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (95 samples, 0.07%)</title><rect x="44.8122%" y="805" width="0.0651%" height="15" fill="rgb(213,55,26)" fg:x="65420" fg:w="95"/><text x="45.0622%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (95 samples, 0.07%)</title><rect x="44.8122%" y="789" width="0.0651%" height="15" fill="rgb(216,17,4)" fg:x="65420" fg:w="95"/><text x="45.0622%" y="799.50"></text></g><g><title>VM_Periodic_Tas (119 samples, 0.08%)</title><rect x="44.7971%" y="981" width="0.0815%" height="15" fill="rgb(220,153,47)" fg:x="65398" fg:w="119"/><text x="45.0471%" y="991.50"></text></g><g><title>__GI___clone (117 samples, 0.08%)</title><rect x="44.7985%" y="965" width="0.0801%" height="15" fill="rgb(215,131,9)" fg:x="65400" fg:w="117"/><text x="45.0485%" y="975.50"></text></g><g><title>start_thread (117 samples, 0.08%)</title><rect x="44.7985%" y="949" width="0.0801%" height="15" fill="rgb(233,46,42)" fg:x="65400" fg:w="117"/><text x="45.0485%" y="959.50"></text></g><g><title>thread_native_entry (117 samples, 0.08%)</title><rect x="44.7985%" y="933" width="0.0801%" height="15" fill="rgb(226,86,7)" fg:x="65400" fg:w="117"/><text x="45.0485%" y="943.50"></text></g><g><title>Thread::call_run (117 samples, 0.08%)</title><rect x="44.7985%" y="917" width="0.0801%" height="15" fill="rgb(239,226,21)" fg:x="65400" fg:w="117"/><text x="45.0485%" y="927.50"></text></g><g><title>WatcherThread::run (117 samples, 0.08%)</title><rect x="44.7985%" y="901" width="0.0801%" height="15" fill="rgb(244,137,22)" fg:x="65400" fg:w="117"/><text x="45.0485%" y="911.50"></text></g><g><title>WatcherThread::sleep (101 samples, 0.07%)</title><rect x="44.8095%" y="885" width="0.0692%" height="15" fill="rgb(211,139,35)" fg:x="65416" fg:w="101"/><text x="45.0595%" y="895.50"></text></g><g><title>Monitor::wait (100 samples, 0.07%)</title><rect x="44.8102%" y="869" width="0.0685%" height="15" fill="rgb(214,62,50)" fg:x="65417" fg:w="100"/><text x="45.0602%" y="879.50"></text></g><g><title>Monitor::IWait (100 samples, 0.07%)</title><rect x="44.8102%" y="853" width="0.0685%" height="15" fill="rgb(212,113,44)" fg:x="65417" fg:w="100"/><text x="45.0602%" y="863.50"></text></g><g><title>os::PlatformEvent::park (100 samples, 0.07%)</title><rect x="44.8102%" y="837" width="0.0685%" height="15" fill="rgb(226,150,43)" fg:x="65417" fg:w="100"/><text x="45.0602%" y="847.50"></text></g><g><title>[unknown] (58 samples, 0.04%)</title><rect x="44.8876%" y="965" width="0.0397%" height="15" fill="rgb(250,71,37)" fg:x="65530" fg:w="58"/><text x="45.1376%" y="975.50"></text></g><g><title>vframe::sender (52 samples, 0.04%)</title><rect x="44.8917%" y="949" width="0.0356%" height="15" fill="rgb(219,76,19)" fg:x="65536" fg:w="52"/><text x="45.1417%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.03%)</title><rect x="44.9287%" y="901" width="0.0288%" height="15" fill="rgb(250,39,11)" fg:x="65590" fg:w="42"/><text x="45.1787%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.03%)</title><rect x="44.9287%" y="885" width="0.0288%" height="15" fill="rgb(230,64,31)" fg:x="65590" fg:w="42"/><text x="45.1787%" y="895.50"></text></g><g><title>native_write_msr (42 samples, 0.03%)</title><rect x="44.9287%" y="869" width="0.0288%" height="15" fill="rgb(208,222,23)" fg:x="65590" fg:w="42"/><text x="45.1787%" y="879.50"></text></g><g><title>ret_from_fork (44 samples, 0.03%)</title><rect x="44.9280%" y="949" width="0.0301%" height="15" fill="rgb(227,125,18)" fg:x="65589" fg:w="44"/><text x="45.1780%" y="959.50"></text></g><g><title>schedule_tail (44 samples, 0.03%)</title><rect x="44.9280%" y="933" width="0.0301%" height="15" fill="rgb(234,210,9)" fg:x="65589" fg:w="44"/><text x="45.1780%" y="943.50"></text></g><g><title>finish_task_switch (44 samples, 0.03%)</title><rect x="44.9280%" y="917" width="0.0301%" height="15" fill="rgb(217,127,24)" fg:x="65589" fg:w="44"/><text x="45.1780%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (83 samples, 0.06%)</title><rect x="44.9903%" y="629" width="0.0569%" height="15" fill="rgb(239,141,48)" fg:x="65680" fg:w="83"/><text x="45.2403%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.06%)</title><rect x="44.9917%" y="613" width="0.0555%" height="15" fill="rgb(227,109,8)" fg:x="65682" fg:w="81"/><text x="45.2417%" y="623.50"></text></g><g><title>native_write_msr (81 samples, 0.06%)</title><rect x="44.9917%" y="597" width="0.0555%" height="15" fill="rgb(235,184,23)" fg:x="65682" fg:w="81"/><text x="45.2417%" y="607.50"></text></g><g><title>finish_task_switch (87 samples, 0.06%)</title><rect x="44.9889%" y="645" width="0.0596%" height="15" fill="rgb(227,226,48)" fg:x="65678" fg:w="87"/><text x="45.2389%" y="655.50"></text></g><g><title>futex_wait_queue_me (92 samples, 0.06%)</title><rect x="44.9876%" y="693" width="0.0630%" height="15" fill="rgb(206,150,11)" fg:x="65676" fg:w="92"/><text x="45.2376%" y="703.50"></text></g><g><title>schedule (90 samples, 0.06%)</title><rect x="44.9889%" y="677" width="0.0616%" height="15" fill="rgb(254,2,33)" fg:x="65678" fg:w="90"/><text x="45.2389%" y="687.50"></text></g><g><title>__schedule (90 samples, 0.06%)</title><rect x="44.9889%" y="661" width="0.0616%" height="15" fill="rgb(243,160,20)" fg:x="65678" fg:w="90"/><text x="45.2389%" y="671.50"></text></g><g><title>do_syscall_64 (97 samples, 0.07%)</title><rect x="44.9869%" y="757" width="0.0664%" height="15" fill="rgb(218,208,30)" fg:x="65675" fg:w="97"/><text x="45.2369%" y="767.50"></text></g><g><title>__x64_sys_futex (97 samples, 0.07%)</title><rect x="44.9869%" y="741" width="0.0664%" height="15" fill="rgb(224,120,49)" fg:x="65675" fg:w="97"/><text x="45.2369%" y="751.50"></text></g><g><title>do_futex (97 samples, 0.07%)</title><rect x="44.9869%" y="725" width="0.0664%" height="15" fill="rgb(246,12,2)" fg:x="65675" fg:w="97"/><text x="45.2369%" y="735.50"></text></g><g><title>futex_wait (96 samples, 0.07%)</title><rect x="44.9876%" y="709" width="0.0658%" height="15" fill="rgb(236,117,3)" fg:x="65676" fg:w="96"/><text x="45.2376%" y="719.50"></text></g><g><title>__pthread_cond_timedwait (99 samples, 0.07%)</title><rect x="44.9862%" y="821" width="0.0678%" height="15" fill="rgb(216,128,52)" fg:x="65674" fg:w="99"/><text x="45.2362%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (99 samples, 0.07%)</title><rect x="44.9862%" y="805" width="0.0678%" height="15" fill="rgb(246,145,19)" fg:x="65674" fg:w="99"/><text x="45.2362%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (98 samples, 0.07%)</title><rect x="44.9869%" y="789" width="0.0671%" height="15" fill="rgb(222,11,46)" fg:x="65675" fg:w="98"/><text x="45.2369%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.07%)</title><rect x="44.9869%" y="773" width="0.0671%" height="15" fill="rgb(245,82,36)" fg:x="65675" fg:w="98"/><text x="45.2369%" y="783.50"></text></g><g><title>Monitor::wait (102 samples, 0.07%)</title><rect x="44.9848%" y="869" width="0.0699%" height="15" fill="rgb(250,73,51)" fg:x="65672" fg:w="102"/><text x="45.2348%" y="879.50"></text></g><g><title>Monitor::IWait (102 samples, 0.07%)</title><rect x="44.9848%" y="853" width="0.0699%" height="15" fill="rgb(221,189,23)" fg:x="65672" fg:w="102"/><text x="45.2348%" y="863.50"></text></g><g><title>os::PlatformEvent::park (101 samples, 0.07%)</title><rect x="44.9855%" y="837" width="0.0692%" height="15" fill="rgb(210,33,7)" fg:x="65673" fg:w="101"/><text x="45.2355%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.02%)</title><rect x="45.0903%" y="613" width="0.0205%" height="15" fill="rgb(210,107,22)" fg:x="65826" fg:w="30"/><text x="45.3403%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.02%)</title><rect x="45.0917%" y="597" width="0.0192%" height="15" fill="rgb(222,116,37)" fg:x="65828" fg:w="28"/><text x="45.3417%" y="607.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="45.0931%" y="581" width="0.0178%" height="15" fill="rgb(254,17,48)" fg:x="65830" fg:w="26"/><text x="45.3431%" y="591.50"></text></g><g><title>finish_task_switch (32 samples, 0.02%)</title><rect x="45.0903%" y="629" width="0.0219%" height="15" fill="rgb(224,36,32)" fg:x="65826" fg:w="32"/><text x="45.3403%" y="639.50"></text></g><g><title>do_syscall_64 (34 samples, 0.02%)</title><rect x="45.0896%" y="741" width="0.0233%" height="15" fill="rgb(232,90,46)" fg:x="65825" fg:w="34"/><text x="45.3396%" y="751.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.02%)</title><rect x="45.0896%" y="725" width="0.0233%" height="15" fill="rgb(241,66,40)" fg:x="65825" fg:w="34"/><text x="45.3396%" y="735.50"></text></g><g><title>do_futex (34 samples, 0.02%)</title><rect x="45.0896%" y="709" width="0.0233%" height="15" fill="rgb(249,184,29)" fg:x="65825" fg:w="34"/><text x="45.3396%" y="719.50"></text></g><g><title>futex_wait (34 samples, 0.02%)</title><rect x="45.0896%" y="693" width="0.0233%" height="15" fill="rgb(231,181,1)" fg:x="65825" fg:w="34"/><text x="45.3396%" y="703.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.02%)</title><rect x="45.0896%" y="677" width="0.0233%" height="15" fill="rgb(224,94,2)" fg:x="65825" fg:w="34"/><text x="45.3396%" y="687.50"></text></g><g><title>schedule (33 samples, 0.02%)</title><rect x="45.0903%" y="661" width="0.0226%" height="15" fill="rgb(229,170,15)" fg:x="65826" fg:w="33"/><text x="45.3403%" y="671.50"></text></g><g><title>__schedule (33 samples, 0.02%)</title><rect x="45.0903%" y="645" width="0.0226%" height="15" fill="rgb(240,127,35)" fg:x="65826" fg:w="33"/><text x="45.3403%" y="655.50"></text></g><g><title>__pthread_cond_wait (35 samples, 0.02%)</title><rect x="45.0896%" y="805" width="0.0240%" height="15" fill="rgb(248,196,34)" fg:x="65825" fg:w="35"/><text x="45.3396%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.02%)</title><rect x="45.0896%" y="789" width="0.0240%" height="15" fill="rgb(236,137,7)" fg:x="65825" fg:w="35"/><text x="45.3396%" y="799.50"></text></g><g><title>futex_wait_cancelable (35 samples, 0.02%)</title><rect x="45.0896%" y="773" width="0.0240%" height="15" fill="rgb(235,127,16)" fg:x="65825" fg:w="35"/><text x="45.3396%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="45.0896%" y="757" width="0.0240%" height="15" fill="rgb(250,192,54)" fg:x="65825" fg:w="35"/><text x="45.3396%" y="767.50"></text></g><g><title>Monitor::wait (40 samples, 0.03%)</title><rect x="45.0869%" y="853" width="0.0274%" height="15" fill="rgb(218,98,20)" fg:x="65821" fg:w="40"/><text x="45.3369%" y="863.50"></text></g><g><title>Monitor::IWait (40 samples, 0.03%)</title><rect x="45.0869%" y="837" width="0.0274%" height="15" fill="rgb(230,176,47)" fg:x="65821" fg:w="40"/><text x="45.3369%" y="847.50"></text></g><g><title>os::PlatformEvent::park (36 samples, 0.02%)</title><rect x="45.0896%" y="821" width="0.0247%" height="15" fill="rgb(244,2,33)" fg:x="65825" fg:w="36"/><text x="45.3396%" y="831.50"></text></g><g><title>enqueue_task_fair (15 samples, 0.01%)</title><rect x="45.1328%" y="629" width="0.0103%" height="15" fill="rgb(231,100,17)" fg:x="65888" fg:w="15"/><text x="45.3828%" y="639.50"></text></g><g><title>ttwu_do_activate (23 samples, 0.02%)</title><rect x="45.1328%" y="645" width="0.0158%" height="15" fill="rgb(245,23,12)" fg:x="65888" fg:w="23"/><text x="45.3828%" y="655.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="45.1205%" y="741" width="0.0301%" height="15" fill="rgb(249,55,22)" fg:x="65870" fg:w="44"/><text x="45.3705%" y="751.50"></text></g><g><title>__x64_sys_futex (44 samples, 0.03%)</title><rect x="45.1205%" y="725" width="0.0301%" height="15" fill="rgb(207,134,9)" fg:x="65870" fg:w="44"/><text x="45.3705%" y="735.50"></text></g><g><title>do_futex (44 samples, 0.03%)</title><rect x="45.1205%" y="709" width="0.0301%" height="15" fill="rgb(218,134,0)" fg:x="65870" fg:w="44"/><text x="45.3705%" y="719.50"></text></g><g><title>futex_wake (44 samples, 0.03%)</title><rect x="45.1205%" y="693" width="0.0301%" height="15" fill="rgb(213,212,33)" fg:x="65870" fg:w="44"/><text x="45.3705%" y="703.50"></text></g><g><title>wake_up_q (40 samples, 0.03%)</title><rect x="45.1232%" y="677" width="0.0274%" height="15" fill="rgb(252,106,18)" fg:x="65874" fg:w="40"/><text x="45.3732%" y="687.50"></text></g><g><title>try_to_wake_up (39 samples, 0.03%)</title><rect x="45.1239%" y="661" width="0.0267%" height="15" fill="rgb(208,126,42)" fg:x="65875" fg:w="39"/><text x="45.3739%" y="671.50"></text></g><g><title>PosixSemaphore::signal (47 samples, 0.03%)</title><rect x="45.1191%" y="805" width="0.0322%" height="15" fill="rgb(246,175,29)" fg:x="65868" fg:w="47"/><text x="45.3691%" y="815.50"></text></g><g><title>__new_sem_post (47 samples, 0.03%)</title><rect x="45.1191%" y="789" width="0.0322%" height="15" fill="rgb(215,13,50)" fg:x="65868" fg:w="47"/><text x="45.3691%" y="799.50"></text></g><g><title>futex_wake (45 samples, 0.03%)</title><rect x="45.1205%" y="773" width="0.0308%" height="15" fill="rgb(216,172,15)" fg:x="65870" fg:w="45"/><text x="45.3705%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.03%)</title><rect x="45.1205%" y="757" width="0.0308%" height="15" fill="rgb(212,103,13)" fg:x="65870" fg:w="45"/><text x="45.3705%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="45.1561%" y="597" width="0.0185%" height="15" fill="rgb(231,171,36)" fg:x="65922" fg:w="27"/><text x="45.4061%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.02%)</title><rect x="45.1561%" y="581" width="0.0185%" height="15" fill="rgb(250,123,20)" fg:x="65922" fg:w="27"/><text x="45.4061%" y="591.50"></text></g><g><title>native_write_msr (27 samples, 0.02%)</title><rect x="45.1561%" y="565" width="0.0185%" height="15" fill="rgb(212,53,50)" fg:x="65922" fg:w="27"/><text x="45.4061%" y="575.50"></text></g><g><title>finish_task_switch (30 samples, 0.02%)</title><rect x="45.1547%" y="613" width="0.0205%" height="15" fill="rgb(243,54,12)" fg:x="65920" fg:w="30"/><text x="45.4047%" y="623.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (90 samples, 0.06%)</title><rect x="45.1157%" y="853" width="0.0616%" height="15" fill="rgb(234,101,34)" fg:x="65863" fg:w="90"/><text x="45.3657%" y="863.50"></text></g><g><title>WorkGang::run_task (85 samples, 0.06%)</title><rect x="45.1191%" y="837" width="0.0582%" height="15" fill="rgb(254,67,22)" fg:x="65868" fg:w="85"/><text x="45.3691%" y="847.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (85 samples, 0.06%)</title><rect x="45.1191%" y="821" width="0.0582%" height="15" fill="rgb(250,35,47)" fg:x="65868" fg:w="85"/><text x="45.3691%" y="831.50"></text></g><g><title>PosixSemaphore::wait (38 samples, 0.03%)</title><rect x="45.1513%" y="805" width="0.0260%" height="15" fill="rgb(226,126,38)" fg:x="65915" fg:w="38"/><text x="45.4013%" y="815.50"></text></g><g><title>__new_sem_wait_slow (38 samples, 0.03%)</title><rect x="45.1513%" y="789" width="0.0260%" height="15" fill="rgb(216,138,53)" fg:x="65915" fg:w="38"/><text x="45.4013%" y="799.50"></text></g><g><title>do_futex_wait (37 samples, 0.03%)</title><rect x="45.1520%" y="773" width="0.0253%" height="15" fill="rgb(246,199,43)" fg:x="65916" fg:w="37"/><text x="45.4020%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (37 samples, 0.03%)</title><rect x="45.1520%" y="757" width="0.0253%" height="15" fill="rgb(232,125,11)" fg:x="65916" fg:w="37"/><text x="45.4020%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="45.1527%" y="741" width="0.0247%" height="15" fill="rgb(218,219,45)" fg:x="65917" fg:w="36"/><text x="45.4027%" y="751.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="45.1527%" y="725" width="0.0247%" height="15" fill="rgb(216,102,54)" fg:x="65917" fg:w="36"/><text x="45.4027%" y="735.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="45.1527%" y="709" width="0.0247%" height="15" fill="rgb(250,228,7)" fg:x="65917" fg:w="36"/><text x="45.4027%" y="719.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="45.1527%" y="693" width="0.0247%" height="15" fill="rgb(226,125,25)" fg:x="65917" fg:w="36"/><text x="45.4027%" y="703.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="45.1527%" y="677" width="0.0247%" height="15" fill="rgb(224,165,27)" fg:x="65917" fg:w="36"/><text x="45.4027%" y="687.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.02%)</title><rect x="45.1527%" y="661" width="0.0247%" height="15" fill="rgb(233,86,3)" fg:x="65917" fg:w="36"/><text x="45.4027%" y="671.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="45.1533%" y="645" width="0.0240%" height="15" fill="rgb(228,116,20)" fg:x="65918" fg:w="35"/><text x="45.4033%" y="655.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="45.1533%" y="629" width="0.0240%" height="15" fill="rgb(209,192,17)" fg:x="65918" fg:w="35"/><text x="45.4033%" y="639.50"></text></g><g><title>SafepointSynchronize::begin (204 samples, 0.14%)</title><rect x="45.0547%" y="869" width="0.1397%" height="15" fill="rgb(224,88,34)" fg:x="65774" fg:w="204"/><text x="45.3047%" y="879.50"></text></g><g><title>VM_CollectForMetadataAllocation::doit (18 samples, 0.01%)</title><rect x="45.2177%" y="837" width="0.0123%" height="15" fill="rgb(233,38,6)" fg:x="66012" fg:w="18"/><text x="45.4677%" y="847.50"></text></g><g><title>VM_CollectForMetadataAllocation::initiate_concurrent_GC (18 samples, 0.01%)</title><rect x="45.2177%" y="821" width="0.0123%" height="15" fill="rgb(212,59,30)" fg:x="66012" fg:w="18"/><text x="45.4677%" y="831.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (18 samples, 0.01%)</title><rect x="45.2177%" y="805" width="0.0123%" height="15" fill="rgb(213,80,3)" fg:x="66012" fg:w="18"/><text x="45.4677%" y="815.50"></text></g><g><title>CodeHeap::next_used (29 samples, 0.02%)</title><rect x="45.2342%" y="789" width="0.0199%" height="15" fill="rgb(251,178,7)" fg:x="66036" fg:w="29"/><text x="45.4842%" y="799.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (42 samples, 0.03%)</title><rect x="45.2301%" y="805" width="0.0288%" height="15" fill="rgb(213,154,26)" fg:x="66030" fg:w="42"/><text x="45.4801%" y="815.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (43 samples, 0.03%)</title><rect x="45.2301%" y="821" width="0.0295%" height="15" fill="rgb(238,165,49)" fg:x="66030" fg:w="43"/><text x="45.4801%" y="831.50"></text></g><g><title>VM_Deoptimize::doit (44 samples, 0.03%)</title><rect x="45.2301%" y="837" width="0.0301%" height="15" fill="rgb(248,91,46)" fg:x="66030" fg:w="44"/><text x="45.4801%" y="847.50"></text></g><g><title>VM_G1CollectForAllocation::doit (21 samples, 0.01%)</title><rect x="45.2609%" y="837" width="0.0144%" height="15" fill="rgb(244,21,52)" fg:x="66075" fg:w="21"/><text x="45.5109%" y="847.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (21 samples, 0.01%)</title><rect x="45.2609%" y="821" width="0.0144%" height="15" fill="rgb(247,122,20)" fg:x="66075" fg:w="21"/><text x="45.5109%" y="831.50"></text></g><g><title>VM_Operation::evaluate (110 samples, 0.08%)</title><rect x="45.2040%" y="853" width="0.0753%" height="15" fill="rgb(218,27,9)" fg:x="65992" fg:w="110"/><text x="45.4540%" y="863.50"></text></g><g><title>VMThread::evaluate_operation (113 samples, 0.08%)</title><rect x="45.2027%" y="869" width="0.0774%" height="15" fill="rgb(246,7,6)" fg:x="65990" fg:w="113"/><text x="45.4527%" y="879.50"></text></g><g><title>Thread::call_run (471 samples, 0.32%)</title><rect x="44.9622%" y="917" width="0.3226%" height="15" fill="rgb(227,135,54)" fg:x="65639" fg:w="471"/><text x="45.2122%" y="927.50"></text></g><g><title>VMThread::run (471 samples, 0.32%)</title><rect x="44.9622%" y="901" width="0.3226%" height="15" fill="rgb(247,14,11)" fg:x="65639" fg:w="471"/><text x="45.2122%" y="911.50"></text></g><g><title>VMThread::loop (471 samples, 0.32%)</title><rect x="44.9622%" y="885" width="0.3226%" height="15" fill="rgb(206,149,34)" fg:x="65639" fg:w="471"/><text x="45.2122%" y="895.50"></text></g><g><title>__GI___clone (526 samples, 0.36%)</title><rect x="44.9273%" y="965" width="0.3603%" height="15" fill="rgb(227,228,4)" fg:x="65588" fg:w="526"/><text x="45.1773%" y="975.50"></text></g><g><title>start_thread (481 samples, 0.33%)</title><rect x="44.9581%" y="949" width="0.3295%" height="15" fill="rgb(238,218,28)" fg:x="65633" fg:w="481"/><text x="45.2081%" y="959.50"></text></g><g><title>thread_native_entry (478 samples, 0.33%)</title><rect x="44.9602%" y="933" width="0.3274%" height="15" fill="rgb(252,86,40)" fg:x="65636" fg:w="478"/><text x="45.2102%" y="943.50"></text></g><g><title>VM_Thread (601 samples, 0.41%)</title><rect x="44.8787%" y="981" width="0.4117%" height="15" fill="rgb(251,225,11)" fg:x="65517" fg:w="601"/><text x="45.1287%" y="991.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.03%)</title><rect x="45.4013%" y="821" width="0.0329%" height="15" fill="rgb(206,46,49)" fg:x="66280" fg:w="48"/><text x="45.6513%" y="831.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.03%)</title><rect x="45.4013%" y="805" width="0.0329%" height="15" fill="rgb(245,128,24)" fg:x="66280" fg:w="48"/><text x="45.6513%" y="815.50"></text></g><g><title>native_write_msr (47 samples, 0.03%)</title><rect x="45.4020%" y="789" width="0.0322%" height="15" fill="rgb(219,177,34)" fg:x="66281" fg:w="47"/><text x="45.6520%" y="799.50"></text></g><g><title>finish_task_switch (57 samples, 0.04%)</title><rect x="45.3979%" y="837" width="0.0390%" height="15" fill="rgb(218,60,48)" fg:x="66275" fg:w="57"/><text x="45.6479%" y="847.50"></text></g><g><title>schedule_hrtimeout_range_clock (63 samples, 0.04%)</title><rect x="45.3965%" y="885" width="0.0432%" height="15" fill="rgb(221,11,5)" fg:x="66273" fg:w="63"/><text x="45.6465%" y="895.50"></text></g><g><title>schedule (62 samples, 0.04%)</title><rect x="45.3972%" y="869" width="0.0425%" height="15" fill="rgb(220,148,13)" fg:x="66274" fg:w="62"/><text x="45.6472%" y="879.50"></text></g><g><title>__schedule (61 samples, 0.04%)</title><rect x="45.3979%" y="853" width="0.0418%" height="15" fill="rgb(210,16,3)" fg:x="66275" fg:w="61"/><text x="45.6479%" y="863.50"></text></g><g><title>__x64_sys_epoll_pwait (68 samples, 0.05%)</title><rect x="45.3945%" y="917" width="0.0466%" height="15" fill="rgb(236,80,2)" fg:x="66270" fg:w="68"/><text x="45.6445%" y="927.50"></text></g><g><title>do_epoll_wait (68 samples, 0.05%)</title><rect x="45.3945%" y="901" width="0.0466%" height="15" fill="rgb(239,129,19)" fg:x="66270" fg:w="68"/><text x="45.6445%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (116 samples, 0.08%)</title><rect x="45.4520%" y="805" width="0.0795%" height="15" fill="rgb(220,106,35)" fg:x="66354" fg:w="116"/><text x="45.7020%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (113 samples, 0.08%)</title><rect x="45.4540%" y="789" width="0.0774%" height="15" fill="rgb(252,139,45)" fg:x="66357" fg:w="113"/><text x="45.7040%" y="799.50"></text></g><g><title>native_write_msr (113 samples, 0.08%)</title><rect x="45.4540%" y="773" width="0.0774%" height="15" fill="rgb(229,8,36)" fg:x="66357" fg:w="113"/><text x="45.7040%" y="783.50"></text></g><g><title>finish_task_switch (128 samples, 0.09%)</title><rect x="45.4479%" y="821" width="0.0877%" height="15" fill="rgb(230,126,33)" fg:x="66348" fg:w="128"/><text x="45.6979%" y="831.50"></text></g><g><title>futex_wait_queue_me (139 samples, 0.10%)</title><rect x="45.4431%" y="869" width="0.0952%" height="15" fill="rgb(239,140,21)" fg:x="66341" fg:w="139"/><text x="45.6931%" y="879.50"></text></g><g><title>schedule (137 samples, 0.09%)</title><rect x="45.4445%" y="853" width="0.0938%" height="15" fill="rgb(254,104,9)" fg:x="66343" fg:w="137"/><text x="45.6945%" y="863.50"></text></g><g><title>__schedule (137 samples, 0.09%)</title><rect x="45.4445%" y="837" width="0.0938%" height="15" fill="rgb(239,52,14)" fg:x="66343" fg:w="137"/><text x="45.6945%" y="847.50"></text></g><g><title>futex_wait (143 samples, 0.10%)</title><rect x="45.4417%" y="885" width="0.0980%" height="15" fill="rgb(208,227,44)" fg:x="66339" fg:w="143"/><text x="45.6917%" y="895.50"></text></g><g><title>__x64_sys_futex (151 samples, 0.10%)</title><rect x="45.4417%" y="917" width="0.1034%" height="15" fill="rgb(246,18,19)" fg:x="66339" fg:w="151"/><text x="45.6917%" y="927.50"></text></g><g><title>do_futex (151 samples, 0.10%)</title><rect x="45.4417%" y="901" width="0.1034%" height="15" fill="rgb(235,228,25)" fg:x="66339" fg:w="151"/><text x="45.6917%" y="911.50"></text></g><g><title>__x64_sys_nanosleep (48 samples, 0.03%)</title><rect x="45.5541%" y="917" width="0.0329%" height="15" fill="rgb(240,156,20)" fg:x="66503" fg:w="48"/><text x="45.8041%" y="927.50"></text></g><g><title>hrtimer_nanosleep (47 samples, 0.03%)</title><rect x="45.5547%" y="901" width="0.0322%" height="15" fill="rgb(224,8,20)" fg:x="66504" fg:w="47"/><text x="45.8047%" y="911.50"></text></g><g><title>do_nanosleep (47 samples, 0.03%)</title><rect x="45.5547%" y="885" width="0.0322%" height="15" fill="rgb(214,12,52)" fg:x="66504" fg:w="47"/><text x="45.8047%" y="895.50"></text></g><g><title>schedule (47 samples, 0.03%)</title><rect x="45.5547%" y="869" width="0.0322%" height="15" fill="rgb(211,220,47)" fg:x="66504" fg:w="47"/><text x="45.8047%" y="879.50"></text></g><g><title>__schedule (47 samples, 0.03%)</title><rect x="45.5547%" y="853" width="0.0322%" height="15" fill="rgb(250,173,5)" fg:x="66504" fg:w="47"/><text x="45.8047%" y="863.50"></text></g><g><title>finish_task_switch (43 samples, 0.03%)</title><rect x="45.5575%" y="837" width="0.0295%" height="15" fill="rgb(250,125,52)" fg:x="66508" fg:w="43"/><text x="45.8075%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.03%)</title><rect x="45.5589%" y="821" width="0.0281%" height="15" fill="rgb(209,133,18)" fg:x="66510" fg:w="41"/><text x="45.8089%" y="831.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (40 samples, 0.03%)</title><rect x="45.5595%" y="805" width="0.0274%" height="15" fill="rgb(216,173,22)" fg:x="66511" fg:w="40"/><text x="45.8095%" y="815.50"></text></g><g><title>native_write_msr (40 samples, 0.03%)</title><rect x="45.5595%" y="789" width="0.0274%" height="15" fill="rgb(205,3,22)" fg:x="66511" fg:w="40"/><text x="45.8095%" y="799.50"></text></g><g><title>do_syscall_64 (296 samples, 0.20%)</title><rect x="45.3924%" y="933" width="0.2028%" height="15" fill="rgb(248,22,20)" fg:x="66267" fg:w="296"/><text x="45.6424%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (301 samples, 0.21%)</title><rect x="45.3917%" y="949" width="0.2062%" height="15" fill="rgb(233,6,29)" fg:x="66266" fg:w="301"/><text x="45.6417%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.03%)</title><rect x="45.6000%" y="901" width="0.0267%" height="15" fill="rgb(240,22,54)" fg:x="66570" fg:w="39"/><text x="45.8500%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (38 samples, 0.03%)</title><rect x="45.6006%" y="885" width="0.0260%" height="15" fill="rgb(231,133,32)" fg:x="66571" fg:w="38"/><text x="45.8506%" y="895.50"></text></g><g><title>native_write_msr (38 samples, 0.03%)</title><rect x="45.6006%" y="869" width="0.0260%" height="15" fill="rgb(248,193,4)" fg:x="66571" fg:w="38"/><text x="45.8506%" y="879.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (479 samples, 0.33%)</title><rect x="45.2992%" y="965" width="0.3281%" height="15" fill="rgb(211,178,46)" fg:x="66131" fg:w="479"/><text x="45.5492%" y="975.50"></text></g><g><title>ret_from_fork (42 samples, 0.03%)</title><rect x="45.5986%" y="949" width="0.0288%" height="15" fill="rgb(224,5,42)" fg:x="66568" fg:w="42"/><text x="45.8486%" y="959.50"></text></g><g><title>schedule_tail (40 samples, 0.03%)</title><rect x="45.6000%" y="933" width="0.0274%" height="15" fill="rgb(239,176,25)" fg:x="66570" fg:w="40"/><text x="45.8500%" y="943.50"></text></g><g><title>finish_task_switch (40 samples, 0.03%)</title><rect x="45.6000%" y="917" width="0.0274%" height="15" fill="rgb(245,187,50)" fg:x="66570" fg:w="40"/><text x="45.8500%" y="927.50"></text></g><g><title>bazel (500 samples, 0.34%)</title><rect x="45.2979%" y="981" width="0.3425%" height="15" fill="rgb(248,24,15)" fg:x="66129" fg:w="500"/><text x="45.5479%" y="991.50"></text></g><g><title>__libc_start_main (15 samples, 0.01%)</title><rect x="45.6582%" y="949" width="0.0103%" height="15" fill="rgb(205,166,13)" fg:x="66655" fg:w="15"/><text x="45.9082%" y="959.50"></text></g><g><title>main (15 samples, 0.01%)</title><rect x="45.6582%" y="933" width="0.0103%" height="15" fill="rgb(208,114,23)" fg:x="66655" fg:w="15"/><text x="45.9082%" y="943.50"></text></g><g><title>_dl_map_segments (17 samples, 0.01%)</title><rect x="45.6739%" y="805" width="0.0116%" height="15" fill="rgb(239,127,18)" fg:x="66678" fg:w="17"/><text x="45.9239%" y="815.50"></text></g><g><title>__mmap64 (16 samples, 0.01%)</title><rect x="45.6746%" y="789" width="0.0110%" height="15" fill="rgb(219,154,28)" fg:x="66679" fg:w="16"/><text x="45.9246%" y="799.50"></text></g><g><title>__mmap64 (16 samples, 0.01%)</title><rect x="45.6746%" y="773" width="0.0110%" height="15" fill="rgb(225,157,23)" fg:x="66679" fg:w="16"/><text x="45.9246%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="45.6753%" y="757" width="0.0103%" height="15" fill="rgb(219,8,6)" fg:x="66680" fg:w="15"/><text x="45.9253%" y="767.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="45.6753%" y="741" width="0.0103%" height="15" fill="rgb(212,47,6)" fg:x="66680" fg:w="15"/><text x="45.9253%" y="751.50"></text></g><g><title>_dl_map_object_from_fd (26 samples, 0.02%)</title><rect x="45.6732%" y="821" width="0.0178%" height="15" fill="rgb(224,190,4)" fg:x="66677" fg:w="26"/><text x="45.9232%" y="831.50"></text></g><g><title>_dl_map_object_deps (34 samples, 0.02%)</title><rect x="45.6705%" y="885" width="0.0233%" height="15" fill="rgb(239,183,29)" fg:x="66673" fg:w="34"/><text x="45.9205%" y="895.50"></text></g><g><title>_dl_catch_exception (32 samples, 0.02%)</title><rect x="45.6719%" y="869" width="0.0219%" height="15" fill="rgb(213,57,7)" fg:x="66675" fg:w="32"/><text x="45.9219%" y="879.50"></text></g><g><title>openaux (32 samples, 0.02%)</title><rect x="45.6719%" y="853" width="0.0219%" height="15" fill="rgb(216,148,1)" fg:x="66675" fg:w="32"/><text x="45.9219%" y="863.50"></text></g><g><title>_dl_map_object (32 samples, 0.02%)</title><rect x="45.6719%" y="837" width="0.0219%" height="15" fill="rgb(236,182,29)" fg:x="66675" fg:w="32"/><text x="45.9219%" y="847.50"></text></g><g><title>elf_machine_rela (59 samples, 0.04%)</title><rect x="45.6986%" y="853" width="0.0404%" height="15" fill="rgb(244,120,48)" fg:x="66714" fg:w="59"/><text x="45.9486%" y="863.50"></text></g><g><title>_dl_lookup_symbol_x (44 samples, 0.03%)</title><rect x="45.7089%" y="837" width="0.0301%" height="15" fill="rgb(206,71,34)" fg:x="66729" fg:w="44"/><text x="45.9589%" y="847.50"></text></g><g><title>do_lookup_x (27 samples, 0.02%)</title><rect x="45.7205%" y="821" width="0.0185%" height="15" fill="rgb(242,32,6)" fg:x="66746" fg:w="27"/><text x="45.9705%" y="831.50"></text></g><g><title>elf_dynamic_do_Rela (63 samples, 0.04%)</title><rect x="45.6965%" y="869" width="0.0432%" height="15" fill="rgb(241,35,3)" fg:x="66711" fg:w="63"/><text x="45.9465%" y="879.50"></text></g><g><title>_dl_relocate_object (66 samples, 0.05%)</title><rect x="45.6952%" y="885" width="0.0452%" height="15" fill="rgb(222,62,19)" fg:x="66709" fg:w="66"/><text x="45.9452%" y="895.50"></text></g><g><title>[ld-2.31.so] (106 samples, 0.07%)</title><rect x="45.6691%" y="901" width="0.0726%" height="15" fill="rgb(223,110,41)" fg:x="66671" fg:w="106"/><text x="45.9191%" y="911.50"></text></g><g><title>_dl_start_final (109 samples, 0.07%)</title><rect x="45.6684%" y="933" width="0.0747%" height="15" fill="rgb(208,224,4)" fg:x="66670" fg:w="109"/><text x="45.9184%" y="943.50"></text></g><g><title>_dl_sysdep_start (109 samples, 0.07%)</title><rect x="45.6684%" y="917" width="0.0747%" height="15" fill="rgb(241,137,19)" fg:x="66670" fg:w="109"/><text x="45.9184%" y="927.50"></text></g><g><title>_start (125 samples, 0.09%)</title><rect x="45.6582%" y="965" width="0.0856%" height="15" fill="rgb(244,24,17)" fg:x="66655" fg:w="125"/><text x="45.9082%" y="975.50"></text></g><g><title>_dl_start (110 samples, 0.08%)</title><rect x="45.6684%" y="949" width="0.0753%" height="15" fill="rgb(245,178,49)" fg:x="66670" fg:w="110"/><text x="45.9184%" y="959.50"></text></g><g><title>build-runfiles (173 samples, 0.12%)</title><rect x="45.6411%" y="981" width="0.1185%" height="15" fill="rgb(219,160,38)" fg:x="66630" fg:w="173"/><text x="45.8911%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="45.7472%" y="965" width="0.0123%" height="15" fill="rgb(228,137,14)" fg:x="66785" fg:w="18"/><text x="45.9972%" y="975.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="45.7472%" y="949" width="0.0123%" height="15" fill="rgb(237,134,11)" fg:x="66785" fg:w="18"/><text x="45.9972%" y="959.50"></text></g><g><title>__GI__dl_catch_exception (19 samples, 0.01%)</title><rect x="45.7924%" y="693" width="0.0130%" height="15" fill="rgb(211,126,44)" fg:x="66851" fg:w="19"/><text x="46.0424%" y="703.50"></text></g><g><title>dl_open_worker (19 samples, 0.01%)</title><rect x="45.7924%" y="677" width="0.0130%" height="15" fill="rgb(226,171,33)" fg:x="66851" fg:w="19"/><text x="46.0424%" y="687.50"></text></g><g><title>__GI___nss_lookup (22 samples, 0.02%)</title><rect x="45.7917%" y="837" width="0.0151%" height="15" fill="rgb(253,99,13)" fg:x="66850" fg:w="22"/><text x="46.0417%" y="847.50"></text></g><g><title>__GI___nss_lookup_function (22 samples, 0.02%)</title><rect x="45.7917%" y="821" width="0.0151%" height="15" fill="rgb(244,48,7)" fg:x="66850" fg:w="22"/><text x="46.0417%" y="831.50"></text></g><g><title>nss_load_library (22 samples, 0.02%)</title><rect x="45.7917%" y="805" width="0.0151%" height="15" fill="rgb(244,217,54)" fg:x="66850" fg:w="22"/><text x="46.0417%" y="815.50"></text></g><g><title>__GI___libc_dlopen_mode (22 samples, 0.02%)</title><rect x="45.7917%" y="789" width="0.0151%" height="15" fill="rgb(224,15,18)" fg:x="66850" fg:w="22"/><text x="46.0417%" y="799.50"></text></g><g><title>dlerror_run (21 samples, 0.01%)</title><rect x="45.7924%" y="773" width="0.0144%" height="15" fill="rgb(244,99,12)" fg:x="66851" fg:w="21"/><text x="46.0424%" y="783.50"></text></g><g><title>__GI__dl_catch_error (21 samples, 0.01%)</title><rect x="45.7924%" y="757" width="0.0144%" height="15" fill="rgb(233,226,8)" fg:x="66851" fg:w="21"/><text x="46.0424%" y="767.50"></text></g><g><title>__GI__dl_catch_exception (21 samples, 0.01%)</title><rect x="45.7924%" y="741" width="0.0144%" height="15" fill="rgb(229,211,3)" fg:x="66851" fg:w="21"/><text x="46.0424%" y="751.50"></text></g><g><title>do_dlopen (21 samples, 0.01%)</title><rect x="45.7924%" y="725" width="0.0144%" height="15" fill="rgb(216,140,21)" fg:x="66851" fg:w="21"/><text x="46.0424%" y="735.50"></text></g><g><title>_dl_open (21 samples, 0.01%)</title><rect x="45.7924%" y="709" width="0.0144%" height="15" fill="rgb(234,122,30)" fg:x="66851" fg:w="21"/><text x="46.0424%" y="719.50"></text></g><g><title>__nscd_getpwuid_r (16 samples, 0.01%)</title><rect x="45.8109%" y="837" width="0.0110%" height="15" fill="rgb(236,25,46)" fg:x="66878" fg:w="16"/><text x="46.0609%" y="847.50"></text></g><g><title>nscd_getpw_r (16 samples, 0.01%)</title><rect x="45.8109%" y="821" width="0.0110%" height="15" fill="rgb(217,52,54)" fg:x="66878" fg:w="16"/><text x="46.0609%" y="831.50"></text></g><g><title>getpwuid (47 samples, 0.03%)</title><rect x="45.7911%" y="869" width="0.0322%" height="15" fill="rgb(222,29,26)" fg:x="66849" fg:w="47"/><text x="46.0411%" y="879.50"></text></g><g><title>__getpwuid_r (46 samples, 0.03%)</title><rect x="45.7917%" y="853" width="0.0315%" height="15" fill="rgb(216,177,29)" fg:x="66850" fg:w="46"/><text x="46.0417%" y="863.50"></text></g><g><title>[bash] (57 samples, 0.04%)</title><rect x="45.7856%" y="885" width="0.0390%" height="15" fill="rgb(247,136,51)" fg:x="66841" fg:w="57"/><text x="46.0356%" y="895.50"></text></g><g><title>initialize_shell_variables (76 samples, 0.05%)</title><rect x="45.7856%" y="901" width="0.0521%" height="15" fill="rgb(231,47,47)" fg:x="66841" fg:w="76"/><text x="46.0356%" y="911.50"></text></g><g><title>[bash] (93 samples, 0.06%)</title><rect x="45.7774%" y="917" width="0.0637%" height="15" fill="rgb(211,192,36)" fg:x="66829" fg:w="93"/><text x="46.0274%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="45.8609%" y="613" width="0.0123%" height="15" fill="rgb(229,156,32)" fg:x="66951" fg:w="18"/><text x="46.1109%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (16 samples, 0.01%)</title><rect x="45.8623%" y="597" width="0.0110%" height="15" fill="rgb(248,213,20)" fg:x="66953" fg:w="16"/><text x="46.1123%" y="607.50"></text></g><g><title>native_write_msr (16 samples, 0.01%)</title><rect x="45.8623%" y="581" width="0.0110%" height="15" fill="rgb(217,64,7)" fg:x="66953" fg:w="16"/><text x="46.1123%" y="591.50"></text></g><g><title>sched_exec (22 samples, 0.02%)</title><rect x="45.8596%" y="693" width="0.0151%" height="15" fill="rgb(232,142,8)" fg:x="66949" fg:w="22"/><text x="46.1096%" y="703.50"></text></g><g><title>stop_one_cpu (20 samples, 0.01%)</title><rect x="45.8609%" y="677" width="0.0137%" height="15" fill="rgb(224,92,44)" fg:x="66951" fg:w="20"/><text x="46.1109%" y="687.50"></text></g><g><title>_cond_resched (20 samples, 0.01%)</title><rect x="45.8609%" y="661" width="0.0137%" height="15" fill="rgb(214,169,17)" fg:x="66951" fg:w="20"/><text x="46.1109%" y="671.50"></text></g><g><title>__schedule (20 samples, 0.01%)</title><rect x="45.8609%" y="645" width="0.0137%" height="15" fill="rgb(210,59,37)" fg:x="66951" fg:w="20"/><text x="46.1109%" y="655.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="45.8609%" y="629" width="0.0137%" height="15" fill="rgb(214,116,48)" fg:x="66951" fg:w="20"/><text x="46.1109%" y="639.50"></text></g><g><title>bprm_execve (34 samples, 0.02%)</title><rect x="45.8534%" y="709" width="0.0233%" height="15" fill="rgb(244,191,6)" fg:x="66940" fg:w="34"/><text x="46.1034%" y="719.50"></text></g><g><title>shell_execve (38 samples, 0.03%)</title><rect x="45.8520%" y="805" width="0.0260%" height="15" fill="rgb(241,50,52)" fg:x="66938" fg:w="38"/><text x="46.1020%" y="815.50"></text></g><g><title>__GI_execve (38 samples, 0.03%)</title><rect x="45.8520%" y="789" width="0.0260%" height="15" fill="rgb(236,75,39)" fg:x="66938" fg:w="38"/><text x="46.1020%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="45.8520%" y="773" width="0.0260%" height="15" fill="rgb(236,99,0)" fg:x="66938" fg:w="38"/><text x="46.1020%" y="783.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="45.8520%" y="757" width="0.0260%" height="15" fill="rgb(207,202,15)" fg:x="66938" fg:w="38"/><text x="46.1020%" y="767.50"></text></g><g><title>__x64_sys_execve (38 samples, 0.03%)</title><rect x="45.8520%" y="741" width="0.0260%" height="15" fill="rgb(233,207,14)" fg:x="66938" fg:w="38"/><text x="46.1020%" y="751.50"></text></g><g><title>do_execveat_common (38 samples, 0.03%)</title><rect x="45.8520%" y="725" width="0.0260%" height="15" fill="rgb(226,27,51)" fg:x="66938" fg:w="38"/><text x="46.1020%" y="735.50"></text></g><g><title>[bash] (48 samples, 0.03%)</title><rect x="45.8465%" y="837" width="0.0329%" height="15" fill="rgb(206,104,42)" fg:x="66930" fg:w="48"/><text x="46.0965%" y="847.50"></text></g><g><title>exec_builtin (42 samples, 0.03%)</title><rect x="45.8507%" y="821" width="0.0288%" height="15" fill="rgb(212,225,4)" fg:x="66936" fg:w="42"/><text x="46.1007%" y="831.50"></text></g><g><title>execute_command (59 samples, 0.04%)</title><rect x="45.8465%" y="869" width="0.0404%" height="15" fill="rgb(233,96,42)" fg:x="66930" fg:w="59"/><text x="46.0965%" y="879.50"></text></g><g><title>execute_command_internal (59 samples, 0.04%)</title><rect x="45.8465%" y="853" width="0.0404%" height="15" fill="rgb(229,21,32)" fg:x="66930" fg:w="59"/><text x="46.0965%" y="863.50"></text></g><g><title>execute_command (62 samples, 0.04%)</title><rect x="45.8452%" y="901" width="0.0425%" height="15" fill="rgb(226,216,24)" fg:x="66928" fg:w="62"/><text x="46.0952%" y="911.50"></text></g><g><title>execute_command_internal (62 samples, 0.04%)</title><rect x="45.8452%" y="885" width="0.0425%" height="15" fill="rgb(221,163,17)" fg:x="66928" fg:w="62"/><text x="46.0952%" y="895.50"></text></g><g><title>[bash] (17 samples, 0.01%)</title><rect x="45.8876%" y="837" width="0.0116%" height="15" fill="rgb(216,216,42)" fg:x="66990" fg:w="17"/><text x="46.1376%" y="847.50"></text></g><g><title>[bash] (21 samples, 0.01%)</title><rect x="45.8876%" y="853" width="0.0144%" height="15" fill="rgb(240,118,7)" fg:x="66990" fg:w="21"/><text x="46.1376%" y="863.50"></text></g><g><title>reader_loop (85 samples, 0.06%)</title><rect x="45.8452%" y="917" width="0.0582%" height="15" fill="rgb(221,67,37)" fg:x="66928" fg:w="85"/><text x="46.0952%" y="927.50"></text></g><g><title>read_command (23 samples, 0.02%)</title><rect x="45.8876%" y="901" width="0.0158%" height="15" fill="rgb(241,32,44)" fg:x="66990" fg:w="23"/><text x="46.1376%" y="911.50"></text></g><g><title>parse_command (23 samples, 0.02%)</title><rect x="45.8876%" y="885" width="0.0158%" height="15" fill="rgb(235,204,43)" fg:x="66990" fg:w="23"/><text x="46.1376%" y="895.50"></text></g><g><title>yyparse (23 samples, 0.02%)</title><rect x="45.8876%" y="869" width="0.0158%" height="15" fill="rgb(213,116,10)" fg:x="66990" fg:w="23"/><text x="46.1376%" y="879.50"></text></g><g><title>set_default_locale (16 samples, 0.01%)</title><rect x="45.9041%" y="917" width="0.0110%" height="15" fill="rgb(239,15,48)" fg:x="67014" fg:w="16"/><text x="46.1541%" y="927.50"></text></g><g><title>__libc_start_main (203 samples, 0.14%)</title><rect x="45.7774%" y="949" width="0.1391%" height="15" fill="rgb(207,123,36)" fg:x="66829" fg:w="203"/><text x="46.0274%" y="959.50"></text></g><g><title>main (203 samples, 0.14%)</title><rect x="45.7774%" y="933" width="0.1391%" height="15" fill="rgb(209,103,30)" fg:x="66829" fg:w="203"/><text x="46.0274%" y="943.50"></text></g><g><title>do_mmap (23 samples, 0.02%)</title><rect x="45.9246%" y="693" width="0.0158%" height="15" fill="rgb(238,100,19)" fg:x="67044" fg:w="23"/><text x="46.1746%" y="703.50"></text></g><g><title>mmap_region (23 samples, 0.02%)</title><rect x="45.9246%" y="677" width="0.0158%" height="15" fill="rgb(244,30,14)" fg:x="67044" fg:w="23"/><text x="46.1746%" y="687.50"></text></g><g><title>ksys_mmap_pgoff (24 samples, 0.02%)</title><rect x="45.9246%" y="725" width="0.0164%" height="15" fill="rgb(249,174,6)" fg:x="67044" fg:w="24"/><text x="46.1746%" y="735.50"></text></g><g><title>vm_mmap_pgoff (24 samples, 0.02%)</title><rect x="45.9246%" y="709" width="0.0164%" height="15" fill="rgb(235,213,41)" fg:x="67044" fg:w="24"/><text x="46.1746%" y="719.50"></text></g><g><title>_dl_map_segments (28 samples, 0.02%)</title><rect x="45.9226%" y="805" width="0.0192%" height="15" fill="rgb(213,118,6)" fg:x="67041" fg:w="28"/><text x="46.1726%" y="815.50"></text></g><g><title>__mmap64 (26 samples, 0.02%)</title><rect x="45.9240%" y="789" width="0.0178%" height="15" fill="rgb(235,44,51)" fg:x="67043" fg:w="26"/><text x="46.1740%" y="799.50"></text></g><g><title>__mmap64 (26 samples, 0.02%)</title><rect x="45.9240%" y="773" width="0.0178%" height="15" fill="rgb(217,9,53)" fg:x="67043" fg:w="26"/><text x="46.1740%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="45.9246%" y="757" width="0.0171%" height="15" fill="rgb(237,172,34)" fg:x="67044" fg:w="25"/><text x="46.1746%" y="767.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="45.9246%" y="741" width="0.0171%" height="15" fill="rgb(206,206,11)" fg:x="67044" fg:w="25"/><text x="46.1746%" y="751.50"></text></g><g><title>_dl_map_object_from_fd (35 samples, 0.02%)</title><rect x="45.9219%" y="821" width="0.0240%" height="15" fill="rgb(214,149,29)" fg:x="67040" fg:w="35"/><text x="46.1719%" y="831.50"></text></g><g><title>_dl_catch_exception (42 samples, 0.03%)</title><rect x="45.9192%" y="869" width="0.0288%" height="15" fill="rgb(208,123,3)" fg:x="67036" fg:w="42"/><text x="46.1692%" y="879.50"></text></g><g><title>openaux (42 samples, 0.03%)</title><rect x="45.9192%" y="853" width="0.0288%" height="15" fill="rgb(229,126,4)" fg:x="67036" fg:w="42"/><text x="46.1692%" y="863.50"></text></g><g><title>_dl_map_object (42 samples, 0.03%)</title><rect x="45.9192%" y="837" width="0.0288%" height="15" fill="rgb(222,92,36)" fg:x="67036" fg:w="42"/><text x="46.1692%" y="847.50"></text></g><g><title>_dl_map_object_deps (45 samples, 0.03%)</title><rect x="45.9178%" y="885" width="0.0308%" height="15" fill="rgb(216,39,41)" fg:x="67034" fg:w="45"/><text x="46.1678%" y="895.50"></text></g><g><title>elf_machine_rela (17 samples, 0.01%)</title><rect x="45.9589%" y="853" width="0.0116%" height="15" fill="rgb(253,127,28)" fg:x="67094" fg:w="17"/><text x="46.2089%" y="863.50"></text></g><g><title>elf_dynamic_do_Rela (39 samples, 0.03%)</title><rect x="45.9548%" y="869" width="0.0267%" height="15" fill="rgb(249,152,51)" fg:x="67088" fg:w="39"/><text x="46.2048%" y="879.50"></text></g><g><title>elf_machine_rela_relative (16 samples, 0.01%)</title><rect x="45.9705%" y="853" width="0.0110%" height="15" fill="rgb(209,123,42)" fg:x="67111" fg:w="16"/><text x="46.2205%" y="863.50"></text></g><g><title>_dl_relocate_object (42 samples, 0.03%)</title><rect x="45.9534%" y="885" width="0.0288%" height="15" fill="rgb(241,118,22)" fg:x="67086" fg:w="42"/><text x="46.2034%" y="895.50"></text></g><g><title>[ld-2.31.so] (102 samples, 0.07%)</title><rect x="45.9164%" y="901" width="0.0699%" height="15" fill="rgb(208,25,7)" fg:x="67032" fg:w="102"/><text x="46.1664%" y="911.50"></text></g><g><title>_dl_start_final (105 samples, 0.07%)</title><rect x="45.9164%" y="933" width="0.0719%" height="15" fill="rgb(243,144,39)" fg:x="67032" fg:w="105"/><text x="46.1664%" y="943.50"></text></g><g><title>_dl_sysdep_start (105 samples, 0.07%)</title><rect x="45.9164%" y="917" width="0.0719%" height="15" fill="rgb(250,50,5)" fg:x="67032" fg:w="105"/><text x="46.1664%" y="927.50"></text></g><g><title>_start (311 samples, 0.21%)</title><rect x="45.7774%" y="965" width="0.2130%" height="15" fill="rgb(207,67,11)" fg:x="66829" fg:w="311"/><text x="46.0274%" y="975.50"></text></g><g><title>_dl_start (108 samples, 0.07%)</title><rect x="45.9164%" y="949" width="0.0740%" height="15" fill="rgb(245,204,40)" fg:x="67032" fg:w="108"/><text x="46.1664%" y="959.50"></text></g><g><title>begin_new_exec (21 samples, 0.01%)</title><rect x="46.0020%" y="869" width="0.0144%" height="15" fill="rgb(238,228,24)" fg:x="67157" fg:w="21"/><text x="46.2520%" y="879.50"></text></g><g><title>mmput (21 samples, 0.01%)</title><rect x="46.0020%" y="853" width="0.0144%" height="15" fill="rgb(217,116,22)" fg:x="67157" fg:w="21"/><text x="46.2520%" y="863.50"></text></g><g><title>exit_mmap (21 samples, 0.01%)</title><rect x="46.0020%" y="837" width="0.0144%" height="15" fill="rgb(234,98,12)" fg:x="67157" fg:w="21"/><text x="46.2520%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.03%)</title><rect x="45.9972%" y="965" width="0.0267%" height="15" fill="rgb(242,170,50)" fg:x="67150" fg:w="39"/><text x="46.2472%" y="975.50"></text></g><g><title>do_syscall_64 (39 samples, 0.03%)</title><rect x="45.9972%" y="949" width="0.0267%" height="15" fill="rgb(235,7,5)" fg:x="67150" fg:w="39"/><text x="46.2472%" y="959.50"></text></g><g><title>__x64_sys_execve (38 samples, 0.03%)</title><rect x="45.9979%" y="933" width="0.0260%" height="15" fill="rgb(241,114,28)" fg:x="67151" fg:w="38"/><text x="46.2479%" y="943.50"></text></g><g><title>do_execveat_common (38 samples, 0.03%)</title><rect x="45.9979%" y="917" width="0.0260%" height="15" fill="rgb(246,112,42)" fg:x="67151" fg:w="38"/><text x="46.2479%" y="927.50"></text></g><g><title>bprm_execve (38 samples, 0.03%)</title><rect x="45.9979%" y="901" width="0.0260%" height="15" fill="rgb(248,228,14)" fg:x="67151" fg:w="38"/><text x="46.2479%" y="911.50"></text></g><g><title>load_elf_binary (38 samples, 0.03%)</title><rect x="45.9979%" y="885" width="0.0260%" height="15" fill="rgb(208,133,18)" fg:x="67151" fg:w="38"/><text x="46.2479%" y="895.50"></text></g><g><title>cc_wrapper.sh (387 samples, 0.27%)</title><rect x="45.7596%" y="981" width="0.2651%" height="15" fill="rgb(207,35,49)" fg:x="66803" fg:w="387"/><text x="46.0096%" y="991.50"></text></g><g><title>[[heap]] (145 samples, 0.10%)</title><rect x="46.0246%" y="965" width="0.0993%" height="15" fill="rgb(205,68,36)" fg:x="67190" fg:w="145"/><text x="46.2746%" y="975.50"></text></g><g><title>[[stack]] (91 samples, 0.06%)</title><rect x="46.1240%" y="965" width="0.0623%" height="15" fill="rgb(245,62,40)" fg:x="67335" fg:w="91"/><text x="46.3740%" y="975.50"></text></g><g><title>[anon] (27 samples, 0.02%)</title><rect x="46.1890%" y="965" width="0.0185%" height="15" fill="rgb(228,27,24)" fg:x="67430" fg:w="27"/><text x="46.4390%" y="975.50"></text></g><g><title>[clang-14] (15 samples, 0.01%)</title><rect x="46.2089%" y="965" width="0.0103%" height="15" fill="rgb(253,19,12)" fg:x="67459" fg:w="15"/><text x="46.4589%" y="975.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (24 samples, 0.02%)</title><rect x="46.2500%" y="853" width="0.0164%" height="15" fill="rgb(232,28,20)" fg:x="67519" fg:w="24"/><text x="46.5000%" y="863.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (24 samples, 0.02%)</title><rect x="46.2500%" y="837" width="0.0164%" height="15" fill="rgb(218,35,51)" fg:x="67519" fg:w="24"/><text x="46.5000%" y="847.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (24 samples, 0.02%)</title><rect x="46.2500%" y="821" width="0.0164%" height="15" fill="rgb(212,90,40)" fg:x="67519" fg:w="24"/><text x="46.5000%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (24 samples, 0.02%)</title><rect x="46.2500%" y="805" width="0.0164%" height="15" fill="rgb(220,172,12)" fg:x="67519" fg:w="24"/><text x="46.5000%" y="815.50"></text></g><g><title>clang::Parser::ParseLinkage (23 samples, 0.02%)</title><rect x="46.2507%" y="789" width="0.0158%" height="15" fill="rgb(226,159,20)" fg:x="67520" fg:w="23"/><text x="46.5007%" y="799.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (23 samples, 0.02%)</title><rect x="46.2507%" y="773" width="0.0158%" height="15" fill="rgb(234,205,16)" fg:x="67520" fg:w="23"/><text x="46.5007%" y="783.50"></text></g><g><title>ExecuteCC1Tool (31 samples, 0.02%)</title><rect x="46.2459%" y="949" width="0.0212%" height="15" fill="rgb(207,9,39)" fg:x="67513" fg:w="31"/><text x="46.4959%" y="959.50"></text></g><g><title>cc1_main (31 samples, 0.02%)</title><rect x="46.2459%" y="933" width="0.0212%" height="15" fill="rgb(249,143,15)" fg:x="67513" fg:w="31"/><text x="46.4959%" y="943.50"></text></g><g><title>clang::ExecuteCompilerInvocation (31 samples, 0.02%)</title><rect x="46.2459%" y="917" width="0.0212%" height="15" fill="rgb(253,133,29)" fg:x="67513" fg:w="31"/><text x="46.4959%" y="927.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (31 samples, 0.02%)</title><rect x="46.2459%" y="901" width="0.0212%" height="15" fill="rgb(221,187,0)" fg:x="67513" fg:w="31"/><text x="46.4959%" y="911.50"></text></g><g><title>clang::FrontendAction::Execute (31 samples, 0.02%)</title><rect x="46.2459%" y="885" width="0.0212%" height="15" fill="rgb(205,204,26)" fg:x="67513" fg:w="31"/><text x="46.4959%" y="895.50"></text></g><g><title>clang::ParseAST (31 samples, 0.02%)</title><rect x="46.2459%" y="869" width="0.0212%" height="15" fill="rgb(224,68,54)" fg:x="67513" fg:w="31"/><text x="46.4959%" y="879.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (19 samples, 0.01%)</title><rect x="46.2959%" y="933" width="0.0130%" height="15" fill="rgb(209,67,4)" fg:x="67586" fg:w="19"/><text x="46.5459%" y="943.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (19 samples, 0.01%)</title><rect x="46.2959%" y="917" width="0.0130%" height="15" fill="rgb(228,229,18)" fg:x="67586" fg:w="19"/><text x="46.5459%" y="927.50"></text></g><g><title>llvm::TargetPassConfig::addMachinePasses (22 samples, 0.02%)</title><rect x="46.3219%" y="821" width="0.0151%" height="15" fill="rgb(231,89,13)" fg:x="67624" fg:w="22"/><text x="46.5719%" y="831.50"></text></g><g><title>llvm::LLVMTargetMachine::addPassesToEmitFile (52 samples, 0.04%)</title><rect x="46.3117%" y="837" width="0.0356%" height="15" fill="rgb(210,182,18)" fg:x="67609" fg:w="52"/><text x="46.5617%" y="847.50"></text></g><g><title>llvm::X86TargetMachine::createPassConfig (15 samples, 0.01%)</title><rect x="46.3370%" y="821" width="0.0103%" height="15" fill="rgb(240,105,2)" fg:x="67646" fg:w="15"/><text x="46.5870%" y="831.50"></text></g><g><title>llvm::TargetPassConfig::TargetPassConfig (15 samples, 0.01%)</title><rect x="46.3370%" y="805" width="0.0103%" height="15" fill="rgb(207,170,50)" fg:x="67646" fg:w="15"/><text x="46.5870%" y="815.50"></text></g><g><title>llvm::initializeCodeGen (15 samples, 0.01%)</title><rect x="46.3370%" y="789" width="0.0103%" height="15" fill="rgb(232,133,24)" fg:x="67646" fg:w="15"/><text x="46.5870%" y="799.50"></text></g><g><title>llvm::AsmPrinter::doInitialization (18 samples, 0.01%)</title><rect x="46.3596%" y="805" width="0.0123%" height="15" fill="rgb(235,166,27)" fg:x="67679" fg:w="18"/><text x="46.6096%" y="815.50"></text></g><g><title>llvm::TargetLoweringObjectFileELF::Initialize (17 samples, 0.01%)</title><rect x="46.3603%" y="789" width="0.0116%" height="15" fill="rgb(209,19,13)" fg:x="67680" fg:w="17"/><text x="46.6103%" y="799.50"></text></g><g><title>llvm::TargetLoweringObjectFile::Initialize (17 samples, 0.01%)</title><rect x="46.3603%" y="773" width="0.0116%" height="15" fill="rgb(226,79,39)" fg:x="67680" fg:w="17"/><text x="46.6103%" y="783.50"></text></g><g><title>llvm::MCObjectFileInfo::initMCObjectFileInfo (17 samples, 0.01%)</title><rect x="46.3603%" y="757" width="0.0116%" height="15" fill="rgb(222,163,10)" fg:x="67680" fg:w="17"/><text x="46.6103%" y="767.50"></text></g><g><title>llvm::MCObjectFileInfo::initELFMCObjectFileInfo (17 samples, 0.01%)</title><rect x="46.3603%" y="741" width="0.0116%" height="15" fill="rgb(214,44,19)" fg:x="67680" fg:w="17"/><text x="46.6103%" y="751.50"></text></g><g><title>llvm::MCContext::getELFSection (17 samples, 0.01%)</title><rect x="46.3603%" y="725" width="0.0116%" height="15" fill="rgb(210,217,13)" fg:x="67680" fg:w="17"/><text x="46.6103%" y="735.50"></text></g><g><title>llvm::MCContext::getELFSection (17 samples, 0.01%)</title><rect x="46.3603%" y="709" width="0.0116%" height="15" fill="rgb(237,61,54)" fg:x="67680" fg:w="17"/><text x="46.6103%" y="719.50"></text></g><g><title>llvm::FPPassManager::doInitialization (19 samples, 0.01%)</title><rect x="46.3596%" y="821" width="0.0130%" height="15" fill="rgb(226,184,24)" fg:x="67679" fg:w="19"/><text x="46.6096%" y="831.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (38 samples, 0.03%)</title><rect x="46.3562%" y="837" width="0.0260%" height="15" fill="rgb(223,226,4)" fg:x="67674" fg:w="38"/><text x="46.6062%" y="847.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (104 samples, 0.07%)</title><rect x="46.3117%" y="869" width="0.0712%" height="15" fill="rgb(210,26,41)" fg:x="67609" fg:w="104"/><text x="46.5617%" y="879.50"></text></g><g><title>clang::EmitBackendOutput (104 samples, 0.07%)</title><rect x="46.3117%" y="853" width="0.0712%" height="15" fill="rgb(220,221,6)" fg:x="67609" fg:w="104"/><text x="46.5617%" y="863.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (20 samples, 0.01%)</title><rect x="46.3911%" y="629" width="0.0137%" height="15" fill="rgb(225,89,49)" fg:x="67725" fg:w="20"/><text x="46.6411%" y="639.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (35 samples, 0.02%)</title><rect x="46.3884%" y="725" width="0.0240%" height="15" fill="rgb(218,70,45)" fg:x="67721" fg:w="35"/><text x="46.6384%" y="735.50"></text></g><g><title>clang::Preprocessor::Lex (35 samples, 0.02%)</title><rect x="46.3884%" y="709" width="0.0240%" height="15" fill="rgb(238,166,21)" fg:x="67721" fg:w="35"/><text x="46.6384%" y="719.50"></text></g><g><title>clang::Preprocessor::CachingLex (35 samples, 0.02%)</title><rect x="46.3884%" y="693" width="0.0240%" height="15" fill="rgb(224,141,44)" fg:x="67721" fg:w="35"/><text x="46.6384%" y="703.50"></text></g><g><title>clang::Preprocessor::Lex (35 samples, 0.02%)</title><rect x="46.3884%" y="677" width="0.0240%" height="15" fill="rgb(230,12,49)" fg:x="67721" fg:w="35"/><text x="46.6384%" y="687.50"></text></g><g><title>clang::Lexer::LexTokenInternal (35 samples, 0.02%)</title><rect x="46.3884%" y="661" width="0.0240%" height="15" fill="rgb(212,174,12)" fg:x="67721" fg:w="35"/><text x="46.6384%" y="671.50"></text></g><g><title>clang::Preprocessor::HandleDirective (31 samples, 0.02%)</title><rect x="46.3911%" y="645" width="0.0212%" height="15" fill="rgb(246,67,9)" fg:x="67725" fg:w="31"/><text x="46.6411%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (15 samples, 0.01%)</title><rect x="46.4124%" y="725" width="0.0103%" height="15" fill="rgb(239,35,23)" fg:x="67756" fg:w="15"/><text x="46.6624%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclGroup (53 samples, 0.04%)</title><rect x="46.3884%" y="741" width="0.0363%" height="15" fill="rgb(211,167,0)" fg:x="67721" fg:w="53"/><text x="46.6384%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclaration (64 samples, 0.04%)</title><rect x="46.3884%" y="773" width="0.0438%" height="15" fill="rgb(225,119,45)" fg:x="67721" fg:w="64"/><text x="46.6384%" y="783.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (64 samples, 0.04%)</title><rect x="46.3884%" y="757" width="0.0438%" height="15" fill="rgb(210,162,6)" fg:x="67721" fg:w="64"/><text x="46.6384%" y="767.50"></text></g><g><title>clang::Lexer::LexTokenInternal (15 samples, 0.01%)</title><rect x="46.4322%" y="693" width="0.0103%" height="15" fill="rgb(208,118,35)" fg:x="67785" fg:w="15"/><text x="46.6822%" y="703.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (16 samples, 0.01%)</title><rect x="46.4322%" y="725" width="0.0110%" height="15" fill="rgb(239,4,53)" fg:x="67785" fg:w="16"/><text x="46.6822%" y="735.50"></text></g><g><title>clang::Preprocessor::Lex (16 samples, 0.01%)</title><rect x="46.4322%" y="709" width="0.0110%" height="15" fill="rgb(213,130,21)" fg:x="67785" fg:w="16"/><text x="46.6822%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (21 samples, 0.01%)</title><rect x="46.4514%" y="725" width="0.0144%" height="15" fill="rgb(235,148,0)" fg:x="67813" fg:w="21"/><text x="46.7014%" y="735.50"></text></g><g><title>clang::Sema::ActOnDeclarator (21 samples, 0.01%)</title><rect x="46.4514%" y="709" width="0.0144%" height="15" fill="rgb(244,224,18)" fg:x="67813" fg:w="21"/><text x="46.7014%" y="719.50"></text></g><g><title>clang::Sema::HandleDeclarator (21 samples, 0.01%)</title><rect x="46.4514%" y="693" width="0.0144%" height="15" fill="rgb(211,214,4)" fg:x="67813" fg:w="21"/><text x="46.7014%" y="703.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (17 samples, 0.01%)</title><rect x="46.4672%" y="709" width="0.0116%" height="15" fill="rgb(206,119,25)" fg:x="67836" fg:w="17"/><text x="46.7172%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (21 samples, 0.01%)</title><rect x="46.4658%" y="725" width="0.0144%" height="15" fill="rgb(243,93,47)" fg:x="67834" fg:w="21"/><text x="46.7158%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclGroup (72 samples, 0.05%)</title><rect x="46.4322%" y="741" width="0.0493%" height="15" fill="rgb(224,194,6)" fg:x="67785" fg:w="72"/><text x="46.6822%" y="751.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (146 samples, 0.10%)</title><rect x="46.3856%" y="869" width="0.1000%" height="15" fill="rgb(243,229,6)" fg:x="67717" fg:w="146"/><text x="46.6356%" y="879.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (146 samples, 0.10%)</title><rect x="46.3856%" y="853" width="0.1000%" height="15" fill="rgb(207,23,50)" fg:x="67717" fg:w="146"/><text x="46.6356%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (146 samples, 0.10%)</title><rect x="46.3856%" y="837" width="0.1000%" height="15" fill="rgb(253,192,32)" fg:x="67717" fg:w="146"/><text x="46.6356%" y="847.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (146 samples, 0.10%)</title><rect x="46.3856%" y="821" width="0.1000%" height="15" fill="rgb(213,21,6)" fg:x="67717" fg:w="146"/><text x="46.6356%" y="831.50"></text></g><g><title>clang::Parser::ParseLinkage (142 samples, 0.10%)</title><rect x="46.3884%" y="805" width="0.0973%" height="15" fill="rgb(243,151,13)" fg:x="67721" fg:w="142"/><text x="46.6384%" y="815.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (142 samples, 0.10%)</title><rect x="46.3884%" y="789" width="0.0973%" height="15" fill="rgb(233,165,41)" fg:x="67721" fg:w="142"/><text x="46.6384%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (78 samples, 0.05%)</title><rect x="46.4322%" y="773" width="0.0534%" height="15" fill="rgb(246,176,45)" fg:x="67785" fg:w="78"/><text x="46.6822%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (78 samples, 0.05%)</title><rect x="46.4322%" y="757" width="0.0534%" height="15" fill="rgb(217,170,52)" fg:x="67785" fg:w="78"/><text x="46.6822%" y="767.50"></text></g><g><title>cc1_main (280 samples, 0.19%)</title><rect x="46.2959%" y="949" width="0.1918%" height="15" fill="rgb(214,203,54)" fg:x="67586" fg:w="280"/><text x="46.5459%" y="959.50"></text></g><g><title>clang::ExecuteCompilerInvocation (261 samples, 0.18%)</title><rect x="46.3089%" y="933" width="0.1788%" height="15" fill="rgb(248,215,49)" fg:x="67605" fg:w="261"/><text x="46.5589%" y="943.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (261 samples, 0.18%)</title><rect x="46.3089%" y="917" width="0.1788%" height="15" fill="rgb(208,46,10)" fg:x="67605" fg:w="261"/><text x="46.5589%" y="927.50"></text></g><g><title>clang::FrontendAction::Execute (260 samples, 0.18%)</title><rect x="46.3096%" y="901" width="0.1781%" height="15" fill="rgb(254,5,31)" fg:x="67606" fg:w="260"/><text x="46.5596%" y="911.50"></text></g><g><title>clang::ParseAST (260 samples, 0.18%)</title><rect x="46.3096%" y="885" width="0.1781%" height="15" fill="rgb(222,104,33)" fg:x="67606" fg:w="260"/><text x="46.5596%" y="895.50"></text></g><g><title>llvm::X86LegalizerInfo::X86LegalizerInfo (18 samples, 0.01%)</title><rect x="46.5048%" y="837" width="0.0123%" height="15" fill="rgb(248,49,16)" fg:x="67891" fg:w="18"/><text x="46.7548%" y="847.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (43 samples, 0.03%)</title><rect x="46.4891%" y="949" width="0.0295%" height="15" fill="rgb(232,198,41)" fg:x="67868" fg:w="43"/><text x="46.7391%" y="959.50"></text></g><g><title>clang::EmitBackendOutput (40 samples, 0.03%)</title><rect x="46.4911%" y="933" width="0.0274%" height="15" fill="rgb(214,125,3)" fg:x="67871" fg:w="40"/><text x="46.7411%" y="943.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (40 samples, 0.03%)</title><rect x="46.4911%" y="917" width="0.0274%" height="15" fill="rgb(229,220,28)" fg:x="67871" fg:w="40"/><text x="46.7411%" y="927.50"></text></g><g><title>llvm::FPPassManager::runOnModule (32 samples, 0.02%)</title><rect x="46.4966%" y="901" width="0.0219%" height="15" fill="rgb(222,64,37)" fg:x="67879" fg:w="32"/><text x="46.7466%" y="911.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (32 samples, 0.02%)</title><rect x="46.4966%" y="885" width="0.0219%" height="15" fill="rgb(249,184,13)" fg:x="67879" fg:w="32"/><text x="46.7466%" y="895.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (21 samples, 0.01%)</title><rect x="46.5041%" y="869" width="0.0144%" height="15" fill="rgb(252,176,6)" fg:x="67890" fg:w="21"/><text x="46.7541%" y="879.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (21 samples, 0.01%)</title><rect x="46.5041%" y="853" width="0.0144%" height="15" fill="rgb(228,153,7)" fg:x="67890" fg:w="21"/><text x="46.7541%" y="863.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitTopLevelDecl (19 samples, 0.01%)</title><rect x="46.5254%" y="949" width="0.0130%" height="15" fill="rgb(242,193,5)" fg:x="67921" fg:w="19"/><text x="46.7754%" y="959.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitGlobalDefinition (19 samples, 0.01%)</title><rect x="46.5254%" y="933" width="0.0130%" height="15" fill="rgb(232,140,9)" fg:x="67921" fg:w="19"/><text x="46.7754%" y="943.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitGlobalFunctionDefinition (19 samples, 0.01%)</title><rect x="46.5254%" y="917" width="0.0130%" height="15" fill="rgb(213,222,16)" fg:x="67921" fg:w="19"/><text x="46.7754%" y="927.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (22 samples, 0.02%)</title><rect x="46.5418%" y="805" width="0.0151%" height="15" fill="rgb(222,75,50)" fg:x="67945" fg:w="22"/><text x="46.7918%" y="815.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (19 samples, 0.01%)</title><rect x="46.5439%" y="789" width="0.0130%" height="15" fill="rgb(205,180,2)" fg:x="67948" fg:w="19"/><text x="46.7939%" y="799.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (28 samples, 0.02%)</title><rect x="46.5404%" y="901" width="0.0192%" height="15" fill="rgb(216,34,7)" fg:x="67943" fg:w="28"/><text x="46.7904%" y="911.50"></text></g><g><title>clang::EmitBackendOutput (28 samples, 0.02%)</title><rect x="46.5404%" y="885" width="0.0192%" height="15" fill="rgb(253,16,32)" fg:x="67943" fg:w="28"/><text x="46.7904%" y="895.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (28 samples, 0.02%)</title><rect x="46.5404%" y="869" width="0.0192%" height="15" fill="rgb(208,97,28)" fg:x="67943" fg:w="28"/><text x="46.7904%" y="879.50"></text></g><g><title>llvm::FPPassManager::runOnModule (28 samples, 0.02%)</title><rect x="46.5404%" y="853" width="0.0192%" height="15" fill="rgb(225,92,11)" fg:x="67943" fg:w="28"/><text x="46.7904%" y="863.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (28 samples, 0.02%)</title><rect x="46.5404%" y="837" width="0.0192%" height="15" fill="rgb(243,38,12)" fg:x="67943" fg:w="28"/><text x="46.7904%" y="847.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (26 samples, 0.02%)</title><rect x="46.5418%" y="821" width="0.0178%" height="15" fill="rgb(208,139,16)" fg:x="67945" fg:w="26"/><text x="46.7918%" y="831.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (31 samples, 0.02%)</title><rect x="46.5404%" y="949" width="0.0212%" height="15" fill="rgb(227,24,9)" fg:x="67943" fg:w="31"/><text x="46.7904%" y="959.50"></text></g><g><title>clang::FrontendAction::Execute (31 samples, 0.02%)</title><rect x="46.5404%" y="933" width="0.0212%" height="15" fill="rgb(206,62,11)" fg:x="67943" fg:w="31"/><text x="46.7904%" y="943.50"></text></g><g><title>clang::ParseAST (31 samples, 0.02%)</title><rect x="46.5404%" y="917" width="0.0212%" height="15" fill="rgb(228,134,27)" fg:x="67943" fg:w="31"/><text x="46.7904%" y="927.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (16 samples, 0.01%)</title><rect x="46.5624%" y="949" width="0.0110%" height="15" fill="rgb(205,55,33)" fg:x="67975" fg:w="16"/><text x="46.8124%" y="959.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (16 samples, 0.01%)</title><rect x="46.5624%" y="933" width="0.0110%" height="15" fill="rgb(243,75,43)" fg:x="67975" fg:w="16"/><text x="46.8124%" y="943.50"></text></g><g><title>__GI___readlink (20 samples, 0.01%)</title><rect x="46.5767%" y="837" width="0.0137%" height="15" fill="rgb(223,27,42)" fg:x="67996" fg:w="20"/><text x="46.8267%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="46.5774%" y="821" width="0.0130%" height="15" fill="rgb(232,189,33)" fg:x="67997" fg:w="19"/><text x="46.8274%" y="831.50"></text></g><g><title>do_syscall_64 (19 samples, 0.01%)</title><rect x="46.5774%" y="805" width="0.0130%" height="15" fill="rgb(210,9,39)" fg:x="67997" fg:w="19"/><text x="46.8274%" y="815.50"></text></g><g><title>__x64_sys_readlink (19 samples, 0.01%)</title><rect x="46.5774%" y="789" width="0.0130%" height="15" fill="rgb(242,85,26)" fg:x="67997" fg:w="19"/><text x="46.8274%" y="799.50"></text></g><g><title>do_readlinkat (18 samples, 0.01%)</title><rect x="46.5781%" y="773" width="0.0123%" height="15" fill="rgb(248,44,4)" fg:x="67998" fg:w="18"/><text x="46.8281%" y="783.50"></text></g><g><title>do_filp_open (18 samples, 0.01%)</title><rect x="46.5946%" y="741" width="0.0123%" height="15" fill="rgb(250,96,46)" fg:x="68022" fg:w="18"/><text x="46.8446%" y="751.50"></text></g><g><title>path_openat (18 samples, 0.01%)</title><rect x="46.5946%" y="725" width="0.0123%" height="15" fill="rgb(229,116,26)" fg:x="68022" fg:w="18"/><text x="46.8446%" y="735.50"></text></g><g><title>__libc_open64 (24 samples, 0.02%)</title><rect x="46.5925%" y="821" width="0.0164%" height="15" fill="rgb(246,94,34)" fg:x="68019" fg:w="24"/><text x="46.8425%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="46.5932%" y="805" width="0.0158%" height="15" fill="rgb(251,73,21)" fg:x="68020" fg:w="23"/><text x="46.8432%" y="815.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="46.5932%" y="789" width="0.0158%" height="15" fill="rgb(254,121,25)" fg:x="68020" fg:w="23"/><text x="46.8432%" y="799.50"></text></g><g><title>__x64_sys_openat (23 samples, 0.02%)</title><rect x="46.5932%" y="773" width="0.0158%" height="15" fill="rgb(215,161,49)" fg:x="68020" fg:w="23"/><text x="46.8432%" y="783.50"></text></g><g><title>do_sys_openat2 (23 samples, 0.02%)</title><rect x="46.5932%" y="757" width="0.0158%" height="15" fill="rgb(221,43,13)" fg:x="68020" fg:w="23"/><text x="46.8432%" y="767.50"></text></g><g><title>llvm::sys::fs::openFile (28 samples, 0.02%)</title><rect x="46.5918%" y="837" width="0.0192%" height="15" fill="rgb(249,5,37)" fg:x="68018" fg:w="28"/><text x="46.8418%" y="847.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (51 samples, 0.03%)</title><rect x="46.5767%" y="949" width="0.0349%" height="15" fill="rgb(226,25,44)" fg:x="67996" fg:w="51"/><text x="46.8267%" y="959.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (51 samples, 0.03%)</title><rect x="46.5767%" y="933" width="0.0349%" height="15" fill="rgb(238,189,16)" fg:x="67996" fg:w="51"/><text x="46.8267%" y="943.50"></text></g><g><title>clang::FileManager::getFileRef (51 samples, 0.03%)</title><rect x="46.5767%" y="917" width="0.0349%" height="15" fill="rgb(251,186,8)" fg:x="67996" fg:w="51"/><text x="46.8267%" y="927.50"></text></g><g><title>clang::FileManager::getStatValue (51 samples, 0.03%)</title><rect x="46.5767%" y="901" width="0.0349%" height="15" fill="rgb(254,34,31)" fg:x="67996" fg:w="51"/><text x="46.8267%" y="911.50"></text></g><g><title>clang::FileSystemStatCache::get (51 samples, 0.03%)</title><rect x="46.5767%" y="885" width="0.0349%" height="15" fill="rgb(225,215,27)" fg:x="67996" fg:w="51"/><text x="46.8267%" y="895.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (51 samples, 0.03%)</title><rect x="46.5767%" y="869" width="0.0349%" height="15" fill="rgb(221,192,48)" fg:x="67996" fg:w="51"/><text x="46.8267%" y="879.50"></text></g><g><title>llvm::sys::fs::openFileForRead (51 samples, 0.03%)</title><rect x="46.5767%" y="853" width="0.0349%" height="15" fill="rgb(219,137,20)" fg:x="67996" fg:w="51"/><text x="46.8267%" y="863.50"></text></g><g><title>clang::EmitBackendOutput (22 samples, 0.02%)</title><rect x="46.6117%" y="949" width="0.0151%" height="15" fill="rgb(219,84,11)" fg:x="68047" fg:w="22"/><text x="46.8617%" y="959.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (23 samples, 0.02%)</title><rect x="46.6329%" y="805" width="0.0158%" height="15" fill="rgb(224,10,23)" fg:x="68078" fg:w="23"/><text x="46.8829%" y="815.50"></text></g><g><title>llvm::TargetLoweringBase::computeRegisterProperties (22 samples, 0.02%)</title><rect x="46.6336%" y="789" width="0.0151%" height="15" fill="rgb(248,22,39)" fg:x="68079" fg:w="22"/><text x="46.8836%" y="799.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (29 samples, 0.02%)</title><rect x="46.6295%" y="917" width="0.0199%" height="15" fill="rgb(212,154,20)" fg:x="68073" fg:w="29"/><text x="46.8795%" y="927.50"></text></g><g><title>clang::EmitBackendOutput (29 samples, 0.02%)</title><rect x="46.6295%" y="901" width="0.0199%" height="15" fill="rgb(236,199,50)" fg:x="68073" fg:w="29"/><text x="46.8795%" y="911.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (29 samples, 0.02%)</title><rect x="46.6295%" y="885" width="0.0199%" height="15" fill="rgb(211,9,17)" fg:x="68073" fg:w="29"/><text x="46.8795%" y="895.50"></text></g><g><title>llvm::FPPassManager::runOnModule (28 samples, 0.02%)</title><rect x="46.6302%" y="869" width="0.0192%" height="15" fill="rgb(243,216,36)" fg:x="68074" fg:w="28"/><text x="46.8802%" y="879.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (28 samples, 0.02%)</title><rect x="46.6302%" y="853" width="0.0192%" height="15" fill="rgb(250,2,10)" fg:x="68074" fg:w="28"/><text x="46.8802%" y="863.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (25 samples, 0.02%)</title><rect x="46.6322%" y="837" width="0.0171%" height="15" fill="rgb(226,50,48)" fg:x="68077" fg:w="25"/><text x="46.8822%" y="847.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (25 samples, 0.02%)</title><rect x="46.6322%" y="821" width="0.0171%" height="15" fill="rgb(243,81,16)" fg:x="68077" fg:w="25"/><text x="46.8822%" y="831.50"></text></g><g><title>clang::FrontendAction::Execute (31 samples, 0.02%)</title><rect x="46.6295%" y="949" width="0.0212%" height="15" fill="rgb(250,14,2)" fg:x="68073" fg:w="31"/><text x="46.8795%" y="959.50"></text></g><g><title>clang::ParseAST (31 samples, 0.02%)</title><rect x="46.6295%" y="933" width="0.0212%" height="15" fill="rgb(233,135,29)" fg:x="68073" fg:w="31"/><text x="46.8795%" y="943.50"></text></g><g><title>clang::Parser::ParseClassSpecifier (15 samples, 0.01%)</title><rect x="46.6713%" y="949" width="0.0103%" height="15" fill="rgb(224,64,43)" fg:x="68134" fg:w="15"/><text x="46.9213%" y="959.50"></text></g><g><title>clang::Parser::ParseCXXMemberSpecification (15 samples, 0.01%)</title><rect x="46.6713%" y="933" width="0.0103%" height="15" fill="rgb(238,84,13)" fg:x="68134" fg:w="15"/><text x="46.9213%" y="943.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclarationWithPragmas (15 samples, 0.01%)</title><rect x="46.6713%" y="917" width="0.0103%" height="15" fill="rgb(253,48,26)" fg:x="68134" fg:w="15"/><text x="46.9213%" y="927.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclaration (15 samples, 0.01%)</title><rect x="46.6713%" y="901" width="0.0103%" height="15" fill="rgb(205,223,31)" fg:x="68134" fg:w="15"/><text x="46.9213%" y="911.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (21 samples, 0.01%)</title><rect x="46.6863%" y="933" width="0.0144%" height="15" fill="rgb(221,41,32)" fg:x="68156" fg:w="21"/><text x="46.9363%" y="943.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (19 samples, 0.01%)</title><rect x="46.6877%" y="917" width="0.0130%" height="15" fill="rgb(213,158,31)" fg:x="68158" fg:w="19"/><text x="46.9377%" y="927.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (19 samples, 0.01%)</title><rect x="46.6877%" y="901" width="0.0130%" height="15" fill="rgb(245,126,43)" fg:x="68158" fg:w="19"/><text x="46.9377%" y="911.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (19 samples, 0.01%)</title><rect x="46.6877%" y="885" width="0.0130%" height="15" fill="rgb(227,7,22)" fg:x="68158" fg:w="19"/><text x="46.9377%" y="895.50"></text></g><g><title>clang::Parser::ParseDeclGroup (30 samples, 0.02%)</title><rect x="46.6822%" y="949" width="0.0205%" height="15" fill="rgb(252,90,44)" fg:x="68150" fg:w="30"/><text x="46.9322%" y="959.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (18 samples, 0.01%)</title><rect x="46.7192%" y="901" width="0.0123%" height="15" fill="rgb(253,91,0)" fg:x="68204" fg:w="18"/><text x="46.9692%" y="911.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (15 samples, 0.01%)</title><rect x="46.7213%" y="885" width="0.0103%" height="15" fill="rgb(252,175,49)" fg:x="68207" fg:w="15"/><text x="46.9713%" y="895.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (15 samples, 0.01%)</title><rect x="46.7213%" y="869" width="0.0103%" height="15" fill="rgb(246,150,1)" fg:x="68207" fg:w="15"/><text x="46.9713%" y="879.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (15 samples, 0.01%)</title><rect x="46.7213%" y="853" width="0.0103%" height="15" fill="rgb(241,192,25)" fg:x="68207" fg:w="15"/><text x="46.9713%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclGroup (25 samples, 0.02%)</title><rect x="46.7151%" y="917" width="0.0171%" height="15" fill="rgb(239,187,11)" fg:x="68198" fg:w="25"/><text x="46.9651%" y="927.50"></text></g><g><title>clang::Sema::ActOnFunctionDeclarator (25 samples, 0.02%)</title><rect x="46.7405%" y="789" width="0.0171%" height="15" fill="rgb(218,202,51)" fg:x="68235" fg:w="25"/><text x="46.9905%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (71 samples, 0.05%)</title><rect x="46.7151%" y="949" width="0.0486%" height="15" fill="rgb(225,176,8)" fg:x="68198" fg:w="71"/><text x="46.9651%" y="959.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (71 samples, 0.05%)</title><rect x="46.7151%" y="933" width="0.0486%" height="15" fill="rgb(219,122,41)" fg:x="68198" fg:w="71"/><text x="46.9651%" y="943.50"></text></g><g><title>clang::Parser::ParseLinkage (44 samples, 0.03%)</title><rect x="46.7336%" y="917" width="0.0301%" height="15" fill="rgb(248,140,20)" fg:x="68225" fg:w="44"/><text x="46.9836%" y="927.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (43 samples, 0.03%)</title><rect x="46.7343%" y="901" width="0.0295%" height="15" fill="rgb(245,41,37)" fg:x="68226" fg:w="43"/><text x="46.9843%" y="911.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (35 samples, 0.02%)</title><rect x="46.7398%" y="885" width="0.0240%" height="15" fill="rgb(235,82,39)" fg:x="68234" fg:w="35"/><text x="46.9898%" y="895.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (35 samples, 0.02%)</title><rect x="46.7398%" y="869" width="0.0240%" height="15" fill="rgb(230,108,42)" fg:x="68234" fg:w="35"/><text x="46.9898%" y="879.50"></text></g><g><title>clang::Parser::ParseDeclGroup (35 samples, 0.02%)</title><rect x="46.7398%" y="853" width="0.0240%" height="15" fill="rgb(215,150,50)" fg:x="68234" fg:w="35"/><text x="46.9898%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (34 samples, 0.02%)</title><rect x="46.7405%" y="837" width="0.0233%" height="15" fill="rgb(233,212,5)" fg:x="68235" fg:w="34"/><text x="46.9905%" y="847.50"></text></g><g><title>clang::Sema::ActOnDeclarator (34 samples, 0.02%)</title><rect x="46.7405%" y="821" width="0.0233%" height="15" fill="rgb(245,80,22)" fg:x="68235" fg:w="34"/><text x="46.9905%" y="831.50"></text></g><g><title>clang::Sema::HandleDeclarator (34 samples, 0.02%)</title><rect x="46.7405%" y="805" width="0.0233%" height="15" fill="rgb(238,129,16)" fg:x="68235" fg:w="34"/><text x="46.9905%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclarationSpecifiers (20 samples, 0.01%)</title><rect x="46.7638%" y="949" width="0.0137%" height="15" fill="rgb(240,19,0)" fg:x="68269" fg:w="20"/><text x="47.0138%" y="959.50"></text></g><g><title>clang::Parser::ParseClassSpecifier (18 samples, 0.01%)</title><rect x="46.7651%" y="933" width="0.0123%" height="15" fill="rgb(232,42,35)" fg:x="68271" fg:w="18"/><text x="47.0151%" y="943.50"></text></g><g><title>clang::Parser::ParseCXXMemberSpecification (18 samples, 0.01%)</title><rect x="46.7651%" y="917" width="0.0123%" height="15" fill="rgb(223,130,24)" fg:x="68271" fg:w="18"/><text x="47.0151%" y="927.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclarationWithPragmas (18 samples, 0.01%)</title><rect x="46.7651%" y="901" width="0.0123%" height="15" fill="rgb(237,16,22)" fg:x="68271" fg:w="18"/><text x="47.0151%" y="911.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclaration (18 samples, 0.01%)</title><rect x="46.7651%" y="885" width="0.0123%" height="15" fill="rgb(248,192,20)" fg:x="68271" fg:w="18"/><text x="47.0151%" y="895.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (26 samples, 0.02%)</title><rect x="46.7857%" y="949" width="0.0178%" height="15" fill="rgb(233,167,2)" fg:x="68301" fg:w="26"/><text x="47.0357%" y="959.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (25 samples, 0.02%)</title><rect x="46.7864%" y="933" width="0.0171%" height="15" fill="rgb(252,71,44)" fg:x="68302" fg:w="25"/><text x="47.0364%" y="943.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (25 samples, 0.02%)</title><rect x="46.7864%" y="917" width="0.0171%" height="15" fill="rgb(238,37,47)" fg:x="68302" fg:w="25"/><text x="47.0364%" y="927.50"></text></g><g><title>clang::Parser::ParseLinkage (20 samples, 0.01%)</title><rect x="46.7898%" y="901" width="0.0137%" height="15" fill="rgb(214,202,54)" fg:x="68307" fg:w="20"/><text x="47.0398%" y="911.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (20 samples, 0.01%)</title><rect x="46.7898%" y="885" width="0.0137%" height="15" fill="rgb(254,165,40)" fg:x="68307" fg:w="20"/><text x="47.0398%" y="895.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (18 samples, 0.01%)</title><rect x="46.7912%" y="869" width="0.0123%" height="15" fill="rgb(246,173,38)" fg:x="68309" fg:w="18"/><text x="47.0412%" y="879.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (18 samples, 0.01%)</title><rect x="46.7912%" y="853" width="0.0123%" height="15" fill="rgb(215,3,27)" fg:x="68309" fg:w="18"/><text x="47.0412%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclGroup (18 samples, 0.01%)</title><rect x="46.7912%" y="837" width="0.0123%" height="15" fill="rgb(239,169,51)" fg:x="68309" fg:w="18"/><text x="47.0412%" y="847.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (16 samples, 0.01%)</title><rect x="46.8227%" y="949" width="0.0110%" height="15" fill="rgb(212,5,25)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="959.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (16 samples, 0.01%)</title><rect x="46.8227%" y="933" width="0.0110%" height="15" fill="rgb(243,45,17)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="943.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (16 samples, 0.01%)</title><rect x="46.8227%" y="917" width="0.0110%" height="15" fill="rgb(242,97,9)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="927.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (16 samples, 0.01%)</title><rect x="46.8227%" y="901" width="0.0110%" height="15" fill="rgb(228,71,31)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="911.50"></text></g><g><title>clang::Parser::ParseLinkage (16 samples, 0.01%)</title><rect x="46.8227%" y="885" width="0.0110%" height="15" fill="rgb(252,184,16)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="895.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (16 samples, 0.01%)</title><rect x="46.8227%" y="869" width="0.0110%" height="15" fill="rgb(236,169,46)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="879.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (16 samples, 0.01%)</title><rect x="46.8227%" y="853" width="0.0110%" height="15" fill="rgb(207,17,47)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="863.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (16 samples, 0.01%)</title><rect x="46.8227%" y="837" width="0.0110%" height="15" fill="rgb(206,201,28)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="847.50"></text></g><g><title>clang::Parser::ParseDeclGroup (16 samples, 0.01%)</title><rect x="46.8227%" y="821" width="0.0110%" height="15" fill="rgb(224,184,23)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (16 samples, 0.01%)</title><rect x="46.8227%" y="805" width="0.0110%" height="15" fill="rgb(208,139,48)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="815.50"></text></g><g><title>clang::Sema::ActOnDeclarator (16 samples, 0.01%)</title><rect x="46.8227%" y="789" width="0.0110%" height="15" fill="rgb(208,130,10)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="799.50"></text></g><g><title>clang::Sema::HandleDeclarator (16 samples, 0.01%)</title><rect x="46.8227%" y="773" width="0.0110%" height="15" fill="rgb(211,213,45)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="783.50"></text></g><g><title>clang::Sema::ActOnFunctionDeclarator (16 samples, 0.01%)</title><rect x="46.8227%" y="757" width="0.0110%" height="15" fill="rgb(235,100,30)" fg:x="68355" fg:w="16"/><text x="47.0727%" y="767.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (34 samples, 0.02%)</title><rect x="46.8391%" y="869" width="0.0233%" height="15" fill="rgb(206,144,31)" fg:x="68379" fg:w="34"/><text x="47.0891%" y="879.50"></text></g><g><title>clang::FileManager::getFileRef (33 samples, 0.02%)</title><rect x="46.8398%" y="853" width="0.0226%" height="15" fill="rgb(224,200,26)" fg:x="68380" fg:w="33"/><text x="47.0898%" y="863.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (39 samples, 0.03%)</title><rect x="46.8364%" y="949" width="0.0267%" height="15" fill="rgb(247,104,53)" fg:x="68375" fg:w="39"/><text x="47.0864%" y="959.50"></text></g><g><title>clang::Preprocessor::LookupHeaderIncludeOrImport (39 samples, 0.03%)</title><rect x="46.8364%" y="933" width="0.0267%" height="15" fill="rgb(220,14,17)" fg:x="68375" fg:w="39"/><text x="47.0864%" y="943.50"></text></g><g><title>clang::Preprocessor::LookupFile (39 samples, 0.03%)</title><rect x="46.8364%" y="917" width="0.0267%" height="15" fill="rgb(230,140,40)" fg:x="68375" fg:w="39"/><text x="47.0864%" y="927.50"></text></g><g><title>clang::HeaderSearch::LookupFile (39 samples, 0.03%)</title><rect x="46.8364%" y="901" width="0.0267%" height="15" fill="rgb(229,2,41)" fg:x="68375" fg:w="39"/><text x="47.0864%" y="911.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (39 samples, 0.03%)</title><rect x="46.8364%" y="885" width="0.0267%" height="15" fill="rgb(232,89,16)" fg:x="68375" fg:w="39"/><text x="47.0864%" y="895.50"></text></g><g><title>clang::Parser::ParseDeclaration (19 samples, 0.01%)</title><rect x="46.8973%" y="709" width="0.0130%" height="15" fill="rgb(247,59,52)" fg:x="68464" fg:w="19"/><text x="47.1473%" y="719.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (19 samples, 0.01%)</title><rect x="46.8973%" y="693" width="0.0130%" height="15" fill="rgb(226,110,21)" fg:x="68464" fg:w="19"/><text x="47.1473%" y="703.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (36 samples, 0.02%)</title><rect x="46.8973%" y="725" width="0.0247%" height="15" fill="rgb(224,176,43)" fg:x="68464" fg:w="36"/><text x="47.1473%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (17 samples, 0.01%)</title><rect x="46.9103%" y="709" width="0.0116%" height="15" fill="rgb(221,73,6)" fg:x="68483" fg:w="17"/><text x="47.1603%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (17 samples, 0.01%)</title><rect x="46.9103%" y="693" width="0.0116%" height="15" fill="rgb(232,78,19)" fg:x="68483" fg:w="17"/><text x="47.1603%" y="703.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (37 samples, 0.03%)</title><rect x="46.8973%" y="805" width="0.0253%" height="15" fill="rgb(233,112,48)" fg:x="68464" fg:w="37"/><text x="47.1473%" y="815.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (37 samples, 0.03%)</title><rect x="46.8973%" y="789" width="0.0253%" height="15" fill="rgb(243,131,47)" fg:x="68464" fg:w="37"/><text x="47.1473%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (37 samples, 0.03%)</title><rect x="46.8973%" y="773" width="0.0253%" height="15" fill="rgb(226,51,1)" fg:x="68464" fg:w="37"/><text x="47.1473%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (37 samples, 0.03%)</title><rect x="46.8973%" y="757" width="0.0253%" height="15" fill="rgb(247,58,7)" fg:x="68464" fg:w="37"/><text x="47.1473%" y="767.50"></text></g><g><title>clang::Parser::ParseLinkage (37 samples, 0.03%)</title><rect x="46.8973%" y="741" width="0.0253%" height="15" fill="rgb(209,7,32)" fg:x="68464" fg:w="37"/><text x="47.1473%" y="751.50"></text></g><g><title>clang::driver::CC1Command::Execute (73 samples, 0.05%)</title><rect x="46.8850%" y="949" width="0.0500%" height="15" fill="rgb(209,39,41)" fg:x="68446" fg:w="73"/><text x="47.1350%" y="959.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (73 samples, 0.05%)</title><rect x="46.8850%" y="933" width="0.0500%" height="15" fill="rgb(226,182,46)" fg:x="68446" fg:w="73"/><text x="47.1350%" y="943.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (73 samples, 0.05%)</title><rect x="46.8850%" y="917" width="0.0500%" height="15" fill="rgb(230,219,10)" fg:x="68446" fg:w="73"/><text x="47.1350%" y="927.50"></text></g><g><title>ExecuteCC1Tool (73 samples, 0.05%)</title><rect x="46.8850%" y="901" width="0.0500%" height="15" fill="rgb(227,175,30)" fg:x="68446" fg:w="73"/><text x="47.1350%" y="911.50"></text></g><g><title>cc1_main (73 samples, 0.05%)</title><rect x="46.8850%" y="885" width="0.0500%" height="15" fill="rgb(217,2,50)" fg:x="68446" fg:w="73"/><text x="47.1350%" y="895.50"></text></g><g><title>clang::ExecuteCompilerInvocation (71 samples, 0.05%)</title><rect x="46.8864%" y="869" width="0.0486%" height="15" fill="rgb(229,160,0)" fg:x="68448" fg:w="71"/><text x="47.1364%" y="879.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (71 samples, 0.05%)</title><rect x="46.8864%" y="853" width="0.0486%" height="15" fill="rgb(207,78,37)" fg:x="68448" fg:w="71"/><text x="47.1364%" y="863.50"></text></g><g><title>clang::FrontendAction::Execute (60 samples, 0.04%)</title><rect x="46.8939%" y="837" width="0.0411%" height="15" fill="rgb(225,57,0)" fg:x="68459" fg:w="60"/><text x="47.1439%" y="847.50"></text></g><g><title>clang::ParseAST (60 samples, 0.04%)</title><rect x="46.8939%" y="821" width="0.0411%" height="15" fill="rgb(232,154,2)" fg:x="68459" fg:w="60"/><text x="47.1439%" y="831.50"></text></g><g><title>clang::Preprocessor::Lex (18 samples, 0.01%)</title><rect x="46.9227%" y="805" width="0.0123%" height="15" fill="rgb(241,212,25)" fg:x="68501" fg:w="18"/><text x="47.1727%" y="815.50"></text></g><g><title>clang::Lexer::LexTokenInternal (18 samples, 0.01%)</title><rect x="46.9227%" y="789" width="0.0123%" height="15" fill="rgb(226,69,20)" fg:x="68501" fg:w="18"/><text x="47.1727%" y="799.50"></text></g><g><title>clang::Preprocessor::HandleDirective (18 samples, 0.01%)</title><rect x="46.9227%" y="773" width="0.0123%" height="15" fill="rgb(247,184,54)" fg:x="68501" fg:w="18"/><text x="47.1727%" y="783.50"></text></g><g><title>clang::driver::tools::Clang::ConstructJob (25 samples, 0.02%)</title><rect x="47.0104%" y="869" width="0.0171%" height="15" fill="rgb(210,145,0)" fg:x="68629" fg:w="25"/><text x="47.2604%" y="879.50"></text></g><g><title>clang::driver::Driver::BuildJobs (54 samples, 0.04%)</title><rect x="47.0069%" y="917" width="0.0370%" height="15" fill="rgb(253,82,12)" fg:x="68624" fg:w="54"/><text x="47.2569%" y="927.50"></text></g><g><title>clang::driver::Driver::BuildJobsForAction (54 samples, 0.04%)</title><rect x="47.0069%" y="901" width="0.0370%" height="15" fill="rgb(245,42,11)" fg:x="68624" fg:w="54"/><text x="47.2569%" y="911.50"></text></g><g><title>clang::driver::Driver::BuildJobsForActionNoCache (54 samples, 0.04%)</title><rect x="47.0069%" y="885" width="0.0370%" height="15" fill="rgb(219,147,32)" fg:x="68624" fg:w="54"/><text x="47.2569%" y="895.50"></text></g><g><title>clang::driver::tools::gnutools::Linker::ConstructJob (24 samples, 0.02%)</title><rect x="47.0275%" y="869" width="0.0164%" height="15" fill="rgb(246,12,7)" fg:x="68654" fg:w="24"/><text x="47.2775%" y="879.50"></text></g><g><title>__opendir (15 samples, 0.01%)</title><rect x="47.0542%" y="821" width="0.0103%" height="15" fill="rgb(243,50,9)" fg:x="68693" fg:w="15"/><text x="47.3042%" y="831.50"></text></g><g><title>__GI___open64_nocancel (15 samples, 0.01%)</title><rect x="47.0542%" y="805" width="0.0103%" height="15" fill="rgb(219,149,6)" fg:x="68693" fg:w="15"/><text x="47.3042%" y="815.50"></text></g><g><title>llvm::sys::fs::directory_iterator::directory_iterator (19 samples, 0.01%)</title><rect x="47.0542%" y="853" width="0.0130%" height="15" fill="rgb(241,51,42)" fg:x="68693" fg:w="19"/><text x="47.3042%" y="863.50"></text></g><g><title>llvm::sys::fs::detail::directory_iterator_construct (19 samples, 0.01%)</title><rect x="47.0542%" y="837" width="0.0130%" height="15" fill="rgb(226,128,27)" fg:x="68693" fg:w="19"/><text x="47.3042%" y="847.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple (40 samples, 0.03%)</title><rect x="47.0453%" y="869" width="0.0274%" height="15" fill="rgb(244,144,4)" fg:x="68680" fg:w="40"/><text x="47.2953%" y="879.50"></text></g><g><title>__GI___xstat (15 samples, 0.01%)</title><rect x="47.0734%" y="837" width="0.0103%" height="15" fill="rgb(221,4,13)" fg:x="68721" fg:w="15"/><text x="47.3234%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="47.0734%" y="821" width="0.0103%" height="15" fill="rgb(208,170,28)" fg:x="68721" fg:w="15"/><text x="47.3234%" y="831.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="47.0734%" y="805" width="0.0103%" height="15" fill="rgb(226,131,13)" fg:x="68721" fg:w="15"/><text x="47.3234%" y="815.50"></text></g><g><title>__do_sys_newstat (15 samples, 0.01%)</title><rect x="47.0734%" y="789" width="0.0103%" height="15" fill="rgb(215,72,41)" fg:x="68721" fg:w="15"/><text x="47.3234%" y="799.50"></text></g><g><title>vfs_statx (15 samples, 0.01%)</title><rect x="47.0734%" y="773" width="0.0103%" height="15" fill="rgb(243,108,20)" fg:x="68721" fg:w="15"/><text x="47.3234%" y="783.50"></text></g><g><title>llvm::vfs::FileSystem::exists (17 samples, 0.01%)</title><rect x="47.0734%" y="869" width="0.0116%" height="15" fill="rgb(230,189,17)" fg:x="68721" fg:w="17"/><text x="47.3234%" y="879.50"></text></g><g><title>llvm::sys::fs::status (17 samples, 0.01%)</title><rect x="47.0734%" y="853" width="0.0116%" height="15" fill="rgb(220,50,17)" fg:x="68721" fg:w="17"/><text x="47.3234%" y="863.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (60 samples, 0.04%)</title><rect x="47.0453%" y="885" width="0.0411%" height="15" fill="rgb(248,152,48)" fg:x="68680" fg:w="60"/><text x="47.2953%" y="895.50"></text></g><g><title>clang::driver::CudaInstallationDetector::CudaInstallationDetector (18 samples, 0.01%)</title><rect x="47.0864%" y="869" width="0.0123%" height="15" fill="rgb(244,91,11)" fg:x="68740" fg:w="18"/><text x="47.3364%" y="879.50"></text></g><g><title>clang::driver::RocmInstallationDetector::detectHIPRuntime (21 samples, 0.01%)</title><rect x="47.0987%" y="853" width="0.0144%" height="15" fill="rgb(220,157,5)" fg:x="68758" fg:w="21"/><text x="47.3487%" y="863.50"></text></g><g><title>clang::driver::RocmInstallationDetector::RocmInstallationDetector (22 samples, 0.02%)</title><rect x="47.0987%" y="869" width="0.0151%" height="15" fill="rgb(253,137,8)" fg:x="68758" fg:w="22"/><text x="47.3487%" y="879.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (159 samples, 0.11%)</title><rect x="47.0069%" y="933" width="0.1089%" height="15" fill="rgb(217,137,51)" fg:x="68624" fg:w="159"/><text x="47.2569%" y="943.50"></text></g><g><title>clang::driver::Driver::getToolChain (105 samples, 0.07%)</title><rect x="47.0439%" y="917" width="0.0719%" height="15" fill="rgb(218,209,53)" fg:x="68678" fg:w="105"/><text x="47.2939%" y="927.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (105 samples, 0.07%)</title><rect x="47.0439%" y="901" width="0.0719%" height="15" fill="rgb(249,137,25)" fg:x="68678" fg:w="105"/><text x="47.2939%" y="911.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (43 samples, 0.03%)</title><rect x="47.0864%" y="885" width="0.0295%" height="15" fill="rgb(239,155,26)" fg:x="68740" fg:w="43"/><text x="47.3364%" y="895.50"></text></g><g><title>llvm::StringMapImpl::LookupBucketFor (26 samples, 0.02%)</title><rect x="47.1535%" y="709" width="0.0178%" height="15" fill="rgb(227,85,46)" fg:x="68838" fg:w="26"/><text x="47.4035%" y="719.50"></text></g><g><title>llvm::StringMap&lt;clang::IdentifierInfo*, llvm::BumpPtrAllocatorImpl&lt;llvm::MallocAllocator, 4096ul, 4096ul, 128ul&gt; &gt;::try_emplace&lt;clang::IdentifierInfo*&gt; (38 samples, 0.03%)</title><rect x="47.1480%" y="725" width="0.0260%" height="15" fill="rgb(251,107,43)" fg:x="68830" fg:w="38"/><text x="47.3980%" y="735.50"></text></g><g><title>clang::Builtin::Context::initializeBuiltins (60 samples, 0.04%)</title><rect x="47.1343%" y="757" width="0.0411%" height="15" fill="rgb(234,170,33)" fg:x="68810" fg:w="60"/><text x="47.3843%" y="767.50"></text></g><g><title>clang::IdentifierTable::get (44 samples, 0.03%)</title><rect x="47.1453%" y="741" width="0.0301%" height="15" fill="rgb(206,29,35)" fg:x="68826" fg:w="44"/><text x="47.3953%" y="751.50"></text></g><g><title>InitializePredefinedMacros (17 samples, 0.01%)</title><rect x="47.1871%" y="725" width="0.0116%" height="15" fill="rgb(227,138,25)" fg:x="68887" fg:w="17"/><text x="47.4371%" y="735.50"></text></g><g><title>clang::InitializePreprocessor (20 samples, 0.01%)</title><rect x="47.1871%" y="741" width="0.0137%" height="15" fill="rgb(249,131,35)" fg:x="68887" fg:w="20"/><text x="47.4371%" y="751.50"></text></g><g><title>clang::CompilerInstance::createPreprocessor (45 samples, 0.03%)</title><rect x="47.1816%" y="757" width="0.0308%" height="15" fill="rgb(239,6,40)" fg:x="68879" fg:w="45"/><text x="47.4316%" y="767.50"></text></g><g><title>std::__shared_ptr&lt;clang::Preprocessor, (__gnu_cxx::_Lock_policy)2&gt;::__shared_ptr&lt;std::allocator&lt;clang::Preprocessor&gt;, std::shared_ptr&lt;clang::PreprocessorOptions&gt;, clang::DiagnosticsEngine&amp;, clang::LangOptions&amp;, clang::SourceManager&amp;, clang::HeaderSearch&amp;, clang::CompilerInstance&amp;, decltype(nullptr), bool, clang::TranslationUnitKind&amp;&gt; (17 samples, 0.01%)</title><rect x="47.2008%" y="741" width="0.0116%" height="15" fill="rgb(246,136,47)" fg:x="68907" fg:w="17"/><text x="47.4508%" y="751.50"></text></g><g><title>clang::Preprocessor::Preprocessor (17 samples, 0.01%)</title><rect x="47.2008%" y="725" width="0.0116%" height="15" fill="rgb(253,58,26)" fg:x="68907" fg:w="17"/><text x="47.4508%" y="735.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (131 samples, 0.09%)</title><rect x="47.1295%" y="773" width="0.0897%" height="15" fill="rgb(237,141,10)" fg:x="68803" fg:w="131"/><text x="47.3795%" y="783.50"></text></g><g><title>clang::FrontendAction::EndSourceFile (30 samples, 0.02%)</title><rect x="47.2193%" y="773" width="0.0205%" height="15" fill="rgb(234,156,12)" fg:x="68934" fg:w="30"/><text x="47.4693%" y="783.50"></text></g><g><title>clang::DependencyFileGenerator::outputDependencyFile (16 samples, 0.01%)</title><rect x="47.2289%" y="757" width="0.0110%" height="15" fill="rgb(243,224,36)" fg:x="68948" fg:w="16"/><text x="47.4789%" y="767.50"></text></g><g><title>clang::BalancedDelimiterTracker::consumeClose (43 samples, 0.03%)</title><rect x="47.2535%" y="645" width="0.0295%" height="15" fill="rgb(205,229,51)" fg:x="68984" fg:w="43"/><text x="47.5035%" y="655.50"></text></g><g><title>clang::Parser::ConsumeBrace (43 samples, 0.03%)</title><rect x="47.2535%" y="629" width="0.0295%" height="15" fill="rgb(223,189,4)" fg:x="68984" fg:w="43"/><text x="47.5035%" y="639.50"></text></g><g><title>clang::Preprocessor::Lex (43 samples, 0.03%)</title><rect x="47.2535%" y="613" width="0.0295%" height="15" fill="rgb(249,167,54)" fg:x="68984" fg:w="43"/><text x="47.5035%" y="623.50"></text></g><g><title>clang::Lexer::LexTokenInternal (43 samples, 0.03%)</title><rect x="47.2535%" y="597" width="0.0295%" height="15" fill="rgb(218,34,28)" fg:x="68984" fg:w="43"/><text x="47.5035%" y="607.50"></text></g><g><title>clang::Preprocessor::HandleDirective (39 samples, 0.03%)</title><rect x="47.2563%" y="581" width="0.0267%" height="15" fill="rgb(232,109,42)" fg:x="68988" fg:w="39"/><text x="47.5063%" y="591.50"></text></g><g><title>clang::Parser::ParseInnerNamespace (44 samples, 0.03%)</title><rect x="47.2535%" y="661" width="0.0301%" height="15" fill="rgb(248,214,46)" fg:x="68984" fg:w="44"/><text x="47.5035%" y="671.50"></text></g><g><title>clang::Parser::ParseFirstTopLevelDecl (47 samples, 0.03%)</title><rect x="47.2535%" y="741" width="0.0322%" height="15" fill="rgb(244,216,40)" fg:x="68984" fg:w="47"/><text x="47.5035%" y="751.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (47 samples, 0.03%)</title><rect x="47.2535%" y="725" width="0.0322%" height="15" fill="rgb(231,226,31)" fg:x="68984" fg:w="47"/><text x="47.5035%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (47 samples, 0.03%)</title><rect x="47.2535%" y="709" width="0.0322%" height="15" fill="rgb(238,38,43)" fg:x="68984" fg:w="47"/><text x="47.5035%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclaration (47 samples, 0.03%)</title><rect x="47.2535%" y="693" width="0.0322%" height="15" fill="rgb(208,88,43)" fg:x="68984" fg:w="47"/><text x="47.5035%" y="703.50"></text></g><g><title>clang::Parser::ParseNamespace (47 samples, 0.03%)</title><rect x="47.2535%" y="677" width="0.0322%" height="15" fill="rgb(205,136,37)" fg:x="68984" fg:w="47"/><text x="47.5035%" y="687.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (18 samples, 0.01%)</title><rect x="47.2885%" y="661" width="0.0123%" height="15" fill="rgb(237,34,14)" fg:x="69035" fg:w="18"/><text x="47.5385%" y="671.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (24 samples, 0.02%)</title><rect x="47.2857%" y="741" width="0.0164%" height="15" fill="rgb(236,193,44)" fg:x="69031" fg:w="24"/><text x="47.5357%" y="751.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (24 samples, 0.02%)</title><rect x="47.2857%" y="725" width="0.0164%" height="15" fill="rgb(231,48,10)" fg:x="69031" fg:w="24"/><text x="47.5357%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (24 samples, 0.02%)</title><rect x="47.2857%" y="709" width="0.0164%" height="15" fill="rgb(213,141,34)" fg:x="69031" fg:w="24"/><text x="47.5357%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (24 samples, 0.02%)</title><rect x="47.2857%" y="693" width="0.0164%" height="15" fill="rgb(249,130,34)" fg:x="69031" fg:w="24"/><text x="47.5357%" y="703.50"></text></g><g><title>clang::Parser::ParseLinkage (23 samples, 0.02%)</title><rect x="47.2864%" y="677" width="0.0158%" height="15" fill="rgb(219,42,41)" fg:x="69032" fg:w="23"/><text x="47.5364%" y="687.50"></text></g><g><title>clang::Preprocessor::ReadMacroName (19 samples, 0.01%)</title><rect x="47.3220%" y="677" width="0.0130%" height="15" fill="rgb(224,100,54)" fg:x="69084" fg:w="19"/><text x="47.5720%" y="687.50"></text></g><g><title>clang::Preprocessor::ReadOptionalMacroParameterListAndBody (30 samples, 0.02%)</title><rect x="47.3350%" y="677" width="0.0205%" height="15" fill="rgb(229,200,27)" fg:x="69103" fg:w="30"/><text x="47.5850%" y="687.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (62 samples, 0.04%)</title><rect x="47.3193%" y="693" width="0.0425%" height="15" fill="rgb(217,118,10)" fg:x="69080" fg:w="62"/><text x="47.5693%" y="703.50"></text></g><g><title>EvaluateValue (17 samples, 0.01%)</title><rect x="47.3782%" y="661" width="0.0116%" height="15" fill="rgb(206,22,3)" fg:x="69166" fg:w="17"/><text x="47.6282%" y="671.50"></text></g><g><title>clang::Preprocessor::EvaluateDirectiveExpression (36 samples, 0.02%)</title><rect x="47.3700%" y="677" width="0.0247%" height="15" fill="rgb(232,163,46)" fg:x="69154" fg:w="36"/><text x="47.6200%" y="687.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (53 samples, 0.04%)</title><rect x="47.3700%" y="693" width="0.0363%" height="15" fill="rgb(206,95,13)" fg:x="69154" fg:w="53"/><text x="47.6200%" y="703.50"></text></g><g><title>clang::Preprocessor::SkipExcludedConditionalBlock (17 samples, 0.01%)</title><rect x="47.3946%" y="677" width="0.0116%" height="15" fill="rgb(253,154,18)" fg:x="69190" fg:w="17"/><text x="47.6446%" y="687.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (445 samples, 0.30%)</title><rect x="47.1241%" y="789" width="0.3048%" height="15" fill="rgb(219,32,23)" fg:x="68795" fg:w="445"/><text x="47.3741%" y="799.50"></text></g><g><title>clang::FrontendAction::Execute (276 samples, 0.19%)</title><rect x="47.2398%" y="773" width="0.1891%" height="15" fill="rgb(230,191,45)" fg:x="68964" fg:w="276"/><text x="47.4898%" y="783.50"></text></g><g><title>clang::ParseAST (272 samples, 0.19%)</title><rect x="47.2426%" y="757" width="0.1863%" height="15" fill="rgb(229,64,36)" fg:x="68968" fg:w="272"/><text x="47.4926%" y="767.50"></text></g><g><title>clang::Preprocessor::Lex (175 samples, 0.12%)</title><rect x="47.3090%" y="741" width="0.1199%" height="15" fill="rgb(205,129,25)" fg:x="69065" fg:w="175"/><text x="47.5590%" y="751.50"></text></g><g><title>clang::Lexer::LexTokenInternal (175 samples, 0.12%)</title><rect x="47.3090%" y="725" width="0.1199%" height="15" fill="rgb(254,112,7)" fg:x="69065" fg:w="175"/><text x="47.5590%" y="735.50"></text></g><g><title>clang::Preprocessor::HandleDirective (164 samples, 0.11%)</title><rect x="47.3165%" y="709" width="0.1123%" height="15" fill="rgb(226,53,48)" fg:x="69076" fg:w="164"/><text x="47.5665%" y="719.50"></text></g><g><title>clang::ExecuteCompilerInvocation (460 samples, 0.32%)</title><rect x="47.1241%" y="805" width="0.3151%" height="15" fill="rgb(214,153,38)" fg:x="68795" fg:w="460"/><text x="47.3741%" y="815.50"></text></g><g><title>clang::driver::CC1Command::Execute (485 samples, 0.33%)</title><rect x="47.1158%" y="885" width="0.3322%" height="15" fill="rgb(243,101,7)" fg:x="68783" fg:w="485"/><text x="47.3658%" y="895.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (485 samples, 0.33%)</title><rect x="47.1158%" y="869" width="0.3322%" height="15" fill="rgb(240,140,22)" fg:x="68783" fg:w="485"/><text x="47.3658%" y="879.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (485 samples, 0.33%)</title><rect x="47.1158%" y="853" width="0.3322%" height="15" fill="rgb(235,114,2)" fg:x="68783" fg:w="485"/><text x="47.3658%" y="863.50"></text></g><g><title>ExecuteCC1Tool (485 samples, 0.33%)</title><rect x="47.1158%" y="837" width="0.3322%" height="15" fill="rgb(242,59,12)" fg:x="68783" fg:w="485"/><text x="47.3658%" y="847.50"></text></g><g><title>cc1_main (485 samples, 0.33%)</title><rect x="47.1158%" y="821" width="0.3322%" height="15" fill="rgb(252,134,9)" fg:x="68783" fg:w="485"/><text x="47.3658%" y="831.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (489 samples, 0.33%)</title><rect x="47.1158%" y="933" width="0.3350%" height="15" fill="rgb(236,4,44)" fg:x="68783" fg:w="489"/><text x="47.3658%" y="943.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (489 samples, 0.33%)</title><rect x="47.1158%" y="917" width="0.3350%" height="15" fill="rgb(254,172,41)" fg:x="68783" fg:w="489"/><text x="47.3658%" y="927.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (489 samples, 0.33%)</title><rect x="47.1158%" y="901" width="0.3350%" height="15" fill="rgb(244,63,20)" fg:x="68783" fg:w="489"/><text x="47.3658%" y="911.50"></text></g><g><title>main (653 samples, 0.45%)</title><rect x="47.0062%" y="949" width="0.4473%" height="15" fill="rgb(250,73,31)" fg:x="68623" fg:w="653"/><text x="47.2562%" y="959.50"></text></g><g><title>[unknown] (1,776 samples, 1.22%)</title><rect x="46.2425%" y="965" width="1.2165%" height="15" fill="rgb(241,38,36)" fg:x="67508" fg:w="1776"/><text x="46.4925%" y="975.50"></text></g><g><title>__x64_sys_rt_sigaction (21 samples, 0.01%)</title><rect x="47.4700%" y="885" width="0.0144%" height="15" fill="rgb(245,211,2)" fg:x="69300" fg:w="21"/><text x="47.7200%" y="895.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="47.4700%" y="901" width="0.0151%" height="15" fill="rgb(206,120,28)" fg:x="69300" fg:w="22"/><text x="47.7200%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="47.4693%" y="917" width="0.0164%" height="15" fill="rgb(211,59,34)" fg:x="69299" fg:w="24"/><text x="47.7193%" y="927.50"></text></g><g><title>__GI___libc_sigaction (39 samples, 0.03%)</title><rect x="47.4611%" y="933" width="0.0267%" height="15" fill="rgb(233,168,5)" fg:x="69287" fg:w="39"/><text x="47.7111%" y="943.50"></text></g><g><title>__spawni_child (76 samples, 0.05%)</title><rect x="47.4604%" y="949" width="0.0521%" height="15" fill="rgb(234,33,13)" fg:x="69286" fg:w="76"/><text x="47.7104%" y="959.50"></text></g><g><title>__GI_execve (35 samples, 0.02%)</title><rect x="47.4885%" y="933" width="0.0240%" height="15" fill="rgb(231,150,26)" fg:x="69327" fg:w="35"/><text x="47.7385%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="47.4885%" y="917" width="0.0240%" height="15" fill="rgb(217,191,4)" fg:x="69327" fg:w="35"/><text x="47.7385%" y="927.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="47.4885%" y="901" width="0.0240%" height="15" fill="rgb(246,198,38)" fg:x="69327" fg:w="35"/><text x="47.7385%" y="911.50"></text></g><g><title>__x64_sys_execve (35 samples, 0.02%)</title><rect x="47.4885%" y="885" width="0.0240%" height="15" fill="rgb(245,64,37)" fg:x="69327" fg:w="35"/><text x="47.7385%" y="895.50"></text></g><g><title>do_execveat_common (35 samples, 0.02%)</title><rect x="47.4885%" y="869" width="0.0240%" height="15" fill="rgb(250,30,36)" fg:x="69327" fg:w="35"/><text x="47.7385%" y="879.50"></text></g><g><title>bprm_execve (35 samples, 0.02%)</title><rect x="47.4885%" y="853" width="0.0240%" height="15" fill="rgb(217,86,53)" fg:x="69327" fg:w="35"/><text x="47.7385%" y="863.50"></text></g><g><title>__do_sys_clone (16 samples, 0.01%)</title><rect x="47.5124%" y="917" width="0.0110%" height="15" fill="rgb(228,157,16)" fg:x="69362" fg:w="16"/><text x="47.7624%" y="927.50"></text></g><g><title>kernel_clone (16 samples, 0.01%)</title><rect x="47.5124%" y="901" width="0.0110%" height="15" fill="rgb(217,59,31)" fg:x="69362" fg:w="16"/><text x="47.7624%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="47.5124%" y="949" width="0.0116%" height="15" fill="rgb(237,138,41)" fg:x="69362" fg:w="17"/><text x="47.7624%" y="959.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="47.5124%" y="933" width="0.0116%" height="15" fill="rgb(227,91,49)" fg:x="69362" fg:w="17"/><text x="47.7624%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (246 samples, 0.17%)</title><rect x="47.5405%" y="901" width="0.1685%" height="15" fill="rgb(247,21,44)" fg:x="69403" fg:w="246"/><text x="47.7905%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (240 samples, 0.16%)</title><rect x="47.5446%" y="885" width="0.1644%" height="15" fill="rgb(219,210,51)" fg:x="69409" fg:w="240"/><text x="47.7946%" y="895.50"></text></g><g><title>native_write_msr (240 samples, 0.16%)</title><rect x="47.5446%" y="869" width="0.1644%" height="15" fill="rgb(209,140,6)" fg:x="69409" fg:w="240"/><text x="47.7946%" y="879.50"></text></g><g><title>__GI___clone (375 samples, 0.26%)</title><rect x="47.4590%" y="965" width="0.2569%" height="15" fill="rgb(221,188,24)" fg:x="69284" fg:w="375"/><text x="47.7090%" y="975.50"></text></g><g><title>ret_from_fork (280 samples, 0.19%)</title><rect x="47.5241%" y="949" width="0.1918%" height="15" fill="rgb(232,154,20)" fg:x="69379" fg:w="280"/><text x="47.7741%" y="959.50"></text></g><g><title>schedule_tail (271 samples, 0.19%)</title><rect x="47.5303%" y="933" width="0.1856%" height="15" fill="rgb(244,137,50)" fg:x="69388" fg:w="271"/><text x="47.7803%" y="943.50"></text></g><g><title>finish_task_switch (271 samples, 0.19%)</title><rect x="47.5303%" y="917" width="0.1856%" height="15" fill="rgb(225,185,43)" fg:x="69388" fg:w="271"/><text x="47.7803%" y="927.50"></text></g><g><title>malloc_hook_ini (15 samples, 0.01%)</title><rect x="47.7214%" y="885" width="0.0103%" height="15" fill="rgb(213,205,38)" fg:x="69667" fg:w="15"/><text x="47.9714%" y="895.50"></text></g><g><title>ptmalloc_init (15 samples, 0.01%)</title><rect x="47.7214%" y="869" width="0.0103%" height="15" fill="rgb(236,73,12)" fg:x="69667" fg:w="15"/><text x="47.9714%" y="879.50"></text></g><g><title>ptmalloc_init (15 samples, 0.01%)</title><rect x="47.7214%" y="853" width="0.0103%" height="15" fill="rgb(235,219,13)" fg:x="69667" fg:w="15"/><text x="47.9714%" y="863.50"></text></g><g><title>[libstdc++.so.6.0.28] (22 samples, 0.02%)</title><rect x="47.7173%" y="901" width="0.0151%" height="15" fill="rgb(218,59,36)" fg:x="69661" fg:w="22"/><text x="47.9673%" y="911.50"></text></g><g><title>_dl_start_user (27 samples, 0.02%)</title><rect x="47.7173%" y="965" width="0.0185%" height="15" fill="rgb(205,110,39)" fg:x="69661" fg:w="27"/><text x="47.9673%" y="975.50"></text></g><g><title>_dl_init (27 samples, 0.02%)</title><rect x="47.7173%" y="949" width="0.0185%" height="15" fill="rgb(218,206,42)" fg:x="69661" fg:w="27"/><text x="47.9673%" y="959.50"></text></g><g><title>call_init (27 samples, 0.02%)</title><rect x="47.7173%" y="933" width="0.0185%" height="15" fill="rgb(248,125,24)" fg:x="69661" fg:w="27"/><text x="47.9673%" y="943.50"></text></g><g><title>call_init (27 samples, 0.02%)</title><rect x="47.7173%" y="917" width="0.0185%" height="15" fill="rgb(242,28,27)" fg:x="69661" fg:w="27"/><text x="47.9673%" y="927.50"></text></g><g><title>__GI_exit (62 samples, 0.04%)</title><rect x="47.7399%" y="933" width="0.0425%" height="15" fill="rgb(216,228,15)" fg:x="69694" fg:w="62"/><text x="47.9899%" y="943.50"></text></g><g><title>__run_exit_handlers (62 samples, 0.04%)</title><rect x="47.7399%" y="917" width="0.0425%" height="15" fill="rgb(235,116,46)" fg:x="69694" fg:w="62"/><text x="47.9899%" y="927.50"></text></g><g><title>__pthread_once_slow (16 samples, 0.01%)</title><rect x="48.1447%" y="869" width="0.0110%" height="15" fill="rgb(224,18,32)" fg:x="70285" fg:w="16"/><text x="48.3947%" y="879.50"></text></g><g><title>initializeCodeGenerationPassOnce (15 samples, 0.01%)</title><rect x="48.1454%" y="853" width="0.0103%" height="15" fill="rgb(252,5,12)" fg:x="70286" fg:w="15"/><text x="48.3954%" y="863.50"></text></g><g><title>llvm::initializeDependenceInfoPass (15 samples, 0.01%)</title><rect x="48.1454%" y="837" width="0.0103%" height="15" fill="rgb(251,36,5)" fg:x="70286" fg:w="15"/><text x="48.3954%" y="847.50"></text></g><g><title>__pthread_once_slow (15 samples, 0.01%)</title><rect x="48.1454%" y="821" width="0.0103%" height="15" fill="rgb(217,53,14)" fg:x="70286" fg:w="15"/><text x="48.3954%" y="831.50"></text></g><g><title>llvm::initializeCodeGenerationPass (19 samples, 0.01%)</title><rect x="48.1447%" y="885" width="0.0130%" height="15" fill="rgb(215,86,45)" fg:x="70285" fg:w="19"/><text x="48.3947%" y="895.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (36 samples, 0.02%)</title><rect x="48.1392%" y="917" width="0.0247%" height="15" fill="rgb(242,169,11)" fg:x="70277" fg:w="36"/><text x="48.3892%" y="927.50"></text></g><g><title>polly::initializePollyPasses (28 samples, 0.02%)</title><rect x="48.1447%" y="901" width="0.0192%" height="15" fill="rgb(211,213,45)" fg:x="70285" fg:w="28"/><text x="48.3947%" y="911.50"></text></g><g><title>__libc_csu_init (676 samples, 0.46%)</title><rect x="47.7823%" y="933" width="0.4631%" height="15" fill="rgb(205,88,11)" fg:x="69756" fg:w="676"/><text x="48.0323%" y="943.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (17 samples, 0.01%)</title><rect x="48.2810%" y="885" width="0.0116%" height="15" fill="rgb(252,69,26)" fg:x="70484" fg:w="17"/><text x="48.5310%" y="895.50"></text></g><g><title>clang::driver::Driver::getToolChain (20 samples, 0.01%)</title><rect x="48.2796%" y="901" width="0.0137%" height="15" fill="rgb(246,123,37)" fg:x="70482" fg:w="20"/><text x="48.5296%" y="911.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (42 samples, 0.03%)</title><rect x="48.2659%" y="917" width="0.0288%" height="15" fill="rgb(212,205,5)" fg:x="70462" fg:w="42"/><text x="48.5159%" y="927.50"></text></g><g><title>clang::driver::CC1Command::Execute (25 samples, 0.02%)</title><rect x="48.2975%" y="869" width="0.0171%" height="15" fill="rgb(253,148,0)" fg:x="70508" fg:w="25"/><text x="48.5475%" y="879.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (25 samples, 0.02%)</title><rect x="48.2975%" y="853" width="0.0171%" height="15" fill="rgb(239,22,4)" fg:x="70508" fg:w="25"/><text x="48.5475%" y="863.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (24 samples, 0.02%)</title><rect x="48.2981%" y="837" width="0.0164%" height="15" fill="rgb(226,26,53)" fg:x="70509" fg:w="24"/><text x="48.5481%" y="847.50"></text></g><g><title>ExecuteCC1Tool (24 samples, 0.02%)</title><rect x="48.2981%" y="821" width="0.0164%" height="15" fill="rgb(225,229,45)" fg:x="70509" fg:w="24"/><text x="48.5481%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.05%)</title><rect x="48.3194%" y="677" width="0.0479%" height="15" fill="rgb(220,60,37)" fg:x="70540" fg:w="70"/><text x="48.5694%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (68 samples, 0.05%)</title><rect x="48.3207%" y="661" width="0.0466%" height="15" fill="rgb(217,180,35)" fg:x="70542" fg:w="68"/><text x="48.5707%" y="671.50"></text></g><g><title>native_write_msr (68 samples, 0.05%)</title><rect x="48.3207%" y="645" width="0.0466%" height="15" fill="rgb(229,7,53)" fg:x="70542" fg:w="68"/><text x="48.5707%" y="655.50"></text></g><g><title>schedule (75 samples, 0.05%)</title><rect x="48.3180%" y="725" width="0.0514%" height="15" fill="rgb(254,137,3)" fg:x="70538" fg:w="75"/><text x="48.5680%" y="735.50"></text></g><g><title>__schedule (75 samples, 0.05%)</title><rect x="48.3180%" y="709" width="0.0514%" height="15" fill="rgb(215,140,41)" fg:x="70538" fg:w="75"/><text x="48.5680%" y="719.50"></text></g><g><title>finish_task_switch (75 samples, 0.05%)</title><rect x="48.3180%" y="693" width="0.0514%" height="15" fill="rgb(250,80,15)" fg:x="70538" fg:w="75"/><text x="48.5680%" y="703.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (120 samples, 0.08%)</title><rect x="48.2975%" y="901" width="0.0822%" height="15" fill="rgb(252,191,6)" fg:x="70508" fg:w="120"/><text x="48.5475%" y="911.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (120 samples, 0.08%)</title><rect x="48.2975%" y="885" width="0.0822%" height="15" fill="rgb(246,217,18)" fg:x="70508" fg:w="120"/><text x="48.5475%" y="895.50"></text></g><g><title>clang::driver::Command::Execute (95 samples, 0.07%)</title><rect x="48.3146%" y="869" width="0.0651%" height="15" fill="rgb(223,93,7)" fg:x="70533" fg:w="95"/><text x="48.5646%" y="879.50"></text></g><g><title>llvm::sys::ExecuteAndWait (95 samples, 0.07%)</title><rect x="48.3146%" y="853" width="0.0651%" height="15" fill="rgb(225,55,52)" fg:x="70533" fg:w="95"/><text x="48.5646%" y="863.50"></text></g><g><title>llvm::sys::Wait (95 samples, 0.07%)</title><rect x="48.3146%" y="837" width="0.0651%" height="15" fill="rgb(240,31,24)" fg:x="70533" fg:w="95"/><text x="48.5646%" y="847.50"></text></g><g><title>__GI___wait4 (95 samples, 0.07%)</title><rect x="48.3146%" y="821" width="0.0651%" height="15" fill="rgb(205,56,52)" fg:x="70533" fg:w="95"/><text x="48.5646%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.06%)</title><rect x="48.3153%" y="805" width="0.0644%" height="15" fill="rgb(246,146,12)" fg:x="70534" fg:w="94"/><text x="48.5653%" y="815.50"></text></g><g><title>do_syscall_64 (94 samples, 0.06%)</title><rect x="48.3153%" y="789" width="0.0644%" height="15" fill="rgb(239,84,36)" fg:x="70534" fg:w="94"/><text x="48.5653%" y="799.50"></text></g><g><title>__do_sys_wait4 (94 samples, 0.06%)</title><rect x="48.3153%" y="773" width="0.0644%" height="15" fill="rgb(207,41,40)" fg:x="70534" fg:w="94"/><text x="48.5653%" y="783.50"></text></g><g><title>kernel_wait4 (94 samples, 0.06%)</title><rect x="48.3153%" y="757" width="0.0644%" height="15" fill="rgb(241,179,25)" fg:x="70534" fg:w="94"/><text x="48.5653%" y="767.50"></text></g><g><title>do_wait (94 samples, 0.06%)</title><rect x="48.3153%" y="741" width="0.0644%" height="15" fill="rgb(210,0,34)" fg:x="70534" fg:w="94"/><text x="48.5653%" y="751.50"></text></g><g><title>wait_consider_task (15 samples, 0.01%)</title><rect x="48.3694%" y="725" width="0.0103%" height="15" fill="rgb(225,217,29)" fg:x="70613" fg:w="15"/><text x="48.6194%" y="735.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (123 samples, 0.08%)</title><rect x="48.2961%" y="917" width="0.0843%" height="15" fill="rgb(216,191,38)" fg:x="70506" fg:w="123"/><text x="48.5461%" y="927.50"></text></g><g><title>[libc-2.31.so] (23 samples, 0.02%)</title><rect x="48.3892%" y="853" width="0.0158%" height="15" fill="rgb(232,140,52)" fg:x="70642" fg:w="23"/><text x="48.6392%" y="863.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="48.3934%" y="837" width="0.0116%" height="15" fill="rgb(223,158,51)" fg:x="70648" fg:w="17"/><text x="48.6434%" y="847.50"></text></g><g><title>exc_page_fault (16 samples, 0.01%)</title><rect x="48.3940%" y="821" width="0.0110%" height="15" fill="rgb(235,29,51)" fg:x="70649" fg:w="16"/><text x="48.6440%" y="831.50"></text></g><g><title>do_user_addr_fault (16 samples, 0.01%)</title><rect x="48.3940%" y="805" width="0.0110%" height="15" fill="rgb(215,181,18)" fg:x="70649" fg:w="16"/><text x="48.6440%" y="815.50"></text></g><g><title>llvm::opt::OptTable::OptTable (41 samples, 0.03%)</title><rect x="48.3879%" y="869" width="0.0281%" height="15" fill="rgb(227,125,34)" fg:x="70640" fg:w="41"/><text x="48.6379%" y="879.50"></text></g><g><title>[libc-2.31.so] (28 samples, 0.02%)</title><rect x="48.4194%" y="837" width="0.0192%" height="15" fill="rgb(230,197,49)" fg:x="70686" fg:w="28"/><text x="48.6694%" y="847.50"></text></g><g><title>clang::driver::getDriverOptTable (77 samples, 0.05%)</title><rect x="48.3872%" y="901" width="0.0527%" height="15" fill="rgb(239,141,16)" fg:x="70639" fg:w="77"/><text x="48.6372%" y="911.50"></text></g><g><title>clang::driver::getDriverOptTable (76 samples, 0.05%)</title><rect x="48.3879%" y="885" width="0.0521%" height="15" fill="rgb(225,105,43)" fg:x="70640" fg:w="76"/><text x="48.6379%" y="895.50"></text></g><g><title>llvm::opt::OptTable::addValues (35 samples, 0.02%)</title><rect x="48.4160%" y="869" width="0.0240%" height="15" fill="rgb(214,131,14)" fg:x="70681" fg:w="35"/><text x="48.6660%" y="879.50"></text></g><g><title>optionMatches (32 samples, 0.02%)</title><rect x="48.4180%" y="853" width="0.0219%" height="15" fill="rgb(229,177,11)" fg:x="70684" fg:w="32"/><text x="48.6680%" y="863.50"></text></g><g><title>clang::driver::getDriverMode (85 samples, 0.06%)</title><rect x="48.3824%" y="917" width="0.0582%" height="15" fill="rgb(231,180,14)" fg:x="70632" fg:w="85"/><text x="48.6324%" y="927.50"></text></g><g><title>llvm::InitLLVM::~InitLLVM (46 samples, 0.03%)</title><rect x="48.4440%" y="917" width="0.0315%" height="15" fill="rgb(232,88,2)" fg:x="70722" fg:w="46"/><text x="48.6940%" y="927.50"></text></g><g><title>llvm::llvm_shutdown (46 samples, 0.03%)</title><rect x="48.4440%" y="901" width="0.0315%" height="15" fill="rgb(205,220,8)" fg:x="70722" fg:w="46"/><text x="48.6940%" y="911.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (31 samples, 0.02%)</title><rect x="48.4543%" y="885" width="0.0212%" height="15" fill="rgb(225,23,53)" fg:x="70737" fg:w="31"/><text x="48.7043%" y="895.50"></text></g><g><title>LLVMInitializeAArch64Target (15 samples, 0.01%)</title><rect x="48.4755%" y="901" width="0.0103%" height="15" fill="rgb(213,62,29)" fg:x="70768" fg:w="15"/><text x="48.7255%" y="911.50"></text></g><g><title>LLVMInitializeAMDGPUTarget (39 samples, 0.03%)</title><rect x="48.4858%" y="901" width="0.0267%" height="15" fill="rgb(227,75,7)" fg:x="70783" fg:w="39"/><text x="48.7358%" y="911.50"></text></g><g><title>llvm::InitializeAllTargets (114 samples, 0.08%)</title><rect x="48.4755%" y="917" width="0.0781%" height="15" fill="rgb(207,105,14)" fg:x="70768" fg:w="114"/><text x="48.7255%" y="927.50"></text></g><g><title>__libc_start_main (1,208 samples, 0.83%)</title><rect x="47.7399%" y="949" width="0.8275%" height="15" fill="rgb(245,62,29)" fg:x="69694" fg:w="1208"/><text x="47.9899%" y="959.50"></text></g><g><title>main (470 samples, 0.32%)</title><rect x="48.2454%" y="933" width="0.3219%" height="15" fill="rgb(236,202,4)" fg:x="70432" fg:w="470"/><text x="48.4954%" y="943.50"></text></g><g><title>__split_vma (15 samples, 0.01%)</title><rect x="48.5804%" y="645" width="0.0103%" height="15" fill="rgb(250,67,1)" fg:x="70921" fg:w="15"/><text x="48.8304%" y="655.50"></text></g><g><title>__do_munmap (21 samples, 0.01%)</title><rect x="48.5804%" y="661" width="0.0144%" height="15" fill="rgb(253,115,44)" fg:x="70921" fg:w="21"/><text x="48.8304%" y="671.50"></text></g><g><title>do_mmap (34 samples, 0.02%)</title><rect x="48.5790%" y="693" width="0.0233%" height="15" fill="rgb(251,139,18)" fg:x="70919" fg:w="34"/><text x="48.8290%" y="703.50"></text></g><g><title>mmap_region (34 samples, 0.02%)</title><rect x="48.5790%" y="677" width="0.0233%" height="15" fill="rgb(218,22,32)" fg:x="70919" fg:w="34"/><text x="48.8290%" y="687.50"></text></g><g><title>_dl_map_segments (43 samples, 0.03%)</title><rect x="48.5735%" y="805" width="0.0295%" height="15" fill="rgb(243,53,5)" fg:x="70911" fg:w="43"/><text x="48.8235%" y="815.50"></text></g><g><title>__mmap64 (37 samples, 0.03%)</title><rect x="48.5776%" y="789" width="0.0253%" height="15" fill="rgb(227,56,16)" fg:x="70917" fg:w="37"/><text x="48.8276%" y="799.50"></text></g><g><title>__mmap64 (37 samples, 0.03%)</title><rect x="48.5776%" y="773" width="0.0253%" height="15" fill="rgb(245,53,0)" fg:x="70917" fg:w="37"/><text x="48.8276%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.03%)</title><rect x="48.5776%" y="757" width="0.0253%" height="15" fill="rgb(216,170,35)" fg:x="70917" fg:w="37"/><text x="48.8276%" y="767.50"></text></g><g><title>do_syscall_64 (37 samples, 0.03%)</title><rect x="48.5776%" y="741" width="0.0253%" height="15" fill="rgb(211,200,8)" fg:x="70917" fg:w="37"/><text x="48.8276%" y="751.50"></text></g><g><title>ksys_mmap_pgoff (37 samples, 0.03%)</title><rect x="48.5776%" y="725" width="0.0253%" height="15" fill="rgb(228,204,44)" fg:x="70917" fg:w="37"/><text x="48.8276%" y="735.50"></text></g><g><title>vm_mmap_pgoff (36 samples, 0.02%)</title><rect x="48.5783%" y="709" width="0.0247%" height="15" fill="rgb(214,121,17)" fg:x="70918" fg:w="36"/><text x="48.8283%" y="719.50"></text></g><g><title>_dl_map_object_from_fd (57 samples, 0.04%)</title><rect x="48.5735%" y="821" width="0.0390%" height="15" fill="rgb(233,64,38)" fg:x="70911" fg:w="57"/><text x="48.8235%" y="831.50"></text></g><g><title>_dl_catch_exception (85 samples, 0.06%)</title><rect x="48.5680%" y="869" width="0.0582%" height="15" fill="rgb(253,54,19)" fg:x="70903" fg:w="85"/><text x="48.8180%" y="879.50"></text></g><g><title>openaux (84 samples, 0.06%)</title><rect x="48.5687%" y="853" width="0.0575%" height="15" fill="rgb(253,94,18)" fg:x="70904" fg:w="84"/><text x="48.8187%" y="863.50"></text></g><g><title>_dl_map_object (84 samples, 0.06%)</title><rect x="48.5687%" y="837" width="0.0575%" height="15" fill="rgb(227,57,52)" fg:x="70904" fg:w="84"/><text x="48.8187%" y="847.50"></text></g><g><title>_dl_map_object_deps (89 samples, 0.06%)</title><rect x="48.5673%" y="885" width="0.0610%" height="15" fill="rgb(230,228,50)" fg:x="70902" fg:w="89"/><text x="48.8173%" y="895.50"></text></g><g><title>dl_new_hash (48 samples, 0.03%)</title><rect x="48.6838%" y="821" width="0.0329%" height="15" fill="rgb(217,205,27)" fg:x="71072" fg:w="48"/><text x="48.9338%" y="831.50"></text></g><g><title>_dl_lookup_symbol_x (173 samples, 0.12%)</title><rect x="48.6810%" y="837" width="0.1185%" height="15" fill="rgb(252,71,50)" fg:x="71068" fg:w="173"/><text x="48.9310%" y="847.50"></text></g><g><title>do_lookup_x (121 samples, 0.08%)</title><rect x="48.7167%" y="821" width="0.0829%" height="15" fill="rgb(209,86,4)" fg:x="71120" fg:w="121"/><text x="48.9667%" y="831.50"></text></g><g><title>__alloc_pages_nodemask (32 samples, 0.02%)</title><rect x="48.8160%" y="757" width="0.0219%" height="15" fill="rgb(229,94,0)" fg:x="71265" fg:w="32"/><text x="49.0660%" y="767.50"></text></g><g><title>get_page_from_freelist (28 samples, 0.02%)</title><rect x="48.8187%" y="741" width="0.0192%" height="15" fill="rgb(252,223,21)" fg:x="71269" fg:w="28"/><text x="49.0687%" y="751.50"></text></g><g><title>prep_new_page (16 samples, 0.01%)</title><rect x="48.8270%" y="725" width="0.0110%" height="15" fill="rgb(230,210,4)" fg:x="71281" fg:w="16"/><text x="49.0770%" y="735.50"></text></g><g><title>kernel_init_free_pages (16 samples, 0.01%)</title><rect x="48.8270%" y="709" width="0.0110%" height="15" fill="rgb(240,149,38)" fg:x="71281" fg:w="16"/><text x="49.0770%" y="719.50"></text></g><g><title>clear_page_erms (16 samples, 0.01%)</title><rect x="48.8270%" y="693" width="0.0110%" height="15" fill="rgb(254,105,20)" fg:x="71281" fg:w="16"/><text x="49.0770%" y="703.50"></text></g><g><title>alloc_pages_vma (34 samples, 0.02%)</title><rect x="48.8153%" y="773" width="0.0233%" height="15" fill="rgb(253,87,46)" fg:x="71264" fg:w="34"/><text x="49.0653%" y="783.50"></text></g><g><title>copy_page (36 samples, 0.02%)</title><rect x="48.8393%" y="773" width="0.0247%" height="15" fill="rgb(253,116,33)" fg:x="71299" fg:w="36"/><text x="49.0893%" y="783.50"></text></g><g><title>handle_mm_fault (129 samples, 0.09%)</title><rect x="48.8023%" y="789" width="0.0884%" height="15" fill="rgb(229,198,5)" fg:x="71245" fg:w="129"/><text x="49.0523%" y="799.50"></text></g><g><title>do_user_addr_fault (137 samples, 0.09%)</title><rect x="48.7996%" y="805" width="0.0938%" height="15" fill="rgb(242,38,37)" fg:x="71241" fg:w="137"/><text x="49.0496%" y="815.50"></text></g><g><title>exc_page_fault (138 samples, 0.09%)</title><rect x="48.7996%" y="821" width="0.0945%" height="15" fill="rgb(242,69,53)" fg:x="71241" fg:w="138"/><text x="49.0496%" y="831.50"></text></g><g><title>asm_exc_page_fault (139 samples, 0.10%)</title><rect x="48.7996%" y="837" width="0.0952%" height="15" fill="rgb(249,80,16)" fg:x="71241" fg:w="139"/><text x="49.0496%" y="847.50"></text></g><g><title>elf_machine_rela (375 samples, 0.26%)</title><rect x="48.6454%" y="853" width="0.2569%" height="15" fill="rgb(206,128,11)" fg:x="71016" fg:w="375"/><text x="48.8954%" y="863.50"></text></g><g><title>elf_dynamic_do_Rela (392 samples, 0.27%)</title><rect x="48.6393%" y="869" width="0.2685%" height="15" fill="rgb(212,35,20)" fg:x="71007" fg:w="392"/><text x="48.8893%" y="879.50"></text></g><g><title>_dl_relocate_object (405 samples, 0.28%)</title><rect x="48.6310%" y="885" width="0.2774%" height="15" fill="rgb(236,79,13)" fg:x="70995" fg:w="405"/><text x="48.8810%" y="895.50"></text></g><g><title>[ld-2.31.so] (508 samples, 0.35%)</title><rect x="48.5673%" y="901" width="0.3480%" height="15" fill="rgb(233,123,3)" fg:x="70902" fg:w="508"/><text x="48.8173%" y="911.50"></text></g><g><title>_dl_start (511 samples, 0.35%)</title><rect x="48.5673%" y="949" width="0.3500%" height="15" fill="rgb(214,93,52)" fg:x="70902" fg:w="511"/><text x="48.8173%" y="959.50"></text></g><g><title>_dl_start_final (511 samples, 0.35%)</title><rect x="48.5673%" y="933" width="0.3500%" height="15" fill="rgb(251,37,40)" fg:x="70902" fg:w="511"/><text x="48.8173%" y="943.50"></text></g><g><title>_dl_sysdep_start (511 samples, 0.35%)</title><rect x="48.5673%" y="917" width="0.3500%" height="15" fill="rgb(227,80,54)" fg:x="70902" fg:w="511"/><text x="48.8173%" y="927.50"></text></g><g><title>_start (1,721 samples, 1.18%)</title><rect x="47.7399%" y="965" width="1.1789%" height="15" fill="rgb(254,48,11)" fg:x="69694" fg:w="1721"/><text x="47.9899%" y="975.50"></text></g><g><title>asm_exc_page_fault (204 samples, 0.14%)</title><rect x="48.9187%" y="965" width="0.1397%" height="15" fill="rgb(235,193,26)" fg:x="71415" fg:w="204"/><text x="49.1687%" y="975.50"></text></g><g><title>free_unref_page_list (18 samples, 0.01%)</title><rect x="49.0968%" y="821" width="0.0123%" height="15" fill="rgb(229,99,21)" fg:x="71675" fg:w="18"/><text x="49.3468%" y="831.50"></text></g><g><title>tlb_finish_mmu (40 samples, 0.03%)</title><rect x="49.0838%" y="853" width="0.0274%" height="15" fill="rgb(211,140,41)" fg:x="71656" fg:w="40"/><text x="49.3338%" y="863.50"></text></g><g><title>release_pages (34 samples, 0.02%)</title><rect x="49.0879%" y="837" width="0.0233%" height="15" fill="rgb(240,227,30)" fg:x="71662" fg:w="34"/><text x="49.3379%" y="847.50"></text></g><g><title>__tlb_remove_page_size (21 samples, 0.01%)</title><rect x="49.1674%" y="821" width="0.0144%" height="15" fill="rgb(215,224,45)" fg:x="71778" fg:w="21"/><text x="49.4174%" y="831.50"></text></g><g><title>mark_page_accessed (17 samples, 0.01%)</title><rect x="49.1831%" y="821" width="0.0116%" height="15" fill="rgb(206,123,31)" fg:x="71801" fg:w="17"/><text x="49.4331%" y="831.50"></text></g><g><title>__mod_lruvec_state (22 samples, 0.02%)</title><rect x="49.2400%" y="805" width="0.0151%" height="15" fill="rgb(210,138,16)" fg:x="71884" fg:w="22"/><text x="49.4900%" y="815.50"></text></g><g><title>__mod_memcg_lruvec_state (26 samples, 0.02%)</title><rect x="49.2551%" y="805" width="0.0178%" height="15" fill="rgb(228,57,28)" fg:x="71906" fg:w="26"/><text x="49.5051%" y="815.50"></text></g><g><title>page_remove_rmap (123 samples, 0.08%)</title><rect x="49.1948%" y="821" width="0.0843%" height="15" fill="rgb(242,170,10)" fg:x="71818" fg:w="123"/><text x="49.4448%" y="831.50"></text></g><g><title>free_pages_and_swap_cache (22 samples, 0.02%)</title><rect x="49.2797%" y="805" width="0.0151%" height="15" fill="rgb(228,214,39)" fg:x="71942" fg:w="22"/><text x="49.5297%" y="815.50"></text></g><g><title>tlb_flush_mmu (66 samples, 0.05%)</title><rect x="49.2797%" y="821" width="0.0452%" height="15" fill="rgb(218,179,33)" fg:x="71942" fg:w="66"/><text x="49.5297%" y="831.50"></text></g><g><title>release_pages (44 samples, 0.03%)</title><rect x="49.2948%" y="805" width="0.0301%" height="15" fill="rgb(235,193,39)" fg:x="71964" fg:w="44"/><text x="49.5448%" y="815.50"></text></g><g><title>mmput (368 samples, 0.25%)</title><rect x="49.0770%" y="885" width="0.2521%" height="15" fill="rgb(219,221,36)" fg:x="71646" fg:w="368"/><text x="49.3270%" y="895.50"></text></g><g><title>exit_mmap (368 samples, 0.25%)</title><rect x="49.0770%" y="869" width="0.2521%" height="15" fill="rgb(248,218,19)" fg:x="71646" fg:w="368"/><text x="49.3270%" y="879.50"></text></g><g><title>unmap_vmas (318 samples, 0.22%)</title><rect x="49.1112%" y="853" width="0.2178%" height="15" fill="rgb(205,50,9)" fg:x="71696" fg:w="318"/><text x="49.3612%" y="863.50"></text></g><g><title>unmap_page_range (317 samples, 0.22%)</title><rect x="49.1119%" y="837" width="0.2171%" height="15" fill="rgb(238,81,28)" fg:x="71697" fg:w="317"/><text x="49.3619%" y="847.50"></text></g><g><title>__x64_sys_exit_group (376 samples, 0.26%)</title><rect x="49.0756%" y="933" width="0.2576%" height="15" fill="rgb(235,110,19)" fg:x="71644" fg:w="376"/><text x="49.3256%" y="943.50"></text></g><g><title>do_group_exit (376 samples, 0.26%)</title><rect x="49.0756%" y="917" width="0.2576%" height="15" fill="rgb(214,7,14)" fg:x="71644" fg:w="376"/><text x="49.3256%" y="927.50"></text></g><g><title>do_exit (376 samples, 0.26%)</title><rect x="49.0756%" y="901" width="0.2576%" height="15" fill="rgb(211,77,3)" fg:x="71644" fg:w="376"/><text x="49.3256%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (390 samples, 0.27%)</title><rect x="49.0674%" y="965" width="0.2671%" height="15" fill="rgb(229,5,9)" fg:x="71632" fg:w="390"/><text x="49.3174%" y="975.50"></text></g><g><title>do_syscall_64 (390 samples, 0.27%)</title><rect x="49.0674%" y="949" width="0.2671%" height="15" fill="rgb(225,90,11)" fg:x="71632" fg:w="390"/><text x="49.3174%" y="959.50"></text></g><g><title>clang (4,840 samples, 3.32%)</title><rect x="46.0246%" y="981" width="3.3154%" height="15" fill="rgb(242,56,8)" fg:x="67190" fg:w="4840"/><text x="46.2746%" y="991.50">cla..</text></g><g><title>[perf-627991.map] (15 samples, 0.01%)</title><rect x="49.3400%" y="965" width="0.0103%" height="15" fill="rgb(249,212,39)" fg:x="72030" fg:w="15"/><text x="49.5900%" y="975.50"></text></g><g><title>cli-update-thre (17 samples, 0.01%)</title><rect x="49.3400%" y="981" width="0.0116%" height="15" fill="rgb(236,90,9)" fg:x="72030" fg:w="17"/><text x="49.5900%" y="991.50"></text></g><g><title>[perf-627991.map] (108 samples, 0.07%)</title><rect x="49.3523%" y="965" width="0.0740%" height="15" fill="rgb(206,88,35)" fg:x="72048" fg:w="108"/><text x="49.6023%" y="975.50"></text></g><g><title>find-action-loo (132 samples, 0.09%)</title><rect x="49.3517%" y="981" width="0.0904%" height="15" fill="rgb(205,126,30)" fg:x="72047" fg:w="132"/><text x="49.6017%" y="991.50"></text></g><g><title>JVM_StartThread (20 samples, 0.01%)</title><rect x="49.4537%" y="949" width="0.0137%" height="15" fill="rgb(230,176,12)" fg:x="72196" fg:w="20"/><text x="49.7037%" y="959.50"></text></g><g><title>__pthread_cond_wait (16 samples, 0.01%)</title><rect x="49.4674%" y="917" width="0.0110%" height="15" fill="rgb(243,19,9)" fg:x="72216" fg:w="16"/><text x="49.7174%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="49.4674%" y="901" width="0.0110%" height="15" fill="rgb(245,171,17)" fg:x="72216" fg:w="16"/><text x="49.7174%" y="911.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="49.4674%" y="885" width="0.0110%" height="15" fill="rgb(227,52,21)" fg:x="72216" fg:w="16"/><text x="49.7174%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="49.4681%" y="869" width="0.0103%" height="15" fill="rgb(238,69,14)" fg:x="72217" fg:w="15"/><text x="49.7181%" y="879.50"></text></g><g><title>[perf-627991.map] (49 samples, 0.03%)</title><rect x="49.4455%" y="965" width="0.0336%" height="15" fill="rgb(241,156,39)" fg:x="72184" fg:w="49"/><text x="49.6955%" y="975.50"></text></g><g><title>Unsafe_Park (17 samples, 0.01%)</title><rect x="49.4674%" y="949" width="0.0116%" height="15" fill="rgb(212,227,28)" fg:x="72216" fg:w="17"/><text x="49.7174%" y="959.50"></text></g><g><title>Parker::park (17 samples, 0.01%)</title><rect x="49.4674%" y="933" width="0.0116%" height="15" fill="rgb(209,118,27)" fg:x="72216" fg:w="17"/><text x="49.7174%" y="943.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (15 samples, 0.01%)</title><rect x="49.4791%" y="949" width="0.0103%" height="15" fill="rgb(226,102,5)" fg:x="72233" fg:w="15"/><text x="49.7291%" y="959.50"></text></g><g><title>SafepointSynchronize::block (15 samples, 0.01%)</title><rect x="49.4791%" y="933" width="0.0103%" height="15" fill="rgb(223,34,3)" fg:x="72233" fg:w="15"/><text x="49.7291%" y="943.50"></text></g><g><title>Monitor::lock_without_safepoint_check (15 samples, 0.01%)</title><rect x="49.4791%" y="917" width="0.0103%" height="15" fill="rgb(221,81,38)" fg:x="72233" fg:w="15"/><text x="49.7291%" y="927.50"></text></g><g><title>Monitor::ILock (15 samples, 0.01%)</title><rect x="49.4791%" y="901" width="0.0103%" height="15" fill="rgb(236,219,28)" fg:x="72233" fg:w="15"/><text x="49.7291%" y="911.50"></text></g><g><title>os::PlatformEvent::park (15 samples, 0.01%)</title><rect x="49.4791%" y="885" width="0.0103%" height="15" fill="rgb(213,200,14)" fg:x="72233" fg:w="15"/><text x="49.7291%" y="895.50"></text></g><g><title>__pthread_cond_wait (15 samples, 0.01%)</title><rect x="49.4791%" y="869" width="0.0103%" height="15" fill="rgb(240,33,19)" fg:x="72233" fg:w="15"/><text x="49.7291%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (15 samples, 0.01%)</title><rect x="49.4791%" y="853" width="0.0103%" height="15" fill="rgb(233,113,27)" fg:x="72233" fg:w="15"/><text x="49.7291%" y="863.50"></text></g><g><title>futex_wait_cancelable (15 samples, 0.01%)</title><rect x="49.4791%" y="837" width="0.0103%" height="15" fill="rgb(220,221,18)" fg:x="72233" fg:w="15"/><text x="49.7291%" y="847.50"></text></g><g><title>[unknown] (16 samples, 0.01%)</title><rect x="49.4791%" y="965" width="0.0110%" height="15" fill="rgb(238,92,8)" fg:x="72233" fg:w="16"/><text x="49.7291%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (23 samples, 0.02%)</title><rect x="49.4914%" y="901" width="0.0158%" height="15" fill="rgb(222,164,16)" fg:x="72251" fg:w="23"/><text x="49.7414%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (23 samples, 0.02%)</title><rect x="49.4914%" y="885" width="0.0158%" height="15" fill="rgb(241,119,3)" fg:x="72251" fg:w="23"/><text x="49.7414%" y="895.50"></text></g><g><title>native_write_msr (23 samples, 0.02%)</title><rect x="49.4914%" y="869" width="0.0158%" height="15" fill="rgb(241,44,8)" fg:x="72251" fg:w="23"/><text x="49.7414%" y="879.50"></text></g><g><title>schedule_tail (26 samples, 0.02%)</title><rect x="49.4900%" y="933" width="0.0178%" height="15" fill="rgb(230,36,40)" fg:x="72249" fg:w="26"/><text x="49.7400%" y="943.50"></text></g><g><title>finish_task_switch (25 samples, 0.02%)</title><rect x="49.4907%" y="917" width="0.0171%" height="15" fill="rgb(243,16,36)" fg:x="72250" fg:w="25"/><text x="49.7407%" y="927.50"></text></g><g><title>ret_from_fork (27 samples, 0.02%)</title><rect x="49.4900%" y="949" width="0.0185%" height="15" fill="rgb(231,4,26)" fg:x="72249" fg:w="27"/><text x="49.7400%" y="959.50"></text></g><g><title>globbing_pool-0 (110 samples, 0.08%)</title><rect x="49.4421%" y="981" width="0.0753%" height="15" fill="rgb(240,9,31)" fg:x="72179" fg:w="110"/><text x="49.6921%" y="991.50"></text></g><g><title>__GI___clone (40 samples, 0.03%)</title><rect x="49.4900%" y="965" width="0.0274%" height="15" fill="rgb(207,173,15)" fg:x="72249" fg:w="40"/><text x="49.7400%" y="975.50"></text></g><g><title>[libunix_jni.so] (37 samples, 0.03%)</title><rect x="49.5215%" y="965" width="0.0253%" height="15" fill="rgb(224,192,53)" fg:x="72295" fg:w="37"/><text x="49.7715%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (82 samples, 0.06%)</title><rect x="49.6394%" y="693" width="0.0562%" height="15" fill="rgb(223,67,28)" fg:x="72467" fg:w="82"/><text x="49.8894%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (80 samples, 0.05%)</title><rect x="49.6407%" y="677" width="0.0548%" height="15" fill="rgb(211,20,47)" fg:x="72469" fg:w="80"/><text x="49.8907%" y="687.50"></text></g><g><title>native_write_msr (80 samples, 0.05%)</title><rect x="49.6407%" y="661" width="0.0548%" height="15" fill="rgb(240,228,2)" fg:x="72469" fg:w="80"/><text x="49.8907%" y="671.50"></text></g><g><title>finish_task_switch (84 samples, 0.06%)</title><rect x="49.6394%" y="709" width="0.0575%" height="15" fill="rgb(248,151,12)" fg:x="72467" fg:w="84"/><text x="49.8894%" y="719.50"></text></g><g><title>do_syscall_64 (88 samples, 0.06%)</title><rect x="49.6373%" y="821" width="0.0603%" height="15" fill="rgb(244,8,39)" fg:x="72464" fg:w="88"/><text x="49.8873%" y="831.50"></text></g><g><title>__x64_sys_futex (88 samples, 0.06%)</title><rect x="49.6373%" y="805" width="0.0603%" height="15" fill="rgb(222,26,8)" fg:x="72464" fg:w="88"/><text x="49.8873%" y="815.50"></text></g><g><title>do_futex (88 samples, 0.06%)</title><rect x="49.6373%" y="789" width="0.0603%" height="15" fill="rgb(213,106,44)" fg:x="72464" fg:w="88"/><text x="49.8873%" y="799.50"></text></g><g><title>futex_wait (88 samples, 0.06%)</title><rect x="49.6373%" y="773" width="0.0603%" height="15" fill="rgb(214,129,20)" fg:x="72464" fg:w="88"/><text x="49.8873%" y="783.50"></text></g><g><title>futex_wait_queue_me (87 samples, 0.06%)</title><rect x="49.6380%" y="757" width="0.0596%" height="15" fill="rgb(212,32,13)" fg:x="72465" fg:w="87"/><text x="49.8880%" y="767.50"></text></g><g><title>schedule (85 samples, 0.06%)</title><rect x="49.6394%" y="741" width="0.0582%" height="15" fill="rgb(208,168,33)" fg:x="72467" fg:w="85"/><text x="49.8894%" y="751.50"></text></g><g><title>__schedule (85 samples, 0.06%)</title><rect x="49.6394%" y="725" width="0.0582%" height="15" fill="rgb(231,207,8)" fg:x="72467" fg:w="85"/><text x="49.8894%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.06%)</title><rect x="49.6373%" y="837" width="0.0610%" height="15" fill="rgb(235,219,23)" fg:x="72464" fg:w="89"/><text x="49.8873%" y="847.50"></text></g><g><title>__pthread_cond_wait (91 samples, 0.06%)</title><rect x="49.6366%" y="885" width="0.0623%" height="15" fill="rgb(226,216,26)" fg:x="72463" fg:w="91"/><text x="49.8866%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (91 samples, 0.06%)</title><rect x="49.6366%" y="869" width="0.0623%" height="15" fill="rgb(239,137,16)" fg:x="72463" fg:w="91"/><text x="49.8866%" y="879.50"></text></g><g><title>futex_wait_cancelable (90 samples, 0.06%)</title><rect x="49.6373%" y="853" width="0.0616%" height="15" fill="rgb(207,12,36)" fg:x="72464" fg:w="90"/><text x="49.8873%" y="863.50"></text></g><g><title>Monitor::lock (95 samples, 0.07%)</title><rect x="49.6359%" y="933" width="0.0651%" height="15" fill="rgb(210,214,24)" fg:x="72462" fg:w="95"/><text x="49.8859%" y="943.50"></text></g><g><title>Monitor::ILock (95 samples, 0.07%)</title><rect x="49.6359%" y="917" width="0.0651%" height="15" fill="rgb(206,56,30)" fg:x="72462" fg:w="95"/><text x="49.8859%" y="927.50"></text></g><g><title>os::PlatformEvent::park (94 samples, 0.06%)</title><rect x="49.6366%" y="901" width="0.0644%" height="15" fill="rgb(228,143,26)" fg:x="72463" fg:w="94"/><text x="49.8866%" y="911.50"></text></g><g><title>JVM_StartThread (118 samples, 0.08%)</title><rect x="49.6298%" y="949" width="0.0808%" height="15" fill="rgb(216,218,46)" fg:x="72453" fg:w="118"/><text x="49.8798%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.02%)</title><rect x="49.7277%" y="725" width="0.0185%" height="15" fill="rgb(206,6,19)" fg:x="72596" fg:w="27"/><text x="49.9777%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.02%)</title><rect x="49.7277%" y="709" width="0.0185%" height="15" fill="rgb(239,177,51)" fg:x="72596" fg:w="27"/><text x="49.9777%" y="719.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="49.7284%" y="693" width="0.0178%" height="15" fill="rgb(216,55,25)" fg:x="72597" fg:w="26"/><text x="49.9784%" y="703.50"></text></g><g><title>futex_wait_queue_me (29 samples, 0.02%)</title><rect x="49.7277%" y="789" width="0.0199%" height="15" fill="rgb(231,163,29)" fg:x="72596" fg:w="29"/><text x="49.9777%" y="799.50"></text></g><g><title>schedule (29 samples, 0.02%)</title><rect x="49.7277%" y="773" width="0.0199%" height="15" fill="rgb(232,149,50)" fg:x="72596" fg:w="29"/><text x="49.9777%" y="783.50"></text></g><g><title>__schedule (29 samples, 0.02%)</title><rect x="49.7277%" y="757" width="0.0199%" height="15" fill="rgb(223,142,48)" fg:x="72596" fg:w="29"/><text x="49.9777%" y="767.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="49.7277%" y="741" width="0.0199%" height="15" fill="rgb(245,83,23)" fg:x="72596" fg:w="29"/><text x="49.9777%" y="751.50"></text></g><g><title>do_syscall_64 (30 samples, 0.02%)</title><rect x="49.7277%" y="853" width="0.0205%" height="15" fill="rgb(224,63,2)" fg:x="72596" fg:w="30"/><text x="49.9777%" y="863.50"></text></g><g><title>__x64_sys_futex (30 samples, 0.02%)</title><rect x="49.7277%" y="837" width="0.0205%" height="15" fill="rgb(218,65,53)" fg:x="72596" fg:w="30"/><text x="49.9777%" y="847.50"></text></g><g><title>do_futex (30 samples, 0.02%)</title><rect x="49.7277%" y="821" width="0.0205%" height="15" fill="rgb(221,84,29)" fg:x="72596" fg:w="30"/><text x="49.9777%" y="831.50"></text></g><g><title>futex_wait (30 samples, 0.02%)</title><rect x="49.7277%" y="805" width="0.0205%" height="15" fill="rgb(234,0,32)" fg:x="72596" fg:w="30"/><text x="49.9777%" y="815.50"></text></g><g><title>Unsafe_Park (39 samples, 0.03%)</title><rect x="49.7222%" y="949" width="0.0267%" height="15" fill="rgb(206,20,16)" fg:x="72588" fg:w="39"/><text x="49.9722%" y="959.50"></text></g><g><title>Parker::park (39 samples, 0.03%)</title><rect x="49.7222%" y="933" width="0.0267%" height="15" fill="rgb(244,172,18)" fg:x="72588" fg:w="39"/><text x="49.9722%" y="943.50"></text></g><g><title>__pthread_cond_wait (31 samples, 0.02%)</title><rect x="49.7277%" y="917" width="0.0212%" height="15" fill="rgb(254,133,1)" fg:x="72596" fg:w="31"/><text x="49.9777%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (31 samples, 0.02%)</title><rect x="49.7277%" y="901" width="0.0212%" height="15" fill="rgb(222,206,41)" fg:x="72596" fg:w="31"/><text x="49.9777%" y="911.50"></text></g><g><title>futex_wait_cancelable (31 samples, 0.02%)</title><rect x="49.7277%" y="885" width="0.0212%" height="15" fill="rgb(212,3,42)" fg:x="72596" fg:w="31"/><text x="49.9777%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="49.7277%" y="869" width="0.0212%" height="15" fill="rgb(241,11,4)" fg:x="72596" fg:w="31"/><text x="49.9777%" y="879.50"></text></g><g><title>[perf-627991.map] (302 samples, 0.21%)</title><rect x="49.5469%" y="965" width="0.2069%" height="15" fill="rgb(205,19,26)" fg:x="72332" fg:w="302"/><text x="49.7969%" y="975.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="49.7565%" y="693" width="0.0164%" height="15" fill="rgb(210,179,32)" fg:x="72638" fg:w="24"/><text x="50.0065%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.02%)</title><rect x="49.7565%" y="677" width="0.0164%" height="15" fill="rgb(227,116,49)" fg:x="72638" fg:w="24"/><text x="50.0065%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (23 samples, 0.02%)</title><rect x="49.7572%" y="661" width="0.0158%" height="15" fill="rgb(211,146,6)" fg:x="72639" fg:w="23"/><text x="50.0072%" y="671.50"></text></g><g><title>native_write_msr (23 samples, 0.02%)</title><rect x="49.7572%" y="645" width="0.0158%" height="15" fill="rgb(219,44,39)" fg:x="72639" fg:w="23"/><text x="50.0072%" y="655.50"></text></g><g><title>Monitor::lock_without_safepoint_check (27 samples, 0.02%)</title><rect x="49.7551%" y="917" width="0.0185%" height="15" fill="rgb(234,128,11)" fg:x="72636" fg:w="27"/><text x="50.0051%" y="927.50"></text></g><g><title>Monitor::ILock (27 samples, 0.02%)</title><rect x="49.7551%" y="901" width="0.0185%" height="15" fill="rgb(220,183,53)" fg:x="72636" fg:w="27"/><text x="50.0051%" y="911.50"></text></g><g><title>os::PlatformEvent::park (27 samples, 0.02%)</title><rect x="49.7551%" y="885" width="0.0185%" height="15" fill="rgb(213,219,32)" fg:x="72636" fg:w="27"/><text x="50.0051%" y="895.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.02%)</title><rect x="49.7551%" y="869" width="0.0185%" height="15" fill="rgb(232,156,16)" fg:x="72636" fg:w="27"/><text x="50.0051%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.02%)</title><rect x="49.7551%" y="853" width="0.0185%" height="15" fill="rgb(246,135,34)" fg:x="72636" fg:w="27"/><text x="50.0051%" y="863.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.02%)</title><rect x="49.7551%" y="837" width="0.0185%" height="15" fill="rgb(241,99,0)" fg:x="72636" fg:w="27"/><text x="50.0051%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="49.7558%" y="821" width="0.0178%" height="15" fill="rgb(222,103,45)" fg:x="72637" fg:w="26"/><text x="50.0058%" y="831.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="49.7558%" y="805" width="0.0178%" height="15" fill="rgb(212,57,4)" fg:x="72637" fg:w="26"/><text x="50.0058%" y="815.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.02%)</title><rect x="49.7558%" y="789" width="0.0178%" height="15" fill="rgb(215,68,47)" fg:x="72637" fg:w="26"/><text x="50.0058%" y="799.50"></text></g><g><title>do_futex (26 samples, 0.02%)</title><rect x="49.7558%" y="773" width="0.0178%" height="15" fill="rgb(230,84,2)" fg:x="72637" fg:w="26"/><text x="50.0058%" y="783.50"></text></g><g><title>futex_wait (25 samples, 0.02%)</title><rect x="49.7565%" y="757" width="0.0171%" height="15" fill="rgb(220,102,14)" fg:x="72638" fg:w="25"/><text x="50.0065%" y="767.50"></text></g><g><title>futex_wait_queue_me (25 samples, 0.02%)</title><rect x="49.7565%" y="741" width="0.0171%" height="15" fill="rgb(240,10,32)" fg:x="72638" fg:w="25"/><text x="50.0065%" y="751.50"></text></g><g><title>schedule (25 samples, 0.02%)</title><rect x="49.7565%" y="725" width="0.0171%" height="15" fill="rgb(215,47,27)" fg:x="72638" fg:w="25"/><text x="50.0065%" y="735.50"></text></g><g><title>__schedule (25 samples, 0.02%)</title><rect x="49.7565%" y="709" width="0.0171%" height="15" fill="rgb(233,188,43)" fg:x="72638" fg:w="25"/><text x="50.0065%" y="719.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (29 samples, 0.02%)</title><rect x="49.7551%" y="949" width="0.0199%" height="15" fill="rgb(253,190,1)" fg:x="72636" fg:w="29"/><text x="50.0051%" y="959.50"></text></g><g><title>SafepointSynchronize::block (29 samples, 0.02%)</title><rect x="49.7551%" y="933" width="0.0199%" height="15" fill="rgb(206,114,52)" fg:x="72636" fg:w="29"/><text x="50.0051%" y="943.50"></text></g><g><title>[unknown] (32 samples, 0.02%)</title><rect x="49.7537%" y="965" width="0.0219%" height="15" fill="rgb(233,120,37)" fg:x="72634" fg:w="32"/><text x="50.0037%" y="975.50"></text></g><g><title>schedule_tail (73 samples, 0.05%)</title><rect x="49.7832%" y="933" width="0.0500%" height="15" fill="rgb(214,52,39)" fg:x="72677" fg:w="73"/><text x="50.0332%" y="943.50"></text></g><g><title>finish_task_switch (71 samples, 0.05%)</title><rect x="49.7846%" y="917" width="0.0486%" height="15" fill="rgb(223,80,29)" fg:x="72679" fg:w="71"/><text x="50.0346%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.05%)</title><rect x="49.7866%" y="901" width="0.0466%" height="15" fill="rgb(230,101,40)" fg:x="72682" fg:w="68"/><text x="50.0366%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.05%)</title><rect x="49.7873%" y="885" width="0.0459%" height="15" fill="rgb(219,211,8)" fg:x="72683" fg:w="67"/><text x="50.0373%" y="895.50"></text></g><g><title>native_write_msr (67 samples, 0.05%)</title><rect x="49.7873%" y="869" width="0.0459%" height="15" fill="rgb(252,126,28)" fg:x="72683" fg:w="67"/><text x="50.0373%" y="879.50"></text></g><g><title>ret_from_fork (76 samples, 0.05%)</title><rect x="49.7818%" y="949" width="0.0521%" height="15" fill="rgb(215,56,38)" fg:x="72675" fg:w="76"/><text x="50.0318%" y="959.50"></text></g><g><title>finish_task_switch (34 samples, 0.02%)</title><rect x="49.8373%" y="693" width="0.0233%" height="15" fill="rgb(249,55,44)" fg:x="72756" fg:w="34"/><text x="50.0873%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="49.8373%" y="677" width="0.0233%" height="15" fill="rgb(220,221,32)" fg:x="72756" fg:w="34"/><text x="50.0873%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="49.8401%" y="661" width="0.0205%" height="15" fill="rgb(212,216,41)" fg:x="72760" fg:w="30"/><text x="50.0901%" y="671.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="49.8401%" y="645" width="0.0205%" height="15" fill="rgb(228,213,43)" fg:x="72760" fg:w="30"/><text x="50.0901%" y="655.50"></text></g><g><title>Monitor::wait (40 samples, 0.03%)</title><rect x="49.8346%" y="917" width="0.0274%" height="15" fill="rgb(211,31,26)" fg:x="72752" fg:w="40"/><text x="50.0846%" y="927.50"></text></g><g><title>Monitor::IWait (39 samples, 0.03%)</title><rect x="49.8353%" y="901" width="0.0267%" height="15" fill="rgb(229,202,19)" fg:x="72753" fg:w="39"/><text x="50.0853%" y="911.50"></text></g><g><title>os::PlatformEvent::park (37 samples, 0.03%)</title><rect x="49.8366%" y="885" width="0.0253%" height="15" fill="rgb(229,105,46)" fg:x="72755" fg:w="37"/><text x="50.0866%" y="895.50"></text></g><g><title>__pthread_cond_wait (37 samples, 0.03%)</title><rect x="49.8366%" y="869" width="0.0253%" height="15" fill="rgb(235,108,1)" fg:x="72755" fg:w="37"/><text x="50.0866%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (37 samples, 0.03%)</title><rect x="49.8366%" y="853" width="0.0253%" height="15" fill="rgb(245,111,35)" fg:x="72755" fg:w="37"/><text x="50.0866%" y="863.50"></text></g><g><title>futex_wait_cancelable (37 samples, 0.03%)</title><rect x="49.8366%" y="837" width="0.0253%" height="15" fill="rgb(219,185,31)" fg:x="72755" fg:w="37"/><text x="50.0866%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.03%)</title><rect x="49.8366%" y="821" width="0.0253%" height="15" fill="rgb(214,4,43)" fg:x="72755" fg:w="37"/><text x="50.0866%" y="831.50"></text></g><g><title>do_syscall_64 (37 samples, 0.03%)</title><rect x="49.8366%" y="805" width="0.0253%" height="15" fill="rgb(235,227,40)" fg:x="72755" fg:w="37"/><text x="50.0866%" y="815.50"></text></g><g><title>__x64_sys_futex (37 samples, 0.03%)</title><rect x="49.8366%" y="789" width="0.0253%" height="15" fill="rgb(230,88,30)" fg:x="72755" fg:w="37"/><text x="50.0866%" y="799.50"></text></g><g><title>do_futex (37 samples, 0.03%)</title><rect x="49.8366%" y="773" width="0.0253%" height="15" fill="rgb(216,217,1)" fg:x="72755" fg:w="37"/><text x="50.0866%" y="783.50"></text></g><g><title>futex_wait (37 samples, 0.03%)</title><rect x="49.8366%" y="757" width="0.0253%" height="15" fill="rgb(248,139,50)" fg:x="72755" fg:w="37"/><text x="50.0866%" y="767.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.03%)</title><rect x="49.8366%" y="741" width="0.0253%" height="15" fill="rgb(233,1,21)" fg:x="72755" fg:w="37"/><text x="50.0866%" y="751.50"></text></g><g><title>schedule (36 samples, 0.02%)</title><rect x="49.8373%" y="725" width="0.0247%" height="15" fill="rgb(215,183,12)" fg:x="72756" fg:w="36"/><text x="50.0873%" y="735.50"></text></g><g><title>__schedule (36 samples, 0.02%)</title><rect x="49.8373%" y="709" width="0.0247%" height="15" fill="rgb(229,104,42)" fg:x="72756" fg:w="36"/><text x="50.0873%" y="719.50"></text></g><g><title>globbing_pool-1 (520 samples, 0.36%)</title><rect x="49.5174%" y="981" width="0.3562%" height="15" fill="rgb(243,34,48)" fg:x="72289" fg:w="520"/><text x="49.7674%" y="991.50"></text></g><g><title>__GI___clone (143 samples, 0.10%)</title><rect x="49.7757%" y="965" width="0.0980%" height="15" fill="rgb(239,11,44)" fg:x="72666" fg:w="143"/><text x="50.0257%" y="975.50"></text></g><g><title>start_thread (58 samples, 0.04%)</title><rect x="49.8339%" y="949" width="0.0397%" height="15" fill="rgb(231,98,35)" fg:x="72751" fg:w="58"/><text x="50.0839%" y="959.50"></text></g><g><title>thread_native_entry (57 samples, 0.04%)</title><rect x="49.8346%" y="933" width="0.0390%" height="15" fill="rgb(233,28,25)" fg:x="72752" fg:w="57"/><text x="50.0846%" y="943.50"></text></g><g><title>[libunix_jni.so] (31 samples, 0.02%)</title><rect x="49.8784%" y="965" width="0.0212%" height="15" fill="rgb(234,123,11)" fg:x="72816" fg:w="31"/><text x="50.1284%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (74 samples, 0.05%)</title><rect x="49.9901%" y="693" width="0.0507%" height="15" fill="rgb(220,69,3)" fg:x="72979" fg:w="74"/><text x="50.2401%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (73 samples, 0.05%)</title><rect x="49.9908%" y="677" width="0.0500%" height="15" fill="rgb(214,64,36)" fg:x="72980" fg:w="73"/><text x="50.2408%" y="687.50"></text></g><g><title>native_write_msr (73 samples, 0.05%)</title><rect x="49.9908%" y="661" width="0.0500%" height="15" fill="rgb(211,138,32)" fg:x="72980" fg:w="73"/><text x="50.2408%" y="671.50"></text></g><g><title>finish_task_switch (79 samples, 0.05%)</title><rect x="49.9894%" y="709" width="0.0541%" height="15" fill="rgb(213,118,47)" fg:x="72978" fg:w="79"/><text x="50.2394%" y="719.50"></text></g><g><title>__pthread_cond_wait (84 samples, 0.06%)</title><rect x="49.9873%" y="885" width="0.0575%" height="15" fill="rgb(243,124,49)" fg:x="72975" fg:w="84"/><text x="50.2373%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (84 samples, 0.06%)</title><rect x="49.9873%" y="869" width="0.0575%" height="15" fill="rgb(221,30,28)" fg:x="72975" fg:w="84"/><text x="50.2373%" y="879.50"></text></g><g><title>futex_wait_cancelable (84 samples, 0.06%)</title><rect x="49.9873%" y="853" width="0.0575%" height="15" fill="rgb(246,37,13)" fg:x="72975" fg:w="84"/><text x="50.2373%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.06%)</title><rect x="49.9880%" y="837" width="0.0569%" height="15" fill="rgb(249,66,14)" fg:x="72976" fg:w="83"/><text x="50.2380%" y="847.50"></text></g><g><title>do_syscall_64 (83 samples, 0.06%)</title><rect x="49.9880%" y="821" width="0.0569%" height="15" fill="rgb(213,166,5)" fg:x="72976" fg:w="83"/><text x="50.2380%" y="831.50"></text></g><g><title>__x64_sys_futex (83 samples, 0.06%)</title><rect x="49.9880%" y="805" width="0.0569%" height="15" fill="rgb(221,66,24)" fg:x="72976" fg:w="83"/><text x="50.2380%" y="815.50"></text></g><g><title>do_futex (83 samples, 0.06%)</title><rect x="49.9880%" y="789" width="0.0569%" height="15" fill="rgb(210,132,17)" fg:x="72976" fg:w="83"/><text x="50.2380%" y="799.50"></text></g><g><title>futex_wait (83 samples, 0.06%)</title><rect x="49.9880%" y="773" width="0.0569%" height="15" fill="rgb(243,202,5)" fg:x="72976" fg:w="83"/><text x="50.2380%" y="783.50"></text></g><g><title>futex_wait_queue_me (83 samples, 0.06%)</title><rect x="49.9880%" y="757" width="0.0569%" height="15" fill="rgb(233,70,48)" fg:x="72976" fg:w="83"/><text x="50.2380%" y="767.50"></text></g><g><title>schedule (82 samples, 0.06%)</title><rect x="49.9887%" y="741" width="0.0562%" height="15" fill="rgb(238,41,26)" fg:x="72977" fg:w="82"/><text x="50.2387%" y="751.50"></text></g><g><title>__schedule (81 samples, 0.06%)</title><rect x="49.9894%" y="725" width="0.0555%" height="15" fill="rgb(241,19,31)" fg:x="72978" fg:w="81"/><text x="50.2394%" y="735.50"></text></g><g><title>Monitor::ILock (86 samples, 0.06%)</title><rect x="49.9873%" y="917" width="0.0589%" height="15" fill="rgb(214,76,10)" fg:x="72975" fg:w="86"/><text x="50.2373%" y="927.50"></text></g><g><title>os::PlatformEvent::park (86 samples, 0.06%)</title><rect x="49.9873%" y="901" width="0.0589%" height="15" fill="rgb(254,202,22)" fg:x="72975" fg:w="86"/><text x="50.2373%" y="911.50"></text></g><g><title>Monitor::lock (88 samples, 0.06%)</title><rect x="49.9866%" y="933" width="0.0603%" height="15" fill="rgb(214,72,24)" fg:x="72974" fg:w="88"/><text x="50.2366%" y="943.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="50.0483%" y="693" width="0.0144%" height="15" fill="rgb(221,92,46)" fg:x="73064" fg:w="21"/><text x="50.2983%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="50.0490%" y="677" width="0.0137%" height="15" fill="rgb(246,13,50)" fg:x="73065" fg:w="20"/><text x="50.2990%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="50.0490%" y="661" width="0.0137%" height="15" fill="rgb(240,165,38)" fg:x="73065" fg:w="20"/><text x="50.2990%" y="671.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="50.0497%" y="645" width="0.0130%" height="15" fill="rgb(241,24,51)" fg:x="73066" fg:w="19"/><text x="50.2997%" y="655.50"></text></g><g><title>Monitor::wait (24 samples, 0.02%)</title><rect x="50.0476%" y="917" width="0.0164%" height="15" fill="rgb(227,51,44)" fg:x="73063" fg:w="24"/><text x="50.2976%" y="927.50"></text></g><g><title>Monitor::IWait (24 samples, 0.02%)</title><rect x="50.0476%" y="901" width="0.0164%" height="15" fill="rgb(231,121,3)" fg:x="73063" fg:w="24"/><text x="50.2976%" y="911.50"></text></g><g><title>os::PlatformEvent::park (24 samples, 0.02%)</title><rect x="50.0476%" y="885" width="0.0164%" height="15" fill="rgb(245,3,41)" fg:x="73063" fg:w="24"/><text x="50.2976%" y="895.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.02%)</title><rect x="50.0476%" y="869" width="0.0164%" height="15" fill="rgb(214,13,26)" fg:x="73063" fg:w="24"/><text x="50.2976%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="50.0476%" y="853" width="0.0164%" height="15" fill="rgb(252,75,11)" fg:x="73063" fg:w="24"/><text x="50.2976%" y="863.50"></text></g><g><title>futex_wait_cancelable (24 samples, 0.02%)</title><rect x="50.0476%" y="837" width="0.0164%" height="15" fill="rgb(218,226,17)" fg:x="73063" fg:w="24"/><text x="50.2976%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.02%)</title><rect x="50.0476%" y="821" width="0.0164%" height="15" fill="rgb(248,89,38)" fg:x="73063" fg:w="24"/><text x="50.2976%" y="831.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="50.0483%" y="805" width="0.0158%" height="15" fill="rgb(237,73,46)" fg:x="73064" fg:w="23"/><text x="50.2983%" y="815.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="50.0483%" y="789" width="0.0158%" height="15" fill="rgb(242,78,33)" fg:x="73064" fg:w="23"/><text x="50.2983%" y="799.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="50.0483%" y="773" width="0.0158%" height="15" fill="rgb(235,60,3)" fg:x="73064" fg:w="23"/><text x="50.2983%" y="783.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="50.0483%" y="757" width="0.0158%" height="15" fill="rgb(216,172,19)" fg:x="73064" fg:w="23"/><text x="50.2983%" y="767.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="50.0483%" y="741" width="0.0158%" height="15" fill="rgb(227,6,42)" fg:x="73064" fg:w="23"/><text x="50.2983%" y="751.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="50.0483%" y="725" width="0.0158%" height="15" fill="rgb(223,207,42)" fg:x="73064" fg:w="23"/><text x="50.2983%" y="735.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="50.0483%" y="709" width="0.0158%" height="15" fill="rgb(246,138,30)" fg:x="73064" fg:w="23"/><text x="50.2983%" y="719.50"></text></g><g><title>JVM_StartThread (126 samples, 0.09%)</title><rect x="49.9805%" y="949" width="0.0863%" height="15" fill="rgb(251,199,47)" fg:x="72965" fg:w="126"/><text x="50.2305%" y="959.50"></text></g><g><title>os::create_thread (29 samples, 0.02%)</title><rect x="50.0469%" y="933" width="0.0199%" height="15" fill="rgb(228,218,44)" fg:x="73062" fg:w="29"/><text x="50.2969%" y="943.50"></text></g><g><title>finish_task_switch (38 samples, 0.03%)</title><rect x="50.0695%" y="741" width="0.0260%" height="15" fill="rgb(220,68,6)" fg:x="73095" fg:w="38"/><text x="50.3195%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (38 samples, 0.03%)</title><rect x="50.0695%" y="725" width="0.0260%" height="15" fill="rgb(240,60,26)" fg:x="73095" fg:w="38"/><text x="50.3195%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.03%)</title><rect x="50.0702%" y="709" width="0.0253%" height="15" fill="rgb(211,200,19)" fg:x="73096" fg:w="37"/><text x="50.3202%" y="719.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="50.0709%" y="693" width="0.0247%" height="15" fill="rgb(242,145,30)" fg:x="73097" fg:w="36"/><text x="50.3209%" y="703.50"></text></g><g><title>futex_wait_queue_me (42 samples, 0.03%)</title><rect x="50.0682%" y="789" width="0.0288%" height="15" fill="rgb(225,64,13)" fg:x="73093" fg:w="42"/><text x="50.3182%" y="799.50"></text></g><g><title>schedule (42 samples, 0.03%)</title><rect x="50.0682%" y="773" width="0.0288%" height="15" fill="rgb(218,103,35)" fg:x="73093" fg:w="42"/><text x="50.3182%" y="783.50"></text></g><g><title>__schedule (41 samples, 0.03%)</title><rect x="50.0688%" y="757" width="0.0281%" height="15" fill="rgb(216,93,46)" fg:x="73094" fg:w="41"/><text x="50.3188%" y="767.50"></text></g><g><title>do_syscall_64 (45 samples, 0.03%)</title><rect x="50.0668%" y="853" width="0.0308%" height="15" fill="rgb(225,159,27)" fg:x="73091" fg:w="45"/><text x="50.3168%" y="863.50"></text></g><g><title>__x64_sys_futex (45 samples, 0.03%)</title><rect x="50.0668%" y="837" width="0.0308%" height="15" fill="rgb(225,204,11)" fg:x="73091" fg:w="45"/><text x="50.3168%" y="847.50"></text></g><g><title>do_futex (45 samples, 0.03%)</title><rect x="50.0668%" y="821" width="0.0308%" height="15" fill="rgb(205,56,4)" fg:x="73091" fg:w="45"/><text x="50.3168%" y="831.50"></text></g><g><title>futex_wait (45 samples, 0.03%)</title><rect x="50.0668%" y="805" width="0.0308%" height="15" fill="rgb(206,6,35)" fg:x="73091" fg:w="45"/><text x="50.3168%" y="815.50"></text></g><g><title>Unsafe_Park (47 samples, 0.03%)</title><rect x="50.0668%" y="949" width="0.0322%" height="15" fill="rgb(247,73,52)" fg:x="73091" fg:w="47"/><text x="50.3168%" y="959.50"></text></g><g><title>Parker::park (47 samples, 0.03%)</title><rect x="50.0668%" y="933" width="0.0322%" height="15" fill="rgb(246,97,4)" fg:x="73091" fg:w="47"/><text x="50.3168%" y="943.50"></text></g><g><title>__pthread_cond_wait (47 samples, 0.03%)</title><rect x="50.0668%" y="917" width="0.0322%" height="15" fill="rgb(212,37,15)" fg:x="73091" fg:w="47"/><text x="50.3168%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (47 samples, 0.03%)</title><rect x="50.0668%" y="901" width="0.0322%" height="15" fill="rgb(208,130,40)" fg:x="73091" fg:w="47"/><text x="50.3168%" y="911.50"></text></g><g><title>futex_wait_cancelable (47 samples, 0.03%)</title><rect x="50.0668%" y="885" width="0.0322%" height="15" fill="rgb(236,55,29)" fg:x="73091" fg:w="47"/><text x="50.3168%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.03%)</title><rect x="50.0668%" y="869" width="0.0322%" height="15" fill="rgb(209,156,45)" fg:x="73091" fg:w="47"/><text x="50.3168%" y="879.50"></text></g><g><title>[perf-627991.map] (292 samples, 0.20%)</title><rect x="49.8996%" y="965" width="0.2000%" height="15" fill="rgb(249,107,4)" fg:x="72847" fg:w="292"/><text x="50.1496%" y="975.50"></text></g><g><title>__pthread_cond_wait (20 samples, 0.01%)</title><rect x="50.1010%" y="869" width="0.0137%" height="15" fill="rgb(227,7,13)" fg:x="73141" fg:w="20"/><text x="50.3510%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (20 samples, 0.01%)</title><rect x="50.1010%" y="853" width="0.0137%" height="15" fill="rgb(250,129,14)" fg:x="73141" fg:w="20"/><text x="50.3510%" y="863.50"></text></g><g><title>futex_wait_cancelable (20 samples, 0.01%)</title><rect x="50.1010%" y="837" width="0.0137%" height="15" fill="rgb(229,92,13)" fg:x="73141" fg:w="20"/><text x="50.3510%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="50.1010%" y="821" width="0.0137%" height="15" fill="rgb(245,98,39)" fg:x="73141" fg:w="20"/><text x="50.3510%" y="831.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="50.1010%" y="805" width="0.0137%" height="15" fill="rgb(234,135,48)" fg:x="73141" fg:w="20"/><text x="50.3510%" y="815.50"></text></g><g><title>__x64_sys_futex (20 samples, 0.01%)</title><rect x="50.1010%" y="789" width="0.0137%" height="15" fill="rgb(230,98,28)" fg:x="73141" fg:w="20"/><text x="50.3510%" y="799.50"></text></g><g><title>do_futex (20 samples, 0.01%)</title><rect x="50.1010%" y="773" width="0.0137%" height="15" fill="rgb(223,121,0)" fg:x="73141" fg:w="20"/><text x="50.3510%" y="783.50"></text></g><g><title>futex_wait (20 samples, 0.01%)</title><rect x="50.1010%" y="757" width="0.0137%" height="15" fill="rgb(234,173,33)" fg:x="73141" fg:w="20"/><text x="50.3510%" y="767.50"></text></g><g><title>futex_wait_queue_me (20 samples, 0.01%)</title><rect x="50.1010%" y="741" width="0.0137%" height="15" fill="rgb(245,47,8)" fg:x="73141" fg:w="20"/><text x="50.3510%" y="751.50"></text></g><g><title>schedule (19 samples, 0.01%)</title><rect x="50.1017%" y="725" width="0.0130%" height="15" fill="rgb(205,17,20)" fg:x="73142" fg:w="19"/><text x="50.3517%" y="735.50"></text></g><g><title>__schedule (19 samples, 0.01%)</title><rect x="50.1017%" y="709" width="0.0130%" height="15" fill="rgb(232,151,16)" fg:x="73142" fg:w="19"/><text x="50.3517%" y="719.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="50.1017%" y="693" width="0.0130%" height="15" fill="rgb(208,30,32)" fg:x="73142" fg:w="19"/><text x="50.3517%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="50.1017%" y="677" width="0.0130%" height="15" fill="rgb(254,26,3)" fg:x="73142" fg:w="19"/><text x="50.3517%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="50.1017%" y="661" width="0.0130%" height="15" fill="rgb(240,177,30)" fg:x="73142" fg:w="19"/><text x="50.3517%" y="671.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="50.1017%" y="645" width="0.0130%" height="15" fill="rgb(248,76,44)" fg:x="73142" fg:w="19"/><text x="50.3517%" y="655.50"></text></g><g><title>[unknown] (23 samples, 0.02%)</title><rect x="50.0997%" y="965" width="0.0158%" height="15" fill="rgb(241,186,54)" fg:x="73139" fg:w="23"/><text x="50.3497%" y="975.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (22 samples, 0.02%)</title><rect x="50.1004%" y="949" width="0.0151%" height="15" fill="rgb(249,171,29)" fg:x="73140" fg:w="22"/><text x="50.3504%" y="959.50"></text></g><g><title>SafepointSynchronize::block (22 samples, 0.02%)</title><rect x="50.1004%" y="933" width="0.0151%" height="15" fill="rgb(237,151,44)" fg:x="73140" fg:w="22"/><text x="50.3504%" y="943.50"></text></g><g><title>Monitor::lock_without_safepoint_check (22 samples, 0.02%)</title><rect x="50.1004%" y="917" width="0.0151%" height="15" fill="rgb(228,174,30)" fg:x="73140" fg:w="22"/><text x="50.3504%" y="927.50"></text></g><g><title>Monitor::ILock (22 samples, 0.02%)</title><rect x="50.1004%" y="901" width="0.0151%" height="15" fill="rgb(252,14,37)" fg:x="73140" fg:w="22"/><text x="50.3504%" y="911.50"></text></g><g><title>os::PlatformEvent::park (21 samples, 0.01%)</title><rect x="50.1010%" y="885" width="0.0144%" height="15" fill="rgb(207,111,40)" fg:x="73141" fg:w="21"/><text x="50.3510%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (37 samples, 0.03%)</title><rect x="50.1202%" y="901" width="0.0253%" height="15" fill="rgb(248,171,54)" fg:x="73169" fg:w="37"/><text x="50.3702%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.03%)</title><rect x="50.1202%" y="885" width="0.0253%" height="15" fill="rgb(211,127,2)" fg:x="73169" fg:w="37"/><text x="50.3702%" y="895.50"></text></g><g><title>native_write_msr (37 samples, 0.03%)</title><rect x="50.1202%" y="869" width="0.0253%" height="15" fill="rgb(236,87,47)" fg:x="73169" fg:w="37"/><text x="50.3702%" y="879.50"></text></g><g><title>ret_from_fork (43 samples, 0.03%)</title><rect x="50.1188%" y="949" width="0.0295%" height="15" fill="rgb(223,190,45)" fg:x="73167" fg:w="43"/><text x="50.3688%" y="959.50"></text></g><g><title>schedule_tail (41 samples, 0.03%)</title><rect x="50.1202%" y="933" width="0.0281%" height="15" fill="rgb(215,5,16)" fg:x="73169" fg:w="41"/><text x="50.3702%" y="943.50"></text></g><g><title>finish_task_switch (41 samples, 0.03%)</title><rect x="50.1202%" y="917" width="0.0281%" height="15" fill="rgb(252,82,33)" fg:x="73169" fg:w="41"/><text x="50.3702%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.02%)</title><rect x="50.1510%" y="677" width="0.0226%" height="15" fill="rgb(247,213,44)" fg:x="73214" fg:w="33"/><text x="50.4010%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.02%)</title><rect x="50.1524%" y="661" width="0.0212%" height="15" fill="rgb(205,196,44)" fg:x="73216" fg:w="31"/><text x="50.4024%" y="671.50"></text></g><g><title>native_write_msr (31 samples, 0.02%)</title><rect x="50.1524%" y="645" width="0.0212%" height="15" fill="rgb(237,96,54)" fg:x="73216" fg:w="31"/><text x="50.4024%" y="655.50"></text></g><g><title>Monitor::wait (37 samples, 0.03%)</title><rect x="50.1490%" y="917" width="0.0253%" height="15" fill="rgb(230,113,34)" fg:x="73211" fg:w="37"/><text x="50.3990%" y="927.50"></text></g><g><title>Monitor::IWait (37 samples, 0.03%)</title><rect x="50.1490%" y="901" width="0.0253%" height="15" fill="rgb(221,224,12)" fg:x="73211" fg:w="37"/><text x="50.3990%" y="911.50"></text></g><g><title>os::PlatformEvent::park (36 samples, 0.02%)</title><rect x="50.1497%" y="885" width="0.0247%" height="15" fill="rgb(219,112,44)" fg:x="73212" fg:w="36"/><text x="50.3997%" y="895.50"></text></g><g><title>__pthread_cond_wait (36 samples, 0.02%)</title><rect x="50.1497%" y="869" width="0.0247%" height="15" fill="rgb(210,31,13)" fg:x="73212" fg:w="36"/><text x="50.3997%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.02%)</title><rect x="50.1497%" y="853" width="0.0247%" height="15" fill="rgb(230,25,16)" fg:x="73212" fg:w="36"/><text x="50.3997%" y="863.50"></text></g><g><title>futex_wait_cancelable (36 samples, 0.02%)</title><rect x="50.1497%" y="837" width="0.0247%" height="15" fill="rgb(246,108,53)" fg:x="73212" fg:w="36"/><text x="50.3997%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="50.1497%" y="821" width="0.0247%" height="15" fill="rgb(241,172,50)" fg:x="73212" fg:w="36"/><text x="50.3997%" y="831.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="50.1497%" y="805" width="0.0247%" height="15" fill="rgb(235,141,10)" fg:x="73212" fg:w="36"/><text x="50.3997%" y="815.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="50.1497%" y="789" width="0.0247%" height="15" fill="rgb(220,174,43)" fg:x="73212" fg:w="36"/><text x="50.3997%" y="799.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="50.1497%" y="773" width="0.0247%" height="15" fill="rgb(215,181,40)" fg:x="73212" fg:w="36"/><text x="50.3997%" y="783.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="50.1497%" y="757" width="0.0247%" height="15" fill="rgb(230,97,2)" fg:x="73212" fg:w="36"/><text x="50.3997%" y="767.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.02%)</title><rect x="50.1497%" y="741" width="0.0247%" height="15" fill="rgb(211,25,27)" fg:x="73212" fg:w="36"/><text x="50.3997%" y="751.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="50.1504%" y="725" width="0.0240%" height="15" fill="rgb(230,87,26)" fg:x="73213" fg:w="35"/><text x="50.4004%" y="735.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="50.1504%" y="709" width="0.0240%" height="15" fill="rgb(227,160,17)" fg:x="73213" fg:w="35"/><text x="50.4004%" y="719.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="50.1504%" y="693" width="0.0240%" height="15" fill="rgb(244,85,34)" fg:x="73213" fg:w="35"/><text x="50.4004%" y="703.50"></text></g><g><title>__GI___clone (98 samples, 0.07%)</title><rect x="50.1154%" y="965" width="0.0671%" height="15" fill="rgb(207,70,0)" fg:x="73162" fg:w="98"/><text x="50.3654%" y="975.50"></text></g><g><title>start_thread (50 samples, 0.03%)</title><rect x="50.1483%" y="949" width="0.0342%" height="15" fill="rgb(223,129,7)" fg:x="73210" fg:w="50"/><text x="50.3983%" y="959.50"></text></g><g><title>thread_native_entry (49 samples, 0.03%)</title><rect x="50.1490%" y="933" width="0.0336%" height="15" fill="rgb(246,105,7)" fg:x="73211" fg:w="49"/><text x="50.3990%" y="943.50"></text></g><g><title>globbing_pool-2 (453 samples, 0.31%)</title><rect x="49.8736%" y="981" width="0.3103%" height="15" fill="rgb(215,154,42)" fg:x="72809" fg:w="453"/><text x="50.1236%" y="991.50"></text></g><g><title>[libunix_jni.so] (25 samples, 0.02%)</title><rect x="50.1880%" y="965" width="0.0171%" height="15" fill="rgb(220,215,30)" fg:x="73268" fg:w="25"/><text x="50.4380%" y="975.50"></text></g><g><title>__pthread_cond_wait (42 samples, 0.03%)</title><rect x="50.2558%" y="885" width="0.0288%" height="15" fill="rgb(228,81,51)" fg:x="73367" fg:w="42"/><text x="50.5058%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (42 samples, 0.03%)</title><rect x="50.2558%" y="869" width="0.0288%" height="15" fill="rgb(247,71,54)" fg:x="73367" fg:w="42"/><text x="50.5058%" y="879.50"></text></g><g><title>futex_wait_cancelable (42 samples, 0.03%)</title><rect x="50.2558%" y="853" width="0.0288%" height="15" fill="rgb(234,176,34)" fg:x="73367" fg:w="42"/><text x="50.5058%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (42 samples, 0.03%)</title><rect x="50.2558%" y="837" width="0.0288%" height="15" fill="rgb(241,103,54)" fg:x="73367" fg:w="42"/><text x="50.5058%" y="847.50"></text></g><g><title>do_syscall_64 (42 samples, 0.03%)</title><rect x="50.2558%" y="821" width="0.0288%" height="15" fill="rgb(228,22,34)" fg:x="73367" fg:w="42"/><text x="50.5058%" y="831.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.03%)</title><rect x="50.2558%" y="805" width="0.0288%" height="15" fill="rgb(241,179,48)" fg:x="73367" fg:w="42"/><text x="50.5058%" y="815.50"></text></g><g><title>do_futex (42 samples, 0.03%)</title><rect x="50.2558%" y="789" width="0.0288%" height="15" fill="rgb(235,167,37)" fg:x="73367" fg:w="42"/><text x="50.5058%" y="799.50"></text></g><g><title>futex_wait (41 samples, 0.03%)</title><rect x="50.2565%" y="773" width="0.0281%" height="15" fill="rgb(213,109,30)" fg:x="73368" fg:w="41"/><text x="50.5065%" y="783.50"></text></g><g><title>futex_wait_queue_me (41 samples, 0.03%)</title><rect x="50.2565%" y="757" width="0.0281%" height="15" fill="rgb(222,172,16)" fg:x="73368" fg:w="41"/><text x="50.5065%" y="767.50"></text></g><g><title>schedule (41 samples, 0.03%)</title><rect x="50.2565%" y="741" width="0.0281%" height="15" fill="rgb(233,192,5)" fg:x="73368" fg:w="41"/><text x="50.5065%" y="751.50"></text></g><g><title>__schedule (41 samples, 0.03%)</title><rect x="50.2565%" y="725" width="0.0281%" height="15" fill="rgb(247,189,41)" fg:x="73368" fg:w="41"/><text x="50.5065%" y="735.50"></text></g><g><title>finish_task_switch (41 samples, 0.03%)</title><rect x="50.2565%" y="709" width="0.0281%" height="15" fill="rgb(218,134,47)" fg:x="73368" fg:w="41"/><text x="50.5065%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.03%)</title><rect x="50.2565%" y="693" width="0.0281%" height="15" fill="rgb(216,29,3)" fg:x="73368" fg:w="41"/><text x="50.5065%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (40 samples, 0.03%)</title><rect x="50.2572%" y="677" width="0.0274%" height="15" fill="rgb(246,140,12)" fg:x="73369" fg:w="40"/><text x="50.5072%" y="687.50"></text></g><g><title>native_write_msr (38 samples, 0.03%)</title><rect x="50.2586%" y="661" width="0.0260%" height="15" fill="rgb(230,136,11)" fg:x="73371" fg:w="38"/><text x="50.5086%" y="671.50"></text></g><g><title>Monitor::lock (45 samples, 0.03%)</title><rect x="50.2552%" y="933" width="0.0308%" height="15" fill="rgb(247,22,47)" fg:x="73366" fg:w="45"/><text x="50.5052%" y="943.50"></text></g><g><title>Monitor::ILock (45 samples, 0.03%)</title><rect x="50.2552%" y="917" width="0.0308%" height="15" fill="rgb(218,84,22)" fg:x="73366" fg:w="45"/><text x="50.5052%" y="927.50"></text></g><g><title>os::PlatformEvent::park (45 samples, 0.03%)</title><rect x="50.2552%" y="901" width="0.0308%" height="15" fill="rgb(216,87,39)" fg:x="73366" fg:w="45"/><text x="50.5052%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.02%)</title><rect x="50.2887%" y="677" width="0.0171%" height="15" fill="rgb(221,178,8)" fg:x="73415" fg:w="25"/><text x="50.5387%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="50.2894%" y="661" width="0.0164%" height="15" fill="rgb(230,42,11)" fg:x="73416" fg:w="24"/><text x="50.5394%" y="671.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="50.2894%" y="645" width="0.0164%" height="15" fill="rgb(237,229,4)" fg:x="73416" fg:w="24"/><text x="50.5394%" y="655.50"></text></g><g><title>__pthread_cond_wait (29 samples, 0.02%)</title><rect x="50.2867%" y="869" width="0.0199%" height="15" fill="rgb(222,31,33)" fg:x="73412" fg:w="29"/><text x="50.5367%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.02%)</title><rect x="50.2867%" y="853" width="0.0199%" height="15" fill="rgb(210,17,39)" fg:x="73412" fg:w="29"/><text x="50.5367%" y="863.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.02%)</title><rect x="50.2874%" y="837" width="0.0192%" height="15" fill="rgb(244,93,20)" fg:x="73413" fg:w="28"/><text x="50.5374%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="50.2874%" y="821" width="0.0192%" height="15" fill="rgb(210,40,47)" fg:x="73413" fg:w="28"/><text x="50.5374%" y="831.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="50.2874%" y="805" width="0.0192%" height="15" fill="rgb(239,211,47)" fg:x="73413" fg:w="28"/><text x="50.5374%" y="815.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.02%)</title><rect x="50.2880%" y="789" width="0.0185%" height="15" fill="rgb(251,223,49)" fg:x="73414" fg:w="27"/><text x="50.5380%" y="799.50"></text></g><g><title>do_futex (27 samples, 0.02%)</title><rect x="50.2880%" y="773" width="0.0185%" height="15" fill="rgb(221,149,5)" fg:x="73414" fg:w="27"/><text x="50.5380%" y="783.50"></text></g><g><title>futex_wait (27 samples, 0.02%)</title><rect x="50.2880%" y="757" width="0.0185%" height="15" fill="rgb(219,224,51)" fg:x="73414" fg:w="27"/><text x="50.5380%" y="767.50"></text></g><g><title>futex_wait_queue_me (27 samples, 0.02%)</title><rect x="50.2880%" y="741" width="0.0185%" height="15" fill="rgb(223,7,8)" fg:x="73414" fg:w="27"/><text x="50.5380%" y="751.50"></text></g><g><title>schedule (27 samples, 0.02%)</title><rect x="50.2880%" y="725" width="0.0185%" height="15" fill="rgb(241,217,22)" fg:x="73414" fg:w="27"/><text x="50.5380%" y="735.50"></text></g><g><title>__schedule (27 samples, 0.02%)</title><rect x="50.2880%" y="709" width="0.0185%" height="15" fill="rgb(248,209,0)" fg:x="73414" fg:w="27"/><text x="50.5380%" y="719.50"></text></g><g><title>finish_task_switch (27 samples, 0.02%)</title><rect x="50.2880%" y="693" width="0.0185%" height="15" fill="rgb(217,205,4)" fg:x="73414" fg:w="27"/><text x="50.5380%" y="703.50"></text></g><g><title>Monitor::wait (30 samples, 0.02%)</title><rect x="50.2867%" y="917" width="0.0205%" height="15" fill="rgb(228,124,39)" fg:x="73412" fg:w="30"/><text x="50.5367%" y="927.50"></text></g><g><title>Monitor::IWait (30 samples, 0.02%)</title><rect x="50.2867%" y="901" width="0.0205%" height="15" fill="rgb(250,116,42)" fg:x="73412" fg:w="30"/><text x="50.5367%" y="911.50"></text></g><g><title>os::PlatformEvent::park (30 samples, 0.02%)</title><rect x="50.2867%" y="885" width="0.0205%" height="15" fill="rgb(223,202,9)" fg:x="73412" fg:w="30"/><text x="50.5367%" y="895.50"></text></g><g><title>JVM_StartThread (86 samples, 0.06%)</title><rect x="50.2517%" y="949" width="0.0589%" height="15" fill="rgb(242,222,40)" fg:x="73361" fg:w="86"/><text x="50.5017%" y="959.50"></text></g><g><title>os::create_thread (35 samples, 0.02%)</title><rect x="50.2867%" y="933" width="0.0240%" height="15" fill="rgb(229,99,46)" fg:x="73412" fg:w="35"/><text x="50.5367%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (52 samples, 0.04%)</title><rect x="50.3243%" y="725" width="0.0356%" height="15" fill="rgb(225,56,46)" fg:x="73467" fg:w="52"/><text x="50.5743%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (52 samples, 0.04%)</title><rect x="50.3243%" y="709" width="0.0356%" height="15" fill="rgb(227,94,5)" fg:x="73467" fg:w="52"/><text x="50.5743%" y="719.50"></text></g><g><title>native_write_msr (52 samples, 0.04%)</title><rect x="50.3243%" y="693" width="0.0356%" height="15" fill="rgb(205,112,38)" fg:x="73467" fg:w="52"/><text x="50.5743%" y="703.50"></text></g><g><title>finish_task_switch (61 samples, 0.04%)</title><rect x="50.3237%" y="741" width="0.0418%" height="15" fill="rgb(231,133,46)" fg:x="73466" fg:w="61"/><text x="50.5737%" y="751.50"></text></g><g><title>__pthread_cond_wait (64 samples, 0.04%)</title><rect x="50.3230%" y="917" width="0.0438%" height="15" fill="rgb(217,16,9)" fg:x="73465" fg:w="64"/><text x="50.5730%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (64 samples, 0.04%)</title><rect x="50.3230%" y="901" width="0.0438%" height="15" fill="rgb(249,173,9)" fg:x="73465" fg:w="64"/><text x="50.5730%" y="911.50"></text></g><g><title>futex_wait_cancelable (64 samples, 0.04%)</title><rect x="50.3230%" y="885" width="0.0438%" height="15" fill="rgb(205,163,53)" fg:x="73465" fg:w="64"/><text x="50.5730%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.04%)</title><rect x="50.3230%" y="869" width="0.0438%" height="15" fill="rgb(217,54,41)" fg:x="73465" fg:w="64"/><text x="50.5730%" y="879.50"></text></g><g><title>do_syscall_64 (64 samples, 0.04%)</title><rect x="50.3230%" y="853" width="0.0438%" height="15" fill="rgb(228,216,12)" fg:x="73465" fg:w="64"/><text x="50.5730%" y="863.50"></text></g><g><title>__x64_sys_futex (64 samples, 0.04%)</title><rect x="50.3230%" y="837" width="0.0438%" height="15" fill="rgb(244,228,15)" fg:x="73465" fg:w="64"/><text x="50.5730%" y="847.50"></text></g><g><title>do_futex (64 samples, 0.04%)</title><rect x="50.3230%" y="821" width="0.0438%" height="15" fill="rgb(221,176,53)" fg:x="73465" fg:w="64"/><text x="50.5730%" y="831.50"></text></g><g><title>futex_wait (64 samples, 0.04%)</title><rect x="50.3230%" y="805" width="0.0438%" height="15" fill="rgb(205,94,34)" fg:x="73465" fg:w="64"/><text x="50.5730%" y="815.50"></text></g><g><title>futex_wait_queue_me (63 samples, 0.04%)</title><rect x="50.3237%" y="789" width="0.0432%" height="15" fill="rgb(213,110,48)" fg:x="73466" fg:w="63"/><text x="50.5737%" y="799.50"></text></g><g><title>schedule (63 samples, 0.04%)</title><rect x="50.3237%" y="773" width="0.0432%" height="15" fill="rgb(236,142,28)" fg:x="73466" fg:w="63"/><text x="50.5737%" y="783.50"></text></g><g><title>__schedule (63 samples, 0.04%)</title><rect x="50.3237%" y="757" width="0.0432%" height="15" fill="rgb(225,135,29)" fg:x="73466" fg:w="63"/><text x="50.5737%" y="767.50"></text></g><g><title>Unsafe_Park (74 samples, 0.05%)</title><rect x="50.3168%" y="949" width="0.0507%" height="15" fill="rgb(252,45,31)" fg:x="73456" fg:w="74"/><text x="50.5668%" y="959.50"></text></g><g><title>Parker::park (73 samples, 0.05%)</title><rect x="50.3175%" y="933" width="0.0500%" height="15" fill="rgb(211,187,50)" fg:x="73457" fg:w="73"/><text x="50.5675%" y="943.50"></text></g><g><title>[perf-627991.map] (248 samples, 0.17%)</title><rect x="50.2052%" y="965" width="0.1699%" height="15" fill="rgb(229,109,7)" fg:x="73293" fg:w="248"/><text x="50.4552%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.06%)</title><rect x="50.3839%" y="901" width="0.0582%" height="15" fill="rgb(251,131,51)" fg:x="73554" fg:w="85"/><text x="50.6339%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.06%)</title><rect x="50.3846%" y="885" width="0.0575%" height="15" fill="rgb(251,180,35)" fg:x="73555" fg:w="84"/><text x="50.6346%" y="895.50"></text></g><g><title>native_write_msr (84 samples, 0.06%)</title><rect x="50.3846%" y="869" width="0.0575%" height="15" fill="rgb(211,46,32)" fg:x="73555" fg:w="84"/><text x="50.6346%" y="879.50"></text></g><g><title>schedule_tail (88 samples, 0.06%)</title><rect x="50.3826%" y="933" width="0.0603%" height="15" fill="rgb(248,123,17)" fg:x="73552" fg:w="88"/><text x="50.6326%" y="943.50"></text></g><g><title>finish_task_switch (88 samples, 0.06%)</title><rect x="50.3826%" y="917" width="0.0603%" height="15" fill="rgb(227,141,18)" fg:x="73552" fg:w="88"/><text x="50.6326%" y="927.50"></text></g><g><title>ret_from_fork (97 samples, 0.07%)</title><rect x="50.3791%" y="949" width="0.0664%" height="15" fill="rgb(216,102,9)" fg:x="73547" fg:w="97"/><text x="50.6291%" y="959.50"></text></g><g><title>finish_task_switch (20 samples, 0.01%)</title><rect x="50.4483%" y="693" width="0.0137%" height="15" fill="rgb(253,47,13)" fg:x="73648" fg:w="20"/><text x="50.6983%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="50.4497%" y="677" width="0.0123%" height="15" fill="rgb(226,93,23)" fg:x="73650" fg:w="18"/><text x="50.6997%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="50.4497%" y="661" width="0.0123%" height="15" fill="rgb(247,104,17)" fg:x="73650" fg:w="18"/><text x="50.6997%" y="671.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="50.4497%" y="645" width="0.0123%" height="15" fill="rgb(233,203,26)" fg:x="73650" fg:w="18"/><text x="50.6997%" y="655.50"></text></g><g><title>Monitor::wait (24 samples, 0.02%)</title><rect x="50.4470%" y="917" width="0.0164%" height="15" fill="rgb(244,98,49)" fg:x="73646" fg:w="24"/><text x="50.6970%" y="927.50"></text></g><g><title>Monitor::IWait (24 samples, 0.02%)</title><rect x="50.4470%" y="901" width="0.0164%" height="15" fill="rgb(235,134,22)" fg:x="73646" fg:w="24"/><text x="50.6970%" y="911.50"></text></g><g><title>os::PlatformEvent::park (24 samples, 0.02%)</title><rect x="50.4470%" y="885" width="0.0164%" height="15" fill="rgb(221,70,32)" fg:x="73646" fg:w="24"/><text x="50.6970%" y="895.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.02%)</title><rect x="50.4470%" y="869" width="0.0164%" height="15" fill="rgb(238,15,50)" fg:x="73646" fg:w="24"/><text x="50.6970%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="50.4470%" y="853" width="0.0164%" height="15" fill="rgb(215,221,48)" fg:x="73646" fg:w="24"/><text x="50.6970%" y="863.50"></text></g><g><title>futex_wait_cancelable (23 samples, 0.02%)</title><rect x="50.4476%" y="837" width="0.0158%" height="15" fill="rgb(236,73,3)" fg:x="73647" fg:w="23"/><text x="50.6976%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="50.4476%" y="821" width="0.0158%" height="15" fill="rgb(250,107,11)" fg:x="73647" fg:w="23"/><text x="50.6976%" y="831.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="50.4476%" y="805" width="0.0158%" height="15" fill="rgb(242,39,14)" fg:x="73647" fg:w="23"/><text x="50.6976%" y="815.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="50.4476%" y="789" width="0.0158%" height="15" fill="rgb(248,164,37)" fg:x="73647" fg:w="23"/><text x="50.6976%" y="799.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="50.4476%" y="773" width="0.0158%" height="15" fill="rgb(217,60,12)" fg:x="73647" fg:w="23"/><text x="50.6976%" y="783.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="50.4476%" y="757" width="0.0158%" height="15" fill="rgb(240,125,29)" fg:x="73647" fg:w="23"/><text x="50.6976%" y="767.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="50.4476%" y="741" width="0.0158%" height="15" fill="rgb(208,207,28)" fg:x="73647" fg:w="23"/><text x="50.6976%" y="751.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="50.4476%" y="725" width="0.0158%" height="15" fill="rgb(209,159,27)" fg:x="73647" fg:w="23"/><text x="50.6976%" y="735.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="50.4476%" y="709" width="0.0158%" height="15" fill="rgb(251,176,53)" fg:x="73647" fg:w="23"/><text x="50.6976%" y="719.50"></text></g><g><title>__GI___clone (144 samples, 0.10%)</title><rect x="50.3757%" y="965" width="0.0986%" height="15" fill="rgb(211,85,7)" fg:x="73542" fg:w="144"/><text x="50.6257%" y="975.50"></text></g><g><title>start_thread (42 samples, 0.03%)</title><rect x="50.4456%" y="949" width="0.0288%" height="15" fill="rgb(216,64,54)" fg:x="73644" fg:w="42"/><text x="50.6956%" y="959.50"></text></g><g><title>thread_native_entry (40 samples, 0.03%)</title><rect x="50.4470%" y="933" width="0.0274%" height="15" fill="rgb(217,54,24)" fg:x="73646" fg:w="40"/><text x="50.6970%" y="943.50"></text></g><g><title>globbing_pool-3 (426 samples, 0.29%)</title><rect x="50.1839%" y="981" width="0.2918%" height="15" fill="rgb(208,206,53)" fg:x="73262" fg:w="426"/><text x="50.4339%" y="991.50"></text></g><g><title>[libunix_jni.so] (16 samples, 0.01%)</title><rect x="50.4764%" y="965" width="0.0110%" height="15" fill="rgb(251,74,39)" fg:x="73689" fg:w="16"/><text x="50.7264%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.02%)</title><rect x="50.5100%" y="693" width="0.0226%" height="15" fill="rgb(226,47,5)" fg:x="73738" fg:w="33"/><text x="50.7600%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.02%)</title><rect x="50.5113%" y="677" width="0.0212%" height="15" fill="rgb(234,111,33)" fg:x="73740" fg:w="31"/><text x="50.7613%" y="687.50"></text></g><g><title>native_write_msr (31 samples, 0.02%)</title><rect x="50.5113%" y="661" width="0.0212%" height="15" fill="rgb(251,14,10)" fg:x="73740" fg:w="31"/><text x="50.7613%" y="671.50"></text></g><g><title>Monitor::lock (37 samples, 0.03%)</title><rect x="50.5079%" y="933" width="0.0253%" height="15" fill="rgb(232,43,0)" fg:x="73735" fg:w="37"/><text x="50.7579%" y="943.50"></text></g><g><title>Monitor::ILock (37 samples, 0.03%)</title><rect x="50.5079%" y="917" width="0.0253%" height="15" fill="rgb(222,68,43)" fg:x="73735" fg:w="37"/><text x="50.7579%" y="927.50"></text></g><g><title>os::PlatformEvent::park (36 samples, 0.02%)</title><rect x="50.5086%" y="901" width="0.0247%" height="15" fill="rgb(217,24,23)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="911.50"></text></g><g><title>__pthread_cond_wait (36 samples, 0.02%)</title><rect x="50.5086%" y="885" width="0.0247%" height="15" fill="rgb(229,209,14)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.02%)</title><rect x="50.5086%" y="869" width="0.0247%" height="15" fill="rgb(250,149,48)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="879.50"></text></g><g><title>futex_wait_cancelable (36 samples, 0.02%)</title><rect x="50.5086%" y="853" width="0.0247%" height="15" fill="rgb(210,120,37)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="50.5086%" y="837" width="0.0247%" height="15" fill="rgb(210,21,8)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="847.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="50.5086%" y="821" width="0.0247%" height="15" fill="rgb(243,145,7)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="831.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="50.5086%" y="805" width="0.0247%" height="15" fill="rgb(238,178,32)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="815.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="50.5086%" y="789" width="0.0247%" height="15" fill="rgb(222,4,10)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="799.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="50.5086%" y="773" width="0.0247%" height="15" fill="rgb(239,7,37)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="783.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.02%)</title><rect x="50.5086%" y="757" width="0.0247%" height="15" fill="rgb(215,31,37)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="767.50"></text></g><g><title>schedule (36 samples, 0.02%)</title><rect x="50.5086%" y="741" width="0.0247%" height="15" fill="rgb(224,83,33)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="751.50"></text></g><g><title>__schedule (36 samples, 0.02%)</title><rect x="50.5086%" y="725" width="0.0247%" height="15" fill="rgb(239,55,3)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="735.50"></text></g><g><title>finish_task_switch (36 samples, 0.02%)</title><rect x="50.5086%" y="709" width="0.0247%" height="15" fill="rgb(247,92,11)" fg:x="73736" fg:w="36"/><text x="50.7586%" y="719.50"></text></g><g><title>JVM_StartThread (51 samples, 0.03%)</title><rect x="50.5072%" y="949" width="0.0349%" height="15" fill="rgb(239,200,7)" fg:x="73734" fg:w="51"/><text x="50.7572%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.03%)</title><rect x="50.5435%" y="725" width="0.0274%" height="15" fill="rgb(227,115,8)" fg:x="73787" fg:w="40"/><text x="50.7935%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.03%)</title><rect x="50.5442%" y="709" width="0.0267%" height="15" fill="rgb(215,189,27)" fg:x="73788" fg:w="39"/><text x="50.7942%" y="719.50"></text></g><g><title>native_write_msr (38 samples, 0.03%)</title><rect x="50.5449%" y="693" width="0.0260%" height="15" fill="rgb(251,216,39)" fg:x="73789" fg:w="38"/><text x="50.7949%" y="703.50"></text></g><g><title>do_syscall_64 (44 samples, 0.03%)</title><rect x="50.5422%" y="853" width="0.0301%" height="15" fill="rgb(207,29,47)" fg:x="73785" fg:w="44"/><text x="50.7922%" y="863.50"></text></g><g><title>__x64_sys_futex (44 samples, 0.03%)</title><rect x="50.5422%" y="837" width="0.0301%" height="15" fill="rgb(210,71,34)" fg:x="73785" fg:w="44"/><text x="50.7922%" y="847.50"></text></g><g><title>do_futex (44 samples, 0.03%)</title><rect x="50.5422%" y="821" width="0.0301%" height="15" fill="rgb(253,217,51)" fg:x="73785" fg:w="44"/><text x="50.7922%" y="831.50"></text></g><g><title>futex_wait (44 samples, 0.03%)</title><rect x="50.5422%" y="805" width="0.0301%" height="15" fill="rgb(222,117,46)" fg:x="73785" fg:w="44"/><text x="50.7922%" y="815.50"></text></g><g><title>futex_wait_queue_me (43 samples, 0.03%)</title><rect x="50.5429%" y="789" width="0.0295%" height="15" fill="rgb(226,132,6)" fg:x="73786" fg:w="43"/><text x="50.7929%" y="799.50"></text></g><g><title>schedule (43 samples, 0.03%)</title><rect x="50.5429%" y="773" width="0.0295%" height="15" fill="rgb(254,145,51)" fg:x="73786" fg:w="43"/><text x="50.7929%" y="783.50"></text></g><g><title>__schedule (43 samples, 0.03%)</title><rect x="50.5429%" y="757" width="0.0295%" height="15" fill="rgb(231,199,27)" fg:x="73786" fg:w="43"/><text x="50.7929%" y="767.50"></text></g><g><title>finish_task_switch (42 samples, 0.03%)</title><rect x="50.5435%" y="741" width="0.0288%" height="15" fill="rgb(245,158,14)" fg:x="73787" fg:w="42"/><text x="50.7935%" y="751.50"></text></g><g><title>Unsafe_Park (46 samples, 0.03%)</title><rect x="50.5422%" y="949" width="0.0315%" height="15" fill="rgb(240,113,14)" fg:x="73785" fg:w="46"/><text x="50.7922%" y="959.50"></text></g><g><title>Parker::park (46 samples, 0.03%)</title><rect x="50.5422%" y="933" width="0.0315%" height="15" fill="rgb(210,20,13)" fg:x="73785" fg:w="46"/><text x="50.7922%" y="943.50"></text></g><g><title>__pthread_cond_wait (46 samples, 0.03%)</title><rect x="50.5422%" y="917" width="0.0315%" height="15" fill="rgb(241,144,13)" fg:x="73785" fg:w="46"/><text x="50.7922%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (46 samples, 0.03%)</title><rect x="50.5422%" y="901" width="0.0315%" height="15" fill="rgb(235,43,34)" fg:x="73785" fg:w="46"/><text x="50.7922%" y="911.50"></text></g><g><title>futex_wait_cancelable (46 samples, 0.03%)</title><rect x="50.5422%" y="885" width="0.0315%" height="15" fill="rgb(208,36,20)" fg:x="73785" fg:w="46"/><text x="50.7922%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.03%)</title><rect x="50.5422%" y="869" width="0.0315%" height="15" fill="rgb(239,204,10)" fg:x="73785" fg:w="46"/><text x="50.7922%" y="879.50"></text></g><g><title>[perf-627991.map] (129 samples, 0.09%)</title><rect x="50.4874%" y="965" width="0.0884%" height="15" fill="rgb(217,84,43)" fg:x="73705" fg:w="129"/><text x="50.7374%" y="975.50"></text></g><g><title>schedule_tail (30 samples, 0.02%)</title><rect x="50.5805%" y="933" width="0.0205%" height="15" fill="rgb(241,170,50)" fg:x="73841" fg:w="30"/><text x="50.8305%" y="943.50"></text></g><g><title>finish_task_switch (30 samples, 0.02%)</title><rect x="50.5805%" y="917" width="0.0205%" height="15" fill="rgb(226,205,29)" fg:x="73841" fg:w="30"/><text x="50.8305%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.02%)</title><rect x="50.5805%" y="901" width="0.0205%" height="15" fill="rgb(233,113,1)" fg:x="73841" fg:w="30"/><text x="50.8305%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="50.5805%" y="885" width="0.0205%" height="15" fill="rgb(253,98,13)" fg:x="73841" fg:w="30"/><text x="50.8305%" y="895.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="50.5805%" y="869" width="0.0205%" height="15" fill="rgb(211,115,12)" fg:x="73841" fg:w="30"/><text x="50.8305%" y="879.50"></text></g><g><title>ret_from_fork (34 samples, 0.02%)</title><rect x="50.5792%" y="949" width="0.0233%" height="15" fill="rgb(208,12,16)" fg:x="73839" fg:w="34"/><text x="50.8292%" y="959.50"></text></g><g><title>globbing_pool-4 (208 samples, 0.14%)</title><rect x="50.4757%" y="981" width="0.1425%" height="15" fill="rgb(237,193,54)" fg:x="73688" fg:w="208"/><text x="50.7257%" y="991.50"></text></g><g><title>__GI___clone (61 samples, 0.04%)</title><rect x="50.5764%" y="965" width="0.0418%" height="15" fill="rgb(243,22,42)" fg:x="73835" fg:w="61"/><text x="50.8264%" y="975.50"></text></g><g><title>start_thread (23 samples, 0.02%)</title><rect x="50.6025%" y="949" width="0.0158%" height="15" fill="rgb(233,151,36)" fg:x="73873" fg:w="23"/><text x="50.8525%" y="959.50"></text></g><g><title>thread_native_entry (23 samples, 0.02%)</title><rect x="50.6025%" y="933" width="0.0158%" height="15" fill="rgb(237,57,45)" fg:x="73873" fg:w="23"/><text x="50.8525%" y="943.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="50.6477%" y="821" width="0.0123%" height="15" fill="rgb(221,88,17)" fg:x="73939" fg:w="18"/><text x="50.8977%" y="831.50"></text></g><g><title>__x64_sys_futex (18 samples, 0.01%)</title><rect x="50.6477%" y="805" width="0.0123%" height="15" fill="rgb(230,79,15)" fg:x="73939" fg:w="18"/><text x="50.8977%" y="815.50"></text></g><g><title>do_futex (18 samples, 0.01%)</title><rect x="50.6477%" y="789" width="0.0123%" height="15" fill="rgb(213,57,13)" fg:x="73939" fg:w="18"/><text x="50.8977%" y="799.50"></text></g><g><title>futex_wait (18 samples, 0.01%)</title><rect x="50.6477%" y="773" width="0.0123%" height="15" fill="rgb(222,116,39)" fg:x="73939" fg:w="18"/><text x="50.8977%" y="783.50"></text></g><g><title>futex_wait_queue_me (18 samples, 0.01%)</title><rect x="50.6477%" y="757" width="0.0123%" height="15" fill="rgb(245,107,2)" fg:x="73939" fg:w="18"/><text x="50.8977%" y="767.50"></text></g><g><title>schedule (18 samples, 0.01%)</title><rect x="50.6477%" y="741" width="0.0123%" height="15" fill="rgb(238,1,10)" fg:x="73939" fg:w="18"/><text x="50.8977%" y="751.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="50.6477%" y="725" width="0.0123%" height="15" fill="rgb(249,4,48)" fg:x="73939" fg:w="18"/><text x="50.8977%" y="735.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="50.6477%" y="709" width="0.0123%" height="15" fill="rgb(223,151,18)" fg:x="73939" fg:w="18"/><text x="50.8977%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="50.6477%" y="693" width="0.0123%" height="15" fill="rgb(227,65,43)" fg:x="73939" fg:w="18"/><text x="50.8977%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="50.6483%" y="677" width="0.0116%" height="15" fill="rgb(218,40,45)" fg:x="73940" fg:w="17"/><text x="50.8983%" y="687.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="50.6483%" y="661" width="0.0116%" height="15" fill="rgb(252,121,31)" fg:x="73940" fg:w="17"/><text x="50.8983%" y="671.50"></text></g><g><title>Monitor::ILock (20 samples, 0.01%)</title><rect x="50.6470%" y="917" width="0.0137%" height="15" fill="rgb(219,158,43)" fg:x="73938" fg:w="20"/><text x="50.8970%" y="927.50"></text></g><g><title>os::PlatformEvent::park (20 samples, 0.01%)</title><rect x="50.6470%" y="901" width="0.0137%" height="15" fill="rgb(231,162,42)" fg:x="73938" fg:w="20"/><text x="50.8970%" y="911.50"></text></g><g><title>__pthread_cond_wait (19 samples, 0.01%)</title><rect x="50.6477%" y="885" width="0.0130%" height="15" fill="rgb(217,179,25)" fg:x="73939" fg:w="19"/><text x="50.8977%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (19 samples, 0.01%)</title><rect x="50.6477%" y="869" width="0.0130%" height="15" fill="rgb(206,212,31)" fg:x="73939" fg:w="19"/><text x="50.8977%" y="879.50"></text></g><g><title>futex_wait_cancelable (19 samples, 0.01%)</title><rect x="50.6477%" y="853" width="0.0130%" height="15" fill="rgb(235,144,12)" fg:x="73939" fg:w="19"/><text x="50.8977%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="50.6477%" y="837" width="0.0130%" height="15" fill="rgb(213,51,10)" fg:x="73939" fg:w="19"/><text x="50.8977%" y="847.50"></text></g><g><title>Monitor::lock (21 samples, 0.01%)</title><rect x="50.6470%" y="933" width="0.0144%" height="15" fill="rgb(231,145,14)" fg:x="73938" fg:w="21"/><text x="50.8970%" y="943.50"></text></g><g><title>JVM_StartThread (24 samples, 0.02%)</title><rect x="50.6470%" y="949" width="0.0164%" height="15" fill="rgb(235,15,28)" fg:x="73938" fg:w="24"/><text x="50.8970%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.02%)</title><rect x="50.6675%" y="725" width="0.0219%" height="15" fill="rgb(237,206,10)" fg:x="73968" fg:w="32"/><text x="50.9175%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.02%)</title><rect x="50.6675%" y="709" width="0.0219%" height="15" fill="rgb(236,227,27)" fg:x="73968" fg:w="32"/><text x="50.9175%" y="719.50"></text></g><g><title>native_write_msr (31 samples, 0.02%)</title><rect x="50.6682%" y="693" width="0.0212%" height="15" fill="rgb(246,83,35)" fg:x="73969" fg:w="31"/><text x="50.9182%" y="703.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="50.6662%" y="741" width="0.0240%" height="15" fill="rgb(220,136,24)" fg:x="73966" fg:w="35"/><text x="50.9162%" y="751.50"></text></g><g><title>Unsafe_Park (42 samples, 0.03%)</title><rect x="50.6634%" y="949" width="0.0288%" height="15" fill="rgb(217,3,25)" fg:x="73962" fg:w="42"/><text x="50.9134%" y="959.50"></text></g><g><title>Parker::park (42 samples, 0.03%)</title><rect x="50.6634%" y="933" width="0.0288%" height="15" fill="rgb(239,24,14)" fg:x="73962" fg:w="42"/><text x="50.9134%" y="943.50"></text></g><g><title>__pthread_cond_wait (42 samples, 0.03%)</title><rect x="50.6634%" y="917" width="0.0288%" height="15" fill="rgb(244,16,53)" fg:x="73962" fg:w="42"/><text x="50.9134%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (42 samples, 0.03%)</title><rect x="50.6634%" y="901" width="0.0288%" height="15" fill="rgb(208,175,44)" fg:x="73962" fg:w="42"/><text x="50.9134%" y="911.50"></text></g><g><title>futex_wait_cancelable (42 samples, 0.03%)</title><rect x="50.6634%" y="885" width="0.0288%" height="15" fill="rgb(252,18,48)" fg:x="73962" fg:w="42"/><text x="50.9134%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="50.6641%" y="869" width="0.0281%" height="15" fill="rgb(234,199,32)" fg:x="73963" fg:w="41"/><text x="50.9141%" y="879.50"></text></g><g><title>do_syscall_64 (41 samples, 0.03%)</title><rect x="50.6641%" y="853" width="0.0281%" height="15" fill="rgb(225,77,54)" fg:x="73963" fg:w="41"/><text x="50.9141%" y="863.50"></text></g><g><title>__x64_sys_futex (41 samples, 0.03%)</title><rect x="50.6641%" y="837" width="0.0281%" height="15" fill="rgb(225,42,25)" fg:x="73963" fg:w="41"/><text x="50.9141%" y="847.50"></text></g><g><title>do_futex (40 samples, 0.03%)</title><rect x="50.6648%" y="821" width="0.0274%" height="15" fill="rgb(242,227,46)" fg:x="73964" fg:w="40"/><text x="50.9148%" y="831.50"></text></g><g><title>futex_wait (40 samples, 0.03%)</title><rect x="50.6648%" y="805" width="0.0274%" height="15" fill="rgb(246,197,35)" fg:x="73964" fg:w="40"/><text x="50.9148%" y="815.50"></text></g><g><title>futex_wait_queue_me (40 samples, 0.03%)</title><rect x="50.6648%" y="789" width="0.0274%" height="15" fill="rgb(215,159,26)" fg:x="73964" fg:w="40"/><text x="50.9148%" y="799.50"></text></g><g><title>schedule (39 samples, 0.03%)</title><rect x="50.6655%" y="773" width="0.0267%" height="15" fill="rgb(212,194,50)" fg:x="73965" fg:w="39"/><text x="50.9155%" y="783.50"></text></g><g><title>__schedule (39 samples, 0.03%)</title><rect x="50.6655%" y="757" width="0.0267%" height="15" fill="rgb(246,132,1)" fg:x="73965" fg:w="39"/><text x="50.9155%" y="767.50"></text></g><g><title>[perf-627991.map] (101 samples, 0.07%)</title><rect x="50.6237%" y="965" width="0.0692%" height="15" fill="rgb(217,71,7)" fg:x="73904" fg:w="101"/><text x="50.8737%" y="975.50"></text></g><g><title>schedule_tail (25 samples, 0.02%)</title><rect x="50.6942%" y="933" width="0.0171%" height="15" fill="rgb(252,59,32)" fg:x="74007" fg:w="25"/><text x="50.9442%" y="943.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="50.6949%" y="917" width="0.0164%" height="15" fill="rgb(253,204,25)" fg:x="74008" fg:w="24"/><text x="50.9449%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.02%)</title><rect x="50.6949%" y="901" width="0.0164%" height="15" fill="rgb(232,21,16)" fg:x="74008" fg:w="24"/><text x="50.9449%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.02%)</title><rect x="50.6949%" y="885" width="0.0164%" height="15" fill="rgb(248,90,29)" fg:x="74008" fg:w="24"/><text x="50.9449%" y="895.50"></text></g><g><title>native_write_msr (24 samples, 0.02%)</title><rect x="50.6949%" y="869" width="0.0164%" height="15" fill="rgb(249,223,7)" fg:x="74008" fg:w="24"/><text x="50.9449%" y="879.50"></text></g><g><title>ret_from_fork (26 samples, 0.02%)</title><rect x="50.6942%" y="949" width="0.0178%" height="15" fill="rgb(231,119,42)" fg:x="74007" fg:w="26"/><text x="50.9442%" y="959.50"></text></g><g><title>globbing_pool-5 (144 samples, 0.10%)</title><rect x="50.6182%" y="981" width="0.0986%" height="15" fill="rgb(215,41,35)" fg:x="73896" fg:w="144"/><text x="50.8682%" y="991.50"></text></g><g><title>__GI___clone (35 samples, 0.02%)</title><rect x="50.6929%" y="965" width="0.0240%" height="15" fill="rgb(220,44,45)" fg:x="74005" fg:w="35"/><text x="50.9429%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="50.7347%" y="725" width="0.0130%" height="15" fill="rgb(253,197,36)" fg:x="74066" fg:w="19"/><text x="50.9847%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="50.7353%" y="709" width="0.0123%" height="15" fill="rgb(245,225,54)" fg:x="74067" fg:w="18"/><text x="50.9853%" y="719.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="50.7353%" y="693" width="0.0123%" height="15" fill="rgb(239,94,37)" fg:x="74067" fg:w="18"/><text x="50.9853%" y="703.50"></text></g><g><title>do_syscall_64 (24 samples, 0.02%)</title><rect x="50.7326%" y="853" width="0.0164%" height="15" fill="rgb(242,217,10)" fg:x="74063" fg:w="24"/><text x="50.9826%" y="863.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="50.7333%" y="837" width="0.0158%" height="15" fill="rgb(250,193,7)" fg:x="74064" fg:w="23"/><text x="50.9833%" y="847.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="50.7333%" y="821" width="0.0158%" height="15" fill="rgb(230,104,19)" fg:x="74064" fg:w="23"/><text x="50.9833%" y="831.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="50.7333%" y="805" width="0.0158%" height="15" fill="rgb(230,181,4)" fg:x="74064" fg:w="23"/><text x="50.9833%" y="815.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="50.7333%" y="789" width="0.0158%" height="15" fill="rgb(216,219,49)" fg:x="74064" fg:w="23"/><text x="50.9833%" y="799.50"></text></g><g><title>schedule (23 samples, 0.02%)</title><rect x="50.7333%" y="773" width="0.0158%" height="15" fill="rgb(254,144,0)" fg:x="74064" fg:w="23"/><text x="50.9833%" y="783.50"></text></g><g><title>__schedule (23 samples, 0.02%)</title><rect x="50.7333%" y="757" width="0.0158%" height="15" fill="rgb(205,209,38)" fg:x="74064" fg:w="23"/><text x="50.9833%" y="767.50"></text></g><g><title>finish_task_switch (22 samples, 0.02%)</title><rect x="50.7340%" y="741" width="0.0151%" height="15" fill="rgb(240,21,42)" fg:x="74065" fg:w="22"/><text x="50.9840%" y="751.50"></text></g><g><title>Unsafe_Park (33 samples, 0.02%)</title><rect x="50.7271%" y="949" width="0.0226%" height="15" fill="rgb(241,132,3)" fg:x="74055" fg:w="33"/><text x="50.9771%" y="959.50"></text></g><g><title>Parker::park (33 samples, 0.02%)</title><rect x="50.7271%" y="933" width="0.0226%" height="15" fill="rgb(225,14,2)" fg:x="74055" fg:w="33"/><text x="50.9771%" y="943.50"></text></g><g><title>__pthread_cond_wait (25 samples, 0.02%)</title><rect x="50.7326%" y="917" width="0.0171%" height="15" fill="rgb(210,141,35)" fg:x="74063" fg:w="25"/><text x="50.9826%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (25 samples, 0.02%)</title><rect x="50.7326%" y="901" width="0.0171%" height="15" fill="rgb(251,14,44)" fg:x="74063" fg:w="25"/><text x="50.9826%" y="911.50"></text></g><g><title>futex_wait_cancelable (25 samples, 0.02%)</title><rect x="50.7326%" y="885" width="0.0171%" height="15" fill="rgb(247,48,18)" fg:x="74063" fg:w="25"/><text x="50.9826%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="50.7326%" y="869" width="0.0171%" height="15" fill="rgb(225,0,40)" fg:x="74063" fg:w="25"/><text x="50.9826%" y="879.50"></text></g><g><title>[perf-627991.map] (50 samples, 0.03%)</title><rect x="50.7168%" y="965" width="0.0342%" height="15" fill="rgb(221,31,33)" fg:x="74040" fg:w="50"/><text x="50.9668%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.03%)</title><rect x="50.7525%" y="965" width="0.0336%" height="15" fill="rgb(237,42,40)" fg:x="74092" fg:w="49"/><text x="51.0025%" y="975.50"></text></g><g><title>syscall_exit_to_user_mode (49 samples, 0.03%)</title><rect x="50.7525%" y="949" width="0.0336%" height="15" fill="rgb(233,51,29)" fg:x="74092" fg:w="49"/><text x="51.0025%" y="959.50"></text></g><g><title>exit_to_user_mode_prepare (49 samples, 0.03%)</title><rect x="50.7525%" y="933" width="0.0336%" height="15" fill="rgb(226,58,20)" fg:x="74092" fg:w="49"/><text x="51.0025%" y="943.50"></text></g><g><title>arch_do_signal (49 samples, 0.03%)</title><rect x="50.7525%" y="917" width="0.0336%" height="15" fill="rgb(208,98,7)" fg:x="74092" fg:w="49"/><text x="51.0025%" y="927.50"></text></g><g><title>get_signal (49 samples, 0.03%)</title><rect x="50.7525%" y="901" width="0.0336%" height="15" fill="rgb(228,143,44)" fg:x="74092" fg:w="49"/><text x="51.0025%" y="911.50"></text></g><g><title>do_group_exit (49 samples, 0.03%)</title><rect x="50.7525%" y="885" width="0.0336%" height="15" fill="rgb(246,55,38)" fg:x="74092" fg:w="49"/><text x="51.0025%" y="895.50"></text></g><g><title>do_exit (49 samples, 0.03%)</title><rect x="50.7525%" y="869" width="0.0336%" height="15" fill="rgb(247,87,16)" fg:x="74092" fg:w="49"/><text x="51.0025%" y="879.50"></text></g><g><title>mmput (49 samples, 0.03%)</title><rect x="50.7525%" y="853" width="0.0336%" height="15" fill="rgb(234,129,42)" fg:x="74092" fg:w="49"/><text x="51.0025%" y="863.50"></text></g><g><title>exit_mmap (49 samples, 0.03%)</title><rect x="50.7525%" y="837" width="0.0336%" height="15" fill="rgb(220,82,16)" fg:x="74092" fg:w="49"/><text x="51.0025%" y="847.50"></text></g><g><title>unmap_vmas (48 samples, 0.03%)</title><rect x="50.7531%" y="821" width="0.0329%" height="15" fill="rgb(211,88,4)" fg:x="74093" fg:w="48"/><text x="51.0031%" y="831.50"></text></g><g><title>unmap_page_range (48 samples, 0.03%)</title><rect x="50.7531%" y="805" width="0.0329%" height="15" fill="rgb(248,151,21)" fg:x="74093" fg:w="48"/><text x="51.0031%" y="815.50"></text></g><g><title>tlb_flush_mmu (30 samples, 0.02%)</title><rect x="50.7655%" y="789" width="0.0205%" height="15" fill="rgb(238,163,6)" fg:x="74111" fg:w="30"/><text x="51.0155%" y="799.50"></text></g><g><title>release_pages (29 samples, 0.02%)</title><rect x="50.7662%" y="773" width="0.0199%" height="15" fill="rgb(209,183,11)" fg:x="74112" fg:w="29"/><text x="51.0162%" y="783.50"></text></g><g><title>globbing_pool-6 (102 samples, 0.07%)</title><rect x="50.7168%" y="981" width="0.0699%" height="15" fill="rgb(219,37,20)" fg:x="74040" fg:w="102"/><text x="50.9668%" y="991.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="50.8230%" y="837" width="0.0192%" height="15" fill="rgb(210,158,4)" fg:x="74195" fg:w="28"/><text x="51.0730%" y="847.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="50.8230%" y="821" width="0.0192%" height="15" fill="rgb(221,167,53)" fg:x="74195" fg:w="28"/><text x="51.0730%" y="831.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.02%)</title><rect x="50.8230%" y="805" width="0.0192%" height="15" fill="rgb(237,151,45)" fg:x="74195" fg:w="28"/><text x="51.0730%" y="815.50"></text></g><g><title>do_futex (28 samples, 0.02%)</title><rect x="50.8230%" y="789" width="0.0192%" height="15" fill="rgb(231,39,3)" fg:x="74195" fg:w="28"/><text x="51.0730%" y="799.50"></text></g><g><title>futex_wait (28 samples, 0.02%)</title><rect x="50.8230%" y="773" width="0.0192%" height="15" fill="rgb(212,167,28)" fg:x="74195" fg:w="28"/><text x="51.0730%" y="783.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.02%)</title><rect x="50.8230%" y="757" width="0.0192%" height="15" fill="rgb(232,178,8)" fg:x="74195" fg:w="28"/><text x="51.0730%" y="767.50"></text></g><g><title>schedule (28 samples, 0.02%)</title><rect x="50.8230%" y="741" width="0.0192%" height="15" fill="rgb(225,151,20)" fg:x="74195" fg:w="28"/><text x="51.0730%" y="751.50"></text></g><g><title>__schedule (28 samples, 0.02%)</title><rect x="50.8230%" y="725" width="0.0192%" height="15" fill="rgb(238,3,37)" fg:x="74195" fg:w="28"/><text x="51.0730%" y="735.50"></text></g><g><title>finish_task_switch (28 samples, 0.02%)</title><rect x="50.8230%" y="709" width="0.0192%" height="15" fill="rgb(251,147,42)" fg:x="74195" fg:w="28"/><text x="51.0730%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.02%)</title><rect x="50.8230%" y="693" width="0.0192%" height="15" fill="rgb(208,173,10)" fg:x="74195" fg:w="28"/><text x="51.0730%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.02%)</title><rect x="50.8237%" y="677" width="0.0185%" height="15" fill="rgb(246,225,4)" fg:x="74196" fg:w="27"/><text x="51.0737%" y="687.50"></text></g><g><title>native_write_msr (27 samples, 0.02%)</title><rect x="50.8237%" y="661" width="0.0185%" height="15" fill="rgb(248,102,6)" fg:x="74196" fg:w="27"/><text x="51.0737%" y="671.50"></text></g><g><title>Monitor::lock (29 samples, 0.02%)</title><rect x="50.8230%" y="933" width="0.0199%" height="15" fill="rgb(232,6,21)" fg:x="74195" fg:w="29"/><text x="51.0730%" y="943.50"></text></g><g><title>Monitor::ILock (29 samples, 0.02%)</title><rect x="50.8230%" y="917" width="0.0199%" height="15" fill="rgb(221,179,22)" fg:x="74195" fg:w="29"/><text x="51.0730%" y="927.50"></text></g><g><title>os::PlatformEvent::park (29 samples, 0.02%)</title><rect x="50.8230%" y="901" width="0.0199%" height="15" fill="rgb(252,50,20)" fg:x="74195" fg:w="29"/><text x="51.0730%" y="911.50"></text></g><g><title>__pthread_cond_wait (29 samples, 0.02%)</title><rect x="50.8230%" y="885" width="0.0199%" height="15" fill="rgb(222,56,38)" fg:x="74195" fg:w="29"/><text x="51.0730%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (29 samples, 0.02%)</title><rect x="50.8230%" y="869" width="0.0199%" height="15" fill="rgb(206,193,29)" fg:x="74195" fg:w="29"/><text x="51.0730%" y="879.50"></text></g><g><title>futex_wait_cancelable (29 samples, 0.02%)</title><rect x="50.8230%" y="853" width="0.0199%" height="15" fill="rgb(239,192,45)" fg:x="74195" fg:w="29"/><text x="51.0730%" y="863.50"></text></g><g><title>JVM_StartThread (45 samples, 0.03%)</title><rect x="50.8196%" y="949" width="0.0308%" height="15" fill="rgb(254,18,36)" fg:x="74190" fg:w="45"/><text x="51.0696%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (52 samples, 0.04%)</title><rect x="50.8532%" y="725" width="0.0356%" height="15" fill="rgb(221,127,11)" fg:x="74239" fg:w="52"/><text x="51.1032%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.03%)</title><rect x="50.8545%" y="709" width="0.0342%" height="15" fill="rgb(234,146,35)" fg:x="74241" fg:w="50"/><text x="51.1045%" y="719.50"></text></g><g><title>native_write_msr (49 samples, 0.03%)</title><rect x="50.8552%" y="693" width="0.0336%" height="15" fill="rgb(254,201,37)" fg:x="74242" fg:w="49"/><text x="51.1052%" y="703.50"></text></g><g><title>finish_task_switch (55 samples, 0.04%)</title><rect x="50.8532%" y="741" width="0.0377%" height="15" fill="rgb(211,202,23)" fg:x="74239" fg:w="55"/><text x="51.1032%" y="751.50"></text></g><g><title>__pthread_cond_wait (60 samples, 0.04%)</title><rect x="50.8504%" y="917" width="0.0411%" height="15" fill="rgb(237,91,2)" fg:x="74235" fg:w="60"/><text x="51.1004%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (60 samples, 0.04%)</title><rect x="50.8504%" y="901" width="0.0411%" height="15" fill="rgb(226,228,36)" fg:x="74235" fg:w="60"/><text x="51.1004%" y="911.50"></text></g><g><title>futex_wait_cancelable (59 samples, 0.04%)</title><rect x="50.8511%" y="885" width="0.0404%" height="15" fill="rgb(213,63,50)" fg:x="74236" fg:w="59"/><text x="51.1011%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.04%)</title><rect x="50.8511%" y="869" width="0.0404%" height="15" fill="rgb(235,194,19)" fg:x="74236" fg:w="59"/><text x="51.1011%" y="879.50"></text></g><g><title>do_syscall_64 (59 samples, 0.04%)</title><rect x="50.8511%" y="853" width="0.0404%" height="15" fill="rgb(207,204,18)" fg:x="74236" fg:w="59"/><text x="51.1011%" y="863.50"></text></g><g><title>__x64_sys_futex (59 samples, 0.04%)</title><rect x="50.8511%" y="837" width="0.0404%" height="15" fill="rgb(248,8,7)" fg:x="74236" fg:w="59"/><text x="51.1011%" y="847.50"></text></g><g><title>do_futex (59 samples, 0.04%)</title><rect x="50.8511%" y="821" width="0.0404%" height="15" fill="rgb(223,145,47)" fg:x="74236" fg:w="59"/><text x="51.1011%" y="831.50"></text></g><g><title>futex_wait (59 samples, 0.04%)</title><rect x="50.8511%" y="805" width="0.0404%" height="15" fill="rgb(228,84,11)" fg:x="74236" fg:w="59"/><text x="51.1011%" y="815.50"></text></g><g><title>futex_wait_queue_me (59 samples, 0.04%)</title><rect x="50.8511%" y="789" width="0.0404%" height="15" fill="rgb(218,76,45)" fg:x="74236" fg:w="59"/><text x="51.1011%" y="799.50"></text></g><g><title>schedule (58 samples, 0.04%)</title><rect x="50.8518%" y="773" width="0.0397%" height="15" fill="rgb(223,80,15)" fg:x="74237" fg:w="58"/><text x="51.1018%" y="783.50"></text></g><g><title>__schedule (57 samples, 0.04%)</title><rect x="50.8525%" y="757" width="0.0390%" height="15" fill="rgb(219,218,33)" fg:x="74238" fg:w="57"/><text x="51.1025%" y="767.50"></text></g><g><title>Unsafe_Park (61 samples, 0.04%)</title><rect x="50.8504%" y="949" width="0.0418%" height="15" fill="rgb(208,51,11)" fg:x="74235" fg:w="61"/><text x="51.1004%" y="959.50"></text></g><g><title>Parker::park (61 samples, 0.04%)</title><rect x="50.8504%" y="933" width="0.0418%" height="15" fill="rgb(229,165,39)" fg:x="74235" fg:w="61"/><text x="51.1004%" y="943.50"></text></g><g><title>[perf-627991.map] (146 samples, 0.10%)</title><rect x="50.7936%" y="965" width="0.1000%" height="15" fill="rgb(241,100,24)" fg:x="74152" fg:w="146"/><text x="51.0436%" y="975.50"></text></g><g><title>__GI___clone (37 samples, 0.03%)</title><rect x="50.8943%" y="965" width="0.0253%" height="15" fill="rgb(228,14,23)" fg:x="74299" fg:w="37"/><text x="51.1443%" y="975.50"></text></g><g><title>start_thread (21 samples, 0.01%)</title><rect x="50.9052%" y="949" width="0.0144%" height="15" fill="rgb(247,116,52)" fg:x="74315" fg:w="21"/><text x="51.1552%" y="959.50"></text></g><g><title>thread_native_entry (21 samples, 0.01%)</title><rect x="50.9052%" y="933" width="0.0144%" height="15" fill="rgb(216,149,33)" fg:x="74315" fg:w="21"/><text x="51.1552%" y="943.50"></text></g><g><title>globbing_pool-7 (195 samples, 0.13%)</title><rect x="50.7867%" y="981" width="0.1336%" height="15" fill="rgb(238,142,29)" fg:x="74142" fg:w="195"/><text x="51.0367%" y="991.50"></text></g><g><title>Monitor::wait (15 samples, 0.01%)</title><rect x="50.9682%" y="917" width="0.0103%" height="15" fill="rgb(224,83,40)" fg:x="74407" fg:w="15"/><text x="51.2182%" y="927.50"></text></g><g><title>Monitor::IWait (15 samples, 0.01%)</title><rect x="50.9682%" y="901" width="0.0103%" height="15" fill="rgb(234,165,11)" fg:x="74407" fg:w="15"/><text x="51.2182%" y="911.50"></text></g><g><title>os::PlatformEvent::park (15 samples, 0.01%)</title><rect x="50.9682%" y="885" width="0.0103%" height="15" fill="rgb(215,96,23)" fg:x="74407" fg:w="15"/><text x="51.2182%" y="895.50"></text></g><g><title>os::create_thread (16 samples, 0.01%)</title><rect x="50.9682%" y="933" width="0.0110%" height="15" fill="rgb(233,179,26)" fg:x="74407" fg:w="16"/><text x="51.2182%" y="943.50"></text></g><g><title>JVM_StartThread (30 samples, 0.02%)</title><rect x="50.9593%" y="949" width="0.0205%" height="15" fill="rgb(225,129,33)" fg:x="74394" fg:w="30"/><text x="51.2093%" y="959.50"></text></g><g><title>__pthread_cond_wait (22 samples, 0.02%)</title><rect x="50.9874%" y="853" width="0.0151%" height="15" fill="rgb(237,49,13)" fg:x="74435" fg:w="22"/><text x="51.2374%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (22 samples, 0.02%)</title><rect x="50.9874%" y="837" width="0.0151%" height="15" fill="rgb(211,3,31)" fg:x="74435" fg:w="22"/><text x="51.2374%" y="847.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.02%)</title><rect x="50.9874%" y="821" width="0.0151%" height="15" fill="rgb(216,152,19)" fg:x="74435" fg:w="22"/><text x="51.2374%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="50.9881%" y="805" width="0.0144%" height="15" fill="rgb(251,121,35)" fg:x="74436" fg:w="21"/><text x="51.2381%" y="815.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="50.9881%" y="789" width="0.0144%" height="15" fill="rgb(210,217,47)" fg:x="74436" fg:w="21"/><text x="51.2381%" y="799.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.01%)</title><rect x="50.9881%" y="773" width="0.0144%" height="15" fill="rgb(244,116,22)" fg:x="74436" fg:w="21"/><text x="51.2381%" y="783.50"></text></g><g><title>do_futex (21 samples, 0.01%)</title><rect x="50.9881%" y="757" width="0.0144%" height="15" fill="rgb(228,17,21)" fg:x="74436" fg:w="21"/><text x="51.2381%" y="767.50"></text></g><g><title>futex_wait (21 samples, 0.01%)</title><rect x="50.9881%" y="741" width="0.0144%" height="15" fill="rgb(240,149,34)" fg:x="74436" fg:w="21"/><text x="51.2381%" y="751.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.01%)</title><rect x="50.9881%" y="725" width="0.0144%" height="15" fill="rgb(208,125,47)" fg:x="74436" fg:w="21"/><text x="51.2381%" y="735.50"></text></g><g><title>schedule (21 samples, 0.01%)</title><rect x="50.9881%" y="709" width="0.0144%" height="15" fill="rgb(249,186,39)" fg:x="74436" fg:w="21"/><text x="51.2381%" y="719.50"></text></g><g><title>__schedule (21 samples, 0.01%)</title><rect x="50.9881%" y="693" width="0.0144%" height="15" fill="rgb(240,220,33)" fg:x="74436" fg:w="21"/><text x="51.2381%" y="703.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="50.9881%" y="677" width="0.0144%" height="15" fill="rgb(243,110,23)" fg:x="74436" fg:w="21"/><text x="51.2381%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="50.9888%" y="661" width="0.0137%" height="15" fill="rgb(219,163,46)" fg:x="74437" fg:w="20"/><text x="51.2388%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="50.9888%" y="645" width="0.0137%" height="15" fill="rgb(216,126,30)" fg:x="74437" fg:w="20"/><text x="51.2388%" y="655.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="50.9888%" y="629" width="0.0137%" height="15" fill="rgb(208,139,11)" fg:x="74437" fg:w="20"/><text x="51.2388%" y="639.50"></text></g><g><title>Monitor::lock_without_safepoint_check (23 samples, 0.02%)</title><rect x="50.9874%" y="901" width="0.0158%" height="15" fill="rgb(213,118,36)" fg:x="74435" fg:w="23"/><text x="51.2374%" y="911.50"></text></g><g><title>Monitor::ILock (23 samples, 0.02%)</title><rect x="50.9874%" y="885" width="0.0158%" height="15" fill="rgb(226,43,17)" fg:x="74435" fg:w="23"/><text x="51.2374%" y="895.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.02%)</title><rect x="50.9874%" y="869" width="0.0158%" height="15" fill="rgb(254,217,4)" fg:x="74435" fg:w="23"/><text x="51.2374%" y="879.50"></text></g><g><title>SafepointSynchronize::block (24 samples, 0.02%)</title><rect x="50.9874%" y="917" width="0.0164%" height="15" fill="rgb(210,134,47)" fg:x="74435" fg:w="24"/><text x="51.2374%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (60 samples, 0.04%)</title><rect x="51.0080%" y="725" width="0.0411%" height="15" fill="rgb(237,24,49)" fg:x="74465" fg:w="60"/><text x="51.2580%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (60 samples, 0.04%)</title><rect x="51.0080%" y="709" width="0.0411%" height="15" fill="rgb(251,39,46)" fg:x="74465" fg:w="60"/><text x="51.2580%" y="719.50"></text></g><g><title>native_write_msr (60 samples, 0.04%)</title><rect x="51.0080%" y="693" width="0.0411%" height="15" fill="rgb(251,220,3)" fg:x="74465" fg:w="60"/><text x="51.2580%" y="703.50"></text></g><g><title>do_syscall_64 (66 samples, 0.05%)</title><rect x="51.0052%" y="853" width="0.0452%" height="15" fill="rgb(228,105,12)" fg:x="74461" fg:w="66"/><text x="51.2552%" y="863.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.04%)</title><rect x="51.0059%" y="837" width="0.0445%" height="15" fill="rgb(215,196,1)" fg:x="74462" fg:w="65"/><text x="51.2559%" y="847.50"></text></g><g><title>do_futex (65 samples, 0.04%)</title><rect x="51.0059%" y="821" width="0.0445%" height="15" fill="rgb(214,33,39)" fg:x="74462" fg:w="65"/><text x="51.2559%" y="831.50"></text></g><g><title>futex_wait (65 samples, 0.04%)</title><rect x="51.0059%" y="805" width="0.0445%" height="15" fill="rgb(220,19,52)" fg:x="74462" fg:w="65"/><text x="51.2559%" y="815.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.04%)</title><rect x="51.0066%" y="789" width="0.0438%" height="15" fill="rgb(221,78,38)" fg:x="74463" fg:w="64"/><text x="51.2566%" y="799.50"></text></g><g><title>schedule (63 samples, 0.04%)</title><rect x="51.0073%" y="773" width="0.0432%" height="15" fill="rgb(253,30,16)" fg:x="74464" fg:w="63"/><text x="51.2573%" y="783.50"></text></g><g><title>__schedule (63 samples, 0.04%)</title><rect x="51.0073%" y="757" width="0.0432%" height="15" fill="rgb(242,65,0)" fg:x="74464" fg:w="63"/><text x="51.2573%" y="767.50"></text></g><g><title>finish_task_switch (62 samples, 0.04%)</title><rect x="51.0080%" y="741" width="0.0425%" height="15" fill="rgb(235,201,12)" fg:x="74465" fg:w="62"/><text x="51.2580%" y="751.50"></text></g><g><title>__pthread_cond_wait (72 samples, 0.05%)</title><rect x="51.0039%" y="917" width="0.0493%" height="15" fill="rgb(233,161,9)" fg:x="74459" fg:w="72"/><text x="51.2539%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (72 samples, 0.05%)</title><rect x="51.0039%" y="901" width="0.0493%" height="15" fill="rgb(241,207,41)" fg:x="74459" fg:w="72"/><text x="51.2539%" y="911.50"></text></g><g><title>futex_wait_cancelable (72 samples, 0.05%)</title><rect x="51.0039%" y="885" width="0.0493%" height="15" fill="rgb(212,69,46)" fg:x="74459" fg:w="72"/><text x="51.2539%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.05%)</title><rect x="51.0052%" y="869" width="0.0479%" height="15" fill="rgb(239,69,45)" fg:x="74461" fg:w="70"/><text x="51.2552%" y="879.50"></text></g><g><title>Unsafe_Park (99 samples, 0.07%)</title><rect x="50.9867%" y="949" width="0.0678%" height="15" fill="rgb(242,117,48)" fg:x="74434" fg:w="99"/><text x="51.2367%" y="959.50"></text></g><g><title>Parker::park (98 samples, 0.07%)</title><rect x="50.9874%" y="933" width="0.0671%" height="15" fill="rgb(228,41,36)" fg:x="74435" fg:w="98"/><text x="51.2374%" y="943.50"></text></g><g><title>SafepointSynchronize::block (16 samples, 0.01%)</title><rect x="51.0545%" y="933" width="0.0110%" height="15" fill="rgb(212,3,32)" fg:x="74533" fg:w="16"/><text x="51.3045%" y="943.50"></text></g><g><title>Unsafe_Unpark (20 samples, 0.01%)</title><rect x="51.0545%" y="949" width="0.0137%" height="15" fill="rgb(233,41,49)" fg:x="74533" fg:w="20"/><text x="51.3045%" y="959.50"></text></g><g><title>[perf-627991.map] (211 samples, 0.14%)</title><rect x="50.9251%" y="965" width="0.1445%" height="15" fill="rgb(252,170,49)" fg:x="74344" fg:w="211"/><text x="51.1751%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (18 samples, 0.01%)</title><rect x="51.0744%" y="901" width="0.0123%" height="15" fill="rgb(229,53,26)" fg:x="74562" fg:w="18"/><text x="51.3244%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.01%)</title><rect x="51.0744%" y="885" width="0.0123%" height="15" fill="rgb(217,157,12)" fg:x="74562" fg:w="18"/><text x="51.3244%" y="895.50"></text></g><g><title>native_write_msr (18 samples, 0.01%)</title><rect x="51.0744%" y="869" width="0.0123%" height="15" fill="rgb(227,17,9)" fg:x="74562" fg:w="18"/><text x="51.3244%" y="879.50"></text></g><g><title>ret_from_fork (22 samples, 0.02%)</title><rect x="51.0724%" y="949" width="0.0151%" height="15" fill="rgb(218,84,12)" fg:x="74559" fg:w="22"/><text x="51.3224%" y="959.50"></text></g><g><title>schedule_tail (21 samples, 0.01%)</title><rect x="51.0730%" y="933" width="0.0144%" height="15" fill="rgb(212,79,24)" fg:x="74560" fg:w="21"/><text x="51.3230%" y="943.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="51.0730%" y="917" width="0.0144%" height="15" fill="rgb(217,222,37)" fg:x="74560" fg:w="21"/><text x="51.3230%" y="927.50"></text></g><g><title>globbing_pool-8 (256 samples, 0.18%)</title><rect x="50.9203%" y="981" width="0.1754%" height="15" fill="rgb(246,208,8)" fg:x="74337" fg:w="256"/><text x="51.1703%" y="991.50"></text></g><g><title>__GI___clone (37 samples, 0.03%)</title><rect x="51.0703%" y="965" width="0.0253%" height="15" fill="rgb(244,133,10)" fg:x="74556" fg:w="37"/><text x="51.3203%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="51.1429%" y="725" width="0.0247%" height="15" fill="rgb(209,219,41)" fg:x="74662" fg:w="36"/><text x="51.3929%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="51.1429%" y="709" width="0.0247%" height="15" fill="rgb(253,175,45)" fg:x="74662" fg:w="36"/><text x="51.3929%" y="719.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="51.1429%" y="693" width="0.0247%" height="15" fill="rgb(235,100,37)" fg:x="74662" fg:w="36"/><text x="51.3929%" y="703.50"></text></g><g><title>do_syscall_64 (40 samples, 0.03%)</title><rect x="51.1415%" y="853" width="0.0274%" height="15" fill="rgb(225,87,19)" fg:x="74660" fg:w="40"/><text x="51.3915%" y="863.50"></text></g><g><title>__x64_sys_futex (40 samples, 0.03%)</title><rect x="51.1415%" y="837" width="0.0274%" height="15" fill="rgb(217,152,17)" fg:x="74660" fg:w="40"/><text x="51.3915%" y="847.50"></text></g><g><title>do_futex (40 samples, 0.03%)</title><rect x="51.1415%" y="821" width="0.0274%" height="15" fill="rgb(235,72,13)" fg:x="74660" fg:w="40"/><text x="51.3915%" y="831.50"></text></g><g><title>futex_wait (40 samples, 0.03%)</title><rect x="51.1415%" y="805" width="0.0274%" height="15" fill="rgb(233,140,18)" fg:x="74660" fg:w="40"/><text x="51.3915%" y="815.50"></text></g><g><title>futex_wait_queue_me (40 samples, 0.03%)</title><rect x="51.1415%" y="789" width="0.0274%" height="15" fill="rgb(207,212,28)" fg:x="74660" fg:w="40"/><text x="51.3915%" y="799.50"></text></g><g><title>schedule (39 samples, 0.03%)</title><rect x="51.1422%" y="773" width="0.0267%" height="15" fill="rgb(220,130,25)" fg:x="74661" fg:w="39"/><text x="51.3922%" y="783.50"></text></g><g><title>__schedule (39 samples, 0.03%)</title><rect x="51.1422%" y="757" width="0.0267%" height="15" fill="rgb(205,55,34)" fg:x="74661" fg:w="39"/><text x="51.3922%" y="767.50"></text></g><g><title>finish_task_switch (39 samples, 0.03%)</title><rect x="51.1422%" y="741" width="0.0267%" height="15" fill="rgb(237,54,35)" fg:x="74661" fg:w="39"/><text x="51.3922%" y="751.50"></text></g><g><title>__pthread_cond_wait (41 samples, 0.03%)</title><rect x="51.1415%" y="917" width="0.0281%" height="15" fill="rgb(208,67,23)" fg:x="74660" fg:w="41"/><text x="51.3915%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (41 samples, 0.03%)</title><rect x="51.1415%" y="901" width="0.0281%" height="15" fill="rgb(206,207,50)" fg:x="74660" fg:w="41"/><text x="51.3915%" y="911.50"></text></g><g><title>futex_wait_cancelable (41 samples, 0.03%)</title><rect x="51.1415%" y="885" width="0.0281%" height="15" fill="rgb(213,211,42)" fg:x="74660" fg:w="41"/><text x="51.3915%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.03%)</title><rect x="51.1415%" y="869" width="0.0281%" height="15" fill="rgb(252,197,50)" fg:x="74660" fg:w="41"/><text x="51.3915%" y="879.50"></text></g><g><title>Unsafe_Park (50 samples, 0.03%)</title><rect x="51.1361%" y="949" width="0.0342%" height="15" fill="rgb(251,211,41)" fg:x="74652" fg:w="50"/><text x="51.3861%" y="959.50"></text></g><g><title>Parker::park (50 samples, 0.03%)</title><rect x="51.1361%" y="933" width="0.0342%" height="15" fill="rgb(229,211,5)" fg:x="74652" fg:w="50"/><text x="51.3861%" y="943.50"></text></g><g><title>[perf-627991.map] (106 samples, 0.07%)</title><rect x="51.1004%" y="965" width="0.0726%" height="15" fill="rgb(239,36,31)" fg:x="74600" fg:w="106"/><text x="51.3504%" y="975.50"></text></g><g><title>ret_from_fork (15 samples, 0.01%)</title><rect x="51.1737%" y="949" width="0.0103%" height="15" fill="rgb(248,67,31)" fg:x="74707" fg:w="15"/><text x="51.4237%" y="959.50"></text></g><g><title>__GI___clone (24 samples, 0.02%)</title><rect x="51.1737%" y="965" width="0.0164%" height="15" fill="rgb(249,55,44)" fg:x="74707" fg:w="24"/><text x="51.4237%" y="975.50"></text></g><g><title>globbing_pool-9 (140 samples, 0.10%)</title><rect x="51.0956%" y="981" width="0.0959%" height="15" fill="rgb(216,82,12)" fg:x="74593" fg:w="140"/><text x="51.3456%" y="991.50"></text></g><g><title>_dl_update_slotinfo (17 samples, 0.01%)</title><rect x="51.3347%" y="949" width="0.0116%" height="15" fill="rgb(242,174,1)" fg:x="74942" fg:w="17"/><text x="51.5847%" y="959.50"></text></g><g><title>[anon] (264 samples, 0.18%)</title><rect x="51.2004%" y="965" width="0.1808%" height="15" fill="rgb(208,120,29)" fg:x="74746" fg:w="264"/><text x="51.4504%" y="975.50"></text></g><g><title>[libunix_jni.so] (21 samples, 0.01%)</title><rect x="51.3813%" y="965" width="0.0144%" height="15" fill="rgb(221,105,43)" fg:x="75010" fg:w="21"/><text x="51.6313%" y="975.50"></text></g><g><title>ClassFileParser::parse_constant_pool (43 samples, 0.03%)</title><rect x="52.8828%" y="805" width="0.0295%" height="15" fill="rgb(234,124,22)" fg:x="77202" fg:w="43"/><text x="53.1328%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (42 samples, 0.03%)</title><rect x="52.8835%" y="789" width="0.0288%" height="15" fill="rgb(212,23,30)" fg:x="77203" fg:w="42"/><text x="53.1335%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (37 samples, 0.03%)</title><rect x="52.8869%" y="773" width="0.0253%" height="15" fill="rgb(219,122,53)" fg:x="77208" fg:w="37"/><text x="53.1369%" y="783.50"></text></g><g><title>ClassFileParser::ClassFileParser (67 samples, 0.05%)</title><rect x="52.8821%" y="837" width="0.0459%" height="15" fill="rgb(248,84,24)" fg:x="77201" fg:w="67"/><text x="53.1321%" y="847.50"></text></g><g><title>ClassFileParser::parse_stream (67 samples, 0.05%)</title><rect x="52.8821%" y="821" width="0.0459%" height="15" fill="rgb(245,115,18)" fg:x="77201" fg:w="67"/><text x="53.1321%" y="831.50"></text></g><g><title>ClassFileParser::fill_instance_klass (15 samples, 0.01%)</title><rect x="52.9280%" y="821" width="0.0103%" height="15" fill="rgb(227,176,51)" fg:x="77268" fg:w="15"/><text x="53.1780%" y="831.50"></text></g><g><title>ClassFileParser::create_instance_klass (16 samples, 0.01%)</title><rect x="52.9280%" y="837" width="0.0110%" height="15" fill="rgb(229,63,42)" fg:x="77268" fg:w="16"/><text x="53.1780%" y="847.50"></text></g><g><title>SystemDictionary::resolve_super_or_fail (17 samples, 0.01%)</title><rect x="52.9417%" y="821" width="0.0116%" height="15" fill="rgb(247,202,24)" fg:x="77288" fg:w="17"/><text x="53.1917%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (16 samples, 0.01%)</title><rect x="52.9424%" y="805" width="0.0110%" height="15" fill="rgb(244,173,20)" fg:x="77289" fg:w="16"/><text x="53.1924%" y="815.50"></text></g><g><title>ClassLoader::load_class (115 samples, 0.08%)</title><rect x="52.8759%" y="869" width="0.0788%" height="15" fill="rgb(242,81,47)" fg:x="77192" fg:w="115"/><text x="53.1259%" y="879.50"></text></g><g><title>KlassFactory::create_from_stream (107 samples, 0.07%)</title><rect x="52.8814%" y="853" width="0.0733%" height="15" fill="rgb(231,185,54)" fg:x="77200" fg:w="107"/><text x="53.1314%" y="863.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (23 samples, 0.02%)</title><rect x="52.9390%" y="837" width="0.0158%" height="15" fill="rgb(243,55,32)" fg:x="77284" fg:w="23"/><text x="53.1890%" y="847.50"></text></g><g><title>SystemDictionary::load_instance_class (134 samples, 0.09%)</title><rect x="52.8759%" y="885" width="0.0918%" height="15" fill="rgb(208,167,19)" fg:x="77192" fg:w="134"/><text x="53.1259%" y="895.50"></text></g><g><title>ConstantPool::klass_at_impl (150 samples, 0.10%)</title><rect x="52.8657%" y="933" width="0.1027%" height="15" fill="rgb(231,72,35)" fg:x="77177" fg:w="150"/><text x="53.1157%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_fail (148 samples, 0.10%)</title><rect x="52.8670%" y="917" width="0.1014%" height="15" fill="rgb(250,173,51)" fg:x="77179" fg:w="148"/><text x="53.1170%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (148 samples, 0.10%)</title><rect x="52.8670%" y="901" width="0.1014%" height="15" fill="rgb(209,5,22)" fg:x="77179" fg:w="148"/><text x="53.1170%" y="911.50"></text></g><g><title>InstanceKlass::link_class_impl (33 samples, 0.02%)</title><rect x="52.9739%" y="901" width="0.0226%" height="15" fill="rgb(250,174,19)" fg:x="77335" fg:w="33"/><text x="53.2239%" y="911.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (30 samples, 0.02%)</title><rect x="52.9972%" y="853" width="0.0205%" height="15" fill="rgb(217,3,49)" fg:x="77369" fg:w="30"/><text x="53.2472%" y="863.50"></text></g><g><title>InstanceKlass::link_methods (32 samples, 0.02%)</title><rect x="52.9965%" y="901" width="0.0219%" height="15" fill="rgb(218,225,5)" fg:x="77368" fg:w="32"/><text x="53.2465%" y="911.50"></text></g><g><title>Method::link_method (32 samples, 0.02%)</title><rect x="52.9965%" y="885" width="0.0219%" height="15" fill="rgb(236,89,11)" fg:x="77368" fg:w="32"/><text x="53.2465%" y="895.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (31 samples, 0.02%)</title><rect x="52.9972%" y="869" width="0.0212%" height="15" fill="rgb(206,33,28)" fg:x="77369" fg:w="31"/><text x="53.2472%" y="879.50"></text></g><g><title>Rewriter::compute_index_maps (17 samples, 0.01%)</title><rect x="53.0314%" y="853" width="0.0116%" height="15" fill="rgb(241,56,42)" fg:x="77419" fg:w="17"/><text x="53.2814%" y="863.50"></text></g><g><title>Rewriter::rewrite_bytecodes (39 samples, 0.03%)</title><rect x="53.0307%" y="869" width="0.0267%" height="15" fill="rgb(222,44,11)" fg:x="77418" fg:w="39"/><text x="53.2807%" y="879.50"></text></g><g><title>Rewriter::scan_method (21 samples, 0.01%)</title><rect x="53.0431%" y="853" width="0.0144%" height="15" fill="rgb(234,111,20)" fg:x="77436" fg:w="21"/><text x="53.2931%" y="863.50"></text></g><g><title>Rewriter::rewrite (55 samples, 0.04%)</title><rect x="53.0205%" y="901" width="0.0377%" height="15" fill="rgb(237,77,6)" fg:x="77403" fg:w="55"/><text x="53.2705%" y="911.50"></text></g><g><title>Rewriter::Rewriter (55 samples, 0.04%)</title><rect x="53.0205%" y="885" width="0.0377%" height="15" fill="rgb(235,111,23)" fg:x="77403" fg:w="55"/><text x="53.2705%" y="895.50"></text></g><g><title>klassVtable::update_inherited_vtable (15 samples, 0.01%)</title><rect x="53.0684%" y="885" width="0.0103%" height="15" fill="rgb(251,135,29)" fg:x="77473" fg:w="15"/><text x="53.3184%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (155 samples, 0.11%)</title><rect x="52.9732%" y="917" width="0.1062%" height="15" fill="rgb(217,57,1)" fg:x="77334" fg:w="155"/><text x="53.2232%" y="927.50"></text></g><g><title>klassVtable::initialize_vtable (21 samples, 0.01%)</title><rect x="53.0650%" y="901" width="0.0144%" height="15" fill="rgb(249,119,31)" fg:x="77468" fg:w="21"/><text x="53.3150%" y="911.50"></text></g><g><title>InterpreterRuntime::_new (319 samples, 0.22%)</title><rect x="52.8643%" y="949" width="0.2185%" height="15" fill="rgb(233,164,33)" fg:x="77175" fg:w="319"/><text x="53.1143%" y="959.50"></text></g><g><title>InstanceKlass::initialize_impl (161 samples, 0.11%)</title><rect x="52.9725%" y="933" width="0.1103%" height="15" fill="rgb(250,217,43)" fg:x="77333" fg:w="161"/><text x="53.2225%" y="943.50"></text></g><g><title>ConstantPool::klass_at_impl (16 samples, 0.01%)</title><rect x="53.0842%" y="933" width="0.0110%" height="15" fill="rgb(232,154,50)" fg:x="77496" fg:w="16"/><text x="53.3342%" y="943.50"></text></g><g><title>InterpreterRuntime::anewarray (34 samples, 0.02%)</title><rect x="53.0828%" y="949" width="0.0233%" height="15" fill="rgb(227,190,8)" fg:x="77494" fg:w="34"/><text x="53.3328%" y="959.50"></text></g><g><title>MethodCounters::allocate (18 samples, 0.01%)</title><rect x="53.1150%" y="917" width="0.0123%" height="15" fill="rgb(209,217,32)" fg:x="77541" fg:w="18"/><text x="53.3650%" y="927.50"></text></g><g><title>InterpreterRuntime::build_method_counters (26 samples, 0.02%)</title><rect x="53.1116%" y="949" width="0.0178%" height="15" fill="rgb(243,203,50)" fg:x="77536" fg:w="26"/><text x="53.3616%" y="959.50"></text></g><g><title>Method::build_method_counters (23 samples, 0.02%)</title><rect x="53.1136%" y="933" width="0.0158%" height="15" fill="rgb(232,152,27)" fg:x="77539" fg:w="23"/><text x="53.3636%" y="943.50"></text></g><g><title>CompileBroker::compile_method_base (18 samples, 0.01%)</title><rect x="53.1616%" y="837" width="0.0123%" height="15" fill="rgb(240,34,29)" fg:x="77609" fg:w="18"/><text x="53.4116%" y="847.50"></text></g><g><title>TieredThresholdPolicy::compile (29 samples, 0.02%)</title><rect x="53.1547%" y="885" width="0.0199%" height="15" fill="rgb(215,185,52)" fg:x="77599" fg:w="29"/><text x="53.4047%" y="895.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (27 samples, 0.02%)</title><rect x="53.1561%" y="869" width="0.0185%" height="15" fill="rgb(240,89,49)" fg:x="77601" fg:w="27"/><text x="53.4061%" y="879.50"></text></g><g><title>CompileBroker::compile_method (27 samples, 0.02%)</title><rect x="53.1561%" y="853" width="0.0185%" height="15" fill="rgb(225,12,52)" fg:x="77601" fg:w="27"/><text x="53.4061%" y="863.50"></text></g><g><title>TieredThresholdPolicy::event (54 samples, 0.04%)</title><rect x="53.1383%" y="917" width="0.0370%" height="15" fill="rgb(239,128,45)" fg:x="77575" fg:w="54"/><text x="53.3883%" y="927.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (51 samples, 0.03%)</title><rect x="53.1403%" y="901" width="0.0349%" height="15" fill="rgb(211,78,47)" fg:x="77578" fg:w="51"/><text x="53.3903%" y="911.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (68 samples, 0.05%)</title><rect x="53.1294%" y="949" width="0.0466%" height="15" fill="rgb(232,31,21)" fg:x="77562" fg:w="68"/><text x="53.3794%" y="959.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (68 samples, 0.05%)</title><rect x="53.1294%" y="933" width="0.0466%" height="15" fill="rgb(222,168,14)" fg:x="77562" fg:w="68"/><text x="53.3794%" y="943.50"></text></g><g><title>ConstantPool::klass_at_impl (21 samples, 0.01%)</title><rect x="53.1773%" y="933" width="0.0144%" height="15" fill="rgb(209,128,24)" fg:x="77632" fg:w="21"/><text x="53.4273%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_fail (18 samples, 0.01%)</title><rect x="53.1794%" y="917" width="0.0123%" height="15" fill="rgb(249,35,13)" fg:x="77635" fg:w="18"/><text x="53.4294%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (16 samples, 0.01%)</title><rect x="53.1808%" y="901" width="0.0110%" height="15" fill="rgb(218,7,2)" fg:x="77637" fg:w="16"/><text x="53.4308%" y="911.50"></text></g><g><title>InterpreterRuntime::ldc (36 samples, 0.02%)</title><rect x="53.1760%" y="949" width="0.0247%" height="15" fill="rgb(238,107,27)" fg:x="77630" fg:w="36"/><text x="53.4260%" y="959.50"></text></g><g><title>ClassFileParser::ClassFileParser (16 samples, 0.01%)</title><rect x="53.2410%" y="805" width="0.0110%" height="15" fill="rgb(217,88,38)" fg:x="77725" fg:w="16"/><text x="53.4910%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (16 samples, 0.01%)</title><rect x="53.2410%" y="789" width="0.0110%" height="15" fill="rgb(230,207,0)" fg:x="77725" fg:w="16"/><text x="53.4910%" y="799.50"></text></g><g><title>ClassLoader::load_class (20 samples, 0.01%)</title><rect x="53.2410%" y="837" width="0.0137%" height="15" fill="rgb(249,64,54)" fg:x="77725" fg:w="20"/><text x="53.4910%" y="847.50"></text></g><g><title>KlassFactory::create_from_stream (20 samples, 0.01%)</title><rect x="53.2410%" y="821" width="0.0137%" height="15" fill="rgb(231,7,11)" fg:x="77725" fg:w="20"/><text x="53.4910%" y="831.50"></text></g><g><title>SystemDictionary::load_instance_class (25 samples, 0.02%)</title><rect x="53.2410%" y="853" width="0.0171%" height="15" fill="rgb(205,149,21)" fg:x="77725" fg:w="25"/><text x="53.4910%" y="863.50"></text></g><g><title>ConstantPool::klass_ref_at (34 samples, 0.02%)</title><rect x="53.2356%" y="901" width="0.0233%" height="15" fill="rgb(215,126,34)" fg:x="77717" fg:w="34"/><text x="53.4856%" y="911.50"></text></g><g><title>SystemDictionary::resolve_or_fail (31 samples, 0.02%)</title><rect x="53.2376%" y="885" width="0.0212%" height="15" fill="rgb(241,132,45)" fg:x="77720" fg:w="31"/><text x="53.4876%" y="895.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (31 samples, 0.02%)</title><rect x="53.2376%" y="869" width="0.0212%" height="15" fill="rgb(252,69,32)" fg:x="77720" fg:w="31"/><text x="53.4876%" y="879.50"></text></g><g><title>InstanceKlass::link_class_impl (25 samples, 0.02%)</title><rect x="53.2684%" y="869" width="0.0171%" height="15" fill="rgb(232,204,19)" fg:x="77765" fg:w="25"/><text x="53.5184%" y="879.50"></text></g><g><title>InstanceKlass::initialize_impl (28 samples, 0.02%)</title><rect x="53.2684%" y="885" width="0.0192%" height="15" fill="rgb(249,15,47)" fg:x="77765" fg:w="28"/><text x="53.5184%" y="895.50"></text></g><g><title>LinkResolver::resolve_field (46 samples, 0.03%)</title><rect x="53.2589%" y="901" width="0.0315%" height="15" fill="rgb(209,227,23)" fg:x="77751" fg:w="46"/><text x="53.5089%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (96 samples, 0.07%)</title><rect x="53.2260%" y="933" width="0.0658%" height="15" fill="rgb(248,92,24)" fg:x="77703" fg:w="96"/><text x="53.4760%" y="943.50"></text></g><g><title>LinkResolver::resolve_field_access (85 samples, 0.06%)</title><rect x="53.2335%" y="917" width="0.0582%" height="15" fill="rgb(247,59,2)" fg:x="77714" fg:w="85"/><text x="53.4835%" y="927.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (28 samples, 0.02%)</title><rect x="53.3376%" y="757" width="0.0192%" height="15" fill="rgb(221,30,5)" fg:x="77866" fg:w="28"/><text x="53.5876%" y="767.50"></text></g><g><title>SymbolTable::lookup_only (20 samples, 0.01%)</title><rect x="53.3431%" y="741" width="0.0137%" height="15" fill="rgb(208,108,53)" fg:x="77874" fg:w="20"/><text x="53.5931%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool (31 samples, 0.02%)</title><rect x="53.3363%" y="773" width="0.0212%" height="15" fill="rgb(211,183,26)" fg:x="77864" fg:w="31"/><text x="53.5863%" y="783.50"></text></g><g><title>ClassFileParser::ClassFileParser (42 samples, 0.03%)</title><rect x="53.3349%" y="805" width="0.0288%" height="15" fill="rgb(232,132,4)" fg:x="77862" fg:w="42"/><text x="53.5849%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (42 samples, 0.03%)</title><rect x="53.3349%" y="789" width="0.0288%" height="15" fill="rgb(253,128,37)" fg:x="77862" fg:w="42"/><text x="53.5849%" y="799.50"></text></g><g><title>ClassLoader::load_class (62 samples, 0.04%)</title><rect x="53.3315%" y="837" width="0.0425%" height="15" fill="rgb(221,58,24)" fg:x="77857" fg:w="62"/><text x="53.5815%" y="847.50"></text></g><g><title>KlassFactory::create_from_stream (57 samples, 0.04%)</title><rect x="53.3349%" y="821" width="0.0390%" height="15" fill="rgb(230,54,45)" fg:x="77862" fg:w="57"/><text x="53.5849%" y="831.50"></text></g><g><title>ConstantPool::klass_ref_at (83 samples, 0.06%)</title><rect x="53.3205%" y="901" width="0.0569%" height="15" fill="rgb(254,21,18)" fg:x="77841" fg:w="83"/><text x="53.5705%" y="911.50"></text></g><g><title>SystemDictionary::resolve_or_fail (79 samples, 0.05%)</title><rect x="53.3232%" y="885" width="0.0541%" height="15" fill="rgb(221,108,0)" fg:x="77845" fg:w="79"/><text x="53.5732%" y="895.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (79 samples, 0.05%)</title><rect x="53.3232%" y="869" width="0.0541%" height="15" fill="rgb(206,95,1)" fg:x="77845" fg:w="79"/><text x="53.5732%" y="879.50"></text></g><g><title>SystemDictionary::load_instance_class (68 samples, 0.05%)</title><rect x="53.3308%" y="853" width="0.0466%" height="15" fill="rgb(237,52,5)" fg:x="77856" fg:w="68"/><text x="53.5808%" y="863.50"></text></g><g><title>LinkResolver::linktime_resolve_special_method (15 samples, 0.01%)</title><rect x="53.3774%" y="901" width="0.0103%" height="15" fill="rgb(218,150,34)" fg:x="77924" fg:w="15"/><text x="53.6274%" y="911.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (27 samples, 0.02%)</title><rect x="53.3876%" y="901" width="0.0185%" height="15" fill="rgb(235,194,28)" fg:x="77939" fg:w="27"/><text x="53.6376%" y="911.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (28 samples, 0.02%)</title><rect x="53.4116%" y="885" width="0.0192%" height="15" fill="rgb(245,92,18)" fg:x="77974" fg:w="28"/><text x="53.6616%" y="895.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (20 samples, 0.01%)</title><rect x="53.4171%" y="869" width="0.0137%" height="15" fill="rgb(253,203,53)" fg:x="77982" fg:w="20"/><text x="53.6671%" y="879.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (19 samples, 0.01%)</title><rect x="53.4178%" y="853" width="0.0130%" height="15" fill="rgb(249,185,47)" fg:x="77983" fg:w="19"/><text x="53.6678%" y="863.50"></text></g><g><title>InstanceKlass::find_method_index (18 samples, 0.01%)</title><rect x="53.4185%" y="837" width="0.0123%" height="15" fill="rgb(252,194,52)" fg:x="77984" fg:w="18"/><text x="53.6685%" y="847.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (38 samples, 0.03%)</title><rect x="53.4061%" y="901" width="0.0260%" height="15" fill="rgb(210,53,36)" fg:x="77966" fg:w="38"/><text x="53.6561%" y="911.50"></text></g><g><title>Method::link_method (25 samples, 0.02%)</title><rect x="53.4411%" y="837" width="0.0171%" height="15" fill="rgb(237,37,25)" fg:x="78017" fg:w="25"/><text x="53.6911%" y="847.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (23 samples, 0.02%)</title><rect x="53.4424%" y="821" width="0.0158%" height="15" fill="rgb(242,116,27)" fg:x="78019" fg:w="23"/><text x="53.6924%" y="831.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (23 samples, 0.02%)</title><rect x="53.4424%" y="805" width="0.0158%" height="15" fill="rgb(213,185,26)" fg:x="78019" fg:w="23"/><text x="53.6924%" y="815.50"></text></g><g><title>InstanceKlass::link_methods (27 samples, 0.02%)</title><rect x="53.4411%" y="853" width="0.0185%" height="15" fill="rgb(225,204,8)" fg:x="78017" fg:w="27"/><text x="53.6911%" y="863.50"></text></g><g><title>Rewriter::rewrite_bytecodes (26 samples, 0.02%)</title><rect x="53.4637%" y="821" width="0.0178%" height="15" fill="rgb(254,111,37)" fg:x="78050" fg:w="26"/><text x="53.7137%" y="831.50"></text></g><g><title>Rewriter::scan_method (15 samples, 0.01%)</title><rect x="53.4712%" y="805" width="0.0103%" height="15" fill="rgb(242,35,9)" fg:x="78061" fg:w="15"/><text x="53.7212%" y="815.50"></text></g><g><title>Rewriter::rewrite (33 samples, 0.02%)</title><rect x="53.4596%" y="853" width="0.0226%" height="15" fill="rgb(232,138,49)" fg:x="78044" fg:w="33"/><text x="53.7096%" y="863.50"></text></g><g><title>Rewriter::Rewriter (33 samples, 0.02%)</title><rect x="53.4596%" y="837" width="0.0226%" height="15" fill="rgb(247,56,4)" fg:x="78044" fg:w="33"/><text x="53.7096%" y="847.50"></text></g><g><title>InstanceKlass::initialize_impl (81 samples, 0.06%)</title><rect x="53.4335%" y="885" width="0.0555%" height="15" fill="rgb(226,179,17)" fg:x="78006" fg:w="81"/><text x="53.6835%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (79 samples, 0.05%)</title><rect x="53.4349%" y="869" width="0.0541%" height="15" fill="rgb(216,163,45)" fg:x="78008" fg:w="79"/><text x="53.6849%" y="879.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (19 samples, 0.01%)</title><rect x="53.4931%" y="869" width="0.0130%" height="15" fill="rgb(211,157,3)" fg:x="78093" fg:w="19"/><text x="53.7431%" y="879.50"></text></g><g><title>InstanceKlass::uncached_lookup_method (19 samples, 0.01%)</title><rect x="53.4931%" y="853" width="0.0130%" height="15" fill="rgb(234,44,20)" fg:x="78093" fg:w="19"/><text x="53.7431%" y="863.50"></text></g><g><title>InstanceKlass::find_method_index (19 samples, 0.01%)</title><rect x="53.4931%" y="837" width="0.0130%" height="15" fill="rgb(254,138,23)" fg:x="78093" fg:w="19"/><text x="53.7431%" y="847.50"></text></g><g><title>LinkResolver::resolve_method (26 samples, 0.02%)</title><rect x="53.4897%" y="885" width="0.0178%" height="15" fill="rgb(206,119,39)" fg:x="78088" fg:w="26"/><text x="53.7397%" y="895.50"></text></g><g><title>LinkResolver::resolve_static_call (111 samples, 0.08%)</title><rect x="53.4322%" y="901" width="0.0760%" height="15" fill="rgb(231,105,52)" fg:x="78004" fg:w="111"/><text x="53.6822%" y="911.50"></text></g><g><title>LinkResolver::resolve_invoke (284 samples, 0.19%)</title><rect x="53.3164%" y="917" width="0.1945%" height="15" fill="rgb(250,20,5)" fg:x="77835" fg:w="284"/><text x="53.5664%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (333 samples, 0.23%)</title><rect x="53.2917%" y="933" width="0.2281%" height="15" fill="rgb(215,198,30)" fg:x="77799" fg:w="333"/><text x="53.5417%" y="943.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (22 samples, 0.02%)</title><rect x="53.5205%" y="869" width="0.0151%" height="15" fill="rgb(246,142,8)" fg:x="78133" fg:w="22"/><text x="53.7705%" y="879.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (22 samples, 0.02%)</title><rect x="53.5205%" y="853" width="0.0151%" height="15" fill="rgb(243,26,38)" fg:x="78133" fg:w="22"/><text x="53.7705%" y="863.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (17 samples, 0.01%)</title><rect x="53.5239%" y="837" width="0.0116%" height="15" fill="rgb(205,133,28)" fg:x="78138" fg:w="17"/><text x="53.7739%" y="847.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (37 samples, 0.03%)</title><rect x="53.5205%" y="885" width="0.0253%" height="15" fill="rgb(212,34,0)" fg:x="78133" fg:w="37"/><text x="53.7705%" y="895.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (15 samples, 0.01%)</title><rect x="53.5356%" y="869" width="0.0103%" height="15" fill="rgb(251,226,22)" fg:x="78155" fg:w="15"/><text x="53.7856%" y="879.50"></text></g><g><title>LinkResolver::resolve_invoke (50 samples, 0.03%)</title><rect x="53.5205%" y="917" width="0.0342%" height="15" fill="rgb(252,119,9)" fg:x="78133" fg:w="50"/><text x="53.7705%" y="927.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (50 samples, 0.03%)</title><rect x="53.5205%" y="901" width="0.0342%" height="15" fill="rgb(213,150,50)" fg:x="78133" fg:w="50"/><text x="53.7705%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (52 samples, 0.04%)</title><rect x="53.5198%" y="933" width="0.0356%" height="15" fill="rgb(212,24,39)" fg:x="78132" fg:w="52"/><text x="53.7698%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (485 samples, 0.33%)</title><rect x="53.2246%" y="949" width="0.3322%" height="15" fill="rgb(213,46,39)" fg:x="77701" fg:w="485"/><text x="53.4746%" y="959.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (27 samples, 0.02%)</title><rect x="53.5582%" y="917" width="0.0185%" height="15" fill="rgb(239,106,12)" fg:x="78188" fg:w="27"/><text x="53.8082%" y="927.50"></text></g><g><title>ConstantPool::string_at_impl (23 samples, 0.02%)</title><rect x="53.5609%" y="901" width="0.0158%" height="15" fill="rgb(249,229,21)" fg:x="78192" fg:w="23"/><text x="53.8109%" y="911.50"></text></g><g><title>StringTable::intern (23 samples, 0.02%)</title><rect x="53.5609%" y="885" width="0.0158%" height="15" fill="rgb(212,158,3)" fg:x="78192" fg:w="23"/><text x="53.8109%" y="895.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (28 samples, 0.02%)</title><rect x="53.5582%" y="933" width="0.0192%" height="15" fill="rgb(253,26,48)" fg:x="78188" fg:w="28"/><text x="53.8082%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (33 samples, 0.02%)</title><rect x="53.5568%" y="949" width="0.0226%" height="15" fill="rgb(238,178,20)" fg:x="78186" fg:w="33"/><text x="53.8068%" y="959.50"></text></g><g><title>JVM_ConstantPoolGetUTF8At (19 samples, 0.01%)</title><rect x="53.5897%" y="949" width="0.0130%" height="15" fill="rgb(208,86,15)" fg:x="78234" fg:w="19"/><text x="53.8397%" y="959.50"></text></g><g><title>java_lang_String::create_from_symbol (15 samples, 0.01%)</title><rect x="53.5924%" y="933" width="0.0103%" height="15" fill="rgb(239,42,53)" fg:x="78238" fg:w="15"/><text x="53.8424%" y="943.50"></text></g><g><title>JVM_FindLoadedClass (25 samples, 0.02%)</title><rect x="53.6075%" y="949" width="0.0171%" height="15" fill="rgb(245,226,8)" fg:x="78260" fg:w="25"/><text x="53.8575%" y="959.50"></text></g><g><title>InstanceKlass::link_class_impl (24 samples, 0.02%)</title><rect x="53.6342%" y="917" width="0.0164%" height="15" fill="rgb(216,176,32)" fg:x="78299" fg:w="24"/><text x="53.8842%" y="927.50"></text></g><g><title>JVM_GetClassDeclaredConstructors (29 samples, 0.02%)</title><rect x="53.6342%" y="949" width="0.0199%" height="15" fill="rgb(231,186,21)" fg:x="78299" fg:w="29"/><text x="53.8842%" y="959.50"></text></g><g><title>get_class_declared_methods_helper (29 samples, 0.02%)</title><rect x="53.6342%" y="933" width="0.0199%" height="15" fill="rgb(205,95,49)" fg:x="78299" fg:w="29"/><text x="53.8842%" y="943.50"></text></g><g><title>get_parameter_types (33 samples, 0.02%)</title><rect x="53.6794%" y="901" width="0.0226%" height="15" fill="rgb(217,145,8)" fg:x="78365" fg:w="33"/><text x="53.9294%" y="911.50"></text></g><g><title>SystemDictionary::resolve_or_fail (25 samples, 0.02%)</title><rect x="53.6849%" y="885" width="0.0171%" height="15" fill="rgb(239,144,48)" fg:x="78373" fg:w="25"/><text x="53.9349%" y="895.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (23 samples, 0.02%)</title><rect x="53.6863%" y="869" width="0.0158%" height="15" fill="rgb(214,189,23)" fg:x="78375" fg:w="23"/><text x="53.9363%" y="879.50"></text></g><g><title>JVM_GetClassDeclaredMethods (67 samples, 0.05%)</title><rect x="53.6589%" y="949" width="0.0459%" height="15" fill="rgb(229,157,17)" fg:x="78335" fg:w="67"/><text x="53.9089%" y="959.50"></text></g><g><title>get_class_declared_methods_helper (67 samples, 0.05%)</title><rect x="53.6589%" y="933" width="0.0459%" height="15" fill="rgb(230,5,48)" fg:x="78335" fg:w="67"/><text x="53.9089%" y="943.50"></text></g><g><title>Reflection::new_method (50 samples, 0.03%)</title><rect x="53.6705%" y="917" width="0.0342%" height="15" fill="rgb(224,156,48)" fg:x="78352" fg:w="50"/><text x="53.9205%" y="927.50"></text></g><g><title>StringTable::intern (19 samples, 0.01%)</title><rect x="53.7178%" y="917" width="0.0130%" height="15" fill="rgb(223,14,29)" fg:x="78421" fg:w="19"/><text x="53.9678%" y="927.50"></text></g><g><title>JVM_InitClassName (23 samples, 0.02%)</title><rect x="53.7157%" y="949" width="0.0158%" height="15" fill="rgb(229,96,36)" fg:x="78418" fg:w="23"/><text x="53.9657%" y="959.50"></text></g><g><title>java_lang_Class::name (22 samples, 0.02%)</title><rect x="53.7164%" y="933" width="0.0151%" height="15" fill="rgb(231,102,53)" fg:x="78419" fg:w="22"/><text x="53.9664%" y="943.50"></text></g><g><title>JVM_MonitorWait (15 samples, 0.01%)</title><rect x="53.7466%" y="949" width="0.0103%" height="15" fill="rgb(210,77,38)" fg:x="78463" fg:w="15"/><text x="53.9966%" y="959.50"></text></g><g><title>ObjectSynchronizer::wait (15 samples, 0.01%)</title><rect x="53.7466%" y="933" width="0.0103%" height="15" fill="rgb(235,131,6)" fg:x="78463" fg:w="15"/><text x="53.9966%" y="943.50"></text></g><g><title>__pthread_cond_wait (15 samples, 0.01%)</title><rect x="53.7671%" y="869" width="0.0103%" height="15" fill="rgb(252,55,38)" fg:x="78493" fg:w="15"/><text x="54.0171%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (15 samples, 0.01%)</title><rect x="53.7671%" y="853" width="0.0103%" height="15" fill="rgb(246,38,14)" fg:x="78493" fg:w="15"/><text x="54.0171%" y="863.50"></text></g><g><title>futex_wait_cancelable (15 samples, 0.01%)</title><rect x="53.7671%" y="837" width="0.0103%" height="15" fill="rgb(242,27,5)" fg:x="78493" fg:w="15"/><text x="54.0171%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="53.7671%" y="821" width="0.0103%" height="15" fill="rgb(228,65,35)" fg:x="78493" fg:w="15"/><text x="54.0171%" y="831.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="53.7671%" y="805" width="0.0103%" height="15" fill="rgb(245,93,11)" fg:x="78493" fg:w="15"/><text x="54.0171%" y="815.50"></text></g><g><title>__x64_sys_futex (15 samples, 0.01%)</title><rect x="53.7671%" y="789" width="0.0103%" height="15" fill="rgb(213,1,31)" fg:x="78493" fg:w="15"/><text x="54.0171%" y="799.50"></text></g><g><title>do_futex (15 samples, 0.01%)</title><rect x="53.7671%" y="773" width="0.0103%" height="15" fill="rgb(237,205,14)" fg:x="78493" fg:w="15"/><text x="54.0171%" y="783.50"></text></g><g><title>futex_wait (15 samples, 0.01%)</title><rect x="53.7671%" y="757" width="0.0103%" height="15" fill="rgb(232,118,45)" fg:x="78493" fg:w="15"/><text x="54.0171%" y="767.50"></text></g><g><title>Monitor::wait (16 samples, 0.01%)</title><rect x="53.7671%" y="917" width="0.0110%" height="15" fill="rgb(218,5,6)" fg:x="78493" fg:w="16"/><text x="54.0171%" y="927.50"></text></g><g><title>Monitor::IWait (16 samples, 0.01%)</title><rect x="53.7671%" y="901" width="0.0110%" height="15" fill="rgb(251,87,51)" fg:x="78493" fg:w="16"/><text x="54.0171%" y="911.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="53.7671%" y="885" width="0.0110%" height="15" fill="rgb(207,225,20)" fg:x="78493" fg:w="16"/><text x="54.0171%" y="895.50"></text></g><g><title>JVM_StartThread (22 samples, 0.02%)</title><rect x="53.7651%" y="949" width="0.0151%" height="15" fill="rgb(222,78,54)" fg:x="78490" fg:w="22"/><text x="54.0151%" y="959.50"></text></g><g><title>os::create_thread (19 samples, 0.01%)</title><rect x="53.7671%" y="933" width="0.0130%" height="15" fill="rgb(232,85,16)" fg:x="78493" fg:w="19"/><text x="54.0171%" y="943.50"></text></g><g><title>__lseek64 (16 samples, 0.01%)</title><rect x="53.7829%" y="933" width="0.0110%" height="15" fill="rgb(244,25,33)" fg:x="78516" fg:w="16"/><text x="54.0329%" y="943.50"></text></g><g><title>Java_java_io_RandomAccessFile_seek0 (27 samples, 0.02%)</title><rect x="53.7815%" y="949" width="0.0185%" height="15" fill="rgb(233,24,36)" fg:x="78514" fg:w="27"/><text x="54.0315%" y="959.50"></text></g><g><title>AllocateHeap (23 samples, 0.02%)</title><rect x="53.8671%" y="773" width="0.0158%" height="15" fill="rgb(253,49,54)" fg:x="78639" fg:w="23"/><text x="54.1171%" y="783.50"></text></g><g><title>os::malloc (21 samples, 0.01%)</title><rect x="53.8685%" y="757" width="0.0144%" height="15" fill="rgb(245,12,22)" fg:x="78641" fg:w="21"/><text x="54.1185%" y="767.50"></text></g><g><title>__GI___libc_malloc (19 samples, 0.01%)</title><rect x="53.8699%" y="741" width="0.0130%" height="15" fill="rgb(253,141,28)" fg:x="78643" fg:w="19"/><text x="54.1199%" y="751.50"></text></g><g><title>SymbolTable::add (57 samples, 0.04%)</title><rect x="53.8541%" y="805" width="0.0390%" height="15" fill="rgb(225,207,27)" fg:x="78620" fg:w="57"/><text x="54.1041%" y="815.50"></text></g><g><title>SymbolTable::basic_add (57 samples, 0.04%)</title><rect x="53.8541%" y="789" width="0.0390%" height="15" fill="rgb(220,84,2)" fg:x="78620" fg:w="57"/><text x="54.1041%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (492 samples, 0.34%)</title><rect x="53.8932%" y="805" width="0.3370%" height="15" fill="rgb(224,37,37)" fg:x="78677" fg:w="492"/><text x="54.1432%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (580 samples, 0.40%)</title><rect x="53.8336%" y="821" width="0.3973%" height="15" fill="rgb(220,143,18)" fg:x="78590" fg:w="580"/><text x="54.0836%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool (599 samples, 0.41%)</title><rect x="53.8247%" y="837" width="0.4103%" height="15" fill="rgb(210,88,33)" fg:x="78577" fg:w="599"/><text x="54.0747%" y="847.50"></text></g><g><title>ClassFileParser::copy_localvariable_table (23 samples, 0.02%)</title><rect x="54.2761%" y="805" width="0.0158%" height="15" fill="rgb(219,87,51)" fg:x="79236" fg:w="23"/><text x="54.5261%" y="815.50"></text></g><g><title>ClassFileParser::parse_linenumber_table (16 samples, 0.01%)</title><rect x="54.2932%" y="805" width="0.0110%" height="15" fill="rgb(211,7,35)" fg:x="79261" fg:w="16"/><text x="54.5432%" y="815.50"></text></g><g><title>ConstMethod::allocate (22 samples, 0.02%)</title><rect x="54.3083%" y="789" width="0.0151%" height="15" fill="rgb(232,77,2)" fg:x="79283" fg:w="22"/><text x="54.5583%" y="799.50"></text></g><g><title>Metaspace::allocate (17 samples, 0.01%)</title><rect x="54.3117%" y="773" width="0.0116%" height="15" fill="rgb(249,94,25)" fg:x="79288" fg:w="17"/><text x="54.5617%" y="783.50"></text></g><g><title>Method::allocate (41 samples, 0.03%)</title><rect x="54.3069%" y="805" width="0.0281%" height="15" fill="rgb(215,112,2)" fg:x="79281" fg:w="41"/><text x="54.5569%" y="815.50"></text></g><g><title>Metaspace::allocate (17 samples, 0.01%)</title><rect x="54.3233%" y="789" width="0.0116%" height="15" fill="rgb(226,115,48)" fg:x="79305" fg:w="17"/><text x="54.5733%" y="799.50"></text></g><g><title>SignatureIterator::iterate_returntype (17 samples, 0.01%)</title><rect x="54.3411%" y="805" width="0.0116%" height="15" fill="rgb(249,196,10)" fg:x="79331" fg:w="17"/><text x="54.5911%" y="815.50"></text></g><g><title>ClassFileParser::parse_method (156 samples, 0.11%)</title><rect x="54.2494%" y="821" width="0.1069%" height="15" fill="rgb(237,109,14)" fg:x="79197" fg:w="156"/><text x="54.4994%" y="831.50"></text></g><g><title>ClassFileParser::parse_methods (160 samples, 0.11%)</title><rect x="54.2487%" y="837" width="0.1096%" height="15" fill="rgb(217,103,53)" fg:x="79196" fg:w="160"/><text x="54.4987%" y="847.50"></text></g><g><title>asm_exc_page_fault (16 samples, 0.01%)</title><rect x="54.3610%" y="789" width="0.0110%" height="15" fill="rgb(244,137,9)" fg:x="79360" fg:w="16"/><text x="54.6110%" y="799.50"></text></g><g><title>exc_page_fault (16 samples, 0.01%)</title><rect x="54.3610%" y="773" width="0.0110%" height="15" fill="rgb(227,201,3)" fg:x="79360" fg:w="16"/><text x="54.6110%" y="783.50"></text></g><g><title>do_user_addr_fault (15 samples, 0.01%)</title><rect x="54.3617%" y="757" width="0.0103%" height="15" fill="rgb(243,94,6)" fg:x="79361" fg:w="15"/><text x="54.6117%" y="767.50"></text></g><g><title>handle_mm_fault (15 samples, 0.01%)</title><rect x="54.3617%" y="741" width="0.0103%" height="15" fill="rgb(235,118,5)" fg:x="79361" fg:w="15"/><text x="54.6117%" y="751.50"></text></g><g><title>[libc-2.31.so] (19 samples, 0.01%)</title><rect x="54.3596%" y="805" width="0.0130%" height="15" fill="rgb(247,10,30)" fg:x="79358" fg:w="19"/><text x="54.6096%" y="815.50"></text></g><g><title>Metaspace::allocate (24 samples, 0.02%)</title><rect x="54.3589%" y="821" width="0.0164%" height="15" fill="rgb(205,26,28)" fg:x="79357" fg:w="24"/><text x="54.6089%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (815 samples, 0.56%)</title><rect x="53.8178%" y="869" width="0.5583%" height="15" fill="rgb(206,99,35)" fg:x="78567" fg:w="815"/><text x="54.0678%" y="879.50"></text></g><g><title>ClassFileParser::parse_stream (814 samples, 0.56%)</title><rect x="53.8185%" y="853" width="0.5576%" height="15" fill="rgb(238,130,40)" fg:x="78568" fg:w="814"/><text x="54.0685%" y="863.50"></text></g><g><title>ConstantPool::allocate (25 samples, 0.02%)</title><rect x="54.3589%" y="837" width="0.0171%" height="15" fill="rgb(224,126,31)" fg:x="79357" fg:w="25"/><text x="54.6089%" y="847.50"></text></g><g><title>InstanceKlass::find_method (23 samples, 0.02%)</title><rect x="54.4158%" y="805" width="0.0158%" height="15" fill="rgb(254,105,17)" fg:x="79440" fg:w="23"/><text x="54.6658%" y="815.50"></text></g><g><title>InstanceKlass::find_method_index (23 samples, 0.02%)</title><rect x="54.4158%" y="789" width="0.0158%" height="15" fill="rgb(216,87,36)" fg:x="79440" fg:w="23"/><text x="54.6658%" y="799.50"></text></g><g><title>__tls_get_addr (23 samples, 0.02%)</title><rect x="54.4459%" y="789" width="0.0158%" height="15" fill="rgb(240,21,12)" fg:x="79484" fg:w="23"/><text x="54.6959%" y="799.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (92 samples, 0.06%)</title><rect x="54.4000%" y="821" width="0.0630%" height="15" fill="rgb(245,192,34)" fg:x="79417" fg:w="92"/><text x="54.6500%" y="831.50"></text></g><g><title>resource_allocate_bytes (45 samples, 0.03%)</title><rect x="54.4322%" y="805" width="0.0308%" height="15" fill="rgb(226,100,49)" fg:x="79464" fg:w="45"/><text x="54.6822%" y="815.50"></text></g><g><title>DefaultMethods::generate_default_methods (153 samples, 0.10%)</title><rect x="54.3795%" y="837" width="0.1048%" height="15" fill="rgb(245,188,27)" fg:x="79387" fg:w="153"/><text x="54.6295%" y="847.50"></text></g><g><title>ClassFileParser::fill_instance_klass (186 samples, 0.13%)</title><rect x="54.3761%" y="853" width="0.1274%" height="15" fill="rgb(212,170,8)" fg:x="79382" fg:w="186"/><text x="54.6261%" y="863.50"></text></g><g><title>ClassFileParser::create_instance_klass (199 samples, 0.14%)</title><rect x="54.3761%" y="869" width="0.1363%" height="15" fill="rgb(217,113,29)" fg:x="79382" fg:w="199"/><text x="54.6261%" y="879.50"></text></g><g><title>SystemDictionary::resolve_super_or_fail (16 samples, 0.01%)</title><rect x="54.5275%" y="853" width="0.0110%" height="15" fill="rgb(237,30,3)" fg:x="79603" fg:w="16"/><text x="54.7775%" y="863.50"></text></g><g><title>klassVtable::compute_vtable_size_and_num_mirandas (16 samples, 0.01%)</title><rect x="54.5398%" y="853" width="0.0110%" height="15" fill="rgb(227,19,28)" fg:x="79621" fg:w="16"/><text x="54.7898%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (1,074 samples, 0.74%)</title><rect x="53.8164%" y="885" width="0.7357%" height="15" fill="rgb(239,172,45)" fg:x="78565" fg:w="1074"/><text x="54.0664%" y="895.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (58 samples, 0.04%)</title><rect x="54.5124%" y="869" width="0.0397%" height="15" fill="rgb(254,55,39)" fg:x="79581" fg:w="58"/><text x="54.7624%" y="879.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (34 samples, 0.02%)</title><rect x="54.5521%" y="885" width="0.0233%" height="15" fill="rgb(249,208,12)" fg:x="79639" fg:w="34"/><text x="54.8021%" y="895.50"></text></g><g><title>SystemDictionary::define_instance_class (31 samples, 0.02%)</title><rect x="54.5542%" y="869" width="0.0212%" height="15" fill="rgb(240,52,13)" fg:x="79642" fg:w="31"/><text x="54.8042%" y="879.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,111 samples, 0.76%)</title><rect x="53.8151%" y="901" width="0.7610%" height="15" fill="rgb(252,149,13)" fg:x="78563" fg:w="1111"/><text x="54.0651%" y="911.50"></text></g><g><title>JVM_DefineClassWithSource (1,125 samples, 0.77%)</title><rect x="53.8062%" y="933" width="0.7706%" height="15" fill="rgb(232,81,48)" fg:x="78550" fg:w="1125"/><text x="54.0562%" y="943.50"></text></g><g><title>jvm_define_class_common (1,124 samples, 0.77%)</title><rect x="53.8068%" y="917" width="0.7699%" height="15" fill="rgb(222,144,2)" fg:x="78551" fg:w="1124"/><text x="54.0568%" y="927.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,157 samples, 0.79%)</title><rect x="53.8062%" y="949" width="0.7925%" height="15" fill="rgb(216,81,32)" fg:x="78550" fg:w="1157"/><text x="54.0562%" y="959.50"></text></g><g><title>ClassFileParser::ClassFileParser (15 samples, 0.01%)</title><rect x="54.6213%" y="837" width="0.0103%" height="15" fill="rgb(244,78,51)" fg:x="79740" fg:w="15"/><text x="54.8713%" y="847.50"></text></g><g><title>ClassFileParser::parse_stream (15 samples, 0.01%)</title><rect x="54.6213%" y="821" width="0.0103%" height="15" fill="rgb(217,66,21)" fg:x="79740" fg:w="15"/><text x="54.8713%" y="831.50"></text></g><g><title>ClassLoader::load_class (40 samples, 0.03%)</title><rect x="54.6069%" y="869" width="0.0274%" height="15" fill="rgb(247,101,42)" fg:x="79719" fg:w="40"/><text x="54.8569%" y="879.50"></text></g><g><title>KlassFactory::create_from_stream (19 samples, 0.01%)</title><rect x="54.6213%" y="853" width="0.0130%" height="15" fill="rgb(227,81,39)" fg:x="79740" fg:w="19"/><text x="54.8713%" y="863.50"></text></g><g><title>SystemDictionary::load_instance_class (56 samples, 0.04%)</title><rect x="54.6069%" y="885" width="0.0384%" height="15" fill="rgb(220,223,44)" fg:x="79719" fg:w="56"/><text x="54.8569%" y="895.50"></text></g><g><title>JVM_FindClassFromBootLoader (69 samples, 0.05%)</title><rect x="54.5987%" y="933" width="0.0473%" height="15" fill="rgb(205,218,2)" fg:x="79707" fg:w="69"/><text x="54.8487%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_null (67 samples, 0.05%)</title><rect x="54.6001%" y="917" width="0.0459%" height="15" fill="rgb(212,207,28)" fg:x="79709" fg:w="67"/><text x="54.8501%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (66 samples, 0.05%)</title><rect x="54.6008%" y="901" width="0.0452%" height="15" fill="rgb(224,12,41)" fg:x="79710" fg:w="66"/><text x="54.8508%" y="911.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (85 samples, 0.06%)</title><rect x="54.5987%" y="949" width="0.0582%" height="15" fill="rgb(216,118,12)" fg:x="79707" fg:w="85"/><text x="54.8487%" y="959.50"></text></g><g><title>JVM_FindClassFromCaller (21 samples, 0.01%)</title><rect x="54.6576%" y="933" width="0.0144%" height="15" fill="rgb(252,97,46)" fg:x="79793" fg:w="21"/><text x="54.9076%" y="943.50"></text></g><g><title>Java_java_lang_Class_forName0 (32 samples, 0.02%)</title><rect x="54.6569%" y="949" width="0.0219%" height="15" fill="rgb(244,206,19)" fg:x="79792" fg:w="32"/><text x="54.9069%" y="959.50"></text></g><g><title>LinkResolver::resolve_static_call (16 samples, 0.01%)</title><rect x="54.7001%" y="917" width="0.0110%" height="15" fill="rgb(231,84,31)" fg:x="79855" fg:w="16"/><text x="54.9501%" y="927.50"></text></g><g><title>LinkResolver::resolve_method (16 samples, 0.01%)</title><rect x="54.7001%" y="901" width="0.0110%" height="15" fill="rgb(244,133,0)" fg:x="79855" fg:w="16"/><text x="54.9501%" y="911.50"></text></g><g><title>MHN_resolve_Mem (38 samples, 0.03%)</title><rect x="54.6939%" y="949" width="0.0260%" height="15" fill="rgb(223,15,50)" fg:x="79846" fg:w="38"/><text x="54.9439%" y="959.50"></text></g><g><title>MethodHandles::resolve_MemberName (38 samples, 0.03%)</title><rect x="54.6939%" y="933" width="0.0260%" height="15" fill="rgb(250,118,49)" fg:x="79846" fg:w="38"/><text x="54.9439%" y="943.50"></text></g><g><title>InstanceKlass::link_class_impl (21 samples, 0.01%)</title><rect x="54.7487%" y="917" width="0.0144%" height="15" fill="rgb(248,25,38)" fg:x="79926" fg:w="21"/><text x="54.9987%" y="927.50"></text></g><g><title>ClassFileParser::ClassFileParser (34 samples, 0.02%)</title><rect x="54.7631%" y="901" width="0.0233%" height="15" fill="rgb(215,70,14)" fg:x="79947" fg:w="34"/><text x="55.0131%" y="911.50"></text></g><g><title>ClassFileParser::parse_stream (33 samples, 0.02%)</title><rect x="54.7638%" y="885" width="0.0226%" height="15" fill="rgb(215,28,15)" fg:x="79948" fg:w="33"/><text x="55.0138%" y="895.50"></text></g><g><title>KlassFactory::create_from_stream (54 samples, 0.04%)</title><rect x="54.7631%" y="917" width="0.0370%" height="15" fill="rgb(243,6,28)" fg:x="79947" fg:w="54"/><text x="55.0131%" y="927.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (86 samples, 0.06%)</title><rect x="54.7425%" y="949" width="0.0589%" height="15" fill="rgb(222,130,1)" fg:x="79917" fg:w="86"/><text x="54.9925%" y="959.50"></text></g><g><title>SystemDictionary::parse_stream (84 samples, 0.06%)</title><rect x="54.7439%" y="933" width="0.0575%" height="15" fill="rgb(236,166,44)" fg:x="79919" fg:w="84"/><text x="54.9939%" y="943.50"></text></g><g><title>[perf-627991.map] (5,027 samples, 3.44%)</title><rect x="51.3957%" y="965" width="3.4435%" height="15" fill="rgb(221,108,14)" fg:x="75031" fg:w="5027"/><text x="51.6457%" y="975.50">[pe..</text></g><g><title>SharedRuntime::find_callee_info_helper (28 samples, 0.02%)</title><rect x="54.8693%" y="933" width="0.0192%" height="15" fill="rgb(252,3,45)" fg:x="80102" fg:w="28"/><text x="55.1193%" y="943.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (41 samples, 0.03%)</title><rect x="54.8631%" y="949" width="0.0281%" height="15" fill="rgb(237,68,30)" fg:x="80093" fg:w="41"/><text x="55.1131%" y="959.50"></text></g><g><title>copy_page_to_iter (17 samples, 0.01%)</title><rect x="54.9145%" y="789" width="0.0116%" height="15" fill="rgb(211,79,22)" fg:x="80168" fg:w="17"/><text x="55.1645%" y="799.50"></text></g><g><title>copy_user_enhanced_fast_string (16 samples, 0.01%)</title><rect x="54.9152%" y="773" width="0.0110%" height="15" fill="rgb(252,185,21)" fg:x="80169" fg:w="16"/><text x="55.1652%" y="783.50"></text></g><g><title>generic_file_buffered_read (38 samples, 0.03%)</title><rect x="54.9138%" y="805" width="0.0260%" height="15" fill="rgb(225,189,26)" fg:x="80167" fg:w="38"/><text x="55.1638%" y="815.50"></text></g><g><title>new_sync_read (42 samples, 0.03%)</title><rect x="54.9124%" y="821" width="0.0288%" height="15" fill="rgb(241,30,40)" fg:x="80165" fg:w="42"/><text x="55.1624%" y="831.50"></text></g><g><title>handleRead (55 samples, 0.04%)</title><rect x="54.9063%" y="933" width="0.0377%" height="15" fill="rgb(235,215,44)" fg:x="80156" fg:w="55"/><text x="55.1563%" y="943.50"></text></g><g><title>__libc_read (55 samples, 0.04%)</title><rect x="54.9063%" y="917" width="0.0377%" height="15" fill="rgb(205,8,29)" fg:x="80156" fg:w="55"/><text x="55.1563%" y="927.50"></text></g><g><title>__libc_read (54 samples, 0.04%)</title><rect x="54.9069%" y="901" width="0.0370%" height="15" fill="rgb(241,137,42)" fg:x="80157" fg:w="54"/><text x="55.1569%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.03%)</title><rect x="54.9090%" y="885" width="0.0349%" height="15" fill="rgb(237,155,2)" fg:x="80160" fg:w="51"/><text x="55.1590%" y="895.50"></text></g><g><title>do_syscall_64 (51 samples, 0.03%)</title><rect x="54.9090%" y="869" width="0.0349%" height="15" fill="rgb(245,29,42)" fg:x="80160" fg:w="51"/><text x="55.1590%" y="879.50"></text></g><g><title>ksys_read (51 samples, 0.03%)</title><rect x="54.9090%" y="853" width="0.0349%" height="15" fill="rgb(234,101,35)" fg:x="80160" fg:w="51"/><text x="55.1590%" y="863.50"></text></g><g><title>vfs_read (48 samples, 0.03%)</title><rect x="54.9111%" y="837" width="0.0329%" height="15" fill="rgb(228,64,37)" fg:x="80163" fg:w="48"/><text x="55.1611%" y="847.50"></text></g><g><title>readBytes (71 samples, 0.05%)</title><rect x="54.9049%" y="949" width="0.0486%" height="15" fill="rgb(217,214,36)" fg:x="80154" fg:w="71"/><text x="55.1549%" y="959.50"></text></g><g><title>[unknown] (171 samples, 0.12%)</title><rect x="54.8391%" y="965" width="0.1171%" height="15" fill="rgb(243,70,3)" fg:x="80058" fg:w="171"/><text x="55.0891%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (326 samples, 0.22%)</title><rect x="54.9796%" y="901" width="0.2233%" height="15" fill="rgb(253,158,52)" fg:x="80263" fg:w="326"/><text x="55.2296%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (324 samples, 0.22%)</title><rect x="54.9809%" y="885" width="0.2219%" height="15" fill="rgb(234,111,54)" fg:x="80265" fg:w="324"/><text x="55.2309%" y="895.50"></text></g><g><title>native_write_msr (323 samples, 0.22%)</title><rect x="54.9816%" y="869" width="0.2213%" height="15" fill="rgb(217,70,32)" fg:x="80266" fg:w="323"/><text x="55.2316%" y="879.50"></text></g><g><title>schedule_tail (345 samples, 0.24%)</title><rect x="54.9720%" y="933" width="0.2363%" height="15" fill="rgb(234,18,33)" fg:x="80252" fg:w="345"/><text x="55.2220%" y="943.50"></text></g><g><title>finish_task_switch (342 samples, 0.23%)</title><rect x="54.9741%" y="917" width="0.2343%" height="15" fill="rgb(234,12,49)" fg:x="80255" fg:w="342"/><text x="55.2241%" y="927.50"></text></g><g><title>ret_from_fork (356 samples, 0.24%)</title><rect x="54.9693%" y="949" width="0.2439%" height="15" fill="rgb(236,10,21)" fg:x="80248" fg:w="356"/><text x="55.2193%" y="959.50"></text></g><g><title>universe2_init (20 samples, 0.01%)</title><rect x="55.2227%" y="869" width="0.0137%" height="15" fill="rgb(248,182,45)" fg:x="80618" fg:w="20"/><text x="55.4727%" y="879.50"></text></g><g><title>Universe::genesis (20 samples, 0.01%)</title><rect x="55.2227%" y="853" width="0.0137%" height="15" fill="rgb(217,95,36)" fg:x="80618" fg:w="20"/><text x="55.4727%" y="863.50"></text></g><g><title>SystemDictionary::initialize_preloaded_classes (20 samples, 0.01%)</title><rect x="55.2227%" y="837" width="0.0137%" height="15" fill="rgb(212,110,31)" fg:x="80618" fg:w="20"/><text x="55.4727%" y="847.50"></text></g><g><title>SystemDictionary::initialize_wk_klasses_until (20 samples, 0.01%)</title><rect x="55.2227%" y="821" width="0.0137%" height="15" fill="rgb(206,32,53)" fg:x="80618" fg:w="20"/><text x="55.4727%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (20 samples, 0.01%)</title><rect x="55.2227%" y="805" width="0.0137%" height="15" fill="rgb(246,141,37)" fg:x="80618" fg:w="20"/><text x="55.4727%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (20 samples, 0.01%)</title><rect x="55.2227%" y="789" width="0.0137%" height="15" fill="rgb(219,16,7)" fg:x="80618" fg:w="20"/><text x="55.4727%" y="799.50"></text></g><g><title>ClassLoader::load_class (20 samples, 0.01%)</title><rect x="55.2227%" y="773" width="0.0137%" height="15" fill="rgb(230,205,45)" fg:x="80618" fg:w="20"/><text x="55.4727%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (18 samples, 0.01%)</title><rect x="55.2241%" y="757" width="0.0123%" height="15" fill="rgb(231,43,49)" fg:x="80620" fg:w="18"/><text x="55.4741%" y="767.50"></text></g><g><title>init_globals (37 samples, 0.03%)</title><rect x="55.2186%" y="885" width="0.0253%" height="15" fill="rgb(212,106,34)" fg:x="80612" fg:w="37"/><text x="55.4686%" y="895.50"></text></g><g><title>JavaMain (47 samples, 0.03%)</title><rect x="55.2131%" y="933" width="0.0322%" height="15" fill="rgb(206,83,17)" fg:x="80604" fg:w="47"/><text x="55.4631%" y="943.50"></text></g><g><title>JNI_CreateJavaVM (47 samples, 0.03%)</title><rect x="55.2131%" y="917" width="0.0322%" height="15" fill="rgb(244,154,49)" fg:x="80604" fg:w="47"/><text x="55.4631%" y="927.50"></text></g><g><title>Threads::create_vm (47 samples, 0.03%)</title><rect x="55.2131%" y="901" width="0.0322%" height="15" fill="rgb(244,149,49)" fg:x="80604" fg:w="47"/><text x="55.4631%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.02%)</title><rect x="55.2645%" y="677" width="0.0178%" height="15" fill="rgb(227,134,18)" fg:x="80679" fg:w="26"/><text x="55.5145%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.02%)</title><rect x="55.2645%" y="661" width="0.0178%" height="15" fill="rgb(237,116,36)" fg:x="80679" fg:w="26"/><text x="55.5145%" y="671.50"></text></g><g><title>native_write_msr (26 samples, 0.02%)</title><rect x="55.2645%" y="645" width="0.0178%" height="15" fill="rgb(205,129,40)" fg:x="80679" fg:w="26"/><text x="55.5145%" y="655.50"></text></g><g><title>finish_task_switch (29 samples, 0.02%)</title><rect x="55.2631%" y="693" width="0.0199%" height="15" fill="rgb(236,178,4)" fg:x="80677" fg:w="29"/><text x="55.5131%" y="703.50"></text></g><g><title>__pthread_cond_wait (38 samples, 0.03%)</title><rect x="55.2577%" y="869" width="0.0260%" height="15" fill="rgb(251,76,53)" fg:x="80669" fg:w="38"/><text x="55.5077%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (38 samples, 0.03%)</title><rect x="55.2577%" y="853" width="0.0260%" height="15" fill="rgb(242,92,40)" fg:x="80669" fg:w="38"/><text x="55.5077%" y="863.50"></text></g><g><title>futex_wait_cancelable (38 samples, 0.03%)</title><rect x="55.2577%" y="837" width="0.0260%" height="15" fill="rgb(209,45,30)" fg:x="80669" fg:w="38"/><text x="55.5077%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.03%)</title><rect x="55.2583%" y="821" width="0.0253%" height="15" fill="rgb(218,157,36)" fg:x="80670" fg:w="37"/><text x="55.5083%" y="831.50"></text></g><g><title>do_syscall_64 (37 samples, 0.03%)</title><rect x="55.2583%" y="805" width="0.0253%" height="15" fill="rgb(222,186,16)" fg:x="80670" fg:w="37"/><text x="55.5083%" y="815.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="55.2590%" y="789" width="0.0247%" height="15" fill="rgb(254,72,35)" fg:x="80671" fg:w="36"/><text x="55.5090%" y="799.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="55.2590%" y="773" width="0.0247%" height="15" fill="rgb(224,25,35)" fg:x="80671" fg:w="36"/><text x="55.5090%" y="783.50"></text></g><g><title>futex_wait (36 samples, 0.02%)</title><rect x="55.2590%" y="757" width="0.0247%" height="15" fill="rgb(206,135,52)" fg:x="80671" fg:w="36"/><text x="55.5090%" y="767.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.02%)</title><rect x="55.2590%" y="741" width="0.0247%" height="15" fill="rgb(229,174,47)" fg:x="80671" fg:w="36"/><text x="55.5090%" y="751.50"></text></g><g><title>schedule (36 samples, 0.02%)</title><rect x="55.2590%" y="725" width="0.0247%" height="15" fill="rgb(242,184,21)" fg:x="80671" fg:w="36"/><text x="55.5090%" y="735.50"></text></g><g><title>__schedule (36 samples, 0.02%)</title><rect x="55.2590%" y="709" width="0.0247%" height="15" fill="rgb(213,22,45)" fg:x="80671" fg:w="36"/><text x="55.5090%" y="719.50"></text></g><g><title>Monitor::wait (47 samples, 0.03%)</title><rect x="55.2529%" y="917" width="0.0322%" height="15" fill="rgb(237,81,54)" fg:x="80662" fg:w="47"/><text x="55.5029%" y="927.50"></text></g><g><title>Monitor::IWait (47 samples, 0.03%)</title><rect x="55.2529%" y="901" width="0.0322%" height="15" fill="rgb(248,177,18)" fg:x="80662" fg:w="47"/><text x="55.5029%" y="911.50"></text></g><g><title>os::PlatformEvent::park (40 samples, 0.03%)</title><rect x="55.2577%" y="885" width="0.0274%" height="15" fill="rgb(254,31,16)" fg:x="80669" fg:w="40"/><text x="55.5077%" y="895.50"></text></g><g><title>SafepointSynchronize::block (15 samples, 0.01%)</title><rect x="55.2871%" y="885" width="0.0103%" height="15" fill="rgb(235,20,31)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="895.50"></text></g><g><title>Monitor::lock_without_safepoint_check (15 samples, 0.01%)</title><rect x="55.2871%" y="869" width="0.0103%" height="15" fill="rgb(240,56,43)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="879.50"></text></g><g><title>Monitor::ILock (15 samples, 0.01%)</title><rect x="55.2871%" y="853" width="0.0103%" height="15" fill="rgb(237,197,51)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="863.50"></text></g><g><title>os::PlatformEvent::park (15 samples, 0.01%)</title><rect x="55.2871%" y="837" width="0.0103%" height="15" fill="rgb(241,162,44)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="847.50"></text></g><g><title>__pthread_cond_wait (15 samples, 0.01%)</title><rect x="55.2871%" y="821" width="0.0103%" height="15" fill="rgb(224,23,20)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (15 samples, 0.01%)</title><rect x="55.2871%" y="805" width="0.0103%" height="15" fill="rgb(250,109,34)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="815.50"></text></g><g><title>futex_wait_cancelable (15 samples, 0.01%)</title><rect x="55.2871%" y="789" width="0.0103%" height="15" fill="rgb(214,175,50)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="55.2871%" y="773" width="0.0103%" height="15" fill="rgb(213,182,5)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="783.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="55.2871%" y="757" width="0.0103%" height="15" fill="rgb(209,199,19)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="767.50"></text></g><g><title>__x64_sys_futex (15 samples, 0.01%)</title><rect x="55.2871%" y="741" width="0.0103%" height="15" fill="rgb(236,224,42)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="751.50"></text></g><g><title>do_futex (15 samples, 0.01%)</title><rect x="55.2871%" y="725" width="0.0103%" height="15" fill="rgb(246,226,29)" fg:x="80712" fg:w="15"/><text x="55.5371%" y="735.50"></text></g><g><title>Thread::call_run (31 samples, 0.02%)</title><rect x="55.2851%" y="917" width="0.0212%" height="15" fill="rgb(227,223,11)" fg:x="80709" fg:w="31"/><text x="55.5351%" y="927.50"></text></g><g><title>JavaThread::run (30 samples, 0.02%)</title><rect x="55.2857%" y="901" width="0.0205%" height="15" fill="rgb(219,7,51)" fg:x="80710" fg:w="30"/><text x="55.5357%" y="911.50"></text></g><g><title>__GI___libc_malloc (19 samples, 0.01%)</title><rect x="55.3070%" y="869" width="0.0130%" height="15" fill="rgb(245,167,10)" fg:x="80741" fg:w="19"/><text x="55.5570%" y="879.50"></text></g><g><title>tcache_init (18 samples, 0.01%)</title><rect x="55.3077%" y="853" width="0.0123%" height="15" fill="rgb(237,224,16)" fg:x="80742" fg:w="18"/><text x="55.5577%" y="863.50"></text></g><g><title>tcache_init (18 samples, 0.01%)</title><rect x="55.3077%" y="837" width="0.0123%" height="15" fill="rgb(226,132,13)" fg:x="80742" fg:w="18"/><text x="55.5577%" y="847.50"></text></g><g><title>pthread_getattr_np (23 samples, 0.02%)</title><rect x="55.3070%" y="885" width="0.0158%" height="15" fill="rgb(214,140,3)" fg:x="80741" fg:w="23"/><text x="55.5570%" y="895.50"></text></g><g><title>os::current_stack_base (24 samples, 0.02%)</title><rect x="55.3070%" y="901" width="0.0164%" height="15" fill="rgb(221,177,4)" fg:x="80741" fg:w="24"/><text x="55.5570%" y="911.50"></text></g><g><title>Thread::record_stack_base_and_size (25 samples, 0.02%)</title><rect x="55.3070%" y="917" width="0.0171%" height="15" fill="rgb(238,139,3)" fg:x="80741" fg:w="25"/><text x="55.5570%" y="927.50"></text></g><g><title>__GI___clone (537 samples, 0.37%)</title><rect x="54.9569%" y="965" width="0.3678%" height="15" fill="rgb(216,17,39)" fg:x="80230" fg:w="537"/><text x="55.2069%" y="975.50"></text></g><g><title>start_thread (163 samples, 0.11%)</title><rect x="55.2131%" y="949" width="0.1117%" height="15" fill="rgb(238,120,9)" fg:x="80604" fg:w="163"/><text x="55.4631%" y="959.50"></text></g><g><title>thread_native_entry (106 samples, 0.07%)</title><rect x="55.2522%" y="933" width="0.0726%" height="15" fill="rgb(244,92,53)" fg:x="80661" fg:w="106"/><text x="55.5022%" y="943.50"></text></g><g><title>asm_exc_page_fault (25 samples, 0.02%)</title><rect x="55.3296%" y="965" width="0.0171%" height="15" fill="rgb(224,148,33)" fg:x="80774" fg:w="25"/><text x="55.5796%" y="975.50"></text></g><g><title>java (6,077 samples, 4.16%)</title><rect x="51.1915%" y="981" width="4.1627%" height="15" fill="rgb(243,6,36)" fg:x="74733" fg:w="6077"/><text x="51.4415%" y="991.50">java</text></g><g><title>__pthread_cond_wait (16 samples, 0.01%)</title><rect x="55.3597%" y="949" width="0.0110%" height="15" fill="rgb(230,102,11)" fg:x="80818" fg:w="16"/><text x="55.6097%" y="959.50"></text></g><g><title>[[heap]] (80 samples, 0.05%)</title><rect x="55.3542%" y="965" width="0.0548%" height="15" fill="rgb(234,148,36)" fg:x="80810" fg:w="80"/><text x="55.6042%" y="975.50"></text></g><g><title>[[stack]] (33 samples, 0.02%)</title><rect x="55.4090%" y="965" width="0.0226%" height="15" fill="rgb(251,153,25)" fg:x="80890" fg:w="33"/><text x="55.6590%" y="975.50"></text></g><g><title>[anon] (38 samples, 0.03%)</title><rect x="55.4316%" y="965" width="0.0260%" height="15" fill="rgb(215,129,8)" fg:x="80923" fg:w="38"/><text x="55.6816%" y="975.50"></text></g><g><title>[lld] (15 samples, 0.01%)</title><rect x="55.4652%" y="965" width="0.0103%" height="15" fill="rgb(224,128,35)" fg:x="80972" fg:w="15"/><text x="55.7152%" y="975.50"></text></g><g><title>perf_event_init_task (18 samples, 0.01%)</title><rect x="55.4967%" y="853" width="0.0123%" height="15" fill="rgb(237,56,52)" fg:x="81018" fg:w="18"/><text x="55.7467%" y="863.50"></text></g><g><title>inherit_task_group.isra.0 (18 samples, 0.01%)</title><rect x="55.4967%" y="837" width="0.0123%" height="15" fill="rgb(234,213,19)" fg:x="81018" fg:w="18"/><text x="55.7467%" y="847.50"></text></g><g><title>inherit_event.constprop.0 (18 samples, 0.01%)</title><rect x="55.4967%" y="821" width="0.0123%" height="15" fill="rgb(252,82,23)" fg:x="81018" fg:w="18"/><text x="55.7467%" y="831.50"></text></g><g><title>copy_process (45 samples, 0.03%)</title><rect x="55.4796%" y="869" width="0.0308%" height="15" fill="rgb(254,201,21)" fg:x="80993" fg:w="45"/><text x="55.7296%" y="879.50"></text></g><g><title>__GI___clone (56 samples, 0.04%)</title><rect x="55.4789%" y="949" width="0.0384%" height="15" fill="rgb(250,186,11)" fg:x="80992" fg:w="56"/><text x="55.7289%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.04%)</title><rect x="55.4789%" y="933" width="0.0384%" height="15" fill="rgb(211,174,5)" fg:x="80992" fg:w="56"/><text x="55.7289%" y="943.50"></text></g><g><title>do_syscall_64 (56 samples, 0.04%)</title><rect x="55.4789%" y="917" width="0.0384%" height="15" fill="rgb(214,121,10)" fg:x="80992" fg:w="56"/><text x="55.7289%" y="927.50"></text></g><g><title>__do_sys_clone (55 samples, 0.04%)</title><rect x="55.4796%" y="901" width="0.0377%" height="15" fill="rgb(241,66,2)" fg:x="80993" fg:w="55"/><text x="55.7296%" y="911.50"></text></g><g><title>kernel_clone (55 samples, 0.04%)</title><rect x="55.4796%" y="885" width="0.0377%" height="15" fill="rgb(220,167,19)" fg:x="80993" fg:w="55"/><text x="55.7296%" y="895.50"></text></g><g><title>[unknown] (190 samples, 0.13%)</title><rect x="55.4755%" y="965" width="0.1301%" height="15" fill="rgb(231,54,50)" fg:x="80987" fg:w="190"/><text x="55.7255%" y="975.50"></text></g><g><title>_raw_spin_lock_irq (21 samples, 0.01%)</title><rect x="55.6262%" y="917" width="0.0144%" height="15" fill="rgb(239,217,53)" fg:x="81207" fg:w="21"/><text x="55.8762%" y="927.50"></text></g><g><title>calculate_sigpending (29 samples, 0.02%)</title><rect x="55.6221%" y="933" width="0.0199%" height="15" fill="rgb(248,8,0)" fg:x="81201" fg:w="29"/><text x="55.8721%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (2,053 samples, 1.41%)</title><rect x="55.6872%" y="901" width="1.4063%" height="15" fill="rgb(229,118,37)" fg:x="81296" fg:w="2053"/><text x="55.9372%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,041 samples, 1.40%)</title><rect x="55.6954%" y="885" width="1.3981%" height="15" fill="rgb(253,223,43)" fg:x="81308" fg:w="2041"/><text x="55.9454%" y="895.50"></text></g><g><title>native_write_msr (2,038 samples, 1.40%)</title><rect x="55.6974%" y="869" width="1.3960%" height="15" fill="rgb(211,77,36)" fg:x="81311" fg:w="2038"/><text x="55.9474%" y="879.50"></text></g><g><title>__wake_up_common (23 samples, 0.02%)</title><rect x="57.1181%" y="741" width="0.0158%" height="15" fill="rgb(219,3,53)" fg:x="83385" fg:w="23"/><text x="57.3681%" y="751.50"></text></g><g><title>pollwake (21 samples, 0.01%)</title><rect x="57.1195%" y="725" width="0.0144%" height="15" fill="rgb(244,45,42)" fg:x="83387" fg:w="21"/><text x="57.3695%" y="735.50"></text></g><g><title>try_to_wake_up (20 samples, 0.01%)</title><rect x="57.1202%" y="709" width="0.0137%" height="15" fill="rgb(225,95,27)" fg:x="83388" fg:w="20"/><text x="57.3702%" y="719.50"></text></g><g><title>asm_call_sysvec_on_stack (33 samples, 0.02%)</title><rect x="57.1119%" y="869" width="0.0226%" height="15" fill="rgb(207,74,8)" fg:x="83376" fg:w="33"/><text x="57.3619%" y="879.50"></text></g><g><title>__sysvec_irq_work (27 samples, 0.02%)</title><rect x="57.1160%" y="853" width="0.0185%" height="15" fill="rgb(243,63,36)" fg:x="83382" fg:w="27"/><text x="57.3660%" y="863.50"></text></g><g><title>irq_work_run (27 samples, 0.02%)</title><rect x="57.1160%" y="837" width="0.0185%" height="15" fill="rgb(211,180,12)" fg:x="83382" fg:w="27"/><text x="57.3660%" y="847.50"></text></g><g><title>irq_work_run_list (27 samples, 0.02%)</title><rect x="57.1160%" y="821" width="0.0185%" height="15" fill="rgb(254,166,49)" fg:x="83382" fg:w="27"/><text x="57.3660%" y="831.50"></text></g><g><title>irq_work_single (27 samples, 0.02%)</title><rect x="57.1160%" y="805" width="0.0185%" height="15" fill="rgb(205,19,0)" fg:x="83382" fg:w="27"/><text x="57.3660%" y="815.50"></text></g><g><title>perf_pending_event (27 samples, 0.02%)</title><rect x="57.1160%" y="789" width="0.0185%" height="15" fill="rgb(224,172,32)" fg:x="83382" fg:w="27"/><text x="57.3660%" y="799.50"></text></g><g><title>perf_event_wakeup (25 samples, 0.02%)</title><rect x="57.1174%" y="773" width="0.0171%" height="15" fill="rgb(254,136,30)" fg:x="83384" fg:w="25"/><text x="57.3674%" y="783.50"></text></g><g><title>__wake_up_common_lock (24 samples, 0.02%)</title><rect x="57.1181%" y="757" width="0.0164%" height="15" fill="rgb(246,19,35)" fg:x="83385" fg:w="24"/><text x="57.3681%" y="767.50"></text></g><g><title>asm_sysvec_irq_work (58 samples, 0.04%)</title><rect x="57.0969%" y="901" width="0.0397%" height="15" fill="rgb(219,24,36)" fg:x="83354" fg:w="58"/><text x="57.3469%" y="911.50"></text></g><g><title>sysvec_irq_work (36 samples, 0.02%)</title><rect x="57.1119%" y="885" width="0.0247%" height="15" fill="rgb(251,55,1)" fg:x="83376" fg:w="36"/><text x="57.3619%" y="895.50"></text></g><g><title>schedule_tail (2,184 samples, 1.50%)</title><rect x="55.6419%" y="933" width="1.4960%" height="15" fill="rgb(218,117,39)" fg:x="81230" fg:w="2184"/><text x="55.8919%" y="943.50"></text></g><g><title>finish_task_switch (2,169 samples, 1.49%)</title><rect x="55.6522%" y="917" width="1.4857%" height="15" fill="rgb(248,169,11)" fg:x="81245" fg:w="2169"/><text x="55.9022%" y="927.50"></text></g><g><title>ret_from_fork (2,239 samples, 1.53%)</title><rect x="55.6221%" y="949" width="1.5337%" height="15" fill="rgb(244,40,44)" fg:x="81201" fg:w="2239"/><text x="55.8721%" y="959.50"></text></g><g><title>syscall_exit_to_user_mode (26 samples, 0.02%)</title><rect x="57.1380%" y="933" width="0.0178%" height="15" fill="rgb(234,62,37)" fg:x="83414" fg:w="26"/><text x="57.3880%" y="943.50"></text></g><g><title>exit_to_user_mode_prepare (24 samples, 0.02%)</title><rect x="57.1393%" y="917" width="0.0164%" height="15" fill="rgb(207,117,42)" fg:x="83416" fg:w="24"/><text x="57.3893%" y="927.50"></text></g><g><title>switch_fpu_return (21 samples, 0.01%)</title><rect x="57.1414%" y="901" width="0.0144%" height="15" fill="rgb(213,43,2)" fg:x="83419" fg:w="21"/><text x="57.3914%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (310 samples, 0.21%)</title><rect x="57.2770%" y="725" width="0.2123%" height="15" fill="rgb(244,202,51)" fg:x="83617" fg:w="310"/><text x="57.5270%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (306 samples, 0.21%)</title><rect x="57.2798%" y="709" width="0.2096%" height="15" fill="rgb(253,174,46)" fg:x="83621" fg:w="306"/><text x="57.5298%" y="719.50"></text></g><g><title>native_write_msr (303 samples, 0.21%)</title><rect x="57.2818%" y="693" width="0.2076%" height="15" fill="rgb(251,23,1)" fg:x="83624" fg:w="303"/><text x="57.5318%" y="703.50"></text></g><g><title>finish_task_switch (323 samples, 0.22%)</title><rect x="57.2688%" y="741" width="0.2213%" height="15" fill="rgb(253,26,1)" fg:x="83605" fg:w="323"/><text x="57.5188%" y="751.50"></text></g><g><title>futex_wait_queue_me (371 samples, 0.25%)</title><rect x="57.2503%" y="789" width="0.2541%" height="15" fill="rgb(216,89,31)" fg:x="83578" fg:w="371"/><text x="57.5003%" y="799.50"></text></g><g><title>schedule (366 samples, 0.25%)</title><rect x="57.2537%" y="773" width="0.2507%" height="15" fill="rgb(209,109,5)" fg:x="83583" fg:w="366"/><text x="57.5037%" y="783.50"></text></g><g><title>__schedule (365 samples, 0.25%)</title><rect x="57.2544%" y="757" width="0.2500%" height="15" fill="rgb(229,63,13)" fg:x="83584" fg:w="365"/><text x="57.5044%" y="767.50"></text></g><g><title>do_syscall_64 (394 samples, 0.27%)</title><rect x="57.2421%" y="853" width="0.2699%" height="15" fill="rgb(238,137,54)" fg:x="83566" fg:w="394"/><text x="57.4921%" y="863.50"></text></g><g><title>__x64_sys_futex (391 samples, 0.27%)</title><rect x="57.2441%" y="837" width="0.2678%" height="15" fill="rgb(228,1,9)" fg:x="83569" fg:w="391"/><text x="57.4941%" y="847.50"></text></g><g><title>do_futex (390 samples, 0.27%)</title><rect x="57.2448%" y="821" width="0.2671%" height="15" fill="rgb(249,120,48)" fg:x="83570" fg:w="390"/><text x="57.4948%" y="831.50"></text></g><g><title>futex_wait (389 samples, 0.27%)</title><rect x="57.2455%" y="805" width="0.2665%" height="15" fill="rgb(209,72,36)" fg:x="83571" fg:w="389"/><text x="57.4955%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (397 samples, 0.27%)</title><rect x="57.2414%" y="869" width="0.2719%" height="15" fill="rgb(247,98,49)" fg:x="83565" fg:w="397"/><text x="57.4914%" y="879.50"></text></g><g><title>__GI___pthread_mutex_lock (446 samples, 0.31%)</title><rect x="57.2099%" y="901" width="0.3055%" height="15" fill="rgb(233,75,36)" fg:x="83519" fg:w="446"/><text x="57.4599%" y="911.50"></text></g><g><title>__lll_lock_wait (411 samples, 0.28%)</title><rect x="57.2339%" y="885" width="0.2815%" height="15" fill="rgb(225,14,24)" fg:x="83554" fg:w="411"/><text x="57.4839%" y="895.50"></text></g><g><title>ttwu_do_activate (18 samples, 0.01%)</title><rect x="57.6133%" y="773" width="0.0123%" height="15" fill="rgb(237,193,20)" fg:x="84108" fg:w="18"/><text x="57.8633%" y="783.50"></text></g><g><title>__x64_sys_futex (119 samples, 0.08%)</title><rect x="57.5496%" y="853" width="0.0815%" height="15" fill="rgb(239,122,19)" fg:x="84015" fg:w="119"/><text x="57.7996%" y="863.50"></text></g><g><title>do_futex (113 samples, 0.08%)</title><rect x="57.5538%" y="837" width="0.0774%" height="15" fill="rgb(231,220,10)" fg:x="84021" fg:w="113"/><text x="57.8038%" y="847.50"></text></g><g><title>futex_wake (111 samples, 0.08%)</title><rect x="57.5551%" y="821" width="0.0760%" height="15" fill="rgb(220,66,15)" fg:x="84023" fg:w="111"/><text x="57.8051%" y="831.50"></text></g><g><title>wake_up_q (64 samples, 0.04%)</title><rect x="57.5873%" y="805" width="0.0438%" height="15" fill="rgb(215,171,52)" fg:x="84070" fg:w="64"/><text x="57.8373%" y="815.50"></text></g><g><title>try_to_wake_up (62 samples, 0.04%)</title><rect x="57.5887%" y="789" width="0.0425%" height="15" fill="rgb(241,169,50)" fg:x="84072" fg:w="62"/><text x="57.8387%" y="799.50"></text></g><g><title>do_syscall_64 (124 samples, 0.08%)</title><rect x="57.5490%" y="869" width="0.0849%" height="15" fill="rgb(236,189,0)" fg:x="84014" fg:w="124"/><text x="57.7990%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (128 samples, 0.09%)</title><rect x="57.5483%" y="885" width="0.0877%" height="15" fill="rgb(217,147,20)" fg:x="84013" fg:w="128"/><text x="57.7983%" y="895.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (177 samples, 0.12%)</title><rect x="57.5188%" y="901" width="0.1212%" height="15" fill="rgb(206,188,39)" fg:x="83970" fg:w="177"/><text x="57.7688%" y="911.50"></text></g><g><title>_int_free (19 samples, 0.01%)</title><rect x="57.6586%" y="885" width="0.0130%" height="15" fill="rgb(227,118,25)" fg:x="84174" fg:w="19"/><text x="57.9086%" y="895.50"></text></g><g><title>__split_vma (16 samples, 0.01%)</title><rect x="57.7031%" y="661" width="0.0110%" height="15" fill="rgb(248,171,40)" fg:x="84239" fg:w="16"/><text x="57.9531%" y="671.50"></text></g><g><title>mprotect_fixup (24 samples, 0.02%)</title><rect x="57.7024%" y="677" width="0.0164%" height="15" fill="rgb(251,90,54)" fg:x="84238" fg:w="24"/><text x="57.9524%" y="687.50"></text></g><g><title>[libc-2.31.so] (25 samples, 0.02%)</title><rect x="57.7024%" y="773" width="0.0171%" height="15" fill="rgb(234,11,46)" fg:x="84238" fg:w="25"/><text x="57.9524%" y="783.50"></text></g><g><title>__GI___mprotect (25 samples, 0.02%)</title><rect x="57.7024%" y="757" width="0.0171%" height="15" fill="rgb(229,134,13)" fg:x="84238" fg:w="25"/><text x="57.9524%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.02%)</title><rect x="57.7024%" y="741" width="0.0171%" height="15" fill="rgb(223,129,3)" fg:x="84238" fg:w="25"/><text x="57.9524%" y="751.50"></text></g><g><title>do_syscall_64 (25 samples, 0.02%)</title><rect x="57.7024%" y="725" width="0.0171%" height="15" fill="rgb(221,124,13)" fg:x="84238" fg:w="25"/><text x="57.9524%" y="735.50"></text></g><g><title>__x64_sys_mprotect (25 samples, 0.02%)</title><rect x="57.7024%" y="709" width="0.0171%" height="15" fill="rgb(234,3,18)" fg:x="84238" fg:w="25"/><text x="57.9524%" y="719.50"></text></g><g><title>do_mprotect_pkey (25 samples, 0.02%)</title><rect x="57.7024%" y="693" width="0.0171%" height="15" fill="rgb(249,199,20)" fg:x="84238" fg:w="25"/><text x="57.9524%" y="703.50"></text></g><g><title>perf_event_mmap (15 samples, 0.01%)</title><rect x="57.7380%" y="645" width="0.0103%" height="15" fill="rgb(224,134,6)" fg:x="84290" fg:w="15"/><text x="57.9880%" y="655.50"></text></g><g><title>do_mmap (55 samples, 0.04%)</title><rect x="57.7236%" y="677" width="0.0377%" height="15" fill="rgb(254,83,26)" fg:x="84269" fg:w="55"/><text x="57.9736%" y="687.50"></text></g><g><title>mmap_region (39 samples, 0.03%)</title><rect x="57.7346%" y="661" width="0.0267%" height="15" fill="rgb(217,88,9)" fg:x="84285" fg:w="39"/><text x="57.9846%" y="671.50"></text></g><g><title>__GI___mmap64 (71 samples, 0.05%)</title><rect x="57.7223%" y="757" width="0.0486%" height="15" fill="rgb(225,73,2)" fg:x="84267" fg:w="71"/><text x="57.9723%" y="767.50"></text></g><g><title>__GI___mmap64 (71 samples, 0.05%)</title><rect x="57.7223%" y="741" width="0.0486%" height="15" fill="rgb(226,44,39)" fg:x="84267" fg:w="71"/><text x="57.9723%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (71 samples, 0.05%)</title><rect x="57.7223%" y="725" width="0.0486%" height="15" fill="rgb(228,53,17)" fg:x="84267" fg:w="71"/><text x="57.9723%" y="735.50"></text></g><g><title>do_syscall_64 (71 samples, 0.05%)</title><rect x="57.7223%" y="709" width="0.0486%" height="15" fill="rgb(212,27,27)" fg:x="84267" fg:w="71"/><text x="57.9723%" y="719.50"></text></g><g><title>vm_mmap_pgoff (70 samples, 0.05%)</title><rect x="57.7229%" y="693" width="0.0479%" height="15" fill="rgb(241,50,6)" fg:x="84268" fg:w="70"/><text x="57.9729%" y="703.50"></text></g><g><title>__GI_munmap (17 samples, 0.01%)</title><rect x="57.7709%" y="757" width="0.0116%" height="15" fill="rgb(225,28,51)" fg:x="84338" fg:w="17"/><text x="58.0209%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="57.7716%" y="741" width="0.0110%" height="15" fill="rgb(215,33,16)" fg:x="84339" fg:w="16"/><text x="58.0216%" y="751.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="57.7716%" y="725" width="0.0110%" height="15" fill="rgb(243,40,39)" fg:x="84339" fg:w="16"/><text x="58.0216%" y="735.50"></text></g><g><title>__x64_sys_munmap (16 samples, 0.01%)</title><rect x="57.7716%" y="709" width="0.0110%" height="15" fill="rgb(225,11,42)" fg:x="84339" fg:w="16"/><text x="58.0216%" y="719.50"></text></g><g><title>__vm_munmap (16 samples, 0.01%)</title><rect x="57.7716%" y="693" width="0.0110%" height="15" fill="rgb(241,220,38)" fg:x="84339" fg:w="16"/><text x="58.0216%" y="703.50"></text></g><g><title>asm_exc_page_fault (29 samples, 0.02%)</title><rect x="57.7825%" y="757" width="0.0199%" height="15" fill="rgb(244,52,35)" fg:x="84355" fg:w="29"/><text x="58.0325%" y="767.50"></text></g><g><title>exc_page_fault (29 samples, 0.02%)</title><rect x="57.7825%" y="741" width="0.0199%" height="15" fill="rgb(246,42,46)" fg:x="84355" fg:w="29"/><text x="58.0325%" y="751.50"></text></g><g><title>do_user_addr_fault (29 samples, 0.02%)</title><rect x="57.7825%" y="725" width="0.0199%" height="15" fill="rgb(205,184,13)" fg:x="84355" fg:w="29"/><text x="58.0325%" y="735.50"></text></g><g><title>handle_mm_fault (29 samples, 0.02%)</title><rect x="57.7825%" y="709" width="0.0199%" height="15" fill="rgb(209,48,36)" fg:x="84355" fg:w="29"/><text x="58.0325%" y="719.50"></text></g><g><title>arena_get2 (147 samples, 0.10%)</title><rect x="57.7024%" y="805" width="0.1007%" height="15" fill="rgb(244,34,51)" fg:x="84238" fg:w="147"/><text x="57.9524%" y="815.50"></text></g><g><title>_int_new_arena (147 samples, 0.10%)</title><rect x="57.7024%" y="789" width="0.1007%" height="15" fill="rgb(221,107,33)" fg:x="84238" fg:w="147"/><text x="57.9524%" y="799.50"></text></g><g><title>new_heap (121 samples, 0.08%)</title><rect x="57.7202%" y="773" width="0.0829%" height="15" fill="rgb(224,203,12)" fg:x="84264" fg:w="121"/><text x="57.9702%" y="783.50"></text></g><g><title>__GI___libc_malloc (191 samples, 0.13%)</title><rect x="57.6729%" y="869" width="0.1308%" height="15" fill="rgb(230,215,18)" fg:x="84195" fg:w="191"/><text x="57.9229%" y="879.50"></text></g><g><title>tcache_init (151 samples, 0.10%)</title><rect x="57.7003%" y="853" width="0.1034%" height="15" fill="rgb(206,185,35)" fg:x="84235" fg:w="151"/><text x="57.9503%" y="863.50"></text></g><g><title>tcache_init (151 samples, 0.10%)</title><rect x="57.7003%" y="837" width="0.1034%" height="15" fill="rgb(228,140,34)" fg:x="84235" fg:w="151"/><text x="57.9503%" y="847.50"></text></g><g><title>arena_get2 (148 samples, 0.10%)</title><rect x="57.7024%" y="821" width="0.1014%" height="15" fill="rgb(208,93,13)" fg:x="84238" fg:w="148"/><text x="57.9524%" y="831.50"></text></g><g><title>operator new (202 samples, 0.14%)</title><rect x="57.6729%" y="885" width="0.1384%" height="15" fill="rgb(221,193,39)" fg:x="84195" fg:w="202"/><text x="57.9229%" y="895.50"></text></g><g><title>_int_free (22 samples, 0.02%)</title><rect x="57.8325%" y="869" width="0.0151%" height="15" fill="rgb(241,132,34)" fg:x="84428" fg:w="22"/><text x="58.0825%" y="879.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (307 samples, 0.21%)</title><rect x="57.6414%" y="901" width="0.2103%" height="15" fill="rgb(221,141,10)" fg:x="84149" fg:w="307"/><text x="57.8914%" y="911.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_manager (51 samples, 0.03%)</title><rect x="57.8168%" y="885" width="0.0349%" height="15" fill="rgb(226,90,31)" fg:x="84405" fg:w="51"/><text x="58.0668%" y="895.50"></text></g><g><title>__GI___pthread_mutex_lock (27 samples, 0.02%)</title><rect x="57.8538%" y="885" width="0.0185%" height="15" fill="rgb(243,75,5)" fg:x="84459" fg:w="27"/><text x="58.1038%" y="895.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (149 samples, 0.10%)</title><rect x="57.8723%" y="885" width="0.1021%" height="15" fill="rgb(227,156,21)" fg:x="84486" fg:w="149"/><text x="58.1223%" y="895.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;llvm::parallelForEach&lt;lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1}&gt;(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}&gt; (109 samples, 0.07%)</title><rect x="57.8997%" y="869" width="0.0747%" height="15" fill="rgb(250,195,8)" fg:x="84526" fg:w="109"/><text x="58.1497%" y="879.50"></text></g><g><title>lld::elf::computeIsPreemptible (67 samples, 0.05%)</title><rect x="57.9284%" y="853" width="0.0459%" height="15" fill="rgb(220,134,5)" fg:x="84568" fg:w="67"/><text x="58.1784%" y="863.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (196 samples, 0.13%)</title><rect x="57.8517%" y="901" width="0.1343%" height="15" fill="rgb(246,106,34)" fg:x="84456" fg:w="196"/><text x="58.1017%" y="911.50"></text></g><g><title>__condvar_confirm_wakeup (15 samples, 0.01%)</title><rect x="58.0230%" y="853" width="0.0103%" height="15" fill="rgb(205,1,4)" fg:x="84706" fg:w="15"/><text x="58.2730%" y="863.50"></text></g><g><title>mark_wake_futex (48 samples, 0.03%)</title><rect x="58.1463%" y="741" width="0.0329%" height="15" fill="rgb(224,151,29)" fg:x="84886" fg:w="48"/><text x="58.3963%" y="751.50"></text></g><g><title>__unqueue_futex (20 samples, 0.01%)</title><rect x="58.1655%" y="725" width="0.0137%" height="15" fill="rgb(251,196,0)" fg:x="84914" fg:w="20"/><text x="58.4155%" y="735.50"></text></g><g><title>select_task_rq_fair (78 samples, 0.05%)</title><rect x="58.2066%" y="709" width="0.0534%" height="15" fill="rgb(212,127,0)" fg:x="84974" fg:w="78"/><text x="58.4566%" y="719.50"></text></g><g><title>update_cfs_rq_h_load (29 samples, 0.02%)</title><rect x="58.2401%" y="693" width="0.0199%" height="15" fill="rgb(236,71,53)" fg:x="85023" fg:w="29"/><text x="58.4901%" y="703.50"></text></g><g><title>enqueue_task_fair (68 samples, 0.05%)</title><rect x="58.2655%" y="693" width="0.0466%" height="15" fill="rgb(227,99,0)" fg:x="85060" fg:w="68"/><text x="58.5155%" y="703.50"></text></g><g><title>enqueue_entity (51 samples, 0.03%)</title><rect x="58.2771%" y="677" width="0.0349%" height="15" fill="rgb(239,89,21)" fg:x="85077" fg:w="51"/><text x="58.5271%" y="687.50"></text></g><g><title>update_load_avg (20 samples, 0.01%)</title><rect x="58.2983%" y="661" width="0.0137%" height="15" fill="rgb(243,122,19)" fg:x="85108" fg:w="20"/><text x="58.5483%" y="671.50"></text></g><g><title>ttwu_do_activate (174 samples, 0.12%)</title><rect x="58.2614%" y="709" width="0.1192%" height="15" fill="rgb(229,192,45)" fg:x="85054" fg:w="174"/><text x="58.5114%" y="719.50"></text></g><g><title>psi_task_change (100 samples, 0.07%)</title><rect x="58.3120%" y="693" width="0.0685%" height="15" fill="rgb(235,165,35)" fg:x="85128" fg:w="100"/><text x="58.5620%" y="703.50"></text></g><g><title>psi_group_change (81 samples, 0.06%)</title><rect x="58.3251%" y="677" width="0.0555%" height="15" fill="rgb(253,202,0)" fg:x="85147" fg:w="81"/><text x="58.5751%" y="687.50"></text></g><g><title>record_times (24 samples, 0.02%)</title><rect x="58.3641%" y="661" width="0.0164%" height="15" fill="rgb(235,51,20)" fg:x="85204" fg:w="24"/><text x="58.6141%" y="671.50"></text></g><g><title>sched_clock_cpu (20 samples, 0.01%)</title><rect x="58.3668%" y="645" width="0.0137%" height="15" fill="rgb(218,95,46)" fg:x="85208" fg:w="20"/><text x="58.6168%" y="655.50"></text></g><g><title>ttwu_do_wakeup (17 samples, 0.01%)</title><rect x="58.3805%" y="709" width="0.0116%" height="15" fill="rgb(212,81,10)" fg:x="85228" fg:w="17"/><text x="58.6305%" y="719.50"></text></g><g><title>__x64_sys_futex (465 samples, 0.32%)</title><rect x="58.0928%" y="789" width="0.3185%" height="15" fill="rgb(240,59,0)" fg:x="84808" fg:w="465"/><text x="58.3428%" y="799.50"></text></g><g><title>do_futex (462 samples, 0.32%)</title><rect x="58.0949%" y="773" width="0.3165%" height="15" fill="rgb(212,191,42)" fg:x="84811" fg:w="462"/><text x="58.3449%" y="783.50"></text></g><g><title>futex_wake (458 samples, 0.31%)</title><rect x="58.0976%" y="757" width="0.3137%" height="15" fill="rgb(233,140,3)" fg:x="84815" fg:w="458"/><text x="58.3476%" y="767.50"></text></g><g><title>wake_up_q (336 samples, 0.23%)</title><rect x="58.1812%" y="741" width="0.2302%" height="15" fill="rgb(215,69,23)" fg:x="84937" fg:w="336"/><text x="58.4312%" y="751.50"></text></g><g><title>try_to_wake_up (327 samples, 0.22%)</title><rect x="58.1874%" y="725" width="0.2240%" height="15" fill="rgb(240,202,20)" fg:x="84946" fg:w="327"/><text x="58.4374%" y="735.50"></text></g><g><title>update_rq_clock (18 samples, 0.01%)</title><rect x="58.3990%" y="709" width="0.0123%" height="15" fill="rgb(209,146,50)" fg:x="85255" fg:w="18"/><text x="58.6490%" y="719.50"></text></g><g><title>do_syscall_64 (477 samples, 0.33%)</title><rect x="58.0894%" y="805" width="0.3267%" height="15" fill="rgb(253,102,54)" fg:x="84803" fg:w="477"/><text x="58.3394%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (482 samples, 0.33%)</title><rect x="58.0867%" y="821" width="0.3302%" height="15" fill="rgb(250,173,47)" fg:x="84799" fg:w="482"/><text x="58.3367%" y="831.50"></text></g><g><title>__condvar_dec_grefs (562 samples, 0.38%)</title><rect x="58.0332%" y="853" width="0.3850%" height="15" fill="rgb(232,142,7)" fg:x="84721" fg:w="562"/><text x="58.2832%" y="863.50"></text></g><g><title>futex_wake (498 samples, 0.34%)</title><rect x="58.0771%" y="837" width="0.3411%" height="15" fill="rgb(230,157,47)" fg:x="84785" fg:w="498"/><text x="58.3271%" y="847.50"></text></g><g><title>ttwu_do_activate (15 samples, 0.01%)</title><rect x="58.5182%" y="725" width="0.0103%" height="15" fill="rgb(214,177,35)" fg:x="85429" fg:w="15"/><text x="58.7682%" y="735.50"></text></g><g><title>__x64_sys_futex (117 samples, 0.08%)</title><rect x="58.4531%" y="805" width="0.0801%" height="15" fill="rgb(234,119,46)" fg:x="85334" fg:w="117"/><text x="58.7031%" y="815.50"></text></g><g><title>do_futex (114 samples, 0.08%)</title><rect x="58.4552%" y="789" width="0.0781%" height="15" fill="rgb(241,180,50)" fg:x="85337" fg:w="114"/><text x="58.7052%" y="799.50"></text></g><g><title>futex_wake (107 samples, 0.07%)</title><rect x="58.4600%" y="773" width="0.0733%" height="15" fill="rgb(221,54,25)" fg:x="85344" fg:w="107"/><text x="58.7100%" y="783.50"></text></g><g><title>wake_up_q (43 samples, 0.03%)</title><rect x="58.5038%" y="757" width="0.0295%" height="15" fill="rgb(209,157,44)" fg:x="85408" fg:w="43"/><text x="58.7538%" y="767.50"></text></g><g><title>try_to_wake_up (43 samples, 0.03%)</title><rect x="58.5038%" y="741" width="0.0295%" height="15" fill="rgb(246,115,41)" fg:x="85408" fg:w="43"/><text x="58.7538%" y="751.50"></text></g><g><title>do_syscall_64 (125 samples, 0.09%)</title><rect x="58.4504%" y="821" width="0.0856%" height="15" fill="rgb(229,86,1)" fg:x="85330" fg:w="125"/><text x="58.7004%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (133 samples, 0.09%)</title><rect x="58.4477%" y="837" width="0.0911%" height="15" fill="rgb(240,108,53)" fg:x="85326" fg:w="133"/><text x="58.6977%" y="847.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (167 samples, 0.11%)</title><rect x="58.4264%" y="853" width="0.1144%" height="15" fill="rgb(227,134,2)" fg:x="85295" fg:w="167"/><text x="58.6764%" y="863.50"></text></g><g><title>__pthread_disable_asynccancel (69 samples, 0.05%)</title><rect x="58.5662%" y="837" width="0.0473%" height="15" fill="rgb(213,129,25)" fg:x="85499" fg:w="69"/><text x="58.8162%" y="847.50"></text></g><g><title>__pthread_enable_asynccancel (16 samples, 0.01%)</title><rect x="58.6134%" y="837" width="0.0110%" height="15" fill="rgb(226,35,21)" fg:x="85568" fg:w="16"/><text x="58.8634%" y="847.50"></text></g><g><title>entry_SYSCALL_64 (23 samples, 0.02%)</title><rect x="58.6271%" y="837" width="0.0158%" height="15" fill="rgb(208,129,26)" fg:x="85588" fg:w="23"/><text x="58.8771%" y="847.50"></text></g><g><title>plist_add (39 samples, 0.03%)</title><rect x="58.8265%" y="741" width="0.0267%" height="15" fill="rgb(224,83,6)" fg:x="85879" fg:w="39"/><text x="59.0765%" y="751.50"></text></g><g><title>__list_add_valid (21 samples, 0.01%)</title><rect x="58.8388%" y="725" width="0.0144%" height="15" fill="rgb(227,52,39)" fg:x="85897" fg:w="21"/><text x="59.0888%" y="735.50"></text></g><g><title>_raw_spin_lock (16 samples, 0.01%)</title><rect x="58.9395%" y="693" width="0.0110%" height="15" fill="rgb(241,30,17)" fg:x="86044" fg:w="16"/><text x="59.1895%" y="703.50"></text></g><g><title>__perf_event_task_sched_out (37 samples, 0.03%)</title><rect x="58.9258%" y="709" width="0.0253%" height="15" fill="rgb(246,186,42)" fg:x="86024" fg:w="37"/><text x="59.1758%" y="719.50"></text></g><g><title>_raw_spin_lock (22 samples, 0.02%)</title><rect x="58.9511%" y="709" width="0.0151%" height="15" fill="rgb(221,169,15)" fg:x="86061" fg:w="22"/><text x="59.2011%" y="719.50"></text></g><g><title>reweight_entity (15 samples, 0.01%)</title><rect x="59.0190%" y="677" width="0.0103%" height="15" fill="rgb(235,108,21)" fg:x="86160" fg:w="15"/><text x="59.2690%" y="687.50"></text></g><g><title>update_cfs_group (23 samples, 0.02%)</title><rect x="59.0292%" y="677" width="0.0158%" height="15" fill="rgb(219,148,30)" fg:x="86175" fg:w="23"/><text x="59.2792%" y="687.50"></text></g><g><title>__calc_delta (22 samples, 0.02%)</title><rect x="59.0690%" y="661" width="0.0151%" height="15" fill="rgb(220,109,5)" fg:x="86233" fg:w="22"/><text x="59.3190%" y="671.50"></text></g><g><title>cpuacct_charge (24 samples, 0.02%)</title><rect x="59.0895%" y="661" width="0.0164%" height="15" fill="rgb(213,203,48)" fg:x="86263" fg:w="24"/><text x="59.3395%" y="671.50"></text></g><g><title>update_curr (97 samples, 0.07%)</title><rect x="59.0450%" y="677" width="0.0664%" height="15" fill="rgb(244,71,33)" fg:x="86198" fg:w="97"/><text x="59.2950%" y="687.50"></text></g><g><title>__update_load_avg_cfs_rq (27 samples, 0.02%)</title><rect x="59.1423%" y="661" width="0.0185%" height="15" fill="rgb(209,23,2)" fg:x="86340" fg:w="27"/><text x="59.3923%" y="671.50"></text></g><g><title>__update_load_avg_se (30 samples, 0.02%)</title><rect x="59.1607%" y="661" width="0.0205%" height="15" fill="rgb(219,97,7)" fg:x="86367" fg:w="30"/><text x="59.4107%" y="671.50"></text></g><g><title>dequeue_entity (281 samples, 0.19%)</title><rect x="58.9916%" y="693" width="0.1925%" height="15" fill="rgb(216,161,23)" fg:x="86120" fg:w="281"/><text x="59.2416%" y="703.50"></text></g><g><title>update_load_avg (106 samples, 0.07%)</title><rect x="59.1114%" y="677" width="0.0726%" height="15" fill="rgb(207,45,42)" fg:x="86295" fg:w="106"/><text x="59.3614%" y="687.50"></text></g><g><title>dequeue_task_fair (323 samples, 0.22%)</title><rect x="58.9662%" y="709" width="0.2213%" height="15" fill="rgb(241,61,4)" fg:x="86083" fg:w="323"/><text x="59.2162%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (10,103 samples, 6.92%)</title><rect x="59.3060%" y="693" width="6.9205%" height="15" fill="rgb(236,170,1)" fg:x="86579" fg:w="10103"/><text x="59.5560%" y="703.50">__perf_ev..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (10,029 samples, 6.87%)</title><rect x="59.3567%" y="677" width="6.8698%" height="15" fill="rgb(239,72,5)" fg:x="86653" fg:w="10029"/><text x="59.6067%" y="687.50">__intel_p..</text></g><g><title>native_write_msr (9,998 samples, 6.85%)</title><rect x="59.3779%" y="661" width="6.8486%" height="15" fill="rgb(214,13,50)" fg:x="86684" fg:w="9998"/><text x="59.6279%" y="671.50">native_wr..</text></g><g><title>asm_sysvec_apic_timer_interrupt (16 samples, 0.01%)</title><rect x="66.2264%" y="693" width="0.0110%" height="15" fill="rgb(224,88,9)" fg:x="96682" fg:w="16"/><text x="66.4764%" y="703.50"></text></g><g><title>sysvec_apic_timer_interrupt (15 samples, 0.01%)</title><rect x="66.2271%" y="677" width="0.0103%" height="15" fill="rgb(238,192,34)" fg:x="96683" fg:w="15"/><text x="66.4771%" y="687.50"></text></g><g><title>select_task_rq_fair (16 samples, 0.01%)</title><rect x="66.3237%" y="485" width="0.0110%" height="15" fill="rgb(217,203,50)" fg:x="96824" fg:w="16"/><text x="66.5737%" y="495.50"></text></g><g><title>ttwu_do_activate (21 samples, 0.01%)</title><rect x="66.3388%" y="485" width="0.0144%" height="15" fill="rgb(241,123,32)" fg:x="96846" fg:w="21"/><text x="66.5888%" y="495.50"></text></g><g><title>__wake_up_common (68 samples, 0.05%)</title><rect x="66.3093%" y="533" width="0.0466%" height="15" fill="rgb(248,151,39)" fg:x="96803" fg:w="68"/><text x="66.5593%" y="543.50"></text></g><g><title>pollwake (65 samples, 0.04%)</title><rect x="66.3114%" y="517" width="0.0445%" height="15" fill="rgb(208,89,6)" fg:x="96806" fg:w="65"/><text x="66.5614%" y="527.50"></text></g><g><title>try_to_wake_up (58 samples, 0.04%)</title><rect x="66.3162%" y="501" width="0.0397%" height="15" fill="rgb(254,43,26)" fg:x="96813" fg:w="58"/><text x="66.5662%" y="511.50"></text></g><g><title>irq_work_run (81 samples, 0.06%)</title><rect x="66.3011%" y="629" width="0.0555%" height="15" fill="rgb(216,158,13)" fg:x="96791" fg:w="81"/><text x="66.5511%" y="639.50"></text></g><g><title>irq_work_run_list (80 samples, 0.05%)</title><rect x="66.3018%" y="613" width="0.0548%" height="15" fill="rgb(212,47,37)" fg:x="96792" fg:w="80"/><text x="66.5518%" y="623.50"></text></g><g><title>irq_work_single (80 samples, 0.05%)</title><rect x="66.3018%" y="597" width="0.0548%" height="15" fill="rgb(254,16,10)" fg:x="96792" fg:w="80"/><text x="66.5518%" y="607.50"></text></g><g><title>perf_pending_event (75 samples, 0.05%)</title><rect x="66.3052%" y="581" width="0.0514%" height="15" fill="rgb(223,228,16)" fg:x="96797" fg:w="75"/><text x="66.5552%" y="591.50"></text></g><g><title>perf_event_wakeup (69 samples, 0.05%)</title><rect x="66.3093%" y="565" width="0.0473%" height="15" fill="rgb(249,108,50)" fg:x="96803" fg:w="69"/><text x="66.5593%" y="575.50"></text></g><g><title>__wake_up_common_lock (69 samples, 0.05%)</title><rect x="66.3093%" y="549" width="0.0473%" height="15" fill="rgb(208,220,5)" fg:x="96803" fg:w="69"/><text x="66.5593%" y="559.50"></text></g><g><title>asm_call_sysvec_on_stack (107 samples, 0.07%)</title><rect x="66.2908%" y="661" width="0.0733%" height="15" fill="rgb(217,89,48)" fg:x="96776" fg:w="107"/><text x="66.5408%" y="671.50"></text></g><g><title>__sysvec_irq_work (95 samples, 0.07%)</title><rect x="66.2991%" y="645" width="0.0651%" height="15" fill="rgb(212,113,41)" fg:x="96788" fg:w="95"/><text x="66.5491%" y="655.50"></text></g><g><title>asm_sysvec_irq_work (190 samples, 0.13%)</title><rect x="66.2395%" y="693" width="0.1301%" height="15" fill="rgb(231,127,5)" fg:x="96701" fg:w="190"/><text x="66.4895%" y="703.50"></text></g><g><title>sysvec_irq_work (120 samples, 0.08%)</title><rect x="66.2874%" y="677" width="0.0822%" height="15" fill="rgb(217,141,17)" fg:x="96771" fg:w="120"/><text x="66.5374%" y="687.50"></text></g><g><title>finish_task_switch (10,498 samples, 7.19%)</title><rect x="59.1875%" y="709" width="7.1911%" height="15" fill="rgb(245,125,54)" fg:x="86406" fg:w="10498"/><text x="59.4375%" y="719.50">finish_tas..</text></g><g><title>load_balance (20 samples, 0.01%)</title><rect x="66.4107%" y="677" width="0.0137%" height="15" fill="rgb(248,125,3)" fg:x="96951" fg:w="20"/><text x="66.6607%" y="687.50"></text></g><g><title>newidle_balance (66 samples, 0.05%)</title><rect x="66.3840%" y="693" width="0.0452%" height="15" fill="rgb(236,119,51)" fg:x="96912" fg:w="66"/><text x="66.6340%" y="703.50"></text></g><g><title>pick_next_task_fair (79 samples, 0.05%)</title><rect x="66.3785%" y="709" width="0.0541%" height="15" fill="rgb(239,99,8)" fg:x="96904" fg:w="79"/><text x="66.6285%" y="719.50"></text></g><g><title>pick_next_task_idle (34 samples, 0.02%)</title><rect x="66.4326%" y="709" width="0.0233%" height="15" fill="rgb(224,228,4)" fg:x="96983" fg:w="34"/><text x="66.6826%" y="719.50"></text></g><g><title>__update_idle_core (30 samples, 0.02%)</title><rect x="66.4354%" y="693" width="0.0205%" height="15" fill="rgb(220,131,45)" fg:x="96987" fg:w="30"/><text x="66.6854%" y="703.50"></text></g><g><title>psi_task_change (213 samples, 0.15%)</title><rect x="66.4559%" y="709" width="0.1459%" height="15" fill="rgb(215,62,5)" fg:x="97017" fg:w="213"/><text x="66.7059%" y="719.50"></text></g><g><title>psi_group_change (179 samples, 0.12%)</title><rect x="66.4792%" y="693" width="0.1226%" height="15" fill="rgb(253,12,24)" fg:x="97051" fg:w="179"/><text x="66.7292%" y="703.50"></text></g><g><title>record_times (46 samples, 0.03%)</title><rect x="66.5703%" y="677" width="0.0315%" height="15" fill="rgb(248,120,50)" fg:x="97184" fg:w="46"/><text x="66.8203%" y="687.50"></text></g><g><title>sched_clock_cpu (35 samples, 0.02%)</title><rect x="66.5778%" y="661" width="0.0240%" height="15" fill="rgb(245,194,10)" fg:x="97195" fg:w="35"/><text x="66.8278%" y="671.50"></text></g><g><title>sched_clock (32 samples, 0.02%)</title><rect x="66.5799%" y="645" width="0.0219%" height="15" fill="rgb(241,149,38)" fg:x="97198" fg:w="32"/><text x="66.8299%" y="655.50"></text></g><g><title>native_sched_clock (30 samples, 0.02%)</title><rect x="66.5813%" y="629" width="0.0205%" height="15" fill="rgb(219,215,7)" fg:x="97200" fg:w="30"/><text x="66.8313%" y="639.50"></text></g><g><title>psi_task_switch (20 samples, 0.01%)</title><rect x="66.6018%" y="709" width="0.0137%" height="15" fill="rgb(208,120,31)" fg:x="97230" fg:w="20"/><text x="66.8518%" y="719.50"></text></g><g><title>futex_wait_queue_me (11,481 samples, 7.86%)</title><rect x="58.7717%" y="757" width="7.8644%" height="15" fill="rgb(244,30,8)" fg:x="85799" fg:w="11481"/><text x="59.0217%" y="767.50">futex_wait_..</text></g><g><title>schedule (11,362 samples, 7.78%)</title><rect x="58.8532%" y="741" width="7.7829%" height="15" fill="rgb(238,35,44)" fg:x="85918" fg:w="11362"/><text x="59.1032%" y="751.50">schedule</text></g><g><title>__schedule (11,339 samples, 7.77%)</title><rect x="58.8689%" y="725" width="7.7671%" height="15" fill="rgb(243,218,37)" fg:x="85941" fg:w="11339"/><text x="59.1189%" y="735.50">__schedule</text></g><g><title>update_rq_clock (18 samples, 0.01%)</title><rect x="66.6237%" y="709" width="0.0123%" height="15" fill="rgb(218,169,10)" fg:x="97262" fg:w="18"/><text x="66.8737%" y="719.50"></text></g><g><title>__get_user_nocheck_4 (24 samples, 0.02%)</title><rect x="66.6724%" y="741" width="0.0164%" height="15" fill="rgb(221,144,10)" fg:x="97333" fg:w="24"/><text x="66.9224%" y="751.50"></text></g><g><title>_raw_spin_lock (17 samples, 0.01%)</title><rect x="66.6888%" y="741" width="0.0116%" height="15" fill="rgb(226,41,38)" fg:x="97357" fg:w="17"/><text x="66.9388%" y="751.50"></text></g><g><title>__x64_sys_futex (11,747 samples, 8.05%)</title><rect x="58.6655%" y="805" width="8.0466%" height="15" fill="rgb(228,3,1)" fg:x="85644" fg:w="11747"/><text x="58.9155%" y="815.50">__x64_sys_f..</text></g><g><title>do_futex (11,719 samples, 8.03%)</title><rect x="58.6847%" y="789" width="8.0274%" height="15" fill="rgb(209,129,12)" fg:x="85672" fg:w="11719"/><text x="58.9347%" y="799.50">do_futex</text></g><g><title>futex_wait (11,677 samples, 8.00%)</title><rect x="58.7134%" y="773" width="7.9987%" height="15" fill="rgb(213,136,33)" fg:x="85714" fg:w="11677"/><text x="58.9634%" y="783.50">futex_wait</text></g><g><title>futex_wait_setup (111 samples, 0.08%)</title><rect x="66.6361%" y="757" width="0.0760%" height="15" fill="rgb(209,181,29)" fg:x="97280" fg:w="111"/><text x="66.8861%" y="767.50"></text></g><g><title>do_syscall_64 (11,771 samples, 8.06%)</title><rect x="58.6497%" y="821" width="8.0630%" height="15" fill="rgb(234,173,18)" fg:x="85621" fg:w="11771"/><text x="58.8997%" y="831.50">do_syscall_..</text></g><g><title>entry_SYSCALL_64_after_hwframe (11,988 samples, 8.21%)</title><rect x="58.6429%" y="837" width="8.2117%" height="15" fill="rgb(227,73,47)" fg:x="85611" fg:w="11988"/><text x="58.8929%" y="847.50">entry_SYSCA..</text></g><g><title>syscall_exit_to_user_mode (207 samples, 0.14%)</title><rect x="66.7128%" y="821" width="0.1418%" height="15" fill="rgb(234,9,34)" fg:x="97392" fg:w="207"/><text x="66.9628%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (191 samples, 0.13%)</title><rect x="66.7237%" y="805" width="0.1308%" height="15" fill="rgb(235,172,15)" fg:x="97408" fg:w="191"/><text x="66.9737%" y="815.50"></text></g><g><title>switch_fpu_return (168 samples, 0.12%)</title><rect x="66.7395%" y="789" width="0.1151%" height="15" fill="rgb(245,61,2)" fg:x="97431" fg:w="168"/><text x="66.9895%" y="799.50"></text></g><g><title>copy_kernel_to_fpregs (128 samples, 0.09%)</title><rect x="66.7669%" y="773" width="0.0877%" height="15" fill="rgb(238,39,47)" fg:x="97471" fg:w="128"/><text x="67.0169%" y="783.50"></text></g><g><title>__pthread_cond_wait (12,964 samples, 8.88%)</title><rect x="57.9942%" y="885" width="8.8802%" height="15" fill="rgb(234,37,24)" fg:x="84664" fg:w="12964"/><text x="58.2442%" y="895.50">__pthread_con..</text></g><g><title>__pthread_cond_wait_common (12,964 samples, 8.88%)</title><rect x="57.9942%" y="869" width="8.8802%" height="15" fill="rgb(248,223,24)" fg:x="84664" fg:w="12964"/><text x="58.2442%" y="879.50">__pthread_con..</text></g><g><title>futex_wait_cancelable (12,163 samples, 8.33%)</title><rect x="58.5429%" y="853" width="8.3316%" height="15" fill="rgb(223,12,15)" fg:x="85465" fg:w="12163"/><text x="58.7929%" y="863.50">futex_wait_c..</text></g><g><title>syscall_return_via_sysret (25 samples, 0.02%)</title><rect x="66.8573%" y="837" width="0.0171%" height="15" fill="rgb(249,6,3)" fg:x="97603" fg:w="25"/><text x="67.1073%" y="847.50"></text></g><g><title>dequeue_entity (19 samples, 0.01%)</title><rect x="66.9210%" y="709" width="0.0130%" height="15" fill="rgb(237,105,33)" fg:x="97696" fg:w="19"/><text x="67.1710%" y="719.50"></text></g><g><title>dequeue_task_fair (23 samples, 0.02%)</title><rect x="66.9203%" y="725" width="0.0158%" height="15" fill="rgb(252,208,35)" fg:x="97695" fg:w="23"/><text x="67.1703%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (268 samples, 0.18%)</title><rect x="66.9416%" y="709" width="0.1836%" height="15" fill="rgb(215,181,35)" fg:x="97726" fg:w="268"/><text x="67.1916%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (266 samples, 0.18%)</title><rect x="66.9429%" y="693" width="0.1822%" height="15" fill="rgb(246,212,3)" fg:x="97728" fg:w="266"/><text x="67.1929%" y="703.50"></text></g><g><title>native_write_msr (265 samples, 0.18%)</title><rect x="66.9436%" y="677" width="0.1815%" height="15" fill="rgb(247,156,24)" fg:x="97729" fg:w="265"/><text x="67.1936%" y="687.50"></text></g><g><title>finish_task_switch (286 samples, 0.20%)</title><rect x="66.9361%" y="725" width="0.1959%" height="15" fill="rgb(248,9,31)" fg:x="97718" fg:w="286"/><text x="67.1861%" y="735.50"></text></g><g><title>futex_wait_queue_me (340 samples, 0.23%)</title><rect x="66.9108%" y="773" width="0.2329%" height="15" fill="rgb(234,26,45)" fg:x="97681" fg:w="340"/><text x="67.1608%" y="783.50"></text></g><g><title>schedule (336 samples, 0.23%)</title><rect x="66.9135%" y="757" width="0.2302%" height="15" fill="rgb(249,11,32)" fg:x="97685" fg:w="336"/><text x="67.1635%" y="767.50"></text></g><g><title>__schedule (334 samples, 0.23%)</title><rect x="66.9149%" y="741" width="0.2288%" height="15" fill="rgb(249,162,33)" fg:x="97687" fg:w="334"/><text x="67.1649%" y="751.50"></text></g><g><title>do_syscall_64 (373 samples, 0.26%)</title><rect x="66.9025%" y="837" width="0.2555%" height="15" fill="rgb(232,4,32)" fg:x="97669" fg:w="373"/><text x="67.1525%" y="847.50"></text></g><g><title>__x64_sys_futex (371 samples, 0.25%)</title><rect x="66.9039%" y="821" width="0.2541%" height="15" fill="rgb(212,5,45)" fg:x="97671" fg:w="371"/><text x="67.1539%" y="831.50"></text></g><g><title>do_futex (369 samples, 0.25%)</title><rect x="66.9053%" y="805" width="0.2528%" height="15" fill="rgb(227,95,13)" fg:x="97673" fg:w="369"/><text x="67.1553%" y="815.50"></text></g><g><title>futex_wait (367 samples, 0.25%)</title><rect x="66.9066%" y="789" width="0.2514%" height="15" fill="rgb(223,205,10)" fg:x="97675" fg:w="367"/><text x="67.1566%" y="799.50"></text></g><g><title>futex_wait_setup (21 samples, 0.01%)</title><rect x="67.1436%" y="773" width="0.0144%" height="15" fill="rgb(222,178,8)" fg:x="98021" fg:w="21"/><text x="67.3936%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (381 samples, 0.26%)</title><rect x="66.9018%" y="853" width="0.2610%" height="15" fill="rgb(216,13,22)" fg:x="97668" fg:w="381"/><text x="67.1518%" y="863.50"></text></g><g><title>__pthread_mutex_cond_lock (423 samples, 0.29%)</title><rect x="66.8744%" y="885" width="0.2898%" height="15" fill="rgb(240,167,12)" fg:x="97628" fg:w="423"/><text x="67.1244%" y="895.50"></text></g><g><title>__lll_lock_wait (397 samples, 0.27%)</title><rect x="66.8923%" y="869" width="0.2719%" height="15" fill="rgb(235,68,35)" fg:x="97654" fg:w="397"/><text x="67.1423%" y="879.50"></text></g><g><title>std::condition_variable::wait (13,418 samples, 9.19%)</title><rect x="57.9860%" y="901" width="9.1912%" height="15" fill="rgb(253,40,27)" fg:x="84652" fg:w="13418"/><text x="58.2360%" y="911.50">std::conditio..</text></g><g><title>pthread_cond_wait@plt (19 samples, 0.01%)</title><rect x="67.1642%" y="885" width="0.0130%" height="15" fill="rgb(214,19,28)" fg:x="98051" fg:w="19"/><text x="67.4142%" y="895.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (14,629 samples, 10.02%)</title><rect x="57.1633%" y="917" width="10.0208%" height="15" fill="rgb(210,167,45)" fg:x="83451" fg:w="14629"/><text x="57.4133%" y="927.50">llvm::parallel..</text></g><g><title>futex_wait_queue_me (18 samples, 0.01%)</title><rect x="67.1937%" y="773" width="0.0123%" height="15" fill="rgb(232,97,40)" fg:x="98094" fg:w="18"/><text x="67.4437%" y="783.50"></text></g><g><title>schedule (17 samples, 0.01%)</title><rect x="67.1943%" y="757" width="0.0116%" height="15" fill="rgb(250,35,23)" fg:x="98095" fg:w="17"/><text x="67.4443%" y="767.50"></text></g><g><title>__schedule (17 samples, 0.01%)</title><rect x="67.1943%" y="741" width="0.0116%" height="15" fill="rgb(248,47,53)" fg:x="98095" fg:w="17"/><text x="67.4443%" y="751.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="67.1937%" y="837" width="0.0137%" height="15" fill="rgb(226,58,50)" fg:x="98094" fg:w="20"/><text x="67.4437%" y="847.50"></text></g><g><title>__x64_sys_futex (20 samples, 0.01%)</title><rect x="67.1937%" y="821" width="0.0137%" height="15" fill="rgb(217,105,26)" fg:x="98094" fg:w="20"/><text x="67.4437%" y="831.50"></text></g><g><title>do_futex (20 samples, 0.01%)</title><rect x="67.1937%" y="805" width="0.0137%" height="15" fill="rgb(208,64,1)" fg:x="98094" fg:w="20"/><text x="67.4437%" y="815.50"></text></g><g><title>futex_wait (20 samples, 0.01%)</title><rect x="67.1937%" y="789" width="0.0137%" height="15" fill="rgb(214,80,1)" fg:x="98094" fg:w="20"/><text x="67.4437%" y="799.50"></text></g><g><title>__GI___pthread_mutex_lock (25 samples, 0.02%)</title><rect x="67.1909%" y="885" width="0.0171%" height="15" fill="rgb(206,175,26)" fg:x="98090" fg:w="25"/><text x="67.4409%" y="895.50"></text></g><g><title>__lll_lock_wait (24 samples, 0.02%)</title><rect x="67.1916%" y="869" width="0.0164%" height="15" fill="rgb(235,156,37)" fg:x="98091" fg:w="24"/><text x="67.4416%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="67.1930%" y="853" width="0.0151%" height="15" fill="rgb(213,100,9)" fg:x="98093" fg:w="22"/><text x="67.4430%" y="863.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (23 samples, 0.02%)</title><rect x="67.2080%" y="885" width="0.0158%" height="15" fill="rgb(241,15,13)" fg:x="98115" fg:w="23"/><text x="67.4580%" y="895.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (20 samples, 0.01%)</title><rect x="67.2238%" y="885" width="0.0137%" height="15" fill="rgb(205,97,43)" fg:x="98138" fg:w="20"/><text x="67.4738%" y="895.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (23 samples, 0.02%)</title><rect x="67.2402%" y="869" width="0.0158%" height="15" fill="rgb(216,106,32)" fg:x="98162" fg:w="23"/><text x="67.4902%" y="879.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;llvm::parallelForEach&lt;lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1}&gt;(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}&gt; (16 samples, 0.01%)</title><rect x="67.2450%" y="853" width="0.0110%" height="15" fill="rgb(226,200,8)" fg:x="98169" fg:w="16"/><text x="67.4950%" y="863.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (30 samples, 0.02%)</title><rect x="67.2375%" y="885" width="0.0205%" height="15" fill="rgb(244,54,29)" fg:x="98158" fg:w="30"/><text x="67.4875%" y="895.50"></text></g><g><title>ttwu_do_activate (16 samples, 0.01%)</title><rect x="67.2806%" y="693" width="0.0110%" height="15" fill="rgb(252,169,12)" fg:x="98221" fg:w="16"/><text x="67.5306%" y="703.50"></text></g><g><title>__condvar_dec_grefs (44 samples, 0.03%)</title><rect x="67.2663%" y="837" width="0.0301%" height="15" fill="rgb(231,199,11)" fg:x="98200" fg:w="44"/><text x="67.5163%" y="847.50"></text></g><g><title>futex_wake (37 samples, 0.03%)</title><rect x="67.2711%" y="821" width="0.0253%" height="15" fill="rgb(233,191,18)" fg:x="98207" fg:w="37"/><text x="67.5211%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="67.2717%" y="805" width="0.0247%" height="15" fill="rgb(215,83,47)" fg:x="98208" fg:w="36"/><text x="67.5217%" y="815.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="67.2717%" y="789" width="0.0247%" height="15" fill="rgb(251,67,19)" fg:x="98208" fg:w="36"/><text x="67.5217%" y="799.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="67.2724%" y="773" width="0.0240%" height="15" fill="rgb(240,7,20)" fg:x="98209" fg:w="35"/><text x="67.5224%" y="783.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="67.2724%" y="757" width="0.0240%" height="15" fill="rgb(210,150,26)" fg:x="98209" fg:w="35"/><text x="67.5224%" y="767.50"></text></g><g><title>futex_wake (35 samples, 0.02%)</title><rect x="67.2724%" y="741" width="0.0240%" height="15" fill="rgb(228,75,42)" fg:x="98209" fg:w="35"/><text x="67.5224%" y="751.50"></text></g><g><title>wake_up_q (30 samples, 0.02%)</title><rect x="67.2759%" y="725" width="0.0205%" height="15" fill="rgb(237,134,48)" fg:x="98214" fg:w="30"/><text x="67.5259%" y="735.50"></text></g><g><title>try_to_wake_up (30 samples, 0.02%)</title><rect x="67.2759%" y="709" width="0.0205%" height="15" fill="rgb(205,80,50)" fg:x="98214" fg:w="30"/><text x="67.5259%" y="719.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="67.3026%" y="805" width="0.0103%" height="15" fill="rgb(217,74,48)" fg:x="98253" fg:w="15"/><text x="67.5526%" y="815.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (25 samples, 0.02%)</title><rect x="67.2964%" y="837" width="0.0171%" height="15" fill="rgb(205,82,50)" fg:x="98244" fg:w="25"/><text x="67.5464%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="67.3026%" y="821" width="0.0110%" height="15" fill="rgb(228,1,33)" fg:x="98253" fg:w="16"/><text x="67.5526%" y="831.50"></text></g><g><title>dequeue_entity (38 samples, 0.03%)</title><rect x="67.3745%" y="677" width="0.0260%" height="15" fill="rgb(214,50,23)" fg:x="98358" fg:w="38"/><text x="67.6245%" y="687.50"></text></g><g><title>dequeue_task_fair (47 samples, 0.03%)</title><rect x="67.3690%" y="693" width="0.0322%" height="15" fill="rgb(210,62,9)" fg:x="98350" fg:w="47"/><text x="67.6190%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (1,280 samples, 0.88%)</title><rect x="67.4204%" y="677" width="0.8768%" height="15" fill="rgb(210,104,37)" fg:x="98425" fg:w="1280"/><text x="67.6704%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,262 samples, 0.86%)</title><rect x="67.4327%" y="661" width="0.8645%" height="15" fill="rgb(232,104,43)" fg:x="98443" fg:w="1262"/><text x="67.6827%" y="671.50"></text></g><g><title>native_write_msr (1,257 samples, 0.86%)</title><rect x="67.4361%" y="645" width="0.8610%" height="15" fill="rgb(244,52,6)" fg:x="98448" fg:w="1257"/><text x="67.6861%" y="655.50"></text></g><g><title>asm_sysvec_irq_work (22 samples, 0.02%)</title><rect x="68.2985%" y="677" width="0.0151%" height="15" fill="rgb(211,174,52)" fg:x="99707" fg:w="22"/><text x="68.5485%" y="687.50"></text></g><g><title>finish_task_switch (1,337 samples, 0.92%)</title><rect x="67.4012%" y="693" width="0.9158%" height="15" fill="rgb(229,48,4)" fg:x="98397" fg:w="1337"/><text x="67.6512%" y="703.50"></text></g><g><title>psi_task_change (32 samples, 0.02%)</title><rect x="68.3259%" y="693" width="0.0219%" height="15" fill="rgb(205,155,16)" fg:x="99747" fg:w="32"/><text x="68.5759%" y="703.50"></text></g><g><title>psi_group_change (27 samples, 0.02%)</title><rect x="68.3294%" y="677" width="0.0185%" height="15" fill="rgb(211,141,53)" fg:x="99752" fg:w="27"/><text x="68.5794%" y="687.50"></text></g><g><title>futex_wait_queue_me (1,467 samples, 1.00%)</title><rect x="67.3478%" y="741" width="1.0049%" height="15" fill="rgb(240,148,11)" fg:x="98319" fg:w="1467"/><text x="67.5978%" y="751.50"></text></g><g><title>schedule (1,450 samples, 0.99%)</title><rect x="67.3594%" y="725" width="0.9932%" height="15" fill="rgb(214,45,23)" fg:x="98336" fg:w="1450"/><text x="67.6094%" y="735.50"></text></g><g><title>__schedule (1,450 samples, 0.99%)</title><rect x="67.3594%" y="709" width="0.9932%" height="15" fill="rgb(248,74,26)" fg:x="98336" fg:w="1450"/><text x="67.6094%" y="719.50"></text></g><g><title>do_syscall_64 (1,520 samples, 1.04%)</title><rect x="67.3231%" y="805" width="1.0412%" height="15" fill="rgb(218,121,16)" fg:x="98283" fg:w="1520"/><text x="67.5731%" y="815.50"></text></g><g><title>__x64_sys_futex (1,512 samples, 1.04%)</title><rect x="67.3286%" y="789" width="1.0357%" height="15" fill="rgb(218,10,47)" fg:x="98291" fg:w="1512"/><text x="67.5786%" y="799.50"></text></g><g><title>do_futex (1,507 samples, 1.03%)</title><rect x="67.3320%" y="773" width="1.0323%" height="15" fill="rgb(227,99,14)" fg:x="98296" fg:w="1507"/><text x="67.5820%" y="783.50"></text></g><g><title>futex_wait (1,498 samples, 1.03%)</title><rect x="67.3382%" y="757" width="1.0261%" height="15" fill="rgb(229,83,46)" fg:x="98305" fg:w="1498"/><text x="67.5882%" y="767.50"></text></g><g><title>futex_wait_setup (17 samples, 0.01%)</title><rect x="68.3527%" y="741" width="0.0116%" height="15" fill="rgb(228,25,1)" fg:x="99786" fg:w="17"/><text x="68.6027%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,563 samples, 1.07%)</title><rect x="67.3197%" y="821" width="1.0706%" height="15" fill="rgb(252,190,15)" fg:x="98278" fg:w="1563"/><text x="67.5697%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (38 samples, 0.03%)</title><rect x="68.3643%" y="805" width="0.0260%" height="15" fill="rgb(213,103,51)" fg:x="99803" fg:w="38"/><text x="68.6143%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (35 samples, 0.02%)</title><rect x="68.3664%" y="789" width="0.0240%" height="15" fill="rgb(220,38,44)" fg:x="99806" fg:w="35"/><text x="68.6164%" y="799.50"></text></g><g><title>switch_fpu_return (33 samples, 0.02%)</title><rect x="68.3677%" y="773" width="0.0226%" height="15" fill="rgb(210,45,26)" fg:x="99808" fg:w="33"/><text x="68.6177%" y="783.50"></text></g><g><title>copy_kernel_to_fpregs (24 samples, 0.02%)</title><rect x="68.3739%" y="757" width="0.0164%" height="15" fill="rgb(205,95,48)" fg:x="99817" fg:w="24"/><text x="68.6239%" y="767.50"></text></g><g><title>__pthread_cond_wait (1,654 samples, 1.13%)</title><rect x="67.2594%" y="869" width="1.1330%" height="15" fill="rgb(225,179,37)" fg:x="98190" fg:w="1654"/><text x="67.5094%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (1,654 samples, 1.13%)</title><rect x="67.2594%" y="853" width="1.1330%" height="15" fill="rgb(230,209,3)" fg:x="98190" fg:w="1654"/><text x="67.5094%" y="863.50"></text></g><g><title>futex_wait_cancelable (1,575 samples, 1.08%)</title><rect x="67.3135%" y="837" width="1.0789%" height="15" fill="rgb(248,12,46)" fg:x="98269" fg:w="1575"/><text x="67.5635%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.05%)</title><rect x="68.4068%" y="693" width="0.0548%" height="15" fill="rgb(234,18,0)" fg:x="99865" fg:w="80"/><text x="68.6568%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (77 samples, 0.05%)</title><rect x="68.4088%" y="677" width="0.0527%" height="15" fill="rgb(238,197,14)" fg:x="99868" fg:w="77"/><text x="68.6588%" y="687.50"></text></g><g><title>native_write_msr (77 samples, 0.05%)</title><rect x="68.4088%" y="661" width="0.0527%" height="15" fill="rgb(251,162,48)" fg:x="99868" fg:w="77"/><text x="68.6588%" y="671.50"></text></g><g><title>finish_task_switch (82 samples, 0.06%)</title><rect x="68.4061%" y="709" width="0.0562%" height="15" fill="rgb(237,73,42)" fg:x="99864" fg:w="82"/><text x="68.6561%" y="719.50"></text></g><g><title>futex_wait_queue_me (97 samples, 0.07%)</title><rect x="68.3992%" y="757" width="0.0664%" height="15" fill="rgb(211,108,8)" fg:x="99854" fg:w="97"/><text x="68.6492%" y="767.50"></text></g><g><title>schedule (96 samples, 0.07%)</title><rect x="68.3999%" y="741" width="0.0658%" height="15" fill="rgb(213,45,22)" fg:x="99855" fg:w="96"/><text x="68.6499%" y="751.50"></text></g><g><title>__schedule (96 samples, 0.07%)</title><rect x="68.3999%" y="725" width="0.0658%" height="15" fill="rgb(252,154,5)" fg:x="99855" fg:w="96"/><text x="68.6499%" y="735.50"></text></g><g><title>do_syscall_64 (104 samples, 0.07%)</title><rect x="68.3972%" y="821" width="0.0712%" height="15" fill="rgb(221,79,52)" fg:x="99851" fg:w="104"/><text x="68.6472%" y="831.50"></text></g><g><title>__x64_sys_futex (104 samples, 0.07%)</title><rect x="68.3972%" y="805" width="0.0712%" height="15" fill="rgb(229,220,36)" fg:x="99851" fg:w="104"/><text x="68.6472%" y="815.50"></text></g><g><title>do_futex (104 samples, 0.07%)</title><rect x="68.3972%" y="789" width="0.0712%" height="15" fill="rgb(211,17,16)" fg:x="99851" fg:w="104"/><text x="68.6472%" y="799.50"></text></g><g><title>futex_wait (102 samples, 0.07%)</title><rect x="68.3986%" y="773" width="0.0699%" height="15" fill="rgb(222,55,31)" fg:x="99853" fg:w="102"/><text x="68.6486%" y="783.50"></text></g><g><title>__pthread_mutex_cond_lock (112 samples, 0.08%)</title><rect x="68.3924%" y="869" width="0.0767%" height="15" fill="rgb(221,221,31)" fg:x="99844" fg:w="112"/><text x="68.6424%" y="879.50"></text></g><g><title>__lll_lock_wait (107 samples, 0.07%)</title><rect x="68.3958%" y="853" width="0.0733%" height="15" fill="rgb(227,168,26)" fg:x="99849" fg:w="107"/><text x="68.6458%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (105 samples, 0.07%)</title><rect x="68.3972%" y="837" width="0.0719%" height="15" fill="rgb(224,139,9)" fg:x="99851" fg:w="105"/><text x="68.6472%" y="847.50"></text></g><g><title>std::condition_variable::wait (1,771 samples, 1.21%)</title><rect x="67.2580%" y="885" width="1.2131%" height="15" fill="rgb(254,172,0)" fg:x="98188" fg:w="1771"/><text x="67.5080%" y="895.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (1,877 samples, 1.29%)</title><rect x="67.1868%" y="901" width="1.2857%" height="15" fill="rgb(235,203,1)" fg:x="98084" fg:w="1877"/><text x="67.4368%" y="911.50"></text></g><g><title>do_mmap (16 samples, 0.01%)</title><rect x="68.4739%" y="693" width="0.0110%" height="15" fill="rgb(216,205,24)" fg:x="99963" fg:w="16"/><text x="68.7239%" y="703.50"></text></g><g><title>__GI___mmap64 (22 samples, 0.02%)</title><rect x="68.4725%" y="773" width="0.0151%" height="15" fill="rgb(233,24,6)" fg:x="99961" fg:w="22"/><text x="68.7225%" y="783.50"></text></g><g><title>__GI___mmap64 (22 samples, 0.02%)</title><rect x="68.4725%" y="757" width="0.0151%" height="15" fill="rgb(244,110,9)" fg:x="99961" fg:w="22"/><text x="68.7225%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="68.4725%" y="741" width="0.0151%" height="15" fill="rgb(239,222,42)" fg:x="99961" fg:w="22"/><text x="68.7225%" y="751.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="68.4725%" y="725" width="0.0151%" height="15" fill="rgb(218,145,13)" fg:x="99961" fg:w="22"/><text x="68.7225%" y="735.50"></text></g><g><title>vm_mmap_pgoff (21 samples, 0.01%)</title><rect x="68.4732%" y="709" width="0.0144%" height="15" fill="rgb(207,69,11)" fg:x="99962" fg:w="21"/><text x="68.7232%" y="719.50"></text></g><g><title>arena_get2 (29 samples, 0.02%)</title><rect x="68.4725%" y="821" width="0.0199%" height="15" fill="rgb(220,223,22)" fg:x="99961" fg:w="29"/><text x="68.7225%" y="831.50"></text></g><g><title>_int_new_arena (29 samples, 0.02%)</title><rect x="68.4725%" y="805" width="0.0199%" height="15" fill="rgb(245,102,5)" fg:x="99961" fg:w="29"/><text x="68.7225%" y="815.50"></text></g><g><title>new_heap (29 samples, 0.02%)</title><rect x="68.4725%" y="789" width="0.0199%" height="15" fill="rgb(211,148,2)" fg:x="99961" fg:w="29"/><text x="68.7225%" y="799.50"></text></g><g><title>operator new (31 samples, 0.02%)</title><rect x="68.4725%" y="901" width="0.0212%" height="15" fill="rgb(241,13,44)" fg:x="99961" fg:w="31"/><text x="68.7225%" y="911.50"></text></g><g><title>__GI___libc_malloc (31 samples, 0.02%)</title><rect x="68.4725%" y="885" width="0.0212%" height="15" fill="rgb(219,137,21)" fg:x="99961" fg:w="31"/><text x="68.7225%" y="895.50"></text></g><g><title>tcache_init (31 samples, 0.02%)</title><rect x="68.4725%" y="869" width="0.0212%" height="15" fill="rgb(242,206,5)" fg:x="99961" fg:w="31"/><text x="68.7225%" y="879.50"></text></g><g><title>tcache_init (31 samples, 0.02%)</title><rect x="68.4725%" y="853" width="0.0212%" height="15" fill="rgb(217,114,22)" fg:x="99961" fg:w="31"/><text x="68.7225%" y="863.50"></text></g><g><title>arena_get2 (31 samples, 0.02%)</title><rect x="68.4725%" y="837" width="0.0212%" height="15" fill="rgb(253,206,42)" fg:x="99961" fg:w="31"/><text x="68.7225%" y="847.50"></text></g><g><title>alloc_pages_vma (21 samples, 0.01%)</title><rect x="68.4972%" y="773" width="0.0144%" height="15" fill="rgb(236,102,18)" fg:x="99997" fg:w="21"/><text x="68.7472%" y="783.50"></text></g><g><title>__alloc_pages_nodemask (21 samples, 0.01%)</title><rect x="68.4972%" y="757" width="0.0144%" height="15" fill="rgb(208,59,49)" fg:x="99997" fg:w="21"/><text x="68.7472%" y="767.50"></text></g><g><title>get_page_from_freelist (21 samples, 0.01%)</title><rect x="68.4972%" y="741" width="0.0144%" height="15" fill="rgb(215,194,28)" fg:x="99997" fg:w="21"/><text x="68.7472%" y="751.50"></text></g><g><title>prep_new_page (18 samples, 0.01%)</title><rect x="68.4992%" y="725" width="0.0123%" height="15" fill="rgb(243,207,11)" fg:x="100000" fg:w="18"/><text x="68.7492%" y="735.50"></text></g><g><title>kernel_init_free_pages (18 samples, 0.01%)</title><rect x="68.4992%" y="709" width="0.0123%" height="15" fill="rgb(254,179,35)" fg:x="100000" fg:w="18"/><text x="68.7492%" y="719.50"></text></g><g><title>clear_page_erms (18 samples, 0.01%)</title><rect x="68.4992%" y="693" width="0.0123%" height="15" fill="rgb(235,97,3)" fg:x="100000" fg:w="18"/><text x="68.7492%" y="703.50"></text></g><g><title>handle_mm_fault (34 samples, 0.02%)</title><rect x="68.4958%" y="805" width="0.0233%" height="15" fill="rgb(215,155,33)" fg:x="99995" fg:w="34"/><text x="68.7458%" y="815.50"></text></g><g><title>do_huge_pmd_anonymous_page (32 samples, 0.02%)</title><rect x="68.4972%" y="789" width="0.0219%" height="15" fill="rgb(223,128,12)" fg:x="99997" fg:w="32"/><text x="68.7472%" y="799.50"></text></g><g><title>asm_exc_page_fault (37 samples, 0.03%)</title><rect x="68.4951%" y="853" width="0.0253%" height="15" fill="rgb(208,157,18)" fg:x="99994" fg:w="37"/><text x="68.7451%" y="863.50"></text></g><g><title>exc_page_fault (37 samples, 0.03%)</title><rect x="68.4951%" y="837" width="0.0253%" height="15" fill="rgb(249,70,54)" fg:x="99994" fg:w="37"/><text x="68.7451%" y="847.50"></text></g><g><title>do_user_addr_fault (37 samples, 0.03%)</title><rect x="68.4951%" y="821" width="0.0253%" height="15" fill="rgb(244,118,24)" fg:x="99994" fg:w="37"/><text x="68.7451%" y="831.50"></text></g><g><title>allocate_stack (43 samples, 0.03%)</title><rect x="68.4945%" y="869" width="0.0295%" height="15" fill="rgb(211,54,0)" fg:x="99993" fg:w="43"/><text x="68.7445%" y="879.50"></text></g><g><title>[libstdc++.so.6.0.28] (16,593 samples, 11.37%)</title><rect x="57.1592%" y="933" width="11.3661%" height="15" fill="rgb(245,137,45)" fg:x="83445" fg:w="16593"/><text x="57.4092%" y="943.50">[libstdc++.so.6.0..</text></g><g><title>std::thread::_State_impl&lt;std::thread::_Invoker&lt;std::tuple&lt;llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::ThreadPoolExecutor(llvm::ThreadPoolStrategy)::{lambda()#1}&gt; &gt; &gt;::_M_run (1,955 samples, 1.34%)</title><rect x="67.1861%" y="917" width="1.3392%" height="15" fill="rgb(232,154,31)" fg:x="98083" fg:w="1955"/><text x="67.4361%" y="927.50"></text></g><g><title>std::thread::_M_start_thread (45 samples, 0.03%)</title><rect x="68.4945%" y="901" width="0.0308%" height="15" fill="rgb(253,6,39)" fg:x="99993" fg:w="45"/><text x="68.7445%" y="911.50"></text></g><g><title>__pthread_create_2_1 (45 samples, 0.03%)</title><rect x="68.4945%" y="885" width="0.0308%" height="15" fill="rgb(234,183,24)" fg:x="99993" fg:w="45"/><text x="68.7445%" y="895.50"></text></g><g><title>__res_thread_freeres (15 samples, 0.01%)</title><rect x="68.5410%" y="917" width="0.0103%" height="15" fill="rgb(252,84,40)" fg:x="100061" fg:w="15"/><text x="68.7910%" y="927.50"></text></g><g><title>__libc_thread_freeres (27 samples, 0.02%)</title><rect x="68.5403%" y="933" width="0.0185%" height="15" fill="rgb(224,65,2)" fg:x="100060" fg:w="27"/><text x="68.7903%" y="943.50"></text></g><g><title>flush_tlb_mm_range (20 samples, 0.01%)</title><rect x="68.5746%" y="805" width="0.0137%" height="15" fill="rgb(229,38,24)" fg:x="100110" fg:w="20"/><text x="68.8246%" y="815.50"></text></g><g><title>smp_call_function_many_cond (20 samples, 0.01%)</title><rect x="68.5746%" y="789" width="0.0137%" height="15" fill="rgb(218,131,50)" fg:x="100110" fg:w="20"/><text x="68.8246%" y="799.50"></text></g><g><title>tlb_finish_mmu (22 samples, 0.02%)</title><rect x="68.5746%" y="821" width="0.0151%" height="15" fill="rgb(233,106,18)" fg:x="100110" fg:w="22"/><text x="68.8246%" y="831.50"></text></g><g><title>page_remove_rmap (15 samples, 0.01%)</title><rect x="68.5972%" y="805" width="0.0103%" height="15" fill="rgb(220,216,11)" fg:x="100143" fg:w="15"/><text x="68.8472%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.04%)</title><rect x="68.5684%" y="901" width="0.0411%" height="15" fill="rgb(251,100,45)" fg:x="100101" fg:w="60"/><text x="68.8184%" y="911.50"></text></g><g><title>do_syscall_64 (60 samples, 0.04%)</title><rect x="68.5684%" y="885" width="0.0411%" height="15" fill="rgb(235,143,32)" fg:x="100101" fg:w="60"/><text x="68.8184%" y="895.50"></text></g><g><title>__x64_sys_madvise (60 samples, 0.04%)</title><rect x="68.5684%" y="869" width="0.0411%" height="15" fill="rgb(248,124,34)" fg:x="100101" fg:w="60"/><text x="68.8184%" y="879.50"></text></g><g><title>do_madvise.part.0 (60 samples, 0.04%)</title><rect x="68.5684%" y="853" width="0.0411%" height="15" fill="rgb(225,221,4)" fg:x="100101" fg:w="60"/><text x="68.8184%" y="863.50"></text></g><g><title>zap_page_range (59 samples, 0.04%)</title><rect x="68.5691%" y="837" width="0.0404%" height="15" fill="rgb(242,27,43)" fg:x="100102" fg:w="59"/><text x="68.8191%" y="847.50"></text></g><g><title>unmap_page_range (29 samples, 0.02%)</title><rect x="68.5897%" y="821" width="0.0199%" height="15" fill="rgb(227,54,8)" fg:x="100132" fg:w="29"/><text x="68.8397%" y="831.50"></text></g><g><title>__GI_madvise (61 samples, 0.04%)</title><rect x="68.5684%" y="917" width="0.0418%" height="15" fill="rgb(253,139,49)" fg:x="100101" fg:w="61"/><text x="68.8184%" y="927.50"></text></g><g><title>advise_stack_range (62 samples, 0.04%)</title><rect x="68.5684%" y="933" width="0.0425%" height="15" fill="rgb(231,26,43)" fg:x="100101" fg:w="62"/><text x="68.8184%" y="943.50"></text></g><g><title>__GI___clone (19,001 samples, 13.02%)</title><rect x="55.6063%" y="965" width="13.0155%" height="15" fill="rgb(207,121,39)" fg:x="81178" fg:w="19001"/><text x="55.8563%" y="975.50">__GI___clone</text></g><g><title>start_thread (16,739 samples, 11.47%)</title><rect x="57.1558%" y="949" width="11.4661%" height="15" fill="rgb(223,101,35)" fg:x="83440" fg:w="16739"/><text x="57.4058%" y="959.50">start_thread</text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="68.6116%" y="933" width="0.0103%" height="15" fill="rgb(232,87,23)" fg:x="100164" fg:w="15"/><text x="68.8616%" y="943.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (19 samples, 0.01%)</title><rect x="68.7746%" y="917" width="0.0130%" height="15" fill="rgb(225,180,29)" fg:x="100402" fg:w="19"/><text x="69.0246%" y="927.50"></text></g><g><title>polly::initializePollyPasses (15 samples, 0.01%)</title><rect x="68.7774%" y="901" width="0.0103%" height="15" fill="rgb(225,25,17)" fg:x="100406" fg:w="15"/><text x="69.0274%" y="911.50"></text></g><g><title>__libc_csu_init (269 samples, 0.18%)</title><rect x="68.6335%" y="933" width="0.1843%" height="15" fill="rgb(223,8,52)" fg:x="100196" fg:w="269"/><text x="68.8835%" y="943.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (15 samples, 0.01%)</title><rect x="68.8349%" y="837" width="0.0103%" height="15" fill="rgb(246,42,21)" fg:x="100490" fg:w="15"/><text x="69.0849%" y="847.50"></text></g><g><title>__GI___access (18 samples, 0.01%)</title><rect x="68.8465%" y="773" width="0.0123%" height="15" fill="rgb(205,64,43)" fg:x="100507" fg:w="18"/><text x="69.0965%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="68.8465%" y="757" width="0.0123%" height="15" fill="rgb(221,160,13)" fg:x="100507" fg:w="18"/><text x="69.0965%" y="767.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="68.8465%" y="741" width="0.0123%" height="15" fill="rgb(239,58,35)" fg:x="100507" fg:w="18"/><text x="69.0965%" y="751.50"></text></g><g><title>do_faccessat (18 samples, 0.01%)</title><rect x="68.8465%" y="725" width="0.0123%" height="15" fill="rgb(251,26,40)" fg:x="100507" fg:w="18"/><text x="69.0965%" y="735.50"></text></g><g><title>llvm::sys::fs::access (19 samples, 0.01%)</title><rect x="68.8465%" y="789" width="0.0130%" height="15" fill="rgb(247,0,4)" fg:x="100507" fg:w="19"/><text x="69.0965%" y="799.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (49 samples, 0.03%)</title><rect x="68.8267%" y="869" width="0.0336%" height="15" fill="rgb(218,130,10)" fg:x="100478" fg:w="49"/><text x="69.0767%" y="879.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (38 samples, 0.03%)</title><rect x="68.8342%" y="853" width="0.0260%" height="15" fill="rgb(239,32,7)" fg:x="100489" fg:w="38"/><text x="69.0842%" y="863.50"></text></g><g><title>lld::elf::searchLibrary[abi:cxx11] (22 samples, 0.02%)</title><rect x="68.8452%" y="837" width="0.0151%" height="15" fill="rgb(210,192,24)" fg:x="100505" fg:w="22"/><text x="69.0952%" y="847.50"></text></g><g><title>lld::elf::searchLibraryBaseName[abi:cxx11] (20 samples, 0.01%)</title><rect x="68.8465%" y="821" width="0.0137%" height="15" fill="rgb(226,212,17)" fg:x="100507" fg:w="20"/><text x="69.0965%" y="831.50"></text></g><g><title>findFile[abi:cxx11] (20 samples, 0.01%)</title><rect x="68.8465%" y="805" width="0.0137%" height="15" fill="rgb(219,201,28)" fg:x="100507" fg:w="20"/><text x="69.0965%" y="815.50"></text></g><g><title>lld::make&lt;lld::elf::SymbolUnion&gt; (19 samples, 0.01%)</title><rect x="68.8856%" y="805" width="0.0130%" height="15" fill="rgb(235,207,41)" fg:x="100564" fg:w="19"/><text x="69.1356%" y="815.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (17 samples, 0.01%)</title><rect x="68.8986%" y="805" width="0.0116%" height="15" fill="rgb(241,95,54)" fg:x="100583" fg:w="17"/><text x="69.1486%" y="815.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (17 samples, 0.01%)</title><rect x="68.8986%" y="789" width="0.0116%" height="15" fill="rgb(248,12,23)" fg:x="100583" fg:w="17"/><text x="69.1486%" y="799.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (22 samples, 0.02%)</title><rect x="68.9102%" y="805" width="0.0151%" height="15" fill="rgb(228,173,4)" fg:x="100600" fg:w="22"/><text x="69.1602%" y="815.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (86 samples, 0.06%)</title><rect x="68.8739%" y="837" width="0.0589%" height="15" fill="rgb(254,99,5)" fg:x="100547" fg:w="86"/><text x="69.1239%" y="847.50"></text></g><g><title>lld::elf::SymbolTable::insert (80 samples, 0.05%)</title><rect x="68.8781%" y="821" width="0.0548%" height="15" fill="rgb(212,184,17)" fg:x="100553" fg:w="80"/><text x="69.1281%" y="831.50"></text></g><g><title>lld::elf::ArchiveFile::parse (100 samples, 0.07%)</title><rect x="68.8733%" y="853" width="0.0685%" height="15" fill="rgb(252,174,1)" fg:x="100546" fg:w="100"/><text x="69.1233%" y="863.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="68.9616%" y="613" width="0.0240%" height="15" fill="rgb(241,118,51)" fg:x="100675" fg:w="35"/><text x="69.2116%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.02%)</title><rect x="68.9616%" y="597" width="0.0240%" height="15" fill="rgb(227,94,47)" fg:x="100675" fg:w="35"/><text x="69.2116%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.02%)</title><rect x="68.9630%" y="581" width="0.0226%" height="15" fill="rgb(229,104,2)" fg:x="100677" fg:w="33"/><text x="69.2130%" y="591.50"></text></g><g><title>native_write_msr (33 samples, 0.02%)</title><rect x="68.9630%" y="565" width="0.0226%" height="15" fill="rgb(219,28,31)" fg:x="100677" fg:w="33"/><text x="69.2130%" y="575.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="68.9602%" y="725" width="0.0260%" height="15" fill="rgb(233,109,36)" fg:x="100673" fg:w="38"/><text x="69.2102%" y="735.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.03%)</title><rect x="68.9602%" y="709" width="0.0260%" height="15" fill="rgb(246,88,11)" fg:x="100673" fg:w="38"/><text x="69.2102%" y="719.50"></text></g><g><title>do_futex (38 samples, 0.03%)</title><rect x="68.9602%" y="693" width="0.0260%" height="15" fill="rgb(209,212,17)" fg:x="100673" fg:w="38"/><text x="69.2102%" y="703.50"></text></g><g><title>futex_wait (38 samples, 0.03%)</title><rect x="68.9602%" y="677" width="0.0260%" height="15" fill="rgb(243,59,29)" fg:x="100673" fg:w="38"/><text x="69.2102%" y="687.50"></text></g><g><title>futex_wait_queue_me (38 samples, 0.03%)</title><rect x="68.9602%" y="661" width="0.0260%" height="15" fill="rgb(244,205,48)" fg:x="100673" fg:w="38"/><text x="69.2102%" y="671.50"></text></g><g><title>schedule (36 samples, 0.02%)</title><rect x="68.9616%" y="645" width="0.0247%" height="15" fill="rgb(227,30,6)" fg:x="100675" fg:w="36"/><text x="69.2116%" y="655.50"></text></g><g><title>__schedule (36 samples, 0.02%)</title><rect x="68.9616%" y="629" width="0.0247%" height="15" fill="rgb(220,205,48)" fg:x="100675" fg:w="36"/><text x="69.2116%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (43 samples, 0.03%)</title><rect x="68.9596%" y="773" width="0.0295%" height="15" fill="rgb(250,94,14)" fg:x="100672" fg:w="43"/><text x="69.2096%" y="783.50"></text></g><g><title>__lll_lock_wait (42 samples, 0.03%)</title><rect x="68.9602%" y="757" width="0.0288%" height="15" fill="rgb(216,119,42)" fg:x="100673" fg:w="42"/><text x="69.2102%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (42 samples, 0.03%)</title><rect x="68.9602%" y="741" width="0.0288%" height="15" fill="rgb(232,155,0)" fg:x="100673" fg:w="42"/><text x="69.2102%" y="751.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (45 samples, 0.03%)</title><rect x="68.9596%" y="789" width="0.0308%" height="15" fill="rgb(212,24,32)" fg:x="100672" fg:w="45"/><text x="69.2096%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.05%)</title><rect x="68.9966%" y="565" width="0.0548%" height="15" fill="rgb(216,69,20)" fg:x="100726" fg:w="80"/><text x="69.2466%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (80 samples, 0.05%)</title><rect x="68.9966%" y="549" width="0.0548%" height="15" fill="rgb(229,73,31)" fg:x="100726" fg:w="80"/><text x="69.2466%" y="559.50"></text></g><g><title>native_write_msr (80 samples, 0.05%)</title><rect x="68.9966%" y="533" width="0.0548%" height="15" fill="rgb(224,219,20)" fg:x="100726" fg:w="80"/><text x="69.2466%" y="543.50"></text></g><g><title>finish_task_switch (84 samples, 0.06%)</title><rect x="68.9952%" y="581" width="0.0575%" height="15" fill="rgb(215,146,41)" fg:x="100724" fg:w="84"/><text x="69.2452%" y="591.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (89 samples, 0.06%)</title><rect x="68.9924%" y="757" width="0.0610%" height="15" fill="rgb(244,71,31)" fg:x="100720" fg:w="89"/><text x="69.2424%" y="767.50"></text></g><g><title>futex_wait_simple (89 samples, 0.06%)</title><rect x="68.9924%" y="741" width="0.0610%" height="15" fill="rgb(224,24,11)" fg:x="100720" fg:w="89"/><text x="69.2424%" y="751.50"></text></g><g><title>futex_wait (89 samples, 0.06%)</title><rect x="68.9924%" y="725" width="0.0610%" height="15" fill="rgb(229,76,15)" fg:x="100720" fg:w="89"/><text x="69.2424%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.06%)</title><rect x="68.9938%" y="709" width="0.0596%" height="15" fill="rgb(209,93,2)" fg:x="100722" fg:w="87"/><text x="69.2438%" y="719.50"></text></g><g><title>do_syscall_64 (87 samples, 0.06%)</title><rect x="68.9938%" y="693" width="0.0596%" height="15" fill="rgb(216,200,50)" fg:x="100722" fg:w="87"/><text x="69.2438%" y="703.50"></text></g><g><title>__x64_sys_futex (87 samples, 0.06%)</title><rect x="68.9938%" y="677" width="0.0596%" height="15" fill="rgb(211,67,34)" fg:x="100722" fg:w="87"/><text x="69.2438%" y="687.50"></text></g><g><title>do_futex (87 samples, 0.06%)</title><rect x="68.9938%" y="661" width="0.0596%" height="15" fill="rgb(225,87,47)" fg:x="100722" fg:w="87"/><text x="69.2438%" y="671.50"></text></g><g><title>futex_wait (87 samples, 0.06%)</title><rect x="68.9938%" y="645" width="0.0596%" height="15" fill="rgb(217,185,16)" fg:x="100722" fg:w="87"/><text x="69.2438%" y="655.50"></text></g><g><title>futex_wait_queue_me (87 samples, 0.06%)</title><rect x="68.9938%" y="629" width="0.0596%" height="15" fill="rgb(205,0,0)" fg:x="100722" fg:w="87"/><text x="69.2438%" y="639.50"></text></g><g><title>schedule (86 samples, 0.06%)</title><rect x="68.9945%" y="613" width="0.0589%" height="15" fill="rgb(207,116,45)" fg:x="100723" fg:w="86"/><text x="69.2445%" y="623.50"></text></g><g><title>__schedule (85 samples, 0.06%)</title><rect x="68.9952%" y="597" width="0.0582%" height="15" fill="rgb(221,156,26)" fg:x="100724" fg:w="85"/><text x="69.2452%" y="607.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (164 samples, 0.11%)</title><rect x="68.9575%" y="805" width="0.1123%" height="15" fill="rgb(213,140,4)" fg:x="100669" fg:w="164"/><text x="69.2075%" y="815.50"></text></g><g><title>std::condition_variable::notify_one (114 samples, 0.08%)</title><rect x="68.9918%" y="789" width="0.0781%" height="15" fill="rgb(231,224,15)" fg:x="100719" fg:w="114"/><text x="69.2418%" y="799.50"></text></g><g><title>__pthread_cond_signal (114 samples, 0.08%)</title><rect x="68.9918%" y="773" width="0.0781%" height="15" fill="rgb(244,76,20)" fg:x="100719" fg:w="114"/><text x="69.2418%" y="783.50"></text></g><g><title>futex_wake (23 samples, 0.02%)</title><rect x="69.0541%" y="757" width="0.0158%" height="15" fill="rgb(238,117,7)" fg:x="100810" fg:w="23"/><text x="69.3041%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22 samples, 0.02%)</title><rect x="69.0548%" y="741" width="0.0151%" height="15" fill="rgb(235,1,10)" fg:x="100811" fg:w="22"/><text x="69.3048%" y="751.50"></text></g><g><title>do_syscall_64 (22 samples, 0.02%)</title><rect x="69.0548%" y="725" width="0.0151%" height="15" fill="rgb(216,165,6)" fg:x="100811" fg:w="22"/><text x="69.3048%" y="735.50"></text></g><g><title>__x64_sys_futex (22 samples, 0.02%)</title><rect x="69.0548%" y="709" width="0.0151%" height="15" fill="rgb(246,91,35)" fg:x="100811" fg:w="22"/><text x="69.3048%" y="719.50"></text></g><g><title>do_futex (22 samples, 0.02%)</title><rect x="69.0548%" y="693" width="0.0151%" height="15" fill="rgb(228,96,24)" fg:x="100811" fg:w="22"/><text x="69.3048%" y="703.50"></text></g><g><title>futex_wake (21 samples, 0.01%)</title><rect x="69.0555%" y="677" width="0.0144%" height="15" fill="rgb(254,217,53)" fg:x="100812" fg:w="21"/><text x="69.3055%" y="687.50"></text></g><g><title>wake_up_q (20 samples, 0.01%)</title><rect x="69.0561%" y="661" width="0.0137%" height="15" fill="rgb(209,60,0)" fg:x="100813" fg:w="20"/><text x="69.3061%" y="671.50"></text></g><g><title>try_to_wake_up (19 samples, 0.01%)</title><rect x="69.0568%" y="645" width="0.0130%" height="15" fill="rgb(250,93,26)" fg:x="100814" fg:w="19"/><text x="69.3068%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.06%)</title><rect x="69.0760%" y="581" width="0.0582%" height="15" fill="rgb(211,9,40)" fg:x="100842" fg:w="85"/><text x="69.3260%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (85 samples, 0.06%)</title><rect x="69.0760%" y="565" width="0.0582%" height="15" fill="rgb(242,57,20)" fg:x="100842" fg:w="85"/><text x="69.3260%" y="575.50"></text></g><g><title>native_write_msr (84 samples, 0.06%)</title><rect x="69.0767%" y="549" width="0.0575%" height="15" fill="rgb(248,85,48)" fg:x="100843" fg:w="84"/><text x="69.3267%" y="559.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::~TaskGroup (96 samples, 0.07%)</title><rect x="69.0698%" y="805" width="0.0658%" height="15" fill="rgb(212,117,2)" fg:x="100833" fg:w="96"/><text x="69.3198%" y="815.50"></text></g><g><title>std::condition_variable::wait (95 samples, 0.07%)</title><rect x="69.0705%" y="789" width="0.0651%" height="15" fill="rgb(243,19,3)" fg:x="100834" fg:w="95"/><text x="69.3205%" y="799.50"></text></g><g><title>__pthread_cond_wait (94 samples, 0.06%)</title><rect x="69.0712%" y="773" width="0.0644%" height="15" fill="rgb(232,217,24)" fg:x="100835" fg:w="94"/><text x="69.3212%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (94 samples, 0.06%)</title><rect x="69.0712%" y="757" width="0.0644%" height="15" fill="rgb(224,175,40)" fg:x="100835" fg:w="94"/><text x="69.3212%" y="767.50"></text></g><g><title>futex_wait_cancelable (93 samples, 0.06%)</title><rect x="69.0719%" y="741" width="0.0637%" height="15" fill="rgb(212,162,32)" fg:x="100836" fg:w="93"/><text x="69.3219%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.06%)</title><rect x="69.0726%" y="725" width="0.0630%" height="15" fill="rgb(215,9,4)" fg:x="100837" fg:w="92"/><text x="69.3226%" y="735.50"></text></g><g><title>do_syscall_64 (92 samples, 0.06%)</title><rect x="69.0726%" y="709" width="0.0630%" height="15" fill="rgb(242,42,7)" fg:x="100837" fg:w="92"/><text x="69.3226%" y="719.50"></text></g><g><title>__x64_sys_futex (91 samples, 0.06%)</title><rect x="69.0733%" y="693" width="0.0623%" height="15" fill="rgb(242,184,45)" fg:x="100838" fg:w="91"/><text x="69.3233%" y="703.50"></text></g><g><title>do_futex (90 samples, 0.06%)</title><rect x="69.0740%" y="677" width="0.0616%" height="15" fill="rgb(228,111,51)" fg:x="100839" fg:w="90"/><text x="69.3240%" y="687.50"></text></g><g><title>futex_wait (89 samples, 0.06%)</title><rect x="69.0746%" y="661" width="0.0610%" height="15" fill="rgb(236,147,17)" fg:x="100840" fg:w="89"/><text x="69.3246%" y="671.50"></text></g><g><title>futex_wait_queue_me (89 samples, 0.06%)</title><rect x="69.0746%" y="645" width="0.0610%" height="15" fill="rgb(210,75,22)" fg:x="100840" fg:w="89"/><text x="69.3246%" y="655.50"></text></g><g><title>schedule (89 samples, 0.06%)</title><rect x="69.0746%" y="629" width="0.0610%" height="15" fill="rgb(217,159,45)" fg:x="100840" fg:w="89"/><text x="69.3246%" y="639.50"></text></g><g><title>__schedule (89 samples, 0.06%)</title><rect x="69.0746%" y="613" width="0.0610%" height="15" fill="rgb(245,165,53)" fg:x="100840" fg:w="89"/><text x="69.3246%" y="623.50"></text></g><g><title>finish_task_switch (89 samples, 0.06%)</title><rect x="69.0746%" y="597" width="0.0610%" height="15" fill="rgb(251,190,50)" fg:x="100840" fg:w="89"/><text x="69.3246%" y="607.50"></text></g><g><title>lld::elf::MergeNoTailSection::finalizeContents (273 samples, 0.19%)</title><rect x="68.9493%" y="837" width="0.1870%" height="15" fill="rgb(208,203,29)" fg:x="100657" fg:w="273"/><text x="69.1993%" y="847.50"></text></g><g><title>llvm::parallelForEachN (263 samples, 0.18%)</title><rect x="68.9561%" y="821" width="0.1802%" height="15" fill="rgb(207,209,35)" fg:x="100667" fg:w="263"/><text x="69.2061%" y="831.50"></text></g><g><title>lld::elf::OutputSection::finalizeInputSections (278 samples, 0.19%)</title><rect x="68.9472%" y="853" width="0.1904%" height="15" fill="rgb(230,144,49)" fg:x="100654" fg:w="278"/><text x="69.1972%" y="863.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (28 samples, 0.02%)</title><rect x="69.1466%" y="837" width="0.0192%" height="15" fill="rgb(229,31,6)" fg:x="100945" fg:w="28"/><text x="69.3966%" y="847.50"></text></g><g><title>lld::elf::SymbolTable::find (33 samples, 0.02%)</title><rect x="69.1452%" y="853" width="0.0226%" height="15" fill="rgb(251,129,24)" fg:x="100943" fg:w="33"/><text x="69.3952%" y="863.50"></text></g><g><title>lld::elf::markLive&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (43 samples, 0.03%)</title><rect x="69.1774%" y="853" width="0.0295%" height="15" fill="rgb(235,105,15)" fg:x="100990" fg:w="43"/><text x="69.4274%" y="863.50"></text></g><g><title>lld::elf::Symbol::replace (15 samples, 0.01%)</title><rect x="69.2281%" y="805" width="0.0103%" height="15" fill="rgb(216,52,43)" fg:x="101064" fg:w="15"/><text x="69.4781%" y="815.50"></text></g><g><title>lld::make&lt;lld::elf::SymbolUnion&gt; (33 samples, 0.02%)</title><rect x="69.2555%" y="789" width="0.0226%" height="15" fill="rgb(238,144,41)" fg:x="101104" fg:w="33"/><text x="69.5055%" y="799.50"></text></g><g><title>operator new (18 samples, 0.01%)</title><rect x="69.2658%" y="773" width="0.0123%" height="15" fill="rgb(243,63,9)" fg:x="101119" fg:w="18"/><text x="69.5158%" y="783.50"></text></g><g><title>__GI___libc_malloc (18 samples, 0.01%)</title><rect x="69.2658%" y="757" width="0.0123%" height="15" fill="rgb(246,208,1)" fg:x="101119" fg:w="18"/><text x="69.5158%" y="767.50"></text></g><g><title>_int_malloc (18 samples, 0.01%)</title><rect x="69.2658%" y="741" width="0.0123%" height="15" fill="rgb(233,182,18)" fg:x="101119" fg:w="18"/><text x="69.5158%" y="751.50"></text></g><g><title>asm_exc_page_fault (19 samples, 0.01%)</title><rect x="69.2925%" y="757" width="0.0130%" height="15" fill="rgb(242,224,8)" fg:x="101158" fg:w="19"/><text x="69.5425%" y="767.50"></text></g><g><title>exc_page_fault (19 samples, 0.01%)</title><rect x="69.2925%" y="741" width="0.0130%" height="15" fill="rgb(243,54,37)" fg:x="101158" fg:w="19"/><text x="69.5425%" y="751.50"></text></g><g><title>do_user_addr_fault (19 samples, 0.01%)</title><rect x="69.2925%" y="725" width="0.0130%" height="15" fill="rgb(233,192,12)" fg:x="101158" fg:w="19"/><text x="69.5425%" y="735.50"></text></g><g><title>handle_mm_fault (18 samples, 0.01%)</title><rect x="69.2932%" y="709" width="0.0123%" height="15" fill="rgb(251,192,53)" fg:x="101159" fg:w="18"/><text x="69.5432%" y="719.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (20 samples, 0.01%)</title><rect x="69.3075%" y="757" width="0.0137%" height="15" fill="rgb(246,141,26)" fg:x="101180" fg:w="20"/><text x="69.5575%" y="767.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (68 samples, 0.05%)</title><rect x="69.2781%" y="789" width="0.0466%" height="15" fill="rgb(239,195,19)" fg:x="101137" fg:w="68"/><text x="69.5281%" y="799.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (65 samples, 0.04%)</title><rect x="69.2801%" y="773" width="0.0445%" height="15" fill="rgb(241,16,39)" fg:x="101140" fg:w="65"/><text x="69.5301%" y="783.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (46 samples, 0.03%)</title><rect x="69.3247%" y="789" width="0.0315%" height="15" fill="rgb(223,13,53)" fg:x="101205" fg:w="46"/><text x="69.5747%" y="799.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (205 samples, 0.14%)</title><rect x="69.2274%" y="821" width="0.1404%" height="15" fill="rgb(214,227,0)" fg:x="101063" fg:w="205"/><text x="69.4774%" y="831.50"></text></g><g><title>lld::elf::SymbolTable::insert (185 samples, 0.13%)</title><rect x="69.2411%" y="805" width="0.1267%" height="15" fill="rgb(228,103,26)" fg:x="101083" fg:w="185"/><text x="69.4911%" y="815.50"></text></g><g><title>llvm::Twine::toVector (25 samples, 0.02%)</title><rect x="69.3712%" y="821" width="0.0171%" height="15" fill="rgb(254,177,53)" fg:x="101273" fg:w="25"/><text x="69.6212%" y="831.50"></text></g><g><title>lld::elf::parseFile (276 samples, 0.19%)</title><rect x="69.2068%" y="853" width="0.1891%" height="15" fill="rgb(208,201,34)" fg:x="101033" fg:w="276"/><text x="69.4568%" y="863.50"></text></g><g><title>lld::elf::SharedFile::parse&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (268 samples, 0.18%)</title><rect x="69.2123%" y="837" width="0.1836%" height="15" fill="rgb(212,39,5)" fg:x="101041" fg:w="268"/><text x="69.4623%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (223 samples, 0.15%)</title><rect x="69.4254%" y="597" width="0.1528%" height="15" fill="rgb(246,117,3)" fg:x="101352" fg:w="223"/><text x="69.6754%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (220 samples, 0.15%)</title><rect x="69.4274%" y="581" width="0.1507%" height="15" fill="rgb(244,118,39)" fg:x="101355" fg:w="220"/><text x="69.6774%" y="591.50"></text></g><g><title>native_write_msr (220 samples, 0.15%)</title><rect x="69.4274%" y="565" width="0.1507%" height="15" fill="rgb(241,64,10)" fg:x="101355" fg:w="220"/><text x="69.6774%" y="575.50"></text></g><g><title>do_syscall_64 (237 samples, 0.16%)</title><rect x="69.4165%" y="725" width="0.1623%" height="15" fill="rgb(229,39,44)" fg:x="101339" fg:w="237"/><text x="69.6665%" y="735.50"></text></g><g><title>__x64_sys_futex (236 samples, 0.16%)</title><rect x="69.4171%" y="709" width="0.1617%" height="15" fill="rgb(230,226,3)" fg:x="101340" fg:w="236"/><text x="69.6671%" y="719.50"></text></g><g><title>do_futex (235 samples, 0.16%)</title><rect x="69.4178%" y="693" width="0.1610%" height="15" fill="rgb(222,13,42)" fg:x="101341" fg:w="235"/><text x="69.6678%" y="703.50"></text></g><g><title>futex_wait (235 samples, 0.16%)</title><rect x="69.4178%" y="677" width="0.1610%" height="15" fill="rgb(247,180,54)" fg:x="101341" fg:w="235"/><text x="69.6678%" y="687.50"></text></g><g><title>futex_wait_queue_me (234 samples, 0.16%)</title><rect x="69.4185%" y="661" width="0.1603%" height="15" fill="rgb(205,96,16)" fg:x="101342" fg:w="234"/><text x="69.6685%" y="671.50"></text></g><g><title>schedule (234 samples, 0.16%)</title><rect x="69.4185%" y="645" width="0.1603%" height="15" fill="rgb(205,100,21)" fg:x="101342" fg:w="234"/><text x="69.6685%" y="655.50"></text></g><g><title>__schedule (234 samples, 0.16%)</title><rect x="69.4185%" y="629" width="0.1603%" height="15" fill="rgb(248,51,4)" fg:x="101342" fg:w="234"/><text x="69.6685%" y="639.50"></text></g><g><title>finish_task_switch (234 samples, 0.16%)</title><rect x="69.4185%" y="613" width="0.1603%" height="15" fill="rgb(217,197,30)" fg:x="101342" fg:w="234"/><text x="69.6685%" y="623.50"></text></g><g><title>__pthread_cond_wait (242 samples, 0.17%)</title><rect x="69.4158%" y="789" width="0.1658%" height="15" fill="rgb(240,179,40)" fg:x="101338" fg:w="242"/><text x="69.6658%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (242 samples, 0.17%)</title><rect x="69.4158%" y="773" width="0.1658%" height="15" fill="rgb(212,185,35)" fg:x="101338" fg:w="242"/><text x="69.6658%" y="783.50"></text></g><g><title>futex_wait_cancelable (241 samples, 0.17%)</title><rect x="69.4165%" y="757" width="0.1651%" height="15" fill="rgb(251,222,31)" fg:x="101339" fg:w="241"/><text x="69.6665%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (241 samples, 0.17%)</title><rect x="69.4165%" y="741" width="0.1651%" height="15" fill="rgb(208,140,36)" fg:x="101339" fg:w="241"/><text x="69.6665%" y="751.50"></text></g><g><title>lld::elf::splitSections&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (272 samples, 0.19%)</title><rect x="69.3959%" y="853" width="0.1863%" height="15" fill="rgb(220,148,1)" fg:x="101309" fg:w="272"/><text x="69.6459%" y="863.50"></text></g><g><title>llvm::parallelForEachN (272 samples, 0.19%)</title><rect x="69.3959%" y="837" width="0.1863%" height="15" fill="rgb(254,4,28)" fg:x="101309" fg:w="272"/><text x="69.6459%" y="847.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::~TaskGroup (261 samples, 0.18%)</title><rect x="69.4034%" y="821" width="0.1788%" height="15" fill="rgb(222,185,44)" fg:x="101320" fg:w="261"/><text x="69.6534%" y="831.50"></text></g><g><title>std::condition_variable::wait (243 samples, 0.17%)</title><rect x="69.4158%" y="805" width="0.1665%" height="15" fill="rgb(215,74,39)" fg:x="101338" fg:w="243"/><text x="69.6658%" y="815.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (24 samples, 0.02%)</title><rect x="69.6096%" y="757" width="0.0164%" height="15" fill="rgb(247,86,4)" fg:x="101621" fg:w="24"/><text x="69.8596%" y="767.50"></text></g><g><title>std::condition_variable::notify_one (19 samples, 0.01%)</title><rect x="69.6130%" y="741" width="0.0130%" height="15" fill="rgb(231,105,32)" fg:x="101626" fg:w="19"/><text x="69.8630%" y="751.50"></text></g><g><title>__pthread_cond_signal (19 samples, 0.01%)</title><rect x="69.6130%" y="725" width="0.0130%" height="15" fill="rgb(222,65,35)" fg:x="101626" fg:w="19"/><text x="69.8630%" y="735.50"></text></g><g><title>futex_wake (18 samples, 0.01%)</title><rect x="69.6137%" y="709" width="0.0123%" height="15" fill="rgb(218,145,35)" fg:x="101627" fg:w="18"/><text x="69.8637%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="69.6137%" y="693" width="0.0123%" height="15" fill="rgb(208,7,15)" fg:x="101627" fg:w="18"/><text x="69.8637%" y="703.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="69.6137%" y="677" width="0.0123%" height="15" fill="rgb(209,83,13)" fg:x="101627" fg:w="18"/><text x="69.8637%" y="687.50"></text></g><g><title>__x64_sys_futex (18 samples, 0.01%)</title><rect x="69.6137%" y="661" width="0.0123%" height="15" fill="rgb(218,3,10)" fg:x="101627" fg:w="18"/><text x="69.8637%" y="671.50"></text></g><g><title>do_futex (18 samples, 0.01%)</title><rect x="69.6137%" y="645" width="0.0123%" height="15" fill="rgb(211,219,4)" fg:x="101627" fg:w="18"/><text x="69.8637%" y="655.50"></text></g><g><title>futex_wake (18 samples, 0.01%)</title><rect x="69.6137%" y="629" width="0.0123%" height="15" fill="rgb(228,194,12)" fg:x="101627" fg:w="18"/><text x="69.8637%" y="639.50"></text></g><g><title>wake_up_q (15 samples, 0.01%)</title><rect x="69.6158%" y="613" width="0.0103%" height="15" fill="rgb(210,175,7)" fg:x="101630" fg:w="15"/><text x="69.8658%" y="623.50"></text></g><g><title>lld::elf::MergeNoTailSection::writeTo (26 samples, 0.02%)</title><rect x="69.6089%" y="789" width="0.0178%" height="15" fill="rgb(243,132,6)" fg:x="101620" fg:w="26"/><text x="69.8589%" y="799.50"></text></g><g><title>llvm::parallelForEachN (26 samples, 0.02%)</title><rect x="69.6089%" y="773" width="0.0178%" height="15" fill="rgb(207,72,18)" fg:x="101620" fg:w="26"/><text x="69.8589%" y="783.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;(unsigned char*)::{lambda(unsigned long)#2}&gt; (32 samples, 0.02%)</title><rect x="69.6083%" y="805" width="0.0219%" height="15" fill="rgb(236,1,18)" fg:x="101619" fg:w="32"/><text x="69.8583%" y="815.50"></text></g><g><title>lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (43 samples, 0.03%)</title><rect x="69.6062%" y="837" width="0.0295%" height="15" fill="rgb(227,0,18)" fg:x="101616" fg:w="43"/><text x="69.8562%" y="847.50"></text></g><g><title>llvm::parallelForEachN (41 samples, 0.03%)</title><rect x="69.6076%" y="821" width="0.0281%" height="15" fill="rgb(247,37,5)" fg:x="101618" fg:w="41"/><text x="69.8576%" y="831.50"></text></g><g><title>lld::elf::postScanRelocations (15 samples, 0.01%)</title><rect x="69.6384%" y="837" width="0.0103%" height="15" fill="rgb(237,179,24)" fg:x="101663" fg:w="15"/><text x="69.8884%" y="847.50"></text></g><g><title>llvm::sys::fs::TempFile::create (17 samples, 0.01%)</title><rect x="69.6589%" y="821" width="0.0116%" height="15" fill="rgb(226,53,20)" fg:x="101693" fg:w="17"/><text x="69.9089%" y="831.50"></text></g><g><title>llvm::sys::fs::openFile (17 samples, 0.01%)</title><rect x="69.6589%" y="805" width="0.0116%" height="15" fill="rgb(247,75,7)" fg:x="101693" fg:w="17"/><text x="69.9089%" y="815.50"></text></g><g><title>__libc_open64 (17 samples, 0.01%)</title><rect x="69.6589%" y="789" width="0.0116%" height="15" fill="rgb(233,96,12)" fg:x="101693" fg:w="17"/><text x="69.9089%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="69.6589%" y="773" width="0.0116%" height="15" fill="rgb(224,125,0)" fg:x="101693" fg:w="17"/><text x="69.9089%" y="783.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="69.6589%" y="757" width="0.0116%" height="15" fill="rgb(224,92,25)" fg:x="101693" fg:w="17"/><text x="69.9089%" y="767.50"></text></g><g><title>__x64_sys_openat (17 samples, 0.01%)</title><rect x="69.6589%" y="741" width="0.0116%" height="15" fill="rgb(224,42,24)" fg:x="101693" fg:w="17"/><text x="69.9089%" y="751.50"></text></g><g><title>do_sys_openat2 (17 samples, 0.01%)</title><rect x="69.6589%" y="725" width="0.0116%" height="15" fill="rgb(234,132,49)" fg:x="101693" fg:w="17"/><text x="69.9089%" y="735.50"></text></g><g><title>do_filp_open (17 samples, 0.01%)</title><rect x="69.6589%" y="709" width="0.0116%" height="15" fill="rgb(248,100,35)" fg:x="101693" fg:w="17"/><text x="69.9089%" y="719.50"></text></g><g><title>path_openat (17 samples, 0.01%)</title><rect x="69.6589%" y="693" width="0.0116%" height="15" fill="rgb(239,94,40)" fg:x="101693" fg:w="17"/><text x="69.9089%" y="703.50"></text></g><g><title>llvm::FileOutputBuffer::create (26 samples, 0.02%)</title><rect x="69.6589%" y="837" width="0.0178%" height="15" fill="rgb(235,139,28)" fg:x="101693" fg:w="26"/><text x="69.9089%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="69.7206%" y="613" width="0.0247%" height="15" fill="rgb(217,144,7)" fg:x="101783" fg:w="36"/><text x="69.9706%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (35 samples, 0.02%)</title><rect x="69.7213%" y="597" width="0.0240%" height="15" fill="rgb(227,55,4)" fg:x="101784" fg:w="35"/><text x="69.9713%" y="607.50"></text></g><g><title>native_write_msr (35 samples, 0.02%)</title><rect x="69.7213%" y="581" width="0.0240%" height="15" fill="rgb(252,82,54)" fg:x="101784" fg:w="35"/><text x="69.9713%" y="591.50"></text></g><g><title>finish_task_switch (41 samples, 0.03%)</title><rect x="69.7179%" y="629" width="0.0281%" height="15" fill="rgb(245,172,4)" fg:x="101779" fg:w="41"/><text x="69.9679%" y="639.50"></text></g><g><title>futex_wait_queue_me (49 samples, 0.03%)</title><rect x="69.7137%" y="677" width="0.0336%" height="15" fill="rgb(207,26,27)" fg:x="101773" fg:w="49"/><text x="69.9637%" y="687.50"></text></g><g><title>schedule (49 samples, 0.03%)</title><rect x="69.7137%" y="661" width="0.0336%" height="15" fill="rgb(252,98,18)" fg:x="101773" fg:w="49"/><text x="69.9637%" y="671.50"></text></g><g><title>__schedule (49 samples, 0.03%)</title><rect x="69.7137%" y="645" width="0.0336%" height="15" fill="rgb(244,8,26)" fg:x="101773" fg:w="49"/><text x="69.9637%" y="655.50"></text></g><g><title>__GI___pthread_mutex_lock (67 samples, 0.05%)</title><rect x="69.7035%" y="789" width="0.0459%" height="15" fill="rgb(237,173,45)" fg:x="101758" fg:w="67"/><text x="69.9535%" y="799.50"></text></g><g><title>__lll_lock_wait (56 samples, 0.04%)</title><rect x="69.7110%" y="773" width="0.0384%" height="15" fill="rgb(208,213,49)" fg:x="101769" fg:w="56"/><text x="69.9610%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.04%)</title><rect x="69.7124%" y="757" width="0.0370%" height="15" fill="rgb(212,122,37)" fg:x="101771" fg:w="54"/><text x="69.9624%" y="767.50"></text></g><g><title>do_syscall_64 (53 samples, 0.04%)</title><rect x="69.7131%" y="741" width="0.0363%" height="15" fill="rgb(213,80,17)" fg:x="101772" fg:w="53"/><text x="69.9631%" y="751.50"></text></g><g><title>__x64_sys_futex (52 samples, 0.04%)</title><rect x="69.7137%" y="725" width="0.0356%" height="15" fill="rgb(206,210,43)" fg:x="101773" fg:w="52"/><text x="69.9637%" y="735.50"></text></g><g><title>do_futex (52 samples, 0.04%)</title><rect x="69.7137%" y="709" width="0.0356%" height="15" fill="rgb(229,214,3)" fg:x="101773" fg:w="52"/><text x="69.9637%" y="719.50"></text></g><g><title>futex_wait (52 samples, 0.04%)</title><rect x="69.7137%" y="693" width="0.0356%" height="15" fill="rgb(235,213,29)" fg:x="101773" fg:w="52"/><text x="69.9637%" y="703.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (68 samples, 0.05%)</title><rect x="69.7494%" y="789" width="0.0466%" height="15" fill="rgb(248,135,26)" fg:x="101825" fg:w="68"/><text x="69.9994%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.03%)</title><rect x="69.7624%" y="773" width="0.0336%" height="15" fill="rgb(242,188,12)" fg:x="101844" fg:w="49"/><text x="70.0124%" y="783.50"></text></g><g><title>do_syscall_64 (49 samples, 0.03%)</title><rect x="69.7624%" y="757" width="0.0336%" height="15" fill="rgb(245,38,12)" fg:x="101844" fg:w="49"/><text x="70.0124%" y="767.50"></text></g><g><title>__x64_sys_futex (49 samples, 0.03%)</title><rect x="69.7624%" y="741" width="0.0336%" height="15" fill="rgb(218,42,13)" fg:x="101844" fg:w="49"/><text x="70.0124%" y="751.50"></text></g><g><title>do_futex (47 samples, 0.03%)</title><rect x="69.7637%" y="725" width="0.0322%" height="15" fill="rgb(238,132,49)" fg:x="101846" fg:w="47"/><text x="70.0137%" y="735.50"></text></g><g><title>futex_wake (47 samples, 0.03%)</title><rect x="69.7637%" y="709" width="0.0322%" height="15" fill="rgb(209,196,19)" fg:x="101846" fg:w="47"/><text x="70.0137%" y="719.50"></text></g><g><title>wake_up_q (38 samples, 0.03%)</title><rect x="69.7699%" y="693" width="0.0260%" height="15" fill="rgb(244,131,22)" fg:x="101855" fg:w="38"/><text x="70.0199%" y="703.50"></text></g><g><title>try_to_wake_up (37 samples, 0.03%)</title><rect x="69.7706%" y="677" width="0.0253%" height="15" fill="rgb(223,18,34)" fg:x="101856" fg:w="37"/><text x="70.0206%" y="687.50"></text></g><g><title>_int_malloc (25 samples, 0.02%)</title><rect x="69.8035%" y="725" width="0.0171%" height="15" fill="rgb(252,124,54)" fg:x="101904" fg:w="25"/><text x="70.0535%" y="735.50"></text></g><g><title>operator new (35 samples, 0.02%)</title><rect x="69.7973%" y="757" width="0.0240%" height="15" fill="rgb(229,106,42)" fg:x="101895" fg:w="35"/><text x="70.0473%" y="767.50"></text></g><g><title>__GI___libc_malloc (35 samples, 0.02%)</title><rect x="69.7973%" y="741" width="0.0240%" height="15" fill="rgb(221,129,1)" fg:x="101895" fg:w="35"/><text x="70.0473%" y="751.50"></text></g><g><title>_int_malloc (18 samples, 0.01%)</title><rect x="69.8220%" y="709" width="0.0123%" height="15" fill="rgb(229,74,15)" fg:x="101931" fg:w="18"/><text x="70.0720%" y="719.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (198 samples, 0.14%)</title><rect x="69.7014%" y="805" width="0.1356%" height="15" fill="rgb(210,206,50)" fg:x="101755" fg:w="198"/><text x="69.9514%" y="815.50"></text></g><g><title>std::deque&lt;std::function&lt;void ()&gt;, std::allocator&lt;std::function&lt;void ()&gt; &gt; &gt;::push_back (60 samples, 0.04%)</title><rect x="69.7959%" y="789" width="0.0411%" height="15" fill="rgb(251,114,31)" fg:x="101893" fg:w="60"/><text x="70.0459%" y="799.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (59 samples, 0.04%)</title><rect x="69.7966%" y="773" width="0.0404%" height="15" fill="rgb(215,225,28)" fg:x="101894" fg:w="59"/><text x="70.0466%" y="783.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_manager (23 samples, 0.02%)</title><rect x="69.8213%" y="757" width="0.0158%" height="15" fill="rgb(237,109,14)" fg:x="101930" fg:w="23"/><text x="70.0713%" y="767.50"></text></g><g><title>operator new (23 samples, 0.02%)</title><rect x="69.8213%" y="741" width="0.0158%" height="15" fill="rgb(230,13,37)" fg:x="101930" fg:w="23"/><text x="70.0713%" y="751.50"></text></g><g><title>__GI___libc_malloc (23 samples, 0.02%)</title><rect x="69.8213%" y="725" width="0.0158%" height="15" fill="rgb(231,40,28)" fg:x="101930" fg:w="23"/><text x="70.0713%" y="735.50"></text></g><g><title>dequeue_task_fair (16 samples, 0.01%)</title><rect x="69.8836%" y="597" width="0.0110%" height="15" fill="rgb(231,202,18)" fg:x="102021" fg:w="16"/><text x="70.1336%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (417 samples, 0.29%)</title><rect x="69.8994%" y="581" width="0.2856%" height="15" fill="rgb(225,33,18)" fg:x="102044" fg:w="417"/><text x="70.1494%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (413 samples, 0.28%)</title><rect x="69.9021%" y="565" width="0.2829%" height="15" fill="rgb(223,64,47)" fg:x="102048" fg:w="413"/><text x="70.1521%" y="575.50"></text></g><g><title>native_write_msr (413 samples, 0.28%)</title><rect x="69.9021%" y="549" width="0.2829%" height="15" fill="rgb(234,114,13)" fg:x="102048" fg:w="413"/><text x="70.1521%" y="559.50"></text></g><g><title>finish_task_switch (437 samples, 0.30%)</title><rect x="69.8946%" y="597" width="0.2993%" height="15" fill="rgb(248,56,40)" fg:x="102037" fg:w="437"/><text x="70.1446%" y="607.50"></text></g><g><title>futex_wait_queue_me (472 samples, 0.32%)</title><rect x="69.8795%" y="645" width="0.3233%" height="15" fill="rgb(221,194,21)" fg:x="102015" fg:w="472"/><text x="70.1295%" y="655.50"></text></g><g><title>schedule (471 samples, 0.32%)</title><rect x="69.8802%" y="629" width="0.3226%" height="15" fill="rgb(242,108,46)" fg:x="102016" fg:w="471"/><text x="70.1302%" y="639.50"></text></g><g><title>__schedule (470 samples, 0.32%)</title><rect x="69.8809%" y="613" width="0.3219%" height="15" fill="rgb(220,106,10)" fg:x="102017" fg:w="470"/><text x="70.1309%" y="623.50"></text></g><g><title>do_syscall_64 (489 samples, 0.33%)</title><rect x="69.8713%" y="709" width="0.3350%" height="15" fill="rgb(211,88,4)" fg:x="102003" fg:w="489"/><text x="70.1213%" y="719.50"></text></g><g><title>__x64_sys_futex (486 samples, 0.33%)</title><rect x="69.8733%" y="693" width="0.3329%" height="15" fill="rgb(214,95,34)" fg:x="102006" fg:w="486"/><text x="70.1233%" y="703.50"></text></g><g><title>do_futex (485 samples, 0.33%)</title><rect x="69.8740%" y="677" width="0.3322%" height="15" fill="rgb(250,160,33)" fg:x="102007" fg:w="485"/><text x="70.1240%" y="687.50"></text></g><g><title>futex_wait (482 samples, 0.33%)</title><rect x="69.8761%" y="661" width="0.3302%" height="15" fill="rgb(225,29,10)" fg:x="102010" fg:w="482"/><text x="70.1261%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (500 samples, 0.34%)</title><rect x="69.8706%" y="725" width="0.3425%" height="15" fill="rgb(224,28,30)" fg:x="102002" fg:w="500"/><text x="70.1206%" y="735.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (514 samples, 0.35%)</title><rect x="69.8624%" y="773" width="0.3521%" height="15" fill="rgb(231,77,4)" fg:x="101990" fg:w="514"/><text x="70.1124%" y="783.50"></text></g><g><title>futex_wait_simple (505 samples, 0.35%)</title><rect x="69.8685%" y="757" width="0.3459%" height="15" fill="rgb(209,63,21)" fg:x="101999" fg:w="505"/><text x="70.1185%" y="767.50"></text></g><g><title>futex_wait (505 samples, 0.35%)</title><rect x="69.8685%" y="741" width="0.3459%" height="15" fill="rgb(226,22,11)" fg:x="101999" fg:w="505"/><text x="70.1185%" y="751.50"></text></g><g><title>mark_wake_futex (31 samples, 0.02%)</title><rect x="70.2556%" y="677" width="0.0212%" height="15" fill="rgb(216,82,30)" fg:x="102564" fg:w="31"/><text x="70.5056%" y="687.50"></text></g><g><title>__unqueue_futex (19 samples, 0.01%)</title><rect x="70.2638%" y="661" width="0.0130%" height="15" fill="rgb(246,227,38)" fg:x="102576" fg:w="19"/><text x="70.5138%" y="671.50"></text></g><g><title>_raw_spin_lock (41 samples, 0.03%)</title><rect x="70.2919%" y="645" width="0.0281%" height="15" fill="rgb(251,203,53)" fg:x="102617" fg:w="41"/><text x="70.5419%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (30 samples, 0.02%)</title><rect x="70.2994%" y="629" width="0.0205%" height="15" fill="rgb(254,101,1)" fg:x="102628" fg:w="30"/><text x="70.5494%" y="639.50"></text></g><g><title>available_idle_cpu (20 samples, 0.01%)</title><rect x="70.3583%" y="629" width="0.0137%" height="15" fill="rgb(241,180,5)" fg:x="102714" fg:w="20"/><text x="70.6083%" y="639.50"></text></g><g><title>select_task_rq_fair (90 samples, 0.06%)</title><rect x="70.3295%" y="645" width="0.0616%" height="15" fill="rgb(218,168,4)" fg:x="102672" fg:w="90"/><text x="70.5795%" y="655.50"></text></g><g><title>update_cfs_rq_h_load (22 samples, 0.02%)</title><rect x="70.3761%" y="629" width="0.0151%" height="15" fill="rgb(224,223,32)" fg:x="102740" fg:w="22"/><text x="70.6261%" y="639.50"></text></g><g><title>enqueue_entity (92 samples, 0.06%)</title><rect x="70.4090%" y="613" width="0.0630%" height="15" fill="rgb(236,106,22)" fg:x="102788" fg:w="92"/><text x="70.6590%" y="623.50"></text></g><g><title>update_load_avg (24 samples, 0.02%)</title><rect x="70.4556%" y="597" width="0.0164%" height="15" fill="rgb(206,121,5)" fg:x="102856" fg:w="24"/><text x="70.7056%" y="607.50"></text></g><g><title>enqueue_task_fair (110 samples, 0.08%)</title><rect x="70.3980%" y="629" width="0.0753%" height="15" fill="rgb(233,87,28)" fg:x="102772" fg:w="110"/><text x="70.6480%" y="639.50"></text></g><g><title>ttwu_do_activate (233 samples, 0.16%)</title><rect x="70.3939%" y="645" width="0.1596%" height="15" fill="rgb(236,137,17)" fg:x="102766" fg:w="233"/><text x="70.6439%" y="655.50"></text></g><g><title>psi_task_change (116 samples, 0.08%)</title><rect x="70.4741%" y="629" width="0.0795%" height="15" fill="rgb(209,183,38)" fg:x="102883" fg:w="116"/><text x="70.7241%" y="639.50"></text></g><g><title>psi_group_change (106 samples, 0.07%)</title><rect x="70.4809%" y="613" width="0.0726%" height="15" fill="rgb(206,162,44)" fg:x="102893" fg:w="106"/><text x="70.7309%" y="623.50"></text></g><g><title>record_times (17 samples, 0.01%)</title><rect x="70.5419%" y="597" width="0.0116%" height="15" fill="rgb(237,70,39)" fg:x="102982" fg:w="17"/><text x="70.7919%" y="607.50"></text></g><g><title>__x64_sys_futex (508 samples, 0.35%)</title><rect x="70.2316%" y="725" width="0.3480%" height="15" fill="rgb(212,176,5)" fg:x="102529" fg:w="508"/><text x="70.4816%" y="735.50"></text></g><g><title>do_futex (508 samples, 0.35%)</title><rect x="70.2316%" y="709" width="0.3480%" height="15" fill="rgb(232,95,16)" fg:x="102529" fg:w="508"/><text x="70.4816%" y="719.50"></text></g><g><title>futex_wake (503 samples, 0.34%)</title><rect x="70.2350%" y="693" width="0.3446%" height="15" fill="rgb(219,115,35)" fg:x="102534" fg:w="503"/><text x="70.4850%" y="703.50"></text></g><g><title>wake_up_q (439 samples, 0.30%)</title><rect x="70.2789%" y="677" width="0.3007%" height="15" fill="rgb(251,67,27)" fg:x="102598" fg:w="439"/><text x="70.5289%" y="687.50"></text></g><g><title>try_to_wake_up (431 samples, 0.30%)</title><rect x="70.2843%" y="661" width="0.2952%" height="15" fill="rgb(222,95,40)" fg:x="102606" fg:w="431"/><text x="70.5343%" y="671.50"></text></g><g><title>update_rq_clock (25 samples, 0.02%)</title><rect x="70.5624%" y="645" width="0.0171%" height="15" fill="rgb(250,35,16)" fg:x="103012" fg:w="25"/><text x="70.8124%" y="655.50"></text></g><g><title>do_syscall_64 (512 samples, 0.35%)</title><rect x="70.2295%" y="741" width="0.3507%" height="15" fill="rgb(224,86,44)" fg:x="102526" fg:w="512"/><text x="70.4795%" y="751.50"></text></g><g><title>__pthread_cond_signal (1,069 samples, 0.73%)</title><rect x="69.8514%" y="789" width="0.7323%" height="15" fill="rgb(237,53,53)" fg:x="101974" fg:w="1069"/><text x="70.1014%" y="799.50"></text></g><g><title>futex_wake (535 samples, 0.37%)</title><rect x="70.2172%" y="773" width="0.3665%" height="15" fill="rgb(208,171,33)" fg:x="102508" fg:w="535"/><text x="70.4672%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (518 samples, 0.35%)</title><rect x="70.2289%" y="757" width="0.3548%" height="15" fill="rgb(222,64,27)" fg:x="102525" fg:w="518"/><text x="70.4789%" y="767.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (1,318 samples, 0.90%)</title><rect x="69.6815%" y="821" width="0.9028%" height="15" fill="rgb(221,121,35)" fg:x="101726" fg:w="1318"/><text x="69.9315%" y="831.50"></text></g><g><title>std::condition_variable::notify_one (1,072 samples, 0.73%)</title><rect x="69.8501%" y="805" width="0.7343%" height="15" fill="rgb(228,137,42)" fg:x="101972" fg:w="1072"/><text x="70.1001%" y="815.50"></text></g><g><title>llvm::parallelForEachN (1,341 samples, 0.92%)</title><rect x="69.6774%" y="837" width="0.9186%" height="15" fill="rgb(227,54,21)" fg:x="101720" fg:w="1341"/><text x="69.9274%" y="847.50"></text></g><g><title>rename (18 samples, 0.01%)</title><rect x="70.5967%" y="805" width="0.0123%" height="15" fill="rgb(240,168,33)" fg:x="103062" fg:w="18"/><text x="70.8467%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (18 samples, 0.01%)</title><rect x="70.5967%" y="789" width="0.0123%" height="15" fill="rgb(243,159,6)" fg:x="103062" fg:w="18"/><text x="70.8467%" y="799.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="70.5967%" y="773" width="0.0123%" height="15" fill="rgb(205,211,41)" fg:x="103062" fg:w="18"/><text x="70.8467%" y="783.50"></text></g><g><title>__x64_sys_rename (18 samples, 0.01%)</title><rect x="70.5967%" y="757" width="0.0123%" height="15" fill="rgb(253,30,1)" fg:x="103062" fg:w="18"/><text x="70.8467%" y="767.50"></text></g><g><title>do_renameat2 (18 samples, 0.01%)</title><rect x="70.5967%" y="741" width="0.0123%" height="15" fill="rgb(226,80,18)" fg:x="103062" fg:w="18"/><text x="70.8467%" y="751.50"></text></g><g><title>vfs_rename (16 samples, 0.01%)</title><rect x="70.5981%" y="725" width="0.0110%" height="15" fill="rgb(253,156,46)" fg:x="103064" fg:w="16"/><text x="70.8481%" y="735.50"></text></g><g><title>btrfs_rename2 (16 samples, 0.01%)</title><rect x="70.5981%" y="709" width="0.0110%" height="15" fill="rgb(248,87,27)" fg:x="103064" fg:w="16"/><text x="70.8481%" y="719.50"></text></g><g><title>llvm::sys::fs::TempFile::keep (20 samples, 0.01%)</title><rect x="70.5960%" y="837" width="0.0137%" height="15" fill="rgb(227,122,2)" fg:x="103061" fg:w="20"/><text x="70.8460%" y="847.50"></text></g><g><title>llvm::sys::fs::rename (19 samples, 0.01%)</title><rect x="70.5967%" y="821" width="0.0130%" height="15" fill="rgb(229,94,39)" fg:x="103062" fg:w="19"/><text x="70.8467%" y="831.50"></text></g><g><title>lld::elf::writeResult&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (1,507 samples, 1.03%)</title><rect x="69.5822%" y="853" width="1.0323%" height="15" fill="rgb(225,173,31)" fg:x="101581" fg:w="1507"/><text x="69.8322%" y="863.50"></text></g><g><title>llvm::FileOutputBuffer::create (18 samples, 0.01%)</title><rect x="70.6152%" y="837" width="0.0123%" height="15" fill="rgb(239,176,30)" fg:x="103089" fg:w="18"/><text x="70.8652%" y="847.50"></text></g><g><title>lld::tryCreateFile (25 samples, 0.02%)</title><rect x="70.6152%" y="853" width="0.0171%" height="15" fill="rgb(212,104,21)" fg:x="103089" fg:w="25"/><text x="70.8652%" y="863.50"></text></g><g><title>lld::elf::LinkerDriver::link (2,588 samples, 1.77%)</title><rect x="68.8602%" y="869" width="1.7728%" height="15" fill="rgb(240,209,40)" fg:x="100527" fg:w="2588"/><text x="69.1102%" y="879.50">l..</text></g><g><title>llvm::InitializeAllTargets (53 samples, 0.04%)</title><rect x="70.6357%" y="869" width="0.0363%" height="15" fill="rgb(234,195,5)" fg:x="103119" fg:w="53"/><text x="70.8857%" y="879.50"></text></g><g><title>lld::elf::link (2,729 samples, 1.87%)</title><rect x="68.8178%" y="901" width="1.8693%" height="15" fill="rgb(238,213,1)" fg:x="100465" fg:w="2729"/><text x="69.0678%" y="911.50">l..</text></g><g><title>lld::elf::LinkerDriver::linkerMain (2,719 samples, 1.86%)</title><rect x="68.8246%" y="885" width="1.8625%" height="15" fill="rgb(235,182,54)" fg:x="100475" fg:w="2719"/><text x="69.0746%" y="895.50">l..</text></g><g><title>readConfigs (18 samples, 0.01%)</title><rect x="70.6748%" y="869" width="0.0123%" height="15" fill="rgb(229,50,46)" fg:x="103176" fg:w="18"/><text x="70.9248%" y="879.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (39 samples, 0.03%)</title><rect x="70.6926%" y="869" width="0.0267%" height="15" fill="rgb(219,145,13)" fg:x="103202" fg:w="39"/><text x="70.9426%" y="879.50"></text></g><g><title>llvm::llvm_shutdown (57 samples, 0.04%)</title><rect x="70.6871%" y="885" width="0.0390%" height="15" fill="rgb(220,226,10)" fg:x="103194" fg:w="57"/><text x="70.9371%" y="895.50"></text></g><g><title>lldMain (2,790 samples, 1.91%)</title><rect x="68.8178%" y="917" width="1.9111%" height="15" fill="rgb(248,47,30)" fg:x="100465" fg:w="2790"/><text x="69.0678%" y="927.50">l..</text></g><g><title>lld::exitLld (61 samples, 0.04%)</title><rect x="70.6871%" y="901" width="0.0418%" height="15" fill="rgb(231,209,44)" fg:x="103194" fg:w="61"/><text x="70.9371%" y="911.50"></text></g><g><title>__libc_start_main (3,060 samples, 2.10%)</title><rect x="68.6335%" y="949" width="2.0961%" height="15" fill="rgb(209,80,30)" fg:x="100196" fg:w="3060"/><text x="68.8835%" y="959.50">_..</text></g><g><title>main (2,791 samples, 1.91%)</title><rect x="68.8178%" y="933" width="1.9118%" height="15" fill="rgb(232,9,14)" fg:x="100465" fg:w="2791"/><text x="69.0678%" y="943.50">m..</text></g><g><title>ksys_mmap_pgoff (22 samples, 0.02%)</title><rect x="70.7351%" y="725" width="0.0151%" height="15" fill="rgb(243,91,43)" fg:x="103264" fg:w="22"/><text x="70.9851%" y="735.50"></text></g><g><title>vm_mmap_pgoff (22 samples, 0.02%)</title><rect x="70.7351%" y="709" width="0.0151%" height="15" fill="rgb(231,90,52)" fg:x="103264" fg:w="22"/><text x="70.9851%" y="719.50"></text></g><g><title>do_mmap (22 samples, 0.02%)</title><rect x="70.7351%" y="693" width="0.0151%" height="15" fill="rgb(253,192,44)" fg:x="103264" fg:w="22"/><text x="70.9851%" y="703.50"></text></g><g><title>mmap_region (21 samples, 0.01%)</title><rect x="70.7358%" y="677" width="0.0144%" height="15" fill="rgb(241,66,31)" fg:x="103265" fg:w="21"/><text x="70.9858%" y="687.50"></text></g><g><title>_dl_map_segments (26 samples, 0.02%)</title><rect x="70.7330%" y="805" width="0.0178%" height="15" fill="rgb(235,81,37)" fg:x="103261" fg:w="26"/><text x="70.9830%" y="815.50"></text></g><g><title>__mmap64 (23 samples, 0.02%)</title><rect x="70.7351%" y="789" width="0.0158%" height="15" fill="rgb(223,221,9)" fg:x="103264" fg:w="23"/><text x="70.9851%" y="799.50"></text></g><g><title>__mmap64 (23 samples, 0.02%)</title><rect x="70.7351%" y="773" width="0.0158%" height="15" fill="rgb(242,180,7)" fg:x="103264" fg:w="23"/><text x="70.9851%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="70.7351%" y="757" width="0.0158%" height="15" fill="rgb(243,78,19)" fg:x="103264" fg:w="23"/><text x="70.9851%" y="767.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="70.7351%" y="741" width="0.0158%" height="15" fill="rgb(233,23,17)" fg:x="103264" fg:w="23"/><text x="70.9851%" y="751.50"></text></g><g><title>_dl_map_object_from_fd (35 samples, 0.02%)</title><rect x="70.7323%" y="821" width="0.0240%" height="15" fill="rgb(252,122,45)" fg:x="103260" fg:w="35"/><text x="70.9823%" y="831.50"></text></g><g><title>_dl_catch_exception (45 samples, 0.03%)</title><rect x="70.7303%" y="869" width="0.0308%" height="15" fill="rgb(247,108,20)" fg:x="103257" fg:w="45"/><text x="70.9803%" y="879.50"></text></g><g><title>openaux (45 samples, 0.03%)</title><rect x="70.7303%" y="853" width="0.0308%" height="15" fill="rgb(235,84,21)" fg:x="103257" fg:w="45"/><text x="70.9803%" y="863.50"></text></g><g><title>_dl_map_object (45 samples, 0.03%)</title><rect x="70.7303%" y="837" width="0.0308%" height="15" fill="rgb(247,129,10)" fg:x="103257" fg:w="45"/><text x="70.9803%" y="847.50"></text></g><g><title>_dl_map_object_deps (48 samples, 0.03%)</title><rect x="70.7303%" y="885" width="0.0329%" height="15" fill="rgb(208,173,14)" fg:x="103257" fg:w="48"/><text x="70.9803%" y="895.50"></text></g><g><title>dl_new_hash (34 samples, 0.02%)</title><rect x="70.7844%" y="821" width="0.0233%" height="15" fill="rgb(236,31,38)" fg:x="103336" fg:w="34"/><text x="71.0344%" y="831.50"></text></g><g><title>_dl_lookup_symbol_x (76 samples, 0.05%)</title><rect x="70.7823%" y="837" width="0.0521%" height="15" fill="rgb(232,65,17)" fg:x="103333" fg:w="76"/><text x="71.0323%" y="847.50"></text></g><g><title>do_lookup_x (39 samples, 0.03%)</title><rect x="70.8077%" y="821" width="0.0267%" height="15" fill="rgb(224,45,49)" fg:x="103370" fg:w="39"/><text x="71.0577%" y="831.50"></text></g><g><title>asm_exc_page_fault (17 samples, 0.01%)</title><rect x="70.8344%" y="837" width="0.0116%" height="15" fill="rgb(225,2,53)" fg:x="103409" fg:w="17"/><text x="71.0844%" y="847.50"></text></g><g><title>exc_page_fault (17 samples, 0.01%)</title><rect x="70.8344%" y="821" width="0.0116%" height="15" fill="rgb(248,210,53)" fg:x="103409" fg:w="17"/><text x="71.0844%" y="831.50"></text></g><g><title>do_user_addr_fault (17 samples, 0.01%)</title><rect x="70.8344%" y="805" width="0.0116%" height="15" fill="rgb(211,1,30)" fg:x="103409" fg:w="17"/><text x="71.0844%" y="815.50"></text></g><g><title>handle_mm_fault (17 samples, 0.01%)</title><rect x="70.8344%" y="789" width="0.0116%" height="15" fill="rgb(224,96,15)" fg:x="103409" fg:w="17"/><text x="71.0844%" y="799.50"></text></g><g><title>elf_machine_rela (109 samples, 0.07%)</title><rect x="70.7727%" y="853" width="0.0747%" height="15" fill="rgb(252,45,11)" fg:x="103319" fg:w="109"/><text x="71.0227%" y="863.50"></text></g><g><title>elf_dynamic_do_Rela (120 samples, 0.08%)</title><rect x="70.7659%" y="869" width="0.0822%" height="15" fill="rgb(220,125,38)" fg:x="103309" fg:w="120"/><text x="71.0159%" y="879.50"></text></g><g><title>_dl_relocate_object (126 samples, 0.09%)</title><rect x="70.7632%" y="885" width="0.0863%" height="15" fill="rgb(243,161,33)" fg:x="103305" fg:w="126"/><text x="71.0132%" y="895.50"></text></g><g><title>[ld-2.31.so] (178 samples, 0.12%)</title><rect x="70.7296%" y="901" width="0.1219%" height="15" fill="rgb(248,197,34)" fg:x="103256" fg:w="178"/><text x="70.9796%" y="911.50"></text></g><g><title>_dl_start (180 samples, 0.12%)</title><rect x="70.7296%" y="949" width="0.1233%" height="15" fill="rgb(228,165,23)" fg:x="103256" fg:w="180"/><text x="70.9796%" y="959.50"></text></g><g><title>_dl_start_final (180 samples, 0.12%)</title><rect x="70.7296%" y="933" width="0.1233%" height="15" fill="rgb(236,94,38)" fg:x="103256" fg:w="180"/><text x="70.9796%" y="943.50"></text></g><g><title>_dl_sysdep_start (180 samples, 0.12%)</title><rect x="70.7296%" y="917" width="0.1233%" height="15" fill="rgb(220,13,23)" fg:x="103256" fg:w="180"/><text x="70.9796%" y="927.50"></text></g><g><title>_start (3,241 samples, 2.22%)</title><rect x="68.6335%" y="965" width="2.2201%" height="15" fill="rgb(234,26,39)" fg:x="100196" fg:w="3241"/><text x="68.8835%" y="975.50">_..</text></g><g><title>asm_exc_page_fault (71 samples, 0.05%)</title><rect x="70.8536%" y="965" width="0.0486%" height="15" fill="rgb(205,117,44)" fg:x="103437" fg:w="71"/><text x="71.1036%" y="975.50"></text></g><g><title>page_remove_rmap (43 samples, 0.03%)</title><rect x="70.9721%" y="821" width="0.0295%" height="15" fill="rgb(250,42,2)" fg:x="103610" fg:w="43"/><text x="71.2221%" y="831.50"></text></g><g><title>tlb_flush_mmu (36 samples, 0.02%)</title><rect x="71.0015%" y="821" width="0.0247%" height="15" fill="rgb(223,83,14)" fg:x="103653" fg:w="36"/><text x="71.2515%" y="831.50"></text></g><g><title>release_pages (25 samples, 0.02%)</title><rect x="71.0091%" y="805" width="0.0171%" height="15" fill="rgb(241,147,50)" fg:x="103664" fg:w="25"/><text x="71.2591%" y="815.50"></text></g><g><title>mmput (154 samples, 0.11%)</title><rect x="70.9262%" y="885" width="0.1055%" height="15" fill="rgb(218,90,6)" fg:x="103543" fg:w="154"/><text x="71.1762%" y="895.50"></text></g><g><title>exit_mmap (154 samples, 0.11%)</title><rect x="70.9262%" y="869" width="0.1055%" height="15" fill="rgb(210,191,5)" fg:x="103543" fg:w="154"/><text x="71.1762%" y="879.50"></text></g><g><title>unmap_vmas (145 samples, 0.10%)</title><rect x="70.9323%" y="853" width="0.0993%" height="15" fill="rgb(225,139,19)" fg:x="103552" fg:w="145"/><text x="71.1823%" y="863.50"></text></g><g><title>unmap_page_range (142 samples, 0.10%)</title><rect x="70.9344%" y="837" width="0.0973%" height="15" fill="rgb(210,1,33)" fg:x="103555" fg:w="142"/><text x="71.1844%" y="847.50"></text></g><g><title>__x64_sys_exit_group (160 samples, 0.11%)</title><rect x="70.9228%" y="933" width="0.1096%" height="15" fill="rgb(213,50,3)" fg:x="103538" fg:w="160"/><text x="71.1728%" y="943.50"></text></g><g><title>do_group_exit (160 samples, 0.11%)</title><rect x="70.9228%" y="917" width="0.1096%" height="15" fill="rgb(234,227,4)" fg:x="103538" fg:w="160"/><text x="71.1728%" y="927.50"></text></g><g><title>do_exit (160 samples, 0.11%)</title><rect x="70.9228%" y="901" width="0.1096%" height="15" fill="rgb(246,63,5)" fg:x="103538" fg:w="160"/><text x="71.1728%" y="911.50"></text></g><g><title>finish_task_switch (15 samples, 0.01%)</title><rect x="71.0337%" y="837" width="0.0103%" height="15" fill="rgb(245,136,27)" fg:x="103700" fg:w="15"/><text x="71.2837%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (15 samples, 0.01%)</title><rect x="71.0337%" y="821" width="0.0103%" height="15" fill="rgb(247,199,27)" fg:x="103700" fg:w="15"/><text x="71.2837%" y="831.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (15 samples, 0.01%)</title><rect x="71.0337%" y="805" width="0.0103%" height="15" fill="rgb(252,158,49)" fg:x="103700" fg:w="15"/><text x="71.2837%" y="815.50"></text></g><g><title>native_write_msr (15 samples, 0.01%)</title><rect x="71.0337%" y="789" width="0.0103%" height="15" fill="rgb(254,73,1)" fg:x="103700" fg:w="15"/><text x="71.2837%" y="799.50"></text></g><g><title>__x64_sys_futex (18 samples, 0.01%)</title><rect x="71.0324%" y="933" width="0.0123%" height="15" fill="rgb(248,93,19)" fg:x="103698" fg:w="18"/><text x="71.2824%" y="943.50"></text></g><g><title>do_futex (18 samples, 0.01%)</title><rect x="71.0324%" y="917" width="0.0123%" height="15" fill="rgb(206,67,5)" fg:x="103698" fg:w="18"/><text x="71.2824%" y="927.50"></text></g><g><title>futex_wait (18 samples, 0.01%)</title><rect x="71.0324%" y="901" width="0.0123%" height="15" fill="rgb(209,210,4)" fg:x="103698" fg:w="18"/><text x="71.2824%" y="911.50"></text></g><g><title>futex_wait_queue_me (18 samples, 0.01%)</title><rect x="71.0324%" y="885" width="0.0123%" height="15" fill="rgb(214,185,36)" fg:x="103698" fg:w="18"/><text x="71.2824%" y="895.50"></text></g><g><title>schedule (18 samples, 0.01%)</title><rect x="71.0324%" y="869" width="0.0123%" height="15" fill="rgb(233,191,26)" fg:x="103698" fg:w="18"/><text x="71.2824%" y="879.50"></text></g><g><title>__schedule (18 samples, 0.01%)</title><rect x="71.0324%" y="853" width="0.0123%" height="15" fill="rgb(248,94,17)" fg:x="103698" fg:w="18"/><text x="71.2824%" y="863.50"></text></g><g><title>do_syscall_64 (207 samples, 0.14%)</title><rect x="70.9097%" y="949" width="0.1418%" height="15" fill="rgb(250,64,4)" fg:x="103519" fg:w="207"/><text x="71.1597%" y="959.50"></text></g><g><title>page_remove_rmap (42 samples, 0.03%)</title><rect x="71.0810%" y="789" width="0.0288%" height="15" fill="rgb(218,41,53)" fg:x="103769" fg:w="42"/><text x="71.3310%" y="799.50"></text></g><g><title>tlb_flush_mmu (28 samples, 0.02%)</title><rect x="71.1098%" y="789" width="0.0192%" height="15" fill="rgb(251,176,28)" fg:x="103811" fg:w="28"/><text x="71.3598%" y="799.50"></text></g><g><title>release_pages (24 samples, 0.02%)</title><rect x="71.1125%" y="773" width="0.0164%" height="15" fill="rgb(247,22,9)" fg:x="103815" fg:w="24"/><text x="71.3625%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (336 samples, 0.23%)</title><rect x="70.9036%" y="965" width="0.2302%" height="15" fill="rgb(218,201,14)" fg:x="103510" fg:w="336"/><text x="71.1536%" y="975.50"></text></g><g><title>syscall_exit_to_user_mode (120 samples, 0.08%)</title><rect x="71.0515%" y="949" width="0.0822%" height="15" fill="rgb(218,94,10)" fg:x="103726" fg:w="120"/><text x="71.3015%" y="959.50"></text></g><g><title>exit_to_user_mode_prepare (120 samples, 0.08%)</title><rect x="71.0515%" y="933" width="0.0822%" height="15" fill="rgb(222,183,52)" fg:x="103726" fg:w="120"/><text x="71.3015%" y="943.50"></text></g><g><title>arch_do_signal (120 samples, 0.08%)</title><rect x="71.0515%" y="917" width="0.0822%" height="15" fill="rgb(242,140,25)" fg:x="103726" fg:w="120"/><text x="71.3015%" y="927.50"></text></g><g><title>get_signal (120 samples, 0.08%)</title><rect x="71.0515%" y="901" width="0.0822%" height="15" fill="rgb(235,197,38)" fg:x="103726" fg:w="120"/><text x="71.3015%" y="911.50"></text></g><g><title>do_group_exit (120 samples, 0.08%)</title><rect x="71.0515%" y="885" width="0.0822%" height="15" fill="rgb(237,136,15)" fg:x="103726" fg:w="120"/><text x="71.3015%" y="895.50"></text></g><g><title>do_exit (120 samples, 0.08%)</title><rect x="71.0515%" y="869" width="0.0822%" height="15" fill="rgb(223,44,49)" fg:x="103726" fg:w="120"/><text x="71.3015%" y="879.50"></text></g><g><title>mmput (120 samples, 0.08%)</title><rect x="71.0515%" y="853" width="0.0822%" height="15" fill="rgb(227,71,15)" fg:x="103726" fg:w="120"/><text x="71.3015%" y="863.50"></text></g><g><title>exit_mmap (120 samples, 0.08%)</title><rect x="71.0515%" y="837" width="0.0822%" height="15" fill="rgb(225,153,20)" fg:x="103726" fg:w="120"/><text x="71.3015%" y="847.50"></text></g><g><title>unmap_vmas (112 samples, 0.08%)</title><rect x="71.0570%" y="821" width="0.0767%" height="15" fill="rgb(210,190,26)" fg:x="103734" fg:w="112"/><text x="71.3070%" y="831.50"></text></g><g><title>unmap_page_range (112 samples, 0.08%)</title><rect x="71.0570%" y="805" width="0.0767%" height="15" fill="rgb(223,147,5)" fg:x="103734" fg:w="112"/><text x="71.3070%" y="815.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (15 samples, 0.01%)</title><rect x="71.1337%" y="965" width="0.0103%" height="15" fill="rgb(207,14,23)" fg:x="103846" fg:w="15"/><text x="71.3837%" y="975.50"></text></g><g><title>ld.lld (23,071 samples, 15.80%)</title><rect x="55.3542%" y="981" width="15.8035%" height="15" fill="rgb(211,195,53)" fg:x="80810" fg:w="23071"/><text x="55.6042%" y="991.50">ld.lld</text></g><g><title>[[heap]] (21 samples, 0.01%)</title><rect x="71.1577%" y="965" width="0.0144%" height="15" fill="rgb(237,75,46)" fg:x="103881" fg:w="21"/><text x="71.4077%" y="975.50"></text></g><g><title>[bash] (15 samples, 0.01%)</title><rect x="71.1721%" y="949" width="0.0103%" height="15" fill="rgb(254,55,14)" fg:x="103902" fg:w="15"/><text x="71.4221%" y="959.50"></text></g><g><title>[[stack]] (17 samples, 0.01%)</title><rect x="71.1721%" y="965" width="0.0116%" height="15" fill="rgb(230,185,30)" fg:x="103902" fg:w="17"/><text x="71.4221%" y="975.50"></text></g><g><title>__libc_fork (24 samples, 0.02%)</title><rect x="71.2180%" y="149" width="0.0164%" height="15" fill="rgb(220,14,11)" fg:x="103969" fg:w="24"/><text x="71.4680%" y="159.50"></text></g><g><title>arch_fork (24 samples, 0.02%)</title><rect x="71.2180%" y="133" width="0.0164%" height="15" fill="rgb(215,169,44)" fg:x="103969" fg:w="24"/><text x="71.4680%" y="143.50"></text></g><g><title>ret_from_fork (20 samples, 0.01%)</title><rect x="71.2207%" y="117" width="0.0137%" height="15" fill="rgb(253,203,20)" fg:x="103973" fg:w="20"/><text x="71.4707%" y="127.50"></text></g><g><title>schedule_tail (20 samples, 0.01%)</title><rect x="71.2207%" y="101" width="0.0137%" height="15" fill="rgb(229,225,17)" fg:x="103973" fg:w="20"/><text x="71.4707%" y="111.50"></text></g><g><title>finish_task_switch (18 samples, 0.01%)</title><rect x="71.2221%" y="85" width="0.0123%" height="15" fill="rgb(236,76,26)" fg:x="103975" fg:w="18"/><text x="71.4721%" y="95.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="71.2228%" y="69" width="0.0116%" height="15" fill="rgb(234,15,30)" fg:x="103976" fg:w="17"/><text x="71.4728%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (17 samples, 0.01%)</title><rect x="71.2228%" y="53" width="0.0116%" height="15" fill="rgb(211,113,48)" fg:x="103976" fg:w="17"/><text x="71.4728%" y="63.50"></text></g><g><title>native_write_msr (17 samples, 0.01%)</title><rect x="71.2228%" y="37" width="0.0116%" height="15" fill="rgb(221,31,36)" fg:x="103976" fg:w="17"/><text x="71.4728%" y="47.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="71.2180%" y="837" width="0.0171%" height="15" fill="rgb(215,118,52)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="847.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="821" width="0.0171%" height="15" fill="rgb(241,151,27)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="831.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="805" width="0.0171%" height="15" fill="rgb(253,51,3)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="815.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="789" width="0.0171%" height="15" fill="rgb(216,201,24)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="799.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="71.2180%" y="773" width="0.0171%" height="15" fill="rgb(231,107,4)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="783.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="757" width="0.0171%" height="15" fill="rgb(243,97,54)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="767.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="71.2180%" y="741" width="0.0171%" height="15" fill="rgb(221,32,51)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="751.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="725" width="0.0171%" height="15" fill="rgb(218,171,35)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="735.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="709" width="0.0171%" height="15" fill="rgb(214,20,53)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="719.50"></text></g><g><title>evalstring (25 samples, 0.02%)</title><rect x="71.2180%" y="693" width="0.0171%" height="15" fill="rgb(239,9,52)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="703.50"></text></g><g><title>parse_and_execute (25 samples, 0.02%)</title><rect x="71.2180%" y="677" width="0.0171%" height="15" fill="rgb(215,114,45)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="687.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="661" width="0.0171%" height="15" fill="rgb(208,118,9)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="671.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="645" width="0.0171%" height="15" fill="rgb(235,7,39)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="655.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="629" width="0.0171%" height="15" fill="rgb(243,225,15)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="639.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="613" width="0.0171%" height="15" fill="rgb(225,216,18)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="623.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="597" width="0.0171%" height="15" fill="rgb(233,36,38)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="607.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="71.2180%" y="581" width="0.0171%" height="15" fill="rgb(239,88,23)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="591.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="565" width="0.0171%" height="15" fill="rgb(219,181,35)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="575.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="549" width="0.0171%" height="15" fill="rgb(215,18,46)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="559.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="71.2180%" y="533" width="0.0171%" height="15" fill="rgb(241,38,11)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="543.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="517" width="0.0171%" height="15" fill="rgb(248,169,45)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="527.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="501" width="0.0171%" height="15" fill="rgb(239,50,49)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="511.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="485" width="0.0171%" height="15" fill="rgb(231,96,31)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="495.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="469" width="0.0171%" height="15" fill="rgb(224,193,37)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="479.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="71.2180%" y="453" width="0.0171%" height="15" fill="rgb(227,153,50)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="463.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="437" width="0.0171%" height="15" fill="rgb(249,228,3)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="447.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="421" width="0.0171%" height="15" fill="rgb(219,164,43)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="431.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="71.2180%" y="405" width="0.0171%" height="15" fill="rgb(216,45,41)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="415.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="389" width="0.0171%" height="15" fill="rgb(210,226,51)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="399.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="373" width="0.0171%" height="15" fill="rgb(209,117,49)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="383.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="357" width="0.0171%" height="15" fill="rgb(206,196,24)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="367.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="71.2180%" y="341" width="0.0171%" height="15" fill="rgb(253,218,3)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="351.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="325" width="0.0171%" height="15" fill="rgb(252,166,2)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="335.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="309" width="0.0171%" height="15" fill="rgb(236,218,26)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="319.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="293" width="0.0171%" height="15" fill="rgb(254,84,19)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="303.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="277" width="0.0171%" height="15" fill="rgb(219,137,29)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="287.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="261" width="0.0171%" height="15" fill="rgb(227,47,52)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="271.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="71.2180%" y="245" width="0.0171%" height="15" fill="rgb(229,167,24)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="255.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="229" width="0.0171%" height="15" fill="rgb(233,164,1)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="239.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="213" width="0.0171%" height="15" fill="rgb(218,88,48)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="223.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.2180%" y="197" width="0.0171%" height="15" fill="rgb(226,214,24)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="207.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.2180%" y="181" width="0.0171%" height="15" fill="rgb(233,29,12)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="191.50"></text></g><g><title>make_child (25 samples, 0.02%)</title><rect x="71.2180%" y="165" width="0.0171%" height="15" fill="rgb(219,120,34)" fg:x="103969" fg:w="25"/><text x="71.4680%" y="175.50"></text></g><g><title>[bash] (64 samples, 0.04%)</title><rect x="71.1968%" y="949" width="0.0438%" height="15" fill="rgb(226,78,44)" fg:x="103938" fg:w="64"/><text x="71.4468%" y="959.50"></text></g><g><title>execute_command_internal (38 samples, 0.03%)</title><rect x="71.2146%" y="933" width="0.0260%" height="15" fill="rgb(240,15,48)" fg:x="103964" fg:w="38"/><text x="71.4646%" y="943.50"></text></g><g><title>execute_command_internal (33 samples, 0.02%)</title><rect x="71.2180%" y="917" width="0.0226%" height="15" fill="rgb(253,176,7)" fg:x="103969" fg:w="33"/><text x="71.4680%" y="927.50"></text></g><g><title>[bash] (33 samples, 0.02%)</title><rect x="71.2180%" y="901" width="0.0226%" height="15" fill="rgb(206,166,28)" fg:x="103969" fg:w="33"/><text x="71.4680%" y="911.50"></text></g><g><title>execute_command (33 samples, 0.02%)</title><rect x="71.2180%" y="885" width="0.0226%" height="15" fill="rgb(241,53,51)" fg:x="103969" fg:w="33"/><text x="71.4680%" y="895.50"></text></g><g><title>execute_command_internal (33 samples, 0.02%)</title><rect x="71.2180%" y="869" width="0.0226%" height="15" fill="rgb(249,112,30)" fg:x="103969" fg:w="33"/><text x="71.4680%" y="879.50"></text></g><g><title>[bash] (33 samples, 0.02%)</title><rect x="71.2180%" y="853" width="0.0226%" height="15" fill="rgb(217,85,30)" fg:x="103969" fg:w="33"/><text x="71.4680%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.03%)</title><rect x="71.2762%" y="165" width="0.0342%" height="15" fill="rgb(233,49,7)" fg:x="104054" fg:w="50"/><text x="71.5262%" y="175.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.03%)</title><rect x="71.2776%" y="149" width="0.0329%" height="15" fill="rgb(234,109,9)" fg:x="104056" fg:w="48"/><text x="71.5276%" y="159.50"></text></g><g><title>native_write_msr (48 samples, 0.03%)</title><rect x="71.2776%" y="133" width="0.0329%" height="15" fill="rgb(253,95,22)" fg:x="104056" fg:w="48"/><text x="71.5276%" y="143.50"></text></g><g><title>arch_fork (68 samples, 0.05%)</title><rect x="71.2646%" y="229" width="0.0466%" height="15" fill="rgb(233,176,25)" fg:x="104037" fg:w="68"/><text x="71.5146%" y="239.50"></text></g><g><title>ret_from_fork (63 samples, 0.04%)</title><rect x="71.2680%" y="213" width="0.0432%" height="15" fill="rgb(236,33,39)" fg:x="104042" fg:w="63"/><text x="71.5180%" y="223.50"></text></g><g><title>schedule_tail (63 samples, 0.04%)</title><rect x="71.2680%" y="197" width="0.0432%" height="15" fill="rgb(223,226,42)" fg:x="104042" fg:w="63"/><text x="71.5180%" y="207.50"></text></g><g><title>finish_task_switch (56 samples, 0.04%)</title><rect x="71.2728%" y="181" width="0.0384%" height="15" fill="rgb(216,99,33)" fg:x="104049" fg:w="56"/><text x="71.5228%" y="191.50"></text></g><g><title>__libc_fork (70 samples, 0.05%)</title><rect x="71.2639%" y="245" width="0.0479%" height="15" fill="rgb(235,84,23)" fg:x="104036" fg:w="70"/><text x="71.5139%" y="255.50"></text></g><g><title>make_child (71 samples, 0.05%)</title><rect x="71.2639%" y="261" width="0.0486%" height="15" fill="rgb(232,2,27)" fg:x="104036" fg:w="71"/><text x="71.5139%" y="271.50"></text></g><g><title>execute_command (79 samples, 0.05%)</title><rect x="71.2591%" y="917" width="0.0541%" height="15" fill="rgb(241,23,22)" fg:x="104029" fg:w="79"/><text x="71.5091%" y="927.50"></text></g><g><title>execute_command_internal (79 samples, 0.05%)</title><rect x="71.2591%" y="901" width="0.0541%" height="15" fill="rgb(211,73,27)" fg:x="104029" fg:w="79"/><text x="71.5091%" y="911.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="885" width="0.0493%" height="15" fill="rgb(235,109,49)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="895.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="869" width="0.0493%" height="15" fill="rgb(230,99,29)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="879.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="853" width="0.0493%" height="15" fill="rgb(245,199,7)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="863.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="837" width="0.0493%" height="15" fill="rgb(217,179,10)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="847.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="821" width="0.0493%" height="15" fill="rgb(254,99,47)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="831.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="805" width="0.0493%" height="15" fill="rgb(251,121,7)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="815.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="789" width="0.0493%" height="15" fill="rgb(250,177,26)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="799.50"></text></g><g><title>execute_command (72 samples, 0.05%)</title><rect x="71.2639%" y="773" width="0.0493%" height="15" fill="rgb(232,88,15)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="783.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="757" width="0.0493%" height="15" fill="rgb(251,54,54)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="767.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="741" width="0.0493%" height="15" fill="rgb(208,177,15)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="751.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="725" width="0.0493%" height="15" fill="rgb(205,97,32)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="735.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="709" width="0.0493%" height="15" fill="rgb(217,192,13)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="719.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="693" width="0.0493%" height="15" fill="rgb(215,163,41)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="703.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="677" width="0.0493%" height="15" fill="rgb(246,83,29)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="687.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="661" width="0.0493%" height="15" fill="rgb(219,2,45)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="671.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="645" width="0.0493%" height="15" fill="rgb(242,215,33)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="655.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="629" width="0.0493%" height="15" fill="rgb(217,1,6)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="639.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="613" width="0.0493%" height="15" fill="rgb(207,85,52)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="623.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="597" width="0.0493%" height="15" fill="rgb(231,171,19)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="607.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="581" width="0.0493%" height="15" fill="rgb(207,128,4)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="591.50"></text></g><g><title>execute_command (72 samples, 0.05%)</title><rect x="71.2639%" y="565" width="0.0493%" height="15" fill="rgb(219,208,4)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="575.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="549" width="0.0493%" height="15" fill="rgb(235,161,42)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="559.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="533" width="0.0493%" height="15" fill="rgb(247,218,18)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="543.50"></text></g><g><title>execute_command (72 samples, 0.05%)</title><rect x="71.2639%" y="517" width="0.0493%" height="15" fill="rgb(232,114,51)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="527.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="501" width="0.0493%" height="15" fill="rgb(222,95,3)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="511.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="485" width="0.0493%" height="15" fill="rgb(240,65,29)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="495.50"></text></g><g><title>execute_command (72 samples, 0.05%)</title><rect x="71.2639%" y="469" width="0.0493%" height="15" fill="rgb(249,209,20)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="479.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="453" width="0.0493%" height="15" fill="rgb(241,48,37)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="463.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="437" width="0.0493%" height="15" fill="rgb(230,140,42)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="447.50"></text></g><g><title>execute_command (72 samples, 0.05%)</title><rect x="71.2639%" y="421" width="0.0493%" height="15" fill="rgb(230,176,45)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="431.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="405" width="0.0493%" height="15" fill="rgb(245,112,21)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="415.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="389" width="0.0493%" height="15" fill="rgb(207,183,35)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="399.50"></text></g><g><title>execute_command_internal (72 samples, 0.05%)</title><rect x="71.2639%" y="373" width="0.0493%" height="15" fill="rgb(227,44,33)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="383.50"></text></g><g><title>expand_words (72 samples, 0.05%)</title><rect x="71.2639%" y="357" width="0.0493%" height="15" fill="rgb(246,120,21)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="367.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="341" width="0.0493%" height="15" fill="rgb(235,57,52)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="351.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="325" width="0.0493%" height="15" fill="rgb(238,84,10)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="335.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="309" width="0.0493%" height="15" fill="rgb(251,200,32)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="319.50"></text></g><g><title>[bash] (72 samples, 0.05%)</title><rect x="71.2639%" y="293" width="0.0493%" height="15" fill="rgb(247,159,13)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="303.50"></text></g><g><title>command_substitute (72 samples, 0.05%)</title><rect x="71.2639%" y="277" width="0.0493%" height="15" fill="rgb(238,64,4)" fg:x="104036" fg:w="72"/><text x="71.5139%" y="287.50"></text></g><g><title>__perf_event_task_sched_in (15 samples, 0.01%)</title><rect x="71.3269%" y="69" width="0.0103%" height="15" fill="rgb(221,131,51)" fg:x="104128" fg:w="15"/><text x="71.5769%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (15 samples, 0.01%)</title><rect x="71.3269%" y="53" width="0.0103%" height="15" fill="rgb(242,5,29)" fg:x="104128" fg:w="15"/><text x="71.5769%" y="63.50"></text></g><g><title>native_write_msr (15 samples, 0.01%)</title><rect x="71.3269%" y="37" width="0.0103%" height="15" fill="rgb(214,130,32)" fg:x="104128" fg:w="15"/><text x="71.5769%" y="47.50"></text></g><g><title>sched_exec (19 samples, 0.01%)</title><rect x="71.3255%" y="149" width="0.0130%" height="15" fill="rgb(244,210,16)" fg:x="104126" fg:w="19"/><text x="71.5755%" y="159.50"></text></g><g><title>stop_one_cpu (19 samples, 0.01%)</title><rect x="71.3255%" y="133" width="0.0130%" height="15" fill="rgb(234,48,26)" fg:x="104126" fg:w="19"/><text x="71.5755%" y="143.50"></text></g><g><title>_cond_resched (19 samples, 0.01%)</title><rect x="71.3255%" y="117" width="0.0130%" height="15" fill="rgb(231,82,38)" fg:x="104126" fg:w="19"/><text x="71.5755%" y="127.50"></text></g><g><title>__schedule (19 samples, 0.01%)</title><rect x="71.3255%" y="101" width="0.0130%" height="15" fill="rgb(254,128,41)" fg:x="104126" fg:w="19"/><text x="71.5755%" y="111.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="71.3255%" y="85" width="0.0130%" height="15" fill="rgb(212,73,49)" fg:x="104126" fg:w="19"/><text x="71.5755%" y="95.50"></text></g><g><title>bprm_execve (27 samples, 0.02%)</title><rect x="71.3214%" y="165" width="0.0185%" height="15" fill="rgb(205,62,54)" fg:x="104120" fg:w="27"/><text x="71.5714%" y="175.50"></text></g><g><title>[bash] (31 samples, 0.02%)</title><rect x="71.3194%" y="277" width="0.0212%" height="15" fill="rgb(228,0,8)" fg:x="104117" fg:w="31"/><text x="71.5694%" y="287.50"></text></g><g><title>shell_execve (28 samples, 0.02%)</title><rect x="71.3214%" y="261" width="0.0192%" height="15" fill="rgb(251,28,17)" fg:x="104120" fg:w="28"/><text x="71.5714%" y="271.50"></text></g><g><title>__GI_execve (28 samples, 0.02%)</title><rect x="71.3214%" y="245" width="0.0192%" height="15" fill="rgb(238,105,27)" fg:x="104120" fg:w="28"/><text x="71.5714%" y="255.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="71.3214%" y="229" width="0.0192%" height="15" fill="rgb(237,216,33)" fg:x="104120" fg:w="28"/><text x="71.5714%" y="239.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="71.3214%" y="213" width="0.0192%" height="15" fill="rgb(229,228,25)" fg:x="104120" fg:w="28"/><text x="71.5714%" y="223.50"></text></g><g><title>__x64_sys_execve (28 samples, 0.02%)</title><rect x="71.3214%" y="197" width="0.0192%" height="15" fill="rgb(233,75,23)" fg:x="104120" fg:w="28"/><text x="71.5714%" y="207.50"></text></g><g><title>do_execveat_common (28 samples, 0.02%)</title><rect x="71.3214%" y="181" width="0.0192%" height="15" fill="rgb(231,207,16)" fg:x="104120" fg:w="28"/><text x="71.5714%" y="191.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="805" width="0.0240%" height="15" fill="rgb(231,191,45)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="815.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="789" width="0.0240%" height="15" fill="rgb(224,133,17)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="799.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="773" width="0.0240%" height="15" fill="rgb(209,178,27)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="783.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="757" width="0.0240%" height="15" fill="rgb(218,37,11)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="767.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="741" width="0.0240%" height="15" fill="rgb(251,226,25)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="751.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="725" width="0.0240%" height="15" fill="rgb(209,222,27)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="735.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="709" width="0.0240%" height="15" fill="rgb(238,22,21)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="719.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="693" width="0.0240%" height="15" fill="rgb(233,161,25)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="703.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="677" width="0.0240%" height="15" fill="rgb(226,122,53)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="687.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="71.3194%" y="661" width="0.0240%" height="15" fill="rgb(220,123,17)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="671.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="645" width="0.0240%" height="15" fill="rgb(230,224,35)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="655.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="629" width="0.0240%" height="15" fill="rgb(246,83,8)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="639.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="71.3194%" y="613" width="0.0240%" height="15" fill="rgb(230,214,17)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="623.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="597" width="0.0240%" height="15" fill="rgb(222,97,18)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="607.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="581" width="0.0240%" height="15" fill="rgb(206,79,1)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="591.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="71.3194%" y="565" width="0.0240%" height="15" fill="rgb(214,121,34)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="575.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="549" width="0.0240%" height="15" fill="rgb(249,199,46)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="559.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="533" width="0.0240%" height="15" fill="rgb(214,222,46)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="543.50"></text></g><g><title>execute_command (35 samples, 0.02%)</title><rect x="71.3194%" y="517" width="0.0240%" height="15" fill="rgb(248,168,30)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="527.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="501" width="0.0240%" height="15" fill="rgb(226,14,28)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="511.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="485" width="0.0240%" height="15" fill="rgb(253,123,1)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="495.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="469" width="0.0240%" height="15" fill="rgb(225,24,42)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="479.50"></text></g><g><title>expand_words (35 samples, 0.02%)</title><rect x="71.3194%" y="453" width="0.0240%" height="15" fill="rgb(216,161,37)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="463.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="437" width="0.0240%" height="15" fill="rgb(251,164,26)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="447.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="421" width="0.0240%" height="15" fill="rgb(219,177,3)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="431.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="405" width="0.0240%" height="15" fill="rgb(222,65,0)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="415.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="389" width="0.0240%" height="15" fill="rgb(223,69,54)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="399.50"></text></g><g><title>command_substitute (35 samples, 0.02%)</title><rect x="71.3194%" y="373" width="0.0240%" height="15" fill="rgb(235,30,27)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="383.50"></text></g><g><title>parse_and_execute (35 samples, 0.02%)</title><rect x="71.3194%" y="357" width="0.0240%" height="15" fill="rgb(220,183,50)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="367.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="341" width="0.0240%" height="15" fill="rgb(248,198,15)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="351.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="325" width="0.0240%" height="15" fill="rgb(222,211,4)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="335.50"></text></g><g><title>[bash] (35 samples, 0.02%)</title><rect x="71.3194%" y="309" width="0.0240%" height="15" fill="rgb(214,102,34)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="319.50"></text></g><g><title>execute_command_internal (35 samples, 0.02%)</title><rect x="71.3194%" y="293" width="0.0240%" height="15" fill="rgb(245,92,5)" fg:x="104117" fg:w="35"/><text x="71.5694%" y="303.50"></text></g><g><title>execute_command (44 samples, 0.03%)</title><rect x="71.3139%" y="869" width="0.0301%" height="15" fill="rgb(252,72,51)" fg:x="104109" fg:w="44"/><text x="71.5639%" y="879.50"></text></g><g><title>execute_command_internal (44 samples, 0.03%)</title><rect x="71.3139%" y="853" width="0.0301%" height="15" fill="rgb(252,208,19)" fg:x="104109" fg:w="44"/><text x="71.5639%" y="863.50"></text></g><g><title>[bash] (44 samples, 0.03%)</title><rect x="71.3139%" y="837" width="0.0301%" height="15" fill="rgb(211,69,7)" fg:x="104109" fg:w="44"/><text x="71.5639%" y="847.50"></text></g><g><title>execute_command_internal (36 samples, 0.02%)</title><rect x="71.3194%" y="821" width="0.0247%" height="15" fill="rgb(211,27,16)" fg:x="104117" fg:w="36"/><text x="71.5694%" y="831.50"></text></g><g><title>[bash] (125 samples, 0.09%)</title><rect x="71.2591%" y="933" width="0.0856%" height="15" fill="rgb(219,216,14)" fg:x="104029" fg:w="125"/><text x="71.5091%" y="943.50"></text></g><g><title>execute_command_internal (46 samples, 0.03%)</title><rect x="71.3132%" y="917" width="0.0315%" height="15" fill="rgb(219,71,8)" fg:x="104108" fg:w="46"/><text x="71.5632%" y="927.50"></text></g><g><title>execute_command_internal (45 samples, 0.03%)</title><rect x="71.3139%" y="901" width="0.0308%" height="15" fill="rgb(223,170,53)" fg:x="104109" fg:w="45"/><text x="71.5639%" y="911.50"></text></g><g><title>[bash] (45 samples, 0.03%)</title><rect x="71.3139%" y="885" width="0.0308%" height="15" fill="rgb(246,21,26)" fg:x="104109" fg:w="45"/><text x="71.5639%" y="895.50"></text></g><g><title>arch_fork (110 samples, 0.08%)</title><rect x="71.3488%" y="277" width="0.0753%" height="15" fill="rgb(248,20,46)" fg:x="104160" fg:w="110"/><text x="71.5988%" y="287.50"></text></g><g><title>ret_from_fork (99 samples, 0.07%)</title><rect x="71.3564%" y="261" width="0.0678%" height="15" fill="rgb(252,94,11)" fg:x="104171" fg:w="99"/><text x="71.6064%" y="271.50"></text></g><g><title>schedule_tail (99 samples, 0.07%)</title><rect x="71.3564%" y="245" width="0.0678%" height="15" fill="rgb(236,163,8)" fg:x="104171" fg:w="99"/><text x="71.6064%" y="255.50"></text></g><g><title>finish_task_switch (88 samples, 0.06%)</title><rect x="71.3639%" y="229" width="0.0603%" height="15" fill="rgb(217,221,45)" fg:x="104182" fg:w="88"/><text x="71.6139%" y="239.50"></text></g><g><title>__perf_event_task_sched_in (82 samples, 0.06%)</title><rect x="71.3680%" y="213" width="0.0562%" height="15" fill="rgb(238,38,17)" fg:x="104188" fg:w="82"/><text x="71.6180%" y="223.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (82 samples, 0.06%)</title><rect x="71.3680%" y="197" width="0.0562%" height="15" fill="rgb(242,210,23)" fg:x="104188" fg:w="82"/><text x="71.6180%" y="207.50"></text></g><g><title>native_write_msr (81 samples, 0.06%)</title><rect x="71.3687%" y="181" width="0.0555%" height="15" fill="rgb(250,86,53)" fg:x="104189" fg:w="81"/><text x="71.6187%" y="191.50"></text></g><g><title>make_child (114 samples, 0.08%)</title><rect x="71.3474%" y="309" width="0.0781%" height="15" fill="rgb(223,168,25)" fg:x="104158" fg:w="114"/><text x="71.5974%" y="319.50"></text></g><g><title>__libc_fork (114 samples, 0.08%)</title><rect x="71.3474%" y="293" width="0.0781%" height="15" fill="rgb(251,189,4)" fg:x="104158" fg:w="114"/><text x="71.5974%" y="303.50"></text></g><g><title>execute_command_internal (244 samples, 0.17%)</title><rect x="71.2591%" y="949" width="0.1671%" height="15" fill="rgb(245,19,28)" fg:x="104029" fg:w="244"/><text x="71.5091%" y="959.50"></text></g><g><title>execute_command_internal (119 samples, 0.08%)</title><rect x="71.3447%" y="933" width="0.0815%" height="15" fill="rgb(207,10,34)" fg:x="104154" fg:w="119"/><text x="71.5947%" y="943.50"></text></g><g><title>[bash] (119 samples, 0.08%)</title><rect x="71.3447%" y="917" width="0.0815%" height="15" fill="rgb(235,153,31)" fg:x="104154" fg:w="119"/><text x="71.5947%" y="927.50"></text></g><g><title>execute_command (119 samples, 0.08%)</title><rect x="71.3447%" y="901" width="0.0815%" height="15" fill="rgb(228,72,37)" fg:x="104154" fg:w="119"/><text x="71.5947%" y="911.50"></text></g><g><title>execute_command_internal (119 samples, 0.08%)</title><rect x="71.3447%" y="885" width="0.0815%" height="15" fill="rgb(215,15,16)" fg:x="104154" fg:w="119"/><text x="71.5947%" y="895.50"></text></g><g><title>[bash] (119 samples, 0.08%)</title><rect x="71.3447%" y="869" width="0.0815%" height="15" fill="rgb(250,119,29)" fg:x="104154" fg:w="119"/><text x="71.5947%" y="879.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="853" width="0.0808%" height="15" fill="rgb(214,59,1)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="863.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="837" width="0.0808%" height="15" fill="rgb(223,109,25)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="847.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="821" width="0.0808%" height="15" fill="rgb(230,198,22)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="831.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="805" width="0.0808%" height="15" fill="rgb(245,184,46)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="815.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="789" width="0.0808%" height="15" fill="rgb(253,73,16)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="799.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="773" width="0.0808%" height="15" fill="rgb(206,94,45)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="783.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="757" width="0.0808%" height="15" fill="rgb(236,83,27)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="767.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="741" width="0.0808%" height="15" fill="rgb(220,196,8)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="751.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="725" width="0.0808%" height="15" fill="rgb(254,185,14)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="735.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="709" width="0.0808%" height="15" fill="rgb(226,50,22)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="719.50"></text></g><g><title>execute_command (118 samples, 0.08%)</title><rect x="71.3454%" y="693" width="0.0808%" height="15" fill="rgb(253,147,0)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="703.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="677" width="0.0808%" height="15" fill="rgb(252,46,33)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="687.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="661" width="0.0808%" height="15" fill="rgb(242,22,54)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="671.50"></text></g><g><title>execute_command (118 samples, 0.08%)</title><rect x="71.3454%" y="645" width="0.0808%" height="15" fill="rgb(223,178,32)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="655.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="629" width="0.0808%" height="15" fill="rgb(214,106,53)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="639.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="613" width="0.0808%" height="15" fill="rgb(232,65,50)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="623.50"></text></g><g><title>execute_command (118 samples, 0.08%)</title><rect x="71.3454%" y="597" width="0.0808%" height="15" fill="rgb(231,110,28)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="607.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="581" width="0.0808%" height="15" fill="rgb(216,71,40)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="591.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="565" width="0.0808%" height="15" fill="rgb(229,89,53)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="575.50"></text></g><g><title>execute_command (118 samples, 0.08%)</title><rect x="71.3454%" y="549" width="0.0808%" height="15" fill="rgb(210,124,14)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="559.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="533" width="0.0808%" height="15" fill="rgb(236,213,6)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="543.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="517" width="0.0808%" height="15" fill="rgb(228,41,5)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="527.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="501" width="0.0808%" height="15" fill="rgb(221,167,25)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="511.50"></text></g><g><title>expand_words (118 samples, 0.08%)</title><rect x="71.3454%" y="485" width="0.0808%" height="15" fill="rgb(228,144,37)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="495.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="469" width="0.0808%" height="15" fill="rgb(227,189,38)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="479.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="453" width="0.0808%" height="15" fill="rgb(218,8,2)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="463.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="437" width="0.0808%" height="15" fill="rgb(209,61,28)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="447.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="421" width="0.0808%" height="15" fill="rgb(233,140,39)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="431.50"></text></g><g><title>command_substitute (118 samples, 0.08%)</title><rect x="71.3454%" y="405" width="0.0808%" height="15" fill="rgb(251,66,48)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="415.50"></text></g><g><title>parse_and_execute (118 samples, 0.08%)</title><rect x="71.3454%" y="389" width="0.0808%" height="15" fill="rgb(210,44,45)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="399.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="373" width="0.0808%" height="15" fill="rgb(214,136,46)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="383.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="357" width="0.0808%" height="15" fill="rgb(207,130,50)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="367.50"></text></g><g><title>[bash] (118 samples, 0.08%)</title><rect x="71.3454%" y="341" width="0.0808%" height="15" fill="rgb(228,102,49)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="351.50"></text></g><g><title>execute_command_internal (118 samples, 0.08%)</title><rect x="71.3454%" y="325" width="0.0808%" height="15" fill="rgb(253,55,1)" fg:x="104155" fg:w="118"/><text x="71.5954%" y="335.50"></text></g><g><title>new_sync_read (15 samples, 0.01%)</title><rect x="71.4317%" y="117" width="0.0103%" height="15" fill="rgb(238,222,9)" fg:x="104281" fg:w="15"/><text x="71.6817%" y="127.50"></text></g><g><title>pipe_read (15 samples, 0.01%)</title><rect x="71.4317%" y="101" width="0.0103%" height="15" fill="rgb(246,99,6)" fg:x="104281" fg:w="15"/><text x="71.6817%" y="111.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="71.4276%" y="869" width="0.0151%" height="15" fill="rgb(219,110,26)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="879.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="853" width="0.0151%" height="15" fill="rgb(239,160,33)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="863.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="837" width="0.0151%" height="15" fill="rgb(220,202,23)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="847.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="821" width="0.0151%" height="15" fill="rgb(208,80,26)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="831.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="805" width="0.0151%" height="15" fill="rgb(243,85,7)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="815.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="789" width="0.0151%" height="15" fill="rgb(228,77,47)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="799.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="773" width="0.0151%" height="15" fill="rgb(212,226,8)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="783.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="757" width="0.0151%" height="15" fill="rgb(241,120,54)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="767.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="741" width="0.0151%" height="15" fill="rgb(226,80,16)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="751.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="71.4276%" y="725" width="0.0151%" height="15" fill="rgb(240,76,13)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="735.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="709" width="0.0151%" height="15" fill="rgb(252,74,8)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="719.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="693" width="0.0151%" height="15" fill="rgb(244,155,2)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="703.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="677" width="0.0151%" height="15" fill="rgb(215,81,35)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="687.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="661" width="0.0151%" height="15" fill="rgb(206,55,2)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="671.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="645" width="0.0151%" height="15" fill="rgb(231,2,34)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="655.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="629" width="0.0151%" height="15" fill="rgb(242,176,48)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="639.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="613" width="0.0151%" height="15" fill="rgb(249,31,36)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="623.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="597" width="0.0151%" height="15" fill="rgb(205,18,17)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="607.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="581" width="0.0151%" height="15" fill="rgb(254,130,5)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="591.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="565" width="0.0151%" height="15" fill="rgb(229,42,45)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="575.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="549" width="0.0151%" height="15" fill="rgb(245,95,25)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="559.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="533" width="0.0151%" height="15" fill="rgb(249,193,38)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="543.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="71.4276%" y="517" width="0.0151%" height="15" fill="rgb(241,140,43)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="527.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="501" width="0.0151%" height="15" fill="rgb(245,78,48)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="511.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="485" width="0.0151%" height="15" fill="rgb(214,92,39)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="495.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="71.4276%" y="469" width="0.0151%" height="15" fill="rgb(211,189,14)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="479.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="453" width="0.0151%" height="15" fill="rgb(218,7,24)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="463.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="437" width="0.0151%" height="15" fill="rgb(224,200,49)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="447.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="71.4276%" y="421" width="0.0151%" height="15" fill="rgb(218,210,14)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="431.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="405" width="0.0151%" height="15" fill="rgb(234,142,31)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="415.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="389" width="0.0151%" height="15" fill="rgb(227,165,2)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="399.50"></text></g><g><title>execute_command (22 samples, 0.02%)</title><rect x="71.4276%" y="373" width="0.0151%" height="15" fill="rgb(232,44,46)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="383.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="357" width="0.0151%" height="15" fill="rgb(236,149,47)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="367.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="341" width="0.0151%" height="15" fill="rgb(227,45,31)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="351.50"></text></g><g><title>execute_command_internal (22 samples, 0.02%)</title><rect x="71.4276%" y="325" width="0.0151%" height="15" fill="rgb(240,176,51)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="335.50"></text></g><g><title>expand_words (22 samples, 0.02%)</title><rect x="71.4276%" y="309" width="0.0151%" height="15" fill="rgb(249,146,41)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="319.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="293" width="0.0151%" height="15" fill="rgb(213,208,4)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="303.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="277" width="0.0151%" height="15" fill="rgb(245,84,36)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="287.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="261" width="0.0151%" height="15" fill="rgb(254,84,18)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="271.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.4276%" y="245" width="0.0151%" height="15" fill="rgb(225,38,54)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="255.50"></text></g><g><title>command_substitute (22 samples, 0.02%)</title><rect x="71.4276%" y="229" width="0.0151%" height="15" fill="rgb(246,50,30)" fg:x="104275" fg:w="22"/><text x="71.6776%" y="239.50"></text></g><g><title>zread (16 samples, 0.01%)</title><rect x="71.4317%" y="213" width="0.0110%" height="15" fill="rgb(246,148,9)" fg:x="104281" fg:w="16"/><text x="71.6817%" y="223.50"></text></g><g><title>__GI___libc_read (16 samples, 0.01%)</title><rect x="71.4317%" y="197" width="0.0110%" height="15" fill="rgb(223,75,4)" fg:x="104281" fg:w="16"/><text x="71.6817%" y="207.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="71.4317%" y="181" width="0.0110%" height="15" fill="rgb(239,148,41)" fg:x="104281" fg:w="16"/><text x="71.6817%" y="191.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="71.4317%" y="165" width="0.0110%" height="15" fill="rgb(205,195,3)" fg:x="104281" fg:w="16"/><text x="71.6817%" y="175.50"></text></g><g><title>ksys_read (16 samples, 0.01%)</title><rect x="71.4317%" y="149" width="0.0110%" height="15" fill="rgb(254,161,1)" fg:x="104281" fg:w="16"/><text x="71.6817%" y="159.50"></text></g><g><title>vfs_read (16 samples, 0.01%)</title><rect x="71.4317%" y="133" width="0.0110%" height="15" fill="rgb(211,229,8)" fg:x="104281" fg:w="16"/><text x="71.6817%" y="143.50"></text></g><g><title>main (25 samples, 0.02%)</title><rect x="71.4276%" y="949" width="0.0171%" height="15" fill="rgb(220,97,9)" fg:x="104275" fg:w="25"/><text x="71.6776%" y="959.50"></text></g><g><title>reader_loop (25 samples, 0.02%)</title><rect x="71.4276%" y="933" width="0.0171%" height="15" fill="rgb(240,218,8)" fg:x="104275" fg:w="25"/><text x="71.6776%" y="943.50"></text></g><g><title>execute_command (25 samples, 0.02%)</title><rect x="71.4276%" y="917" width="0.0171%" height="15" fill="rgb(250,44,0)" fg:x="104275" fg:w="25"/><text x="71.6776%" y="927.50"></text></g><g><title>execute_command_internal (25 samples, 0.02%)</title><rect x="71.4276%" y="901" width="0.0171%" height="15" fill="rgb(236,41,53)" fg:x="104275" fg:w="25"/><text x="71.6776%" y="911.50"></text></g><g><title>[bash] (25 samples, 0.02%)</title><rect x="71.4276%" y="885" width="0.0171%" height="15" fill="rgb(218,227,13)" fg:x="104275" fg:w="25"/><text x="71.6776%" y="895.50"></text></g><g><title>[unknown] (370 samples, 0.25%)</title><rect x="71.1968%" y="965" width="0.2534%" height="15" fill="rgb(217,94,32)" fg:x="103938" fg:w="370"/><text x="71.4468%" y="975.50"></text></g><g><title>dispose_command (15 samples, 0.01%)</title><rect x="71.4591%" y="597" width="0.0103%" height="15" fill="rgb(213,217,12)" fg:x="104321" fg:w="15"/><text x="71.7091%" y="607.50"></text></g><g><title>dispose_command (15 samples, 0.01%)</title><rect x="71.4591%" y="581" width="0.0103%" height="15" fill="rgb(229,13,46)" fg:x="104321" fg:w="15"/><text x="71.7091%" y="591.50"></text></g><g><title>dispose_command (15 samples, 0.01%)</title><rect x="71.4591%" y="565" width="0.0103%" height="15" fill="rgb(243,139,5)" fg:x="104321" fg:w="15"/><text x="71.7091%" y="575.50"></text></g><g><title>dispose_command (15 samples, 0.01%)</title><rect x="71.4591%" y="549" width="0.0103%" height="15" fill="rgb(249,38,45)" fg:x="104321" fg:w="15"/><text x="71.7091%" y="559.50"></text></g><g><title>dispose_command (15 samples, 0.01%)</title><rect x="71.4591%" y="533" width="0.0103%" height="15" fill="rgb(216,70,11)" fg:x="104321" fg:w="15"/><text x="71.7091%" y="543.50"></text></g><g><title>dispose_command (20 samples, 0.01%)</title><rect x="71.4570%" y="709" width="0.0137%" height="15" fill="rgb(253,101,25)" fg:x="104318" fg:w="20"/><text x="71.7070%" y="719.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="71.4577%" y="693" width="0.0130%" height="15" fill="rgb(207,197,30)" fg:x="104319" fg:w="19"/><text x="71.7077%" y="703.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="71.4577%" y="677" width="0.0130%" height="15" fill="rgb(238,87,13)" fg:x="104319" fg:w="19"/><text x="71.7077%" y="687.50"></text></g><g><title>dispose_command (19 samples, 0.01%)</title><rect x="71.4577%" y="661" width="0.0130%" height="15" fill="rgb(215,155,8)" fg:x="104319" fg:w="19"/><text x="71.7077%" y="671.50"></text></g><g><title>dispose_command (18 samples, 0.01%)</title><rect x="71.4584%" y="645" width="0.0123%" height="15" fill="rgb(239,166,38)" fg:x="104320" fg:w="18"/><text x="71.7084%" y="655.50"></text></g><g><title>dispose_command (17 samples, 0.01%)</title><rect x="71.4591%" y="629" width="0.0116%" height="15" fill="rgb(240,194,35)" fg:x="104321" fg:w="17"/><text x="71.7091%" y="639.50"></text></g><g><title>dispose_command (17 samples, 0.01%)</title><rect x="71.4591%" y="613" width="0.0116%" height="15" fill="rgb(219,10,44)" fg:x="104321" fg:w="17"/><text x="71.7091%" y="623.50"></text></g><g><title>dispose_command (21 samples, 0.01%)</title><rect x="71.4570%" y="725" width="0.0144%" height="15" fill="rgb(251,220,35)" fg:x="104318" fg:w="21"/><text x="71.7070%" y="735.50"></text></g><g><title>dispose_command (22 samples, 0.02%)</title><rect x="71.4570%" y="757" width="0.0151%" height="15" fill="rgb(218,117,13)" fg:x="104318" fg:w="22"/><text x="71.7070%" y="767.50"></text></g><g><title>dispose_command (22 samples, 0.02%)</title><rect x="71.4570%" y="741" width="0.0151%" height="15" fill="rgb(221,213,40)" fg:x="104318" fg:w="22"/><text x="71.7070%" y="751.50"></text></g><g><title>dispose_command (24 samples, 0.02%)</title><rect x="71.4570%" y="789" width="0.0164%" height="15" fill="rgb(251,224,35)" fg:x="104318" fg:w="24"/><text x="71.7070%" y="799.50"></text></g><g><title>dispose_command (24 samples, 0.02%)</title><rect x="71.4570%" y="773" width="0.0164%" height="15" fill="rgb(241,33,39)" fg:x="104318" fg:w="24"/><text x="71.7070%" y="783.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="71.4570%" y="901" width="0.0171%" height="15" fill="rgb(222,74,17)" fg:x="104318" fg:w="25"/><text x="71.7070%" y="911.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="71.4570%" y="885" width="0.0171%" height="15" fill="rgb(225,103,0)" fg:x="104318" fg:w="25"/><text x="71.7070%" y="895.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="71.4570%" y="869" width="0.0171%" height="15" fill="rgb(240,0,12)" fg:x="104318" fg:w="25"/><text x="71.7070%" y="879.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="71.4570%" y="853" width="0.0171%" height="15" fill="rgb(233,213,37)" fg:x="104318" fg:w="25"/><text x="71.7070%" y="863.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="71.4570%" y="837" width="0.0171%" height="15" fill="rgb(225,84,52)" fg:x="104318" fg:w="25"/><text x="71.7070%" y="847.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="71.4570%" y="821" width="0.0171%" height="15" fill="rgb(247,160,51)" fg:x="104318" fg:w="25"/><text x="71.7070%" y="831.50"></text></g><g><title>dispose_command (25 samples, 0.02%)</title><rect x="71.4570%" y="805" width="0.0171%" height="15" fill="rgb(244,60,51)" fg:x="104318" fg:w="25"/><text x="71.7070%" y="815.50"></text></g><g><title>execute_command (15 samples, 0.01%)</title><rect x="71.4838%" y="613" width="0.0103%" height="15" fill="rgb(233,114,7)" fg:x="104357" fg:w="15"/><text x="71.7338%" y="623.50"></text></g><g><title>execute_command_internal (15 samples, 0.01%)</title><rect x="71.4838%" y="597" width="0.0103%" height="15" fill="rgb(246,136,16)" fg:x="104357" fg:w="15"/><text x="71.7338%" y="607.50"></text></g><g><title>[bash] (15 samples, 0.01%)</title><rect x="71.4838%" y="581" width="0.0103%" height="15" fill="rgb(243,114,45)" fg:x="104357" fg:w="15"/><text x="71.7338%" y="591.50"></text></g><g><title>execute_command_internal (15 samples, 0.01%)</title><rect x="71.4838%" y="565" width="0.0103%" height="15" fill="rgb(247,183,43)" fg:x="104357" fg:w="15"/><text x="71.7338%" y="575.50"></text></g><g><title>[bash] (15 samples, 0.01%)</title><rect x="71.4838%" y="549" width="0.0103%" height="15" fill="rgb(251,210,42)" fg:x="104357" fg:w="15"/><text x="71.7338%" y="559.50"></text></g><g><title>evalstring (15 samples, 0.01%)</title><rect x="71.4838%" y="533" width="0.0103%" height="15" fill="rgb(221,88,35)" fg:x="104357" fg:w="15"/><text x="71.7338%" y="543.50"></text></g><g><title>parse_and_execute (15 samples, 0.01%)</title><rect x="71.4838%" y="517" width="0.0103%" height="15" fill="rgb(242,21,20)" fg:x="104357" fg:w="15"/><text x="71.7338%" y="527.50"></text></g><g><title>execute_command_internal (15 samples, 0.01%)</title><rect x="71.4838%" y="501" width="0.0103%" height="15" fill="rgb(233,226,36)" fg:x="104357" fg:w="15"/><text x="71.7338%" y="511.50"></text></g><g><title>[bash] (15 samples, 0.01%)</title><rect x="71.4838%" y="485" width="0.0103%" height="15" fill="rgb(243,189,34)" fg:x="104357" fg:w="15"/><text x="71.7338%" y="495.50"></text></g><g><title>printf_builtin (15 samples, 0.01%)</title><rect x="71.4838%" y="469" width="0.0103%" height="15" fill="rgb(207,145,50)" fg:x="104357" fg:w="15"/><text x="71.7338%" y="479.50"></text></g><g><title>execute_command (16 samples, 0.01%)</title><rect x="71.4838%" y="661" width="0.0110%" height="15" fill="rgb(242,1,50)" fg:x="104357" fg:w="16"/><text x="71.7338%" y="671.50"></text></g><g><title>execute_command_internal (16 samples, 0.01%)</title><rect x="71.4838%" y="645" width="0.0110%" height="15" fill="rgb(231,65,32)" fg:x="104357" fg:w="16"/><text x="71.7338%" y="655.50"></text></g><g><title>[bash] (16 samples, 0.01%)</title><rect x="71.4838%" y="629" width="0.0110%" height="15" fill="rgb(208,68,49)" fg:x="104357" fg:w="16"/><text x="71.7338%" y="639.50"></text></g><g><title>execute_command_internal (24 samples, 0.02%)</title><rect x="71.4831%" y="821" width="0.0164%" height="15" fill="rgb(253,54,49)" fg:x="104356" fg:w="24"/><text x="71.7331%" y="831.50"></text></g><g><title>[bash] (24 samples, 0.02%)</title><rect x="71.4831%" y="805" width="0.0164%" height="15" fill="rgb(245,186,24)" fg:x="104356" fg:w="24"/><text x="71.7331%" y="815.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="71.4838%" y="789" width="0.0158%" height="15" fill="rgb(209,2,41)" fg:x="104357" fg:w="23"/><text x="71.7338%" y="799.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="71.4838%" y="773" width="0.0158%" height="15" fill="rgb(242,208,54)" fg:x="104357" fg:w="23"/><text x="71.7338%" y="783.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="71.4838%" y="757" width="0.0158%" height="15" fill="rgb(225,9,51)" fg:x="104357" fg:w="23"/><text x="71.7338%" y="767.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="71.4838%" y="741" width="0.0158%" height="15" fill="rgb(207,207,25)" fg:x="104357" fg:w="23"/><text x="71.7338%" y="751.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="71.4838%" y="725" width="0.0158%" height="15" fill="rgb(253,96,18)" fg:x="104357" fg:w="23"/><text x="71.7338%" y="735.50"></text></g><g><title>execute_command (23 samples, 0.02%)</title><rect x="71.4838%" y="709" width="0.0158%" height="15" fill="rgb(252,215,20)" fg:x="104357" fg:w="23"/><text x="71.7338%" y="719.50"></text></g><g><title>execute_command_internal (23 samples, 0.02%)</title><rect x="71.4838%" y="693" width="0.0158%" height="15" fill="rgb(245,227,26)" fg:x="104357" fg:w="23"/><text x="71.7338%" y="703.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="71.4838%" y="677" width="0.0158%" height="15" fill="rgb(241,208,0)" fg:x="104357" fg:w="23"/><text x="71.7338%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.06%)</title><rect x="71.5160%" y="725" width="0.0555%" height="15" fill="rgb(224,130,10)" fg:x="104404" fg:w="81"/><text x="71.7660%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.06%)</title><rect x="71.5160%" y="709" width="0.0555%" height="15" fill="rgb(237,29,0)" fg:x="104404" fg:w="81"/><text x="71.7660%" y="719.50"></text></g><g><title>native_write_msr (81 samples, 0.06%)</title><rect x="71.5160%" y="693" width="0.0555%" height="15" fill="rgb(219,27,41)" fg:x="104404" fg:w="81"/><text x="71.7660%" y="703.50"></text></g><g><title>__libc_fork (106 samples, 0.07%)</title><rect x="71.5009%" y="805" width="0.0726%" height="15" fill="rgb(245,101,19)" fg:x="104382" fg:w="106"/><text x="71.7509%" y="815.50"></text></g><g><title>arch_fork (102 samples, 0.07%)</title><rect x="71.5036%" y="789" width="0.0699%" height="15" fill="rgb(243,44,37)" fg:x="104386" fg:w="102"/><text x="71.7536%" y="799.50"></text></g><g><title>ret_from_fork (98 samples, 0.07%)</title><rect x="71.5064%" y="773" width="0.0671%" height="15" fill="rgb(228,213,43)" fg:x="104390" fg:w="98"/><text x="71.7564%" y="783.50"></text></g><g><title>schedule_tail (98 samples, 0.07%)</title><rect x="71.5064%" y="757" width="0.0671%" height="15" fill="rgb(219,163,21)" fg:x="104390" fg:w="98"/><text x="71.7564%" y="767.50"></text></g><g><title>finish_task_switch (94 samples, 0.06%)</title><rect x="71.5091%" y="741" width="0.0644%" height="15" fill="rgb(234,86,24)" fg:x="104394" fg:w="94"/><text x="71.7591%" y="751.50"></text></g><g><title>make_child (111 samples, 0.08%)</title><rect x="71.5009%" y="821" width="0.0760%" height="15" fill="rgb(225,10,24)" fg:x="104382" fg:w="111"/><text x="71.7509%" y="831.50"></text></g><g><title>execute_command (158 samples, 0.11%)</title><rect x="71.4769%" y="853" width="0.1082%" height="15" fill="rgb(218,109,7)" fg:x="104347" fg:w="158"/><text x="71.7269%" y="863.50"></text></g><g><title>execute_command_internal (158 samples, 0.11%)</title><rect x="71.4769%" y="837" width="0.1082%" height="15" fill="rgb(210,20,26)" fg:x="104347" fg:w="158"/><text x="71.7269%" y="847.50"></text></g><g><title>[bash] (174 samples, 0.12%)</title><rect x="71.4755%" y="869" width="0.1192%" height="15" fill="rgb(216,18,1)" fg:x="104345" fg:w="174"/><text x="71.7255%" y="879.50"></text></g><g><title>copy_command (20 samples, 0.01%)</title><rect x="71.6160%" y="357" width="0.0137%" height="15" fill="rgb(206,163,23)" fg:x="104550" fg:w="20"/><text x="71.8660%" y="367.50"></text></g><g><title>copy_command (19 samples, 0.01%)</title><rect x="71.6167%" y="341" width="0.0130%" height="15" fill="rgb(229,150,31)" fg:x="104551" fg:w="19"/><text x="71.8667%" y="351.50"></text></g><g><title>copy_command (18 samples, 0.01%)</title><rect x="71.6173%" y="325" width="0.0123%" height="15" fill="rgb(231,10,5)" fg:x="104552" fg:w="18"/><text x="71.8673%" y="335.50"></text></g><g><title>copy_command (18 samples, 0.01%)</title><rect x="71.6173%" y="309" width="0.0123%" height="15" fill="rgb(250,40,50)" fg:x="104552" fg:w="18"/><text x="71.8673%" y="319.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="71.6180%" y="293" width="0.0116%" height="15" fill="rgb(217,119,7)" fg:x="104553" fg:w="17"/><text x="71.8680%" y="303.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="71.6180%" y="277" width="0.0116%" height="15" fill="rgb(245,214,40)" fg:x="104553" fg:w="17"/><text x="71.8680%" y="287.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="71.6187%" y="261" width="0.0110%" height="15" fill="rgb(216,187,1)" fg:x="104554" fg:w="16"/><text x="71.8687%" y="271.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="71.6125%" y="373" width="0.0178%" height="15" fill="rgb(237,146,21)" fg:x="104545" fg:w="26"/><text x="71.8625%" y="383.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="71.6112%" y="405" width="0.0199%" height="15" fill="rgb(210,174,47)" fg:x="104543" fg:w="29"/><text x="71.8612%" y="415.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="71.6119%" y="389" width="0.0192%" height="15" fill="rgb(218,111,39)" fg:x="104544" fg:w="28"/><text x="71.8619%" y="399.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="71.6112%" y="469" width="0.0205%" height="15" fill="rgb(224,95,19)" fg:x="104543" fg:w="30"/><text x="71.8612%" y="479.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="71.6112%" y="453" width="0.0205%" height="15" fill="rgb(234,15,38)" fg:x="104543" fg:w="30"/><text x="71.8612%" y="463.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="71.6112%" y="437" width="0.0205%" height="15" fill="rgb(246,56,12)" fg:x="104543" fg:w="30"/><text x="71.8612%" y="447.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="71.6112%" y="421" width="0.0205%" height="15" fill="rgb(247,16,17)" fg:x="104543" fg:w="30"/><text x="71.8612%" y="431.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="71.6112%" y="517" width="0.0219%" height="15" fill="rgb(215,151,11)" fg:x="104543" fg:w="32"/><text x="71.8612%" y="527.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="71.6112%" y="501" width="0.0219%" height="15" fill="rgb(225,16,24)" fg:x="104543" fg:w="32"/><text x="71.8612%" y="511.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="71.6112%" y="485" width="0.0219%" height="15" fill="rgb(217,117,5)" fg:x="104543" fg:w="32"/><text x="71.8612%" y="495.50"></text></g><g><title>copy_command (37 samples, 0.03%)</title><rect x="71.6105%" y="581" width="0.0253%" height="15" fill="rgb(246,187,53)" fg:x="104542" fg:w="37"/><text x="71.8605%" y="591.50"></text></g><g><title>copy_command (37 samples, 0.03%)</title><rect x="71.6105%" y="565" width="0.0253%" height="15" fill="rgb(241,71,40)" fg:x="104542" fg:w="37"/><text x="71.8605%" y="575.50"></text></g><g><title>copy_command (36 samples, 0.02%)</title><rect x="71.6112%" y="549" width="0.0247%" height="15" fill="rgb(231,67,39)" fg:x="104543" fg:w="36"/><text x="71.8612%" y="559.50"></text></g><g><title>copy_command (36 samples, 0.02%)</title><rect x="71.6112%" y="533" width="0.0247%" height="15" fill="rgb(222,120,24)" fg:x="104543" fg:w="36"/><text x="71.8612%" y="543.50"></text></g><g><title>copy_command (38 samples, 0.03%)</title><rect x="71.6105%" y="613" width="0.0260%" height="15" fill="rgb(248,3,3)" fg:x="104542" fg:w="38"/><text x="71.8605%" y="623.50"></text></g><g><title>copy_command (38 samples, 0.03%)</title><rect x="71.6105%" y="597" width="0.0260%" height="15" fill="rgb(228,218,5)" fg:x="104542" fg:w="38"/><text x="71.8605%" y="607.50"></text></g><g><title>copy_command (40 samples, 0.03%)</title><rect x="71.6098%" y="629" width="0.0274%" height="15" fill="rgb(212,202,43)" fg:x="104541" fg:w="40"/><text x="71.8598%" y="639.50"></text></g><g><title>copy_command (41 samples, 0.03%)</title><rect x="71.6098%" y="645" width="0.0281%" height="15" fill="rgb(235,183,2)" fg:x="104541" fg:w="41"/><text x="71.8598%" y="655.50"></text></g><g><title>copy_command (43 samples, 0.03%)</title><rect x="71.6098%" y="661" width="0.0295%" height="15" fill="rgb(230,165,10)" fg:x="104541" fg:w="43"/><text x="71.8598%" y="671.50"></text></g><g><title>copy_command (46 samples, 0.03%)</title><rect x="71.6091%" y="693" width="0.0315%" height="15" fill="rgb(219,54,40)" fg:x="104540" fg:w="46"/><text x="71.8591%" y="703.50"></text></g><g><title>copy_command (45 samples, 0.03%)</title><rect x="71.6098%" y="677" width="0.0308%" height="15" fill="rgb(244,73,9)" fg:x="104541" fg:w="45"/><text x="71.8598%" y="687.50"></text></g><g><title>copy_command (59 samples, 0.04%)</title><rect x="71.6016%" y="709" width="0.0404%" height="15" fill="rgb(212,32,45)" fg:x="104529" fg:w="59"/><text x="71.8516%" y="719.50"></text></g><g><title>copy_command (64 samples, 0.04%)</title><rect x="71.6002%" y="725" width="0.0438%" height="15" fill="rgb(205,58,31)" fg:x="104527" fg:w="64"/><text x="71.8502%" y="735.50"></text></g><g><title>copy_command (67 samples, 0.05%)</title><rect x="71.5988%" y="757" width="0.0459%" height="15" fill="rgb(250,120,43)" fg:x="104525" fg:w="67"/><text x="71.8488%" y="767.50"></text></g><g><title>copy_command (65 samples, 0.04%)</title><rect x="71.6002%" y="741" width="0.0445%" height="15" fill="rgb(235,13,10)" fg:x="104527" fg:w="65"/><text x="71.8502%" y="751.50"></text></g><g><title>copy_command (74 samples, 0.05%)</title><rect x="71.5975%" y="773" width="0.0507%" height="15" fill="rgb(232,219,31)" fg:x="104523" fg:w="74"/><text x="71.8475%" y="783.50"></text></g><g><title>copy_command (79 samples, 0.05%)</title><rect x="71.5961%" y="789" width="0.0541%" height="15" fill="rgb(218,157,51)" fg:x="104521" fg:w="79"/><text x="71.8461%" y="799.50"></text></g><g><title>copy_command (86 samples, 0.06%)</title><rect x="71.5947%" y="805" width="0.0589%" height="15" fill="rgb(211,91,52)" fg:x="104519" fg:w="86"/><text x="71.8447%" y="815.50"></text></g><g><title>copy_command (88 samples, 0.06%)</title><rect x="71.5947%" y="853" width="0.0603%" height="15" fill="rgb(240,173,1)" fg:x="104519" fg:w="88"/><text x="71.8447%" y="863.50"></text></g><g><title>copy_command (88 samples, 0.06%)</title><rect x="71.5947%" y="837" width="0.0603%" height="15" fill="rgb(248,20,47)" fg:x="104519" fg:w="88"/><text x="71.8447%" y="847.50"></text></g><g><title>copy_command (88 samples, 0.06%)</title><rect x="71.5947%" y="821" width="0.0603%" height="15" fill="rgb(217,221,40)" fg:x="104519" fg:w="88"/><text x="71.8447%" y="831.50"></text></g><g><title>bind_function (90 samples, 0.06%)</title><rect x="71.5947%" y="869" width="0.0616%" height="15" fill="rgb(226,149,51)" fg:x="104519" fg:w="90"/><text x="71.8447%" y="879.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="71.6735%" y="245" width="0.0110%" height="15" fill="rgb(252,193,7)" fg:x="104634" fg:w="16"/><text x="71.9235%" y="255.50"></text></g><g><title>copy_command (16 samples, 0.01%)</title><rect x="71.6735%" y="229" width="0.0110%" height="15" fill="rgb(205,123,0)" fg:x="104634" fg:w="16"/><text x="71.9235%" y="239.50"></text></g><g><title>copy_command (15 samples, 0.01%)</title><rect x="71.6742%" y="213" width="0.0103%" height="15" fill="rgb(233,173,25)" fg:x="104635" fg:w="15"/><text x="71.9242%" y="223.50"></text></g><g><title>copy_command (18 samples, 0.01%)</title><rect x="71.6728%" y="277" width="0.0123%" height="15" fill="rgb(216,63,32)" fg:x="104633" fg:w="18"/><text x="71.9228%" y="287.50"></text></g><g><title>copy_command (17 samples, 0.01%)</title><rect x="71.6735%" y="261" width="0.0116%" height="15" fill="rgb(209,56,45)" fg:x="104634" fg:w="17"/><text x="71.9235%" y="271.50"></text></g><g><title>copy_command (19 samples, 0.01%)</title><rect x="71.6728%" y="309" width="0.0130%" height="15" fill="rgb(226,111,49)" fg:x="104633" fg:w="19"/><text x="71.9228%" y="319.50"></text></g><g><title>copy_command (19 samples, 0.01%)</title><rect x="71.6728%" y="293" width="0.0130%" height="15" fill="rgb(244,181,21)" fg:x="104633" fg:w="19"/><text x="71.9228%" y="303.50"></text></g><g><title>copy_command (20 samples, 0.01%)</title><rect x="71.6728%" y="341" width="0.0137%" height="15" fill="rgb(222,126,15)" fg:x="104633" fg:w="20"/><text x="71.9228%" y="351.50"></text></g><g><title>copy_command (20 samples, 0.01%)</title><rect x="71.6728%" y="325" width="0.0137%" height="15" fill="rgb(222,95,17)" fg:x="104633" fg:w="20"/><text x="71.9228%" y="335.50"></text></g><g><title>copy_command (23 samples, 0.02%)</title><rect x="71.6715%" y="373" width="0.0158%" height="15" fill="rgb(254,46,5)" fg:x="104631" fg:w="23"/><text x="71.9215%" y="383.50"></text></g><g><title>copy_command (23 samples, 0.02%)</title><rect x="71.6715%" y="357" width="0.0158%" height="15" fill="rgb(236,216,35)" fg:x="104631" fg:w="23"/><text x="71.9215%" y="367.50"></text></g><g><title>copy_command (25 samples, 0.02%)</title><rect x="71.6708%" y="405" width="0.0171%" height="15" fill="rgb(217,187,26)" fg:x="104630" fg:w="25"/><text x="71.9208%" y="415.50"></text></g><g><title>copy_command (25 samples, 0.02%)</title><rect x="71.6708%" y="389" width="0.0171%" height="15" fill="rgb(207,192,25)" fg:x="104630" fg:w="25"/><text x="71.9208%" y="399.50"></text></g><g><title>copy_command (26 samples, 0.02%)</title><rect x="71.6708%" y="421" width="0.0178%" height="15" fill="rgb(253,135,27)" fg:x="104630" fg:w="26"/><text x="71.9208%" y="431.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="71.6701%" y="485" width="0.0192%" height="15" fill="rgb(211,122,29)" fg:x="104629" fg:w="28"/><text x="71.9201%" y="495.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="71.6701%" y="469" width="0.0192%" height="15" fill="rgb(233,162,40)" fg:x="104629" fg:w="28"/><text x="71.9201%" y="479.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="71.6701%" y="453" width="0.0192%" height="15" fill="rgb(222,184,47)" fg:x="104629" fg:w="28"/><text x="71.9201%" y="463.50"></text></g><g><title>copy_command (28 samples, 0.02%)</title><rect x="71.6701%" y="437" width="0.0192%" height="15" fill="rgb(249,99,23)" fg:x="104629" fg:w="28"/><text x="71.9201%" y="447.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="71.6701%" y="533" width="0.0199%" height="15" fill="rgb(214,60,12)" fg:x="104629" fg:w="29"/><text x="71.9201%" y="543.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="71.6701%" y="517" width="0.0199%" height="15" fill="rgb(250,229,36)" fg:x="104629" fg:w="29"/><text x="71.9201%" y="527.50"></text></g><g><title>copy_command (29 samples, 0.02%)</title><rect x="71.6701%" y="501" width="0.0199%" height="15" fill="rgb(232,195,10)" fg:x="104629" fg:w="29"/><text x="71.9201%" y="511.50"></text></g><g><title>copy_command (31 samples, 0.02%)</title><rect x="71.6694%" y="565" width="0.0212%" height="15" fill="rgb(205,213,31)" fg:x="104628" fg:w="31"/><text x="71.9194%" y="575.50"></text></g><g><title>copy_command (30 samples, 0.02%)</title><rect x="71.6701%" y="549" width="0.0205%" height="15" fill="rgb(237,43,8)" fg:x="104629" fg:w="30"/><text x="71.9201%" y="559.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="71.6687%" y="661" width="0.0226%" height="15" fill="rgb(216,208,3)" fg:x="104627" fg:w="33"/><text x="71.9187%" y="671.50"></text></g><g><title>copy_command (33 samples, 0.02%)</title><rect x="71.6687%" y="645" width="0.0226%" height="15" fill="rgb(228,179,44)" fg:x="104627" fg:w="33"/><text x="71.9187%" y="655.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="71.6694%" y="629" width="0.0219%" height="15" fill="rgb(230,192,27)" fg:x="104628" fg:w="32"/><text x="71.9194%" y="639.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="71.6694%" y="613" width="0.0219%" height="15" fill="rgb(251,30,38)" fg:x="104628" fg:w="32"/><text x="71.9194%" y="623.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="71.6694%" y="597" width="0.0219%" height="15" fill="rgb(246,55,52)" fg:x="104628" fg:w="32"/><text x="71.9194%" y="607.50"></text></g><g><title>copy_command (32 samples, 0.02%)</title><rect x="71.6694%" y="581" width="0.0219%" height="15" fill="rgb(249,79,26)" fg:x="104628" fg:w="32"/><text x="71.9194%" y="591.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="71.6687%" y="677" width="0.0233%" height="15" fill="rgb(220,202,16)" fg:x="104627" fg:w="34"/><text x="71.9187%" y="687.50"></text></g><g><title>copy_command (36 samples, 0.02%)</title><rect x="71.6687%" y="693" width="0.0247%" height="15" fill="rgb(250,170,23)" fg:x="104627" fg:w="36"/><text x="71.9187%" y="703.50"></text></g><g><title>copy_command (47 samples, 0.03%)</title><rect x="71.6619%" y="709" width="0.0322%" height="15" fill="rgb(230,7,37)" fg:x="104617" fg:w="47"/><text x="71.9119%" y="719.50"></text></g><g><title>copy_command (50 samples, 0.03%)</title><rect x="71.6612%" y="725" width="0.0342%" height="15" fill="rgb(213,71,1)" fg:x="104616" fg:w="50"/><text x="71.9112%" y="735.50"></text></g><g><title>copy_command (51 samples, 0.03%)</title><rect x="71.6612%" y="741" width="0.0349%" height="15" fill="rgb(227,87,39)" fg:x="104616" fg:w="51"/><text x="71.9112%" y="751.50"></text></g><g><title>copy_command (53 samples, 0.04%)</title><rect x="71.6612%" y="757" width="0.0363%" height="15" fill="rgb(210,41,29)" fg:x="104616" fg:w="53"/><text x="71.9112%" y="767.50"></text></g><g><title>copy_command (57 samples, 0.04%)</title><rect x="71.6591%" y="773" width="0.0390%" height="15" fill="rgb(206,191,31)" fg:x="104613" fg:w="57"/><text x="71.9091%" y="783.50"></text></g><g><title>copy_command (60 samples, 0.04%)</title><rect x="71.6584%" y="789" width="0.0411%" height="15" fill="rgb(247,75,54)" fg:x="104612" fg:w="60"/><text x="71.9084%" y="799.50"></text></g><g><title>copy_command (65 samples, 0.04%)</title><rect x="71.6578%" y="805" width="0.0445%" height="15" fill="rgb(208,54,50)" fg:x="104611" fg:w="65"/><text x="71.9078%" y="815.50"></text></g><g><title>copy_command (68 samples, 0.05%)</title><rect x="71.6571%" y="821" width="0.0466%" height="15" fill="rgb(214,90,37)" fg:x="104610" fg:w="68"/><text x="71.9071%" y="831.50"></text></g><g><title>copy_command (69 samples, 0.05%)</title><rect x="71.6571%" y="837" width="0.0473%" height="15" fill="rgb(220,132,6)" fg:x="104610" fg:w="69"/><text x="71.9071%" y="847.50"></text></g><g><title>copy_command (71 samples, 0.05%)</title><rect x="71.6564%" y="853" width="0.0486%" height="15" fill="rgb(213,167,7)" fg:x="104609" fg:w="71"/><text x="71.9064%" y="863.50"></text></g><g><title>copy_function_def_contents (72 samples, 0.05%)</title><rect x="71.6564%" y="869" width="0.0493%" height="15" fill="rgb(243,36,27)" fg:x="104609" fg:w="72"/><text x="71.9064%" y="879.50"></text></g><g><title>[bash] (22 samples, 0.02%)</title><rect x="71.7064%" y="837" width="0.0151%" height="15" fill="rgb(235,147,12)" fg:x="104682" fg:w="22"/><text x="71.9564%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (72 samples, 0.05%)</title><rect x="71.7441%" y="693" width="0.0493%" height="15" fill="rgb(212,198,44)" fg:x="104737" fg:w="72"/><text x="71.9941%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.05%)</title><rect x="71.7447%" y="677" width="0.0486%" height="15" fill="rgb(218,68,50)" fg:x="104738" fg:w="71"/><text x="71.9947%" y="687.50"></text></g><g><title>native_write_msr (71 samples, 0.05%)</title><rect x="71.7447%" y="661" width="0.0486%" height="15" fill="rgb(224,79,48)" fg:x="104738" fg:w="71"/><text x="71.9947%" y="671.50"></text></g><g><title>__libc_fork (92 samples, 0.06%)</title><rect x="71.7310%" y="773" width="0.0630%" height="15" fill="rgb(213,191,50)" fg:x="104718" fg:w="92"/><text x="71.9810%" y="783.50"></text></g><g><title>arch_fork (92 samples, 0.06%)</title><rect x="71.7310%" y="757" width="0.0630%" height="15" fill="rgb(254,146,10)" fg:x="104718" fg:w="92"/><text x="71.9810%" y="767.50"></text></g><g><title>ret_from_fork (84 samples, 0.06%)</title><rect x="71.7365%" y="741" width="0.0575%" height="15" fill="rgb(215,175,11)" fg:x="104726" fg:w="84"/><text x="71.9865%" y="751.50"></text></g><g><title>schedule_tail (83 samples, 0.06%)</title><rect x="71.7372%" y="725" width="0.0569%" height="15" fill="rgb(207,49,7)" fg:x="104727" fg:w="83"/><text x="71.9872%" y="735.50"></text></g><g><title>finish_task_switch (75 samples, 0.05%)</title><rect x="71.7427%" y="709" width="0.0514%" height="15" fill="rgb(234,144,29)" fg:x="104735" fg:w="75"/><text x="71.9927%" y="719.50"></text></g><g><title>make_child (93 samples, 0.06%)</title><rect x="71.7310%" y="789" width="0.0637%" height="15" fill="rgb(213,222,48)" fg:x="104718" fg:w="93"/><text x="71.9810%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.05%)</title><rect x="71.8160%" y="661" width="0.0473%" height="15" fill="rgb(222,8,6)" fg:x="104842" fg:w="69"/><text x="72.0660%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.05%)</title><rect x="71.8160%" y="645" width="0.0473%" height="15" fill="rgb(221,114,49)" fg:x="104842" fg:w="69"/><text x="72.0660%" y="655.50"></text></g><g><title>native_write_msr (69 samples, 0.05%)</title><rect x="71.8160%" y="629" width="0.0473%" height="15" fill="rgb(250,140,42)" fg:x="104842" fg:w="69"/><text x="72.0660%" y="639.50"></text></g><g><title>arch_fork (88 samples, 0.06%)</title><rect x="71.8057%" y="725" width="0.0603%" height="15" fill="rgb(250,150,27)" fg:x="104827" fg:w="88"/><text x="72.0557%" y="735.50"></text></g><g><title>ret_from_fork (85 samples, 0.06%)</title><rect x="71.8078%" y="709" width="0.0582%" height="15" fill="rgb(252,159,3)" fg:x="104830" fg:w="85"/><text x="72.0578%" y="719.50"></text></g><g><title>schedule_tail (84 samples, 0.06%)</title><rect x="71.8084%" y="693" width="0.0575%" height="15" fill="rgb(241,182,3)" fg:x="104831" fg:w="84"/><text x="72.0584%" y="703.50"></text></g><g><title>finish_task_switch (75 samples, 0.05%)</title><rect x="71.8146%" y="677" width="0.0514%" height="15" fill="rgb(236,3,9)" fg:x="104840" fg:w="75"/><text x="72.0646%" y="687.50"></text></g><g><title>__libc_fork (91 samples, 0.06%)</title><rect x="71.8043%" y="741" width="0.0623%" height="15" fill="rgb(223,227,51)" fg:x="104825" fg:w="91"/><text x="72.0543%" y="751.50"></text></g><g><title>make_child (92 samples, 0.06%)</title><rect x="71.8043%" y="757" width="0.0630%" height="15" fill="rgb(232,133,30)" fg:x="104825" fg:w="92"/><text x="72.0543%" y="767.50"></text></g><g><title>schedule (17 samples, 0.01%)</title><rect x="71.8687%" y="645" width="0.0116%" height="15" fill="rgb(209,93,27)" fg:x="104919" fg:w="17"/><text x="72.1187%" y="655.50"></text></g><g><title>__schedule (17 samples, 0.01%)</title><rect x="71.8687%" y="629" width="0.0116%" height="15" fill="rgb(208,108,34)" fg:x="104919" fg:w="17"/><text x="72.1187%" y="639.50"></text></g><g><title>finish_task_switch (17 samples, 0.01%)</title><rect x="71.8687%" y="613" width="0.0116%" height="15" fill="rgb(215,189,13)" fg:x="104919" fg:w="17"/><text x="72.1187%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (17 samples, 0.01%)</title><rect x="71.8687%" y="597" width="0.0116%" height="15" fill="rgb(206,88,23)" fg:x="104919" fg:w="17"/><text x="72.1187%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (16 samples, 0.01%)</title><rect x="71.8694%" y="581" width="0.0110%" height="15" fill="rgb(240,173,0)" fg:x="104920" fg:w="16"/><text x="72.1194%" y="591.50"></text></g><g><title>native_write_msr (16 samples, 0.01%)</title><rect x="71.8694%" y="565" width="0.0110%" height="15" fill="rgb(223,106,52)" fg:x="104920" fg:w="16"/><text x="72.1194%" y="575.50"></text></g><g><title>__GI___wait4 (21 samples, 0.01%)</title><rect x="71.8680%" y="725" width="0.0144%" height="15" fill="rgb(206,130,16)" fg:x="104918" fg:w="21"/><text x="72.1180%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="71.8680%" y="709" width="0.0144%" height="15" fill="rgb(220,54,25)" fg:x="104918" fg:w="21"/><text x="72.1180%" y="719.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="71.8680%" y="693" width="0.0144%" height="15" fill="rgb(210,4,38)" fg:x="104918" fg:w="21"/><text x="72.1180%" y="703.50"></text></g><g><title>kernel_wait4 (21 samples, 0.01%)</title><rect x="71.8680%" y="677" width="0.0144%" height="15" fill="rgb(238,94,39)" fg:x="104918" fg:w="21"/><text x="72.1180%" y="687.50"></text></g><g><title>do_wait (21 samples, 0.01%)</title><rect x="71.8680%" y="661" width="0.0144%" height="15" fill="rgb(234,124,34)" fg:x="104918" fg:w="21"/><text x="72.1180%" y="671.50"></text></g><g><title>[bash] (23 samples, 0.02%)</title><rect x="71.8680%" y="741" width="0.0158%" height="15" fill="rgb(221,91,40)" fg:x="104918" fg:w="23"/><text x="72.1180%" y="751.50"></text></g><g><title>execute_command_internal (129 samples, 0.09%)</title><rect x="71.7961%" y="773" width="0.0884%" height="15" fill="rgb(246,53,28)" fg:x="104813" fg:w="129"/><text x="72.0461%" y="783.50"></text></g><g><title>wait_for (24 samples, 0.02%)</title><rect x="71.8680%" y="757" width="0.0164%" height="15" fill="rgb(229,109,7)" fg:x="104918" fg:w="24"/><text x="72.1180%" y="767.50"></text></g><g><title>parse_and_execute (133 samples, 0.09%)</title><rect x="71.7947%" y="789" width="0.0911%" height="15" fill="rgb(249,117,8)" fg:x="104811" fg:w="133"/><text x="72.0447%" y="799.50"></text></g><g><title>finish_task_switch (32 samples, 0.02%)</title><rect x="71.8913%" y="629" width="0.0219%" height="15" fill="rgb(210,181,1)" fg:x="104952" fg:w="32"/><text x="72.1413%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.02%)</title><rect x="71.8927%" y="613" width="0.0205%" height="15" fill="rgb(211,66,1)" fg:x="104954" fg:w="30"/><text x="72.1427%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="71.8927%" y="597" width="0.0205%" height="15" fill="rgb(221,90,14)" fg:x="104954" fg:w="30"/><text x="72.1427%" y="607.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="71.8927%" y="581" width="0.0205%" height="15" fill="rgb(219,222,44)" fg:x="104954" fg:w="30"/><text x="72.1427%" y="591.50"></text></g><g><title>schedule (33 samples, 0.02%)</title><rect x="71.8913%" y="661" width="0.0226%" height="15" fill="rgb(246,34,33)" fg:x="104952" fg:w="33"/><text x="72.1413%" y="671.50"></text></g><g><title>__schedule (33 samples, 0.02%)</title><rect x="71.8913%" y="645" width="0.0226%" height="15" fill="rgb(227,135,41)" fg:x="104952" fg:w="33"/><text x="72.1413%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="71.8893%" y="757" width="0.0260%" height="15" fill="rgb(226,15,14)" fg:x="104949" fg:w="38"/><text x="72.1393%" y="767.50"></text></g><g><title>do_syscall_64 (38 samples, 0.03%)</title><rect x="71.8893%" y="741" width="0.0260%" height="15" fill="rgb(236,148,47)" fg:x="104949" fg:w="38"/><text x="72.1393%" y="751.50"></text></g><g><title>ksys_read (38 samples, 0.03%)</title><rect x="71.8893%" y="725" width="0.0260%" height="15" fill="rgb(233,162,52)" fg:x="104949" fg:w="38"/><text x="72.1393%" y="735.50"></text></g><g><title>vfs_read (38 samples, 0.03%)</title><rect x="71.8893%" y="709" width="0.0260%" height="15" fill="rgb(244,35,28)" fg:x="104949" fg:w="38"/><text x="72.1393%" y="719.50"></text></g><g><title>new_sync_read (37 samples, 0.03%)</title><rect x="71.8900%" y="693" width="0.0253%" height="15" fill="rgb(205,121,10)" fg:x="104950" fg:w="37"/><text x="72.1400%" y="703.50"></text></g><g><title>pipe_read (37 samples, 0.03%)</title><rect x="71.8900%" y="677" width="0.0253%" height="15" fill="rgb(250,58,18)" fg:x="104950" fg:w="37"/><text x="72.1400%" y="687.50"></text></g><g><title>expand_word_leave_quoted (282 samples, 0.19%)</title><rect x="71.7228%" y="837" width="0.1932%" height="15" fill="rgb(216,37,13)" fg:x="104706" fg:w="282"/><text x="71.9728%" y="847.50"></text></g><g><title>[bash] (282 samples, 0.19%)</title><rect x="71.7228%" y="821" width="0.1932%" height="15" fill="rgb(221,215,42)" fg:x="104706" fg:w="282"/><text x="71.9728%" y="831.50"></text></g><g><title>command_substitute (282 samples, 0.19%)</title><rect x="71.7228%" y="805" width="0.1932%" height="15" fill="rgb(217,214,19)" fg:x="104706" fg:w="282"/><text x="71.9728%" y="815.50"></text></g><g><title>zread (39 samples, 0.03%)</title><rect x="71.8893%" y="789" width="0.0267%" height="15" fill="rgb(233,139,13)" fg:x="104949" fg:w="39"/><text x="72.1393%" y="799.50"></text></g><g><title>__GI___libc_read (39 samples, 0.03%)</title><rect x="71.8893%" y="773" width="0.0267%" height="15" fill="rgb(247,168,23)" fg:x="104949" fg:w="39"/><text x="72.1393%" y="783.50"></text></g><g><title>execute_command (313 samples, 0.21%)</title><rect x="71.7064%" y="869" width="0.2144%" height="15" fill="rgb(207,202,1)" fg:x="104682" fg:w="313"/><text x="71.9564%" y="879.50"></text></g><g><title>execute_command_internal (313 samples, 0.21%)</title><rect x="71.7064%" y="853" width="0.2144%" height="15" fill="rgb(220,155,48)" fg:x="104682" fg:w="313"/><text x="71.9564%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (76 samples, 0.05%)</title><rect x="71.9420%" y="677" width="0.0521%" height="15" fill="rgb(250,43,26)" fg:x="105026" fg:w="76"/><text x="72.1920%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (76 samples, 0.05%)</title><rect x="71.9420%" y="661" width="0.0521%" height="15" fill="rgb(212,190,23)" fg:x="105026" fg:w="76"/><text x="72.1920%" y="671.50"></text></g><g><title>native_write_msr (76 samples, 0.05%)</title><rect x="71.9420%" y="645" width="0.0521%" height="15" fill="rgb(216,39,24)" fg:x="105026" fg:w="76"/><text x="72.1920%" y="655.50"></text></g><g><title>__libc_fork (98 samples, 0.07%)</title><rect x="71.9317%" y="757" width="0.0671%" height="15" fill="rgb(252,113,16)" fg:x="105011" fg:w="98"/><text x="72.1817%" y="767.50"></text></g><g><title>arch_fork (95 samples, 0.07%)</title><rect x="71.9338%" y="741" width="0.0651%" height="15" fill="rgb(208,113,19)" fg:x="105014" fg:w="95"/><text x="72.1838%" y="751.50"></text></g><g><title>ret_from_fork (91 samples, 0.06%)</title><rect x="71.9365%" y="725" width="0.0623%" height="15" fill="rgb(234,107,25)" fg:x="105018" fg:w="91"/><text x="72.1865%" y="735.50"></text></g><g><title>schedule_tail (91 samples, 0.06%)</title><rect x="71.9365%" y="709" width="0.0623%" height="15" fill="rgb(234,217,51)" fg:x="105018" fg:w="91"/><text x="72.1865%" y="719.50"></text></g><g><title>finish_task_switch (87 samples, 0.06%)</title><rect x="71.9393%" y="693" width="0.0596%" height="15" fill="rgb(251,29,42)" fg:x="105022" fg:w="87"/><text x="72.1893%" y="703.50"></text></g><g><title>make_child (103 samples, 0.07%)</title><rect x="71.9317%" y="773" width="0.0706%" height="15" fill="rgb(221,62,51)" fg:x="105011" fg:w="103"/><text x="72.1817%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (22 samples, 0.02%)</title><rect x="72.0133%" y="485" width="0.0151%" height="15" fill="rgb(240,192,43)" fg:x="105130" fg:w="22"/><text x="72.2633%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (21 samples, 0.01%)</title><rect x="72.0139%" y="469" width="0.0144%" height="15" fill="rgb(224,157,47)" fg:x="105131" fg:w="21"/><text x="72.2639%" y="479.50"></text></g><g><title>native_write_msr (21 samples, 0.01%)</title><rect x="72.0139%" y="453" width="0.0144%" height="15" fill="rgb(226,84,45)" fg:x="105131" fg:w="21"/><text x="72.2639%" y="463.50"></text></g><g><title>sched_exec (25 samples, 0.02%)</title><rect x="72.0119%" y="565" width="0.0171%" height="15" fill="rgb(208,207,23)" fg:x="105128" fg:w="25"/><text x="72.2619%" y="575.50"></text></g><g><title>stop_one_cpu (25 samples, 0.02%)</title><rect x="72.0119%" y="549" width="0.0171%" height="15" fill="rgb(253,34,51)" fg:x="105128" fg:w="25"/><text x="72.2619%" y="559.50"></text></g><g><title>_cond_resched (24 samples, 0.02%)</title><rect x="72.0126%" y="533" width="0.0164%" height="15" fill="rgb(227,26,34)" fg:x="105129" fg:w="24"/><text x="72.2626%" y="543.50"></text></g><g><title>__schedule (24 samples, 0.02%)</title><rect x="72.0126%" y="517" width="0.0164%" height="15" fill="rgb(245,75,19)" fg:x="105129" fg:w="24"/><text x="72.2626%" y="527.50"></text></g><g><title>finish_task_switch (24 samples, 0.02%)</title><rect x="72.0126%" y="501" width="0.0164%" height="15" fill="rgb(250,191,31)" fg:x="105129" fg:w="24"/><text x="72.2626%" y="511.50"></text></g><g><title>__GI_execve (31 samples, 0.02%)</title><rect x="72.0105%" y="661" width="0.0212%" height="15" fill="rgb(224,11,50)" fg:x="105126" fg:w="31"/><text x="72.2605%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.02%)</title><rect x="72.0105%" y="645" width="0.0212%" height="15" fill="rgb(231,171,7)" fg:x="105126" fg:w="31"/><text x="72.2605%" y="655.50"></text></g><g><title>do_syscall_64 (31 samples, 0.02%)</title><rect x="72.0105%" y="629" width="0.0212%" height="15" fill="rgb(252,214,10)" fg:x="105126" fg:w="31"/><text x="72.2605%" y="639.50"></text></g><g><title>__x64_sys_execve (31 samples, 0.02%)</title><rect x="72.0105%" y="613" width="0.0212%" height="15" fill="rgb(249,45,46)" fg:x="105126" fg:w="31"/><text x="72.2605%" y="623.50"></text></g><g><title>do_execveat_common (31 samples, 0.02%)</title><rect x="72.0105%" y="597" width="0.0212%" height="15" fill="rgb(240,173,7)" fg:x="105126" fg:w="31"/><text x="72.2605%" y="607.50"></text></g><g><title>bprm_execve (31 samples, 0.02%)</title><rect x="72.0105%" y="581" width="0.0212%" height="15" fill="rgb(235,214,13)" fg:x="105126" fg:w="31"/><text x="72.2605%" y="591.50"></text></g><g><title>[bash] (43 samples, 0.03%)</title><rect x="72.0037%" y="693" width="0.0295%" height="15" fill="rgb(245,156,8)" fg:x="105116" fg:w="43"/><text x="72.2537%" y="703.50"></text></g><g><title>shell_execve (33 samples, 0.02%)</title><rect x="72.0105%" y="677" width="0.0226%" height="15" fill="rgb(235,46,12)" fg:x="105126" fg:w="33"/><text x="72.2605%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (134 samples, 0.09%)</title><rect x="72.0626%" y="597" width="0.0918%" height="15" fill="rgb(221,81,14)" fg:x="105202" fg:w="134"/><text x="72.3126%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (133 samples, 0.09%)</title><rect x="72.0633%" y="581" width="0.0911%" height="15" fill="rgb(238,207,9)" fg:x="105203" fg:w="133"/><text x="72.3133%" y="591.50"></text></g><g><title>native_write_msr (133 samples, 0.09%)</title><rect x="72.0633%" y="565" width="0.0911%" height="15" fill="rgb(224,129,35)" fg:x="105203" fg:w="133"/><text x="72.3133%" y="575.50"></text></g><g><title>arch_fork (175 samples, 0.12%)</title><rect x="72.0393%" y="661" width="0.1199%" height="15" fill="rgb(243,218,34)" fg:x="105168" fg:w="175"/><text x="72.2893%" y="671.50"></text></g><g><title>ret_from_fork (159 samples, 0.11%)</title><rect x="72.0503%" y="645" width="0.1089%" height="15" fill="rgb(220,166,13)" fg:x="105184" fg:w="159"/><text x="72.3003%" y="655.50"></text></g><g><title>schedule_tail (159 samples, 0.11%)</title><rect x="72.0503%" y="629" width="0.1089%" height="15" fill="rgb(227,167,49)" fg:x="105184" fg:w="159"/><text x="72.3003%" y="639.50"></text></g><g><title>finish_task_switch (149 samples, 0.10%)</title><rect x="72.0571%" y="613" width="0.1021%" height="15" fill="rgb(234,142,12)" fg:x="105194" fg:w="149"/><text x="72.3071%" y="623.50"></text></g><g><title>__libc_fork (179 samples, 0.12%)</title><rect x="72.0386%" y="677" width="0.1226%" height="15" fill="rgb(207,100,48)" fg:x="105167" fg:w="179"/><text x="72.2886%" y="687.50"></text></g><g><title>make_child (188 samples, 0.13%)</title><rect x="72.0386%" y="693" width="0.1288%" height="15" fill="rgb(210,25,14)" fg:x="105167" fg:w="188"/><text x="72.2886%" y="703.50"></text></g><g><title>[bash] (15 samples, 0.01%)</title><rect x="72.1688%" y="677" width="0.0103%" height="15" fill="rgb(246,116,27)" fg:x="105357" fg:w="15"/><text x="72.4188%" y="687.50"></text></g><g><title>__GI___wait4 (15 samples, 0.01%)</title><rect x="72.1688%" y="661" width="0.0103%" height="15" fill="rgb(214,193,42)" fg:x="105357" fg:w="15"/><text x="72.4188%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="72.1688%" y="645" width="0.0103%" height="15" fill="rgb(214,122,8)" fg:x="105357" fg:w="15"/><text x="72.4188%" y="655.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="72.1688%" y="629" width="0.0103%" height="15" fill="rgb(244,173,18)" fg:x="105357" fg:w="15"/><text x="72.4188%" y="639.50"></text></g><g><title>kernel_wait4 (15 samples, 0.01%)</title><rect x="72.1688%" y="613" width="0.0103%" height="15" fill="rgb(232,68,19)" fg:x="105357" fg:w="15"/><text x="72.4188%" y="623.50"></text></g><g><title>do_wait (15 samples, 0.01%)</title><rect x="72.1688%" y="597" width="0.0103%" height="15" fill="rgb(236,224,1)" fg:x="105357" fg:w="15"/><text x="72.4188%" y="607.50"></text></g><g><title>execute_command_internal (258 samples, 0.18%)</title><rect x="72.0030%" y="757" width="0.1767%" height="15" fill="rgb(240,11,8)" fg:x="105115" fg:w="258"/><text x="72.2530%" y="767.50"></text></g><g><title>[bash] (258 samples, 0.18%)</title><rect x="72.0030%" y="741" width="0.1767%" height="15" fill="rgb(244,159,20)" fg:x="105115" fg:w="258"/><text x="72.2530%" y="751.50"></text></g><g><title>[bash] (258 samples, 0.18%)</title><rect x="72.0030%" y="725" width="0.1767%" height="15" fill="rgb(240,223,54)" fg:x="105115" fg:w="258"/><text x="72.2530%" y="735.50"></text></g><g><title>execute_command_internal (258 samples, 0.18%)</title><rect x="72.0030%" y="709" width="0.1767%" height="15" fill="rgb(237,146,5)" fg:x="105115" fg:w="258"/><text x="72.2530%" y="719.50"></text></g><g><title>wait_for (17 samples, 0.01%)</title><rect x="72.1681%" y="693" width="0.0116%" height="15" fill="rgb(218,221,32)" fg:x="105356" fg:w="17"/><text x="72.4181%" y="703.50"></text></g><g><title>parse_and_execute (263 samples, 0.18%)</title><rect x="72.0023%" y="773" width="0.1802%" height="15" fill="rgb(244,96,26)" fg:x="105114" fg:w="263"/><text x="72.2523%" y="783.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="72.1838%" y="725" width="0.0103%" height="15" fill="rgb(245,184,37)" fg:x="105379" fg:w="15"/><text x="72.4338%" y="735.50"></text></g><g><title>ksys_read (15 samples, 0.01%)</title><rect x="72.1838%" y="709" width="0.0103%" height="15" fill="rgb(248,91,47)" fg:x="105379" fg:w="15"/><text x="72.4338%" y="719.50"></text></g><g><title>vfs_read (15 samples, 0.01%)</title><rect x="72.1838%" y="693" width="0.0103%" height="15" fill="rgb(243,199,8)" fg:x="105379" fg:w="15"/><text x="72.4338%" y="703.50"></text></g><g><title>new_sync_read (15 samples, 0.01%)</title><rect x="72.1838%" y="677" width="0.0103%" height="15" fill="rgb(249,12,15)" fg:x="105379" fg:w="15"/><text x="72.4338%" y="687.50"></text></g><g><title>pipe_read (15 samples, 0.01%)</title><rect x="72.1838%" y="661" width="0.0103%" height="15" fill="rgb(245,97,12)" fg:x="105379" fg:w="15"/><text x="72.4338%" y="671.50"></text></g><g><title>schedule (15 samples, 0.01%)</title><rect x="72.1838%" y="645" width="0.0103%" height="15" fill="rgb(244,61,1)" fg:x="105379" fg:w="15"/><text x="72.4338%" y="655.50"></text></g><g><title>__schedule (15 samples, 0.01%)</title><rect x="72.1838%" y="629" width="0.0103%" height="15" fill="rgb(222,194,10)" fg:x="105379" fg:w="15"/><text x="72.4338%" y="639.50"></text></g><g><title>command_substitute (393 samples, 0.27%)</title><rect x="71.9256%" y="789" width="0.2692%" height="15" fill="rgb(226,178,8)" fg:x="105002" fg:w="393"/><text x="72.1756%" y="799.50"></text></g><g><title>zread (16 samples, 0.01%)</title><rect x="72.1838%" y="773" width="0.0110%" height="15" fill="rgb(241,32,34)" fg:x="105379" fg:w="16"/><text x="72.4338%" y="783.50"></text></g><g><title>__GI___libc_read (16 samples, 0.01%)</title><rect x="72.1838%" y="757" width="0.0110%" height="15" fill="rgb(254,26,6)" fg:x="105379" fg:w="16"/><text x="72.4338%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="72.1838%" y="741" width="0.0110%" height="15" fill="rgb(249,71,11)" fg:x="105379" fg:w="16"/><text x="72.4338%" y="751.50"></text></g><g><title>[bash] (401 samples, 0.27%)</title><rect x="71.9222%" y="805" width="0.2747%" height="15" fill="rgb(232,170,27)" fg:x="104997" fg:w="401"/><text x="72.1722%" y="815.50"></text></g><g><title>[bash] (404 samples, 0.28%)</title><rect x="71.9222%" y="821" width="0.2767%" height="15" fill="rgb(214,223,17)" fg:x="104997" fg:w="404"/><text x="72.1722%" y="831.50"></text></g><g><title>[bash] (408 samples, 0.28%)</title><rect x="71.9208%" y="837" width="0.2795%" height="15" fill="rgb(250,18,15)" fg:x="104995" fg:w="408"/><text x="72.1708%" y="847.50"></text></g><g><title>expand_words (412 samples, 0.28%)</title><rect x="71.9208%" y="869" width="0.2822%" height="15" fill="rgb(212,153,51)" fg:x="104995" fg:w="412"/><text x="72.1708%" y="879.50"></text></g><g><title>[bash] (412 samples, 0.28%)</title><rect x="71.9208%" y="853" width="0.2822%" height="15" fill="rgb(219,194,12)" fg:x="104995" fg:w="412"/><text x="72.1708%" y="863.50"></text></g><g><title>execute_command (1,071 samples, 0.73%)</title><rect x="71.4742%" y="901" width="0.7336%" height="15" fill="rgb(212,58,17)" fg:x="104343" fg:w="1071"/><text x="71.7242%" y="911.50"></text></g><g><title>execute_command_internal (1,071 samples, 0.73%)</title><rect x="71.4742%" y="885" width="0.7336%" height="15" fill="rgb(254,5,10)" fg:x="104343" fg:w="1071"/><text x="71.7242%" y="895.50"></text></g><g><title>[bash] (40 samples, 0.03%)</title><rect x="72.3688%" y="821" width="0.0274%" height="15" fill="rgb(246,91,7)" fg:x="105649" fg:w="40"/><text x="72.6188%" y="831.50"></text></g><g><title>buffered_getchar (44 samples, 0.03%)</title><rect x="72.3975%" y="821" width="0.0301%" height="15" fill="rgb(218,108,49)" fg:x="105691" fg:w="44"/><text x="72.6475%" y="831.50"></text></g><g><title>[bash] (198 samples, 0.14%)</title><rect x="72.2934%" y="837" width="0.1356%" height="15" fill="rgb(238,123,20)" fg:x="105539" fg:w="198"/><text x="72.5434%" y="847.50"></text></g><g><title>assignment (16 samples, 0.01%)</title><rect x="72.4489%" y="837" width="0.0110%" height="15" fill="rgb(231,69,23)" fg:x="105766" fg:w="16"/><text x="72.6989%" y="847.50"></text></g><g><title>[bash] (356 samples, 0.24%)</title><rect x="72.2359%" y="853" width="0.2439%" height="15" fill="rgb(230,209,3)" fg:x="105455" fg:w="356"/><text x="72.4859%" y="863.50"></text></g><g><title>make_simple_command (21 samples, 0.01%)</title><rect x="72.4907%" y="853" width="0.0144%" height="15" fill="rgb(231,19,0)" fg:x="105827" fg:w="21"/><text x="72.7407%" y="863.50"></text></g><g><title>xmalloc (17 samples, 0.01%)</title><rect x="72.4934%" y="837" width="0.0116%" height="15" fill="rgb(226,192,25)" fg:x="105831" fg:w="17"/><text x="72.7434%" y="847.50"></text></g><g><title>__GI___libc_malloc (16 samples, 0.01%)</title><rect x="72.4941%" y="821" width="0.0110%" height="15" fill="rgb(223,175,53)" fg:x="105832" fg:w="16"/><text x="72.7441%" y="831.50"></text></g><g><title>reader_loop (1,538 samples, 1.05%)</title><rect x="71.4536%" y="917" width="1.0535%" height="15" fill="rgb(248,35,51)" fg:x="104313" fg:w="1538"/><text x="71.7036%" y="927.50"></text></g><g><title>read_command (437 samples, 0.30%)</title><rect x="72.2078%" y="901" width="0.2993%" height="15" fill="rgb(230,37,26)" fg:x="105414" fg:w="437"/><text x="72.4578%" y="911.50"></text></g><g><title>parse_command (437 samples, 0.30%)</title><rect x="72.2078%" y="885" width="0.2993%" height="15" fill="rgb(206,120,22)" fg:x="105414" fg:w="437"/><text x="72.4578%" y="895.50"></text></g><g><title>yyparse (437 samples, 0.30%)</title><rect x="72.2078%" y="869" width="0.2993%" height="15" fill="rgb(207,165,28)" fg:x="105414" fg:w="437"/><text x="72.4578%" y="879.50"></text></g><g><title>__libc_start_main (1,549 samples, 1.06%)</title><rect x="71.4502%" y="949" width="1.0611%" height="15" fill="rgb(226,23,46)" fg:x="104308" fg:w="1549"/><text x="71.7002%" y="959.50"></text></g><g><title>main (1,549 samples, 1.06%)</title><rect x="71.4502%" y="933" width="1.0611%" height="15" fill="rgb(208,130,44)" fg:x="104308" fg:w="1549"/><text x="71.7002%" y="943.50"></text></g><g><title>_start (1,564 samples, 1.07%)</title><rect x="71.4502%" y="965" width="1.0713%" height="15" fill="rgb(231,67,8)" fg:x="104308" fg:w="1564"/><text x="71.7002%" y="975.50"></text></g><g><title>_dl_start (15 samples, 0.01%)</title><rect x="72.5113%" y="949" width="0.0103%" height="15" fill="rgb(205,183,22)" fg:x="105857" fg:w="15"/><text x="72.7613%" y="959.50"></text></g><g><title>_dl_start_final (15 samples, 0.01%)</title><rect x="72.5113%" y="933" width="0.0103%" height="15" fill="rgb(224,47,9)" fg:x="105857" fg:w="15"/><text x="72.7613%" y="943.50"></text></g><g><title>_dl_sysdep_start (15 samples, 0.01%)</title><rect x="72.5113%" y="917" width="0.0103%" height="15" fill="rgb(250,183,49)" fg:x="105857" fg:w="15"/><text x="72.7613%" y="927.50"></text></g><g><title>[ld-2.31.so] (15 samples, 0.01%)</title><rect x="72.5113%" y="901" width="0.0103%" height="15" fill="rgb(220,151,39)" fg:x="105857" fg:w="15"/><text x="72.7613%" y="911.50"></text></g><g><title>asm_exc_page_fault (37 samples, 0.03%)</title><rect x="72.5222%" y="965" width="0.0253%" height="15" fill="rgb(220,118,20)" fg:x="105873" fg:w="37"/><text x="72.7722%" y="975.50"></text></g><g><title>tlb_finish_mmu (15 samples, 0.01%)</title><rect x="72.5626%" y="853" width="0.0103%" height="15" fill="rgb(231,65,51)" fg:x="105932" fg:w="15"/><text x="72.8126%" y="863.50"></text></g><g><title>mmput (35 samples, 0.02%)</title><rect x="72.5565%" y="885" width="0.0240%" height="15" fill="rgb(253,125,37)" fg:x="105923" fg:w="35"/><text x="72.8065%" y="895.50"></text></g><g><title>exit_mmap (35 samples, 0.02%)</title><rect x="72.5565%" y="869" width="0.0240%" height="15" fill="rgb(232,102,6)" fg:x="105923" fg:w="35"/><text x="72.8065%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (48 samples, 0.03%)</title><rect x="72.5482%" y="965" width="0.0329%" height="15" fill="rgb(251,105,13)" fg:x="105911" fg:w="48"/><text x="72.7982%" y="975.50"></text></g><g><title>do_syscall_64 (48 samples, 0.03%)</title><rect x="72.5482%" y="949" width="0.0329%" height="15" fill="rgb(222,179,29)" fg:x="105911" fg:w="48"/><text x="72.7982%" y="959.50"></text></g><g><title>__x64_sys_exit_group (36 samples, 0.02%)</title><rect x="72.5565%" y="933" width="0.0247%" height="15" fill="rgb(229,180,53)" fg:x="105923" fg:w="36"/><text x="72.8065%" y="943.50"></text></g><g><title>do_group_exit (36 samples, 0.02%)</title><rect x="72.5565%" y="917" width="0.0247%" height="15" fill="rgb(238,104,13)" fg:x="105923" fg:w="36"/><text x="72.8065%" y="927.50"></text></g><g><title>do_exit (36 samples, 0.02%)</title><rect x="72.5565%" y="901" width="0.0247%" height="15" fill="rgb(210,130,5)" fg:x="105923" fg:w="36"/><text x="72.8065%" y="911.50"></text></g><g><title>libtool (2,080 samples, 1.42%)</title><rect x="71.1577%" y="981" width="1.4248%" height="15" fill="rgb(233,87,49)" fg:x="103881" fg:w="2080"/><text x="71.4077%" y="991.50"></text></g><g><title>linux-sandbox (16 samples, 0.01%)</title><rect x="72.5825%" y="981" width="0.0110%" height="15" fill="rgb(243,34,9)" fg:x="105961" fg:w="16"/><text x="72.8325%" y="991.50"></text></g><g><title>[libstdc++.so.6.0.28] (15 samples, 0.01%)</title><rect x="72.6140%" y="901" width="0.0103%" height="15" fill="rgb(235,225,10)" fg:x="106007" fg:w="15"/><text x="72.8640%" y="911.50"></text></g><g><title>_dl_start_user (21 samples, 0.01%)</title><rect x="72.6140%" y="965" width="0.0144%" height="15" fill="rgb(212,0,30)" fg:x="106007" fg:w="21"/><text x="72.8640%" y="975.50"></text></g><g><title>_dl_init (21 samples, 0.01%)</title><rect x="72.6140%" y="949" width="0.0144%" height="15" fill="rgb(211,177,0)" fg:x="106007" fg:w="21"/><text x="72.8640%" y="959.50"></text></g><g><title>call_init (21 samples, 0.01%)</title><rect x="72.6140%" y="933" width="0.0144%" height="15" fill="rgb(225,220,11)" fg:x="106007" fg:w="21"/><text x="72.8640%" y="943.50"></text></g><g><title>call_init (21 samples, 0.01%)</title><rect x="72.6140%" y="917" width="0.0144%" height="15" fill="rgb(215,10,13)" fg:x="106007" fg:w="21"/><text x="72.8640%" y="927.50"></text></g><g><title>_GLOBAL__sub_I__Z12SwitchToEuidv (18 samples, 0.01%)</title><rect x="72.6298%" y="917" width="0.0123%" height="15" fill="rgb(240,177,14)" fg:x="106030" fg:w="18"/><text x="72.8798%" y="927.50"></text></g><g><title>std::ios_base::Init::Init (18 samples, 0.01%)</title><rect x="72.6298%" y="901" width="0.0123%" height="15" fill="rgb(243,7,39)" fg:x="106030" fg:w="18"/><text x="72.8798%" y="911.50"></text></g><g><title>__libc_csu_init (19 samples, 0.01%)</title><rect x="72.6298%" y="933" width="0.0130%" height="15" fill="rgb(212,99,0)" fg:x="106030" fg:w="19"/><text x="72.8798%" y="943.50"></text></g><g><title>ClearSignalMask (17 samples, 0.01%)</title><rect x="72.6435%" y="885" width="0.0116%" height="15" fill="rgb(225,162,48)" fg:x="106050" fg:w="17"/><text x="72.8935%" y="895.50"></text></g><g><title>sched_exec (40 samples, 0.03%)</title><rect x="72.6743%" y="773" width="0.0274%" height="15" fill="rgb(246,16,25)" fg:x="106095" fg:w="40"/><text x="72.9243%" y="783.50"></text></g><g><title>stop_one_cpu (39 samples, 0.03%)</title><rect x="72.6750%" y="757" width="0.0267%" height="15" fill="rgb(220,150,2)" fg:x="106096" fg:w="39"/><text x="72.9250%" y="767.50"></text></g><g><title>_cond_resched (37 samples, 0.03%)</title><rect x="72.6763%" y="741" width="0.0253%" height="15" fill="rgb(237,113,11)" fg:x="106098" fg:w="37"/><text x="72.9263%" y="751.50"></text></g><g><title>__schedule (37 samples, 0.03%)</title><rect x="72.6763%" y="725" width="0.0253%" height="15" fill="rgb(236,70,20)" fg:x="106098" fg:w="37"/><text x="72.9263%" y="735.50"></text></g><g><title>finish_task_switch (37 samples, 0.03%)</title><rect x="72.6763%" y="709" width="0.0253%" height="15" fill="rgb(234,94,7)" fg:x="106098" fg:w="37"/><text x="72.9263%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.02%)</title><rect x="72.6777%" y="693" width="0.0240%" height="15" fill="rgb(250,221,0)" fg:x="106100" fg:w="35"/><text x="72.9277%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (35 samples, 0.02%)</title><rect x="72.6777%" y="677" width="0.0240%" height="15" fill="rgb(245,149,46)" fg:x="106100" fg:w="35"/><text x="72.9277%" y="687.50"></text></g><g><title>native_write_msr (35 samples, 0.02%)</title><rect x="72.6777%" y="661" width="0.0240%" height="15" fill="rgb(215,37,27)" fg:x="106100" fg:w="35"/><text x="72.9277%" y="671.50"></text></g><g><title>bprm_execve (76 samples, 0.05%)</title><rect x="72.6578%" y="789" width="0.0521%" height="15" fill="rgb(232,65,3)" fg:x="106071" fg:w="76"/><text x="72.9078%" y="799.50"></text></g><g><title>__execvpe_common (77 samples, 0.05%)</title><rect x="72.6578%" y="885" width="0.0527%" height="15" fill="rgb(214,2,16)" fg:x="106071" fg:w="77"/><text x="72.9078%" y="895.50"></text></g><g><title>__GI_execve (77 samples, 0.05%)</title><rect x="72.6578%" y="869" width="0.0527%" height="15" fill="rgb(227,131,50)" fg:x="106071" fg:w="77"/><text x="72.9078%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.05%)</title><rect x="72.6578%" y="853" width="0.0527%" height="15" fill="rgb(247,131,45)" fg:x="106071" fg:w="77"/><text x="72.9078%" y="863.50"></text></g><g><title>do_syscall_64 (77 samples, 0.05%)</title><rect x="72.6578%" y="837" width="0.0527%" height="15" fill="rgb(215,97,47)" fg:x="106071" fg:w="77"/><text x="72.9078%" y="847.50"></text></g><g><title>__x64_sys_execve (77 samples, 0.05%)</title><rect x="72.6578%" y="821" width="0.0527%" height="15" fill="rgb(233,143,12)" fg:x="106071" fg:w="77"/><text x="72.9078%" y="831.50"></text></g><g><title>do_execveat_common (77 samples, 0.05%)</title><rect x="72.6578%" y="805" width="0.0527%" height="15" fill="rgb(222,57,17)" fg:x="106071" fg:w="77"/><text x="72.9078%" y="815.50"></text></g><g><title>dup_mm (19 samples, 0.01%)</title><rect x="72.7352%" y="773" width="0.0130%" height="15" fill="rgb(214,119,38)" fg:x="106184" fg:w="19"/><text x="72.9852%" y="783.50"></text></g><g><title>copy_process (27 samples, 0.02%)</title><rect x="72.7332%" y="789" width="0.0185%" height="15" fill="rgb(217,28,47)" fg:x="106181" fg:w="27"/><text x="72.9832%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.02%)</title><rect x="72.7332%" y="853" width="0.0199%" height="15" fill="rgb(231,14,52)" fg:x="106181" fg:w="29"/><text x="72.9832%" y="863.50"></text></g><g><title>do_syscall_64 (29 samples, 0.02%)</title><rect x="72.7332%" y="837" width="0.0199%" height="15" fill="rgb(220,158,18)" fg:x="106181" fg:w="29"/><text x="72.9832%" y="847.50"></text></g><g><title>__do_sys_clone (29 samples, 0.02%)</title><rect x="72.7332%" y="821" width="0.0199%" height="15" fill="rgb(222,143,46)" fg:x="106181" fg:w="29"/><text x="72.9832%" y="831.50"></text></g><g><title>kernel_clone (29 samples, 0.02%)</title><rect x="72.7332%" y="805" width="0.0199%" height="15" fill="rgb(227,165,5)" fg:x="106181" fg:w="29"/><text x="72.9832%" y="815.50"></text></g><g><title>find_vma (21 samples, 0.01%)</title><rect x="72.7661%" y="757" width="0.0144%" height="15" fill="rgb(216,222,49)" fg:x="106229" fg:w="21"/><text x="73.0161%" y="767.50"></text></g><g><title>alloc_pages_vma (20 samples, 0.01%)</title><rect x="72.7907%" y="725" width="0.0137%" height="15" fill="rgb(238,73,39)" fg:x="106265" fg:w="20"/><text x="73.0407%" y="735.50"></text></g><g><title>__alloc_pages_nodemask (19 samples, 0.01%)</title><rect x="72.7914%" y="709" width="0.0130%" height="15" fill="rgb(252,115,9)" fg:x="106266" fg:w="19"/><text x="73.0414%" y="719.50"></text></g><g><title>get_page_from_freelist (15 samples, 0.01%)</title><rect x="72.7942%" y="693" width="0.0103%" height="15" fill="rgb(238,202,4)" fg:x="106270" fg:w="15"/><text x="73.0442%" y="703.50"></text></g><g><title>__put_user_nocheck_4 (83 samples, 0.06%)</title><rect x="72.7551%" y="821" width="0.0569%" height="15" fill="rgb(252,153,44)" fg:x="106213" fg:w="83"/><text x="73.0051%" y="831.50"></text></g><g><title>asm_exc_page_fault (83 samples, 0.06%)</title><rect x="72.7551%" y="805" width="0.0569%" height="15" fill="rgb(235,128,27)" fg:x="106213" fg:w="83"/><text x="73.0051%" y="815.50"></text></g><g><title>exc_page_fault (75 samples, 0.05%)</title><rect x="72.7606%" y="789" width="0.0514%" height="15" fill="rgb(221,121,47)" fg:x="106221" fg:w="75"/><text x="73.0106%" y="799.50"></text></g><g><title>do_user_addr_fault (75 samples, 0.05%)</title><rect x="72.7606%" y="773" width="0.0514%" height="15" fill="rgb(247,211,47)" fg:x="106221" fg:w="75"/><text x="73.0106%" y="783.50"></text></g><g><title>handle_mm_fault (46 samples, 0.03%)</title><rect x="72.7805%" y="757" width="0.0315%" height="15" fill="rgb(252,47,49)" fg:x="106250" fg:w="46"/><text x="73.0305%" y="767.50"></text></g><g><title>wp_page_copy (31 samples, 0.02%)</title><rect x="72.7907%" y="741" width="0.0212%" height="15" fill="rgb(219,119,53)" fg:x="106265" fg:w="31"/><text x="73.0407%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (675 samples, 0.46%)</title><rect x="72.8161%" y="805" width="0.4624%" height="15" fill="rgb(243,165,53)" fg:x="106302" fg:w="675"/><text x="73.0661%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (668 samples, 0.46%)</title><rect x="72.8209%" y="789" width="0.4576%" height="15" fill="rgb(230,12,35)" fg:x="106309" fg:w="668"/><text x="73.0709%" y="799.50"></text></g><g><title>native_write_msr (665 samples, 0.46%)</title><rect x="72.8229%" y="773" width="0.4555%" height="15" fill="rgb(239,57,49)" fg:x="106312" fg:w="665"/><text x="73.0729%" y="783.50"></text></g><g><title>asm_sysvec_irq_work (24 samples, 0.02%)</title><rect x="73.2791%" y="805" width="0.0164%" height="15" fill="rgb(231,154,7)" fg:x="106978" fg:w="24"/><text x="73.5291%" y="815.50"></text></g><g><title>sysvec_irq_work (20 samples, 0.01%)</title><rect x="73.2819%" y="789" width="0.0137%" height="15" fill="rgb(248,81,34)" fg:x="106982" fg:w="20"/><text x="73.5319%" y="799.50"></text></g><g><title>asm_call_sysvec_on_stack (20 samples, 0.01%)</title><rect x="73.2819%" y="773" width="0.0137%" height="15" fill="rgb(247,9,5)" fg:x="106982" fg:w="20"/><text x="73.5319%" y="783.50"></text></g><g><title>__sysvec_irq_work (19 samples, 0.01%)</title><rect x="73.2826%" y="757" width="0.0130%" height="15" fill="rgb(228,172,27)" fg:x="106983" fg:w="19"/><text x="73.5326%" y="767.50"></text></g><g><title>irq_work_run (19 samples, 0.01%)</title><rect x="73.2826%" y="741" width="0.0130%" height="15" fill="rgb(230,57,44)" fg:x="106983" fg:w="19"/><text x="73.5326%" y="751.50"></text></g><g><title>irq_work_run_list (19 samples, 0.01%)</title><rect x="73.2826%" y="725" width="0.0130%" height="15" fill="rgb(249,35,22)" fg:x="106983" fg:w="19"/><text x="73.5326%" y="735.50"></text></g><g><title>irq_work_single (19 samples, 0.01%)</title><rect x="73.2826%" y="709" width="0.0130%" height="15" fill="rgb(250,137,27)" fg:x="106983" fg:w="19"/><text x="73.5326%" y="719.50"></text></g><g><title>perf_pending_event (19 samples, 0.01%)</title><rect x="73.2826%" y="693" width="0.0130%" height="15" fill="rgb(251,57,31)" fg:x="106983" fg:w="19"/><text x="73.5326%" y="703.50"></text></g><g><title>perf_event_wakeup (18 samples, 0.01%)</title><rect x="73.2832%" y="677" width="0.0123%" height="15" fill="rgb(238,60,0)" fg:x="106984" fg:w="18"/><text x="73.5332%" y="687.50"></text></g><g><title>__wake_up_common_lock (16 samples, 0.01%)</title><rect x="73.2846%" y="661" width="0.0110%" height="15" fill="rgb(242,185,39)" fg:x="106986" fg:w="16"/><text x="73.5346%" y="671.50"></text></g><g><title>__wake_up_common (16 samples, 0.01%)</title><rect x="73.2846%" y="645" width="0.0110%" height="15" fill="rgb(240,63,43)" fg:x="106986" fg:w="16"/><text x="73.5346%" y="655.50"></text></g><g><title>pollwake (15 samples, 0.01%)</title><rect x="73.2853%" y="629" width="0.0103%" height="15" fill="rgb(236,155,6)" fg:x="106987" fg:w="15"/><text x="73.5353%" y="639.50"></text></g><g><title>schedule_tail (792 samples, 0.54%)</title><rect x="72.7544%" y="837" width="0.5425%" height="15" fill="rgb(215,11,29)" fg:x="106212" fg:w="792"/><text x="73.0044%" y="847.50"></text></g><g><title>finish_task_switch (708 samples, 0.48%)</title><rect x="72.8120%" y="821" width="0.4850%" height="15" fill="rgb(228,180,48)" fg:x="106296" fg:w="708"/><text x="73.0620%" y="831.50"></text></g><g><title>arch_fork (829 samples, 0.57%)</title><rect x="72.7298%" y="869" width="0.5679%" height="15" fill="rgb(241,102,12)" fg:x="106176" fg:w="829"/><text x="72.9798%" y="879.50"></text></g><g><title>ret_from_fork (794 samples, 0.54%)</title><rect x="72.7537%" y="853" width="0.5439%" height="15" fill="rgb(246,213,4)" fg:x="106211" fg:w="794"/><text x="73.0037%" y="863.50"></text></g><g><title>__libc_fork (869 samples, 0.60%)</title><rect x="72.7106%" y="885" width="0.5953%" height="15" fill="rgb(218,134,35)" fg:x="106148" fg:w="869"/><text x="72.9606%" y="895.50"></text></g><g><title>__setsid (23 samples, 0.02%)</title><rect x="73.3058%" y="885" width="0.0158%" height="15" fill="rgb(251,117,35)" fg:x="107017" fg:w="23"/><text x="73.5558%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="73.3058%" y="869" width="0.0158%" height="15" fill="rgb(206,156,45)" fg:x="107017" fg:w="23"/><text x="73.5558%" y="879.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="73.3058%" y="853" width="0.0158%" height="15" fill="rgb(218,52,27)" fg:x="107017" fg:w="23"/><text x="73.5558%" y="863.50"></text></g><g><title>__x64_sys_setsid (23 samples, 0.02%)</title><rect x="73.3058%" y="837" width="0.0158%" height="15" fill="rgb(238,83,36)" fg:x="107017" fg:w="23"/><text x="73.5558%" y="847.50"></text></g><g><title>ksys_setsid (23 samples, 0.02%)</title><rect x="73.3058%" y="821" width="0.0158%" height="15" fill="rgb(218,53,43)" fg:x="107017" fg:w="23"/><text x="73.5558%" y="831.50"></text></g><g><title>sched_autogroup_create_attach (21 samples, 0.01%)</title><rect x="73.3072%" y="805" width="0.0144%" height="15" fill="rgb(239,54,39)" fg:x="107019" fg:w="21"/><text x="73.5572%" y="815.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (997 samples, 0.68%)</title><rect x="72.6428%" y="917" width="0.6829%" height="15" fill="rgb(212,198,13)" fg:x="106049" fg:w="997"/><text x="72.8928%" y="927.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (997 samples, 0.68%)</title><rect x="72.6428%" y="901" width="0.6829%" height="15" fill="rgb(234,54,46)" fg:x="106049" fg:w="997"/><text x="72.8928%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.03%)</title><rect x="73.3284%" y="757" width="0.0301%" height="15" fill="rgb(217,120,7)" fg:x="107050" fg:w="44"/><text x="73.5784%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (44 samples, 0.03%)</title><rect x="73.3284%" y="741" width="0.0301%" height="15" fill="rgb(246,39,15)" fg:x="107050" fg:w="44"/><text x="73.5784%" y="751.50"></text></g><g><title>native_write_msr (44 samples, 0.03%)</title><rect x="73.3284%" y="725" width="0.0301%" height="15" fill="rgb(242,143,31)" fg:x="107050" fg:w="44"/><text x="73.5784%" y="735.50"></text></g><g><title>schedule (46 samples, 0.03%)</title><rect x="73.3278%" y="805" width="0.0315%" height="15" fill="rgb(252,60,24)" fg:x="107049" fg:w="46"/><text x="73.5778%" y="815.50"></text></g><g><title>__schedule (46 samples, 0.03%)</title><rect x="73.3278%" y="789" width="0.0315%" height="15" fill="rgb(249,220,7)" fg:x="107049" fg:w="46"/><text x="73.5778%" y="799.50"></text></g><g><title>finish_task_switch (46 samples, 0.03%)</title><rect x="73.3278%" y="773" width="0.0315%" height="15" fill="rgb(236,67,13)" fg:x="107049" fg:w="46"/><text x="73.5778%" y="783.50"></text></g><g><title>WaitChild (58 samples, 0.04%)</title><rect x="73.3271%" y="901" width="0.0397%" height="15" fill="rgb(210,62,39)" fg:x="107048" fg:w="58"/><text x="73.5771%" y="911.50"></text></g><g><title>__GI___wait4 (57 samples, 0.04%)</title><rect x="73.3278%" y="885" width="0.0390%" height="15" fill="rgb(219,122,53)" fg:x="107049" fg:w="57"/><text x="73.5778%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.04%)</title><rect x="73.3278%" y="869" width="0.0390%" height="15" fill="rgb(218,87,25)" fg:x="107049" fg:w="57"/><text x="73.5778%" y="879.50"></text></g><g><title>do_syscall_64 (57 samples, 0.04%)</title><rect x="73.3278%" y="853" width="0.0390%" height="15" fill="rgb(234,179,48)" fg:x="107049" fg:w="57"/><text x="73.5778%" y="863.50"></text></g><g><title>kernel_wait4 (57 samples, 0.04%)</title><rect x="73.3278%" y="837" width="0.0390%" height="15" fill="rgb(248,90,0)" fg:x="107049" fg:w="57"/><text x="73.5778%" y="847.50"></text></g><g><title>do_wait (57 samples, 0.04%)</title><rect x="73.3278%" y="821" width="0.0390%" height="15" fill="rgb(207,228,37)" fg:x="107049" fg:w="57"/><text x="73.5778%" y="831.50"></text></g><g><title>LegacyProcessWrapper::WaitForChild (79 samples, 0.05%)</title><rect x="73.3257%" y="917" width="0.0541%" height="15" fill="rgb(235,214,15)" fg:x="107046" fg:w="79"/><text x="73.5757%" y="927.50"></text></g><g><title>__GI_exit (19 samples, 0.01%)</title><rect x="73.3668%" y="901" width="0.0130%" height="15" fill="rgb(210,144,39)" fg:x="107106" fg:w="19"/><text x="73.6168%" y="911.50"></text></g><g><title>__run_exit_handlers (19 samples, 0.01%)</title><rect x="73.3668%" y="885" width="0.0130%" height="15" fill="rgb(222,67,41)" fg:x="107106" fg:w="19"/><text x="73.6168%" y="895.50"></text></g><g><title>__libc_start_main (1,100 samples, 0.75%)</title><rect x="72.6298%" y="949" width="0.7535%" height="15" fill="rgb(205,35,37)" fg:x="106030" fg:w="1100"/><text x="72.8798%" y="959.50"></text></g><g><title>main (1,081 samples, 0.74%)</title><rect x="72.6428%" y="933" width="0.7405%" height="15" fill="rgb(216,125,40)" fg:x="106049" fg:w="1081"/><text x="72.8928%" y="943.50"></text></g><g><title>__split_vma (17 samples, 0.01%)</title><rect x="73.3976%" y="645" width="0.0116%" height="15" fill="rgb(228,227,20)" fg:x="107151" fg:w="17"/><text x="73.6476%" y="655.50"></text></g><g><title>__vma_adjust (17 samples, 0.01%)</title><rect x="73.3976%" y="629" width="0.0116%" height="15" fill="rgb(242,173,45)" fg:x="107151" fg:w="17"/><text x="73.6476%" y="639.50"></text></g><g><title>__do_munmap (27 samples, 0.02%)</title><rect x="73.3969%" y="661" width="0.0185%" height="15" fill="rgb(215,79,24)" fg:x="107150" fg:w="27"/><text x="73.6469%" y="671.50"></text></g><g><title>do_mmap (48 samples, 0.03%)</title><rect x="73.3956%" y="693" width="0.0329%" height="15" fill="rgb(238,164,38)" fg:x="107148" fg:w="48"/><text x="73.6456%" y="703.50"></text></g><g><title>mmap_region (48 samples, 0.03%)</title><rect x="73.3956%" y="677" width="0.0329%" height="15" fill="rgb(245,196,38)" fg:x="107148" fg:w="48"/><text x="73.6456%" y="687.50"></text></g><g><title>ksys_mmap_pgoff (49 samples, 0.03%)</title><rect x="73.3956%" y="725" width="0.0336%" height="15" fill="rgb(231,217,29)" fg:x="107148" fg:w="49"/><text x="73.6456%" y="735.50"></text></g><g><title>vm_mmap_pgoff (49 samples, 0.03%)</title><rect x="73.3956%" y="709" width="0.0336%" height="15" fill="rgb(245,6,4)" fg:x="107148" fg:w="49"/><text x="73.6456%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.03%)</title><rect x="73.3956%" y="757" width="0.0342%" height="15" fill="rgb(214,76,49)" fg:x="107148" fg:w="50"/><text x="73.6456%" y="767.50"></text></g><g><title>do_syscall_64 (50 samples, 0.03%)</title><rect x="73.3956%" y="741" width="0.0342%" height="15" fill="rgb(205,96,12)" fg:x="107148" fg:w="50"/><text x="73.6456%" y="751.50"></text></g><g><title>_dl_map_segments (59 samples, 0.04%)</title><rect x="73.3901%" y="805" width="0.0404%" height="15" fill="rgb(243,131,4)" fg:x="107140" fg:w="59"/><text x="73.6401%" y="815.50"></text></g><g><title>__mmap64 (51 samples, 0.03%)</title><rect x="73.3956%" y="789" width="0.0349%" height="15" fill="rgb(214,114,4)" fg:x="107148" fg:w="51"/><text x="73.6456%" y="799.50"></text></g><g><title>__mmap64 (51 samples, 0.03%)</title><rect x="73.3956%" y="773" width="0.0349%" height="15" fill="rgb(234,215,15)" fg:x="107148" fg:w="51"/><text x="73.6456%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (70 samples, 0.05%)</title><rect x="73.3901%" y="821" width="0.0479%" height="15" fill="rgb(250,216,45)" fg:x="107140" fg:w="70"/><text x="73.6401%" y="831.50"></text></g><g><title>_dl_catch_exception (88 samples, 0.06%)</title><rect x="73.3846%" y="869" width="0.0603%" height="15" fill="rgb(236,128,4)" fg:x="107132" fg:w="88"/><text x="73.6346%" y="879.50"></text></g><g><title>openaux (88 samples, 0.06%)</title><rect x="73.3846%" y="853" width="0.0603%" height="15" fill="rgb(234,50,33)" fg:x="107132" fg:w="88"/><text x="73.6346%" y="863.50"></text></g><g><title>_dl_map_object (88 samples, 0.06%)</title><rect x="73.3846%" y="837" width="0.0603%" height="15" fill="rgb(253,131,37)" fg:x="107132" fg:w="88"/><text x="73.6346%" y="847.50"></text></g><g><title>_dl_map_object_deps (94 samples, 0.06%)</title><rect x="73.3839%" y="885" width="0.0644%" height="15" fill="rgb(218,55,27)" fg:x="107131" fg:w="94"/><text x="73.6339%" y="895.50"></text></g><g><title>dl_new_hash (37 samples, 0.03%)</title><rect x="73.4922%" y="821" width="0.0253%" height="15" fill="rgb(241,220,28)" fg:x="107289" fg:w="37"/><text x="73.7422%" y="831.50"></text></g><g><title>check_match (19 samples, 0.01%)</title><rect x="73.5600%" y="805" width="0.0130%" height="15" fill="rgb(241,90,48)" fg:x="107388" fg:w="19"/><text x="73.8100%" y="815.50"></text></g><g><title>_dl_lookup_symbol_x (134 samples, 0.09%)</title><rect x="73.4894%" y="837" width="0.0918%" height="15" fill="rgb(216,43,37)" fg:x="107285" fg:w="134"/><text x="73.7394%" y="847.50"></text></g><g><title>do_lookup_x (93 samples, 0.06%)</title><rect x="73.5175%" y="821" width="0.0637%" height="15" fill="rgb(207,173,9)" fg:x="107326" fg:w="93"/><text x="73.7675%" y="831.50"></text></g><g><title>elf_machine_rela (177 samples, 0.12%)</title><rect x="73.4620%" y="853" width="0.1212%" height="15" fill="rgb(240,126,30)" fg:x="107245" fg:w="177"/><text x="73.7120%" y="863.50"></text></g><g><title>_dl_relocate_object (205 samples, 0.14%)</title><rect x="73.4504%" y="885" width="0.1404%" height="15" fill="rgb(228,178,53)" fg:x="107228" fg:w="205"/><text x="73.7004%" y="895.50"></text></g><g><title>elf_dynamic_do_Rela (197 samples, 0.13%)</title><rect x="73.4559%" y="869" width="0.1349%" height="15" fill="rgb(217,33,4)" fg:x="107236" fg:w="197"/><text x="73.7059%" y="879.50"></text></g><g><title>[ld-2.31.so] (312 samples, 0.21%)</title><rect x="73.3832%" y="901" width="0.2137%" height="15" fill="rgb(206,124,34)" fg:x="107130" fg:w="312"/><text x="73.6332%" y="911.50"></text></g><g><title>_dl_start_final (316 samples, 0.22%)</title><rect x="73.3832%" y="933" width="0.2165%" height="15" fill="rgb(208,122,53)" fg:x="107130" fg:w="316"/><text x="73.6332%" y="943.50"></text></g><g><title>_dl_sysdep_start (316 samples, 0.22%)</title><rect x="73.3832%" y="917" width="0.2165%" height="15" fill="rgb(215,202,26)" fg:x="107130" fg:w="316"/><text x="73.6332%" y="927.50"></text></g><g><title>_dl_start (319 samples, 0.22%)</title><rect x="73.3832%" y="949" width="0.2185%" height="15" fill="rgb(232,198,31)" fg:x="107130" fg:w="319"/><text x="73.6332%" y="959.50"></text></g><g><title>_start (1,421 samples, 0.97%)</title><rect x="72.6298%" y="965" width="0.9734%" height="15" fill="rgb(222,23,35)" fg:x="106030" fg:w="1421"/><text x="72.8798%" y="975.50"></text></g><g><title>asm_exc_page_fault (25 samples, 0.02%)</title><rect x="73.6031%" y="965" width="0.0171%" height="15" fill="rgb(242,27,53)" fg:x="107451" fg:w="25"/><text x="73.8531%" y="975.50"></text></g><g><title>begin_new_exec (31 samples, 0.02%)</title><rect x="73.6216%" y="869" width="0.0212%" height="15" fill="rgb(210,216,42)" fg:x="107478" fg:w="31"/><text x="73.8716%" y="879.50"></text></g><g><title>mmput (30 samples, 0.02%)</title><rect x="73.6223%" y="853" width="0.0205%" height="15" fill="rgb(234,39,38)" fg:x="107479" fg:w="30"/><text x="73.8723%" y="863.50"></text></g><g><title>exit_mmap (30 samples, 0.02%)</title><rect x="73.6223%" y="837" width="0.0205%" height="15" fill="rgb(235,126,54)" fg:x="107479" fg:w="30"/><text x="73.8723%" y="847.50"></text></g><g><title>__x64_sys_execve (57 samples, 0.04%)</title><rect x="73.6203%" y="933" width="0.0390%" height="15" fill="rgb(235,150,33)" fg:x="107476" fg:w="57"/><text x="73.8703%" y="943.50"></text></g><g><title>do_execveat_common (57 samples, 0.04%)</title><rect x="73.6203%" y="917" width="0.0390%" height="15" fill="rgb(249,49,53)" fg:x="107476" fg:w="57"/><text x="73.8703%" y="927.50"></text></g><g><title>bprm_execve (57 samples, 0.04%)</title><rect x="73.6203%" y="901" width="0.0390%" height="15" fill="rgb(238,60,50)" fg:x="107476" fg:w="57"/><text x="73.8703%" y="911.50"></text></g><g><title>load_elf_binary (57 samples, 0.04%)</title><rect x="73.6203%" y="885" width="0.0390%" height="15" fill="rgb(210,5,2)" fg:x="107476" fg:w="57"/><text x="73.8703%" y="895.50"></text></g><g><title>mmput (40 samples, 0.03%)</title><rect x="73.6593%" y="885" width="0.0274%" height="15" fill="rgb(214,207,24)" fg:x="107533" fg:w="40"/><text x="73.9093%" y="895.50"></text></g><g><title>exit_mmap (40 samples, 0.03%)</title><rect x="73.6593%" y="869" width="0.0274%" height="15" fill="rgb(228,173,2)" fg:x="107533" fg:w="40"/><text x="73.9093%" y="879.50"></text></g><g><title>unmap_vmas (25 samples, 0.02%)</title><rect x="73.6696%" y="853" width="0.0171%" height="15" fill="rgb(244,26,8)" fg:x="107548" fg:w="25"/><text x="73.9196%" y="863.50"></text></g><g><title>unmap_page_range (25 samples, 0.02%)</title><rect x="73.6696%" y="837" width="0.0171%" height="15" fill="rgb(249,153,35)" fg:x="107548" fg:w="25"/><text x="73.9196%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (100 samples, 0.07%)</title><rect x="73.6203%" y="965" width="0.0685%" height="15" fill="rgb(221,215,40)" fg:x="107476" fg:w="100"/><text x="73.8703%" y="975.50"></text></g><g><title>do_syscall_64 (100 samples, 0.07%)</title><rect x="73.6203%" y="949" width="0.0685%" height="15" fill="rgb(238,106,35)" fg:x="107476" fg:w="100"/><text x="73.8703%" y="959.50"></text></g><g><title>__x64_sys_exit_group (43 samples, 0.03%)</title><rect x="73.6593%" y="933" width="0.0295%" height="15" fill="rgb(207,195,21)" fg:x="107533" fg:w="43"/><text x="73.9093%" y="943.50"></text></g><g><title>do_group_exit (43 samples, 0.03%)</title><rect x="73.6593%" y="917" width="0.0295%" height="15" fill="rgb(205,43,29)" fg:x="107533" fg:w="43"/><text x="73.9093%" y="927.50"></text></g><g><title>do_exit (43 samples, 0.03%)</title><rect x="73.6593%" y="901" width="0.0295%" height="15" fill="rgb(236,35,21)" fg:x="107533" fg:w="43"/><text x="73.9093%" y="911.50"></text></g><g><title>process-wrapper (1,600 samples, 1.10%)</title><rect x="72.5976%" y="981" width="1.0960%" height="15" fill="rgb(244,74,8)" fg:x="105983" fg:w="1600"/><text x="72.8476%" y="991.50"></text></g><g><title>d_invalidate (15 samples, 0.01%)</title><rect x="73.7675%" y="805" width="0.0103%" height="15" fill="rgb(241,229,7)" fg:x="107691" fg:w="15"/><text x="74.0175%" y="815.50"></text></g><g><title>release_task (19 samples, 0.01%)</title><rect x="73.7655%" y="837" width="0.0130%" height="15" fill="rgb(212,223,25)" fg:x="107688" fg:w="19"/><text x="74.0155%" y="847.50"></text></g><g><title>proc_invalidate_siblings_dcache (16 samples, 0.01%)</title><rect x="73.7675%" y="821" width="0.0110%" height="15" fill="rgb(234,58,53)" fg:x="107691" fg:w="16"/><text x="74.0175%" y="831.50"></text></g><g><title>do_wait (68 samples, 0.05%)</title><rect x="73.7326%" y="869" width="0.0466%" height="15" fill="rgb(244,36,1)" fg:x="107640" fg:w="68"/><text x="73.9826%" y="879.50"></text></g><g><title>wait_consider_task (21 samples, 0.01%)</title><rect x="73.7648%" y="853" width="0.0144%" height="15" fill="rgb(222,40,54)" fg:x="107687" fg:w="21"/><text x="74.0148%" y="863.50"></text></g><g><title>do_syscall_64 (69 samples, 0.05%)</title><rect x="73.7326%" y="901" width="0.0473%" height="15" fill="rgb(210,207,39)" fg:x="107640" fg:w="69"/><text x="73.9826%" y="911.50"></text></g><g><title>kernel_wait4 (69 samples, 0.05%)</title><rect x="73.7326%" y="885" width="0.0473%" height="15" fill="rgb(234,52,14)" fg:x="107640" fg:w="69"/><text x="73.9826%" y="895.50"></text></g><g><title>__GI___wait4 (70 samples, 0.05%)</title><rect x="73.7326%" y="933" width="0.0479%" height="15" fill="rgb(239,108,46)" fg:x="107640" fg:w="70"/><text x="73.9826%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.05%)</title><rect x="73.7326%" y="917" width="0.0479%" height="15" fill="rgb(252,223,5)" fg:x="107640" fg:w="70"/><text x="73.9826%" y="927.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (72 samples, 0.05%)</title><rect x="73.7326%" y="949" width="0.0493%" height="15" fill="rgb(227,181,11)" fg:x="107640" fg:w="72"/><text x="73.9826%" y="959.50"></text></g><g><title>finish_task_switch (15 samples, 0.01%)</title><rect x="73.7881%" y="741" width="0.0103%" height="15" fill="rgb(248,126,40)" fg:x="107721" fg:w="15"/><text x="74.0381%" y="751.50"></text></g><g><title>futex_wait_queue_me (19 samples, 0.01%)</title><rect x="73.7860%" y="789" width="0.0130%" height="15" fill="rgb(243,1,18)" fg:x="107718" fg:w="19"/><text x="74.0360%" y="799.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="73.7881%" y="773" width="0.0110%" height="15" fill="rgb(214,145,23)" fg:x="107721" fg:w="16"/><text x="74.0381%" y="783.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="73.7881%" y="757" width="0.0110%" height="15" fill="rgb(241,218,11)" fg:x="107721" fg:w="16"/><text x="74.0381%" y="767.50"></text></g><g><title>__pthread_cond_timedwait (26 samples, 0.02%)</title><rect x="73.7840%" y="917" width="0.0178%" height="15" fill="rgb(214,219,24)" fg:x="107715" fg:w="26"/><text x="74.0340%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (26 samples, 0.02%)</title><rect x="73.7840%" y="901" width="0.0178%" height="15" fill="rgb(235,32,7)" fg:x="107715" fg:w="26"/><text x="74.0340%" y="911.50"></text></g><g><title>futex_abstimed_wait_cancelable (26 samples, 0.02%)</title><rect x="73.7840%" y="885" width="0.0178%" height="15" fill="rgb(227,121,28)" fg:x="107715" fg:w="26"/><text x="74.0340%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="73.7840%" y="869" width="0.0178%" height="15" fill="rgb(216,129,49)" fg:x="107715" fg:w="26"/><text x="74.0340%" y="879.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="73.7840%" y="853" width="0.0178%" height="15" fill="rgb(207,194,50)" fg:x="107715" fg:w="26"/><text x="74.0340%" y="863.50"></text></g><g><title>__x64_sys_futex (24 samples, 0.02%)</title><rect x="73.7853%" y="837" width="0.0164%" height="15" fill="rgb(207,4,18)" fg:x="107717" fg:w="24"/><text x="74.0353%" y="847.50"></text></g><g><title>do_futex (24 samples, 0.02%)</title><rect x="73.7853%" y="821" width="0.0164%" height="15" fill="rgb(213,50,30)" fg:x="107717" fg:w="24"/><text x="74.0353%" y="831.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="73.7860%" y="805" width="0.0158%" height="15" fill="rgb(208,77,22)" fg:x="107718" fg:w="23"/><text x="74.0360%" y="815.50"></text></g><g><title>[perf-627991.map] (156 samples, 0.11%)</title><rect x="73.6956%" y="965" width="0.1069%" height="15" fill="rgb(244,204,34)" fg:x="107586" fg:w="156"/><text x="73.9456%" y="975.50"></text></g><g><title>Unsafe_Park (30 samples, 0.02%)</title><rect x="73.7819%" y="949" width="0.0205%" height="15" fill="rgb(230,20,17)" fg:x="107712" fg:w="30"/><text x="74.0319%" y="959.50"></text></g><g><title>Parker::park (30 samples, 0.02%)</title><rect x="73.7819%" y="933" width="0.0205%" height="15" fill="rgb(237,83,15)" fg:x="107712" fg:w="30"/><text x="74.0319%" y="943.50"></text></g><g><title>process_reaper (161 samples, 0.11%)</title><rect x="73.6935%" y="981" width="0.1103%" height="15" fill="rgb(221,109,25)" fg:x="107583" fg:w="161"/><text x="73.9435%" y="991.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (17 samples, 0.01%)</title><rect x="74.0004%" y="949" width="0.0116%" height="15" fill="rgb(205,194,52)" fg:x="108031" fg:w="17"/><text x="74.2504%" y="959.50"></text></g><g><title>deflate (17 samples, 0.01%)</title><rect x="74.0004%" y="933" width="0.0116%" height="15" fill="rgb(244,173,54)" fg:x="108031" fg:w="17"/><text x="74.2504%" y="943.50"></text></g><g><title>[libz.so.1.2.11] (17 samples, 0.01%)</title><rect x="74.0004%" y="917" width="0.0116%" height="15" fill="rgb(227,181,18)" fg:x="108031" fg:w="17"/><text x="74.2504%" y="927.50"></text></g><g><title>dequeue_task_fair (15 samples, 0.01%)</title><rect x="74.0463%" y="741" width="0.0103%" height="15" fill="rgb(238,36,30)" fg:x="108098" fg:w="15"/><text x="74.2963%" y="751.50"></text></g><g><title>finish_task_switch (45 samples, 0.03%)</title><rect x="74.0566%" y="741" width="0.0308%" height="15" fill="rgb(254,85,0)" fg:x="108113" fg:w="45"/><text x="74.3066%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (45 samples, 0.03%)</title><rect x="74.0566%" y="725" width="0.0308%" height="15" fill="rgb(247,63,33)" fg:x="108113" fg:w="45"/><text x="74.3066%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.03%)</title><rect x="74.0586%" y="709" width="0.0288%" height="15" fill="rgb(220,7,54)" fg:x="108116" fg:w="42"/><text x="74.3086%" y="719.50"></text></g><g><title>native_write_msr (42 samples, 0.03%)</title><rect x="74.0586%" y="693" width="0.0288%" height="15" fill="rgb(238,227,21)" fg:x="108116" fg:w="42"/><text x="74.3086%" y="703.50"></text></g><g><title>futex_wait_queue_me (89 samples, 0.06%)</title><rect x="74.0388%" y="789" width="0.0610%" height="15" fill="rgb(237,29,31)" fg:x="108087" fg:w="89"/><text x="74.2888%" y="799.50"></text></g><g><title>schedule (82 samples, 0.06%)</title><rect x="74.0436%" y="773" width="0.0562%" height="15" fill="rgb(211,21,50)" fg:x="108094" fg:w="82"/><text x="74.2936%" y="783.50"></text></g><g><title>__schedule (80 samples, 0.05%)</title><rect x="74.0449%" y="757" width="0.0548%" height="15" fill="rgb(239,119,2)" fg:x="108096" fg:w="80"/><text x="74.2949%" y="767.50"></text></g><g><title>__x64_sys_futex (98 samples, 0.07%)</title><rect x="74.0340%" y="837" width="0.0671%" height="15" fill="rgb(250,2,39)" fg:x="108080" fg:w="98"/><text x="74.2840%" y="847.50"></text></g><g><title>do_futex (98 samples, 0.07%)</title><rect x="74.0340%" y="821" width="0.0671%" height="15" fill="rgb(244,46,53)" fg:x="108080" fg:w="98"/><text x="74.2840%" y="831.50"></text></g><g><title>futex_wait (93 samples, 0.06%)</title><rect x="74.0374%" y="805" width="0.0637%" height="15" fill="rgb(209,21,19)" fg:x="108085" fg:w="93"/><text x="74.2874%" y="815.50"></text></g><g><title>do_syscall_64 (99 samples, 0.07%)</title><rect x="74.0340%" y="853" width="0.0678%" height="15" fill="rgb(236,145,4)" fg:x="108080" fg:w="99"/><text x="74.2840%" y="863.50"></text></g><g><title>__pthread_cond_wait (110 samples, 0.08%)</title><rect x="74.0299%" y="917" width="0.0753%" height="15" fill="rgb(220,133,36)" fg:x="108074" fg:w="110"/><text x="74.2799%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (110 samples, 0.08%)</title><rect x="74.0299%" y="901" width="0.0753%" height="15" fill="rgb(244,18,3)" fg:x="108074" fg:w="110"/><text x="74.2799%" y="911.50"></text></g><g><title>futex_wait_cancelable (109 samples, 0.07%)</title><rect x="74.0306%" y="885" width="0.0747%" height="15" fill="rgb(232,171,48)" fg:x="108075" fg:w="109"/><text x="74.2806%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.07%)</title><rect x="74.0319%" y="869" width="0.0733%" height="15" fill="rgb(223,223,53)" fg:x="108077" fg:w="107"/><text x="74.2819%" y="879.50"></text></g><g><title>Parker::park (135 samples, 0.09%)</title><rect x="74.0230%" y="933" width="0.0925%" height="15" fill="rgb(246,92,13)" fg:x="108064" fg:w="135"/><text x="74.2730%" y="943.50"></text></g><g><title>[perf-627991.map] (451 samples, 0.31%)</title><rect x="73.8079%" y="965" width="0.3089%" height="15" fill="rgb(229,171,10)" fg:x="107750" fg:w="451"/><text x="74.0579%" y="975.50"></text></g><g><title>Unsafe_Park (141 samples, 0.10%)</title><rect x="74.0203%" y="949" width="0.0966%" height="15" fill="rgb(213,131,26)" fg:x="108060" fg:w="141"/><text x="74.2703%" y="959.50"></text></g><g><title>[unknown] (19 samples, 0.01%)</title><rect x="74.1169%" y="965" width="0.0130%" height="15" fill="rgb(242,87,54)" fg:x="108201" fg:w="19"/><text x="74.3669%" y="975.50"></text></g><g><title>profile-writer- (480 samples, 0.33%)</title><rect x="73.8038%" y="981" width="0.3288%" height="15" fill="rgb(237,21,35)" fg:x="107744" fg:w="480"/><text x="74.0538%" y="991.50"></text></g><g><title>PyImport_ImportModuleLevelObject (21 samples, 0.01%)</title><rect x="74.1669%" y="629" width="0.0144%" height="15" fill="rgb(253,13,47)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="639.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (21 samples, 0.01%)</title><rect x="74.1669%" y="613" width="0.0144%" height="15" fill="rgb(215,122,49)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="623.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="74.1669%" y="597" width="0.0144%" height="15" fill="rgb(209,179,30)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (21 samples, 0.01%)</title><rect x="74.1669%" y="581" width="0.0144%" height="15" fill="rgb(235,100,24)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (21 samples, 0.01%)</title><rect x="74.1669%" y="565" width="0.0144%" height="15" fill="rgb(209,67,24)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (21 samples, 0.01%)</title><rect x="74.1669%" y="549" width="0.0144%" height="15" fill="rgb(206,74,32)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (21 samples, 0.01%)</title><rect x="74.1669%" y="533" width="0.0144%" height="15" fill="rgb(212,45,25)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (21 samples, 0.01%)</title><rect x="74.1669%" y="517" width="0.0144%" height="15" fill="rgb(239,26,3)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="527.50"></text></g><g><title>_PyEval_EvalFrameDefault (21 samples, 0.01%)</title><rect x="74.1669%" y="501" width="0.0144%" height="15" fill="rgb(218,36,15)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="511.50"></text></g><g><title>_PyFunction_Vectorcall (21 samples, 0.01%)</title><rect x="74.1669%" y="485" width="0.0144%" height="15" fill="rgb(206,108,24)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="495.50"></text></g><g><title>_PyEval_EvalFrameDefault (21 samples, 0.01%)</title><rect x="74.1669%" y="469" width="0.0144%" height="15" fill="rgb(234,204,42)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="479.50"></text></g><g><title>_PyFunction_Vectorcall (21 samples, 0.01%)</title><rect x="74.1669%" y="453" width="0.0144%" height="15" fill="rgb(229,2,11)" fg:x="108274" fg:w="21"/><text x="74.4169%" y="463.50"></text></g><g><title>PyImport_ImportModuleLevelObject (22 samples, 0.02%)</title><rect x="74.1669%" y="949" width="0.0151%" height="15" fill="rgb(221,20,48)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="959.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (22 samples, 0.02%)</title><rect x="74.1669%" y="933" width="0.0151%" height="15" fill="rgb(244,164,10)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="943.50"></text></g><g><title>[python3.9] (22 samples, 0.02%)</title><rect x="74.1669%" y="917" width="0.0151%" height="15" fill="rgb(243,229,2)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.02%)</title><rect x="74.1669%" y="901" width="0.0151%" height="15" fill="rgb(232,131,37)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.02%)</title><rect x="74.1669%" y="885" width="0.0151%" height="15" fill="rgb(217,156,11)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.02%)</title><rect x="74.1669%" y="869" width="0.0151%" height="15" fill="rgb(239,99,48)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.02%)</title><rect x="74.1669%" y="853" width="0.0151%" height="15" fill="rgb(231,209,9)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.02%)</title><rect x="74.1669%" y="837" width="0.0151%" height="15" fill="rgb(254,97,27)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.02%)</title><rect x="74.1669%" y="821" width="0.0151%" height="15" fill="rgb(223,151,38)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.02%)</title><rect x="74.1669%" y="805" width="0.0151%" height="15" fill="rgb(219,206,35)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.02%)</title><rect x="74.1669%" y="789" width="0.0151%" height="15" fill="rgb(216,130,31)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.02%)</title><rect x="74.1669%" y="773" width="0.0151%" height="15" fill="rgb(251,97,34)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="783.50"></text></g><g><title>[python3.9] (22 samples, 0.02%)</title><rect x="74.1669%" y="757" width="0.0151%" height="15" fill="rgb(246,159,47)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.02%)</title><rect x="74.1669%" y="741" width="0.0151%" height="15" fill="rgb(232,87,10)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="751.50"></text></g><g><title>[python3.9] (22 samples, 0.02%)</title><rect x="74.1669%" y="725" width="0.0151%" height="15" fill="rgb(249,1,37)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="735.50"></text></g><g><title>[python3.9] (22 samples, 0.02%)</title><rect x="74.1669%" y="709" width="0.0151%" height="15" fill="rgb(239,135,14)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="719.50"></text></g><g><title>PyEval_EvalCode (22 samples, 0.02%)</title><rect x="74.1669%" y="693" width="0.0151%" height="15" fill="rgb(253,116,46)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="703.50"></text></g><g><title>_PyEval_EvalCodeWithName (22 samples, 0.02%)</title><rect x="74.1669%" y="677" width="0.0151%" height="15" fill="rgb(222,217,37)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="687.50"></text></g><g><title>[python3.9] (22 samples, 0.02%)</title><rect x="74.1669%" y="661" width="0.0151%" height="15" fill="rgb(252,96,8)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.02%)</title><rect x="74.1669%" y="645" width="0.0151%" height="15" fill="rgb(254,103,41)" fg:x="108274" fg:w="22"/><text x="74.4169%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (15 samples, 0.01%)</title><rect x="74.2169%" y="933" width="0.0103%" height="15" fill="rgb(218,213,19)" fg:x="108347" fg:w="15"/><text x="74.4669%" y="943.50"></text></g><g><title>PyImport_ImportModuleLevelObject (17 samples, 0.01%)</title><rect x="74.2278%" y="661" width="0.0116%" height="15" fill="rgb(253,95,21)" fg:x="108363" fg:w="17"/><text x="74.4778%" y="671.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (17 samples, 0.01%)</title><rect x="74.2278%" y="645" width="0.0116%" height="15" fill="rgb(229,26,28)" fg:x="108363" fg:w="17"/><text x="74.4778%" y="655.50"></text></g><g><title>[python3.9] (17 samples, 0.01%)</title><rect x="74.2278%" y="629" width="0.0116%" height="15" fill="rgb(230,129,16)" fg:x="108363" fg:w="17"/><text x="74.4778%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="74.2278%" y="613" width="0.0116%" height="15" fill="rgb(236,126,17)" fg:x="108363" fg:w="17"/><text x="74.4778%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="74.2278%" y="597" width="0.0116%" height="15" fill="rgb(209,33,33)" fg:x="108363" fg:w="17"/><text x="74.4778%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="74.2278%" y="581" width="0.0116%" height="15" fill="rgb(227,85,29)" fg:x="108363" fg:w="17"/><text x="74.4778%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="74.2278%" y="565" width="0.0116%" height="15" fill="rgb(241,53,46)" fg:x="108363" fg:w="17"/><text x="74.4778%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="74.2278%" y="549" width="0.0116%" height="15" fill="rgb(228,167,53)" fg:x="108363" fg:w="17"/><text x="74.4778%" y="559.50"></text></g><g><title>[python3.9] (73 samples, 0.05%)</title><rect x="74.1936%" y="949" width="0.0500%" height="15" fill="rgb(238,195,45)" fg:x="108313" fg:w="73"/><text x="74.4436%" y="959.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="74.2272%" y="933" width="0.0164%" height="15" fill="rgb(252,124,45)" fg:x="108362" fg:w="24"/><text x="74.4772%" y="943.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="74.2278%" y="917" width="0.0158%" height="15" fill="rgb(251,38,35)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="74.2278%" y="901" width="0.0158%" height="15" fill="rgb(227,33,2)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="74.2278%" y="885" width="0.0158%" height="15" fill="rgb(223,157,46)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="74.2278%" y="869" width="0.0158%" height="15" fill="rgb(222,78,41)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="74.2278%" y="853" width="0.0158%" height="15" fill="rgb(248,176,11)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="74.2278%" y="837" width="0.0158%" height="15" fill="rgb(241,221,18)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="74.2278%" y="821" width="0.0158%" height="15" fill="rgb(218,85,22)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.02%)</title><rect x="74.2278%" y="805" width="0.0158%" height="15" fill="rgb(222,223,7)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="815.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="74.2278%" y="789" width="0.0158%" height="15" fill="rgb(254,59,39)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="74.2278%" y="773" width="0.0158%" height="15" fill="rgb(247,100,27)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="783.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="74.2278%" y="757" width="0.0158%" height="15" fill="rgb(237,207,10)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="767.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="74.2278%" y="741" width="0.0158%" height="15" fill="rgb(220,121,28)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="751.50"></text></g><g><title>PyEval_EvalCode (23 samples, 0.02%)</title><rect x="74.2278%" y="725" width="0.0158%" height="15" fill="rgb(213,223,20)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="735.50"></text></g><g><title>_PyEval_EvalCodeWithName (23 samples, 0.02%)</title><rect x="74.2278%" y="709" width="0.0158%" height="15" fill="rgb(205,121,27)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="719.50"></text></g><g><title>[python3.9] (23 samples, 0.02%)</title><rect x="74.2278%" y="693" width="0.0158%" height="15" fill="rgb(253,24,53)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.02%)</title><rect x="74.2278%" y="677" width="0.0158%" height="15" fill="rgb(224,224,47)" fg:x="108363" fg:w="23"/><text x="74.4778%" y="687.50"></text></g><g><title>PyImport_ImportModuleLevelObject (30 samples, 0.02%)</title><rect x="74.2525%" y="613" width="0.0205%" height="15" fill="rgb(250,125,36)" fg:x="108399" fg:w="30"/><text x="74.5025%" y="623.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (30 samples, 0.02%)</title><rect x="74.2525%" y="597" width="0.0205%" height="15" fill="rgb(240,144,38)" fg:x="108399" fg:w="30"/><text x="74.5025%" y="607.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="74.2525%" y="581" width="0.0205%" height="15" fill="rgb(250,15,50)" fg:x="108399" fg:w="30"/><text x="74.5025%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="74.2525%" y="565" width="0.0205%" height="15" fill="rgb(210,24,26)" fg:x="108399" fg:w="30"/><text x="74.5025%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="74.2525%" y="549" width="0.0205%" height="15" fill="rgb(234,53,53)" fg:x="108399" fg:w="30"/><text x="74.5025%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="74.2525%" y="533" width="0.0205%" height="15" fill="rgb(208,108,28)" fg:x="108399" fg:w="30"/><text x="74.5025%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="74.2525%" y="517" width="0.0205%" height="15" fill="rgb(227,143,7)" fg:x="108399" fg:w="30"/><text x="74.5025%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="74.2525%" y="501" width="0.0205%" height="15" fill="rgb(238,189,38)" fg:x="108399" fg:w="30"/><text x="74.5025%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="74.2559%" y="485" width="0.0171%" height="15" fill="rgb(222,69,15)" fg:x="108404" fg:w="25"/><text x="74.5059%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="74.2559%" y="469" width="0.0171%" height="15" fill="rgb(213,169,7)" fg:x="108404" fg:w="25"/><text x="74.5059%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="74.2559%" y="453" width="0.0171%" height="15" fill="rgb(251,219,4)" fg:x="108404" fg:w="25"/><text x="74.5059%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="74.2559%" y="437" width="0.0171%" height="15" fill="rgb(241,55,40)" fg:x="108404" fg:w="25"/><text x="74.5059%" y="447.50"></text></g><g><title>PyImport_ImportModuleLevelObject (38 samples, 0.03%)</title><rect x="74.2525%" y="933" width="0.0260%" height="15" fill="rgb(243,57,30)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="943.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (38 samples, 0.03%)</title><rect x="74.2525%" y="917" width="0.0260%" height="15" fill="rgb(234,50,30)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="927.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="74.2525%" y="901" width="0.0260%" height="15" fill="rgb(239,23,42)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="74.2525%" y="885" width="0.0260%" height="15" fill="rgb(217,38,19)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="74.2525%" y="869" width="0.0260%" height="15" fill="rgb(215,179,16)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="74.2525%" y="853" width="0.0260%" height="15" fill="rgb(254,21,37)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="74.2525%" y="837" width="0.0260%" height="15" fill="rgb(219,207,48)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="74.2525%" y="821" width="0.0260%" height="15" fill="rgb(227,225,41)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="74.2525%" y="805" width="0.0260%" height="15" fill="rgb(223,130,1)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="74.2525%" y="789" width="0.0260%" height="15" fill="rgb(249,54,42)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="74.2525%" y="773" width="0.0260%" height="15" fill="rgb(248,69,25)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.03%)</title><rect x="74.2525%" y="757" width="0.0260%" height="15" fill="rgb(234,21,32)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="767.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="74.2525%" y="741" width="0.0260%" height="15" fill="rgb(252,136,6)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="74.2525%" y="725" width="0.0260%" height="15" fill="rgb(245,87,12)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="735.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="74.2525%" y="709" width="0.0260%" height="15" fill="rgb(208,12,15)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="719.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="74.2525%" y="693" width="0.0260%" height="15" fill="rgb(250,98,2)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="703.50"></text></g><g><title>PyEval_EvalCode (38 samples, 0.03%)</title><rect x="74.2525%" y="677" width="0.0260%" height="15" fill="rgb(205,213,15)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="687.50"></text></g><g><title>_PyEval_EvalCodeWithName (38 samples, 0.03%)</title><rect x="74.2525%" y="661" width="0.0260%" height="15" fill="rgb(248,192,44)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="671.50"></text></g><g><title>[python3.9] (38 samples, 0.03%)</title><rect x="74.2525%" y="645" width="0.0260%" height="15" fill="rgb(221,89,17)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (38 samples, 0.03%)</title><rect x="74.2525%" y="629" width="0.0260%" height="15" fill="rgb(209,55,3)" fg:x="108399" fg:w="38"/><text x="74.5025%" y="639.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="74.2820%" y="933" width="0.0130%" height="15" fill="rgb(247,23,45)" fg:x="108442" fg:w="19"/><text x="74.5320%" y="943.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="74.2820%" y="917" width="0.0130%" height="15" fill="rgb(235,152,23)" fg:x="108442" fg:w="19"/><text x="74.5320%" y="927.50"></text></g><g><title>PyEval_EvalCode (19 samples, 0.01%)</title><rect x="74.2820%" y="901" width="0.0130%" height="15" fill="rgb(244,63,13)" fg:x="108442" fg:w="19"/><text x="74.5320%" y="911.50"></text></g><g><title>_PyEval_EvalCodeWithName (19 samples, 0.01%)</title><rect x="74.2820%" y="885" width="0.0130%" height="15" fill="rgb(227,30,37)" fg:x="108442" fg:w="19"/><text x="74.5320%" y="895.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="74.2820%" y="869" width="0.0130%" height="15" fill="rgb(224,49,42)" fg:x="108442" fg:w="19"/><text x="74.5320%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="74.2820%" y="853" width="0.0130%" height="15" fill="rgb(218,129,5)" fg:x="108442" fg:w="19"/><text x="74.5320%" y="863.50"></text></g><g><title>PyImport_ImportModuleLevelObject (19 samples, 0.01%)</title><rect x="74.2820%" y="837" width="0.0130%" height="15" fill="rgb(240,199,54)" fg:x="108442" fg:w="19"/><text x="74.5320%" y="847.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (19 samples, 0.01%)</title><rect x="74.2820%" y="821" width="0.0130%" height="15" fill="rgb(234,31,13)" fg:x="108442" fg:w="19"/><text x="74.5320%" y="831.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="74.2820%" y="805" width="0.0130%" height="15" fill="rgb(219,73,54)" fg:x="108442" fg:w="19"/><text x="74.5320%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (19 samples, 0.01%)</title><rect x="74.2820%" y="789" width="0.0130%" height="15" fill="rgb(251,162,10)" fg:x="108442" fg:w="19"/><text x="74.5320%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="74.2840%" y="773" width="0.0110%" height="15" fill="rgb(240,138,47)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="74.2840%" y="757" width="0.0110%" height="15" fill="rgb(216,138,26)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="74.2840%" y="741" width="0.0110%" height="15" fill="rgb(243,17,35)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="74.2840%" y="725" width="0.0110%" height="15" fill="rgb(241,60,18)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="74.2840%" y="709" width="0.0110%" height="15" fill="rgb(234,2,44)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="74.2840%" y="693" width="0.0110%" height="15" fill="rgb(225,225,33)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="74.2840%" y="677" width="0.0110%" height="15" fill="rgb(234,50,31)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="74.2840%" y="661" width="0.0110%" height="15" fill="rgb(249,6,25)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="671.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.2840%" y="645" width="0.0110%" height="15" fill="rgb(241,5,17)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="74.2840%" y="629" width="0.0110%" height="15" fill="rgb(207,116,10)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="639.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.2840%" y="613" width="0.0110%" height="15" fill="rgb(222,128,18)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="623.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.2840%" y="597" width="0.0110%" height="15" fill="rgb(229,109,25)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="607.50"></text></g><g><title>PyEval_EvalCode (16 samples, 0.01%)</title><rect x="74.2840%" y="581" width="0.0110%" height="15" fill="rgb(222,102,25)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="591.50"></text></g><g><title>_PyEval_EvalCodeWithName (16 samples, 0.01%)</title><rect x="74.2840%" y="565" width="0.0110%" height="15" fill="rgb(239,211,5)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="575.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.2840%" y="549" width="0.0110%" height="15" fill="rgb(223,136,26)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="74.2840%" y="533" width="0.0110%" height="15" fill="rgb(227,30,15)" fg:x="108445" fg:w="16"/><text x="74.5340%" y="543.50"></text></g><g><title>[python3.9] (15 samples, 0.01%)</title><rect x="74.2950%" y="917" width="0.0103%" height="15" fill="rgb(247,76,4)" fg:x="108461" fg:w="15"/><text x="74.5450%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (15 samples, 0.01%)</title><rect x="74.2950%" y="901" width="0.0103%" height="15" fill="rgb(245,38,48)" fg:x="108461" fg:w="15"/><text x="74.5450%" y="911.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="74.3155%" y="533" width="0.0130%" height="15" fill="rgb(210,220,14)" fg:x="108491" fg:w="19"/><text x="74.5655%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="74.3155%" y="517" width="0.0130%" height="15" fill="rgb(224,60,51)" fg:x="108491" fg:w="19"/><text x="74.5655%" y="527.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="74.3155%" y="501" width="0.0130%" height="15" fill="rgb(212,133,49)" fg:x="108491" fg:w="19"/><text x="74.5655%" y="511.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="74.3155%" y="485" width="0.0130%" height="15" fill="rgb(231,39,22)" fg:x="108491" fg:w="19"/><text x="74.5655%" y="495.50"></text></g><g><title>PyEval_EvalCode (19 samples, 0.01%)</title><rect x="74.3155%" y="469" width="0.0130%" height="15" fill="rgb(236,173,22)" fg:x="108491" fg:w="19"/><text x="74.5655%" y="479.50"></text></g><g><title>_PyEval_EvalCodeWithName (19 samples, 0.01%)</title><rect x="74.3155%" y="453" width="0.0130%" height="15" fill="rgb(210,70,0)" fg:x="108491" fg:w="19"/><text x="74.5655%" y="463.50"></text></g><g><title>[python3.9] (19 samples, 0.01%)</title><rect x="74.3155%" y="437" width="0.0130%" height="15" fill="rgb(215,170,11)" fg:x="108491" fg:w="19"/><text x="74.5655%" y="447.50"></text></g><g><title>_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="74.3155%" y="421" width="0.0130%" height="15" fill="rgb(220,154,28)" fg:x="108491" fg:w="19"/><text x="74.5655%" y="431.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="74.3128%" y="853" width="0.0178%" height="15" fill="rgb(240,160,41)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="74.3128%" y="837" width="0.0178%" height="15" fill="rgb(243,215,41)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="847.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="74.3128%" y="821" width="0.0178%" height="15" fill="rgb(214,208,31)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="831.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="74.3128%" y="805" width="0.0178%" height="15" fill="rgb(247,57,22)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="815.50"></text></g><g><title>PyEval_EvalCode (26 samples, 0.02%)</title><rect x="74.3128%" y="789" width="0.0178%" height="15" fill="rgb(228,73,52)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="799.50"></text></g><g><title>_PyEval_EvalCodeWithName (26 samples, 0.02%)</title><rect x="74.3128%" y="773" width="0.0178%" height="15" fill="rgb(252,60,9)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="783.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="74.3128%" y="757" width="0.0178%" height="15" fill="rgb(233,9,51)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="74.3128%" y="741" width="0.0178%" height="15" fill="rgb(223,67,14)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="751.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="74.3128%" y="725" width="0.0178%" height="15" fill="rgb(222,86,2)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="735.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="74.3128%" y="709" width="0.0178%" height="15" fill="rgb(243,58,54)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="719.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="74.3128%" y="693" width="0.0178%" height="15" fill="rgb(210,200,39)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="74.3128%" y="677" width="0.0178%" height="15" fill="rgb(238,135,9)" fg:x="108487" fg:w="26"/><text x="74.5628%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="74.3142%" y="661" width="0.0164%" height="15" fill="rgb(232,179,7)" fg:x="108489" fg:w="24"/><text x="74.5642%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="74.3142%" y="645" width="0.0164%" height="15" fill="rgb(245,65,41)" fg:x="108489" fg:w="24"/><text x="74.5642%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="74.3142%" y="629" width="0.0164%" height="15" fill="rgb(227,43,8)" fg:x="108489" fg:w="24"/><text x="74.5642%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="74.3142%" y="613" width="0.0164%" height="15" fill="rgb(235,91,14)" fg:x="108489" fg:w="24"/><text x="74.5642%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.02%)</title><rect x="74.3155%" y="597" width="0.0151%" height="15" fill="rgb(235,219,31)" fg:x="108491" fg:w="22"/><text x="74.5655%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.02%)</title><rect x="74.3155%" y="581" width="0.0151%" height="15" fill="rgb(227,121,25)" fg:x="108491" fg:w="22"/><text x="74.5655%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.02%)</title><rect x="74.3155%" y="565" width="0.0151%" height="15" fill="rgb(254,129,24)" fg:x="108491" fg:w="22"/><text x="74.5655%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.02%)</title><rect x="74.3155%" y="549" width="0.0151%" height="15" fill="rgb(226,144,49)" fg:x="108491" fg:w="22"/><text x="74.5655%" y="559.50"></text></g><g><title>PyObject_Call (21 samples, 0.01%)</title><rect x="74.3347%" y="261" width="0.0144%" height="15" fill="rgb(214,187,32)" fg:x="108519" fg:w="21"/><text x="74.5847%" y="271.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="74.3347%" y="245" width="0.0144%" height="15" fill="rgb(243,129,46)" fg:x="108519" fg:w="21"/><text x="74.5847%" y="255.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="74.3347%" y="229" width="0.0144%" height="15" fill="rgb(221,185,35)" fg:x="108519" fg:w="21"/><text x="74.5847%" y="239.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="74.3347%" y="213" width="0.0144%" height="15" fill="rgb(205,0,32)" fg:x="108519" fg:w="21"/><text x="74.5847%" y="223.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="74.3368%" y="197" width="0.0123%" height="15" fill="rgb(229,179,12)" fg:x="108522" fg:w="18"/><text x="74.5868%" y="207.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="74.3340%" y="357" width="0.0178%" height="15" fill="rgb(252,107,19)" fg:x="108518" fg:w="26"/><text x="74.5840%" y="367.50"></text></g><g><title>_PyObject_MakeTpCall (26 samples, 0.02%)</title><rect x="74.3340%" y="341" width="0.0178%" height="15" fill="rgb(220,95,27)" fg:x="108518" fg:w="26"/><text x="74.5840%" y="351.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="74.3340%" y="325" width="0.0178%" height="15" fill="rgb(240,113,40)" fg:x="108518" fg:w="26"/><text x="74.5840%" y="335.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="74.3347%" y="309" width="0.0171%" height="15" fill="rgb(208,4,43)" fg:x="108519" fg:w="25"/><text x="74.5847%" y="319.50"></text></g><g><title>[python3.9] (25 samples, 0.02%)</title><rect x="74.3347%" y="293" width="0.0171%" height="15" fill="rgb(247,189,30)" fg:x="108519" fg:w="25"/><text x="74.5847%" y="303.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="74.3347%" y="277" width="0.0171%" height="15" fill="rgb(231,157,17)" fg:x="108519" fg:w="25"/><text x="74.5847%" y="287.50"></text></g><g><title>PyImport_ImportModuleLevelObject (32 samples, 0.02%)</title><rect x="74.3306%" y="693" width="0.0219%" height="15" fill="rgb(224,139,6)" fg:x="108513" fg:w="32"/><text x="74.5806%" y="703.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (32 samples, 0.02%)</title><rect x="74.3306%" y="677" width="0.0219%" height="15" fill="rgb(223,83,16)" fg:x="108513" fg:w="32"/><text x="74.5806%" y="687.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="74.3306%" y="661" width="0.0219%" height="15" fill="rgb(232,211,20)" fg:x="108513" fg:w="32"/><text x="74.5806%" y="671.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.02%)</title><rect x="74.3306%" y="645" width="0.0219%" height="15" fill="rgb(225,203,35)" fg:x="108513" fg:w="32"/><text x="74.5806%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="74.3313%" y="629" width="0.0212%" height="15" fill="rgb(215,211,44)" fg:x="108514" fg:w="31"/><text x="74.5813%" y="639.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="74.3313%" y="613" width="0.0212%" height="15" fill="rgb(248,213,26)" fg:x="108514" fg:w="31"/><text x="74.5813%" y="623.50"></text></g><g><title>_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="74.3313%" y="597" width="0.0212%" height="15" fill="rgb(214,23,52)" fg:x="108514" fg:w="31"/><text x="74.5813%" y="607.50"></text></g><g><title>_PyFunction_Vectorcall (31 samples, 0.02%)</title><rect x="74.3313%" y="581" width="0.0212%" height="15" fill="rgb(225,173,50)" fg:x="108514" fg:w="31"/><text x="74.5813%" y="591.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="74.3320%" y="565" width="0.0205%" height="15" fill="rgb(206,150,22)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="575.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="74.3320%" y="549" width="0.0205%" height="15" fill="rgb(239,64,23)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="74.3320%" y="533" width="0.0205%" height="15" fill="rgb(242,50,38)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.02%)</title><rect x="74.3320%" y="517" width="0.0205%" height="15" fill="rgb(217,91,15)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="527.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="74.3320%" y="501" width="0.0205%" height="15" fill="rgb(230,172,6)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="74.3320%" y="485" width="0.0205%" height="15" fill="rgb(221,98,26)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="495.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="74.3320%" y="469" width="0.0205%" height="15" fill="rgb(227,210,45)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="479.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="74.3320%" y="453" width="0.0205%" height="15" fill="rgb(206,8,30)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="463.50"></text></g><g><title>PyEval_EvalCode (30 samples, 0.02%)</title><rect x="74.3320%" y="437" width="0.0205%" height="15" fill="rgb(241,219,17)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="447.50"></text></g><g><title>_PyEval_EvalCodeWithName (30 samples, 0.02%)</title><rect x="74.3320%" y="421" width="0.0205%" height="15" fill="rgb(247,121,29)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="431.50"></text></g><g><title>[python3.9] (30 samples, 0.02%)</title><rect x="74.3320%" y="405" width="0.0205%" height="15" fill="rgb(219,169,49)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="415.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.02%)</title><rect x="74.3320%" y="389" width="0.0205%" height="15" fill="rgb(253,49,49)" fg:x="108515" fg:w="30"/><text x="74.5820%" y="399.50"></text></g><g><title>[python3.9] (27 samples, 0.02%)</title><rect x="74.3340%" y="373" width="0.0185%" height="15" fill="rgb(217,178,3)" fg:x="108518" fg:w="27"/><text x="74.5840%" y="383.50"></text></g><g><title>_PyFunction_Vectorcall (88 samples, 0.06%)</title><rect x="74.2950%" y="933" width="0.0603%" height="15" fill="rgb(234,73,37)" fg:x="108461" fg:w="88"/><text x="74.5450%" y="943.50"></text></g><g><title>_PyEval_EvalFrameDefault (73 samples, 0.05%)</title><rect x="74.3052%" y="917" width="0.0500%" height="15" fill="rgb(250,98,22)" fg:x="108476" fg:w="73"/><text x="74.5552%" y="927.50"></text></g><g><title>_PyFunction_Vectorcall (73 samples, 0.05%)</title><rect x="74.3052%" y="901" width="0.0500%" height="15" fill="rgb(220,108,37)" fg:x="108476" fg:w="73"/><text x="74.5552%" y="911.50"></text></g><g><title>_PyEval_EvalFrameDefault (62 samples, 0.04%)</title><rect x="74.3128%" y="885" width="0.0425%" height="15" fill="rgb(225,168,10)" fg:x="108487" fg:w="62"/><text x="74.5628%" y="895.50"></text></g><g><title>_PyFunction_Vectorcall (62 samples, 0.04%)</title><rect x="74.3128%" y="869" width="0.0425%" height="15" fill="rgb(247,215,21)" fg:x="108487" fg:w="62"/><text x="74.5628%" y="879.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="74.3306%" y="853" width="0.0247%" height="15" fill="rgb(253,189,31)" fg:x="108513" fg:w="36"/><text x="74.5806%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (36 samples, 0.02%)</title><rect x="74.3306%" y="837" width="0.0247%" height="15" fill="rgb(241,54,22)" fg:x="108513" fg:w="36"/><text x="74.5806%" y="847.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="74.3306%" y="821" width="0.0247%" height="15" fill="rgb(211,87,4)" fg:x="108513" fg:w="36"/><text x="74.5806%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="74.3306%" y="805" width="0.0247%" height="15" fill="rgb(245,112,24)" fg:x="108513" fg:w="36"/><text x="74.5806%" y="815.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="74.3306%" y="789" width="0.0247%" height="15" fill="rgb(235,190,41)" fg:x="108513" fg:w="36"/><text x="74.5806%" y="799.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="74.3306%" y="773" width="0.0247%" height="15" fill="rgb(214,89,8)" fg:x="108513" fg:w="36"/><text x="74.5806%" y="783.50"></text></g><g><title>PyEval_EvalCode (36 samples, 0.02%)</title><rect x="74.3306%" y="757" width="0.0247%" height="15" fill="rgb(249,155,35)" fg:x="108513" fg:w="36"/><text x="74.5806%" y="767.50"></text></g><g><title>_PyEval_EvalCodeWithName (36 samples, 0.02%)</title><rect x="74.3306%" y="741" width="0.0247%" height="15" fill="rgb(249,88,26)" fg:x="108513" fg:w="36"/><text x="74.5806%" y="751.50"></text></g><g><title>[python3.9] (36 samples, 0.02%)</title><rect x="74.3306%" y="725" width="0.0247%" height="15" fill="rgb(232,56,8)" fg:x="108513" fg:w="36"/><text x="74.5806%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (36 samples, 0.02%)</title><rect x="74.3306%" y="709" width="0.0247%" height="15" fill="rgb(240,95,3)" fg:x="108513" fg:w="36"/><text x="74.5806%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (152 samples, 0.10%)</title><rect x="74.2518%" y="949" width="0.1041%" height="15" fill="rgb(222,44,28)" fg:x="108398" fg:w="152"/><text x="74.5018%" y="959.50"></text></g><g><title>_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="74.3559%" y="949" width="0.0185%" height="15" fill="rgb(234,16,30)" fg:x="108550" fg:w="27"/><text x="74.6059%" y="959.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="74.3607%" y="933" width="0.0137%" height="15" fill="rgb(223,26,17)" fg:x="108557" fg:w="20"/><text x="74.6107%" y="943.50"></text></g><g><title>_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="74.3607%" y="917" width="0.0137%" height="15" fill="rgb(239,187,47)" fg:x="108557" fg:w="20"/><text x="74.6107%" y="927.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.3806%" y="421" width="0.0110%" height="15" fill="rgb(247,102,50)" fg:x="108586" fg:w="16"/><text x="74.6306%" y="431.50"></text></g><g><title>_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="74.3806%" y="405" width="0.0110%" height="15" fill="rgb(231,216,22)" fg:x="108586" fg:w="16"/><text x="74.6306%" y="415.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.3806%" y="389" width="0.0110%" height="15" fill="rgb(216,201,26)" fg:x="108586" fg:w="16"/><text x="74.6306%" y="399.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.3806%" y="373" width="0.0110%" height="15" fill="rgb(214,186,23)" fg:x="108586" fg:w="16"/><text x="74.6306%" y="383.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.3806%" y="357" width="0.0110%" height="15" fill="rgb(235,184,4)" fg:x="108586" fg:w="16"/><text x="74.6306%" y="367.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.3806%" y="341" width="0.0110%" height="15" fill="rgb(244,46,17)" fg:x="108586" fg:w="16"/><text x="74.6306%" y="351.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.3806%" y="325" width="0.0110%" height="15" fill="rgb(248,74,46)" fg:x="108586" fg:w="16"/><text x="74.6306%" y="335.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.3806%" y="309" width="0.0110%" height="15" fill="rgb(243,79,5)" fg:x="108586" fg:w="16"/><text x="74.6306%" y="319.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.3806%" y="293" width="0.0110%" height="15" fill="rgb(213,148,1)" fg:x="108586" fg:w="16"/><text x="74.6306%" y="303.50"></text></g><g><title>PyImport_ImportModuleLevelObject (26 samples, 0.02%)</title><rect x="74.3744%" y="645" width="0.0178%" height="15" fill="rgb(221,30,0)" fg:x="108577" fg:w="26"/><text x="74.6244%" y="655.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (26 samples, 0.02%)</title><rect x="74.3744%" y="629" width="0.0178%" height="15" fill="rgb(207,85,29)" fg:x="108577" fg:w="26"/><text x="74.6244%" y="639.50"></text></g><g><title>[python3.9] (26 samples, 0.02%)</title><rect x="74.3744%" y="613" width="0.0178%" height="15" fill="rgb(239,31,46)" fg:x="108577" fg:w="26"/><text x="74.6244%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="74.3744%" y="597" width="0.0178%" height="15" fill="rgb(219,6,1)" fg:x="108577" fg:w="26"/><text x="74.6244%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="74.3751%" y="581" width="0.0171%" height="15" fill="rgb(229,90,29)" fg:x="108578" fg:w="25"/><text x="74.6251%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="74.3751%" y="565" width="0.0171%" height="15" fill="rgb(242,201,42)" fg:x="108578" fg:w="25"/><text x="74.6251%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.02%)</title><rect x="74.3751%" y="549" width="0.0171%" height="15" fill="rgb(243,80,54)" fg:x="108578" fg:w="25"/><text x="74.6251%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.02%)</title><rect x="74.3751%" y="533" width="0.0171%" height="15" fill="rgb(223,166,15)" fg:x="108578" fg:w="25"/><text x="74.6251%" y="543.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="74.3758%" y="517" width="0.0164%" height="15" fill="rgb(238,78,27)" fg:x="108579" fg:w="24"/><text x="74.6258%" y="527.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="74.3758%" y="501" width="0.0164%" height="15" fill="rgb(235,28,43)" fg:x="108579" fg:w="24"/><text x="74.6258%" y="511.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="74.3758%" y="485" width="0.0164%" height="15" fill="rgb(240,210,28)" fg:x="108579" fg:w="24"/><text x="74.6258%" y="495.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="74.3758%" y="469" width="0.0164%" height="15" fill="rgb(253,6,46)" fg:x="108579" fg:w="24"/><text x="74.6258%" y="479.50"></text></g><g><title>_PyEval_EvalFrameDefault (17 samples, 0.01%)</title><rect x="74.3806%" y="453" width="0.0116%" height="15" fill="rgb(250,159,47)" fg:x="108586" fg:w="17"/><text x="74.6306%" y="463.50"></text></g><g><title>_PyFunction_Vectorcall (17 samples, 0.01%)</title><rect x="74.3806%" y="437" width="0.0116%" height="15" fill="rgb(216,139,2)" fg:x="108586" fg:w="17"/><text x="74.6306%" y="447.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (32 samples, 0.02%)</title><rect x="74.3744%" y="949" width="0.0219%" height="15" fill="rgb(221,124,44)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="959.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="74.3744%" y="933" width="0.0219%" height="15" fill="rgb(205,37,22)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="943.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.02%)</title><rect x="74.3744%" y="917" width="0.0219%" height="15" fill="rgb(250,55,8)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="74.3744%" y="901" width="0.0219%" height="15" fill="rgb(215,83,48)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.02%)</title><rect x="74.3744%" y="885" width="0.0219%" height="15" fill="rgb(253,2,32)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="74.3744%" y="869" width="0.0219%" height="15" fill="rgb(236,67,28)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.02%)</title><rect x="74.3744%" y="853" width="0.0219%" height="15" fill="rgb(252,55,15)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="74.3744%" y="837" width="0.0219%" height="15" fill="rgb(243,173,17)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.02%)</title><rect x="74.3744%" y="821" width="0.0219%" height="15" fill="rgb(215,212,13)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="74.3744%" y="805" width="0.0219%" height="15" fill="rgb(253,176,6)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (32 samples, 0.02%)</title><rect x="74.3744%" y="789" width="0.0219%" height="15" fill="rgb(236,105,26)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="799.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="74.3744%" y="773" width="0.0219%" height="15" fill="rgb(239,226,32)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="74.3744%" y="757" width="0.0219%" height="15" fill="rgb(236,104,51)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="767.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="74.3744%" y="741" width="0.0219%" height="15" fill="rgb(220,172,33)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="751.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="74.3744%" y="725" width="0.0219%" height="15" fill="rgb(224,182,25)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="735.50"></text></g><g><title>PyEval_EvalCode (32 samples, 0.02%)</title><rect x="74.3744%" y="709" width="0.0219%" height="15" fill="rgb(236,184,24)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="719.50"></text></g><g><title>_PyEval_EvalCodeWithName (32 samples, 0.02%)</title><rect x="74.3744%" y="693" width="0.0219%" height="15" fill="rgb(241,221,14)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="703.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="74.3744%" y="677" width="0.0219%" height="15" fill="rgb(227,146,5)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (32 samples, 0.02%)</title><rect x="74.3744%" y="661" width="0.0219%" height="15" fill="rgb(214,15,23)" fg:x="108577" fg:w="32"/><text x="74.6244%" y="671.50"></text></g><g><title>[unknown] (355 samples, 0.24%)</title><rect x="74.1587%" y="965" width="0.2432%" height="15" fill="rgb(233,157,31)" fg:x="108262" fg:w="355"/><text x="74.4087%" y="975.50"></text></g><g><title>PyImport_ImportModuleLevelObject (19 samples, 0.01%)</title><rect x="74.4018%" y="773" width="0.0130%" height="15" fill="rgb(211,27,52)" fg:x="108617" fg:w="19"/><text x="74.6518%" y="783.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (18 samples, 0.01%)</title><rect x="74.4025%" y="757" width="0.0123%" height="15" fill="rgb(212,223,15)" fg:x="108618" fg:w="18"/><text x="74.6525%" y="767.50"></text></g><g><title>[python3.9] (18 samples, 0.01%)</title><rect x="74.4025%" y="741" width="0.0123%" height="15" fill="rgb(254,211,0)" fg:x="108618" fg:w="18"/><text x="74.6525%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="74.4025%" y="725" width="0.0123%" height="15" fill="rgb(205,43,38)" fg:x="108618" fg:w="18"/><text x="74.6525%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="74.4025%" y="709" width="0.0123%" height="15" fill="rgb(242,206,46)" fg:x="108618" fg:w="18"/><text x="74.6525%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="74.4025%" y="693" width="0.0123%" height="15" fill="rgb(220,221,12)" fg:x="108618" fg:w="18"/><text x="74.6525%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (18 samples, 0.01%)</title><rect x="74.4025%" y="677" width="0.0123%" height="15" fill="rgb(217,156,35)" fg:x="108618" fg:w="18"/><text x="74.6525%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (18 samples, 0.01%)</title><rect x="74.4025%" y="661" width="0.0123%" height="15" fill="rgb(207,181,49)" fg:x="108618" fg:w="18"/><text x="74.6525%" y="671.50"></text></g><g><title>PyRun_SimpleStringFlags (20 samples, 0.01%)</title><rect x="74.4018%" y="901" width="0.0137%" height="15" fill="rgb(235,103,47)" fg:x="108617" fg:w="20"/><text x="74.6518%" y="911.50"></text></g><g><title>PyRun_StringFlags (20 samples, 0.01%)</title><rect x="74.4018%" y="885" width="0.0137%" height="15" fill="rgb(222,63,28)" fg:x="108617" fg:w="20"/><text x="74.6518%" y="895.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="74.4018%" y="869" width="0.0137%" height="15" fill="rgb(244,137,21)" fg:x="108617" fg:w="20"/><text x="74.6518%" y="879.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="74.4018%" y="853" width="0.0137%" height="15" fill="rgb(228,35,27)" fg:x="108617" fg:w="20"/><text x="74.6518%" y="863.50"></text></g><g><title>PyEval_EvalCode (20 samples, 0.01%)</title><rect x="74.4018%" y="837" width="0.0137%" height="15" fill="rgb(226,191,41)" fg:x="108617" fg:w="20"/><text x="74.6518%" y="847.50"></text></g><g><title>_PyEval_EvalCodeWithName (20 samples, 0.01%)</title><rect x="74.4018%" y="821" width="0.0137%" height="15" fill="rgb(210,154,3)" fg:x="108617" fg:w="20"/><text x="74.6518%" y="831.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="74.4018%" y="805" width="0.0137%" height="15" fill="rgb(216,60,49)" fg:x="108617" fg:w="20"/><text x="74.6518%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="74.4018%" y="789" width="0.0137%" height="15" fill="rgb(226,17,20)" fg:x="108617" fg:w="20"/><text x="74.6518%" y="799.50"></text></g><g><title>PyGC_Collect (21 samples, 0.01%)</title><rect x="74.4155%" y="885" width="0.0144%" height="15" fill="rgb(206,115,35)" fg:x="108637" fg:w="21"/><text x="74.6655%" y="895.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="74.4155%" y="869" width="0.0144%" height="15" fill="rgb(227,88,1)" fg:x="108637" fg:w="21"/><text x="74.6655%" y="879.50"></text></g><g><title>[python3.9] (21 samples, 0.01%)</title><rect x="74.4155%" y="853" width="0.0144%" height="15" fill="rgb(230,222,24)" fg:x="108637" fg:w="21"/><text x="74.6655%" y="863.50"></text></g><g><title>[python3.9] (16 samples, 0.01%)</title><rect x="74.4190%" y="837" width="0.0110%" height="15" fill="rgb(214,124,32)" fg:x="108642" fg:w="16"/><text x="74.6690%" y="847.50"></text></g><g><title>_PyGC_CollectNoFail (24 samples, 0.02%)</title><rect x="74.4333%" y="869" width="0.0164%" height="15" fill="rgb(240,41,36)" fg:x="108663" fg:w="24"/><text x="74.6833%" y="879.50"></text></g><g><title>[python3.9] (24 samples, 0.02%)</title><rect x="74.4333%" y="853" width="0.0164%" height="15" fill="rgb(221,17,52)" fg:x="108663" fg:w="24"/><text x="74.6833%" y="863.50"></text></g><g><title>[python3.9] (20 samples, 0.01%)</title><rect x="74.4361%" y="837" width="0.0137%" height="15" fill="rgb(252,70,16)" fg:x="108667" fg:w="20"/><text x="74.6861%" y="847.50"></text></g><g><title>[python3.9] (32 samples, 0.02%)</title><rect x="74.4306%" y="885" width="0.0219%" height="15" fill="rgb(250,177,4)" fg:x="108659" fg:w="32"/><text x="74.6806%" y="895.50"></text></g><g><title>Py_RunMain (86 samples, 0.06%)</title><rect x="74.4018%" y="917" width="0.0589%" height="15" fill="rgb(240,188,47)" fg:x="108617" fg:w="86"/><text x="74.6518%" y="927.50"></text></g><g><title>Py_FinalizeEx (66 samples, 0.05%)</title><rect x="74.4155%" y="901" width="0.0452%" height="15" fill="rgb(215,92,12)" fg:x="108637" fg:w="66"/><text x="74.6655%" y="911.50"></text></g><g><title>PyObject_CallFunction (28 samples, 0.02%)</title><rect x="74.4648%" y="805" width="0.0192%" height="15" fill="rgb(242,110,29)" fg:x="108709" fg:w="28"/><text x="74.7148%" y="815.50"></text></g><g><title>_PyObject_MakeTpCall (28 samples, 0.02%)</title><rect x="74.4648%" y="789" width="0.0192%" height="15" fill="rgb(208,211,26)" fg:x="108709" fg:w="28"/><text x="74.7148%" y="799.50"></text></g><g><title>[python3.9] (28 samples, 0.02%)</title><rect x="74.4648%" y="773" width="0.0192%" height="15" fill="rgb(244,147,6)" fg:x="108709" fg:w="28"/><text x="74.7148%" y="783.50"></text></g><g><title>[python3.9] (28 samples, 0.02%)</title><rect x="74.4648%" y="757" width="0.0192%" height="15" fill="rgb(211,130,42)" fg:x="108709" fg:w="28"/><text x="74.7148%" y="767.50"></text></g><g><title>PyImport_ImportModuleLevelObject (28 samples, 0.02%)</title><rect x="74.4648%" y="741" width="0.0192%" height="15" fill="rgb(220,63,1)" fg:x="108709" fg:w="28"/><text x="74.7148%" y="751.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (28 samples, 0.02%)</title><rect x="74.4648%" y="725" width="0.0192%" height="15" fill="rgb(241,212,30)" fg:x="108709" fg:w="28"/><text x="74.7148%" y="735.50"></text></g><g><title>[python3.9] (28 samples, 0.02%)</title><rect x="74.4648%" y="709" width="0.0192%" height="15" fill="rgb(233,153,17)" fg:x="108709" fg:w="28"/><text x="74.7148%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.02%)</title><rect x="74.4648%" y="693" width="0.0192%" height="15" fill="rgb(236,3,10)" fg:x="108709" fg:w="28"/><text x="74.7148%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.02%)</title><rect x="74.4648%" y="677" width="0.0192%" height="15" fill="rgb(232,41,21)" fg:x="108709" fg:w="28"/><text x="74.7148%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="74.4662%" y="661" width="0.0178%" height="15" fill="rgb(206,63,51)" fg:x="108711" fg:w="26"/><text x="74.7162%" y="671.50"></text></g><g><title>_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="74.4662%" y="645" width="0.0178%" height="15" fill="rgb(250,214,3)" fg:x="108711" fg:w="26"/><text x="74.7162%" y="655.50"></text></g><g><title>_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="74.4662%" y="629" width="0.0178%" height="15" fill="rgb(254,89,27)" fg:x="108711" fg:w="26"/><text x="74.7162%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="74.4676%" y="613" width="0.0164%" height="15" fill="rgb(249,41,14)" fg:x="108713" fg:w="24"/><text x="74.7176%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (24 samples, 0.02%)</title><rect x="74.4676%" y="597" width="0.0164%" height="15" fill="rgb(221,196,51)" fg:x="108713" fg:w="24"/><text x="74.7176%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (24 samples, 0.02%)</title><rect x="74.4676%" y="581" width="0.0164%" height="15" fill="rgb(214,116,26)" fg:x="108713" fg:w="24"/><text x="74.7176%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="74.4731%" y="565" width="0.0110%" height="15" fill="rgb(236,67,7)" fg:x="108721" fg:w="16"/><text x="74.7231%" y="575.50"></text></g><g><title>PyImport_ImportModule (29 samples, 0.02%)</title><rect x="74.4648%" y="837" width="0.0199%" height="15" fill="rgb(253,179,32)" fg:x="108709" fg:w="29"/><text x="74.7148%" y="847.50"></text></g><g><title>PyImport_Import (29 samples, 0.02%)</title><rect x="74.4648%" y="821" width="0.0199%" height="15" fill="rgb(218,33,15)" fg:x="108709" fg:w="29"/><text x="74.7148%" y="831.50"></text></g><g><title>PyObject_CallMethod (22 samples, 0.02%)</title><rect x="74.4854%" y="837" width="0.0151%" height="15" fill="rgb(217,202,41)" fg:x="108739" fg:w="22"/><text x="74.7354%" y="847.50"></text></g><g><title>[python3.9] (22 samples, 0.02%)</title><rect x="74.4854%" y="821" width="0.0151%" height="15" fill="rgb(234,133,5)" fg:x="108739" fg:w="22"/><text x="74.7354%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (22 samples, 0.02%)</title><rect x="74.4854%" y="805" width="0.0151%" height="15" fill="rgb(240,47,40)" fg:x="108739" fg:w="22"/><text x="74.7354%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (22 samples, 0.02%)</title><rect x="74.4854%" y="789" width="0.0151%" height="15" fill="rgb(234,166,26)" fg:x="108739" fg:w="22"/><text x="74.7354%" y="799.50"></text></g><g><title>Py_InitializeFromConfig (84 samples, 0.06%)</title><rect x="74.4607%" y="885" width="0.0575%" height="15" fill="rgb(244,125,51)" fg:x="108703" fg:w="84"/><text x="74.7107%" y="895.50"></text></g><g><title>[python3.9] (84 samples, 0.06%)</title><rect x="74.4607%" y="869" width="0.0575%" height="15" fill="rgb(229,171,11)" fg:x="108703" fg:w="84"/><text x="74.7107%" y="879.50"></text></g><g><title>[python3.9] (83 samples, 0.06%)</title><rect x="74.4614%" y="853" width="0.0569%" height="15" fill="rgb(224,38,45)" fg:x="108704" fg:w="83"/><text x="74.7114%" y="863.50"></text></g><g><title>__libc_start_main (171 samples, 0.12%)</title><rect x="74.4018%" y="949" width="0.1171%" height="15" fill="rgb(237,27,7)" fg:x="108617" fg:w="171"/><text x="74.6518%" y="959.50"></text></g><g><title>Py_BytesMain (171 samples, 0.12%)</title><rect x="74.4018%" y="933" width="0.1171%" height="15" fill="rgb(216,52,7)" fg:x="108617" fg:w="171"/><text x="74.6518%" y="943.50"></text></g><g><title>[python3.9] (85 samples, 0.06%)</title><rect x="74.4607%" y="917" width="0.0582%" height="15" fill="rgb(243,11,11)" fg:x="108703" fg:w="85"/><text x="74.7107%" y="927.50"></text></g><g><title>[python3.9] (85 samples, 0.06%)</title><rect x="74.4607%" y="901" width="0.0582%" height="15" fill="rgb(253,167,20)" fg:x="108703" fg:w="85"/><text x="74.7107%" y="911.50"></text></g><g><title>_start (176 samples, 0.12%)</title><rect x="74.4018%" y="965" width="0.1206%" height="15" fill="rgb(215,207,5)" fg:x="108617" fg:w="176"/><text x="74.6518%" y="975.50"></text></g><g><title>python3 (579 samples, 0.40%)</title><rect x="74.1347%" y="981" width="0.3966%" height="15" fill="rgb(252,127,31)" fg:x="108227" fg:w="579"/><text x="74.3847%" y="991.50"></text></g><g><title>_dl_map_object_deps (19 samples, 0.01%)</title><rect x="74.5484%" y="885" width="0.0130%" height="15" fill="rgb(209,106,27)" fg:x="108831" fg:w="19"/><text x="74.7984%" y="895.50"></text></g><g><title>_dl_catch_exception (18 samples, 0.01%)</title><rect x="74.5491%" y="869" width="0.0123%" height="15" fill="rgb(214,220,18)" fg:x="108832" fg:w="18"/><text x="74.7991%" y="879.50"></text></g><g><title>openaux (18 samples, 0.01%)</title><rect x="74.5491%" y="853" width="0.0123%" height="15" fill="rgb(237,89,12)" fg:x="108832" fg:w="18"/><text x="74.7991%" y="863.50"></text></g><g><title>_dl_map_object (18 samples, 0.01%)</title><rect x="74.5491%" y="837" width="0.0123%" height="15" fill="rgb(209,167,36)" fg:x="108832" fg:w="18"/><text x="74.7991%" y="847.50"></text></g><g><title>[ld-2.31.so] (31 samples, 0.02%)</title><rect x="74.5477%" y="901" width="0.0212%" height="15" fill="rgb(243,45,22)" fg:x="108830" fg:w="31"/><text x="74.7977%" y="911.50"></text></g><g><title>_dl_start_final (34 samples, 0.02%)</title><rect x="74.5470%" y="933" width="0.0233%" height="15" fill="rgb(239,2,46)" fg:x="108829" fg:w="34"/><text x="74.7970%" y="943.50"></text></g><g><title>_dl_sysdep_start (34 samples, 0.02%)</title><rect x="74.5470%" y="917" width="0.0233%" height="15" fill="rgb(241,101,0)" fg:x="108829" fg:w="34"/><text x="74.7970%" y="927.50"></text></g><g><title>_dl_start (35 samples, 0.02%)</title><rect x="74.5470%" y="949" width="0.0240%" height="15" fill="rgb(244,34,31)" fg:x="108829" fg:w="35"/><text x="74.7970%" y="959.50"></text></g><g><title>_start (36 samples, 0.02%)</title><rect x="74.5470%" y="965" width="0.0247%" height="15" fill="rgb(248,23,22)" fg:x="108829" fg:w="36"/><text x="74.7970%" y="975.50"></text></g><g><title>sed (72 samples, 0.05%)</title><rect x="74.5313%" y="981" width="0.0493%" height="15" fill="rgb(218,27,48)" fg:x="108806" fg:w="72"/><text x="74.7813%" y="991.50"></text></g><g><title>[anon] (312 samples, 0.21%)</title><rect x="74.5902%" y="965" width="0.2137%" height="15" fill="rgb(232,78,1)" fg:x="108892" fg:w="312"/><text x="74.8402%" y="975.50"></text></g><g><title>lookup_fast (16 samples, 0.01%)</title><rect x="74.8409%" y="805" width="0.0110%" height="15" fill="rgb(233,169,12)" fg:x="109258" fg:w="16"/><text x="75.0909%" y="815.50"></text></g><g><title>link_path_walk.part.0 (29 samples, 0.02%)</title><rect x="74.8334%" y="837" width="0.0199%" height="15" fill="rgb(225,222,54)" fg:x="109247" fg:w="29"/><text x="75.0834%" y="847.50"></text></g><g><title>walk_component (20 samples, 0.01%)</title><rect x="74.8395%" y="821" width="0.0137%" height="15" fill="rgb(245,126,29)" fg:x="109256" fg:w="20"/><text x="75.0895%" y="831.50"></text></g><g><title>path_lookupat (45 samples, 0.03%)</title><rect x="74.8320%" y="853" width="0.0308%" height="15" fill="rgb(241,63,48)" fg:x="109245" fg:w="45"/><text x="75.0820%" y="863.50"></text></g><g><title>filename_lookup (51 samples, 0.03%)</title><rect x="74.8286%" y="869" width="0.0349%" height="15" fill="rgb(235,126,38)" fg:x="109240" fg:w="51"/><text x="75.0786%" y="879.50"></text></g><g><title>__do_sys_newlstat (79 samples, 0.05%)</title><rect x="74.8252%" y="901" width="0.0541%" height="15" fill="rgb(232,96,49)" fg:x="109235" fg:w="79"/><text x="75.0752%" y="911.50"></text></g><g><title>vfs_statx (76 samples, 0.05%)</title><rect x="74.8272%" y="885" width="0.0521%" height="15" fill="rgb(211,146,40)" fg:x="109238" fg:w="76"/><text x="75.0772%" y="895.50"></text></g><g><title>user_path_at_empty (19 samples, 0.01%)</title><rect x="74.8663%" y="869" width="0.0130%" height="15" fill="rgb(247,93,44)" fg:x="109295" fg:w="19"/><text x="75.1163%" y="879.50"></text></g><g><title>getname_flags.part.0 (18 samples, 0.01%)</title><rect x="74.8669%" y="853" width="0.0123%" height="15" fill="rgb(251,41,49)" fg:x="109296" fg:w="18"/><text x="75.1169%" y="863.50"></text></g><g><title>do_syscall_64 (80 samples, 0.05%)</title><rect x="74.8252%" y="917" width="0.0548%" height="15" fill="rgb(218,155,12)" fg:x="109235" fg:w="80"/><text x="75.0752%" y="927.50"></text></g><g><title>__GI___lxstat (84 samples, 0.06%)</title><rect x="74.8245%" y="949" width="0.0575%" height="15" fill="rgb(221,161,30)" fg:x="109234" fg:w="84"/><text x="75.0745%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.06%)</title><rect x="74.8252%" y="933" width="0.0569%" height="15" fill="rgb(221,179,11)" fg:x="109235" fg:w="83"/><text x="75.0752%" y="943.50"></text></g><g><title>__GI___mkdir (15 samples, 0.01%)</title><rect x="74.8820%" y="949" width="0.0103%" height="15" fill="rgb(224,170,48)" fg:x="109318" fg:w="15"/><text x="75.1320%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="74.8820%" y="933" width="0.0103%" height="15" fill="rgb(223,117,5)" fg:x="109318" fg:w="15"/><text x="75.1320%" y="943.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="74.8820%" y="917" width="0.0103%" height="15" fill="rgb(209,52,20)" fg:x="109318" fg:w="15"/><text x="75.1320%" y="927.50"></text></g><g><title>do_mkdirat (15 samples, 0.01%)</title><rect x="74.8820%" y="901" width="0.0103%" height="15" fill="rgb(209,19,41)" fg:x="109318" fg:w="15"/><text x="75.1320%" y="911.50"></text></g><g><title>btrfs_search_slot (16 samples, 0.01%)</title><rect x="74.8991%" y="837" width="0.0110%" height="15" fill="rgb(210,177,12)" fg:x="109343" fg:w="16"/><text x="75.1491%" y="847.50"></text></g><g><title>btrfs_real_readdir (32 samples, 0.02%)</title><rect x="74.8937%" y="853" width="0.0219%" height="15" fill="rgb(211,159,37)" fg:x="109335" fg:w="32"/><text x="75.1437%" y="863.50"></text></g><g><title>__GI___readdir64 (37 samples, 0.03%)</title><rect x="74.8923%" y="949" width="0.0253%" height="15" fill="rgb(209,20,2)" fg:x="109333" fg:w="37"/><text x="75.1423%" y="959.50"></text></g><g><title>__GI___getdents64 (37 samples, 0.03%)</title><rect x="74.8923%" y="933" width="0.0253%" height="15" fill="rgb(244,3,46)" fg:x="109333" fg:w="37"/><text x="75.1423%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.03%)</title><rect x="74.8923%" y="917" width="0.0253%" height="15" fill="rgb(220,94,38)" fg:x="109333" fg:w="37"/><text x="75.1423%" y="927.50"></text></g><g><title>do_syscall_64 (37 samples, 0.03%)</title><rect x="74.8923%" y="901" width="0.0253%" height="15" fill="rgb(253,14,31)" fg:x="109333" fg:w="37"/><text x="75.1423%" y="911.50"></text></g><g><title>__x64_sys_getdents64 (36 samples, 0.02%)</title><rect x="74.8930%" y="885" width="0.0247%" height="15" fill="rgb(234,176,13)" fg:x="109334" fg:w="36"/><text x="75.1430%" y="895.50"></text></g><g><title>iterate_dir (36 samples, 0.02%)</title><rect x="74.8930%" y="869" width="0.0247%" height="15" fill="rgb(218,62,25)" fg:x="109334" fg:w="36"/><text x="75.1430%" y="879.50"></text></g><g><title>path_lookupat (16 samples, 0.01%)</title><rect x="74.9204%" y="853" width="0.0110%" height="15" fill="rgb(216,124,40)" fg:x="109374" fg:w="16"/><text x="75.1704%" y="863.50"></text></g><g><title>filename_lookup (17 samples, 0.01%)</title><rect x="74.9204%" y="869" width="0.0116%" height="15" fill="rgb(228,170,12)" fg:x="109374" fg:w="17"/><text x="75.1704%" y="879.50"></text></g><g><title>__GI___xstat (28 samples, 0.02%)</title><rect x="74.9190%" y="949" width="0.0192%" height="15" fill="rgb(231,226,5)" fg:x="109372" fg:w="28"/><text x="75.1690%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.02%)</title><rect x="74.9190%" y="933" width="0.0192%" height="15" fill="rgb(237,122,22)" fg:x="109372" fg:w="28"/><text x="75.1690%" y="943.50"></text></g><g><title>do_syscall_64 (28 samples, 0.02%)</title><rect x="74.9190%" y="917" width="0.0192%" height="15" fill="rgb(209,185,25)" fg:x="109372" fg:w="28"/><text x="75.1690%" y="927.50"></text></g><g><title>__do_sys_newstat (28 samples, 0.02%)</title><rect x="74.9190%" y="901" width="0.0192%" height="15" fill="rgb(228,200,32)" fg:x="109372" fg:w="28"/><text x="75.1690%" y="911.50"></text></g><g><title>vfs_statx (28 samples, 0.02%)</title><rect x="74.9190%" y="885" width="0.0192%" height="15" fill="rgb(217,140,10)" fg:x="109372" fg:w="28"/><text x="75.1690%" y="895.50"></text></g><g><title>__GI_remove (52 samples, 0.04%)</title><rect x="74.9382%" y="949" width="0.0356%" height="15" fill="rgb(253,17,24)" fg:x="109400" fg:w="52"/><text x="75.1882%" y="959.50"></text></g><g><title>__unlink (38 samples, 0.03%)</title><rect x="74.9478%" y="933" width="0.0260%" height="15" fill="rgb(212,61,6)" fg:x="109414" fg:w="38"/><text x="75.1978%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.03%)</title><rect x="74.9485%" y="917" width="0.0253%" height="15" fill="rgb(205,14,25)" fg:x="109415" fg:w="37"/><text x="75.1985%" y="927.50"></text></g><g><title>do_syscall_64 (37 samples, 0.03%)</title><rect x="74.9485%" y="901" width="0.0253%" height="15" fill="rgb(232,69,41)" fg:x="109415" fg:w="37"/><text x="75.1985%" y="911.50"></text></g><g><title>do_unlinkat (33 samples, 0.02%)</title><rect x="74.9512%" y="885" width="0.0226%" height="15" fill="rgb(241,106,47)" fg:x="109419" fg:w="33"/><text x="75.2012%" y="895.50"></text></g><g><title>do_rmdir (17 samples, 0.01%)</title><rect x="74.9738%" y="901" width="0.0116%" height="15" fill="rgb(210,213,53)" fg:x="109452" fg:w="17"/><text x="75.2238%" y="911.50"></text></g><g><title>vfs_rmdir.part.0 (16 samples, 0.01%)</title><rect x="74.9745%" y="885" width="0.0110%" height="15" fill="rgb(253,175,27)" fg:x="109453" fg:w="16"/><text x="75.2245%" y="895.50"></text></g><g><title>__GI_unlinkat (26 samples, 0.02%)</title><rect x="74.9738%" y="949" width="0.0178%" height="15" fill="rgb(211,171,24)" fg:x="109452" fg:w="26"/><text x="75.2238%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (26 samples, 0.02%)</title><rect x="74.9738%" y="933" width="0.0178%" height="15" fill="rgb(229,80,7)" fg:x="109452" fg:w="26"/><text x="75.2238%" y="943.50"></text></g><g><title>do_syscall_64 (26 samples, 0.02%)</title><rect x="74.9738%" y="917" width="0.0178%" height="15" fill="rgb(212,46,39)" fg:x="109452" fg:w="26"/><text x="75.2238%" y="927.50"></text></g><g><title>__libc_open64 (20 samples, 0.01%)</title><rect x="75.0005%" y="949" width="0.0137%" height="15" fill="rgb(240,80,45)" fg:x="109491" fg:w="20"/><text x="75.2505%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.01%)</title><rect x="75.0005%" y="933" width="0.0137%" height="15" fill="rgb(253,177,40)" fg:x="109491" fg:w="20"/><text x="75.2505%" y="943.50"></text></g><g><title>do_syscall_64 (20 samples, 0.01%)</title><rect x="75.0005%" y="917" width="0.0137%" height="15" fill="rgb(249,200,15)" fg:x="109491" fg:w="20"/><text x="75.2505%" y="927.50"></text></g><g><title>__x64_sys_openat (20 samples, 0.01%)</title><rect x="75.0005%" y="901" width="0.0137%" height="15" fill="rgb(217,78,26)" fg:x="109491" fg:w="20"/><text x="75.2505%" y="911.50"></text></g><g><title>do_sys_openat2 (20 samples, 0.01%)</title><rect x="75.0005%" y="885" width="0.0137%" height="15" fill="rgb(254,151,32)" fg:x="109491" fg:w="20"/><text x="75.2505%" y="895.50"></text></g><g><title>do_filp_open (19 samples, 0.01%)</title><rect x="75.0012%" y="869" width="0.0130%" height="15" fill="rgb(226,165,27)" fg:x="109492" fg:w="19"/><text x="75.2512%" y="879.50"></text></g><g><title>path_openat (19 samples, 0.01%)</title><rect x="75.0012%" y="853" width="0.0130%" height="15" fill="rgb(250,206,4)" fg:x="109492" fg:w="19"/><text x="75.2512%" y="863.50"></text></g><g><title>do_filp_open (22 samples, 0.02%)</title><rect x="75.0259%" y="853" width="0.0151%" height="15" fill="rgb(231,229,27)" fg:x="109528" fg:w="22"/><text x="75.2759%" y="863.50"></text></g><g><title>path_openat (22 samples, 0.02%)</title><rect x="75.0259%" y="837" width="0.0151%" height="15" fill="rgb(239,217,8)" fg:x="109528" fg:w="22"/><text x="75.2759%" y="847.50"></text></g><g><title>__opendir (27 samples, 0.02%)</title><rect x="75.0245%" y="949" width="0.0185%" height="15" fill="rgb(225,204,27)" fg:x="109526" fg:w="27"/><text x="75.2745%" y="959.50"></text></g><g><title>__GI___open64_nocancel (27 samples, 0.02%)</title><rect x="75.0245%" y="933" width="0.0185%" height="15" fill="rgb(230,56,32)" fg:x="109526" fg:w="27"/><text x="75.2745%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.02%)</title><rect x="75.0245%" y="917" width="0.0185%" height="15" fill="rgb(222,56,27)" fg:x="109526" fg:w="27"/><text x="75.2745%" y="927.50"></text></g><g><title>do_syscall_64 (27 samples, 0.02%)</title><rect x="75.0245%" y="901" width="0.0185%" height="15" fill="rgb(253,108,27)" fg:x="109526" fg:w="27"/><text x="75.2745%" y="911.50"></text></g><g><title>__x64_sys_openat (27 samples, 0.02%)</title><rect x="75.0245%" y="885" width="0.0185%" height="15" fill="rgb(212,87,36)" fg:x="109526" fg:w="27"/><text x="75.2745%" y="895.50"></text></g><g><title>do_sys_openat2 (27 samples, 0.02%)</title><rect x="75.0245%" y="869" width="0.0185%" height="15" fill="rgb(247,82,36)" fg:x="109526" fg:w="27"/><text x="75.2745%" y="879.50"></text></g><g><title>jni_NewObjectV (35 samples, 0.02%)</title><rect x="75.0581%" y="949" width="0.0240%" height="15" fill="rgb(222,143,9)" fg:x="109575" fg:w="35"/><text x="75.3081%" y="959.50"></text></g><g><title>jni_invoke_nonstatic (19 samples, 0.01%)</title><rect x="75.0690%" y="933" width="0.0130%" height="15" fill="rgb(238,162,48)" fg:x="109591" fg:w="19"/><text x="75.3190%" y="943.50"></text></g><g><title>[libunix_jni.so] (439 samples, 0.30%)</title><rect x="74.8039%" y="965" width="0.3007%" height="15" fill="rgb(221,59,43)" fg:x="109204" fg:w="439"/><text x="75.0539%" y="975.50"></text></g><g><title>ConstantPool::klass_at_impl (23 samples, 0.02%)</title><rect x="95.5003%" y="933" width="0.0158%" height="15" fill="rgb(205,166,41)" fg:x="139418" fg:w="23"/><text x="95.7503%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_fail (23 samples, 0.02%)</title><rect x="95.5003%" y="917" width="0.0158%" height="15" fill="rgb(241,186,40)" fg:x="139418" fg:w="23"/><text x="95.7503%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (23 samples, 0.02%)</title><rect x="95.5003%" y="901" width="0.0158%" height="15" fill="rgb(216,119,35)" fg:x="139418" fg:w="23"/><text x="95.7503%" y="911.50"></text></g><g><title>SystemDictionary::load_instance_class (17 samples, 0.01%)</title><rect x="95.5044%" y="885" width="0.0116%" height="15" fill="rgb(208,68,38)" fg:x="139424" fg:w="17"/><text x="95.7544%" y="895.50"></text></g><g><title>InstanceKlass::link_methods (15 samples, 0.01%)</title><rect x="95.5270%" y="901" width="0.0103%" height="15" fill="rgb(217,113,1)" fg:x="139457" fg:w="15"/><text x="95.7770%" y="911.50"></text></g><g><title>Method::link_method (15 samples, 0.01%)</title><rect x="95.5270%" y="885" width="0.0103%" height="15" fill="rgb(242,153,3)" fg:x="139457" fg:w="15"/><text x="95.7770%" y="895.50"></text></g><g><title>Rewriter::rewrite (29 samples, 0.02%)</title><rect x="95.5455%" y="901" width="0.0199%" height="15" fill="rgb(229,76,35)" fg:x="139484" fg:w="29"/><text x="95.7955%" y="911.50"></text></g><g><title>Rewriter::Rewriter (29 samples, 0.02%)</title><rect x="95.5455%" y="885" width="0.0199%" height="15" fill="rgb(229,125,34)" fg:x="139484" fg:w="29"/><text x="95.7955%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (82 samples, 0.06%)</title><rect x="95.5215%" y="917" width="0.0562%" height="15" fill="rgb(238,179,36)" fg:x="139449" fg:w="82"/><text x="95.7715%" y="927.50"></text></g><g><title>InstanceKlass::initialize_impl (88 samples, 0.06%)</title><rect x="95.5188%" y="933" width="0.0603%" height="15" fill="rgb(244,183,19)" fg:x="139445" fg:w="88"/><text x="95.7688%" y="943.50"></text></g><g><title>InterpreterRuntime::_new (116 samples, 0.08%)</title><rect x="95.5003%" y="949" width="0.0795%" height="15" fill="rgb(216,85,49)" fg:x="139418" fg:w="116"/><text x="95.7503%" y="959.50"></text></g><g><title>ObjArrayAllocator::initialize (18 samples, 0.01%)</title><rect x="95.6222%" y="885" width="0.0123%" height="15" fill="rgb(208,161,47)" fg:x="139596" fg:w="18"/><text x="95.8722%" y="895.50"></text></g><g><title>CollectedHeap::array_allocate (38 samples, 0.03%)</title><rect x="95.6126%" y="917" width="0.0260%" height="15" fill="rgb(233,210,18)" fg:x="139582" fg:w="38"/><text x="95.8626%" y="927.50"></text></g><g><title>MemAllocator::allocate (38 samples, 0.03%)</title><rect x="95.6126%" y="901" width="0.0260%" height="15" fill="rgb(205,104,42)" fg:x="139582" fg:w="38"/><text x="95.8626%" y="911.50"></text></g><g><title>InstanceKlass::allocate_objArray (69 samples, 0.05%)</title><rect x="95.6010%" y="933" width="0.0473%" height="15" fill="rgb(248,90,43)" fg:x="139565" fg:w="69"/><text x="95.8510%" y="943.50"></text></g><g><title>InterpreterRuntime::anewarray (103 samples, 0.07%)</title><rect x="95.5797%" y="949" width="0.0706%" height="15" fill="rgb(206,198,11)" fg:x="139534" fg:w="103"/><text x="95.8297%" y="959.50"></text></g><g><title>Monitor::lock_without_safepoint_check (15 samples, 0.01%)</title><rect x="95.6503%" y="917" width="0.0103%" height="15" fill="rgb(239,165,27)" fg:x="139637" fg:w="15"/><text x="95.9003%" y="927.50"></text></g><g><title>Monitor::ILock (15 samples, 0.01%)</title><rect x="95.6503%" y="901" width="0.0103%" height="15" fill="rgb(246,44,32)" fg:x="139637" fg:w="15"/><text x="95.9003%" y="911.50"></text></g><g><title>InterpreterRuntime::at_safepoint (16 samples, 0.01%)</title><rect x="95.6503%" y="949" width="0.0110%" height="15" fill="rgb(252,65,42)" fg:x="139637" fg:w="16"/><text x="95.9003%" y="959.50"></text></g><g><title>SafepointSynchronize::block (16 samples, 0.01%)</title><rect x="95.6503%" y="933" width="0.0110%" height="15" fill="rgb(246,197,18)" fg:x="139637" fg:w="16"/><text x="95.9003%" y="943.50"></text></g><g><title>MethodData::allocate (24 samples, 0.02%)</title><rect x="95.7113%" y="869" width="0.0164%" height="15" fill="rgb(216,192,4)" fg:x="139726" fg:w="24"/><text x="95.9613%" y="879.50"></text></g><g><title>Method::build_interpreter_method_data (34 samples, 0.02%)</title><rect x="95.7113%" y="885" width="0.0233%" height="15" fill="rgb(208,117,10)" fg:x="139726" fg:w="34"/><text x="95.9613%" y="895.50"></text></g><g><title>TieredThresholdPolicy::call_event (42 samples, 0.03%)</title><rect x="95.7352%" y="885" width="0.0288%" height="15" fill="rgb(240,61,47)" fg:x="139761" fg:w="42"/><text x="95.9852%" y="895.50"></text></g><g><title>do_syscall_64 (18 samples, 0.01%)</title><rect x="95.7750%" y="709" width="0.0123%" height="15" fill="rgb(228,178,21)" fg:x="139819" fg:w="18"/><text x="96.0250%" y="719.50"></text></g><g><title>__x64_sys_futex (17 samples, 0.01%)</title><rect x="95.7757%" y="693" width="0.0116%" height="15" fill="rgb(219,96,54)" fg:x="139820" fg:w="17"/><text x="96.0257%" y="703.50"></text></g><g><title>do_futex (17 samples, 0.01%)</title><rect x="95.7757%" y="677" width="0.0116%" height="15" fill="rgb(250,177,24)" fg:x="139820" fg:w="17"/><text x="96.0257%" y="687.50"></text></g><g><title>futex_wait (17 samples, 0.01%)</title><rect x="95.7757%" y="661" width="0.0116%" height="15" fill="rgb(242,154,46)" fg:x="139820" fg:w="17"/><text x="96.0257%" y="671.50"></text></g><g><title>futex_wait_queue_me (17 samples, 0.01%)</title><rect x="95.7757%" y="645" width="0.0116%" height="15" fill="rgb(226,176,29)" fg:x="139820" fg:w="17"/><text x="96.0257%" y="655.50"></text></g><g><title>schedule (15 samples, 0.01%)</title><rect x="95.7770%" y="629" width="0.0103%" height="15" fill="rgb(226,29,2)" fg:x="139822" fg:w="15"/><text x="96.0270%" y="639.50"></text></g><g><title>__schedule (15 samples, 0.01%)</title><rect x="95.7770%" y="613" width="0.0103%" height="15" fill="rgb(237,104,14)" fg:x="139822" fg:w="15"/><text x="96.0270%" y="623.50"></text></g><g><title>Monitor::ILock (20 samples, 0.01%)</title><rect x="95.7743%" y="805" width="0.0137%" height="15" fill="rgb(245,207,31)" fg:x="139818" fg:w="20"/><text x="96.0243%" y="815.50"></text></g><g><title>os::PlatformEvent::park (19 samples, 0.01%)</title><rect x="95.7750%" y="789" width="0.0130%" height="15" fill="rgb(229,211,45)" fg:x="139819" fg:w="19"/><text x="96.0250%" y="799.50"></text></g><g><title>__pthread_cond_wait (19 samples, 0.01%)</title><rect x="95.7750%" y="773" width="0.0130%" height="15" fill="rgb(229,113,15)" fg:x="139819" fg:w="19"/><text x="96.0250%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (19 samples, 0.01%)</title><rect x="95.7750%" y="757" width="0.0130%" height="15" fill="rgb(237,147,15)" fg:x="139819" fg:w="19"/><text x="96.0250%" y="767.50"></text></g><g><title>futex_wait_cancelable (19 samples, 0.01%)</title><rect x="95.7750%" y="741" width="0.0130%" height="15" fill="rgb(244,120,12)" fg:x="139819" fg:w="19"/><text x="96.0250%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.01%)</title><rect x="95.7750%" y="725" width="0.0130%" height="15" fill="rgb(205,120,12)" fg:x="139819" fg:w="19"/><text x="96.0250%" y="735.50"></text></g><g><title>Monitor::lock (23 samples, 0.02%)</title><rect x="95.7729%" y="821" width="0.0158%" height="15" fill="rgb(231,26,45)" fg:x="139816" fg:w="23"/><text x="96.0229%" y="831.50"></text></g><g><title>CompileBroker::compile_method_base (38 samples, 0.03%)</title><rect x="95.7688%" y="837" width="0.0260%" height="15" fill="rgb(246,98,1)" fg:x="139810" fg:w="38"/><text x="96.0188%" y="847.50"></text></g><g><title>CompileBroker::compile_method (47 samples, 0.03%)</title><rect x="95.7661%" y="853" width="0.0322%" height="15" fill="rgb(207,68,45)" fg:x="139806" fg:w="47"/><text x="96.0161%" y="863.50"></text></g><g><title>TieredThresholdPolicy::event (155 samples, 0.11%)</title><rect x="95.6941%" y="917" width="0.1062%" height="15" fill="rgb(231,27,38)" fg:x="139701" fg:w="155"/><text x="95.9441%" y="927.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (142 samples, 0.10%)</title><rect x="95.7030%" y="901" width="0.0973%" height="15" fill="rgb(214,223,3)" fg:x="139714" fg:w="142"/><text x="95.9530%" y="911.50"></text></g><g><title>TieredThresholdPolicy::compile (53 samples, 0.04%)</title><rect x="95.7640%" y="885" width="0.0363%" height="15" fill="rgb(228,195,46)" fg:x="139803" fg:w="53"/><text x="96.0140%" y="895.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (50 samples, 0.03%)</title><rect x="95.7661%" y="869" width="0.0342%" height="15" fill="rgb(231,100,42)" fg:x="139806" fg:w="50"/><text x="96.0161%" y="879.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (190 samples, 0.13%)</title><rect x="95.6708%" y="949" width="0.1301%" height="15" fill="rgb(236,53,4)" fg:x="139667" fg:w="190"/><text x="95.9208%" y="959.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (189 samples, 0.13%)</title><rect x="95.6715%" y="933" width="0.1295%" height="15" fill="rgb(230,152,12)" fg:x="139668" fg:w="189"/><text x="95.9215%" y="943.50"></text></g><g><title>JavaThread::pd_last_frame (24 samples, 0.02%)</title><rect x="95.8195%" y="933" width="0.0164%" height="15" fill="rgb(226,101,19)" fg:x="139884" fg:w="24"/><text x="96.0695%" y="943.50"></text></g><g><title>CodeCache::find_blob (23 samples, 0.02%)</title><rect x="95.8202%" y="917" width="0.0158%" height="15" fill="rgb(250,149,32)" fg:x="139885" fg:w="23"/><text x="96.0702%" y="927.50"></text></g><g><title>InterpreterRuntime::ldc (54 samples, 0.04%)</title><rect x="95.8010%" y="949" width="0.0370%" height="15" fill="rgb(232,178,12)" fg:x="139857" fg:w="54"/><text x="96.0510%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="95.8428%" y="789" width="0.0110%" height="15" fill="rgb(246,151,17)" fg:x="139918" fg:w="16"/><text x="96.0928%" y="799.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="95.8428%" y="773" width="0.0110%" height="15" fill="rgb(252,17,51)" fg:x="139918" fg:w="16"/><text x="96.0928%" y="783.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="95.8428%" y="757" width="0.0110%" height="15" fill="rgb(250,207,23)" fg:x="139918" fg:w="16"/><text x="96.0928%" y="767.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="95.8428%" y="741" width="0.0110%" height="15" fill="rgb(205,27,5)" fg:x="139918" fg:w="16"/><text x="96.0928%" y="751.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="95.8428%" y="725" width="0.0110%" height="15" fill="rgb(224,32,19)" fg:x="139918" fg:w="16"/><text x="96.0928%" y="735.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="95.8428%" y="709" width="0.0110%" height="15" fill="rgb(247,214,40)" fg:x="139918" fg:w="16"/><text x="96.0928%" y="719.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="95.8428%" y="693" width="0.0110%" height="15" fill="rgb(239,199,17)" fg:x="139918" fg:w="16"/><text x="96.0928%" y="703.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="95.8428%" y="677" width="0.0110%" height="15" fill="rgb(251,159,9)" fg:x="139918" fg:w="16"/><text x="96.0928%" y="687.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="95.8428%" y="837" width="0.0116%" height="15" fill="rgb(225,78,32)" fg:x="139918" fg:w="17"/><text x="96.0928%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="95.8428%" y="821" width="0.0116%" height="15" fill="rgb(206,97,47)" fg:x="139918" fg:w="17"/><text x="96.0928%" y="831.50"></text></g><g><title>futex_wait_cancelable (17 samples, 0.01%)</title><rect x="95.8428%" y="805" width="0.0116%" height="15" fill="rgb(227,107,4)" fg:x="139918" fg:w="17"/><text x="96.0928%" y="815.50"></text></g><g><title>Monitor::wait (19 samples, 0.01%)</title><rect x="95.8421%" y="885" width="0.0130%" height="15" fill="rgb(241,146,50)" fg:x="139917" fg:w="19"/><text x="96.0921%" y="895.50"></text></g><g><title>Monitor::IWait (19 samples, 0.01%)</title><rect x="95.8421%" y="869" width="0.0130%" height="15" fill="rgb(232,92,30)" fg:x="139917" fg:w="19"/><text x="96.0921%" y="879.50"></text></g><g><title>os::PlatformEvent::park (18 samples, 0.01%)</title><rect x="95.8428%" y="853" width="0.0123%" height="15" fill="rgb(222,0,40)" fg:x="139918" fg:w="18"/><text x="96.0928%" y="863.50"></text></g><g><title>InterpreterRuntime::monitorenter (26 samples, 0.02%)</title><rect x="95.8380%" y="949" width="0.0178%" height="15" fill="rgb(219,54,33)" fg:x="139911" fg:w="26"/><text x="96.0880%" y="959.50"></text></g><g><title>ObjectSynchronizer::fast_enter (20 samples, 0.01%)</title><rect x="95.8421%" y="933" width="0.0137%" height="15" fill="rgb(226,209,28)" fg:x="139917" fg:w="20"/><text x="96.0921%" y="943.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (20 samples, 0.01%)</title><rect x="95.8421%" y="917" width="0.0137%" height="15" fill="rgb(254,205,35)" fg:x="139917" fg:w="20"/><text x="96.0921%" y="927.50"></text></g><g><title>VMThread::execute (20 samples, 0.01%)</title><rect x="95.8421%" y="901" width="0.0137%" height="15" fill="rgb(230,159,3)" fg:x="139917" fg:w="20"/><text x="96.0921%" y="911.50"></text></g><g><title>InterpreterRuntime::newarray (18 samples, 0.01%)</title><rect x="95.8565%" y="949" width="0.0123%" height="15" fill="rgb(232,190,24)" fg:x="139938" fg:w="18"/><text x="96.1065%" y="959.50"></text></g><g><title>LinkResolver::resolve_field_access (29 samples, 0.02%)</title><rect x="95.8853%" y="917" width="0.0199%" height="15" fill="rgb(217,227,44)" fg:x="139980" fg:w="29"/><text x="96.1353%" y="927.50"></text></g><g><title>LinkResolver::resolve_field (19 samples, 0.01%)</title><rect x="95.8921%" y="901" width="0.0130%" height="15" fill="rgb(236,211,1)" fg:x="139990" fg:w="19"/><text x="96.1421%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (40 samples, 0.03%)</title><rect x="95.8791%" y="933" width="0.0274%" height="15" fill="rgb(250,127,46)" fg:x="139971" fg:w="40"/><text x="96.1291%" y="943.50"></text></g><g><title>ConstantPoolCacheEntry::set_direct_call (21 samples, 0.01%)</title><rect x="95.9106%" y="917" width="0.0144%" height="15" fill="rgb(229,213,6)" fg:x="140017" fg:w="21"/><text x="96.1606%" y="927.50"></text></g><g><title>Method::result_type (19 samples, 0.01%)</title><rect x="95.9120%" y="901" width="0.0130%" height="15" fill="rgb(237,15,36)" fg:x="140019" fg:w="19"/><text x="96.1620%" y="911.50"></text></g><g><title>SignatureIterator::iterate_returntype (19 samples, 0.01%)</title><rect x="95.9120%" y="885" width="0.0130%" height="15" fill="rgb(213,131,41)" fg:x="140019" fg:w="19"/><text x="96.1620%" y="895.50"></text></g><g><title>ConstantPool::klass_ref_at (22 samples, 0.02%)</title><rect x="95.9380%" y="901" width="0.0151%" height="15" fill="rgb(225,82,44)" fg:x="140057" fg:w="22"/><text x="96.1880%" y="911.50"></text></g><g><title>SystemDictionary::resolve_or_fail (20 samples, 0.01%)</title><rect x="95.9394%" y="885" width="0.0137%" height="15" fill="rgb(249,42,11)" fg:x="140059" fg:w="20"/><text x="96.1894%" y="895.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (19 samples, 0.01%)</title><rect x="95.9400%" y="869" width="0.0130%" height="15" fill="rgb(253,11,29)" fg:x="140060" fg:w="19"/><text x="96.1900%" y="879.50"></text></g><g><title>LinkResolver::linktime_resolve_special_method (16 samples, 0.01%)</title><rect x="95.9531%" y="901" width="0.0110%" height="15" fill="rgb(206,8,54)" fg:x="140079" fg:w="16"/><text x="96.2031%" y="911.50"></text></g><g><title>LinkResolver::resolve_interface_method (18 samples, 0.01%)</title><rect x="95.9709%" y="885" width="0.0123%" height="15" fill="rgb(222,186,2)" fg:x="140105" fg:w="18"/><text x="96.2209%" y="895.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (42 samples, 0.03%)</title><rect x="95.9640%" y="901" width="0.0288%" height="15" fill="rgb(221,206,53)" fg:x="140095" fg:w="42"/><text x="96.2140%" y="911.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (29 samples, 0.02%)</title><rect x="95.9990%" y="885" width="0.0199%" height="15" fill="rgb(230,150,21)" fg:x="140146" fg:w="29"/><text x="96.2490%" y="895.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (41 samples, 0.03%)</title><rect x="95.9928%" y="901" width="0.0281%" height="15" fill="rgb(253,202,10)" fg:x="140137" fg:w="41"/><text x="96.2428%" y="911.50"></text></g><g><title>Rewriter::rewrite (15 samples, 0.01%)</title><rect x="96.0353%" y="853" width="0.0103%" height="15" fill="rgb(238,109,40)" fg:x="140199" fg:w="15"/><text x="96.2853%" y="863.50"></text></g><g><title>Rewriter::Rewriter (15 samples, 0.01%)</title><rect x="96.0353%" y="837" width="0.0103%" height="15" fill="rgb(247,120,22)" fg:x="140199" fg:w="15"/><text x="96.2853%" y="847.50"></text></g><g><title>InstanceKlass::link_class_impl (39 samples, 0.03%)</title><rect x="96.0236%" y="869" width="0.0267%" height="15" fill="rgb(207,43,30)" fg:x="140182" fg:w="39"/><text x="96.2736%" y="879.50"></text></g><g><title>InstanceKlass::initialize_impl (50 samples, 0.03%)</title><rect x="96.0222%" y="885" width="0.0342%" height="15" fill="rgb(213,211,24)" fg:x="140180" fg:w="50"/><text x="96.2722%" y="895.50"></text></g><g><title>LinkResolver::resolve_static_call (70 samples, 0.05%)</title><rect x="96.0209%" y="901" width="0.0479%" height="15" fill="rgb(239,73,39)" fg:x="140178" fg:w="70"/><text x="96.2709%" y="911.50"></text></g><g><title>LinkResolver::resolve_method (18 samples, 0.01%)</title><rect x="96.0565%" y="885" width="0.0123%" height="15" fill="rgb(245,182,19)" fg:x="140230" fg:w="18"/><text x="96.3065%" y="895.50"></text></g><g><title>LinkResolver::resolve_invoke (201 samples, 0.14%)</title><rect x="95.9353%" y="917" width="0.1377%" height="15" fill="rgb(247,143,26)" fg:x="140053" fg:w="201"/><text x="96.1853%" y="927.50"></text></g><g><title>frame::interpreter_callee_receiver_addr (17 samples, 0.01%)</title><rect x="96.0750%" y="917" width="0.0116%" height="15" fill="rgb(228,191,23)" fg:x="140257" fg:w="17"/><text x="96.3250%" y="927.50"></text></g><g><title>SignatureIterator::iterate_parameters (17 samples, 0.01%)</title><rect x="96.0750%" y="901" width="0.0116%" height="15" fill="rgb(253,165,31)" fg:x="140257" fg:w="17"/><text x="96.3250%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (266 samples, 0.18%)</title><rect x="95.9065%" y="933" width="0.1822%" height="15" fill="rgb(234,138,20)" fg:x="140011" fg:w="266"/><text x="96.1565%" y="943.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (24 samples, 0.02%)</title><rect x="96.0907%" y="869" width="0.0164%" height="15" fill="rgb(218,191,29)" fg:x="140280" fg:w="24"/><text x="96.3407%" y="879.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (24 samples, 0.02%)</title><rect x="96.0907%" y="853" width="0.0164%" height="15" fill="rgb(221,157,19)" fg:x="140280" fg:w="24"/><text x="96.3407%" y="863.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (15 samples, 0.01%)</title><rect x="96.0969%" y="837" width="0.0103%" height="15" fill="rgb(237,26,42)" fg:x="140289" fg:w="15"/><text x="96.3469%" y="847.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (38 samples, 0.03%)</title><rect x="96.0907%" y="885" width="0.0260%" height="15" fill="rgb(220,163,24)" fg:x="140280" fg:w="38"/><text x="96.3407%" y="895.50"></text></g><g><title>LinkResolver::resolve_invoke (60 samples, 0.04%)</title><rect x="96.0894%" y="917" width="0.0411%" height="15" fill="rgb(242,115,20)" fg:x="140278" fg:w="60"/><text x="96.3394%" y="927.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (60 samples, 0.04%)</title><rect x="96.0894%" y="901" width="0.0411%" height="15" fill="rgb(210,206,9)" fg:x="140278" fg:w="60"/><text x="96.3394%" y="911.50"></text></g><g><title>LinkResolver::resolve_dynamic_call (20 samples, 0.01%)</title><rect x="96.1168%" y="885" width="0.0137%" height="15" fill="rgb(208,71,17)" fg:x="140318" fg:w="20"/><text x="96.3668%" y="895.50"></text></g><g><title>SystemDictionary::find_dynamic_call_site_invoker (18 samples, 0.01%)</title><rect x="96.1181%" y="869" width="0.0123%" height="15" fill="rgb(233,7,5)" fg:x="140320" fg:w="18"/><text x="96.3681%" y="879.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (62 samples, 0.04%)</title><rect x="96.0887%" y="933" width="0.0425%" height="15" fill="rgb(207,92,33)" fg:x="140277" fg:w="62"/><text x="96.3387%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (378 samples, 0.26%)</title><rect x="95.8736%" y="949" width="0.2589%" height="15" fill="rgb(218,87,9)" fg:x="139963" fg:w="378"/><text x="96.1236%" y="959.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (15 samples, 0.01%)</title><rect x="96.1325%" y="933" width="0.0103%" height="15" fill="rgb(219,47,37)" fg:x="140341" fg:w="15"/><text x="96.3825%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (16 samples, 0.01%)</title><rect x="96.1325%" y="949" width="0.0110%" height="15" fill="rgb(221,152,34)" fg:x="140341" fg:w="16"/><text x="96.3825%" y="959.50"></text></g><g><title>JVM_Clone (27 samples, 0.02%)</title><rect x="96.1490%" y="949" width="0.0185%" height="15" fill="rgb(235,176,21)" fg:x="140365" fg:w="27"/><text x="96.3990%" y="959.50"></text></g><g><title>JVM_DoPrivileged (15 samples, 0.01%)</title><rect x="96.1757%" y="949" width="0.0103%" height="15" fill="rgb(232,212,21)" fg:x="140404" fg:w="15"/><text x="96.4257%" y="959.50"></text></g><g><title>JVM_FindLoadedClass (19 samples, 0.01%)</title><rect x="96.1860%" y="949" width="0.0130%" height="15" fill="rgb(245,82,39)" fg:x="140419" fg:w="19"/><text x="96.4360%" y="959.50"></text></g><g><title>get_parameter_types (22 samples, 0.02%)</title><rect x="96.2188%" y="901" width="0.0151%" height="15" fill="rgb(241,52,51)" fg:x="140467" fg:w="22"/><text x="96.4688%" y="911.50"></text></g><g><title>JVM_GetClassDeclaredMethods (32 samples, 0.02%)</title><rect x="96.2127%" y="949" width="0.0219%" height="15" fill="rgb(219,91,24)" fg:x="140458" fg:w="32"/><text x="96.4627%" y="959.50"></text></g><g><title>get_class_declared_methods_helper (32 samples, 0.02%)</title><rect x="96.2127%" y="933" width="0.0219%" height="15" fill="rgb(241,142,12)" fg:x="140458" fg:w="32"/><text x="96.4627%" y="943.50"></text></g><g><title>Reflection::new_method (31 samples, 0.02%)</title><rect x="96.2134%" y="917" width="0.0212%" height="15" fill="rgb(230,27,9)" fg:x="140459" fg:w="31"/><text x="96.4634%" y="927.50"></text></g><g><title>Monitor::wait (21 samples, 0.01%)</title><rect x="96.2421%" y="885" width="0.0144%" height="15" fill="rgb(249,181,32)" fg:x="140501" fg:w="21"/><text x="96.4921%" y="895.50"></text></g><g><title>Monitor::IWait (21 samples, 0.01%)</title><rect x="96.2421%" y="869" width="0.0144%" height="15" fill="rgb(230,107,3)" fg:x="140501" fg:w="21"/><text x="96.4921%" y="879.50"></text></g><g><title>os::PlatformEvent::park (21 samples, 0.01%)</title><rect x="96.2421%" y="853" width="0.0144%" height="15" fill="rgb(246,204,14)" fg:x="140501" fg:w="21"/><text x="96.4921%" y="863.50"></text></g><g><title>__pthread_cond_wait (21 samples, 0.01%)</title><rect x="96.2421%" y="837" width="0.0144%" height="15" fill="rgb(213,192,47)" fg:x="140501" fg:w="21"/><text x="96.4921%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (21 samples, 0.01%)</title><rect x="96.2421%" y="821" width="0.0144%" height="15" fill="rgb(240,44,36)" fg:x="140501" fg:w="21"/><text x="96.4921%" y="831.50"></text></g><g><title>futex_wait_cancelable (21 samples, 0.01%)</title><rect x="96.2421%" y="805" width="0.0144%" height="15" fill="rgb(244,209,38)" fg:x="140501" fg:w="21"/><text x="96.4921%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.01%)</title><rect x="96.2421%" y="789" width="0.0144%" height="15" fill="rgb(219,34,37)" fg:x="140501" fg:w="21"/><text x="96.4921%" y="799.50"></text></g><g><title>do_syscall_64 (21 samples, 0.01%)</title><rect x="96.2421%" y="773" width="0.0144%" height="15" fill="rgb(210,28,6)" fg:x="140501" fg:w="21"/><text x="96.4921%" y="783.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.01%)</title><rect x="96.2421%" y="757" width="0.0144%" height="15" fill="rgb(244,110,52)" fg:x="140501" fg:w="21"/><text x="96.4921%" y="767.50"></text></g><g><title>do_futex (20 samples, 0.01%)</title><rect x="96.2428%" y="741" width="0.0137%" height="15" fill="rgb(254,124,47)" fg:x="140502" fg:w="20"/><text x="96.4928%" y="751.50"></text></g><g><title>futex_wait (20 samples, 0.01%)</title><rect x="96.2428%" y="725" width="0.0137%" height="15" fill="rgb(254,110,13)" fg:x="140502" fg:w="20"/><text x="96.4928%" y="735.50"></text></g><g><title>futex_wait_queue_me (20 samples, 0.01%)</title><rect x="96.2428%" y="709" width="0.0137%" height="15" fill="rgb(252,57,21)" fg:x="140502" fg:w="20"/><text x="96.4928%" y="719.50"></text></g><g><title>schedule (19 samples, 0.01%)</title><rect x="96.2435%" y="693" width="0.0130%" height="15" fill="rgb(242,60,45)" fg:x="140503" fg:w="19"/><text x="96.4935%" y="703.50"></text></g><g><title>__schedule (19 samples, 0.01%)</title><rect x="96.2435%" y="677" width="0.0130%" height="15" fill="rgb(234,49,30)" fg:x="140503" fg:w="19"/><text x="96.4935%" y="687.50"></text></g><g><title>finish_task_switch (19 samples, 0.01%)</title><rect x="96.2435%" y="661" width="0.0130%" height="15" fill="rgb(218,98,6)" fg:x="140503" fg:w="19"/><text x="96.4935%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.01%)</title><rect x="96.2435%" y="645" width="0.0130%" height="15" fill="rgb(220,174,29)" fg:x="140503" fg:w="19"/><text x="96.4935%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (19 samples, 0.01%)</title><rect x="96.2435%" y="629" width="0.0130%" height="15" fill="rgb(236,163,23)" fg:x="140503" fg:w="19"/><text x="96.4935%" y="639.50"></text></g><g><title>native_write_msr (19 samples, 0.01%)</title><rect x="96.2435%" y="613" width="0.0130%" height="15" fill="rgb(242,114,45)" fg:x="140503" fg:w="19"/><text x="96.4935%" y="623.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (28 samples, 0.02%)</title><rect x="96.2380%" y="933" width="0.0192%" height="15" fill="rgb(232,10,53)" fg:x="140495" fg:w="28"/><text x="96.4880%" y="943.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (25 samples, 0.02%)</title><rect x="96.2401%" y="917" width="0.0171%" height="15" fill="rgb(245,108,29)" fg:x="140498" fg:w="25"/><text x="96.4901%" y="927.50"></text></g><g><title>VMThread::execute (22 samples, 0.02%)</title><rect x="96.2421%" y="901" width="0.0151%" height="15" fill="rgb(240,89,53)" fg:x="140501" fg:w="22"/><text x="96.4921%" y="911.50"></text></g><g><title>JVM_IHashCode (30 samples, 0.02%)</title><rect x="96.2373%" y="949" width="0.0205%" height="15" fill="rgb(226,60,45)" fg:x="140494" fg:w="30"/><text x="96.4873%" y="959.50"></text></g><g><title>Method::line_number_from_bci (15 samples, 0.01%)</title><rect x="96.2764%" y="901" width="0.0103%" height="15" fill="rgb(230,41,44)" fg:x="140551" fg:w="15"/><text x="96.5264%" y="911.50"></text></g><g><title>StringTable::intern (15 samples, 0.01%)</title><rect x="96.2873%" y="885" width="0.0103%" height="15" fill="rgb(230,26,20)" fg:x="140567" fg:w="15"/><text x="96.5373%" y="895.50"></text></g><g><title>StringTable::intern (23 samples, 0.02%)</title><rect x="96.2867%" y="901" width="0.0158%" height="15" fill="rgb(237,170,32)" fg:x="140566" fg:w="23"/><text x="96.5367%" y="911.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (46 samples, 0.03%)</title><rect x="96.2716%" y="917" width="0.0315%" height="15" fill="rgb(212,35,42)" fg:x="140544" fg:w="46"/><text x="96.5216%" y="927.50"></text></g><g><title>JVM_InitStackTraceElementArray (56 samples, 0.04%)</title><rect x="96.2661%" y="949" width="0.0384%" height="15" fill="rgb(227,31,34)" fg:x="140536" fg:w="56"/><text x="96.5161%" y="959.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (54 samples, 0.04%)</title><rect x="96.2675%" y="933" width="0.0370%" height="15" fill="rgb(216,19,18)" fg:x="140538" fg:w="54"/><text x="96.5175%" y="943.50"></text></g><g><title>JVM_IsInterrupted (19 samples, 0.01%)</title><rect x="96.3175%" y="949" width="0.0130%" height="15" fill="rgb(211,133,42)" fg:x="140611" fg:w="19"/><text x="96.5675%" y="959.50"></text></g><g><title>__pthread_cond_timedwait (15 samples, 0.01%)</title><rect x="96.3373%" y="885" width="0.0103%" height="15" fill="rgb(244,66,13)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (15 samples, 0.01%)</title><rect x="96.3373%" y="869" width="0.0103%" height="15" fill="rgb(218,185,50)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="879.50"></text></g><g><title>futex_abstimed_wait_cancelable (15 samples, 0.01%)</title><rect x="96.3373%" y="853" width="0.0103%" height="15" fill="rgb(219,149,13)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="96.3373%" y="837" width="0.0103%" height="15" fill="rgb(221,125,0)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="847.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="96.3373%" y="821" width="0.0103%" height="15" fill="rgb(247,126,27)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="831.50"></text></g><g><title>__x64_sys_futex (15 samples, 0.01%)</title><rect x="96.3373%" y="805" width="0.0103%" height="15" fill="rgb(250,138,30)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="815.50"></text></g><g><title>do_futex (15 samples, 0.01%)</title><rect x="96.3373%" y="789" width="0.0103%" height="15" fill="rgb(230,151,9)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="799.50"></text></g><g><title>futex_wait (15 samples, 0.01%)</title><rect x="96.3373%" y="773" width="0.0103%" height="15" fill="rgb(233,80,38)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="783.50"></text></g><g><title>futex_wait_queue_me (15 samples, 0.01%)</title><rect x="96.3373%" y="757" width="0.0103%" height="15" fill="rgb(232,68,43)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="767.50"></text></g><g><title>schedule (15 samples, 0.01%)</title><rect x="96.3373%" y="741" width="0.0103%" height="15" fill="rgb(254,5,50)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="751.50"></text></g><g><title>__schedule (15 samples, 0.01%)</title><rect x="96.3373%" y="725" width="0.0103%" height="15" fill="rgb(225,45,5)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="735.50"></text></g><g><title>finish_task_switch (15 samples, 0.01%)</title><rect x="96.3373%" y="709" width="0.0103%" height="15" fill="rgb(239,22,3)" fg:x="140640" fg:w="15"/><text x="96.5873%" y="719.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="96.3476%" y="821" width="0.0110%" height="15" fill="rgb(243,129,0)" fg:x="140655" fg:w="16"/><text x="96.5976%" y="831.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="96.3476%" y="805" width="0.0110%" height="15" fill="rgb(223,164,0)" fg:x="140655" fg:w="16"/><text x="96.5976%" y="815.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="96.3476%" y="789" width="0.0110%" height="15" fill="rgb(221,46,29)" fg:x="140655" fg:w="16"/><text x="96.5976%" y="799.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="96.3476%" y="773" width="0.0110%" height="15" fill="rgb(205,97,47)" fg:x="140655" fg:w="16"/><text x="96.5976%" y="783.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="96.3476%" y="757" width="0.0110%" height="15" fill="rgb(249,14,8)" fg:x="140655" fg:w="16"/><text x="96.5976%" y="767.50"></text></g><g><title>schedule (15 samples, 0.01%)</title><rect x="96.3483%" y="741" width="0.0103%" height="15" fill="rgb(216,77,3)" fg:x="140656" fg:w="15"/><text x="96.5983%" y="751.50"></text></g><g><title>JVM_MonitorWait (42 samples, 0.03%)</title><rect x="96.3305%" y="949" width="0.0288%" height="15" fill="rgb(206,168,54)" fg:x="140630" fg:w="42"/><text x="96.5805%" y="959.50"></text></g><g><title>ObjectSynchronizer::wait (42 samples, 0.03%)</title><rect x="96.3305%" y="933" width="0.0288%" height="15" fill="rgb(236,3,41)" fg:x="140630" fg:w="42"/><text x="96.5805%" y="943.50"></text></g><g><title>ObjectMonitor::wait (41 samples, 0.03%)</title><rect x="96.3312%" y="917" width="0.0281%" height="15" fill="rgb(231,132,24)" fg:x="140631" fg:w="41"/><text x="96.5812%" y="927.50"></text></g><g><title>os::PlatformEvent::park (32 samples, 0.02%)</title><rect x="96.3373%" y="901" width="0.0219%" height="15" fill="rgb(227,221,40)" fg:x="140640" fg:w="32"/><text x="96.5873%" y="911.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.01%)</title><rect x="96.3476%" y="885" width="0.0116%" height="15" fill="rgb(233,151,11)" fg:x="140655" fg:w="17"/><text x="96.5976%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.01%)</title><rect x="96.3476%" y="869" width="0.0116%" height="15" fill="rgb(247,81,35)" fg:x="140655" fg:w="17"/><text x="96.5976%" y="879.50"></text></g><g><title>futex_wait_cancelable (17 samples, 0.01%)</title><rect x="96.3476%" y="853" width="0.0116%" height="15" fill="rgb(243,128,48)" fg:x="140655" fg:w="17"/><text x="96.5976%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="96.3476%" y="837" width="0.0116%" height="15" fill="rgb(253,16,10)" fg:x="140655" fg:w="17"/><text x="96.5976%" y="847.50"></text></g><g><title>SymbolTable::add (18 samples, 0.01%)</title><rect x="96.4113%" y="805" width="0.0123%" height="15" fill="rgb(228,67,27)" fg:x="140748" fg:w="18"/><text x="96.6613%" y="815.50"></text></g><g><title>SymbolTable::basic_add (17 samples, 0.01%)</title><rect x="96.4120%" y="789" width="0.0116%" height="15" fill="rgb(231,105,25)" fg:x="140749" fg:w="17"/><text x="96.6620%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (269 samples, 0.18%)</title><rect x="96.4237%" y="805" width="0.1843%" height="15" fill="rgb(213,166,47)" fg:x="140766" fg:w="269"/><text x="96.6737%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (297 samples, 0.20%)</title><rect x="96.4052%" y="821" width="0.2034%" height="15" fill="rgb(209,27,10)" fg:x="140739" fg:w="297"/><text x="96.6552%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool (317 samples, 0.22%)</title><rect x="96.3963%" y="837" width="0.2171%" height="15" fill="rgb(241,44,30)" fg:x="140726" fg:w="317"/><text x="96.6463%" y="847.50"></text></g><g><title>ClassFileParser::parse_methods (66 samples, 0.05%)</title><rect x="96.6189%" y="837" width="0.0452%" height="15" fill="rgb(223,216,15)" fg:x="141051" fg:w="66"/><text x="96.8689%" y="847.50"></text></g><g><title>ClassFileParser::parse_method (66 samples, 0.05%)</title><rect x="96.6189%" y="821" width="0.0452%" height="15" fill="rgb(227,14,7)" fg:x="141051" fg:w="66"/><text x="96.8689%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (410 samples, 0.28%)</title><rect x="96.3894%" y="869" width="0.2808%" height="15" fill="rgb(237,14,5)" fg:x="140716" fg:w="410"/><text x="96.6394%" y="879.50"></text></g><g><title>ClassFileParser::parse_stream (409 samples, 0.28%)</title><rect x="96.3901%" y="853" width="0.2802%" height="15" fill="rgb(232,14,36)" fg:x="140717" fg:w="409"/><text x="96.6401%" y="863.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (23 samples, 0.02%)</title><rect x="96.6792%" y="821" width="0.0158%" height="15" fill="rgb(234,0,38)" fg:x="141139" fg:w="23"/><text x="96.9292%" y="831.50"></text></g><g><title>DefaultMethods::generate_default_methods (44 samples, 0.03%)</title><rect x="96.6716%" y="837" width="0.0301%" height="15" fill="rgb(207,170,14)" fg:x="141128" fg:w="44"/><text x="96.9216%" y="847.50"></text></g><g><title>ClassFileParser::fill_instance_klass (73 samples, 0.05%)</title><rect x="96.6703%" y="853" width="0.0500%" height="15" fill="rgb(252,45,13)" fg:x="141126" fg:w="73"/><text x="96.9203%" y="863.50"></text></g><g><title>ClassFileParser::create_instance_klass (76 samples, 0.05%)</title><rect x="96.6703%" y="869" width="0.0521%" height="15" fill="rgb(213,142,7)" fg:x="141126" fg:w="76"/><text x="96.9203%" y="879.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (29 samples, 0.02%)</title><rect x="96.7223%" y="869" width="0.0199%" height="15" fill="rgb(216,157,23)" fg:x="141202" fg:w="29"/><text x="96.9723%" y="879.50"></text></g><g><title>KlassFactory::create_from_stream (516 samples, 0.35%)</title><rect x="96.3894%" y="885" width="0.3535%" height="15" fill="rgb(212,145,33)" fg:x="140716" fg:w="516"/><text x="96.6394%" y="895.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (36 samples, 0.02%)</title><rect x="96.7429%" y="885" width="0.0247%" height="15" fill="rgb(233,26,13)" fg:x="141232" fg:w="36"/><text x="96.9929%" y="895.50"></text></g><g><title>SystemDictionary::define_instance_class (35 samples, 0.02%)</title><rect x="96.7435%" y="869" width="0.0240%" height="15" fill="rgb(219,196,19)" fg:x="141233" fg:w="35"/><text x="96.9935%" y="879.50"></text></g><g><title>JVM_DefineClassWithSource (559 samples, 0.38%)</title><rect x="96.3853%" y="933" width="0.3829%" height="15" fill="rgb(246,56,21)" fg:x="140710" fg:w="559"/><text x="96.6353%" y="943.50"></text></g><g><title>jvm_define_class_common (558 samples, 0.38%)</title><rect x="96.3860%" y="917" width="0.3822%" height="15" fill="rgb(222,28,53)" fg:x="140711" fg:w="558"/><text x="96.6360%" y="927.50"></text></g><g><title>SystemDictionary::resolve_from_stream (554 samples, 0.38%)</title><rect x="96.3887%" y="901" width="0.3795%" height="15" fill="rgb(224,5,27)" fg:x="140715" fg:w="554"/><text x="96.6387%" y="911.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (575 samples, 0.39%)</title><rect x="96.3846%" y="949" width="0.3939%" height="15" fill="rgb(220,153,33)" fg:x="140709" fg:w="575"/><text x="96.6346%" y="959.50"></text></g><g><title>JVM_FindClassFromBootLoader (27 samples, 0.02%)</title><rect x="96.7785%" y="933" width="0.0185%" height="15" fill="rgb(226,58,19)" fg:x="141284" fg:w="27"/><text x="97.0285%" y="943.50"></text></g><g><title>SystemDictionary::resolve_or_null (26 samples, 0.02%)</title><rect x="96.7792%" y="917" width="0.0178%" height="15" fill="rgb(239,112,23)" fg:x="141285" fg:w="26"/><text x="97.0292%" y="927.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (26 samples, 0.02%)</title><rect x="96.7792%" y="901" width="0.0178%" height="15" fill="rgb(251,213,20)" fg:x="141285" fg:w="26"/><text x="97.0292%" y="911.50"></text></g><g><title>SystemDictionary::load_instance_class (18 samples, 0.01%)</title><rect x="96.7846%" y="885" width="0.0123%" height="15" fill="rgb(215,181,21)" fg:x="141293" fg:w="18"/><text x="97.0346%" y="895.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (36 samples, 0.02%)</title><rect x="96.7785%" y="949" width="0.0247%" height="15" fill="rgb(240,8,35)" fg:x="141284" fg:w="36"/><text x="97.0285%" y="959.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (23 samples, 0.02%)</title><rect x="96.8155%" y="949" width="0.0158%" height="15" fill="rgb(232,203,3)" fg:x="141338" fg:w="23"/><text x="97.0655%" y="959.50"></text></g><g><title>os_getParentPidAndTimings (22 samples, 0.02%)</title><rect x="96.8162%" y="933" width="0.0151%" height="15" fill="rgb(214,202,43)" fg:x="141339" fg:w="22"/><text x="97.0662%" y="943.50"></text></g><g><title>copy_process (28 samples, 0.02%)</title><rect x="96.8483%" y="837" width="0.0192%" height="15" fill="rgb(254,35,11)" fg:x="141386" fg:w="28"/><text x="97.0983%" y="847.50"></text></g><g><title>wait_for_completion_killable (15 samples, 0.01%)</title><rect x="96.8682%" y="837" width="0.0103%" height="15" fill="rgb(239,173,13)" fg:x="141415" fg:w="15"/><text x="97.1182%" y="847.50"></text></g><g><title>__wait_for_common (15 samples, 0.01%)</title><rect x="96.8682%" y="821" width="0.0103%" height="15" fill="rgb(220,141,0)" fg:x="141415" fg:w="15"/><text x="97.1182%" y="831.50"></text></g><g><title>schedule_timeout (15 samples, 0.01%)</title><rect x="96.8682%" y="805" width="0.0103%" height="15" fill="rgb(210,98,12)" fg:x="141415" fg:w="15"/><text x="97.1182%" y="815.50"></text></g><g><title>schedule (15 samples, 0.01%)</title><rect x="96.8682%" y="789" width="0.0103%" height="15" fill="rgb(254,153,22)" fg:x="141415" fg:w="15"/><text x="97.1182%" y="799.50"></text></g><g><title>__schedule (15 samples, 0.01%)</title><rect x="96.8682%" y="773" width="0.0103%" height="15" fill="rgb(247,223,17)" fg:x="141415" fg:w="15"/><text x="97.1182%" y="783.50"></text></g><g><title>do_syscall_64 (50 samples, 0.03%)</title><rect x="96.8477%" y="885" width="0.0342%" height="15" fill="rgb(246,56,7)" fg:x="141385" fg:w="50"/><text x="97.0977%" y="895.50"></text></g><g><title>__x64_sys_vfork (50 samples, 0.03%)</title><rect x="96.8477%" y="869" width="0.0342%" height="15" fill="rgb(240,226,12)" fg:x="141385" fg:w="50"/><text x="97.0977%" y="879.50"></text></g><g><title>kernel_clone (50 samples, 0.03%)</title><rect x="96.8477%" y="853" width="0.0342%" height="15" fill="rgb(205,87,46)" fg:x="141385" fg:w="50"/><text x="97.0977%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.03%)</title><rect x="96.8477%" y="901" width="0.0349%" height="15" fill="rgb(245,214,51)" fg:x="141385" fg:w="51"/><text x="97.0977%" y="911.50"></text></g><g><title>calculate_sigpending (54 samples, 0.04%)</title><rect x="96.8833%" y="885" width="0.0370%" height="15" fill="rgb(223,172,33)" fg:x="141437" fg:w="54"/><text x="97.1333%" y="895.50"></text></g><g><title>_raw_spin_lock_irq (17 samples, 0.01%)</title><rect x="96.9086%" y="869" width="0.0116%" height="15" fill="rgb(227,203,34)" fg:x="141474" fg:w="17"/><text x="97.1586%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (994 samples, 0.68%)</title><rect x="96.9511%" y="853" width="0.6809%" height="15" fill="rgb(248,143,44)" fg:x="141536" fg:w="994"/><text x="97.2011%" y="863.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (982 samples, 0.67%)</title><rect x="96.9593%" y="837" width="0.6727%" height="15" fill="rgb(226,162,5)" fg:x="141548" fg:w="982"/><text x="97.2093%" y="847.50"></text></g><g><title>native_write_msr (981 samples, 0.67%)</title><rect x="96.9600%" y="821" width="0.6720%" height="15" fill="rgb(211,143,1)" fg:x="141549" fg:w="981"/><text x="97.2100%" y="831.50"></text></g><g><title>asm_sysvec_irq_work (31 samples, 0.02%)</title><rect x="97.6340%" y="853" width="0.0212%" height="15" fill="rgb(224,96,15)" fg:x="142533" fg:w="31"/><text x="97.8840%" y="863.50"></text></g><g><title>schedule_tail (1,074 samples, 0.74%)</title><rect x="96.9203%" y="885" width="0.7357%" height="15" fill="rgb(222,4,38)" fg:x="141491" fg:w="1074"/><text x="97.1703%" y="895.50"></text></g><g><title>finish_task_switch (1,061 samples, 0.73%)</title><rect x="96.9292%" y="869" width="0.7268%" height="15" fill="rgb(253,228,15)" fg:x="141504" fg:w="1061"/><text x="97.1792%" y="879.50"></text></g><g><title>__libc_vfork (1,189 samples, 0.81%)</title><rect x="96.8463%" y="917" width="0.8145%" height="15" fill="rgb(242,194,12)" fg:x="141383" fg:w="1189"/><text x="97.0963%" y="927.50"></text></g><g><title>ret_from_fork (1,135 samples, 0.78%)</title><rect x="96.8833%" y="901" width="0.7775%" height="15" fill="rgb(214,177,31)" fg:x="141437" fg:w="1135"/><text x="97.1333%" y="911.50"></text></g><g><title>sched_exec (15 samples, 0.01%)</title><rect x="97.6868%" y="789" width="0.0103%" height="15" fill="rgb(226,58,51)" fg:x="142610" fg:w="15"/><text x="97.9368%" y="799.50"></text></g><g><title>bprm_execve (58 samples, 0.04%)</title><rect x="97.6703%" y="805" width="0.0397%" height="15" fill="rgb(250,119,16)" fg:x="142586" fg:w="58"/><text x="97.9203%" y="815.50"></text></g><g><title>security_bprm_creds_for_exec (15 samples, 0.01%)</title><rect x="97.6998%" y="789" width="0.0103%" height="15" fill="rgb(223,128,53)" fg:x="142629" fg:w="15"/><text x="97.9498%" y="799.50"></text></g><g><title>get_arg_page (21 samples, 0.01%)</title><rect x="97.7101%" y="789" width="0.0144%" height="15" fill="rgb(251,199,15)" fg:x="142644" fg:w="21"/><text x="97.9601%" y="799.50"></text></g><g><title>__get_user_pages_remote (21 samples, 0.01%)</title><rect x="97.7101%" y="773" width="0.0144%" height="15" fill="rgb(235,168,42)" fg:x="142644" fg:w="21"/><text x="97.9601%" y="783.50"></text></g><g><title>__get_user_pages (20 samples, 0.01%)</title><rect x="97.7108%" y="757" width="0.0137%" height="15" fill="rgb(250,210,17)" fg:x="142645" fg:w="20"/><text x="97.9608%" y="767.50"></text></g><g><title>handle_mm_fault (18 samples, 0.01%)</title><rect x="97.7121%" y="741" width="0.0123%" height="15" fill="rgb(226,36,41)" fg:x="142647" fg:w="18"/><text x="97.9621%" y="751.50"></text></g><g><title>copy_string_kernel (23 samples, 0.02%)</title><rect x="97.7101%" y="805" width="0.0158%" height="15" fill="rgb(225,87,10)" fg:x="142644" fg:w="23"/><text x="97.9601%" y="815.50"></text></g><g><title>__GI_execve (107 samples, 0.07%)</title><rect x="97.6614%" y="885" width="0.0733%" height="15" fill="rgb(228,83,9)" fg:x="142573" fg:w="107"/><text x="97.9114%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.07%)</title><rect x="97.6614%" y="869" width="0.0733%" height="15" fill="rgb(225,16,36)" fg:x="142573" fg:w="107"/><text x="97.9114%" y="879.50"></text></g><g><title>do_syscall_64 (107 samples, 0.07%)</title><rect x="97.6614%" y="853" width="0.0733%" height="15" fill="rgb(242,198,13)" fg:x="142573" fg:w="107"/><text x="97.9114%" y="863.50"></text></g><g><title>__x64_sys_execve (107 samples, 0.07%)</title><rect x="97.6614%" y="837" width="0.0733%" height="15" fill="rgb(239,25,51)" fg:x="142573" fg:w="107"/><text x="97.9114%" y="847.50"></text></g><g><title>do_execveat_common (107 samples, 0.07%)</title><rect x="97.6614%" y="821" width="0.0733%" height="15" fill="rgb(239,28,37)" fg:x="142573" fg:w="107"/><text x="97.9114%" y="831.50"></text></g><g><title>JDK_execvpe (109 samples, 0.07%)</title><rect x="97.6608%" y="901" width="0.0747%" height="15" fill="rgb(234,70,17)" fg:x="142572" fg:w="109"/><text x="97.9108%" y="911.50"></text></g><g><title>__close (18 samples, 0.01%)</title><rect x="97.7368%" y="901" width="0.0123%" height="15" fill="rgb(231,215,53)" fg:x="142683" fg:w="18"/><text x="97.9868%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="97.7382%" y="885" width="0.0110%" height="15" fill="rgb(218,140,42)" fg:x="142685" fg:w="16"/><text x="97.9882%" y="895.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="97.7662%" y="853" width="0.0103%" height="15" fill="rgb(233,227,45)" fg:x="142726" fg:w="15"/><text x="98.0162%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="97.7662%" y="869" width="0.0110%" height="15" fill="rgb(225,189,21)" fg:x="142726" fg:w="16"/><text x="98.0162%" y="879.50"></text></g><g><title>__close (24 samples, 0.02%)</title><rect x="97.7614%" y="885" width="0.0164%" height="15" fill="rgb(237,176,54)" fg:x="142719" fg:w="24"/><text x="98.0114%" y="895.50"></text></g><g><title>__alloc_file (19 samples, 0.01%)</title><rect x="97.7834%" y="741" width="0.0130%" height="15" fill="rgb(215,131,46)" fg:x="142751" fg:w="19"/><text x="98.0334%" y="751.50"></text></g><g><title>alloc_empty_file (22 samples, 0.02%)</title><rect x="97.7834%" y="757" width="0.0151%" height="15" fill="rgb(218,95,20)" fg:x="142751" fg:w="22"/><text x="98.0334%" y="767.50"></text></g><g><title>link_path_walk.part.0 (26 samples, 0.02%)</title><rect x="97.7991%" y="757" width="0.0178%" height="15" fill="rgb(208,198,12)" fg:x="142774" fg:w="26"/><text x="98.0491%" y="767.50"></text></g><g><title>walk_component (20 samples, 0.01%)</title><rect x="97.8032%" y="741" width="0.0137%" height="15" fill="rgb(239,107,50)" fg:x="142780" fg:w="20"/><text x="98.0532%" y="751.50"></text></g><g><title>do_filp_open (53 samples, 0.04%)</title><rect x="97.7827%" y="789" width="0.0363%" height="15" fill="rgb(240,217,37)" fg:x="142750" fg:w="53"/><text x="98.0327%" y="799.50"></text></g><g><title>path_openat (52 samples, 0.04%)</title><rect x="97.7834%" y="773" width="0.0356%" height="15" fill="rgb(242,197,49)" fg:x="142751" fg:w="52"/><text x="98.0334%" y="783.50"></text></g><g><title>__GI___open64_nocancel (80 samples, 0.05%)</title><rect x="97.7779%" y="869" width="0.0548%" height="15" fill="rgb(219,171,17)" fg:x="142743" fg:w="80"/><text x="98.0279%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.05%)</title><rect x="97.7779%" y="853" width="0.0548%" height="15" fill="rgb(209,81,40)" fg:x="142743" fg:w="80"/><text x="98.0279%" y="863.50"></text></g><g><title>do_syscall_64 (80 samples, 0.05%)</title><rect x="97.7779%" y="837" width="0.0548%" height="15" fill="rgb(237,156,30)" fg:x="142743" fg:w="80"/><text x="98.0279%" y="847.50"></text></g><g><title>__x64_sys_openat (79 samples, 0.05%)</title><rect x="97.7786%" y="821" width="0.0541%" height="15" fill="rgb(212,127,16)" fg:x="142744" fg:w="79"/><text x="98.0286%" y="831.50"></text></g><g><title>do_sys_openat2 (78 samples, 0.05%)</title><rect x="97.7793%" y="805" width="0.0534%" height="15" fill="rgb(226,66,32)" fg:x="142745" fg:w="78"/><text x="98.0293%" y="815.50"></text></g><g><title>getname_flags.part.0 (20 samples, 0.01%)</title><rect x="97.8190%" y="789" width="0.0137%" height="15" fill="rgb(245,22,46)" fg:x="142803" fg:w="20"/><text x="98.0690%" y="799.50"></text></g><g><title>__opendir (87 samples, 0.06%)</title><rect x="97.7779%" y="885" width="0.0596%" height="15" fill="rgb(210,112,21)" fg:x="142743" fg:w="87"/><text x="98.0279%" y="895.50"></text></g><g><title>closeDescriptors (136 samples, 0.09%)</title><rect x="97.7491%" y="901" width="0.0932%" height="15" fill="rgb(207,118,39)" fg:x="142701" fg:w="136"/><text x="97.9991%" y="911.50"></text></g><g><title>do_dup2 (16 samples, 0.01%)</title><rect x="97.8532%" y="821" width="0.0110%" height="15" fill="rgb(205,206,35)" fg:x="142853" fg:w="16"/><text x="98.1032%" y="831.50"></text></g><g><title>filp_close (15 samples, 0.01%)</title><rect x="97.8539%" y="805" width="0.0103%" height="15" fill="rgb(222,120,2)" fg:x="142854" fg:w="15"/><text x="98.1039%" y="815.50"></text></g><g><title>__x64_sys_dup2 (19 samples, 0.01%)</title><rect x="97.8519%" y="837" width="0.0130%" height="15" fill="rgb(205,38,18)" fg:x="142851" fg:w="19"/><text x="98.1019%" y="847.50"></text></g><g><title>__GI___dup2 (29 samples, 0.02%)</title><rect x="97.8457%" y="885" width="0.0199%" height="15" fill="rgb(226,61,2)" fg:x="142842" fg:w="29"/><text x="98.0957%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="97.8498%" y="869" width="0.0158%" height="15" fill="rgb(242,161,23)" fg:x="142848" fg:w="23"/><text x="98.0998%" y="879.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="97.8498%" y="853" width="0.0158%" height="15" fill="rgb(213,13,52)" fg:x="142848" fg:w="23"/><text x="98.0998%" y="863.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,518 samples, 1.04%)</title><rect x="96.8312%" y="949" width="1.0398%" height="15" fill="rgb(246,209,47)" fg:x="141361" fg:w="1518"/><text x="97.0812%" y="959.50"></text></g><g><title>vforkChild (1,496 samples, 1.02%)</title><rect x="96.8463%" y="933" width="1.0247%" height="15" fill="rgb(214,41,3)" fg:x="141383" fg:w="1496"/><text x="97.0963%" y="943.50"></text></g><g><title>childProcess (307 samples, 0.21%)</title><rect x="97.6608%" y="917" width="0.2103%" height="15" fill="rgb(236,119,38)" fg:x="142572" fg:w="307"/><text x="97.9108%" y="927.50"></text></g><g><title>moveDescriptor (37 samples, 0.03%)</title><rect x="97.8457%" y="901" width="0.0253%" height="15" fill="rgb(218,50,11)" fg:x="142842" fg:w="37"/><text x="98.0957%" y="911.50"></text></g><g><title>JVM_FillInStackTrace (17 samples, 0.01%)</title><rect x="97.8710%" y="933" width="0.0116%" height="15" fill="rgb(228,38,11)" fg:x="142879" fg:w="17"/><text x="98.1210%" y="943.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (16 samples, 0.01%)</title><rect x="97.8717%" y="917" width="0.0110%" height="15" fill="rgb(212,13,9)" fg:x="142880" fg:w="16"/><text x="98.1217%" y="927.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (16 samples, 0.01%)</title><rect x="97.8717%" y="901" width="0.0110%" height="15" fill="rgb(208,211,9)" fg:x="142880" fg:w="16"/><text x="98.1217%" y="911.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (19 samples, 0.01%)</title><rect x="97.8710%" y="949" width="0.0130%" height="15" fill="rgb(239,39,32)" fg:x="142879" fg:w="19"/><text x="98.1210%" y="959.50"></text></g><g><title>__GI___mkdir (17 samples, 0.01%)</title><rect x="97.8841%" y="933" width="0.0116%" height="15" fill="rgb(254,179,26)" fg:x="142898" fg:w="17"/><text x="98.1341%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.01%)</title><rect x="97.8841%" y="917" width="0.0116%" height="15" fill="rgb(249,165,28)" fg:x="142898" fg:w="17"/><text x="98.1341%" y="927.50"></text></g><g><title>do_syscall_64 (17 samples, 0.01%)</title><rect x="97.8841%" y="901" width="0.0116%" height="15" fill="rgb(225,59,50)" fg:x="142898" fg:w="17"/><text x="98.1341%" y="911.50"></text></g><g><title>do_mkdirat (17 samples, 0.01%)</title><rect x="97.8841%" y="885" width="0.0116%" height="15" fill="rgb(209,122,5)" fg:x="142898" fg:w="17"/><text x="98.1341%" y="895.50"></text></g><g><title>Java_sun_nio_fs_UnixNativeDispatcher_mkdir0 (18 samples, 0.01%)</title><rect x="97.8841%" y="949" width="0.0123%" height="15" fill="rgb(214,65,34)" fg:x="142898" fg:w="18"/><text x="98.1341%" y="959.50"></text></g><g><title>MHN_resolve_Mem (16 samples, 0.01%)</title><rect x="97.8964%" y="949" width="0.0110%" height="15" fill="rgb(249,183,32)" fg:x="142916" fg:w="16"/><text x="98.1464%" y="959.50"></text></g><g><title>InstanceKlass::allocate_objArray (21 samples, 0.01%)</title><rect x="97.9080%" y="933" width="0.0144%" height="15" fill="rgb(218,122,24)" fg:x="142933" fg:w="21"/><text x="98.1580%" y="943.50"></text></g><g><title>CollectedHeap::array_allocate (21 samples, 0.01%)</title><rect x="97.9080%" y="917" width="0.0144%" height="15" fill="rgb(224,109,18)" fg:x="142933" fg:w="21"/><text x="98.1580%" y="927.50"></text></g><g><title>MemAllocator::allocate (21 samples, 0.01%)</title><rect x="97.9080%" y="901" width="0.0144%" height="15" fill="rgb(210,68,50)" fg:x="142933" fg:w="21"/><text x="98.1580%" y="911.50"></text></g><g><title>ObjArrayAllocator::initialize (20 samples, 0.01%)</title><rect x="97.9087%" y="885" width="0.0137%" height="15" fill="rgb(212,184,34)" fg:x="142934" fg:w="20"/><text x="98.1587%" y="895.50"></text></g><g><title>asm_exc_page_fault (19 samples, 0.01%)</title><rect x="97.9094%" y="869" width="0.0130%" height="15" fill="rgb(238,105,48)" fg:x="142935" fg:w="19"/><text x="98.1594%" y="879.50"></text></g><g><title>exc_page_fault (19 samples, 0.01%)</title><rect x="97.9094%" y="853" width="0.0130%" height="15" fill="rgb(222,134,54)" fg:x="142935" fg:w="19"/><text x="98.1594%" y="863.50"></text></g><g><title>do_user_addr_fault (19 samples, 0.01%)</title><rect x="97.9094%" y="837" width="0.0130%" height="15" fill="rgb(246,24,43)" fg:x="142935" fg:w="19"/><text x="98.1594%" y="847.50"></text></g><g><title>handle_mm_fault (19 samples, 0.01%)</title><rect x="97.9094%" y="821" width="0.0130%" height="15" fill="rgb(227,169,22)" fg:x="142935" fg:w="19"/><text x="98.1594%" y="831.50"></text></g><g><title>do_huge_pmd_anonymous_page (19 samples, 0.01%)</title><rect x="97.9094%" y="805" width="0.0130%" height="15" fill="rgb(253,152,4)" fg:x="142935" fg:w="19"/><text x="98.1594%" y="815.50"></text></g><g><title>OptoRuntime::new_array_C (27 samples, 0.02%)</title><rect x="97.9080%" y="949" width="0.0185%" height="15" fill="rgb(219,158,36)" fg:x="142933" fg:w="27"/><text x="98.1580%" y="959.50"></text></g><g><title>OptoRuntime::new_array_nozero_C (29 samples, 0.02%)</title><rect x="97.9265%" y="949" width="0.0199%" height="15" fill="rgb(251,128,40)" fg:x="142960" fg:w="29"/><text x="98.1765%" y="959.50"></text></g><g><title>TypeArrayKlass::allocate_common (26 samples, 0.02%)</title><rect x="97.9286%" y="933" width="0.0178%" height="15" fill="rgb(254,101,39)" fg:x="142963" fg:w="26"/><text x="98.1786%" y="943.50"></text></g><g><title>CollectedHeap::array_allocate (26 samples, 0.02%)</title><rect x="97.9286%" y="917" width="0.0178%" height="15" fill="rgb(221,168,40)" fg:x="142963" fg:w="26"/><text x="98.1786%" y="927.50"></text></g><g><title>MemAllocator::allocate (26 samples, 0.02%)</title><rect x="97.9286%" y="901" width="0.0178%" height="15" fill="rgb(221,14,27)" fg:x="142963" fg:w="26"/><text x="98.1786%" y="911.50"></text></g><g><title>ObjArrayAllocator::initialize (15 samples, 0.01%)</title><rect x="97.9361%" y="885" width="0.0103%" height="15" fill="rgb(207,36,43)" fg:x="142974" fg:w="15"/><text x="98.1861%" y="895.50"></text></g><g><title>asm_exc_page_fault (15 samples, 0.01%)</title><rect x="97.9361%" y="869" width="0.0103%" height="15" fill="rgb(240,172,53)" fg:x="142974" fg:w="15"/><text x="98.1861%" y="879.50"></text></g><g><title>exc_page_fault (15 samples, 0.01%)</title><rect x="97.9361%" y="853" width="0.0103%" height="15" fill="rgb(241,138,43)" fg:x="142974" fg:w="15"/><text x="98.1861%" y="863.50"></text></g><g><title>do_user_addr_fault (15 samples, 0.01%)</title><rect x="97.9361%" y="837" width="0.0103%" height="15" fill="rgb(227,78,19)" fg:x="142974" fg:w="15"/><text x="98.1861%" y="847.50"></text></g><g><title>handle_mm_fault (15 samples, 0.01%)</title><rect x="97.9361%" y="821" width="0.0103%" height="15" fill="rgb(215,127,44)" fg:x="142974" fg:w="15"/><text x="98.1861%" y="831.50"></text></g><g><title>do_huge_pmd_anonymous_page (15 samples, 0.01%)</title><rect x="97.9361%" y="805" width="0.0103%" height="15" fill="rgb(227,13,10)" fg:x="142974" fg:w="15"/><text x="98.1861%" y="815.50"></text></g><g><title>ObjAllocator::initialize (22 samples, 0.02%)</title><rect x="97.9491%" y="885" width="0.0151%" height="15" fill="rgb(249,177,6)" fg:x="142993" fg:w="22"/><text x="98.1991%" y="895.50"></text></g><g><title>asm_exc_page_fault (22 samples, 0.02%)</title><rect x="97.9491%" y="869" width="0.0151%" height="15" fill="rgb(215,154,26)" fg:x="142993" fg:w="22"/><text x="98.1991%" y="879.50"></text></g><g><title>exc_page_fault (22 samples, 0.02%)</title><rect x="97.9491%" y="853" width="0.0151%" height="15" fill="rgb(250,168,20)" fg:x="142993" fg:w="22"/><text x="98.1991%" y="863.50"></text></g><g><title>do_user_addr_fault (22 samples, 0.02%)</title><rect x="97.9491%" y="837" width="0.0151%" height="15" fill="rgb(222,53,38)" fg:x="142993" fg:w="22"/><text x="98.1991%" y="847.50"></text></g><g><title>handle_mm_fault (22 samples, 0.02%)</title><rect x="97.9491%" y="821" width="0.0151%" height="15" fill="rgb(245,154,5)" fg:x="142993" fg:w="22"/><text x="98.1991%" y="831.50"></text></g><g><title>do_huge_pmd_anonymous_page (22 samples, 0.02%)</title><rect x="97.9491%" y="805" width="0.0151%" height="15" fill="rgb(214,89,50)" fg:x="142993" fg:w="22"/><text x="98.1991%" y="815.50"></text></g><g><title>OptoRuntime::new_instance_C (27 samples, 0.02%)</title><rect x="97.9464%" y="949" width="0.0185%" height="15" fill="rgb(232,73,14)" fg:x="142989" fg:w="27"/><text x="98.1964%" y="959.50"></text></g><g><title>InstanceKlass::allocate_instance (26 samples, 0.02%)</title><rect x="97.9471%" y="933" width="0.0178%" height="15" fill="rgb(230,101,20)" fg:x="142990" fg:w="26"/><text x="98.1971%" y="943.50"></text></g><g><title>CollectedHeap::obj_allocate (25 samples, 0.02%)</title><rect x="97.9478%" y="917" width="0.0171%" height="15" fill="rgb(208,56,28)" fg:x="142991" fg:w="25"/><text x="98.1978%" y="927.50"></text></g><g><title>MemAllocator::allocate (25 samples, 0.02%)</title><rect x="97.9478%" y="901" width="0.0171%" height="15" fill="rgb(247,205,22)" fg:x="142991" fg:w="25"/><text x="98.1978%" y="911.50"></text></g><g><title>TieredThresholdPolicy::event (36 samples, 0.02%)</title><rect x="97.9724%" y="933" width="0.0247%" height="15" fill="rgb(252,109,51)" fg:x="143027" fg:w="36"/><text x="98.2224%" y="943.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (28 samples, 0.02%)</title><rect x="97.9779%" y="917" width="0.0192%" height="15" fill="rgb(220,40,24)" fg:x="143035" fg:w="28"/><text x="98.2279%" y="927.50"></text></g><g><title>TieredThresholdPolicy::compile (15 samples, 0.01%)</title><rect x="97.9868%" y="901" width="0.0103%" height="15" fill="rgb(251,108,7)" fg:x="143048" fg:w="15"/><text x="98.2368%" y="911.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (15 samples, 0.01%)</title><rect x="97.9868%" y="885" width="0.0103%" height="15" fill="rgb(238,102,51)" fg:x="143048" fg:w="15"/><text x="98.2368%" y="895.50"></text></g><g><title>CompileBroker::compile_method (15 samples, 0.01%)</title><rect x="97.9868%" y="869" width="0.0103%" height="15" fill="rgb(219,149,34)" fg:x="143048" fg:w="15"/><text x="98.2368%" y="879.50"></text></g><g><title>Runtime1::counter_overflow (54 samples, 0.04%)</title><rect x="97.9649%" y="949" width="0.0370%" height="15" fill="rgb(239,70,0)" fg:x="143016" fg:w="54"/><text x="98.2149%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="98.0128%" y="645" width="0.0137%" height="15" fill="rgb(246,214,23)" fg:x="143086" fg:w="20"/><text x="98.2628%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="98.0128%" y="629" width="0.0137%" height="15" fill="rgb(239,221,51)" fg:x="143086" fg:w="20"/><text x="98.2628%" y="639.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="98.0128%" y="613" width="0.0137%" height="15" fill="rgb(254,62,14)" fg:x="143086" fg:w="20"/><text x="98.2628%" y="623.50"></text></g><g><title>Monitor::IWait (24 samples, 0.02%)</title><rect x="98.0108%" y="869" width="0.0164%" height="15" fill="rgb(253,57,33)" fg:x="143083" fg:w="24"/><text x="98.2608%" y="879.50"></text></g><g><title>os::PlatformEvent::park (23 samples, 0.02%)</title><rect x="98.0115%" y="853" width="0.0158%" height="15" fill="rgb(229,34,6)" fg:x="143084" fg:w="23"/><text x="98.2615%" y="863.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.02%)</title><rect x="98.0115%" y="837" width="0.0158%" height="15" fill="rgb(235,191,23)" fg:x="143084" fg:w="23"/><text x="98.2615%" y="847.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.02%)</title><rect x="98.0115%" y="821" width="0.0158%" height="15" fill="rgb(217,207,27)" fg:x="143084" fg:w="23"/><text x="98.2615%" y="831.50"></text></g><g><title>futex_wait_cancelable (23 samples, 0.02%)</title><rect x="98.0115%" y="805" width="0.0158%" height="15" fill="rgb(232,41,44)" fg:x="143084" fg:w="23"/><text x="98.2615%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="98.0115%" y="789" width="0.0158%" height="15" fill="rgb(221,188,19)" fg:x="143084" fg:w="23"/><text x="98.2615%" y="799.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="98.0115%" y="773" width="0.0158%" height="15" fill="rgb(245,180,45)" fg:x="143084" fg:w="23"/><text x="98.2615%" y="783.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="98.0115%" y="757" width="0.0158%" height="15" fill="rgb(250,220,42)" fg:x="143084" fg:w="23"/><text x="98.2615%" y="767.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="98.0115%" y="741" width="0.0158%" height="15" fill="rgb(234,16,34)" fg:x="143084" fg:w="23"/><text x="98.2615%" y="751.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="98.0115%" y="725" width="0.0158%" height="15" fill="rgb(233,217,23)" fg:x="143084" fg:w="23"/><text x="98.2615%" y="735.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="98.0115%" y="709" width="0.0158%" height="15" fill="rgb(209,22,46)" fg:x="143084" fg:w="23"/><text x="98.2615%" y="719.50"></text></g><g><title>schedule (22 samples, 0.02%)</title><rect x="98.0122%" y="693" width="0.0151%" height="15" fill="rgb(213,101,18)" fg:x="143085" fg:w="22"/><text x="98.2622%" y="703.50"></text></g><g><title>__schedule (22 samples, 0.02%)</title><rect x="98.0122%" y="677" width="0.0151%" height="15" fill="rgb(215,179,52)" fg:x="143085" fg:w="22"/><text x="98.2622%" y="687.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="98.0128%" y="661" width="0.0144%" height="15" fill="rgb(223,50,25)" fg:x="143086" fg:w="21"/><text x="98.2628%" y="671.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (31 samples, 0.02%)</title><rect x="98.0108%" y="917" width="0.0212%" height="15" fill="rgb(224,51,44)" fg:x="143083" fg:w="31"/><text x="98.2608%" y="927.50"></text></g><g><title>VMThread::execute (31 samples, 0.02%)</title><rect x="98.0108%" y="901" width="0.0212%" height="15" fill="rgb(224,13,54)" fg:x="143083" fg:w="31"/><text x="98.2608%" y="911.50"></text></g><g><title>Monitor::wait (31 samples, 0.02%)</title><rect x="98.0108%" y="885" width="0.0212%" height="15" fill="rgb(219,58,47)" fg:x="143083" fg:w="31"/><text x="98.2608%" y="895.50"></text></g><g><title>Runtime1::monitorenter (45 samples, 0.03%)</title><rect x="98.0039%" y="949" width="0.0308%" height="15" fill="rgb(246,124,34)" fg:x="143073" fg:w="45"/><text x="98.2539%" y="959.50"></text></g><g><title>ObjectSynchronizer::fast_enter (38 samples, 0.03%)</title><rect x="98.0087%" y="933" width="0.0260%" height="15" fill="rgb(245,109,25)" fg:x="143080" fg:w="38"/><text x="98.2587%" y="943.50"></text></g><g><title>alloc_pages_vma (35 samples, 0.02%)</title><rect x="98.0430%" y="789" width="0.0240%" height="15" fill="rgb(235,48,23)" fg:x="143130" fg:w="35"/><text x="98.2930%" y="799.50"></text></g><g><title>__alloc_pages_nodemask (35 samples, 0.02%)</title><rect x="98.0430%" y="773" width="0.0240%" height="15" fill="rgb(229,203,36)" fg:x="143130" fg:w="35"/><text x="98.2930%" y="783.50"></text></g><g><title>get_page_from_freelist (35 samples, 0.02%)</title><rect x="98.0430%" y="757" width="0.0240%" height="15" fill="rgb(234,180,9)" fg:x="143130" fg:w="35"/><text x="98.2930%" y="767.50"></text></g><g><title>prep_new_page (34 samples, 0.02%)</title><rect x="98.0437%" y="741" width="0.0233%" height="15" fill="rgb(228,98,45)" fg:x="143131" fg:w="34"/><text x="98.2937%" y="751.50"></text></g><g><title>kernel_init_free_pages (34 samples, 0.02%)</title><rect x="98.0437%" y="725" width="0.0233%" height="15" fill="rgb(240,24,36)" fg:x="143131" fg:w="34"/><text x="98.2937%" y="735.50"></text></g><g><title>clear_page_erms (34 samples, 0.02%)</title><rect x="98.0437%" y="709" width="0.0233%" height="15" fill="rgb(227,154,19)" fg:x="143131" fg:w="34"/><text x="98.2937%" y="719.50"></text></g><g><title>clear_huge_page (15 samples, 0.01%)</title><rect x="98.0670%" y="789" width="0.0103%" height="15" fill="rgb(231,2,48)" fg:x="143165" fg:w="15"/><text x="98.3170%" y="799.50"></text></g><g><title>clear_subpage (15 samples, 0.01%)</title><rect x="98.0670%" y="773" width="0.0103%" height="15" fill="rgb(219,216,0)" fg:x="143165" fg:w="15"/><text x="98.3170%" y="783.50"></text></g><g><title>clear_page_erms (15 samples, 0.01%)</title><rect x="98.0670%" y="757" width="0.0103%" height="15" fill="rgb(251,88,0)" fg:x="143165" fg:w="15"/><text x="98.3170%" y="767.50"></text></g><g><title>ObjAllocator::initialize (54 samples, 0.04%)</title><rect x="98.0416%" y="885" width="0.0370%" height="15" fill="rgb(242,45,45)" fg:x="143128" fg:w="54"/><text x="98.2916%" y="895.50"></text></g><g><title>asm_exc_page_fault (54 samples, 0.04%)</title><rect x="98.0416%" y="869" width="0.0370%" height="15" fill="rgb(218,149,45)" fg:x="143128" fg:w="54"/><text x="98.2916%" y="879.50"></text></g><g><title>exc_page_fault (54 samples, 0.04%)</title><rect x="98.0416%" y="853" width="0.0370%" height="15" fill="rgb(247,194,10)" fg:x="143128" fg:w="54"/><text x="98.2916%" y="863.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.04%)</title><rect x="98.0416%" y="837" width="0.0370%" height="15" fill="rgb(234,33,37)" fg:x="143128" fg:w="54"/><text x="98.2916%" y="847.50"></text></g><g><title>handle_mm_fault (54 samples, 0.04%)</title><rect x="98.0416%" y="821" width="0.0370%" height="15" fill="rgb(218,61,13)" fg:x="143128" fg:w="54"/><text x="98.2916%" y="831.50"></text></g><g><title>do_huge_pmd_anonymous_page (54 samples, 0.04%)</title><rect x="98.0416%" y="805" width="0.0370%" height="15" fill="rgb(210,80,52)" fg:x="143128" fg:w="54"/><text x="98.2916%" y="815.50"></text></g><g><title>InstanceKlass::allocate_instance (59 samples, 0.04%)</title><rect x="98.0389%" y="933" width="0.0404%" height="15" fill="rgb(218,203,27)" fg:x="143124" fg:w="59"/><text x="98.2889%" y="943.50"></text></g><g><title>CollectedHeap::obj_allocate (58 samples, 0.04%)</title><rect x="98.0396%" y="917" width="0.0397%" height="15" fill="rgb(209,126,33)" fg:x="143125" fg:w="58"/><text x="98.2896%" y="927.50"></text></g><g><title>MemAllocator::allocate (58 samples, 0.04%)</title><rect x="98.0396%" y="901" width="0.0397%" height="15" fill="rgb(234,173,41)" fg:x="143125" fg:w="58"/><text x="98.2896%" y="911.50"></text></g><g><title>Runtime1::new_instance (61 samples, 0.04%)</title><rect x="98.0382%" y="949" width="0.0418%" height="15" fill="rgb(228,166,9)" fg:x="143123" fg:w="61"/><text x="98.2882%" y="959.50"></text></g><g><title>__pthread_cond_wait (15 samples, 0.01%)</title><rect x="98.0998%" y="901" width="0.0103%" height="15" fill="rgb(208,124,43)" fg:x="143213" fg:w="15"/><text x="98.3498%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (15 samples, 0.01%)</title><rect x="98.0998%" y="885" width="0.0103%" height="15" fill="rgb(212,154,38)" fg:x="143213" fg:w="15"/><text x="98.3498%" y="895.50"></text></g><g><title>futex_wait_cancelable (15 samples, 0.01%)</title><rect x="98.0998%" y="869" width="0.0103%" height="15" fill="rgb(246,179,35)" fg:x="143213" fg:w="15"/><text x="98.3498%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.01%)</title><rect x="98.0998%" y="853" width="0.0103%" height="15" fill="rgb(251,3,50)" fg:x="143213" fg:w="15"/><text x="98.3498%" y="863.50"></text></g><g><title>do_syscall_64 (15 samples, 0.01%)</title><rect x="98.0998%" y="837" width="0.0103%" height="15" fill="rgb(219,96,8)" fg:x="143213" fg:w="15"/><text x="98.3498%" y="847.50"></text></g><g><title>__x64_sys_futex (15 samples, 0.01%)</title><rect x="98.0998%" y="821" width="0.0103%" height="15" fill="rgb(251,216,33)" fg:x="143213" fg:w="15"/><text x="98.3498%" y="831.50"></text></g><g><title>do_futex (15 samples, 0.01%)</title><rect x="98.0998%" y="805" width="0.0103%" height="15" fill="rgb(243,145,29)" fg:x="143213" fg:w="15"/><text x="98.3498%" y="815.50"></text></g><g><title>futex_wait (15 samples, 0.01%)</title><rect x="98.0998%" y="789" width="0.0103%" height="15" fill="rgb(210,75,20)" fg:x="143213" fg:w="15"/><text x="98.3498%" y="799.50"></text></g><g><title>ObjectMonitor::enter (39 samples, 0.03%)</title><rect x="98.0854%" y="933" width="0.0267%" height="15" fill="rgb(235,56,8)" fg:x="143192" fg:w="39"/><text x="98.3354%" y="943.50"></text></g><g><title>os::PlatformEvent::park (26 samples, 0.02%)</title><rect x="98.0944%" y="917" width="0.0178%" height="15" fill="rgb(226,175,49)" fg:x="143205" fg:w="26"/><text x="98.3444%" y="927.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (40 samples, 0.03%)</title><rect x="98.0854%" y="949" width="0.0274%" height="15" fill="rgb(242,204,23)" fg:x="143192" fg:w="40"/><text x="98.3354%" y="959.50"></text></g><g><title>SharedRuntime::handle_wrong_method_ic_miss (19 samples, 0.01%)</title><rect x="98.1286%" y="949" width="0.0130%" height="15" fill="rgb(225,104,24)" fg:x="143255" fg:w="19"/><text x="98.3786%" y="959.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (18 samples, 0.01%)</title><rect x="98.1293%" y="933" width="0.0123%" height="15" fill="rgb(253,34,1)" fg:x="143256" fg:w="18"/><text x="98.3793%" y="943.50"></text></g><g><title>ClassFileParser::parse_constant_pool (19 samples, 0.01%)</title><rect x="98.1642%" y="869" width="0.0130%" height="15" fill="rgb(233,199,23)" fg:x="143307" fg:w="19"/><text x="98.4142%" y="879.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (19 samples, 0.01%)</title><rect x="98.1642%" y="853" width="0.0130%" height="15" fill="rgb(247,7,51)" fg:x="143307" fg:w="19"/><text x="98.4142%" y="863.50"></text></g><g><title>SymbolTable::lookup_only (18 samples, 0.01%)</title><rect x="98.1649%" y="837" width="0.0123%" height="15" fill="rgb(214,146,12)" fg:x="143308" fg:w="18"/><text x="98.4149%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (37 samples, 0.03%)</title><rect x="98.1629%" y="901" width="0.0253%" height="15" fill="rgb(234,181,43)" fg:x="143305" fg:w="37"/><text x="98.4129%" y="911.50"></text></g><g><title>ClassFileParser::parse_stream (37 samples, 0.03%)</title><rect x="98.1629%" y="885" width="0.0253%" height="15" fill="rgb(239,148,6)" fg:x="143305" fg:w="37"/><text x="98.4129%" y="895.50"></text></g><g><title>KlassFactory::create_from_stream (54 samples, 0.04%)</title><rect x="98.1622%" y="917" width="0.0370%" height="15" fill="rgb(206,151,17)" fg:x="143304" fg:w="54"/><text x="98.4122%" y="927.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (82 samples, 0.06%)</title><rect x="98.1498%" y="949" width="0.0562%" height="15" fill="rgb(213,215,10)" fg:x="143286" fg:w="82"/><text x="98.3998%" y="959.50"></text></g><g><title>SystemDictionary::parse_stream (80 samples, 0.05%)</title><rect x="98.1512%" y="933" width="0.0548%" height="15" fill="rgb(215,220,44)" fg:x="143288" fg:w="80"/><text x="98.4012%" y="943.50"></text></g><g><title>KlassFactory::create_from_stream (16 samples, 0.01%)</title><rect x="98.2087%" y="885" width="0.0110%" height="15" fill="rgb(245,205,37)" fg:x="143372" fg:w="16"/><text x="98.4587%" y="895.50"></text></g><g><title>Unsafe_DefineClass0 (21 samples, 0.01%)</title><rect x="98.2060%" y="949" width="0.0144%" height="15" fill="rgb(245,130,43)" fg:x="143368" fg:w="21"/><text x="98.4560%" y="959.50"></text></g><g><title>JVM_DefineClass (21 samples, 0.01%)</title><rect x="98.2060%" y="933" width="0.0144%" height="15" fill="rgb(231,227,38)" fg:x="143368" fg:w="21"/><text x="98.4560%" y="943.50"></text></g><g><title>jvm_define_class_common (21 samples, 0.01%)</title><rect x="98.2060%" y="917" width="0.0144%" height="15" fill="rgb(233,185,4)" fg:x="143368" fg:w="21"/><text x="98.4560%" y="927.50"></text></g><g><title>SystemDictionary::resolve_from_stream (17 samples, 0.01%)</title><rect x="98.2087%" y="901" width="0.0116%" height="15" fill="rgb(224,154,43)" fg:x="143372" fg:w="17"/><text x="98.4587%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.01%)</title><rect x="98.2341%" y="661" width="0.0137%" height="15" fill="rgb(235,156,15)" fg:x="143409" fg:w="20"/><text x="98.4841%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="98.2341%" y="645" width="0.0137%" height="15" fill="rgb(211,55,43)" fg:x="143409" fg:w="20"/><text x="98.4841%" y="655.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="98.2341%" y="629" width="0.0137%" height="15" fill="rgb(247,149,40)" fg:x="143409" fg:w="20"/><text x="98.4841%" y="639.50"></text></g><g><title>finish_task_switch (21 samples, 0.01%)</title><rect x="98.2341%" y="677" width="0.0144%" height="15" fill="rgb(232,171,16)" fg:x="143409" fg:w="21"/><text x="98.4841%" y="687.50"></text></g><g><title>__pthread_cond_wait (24 samples, 0.02%)</title><rect x="98.2327%" y="853" width="0.0164%" height="15" fill="rgb(215,117,49)" fg:x="143407" fg:w="24"/><text x="98.4827%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="98.2327%" y="837" width="0.0164%" height="15" fill="rgb(246,194,11)" fg:x="143407" fg:w="24"/><text x="98.4827%" y="847.50"></text></g><g><title>futex_wait_cancelable (24 samples, 0.02%)</title><rect x="98.2327%" y="821" width="0.0164%" height="15" fill="rgb(242,101,44)" fg:x="143407" fg:w="24"/><text x="98.4827%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="98.2334%" y="805" width="0.0158%" height="15" fill="rgb(226,174,6)" fg:x="143408" fg:w="23"/><text x="98.4834%" y="815.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="98.2334%" y="789" width="0.0158%" height="15" fill="rgb(213,150,20)" fg:x="143408" fg:w="23"/><text x="98.4834%" y="799.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="98.2334%" y="773" width="0.0158%" height="15" fill="rgb(222,124,42)" fg:x="143408" fg:w="23"/><text x="98.4834%" y="783.50"></text></g><g><title>do_futex (23 samples, 0.02%)</title><rect x="98.2334%" y="757" width="0.0158%" height="15" fill="rgb(250,19,47)" fg:x="143408" fg:w="23"/><text x="98.4834%" y="767.50"></text></g><g><title>futex_wait (23 samples, 0.02%)</title><rect x="98.2334%" y="741" width="0.0158%" height="15" fill="rgb(241,217,19)" fg:x="143408" fg:w="23"/><text x="98.4834%" y="751.50"></text></g><g><title>futex_wait_queue_me (23 samples, 0.02%)</title><rect x="98.2334%" y="725" width="0.0158%" height="15" fill="rgb(207,210,34)" fg:x="143408" fg:w="23"/><text x="98.4834%" y="735.50"></text></g><g><title>schedule (22 samples, 0.02%)</title><rect x="98.2341%" y="709" width="0.0151%" height="15" fill="rgb(244,45,4)" fg:x="143409" fg:w="22"/><text x="98.4841%" y="719.50"></text></g><g><title>__schedule (22 samples, 0.02%)</title><rect x="98.2341%" y="693" width="0.0151%" height="15" fill="rgb(252,134,50)" fg:x="143409" fg:w="22"/><text x="98.4841%" y="703.50"></text></g><g><title>Monitor::lock_without_safepoint_check (25 samples, 0.02%)</title><rect x="98.2327%" y="901" width="0.0171%" height="15" fill="rgb(238,74,2)" fg:x="143407" fg:w="25"/><text x="98.4827%" y="911.50"></text></g><g><title>Monitor::ILock (25 samples, 0.02%)</title><rect x="98.2327%" y="885" width="0.0171%" height="15" fill="rgb(226,58,46)" fg:x="143407" fg:w="25"/><text x="98.4827%" y="895.50"></text></g><g><title>os::PlatformEvent::park (25 samples, 0.02%)</title><rect x="98.2327%" y="869" width="0.0171%" height="15" fill="rgb(232,83,35)" fg:x="143407" fg:w="25"/><text x="98.4827%" y="879.50"></text></g><g><title>SafepointSynchronize::block (27 samples, 0.02%)</title><rect x="98.2327%" y="917" width="0.0185%" height="15" fill="rgb(212,148,47)" fg:x="143407" fg:w="27"/><text x="98.4827%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (21 samples, 0.01%)</title><rect x="98.2526%" y="725" width="0.0144%" height="15" fill="rgb(235,29,1)" fg:x="143436" fg:w="21"/><text x="98.5026%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (20 samples, 0.01%)</title><rect x="98.2533%" y="709" width="0.0137%" height="15" fill="rgb(247,55,37)" fg:x="143437" fg:w="20"/><text x="98.5033%" y="719.50"></text></g><g><title>native_write_msr (20 samples, 0.01%)</title><rect x="98.2533%" y="693" width="0.0137%" height="15" fill="rgb(222,48,3)" fg:x="143437" fg:w="20"/><text x="98.5033%" y="703.50"></text></g><g><title>do_futex (22 samples, 0.02%)</title><rect x="98.2526%" y="821" width="0.0151%" height="15" fill="rgb(234,21,33)" fg:x="143436" fg:w="22"/><text x="98.5026%" y="831.50"></text></g><g><title>futex_wait (22 samples, 0.02%)</title><rect x="98.2526%" y="805" width="0.0151%" height="15" fill="rgb(247,178,53)" fg:x="143436" fg:w="22"/><text x="98.5026%" y="815.50"></text></g><g><title>futex_wait_queue_me (22 samples, 0.02%)</title><rect x="98.2526%" y="789" width="0.0151%" height="15" fill="rgb(225,75,7)" fg:x="143436" fg:w="22"/><text x="98.5026%" y="799.50"></text></g><g><title>schedule (22 samples, 0.02%)</title><rect x="98.2526%" y="773" width="0.0151%" height="15" fill="rgb(219,199,7)" fg:x="143436" fg:w="22"/><text x="98.5026%" y="783.50"></text></g><g><title>__schedule (22 samples, 0.02%)</title><rect x="98.2526%" y="757" width="0.0151%" height="15" fill="rgb(209,93,42)" fg:x="143436" fg:w="22"/><text x="98.5026%" y="767.50"></text></g><g><title>finish_task_switch (22 samples, 0.02%)</title><rect x="98.2526%" y="741" width="0.0151%" height="15" fill="rgb(240,175,17)" fg:x="143436" fg:w="22"/><text x="98.5026%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (24 samples, 0.02%)</title><rect x="98.2519%" y="917" width="0.0164%" height="15" fill="rgb(232,106,7)" fg:x="143435" fg:w="24"/><text x="98.5019%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (24 samples, 0.02%)</title><rect x="98.2519%" y="901" width="0.0164%" height="15" fill="rgb(242,106,43)" fg:x="143435" fg:w="24"/><text x="98.5019%" y="911.50"></text></g><g><title>futex_abstimed_wait_cancelable (24 samples, 0.02%)</title><rect x="98.2519%" y="885" width="0.0164%" height="15" fill="rgb(242,61,37)" fg:x="143435" fg:w="24"/><text x="98.5019%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.02%)</title><rect x="98.2526%" y="869" width="0.0158%" height="15" fill="rgb(205,72,10)" fg:x="143436" fg:w="23"/><text x="98.5026%" y="879.50"></text></g><g><title>do_syscall_64 (23 samples, 0.02%)</title><rect x="98.2526%" y="853" width="0.0158%" height="15" fill="rgb(214,184,36)" fg:x="143436" fg:w="23"/><text x="98.5026%" y="863.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.02%)</title><rect x="98.2526%" y="837" width="0.0158%" height="15" fill="rgb(206,107,18)" fg:x="143436" fg:w="23"/><text x="98.5026%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (294 samples, 0.20%)</title><rect x="98.2957%" y="725" width="0.2014%" height="15" fill="rgb(210,75,5)" fg:x="143499" fg:w="294"/><text x="98.5457%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (290 samples, 0.20%)</title><rect x="98.2985%" y="709" width="0.1986%" height="15" fill="rgb(205,3,19)" fg:x="143503" fg:w="290"/><text x="98.5485%" y="719.50"></text></g><g><title>native_write_msr (287 samples, 0.20%)</title><rect x="98.3005%" y="693" width="0.1966%" height="15" fill="rgb(207,181,42)" fg:x="143506" fg:w="287"/><text x="98.5505%" y="703.50"></text></g><g><title>finish_task_switch (310 samples, 0.21%)</title><rect x="98.2923%" y="741" width="0.2123%" height="15" fill="rgb(229,179,43)" fg:x="143494" fg:w="310"/><text x="98.5423%" y="751.50"></text></g><g><title>futex_wait_queue_me (340 samples, 0.23%)</title><rect x="98.2793%" y="789" width="0.2329%" height="15" fill="rgb(246,95,30)" fg:x="143475" fg:w="340"/><text x="98.5293%" y="799.50"></text></g><g><title>schedule (336 samples, 0.23%)</title><rect x="98.2820%" y="773" width="0.2302%" height="15" fill="rgb(234,144,45)" fg:x="143479" fg:w="336"/><text x="98.5320%" y="783.50"></text></g><g><title>__schedule (334 samples, 0.23%)</title><rect x="98.2834%" y="757" width="0.2288%" height="15" fill="rgb(250,54,25)" fg:x="143481" fg:w="334"/><text x="98.5334%" y="767.50"></text></g><g><title>do_syscall_64 (346 samples, 0.24%)</title><rect x="98.2766%" y="853" width="0.2370%" height="15" fill="rgb(215,195,40)" fg:x="143471" fg:w="346"/><text x="98.5266%" y="863.50"></text></g><g><title>__x64_sys_futex (346 samples, 0.24%)</title><rect x="98.2766%" y="837" width="0.2370%" height="15" fill="rgb(233,188,42)" fg:x="143471" fg:w="346"/><text x="98.5266%" y="847.50"></text></g><g><title>do_futex (346 samples, 0.24%)</title><rect x="98.2766%" y="821" width="0.2370%" height="15" fill="rgb(247,227,35)" fg:x="143471" fg:w="346"/><text x="98.5266%" y="831.50"></text></g><g><title>futex_wait (342 samples, 0.23%)</title><rect x="98.2793%" y="805" width="0.2343%" height="15" fill="rgb(249,124,27)" fg:x="143475" fg:w="342"/><text x="98.5293%" y="815.50"></text></g><g><title>__pthread_cond_wait (364 samples, 0.25%)</title><rect x="98.2683%" y="917" width="0.2493%" height="15" fill="rgb(219,207,25)" fg:x="143459" fg:w="364"/><text x="98.5183%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (364 samples, 0.25%)</title><rect x="98.2683%" y="901" width="0.2493%" height="15" fill="rgb(241,216,47)" fg:x="143459" fg:w="364"/><text x="98.5183%" y="911.50"></text></g><g><title>futex_wait_cancelable (358 samples, 0.25%)</title><rect x="98.2724%" y="885" width="0.2452%" height="15" fill="rgb(233,82,50)" fg:x="143465" fg:w="358"/><text x="98.5224%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (353 samples, 0.24%)</title><rect x="98.2759%" y="869" width="0.2418%" height="15" fill="rgb(232,63,2)" fg:x="143470" fg:w="353"/><text x="98.5259%" y="879.50"></text></g><g><title>Parker::park (432 samples, 0.30%)</title><rect x="98.2259%" y="933" width="0.2959%" height="15" fill="rgb(236,184,28)" fg:x="143397" fg:w="432"/><text x="98.4759%" y="943.50"></text></g><g><title>Unsafe_Park (438 samples, 0.30%)</title><rect x="98.2238%" y="949" width="0.3000%" height="15" fill="rgb(254,63,27)" fg:x="143394" fg:w="438"/><text x="98.4738%" y="959.50"></text></g><g><title>select_task_rq_fair (17 samples, 0.01%)</title><rect x="98.5512%" y="789" width="0.0116%" height="15" fill="rgb(253,106,28)" fg:x="143872" fg:w="17"/><text x="98.8012%" y="799.50"></text></g><g><title>enqueue_entity (19 samples, 0.01%)</title><rect x="98.5670%" y="757" width="0.0130%" height="15" fill="rgb(225,141,39)" fg:x="143895" fg:w="19"/><text x="98.8170%" y="767.50"></text></g><g><title>enqueue_task_fair (24 samples, 0.02%)</title><rect x="98.5656%" y="773" width="0.0164%" height="15" fill="rgb(222,157,20)" fg:x="143893" fg:w="24"/><text x="98.8156%" y="783.50"></text></g><g><title>ttwu_do_activate (40 samples, 0.03%)</title><rect x="98.5636%" y="789" width="0.0274%" height="15" fill="rgb(210,190,9)" fg:x="143890" fg:w="40"/><text x="98.8136%" y="799.50"></text></g><g><title>do_syscall_64 (81 samples, 0.06%)</title><rect x="98.5389%" y="885" width="0.0555%" height="15" fill="rgb(242,167,7)" fg:x="143854" fg:w="81"/><text x="98.7889%" y="895.50"></text></g><g><title>__x64_sys_futex (78 samples, 0.05%)</title><rect x="98.5410%" y="869" width="0.0534%" height="15" fill="rgb(227,82,41)" fg:x="143857" fg:w="78"/><text x="98.7910%" y="879.50"></text></g><g><title>do_futex (77 samples, 0.05%)</title><rect x="98.5417%" y="853" width="0.0527%" height="15" fill="rgb(222,131,13)" fg:x="143858" fg:w="77"/><text x="98.7917%" y="863.50"></text></g><g><title>futex_wake (76 samples, 0.05%)</title><rect x="98.5423%" y="837" width="0.0521%" height="15" fill="rgb(221,98,26)" fg:x="143859" fg:w="76"/><text x="98.7923%" y="847.50"></text></g><g><title>wake_up_q (68 samples, 0.05%)</title><rect x="98.5478%" y="821" width="0.0466%" height="15" fill="rgb(251,63,52)" fg:x="143867" fg:w="68"/><text x="98.7978%" y="831.50"></text></g><g><title>try_to_wake_up (66 samples, 0.05%)</title><rect x="98.5492%" y="805" width="0.0452%" height="15" fill="rgb(246,25,43)" fg:x="143869" fg:w="66"/><text x="98.7992%" y="815.50"></text></g><g><title>Unsafe_Unpark (102 samples, 0.07%)</title><rect x="98.5259%" y="949" width="0.0699%" height="15" fill="rgb(247,167,15)" fg:x="143835" fg:w="102"/><text x="98.7759%" y="959.50"></text></g><g><title>__pthread_cond_signal (84 samples, 0.06%)</title><rect x="98.5382%" y="933" width="0.0575%" height="15" fill="rgb(240,104,42)" fg:x="143853" fg:w="84"/><text x="98.7882%" y="943.50"></text></g><g><title>futex_wake (83 samples, 0.06%)</title><rect x="98.5389%" y="917" width="0.0569%" height="15" fill="rgb(224,54,6)" fg:x="143854" fg:w="83"/><text x="98.7889%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.06%)</title><rect x="98.5389%" y="901" width="0.0569%" height="15" fill="rgb(244,108,35)" fg:x="143854" fg:w="83"/><text x="98.7889%" y="911.50"></text></g><g><title>scheduler_tick (21 samples, 0.01%)</title><rect x="98.6252%" y="821" width="0.0144%" height="15" fill="rgb(216,154,2)" fg:x="143980" fg:w="21"/><text x="98.8752%" y="831.50"></text></g><g><title>__hrtimer_run_queues (34 samples, 0.02%)</title><rect x="98.6170%" y="885" width="0.0233%" height="15" fill="rgb(222,8,47)" fg:x="143968" fg:w="34"/><text x="98.8670%" y="895.50"></text></g><g><title>tick_sched_timer (25 samples, 0.02%)</title><rect x="98.6232%" y="869" width="0.0171%" height="15" fill="rgb(252,93,1)" fg:x="143977" fg:w="25"/><text x="98.8732%" y="879.50"></text></g><g><title>tick_sched_handle (25 samples, 0.02%)</title><rect x="98.6232%" y="853" width="0.0171%" height="15" fill="rgb(223,226,51)" fg:x="143977" fg:w="25"/><text x="98.8732%" y="863.50"></text></g><g><title>update_process_times (25 samples, 0.02%)</title><rect x="98.6232%" y="837" width="0.0171%" height="15" fill="rgb(206,147,9)" fg:x="143977" fg:w="25"/><text x="98.8732%" y="847.50"></text></g><g><title>hrtimer_interrupt (41 samples, 0.03%)</title><rect x="98.6149%" y="901" width="0.0281%" height="15" fill="rgb(248,180,41)" fg:x="143965" fg:w="41"/><text x="98.8649%" y="911.50"></text></g><g><title>__sysvec_apic_timer_interrupt (44 samples, 0.03%)</title><rect x="98.6136%" y="917" width="0.0301%" height="15" fill="rgb(209,47,50)" fg:x="143963" fg:w="44"/><text x="98.8636%" y="927.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (62 samples, 0.04%)</title><rect x="98.6088%" y="949" width="0.0425%" height="15" fill="rgb(243,65,31)" fg:x="143956" fg:w="62"/><text x="98.8588%" y="959.50"></text></g><g><title>sysvec_apic_timer_interrupt (55 samples, 0.04%)</title><rect x="98.6136%" y="933" width="0.0377%" height="15" fill="rgb(228,128,1)" fg:x="143963" fg:w="55"/><text x="98.8636%" y="943.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="98.6512%" y="901" width="0.0110%" height="15" fill="rgb(231,192,16)" fg:x="144018" fg:w="16"/><text x="98.9012%" y="911.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="98.6512%" y="885" width="0.0110%" height="15" fill="rgb(224,26,40)" fg:x="144018" fg:w="16"/><text x="98.9012%" y="895.50"></text></g><g><title>irqentry_exit_to_user_mode (17 samples, 0.01%)</title><rect x="98.6512%" y="933" width="0.0116%" height="15" fill="rgb(214,192,17)" fg:x="144018" fg:w="17"/><text x="98.9012%" y="943.50"></text></g><g><title>exit_to_user_mode_prepare (17 samples, 0.01%)</title><rect x="98.6512%" y="917" width="0.0116%" height="15" fill="rgb(225,147,18)" fg:x="144018" fg:w="17"/><text x="98.9012%" y="927.50"></text></g><g><title>asm_sysvec_reschedule_ipi (18 samples, 0.01%)</title><rect x="98.6512%" y="949" width="0.0123%" height="15" fill="rgb(205,35,11)" fg:x="144018" fg:w="18"/><text x="98.9012%" y="959.50"></text></g><g><title>do_filp_open (38 samples, 0.03%)</title><rect x="98.6923%" y="853" width="0.0260%" height="15" fill="rgb(242,40,42)" fg:x="144078" fg:w="38"/><text x="98.9423%" y="863.50"></text></g><g><title>path_openat (37 samples, 0.03%)</title><rect x="98.6930%" y="837" width="0.0253%" height="15" fill="rgb(250,170,13)" fg:x="144079" fg:w="37"/><text x="98.9430%" y="847.50"></text></g><g><title>__libc_open64 (48 samples, 0.03%)</title><rect x="98.6882%" y="933" width="0.0329%" height="15" fill="rgb(240,161,28)" fg:x="144072" fg:w="48"/><text x="98.9382%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.03%)</title><rect x="98.6903%" y="917" width="0.0308%" height="15" fill="rgb(245,179,12)" fg:x="144075" fg:w="45"/><text x="98.9403%" y="927.50"></text></g><g><title>do_syscall_64 (45 samples, 0.03%)</title><rect x="98.6903%" y="901" width="0.0308%" height="15" fill="rgb(250,92,32)" fg:x="144075" fg:w="45"/><text x="98.9403%" y="911.50"></text></g><g><title>__x64_sys_openat (45 samples, 0.03%)</title><rect x="98.6903%" y="885" width="0.0308%" height="15" fill="rgb(233,10,40)" fg:x="144075" fg:w="45"/><text x="98.9403%" y="895.50"></text></g><g><title>do_sys_openat2 (44 samples, 0.03%)</title><rect x="98.6910%" y="869" width="0.0301%" height="15" fill="rgb(217,98,1)" fg:x="144076" fg:w="44"/><text x="98.9410%" y="879.50"></text></g><g><title>fileOpen (66 samples, 0.05%)</title><rect x="98.6786%" y="949" width="0.0452%" height="15" fill="rgb(238,202,7)" fg:x="144058" fg:w="66"/><text x="98.9286%" y="959.50"></text></g><g><title>jni_IsAssignableFrom (26 samples, 0.02%)</title><rect x="98.7403%" y="949" width="0.0178%" height="15" fill="rgb(222,91,3)" fg:x="144148" fg:w="26"/><text x="98.9903%" y="959.50"></text></g><g><title>[perf-627991.map] (34,550 samples, 23.67%)</title><rect x="75.1046%" y="965" width="23.6665%" height="15" fill="rgb(211,170,49)" fg:x="109643" fg:w="34550"/><text x="75.3546%" y="975.50">[perf-627991.map]</text></g><g><title>os::javaTimeNanos (16 samples, 0.01%)</title><rect x="98.7602%" y="949" width="0.0110%" height="15" fill="rgb(253,139,18)" fg:x="144177" fg:w="16"/><text x="99.0102%" y="959.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (19 samples, 0.01%)</title><rect x="98.7896%" y="933" width="0.0130%" height="15" fill="rgb(222,4,43)" fg:x="144220" fg:w="19"/><text x="99.0396%" y="943.50"></text></g><g><title>SharedRuntime::find_callee_method (21 samples, 0.01%)</title><rect x="98.7889%" y="949" width="0.0144%" height="15" fill="rgb(207,205,12)" fg:x="144219" fg:w="21"/><text x="99.0389%" y="959.50"></text></g><g><title>Monitor::ILock (17 samples, 0.01%)</title><rect x="98.8437%" y="917" width="0.0116%" height="15" fill="rgb(216,159,46)" fg:x="144299" fg:w="17"/><text x="99.0937%" y="927.50"></text></g><g><title>os::PlatformEvent::park (16 samples, 0.01%)</title><rect x="98.8444%" y="901" width="0.0110%" height="15" fill="rgb(236,115,1)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="911.50"></text></g><g><title>__pthread_cond_wait (16 samples, 0.01%)</title><rect x="98.8444%" y="885" width="0.0110%" height="15" fill="rgb(251,35,33)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.01%)</title><rect x="98.8444%" y="869" width="0.0110%" height="15" fill="rgb(248,62,51)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="879.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.01%)</title><rect x="98.8444%" y="853" width="0.0110%" height="15" fill="rgb(254,180,19)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.01%)</title><rect x="98.8444%" y="837" width="0.0110%" height="15" fill="rgb(217,100,32)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="847.50"></text></g><g><title>do_syscall_64 (16 samples, 0.01%)</title><rect x="98.8444%" y="821" width="0.0110%" height="15" fill="rgb(224,71,22)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="831.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.01%)</title><rect x="98.8444%" y="805" width="0.0110%" height="15" fill="rgb(251,185,33)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="815.50"></text></g><g><title>do_futex (16 samples, 0.01%)</title><rect x="98.8444%" y="789" width="0.0110%" height="15" fill="rgb(209,75,48)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="799.50"></text></g><g><title>futex_wait (16 samples, 0.01%)</title><rect x="98.8444%" y="773" width="0.0110%" height="15" fill="rgb(253,190,16)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="783.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.01%)</title><rect x="98.8444%" y="757" width="0.0110%" height="15" fill="rgb(226,140,1)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="767.50"></text></g><g><title>schedule (16 samples, 0.01%)</title><rect x="98.8444%" y="741" width="0.0110%" height="15" fill="rgb(206,75,30)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="751.50"></text></g><g><title>__schedule (16 samples, 0.01%)</title><rect x="98.8444%" y="725" width="0.0110%" height="15" fill="rgb(231,208,37)" fg:x="144300" fg:w="16"/><text x="99.0944%" y="735.50"></text></g><g><title>Monitor::lock (20 samples, 0.01%)</title><rect x="98.8437%" y="933" width="0.0137%" height="15" fill="rgb(238,136,40)" fg:x="144299" fg:w="20"/><text x="99.0937%" y="943.50"></text></g><g><title>Bytecode_invoke::static_target (32 samples, 0.02%)</title><rect x="98.8609%" y="917" width="0.0219%" height="15" fill="rgb(247,137,17)" fg:x="144324" fg:w="32"/><text x="99.1109%" y="927.50"></text></g><g><title>LinkResolver::resolve_method_statically (32 samples, 0.02%)</title><rect x="98.8609%" y="901" width="0.0219%" height="15" fill="rgb(240,60,40)" fg:x="144324" fg:w="32"/><text x="99.1109%" y="911.50"></text></g><g><title>LinkResolver::resolve_method (15 samples, 0.01%)</title><rect x="98.8725%" y="885" width="0.0103%" height="15" fill="rgb(236,68,50)" fg:x="144341" fg:w="15"/><text x="99.1225%" y="895.50"></text></g><g><title>LinkResolver::resolve_invoke (25 samples, 0.02%)</title><rect x="98.8841%" y="917" width="0.0171%" height="15" fill="rgb(230,42,12)" fg:x="144358" fg:w="25"/><text x="99.1341%" y="927.50"></text></g><g><title>SharedRuntime::extract_attached_method (19 samples, 0.01%)</title><rect x="98.9026%" y="917" width="0.0130%" height="15" fill="rgb(219,16,16)" fg:x="144385" fg:w="19"/><text x="99.1526%" y="927.50"></text></g><g><title>frame::sender (35 samples, 0.02%)</title><rect x="98.9157%" y="917" width="0.0240%" height="15" fill="rgb(220,38,35)" fg:x="144404" fg:w="35"/><text x="99.1657%" y="927.50"></text></g><g><title>OopMapSet::update_register_map (33 samples, 0.02%)</title><rect x="98.9170%" y="901" width="0.0226%" height="15" fill="rgb(228,33,1)" fg:x="144406" fg:w="33"/><text x="99.1670%" y="911.50"></text></g><g><title>OopMapStream::find_next (15 samples, 0.01%)</title><rect x="98.9294%" y="885" width="0.0103%" height="15" fill="rgb(241,46,31)" fg:x="144424" fg:w="15"/><text x="99.1794%" y="895.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (118 samples, 0.08%)</title><rect x="98.8602%" y="933" width="0.0808%" height="15" fill="rgb(232,58,20)" fg:x="144323" fg:w="118"/><text x="99.1102%" y="943.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (202 samples, 0.14%)</title><rect x="98.8143%" y="949" width="0.1384%" height="15" fill="rgb(206,228,53)" fg:x="144256" fg:w="202"/><text x="99.0643%" y="959.50"></text></g><g><title>finish_task_switch (49 samples, 0.03%)</title><rect x="98.9554%" y="693" width="0.0336%" height="15" fill="rgb(206,88,33)" fg:x="144462" fg:w="49"/><text x="99.2054%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (46 samples, 0.03%)</title><rect x="98.9574%" y="677" width="0.0315%" height="15" fill="rgb(238,69,7)" fg:x="144465" fg:w="46"/><text x="99.2074%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.03%)</title><rect x="98.9602%" y="661" width="0.0288%" height="15" fill="rgb(250,21,46)" fg:x="144469" fg:w="42"/><text x="99.2102%" y="671.50"></text></g><g><title>native_write_msr (42 samples, 0.03%)</title><rect x="98.9602%" y="645" width="0.0288%" height="15" fill="rgb(215,212,21)" fg:x="144469" fg:w="42"/><text x="99.2102%" y="655.50"></text></g><g><title>do_syscall_64 (52 samples, 0.04%)</title><rect x="98.9547%" y="805" width="0.0356%" height="15" fill="rgb(211,35,12)" fg:x="144461" fg:w="52"/><text x="99.2047%" y="815.50"></text></g><g><title>__x64_sys_futex (52 samples, 0.04%)</title><rect x="98.9547%" y="789" width="0.0356%" height="15" fill="rgb(231,184,16)" fg:x="144461" fg:w="52"/><text x="99.2047%" y="799.50"></text></g><g><title>do_futex (52 samples, 0.04%)</title><rect x="98.9547%" y="773" width="0.0356%" height="15" fill="rgb(242,140,15)" fg:x="144461" fg:w="52"/><text x="99.2047%" y="783.50"></text></g><g><title>futex_wait (52 samples, 0.04%)</title><rect x="98.9547%" y="757" width="0.0356%" height="15" fill="rgb(220,37,14)" fg:x="144461" fg:w="52"/><text x="99.2047%" y="767.50"></text></g><g><title>futex_wait_queue_me (52 samples, 0.04%)</title><rect x="98.9547%" y="741" width="0.0356%" height="15" fill="rgb(223,146,22)" fg:x="144461" fg:w="52"/><text x="99.2047%" y="751.50"></text></g><g><title>schedule (52 samples, 0.04%)</title><rect x="98.9547%" y="725" width="0.0356%" height="15" fill="rgb(216,132,15)" fg:x="144461" fg:w="52"/><text x="99.2047%" y="735.50"></text></g><g><title>__schedule (51 samples, 0.03%)</title><rect x="98.9554%" y="709" width="0.0349%" height="15" fill="rgb(248,83,5)" fg:x="144462" fg:w="51"/><text x="99.2054%" y="719.50"></text></g><g><title>Monitor::lock_without_safepoint_check (56 samples, 0.04%)</title><rect x="98.9533%" y="917" width="0.0384%" height="15" fill="rgb(231,206,48)" fg:x="144459" fg:w="56"/><text x="99.2033%" y="927.50"></text></g><g><title>Monitor::ILock (56 samples, 0.04%)</title><rect x="98.9533%" y="901" width="0.0384%" height="15" fill="rgb(253,185,37)" fg:x="144459" fg:w="56"/><text x="99.2033%" y="911.50"></text></g><g><title>os::PlatformEvent::park (55 samples, 0.04%)</title><rect x="98.9540%" y="885" width="0.0377%" height="15" fill="rgb(208,21,44)" fg:x="144460" fg:w="55"/><text x="99.2040%" y="895.50"></text></g><g><title>__pthread_cond_wait (55 samples, 0.04%)</title><rect x="98.9540%" y="869" width="0.0377%" height="15" fill="rgb(236,125,4)" fg:x="144460" fg:w="55"/><text x="99.2040%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (55 samples, 0.04%)</title><rect x="98.9540%" y="853" width="0.0377%" height="15" fill="rgb(226,134,25)" fg:x="144460" fg:w="55"/><text x="99.2040%" y="863.50"></text></g><g><title>futex_wait_cancelable (54 samples, 0.04%)</title><rect x="98.9547%" y="837" width="0.0370%" height="15" fill="rgb(250,201,12)" fg:x="144461" fg:w="54"/><text x="99.2047%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.04%)</title><rect x="98.9547%" y="821" width="0.0370%" height="15" fill="rgb(225,92,18)" fg:x="144461" fg:w="54"/><text x="99.2047%" y="831.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (60 samples, 0.04%)</title><rect x="98.9533%" y="949" width="0.0411%" height="15" fill="rgb(227,35,22)" fg:x="144459" fg:w="60"/><text x="99.2033%" y="959.50"></text></g><g><title>SafepointSynchronize::block (60 samples, 0.04%)</title><rect x="98.9533%" y="933" width="0.0411%" height="15" fill="rgb(214,180,52)" fg:x="144459" fg:w="60"/><text x="99.2033%" y="943.50"></text></g><g><title>__fdget_pos (25 samples, 0.02%)</title><rect x="99.0458%" y="837" width="0.0171%" height="15" fill="rgb(233,55,38)" fg:x="144594" fg:w="25"/><text x="99.2958%" y="847.50"></text></g><g><title>copy_user_enhanced_fast_string (452 samples, 0.31%)</title><rect x="99.1335%" y="773" width="0.3096%" height="15" fill="rgb(249,171,43)" fg:x="144722" fg:w="452"/><text x="99.3835%" y="783.50"></text></g><g><title>copy_page_to_iter (479 samples, 0.33%)</title><rect x="99.1164%" y="789" width="0.3281%" height="15" fill="rgb(239,87,2)" fg:x="144697" fg:w="479"/><text x="99.3664%" y="799.50"></text></g><g><title>pagecache_get_page (72 samples, 0.05%)</title><rect x="99.4493%" y="789" width="0.0493%" height="15" fill="rgb(248,141,5)" fg:x="145183" fg:w="72"/><text x="99.6993%" y="799.50"></text></g><g><title>find_get_entry (61 samples, 0.04%)</title><rect x="99.4568%" y="773" width="0.0418%" height="15" fill="rgb(238,33,42)" fg:x="145194" fg:w="61"/><text x="99.7068%" y="783.50"></text></g><g><title>xas_load (31 samples, 0.02%)</title><rect x="99.4774%" y="757" width="0.0212%" height="15" fill="rgb(231,57,19)" fg:x="145224" fg:w="31"/><text x="99.7274%" y="767.50"></text></g><g><title>touch_atime (26 samples, 0.02%)</title><rect x="99.4986%" y="789" width="0.0178%" height="15" fill="rgb(214,78,53)" fg:x="145255" fg:w="26"/><text x="99.7486%" y="799.50"></text></g><g><title>generic_file_buffered_read (621 samples, 0.43%)</title><rect x="99.0917%" y="805" width="0.4254%" height="15" fill="rgb(206,132,29)" fg:x="144661" fg:w="621"/><text x="99.3417%" y="815.50"></text></g><g><title>new_sync_read (633 samples, 0.43%)</title><rect x="99.0849%" y="821" width="0.4336%" height="15" fill="rgb(248,174,31)" fg:x="144651" fg:w="633"/><text x="99.3349%" y="831.50"></text></g><g><title>ksys_read (706 samples, 0.48%)</title><rect x="99.0438%" y="853" width="0.4836%" height="15" fill="rgb(221,87,13)" fg:x="144591" fg:w="706"/><text x="99.2938%" y="863.50"></text></g><g><title>vfs_read (668 samples, 0.46%)</title><rect x="99.0698%" y="837" width="0.4576%" height="15" fill="rgb(223,197,17)" fg:x="144629" fg:w="668"/><text x="99.3198%" y="847.50"></text></g><g><title>do_syscall_64 (710 samples, 0.49%)</title><rect x="99.0424%" y="869" width="0.4863%" height="15" fill="rgb(220,144,50)" fg:x="144589" fg:w="710"/><text x="99.2924%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (716 samples, 0.49%)</title><rect x="99.0403%" y="885" width="0.4905%" height="15" fill="rgb(244,201,11)" fg:x="144586" fg:w="716"/><text x="99.2903%" y="895.50"></text></g><g><title>__libc_read (762 samples, 0.52%)</title><rect x="99.0122%" y="917" width="0.5220%" height="15" fill="rgb(249,81,34)" fg:x="144545" fg:w="762"/><text x="99.2622%" y="927.50"></text></g><g><title>__libc_read (761 samples, 0.52%)</title><rect x="99.0129%" y="901" width="0.5213%" height="15" fill="rgb(205,161,12)" fg:x="144546" fg:w="761"/><text x="99.2629%" y="911.50"></text></g><g><title>handleRead (766 samples, 0.52%)</title><rect x="99.0102%" y="933" width="0.5247%" height="15" fill="rgb(252,139,50)" fg:x="144542" fg:w="766"/><text x="99.2602%" y="943.50"></text></g><g><title>jni_GetArrayLength (18 samples, 0.01%)</title><rect x="99.5349%" y="933" width="0.0123%" height="15" fill="rgb(205,169,14)" fg:x="145308" fg:w="18"/><text x="99.7849%" y="943.50"></text></g><g><title>jni_GetObjectField (47 samples, 0.03%)</title><rect x="99.5472%" y="933" width="0.0322%" height="15" fill="rgb(248,198,33)" fg:x="145326" fg:w="47"/><text x="99.7972%" y="943.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (16 samples, 0.01%)</title><rect x="99.5890%" y="917" width="0.0110%" height="15" fill="rgb(236,23,21)" fg:x="145387" fg:w="16"/><text x="99.8390%" y="927.50"></text></g><g><title>[libc-2.31.so] (105 samples, 0.07%)</title><rect x="99.6089%" y="917" width="0.0719%" height="15" fill="rgb(231,13,38)" fg:x="145416" fg:w="105"/><text x="99.8589%" y="927.50"></text></g><g><title>readBytes (996 samples, 0.68%)</title><rect x="99.0006%" y="949" width="0.6823%" height="15" fill="rgb(239,139,21)" fg:x="144528" fg:w="996"/><text x="99.2506%" y="959.50"></text></g><g><title>jni_SetByteArrayRegion (151 samples, 0.10%)</title><rect x="99.5794%" y="933" width="0.1034%" height="15" fill="rgb(222,164,45)" fg:x="145373" fg:w="151"/><text x="99.8294%" y="943.50"></text></g><g><title>[unknown] (1,346 samples, 0.92%)</title><rect x="98.7711%" y="965" width="0.9220%" height="15" fill="rgb(230,52,27)" fg:x="144193" fg:w="1346"/><text x="99.0211%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (149 samples, 0.10%)</title><rect x="99.7068%" y="901" width="0.1021%" height="15" fill="rgb(227,143,42)" fg:x="145559" fg:w="149"/><text x="99.9568%" y="911.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (149 samples, 0.10%)</title><rect x="99.7068%" y="885" width="0.1021%" height="15" fill="rgb(249,127,1)" fg:x="145559" fg:w="149"/><text x="99.9568%" y="895.50"></text></g><g><title>native_write_msr (149 samples, 0.10%)</title><rect x="99.7068%" y="869" width="0.1021%" height="15" fill="rgb(243,107,26)" fg:x="145559" fg:w="149"/><text x="99.9568%" y="879.50"></text></g><g><title>schedule_tail (155 samples, 0.11%)</title><rect x="99.7048%" y="933" width="0.1062%" height="15" fill="rgb(225,7,45)" fg:x="145556" fg:w="155"/><text x="99.9548%" y="943.50"></text></g><g><title>finish_task_switch (155 samples, 0.11%)</title><rect x="99.7048%" y="917" width="0.1062%" height="15" fill="rgb(241,88,38)" fg:x="145556" fg:w="155"/><text x="99.9548%" y="927.50"></text></g><g><title>ret_from_fork (164 samples, 0.11%)</title><rect x="99.7007%" y="949" width="0.1123%" height="15" fill="rgb(226,121,9)" fg:x="145550" fg:w="164"/><text x="99.9507%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (33 samples, 0.02%)</title><rect x="99.8274%" y="677" width="0.0226%" height="15" fill="rgb(253,60,29)" fg:x="145735" fg:w="33"/><text x="100.0774%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.02%)</title><rect x="99.8294%" y="661" width="0.0205%" height="15" fill="rgb(244,181,39)" fg:x="145738" fg:w="30"/><text x="100.0794%" y="671.50"></text></g><g><title>native_write_msr (30 samples, 0.02%)</title><rect x="99.8294%" y="645" width="0.0205%" height="15" fill="rgb(252,203,31)" fg:x="145738" fg:w="30"/><text x="100.0794%" y="655.50"></text></g><g><title>do_syscall_64 (35 samples, 0.02%)</title><rect x="99.8274%" y="805" width="0.0240%" height="15" fill="rgb(224,120,8)" fg:x="145735" fg:w="35"/><text x="100.0774%" y="815.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="99.8274%" y="789" width="0.0240%" height="15" fill="rgb(205,171,54)" fg:x="145735" fg:w="35"/><text x="100.0774%" y="799.50"></text></g><g><title>do_futex (35 samples, 0.02%)</title><rect x="99.8274%" y="773" width="0.0240%" height="15" fill="rgb(235,89,11)" fg:x="145735" fg:w="35"/><text x="100.0774%" y="783.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="99.8274%" y="757" width="0.0240%" height="15" fill="rgb(212,180,28)" fg:x="145735" fg:w="35"/><text x="100.0774%" y="767.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="99.8274%" y="741" width="0.0240%" height="15" fill="rgb(247,84,49)" fg:x="145735" fg:w="35"/><text x="100.0774%" y="751.50"></text></g><g><title>schedule (35 samples, 0.02%)</title><rect x="99.8274%" y="725" width="0.0240%" height="15" fill="rgb(236,187,52)" fg:x="145735" fg:w="35"/><text x="100.0774%" y="735.50"></text></g><g><title>__schedule (35 samples, 0.02%)</title><rect x="99.8274%" y="709" width="0.0240%" height="15" fill="rgb(227,24,15)" fg:x="145735" fg:w="35"/><text x="100.0774%" y="719.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="99.8274%" y="693" width="0.0240%" height="15" fill="rgb(227,211,13)" fg:x="145735" fg:w="35"/><text x="100.0774%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.03%)</title><rect x="99.8274%" y="821" width="0.0260%" height="15" fill="rgb(245,52,14)" fg:x="145735" fg:w="38"/><text x="100.0774%" y="831.50"></text></g><g><title>Monitor::wait (44 samples, 0.03%)</title><rect x="99.8240%" y="917" width="0.0301%" height="15" fill="rgb(225,185,13)" fg:x="145730" fg:w="44"/><text x="100.0740%" y="927.50"></text></g><g><title>Monitor::IWait (44 samples, 0.03%)</title><rect x="99.8240%" y="901" width="0.0301%" height="15" fill="rgb(217,160,29)" fg:x="145730" fg:w="44"/><text x="100.0740%" y="911.50"></text></g><g><title>os::PlatformEvent::park (39 samples, 0.03%)</title><rect x="99.8274%" y="885" width="0.0267%" height="15" fill="rgb(216,115,53)" fg:x="145735" fg:w="39"/><text x="100.0774%" y="895.50"></text></g><g><title>__pthread_cond_wait (39 samples, 0.03%)</title><rect x="99.8274%" y="869" width="0.0267%" height="15" fill="rgb(236,99,5)" fg:x="145735" fg:w="39"/><text x="100.0774%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (39 samples, 0.03%)</title><rect x="99.8274%" y="853" width="0.0267%" height="15" fill="rgb(222,60,38)" fg:x="145735" fg:w="39"/><text x="100.0774%" y="863.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.03%)</title><rect x="99.8274%" y="837" width="0.0267%" height="15" fill="rgb(212,82,22)" fg:x="145735" fg:w="39"/><text x="100.0774%" y="847.50"></text></g><g><title>Thread::call_run (18 samples, 0.01%)</title><rect x="99.8541%" y="917" width="0.0123%" height="15" fill="rgb(214,48,28)" fg:x="145774" fg:w="18"/><text x="100.1041%" y="927.50"></text></g><g><title>__GI___clone (268 samples, 0.18%)</title><rect x="99.6931%" y="965" width="0.1836%" height="15" fill="rgb(245,196,50)" fg:x="145539" fg:w="268"/><text x="99.9431%" y="975.50"></text></g><g><title>start_thread (93 samples, 0.06%)</title><rect x="99.8130%" y="949" width="0.0637%" height="15" fill="rgb(225,159,46)" fg:x="145714" fg:w="93"/><text x="100.0630%" y="959.50"></text></g><g><title>thread_native_entry (77 samples, 0.05%)</title><rect x="99.8240%" y="933" width="0.0527%" height="15" fill="rgb(207,195,48)" fg:x="145730" fg:w="77"/><text x="100.0740%" y="943.50"></text></g><g><title>skyframe-evalua (36,960 samples, 25.32%)</title><rect x="74.5806%" y="981" width="25.3173%" height="15" fill="rgb(240,73,3)" fg:x="108878" fg:w="36960"/><text x="74.8306%" y="991.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (54 samples, 0.04%)</title><rect x="99.9486%" y="725" width="0.0370%" height="15" fill="rgb(245,57,23)" fg:x="145912" fg:w="54"/><text x="100.1986%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (52 samples, 0.04%)</title><rect x="99.9500%" y="709" width="0.0356%" height="15" fill="rgb(240,75,18)" fg:x="145914" fg:w="52"/><text x="100.2000%" y="719.50"></text></g><g><title>native_write_msr (52 samples, 0.04%)</title><rect x="99.9500%" y="693" width="0.0356%" height="15" fill="rgb(238,168,12)" fg:x="145914" fg:w="52"/><text x="100.2000%" y="703.50"></text></g><g><title>do_syscall_64 (58 samples, 0.04%)</title><rect x="99.9466%" y="853" width="0.0397%" height="15" fill="rgb(226,20,40)" fg:x="145909" fg:w="58"/><text x="100.1966%" y="863.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.04%)</title><rect x="99.9466%" y="837" width="0.0397%" height="15" fill="rgb(224,130,35)" fg:x="145909" fg:w="58"/><text x="100.1966%" y="847.50"></text></g><g><title>do_futex (58 samples, 0.04%)</title><rect x="99.9466%" y="821" width="0.0397%" height="15" fill="rgb(225,63,41)" fg:x="145909" fg:w="58"/><text x="100.1966%" y="831.50"></text></g><g><title>futex_wait (58 samples, 0.04%)</title><rect x="99.9466%" y="805" width="0.0397%" height="15" fill="rgb(219,3,3)" fg:x="145909" fg:w="58"/><text x="100.1966%" y="815.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.04%)</title><rect x="99.9473%" y="789" width="0.0390%" height="15" fill="rgb(218,157,4)" fg:x="145910" fg:w="57"/><text x="100.1973%" y="799.50"></text></g><g><title>schedule (57 samples, 0.04%)</title><rect x="99.9473%" y="773" width="0.0390%" height="15" fill="rgb(232,76,36)" fg:x="145910" fg:w="57"/><text x="100.1973%" y="783.50"></text></g><g><title>__schedule (57 samples, 0.04%)</title><rect x="99.9473%" y="757" width="0.0390%" height="15" fill="rgb(247,36,0)" fg:x="145910" fg:w="57"/><text x="100.1973%" y="767.50"></text></g><g><title>finish_task_switch (55 samples, 0.04%)</title><rect x="99.9486%" y="741" width="0.0377%" height="15" fill="rgb(205,2,34)" fg:x="145912" fg:w="55"/><text x="100.1986%" y="751.50"></text></g><g><title>__pthread_cond_wait (60 samples, 0.04%)</title><rect x="99.9466%" y="917" width="0.0411%" height="15" fill="rgb(239,136,13)" fg:x="145909" fg:w="60"/><text x="100.1966%" y="927.50"></text></g><g><title>__pthread_cond_wait_common (60 samples, 0.04%)</title><rect x="99.9466%" y="901" width="0.0411%" height="15" fill="rgb(253,122,12)" fg:x="145909" fg:w="60"/><text x="100.1966%" y="911.50"></text></g><g><title>futex_wait_cancelable (60 samples, 0.04%)</title><rect x="99.9466%" y="885" width="0.0411%" height="15" fill="rgb(222,174,7)" fg:x="145909" fg:w="60"/><text x="100.1966%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.04%)</title><rect x="99.9466%" y="869" width="0.0411%" height="15" fill="rgb(208,191,42)" fg:x="145909" fg:w="60"/><text x="100.1966%" y="879.50"></text></g><g><title>Parker::park (62 samples, 0.04%)</title><rect x="99.9466%" y="933" width="0.0425%" height="15" fill="rgb(237,212,15)" fg:x="145909" fg:w="62"/><text x="100.1966%" y="943.50"></text></g><g><title>Unsafe_Park (64 samples, 0.04%)</title><rect x="99.9459%" y="949" width="0.0438%" height="15" fill="rgb(215,65,20)" fg:x="145908" fg:w="64"/><text x="100.1959%" y="959.50"></text></g><g><title>[perf-627991.map] (138 samples, 0.09%)</title><rect x="99.8993%" y="965" width="0.0945%" height="15" fill="rgb(232,103,11)" fg:x="145840" fg:w="138"/><text x="100.1493%" y="975.50"></text></g><g><title>skyframe-invali (148 samples, 0.10%)</title><rect x="99.8979%" y="981" width="0.1014%" height="15" fill="rgb(235,148,18)" fg:x="145838" fg:w="148"/><text x="100.1479%" y="991.50"></text></g><g><title>all (145,987 samples, 100%)</title><rect x="0.0000%" y="997" width="100.0000%" height="15" fill="rgb(240,173,7)" fg:x="0" fg:w="145987"/><text x="0.2500%" y="1007.50"></text></g></svg></svg> -\ No newline at end of file diff --git a/results/llvm-sysroot-hermetic-j1.svg b/results/llvm-sysroot-hermetic-j1.svg @@ -0,0 +1,491 @@ +<?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="870" onload="init(evt)" viewBox="0 0 1200 870" 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="870" 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="853.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="853.00"> </text><svg id="frames" x="10" width="1180" total_samples="527212"><g><title>_dl_update_slotinfo (165 samples, 0.03%)</title><rect x="0.1920%" y="773" width="0.0313%" height="15" fill="rgb(227,0,7)" fg:x="1012" fg:w="165"/><text x="0.4420%" y="783.50"></text></g><g><title>[anon] (1,347 samples, 0.26%)</title><rect x="0.0146%" y="789" width="0.2555%" height="15" fill="rgb(217,0,24)" fg:x="77" fg:w="1347"/><text x="0.2646%" y="799.50"></text></g><g><title>[perf-947659.map] (179 samples, 0.03%)</title><rect x="0.2710%" y="789" width="0.0340%" height="15" fill="rgb(221,193,54)" fg:x="1429" fg:w="179"/><text x="0.5210%" y="799.50"></text></g><g><title>[unknown] (106 samples, 0.02%)</title><rect x="0.3050%" y="789" width="0.0201%" height="15" fill="rgb(248,212,6)" fg:x="1608" fg:w="106"/><text x="0.5550%" y="799.50"></text></g><g><title>CompileBroker::post_compile (60 samples, 0.01%)</title><rect x="0.3359%" y="677" width="0.0114%" height="15" fill="rgb(208,68,35)" fg:x="1771" fg:w="60"/><text x="0.5859%" y="687.50"></text></g><g><title>StringEventLog::log (60 samples, 0.01%)</title><rect x="0.3359%" y="661" width="0.0114%" height="15" fill="rgb(232,128,0)" fg:x="1771" fg:w="60"/><text x="0.5859%" y="671.50"></text></g><g><title>Method::print_short_name (66 samples, 0.01%)</title><rect x="0.3534%" y="661" width="0.0125%" height="15" fill="rgb(207,160,47)" fg:x="1863" fg:w="66"/><text x="0.6034%" y="671.50"></text></g><g><title>CompileTask::print (135 samples, 0.03%)</title><rect x="0.3530%" y="677" width="0.0256%" height="15" fill="rgb(228,23,34)" fg:x="1861" fg:w="135"/><text x="0.6030%" y="687.50"></text></g><g><title>outputStream::print (67 samples, 0.01%)</title><rect x="0.3659%" y="661" width="0.0127%" height="15" fill="rgb(218,30,26)" fg:x="1929" fg:w="67"/><text x="0.6159%" y="671.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (65 samples, 0.01%)</title><rect x="0.3663%" y="645" width="0.0123%" height="15" fill="rgb(220,122,19)" fg:x="1931" fg:w="65"/><text x="0.6163%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (55 samples, 0.01%)</title><rect x="0.4019%" y="517" width="0.0104%" height="15" fill="rgb(250,228,42)" fg:x="2119" fg:w="55"/><text x="0.6519%" y="527.50"></text></g><g><title>BlockBegin::iterate_preorder (84 samples, 0.02%)</title><rect x="0.4014%" y="533" width="0.0159%" height="15" fill="rgb(240,193,28)" fg:x="2116" fg:w="84"/><text x="0.6514%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (135 samples, 0.03%)</title><rect x="0.4008%" y="549" width="0.0256%" height="15" fill="rgb(216,20,37)" fg:x="2113" fg:w="135"/><text x="0.6508%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (203 samples, 0.04%)</title><rect x="0.3996%" y="565" width="0.0385%" height="15" fill="rgb(206,188,39)" fg:x="2107" fg:w="203"/><text x="0.6496%" y="575.50"></text></g><g><title>SubstitutionResolver::block_do (62 samples, 0.01%)</title><rect x="0.4264%" y="549" width="0.0118%" height="15" fill="rgb(217,207,13)" fg:x="2248" fg:w="62"/><text x="0.6764%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (205 samples, 0.04%)</title><rect x="0.3995%" y="581" width="0.0389%" height="15" fill="rgb(231,73,38)" fg:x="2106" fg:w="205"/><text x="0.6495%" y="591.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (396 samples, 0.08%)</title><rect x="0.3875%" y="597" width="0.0751%" height="15" fill="rgb(225,20,46)" fg:x="2043" fg:w="396"/><text x="0.6375%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (59 samples, 0.01%)</title><rect x="0.4660%" y="517" width="0.0112%" height="15" fill="rgb(210,31,41)" fg:x="2457" fg:w="59"/><text x="0.7160%" y="527.50"></text></g><g><title>BlockBegin::iterate_preorder (84 samples, 0.02%)</title><rect x="0.4657%" y="533" width="0.0159%" height="15" fill="rgb(221,200,47)" fg:x="2455" fg:w="84"/><text x="0.7157%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (107 samples, 0.02%)</title><rect x="0.4632%" y="565" width="0.0203%" height="15" fill="rgb(226,26,5)" fg:x="2442" fg:w="107"/><text x="0.7132%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (104 samples, 0.02%)</title><rect x="0.4638%" y="549" width="0.0197%" height="15" fill="rgb(249,33,26)" fg:x="2445" fg:w="104"/><text x="0.7138%" y="559.50"></text></g><g><title>MethodLiveness::compute_liveness (109 samples, 0.02%)</title><rect x="0.4979%" y="517" width="0.0207%" height="15" fill="rgb(235,183,28)" fg:x="2625" fg:w="109"/><text x="0.7479%" y="527.50"></text></g><g><title>MethodLiveness::init_basic_blocks (68 samples, 0.01%)</title><rect x="0.5057%" y="501" width="0.0129%" height="15" fill="rgb(221,5,38)" fg:x="2666" fg:w="68"/><text x="0.7557%" y="511.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (166 samples, 0.03%)</title><rect x="0.4873%" y="565" width="0.0315%" height="15" fill="rgb(247,18,42)" fg:x="2569" fg:w="166"/><text x="0.7373%" y="575.50"></text></g><g><title>BlockListBuilder::set_leaders (150 samples, 0.03%)</title><rect x="0.4903%" y="549" width="0.0285%" height="15" fill="rgb(241,131,45)" fg:x="2585" fg:w="150"/><text x="0.7403%" y="559.50"></text></g><g><title>ciMethod::bci_block_start (116 samples, 0.02%)</title><rect x="0.4968%" y="533" width="0.0220%" height="15" fill="rgb(249,31,29)" fg:x="2619" fg:w="116"/><text x="0.7468%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (60 samples, 0.01%)</title><rect x="0.5632%" y="453" width="0.0114%" height="15" fill="rgb(225,111,53)" fg:x="2969" fg:w="60"/><text x="0.8132%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (77 samples, 0.01%)</title><rect x="0.5605%" y="469" width="0.0146%" height="15" fill="rgb(238,160,17)" fg:x="2955" fg:w="77"/><text x="0.8105%" y="479.50"></text></g><g><title>ciField::ciField (120 samples, 0.02%)</title><rect x="0.5565%" y="485" width="0.0228%" height="15" fill="rgb(214,148,48)" fg:x="2934" fg:w="120"/><text x="0.8065%" y="495.50"></text></g><g><title>ciEnv::get_field_by_index (130 samples, 0.02%)</title><rect x="0.5550%" y="501" width="0.0247%" height="15" fill="rgb(232,36,49)" fg:x="2926" fg:w="130"/><text x="0.8050%" y="511.50"></text></g><g><title>ciBytecodeStream::get_field (149 samples, 0.03%)</title><rect x="0.5550%" y="517" width="0.0283%" height="15" fill="rgb(209,103,24)" fg:x="2926" fg:w="149"/><text x="0.8050%" y="527.50"></text></g><g><title>GraphBuilder::access_field (206 samples, 0.04%)</title><rect x="0.5463%" y="533" width="0.0391%" height="15" fill="rgb(229,88,8)" fg:x="2880" fg:w="206"/><text x="0.7963%" y="543.50"></text></g><g><title>BlockBegin::try_merge (65 samples, 0.01%)</title><rect x="0.6500%" y="453" width="0.0123%" height="15" fill="rgb(213,181,19)" fg:x="3427" fg:w="65"/><text x="0.9000%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (55 samples, 0.01%)</title><rect x="0.6758%" y="389" width="0.0104%" height="15" fill="rgb(254,191,54)" fg:x="3563" fg:w="55"/><text x="0.9258%" y="399.50"></text></g><g><title>ciField::ciField (97 samples, 0.02%)</title><rect x="0.6724%" y="405" width="0.0184%" height="15" fill="rgb(241,83,37)" fg:x="3545" fg:w="97"/><text x="0.9224%" y="415.50"></text></g><g><title>ciEnv::get_field_by_index (105 samples, 0.02%)</title><rect x="0.6713%" y="421" width="0.0199%" height="15" fill="rgb(233,36,39)" fg:x="3539" fg:w="105"/><text x="0.9213%" y="431.50"></text></g><g><title>ciBytecodeStream::get_field (128 samples, 0.02%)</title><rect x="0.6709%" y="437" width="0.0243%" height="15" fill="rgb(226,3,54)" fg:x="3537" fg:w="128"/><text x="0.9209%" y="447.50"></text></g><g><title>GraphBuilder::access_field (172 samples, 0.03%)</title><rect x="0.6635%" y="453" width="0.0326%" height="15" fill="rgb(245,192,40)" fg:x="3498" fg:w="172"/><text x="0.9135%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (60 samples, 0.01%)</title><rect x="0.7318%" y="357" width="0.0114%" height="15" fill="rgb(238,167,29)" fg:x="3858" fg:w="60"/><text x="0.9818%" y="367.50"></text></g><g><title>GraphBuilder::access_field (85 samples, 0.02%)</title><rect x="0.7282%" y="373" width="0.0161%" height="15" fill="rgb(232,182,51)" fg:x="3839" fg:w="85"/><text x="0.9782%" y="383.50"></text></g><g><title>GraphBuilder::invoke (60 samples, 0.01%)</title><rect x="0.7820%" y="213" width="0.0114%" height="15" fill="rgb(231,60,39)" fg:x="4123" fg:w="60"/><text x="1.0320%" y="223.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (102 samples, 0.02%)</title><rect x="0.7765%" y="245" width="0.0193%" height="15" fill="rgb(208,69,12)" fg:x="4094" fg:w="102"/><text x="1.0265%" y="255.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (101 samples, 0.02%)</title><rect x="0.7767%" y="229" width="0.0192%" height="15" fill="rgb(235,93,37)" fg:x="4095" fg:w="101"/><text x="1.0267%" y="239.50"></text></g><g><title>GraphBuilder::try_inline_full (145 samples, 0.03%)</title><rect x="0.7756%" y="261" width="0.0275%" height="15" fill="rgb(213,116,39)" fg:x="4089" fg:w="145"/><text x="1.0256%" y="271.50"></text></g><g><title>GraphBuilder::try_inline (157 samples, 0.03%)</title><rect x="0.7754%" y="277" width="0.0298%" height="15" fill="rgb(222,207,29)" fg:x="4088" fg:w="157"/><text x="1.0254%" y="287.50"></text></g><g><title>GraphBuilder::invoke (230 samples, 0.04%)</title><rect x="0.7729%" y="293" width="0.0436%" height="15" fill="rgb(206,96,30)" fg:x="4075" fg:w="230"/><text x="1.0229%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (335 samples, 0.06%)</title><rect x="0.7557%" y="325" width="0.0635%" height="15" fill="rgb(218,138,4)" fg:x="3984" fg:w="335"/><text x="1.0057%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (332 samples, 0.06%)</title><rect x="0.7562%" y="309" width="0.0630%" height="15" fill="rgb(250,191,14)" fg:x="3987" fg:w="332"/><text x="1.0062%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (436 samples, 0.08%)</title><rect x="0.7536%" y="341" width="0.0827%" height="15" fill="rgb(239,60,40)" fg:x="3973" fg:w="436"/><text x="1.0036%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (472 samples, 0.09%)</title><rect x="0.7532%" y="357" width="0.0895%" height="15" fill="rgb(206,27,48)" fg:x="3971" fg:w="472"/><text x="1.0032%" y="367.50"></text></g><g><title>ciObjectFactory::get_metadata (55 samples, 0.01%)</title><rect x="0.8554%" y="325" width="0.0104%" height="15" fill="rgb(225,35,8)" fg:x="4510" fg:w="55"/><text x="1.1054%" y="335.50"></text></g><g><title>ciBytecodeStream::get_method (111 samples, 0.02%)</title><rect x="0.8458%" y="357" width="0.0211%" height="15" fill="rgb(250,213,24)" fg:x="4459" fg:w="111"/><text x="1.0958%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (100 samples, 0.02%)</title><rect x="0.8479%" y="341" width="0.0190%" height="15" fill="rgb(247,123,22)" fg:x="4470" fg:w="100"/><text x="1.0979%" y="351.50"></text></g><g><title>GraphBuilder::invoke (641 samples, 0.12%)</title><rect x="0.7479%" y="373" width="0.1216%" height="15" fill="rgb(231,138,38)" fg:x="3943" fg:w="641"/><text x="0.9979%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (867 samples, 0.16%)</title><rect x="0.7151%" y="405" width="0.1644%" height="15" fill="rgb(231,145,46)" fg:x="3770" fg:w="867"/><text x="0.9651%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (859 samples, 0.16%)</title><rect x="0.7166%" y="389" width="0.1629%" height="15" fill="rgb(251,118,11)" fg:x="3778" fg:w="859"/><text x="0.9666%" y="399.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (61 samples, 0.01%)</title><rect x="0.8814%" y="389" width="0.0116%" height="15" fill="rgb(217,147,25)" fg:x="4647" fg:w="61"/><text x="1.1314%" y="399.50"></text></g><g><title>GraphBuilder::push_scope (96 samples, 0.02%)</title><rect x="0.8809%" y="405" width="0.0182%" height="15" fill="rgb(247,81,37)" fg:x="4644" fg:w="96"/><text x="1.1309%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (56 samples, 0.01%)</title><rect x="0.9008%" y="405" width="0.0106%" height="15" fill="rgb(209,12,38)" fg:x="4749" fg:w="56"/><text x="1.1508%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (54 samples, 0.01%)</title><rect x="0.9012%" y="389" width="0.0102%" height="15" fill="rgb(227,1,9)" fg:x="4751" fg:w="54"/><text x="1.1512%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (1,071 samples, 0.20%)</title><rect x="0.7088%" y="421" width="0.2031%" height="15" fill="rgb(248,47,43)" fg:x="3737" fg:w="1071"/><text x="0.9588%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (1,114 samples, 0.21%)</title><rect x="0.7073%" y="437" width="0.2113%" height="15" fill="rgb(221,10,30)" fg:x="3729" fg:w="1114"/><text x="0.9573%" y="447.50"></text></g><g><title>ciEnv::lookup_method (59 samples, 0.01%)</title><rect x="0.9306%" y="405" width="0.0112%" height="15" fill="rgb(210,229,1)" fg:x="4906" fg:w="59"/><text x="1.1806%" y="415.50"></text></g><g><title>ciSignature::ciSignature (54 samples, 0.01%)</title><rect x="0.9484%" y="357" width="0.0102%" height="15" fill="rgb(222,148,37)" fg:x="5000" fg:w="54"/><text x="1.1984%" y="367.50"></text></g><g><title>ciMethod::ciMethod (70 samples, 0.01%)</title><rect x="0.9455%" y="373" width="0.0133%" height="15" fill="rgb(234,67,33)" fg:x="4985" fg:w="70"/><text x="1.1955%" y="383.50"></text></g><g><title>ciObjectFactory::get_metadata (91 samples, 0.02%)</title><rect x="0.9417%" y="405" width="0.0173%" height="15" fill="rgb(247,98,35)" fg:x="4965" fg:w="91"/><text x="1.1917%" y="415.50"></text></g><g><title>ciObjectFactory::create_new_metadata (78 samples, 0.01%)</title><rect x="0.9442%" y="389" width="0.0148%" height="15" fill="rgb(247,138,52)" fg:x="4978" fg:w="78"/><text x="1.1942%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (174 samples, 0.03%)</title><rect x="0.9270%" y="421" width="0.0330%" height="15" fill="rgb(213,79,30)" fg:x="4887" fg:w="174"/><text x="1.1770%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (189 samples, 0.04%)</title><rect x="0.9245%" y="437" width="0.0358%" height="15" fill="rgb(246,177,23)" fg:x="4874" fg:w="189"/><text x="1.1745%" y="447.50"></text></g><g><title>GraphBuilder::invoke (1,395 samples, 0.26%)</title><rect x="0.7009%" y="453" width="0.2646%" height="15" fill="rgb(230,62,27)" fg:x="3695" fg:w="1395"/><text x="0.9509%" y="463.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,797 samples, 0.34%)</title><rect x="0.6383%" y="485" width="0.3408%" height="15" fill="rgb(216,154,8)" fg:x="3365" fg:w="1797"/><text x="0.8883%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,779 samples, 0.34%)</title><rect x="0.6417%" y="469" width="0.3374%" height="15" fill="rgb(244,35,45)" fg:x="3383" fg:w="1779"/><text x="0.8917%" y="479.50"></text></g><g><title>MethodLiveness::compute_liveness (57 samples, 0.01%)</title><rect x="0.9920%" y="421" width="0.0108%" height="15" fill="rgb(251,115,12)" fg:x="5230" fg:w="57"/><text x="1.2420%" y="431.50"></text></g><g><title>BlockListBuilder::set_leaders (83 samples, 0.02%)</title><rect x="0.9876%" y="453" width="0.0157%" height="15" fill="rgb(240,54,50)" fg:x="5207" fg:w="83"/><text x="1.2376%" y="463.50"></text></g><g><title>ciMethod::bci_block_start (63 samples, 0.01%)</title><rect x="0.9914%" y="437" width="0.0119%" height="15" fill="rgb(233,84,52)" fg:x="5227" fg:w="63"/><text x="1.2414%" y="447.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (112 samples, 0.02%)</title><rect x="0.9835%" y="469" width="0.0212%" height="15" fill="rgb(207,117,47)" fg:x="5185" fg:w="112"/><text x="1.2335%" y="479.50"></text></g><g><title>GraphBuilder::push_scope (163 samples, 0.03%)</title><rect x="0.9821%" y="485" width="0.0309%" height="15" fill="rgb(249,43,39)" fg:x="5178" fg:w="163"/><text x="1.2321%" y="495.50"></text></g><g><title>Method::build_interpreter_method_data (69 samples, 0.01%)</title><rect x="1.0172%" y="453" width="0.0131%" height="15" fill="rgb(209,38,44)" fg:x="5363" fg:w="69"/><text x="1.2672%" y="463.50"></text></g><g><title>MethodData::allocate (69 samples, 0.01%)</title><rect x="1.0172%" y="437" width="0.0131%" height="15" fill="rgb(236,212,23)" fg:x="5363" fg:w="69"/><text x="1.2672%" y="447.50"></text></g><g><title>ciMethodData::load_data (68 samples, 0.01%)</title><rect x="1.0315%" y="453" width="0.0129%" height="15" fill="rgb(242,79,21)" fg:x="5438" fg:w="68"/><text x="1.2815%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (171 samples, 0.03%)</title><rect x="1.0157%" y="485" width="0.0324%" height="15" fill="rgb(211,96,35)" fg:x="5355" fg:w="171"/><text x="1.2657%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (163 samples, 0.03%)</title><rect x="1.0172%" y="469" width="0.0309%" height="15" fill="rgb(253,215,40)" fg:x="5363" fg:w="163"/><text x="1.2672%" y="479.50"></text></g><g><title>GraphBuilder::try_inline_full (2,228 samples, 0.42%)</title><rect x="0.6275%" y="501" width="0.4226%" height="15" fill="rgb(211,81,21)" fg:x="3308" fg:w="2228"/><text x="0.8775%" y="511.50"></text></g><g><title>GraphBuilder::try_inline (2,246 samples, 0.43%)</title><rect x="0.6259%" y="517" width="0.4260%" height="15" fill="rgb(208,190,38)" fg:x="3300" fg:w="2246"/><text x="0.8759%" y="527.50"></text></g><g><title>ciEnv::lookup_method (107 samples, 0.02%)</title><rect x="1.0738%" y="485" width="0.0203%" height="15" fill="rgb(235,213,38)" fg:x="5661" fg:w="107"/><text x="1.3238%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (65 samples, 0.01%)</title><rect x="1.1151%" y="421" width="0.0123%" height="15" fill="rgb(237,122,38)" fg:x="5879" fg:w="65"/><text x="1.3651%" y="431.50"></text></g><g><title>ciMethod::ciMethod (167 samples, 0.03%)</title><rect x="1.0986%" y="453" width="0.0317%" height="15" fill="rgb(244,218,35)" fg:x="5792" fg:w="167"/><text x="1.3486%" y="463.50"></text></g><g><title>ciSignature::ciSignature (135 samples, 0.03%)</title><rect x="1.1047%" y="437" width="0.0256%" height="15" fill="rgb(240,68,47)" fg:x="5824" fg:w="135"/><text x="1.3547%" y="447.50"></text></g><g><title>ciObjectFactory::get_metadata (197 samples, 0.04%)</title><rect x="1.0941%" y="485" width="0.0374%" height="15" fill="rgb(210,16,53)" fg:x="5768" fg:w="197"/><text x="1.3441%" y="495.50"></text></g><g><title>ciObjectFactory::create_new_metadata (180 samples, 0.03%)</title><rect x="1.0973%" y="469" width="0.0341%" height="15" fill="rgb(235,124,12)" fg:x="5785" fg:w="180"/><text x="1.3473%" y="479.50"></text></g><g><title>ciEnv::get_method_by_index_impl (351 samples, 0.07%)</title><rect x="1.0662%" y="501" width="0.0666%" height="15" fill="rgb(224,169,11)" fg:x="5621" fg:w="351"/><text x="1.3162%" y="511.50"></text></g><g><title>ciBytecodeStream::get_method (366 samples, 0.07%)</title><rect x="1.0635%" y="517" width="0.0694%" height="15" fill="rgb(250,166,2)" fg:x="5607" fg:w="366"/><text x="1.3135%" y="527.50"></text></g><g><title>GraphBuilder::invoke (2,862 samples, 0.54%)</title><rect x="0.6058%" y="533" width="0.5429%" height="15" fill="rgb(242,216,29)" fg:x="3194" fg:w="2862"/><text x="0.8558%" y="543.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,353 samples, 0.64%)</title><rect x="0.5281%" y="549" width="0.6360%" height="15" fill="rgb(230,116,27)" fg:x="2784" fg:w="3353"/><text x="0.7781%" y="559.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,404 samples, 0.65%)</title><rect x="0.5212%" y="565" width="0.6457%" height="15" fill="rgb(228,99,48)" fg:x="2748" fg:w="3404"/><text x="0.7712%" y="575.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,763 samples, 0.71%)</title><rect x="0.4628%" y="581" width="0.7138%" height="15" fill="rgb(253,11,6)" fg:x="2440" fg:w="3763"/><text x="0.7128%" y="591.50"></text></g><g><title>IR::IR (3,780 samples, 0.72%)</title><rect x="0.4628%" y="597" width="0.7170%" height="15" fill="rgb(247,143,39)" fg:x="2440" fg:w="3780"/><text x="0.7128%" y="607.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (86 samples, 0.02%)</title><rect x="1.1800%" y="581" width="0.0163%" height="15" fill="rgb(236,97,10)" fg:x="6221" fg:w="86"/><text x="1.4300%" y="591.50"></text></g><g><title>IR::compute_code (97 samples, 0.02%)</title><rect x="1.1798%" y="597" width="0.0184%" height="15" fill="rgb(233,208,19)" fg:x="6220" fg:w="97"/><text x="1.4298%" y="607.50"></text></g><g><title>UseCountComputer::block_do (87 samples, 0.02%)</title><rect x="1.2003%" y="565" width="0.0165%" height="15" fill="rgb(216,164,2)" fg:x="6328" fg:w="87"/><text x="1.4503%" y="575.50"></text></g><g><title>BlockList::iterate_backward (89 samples, 0.02%)</title><rect x="1.2001%" y="581" width="0.0169%" height="15" fill="rgb(220,129,5)" fg:x="6327" fg:w="89"/><text x="1.4501%" y="591.50"></text></g><g><title>IR::compute_use_counts (136 samples, 0.03%)</title><rect x="1.1982%" y="597" width="0.0258%" height="15" fill="rgb(242,17,10)" fg:x="6317" fg:w="136"/><text x="1.4482%" y="607.50"></text></g><g><title>NullCheckEliminator::iterate_one (170 samples, 0.03%)</title><rect x="1.2289%" y="565" width="0.0322%" height="15" fill="rgb(242,107,0)" fg:x="6479" fg:w="170"/><text x="1.4789%" y="575.50"></text></g><g><title>IR::eliminate_null_checks (204 samples, 0.04%)</title><rect x="1.2240%" y="597" width="0.0387%" height="15" fill="rgb(251,28,31)" fg:x="6453" fg:w="204"/><text x="1.4740%" y="607.50"></text></g><g><title>Optimizer::eliminate_null_checks (203 samples, 0.04%)</title><rect x="1.2242%" y="581" width="0.0385%" height="15" fill="rgb(233,223,10)" fg:x="6454" fg:w="203"/><text x="1.4742%" y="591.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (57 samples, 0.01%)</title><rect x="1.2653%" y="581" width="0.0108%" height="15" fill="rgb(215,21,27)" fg:x="6671" fg:w="57"/><text x="1.5153%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (56 samples, 0.01%)</title><rect x="1.2655%" y="565" width="0.0106%" height="15" fill="rgb(232,23,21)" fg:x="6672" fg:w="56"/><text x="1.5155%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (55 samples, 0.01%)</title><rect x="1.2657%" y="549" width="0.0104%" height="15" fill="rgb(244,5,23)" fg:x="6673" fg:w="55"/><text x="1.5157%" y="559.50"></text></g><g><title>IR::optimize_blocks (72 samples, 0.01%)</title><rect x="1.2627%" y="597" width="0.0137%" height="15" fill="rgb(226,81,46)" fg:x="6657" fg:w="72"/><text x="1.5127%" y="607.50"></text></g><g><title>IR::split_critical_edges (54 samples, 0.01%)</title><rect x="1.2763%" y="597" width="0.0102%" height="15" fill="rgb(247,70,30)" fg:x="6729" fg:w="54"/><text x="1.5263%" y="607.50"></text></g><g><title>Compilation::build_hir (4,784 samples, 0.91%)</title><rect x="0.3856%" y="613" width="0.9074%" height="15" fill="rgb(212,68,19)" fg:x="2033" fg:w="4784"/><text x="0.6356%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (97 samples, 0.02%)</title><rect x="1.3251%" y="533" width="0.0184%" height="15" fill="rgb(240,187,13)" fg:x="6986" fg:w="97"/><text x="1.5751%" y="543.50"></text></g><g><title>LIR_Assembler::add_call_info (99 samples, 0.02%)</title><rect x="1.3249%" y="549" width="0.0188%" height="15" fill="rgb(223,113,26)" fg:x="6985" fg:w="99"/><text x="1.5749%" y="559.50"></text></g><g><title>LIR_Assembler::call (117 samples, 0.02%)</title><rect x="1.3230%" y="565" width="0.0222%" height="15" fill="rgb(206,192,2)" fg:x="6975" fg:w="117"/><text x="1.5730%" y="575.50"></text></g><g><title>LIR_Assembler::emit_call (196 samples, 0.04%)</title><rect x="1.3147%" y="581" width="0.0372%" height="15" fill="rgb(241,108,4)" fg:x="6931" fg:w="196"/><text x="1.5647%" y="591.50"></text></g><g><title>LIR_Assembler::emit_op1 (168 samples, 0.03%)</title><rect x="1.3583%" y="581" width="0.0319%" height="15" fill="rgb(247,173,49)" fg:x="7161" fg:w="168"/><text x="1.6083%" y="591.50"></text></g><g><title>LIR_Assembler::emit_profile_call (60 samples, 0.01%)</title><rect x="1.3926%" y="581" width="0.0114%" height="15" fill="rgb(224,114,35)" fg:x="7342" fg:w="60"/><text x="1.6426%" y="591.50"></text></g><g><title>LIR_Assembler::emit_code (692 samples, 0.13%)</title><rect x="1.2972%" y="597" width="0.1313%" height="15" fill="rgb(245,159,27)" fg:x="6839" fg:w="692"/><text x="1.5472%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (136 samples, 0.03%)</title><rect x="1.4446%" y="565" width="0.0258%" height="15" fill="rgb(245,172,44)" fg:x="7616" fg:w="136"/><text x="1.6946%" y="575.50"></text></g><g><title>CodeEmitInfo::record_debug_info (136 samples, 0.03%)</title><rect x="1.4446%" y="549" width="0.0258%" height="15" fill="rgb(236,23,11)" fg:x="7616" fg:w="136"/><text x="1.6946%" y="559.50"></text></g><g><title>CounterOverflowStub::emit_code (167 samples, 0.03%)</title><rect x="1.4436%" y="581" width="0.0317%" height="15" fill="rgb(205,117,38)" fg:x="7611" fg:w="167"/><text x="1.6936%" y="591.50"></text></g><g><title>LIR_Assembler::add_call_info (64 samples, 0.01%)</title><rect x="1.4799%" y="565" width="0.0121%" height="15" fill="rgb(237,72,25)" fg:x="7802" fg:w="64"/><text x="1.7299%" y="575.50"></text></g><g><title>CodeEmitInfo::record_debug_info (64 samples, 0.01%)</title><rect x="1.4799%" y="549" width="0.0121%" height="15" fill="rgb(244,70,9)" fg:x="7802" fg:w="64"/><text x="1.7299%" y="559.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (82 samples, 0.02%)</title><rect x="1.4780%" y="581" width="0.0156%" height="15" fill="rgb(217,125,39)" fg:x="7792" fg:w="82"/><text x="1.7280%" y="591.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (394 samples, 0.07%)</title><rect x="1.4415%" y="597" width="0.0747%" height="15" fill="rgb(235,36,10)" fg:x="7600" fg:w="394"/><text x="1.6915%" y="607.50"></text></g><g><title>Compilation::emit_code_body (1,188 samples, 0.23%)</title><rect x="1.2930%" y="613" width="0.2253%" height="15" fill="rgb(251,123,47)" fg:x="6817" fg:w="1188"/><text x="1.5430%" y="623.50"></text></g><g><title>LIRGenerator::do_Base (89 samples, 0.02%)</title><rect x="1.5324%" y="565" width="0.0169%" height="15" fill="rgb(221,13,13)" fg:x="8079" fg:w="89"/><text x="1.7824%" y="575.50"></text></g><g><title>LIRGenerator::move_to_phi (54 samples, 0.01%)</title><rect x="1.5563%" y="533" width="0.0102%" height="15" fill="rgb(238,131,9)" fg:x="8205" fg:w="54"/><text x="1.8063%" y="543.50"></text></g><g><title>LIRGenerator::move_to_phi (220 samples, 0.04%)</title><rect x="1.5544%" y="549" width="0.0417%" height="15" fill="rgb(211,50,8)" fg:x="8195" fg:w="220"/><text x="1.8044%" y="559.50"></text></g><g><title>PhiResolverState::reset (149 samples, 0.03%)</title><rect x="1.5679%" y="533" width="0.0283%" height="15" fill="rgb(245,182,24)" fg:x="8266" fg:w="149"/><text x="1.8179%" y="543.50"></text></g><g><title>LIRGenerator::do_Goto (252 samples, 0.05%)</title><rect x="1.5508%" y="565" width="0.0478%" height="15" fill="rgb(242,14,37)" fg:x="8176" fg:w="252"/><text x="1.8008%" y="575.50"></text></g><g><title>LIRGenerator::do_If (67 samples, 0.01%)</title><rect x="1.5986%" y="565" width="0.0127%" height="15" fill="rgb(246,228,12)" fg:x="8428" fg:w="67"/><text x="1.8486%" y="575.50"></text></g><g><title>LIRGenerator::state_for (54 samples, 0.01%)</title><rect x="1.6261%" y="549" width="0.0102%" height="15" fill="rgb(213,55,15)" fg:x="8573" fg:w="54"/><text x="1.8761%" y="559.50"></text></g><g><title>LIRGenerator::do_Invoke (134 samples, 0.03%)</title><rect x="1.6119%" y="565" width="0.0254%" height="15" fill="rgb(209,9,3)" fg:x="8498" fg:w="134"/><text x="1.8619%" y="575.50"></text></g><g><title>LIRGenerator::state_for (56 samples, 0.01%)</title><rect x="1.6665%" y="549" width="0.0106%" height="15" fill="rgb(230,59,30)" fg:x="8786" fg:w="56"/><text x="1.9165%" y="559.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (104 samples, 0.02%)</title><rect x="1.6593%" y="565" width="0.0197%" height="15" fill="rgb(209,121,21)" fg:x="8748" fg:w="104"/><text x="1.9093%" y="575.50"></text></g><g><title>LIRGenerator::block_do (908 samples, 0.17%)</title><rect x="1.5208%" y="581" width="0.1722%" height="15" fill="rgb(220,109,13)" fg:x="8018" fg:w="908"/><text x="1.7708%" y="591.50"></text></g><g><title>BlockList::iterate_forward (914 samples, 0.17%)</title><rect x="1.5203%" y="597" width="0.1734%" height="15" fill="rgb(232,18,1)" fg:x="8015" fg:w="914"/><text x="1.7703%" y="607.50"></text></g><g><title>IntervalWalker::walk_to (134 samples, 0.03%)</title><rect x="1.7213%" y="549" width="0.0254%" height="15" fill="rgb(215,41,42)" fg:x="9075" fg:w="134"/><text x="1.9713%" y="559.50"></text></g><g><title>LinearScanWalker::find_free_reg (97 samples, 0.02%)</title><rect x="1.7712%" y="517" width="0.0184%" height="15" fill="rgb(224,123,36)" fg:x="9338" fg:w="97"/><text x="2.0212%" y="527.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (171 samples, 0.03%)</title><rect x="1.7964%" y="517" width="0.0324%" height="15" fill="rgb(240,125,3)" fg:x="9471" fg:w="171"/><text x="2.0464%" y="527.50"></text></g><g><title>Interval::split (54 samples, 0.01%)</title><rect x="1.8319%" y="501" width="0.0102%" height="15" fill="rgb(205,98,50)" fg:x="9658" fg:w="54"/><text x="2.0819%" y="511.50"></text></g><g><title>LinearScanWalker::split_before_usage (81 samples, 0.02%)</title><rect x="1.8289%" y="517" width="0.0154%" height="15" fill="rgb(205,185,37)" fg:x="9642" fg:w="81"/><text x="2.0789%" y="527.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (495 samples, 0.09%)</title><rect x="1.7517%" y="533" width="0.0939%" height="15" fill="rgb(238,207,15)" fg:x="9235" fg:w="495"/><text x="2.0017%" y="543.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (67 samples, 0.01%)</title><rect x="1.8537%" y="517" width="0.0127%" height="15" fill="rgb(213,199,42)" fg:x="9773" fg:w="67"/><text x="2.1037%" y="527.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (141 samples, 0.03%)</title><rect x="1.8456%" y="533" width="0.0267%" height="15" fill="rgb(235,201,11)" fg:x="9730" fg:w="141"/><text x="2.0956%" y="543.50"></text></g><g><title>LinearScanWalker::activate_current (744 samples, 0.14%)</title><rect x="1.7467%" y="549" width="0.1411%" height="15" fill="rgb(207,46,11)" fg:x="9209" fg:w="744"/><text x="1.9967%" y="559.50"></text></g><g><title>IntervalWalker::walk_to (939 samples, 0.18%)</title><rect x="1.7103%" y="565" width="0.1781%" height="15" fill="rgb(241,35,35)" fg:x="9017" fg:w="939"/><text x="1.9603%" y="575.50"></text></g><g><title>LinearScan::allocate_registers (1,017 samples, 0.19%)</title><rect x="1.7060%" y="581" width="0.1929%" height="15" fill="rgb(243,32,47)" fg:x="8994" fg:w="1017"/><text x="1.9560%" y="591.50"></text></g><g><title>LIR_OpVisitState::visit (103 samples, 0.02%)</title><rect x="1.9321%" y="549" width="0.0195%" height="15" fill="rgb(247,202,23)" fg:x="10186" fg:w="103"/><text x="2.1821%" y="559.50"></text></g><g><title>LinearScan::color_lir_opr (61 samples, 0.01%)</title><rect x="1.9520%" y="549" width="0.0116%" height="15" fill="rgb(219,102,11)" fg:x="10291" fg:w="61"/><text x="2.2020%" y="559.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (69 samples, 0.01%)</title><rect x="1.9759%" y="533" width="0.0131%" height="15" fill="rgb(243,110,44)" fg:x="10417" fg:w="69"/><text x="2.2259%" y="543.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (153 samples, 0.03%)</title><rect x="1.9635%" y="549" width="0.0290%" height="15" fill="rgb(222,74,54)" fg:x="10352" fg:w="153"/><text x="2.2135%" y="559.50"></text></g><g><title>IntervalWalker::walk_to (109 samples, 0.02%)</title><rect x="2.0013%" y="517" width="0.0207%" height="15" fill="rgb(216,99,12)" fg:x="10551" fg:w="109"/><text x="2.2513%" y="527.50"></text></g><g><title>LinearScan::compute_oop_map (189 samples, 0.04%)</title><rect x="1.9948%" y="533" width="0.0358%" height="15" fill="rgb(226,22,26)" fg:x="10517" fg:w="189"/><text x="2.2448%" y="543.50"></text></g><g><title>LinearScan::compute_oop_map (202 samples, 0.04%)</title><rect x="1.9926%" y="549" width="0.0383%" height="15" fill="rgb(217,163,10)" fg:x="10505" fg:w="202"/><text x="2.2426%" y="559.50"></text></g><g><title>LinearScan::assign_reg_num (693 samples, 0.13%)</title><rect x="1.8998%" y="565" width="0.1314%" height="15" fill="rgb(213,25,53)" fg:x="10016" fg:w="693"/><text x="2.1498%" y="575.50"></text></g><g><title>LinearScan::assign_reg_num (729 samples, 0.14%)</title><rect x="1.8989%" y="581" width="0.1383%" height="15" fill="rgb(252,105,26)" fg:x="10011" fg:w="729"/><text x="2.1489%" y="591.50"></text></g><g><title>LIR_OpVisitState::visit (90 samples, 0.02%)</title><rect x="2.1003%" y="565" width="0.0171%" height="15" fill="rgb(220,39,43)" fg:x="11073" fg:w="90"/><text x="2.3503%" y="575.50"></text></g><g><title>LinearScan::add_def (63 samples, 0.01%)</title><rect x="2.1174%" y="565" width="0.0119%" height="15" fill="rgb(229,68,48)" fg:x="11163" fg:w="63"/><text x="2.3674%" y="575.50"></text></g><g><title>LinearScan::create_interval (58 samples, 0.01%)</title><rect x="2.1413%" y="549" width="0.0110%" height="15" fill="rgb(252,8,32)" fg:x="11289" fg:w="58"/><text x="2.3913%" y="559.50"></text></g><g><title>LinearScan::add_temp (104 samples, 0.02%)</title><rect x="2.1327%" y="565" width="0.0197%" height="15" fill="rgb(223,20,43)" fg:x="11244" fg:w="104"/><text x="2.3827%" y="575.50"></text></g><g><title>Interval::Interval (56 samples, 0.01%)</title><rect x="2.1743%" y="533" width="0.0106%" height="15" fill="rgb(229,81,49)" fg:x="11463" fg:w="56"/><text x="2.4243%" y="543.50"></text></g><g><title>LinearScan::create_interval (85 samples, 0.02%)</title><rect x="2.1710%" y="549" width="0.0161%" height="15" fill="rgb(236,28,36)" fg:x="11446" fg:w="85"/><text x="2.4210%" y="559.50"></text></g><g><title>LinearScan::add_use (184 samples, 0.03%)</title><rect x="2.1525%" y="565" width="0.0349%" height="15" fill="rgb(249,185,26)" fg:x="11348" fg:w="184"/><text x="2.4025%" y="575.50"></text></g><g><title>LinearScan::build_intervals (872 samples, 0.17%)</title><rect x="2.0371%" y="581" width="0.1654%" height="15" fill="rgb(249,174,33)" fg:x="10740" fg:w="872"/><text x="2.2871%" y="591.50"></text></g><g><title>LinearScan::compute_global_live_sets (68 samples, 0.01%)</title><rect x="2.2025%" y="581" width="0.0129%" height="15" fill="rgb(233,201,37)" fg:x="11612" fg:w="68"/><text x="2.4525%" y="591.50"></text></g><g><title>LIR_OpVisitState::visit (98 samples, 0.02%)</title><rect x="2.2426%" y="565" width="0.0186%" height="15" fill="rgb(221,78,26)" fg:x="11823" fg:w="98"/><text x="2.4926%" y="575.50"></text></g><g><title>LinearScan::compute_local_live_sets (288 samples, 0.05%)</title><rect x="2.2154%" y="581" width="0.0546%" height="15" fill="rgb(250,127,30)" fg:x="11680" fg:w="288"/><text x="2.4654%" y="591.50"></text></g><g><title>LinearScan::eliminate_spill_moves (82 samples, 0.02%)</title><rect x="2.2701%" y="581" width="0.0156%" height="15" fill="rgb(230,49,44)" fg:x="11968" fg:w="82"/><text x="2.5201%" y="591.50"></text></g><g><title>LinearScan::number_instructions (58 samples, 0.01%)</title><rect x="2.2856%" y="581" width="0.0110%" height="15" fill="rgb(229,67,23)" fg:x="12050" fg:w="58"/><text x="2.5356%" y="591.50"></text></g><g><title>LinearScan::resolve_collect_mappings (89 samples, 0.02%)</title><rect x="2.3032%" y="565" width="0.0169%" height="15" fill="rgb(249,83,47)" fg:x="12143" fg:w="89"/><text x="2.5532%" y="575.50"></text></g><g><title>LinearScan::resolve_data_flow (152 samples, 0.03%)</title><rect x="2.2972%" y="581" width="0.0288%" height="15" fill="rgb(215,43,3)" fg:x="12111" fg:w="152"/><text x="2.5472%" y="591.50"></text></g><g><title>LinearScan::do_linear_scan (3,445 samples, 0.65%)</title><rect x="1.6999%" y="597" width="0.6534%" height="15" fill="rgb(238,154,13)" fg:x="8962" fg:w="3445"/><text x="1.9499%" y="607.50"></text></g><g><title>Compilation::emit_lir (4,409 samples, 0.84%)</title><rect x="1.5184%" y="613" width="0.8363%" height="15" fill="rgb(219,56,2)" fg:x="8005" fg:w="4409"/><text x="1.7684%" y="623.50"></text></g><g><title>MethodData::allocate (60 samples, 0.01%)</title><rect x="2.3630%" y="565" width="0.0114%" height="15" fill="rgb(233,0,4)" fg:x="12458" fg:w="60"/><text x="2.6130%" y="575.50"></text></g><g><title>Method::build_interpreter_method_data (61 samples, 0.01%)</title><rect x="2.3630%" y="581" width="0.0116%" height="15" fill="rgb(235,30,7)" fg:x="12458" fg:w="61"/><text x="2.6130%" y="591.50"></text></g><g><title>Compilation::compile_java_method (10,548 samples, 2.00%)</title><rect x="0.3835%" y="629" width="2.0007%" height="15" fill="rgb(250,79,13)" fg:x="2022" fg:w="10548"/><text x="0.6335%" y="639.50">C..</text></g><g><title>ciMethod::ensure_method_data (117 samples, 0.02%)</title><rect x="2.3620%" y="613" width="0.0222%" height="15" fill="rgb(211,146,34)" fg:x="12453" fg:w="117"/><text x="2.6120%" y="623.50"></text></g><g><title>ciMethod::ensure_method_data (113 samples, 0.02%)</title><rect x="2.3628%" y="597" width="0.0214%" height="15" fill="rgb(228,22,38)" fg:x="12457" fg:w="113"/><text x="2.6128%" y="607.50"></text></g><g><title>CodeBuffer::finalize_oop_references (79 samples, 0.01%)</title><rect x="2.4072%" y="597" width="0.0150%" height="15" fill="rgb(235,168,5)" fg:x="12691" fg:w="79"/><text x="2.6572%" y="607.50"></text></g><g><title>CodeBuffer::relocate_code_to (124 samples, 0.02%)</title><rect x="2.4413%" y="565" width="0.0235%" height="15" fill="rgb(221,155,16)" fg:x="12871" fg:w="124"/><text x="2.6913%" y="575.50"></text></g><g><title>CodeBuffer::copy_code_to (135 samples, 0.03%)</title><rect x="2.4410%" y="581" width="0.0256%" height="15" fill="rgb(215,215,53)" fg:x="12869" fg:w="135"/><text x="2.6910%" y="591.50"></text></g><g><title>G1CollectedHeap::register_nmethod (57 samples, 0.01%)</title><rect x="2.4768%" y="581" width="0.0108%" height="15" fill="rgb(223,4,10)" fg:x="13058" fg:w="57"/><text x="2.7268%" y="591.50"></text></g><g><title>nmethod::oops_do (57 samples, 0.01%)</title><rect x="2.4768%" y="565" width="0.0108%" height="15" fill="rgb(234,103,6)" fg:x="13058" fg:w="57"/><text x="2.7268%" y="575.50"></text></g><g><title>nmethod::new_nmethod (501 samples, 0.10%)</title><rect x="2.4053%" y="613" width="0.0950%" height="15" fill="rgb(227,97,0)" fg:x="12681" fg:w="501"/><text x="2.6553%" y="623.50"></text></g><g><title>nmethod::nmethod (320 samples, 0.06%)</title><rect x="2.4396%" y="597" width="0.0607%" height="15" fill="rgb(234,150,53)" fg:x="12862" fg:w="320"/><text x="2.6896%" y="607.50"></text></g><g><title>Compilation::compile_method (11,167 samples, 2.12%)</title><rect x="0.3826%" y="645" width="2.1181%" height="15" fill="rgb(228,201,54)" fg:x="2017" fg:w="11167"/><text x="0.6326%" y="655.50">C..</text></g><g><title>ciEnv::register_method (575 samples, 0.11%)</title><rect x="2.3916%" y="629" width="0.1091%" height="15" fill="rgb(222,22,37)" fg:x="12609" fg:w="575"/><text x="2.6416%" y="639.50"></text></g><g><title>Compilation::Compilation (11,185 samples, 2.12%)</title><rect x="0.3814%" y="661" width="2.1215%" height="15" fill="rgb(237,53,32)" fg:x="2011" fg:w="11185"/><text x="0.6314%" y="671.50">C..</text></g><g><title>Compiler::compile_method (11,200 samples, 2.12%)</title><rect x="0.3788%" y="677" width="2.1244%" height="15" fill="rgb(233,25,53)" fg:x="1997" fg:w="11200"/><text x="0.6288%" y="687.50">C..</text></g><g><title>ciObjectFactory::get (53 samples, 0.01%)</title><rect x="2.5182%" y="661" width="0.0101%" height="15" fill="rgb(210,40,34)" fg:x="13276" fg:w="53"/><text x="2.7682%" y="671.50"></text></g><g><title>ciEnv::ciEnv (88 samples, 0.02%)</title><rect x="2.5117%" y="677" width="0.0167%" height="15" fill="rgb(241,220,44)" fg:x="13242" fg:w="88"/><text x="2.7617%" y="687.50"></text></g><g><title>ciMethod::ciMethod (101 samples, 0.02%)</title><rect x="2.5312%" y="629" width="0.0192%" height="15" fill="rgb(235,28,35)" fg:x="13345" fg:w="101"/><text x="2.7812%" y="639.50"></text></g><g><title>ciSignature::ciSignature (92 samples, 0.02%)</title><rect x="2.5329%" y="613" width="0.0175%" height="15" fill="rgb(210,56,17)" fg:x="13354" fg:w="92"/><text x="2.7829%" y="623.50"></text></g><g><title>ciEnv::get_method_from_handle (129 samples, 0.02%)</title><rect x="2.5284%" y="677" width="0.0245%" height="15" fill="rgb(224,130,29)" fg:x="13330" fg:w="129"/><text x="2.7784%" y="687.50"></text></g><g><title>ciObjectFactory::get_metadata (121 samples, 0.02%)</title><rect x="2.5299%" y="661" width="0.0230%" height="15" fill="rgb(235,212,8)" fg:x="13338" fg:w="121"/><text x="2.7799%" y="671.50"></text></g><g><title>ciObjectFactory::create_new_metadata (117 samples, 0.02%)</title><rect x="2.5307%" y="645" width="0.0222%" height="15" fill="rgb(223,33,50)" fg:x="13342" fg:w="117"/><text x="2.7807%" y="655.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,759 samples, 2.23%)</title><rect x="0.3297%" y="693" width="2.2304%" height="15" fill="rgb(219,149,13)" fg:x="1738" fg:w="11759"/><text x="0.5797%" y="703.50">C..</text></g><g><title>Monitor::wait (64 samples, 0.01%)</title><rect x="2.5739%" y="677" width="0.0121%" height="15" fill="rgb(250,156,29)" fg:x="13570" fg:w="64"/><text x="2.8239%" y="687.50"></text></g><g><title>Monitor::IWait (60 samples, 0.01%)</title><rect x="2.5747%" y="661" width="0.0114%" height="15" fill="rgb(216,193,19)" fg:x="13574" fg:w="60"/><text x="2.8247%" y="671.50"></text></g><g><title>os::PlatformEvent::park (57 samples, 0.01%)</title><rect x="2.5752%" y="645" width="0.0108%" height="15" fill="rgb(216,135,14)" fg:x="13577" fg:w="57"/><text x="2.8252%" y="655.50"></text></g><g><title>TieredThresholdPolicy::select_task (57 samples, 0.01%)</title><rect x="2.5861%" y="677" width="0.0108%" height="15" fill="rgb(241,47,5)" fg:x="13634" fg:w="57"/><text x="2.8361%" y="687.50"></text></g><g><title>CompileQueue::get (149 samples, 0.03%)</title><rect x="2.5694%" y="693" width="0.0283%" height="15" fill="rgb(233,42,35)" fg:x="13546" fg:w="149"/><text x="2.8194%" y="703.50"></text></g><g><title>CompileBroker::compiler_thread_loop (11,967 samples, 2.27%)</title><rect x="0.3291%" y="709" width="2.2699%" height="15" fill="rgb(231,13,6)" fg:x="1735" fg:w="11967"/><text x="0.5791%" y="719.50">C..</text></g><g><title>Thread::call_run (11,969 samples, 2.27%)</title><rect x="0.3289%" y="741" width="2.2702%" height="15" fill="rgb(207,181,40)" fg:x="1734" fg:w="11969"/><text x="0.5789%" y="751.50">T..</text></g><g><title>JavaThread::thread_main_inner (11,968 samples, 2.27%)</title><rect x="0.3291%" y="725" width="2.2701%" height="15" fill="rgb(254,173,49)" fg:x="1735" fg:w="11968"/><text x="0.5791%" y="735.50">J..</text></g><g><title>__GI___clone (11,985 samples, 2.27%)</title><rect x="0.3262%" y="789" width="2.2733%" height="15" fill="rgb(221,1,38)" fg:x="1720" fg:w="11985"/><text x="0.5762%" y="799.50">_..</text></g><g><title>start_thread (11,971 samples, 2.27%)</title><rect x="0.3289%" y="773" width="2.2706%" height="15" fill="rgb(206,124,46)" fg:x="1734" fg:w="11971"/><text x="0.5789%" y="783.50">s..</text></g><g><title>thread_native_entry (11,971 samples, 2.27%)</title><rect x="0.3289%" y="757" width="2.2706%" height="15" fill="rgb(249,21,11)" fg:x="1734" fg:w="11971"/><text x="0.5789%" y="767.50">t..</text></g><g><title>C1_CompilerThre (13,734 samples, 2.61%)</title><rect x="0.0051%" y="805" width="2.6050%" height="15" fill="rgb(222,201,40)" fg:x="27" fg:w="13734"/><text x="0.2551%" y="815.50">C1..</text></g><g><title>PhaseIdealLoop::build_loop_early (104 samples, 0.02%)</title><rect x="2.6538%" y="789" width="0.0197%" height="15" fill="rgb(235,61,29)" fg:x="13991" fg:w="104"/><text x="2.9038%" y="799.50"></text></g><g><title>ProjNode::pinned (99 samples, 0.02%)</title><rect x="2.6547%" y="773" width="0.0188%" height="15" fill="rgb(219,207,3)" fg:x="13996" fg:w="99"/><text x="2.9047%" y="783.50"></text></g><g><title>MultiNode::is_CFG (57 samples, 0.01%)</title><rect x="2.9064%" y="773" width="0.0108%" height="15" fill="rgb(222,56,46)" fg:x="15323" fg:w="57"/><text x="3.1564%" y="783.50"></text></g><g><title>Node::is_CFG (73 samples, 0.01%)</title><rect x="2.9311%" y="773" width="0.0138%" height="15" fill="rgb(239,76,54)" fg:x="15453" fg:w="73"/><text x="3.1811%" y="783.50"></text></g><g><title>_dl_update_slotinfo (195 samples, 0.04%)</title><rect x="3.1684%" y="773" width="0.0370%" height="15" fill="rgb(231,124,27)" fg:x="16704" fg:w="195"/><text x="3.4184%" y="783.50"></text></g><g><title>update_get_addr (57 samples, 0.01%)</title><rect x="3.3125%" y="773" width="0.0108%" height="15" fill="rgb(249,195,6)" fg:x="17464" fg:w="57"/><text x="3.5625%" y="783.50"></text></g><g><title>[anon] (3,403 samples, 0.65%)</title><rect x="2.6788%" y="789" width="0.6455%" height="15" fill="rgb(237,174,47)" fg:x="14123" fg:w="3403"/><text x="2.9288%" y="799.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (60 samples, 0.01%)</title><rect x="3.3554%" y="517" width="0.0114%" height="15" fill="rgb(206,201,31)" fg:x="17690" fg:w="60"/><text x="3.6054%" y="527.50"></text></g><g><title>ciBytecodeStream::get_method (60 samples, 0.01%)</title><rect x="3.3554%" y="501" width="0.0114%" height="15" fill="rgb(231,57,52)" fg:x="17690" fg:w="60"/><text x="3.6054%" y="511.50"></text></g><g><title>ciEnv::get_method_by_index_impl (59 samples, 0.01%)</title><rect x="3.3556%" y="485" width="0.0112%" height="15" fill="rgb(248,177,22)" fg:x="17691" fg:w="59"/><text x="3.6056%" y="495.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (110 samples, 0.02%)</title><rect x="3.3480%" y="533" width="0.0209%" height="15" fill="rgb(215,211,37)" fg:x="17651" fg:w="110"/><text x="3.5980%" y="543.50"></text></g><g><title>ciTypeFlow::df_flow_types (128 samples, 0.02%)</title><rect x="3.3448%" y="565" width="0.0243%" height="15" fill="rgb(241,128,51)" fg:x="17634" fg:w="128"/><text x="3.5948%" y="575.50"></text></g><g><title>ciTypeFlow::flow_block (127 samples, 0.02%)</title><rect x="3.3450%" y="549" width="0.0241%" height="15" fill="rgb(227,165,31)" fg:x="17635" fg:w="127"/><text x="3.5950%" y="559.50"></text></g><g><title>InlineTree::ok_to_inline (140 samples, 0.03%)</title><rect x="3.3431%" y="629" width="0.0266%" height="15" fill="rgb(228,167,24)" fg:x="17625" fg:w="140"/><text x="3.5931%" y="639.50"></text></g><g><title>ciMethod::get_flow_analysis (133 samples, 0.03%)</title><rect x="3.3444%" y="613" width="0.0252%" height="15" fill="rgb(228,143,12)" fg:x="17632" fg:w="133"/><text x="3.5944%" y="623.50"></text></g><g><title>ciTypeFlow::do_flow (133 samples, 0.03%)</title><rect x="3.3444%" y="597" width="0.0252%" height="15" fill="rgb(249,149,8)" fg:x="17632" fg:w="133"/><text x="3.5944%" y="607.50"></text></g><g><title>ciTypeFlow::flow_types (133 samples, 0.03%)</title><rect x="3.3444%" y="581" width="0.0252%" height="15" fill="rgb(243,35,44)" fg:x="17632" fg:w="133"/><text x="3.5944%" y="591.50"></text></g><g><title>Compile::call_generator (190 samples, 0.04%)</title><rect x="3.3343%" y="645" width="0.0360%" height="15" fill="rgb(246,89,9)" fg:x="17579" fg:w="190"/><text x="3.5843%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (82 samples, 0.02%)</title><rect x="3.3946%" y="437" width="0.0156%" height="15" fill="rgb(233,213,13)" fg:x="17897" fg:w="82"/><text x="3.6446%" y="447.50"></text></g><g><title>ciTypeFlow::df_flow_types (102 samples, 0.02%)</title><rect x="3.3914%" y="469" width="0.0193%" height="15" fill="rgb(233,141,41)" fg:x="17880" fg:w="102"/><text x="3.6414%" y="479.50"></text></g><g><title>ciTypeFlow::flow_block (93 samples, 0.02%)</title><rect x="3.3931%" y="453" width="0.0176%" height="15" fill="rgb(239,167,4)" fg:x="17889" fg:w="93"/><text x="3.6431%" y="463.50"></text></g><g><title>ciTypeFlow::do_flow (114 samples, 0.02%)</title><rect x="3.3910%" y="501" width="0.0216%" height="15" fill="rgb(209,217,16)" fg:x="17878" fg:w="114"/><text x="3.6410%" y="511.50"></text></g><g><title>ciTypeFlow::flow_types (114 samples, 0.02%)</title><rect x="3.3910%" y="485" width="0.0216%" height="15" fill="rgb(219,88,35)" fg:x="17878" fg:w="114"/><text x="3.6410%" y="495.50"></text></g><g><title>InlineTree::ok_to_inline (149 samples, 0.03%)</title><rect x="3.3846%" y="533" width="0.0283%" height="15" fill="rgb(220,193,23)" fg:x="17844" fg:w="149"/><text x="3.6346%" y="543.50"></text></g><g><title>ciMethod::get_flow_analysis (120 samples, 0.02%)</title><rect x="3.3901%" y="517" width="0.0228%" height="15" fill="rgb(230,90,52)" fg:x="17873" fg:w="120"/><text x="3.6401%" y="527.50"></text></g><g><title>Compile::call_generator (177 samples, 0.03%)</title><rect x="3.3804%" y="549" width="0.0336%" height="15" fill="rgb(252,106,19)" fg:x="17822" fg:w="177"/><text x="3.6304%" y="559.50"></text></g><g><title>InlineTree::ok_to_inline (55 samples, 0.01%)</title><rect x="3.4459%" y="437" width="0.0104%" height="15" fill="rgb(206,74,20)" fg:x="18167" fg:w="55"/><text x="3.6959%" y="447.50"></text></g><g><title>Compile::call_generator (71 samples, 0.01%)</title><rect x="3.4438%" y="453" width="0.0135%" height="15" fill="rgb(230,138,44)" fg:x="18156" fg:w="71"/><text x="3.6938%" y="463.50"></text></g><g><title>Parse::Parse (86 samples, 0.02%)</title><rect x="3.4940%" y="341" width="0.0163%" height="15" fill="rgb(235,182,43)" fg:x="18421" fg:w="86"/><text x="3.7440%" y="351.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.02%)</title><rect x="3.4940%" y="357" width="0.0165%" height="15" fill="rgb(242,16,51)" fg:x="18421" fg:w="87"/><text x="3.7440%" y="367.50"></text></g><g><title>Parse::do_call (172 samples, 0.03%)</title><rect x="3.4827%" y="373" width="0.0326%" height="15" fill="rgb(248,9,4)" fg:x="18361" fg:w="172"/><text x="3.7327%" y="383.50"></text></g><g><title>Parse::do_field_access (65 samples, 0.01%)</title><rect x="3.5164%" y="373" width="0.0123%" height="15" fill="rgb(210,31,22)" fg:x="18539" fg:w="65"/><text x="3.7664%" y="383.50"></text></g><g><title>Parse::do_one_block (335 samples, 0.06%)</title><rect x="3.4751%" y="405" width="0.0635%" height="15" fill="rgb(239,54,39)" fg:x="18321" fg:w="335"/><text x="3.7251%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (327 samples, 0.06%)</title><rect x="3.4766%" y="389" width="0.0620%" height="15" fill="rgb(230,99,41)" fg:x="18329" fg:w="327"/><text x="3.7266%" y="399.50"></text></g><g><title>Parse::do_all_blocks (340 samples, 0.06%)</title><rect x="3.4749%" y="421" width="0.0645%" height="15" fill="rgb(253,106,12)" fg:x="18320" fg:w="340"/><text x="3.7249%" y="431.50"></text></g><g><title>ParseGenerator::generate (410 samples, 0.08%)</title><rect x="3.4684%" y="453" width="0.0778%" height="15" fill="rgb(213,46,41)" fg:x="18286" fg:w="410"/><text x="3.7184%" y="463.50"></text></g><g><title>Parse::Parse (410 samples, 0.08%)</title><rect x="3.4684%" y="437" width="0.0778%" height="15" fill="rgb(215,133,35)" fg:x="18286" fg:w="410"/><text x="3.7184%" y="447.50"></text></g><g><title>PredictedCallGenerator::generate (68 samples, 0.01%)</title><rect x="3.5462%" y="453" width="0.0129%" height="15" fill="rgb(213,28,5)" fg:x="18696" fg:w="68"/><text x="3.7962%" y="463.50"></text></g><g><title>Parse::do_call (634 samples, 0.12%)</title><rect x="3.4430%" y="469" width="0.1203%" height="15" fill="rgb(215,77,49)" fg:x="18152" fg:w="634"/><text x="3.6930%" y="479.50"></text></g><g><title>Parse::do_get_xxx (56 samples, 0.01%)</title><rect x="3.5657%" y="453" width="0.0106%" height="15" fill="rgb(248,100,22)" fg:x="18799" fg:w="56"/><text x="3.8157%" y="463.50"></text></g><g><title>GraphKit::access_store_at (53 samples, 0.01%)</title><rect x="3.5769%" y="437" width="0.0101%" height="15" fill="rgb(208,67,9)" fg:x="18858" fg:w="53"/><text x="3.8269%" y="447.50"></text></g><g><title>BarrierSetC2::store_at (53 samples, 0.01%)</title><rect x="3.5769%" y="421" width="0.0101%" height="15" fill="rgb(219,133,21)" fg:x="18858" fg:w="53"/><text x="3.8269%" y="431.50"></text></g><g><title>Parse::do_put_xxx (60 samples, 0.01%)</title><rect x="3.5764%" y="453" width="0.0114%" height="15" fill="rgb(246,46,29)" fg:x="18855" fg:w="60"/><text x="3.8264%" y="463.50"></text></g><g><title>Parse::do_field_access (135 samples, 0.03%)</title><rect x="3.5642%" y="469" width="0.0256%" height="15" fill="rgb(246,185,52)" fg:x="18791" fg:w="135"/><text x="3.8142%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (885 samples, 0.17%)</title><rect x="3.4364%" y="485" width="0.1679%" height="15" fill="rgb(252,136,11)" fg:x="18117" fg:w="885"/><text x="3.6864%" y="495.50"></text></g><g><title>Parse::do_one_block (899 samples, 0.17%)</title><rect x="3.4341%" y="501" width="0.1705%" height="15" fill="rgb(219,138,53)" fg:x="18105" fg:w="899"/><text x="3.6841%" y="511.50"></text></g><g><title>Parse::do_all_blocks (912 samples, 0.17%)</title><rect x="3.4339%" y="517" width="0.1730%" height="15" fill="rgb(211,51,23)" fg:x="18104" fg:w="912"/><text x="3.6839%" y="527.50"></text></g><g><title>Parse::Parse (991 samples, 0.19%)</title><rect x="3.4256%" y="533" width="0.1880%" height="15" fill="rgb(247,221,28)" fg:x="18060" fg:w="991"/><text x="3.6756%" y="543.50"></text></g><g><title>ParseGenerator::generate (993 samples, 0.19%)</title><rect x="3.4254%" y="549" width="0.1883%" height="15" fill="rgb(251,222,45)" fg:x="18059" fg:w="993"/><text x="3.6754%" y="559.50"></text></g><g><title>Parse::do_call (78 samples, 0.01%)</title><rect x="3.6188%" y="453" width="0.0148%" height="15" fill="rgb(217,162,53)" fg:x="19079" fg:w="78"/><text x="3.8688%" y="463.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.02%)</title><rect x="3.6181%" y="485" width="0.0195%" height="15" fill="rgb(229,93,14)" fg:x="19075" fg:w="103"/><text x="3.8681%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (102 samples, 0.02%)</title><rect x="3.6183%" y="469" width="0.0193%" height="15" fill="rgb(209,67,49)" fg:x="19076" fg:w="102"/><text x="3.8683%" y="479.50"></text></g><g><title>Parse::do_all_blocks (105 samples, 0.02%)</title><rect x="3.6179%" y="501" width="0.0199%" height="15" fill="rgb(213,87,29)" fg:x="19074" fg:w="105"/><text x="3.8679%" y="511.50"></text></g><g><title>ParseGenerator::generate (117 samples, 0.02%)</title><rect x="3.6171%" y="533" width="0.0222%" height="15" fill="rgb(205,151,52)" fg:x="19070" fg:w="117"/><text x="3.8671%" y="543.50"></text></g><g><title>Parse::Parse (117 samples, 0.02%)</title><rect x="3.6171%" y="517" width="0.0222%" height="15" fill="rgb(253,215,39)" fg:x="19070" fg:w="117"/><text x="3.8671%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (162 samples, 0.03%)</title><rect x="3.6137%" y="549" width="0.0307%" height="15" fill="rgb(221,220,41)" fg:x="19052" fg:w="162"/><text x="3.8637%" y="559.50"></text></g><g><title>Parse::do_call (1,421 samples, 0.27%)</title><rect x="3.3804%" y="565" width="0.2695%" height="15" fill="rgb(218,133,21)" fg:x="17822" fg:w="1421"/><text x="3.6304%" y="575.50"></text></g><g><title>Parse::do_get_xxx (56 samples, 0.01%)</title><rect x="3.6545%" y="549" width="0.0106%" height="15" fill="rgb(221,193,43)" fg:x="19267" fg:w="56"/><text x="3.9045%" y="559.50"></text></g><g><title>GraphKit::access_store_at (66 samples, 0.01%)</title><rect x="3.6653%" y="533" width="0.0125%" height="15" fill="rgb(240,128,52)" fg:x="19324" fg:w="66"/><text x="3.9153%" y="543.50"></text></g><g><title>BarrierSetC2::store_at (66 samples, 0.01%)</title><rect x="3.6653%" y="517" width="0.0125%" height="15" fill="rgb(253,114,12)" fg:x="19324" fg:w="66"/><text x="3.9153%" y="527.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (65 samples, 0.01%)</title><rect x="3.6655%" y="501" width="0.0123%" height="15" fill="rgb(215,223,47)" fg:x="19325" fg:w="65"/><text x="3.9155%" y="511.50"></text></g><g><title>Parse::do_put_xxx (70 samples, 0.01%)</title><rect x="3.6651%" y="549" width="0.0133%" height="15" fill="rgb(248,225,23)" fg:x="19323" fg:w="70"/><text x="3.9151%" y="559.50"></text></g><g><title>Parse::do_field_access (143 samples, 0.03%)</title><rect x="3.6524%" y="565" width="0.0271%" height="15" fill="rgb(250,108,0)" fg:x="19256" fg:w="143"/><text x="3.9024%" y="575.50"></text></g><g><title>Parse::do_one_block (1,662 samples, 0.32%)</title><rect x="3.3740%" y="597" width="0.3152%" height="15" fill="rgb(228,208,7)" fg:x="17788" fg:w="1662"/><text x="3.6240%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (1,656 samples, 0.31%)</title><rect x="3.3751%" y="581" width="0.3141%" height="15" fill="rgb(244,45,10)" fg:x="17794" fg:w="1656"/><text x="3.6251%" y="591.50"></text></g><g><title>Parse::do_all_blocks (1,663 samples, 0.32%)</title><rect x="3.3740%" y="613" width="0.3154%" height="15" fill="rgb(207,125,25)" fg:x="17788" fg:w="1663"/><text x="3.6240%" y="623.50"></text></g><g><title>ParseGenerator::generate (1,677 samples, 0.32%)</title><rect x="3.3715%" y="645" width="0.3181%" height="15" fill="rgb(210,195,18)" fg:x="17775" fg:w="1677"/><text x="3.6215%" y="655.50"></text></g><g><title>Parse::Parse (1,677 samples, 0.32%)</title><rect x="3.3715%" y="629" width="0.3181%" height="15" fill="rgb(249,80,12)" fg:x="17775" fg:w="1677"/><text x="3.6215%" y="639.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.01%)</title><rect x="3.7093%" y="405" width="0.0101%" height="15" fill="rgb(221,65,9)" fg:x="19556" fg:w="53"/><text x="3.9593%" y="415.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.01%)</title><rect x="3.7089%" y="437" width="0.0112%" height="15" fill="rgb(235,49,36)" fg:x="19554" fg:w="59"/><text x="3.9589%" y="447.50"></text></g><g><title>Parse::Parse (59 samples, 0.01%)</title><rect x="3.7089%" y="421" width="0.0112%" height="15" fill="rgb(225,32,20)" fg:x="19554" fg:w="59"/><text x="3.9589%" y="431.50"></text></g><g><title>Parse::do_call (93 samples, 0.02%)</title><rect x="3.7044%" y="453" width="0.0176%" height="15" fill="rgb(215,141,46)" fg:x="19530" fg:w="93"/><text x="3.9544%" y="463.50"></text></g><g><title>Parse::do_one_block (152 samples, 0.03%)</title><rect x="3.7023%" y="485" width="0.0288%" height="15" fill="rgb(250,160,47)" fg:x="19519" fg:w="152"/><text x="3.9523%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (151 samples, 0.03%)</title><rect x="3.7025%" y="469" width="0.0286%" height="15" fill="rgb(216,222,40)" fg:x="19520" fg:w="151"/><text x="3.9525%" y="479.50"></text></g><g><title>Parse::do_all_blocks (154 samples, 0.03%)</title><rect x="3.7021%" y="501" width="0.0292%" height="15" fill="rgb(234,217,39)" fg:x="19518" fg:w="154"/><text x="3.9521%" y="511.50"></text></g><g><title>ParseGenerator::generate (174 samples, 0.03%)</title><rect x="3.7000%" y="533" width="0.0330%" height="15" fill="rgb(207,178,40)" fg:x="19507" fg:w="174"/><text x="3.9500%" y="543.50"></text></g><g><title>Parse::Parse (173 samples, 0.03%)</title><rect x="3.7002%" y="517" width="0.0328%" height="15" fill="rgb(221,136,13)" fg:x="19508" fg:w="173"/><text x="3.9502%" y="527.50"></text></g><g><title>Parse::do_call (258 samples, 0.05%)</title><rect x="3.6921%" y="549" width="0.0489%" height="15" fill="rgb(249,199,10)" fg:x="19465" fg:w="258"/><text x="3.9421%" y="559.50"></text></g><g><title>Parse::do_one_block (315 samples, 0.06%)</title><rect x="3.6900%" y="581" width="0.0597%" height="15" fill="rgb(249,222,13)" fg:x="19454" fg:w="315"/><text x="3.9400%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (310 samples, 0.06%)</title><rect x="3.6909%" y="565" width="0.0588%" height="15" fill="rgb(244,185,38)" fg:x="19459" fg:w="310"/><text x="3.9409%" y="575.50"></text></g><g><title>Parse::do_all_blocks (316 samples, 0.06%)</title><rect x="3.6900%" y="597" width="0.0599%" height="15" fill="rgb(236,202,9)" fg:x="19454" fg:w="316"/><text x="3.9400%" y="607.50"></text></g><g><title>ParseGenerator::generate (319 samples, 0.06%)</title><rect x="3.6896%" y="629" width="0.0605%" height="15" fill="rgb(250,229,37)" fg:x="19452" fg:w="319"/><text x="3.9396%" y="639.50"></text></g><g><title>Parse::Parse (319 samples, 0.06%)</title><rect x="3.6896%" y="613" width="0.0605%" height="15" fill="rgb(206,174,23)" fg:x="19452" fg:w="319"/><text x="3.9396%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (59 samples, 0.01%)</title><rect x="3.7501%" y="629" width="0.0112%" height="15" fill="rgb(211,33,43)" fg:x="19771" fg:w="59"/><text x="4.0001%" y="639.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.01%)</title><rect x="3.7501%" y="613" width="0.0112%" height="15" fill="rgb(245,58,50)" fg:x="19771" fg:w="59"/><text x="4.0001%" y="623.50"></text></g><g><title>Parse::Parse (59 samples, 0.01%)</title><rect x="3.7501%" y="597" width="0.0112%" height="15" fill="rgb(244,68,36)" fg:x="19771" fg:w="59"/><text x="4.0001%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (379 samples, 0.07%)</title><rect x="3.6896%" y="645" width="0.0719%" height="15" fill="rgb(232,229,15)" fg:x="19452" fg:w="379"/><text x="3.9396%" y="655.50"></text></g><g><title>Parse::do_call (2,265 samples, 0.43%)</title><rect x="3.3343%" y="661" width="0.4296%" height="15" fill="rgb(254,30,23)" fg:x="17579" fg:w="2265"/><text x="3.5843%" y="671.50"></text></g><g><title>Parse::do_all_blocks (2,285 samples, 0.43%)</title><rect x="3.3343%" y="709" width="0.4334%" height="15" fill="rgb(235,160,14)" fg:x="17579" fg:w="2285"/><text x="3.5843%" y="719.50"></text></g><g><title>Parse::do_one_block (2,285 samples, 0.43%)</title><rect x="3.3343%" y="693" width="0.4334%" height="15" fill="rgb(212,155,44)" fg:x="17579" fg:w="2285"/><text x="3.5843%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (2,285 samples, 0.43%)</title><rect x="3.3343%" y="677" width="0.4334%" height="15" fill="rgb(226,2,50)" fg:x="17579" fg:w="2285"/><text x="3.5843%" y="687.50"></text></g><g><title>ParseGenerator::generate (2,287 samples, 0.43%)</title><rect x="3.3343%" y="741" width="0.4338%" height="15" fill="rgb(234,177,6)" fg:x="17579" fg:w="2287"/><text x="3.5843%" y="751.50"></text></g><g><title>Parse::Parse (2,287 samples, 0.43%)</title><rect x="3.3343%" y="725" width="0.4338%" height="15" fill="rgb(217,24,9)" fg:x="17579" fg:w="2287"/><text x="3.5843%" y="735.50"></text></g><g><title>C2Compiler::compile_method (2,315 samples, 0.44%)</title><rect x="3.3292%" y="773" width="0.4391%" height="15" fill="rgb(220,13,46)" fg:x="17552" fg:w="2315"/><text x="3.5792%" y="783.50"></text></g><g><title>Compile::Compile (2,315 samples, 0.44%)</title><rect x="3.3292%" y="757" width="0.4391%" height="15" fill="rgb(239,221,27)" fg:x="17552" fg:w="2315"/><text x="3.5792%" y="767.50"></text></g><g><title>PhaseCFG::schedule_late (55 samples, 0.01%)</title><rect x="3.7805%" y="725" width="0.0104%" height="15" fill="rgb(222,198,25)" fg:x="19931" fg:w="55"/><text x="4.0305%" y="735.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (55 samples, 0.01%)</title><rect x="3.7805%" y="709" width="0.0104%" height="15" fill="rgb(211,99,13)" fg:x="19931" fg:w="55"/><text x="4.0305%" y="719.50"></text></g><g><title>PhaseCFG::sched_call (199 samples, 0.04%)</title><rect x="3.7909%" y="709" width="0.0377%" height="15" fill="rgb(232,111,31)" fg:x="19986" fg:w="199"/><text x="4.0409%" y="719.50"></text></g><g><title>PhaseCFG::schedule_local (200 samples, 0.04%)</title><rect x="3.7909%" y="725" width="0.0379%" height="15" fill="rgb(245,82,37)" fg:x="19986" fg:w="200"/><text x="4.0409%" y="735.50"></text></g><g><title>PhaseCFG::do_global_code_motion (261 samples, 0.05%)</title><rect x="3.7797%" y="757" width="0.0495%" height="15" fill="rgb(227,149,46)" fg:x="19927" fg:w="261"/><text x="4.0297%" y="767.50"></text></g><g><title>PhaseCFG::global_code_motion (261 samples, 0.05%)</title><rect x="3.7797%" y="741" width="0.0495%" height="15" fill="rgb(218,36,50)" fg:x="19927" fg:w="261"/><text x="4.0297%" y="751.50"></text></g><g><title>Compile::Code_Gen (370 samples, 0.07%)</title><rect x="3.7691%" y="773" width="0.0702%" height="15" fill="rgb(226,80,48)" fg:x="19871" fg:w="370"/><text x="4.0191%" y="783.50"></text></g><g><title>OopFlow::compute_reach (184 samples, 0.03%)</title><rect x="3.9392%" y="709" width="0.0349%" height="15" fill="rgb(238,224,15)" fg:x="20768" fg:w="184"/><text x="4.1892%" y="719.50"></text></g><g><title>OopFlow::build_oop_map (111 samples, 0.02%)</title><rect x="3.9531%" y="693" width="0.0211%" height="15" fill="rgb(241,136,10)" fg:x="20841" fg:w="111"/><text x="4.2031%" y="703.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (85 samples, 0.02%)</title><rect x="3.9768%" y="709" width="0.0161%" height="15" fill="rgb(208,32,45)" fg:x="20966" fg:w="85"/><text x="4.2268%" y="719.50"></text></g><g><title>Compile::BuildOopMaps (795 samples, 0.15%)</title><rect x="3.8434%" y="725" width="0.1508%" height="15" fill="rgb(207,135,9)" fg:x="20263" fg:w="795"/><text x="4.0934%" y="735.50"></text></g><g><title>Compile::scratch_emit_size (178 samples, 0.03%)</title><rect x="4.0299%" y="693" width="0.0338%" height="15" fill="rgb(206,86,44)" fg:x="21246" fg:w="178"/><text x="4.2799%" y="703.50"></text></g><g><title>Compile::shorten_branches (346 samples, 0.07%)</title><rect x="4.0031%" y="709" width="0.0656%" height="15" fill="rgb(245,177,15)" fg:x="21105" fg:w="346"/><text x="4.2531%" y="719.50"></text></g><g><title>Compile::init_buffer (396 samples, 0.08%)</title><rect x="3.9942%" y="725" width="0.0751%" height="15" fill="rgb(206,64,50)" fg:x="21058" fg:w="396"/><text x="4.2442%" y="735.50"></text></g><g><title>Compile::Output (1,210 samples, 0.23%)</title><rect x="3.8404%" y="741" width="0.2295%" height="15" fill="rgb(234,36,40)" fg:x="20247" fg:w="1210"/><text x="4.0904%" y="751.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (60 samples, 0.01%)</title><rect x="4.1160%" y="709" width="0.0114%" height="15" fill="rgb(213,64,8)" fg:x="21700" fg:w="60"/><text x="4.3660%" y="719.50"></text></g><g><title>DebugInformationRecorder::describe_scope (59 samples, 0.01%)</title><rect x="4.1274%" y="709" width="0.0112%" height="15" fill="rgb(210,75,36)" fg:x="21760" fg:w="59"/><text x="4.3774%" y="719.50"></text></g><g><title>Compile::Process_OopMap_Node (248 samples, 0.05%)</title><rect x="4.1010%" y="725" width="0.0470%" height="15" fill="rgb(229,88,21)" fg:x="21621" fg:w="248"/><text x="4.3510%" y="735.50"></text></g><g><title>Compile::fill_buffer (576 samples, 0.11%)</title><rect x="4.0699%" y="741" width="0.1093%" height="15" fill="rgb(252,204,47)" fg:x="21457" fg:w="576"/><text x="4.3199%" y="751.50"></text></g><g><title>Matcher::find_shared (364 samples, 0.07%)</title><rect x="4.1974%" y="725" width="0.0690%" height="15" fill="rgb(208,77,27)" fg:x="22129" fg:w="364"/><text x="4.4474%" y="735.50"></text></g><g><title>Arena::contains (589 samples, 0.11%)</title><rect x="4.3459%" y="709" width="0.1117%" height="15" fill="rgb(221,76,26)" fg:x="22912" fg:w="589"/><text x="4.5959%" y="719.50"></text></g><g><title>Matcher::match_tree (90 samples, 0.02%)</title><rect x="4.4724%" y="693" width="0.0171%" height="15" fill="rgb(225,139,18)" fg:x="23579" fg:w="90"/><text x="4.7224%" y="703.50"></text></g><g><title>Matcher::match_sfpt (125 samples, 0.02%)</title><rect x="4.4680%" y="709" width="0.0237%" height="15" fill="rgb(230,137,11)" fg:x="23556" fg:w="125"/><text x="4.7180%" y="719.50"></text></g><g><title>Matcher::Label_Root (57 samples, 0.01%)</title><rect x="4.5706%" y="645" width="0.0108%" height="15" fill="rgb(212,28,1)" fg:x="24097" fg:w="57"/><text x="4.8206%" y="655.50"></text></g><g><title>Matcher::Label_Root (139 samples, 0.03%)</title><rect x="4.5665%" y="661" width="0.0264%" height="15" fill="rgb(248,164,17)" fg:x="24075" fg:w="139"/><text x="4.8165%" y="671.50"></text></g><g><title>State::DFA (69 samples, 0.01%)</title><rect x="4.5934%" y="661" width="0.0131%" height="15" fill="rgb(222,171,42)" fg:x="24217" fg:w="69"/><text x="4.8434%" y="671.50"></text></g><g><title>Matcher::Label_Root (305 samples, 0.06%)</title><rect x="4.5507%" y="677" width="0.0579%" height="15" fill="rgb(243,84,45)" fg:x="23992" fg:w="305"/><text x="4.8007%" y="687.50"></text></g><g><title>Matcher::Label_Root (486 samples, 0.09%)</title><rect x="4.5346%" y="693" width="0.0922%" height="15" fill="rgb(252,49,23)" fg:x="23907" fg:w="486"/><text x="4.7846%" y="703.50"></text></g><g><title>Matcher::ReduceInst_Interior (70 samples, 0.01%)</title><rect x="4.6382%" y="645" width="0.0133%" height="15" fill="rgb(215,19,7)" fg:x="24453" fg:w="70"/><text x="4.8882%" y="655.50"></text></g><g><title>Matcher::ReduceInst (111 samples, 0.02%)</title><rect x="4.6363%" y="661" width="0.0211%" height="15" fill="rgb(238,81,41)" fg:x="24443" fg:w="111"/><text x="4.8863%" y="671.50"></text></g><g><title>Matcher::ReduceInst_Interior (186 samples, 0.04%)</title><rect x="4.6329%" y="677" width="0.0353%" height="15" fill="rgb(210,199,37)" fg:x="24425" fg:w="186"/><text x="4.8829%" y="687.50"></text></g><g><title>State::MachNodeGenerator (64 samples, 0.01%)</title><rect x="4.6717%" y="677" width="0.0121%" height="15" fill="rgb(244,192,49)" fg:x="24630" fg:w="64"/><text x="4.9217%" y="687.50"></text></g><g><title>Matcher::ReduceInst (332 samples, 0.06%)</title><rect x="4.6268%" y="693" width="0.0630%" height="15" fill="rgb(226,211,11)" fg:x="24393" fg:w="332"/><text x="4.8768%" y="703.50"></text></g><g><title>Matcher::match_tree (1,067 samples, 0.20%)</title><rect x="4.4917%" y="709" width="0.2024%" height="15" fill="rgb(236,162,54)" fg:x="23681" fg:w="1067"/><text x="4.7417%" y="719.50"></text></g><g><title>Node::clone (72 samples, 0.01%)</title><rect x="4.6953%" y="709" width="0.0137%" height="15" fill="rgb(220,229,9)" fg:x="24754" fg:w="72"/><text x="4.9453%" y="719.50"></text></g><g><title>Matcher::xform (2,369 samples, 0.45%)</title><rect x="4.2693%" y="725" width="0.4493%" height="15" fill="rgb(250,87,22)" fg:x="22508" fg:w="2369"/><text x="4.5193%" y="735.50"></text></g><g><title>Matcher::match (2,832 samples, 0.54%)</title><rect x="4.1828%" y="741" width="0.5372%" height="15" fill="rgb(239,43,17)" fg:x="22052" fg:w="2832"/><text x="4.4328%" y="751.50"></text></g><g><title>PhaseBlockLayout::find_edges (53 samples, 0.01%)</title><rect x="4.7205%" y="725" width="0.0101%" height="15" fill="rgb(231,177,25)" fg:x="24887" fg:w="53"/><text x="4.9705%" y="735.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (149 samples, 0.03%)</title><rect x="4.7199%" y="741" width="0.0283%" height="15" fill="rgb(219,179,1)" fg:x="24884" fg:w="149"/><text x="4.9699%" y="751.50"></text></g><g><title>PhaseCFG::PhaseCFG (155 samples, 0.03%)</title><rect x="4.7482%" y="741" width="0.0294%" height="15" fill="rgb(238,219,53)" fg:x="25033" fg:w="155"/><text x="4.9982%" y="751.50"></text></g><g><title>PhaseCFG::build_cfg (149 samples, 0.03%)</title><rect x="4.7493%" y="725" width="0.0283%" height="15" fill="rgb(232,167,36)" fg:x="25039" fg:w="149"/><text x="4.9993%" y="735.50"></text></g><g><title>PhaseCFG::build_dominator_tree (102 samples, 0.02%)</title><rect x="4.7776%" y="725" width="0.0193%" height="15" fill="rgb(244,19,51)" fg:x="25188" fg:w="102"/><text x="5.0276%" y="735.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (54 samples, 0.01%)</title><rect x="4.7971%" y="725" width="0.0102%" height="15" fill="rgb(224,6,22)" fg:x="25291" fg:w="54"/><text x="5.0471%" y="735.50"></text></g><g><title>PhaseCFG::implicit_null_check (57 samples, 0.01%)</title><rect x="4.8802%" y="709" width="0.0108%" height="15" fill="rgb(224,145,5)" fg:x="25729" fg:w="57"/><text x="5.1302%" y="719.50"></text></g><g><title>Node_Backward_Iterator::next (276 samples, 0.05%)</title><rect x="4.9223%" y="693" width="0.0524%" height="15" fill="rgb(234,130,49)" fg:x="25951" fg:w="276"/><text x="5.1723%" y="703.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (143 samples, 0.03%)</title><rect x="4.9747%" y="693" width="0.0271%" height="15" fill="rgb(254,6,2)" fg:x="26227" fg:w="143"/><text x="5.2247%" y="703.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (173 samples, 0.03%)</title><rect x="5.0018%" y="693" width="0.0328%" height="15" fill="rgb(208,96,46)" fg:x="26370" fg:w="173"/><text x="5.2518%" y="703.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (71 samples, 0.01%)</title><rect x="5.0346%" y="693" width="0.0135%" height="15" fill="rgb(239,3,39)" fg:x="26543" fg:w="71"/><text x="5.2846%" y="703.50"></text></g><g><title>PhaseCFG::schedule_late (790 samples, 0.15%)</title><rect x="4.8990%" y="709" width="0.1498%" height="15" fill="rgb(233,210,1)" fg:x="25828" fg:w="790"/><text x="5.1490%" y="719.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (64 samples, 0.01%)</title><rect x="5.1021%" y="693" width="0.0121%" height="15" fill="rgb(244,137,37)" fg:x="26899" fg:w="64"/><text x="5.3521%" y="703.50"></text></g><g><title>PhaseCFG::select (115 samples, 0.02%)</title><rect x="5.1192%" y="693" width="0.0218%" height="15" fill="rgb(240,136,2)" fg:x="26989" fg:w="115"/><text x="5.3692%" y="703.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (68 samples, 0.01%)</title><rect x="5.1410%" y="693" width="0.0129%" height="15" fill="rgb(239,18,37)" fg:x="27104" fg:w="68"/><text x="5.3910%" y="703.50"></text></g><g><title>PhaseCFG::schedule_local (619 samples, 0.12%)</title><rect x="5.0488%" y="709" width="0.1174%" height="15" fill="rgb(218,185,22)" fg:x="26618" fg:w="619"/><text x="5.2988%" y="719.50"></text></g><g><title>RegMask::Size (104 samples, 0.02%)</title><rect x="5.2273%" y="693" width="0.0197%" height="15" fill="rgb(225,218,4)" fg:x="27559" fg:w="104"/><text x="5.4773%" y="703.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (473 samples, 0.09%)</title><rect x="5.1723%" y="709" width="0.0897%" height="15" fill="rgb(230,182,32)" fg:x="27269" fg:w="473"/><text x="5.4223%" y="719.50"></text></g><g><title>PhaseChaitin::mark_ssa (100 samples, 0.02%)</title><rect x="5.2620%" y="709" width="0.0190%" height="15" fill="rgb(242,56,43)" fg:x="27742" fg:w="100"/><text x="5.5120%" y="719.50"></text></g><g><title>IndexSet::initialize (121 samples, 0.02%)</title><rect x="5.2929%" y="693" width="0.0230%" height="15" fill="rgb(233,99,24)" fg:x="27905" fg:w="121"/><text x="5.5429%" y="703.50"></text></g><g><title>PhaseIFG::init (215 samples, 0.04%)</title><rect x="5.2810%" y="709" width="0.0408%" height="15" fill="rgb(234,209,42)" fg:x="27842" fg:w="215"/><text x="5.5310%" y="719.50"></text></g><g><title>IndexSet::initialize (63 samples, 0.01%)</title><rect x="5.3667%" y="693" width="0.0119%" height="15" fill="rgb(227,7,12)" fg:x="28294" fg:w="63"/><text x="5.6167%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (66 samples, 0.01%)</title><rect x="5.3995%" y="677" width="0.0125%" height="15" fill="rgb(245,203,43)" fg:x="28467" fg:w="66"/><text x="5.6495%" y="687.50"></text></g><g><title>PhaseLive::add_livein (171 samples, 0.03%)</title><rect x="5.3798%" y="693" width="0.0324%" height="15" fill="rgb(238,205,33)" fg:x="28363" fg:w="171"/><text x="5.6298%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (72 samples, 0.01%)</title><rect x="5.4479%" y="677" width="0.0137%" height="15" fill="rgb(231,56,7)" fg:x="28722" fg:w="72"/><text x="5.6979%" y="687.50"></text></g><g><title>IndexSetIterator::advance_and_next (92 samples, 0.02%)</title><rect x="5.4652%" y="677" width="0.0175%" height="15" fill="rgb(244,186,29)" fg:x="28813" fg:w="92"/><text x="5.7152%" y="687.50"></text></g><g><title>PhaseLive::add_liveout (377 samples, 0.07%)</title><rect x="5.4122%" y="693" width="0.0715%" height="15" fill="rgb(234,111,31)" fg:x="28534" fg:w="377"/><text x="5.6622%" y="703.50"></text></g><g><title>PhaseLive::compute (855 samples, 0.16%)</title><rect x="5.3220%" y="709" width="0.1622%" height="15" fill="rgb(241,149,10)" fg:x="28058" fg:w="855"/><text x="5.5720%" y="719.50"></text></g><g><title>PhaseCFG::global_code_motion (3,597 samples, 0.68%)</title><rect x="4.8074%" y="725" width="0.6823%" height="15" fill="rgb(249,206,44)" fg:x="25345" fg:w="3597"/><text x="5.0574%" y="735.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,755 samples, 0.71%)</title><rect x="4.7776%" y="741" width="0.7122%" height="15" fill="rgb(251,153,30)" fg:x="25188" fg:w="3755"/><text x="5.0276%" y="751.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (79 samples, 0.01%)</title><rect x="5.4946%" y="741" width="0.0150%" height="15" fill="rgb(239,152,38)" fg:x="28968" fg:w="79"/><text x="5.7446%" y="751.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,093 samples, 0.21%)</title><rect x="5.5378%" y="725" width="0.2073%" height="15" fill="rgb(249,139,47)" fg:x="29196" fg:w="1093"/><text x="5.7878%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (275 samples, 0.05%)</title><rect x="5.8496%" y="709" width="0.0522%" height="15" fill="rgb(244,64,35)" fg:x="30840" fg:w="275"/><text x="6.0996%" y="719.50"></text></g><g><title>PhaseChaitin::bias_color (152 samples, 0.03%)</title><rect x="5.9018%" y="709" width="0.0288%" height="15" fill="rgb(216,46,15)" fg:x="31115" fg:w="152"/><text x="6.1518%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (77 samples, 0.01%)</title><rect x="6.0042%" y="693" width="0.0146%" height="15" fill="rgb(250,74,19)" fg:x="31655" fg:w="77"/><text x="6.2542%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (316 samples, 0.06%)</title><rect x="6.0188%" y="693" width="0.0599%" height="15" fill="rgb(249,42,33)" fg:x="31732" fg:w="316"/><text x="6.2688%" y="703.50"></text></g><g><title>PhaseIFG::re_insert (781 samples, 0.15%)</title><rect x="5.9327%" y="709" width="0.1481%" height="15" fill="rgb(242,149,17)" fg:x="31278" fg:w="781"/><text x="6.1827%" y="719.50"></text></g><g><title>RegMask::clear_to_sets (145 samples, 0.03%)</title><rect x="6.0809%" y="709" width="0.0275%" height="15" fill="rgb(244,29,21)" fg:x="32059" fg:w="145"/><text x="6.3309%" y="719.50"></text></g><g><title>PhaseChaitin::Select (1,921 samples, 0.36%)</title><rect x="5.7451%" y="725" width="0.3644%" height="15" fill="rgb(220,130,37)" fg:x="30289" fg:w="1921"/><text x="5.9951%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (264 samples, 0.05%)</title><rect x="6.1588%" y="709" width="0.0501%" height="15" fill="rgb(211,67,2)" fg:x="32470" fg:w="264"/><text x="6.4088%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (355 samples, 0.07%)</title><rect x="6.2948%" y="693" width="0.0673%" height="15" fill="rgb(235,68,52)" fg:x="33187" fg:w="355"/><text x="6.5448%" y="703.50"></text></g><g><title>PhaseChaitin::Simplify (1,333 samples, 0.25%)</title><rect x="6.1095%" y="725" width="0.2528%" height="15" fill="rgb(246,142,3)" fg:x="32210" fg:w="1333"/><text x="6.3595%" y="735.50"></text></g><g><title>PhaseIFG::remove_node (809 samples, 0.15%)</title><rect x="6.2089%" y="709" width="0.1534%" height="15" fill="rgb(241,25,7)" fg:x="32734" fg:w="809"/><text x="6.4589%" y="719.50"></text></g><g><title>MachNode::rematerialize (138 samples, 0.03%)</title><rect x="6.8195%" y="709" width="0.0262%" height="15" fill="rgb(242,119,39)" fg:x="35953" fg:w="138"/><text x="7.0695%" y="719.50"></text></g><g><title>Node::rematerialize (102 samples, 0.02%)</title><rect x="6.8523%" y="709" width="0.0193%" height="15" fill="rgb(241,98,45)" fg:x="36126" fg:w="102"/><text x="7.1023%" y="719.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (82 samples, 0.02%)</title><rect x="6.9078%" y="693" width="0.0156%" height="15" fill="rgb(254,28,30)" fg:x="36419" fg:w="82"/><text x="7.1578%" y="703.50"></text></g><g><title>PhaseChaitin::split_USE (163 samples, 0.03%)</title><rect x="6.8987%" y="709" width="0.0309%" height="15" fill="rgb(241,142,54)" fg:x="36371" fg:w="163"/><text x="7.1487%" y="719.50"></text></g><g><title>PhaseChaitin::Split (3,064 samples, 0.58%)</title><rect x="6.3623%" y="725" width="0.5812%" height="15" fill="rgb(222,85,15)" fg:x="33543" fg:w="3064"/><text x="6.6123%" y="735.50"></text></g><g><title>IndexSet::IndexSet (287 samples, 0.05%)</title><rect x="7.1002%" y="709" width="0.0544%" height="15" fill="rgb(210,85,47)" fg:x="37433" fg:w="287"/><text x="7.3502%" y="719.50"></text></g><g><title>MachNode::rematerialize (56 samples, 0.01%)</title><rect x="7.1558%" y="709" width="0.0106%" height="15" fill="rgb(224,206,25)" fg:x="37726" fg:w="56"/><text x="7.4058%" y="719.50"></text></g><g><title>MachNode::rematerialize (77 samples, 0.01%)</title><rect x="7.2593%" y="693" width="0.0146%" height="15" fill="rgb(243,201,19)" fg:x="38272" fg:w="77"/><text x="7.5093%" y="703.50"></text></g><g><title>PhaseChaitin::raise_pressure (136 samples, 0.03%)</title><rect x="7.2768%" y="693" width="0.0258%" height="15" fill="rgb(236,59,4)" fg:x="38364" fg:w="136"/><text x="7.5268%" y="703.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (702 samples, 0.13%)</title><rect x="7.1700%" y="709" width="0.1332%" height="15" fill="rgb(254,179,45)" fg:x="37801" fg:w="702"/><text x="7.4200%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (181 samples, 0.03%)</title><rect x="7.3708%" y="693" width="0.0343%" height="15" fill="rgb(226,14,10)" fg:x="38860" fg:w="181"/><text x="7.6208%" y="703.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (541 samples, 0.10%)</title><rect x="7.3189%" y="709" width="0.1026%" height="15" fill="rgb(244,27,41)" fg:x="38586" fg:w="541"/><text x="7.5689%" y="719.50"></text></g><g><title>RegMask::is_UP (86 samples, 0.02%)</title><rect x="7.4052%" y="693" width="0.0163%" height="15" fill="rgb(235,35,32)" fg:x="39041" fg:w="86"/><text x="7.6552%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (101 samples, 0.02%)</title><rect x="7.7635%" y="693" width="0.0192%" height="15" fill="rgb(218,68,31)" fg:x="40930" fg:w="101"/><text x="8.0135%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (732 samples, 0.14%)</title><rect x="7.7840%" y="693" width="0.1388%" height="15" fill="rgb(207,120,37)" fg:x="41038" fg:w="732"/><text x="8.0340%" y="703.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,648 samples, 0.50%)</title><rect x="7.4215%" y="709" width="0.5023%" height="15" fill="rgb(227,98,0)" fg:x="39127" fg:w="2648"/><text x="7.6715%" y="719.50"></text></g><g><title>PhaseChaitin::lower_pressure (93 samples, 0.02%)</title><rect x="7.9238%" y="709" width="0.0176%" height="15" fill="rgb(207,7,3)" fg:x="41775" fg:w="93"/><text x="8.1738%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (193 samples, 0.04%)</title><rect x="8.0415%" y="693" width="0.0366%" height="15" fill="rgb(206,98,19)" fg:x="42396" fg:w="193"/><text x="8.2915%" y="703.50"></text></g><g><title>RegMask::Size (329 samples, 0.06%)</title><rect x="8.0782%" y="693" width="0.0624%" height="15" fill="rgb(217,5,26)" fg:x="42589" fg:w="329"/><text x="8.3282%" y="703.50"></text></g><g><title>RegMask::smear_to_sets (662 samples, 0.13%)</title><rect x="8.1406%" y="693" width="0.1256%" height="15" fill="rgb(235,190,38)" fg:x="42918" fg:w="662"/><text x="8.3906%" y="703.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,722 samples, 0.33%)</title><rect x="7.9414%" y="709" width="0.3266%" height="15" fill="rgb(247,86,24)" fg:x="41868" fg:w="1722"/><text x="8.1914%" y="719.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,070 samples, 1.34%)</title><rect x="6.9441%" y="725" width="1.3410%" height="15" fill="rgb(205,101,16)" fg:x="36610" fg:w="7070"/><text x="7.1941%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (349 samples, 0.07%)</title><rect x="8.3128%" y="709" width="0.0662%" height="15" fill="rgb(246,168,33)" fg:x="43826" fg:w="349"/><text x="8.5628%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (74 samples, 0.01%)</title><rect x="8.3649%" y="693" width="0.0140%" height="15" fill="rgb(231,114,1)" fg:x="44101" fg:w="74"/><text x="8.6149%" y="703.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (499 samples, 0.09%)</title><rect x="8.2851%" y="725" width="0.0946%" height="15" fill="rgb(207,184,53)" fg:x="43680" fg:w="499"/><text x="8.5351%" y="735.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (113 samples, 0.02%)</title><rect x="8.3797%" y="725" width="0.0214%" height="15" fill="rgb(224,95,51)" fg:x="44179" fg:w="113"/><text x="8.6297%" y="735.50"></text></g><g><title>PhaseChaitin::de_ssa (99 samples, 0.02%)</title><rect x="8.4069%" y="725" width="0.0188%" height="15" fill="rgb(212,188,45)" fg:x="44322" fg:w="99"/><text x="8.6569%" y="735.50"></text></g><g><title>PhaseChaitin::fixup_spills (60 samples, 0.01%)</title><rect x="8.4256%" y="725" width="0.0114%" height="15" fill="rgb(223,154,38)" fg:x="44421" fg:w="60"/><text x="8.6756%" y="735.50"></text></g><g><title>MachCallJavaNode::in_RegMask (71 samples, 0.01%)</title><rect x="8.7712%" y="709" width="0.0135%" height="15" fill="rgb(251,22,52)" fg:x="46243" fg:w="71"/><text x="9.0212%" y="719.50"></text></g><g><title>MachNode::ideal_reg (84 samples, 0.02%)</title><rect x="8.7858%" y="709" width="0.0159%" height="15" fill="rgb(229,209,22)" fg:x="46320" fg:w="84"/><text x="9.0358%" y="719.50"></text></g><g><title>MachNode::in_RegMask (64 samples, 0.01%)</title><rect x="8.8018%" y="709" width="0.0121%" height="15" fill="rgb(234,138,34)" fg:x="46404" fg:w="64"/><text x="9.0518%" y="719.50"></text></g><g><title>RegMask::Size (1,161 samples, 0.22%)</title><rect x="8.8340%" y="709" width="0.2202%" height="15" fill="rgb(212,95,11)" fg:x="46574" fg:w="1161"/><text x="9.0840%" y="719.50"></text></g><g><title>RegMask::clear_to_sets (200 samples, 0.04%)</title><rect x="9.0542%" y="709" width="0.0379%" height="15" fill="rgb(240,179,47)" fg:x="47735" fg:w="200"/><text x="9.3042%" y="719.50"></text></g><g><title>RegMask::is_aligned_pairs (80 samples, 0.02%)</title><rect x="9.0922%" y="709" width="0.0152%" height="15" fill="rgb(240,163,11)" fg:x="47935" fg:w="80"/><text x="9.3422%" y="719.50"></text></g><g><title>RegMask::is_bound1 (164 samples, 0.03%)</title><rect x="9.1073%" y="709" width="0.0311%" height="15" fill="rgb(236,37,12)" fg:x="48015" fg:w="164"/><text x="9.3573%" y="719.50"></text></g><g><title>RegMask::is_bound_pair (98 samples, 0.02%)</title><rect x="9.1384%" y="709" width="0.0186%" height="15" fill="rgb(232,164,16)" fg:x="48179" fg:w="98"/><text x="9.3884%" y="719.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,953 samples, 0.75%)</title><rect x="8.4370%" y="725" width="0.7498%" height="15" fill="rgb(244,205,15)" fg:x="44481" fg:w="3953"/><text x="8.6870%" y="735.50"></text></g><g><title>PhaseChaitin::merge_multidefs (539 samples, 0.10%)</title><rect x="9.1870%" y="725" width="0.1022%" height="15" fill="rgb(223,117,47)" fg:x="48435" fg:w="539"/><text x="9.4370%" y="735.50"></text></g><g><title>PhaseChaitin::use_prior_register (92 samples, 0.02%)</title><rect x="9.9603%" y="693" width="0.0175%" height="15" fill="rgb(244,107,35)" fg:x="52512" fg:w="92"/><text x="10.2103%" y="703.50"></text></g><g><title>PhaseChaitin::elide_copy (1,842 samples, 0.35%)</title><rect x="9.6367%" y="709" width="0.3494%" height="15" fill="rgb(205,140,8)" fg:x="50806" fg:w="1842"/><text x="9.8867%" y="719.50"></text></g><g><title>[libc-2.31.so] (85 samples, 0.02%)</title><rect x="9.9935%" y="709" width="0.0161%" height="15" fill="rgb(228,84,46)" fg:x="52687" fg:w="85"/><text x="10.2435%" y="719.50"></text></g><g><title>find_lowest_bit (330 samples, 0.06%)</title><rect x="10.0102%" y="709" width="0.0626%" height="15" fill="rgb(254,188,9)" fg:x="52775" fg:w="330"/><text x="10.2602%" y="719.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,136 samples, 0.78%)</title><rect x="9.2896%" y="725" width="0.7845%" height="15" fill="rgb(206,112,54)" fg:x="48976" fg:w="4136"/><text x="9.5396%" y="735.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (183 samples, 0.03%)</title><rect x="10.0743%" y="725" width="0.0347%" height="15" fill="rgb(216,84,49)" fg:x="53113" fg:w="183"/><text x="10.3243%" y="735.50"></text></g><g><title>PhaseCoalesce::combine_these_two (75 samples, 0.01%)</title><rect x="10.1267%" y="693" width="0.0142%" height="15" fill="rgb(214,194,35)" fg:x="53389" fg:w="75"/><text x="10.3767%" y="703.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (162 samples, 0.03%)</title><rect x="10.1104%" y="709" width="0.0307%" height="15" fill="rgb(249,28,3)" fg:x="53303" fg:w="162"/><text x="10.3604%" y="719.50"></text></g><g><title>PhaseCFG::is_uncommon (121 samples, 0.02%)</title><rect x="10.1515%" y="693" width="0.0230%" height="15" fill="rgb(222,56,52)" fg:x="53520" fg:w="121"/><text x="10.4015%" y="703.50"></text></g><g><title>IndexSet::lrg_union (263 samples, 0.05%)</title><rect x="10.1836%" y="677" width="0.0499%" height="15" fill="rgb(245,217,50)" fg:x="53689" fg:w="263"/><text x="10.4336%" y="687.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (252 samples, 0.05%)</title><rect x="10.2374%" y="677" width="0.0478%" height="15" fill="rgb(213,201,24)" fg:x="53973" fg:w="252"/><text x="10.4874%" y="687.50"></text></g><g><title>PhaseIFG::effective_degree (76 samples, 0.01%)</title><rect x="10.2852%" y="677" width="0.0144%" height="15" fill="rgb(248,116,28)" fg:x="54225" fg:w="76"/><text x="10.5352%" y="687.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (689 samples, 0.13%)</title><rect x="10.1745%" y="693" width="0.1307%" height="15" fill="rgb(219,72,43)" fg:x="53641" fg:w="689"/><text x="10.4245%" y="703.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,036 samples, 0.20%)</title><rect x="10.1090%" y="725" width="0.1965%" height="15" fill="rgb(209,138,14)" fg:x="53296" fg:w="1036"/><text x="10.3590%" y="735.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (867 samples, 0.16%)</title><rect x="10.1411%" y="709" width="0.1644%" height="15" fill="rgb(222,18,33)" fg:x="53465" fg:w="867"/><text x="10.3911%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (53 samples, 0.01%)</title><rect x="10.3778%" y="709" width="0.0101%" height="15" fill="rgb(213,199,7)" fg:x="54713" fg:w="53"/><text x="10.6278%" y="719.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (859 samples, 0.16%)</title><rect x="10.3055%" y="725" width="0.1629%" height="15" fill="rgb(250,110,10)" fg:x="54332" fg:w="859"/><text x="10.5555%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (425 samples, 0.08%)</title><rect x="10.3879%" y="709" width="0.0806%" height="15" fill="rgb(248,123,6)" fg:x="54766" fg:w="425"/><text x="10.6379%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (55 samples, 0.01%)</title><rect x="10.5267%" y="709" width="0.0104%" height="15" fill="rgb(206,91,31)" fg:x="55498" fg:w="55"/><text x="10.7767%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (80 samples, 0.02%)</title><rect x="10.5371%" y="709" width="0.0152%" height="15" fill="rgb(211,154,13)" fg:x="55553" fg:w="80"/><text x="10.7871%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (372 samples, 0.07%)</title><rect x="10.5523%" y="709" width="0.0706%" height="15" fill="rgb(225,148,7)" fg:x="55633" fg:w="372"/><text x="10.8023%" y="719.50"></text></g><g><title>PhaseIFG::SquareUp (816 samples, 0.15%)</title><rect x="10.4685%" y="725" width="0.1548%" height="15" fill="rgb(220,160,43)" fg:x="55191" fg:w="816"/><text x="10.7185%" y="735.50"></text></g><g><title>IndexSet::initialize (204 samples, 0.04%)</title><rect x="10.6452%" y="709" width="0.0387%" height="15" fill="rgb(213,52,39)" fg:x="56123" fg:w="204"/><text x="10.8952%" y="719.50"></text></g><g><title>PhaseIFG::init (366 samples, 0.07%)</title><rect x="10.6232%" y="725" width="0.0694%" height="15" fill="rgb(243,137,7)" fg:x="56007" fg:w="366"/><text x="10.8732%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (60 samples, 0.01%)</title><rect x="10.9233%" y="709" width="0.0114%" height="15" fill="rgb(230,79,13)" fg:x="57589" fg:w="60"/><text x="11.1733%" y="719.50"></text></g><g><title>IndexSet::initialize (96 samples, 0.02%)</title><rect x="10.9440%" y="709" width="0.0182%" height="15" fill="rgb(247,105,23)" fg:x="57698" fg:w="96"/><text x="11.1940%" y="719.50"></text></g><g><title>__tls_get_addr (55 samples, 0.01%)</title><rect x="11.1109%" y="677" width="0.0104%" height="15" fill="rgb(223,179,41)" fg:x="58578" fg:w="55"/><text x="11.3609%" y="687.50"></text></g><g><title>IndexSet::alloc_block_containing (186 samples, 0.04%)</title><rect x="11.0872%" y="693" width="0.0353%" height="15" fill="rgb(218,9,34)" fg:x="58453" fg:w="186"/><text x="11.3372%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (286 samples, 0.05%)</title><rect x="11.1312%" y="693" width="0.0542%" height="15" fill="rgb(222,106,8)" fg:x="58685" fg:w="286"/><text x="11.3812%" y="703.50"></text></g><g><title>PhaseLive::add_liveout (1,190 samples, 0.23%)</title><rect x="10.9624%" y="709" width="0.2257%" height="15" fill="rgb(211,220,0)" fg:x="57795" fg:w="1190"/><text x="11.2124%" y="719.50"></text></g><g><title>PhaseLive::compute (2,619 samples, 0.50%)</title><rect x="10.6938%" y="725" width="0.4968%" height="15" fill="rgb(229,52,16)" fg:x="56379" fg:w="2619"/><text x="10.9438%" y="735.50"></text></g><g><title>find_lowest_bit (57 samples, 0.01%)</title><rect x="11.2050%" y="725" width="0.0108%" height="15" fill="rgb(212,155,18)" fg:x="59074" fg:w="57"/><text x="11.4550%" y="735.50"></text></g><g><title>PhaseChaitin::Register_Allocate (30,077 samples, 5.70%)</title><rect x="5.5137%" y="741" width="5.7049%" height="15" fill="rgb(242,21,14)" fg:x="29069" fg:w="30077"/><text x="5.7637%" y="751.50">PhaseCh..</text></g><g><title>Compile::Code_Gen (38,957 samples, 7.39%)</title><rect x="3.8393%" y="757" width="7.3892%" height="15" fill="rgb(222,19,48)" fg:x="20241" fg:w="38957"/><text x="4.0893%" y="767.50">Compile::C..</text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="11.2826%" y="85" width="0.0116%" height="15" fill="rgb(232,45,27)" fg:x="59483" fg:w="61"/><text x="11.5326%" y="95.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="11.2826%" y="69" width="0.0116%" height="15" fill="rgb(249,103,42)" fg:x="59483" fg:w="61"/><text x="11.5326%" y="79.50"></text></g><g><title>Parse::do_call (101 samples, 0.02%)</title><rect x="11.2765%" y="101" width="0.0192%" height="15" fill="rgb(246,81,33)" fg:x="59451" fg:w="101"/><text x="11.5265%" y="111.50"></text></g><g><title>Parse::do_one_block (174 samples, 0.03%)</title><rect x="11.2746%" y="133" width="0.0330%" height="15" fill="rgb(252,33,42)" fg:x="59441" fg:w="174"/><text x="11.5246%" y="143.50"></text></g><g><title>Parse::do_one_bytecode (173 samples, 0.03%)</title><rect x="11.2748%" y="117" width="0.0328%" height="15" fill="rgb(209,212,41)" fg:x="59442" fg:w="173"/><text x="11.5248%" y="127.50"></text></g><g><title>Parse::do_all_blocks (180 samples, 0.03%)</title><rect x="11.2744%" y="149" width="0.0341%" height="15" fill="rgb(207,154,6)" fg:x="59440" fg:w="180"/><text x="11.5244%" y="159.50"></text></g><g><title>ParseGenerator::generate (201 samples, 0.04%)</title><rect x="11.2719%" y="181" width="0.0381%" height="15" fill="rgb(223,64,47)" fg:x="59427" fg:w="201"/><text x="11.5219%" y="191.50"></text></g><g><title>Parse::Parse (200 samples, 0.04%)</title><rect x="11.2721%" y="165" width="0.0379%" height="15" fill="rgb(211,161,38)" fg:x="59428" fg:w="200"/><text x="11.5221%" y="175.50"></text></g><g><title>Parse::do_call (274 samples, 0.05%)</title><rect x="11.2625%" y="197" width="0.0520%" height="15" fill="rgb(219,138,40)" fg:x="59377" fg:w="274"/><text x="11.5125%" y="207.50"></text></g><g><title>Parse::do_one_block (378 samples, 0.07%)</title><rect x="11.2592%" y="229" width="0.0717%" height="15" fill="rgb(241,228,46)" fg:x="59360" fg:w="378"/><text x="11.5092%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (377 samples, 0.07%)</title><rect x="11.2594%" y="213" width="0.0715%" height="15" fill="rgb(223,209,38)" fg:x="59361" fg:w="377"/><text x="11.5094%" y="223.50"></text></g><g><title>Parse::do_all_blocks (383 samples, 0.07%)</title><rect x="11.2590%" y="245" width="0.0726%" height="15" fill="rgb(236,164,45)" fg:x="59359" fg:w="383"/><text x="11.5090%" y="255.50"></text></g><g><title>ParseGenerator::generate (407 samples, 0.08%)</title><rect x="11.2566%" y="277" width="0.0772%" height="15" fill="rgb(231,15,5)" fg:x="59346" fg:w="407"/><text x="11.5066%" y="287.50"></text></g><g><title>Parse::Parse (407 samples, 0.08%)</title><rect x="11.2566%" y="261" width="0.0772%" height="15" fill="rgb(252,35,15)" fg:x="59346" fg:w="407"/><text x="11.5066%" y="271.50"></text></g><g><title>Parse::do_call (518 samples, 0.10%)</title><rect x="11.2442%" y="293" width="0.0983%" height="15" fill="rgb(248,181,18)" fg:x="59281" fg:w="518"/><text x="11.4942%" y="303.50"></text></g><g><title>ParseGenerator::generate (601 samples, 0.11%)</title><rect x="11.2412%" y="373" width="0.1140%" height="15" fill="rgb(233,39,42)" fg:x="59265" fg:w="601"/><text x="11.4912%" y="383.50"></text></g><g><title>Parse::Parse (601 samples, 0.11%)</title><rect x="11.2412%" y="357" width="0.1140%" height="15" fill="rgb(238,110,33)" fg:x="59265" fg:w="601"/><text x="11.4912%" y="367.50"></text></g><g><title>Parse::do_all_blocks (597 samples, 0.11%)</title><rect x="11.2420%" y="341" width="0.1132%" height="15" fill="rgb(233,195,10)" fg:x="59269" fg:w="597"/><text x="11.4920%" y="351.50"></text></g><g><title>Parse::do_one_block (597 samples, 0.11%)</title><rect x="11.2420%" y="325" width="0.1132%" height="15" fill="rgb(254,105,3)" fg:x="59269" fg:w="597"/><text x="11.4920%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (596 samples, 0.11%)</title><rect x="11.2422%" y="309" width="0.1130%" height="15" fill="rgb(221,225,9)" fg:x="59270" fg:w="596"/><text x="11.4922%" y="319.50"></text></g><g><title>Parse::do_call (682 samples, 0.13%)</title><rect x="11.2348%" y="389" width="0.1294%" height="15" fill="rgb(224,227,45)" fg:x="59231" fg:w="682"/><text x="11.4848%" y="399.50"></text></g><g><title>ParseGenerator::generate (697 samples, 0.13%)</title><rect x="11.2346%" y="469" width="0.1322%" height="15" fill="rgb(229,198,43)" fg:x="59230" fg:w="697"/><text x="11.4846%" y="479.50"></text></g><g><title>Parse::Parse (697 samples, 0.13%)</title><rect x="11.2346%" y="453" width="0.1322%" height="15" fill="rgb(206,209,35)" fg:x="59230" fg:w="697"/><text x="11.4846%" y="463.50"></text></g><g><title>Parse::do_all_blocks (696 samples, 0.13%)</title><rect x="11.2348%" y="437" width="0.1320%" height="15" fill="rgb(245,195,53)" fg:x="59231" fg:w="696"/><text x="11.4848%" y="447.50"></text></g><g><title>Parse::do_one_block (696 samples, 0.13%)</title><rect x="11.2348%" y="421" width="0.1320%" height="15" fill="rgb(240,92,26)" fg:x="59231" fg:w="696"/><text x="11.4848%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (696 samples, 0.13%)</title><rect x="11.2348%" y="405" width="0.1320%" height="15" fill="rgb(207,40,23)" fg:x="59231" fg:w="696"/><text x="11.4848%" y="415.50"></text></g><g><title>Parse::do_call (79 samples, 0.01%)</title><rect x="11.3679%" y="277" width="0.0150%" height="15" fill="rgb(223,111,35)" fg:x="59933" fg:w="79"/><text x="11.6179%" y="287.50"></text></g><g><title>ParseGenerator::generate (99 samples, 0.02%)</title><rect x="11.3675%" y="357" width="0.0188%" height="15" fill="rgb(229,147,28)" fg:x="59931" fg:w="99"/><text x="11.6175%" y="367.50"></text></g><g><title>Parse::Parse (99 samples, 0.02%)</title><rect x="11.3675%" y="341" width="0.0188%" height="15" fill="rgb(211,29,28)" fg:x="59931" fg:w="99"/><text x="11.6175%" y="351.50"></text></g><g><title>Parse::do_all_blocks (99 samples, 0.02%)</title><rect x="11.3675%" y="325" width="0.0188%" height="15" fill="rgb(228,72,33)" fg:x="59931" fg:w="99"/><text x="11.6175%" y="335.50"></text></g><g><title>Parse::do_one_block (99 samples, 0.02%)</title><rect x="11.3675%" y="309" width="0.0188%" height="15" fill="rgb(205,214,31)" fg:x="59931" fg:w="99"/><text x="11.6175%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (98 samples, 0.02%)</title><rect x="11.3677%" y="293" width="0.0186%" height="15" fill="rgb(224,111,15)" fg:x="59932" fg:w="98"/><text x="11.6177%" y="303.50"></text></g><g><title>Parse::do_call (113 samples, 0.02%)</title><rect x="11.3668%" y="373" width="0.0214%" height="15" fill="rgb(253,21,26)" fg:x="59927" fg:w="113"/><text x="11.6168%" y="383.50"></text></g><g><title>ParseGenerator::generate (114 samples, 0.02%)</title><rect x="11.3668%" y="453" width="0.0216%" height="15" fill="rgb(245,139,43)" fg:x="59927" fg:w="114"/><text x="11.6168%" y="463.50"></text></g><g><title>Parse::Parse (114 samples, 0.02%)</title><rect x="11.3668%" y="437" width="0.0216%" height="15" fill="rgb(252,170,7)" fg:x="59927" fg:w="114"/><text x="11.6168%" y="447.50"></text></g><g><title>Parse::do_all_blocks (114 samples, 0.02%)</title><rect x="11.3668%" y="421" width="0.0216%" height="15" fill="rgb(231,118,14)" fg:x="59927" fg:w="114"/><text x="11.6168%" y="431.50"></text></g><g><title>Parse::do_one_block (114 samples, 0.02%)</title><rect x="11.3668%" y="405" width="0.0216%" height="15" fill="rgb(238,83,0)" fg:x="59927" fg:w="114"/><text x="11.6168%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (114 samples, 0.02%)</title><rect x="11.3668%" y="389" width="0.0216%" height="15" fill="rgb(221,39,39)" fg:x="59927" fg:w="114"/><text x="11.6168%" y="399.50"></text></g><g><title>Parse::do_call (866 samples, 0.16%)</title><rect x="11.2306%" y="485" width="0.1643%" height="15" fill="rgb(222,119,46)" fg:x="59209" fg:w="866"/><text x="11.4806%" y="495.50"></text></g><g><title>PredictedCallGenerator::generate (148 samples, 0.03%)</title><rect x="11.3668%" y="469" width="0.0281%" height="15" fill="rgb(222,165,49)" fg:x="59927" fg:w="148"/><text x="11.6168%" y="479.50"></text></g><g><title>ParseGenerator::generate (871 samples, 0.17%)</title><rect x="11.2302%" y="565" width="0.1652%" height="15" fill="rgb(219,113,52)" fg:x="59207" fg:w="871"/><text x="11.4802%" y="575.50"></text></g><g><title>Parse::Parse (871 samples, 0.17%)</title><rect x="11.2302%" y="549" width="0.1652%" height="15" fill="rgb(214,7,15)" fg:x="59207" fg:w="871"/><text x="11.4802%" y="559.50"></text></g><g><title>Parse::do_all_blocks (869 samples, 0.16%)</title><rect x="11.2306%" y="533" width="0.1648%" height="15" fill="rgb(235,32,4)" fg:x="59209" fg:w="869"/><text x="11.4806%" y="543.50"></text></g><g><title>Parse::do_one_block (869 samples, 0.16%)</title><rect x="11.2306%" y="517" width="0.1648%" height="15" fill="rgb(238,90,54)" fg:x="59209" fg:w="869"/><text x="11.4806%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (869 samples, 0.16%)</title><rect x="11.2306%" y="501" width="0.1648%" height="15" fill="rgb(213,208,19)" fg:x="59209" fg:w="869"/><text x="11.4806%" y="511.50"></text></g><g><title>Parse::do_call (62 samples, 0.01%)</title><rect x="11.3986%" y="277" width="0.0118%" height="15" fill="rgb(233,156,4)" fg:x="60095" fg:w="62"/><text x="11.6486%" y="287.50"></text></g><g><title>ParseGenerator::generate (83 samples, 0.02%)</title><rect x="11.3985%" y="357" width="0.0157%" height="15" fill="rgb(207,194,5)" fg:x="60094" fg:w="83"/><text x="11.6485%" y="367.50"></text></g><g><title>Parse::Parse (83 samples, 0.02%)</title><rect x="11.3985%" y="341" width="0.0157%" height="15" fill="rgb(206,111,30)" fg:x="60094" fg:w="83"/><text x="11.6485%" y="351.50"></text></g><g><title>Parse::do_all_blocks (83 samples, 0.02%)</title><rect x="11.3985%" y="325" width="0.0157%" height="15" fill="rgb(243,70,54)" fg:x="60094" fg:w="83"/><text x="11.6485%" y="335.50"></text></g><g><title>Parse::do_one_block (83 samples, 0.02%)</title><rect x="11.3985%" y="309" width="0.0157%" height="15" fill="rgb(242,28,8)" fg:x="60094" fg:w="83"/><text x="11.6485%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (83 samples, 0.02%)</title><rect x="11.3985%" y="293" width="0.0157%" height="15" fill="rgb(219,106,18)" fg:x="60094" fg:w="83"/><text x="11.6485%" y="303.50"></text></g><g><title>Parse::do_call (103 samples, 0.02%)</title><rect x="11.3966%" y="373" width="0.0195%" height="15" fill="rgb(244,222,10)" fg:x="60084" fg:w="103"/><text x="11.6466%" y="383.50"></text></g><g><title>ParseGenerator::generate (104 samples, 0.02%)</title><rect x="11.3966%" y="453" width="0.0197%" height="15" fill="rgb(236,179,52)" fg:x="60084" fg:w="104"/><text x="11.6466%" y="463.50"></text></g><g><title>Parse::Parse (104 samples, 0.02%)</title><rect x="11.3966%" y="437" width="0.0197%" height="15" fill="rgb(213,23,39)" fg:x="60084" fg:w="104"/><text x="11.6466%" y="447.50"></text></g><g><title>Parse::do_all_blocks (104 samples, 0.02%)</title><rect x="11.3966%" y="421" width="0.0197%" height="15" fill="rgb(238,48,10)" fg:x="60084" fg:w="104"/><text x="11.6466%" y="431.50"></text></g><g><title>Parse::do_one_block (104 samples, 0.02%)</title><rect x="11.3966%" y="405" width="0.0197%" height="15" fill="rgb(251,196,23)" fg:x="60084" fg:w="104"/><text x="11.6466%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (104 samples, 0.02%)</title><rect x="11.3966%" y="389" width="0.0197%" height="15" fill="rgb(250,152,24)" fg:x="60084" fg:w="104"/><text x="11.6466%" y="399.50"></text></g><g><title>ParseGenerator::generate (124 samples, 0.02%)</title><rect x="11.3954%" y="549" width="0.0235%" height="15" fill="rgb(209,150,17)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="559.50"></text></g><g><title>Parse::Parse (124 samples, 0.02%)</title><rect x="11.3954%" y="533" width="0.0235%" height="15" fill="rgb(234,202,34)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="543.50"></text></g><g><title>Parse::do_all_blocks (124 samples, 0.02%)</title><rect x="11.3954%" y="517" width="0.0235%" height="15" fill="rgb(253,148,53)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="527.50"></text></g><g><title>Parse::do_one_block (124 samples, 0.02%)</title><rect x="11.3954%" y="501" width="0.0235%" height="15" fill="rgb(218,129,16)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (124 samples, 0.02%)</title><rect x="11.3954%" y="485" width="0.0235%" height="15" fill="rgb(216,85,19)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="495.50"></text></g><g><title>Parse::do_call (124 samples, 0.02%)</title><rect x="11.3954%" y="469" width="0.0235%" height="15" fill="rgb(235,228,7)" fg:x="60078" fg:w="124"/><text x="11.6454%" y="479.50"></text></g><g><title>ParseGenerator::generate (1,010 samples, 0.19%)</title><rect x="11.2296%" y="661" width="0.1916%" height="15" fill="rgb(245,175,0)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="671.50"></text></g><g><title>Parse::Parse (1,010 samples, 0.19%)</title><rect x="11.2296%" y="645" width="0.1916%" height="15" fill="rgb(208,168,36)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="655.50"></text></g><g><title>Parse::do_all_blocks (1,010 samples, 0.19%)</title><rect x="11.2296%" y="629" width="0.1916%" height="15" fill="rgb(246,171,24)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="639.50"></text></g><g><title>Parse::do_one_block (1,010 samples, 0.19%)</title><rect x="11.2296%" y="613" width="0.1916%" height="15" fill="rgb(215,142,24)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (1,010 samples, 0.19%)</title><rect x="11.2296%" y="597" width="0.1916%" height="15" fill="rgb(250,187,7)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="607.50"></text></g><g><title>Parse::do_call (1,010 samples, 0.19%)</title><rect x="11.2296%" y="581" width="0.1916%" height="15" fill="rgb(228,66,33)" fg:x="59204" fg:w="1010"/><text x="11.4796%" y="591.50"></text></g><g><title>PredictedCallGenerator::generate (136 samples, 0.03%)</title><rect x="11.3954%" y="565" width="0.0258%" height="15" fill="rgb(234,215,21)" fg:x="60078" fg:w="136"/><text x="11.6454%" y="575.50"></text></g><g><title>ParseGenerator::generate (60 samples, 0.01%)</title><rect x="11.4309%" y="261" width="0.0114%" height="15" fill="rgb(222,191,20)" fg:x="60265" fg:w="60"/><text x="11.6809%" y="271.50"></text></g><g><title>Parse::Parse (60 samples, 0.01%)</title><rect x="11.4309%" y="245" width="0.0114%" height="15" fill="rgb(245,79,54)" fg:x="60265" fg:w="60"/><text x="11.6809%" y="255.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.01%)</title><rect x="11.4320%" y="229" width="0.0102%" height="15" fill="rgb(240,10,37)" fg:x="60271" fg:w="54"/><text x="11.6820%" y="239.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.01%)</title><rect x="11.4320%" y="213" width="0.0102%" height="15" fill="rgb(214,192,32)" fg:x="60271" fg:w="54"/><text x="11.6820%" y="223.50"></text></g><g><title>Parse::do_call (85 samples, 0.02%)</title><rect x="11.4279%" y="277" width="0.0161%" height="15" fill="rgb(209,36,54)" fg:x="60249" fg:w="85"/><text x="11.6779%" y="287.50"></text></g><g><title>Parse::do_all_blocks (109 samples, 0.02%)</title><rect x="11.4271%" y="325" width="0.0207%" height="15" fill="rgb(220,10,11)" fg:x="60245" fg:w="109"/><text x="11.6771%" y="335.50"></text></g><g><title>Parse::do_one_block (109 samples, 0.02%)</title><rect x="11.4271%" y="309" width="0.0207%" height="15" fill="rgb(221,106,17)" fg:x="60245" fg:w="109"/><text x="11.6771%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.02%)</title><rect x="11.4271%" y="293" width="0.0207%" height="15" fill="rgb(251,142,44)" fg:x="60245" fg:w="109"/><text x="11.6771%" y="303.50"></text></g><g><title>ParseGenerator::generate (113 samples, 0.02%)</title><rect x="11.4265%" y="357" width="0.0214%" height="15" fill="rgb(238,13,15)" fg:x="60242" fg:w="113"/><text x="11.6765%" y="367.50"></text></g><g><title>Parse::Parse (113 samples, 0.02%)</title><rect x="11.4265%" y="341" width="0.0214%" height="15" fill="rgb(208,107,27)" fg:x="60242" fg:w="113"/><text x="11.6765%" y="351.50"></text></g><g><title>Parse::do_call (142 samples, 0.03%)</title><rect x="11.4239%" y="373" width="0.0269%" height="15" fill="rgb(205,136,37)" fg:x="60228" fg:w="142"/><text x="11.6739%" y="383.50"></text></g><g><title>ParseGenerator::generate (153 samples, 0.03%)</title><rect x="11.4237%" y="453" width="0.0290%" height="15" fill="rgb(250,205,27)" fg:x="60227" fg:w="153"/><text x="11.6737%" y="463.50"></text></g><g><title>Parse::Parse (153 samples, 0.03%)</title><rect x="11.4237%" y="437" width="0.0290%" height="15" fill="rgb(210,80,43)" fg:x="60227" fg:w="153"/><text x="11.6737%" y="447.50"></text></g><g><title>Parse::do_all_blocks (153 samples, 0.03%)</title><rect x="11.4237%" y="421" width="0.0290%" height="15" fill="rgb(247,160,36)" fg:x="60227" fg:w="153"/><text x="11.6737%" y="431.50"></text></g><g><title>Parse::do_one_block (153 samples, 0.03%)</title><rect x="11.4237%" y="405" width="0.0290%" height="15" fill="rgb(234,13,49)" fg:x="60227" fg:w="153"/><text x="11.6737%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (153 samples, 0.03%)</title><rect x="11.4237%" y="389" width="0.0290%" height="15" fill="rgb(234,122,0)" fg:x="60227" fg:w="153"/><text x="11.6737%" y="399.50"></text></g><g><title>Parse::do_call (170 samples, 0.03%)</title><rect x="11.4218%" y="469" width="0.0322%" height="15" fill="rgb(207,146,38)" fg:x="60217" fg:w="170"/><text x="11.6718%" y="479.50"></text></g><g><title>ParseGenerator::generate (171 samples, 0.03%)</title><rect x="11.4218%" y="549" width="0.0324%" height="15" fill="rgb(207,177,25)" fg:x="60217" fg:w="171"/><text x="11.6718%" y="559.50"></text></g><g><title>Parse::Parse (171 samples, 0.03%)</title><rect x="11.4218%" y="533" width="0.0324%" height="15" fill="rgb(211,178,42)" fg:x="60217" fg:w="171"/><text x="11.6718%" y="543.50"></text></g><g><title>Parse::do_all_blocks (171 samples, 0.03%)</title><rect x="11.4218%" y="517" width="0.0324%" height="15" fill="rgb(230,69,54)" fg:x="60217" fg:w="171"/><text x="11.6718%" y="527.50"></text></g><g><title>Parse::do_one_block (171 samples, 0.03%)</title><rect x="11.4218%" y="501" width="0.0324%" height="15" fill="rgb(214,135,41)" fg:x="60217" fg:w="171"/><text x="11.6718%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.03%)</title><rect x="11.4218%" y="485" width="0.0324%" height="15" fill="rgb(237,67,25)" fg:x="60217" fg:w="171"/><text x="11.6718%" y="495.50"></text></g><g><title>ParseGenerator::generate (201 samples, 0.04%)</title><rect x="11.4212%" y="645" width="0.0381%" height="15" fill="rgb(222,189,50)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="655.50"></text></g><g><title>Parse::Parse (201 samples, 0.04%)</title><rect x="11.4212%" y="629" width="0.0381%" height="15" fill="rgb(245,148,34)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="639.50"></text></g><g><title>Parse::do_all_blocks (201 samples, 0.04%)</title><rect x="11.4212%" y="613" width="0.0381%" height="15" fill="rgb(222,29,6)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="623.50"></text></g><g><title>Parse::do_one_block (201 samples, 0.04%)</title><rect x="11.4212%" y="597" width="0.0381%" height="15" fill="rgb(221,189,43)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (201 samples, 0.04%)</title><rect x="11.4212%" y="581" width="0.0381%" height="15" fill="rgb(207,36,27)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="591.50"></text></g><g><title>Parse::do_call (201 samples, 0.04%)</title><rect x="11.4212%" y="565" width="0.0381%" height="15" fill="rgb(217,90,24)" fg:x="60214" fg:w="201"/><text x="11.6712%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,235 samples, 0.23%)</title><rect x="11.2296%" y="725" width="0.2343%" height="15" fill="rgb(224,66,35)" fg:x="59204" fg:w="1235"/><text x="11.4796%" y="735.50"></text></g><g><title>Parse::do_one_block (1,235 samples, 0.23%)</title><rect x="11.2296%" y="709" width="0.2343%" height="15" fill="rgb(221,13,50)" fg:x="59204" fg:w="1235"/><text x="11.4796%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (1,235 samples, 0.23%)</title><rect x="11.2296%" y="693" width="0.2343%" height="15" fill="rgb(236,68,49)" fg:x="59204" fg:w="1235"/><text x="11.4796%" y="703.50"></text></g><g><title>Parse::do_call (1,235 samples, 0.23%)</title><rect x="11.2296%" y="677" width="0.2343%" height="15" fill="rgb(229,146,28)" fg:x="59204" fg:w="1235"/><text x="11.4796%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (225 samples, 0.04%)</title><rect x="11.4212%" y="661" width="0.0427%" height="15" fill="rgb(225,31,38)" fg:x="60214" fg:w="225"/><text x="11.6712%" y="671.50"></text></g><g><title>Compile::Compile (40,199 samples, 7.62%)</title><rect x="3.8393%" y="773" width="7.6248%" height="15" fill="rgb(250,208,3)" fg:x="20241" fg:w="40199"/><text x="4.0893%" y="783.50">Compile::C..</text></g><g><title>ParseGenerator::generate (1,236 samples, 0.23%)</title><rect x="11.2296%" y="757" width="0.2344%" height="15" fill="rgb(246,54,23)" fg:x="59204" fg:w="1236"/><text x="11.4796%" y="767.50"></text></g><g><title>Parse::Parse (1,236 samples, 0.23%)</title><rect x="11.2296%" y="741" width="0.2344%" height="15" fill="rgb(243,76,11)" fg:x="59204" fg:w="1236"/><text x="11.4796%" y="751.50"></text></g><g><title>Compile::final_graph_reshaping_impl (117 samples, 0.02%)</title><rect x="11.4984%" y="725" width="0.0222%" height="15" fill="rgb(245,21,50)" fg:x="60621" fg:w="117"/><text x="11.7484%" y="735.50"></text></g><g><title>Compile::final_graph_reshaping (312 samples, 0.06%)</title><rect x="11.4648%" y="757" width="0.0592%" height="15" fill="rgb(228,9,43)" fg:x="60444" fg:w="312"/><text x="11.7148%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping_walk (304 samples, 0.06%)</title><rect x="11.4664%" y="741" width="0.0577%" height="15" fill="rgb(208,100,47)" fg:x="60452" fg:w="304"/><text x="11.7164%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (53 samples, 0.01%)</title><rect x="11.5646%" y="741" width="0.0101%" height="15" fill="rgb(232,26,8)" fg:x="60970" fg:w="53"/><text x="11.8146%" y="751.50"></text></g><g><title>Compile::remove_speculative_types (250 samples, 0.05%)</title><rect x="11.5289%" y="757" width="0.0474%" height="15" fill="rgb(216,166,38)" fg:x="60782" fg:w="250"/><text x="11.7789%" y="767.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (79 samples, 0.01%)</title><rect x="11.6101%" y="725" width="0.0150%" height="15" fill="rgb(251,202,51)" fg:x="61210" fg:w="79"/><text x="11.8601%" y="735.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (137 samples, 0.03%)</title><rect x="11.6261%" y="725" width="0.0260%" height="15" fill="rgb(254,216,34)" fg:x="61294" fg:w="137"/><text x="11.8761%" y="735.50"></text></g><g><title>ConnectionGraph::find_inst_mem (69 samples, 0.01%)</title><rect x="11.6691%" y="677" width="0.0131%" height="15" fill="rgb(251,32,27)" fg:x="61521" fg:w="69"/><text x="11.9191%" y="687.50"></text></g><g><title>ConnectionGraph::split_memory_phi (92 samples, 0.02%)</title><rect x="11.6651%" y="693" width="0.0175%" height="15" fill="rgb(208,127,28)" fg:x="61500" fg:w="92"/><text x="11.9151%" y="703.50"></text></g><g><title>ConnectionGraph::find_inst_mem (131 samples, 0.02%)</title><rect x="11.6585%" y="709" width="0.0248%" height="15" fill="rgb(224,137,22)" fg:x="61465" fg:w="131"/><text x="11.9085%" y="719.50"></text></g><g><title>ConnectionGraph::split_unique_types (179 samples, 0.03%)</title><rect x="11.6555%" y="725" width="0.0340%" height="15" fill="rgb(254,70,32)" fg:x="61449" fg:w="179"/><text x="11.9055%" y="735.50"></text></g><g><title>ConnectionGraph::compute_escape (601 samples, 0.11%)</title><rect x="11.5766%" y="741" width="0.1140%" height="15" fill="rgb(229,75,37)" fg:x="61033" fg:w="601"/><text x="11.8266%" y="751.50"></text></g><g><title>ConnectionGraph::do_analysis (603 samples, 0.11%)</title><rect x="11.5764%" y="757" width="0.1144%" height="15" fill="rgb(252,64,23)" fg:x="61032" fg:w="603"/><text x="11.8264%" y="767.50"></text></g><g><title>PhaseCCP::analyze (718 samples, 0.14%)</title><rect x="11.6915%" y="757" width="0.1362%" height="15" fill="rgb(232,162,48)" fg:x="61639" fg:w="718"/><text x="11.9415%" y="767.50"></text></g><g><title>PhaseCCP::transform_once (93 samples, 0.02%)</title><rect x="11.8489%" y="725" width="0.0176%" height="15" fill="rgb(246,160,12)" fg:x="62469" fg:w="93"/><text x="12.0989%" y="735.50"></text></g><g><title>PhaseCCP::do_transform (209 samples, 0.04%)</title><rect x="11.8277%" y="757" width="0.0396%" height="15" fill="rgb(247,166,0)" fg:x="62357" fg:w="209"/><text x="12.0777%" y="767.50"></text></g><g><title>PhaseCCP::transform (209 samples, 0.04%)</title><rect x="11.8277%" y="741" width="0.0396%" height="15" fill="rgb(249,219,21)" fg:x="62357" fg:w="209"/><text x="12.0777%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (66 samples, 0.01%)</title><rect x="11.8933%" y="677" width="0.0125%" height="15" fill="rgb(205,209,3)" fg:x="62703" fg:w="66"/><text x="12.1433%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (94 samples, 0.02%)</title><rect x="11.8929%" y="693" width="0.0178%" height="15" fill="rgb(243,44,1)" fg:x="62701" fg:w="94"/><text x="12.1429%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (155 samples, 0.03%)</title><rect x="11.8916%" y="709" width="0.0294%" height="15" fill="rgb(206,159,16)" fg:x="62694" fg:w="155"/><text x="12.1416%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (216 samples, 0.04%)</title><rect x="11.8910%" y="725" width="0.0410%" height="15" fill="rgb(244,77,30)" fg:x="62691" fg:w="216"/><text x="12.1410%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (251 samples, 0.05%)</title><rect x="11.8897%" y="741" width="0.0476%" height="15" fill="rgb(218,69,12)" fg:x="62684" fg:w="251"/><text x="12.1397%" y="751.50"></text></g><g><title>IdealLoopTree::loop_predication (76 samples, 0.01%)</title><rect x="11.9373%" y="725" width="0.0144%" height="15" fill="rgb(212,87,7)" fg:x="62935" fg:w="76"/><text x="12.1873%" y="735.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (53 samples, 0.01%)</title><rect x="11.9417%" y="709" width="0.0101%" height="15" fill="rgb(245,114,25)" fg:x="62958" fg:w="53"/><text x="12.1917%" y="719.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (73 samples, 0.01%)</title><rect x="11.9584%" y="709" width="0.0138%" height="15" fill="rgb(210,61,42)" fg:x="63046" fg:w="73"/><text x="12.2084%" y="719.50"></text></g><g><title>IdealLoopTree::loop_predication (239 samples, 0.05%)</title><rect x="11.9373%" y="741" width="0.0453%" height="15" fill="rgb(211,52,33)" fg:x="62935" fg:w="239"/><text x="12.1873%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (163 samples, 0.03%)</title><rect x="11.9517%" y="725" width="0.0309%" height="15" fill="rgb(234,58,33)" fg:x="63011" fg:w="163"/><text x="12.2017%" y="735.50"></text></g><g><title>NTarjan::DFS (330 samples, 0.06%)</title><rect x="12.1295%" y="725" width="0.0626%" height="15" fill="rgb(220,115,36)" fg:x="63948" fg:w="330"/><text x="12.3795%" y="735.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,115 samples, 0.21%)</title><rect x="11.9916%" y="741" width="0.2115%" height="15" fill="rgb(243,153,54)" fg:x="63221" fg:w="1115"/><text x="12.2416%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (70 samples, 0.01%)</title><rect x="12.4500%" y="693" width="0.0133%" height="15" fill="rgb(251,47,18)" fg:x="65638" fg:w="70"/><text x="12.7000%" y="703.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (442 samples, 0.08%)</title><rect x="12.4134%" y="725" width="0.0838%" height="15" fill="rgb(242,102,42)" fg:x="65445" fg:w="442"/><text x="12.6634%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (394 samples, 0.07%)</title><rect x="12.4225%" y="709" width="0.0747%" height="15" fill="rgb(234,31,38)" fg:x="65493" fg:w="394"/><text x="12.6725%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (179 samples, 0.03%)</title><rect x="12.4633%" y="693" width="0.0340%" height="15" fill="rgb(221,117,51)" fg:x="65708" fg:w="179"/><text x="12.7133%" y="703.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,636 samples, 0.31%)</title><rect x="12.2031%" y="741" width="0.3103%" height="15" fill="rgb(212,20,18)" fg:x="64336" fg:w="1636"/><text x="12.4531%" y="751.50"></text></g><g><title>Node::unique_ctrl_out (65 samples, 0.01%)</title><rect x="12.8728%" y="709" width="0.0123%" height="15" fill="rgb(245,133,36)" fg:x="67867" fg:w="65"/><text x="13.1228%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (75 samples, 0.01%)</title><rect x="12.8851%" y="709" width="0.0142%" height="15" fill="rgb(212,6,19)" fg:x="67932" fg:w="75"/><text x="13.1351%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_depth (75 samples, 0.01%)</title><rect x="13.0581%" y="661" width="0.0142%" height="15" fill="rgb(218,1,36)" fg:x="68844" fg:w="75"/><text x="13.3081%" y="671.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (285 samples, 0.05%)</title><rect x="13.0447%" y="677" width="0.0541%" height="15" fill="rgb(246,84,54)" fg:x="68773" fg:w="285"/><text x="13.2947%" y="687.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (139 samples, 0.03%)</title><rect x="13.0724%" y="661" width="0.0264%" height="15" fill="rgb(242,110,6)" fg:x="68919" fg:w="139"/><text x="13.3224%" y="671.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (400 samples, 0.08%)</title><rect x="13.0283%" y="693" width="0.0759%" height="15" fill="rgb(214,47,5)" fg:x="68687" fg:w="400"/><text x="13.2783%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (209 samples, 0.04%)</title><rect x="13.1048%" y="693" width="0.0396%" height="15" fill="rgb(218,159,25)" fg:x="69090" fg:w="209"/><text x="13.3548%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_depth (1,533 samples, 0.29%)</title><rect x="14.3117%" y="677" width="0.2908%" height="15" fill="rgb(215,211,28)" fg:x="75453" fg:w="1533"/><text x="14.5617%" y="687.50"></text></g><g><title>PhaseIdealLoop::is_dominator (7,664 samples, 1.45%)</title><rect x="13.1511%" y="693" width="1.4537%" height="15" fill="rgb(238,59,32)" fg:x="69334" fg:w="7664"/><text x="13.4011%" y="703.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (9,021 samples, 1.71%)</title><rect x="12.8994%" y="709" width="1.7111%" height="15" fill="rgb(226,82,3)" fg:x="68007" fg:w="9021"/><text x="13.1494%" y="719.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (9,893 samples, 1.88%)</title><rect x="12.7516%" y="725" width="1.8765%" height="15" fill="rgb(240,164,32)" fg:x="67228" fg:w="9893"/><text x="13.0016%" y="735.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_late (11,171 samples, 2.12%)</title><rect x="12.5134%" y="741" width="2.1189%" height="15" fill="rgb(232,46,7)" fg:x="65972" fg:w="11171"/><text x="12.7634%" y="751.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (215 samples, 0.04%)</title><rect x="14.7540%" y="725" width="0.0408%" height="15" fill="rgb(229,129,53)" fg:x="77785" fg:w="215"/><text x="15.0040%" y="735.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (872 samples, 0.17%)</title><rect x="14.6324%" y="741" width="0.1654%" height="15" fill="rgb(234,188,29)" fg:x="77144" fg:w="872"/><text x="14.8824%" y="751.50"></text></g><g><title>PhaseIdealLoop::do_split_if (104 samples, 0.02%)</title><rect x="14.8927%" y="725" width="0.0197%" height="15" fill="rgb(246,141,4)" fg:x="78516" fg:w="104"/><text x="15.1427%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (242 samples, 0.05%)</title><rect x="14.9139%" y="725" width="0.0459%" height="15" fill="rgb(229,23,39)" fg:x="78628" fg:w="242"/><text x="15.1639%" y="735.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (74 samples, 0.01%)</title><rect x="15.0053%" y="709" width="0.0140%" height="15" fill="rgb(206,12,3)" fg:x="79110" fg:w="74"/><text x="15.2553%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (53 samples, 0.01%)</title><rect x="15.0454%" y="693" width="0.0101%" height="15" fill="rgb(252,226,20)" fg:x="79321" fg:w="53"/><text x="15.2954%" y="703.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (188 samples, 0.04%)</title><rect x="15.0200%" y="709" width="0.0357%" height="15" fill="rgb(216,123,35)" fg:x="79187" fg:w="188"/><text x="15.2700%" y="719.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (183 samples, 0.03%)</title><rect x="15.0556%" y="709" width="0.0347%" height="15" fill="rgb(212,68,40)" fg:x="79375" fg:w="183"/><text x="15.3056%" y="719.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (732 samples, 0.14%)</title><rect x="14.9598%" y="725" width="0.1388%" height="15" fill="rgb(254,125,32)" fg:x="78870" fg:w="732"/><text x="15.2098%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,528 samples, 0.29%)</title><rect x="14.8100%" y="741" width="0.2898%" height="15" fill="rgb(253,97,22)" fg:x="78080" fg:w="1528"/><text x="15.0600%" y="751.50"></text></g><g><title>LoadNode::Ideal (100 samples, 0.02%)</title><rect x="15.1821%" y="709" width="0.0190%" height="15" fill="rgb(241,101,14)" fg:x="80042" fg:w="100"/><text x="15.4321%" y="719.50"></text></g><g><title>NodeHash::hash_find_insert (142 samples, 0.03%)</title><rect x="15.2121%" y="709" width="0.0269%" height="15" fill="rgb(238,103,29)" fg:x="80200" fg:w="142"/><text x="15.4621%" y="719.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (53 samples, 0.01%)</title><rect x="15.2390%" y="709" width="0.0101%" height="15" fill="rgb(233,195,47)" fg:x="80342" fg:w="53"/><text x="15.4890%" y="719.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (55 samples, 0.01%)</title><rect x="15.2571%" y="693" width="0.0104%" height="15" fill="rgb(246,218,30)" fg:x="80437" fg:w="55"/><text x="15.5071%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (103 samples, 0.02%)</title><rect x="15.2491%" y="709" width="0.0195%" height="15" fill="rgb(219,145,47)" fg:x="80395" fg:w="103"/><text x="15.4991%" y="719.50"></text></g><g><title>RegionNode::is_unreachable_region (109 samples, 0.02%)</title><rect x="15.3052%" y="693" width="0.0207%" height="15" fill="rgb(243,12,26)" fg:x="80691" fg:w="109"/><text x="15.5552%" y="703.50"></text></g><g><title>RegionNode::Ideal (205 samples, 0.04%)</title><rect x="15.2876%" y="709" width="0.0389%" height="15" fill="rgb(214,87,16)" fg:x="80598" fg:w="205"/><text x="15.5376%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (57 samples, 0.01%)</title><rect x="15.3284%" y="661" width="0.0108%" height="15" fill="rgb(208,99,42)" fg:x="80813" fg:w="57"/><text x="15.5784%" y="671.50"></text></g><g><title>InitializeNode::can_capture_store (58 samples, 0.01%)</title><rect x="15.3284%" y="693" width="0.0110%" height="15" fill="rgb(253,99,2)" fg:x="80813" fg:w="58"/><text x="15.5784%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (58 samples, 0.01%)</title><rect x="15.3284%" y="677" width="0.0110%" height="15" fill="rgb(220,168,23)" fg:x="80813" fg:w="58"/><text x="15.5784%" y="687.50"></text></g><g><title>StoreNode::Ideal (64 samples, 0.01%)</title><rect x="15.3284%" y="709" width="0.0121%" height="15" fill="rgb(242,38,24)" fg:x="80813" fg:w="64"/><text x="15.5784%" y="719.50"></text></g><g><title>PhaseIterGVN::transform_old (1,259 samples, 0.24%)</title><rect x="15.1078%" y="725" width="0.2388%" height="15" fill="rgb(225,182,9)" fg:x="79650" fg:w="1259"/><text x="15.3578%" y="735.50"></text></g><g><title>PhaseIterGVN::optimize (1,316 samples, 0.25%)</title><rect x="15.1000%" y="741" width="0.2496%" height="15" fill="rgb(243,178,37)" fg:x="79609" fg:w="1316"/><text x="15.3500%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (18,452 samples, 3.50%)</title><rect x="11.8717%" y="757" width="3.4999%" height="15" fill="rgb(232,139,19)" fg:x="62589" fg:w="18452"/><text x="12.1217%" y="767.50">Pha..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (69 samples, 0.01%)</title><rect x="15.3836%" y="741" width="0.0131%" height="15" fill="rgb(225,201,24)" fg:x="81104" fg:w="69"/><text x="15.6336%" y="751.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (133 samples, 0.03%)</title><rect x="15.3716%" y="757" width="0.0252%" height="15" fill="rgb(221,47,46)" fg:x="81041" fg:w="133"/><text x="15.6216%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (67 samples, 0.01%)</title><rect x="15.4976%" y="693" width="0.0127%" height="15" fill="rgb(249,23,13)" fg:x="81705" fg:w="67"/><text x="15.7476%" y="703.50"></text></g><g><title>Unique_Node_List::remove (56 samples, 0.01%)</title><rect x="15.4996%" y="677" width="0.0106%" height="15" fill="rgb(219,9,5)" fg:x="81716" fg:w="56"/><text x="15.7496%" y="687.50"></text></g><g><title>PhaseIterGVN::subsume_node (81 samples, 0.02%)</title><rect x="15.4953%" y="709" width="0.0154%" height="15" fill="rgb(254,171,16)" fg:x="81693" fg:w="81"/><text x="15.7453%" y="719.50"></text></g><g><title>IfNode::Ideal (255 samples, 0.05%)</title><rect x="15.4733%" y="725" width="0.0484%" height="15" fill="rgb(230,171,20)" fg:x="81577" fg:w="255"/><text x="15.7233%" y="735.50"></text></g><g><title>split_if (53 samples, 0.01%)</title><rect x="15.5116%" y="709" width="0.0101%" height="15" fill="rgb(210,71,41)" fg:x="81779" fg:w="53"/><text x="15.7616%" y="719.50"></text></g><g><title>MemNode::Ideal_common (80 samples, 0.02%)</title><rect x="15.5374%" y="709" width="0.0152%" height="15" fill="rgb(206,173,20)" fg:x="81915" fg:w="80"/><text x="15.7874%" y="719.50"></text></g><g><title>Node::dominates (68 samples, 0.01%)</title><rect x="15.5550%" y="677" width="0.0129%" height="15" fill="rgb(233,88,34)" fg:x="82008" fg:w="68"/><text x="15.8050%" y="687.50"></text></g><g><title>MemNode::all_controls_dominate (71 samples, 0.01%)</title><rect x="15.5547%" y="693" width="0.0135%" height="15" fill="rgb(223,209,46)" fg:x="82006" fg:w="71"/><text x="15.8047%" y="703.50"></text></g><g><title>MemNode::find_previous_store (105 samples, 0.02%)</title><rect x="15.5533%" y="709" width="0.0199%" height="15" fill="rgb(250,43,18)" fg:x="81999" fg:w="105"/><text x="15.8033%" y="719.50"></text></g><g><title>LoadNode::Ideal (249 samples, 0.05%)</title><rect x="15.5273%" y="725" width="0.0472%" height="15" fill="rgb(208,13,10)" fg:x="81862" fg:w="249"/><text x="15.7773%" y="735.50"></text></g><g><title>MergeMemNode::Ideal (67 samples, 0.01%)</title><rect x="15.5901%" y="725" width="0.0127%" height="15" fill="rgb(212,200,36)" fg:x="82193" fg:w="67"/><text x="15.8401%" y="735.50"></text></g><g><title>NodeHash::grow (61 samples, 0.01%)</title><rect x="15.6298%" y="709" width="0.0116%" height="15" fill="rgb(225,90,30)" fg:x="82402" fg:w="61"/><text x="15.8798%" y="719.50"></text></g><g><title>NodeHash::hash_find_insert (196 samples, 0.04%)</title><rect x="15.6070%" y="725" width="0.0372%" height="15" fill="rgb(236,182,39)" fg:x="82282" fg:w="196"/><text x="15.8570%" y="735.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (81 samples, 0.02%)</title><rect x="15.6442%" y="725" width="0.0154%" height="15" fill="rgb(212,144,35)" fg:x="82478" fg:w="81"/><text x="15.8942%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (92 samples, 0.02%)</title><rect x="15.6872%" y="709" width="0.0175%" height="15" fill="rgb(228,63,44)" fg:x="82705" fg:w="92"/><text x="15.9372%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (255 samples, 0.05%)</title><rect x="15.6595%" y="725" width="0.0484%" height="15" fill="rgb(228,109,6)" fg:x="82559" fg:w="255"/><text x="15.9095%" y="735.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (65 samples, 0.01%)</title><rect x="15.7246%" y="709" width="0.0123%" height="15" fill="rgb(238,117,24)" fg:x="82902" fg:w="65"/><text x="15.9746%" y="719.50"></text></g><g><title>PhiNode::Ideal (174 samples, 0.03%)</title><rect x="15.7083%" y="725" width="0.0330%" height="15" fill="rgb(242,26,26)" fg:x="82816" fg:w="174"/><text x="15.9583%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (112 samples, 0.02%)</title><rect x="15.7838%" y="693" width="0.0212%" height="15" fill="rgb(221,92,48)" fg:x="83214" fg:w="112"/><text x="16.0338%" y="703.50"></text></g><g><title>Unique_Node_List::remove (98 samples, 0.02%)</title><rect x="15.7864%" y="677" width="0.0186%" height="15" fill="rgb(209,209,32)" fg:x="83228" fg:w="98"/><text x="16.0364%" y="687.50"></text></g><g><title>PhaseIterGVN::subsume_node (134 samples, 0.03%)</title><rect x="15.7809%" y="709" width="0.0254%" height="15" fill="rgb(221,70,22)" fg:x="83199" fg:w="134"/><text x="16.0309%" y="719.50"></text></g><g><title>RegionNode::is_unreachable_region (84 samples, 0.02%)</title><rect x="15.8130%" y="709" width="0.0159%" height="15" fill="rgb(248,145,5)" fg:x="83368" fg:w="84"/><text x="16.0630%" y="719.50"></text></g><g><title>RegionNode::Ideal (350 samples, 0.07%)</title><rect x="15.7642%" y="725" width="0.0664%" height="15" fill="rgb(226,116,26)" fg:x="83111" fg:w="350"/><text x="16.0142%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (63 samples, 0.01%)</title><rect x="15.8348%" y="421" width="0.0119%" height="15" fill="rgb(244,5,17)" fg:x="83483" fg:w="63"/><text x="16.0848%" y="431.50"></text></g><g><title>InitializeNode::detect_init_independence (88 samples, 0.02%)</title><rect x="15.8348%" y="437" width="0.0167%" height="15" fill="rgb(252,159,33)" fg:x="83483" fg:w="88"/><text x="16.0848%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (106 samples, 0.02%)</title><rect x="15.8348%" y="453" width="0.0201%" height="15" fill="rgb(206,71,0)" fg:x="83483" fg:w="106"/><text x="16.0848%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (123 samples, 0.02%)</title><rect x="15.8348%" y="469" width="0.0233%" height="15" fill="rgb(233,118,54)" fg:x="83483" fg:w="123"/><text x="16.0848%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (143 samples, 0.03%)</title><rect x="15.8348%" y="485" width="0.0271%" height="15" fill="rgb(234,83,48)" fg:x="83483" fg:w="143"/><text x="16.0848%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (161 samples, 0.03%)</title><rect x="15.8348%" y="501" width="0.0305%" height="15" fill="rgb(228,3,54)" fg:x="83483" fg:w="161"/><text x="16.0848%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (181 samples, 0.03%)</title><rect x="15.8348%" y="517" width="0.0343%" height="15" fill="rgb(226,155,13)" fg:x="83483" fg:w="181"/><text x="16.0848%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (200 samples, 0.04%)</title><rect x="15.8346%" y="533" width="0.0379%" height="15" fill="rgb(241,28,37)" fg:x="83482" fg:w="200"/><text x="16.0846%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (224 samples, 0.04%)</title><rect x="15.8346%" y="549" width="0.0425%" height="15" fill="rgb(233,93,10)" fg:x="83482" fg:w="224"/><text x="16.0846%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (239 samples, 0.05%)</title><rect x="15.8346%" y="565" width="0.0453%" height="15" fill="rgb(225,113,19)" fg:x="83482" fg:w="239"/><text x="16.0846%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (258 samples, 0.05%)</title><rect x="15.8344%" y="581" width="0.0489%" height="15" fill="rgb(241,2,18)" fg:x="83481" fg:w="258"/><text x="16.0844%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (272 samples, 0.05%)</title><rect x="15.8342%" y="597" width="0.0516%" height="15" fill="rgb(228,207,21)" fg:x="83480" fg:w="272"/><text x="16.0842%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (290 samples, 0.06%)</title><rect x="15.8342%" y="613" width="0.0550%" height="15" fill="rgb(213,211,35)" fg:x="83480" fg:w="290"/><text x="16.0842%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (305 samples, 0.06%)</title><rect x="15.8342%" y="629" width="0.0579%" height="15" fill="rgb(209,83,10)" fg:x="83480" fg:w="305"/><text x="16.0842%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (320 samples, 0.06%)</title><rect x="15.8342%" y="645" width="0.0607%" height="15" fill="rgb(209,164,1)" fg:x="83480" fg:w="320"/><text x="16.0842%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (350 samples, 0.07%)</title><rect x="15.8342%" y="661" width="0.0664%" height="15" fill="rgb(213,184,43)" fg:x="83480" fg:w="350"/><text x="16.0842%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (395 samples, 0.07%)</title><rect x="15.8342%" y="677" width="0.0749%" height="15" fill="rgb(231,61,34)" fg:x="83480" fg:w="395"/><text x="16.0842%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (397 samples, 0.08%)</title><rect x="15.8340%" y="709" width="0.0753%" height="15" fill="rgb(235,75,3)" fg:x="83479" fg:w="397"/><text x="16.0840%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (396 samples, 0.08%)</title><rect x="15.8342%" y="693" width="0.0751%" height="15" fill="rgb(220,106,47)" fg:x="83480" fg:w="396"/><text x="16.0842%" y="703.50"></text></g><g><title>StoreNode::Ideal (434 samples, 0.08%)</title><rect x="15.8333%" y="725" width="0.0823%" height="15" fill="rgb(210,196,33)" fg:x="83475" fg:w="434"/><text x="16.0833%" y="735.50"></text></g><g><title>PhaseIterGVN::transform_old (2,725 samples, 0.52%)</title><rect x="15.4126%" y="741" width="0.5169%" height="15" fill="rgb(229,154,42)" fg:x="81257" fg:w="2725"/><text x="15.6626%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (2,829 samples, 0.54%)</title><rect x="15.3968%" y="757" width="0.5366%" height="15" fill="rgb(228,114,26)" fg:x="81174" fg:w="2829"/><text x="15.6468%" y="767.50"></text></g><g><title>PhaseMacroExpand::eliminate_macro_nodes (53 samples, 0.01%)</title><rect x="15.9336%" y="757" width="0.0101%" height="15" fill="rgb(208,144,1)" fg:x="84004" fg:w="53"/><text x="16.1836%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (252 samples, 0.05%)</title><rect x="15.9471%" y="725" width="0.0478%" height="15" fill="rgb(239,112,37)" fg:x="84075" fg:w="252"/><text x="16.1971%" y="735.50"></text></g><g><title>PhaseIterGVN::optimize (266 samples, 0.05%)</title><rect x="15.9448%" y="741" width="0.0505%" height="15" fill="rgb(210,96,50)" fg:x="84063" fg:w="266"/><text x="16.1948%" y="751.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (92 samples, 0.02%)</title><rect x="15.9964%" y="741" width="0.0175%" height="15" fill="rgb(222,178,2)" fg:x="84335" fg:w="92"/><text x="16.2464%" y="751.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (401 samples, 0.08%)</title><rect x="15.9437%" y="757" width="0.0761%" height="15" fill="rgb(226,74,18)" fg:x="84057" fg:w="401"/><text x="16.1937%" y="767.50"></text></g><g><title>Compile::identify_useful_nodes (81 samples, 0.02%)</title><rect x="16.0256%" y="725" width="0.0154%" height="15" fill="rgb(225,67,54)" fg:x="84489" fg:w="81"/><text x="16.2756%" y="735.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (170 samples, 0.03%)</title><rect x="16.0197%" y="757" width="0.0322%" height="15" fill="rgb(251,92,32)" fg:x="84458" fg:w="170"/><text x="16.2697%" y="767.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (159 samples, 0.03%)</title><rect x="16.0218%" y="741" width="0.0302%" height="15" fill="rgb(228,149,22)" fg:x="84469" fg:w="159"/><text x="16.2718%" y="751.50"></text></g><g><title>Compile::Optimize (24,192 samples, 4.59%)</title><rect x="11.4641%" y="773" width="4.5887%" height="15" fill="rgb(243,54,13)" fg:x="60440" fg:w="24192"/><text x="11.7141%" y="783.50">Compi..</text></g><g><title>Parse::do_one_block (177 samples, 0.03%)</title><rect x="16.0554%" y="661" width="0.0336%" height="15" fill="rgb(243,180,28)" fg:x="84646" fg:w="177"/><text x="16.3054%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (158 samples, 0.03%)</title><rect x="16.0590%" y="645" width="0.0300%" height="15" fill="rgb(208,167,24)" fg:x="84665" fg:w="158"/><text x="16.3090%" y="655.50"></text></g><g><title>Parse::do_all_blocks (179 samples, 0.03%)</title><rect x="16.0554%" y="677" width="0.0340%" height="15" fill="rgb(245,73,45)" fg:x="84646" fg:w="179"/><text x="16.3054%" y="687.50"></text></g><g><title>ParseGenerator::generate (187 samples, 0.04%)</title><rect x="16.0554%" y="709" width="0.0355%" height="15" fill="rgb(237,203,48)" fg:x="84646" fg:w="187"/><text x="16.3054%" y="719.50"></text></g><g><title>Parse::Parse (187 samples, 0.04%)</title><rect x="16.0554%" y="693" width="0.0355%" height="15" fill="rgb(211,197,16)" fg:x="84646" fg:w="187"/><text x="16.3054%" y="703.50"></text></g><g><title>CompileBroker::compiler_thread_loop (212 samples, 0.04%)</title><rect x="16.0533%" y="773" width="0.0402%" height="15" fill="rgb(243,99,51)" fg:x="84635" fg:w="212"/><text x="16.3033%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (212 samples, 0.04%)</title><rect x="16.0533%" y="757" width="0.0402%" height="15" fill="rgb(215,123,29)" fg:x="84635" fg:w="212"/><text x="16.3033%" y="767.50"></text></g><g><title>C2Compiler::compile_method (212 samples, 0.04%)</title><rect x="16.0533%" y="741" width="0.0402%" height="15" fill="rgb(239,186,37)" fg:x="84635" fg:w="212"/><text x="16.3033%" y="751.50"></text></g><g><title>Compile::Compile (212 samples, 0.04%)</title><rect x="16.0533%" y="725" width="0.0402%" height="15" fill="rgb(252,136,39)" fg:x="84635" fg:w="212"/><text x="16.3033%" y="735.50"></text></g><g><title>CallGenerator::for_inline (79 samples, 0.01%)</title><rect x="16.0935%" y="725" width="0.0150%" height="15" fill="rgb(223,213,32)" fg:x="84847" fg:w="79"/><text x="16.3435%" y="735.50"></text></g><g><title>InlineTree::check_can_parse (79 samples, 0.01%)</title><rect x="16.0935%" y="709" width="0.0150%" height="15" fill="rgb(233,115,5)" fg:x="84847" fg:w="79"/><text x="16.3435%" y="719.50"></text></g><g><title>ciMethod::get_flow_analysis (79 samples, 0.01%)</title><rect x="16.0935%" y="693" width="0.0150%" height="15" fill="rgb(207,226,44)" fg:x="84847" fg:w="79"/><text x="16.3435%" y="703.50"></text></g><g><title>ciTypeFlow::do_flow (79 samples, 0.01%)</title><rect x="16.0935%" y="677" width="0.0150%" height="15" fill="rgb(208,126,0)" fg:x="84847" fg:w="79"/><text x="16.3435%" y="687.50"></text></g><g><title>ciTypeFlow::flow_types (79 samples, 0.01%)</title><rect x="16.0935%" y="661" width="0.0150%" height="15" fill="rgb(244,66,21)" fg:x="84847" fg:w="79"/><text x="16.3435%" y="671.50"></text></g><g><title>ciTypeFlow::df_flow_types (78 samples, 0.01%)</title><rect x="16.0937%" y="645" width="0.0148%" height="15" fill="rgb(222,97,12)" fg:x="84848" fg:w="78"/><text x="16.3437%" y="655.50"></text></g><g><title>ciTypeFlow::flow_block (78 samples, 0.01%)</title><rect x="16.0937%" y="629" width="0.0148%" height="15" fill="rgb(219,213,19)" fg:x="84848" fg:w="78"/><text x="16.3437%" y="639.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (78 samples, 0.01%)</title><rect x="16.0937%" y="613" width="0.0148%" height="15" fill="rgb(252,169,30)" fg:x="84848" fg:w="78"/><text x="16.3437%" y="623.50"></text></g><g><title>InlineTree::ok_to_inline (77 samples, 0.01%)</title><rect x="16.1178%" y="613" width="0.0146%" height="15" fill="rgb(206,32,51)" fg:x="84975" fg:w="77"/><text x="16.3678%" y="623.50"></text></g><g><title>Compile::call_generator (98 samples, 0.02%)</title><rect x="16.1167%" y="629" width="0.0186%" height="15" fill="rgb(250,172,42)" fg:x="84969" fg:w="98"/><text x="16.3667%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (104 samples, 0.02%)</title><rect x="16.1614%" y="565" width="0.0197%" height="15" fill="rgb(209,34,43)" fg:x="85205" fg:w="104"/><text x="16.4114%" y="575.50"></text></g><g><title>Parse::do_one_block (120 samples, 0.02%)</title><rect x="16.1588%" y="581" width="0.0228%" height="15" fill="rgb(223,11,35)" fg:x="85191" fg:w="120"/><text x="16.4088%" y="591.50"></text></g><g><title>Parse::do_all_blocks (134 samples, 0.03%)</title><rect x="16.1576%" y="597" width="0.0254%" height="15" fill="rgb(251,219,26)" fg:x="85185" fg:w="134"/><text x="16.4076%" y="607.50"></text></g><g><title>ParseGenerator::generate (213 samples, 0.04%)</title><rect x="16.1502%" y="629" width="0.0404%" height="15" fill="rgb(231,119,3)" fg:x="85146" fg:w="213"/><text x="16.4002%" y="639.50"></text></g><g><title>Parse::Parse (212 samples, 0.04%)</title><rect x="16.1504%" y="613" width="0.0402%" height="15" fill="rgb(216,97,11)" fg:x="85147" fg:w="212"/><text x="16.4004%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (78 samples, 0.01%)</title><rect x="16.1906%" y="629" width="0.0148%" height="15" fill="rgb(223,59,9)" fg:x="85359" fg:w="78"/><text x="16.4406%" y="639.50"></text></g><g><title>Parse::do_call (488 samples, 0.09%)</title><rect x="16.1167%" y="645" width="0.0926%" height="15" fill="rgb(233,93,31)" fg:x="84969" fg:w="488"/><text x="16.3667%" y="655.50"></text></g><g><title>Parse::do_field_access (83 samples, 0.02%)</title><rect x="16.2117%" y="645" width="0.0157%" height="15" fill="rgb(239,81,33)" fg:x="85470" fg:w="83"/><text x="16.4617%" y="655.50"></text></g><g><title>Parse::do_one_block (665 samples, 0.13%)</title><rect x="16.1100%" y="677" width="0.1261%" height="15" fill="rgb(213,120,34)" fg:x="84934" fg:w="665"/><text x="16.3600%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (659 samples, 0.12%)</title><rect x="16.1112%" y="661" width="0.1250%" height="15" fill="rgb(243,49,53)" fg:x="84940" fg:w="659"/><text x="16.3612%" y="671.50"></text></g><g><title>Parse::do_all_blocks (666 samples, 0.13%)</title><rect x="16.1100%" y="693" width="0.1263%" height="15" fill="rgb(247,216,33)" fg:x="84934" fg:w="666"/><text x="16.3600%" y="703.50"></text></g><g><title>ParseGenerator::generate (677 samples, 0.13%)</title><rect x="16.1100%" y="725" width="0.1284%" height="15" fill="rgb(226,26,14)" fg:x="84934" fg:w="677"/><text x="16.3600%" y="735.50"></text></g><g><title>Parse::Parse (677 samples, 0.13%)</title><rect x="16.1100%" y="709" width="0.1284%" height="15" fill="rgb(215,49,53)" fg:x="84934" fg:w="677"/><text x="16.3600%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (788 samples, 0.15%)</title><rect x="16.0935%" y="773" width="0.1495%" height="15" fill="rgb(245,162,40)" fg:x="84847" fg:w="788"/><text x="16.3435%" y="783.50"></text></g><g><title>C2Compiler::compile_method (788 samples, 0.15%)</title><rect x="16.0935%" y="757" width="0.1495%" height="15" fill="rgb(229,68,17)" fg:x="84847" fg:w="788"/><text x="16.3435%" y="767.50"></text></g><g><title>Compile::Compile (788 samples, 0.15%)</title><rect x="16.0935%" y="741" width="0.1495%" height="15" fill="rgb(213,182,10)" fg:x="84847" fg:w="788"/><text x="16.3435%" y="751.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="16.2572%" y="661" width="0.0104%" height="15" fill="rgb(245,125,30)" fg:x="85710" fg:w="55"/><text x="16.5072%" y="671.50"></text></g><g><title>ParseGenerator::generate (63 samples, 0.01%)</title><rect x="16.2570%" y="693" width="0.0119%" height="15" fill="rgb(232,202,2)" fg:x="85709" fg:w="63"/><text x="16.5070%" y="703.50"></text></g><g><title>Parse::Parse (63 samples, 0.01%)</title><rect x="16.2570%" y="677" width="0.0119%" height="15" fill="rgb(237,140,51)" fg:x="85709" fg:w="63"/><text x="16.5070%" y="687.50"></text></g><g><title>JavaThread::thread_main_inner (87 samples, 0.02%)</title><rect x="16.2549%" y="773" width="0.0165%" height="15" fill="rgb(236,157,25)" fg:x="85698" fg:w="87"/><text x="16.5049%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (87 samples, 0.02%)</title><rect x="16.2549%" y="757" width="0.0165%" height="15" fill="rgb(219,209,0)" fg:x="85698" fg:w="87"/><text x="16.5049%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (87 samples, 0.02%)</title><rect x="16.2549%" y="741" width="0.0165%" height="15" fill="rgb(240,116,54)" fg:x="85698" fg:w="87"/><text x="16.5049%" y="751.50"></text></g><g><title>C2Compiler::compile_method (87 samples, 0.02%)</title><rect x="16.2549%" y="725" width="0.0165%" height="15" fill="rgb(216,10,36)" fg:x="85698" fg:w="87"/><text x="16.5049%" y="735.50"></text></g><g><title>Compile::Compile (87 samples, 0.02%)</title><rect x="16.2549%" y="709" width="0.0165%" height="15" fill="rgb(222,72,44)" fg:x="85698" fg:w="87"/><text x="16.5049%" y="719.50"></text></g><g><title>ParseGenerator::generate (64 samples, 0.01%)</title><rect x="16.2879%" y="661" width="0.0121%" height="15" fill="rgb(232,159,9)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="671.50"></text></g><g><title>Parse::Parse (64 samples, 0.01%)</title><rect x="16.2879%" y="645" width="0.0121%" height="15" fill="rgb(210,39,32)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="655.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.01%)</title><rect x="16.2879%" y="629" width="0.0121%" height="15" fill="rgb(216,194,45)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="639.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.01%)</title><rect x="16.2879%" y="613" width="0.0121%" height="15" fill="rgb(218,18,35)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.01%)</title><rect x="16.2879%" y="597" width="0.0121%" height="15" fill="rgb(207,83,51)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="607.50"></text></g><g><title>Parse::do_call (64 samples, 0.01%)</title><rect x="16.2879%" y="581" width="0.0121%" height="15" fill="rgb(225,63,43)" fg:x="85872" fg:w="64"/><text x="16.5379%" y="591.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.01%)</title><rect x="16.2879%" y="757" width="0.0131%" height="15" fill="rgb(207,57,36)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="767.50"></text></g><g><title>Parse::Parse (69 samples, 0.01%)</title><rect x="16.2879%" y="741" width="0.0131%" height="15" fill="rgb(216,99,33)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="751.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.01%)</title><rect x="16.2879%" y="725" width="0.0131%" height="15" fill="rgb(225,42,16)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="735.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.01%)</title><rect x="16.2879%" y="709" width="0.0131%" height="15" fill="rgb(220,201,45)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.01%)</title><rect x="16.2879%" y="693" width="0.0131%" height="15" fill="rgb(225,33,4)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="703.50"></text></g><g><title>Parse::do_call (69 samples, 0.01%)</title><rect x="16.2879%" y="677" width="0.0131%" height="15" fill="rgb(224,33,50)" fg:x="85872" fg:w="69"/><text x="16.5379%" y="687.50"></text></g><g><title>Parse::do_call (78 samples, 0.01%)</title><rect x="16.2879%" y="773" width="0.0148%" height="15" fill="rgb(246,198,51)" fg:x="85872" fg:w="78"/><text x="16.5379%" y="783.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.01%)</title><rect x="16.3173%" y="101" width="0.0135%" height="15" fill="rgb(205,22,4)" fg:x="86027" fg:w="71"/><text x="16.5673%" y="111.50"></text></g><g><title>Parse::Parse (71 samples, 0.01%)</title><rect x="16.3173%" y="85" width="0.0135%" height="15" fill="rgb(206,3,8)" fg:x="86027" fg:w="71"/><text x="16.5673%" y="95.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.01%)</title><rect x="16.3173%" y="69" width="0.0135%" height="15" fill="rgb(251,23,15)" fg:x="86027" fg:w="71"/><text x="16.5673%" y="79.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.01%)</title><rect x="16.3173%" y="53" width="0.0135%" height="15" fill="rgb(252,88,28)" fg:x="86027" fg:w="71"/><text x="16.5673%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (71 samples, 0.01%)</title><rect x="16.3173%" y="37" width="0.0135%" height="15" fill="rgb(212,127,14)" fg:x="86027" fg:w="71"/><text x="16.5673%" y="47.50"></text></g><g><title>Parse::do_call (79 samples, 0.01%)</title><rect x="16.3160%" y="117" width="0.0150%" height="15" fill="rgb(247,145,37)" fg:x="86020" fg:w="79"/><text x="16.5660%" y="127.50"></text></g><g><title>ParseGenerator::generate (83 samples, 0.02%)</title><rect x="16.3160%" y="197" width="0.0157%" height="15" fill="rgb(209,117,53)" fg:x="86020" fg:w="83"/><text x="16.5660%" y="207.50"></text></g><g><title>Parse::Parse (83 samples, 0.02%)</title><rect x="16.3160%" y="181" width="0.0157%" height="15" fill="rgb(212,90,42)" fg:x="86020" fg:w="83"/><text x="16.5660%" y="191.50"></text></g><g><title>Parse::do_all_blocks (83 samples, 0.02%)</title><rect x="16.3160%" y="165" width="0.0157%" height="15" fill="rgb(218,164,37)" fg:x="86020" fg:w="83"/><text x="16.5660%" y="175.50"></text></g><g><title>Parse::do_one_block (83 samples, 0.02%)</title><rect x="16.3160%" y="149" width="0.0157%" height="15" fill="rgb(246,65,34)" fg:x="86020" fg:w="83"/><text x="16.5660%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (83 samples, 0.02%)</title><rect x="16.3160%" y="133" width="0.0157%" height="15" fill="rgb(231,100,33)" fg:x="86020" fg:w="83"/><text x="16.5660%" y="143.50"></text></g><g><title>Parse::do_call (93 samples, 0.02%)</title><rect x="16.3151%" y="213" width="0.0176%" height="15" fill="rgb(228,126,14)" fg:x="86015" fg:w="93"/><text x="16.5651%" y="223.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.02%)</title><rect x="16.3151%" y="293" width="0.0178%" height="15" fill="rgb(215,173,21)" fg:x="86015" fg:w="94"/><text x="16.5651%" y="303.50"></text></g><g><title>Parse::Parse (94 samples, 0.02%)</title><rect x="16.3151%" y="277" width="0.0178%" height="15" fill="rgb(210,6,40)" fg:x="86015" fg:w="94"/><text x="16.5651%" y="287.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.02%)</title><rect x="16.3151%" y="261" width="0.0178%" height="15" fill="rgb(212,48,18)" fg:x="86015" fg:w="94"/><text x="16.5651%" y="271.50"></text></g><g><title>Parse::do_one_block (94 samples, 0.02%)</title><rect x="16.3151%" y="245" width="0.0178%" height="15" fill="rgb(230,214,11)" fg:x="86015" fg:w="94"/><text x="16.5651%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (94 samples, 0.02%)</title><rect x="16.3151%" y="229" width="0.0178%" height="15" fill="rgb(254,105,39)" fg:x="86015" fg:w="94"/><text x="16.5651%" y="239.50"></text></g><g><title>ParseGenerator::generate (102 samples, 0.02%)</title><rect x="16.3151%" y="389" width="0.0193%" height="15" fill="rgb(245,158,5)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="399.50"></text></g><g><title>Parse::Parse (102 samples, 0.02%)</title><rect x="16.3151%" y="373" width="0.0193%" height="15" fill="rgb(249,208,11)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="383.50"></text></g><g><title>Parse::do_all_blocks (102 samples, 0.02%)</title><rect x="16.3151%" y="357" width="0.0193%" height="15" fill="rgb(210,39,28)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="367.50"></text></g><g><title>Parse::do_one_block (102 samples, 0.02%)</title><rect x="16.3151%" y="341" width="0.0193%" height="15" fill="rgb(211,56,53)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (102 samples, 0.02%)</title><rect x="16.3151%" y="325" width="0.0193%" height="15" fill="rgb(226,201,30)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="335.50"></text></g><g><title>Parse::do_call (102 samples, 0.02%)</title><rect x="16.3151%" y="309" width="0.0193%" height="15" fill="rgb(239,101,34)" fg:x="86015" fg:w="102"/><text x="16.5651%" y="319.50"></text></g><g><title>ParseGenerator::generate (115 samples, 0.02%)</title><rect x="16.3151%" y="485" width="0.0218%" height="15" fill="rgb(226,209,5)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="495.50"></text></g><g><title>Parse::Parse (115 samples, 0.02%)</title><rect x="16.3151%" y="469" width="0.0218%" height="15" fill="rgb(250,105,47)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="479.50"></text></g><g><title>Parse::do_all_blocks (115 samples, 0.02%)</title><rect x="16.3151%" y="453" width="0.0218%" height="15" fill="rgb(230,72,3)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="463.50"></text></g><g><title>Parse::do_one_block (115 samples, 0.02%)</title><rect x="16.3151%" y="437" width="0.0218%" height="15" fill="rgb(232,218,39)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (115 samples, 0.02%)</title><rect x="16.3151%" y="421" width="0.0218%" height="15" fill="rgb(248,166,6)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="431.50"></text></g><g><title>Parse::do_call (115 samples, 0.02%)</title><rect x="16.3151%" y="405" width="0.0218%" height="15" fill="rgb(247,89,20)" fg:x="86015" fg:w="115"/><text x="16.5651%" y="415.50"></text></g><g><title>ParseGenerator::generate (130 samples, 0.02%)</title><rect x="16.3151%" y="581" width="0.0247%" height="15" fill="rgb(248,130,54)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="591.50"></text></g><g><title>Parse::Parse (130 samples, 0.02%)</title><rect x="16.3151%" y="565" width="0.0247%" height="15" fill="rgb(234,196,4)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="575.50"></text></g><g><title>Parse::do_all_blocks (130 samples, 0.02%)</title><rect x="16.3151%" y="549" width="0.0247%" height="15" fill="rgb(250,143,31)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="559.50"></text></g><g><title>Parse::do_one_block (130 samples, 0.02%)</title><rect x="16.3151%" y="533" width="0.0247%" height="15" fill="rgb(211,110,34)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (130 samples, 0.02%)</title><rect x="16.3151%" y="517" width="0.0247%" height="15" fill="rgb(215,124,48)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="527.50"></text></g><g><title>Parse::do_call (130 samples, 0.02%)</title><rect x="16.3151%" y="501" width="0.0247%" height="15" fill="rgb(216,46,13)" fg:x="86015" fg:w="130"/><text x="16.5651%" y="511.50"></text></g><g><title>ParseGenerator::generate (156 samples, 0.03%)</title><rect x="16.3151%" y="677" width="0.0296%" height="15" fill="rgb(205,184,25)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="687.50"></text></g><g><title>Parse::Parse (156 samples, 0.03%)</title><rect x="16.3151%" y="661" width="0.0296%" height="15" fill="rgb(228,1,10)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="671.50"></text></g><g><title>Parse::do_all_blocks (156 samples, 0.03%)</title><rect x="16.3151%" y="645" width="0.0296%" height="15" fill="rgb(213,116,27)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="655.50"></text></g><g><title>Parse::do_one_block (156 samples, 0.03%)</title><rect x="16.3151%" y="629" width="0.0296%" height="15" fill="rgb(241,95,50)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.03%)</title><rect x="16.3151%" y="613" width="0.0296%" height="15" fill="rgb(238,48,32)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="623.50"></text></g><g><title>Parse::do_call (156 samples, 0.03%)</title><rect x="16.3151%" y="597" width="0.0296%" height="15" fill="rgb(235,113,49)" fg:x="86015" fg:w="156"/><text x="16.5651%" y="607.50"></text></g><g><title>ParseGenerator::generate (178 samples, 0.03%)</title><rect x="16.3151%" y="773" width="0.0338%" height="15" fill="rgb(205,127,43)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="783.50"></text></g><g><title>Parse::Parse (178 samples, 0.03%)</title><rect x="16.3151%" y="757" width="0.0338%" height="15" fill="rgb(250,162,2)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="767.50"></text></g><g><title>Parse::do_all_blocks (178 samples, 0.03%)</title><rect x="16.3151%" y="741" width="0.0338%" height="15" fill="rgb(220,13,41)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="751.50"></text></g><g><title>Parse::do_one_block (178 samples, 0.03%)</title><rect x="16.3151%" y="725" width="0.0338%" height="15" fill="rgb(249,221,25)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (178 samples, 0.03%)</title><rect x="16.3151%" y="709" width="0.0338%" height="15" fill="rgb(215,208,19)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="719.50"></text></g><g><title>Parse::do_call (178 samples, 0.03%)</title><rect x="16.3151%" y="693" width="0.0338%" height="15" fill="rgb(236,175,2)" fg:x="86015" fg:w="178"/><text x="16.5651%" y="703.50"></text></g><g><title>Thread::call_run (58 samples, 0.01%)</title><rect x="16.3549%" y="773" width="0.0110%" height="15" fill="rgb(241,52,2)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (58 samples, 0.01%)</title><rect x="16.3549%" y="757" width="0.0110%" height="15" fill="rgb(248,140,14)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="767.50"></text></g><g><title>CompileBroker::compiler_thread_loop (58 samples, 0.01%)</title><rect x="16.3549%" y="741" width="0.0110%" height="15" fill="rgb(253,22,42)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (58 samples, 0.01%)</title><rect x="16.3549%" y="725" width="0.0110%" height="15" fill="rgb(234,61,47)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="735.50"></text></g><g><title>C2Compiler::compile_method (58 samples, 0.01%)</title><rect x="16.3549%" y="709" width="0.0110%" height="15" fill="rgb(208,226,15)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="719.50"></text></g><g><title>Compile::Compile (58 samples, 0.01%)</title><rect x="16.3549%" y="693" width="0.0110%" height="15" fill="rgb(217,221,4)" fg:x="86225" fg:w="58"/><text x="16.6049%" y="703.50"></text></g><g><title>start_thread (98 samples, 0.02%)</title><rect x="16.3834%" y="773" width="0.0186%" height="15" fill="rgb(212,174,34)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="783.50"></text></g><g><title>thread_native_entry (98 samples, 0.02%)</title><rect x="16.3834%" y="757" width="0.0186%" height="15" fill="rgb(253,83,4)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="767.50"></text></g><g><title>Thread::call_run (98 samples, 0.02%)</title><rect x="16.3834%" y="741" width="0.0186%" height="15" fill="rgb(250,195,49)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="751.50"></text></g><g><title>JavaThread::thread_main_inner (98 samples, 0.02%)</title><rect x="16.3834%" y="725" width="0.0186%" height="15" fill="rgb(241,192,25)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (98 samples, 0.02%)</title><rect x="16.3834%" y="709" width="0.0186%" height="15" fill="rgb(208,124,10)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (98 samples, 0.02%)</title><rect x="16.3834%" y="693" width="0.0186%" height="15" fill="rgb(222,33,0)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="703.50"></text></g><g><title>C2Compiler::compile_method (98 samples, 0.02%)</title><rect x="16.3834%" y="677" width="0.0186%" height="15" fill="rgb(234,209,28)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="687.50"></text></g><g><title>Compile::Compile (98 samples, 0.02%)</title><rect x="16.3834%" y="661" width="0.0186%" height="15" fill="rgb(224,11,23)" fg:x="86375" fg:w="98"/><text x="16.6334%" y="671.50"></text></g><g><title>[unknown] (68,944 samples, 13.08%)</title><rect x="3.3286%" y="789" width="13.0771%" height="15" fill="rgb(232,99,1)" fg:x="17549" fg:w="68944"/><text x="3.5786%" y="799.50">[unknown]</text></g><g><title>Dict::Insert (68 samples, 0.01%)</title><rect x="16.4287%" y="613" width="0.0129%" height="15" fill="rgb(237,95,45)" fg:x="86614" fg:w="68"/><text x="16.6787%" y="623.50"></text></g><g><title>Type::Initialize (79 samples, 0.01%)</title><rect x="16.4281%" y="629" width="0.0150%" height="15" fill="rgb(208,109,11)" fg:x="86611" fg:w="79"/><text x="16.6781%" y="639.50"></text></g><g><title>CompileWrapper::CompileWrapper (83 samples, 0.02%)</title><rect x="16.4277%" y="645" width="0.0157%" height="15" fill="rgb(216,190,48)" fg:x="86609" fg:w="83"/><text x="16.6777%" y="655.50"></text></g><g><title>Compile::identify_useful_nodes (186 samples, 0.04%)</title><rect x="16.4530%" y="629" width="0.0353%" height="15" fill="rgb(251,171,36)" fg:x="86742" fg:w="186"/><text x="16.7030%" y="639.50"></text></g><g><title>Compile::remove_useless_nodes (188 samples, 0.04%)</title><rect x="16.4882%" y="629" width="0.0357%" height="15" fill="rgb(230,62,22)" fg:x="86928" fg:w="188"/><text x="16.7382%" y="639.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (459 samples, 0.09%)</title><rect x="16.4458%" y="645" width="0.0871%" height="15" fill="rgb(225,114,35)" fg:x="86704" fg:w="459"/><text x="16.6958%" y="655.50"></text></g><g><title>C2Compiler::compile_method (708 samples, 0.13%)</title><rect x="16.4109%" y="677" width="0.1343%" height="15" fill="rgb(215,118,42)" fg:x="86520" fg:w="708"/><text x="16.6609%" y="687.50"></text></g><g><title>Compile::Compile (691 samples, 0.13%)</title><rect x="16.4141%" y="661" width="0.1311%" height="15" fill="rgb(243,119,21)" fg:x="86537" fg:w="691"/><text x="16.6641%" y="671.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (860 samples, 0.16%)</title><rect x="16.4097%" y="693" width="0.1631%" height="15" fill="rgb(252,177,53)" fg:x="86514" fg:w="860"/><text x="16.6597%" y="703.50"></text></g><g><title>futex_wait_queue_me (83 samples, 0.02%)</title><rect x="16.5867%" y="501" width="0.0157%" height="15" fill="rgb(237,209,29)" fg:x="87447" fg:w="83"/><text x="16.8367%" y="511.50"></text></g><g><title>schedule (77 samples, 0.01%)</title><rect x="16.5878%" y="485" width="0.0146%" height="15" fill="rgb(212,65,23)" fg:x="87453" fg:w="77"/><text x="16.8378%" y="495.50"></text></g><g><title>__schedule (77 samples, 0.01%)</title><rect x="16.5878%" y="469" width="0.0146%" height="15" fill="rgb(230,222,46)" fg:x="87453" fg:w="77"/><text x="16.8378%" y="479.50"></text></g><g><title>do_futex (94 samples, 0.02%)</title><rect x="16.5863%" y="533" width="0.0178%" height="15" fill="rgb(215,135,32)" fg:x="87445" fg:w="94"/><text x="16.8363%" y="543.50"></text></g><g><title>futex_wait (93 samples, 0.02%)</title><rect x="16.5865%" y="517" width="0.0176%" height="15" fill="rgb(246,101,22)" fg:x="87446" fg:w="93"/><text x="16.8365%" y="527.50"></text></g><g><title>do_syscall_64 (96 samples, 0.02%)</title><rect x="16.5861%" y="565" width="0.0182%" height="15" fill="rgb(206,107,13)" fg:x="87444" fg:w="96"/><text x="16.8361%" y="575.50"></text></g><g><title>__x64_sys_futex (95 samples, 0.02%)</title><rect x="16.5863%" y="549" width="0.0180%" height="15" fill="rgb(250,100,44)" fg:x="87445" fg:w="95"/><text x="16.8363%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (100 samples, 0.02%)</title><rect x="16.5861%" y="581" width="0.0190%" height="15" fill="rgb(231,147,38)" fg:x="87444" fg:w="100"/><text x="16.8361%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (108 samples, 0.02%)</title><rect x="16.5848%" y="629" width="0.0205%" height="15" fill="rgb(229,8,40)" fg:x="87437" fg:w="108"/><text x="16.8348%" y="639.50"></text></g><g><title>__pthread_cond_wait_common (108 samples, 0.02%)</title><rect x="16.5848%" y="613" width="0.0205%" height="15" fill="rgb(221,135,30)" fg:x="87437" fg:w="108"/><text x="16.8348%" y="623.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.02%)</title><rect x="16.5852%" y="597" width="0.0201%" height="15" fill="rgb(249,193,18)" fg:x="87439" fg:w="106"/><text x="16.8352%" y="607.50"></text></g><g><title>os::PlatformEvent::park (119 samples, 0.02%)</title><rect x="16.5844%" y="645" width="0.0226%" height="15" fill="rgb(209,133,39)" fg:x="87435" fg:w="119"/><text x="16.8344%" y="655.50"></text></g><g><title>Monitor::IWait (155 samples, 0.03%)</title><rect x="16.5780%" y="661" width="0.0294%" height="15" fill="rgb(232,100,14)" fg:x="87401" fg:w="155"/><text x="16.8280%" y="671.50"></text></g><g><title>Monitor::wait (167 samples, 0.03%)</title><rect x="16.5759%" y="677" width="0.0317%" height="15" fill="rgb(224,185,1)" fg:x="87390" fg:w="167"/><text x="16.8259%" y="687.50"></text></g><g><title>CompileQueue::get (200 samples, 0.04%)</title><rect x="16.5745%" y="693" width="0.0379%" height="15" fill="rgb(223,139,8)" fg:x="87383" fg:w="200"/><text x="16.8245%" y="703.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,078 samples, 0.20%)</title><rect x="16.4095%" y="709" width="0.2045%" height="15" fill="rgb(232,213,38)" fg:x="86513" fg:w="1078"/><text x="16.6595%" y="719.50"></text></g><g><title>Thread::call_run (1,082 samples, 0.21%)</title><rect x="16.4091%" y="741" width="0.2052%" height="15" fill="rgb(207,94,22)" fg:x="86511" fg:w="1082"/><text x="16.6591%" y="751.50"></text></g><g><title>JavaThread::thread_main_inner (1,080 samples, 0.20%)</title><rect x="16.4095%" y="725" width="0.2049%" height="15" fill="rgb(219,183,54)" fg:x="86513" fg:w="1080"/><text x="16.6595%" y="735.50"></text></g><g><title>__GI___clone (1,091 samples, 0.21%)</title><rect x="16.4076%" y="789" width="0.2069%" height="15" fill="rgb(216,185,54)" fg:x="86503" fg:w="1091"/><text x="16.6576%" y="799.50"></text></g><g><title>start_thread (1,085 samples, 0.21%)</title><rect x="16.4088%" y="773" width="0.2058%" height="15" fill="rgb(254,217,39)" fg:x="86509" fg:w="1085"/><text x="16.6588%" y="783.50"></text></g><g><title>thread_native_entry (1,083 samples, 0.21%)</title><rect x="16.4091%" y="757" width="0.2054%" height="15" fill="rgb(240,178,23)" fg:x="86511" fg:w="1083"/><text x="16.6591%" y="767.50"></text></g><g><title>asm_exc_page_fault (70 samples, 0.01%)</title><rect x="16.6176%" y="789" width="0.0133%" height="15" fill="rgb(218,11,47)" fg:x="87610" fg:w="70"/><text x="16.8676%" y="799.50"></text></g><g><title>C2_CompilerThre (73,971 samples, 14.03%)</title><rect x="2.6101%" y="805" width="14.0306%" height="15" fill="rgb(218,51,51)" fg:x="13761" fg:w="73971"/><text x="2.8601%" y="815.50">C2_CompilerThre</text></g><g><title>[perf-947659.map] (102 samples, 0.02%)</title><rect x="16.6425%" y="789" width="0.0193%" height="15" fill="rgb(238,126,27)" fg:x="87741" fg:w="102"/><text x="16.8925%" y="799.50"></text></g><g><title>Command-Accumul (133 samples, 0.03%)</title><rect x="16.6407%" y="805" width="0.0252%" height="15" fill="rgb(249,202,22)" fg:x="87732" fg:w="133"/><text x="16.8907%" y="815.50"></text></g><g><title>[anon] (59 samples, 0.01%)</title><rect x="16.6734%" y="789" width="0.0112%" height="15" fill="rgb(254,195,49)" fg:x="87904" fg:w="59"/><text x="16.9234%" y="799.50"></text></g><g><title>hrtimer_start_range_ns (74 samples, 0.01%)</title><rect x="17.3006%" y="597" width="0.0140%" height="15" fill="rgb(208,123,14)" fg:x="91211" fg:w="74"/><text x="17.5506%" y="607.50"></text></g><g><title>update_curr (92 samples, 0.02%)</title><rect x="17.3560%" y="533" width="0.0175%" height="15" fill="rgb(224,200,8)" fg:x="91503" fg:w="92"/><text x="17.6060%" y="543.50"></text></g><g><title>dequeue_entity (214 samples, 0.04%)</title><rect x="17.3422%" y="549" width="0.0406%" height="15" fill="rgb(217,61,36)" fg:x="91430" fg:w="214"/><text x="17.5922%" y="559.50"></text></g><g><title>dequeue_task_fair (248 samples, 0.05%)</title><rect x="17.3367%" y="565" width="0.0470%" height="15" fill="rgb(206,35,45)" fg:x="91401" fg:w="248"/><text x="17.5867%" y="575.50"></text></g><g><title>finish_task_switch (60 samples, 0.01%)</title><rect x="17.3837%" y="565" width="0.0114%" height="15" fill="rgb(217,65,33)" fg:x="91649" fg:w="60"/><text x="17.6337%" y="575.50"></text></g><g><title>pick_next_task_idle (62 samples, 0.01%)</title><rect x="17.4040%" y="565" width="0.0118%" height="15" fill="rgb(222,158,48)" fg:x="91756" fg:w="62"/><text x="17.6540%" y="575.50"></text></g><g><title>__update_idle_core (56 samples, 0.01%)</title><rect x="17.4051%" y="549" width="0.0106%" height="15" fill="rgb(254,2,54)" fg:x="91762" fg:w="56"/><text x="17.6551%" y="559.50"></text></g><g><title>psi_task_change (184 samples, 0.03%)</title><rect x="17.4158%" y="565" width="0.0349%" height="15" fill="rgb(250,143,38)" fg:x="91818" fg:w="184"/><text x="17.6658%" y="575.50"></text></g><g><title>psi_group_change (130 samples, 0.02%)</title><rect x="17.4260%" y="549" width="0.0247%" height="15" fill="rgb(248,25,0)" fg:x="91872" fg:w="130"/><text x="17.6760%" y="559.50"></text></g><g><title>futex_wait_queue_me (866 samples, 0.16%)</title><rect x="17.2915%" y="613" width="0.1643%" height="15" fill="rgb(206,152,27)" fg:x="91163" fg:w="866"/><text x="17.5415%" y="623.50"></text></g><g><title>schedule (739 samples, 0.14%)</title><rect x="17.3156%" y="597" width="0.1402%" height="15" fill="rgb(240,77,30)" fg:x="91290" fg:w="739"/><text x="17.5656%" y="607.50"></text></g><g><title>__schedule (721 samples, 0.14%)</title><rect x="17.3190%" y="581" width="0.1368%" height="15" fill="rgb(231,5,3)" fg:x="91308" fg:w="721"/><text x="17.5690%" y="591.50"></text></g><g><title>futex_wait_setup (60 samples, 0.01%)</title><rect x="17.4558%" y="613" width="0.0114%" height="15" fill="rgb(207,226,32)" fg:x="92029" fg:w="60"/><text x="17.7058%" y="623.50"></text></g><g><title>do_futex (1,043 samples, 0.20%)</title><rect x="17.2809%" y="645" width="0.1978%" height="15" fill="rgb(222,207,47)" fg:x="91107" fg:w="1043"/><text x="17.5309%" y="655.50"></text></g><g><title>futex_wait (1,023 samples, 0.19%)</title><rect x="17.2847%" y="629" width="0.1940%" height="15" fill="rgb(229,115,45)" fg:x="91127" fg:w="1023"/><text x="17.5347%" y="639.50"></text></g><g><title>__x64_sys_futex (1,068 samples, 0.20%)</title><rect x="17.2790%" y="661" width="0.2026%" height="15" fill="rgb(224,191,6)" fg:x="91097" fg:w="1068"/><text x="17.5290%" y="671.50"></text></g><g><title>do_syscall_64 (1,077 samples, 0.20%)</title><rect x="17.2779%" y="677" width="0.2043%" height="15" fill="rgb(230,227,24)" fg:x="91091" fg:w="1077"/><text x="17.5279%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,138 samples, 0.22%)</title><rect x="17.2729%" y="693" width="0.2159%" height="15" fill="rgb(228,80,19)" fg:x="91065" fg:w="1138"/><text x="17.5229%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (1,293 samples, 0.25%)</title><rect x="17.2451%" y="741" width="0.2453%" height="15" fill="rgb(247,229,0)" fg:x="90918" fg:w="1293"/><text x="17.4951%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (1,291 samples, 0.24%)</title><rect x="17.2454%" y="725" width="0.2449%" height="15" fill="rgb(237,194,15)" fg:x="90920" fg:w="1291"/><text x="17.4954%" y="735.50"></text></g><g><title>futex_abstimed_wait_cancelable (1,209 samples, 0.23%)</title><rect x="17.2610%" y="709" width="0.2293%" height="15" fill="rgb(219,203,20)" fg:x="91002" fg:w="1209"/><text x="17.5110%" y="719.50"></text></g><g><title>__x64_sys_futex (55 samples, 0.01%)</title><rect x="17.4988%" y="693" width="0.0104%" height="15" fill="rgb(234,128,8)" fg:x="92256" fg:w="55"/><text x="17.7488%" y="703.50"></text></g><g><title>do_syscall_64 (73 samples, 0.01%)</title><rect x="17.4971%" y="709" width="0.0138%" height="15" fill="rgb(248,202,8)" fg:x="92247" fg:w="73"/><text x="17.7471%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.01%)</title><rect x="17.4966%" y="725" width="0.0150%" height="15" fill="rgb(206,104,37)" fg:x="92244" fg:w="79"/><text x="17.7466%" y="735.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (106 samples, 0.02%)</title><rect x="17.4920%" y="741" width="0.0201%" height="15" fill="rgb(223,8,27)" fg:x="92220" fg:w="106"/><text x="17.7420%" y="751.50"></text></g><g><title>Parker::park (1,610 samples, 0.31%)</title><rect x="17.2179%" y="757" width="0.3054%" height="15" fill="rgb(216,217,28)" fg:x="90775" fg:w="1610"/><text x="17.4679%" y="767.50"></text></g><g><title>Unsafe_Park (1,690 samples, 0.32%)</title><rect x="17.2086%" y="773" width="0.3206%" height="15" fill="rgb(249,199,1)" fg:x="90726" fg:w="1690"/><text x="17.4586%" y="783.50"></text></g><g><title>[perf-947659.map] (4,493 samples, 0.85%)</title><rect x="16.6846%" y="789" width="0.8522%" height="15" fill="rgb(240,85,17)" fg:x="87963" fg:w="4493"/><text x="16.9346%" y="799.50"></text></g><g><title>ForkJoinPool.co (4,622 samples, 0.88%)</title><rect x="16.6732%" y="805" width="0.8767%" height="15" fill="rgb(206,108,45)" fg:x="87903" fg:w="4622"/><text x="16.9232%" y="815.50"></text></g><g><title>__GI___clone (91 samples, 0.02%)</title><rect x="17.5506%" y="789" width="0.0173%" height="15" fill="rgb(245,210,41)" fg:x="92529" fg:w="91"/><text x="17.8006%" y="799.50"></text></g><g><title>start_thread (91 samples, 0.02%)</title><rect x="17.5506%" y="773" width="0.0173%" height="15" fill="rgb(206,13,37)" fg:x="92529" fg:w="91"/><text x="17.8006%" y="783.50"></text></g><g><title>thread_native_entry (91 samples, 0.02%)</title><rect x="17.5506%" y="757" width="0.0173%" height="15" fill="rgb(250,61,18)" fg:x="92529" fg:w="91"/><text x="17.8006%" y="767.50"></text></g><g><title>Thread::call_run (91 samples, 0.02%)</title><rect x="17.5506%" y="741" width="0.0173%" height="15" fill="rgb(235,172,48)" fg:x="92529" fg:w="91"/><text x="17.8006%" y="751.50"></text></g><g><title>GangWorker::loop (91 samples, 0.02%)</title><rect x="17.5506%" y="725" width="0.0173%" height="15" fill="rgb(249,201,17)" fg:x="92529" fg:w="91"/><text x="17.8006%" y="735.50"></text></g><g><title>G1_Conc#0 (96 samples, 0.02%)</title><rect x="17.5499%" y="805" width="0.0182%" height="15" fill="rgb(219,208,6)" fg:x="92525" fg:w="96"/><text x="17.7999%" y="815.50"></text></g><g><title>__GI___clone (59 samples, 0.01%)</title><rect x="17.5681%" y="789" width="0.0112%" height="15" fill="rgb(248,31,23)" fg:x="92621" fg:w="59"/><text x="17.8181%" y="799.50"></text></g><g><title>start_thread (59 samples, 0.01%)</title><rect x="17.5681%" y="773" width="0.0112%" height="15" fill="rgb(245,15,42)" fg:x="92621" fg:w="59"/><text x="17.8181%" y="783.50"></text></g><g><title>thread_native_entry (59 samples, 0.01%)</title><rect x="17.5681%" y="757" width="0.0112%" height="15" fill="rgb(222,217,39)" fg:x="92621" fg:w="59"/><text x="17.8181%" y="767.50"></text></g><g><title>Thread::call_run (59 samples, 0.01%)</title><rect x="17.5681%" y="741" width="0.0112%" height="15" fill="rgb(210,219,27)" fg:x="92621" fg:w="59"/><text x="17.8181%" y="751.50"></text></g><g><title>GangWorker::loop (59 samples, 0.01%)</title><rect x="17.5681%" y="725" width="0.0112%" height="15" fill="rgb(252,166,36)" fg:x="92621" fg:w="59"/><text x="17.8181%" y="735.50"></text></g><g><title>G1_Conc#1 (60 samples, 0.01%)</title><rect x="17.5681%" y="805" width="0.0114%" height="15" fill="rgb(245,132,34)" fg:x="92621" fg:w="60"/><text x="17.8181%" y="815.50"></text></g><g><title>G1RemSet::refine_card_concurrently (115 samples, 0.02%)</title><rect x="17.5834%" y="677" width="0.0218%" height="15" fill="rgb(236,54,3)" fg:x="92702" fg:w="115"/><text x="17.8334%" y="687.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (118 samples, 0.02%)</title><rect x="17.5831%" y="693" width="0.0224%" height="15" fill="rgb(241,173,43)" fg:x="92700" fg:w="118"/><text x="17.8331%" y="703.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (123 samples, 0.02%)</title><rect x="17.5831%" y="709" width="0.0233%" height="15" fill="rgb(215,190,9)" fg:x="92700" fg:w="123"/><text x="17.8331%" y="719.50"></text></g><g><title>G1_Refine#0 (145 samples, 0.03%)</title><rect x="17.5817%" y="805" width="0.0275%" height="15" fill="rgb(242,101,16)" fg:x="92693" fg:w="145"/><text x="17.8317%" y="815.50"></text></g><g><title>__GI___clone (138 samples, 0.03%)</title><rect x="17.5831%" y="789" width="0.0262%" height="15" fill="rgb(223,190,21)" fg:x="92700" fg:w="138"/><text x="17.8331%" y="799.50"></text></g><g><title>start_thread (138 samples, 0.03%)</title><rect x="17.5831%" y="773" width="0.0262%" height="15" fill="rgb(215,228,25)" fg:x="92700" fg:w="138"/><text x="17.8331%" y="783.50"></text></g><g><title>thread_native_entry (138 samples, 0.03%)</title><rect x="17.5831%" y="757" width="0.0262%" height="15" fill="rgb(225,36,22)" fg:x="92700" fg:w="138"/><text x="17.8331%" y="767.50"></text></g><g><title>Thread::call_run (138 samples, 0.03%)</title><rect x="17.5831%" y="741" width="0.0262%" height="15" fill="rgb(251,106,46)" fg:x="92700" fg:w="138"/><text x="17.8331%" y="751.50"></text></g><g><title>ConcurrentGCThread::run (138 samples, 0.03%)</title><rect x="17.5831%" y="725" width="0.0262%" height="15" fill="rgb(208,90,1)" fg:x="92700" fg:w="138"/><text x="17.8331%" y="735.50"></text></g><g><title>G1CollectionSet::update_young_region_prediction (55 samples, 0.01%)</title><rect x="17.6246%" y="661" width="0.0104%" height="15" fill="rgb(243,10,4)" fg:x="92919" fg:w="55"/><text x="17.8746%" y="671.50"></text></g><g><title>G1CollectionSet::iterate (134 samples, 0.03%)</title><rect x="17.6193%" y="693" width="0.0254%" height="15" fill="rgb(212,137,27)" fg:x="92891" fg:w="134"/><text x="17.8693%" y="703.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (132 samples, 0.03%)</title><rect x="17.6197%" y="677" width="0.0250%" height="15" fill="rgb(231,220,49)" fg:x="92893" fg:w="132"/><text x="17.8697%" y="687.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (184 samples, 0.03%)</title><rect x="17.6191%" y="709" width="0.0349%" height="15" fill="rgb(237,96,20)" fg:x="92890" fg:w="184"/><text x="17.8691%" y="719.50"></text></g><g><title>G1_Young_RemSet (202 samples, 0.04%)</title><rect x="17.6187%" y="805" width="0.0383%" height="15" fill="rgb(239,229,30)" fg:x="92888" fg:w="202"/><text x="17.8687%" y="815.50"></text></g><g><title>__GI___clone (200 samples, 0.04%)</title><rect x="17.6191%" y="789" width="0.0379%" height="15" fill="rgb(219,65,33)" fg:x="92890" fg:w="200"/><text x="17.8691%" y="799.50"></text></g><g><title>start_thread (200 samples, 0.04%)</title><rect x="17.6191%" y="773" width="0.0379%" height="15" fill="rgb(243,134,7)" fg:x="92890" fg:w="200"/><text x="17.8691%" y="783.50"></text></g><g><title>thread_native_entry (200 samples, 0.04%)</title><rect x="17.6191%" y="757" width="0.0379%" height="15" fill="rgb(216,177,54)" fg:x="92890" fg:w="200"/><text x="17.8691%" y="767.50"></text></g><g><title>Thread::call_run (200 samples, 0.04%)</title><rect x="17.6191%" y="741" width="0.0379%" height="15" fill="rgb(211,160,20)" fg:x="92890" fg:w="200"/><text x="17.8691%" y="751.50"></text></g><g><title>ConcurrentGCThread::run (200 samples, 0.04%)</title><rect x="17.6191%" y="725" width="0.0379%" height="15" fill="rgb(239,85,39)" fg:x="92890" fg:w="200"/><text x="17.8691%" y="735.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (68 samples, 0.01%)</title><rect x="17.7119%" y="645" width="0.0129%" height="15" fill="rgb(232,125,22)" fg:x="93379" fg:w="68"/><text x="17.9619%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (194 samples, 0.04%)</title><rect x="17.6935%" y="661" width="0.0368%" height="15" fill="rgb(244,57,34)" fg:x="93282" fg:w="194"/><text x="17.9435%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (344 samples, 0.07%)</title><rect x="17.6667%" y="677" width="0.0652%" height="15" fill="rgb(214,203,32)" fg:x="93141" fg:w="344"/><text x="17.9167%" y="687.50"></text></g><g><title>SpinPause (137 samples, 0.03%)</title><rect x="17.7340%" y="677" width="0.0260%" height="15" fill="rgb(207,58,43)" fg:x="93496" fg:w="137"/><text x="17.9840%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (516 samples, 0.10%)</title><rect x="17.6642%" y="693" width="0.0979%" height="15" fill="rgb(215,193,15)" fg:x="93128" fg:w="516"/><text x="17.9142%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (154 samples, 0.03%)</title><rect x="17.7684%" y="597" width="0.0292%" height="15" fill="rgb(232,15,44)" fg:x="93677" fg:w="154"/><text x="18.0184%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (114 samples, 0.02%)</title><rect x="17.7760%" y="581" width="0.0216%" height="15" fill="rgb(212,3,48)" fg:x="93717" fg:w="114"/><text x="18.0260%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (199 samples, 0.04%)</title><rect x="17.7621%" y="613" width="0.0377%" height="15" fill="rgb(218,128,7)" fg:x="93644" fg:w="199"/><text x="18.0121%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (226 samples, 0.04%)</title><rect x="17.7621%" y="661" width="0.0429%" height="15" fill="rgb(226,216,39)" fg:x="93644" fg:w="226"/><text x="18.0121%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (226 samples, 0.04%)</title><rect x="17.7621%" y="645" width="0.0429%" height="15" fill="rgb(243,47,51)" fg:x="93644" fg:w="226"/><text x="18.0121%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (226 samples, 0.04%)</title><rect x="17.7621%" y="629" width="0.0429%" height="15" fill="rgb(241,183,40)" fg:x="93644" fg:w="226"/><text x="18.0121%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (236 samples, 0.04%)</title><rect x="17.7621%" y="693" width="0.0448%" height="15" fill="rgb(231,217,32)" fg:x="93644" fg:w="236"/><text x="18.0121%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (236 samples, 0.04%)</title><rect x="17.7621%" y="677" width="0.0448%" height="15" fill="rgb(229,61,38)" fg:x="93644" fg:w="236"/><text x="18.0121%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (60 samples, 0.01%)</title><rect x="17.8069%" y="613" width="0.0114%" height="15" fill="rgb(225,210,5)" fg:x="93880" fg:w="60"/><text x="18.0569%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (73 samples, 0.01%)</title><rect x="17.8069%" y="629" width="0.0138%" height="15" fill="rgb(231,79,45)" fg:x="93880" fg:w="73"/><text x="18.0569%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (74 samples, 0.01%)</title><rect x="17.8069%" y="645" width="0.0140%" height="15" fill="rgb(224,100,7)" fg:x="93880" fg:w="74"/><text x="18.0569%" y="655.50"></text></g><g><title>G1RemSet::scan_rem_set (86 samples, 0.02%)</title><rect x="17.8069%" y="693" width="0.0163%" height="15" fill="rgb(241,198,18)" fg:x="93880" fg:w="86"/><text x="18.0569%" y="703.50"></text></g><g><title>G1CollectionSet::iterate_from (86 samples, 0.02%)</title><rect x="17.8069%" y="677" width="0.0163%" height="15" fill="rgb(252,97,53)" fg:x="93880" fg:w="86"/><text x="18.0569%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (86 samples, 0.02%)</title><rect x="17.8069%" y="661" width="0.0163%" height="15" fill="rgb(220,88,7)" fg:x="93880" fg:w="86"/><text x="18.0569%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (110 samples, 0.02%)</title><rect x="17.8334%" y="565" width="0.0209%" height="15" fill="rgb(213,176,14)" fg:x="94020" fg:w="110"/><text x="18.0834%" y="575.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (69 samples, 0.01%)</title><rect x="17.8412%" y="549" width="0.0131%" height="15" fill="rgb(246,73,7)" fg:x="94061" fg:w="69"/><text x="18.0912%" y="559.50"></text></g><g><title>InterpreterOopMap::iterate_oop (136 samples, 0.03%)</title><rect x="17.8298%" y="597" width="0.0258%" height="15" fill="rgb(245,64,36)" fg:x="94001" fg:w="136"/><text x="18.0798%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (136 samples, 0.03%)</title><rect x="17.8298%" y="581" width="0.0258%" height="15" fill="rgb(245,80,10)" fg:x="94001" fg:w="136"/><text x="18.0798%" y="591.50"></text></g><g><title>frame::oops_interpreted_do (142 samples, 0.03%)</title><rect x="17.8298%" y="613" width="0.0269%" height="15" fill="rgb(232,107,50)" fg:x="94001" fg:w="142"/><text x="18.0798%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (177 samples, 0.03%)</title><rect x="17.8236%" y="677" width="0.0336%" height="15" fill="rgb(253,3,0)" fg:x="93968" fg:w="177"/><text x="18.0736%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (176 samples, 0.03%)</title><rect x="17.8238%" y="661" width="0.0334%" height="15" fill="rgb(212,99,53)" fg:x="93969" fg:w="176"/><text x="18.0738%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (176 samples, 0.03%)</title><rect x="17.8238%" y="645" width="0.0334%" height="15" fill="rgb(249,111,54)" fg:x="93969" fg:w="176"/><text x="18.0738%" y="655.50"></text></g><g><title>JavaThread::oops_do (176 samples, 0.03%)</title><rect x="17.8238%" y="629" width="0.0334%" height="15" fill="rgb(249,55,30)" fg:x="93969" fg:w="176"/><text x="18.0738%" y="639.50"></text></g><g><title>G1ParTask::work (1,048 samples, 0.20%)</title><rect x="17.6642%" y="709" width="0.1988%" height="15" fill="rgb(237,47,42)" fg:x="93128" fg:w="1048"/><text x="17.9142%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (210 samples, 0.04%)</title><rect x="17.8232%" y="693" width="0.0398%" height="15" fill="rgb(211,20,18)" fg:x="93966" fg:w="210"/><text x="18.0732%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (56 samples, 0.01%)</title><rect x="17.8664%" y="709" width="0.0106%" height="15" fill="rgb(231,203,46)" fg:x="94194" fg:w="56"/><text x="18.1164%" y="719.50"></text></g><g><title>GC_Thread#0 (1,244 samples, 0.24%)</title><rect x="17.6570%" y="805" width="0.2360%" height="15" fill="rgb(237,142,3)" fg:x="93090" fg:w="1244"/><text x="17.9070%" y="815.50"></text></g><g><title>__GI___clone (1,224 samples, 0.23%)</title><rect x="17.6608%" y="789" width="0.2322%" height="15" fill="rgb(241,107,1)" fg:x="93110" fg:w="1224"/><text x="17.9108%" y="799.50"></text></g><g><title>start_thread (1,224 samples, 0.23%)</title><rect x="17.6608%" y="773" width="0.2322%" height="15" fill="rgb(229,83,13)" fg:x="93110" fg:w="1224"/><text x="17.9108%" y="783.50"></text></g><g><title>thread_native_entry (1,224 samples, 0.23%)</title><rect x="17.6608%" y="757" width="0.2322%" height="15" fill="rgb(241,91,40)" fg:x="93110" fg:w="1224"/><text x="17.9108%" y="767.50"></text></g><g><title>Thread::call_run (1,224 samples, 0.23%)</title><rect x="17.6608%" y="741" width="0.2322%" height="15" fill="rgb(225,3,45)" fg:x="93110" fg:w="1224"/><text x="17.9108%" y="751.50"></text></g><g><title>GangWorker::loop (1,224 samples, 0.23%)</title><rect x="17.6608%" y="725" width="0.2322%" height="15" fill="rgb(244,223,14)" fg:x="93110" fg:w="1224"/><text x="17.9108%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (185 samples, 0.04%)</title><rect x="17.9317%" y="661" width="0.0351%" height="15" fill="rgb(224,124,37)" fg:x="94538" fg:w="185"/><text x="18.1817%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (340 samples, 0.06%)</title><rect x="17.9042%" y="677" width="0.0645%" height="15" fill="rgb(251,171,30)" fg:x="94393" fg:w="340"/><text x="18.1542%" y="687.50"></text></g><g><title>SpinPause (134 samples, 0.03%)</title><rect x="17.9702%" y="677" width="0.0254%" height="15" fill="rgb(236,46,54)" fg:x="94741" fg:w="134"/><text x="18.2202%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (500 samples, 0.09%)</title><rect x="17.9017%" y="693" width="0.0948%" height="15" fill="rgb(245,213,5)" fg:x="94380" fg:w="500"/><text x="18.1517%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (208 samples, 0.04%)</title><rect x="18.0246%" y="581" width="0.0395%" height="15" fill="rgb(230,144,27)" fg:x="95028" fg:w="208"/><text x="18.2746%" y="591.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (288 samples, 0.05%)</title><rect x="18.0096%" y="597" width="0.0546%" height="15" fill="rgb(220,86,6)" fg:x="94949" fg:w="288"/><text x="18.2596%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (378 samples, 0.07%)</title><rect x="17.9966%" y="613" width="0.0717%" height="15" fill="rgb(240,20,13)" fg:x="94880" fg:w="378"/><text x="18.2466%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (412 samples, 0.08%)</title><rect x="17.9966%" y="661" width="0.0781%" height="15" fill="rgb(217,89,34)" fg:x="94880" fg:w="412"/><text x="18.2466%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (412 samples, 0.08%)</title><rect x="17.9966%" y="645" width="0.0781%" height="15" fill="rgb(229,13,5)" fg:x="94880" fg:w="412"/><text x="18.2466%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (412 samples, 0.08%)</title><rect x="17.9966%" y="629" width="0.0781%" height="15" fill="rgb(244,67,35)" fg:x="94880" fg:w="412"/><text x="18.2466%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (424 samples, 0.08%)</title><rect x="17.9966%" y="693" width="0.0804%" height="15" fill="rgb(221,40,2)" fg:x="94880" fg:w="424"/><text x="18.2466%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (424 samples, 0.08%)</title><rect x="17.9966%" y="677" width="0.0804%" height="15" fill="rgb(237,157,21)" fg:x="94880" fg:w="424"/><text x="18.2466%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (62 samples, 0.01%)</title><rect x="18.0849%" y="677" width="0.0118%" height="15" fill="rgb(222,94,11)" fg:x="95346" fg:w="62"/><text x="18.3349%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (62 samples, 0.01%)</title><rect x="18.0849%" y="661" width="0.0118%" height="15" fill="rgb(249,113,6)" fg:x="95346" fg:w="62"/><text x="18.3349%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (62 samples, 0.01%)</title><rect x="18.0849%" y="645" width="0.0118%" height="15" fill="rgb(238,137,36)" fg:x="95346" fg:w="62"/><text x="18.3349%" y="655.50"></text></g><g><title>JavaThread::oops_do (62 samples, 0.01%)</title><rect x="18.0849%" y="629" width="0.0118%" height="15" fill="rgb(210,102,26)" fg:x="95346" fg:w="62"/><text x="18.3349%" y="639.50"></text></g><g><title>G1ParTask::work (1,062 samples, 0.20%)</title><rect x="17.9017%" y="709" width="0.2014%" height="15" fill="rgb(218,30,30)" fg:x="94380" fg:w="1062"/><text x="18.1517%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (98 samples, 0.02%)</title><rect x="18.0846%" y="693" width="0.0186%" height="15" fill="rgb(214,67,26)" fg:x="95344" fg:w="98"/><text x="18.3346%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (74 samples, 0.01%)</title><rect x="18.1066%" y="709" width="0.0140%" height="15" fill="rgb(251,9,53)" fg:x="95460" fg:w="74"/><text x="18.3566%" y="719.50"></text></g><g><title>__GI___clone (1,235 samples, 0.23%)</title><rect x="17.8983%" y="789" width="0.2343%" height="15" fill="rgb(228,204,25)" fg:x="94362" fg:w="1235"/><text x="18.1483%" y="799.50"></text></g><g><title>start_thread (1,235 samples, 0.23%)</title><rect x="17.8983%" y="773" width="0.2343%" height="15" fill="rgb(207,153,8)" fg:x="94362" fg:w="1235"/><text x="18.1483%" y="783.50"></text></g><g><title>thread_native_entry (1,235 samples, 0.23%)</title><rect x="17.8983%" y="757" width="0.2343%" height="15" fill="rgb(242,9,16)" fg:x="94362" fg:w="1235"/><text x="18.1483%" y="767.50"></text></g><g><title>Thread::call_run (1,235 samples, 0.23%)</title><rect x="17.8983%" y="741" width="0.2343%" height="15" fill="rgb(217,211,10)" fg:x="94362" fg:w="1235"/><text x="18.1483%" y="751.50"></text></g><g><title>GangWorker::loop (1,235 samples, 0.23%)</title><rect x="17.8983%" y="725" width="0.2343%" height="15" fill="rgb(219,228,52)" fg:x="94362" fg:w="1235"/><text x="18.1483%" y="735.50"></text></g><g><title>GC_Thread#1 (1,265 samples, 0.24%)</title><rect x="17.8930%" y="805" width="0.2399%" height="15" fill="rgb(231,92,29)" fg:x="94334" fg:w="1265"/><text x="18.1430%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (138 samples, 0.03%)</title><rect x="18.1686%" y="661" width="0.0262%" height="15" fill="rgb(232,8,23)" fg:x="95787" fg:w="138"/><text x="18.4186%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (263 samples, 0.05%)</title><rect x="18.1456%" y="677" width="0.0499%" height="15" fill="rgb(216,211,34)" fg:x="95666" fg:w="263"/><text x="18.3956%" y="687.50"></text></g><g><title>SpinPause (158 samples, 0.03%)</title><rect x="18.1970%" y="677" width="0.0300%" height="15" fill="rgb(236,151,0)" fg:x="95937" fg:w="158"/><text x="18.4470%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (453 samples, 0.09%)</title><rect x="18.1424%" y="693" width="0.0859%" height="15" fill="rgb(209,168,3)" fg:x="95649" fg:w="453"/><text x="18.3924%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (288 samples, 0.05%)</title><rect x="18.2395%" y="597" width="0.0546%" height="15" fill="rgb(208,129,28)" fg:x="96161" fg:w="288"/><text x="18.4895%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (218 samples, 0.04%)</title><rect x="18.2528%" y="581" width="0.0413%" height="15" fill="rgb(229,78,22)" fg:x="96231" fg:w="218"/><text x="18.5028%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (363 samples, 0.07%)</title><rect x="18.2283%" y="613" width="0.0689%" height="15" fill="rgb(228,187,13)" fg:x="96102" fg:w="363"/><text x="18.4783%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (402 samples, 0.08%)</title><rect x="18.2283%" y="661" width="0.0763%" height="15" fill="rgb(240,119,24)" fg:x="96102" fg:w="402"/><text x="18.4783%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (402 samples, 0.08%)</title><rect x="18.2283%" y="645" width="0.0763%" height="15" fill="rgb(209,194,42)" fg:x="96102" fg:w="402"/><text x="18.4783%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (402 samples, 0.08%)</title><rect x="18.2283%" y="629" width="0.0763%" height="15" fill="rgb(247,200,46)" fg:x="96102" fg:w="402"/><text x="18.4783%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (412 samples, 0.08%)</title><rect x="18.2283%" y="693" width="0.0781%" height="15" fill="rgb(218,76,16)" fg:x="96102" fg:w="412"/><text x="18.4783%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (412 samples, 0.08%)</title><rect x="18.2283%" y="677" width="0.0781%" height="15" fill="rgb(225,21,48)" fg:x="96102" fg:w="412"/><text x="18.4783%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (65 samples, 0.01%)</title><rect x="18.3196%" y="661" width="0.0123%" height="15" fill="rgb(239,223,50)" fg:x="96583" fg:w="65"/><text x="18.5696%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (64 samples, 0.01%)</title><rect x="18.3198%" y="645" width="0.0121%" height="15" fill="rgb(244,45,21)" fg:x="96584" fg:w="64"/><text x="18.5698%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (64 samples, 0.01%)</title><rect x="18.3198%" y="629" width="0.0121%" height="15" fill="rgb(232,33,43)" fg:x="96584" fg:w="64"/><text x="18.5698%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.01%)</title><rect x="18.3211%" y="613" width="0.0108%" height="15" fill="rgb(209,8,3)" fg:x="96591" fg:w="57"/><text x="18.5711%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (156 samples, 0.03%)</title><rect x="18.3196%" y="677" width="0.0296%" height="15" fill="rgb(214,25,53)" fg:x="96583" fg:w="156"/><text x="18.5696%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (91 samples, 0.02%)</title><rect x="18.3319%" y="661" width="0.0173%" height="15" fill="rgb(254,186,54)" fg:x="96648" fg:w="91"/><text x="18.5819%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (91 samples, 0.02%)</title><rect x="18.3319%" y="645" width="0.0173%" height="15" fill="rgb(208,174,49)" fg:x="96648" fg:w="91"/><text x="18.5819%" y="655.50"></text></g><g><title>JavaThread::oops_do (91 samples, 0.02%)</title><rect x="18.3319%" y="629" width="0.0173%" height="15" fill="rgb(233,191,51)" fg:x="96648" fg:w="91"/><text x="18.5819%" y="639.50"></text></g><g><title>G1ParTask::work (1,100 samples, 0.21%)</title><rect x="18.1424%" y="709" width="0.2086%" height="15" fill="rgb(222,134,10)" fg:x="95649" fg:w="1100"/><text x="18.3924%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (184 samples, 0.03%)</title><rect x="18.3162%" y="693" width="0.0349%" height="15" fill="rgb(230,226,20)" fg:x="96565" fg:w="184"/><text x="18.5662%" y="703.50"></text></g><g><title>__GI___clone (1,252 samples, 0.24%)</title><rect x="18.1392%" y="789" width="0.2375%" height="15" fill="rgb(251,111,25)" fg:x="95632" fg:w="1252"/><text x="18.3892%" y="799.50"></text></g><g><title>start_thread (1,252 samples, 0.24%)</title><rect x="18.1392%" y="773" width="0.2375%" height="15" fill="rgb(224,40,46)" fg:x="95632" fg:w="1252"/><text x="18.3892%" y="783.50"></text></g><g><title>thread_native_entry (1,252 samples, 0.24%)</title><rect x="18.1392%" y="757" width="0.2375%" height="15" fill="rgb(236,108,47)" fg:x="95632" fg:w="1252"/><text x="18.3892%" y="767.50"></text></g><g><title>Thread::call_run (1,252 samples, 0.24%)</title><rect x="18.1392%" y="741" width="0.2375%" height="15" fill="rgb(234,93,0)" fg:x="95632" fg:w="1252"/><text x="18.3892%" y="751.50"></text></g><g><title>GangWorker::loop (1,252 samples, 0.24%)</title><rect x="18.1392%" y="725" width="0.2375%" height="15" fill="rgb(224,213,32)" fg:x="95632" fg:w="1252"/><text x="18.3892%" y="735.50"></text></g><g><title>GC_Thread#2 (1,287 samples, 0.24%)</title><rect x="18.1329%" y="805" width="0.2441%" height="15" fill="rgb(251,11,48)" fg:x="95599" fg:w="1287"/><text x="18.3829%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (175 samples, 0.03%)</title><rect x="18.4216%" y="661" width="0.0332%" height="15" fill="rgb(236,173,5)" fg:x="97121" fg:w="175"/><text x="18.6716%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (354 samples, 0.07%)</title><rect x="18.3894%" y="677" width="0.0671%" height="15" fill="rgb(230,95,12)" fg:x="96951" fg:w="354"/><text x="18.6394%" y="687.50"></text></g><g><title>SpinPause (169 samples, 0.03%)</title><rect x="18.4584%" y="677" width="0.0321%" height="15" fill="rgb(232,209,1)" fg:x="97315" fg:w="169"/><text x="18.7084%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (564 samples, 0.11%)</title><rect x="18.3852%" y="693" width="0.1070%" height="15" fill="rgb(232,6,1)" fg:x="96929" fg:w="564"/><text x="18.6352%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (226 samples, 0.04%)</title><rect x="18.4998%" y="597" width="0.0429%" height="15" fill="rgb(210,224,50)" fg:x="97533" fg:w="226"/><text x="18.7498%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (167 samples, 0.03%)</title><rect x="18.5110%" y="581" width="0.0317%" height="15" fill="rgb(228,127,35)" fg:x="97592" fg:w="167"/><text x="18.7610%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (277 samples, 0.05%)</title><rect x="18.4926%" y="613" width="0.0525%" height="15" fill="rgb(245,102,45)" fg:x="97495" fg:w="277"/><text x="18.7426%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (316 samples, 0.06%)</title><rect x="18.4924%" y="661" width="0.0599%" height="15" fill="rgb(214,1,49)" fg:x="97494" fg:w="316"/><text x="18.7424%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (316 samples, 0.06%)</title><rect x="18.4924%" y="645" width="0.0599%" height="15" fill="rgb(226,163,40)" fg:x="97494" fg:w="316"/><text x="18.7424%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (316 samples, 0.06%)</title><rect x="18.4924%" y="629" width="0.0599%" height="15" fill="rgb(239,212,28)" fg:x="97494" fg:w="316"/><text x="18.7424%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (322 samples, 0.06%)</title><rect x="18.4924%" y="693" width="0.0611%" height="15" fill="rgb(220,20,13)" fg:x="97494" fg:w="322"/><text x="18.7424%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (322 samples, 0.06%)</title><rect x="18.4924%" y="677" width="0.0611%" height="15" fill="rgb(210,164,35)" fg:x="97494" fg:w="322"/><text x="18.7424%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (65 samples, 0.01%)</title><rect x="18.5536%" y="613" width="0.0123%" height="15" fill="rgb(248,109,41)" fg:x="97817" fg:w="65"/><text x="18.8036%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (73 samples, 0.01%)</title><rect x="18.5536%" y="645" width="0.0138%" height="15" fill="rgb(238,23,50)" fg:x="97817" fg:w="73"/><text x="18.8036%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (73 samples, 0.01%)</title><rect x="18.5536%" y="629" width="0.0138%" height="15" fill="rgb(211,48,49)" fg:x="97817" fg:w="73"/><text x="18.8036%" y="639.50"></text></g><g><title>G1RemSet::scan_rem_set (84 samples, 0.02%)</title><rect x="18.5534%" y="693" width="0.0159%" height="15" fill="rgb(223,36,21)" fg:x="97816" fg:w="84"/><text x="18.8034%" y="703.50"></text></g><g><title>G1CollectionSet::iterate_from (84 samples, 0.02%)</title><rect x="18.5534%" y="677" width="0.0159%" height="15" fill="rgb(207,123,46)" fg:x="97816" fg:w="84"/><text x="18.8034%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (84 samples, 0.02%)</title><rect x="18.5534%" y="661" width="0.0159%" height="15" fill="rgb(240,218,32)" fg:x="97816" fg:w="84"/><text x="18.8034%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (53 samples, 0.01%)</title><rect x="18.5747%" y="597" width="0.0101%" height="15" fill="rgb(252,5,43)" fg:x="97928" fg:w="53"/><text x="18.8247%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (82 samples, 0.02%)</title><rect x="18.5698%" y="661" width="0.0156%" height="15" fill="rgb(252,84,19)" fg:x="97902" fg:w="82"/><text x="18.8198%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (80 samples, 0.02%)</title><rect x="18.5701%" y="645" width="0.0152%" height="15" fill="rgb(243,152,39)" fg:x="97904" fg:w="80"/><text x="18.8201%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (80 samples, 0.02%)</title><rect x="18.5701%" y="629" width="0.0152%" height="15" fill="rgb(234,160,15)" fg:x="97904" fg:w="80"/><text x="18.8201%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (71 samples, 0.01%)</title><rect x="18.5718%" y="613" width="0.0135%" height="15" fill="rgb(237,34,20)" fg:x="97913" fg:w="71"/><text x="18.8218%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (73 samples, 0.01%)</title><rect x="18.5931%" y="565" width="0.0138%" height="15" fill="rgb(229,97,13)" fg:x="98025" fg:w="73"/><text x="18.8431%" y="575.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (61 samples, 0.01%)</title><rect x="18.5954%" y="549" width="0.0116%" height="15" fill="rgb(234,71,50)" fg:x="98037" fg:w="61"/><text x="18.8454%" y="559.50"></text></g><g><title>InterpreterOopMap::iterate_oop (105 samples, 0.02%)</title><rect x="18.5891%" y="597" width="0.0199%" height="15" fill="rgb(253,155,4)" fg:x="98004" fg:w="105"/><text x="18.8391%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (102 samples, 0.02%)</title><rect x="18.5897%" y="581" width="0.0193%" height="15" fill="rgb(222,185,37)" fg:x="98007" fg:w="102"/><text x="18.8397%" y="591.50"></text></g><g><title>frame::oops_interpreted_do (110 samples, 0.02%)</title><rect x="18.5891%" y="613" width="0.0209%" height="15" fill="rgb(251,177,13)" fg:x="98004" fg:w="110"/><text x="18.8391%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (213 samples, 0.04%)</title><rect x="18.5698%" y="677" width="0.0404%" height="15" fill="rgb(250,179,40)" fg:x="97902" fg:w="213"/><text x="18.8198%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (131 samples, 0.02%)</title><rect x="18.5853%" y="661" width="0.0248%" height="15" fill="rgb(242,44,2)" fg:x="97984" fg:w="131"/><text x="18.8353%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (131 samples, 0.02%)</title><rect x="18.5853%" y="645" width="0.0248%" height="15" fill="rgb(216,177,13)" fg:x="97984" fg:w="131"/><text x="18.8353%" y="655.50"></text></g><g><title>JavaThread::oops_do (124 samples, 0.02%)</title><rect x="18.5866%" y="629" width="0.0235%" height="15" fill="rgb(216,106,43)" fg:x="97991" fg:w="124"/><text x="18.8366%" y="639.50"></text></g><g><title>G1ParTask::work (1,224 samples, 0.23%)</title><rect x="18.3852%" y="709" width="0.2322%" height="15" fill="rgb(216,183,2)" fg:x="96929" fg:w="1224"/><text x="18.6352%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (253 samples, 0.05%)</title><rect x="18.5694%" y="693" width="0.0480%" height="15" fill="rgb(249,75,3)" fg:x="97900" fg:w="253"/><text x="18.8194%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (67 samples, 0.01%)</title><rect x="18.6193%" y="709" width="0.0127%" height="15" fill="rgb(219,67,39)" fg:x="98163" fg:w="67"/><text x="18.8693%" y="719.50"></text></g><g><title>__GI___clone (1,391 samples, 0.26%)</title><rect x="18.3839%" y="789" width="0.2638%" height="15" fill="rgb(253,228,2)" fg:x="96922" fg:w="1391"/><text x="18.6339%" y="799.50"></text></g><g><title>start_thread (1,391 samples, 0.26%)</title><rect x="18.3839%" y="773" width="0.2638%" height="15" fill="rgb(235,138,27)" fg:x="96922" fg:w="1391"/><text x="18.6339%" y="783.50"></text></g><g><title>thread_native_entry (1,391 samples, 0.26%)</title><rect x="18.3839%" y="757" width="0.2638%" height="15" fill="rgb(236,97,51)" fg:x="96922" fg:w="1391"/><text x="18.6339%" y="767.50"></text></g><g><title>Thread::call_run (1,391 samples, 0.26%)</title><rect x="18.3839%" y="741" width="0.2638%" height="15" fill="rgb(240,80,30)" fg:x="96922" fg:w="1391"/><text x="18.6339%" y="751.50"></text></g><g><title>GangWorker::loop (1,391 samples, 0.26%)</title><rect x="18.3839%" y="725" width="0.2638%" height="15" fill="rgb(230,178,19)" fg:x="96922" fg:w="1391"/><text x="18.6339%" y="735.50"></text></g><g><title>GC_Thread#3 (1,429 samples, 0.27%)</title><rect x="18.3770%" y="805" width="0.2710%" height="15" fill="rgb(210,190,27)" fg:x="96886" fg:w="1429"/><text x="18.6270%" y="815.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (66 samples, 0.01%)</title><rect x="18.7016%" y="645" width="0.0125%" height="15" fill="rgb(222,107,31)" fg:x="98597" fg:w="66"/><text x="18.9516%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (164 samples, 0.03%)</title><rect x="18.6858%" y="661" width="0.0311%" height="15" fill="rgb(216,127,34)" fg:x="98514" fg:w="164"/><text x="18.9358%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (324 samples, 0.06%)</title><rect x="18.6572%" y="677" width="0.0615%" height="15" fill="rgb(234,116,52)" fg:x="98363" fg:w="324"/><text x="18.9072%" y="687.50"></text></g><g><title>SpinPause (132 samples, 0.03%)</title><rect x="18.7194%" y="677" width="0.0250%" height="15" fill="rgb(222,124,15)" fg:x="98691" fg:w="132"/><text x="18.9694%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (488 samples, 0.09%)</title><rect x="18.6536%" y="693" width="0.0926%" height="15" fill="rgb(231,179,28)" fg:x="98344" fg:w="488"/><text x="18.9036%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (182 samples, 0.03%)</title><rect x="18.7526%" y="597" width="0.0345%" height="15" fill="rgb(226,93,45)" fg:x="98866" fg:w="182"/><text x="19.0026%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (138 samples, 0.03%)</title><rect x="18.7610%" y="581" width="0.0262%" height="15" fill="rgb(215,8,51)" fg:x="98910" fg:w="138"/><text x="19.0110%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (223 samples, 0.04%)</title><rect x="18.7462%" y="613" width="0.0423%" height="15" fill="rgb(223,106,5)" fg:x="98832" fg:w="223"/><text x="18.9962%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (253 samples, 0.05%)</title><rect x="18.7462%" y="661" width="0.0480%" height="15" fill="rgb(250,191,5)" fg:x="98832" fg:w="253"/><text x="18.9962%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (253 samples, 0.05%)</title><rect x="18.7462%" y="645" width="0.0480%" height="15" fill="rgb(242,132,44)" fg:x="98832" fg:w="253"/><text x="18.9962%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (253 samples, 0.05%)</title><rect x="18.7462%" y="629" width="0.0480%" height="15" fill="rgb(251,152,29)" fg:x="98832" fg:w="253"/><text x="18.9962%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (257 samples, 0.05%)</title><rect x="18.7462%" y="693" width="0.0487%" height="15" fill="rgb(218,179,5)" fg:x="98832" fg:w="257"/><text x="18.9962%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (257 samples, 0.05%)</title><rect x="18.7462%" y="677" width="0.0487%" height="15" fill="rgb(227,67,19)" fg:x="98832" fg:w="257"/><text x="18.9962%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (54 samples, 0.01%)</title><rect x="18.7989%" y="597" width="0.0102%" height="15" fill="rgb(233,119,31)" fg:x="99110" fg:w="54"/><text x="19.0489%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (79 samples, 0.01%)</title><rect x="18.7951%" y="613" width="0.0150%" height="15" fill="rgb(241,120,22)" fg:x="99090" fg:w="79"/><text x="19.0451%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (96 samples, 0.02%)</title><rect x="18.7951%" y="629" width="0.0182%" height="15" fill="rgb(224,102,30)" fg:x="99090" fg:w="96"/><text x="19.0451%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (102 samples, 0.02%)</title><rect x="18.7949%" y="645" width="0.0193%" height="15" fill="rgb(210,164,37)" fg:x="99089" fg:w="102"/><text x="19.0449%" y="655.50"></text></g><g><title>G1CollectionSet::iterate_from (125 samples, 0.02%)</title><rect x="18.7949%" y="677" width="0.0237%" height="15" fill="rgb(226,191,16)" fg:x="99089" fg:w="125"/><text x="19.0449%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (125 samples, 0.02%)</title><rect x="18.7949%" y="661" width="0.0237%" height="15" fill="rgb(214,40,45)" fg:x="99089" fg:w="125"/><text x="19.0449%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (126 samples, 0.02%)</title><rect x="18.7949%" y="693" width="0.0239%" height="15" fill="rgb(244,29,26)" fg:x="99089" fg:w="126"/><text x="19.0449%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (59 samples, 0.01%)</title><rect x="18.8188%" y="661" width="0.0112%" height="15" fill="rgb(216,16,5)" fg:x="99215" fg:w="59"/><text x="19.0688%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (58 samples, 0.01%)</title><rect x="18.8190%" y="645" width="0.0110%" height="15" fill="rgb(249,76,35)" fg:x="99216" fg:w="58"/><text x="19.0690%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (58 samples, 0.01%)</title><rect x="18.8190%" y="629" width="0.0110%" height="15" fill="rgb(207,11,44)" fg:x="99216" fg:w="58"/><text x="19.0690%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (68 samples, 0.01%)</title><rect x="18.8454%" y="565" width="0.0129%" height="15" fill="rgb(228,190,49)" fg:x="99355" fg:w="68"/><text x="19.0954%" y="575.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (54 samples, 0.01%)</title><rect x="18.8480%" y="549" width="0.0102%" height="15" fill="rgb(214,173,12)" fg:x="99369" fg:w="54"/><text x="19.0980%" y="559.50"></text></g><g><title>InterpreterOopMap::iterate_oop (111 samples, 0.02%)</title><rect x="18.8397%" y="597" width="0.0211%" height="15" fill="rgb(218,26,35)" fg:x="99325" fg:w="111"/><text x="19.0897%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (95 samples, 0.02%)</title><rect x="18.8427%" y="581" width="0.0180%" height="15" fill="rgb(220,200,19)" fg:x="99341" fg:w="95"/><text x="19.0927%" y="591.50"></text></g><g><title>G1RootProcessor::process_java_roots (222 samples, 0.04%)</title><rect x="18.8188%" y="677" width="0.0421%" height="15" fill="rgb(239,95,49)" fg:x="99215" fg:w="222"/><text x="19.0688%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (161 samples, 0.03%)</title><rect x="18.8304%" y="661" width="0.0305%" height="15" fill="rgb(235,85,53)" fg:x="99276" fg:w="161"/><text x="19.0804%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (161 samples, 0.03%)</title><rect x="18.8304%" y="645" width="0.0305%" height="15" fill="rgb(233,133,31)" fg:x="99276" fg:w="161"/><text x="19.0804%" y="655.50"></text></g><g><title>JavaThread::oops_do (161 samples, 0.03%)</title><rect x="18.8304%" y="629" width="0.0305%" height="15" fill="rgb(218,25,20)" fg:x="99276" fg:w="161"/><text x="19.0804%" y="639.50"></text></g><g><title>frame::oops_interpreted_do (113 samples, 0.02%)</title><rect x="18.8395%" y="613" width="0.0214%" height="15" fill="rgb(252,210,38)" fg:x="99324" fg:w="113"/><text x="19.0895%" y="623.50"></text></g><g><title>G1ParTask::work (1,145 samples, 0.22%)</title><rect x="18.6536%" y="709" width="0.2172%" height="15" fill="rgb(242,134,21)" fg:x="98344" fg:w="1145"/><text x="18.9036%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (274 samples, 0.05%)</title><rect x="18.8188%" y="693" width="0.0520%" height="15" fill="rgb(213,28,48)" fg:x="99215" fg:w="274"/><text x="19.0688%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (63 samples, 0.01%)</title><rect x="18.8731%" y="709" width="0.0119%" height="15" fill="rgb(250,196,2)" fg:x="99501" fg:w="63"/><text x="19.1231%" y="719.50"></text></g><g><title>__GI___clone (1,296 samples, 0.25%)</title><rect x="18.6523%" y="789" width="0.2458%" height="15" fill="rgb(227,5,17)" fg:x="98337" fg:w="1296"/><text x="18.9023%" y="799.50"></text></g><g><title>start_thread (1,296 samples, 0.25%)</title><rect x="18.6523%" y="773" width="0.2458%" height="15" fill="rgb(221,226,24)" fg:x="98337" fg:w="1296"/><text x="18.9023%" y="783.50"></text></g><g><title>thread_native_entry (1,296 samples, 0.25%)</title><rect x="18.6523%" y="757" width="0.2458%" height="15" fill="rgb(211,5,48)" fg:x="98337" fg:w="1296"/><text x="18.9023%" y="767.50"></text></g><g><title>Thread::call_run (1,296 samples, 0.25%)</title><rect x="18.6523%" y="741" width="0.2458%" height="15" fill="rgb(219,150,6)" fg:x="98337" fg:w="1296"/><text x="18.9023%" y="751.50"></text></g><g><title>GangWorker::loop (1,296 samples, 0.25%)</title><rect x="18.6523%" y="725" width="0.2458%" height="15" fill="rgb(251,46,16)" fg:x="98337" fg:w="1296"/><text x="18.9023%" y="735.50"></text></g><g><title>GC_Thread#4 (1,319 samples, 0.25%)</title><rect x="18.6481%" y="805" width="0.2502%" height="15" fill="rgb(220,204,40)" fg:x="98315" fg:w="1319"/><text x="18.8981%" y="815.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (55 samples, 0.01%)</title><rect x="18.9514%" y="645" width="0.0104%" height="15" fill="rgb(211,85,2)" fg:x="99914" fg:w="55"/><text x="19.2014%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (174 samples, 0.03%)</title><rect x="18.9341%" y="661" width="0.0330%" height="15" fill="rgb(229,17,7)" fg:x="99823" fg:w="174"/><text x="19.1841%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (328 samples, 0.06%)</title><rect x="18.9066%" y="677" width="0.0622%" height="15" fill="rgb(239,72,28)" fg:x="99678" fg:w="328"/><text x="19.1566%" y="687.50"></text></g><g><title>SpinPause (118 samples, 0.02%)</title><rect x="18.9709%" y="677" width="0.0224%" height="15" fill="rgb(230,47,54)" fg:x="100017" fg:w="118"/><text x="19.2209%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (480 samples, 0.09%)</title><rect x="18.9045%" y="693" width="0.0910%" height="15" fill="rgb(214,50,8)" fg:x="99667" fg:w="480"/><text x="19.1545%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (198 samples, 0.04%)</title><rect x="19.0022%" y="597" width="0.0376%" height="15" fill="rgb(216,198,43)" fg:x="100182" fg:w="198"/><text x="19.2522%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (159 samples, 0.03%)</title><rect x="19.0096%" y="581" width="0.0302%" height="15" fill="rgb(234,20,35)" fg:x="100221" fg:w="159"/><text x="19.2596%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (253 samples, 0.05%)</title><rect x="18.9956%" y="613" width="0.0480%" height="15" fill="rgb(254,45,19)" fg:x="100147" fg:w="253"/><text x="19.2456%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (286 samples, 0.05%)</title><rect x="18.9956%" y="661" width="0.0542%" height="15" fill="rgb(219,14,44)" fg:x="100147" fg:w="286"/><text x="19.2456%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (286 samples, 0.05%)</title><rect x="18.9956%" y="645" width="0.0542%" height="15" fill="rgb(217,220,26)" fg:x="100147" fg:w="286"/><text x="19.2456%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (286 samples, 0.05%)</title><rect x="18.9956%" y="629" width="0.0542%" height="15" fill="rgb(213,158,28)" fg:x="100147" fg:w="286"/><text x="19.2456%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (300 samples, 0.06%)</title><rect x="18.9956%" y="693" width="0.0569%" height="15" fill="rgb(252,51,52)" fg:x="100147" fg:w="300"/><text x="19.2456%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (300 samples, 0.06%)</title><rect x="18.9956%" y="677" width="0.0569%" height="15" fill="rgb(246,89,16)" fg:x="100147" fg:w="300"/><text x="19.2456%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (57 samples, 0.01%)</title><rect x="19.0529%" y="629" width="0.0108%" height="15" fill="rgb(216,158,49)" fg:x="100449" fg:w="57"/><text x="19.3029%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (58 samples, 0.01%)</title><rect x="19.0529%" y="645" width="0.0110%" height="15" fill="rgb(236,107,19)" fg:x="100449" fg:w="58"/><text x="19.3029%" y="655.50"></text></g><g><title>G1RemSet::scan_rem_set (74 samples, 0.01%)</title><rect x="19.0525%" y="693" width="0.0140%" height="15" fill="rgb(228,185,30)" fg:x="100447" fg:w="74"/><text x="19.3025%" y="703.50"></text></g><g><title>G1CollectionSet::iterate_from (74 samples, 0.01%)</title><rect x="19.0525%" y="677" width="0.0140%" height="15" fill="rgb(246,134,8)" fg:x="100447" fg:w="74"/><text x="19.3025%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (74 samples, 0.01%)</title><rect x="19.0525%" y="661" width="0.0140%" height="15" fill="rgb(214,143,50)" fg:x="100447" fg:w="74"/><text x="19.3025%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (120 samples, 0.02%)</title><rect x="19.0747%" y="597" width="0.0228%" height="15" fill="rgb(228,75,8)" fg:x="100564" fg:w="120"/><text x="19.3247%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (94 samples, 0.02%)</title><rect x="19.0796%" y="581" width="0.0178%" height="15" fill="rgb(207,175,4)" fg:x="100590" fg:w="94"/><text x="19.3296%" y="591.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (165 samples, 0.03%)</title><rect x="19.0669%" y="661" width="0.0313%" height="15" fill="rgb(205,108,24)" fg:x="100523" fg:w="165"/><text x="19.3169%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (162 samples, 0.03%)</title><rect x="19.0675%" y="645" width="0.0307%" height="15" fill="rgb(244,120,49)" fg:x="100526" fg:w="162"/><text x="19.3175%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (162 samples, 0.03%)</title><rect x="19.0675%" y="629" width="0.0307%" height="15" fill="rgb(223,47,38)" fg:x="100526" fg:w="162"/><text x="19.3175%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (148 samples, 0.03%)</title><rect x="19.0701%" y="613" width="0.0281%" height="15" fill="rgb(229,179,11)" fg:x="100540" fg:w="148"/><text x="19.3201%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (200 samples, 0.04%)</title><rect x="19.0669%" y="677" width="0.0379%" height="15" fill="rgb(231,122,1)" fg:x="100523" fg:w="200"/><text x="19.3169%" y="687.50"></text></g><g><title>G1ParTask::work (1,070 samples, 0.20%)</title><rect x="18.9045%" y="709" width="0.2030%" height="15" fill="rgb(245,119,9)" fg:x="99667" fg:w="1070"/><text x="19.1545%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (216 samples, 0.04%)</title><rect x="19.0665%" y="693" width="0.0410%" height="15" fill="rgb(241,163,25)" fg:x="100521" fg:w="216"/><text x="19.3165%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (71 samples, 0.01%)</title><rect x="19.1096%" y="709" width="0.0135%" height="15" fill="rgb(217,214,3)" fg:x="100748" fg:w="71"/><text x="19.3596%" y="719.50"></text></g><g><title>__GI___clone (1,216 samples, 0.23%)</title><rect x="18.9025%" y="789" width="0.2306%" height="15" fill="rgb(240,86,28)" fg:x="99656" fg:w="1216"/><text x="19.1525%" y="799.50"></text></g><g><title>start_thread (1,216 samples, 0.23%)</title><rect x="18.9025%" y="773" width="0.2306%" height="15" fill="rgb(215,47,9)" fg:x="99656" fg:w="1216"/><text x="19.1525%" y="783.50"></text></g><g><title>thread_native_entry (1,216 samples, 0.23%)</title><rect x="18.9025%" y="757" width="0.2306%" height="15" fill="rgb(252,25,45)" fg:x="99656" fg:w="1216"/><text x="19.1525%" y="767.50"></text></g><g><title>Thread::call_run (1,216 samples, 0.23%)</title><rect x="18.9025%" y="741" width="0.2306%" height="15" fill="rgb(251,164,9)" fg:x="99656" fg:w="1216"/><text x="19.1525%" y="751.50"></text></g><g><title>GangWorker::loop (1,216 samples, 0.23%)</title><rect x="18.9025%" y="725" width="0.2306%" height="15" fill="rgb(233,194,0)" fg:x="99656" fg:w="1216"/><text x="19.1525%" y="735.50"></text></g><g><title>GC_Thread#5 (1,240 samples, 0.24%)</title><rect x="18.8983%" y="805" width="0.2352%" height="15" fill="rgb(249,111,24)" fg:x="99634" fg:w="1240"/><text x="19.1483%" y="815.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (65 samples, 0.01%)</title><rect x="19.1834%" y="645" width="0.0123%" height="15" fill="rgb(250,223,3)" fg:x="101137" fg:w="65"/><text x="19.4334%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (156 samples, 0.03%)</title><rect x="19.1707%" y="661" width="0.0296%" height="15" fill="rgb(236,178,37)" fg:x="101070" fg:w="156"/><text x="19.4207%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (306 samples, 0.06%)</title><rect x="19.1437%" y="677" width="0.0580%" height="15" fill="rgb(241,158,50)" fg:x="100928" fg:w="306"/><text x="19.3937%" y="687.50"></text></g><g><title>SpinPause (58 samples, 0.01%)</title><rect x="19.2029%" y="677" width="0.0110%" height="15" fill="rgb(213,121,41)" fg:x="101240" fg:w="58"/><text x="19.4529%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (385 samples, 0.07%)</title><rect x="19.1414%" y="693" width="0.0730%" height="15" fill="rgb(240,92,3)" fg:x="100916" fg:w="385"/><text x="19.3914%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (193 samples, 0.04%)</title><rect x="19.2198%" y="597" width="0.0366%" height="15" fill="rgb(205,123,3)" fg:x="101329" fg:w="193"/><text x="19.4698%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (159 samples, 0.03%)</title><rect x="19.2262%" y="581" width="0.0302%" height="15" fill="rgb(205,97,47)" fg:x="101363" fg:w="159"/><text x="19.4762%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (233 samples, 0.04%)</title><rect x="19.2145%" y="613" width="0.0442%" height="15" fill="rgb(247,152,14)" fg:x="101301" fg:w="233"/><text x="19.4645%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (260 samples, 0.05%)</title><rect x="19.2145%" y="661" width="0.0493%" height="15" fill="rgb(248,195,53)" fg:x="101301" fg:w="260"/><text x="19.4645%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (260 samples, 0.05%)</title><rect x="19.2145%" y="645" width="0.0493%" height="15" fill="rgb(226,201,16)" fg:x="101301" fg:w="260"/><text x="19.4645%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (260 samples, 0.05%)</title><rect x="19.2145%" y="629" width="0.0493%" height="15" fill="rgb(205,98,0)" fg:x="101301" fg:w="260"/><text x="19.4645%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (267 samples, 0.05%)</title><rect x="19.2145%" y="693" width="0.0506%" height="15" fill="rgb(214,191,48)" fg:x="101301" fg:w="267"/><text x="19.4645%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (267 samples, 0.05%)</title><rect x="19.2145%" y="677" width="0.0506%" height="15" fill="rgb(237,112,39)" fg:x="101301" fg:w="267"/><text x="19.4645%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (57 samples, 0.01%)</title><rect x="19.2651%" y="629" width="0.0108%" height="15" fill="rgb(247,203,27)" fg:x="101568" fg:w="57"/><text x="19.5151%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (59 samples, 0.01%)</title><rect x="19.2651%" y="645" width="0.0112%" height="15" fill="rgb(235,124,28)" fg:x="101568" fg:w="59"/><text x="19.5151%" y="655.50"></text></g><g><title>G1RemSet::scan_rem_set (73 samples, 0.01%)</title><rect x="19.2651%" y="693" width="0.0138%" height="15" fill="rgb(208,207,46)" fg:x="101568" fg:w="73"/><text x="19.5151%" y="703.50"></text></g><g><title>G1CollectionSet::iterate_from (73 samples, 0.01%)</title><rect x="19.2651%" y="677" width="0.0138%" height="15" fill="rgb(234,176,4)" fg:x="101568" fg:w="73"/><text x="19.5151%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (73 samples, 0.01%)</title><rect x="19.2651%" y="661" width="0.0138%" height="15" fill="rgb(230,133,28)" fg:x="101568" fg:w="73"/><text x="19.5151%" y="671.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (106 samples, 0.02%)</title><rect x="19.2793%" y="661" width="0.0201%" height="15" fill="rgb(211,137,40)" fg:x="101643" fg:w="106"/><text x="19.5293%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (102 samples, 0.02%)</title><rect x="19.2801%" y="645" width="0.0193%" height="15" fill="rgb(254,35,13)" fg:x="101647" fg:w="102"/><text x="19.5301%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (102 samples, 0.02%)</title><rect x="19.2801%" y="629" width="0.0193%" height="15" fill="rgb(225,49,51)" fg:x="101647" fg:w="102"/><text x="19.5301%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (77 samples, 0.01%)</title><rect x="19.2848%" y="613" width="0.0146%" height="15" fill="rgb(251,10,15)" fg:x="101672" fg:w="77"/><text x="19.5348%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (64 samples, 0.01%)</title><rect x="19.2873%" y="597" width="0.0121%" height="15" fill="rgb(228,207,15)" fg:x="101685" fg:w="64"/><text x="19.5373%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (60 samples, 0.01%)</title><rect x="19.3103%" y="597" width="0.0114%" height="15" fill="rgb(241,99,19)" fg:x="101806" fg:w="60"/><text x="19.5603%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (60 samples, 0.01%)</title><rect x="19.3103%" y="581" width="0.0114%" height="15" fill="rgb(207,104,49)" fg:x="101806" fg:w="60"/><text x="19.5603%" y="591.50"></text></g><g><title>frame::oops_interpreted_do (62 samples, 0.01%)</title><rect x="19.3103%" y="613" width="0.0118%" height="15" fill="rgb(234,99,18)" fg:x="101806" fg:w="62"/><text x="19.5603%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (226 samples, 0.04%)</title><rect x="19.2793%" y="677" width="0.0429%" height="15" fill="rgb(213,191,49)" fg:x="101643" fg:w="226"/><text x="19.5293%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (120 samples, 0.02%)</title><rect x="19.2994%" y="661" width="0.0228%" height="15" fill="rgb(210,226,19)" fg:x="101749" fg:w="120"/><text x="19.5494%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (120 samples, 0.02%)</title><rect x="19.2994%" y="645" width="0.0228%" height="15" fill="rgb(229,97,18)" fg:x="101749" fg:w="120"/><text x="19.5494%" y="655.50"></text></g><g><title>JavaThread::oops_do (120 samples, 0.02%)</title><rect x="19.2994%" y="629" width="0.0228%" height="15" fill="rgb(211,167,15)" fg:x="101749" fg:w="120"/><text x="19.5494%" y="639.50"></text></g><g><title>G1ParTask::work (997 samples, 0.19%)</title><rect x="19.1414%" y="709" width="0.1891%" height="15" fill="rgb(210,169,34)" fg:x="100916" fg:w="997"/><text x="19.3914%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (272 samples, 0.05%)</title><rect x="19.2790%" y="693" width="0.0516%" height="15" fill="rgb(241,121,31)" fg:x="101641" fg:w="272"/><text x="19.5290%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (67 samples, 0.01%)</title><rect x="19.3342%" y="709" width="0.0127%" height="15" fill="rgb(232,40,11)" fg:x="101932" fg:w="67"/><text x="19.5842%" y="719.50"></text></g><g><title>__GI___clone (1,189 samples, 0.23%)</title><rect x="19.1377%" y="789" width="0.2255%" height="15" fill="rgb(205,86,26)" fg:x="100896" fg:w="1189"/><text x="19.3877%" y="799.50"></text></g><g><title>start_thread (1,189 samples, 0.23%)</title><rect x="19.1377%" y="773" width="0.2255%" height="15" fill="rgb(231,126,28)" fg:x="100896" fg:w="1189"/><text x="19.3877%" y="783.50"></text></g><g><title>thread_native_entry (1,189 samples, 0.23%)</title><rect x="19.1377%" y="757" width="0.2255%" height="15" fill="rgb(219,221,18)" fg:x="100896" fg:w="1189"/><text x="19.3877%" y="767.50"></text></g><g><title>Thread::call_run (1,189 samples, 0.23%)</title><rect x="19.1377%" y="741" width="0.2255%" height="15" fill="rgb(211,40,0)" fg:x="100896" fg:w="1189"/><text x="19.3877%" y="751.50"></text></g><g><title>GangWorker::loop (1,189 samples, 0.23%)</title><rect x="19.1377%" y="725" width="0.2255%" height="15" fill="rgb(239,85,43)" fg:x="100896" fg:w="1189"/><text x="19.3877%" y="735.50"></text></g><g><title>GC_Thread#6 (1,216 samples, 0.23%)</title><rect x="19.1335%" y="805" width="0.2306%" height="15" fill="rgb(231,55,21)" fg:x="100874" fg:w="1216"/><text x="19.3835%" y="815.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (61 samples, 0.01%)</title><rect x="19.4218%" y="645" width="0.0116%" height="15" fill="rgb(225,184,43)" fg:x="102394" fg:w="61"/><text x="19.6718%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (185 samples, 0.04%)</title><rect x="19.4072%" y="661" width="0.0351%" height="15" fill="rgb(251,158,41)" fg:x="102317" fg:w="185"/><text x="19.6572%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue (341 samples, 0.06%)</title><rect x="19.3791%" y="677" width="0.0647%" height="15" fill="rgb(234,159,37)" fg:x="102169" fg:w="341"/><text x="19.6291%" y="687.50"></text></g><g><title>SpinPause (144 samples, 0.03%)</title><rect x="19.4449%" y="677" width="0.0273%" height="15" fill="rgb(216,204,22)" fg:x="102516" fg:w="144"/><text x="19.6949%" y="687.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (522 samples, 0.10%)</title><rect x="19.3757%" y="693" width="0.0990%" height="15" fill="rgb(214,17,3)" fg:x="102151" fg:w="522"/><text x="19.6257%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (186 samples, 0.04%)</title><rect x="19.4823%" y="597" width="0.0353%" height="15" fill="rgb(212,111,17)" fg:x="102713" fg:w="186"/><text x="19.7323%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (146 samples, 0.03%)</title><rect x="19.4899%" y="581" width="0.0277%" height="15" fill="rgb(221,157,24)" fg:x="102753" fg:w="146"/><text x="19.7399%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (238 samples, 0.05%)</title><rect x="19.4749%" y="613" width="0.0451%" height="15" fill="rgb(252,16,13)" fg:x="102674" fg:w="238"/><text x="19.7249%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (277 samples, 0.05%)</title><rect x="19.4747%" y="661" width="0.0525%" height="15" fill="rgb(221,62,2)" fg:x="102673" fg:w="277"/><text x="19.7247%" y="671.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (277 samples, 0.05%)</title><rect x="19.4747%" y="645" width="0.0525%" height="15" fill="rgb(247,87,22)" fg:x="102673" fg:w="277"/><text x="19.7247%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (277 samples, 0.05%)</title><rect x="19.4747%" y="629" width="0.0525%" height="15" fill="rgb(215,73,9)" fg:x="102673" fg:w="277"/><text x="19.7247%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (290 samples, 0.06%)</title><rect x="19.4747%" y="693" width="0.0550%" height="15" fill="rgb(207,175,33)" fg:x="102673" fg:w="290"/><text x="19.7247%" y="703.50"></text></g><g><title>G1RemSet::update_rem_set (290 samples, 0.06%)</title><rect x="19.4747%" y="677" width="0.0550%" height="15" fill="rgb(243,129,54)" fg:x="102673" fg:w="290"/><text x="19.7247%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (58 samples, 0.01%)</title><rect x="19.5297%" y="693" width="0.0110%" height="15" fill="rgb(227,119,45)" fg:x="102963" fg:w="58"/><text x="19.7797%" y="703.50"></text></g><g><title>G1CollectionSet::iterate_from (58 samples, 0.01%)</title><rect x="19.5297%" y="677" width="0.0110%" height="15" fill="rgb(205,109,36)" fg:x="102963" fg:w="58"/><text x="19.7797%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (58 samples, 0.01%)</title><rect x="19.5297%" y="661" width="0.0110%" height="15" fill="rgb(205,6,39)" fg:x="102963" fg:w="58"/><text x="19.7797%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (63 samples, 0.01%)</title><rect x="19.5464%" y="597" width="0.0119%" height="15" fill="rgb(221,32,16)" fg:x="103051" fg:w="63"/><text x="19.7964%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (98 samples, 0.02%)</title><rect x="19.5407%" y="661" width="0.0186%" height="15" fill="rgb(228,144,50)" fg:x="103021" fg:w="98"/><text x="19.7907%" y="671.50"></text></g><g><title>G1CLDScanClosure::do_cld (96 samples, 0.02%)</title><rect x="19.5411%" y="645" width="0.0182%" height="15" fill="rgb(229,201,53)" fg:x="103023" fg:w="96"/><text x="19.7911%" y="655.50"></text></g><g><title>ClassLoaderData::oops_do (96 samples, 0.02%)</title><rect x="19.5411%" y="629" width="0.0182%" height="15" fill="rgb(249,153,27)" fg:x="103023" fg:w="96"/><text x="19.7911%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (86 samples, 0.02%)</title><rect x="19.5430%" y="613" width="0.0163%" height="15" fill="rgb(227,106,25)" fg:x="103033" fg:w="86"/><text x="19.7930%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (159 samples, 0.03%)</title><rect x="19.5407%" y="677" width="0.0302%" height="15" fill="rgb(230,65,29)" fg:x="103021" fg:w="159"/><text x="19.7907%" y="687.50"></text></g><g><title>Threads::possibly_parallel_oops_do (61 samples, 0.01%)</title><rect x="19.5593%" y="661" width="0.0116%" height="15" fill="rgb(221,57,46)" fg:x="103119" fg:w="61"/><text x="19.8093%" y="671.50"></text></g><g><title>Threads::possibly_parallel_threads_do (61 samples, 0.01%)</title><rect x="19.5593%" y="645" width="0.0116%" height="15" fill="rgb(229,161,17)" fg:x="103119" fg:w="61"/><text x="19.8093%" y="655.50"></text></g><g><title>JavaThread::oops_do (61 samples, 0.01%)</title><rect x="19.5593%" y="629" width="0.0116%" height="15" fill="rgb(222,213,11)" fg:x="103119" fg:w="61"/><text x="19.8093%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (199 samples, 0.04%)</title><rect x="19.5407%" y="693" width="0.0377%" height="15" fill="rgb(235,35,13)" fg:x="103021" fg:w="199"/><text x="19.7907%" y="703.50"></text></g><g><title>G1ParTask::work (1,071 samples, 0.20%)</title><rect x="19.3757%" y="709" width="0.2031%" height="15" fill="rgb(233,158,34)" fg:x="102151" fg:w="1071"/><text x="19.6257%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (62 samples, 0.01%)</title><rect x="19.5794%" y="709" width="0.0118%" height="15" fill="rgb(215,151,48)" fg:x="103225" fg:w="62"/><text x="19.8294%" y="719.50"></text></g><g><title>GC_Thread#7 (1,273 samples, 0.24%)</title><rect x="19.3641%" y="805" width="0.2415%" height="15" fill="rgb(229,84,14)" fg:x="102090" fg:w="1273"/><text x="19.6141%" y="815.50"></text></g><g><title>__GI___clone (1,233 samples, 0.23%)</title><rect x="19.3717%" y="789" width="0.2339%" height="15" fill="rgb(229,68,14)" fg:x="102130" fg:w="1233"/><text x="19.6217%" y="799.50"></text></g><g><title>start_thread (1,233 samples, 0.23%)</title><rect x="19.3717%" y="773" width="0.2339%" height="15" fill="rgb(243,106,26)" fg:x="102130" fg:w="1233"/><text x="19.6217%" y="783.50"></text></g><g><title>thread_native_entry (1,233 samples, 0.23%)</title><rect x="19.3717%" y="757" width="0.2339%" height="15" fill="rgb(206,45,38)" fg:x="102130" fg:w="1233"/><text x="19.6217%" y="767.50"></text></g><g><title>Thread::call_run (1,233 samples, 0.23%)</title><rect x="19.3717%" y="741" width="0.2339%" height="15" fill="rgb(226,6,15)" fg:x="102130" fg:w="1233"/><text x="19.6217%" y="751.50"></text></g><g><title>GangWorker::loop (1,233 samples, 0.23%)</title><rect x="19.3717%" y="725" width="0.2339%" height="15" fill="rgb(232,22,54)" fg:x="102130" fg:w="1233"/><text x="19.6217%" y="735.50"></text></g><g><title>[perf-947659.map] (125 samples, 0.02%)</title><rect x="19.6096%" y="789" width="0.0237%" height="15" fill="rgb(229,222,32)" fg:x="103384" fg:w="125"/><text x="19.8596%" y="799.50"></text></g><g><title>Service_Thread (160 samples, 0.03%)</title><rect x="19.6079%" y="805" width="0.0303%" height="15" fill="rgb(228,62,29)" fg:x="103375" fg:w="160"/><text x="19.8579%" y="815.50"></text></g><g><title>futex_wait_queue_me (160 samples, 0.03%)</title><rect x="19.6619%" y="517" width="0.0303%" height="15" fill="rgb(251,103,34)" fg:x="103660" fg:w="160"/><text x="19.9119%" y="527.50"></text></g><g><title>schedule (128 samples, 0.02%)</title><rect x="19.6680%" y="501" width="0.0243%" height="15" fill="rgb(233,12,30)" fg:x="103692" fg:w="128"/><text x="19.9180%" y="511.50"></text></g><g><title>__schedule (124 samples, 0.02%)</title><rect x="19.6687%" y="485" width="0.0235%" height="15" fill="rgb(238,52,0)" fg:x="103696" fg:w="124"/><text x="19.9187%" y="495.50"></text></g><g><title>do_futex (195 samples, 0.04%)</title><rect x="19.6602%" y="549" width="0.0370%" height="15" fill="rgb(223,98,5)" fg:x="103651" fg:w="195"/><text x="19.9102%" y="559.50"></text></g><g><title>futex_wait (192 samples, 0.04%)</title><rect x="19.6608%" y="533" width="0.0364%" height="15" fill="rgb(228,75,37)" fg:x="103654" fg:w="192"/><text x="19.9108%" y="543.50"></text></g><g><title>do_syscall_64 (210 samples, 0.04%)</title><rect x="19.6587%" y="581" width="0.0398%" height="15" fill="rgb(205,115,49)" fg:x="103643" fg:w="210"/><text x="19.9087%" y="591.50"></text></g><g><title>__x64_sys_futex (209 samples, 0.04%)</title><rect x="19.6589%" y="565" width="0.0396%" height="15" fill="rgb(250,154,43)" fg:x="103644" fg:w="209"/><text x="19.9089%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (223 samples, 0.04%)</title><rect x="19.6581%" y="597" width="0.0423%" height="15" fill="rgb(226,43,29)" fg:x="103640" fg:w="223"/><text x="19.9081%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (254 samples, 0.05%)</title><rect x="19.6530%" y="645" width="0.0482%" height="15" fill="rgb(249,228,39)" fg:x="103613" fg:w="254"/><text x="19.9030%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (254 samples, 0.05%)</title><rect x="19.6530%" y="629" width="0.0482%" height="15" fill="rgb(216,79,43)" fg:x="103613" fg:w="254"/><text x="19.9030%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (247 samples, 0.05%)</title><rect x="19.6543%" y="613" width="0.0469%" height="15" fill="rgb(228,95,12)" fg:x="103620" fg:w="247"/><text x="19.9043%" y="623.50"></text></g><g><title>Monitor::wait (317 samples, 0.06%)</title><rect x="19.6467%" y="693" width="0.0601%" height="15" fill="rgb(249,221,15)" fg:x="103580" fg:w="317"/><text x="19.8967%" y="703.50"></text></g><g><title>Monitor::IWait (312 samples, 0.06%)</title><rect x="19.6477%" y="677" width="0.0592%" height="15" fill="rgb(233,34,13)" fg:x="103585" fg:w="312"/><text x="19.8977%" y="687.50"></text></g><g><title>os::PlatformEvent::park (296 samples, 0.06%)</title><rect x="19.6507%" y="661" width="0.0561%" height="15" fill="rgb(214,103,39)" fg:x="103601" fg:w="296"/><text x="19.9007%" y="671.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (121 samples, 0.02%)</title><rect x="19.7156%" y="645" width="0.0230%" height="15" fill="rgb(251,126,39)" fg:x="103943" fg:w="121"/><text x="19.9656%" y="655.50"></text></g><g><title>NMethodSweeper::process_compiled_method (160 samples, 0.03%)</title><rect x="19.7154%" y="661" width="0.0303%" height="15" fill="rgb(214,216,36)" fg:x="103942" fg:w="160"/><text x="19.9654%" y="671.50"></text></g><g><title>NMethodSweeper::possibly_sweep (215 samples, 0.04%)</title><rect x="19.7069%" y="693" width="0.0408%" height="15" fill="rgb(220,221,8)" fg:x="103897" fg:w="215"/><text x="19.9569%" y="703.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (194 samples, 0.04%)</title><rect x="19.7109%" y="677" width="0.0368%" height="15" fill="rgb(240,216,3)" fg:x="103918" fg:w="194"/><text x="19.9609%" y="687.50"></text></g><g><title>__GI___clone (564 samples, 0.11%)</title><rect x="19.6428%" y="789" width="0.1070%" height="15" fill="rgb(232,218,17)" fg:x="103559" fg:w="564"/><text x="19.8928%" y="799.50"></text></g><g><title>start_thread (564 samples, 0.11%)</title><rect x="19.6428%" y="773" width="0.1070%" height="15" fill="rgb(229,163,45)" fg:x="103559" fg:w="564"/><text x="19.8928%" y="783.50"></text></g><g><title>thread_native_entry (564 samples, 0.11%)</title><rect x="19.6428%" y="757" width="0.1070%" height="15" fill="rgb(231,110,42)" fg:x="103559" fg:w="564"/><text x="19.8928%" y="767.50"></text></g><g><title>Thread::call_run (564 samples, 0.11%)</title><rect x="19.6428%" y="741" width="0.1070%" height="15" fill="rgb(208,170,48)" fg:x="103559" fg:w="564"/><text x="19.8928%" y="751.50"></text></g><g><title>JavaThread::thread_main_inner (564 samples, 0.11%)</title><rect x="19.6428%" y="725" width="0.1070%" height="15" fill="rgb(239,116,25)" fg:x="103559" fg:w="564"/><text x="19.8928%" y="735.50"></text></g><g><title>NMethodSweeper::sweeper_loop (563 samples, 0.11%)</title><rect x="19.6430%" y="709" width="0.1068%" height="15" fill="rgb(219,200,50)" fg:x="103560" fg:w="563"/><text x="19.8930%" y="719.50"></text></g><g><title>Sweeper_thread (596 samples, 0.11%)</title><rect x="19.6382%" y="805" width="0.1130%" height="15" fill="rgb(245,200,0)" fg:x="103535" fg:w="596"/><text x="19.8882%" y="815.50"></text></g><g><title>JNU_ThrowByNameWithLastError (54 samples, 0.01%)</title><rect x="19.8256%" y="757" width="0.0102%" height="15" fill="rgb(245,119,33)" fg:x="104523" fg:w="54"/><text x="20.0756%" y="767.50"></text></g><g><title>Java_java_io_FileInputStream_available0 (60 samples, 0.01%)</title><rect x="19.8256%" y="773" width="0.0114%" height="15" fill="rgb(231,125,12)" fg:x="104523" fg:w="60"/><text x="20.0756%" y="783.50"></text></g><g><title>get_cpu_load (73 samples, 0.01%)</title><rect x="19.8480%" y="773" width="0.0138%" height="15" fill="rgb(216,96,41)" fg:x="104641" fg:w="73"/><text x="20.0980%" y="783.50"></text></g><g><title>get_cpuload_internal (73 samples, 0.01%)</title><rect x="19.8480%" y="757" width="0.0138%" height="15" fill="rgb(248,43,45)" fg:x="104641" fg:w="73"/><text x="20.0980%" y="767.50"></text></g><g><title>get_totalticks (73 samples, 0.01%)</title><rect x="19.8480%" y="741" width="0.0138%" height="15" fill="rgb(217,222,7)" fg:x="104641" fg:w="73"/><text x="20.0980%" y="751.50"></text></g><g><title>[perf-947659.map] (554 samples, 0.11%)</title><rect x="19.7587%" y="789" width="0.1051%" height="15" fill="rgb(233,28,6)" fg:x="104170" fg:w="554"/><text x="20.0087%" y="799.50"></text></g><g><title>Thread-0 (625 samples, 0.12%)</title><rect x="19.7513%" y="805" width="0.1185%" height="15" fill="rgb(231,218,15)" fg:x="104131" fg:w="625"/><text x="20.0013%" y="815.50"></text></g><g><title>do_futex (63 samples, 0.01%)</title><rect x="19.8903%" y="549" width="0.0119%" height="15" fill="rgb(226,171,48)" fg:x="104864" fg:w="63"/><text x="20.1403%" y="559.50"></text></g><g><title>futex_wait (61 samples, 0.01%)</title><rect x="19.8907%" y="533" width="0.0116%" height="15" fill="rgb(235,201,9)" fg:x="104866" fg:w="61"/><text x="20.1407%" y="543.50"></text></g><g><title>do_syscall_64 (66 samples, 0.01%)</title><rect x="19.8899%" y="581" width="0.0125%" height="15" fill="rgb(217,80,15)" fg:x="104862" fg:w="66"/><text x="20.1399%" y="591.50"></text></g><g><title>__x64_sys_futex (66 samples, 0.01%)</title><rect x="19.8899%" y="565" width="0.0125%" height="15" fill="rgb(219,152,8)" fg:x="104862" fg:w="66"/><text x="20.1399%" y="575.50"></text></g><g><title>__pthread_cond_timedwait (83 samples, 0.02%)</title><rect x="19.8871%" y="645" width="0.0157%" height="15" fill="rgb(243,107,38)" fg:x="104847" fg:w="83"/><text x="20.1371%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (80 samples, 0.02%)</title><rect x="19.8876%" y="629" width="0.0152%" height="15" fill="rgb(231,17,5)" fg:x="104850" fg:w="80"/><text x="20.1376%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (77 samples, 0.01%)</title><rect x="19.8882%" y="613" width="0.0146%" height="15" fill="rgb(209,25,54)" fg:x="104853" fg:w="77"/><text x="20.1382%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.01%)</title><rect x="19.8899%" y="597" width="0.0129%" height="15" fill="rgb(219,0,2)" fg:x="104862" fg:w="68"/><text x="20.1399%" y="607.50"></text></g><g><title>Monitor::wait (119 samples, 0.02%)</title><rect x="19.8831%" y="693" width="0.0226%" height="15" fill="rgb(246,9,5)" fg:x="104826" fg:w="119"/><text x="20.1331%" y="703.50"></text></g><g><title>Monitor::IWait (116 samples, 0.02%)</title><rect x="19.8837%" y="677" width="0.0220%" height="15" fill="rgb(226,159,4)" fg:x="104829" fg:w="116"/><text x="20.1337%" y="687.50"></text></g><g><title>os::PlatformEvent::park (106 samples, 0.02%)</title><rect x="19.8855%" y="661" width="0.0201%" height="15" fill="rgb(219,175,34)" fg:x="104839" fg:w="106"/><text x="20.1355%" y="671.50"></text></g><g><title>__GI___clone (168 samples, 0.03%)</title><rect x="19.8745%" y="789" width="0.0319%" height="15" fill="rgb(236,10,46)" fg:x="104781" fg:w="168"/><text x="20.1245%" y="799.50"></text></g><g><title>start_thread (168 samples, 0.03%)</title><rect x="19.8745%" y="773" width="0.0319%" height="15" fill="rgb(240,211,16)" fg:x="104781" fg:w="168"/><text x="20.1245%" y="783.50"></text></g><g><title>thread_native_entry (168 samples, 0.03%)</title><rect x="19.8745%" y="757" width="0.0319%" height="15" fill="rgb(205,3,43)" fg:x="104781" fg:w="168"/><text x="20.1245%" y="767.50"></text></g><g><title>Thread::call_run (168 samples, 0.03%)</title><rect x="19.8745%" y="741" width="0.0319%" height="15" fill="rgb(245,7,22)" fg:x="104781" fg:w="168"/><text x="20.1245%" y="751.50"></text></g><g><title>WatcherThread::run (168 samples, 0.03%)</title><rect x="19.8745%" y="725" width="0.0319%" height="15" fill="rgb(239,132,32)" fg:x="104781" fg:w="168"/><text x="20.1245%" y="735.50"></text></g><g><title>WatcherThread::sleep (127 samples, 0.02%)</title><rect x="19.8823%" y="709" width="0.0241%" height="15" fill="rgb(228,202,34)" fg:x="104822" fg:w="127"/><text x="20.1323%" y="719.50"></text></g><g><title>VM_Periodic_Tas (199 samples, 0.04%)</title><rect x="19.8698%" y="805" width="0.0377%" height="15" fill="rgb(254,200,22)" fg:x="104756" fg:w="199"/><text x="20.1198%" y="815.50"></text></g><g><title>[unknown] (77 samples, 0.01%)</title><rect x="19.9094%" y="789" width="0.0146%" height="15" fill="rgb(219,10,39)" fg:x="104965" fg:w="77"/><text x="20.1594%" y="799.50"></text></g><g><title>vframe::sender (72 samples, 0.01%)</title><rect x="19.9104%" y="773" width="0.0137%" height="15" fill="rgb(226,210,39)" fg:x="104970" fg:w="72"/><text x="20.1604%" y="783.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="19.9580%" y="549" width="0.0118%" height="15" fill="rgb(208,219,16)" fg:x="105221" fg:w="62"/><text x="20.2080%" y="559.50"></text></g><g><title>do_futex (61 samples, 0.01%)</title><rect x="19.9582%" y="533" width="0.0116%" height="15" fill="rgb(216,158,51)" fg:x="105222" fg:w="61"/><text x="20.2082%" y="543.50"></text></g><g><title>futex_wake (61 samples, 0.01%)</title><rect x="19.9582%" y="517" width="0.0116%" height="15" fill="rgb(233,14,44)" fg:x="105222" fg:w="61"/><text x="20.2082%" y="527.50"></text></g><g><title>wake_up_q (56 samples, 0.01%)</title><rect x="19.9591%" y="501" width="0.0106%" height="15" fill="rgb(237,97,39)" fg:x="105227" fg:w="56"/><text x="20.2091%" y="511.50"></text></g><g><title>try_to_wake_up (54 samples, 0.01%)</title><rect x="19.9595%" y="485" width="0.0102%" height="15" fill="rgb(218,198,43)" fg:x="105229" fg:w="54"/><text x="20.2095%" y="495.50"></text></g><g><title>PosixSemaphore::signal (66 samples, 0.01%)</title><rect x="19.9574%" y="629" width="0.0125%" height="15" fill="rgb(231,104,20)" fg:x="105218" fg:w="66"/><text x="20.2074%" y="639.50"></text></g><g><title>__new_sem_post (66 samples, 0.01%)</title><rect x="19.9574%" y="613" width="0.0125%" height="15" fill="rgb(254,36,13)" fg:x="105218" fg:w="66"/><text x="20.2074%" y="623.50"></text></g><g><title>futex_wake (66 samples, 0.01%)</title><rect x="19.9574%" y="597" width="0.0125%" height="15" fill="rgb(248,14,50)" fg:x="105218" fg:w="66"/><text x="20.2074%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.01%)</title><rect x="19.9578%" y="581" width="0.0121%" height="15" fill="rgb(217,107,29)" fg:x="105220" fg:w="64"/><text x="20.2078%" y="591.50"></text></g><g><title>do_syscall_64 (63 samples, 0.01%)</title><rect x="19.9580%" y="565" width="0.0119%" height="15" fill="rgb(251,169,33)" fg:x="105221" fg:w="63"/><text x="20.2080%" y="575.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (88 samples, 0.02%)</title><rect x="19.9559%" y="677" width="0.0167%" height="15" fill="rgb(217,108,32)" fg:x="105210" fg:w="88"/><text x="20.2059%" y="687.50"></text></g><g><title>WorkGang::run_task (82 samples, 0.02%)</title><rect x="19.9571%" y="661" width="0.0156%" height="15" fill="rgb(219,66,42)" fg:x="105216" fg:w="82"/><text x="20.2071%" y="671.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (80 samples, 0.02%)</title><rect x="19.9574%" y="645" width="0.0152%" height="15" fill="rgb(206,180,7)" fg:x="105218" fg:w="80"/><text x="20.2074%" y="655.50"></text></g><g><title>SafepointSynchronize::begin (253 samples, 0.05%)</title><rect x="19.9309%" y="693" width="0.0480%" height="15" fill="rgb(208,226,31)" fg:x="105078" fg:w="253"/><text x="20.1809%" y="703.50"></text></g><g><title>VM_Deoptimize::doit (64 samples, 0.01%)</title><rect x="19.9893%" y="661" width="0.0121%" height="15" fill="rgb(218,26,49)" fg:x="105386" fg:w="64"/><text x="20.2393%" y="671.50"></text></g><g><title>VM_Operation::evaluate (141 samples, 0.03%)</title><rect x="19.9853%" y="677" width="0.0267%" height="15" fill="rgb(233,197,48)" fg:x="105365" fg:w="141"/><text x="20.2353%" y="687.50"></text></g><g><title>VMThread::evaluate_operation (143 samples, 0.03%)</title><rect x="19.9853%" y="693" width="0.0271%" height="15" fill="rgb(252,181,51)" fg:x="105365" fg:w="143"/><text x="20.2353%" y="703.50"></text></g><g><title>__GI___clone (477 samples, 0.09%)</title><rect x="19.9241%" y="789" width="0.0905%" height="15" fill="rgb(253,90,19)" fg:x="105042" fg:w="477"/><text x="20.1741%" y="799.50"></text></g><g><title>start_thread (476 samples, 0.09%)</title><rect x="19.9242%" y="773" width="0.0903%" height="15" fill="rgb(215,171,30)" fg:x="105043" fg:w="476"/><text x="20.1742%" y="783.50"></text></g><g><title>thread_native_entry (476 samples, 0.09%)</title><rect x="19.9242%" y="757" width="0.0903%" height="15" fill="rgb(214,222,9)" fg:x="105043" fg:w="476"/><text x="20.1742%" y="767.50"></text></g><g><title>Thread::call_run (472 samples, 0.09%)</title><rect x="19.9250%" y="741" width="0.0895%" height="15" fill="rgb(223,3,22)" fg:x="105047" fg:w="472"/><text x="20.1750%" y="751.50"></text></g><g><title>VMThread::run (472 samples, 0.09%)</title><rect x="19.9250%" y="725" width="0.0895%" height="15" fill="rgb(225,196,46)" fg:x="105047" fg:w="472"/><text x="20.1750%" y="735.50"></text></g><g><title>VMThread::loop (472 samples, 0.09%)</title><rect x="19.9250%" y="709" width="0.0895%" height="15" fill="rgb(209,110,37)" fg:x="105047" fg:w="472"/><text x="20.1750%" y="719.50"></text></g><g><title>VM_Thread (567 samples, 0.11%)</title><rect x="19.9076%" y="805" width="0.1075%" height="15" fill="rgb(249,89,12)" fg:x="104955" fg:w="567"/><text x="20.1576%" y="815.50"></text></g><g><title>__x64_sys_epoll_pwait (62 samples, 0.01%)</title><rect x="20.0716%" y="741" width="0.0118%" height="15" fill="rgb(226,27,33)" fg:x="105820" fg:w="62"/><text x="20.3216%" y="751.50"></text></g><g><title>do_epoll_wait (62 samples, 0.01%)</title><rect x="20.0716%" y="725" width="0.0118%" height="15" fill="rgb(213,82,22)" fg:x="105820" fg:w="62"/><text x="20.3216%" y="735.50"></text></g><g><title>schedule_hrtimeout_range_clock (59 samples, 0.01%)</title><rect x="20.0722%" y="709" width="0.0112%" height="15" fill="rgb(248,140,0)" fg:x="105823" fg:w="59"/><text x="20.3222%" y="719.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="20.0729%" y="693" width="0.0104%" height="15" fill="rgb(228,106,3)" fg:x="105827" fg:w="55"/><text x="20.3229%" y="703.50"></text></g><g><title>__schedule (55 samples, 0.01%)</title><rect x="20.0729%" y="677" width="0.0104%" height="15" fill="rgb(209,23,37)" fg:x="105827" fg:w="55"/><text x="20.3229%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.01%)</title><rect x="20.0857%" y="629" width="0.0138%" height="15" fill="rgb(241,93,50)" fg:x="105894" fg:w="73"/><text x="20.3357%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.01%)</title><rect x="20.0858%" y="613" width="0.0137%" height="15" fill="rgb(253,46,43)" fg:x="105895" fg:w="72"/><text x="20.3358%" y="623.50"></text></g><g><title>native_write_msr (72 samples, 0.01%)</title><rect x="20.0858%" y="597" width="0.0137%" height="15" fill="rgb(226,206,43)" fg:x="105895" fg:w="72"/><text x="20.3358%" y="607.50"></text></g><g><title>finish_task_switch (80 samples, 0.02%)</title><rect x="20.0855%" y="645" width="0.0152%" height="15" fill="rgb(217,54,7)" fg:x="105893" fg:w="80"/><text x="20.3355%" y="655.50"></text></g><g><title>futex_wait_queue_me (94 samples, 0.02%)</title><rect x="20.0840%" y="693" width="0.0178%" height="15" fill="rgb(223,5,52)" fg:x="105885" fg:w="94"/><text x="20.3340%" y="703.50"></text></g><g><title>schedule (93 samples, 0.02%)</title><rect x="20.0841%" y="677" width="0.0176%" height="15" fill="rgb(206,52,46)" fg:x="105886" fg:w="93"/><text x="20.3341%" y="687.50"></text></g><g><title>__schedule (92 samples, 0.02%)</title><rect x="20.0843%" y="661" width="0.0175%" height="15" fill="rgb(253,136,11)" fg:x="105887" fg:w="92"/><text x="20.3343%" y="671.50"></text></g><g><title>futex_wait (98 samples, 0.02%)</title><rect x="20.0834%" y="709" width="0.0186%" height="15" fill="rgb(208,106,33)" fg:x="105882" fg:w="98"/><text x="20.3334%" y="719.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.02%)</title><rect x="20.0834%" y="741" width="0.0199%" height="15" fill="rgb(206,54,4)" fg:x="105882" fg:w="105"/><text x="20.3334%" y="751.50"></text></g><g><title>do_futex (105 samples, 0.02%)</title><rect x="20.0834%" y="725" width="0.0199%" height="15" fill="rgb(213,3,15)" fg:x="105882" fg:w="105"/><text x="20.3334%" y="735.50"></text></g><g><title>do_syscall_64 (241 samples, 0.05%)</title><rect x="20.0707%" y="757" width="0.0457%" height="15" fill="rgb(252,211,39)" fg:x="105815" fg:w="241"/><text x="20.3207%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (248 samples, 0.05%)</title><rect x="20.0707%" y="773" width="0.0470%" height="15" fill="rgb(223,6,36)" fg:x="105815" fg:w="248"/><text x="20.3207%" y="783.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (548 samples, 0.10%)</title><rect x="20.0215%" y="789" width="0.1039%" height="15" fill="rgb(252,169,45)" fg:x="105556" fg:w="548"/><text x="20.2715%" y="799.50"></text></g><g><title>bazel (605 samples, 0.11%)</title><rect x="20.0204%" y="805" width="0.1148%" height="15" fill="rgb(212,48,26)" fg:x="105550" fg:w="605"/><text x="20.2704%" y="815.50"></text></g><g><title>_dl_map_object_deps (61 samples, 0.01%)</title><rect x="20.1471%" y="709" width="0.0116%" height="15" fill="rgb(251,102,48)" fg:x="106218" fg:w="61"/><text x="20.3971%" y="719.50"></text></g><g><title>_dl_catch_exception (61 samples, 0.01%)</title><rect x="20.1471%" y="693" width="0.0116%" height="15" fill="rgb(243,208,16)" fg:x="106218" fg:w="61"/><text x="20.3971%" y="703.50"></text></g><g><title>openaux (61 samples, 0.01%)</title><rect x="20.1471%" y="677" width="0.0116%" height="15" fill="rgb(219,96,24)" fg:x="106218" fg:w="61"/><text x="20.3971%" y="687.50"></text></g><g><title>_dl_map_object (61 samples, 0.01%)</title><rect x="20.1471%" y="661" width="0.0116%" height="15" fill="rgb(219,33,29)" fg:x="106218" fg:w="61"/><text x="20.3971%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (63 samples, 0.01%)</title><rect x="20.1670%" y="661" width="0.0119%" height="15" fill="rgb(223,176,5)" fg:x="106323" fg:w="63"/><text x="20.4170%" y="671.50"></text></g><g><title>elf_machine_rela (85 samples, 0.02%)</title><rect x="20.1632%" y="677" width="0.0161%" height="15" fill="rgb(228,140,14)" fg:x="106303" fg:w="85"/><text x="20.4132%" y="687.50"></text></g><g><title>elf_dynamic_do_Rela (108 samples, 0.02%)</title><rect x="20.1604%" y="693" width="0.0205%" height="15" fill="rgb(217,179,31)" fg:x="106288" fg:w="108"/><text x="20.4104%" y="703.50"></text></g><g><title>_dl_relocate_object (121 samples, 0.02%)</title><rect x="20.1587%" y="709" width="0.0230%" height="15" fill="rgb(230,9,30)" fg:x="106279" fg:w="121"/><text x="20.4087%" y="719.50"></text></g><g><title>[ld-2.31.so] (185 samples, 0.04%)</title><rect x="20.1469%" y="725" width="0.0351%" height="15" fill="rgb(230,136,20)" fg:x="106217" fg:w="185"/><text x="20.3969%" y="735.50"></text></g><g><title>_start (205 samples, 0.04%)</title><rect x="20.1433%" y="789" width="0.0389%" height="15" fill="rgb(215,210,22)" fg:x="106198" fg:w="205"/><text x="20.3933%" y="799.50"></text></g><g><title>_dl_start (186 samples, 0.04%)</title><rect x="20.1469%" y="773" width="0.0353%" height="15" fill="rgb(218,43,5)" fg:x="106217" fg:w="186"/><text x="20.3969%" y="783.50"></text></g><g><title>_dl_start_final (186 samples, 0.04%)</title><rect x="20.1469%" y="757" width="0.0353%" height="15" fill="rgb(216,11,5)" fg:x="106217" fg:w="186"/><text x="20.3969%" y="767.50"></text></g><g><title>_dl_sysdep_start (186 samples, 0.04%)</title><rect x="20.1469%" y="741" width="0.0353%" height="15" fill="rgb(209,82,29)" fg:x="106217" fg:w="186"/><text x="20.3969%" y="751.50"></text></g><g><title>build-runfiles (292 samples, 0.06%)</title><rect x="20.1355%" y="805" width="0.0554%" height="15" fill="rgb(244,115,12)" fg:x="106157" fg:w="292"/><text x="20.3855%" y="815.50"></text></g><g><title>[dash] (67 samples, 0.01%)</title><rect x="20.2545%" y="469" width="0.0127%" height="15" fill="rgb(222,82,18)" fg:x="106784" fg:w="67"/><text x="20.5045%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.02%)</title><rect x="20.2689%" y="453" width="0.0154%" height="15" fill="rgb(249,227,8)" fg:x="106860" fg:w="81"/><text x="20.5189%" y="463.50"></text></g><g><title>do_syscall_64 (81 samples, 0.02%)</title><rect x="20.2689%" y="437" width="0.0154%" height="15" fill="rgb(253,141,45)" fg:x="106860" fg:w="81"/><text x="20.5189%" y="447.50"></text></g><g><title>ksys_write (80 samples, 0.02%)</title><rect x="20.2691%" y="421" width="0.0152%" height="15" fill="rgb(234,184,4)" fg:x="106861" fg:w="80"/><text x="20.5191%" y="431.50"></text></g><g><title>vfs_write (76 samples, 0.01%)</title><rect x="20.2698%" y="405" width="0.0144%" height="15" fill="rgb(218,194,23)" fg:x="106865" fg:w="76"/><text x="20.5198%" y="415.50"></text></g><g><title>__GI___libc_write (83 samples, 0.02%)</title><rect x="20.2687%" y="469" width="0.0157%" height="15" fill="rgb(235,66,41)" fg:x="106859" fg:w="83"/><text x="20.5187%" y="479.50"></text></g><g><title>alloc_bprm (90 samples, 0.02%)</title><rect x="20.2852%" y="389" width="0.0171%" height="15" fill="rgb(245,217,1)" fg:x="106946" fg:w="90"/><text x="20.5352%" y="399.50"></text></g><g><title>read_block_for_search.isra.0 (54 samples, 0.01%)</title><rect x="20.3417%" y="229" width="0.0102%" height="15" fill="rgb(229,91,1)" fg:x="107244" fg:w="54"/><text x="20.5917%" y="239.50"></text></g><g><title>btrfs_search_slot (127 samples, 0.02%)</title><rect x="20.3290%" y="245" width="0.0241%" height="15" fill="rgb(207,101,30)" fg:x="107177" fg:w="127"/><text x="20.5790%" y="255.50"></text></g><g><title>btrfs_lookup_xattr (142 samples, 0.03%)</title><rect x="20.3283%" y="261" width="0.0269%" height="15" fill="rgb(223,82,49)" fg:x="107173" fg:w="142"/><text x="20.5783%" y="271.50"></text></g><g><title>btrfs_getxattr (177 samples, 0.03%)</title><rect x="20.3233%" y="277" width="0.0336%" height="15" fill="rgb(218,167,17)" fg:x="107147" fg:w="177"/><text x="20.5733%" y="287.50"></text></g><g><title>get_vfs_caps_from_disk (187 samples, 0.04%)</title><rect x="20.3222%" y="309" width="0.0355%" height="15" fill="rgb(208,103,14)" fg:x="107141" fg:w="187"/><text x="20.5722%" y="319.50"></text></g><g><title>__vfs_getxattr (184 samples, 0.03%)</title><rect x="20.3228%" y="293" width="0.0349%" height="15" fill="rgb(238,20,8)" fg:x="107144" fg:w="184"/><text x="20.5728%" y="303.50"></text></g><g><title>security_bprm_creds_from_file (199 samples, 0.04%)</title><rect x="20.3201%" y="341" width="0.0377%" height="15" fill="rgb(218,80,54)" fg:x="107130" fg:w="199"/><text x="20.5701%" y="351.50"></text></g><g><title>cap_bprm_creds_from_file (197 samples, 0.04%)</title><rect x="20.3205%" y="325" width="0.0374%" height="15" fill="rgb(240,144,17)" fg:x="107132" fg:w="197"/><text x="20.5705%" y="335.50"></text></g><g><title>begin_new_exec (234 samples, 0.04%)</title><rect x="20.3150%" y="357" width="0.0444%" height="15" fill="rgb(245,27,50)" fg:x="107103" fg:w="234"/><text x="20.5650%" y="367.50"></text></g><g><title>do_open_execat (80 samples, 0.02%)</title><rect x="20.3649%" y="341" width="0.0152%" height="15" fill="rgb(251,51,7)" fg:x="107366" fg:w="80"/><text x="20.6149%" y="351.50"></text></g><g><title>do_filp_open (80 samples, 0.02%)</title><rect x="20.3649%" y="325" width="0.0152%" height="15" fill="rgb(245,217,29)" fg:x="107366" fg:w="80"/><text x="20.6149%" y="335.50"></text></g><g><title>path_openat (80 samples, 0.02%)</title><rect x="20.3649%" y="309" width="0.0152%" height="15" fill="rgb(221,176,29)" fg:x="107366" fg:w="80"/><text x="20.6149%" y="319.50"></text></g><g><title>open_exec (89 samples, 0.02%)</title><rect x="20.3647%" y="357" width="0.0169%" height="15" fill="rgb(212,180,24)" fg:x="107365" fg:w="89"/><text x="20.6147%" y="367.50"></text></g><g><title>load_elf_binary (369 samples, 0.07%)</title><rect x="20.3119%" y="373" width="0.0700%" height="15" fill="rgb(254,24,2)" fg:x="107087" fg:w="369"/><text x="20.5619%" y="383.50"></text></g><g><title>security_bprm_check (59 samples, 0.01%)</title><rect x="20.3994%" y="373" width="0.0112%" height="15" fill="rgb(230,100,2)" fg:x="107548" fg:w="59"/><text x="20.6494%" y="383.50"></text></g><g><title>tomoyo_bprm_check_security (59 samples, 0.01%)</title><rect x="20.3994%" y="357" width="0.0112%" height="15" fill="rgb(219,142,25)" fg:x="107548" fg:w="59"/><text x="20.6494%" y="367.50"></text></g><g><title>tomoyo_find_next_domain (57 samples, 0.01%)</title><rect x="20.3998%" y="341" width="0.0108%" height="15" fill="rgb(240,73,43)" fg:x="107550" fg:w="57"/><text x="20.6498%" y="351.50"></text></g><g><title>bprm_execve (593 samples, 0.11%)</title><rect x="20.3023%" y="389" width="0.1125%" height="15" fill="rgb(214,114,15)" fg:x="107036" fg:w="593"/><text x="20.5523%" y="399.50"></text></g><g><title>__get_user_pages_remote (166 samples, 0.03%)</title><rect x="20.4155%" y="357" width="0.0315%" height="15" fill="rgb(207,130,4)" fg:x="107633" fg:w="166"/><text x="20.6655%" y="367.50"></text></g><g><title>__get_user_pages (164 samples, 0.03%)</title><rect x="20.4159%" y="341" width="0.0311%" height="15" fill="rgb(221,25,40)" fg:x="107635" fg:w="164"/><text x="20.6659%" y="351.50"></text></g><g><title>handle_mm_fault (139 samples, 0.03%)</title><rect x="20.4206%" y="325" width="0.0264%" height="15" fill="rgb(241,184,7)" fg:x="107660" fg:w="139"/><text x="20.6706%" y="335.50"></text></g><g><title>get_arg_page (171 samples, 0.03%)</title><rect x="20.4151%" y="373" width="0.0324%" height="15" fill="rgb(235,159,4)" fg:x="107631" fg:w="171"/><text x="20.6651%" y="383.50"></text></g><g><title>copy_string_kernel (176 samples, 0.03%)</title><rect x="20.4147%" y="389" width="0.0334%" height="15" fill="rgb(214,87,48)" fg:x="107629" fg:w="176"/><text x="20.6647%" y="399.50"></text></g><g><title>copy_strings.isra.0 (124 samples, 0.02%)</title><rect x="20.4481%" y="389" width="0.0235%" height="15" fill="rgb(246,198,24)" fg:x="107805" fg:w="124"/><text x="20.6981%" y="399.50"></text></g><g><title>do_execveat_common (994 samples, 0.19%)</title><rect x="20.2846%" y="405" width="0.1885%" height="15" fill="rgb(209,66,40)" fg:x="106943" fg:w="994"/><text x="20.5346%" y="415.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,003 samples, 0.19%)</title><rect x="20.2846%" y="453" width="0.1902%" height="15" fill="rgb(233,147,39)" fg:x="106943" fg:w="1003"/><text x="20.5346%" y="463.50"></text></g><g><title>do_syscall_64 (1,003 samples, 0.19%)</title><rect x="20.2846%" y="437" width="0.1902%" height="15" fill="rgb(231,145,52)" fg:x="106943" fg:w="1003"/><text x="20.5346%" y="447.50"></text></g><g><title>__x64_sys_execve (1,003 samples, 0.19%)</title><rect x="20.2846%" y="421" width="0.1902%" height="15" fill="rgb(206,20,26)" fg:x="106943" fg:w="1003"/><text x="20.5346%" y="431.50"></text></g><g><title>__GI_execve (1,006 samples, 0.19%)</title><rect x="20.2844%" y="469" width="0.1908%" height="15" fill="rgb(238,220,4)" fg:x="106942" fg:w="1006"/><text x="20.5344%" y="479.50"></text></g><g><title>[dash] (1,202 samples, 0.23%)</title><rect x="20.2520%" y="485" width="0.2280%" height="15" fill="rgb(252,195,42)" fg:x="106771" fg:w="1202"/><text x="20.5020%" y="495.50"></text></g><g><title>__GI___libc_free (67 samples, 0.01%)</title><rect x="20.4806%" y="485" width="0.0127%" height="15" fill="rgb(209,10,6)" fg:x="107976" fg:w="67"/><text x="20.7306%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (198 samples, 0.04%)</title><rect x="20.5043%" y="357" width="0.0376%" height="15" fill="rgb(229,3,52)" fg:x="108101" fg:w="198"/><text x="20.7543%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (193 samples, 0.04%)</title><rect x="20.5052%" y="341" width="0.0366%" height="15" fill="rgb(253,49,37)" fg:x="108106" fg:w="193"/><text x="20.7552%" y="351.50"></text></g><g><title>native_write_msr (192 samples, 0.04%)</title><rect x="20.5054%" y="325" width="0.0364%" height="15" fill="rgb(240,103,49)" fg:x="108107" fg:w="192"/><text x="20.7554%" y="335.50"></text></g><g><title>finish_task_switch (206 samples, 0.04%)</title><rect x="20.5039%" y="373" width="0.0391%" height="15" fill="rgb(250,182,30)" fg:x="108099" fg:w="206"/><text x="20.7539%" y="383.50"></text></g><g><title>schedule (224 samples, 0.04%)</title><rect x="20.5026%" y="405" width="0.0425%" height="15" fill="rgb(248,8,30)" fg:x="108092" fg:w="224"/><text x="20.7526%" y="415.50"></text></g><g><title>__schedule (224 samples, 0.04%)</title><rect x="20.5026%" y="389" width="0.0425%" height="15" fill="rgb(237,120,30)" fg:x="108092" fg:w="224"/><text x="20.7526%" y="399.50"></text></g><g><title>do_syscall_64 (272 samples, 0.05%)</title><rect x="20.5011%" y="453" width="0.0516%" height="15" fill="rgb(221,146,34)" fg:x="108084" fg:w="272"/><text x="20.7511%" y="463.50"></text></g><g><title>kernel_wait4 (267 samples, 0.05%)</title><rect x="20.5020%" y="437" width="0.0506%" height="15" fill="rgb(242,55,13)" fg:x="108089" fg:w="267"/><text x="20.7520%" y="447.50"></text></g><g><title>do_wait (267 samples, 0.05%)</title><rect x="20.5020%" y="421" width="0.0506%" height="15" fill="rgb(242,112,31)" fg:x="108089" fg:w="267"/><text x="20.7520%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (283 samples, 0.05%)</title><rect x="20.5011%" y="469" width="0.0537%" height="15" fill="rgb(249,192,27)" fg:x="108084" fg:w="283"/><text x="20.7511%" y="479.50"></text></g><g><title>__GI___wait4 (291 samples, 0.06%)</title><rect x="20.5005%" y="485" width="0.0552%" height="15" fill="rgb(208,204,44)" fg:x="108081" fg:w="291"/><text x="20.7505%" y="495.50"></text></g><g><title>handle_mm_fault (163 samples, 0.03%)</title><rect x="20.5828%" y="405" width="0.0309%" height="15" fill="rgb(208,93,54)" fg:x="108515" fg:w="163"/><text x="20.8328%" y="415.50"></text></g><g><title>wp_page_copy (121 samples, 0.02%)</title><rect x="20.5908%" y="389" width="0.0230%" height="15" fill="rgb(242,1,31)" fg:x="108557" fg:w="121"/><text x="20.8408%" y="399.50"></text></g><g><title>exc_page_fault (196 samples, 0.04%)</title><rect x="20.5771%" y="437" width="0.0372%" height="15" fill="rgb(241,83,25)" fg:x="108485" fg:w="196"/><text x="20.8271%" y="447.50"></text></g><g><title>do_user_addr_fault (196 samples, 0.04%)</title><rect x="20.5771%" y="421" width="0.0372%" height="15" fill="rgb(205,169,50)" fg:x="108485" fg:w="196"/><text x="20.8271%" y="431.50"></text></g><g><title>asm_exc_page_fault (198 samples, 0.04%)</title><rect x="20.5769%" y="453" width="0.0376%" height="15" fill="rgb(239,186,37)" fg:x="108484" fg:w="198"/><text x="20.8269%" y="463.50"></text></g><g><title>_int_free (320 samples, 0.06%)</title><rect x="20.5587%" y="485" width="0.0607%" height="15" fill="rgb(205,221,10)" fg:x="108388" fg:w="320"/><text x="20.8087%" y="495.50"></text></g><g><title>tcache_put (275 samples, 0.05%)</title><rect x="20.5672%" y="469" width="0.0522%" height="15" fill="rgb(218,196,15)" fg:x="108433" fg:w="275"/><text x="20.8172%" y="479.50"></text></g><g><title>[dash] (2,055 samples, 0.39%)</title><rect x="20.2482%" y="501" width="0.3898%" height="15" fill="rgb(218,196,35)" fg:x="106751" fg:w="2055"/><text x="20.4982%" y="511.50"></text></g><g><title>asm_exc_page_fault (77 samples, 0.01%)</title><rect x="20.6420%" y="485" width="0.0146%" height="15" fill="rgb(233,63,24)" fg:x="108827" fg:w="77"/><text x="20.8920%" y="495.50"></text></g><g><title>exc_page_fault (77 samples, 0.01%)</title><rect x="20.6420%" y="469" width="0.0146%" height="15" fill="rgb(225,8,4)" fg:x="108827" fg:w="77"/><text x="20.8920%" y="479.50"></text></g><g><title>do_user_addr_fault (76 samples, 0.01%)</title><rect x="20.6422%" y="453" width="0.0144%" height="15" fill="rgb(234,105,35)" fg:x="108828" fg:w="76"/><text x="20.8922%" y="463.50"></text></g><g><title>handle_mm_fault (64 samples, 0.01%)</title><rect x="20.6444%" y="437" width="0.0121%" height="15" fill="rgb(236,21,32)" fg:x="108840" fg:w="64"/><text x="20.8944%" y="447.50"></text></g><g><title>filemap_map_pages (59 samples, 0.01%)</title><rect x="20.6454%" y="421" width="0.0112%" height="15" fill="rgb(228,109,6)" fg:x="108845" fg:w="59"/><text x="20.8954%" y="431.50"></text></g><g><title>__longjmp_chk (87 samples, 0.02%)</title><rect x="20.6408%" y="501" width="0.0165%" height="15" fill="rgb(229,215,31)" fg:x="108821" fg:w="87"/><text x="20.8908%" y="511.50"></text></g><g><title>[dash] (2,218 samples, 0.42%)</title><rect x="20.2444%" y="517" width="0.4207%" height="15" fill="rgb(221,52,54)" fg:x="106731" fg:w="2218"/><text x="20.4944%" y="527.50"></text></g><g><title>filemap_map_pages (84 samples, 0.02%)</title><rect x="20.6911%" y="421" width="0.0159%" height="15" fill="rgb(252,129,43)" fg:x="109086" fg:w="84"/><text x="20.9411%" y="431.50"></text></g><g><title>exc_page_fault (133 samples, 0.03%)</title><rect x="20.6856%" y="469" width="0.0252%" height="15" fill="rgb(248,183,27)" fg:x="109057" fg:w="133"/><text x="20.9356%" y="479.50"></text></g><g><title>do_user_addr_fault (132 samples, 0.03%)</title><rect x="20.6858%" y="453" width="0.0250%" height="15" fill="rgb(250,0,22)" fg:x="109058" fg:w="132"/><text x="20.9358%" y="463.50"></text></g><g><title>handle_mm_fault (119 samples, 0.02%)</title><rect x="20.6883%" y="437" width="0.0226%" height="15" fill="rgb(213,166,10)" fg:x="109071" fg:w="119"/><text x="20.9383%" y="447.50"></text></g><g><title>asm_exc_page_fault (135 samples, 0.03%)</title><rect x="20.6856%" y="485" width="0.0256%" height="15" fill="rgb(207,163,36)" fg:x="109057" fg:w="135"/><text x="20.9356%" y="495.50"></text></g><g><title>memcg_slab_post_alloc_hook (58 samples, 0.01%)</title><rect x="20.8123%" y="341" width="0.0110%" height="15" fill="rgb(208,122,22)" fg:x="109725" fg:w="58"/><text x="21.0623%" y="351.50"></text></g><g><title>kmem_cache_alloc (153 samples, 0.03%)</title><rect x="20.8059%" y="357" width="0.0290%" height="15" fill="rgb(207,104,49)" fg:x="109691" fg:w="153"/><text x="21.0559%" y="367.50"></text></g><g><title>anon_vma_clone (258 samples, 0.05%)</title><rect x="20.7875%" y="373" width="0.0489%" height="15" fill="rgb(248,211,50)" fg:x="109594" fg:w="258"/><text x="21.0375%" y="383.50"></text></g><g><title>kmem_cache_alloc (134 samples, 0.03%)</title><rect x="20.8381%" y="373" width="0.0254%" height="15" fill="rgb(217,13,45)" fg:x="109861" fg:w="134"/><text x="21.0881%" y="383.50"></text></g><g><title>anon_vma_fork (422 samples, 0.08%)</title><rect x="20.7848%" y="389" width="0.0800%" height="15" fill="rgb(211,216,49)" fg:x="109580" fg:w="422"/><text x="21.0348%" y="399.50"></text></g><g><title>__alloc_pages_nodemask (53 samples, 0.01%)</title><rect x="20.8886%" y="357" width="0.0101%" height="15" fill="rgb(221,58,53)" fg:x="110127" fg:w="53"/><text x="21.1386%" y="367.50"></text></g><g><title>__pmd_alloc (60 samples, 0.01%)</title><rect x="20.8884%" y="373" width="0.0114%" height="15" fill="rgb(220,112,41)" fg:x="110126" fg:w="60"/><text x="21.1384%" y="383.50"></text></g><g><title>__alloc_pages_nodemask (75 samples, 0.01%)</title><rect x="20.9018%" y="341" width="0.0142%" height="15" fill="rgb(236,38,28)" fg:x="110197" fg:w="75"/><text x="21.1518%" y="351.50"></text></g><g><title>get_page_from_freelist (61 samples, 0.01%)</title><rect x="20.9045%" y="325" width="0.0116%" height="15" fill="rgb(227,195,22)" fg:x="110211" fg:w="61"/><text x="21.1545%" y="335.50"></text></g><g><title>__pte_alloc (89 samples, 0.02%)</title><rect x="20.8998%" y="373" width="0.0169%" height="15" fill="rgb(214,55,33)" fg:x="110186" fg:w="89"/><text x="21.1498%" y="383.50"></text></g><g><title>pte_alloc_one (80 samples, 0.02%)</title><rect x="20.9015%" y="357" width="0.0152%" height="15" fill="rgb(248,80,13)" fg:x="110195" fg:w="80"/><text x="21.1515%" y="367.50"></text></g><g><title>__alloc_pages_nodemask (54 samples, 0.01%)</title><rect x="20.9183%" y="341" width="0.0102%" height="15" fill="rgb(238,52,6)" fg:x="110284" fg:w="54"/><text x="21.1683%" y="351.50"></text></g><g><title>__pud_alloc (67 samples, 0.01%)</title><rect x="20.9166%" y="373" width="0.0127%" height="15" fill="rgb(224,198,47)" fg:x="110275" fg:w="67"/><text x="21.1666%" y="383.50"></text></g><g><title>get_zeroed_page (59 samples, 0.01%)</title><rect x="20.9182%" y="357" width="0.0112%" height="15" fill="rgb(233,171,20)" fg:x="110283" fg:w="59"/><text x="21.1682%" y="367.50"></text></g><g><title>copy_page_range (357 samples, 0.07%)</title><rect x="20.8649%" y="389" width="0.0677%" height="15" fill="rgb(241,30,25)" fg:x="110002" fg:w="357"/><text x="21.1149%" y="399.50"></text></g><g><title>memcg_slab_post_alloc_hook (59 samples, 0.01%)</title><rect x="20.9800%" y="357" width="0.0112%" height="15" fill="rgb(207,171,38)" fg:x="110609" fg:w="59"/><text x="21.2300%" y="367.50"></text></g><g><title>vm_area_dup (269 samples, 0.05%)</title><rect x="20.9521%" y="389" width="0.0510%" height="15" fill="rgb(234,70,1)" fg:x="110462" fg:w="269"/><text x="21.2021%" y="399.50"></text></g><g><title>kmem_cache_alloc (192 samples, 0.04%)</title><rect x="20.9667%" y="373" width="0.0364%" height="15" fill="rgb(232,178,18)" fg:x="110539" fg:w="192"/><text x="21.2167%" y="383.50"></text></g><g><title>dup_mm (1,287 samples, 0.24%)</title><rect x="20.7620%" y="405" width="0.2441%" height="15" fill="rgb(241,78,40)" fg:x="109460" fg:w="1287"/><text x="21.0120%" y="415.50"></text></g><g><title>kmem_cache_alloc_node (56 samples, 0.01%)</title><rect x="21.0132%" y="405" width="0.0106%" height="15" fill="rgb(222,35,25)" fg:x="110784" fg:w="56"/><text x="21.2632%" y="415.50"></text></g><g><title>allocate_fake_cpuc (59 samples, 0.01%)</title><rect x="21.0585%" y="309" width="0.0112%" height="15" fill="rgb(207,92,16)" fg:x="111023" fg:w="59"/><text x="21.3085%" y="319.50"></text></g><g><title>perf_try_init_event (105 samples, 0.02%)</title><rect x="21.0579%" y="341" width="0.0199%" height="15" fill="rgb(216,59,51)" fg:x="111020" fg:w="105"/><text x="21.3079%" y="351.50"></text></g><g><title>x86_pmu_event_init (103 samples, 0.02%)</title><rect x="21.0583%" y="325" width="0.0195%" height="15" fill="rgb(213,80,28)" fg:x="111022" fg:w="103"/><text x="21.3083%" y="335.50"></text></g><g><title>perf_event_alloc (189 samples, 0.04%)</title><rect x="21.0422%" y="357" width="0.0358%" height="15" fill="rgb(220,93,7)" fg:x="110937" fg:w="189"/><text x="21.2922%" y="367.50"></text></g><g><title>inherit_task_group.isra.0 (248 samples, 0.05%)</title><rect x="21.0316%" y="389" width="0.0470%" height="15" fill="rgb(225,24,44)" fg:x="110881" fg:w="248"/><text x="21.2816%" y="399.50"></text></g><g><title>inherit_event.constprop.0 (233 samples, 0.04%)</title><rect x="21.0344%" y="373" width="0.0442%" height="15" fill="rgb(243,74,40)" fg:x="110896" fg:w="233"/><text x="21.2844%" y="383.50"></text></g><g><title>perf_event_init_task (265 samples, 0.05%)</title><rect x="21.0301%" y="405" width="0.0503%" height="15" fill="rgb(228,39,7)" fg:x="110873" fg:w="265"/><text x="21.2801%" y="415.50"></text></g><g><title>copy_process (1,977 samples, 0.37%)</title><rect x="20.7125%" y="421" width="0.3750%" height="15" fill="rgb(227,79,8)" fg:x="109199" fg:w="1977"/><text x="20.9625%" y="431.50"></text></g><g><title>__do_sys_clone (2,032 samples, 0.39%)</title><rect x="20.7116%" y="453" width="0.3854%" height="15" fill="rgb(236,58,11)" fg:x="109194" fg:w="2032"/><text x="20.9616%" y="463.50"></text></g><g><title>kernel_clone (2,028 samples, 0.38%)</title><rect x="20.7124%" y="437" width="0.3847%" height="15" fill="rgb(249,63,35)" fg:x="109198" fg:w="2028"/><text x="20.9624%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,034 samples, 0.39%)</title><rect x="20.7114%" y="485" width="0.3858%" height="15" fill="rgb(252,114,16)" fg:x="109193" fg:w="2034"/><text x="20.9614%" y="495.50"></text></g><g><title>do_syscall_64 (2,034 samples, 0.39%)</title><rect x="20.7114%" y="469" width="0.3858%" height="15" fill="rgb(254,151,24)" fg:x="109193" fg:w="2034"/><text x="20.9614%" y="479.50"></text></g><g><title>exc_page_fault (90 samples, 0.02%)</title><rect x="21.1120%" y="421" width="0.0171%" height="15" fill="rgb(253,54,39)" fg:x="111305" fg:w="90"/><text x="21.3620%" y="431.50"></text></g><g><title>do_user_addr_fault (90 samples, 0.02%)</title><rect x="21.1120%" y="405" width="0.0171%" height="15" fill="rgb(243,25,45)" fg:x="111305" fg:w="90"/><text x="21.3620%" y="415.50"></text></g><g><title>handle_mm_fault (67 samples, 0.01%)</title><rect x="21.1164%" y="389" width="0.0127%" height="15" fill="rgb(234,134,9)" fg:x="111328" fg:w="67"/><text x="21.3664%" y="399.50"></text></g><g><title>asm_exc_page_fault (117 samples, 0.02%)</title><rect x="21.1071%" y="437" width="0.0222%" height="15" fill="rgb(227,166,31)" fg:x="111279" fg:w="117"/><text x="21.3571%" y="447.50"></text></g><g><title>__put_user_nocheck_4 (125 samples, 0.02%)</title><rect x="21.1057%" y="453" width="0.0237%" height="15" fill="rgb(245,143,41)" fg:x="111272" fg:w="125"/><text x="21.3557%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (3,080 samples, 0.58%)</title><rect x="21.1596%" y="437" width="0.5842%" height="15" fill="rgb(238,181,32)" fg:x="111556" fg:w="3080"/><text x="21.4096%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,991 samples, 0.57%)</title><rect x="21.1765%" y="421" width="0.5673%" height="15" fill="rgb(224,113,18)" fg:x="111645" fg:w="2991"/><text x="21.4265%" y="431.50"></text></g><g><title>native_write_msr (2,973 samples, 0.56%)</title><rect x="21.1799%" y="405" width="0.5639%" height="15" fill="rgb(240,229,28)" fg:x="111663" fg:w="2973"/><text x="21.4299%" y="415.50"></text></g><g><title>schedule_tail (3,414 samples, 0.65%)</title><rect x="21.1052%" y="469" width="0.6476%" height="15" fill="rgb(250,185,3)" fg:x="111269" fg:w="3414"/><text x="21.3552%" y="479.50"></text></g><g><title>finish_task_switch (3,268 samples, 0.62%)</title><rect x="21.1329%" y="453" width="0.6199%" height="15" fill="rgb(212,59,25)" fg:x="111415" fg:w="3268"/><text x="21.3829%" y="463.50"></text></g><g><title>ret_from_fork (3,440 samples, 0.65%)</title><rect x="21.1029%" y="485" width="0.6525%" height="15" fill="rgb(221,87,20)" fg:x="111257" fg:w="3440"/><text x="21.3529%" y="495.50"></text></g><g><title>arch_fork (5,661 samples, 1.07%)</title><rect x="20.6820%" y="501" width="1.0738%" height="15" fill="rgb(213,74,28)" fg:x="109038" fg:w="5661"/><text x="20.9320%" y="511.50"></text></g><g><title>exc_page_fault (75 samples, 0.01%)</title><rect x="21.7558%" y="485" width="0.0142%" height="15" fill="rgb(224,132,34)" fg:x="114699" fg:w="75"/><text x="22.0058%" y="495.50"></text></g><g><title>do_user_addr_fault (75 samples, 0.01%)</title><rect x="21.7558%" y="469" width="0.0142%" height="15" fill="rgb(222,101,24)" fg:x="114699" fg:w="75"/><text x="22.0058%" y="479.50"></text></g><g><title>handle_mm_fault (65 samples, 0.01%)</title><rect x="21.7577%" y="453" width="0.0123%" height="15" fill="rgb(254,142,4)" fg:x="114709" fg:w="65"/><text x="22.0077%" y="463.50"></text></g><g><title>asm_exc_page_fault (78 samples, 0.01%)</title><rect x="21.7558%" y="501" width="0.0148%" height="15" fill="rgb(230,229,49)" fg:x="114699" fg:w="78"/><text x="22.0058%" y="511.50"></text></g><g><title>__libc_fork (5,799 samples, 1.10%)</title><rect x="20.6723%" y="517" width="1.0999%" height="15" fill="rgb(238,70,47)" fg:x="108987" fg:w="5799"/><text x="20.9223%" y="527.50"></text></g><g><title>asm_exc_page_fault (57 samples, 0.01%)</title><rect x="21.7726%" y="517" width="0.0108%" height="15" fill="rgb(231,160,17)" fg:x="114788" fg:w="57"/><text x="22.0226%" y="527.50"></text></g><g><title>exc_page_fault (56 samples, 0.01%)</title><rect x="21.7728%" y="501" width="0.0106%" height="15" fill="rgb(218,68,53)" fg:x="114789" fg:w="56"/><text x="22.0228%" y="511.50"></text></g><g><title>do_user_addr_fault (56 samples, 0.01%)</title><rect x="21.7728%" y="485" width="0.0106%" height="15" fill="rgb(236,111,10)" fg:x="114789" fg:w="56"/><text x="22.0228%" y="495.50"></text></g><g><title>[dash] (8,136 samples, 1.54%)</title><rect x="20.2416%" y="533" width="1.5432%" height="15" fill="rgb(224,34,41)" fg:x="106716" fg:w="8136"/><text x="20.4916%" y="543.50"></text></g><g><title>asm_exc_page_fault (69 samples, 0.01%)</title><rect x="21.7882%" y="517" width="0.0131%" height="15" fill="rgb(241,118,19)" fg:x="114870" fg:w="69"/><text x="22.0382%" y="527.50"></text></g><g><title>exc_page_fault (67 samples, 0.01%)</title><rect x="21.7886%" y="501" width="0.0127%" height="15" fill="rgb(238,129,25)" fg:x="114872" fg:w="67"/><text x="22.0386%" y="511.50"></text></g><g><title>do_user_addr_fault (66 samples, 0.01%)</title><rect x="21.7888%" y="485" width="0.0125%" height="15" fill="rgb(238,22,31)" fg:x="114873" fg:w="66"/><text x="22.0388%" y="495.50"></text></g><g><title>handle_mm_fault (65 samples, 0.01%)</title><rect x="21.7890%" y="469" width="0.0123%" height="15" fill="rgb(222,174,48)" fg:x="114874" fg:w="65"/><text x="22.0390%" y="479.50"></text></g><g><title>__GI___close (120 samples, 0.02%)</title><rect x="21.7848%" y="533" width="0.0228%" height="15" fill="rgb(206,152,40)" fg:x="114852" fg:w="120"/><text x="22.0348%" y="543.50"></text></g><g><title>handle_mm_fault (84 samples, 0.02%)</title><rect x="21.8098%" y="469" width="0.0159%" height="15" fill="rgb(218,99,54)" fg:x="114984" fg:w="84"/><text x="22.0598%" y="479.50"></text></g><g><title>filemap_map_pages (80 samples, 0.02%)</title><rect x="21.8106%" y="453" width="0.0152%" height="15" fill="rgb(220,174,26)" fg:x="114988" fg:w="80"/><text x="22.0606%" y="463.50"></text></g><g><title>asm_exc_page_fault (92 samples, 0.02%)</title><rect x="21.8085%" y="517" width="0.0175%" height="15" fill="rgb(245,116,9)" fg:x="114977" fg:w="92"/><text x="22.0585%" y="527.50"></text></g><g><title>exc_page_fault (92 samples, 0.02%)</title><rect x="21.8085%" y="501" width="0.0175%" height="15" fill="rgb(209,72,35)" fg:x="114977" fg:w="92"/><text x="22.0585%" y="511.50"></text></g><g><title>do_user_addr_fault (92 samples, 0.02%)</title><rect x="21.8085%" y="485" width="0.0175%" height="15" fill="rgb(226,126,21)" fg:x="114977" fg:w="92"/><text x="22.0585%" y="495.50"></text></g><g><title>__GI___dup2 (140 samples, 0.03%)</title><rect x="21.8075%" y="533" width="0.0266%" height="15" fill="rgb(227,192,1)" fg:x="114972" fg:w="140"/><text x="22.0575%" y="543.50"></text></g><g><title>alloc_file_pseudo (85 samples, 0.02%)</title><rect x="21.8430%" y="437" width="0.0161%" height="15" fill="rgb(237,180,29)" fg:x="115159" fg:w="85"/><text x="22.0930%" y="447.50"></text></g><g><title>create_pipe_files (187 samples, 0.04%)</title><rect x="21.8385%" y="453" width="0.0355%" height="15" fill="rgb(230,197,35)" fg:x="115135" fg:w="187"/><text x="22.0885%" y="463.50"></text></g><g><title>do_syscall_64 (205 samples, 0.04%)</title><rect x="21.8352%" y="501" width="0.0389%" height="15" fill="rgb(246,193,31)" fg:x="115118" fg:w="205"/><text x="22.0852%" y="511.50"></text></g><g><title>__x64_sys_pipe (204 samples, 0.04%)</title><rect x="21.8354%" y="485" width="0.0387%" height="15" fill="rgb(241,36,4)" fg:x="115119" fg:w="204"/><text x="22.0854%" y="495.50"></text></g><g><title>do_pipe2 (204 samples, 0.04%)</title><rect x="21.8354%" y="469" width="0.0387%" height="15" fill="rgb(241,130,17)" fg:x="115119" fg:w="204"/><text x="22.0854%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (209 samples, 0.04%)</title><rect x="21.8347%" y="517" width="0.0396%" height="15" fill="rgb(206,137,32)" fg:x="115115" fg:w="209"/><text x="22.0847%" y="527.50"></text></g><g><title>__GI_pipe (214 samples, 0.04%)</title><rect x="21.8341%" y="533" width="0.0406%" height="15" fill="rgb(237,228,51)" fg:x="115112" fg:w="214"/><text x="22.0841%" y="543.50"></text></g><g><title>[dash] (8,631 samples, 1.64%)</title><rect x="20.2385%" y="549" width="1.6371%" height="15" fill="rgb(243,6,42)" fg:x="106700" fg:w="8631"/><text x="20.4885%" y="559.50"></text></g><g><title>__strcspn_sse42 (97 samples, 0.02%)</title><rect x="21.8775%" y="549" width="0.0184%" height="15" fill="rgb(251,74,28)" fg:x="115341" fg:w="97"/><text x="22.1275%" y="559.50"></text></g><g><title>[dash] (8,755 samples, 1.66%)</title><rect x="20.2368%" y="565" width="1.6606%" height="15" fill="rgb(218,20,49)" fg:x="106691" fg:w="8755"/><text x="20.4868%" y="575.50"></text></g><g><title>handle_mm_fault (58 samples, 0.01%)</title><rect x="21.9073%" y="517" width="0.0110%" height="15" fill="rgb(238,28,14)" fg:x="115498" fg:w="58"/><text x="22.1573%" y="527.50"></text></g><g><title>exc_page_fault (84 samples, 0.02%)</title><rect x="21.9026%" y="549" width="0.0159%" height="15" fill="rgb(229,40,46)" fg:x="115473" fg:w="84"/><text x="22.1526%" y="559.50"></text></g><g><title>do_user_addr_fault (82 samples, 0.02%)</title><rect x="21.9030%" y="533" width="0.0156%" height="15" fill="rgb(244,195,20)" fg:x="115475" fg:w="82"/><text x="22.1530%" y="543.50"></text></g><g><title>asm_exc_page_fault (85 samples, 0.02%)</title><rect x="21.9026%" y="565" width="0.0161%" height="15" fill="rgb(253,56,35)" fg:x="115473" fg:w="85"/><text x="22.1526%" y="575.50"></text></g><g><title>[dash] (8,918 samples, 1.69%)</title><rect x="20.2279%" y="581" width="1.6915%" height="15" fill="rgb(210,149,44)" fg:x="106644" fg:w="8918"/><text x="20.4779%" y="591.50"></text></g><g><title>[dash] (9,045 samples, 1.72%)</title><rect x="20.2224%" y="597" width="1.7156%" height="15" fill="rgb(240,135,12)" fg:x="106615" fg:w="9045"/><text x="20.4724%" y="607.50"></text></g><g><title>anon_vma_fork (61 samples, 0.01%)</title><rect x="21.9697%" y="469" width="0.0116%" height="15" fill="rgb(251,24,50)" fg:x="115827" fg:w="61"/><text x="22.2197%" y="479.50"></text></g><g><title>copy_page_range (72 samples, 0.01%)</title><rect x="21.9813%" y="469" width="0.0137%" height="15" fill="rgb(243,200,47)" fg:x="115888" fg:w="72"/><text x="22.2313%" y="479.50"></text></g><g><title>dup_mm (260 samples, 0.05%)</title><rect x="21.9644%" y="485" width="0.0493%" height="15" fill="rgb(224,166,26)" fg:x="115799" fg:w="260"/><text x="22.2144%" y="495.50"></text></g><g><title>vm_area_dup (65 samples, 0.01%)</title><rect x="22.0014%" y="469" width="0.0123%" height="15" fill="rgb(233,0,47)" fg:x="115994" fg:w="65"/><text x="22.2514%" y="479.50"></text></g><g><title>inherit_task_group.isra.0 (96 samples, 0.02%)</title><rect x="22.0228%" y="469" width="0.0182%" height="15" fill="rgb(253,80,5)" fg:x="116107" fg:w="96"/><text x="22.2728%" y="479.50"></text></g><g><title>inherit_event.constprop.0 (92 samples, 0.02%)</title><rect x="22.0236%" y="453" width="0.0175%" height="15" fill="rgb(214,133,25)" fg:x="116111" fg:w="92"/><text x="22.2736%" y="463.50"></text></g><g><title>perf_event_alloc (78 samples, 0.01%)</title><rect x="22.0262%" y="437" width="0.0148%" height="15" fill="rgb(209,27,14)" fg:x="116125" fg:w="78"/><text x="22.2762%" y="447.50"></text></g><g><title>perf_event_init_task (99 samples, 0.02%)</title><rect x="22.0226%" y="485" width="0.0188%" height="15" fill="rgb(219,102,51)" fg:x="116106" fg:w="99"/><text x="22.2726%" y="495.50"></text></g><g><title>copy_process (522 samples, 0.10%)</title><rect x="21.9462%" y="501" width="0.0990%" height="15" fill="rgb(237,18,16)" fg:x="115703" fg:w="522"/><text x="22.1962%" y="511.50"></text></g><g><title>do_syscall_64 (558 samples, 0.11%)</title><rect x="21.9462%" y="549" width="0.1058%" height="15" fill="rgb(241,85,17)" fg:x="115703" fg:w="558"/><text x="22.1962%" y="559.50"></text></g><g><title>__do_sys_clone (558 samples, 0.11%)</title><rect x="21.9462%" y="533" width="0.1058%" height="15" fill="rgb(236,90,42)" fg:x="115703" fg:w="558"/><text x="22.1962%" y="543.50"></text></g><g><title>kernel_clone (558 samples, 0.11%)</title><rect x="21.9462%" y="517" width="0.1058%" height="15" fill="rgb(249,57,21)" fg:x="115703" fg:w="558"/><text x="22.1962%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (559 samples, 0.11%)</title><rect x="21.9462%" y="565" width="0.1060%" height="15" fill="rgb(243,12,36)" fg:x="115703" fg:w="559"/><text x="22.1962%" y="575.50"></text></g><g><title>asm_exc_page_fault (107 samples, 0.02%)</title><rect x="22.0545%" y="517" width="0.0203%" height="15" fill="rgb(253,128,47)" fg:x="116274" fg:w="107"/><text x="22.3045%" y="527.50"></text></g><g><title>exc_page_fault (102 samples, 0.02%)</title><rect x="22.0555%" y="501" width="0.0193%" height="15" fill="rgb(207,33,20)" fg:x="116279" fg:w="102"/><text x="22.3055%" y="511.50"></text></g><g><title>do_user_addr_fault (102 samples, 0.02%)</title><rect x="22.0555%" y="485" width="0.0193%" height="15" fill="rgb(233,215,35)" fg:x="116279" fg:w="102"/><text x="22.3055%" y="495.50"></text></g><g><title>handle_mm_fault (96 samples, 0.02%)</title><rect x="22.0566%" y="469" width="0.0182%" height="15" fill="rgb(249,188,52)" fg:x="116285" fg:w="96"/><text x="22.3066%" y="479.50"></text></g><g><title>wp_page_copy (83 samples, 0.02%)</title><rect x="22.0591%" y="453" width="0.0157%" height="15" fill="rgb(225,12,32)" fg:x="116298" fg:w="83"/><text x="22.3091%" y="463.50"></text></g><g><title>__put_user_nocheck_4 (112 samples, 0.02%)</title><rect x="22.0537%" y="533" width="0.0212%" height="15" fill="rgb(247,98,14)" fg:x="116270" fg:w="112"/><text x="22.3037%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (1,174 samples, 0.22%)</title><rect x="22.0917%" y="517" width="0.2227%" height="15" fill="rgb(247,219,48)" fg:x="116470" fg:w="1174"/><text x="22.3417%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,129 samples, 0.21%)</title><rect x="22.1002%" y="501" width="0.2141%" height="15" fill="rgb(253,60,48)" fg:x="116515" fg:w="1129"/><text x="22.3502%" y="511.50"></text></g><g><title>native_write_msr (1,122 samples, 0.21%)</title><rect x="22.1015%" y="485" width="0.2128%" height="15" fill="rgb(245,15,52)" fg:x="116522" fg:w="1122"/><text x="22.3515%" y="495.50"></text></g><g><title>schedule_tail (1,397 samples, 0.26%)</title><rect x="22.0537%" y="549" width="0.2650%" height="15" fill="rgb(220,133,28)" fg:x="116270" fg:w="1397"/><text x="22.3037%" y="559.50"></text></g><g><title>finish_task_switch (1,283 samples, 0.24%)</title><rect x="22.0754%" y="533" width="0.2434%" height="15" fill="rgb(217,180,4)" fg:x="116384" fg:w="1283"/><text x="22.3254%" y="543.50"></text></g><g><title>ret_from_fork (1,403 samples, 0.27%)</title><rect x="22.0536%" y="565" width="0.2661%" height="15" fill="rgb(251,24,1)" fg:x="116269" fg:w="1403"/><text x="22.3036%" y="575.50"></text></g><g><title>arch_fork (2,002 samples, 0.38%)</title><rect x="21.9401%" y="581" width="0.3797%" height="15" fill="rgb(212,185,49)" fg:x="115671" fg:w="2002"/><text x="22.1901%" y="591.50"></text></g><g><title>__libc_fork (2,039 samples, 0.39%)</title><rect x="21.9382%" y="597" width="0.3868%" height="15" fill="rgb(215,175,22)" fg:x="115661" fg:w="2039"/><text x="22.1882%" y="607.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="22.3254%" y="581" width="0.0110%" height="15" fill="rgb(250,205,14)" fg:x="117702" fg:w="58"/><text x="22.5754%" y="591.50"></text></g><g><title>do_user_addr_fault (57 samples, 0.01%)</title><rect x="22.3256%" y="565" width="0.0108%" height="15" fill="rgb(225,211,22)" fg:x="117703" fg:w="57"/><text x="22.5756%" y="575.50"></text></g><g><title>asm_exc_page_fault (59 samples, 0.01%)</title><rect x="22.3254%" y="597" width="0.0112%" height="15" fill="rgb(251,179,42)" fg:x="117702" fg:w="59"/><text x="22.5754%" y="607.50"></text></g><g><title>[dash] (11,188 samples, 2.12%)</title><rect x="20.2160%" y="613" width="2.1221%" height="15" fill="rgb(208,216,51)" fg:x="106581" fg:w="11188"/><text x="20.4660%" y="623.50">[..</text></g><g><title>[dash] (11,349 samples, 2.15%)</title><rect x="20.2127%" y="629" width="2.1526%" height="15" fill="rgb(235,36,11)" fg:x="106564" fg:w="11349"/><text x="20.4627%" y="639.50">[..</text></g><g><title>__perf_event_task_sched_in (134 samples, 0.03%)</title><rect x="22.3842%" y="469" width="0.0254%" height="15" fill="rgb(213,189,28)" fg:x="118012" fg:w="134"/><text x="22.6342%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (133 samples, 0.03%)</title><rect x="22.3844%" y="453" width="0.0252%" height="15" fill="rgb(227,203,42)" fg:x="118013" fg:w="133"/><text x="22.6344%" y="463.50"></text></g><g><title>native_write_msr (133 samples, 0.03%)</title><rect x="22.3844%" y="437" width="0.0252%" height="15" fill="rgb(244,72,36)" fg:x="118013" fg:w="133"/><text x="22.6344%" y="447.50"></text></g><g><title>finish_task_switch (144 samples, 0.03%)</title><rect x="22.3828%" y="485" width="0.0273%" height="15" fill="rgb(213,53,17)" fg:x="118005" fg:w="144"/><text x="22.6328%" y="495.50"></text></g><g><title>schedule (170 samples, 0.03%)</title><rect x="22.3800%" y="517" width="0.0322%" height="15" fill="rgb(207,167,3)" fg:x="117990" fg:w="170"/><text x="22.6300%" y="527.50"></text></g><g><title>__schedule (169 samples, 0.03%)</title><rect x="22.3802%" y="501" width="0.0321%" height="15" fill="rgb(216,98,30)" fg:x="117991" fg:w="169"/><text x="22.6302%" y="511.50"></text></g><g><title>new_sync_read (192 samples, 0.04%)</title><rect x="22.3771%" y="549" width="0.0364%" height="15" fill="rgb(236,123,15)" fg:x="117975" fg:w="192"/><text x="22.6271%" y="559.50"></text></g><g><title>pipe_read (191 samples, 0.04%)</title><rect x="22.3773%" y="533" width="0.0362%" height="15" fill="rgb(248,81,50)" fg:x="117976" fg:w="191"/><text x="22.6273%" y="543.50"></text></g><g><title>do_syscall_64 (206 samples, 0.04%)</title><rect x="22.3752%" y="597" width="0.0391%" height="15" fill="rgb(214,120,4)" fg:x="117965" fg:w="206"/><text x="22.6252%" y="607.50"></text></g><g><title>ksys_read (205 samples, 0.04%)</title><rect x="22.3754%" y="581" width="0.0389%" height="15" fill="rgb(208,179,34)" fg:x="117966" fg:w="205"/><text x="22.6254%" y="591.50"></text></g><g><title>vfs_read (201 samples, 0.04%)</title><rect x="22.3762%" y="565" width="0.0381%" height="15" fill="rgb(227,140,7)" fg:x="117970" fg:w="201"/><text x="22.6262%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (228 samples, 0.04%)</title><rect x="22.3749%" y="613" width="0.0432%" height="15" fill="rgb(214,22,6)" fg:x="117963" fg:w="228"/><text x="22.6249%" y="623.50"></text></g><g><title>__GI___libc_read (245 samples, 0.05%)</title><rect x="22.3745%" y="629" width="0.0465%" height="15" fill="rgb(207,137,27)" fg:x="117961" fg:w="245"/><text x="22.6245%" y="639.50"></text></g><g><title>[dash] (11,723 samples, 2.22%)</title><rect x="20.2086%" y="645" width="2.2236%" height="15" fill="rgb(210,8,46)" fg:x="106542" fg:w="11723"/><text x="20.4586%" y="655.50">[..</text></g><g><title>[dash] (11,742 samples, 2.23%)</title><rect x="20.2076%" y="661" width="2.2272%" height="15" fill="rgb(240,16,54)" fg:x="106537" fg:w="11742"/><text x="20.4576%" y="671.50">[..</text></g><g><title>[dash] (11,772 samples, 2.23%)</title><rect x="20.2044%" y="677" width="2.2329%" height="15" fill="rgb(211,209,29)" fg:x="106520" fg:w="11772"/><text x="20.4544%" y="687.50">[..</text></g><g><title>[dash] (11,782 samples, 2.23%)</title><rect x="20.2038%" y="693" width="2.2348%" height="15" fill="rgb(226,228,24)" fg:x="106517" fg:w="11782"/><text x="20.4538%" y="703.50">[..</text></g><g><title>[dash] (11,810 samples, 2.24%)</title><rect x="20.2031%" y="709" width="2.2401%" height="15" fill="rgb(222,84,9)" fg:x="106513" fg:w="11810"/><text x="20.4531%" y="719.50">[..</text></g><g><title>[dash] (11,817 samples, 2.24%)</title><rect x="20.2021%" y="725" width="2.2414%" height="15" fill="rgb(234,203,30)" fg:x="106508" fg:w="11817"/><text x="20.4521%" y="735.50">[..</text></g><g><title>[dash] (11,884 samples, 2.25%)</title><rect x="20.2019%" y="741" width="2.2541%" height="15" fill="rgb(238,109,14)" fg:x="106507" fg:w="11884"/><text x="20.4519%" y="751.50">[..</text></g><g><title>[dash] (11,926 samples, 2.26%)</title><rect x="20.1987%" y="789" width="2.2621%" height="15" fill="rgb(233,206,34)" fg:x="106490" fg:w="11926"/><text x="20.4487%" y="799.50">[..</text></g><g><title>__libc_start_main (11,915 samples, 2.26%)</title><rect x="20.2008%" y="773" width="2.2600%" height="15" fill="rgb(220,167,47)" fg:x="106501" fg:w="11915"/><text x="20.4508%" y="783.50">_..</text></g><g><title>[dash] (11,915 samples, 2.26%)</title><rect x="20.2008%" y="757" width="2.2600%" height="15" fill="rgb(238,105,10)" fg:x="106501" fg:w="11915"/><text x="20.4508%" y="767.50">[..</text></g><g><title>[ld-2.31.so] (100 samples, 0.02%)</title><rect x="22.4678%" y="725" width="0.0190%" height="15" fill="rgb(213,227,17)" fg:x="118453" fg:w="100"/><text x="22.7178%" y="735.50"></text></g><g><title>_dl_start_final (109 samples, 0.02%)</title><rect x="22.4678%" y="757" width="0.0207%" height="15" fill="rgb(217,132,38)" fg:x="118453" fg:w="109"/><text x="22.7178%" y="767.50"></text></g><g><title>_dl_sysdep_start (109 samples, 0.02%)</title><rect x="22.4678%" y="741" width="0.0207%" height="15" fill="rgb(242,146,4)" fg:x="118453" fg:w="109"/><text x="22.7178%" y="751.50"></text></g><g><title>_dl_start (113 samples, 0.02%)</title><rect x="22.4676%" y="773" width="0.0214%" height="15" fill="rgb(212,61,9)" fg:x="118452" fg:w="113"/><text x="22.7176%" y="783.50"></text></g><g><title>_start (114 samples, 0.02%)</title><rect x="22.4676%" y="789" width="0.0216%" height="15" fill="rgb(247,126,22)" fg:x="118452" fg:w="114"/><text x="22.7176%" y="799.50"></text></g><g><title>asm_exc_page_fault (386 samples, 0.07%)</title><rect x="22.4892%" y="789" width="0.0732%" height="15" fill="rgb(220,196,2)" fg:x="118566" fg:w="386"/><text x="22.7392%" y="799.50"></text></g><g><title>lru_add_drain_cpu (68 samples, 0.01%)</title><rect x="22.5769%" y="629" width="0.0129%" height="15" fill="rgb(208,46,4)" fg:x="119028" fg:w="68"/><text x="22.8269%" y="639.50"></text></g><g><title>pagevec_lru_move_fn (63 samples, 0.01%)</title><rect x="22.5778%" y="613" width="0.0119%" height="15" fill="rgb(252,104,46)" fg:x="119033" fg:w="63"/><text x="22.8278%" y="623.50"></text></g><g><title>lru_add_drain (70 samples, 0.01%)</title><rect x="22.5767%" y="645" width="0.0133%" height="15" fill="rgb(237,152,48)" fg:x="119027" fg:w="70"/><text x="22.8267%" y="655.50"></text></g><g><title>page_remove_rmap (76 samples, 0.01%)</title><rect x="22.6393%" y="613" width="0.0144%" height="15" fill="rgb(221,59,37)" fg:x="119357" fg:w="76"/><text x="22.8893%" y="623.50"></text></g><g><title>unmap_page_range (325 samples, 0.06%)</title><rect x="22.5972%" y="629" width="0.0616%" height="15" fill="rgb(209,202,51)" fg:x="119135" fg:w="325"/><text x="22.8472%" y="639.50"></text></g><g><title>exit_mmap (473 samples, 0.09%)</title><rect x="22.5706%" y="661" width="0.0897%" height="15" fill="rgb(228,81,30)" fg:x="118995" fg:w="473"/><text x="22.8206%" y="671.50"></text></g><g><title>unmap_vmas (342 samples, 0.06%)</title><rect x="22.5955%" y="645" width="0.0649%" height="15" fill="rgb(227,42,39)" fg:x="119126" fg:w="342"/><text x="22.8455%" y="655.50"></text></g><g><title>mmput (486 samples, 0.09%)</title><rect x="22.5689%" y="677" width="0.0922%" height="15" fill="rgb(221,26,2)" fg:x="118986" fg:w="486"/><text x="22.8189%" y="687.50"></text></g><g><title>begin_new_exec (513 samples, 0.10%)</title><rect x="22.5676%" y="693" width="0.0973%" height="15" fill="rgb(254,61,31)" fg:x="118979" fg:w="513"/><text x="22.8176%" y="703.50"></text></g><g><title>__x64_sys_execve (516 samples, 0.10%)</title><rect x="22.5674%" y="757" width="0.0979%" height="15" fill="rgb(222,173,38)" fg:x="118978" fg:w="516"/><text x="22.8174%" y="767.50"></text></g><g><title>do_execveat_common (516 samples, 0.10%)</title><rect x="22.5674%" y="741" width="0.0979%" height="15" fill="rgb(218,50,12)" fg:x="118978" fg:w="516"/><text x="22.8174%" y="751.50"></text></g><g><title>bprm_execve (516 samples, 0.10%)</title><rect x="22.5674%" y="725" width="0.0979%" height="15" fill="rgb(223,88,40)" fg:x="118978" fg:w="516"/><text x="22.8174%" y="735.50"></text></g><g><title>load_elf_binary (516 samples, 0.10%)</title><rect x="22.5674%" y="709" width="0.0979%" height="15" fill="rgb(237,54,19)" fg:x="118978" fg:w="516"/><text x="22.8174%" y="719.50"></text></g><g><title>__put_anon_vma (57 samples, 0.01%)</title><rect x="22.6863%" y="645" width="0.0108%" height="15" fill="rgb(251,129,25)" fg:x="119605" fg:w="57"/><text x="22.9363%" y="655.50"></text></g><g><title>kmem_cache_free (131 samples, 0.02%)</title><rect x="22.7057%" y="645" width="0.0248%" height="15" fill="rgb(238,97,19)" fg:x="119707" fg:w="131"/><text x="22.9557%" y="655.50"></text></g><g><title>unlink_anon_vmas (256 samples, 0.05%)</title><rect x="22.6827%" y="661" width="0.0486%" height="15" fill="rgb(240,169,18)" fg:x="119586" fg:w="256"/><text x="22.9327%" y="671.50"></text></g><g><title>free_pgtables (351 samples, 0.07%)</title><rect x="22.6761%" y="677" width="0.0666%" height="15" fill="rgb(230,187,49)" fg:x="119551" fg:w="351"/><text x="22.9261%" y="687.50"></text></g><g><title>kmem_cache_free (123 samples, 0.02%)</title><rect x="22.7519%" y="661" width="0.0233%" height="15" fill="rgb(209,44,26)" fg:x="119951" fg:w="123"/><text x="23.0019%" y="671.50"></text></g><g><title>remove_vma (147 samples, 0.03%)</title><rect x="22.7485%" y="677" width="0.0279%" height="15" fill="rgb(244,0,6)" fg:x="119933" fg:w="147"/><text x="22.9985%" y="687.50"></text></g><g><title>free_pages_and_swap_cache (54 samples, 0.01%)</title><rect x="22.7817%" y="661" width="0.0102%" height="15" fill="rgb(248,18,21)" fg:x="120108" fg:w="54"/><text x="23.0317%" y="671.50"></text></g><g><title>tlb_finish_mmu (351 samples, 0.07%)</title><rect x="22.7764%" y="677" width="0.0666%" height="15" fill="rgb(245,180,19)" fg:x="120080" fg:w="351"/><text x="23.0264%" y="687.50"></text></g><g><title>release_pages (261 samples, 0.05%)</title><rect x="22.7935%" y="661" width="0.0495%" height="15" fill="rgb(252,118,36)" fg:x="120170" fg:w="261"/><text x="23.0435%" y="671.50"></text></g><g><title>unmap_page_range (149 samples, 0.03%)</title><rect x="22.8436%" y="661" width="0.0283%" height="15" fill="rgb(210,224,19)" fg:x="120434" fg:w="149"/><text x="23.0936%" y="671.50"></text></g><g><title>exit_mmap (1,060 samples, 0.20%)</title><rect x="22.6717%" y="693" width="0.2011%" height="15" fill="rgb(218,30,24)" fg:x="119528" fg:w="1060"/><text x="22.9217%" y="703.50"></text></g><g><title>unmap_vmas (157 samples, 0.03%)</title><rect x="22.8430%" y="677" width="0.0298%" height="15" fill="rgb(219,75,50)" fg:x="120431" fg:w="157"/><text x="23.0930%" y="687.50"></text></g><g><title>mmput (1,068 samples, 0.20%)</title><rect x="22.6710%" y="709" width="0.2026%" height="15" fill="rgb(234,72,50)" fg:x="119524" fg:w="1068"/><text x="22.9210%" y="719.50"></text></g><g><title>__x64_sys_exit_group (1,178 samples, 0.22%)</title><rect x="22.6653%" y="757" width="0.2234%" height="15" fill="rgb(219,100,48)" fg:x="119494" fg:w="1178"/><text x="22.9153%" y="767.50"></text></g><g><title>do_group_exit (1,178 samples, 0.22%)</title><rect x="22.6653%" y="741" width="0.2234%" height="15" fill="rgb(253,5,41)" fg:x="119494" fg:w="1178"/><text x="22.9153%" y="751.50"></text></g><g><title>do_exit (1,178 samples, 0.22%)</title><rect x="22.6653%" y="725" width="0.2234%" height="15" fill="rgb(247,181,11)" fg:x="119494" fg:w="1178"/><text x="22.9153%" y="735.50"></text></g><g><title>do_syscall_64 (1,717 samples, 0.33%)</title><rect x="22.5636%" y="773" width="0.3257%" height="15" fill="rgb(222,223,25)" fg:x="118958" fg:w="1717"/><text x="22.8136%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,723 samples, 0.33%)</title><rect x="22.5627%" y="789" width="0.3268%" height="15" fill="rgb(214,198,28)" fg:x="118953" fg:w="1723"/><text x="22.8127%" y="799.50"></text></g><g><title>c++ (14,242 samples, 2.70%)</title><rect x="20.1909%" y="805" width="2.7014%" height="15" fill="rgb(230,46,43)" fg:x="106449" fg:w="14242"/><text x="20.4409%" y="815.50">c++</text></g><g><title>[perf-947659.map] (370 samples, 0.07%)</title><rect x="22.8953%" y="789" width="0.0702%" height="15" fill="rgb(233,65,53)" fg:x="120707" fg:w="370"/><text x="23.1453%" y="799.50"></text></g><g><title>find-action-loo (405 samples, 0.08%)</title><rect x="22.8950%" y="805" width="0.0768%" height="15" fill="rgb(221,121,27)" fg:x="120705" fg:w="405"/><text x="23.1450%" y="815.50"></text></g><g><title>globbing_pool-0 (53 samples, 0.01%)</title><rect x="22.9718%" y="805" width="0.0101%" height="15" fill="rgb(247,70,47)" fg:x="121110" fg:w="53"/><text x="23.2218%" y="815.50"></text></g><g><title>[perf-947659.map] (199 samples, 0.04%)</title><rect x="22.9932%" y="789" width="0.0377%" height="15" fill="rgb(228,85,35)" fg:x="121223" fg:w="199"/><text x="23.2432%" y="799.50"></text></g><g><title>globbing_pool-1 (344 samples, 0.07%)</title><rect x="22.9818%" y="805" width="0.0652%" height="15" fill="rgb(209,50,18)" fg:x="121163" fg:w="344"/><text x="23.2318%" y="815.50"></text></g><g><title>[perf-947659.map] (166 samples, 0.03%)</title><rect x="23.0541%" y="789" width="0.0315%" height="15" fill="rgb(250,19,35)" fg:x="121544" fg:w="166"/><text x="23.3041%" y="799.50"></text></g><g><title>globbing_pool-2 (215 samples, 0.04%)</title><rect x="23.0471%" y="805" width="0.0408%" height="15" fill="rgb(253,107,29)" fg:x="121507" fg:w="215"/><text x="23.2971%" y="815.50"></text></g><g><title>[perf-947659.map] (108 samples, 0.02%)</title><rect x="23.0907%" y="789" width="0.0205%" height="15" fill="rgb(252,179,29)" fg:x="121737" fg:w="108"/><text x="23.3407%" y="799.50"></text></g><g><title>globbing_pool-3 (137 samples, 0.03%)</title><rect x="23.0879%" y="805" width="0.0260%" height="15" fill="rgb(238,194,6)" fg:x="121722" fg:w="137"/><text x="23.3379%" y="815.50"></text></g><g><title>[perf-947659.map] (147 samples, 0.03%)</title><rect x="23.1211%" y="789" width="0.0279%" height="15" fill="rgb(238,164,29)" fg:x="121897" fg:w="147"/><text x="23.3711%" y="799.50"></text></g><g><title>globbing_pool-4 (207 samples, 0.04%)</title><rect x="23.1139%" y="805" width="0.0393%" height="15" fill="rgb(224,25,9)" fg:x="121859" fg:w="207"/><text x="23.3639%" y="815.50"></text></g><g><title>[libunix_jni.so] (76 samples, 0.01%)</title><rect x="23.1541%" y="789" width="0.0144%" height="15" fill="rgb(244,153,23)" fg:x="122071" fg:w="76"/><text x="23.4041%" y="799.50"></text></g><g><title>[perf-947659.map] (293 samples, 0.06%)</title><rect x="23.1685%" y="789" width="0.0556%" height="15" fill="rgb(212,203,14)" fg:x="122147" fg:w="293"/><text x="23.4185%" y="799.50"></text></g><g><title>globbing_pool-5 (378 samples, 0.07%)</title><rect x="23.1531%" y="805" width="0.0717%" height="15" fill="rgb(220,164,20)" fg:x="122066" fg:w="378"/><text x="23.4031%" y="815.50"></text></g><g><title>[perf-947659.map] (90 samples, 0.02%)</title><rect x="23.2265%" y="789" width="0.0171%" height="15" fill="rgb(222,203,48)" fg:x="122453" fg:w="90"/><text x="23.4765%" y="799.50"></text></g><g><title>globbing_pool-6 (115 samples, 0.02%)</title><rect x="23.2248%" y="805" width="0.0218%" height="15" fill="rgb(215,159,22)" fg:x="122444" fg:w="115"/><text x="23.4748%" y="815.50"></text></g><g><title>[perf-947659.map] (105 samples, 0.02%)</title><rect x="23.2478%" y="789" width="0.0199%" height="15" fill="rgb(216,183,47)" fg:x="122565" fg:w="105"/><text x="23.4978%" y="799.50"></text></g><g><title>globbing_pool-7 (123 samples, 0.02%)</title><rect x="23.2466%" y="805" width="0.0233%" height="15" fill="rgb(229,195,25)" fg:x="122559" fg:w="123"/><text x="23.4966%" y="815.50"></text></g><g><title>[perf-947659.map] (95 samples, 0.02%)</title><rect x="23.2717%" y="789" width="0.0180%" height="15" fill="rgb(224,132,51)" fg:x="122691" fg:w="95"/><text x="23.5217%" y="799.50"></text></g><g><title>globbing_pool-8 (109 samples, 0.02%)</title><rect x="23.2700%" y="805" width="0.0207%" height="15" fill="rgb(240,63,7)" fg:x="122682" fg:w="109"/><text x="23.5200%" y="815.50"></text></g><g><title>[perf-947659.map] (73 samples, 0.01%)</title><rect x="23.2918%" y="789" width="0.0138%" height="15" fill="rgb(249,182,41)" fg:x="122797" fg:w="73"/><text x="23.5418%" y="799.50"></text></g><g><title>globbing_pool-9 (82 samples, 0.02%)</title><rect x="23.2906%" y="805" width="0.0156%" height="15" fill="rgb(243,47,26)" fg:x="122791" fg:w="82"/><text x="23.5406%" y="815.50"></text></g><g><title>[anon] (236 samples, 0.04%)</title><rect x="23.3107%" y="789" width="0.0448%" height="15" fill="rgb(233,48,2)" fg:x="122897" fg:w="236"/><text x="23.5607%" y="799.50"></text></g><g><title>ClassFileParser::ClassFileParser (68 samples, 0.01%)</title><rect x="23.8052%" y="661" width="0.0129%" height="15" fill="rgb(244,165,34)" fg:x="125504" fg:w="68"/><text x="24.0552%" y="671.50"></text></g><g><title>ClassFileParser::parse_stream (68 samples, 0.01%)</title><rect x="23.8052%" y="645" width="0.0129%" height="15" fill="rgb(207,89,7)" fg:x="125504" fg:w="68"/><text x="24.0552%" y="655.50"></text></g><g><title>ClassLoader::load_class (118 samples, 0.02%)</title><rect x="23.8029%" y="693" width="0.0224%" height="15" fill="rgb(244,117,36)" fg:x="125492" fg:w="118"/><text x="24.0529%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (106 samples, 0.02%)</title><rect x="23.8052%" y="677" width="0.0201%" height="15" fill="rgb(226,144,34)" fg:x="125504" fg:w="106"/><text x="24.0552%" y="687.50"></text></g><g><title>SystemDictionary::load_instance_class (139 samples, 0.03%)</title><rect x="23.8026%" y="709" width="0.0264%" height="15" fill="rgb(213,23,19)" fg:x="125490" fg:w="139"/><text x="24.0526%" y="719.50"></text></g><g><title>ConstantPool::klass_at_impl (147 samples, 0.03%)</title><rect x="23.8012%" y="757" width="0.0279%" height="15" fill="rgb(217,75,12)" fg:x="125483" fg:w="147"/><text x="24.0512%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (144 samples, 0.03%)</title><rect x="23.8018%" y="741" width="0.0273%" height="15" fill="rgb(224,159,17)" fg:x="125486" fg:w="144"/><text x="24.0518%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (144 samples, 0.03%)</title><rect x="23.8018%" y="725" width="0.0273%" height="15" fill="rgb(217,118,1)" fg:x="125486" fg:w="144"/><text x="24.0518%" y="735.50"></text></g><g><title>Rewriter::rewrite (56 samples, 0.01%)</title><rect x="23.8449%" y="725" width="0.0106%" height="15" fill="rgb(232,180,48)" fg:x="125713" fg:w="56"/><text x="24.0949%" y="735.50"></text></g><g><title>Rewriter::Rewriter (54 samples, 0.01%)</title><rect x="23.8452%" y="709" width="0.0102%" height="15" fill="rgb(230,27,33)" fg:x="125715" fg:w="54"/><text x="24.0952%" y="719.50"></text></g><g><title>InstanceKlass::link_class_impl (165 samples, 0.03%)</title><rect x="23.8306%" y="741" width="0.0313%" height="15" fill="rgb(205,31,21)" fg:x="125638" fg:w="165"/><text x="24.0806%" y="751.50"></text></g><g><title>InterpreterRuntime::_new (324 samples, 0.06%)</title><rect x="23.8009%" y="773" width="0.0615%" height="15" fill="rgb(253,59,4)" fg:x="125481" fg:w="324"/><text x="24.0509%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (172 samples, 0.03%)</title><rect x="23.8297%" y="757" width="0.0326%" height="15" fill="rgb(224,201,9)" fg:x="125633" fg:w="172"/><text x="24.0797%" y="767.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (74 samples, 0.01%)</title><rect x="23.8722%" y="773" width="0.0140%" height="15" fill="rgb(229,206,30)" fg:x="125857" fg:w="74"/><text x="24.1222%" y="783.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (73 samples, 0.01%)</title><rect x="23.8724%" y="757" width="0.0138%" height="15" fill="rgb(212,67,47)" fg:x="125858" fg:w="73"/><text x="24.1224%" y="767.50"></text></g><g><title>TieredThresholdPolicy::event (65 samples, 0.01%)</title><rect x="23.8739%" y="741" width="0.0123%" height="15" fill="rgb(211,96,50)" fg:x="125866" fg:w="65"/><text x="24.1239%" y="751.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (60 samples, 0.01%)</title><rect x="23.8748%" y="725" width="0.0114%" height="15" fill="rgb(252,114,18)" fg:x="125871" fg:w="60"/><text x="24.1248%" y="735.50"></text></g><g><title>LinkResolver::resolve_field (65 samples, 0.01%)</title><rect x="23.9048%" y="725" width="0.0123%" height="15" fill="rgb(223,58,37)" fg:x="126029" fg:w="65"/><text x="24.1548%" y="735.50"></text></g><g><title>LinkResolver::resolve_field_access (93 samples, 0.02%)</title><rect x="23.8999%" y="741" width="0.0176%" height="15" fill="rgb(237,70,4)" fg:x="126003" fg:w="93"/><text x="24.1499%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (119 samples, 0.02%)</title><rect x="23.8965%" y="757" width="0.0226%" height="15" fill="rgb(244,85,46)" fg:x="125985" fg:w="119"/><text x="24.1465%" y="767.50"></text></g><g><title>ClassLoader::load_class (63 samples, 0.01%)</title><rect x="23.9298%" y="661" width="0.0119%" height="15" fill="rgb(223,39,52)" fg:x="126161" fg:w="63"/><text x="24.1798%" y="671.50"></text></g><g><title>KlassFactory::create_from_stream (58 samples, 0.01%)</title><rect x="23.9308%" y="645" width="0.0110%" height="15" fill="rgb(218,200,14)" fg:x="126166" fg:w="58"/><text x="24.1808%" y="655.50"></text></g><g><title>SystemDictionary::load_instance_class (69 samples, 0.01%)</title><rect x="23.9298%" y="677" width="0.0131%" height="15" fill="rgb(208,171,16)" fg:x="126161" fg:w="69"/><text x="24.1798%" y="687.50"></text></g><g><title>ConstantPool::klass_ref_at (87 samples, 0.02%)</title><rect x="23.9268%" y="725" width="0.0165%" height="15" fill="rgb(234,200,18)" fg:x="126145" fg:w="87"/><text x="24.1768%" y="735.50"></text></g><g><title>SystemDictionary::resolve_or_fail (78 samples, 0.01%)</title><rect x="23.9285%" y="709" width="0.0148%" height="15" fill="rgb(228,45,11)" fg:x="126154" fg:w="78"/><text x="24.1785%" y="719.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (78 samples, 0.01%)</title><rect x="23.9285%" y="693" width="0.0148%" height="15" fill="rgb(237,182,11)" fg:x="126154" fg:w="78"/><text x="24.1785%" y="703.50"></text></g><g><title>InstanceKlass::link_class_impl (92 samples, 0.02%)</title><rect x="23.9583%" y="693" width="0.0175%" height="15" fill="rgb(241,175,49)" fg:x="126311" fg:w="92"/><text x="24.2083%" y="703.50"></text></g><g><title>InstanceKlass::initialize_impl (95 samples, 0.02%)</title><rect x="23.9579%" y="709" width="0.0180%" height="15" fill="rgb(247,38,35)" fg:x="126309" fg:w="95"/><text x="24.2079%" y="719.50"></text></g><g><title>LinkResolver::resolve_static_call (121 samples, 0.02%)</title><rect x="23.9575%" y="725" width="0.0230%" height="15" fill="rgb(228,39,49)" fg:x="126307" fg:w="121"/><text x="24.2075%" y="735.50"></text></g><g><title>LinkResolver::resolve_invoke (292 samples, 0.06%)</title><rect x="23.9260%" y="741" width="0.0554%" height="15" fill="rgb(226,101,26)" fg:x="126141" fg:w="292"/><text x="24.1760%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (349 samples, 0.07%)</title><rect x="23.9190%" y="757" width="0.0662%" height="15" fill="rgb(206,141,19)" fg:x="126104" fg:w="349"/><text x="24.1690%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (60 samples, 0.01%)</title><rect x="23.9852%" y="757" width="0.0114%" height="15" fill="rgb(211,200,13)" fg:x="126453" fg:w="60"/><text x="24.2352%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (59 samples, 0.01%)</title><rect x="23.9854%" y="741" width="0.0112%" height="15" fill="rgb(241,121,6)" fg:x="126454" fg:w="59"/><text x="24.2354%" y="751.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (58 samples, 0.01%)</title><rect x="23.9856%" y="725" width="0.0110%" height="15" fill="rgb(234,221,29)" fg:x="126455" fg:w="58"/><text x="24.2356%" y="735.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (548 samples, 0.10%)</title><rect x="23.8951%" y="773" width="0.1039%" height="15" fill="rgb(229,136,5)" fg:x="125978" fg:w="548"/><text x="24.1451%" y="783.50"></text></g><g><title>JVM_GetClassDeclaredMethods (63 samples, 0.01%)</title><rect x="24.0268%" y="773" width="0.0119%" height="15" fill="rgb(238,36,11)" fg:x="126672" fg:w="63"/><text x="24.2768%" y="783.50"></text></g><g><title>get_class_declared_methods_helper (63 samples, 0.01%)</title><rect x="24.0268%" y="757" width="0.0119%" height="15" fill="rgb(251,55,41)" fg:x="126672" fg:w="63"/><text x="24.2768%" y="767.50"></text></g><g><title>SymbolTable::add (67 samples, 0.01%)</title><rect x="24.0780%" y="629" width="0.0127%" height="15" fill="rgb(242,34,40)" fg:x="126942" fg:w="67"/><text x="24.3280%" y="639.50"></text></g><g><title>SymbolTable::basic_add (67 samples, 0.01%)</title><rect x="24.0780%" y="613" width="0.0127%" height="15" fill="rgb(215,42,17)" fg:x="126942" fg:w="67"/><text x="24.3280%" y="623.50"></text></g><g><title>SymbolTable::lookup_only (503 samples, 0.10%)</title><rect x="24.0907%" y="629" width="0.0954%" height="15" fill="rgb(207,44,46)" fg:x="127009" fg:w="503"/><text x="24.3407%" y="639.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (602 samples, 0.11%)</title><rect x="24.0723%" y="645" width="0.1142%" height="15" fill="rgb(211,206,28)" fg:x="126912" fg:w="602"/><text x="24.3223%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool (632 samples, 0.12%)</title><rect x="24.0683%" y="661" width="0.1199%" height="15" fill="rgb(237,167,16)" fg:x="126891" fg:w="632"/><text x="24.3183%" y="671.50"></text></g><g><title>ClassFileParser::parse_method (179 samples, 0.03%)</title><rect x="24.1925%" y="645" width="0.0340%" height="15" fill="rgb(233,66,6)" fg:x="127546" fg:w="179"/><text x="24.4425%" y="655.50"></text></g><g><title>ClassFileParser::parse_methods (182 samples, 0.03%)</title><rect x="24.1924%" y="661" width="0.0345%" height="15" fill="rgb(246,123,29)" fg:x="127545" fg:w="182"/><text x="24.4424%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (871 samples, 0.17%)</title><rect x="24.0653%" y="693" width="0.1652%" height="15" fill="rgb(209,62,40)" fg:x="126875" fg:w="871"/><text x="24.3153%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (869 samples, 0.16%)</title><rect x="24.0657%" y="677" width="0.1648%" height="15" fill="rgb(218,4,25)" fg:x="126877" fg:w="869"/><text x="24.3157%" y="687.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (101 samples, 0.02%)</title><rect x="24.2367%" y="645" width="0.0192%" height="15" fill="rgb(253,91,49)" fg:x="127779" fg:w="101"/><text x="24.4867%" y="655.50"></text></g><g><title>DefaultMethods::generate_default_methods (153 samples, 0.03%)</title><rect x="24.2324%" y="661" width="0.0290%" height="15" fill="rgb(228,155,29)" fg:x="127756" fg:w="153"/><text x="24.4824%" y="671.50"></text></g><g><title>ClassFileParser::fill_instance_klass (200 samples, 0.04%)</title><rect x="24.2305%" y="677" width="0.0379%" height="15" fill="rgb(243,57,37)" fg:x="127746" fg:w="200"/><text x="24.4805%" y="687.50"></text></g><g><title>ClassFileParser::create_instance_klass (205 samples, 0.04%)</title><rect x="24.2305%" y="693" width="0.0389%" height="15" fill="rgb(244,167,17)" fg:x="127746" fg:w="205"/><text x="24.4805%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (1,129 samples, 0.21%)</title><rect x="24.0651%" y="709" width="0.2141%" height="15" fill="rgb(207,181,38)" fg:x="126874" fg:w="1129"/><text x="24.3151%" y="719.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,187 samples, 0.23%)</title><rect x="24.0639%" y="725" width="0.2251%" height="15" fill="rgb(211,8,23)" fg:x="126868" fg:w="1187"/><text x="24.3139%" y="735.50"></text></g><g><title>JVM_DefineClassWithSource (1,202 samples, 0.23%)</title><rect x="24.0615%" y="757" width="0.2280%" height="15" fill="rgb(235,11,44)" fg:x="126855" fg:w="1202"/><text x="24.3115%" y="767.50"></text></g><g><title>jvm_define_class_common (1,200 samples, 0.23%)</title><rect x="24.0619%" y="741" width="0.2276%" height="15" fill="rgb(248,18,52)" fg:x="126857" fg:w="1200"/><text x="24.3119%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,244 samples, 0.24%)</title><rect x="24.0611%" y="773" width="0.2360%" height="15" fill="rgb(208,4,7)" fg:x="126853" fg:w="1244"/><text x="24.3111%" y="783.50"></text></g><g><title>JVM_FindClassFromBootLoader (87 samples, 0.02%)</title><rect x="24.2972%" y="757" width="0.0165%" height="15" fill="rgb(240,17,39)" fg:x="128098" fg:w="87"/><text x="24.5472%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_null (85 samples, 0.02%)</title><rect x="24.2976%" y="741" width="0.0161%" height="15" fill="rgb(207,170,3)" fg:x="128100" fg:w="85"/><text x="24.5476%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (85 samples, 0.02%)</title><rect x="24.2976%" y="725" width="0.0161%" height="15" fill="rgb(236,100,52)" fg:x="128100" fg:w="85"/><text x="24.5476%" y="735.50"></text></g><g><title>SystemDictionary::load_instance_class (66 samples, 0.01%)</title><rect x="24.3012%" y="709" width="0.0125%" height="15" fill="rgb(246,78,51)" fg:x="128119" fg:w="66"/><text x="24.5512%" y="719.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (98 samples, 0.02%)</title><rect x="24.2971%" y="773" width="0.0186%" height="15" fill="rgb(211,17,15)" fg:x="128097" fg:w="98"/><text x="24.5471%" y="783.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (80 samples, 0.02%)</title><rect x="24.3390%" y="773" width="0.0152%" height="15" fill="rgb(209,59,46)" fg:x="128318" fg:w="80"/><text x="24.5890%" y="783.50"></text></g><g><title>SystemDictionary::parse_stream (75 samples, 0.01%)</title><rect x="24.3399%" y="757" width="0.0142%" height="15" fill="rgb(210,92,25)" fg:x="128323" fg:w="75"/><text x="24.5899%" y="767.50"></text></g><g><title>[perf-947659.map] (5,316 samples, 1.01%)</title><rect x="23.3597%" y="789" width="1.0083%" height="15" fill="rgb(238,174,52)" fg:x="123155" fg:w="5316"/><text x="23.6097%" y="799.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="24.3885%" y="693" width="0.0112%" height="15" fill="rgb(230,73,7)" fg:x="128579" fg:w="59"/><text x="24.6385%" y="703.50"></text></g><g><title>ksys_read (56 samples, 0.01%)</title><rect x="24.3891%" y="677" width="0.0106%" height="15" fill="rgb(243,124,40)" fg:x="128582" fg:w="56"/><text x="24.6391%" y="687.50"></text></g><g><title>vfs_read (53 samples, 0.01%)</title><rect x="24.3896%" y="661" width="0.0101%" height="15" fill="rgb(244,170,11)" fg:x="128585" fg:w="53"/><text x="24.6396%" y="671.50"></text></g><g><title>__libc_read (65 samples, 0.01%)</title><rect x="24.3875%" y="741" width="0.0123%" height="15" fill="rgb(207,114,54)" fg:x="128574" fg:w="65"/><text x="24.6375%" y="751.50"></text></g><g><title>__libc_read (64 samples, 0.01%)</title><rect x="24.3877%" y="725" width="0.0121%" height="15" fill="rgb(205,42,20)" fg:x="128575" fg:w="64"/><text x="24.6377%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="24.3885%" y="709" width="0.0114%" height="15" fill="rgb(230,30,28)" fg:x="128579" fg:w="60"/><text x="24.6385%" y="719.50"></text></g><g><title>handleRead (66 samples, 0.01%)</title><rect x="24.3875%" y="757" width="0.0125%" height="15" fill="rgb(205,73,54)" fg:x="128574" fg:w="66"/><text x="24.6375%" y="767.50"></text></g><g><title>readBytes (83 samples, 0.02%)</title><rect x="24.3870%" y="773" width="0.0157%" height="15" fill="rgb(254,227,23)" fg:x="128571" fg:w="83"/><text x="24.6370%" y="783.50"></text></g><g><title>[unknown] (186 samples, 0.04%)</title><rect x="24.3680%" y="789" width="0.0353%" height="15" fill="rgb(228,202,34)" fg:x="128471" fg:w="186"/><text x="24.6180%" y="799.50"></text></g><g><title>__GI___clone (137 samples, 0.03%)</title><rect x="24.4033%" y="789" width="0.0260%" height="15" fill="rgb(222,225,37)" fg:x="128657" fg:w="137"/><text x="24.6533%" y="799.50"></text></g><g><title>start_thread (81 samples, 0.02%)</title><rect x="24.4139%" y="773" width="0.0154%" height="15" fill="rgb(221,14,54)" fg:x="128713" fg:w="81"/><text x="24.6639%" y="783.50"></text></g><g><title>java (5,954 samples, 1.13%)</title><rect x="23.3062%" y="805" width="1.1293%" height="15" fill="rgb(254,102,2)" fg:x="122873" fg:w="5954"/><text x="23.5562%" y="815.50"></text></g><g><title>[bash] (58 samples, 0.01%)</title><rect x="24.4626%" y="757" width="0.0110%" height="15" fill="rgb(232,104,17)" fg:x="128970" fg:w="58"/><text x="24.7126%" y="767.50"></text></g><g><title>execute_command_internal (109 samples, 0.02%)</title><rect x="24.4626%" y="773" width="0.0207%" height="15" fill="rgb(250,220,14)" fg:x="128970" fg:w="109"/><text x="24.7126%" y="783.50"></text></g><g><title>[unknown] (202 samples, 0.04%)</title><rect x="24.4499%" y="789" width="0.0383%" height="15" fill="rgb(241,158,9)" fg:x="128903" fg:w="202"/><text x="24.6999%" y="799.50"></text></g><g><title>execute_command (81 samples, 0.02%)</title><rect x="24.4968%" y="677" width="0.0154%" height="15" fill="rgb(246,9,43)" fg:x="129150" fg:w="81"/><text x="24.7468%" y="687.50"></text></g><g><title>execute_command_internal (80 samples, 0.02%)</title><rect x="24.4970%" y="661" width="0.0152%" height="15" fill="rgb(206,73,33)" fg:x="129151" fg:w="80"/><text x="24.7470%" y="671.50"></text></g><g><title>[bash] (96 samples, 0.02%)</title><rect x="24.4964%" y="693" width="0.0182%" height="15" fill="rgb(222,79,8)" fg:x="129148" fg:w="96"/><text x="24.7464%" y="703.50"></text></g><g><title>copy_command (53 samples, 0.01%)</title><rect x="24.5165%" y="565" width="0.0101%" height="15" fill="rgb(234,8,54)" fg:x="129254" fg:w="53"/><text x="24.7665%" y="575.50"></text></g><g><title>copy_command (54 samples, 0.01%)</title><rect x="24.5165%" y="581" width="0.0102%" height="15" fill="rgb(209,134,38)" fg:x="129254" fg:w="54"/><text x="24.7665%" y="591.50"></text></g><g><title>copy_command (61 samples, 0.01%)</title><rect x="24.5161%" y="597" width="0.0116%" height="15" fill="rgb(230,127,29)" fg:x="129252" fg:w="61"/><text x="24.7661%" y="607.50"></text></g><g><title>copy_command (64 samples, 0.01%)</title><rect x="24.5159%" y="613" width="0.0121%" height="15" fill="rgb(242,44,41)" fg:x="129251" fg:w="64"/><text x="24.7659%" y="623.50"></text></g><g><title>copy_command (69 samples, 0.01%)</title><rect x="24.5152%" y="661" width="0.0131%" height="15" fill="rgb(222,56,43)" fg:x="129247" fg:w="69"/><text x="24.7652%" y="671.50"></text></g><g><title>copy_command (69 samples, 0.01%)</title><rect x="24.5152%" y="645" width="0.0131%" height="15" fill="rgb(238,39,47)" fg:x="129247" fg:w="69"/><text x="24.7652%" y="655.50"></text></g><g><title>copy_command (68 samples, 0.01%)</title><rect x="24.5154%" y="629" width="0.0129%" height="15" fill="rgb(226,79,43)" fg:x="129248" fg:w="68"/><text x="24.7654%" y="639.50"></text></g><g><title>copy_command (70 samples, 0.01%)</title><rect x="24.5152%" y="677" width="0.0133%" height="15" fill="rgb(242,105,53)" fg:x="129247" fg:w="70"/><text x="24.7652%" y="687.50"></text></g><g><title>bind_function (73 samples, 0.01%)</title><rect x="24.5148%" y="693" width="0.0138%" height="15" fill="rgb(251,132,46)" fg:x="129245" fg:w="73"/><text x="24.7648%" y="703.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="24.5298%" y="597" width="0.0106%" height="15" fill="rgb(231,77,14)" fg:x="129324" fg:w="56"/><text x="24.7798%" y="607.50"></text></g><g><title>copy_command (65 samples, 0.01%)</title><rect x="24.5294%" y="613" width="0.0123%" height="15" fill="rgb(240,135,9)" fg:x="129322" fg:w="65"/><text x="24.7794%" y="623.50"></text></g><g><title>copy_command (70 samples, 0.01%)</title><rect x="24.5288%" y="629" width="0.0133%" height="15" fill="rgb(248,109,14)" fg:x="129319" fg:w="70"/><text x="24.7788%" y="639.50"></text></g><g><title>copy_function_def_contents (72 samples, 0.01%)</title><rect x="24.5287%" y="693" width="0.0137%" height="15" fill="rgb(227,146,52)" fg:x="129318" fg:w="72"/><text x="24.7787%" y="703.50"></text></g><g><title>copy_command (72 samples, 0.01%)</title><rect x="24.5287%" y="677" width="0.0137%" height="15" fill="rgb(232,54,3)" fg:x="129318" fg:w="72"/><text x="24.7787%" y="687.50"></text></g><g><title>copy_command (72 samples, 0.01%)</title><rect x="24.5287%" y="661" width="0.0137%" height="15" fill="rgb(229,201,43)" fg:x="129318" fg:w="72"/><text x="24.7787%" y="671.50"></text></g><g><title>copy_command (72 samples, 0.01%)</title><rect x="24.5287%" y="645" width="0.0137%" height="15" fill="rgb(252,161,33)" fg:x="129318" fg:w="72"/><text x="24.7787%" y="655.50"></text></g><g><title>parse_and_execute (75 samples, 0.01%)</title><rect x="24.5527%" y="613" width="0.0142%" height="15" fill="rgb(226,146,40)" fg:x="129445" fg:w="75"/><text x="24.8027%" y="623.50"></text></g><g><title>execute_command_internal (72 samples, 0.01%)</title><rect x="24.5533%" y="597" width="0.0137%" height="15" fill="rgb(219,47,25)" fg:x="129448" fg:w="72"/><text x="24.8033%" y="607.50"></text></g><g><title>command_substitute (125 samples, 0.02%)</title><rect x="24.5467%" y="629" width="0.0237%" height="15" fill="rgb(250,135,13)" fg:x="129413" fg:w="125"/><text x="24.7967%" y="639.50"></text></g><g><title>expand_word_leave_quoted (127 samples, 0.02%)</title><rect x="24.5465%" y="661" width="0.0241%" height="15" fill="rgb(219,229,18)" fg:x="129412" fg:w="127"/><text x="24.7965%" y="671.50"></text></g><g><title>[bash] (127 samples, 0.02%)</title><rect x="24.5465%" y="645" width="0.0241%" height="15" fill="rgb(217,152,27)" fg:x="129412" fg:w="127"/><text x="24.7965%" y="655.50"></text></g><g><title>execute_command (155 samples, 0.03%)</title><rect x="24.5425%" y="693" width="0.0294%" height="15" fill="rgb(225,71,47)" fg:x="129391" fg:w="155"/><text x="24.7925%" y="703.50"></text></g><g><title>execute_command_internal (155 samples, 0.03%)</title><rect x="24.5425%" y="677" width="0.0294%" height="15" fill="rgb(220,139,14)" fg:x="129391" fg:w="155"/><text x="24.7925%" y="687.50"></text></g><g><title>__libc_fork (54 samples, 0.01%)</title><rect x="24.5954%" y="501" width="0.0102%" height="15" fill="rgb(247,54,32)" fg:x="129670" fg:w="54"/><text x="24.8454%" y="511.50"></text></g><g><title>make_child (60 samples, 0.01%)</title><rect x="24.5950%" y="517" width="0.0114%" height="15" fill="rgb(252,131,39)" fg:x="129668" fg:w="60"/><text x="24.8450%" y="527.50"></text></g><g><title>parse_and_execute (134 samples, 0.03%)</title><rect x="24.5818%" y="597" width="0.0254%" height="15" fill="rgb(210,108,39)" fg:x="129598" fg:w="134"/><text x="24.8318%" y="607.50"></text></g><g><title>execute_command_internal (129 samples, 0.02%)</title><rect x="24.5827%" y="581" width="0.0245%" height="15" fill="rgb(205,23,29)" fg:x="129603" fg:w="129"/><text x="24.8327%" y="591.50"></text></g><g><title>[bash] (129 samples, 0.02%)</title><rect x="24.5827%" y="565" width="0.0245%" height="15" fill="rgb(246,139,46)" fg:x="129603" fg:w="129"/><text x="24.8327%" y="575.50"></text></g><g><title>[bash] (129 samples, 0.02%)</title><rect x="24.5827%" y="549" width="0.0245%" height="15" fill="rgb(250,81,26)" fg:x="129603" fg:w="129"/><text x="24.8327%" y="559.50"></text></g><g><title>execute_command_internal (126 samples, 0.02%)</title><rect x="24.5833%" y="533" width="0.0239%" height="15" fill="rgb(214,104,7)" fg:x="129606" fg:w="126"/><text x="24.8333%" y="543.50"></text></g><g><title>command_substitute (183 samples, 0.03%)</title><rect x="24.5736%" y="613" width="0.0347%" height="15" fill="rgb(233,189,8)" fg:x="129555" fg:w="183"/><text x="24.8236%" y="623.50"></text></g><g><title>[bash] (191 samples, 0.04%)</title><rect x="24.5725%" y="629" width="0.0362%" height="15" fill="rgb(228,141,17)" fg:x="129549" fg:w="191"/><text x="24.8225%" y="639.50"></text></g><g><title>[bash] (195 samples, 0.04%)</title><rect x="24.5725%" y="645" width="0.0370%" height="15" fill="rgb(247,157,1)" fg:x="129549" fg:w="195"/><text x="24.8225%" y="655.50"></text></g><g><title>[bash] (205 samples, 0.04%)</title><rect x="24.5719%" y="661" width="0.0389%" height="15" fill="rgb(249,225,5)" fg:x="129546" fg:w="205"/><text x="24.8219%" y="671.50"></text></g><g><title>[bash] (208 samples, 0.04%)</title><rect x="24.5719%" y="677" width="0.0395%" height="15" fill="rgb(242,55,13)" fg:x="129546" fg:w="208"/><text x="24.8219%" y="687.50"></text></g><g><title>expand_words (210 samples, 0.04%)</title><rect x="24.5719%" y="693" width="0.0398%" height="15" fill="rgb(230,49,50)" fg:x="129546" fg:w="210"/><text x="24.8219%" y="703.50"></text></g><g><title>execute_command (614 samples, 0.12%)</title><rect x="24.4958%" y="725" width="0.1165%" height="15" fill="rgb(241,111,38)" fg:x="129145" fg:w="614"/><text x="24.7458%" y="735.50"></text></g><g><title>execute_command_internal (611 samples, 0.12%)</title><rect x="24.4964%" y="709" width="0.1159%" height="15" fill="rgb(252,155,4)" fg:x="129148" fg:w="611"/><text x="24.7464%" y="719.50"></text></g><g><title>[bash] (219 samples, 0.04%)</title><rect x="24.6370%" y="661" width="0.0415%" height="15" fill="rgb(212,69,32)" fg:x="129889" fg:w="219"/><text x="24.8870%" y="671.50"></text></g><g><title>[bash] (384 samples, 0.07%)</title><rect x="24.6218%" y="677" width="0.0728%" height="15" fill="rgb(243,107,47)" fg:x="129809" fg:w="384"/><text x="24.8718%" y="687.50"></text></g><g><title>reader_loop (1,106 samples, 0.21%)</title><rect x="24.4907%" y="741" width="0.2098%" height="15" fill="rgb(247,130,12)" fg:x="129118" fg:w="1106"/><text x="24.7407%" y="751.50"></text></g><g><title>read_command (465 samples, 0.09%)</title><rect x="24.6123%" y="725" width="0.0882%" height="15" fill="rgb(233,74,16)" fg:x="129759" fg:w="465"/><text x="24.8623%" y="735.50"></text></g><g><title>parse_command (464 samples, 0.09%)</title><rect x="24.6125%" y="709" width="0.0880%" height="15" fill="rgb(208,58,18)" fg:x="129760" fg:w="464"/><text x="24.8625%" y="719.50"></text></g><g><title>yyparse (464 samples, 0.09%)</title><rect x="24.6125%" y="693" width="0.0880%" height="15" fill="rgb(242,225,1)" fg:x="129760" fg:w="464"/><text x="24.8625%" y="703.50"></text></g><g><title>__libc_start_main (1,125 samples, 0.21%)</title><rect x="24.4884%" y="773" width="0.2134%" height="15" fill="rgb(249,39,40)" fg:x="129106" fg:w="1125"/><text x="24.7384%" y="783.50"></text></g><g><title>main (1,125 samples, 0.21%)</title><rect x="24.4884%" y="757" width="0.2134%" height="15" fill="rgb(207,72,44)" fg:x="129106" fg:w="1125"/><text x="24.7384%" y="767.50"></text></g><g><title>_start (1,155 samples, 0.22%)</title><rect x="24.4884%" y="789" width="0.2191%" height="15" fill="rgb(215,193,12)" fg:x="129106" fg:w="1155"/><text x="24.7384%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.01%)</title><rect x="24.7142%" y="789" width="0.0118%" height="15" fill="rgb(248,41,39)" fg:x="130296" fg:w="62"/><text x="24.9642%" y="799.50"></text></g><g><title>do_syscall_64 (62 samples, 0.01%)</title><rect x="24.7142%" y="773" width="0.0118%" height="15" fill="rgb(253,85,4)" fg:x="130296" fg:w="62"/><text x="24.9642%" y="783.50"></text></g><g><title>libtool (1,532 samples, 0.29%)</title><rect x="24.4355%" y="805" width="0.2906%" height="15" fill="rgb(243,70,31)" fg:x="128827" fg:w="1532"/><text x="24.6855%" y="815.50"></text></g><g><title>copy_process (76 samples, 0.01%)</title><rect x="24.7326%" y="677" width="0.0144%" height="15" fill="rgb(253,195,26)" fg:x="130393" fg:w="76"/><text x="24.9826%" y="687.50"></text></g><g><title>__libc_start_main (78 samples, 0.01%)</title><rect x="24.7326%" y="773" width="0.0148%" height="15" fill="rgb(243,42,11)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="783.50"></text></g><g><title>__GI___clone (78 samples, 0.01%)</title><rect x="24.7326%" y="757" width="0.0148%" height="15" fill="rgb(239,66,17)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.01%)</title><rect x="24.7326%" y="741" width="0.0148%" height="15" fill="rgb(217,132,21)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="751.50"></text></g><g><title>do_syscall_64 (78 samples, 0.01%)</title><rect x="24.7326%" y="725" width="0.0148%" height="15" fill="rgb(252,202,21)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="735.50"></text></g><g><title>__do_sys_clone (78 samples, 0.01%)</title><rect x="24.7326%" y="709" width="0.0148%" height="15" fill="rgb(233,98,36)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="719.50"></text></g><g><title>kernel_clone (78 samples, 0.01%)</title><rect x="24.7326%" y="693" width="0.0148%" height="15" fill="rgb(216,153,54)" fg:x="130393" fg:w="78"/><text x="24.9826%" y="703.50"></text></g><g><title>[unknown] (97 samples, 0.02%)</title><rect x="24.7303%" y="789" width="0.0184%" height="15" fill="rgb(250,99,7)" fg:x="130381" fg:w="97"/><text x="24.9803%" y="799.50"></text></g><g><title>CreateTarget (55 samples, 0.01%)</title><rect x="24.7538%" y="757" width="0.0104%" height="15" fill="rgb(207,56,50)" fg:x="130505" fg:w="55"/><text x="25.0038%" y="767.50"></text></g><g><title>bprm_execve (55 samples, 0.01%)</title><rect x="24.7868%" y="661" width="0.0104%" height="15" fill="rgb(244,61,34)" fg:x="130679" fg:w="55"/><text x="25.0368%" y="671.50"></text></g><g><title>__execvpe_common (70 samples, 0.01%)</title><rect x="24.7866%" y="757" width="0.0133%" height="15" fill="rgb(241,50,38)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="767.50"></text></g><g><title>__GI_execve (70 samples, 0.01%)</title><rect x="24.7866%" y="741" width="0.0133%" height="15" fill="rgb(212,166,30)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.01%)</title><rect x="24.7866%" y="725" width="0.0133%" height="15" fill="rgb(249,127,32)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="735.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="24.7866%" y="709" width="0.0133%" height="15" fill="rgb(209,103,0)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="719.50"></text></g><g><title>__x64_sys_execve (70 samples, 0.01%)</title><rect x="24.7866%" y="693" width="0.0133%" height="15" fill="rgb(238,209,51)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="703.50"></text></g><g><title>do_execveat_common (70 samples, 0.01%)</title><rect x="24.7866%" y="677" width="0.0133%" height="15" fill="rgb(237,56,23)" fg:x="130678" fg:w="70"/><text x="25.0366%" y="687.50"></text></g><g><title>__libc_fork (86 samples, 0.02%)</title><rect x="24.7999%" y="757" width="0.0163%" height="15" fill="rgb(215,153,46)" fg:x="130748" fg:w="86"/><text x="25.0499%" y="767.50"></text></g><g><title>arch_fork (85 samples, 0.02%)</title><rect x="24.8001%" y="741" width="0.0161%" height="15" fill="rgb(224,49,31)" fg:x="130749" fg:w="85"/><text x="25.0501%" y="751.50"></text></g><g><title>ret_from_fork (63 samples, 0.01%)</title><rect x="24.8043%" y="725" width="0.0119%" height="15" fill="rgb(250,18,42)" fg:x="130771" fg:w="63"/><text x="25.0543%" y="735.50"></text></g><g><title>schedule_tail (63 samples, 0.01%)</title><rect x="24.8043%" y="709" width="0.0119%" height="15" fill="rgb(215,176,39)" fg:x="130771" fg:w="63"/><text x="25.0543%" y="719.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="24.8062%" y="693" width="0.0101%" height="15" fill="rgb(223,77,29)" fg:x="130781" fg:w="53"/><text x="25.0562%" y="703.50"></text></g><g><title>path_mount (62 samples, 0.01%)</title><rect x="24.8183%" y="693" width="0.0118%" height="15" fill="rgb(234,94,52)" fg:x="130845" fg:w="62"/><text x="25.0683%" y="703.50"></text></g><g><title>__mount (76 samples, 0.01%)</title><rect x="24.8172%" y="757" width="0.0144%" height="15" fill="rgb(220,154,50)" fg:x="130839" fg:w="76"/><text x="25.0672%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.01%)</title><rect x="24.8172%" y="741" width="0.0144%" height="15" fill="rgb(212,11,10)" fg:x="130839" fg:w="76"/><text x="25.0672%" y="751.50"></text></g><g><title>do_syscall_64 (76 samples, 0.01%)</title><rect x="24.8172%" y="725" width="0.0144%" height="15" fill="rgb(205,166,19)" fg:x="130839" fg:w="76"/><text x="25.0672%" y="735.50"></text></g><g><title>__x64_sys_mount (76 samples, 0.01%)</title><rect x="24.8172%" y="709" width="0.0144%" height="15" fill="rgb(244,198,16)" fg:x="130839" fg:w="76"/><text x="25.0672%" y="719.50"></text></g><g><title>__do_sys_pivot_root (86 samples, 0.02%)</title><rect x="24.8579%" y="709" width="0.0163%" height="15" fill="rgb(219,69,12)" fg:x="131054" fg:w="86"/><text x="25.1079%" y="719.50"></text></g><g><title>chroot_fs_refs (86 samples, 0.02%)</title><rect x="24.8579%" y="693" width="0.0163%" height="15" fill="rgb(245,30,7)" fg:x="131054" fg:w="86"/><text x="25.1079%" y="703.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="24.8627%" y="677" width="0.0116%" height="15" fill="rgb(218,221,48)" fg:x="131079" fg:w="61"/><text x="25.1127%" y="687.50"></text></g><g><title>syscall (87 samples, 0.02%)</title><rect x="24.8579%" y="757" width="0.0165%" height="15" fill="rgb(216,66,15)" fg:x="131054" fg:w="87"/><text x="25.1079%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.02%)</title><rect x="24.8579%" y="741" width="0.0165%" height="15" fill="rgb(226,122,50)" fg:x="131054" fg:w="87"/><text x="25.1079%" y="751.50"></text></g><g><title>do_syscall_64 (87 samples, 0.02%)</title><rect x="24.8579%" y="725" width="0.0165%" height="15" fill="rgb(239,156,16)" fg:x="131054" fg:w="87"/><text x="25.1079%" y="735.50"></text></g><g><title>Pid1Main (679 samples, 0.13%)</title><rect x="24.7489%" y="773" width="0.1288%" height="15" fill="rgb(224,27,38)" fg:x="130479" fg:w="679"/><text x="24.9989%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (102 samples, 0.02%)</title><rect x="24.8839%" y="725" width="0.0193%" height="15" fill="rgb(224,39,27)" fg:x="131191" fg:w="102"/><text x="25.1339%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (102 samples, 0.02%)</title><rect x="24.8839%" y="709" width="0.0193%" height="15" fill="rgb(215,92,29)" fg:x="131191" fg:w="102"/><text x="25.1339%" y="719.50"></text></g><g><title>native_write_msr (102 samples, 0.02%)</title><rect x="24.8839%" y="693" width="0.0193%" height="15" fill="rgb(207,159,16)" fg:x="131191" fg:w="102"/><text x="25.1339%" y="703.50"></text></g><g><title>schedule_tail (112 samples, 0.02%)</title><rect x="24.8824%" y="757" width="0.0212%" height="15" fill="rgb(238,163,47)" fg:x="131183" fg:w="112"/><text x="25.1324%" y="767.50"></text></g><g><title>finish_task_switch (112 samples, 0.02%)</title><rect x="24.8824%" y="741" width="0.0212%" height="15" fill="rgb(219,91,49)" fg:x="131183" fg:w="112"/><text x="25.1324%" y="751.50"></text></g><g><title>__GI___clone (818 samples, 0.16%)</title><rect x="24.7487%" y="789" width="0.1552%" height="15" fill="rgb(227,167,31)" fg:x="130478" fg:w="818"/><text x="24.9987%" y="799.50"></text></g><g><title>ret_from_fork (120 samples, 0.02%)</title><rect x="24.8811%" y="773" width="0.0228%" height="15" fill="rgb(234,80,54)" fg:x="131176" fg:w="120"/><text x="25.1311%" y="783.50"></text></g><g><title>handle_mm_fault (71 samples, 0.01%)</title><rect x="24.9262%" y="677" width="0.0135%" height="15" fill="rgb(212,114,2)" fg:x="131414" fg:w="71"/><text x="25.1762%" y="687.50"></text></g><g><title>exc_page_fault (78 samples, 0.01%)</title><rect x="24.9253%" y="709" width="0.0148%" height="15" fill="rgb(234,50,24)" fg:x="131409" fg:w="78"/><text x="25.1753%" y="719.50"></text></g><g><title>do_user_addr_fault (77 samples, 0.01%)</title><rect x="24.9255%" y="693" width="0.0146%" height="15" fill="rgb(221,68,8)" fg:x="131410" fg:w="77"/><text x="25.1755%" y="703.50"></text></g><g><title>asm_exc_page_fault (85 samples, 0.02%)</title><rect x="24.9251%" y="725" width="0.0161%" height="15" fill="rgb(254,180,31)" fg:x="131408" fg:w="85"/><text x="25.1751%" y="735.50"></text></g><g><title>[libc-2.31.so] (115 samples, 0.02%)</title><rect x="24.9220%" y="741" width="0.0218%" height="15" fill="rgb(247,130,50)" fg:x="131392" fg:w="115"/><text x="25.1720%" y="751.50"></text></g><g><title>__libc_start_main (250 samples, 0.05%)</title><rect x="24.9112%" y="773" width="0.0474%" height="15" fill="rgb(211,109,4)" fg:x="131335" fg:w="250"/><text x="25.1612%" y="783.50"></text></g><g><title>main (209 samples, 0.04%)</title><rect x="24.9190%" y="757" width="0.0396%" height="15" fill="rgb(238,50,21)" fg:x="131376" fg:w="209"/><text x="25.1690%" y="767.50"></text></g><g><title>do_mmap (76 samples, 0.01%)</title><rect x="24.9693%" y="517" width="0.0144%" height="15" fill="rgb(225,57,45)" fg:x="131641" fg:w="76"/><text x="25.2193%" y="527.50"></text></g><g><title>mmap_region (72 samples, 0.01%)</title><rect x="24.9700%" y="501" width="0.0137%" height="15" fill="rgb(209,196,50)" fg:x="131645" fg:w="72"/><text x="25.2200%" y="511.50"></text></g><g><title>ksys_mmap_pgoff (79 samples, 0.01%)</title><rect x="24.9691%" y="549" width="0.0150%" height="15" fill="rgb(242,140,13)" fg:x="131640" fg:w="79"/><text x="25.2191%" y="559.50"></text></g><g><title>vm_mmap_pgoff (78 samples, 0.01%)</title><rect x="24.9693%" y="533" width="0.0148%" height="15" fill="rgb(217,111,7)" fg:x="131641" fg:w="78"/><text x="25.2193%" y="543.50"></text></g><g><title>_dl_map_segments (96 samples, 0.02%)</title><rect x="24.9668%" y="629" width="0.0182%" height="15" fill="rgb(253,193,51)" fg:x="131628" fg:w="96"/><text x="25.2168%" y="639.50"></text></g><g><title>__mmap64 (85 samples, 0.02%)</title><rect x="24.9689%" y="613" width="0.0161%" height="15" fill="rgb(252,70,29)" fg:x="131639" fg:w="85"/><text x="25.2189%" y="623.50"></text></g><g><title>__mmap64 (85 samples, 0.02%)</title><rect x="24.9689%" y="597" width="0.0161%" height="15" fill="rgb(232,127,12)" fg:x="131639" fg:w="85"/><text x="25.2189%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.02%)</title><rect x="24.9689%" y="581" width="0.0161%" height="15" fill="rgb(211,180,21)" fg:x="131639" fg:w="85"/><text x="25.2189%" y="591.50"></text></g><g><title>do_syscall_64 (84 samples, 0.02%)</title><rect x="24.9691%" y="565" width="0.0159%" height="15" fill="rgb(229,72,13)" fg:x="131640" fg:w="84"/><text x="25.2191%" y="575.50"></text></g><g><title>_dl_map_object_from_fd (133 samples, 0.03%)</title><rect x="24.9655%" y="645" width="0.0252%" height="15" fill="rgb(240,211,49)" fg:x="131621" fg:w="133"/><text x="25.2155%" y="655.50"></text></g><g><title>_dl_catch_exception (177 samples, 0.03%)</title><rect x="24.9596%" y="693" width="0.0336%" height="15" fill="rgb(219,149,40)" fg:x="131590" fg:w="177"/><text x="25.2096%" y="703.50"></text></g><g><title>openaux (177 samples, 0.03%)</title><rect x="24.9596%" y="677" width="0.0336%" height="15" fill="rgb(210,127,46)" fg:x="131590" fg:w="177"/><text x="25.2096%" y="687.50"></text></g><g><title>_dl_map_object (177 samples, 0.03%)</title><rect x="24.9596%" y="661" width="0.0336%" height="15" fill="rgb(220,106,7)" fg:x="131590" fg:w="177"/><text x="25.2096%" y="671.50"></text></g><g><title>_dl_map_object_deps (183 samples, 0.03%)</title><rect x="24.9592%" y="709" width="0.0347%" height="15" fill="rgb(249,31,22)" fg:x="131588" fg:w="183"/><text x="25.2092%" y="719.50"></text></g><g><title>dl_new_hash (65 samples, 0.01%)</title><rect x="25.0114%" y="645" width="0.0123%" height="15" fill="rgb(253,1,49)" fg:x="131863" fg:w="65"/><text x="25.2614%" y="655.50"></text></g><g><title>_dl_lookup_symbol_x (212 samples, 0.04%)</title><rect x="25.0099%" y="661" width="0.0402%" height="15" fill="rgb(227,144,33)" fg:x="131855" fg:w="212"/><text x="25.2599%" y="671.50"></text></g><g><title>do_lookup_x (139 samples, 0.03%)</title><rect x="25.0237%" y="645" width="0.0264%" height="15" fill="rgb(249,163,44)" fg:x="131928" fg:w="139"/><text x="25.2737%" y="655.50"></text></g><g><title>elf_machine_rela (263 samples, 0.05%)</title><rect x="25.0015%" y="677" width="0.0499%" height="15" fill="rgb(234,15,39)" fg:x="131811" fg:w="263"/><text x="25.2515%" y="687.50"></text></g><g><title>elf_dynamic_do_Rela (295 samples, 0.06%)</title><rect x="24.9966%" y="693" width="0.0560%" height="15" fill="rgb(207,66,16)" fg:x="131785" fg:w="295"/><text x="25.2466%" y="703.50"></text></g><g><title>_dl_relocate_object (308 samples, 0.06%)</title><rect x="24.9947%" y="709" width="0.0584%" height="15" fill="rgb(233,112,24)" fg:x="131775" fg:w="308"/><text x="25.2447%" y="719.50"></text></g><g><title>[ld-2.31.so] (512 samples, 0.10%)</title><rect x="24.9587%" y="725" width="0.0971%" height="15" fill="rgb(230,90,22)" fg:x="131585" fg:w="512"/><text x="25.2087%" y="735.50"></text></g><g><title>_dl_start (514 samples, 0.10%)</title><rect x="24.9587%" y="773" width="0.0975%" height="15" fill="rgb(229,61,13)" fg:x="131585" fg:w="514"/><text x="25.2087%" y="783.50"></text></g><g><title>_dl_start_final (514 samples, 0.10%)</title><rect x="24.9587%" y="757" width="0.0975%" height="15" fill="rgb(225,57,24)" fg:x="131585" fg:w="514"/><text x="25.2087%" y="767.50"></text></g><g><title>_dl_sysdep_start (514 samples, 0.10%)</title><rect x="24.9587%" y="741" width="0.0975%" height="15" fill="rgb(208,169,48)" fg:x="131585" fg:w="514"/><text x="25.2087%" y="751.50"></text></g><g><title>_start (765 samples, 0.15%)</title><rect x="24.9112%" y="789" width="0.1451%" height="15" fill="rgb(244,218,51)" fg:x="131335" fg:w="765"/><text x="25.1612%" y="799.50"></text></g><g><title>asm_exc_page_fault (120 samples, 0.02%)</title><rect x="25.0563%" y="789" width="0.0228%" height="15" fill="rgb(214,148,10)" fg:x="132100" fg:w="120"/><text x="25.3063%" y="799.50"></text></g><g><title>begin_new_exec (61 samples, 0.01%)</title><rect x="25.0808%" y="693" width="0.0116%" height="15" fill="rgb(225,174,27)" fg:x="132229" fg:w="61"/><text x="25.3308%" y="703.50"></text></g><g><title>mmput (60 samples, 0.01%)</title><rect x="25.0810%" y="677" width="0.0114%" height="15" fill="rgb(230,96,26)" fg:x="132230" fg:w="60"/><text x="25.3310%" y="687.50"></text></g><g><title>exit_mmap (60 samples, 0.01%)</title><rect x="25.0810%" y="661" width="0.0114%" height="15" fill="rgb(232,10,30)" fg:x="132230" fg:w="60"/><text x="25.3310%" y="671.50"></text></g><g><title>__x64_sys_execve (130 samples, 0.02%)</title><rect x="25.0795%" y="757" width="0.0247%" height="15" fill="rgb(222,8,50)" fg:x="132222" fg:w="130"/><text x="25.3295%" y="767.50"></text></g><g><title>do_execveat_common (130 samples, 0.02%)</title><rect x="25.0795%" y="741" width="0.0247%" height="15" fill="rgb(213,81,27)" fg:x="132222" fg:w="130"/><text x="25.3295%" y="751.50"></text></g><g><title>bprm_execve (130 samples, 0.02%)</title><rect x="25.0795%" y="725" width="0.0247%" height="15" fill="rgb(245,50,10)" fg:x="132222" fg:w="130"/><text x="25.3295%" y="735.50"></text></g><g><title>load_elf_binary (130 samples, 0.02%)</title><rect x="25.0795%" y="709" width="0.0247%" height="15" fill="rgb(216,100,18)" fg:x="132222" fg:w="130"/><text x="25.3295%" y="719.50"></text></g><g><title>mmput (106 samples, 0.02%)</title><rect x="25.1074%" y="725" width="0.0201%" height="15" fill="rgb(236,147,54)" fg:x="132369" fg:w="106"/><text x="25.3574%" y="735.50"></text></g><g><title>exit_mmap (106 samples, 0.02%)</title><rect x="25.1074%" y="709" width="0.0201%" height="15" fill="rgb(205,143,26)" fg:x="132369" fg:w="106"/><text x="25.3574%" y="719.50"></text></g><g><title>unmap_vmas (53 samples, 0.01%)</title><rect x="25.1174%" y="693" width="0.0101%" height="15" fill="rgb(236,26,9)" fg:x="132422" fg:w="53"/><text x="25.3674%" y="703.50"></text></g><g><title>__x64_sys_exit (133 samples, 0.03%)</title><rect x="25.1041%" y="757" width="0.0252%" height="15" fill="rgb(221,165,53)" fg:x="132352" fg:w="133"/><text x="25.3541%" y="767.50"></text></g><g><title>do_exit (133 samples, 0.03%)</title><rect x="25.1041%" y="741" width="0.0252%" height="15" fill="rgb(214,110,17)" fg:x="132352" fg:w="133"/><text x="25.3541%" y="751.50"></text></g><g><title>exit_mmap (56 samples, 0.01%)</title><rect x="25.1297%" y="693" width="0.0106%" height="15" fill="rgb(237,197,12)" fg:x="132487" fg:w="56"/><text x="25.3797%" y="703.50"></text></g><g><title>mmput (57 samples, 0.01%)</title><rect x="25.1297%" y="709" width="0.0108%" height="15" fill="rgb(205,84,17)" fg:x="132487" fg:w="57"/><text x="25.3797%" y="719.50"></text></g><g><title>__x64_sys_exit_group (63 samples, 0.01%)</title><rect x="25.1294%" y="757" width="0.0119%" height="15" fill="rgb(237,18,45)" fg:x="132485" fg:w="63"/><text x="25.3794%" y="767.50"></text></g><g><title>do_group_exit (63 samples, 0.01%)</title><rect x="25.1294%" y="741" width="0.0119%" height="15" fill="rgb(221,87,14)" fg:x="132485" fg:w="63"/><text x="25.3794%" y="751.50"></text></g><g><title>do_exit (63 samples, 0.01%)</title><rect x="25.1294%" y="725" width="0.0119%" height="15" fill="rgb(238,186,15)" fg:x="132485" fg:w="63"/><text x="25.3794%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (330 samples, 0.06%)</title><rect x="25.0791%" y="789" width="0.0626%" height="15" fill="rgb(208,115,11)" fg:x="132220" fg:w="330"/><text x="25.3291%" y="799.50"></text></g><g><title>do_syscall_64 (329 samples, 0.06%)</title><rect x="25.0793%" y="773" width="0.0624%" height="15" fill="rgb(254,175,0)" fg:x="132221" fg:w="329"/><text x="25.3293%" y="783.50"></text></g><g><title>linux-sandbox (2,194 samples, 0.42%)</title><rect x="24.7261%" y="805" width="0.4162%" height="15" fill="rgb(227,24,42)" fg:x="130359" fg:w="2194"/><text x="24.9761%" y="815.50"></text></g><g><title>__libc_start_main (71 samples, 0.01%)</title><rect x="25.1453%" y="773" width="0.0135%" height="15" fill="rgb(223,211,37)" fg:x="132569" fg:w="71"/><text x="25.3953%" y="783.50"></text></g><g><title>main (67 samples, 0.01%)</title><rect x="25.1461%" y="757" width="0.0127%" height="15" fill="rgb(235,49,27)" fg:x="132573" fg:w="67"/><text x="25.3961%" y="767.50"></text></g><g><title>[ld-2.31.so] (73 samples, 0.01%)</title><rect x="25.1588%" y="725" width="0.0138%" height="15" fill="rgb(254,97,51)" fg:x="132640" fg:w="73"/><text x="25.4088%" y="735.50"></text></g><g><title>_start (145 samples, 0.03%)</title><rect x="25.1453%" y="789" width="0.0275%" height="15" fill="rgb(249,51,40)" fg:x="132569" fg:w="145"/><text x="25.3953%" y="799.50"></text></g><g><title>_dl_start (74 samples, 0.01%)</title><rect x="25.1588%" y="773" width="0.0140%" height="15" fill="rgb(210,128,45)" fg:x="132640" fg:w="74"/><text x="25.4088%" y="783.50"></text></g><g><title>_dl_start_final (74 samples, 0.01%)</title><rect x="25.1588%" y="757" width="0.0140%" height="15" fill="rgb(224,137,50)" fg:x="132640" fg:w="74"/><text x="25.4088%" y="767.50"></text></g><g><title>_dl_sysdep_start (74 samples, 0.01%)</title><rect x="25.1588%" y="741" width="0.0140%" height="15" fill="rgb(242,15,9)" fg:x="132640" fg:w="74"/><text x="25.4088%" y="751.50"></text></g><g><title>process-wrapper (191 samples, 0.04%)</title><rect x="25.1434%" y="805" width="0.0362%" height="15" fill="rgb(233,187,41)" fg:x="132559" fg:w="191"/><text x="25.3934%" y="815.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="25.1931%" y="725" width="0.0112%" height="15" fill="rgb(227,2,29)" fg:x="132821" fg:w="59"/><text x="25.4431%" y="735.50"></text></g><g><title>kernel_wait4 (59 samples, 0.01%)</title><rect x="25.1931%" y="709" width="0.0112%" height="15" fill="rgb(222,70,3)" fg:x="132821" fg:w="59"/><text x="25.4431%" y="719.50"></text></g><g><title>do_wait (58 samples, 0.01%)</title><rect x="25.1933%" y="693" width="0.0110%" height="15" fill="rgb(213,11,42)" fg:x="132822" fg:w="58"/><text x="25.4433%" y="703.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (62 samples, 0.01%)</title><rect x="25.1927%" y="773" width="0.0118%" height="15" fill="rgb(225,150,9)" fg:x="132819" fg:w="62"/><text x="25.4427%" y="783.50"></text></g><g><title>__GI___wait4 (62 samples, 0.01%)</title><rect x="25.1927%" y="757" width="0.0118%" height="15" fill="rgb(230,162,45)" fg:x="132819" fg:w="62"/><text x="25.4427%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="25.1931%" y="741" width="0.0114%" height="15" fill="rgb(222,14,52)" fg:x="132821" fg:w="60"/><text x="25.4431%" y="751.50"></text></g><g><title>[perf-947659.map] (142 samples, 0.03%)</title><rect x="25.1802%" y="789" width="0.0269%" height="15" fill="rgb(254,198,14)" fg:x="132753" fg:w="142"/><text x="25.4302%" y="799.50"></text></g><g><title>process_reaper (150 samples, 0.03%)</title><rect x="25.1796%" y="805" width="0.0285%" height="15" fill="rgb(220,217,30)" fg:x="132750" fg:w="150"/><text x="25.4296%" y="815.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.01%)</title><rect x="25.3314%" y="613" width="0.0137%" height="15" fill="rgb(215,146,41)" fg:x="133550" fg:w="72"/><text x="25.5814%" y="623.50"></text></g><g><title>schedule (69 samples, 0.01%)</title><rect x="25.3319%" y="597" width="0.0131%" height="15" fill="rgb(217,27,36)" fg:x="133553" fg:w="69"/><text x="25.5819%" y="607.50"></text></g><g><title>__schedule (68 samples, 0.01%)</title><rect x="25.3321%" y="581" width="0.0129%" height="15" fill="rgb(219,218,39)" fg:x="133554" fg:w="68"/><text x="25.5821%" y="591.50"></text></g><g><title>do_syscall_64 (88 samples, 0.02%)</title><rect x="25.3295%" y="677" width="0.0167%" height="15" fill="rgb(219,4,42)" fg:x="133540" fg:w="88"/><text x="25.5795%" y="687.50"></text></g><g><title>__x64_sys_futex (86 samples, 0.02%)</title><rect x="25.3298%" y="661" width="0.0163%" height="15" fill="rgb(249,119,36)" fg:x="133542" fg:w="86"/><text x="25.5798%" y="671.50"></text></g><g><title>do_futex (85 samples, 0.02%)</title><rect x="25.3300%" y="645" width="0.0161%" height="15" fill="rgb(209,23,33)" fg:x="133543" fg:w="85"/><text x="25.5800%" y="655.50"></text></g><g><title>futex_wait (82 samples, 0.02%)</title><rect x="25.3306%" y="629" width="0.0156%" height="15" fill="rgb(211,10,0)" fg:x="133546" fg:w="82"/><text x="25.5806%" y="639.50"></text></g><g><title>__pthread_cond_wait (109 samples, 0.02%)</title><rect x="25.3276%" y="741" width="0.0207%" height="15" fill="rgb(208,99,37)" fg:x="133530" fg:w="109"/><text x="25.5776%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (109 samples, 0.02%)</title><rect x="25.3276%" y="725" width="0.0207%" height="15" fill="rgb(213,132,31)" fg:x="133530" fg:w="109"/><text x="25.5776%" y="735.50"></text></g><g><title>futex_wait_cancelable (105 samples, 0.02%)</title><rect x="25.3283%" y="709" width="0.0199%" height="15" fill="rgb(243,129,40)" fg:x="133534" fg:w="105"/><text x="25.5783%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (99 samples, 0.02%)</title><rect x="25.3295%" y="693" width="0.0188%" height="15" fill="rgb(210,66,33)" fg:x="133540" fg:w="99"/><text x="25.5795%" y="703.50"></text></g><g><title>Parker::park (141 samples, 0.03%)</title><rect x="25.3243%" y="757" width="0.0267%" height="15" fill="rgb(209,189,4)" fg:x="133513" fg:w="141"/><text x="25.5743%" y="767.50"></text></g><g><title>Unsafe_Park (157 samples, 0.03%)</title><rect x="25.3230%" y="773" width="0.0298%" height="15" fill="rgb(214,107,37)" fg:x="133506" fg:w="157"/><text x="25.5730%" y="783.50"></text></g><g><title>[perf-947659.map] (745 samples, 0.14%)</title><rect x="25.2121%" y="789" width="0.1413%" height="15" fill="rgb(245,88,54)" fg:x="132921" fg:w="745"/><text x="25.4621%" y="799.50"></text></g><g><title>profile-writer- (794 samples, 0.15%)</title><rect x="25.2081%" y="805" width="0.1506%" height="15" fill="rgb(205,146,20)" fg:x="132900" fg:w="794"/><text x="25.4581%" y="815.50"></text></g><g><title>[python3.9] (71 samples, 0.01%)</title><rect x="25.3778%" y="773" width="0.0135%" height="15" fill="rgb(220,161,25)" fg:x="133795" fg:w="71"/><text x="25.6278%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (84 samples, 0.02%)</title><rect x="25.4050%" y="757" width="0.0159%" height="15" fill="rgb(215,152,15)" fg:x="133938" fg:w="84"/><text x="25.6550%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (69 samples, 0.01%)</title><rect x="25.4078%" y="741" width="0.0131%" height="15" fill="rgb(233,192,44)" fg:x="133953" fg:w="69"/><text x="25.6578%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (69 samples, 0.01%)</title><rect x="25.4078%" y="725" width="0.0131%" height="15" fill="rgb(240,170,46)" fg:x="133953" fg:w="69"/><text x="25.6578%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (55 samples, 0.01%)</title><rect x="25.4105%" y="709" width="0.0104%" height="15" fill="rgb(207,104,33)" fg:x="133967" fg:w="55"/><text x="25.6605%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.01%)</title><rect x="25.4107%" y="693" width="0.0102%" height="15" fill="rgb(219,21,39)" fg:x="133968" fg:w="54"/><text x="25.6607%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (149 samples, 0.03%)</title><rect x="25.3930%" y="773" width="0.0283%" height="15" fill="rgb(214,133,29)" fg:x="133875" fg:w="149"/><text x="25.6430%" y="783.50"></text></g><g><title>[unknown] (336 samples, 0.06%)</title><rect x="25.3674%" y="789" width="0.0637%" height="15" fill="rgb(226,93,6)" fg:x="133740" fg:w="336"/><text x="25.6174%" y="799.50"></text></g><g><title>Py_RunMain (72 samples, 0.01%)</title><rect x="25.4311%" y="741" width="0.0137%" height="15" fill="rgb(252,222,34)" fg:x="134076" fg:w="72"/><text x="25.6811%" y="751.50"></text></g><g><title>Py_FinalizeEx (57 samples, 0.01%)</title><rect x="25.4340%" y="725" width="0.0108%" height="15" fill="rgb(252,92,48)" fg:x="134091" fg:w="57"/><text x="25.6840%" y="735.50"></text></g><g><title>Py_InitializeFromConfig (72 samples, 0.01%)</title><rect x="25.4450%" y="709" width="0.0137%" height="15" fill="rgb(245,223,24)" fg:x="134149" fg:w="72"/><text x="25.6950%" y="719.50"></text></g><g><title>[python3.9] (72 samples, 0.01%)</title><rect x="25.4450%" y="693" width="0.0137%" height="15" fill="rgb(205,176,3)" fg:x="134149" fg:w="72"/><text x="25.6950%" y="703.50"></text></g><g><title>[python3.9] (72 samples, 0.01%)</title><rect x="25.4450%" y="677" width="0.0137%" height="15" fill="rgb(235,151,15)" fg:x="134149" fg:w="72"/><text x="25.6950%" y="687.50"></text></g><g><title>Py_BytesMain (148 samples, 0.03%)</title><rect x="25.4311%" y="757" width="0.0281%" height="15" fill="rgb(237,209,11)" fg:x="134076" fg:w="148"/><text x="25.6811%" y="767.50"></text></g><g><title>[python3.9] (76 samples, 0.01%)</title><rect x="25.4448%" y="741" width="0.0144%" height="15" fill="rgb(243,227,24)" fg:x="134148" fg:w="76"/><text x="25.6948%" y="751.50"></text></g><g><title>[python3.9] (76 samples, 0.01%)</title><rect x="25.4448%" y="725" width="0.0144%" height="15" fill="rgb(239,193,16)" fg:x="134148" fg:w="76"/><text x="25.6948%" y="735.50"></text></g><g><title>__libc_start_main (149 samples, 0.03%)</title><rect x="25.4311%" y="773" width="0.0283%" height="15" fill="rgb(231,27,9)" fg:x="134076" fg:w="149"/><text x="25.6811%" y="783.50"></text></g><g><title>_start (160 samples, 0.03%)</title><rect x="25.4311%" y="789" width="0.0303%" height="15" fill="rgb(219,169,10)" fg:x="134076" fg:w="160"/><text x="25.6811%" y="799.50"></text></g><g><title>python3 (548 samples, 0.10%)</title><rect x="25.3611%" y="805" width="0.1039%" height="15" fill="rgb(244,229,43)" fg:x="133707" fg:w="548"/><text x="25.6111%" y="815.50"></text></g><g><title>[sed] (65 samples, 0.01%)</title><rect x="25.4971%" y="677" width="0.0123%" height="15" fill="rgb(254,38,20)" fg:x="134424" fg:w="65"/><text x="25.7471%" y="687.50"></text></g><g><title>[sed] (104 samples, 0.02%)</title><rect x="25.4966%" y="693" width="0.0197%" height="15" fill="rgb(250,47,30)" fg:x="134421" fg:w="104"/><text x="25.7466%" y="703.50"></text></g><g><title>[sed] (141 samples, 0.03%)</title><rect x="25.4907%" y="709" width="0.0267%" height="15" fill="rgb(224,124,36)" fg:x="134390" fg:w="141"/><text x="25.7407%" y="719.50"></text></g><g><title>[sed] (212 samples, 0.04%)</title><rect x="25.4888%" y="725" width="0.0402%" height="15" fill="rgb(246,68,51)" fg:x="134380" fg:w="212"/><text x="25.7388%" y="735.50"></text></g><g><title>[sed] (236 samples, 0.04%)</title><rect x="25.4863%" y="741" width="0.0448%" height="15" fill="rgb(253,43,49)" fg:x="134367" fg:w="236"/><text x="25.7363%" y="751.50"></text></g><g><title>[sed] (301 samples, 0.06%)</title><rect x="25.4861%" y="757" width="0.0571%" height="15" fill="rgb(219,54,36)" fg:x="134366" fg:w="301"/><text x="25.7361%" y="767.50"></text></g><g><title>__libc_start_main (322 samples, 0.06%)</title><rect x="25.4861%" y="773" width="0.0611%" height="15" fill="rgb(227,133,34)" fg:x="134366" fg:w="322"/><text x="25.7361%" y="783.50"></text></g><g><title>[sed] (330 samples, 0.06%)</title><rect x="25.4856%" y="789" width="0.0626%" height="15" fill="rgb(247,227,15)" fg:x="134363" fg:w="330"/><text x="25.7356%" y="799.50"></text></g><g><title>_IO_getdelim (65 samples, 0.01%)</title><rect x="25.5696%" y="693" width="0.0123%" height="15" fill="rgb(229,96,14)" fg:x="134806" fg:w="65"/><text x="25.8196%" y="703.50"></text></g><g><title>__GI__dl_addr (398 samples, 0.08%)</title><rect x="25.6018%" y="629" width="0.0755%" height="15" fill="rgb(220,79,17)" fg:x="134976" fg:w="398"/><text x="25.8518%" y="639.50"></text></g><g><title>determine_info (372 samples, 0.07%)</title><rect x="25.6068%" y="613" width="0.0706%" height="15" fill="rgb(205,131,53)" fg:x="135002" fg:w="372"/><text x="25.8568%" y="623.50"></text></g><g><title>__fopen_internal (486 samples, 0.09%)</title><rect x="25.5874%" y="693" width="0.0922%" height="15" fill="rgb(209,50,29)" fg:x="134900" fg:w="486"/><text x="25.8374%" y="703.50"></text></g><g><title>malloc_hook_ini (412 samples, 0.08%)</title><rect x="25.6015%" y="677" width="0.0781%" height="15" fill="rgb(245,86,46)" fg:x="134974" fg:w="412"/><text x="25.8515%" y="687.50"></text></g><g><title>ptmalloc_init (412 samples, 0.08%)</title><rect x="25.6015%" y="661" width="0.0781%" height="15" fill="rgb(235,66,46)" fg:x="134974" fg:w="412"/><text x="25.8515%" y="671.50"></text></g><g><title>ptmalloc_init (412 samples, 0.08%)</title><rect x="25.6015%" y="645" width="0.0781%" height="15" fill="rgb(232,148,31)" fg:x="134974" fg:w="412"/><text x="25.8515%" y="655.50"></text></g><g><title>selinuxfs_exists (582 samples, 0.11%)</title><rect x="25.5696%" y="709" width="0.1104%" height="15" fill="rgb(217,149,8)" fg:x="134806" fg:w="582"/><text x="25.8196%" y="719.50"></text></g><g><title>[libselinux.so.1] (655 samples, 0.12%)</title><rect x="25.5561%" y="725" width="0.1242%" height="15" fill="rgb(209,183,11)" fg:x="134735" fg:w="655"/><text x="25.8061%" y="735.50"></text></g><g><title>_init (77 samples, 0.01%)</title><rect x="25.6806%" y="725" width="0.0146%" height="15" fill="rgb(208,55,20)" fg:x="135391" fg:w="77"/><text x="25.9306%" y="735.50"></text></g><g><title>_dl_start_user (793 samples, 0.15%)</title><rect x="25.5554%" y="789" width="0.1504%" height="15" fill="rgb(218,39,14)" fg:x="134731" fg:w="793"/><text x="25.8054%" y="799.50"></text></g><g><title>_dl_init (792 samples, 0.15%)</title><rect x="25.5556%" y="773" width="0.1502%" height="15" fill="rgb(216,169,33)" fg:x="134732" fg:w="792"/><text x="25.8056%" y="783.50"></text></g><g><title>call_init (790 samples, 0.15%)</title><rect x="25.5559%" y="757" width="0.1498%" height="15" fill="rgb(233,80,24)" fg:x="134734" fg:w="790"/><text x="25.8059%" y="767.50"></text></g><g><title>call_init (790 samples, 0.15%)</title><rect x="25.5559%" y="741" width="0.1498%" height="15" fill="rgb(213,179,31)" fg:x="134734" fg:w="790"/><text x="25.8059%" y="751.50"></text></g><g><title>init_cacheinfo (55 samples, 0.01%)</title><rect x="25.6954%" y="725" width="0.0104%" height="15" fill="rgb(209,19,5)" fg:x="135469" fg:w="55"/><text x="25.9454%" y="735.50"></text></g><g><title>__pthread_initialize_minimal_internal (91 samples, 0.02%)</title><rect x="25.7065%" y="773" width="0.0173%" height="15" fill="rgb(219,18,35)" fg:x="135528" fg:w="91"/><text x="25.9565%" y="783.50"></text></g><g><title>_init (110 samples, 0.02%)</title><rect x="25.7058%" y="789" width="0.0209%" height="15" fill="rgb(209,169,16)" fg:x="135524" fg:w="110"/><text x="25.9558%" y="799.50"></text></g><g><title>do_user_addr_fault (72 samples, 0.01%)</title><rect x="25.7631%" y="565" width="0.0137%" height="15" fill="rgb(245,90,51)" fg:x="135826" fg:w="72"/><text x="26.0131%" y="575.50"></text></g><g><title>handle_mm_fault (64 samples, 0.01%)</title><rect x="25.7646%" y="549" width="0.0121%" height="15" fill="rgb(220,99,45)" fg:x="135834" fg:w="64"/><text x="26.0146%" y="559.50"></text></g><g><title>asm_exc_page_fault (73 samples, 0.01%)</title><rect x="25.7631%" y="597" width="0.0138%" height="15" fill="rgb(249,89,25)" fg:x="135826" fg:w="73"/><text x="26.0131%" y="607.50"></text></g><g><title>exc_page_fault (73 samples, 0.01%)</title><rect x="25.7631%" y="581" width="0.0138%" height="15" fill="rgb(239,193,0)" fg:x="135826" fg:w="73"/><text x="26.0131%" y="591.50"></text></g><g><title>[ld-2.31.so] (96 samples, 0.02%)</title><rect x="25.7600%" y="613" width="0.0182%" height="15" fill="rgb(231,126,1)" fg:x="135810" fg:w="96"/><text x="26.0100%" y="623.50"></text></g><g><title>vma_interval_tree_insert (68 samples, 0.01%)</title><rect x="25.8069%" y="437" width="0.0129%" height="15" fill="rgb(243,166,3)" fg:x="136057" fg:w="68"/><text x="26.0569%" y="447.50"></text></g><g><title>__vma_adjust (179 samples, 0.03%)</title><rect x="25.7940%" y="453" width="0.0340%" height="15" fill="rgb(223,22,34)" fg:x="135989" fg:w="179"/><text x="26.0440%" y="463.50"></text></g><g><title>__split_vma (261 samples, 0.05%)</title><rect x="25.7932%" y="469" width="0.0495%" height="15" fill="rgb(251,52,51)" fg:x="135985" fg:w="261"/><text x="26.0432%" y="479.50"></text></g><g><title>vm_area_dup (78 samples, 0.01%)</title><rect x="25.8279%" y="453" width="0.0148%" height="15" fill="rgb(221,165,28)" fg:x="136168" fg:w="78"/><text x="26.0779%" y="463.50"></text></g><g><title>kmem_cache_alloc (63 samples, 0.01%)</title><rect x="25.8308%" y="437" width="0.0119%" height="15" fill="rgb(218,121,47)" fg:x="136183" fg:w="63"/><text x="26.0808%" y="447.50"></text></g><g><title>unmap_region (68 samples, 0.01%)</title><rect x="25.8528%" y="469" width="0.0129%" height="15" fill="rgb(209,120,9)" fg:x="136299" fg:w="68"/><text x="26.1028%" y="479.50"></text></g><g><title>__do_munmap (395 samples, 0.07%)</title><rect x="25.7910%" y="485" width="0.0749%" height="15" fill="rgb(236,68,12)" fg:x="135973" fg:w="395"/><text x="26.0410%" y="495.50"></text></g><g><title>perf_iterate_sb (89 samples, 0.02%)</title><rect x="25.8776%" y="469" width="0.0169%" height="15" fill="rgb(225,194,26)" fg:x="136430" fg:w="89"/><text x="26.1276%" y="479.50"></text></g><g><title>perf_iterate_ctx (80 samples, 0.02%)</title><rect x="25.8793%" y="453" width="0.0152%" height="15" fill="rgb(231,84,39)" fg:x="136439" fg:w="80"/><text x="26.1293%" y="463.50"></text></g><g><title>perf_event_mmap_output (67 samples, 0.01%)</title><rect x="25.8818%" y="437" width="0.0127%" height="15" fill="rgb(210,11,45)" fg:x="136452" fg:w="67"/><text x="26.1318%" y="447.50"></text></g><g><title>perf_event_mmap (159 samples, 0.03%)</title><rect x="25.8666%" y="485" width="0.0302%" height="15" fill="rgb(224,54,52)" fg:x="136372" fg:w="159"/><text x="26.1166%" y="495.50"></text></g><g><title>vma_link (63 samples, 0.01%)</title><rect x="25.9031%" y="485" width="0.0119%" height="15" fill="rgb(238,102,14)" fg:x="136564" fg:w="63"/><text x="26.1531%" y="495.50"></text></g><g><title>mmap_region (710 samples, 0.13%)</title><rect x="25.7851%" y="501" width="0.1347%" height="15" fill="rgb(243,160,52)" fg:x="135942" fg:w="710"/><text x="26.0351%" y="511.50"></text></g><g><title>do_mmap (730 samples, 0.14%)</title><rect x="25.7815%" y="517" width="0.1385%" height="15" fill="rgb(216,114,19)" fg:x="135923" fg:w="730"/><text x="26.0315%" y="527.50"></text></g><g><title>ksys_mmap_pgoff (753 samples, 0.14%)</title><rect x="25.7794%" y="549" width="0.1428%" height="15" fill="rgb(244,166,37)" fg:x="135912" fg:w="753"/><text x="26.0294%" y="559.50"></text></g><g><title>vm_mmap_pgoff (743 samples, 0.14%)</title><rect x="25.7813%" y="533" width="0.1409%" height="15" fill="rgb(246,29,44)" fg:x="135922" fg:w="743"/><text x="26.0313%" y="543.50"></text></g><g><title>do_syscall_64 (801 samples, 0.15%)</title><rect x="25.7794%" y="565" width="0.1519%" height="15" fill="rgb(215,56,53)" fg:x="135912" fg:w="801"/><text x="26.0294%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (804 samples, 0.15%)</title><rect x="25.7792%" y="581" width="0.1525%" height="15" fill="rgb(217,60,2)" fg:x="135911" fg:w="804"/><text x="26.0292%" y="591.50"></text></g><g><title>__mmap64 (814 samples, 0.15%)</title><rect x="25.7782%" y="597" width="0.1544%" height="15" fill="rgb(207,26,24)" fg:x="135906" fg:w="814"/><text x="26.0282%" y="607.50"></text></g><g><title>__mmap64 (815 samples, 0.15%)</title><rect x="25.7782%" y="613" width="0.1546%" height="15" fill="rgb(252,210,15)" fg:x="135906" fg:w="815"/><text x="26.0282%" y="623.50"></text></g><g><title>_dl_map_segments (915 samples, 0.17%)</title><rect x="25.7595%" y="629" width="0.1736%" height="15" fill="rgb(253,209,26)" fg:x="135807" fg:w="915"/><text x="26.0095%" y="639.50"></text></g><g><title>_dl_setup_hash (58 samples, 0.01%)</title><rect x="25.9372%" y="629" width="0.0110%" height="15" fill="rgb(238,170,14)" fg:x="136744" fg:w="58"/><text x="26.1872%" y="639.50"></text></g><g><title>do_user_addr_fault (82 samples, 0.02%)</title><rect x="25.9541%" y="581" width="0.0156%" height="15" fill="rgb(216,178,15)" fg:x="136833" fg:w="82"/><text x="26.2041%" y="591.50"></text></g><g><title>handle_mm_fault (79 samples, 0.01%)</title><rect x="25.9546%" y="565" width="0.0150%" height="15" fill="rgb(250,197,2)" fg:x="136836" fg:w="79"/><text x="26.2046%" y="575.50"></text></g><g><title>asm_exc_page_fault (85 samples, 0.02%)</title><rect x="25.9537%" y="613" width="0.0161%" height="15" fill="rgb(212,70,42)" fg:x="136831" fg:w="85"/><text x="26.2037%" y="623.50"></text></g><g><title>exc_page_fault (84 samples, 0.02%)</title><rect x="25.9539%" y="597" width="0.0159%" height="15" fill="rgb(227,213,9)" fg:x="136832" fg:w="84"/><text x="26.2039%" y="607.50"></text></g><g><title>_dl_map_object_from_fd (1,169 samples, 0.22%)</title><rect x="25.7500%" y="645" width="0.2217%" height="15" fill="rgb(245,99,25)" fg:x="135757" fg:w="1169"/><text x="26.0000%" y="655.50"></text></g><g><title>elf_get_dynamic_info (123 samples, 0.02%)</title><rect x="25.9484%" y="629" width="0.0233%" height="15" fill="rgb(250,82,29)" fg:x="136803" fg:w="123"/><text x="26.1984%" y="639.50"></text></g><g><title>do_filp_open (81 samples, 0.02%)</title><rect x="25.9823%" y="533" width="0.0154%" height="15" fill="rgb(241,226,54)" fg:x="136982" fg:w="81"/><text x="26.2323%" y="543.50"></text></g><g><title>path_openat (78 samples, 0.01%)</title><rect x="25.9829%" y="517" width="0.0148%" height="15" fill="rgb(221,99,41)" fg:x="136985" fg:w="78"/><text x="26.2329%" y="527.50"></text></g><g><title>do_syscall_64 (102 samples, 0.02%)</title><rect x="25.9814%" y="581" width="0.0193%" height="15" fill="rgb(213,90,21)" fg:x="136977" fg:w="102"/><text x="26.2314%" y="591.50"></text></g><g><title>__x64_sys_openat (101 samples, 0.02%)</title><rect x="25.9816%" y="565" width="0.0192%" height="15" fill="rgb(205,208,24)" fg:x="136978" fg:w="101"/><text x="26.2316%" y="575.50"></text></g><g><title>do_sys_openat2 (101 samples, 0.02%)</title><rect x="25.9816%" y="549" width="0.0192%" height="15" fill="rgb(246,31,12)" fg:x="136978" fg:w="101"/><text x="26.2316%" y="559.50"></text></g><g><title>__GI___open64_nocancel (109 samples, 0.02%)</title><rect x="25.9812%" y="613" width="0.0207%" height="15" fill="rgb(213,154,6)" fg:x="136976" fg:w="109"/><text x="26.2312%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (108 samples, 0.02%)</title><rect x="25.9814%" y="597" width="0.0205%" height="15" fill="rgb(222,163,29)" fg:x="136977" fg:w="108"/><text x="26.2314%" y="607.50"></text></g><g><title>open_path (166 samples, 0.03%)</title><rect x="25.9765%" y="645" width="0.0315%" height="15" fill="rgb(227,201,8)" fg:x="136951" fg:w="166"/><text x="26.2265%" y="655.50"></text></g><g><title>open_verify (149 samples, 0.03%)</title><rect x="25.9797%" y="629" width="0.0283%" height="15" fill="rgb(233,9,32)" fg:x="136968" fg:w="149"/><text x="26.2297%" y="639.50"></text></g><g><title>_dl_catch_exception (1,410 samples, 0.27%)</title><rect x="25.7452%" y="693" width="0.2674%" height="15" fill="rgb(217,54,24)" fg:x="135732" fg:w="1410"/><text x="25.9952%" y="703.50"></text></g><g><title>openaux (1,406 samples, 0.27%)</title><rect x="25.7460%" y="677" width="0.2667%" height="15" fill="rgb(235,192,0)" fg:x="135736" fg:w="1406"/><text x="25.9960%" y="687.50"></text></g><g><title>_dl_map_object (1,405 samples, 0.27%)</title><rect x="25.7462%" y="661" width="0.2665%" height="15" fill="rgb(235,45,9)" fg:x="135737" fg:w="1405"/><text x="25.9962%" y="671.50"></text></g><g><title>_dl_map_object_deps (1,488 samples, 0.28%)</title><rect x="25.7420%" y="709" width="0.2822%" height="15" fill="rgb(246,42,40)" fg:x="135715" fg:w="1488"/><text x="25.9920%" y="719.50"></text></g><g><title>_dl_check_map_versions (131 samples, 0.02%)</title><rect x="26.0250%" y="661" width="0.0248%" height="15" fill="rgb(248,111,24)" fg:x="137207" fg:w="131"/><text x="26.2750%" y="671.50"></text></g><g><title>match_symbol (67 samples, 0.01%)</title><rect x="26.0372%" y="645" width="0.0127%" height="15" fill="rgb(249,65,22)" fg:x="137271" fg:w="67"/><text x="26.2872%" y="655.50"></text></g><g><title>_dl_receive_error (134 samples, 0.03%)</title><rect x="26.0248%" y="709" width="0.0254%" height="15" fill="rgb(238,111,51)" fg:x="137206" fg:w="134"/><text x="26.2748%" y="719.50"></text></g><g><title>version_check_doit (134 samples, 0.03%)</title><rect x="26.0248%" y="693" width="0.0254%" height="15" fill="rgb(250,118,22)" fg:x="137206" fg:w="134"/><text x="26.2748%" y="703.50"></text></g><g><title>_dl_check_all_versions (134 samples, 0.03%)</title><rect x="26.0248%" y="677" width="0.0254%" height="15" fill="rgb(234,84,26)" fg:x="137206" fg:w="134"/><text x="26.2748%" y="687.50"></text></g><g><title>mprotect_fixup (53 samples, 0.01%)</title><rect x="26.0516%" y="597" width="0.0101%" height="15" fill="rgb(243,172,12)" fg:x="137347" fg:w="53"/><text x="26.3016%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="26.0506%" y="661" width="0.0112%" height="15" fill="rgb(236,150,49)" fg:x="137342" fg:w="59"/><text x="26.3006%" y="671.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="26.0506%" y="645" width="0.0112%" height="15" fill="rgb(225,197,26)" fg:x="137342" fg:w="59"/><text x="26.3006%" y="655.50"></text></g><g><title>__x64_sys_mprotect (59 samples, 0.01%)</title><rect x="26.0506%" y="629" width="0.0112%" height="15" fill="rgb(214,17,42)" fg:x="137342" fg:w="59"/><text x="26.3006%" y="639.50"></text></g><g><title>do_mprotect_pkey (59 samples, 0.01%)</title><rect x="26.0506%" y="613" width="0.0112%" height="15" fill="rgb(224,165,40)" fg:x="137342" fg:w="59"/><text x="26.3006%" y="623.50"></text></g><g><title>_dl_protect_relro (61 samples, 0.01%)</title><rect x="26.0504%" y="693" width="0.0116%" height="15" fill="rgb(246,100,4)" fg:x="137341" fg:w="61"/><text x="26.3004%" y="703.50"></text></g><g><title>__mprotect (60 samples, 0.01%)</title><rect x="26.0506%" y="677" width="0.0114%" height="15" fill="rgb(222,103,0)" fg:x="137342" fg:w="60"/><text x="26.3006%" y="687.50"></text></g><g><title>check_match (60 samples, 0.01%)</title><rect x="26.1039%" y="629" width="0.0114%" height="15" fill="rgb(227,189,26)" fg:x="137623" fg:w="60"/><text x="26.3539%" y="639.50"></text></g><g><title>_dl_lookup_symbol_x (221 samples, 0.04%)</title><rect x="26.0740%" y="661" width="0.0419%" height="15" fill="rgb(214,202,17)" fg:x="137465" fg:w="221"/><text x="26.3240%" y="671.50"></text></g><g><title>do_lookup_x (174 samples, 0.03%)</title><rect x="26.0829%" y="645" width="0.0330%" height="15" fill="rgb(229,111,3)" fg:x="137512" fg:w="174"/><text x="26.3329%" y="655.50"></text></g><g><title>elf_machine_rela (256 samples, 0.05%)</title><rect x="26.0681%" y="677" width="0.0486%" height="15" fill="rgb(229,172,15)" fg:x="137434" fg:w="256"/><text x="26.3181%" y="687.50"></text></g><g><title>elf_dynamic_do_Rela (332 samples, 0.06%)</title><rect x="26.0620%" y="693" width="0.0630%" height="15" fill="rgb(230,224,35)" fg:x="137402" fg:w="332"/><text x="26.3120%" y="703.50"></text></g><g><title>_dl_relocate_object (412 samples, 0.08%)</title><rect x="26.0502%" y="709" width="0.0781%" height="15" fill="rgb(251,141,6)" fg:x="137340" fg:w="412"/><text x="26.3002%" y="719.50"></text></g><g><title>init_tls (55 samples, 0.01%)</title><rect x="26.1381%" y="709" width="0.0104%" height="15" fill="rgb(225,208,6)" fg:x="137803" fg:w="55"/><text x="26.3881%" y="719.50"></text></g><g><title>[ld-2.31.so] (2,191 samples, 0.42%)</title><rect x="25.7337%" y="725" width="0.4156%" height="15" fill="rgb(246,181,16)" fg:x="135671" fg:w="2191"/><text x="25.9837%" y="735.50"></text></g><g><title>exc_page_fault (67 samples, 0.01%)</title><rect x="26.1513%" y="709" width="0.0127%" height="15" fill="rgb(227,129,36)" fg:x="137873" fg:w="67"/><text x="26.4013%" y="719.50"></text></g><g><title>do_user_addr_fault (67 samples, 0.01%)</title><rect x="26.1513%" y="693" width="0.0127%" height="15" fill="rgb(248,117,24)" fg:x="137873" fg:w="67"/><text x="26.4013%" y="703.50"></text></g><g><title>handle_mm_fault (59 samples, 0.01%)</title><rect x="26.1529%" y="677" width="0.0112%" height="15" fill="rgb(214,185,35)" fg:x="137881" fg:w="59"/><text x="26.4029%" y="687.50"></text></g><g><title>asm_exc_page_fault (68 samples, 0.01%)</title><rect x="26.1513%" y="725" width="0.0129%" height="15" fill="rgb(236,150,34)" fg:x="137873" fg:w="68"/><text x="26.4013%" y="735.50"></text></g><g><title>_dl_start_final (2,337 samples, 0.44%)</title><rect x="25.7293%" y="757" width="0.4433%" height="15" fill="rgb(243,228,27)" fg:x="135648" fg:w="2337"/><text x="25.9793%" y="767.50"></text></g><g><title>_dl_sysdep_start (2,335 samples, 0.44%)</title><rect x="25.7297%" y="741" width="0.4429%" height="15" fill="rgb(245,77,44)" fg:x="135650" fg:w="2335"/><text x="25.9797%" y="751.50"></text></g><g><title>_dl_start (2,427 samples, 0.46%)</title><rect x="25.7282%" y="773" width="0.4603%" height="15" fill="rgb(235,214,42)" fg:x="135642" fg:w="2427"/><text x="25.9782%" y="783.50"></text></g><g><title>_start (2,486 samples, 0.47%)</title><rect x="25.7267%" y="789" width="0.4715%" height="15" fill="rgb(221,74,3)" fg:x="135634" fg:w="2486"/><text x="25.9767%" y="799.50"></text></g><g><title>asm_exc_page_fault (223 samples, 0.04%)</title><rect x="26.1982%" y="789" width="0.0423%" height="15" fill="rgb(206,121,29)" fg:x="138120" fg:w="223"/><text x="26.4482%" y="799.50"></text></g><g><title>__clear_user (53 samples, 0.01%)</title><rect x="26.2430%" y="693" width="0.0101%" height="15" fill="rgb(249,131,53)" fg:x="138356" fg:w="53"/><text x="26.4930%" y="703.50"></text></g><g><title>__do_munmap (59 samples, 0.01%)</title><rect x="26.2631%" y="661" width="0.0112%" height="15" fill="rgb(236,170,29)" fg:x="138462" fg:w="59"/><text x="26.5131%" y="671.50"></text></g><g><title>__vm_munmap (62 samples, 0.01%)</title><rect x="26.2631%" y="677" width="0.0118%" height="15" fill="rgb(247,96,15)" fg:x="138462" fg:w="62"/><text x="26.5131%" y="687.50"></text></g><g><title>do_mmap (59 samples, 0.01%)</title><rect x="26.2750%" y="661" width="0.0112%" height="15" fill="rgb(211,210,7)" fg:x="138525" fg:w="59"/><text x="26.5250%" y="671.50"></text></g><g><title>elf_map (125 samples, 0.02%)</title><rect x="26.2631%" y="693" width="0.0237%" height="15" fill="rgb(240,88,50)" fg:x="138462" fg:w="125"/><text x="26.5131%" y="703.50"></text></g><g><title>vm_mmap_pgoff (63 samples, 0.01%)</title><rect x="26.2748%" y="677" width="0.0119%" height="15" fill="rgb(209,229,26)" fg:x="138524" fg:w="63"/><text x="26.5248%" y="687.50"></text></g><g><title>do_mmap (98 samples, 0.02%)</title><rect x="26.3052%" y="677" width="0.0186%" height="15" fill="rgb(210,68,23)" fg:x="138684" fg:w="98"/><text x="26.5552%" y="687.50"></text></g><g><title>mmap_region (98 samples, 0.02%)</title><rect x="26.3052%" y="661" width="0.0186%" height="15" fill="rgb(229,180,13)" fg:x="138684" fg:w="98"/><text x="26.5552%" y="671.50"></text></g><g><title>__x64_sys_execve (445 samples, 0.08%)</title><rect x="26.2407%" y="757" width="0.0844%" height="15" fill="rgb(236,53,44)" fg:x="138344" fg:w="445"/><text x="26.4907%" y="767.50"></text></g><g><title>do_execveat_common (445 samples, 0.08%)</title><rect x="26.2407%" y="741" width="0.0844%" height="15" fill="rgb(244,214,29)" fg:x="138344" fg:w="445"/><text x="26.4907%" y="751.50"></text></g><g><title>bprm_execve (445 samples, 0.08%)</title><rect x="26.2407%" y="725" width="0.0844%" height="15" fill="rgb(220,75,29)" fg:x="138344" fg:w="445"/><text x="26.4907%" y="735.50"></text></g><g><title>load_elf_binary (445 samples, 0.08%)</title><rect x="26.2407%" y="709" width="0.0844%" height="15" fill="rgb(214,183,37)" fg:x="138344" fg:w="445"/><text x="26.4907%" y="719.50"></text></g><g><title>vm_mmap_pgoff (105 samples, 0.02%)</title><rect x="26.3052%" y="693" width="0.0199%" height="15" fill="rgb(239,117,29)" fg:x="138684" fg:w="105"/><text x="26.5552%" y="703.50"></text></g><g><title>tlb_finish_mmu (75 samples, 0.01%)</title><rect x="26.3442%" y="677" width="0.0142%" height="15" fill="rgb(237,171,35)" fg:x="138890" fg:w="75"/><text x="26.5942%" y="687.50"></text></g><g><title>release_pages (56 samples, 0.01%)</title><rect x="26.3478%" y="661" width="0.0106%" height="15" fill="rgb(229,178,53)" fg:x="138909" fg:w="56"/><text x="26.5978%" y="671.50"></text></g><g><title>exit_mmap (232 samples, 0.04%)</title><rect x="26.3257%" y="693" width="0.0440%" height="15" fill="rgb(210,102,19)" fg:x="138792" fg:w="232"/><text x="26.5757%" y="703.50"></text></g><g><title>unmap_vmas (58 samples, 0.01%)</title><rect x="26.3587%" y="677" width="0.0110%" height="15" fill="rgb(235,127,22)" fg:x="138966" fg:w="58"/><text x="26.6087%" y="687.50"></text></g><g><title>unmap_page_range (57 samples, 0.01%)</title><rect x="26.3588%" y="661" width="0.0108%" height="15" fill="rgb(244,31,31)" fg:x="138967" fg:w="57"/><text x="26.6088%" y="671.50"></text></g><g><title>mmput (233 samples, 0.04%)</title><rect x="26.3257%" y="709" width="0.0442%" height="15" fill="rgb(231,43,21)" fg:x="138792" fg:w="233"/><text x="26.5757%" y="719.50"></text></g><g><title>__x64_sys_exit_group (262 samples, 0.05%)</title><rect x="26.3251%" y="757" width="0.0497%" height="15" fill="rgb(217,131,35)" fg:x="138789" fg:w="262"/><text x="26.5751%" y="767.50"></text></g><g><title>do_group_exit (262 samples, 0.05%)</title><rect x="26.3251%" y="741" width="0.0497%" height="15" fill="rgb(221,149,4)" fg:x="138789" fg:w="262"/><text x="26.5751%" y="751.50"></text></g><g><title>do_exit (262 samples, 0.05%)</title><rect x="26.3251%" y="725" width="0.0497%" height="15" fill="rgb(232,170,28)" fg:x="138789" fg:w="262"/><text x="26.5751%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (710 samples, 0.13%)</title><rect x="26.2405%" y="789" width="0.1347%" height="15" fill="rgb(238,56,10)" fg:x="138343" fg:w="710"/><text x="26.4905%" y="799.50"></text></g><g><title>do_syscall_64 (709 samples, 0.13%)</title><rect x="26.2407%" y="773" width="0.1345%" height="15" fill="rgb(235,196,14)" fg:x="138344" fg:w="709"/><text x="26.4907%" y="783.50"></text></g><g><title>sed (4,808 samples, 0.91%)</title><rect x="25.4651%" y="805" width="0.9120%" height="15" fill="rgb(216,45,48)" fg:x="134255" fg:w="4808"/><text x="25.7151%" y="815.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;5292148ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)0, 5292148ul&gt;::oop_access_barrier (56 samples, 0.01%)</title><rect x="26.4000%" y="773" width="0.0106%" height="15" fill="rgb(238,213,17)" fg:x="139184" fg:w="56"/><text x="26.6500%" y="783.50"></text></g><g><title>InstanceKlass::initialize (182 samples, 0.03%)</title><rect x="26.4552%" y="773" width="0.0345%" height="15" fill="rgb(212,13,2)" fg:x="139475" fg:w="182"/><text x="26.7052%" y="783.50"></text></g><g><title>JavaThread::is_Java_thread (77 samples, 0.01%)</title><rect x="26.5222%" y="773" width="0.0146%" height="15" fill="rgb(240,114,20)" fg:x="139828" fg:w="77"/><text x="26.7722%" y="783.50"></text></g><g><title>_int_free (161 samples, 0.03%)</title><rect x="26.6187%" y="773" width="0.0305%" height="15" fill="rgb(228,41,40)" fg:x="140337" fg:w="161"/><text x="26.8687%" y="783.50"></text></g><g><title>check_bounds (164 samples, 0.03%)</title><rect x="26.6544%" y="773" width="0.0311%" height="15" fill="rgb(244,132,35)" fg:x="140525" fg:w="164"/><text x="26.9044%" y="783.50"></text></g><g><title>jni_NewObjectV (92 samples, 0.02%)</title><rect x="26.7010%" y="773" width="0.0175%" height="15" fill="rgb(253,189,4)" fg:x="140771" fg:w="92"/><text x="26.9510%" y="783.50"></text></g><g><title>[anon] (1,866 samples, 0.35%)</title><rect x="26.3909%" y="789" width="0.3539%" height="15" fill="rgb(224,37,19)" fg:x="139136" fg:w="1866"/><text x="26.6409%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (56 samples, 0.01%)</title><rect x="27.2589%" y="773" width="0.0106%" height="15" fill="rgb(235,223,18)" fg:x="143712" fg:w="56"/><text x="27.5089%" y="783.50"></text></g><g><title>[libc-2.31.so] (58 samples, 0.01%)</title><rect x="27.2695%" y="773" width="0.0110%" height="15" fill="rgb(235,163,25)" fg:x="143768" fg:w="58"/><text x="27.5195%" y="783.50"></text></g><g><title>do_syscall_64 (69 samples, 0.01%)</title><rect x="27.2860%" y="741" width="0.0131%" height="15" fill="rgb(217,145,28)" fg:x="143855" fg:w="69"/><text x="27.5360%" y="751.50"></text></g><g><title>__x64_sys_close (65 samples, 0.01%)</title><rect x="27.2867%" y="725" width="0.0123%" height="15" fill="rgb(223,223,32)" fg:x="143859" fg:w="65"/><text x="27.5367%" y="735.50"></text></g><g><title>btrfs_release_file (67 samples, 0.01%)</title><rect x="27.3086%" y="677" width="0.0127%" height="15" fill="rgb(227,189,39)" fg:x="143974" fg:w="67"/><text x="27.5586%" y="687.50"></text></g><g><title>kfree (61 samples, 0.01%)</title><rect x="27.3097%" y="661" width="0.0116%" height="15" fill="rgb(248,10,22)" fg:x="143980" fg:w="61"/><text x="27.5597%" y="671.50"></text></g><g><title>__fput (134 samples, 0.03%)</title><rect x="27.3050%" y="693" width="0.0254%" height="15" fill="rgb(248,46,39)" fg:x="143955" fg:w="134"/><text x="27.5550%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (259 samples, 0.05%)</title><rect x="27.2858%" y="757" width="0.0491%" height="15" fill="rgb(248,113,48)" fg:x="143854" fg:w="259"/><text x="27.5358%" y="767.50"></text></g><g><title>syscall_exit_to_user_mode (189 samples, 0.04%)</title><rect x="27.2991%" y="741" width="0.0358%" height="15" fill="rgb(245,16,25)" fg:x="143924" fg:w="189"/><text x="27.5491%" y="751.50"></text></g><g><title>exit_to_user_mode_prepare (188 samples, 0.04%)</title><rect x="27.2993%" y="725" width="0.0357%" height="15" fill="rgb(249,152,16)" fg:x="143925" fg:w="188"/><text x="27.5493%" y="735.50"></text></g><g><title>task_work_run (162 samples, 0.03%)</title><rect x="27.3042%" y="709" width="0.0307%" height="15" fill="rgb(250,16,1)" fg:x="143951" fg:w="162"/><text x="27.5542%" y="719.50"></text></g><g><title>__GI___close_nocancel (291 samples, 0.06%)</title><rect x="27.2805%" y="773" width="0.0552%" height="15" fill="rgb(249,138,3)" fg:x="143826" fg:w="291"/><text x="27.5305%" y="783.50"></text></g><g><title>__GI___libc_free (410 samples, 0.08%)</title><rect x="27.3357%" y="773" width="0.0778%" height="15" fill="rgb(227,71,41)" fg:x="144117" fg:w="410"/><text x="27.5857%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (157 samples, 0.03%)</title><rect x="27.4470%" y="757" width="0.0298%" height="15" fill="rgb(209,184,23)" fg:x="144704" fg:w="157"/><text x="27.6970%" y="767.50"></text></g><g><title>lockref_put_or_lock (223 samples, 0.04%)</title><rect x="27.5529%" y="677" width="0.0423%" height="15" fill="rgb(223,215,31)" fg:x="145262" fg:w="223"/><text x="27.8029%" y="687.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="27.5732%" y="661" width="0.0220%" height="15" fill="rgb(210,146,28)" fg:x="145369" fg:w="116"/><text x="27.8232%" y="671.50"></text></g><g><title>dput (417 samples, 0.08%)</title><rect x="27.5164%" y="693" width="0.0791%" height="15" fill="rgb(209,183,41)" fg:x="145070" fg:w="417"/><text x="27.7664%" y="703.50"></text></g><g><title>_raw_spin_lock (83 samples, 0.02%)</title><rect x="27.6356%" y="613" width="0.0157%" height="15" fill="rgb(209,224,45)" fg:x="145698" fg:w="83"/><text x="27.8856%" y="623.50"></text></g><g><title>__d_lookup (196 samples, 0.04%)</title><rect x="27.6145%" y="629" width="0.0372%" height="15" fill="rgb(224,209,51)" fg:x="145587" fg:w="196"/><text x="27.8645%" y="639.50"></text></g><g><title>__lookup_hash (248 samples, 0.05%)</title><rect x="27.6048%" y="677" width="0.0470%" height="15" fill="rgb(223,17,39)" fg:x="145536" fg:w="248"/><text x="27.8548%" y="687.50"></text></g><g><title>lookup_dcache (234 samples, 0.04%)</title><rect x="27.6075%" y="661" width="0.0444%" height="15" fill="rgb(234,204,37)" fg:x="145550" fg:w="234"/><text x="27.8575%" y="671.50"></text></g><g><title>d_lookup (223 samples, 0.04%)</title><rect x="27.6096%" y="645" width="0.0423%" height="15" fill="rgb(236,120,5)" fg:x="145561" fg:w="223"/><text x="27.8596%" y="655.50"></text></g><g><title>down_write (124 samples, 0.02%)</title><rect x="27.6519%" y="677" width="0.0235%" height="15" fill="rgb(248,97,27)" fg:x="145784" fg:w="124"/><text x="27.9019%" y="687.50"></text></g><g><title>__legitimize_mnt (119 samples, 0.02%)</title><rect x="27.6980%" y="597" width="0.0226%" height="15" fill="rgb(240,66,17)" fg:x="146027" fg:w="119"/><text x="27.9480%" y="607.50"></text></g><g><title>__legitimize_path (199 samples, 0.04%)</title><rect x="27.6947%" y="613" width="0.0377%" height="15" fill="rgb(210,79,3)" fg:x="146010" fg:w="199"/><text x="27.9447%" y="623.50"></text></g><g><title>lockref_get_not_dead (63 samples, 0.01%)</title><rect x="27.7205%" y="597" width="0.0119%" height="15" fill="rgb(214,176,27)" fg:x="146146" fg:w="63"/><text x="27.9705%" y="607.50"></text></g><g><title>complete_walk (242 samples, 0.05%)</title><rect x="27.6911%" y="645" width="0.0459%" height="15" fill="rgb(235,185,3)" fg:x="145991" fg:w="242"/><text x="27.9411%" y="655.50"></text></g><g><title>try_to_unlazy (235 samples, 0.04%)</title><rect x="27.6925%" y="629" width="0.0446%" height="15" fill="rgb(227,24,12)" fg:x="145998" fg:w="235"/><text x="27.9425%" y="639.50"></text></g><g><title>btrfs_permission (79 samples, 0.01%)</title><rect x="28.0728%" y="613" width="0.0150%" height="15" fill="rgb(252,169,48)" fg:x="148003" fg:w="79"/><text x="28.3228%" y="623.50"></text></g><g><title>inode_permission.part.0 (1,095 samples, 0.21%)</title><rect x="27.9550%" y="629" width="0.2077%" height="15" fill="rgb(212,65,1)" fg:x="147382" fg:w="1095"/><text x="28.2050%" y="639.50"></text></g><g><title>generic_permission (395 samples, 0.07%)</title><rect x="28.0878%" y="613" width="0.0749%" height="15" fill="rgb(242,39,24)" fg:x="148082" fg:w="395"/><text x="28.3378%" y="623.50"></text></g><g><title>security_inode_permission (155 samples, 0.03%)</title><rect x="28.1627%" y="629" width="0.0294%" height="15" fill="rgb(249,32,23)" fg:x="148477" fg:w="155"/><text x="28.4127%" y="639.50"></text></g><g><title>lookup_fast (2,022 samples, 0.38%)</title><rect x="28.2693%" y="613" width="0.3835%" height="15" fill="rgb(251,195,23)" fg:x="149039" fg:w="2022"/><text x="28.5193%" y="623.50"></text></g><g><title>__d_lookup_rcu (1,509 samples, 0.29%)</title><rect x="28.3666%" y="597" width="0.2862%" height="15" fill="rgb(236,174,8)" fg:x="149552" fg:w="1509"/><text x="28.6166%" y="607.50"></text></g><g><title>link_path_walk.part.0 (5,360 samples, 1.02%)</title><rect x="27.7370%" y="645" width="1.0167%" height="15" fill="rgb(220,197,8)" fg:x="146233" fg:w="5360"/><text x="27.9870%" y="655.50"></text></g><g><title>walk_component (2,961 samples, 0.56%)</title><rect x="28.1921%" y="629" width="0.5616%" height="15" fill="rgb(240,108,37)" fg:x="148632" fg:w="2961"/><text x="28.4421%" y="639.50"></text></g><g><title>step_into (532 samples, 0.10%)</title><rect x="28.6528%" y="613" width="0.1009%" height="15" fill="rgb(232,176,24)" fg:x="151061" fg:w="532"/><text x="28.9028%" y="623.50"></text></g><g><title>path_init (129 samples, 0.02%)</title><rect x="28.7537%" y="645" width="0.0245%" height="15" fill="rgb(243,35,29)" fg:x="151593" fg:w="129"/><text x="29.0037%" y="655.50"></text></g><g><title>nd_jump_root (90 samples, 0.02%)</title><rect x="28.7611%" y="629" width="0.0171%" height="15" fill="rgb(210,37,18)" fg:x="151632" fg:w="90"/><text x="29.0111%" y="639.50"></text></g><g><title>set_root (55 samples, 0.01%)</title><rect x="28.7677%" y="613" width="0.0104%" height="15" fill="rgb(224,184,40)" fg:x="151667" fg:w="55"/><text x="29.0177%" y="623.50"></text></g><g><title>filename_parentat (5,841 samples, 1.11%)</title><rect x="27.6754%" y="677" width="1.1079%" height="15" fill="rgb(236,39,29)" fg:x="145908" fg:w="5841"/><text x="27.9254%" y="687.50"></text></g><g><title>path_parentat (5,784 samples, 1.10%)</title><rect x="27.6862%" y="661" width="1.0971%" height="15" fill="rgb(232,48,39)" fg:x="145965" fg:w="5784"/><text x="27.9362%" y="671.50"></text></g><g><title>kmem_cache_free (203 samples, 0.04%)</title><rect x="28.7833%" y="677" width="0.0385%" height="15" fill="rgb(236,34,42)" fg:x="151749" fg:w="203"/><text x="29.0333%" y="687.50"></text></g><g><title>__mnt_want_write (71 samples, 0.01%)</title><rect x="28.8368%" y="661" width="0.0135%" height="15" fill="rgb(243,106,37)" fg:x="152031" fg:w="71"/><text x="29.0868%" y="671.50"></text></g><g><title>mnt_want_write (173 samples, 0.03%)</title><rect x="28.8218%" y="677" width="0.0328%" height="15" fill="rgb(218,96,6)" fg:x="151952" fg:w="173"/><text x="29.0718%" y="687.50"></text></g><g><title>filename_create (6,647 samples, 1.26%)</title><rect x="27.5955%" y="693" width="1.2608%" height="15" fill="rgb(235,130,12)" fg:x="145487" fg:w="6647"/><text x="27.8455%" y="703.50"></text></g><g><title>kmem_cache_free (134 samples, 0.03%)</title><rect x="28.8671%" y="677" width="0.0254%" height="15" fill="rgb(231,95,0)" fg:x="152191" fg:w="134"/><text x="29.1171%" y="687.50"></text></g><g><title>__legitimize_mnt (72 samples, 0.01%)</title><rect x="28.9089%" y="613" width="0.0137%" height="15" fill="rgb(228,12,23)" fg:x="152411" fg:w="72"/><text x="29.1589%" y="623.50"></text></g><g><title>__legitimize_path (149 samples, 0.03%)</title><rect x="28.9072%" y="629" width="0.0283%" height="15" fill="rgb(216,12,1)" fg:x="152402" fg:w="149"/><text x="29.1572%" y="639.50"></text></g><g><title>lockref_get_not_dead (68 samples, 0.01%)</title><rect x="28.9225%" y="613" width="0.0129%" height="15" fill="rgb(219,59,3)" fg:x="152483" fg:w="68"/><text x="29.1725%" y="623.50"></text></g><g><title>complete_walk (204 samples, 0.04%)</title><rect x="28.9009%" y="661" width="0.0387%" height="15" fill="rgb(215,208,46)" fg:x="152369" fg:w="204"/><text x="29.1509%" y="671.50"></text></g><g><title>try_to_unlazy (191 samples, 0.04%)</title><rect x="28.9034%" y="645" width="0.0362%" height="15" fill="rgb(254,224,29)" fg:x="152382" fg:w="191"/><text x="29.1534%" y="655.50"></text></g><g><title>btrfs_permission (96 samples, 0.02%)</title><rect x="29.3743%" y="629" width="0.0182%" height="15" fill="rgb(232,14,29)" fg:x="154865" fg:w="96"/><text x="29.6243%" y="639.50"></text></g><g><title>inode_permission.part.0 (1,445 samples, 0.27%)</title><rect x="29.2146%" y="645" width="0.2741%" height="15" fill="rgb(208,45,52)" fg:x="154023" fg:w="1445"/><text x="29.4646%" y="655.50"></text></g><g><title>generic_permission (507 samples, 0.10%)</title><rect x="29.3925%" y="629" width="0.0962%" height="15" fill="rgb(234,191,28)" fg:x="154961" fg:w="507"/><text x="29.6425%" y="639.50"></text></g><g><title>security_inode_permission (152 samples, 0.03%)</title><rect x="29.4887%" y="645" width="0.0288%" height="15" fill="rgb(244,67,43)" fg:x="155468" fg:w="152"/><text x="29.7387%" y="655.50"></text></g><g><title>lookup_fast (2,720 samples, 0.52%)</title><rect x="29.6276%" y="629" width="0.5159%" height="15" fill="rgb(236,189,24)" fg:x="156200" fg:w="2720"/><text x="29.8776%" y="639.50"></text></g><g><title>__d_lookup_rcu (2,086 samples, 0.40%)</title><rect x="29.7478%" y="613" width="0.3957%" height="15" fill="rgb(239,214,33)" fg:x="156834" fg:w="2086"/><text x="29.9978%" y="623.50"></text></g><g><title>page_put_link (57 samples, 0.01%)</title><rect x="30.1435%" y="629" width="0.0108%" height="15" fill="rgb(226,176,41)" fg:x="158920" fg:w="57"/><text x="30.3935%" y="639.50"></text></g><g><title>atime_needs_update (68 samples, 0.01%)</title><rect x="30.3113%" y="613" width="0.0129%" height="15" fill="rgb(248,47,8)" fg:x="159805" fg:w="68"/><text x="30.5613%" y="623.50"></text></g><g><title>page_get_link (231 samples, 0.04%)</title><rect x="30.3273%" y="613" width="0.0438%" height="15" fill="rgb(218,81,44)" fg:x="159889" fg:w="231"/><text x="30.5773%" y="623.50"></text></g><g><title>pagecache_get_page (196 samples, 0.04%)</title><rect x="30.3339%" y="597" width="0.0372%" height="15" fill="rgb(213,98,6)" fg:x="159924" fg:w="196"/><text x="30.5839%" y="607.50"></text></g><g><title>find_get_entry (168 samples, 0.03%)</title><rect x="30.3392%" y="581" width="0.0319%" height="15" fill="rgb(222,85,22)" fg:x="159952" fg:w="168"/><text x="30.5892%" y="591.50"></text></g><g><title>link_path_walk.part.0 (7,553 samples, 1.43%)</title><rect x="28.9396%" y="661" width="1.4326%" height="15" fill="rgb(239,46,39)" fg:x="152573" fg:w="7553"/><text x="29.1896%" y="671.50"></text></g><g><title>walk_component (4,506 samples, 0.85%)</title><rect x="29.5175%" y="645" width="0.8547%" height="15" fill="rgb(237,12,29)" fg:x="155620" fg:w="4506"/><text x="29.7675%" y="655.50"></text></g><g><title>step_into (1,149 samples, 0.22%)</title><rect x="30.1543%" y="629" width="0.2179%" height="15" fill="rgb(214,77,8)" fg:x="158977" fg:w="1149"/><text x="30.4043%" y="639.50"></text></g><g><title>path_init (188 samples, 0.04%)</title><rect x="30.3722%" y="661" width="0.0357%" height="15" fill="rgb(217,168,37)" fg:x="160126" fg:w="188"/><text x="30.6222%" y="671.50"></text></g><g><title>nd_jump_root (148 samples, 0.03%)</title><rect x="30.3798%" y="645" width="0.0281%" height="15" fill="rgb(221,217,23)" fg:x="160166" fg:w="148"/><text x="30.6298%" y="655.50"></text></g><g><title>set_root (113 samples, 0.02%)</title><rect x="30.3864%" y="629" width="0.0214%" height="15" fill="rgb(243,229,36)" fg:x="160201" fg:w="113"/><text x="30.6364%" y="639.50"></text></g><g><title>lookup_fast (147 samples, 0.03%)</title><rect x="30.4195%" y="645" width="0.0279%" height="15" fill="rgb(251,163,40)" fg:x="160375" fg:w="147"/><text x="30.6695%" y="655.50"></text></g><g><title>__d_lookup_rcu (123 samples, 0.02%)</title><rect x="30.4240%" y="629" width="0.0233%" height="15" fill="rgb(237,222,12)" fg:x="160399" fg:w="123"/><text x="30.6740%" y="639.50"></text></g><g><title>path_lookupat (8,231 samples, 1.56%)</title><rect x="28.8926%" y="677" width="1.5612%" height="15" fill="rgb(248,132,6)" fg:x="152325" fg:w="8231"/><text x="29.1426%" y="687.50"></text></g><g><title>walk_component (212 samples, 0.04%)</title><rect x="30.4136%" y="661" width="0.0402%" height="15" fill="rgb(227,167,50)" fg:x="160344" fg:w="212"/><text x="30.6636%" y="671.50"></text></g><g><title>filename_lookup (8,428 samples, 1.60%)</title><rect x="28.8563%" y="693" width="1.5986%" height="15" fill="rgb(242,84,37)" fg:x="152134" fg:w="8428"/><text x="29.1063%" y="703.50"></text></g><g><title>getname_flags (53 samples, 0.01%)</title><rect x="30.4549%" y="693" width="0.0101%" height="15" fill="rgb(212,4,50)" fg:x="160562" fg:w="53"/><text x="30.7049%" y="703.50"></text></g><g><title>memset_erms (744 samples, 0.14%)</title><rect x="30.5319%" y="661" width="0.1411%" height="15" fill="rgb(230,228,32)" fg:x="160968" fg:w="744"/><text x="30.7819%" y="671.50"></text></g><g><title>kmem_cache_alloc (1,084 samples, 0.21%)</title><rect x="30.4805%" y="677" width="0.2056%" height="15" fill="rgb(248,217,23)" fg:x="160697" fg:w="1084"/><text x="30.7305%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (69 samples, 0.01%)</title><rect x="30.6730%" y="661" width="0.0131%" height="15" fill="rgb(238,197,32)" fg:x="161712" fg:w="69"/><text x="30.9230%" y="671.50"></text></g><g><title>__check_heap_object (142 samples, 0.03%)</title><rect x="30.8470%" y="645" width="0.0269%" height="15" fill="rgb(236,106,1)" fg:x="162629" fg:w="142"/><text x="31.0970%" y="655.50"></text></g><g><title>__virt_addr_valid (146 samples, 0.03%)</title><rect x="30.8739%" y="645" width="0.0277%" height="15" fill="rgb(219,228,13)" fg:x="162771" fg:w="146"/><text x="31.1239%" y="655.50"></text></g><g><title>__check_object_size (400 samples, 0.08%)</title><rect x="30.8295%" y="661" width="0.0759%" height="15" fill="rgb(238,30,35)" fg:x="162537" fg:w="400"/><text x="31.0795%" y="671.50"></text></g><g><title>getname_flags.part.0 (2,324 samples, 0.44%)</title><rect x="30.4650%" y="693" width="0.4408%" height="15" fill="rgb(236,70,23)" fg:x="160615" fg:w="2324"/><text x="30.7150%" y="703.50"></text></g><g><title>strncpy_from_user (1,158 samples, 0.22%)</title><rect x="30.6861%" y="677" width="0.2196%" height="15" fill="rgb(249,104,48)" fg:x="161781" fg:w="1158"/><text x="30.9361%" y="687.50"></text></g><g><title>btrfs_permission (77 samples, 0.01%)</title><rect x="30.9297%" y="661" width="0.0146%" height="15" fill="rgb(254,117,50)" fg:x="163065" fg:w="77"/><text x="31.1797%" y="671.50"></text></g><g><title>inode_permission.part.0 (126 samples, 0.02%)</title><rect x="30.9234%" y="677" width="0.0239%" height="15" fill="rgb(223,152,4)" fg:x="163032" fg:w="126"/><text x="31.1734%" y="687.50"></text></g><g><title>may_linkat (229 samples, 0.04%)</title><rect x="30.9058%" y="693" width="0.0434%" height="15" fill="rgb(245,6,2)" fg:x="162939" fg:w="229"/><text x="31.1558%" y="703.50"></text></g><g><title>mnt_drop_write (60 samples, 0.01%)</title><rect x="30.9492%" y="693" width="0.0114%" height="15" fill="rgb(249,150,24)" fg:x="163168" fg:w="60"/><text x="31.1992%" y="703.50"></text></g><g><title>mntput_no_expire (57 samples, 0.01%)</title><rect x="30.9633%" y="693" width="0.0108%" height="15" fill="rgb(228,185,42)" fg:x="163242" fg:w="57"/><text x="31.2133%" y="703.50"></text></g><g><title>apparmor_path_link (126 samples, 0.02%)</title><rect x="30.9809%" y="677" width="0.0239%" height="15" fill="rgb(226,39,33)" fg:x="163335" fg:w="126"/><text x="31.2309%" y="687.50"></text></g><g><title>security_path_link (384 samples, 0.07%)</title><rect x="30.9741%" y="693" width="0.0728%" height="15" fill="rgb(221,166,19)" fg:x="163299" fg:w="384"/><text x="31.2241%" y="703.50"></text></g><g><title>tomoyo_path_link (221 samples, 0.04%)</title><rect x="31.0050%" y="677" width="0.0419%" height="15" fill="rgb(209,109,2)" fg:x="163462" fg:w="221"/><text x="31.2550%" y="687.50"></text></g><g><title>tomoyo_path2_perm (208 samples, 0.04%)</title><rect x="31.0075%" y="661" width="0.0395%" height="15" fill="rgb(252,216,26)" fg:x="163475" fg:w="208"/><text x="31.2575%" y="671.50"></text></g><g><title>tomoyo_init_request_info (102 samples, 0.02%)</title><rect x="31.0276%" y="645" width="0.0193%" height="15" fill="rgb(227,173,36)" fg:x="163581" fg:w="102"/><text x="31.2776%" y="655.50"></text></g><g><title>up_write (59 samples, 0.01%)</title><rect x="31.0469%" y="693" width="0.0112%" height="15" fill="rgb(209,90,7)" fg:x="163683" fg:w="59"/><text x="31.2969%" y="703.50"></text></g><g><title>btrfs_put_transaction (58 samples, 0.01%)</title><rect x="31.2206%" y="645" width="0.0110%" height="15" fill="rgb(250,194,11)" fg:x="164599" fg:w="58"/><text x="31.4706%" y="655.50"></text></g><g><title>_raw_spin_lock (145 samples, 0.03%)</title><rect x="31.2550%" y="613" width="0.0275%" height="15" fill="rgb(220,72,50)" fg:x="164780" fg:w="145"/><text x="31.5050%" y="623.50"></text></g><g><title>btrfs_trans_release_metadata (320 samples, 0.06%)</title><rect x="31.2371%" y="645" width="0.0607%" height="15" fill="rgb(222,106,48)" fg:x="164686" fg:w="320"/><text x="31.4871%" y="655.50"></text></g><g><title>btrfs_block_rsv_release (297 samples, 0.06%)</title><rect x="31.2415%" y="629" width="0.0563%" height="15" fill="rgb(216,220,45)" fg:x="164709" fg:w="297"/><text x="31.4915%" y="639.50"></text></g><g><title>btrfs_try_granting_tickets (66 samples, 0.01%)</title><rect x="31.2853%" y="613" width="0.0125%" height="15" fill="rgb(234,112,18)" fg:x="164940" fg:w="66"/><text x="31.5353%" y="623.50"></text></g><g><title>__btrfs_end_transaction (832 samples, 0.16%)</title><rect x="31.1668%" y="661" width="0.1578%" height="15" fill="rgb(206,179,9)" fg:x="164315" fg:w="832"/><text x="31.4168%" y="671.50"></text></g><g><title>kmem_cache_free (141 samples, 0.03%)</title><rect x="31.2978%" y="645" width="0.0267%" height="15" fill="rgb(215,115,40)" fg:x="165006" fg:w="141"/><text x="31.5478%" y="655.50"></text></g><g><title>btrfs_comp_cpu_keys (221 samples, 0.04%)</title><rect x="31.4583%" y="597" width="0.0419%" height="15" fill="rgb(222,69,34)" fg:x="165852" fg:w="221"/><text x="31.7083%" y="607.50"></text></g><g><title>__btrfs_add_delayed_item (670 samples, 0.13%)</title><rect x="31.4022%" y="613" width="0.1271%" height="15" fill="rgb(209,161,10)" fg:x="165556" fg:w="670"/><text x="31.6522%" y="623.50"></text></g><g><title>rb_insert_color (153 samples, 0.03%)</title><rect x="31.5002%" y="597" width="0.0290%" height="15" fill="rgb(217,6,38)" fg:x="166073" fg:w="153"/><text x="31.7502%" y="607.50"></text></g><g><title>mutex_lock (78 samples, 0.01%)</title><rect x="31.5607%" y="597" width="0.0148%" height="15" fill="rgb(229,229,48)" fg:x="166392" fg:w="78"/><text x="31.8107%" y="607.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (304 samples, 0.06%)</title><rect x="31.5293%" y="613" width="0.0577%" height="15" fill="rgb(225,21,28)" fg:x="166226" fg:w="304"/><text x="31.7793%" y="623.50"></text></g><g><title>mutex_unlock (60 samples, 0.01%)</title><rect x="31.5755%" y="597" width="0.0114%" height="15" fill="rgb(206,33,13)" fg:x="166470" fg:w="60"/><text x="31.8255%" y="607.50"></text></g><g><title>__slab_alloc (146 samples, 0.03%)</title><rect x="31.6271%" y="597" width="0.0277%" height="15" fill="rgb(242,178,17)" fg:x="166742" fg:w="146"/><text x="31.8771%" y="607.50"></text></g><g><title>___slab_alloc (136 samples, 0.03%)</title><rect x="31.6290%" y="581" width="0.0258%" height="15" fill="rgb(220,162,5)" fg:x="166752" fg:w="136"/><text x="31.8790%" y="591.50"></text></g><g><title>get_partial_node.part.0 (59 samples, 0.01%)</title><rect x="31.6436%" y="565" width="0.0112%" height="15" fill="rgb(210,33,43)" fg:x="166829" fg:w="59"/><text x="31.8936%" y="575.50"></text></g><g><title>memset_erms (68 samples, 0.01%)</title><rect x="31.6675%" y="597" width="0.0129%" height="15" fill="rgb(216,116,54)" fg:x="166955" fg:w="68"/><text x="31.9175%" y="607.50"></text></g><g><title>__kmalloc (549 samples, 0.10%)</title><rect x="31.5869%" y="613" width="0.1041%" height="15" fill="rgb(249,92,24)" fg:x="166530" fg:w="549"/><text x="31.8369%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (56 samples, 0.01%)</title><rect x="31.6804%" y="597" width="0.0106%" height="15" fill="rgb(231,189,14)" fg:x="167023" fg:w="56"/><text x="31.9304%" y="607.50"></text></g><g><title>mutex_spin_on_owner (316 samples, 0.06%)</title><rect x="31.6918%" y="597" width="0.0599%" height="15" fill="rgb(230,8,41)" fg:x="167083" fg:w="316"/><text x="31.9418%" y="607.50"></text></g><g><title>__mutex_lock.constprop.0 (324 samples, 0.06%)</title><rect x="31.6910%" y="613" width="0.0615%" height="15" fill="rgb(249,7,27)" fg:x="167079" fg:w="324"/><text x="31.9410%" y="623.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (284 samples, 0.05%)</title><rect x="31.7529%" y="613" width="0.0539%" height="15" fill="rgb(232,86,5)" fg:x="167405" fg:w="284"/><text x="32.0029%" y="623.50"></text></g><g><title>btrfs_block_rsv_migrate (229 samples, 0.04%)</title><rect x="31.7633%" y="597" width="0.0434%" height="15" fill="rgb(224,175,18)" fg:x="167460" fg:w="229"/><text x="32.0133%" y="607.50"></text></g><g><title>_raw_spin_lock (191 samples, 0.04%)</title><rect x="31.7705%" y="581" width="0.0362%" height="15" fill="rgb(220,129,12)" fg:x="167498" fg:w="191"/><text x="32.0205%" y="591.50"></text></g><g><title>btrfs_get_or_create_delayed_node (214 samples, 0.04%)</title><rect x="31.8067%" y="613" width="0.0406%" height="15" fill="rgb(210,19,36)" fg:x="167689" fg:w="214"/><text x="32.0567%" y="623.50"></text></g><g><title>btrfs_get_delayed_node (169 samples, 0.03%)</title><rect x="31.8153%" y="597" width="0.0321%" height="15" fill="rgb(219,96,14)" fg:x="167734" fg:w="169"/><text x="32.0653%" y="607.50"></text></g><g><title>mutex_lock (86 samples, 0.02%)</title><rect x="31.8561%" y="613" width="0.0163%" height="15" fill="rgb(249,106,1)" fg:x="167949" fg:w="86"/><text x="32.1061%" y="623.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,629 samples, 0.50%)</title><rect x="31.3859%" y="629" width="0.4987%" height="15" fill="rgb(249,155,20)" fg:x="165470" fg:w="2629"/><text x="31.6359%" y="639.50"></text></g><g><title>mutex_unlock (64 samples, 0.01%)</title><rect x="31.8724%" y="613" width="0.0121%" height="15" fill="rgb(244,168,9)" fg:x="168035" fg:w="64"/><text x="32.1224%" y="623.50"></text></g><g><title>btrfs_mark_buffer_dirty (193 samples, 0.04%)</title><rect x="31.8845%" y="629" width="0.0366%" height="15" fill="rgb(216,23,50)" fg:x="168099" fg:w="193"/><text x="32.1345%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (115 samples, 0.02%)</title><rect x="31.8993%" y="613" width="0.0218%" height="15" fill="rgb(224,219,20)" fg:x="168177" fg:w="115"/><text x="32.1493%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (211 samples, 0.04%)</title><rect x="31.9317%" y="613" width="0.0400%" height="15" fill="rgb(222,156,15)" fg:x="168348" fg:w="211"/><text x="32.1817%" y="623.50"></text></g><g><title>_raw_spin_lock (147 samples, 0.03%)</title><rect x="31.9439%" y="597" width="0.0279%" height="15" fill="rgb(231,97,17)" fg:x="168412" fg:w="147"/><text x="32.1939%" y="607.50"></text></g><g><title>btrfs_release_path (446 samples, 0.08%)</title><rect x="31.9211%" y="629" width="0.0846%" height="15" fill="rgb(218,70,48)" fg:x="168292" fg:w="446"/><text x="32.1711%" y="639.50"></text></g><g><title>release_extent_buffer (179 samples, 0.03%)</title><rect x="31.9718%" y="613" width="0.0340%" height="15" fill="rgb(212,196,52)" fg:x="168559" fg:w="179"/><text x="32.2218%" y="623.50"></text></g><g><title>btrfs_set_16 (63 samples, 0.01%)</title><rect x="32.0057%" y="629" width="0.0119%" height="15" fill="rgb(243,203,18)" fg:x="168738" fg:w="63"/><text x="32.2557%" y="639.50"></text></g><g><title>crc32c (212 samples, 0.04%)</title><rect x="32.0287%" y="629" width="0.0402%" height="15" fill="rgb(252,125,41)" fg:x="168859" fg:w="212"/><text x="32.2787%" y="639.50"></text></g><g><title>crypto_shash_update (121 samples, 0.02%)</title><rect x="32.0459%" y="613" width="0.0230%" height="15" fill="rgb(223,180,33)" fg:x="168950" fg:w="121"/><text x="32.2959%" y="623.50"></text></g><g><title>btrfs_get_32 (94 samples, 0.02%)</title><rect x="32.0765%" y="613" width="0.0178%" height="15" fill="rgb(254,159,46)" fg:x="169111" fg:w="94"/><text x="32.3265%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (102 samples, 0.02%)</title><rect x="32.1603%" y="565" width="0.0193%" height="15" fill="rgb(254,38,10)" fg:x="169553" fg:w="102"/><text x="32.4103%" y="575.50"></text></g><g><title>_raw_read_lock (70 samples, 0.01%)</title><rect x="32.1664%" y="549" width="0.0133%" height="15" fill="rgb(208,217,32)" fg:x="169585" fg:w="70"/><text x="32.4164%" y="559.50"></text></g><g><title>__btrfs_read_lock_root_node (186 samples, 0.04%)</title><rect x="32.1580%" y="581" width="0.0353%" height="15" fill="rgb(221,120,13)" fg:x="169541" fg:w="186"/><text x="32.4080%" y="591.50"></text></g><g><title>btrfs_root_node (72 samples, 0.01%)</title><rect x="32.1797%" y="565" width="0.0137%" height="15" fill="rgb(246,54,52)" fg:x="169655" fg:w="72"/><text x="32.4297%" y="575.50"></text></g><g><title>__btrfs_tree_lock (132 samples, 0.03%)</title><rect x="32.1933%" y="581" width="0.0250%" height="15" fill="rgb(242,34,25)" fg:x="169727" fg:w="132"/><text x="32.4433%" y="591.50"></text></g><g><title>schedule (113 samples, 0.02%)</title><rect x="32.1969%" y="565" width="0.0214%" height="15" fill="rgb(247,209,9)" fg:x="169746" fg:w="113"/><text x="32.4469%" y="575.50"></text></g><g><title>__schedule (111 samples, 0.02%)</title><rect x="32.1973%" y="549" width="0.0211%" height="15" fill="rgb(228,71,26)" fg:x="169748" fg:w="111"/><text x="32.4473%" y="559.50"></text></g><g><title>btrfs_leaf_free_space (211 samples, 0.04%)</title><rect x="32.2223%" y="581" width="0.0400%" height="15" fill="rgb(222,145,49)" fg:x="169880" fg:w="211"/><text x="32.4723%" y="591.50"></text></g><g><title>leaf_space_used (181 samples, 0.03%)</title><rect x="32.2280%" y="565" width="0.0343%" height="15" fill="rgb(218,121,17)" fg:x="169910" fg:w="181"/><text x="32.4780%" y="575.50"></text></g><g><title>btrfs_get_32 (130 samples, 0.02%)</title><rect x="32.2377%" y="549" width="0.0247%" height="15" fill="rgb(244,50,7)" fg:x="169961" fg:w="130"/><text x="32.4877%" y="559.50"></text></g><g><title>_raw_write_lock (106 samples, 0.02%)</title><rect x="32.2720%" y="565" width="0.0201%" height="15" fill="rgb(246,229,37)" fg:x="170142" fg:w="106"/><text x="32.5220%" y="575.50"></text></g><g><title>btrfs_try_tree_write_lock (192 samples, 0.04%)</title><rect x="32.2675%" y="581" width="0.0364%" height="15" fill="rgb(225,18,5)" fg:x="170118" fg:w="192"/><text x="32.5175%" y="591.50"></text></g><g><title>queued_write_lock_slowpath (62 samples, 0.01%)</title><rect x="32.2921%" y="565" width="0.0118%" height="15" fill="rgb(213,204,8)" fg:x="170248" fg:w="62"/><text x="32.5421%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (1,200 samples, 0.23%)</title><rect x="32.3039%" y="581" width="0.2276%" height="15" fill="rgb(238,103,6)" fg:x="170310" fg:w="1200"/><text x="32.5539%" y="591.50"></text></g><g><title>btrfs_buffer_uptodate (78 samples, 0.01%)</title><rect x="32.5554%" y="565" width="0.0148%" height="15" fill="rgb(222,25,35)" fg:x="171636" fg:w="78"/><text x="32.8054%" y="575.50"></text></g><g><title>verify_parent_transid (55 samples, 0.01%)</title><rect x="32.5598%" y="549" width="0.0104%" height="15" fill="rgb(213,203,35)" fg:x="171659" fg:w="55"/><text x="32.8098%" y="559.50"></text></g><g><title>btrfs_get_64 (139 samples, 0.03%)</title><rect x="32.5702%" y="565" width="0.0264%" height="15" fill="rgb(221,79,53)" fg:x="171714" fg:w="139"/><text x="32.8202%" y="575.50"></text></g><g><title>__radix_tree_lookup (581 samples, 0.11%)</title><rect x="32.6487%" y="549" width="0.1102%" height="15" fill="rgb(243,200,35)" fg:x="172128" fg:w="581"/><text x="32.8987%" y="559.50"></text></g><g><title>check_buffer_tree_ref (56 samples, 0.01%)</title><rect x="32.7703%" y="533" width="0.0106%" height="15" fill="rgb(248,60,25)" fg:x="172769" fg:w="56"/><text x="33.0203%" y="543.50"></text></g><g><title>mark_extent_buffer_accessed (295 samples, 0.06%)</title><rect x="32.7589%" y="549" width="0.0560%" height="15" fill="rgb(227,53,46)" fg:x="172709" fg:w="295"/><text x="33.0089%" y="559.50"></text></g><g><title>mark_page_accessed (179 samples, 0.03%)</title><rect x="32.7809%" y="533" width="0.0340%" height="15" fill="rgb(216,120,32)" fg:x="172825" fg:w="179"/><text x="33.0309%" y="543.50"></text></g><g><title>find_extent_buffer (1,120 samples, 0.21%)</title><rect x="32.6057%" y="565" width="0.2124%" height="15" fill="rgb(220,134,1)" fg:x="171901" fg:w="1120"/><text x="32.8557%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (1,672 samples, 0.32%)</title><rect x="32.5315%" y="581" width="0.3171%" height="15" fill="rgb(237,168,5)" fg:x="171510" fg:w="1672"/><text x="32.7815%" y="591.50"></text></g><g><title>read_extent_buffer (161 samples, 0.03%)</title><rect x="32.8181%" y="565" width="0.0305%" height="15" fill="rgb(231,100,33)" fg:x="173021" fg:w="161"/><text x="33.0681%" y="575.50"></text></g><g><title>alloc_extent_buffer (54 samples, 0.01%)</title><rect x="32.8532%" y="533" width="0.0102%" height="15" fill="rgb(236,177,47)" fg:x="173206" fg:w="54"/><text x="33.1032%" y="543.50"></text></g><g><title>alloc_tree_block_no_bg_flush (159 samples, 0.03%)</title><rect x="32.8519%" y="565" width="0.0302%" height="15" fill="rgb(235,7,49)" fg:x="173199" fg:w="159"/><text x="33.1019%" y="575.50"></text></g><g><title>btrfs_alloc_tree_block (158 samples, 0.03%)</title><rect x="32.8521%" y="549" width="0.0300%" height="15" fill="rgb(232,119,22)" fg:x="173200" fg:w="158"/><text x="33.1021%" y="559.50"></text></g><g><title>copy_for_split (140 samples, 0.03%)</title><rect x="32.8851%" y="565" width="0.0266%" height="15" fill="rgb(254,73,53)" fg:x="173374" fg:w="140"/><text x="33.1351%" y="575.50"></text></g><g><title>btrfs_get_token_32 (107 samples, 0.02%)</title><rect x="32.9338%" y="533" width="0.0203%" height="15" fill="rgb(251,35,20)" fg:x="173631" fg:w="107"/><text x="33.1838%" y="543.50"></text></g><g><title>btrfs_set_token_32 (143 samples, 0.03%)</title><rect x="32.9566%" y="533" width="0.0271%" height="15" fill="rgb(241,119,20)" fg:x="173751" fg:w="143"/><text x="33.2066%" y="543.50"></text></g><g><title>memmove_extent_buffer (68 samples, 0.01%)</title><rect x="32.9924%" y="533" width="0.0129%" height="15" fill="rgb(207,102,14)" fg:x="173940" fg:w="68"/><text x="33.2424%" y="543.50"></text></g><g><title>__push_leaf_left (471 samples, 0.09%)</title><rect x="32.9162%" y="549" width="0.0893%" height="15" fill="rgb(248,201,50)" fg:x="173538" fg:w="471"/><text x="33.1662%" y="559.50"></text></g><g><title>push_leaf_left (535 samples, 0.10%)</title><rect x="32.9118%" y="565" width="0.1015%" height="15" fill="rgb(222,185,44)" fg:x="173515" fg:w="535"/><text x="33.1618%" y="575.50"></text></g><g><title>btrfs_get_token_32 (96 samples, 0.02%)</title><rect x="33.0351%" y="533" width="0.0182%" height="15" fill="rgb(218,107,18)" fg:x="174165" fg:w="96"/><text x="33.2851%" y="543.50"></text></g><g><title>btrfs_set_token_32 (105 samples, 0.02%)</title><rect x="33.0550%" y="533" width="0.0199%" height="15" fill="rgb(237,177,39)" fg:x="174270" fg:w="105"/><text x="33.3050%" y="543.50"></text></g><g><title>__push_leaf_right (403 samples, 0.08%)</title><rect x="33.0171%" y="549" width="0.0764%" height="15" fill="rgb(246,69,6)" fg:x="174070" fg:w="403"/><text x="33.2671%" y="559.50"></text></g><g><title>btrfs_read_node_slot (64 samples, 0.01%)</title><rect x="33.0964%" y="549" width="0.0121%" height="15" fill="rgb(234,208,37)" fg:x="174488" fg:w="64"/><text x="33.3464%" y="559.50"></text></g><g><title>read_tree_block (54 samples, 0.01%)</title><rect x="33.0983%" y="533" width="0.0102%" height="15" fill="rgb(225,4,6)" fg:x="174498" fg:w="54"/><text x="33.3483%" y="543.50"></text></g><g><title>push_leaf_right (512 samples, 0.10%)</title><rect x="33.0133%" y="565" width="0.0971%" height="15" fill="rgb(233,45,0)" fg:x="174050" fg:w="512"/><text x="33.2633%" y="575.50"></text></g><g><title>split_leaf (1,382 samples, 0.26%)</title><rect x="32.8486%" y="581" width="0.2621%" height="15" fill="rgb(226,136,5)" fg:x="173182" fg:w="1382"/><text x="33.0986%" y="591.50"></text></g><g><title>__wake_up_common (58 samples, 0.01%)</title><rect x="33.1415%" y="549" width="0.0110%" height="15" fill="rgb(211,91,47)" fg:x="174726" fg:w="58"/><text x="33.3915%" y="559.50"></text></g><g><title>autoremove_wake_function (57 samples, 0.01%)</title><rect x="33.1417%" y="533" width="0.0108%" height="15" fill="rgb(242,88,51)" fg:x="174727" fg:w="57"/><text x="33.3917%" y="543.50"></text></g><g><title>try_to_wake_up (56 samples, 0.01%)</title><rect x="33.1419%" y="517" width="0.0106%" height="15" fill="rgb(230,91,28)" fg:x="174728" fg:w="56"/><text x="33.3919%" y="527.50"></text></g><g><title>__wake_up_common_lock (60 samples, 0.01%)</title><rect x="33.1413%" y="565" width="0.0114%" height="15" fill="rgb(254,186,29)" fg:x="174725" fg:w="60"/><text x="33.3913%" y="575.50"></text></g><g><title>btrfs_tree_read_unlock (63 samples, 0.01%)</title><rect x="33.1529%" y="565" width="0.0119%" height="15" fill="rgb(238,6,4)" fg:x="174786" fg:w="63"/><text x="33.4029%" y="575.50"></text></g><g><title>btrfs_search_slot (5,629 samples, 1.07%)</title><rect x="32.1002%" y="597" width="1.0677%" height="15" fill="rgb(221,151,16)" fg:x="169236" fg:w="5629"/><text x="32.3502%" y="607.50"></text></g><g><title>unlock_up (301 samples, 0.06%)</title><rect x="33.1108%" y="581" width="0.0571%" height="15" fill="rgb(251,143,52)" fg:x="174564" fg:w="301"/><text x="33.3608%" y="591.50"></text></g><g><title>btrfs_get_32 (111 samples, 0.02%)</title><rect x="33.3374%" y="581" width="0.0211%" height="15" fill="rgb(206,90,15)" fg:x="175759" fg:w="111"/><text x="33.5874%" y="591.50"></text></g><g><title>btrfs_get_token_32 (3,280 samples, 0.62%)</title><rect x="33.3585%" y="581" width="0.6221%" height="15" fill="rgb(218,35,8)" fg:x="175870" fg:w="3280"/><text x="33.6085%" y="591.50"></text></g><g><title>check_setget_bounds.isra.0 (675 samples, 0.13%)</title><rect x="33.8526%" y="565" width="0.1280%" height="15" fill="rgb(239,215,6)" fg:x="178475" fg:w="675"/><text x="34.1026%" y="575.50"></text></g><g><title>btrfs_leaf_free_space (280 samples, 0.05%)</title><rect x="33.9806%" y="581" width="0.0531%" height="15" fill="rgb(245,116,39)" fg:x="179150" fg:w="280"/><text x="34.2306%" y="591.50"></text></g><g><title>leaf_space_used (246 samples, 0.05%)</title><rect x="33.9871%" y="565" width="0.0467%" height="15" fill="rgb(242,65,28)" fg:x="179184" fg:w="246"/><text x="34.2371%" y="575.50"></text></g><g><title>btrfs_get_32 (170 samples, 0.03%)</title><rect x="34.0015%" y="549" width="0.0322%" height="15" fill="rgb(252,132,53)" fg:x="179260" fg:w="170"/><text x="34.2515%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (152 samples, 0.03%)</title><rect x="34.0337%" y="581" width="0.0288%" height="15" fill="rgb(224,159,50)" fg:x="179430" fg:w="152"/><text x="34.2837%" y="591.50"></text></g><g><title>set_extent_buffer_dirty (103 samples, 0.02%)</title><rect x="34.0430%" y="565" width="0.0195%" height="15" fill="rgb(224,93,4)" fg:x="179479" fg:w="103"/><text x="34.2930%" y="575.50"></text></g><g><title>btrfs_set_token_32 (3,071 samples, 0.58%)</title><rect x="34.0626%" y="581" width="0.5825%" height="15" fill="rgb(208,81,34)" fg:x="179582" fg:w="3071"/><text x="34.3126%" y="591.50"></text></g><g><title>check_setget_bounds.isra.0 (581 samples, 0.11%)</title><rect x="34.5349%" y="565" width="0.1102%" height="15" fill="rgb(233,92,54)" fg:x="182072" fg:w="581"/><text x="34.7849%" y="575.50"></text></g><g><title>copy_pages (132 samples, 0.03%)</title><rect x="34.6675%" y="565" width="0.0250%" height="15" fill="rgb(237,21,14)" fg:x="182771" fg:w="132"/><text x="34.9175%" y="575.50"></text></g><g><title>memcpy_extent_buffer (1,081 samples, 0.21%)</title><rect x="34.6547%" y="581" width="0.2050%" height="15" fill="rgb(249,128,51)" fg:x="182704" fg:w="1081"/><text x="34.9047%" y="591.50"></text></g><g><title>memmove (882 samples, 0.17%)</title><rect x="34.6925%" y="565" width="0.1673%" height="15" fill="rgb(223,129,24)" fg:x="182903" fg:w="882"/><text x="34.9425%" y="575.50"></text></g><g><title>copy_pages (128 samples, 0.02%)</title><rect x="34.8803%" y="565" width="0.0243%" height="15" fill="rgb(231,168,25)" fg:x="183893" fg:w="128"/><text x="35.1303%" y="575.50"></text></g><g><title>memmove_extent_buffer (945 samples, 0.18%)</title><rect x="34.8598%" y="581" width="0.1792%" height="15" fill="rgb(224,39,20)" fg:x="183785" fg:w="945"/><text x="35.1098%" y="591.50"></text></g><g><title>memmove (709 samples, 0.13%)</title><rect x="34.9046%" y="565" width="0.1345%" height="15" fill="rgb(225,152,53)" fg:x="184021" fg:w="709"/><text x="35.1546%" y="575.50"></text></g><g><title>insert_with_overflow (15,776 samples, 2.99%)</title><rect x="32.0689%" y="629" width="2.9923%" height="15" fill="rgb(252,17,24)" fg:x="169071" fg:w="15776"/><text x="32.3189%" y="639.50">ins..</text></g><g><title>btrfs_insert_empty_items (15,642 samples, 2.97%)</title><rect x="32.0943%" y="613" width="2.9669%" height="15" fill="rgb(250,114,30)" fg:x="169205" fg:w="15642"/><text x="32.3443%" y="623.50">btr..</text></g><g><title>setup_items_for_insert (9,982 samples, 1.89%)</title><rect x="33.1679%" y="597" width="1.8934%" height="15" fill="rgb(229,5,4)" fg:x="174865" fg:w="9982"/><text x="33.4179%" y="607.50">s..</text></g><g><title>write_extent_buffer (117 samples, 0.02%)</title><rect x="35.0390%" y="581" width="0.0222%" height="15" fill="rgb(225,176,49)" fg:x="184730" fg:w="117"/><text x="35.2890%" y="591.50"></text></g><g><title>memset_erms (66 samples, 0.01%)</title><rect x="35.0791%" y="613" width="0.0125%" height="15" fill="rgb(224,221,49)" fg:x="184941" fg:w="66"/><text x="35.3291%" y="623.50"></text></g><g><title>kmem_cache_alloc (196 samples, 0.04%)</title><rect x="35.0612%" y="629" width="0.0372%" height="15" fill="rgb(253,169,27)" fg:x="184847" fg:w="196"/><text x="35.3112%" y="639.50"></text></g><g><title>kmem_cache_free (106 samples, 0.02%)</title><rect x="35.0984%" y="629" width="0.0201%" height="15" fill="rgb(211,206,16)" fg:x="185043" fg:w="106"/><text x="35.3484%" y="639.50"></text></g><g><title>btrfs_insert_dir_item (20,073 samples, 3.81%)</title><rect x="31.3601%" y="645" width="3.8074%" height="15" fill="rgb(244,87,35)" fg:x="165334" fg:w="20073"/><text x="31.6101%" y="655.50">btrf..</text></g><g><title>write_extent_buffer (258 samples, 0.05%)</title><rect x="35.1185%" y="629" width="0.0489%" height="15" fill="rgb(246,28,10)" fg:x="185149" fg:w="258"/><text x="35.3685%" y="639.50"></text></g><g><title>_raw_spin_lock (174 samples, 0.03%)</title><rect x="35.2033%" y="581" width="0.0330%" height="15" fill="rgb(229,12,44)" fg:x="185596" fg:w="174"/><text x="35.4533%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (250 samples, 0.05%)</title><rect x="35.1891%" y="597" width="0.0474%" height="15" fill="rgb(210,145,37)" fg:x="185521" fg:w="250"/><text x="35.4391%" y="607.50"></text></g><g><title>btrfs_free_path (483 samples, 0.09%)</title><rect x="35.1790%" y="629" width="0.0916%" height="15" fill="rgb(227,112,52)" fg:x="185468" fg:w="483"/><text x="35.4290%" y="639.50"></text></g><g><title>btrfs_release_path (477 samples, 0.09%)</title><rect x="35.1802%" y="613" width="0.0905%" height="15" fill="rgb(238,155,34)" fg:x="185474" fg:w="477"/><text x="35.4302%" y="623.50"></text></g><g><title>release_extent_buffer (180 samples, 0.03%)</title><rect x="35.2365%" y="597" width="0.0341%" height="15" fill="rgb(239,226,36)" fg:x="185771" fg:w="180"/><text x="35.4865%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (76 samples, 0.01%)</title><rect x="35.3543%" y="581" width="0.0144%" height="15" fill="rgb(230,16,23)" fg:x="186392" fg:w="76"/><text x="35.6043%" y="591.50"></text></g><g><title>_raw_read_lock (58 samples, 0.01%)</title><rect x="35.3577%" y="565" width="0.0110%" height="15" fill="rgb(236,171,36)" fg:x="186410" fg:w="58"/><text x="35.6077%" y="575.50"></text></g><g><title>__btrfs_read_lock_root_node (207 samples, 0.04%)</title><rect x="35.3499%" y="597" width="0.0393%" height="15" fill="rgb(221,22,14)" fg:x="186369" fg:w="207"/><text x="35.5999%" y="607.50"></text></g><g><title>btrfs_root_node (108 samples, 0.02%)</title><rect x="35.3687%" y="581" width="0.0205%" height="15" fill="rgb(242,43,11)" fg:x="186468" fg:w="108"/><text x="35.6187%" y="591.50"></text></g><g><title>btrfs_cow_block (102 samples, 0.02%)</title><rect x="35.3968%" y="597" width="0.0193%" height="15" fill="rgb(232,69,23)" fg:x="186616" fg:w="102"/><text x="35.6468%" y="607.50"></text></g><g><title>__btrfs_cow_block (102 samples, 0.02%)</title><rect x="35.3968%" y="581" width="0.0193%" height="15" fill="rgb(216,180,54)" fg:x="186616" fg:w="102"/><text x="35.6468%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (252 samples, 0.05%)</title><rect x="35.4161%" y="597" width="0.0478%" height="15" fill="rgb(216,5,24)" fg:x="186718" fg:w="252"/><text x="35.6661%" y="607.50"></text></g><g><title>leaf_space_used (196 samples, 0.04%)</title><rect x="35.4267%" y="581" width="0.0372%" height="15" fill="rgb(225,89,9)" fg:x="186774" fg:w="196"/><text x="35.6767%" y="591.50"></text></g><g><title>btrfs_get_32 (139 samples, 0.03%)</title><rect x="35.4375%" y="565" width="0.0264%" height="15" fill="rgb(243,75,33)" fg:x="186831" fg:w="139"/><text x="35.6875%" y="575.50"></text></g><g><title>_raw_write_lock (106 samples, 0.02%)</title><rect x="35.4704%" y="581" width="0.0201%" height="15" fill="rgb(247,141,45)" fg:x="187004" fg:w="106"/><text x="35.7204%" y="591.50"></text></g><g><title>btrfs_try_tree_write_lock (146 samples, 0.03%)</title><rect x="35.4649%" y="597" width="0.0277%" height="15" fill="rgb(232,177,36)" fg:x="186975" fg:w="146"/><text x="35.7149%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,488 samples, 0.28%)</title><rect x="35.4926%" y="597" width="0.2822%" height="15" fill="rgb(219,125,36)" fg:x="187121" fg:w="1488"/><text x="35.7426%" y="607.50"></text></g><g><title>btrfs_buffer_uptodate (154 samples, 0.03%)</title><rect x="35.7991%" y="581" width="0.0292%" height="15" fill="rgb(227,94,9)" fg:x="188737" fg:w="154"/><text x="36.0491%" y="591.50"></text></g><g><title>verify_parent_transid (127 samples, 0.02%)</title><rect x="35.8042%" y="565" width="0.0241%" height="15" fill="rgb(240,34,52)" fg:x="188764" fg:w="127"/><text x="36.0542%" y="575.50"></text></g><g><title>btrfs_get_64 (139 samples, 0.03%)</title><rect x="35.8283%" y="581" width="0.0264%" height="15" fill="rgb(216,45,12)" fg:x="188891" fg:w="139"/><text x="36.0783%" y="591.50"></text></g><g><title>btrfs_verify_level_key (55 samples, 0.01%)</title><rect x="35.8565%" y="581" width="0.0104%" height="15" fill="rgb(246,21,19)" fg:x="189040" fg:w="55"/><text x="36.1065%" y="591.50"></text></g><g><title>__radix_tree_lookup (944 samples, 0.18%)</title><rect x="35.9313%" y="565" width="0.1791%" height="15" fill="rgb(213,98,42)" fg:x="189434" fg:w="944"/><text x="36.1813%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (394 samples, 0.07%)</title><rect x="36.1105%" y="565" width="0.0747%" height="15" fill="rgb(250,136,47)" fg:x="190379" fg:w="394"/><text x="36.3605%" y="575.50"></text></g><g><title>mark_page_accessed (298 samples, 0.06%)</title><rect x="36.1287%" y="549" width="0.0565%" height="15" fill="rgb(251,124,27)" fg:x="190475" fg:w="298"/><text x="36.3787%" y="559.50"></text></g><g><title>find_extent_buffer (1,684 samples, 0.32%)</title><rect x="35.8670%" y="581" width="0.3194%" height="15" fill="rgb(229,180,14)" fg:x="189095" fg:w="1684"/><text x="36.1170%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (2,341 samples, 0.44%)</title><rect x="35.7748%" y="597" width="0.4440%" height="15" fill="rgb(245,216,25)" fg:x="188609" fg:w="2341"/><text x="36.0248%" y="607.50"></text></g><g><title>read_extent_buffer (171 samples, 0.03%)</title><rect x="36.1864%" y="581" width="0.0324%" height="15" fill="rgb(251,43,5)" fg:x="190779" fg:w="171"/><text x="36.4364%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock (82 samples, 0.02%)</title><rect x="36.2579%" y="581" width="0.0156%" height="15" fill="rgb(250,128,24)" fg:x="191156" fg:w="82"/><text x="36.5079%" y="591.50"></text></g><g><title>btrfs_search_slot (5,265 samples, 1.00%)</title><rect x="35.2820%" y="613" width="0.9986%" height="15" fill="rgb(217,117,27)" fg:x="186011" fg:w="5265"/><text x="35.5320%" y="623.50"></text></g><g><title>unlock_up (324 samples, 0.06%)</title><rect x="36.2192%" y="597" width="0.0615%" height="15" fill="rgb(245,147,4)" fg:x="190952" fg:w="324"/><text x="36.4692%" y="607.50"></text></g><g><title>btrfs_get_32 (129 samples, 0.02%)</title><rect x="36.3825%" y="597" width="0.0245%" height="15" fill="rgb(242,201,35)" fg:x="191813" fg:w="129"/><text x="36.6325%" y="607.50"></text></g><g><title>btrfs_get_token_32 (1,360 samples, 0.26%)</title><rect x="36.4070%" y="597" width="0.2580%" height="15" fill="rgb(218,181,1)" fg:x="191942" fg:w="1360"/><text x="36.6570%" y="607.50"></text></g><g><title>check_setget_bounds.isra.0 (255 samples, 0.05%)</title><rect x="36.6166%" y="581" width="0.0484%" height="15" fill="rgb(222,6,29)" fg:x="193047" fg:w="255"/><text x="36.8666%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (227 samples, 0.04%)</title><rect x="36.6649%" y="597" width="0.0431%" height="15" fill="rgb(208,186,3)" fg:x="193302" fg:w="227"/><text x="36.9149%" y="607.50"></text></g><g><title>leaf_space_used (186 samples, 0.04%)</title><rect x="36.6727%" y="581" width="0.0353%" height="15" fill="rgb(216,36,26)" fg:x="193343" fg:w="186"/><text x="36.9227%" y="591.50"></text></g><g><title>btrfs_get_32 (127 samples, 0.02%)</title><rect x="36.6839%" y="565" width="0.0241%" height="15" fill="rgb(248,201,23)" fg:x="193402" fg:w="127"/><text x="36.9339%" y="575.50"></text></g><g><title>btrfs_mark_buffer_dirty (273 samples, 0.05%)</title><rect x="36.7080%" y="597" width="0.0518%" height="15" fill="rgb(251,170,31)" fg:x="193529" fg:w="273"/><text x="36.9580%" y="607.50"></text></g><g><title>set_extent_buffer_dirty (108 samples, 0.02%)</title><rect x="36.7393%" y="581" width="0.0205%" height="15" fill="rgb(207,110,25)" fg:x="193694" fg:w="108"/><text x="36.9893%" y="591.50"></text></g><g><title>btrfs_set_token_32 (1,236 samples, 0.23%)</title><rect x="36.7598%" y="597" width="0.2344%" height="15" fill="rgb(250,54,15)" fg:x="193802" fg:w="1236"/><text x="37.0098%" y="607.50"></text></g><g><title>check_setget_bounds.isra.0 (247 samples, 0.05%)</title><rect x="36.9474%" y="581" width="0.0469%" height="15" fill="rgb(227,68,33)" fg:x="194791" fg:w="247"/><text x="37.1974%" y="591.50"></text></g><g><title>copy_pages (158 samples, 0.03%)</title><rect x="37.0187%" y="581" width="0.0300%" height="15" fill="rgb(238,34,41)" fg:x="195167" fg:w="158"/><text x="37.2687%" y="591.50"></text></g><g><title>memcpy_extent_buffer (1,629 samples, 0.31%)</title><rect x="37.0031%" y="597" width="0.3090%" height="15" fill="rgb(220,11,15)" fg:x="195085" fg:w="1629"/><text x="37.2531%" y="607.50"></text></g><g><title>memmove (1,389 samples, 0.26%)</title><rect x="37.0487%" y="581" width="0.2635%" height="15" fill="rgb(246,111,35)" fg:x="195325" fg:w="1389"/><text x="37.2987%" y="591.50"></text></g><g><title>memmove_extent_buffer (518 samples, 0.10%)</title><rect x="37.3121%" y="597" width="0.0983%" height="15" fill="rgb(209,88,53)" fg:x="196714" fg:w="518"/><text x="37.5621%" y="607.50"></text></g><g><title>memmove (373 samples, 0.07%)</title><rect x="37.3396%" y="581" width="0.0707%" height="15" fill="rgb(231,185,47)" fg:x="196859" fg:w="373"/><text x="37.5896%" y="591.50"></text></g><g><title>btrfs_insert_empty_items (11,367 samples, 2.16%)</title><rect x="35.2754%" y="629" width="2.1561%" height="15" fill="rgb(233,154,1)" fg:x="185976" fg:w="11367"/><text x="35.5254%" y="639.50">b..</text></g><g><title>setup_items_for_insert (6,067 samples, 1.15%)</title><rect x="36.2807%" y="613" width="1.1508%" height="15" fill="rgb(225,15,46)" fg:x="191276" fg:w="6067"/><text x="36.5307%" y="623.50"></text></g><g><title>write_extent_buffer (111 samples, 0.02%)</title><rect x="37.4104%" y="597" width="0.0211%" height="15" fill="rgb(211,135,41)" fg:x="197232" fg:w="111"/><text x="37.6604%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (191 samples, 0.04%)</title><rect x="37.4314%" y="629" width="0.0362%" height="15" fill="rgb(208,54,0)" fg:x="197343" fg:w="191"/><text x="37.6814%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (116 samples, 0.02%)</title><rect x="37.4457%" y="613" width="0.0220%" height="15" fill="rgb(244,136,14)" fg:x="197418" fg:w="116"/><text x="37.6957%" y="623.50"></text></g><g><title>kmem_cache_alloc (147 samples, 0.03%)</title><rect x="37.4870%" y="629" width="0.0279%" height="15" fill="rgb(241,56,14)" fg:x="197636" fg:w="147"/><text x="37.7370%" y="639.50"></text></g><g><title>kmem_cache_free (116 samples, 0.02%)</title><rect x="37.5149%" y="629" width="0.0220%" height="15" fill="rgb(205,80,24)" fg:x="197783" fg:w="116"/><text x="37.7649%" y="639.50"></text></g><g><title>btrfs_insert_inode_ref (12,624 samples, 2.39%)</title><rect x="35.1674%" y="645" width="2.3945%" height="15" fill="rgb(220,57,4)" fg:x="185407" fg:w="12624"/><text x="35.4174%" y="655.50">bt..</text></g><g><title>write_extent_buffer (132 samples, 0.03%)</title><rect x="37.5369%" y="629" width="0.0250%" height="15" fill="rgb(226,193,50)" fg:x="197899" fg:w="132"/><text x="37.7869%" y="639.50"></text></g><g><title>mutex_lock (62 samples, 0.01%)</title><rect x="37.6099%" y="597" width="0.0118%" height="15" fill="rgb(231,168,22)" fg:x="198284" fg:w="62"/><text x="37.8599%" y="607.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (269 samples, 0.05%)</title><rect x="37.5832%" y="613" width="0.0510%" height="15" fill="rgb(254,215,14)" fg:x="198143" fg:w="269"/><text x="37.8332%" y="623.50"></text></g><g><title>mutex_unlock (66 samples, 0.01%)</title><rect x="37.6217%" y="597" width="0.0125%" height="15" fill="rgb(211,115,16)" fg:x="198346" fg:w="66"/><text x="37.8717%" y="607.50"></text></g><g><title>btrfs_get_or_create_delayed_node (92 samples, 0.02%)</title><rect x="37.6408%" y="613" width="0.0175%" height="15" fill="rgb(236,210,16)" fg:x="198447" fg:w="92"/><text x="37.8908%" y="623.50"></text></g><g><title>btrfs_get_delayed_node (80 samples, 0.02%)</title><rect x="37.6431%" y="597" width="0.0152%" height="15" fill="rgb(221,94,12)" fg:x="198459" fg:w="80"/><text x="37.8931%" y="607.50"></text></g><g><title>inode_get_bytes (90 samples, 0.02%)</title><rect x="37.6651%" y="597" width="0.0171%" height="15" fill="rgb(235,218,49)" fg:x="198575" fg:w="90"/><text x="37.9151%" y="607.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.01%)</title><rect x="37.6683%" y="581" width="0.0138%" height="15" fill="rgb(217,114,14)" fg:x="198592" fg:w="73"/><text x="37.9183%" y="591.50"></text></g><g><title>fill_stack_inode_item (175 samples, 0.03%)</title><rect x="37.6583%" y="613" width="0.0332%" height="15" fill="rgb(216,145,22)" fg:x="198539" fg:w="175"/><text x="37.9083%" y="623.50"></text></g><g><title>mutex_lock (59 samples, 0.01%)</title><rect x="37.6915%" y="613" width="0.0112%" height="15" fill="rgb(217,112,39)" fg:x="198714" fg:w="59"/><text x="37.9415%" y="623.50"></text></g><g><title>btrfs_delayed_update_inode (732 samples, 0.14%)</title><rect x="37.5765%" y="629" width="0.1388%" height="15" fill="rgb(225,85,32)" fg:x="198108" fg:w="732"/><text x="37.8265%" y="639.50"></text></g><g><title>mutex_unlock (67 samples, 0.01%)</title><rect x="37.7027%" y="613" width="0.0127%" height="15" fill="rgb(245,209,47)" fg:x="198773" fg:w="67"/><text x="37.9527%" y="623.50"></text></g><g><title>btrfs_update_inode (987 samples, 0.19%)</title><rect x="37.5619%" y="645" width="0.1872%" height="15" fill="rgb(218,220,15)" fg:x="198031" fg:w="987"/><text x="37.8119%" y="655.50"></text></g><g><title>btrfs_update_root_times (178 samples, 0.03%)</title><rect x="37.7154%" y="629" width="0.0338%" height="15" fill="rgb(222,202,31)" fg:x="198840" fg:w="178"/><text x="37.9654%" y="639.50"></text></g><g><title>ktime_get_real_ts64 (114 samples, 0.02%)</title><rect x="37.7275%" y="613" width="0.0216%" height="15" fill="rgb(243,203,4)" fg:x="198904" fg:w="114"/><text x="37.9775%" y="623.50"></text></g><g><title>read_tsc (70 samples, 0.01%)</title><rect x="37.7359%" y="597" width="0.0133%" height="15" fill="rgb(237,92,17)" fg:x="198948" fg:w="70"/><text x="37.9859%" y="607.50"></text></g><g><title>btrfs_add_link (33,911 samples, 6.43%)</title><rect x="31.3250%" y="661" width="6.4321%" height="15" fill="rgb(231,119,7)" fg:x="165149" fg:w="33911"/><text x="31.5750%" y="671.50">btrfs_ad..</text></g><g><title>btrfs_balance_delayed_items (68 samples, 0.01%)</title><rect x="37.7687%" y="645" width="0.0129%" height="15" fill="rgb(237,82,41)" fg:x="199121" fg:w="68"/><text x="38.0187%" y="655.50"></text></g><g><title>enqueue_task_fair (69 samples, 0.01%)</title><rect x="37.8114%" y="581" width="0.0131%" height="15" fill="rgb(226,81,48)" fg:x="199346" fg:w="69"/><text x="38.0614%" y="591.50"></text></g><g><title>enqueue_entity (62 samples, 0.01%)</title><rect x="37.8127%" y="565" width="0.0118%" height="15" fill="rgb(234,70,51)" fg:x="199353" fg:w="62"/><text x="38.0627%" y="575.50"></text></g><g><title>ttwu_do_activate (119 samples, 0.02%)</title><rect x="37.8100%" y="597" width="0.0226%" height="15" fill="rgb(251,86,4)" fg:x="199339" fg:w="119"/><text x="38.0600%" y="607.50"></text></g><g><title>__queue_work (264 samples, 0.05%)</title><rect x="37.7882%" y="629" width="0.0501%" height="15" fill="rgb(244,144,28)" fg:x="199224" fg:w="264"/><text x="38.0382%" y="639.50"></text></g><g><title>try_to_wake_up (212 samples, 0.04%)</title><rect x="37.7981%" y="613" width="0.0402%" height="15" fill="rgb(232,161,39)" fg:x="199276" fg:w="212"/><text x="38.0481%" y="623.50"></text></g><g><title>btrfs_btree_balance_dirty (429 samples, 0.08%)</title><rect x="37.7571%" y="661" width="0.0814%" height="15" fill="rgb(247,34,51)" fg:x="199060" fg:w="429"/><text x="38.0071%" y="671.50"></text></g><g><title>queue_work_on (280 samples, 0.05%)</title><rect x="37.7854%" y="645" width="0.0531%" height="15" fill="rgb(225,132,2)" fg:x="199209" fg:w="280"/><text x="38.0354%" y="655.50"></text></g><g><title>btrfs_iget (164 samples, 0.03%)</title><rect x="37.8626%" y="629" width="0.0311%" height="15" fill="rgb(209,159,44)" fg:x="199616" fg:w="164"/><text x="38.1126%" y="639.50"></text></g><g><title>iget5_locked (152 samples, 0.03%)</title><rect x="37.8648%" y="613" width="0.0288%" height="15" fill="rgb(251,214,1)" fg:x="199628" fg:w="152"/><text x="38.1148%" y="623.50"></text></g><g><title>ilookup5 (143 samples, 0.03%)</title><rect x="37.8666%" y="597" width="0.0271%" height="15" fill="rgb(247,84,47)" fg:x="199637" fg:w="143"/><text x="38.1166%" y="607.50"></text></g><g><title>ilookup5_nowait (118 samples, 0.02%)</title><rect x="37.8713%" y="581" width="0.0224%" height="15" fill="rgb(240,111,43)" fg:x="199662" fg:w="118"/><text x="38.1213%" y="591.50"></text></g><g><title>find_inode (66 samples, 0.01%)</title><rect x="37.8812%" y="565" width="0.0125%" height="15" fill="rgb(215,214,35)" fg:x="199714" fg:w="66"/><text x="38.1312%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (103 samples, 0.02%)</title><rect x="37.9149%" y="565" width="0.0195%" height="15" fill="rgb(248,207,23)" fg:x="199892" fg:w="103"/><text x="38.1649%" y="575.50"></text></g><g><title>__radix_tree_lookup (55 samples, 0.01%)</title><rect x="37.9565%" y="533" width="0.0104%" height="15" fill="rgb(214,186,4)" fg:x="200111" fg:w="55"/><text x="38.2065%" y="543.50"></text></g><g><title>find_extent_buffer (109 samples, 0.02%)</title><rect x="37.9519%" y="549" width="0.0207%" height="15" fill="rgb(220,133,22)" fg:x="200087" fg:w="109"/><text x="38.2019%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (217 samples, 0.04%)</title><rect x="37.9345%" y="565" width="0.0412%" height="15" fill="rgb(239,134,19)" fg:x="199995" fg:w="217"/><text x="38.1845%" y="575.50"></text></g><g><title>btrfs_search_slot (373 samples, 0.07%)</title><rect x="37.9066%" y="581" width="0.0707%" height="15" fill="rgb(250,140,9)" fg:x="199848" fg:w="373"/><text x="38.1566%" y="591.50"></text></g><g><title>btrfs_lookup_dir_item (383 samples, 0.07%)</title><rect x="37.9056%" y="597" width="0.0726%" height="15" fill="rgb(225,59,14)" fg:x="199843" fg:w="383"/><text x="38.1556%" y="607.50"></text></g><g><title>btrfs_release_path (55 samples, 0.01%)</title><rect x="37.9783%" y="597" width="0.0104%" height="15" fill="rgb(214,152,51)" fg:x="200226" fg:w="55"/><text x="38.2283%" y="607.50"></text></g><g><title>btrfs_check_ref_name_override (590 samples, 0.11%)</title><rect x="37.9007%" y="613" width="0.1119%" height="15" fill="rgb(251,227,43)" fg:x="199817" fg:w="590"/><text x="38.1507%" y="623.50"></text></g><g><title>btrfs_lookup_inode (58 samples, 0.01%)</title><rect x="38.0147%" y="581" width="0.0110%" height="15" fill="rgb(241,96,17)" fg:x="200418" fg:w="58"/><text x="38.2647%" y="591.50"></text></g><g><title>btrfs_search_slot (57 samples, 0.01%)</title><rect x="38.0149%" y="565" width="0.0108%" height="15" fill="rgb(234,198,43)" fg:x="200419" fg:w="57"/><text x="38.2649%" y="575.50"></text></g><g><title>__btrfs_update_delayed_inode (83 samples, 0.02%)</title><rect x="38.0137%" y="597" width="0.0157%" height="15" fill="rgb(220,108,29)" fg:x="200413" fg:w="83"/><text x="38.2637%" y="607.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (101 samples, 0.02%)</title><rect x="38.0126%" y="613" width="0.0192%" height="15" fill="rgb(226,163,33)" fg:x="200407" fg:w="101"/><text x="38.2626%" y="623.50"></text></g><g><title>__btrfs_update_delayed_inode (55 samples, 0.01%)</title><rect x="38.0382%" y="597" width="0.0104%" height="15" fill="rgb(205,194,45)" fg:x="200542" fg:w="55"/><text x="38.2882%" y="607.50"></text></g><g><title>btrfs_search_slot (70 samples, 0.01%)</title><rect x="38.0583%" y="565" width="0.0133%" height="15" fill="rgb(206,143,44)" fg:x="200648" fg:w="70"/><text x="38.3083%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (148 samples, 0.03%)</title><rect x="38.0583%" y="581" width="0.0281%" height="15" fill="rgb(236,136,36)" fg:x="200648" fg:w="148"/><text x="38.3083%" y="591.50"></text></g><g><title>setup_items_for_insert (78 samples, 0.01%)</title><rect x="38.0716%" y="565" width="0.0148%" height="15" fill="rgb(249,172,42)" fg:x="200718" fg:w="78"/><text x="38.3216%" y="575.50"></text></g><g><title>btrfs_insert_delayed_items (194 samples, 0.04%)</title><rect x="38.0568%" y="597" width="0.0368%" height="15" fill="rgb(216,139,23)" fg:x="200640" fg:w="194"/><text x="38.3068%" y="607.50"></text></g><g><title>btrfs_commit_inode_delayed_items (346 samples, 0.07%)</title><rect x="38.0318%" y="613" width="0.0656%" height="15" fill="rgb(207,166,20)" fg:x="200508" fg:w="346"/><text x="38.2818%" y="623.50"></text></g><g><title>btrfs_release_path (77 samples, 0.01%)</title><rect x="38.1071%" y="613" width="0.0146%" height="15" fill="rgb(210,209,22)" fg:x="200905" fg:w="77"/><text x="38.3571%" y="623.50"></text></g><g><title>__radix_tree_lookup (101 samples, 0.02%)</title><rect x="38.1609%" y="533" width="0.0192%" height="15" fill="rgb(232,118,20)" fg:x="201189" fg:w="101"/><text x="38.4109%" y="543.50"></text></g><g><title>alloc_extent_buffer (180 samples, 0.03%)</title><rect x="38.1537%" y="565" width="0.0341%" height="15" fill="rgb(238,113,42)" fg:x="201151" fg:w="180"/><text x="38.4037%" y="575.50"></text></g><g><title>find_extent_buffer (169 samples, 0.03%)</title><rect x="38.1558%" y="549" width="0.0321%" height="15" fill="rgb(231,42,5)" fg:x="201162" fg:w="169"/><text x="38.4058%" y="559.50"></text></g><g><title>btrfs_read_node_slot (314 samples, 0.06%)</title><rect x="38.1403%" y="597" width="0.0596%" height="15" fill="rgb(243,166,24)" fg:x="201080" fg:w="314"/><text x="38.3903%" y="607.50"></text></g><g><title>read_tree_block (247 samples, 0.05%)</title><rect x="38.1530%" y="581" width="0.0469%" height="15" fill="rgb(237,226,12)" fg:x="201147" fg:w="247"/><text x="38.4030%" y="591.50"></text></g><g><title>btree_read_extent_buffer_pages (63 samples, 0.01%)</title><rect x="38.1879%" y="565" width="0.0119%" height="15" fill="rgb(229,133,24)" fg:x="201331" fg:w="63"/><text x="38.4379%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (75 samples, 0.01%)</title><rect x="38.2004%" y="597" width="0.0142%" height="15" fill="rgb(238,33,43)" fg:x="201397" fg:w="75"/><text x="38.4504%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (178 samples, 0.03%)</title><rect x="38.2184%" y="597" width="0.0338%" height="15" fill="rgb(227,59,38)" fg:x="201492" fg:w="178"/><text x="38.4684%" y="607.50"></text></g><g><title>btrfs_search_forward (758 samples, 0.14%)</title><rect x="38.1217%" y="613" width="0.1438%" height="15" fill="rgb(230,97,0)" fg:x="200982" fg:w="758"/><text x="38.3717%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (93 samples, 0.02%)</title><rect x="38.3297%" y="565" width="0.0176%" height="15" fill="rgb(250,173,50)" fg:x="202079" fg:w="93"/><text x="38.5797%" y="575.50"></text></g><g><title>find_extent_buffer (57 samples, 0.01%)</title><rect x="38.3531%" y="549" width="0.0108%" height="15" fill="rgb(240,15,50)" fg:x="202202" fg:w="57"/><text x="38.6031%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (99 samples, 0.02%)</title><rect x="38.3474%" y="565" width="0.0188%" height="15" fill="rgb(221,93,22)" fg:x="202172" fg:w="99"/><text x="38.5974%" y="575.50"></text></g><g><title>split_leaf (81 samples, 0.02%)</title><rect x="38.3679%" y="565" width="0.0154%" height="15" fill="rgb(245,180,53)" fg:x="202280" fg:w="81"/><text x="38.6179%" y="575.50"></text></g><g><title>btrfs_search_slot (471 samples, 0.09%)</title><rect x="38.2979%" y="581" width="0.0893%" height="15" fill="rgb(231,88,51)" fg:x="201911" fg:w="471"/><text x="38.5479%" y="591.50"></text></g><g><title>btrfs_get_token_32 (264 samples, 0.05%)</title><rect x="38.4121%" y="565" width="0.0501%" height="15" fill="rgb(240,58,21)" fg:x="202513" fg:w="264"/><text x="38.6621%" y="575.50"></text></g><g><title>check_setget_bounds.isra.0 (64 samples, 0.01%)</title><rect x="38.4500%" y="549" width="0.0121%" height="15" fill="rgb(237,21,10)" fg:x="202713" fg:w="64"/><text x="38.7000%" y="559.50"></text></g><g><title>btrfs_set_token_32 (285 samples, 0.05%)</title><rect x="38.4739%" y="565" width="0.0541%" height="15" fill="rgb(218,43,11)" fg:x="202839" fg:w="285"/><text x="38.7239%" y="575.50"></text></g><g><title>check_setget_bounds.isra.0 (55 samples, 0.01%)</title><rect x="38.5175%" y="549" width="0.0104%" height="15" fill="rgb(218,221,29)" fg:x="203069" fg:w="55"/><text x="38.7675%" y="559.50"></text></g><g><title>memcpy_extent_buffer (135 samples, 0.03%)</title><rect x="38.5287%" y="565" width="0.0256%" height="15" fill="rgb(214,118,42)" fg:x="203128" fg:w="135"/><text x="38.7787%" y="575.50"></text></g><g><title>memmove (93 samples, 0.02%)</title><rect x="38.5367%" y="549" width="0.0176%" height="15" fill="rgb(251,200,26)" fg:x="203170" fg:w="93"/><text x="38.7867%" y="559.50"></text></g><g><title>memmove_extent_buffer (104 samples, 0.02%)</title><rect x="38.5543%" y="565" width="0.0197%" height="15" fill="rgb(237,101,39)" fg:x="203263" fg:w="104"/><text x="38.8043%" y="575.50"></text></g><g><title>memmove (77 samples, 0.01%)</title><rect x="38.5594%" y="549" width="0.0146%" height="15" fill="rgb(251,117,11)" fg:x="203290" fg:w="77"/><text x="38.8094%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (1,497 samples, 0.28%)</title><rect x="38.2962%" y="597" width="0.2839%" height="15" fill="rgb(216,223,23)" fg:x="201902" fg:w="1497"/><text x="38.5462%" y="607.50"></text></g><g><title>setup_items_for_insert (1,017 samples, 0.19%)</title><rect x="38.3872%" y="581" width="0.1929%" height="15" fill="rgb(251,54,12)" fg:x="202382" fg:w="1017"/><text x="38.6372%" y="591.50"></text></g><g><title>fill_inode_item (146 samples, 0.03%)</title><rect x="38.5985%" y="597" width="0.0277%" height="15" fill="rgb(254,176,54)" fg:x="203496" fg:w="146"/><text x="38.8485%" y="607.50"></text></g><g><title>copy_items.isra.0 (1,899 samples, 0.36%)</title><rect x="38.2747%" y="613" width="0.3602%" height="15" fill="rgb(210,32,8)" fg:x="201789" fg:w="1899"/><text x="38.5247%" y="623.50"></text></g><g><title>btrfs_get_token_32 (219 samples, 0.04%)</title><rect x="38.6602%" y="581" width="0.0415%" height="15" fill="rgb(235,52,38)" fg:x="203821" fg:w="219"/><text x="38.9102%" y="591.50"></text></g><g><title>btrfs_set_token_32 (193 samples, 0.04%)</title><rect x="38.7051%" y="581" width="0.0366%" height="15" fill="rgb(231,4,44)" fg:x="204058" fg:w="193"/><text x="38.9551%" y="591.50"></text></g><g><title>btrfs_del_items (797 samples, 0.15%)</title><rect x="38.6383%" y="597" width="0.1512%" height="15" fill="rgb(249,2,32)" fg:x="203706" fg:w="797"/><text x="38.8883%" y="607.50"></text></g><g><title>memmove_extent_buffer (204 samples, 0.04%)</title><rect x="38.7508%" y="581" width="0.0387%" height="15" fill="rgb(224,65,26)" fg:x="204299" fg:w="204"/><text x="39.0008%" y="591.50"></text></g><g><title>memmove (159 samples, 0.03%)</title><rect x="38.7594%" y="565" width="0.0302%" height="15" fill="rgb(250,73,40)" fg:x="204344" fg:w="159"/><text x="39.0094%" y="575.50"></text></g><g><title>btrfs_release_path (69 samples, 0.01%)</title><rect x="38.7895%" y="597" width="0.0131%" height="15" fill="rgb(253,177,16)" fg:x="204503" fg:w="69"/><text x="39.0395%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (126 samples, 0.02%)</title><rect x="38.8305%" y="581" width="0.0239%" height="15" fill="rgb(217,32,34)" fg:x="204719" fg:w="126"/><text x="39.0805%" y="591.50"></text></g><g><title>find_extent_buffer (86 samples, 0.02%)</title><rect x="38.8605%" y="565" width="0.0163%" height="15" fill="rgb(212,7,10)" fg:x="204877" fg:w="86"/><text x="39.1105%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (134 samples, 0.03%)</title><rect x="38.8544%" y="581" width="0.0254%" height="15" fill="rgb(245,89,8)" fg:x="204845" fg:w="134"/><text x="39.1044%" y="591.50"></text></g><g><title>btrfs_search_slot (432 samples, 0.08%)</title><rect x="38.8026%" y="597" width="0.0819%" height="15" fill="rgb(237,16,53)" fg:x="204572" fg:w="432"/><text x="39.0526%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (75 samples, 0.01%)</title><rect x="38.8845%" y="597" width="0.0142%" height="15" fill="rgb(250,204,30)" fg:x="205004" fg:w="75"/><text x="39.1345%" y="607.50"></text></g><g><title>drop_objectid_items (1,407 samples, 0.27%)</title><rect x="38.6349%" y="613" width="0.2669%" height="15" fill="rgb(208,77,27)" fg:x="203688" fg:w="1407"/><text x="38.8849%" y="623.50"></text></g><g><title>kmem_cache_alloc (62 samples, 0.01%)</title><rect x="38.9018%" y="613" width="0.0118%" height="15" fill="rgb(250,204,28)" fg:x="205095" fg:w="62"/><text x="39.1518%" y="623.50"></text></g><g><title>btrfs_read_node_slot (54 samples, 0.01%)</title><rect x="38.9733%" y="565" width="0.0102%" height="15" fill="rgb(244,63,21)" fg:x="205472" fg:w="54"/><text x="39.2233%" y="575.50"></text></g><g><title>btrfs_search_forward (141 samples, 0.03%)</title><rect x="38.9695%" y="581" width="0.0267%" height="15" fill="rgb(236,85,44)" fg:x="205452" fg:w="141"/><text x="39.2195%" y="591.50"></text></g><g><title>btrfs_search_slot (112 samples, 0.02%)</title><rect x="38.9963%" y="581" width="0.0212%" height="15" fill="rgb(215,98,4)" fg:x="205593" fg:w="112"/><text x="39.2463%" y="591.50"></text></g><g><title>btrfs_search_slot (96 samples, 0.02%)</title><rect x="39.0185%" y="549" width="0.0182%" height="15" fill="rgb(235,38,11)" fg:x="205710" fg:w="96"/><text x="39.2685%" y="559.50"></text></g><g><title>btrfs_get_token_32 (125 samples, 0.02%)</title><rect x="39.0425%" y="533" width="0.0237%" height="15" fill="rgb(254,186,25)" fg:x="205837" fg:w="125"/><text x="39.2925%" y="543.50"></text></g><g><title>btrfs_set_token_32 (100 samples, 0.02%)</title><rect x="39.0691%" y="533" width="0.0190%" height="15" fill="rgb(225,55,31)" fg:x="205977" fg:w="100"/><text x="39.3191%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (432 samples, 0.08%)</title><rect x="39.0179%" y="565" width="0.0819%" height="15" fill="rgb(211,15,21)" fg:x="205707" fg:w="432"/><text x="39.2679%" y="575.50"></text></g><g><title>setup_items_for_insert (333 samples, 0.06%)</title><rect x="39.0367%" y="549" width="0.0632%" height="15" fill="rgb(215,187,41)" fg:x="205806" fg:w="333"/><text x="39.2867%" y="559.50"></text></g><g><title>insert_dir_log_key (450 samples, 0.09%)</title><rect x="39.0175%" y="581" width="0.0854%" height="15" fill="rgb(248,69,32)" fg:x="205705" fg:w="450"/><text x="39.2675%" y="591.50"></text></g><g><title>memcg_slab_post_alloc_hook (84 samples, 0.02%)</title><rect x="39.1858%" y="549" width="0.0159%" height="15" fill="rgb(252,102,52)" fg:x="206592" fg:w="84"/><text x="39.4358%" y="559.50"></text></g><g><title>memset_erms (158 samples, 0.03%)</title><rect x="39.2026%" y="549" width="0.0300%" height="15" fill="rgb(253,140,32)" fg:x="206681" fg:w="158"/><text x="39.4526%" y="559.50"></text></g><g><title>__kmalloc (629 samples, 0.12%)</title><rect x="39.1317%" y="565" width="0.1193%" height="15" fill="rgb(216,56,42)" fg:x="206307" fg:w="629"/><text x="39.3817%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (97 samples, 0.02%)</title><rect x="39.2326%" y="549" width="0.0184%" height="15" fill="rgb(216,184,14)" fg:x="206839" fg:w="97"/><text x="39.4826%" y="559.50"></text></g><g><title>btrfs_get_32 (156 samples, 0.03%)</title><rect x="39.2510%" y="565" width="0.0296%" height="15" fill="rgb(237,187,27)" fg:x="206936" fg:w="156"/><text x="39.5010%" y="575.50"></text></g><g><title>btrfs_get_token_32 (55 samples, 0.01%)</title><rect x="39.2929%" y="533" width="0.0104%" height="15" fill="rgb(219,65,3)" fg:x="207157" fg:w="55"/><text x="39.5429%" y="543.50"></text></g><g><title>btrfs_set_token_32 (59 samples, 0.01%)</title><rect x="39.3045%" y="533" width="0.0112%" height="15" fill="rgb(245,83,25)" fg:x="207218" fg:w="59"/><text x="39.5545%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (217 samples, 0.04%)</title><rect x="39.2806%" y="565" width="0.0412%" height="15" fill="rgb(214,205,45)" fg:x="207092" fg:w="217"/><text x="39.5306%" y="575.50"></text></g><g><title>setup_items_for_insert (165 samples, 0.03%)</title><rect x="39.2905%" y="549" width="0.0313%" height="15" fill="rgb(241,20,18)" fg:x="207144" fg:w="165"/><text x="39.5405%" y="559.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (64 samples, 0.01%)</title><rect x="39.3337%" y="549" width="0.0121%" height="15" fill="rgb(232,163,23)" fg:x="207372" fg:w="64"/><text x="39.5837%" y="559.50"></text></g><g><title>free_extent_buffer.part.0 (162 samples, 0.03%)</title><rect x="39.3472%" y="549" width="0.0307%" height="15" fill="rgb(214,5,46)" fg:x="207443" fg:w="162"/><text x="39.5972%" y="559.50"></text></g><g><title>_raw_spin_lock (123 samples, 0.02%)</title><rect x="39.3546%" y="533" width="0.0233%" height="15" fill="rgb(229,78,17)" fg:x="207482" fg:w="123"/><text x="39.6046%" y="543.50"></text></g><g><title>btrfs_release_path (424 samples, 0.08%)</title><rect x="39.3221%" y="565" width="0.0804%" height="15" fill="rgb(248,89,10)" fg:x="207311" fg:w="424"/><text x="39.5721%" y="575.50"></text></g><g><title>release_extent_buffer (130 samples, 0.02%)</title><rect x="39.3779%" y="549" width="0.0247%" height="15" fill="rgb(248,54,15)" fg:x="207605" fg:w="130"/><text x="39.6279%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (106 samples, 0.02%)</title><rect x="39.4460%" y="533" width="0.0201%" height="15" fill="rgb(223,116,6)" fg:x="207964" fg:w="106"/><text x="39.6960%" y="543.50"></text></g><g><title>_raw_read_lock (73 samples, 0.01%)</title><rect x="39.4523%" y="517" width="0.0138%" height="15" fill="rgb(205,125,38)" fg:x="207997" fg:w="73"/><text x="39.7023%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (218 samples, 0.04%)</title><rect x="39.4435%" y="549" width="0.0413%" height="15" fill="rgb(251,78,38)" fg:x="207951" fg:w="218"/><text x="39.6935%" y="559.50"></text></g><g><title>btrfs_root_node (99 samples, 0.02%)</title><rect x="39.4661%" y="533" width="0.0188%" height="15" fill="rgb(253,78,28)" fg:x="208070" fg:w="99"/><text x="39.7161%" y="543.50"></text></g><g><title>btrfs_set_path_blocking (205 samples, 0.04%)</title><rect x="39.4894%" y="549" width="0.0389%" height="15" fill="rgb(209,120,3)" fg:x="208193" fg:w="205"/><text x="39.7394%" y="559.50"></text></g><g><title>btrfs_set_lock_blocking_read (142 samples, 0.03%)</title><rect x="39.5014%" y="533" width="0.0269%" height="15" fill="rgb(238,229,9)" fg:x="208256" fg:w="142"/><text x="39.7514%" y="543.50"></text></g><g><title>btrfs_tree_read_lock_atomic (77 samples, 0.01%)</title><rect x="39.5283%" y="549" width="0.0146%" height="15" fill="rgb(253,159,18)" fg:x="208398" fg:w="77"/><text x="39.7783%" y="559.50"></text></g><g><title>_raw_read_lock (63 samples, 0.01%)</title><rect x="39.5310%" y="533" width="0.0119%" height="15" fill="rgb(244,42,34)" fg:x="208412" fg:w="63"/><text x="39.7810%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (83 samples, 0.02%)</title><rect x="39.5429%" y="549" width="0.0157%" height="15" fill="rgb(224,8,7)" fg:x="208475" fg:w="83"/><text x="39.7929%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (657 samples, 0.12%)</title><rect x="39.5587%" y="549" width="0.1246%" height="15" fill="rgb(210,201,45)" fg:x="208558" fg:w="657"/><text x="39.8087%" y="559.50"></text></g><g><title>btrfs_get_64 (84 samples, 0.02%)</title><rect x="39.7022%" y="533" width="0.0159%" height="15" fill="rgb(252,185,21)" fg:x="209315" fg:w="84"/><text x="39.9522%" y="543.50"></text></g><g><title>__radix_tree_lookup (221 samples, 0.04%)</title><rect x="39.7379%" y="517" width="0.0419%" height="15" fill="rgb(223,131,1)" fg:x="209503" fg:w="221"/><text x="39.9879%" y="527.50"></text></g><g><title>mark_extent_buffer_accessed (174 samples, 0.03%)</title><rect x="39.7798%" y="517" width="0.0330%" height="15" fill="rgb(245,141,16)" fg:x="209724" fg:w="174"/><text x="40.0298%" y="527.50"></text></g><g><title>mark_page_accessed (101 samples, 0.02%)</title><rect x="39.7937%" y="501" width="0.0192%" height="15" fill="rgb(229,55,45)" fg:x="209797" fg:w="101"/><text x="40.0437%" y="511.50"></text></g><g><title>find_extent_buffer (472 samples, 0.09%)</title><rect x="39.7237%" y="533" width="0.0895%" height="15" fill="rgb(208,92,15)" fg:x="209428" fg:w="472"/><text x="39.9737%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (787 samples, 0.15%)</title><rect x="39.6833%" y="549" width="0.1493%" height="15" fill="rgb(234,185,47)" fg:x="209215" fg:w="787"/><text x="39.9333%" y="559.50"></text></g><g><title>read_extent_buffer (102 samples, 0.02%)</title><rect x="39.8132%" y="533" width="0.0193%" height="15" fill="rgb(253,104,50)" fg:x="209900" fg:w="102"/><text x="40.0632%" y="543.50"></text></g><g><title>btrfs_search_slot (2,375 samples, 0.45%)</title><rect x="39.4026%" y="565" width="0.4505%" height="15" fill="rgb(205,70,7)" fg:x="207735" fg:w="2375"/><text x="39.6526%" y="575.50"></text></g><g><title>unlock_up (108 samples, 0.02%)</title><rect x="39.8326%" y="549" width="0.0205%" height="15" fill="rgb(240,178,43)" fg:x="210002" fg:w="108"/><text x="40.0826%" y="559.50"></text></g><g><title>kfree (461 samples, 0.09%)</title><rect x="39.8536%" y="565" width="0.0874%" height="15" fill="rgb(214,112,2)" fg:x="210113" fg:w="461"/><text x="40.1036%" y="575.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (83 samples, 0.02%)</title><rect x="39.9253%" y="549" width="0.0157%" height="15" fill="rgb(206,46,17)" fg:x="210491" fg:w="83"/><text x="40.1753%" y="559.50"></text></g><g><title>memcmp (296 samples, 0.06%)</title><rect x="39.9410%" y="565" width="0.0561%" height="15" fill="rgb(225,220,16)" fg:x="210574" fg:w="296"/><text x="40.1910%" y="575.50"></text></g><g><title>overwrite_item (5,018 samples, 0.95%)</title><rect x="39.1029%" y="581" width="0.9518%" height="15" fill="rgb(238,65,40)" fg:x="206155" fg:w="5018"/><text x="39.3529%" y="591.50"></text></g><g><title>read_extent_buffer (303 samples, 0.06%)</title><rect x="39.9972%" y="565" width="0.0575%" height="15" fill="rgb(230,151,21)" fg:x="210870" fg:w="303"/><text x="40.2472%" y="575.50"></text></g><g><title>log_directory_changes (6,163 samples, 1.17%)</title><rect x="38.9198%" y="613" width="1.1690%" height="15" fill="rgb(218,58,49)" fg:x="205190" fg:w="6163"/><text x="39.1698%" y="623.50"></text></g><g><title>log_dir_items (6,162 samples, 1.17%)</title><rect x="38.9200%" y="597" width="1.1688%" height="15" fill="rgb(219,179,14)" fg:x="205191" fg:w="6162"/><text x="39.1700%" y="607.50"></text></g><g><title>read_extent_buffer (180 samples, 0.03%)</title><rect x="40.0547%" y="581" width="0.0341%" height="15" fill="rgb(223,72,1)" fg:x="211173" fg:w="180"/><text x="40.3047%" y="591.50"></text></g><g><title>btrfs_log_inode (11,630 samples, 2.21%)</title><rect x="37.8937%" y="629" width="2.2059%" height="15" fill="rgb(238,126,10)" fg:x="199780" fg:w="11630"/><text x="38.1437%" y="639.50">b..</text></g><g><title>free_extent_buffer.part.0 (78 samples, 0.01%)</title><rect x="40.1171%" y="613" width="0.0148%" height="15" fill="rgb(224,206,38)" fg:x="211502" fg:w="78"/><text x="40.3671%" y="623.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="40.1205%" y="597" width="0.0114%" height="15" fill="rgb(212,201,54)" fg:x="211520" fg:w="60"/><text x="40.3705%" y="607.50"></text></g><g><title>btrfs_release_path (207 samples, 0.04%)</title><rect x="40.1072%" y="629" width="0.0393%" height="15" fill="rgb(218,154,48)" fg:x="211450" fg:w="207"/><text x="40.3572%" y="639.50"></text></g><g><title>release_extent_buffer (77 samples, 0.01%)</title><rect x="40.1319%" y="613" width="0.0146%" height="15" fill="rgb(232,93,24)" fg:x="211580" fg:w="77"/><text x="40.3819%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (78 samples, 0.01%)</title><rect x="40.1700%" y="613" width="0.0148%" height="15" fill="rgb(245,30,21)" fg:x="211781" fg:w="78"/><text x="40.4200%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (84 samples, 0.02%)</title><rect x="40.1882%" y="613" width="0.0159%" height="15" fill="rgb(242,148,29)" fg:x="211877" fg:w="84"/><text x="40.4382%" y="623.50"></text></g><g><title>btrfs_set_lock_blocking_read (58 samples, 0.01%)</title><rect x="40.1931%" y="597" width="0.0110%" height="15" fill="rgb(244,153,54)" fg:x="211903" fg:w="58"/><text x="40.4431%" y="607.50"></text></g><g><title>btrfs_tree_read_lock_atomic (77 samples, 0.01%)</title><rect x="40.2041%" y="613" width="0.0146%" height="15" fill="rgb(252,87,22)" fg:x="211961" fg:w="77"/><text x="40.4541%" y="623.50"></text></g><g><title>_raw_read_lock (62 samples, 0.01%)</title><rect x="40.2070%" y="597" width="0.0118%" height="15" fill="rgb(210,51,29)" fg:x="211976" fg:w="62"/><text x="40.4570%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (667 samples, 0.13%)</title><rect x="40.2284%" y="613" width="0.1265%" height="15" fill="rgb(242,136,47)" fg:x="212089" fg:w="667"/><text x="40.4784%" y="623.50"></text></g><g><title>btrfs_get_64 (71 samples, 0.01%)</title><rect x="40.3750%" y="597" width="0.0135%" height="15" fill="rgb(238,68,4)" fg:x="212862" fg:w="71"/><text x="40.6250%" y="607.50"></text></g><g><title>btrfs_verify_level_key (64 samples, 0.01%)</title><rect x="40.3894%" y="597" width="0.0121%" height="15" fill="rgb(242,161,30)" fg:x="212938" fg:w="64"/><text x="40.6394%" y="607.50"></text></g><g><title>__radix_tree_lookup (320 samples, 0.06%)</title><rect x="40.4236%" y="581" width="0.0607%" height="15" fill="rgb(218,58,44)" fg:x="213118" fg:w="320"/><text x="40.6736%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (165 samples, 0.03%)</title><rect x="40.4843%" y="581" width="0.0313%" height="15" fill="rgb(252,125,32)" fg:x="213438" fg:w="165"/><text x="40.7343%" y="591.50"></text></g><g><title>mark_page_accessed (106 samples, 0.02%)</title><rect x="40.4955%" y="565" width="0.0201%" height="15" fill="rgb(219,178,0)" fg:x="213497" fg:w="106"/><text x="40.7455%" y="575.50"></text></g><g><title>find_extent_buffer (606 samples, 0.11%)</title><rect x="40.4016%" y="597" width="0.1149%" height="15" fill="rgb(213,152,7)" fg:x="213002" fg:w="606"/><text x="40.6516%" y="607.50"></text></g><g><title>read_extent_buffer (84 samples, 0.02%)</title><rect x="40.5165%" y="597" width="0.0159%" height="15" fill="rgb(249,109,34)" fg:x="213608" fg:w="84"/><text x="40.7665%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (943 samples, 0.18%)</title><rect x="40.3549%" y="613" width="0.1789%" height="15" fill="rgb(232,96,21)" fg:x="212756" fg:w="943"/><text x="40.6049%" y="623.50"></text></g><g><title>btrfs_search_slot (2,090 samples, 0.40%)</title><rect x="40.1465%" y="629" width="0.3964%" height="15" fill="rgb(228,27,39)" fg:x="211657" fg:w="2090"/><text x="40.3965%" y="639.50"></text></g><g><title>check_parent_dirs_for_sync (85 samples, 0.02%)</title><rect x="40.5429%" y="629" width="0.0161%" height="15" fill="rgb(211,182,52)" fg:x="213747" fg:w="85"/><text x="40.7929%" y="639.50"></text></g><g><title>btrfs_search_forward (119 samples, 0.02%)</title><rect x="40.5803%" y="597" width="0.0226%" height="15" fill="rgb(234,178,38)" fg:x="213944" fg:w="119"/><text x="40.8303%" y="607.50"></text></g><g><title>btrfs_search_slot (55 samples, 0.01%)</title><rect x="40.6062%" y="565" width="0.0104%" height="15" fill="rgb(221,111,3)" fg:x="214081" fg:w="55"/><text x="40.8562%" y="575.50"></text></g><g><title>btrfs_get_token_32 (88 samples, 0.02%)</title><rect x="40.6220%" y="549" width="0.0167%" height="15" fill="rgb(228,175,21)" fg:x="214164" fg:w="88"/><text x="40.8720%" y="559.50"></text></g><g><title>btrfs_set_token_32 (68 samples, 0.01%)</title><rect x="40.6404%" y="549" width="0.0129%" height="15" fill="rgb(228,174,43)" fg:x="214261" fg:w="68"/><text x="40.8904%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (294 samples, 0.06%)</title><rect x="40.6059%" y="581" width="0.0558%" height="15" fill="rgb(211,191,0)" fg:x="214079" fg:w="294"/><text x="40.8559%" y="591.50"></text></g><g><title>setup_items_for_insert (237 samples, 0.04%)</title><rect x="40.6167%" y="565" width="0.0450%" height="15" fill="rgb(253,117,3)" fg:x="214136" fg:w="237"/><text x="40.8667%" y="575.50"></text></g><g><title>copy_items.isra.0 (349 samples, 0.07%)</title><rect x="40.6028%" y="597" width="0.0662%" height="15" fill="rgb(241,127,19)" fg:x="214063" fg:w="349"/><text x="40.8528%" y="607.50"></text></g><g><title>btrfs_get_token_32 (79 samples, 0.01%)</title><rect x="40.6760%" y="565" width="0.0150%" height="15" fill="rgb(218,103,12)" fg:x="214449" fg:w="79"/><text x="40.9260%" y="575.50"></text></g><g><title>btrfs_set_token_32 (91 samples, 0.02%)</title><rect x="40.6920%" y="565" width="0.0173%" height="15" fill="rgb(236,214,43)" fg:x="214533" fg:w="91"/><text x="40.9420%" y="575.50"></text></g><g><title>btrfs_del_items (259 samples, 0.05%)</title><rect x="40.6698%" y="581" width="0.0491%" height="15" fill="rgb(244,144,19)" fg:x="214416" fg:w="259"/><text x="40.9198%" y="591.50"></text></g><g><title>btrfs_search_slot (84 samples, 0.02%)</title><rect x="40.7204%" y="581" width="0.0159%" height="15" fill="rgb(246,188,10)" fg:x="214683" fg:w="84"/><text x="40.9704%" y="591.50"></text></g><g><title>drop_objectid_items (371 samples, 0.07%)</title><rect x="40.6690%" y="597" width="0.0704%" height="15" fill="rgb(212,193,33)" fg:x="214412" fg:w="371"/><text x="40.9190%" y="607.50"></text></g><g><title>btrfs_read_node_slot (89 samples, 0.02%)</title><rect x="40.7749%" y="549" width="0.0169%" height="15" fill="rgb(241,51,29)" fg:x="214970" fg:w="89"/><text x="41.0249%" y="559.50"></text></g><g><title>read_tree_block (59 samples, 0.01%)</title><rect x="40.7806%" y="533" width="0.0112%" height="15" fill="rgb(211,58,19)" fg:x="215000" fg:w="59"/><text x="41.0306%" y="543.50"></text></g><g><title>btrfs_search_forward (210 samples, 0.04%)</title><rect x="40.7686%" y="565" width="0.0398%" height="15" fill="rgb(229,111,26)" fg:x="214937" fg:w="210"/><text x="41.0186%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (55 samples, 0.01%)</title><rect x="40.8138%" y="549" width="0.0104%" height="15" fill="rgb(213,115,40)" fg:x="215175" fg:w="55"/><text x="41.0638%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (63 samples, 0.01%)</title><rect x="40.8242%" y="549" width="0.0119%" height="15" fill="rgb(209,56,44)" fg:x="215230" fg:w="63"/><text x="41.0742%" y="559.50"></text></g><g><title>btrfs_search_slot (152 samples, 0.03%)</title><rect x="40.8084%" y="565" width="0.0288%" height="15" fill="rgb(230,108,32)" fg:x="215147" fg:w="152"/><text x="41.0584%" y="575.50"></text></g><g><title>btrfs_search_slot (104 samples, 0.02%)</title><rect x="40.8373%" y="533" width="0.0197%" height="15" fill="rgb(216,165,31)" fg:x="215299" fg:w="104"/><text x="41.0873%" y="543.50"></text></g><g><title>btrfs_get_token_32 (173 samples, 0.03%)</title><rect x="40.8688%" y="517" width="0.0328%" height="15" fill="rgb(218,122,21)" fg:x="215465" fg:w="173"/><text x="41.1188%" y="527.50"></text></g><g><title>btrfs_set_token_32 (192 samples, 0.04%)</title><rect x="40.9048%" y="517" width="0.0364%" height="15" fill="rgb(223,224,47)" fg:x="215655" fg:w="192"/><text x="41.1548%" y="527.50"></text></g><g><title>btrfs_insert_empty_items (636 samples, 0.12%)</title><rect x="40.8373%" y="549" width="0.1206%" height="15" fill="rgb(238,102,44)" fg:x="215299" fg:w="636"/><text x="41.0873%" y="559.50"></text></g><g><title>setup_items_for_insert (532 samples, 0.10%)</title><rect x="40.8570%" y="533" width="0.1009%" height="15" fill="rgb(236,46,40)" fg:x="215403" fg:w="532"/><text x="41.1070%" y="543.50"></text></g><g><title>insert_dir_log_key (663 samples, 0.13%)</title><rect x="40.8373%" y="565" width="0.1258%" height="15" fill="rgb(247,202,50)" fg:x="215299" fg:w="663"/><text x="41.0873%" y="575.50"></text></g><g><title>__kmalloc (169 samples, 0.03%)</title><rect x="40.9733%" y="549" width="0.0321%" height="15" fill="rgb(209,99,20)" fg:x="216016" fg:w="169"/><text x="41.2233%" y="559.50"></text></g><g><title>btrfs_set_token_32 (63 samples, 0.01%)</title><rect x="41.0359%" y="517" width="0.0119%" height="15" fill="rgb(252,27,34)" fg:x="216346" fg:w="63"/><text x="41.2859%" y="527.50"></text></g><g><title>btrfs_insert_empty_items (213 samples, 0.04%)</title><rect x="41.0142%" y="549" width="0.0404%" height="15" fill="rgb(215,206,23)" fg:x="216232" fg:w="213"/><text x="41.2642%" y="559.50"></text></g><g><title>setup_items_for_insert (167 samples, 0.03%)</title><rect x="41.0230%" y="533" width="0.0317%" height="15" fill="rgb(212,135,36)" fg:x="216278" fg:w="167"/><text x="41.2730%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (54 samples, 0.01%)</title><rect x="41.0647%" y="533" width="0.0102%" height="15" fill="rgb(240,189,1)" fg:x="216498" fg:w="54"/><text x="41.3147%" y="543.50"></text></g><g><title>btrfs_release_path (152 samples, 0.03%)</title><rect x="41.0550%" y="549" width="0.0288%" height="15" fill="rgb(242,56,20)" fg:x="216447" fg:w="152"/><text x="41.3050%" y="559.50"></text></g><g><title>__btrfs_read_lock_root_node (56 samples, 0.01%)</title><rect x="41.0960%" y="533" width="0.0106%" height="15" fill="rgb(247,132,33)" fg:x="216663" fg:w="56"/><text x="41.3460%" y="543.50"></text></g><g><title>btrfs_set_path_blocking (68 samples, 0.01%)</title><rect x="41.1072%" y="533" width="0.0129%" height="15" fill="rgb(208,149,11)" fg:x="216722" fg:w="68"/><text x="41.3572%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (224 samples, 0.04%)</title><rect x="41.1286%" y="533" width="0.0425%" height="15" fill="rgb(211,33,11)" fg:x="216835" fg:w="224"/><text x="41.3786%" y="543.50"></text></g><g><title>__radix_tree_lookup (67 samples, 0.01%)</title><rect x="41.1884%" y="501" width="0.0127%" height="15" fill="rgb(221,29,38)" fg:x="217150" fg:w="67"/><text x="41.4384%" y="511.50"></text></g><g><title>find_extent_buffer (142 samples, 0.03%)</title><rect x="41.1840%" y="517" width="0.0269%" height="15" fill="rgb(206,182,49)" fg:x="217127" fg:w="142"/><text x="41.4340%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (233 samples, 0.04%)</title><rect x="41.1711%" y="533" width="0.0442%" height="15" fill="rgb(216,140,1)" fg:x="217059" fg:w="233"/><text x="41.4211%" y="543.50"></text></g><g><title>btrfs_search_slot (726 samples, 0.14%)</title><rect x="41.0839%" y="549" width="0.1377%" height="15" fill="rgb(232,57,40)" fg:x="216599" fg:w="726"/><text x="41.3339%" y="559.50"></text></g><g><title>kfree (130 samples, 0.02%)</title><rect x="41.2219%" y="549" width="0.0247%" height="15" fill="rgb(224,186,18)" fg:x="217327" fg:w="130"/><text x="41.4719%" y="559.50"></text></g><g><title>memcmp (83 samples, 0.02%)</title><rect x="41.2466%" y="549" width="0.0157%" height="15" fill="rgb(215,121,11)" fg:x="217457" fg:w="83"/><text x="41.4966%" y="559.50"></text></g><g><title>overwrite_item (1,667 samples, 0.32%)</title><rect x="40.9630%" y="565" width="0.3162%" height="15" fill="rgb(245,147,10)" fg:x="215962" fg:w="1667"/><text x="41.2130%" y="575.50"></text></g><g><title>read_extent_buffer (89 samples, 0.02%)</title><rect x="41.2623%" y="549" width="0.0169%" height="15" fill="rgb(238,153,13)" fg:x="217540" fg:w="89"/><text x="41.5123%" y="559.50"></text></g><g><title>log_directory_changes (2,909 samples, 0.55%)</title><rect x="40.7426%" y="597" width="0.5518%" height="15" fill="rgb(233,108,0)" fg:x="214800" fg:w="2909"/><text x="40.9926%" y="607.50"></text></g><g><title>log_dir_items (2,909 samples, 0.55%)</title><rect x="40.7426%" y="581" width="0.5518%" height="15" fill="rgb(212,157,17)" fg:x="214800" fg:w="2909"/><text x="40.9926%" y="591.50"></text></g><g><title>read_extent_buffer (80 samples, 0.02%)</title><rect x="41.2792%" y="565" width="0.0152%" height="15" fill="rgb(225,213,38)" fg:x="217629" fg:w="80"/><text x="41.5292%" y="575.50"></text></g><g><title>btrfs_log_inode (3,823 samples, 0.73%)</title><rect x="40.5715%" y="613" width="0.7251%" height="15" fill="rgb(248,16,11)" fg:x="213898" fg:w="3823"/><text x="40.8215%" y="623.50"></text></g><g><title>btrfs_search_forward (88 samples, 0.02%)</title><rect x="41.2993%" y="613" width="0.0167%" height="15" fill="rgb(241,33,4)" fg:x="217735" fg:w="88"/><text x="41.5493%" y="623.50"></text></g><g><title>log_new_dir_dentries (4,025 samples, 0.76%)</title><rect x="40.5607%" y="629" width="0.7634%" height="15" fill="rgb(222,26,43)" fg:x="213841" fg:w="4025"/><text x="40.8107%" y="639.50"></text></g><g><title>btrfs_log_new_name (18,424 samples, 3.49%)</title><rect x="37.8390%" y="661" width="3.4946%" height="15" fill="rgb(243,29,36)" fg:x="199492" fg:w="18424"/><text x="38.0890%" y="671.50">btr..</text></g><g><title>btrfs_log_inode_parent (18,406 samples, 3.49%)</title><rect x="37.8425%" y="645" width="3.4912%" height="15" fill="rgb(241,9,27)" fg:x="199510" fg:w="18406"/><text x="38.0925%" y="655.50">btr..</text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="41.4321%" y="613" width="0.0101%" height="15" fill="rgb(205,117,26)" fg:x="218435" fg:w="53"/><text x="41.6821%" y="623.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="41.4423%" y="613" width="0.0121%" height="15" fill="rgb(209,80,39)" fg:x="218489" fg:w="64"/><text x="41.6923%" y="623.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (419 samples, 0.08%)</title><rect x="41.3849%" y="629" width="0.0795%" height="15" fill="rgb(239,155,6)" fg:x="218186" fg:w="419"/><text x="41.6349%" y="639.50"></text></g><g><title>btrfs_block_rsv_migrate (178 samples, 0.03%)</title><rect x="41.4643%" y="629" width="0.0338%" height="15" fill="rgb(212,104,12)" fg:x="218605" fg:w="178"/><text x="41.7143%" y="639.50"></text></g><g><title>_raw_spin_lock (150 samples, 0.03%)</title><rect x="41.4697%" y="613" width="0.0285%" height="15" fill="rgb(234,204,3)" fg:x="218633" fg:w="150"/><text x="41.7197%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (538 samples, 0.10%)</title><rect x="41.4981%" y="629" width="0.1020%" height="15" fill="rgb(251,218,7)" fg:x="218783" fg:w="538"/><text x="41.7481%" y="639.50"></text></g><g><title>btrfs_get_delayed_node (517 samples, 0.10%)</title><rect x="41.5021%" y="613" width="0.0981%" height="15" fill="rgb(221,81,32)" fg:x="218804" fg:w="517"/><text x="41.7521%" y="623.50"></text></g><g><title>inode_get_bytes (59 samples, 0.01%)</title><rect x="41.6066%" y="613" width="0.0112%" height="15" fill="rgb(214,152,26)" fg:x="219355" fg:w="59"/><text x="41.8566%" y="623.50"></text></g><g><title>fill_stack_inode_item (135 samples, 0.03%)</title><rect x="41.6002%" y="629" width="0.0256%" height="15" fill="rgb(223,22,3)" fg:x="219321" fg:w="135"/><text x="41.8502%" y="639.50"></text></g><g><title>mutex_lock (99 samples, 0.02%)</title><rect x="41.6258%" y="629" width="0.0188%" height="15" fill="rgb(207,174,7)" fg:x="219456" fg:w="99"/><text x="41.8758%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (1,603 samples, 0.30%)</title><rect x="41.3498%" y="645" width="0.3041%" height="15" fill="rgb(224,19,52)" fg:x="218001" fg:w="1603"/><text x="41.5998%" y="655.50"></text></g><g><title>btrfs_update_inode (1,852 samples, 0.35%)</title><rect x="41.3350%" y="661" width="0.3513%" height="15" fill="rgb(228,24,14)" fg:x="217923" fg:w="1852"/><text x="41.5850%" y="671.50"></text></g><g><title>btrfs_update_root_times (171 samples, 0.03%)</title><rect x="41.6538%" y="645" width="0.0324%" height="15" fill="rgb(230,153,43)" fg:x="219604" fg:w="171"/><text x="41.9038%" y="655.50"></text></g><g><title>ktime_get_real_ts64 (109 samples, 0.02%)</title><rect x="41.6656%" y="629" width="0.0207%" height="15" fill="rgb(231,106,12)" fg:x="219666" fg:w="109"/><text x="41.9156%" y="639.50"></text></g><g><title>read_tsc (74 samples, 0.01%)</title><rect x="41.6722%" y="613" width="0.0140%" height="15" fill="rgb(215,92,2)" fg:x="219701" fg:w="74"/><text x="41.9222%" y="623.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="41.7062%" y="629" width="0.0114%" height="15" fill="rgb(249,143,25)" fg:x="219880" fg:w="60"/><text x="41.9562%" y="639.50"></text></g><g><title>__d_instantiate (134 samples, 0.03%)</title><rect x="41.6939%" y="645" width="0.0254%" height="15" fill="rgb(252,7,35)" fg:x="219815" fg:w="134"/><text x="41.9439%" y="655.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="41.7193%" y="645" width="0.0119%" height="15" fill="rgb(216,69,40)" fg:x="219949" fg:w="63"/><text x="41.9693%" y="655.50"></text></g><g><title>d_instantiate (209 samples, 0.04%)</title><rect x="41.6921%" y="661" width="0.0396%" height="15" fill="rgb(240,36,33)" fg:x="219806" fg:w="209"/><text x="41.9421%" y="671.50"></text></g><g><title>ihold (56 samples, 0.01%)</title><rect x="41.7318%" y="661" width="0.0106%" height="15" fill="rgb(231,128,14)" fg:x="220015" fg:w="56"/><text x="41.9818%" y="671.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="41.8232%" y="629" width="0.0135%" height="15" fill="rgb(245,143,14)" fg:x="220497" fg:w="71"/><text x="42.0732%" y="639.50"></text></g><g><title>_raw_spin_lock (115 samples, 0.02%)</title><rect x="41.8617%" y="597" width="0.0218%" height="15" fill="rgb(222,130,28)" fg:x="220700" fg:w="115"/><text x="42.1117%" y="607.50"></text></g><g><title>_raw_spin_lock (90 samples, 0.02%)</title><rect x="41.9586%" y="565" width="0.0171%" height="15" fill="rgb(212,10,48)" fg:x="221211" fg:w="90"/><text x="42.2086%" y="575.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (487 samples, 0.09%)</title><rect x="41.8835%" y="597" width="0.0924%" height="15" fill="rgb(254,118,45)" fg:x="220815" fg:w="487"/><text x="42.1335%" y="607.50"></text></g><g><title>btrfs_reduce_alloc_profile (223 samples, 0.04%)</title><rect x="41.9336%" y="581" width="0.0423%" height="15" fill="rgb(228,6,45)" fg:x="221079" fg:w="223"/><text x="42.1836%" y="591.50"></text></g><g><title>btrfs_block_rsv_add (1,193 samples, 0.23%)</title><rect x="41.8183%" y="645" width="0.2263%" height="15" fill="rgb(241,18,35)" fg:x="220471" fg:w="1193"/><text x="42.0683%" y="655.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,096 samples, 0.21%)</title><rect x="41.8367%" y="629" width="0.2079%" height="15" fill="rgb(227,214,53)" fg:x="220568" fg:w="1096"/><text x="42.0867%" y="639.50"></text></g><g><title>__reserve_bytes (1,059 samples, 0.20%)</title><rect x="41.8437%" y="613" width="0.2009%" height="15" fill="rgb(224,107,51)" fg:x="220605" fg:w="1059"/><text x="42.0937%" y="623.50"></text></g><g><title>calc_available_free_space.isra.0 (362 samples, 0.07%)</title><rect x="41.9759%" y="597" width="0.0687%" height="15" fill="rgb(248,60,28)" fg:x="221302" fg:w="362"/><text x="42.2259%" y="607.50"></text></g><g><title>btrfs_reduce_alloc_profile (236 samples, 0.04%)</title><rect x="41.9998%" y="581" width="0.0448%" height="15" fill="rgb(249,101,23)" fg:x="221428" fg:w="236"/><text x="42.2498%" y="591.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="42.0320%" y="565" width="0.0125%" height="15" fill="rgb(228,51,19)" fg:x="221598" fg:w="66"/><text x="42.2820%" y="575.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="42.0840%" y="629" width="0.0127%" height="15" fill="rgb(213,20,6)" fg:x="221872" fg:w="67"/><text x="42.3340%" y="639.50"></text></g><g><title>join_transaction (268 samples, 0.05%)</title><rect x="42.0461%" y="645" width="0.0508%" height="15" fill="rgb(212,124,10)" fg:x="221672" fg:w="268"/><text x="42.2961%" y="655.50"></text></g><g><title>kmem_cache_alloc (249 samples, 0.05%)</title><rect x="42.0969%" y="645" width="0.0472%" height="15" fill="rgb(248,3,40)" fg:x="221940" fg:w="249"/><text x="42.3469%" y="655.50"></text></g><g><title>btrfs_link (58,291 samples, 11.06%)</title><rect x="31.1089%" y="677" width="11.0565%" height="15" fill="rgb(223,178,23)" fg:x="164010" fg:w="58291"/><text x="31.3589%" y="687.50">btrfs_link</text></g><g><title>start_transaction (2,227 samples, 0.42%)</title><rect x="41.7430%" y="661" width="0.4224%" height="15" fill="rgb(240,132,45)" fg:x="220074" fg:w="2227"/><text x="41.9930%" y="671.50"></text></g><g><title>wait_current_trans (112 samples, 0.02%)</title><rect x="42.1441%" y="645" width="0.0212%" height="15" fill="rgb(245,164,36)" fg:x="222189" fg:w="112"/><text x="42.3941%" y="655.50"></text></g><g><title>_raw_spin_lock (79 samples, 0.01%)</title><rect x="42.1504%" y="629" width="0.0150%" height="15" fill="rgb(231,188,53)" fg:x="222222" fg:w="79"/><text x="42.4004%" y="639.50"></text></g><g><title>down_write (82 samples, 0.02%)</title><rect x="42.1654%" y="677" width="0.0156%" height="15" fill="rgb(237,198,39)" fg:x="222301" fg:w="82"/><text x="42.4154%" y="687.50"></text></g><g><title>fsnotify (175 samples, 0.03%)</title><rect x="42.1819%" y="677" width="0.0332%" height="15" fill="rgb(223,120,35)" fg:x="222388" fg:w="175"/><text x="42.4319%" y="687.50"></text></g><g><title>btrfs_permission (69 samples, 0.01%)</title><rect x="42.2212%" y="661" width="0.0131%" height="15" fill="rgb(253,107,49)" fg:x="222595" fg:w="69"/><text x="42.4712%" y="671.50"></text></g><g><title>inode_permission.part.0 (122 samples, 0.02%)</title><rect x="42.2151%" y="677" width="0.0231%" height="15" fill="rgb(216,44,31)" fg:x="222563" fg:w="122"/><text x="42.4651%" y="687.50"></text></g><g><title>__x64_sys_link (77,843 samples, 14.77%)</title><rect x="27.4967%" y="725" width="14.7650%" height="15" fill="rgb(253,87,21)" fg:x="144966" fg:w="77843"/><text x="27.7467%" y="735.50">__x64_sys_link</text></g><g><title>do_linkat (77,835 samples, 14.76%)</title><rect x="27.4982%" y="709" width="14.7635%" height="15" fill="rgb(226,18,2)" fg:x="144974" fg:w="77835"/><text x="27.7482%" y="719.50">do_linkat</text></g><g><title>vfs_link (59,067 samples, 11.20%)</title><rect x="31.0581%" y="693" width="11.2037%" height="15" fill="rgb(216,8,46)" fg:x="163742" fg:w="59067"/><text x="31.3081%" y="703.50">vfs_link</text></g><g><title>up_write (68 samples, 0.01%)</title><rect x="42.2488%" y="677" width="0.0129%" height="15" fill="rgb(226,140,39)" fg:x="222741" fg:w="68"/><text x="42.4988%" y="687.50"></text></g><g><title>do_syscall_64 (77,903 samples, 14.78%)</title><rect x="27.4878%" y="741" width="14.7764%" height="15" fill="rgb(221,194,54)" fg:x="144919" fg:w="77903"/><text x="27.7378%" y="751.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (78,024 samples, 14.80%)</title><rect x="27.4768%" y="757" width="14.7994%" height="15" fill="rgb(213,92,11)" fg:x="144861" fg:w="78024"/><text x="27.7268%" y="767.50">entry_SYSCALL_64_after_..</text></g><g><title>syscall_exit_to_user_mode (63 samples, 0.01%)</title><rect x="42.2642%" y="741" width="0.0119%" height="15" fill="rgb(229,162,46)" fg:x="222822" fg:w="63"/><text x="42.5142%" y="751.50"></text></g><g><title>__GI___link (78,460 samples, 14.88%)</title><rect x="27.4138%" y="773" width="14.8821%" height="15" fill="rgb(214,111,36)" fg:x="144529" fg:w="78460"/><text x="27.6638%" y="783.50">__GI___link</text></g><g><title>syscall_return_via_sysret (104 samples, 0.02%)</title><rect x="42.2762%" y="757" width="0.0197%" height="15" fill="rgb(207,6,21)" fg:x="222885" fg:w="104"/><text x="42.5262%" y="767.50"></text></g><g><title>entry_SYSCALL_64 (274 samples, 0.05%)</title><rect x="42.3367%" y="757" width="0.0520%" height="15" fill="rgb(213,127,38)" fg:x="223204" fg:w="274"/><text x="42.5867%" y="767.50"></text></g><g><title>_copy_to_user (376 samples, 0.07%)</title><rect x="42.4510%" y="693" width="0.0713%" height="15" fill="rgb(238,118,32)" fg:x="223807" fg:w="376"/><text x="42.7010%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (334 samples, 0.06%)</title><rect x="42.4590%" y="677" width="0.0634%" height="15" fill="rgb(240,139,39)" fg:x="223849" fg:w="334"/><text x="42.7090%" y="687.50"></text></g><g><title>from_kgid_munged (59 samples, 0.01%)</title><rect x="42.5226%" y="693" width="0.0112%" height="15" fill="rgb(235,10,37)" fg:x="224184" fg:w="59"/><text x="42.7726%" y="703.50"></text></g><g><title>map_id_up (54 samples, 0.01%)</title><rect x="42.5235%" y="677" width="0.0102%" height="15" fill="rgb(249,171,38)" fg:x="224189" fg:w="54"/><text x="42.7735%" y="687.50"></text></g><g><title>cp_new_stat (642 samples, 0.12%)</title><rect x="42.4262%" y="709" width="0.1218%" height="15" fill="rgb(242,144,32)" fg:x="223676" fg:w="642"/><text x="42.6762%" y="719.50"></text></g><g><title>from_kuid_munged (75 samples, 0.01%)</title><rect x="42.5337%" y="693" width="0.0142%" height="15" fill="rgb(217,117,21)" fg:x="224243" fg:w="75"/><text x="42.7837%" y="703.50"></text></g><g><title>map_id_up (61 samples, 0.01%)</title><rect x="42.5364%" y="677" width="0.0116%" height="15" fill="rgb(249,87,1)" fg:x="224257" fg:w="61"/><text x="42.7864%" y="687.50"></text></g><g><title>_raw_spin_lock (166 samples, 0.03%)</title><rect x="42.6603%" y="677" width="0.0315%" height="15" fill="rgb(248,196,48)" fg:x="224910" fg:w="166"/><text x="42.9103%" y="687.50"></text></g><g><title>generic_fillattr (116 samples, 0.02%)</title><rect x="42.6919%" y="677" width="0.0220%" height="15" fill="rgb(251,206,33)" fg:x="225077" fg:w="116"/><text x="42.9419%" y="687.50"></text></g><g><title>btrfs_getattr (948 samples, 0.18%)</title><rect x="42.5643%" y="693" width="0.1798%" height="15" fill="rgb(232,141,28)" fg:x="224404" fg:w="948"/><text x="42.8143%" y="703.50"></text></g><g><title>inode_get_bytes (159 samples, 0.03%)</title><rect x="42.7139%" y="677" width="0.0302%" height="15" fill="rgb(209,167,14)" fg:x="225193" fg:w="159"/><text x="42.9639%" y="687.50"></text></g><g><title>_raw_spin_lock (126 samples, 0.02%)</title><rect x="42.7202%" y="661" width="0.0239%" height="15" fill="rgb(225,11,50)" fg:x="225226" fg:w="126"/><text x="42.9702%" y="671.50"></text></g><g><title>kmem_cache_free (290 samples, 0.06%)</title><rect x="42.7765%" y="677" width="0.0550%" height="15" fill="rgb(209,50,20)" fg:x="225523" fg:w="290"/><text x="43.0265%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (60 samples, 0.01%)</title><rect x="42.8202%" y="661" width="0.0114%" height="15" fill="rgb(212,17,46)" fg:x="225753" fg:w="60"/><text x="43.0702%" y="671.50"></text></g><g><title>__legitimize_mnt (190 samples, 0.04%)</title><rect x="42.8716%" y="613" width="0.0360%" height="15" fill="rgb(216,101,39)" fg:x="226024" fg:w="190"/><text x="43.1216%" y="623.50"></text></g><g><title>__legitimize_path (387 samples, 0.07%)</title><rect x="42.8655%" y="629" width="0.0734%" height="15" fill="rgb(212,228,48)" fg:x="225992" fg:w="387"/><text x="43.1155%" y="639.50"></text></g><g><title>lockref_get_not_dead (165 samples, 0.03%)</title><rect x="42.9076%" y="613" width="0.0313%" height="15" fill="rgb(250,6,50)" fg:x="226214" fg:w="165"/><text x="43.1576%" y="623.50"></text></g><g><title>complete_walk (509 samples, 0.10%)</title><rect x="42.8530%" y="661" width="0.0965%" height="15" fill="rgb(250,160,48)" fg:x="225926" fg:w="509"/><text x="43.1030%" y="671.50"></text></g><g><title>try_to_unlazy (482 samples, 0.09%)</title><rect x="42.8581%" y="645" width="0.0914%" height="15" fill="rgb(244,216,33)" fg:x="225953" fg:w="482"/><text x="43.1081%" y="655.50"></text></g><g><title>btrfs_permission (223 samples, 0.04%)</title><rect x="43.8626%" y="629" width="0.0423%" height="15" fill="rgb(207,157,5)" fg:x="231249" fg:w="223"/><text x="44.1126%" y="639.50"></text></g><g><title>inode_permission.part.0 (3,084 samples, 0.58%)</title><rect x="43.5149%" y="645" width="0.5850%" height="15" fill="rgb(228,199,8)" fg:x="229416" fg:w="3084"/><text x="43.7649%" y="655.50"></text></g><g><title>generic_permission (1,028 samples, 0.19%)</title><rect x="43.9049%" y="629" width="0.1950%" height="15" fill="rgb(227,80,20)" fg:x="231472" fg:w="1028"/><text x="44.1549%" y="639.50"></text></g><g><title>security_inode_permission (389 samples, 0.07%)</title><rect x="44.0999%" y="645" width="0.0738%" height="15" fill="rgb(222,9,33)" fg:x="232500" fg:w="389"/><text x="44.3499%" y="655.50"></text></g><g><title>lookup_fast (5,817 samples, 1.10%)</title><rect x="44.4000%" y="629" width="1.1034%" height="15" fill="rgb(239,44,28)" fg:x="234082" fg:w="5817"/><text x="44.6500%" y="639.50"></text></g><g><title>__d_lookup_rcu (4,540 samples, 0.86%)</title><rect x="44.6422%" y="613" width="0.8611%" height="15" fill="rgb(249,187,43)" fg:x="235359" fg:w="4540"/><text x="44.8922%" y="623.50"></text></g><g><title>page_put_link (126 samples, 0.02%)</title><rect x="45.5033%" y="629" width="0.0239%" height="15" fill="rgb(216,141,28)" fg:x="239899" fg:w="126"/><text x="45.7533%" y="639.50"></text></g><g><title>__lookup_mnt (74 samples, 0.01%)</title><rect x="45.8167%" y="613" width="0.0140%" height="15" fill="rgb(230,154,53)" fg:x="241551" fg:w="74"/><text x="46.0667%" y="623.50"></text></g><g><title>atime_needs_update (158 samples, 0.03%)</title><rect x="45.8311%" y="613" width="0.0300%" height="15" fill="rgb(227,82,4)" fg:x="241627" fg:w="158"/><text x="46.0811%" y="623.50"></text></g><g><title>current_time (90 samples, 0.02%)</title><rect x="45.8440%" y="597" width="0.0171%" height="15" fill="rgb(220,107,16)" fg:x="241695" fg:w="90"/><text x="46.0940%" y="607.50"></text></g><g><title>page_get_link (488 samples, 0.09%)</title><rect x="45.8707%" y="613" width="0.0926%" height="15" fill="rgb(207,187,2)" fg:x="241836" fg:w="488"/><text x="46.1207%" y="623.50"></text></g><g><title>pagecache_get_page (421 samples, 0.08%)</title><rect x="45.8834%" y="597" width="0.0799%" height="15" fill="rgb(210,162,52)" fg:x="241903" fg:w="421"/><text x="46.1334%" y="607.50"></text></g><g><title>find_get_entry (349 samples, 0.07%)</title><rect x="45.8971%" y="581" width="0.0662%" height="15" fill="rgb(217,216,49)" fg:x="241975" fg:w="349"/><text x="46.1471%" y="591.50"></text></g><g><title>xas_load (69 samples, 0.01%)</title><rect x="45.9502%" y="565" width="0.0131%" height="15" fill="rgb(218,146,49)" fg:x="242255" fg:w="69"/><text x="46.2002%" y="575.50"></text></g><g><title>xas_start (56 samples, 0.01%)</title><rect x="45.9527%" y="549" width="0.0106%" height="15" fill="rgb(216,55,40)" fg:x="242268" fg:w="56"/><text x="46.2027%" y="559.50"></text></g><g><title>link_path_walk.part.0 (15,903 samples, 3.02%)</title><rect x="42.9495%" y="661" width="3.0164%" height="15" fill="rgb(208,196,21)" fg:x="226435" fg:w="15903"/><text x="43.1995%" y="671.50">lin..</text></g><g><title>walk_component (9,449 samples, 1.79%)</title><rect x="44.1737%" y="645" width="1.7923%" height="15" fill="rgb(242,117,42)" fg:x="232889" fg:w="9449"/><text x="44.4237%" y="655.50">w..</text></g><g><title>step_into (2,313 samples, 0.44%)</title><rect x="45.5272%" y="629" width="0.4387%" height="15" fill="rgb(210,11,23)" fg:x="240025" fg:w="2313"/><text x="45.7772%" y="639.50"></text></g><g><title>path_init (380 samples, 0.07%)</title><rect x="45.9659%" y="661" width="0.0721%" height="15" fill="rgb(217,110,2)" fg:x="242338" fg:w="380"/><text x="46.2159%" y="671.50"></text></g><g><title>nd_jump_root (291 samples, 0.06%)</title><rect x="45.9828%" y="645" width="0.0552%" height="15" fill="rgb(229,77,54)" fg:x="242427" fg:w="291"/><text x="46.2328%" y="655.50"></text></g><g><title>set_root (250 samples, 0.05%)</title><rect x="45.9906%" y="629" width="0.0474%" height="15" fill="rgb(218,53,16)" fg:x="242468" fg:w="250"/><text x="46.2406%" y="639.50"></text></g><g><title>lookup_fast (1,357 samples, 0.26%)</title><rect x="46.0559%" y="645" width="0.2574%" height="15" fill="rgb(215,38,13)" fg:x="242812" fg:w="1357"/><text x="46.3059%" y="655.50"></text></g><g><title>__d_lookup_rcu (1,313 samples, 0.25%)</title><rect x="46.0642%" y="629" width="0.2490%" height="15" fill="rgb(235,42,18)" fg:x="242856" fg:w="1313"/><text x="46.3142%" y="639.50"></text></g><g><title>path_lookupat (18,429 samples, 3.50%)</title><rect x="42.8315%" y="677" width="3.4956%" height="15" fill="rgb(219,66,54)" fg:x="225813" fg:w="18429"/><text x="43.0815%" y="687.50">pat..</text></g><g><title>walk_component (1,479 samples, 0.28%)</title><rect x="46.0466%" y="661" width="0.2805%" height="15" fill="rgb(222,205,4)" fg:x="242763" fg:w="1479"/><text x="46.2966%" y="671.50"></text></g><g><title>step_into (73 samples, 0.01%)</title><rect x="46.3132%" y="645" width="0.0138%" height="15" fill="rgb(227,213,46)" fg:x="244169" fg:w="73"/><text x="46.5632%" y="655.50"></text></g><g><title>filename_lookup (18,908 samples, 3.59%)</title><rect x="42.7441%" y="693" width="3.5864%" height="15" fill="rgb(250,145,42)" fg:x="225352" fg:w="18908"/><text x="42.9941%" y="703.50">file..</text></g><g><title>_raw_spin_lock (115 samples, 0.02%)</title><rect x="46.3650%" y="645" width="0.0218%" height="15" fill="rgb(219,15,2)" fg:x="244442" fg:w="115"/><text x="46.6150%" y="655.50"></text></g><g><title>lockref_put_or_lock (145 samples, 0.03%)</title><rect x="46.3595%" y="661" width="0.0275%" height="15" fill="rgb(231,181,52)" fg:x="244413" fg:w="145"/><text x="46.6095%" y="671.50"></text></g><g><title>path_put (242 samples, 0.05%)</title><rect x="46.3419%" y="693" width="0.0459%" height="15" fill="rgb(235,1,42)" fg:x="244320" fg:w="242"/><text x="46.5919%" y="703.50"></text></g><g><title>dput (235 samples, 0.04%)</title><rect x="46.3432%" y="677" width="0.0446%" height="15" fill="rgb(249,88,27)" fg:x="244327" fg:w="235"/><text x="46.5932%" y="687.50"></text></g><g><title>apparmor_inode_getattr (103 samples, 0.02%)</title><rect x="46.4912%" y="677" width="0.0195%" height="15" fill="rgb(235,145,16)" fg:x="245107" fg:w="103"/><text x="46.7412%" y="687.50"></text></g><g><title>security_inode_getattr (1,125 samples, 0.21%)</title><rect x="46.3878%" y="693" width="0.2134%" height="15" fill="rgb(237,114,19)" fg:x="244562" fg:w="1125"/><text x="46.6378%" y="703.50"></text></g><g><title>tomoyo_path_perm (469 samples, 0.09%)</title><rect x="46.5122%" y="677" width="0.0890%" height="15" fill="rgb(238,51,50)" fg:x="245218" fg:w="469"/><text x="46.7622%" y="687.50"></text></g><g><title>tomoyo_init_request_info (280 samples, 0.05%)</title><rect x="46.5481%" y="661" width="0.0531%" height="15" fill="rgb(205,194,25)" fg:x="245407" fg:w="280"/><text x="46.7981%" y="671.50"></text></g><g><title>tomoyo_domain (85 samples, 0.02%)</title><rect x="46.5851%" y="645" width="0.0161%" height="15" fill="rgb(215,203,17)" fg:x="245602" fg:w="85"/><text x="46.8351%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (53 samples, 0.01%)</title><rect x="46.6905%" y="645" width="0.0101%" height="15" fill="rgb(233,112,49)" fg:x="246158" fg:w="53"/><text x="46.9405%" y="655.50"></text></g><g><title>memset_erms (762 samples, 0.14%)</title><rect x="46.7023%" y="645" width="0.1445%" height="15" fill="rgb(241,130,26)" fg:x="246220" fg:w="762"/><text x="46.9523%" y="655.50"></text></g><g><title>_cond_resched (77 samples, 0.01%)</title><rect x="46.8730%" y="629" width="0.0146%" height="15" fill="rgb(252,223,19)" fg:x="247120" fg:w="77"/><text x="47.1230%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,375 samples, 0.26%)</title><rect x="46.6308%" y="661" width="0.2608%" height="15" fill="rgb(211,95,25)" fg:x="245843" fg:w="1375"/><text x="46.8808%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (236 samples, 0.04%)</title><rect x="46.8468%" y="645" width="0.0448%" height="15" fill="rgb(251,182,27)" fg:x="246982" fg:w="236"/><text x="47.0968%" y="655.50"></text></g><g><title>__check_heap_object (156 samples, 0.03%)</title><rect x="47.0534%" y="629" width="0.0296%" height="15" fill="rgb(238,24,4)" fg:x="248071" fg:w="156"/><text x="47.3034%" y="639.50"></text></g><g><title>__virt_addr_valid (350 samples, 0.07%)</title><rect x="47.0830%" y="629" width="0.0664%" height="15" fill="rgb(224,220,25)" fg:x="248227" fg:w="350"/><text x="47.3330%" y="639.50"></text></g><g><title>__check_object_size (634 samples, 0.12%)</title><rect x="47.0317%" y="645" width="0.1203%" height="15" fill="rgb(239,133,26)" fg:x="247957" fg:w="634"/><text x="47.2817%" y="655.50"></text></g><g><title>user_path_at_empty (2,905 samples, 0.55%)</title><rect x="46.6012%" y="693" width="0.5510%" height="15" fill="rgb(211,94,48)" fg:x="245687" fg:w="2905"/><text x="46.8512%" y="703.50"></text></g><g><title>getname_flags.part.0 (2,867 samples, 0.54%)</title><rect x="46.6084%" y="677" width="0.5438%" height="15" fill="rgb(239,87,6)" fg:x="245725" fg:w="2867"/><text x="46.8584%" y="687.50"></text></g><g><title>strncpy_from_user (1,374 samples, 0.26%)</title><rect x="46.8916%" y="661" width="0.2606%" height="15" fill="rgb(227,62,0)" fg:x="247218" fg:w="1374"/><text x="47.1416%" y="671.50"></text></g><g><title>__do_sys_newlstat (25,181 samples, 4.78%)</title><rect x="42.4188%" y="725" width="4.7763%" height="15" fill="rgb(211,226,4)" fg:x="223637" fg:w="25181"/><text x="42.6688%" y="735.50">__do_s..</text></g><g><title>vfs_statx (24,500 samples, 4.65%)</title><rect x="42.5480%" y="709" width="4.6471%" height="15" fill="rgb(253,38,52)" fg:x="224318" fg:w="24500"/><text x="42.7980%" y="719.50">vfs_s..</text></g><g><title>vfs_getattr_nosec (226 samples, 0.04%)</title><rect x="47.1522%" y="693" width="0.0429%" height="15" fill="rgb(229,126,40)" fg:x="248592" fg:w="226"/><text x="47.4022%" y="703.50"></text></g><g><title>do_syscall_64 (25,307 samples, 4.80%)</title><rect x="42.4031%" y="741" width="4.8002%" height="15" fill="rgb(229,165,44)" fg:x="223554" fg:w="25307"/><text x="42.6531%" y="751.50">do_sys..</text></g><g><title>entry_SYSCALL_64_after_hwframe (25,491 samples, 4.84%)</title><rect x="42.3886%" y="757" width="4.8351%" height="15" fill="rgb(247,95,47)" fg:x="223478" fg:w="25491"/><text x="42.6386%" y="767.50">entry_..</text></g><g><title>syscall_exit_to_user_mode (108 samples, 0.02%)</title><rect x="47.2032%" y="741" width="0.0205%" height="15" fill="rgb(216,140,30)" fg:x="248861" fg:w="108"/><text x="47.4532%" y="751.50"></text></g><g><title>exit_to_user_mode_prepare (83 samples, 0.02%)</title><rect x="47.2080%" y="725" width="0.0157%" height="15" fill="rgb(246,214,8)" fg:x="248886" fg:w="83"/><text x="47.4580%" y="735.50"></text></g><g><title>__GI___lxstat (26,115 samples, 4.95%)</title><rect x="42.2959%" y="773" width="4.9534%" height="15" fill="rgb(227,224,15)" fg:x="222989" fg:w="26115"/><text x="42.5459%" y="783.50">__GI__..</text></g><g><title>syscall_return_via_sysret (135 samples, 0.03%)</title><rect x="47.2237%" y="757" width="0.0256%" height="15" fill="rgb(233,175,4)" fg:x="248969" fg:w="135"/><text x="47.4737%" y="767.50"></text></g><g><title>generic_bin_search.constprop.0 (97 samples, 0.02%)</title><rect x="47.3096%" y="613" width="0.0184%" height="15" fill="rgb(221,66,45)" fg:x="249422" fg:w="97"/><text x="47.5596%" y="623.50"></text></g><g><title>__radix_tree_lookup (61 samples, 0.01%)</title><rect x="47.3394%" y="581" width="0.0116%" height="15" fill="rgb(221,178,18)" fg:x="249579" fg:w="61"/><text x="47.5894%" y="591.50"></text></g><g><title>find_extent_buffer (120 samples, 0.02%)</title><rect x="47.3347%" y="597" width="0.0228%" height="15" fill="rgb(213,81,29)" fg:x="249554" fg:w="120"/><text x="47.5847%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (177 samples, 0.03%)</title><rect x="47.3280%" y="613" width="0.0336%" height="15" fill="rgb(220,89,49)" fg:x="249519" fg:w="177"/><text x="47.5780%" y="623.50"></text></g><g><title>btrfs_search_slot (448 samples, 0.08%)</title><rect x="47.2776%" y="629" width="0.0850%" height="15" fill="rgb(227,60,33)" fg:x="249253" fg:w="448"/><text x="47.5276%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (472 samples, 0.09%)</title><rect x="47.2772%" y="645" width="0.0895%" height="15" fill="rgb(205,113,12)" fg:x="249251" fg:w="472"/><text x="47.5272%" y="655.50"></text></g><g><title>btrfs_lookup (554 samples, 0.11%)</title><rect x="47.2671%" y="677" width="0.1051%" height="15" fill="rgb(211,32,1)" fg:x="249198" fg:w="554"/><text x="47.5171%" y="687.50"></text></g><g><title>btrfs_lookup_dentry (551 samples, 0.10%)</title><rect x="47.2677%" y="661" width="0.1045%" height="15" fill="rgb(246,2,12)" fg:x="249201" fg:w="551"/><text x="47.5177%" y="671.50"></text></g><g><title>kmem_cache_alloc (97 samples, 0.02%)</title><rect x="47.3747%" y="645" width="0.0184%" height="15" fill="rgb(243,37,27)" fg:x="249765" fg:w="97"/><text x="47.6247%" y="655.50"></text></g><g><title>__d_alloc (115 samples, 0.02%)</title><rect x="47.3724%" y="661" width="0.0218%" height="15" fill="rgb(248,211,31)" fg:x="249753" fg:w="115"/><text x="47.6224%" y="671.50"></text></g><g><title>d_alloc (130 samples, 0.02%)</title><rect x="47.3722%" y="677" width="0.0247%" height="15" fill="rgb(242,146,47)" fg:x="249752" fg:w="130"/><text x="47.6222%" y="687.50"></text></g><g><title>__lookup_hash (763 samples, 0.14%)</title><rect x="47.2664%" y="693" width="0.1447%" height="15" fill="rgb(206,70,20)" fg:x="249194" fg:w="763"/><text x="47.5164%" y="703.50"></text></g><g><title>lookup_dcache (60 samples, 0.01%)</title><rect x="47.3997%" y="677" width="0.0114%" height="15" fill="rgb(215,10,51)" fg:x="249897" fg:w="60"/><text x="47.6497%" y="687.50"></text></g><g><title>d_lookup (60 samples, 0.01%)</title><rect x="47.3997%" y="661" width="0.0114%" height="15" fill="rgb(243,178,53)" fg:x="249897" fg:w="60"/><text x="47.6497%" y="671.50"></text></g><g><title>__d_lookup (59 samples, 0.01%)</title><rect x="47.3999%" y="645" width="0.0112%" height="15" fill="rgb(233,221,20)" fg:x="249898" fg:w="59"/><text x="47.6499%" y="655.50"></text></g><g><title>inode_permission.part.0 (98 samples, 0.02%)</title><rect x="47.4392%" y="645" width="0.0186%" height="15" fill="rgb(218,95,35)" fg:x="250105" fg:w="98"/><text x="47.6892%" y="655.50"></text></g><g><title>lookup_fast (223 samples, 0.04%)</title><rect x="47.4652%" y="629" width="0.0423%" height="15" fill="rgb(229,13,5)" fg:x="250242" fg:w="223"/><text x="47.7152%" y="639.50"></text></g><g><title>__d_lookup_rcu (178 samples, 0.03%)</title><rect x="47.4737%" y="613" width="0.0338%" height="15" fill="rgb(252,164,30)" fg:x="250287" fg:w="178"/><text x="47.7237%" y="623.50"></text></g><g><title>link_path_walk.part.0 (495 samples, 0.09%)</title><rect x="47.4232%" y="661" width="0.0939%" height="15" fill="rgb(232,68,36)" fg:x="250021" fg:w="495"/><text x="47.6732%" y="671.50"></text></g><g><title>walk_component (300 samples, 0.06%)</title><rect x="47.4602%" y="645" width="0.0569%" height="15" fill="rgb(219,59,54)" fg:x="250216" fg:w="300"/><text x="47.7102%" y="655.50"></text></g><g><title>filename_parentat (573 samples, 0.11%)</title><rect x="47.4117%" y="693" width="0.1087%" height="15" fill="rgb(250,92,33)" fg:x="249960" fg:w="573"/><text x="47.6617%" y="703.50"></text></g><g><title>path_parentat (561 samples, 0.11%)</title><rect x="47.4139%" y="677" width="0.1064%" height="15" fill="rgb(229,162,54)" fg:x="249972" fg:w="561"/><text x="47.6639%" y="687.50"></text></g><g><title>filename_create (1,370 samples, 0.26%)</title><rect x="47.2660%" y="709" width="0.2599%" height="15" fill="rgb(244,114,52)" fg:x="249192" fg:w="1370"/><text x="47.5160%" y="719.50"></text></g><g><title>getname_flags.part.0 (123 samples, 0.02%)</title><rect x="47.5259%" y="709" width="0.0233%" height="15" fill="rgb(212,211,43)" fg:x="250562" fg:w="123"/><text x="47.7759%" y="719.50"></text></g><g><title>strncpy_from_user (64 samples, 0.01%)</title><rect x="47.5370%" y="693" width="0.0121%" height="15" fill="rgb(226,147,8)" fg:x="250621" fg:w="64"/><text x="47.7870%" y="703.50"></text></g><g><title>__btrfs_end_transaction (57 samples, 0.01%)</title><rect x="47.5611%" y="677" width="0.0108%" height="15" fill="rgb(226,23,13)" fg:x="250748" fg:w="57"/><text x="47.8111%" y="687.50"></text></g><g><title>btrfs_insert_delayed_dir_index (142 samples, 0.03%)</title><rect x="47.5755%" y="645" width="0.0269%" height="15" fill="rgb(240,63,4)" fg:x="250824" fg:w="142"/><text x="47.8255%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (95 samples, 0.02%)</title><rect x="47.6425%" y="597" width="0.0180%" height="15" fill="rgb(221,1,32)" fg:x="251177" fg:w="95"/><text x="47.8925%" y="607.50"></text></g><g><title>find_extent_buffer (89 samples, 0.02%)</title><rect x="47.6672%" y="581" width="0.0169%" height="15" fill="rgb(242,117,10)" fg:x="251307" fg:w="89"/><text x="47.9172%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (134 samples, 0.03%)</title><rect x="47.6605%" y="597" width="0.0254%" height="15" fill="rgb(249,172,44)" fg:x="251272" fg:w="134"/><text x="47.9105%" y="607.50"></text></g><g><title>split_leaf (59 samples, 0.01%)</title><rect x="47.6859%" y="597" width="0.0112%" height="15" fill="rgb(244,46,45)" fg:x="251406" fg:w="59"/><text x="47.9359%" y="607.50"></text></g><g><title>btrfs_search_slot (448 samples, 0.08%)</title><rect x="47.6165%" y="613" width="0.0850%" height="15" fill="rgb(206,43,17)" fg:x="251040" fg:w="448"/><text x="47.8665%" y="623.50"></text></g><g><title>btrfs_get_token_32 (166 samples, 0.03%)</title><rect x="47.7121%" y="597" width="0.0315%" height="15" fill="rgb(239,218,39)" fg:x="251544" fg:w="166"/><text x="47.9621%" y="607.50"></text></g><g><title>btrfs_set_token_32 (150 samples, 0.03%)</title><rect x="47.7501%" y="597" width="0.0285%" height="15" fill="rgb(208,169,54)" fg:x="251744" fg:w="150"/><text x="48.0001%" y="607.50"></text></g><g><title>memmove_extent_buffer (63 samples, 0.01%)</title><rect x="47.7874%" y="597" width="0.0119%" height="15" fill="rgb(247,25,42)" fg:x="251941" fg:w="63"/><text x="48.0374%" y="607.50"></text></g><g><title>insert_with_overflow (992 samples, 0.19%)</title><rect x="47.6133%" y="645" width="0.1882%" height="15" fill="rgb(226,23,31)" fg:x="251023" fg:w="992"/><text x="47.8633%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (976 samples, 0.19%)</title><rect x="47.6163%" y="629" width="0.1851%" height="15" fill="rgb(247,16,28)" fg:x="251039" fg:w="976"/><text x="47.8663%" y="639.50"></text></g><g><title>setup_items_for_insert (527 samples, 0.10%)</title><rect x="47.7015%" y="613" width="0.1000%" height="15" fill="rgb(231,147,38)" fg:x="251488" fg:w="527"/><text x="47.9515%" y="623.50"></text></g><g><title>btrfs_insert_dir_item (1,237 samples, 0.23%)</title><rect x="47.5742%" y="661" width="0.2346%" height="15" fill="rgb(253,81,48)" fg:x="250817" fg:w="1237"/><text x="47.8242%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (53 samples, 0.01%)</title><rect x="47.8100%" y="645" width="0.0101%" height="15" fill="rgb(249,222,43)" fg:x="252060" fg:w="53"/><text x="48.0600%" y="655.50"></text></g><g><title>btrfs_update_inode (68 samples, 0.01%)</title><rect x="47.8089%" y="661" width="0.0129%" height="15" fill="rgb(221,3,27)" fg:x="252054" fg:w="68"/><text x="48.0589%" y="671.50"></text></g><g><title>btrfs_add_link (1,320 samples, 0.25%)</title><rect x="47.5719%" y="677" width="0.2504%" height="15" fill="rgb(228,180,5)" fg:x="250805" fg:w="1320"/><text x="47.8219%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (59 samples, 0.01%)</title><rect x="47.8737%" y="629" width="0.0112%" height="15" fill="rgb(227,131,42)" fg:x="252396" fg:w="59"/><text x="48.1237%" y="639.50"></text></g><g><title>find_extent_buffer (85 samples, 0.02%)</title><rect x="47.8916%" y="613" width="0.0161%" height="15" fill="rgb(212,3,39)" fg:x="252490" fg:w="85"/><text x="48.1416%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (127 samples, 0.02%)</title><rect x="47.8849%" y="629" width="0.0241%" height="15" fill="rgb(226,45,5)" fg:x="252455" fg:w="127"/><text x="48.1349%" y="639.50"></text></g><g><title>__push_leaf_left (62 samples, 0.01%)</title><rect x="47.9206%" y="597" width="0.0118%" height="15" fill="rgb(215,167,45)" fg:x="252643" fg:w="62"/><text x="48.1706%" y="607.50"></text></g><g><title>push_leaf_left (75 samples, 0.01%)</title><rect x="47.9204%" y="613" width="0.0142%" height="15" fill="rgb(250,218,53)" fg:x="252642" fg:w="75"/><text x="48.1704%" y="623.50"></text></g><g><title>split_leaf (136 samples, 0.03%)</title><rect x="47.9090%" y="629" width="0.0258%" height="15" fill="rgb(207,140,0)" fg:x="252582" fg:w="136"/><text x="48.1590%" y="639.50"></text></g><g><title>btrfs_search_slot (481 samples, 0.09%)</title><rect x="47.8496%" y="645" width="0.0912%" height="15" fill="rgb(238,133,51)" fg:x="252269" fg:w="481"/><text x="48.0996%" y="655.50"></text></g><g><title>btrfs_get_token_32 (83 samples, 0.02%)</title><rect x="47.9507%" y="629" width="0.0157%" height="15" fill="rgb(218,203,53)" fg:x="252802" fg:w="83"/><text x="48.2007%" y="639.50"></text></g><g><title>btrfs_set_token_32 (84 samples, 0.02%)</title><rect x="47.9746%" y="629" width="0.0159%" height="15" fill="rgb(226,184,25)" fg:x="252928" fg:w="84"/><text x="48.2246%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (817 samples, 0.15%)</title><rect x="47.8491%" y="661" width="0.1550%" height="15" fill="rgb(231,121,21)" fg:x="252266" fg:w="817"/><text x="48.0991%" y="671.50"></text></g><g><title>setup_items_for_insert (333 samples, 0.06%)</title><rect x="47.9409%" y="645" width="0.0632%" height="15" fill="rgb(251,14,34)" fg:x="252750" fg:w="333"/><text x="48.1909%" y="655.50"></text></g><g><title>fill_inode_item (99 samples, 0.02%)</title><rect x="48.0173%" y="661" width="0.0188%" height="15" fill="rgb(249,193,11)" fg:x="253153" fg:w="99"/><text x="48.2673%" y="671.50"></text></g><g><title>inode_tree_add (109 samples, 0.02%)</title><rect x="48.0370%" y="661" width="0.0207%" height="15" fill="rgb(220,172,37)" fg:x="253257" fg:w="109"/><text x="48.2870%" y="671.50"></text></g><g><title>btrfs_alloc_inode (90 samples, 0.02%)</title><rect x="48.0784%" y="629" width="0.0171%" height="15" fill="rgb(231,229,43)" fg:x="253475" fg:w="90"/><text x="48.3284%" y="639.50"></text></g><g><title>kmem_cache_alloc (68 samples, 0.01%)</title><rect x="48.0826%" y="613" width="0.0129%" height="15" fill="rgb(250,161,5)" fg:x="253497" fg:w="68"/><text x="48.3326%" y="623.50"></text></g><g><title>alloc_inode (133 samples, 0.03%)</title><rect x="48.0778%" y="645" width="0.0252%" height="15" fill="rgb(218,225,18)" fg:x="253472" fg:w="133"/><text x="48.3278%" y="655.50"></text></g><g><title>new_inode (166 samples, 0.03%)</title><rect x="48.0725%" y="661" width="0.0315%" height="15" fill="rgb(245,45,42)" fg:x="253444" fg:w="166"/><text x="48.3225%" y="671.50"></text></g><g><title>btrfs_new_inode (1,452 samples, 0.28%)</title><rect x="47.8303%" y="677" width="0.2754%" height="15" fill="rgb(211,115,1)" fg:x="252167" fg:w="1452"/><text x="48.0803%" y="687.50"></text></g><g><title>btrfs_get_or_create_delayed_node (121 samples, 0.02%)</title><rect x="48.1201%" y="645" width="0.0230%" height="15" fill="rgb(248,133,52)" fg:x="253695" fg:w="121"/><text x="48.3701%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (213 samples, 0.04%)</title><rect x="48.1078%" y="661" width="0.0404%" height="15" fill="rgb(238,100,21)" fg:x="253630" fg:w="213"/><text x="48.3578%" y="671.50"></text></g><g><title>btrfs_update_inode (237 samples, 0.04%)</title><rect x="48.1057%" y="677" width="0.0450%" height="15" fill="rgb(247,144,11)" fg:x="253619" fg:w="237"/><text x="48.3557%" y="687.50"></text></g><g><title>btrfs_block_rsv_add (78 samples, 0.01%)</title><rect x="48.1613%" y="661" width="0.0148%" height="15" fill="rgb(206,164,16)" fg:x="253912" fg:w="78"/><text x="48.4113%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (67 samples, 0.01%)</title><rect x="48.1634%" y="645" width="0.0127%" height="15" fill="rgb(222,34,3)" fg:x="253923" fg:w="67"/><text x="48.4134%" y="655.50"></text></g><g><title>__reserve_bytes (65 samples, 0.01%)</title><rect x="48.1637%" y="629" width="0.0123%" height="15" fill="rgb(248,82,4)" fg:x="253925" fg:w="65"/><text x="48.4137%" y="639.50"></text></g><g><title>btrfs_mkdir (3,302 samples, 0.63%)</title><rect x="47.5600%" y="693" width="0.6263%" height="15" fill="rgb(228,81,46)" fg:x="250742" fg:w="3302"/><text x="47.8100%" y="703.50"></text></g><g><title>start_transaction (155 samples, 0.03%)</title><rect x="48.1569%" y="677" width="0.0294%" height="15" fill="rgb(227,67,47)" fg:x="253889" fg:w="155"/><text x="48.4069%" y="687.50"></text></g><g><title>do_mkdirat (4,916 samples, 0.93%)</title><rect x="47.2558%" y="725" width="0.9325%" height="15" fill="rgb(215,93,53)" fg:x="249138" fg:w="4916"/><text x="47.5058%" y="735.50"></text></g><g><title>vfs_mkdir (3,318 samples, 0.63%)</title><rect x="47.5589%" y="709" width="0.6293%" height="15" fill="rgb(248,194,39)" fg:x="250736" fg:w="3318"/><text x="47.8089%" y="719.50"></text></g><g><title>do_syscall_64 (4,927 samples, 0.93%)</title><rect x="47.2548%" y="741" width="0.9345%" height="15" fill="rgb(215,5,19)" fg:x="249133" fg:w="4927"/><text x="47.5048%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,936 samples, 0.94%)</title><rect x="47.2540%" y="757" width="0.9362%" height="15" fill="rgb(226,215,51)" fg:x="249129" fg:w="4936"/><text x="47.5040%" y="767.50"></text></g><g><title>__GI___mkdir (4,968 samples, 0.94%)</title><rect x="47.2493%" y="773" width="0.9423%" height="15" fill="rgb(225,56,26)" fg:x="249104" fg:w="4968"/><text x="47.4993%" y="783.50"></text></g><g><title>btrfs_filldir (397 samples, 0.08%)</title><rect x="48.2857%" y="661" width="0.0753%" height="15" fill="rgb(222,75,29)" fg:x="254568" fg:w="397"/><text x="48.5357%" y="671.50"></text></g><g><title>filldir64 (357 samples, 0.07%)</title><rect x="48.2933%" y="645" width="0.0677%" height="15" fill="rgb(236,139,6)" fg:x="254608" fg:w="357"/><text x="48.5433%" y="655.50"></text></g><g><title>verify_dirent_name (96 samples, 0.02%)</title><rect x="48.3428%" y="629" width="0.0182%" height="15" fill="rgb(223,137,36)" fg:x="254869" fg:w="96"/><text x="48.5928%" y="639.50"></text></g><g><title>memchr (69 samples, 0.01%)</title><rect x="48.3479%" y="613" width="0.0131%" height="15" fill="rgb(226,99,2)" fg:x="254896" fg:w="69"/><text x="48.5979%" y="623.50"></text></g><g><title>btrfs_next_old_leaf (63 samples, 0.01%)</title><rect x="48.3826%" y="661" width="0.0119%" height="15" fill="rgb(206,133,23)" fg:x="255079" fg:w="63"/><text x="48.6326%" y="671.50"></text></g><g><title>btrfs_readdir_get_delayed_items (110 samples, 0.02%)</title><rect x="48.3948%" y="661" width="0.0209%" height="15" fill="rgb(243,173,15)" fg:x="255143" fg:w="110"/><text x="48.6448%" y="671.50"></text></g><g><title>btrfs_release_path (113 samples, 0.02%)</title><rect x="48.4175%" y="661" width="0.0214%" height="15" fill="rgb(228,69,28)" fg:x="255263" fg:w="113"/><text x="48.6675%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (177 samples, 0.03%)</title><rect x="48.4725%" y="645" width="0.0336%" height="15" fill="rgb(212,51,22)" fg:x="255553" fg:w="177"/><text x="48.7225%" y="655.50"></text></g><g><title>__radix_tree_lookup (115 samples, 0.02%)</title><rect x="48.5289%" y="613" width="0.0218%" height="15" fill="rgb(227,113,0)" fg:x="255850" fg:w="115"/><text x="48.7789%" y="623.50"></text></g><g><title>find_extent_buffer (206 samples, 0.04%)</title><rect x="48.5215%" y="629" width="0.0391%" height="15" fill="rgb(252,84,27)" fg:x="255811" fg:w="206"/><text x="48.7715%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (318 samples, 0.06%)</title><rect x="48.5061%" y="645" width="0.0603%" height="15" fill="rgb(223,145,39)" fg:x="255730" fg:w="318"/><text x="48.7561%" y="655.50"></text></g><g><title>btrfs_search_slot (716 samples, 0.14%)</title><rect x="48.4390%" y="661" width="0.1358%" height="15" fill="rgb(239,219,30)" fg:x="255376" fg:w="716"/><text x="48.6890%" y="671.50"></text></g><g><title>btrfs_real_readdir (2,244 samples, 0.43%)</title><rect x="48.2491%" y="677" width="0.4256%" height="15" fill="rgb(224,196,39)" fg:x="254375" fg:w="2244"/><text x="48.4991%" y="687.50"></text></g><g><title>read_extent_buffer (366 samples, 0.07%)</title><rect x="48.6053%" y="661" width="0.0694%" height="15" fill="rgb(205,35,43)" fg:x="256253" fg:w="366"/><text x="48.8553%" y="671.50"></text></g><g><title>security_file_permission (59 samples, 0.01%)</title><rect x="48.6810%" y="677" width="0.0112%" height="15" fill="rgb(228,201,21)" fg:x="256652" fg:w="59"/><text x="48.9310%" y="687.50"></text></g><g><title>btrfs_block_rsv_add (87 samples, 0.02%)</title><rect x="48.7182%" y="613" width="0.0165%" height="15" fill="rgb(237,118,16)" fg:x="256848" fg:w="87"/><text x="48.9682%" y="623.50"></text></g><g><title>btrfs_reserve_metadata_bytes (82 samples, 0.02%)</title><rect x="48.7191%" y="597" width="0.0156%" height="15" fill="rgb(241,17,19)" fg:x="256853" fg:w="82"/><text x="48.9691%" y="607.50"></text></g><g><title>__reserve_bytes (81 samples, 0.02%)</title><rect x="48.7193%" y="581" width="0.0154%" height="15" fill="rgb(214,10,25)" fg:x="256854" fg:w="81"/><text x="48.9693%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (179 samples, 0.03%)</title><rect x="48.7094%" y="629" width="0.0340%" height="15" fill="rgb(238,37,29)" fg:x="256802" fg:w="179"/><text x="48.9594%" y="639.50"></text></g><g><title>btrfs_update_inode (209 samples, 0.04%)</title><rect x="48.7074%" y="645" width="0.0396%" height="15" fill="rgb(253,83,25)" fg:x="256791" fg:w="209"/><text x="48.9574%" y="655.50"></text></g><g><title>btrfs_dirty_inode (281 samples, 0.05%)</title><rect x="48.7020%" y="661" width="0.0533%" height="15" fill="rgb(234,192,12)" fg:x="256763" fg:w="281"/><text x="48.9520%" y="671.50"></text></g><g><title>touch_atime (339 samples, 0.06%)</title><rect x="48.6922%" y="677" width="0.0643%" height="15" fill="rgb(241,216,45)" fg:x="256711" fg:w="339"/><text x="48.9422%" y="687.50"></text></g><g><title>iterate_dir (2,713 samples, 0.51%)</title><rect x="48.2445%" y="693" width="0.5146%" height="15" fill="rgb(242,22,33)" fg:x="254351" fg:w="2713"/><text x="48.4945%" y="703.50"></text></g><g><title>__x64_sys_getdents64 (2,786 samples, 0.53%)</title><rect x="48.2320%" y="709" width="0.5284%" height="15" fill="rgb(231,105,49)" fg:x="254285" fg:w="2786"/><text x="48.4820%" y="719.50"></text></g><g><title>do_syscall_64 (2,793 samples, 0.53%)</title><rect x="48.2311%" y="725" width="0.5298%" height="15" fill="rgb(218,204,15)" fg:x="254280" fg:w="2793"/><text x="48.4811%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,801 samples, 0.53%)</title><rect x="48.2307%" y="741" width="0.5313%" height="15" fill="rgb(235,138,41)" fg:x="254278" fg:w="2801"/><text x="48.4807%" y="751.50"></text></g><g><title>__GI___getdents64 (2,842 samples, 0.54%)</title><rect x="48.2239%" y="757" width="0.5391%" height="15" fill="rgb(246,0,9)" fg:x="254242" fg:w="2842"/><text x="48.4739%" y="767.50"></text></g><g><title>__GI___readdir64 (3,013 samples, 0.57%)</title><rect x="48.1916%" y="773" width="0.5715%" height="15" fill="rgb(210,74,4)" fg:x="254072" fg:w="3013"/><text x="48.4416%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (351 samples, 0.07%)</title><rect x="48.8483%" y="757" width="0.0666%" height="15" fill="rgb(250,60,41)" fg:x="257534" fg:w="351"/><text x="49.0983%" y="767.50"></text></g><g><title>_copy_to_user (330 samples, 0.06%)</title><rect x="48.9867%" y="693" width="0.0626%" height="15" fill="rgb(220,115,12)" fg:x="258264" fg:w="330"/><text x="49.2367%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (290 samples, 0.06%)</title><rect x="48.9943%" y="677" width="0.0550%" height="15" fill="rgb(237,100,13)" fg:x="258304" fg:w="290"/><text x="49.2443%" y="687.50"></text></g><g><title>from_kgid_munged (53 samples, 0.01%)</title><rect x="49.0493%" y="693" width="0.0101%" height="15" fill="rgb(213,55,26)" fg:x="258594" fg:w="53"/><text x="49.2993%" y="703.50"></text></g><g><title>cp_new_stat (555 samples, 0.11%)</title><rect x="48.9619%" y="709" width="0.1053%" height="15" fill="rgb(216,17,4)" fg:x="258133" fg:w="555"/><text x="49.2119%" y="719.50"></text></g><g><title>_raw_spin_lock (141 samples, 0.03%)</title><rect x="49.1779%" y="677" width="0.0267%" height="15" fill="rgb(220,153,47)" fg:x="259272" fg:w="141"/><text x="49.4279%" y="687.50"></text></g><g><title>generic_fillattr (147 samples, 0.03%)</title><rect x="49.2047%" y="677" width="0.0279%" height="15" fill="rgb(215,131,9)" fg:x="259413" fg:w="147"/><text x="49.4547%" y="687.50"></text></g><g><title>btrfs_getattr (870 samples, 0.17%)</title><rect x="49.0907%" y="693" width="0.1650%" height="15" fill="rgb(233,46,42)" fg:x="258812" fg:w="870"/><text x="49.3407%" y="703.50"></text></g><g><title>inode_get_bytes (122 samples, 0.02%)</title><rect x="49.2326%" y="677" width="0.0231%" height="15" fill="rgb(226,86,7)" fg:x="259560" fg:w="122"/><text x="49.4826%" y="687.50"></text></g><g><title>_raw_spin_lock (97 samples, 0.02%)</title><rect x="49.2373%" y="661" width="0.0184%" height="15" fill="rgb(239,226,21)" fg:x="259585" fg:w="97"/><text x="49.4873%" y="671.50"></text></g><g><title>kmem_cache_free (397 samples, 0.08%)</title><rect x="49.2885%" y="677" width="0.0753%" height="15" fill="rgb(244,137,22)" fg:x="259855" fg:w="397"/><text x="49.5385%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (93 samples, 0.02%)</title><rect x="49.3462%" y="661" width="0.0176%" height="15" fill="rgb(211,139,35)" fg:x="260159" fg:w="93"/><text x="49.5962%" y="671.50"></text></g><g><title>__legitimize_mnt (136 samples, 0.03%)</title><rect x="49.4067%" y="613" width="0.0258%" height="15" fill="rgb(214,62,50)" fg:x="260478" fg:w="136"/><text x="49.6567%" y="623.50"></text></g><g><title>__legitimize_path (302 samples, 0.06%)</title><rect x="49.4033%" y="629" width="0.0573%" height="15" fill="rgb(212,113,44)" fg:x="260460" fg:w="302"/><text x="49.6533%" y="639.50"></text></g><g><title>lockref_get_not_dead (148 samples, 0.03%)</title><rect x="49.4325%" y="613" width="0.0281%" height="15" fill="rgb(226,150,43)" fg:x="260614" fg:w="148"/><text x="49.6825%" y="623.50"></text></g><g><title>complete_walk (391 samples, 0.07%)</title><rect x="49.3927%" y="661" width="0.0742%" height="15" fill="rgb(250,71,37)" fg:x="260404" fg:w="391"/><text x="49.6427%" y="671.50"></text></g><g><title>try_to_unlazy (368 samples, 0.07%)</title><rect x="49.3970%" y="645" width="0.0698%" height="15" fill="rgb(219,76,19)" fg:x="260427" fg:w="368"/><text x="49.6470%" y="655.50"></text></g><g><title>btrfs_permission (297 samples, 0.06%)</title><rect x="50.6073%" y="629" width="0.0563%" height="15" fill="rgb(250,39,11)" fg:x="266808" fg:w="297"/><text x="50.8573%" y="639.50"></text></g><g><title>inode_permission.part.0 (3,919 samples, 0.74%)</title><rect x="50.1785%" y="645" width="0.7433%" height="15" fill="rgb(230,64,31)" fg:x="264547" fg:w="3919"/><text x="50.4285%" y="655.50"></text></g><g><title>generic_permission (1,361 samples, 0.26%)</title><rect x="50.6637%" y="629" width="0.2582%" height="15" fill="rgb(208,222,23)" fg:x="267105" fg:w="1361"/><text x="50.9137%" y="639.50"></text></g><g><title>get_cached_acl_rcu (58 samples, 0.01%)</title><rect x="50.9108%" y="613" width="0.0110%" height="15" fill="rgb(227,125,18)" fg:x="268408" fg:w="58"/><text x="51.1608%" y="623.50"></text></g><g><title>security_inode_permission (430 samples, 0.08%)</title><rect x="50.9218%" y="645" width="0.0816%" height="15" fill="rgb(234,210,9)" fg:x="268466" fg:w="430"/><text x="51.1718%" y="655.50"></text></g><g><title>__d_lookup_rcu (5,616 samples, 1.07%)</title><rect x="51.6079%" y="613" width="1.0652%" height="15" fill="rgb(217,127,24)" fg:x="272083" fg:w="5616"/><text x="51.8579%" y="623.50"></text></g><g><title>lookup_fast (7,299 samples, 1.38%)</title><rect x="51.2892%" y="629" width="1.3845%" height="15" fill="rgb(239,141,48)" fg:x="270403" fg:w="7299"/><text x="51.5392%" y="639.50"></text></g><g><title>page_put_link (122 samples, 0.02%)</title><rect x="52.6737%" y="629" width="0.0231%" height="15" fill="rgb(227,109,8)" fg:x="277702" fg:w="122"/><text x="52.9237%" y="639.50"></text></g><g><title>__lookup_mnt (79 samples, 0.01%)</title><rect x="53.0771%" y="613" width="0.0150%" height="15" fill="rgb(235,184,23)" fg:x="279829" fg:w="79"/><text x="53.3271%" y="623.50"></text></g><g><title>atime_needs_update (114 samples, 0.02%)</title><rect x="53.0923%" y="613" width="0.0216%" height="15" fill="rgb(227,226,48)" fg:x="279909" fg:w="114"/><text x="53.3423%" y="623.50"></text></g><g><title>current_time (59 samples, 0.01%)</title><rect x="53.1027%" y="597" width="0.0112%" height="15" fill="rgb(206,150,11)" fg:x="279964" fg:w="59"/><text x="53.3527%" y="607.50"></text></g><g><title>page_get_link (335 samples, 0.06%)</title><rect x="53.1190%" y="613" width="0.0635%" height="15" fill="rgb(254,2,33)" fg:x="280050" fg:w="335"/><text x="53.3690%" y="623.50"></text></g><g><title>pagecache_get_page (270 samples, 0.05%)</title><rect x="53.1314%" y="597" width="0.0512%" height="15" fill="rgb(243,160,20)" fg:x="280115" fg:w="270"/><text x="53.3814%" y="607.50"></text></g><g><title>find_get_entry (209 samples, 0.04%)</title><rect x="53.1429%" y="581" width="0.0396%" height="15" fill="rgb(218,208,30)" fg:x="280176" fg:w="209"/><text x="53.3929%" y="591.50"></text></g><g><title>link_path_walk.part.0 (19,606 samples, 3.72%)</title><rect x="49.4668%" y="661" width="3.7188%" height="15" fill="rgb(224,120,49)" fg:x="260795" fg:w="19606"/><text x="49.7168%" y="671.50">link..</text></g><g><title>walk_component (11,505 samples, 2.18%)</title><rect x="51.0034%" y="645" width="2.1822%" height="15" fill="rgb(246,12,2)" fg:x="268896" fg:w="11505"/><text x="51.2534%" y="655.50">w..</text></g><g><title>step_into (2,577 samples, 0.49%)</title><rect x="52.6968%" y="629" width="0.4888%" height="15" fill="rgb(236,117,3)" fg:x="277824" fg:w="2577"/><text x="52.9468%" y="639.50"></text></g><g><title>path_init (500 samples, 0.09%)</title><rect x="53.1856%" y="661" width="0.0948%" height="15" fill="rgb(216,128,52)" fg:x="280401" fg:w="500"/><text x="53.4356%" y="671.50"></text></g><g><title>nd_jump_root (384 samples, 0.07%)</title><rect x="53.2076%" y="645" width="0.0728%" height="15" fill="rgb(246,145,19)" fg:x="280517" fg:w="384"/><text x="53.4576%" y="655.50"></text></g><g><title>set_root (320 samples, 0.06%)</title><rect x="53.2198%" y="629" width="0.0607%" height="15" fill="rgb(222,11,46)" fg:x="280581" fg:w="320"/><text x="53.4698%" y="639.50"></text></g><g><title>dput (160 samples, 0.03%)</title><rect x="53.2909%" y="645" width="0.0303%" height="15" fill="rgb(245,82,36)" fg:x="280956" fg:w="160"/><text x="53.5409%" y="655.50"></text></g><g><title>lockref_put_or_lock (104 samples, 0.02%)</title><rect x="53.3015%" y="629" width="0.0197%" height="15" fill="rgb(250,73,51)" fg:x="281012" fg:w="104"/><text x="53.5515%" y="639.50"></text></g><g><title>terminate_walk (292 samples, 0.06%)</title><rect x="53.2805%" y="661" width="0.0554%" height="15" fill="rgb(221,189,23)" fg:x="280901" fg:w="292"/><text x="53.5305%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (71 samples, 0.01%)</title><rect x="53.3937%" y="565" width="0.0135%" height="15" fill="rgb(210,33,7)" fg:x="281498" fg:w="71"/><text x="53.6437%" y="575.50"></text></g><g><title>free_extent_buffer.part.0 (221 samples, 0.04%)</title><rect x="53.4083%" y="565" width="0.0419%" height="15" fill="rgb(210,107,22)" fg:x="281575" fg:w="221"/><text x="53.6583%" y="575.50"></text></g><g><title>_raw_spin_lock (161 samples, 0.03%)</title><rect x="53.4197%" y="549" width="0.0305%" height="15" fill="rgb(222,116,37)" fg:x="281635" fg:w="161"/><text x="53.6697%" y="559.50"></text></g><g><title>btrfs_free_path (557 samples, 0.11%)</title><rect x="53.3766%" y="597" width="0.1057%" height="15" fill="rgb(254,17,48)" fg:x="281408" fg:w="557"/><text x="53.6266%" y="607.50"></text></g><g><title>btrfs_release_path (530 samples, 0.10%)</title><rect x="53.3818%" y="581" width="0.1005%" height="15" fill="rgb(224,36,32)" fg:x="281435" fg:w="530"/><text x="53.6318%" y="591.50"></text></g><g><title>release_extent_buffer (168 samples, 0.03%)</title><rect x="53.4504%" y="565" width="0.0319%" height="15" fill="rgb(232,90,46)" fg:x="281797" fg:w="168"/><text x="53.7004%" y="575.50"></text></g><g><title>__btrfs_tree_read_lock (93 samples, 0.02%)</title><rect x="53.5583%" y="549" width="0.0176%" height="15" fill="rgb(241,66,40)" fg:x="282366" fg:w="93"/><text x="53.8083%" y="559.50"></text></g><g><title>_raw_read_lock (68 samples, 0.01%)</title><rect x="53.5631%" y="533" width="0.0129%" height="15" fill="rgb(249,184,29)" fg:x="282391" fg:w="68"/><text x="53.8131%" y="543.50"></text></g><g><title>__btrfs_read_lock_root_node (275 samples, 0.05%)</title><rect x="53.5538%" y="565" width="0.0522%" height="15" fill="rgb(231,181,1)" fg:x="282342" fg:w="275"/><text x="53.8038%" y="575.50"></text></g><g><title>btrfs_root_node (158 samples, 0.03%)</title><rect x="53.5760%" y="549" width="0.0300%" height="15" fill="rgb(224,94,2)" fg:x="282459" fg:w="158"/><text x="53.8260%" y="559.50"></text></g><g><title>dequeue_entity (54 samples, 0.01%)</title><rect x="53.6198%" y="501" width="0.0102%" height="15" fill="rgb(229,170,15)" fg:x="282690" fg:w="54"/><text x="53.8698%" y="511.50"></text></g><g><title>dequeue_task_fair (64 samples, 0.01%)</title><rect x="53.6183%" y="517" width="0.0121%" height="15" fill="rgb(240,127,35)" fg:x="282682" fg:w="64"/><text x="53.8683%" y="527.50"></text></g><g><title>__btrfs_tree_read_lock (186 samples, 0.04%)</title><rect x="53.6059%" y="565" width="0.0353%" height="15" fill="rgb(248,196,34)" fg:x="282617" fg:w="186"/><text x="53.8559%" y="575.50"></text></g><g><title>schedule (154 samples, 0.03%)</title><rect x="53.6120%" y="549" width="0.0292%" height="15" fill="rgb(236,137,7)" fg:x="282649" fg:w="154"/><text x="53.8620%" y="559.50"></text></g><g><title>__schedule (151 samples, 0.03%)</title><rect x="53.6126%" y="533" width="0.0286%" height="15" fill="rgb(235,127,16)" fg:x="282652" fg:w="151"/><text x="53.8626%" y="543.50"></text></g><g><title>btrfs_set_path_blocking (206 samples, 0.04%)</title><rect x="53.6507%" y="565" width="0.0391%" height="15" fill="rgb(250,192,54)" fg:x="282853" fg:w="206"/><text x="53.9007%" y="575.50"></text></g><g><title>btrfs_set_lock_blocking_read (131 samples, 0.02%)</title><rect x="53.6649%" y="549" width="0.0248%" height="15" fill="rgb(218,98,20)" fg:x="282928" fg:w="131"/><text x="53.9149%" y="559.50"></text></g><g><title>_raw_read_lock (112 samples, 0.02%)</title><rect x="53.6979%" y="549" width="0.0212%" height="15" fill="rgb(230,176,47)" fg:x="283102" fg:w="112"/><text x="53.9479%" y="559.50"></text></g><g><title>btrfs_tree_read_lock_atomic (231 samples, 0.04%)</title><rect x="53.6898%" y="565" width="0.0438%" height="15" fill="rgb(244,2,33)" fg:x="283059" fg:w="231"/><text x="53.9398%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (76 samples, 0.01%)</title><rect x="53.7192%" y="549" width="0.0144%" height="15" fill="rgb(231,100,17)" fg:x="283214" fg:w="76"/><text x="53.9692%" y="559.50"></text></g><g><title>btrfs_tree_read_unlock (112 samples, 0.02%)</title><rect x="53.7336%" y="565" width="0.0212%" height="15" fill="rgb(245,23,12)" fg:x="283290" fg:w="112"/><text x="53.9836%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (1,290 samples, 0.24%)</title><rect x="53.7579%" y="565" width="0.2447%" height="15" fill="rgb(249,55,22)" fg:x="283418" fg:w="1290"/><text x="54.0079%" y="575.50"></text></g><g><title>btrfs_buffer_uptodate (103 samples, 0.02%)</title><rect x="54.0380%" y="549" width="0.0195%" height="15" fill="rgb(207,134,9)" fg:x="284895" fg:w="103"/><text x="54.2880%" y="559.50"></text></g><g><title>verify_parent_transid (68 samples, 0.01%)</title><rect x="54.0447%" y="533" width="0.0129%" height="15" fill="rgb(218,134,0)" fg:x="284930" fg:w="68"/><text x="54.2947%" y="543.50"></text></g><g><title>btrfs_get_64 (160 samples, 0.03%)</title><rect x="54.0576%" y="549" width="0.0303%" height="15" fill="rgb(213,212,33)" fg:x="284998" fg:w="160"/><text x="54.3076%" y="559.50"></text></g><g><title>__radix_tree_lookup (911 samples, 0.17%)</title><rect x="54.1467%" y="533" width="0.1728%" height="15" fill="rgb(252,106,18)" fg:x="285468" fg:w="911"/><text x="54.3967%" y="543.50"></text></g><g><title>check_buffer_tree_ref (54 samples, 0.01%)</title><rect x="54.3305%" y="517" width="0.0102%" height="15" fill="rgb(208,126,42)" fg:x="286437" fg:w="54"/><text x="54.5805%" y="527.50"></text></g><g><title>mark_extent_buffer_accessed (351 samples, 0.07%)</title><rect x="54.3195%" y="533" width="0.0666%" height="15" fill="rgb(246,175,29)" fg:x="286379" fg:w="351"/><text x="54.5695%" y="543.50"></text></g><g><title>mark_page_accessed (239 samples, 0.05%)</title><rect x="54.3408%" y="517" width="0.0453%" height="15" fill="rgb(215,13,50)" fg:x="286491" fg:w="239"/><text x="54.5908%" y="527.50"></text></g><g><title>find_extent_buffer (1,533 samples, 0.29%)</title><rect x="54.0972%" y="549" width="0.2908%" height="15" fill="rgb(216,172,15)" fg:x="285207" fg:w="1533"/><text x="54.3472%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (2,238 samples, 0.42%)</title><rect x="54.0026%" y="565" width="0.4245%" height="15" fill="rgb(212,103,13)" fg:x="284708" fg:w="2238"/><text x="54.2526%" y="575.50"></text></g><g><title>read_extent_buffer (206 samples, 0.04%)</title><rect x="54.3880%" y="549" width="0.0391%" height="15" fill="rgb(231,171,36)" fg:x="286740" fg:w="206"/><text x="54.6380%" y="559.50"></text></g><g><title>btrfs_search_slot (5,081 samples, 0.96%)</title><rect x="53.4893%" y="581" width="0.9637%" height="15" fill="rgb(250,123,20)" fg:x="282002" fg:w="5081"/><text x="53.7393%" y="591.50"></text></g><g><title>unlock_up (137 samples, 0.03%)</title><rect x="54.4271%" y="565" width="0.0260%" height="15" fill="rgb(212,53,50)" fg:x="286946" fg:w="137"/><text x="54.6771%" y="575.50"></text></g><g><title>btrfs_lookup_dir_item (5,284 samples, 1.00%)</title><rect x="53.4823%" y="597" width="1.0023%" height="15" fill="rgb(243,54,12)" fg:x="281965" fg:w="5284"/><text x="53.7323%" y="607.50"></text></g><g><title>crc32c (166 samples, 0.03%)</title><rect x="54.4530%" y="581" width="0.0315%" height="15" fill="rgb(234,101,34)" fg:x="287083" fg:w="166"/><text x="54.7030%" y="591.50"></text></g><g><title>crypto_shash_update (124 samples, 0.02%)</title><rect x="54.4610%" y="565" width="0.0235%" height="15" fill="rgb(254,67,22)" fg:x="287125" fg:w="124"/><text x="54.7110%" y="575.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="54.5156%" y="581" width="0.0102%" height="15" fill="rgb(250,35,47)" fg:x="287413" fg:w="54"/><text x="54.7656%" y="591.50"></text></g><g><title>kmem_cache_alloc (259 samples, 0.05%)</title><rect x="54.4845%" y="597" width="0.0491%" height="15" fill="rgb(226,126,38)" fg:x="287249" fg:w="259"/><text x="54.7345%" y="607.50"></text></g><g><title>btrfs_lookup (6,327 samples, 1.20%)</title><rect x="53.3582%" y="629" width="1.2001%" height="15" fill="rgb(216,138,53)" fg:x="281311" fg:w="6327"/><text x="53.6082%" y="639.50"></text></g><g><title>btrfs_lookup_dentry (6,320 samples, 1.20%)</title><rect x="53.3596%" y="613" width="1.1988%" height="15" fill="rgb(246,199,43)" fg:x="281318" fg:w="6320"/><text x="53.6096%" y="623.50"></text></g><g><title>kmem_cache_free (130 samples, 0.02%)</title><rect x="54.5337%" y="597" width="0.0247%" height="15" fill="rgb(232,125,11)" fg:x="287508" fg:w="130"/><text x="54.7837%" y="607.50"></text></g><g><title>__slab_alloc (168 samples, 0.03%)</title><rect x="54.6716%" y="565" width="0.0319%" height="15" fill="rgb(218,219,45)" fg:x="288235" fg:w="168"/><text x="54.9216%" y="575.50"></text></g><g><title>___slab_alloc (161 samples, 0.03%)</title><rect x="54.6729%" y="549" width="0.0305%" height="15" fill="rgb(216,102,54)" fg:x="288242" fg:w="161"/><text x="54.9229%" y="559.50"></text></g><g><title>get_partial_node.part.0 (54 samples, 0.01%)</title><rect x="54.6932%" y="533" width="0.0102%" height="15" fill="rgb(250,228,7)" fg:x="288349" fg:w="54"/><text x="54.9432%" y="543.50"></text></g><g><title>__mod_memcg_lruvec_state (125 samples, 0.02%)</title><rect x="54.7833%" y="549" width="0.0237%" height="15" fill="rgb(226,125,25)" fg:x="288824" fg:w="125"/><text x="55.0333%" y="559.50"></text></g><g><title>__mod_memcg_state.part.0 (77 samples, 0.01%)</title><rect x="54.7924%" y="533" width="0.0146%" height="15" fill="rgb(224,165,27)" fg:x="288872" fg:w="77"/><text x="55.0424%" y="543.50"></text></g><g><title>memcg_slab_post_alloc_hook (573 samples, 0.11%)</title><rect x="54.7034%" y="565" width="0.1087%" height="15" fill="rgb(233,86,3)" fg:x="288403" fg:w="573"/><text x="54.9534%" y="575.50"></text></g><g><title>memset_erms (64 samples, 0.01%)</title><rect x="54.8125%" y="565" width="0.0121%" height="15" fill="rgb(228,116,20)" fg:x="288978" fg:w="64"/><text x="55.0625%" y="575.50"></text></g><g><title>get_obj_cgroup_from_current (516 samples, 0.10%)</title><rect x="54.8385%" y="549" width="0.0979%" height="15" fill="rgb(209,192,17)" fg:x="289115" fg:w="516"/><text x="55.0885%" y="559.50"></text></g><g><title>obj_cgroup_charge (117 samples, 0.02%)</title><rect x="54.9363%" y="549" width="0.0222%" height="15" fill="rgb(224,88,34)" fg:x="289631" fg:w="117"/><text x="55.1863%" y="559.50"></text></g><g><title>kmem_cache_alloc (1,710 samples, 0.32%)</title><rect x="54.6346%" y="581" width="0.3243%" height="15" fill="rgb(233,38,6)" fg:x="288040" fg:w="1710"/><text x="54.8846%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (706 samples, 0.13%)</title><rect x="54.8250%" y="565" width="0.1339%" height="15" fill="rgb(212,59,30)" fg:x="289044" fg:w="706"/><text x="55.0750%" y="575.50"></text></g><g><title>__d_alloc (1,900 samples, 0.36%)</title><rect x="54.6055%" y="597" width="0.3604%" height="15" fill="rgb(213,80,3)" fg:x="287887" fg:w="1900"/><text x="54.8555%" y="607.50"></text></g><g><title>d_alloc (2,016 samples, 0.38%)</title><rect x="54.5993%" y="613" width="0.3824%" height="15" fill="rgb(251,178,7)" fg:x="287854" fg:w="2016"/><text x="54.8493%" y="623.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="54.9684%" y="597" width="0.0133%" height="15" fill="rgb(213,154,26)" fg:x="289800" fg:w="70"/><text x="55.2184%" y="607.50"></text></g><g><title>d_alloc_parallel (2,236 samples, 0.42%)</title><rect x="54.5583%" y="629" width="0.4241%" height="15" fill="rgb(238,165,49)" fg:x="287638" fg:w="2236"/><text x="54.8083%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (72 samples, 0.01%)</title><rect x="55.0390%" y="565" width="0.0137%" height="15" fill="rgb(248,91,46)" fg:x="290172" fg:w="72"/><text x="55.2890%" y="575.50"></text></g><g><title>__d_lookup_done (313 samples, 0.06%)</title><rect x="54.9999%" y="597" width="0.0594%" height="15" fill="rgb(244,21,52)" fg:x="289966" fg:w="313"/><text x="55.2499%" y="607.50"></text></g><g><title>__wake_up_common_lock (172 samples, 0.03%)</title><rect x="55.0266%" y="581" width="0.0326%" height="15" fill="rgb(247,122,20)" fg:x="290107" fg:w="172"/><text x="55.2766%" y="591.50"></text></g><g><title>__d_rehash (115 samples, 0.02%)</title><rect x="55.0593%" y="597" width="0.0218%" height="15" fill="rgb(218,27,9)" fg:x="290279" fg:w="115"/><text x="55.3093%" y="607.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="55.0811%" y="597" width="0.0116%" height="15" fill="rgb(246,7,6)" fg:x="290394" fg:w="61"/><text x="55.3311%" y="607.50"></text></g><g><title>__lookup_slow (9,181 samples, 1.74%)</title><rect x="53.3514%" y="645" width="1.7414%" height="15" fill="rgb(227,135,54)" fg:x="281275" fg:w="9181"/><text x="53.6014%" y="655.50"></text></g><g><title>d_splice_alias (582 samples, 0.11%)</title><rect x="54.9824%" y="629" width="0.1104%" height="15" fill="rgb(247,14,11)" fg:x="289874" fg:w="582"/><text x="55.2324%" y="639.50"></text></g><g><title>__d_add (558 samples, 0.11%)</title><rect x="54.9870%" y="613" width="0.1058%" height="15" fill="rgb(206,149,34)" fg:x="289898" fg:w="558"/><text x="55.2370%" y="623.50"></text></g><g><title>__d_lookup_rcu (1,901 samples, 0.36%)</title><rect x="55.1188%" y="629" width="0.3606%" height="15" fill="rgb(227,228,4)" fg:x="290593" fg:w="1901"/><text x="55.3688%" y="639.50"></text></g><g><title>__legitimize_mnt (161 samples, 0.03%)</title><rect x="55.4885%" y="597" width="0.0305%" height="15" fill="rgb(238,218,28)" fg:x="292542" fg:w="161"/><text x="55.7385%" y="607.50"></text></g><g><title>__legitimize_path (323 samples, 0.06%)</title><rect x="55.4860%" y="613" width="0.0613%" height="15" fill="rgb(252,86,40)" fg:x="292529" fg:w="323"/><text x="55.7360%" y="623.50"></text></g><g><title>lockref_get_not_dead (149 samples, 0.03%)</title><rect x="55.5190%" y="597" width="0.0283%" height="15" fill="rgb(251,225,11)" fg:x="292703" fg:w="149"/><text x="55.7690%" y="607.50"></text></g><g><title>lookup_fast (2,369 samples, 0.45%)</title><rect x="55.1021%" y="645" width="0.4493%" height="15" fill="rgb(206,46,49)" fg:x="290505" fg:w="2369"/><text x="55.3521%" y="655.50"></text></g><g><title>try_to_unlazy (379 samples, 0.07%)</title><rect x="55.4796%" y="629" width="0.0719%" height="15" fill="rgb(245,128,24)" fg:x="292495" fg:w="379"/><text x="55.7296%" y="639.50"></text></g><g><title>_raw_spin_lock (157 samples, 0.03%)</title><rect x="55.6205%" y="581" width="0.0298%" height="15" fill="rgb(219,177,34)" fg:x="293238" fg:w="157"/><text x="55.8705%" y="591.50"></text></g><g><title>d_lru_add (388 samples, 0.07%)</title><rect x="55.5801%" y="613" width="0.0736%" height="15" fill="rgb(218,60,48)" fg:x="293025" fg:w="388"/><text x="55.8301%" y="623.50"></text></g><g><title>list_lru_add (365 samples, 0.07%)</title><rect x="55.5845%" y="597" width="0.0692%" height="15" fill="rgb(221,11,5)" fg:x="293048" fg:w="365"/><text x="55.8345%" y="607.50"></text></g><g><title>lockref_put_or_lock (84 samples, 0.02%)</title><rect x="55.6537%" y="613" width="0.0159%" height="15" fill="rgb(220,148,13)" fg:x="293413" fg:w="84"/><text x="55.9037%" y="623.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="55.6569%" y="597" width="0.0127%" height="15" fill="rgb(210,16,3)" fg:x="293430" fg:w="67"/><text x="55.9069%" y="607.50"></text></g><g><title>step_into (628 samples, 0.12%)</title><rect x="55.5515%" y="645" width="0.1191%" height="15" fill="rgb(236,80,2)" fg:x="292874" fg:w="628"/><text x="55.8015%" y="655.50"></text></g><g><title>dput (537 samples, 0.10%)</title><rect x="55.5687%" y="629" width="0.1019%" height="15" fill="rgb(239,129,19)" fg:x="292965" fg:w="537"/><text x="55.8187%" y="639.50"></text></g><g><title>path_lookupat (33,316 samples, 6.32%)</title><rect x="49.3638%" y="677" width="6.3193%" height="15" fill="rgb(220,106,35)" fg:x="260252" fg:w="33316"/><text x="49.6138%" y="687.50">path_loo..</text></g><g><title>walk_component (12,375 samples, 2.35%)</title><rect x="53.3358%" y="661" width="2.3473%" height="15" fill="rgb(252,139,45)" fg:x="281193" fg:w="12375"/><text x="53.5858%" y="671.50">w..</text></g><g><title>up_read (66 samples, 0.01%)</title><rect x="55.6706%" y="645" width="0.0125%" height="15" fill="rgb(229,8,36)" fg:x="293502" fg:w="66"/><text x="55.9206%" y="655.50"></text></g><g><title>filename_lookup (33,909 samples, 6.43%)</title><rect x="49.2557%" y="693" width="6.4318%" height="15" fill="rgb(230,126,33)" fg:x="259682" fg:w="33909"/><text x="49.5057%" y="703.50">filename..</text></g><g><title>lockref_put_or_lock (119 samples, 0.02%)</title><rect x="55.7119%" y="661" width="0.0226%" height="15" fill="rgb(239,140,21)" fg:x="293720" fg:w="119"/><text x="55.9619%" y="671.50"></text></g><g><title>_raw_spin_lock (86 samples, 0.02%)</title><rect x="55.7182%" y="645" width="0.0163%" height="15" fill="rgb(254,104,9)" fg:x="293753" fg:w="86"/><text x="55.9682%" y="655.50"></text></g><g><title>path_put (210 samples, 0.04%)</title><rect x="55.6956%" y="693" width="0.0398%" height="15" fill="rgb(239,52,14)" fg:x="293634" fg:w="210"/><text x="55.9456%" y="703.50"></text></g><g><title>dput (205 samples, 0.04%)</title><rect x="55.6966%" y="677" width="0.0389%" height="15" fill="rgb(208,227,44)" fg:x="293639" fg:w="205"/><text x="55.9466%" y="687.50"></text></g><g><title>apparmor_inode_getattr (88 samples, 0.02%)</title><rect x="55.8464%" y="677" width="0.0167%" height="15" fill="rgb(246,18,19)" fg:x="294429" fg:w="88"/><text x="56.0964%" y="687.50"></text></g><g><title>security_inode_getattr (994 samples, 0.19%)</title><rect x="55.7355%" y="693" width="0.1885%" height="15" fill="rgb(235,228,25)" fg:x="293844" fg:w="994"/><text x="55.9855%" y="703.50"></text></g><g><title>tomoyo_path_perm (313 samples, 0.06%)</title><rect x="55.8646%" y="677" width="0.0594%" height="15" fill="rgb(240,156,20)" fg:x="294525" fg:w="313"/><text x="56.1146%" y="687.50"></text></g><g><title>tomoyo_init_request_info (144 samples, 0.03%)</title><rect x="55.8967%" y="661" width="0.0273%" height="15" fill="rgb(224,8,20)" fg:x="294694" fg:w="144"/><text x="56.1467%" y="671.50"></text></g><g><title>memcg_slab_post_alloc_hook (56 samples, 0.01%)</title><rect x="56.0293%" y="645" width="0.0106%" height="15" fill="rgb(214,12,52)" fg:x="295393" fg:w="56"/><text x="56.2793%" y="655.50"></text></g><g><title>memset_erms (994 samples, 0.19%)</title><rect x="56.0416%" y="645" width="0.1885%" height="15" fill="rgb(211,220,47)" fg:x="295458" fg:w="994"/><text x="56.2916%" y="655.50"></text></g><g><title>_cond_resched (60 samples, 0.01%)</title><rect x="56.2569%" y="629" width="0.0114%" height="15" fill="rgb(250,173,5)" fg:x="296593" fg:w="60"/><text x="56.5069%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,637 samples, 0.31%)</title><rect x="55.9585%" y="661" width="0.3105%" height="15" fill="rgb(250,125,52)" fg:x="295020" fg:w="1637"/><text x="56.2085%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (205 samples, 0.04%)</title><rect x="56.2301%" y="645" width="0.0389%" height="15" fill="rgb(209,133,18)" fg:x="296452" fg:w="205"/><text x="56.4801%" y="655.50"></text></g><g><title>__check_heap_object (197 samples, 0.04%)</title><rect x="56.5205%" y="629" width="0.0374%" height="15" fill="rgb(216,173,22)" fg:x="297983" fg:w="197"/><text x="56.7705%" y="639.50"></text></g><g><title>__virt_addr_valid (246 samples, 0.05%)</title><rect x="56.5579%" y="629" width="0.0467%" height="15" fill="rgb(205,3,22)" fg:x="298180" fg:w="246"/><text x="56.8079%" y="639.50"></text></g><g><title>user_path_at_empty (3,600 samples, 0.68%)</title><rect x="55.9240%" y="693" width="0.6828%" height="15" fill="rgb(248,22,20)" fg:x="294838" fg:w="3600"/><text x="56.1740%" y="703.50"></text></g><g><title>getname_flags.part.0 (3,546 samples, 0.67%)</title><rect x="55.9342%" y="677" width="0.6726%" height="15" fill="rgb(233,6,29)" fg:x="294892" fg:w="3546"/><text x="56.1842%" y="687.50"></text></g><g><title>strncpy_from_user (1,781 samples, 0.34%)</title><rect x="56.2690%" y="661" width="0.3378%" height="15" fill="rgb(240,22,54)" fg:x="296657" fg:w="1781"/><text x="56.5190%" y="671.50"></text></g><g><title>__check_object_size (595 samples, 0.11%)</title><rect x="56.4940%" y="645" width="0.1129%" height="15" fill="rgb(231,133,32)" fg:x="297843" fg:w="595"/><text x="56.7440%" y="655.50"></text></g><g><title>__do_sys_newstat (40,663 samples, 7.71%)</title><rect x="48.9465%" y="725" width="7.7128%" height="15" fill="rgb(248,193,4)" fg:x="258052" fg:w="40663"/><text x="49.1965%" y="735.50">__do_sys_ne..</text></g><g><title>vfs_statx (40,027 samples, 7.59%)</title><rect x="49.0672%" y="709" width="7.5922%" height="15" fill="rgb(211,178,46)" fg:x="258688" fg:w="40027"/><text x="49.3172%" y="719.50">vfs_statx</text></g><g><title>vfs_getattr_nosec (277 samples, 0.05%)</title><rect x="56.6068%" y="693" width="0.0525%" height="15" fill="rgb(224,5,42)" fg:x="298438" fg:w="277"/><text x="56.8568%" y="703.50"></text></g><g><title>do_syscall_64 (40,761 samples, 7.73%)</title><rect x="48.9355%" y="741" width="7.7314%" height="15" fill="rgb(239,176,25)" fg:x="257994" fg:w="40761"/><text x="49.1855%" y="751.50">do_syscall_..</text></g><g><title>fpregs_assert_state_consistent (108 samples, 0.02%)</title><rect x="56.6920%" y="709" width="0.0205%" height="15" fill="rgb(245,187,50)" fg:x="298887" fg:w="108"/><text x="56.9420%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41,116 samples, 7.80%)</title><rect x="48.9149%" y="757" width="7.7988%" height="15" fill="rgb(248,24,15)" fg:x="257885" fg:w="41116"/><text x="49.1649%" y="767.50">entry_SYSCA..</text></g><g><title>syscall_exit_to_user_mode (246 samples, 0.05%)</title><rect x="56.6670%" y="741" width="0.0467%" height="15" fill="rgb(205,166,13)" fg:x="298755" fg:w="246"/><text x="56.9170%" y="751.50"></text></g><g><title>exit_to_user_mode_prepare (208 samples, 0.04%)</title><rect x="56.6742%" y="725" width="0.0395%" height="15" fill="rgb(208,114,23)" fg:x="298793" fg:w="208"/><text x="56.9242%" y="735.50"></text></g><g><title>syscall_return_via_sysret (226 samples, 0.04%)</title><rect x="56.7168%" y="757" width="0.0429%" height="15" fill="rgb(239,127,18)" fg:x="299018" fg:w="226"/><text x="56.9668%" y="767.50"></text></g><g><title>__GI___xstat (42,161 samples, 8.00%)</title><rect x="48.7631%" y="773" width="7.9970%" height="15" fill="rgb(219,154,28)" fg:x="257085" fg:w="42161"/><text x="49.0131%" y="783.50">__GI___xstat</text></g><g><title>__GI_remove (54 samples, 0.01%)</title><rect x="56.7601%" y="773" width="0.0102%" height="15" fill="rgb(225,157,23)" fg:x="299246" fg:w="54"/><text x="57.0101%" y="783.50"></text></g><g><title>crc32c_pcl_intel_update (147 samples, 0.03%)</title><rect x="56.7950%" y="757" width="0.0279%" height="15" fill="rgb(219,8,6)" fg:x="299430" fg:w="147"/><text x="57.0450%" y="767.50"></text></g><g><title>entry_SYSCALL_64 (122 samples, 0.02%)</title><rect x="56.8229%" y="757" width="0.0231%" height="15" fill="rgb(212,47,6)" fg:x="299577" fg:w="122"/><text x="57.0729%" y="767.50"></text></g><g><title>memset_erms (620 samples, 0.12%)</title><rect x="56.9018%" y="677" width="0.1176%" height="15" fill="rgb(224,190,4)" fg:x="299993" fg:w="620"/><text x="57.1518%" y="687.50"></text></g><g><title>kmem_cache_alloc (808 samples, 0.15%)</title><rect x="56.8748%" y="693" width="0.1533%" height="15" fill="rgb(239,183,29)" fg:x="299851" fg:w="808"/><text x="57.1248%" y="703.50"></text></g><g><title>__check_heap_object (57 samples, 0.01%)</title><rect x="57.0877%" y="661" width="0.0108%" height="15" fill="rgb(213,57,7)" fg:x="300973" fg:w="57"/><text x="57.3377%" y="671.50"></text></g><g><title>__virt_addr_valid (167 samples, 0.03%)</title><rect x="57.0985%" y="661" width="0.0317%" height="15" fill="rgb(216,148,1)" fg:x="301030" fg:w="167"/><text x="57.3485%" y="671.50"></text></g><g><title>__x64_sys_unlinkat (1,443 samples, 0.27%)</title><rect x="56.8574%" y="725" width="0.2737%" height="15" fill="rgb(236,182,29)" fg:x="299759" fg:w="1443"/><text x="57.1074%" y="735.50"></text></g><g><title>getname_flags.part.0 (1,403 samples, 0.27%)</title><rect x="56.8650%" y="709" width="0.2661%" height="15" fill="rgb(244,120,48)" fg:x="299799" fg:w="1403"/><text x="57.1150%" y="719.50"></text></g><g><title>strncpy_from_user (543 samples, 0.10%)</title><rect x="57.0281%" y="693" width="0.1030%" height="15" fill="rgb(206,71,34)" fg:x="300659" fg:w="543"/><text x="57.2781%" y="703.50"></text></g><g><title>__check_object_size (282 samples, 0.05%)</title><rect x="57.0776%" y="677" width="0.0535%" height="15" fill="rgb(242,32,6)" fg:x="300920" fg:w="282"/><text x="57.3276%" y="687.50"></text></g><g><title>dput (70 samples, 0.01%)</title><rect x="57.1351%" y="709" width="0.0133%" height="15" fill="rgb(241,35,3)" fg:x="301223" fg:w="70"/><text x="57.3851%" y="719.50"></text></g><g><title>filename_parentat (71 samples, 0.01%)</title><rect x="57.1484%" y="709" width="0.0135%" height="15" fill="rgb(222,62,19)" fg:x="301293" fg:w="71"/><text x="57.3984%" y="719.50"></text></g><g><title>path_parentat (69 samples, 0.01%)</title><rect x="57.1487%" y="693" width="0.0131%" height="15" fill="rgb(223,110,41)" fg:x="301295" fg:w="69"/><text x="57.3987%" y="703.50"></text></g><g><title>__btrfs_end_transaction (65 samples, 0.01%)</title><rect x="57.1903%" y="677" width="0.0123%" height="15" fill="rgb(208,224,4)" fg:x="301514" fg:w="65"/><text x="57.4403%" y="687.50"></text></g><g><title>btrfs_lookup_dir_index_item (146 samples, 0.03%)</title><rect x="57.2168%" y="645" width="0.0277%" height="15" fill="rgb(241,137,19)" fg:x="301654" fg:w="146"/><text x="57.4668%" y="655.50"></text></g><g><title>btrfs_search_slot (145 samples, 0.03%)</title><rect x="57.2170%" y="629" width="0.0275%" height="15" fill="rgb(244,24,17)" fg:x="301655" fg:w="145"/><text x="57.4670%" y="639.50"></text></g><g><title>btrfs_search_slot (148 samples, 0.03%)</title><rect x="57.2449%" y="629" width="0.0281%" height="15" fill="rgb(245,178,49)" fg:x="301802" fg:w="148"/><text x="57.4949%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (152 samples, 0.03%)</title><rect x="57.2445%" y="645" width="0.0288%" height="15" fill="rgb(219,160,38)" fg:x="301800" fg:w="152"/><text x="57.4945%" y="655.50"></text></g><g><title>btrfs_del_dir_entries_in_log (405 samples, 0.08%)</title><rect x="57.2087%" y="661" width="0.0768%" height="15" fill="rgb(228,137,14)" fg:x="301611" fg:w="405"/><text x="57.4587%" y="671.50"></text></g><g><title>btrfs_free_path (56 samples, 0.01%)</title><rect x="57.2895%" y="629" width="0.0106%" height="15" fill="rgb(237,134,11)" fg:x="302037" fg:w="56"/><text x="57.5395%" y="639.50"></text></g><g><title>btrfs_release_path (54 samples, 0.01%)</title><rect x="57.2899%" y="613" width="0.0102%" height="15" fill="rgb(211,126,44)" fg:x="302039" fg:w="54"/><text x="57.5399%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (67 samples, 0.01%)</title><rect x="57.3219%" y="613" width="0.0127%" height="15" fill="rgb(226,171,33)" fg:x="302208" fg:w="67"/><text x="57.5719%" y="623.50"></text></g><g><title>find_extent_buffer (61 samples, 0.01%)</title><rect x="57.3399%" y="597" width="0.0116%" height="15" fill="rgb(253,99,13)" fg:x="302303" fg:w="61"/><text x="57.5899%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (98 samples, 0.02%)</title><rect x="57.3346%" y="613" width="0.0186%" height="15" fill="rgb(244,48,7)" fg:x="302275" fg:w="98"/><text x="57.5846%" y="623.50"></text></g><g><title>btrfs_search_slot (300 samples, 0.06%)</title><rect x="57.3001%" y="629" width="0.0569%" height="15" fill="rgb(244,217,54)" fg:x="302093" fg:w="300"/><text x="57.5501%" y="639.50"></text></g><g><title>btrfs_del_inode_ref (430 samples, 0.08%)</title><rect x="57.2880%" y="645" width="0.0816%" height="15" fill="rgb(224,15,18)" fg:x="302029" fg:w="430"/><text x="57.5380%" y="655.50"></text></g><g><title>btrfs_del_inode_ref_in_log (467 samples, 0.09%)</title><rect x="57.2855%" y="661" width="0.0886%" height="15" fill="rgb(244,99,12)" fg:x="302016" fg:w="467"/><text x="57.5355%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (164 samples, 0.03%)</title><rect x="57.3976%" y="581" width="0.0311%" height="15" fill="rgb(233,226,8)" fg:x="302607" fg:w="164"/><text x="57.6476%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (200 samples, 0.04%)</title><rect x="57.3934%" y="597" width="0.0379%" height="15" fill="rgb(229,211,3)" fg:x="302585" fg:w="200"/><text x="57.6434%" y="607.50"></text></g><g><title>__btrfs_add_free_space (208 samples, 0.04%)</title><rect x="57.3927%" y="613" width="0.0395%" height="15" fill="rgb(216,140,21)" fg:x="302581" fg:w="208"/><text x="57.6427%" y="623.50"></text></g><g><title>btrfs_del_leaf (219 samples, 0.04%)</title><rect x="57.3927%" y="645" width="0.0415%" height="15" fill="rgb(234,122,30)" fg:x="302581" fg:w="219"/><text x="57.6427%" y="655.50"></text></g><g><title>btrfs_free_tree_block (219 samples, 0.04%)</title><rect x="57.3927%" y="629" width="0.0415%" height="15" fill="rgb(236,25,46)" fg:x="302581" fg:w="219"/><text x="57.6427%" y="639.50"></text></g><g><title>btrfs_get_token_32 (222 samples, 0.04%)</title><rect x="57.4372%" y="645" width="0.0421%" height="15" fill="rgb(217,52,54)" fg:x="302816" fg:w="222"/><text x="57.6872%" y="655.50"></text></g><g><title>btrfs_set_token_32 (199 samples, 0.04%)</title><rect x="57.4812%" y="645" width="0.0377%" height="15" fill="rgb(222,29,26)" fg:x="303048" fg:w="199"/><text x="57.7312%" y="655.50"></text></g><g><title>memmove_extent_buffer (125 samples, 0.02%)</title><rect x="57.5309%" y="645" width="0.0237%" height="15" fill="rgb(216,177,29)" fg:x="303310" fg:w="125"/><text x="57.7809%" y="655.50"></text></g><g><title>memmove (98 samples, 0.02%)</title><rect x="57.5361%" y="629" width="0.0186%" height="15" fill="rgb(247,136,51)" fg:x="303337" fg:w="98"/><text x="57.7861%" y="639.50"></text></g><g><title>btrfs_del_items (1,020 samples, 0.19%)</title><rect x="57.3741%" y="661" width="0.1935%" height="15" fill="rgb(231,47,47)" fg:x="302483" fg:w="1020"/><text x="57.6241%" y="671.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (68 samples, 0.01%)</title><rect x="57.5675%" y="661" width="0.0129%" height="15" fill="rgb(211,192,36)" fg:x="303503" fg:w="68"/><text x="57.8175%" y="671.50"></text></g><g><title>__mutex_lock.constprop.0 (103 samples, 0.02%)</title><rect x="57.5932%" y="645" width="0.0195%" height="15" fill="rgb(229,156,32)" fg:x="303638" fg:w="103"/><text x="57.8432%" y="655.50"></text></g><g><title>mutex_spin_on_owner (101 samples, 0.02%)</title><rect x="57.5935%" y="629" width="0.0192%" height="15" fill="rgb(248,213,20)" fg:x="303640" fg:w="101"/><text x="57.8435%" y="639.50"></text></g><g><title>btrfs_delete_delayed_dir_index (229 samples, 0.04%)</title><rect x="57.5804%" y="661" width="0.0434%" height="15" fill="rgb(217,64,7)" fg:x="303571" fg:w="229"/><text x="57.8304%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (101 samples, 0.02%)</title><rect x="57.6512%" y="629" width="0.0192%" height="15" fill="rgb(232,142,8)" fg:x="303944" fg:w="101"/><text x="57.9012%" y="639.50"></text></g><g><title>find_extent_buffer (68 samples, 0.01%)</title><rect x="57.6764%" y="613" width="0.0129%" height="15" fill="rgb(224,92,44)" fg:x="304077" fg:w="68"/><text x="57.9264%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (109 samples, 0.02%)</title><rect x="57.6703%" y="629" width="0.0207%" height="15" fill="rgb(214,169,17)" fg:x="304045" fg:w="109"/><text x="57.9203%" y="639.50"></text></g><g><title>btrfs_search_slot (307 samples, 0.06%)</title><rect x="57.6358%" y="645" width="0.0582%" height="15" fill="rgb(210,59,37)" fg:x="303863" fg:w="307"/><text x="57.8858%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (358 samples, 0.07%)</title><rect x="57.6281%" y="661" width="0.0679%" height="15" fill="rgb(214,116,48)" fg:x="303822" fg:w="358"/><text x="57.8781%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (58 samples, 0.01%)</title><rect x="57.7045%" y="645" width="0.0110%" height="15" fill="rgb(244,191,6)" fg:x="304225" fg:w="58"/><text x="57.9545%" y="655.50"></text></g><g><title>btrfs_update_inode (84 samples, 0.02%)</title><rect x="57.7028%" y="661" width="0.0159%" height="15" fill="rgb(241,50,52)" fg:x="304216" fg:w="84"/><text x="57.9528%" y="671.50"></text></g><g><title>__btrfs_unlink_inode (2,747 samples, 0.52%)</title><rect x="57.2026%" y="677" width="0.5210%" height="15" fill="rgb(236,75,39)" fg:x="301579" fg:w="2747"/><text x="57.4526%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (71 samples, 0.01%)</title><rect x="57.7589%" y="613" width="0.0135%" height="15" fill="rgb(236,99,0)" fg:x="304512" fg:w="71"/><text x="58.0089%" y="623.50"></text></g><g><title>__radix_tree_lookup (75 samples, 0.01%)</title><rect x="57.7823%" y="581" width="0.0142%" height="15" fill="rgb(207,202,15)" fg:x="304635" fg:w="75"/><text x="58.0323%" y="591.50"></text></g><g><title>find_extent_buffer (117 samples, 0.02%)</title><rect x="57.7787%" y="597" width="0.0222%" height="15" fill="rgb(233,207,14)" fg:x="304616" fg:w="117"/><text x="58.0287%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (161 samples, 0.03%)</title><rect x="57.7724%" y="613" width="0.0305%" height="15" fill="rgb(226,27,51)" fg:x="304583" fg:w="161"/><text x="58.0224%" y="623.50"></text></g><g><title>btrfs_search_slot (367 samples, 0.07%)</title><rect x="57.7379%" y="629" width="0.0696%" height="15" fill="rgb(206,104,42)" fg:x="304401" fg:w="367"/><text x="57.9879%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (468 samples, 0.09%)</title><rect x="57.7369%" y="645" width="0.0888%" height="15" fill="rgb(212,225,4)" fg:x="304396" fg:w="468"/><text x="57.9869%" y="655.50"></text></g><g><title>setup_items_for_insert (96 samples, 0.02%)</title><rect x="57.8075%" y="629" width="0.0182%" height="15" fill="rgb(233,96,42)" fg:x="304768" fg:w="96"/><text x="58.0575%" y="639.50"></text></g><g><title>btrfs_orphan_add (544 samples, 0.10%)</title><rect x="57.7276%" y="677" width="0.1032%" height="15" fill="rgb(229,21,32)" fg:x="304347" fg:w="544"/><text x="57.9776%" y="687.50"></text></g><g><title>btrfs_insert_orphan_item (543 samples, 0.10%)</title><rect x="57.7278%" y="661" width="0.1030%" height="15" fill="rgb(226,216,24)" fg:x="304348" fg:w="543"/><text x="57.9778%" y="671.50"></text></g><g><title>btrfs_update_inode (66 samples, 0.01%)</title><rect x="57.8314%" y="677" width="0.0125%" height="15" fill="rgb(221,163,17)" fg:x="304894" fg:w="66"/><text x="58.0814%" y="687.50"></text></g><g><title>btrfs_block_rsv_add (78 samples, 0.01%)</title><rect x="57.8507%" y="661" width="0.0148%" height="15" fill="rgb(216,216,42)" fg:x="304996" fg:w="78"/><text x="58.1007%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (75 samples, 0.01%)</title><rect x="57.8513%" y="645" width="0.0142%" height="15" fill="rgb(240,118,7)" fg:x="304999" fg:w="75"/><text x="58.1013%" y="655.50"></text></g><g><title>__reserve_bytes (74 samples, 0.01%)</title><rect x="57.8515%" y="629" width="0.0140%" height="15" fill="rgb(221,67,37)" fg:x="305000" fg:w="74"/><text x="58.1015%" y="639.50"></text></g><g><title>btrfs_rmdir (3,628 samples, 0.69%)</title><rect x="57.1865%" y="693" width="0.6881%" height="15" fill="rgb(241,32,44)" fg:x="301494" fg:w="3628"/><text x="57.4365%" y="703.50"></text></g><g><title>start_transaction (161 samples, 0.03%)</title><rect x="57.8441%" y="677" width="0.0305%" height="15" fill="rgb(235,204,43)" fg:x="304961" fg:w="161"/><text x="58.0941%" y="687.50"></text></g><g><title>btrfs_drop_extent_cache (66 samples, 0.01%)</title><rect x="57.8968%" y="661" width="0.0125%" height="15" fill="rgb(213,116,10)" fg:x="305239" fg:w="66"/><text x="58.1468%" y="671.50"></text></g><g><title>clear_record_extent_bits (58 samples, 0.01%)</title><rect x="57.9211%" y="645" width="0.0110%" height="15" fill="rgb(239,15,48)" fg:x="305367" fg:w="58"/><text x="58.1711%" y="655.50"></text></g><g><title>__clear_extent_bit (54 samples, 0.01%)</title><rect x="57.9219%" y="629" width="0.0102%" height="15" fill="rgb(207,123,36)" fg:x="305371" fg:w="54"/><text x="58.1719%" y="639.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (72 samples, 0.01%)</title><rect x="57.9203%" y="661" width="0.0137%" height="15" fill="rgb(209,103,30)" fg:x="305363" fg:w="72"/><text x="58.1703%" y="671.50"></text></g><g><title>btrfs_destroy_inode (284 samples, 0.05%)</title><rect x="57.8934%" y="677" width="0.0539%" height="15" fill="rgb(238,100,19)" fg:x="305221" fg:w="284"/><text x="58.1434%" y="687.50"></text></g><g><title>rb_erase (70 samples, 0.01%)</title><rect x="57.9340%" y="661" width="0.0133%" height="15" fill="rgb(244,30,14)" fg:x="305435" fg:w="70"/><text x="58.1840%" y="671.50"></text></g><g><title>destroy_inode (320 samples, 0.06%)</title><rect x="57.8877%" y="693" width="0.0607%" height="15" fill="rgb(249,174,6)" fg:x="305191" fg:w="320"/><text x="58.1377%" y="703.50"></text></g><g><title>__btrfs_end_transaction (90 samples, 0.02%)</title><rect x="57.9645%" y="661" width="0.0171%" height="15" fill="rgb(235,213,41)" fg:x="305596" fg:w="90"/><text x="58.2145%" y="671.50"></text></g><g><title>__radix_tree_lookup (62 samples, 0.01%)</title><rect x="57.9907%" y="629" width="0.0118%" height="15" fill="rgb(213,118,6)" fg:x="305734" fg:w="62"/><text x="58.2407%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (111 samples, 0.02%)</title><rect x="57.9816%" y="661" width="0.0211%" height="15" fill="rgb(235,44,51)" fg:x="305686" fg:w="111"/><text x="58.2316%" y="671.50"></text></g><g><title>radix_tree_delete_item (74 samples, 0.01%)</title><rect x="57.9886%" y="645" width="0.0140%" height="15" fill="rgb(217,9,53)" fg:x="305723" fg:w="74"/><text x="58.2386%" y="655.50"></text></g><g><title>_find_next_bit.constprop.0 (55 samples, 0.01%)</title><rect x="58.0497%" y="549" width="0.0104%" height="15" fill="rgb(237,172,34)" fg:x="306045" fg:w="55"/><text x="58.2997%" y="559.50"></text></g><g><title>__btrfs_add_free_space (64 samples, 0.01%)</title><rect x="58.0488%" y="581" width="0.0121%" height="15" fill="rgb(206,206,11)" fg:x="306040" fg:w="64"/><text x="58.2988%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (64 samples, 0.01%)</title><rect x="58.0488%" y="565" width="0.0121%" height="15" fill="rgb(214,149,29)" fg:x="306040" fg:w="64"/><text x="58.2988%" y="575.50"></text></g><g><title>btrfs_free_tree_block (66 samples, 0.01%)</title><rect x="58.0488%" y="597" width="0.0125%" height="15" fill="rgb(208,123,3)" fg:x="306040" fg:w="66"/><text x="58.2988%" y="607.50"></text></g><g><title>btrfs_del_leaf (68 samples, 0.01%)</title><rect x="58.0488%" y="613" width="0.0129%" height="15" fill="rgb(229,126,4)" fg:x="306040" fg:w="68"/><text x="58.2988%" y="623.50"></text></g><g><title>btrfs_get_token_32 (292 samples, 0.06%)</title><rect x="58.0635%" y="613" width="0.0554%" height="15" fill="rgb(222,92,36)" fg:x="306118" fg:w="292"/><text x="58.3135%" y="623.50"></text></g><g><title>btrfs_set_token_32 (271 samples, 0.05%)</title><rect x="58.1208%" y="613" width="0.0514%" height="15" fill="rgb(216,39,41)" fg:x="306420" fg:w="271"/><text x="58.3708%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (63 samples, 0.01%)</title><rect x="58.1603%" y="597" width="0.0119%" height="15" fill="rgb(253,127,28)" fg:x="306628" fg:w="63"/><text x="58.4103%" y="607.50"></text></g><g><title>memmove_extent_buffer (155 samples, 0.03%)</title><rect x="58.1817%" y="613" width="0.0294%" height="15" fill="rgb(249,152,51)" fg:x="306741" fg:w="155"/><text x="58.4317%" y="623.50"></text></g><g><title>memmove (124 samples, 0.02%)</title><rect x="58.1876%" y="597" width="0.0235%" height="15" fill="rgb(209,123,42)" fg:x="306772" fg:w="124"/><text x="58.4376%" y="607.50"></text></g><g><title>btrfs_del_items (985 samples, 0.19%)</title><rect x="58.0302%" y="629" width="0.1868%" height="15" fill="rgb(241,118,22)" fg:x="305942" fg:w="985"/><text x="58.2802%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (81 samples, 0.02%)</title><rect x="58.2405%" y="597" width="0.0154%" height="15" fill="rgb(208,25,7)" fg:x="307051" fg:w="81"/><text x="58.4905%" y="607.50"></text></g><g><title>find_extent_buffer (82 samples, 0.02%)</title><rect x="58.2629%" y="581" width="0.0156%" height="15" fill="rgb(243,144,39)" fg:x="307169" fg:w="82"/><text x="58.5129%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (133 samples, 0.03%)</title><rect x="58.2559%" y="597" width="0.0252%" height="15" fill="rgb(250,50,5)" fg:x="307132" fg:w="133"/><text x="58.5059%" y="607.50"></text></g><g><title>btrfs_lookup_inode (330 samples, 0.06%)</title><rect x="58.2221%" y="629" width="0.0626%" height="15" fill="rgb(207,67,11)" fg:x="306954" fg:w="330"/><text x="58.4721%" y="639.50"></text></g><g><title>btrfs_search_slot (326 samples, 0.06%)</title><rect x="58.2229%" y="613" width="0.0618%" height="15" fill="rgb(245,204,40)" fg:x="306958" fg:w="326"/><text x="58.4729%" y="623.50"></text></g><g><title>__btrfs_update_delayed_inode (1,483 samples, 0.28%)</title><rect x="58.0247%" y="645" width="0.2813%" height="15" fill="rgb(238,228,24)" fg:x="305913" fg:w="1483"/><text x="58.2747%" y="655.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,667 samples, 0.32%)</title><rect x="58.0120%" y="661" width="0.3162%" height="15" fill="rgb(217,116,22)" fg:x="305846" fg:w="1667"/><text x="58.2620%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (88 samples, 0.02%)</title><rect x="58.3663%" y="629" width="0.0167%" height="15" fill="rgb(234,98,12)" fg:x="307714" fg:w="88"/><text x="58.6163%" y="639.50"></text></g><g><title>find_extent_buffer (85 samples, 0.02%)</title><rect x="58.3890%" y="613" width="0.0161%" height="15" fill="rgb(242,170,50)" fg:x="307834" fg:w="85"/><text x="58.6390%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (131 samples, 0.02%)</title><rect x="58.3830%" y="629" width="0.0248%" height="15" fill="rgb(235,7,5)" fg:x="307802" fg:w="131"/><text x="58.6330%" y="639.50"></text></g><g><title>btrfs_search_slot (350 samples, 0.07%)</title><rect x="58.3456%" y="645" width="0.0664%" height="15" fill="rgb(241,114,28)" fg:x="307605" fg:w="350"/><text x="58.5956%" y="655.50"></text></g><g><title>btrfs_del_orphan_item (462 samples, 0.09%)</title><rect x="58.3281%" y="661" width="0.0876%" height="15" fill="rgb(246,112,42)" fg:x="307513" fg:w="462"/><text x="58.5781%" y="671.50"></text></g><g><title>clear_state_bit (54 samples, 0.01%)</title><rect x="58.4435%" y="629" width="0.0102%" height="15" fill="rgb(248,228,14)" fg:x="308121" fg:w="54"/><text x="58.6935%" y="639.50"></text></g><g><title>__clear_extent_bit (109 samples, 0.02%)</title><rect x="58.4363%" y="645" width="0.0207%" height="15" fill="rgb(208,133,18)" fg:x="308083" fg:w="109"/><text x="58.6863%" y="655.50"></text></g><g><title>_find_next_bit.constprop.0 (959 samples, 0.18%)</title><rect x="58.5082%" y="565" width="0.1819%" height="15" fill="rgb(207,35,49)" fg:x="308462" fg:w="959"/><text x="58.7582%" y="575.50"></text></g><g><title>steal_from_bitmap.part.0 (1,161 samples, 0.22%)</title><rect x="58.4824%" y="581" width="0.2202%" height="15" fill="rgb(205,68,36)" fg:x="308326" fg:w="1161"/><text x="58.7324%" y="591.50"></text></g><g><title>find_next_zero_bit (65 samples, 0.01%)</title><rect x="58.6902%" y="565" width="0.0123%" height="15" fill="rgb(245,62,40)" fg:x="309422" fg:w="65"/><text x="58.9402%" y="575.50"></text></g><g><title>__btrfs_add_free_space (1,183 samples, 0.22%)</title><rect x="58.4803%" y="597" width="0.2244%" height="15" fill="rgb(228,27,24)" fg:x="308315" fg:w="1183"/><text x="58.7303%" y="607.50"></text></g><g><title>btrfs_free_tree_block (1,228 samples, 0.23%)</title><rect x="58.4801%" y="613" width="0.2329%" height="15" fill="rgb(253,19,12)" fg:x="308314" fg:w="1228"/><text x="58.7301%" y="623.50"></text></g><g><title>btrfs_del_leaf (1,235 samples, 0.23%)</title><rect x="58.4797%" y="629" width="0.2343%" height="15" fill="rgb(232,28,20)" fg:x="308312" fg:w="1235"/><text x="58.7297%" y="639.50"></text></g><g><title>btrfs_get_token_32 (294 samples, 0.06%)</title><rect x="58.7187%" y="629" width="0.0558%" height="15" fill="rgb(218,35,51)" fg:x="309572" fg:w="294"/><text x="58.9687%" y="639.50"></text></g><g><title>btrfs_set_token_32 (255 samples, 0.05%)</title><rect x="58.7779%" y="629" width="0.0484%" height="15" fill="rgb(212,90,40)" fg:x="309884" fg:w="255"/><text x="59.0279%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (59 samples, 0.01%)</title><rect x="58.8150%" y="613" width="0.0112%" height="15" fill="rgb(220,172,12)" fg:x="310080" fg:w="59"/><text x="59.0650%" y="623.50"></text></g><g><title>memmove_extent_buffer (134 samples, 0.03%)</title><rect x="58.8427%" y="629" width="0.0254%" height="15" fill="rgb(226,159,20)" fg:x="310226" fg:w="134"/><text x="59.0927%" y="639.50"></text></g><g><title>memmove (100 samples, 0.02%)</title><rect x="58.8492%" y="613" width="0.0190%" height="15" fill="rgb(234,205,16)" fg:x="310260" fg:w="100"/><text x="59.0992%" y="623.50"></text></g><g><title>__push_leaf_left (74 samples, 0.01%)</title><rect x="58.8685%" y="613" width="0.0140%" height="15" fill="rgb(207,9,39)" fg:x="310362" fg:w="74"/><text x="59.1185%" y="623.50"></text></g><g><title>push_leaf_left (93 samples, 0.02%)</title><rect x="58.8682%" y="629" width="0.0176%" height="15" fill="rgb(249,143,15)" fg:x="310360" fg:w="93"/><text x="59.1182%" y="639.50"></text></g><g><title>btrfs_del_items (2,312 samples, 0.44%)</title><rect x="58.4569%" y="645" width="0.4385%" height="15" fill="rgb(253,133,29)" fg:x="308192" fg:w="2312"/><text x="58.7069%" y="655.50"></text></g><g><title>btrfs_drop_extent_cache (90 samples, 0.02%)</title><rect x="58.8955%" y="645" width="0.0171%" height="15" fill="rgb(221,187,0)" fg:x="310504" fg:w="90"/><text x="59.1455%" y="655.50"></text></g><g><title>btrfs_free_path (55 samples, 0.01%)</title><rect x="58.9125%" y="645" width="0.0104%" height="15" fill="rgb(205,204,26)" fg:x="310594" fg:w="55"/><text x="59.1625%" y="655.50"></text></g><g><title>btrfs_release_path (54 samples, 0.01%)</title><rect x="58.9127%" y="629" width="0.0102%" height="15" fill="rgb(224,68,54)" fg:x="310595" fg:w="54"/><text x="59.1627%" y="639.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="58.9383%" y="597" width="0.0118%" height="15" fill="rgb(209,67,4)" fg:x="310730" fg:w="62"/><text x="59.1883%" y="607.50"></text></g><g><title>btrfs_block_rsv_release (121 samples, 0.02%)</title><rect x="58.9306%" y="613" width="0.0230%" height="15" fill="rgb(228,229,18)" fg:x="310689" fg:w="121"/><text x="59.1806%" y="623.50"></text></g><g><title>finish_one_item (72 samples, 0.01%)</title><rect x="58.9624%" y="597" width="0.0137%" height="15" fill="rgb(231,89,13)" fg:x="310857" fg:w="72"/><text x="59.2124%" y="607.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (176 samples, 0.03%)</title><rect x="58.9535%" y="613" width="0.0334%" height="15" fill="rgb(210,182,18)" fg:x="310810" fg:w="176"/><text x="59.2035%" y="623.50"></text></g><g><title>kfree (133 samples, 0.03%)</title><rect x="58.9869%" y="613" width="0.0252%" height="15" fill="rgb(240,105,2)" fg:x="310986" fg:w="133"/><text x="59.2369%" y="623.50"></text></g><g><title>__btrfs_kill_delayed_node (463 samples, 0.09%)</title><rect x="58.9277%" y="629" width="0.0878%" height="15" fill="rgb(207,170,50)" fg:x="310674" fg:w="463"/><text x="59.1777%" y="639.50"></text></g><g><title>btrfs_kill_delayed_inode_items (475 samples, 0.09%)</title><rect x="58.9275%" y="645" width="0.0901%" height="15" fill="rgb(232,133,24)" fg:x="310673" fg:w="475"/><text x="59.1775%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (85 samples, 0.02%)</title><rect x="59.0396%" y="629" width="0.0161%" height="15" fill="rgb(235,166,27)" fg:x="311264" fg:w="85"/><text x="59.2896%" y="639.50"></text></g><g><title>find_extent_buffer (87 samples, 0.02%)</title><rect x="59.0618%" y="613" width="0.0165%" height="15" fill="rgb(209,19,13)" fg:x="311381" fg:w="87"/><text x="59.3118%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (133 samples, 0.03%)</title><rect x="59.0557%" y="629" width="0.0252%" height="15" fill="rgb(226,79,39)" fg:x="311349" fg:w="133"/><text x="59.3057%" y="639.50"></text></g><g><title>btrfs_search_slot (346 samples, 0.07%)</title><rect x="59.0191%" y="645" width="0.0656%" height="15" fill="rgb(222,163,10)" fg:x="311156" fg:w="346"/><text x="59.2691%" y="655.50"></text></g><g><title>lock_extent_bits (99 samples, 0.02%)</title><rect x="59.0907%" y="645" width="0.0188%" height="15" fill="rgb(214,44,19)" fg:x="311533" fg:w="99"/><text x="59.3407%" y="655.50"></text></g><g><title>__set_extent_bit (98 samples, 0.02%)</title><rect x="59.0908%" y="629" width="0.0186%" height="15" fill="rgb(210,217,13)" fg:x="311534" fg:w="98"/><text x="59.3408%" y="639.50"></text></g><g><title>btrfs_truncate_inode_items (3,698 samples, 0.70%)</title><rect x="58.4196%" y="661" width="0.7014%" height="15" fill="rgb(237,61,54)" fg:x="307995" fg:w="3698"/><text x="58.6696%" y="671.50"></text></g><g><title>read_extent_buffer (61 samples, 0.01%)</title><rect x="59.1094%" y="645" width="0.0116%" height="15" fill="rgb(226,184,24)" fg:x="311632" fg:w="61"/><text x="59.3594%" y="655.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (84 samples, 0.02%)</title><rect x="59.1362%" y="597" width="0.0159%" height="15" fill="rgb(223,226,4)" fg:x="311773" fg:w="84"/><text x="59.3862%" y="607.50"></text></g><g><title>btrfs_block_rsv_refill (175 samples, 0.03%)</title><rect x="59.1250%" y="645" width="0.0332%" height="15" fill="rgb(210,26,41)" fg:x="311714" fg:w="175"/><text x="59.3750%" y="655.50"></text></g><g><title>btrfs_reserve_metadata_bytes (138 samples, 0.03%)</title><rect x="59.1320%" y="629" width="0.0262%" height="15" fill="rgb(220,221,6)" fg:x="311751" fg:w="138"/><text x="59.3820%" y="639.50"></text></g><g><title>__reserve_bytes (137 samples, 0.03%)</title><rect x="59.1322%" y="613" width="0.0260%" height="15" fill="rgb(225,89,49)" fg:x="311752" fg:w="137"/><text x="59.3822%" y="623.50"></text></g><g><title>evict_refill_and_join (277 samples, 0.05%)</title><rect x="59.1210%" y="661" width="0.0525%" height="15" fill="rgb(218,70,45)" fg:x="311693" fg:w="277"/><text x="59.3710%" y="671.50"></text></g><g><title>start_transaction (79 samples, 0.01%)</title><rect x="59.1586%" y="645" width="0.0150%" height="15" fill="rgb(238,166,21)" fg:x="311891" fg:w="79"/><text x="59.4086%" y="655.50"></text></g><g><title>btrfs_evict_inode (6,452 samples, 1.22%)</title><rect x="57.9617%" y="677" width="1.2238%" height="15" fill="rgb(224,141,44)" fg:x="305581" fg:w="6452"/><text x="58.2117%" y="687.50"></text></g><g><title>evict (6,528 samples, 1.24%)</title><rect x="57.9505%" y="693" width="1.2382%" height="15" fill="rgb(230,12,49)" fg:x="305522" fg:w="6528"/><text x="58.2005%" y="703.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="59.2056%" y="661" width="0.0116%" height="15" fill="rgb(212,174,12)" fg:x="312139" fg:w="61"/><text x="59.4556%" y="671.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="59.2509%" y="613" width="0.0119%" height="15" fill="rgb(246,67,9)" fg:x="312378" fg:w="63"/><text x="59.5009%" y="623.50"></text></g><g><title>d_lru_del (347 samples, 0.07%)</title><rect x="59.2246%" y="645" width="0.0658%" height="15" fill="rgb(239,35,23)" fg:x="312239" fg:w="347"/><text x="59.4746%" y="655.50"></text></g><g><title>list_lru_del (337 samples, 0.06%)</title><rect x="59.2265%" y="629" width="0.0639%" height="15" fill="rgb(211,167,0)" fg:x="312249" fg:w="337"/><text x="59.4765%" y="639.50"></text></g><g><title>mem_cgroup_from_obj (145 samples, 0.03%)</title><rect x="59.2629%" y="613" width="0.0275%" height="15" fill="rgb(225,119,45)" fg:x="312441" fg:w="145"/><text x="59.5129%" y="623.50"></text></g><g><title>d_walk (517 samples, 0.10%)</title><rect x="59.1984%" y="677" width="0.0981%" height="15" fill="rgb(210,162,6)" fg:x="312101" fg:w="517"/><text x="59.4484%" y="687.50"></text></g><g><title>select_collect (418 samples, 0.08%)</title><rect x="59.2172%" y="661" width="0.0793%" height="15" fill="rgb(208,118,35)" fg:x="312200" fg:w="418"/><text x="59.4672%" y="671.50"></text></g><g><title>___d_drop (227 samples, 0.04%)</title><rect x="59.3111%" y="645" width="0.0431%" height="15" fill="rgb(239,4,53)" fg:x="312695" fg:w="227"/><text x="59.5611%" y="655.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="59.3556%" y="645" width="0.0118%" height="15" fill="rgb(213,130,21)" fg:x="312930" fg:w="62"/><text x="59.6056%" y="655.50"></text></g><g><title>call_rcu (298 samples, 0.06%)</title><rect x="59.3674%" y="645" width="0.0565%" height="15" fill="rgb(235,148,0)" fg:x="312992" fg:w="298"/><text x="59.6174%" y="655.50"></text></g><g><title>rcu_segcblist_enqueue (168 samples, 0.03%)</title><rect x="59.3920%" y="629" width="0.0319%" height="15" fill="rgb(244,224,18)" fg:x="313122" fg:w="168"/><text x="59.6420%" y="639.50"></text></g><g><title>__dentry_kill (652 samples, 0.12%)</title><rect x="59.3020%" y="661" width="0.1237%" height="15" fill="rgb(211,214,4)" fg:x="312647" fg:w="652"/><text x="59.5520%" y="671.50"></text></g><g><title>__dput_to_list (61 samples, 0.01%)</title><rect x="59.4256%" y="661" width="0.0116%" height="15" fill="rgb(206,119,25)" fg:x="313299" fg:w="61"/><text x="59.6756%" y="671.50"></text></g><g><title>d_lru_del (54 samples, 0.01%)</title><rect x="59.4269%" y="645" width="0.0102%" height="15" fill="rgb(243,93,47)" fg:x="313306" fg:w="54"/><text x="59.6769%" y="655.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="59.4395%" y="661" width="0.0110%" height="15" fill="rgb(224,194,6)" fg:x="313372" fg:w="58"/><text x="59.6895%" y="671.50"></text></g><g><title>shrink_dcache_parent (1,452 samples, 0.28%)</title><rect x="59.1972%" y="693" width="0.2754%" height="15" fill="rgb(243,229,6)" fg:x="312095" fg:w="1452"/><text x="59.4472%" y="703.50"></text></g><g><title>shrink_dentry_list (929 samples, 0.18%)</title><rect x="59.2965%" y="677" width="0.1762%" height="15" fill="rgb(207,23,50)" fg:x="312618" fg:w="929"/><text x="59.5465%" y="687.50"></text></g><g><title>shrink_lock_dentry.part.0 (88 samples, 0.02%)</title><rect x="59.4560%" y="661" width="0.0167%" height="15" fill="rgb(253,192,32)" fg:x="313459" fg:w="88"/><text x="59.7060%" y="671.50"></text></g><g><title>_raw_spin_trylock (71 samples, 0.01%)</title><rect x="59.4592%" y="645" width="0.0135%" height="15" fill="rgb(213,21,6)" fg:x="313476" fg:w="71"/><text x="59.7092%" y="655.50"></text></g><g><title>do_rmdir (12,351 samples, 2.34%)</title><rect x="57.1311%" y="725" width="2.3427%" height="15" fill="rgb(243,151,13)" fg:x="301202" fg:w="12351"/><text x="57.3811%" y="735.50">d..</text></g><g><title>vfs_rmdir.part.0 (12,071 samples, 2.29%)</title><rect x="57.1842%" y="709" width="2.2896%" height="15" fill="rgb(233,165,41)" fg:x="301482" fg:w="12071"/><text x="57.4342%" y="719.50">v..</text></g><g><title>_raw_spin_lock (162 samples, 0.03%)</title><rect x="59.6699%" y="645" width="0.0307%" height="15" fill="rgb(246,176,45)" fg:x="314587" fg:w="162"/><text x="59.9199%" y="655.50"></text></g><g><title>__lookup_hash (1,124 samples, 0.21%)</title><rect x="59.4884%" y="709" width="0.2132%" height="15" fill="rgb(217,170,52)" fg:x="313630" fg:w="1124"/><text x="59.7384%" y="719.50"></text></g><g><title>lookup_dcache (1,098 samples, 0.21%)</title><rect x="59.4933%" y="693" width="0.2083%" height="15" fill="rgb(214,203,54)" fg:x="313656" fg:w="1098"/><text x="59.7433%" y="703.50"></text></g><g><title>d_lookup (1,089 samples, 0.21%)</title><rect x="59.4950%" y="677" width="0.2066%" height="15" fill="rgb(248,215,49)" fg:x="313665" fg:w="1089"/><text x="59.7450%" y="687.50"></text></g><g><title>__d_lookup (1,076 samples, 0.20%)</title><rect x="59.4975%" y="661" width="0.2041%" height="15" fill="rgb(208,46,10)" fg:x="313678" fg:w="1076"/><text x="59.7475%" y="671.50"></text></g><g><title>down_write (53 samples, 0.01%)</title><rect x="59.7018%" y="709" width="0.0101%" height="15" fill="rgb(254,5,31)" fg:x="314755" fg:w="53"/><text x="59.9518%" y="719.50"></text></g><g><title>lockref_put_or_lock (128 samples, 0.02%)</title><rect x="59.7312%" y="693" width="0.0243%" height="15" fill="rgb(222,104,33)" fg:x="314910" fg:w="128"/><text x="59.9812%" y="703.50"></text></g><g><title>dput (232 samples, 0.04%)</title><rect x="59.7118%" y="709" width="0.0440%" height="15" fill="rgb(248,49,16)" fg:x="314808" fg:w="232"/><text x="59.9618%" y="719.50"></text></g><g><title>__legitimize_mnt (80 samples, 0.02%)</title><rect x="59.7837%" y="629" width="0.0152%" height="15" fill="rgb(232,198,41)" fg:x="315187" fg:w="80"/><text x="60.0337%" y="639.50"></text></g><g><title>__legitimize_path (172 samples, 0.03%)</title><rect x="59.7813%" y="645" width="0.0326%" height="15" fill="rgb(214,125,3)" fg:x="315174" fg:w="172"/><text x="60.0313%" y="655.50"></text></g><g><title>lockref_get_not_dead (79 samples, 0.01%)</title><rect x="59.7989%" y="629" width="0.0150%" height="15" fill="rgb(229,220,28)" fg:x="315267" fg:w="79"/><text x="60.0489%" y="639.50"></text></g><g><title>complete_walk (232 samples, 0.04%)</title><rect x="59.7737%" y="677" width="0.0440%" height="15" fill="rgb(222,64,37)" fg:x="315134" fg:w="232"/><text x="60.0237%" y="687.50"></text></g><g><title>try_to_unlazy (216 samples, 0.04%)</title><rect x="59.7767%" y="661" width="0.0410%" height="15" fill="rgb(249,184,13)" fg:x="315150" fg:w="216"/><text x="60.0267%" y="671.50"></text></g><g><title>link_path_walk.part.0 (134 samples, 0.03%)</title><rect x="59.8177%" y="677" width="0.0254%" height="15" fill="rgb(252,176,6)" fg:x="315366" fg:w="134"/><text x="60.0677%" y="687.50"></text></g><g><title>__fget_light (192 samples, 0.04%)</title><rect x="59.8543%" y="661" width="0.0364%" height="15" fill="rgb(228,153,7)" fg:x="315559" fg:w="192"/><text x="60.1043%" y="671.50"></text></g><g><title>__fget_files (155 samples, 0.03%)</title><rect x="59.8613%" y="645" width="0.0294%" height="15" fill="rgb(242,193,5)" fg:x="315596" fg:w="155"/><text x="60.1113%" y="655.50"></text></g><g><title>path_init (303 samples, 0.06%)</title><rect x="59.8431%" y="677" width="0.0575%" height="15" fill="rgb(232,140,9)" fg:x="315500" fg:w="303"/><text x="60.0931%" y="687.50"></text></g><g><title>filename_parentat (761 samples, 0.14%)</title><rect x="59.7593%" y="709" width="0.1443%" height="15" fill="rgb(213,222,16)" fg:x="315058" fg:w="761"/><text x="60.0093%" y="719.50"></text></g><g><title>path_parentat (709 samples, 0.13%)</title><rect x="59.7691%" y="693" width="0.1345%" height="15" fill="rgb(222,75,50)" fg:x="315110" fg:w="709"/><text x="60.0191%" y="703.50"></text></g><g><title>ihold (370 samples, 0.07%)</title><rect x="59.9036%" y="709" width="0.0702%" height="15" fill="rgb(205,180,2)" fg:x="315819" fg:w="370"/><text x="60.1536%" y="719.50"></text></g><g><title>iput.part.0 (59 samples, 0.01%)</title><rect x="59.9740%" y="709" width="0.0112%" height="15" fill="rgb(216,34,7)" fg:x="316190" fg:w="59"/><text x="60.2240%" y="719.50"></text></g><g><title>kmem_cache_free (148 samples, 0.03%)</title><rect x="59.9852%" y="709" width="0.0281%" height="15" fill="rgb(253,16,32)" fg:x="316249" fg:w="148"/><text x="60.2352%" y="719.50"></text></g><g><title>__mnt_want_write (63 samples, 0.01%)</title><rect x="60.0216%" y="693" width="0.0119%" height="15" fill="rgb(208,97,28)" fg:x="316441" fg:w="63"/><text x="60.2716%" y="703.50"></text></g><g><title>mnt_want_write (103 samples, 0.02%)</title><rect x="60.0178%" y="709" width="0.0195%" height="15" fill="rgb(225,92,11)" fg:x="316421" fg:w="103"/><text x="60.2678%" y="719.50"></text></g><g><title>apparmor_path_unlink (60 samples, 0.01%)</title><rect x="60.0481%" y="693" width="0.0114%" height="15" fill="rgb(243,38,12)" fg:x="316581" fg:w="60"/><text x="60.2981%" y="703.50"></text></g><g><title>security_path_unlink (263 samples, 0.05%)</title><rect x="60.0451%" y="709" width="0.0499%" height="15" fill="rgb(208,139,16)" fg:x="316565" fg:w="263"/><text x="60.2951%" y="719.50"></text></g><g><title>tomoyo_path_unlink (187 samples, 0.04%)</title><rect x="60.0595%" y="693" width="0.0355%" height="15" fill="rgb(227,24,9)" fg:x="316641" fg:w="187"/><text x="60.3095%" y="703.50"></text></g><g><title>tomoyo_path_perm (183 samples, 0.03%)</title><rect x="60.0603%" y="677" width="0.0347%" height="15" fill="rgb(206,62,11)" fg:x="316645" fg:w="183"/><text x="60.3103%" y="687.50"></text></g><g><title>tomoyo_init_request_info (86 samples, 0.02%)</title><rect x="60.0787%" y="661" width="0.0163%" height="15" fill="rgb(228,134,27)" fg:x="316742" fg:w="86"/><text x="60.3287%" y="671.50"></text></g><g><title>up_write (57 samples, 0.01%)</title><rect x="60.0950%" y="709" width="0.0108%" height="15" fill="rgb(205,55,33)" fg:x="316828" fg:w="57"/><text x="60.3450%" y="719.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="60.1331%" y="693" width="0.0101%" height="15" fill="rgb(243,75,43)" fg:x="317029" fg:w="53"/><text x="60.3831%" y="703.50"></text></g><g><title>btrfs_put_transaction (69 samples, 0.01%)</title><rect x="60.1902%" y="661" width="0.0131%" height="15" fill="rgb(223,27,42)" fg:x="317330" fg:w="69"/><text x="60.4402%" y="671.50"></text></g><g><title>_raw_spin_lock (115 samples, 0.02%)</title><rect x="60.2132%" y="629" width="0.0218%" height="15" fill="rgb(232,189,33)" fg:x="317451" fg:w="115"/><text x="60.4632%" y="639.50"></text></g><g><title>btrfs_trans_release_metadata (194 samples, 0.04%)</title><rect x="60.2044%" y="661" width="0.0368%" height="15" fill="rgb(210,9,39)" fg:x="317405" fg:w="194"/><text x="60.4544%" y="671.50"></text></g><g><title>btrfs_block_rsv_release (193 samples, 0.04%)</title><rect x="60.2046%" y="645" width="0.0366%" height="15" fill="rgb(242,85,26)" fg:x="317406" fg:w="193"/><text x="60.4546%" y="655.50"></text></g><g><title>__btrfs_end_transaction (568 samples, 0.11%)</title><rect x="60.1515%" y="677" width="0.1077%" height="15" fill="rgb(248,44,4)" fg:x="317126" fg:w="568"/><text x="60.4015%" y="687.50"></text></g><g><title>kmem_cache_free (95 samples, 0.02%)</title><rect x="60.2412%" y="661" width="0.0180%" height="15" fill="rgb(250,96,46)" fg:x="317599" fg:w="95"/><text x="60.4912%" y="671.50"></text></g><g><title>btrfs_tree_unlock (99 samples, 0.02%)</title><rect x="60.3903%" y="613" width="0.0188%" height="15" fill="rgb(229,116,26)" fg:x="318385" fg:w="99"/><text x="60.6403%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (94 samples, 0.02%)</title><rect x="60.4099%" y="613" width="0.0178%" height="15" fill="rgb(246,94,34)" fg:x="318488" fg:w="94"/><text x="60.6599%" y="623.50"></text></g><g><title>_raw_spin_lock (78 samples, 0.01%)</title><rect x="60.4129%" y="597" width="0.0148%" height="15" fill="rgb(251,73,21)" fg:x="318504" fg:w="78"/><text x="60.6629%" y="607.50"></text></g><g><title>btrfs_free_path (361 samples, 0.07%)</title><rect x="60.3787%" y="645" width="0.0685%" height="15" fill="rgb(254,121,25)" fg:x="318324" fg:w="361"/><text x="60.6287%" y="655.50"></text></g><g><title>btrfs_release_path (353 samples, 0.07%)</title><rect x="60.3803%" y="629" width="0.0670%" height="15" fill="rgb(215,161,49)" fg:x="318332" fg:w="353"/><text x="60.6303%" y="639.50"></text></g><g><title>release_extent_buffer (103 samples, 0.02%)</title><rect x="60.4277%" y="613" width="0.0195%" height="15" fill="rgb(221,43,13)" fg:x="318582" fg:w="103"/><text x="60.6777%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (69 samples, 0.01%)</title><rect x="60.4827%" y="597" width="0.0131%" height="15" fill="rgb(249,5,37)" fg:x="318872" fg:w="69"/><text x="60.7327%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (161 samples, 0.03%)</title><rect x="60.4791%" y="613" width="0.0305%" height="15" fill="rgb(226,25,44)" fg:x="318853" fg:w="161"/><text x="60.7291%" y="623.50"></text></g><g><title>btrfs_root_node (73 samples, 0.01%)</title><rect x="60.4958%" y="597" width="0.0138%" height="15" fill="rgb(238,189,16)" fg:x="318941" fg:w="73"/><text x="60.7458%" y="607.50"></text></g><g><title>__btrfs_tree_lock (110 samples, 0.02%)</title><rect x="60.5165%" y="597" width="0.0209%" height="15" fill="rgb(251,186,8)" fg:x="319050" fg:w="110"/><text x="60.7665%" y="607.50"></text></g><g><title>_raw_write_lock (64 samples, 0.01%)</title><rect x="60.5252%" y="581" width="0.0121%" height="15" fill="rgb(254,34,31)" fg:x="319096" fg:w="64"/><text x="60.7752%" y="591.50"></text></g><g><title>btrfs_lock_root_node (184 samples, 0.03%)</title><rect x="60.5142%" y="613" width="0.0349%" height="15" fill="rgb(225,215,27)" fg:x="319038" fg:w="184"/><text x="60.7642%" y="623.50"></text></g><g><title>btrfs_root_node (62 samples, 0.01%)</title><rect x="60.5373%" y="597" width="0.0118%" height="15" fill="rgb(221,192,48)" fg:x="319160" fg:w="62"/><text x="60.7873%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (68 samples, 0.01%)</title><rect x="60.5491%" y="613" width="0.0129%" height="15" fill="rgb(219,137,20)" fg:x="319222" fg:w="68"/><text x="60.7991%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (60 samples, 0.01%)</title><rect x="60.5620%" y="613" width="0.0114%" height="15" fill="rgb(219,84,11)" fg:x="319290" fg:w="60"/><text x="60.8120%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (67 samples, 0.01%)</title><rect x="60.5798%" y="613" width="0.0127%" height="15" fill="rgb(224,10,23)" fg:x="319384" fg:w="67"/><text x="60.8298%" y="623.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="60.5819%" y="597" width="0.0106%" height="15" fill="rgb(248,22,39)" fg:x="319395" fg:w="56"/><text x="60.8319%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (258 samples, 0.05%)</title><rect x="60.5925%" y="613" width="0.0489%" height="15" fill="rgb(212,154,20)" fg:x="319451" fg:w="258"/><text x="60.8425%" y="623.50"></text></g><g><title>__radix_tree_lookup (124 samples, 0.02%)</title><rect x="60.6659%" y="581" width="0.0235%" height="15" fill="rgb(236,199,50)" fg:x="319838" fg:w="124"/><text x="60.9159%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (87 samples, 0.02%)</title><rect x="60.6894%" y="581" width="0.0165%" height="15" fill="rgb(211,9,17)" fg:x="319962" fg:w="87"/><text x="60.9394%" y="591.50"></text></g><g><title>find_extent_buffer (242 samples, 0.05%)</title><rect x="60.6612%" y="597" width="0.0459%" height="15" fill="rgb(243,216,36)" fg:x="319813" fg:w="242"/><text x="60.9112%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (402 samples, 0.08%)</title><rect x="60.6414%" y="613" width="0.0763%" height="15" fill="rgb(250,2,10)" fg:x="319709" fg:w="402"/><text x="60.8914%" y="623.50"></text></g><g><title>read_extent_buffer (56 samples, 0.01%)</title><rect x="60.7071%" y="597" width="0.0106%" height="15" fill="rgb(226,50,48)" fg:x="320055" fg:w="56"/><text x="60.9571%" y="607.50"></text></g><g><title>btrfs_lookup_dir_index_item (1,524 samples, 0.29%)</title><rect x="60.4472%" y="645" width="0.2891%" height="15" fill="rgb(243,81,16)" fg:x="318685" fg:w="1524"/><text x="60.6972%" y="655.50"></text></g><g><title>btrfs_search_slot (1,509 samples, 0.29%)</title><rect x="60.4501%" y="629" width="0.2862%" height="15" fill="rgb(250,14,2)" fg:x="318700" fg:w="1509"/><text x="60.7001%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (61 samples, 0.01%)</title><rect x="60.7756%" y="597" width="0.0116%" height="15" fill="rgb(233,135,29)" fg:x="320416" fg:w="61"/><text x="61.0256%" y="607.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="60.7771%" y="581" width="0.0101%" height="15" fill="rgb(224,64,43)" fg:x="320424" fg:w="53"/><text x="61.0271%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (171 samples, 0.03%)</title><rect x="60.7731%" y="613" width="0.0324%" height="15" fill="rgb(238,84,13)" fg:x="320403" fg:w="171"/><text x="61.0231%" y="623.50"></text></g><g><title>btrfs_root_node (97 samples, 0.02%)</title><rect x="60.7871%" y="597" width="0.0184%" height="15" fill="rgb(253,48,26)" fg:x="320477" fg:w="97"/><text x="61.0371%" y="607.50"></text></g><g><title>__btrfs_tree_lock (117 samples, 0.02%)</title><rect x="60.8120%" y="597" width="0.0222%" height="15" fill="rgb(205,223,31)" fg:x="320608" fg:w="117"/><text x="61.0620%" y="607.50"></text></g><g><title>_raw_write_lock (59 samples, 0.01%)</title><rect x="60.8230%" y="581" width="0.0112%" height="15" fill="rgb(221,41,32)" fg:x="320666" fg:w="59"/><text x="61.0730%" y="591.50"></text></g><g><title>btrfs_lock_root_node (192 samples, 0.04%)</title><rect x="60.8089%" y="613" width="0.0364%" height="15" fill="rgb(213,158,31)" fg:x="320592" fg:w="192"/><text x="61.0589%" y="623.50"></text></g><g><title>btrfs_root_node (59 samples, 0.01%)</title><rect x="60.8342%" y="597" width="0.0112%" height="15" fill="rgb(245,126,43)" fg:x="320725" fg:w="59"/><text x="61.0842%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (77 samples, 0.01%)</title><rect x="60.8454%" y="613" width="0.0146%" height="15" fill="rgb(227,7,22)" fg:x="320784" fg:w="77"/><text x="61.0954%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (57 samples, 0.01%)</title><rect x="60.8694%" y="613" width="0.0108%" height="15" fill="rgb(252,90,44)" fg:x="320911" fg:w="57"/><text x="61.1194%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (75 samples, 0.01%)</title><rect x="60.8804%" y="613" width="0.0142%" height="15" fill="rgb(253,91,0)" fg:x="320969" fg:w="75"/><text x="61.1304%" y="623.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="60.8821%" y="597" width="0.0125%" height="15" fill="rgb(252,175,49)" fg:x="320978" fg:w="66"/><text x="61.1321%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (298 samples, 0.06%)</title><rect x="60.8947%" y="613" width="0.0565%" height="15" fill="rgb(246,150,1)" fg:x="321044" fg:w="298"/><text x="61.1447%" y="623.50"></text></g><g><title>__radix_tree_lookup (185 samples, 0.04%)</title><rect x="60.9867%" y="581" width="0.0351%" height="15" fill="rgb(241,192,25)" fg:x="321529" fg:w="185"/><text x="61.2367%" y="591.50"></text></g><g><title>find_extent_buffer (378 samples, 0.07%)</title><rect x="60.9753%" y="597" width="0.0717%" height="15" fill="rgb(239,187,11)" fg:x="321469" fg:w="378"/><text x="61.2253%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (133 samples, 0.03%)</title><rect x="61.0218%" y="581" width="0.0252%" height="15" fill="rgb(218,202,51)" fg:x="321714" fg:w="133"/><text x="61.2718%" y="591.50"></text></g><g><title>mark_page_accessed (83 samples, 0.02%)</title><rect x="61.0312%" y="565" width="0.0157%" height="15" fill="rgb(225,176,8)" fg:x="321764" fg:w="83"/><text x="61.2812%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (546 samples, 0.10%)</title><rect x="60.9512%" y="613" width="0.1036%" height="15" fill="rgb(219,122,41)" fg:x="321342" fg:w="546"/><text x="61.2012%" y="623.50"></text></g><g><title>btrfs_search_slot (1,756 samples, 0.33%)</title><rect x="60.7425%" y="629" width="0.3331%" height="15" fill="rgb(248,140,20)" fg:x="320242" fg:w="1756"/><text x="60.9925%" y="639.50"></text></g><g><title>unlock_up (65 samples, 0.01%)</title><rect x="61.0633%" y="613" width="0.0123%" height="15" fill="rgb(245,41,37)" fg:x="321933" fg:w="65"/><text x="61.3133%" y="623.50"></text></g><g><title>btrfs_lookup_dir_item (1,825 samples, 0.35%)</title><rect x="60.7363%" y="645" width="0.3462%" height="15" fill="rgb(235,82,39)" fg:x="320209" fg:w="1825"/><text x="60.9863%" y="655.50"></text></g><g><title>btrfs_tree_unlock (109 samples, 0.02%)</title><rect x="61.0935%" y="629" width="0.0207%" height="15" fill="rgb(230,108,42)" fg:x="322092" fg:w="109"/><text x="61.3435%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (111 samples, 0.02%)</title><rect x="61.1149%" y="629" width="0.0211%" height="15" fill="rgb(215,150,50)" fg:x="322205" fg:w="111"/><text x="61.3649%" y="639.50"></text></g><g><title>_raw_spin_lock (92 samples, 0.02%)</title><rect x="61.1185%" y="613" width="0.0175%" height="15" fill="rgb(233,212,5)" fg:x="322224" fg:w="92"/><text x="61.3685%" y="623.50"></text></g><g><title>btrfs_release_path (390 samples, 0.07%)</title><rect x="61.0824%" y="645" width="0.0740%" height="15" fill="rgb(245,80,22)" fg:x="322034" fg:w="390"/><text x="61.3324%" y="655.50"></text></g><g><title>release_extent_buffer (108 samples, 0.02%)</title><rect x="61.1359%" y="629" width="0.0205%" height="15" fill="rgb(238,129,16)" fg:x="322316" fg:w="108"/><text x="61.3859%" y="639.50"></text></g><g><title>kmem_cache_alloc (136 samples, 0.03%)</title><rect x="61.1564%" y="645" width="0.0258%" height="15" fill="rgb(240,19,0)" fg:x="322424" fg:w="136"/><text x="61.4064%" y="655.50"></text></g><g><title>kmem_cache_free (118 samples, 0.02%)</title><rect x="61.1822%" y="645" width="0.0224%" height="15" fill="rgb(232,42,35)" fg:x="322560" fg:w="118"/><text x="61.4322%" y="655.50"></text></g><g><title>mutex_lock (95 samples, 0.02%)</title><rect x="61.2046%" y="645" width="0.0180%" height="15" fill="rgb(223,130,24)" fg:x="322678" fg:w="95"/><text x="61.4546%" y="655.50"></text></g><g><title>btrfs_del_dir_entries_in_log (4,744 samples, 0.90%)</title><rect x="60.3452%" y="661" width="0.8998%" height="15" fill="rgb(237,16,22)" fg:x="318147" fg:w="4744"/><text x="60.5952%" y="671.50"></text></g><g><title>mutex_unlock (118 samples, 0.02%)</title><rect x="61.2226%" y="645" width="0.0224%" height="15" fill="rgb(248,192,20)" fg:x="322773" fg:w="118"/><text x="61.4726%" y="655.50"></text></g><g><title>btrfs_get_32 (142 samples, 0.03%)</title><rect x="61.3592%" y="629" width="0.0269%" height="15" fill="rgb(233,167,2)" fg:x="323493" fg:w="142"/><text x="61.6092%" y="639.50"></text></g><g><title>btrfs_get_token_32 (1,200 samples, 0.23%)</title><rect x="61.3861%" y="629" width="0.2276%" height="15" fill="rgb(252,71,44)" fg:x="323635" fg:w="1200"/><text x="61.6361%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (170 samples, 0.03%)</title><rect x="61.5815%" y="613" width="0.0322%" height="15" fill="rgb(238,37,47)" fg:x="324665" fg:w="170"/><text x="61.8315%" y="623.50"></text></g><g><title>btrfs_mark_buffer_dirty (153 samples, 0.03%)</title><rect x="61.6137%" y="629" width="0.0290%" height="15" fill="rgb(214,202,54)" fg:x="324835" fg:w="153"/><text x="61.8637%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (106 samples, 0.02%)</title><rect x="61.6226%" y="613" width="0.0201%" height="15" fill="rgb(254,165,40)" fg:x="324882" fg:w="106"/><text x="61.8726%" y="623.50"></text></g><g><title>btrfs_set_token_32 (994 samples, 0.19%)</title><rect x="61.6428%" y="629" width="0.1885%" height="15" fill="rgb(246,173,38)" fg:x="324988" fg:w="994"/><text x="61.8928%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (178 samples, 0.03%)</title><rect x="61.7975%" y="613" width="0.0338%" height="15" fill="rgb(215,3,27)" fg:x="325804" fg:w="178"/><text x="62.0475%" y="623.50"></text></g><g><title>leaf_space_used (125 samples, 0.02%)</title><rect x="61.8313%" y="629" width="0.0237%" height="15" fill="rgb(239,169,51)" fg:x="325982" fg:w="125"/><text x="62.0813%" y="639.50"></text></g><g><title>btrfs_get_32 (93 samples, 0.02%)</title><rect x="61.8374%" y="613" width="0.0176%" height="15" fill="rgb(212,5,25)" fg:x="326014" fg:w="93"/><text x="62.0874%" y="623.50"></text></g><g><title>memcpy_extent_buffer (241 samples, 0.05%)</title><rect x="61.8550%" y="629" width="0.0457%" height="15" fill="rgb(243,45,17)" fg:x="326107" fg:w="241"/><text x="62.1050%" y="639.50"></text></g><g><title>memmove (168 samples, 0.03%)</title><rect x="61.8688%" y="613" width="0.0319%" height="15" fill="rgb(242,97,9)" fg:x="326180" fg:w="168"/><text x="62.1188%" y="623.50"></text></g><g><title>copy_pages (284 samples, 0.05%)</title><rect x="61.9273%" y="613" width="0.0539%" height="15" fill="rgb(228,71,31)" fg:x="326488" fg:w="284"/><text x="62.1773%" y="623.50"></text></g><g><title>btrfs_del_items (5,868 samples, 1.11%)</title><rect x="61.2607%" y="645" width="1.1130%" height="15" fill="rgb(252,184,16)" fg:x="322974" fg:w="5868"/><text x="61.5107%" y="655.50"></text></g><g><title>memmove_extent_buffer (2,494 samples, 0.47%)</title><rect x="61.9007%" y="629" width="0.4731%" height="15" fill="rgb(236,169,46)" fg:x="326348" fg:w="2494"/><text x="62.1507%" y="639.50"></text></g><g><title>memmove (2,070 samples, 0.39%)</title><rect x="61.9811%" y="613" width="0.3926%" height="15" fill="rgb(207,17,47)" fg:x="326772" fg:w="2070"/><text x="62.2311%" y="623.50"></text></g><g><title>btrfs_get_16 (205 samples, 0.04%)</title><rect x="62.3859%" y="629" width="0.0389%" height="15" fill="rgb(206,201,28)" fg:x="328906" fg:w="205"/><text x="62.6359%" y="639.50"></text></g><g><title>btrfs_get_32 (64 samples, 0.01%)</title><rect x="62.4248%" y="629" width="0.0121%" height="15" fill="rgb(224,184,23)" fg:x="329111" fg:w="64"/><text x="62.6748%" y="639.50"></text></g><g><title>btrfs_find_name_in_backref (457 samples, 0.09%)</title><rect x="62.3738%" y="645" width="0.0867%" height="15" fill="rgb(208,139,48)" fg:x="328842" fg:w="457"/><text x="62.6238%" y="655.50"></text></g><g><title>memcmp_extent_buffer (124 samples, 0.02%)</title><rect x="62.4369%" y="629" width="0.0235%" height="15" fill="rgb(208,130,10)" fg:x="329175" fg:w="124"/><text x="62.6869%" y="639.50"></text></g><g><title>memcmp (67 samples, 0.01%)</title><rect x="62.4477%" y="613" width="0.0127%" height="15" fill="rgb(211,213,45)" fg:x="329232" fg:w="67"/><text x="62.6977%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (236 samples, 0.04%)</title><rect x="62.4743%" y="613" width="0.0448%" height="15" fill="rgb(235,100,30)" fg:x="329372" fg:w="236"/><text x="62.7243%" y="623.50"></text></g><g><title>_raw_spin_lock (187 samples, 0.04%)</title><rect x="62.4836%" y="597" width="0.0355%" height="15" fill="rgb(206,144,31)" fg:x="329421" fg:w="187"/><text x="62.7336%" y="607.50"></text></g><g><title>btrfs_free_path (483 samples, 0.09%)</title><rect x="62.4605%" y="645" width="0.0916%" height="15" fill="rgb(224,200,26)" fg:x="329299" fg:w="483"/><text x="62.7105%" y="655.50"></text></g><g><title>btrfs_release_path (476 samples, 0.09%)</title><rect x="62.4618%" y="629" width="0.0903%" height="15" fill="rgb(247,104,53)" fg:x="329306" fg:w="476"/><text x="62.7118%" y="639.50"></text></g><g><title>release_extent_buffer (174 samples, 0.03%)</title><rect x="62.5191%" y="613" width="0.0330%" height="15" fill="rgb(220,14,17)" fg:x="329608" fg:w="174"/><text x="62.7691%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (86 samples, 0.02%)</title><rect x="62.6247%" y="613" width="0.0163%" height="15" fill="rgb(230,140,40)" fg:x="330165" fg:w="86"/><text x="62.8747%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (167 samples, 0.03%)</title><rect x="62.6230%" y="629" width="0.0317%" height="15" fill="rgb(229,2,41)" fg:x="330156" fg:w="167"/><text x="62.8730%" y="639.50"></text></g><g><title>btrfs_root_node (72 samples, 0.01%)</title><rect x="62.6410%" y="613" width="0.0137%" height="15" fill="rgb(232,89,16)" fg:x="330251" fg:w="72"/><text x="62.8910%" y="623.50"></text></g><g><title>_raw_write_lock (73 samples, 0.01%)</title><rect x="62.6810%" y="597" width="0.0138%" height="15" fill="rgb(247,59,52)" fg:x="330462" fg:w="73"/><text x="62.9310%" y="607.50"></text></g><g><title>__btrfs_tree_lock (192 samples, 0.04%)</title><rect x="62.6689%" y="613" width="0.0364%" height="15" fill="rgb(226,110,21)" fg:x="330398" fg:w="192"/><text x="62.9189%" y="623.50"></text></g><g><title>btrfs_lock_root_node (260 samples, 0.05%)</title><rect x="62.6666%" y="629" width="0.0493%" height="15" fill="rgb(224,176,43)" fg:x="330386" fg:w="260"/><text x="62.9166%" y="639.50"></text></g><g><title>btrfs_root_node (56 samples, 0.01%)</title><rect x="62.7053%" y="613" width="0.0106%" height="15" fill="rgb(221,73,6)" fg:x="330590" fg:w="56"/><text x="62.9553%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (64 samples, 0.01%)</title><rect x="62.7159%" y="629" width="0.0121%" height="15" fill="rgb(232,78,19)" fg:x="330646" fg:w="64"/><text x="62.9659%" y="639.50"></text></g><g><title>_raw_write_lock (112 samples, 0.02%)</title><rect x="62.7338%" y="613" width="0.0212%" height="15" fill="rgb(233,112,48)" fg:x="330740" fg:w="112"/><text x="62.9838%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (178 samples, 0.03%)</title><rect x="62.7281%" y="629" width="0.0338%" height="15" fill="rgb(243,131,47)" fg:x="330710" fg:w="178"/><text x="62.9781%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (66 samples, 0.01%)</title><rect x="62.7618%" y="629" width="0.0125%" height="15" fill="rgb(226,51,1)" fg:x="330888" fg:w="66"/><text x="63.0118%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,280 samples, 0.24%)</title><rect x="62.7744%" y="629" width="0.2428%" height="15" fill="rgb(247,58,7)" fg:x="330954" fg:w="1280"/><text x="63.0244%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (156 samples, 0.03%)</title><rect x="63.0460%" y="613" width="0.0296%" height="15" fill="rgb(209,7,32)" fg:x="332386" fg:w="156"/><text x="63.2960%" y="623.50"></text></g><g><title>verify_parent_transid (130 samples, 0.02%)</title><rect x="63.0509%" y="597" width="0.0247%" height="15" fill="rgb(209,39,41)" fg:x="332412" fg:w="130"/><text x="63.3009%" y="607.50"></text></g><g><title>btrfs_get_64 (144 samples, 0.03%)</title><rect x="63.0756%" y="613" width="0.0273%" height="15" fill="rgb(226,182,46)" fg:x="332542" fg:w="144"/><text x="63.3256%" y="623.50"></text></g><g><title>__radix_tree_lookup (605 samples, 0.11%)</title><rect x="63.1791%" y="597" width="0.1148%" height="15" fill="rgb(230,219,10)" fg:x="333088" fg:w="605"/><text x="63.4291%" y="607.50"></text></g><g><title>check_buffer_tree_ref (59 samples, 0.01%)</title><rect x="63.3039%" y="581" width="0.0112%" height="15" fill="rgb(227,175,30)" fg:x="333746" fg:w="59"/><text x="63.5539%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (348 samples, 0.07%)</title><rect x="63.2947%" y="597" width="0.0660%" height="15" fill="rgb(217,2,50)" fg:x="333697" fg:w="348"/><text x="63.5447%" y="607.50"></text></g><g><title>mark_page_accessed (240 samples, 0.05%)</title><rect x="63.3151%" y="581" width="0.0455%" height="15" fill="rgb(229,160,0)" fg:x="333805" fg:w="240"/><text x="63.5651%" y="591.50"></text></g><g><title>find_extent_buffer (1,318 samples, 0.25%)</title><rect x="63.1128%" y="613" width="0.2500%" height="15" fill="rgb(207,78,37)" fg:x="332738" fg:w="1318"/><text x="63.3628%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,953 samples, 0.37%)</title><rect x="63.0172%" y="629" width="0.3704%" height="15" fill="rgb(225,57,0)" fg:x="332234" fg:w="1953"/><text x="63.2672%" y="639.50"></text></g><g><title>read_extent_buffer (131 samples, 0.02%)</title><rect x="63.3627%" y="613" width="0.0248%" height="15" fill="rgb(232,154,2)" fg:x="334056" fg:w="131"/><text x="63.6127%" y="623.50"></text></g><g><title>btrfs_search_slot (4,528 samples, 0.86%)</title><rect x="62.5684%" y="645" width="0.8589%" height="15" fill="rgb(241,212,25)" fg:x="329868" fg:w="4528"/><text x="62.8184%" y="655.50"></text></g><g><title>unlock_up (170 samples, 0.03%)</title><rect x="63.3950%" y="629" width="0.0322%" height="15" fill="rgb(226,69,20)" fg:x="334226" fg:w="170"/><text x="63.6450%" y="639.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.03%)</title><rect x="63.4278%" y="645" width="0.0321%" height="15" fill="rgb(247,184,54)" fg:x="334399" fg:w="169"/><text x="63.6778%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (11,811 samples, 2.24%)</title><rect x="61.2450%" y="661" width="2.2403%" height="15" fill="rgb(210,145,0)" fg:x="322891" fg:w="11811"/><text x="61.4950%" y="671.50">b..</text></g><g><title>kmem_cache_free (134 samples, 0.03%)</title><rect x="63.4599%" y="645" width="0.0254%" height="15" fill="rgb(253,82,12)" fg:x="334568" fg:w="134"/><text x="63.7099%" y="655.50"></text></g><g><title>btrfs_del_items (140 samples, 0.03%)</title><rect x="63.5058%" y="629" width="0.0266%" height="15" fill="rgb(245,42,11)" fg:x="334810" fg:w="140"/><text x="63.7558%" y="639.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="63.5596%" y="581" width="0.0212%" height="15" fill="rgb(219,147,32)" fg:x="335094" fg:w="112"/><text x="63.8096%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (140 samples, 0.03%)</title><rect x="63.5545%" y="597" width="0.0266%" height="15" fill="rgb(246,12,7)" fg:x="335067" fg:w="140"/><text x="63.8045%" y="607.50"></text></g><g><title>btrfs_free_path (403 samples, 0.08%)</title><rect x="63.5333%" y="629" width="0.0764%" height="15" fill="rgb(243,50,9)" fg:x="334955" fg:w="403"/><text x="63.7833%" y="639.50"></text></g><g><title>btrfs_release_path (395 samples, 0.07%)</title><rect x="63.5348%" y="613" width="0.0749%" height="15" fill="rgb(219,149,6)" fg:x="334963" fg:w="395"/><text x="63.7848%" y="623.50"></text></g><g><title>release_extent_buffer (151 samples, 0.03%)</title><rect x="63.5811%" y="597" width="0.0286%" height="15" fill="rgb(241,51,42)" fg:x="335207" fg:w="151"/><text x="63.8311%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (106 samples, 0.02%)</title><rect x="63.6683%" y="597" width="0.0201%" height="15" fill="rgb(226,128,27)" fg:x="335667" fg:w="106"/><text x="63.9183%" y="607.50"></text></g><g><title>_raw_read_lock (70 samples, 0.01%)</title><rect x="63.6751%" y="581" width="0.0133%" height="15" fill="rgb(244,144,4)" fg:x="335703" fg:w="70"/><text x="63.9251%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (255 samples, 0.05%)</title><rect x="63.6645%" y="613" width="0.0484%" height="15" fill="rgb(221,4,13)" fg:x="335647" fg:w="255"/><text x="63.9145%" y="623.50"></text></g><g><title>btrfs_root_node (129 samples, 0.02%)</title><rect x="63.6884%" y="597" width="0.0245%" height="15" fill="rgb(208,170,28)" fg:x="335773" fg:w="129"/><text x="63.9384%" y="607.50"></text></g><g><title>__btrfs_tree_lock (122 samples, 0.02%)</title><rect x="63.7205%" y="597" width="0.0231%" height="15" fill="rgb(226,131,13)" fg:x="335942" fg:w="122"/><text x="63.9705%" y="607.50"></text></g><g><title>_raw_write_lock (64 samples, 0.01%)</title><rect x="63.7315%" y="581" width="0.0121%" height="15" fill="rgb(215,72,41)" fg:x="336000" fg:w="64"/><text x="63.9815%" y="591.50"></text></g><g><title>btrfs_lock_root_node (210 samples, 0.04%)</title><rect x="63.7180%" y="613" width="0.0398%" height="15" fill="rgb(243,108,20)" fg:x="335929" fg:w="210"/><text x="63.9680%" y="623.50"></text></g><g><title>btrfs_root_node (75 samples, 0.01%)</title><rect x="63.7436%" y="597" width="0.0142%" height="15" fill="rgb(230,189,17)" fg:x="336064" fg:w="75"/><text x="63.9936%" y="607.50"></text></g><g><title>btrfs_tree_read_unlock (59 samples, 0.01%)</title><rect x="63.7578%" y="613" width="0.0112%" height="15" fill="rgb(220,50,17)" fg:x="336139" fg:w="59"/><text x="64.0078%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (66 samples, 0.01%)</title><rect x="63.7690%" y="613" width="0.0125%" height="15" fill="rgb(248,152,48)" fg:x="336198" fg:w="66"/><text x="64.0190%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (80 samples, 0.02%)</title><rect x="63.7823%" y="613" width="0.0152%" height="15" fill="rgb(244,91,11)" fg:x="336268" fg:w="80"/><text x="64.0323%" y="623.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="63.7842%" y="597" width="0.0133%" height="15" fill="rgb(220,157,5)" fg:x="336278" fg:w="70"/><text x="64.0342%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (889 samples, 0.17%)</title><rect x="63.7975%" y="613" width="0.1686%" height="15" fill="rgb(253,137,8)" fg:x="336348" fg:w="889"/><text x="64.0475%" y="623.50"></text></g><g><title>btrfs_get_64 (72 samples, 0.01%)</title><rect x="63.9868%" y="597" width="0.0137%" height="15" fill="rgb(217,137,51)" fg:x="337346" fg:w="72"/><text x="64.2368%" y="607.50"></text></g><g><title>__radix_tree_lookup (304 samples, 0.06%)</title><rect x="64.0257%" y="581" width="0.0577%" height="15" fill="rgb(218,209,53)" fg:x="337551" fg:w="304"/><text x="64.2757%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (135 samples, 0.03%)</title><rect x="64.0833%" y="581" width="0.0256%" height="15" fill="rgb(249,137,25)" fg:x="337855" fg:w="135"/><text x="64.3333%" y="591.50"></text></g><g><title>mark_page_accessed (85 samples, 0.02%)</title><rect x="64.0928%" y="565" width="0.0161%" height="15" fill="rgb(239,155,26)" fg:x="337905" fg:w="85"/><text x="64.3428%" y="575.50"></text></g><g><title>find_extent_buffer (541 samples, 0.10%)</title><rect x="64.0073%" y="597" width="0.1026%" height="15" fill="rgb(227,85,46)" fg:x="337454" fg:w="541"/><text x="64.2573%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (842 samples, 0.16%)</title><rect x="63.9661%" y="613" width="0.1597%" height="15" fill="rgb(251,107,43)" fg:x="337237" fg:w="842"/><text x="64.2161%" y="623.50"></text></g><g><title>read_extent_buffer (84 samples, 0.02%)</title><rect x="64.1099%" y="597" width="0.0159%" height="15" fill="rgb(234,170,33)" fg:x="337995" fg:w="84"/><text x="64.3599%" y="607.50"></text></g><g><title>release_extent_buffer (62 samples, 0.01%)</title><rect x="64.1258%" y="613" width="0.0118%" height="15" fill="rgb(206,29,35)" fg:x="338079" fg:w="62"/><text x="64.3758%" y="623.50"></text></g><g><title>btrfs_search_slot (2,888 samples, 0.55%)</title><rect x="63.6103%" y="629" width="0.5478%" height="15" fill="rgb(227,138,25)" fg:x="335361" fg:w="2888"/><text x="63.8603%" y="639.50"></text></g><g><title>unlock_up (108 samples, 0.02%)</title><rect x="64.1376%" y="613" width="0.0205%" height="15" fill="rgb(249,131,35)" fg:x="338141" fg:w="108"/><text x="64.3876%" y="623.50"></text></g><g><title>crc32c (57 samples, 0.01%)</title><rect x="64.1581%" y="629" width="0.0108%" height="15" fill="rgb(239,6,40)" fg:x="338249" fg:w="57"/><text x="64.4081%" y="639.50"></text></g><g><title>memset_erms (85 samples, 0.02%)</title><rect x="64.1928%" y="613" width="0.0161%" height="15" fill="rgb(246,136,47)" fg:x="338432" fg:w="85"/><text x="64.4428%" y="623.50"></text></g><g><title>kmem_cache_alloc (251 samples, 0.05%)</title><rect x="64.1689%" y="629" width="0.0476%" height="15" fill="rgb(253,58,26)" fg:x="338306" fg:w="251"/><text x="64.4189%" y="639.50"></text></g><g><title>btrfs_del_inode_ref (3,944 samples, 0.75%)</title><rect x="63.4982%" y="645" width="0.7481%" height="15" fill="rgb(237,141,10)" fg:x="334770" fg:w="3944"/><text x="63.7482%" y="655.50"></text></g><g><title>kmem_cache_free (157 samples, 0.03%)</title><rect x="64.2165%" y="629" width="0.0298%" height="15" fill="rgb(234,156,12)" fg:x="338557" fg:w="157"/><text x="64.4665%" y="639.50"></text></g><g><title>mutex_lock (86 samples, 0.02%)</title><rect x="64.2527%" y="645" width="0.0163%" height="15" fill="rgb(243,224,36)" fg:x="338748" fg:w="86"/><text x="64.5027%" y="655.50"></text></g><g><title>btrfs_del_inode_ref_in_log (4,219 samples, 0.80%)</title><rect x="63.4853%" y="661" width="0.8002%" height="15" fill="rgb(205,229,51)" fg:x="334702" fg:w="4219"/><text x="63.7353%" y="671.50"></text></g><g><title>mutex_unlock (87 samples, 0.02%)</title><rect x="64.2690%" y="645" width="0.0165%" height="15" fill="rgb(223,189,4)" fg:x="338834" fg:w="87"/><text x="64.5190%" y="655.50"></text></g><g><title>_find_next_bit.constprop.0 (1,204 samples, 0.23%)</title><rect x="64.5625%" y="581" width="0.2284%" height="15" fill="rgb(249,167,54)" fg:x="340381" fg:w="1204"/><text x="64.8125%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (1,446 samples, 0.27%)</title><rect x="64.5317%" y="597" width="0.2743%" height="15" fill="rgb(218,34,28)" fg:x="340219" fg:w="1446"/><text x="64.7817%" y="607.50"></text></g><g><title>find_next_zero_bit (78 samples, 0.01%)</title><rect x="64.7912%" y="581" width="0.0148%" height="15" fill="rgb(232,109,42)" fg:x="341587" fg:w="78"/><text x="65.0412%" y="591.50"></text></g><g><title>__btrfs_add_free_space (1,461 samples, 0.28%)</title><rect x="64.5302%" y="613" width="0.2771%" height="15" fill="rgb(248,214,46)" fg:x="340211" fg:w="1461"/><text x="64.7802%" y="623.50"></text></g><g><title>btrfs_free_tree_block (1,525 samples, 0.29%)</title><rect x="64.5300%" y="629" width="0.2893%" height="15" fill="rgb(244,216,40)" fg:x="340210" fg:w="1525"/><text x="64.7800%" y="639.50"></text></g><g><title>btrfs_del_leaf (1,540 samples, 0.29%)</title><rect x="64.5296%" y="645" width="0.2921%" height="15" fill="rgb(231,226,31)" fg:x="340208" fg:w="1540"/><text x="64.7796%" y="655.50"></text></g><g><title>btrfs_get_32 (152 samples, 0.03%)</title><rect x="64.8217%" y="645" width="0.0288%" height="15" fill="rgb(238,38,43)" fg:x="341748" fg:w="152"/><text x="65.0717%" y="655.50"></text></g><g><title>btrfs_get_token_32 (3,583 samples, 0.68%)</title><rect x="64.8506%" y="645" width="0.6796%" height="15" fill="rgb(208,88,43)" fg:x="341900" fg:w="3583"/><text x="65.1006%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (509 samples, 0.10%)</title><rect x="65.4336%" y="629" width="0.0965%" height="15" fill="rgb(205,136,37)" fg:x="344974" fg:w="509"/><text x="65.6836%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (163 samples, 0.03%)</title><rect x="65.5302%" y="645" width="0.0309%" height="15" fill="rgb(237,34,14)" fg:x="345483" fg:w="163"/><text x="65.7802%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (97 samples, 0.02%)</title><rect x="65.5427%" y="629" width="0.0184%" height="15" fill="rgb(236,193,44)" fg:x="345549" fg:w="97"/><text x="65.7927%" y="639.50"></text></g><g><title>btrfs_set_token_32 (3,314 samples, 0.63%)</title><rect x="65.5619%" y="645" width="0.6286%" height="15" fill="rgb(231,48,10)" fg:x="345650" fg:w="3314"/><text x="65.8119%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (659 samples, 0.12%)</title><rect x="66.0655%" y="629" width="0.1250%" height="15" fill="rgb(213,141,34)" fg:x="348305" fg:w="659"/><text x="66.3155%" y="639.50"></text></g><g><title>leaf_space_used (144 samples, 0.03%)</title><rect x="66.1925%" y="645" width="0.0273%" height="15" fill="rgb(249,130,34)" fg:x="348975" fg:w="144"/><text x="66.4425%" y="655.50"></text></g><g><title>btrfs_get_32 (99 samples, 0.02%)</title><rect x="66.2011%" y="629" width="0.0188%" height="15" fill="rgb(219,42,41)" fg:x="349020" fg:w="99"/><text x="66.4511%" y="639.50"></text></g><g><title>copy_pages (77 samples, 0.01%)</title><rect x="66.2322%" y="629" width="0.0146%" height="15" fill="rgb(224,100,54)" fg:x="349184" fg:w="77"/><text x="66.4822%" y="639.50"></text></g><g><title>memcpy_extent_buffer (634 samples, 0.12%)</title><rect x="66.2199%" y="645" width="0.1203%" height="15" fill="rgb(229,200,27)" fg:x="349119" fg:w="634"/><text x="66.4699%" y="655.50"></text></g><g><title>memmove (492 samples, 0.09%)</title><rect x="66.2468%" y="629" width="0.0933%" height="15" fill="rgb(217,118,10)" fg:x="349261" fg:w="492"/><text x="66.4968%" y="639.50"></text></g><g><title>copy_pages (192 samples, 0.04%)</title><rect x="66.3591%" y="629" width="0.0364%" height="15" fill="rgb(206,22,3)" fg:x="349853" fg:w="192"/><text x="66.6091%" y="639.50"></text></g><g><title>memmove_extent_buffer (1,825 samples, 0.35%)</title><rect x="66.3401%" y="645" width="0.3462%" height="15" fill="rgb(232,163,46)" fg:x="349753" fg:w="1825"/><text x="66.5901%" y="655.50"></text></g><g><title>memmove (1,533 samples, 0.29%)</title><rect x="66.3955%" y="629" width="0.2908%" height="15" fill="rgb(206,95,13)" fg:x="350045" fg:w="1533"/><text x="66.6455%" y="639.50"></text></g><g><title>__push_leaf_left (99 samples, 0.02%)</title><rect x="66.6876%" y="629" width="0.0188%" height="15" fill="rgb(253,154,18)" fg:x="351585" fg:w="99"/><text x="66.9376%" y="639.50"></text></g><g><title>push_leaf_left (172 samples, 0.03%)</title><rect x="66.6863%" y="645" width="0.0326%" height="15" fill="rgb(219,32,23)" fg:x="351578" fg:w="172"/><text x="66.9363%" y="655.50"></text></g><g><title>__push_leaf_right (114 samples, 0.02%)</title><rect x="66.7198%" y="629" width="0.0216%" height="15" fill="rgb(230,191,45)" fg:x="351755" fg:w="114"/><text x="66.9698%" y="639.50"></text></g><g><title>push_leaf_right (151 samples, 0.03%)</title><rect x="66.7189%" y="645" width="0.0286%" height="15" fill="rgb(229,64,36)" fg:x="351750" fg:w="151"/><text x="66.9689%" y="655.50"></text></g><g><title>btrfs_del_items (12,993 samples, 2.46%)</title><rect x="64.2855%" y="661" width="2.4645%" height="15" fill="rgb(205,129,25)" fg:x="338921" fg:w="12993"/><text x="64.5355%" y="671.50">bt..</text></g><g><title>btrfs_comp_cpu_keys (82 samples, 0.02%)</title><rect x="66.7972%" y="629" width="0.0156%" height="15" fill="rgb(254,112,7)" fg:x="352163" fg:w="82"/><text x="67.0472%" y="639.50"></text></g><g><title>__btrfs_add_delayed_item (373 samples, 0.07%)</title><rect x="66.7601%" y="645" width="0.0707%" height="15" fill="rgb(226,53,48)" fg:x="351967" fg:w="373"/><text x="67.0101%" y="655.50"></text></g><g><title>rb_insert_color (95 samples, 0.02%)</title><rect x="66.8128%" y="629" width="0.0180%" height="15" fill="rgb(214,153,38)" fg:x="352245" fg:w="95"/><text x="67.0628%" y="639.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="66.8498%" y="629" width="0.0102%" height="15" fill="rgb(243,101,7)" fg:x="352440" fg:w="54"/><text x="67.0998%" y="639.50"></text></g><g><title>mutex_lock (60 samples, 0.01%)</title><rect x="66.8600%" y="629" width="0.0114%" height="15" fill="rgb(240,140,22)" fg:x="352494" fg:w="60"/><text x="67.1100%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (290 samples, 0.06%)</title><rect x="66.8308%" y="645" width="0.0550%" height="15" fill="rgb(235,114,2)" fg:x="352340" fg:w="290"/><text x="67.0808%" y="655.50"></text></g><g><title>mutex_unlock (76 samples, 0.01%)</title><rect x="66.8714%" y="629" width="0.0144%" height="15" fill="rgb(242,59,12)" fg:x="352554" fg:w="76"/><text x="67.1214%" y="639.50"></text></g><g><title>__mutex_lock.constprop.0 (770 samples, 0.15%)</title><rect x="66.8858%" y="645" width="0.1461%" height="15" fill="rgb(252,134,9)" fg:x="352630" fg:w="770"/><text x="67.1358%" y="655.50"></text></g><g><title>mutex_spin_on_owner (762 samples, 0.14%)</title><rect x="66.8873%" y="629" width="0.1445%" height="15" fill="rgb(236,4,44)" fg:x="352638" fg:w="762"/><text x="67.1373%" y="639.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (226 samples, 0.04%)</title><rect x="67.0320%" y="645" width="0.0429%" height="15" fill="rgb(254,172,41)" fg:x="353401" fg:w="226"/><text x="67.2820%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (198 samples, 0.04%)</title><rect x="67.0374%" y="629" width="0.0376%" height="15" fill="rgb(244,63,20)" fg:x="353429" fg:w="198"/><text x="67.2874%" y="639.50"></text></g><g><title>_raw_spin_lock (172 samples, 0.03%)</title><rect x="67.0423%" y="613" width="0.0326%" height="15" fill="rgb(250,73,31)" fg:x="353455" fg:w="172"/><text x="67.2923%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (104 samples, 0.02%)</title><rect x="67.0749%" y="645" width="0.0197%" height="15" fill="rgb(241,38,36)" fg:x="353627" fg:w="104"/><text x="67.3249%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (89 samples, 0.02%)</title><rect x="67.0778%" y="629" width="0.0169%" height="15" fill="rgb(245,211,2)" fg:x="353642" fg:w="89"/><text x="67.3278%" y="639.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="67.1214%" y="629" width="0.0104%" height="15" fill="rgb(206,120,28)" fg:x="353872" fg:w="55"/><text x="67.3714%" y="639.50"></text></g><g><title>kmem_cache_alloc_trace (229 samples, 0.04%)</title><rect x="67.0946%" y="645" width="0.0434%" height="15" fill="rgb(211,59,34)" fg:x="353731" fg:w="229"/><text x="67.3446%" y="655.50"></text></g><g><title>mutex_lock (121 samples, 0.02%)</title><rect x="67.1381%" y="645" width="0.0230%" height="15" fill="rgb(233,168,5)" fg:x="353960" fg:w="121"/><text x="67.3881%" y="655.50"></text></g><g><title>btrfs_delete_delayed_dir_index (2,275 samples, 0.43%)</title><rect x="66.7500%" y="661" width="0.4315%" height="15" fill="rgb(234,33,13)" fg:x="351914" fg:w="2275"/><text x="67.0000%" y="671.50"></text></g><g><title>mutex_unlock (108 samples, 0.02%)</title><rect x="67.1610%" y="645" width="0.0205%" height="15" fill="rgb(231,150,26)" fg:x="354081" fg:w="108"/><text x="67.4110%" y="655.50"></text></g><g><title>btrfs_get_16 (75 samples, 0.01%)</title><rect x="67.1910%" y="645" width="0.0142%" height="15" fill="rgb(217,191,4)" fg:x="354239" fg:w="75"/><text x="67.4410%" y="655.50"></text></g><g><title>btrfs_delete_one_dir_name (177 samples, 0.03%)</title><rect x="67.1815%" y="661" width="0.0336%" height="15" fill="rgb(246,198,38)" fg:x="354189" fg:w="177"/><text x="67.4315%" y="671.50"></text></g><g><title>btrfs_get_16 (113 samples, 0.02%)</title><rect x="67.2433%" y="629" width="0.0214%" height="15" fill="rgb(245,64,37)" fg:x="354515" fg:w="113"/><text x="67.4933%" y="639.50"></text></g><g><title>btrfs_get_32 (86 samples, 0.02%)</title><rect x="67.2648%" y="629" width="0.0163%" height="15" fill="rgb(250,30,36)" fg:x="354628" fg:w="86"/><text x="67.5148%" y="639.50"></text></g><g><title>btrfs_match_dir_item_name (462 samples, 0.09%)</title><rect x="67.2287%" y="645" width="0.0876%" height="15" fill="rgb(217,86,53)" fg:x="354438" fg:w="462"/><text x="67.4787%" y="655.50"></text></g><g><title>memcmp_extent_buffer (186 samples, 0.04%)</title><rect x="67.2811%" y="629" width="0.0353%" height="15" fill="rgb(228,157,16)" fg:x="354714" fg:w="186"/><text x="67.5311%" y="639.50"></text></g><g><title>memcmp (98 samples, 0.02%)</title><rect x="67.2978%" y="613" width="0.0186%" height="15" fill="rgb(217,59,31)" fg:x="354802" fg:w="98"/><text x="67.5478%" y="623.50"></text></g><g><title>_raw_read_lock (56 samples, 0.01%)</title><rect x="67.3816%" y="597" width="0.0106%" height="15" fill="rgb(237,138,41)" fg:x="355244" fg:w="56"/><text x="67.6316%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (89 samples, 0.02%)</title><rect x="67.3756%" y="613" width="0.0169%" height="15" fill="rgb(227,91,49)" fg:x="355212" fg:w="89"/><text x="67.6256%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (250 samples, 0.05%)</title><rect x="67.3727%" y="629" width="0.0474%" height="15" fill="rgb(247,21,44)" fg:x="355197" fg:w="250"/><text x="67.6227%" y="639.50"></text></g><g><title>btrfs_root_node (146 samples, 0.03%)</title><rect x="67.3924%" y="613" width="0.0277%" height="15" fill="rgb(219,210,51)" fg:x="355301" fg:w="146"/><text x="67.6424%" y="623.50"></text></g><g><title>__btrfs_tree_lock (139 samples, 0.03%)</title><rect x="67.4338%" y="613" width="0.0264%" height="15" fill="rgb(209,140,6)" fg:x="355519" fg:w="139"/><text x="67.6838%" y="623.50"></text></g><g><title>btrfs_lock_root_node (214 samples, 0.04%)</title><rect x="67.4309%" y="629" width="0.0406%" height="15" fill="rgb(221,188,24)" fg:x="355504" fg:w="214"/><text x="67.6809%" y="639.50"></text></g><g><title>btrfs_root_node (60 samples, 0.01%)</title><rect x="67.4601%" y="613" width="0.0114%" height="15" fill="rgb(232,154,20)" fg:x="355658" fg:w="60"/><text x="67.7101%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (60 samples, 0.01%)</title><rect x="67.4715%" y="629" width="0.0114%" height="15" fill="rgb(244,137,50)" fg:x="355718" fg:w="60"/><text x="67.7215%" y="639.50"></text></g><g><title>_raw_write_lock (90 samples, 0.02%)</title><rect x="67.4880%" y="613" width="0.0171%" height="15" fill="rgb(225,185,43)" fg:x="355805" fg:w="90"/><text x="67.7380%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (227 samples, 0.04%)</title><rect x="67.4829%" y="629" width="0.0431%" height="15" fill="rgb(213,205,38)" fg:x="355778" fg:w="227"/><text x="67.7329%" y="639.50"></text></g><g><title>queued_write_lock_slowpath (110 samples, 0.02%)</title><rect x="67.5051%" y="613" width="0.0209%" height="15" fill="rgb(236,73,12)" fg:x="355895" fg:w="110"/><text x="67.7551%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (98 samples, 0.02%)</title><rect x="67.5260%" y="629" width="0.0186%" height="15" fill="rgb(235,219,13)" fg:x="356005" fg:w="98"/><text x="67.7760%" y="639.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="67.5320%" y="613" width="0.0125%" height="15" fill="rgb(218,59,36)" fg:x="356037" fg:w="66"/><text x="67.7820%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (1,137 samples, 0.22%)</title><rect x="67.5446%" y="629" width="0.2157%" height="15" fill="rgb(205,110,39)" fg:x="356103" fg:w="1137"/><text x="67.7946%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (80 samples, 0.02%)</title><rect x="67.7928%" y="613" width="0.0152%" height="15" fill="rgb(218,206,42)" fg:x="357412" fg:w="80"/><text x="68.0428%" y="623.50"></text></g><g><title>verify_parent_transid (53 samples, 0.01%)</title><rect x="67.7980%" y="597" width="0.0101%" height="15" fill="rgb(248,125,24)" fg:x="357439" fg:w="53"/><text x="68.0480%" y="607.50"></text></g><g><title>btrfs_get_64 (121 samples, 0.02%)</title><rect x="67.8080%" y="613" width="0.0230%" height="15" fill="rgb(242,28,27)" fg:x="357492" fg:w="121"/><text x="68.0580%" y="623.50"></text></g><g><title>btrfs_verify_level_key (54 samples, 0.01%)</title><rect x="67.8329%" y="613" width="0.0102%" height="15" fill="rgb(216,228,15)" fg:x="357623" fg:w="54"/><text x="68.0829%" y="623.50"></text></g><g><title>__radix_tree_lookup (590 samples, 0.11%)</title><rect x="67.8822%" y="597" width="0.1119%" height="15" fill="rgb(235,116,46)" fg:x="357883" fg:w="590"/><text x="68.1322%" y="607.50"></text></g><g><title>check_buffer_tree_ref (69 samples, 0.01%)</title><rect x="68.0053%" y="581" width="0.0131%" height="15" fill="rgb(224,18,32)" fg:x="358532" fg:w="69"/><text x="68.2553%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (291 samples, 0.06%)</title><rect x="67.9943%" y="597" width="0.0552%" height="15" fill="rgb(252,5,12)" fg:x="358474" fg:w="291"/><text x="68.2443%" y="607.50"></text></g><g><title>mark_page_accessed (164 samples, 0.03%)</title><rect x="68.0184%" y="581" width="0.0311%" height="15" fill="rgb(251,36,5)" fg:x="358601" fg:w="164"/><text x="68.2684%" y="591.50"></text></g><g><title>find_extent_buffer (1,094 samples, 0.21%)</title><rect x="67.8431%" y="613" width="0.2075%" height="15" fill="rgb(217,53,14)" fg:x="357677" fg:w="1094"/><text x="68.0931%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,712 samples, 0.32%)</title><rect x="67.7602%" y="629" width="0.3247%" height="15" fill="rgb(215,86,45)" fg:x="357240" fg:w="1712"/><text x="68.0102%" y="639.50"></text></g><g><title>read_extent_buffer (181 samples, 0.03%)</title><rect x="68.0506%" y="613" width="0.0343%" height="15" fill="rgb(242,169,11)" fg:x="358771" fg:w="181"/><text x="68.3006%" y="623.50"></text></g><g><title>release_extent_buffer (66 samples, 0.01%)</title><rect x="68.0849%" y="629" width="0.0125%" height="15" fill="rgb(211,213,45)" fg:x="358952" fg:w="66"/><text x="68.3349%" y="639.50"></text></g><g><title>btrfs_search_slot (4,302 samples, 0.82%)</title><rect x="67.3164%" y="645" width="0.8160%" height="15" fill="rgb(205,88,11)" fg:x="354900" fg:w="4302"/><text x="67.5664%" y="655.50"></text></g><g><title>unlock_up (184 samples, 0.03%)</title><rect x="68.0975%" y="629" width="0.0349%" height="15" fill="rgb(252,69,26)" fg:x="359018" fg:w="184"/><text x="68.3475%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (4,850 samples, 0.92%)</title><rect x="67.2208%" y="661" width="0.9199%" height="15" fill="rgb(246,123,37)" fg:x="354396" fg:w="4850"/><text x="67.4708%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (234 samples, 0.04%)</title><rect x="68.1540%" y="645" width="0.0444%" height="15" fill="rgb(212,205,5)" fg:x="359316" fg:w="234"/><text x="68.4040%" y="655.50"></text></g><g><title>_raw_spin_lock (164 samples, 0.03%)</title><rect x="68.1673%" y="629" width="0.0311%" height="15" fill="rgb(253,148,0)" fg:x="359386" fg:w="164"/><text x="68.4173%" y="639.50"></text></g><g><title>btrfs_release_path (494 samples, 0.09%)</title><rect x="68.1407%" y="661" width="0.0937%" height="15" fill="rgb(239,22,4)" fg:x="359246" fg:w="494"/><text x="68.3907%" y="671.50"></text></g><g><title>release_extent_buffer (190 samples, 0.04%)</title><rect x="68.1984%" y="645" width="0.0360%" height="15" fill="rgb(226,26,53)" fg:x="359550" fg:w="190"/><text x="68.4484%" y="655.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="68.2756%" y="613" width="0.0123%" height="15" fill="rgb(225,229,45)" fg:x="359957" fg:w="65"/><text x="68.5256%" y="623.50"></text></g><g><title>mutex_lock (80 samples, 0.02%)</title><rect x="68.2879%" y="613" width="0.0152%" height="15" fill="rgb(220,60,37)" fg:x="360022" fg:w="80"/><text x="68.5379%" y="623.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (302 samples, 0.06%)</title><rect x="68.2568%" y="629" width="0.0573%" height="15" fill="rgb(217,180,35)" fg:x="359858" fg:w="302"/><text x="68.5068%" y="639.50"></text></g><g><title>mutex_unlock (58 samples, 0.01%)</title><rect x="68.3031%" y="613" width="0.0110%" height="15" fill="rgb(229,7,53)" fg:x="360102" fg:w="58"/><text x="68.5531%" y="623.50"></text></g><g><title>__mutex_lock.constprop.0 (65 samples, 0.01%)</title><rect x="68.3141%" y="629" width="0.0123%" height="15" fill="rgb(254,137,3)" fg:x="360160" fg:w="65"/><text x="68.5641%" y="639.50"></text></g><g><title>mutex_spin_on_owner (65 samples, 0.01%)</title><rect x="68.3141%" y="613" width="0.0123%" height="15" fill="rgb(215,140,41)" fg:x="360160" fg:w="65"/><text x="68.5641%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (92 samples, 0.02%)</title><rect x="68.3264%" y="629" width="0.0175%" height="15" fill="rgb(250,80,15)" fg:x="360225" fg:w="92"/><text x="68.5764%" y="639.50"></text></g><g><title>btrfs_get_delayed_node (83 samples, 0.02%)</title><rect x="68.3281%" y="613" width="0.0157%" height="15" fill="rgb(252,191,6)" fg:x="360234" fg:w="83"/><text x="68.5781%" y="623.50"></text></g><g><title>inode_get_bytes (77 samples, 0.01%)</title><rect x="68.3514%" y="613" width="0.0146%" height="15" fill="rgb(246,217,18)" fg:x="360357" fg:w="77"/><text x="68.6014%" y="623.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="68.3533%" y="597" width="0.0127%" height="15" fill="rgb(223,93,7)" fg:x="360367" fg:w="67"/><text x="68.6033%" y="607.50"></text></g><g><title>fill_stack_inode_item (149 samples, 0.03%)</title><rect x="68.3439%" y="629" width="0.0283%" height="15" fill="rgb(225,55,52)" fg:x="360317" fg:w="149"/><text x="68.5939%" y="639.50"></text></g><g><title>mutex_lock (69 samples, 0.01%)</title><rect x="68.3721%" y="629" width="0.0131%" height="15" fill="rgb(240,31,24)" fg:x="360466" fg:w="69"/><text x="68.6221%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (813 samples, 0.15%)</title><rect x="68.2494%" y="645" width="0.1542%" height="15" fill="rgb(205,56,52)" fg:x="359819" fg:w="813"/><text x="68.4994%" y="655.50"></text></g><g><title>mutex_unlock (97 samples, 0.02%)</title><rect x="68.3852%" y="629" width="0.0184%" height="15" fill="rgb(246,146,12)" fg:x="360535" fg:w="97"/><text x="68.6352%" y="639.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="68.4053%" y="629" width="0.0119%" height="15" fill="rgb(239,84,36)" fg:x="360641" fg:w="63"/><text x="68.6553%" y="639.50"></text></g><g><title>btrfs_update_inode (1,072 samples, 0.20%)</title><rect x="68.2344%" y="661" width="0.2033%" height="15" fill="rgb(207,41,40)" fg:x="359740" fg:w="1072"/><text x="68.4844%" y="671.50"></text></g><g><title>btrfs_update_root_times (180 samples, 0.03%)</title><rect x="68.4036%" y="645" width="0.0341%" height="15" fill="rgb(241,179,25)" fg:x="360632" fg:w="180"/><text x="68.6536%" y="655.50"></text></g><g><title>ktime_get_real_ts64 (108 samples, 0.02%)</title><rect x="68.4173%" y="629" width="0.0205%" height="15" fill="rgb(210,0,34)" fg:x="360704" fg:w="108"/><text x="68.6673%" y="639.50"></text></g><g><title>read_tsc (73 samples, 0.01%)</title><rect x="68.4239%" y="613" width="0.0138%" height="15" fill="rgb(225,217,29)" fg:x="360739" fg:w="73"/><text x="68.6739%" y="623.50"></text></g><g><title>current_time (56 samples, 0.01%)</title><rect x="68.4377%" y="661" width="0.0106%" height="15" fill="rgb(216,191,38)" fg:x="360812" fg:w="56"/><text x="68.6877%" y="671.50"></text></g><g><title>kmem_cache_alloc (160 samples, 0.03%)</title><rect x="68.4484%" y="661" width="0.0303%" height="15" fill="rgb(232,140,52)" fg:x="360868" fg:w="160"/><text x="68.6984%" y="671.50"></text></g><g><title>__btrfs_unlink_inode (43,467 samples, 8.24%)</title><rect x="60.2593%" y="677" width="8.2447%" height="15" fill="rgb(223,158,51)" fg:x="317694" fg:w="43467"/><text x="60.5093%" y="687.50">__btrfs_unl..</text></g><g><title>kmem_cache_free (133 samples, 0.03%)</title><rect x="68.4787%" y="661" width="0.0252%" height="15" fill="rgb(235,29,51)" fg:x="361028" fg:w="133"/><text x="68.7287%" y="671.50"></text></g><g><title>btrfs_balance_delayed_items (77 samples, 0.01%)</title><rect x="68.5115%" y="661" width="0.0146%" height="15" fill="rgb(215,181,18)" fg:x="361201" fg:w="77"/><text x="68.7615%" y="671.50"></text></g><g><title>ttwu_do_activate (82 samples, 0.02%)</title><rect x="68.5442%" y="613" width="0.0156%" height="15" fill="rgb(227,125,34)" fg:x="361373" fg:w="82"/><text x="68.7942%" y="623.50"></text></g><g><title>btrfs_btree_balance_dirty (312 samples, 0.06%)</title><rect x="68.5039%" y="677" width="0.0592%" height="15" fill="rgb(230,197,49)" fg:x="361161" fg:w="312"/><text x="68.7539%" y="687.50"></text></g><g><title>queue_work_on (183 samples, 0.03%)</title><rect x="68.5284%" y="661" width="0.0347%" height="15" fill="rgb(239,141,16)" fg:x="361290" fg:w="183"/><text x="68.7784%" y="671.50"></text></g><g><title>__queue_work (175 samples, 0.03%)</title><rect x="68.5299%" y="645" width="0.0332%" height="15" fill="rgb(225,105,43)" fg:x="361298" fg:w="175"/><text x="68.7799%" y="655.50"></text></g><g><title>try_to_wake_up (137 samples, 0.03%)</title><rect x="68.5371%" y="629" width="0.0260%" height="15" fill="rgb(214,131,14)" fg:x="361336" fg:w="137"/><text x="68.7871%" y="639.50"></text></g><g><title>mutex_lock (282 samples, 0.05%)</title><rect x="68.5682%" y="661" width="0.0535%" height="15" fill="rgb(229,177,11)" fg:x="361500" fg:w="282"/><text x="68.8182%" y="671.50"></text></g><g><title>btrfs_record_unlink_dir (417 samples, 0.08%)</title><rect x="68.5639%" y="677" width="0.0791%" height="15" fill="rgb(231,180,14)" fg:x="361477" fg:w="417"/><text x="68.8139%" y="687.50"></text></g><g><title>mutex_unlock (112 samples, 0.02%)</title><rect x="68.6217%" y="661" width="0.0212%" height="15" fill="rgb(232,88,2)" fg:x="361782" fg:w="112"/><text x="68.8717%" y="671.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="68.7416%" y="629" width="0.0135%" height="15" fill="rgb(205,220,8)" fg:x="362414" fg:w="71"/><text x="68.9916%" y="639.50"></text></g><g><title>mutex_lock (72 samples, 0.01%)</title><rect x="68.7551%" y="629" width="0.0137%" height="15" fill="rgb(225,23,53)" fg:x="362485" fg:w="72"/><text x="69.0051%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (429 samples, 0.08%)</title><rect x="68.6993%" y="645" width="0.0814%" height="15" fill="rgb(213,62,29)" fg:x="362191" fg:w="429"/><text x="68.9493%" y="655.50"></text></g><g><title>mutex_unlock (63 samples, 0.01%)</title><rect x="68.7687%" y="629" width="0.0119%" height="15" fill="rgb(227,75,7)" fg:x="362557" fg:w="63"/><text x="69.0187%" y="639.50"></text></g><g><title>btrfs_block_rsv_migrate (192 samples, 0.04%)</title><rect x="68.7809%" y="645" width="0.0364%" height="15" fill="rgb(207,105,14)" fg:x="362621" fg:w="192"/><text x="69.0309%" y="655.50"></text></g><g><title>_raw_spin_lock (156 samples, 0.03%)</title><rect x="68.7877%" y="629" width="0.0296%" height="15" fill="rgb(245,62,29)" fg:x="362657" fg:w="156"/><text x="69.0377%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (513 samples, 0.10%)</title><rect x="68.8173%" y="645" width="0.0973%" height="15" fill="rgb(236,202,4)" fg:x="362813" fg:w="513"/><text x="69.0673%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (492 samples, 0.09%)</title><rect x="68.8213%" y="629" width="0.0933%" height="15" fill="rgb(250,67,1)" fg:x="362834" fg:w="492"/><text x="69.0713%" y="639.50"></text></g><g><title>inode_get_bytes (75 samples, 0.01%)</title><rect x="68.9246%" y="629" width="0.0142%" height="15" fill="rgb(253,115,44)" fg:x="363379" fg:w="75"/><text x="69.1746%" y="639.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="68.9269%" y="613" width="0.0119%" height="15" fill="rgb(251,139,18)" fg:x="363391" fg:w="63"/><text x="69.1769%" y="623.50"></text></g><g><title>fill_stack_inode_item (164 samples, 0.03%)</title><rect x="68.9146%" y="645" width="0.0311%" height="15" fill="rgb(218,22,32)" fg:x="363326" fg:w="164"/><text x="69.1646%" y="655.50"></text></g><g><title>mutex_lock (103 samples, 0.02%)</title><rect x="68.9457%" y="645" width="0.0195%" height="15" fill="rgb(243,53,5)" fg:x="363490" fg:w="103"/><text x="69.1957%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (1,652 samples, 0.31%)</title><rect x="68.6595%" y="661" width="0.3133%" height="15" fill="rgb(227,56,16)" fg:x="361981" fg:w="1652"/><text x="68.9095%" y="671.50"></text></g><g><title>btrfs_update_inode (1,925 samples, 0.37%)</title><rect x="68.6435%" y="677" width="0.3651%" height="15" fill="rgb(245,53,0)" fg:x="361897" fg:w="1925"/><text x="68.8935%" y="687.50"></text></g><g><title>btrfs_update_root_times (189 samples, 0.04%)</title><rect x="68.9728%" y="661" width="0.0358%" height="15" fill="rgb(216,170,35)" fg:x="363633" fg:w="189"/><text x="69.2228%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (129 samples, 0.02%)</title><rect x="68.9842%" y="645" width="0.0245%" height="15" fill="rgb(211,200,8)" fg:x="363693" fg:w="129"/><text x="69.2342%" y="655.50"></text></g><g><title>read_tsc (84 samples, 0.02%)</title><rect x="68.9927%" y="629" width="0.0159%" height="15" fill="rgb(228,204,44)" fg:x="363738" fg:w="84"/><text x="69.2427%" y="639.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="69.0438%" y="645" width="0.0119%" height="15" fill="rgb(214,121,17)" fg:x="364007" fg:w="63"/><text x="69.2938%" y="655.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="69.0724%" y="613" width="0.0220%" height="15" fill="rgb(233,64,38)" fg:x="364158" fg:w="116"/><text x="69.3224%" y="623.50"></text></g><g><title>_raw_spin_lock (98 samples, 0.02%)</title><rect x="69.1623%" y="581" width="0.0186%" height="15" fill="rgb(253,54,19)" fg:x="364632" fg:w="98"/><text x="69.4123%" y="591.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (457 samples, 0.09%)</title><rect x="69.0944%" y="613" width="0.0867%" height="15" fill="rgb(253,94,18)" fg:x="364274" fg:w="457"/><text x="69.3444%" y="623.50"></text></g><g><title>btrfs_reduce_alloc_profile (250 samples, 0.05%)</title><rect x="69.1337%" y="597" width="0.0474%" height="15" fill="rgb(227,57,52)" fg:x="364481" fg:w="250"/><text x="69.3837%" y="607.50"></text></g><g><title>__reserve_bytes (879 samples, 0.17%)</title><rect x="69.0591%" y="629" width="0.1667%" height="15" fill="rgb(230,228,50)" fg:x="364088" fg:w="879"/><text x="69.3091%" y="639.50"></text></g><g><title>calc_available_free_space.isra.0 (236 samples, 0.04%)</title><rect x="69.1811%" y="613" width="0.0448%" height="15" fill="rgb(217,205,27)" fg:x="364731" fg:w="236"/><text x="69.4311%" y="623.50"></text></g><g><title>btrfs_reduce_alloc_profile (142 samples, 0.03%)</title><rect x="69.1989%" y="597" width="0.0269%" height="15" fill="rgb(252,71,50)" fg:x="364825" fg:w="142"/><text x="69.4489%" y="607.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="69.2139%" y="581" width="0.0119%" height="15" fill="rgb(209,86,4)" fg:x="364904" fg:w="63"/><text x="69.4639%" y="591.50"></text></g><g><title>btrfs_block_rsv_add (968 samples, 0.18%)</title><rect x="69.0424%" y="661" width="0.1836%" height="15" fill="rgb(229,94,0)" fg:x="364000" fg:w="968"/><text x="69.2924%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (898 samples, 0.17%)</title><rect x="69.0557%" y="645" width="0.1703%" height="15" fill="rgb(252,223,21)" fg:x="364070" fg:w="898"/><text x="69.3057%" y="655.50"></text></g><g><title>_raw_spin_lock (87 samples, 0.02%)</title><rect x="69.2704%" y="645" width="0.0165%" height="15" fill="rgb(230,210,4)" fg:x="365202" fg:w="87"/><text x="69.5204%" y="655.50"></text></g><g><title>join_transaction (306 samples, 0.06%)</title><rect x="69.2291%" y="661" width="0.0580%" height="15" fill="rgb(240,149,38)" fg:x="364984" fg:w="306"/><text x="69.4791%" y="671.50"></text></g><g><title>kmem_cache_alloc (151 samples, 0.03%)</title><rect x="69.2871%" y="661" width="0.0286%" height="15" fill="rgb(254,105,20)" fg:x="365290" fg:w="151"/><text x="69.5371%" y="671.50"></text></g><g><title>btrfs_unlink (48,473 samples, 9.19%)</title><rect x="60.1434%" y="693" width="9.1942%" height="15" fill="rgb(253,87,46)" fg:x="317083" fg:w="48473"/><text x="60.3934%" y="703.50">btrfs_unlink</text></g><g><title>start_transaction (1,731 samples, 0.33%)</title><rect x="69.0092%" y="677" width="0.3283%" height="15" fill="rgb(253,116,33)" fg:x="363825" fg:w="1731"/><text x="69.2592%" y="687.50"></text></g><g><title>wait_current_trans (115 samples, 0.02%)</title><rect x="69.3158%" y="661" width="0.0218%" height="15" fill="rgb(229,198,5)" fg:x="365441" fg:w="115"/><text x="69.5658%" y="671.50"></text></g><g><title>_raw_spin_lock (95 samples, 0.02%)</title><rect x="69.3196%" y="645" width="0.0180%" height="15" fill="rgb(242,38,37)" fg:x="365461" fg:w="95"/><text x="69.5696%" y="655.50"></text></g><g><title>d_delete (114 samples, 0.02%)</title><rect x="69.3376%" y="693" width="0.0216%" height="15" fill="rgb(242,69,53)" fg:x="365556" fg:w="114"/><text x="69.5876%" y="703.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.02%)</title><rect x="69.3398%" y="677" width="0.0193%" height="15" fill="rgb(249,80,16)" fg:x="365568" fg:w="102"/><text x="69.5898%" y="687.50"></text></g><g><title>down_write (454 samples, 0.09%)</title><rect x="69.3664%" y="693" width="0.0861%" height="15" fill="rgb(206,128,11)" fg:x="365708" fg:w="454"/><text x="69.6164%" y="703.50"></text></g><g><title>fsnotify (327 samples, 0.06%)</title><rect x="69.4525%" y="693" width="0.0620%" height="15" fill="rgb(212,35,20)" fg:x="366162" fg:w="327"/><text x="69.7025%" y="703.50"></text></g><g><title>_atomic_dec_and_lock (165 samples, 0.03%)</title><rect x="69.5307%" y="677" width="0.0313%" height="15" fill="rgb(236,79,13)" fg:x="366574" fg:w="165"/><text x="69.7807%" y="687.50"></text></g><g><title>iput.part.0 (191 samples, 0.04%)</title><rect x="69.5259%" y="693" width="0.0362%" height="15" fill="rgb(233,123,3)" fg:x="366549" fg:w="191"/><text x="69.7759%" y="703.50"></text></g><g><title>inode_permission.part.0 (69 samples, 0.01%)</title><rect x="69.5677%" y="677" width="0.0131%" height="15" fill="rgb(214,93,52)" fg:x="366769" fg:w="69"/><text x="69.8177%" y="687.50"></text></g><g><title>may_delete (106 samples, 0.02%)</title><rect x="69.5621%" y="693" width="0.0201%" height="15" fill="rgb(251,37,40)" fg:x="366740" fg:w="106"/><text x="69.8121%" y="703.50"></text></g><g><title>do_unlinkat (53,382 samples, 10.13%)</title><rect x="59.4738%" y="725" width="10.1253%" height="15" fill="rgb(227,80,54)" fg:x="313553" fg:w="53382"/><text x="59.7238%" y="735.50">do_unlinkat</text></g><g><title>vfs_unlink (50,050 samples, 9.49%)</title><rect x="60.1058%" y="709" width="9.4933%" height="15" fill="rgb(254,48,11)" fg:x="316885" fg:w="50050"/><text x="60.3558%" y="719.50">vfs_unlink</text></g><g><title>up_write (76 samples, 0.01%)</title><rect x="69.5847%" y="693" width="0.0144%" height="15" fill="rgb(235,193,26)" fg:x="366859" fg:w="76"/><text x="69.8347%" y="703.50"></text></g><g><title>do_syscall_64 (67,207 samples, 12.75%)</title><rect x="56.8544%" y="741" width="12.7476%" height="15" fill="rgb(229,99,21)" fg:x="299743" fg:w="67207"/><text x="57.1044%" y="751.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (67,315 samples, 12.77%)</title><rect x="56.8460%" y="757" width="12.7681%" height="15" fill="rgb(211,140,41)" fg:x="299699" fg:w="67315"/><text x="57.0960%" y="767.50">entry_SYSCALL_64_af..</text></g><g><title>syscall_exit_to_user_mode (64 samples, 0.01%)</title><rect x="69.6020%" y="741" width="0.0121%" height="15" fill="rgb(240,227,30)" fg:x="366950" fg:w="64"/><text x="69.8520%" y="751.50"></text></g><g><title>__GI_unlinkat (67,786 samples, 12.86%)</title><rect x="56.7703%" y="773" width="12.8574%" height="15" fill="rgb(215,224,45)" fg:x="299300" fg:w="67786"/><text x="57.0203%" y="783.50">__GI_unlinkat</text></g><g><title>syscall_return_via_sysret (66 samples, 0.01%)</title><rect x="69.6153%" y="757" width="0.0125%" height="15" fill="rgb(206,123,31)" fg:x="367020" fg:w="66"/><text x="69.8653%" y="767.50"></text></g><g><title>__closedir (70 samples, 0.01%)</title><rect x="69.6293%" y="773" width="0.0133%" height="15" fill="rgb(210,138,16)" fg:x="367094" fg:w="70"/><text x="69.8793%" y="783.50"></text></g><g><title>_int_free (55 samples, 0.01%)</title><rect x="69.6321%" y="757" width="0.0104%" height="15" fill="rgb(228,57,28)" fg:x="367109" fg:w="55"/><text x="69.8821%" y="767.50"></text></g><g><title>__GI___fcntl64_nocancel (72 samples, 0.01%)</title><rect x="69.6503%" y="757" width="0.0137%" height="15" fill="rgb(242,170,10)" fg:x="367205" fg:w="72"/><text x="69.9003%" y="767.50"></text></g><g><title>__fcntl64_nocancel_adjusted (69 samples, 0.01%)</title><rect x="69.6509%" y="741" width="0.0131%" height="15" fill="rgb(228,214,39)" fg:x="367208" fg:w="69"/><text x="69.9009%" y="751.50"></text></g><g><title>btrfs_getattr (62 samples, 0.01%)</title><rect x="69.6773%" y="677" width="0.0118%" height="15" fill="rgb(218,179,33)" fg:x="367347" fg:w="62"/><text x="69.9273%" y="687.50"></text></g><g><title>__do_sys_newfstat (143 samples, 0.03%)</title><rect x="69.6687%" y="709" width="0.0271%" height="15" fill="rgb(235,193,39)" fg:x="367302" fg:w="143"/><text x="69.9187%" y="719.50"></text></g><g><title>vfs_fstat (113 samples, 0.02%)</title><rect x="69.6744%" y="693" width="0.0214%" height="15" fill="rgb(219,221,36)" fg:x="367332" fg:w="113"/><text x="69.9244%" y="703.50"></text></g><g><title>do_syscall_64 (149 samples, 0.03%)</title><rect x="69.6682%" y="725" width="0.0283%" height="15" fill="rgb(248,218,19)" fg:x="367299" fg:w="149"/><text x="69.9182%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (157 samples, 0.03%)</title><rect x="69.6672%" y="741" width="0.0298%" height="15" fill="rgb(205,50,9)" fg:x="367294" fg:w="157"/><text x="69.9172%" y="751.50"></text></g><g><title>__GI___fxstat (178 samples, 0.03%)</title><rect x="69.6640%" y="757" width="0.0338%" height="15" fill="rgb(238,81,28)" fg:x="367277" fg:w="178"/><text x="69.9140%" y="767.50"></text></g><g><title>__GI___fcntl64_nocancel (55 samples, 0.01%)</title><rect x="69.6981%" y="741" width="0.0104%" height="15" fill="rgb(235,110,19)" fg:x="367457" fg:w="55"/><text x="69.9481%" y="751.50"></text></g><g><title>__fcntl64_nocancel_adjusted (54 samples, 0.01%)</title><rect x="69.6983%" y="725" width="0.0102%" height="15" fill="rgb(214,7,14)" fg:x="367458" fg:w="54"/><text x="69.9483%" y="735.50"></text></g><g><title>malloc_consolidate (67 samples, 0.01%)</title><rect x="69.7289%" y="709" width="0.0127%" height="15" fill="rgb(211,77,3)" fg:x="367619" fg:w="67"/><text x="69.9789%" y="719.50"></text></g><g><title>__GI___libc_malloc (179 samples, 0.03%)</title><rect x="69.7086%" y="741" width="0.0340%" height="15" fill="rgb(229,5,9)" fg:x="367512" fg:w="179"/><text x="69.9586%" y="751.50"></text></g><g><title>_int_malloc (138 samples, 0.03%)</title><rect x="69.7164%" y="725" width="0.0262%" height="15" fill="rgb(225,90,11)" fg:x="367553" fg:w="138"/><text x="69.9664%" y="735.50"></text></g><g><title>__fdopendir (489 samples, 0.09%)</title><rect x="69.6502%" y="773" width="0.0928%" height="15" fill="rgb(242,56,8)" fg:x="367204" fg:w="489"/><text x="69.9002%" y="783.50"></text></g><g><title>__alloc_dir (238 samples, 0.05%)</title><rect x="69.6978%" y="757" width="0.0451%" height="15" fill="rgb(249,212,39)" fg:x="367455" fg:w="238"/><text x="69.9478%" y="767.50"></text></g><g><title>memcg_slab_post_alloc_hook (61 samples, 0.01%)</title><rect x="69.7826%" y="613" width="0.0116%" height="15" fill="rgb(236,90,9)" fg:x="367902" fg:w="61"/><text x="70.0326%" y="623.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.03%)</title><rect x="69.7755%" y="629" width="0.0321%" height="15" fill="rgb(206,88,35)" fg:x="367865" fg:w="169"/><text x="70.0255%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (63 samples, 0.01%)</title><rect x="69.7956%" y="613" width="0.0119%" height="15" fill="rgb(205,126,30)" fg:x="367971" fg:w="63"/><text x="70.0456%" y="623.50"></text></g><g><title>__alloc_file (227 samples, 0.04%)</title><rect x="69.7744%" y="645" width="0.0431%" height="15" fill="rgb(230,176,12)" fg:x="367859" fg:w="227"/><text x="70.0244%" y="655.50"></text></g><g><title>alloc_empty_file (237 samples, 0.04%)</title><rect x="69.7727%" y="661" width="0.0450%" height="15" fill="rgb(243,19,9)" fg:x="367850" fg:w="237"/><text x="70.0227%" y="671.50"></text></g><g><title>btrfs_opendir (104 samples, 0.02%)</title><rect x="69.8322%" y="645" width="0.0197%" height="15" fill="rgb(245,171,17)" fg:x="368164" fg:w="104"/><text x="70.0822%" y="655.50"></text></g><g><title>kmem_cache_alloc_trace (94 samples, 0.02%)</title><rect x="69.8341%" y="629" width="0.0178%" height="15" fill="rgb(227,52,21)" fg:x="368174" fg:w="94"/><text x="70.0841%" y="639.50"></text></g><g><title>do_dentry_open (244 samples, 0.05%)</title><rect x="69.8233%" y="661" width="0.0463%" height="15" fill="rgb(238,69,14)" fg:x="368117" fg:w="244"/><text x="70.0733%" y="671.50"></text></g><g><title>security_file_open (55 samples, 0.01%)</title><rect x="69.8592%" y="645" width="0.0104%" height="15" fill="rgb(241,156,39)" fg:x="368306" fg:w="55"/><text x="70.1092%" y="655.50"></text></g><g><title>lookup_fast (78 samples, 0.01%)</title><rect x="69.8715%" y="661" width="0.0148%" height="15" fill="rgb(212,227,28)" fg:x="368371" fg:w="78"/><text x="70.1215%" y="671.50"></text></g><g><title>__d_lookup_rcu (72 samples, 0.01%)</title><rect x="69.8727%" y="645" width="0.0137%" height="15" fill="rgb(209,118,27)" fg:x="368377" fg:w="72"/><text x="70.1227%" y="655.50"></text></g><g><title>do_filp_open (709 samples, 0.13%)</title><rect x="69.7676%" y="693" width="0.1345%" height="15" fill="rgb(226,102,5)" fg:x="367823" fg:w="709"/><text x="70.0176%" y="703.50"></text></g><g><title>path_openat (699 samples, 0.13%)</title><rect x="69.7695%" y="677" width="0.1326%" height="15" fill="rgb(223,34,3)" fg:x="367833" fg:w="699"/><text x="70.0195%" y="687.50"></text></g><g><title>kmem_cache_alloc (57 samples, 0.01%)</title><rect x="69.9070%" y="677" width="0.0108%" height="15" fill="rgb(221,81,38)" fg:x="368558" fg:w="57"/><text x="70.1570%" y="687.50"></text></g><g><title>getname_flags.part.0 (116 samples, 0.02%)</title><rect x="69.9058%" y="693" width="0.0220%" height="15" fill="rgb(236,219,28)" fg:x="368552" fg:w="116"/><text x="70.1558%" y="703.50"></text></g><g><title>strncpy_from_user (53 samples, 0.01%)</title><rect x="69.9178%" y="677" width="0.0101%" height="15" fill="rgb(213,200,14)" fg:x="368615" fg:w="53"/><text x="70.1678%" y="687.50"></text></g><g><title>do_syscall_64 (938 samples, 0.18%)</title><rect x="69.7549%" y="741" width="0.1779%" height="15" fill="rgb(240,33,19)" fg:x="367756" fg:w="938"/><text x="70.0049%" y="751.50"></text></g><g><title>__x64_sys_openat (931 samples, 0.18%)</title><rect x="69.7562%" y="725" width="0.1766%" height="15" fill="rgb(233,113,27)" fg:x="367763" fg:w="931"/><text x="70.0062%" y="735.50"></text></g><g><title>do_sys_openat2 (925 samples, 0.18%)</title><rect x="69.7573%" y="709" width="0.1755%" height="15" fill="rgb(220,221,18)" fg:x="367769" fg:w="925"/><text x="70.0073%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (950 samples, 0.18%)</title><rect x="69.7539%" y="757" width="0.1802%" height="15" fill="rgb(238,92,8)" fg:x="367751" fg:w="950"/><text x="70.0039%" y="767.50"></text></g><g><title>__libc_openat64 (999 samples, 0.19%)</title><rect x="69.7461%" y="773" width="0.1895%" height="15" fill="rgb(222,164,16)" fg:x="367710" fg:w="999"/><text x="69.9961%" y="783.50"></text></g><g><title>_int_free (325 samples, 0.06%)</title><rect x="69.9489%" y="773" width="0.0616%" height="15" fill="rgb(241,119,3)" fg:x="368779" fg:w="325"/><text x="70.1989%" y="783.50"></text></g><g><title>free@plt (85 samples, 0.02%)</title><rect x="70.0164%" y="773" width="0.0161%" height="15" fill="rgb(241,44,8)" fg:x="369135" fg:w="85"/><text x="70.2664%" y="783.50"></text></g><g><title>jni_ExceptionOccurred (73 samples, 0.01%)</title><rect x="70.0325%" y="773" width="0.0138%" height="15" fill="rgb(230,36,40)" fg:x="369220" fg:w="73"/><text x="70.2825%" y="783.50"></text></g><g><title>HandleMark::pop_and_restore (80 samples, 0.02%)</title><rect x="70.1175%" y="757" width="0.0152%" height="15" fill="rgb(243,16,36)" fg:x="369668" fg:w="80"/><text x="70.3675%" y="767.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (676 samples, 0.13%)</title><rect x="70.1374%" y="757" width="0.1282%" height="15" fill="rgb(231,4,26)" fg:x="369773" fg:w="676"/><text x="70.3874%" y="767.50"></text></g><g><title>ThreadStateTransition::transition_from_native (539 samples, 0.10%)</title><rect x="70.2657%" y="757" width="0.1022%" height="15" fill="rgb(240,9,31)" fg:x="370449" fg:w="539"/><text x="70.5157%" y="767.50"></text></g><g><title>[libc-2.31.so] (242 samples, 0.05%)</title><rect x="70.3679%" y="757" width="0.0459%" height="15" fill="rgb(207,173,15)" fg:x="370988" fg:w="242"/><text x="70.6179%" y="767.50"></text></g><g><title>check_bounds (298 samples, 0.06%)</title><rect x="70.4138%" y="757" width="0.0565%" height="15" fill="rgb(224,192,53)" fg:x="371230" fg:w="298"/><text x="70.6638%" y="767.50"></text></g><g><title>jni_GetByteArrayRegion (2,259 samples, 0.43%)</title><rect x="70.0472%" y="773" width="0.4285%" height="15" fill="rgb(223,67,28)" fg:x="369297" fg:w="2259"/><text x="70.2972%" y="783.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (402 samples, 0.08%)</title><rect x="70.5760%" y="741" width="0.0763%" height="15" fill="rgb(211,20,47)" fg:x="372085" fg:w="402"/><text x="70.8260%" y="751.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (337 samples, 0.06%)</title><rect x="70.5883%" y="725" width="0.0639%" height="15" fill="rgb(240,228,2)" fg:x="372150" fg:w="337"/><text x="70.8383%" y="735.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (527 samples, 0.10%)</title><rect x="70.5536%" y="757" width="0.1000%" height="15" fill="rgb(248,151,12)" fg:x="371967" fg:w="527"/><text x="70.8036%" y="767.50"></text></g><g><title>HandleMark::pop_and_restore (160 samples, 0.03%)</title><rect x="70.6536%" y="757" width="0.0303%" height="15" fill="rgb(244,8,39)" fg:x="372494" fg:w="160"/><text x="70.9036%" y="767.50"></text></g><g><title>JNIHandles::make_local (255 samples, 0.05%)</title><rect x="70.6839%" y="757" width="0.0484%" height="15" fill="rgb(222,26,8)" fg:x="372654" fg:w="255"/><text x="70.9339%" y="767.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (451 samples, 0.09%)</title><rect x="70.7366%" y="757" width="0.0855%" height="15" fill="rgb(213,106,44)" fg:x="372932" fg:w="451"/><text x="70.9866%" y="767.50"></text></g><g><title>ThreadStateTransition::transition_from_native (514 samples, 0.10%)</title><rect x="70.8222%" y="757" width="0.0975%" height="15" fill="rgb(214,129,20)" fg:x="373383" fg:w="514"/><text x="71.0722%" y="767.50"></text></g><g><title>jni_GetObjectField (2,340 samples, 0.44%)</title><rect x="70.4760%" y="773" width="0.4438%" height="15" fill="rgb(212,32,13)" fg:x="371558" fg:w="2340"/><text x="70.7260%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (422 samples, 0.08%)</title><rect x="70.9897%" y="757" width="0.0800%" height="15" fill="rgb(208,168,33)" fg:x="374266" fg:w="422"/><text x="71.2397%" y="767.50"></text></g><g><title>jni_GetStringLength (1,548 samples, 0.29%)</title><rect x="70.9199%" y="773" width="0.2936%" height="15" fill="rgb(231,207,8)" fg:x="373898" fg:w="1548"/><text x="71.1699%" y="783.50"></text></g><g><title>ThreadStateTransition::transition_from_native (758 samples, 0.14%)</title><rect x="71.0697%" y="757" width="0.1438%" height="15" fill="rgb(235,219,23)" fg:x="374688" fg:w="758"/><text x="71.3197%" y="767.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (120 samples, 0.02%)</title><rect x="71.4853%" y="709" width="0.0228%" height="15" fill="rgb(226,216,26)" fg:x="376879" fg:w="120"/><text x="71.7353%" y="719.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (132 samples, 0.03%)</title><rect x="71.5080%" y="709" width="0.0250%" height="15" fill="rgb(239,137,16)" fg:x="376999" fg:w="132"/><text x="71.7580%" y="719.50"></text></g><g><title>[libc-2.31.so] (116 samples, 0.02%)</title><rect x="71.5579%" y="693" width="0.0220%" height="15" fill="rgb(207,12,36)" fg:x="377262" fg:w="116"/><text x="71.8079%" y="703.50"></text></g><g><title>ObjAllocator::initialize (275 samples, 0.05%)</title><rect x="71.5337%" y="709" width="0.0522%" height="15" fill="rgb(210,214,24)" fg:x="377134" fg:w="275"/><text x="71.7837%" y="719.50"></text></g><g><title>__tls_get_addr (65 samples, 0.01%)</title><rect x="71.5860%" y="709" width="0.0123%" height="15" fill="rgb(206,56,30)" fg:x="377410" fg:w="65"/><text x="71.8360%" y="719.50"></text></g><g><title>MemAllocator::allocate (815 samples, 0.15%)</title><rect x="71.4468%" y="725" width="0.1546%" height="15" fill="rgb(228,143,26)" fg:x="376676" fg:w="815"/><text x="71.6968%" y="735.50"></text></g><g><title>InstanceKlass::allocate_instance (1,256 samples, 0.24%)</title><rect x="71.3637%" y="757" width="0.2382%" height="15" fill="rgb(216,218,46)" fg:x="376238" fg:w="1256"/><text x="71.6137%" y="767.50"></text></g><g><title>CollectedHeap::obj_allocate (870 samples, 0.17%)</title><rect x="71.4369%" y="741" width="0.1650%" height="15" fill="rgb(206,6,19)" fg:x="376624" fg:w="870"/><text x="71.6869%" y="751.50"></text></g><g><title>JNIHandles::make_local (197 samples, 0.04%)</title><rect x="71.6025%" y="757" width="0.0374%" height="15" fill="rgb(239,177,51)" fg:x="377497" fg:w="197"/><text x="71.8525%" y="767.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (324 samples, 0.06%)</title><rect x="71.6516%" y="757" width="0.0615%" height="15" fill="rgb(216,55,25)" fg:x="377756" fg:w="324"/><text x="71.9016%" y="767.50"></text></g><g><title>ThreadStateTransition::transition_from_native (427 samples, 0.08%)</title><rect x="71.7131%" y="757" width="0.0810%" height="15" fill="rgb(231,163,29)" fg:x="378080" fg:w="427"/><text x="71.9631%" y="767.50"></text></g><g><title>InstanceKlass::check_valid_for_instantiation (79 samples, 0.01%)</title><rect x="71.8914%" y="741" width="0.0150%" height="15" fill="rgb(232,149,50)" fg:x="379020" fg:w="79"/><text x="72.1414%" y="751.50"></text></g><g><title>InstanceKlass::initialize (75 samples, 0.01%)</title><rect x="71.9064%" y="741" width="0.0142%" height="15" fill="rgb(223,142,48)" fg:x="379099" fg:w="75"/><text x="72.1564%" y="751.50"></text></g><g><title>alloc_object (779 samples, 0.15%)</title><rect x="71.7941%" y="757" width="0.1478%" height="15" fill="rgb(245,83,23)" fg:x="378507" fg:w="779"/><text x="72.0441%" y="767.50"></text></g><g><title>oopDesc::metadata_field (95 samples, 0.02%)</title><rect x="71.9238%" y="741" width="0.0180%" height="15" fill="rgb(224,63,2)" fg:x="379191" fg:w="95"/><text x="72.1738%" y="751.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (1,218 samples, 0.23%)</title><rect x="72.0788%" y="741" width="0.2310%" height="15" fill="rgb(218,65,53)" fg:x="380008" fg:w="1218"/><text x="72.3288%" y="751.50"></text></g><g><title>HandleMark::~HandleMark (66 samples, 0.01%)</title><rect x="72.4481%" y="725" width="0.0125%" height="15" fill="rgb(221,84,29)" fg:x="381955" fg:w="66"/><text x="72.6981%" y="735.50"></text></g><g><title>JNIHandleBlock::release_block (120 samples, 0.02%)</title><rect x="72.4616%" y="725" width="0.0228%" height="15" fill="rgb(234,0,32)" fg:x="382026" fg:w="120"/><text x="72.7116%" y="735.50"></text></g><g><title>JavaCallArguments::parameters (292 samples, 0.06%)</title><rect x="72.4843%" y="725" width="0.0554%" height="15" fill="rgb(206,20,16)" fg:x="382146" fg:w="292"/><text x="72.7343%" y="735.50"></text></g><g><title>JNIHandleBlock::allocate_block (89 samples, 0.02%)</title><rect x="72.6592%" y="709" width="0.0169%" height="15" fill="rgb(244,172,18)" fg:x="383068" fg:w="89"/><text x="72.9092%" y="719.50"></text></g><g><title>ThreadShadow::clear_pending_exception (100 samples, 0.02%)</title><rect x="72.6766%" y="709" width="0.0190%" height="15" fill="rgb(254,133,1)" fg:x="383160" fg:w="100"/><text x="72.9266%" y="719.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (823 samples, 0.16%)</title><rect x="72.5397%" y="725" width="0.1561%" height="15" fill="rgb(222,206,41)" fg:x="382438" fg:w="823"/><text x="72.7897%" y="735.50"></text></g><g><title>JavaCalls::call_helper (2,335 samples, 0.44%)</title><rect x="72.3138%" y="741" width="0.4429%" height="15" fill="rgb(212,3,42)" fg:x="381247" fg:w="2335"/><text x="72.5638%" y="751.50"></text></g><g><title>os::stack_shadow_pages_available (295 samples, 0.06%)</title><rect x="72.7007%" y="725" width="0.0560%" height="15" fill="rgb(241,11,4)" fg:x="383287" fg:w="295"/><text x="72.9507%" y="735.50"></text></g><g><title>methodHandle::operator= (93 samples, 0.02%)</title><rect x="72.7612%" y="741" width="0.0176%" height="15" fill="rgb(205,19,26)" fg:x="383606" fg:w="93"/><text x="73.0112%" y="751.50"></text></g><g><title>methodHandle::~methodHandle (329 samples, 0.06%)</title><rect x="72.7789%" y="741" width="0.0624%" height="15" fill="rgb(210,179,32)" fg:x="383699" fg:w="329"/><text x="73.0289%" y="751.50"></text></g><g><title>jni_invoke_nonstatic (4,956 samples, 0.94%)</title><rect x="71.9420%" y="757" width="0.9400%" height="15" fill="rgb(227,116,49)" fg:x="379287" fg:w="4956"/><text x="72.1920%" y="767.50"></text></g><g><title>resource_allocate_bytes (195 samples, 0.04%)</title><rect x="72.8451%" y="741" width="0.0370%" height="15" fill="rgb(211,146,6)" fg:x="384048" fg:w="195"/><text x="73.0951%" y="751.50"></text></g><g><title>jni_NewObjectV (8,804 samples, 1.67%)</title><rect x="71.2150%" y="773" width="1.6699%" height="15" fill="rgb(219,44,39)" fg:x="375454" fg:w="8804"/><text x="71.4650%" y="783.50"></text></g><g><title>operator delete@plt (216 samples, 0.04%)</title><rect x="72.8991%" y="773" width="0.0410%" height="15" fill="rgb(234,128,11)" fg:x="384333" fg:w="216"/><text x="73.1491%" y="783.50"></text></g><g><title>operator delete[] (62 samples, 0.01%)</title><rect x="72.9401%" y="773" width="0.0118%" height="15" fill="rgb(220,183,53)" fg:x="384549" fg:w="62"/><text x="73.1901%" y="783.50"></text></g><g><title>__GI___libc_malloc (309 samples, 0.06%)</title><rect x="72.9541%" y="757" width="0.0586%" height="15" fill="rgb(213,219,32)" fg:x="384623" fg:w="309"/><text x="73.2041%" y="767.50"></text></g><g><title>tcache_get (157 samples, 0.03%)</title><rect x="72.9830%" y="741" width="0.0298%" height="15" fill="rgb(232,156,16)" fg:x="384775" fg:w="157"/><text x="73.2330%" y="751.50"></text></g><g><title>operator new (367 samples, 0.07%)</title><rect x="72.9519%" y="773" width="0.0696%" height="15" fill="rgb(246,135,34)" fg:x="384611" fg:w="367"/><text x="73.2019%" y="783.50"></text></g><g><title>_int_malloc (108 samples, 0.02%)</title><rect x="73.0581%" y="725" width="0.0205%" height="15" fill="rgb(241,99,0)" fg:x="385171" fg:w="108"/><text x="73.3081%" y="735.50"></text></g><g><title>__GI___libc_malloc (236 samples, 0.04%)</title><rect x="73.0387%" y="741" width="0.0448%" height="15" fill="rgb(222,103,45)" fg:x="385069" fg:w="236"/><text x="73.2887%" y="751.50"></text></g><g><title>operator new (248 samples, 0.05%)</title><rect x="73.0380%" y="757" width="0.0470%" height="15" fill="rgb(212,57,4)" fg:x="385065" fg:w="248"/><text x="73.2880%" y="767.50"></text></g><g><title>[libunix_jni.so] (244,329 samples, 46.34%)</title><rect x="26.7448%" y="789" width="46.3436%" height="15" fill="rgb(215,68,47)" fg:x="141002" fg:w="244329"/><text x="26.9948%" y="799.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (275 samples, 0.05%)</title><rect x="73.0363%" y="773" width="0.0522%" height="15" fill="rgb(230,84,2)" fg:x="385056" fg:w="275"/><text x="73.2863%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (66 samples, 0.01%)</title><rect x="86.3838%" y="741" width="0.0125%" height="15" fill="rgb(220,102,14)" fg:x="455426" fg:w="66"/><text x="86.6338%" y="751.50"></text></g><g><title>InterpreterRuntime::_new (116 samples, 0.02%)</title><rect x="86.3753%" y="773" width="0.0220%" height="15" fill="rgb(240,10,32)" fg:x="455381" fg:w="116"/><text x="86.6253%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (72 samples, 0.01%)</title><rect x="86.3837%" y="757" width="0.0137%" height="15" fill="rgb(215,47,27)" fg:x="455425" fg:w="72"/><text x="86.6337%" y="767.50"></text></g><g><title>CollectedHeap::array_allocate (61 samples, 0.01%)</title><rect x="86.4077%" y="741" width="0.0116%" height="15" fill="rgb(233,188,43)" fg:x="455552" fg:w="61"/><text x="86.6577%" y="751.50"></text></g><g><title>MemAllocator::allocate (61 samples, 0.01%)</title><rect x="86.4077%" y="725" width="0.0116%" height="15" fill="rgb(253,190,1)" fg:x="455552" fg:w="61"/><text x="86.6577%" y="735.50"></text></g><g><title>InstanceKlass::allocate_objArray (103 samples, 0.02%)</title><rect x="86.4036%" y="757" width="0.0195%" height="15" fill="rgb(206,114,52)" fg:x="455530" fg:w="103"/><text x="86.6536%" y="767.50"></text></g><g><title>InterpreterRuntime::anewarray (146 samples, 0.03%)</title><rect x="86.3973%" y="773" width="0.0277%" height="15" fill="rgb(233,120,37)" fg:x="455497" fg:w="146"/><text x="86.6473%" y="783.50"></text></g><g><title>TieredThresholdPolicy::call_event (68 samples, 0.01%)</title><rect x="86.4485%" y="709" width="0.0129%" height="15" fill="rgb(214,52,39)" fg:x="455767" fg:w="68"/><text x="86.6985%" y="719.50"></text></g><g><title>CompileBroker::compile_method_base (54 samples, 0.01%)</title><rect x="86.4626%" y="661" width="0.0102%" height="15" fill="rgb(223,80,29)" fg:x="455841" fg:w="54"/><text x="86.7126%" y="671.50"></text></g><g><title>TieredThresholdPolicy::compile (68 samples, 0.01%)</title><rect x="86.4614%" y="709" width="0.0129%" height="15" fill="rgb(230,101,40)" fg:x="455835" fg:w="68"/><text x="86.7114%" y="719.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (67 samples, 0.01%)</title><rect x="86.4616%" y="693" width="0.0127%" height="15" fill="rgb(219,211,8)" fg:x="455836" fg:w="67"/><text x="86.7116%" y="703.50"></text></g><g><title>CompileBroker::compile_method (65 samples, 0.01%)</title><rect x="86.4620%" y="677" width="0.0123%" height="15" fill="rgb(252,126,28)" fg:x="455838" fg:w="65"/><text x="86.7120%" y="687.50"></text></g><g><title>TieredThresholdPolicy::event (192 samples, 0.04%)</title><rect x="86.4383%" y="741" width="0.0364%" height="15" fill="rgb(215,56,38)" fg:x="455713" fg:w="192"/><text x="86.6883%" y="751.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (170 samples, 0.03%)</title><rect x="86.4425%" y="725" width="0.0322%" height="15" fill="rgb(249,55,44)" fg:x="455735" fg:w="170"/><text x="86.6925%" y="735.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (222 samples, 0.04%)</title><rect x="86.4328%" y="773" width="0.0421%" height="15" fill="rgb(220,221,32)" fg:x="455684" fg:w="222"/><text x="86.6828%" y="783.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (222 samples, 0.04%)</title><rect x="86.4328%" y="757" width="0.0421%" height="15" fill="rgb(212,216,41)" fg:x="455684" fg:w="222"/><text x="86.6828%" y="767.50"></text></g><g><title>InterpreterRuntime::ldc (76 samples, 0.01%)</title><rect x="86.4749%" y="773" width="0.0144%" height="15" fill="rgb(228,213,43)" fg:x="455906" fg:w="76"/><text x="86.7249%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (211 samples, 0.04%)</title><rect x="86.5174%" y="741" width="0.0400%" height="15" fill="rgb(211,31,26)" fg:x="456130" fg:w="211"/><text x="86.7674%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (284 samples, 0.05%)</title><rect x="86.5069%" y="757" width="0.0539%" height="15" fill="rgb(229,202,19)" fg:x="456075" fg:w="284"/><text x="86.7569%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (68 samples, 0.01%)</title><rect x="86.5608%" y="757" width="0.0129%" height="15" fill="rgb(229,105,46)" fg:x="456359" fg:w="68"/><text x="86.8108%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (67 samples, 0.01%)</title><rect x="86.5610%" y="741" width="0.0127%" height="15" fill="rgb(235,108,1)" fg:x="456360" fg:w="67"/><text x="86.8110%" y="751.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (67 samples, 0.01%)</title><rect x="86.5610%" y="725" width="0.0127%" height="15" fill="rgb(245,111,35)" fg:x="456360" fg:w="67"/><text x="86.8110%" y="735.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (389 samples, 0.07%)</title><rect x="86.5001%" y="773" width="0.0738%" height="15" fill="rgb(219,185,31)" fg:x="456039" fg:w="389"/><text x="86.7501%" y="783.50"></text></g><g><title>JVM_Clone (74 samples, 0.01%)</title><rect x="86.5796%" y="773" width="0.0140%" height="15" fill="rgb(214,4,43)" fg:x="456458" fg:w="74"/><text x="86.8296%" y="783.50"></text></g><g><title>JVM_IsInterrupted (60 samples, 0.01%)</title><rect x="86.6412%" y="773" width="0.0114%" height="15" fill="rgb(235,227,40)" fg:x="456783" fg:w="60"/><text x="86.8912%" y="783.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (319 samples, 0.06%)</title><rect x="86.6684%" y="645" width="0.0605%" height="15" fill="rgb(230,88,30)" fg:x="456926" fg:w="319"/><text x="86.9184%" y="655.50"></text></g><g><title>SymbolTable::lookup_only (293 samples, 0.06%)</title><rect x="86.6733%" y="629" width="0.0556%" height="15" fill="rgb(216,217,1)" fg:x="456952" fg:w="293"/><text x="86.9233%" y="639.50"></text></g><g><title>ClassFileParser::parse_constant_pool (328 samples, 0.06%)</title><rect x="86.6670%" y="661" width="0.0622%" height="15" fill="rgb(248,139,50)" fg:x="456919" fg:w="328"/><text x="86.9170%" y="671.50"></text></g><g><title>ClassFileParser::parse_method (73 samples, 0.01%)</title><rect x="86.7310%" y="645" width="0.0138%" height="15" fill="rgb(233,1,21)" fg:x="457256" fg:w="73"/><text x="86.9810%" y="655.50"></text></g><g><title>ClassFileParser::parse_methods (74 samples, 0.01%)</title><rect x="86.7310%" y="661" width="0.0140%" height="15" fill="rgb(215,183,12)" fg:x="457256" fg:w="74"/><text x="86.9810%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (429 samples, 0.08%)</title><rect x="86.6653%" y="693" width="0.0814%" height="15" fill="rgb(229,104,42)" fg:x="456910" fg:w="429"/><text x="86.9153%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (427 samples, 0.08%)</title><rect x="86.6657%" y="677" width="0.0810%" height="15" fill="rgb(243,34,48)" fg:x="456912" fg:w="427"/><text x="86.9157%" y="687.50"></text></g><g><title>ClassFileParser::fill_instance_klass (67 samples, 0.01%)</title><rect x="86.7467%" y="677" width="0.0127%" height="15" fill="rgb(239,11,44)" fg:x="457339" fg:w="67"/><text x="86.9967%" y="687.50"></text></g><g><title>ClassFileParser::create_instance_klass (72 samples, 0.01%)</title><rect x="86.7467%" y="693" width="0.0137%" height="15" fill="rgb(231,98,35)" fg:x="457339" fg:w="72"/><text x="86.9967%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (531 samples, 0.10%)</title><rect x="86.6651%" y="709" width="0.1007%" height="15" fill="rgb(233,28,25)" fg:x="456909" fg:w="531"/><text x="86.9151%" y="719.50"></text></g><g><title>JVM_DefineClassWithSource (549 samples, 0.10%)</title><rect x="86.6638%" y="757" width="0.1041%" height="15" fill="rgb(234,123,11)" fg:x="456902" fg:w="549"/><text x="86.9138%" y="767.50"></text></g><g><title>jvm_define_class_common (549 samples, 0.10%)</title><rect x="86.6638%" y="741" width="0.1041%" height="15" fill="rgb(220,69,3)" fg:x="456902" fg:w="549"/><text x="86.9138%" y="751.50"></text></g><g><title>SystemDictionary::resolve_from_stream (542 samples, 0.10%)</title><rect x="86.6651%" y="725" width="0.1028%" height="15" fill="rgb(214,64,36)" fg:x="456909" fg:w="542"/><text x="86.9151%" y="735.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (576 samples, 0.11%)</title><rect x="86.6638%" y="773" width="0.1093%" height="15" fill="rgb(211,138,32)" fg:x="456902" fg:w="576"/><text x="86.9138%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (148 samples, 0.03%)</title><rect x="86.8009%" y="677" width="0.0281%" height="15" fill="rgb(213,118,47)" fg:x="457625" fg:w="148"/><text x="87.0509%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (147 samples, 0.03%)</title><rect x="86.8011%" y="661" width="0.0279%" height="15" fill="rgb(243,124,49)" fg:x="457626" fg:w="147"/><text x="87.0511%" y="671.50"></text></g><g><title>native_write_msr (147 samples, 0.03%)</title><rect x="86.8011%" y="645" width="0.0279%" height="15" fill="rgb(221,30,28)" fg:x="457626" fg:w="147"/><text x="87.0511%" y="655.50"></text></g><g><title>schedule_tail (165 samples, 0.03%)</title><rect x="86.7987%" y="709" width="0.0313%" height="15" fill="rgb(246,37,13)" fg:x="457613" fg:w="165"/><text x="87.0487%" y="719.50"></text></g><g><title>finish_task_switch (160 samples, 0.03%)</title><rect x="86.7996%" y="693" width="0.0303%" height="15" fill="rgb(249,66,14)" fg:x="457618" fg:w="160"/><text x="87.0496%" y="703.50"></text></g><g><title>__libc_vfork (220 samples, 0.04%)</title><rect x="86.7884%" y="741" width="0.0417%" height="15" fill="rgb(213,166,5)" fg:x="457559" fg:w="220"/><text x="87.0384%" y="751.50"></text></g><g><title>ret_from_fork (175 samples, 0.03%)</title><rect x="86.7970%" y="725" width="0.0332%" height="15" fill="rgb(221,66,24)" fg:x="457604" fg:w="175"/><text x="87.0470%" y="735.50"></text></g><g><title>bprm_execve (79 samples, 0.01%)</title><rect x="86.8321%" y="629" width="0.0150%" height="15" fill="rgb(210,132,17)" fg:x="457789" fg:w="79"/><text x="87.0821%" y="639.50"></text></g><g><title>do_execveat_common (152 samples, 0.03%)</title><rect x="86.8309%" y="645" width="0.0288%" height="15" fill="rgb(243,202,5)" fg:x="457783" fg:w="152"/><text x="87.0809%" y="655.50"></text></g><g><title>JDK_execvpe (154 samples, 0.03%)</title><rect x="86.8307%" y="725" width="0.0292%" height="15" fill="rgb(233,70,48)" fg:x="457782" fg:w="154"/><text x="87.0807%" y="735.50"></text></g><g><title>__GI_execve (154 samples, 0.03%)</title><rect x="86.8307%" y="709" width="0.0292%" height="15" fill="rgb(238,41,26)" fg:x="457782" fg:w="154"/><text x="87.0807%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (153 samples, 0.03%)</title><rect x="86.8309%" y="693" width="0.0290%" height="15" fill="rgb(241,19,31)" fg:x="457783" fg:w="153"/><text x="87.0809%" y="703.50"></text></g><g><title>do_syscall_64 (153 samples, 0.03%)</title><rect x="86.8309%" y="677" width="0.0290%" height="15" fill="rgb(214,76,10)" fg:x="457783" fg:w="153"/><text x="87.0809%" y="687.50"></text></g><g><title>__x64_sys_execve (153 samples, 0.03%)</title><rect x="86.8309%" y="661" width="0.0290%" height="15" fill="rgb(254,202,22)" fg:x="457783" fg:w="153"/><text x="87.0809%" y="671.50"></text></g><g><title>closeDescriptors (103 samples, 0.02%)</title><rect x="86.8643%" y="725" width="0.0195%" height="15" fill="rgb(214,72,24)" fg:x="457959" fg:w="103"/><text x="87.1143%" y="735.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (528 samples, 0.10%)</title><rect x="86.7860%" y="773" width="0.1001%" height="15" fill="rgb(221,92,46)" fg:x="457546" fg:w="528"/><text x="87.0360%" y="783.50"></text></g><g><title>vforkChild (515 samples, 0.10%)</title><rect x="86.7884%" y="757" width="0.0977%" height="15" fill="rgb(246,13,50)" fg:x="457559" fg:w="515"/><text x="87.0384%" y="767.50"></text></g><g><title>childProcess (295 samples, 0.06%)</title><rect x="86.8302%" y="741" width="0.0560%" height="15" fill="rgb(240,165,38)" fg:x="457779" fg:w="295"/><text x="87.0802%" y="751.50"></text></g><g><title>OptoRuntime::new_array_C (142 samples, 0.03%)</title><rect x="86.8920%" y="773" width="0.0269%" height="15" fill="rgb(241,24,51)" fg:x="458105" fg:w="142"/><text x="87.1420%" y="783.50"></text></g><g><title>TypeArrayKlass::allocate_common (93 samples, 0.02%)</title><rect x="86.9013%" y="757" width="0.0176%" height="15" fill="rgb(227,51,44)" fg:x="458154" fg:w="93"/><text x="87.1513%" y="767.50"></text></g><g><title>CollectedHeap::array_allocate (92 samples, 0.02%)</title><rect x="86.9015%" y="741" width="0.0175%" height="15" fill="rgb(231,121,3)" fg:x="458155" fg:w="92"/><text x="87.1515%" y="751.50"></text></g><g><title>MemAllocator::allocate (92 samples, 0.02%)</title><rect x="86.9015%" y="725" width="0.0175%" height="15" fill="rgb(245,3,41)" fg:x="458155" fg:w="92"/><text x="87.1515%" y="735.50"></text></g><g><title>ObjArrayAllocator::initialize (74 samples, 0.01%)</title><rect x="86.9049%" y="709" width="0.0140%" height="15" fill="rgb(214,13,26)" fg:x="458173" fg:w="74"/><text x="87.1549%" y="719.50"></text></g><g><title>asm_exc_page_fault (71 samples, 0.01%)</title><rect x="86.9055%" y="693" width="0.0135%" height="15" fill="rgb(252,75,11)" fg:x="458176" fg:w="71"/><text x="87.1555%" y="703.50"></text></g><g><title>exc_page_fault (71 samples, 0.01%)</title><rect x="86.9055%" y="677" width="0.0135%" height="15" fill="rgb(218,226,17)" fg:x="458176" fg:w="71"/><text x="87.1555%" y="687.50"></text></g><g><title>do_user_addr_fault (71 samples, 0.01%)</title><rect x="86.9055%" y="661" width="0.0135%" height="15" fill="rgb(248,89,38)" fg:x="458176" fg:w="71"/><text x="87.1555%" y="671.50"></text></g><g><title>handle_mm_fault (70 samples, 0.01%)</title><rect x="86.9056%" y="645" width="0.0133%" height="15" fill="rgb(237,73,46)" fg:x="458177" fg:w="70"/><text x="87.1556%" y="655.50"></text></g><g><title>do_huge_pmd_anonymous_page (70 samples, 0.01%)</title><rect x="86.9056%" y="629" width="0.0133%" height="15" fill="rgb(242,78,33)" fg:x="458177" fg:w="70"/><text x="87.1556%" y="639.50"></text></g><g><title>ObjAllocator::initialize (64 samples, 0.01%)</title><rect x="86.9322%" y="709" width="0.0121%" height="15" fill="rgb(235,60,3)" fg:x="458317" fg:w="64"/><text x="87.1822%" y="719.50"></text></g><g><title>asm_exc_page_fault (62 samples, 0.01%)</title><rect x="86.9326%" y="693" width="0.0118%" height="15" fill="rgb(216,172,19)" fg:x="458319" fg:w="62"/><text x="87.1826%" y="703.50"></text></g><g><title>exc_page_fault (62 samples, 0.01%)</title><rect x="86.9326%" y="677" width="0.0118%" height="15" fill="rgb(227,6,42)" fg:x="458319" fg:w="62"/><text x="87.1826%" y="687.50"></text></g><g><title>do_user_addr_fault (62 samples, 0.01%)</title><rect x="86.9326%" y="661" width="0.0118%" height="15" fill="rgb(223,207,42)" fg:x="458319" fg:w="62"/><text x="87.1826%" y="671.50"></text></g><g><title>handle_mm_fault (62 samples, 0.01%)</title><rect x="86.9326%" y="645" width="0.0118%" height="15" fill="rgb(246,138,30)" fg:x="458319" fg:w="62"/><text x="87.1826%" y="655.50"></text></g><g><title>do_huge_pmd_anonymous_page (62 samples, 0.01%)</title><rect x="86.9326%" y="629" width="0.0118%" height="15" fill="rgb(251,199,47)" fg:x="458319" fg:w="62"/><text x="87.1826%" y="639.50"></text></g><g><title>InstanceKlass::allocate_instance (89 samples, 0.02%)</title><rect x="86.9276%" y="757" width="0.0169%" height="15" fill="rgb(228,218,44)" fg:x="458293" fg:w="89"/><text x="87.1776%" y="767.50"></text></g><g><title>CollectedHeap::obj_allocate (89 samples, 0.02%)</title><rect x="86.9276%" y="741" width="0.0169%" height="15" fill="rgb(220,68,6)" fg:x="458293" fg:w="89"/><text x="87.1776%" y="751.50"></text></g><g><title>MemAllocator::allocate (88 samples, 0.02%)</title><rect x="86.9278%" y="725" width="0.0167%" height="15" fill="rgb(240,60,26)" fg:x="458294" fg:w="88"/><text x="87.1778%" y="735.50"></text></g><g><title>OptoRuntime::new_instance_C (103 samples, 0.02%)</title><rect x="86.9259%" y="773" width="0.0195%" height="15" fill="rgb(211,200,19)" fg:x="458284" fg:w="103"/><text x="87.1759%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (82 samples, 0.02%)</title><rect x="86.9533%" y="757" width="0.0156%" height="15" fill="rgb(242,145,30)" fg:x="458428" fg:w="82"/><text x="87.2033%" y="767.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (59 samples, 0.01%)</title><rect x="86.9576%" y="741" width="0.0112%" height="15" fill="rgb(225,64,13)" fg:x="458451" fg:w="59"/><text x="87.2076%" y="751.50"></text></g><g><title>Runtime1::counter_overflow (152 samples, 0.03%)</title><rect x="86.9457%" y="773" width="0.0288%" height="15" fill="rgb(218,103,35)" fg:x="458388" fg:w="152"/><text x="87.1957%" y="783.50"></text></g><g><title>Runtime1::monitorenter (98 samples, 0.02%)</title><rect x="86.9753%" y="773" width="0.0186%" height="15" fill="rgb(216,93,46)" fg:x="458544" fg:w="98"/><text x="87.2253%" y="783.50"></text></g><g><title>InstanceKlass::allocate_instance (73 samples, 0.01%)</title><rect x="87.0011%" y="757" width="0.0138%" height="15" fill="rgb(225,159,27)" fg:x="458680" fg:w="73"/><text x="87.2511%" y="767.50"></text></g><g><title>CollectedHeap::obj_allocate (72 samples, 0.01%)</title><rect x="87.0012%" y="741" width="0.0137%" height="15" fill="rgb(225,204,11)" fg:x="458681" fg:w="72"/><text x="87.2512%" y="751.50"></text></g><g><title>MemAllocator::allocate (72 samples, 0.01%)</title><rect x="87.0012%" y="725" width="0.0137%" height="15" fill="rgb(205,56,4)" fg:x="458681" fg:w="72"/><text x="87.2512%" y="735.50"></text></g><g><title>ObjAllocator::initialize (68 samples, 0.01%)</title><rect x="87.0020%" y="709" width="0.0129%" height="15" fill="rgb(206,6,35)" fg:x="458685" fg:w="68"/><text x="87.2520%" y="719.50"></text></g><g><title>asm_exc_page_fault (67 samples, 0.01%)</title><rect x="87.0022%" y="693" width="0.0127%" height="15" fill="rgb(247,73,52)" fg:x="458686" fg:w="67"/><text x="87.2522%" y="703.50"></text></g><g><title>exc_page_fault (67 samples, 0.01%)</title><rect x="87.0022%" y="677" width="0.0127%" height="15" fill="rgb(246,97,4)" fg:x="458686" fg:w="67"/><text x="87.2522%" y="687.50"></text></g><g><title>do_user_addr_fault (67 samples, 0.01%)</title><rect x="87.0022%" y="661" width="0.0127%" height="15" fill="rgb(212,37,15)" fg:x="458686" fg:w="67"/><text x="87.2522%" y="671.50"></text></g><g><title>handle_mm_fault (67 samples, 0.01%)</title><rect x="87.0022%" y="645" width="0.0127%" height="15" fill="rgb(208,130,40)" fg:x="458686" fg:w="67"/><text x="87.2522%" y="655.50"></text></g><g><title>do_huge_pmd_anonymous_page (67 samples, 0.01%)</title><rect x="87.0022%" y="629" width="0.0127%" height="15" fill="rgb(236,55,29)" fg:x="458686" fg:w="67"/><text x="87.2522%" y="639.50"></text></g><g><title>Runtime1::new_instance (77 samples, 0.01%)</title><rect x="87.0005%" y="773" width="0.0146%" height="15" fill="rgb(209,156,45)" fg:x="458677" fg:w="77"/><text x="87.2505%" y="783.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (54 samples, 0.01%)</title><rect x="87.0172%" y="773" width="0.0102%" height="15" fill="rgb(249,107,4)" fg:x="458765" fg:w="54"/><text x="87.2672%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (58 samples, 0.01%)</title><rect x="87.0464%" y="741" width="0.0110%" height="15" fill="rgb(227,7,13)" fg:x="458919" fg:w="58"/><text x="87.2964%" y="751.50"></text></g><g><title>SystemDictionary::parse_stream (85 samples, 0.02%)</title><rect x="87.0415%" y="757" width="0.0161%" height="15" fill="rgb(250,129,14)" fg:x="458893" fg:w="85"/><text x="87.2915%" y="767.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (89 samples, 0.02%)</title><rect x="87.0409%" y="773" width="0.0169%" height="15" fill="rgb(229,92,13)" fg:x="458890" fg:w="89"/><text x="87.2909%" y="783.50"></text></g><g><title>finish_task_switch (65 samples, 0.01%)</title><rect x="87.0741%" y="565" width="0.0123%" height="15" fill="rgb(245,98,39)" fg:x="459065" fg:w="65"/><text x="87.3241%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (63 samples, 0.01%)</title><rect x="87.0745%" y="549" width="0.0119%" height="15" fill="rgb(234,135,48)" fg:x="459067" fg:w="63"/><text x="87.3245%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.01%)</title><rect x="87.0745%" y="533" width="0.0119%" height="15" fill="rgb(230,98,28)" fg:x="459067" fg:w="63"/><text x="87.3245%" y="543.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="87.0746%" y="517" width="0.0118%" height="15" fill="rgb(223,121,0)" fg:x="459068" fg:w="62"/><text x="87.3246%" y="527.50"></text></g><g><title>futex_wait_queue_me (103 samples, 0.02%)</title><rect x="87.0691%" y="613" width="0.0195%" height="15" fill="rgb(234,173,33)" fg:x="459039" fg:w="103"/><text x="87.3191%" y="623.50"></text></g><g><title>schedule (101 samples, 0.02%)</title><rect x="87.0695%" y="597" width="0.0192%" height="15" fill="rgb(245,47,8)" fg:x="459041" fg:w="101"/><text x="87.3195%" y="607.50"></text></g><g><title>__schedule (101 samples, 0.02%)</title><rect x="87.0695%" y="581" width="0.0192%" height="15" fill="rgb(205,17,20)" fg:x="459041" fg:w="101"/><text x="87.3195%" y="591.50"></text></g><g><title>do_syscall_64 (109 samples, 0.02%)</title><rect x="87.0686%" y="677" width="0.0207%" height="15" fill="rgb(232,151,16)" fg:x="459036" fg:w="109"/><text x="87.3186%" y="687.50"></text></g><g><title>__x64_sys_futex (108 samples, 0.02%)</title><rect x="87.0688%" y="661" width="0.0205%" height="15" fill="rgb(208,30,32)" fg:x="459037" fg:w="108"/><text x="87.3188%" y="671.50"></text></g><g><title>do_futex (107 samples, 0.02%)</title><rect x="87.0690%" y="645" width="0.0203%" height="15" fill="rgb(254,26,3)" fg:x="459038" fg:w="107"/><text x="87.3190%" y="655.50"></text></g><g><title>futex_wait (106 samples, 0.02%)</title><rect x="87.0691%" y="629" width="0.0201%" height="15" fill="rgb(240,177,30)" fg:x="459039" fg:w="106"/><text x="87.3191%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.02%)</title><rect x="87.0686%" y="693" width="0.0218%" height="15" fill="rgb(248,76,44)" fg:x="459036" fg:w="115"/><text x="87.3186%" y="703.50"></text></g><g><title>__pthread_cond_wait (124 samples, 0.02%)</title><rect x="87.0671%" y="741" width="0.0235%" height="15" fill="rgb(241,186,54)" fg:x="459028" fg:w="124"/><text x="87.3171%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (124 samples, 0.02%)</title><rect x="87.0671%" y="725" width="0.0235%" height="15" fill="rgb(249,171,29)" fg:x="459028" fg:w="124"/><text x="87.3171%" y="735.50"></text></g><g><title>futex_wait_cancelable (120 samples, 0.02%)</title><rect x="87.0678%" y="709" width="0.0228%" height="15" fill="rgb(237,151,44)" fg:x="459032" fg:w="120"/><text x="87.3178%" y="719.50"></text></g><g><title>Parker::park (150 samples, 0.03%)</title><rect x="87.0638%" y="757" width="0.0285%" height="15" fill="rgb(228,174,30)" fg:x="459011" fg:w="150"/><text x="87.3138%" y="767.50"></text></g><g><title>Unsafe_Park (152 samples, 0.03%)</title><rect x="87.0636%" y="773" width="0.0288%" height="15" fill="rgb(252,14,37)" fg:x="459010" fg:w="152"/><text x="87.3136%" y="783.50"></text></g><g><title>ttwu_do_activate (93 samples, 0.02%)</title><rect x="87.1154%" y="613" width="0.0176%" height="15" fill="rgb(207,111,40)" fg:x="459283" fg:w="93"/><text x="87.3654%" y="623.50"></text></g><g><title>__x64_sys_futex (184 samples, 0.03%)</title><rect x="87.1012%" y="693" width="0.0349%" height="15" fill="rgb(248,171,54)" fg:x="459208" fg:w="184"/><text x="87.3512%" y="703.50"></text></g><g><title>do_futex (182 samples, 0.03%)</title><rect x="87.1016%" y="677" width="0.0345%" height="15" fill="rgb(211,127,2)" fg:x="459210" fg:w="182"/><text x="87.3516%" y="687.50"></text></g><g><title>futex_wake (177 samples, 0.03%)</title><rect x="87.1025%" y="661" width="0.0336%" height="15" fill="rgb(236,87,47)" fg:x="459215" fg:w="177"/><text x="87.3525%" y="671.50"></text></g><g><title>wake_up_q (150 samples, 0.03%)</title><rect x="87.1077%" y="645" width="0.0285%" height="15" fill="rgb(223,190,45)" fg:x="459242" fg:w="150"/><text x="87.3577%" y="655.50"></text></g><g><title>try_to_wake_up (147 samples, 0.03%)</title><rect x="87.1082%" y="629" width="0.0279%" height="15" fill="rgb(215,5,16)" fg:x="459245" fg:w="147"/><text x="87.3582%" y="639.50"></text></g><g><title>do_syscall_64 (187 samples, 0.04%)</title><rect x="87.1012%" y="709" width="0.0355%" height="15" fill="rgb(252,82,33)" fg:x="459208" fg:w="187"/><text x="87.3512%" y="719.50"></text></g><g><title>__pthread_cond_signal (204 samples, 0.04%)</title><rect x="87.0999%" y="757" width="0.0387%" height="15" fill="rgb(247,213,44)" fg:x="459201" fg:w="204"/><text x="87.3499%" y="767.50"></text></g><g><title>futex_wake (201 samples, 0.04%)</title><rect x="87.1004%" y="741" width="0.0381%" height="15" fill="rgb(205,196,44)" fg:x="459204" fg:w="201"/><text x="87.3504%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (197 samples, 0.04%)</title><rect x="87.1012%" y="725" width="0.0374%" height="15" fill="rgb(237,96,54)" fg:x="459208" fg:w="197"/><text x="87.3512%" y="735.50"></text></g><g><title>Unsafe_Unpark (238 samples, 0.05%)</title><rect x="87.0942%" y="773" width="0.0451%" height="15" fill="rgb(230,113,34)" fg:x="459171" fg:w="238"/><text x="87.3442%" y="783.50"></text></g><g><title>asm_common_interrupt (54 samples, 0.01%)</title><rect x="87.1479%" y="773" width="0.0102%" height="15" fill="rgb(221,224,12)" fg:x="459454" fg:w="54"/><text x="87.3979%" y="783.50"></text></g><g><title>tick_sched_timer (54 samples, 0.01%)</title><rect x="87.1651%" y="693" width="0.0102%" height="15" fill="rgb(219,112,44)" fg:x="459545" fg:w="54"/><text x="87.4151%" y="703.50"></text></g><g><title>__hrtimer_run_queues (66 samples, 0.01%)</title><rect x="87.1636%" y="709" width="0.0125%" height="15" fill="rgb(210,31,13)" fg:x="459537" fg:w="66"/><text x="87.4136%" y="719.50"></text></g><g><title>hrtimer_interrupt (71 samples, 0.01%)</title><rect x="87.1634%" y="725" width="0.0135%" height="15" fill="rgb(230,25,16)" fg:x="459536" fg:w="71"/><text x="87.4134%" y="735.50"></text></g><g><title>__sysvec_apic_timer_interrupt (76 samples, 0.01%)</title><rect x="87.1630%" y="741" width="0.0144%" height="15" fill="rgb(246,108,53)" fg:x="459534" fg:w="76"/><text x="87.4130%" y="751.50"></text></g><g><title>rcu_core (58 samples, 0.01%)</title><rect x="87.1780%" y="677" width="0.0110%" height="15" fill="rgb(241,172,50)" fg:x="459613" fg:w="58"/><text x="87.4280%" y="687.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (154 samples, 0.03%)</title><rect x="87.1615%" y="773" width="0.0292%" height="15" fill="rgb(235,141,10)" fg:x="459526" fg:w="154"/><text x="87.4115%" y="783.50"></text></g><g><title>sysvec_apic_timer_interrupt (147 samples, 0.03%)</title><rect x="87.1628%" y="757" width="0.0279%" height="15" fill="rgb(220,174,43)" fg:x="459533" fg:w="147"/><text x="87.4128%" y="767.50"></text></g><g><title>irq_exit_rcu (69 samples, 0.01%)</title><rect x="87.1776%" y="741" width="0.0131%" height="15" fill="rgb(215,181,40)" fg:x="459611" fg:w="69"/><text x="87.4276%" y="751.50"></text></g><g><title>do_softirq_own_stack (67 samples, 0.01%)</title><rect x="87.1780%" y="725" width="0.0127%" height="15" fill="rgb(230,97,2)" fg:x="459613" fg:w="67"/><text x="87.4280%" y="735.50"></text></g><g><title>asm_call_sysvec_on_stack (67 samples, 0.01%)</title><rect x="87.1780%" y="709" width="0.0127%" height="15" fill="rgb(211,25,27)" fg:x="459613" fg:w="67"/><text x="87.4280%" y="719.50"></text></g><g><title>__softirqentry_text_start (67 samples, 0.01%)</title><rect x="87.1780%" y="693" width="0.0127%" height="15" fill="rgb(230,87,26)" fg:x="459613" fg:w="67"/><text x="87.4280%" y="703.50"></text></g><g><title>__close (53 samples, 0.01%)</title><rect x="87.1996%" y="757" width="0.0101%" height="15" fill="rgb(227,160,17)" fg:x="459727" fg:w="53"/><text x="87.4496%" y="767.50"></text></g><g><title>fileDescriptorClose (67 samples, 0.01%)</title><rect x="87.1995%" y="773" width="0.0127%" height="15" fill="rgb(244,85,34)" fg:x="459726" fg:w="67"/><text x="87.4495%" y="783.50"></text></g><g><title>alloc_empty_file (54 samples, 0.01%)</title><rect x="87.2330%" y="645" width="0.0102%" height="15" fill="rgb(207,70,0)" fg:x="459903" fg:w="54"/><text x="87.4830%" y="655.50"></text></g><g><title>link_path_walk.part.0 (53 samples, 0.01%)</title><rect x="87.2541%" y="645" width="0.0101%" height="15" fill="rgb(223,129,7)" fg:x="460014" fg:w="53"/><text x="87.5041%" y="655.50"></text></g><g><title>do_filp_open (192 samples, 0.04%)</title><rect x="87.2317%" y="677" width="0.0364%" height="15" fill="rgb(246,105,7)" fg:x="459896" fg:w="192"/><text x="87.4817%" y="687.50"></text></g><g><title>path_openat (187 samples, 0.04%)</title><rect x="87.2327%" y="661" width="0.0355%" height="15" fill="rgb(215,154,42)" fg:x="459901" fg:w="187"/><text x="87.4827%" y="671.50"></text></g><g><title>__x64_sys_openat (234 samples, 0.04%)</title><rect x="87.2296%" y="709" width="0.0444%" height="15" fill="rgb(220,215,30)" fg:x="459885" fg:w="234"/><text x="87.4796%" y="719.50"></text></g><g><title>do_sys_openat2 (234 samples, 0.04%)</title><rect x="87.2296%" y="693" width="0.0444%" height="15" fill="rgb(228,81,51)" fg:x="459885" fg:w="234"/><text x="87.4796%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (236 samples, 0.04%)</title><rect x="87.2294%" y="741" width="0.0448%" height="15" fill="rgb(247,71,54)" fg:x="459884" fg:w="236"/><text x="87.4794%" y="751.50"></text></g><g><title>do_syscall_64 (236 samples, 0.04%)</title><rect x="87.2294%" y="725" width="0.0448%" height="15" fill="rgb(234,176,34)" fg:x="459884" fg:w="236"/><text x="87.4794%" y="735.50"></text></g><g><title>__libc_open64 (241 samples, 0.05%)</title><rect x="87.2287%" y="757" width="0.0457%" height="15" fill="rgb(241,103,54)" fg:x="459880" fg:w="241"/><text x="87.4787%" y="767.50"></text></g><g><title>fileOpen (346 samples, 0.07%)</title><rect x="87.2122%" y="773" width="0.0656%" height="15" fill="rgb(228,22,34)" fg:x="459793" fg:w="346"/><text x="87.4622%" y="783.50"></text></g><g><title>jni_IsAssignableFrom (73 samples, 0.01%)</title><rect x="87.2806%" y="773" width="0.0138%" height="15" fill="rgb(241,179,48)" fg:x="460154" fg:w="73"/><text x="87.5306%" y="783.50"></text></g><g><title>[[vdso]] (776 samples, 0.15%)</title><rect x="87.4248%" y="725" width="0.1472%" height="15" fill="rgb(235,167,37)" fg:x="460914" fg:w="776"/><text x="87.6748%" y="735.50"></text></g><g><title>os::javaTimeNanos (1,456 samples, 0.28%)</title><rect x="87.2960%" y="773" width="0.2762%" height="15" fill="rgb(213,109,30)" fg:x="460235" fg:w="1456"/><text x="87.5460%" y="783.50"></text></g><g><title>__GI___clock_gettime (1,395 samples, 0.26%)</title><rect x="87.3076%" y="757" width="0.2646%" height="15" fill="rgb(222,172,16)" fg:x="460296" fg:w="1395"/><text x="87.5576%" y="767.50"></text></g><g><title>__vdso_clock_gettime (1,197 samples, 0.23%)</title><rect x="87.3451%" y="741" width="0.2270%" height="15" fill="rgb(233,192,5)" fg:x="460494" fg:w="1197"/><text x="87.5951%" y="751.50"></text></g><g><title>[perf-947659.map] (76,363 samples, 14.48%)</title><rect x="73.0884%" y="789" width="14.4843%" height="15" fill="rgb(247,189,41)" fg:x="385331" fg:w="76363"/><text x="73.3384%" y="799.50">[perf-947659.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (160 samples, 0.03%)</title><rect x="87.6167%" y="757" width="0.0303%" height="15" fill="rgb(218,134,47)" fg:x="461926" fg:w="160"/><text x="87.8667%" y="767.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (250 samples, 0.05%)</title><rect x="87.6035%" y="773" width="0.0474%" height="15" fill="rgb(216,29,3)" fg:x="461856" fg:w="250"/><text x="87.8535%" y="783.50"></text></g><g><title>__GI___clock_gettime (112 samples, 0.02%)</title><rect x="87.6590%" y="773" width="0.0212%" height="15" fill="rgb(246,140,12)" fg:x="462149" fg:w="112"/><text x="87.9090%" y="783.50"></text></g><g><title>copy_page_to_iter (136 samples, 0.03%)</title><rect x="87.7323%" y="613" width="0.0258%" height="15" fill="rgb(230,136,11)" fg:x="462535" fg:w="136"/><text x="87.9823%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (128 samples, 0.02%)</title><rect x="87.7338%" y="597" width="0.0243%" height="15" fill="rgb(247,22,47)" fg:x="462543" fg:w="128"/><text x="87.9838%" y="607.50"></text></g><g><title>btrfs_delayed_update_inode (56 samples, 0.01%)</title><rect x="87.7713%" y="565" width="0.0106%" height="15" fill="rgb(218,84,22)" fg:x="462741" fg:w="56"/><text x="88.0213%" y="575.50"></text></g><g><title>btrfs_update_inode (64 samples, 0.01%)</title><rect x="87.7710%" y="581" width="0.0121%" height="15" fill="rgb(216,87,39)" fg:x="462739" fg:w="64"/><text x="88.0210%" y="591.50"></text></g><g><title>btrfs_dirty_inode (91 samples, 0.02%)</title><rect x="87.7691%" y="597" width="0.0173%" height="15" fill="rgb(221,178,8)" fg:x="462729" fg:w="91"/><text x="88.0191%" y="607.50"></text></g><g><title>generic_file_buffered_read (304 samples, 0.06%)</title><rect x="87.7292%" y="629" width="0.0577%" height="15" fill="rgb(230,42,11)" fg:x="462519" fg:w="304"/><text x="87.9792%" y="639.50"></text></g><g><title>touch_atime (107 samples, 0.02%)</title><rect x="87.7666%" y="613" width="0.0203%" height="15" fill="rgb(237,229,4)" fg:x="462716" fg:w="107"/><text x="88.0166%" y="623.50"></text></g><g><title>new_sync_read (316 samples, 0.06%)</title><rect x="87.7277%" y="645" width="0.0599%" height="15" fill="rgb(222,31,33)" fg:x="462511" fg:w="316"/><text x="87.9777%" y="655.50"></text></g><g><title>ksys_read (360 samples, 0.07%)</title><rect x="87.7224%" y="677" width="0.0683%" height="15" fill="rgb(210,17,39)" fg:x="462483" fg:w="360"/><text x="87.9724%" y="687.50"></text></g><g><title>vfs_read (344 samples, 0.07%)</title><rect x="87.7254%" y="661" width="0.0652%" height="15" fill="rgb(244,93,20)" fg:x="462499" fg:w="344"/><text x="87.9754%" y="671.50"></text></g><g><title>do_syscall_64 (365 samples, 0.07%)</title><rect x="87.7218%" y="693" width="0.0692%" height="15" fill="rgb(210,40,47)" fg:x="462480" fg:w="365"/><text x="87.9718%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (369 samples, 0.07%)</title><rect x="87.7214%" y="709" width="0.0700%" height="15" fill="rgb(239,211,47)" fg:x="462478" fg:w="369"/><text x="87.9714%" y="719.50"></text></g><g><title>__libc_read (384 samples, 0.07%)</title><rect x="87.7188%" y="741" width="0.0728%" height="15" fill="rgb(251,223,49)" fg:x="462464" fg:w="384"/><text x="87.9688%" y="751.50"></text></g><g><title>__libc_read (384 samples, 0.07%)</title><rect x="87.7188%" y="725" width="0.0728%" height="15" fill="rgb(221,149,5)" fg:x="462464" fg:w="384"/><text x="87.9688%" y="735.50"></text></g><g><title>handleRead (386 samples, 0.07%)</title><rect x="87.7188%" y="757" width="0.0732%" height="15" fill="rgb(219,224,51)" fg:x="462464" fg:w="386"/><text x="87.9688%" y="767.50"></text></g><g><title>readBytes (478 samples, 0.09%)</title><rect x="87.7163%" y="773" width="0.0907%" height="15" fill="rgb(223,7,8)" fg:x="462451" fg:w="478"/><text x="87.9663%" y="783.50"></text></g><g><title>[unknown] (1,256 samples, 0.24%)</title><rect x="87.5727%" y="789" width="0.2382%" height="15" fill="rgb(241,217,22)" fg:x="461694" fg:w="1256"/><text x="87.8227%" y="799.50"></text></g><g><title>__GI___clone (104 samples, 0.02%)</title><rect x="87.8110%" y="789" width="0.0197%" height="15" fill="rgb(248,209,0)" fg:x="462950" fg:w="104"/><text x="88.0610%" y="799.50"></text></g><g><title>__vdso_clock_gettime (91 samples, 0.02%)</title><rect x="87.8315%" y="789" width="0.0173%" height="15" fill="rgb(217,205,4)" fg:x="463058" fg:w="91"/><text x="88.0815%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (130 samples, 0.02%)</title><rect x="87.8525%" y="789" width="0.0247%" height="15" fill="rgb(228,124,39)" fg:x="463169" fg:w="130"/><text x="88.1025%" y="799.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (198 samples, 0.04%)</title><rect x="87.8772%" y="789" width="0.0376%" height="15" fill="rgb(250,116,42)" fg:x="463299" fg:w="198"/><text x="88.1272%" y="799.50"></text></g><g><title>skyframe-evalua (324,553 samples, 61.56%)</title><rect x="26.3771%" y="805" width="61.5602%" height="15" fill="rgb(223,202,9)" fg:x="139063" fg:w="324553"/><text x="26.6271%" y="815.50">skyframe-evalua</text></g><g><title>[perf-947659.map] (80 samples, 0.02%)</title><rect x="87.9381%" y="789" width="0.0152%" height="15" fill="rgb(242,222,40)" fg:x="463620" fg:w="80"/><text x="88.1881%" y="799.50"></text></g><g><title>skyframe-invali (101 samples, 0.02%)</title><rect x="87.9373%" y="805" width="0.0192%" height="15" fill="rgb(229,99,46)" fg:x="463616" fg:w="101"/><text x="88.1873%" y="815.50"></text></g><g><title>wait_on_page_bit_common (65 samples, 0.01%)</title><rect x="92.9956%" y="677" width="0.0123%" height="15" fill="rgb(225,56,46)" fg:x="490284" fg:w="65"/><text x="93.2456%" y="687.50"></text></g><g><title>io_schedule (59 samples, 0.01%)</title><rect x="92.9967%" y="661" width="0.0112%" height="15" fill="rgb(227,94,5)" fg:x="490290" fg:w="59"/><text x="93.2467%" y="671.50"></text></g><g><title>schedule (59 samples, 0.01%)</title><rect x="92.9967%" y="645" width="0.0112%" height="15" fill="rgb(205,112,38)" fg:x="490290" fg:w="59"/><text x="93.2467%" y="655.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="92.9969%" y="629" width="0.0110%" height="15" fill="rgb(231,133,46)" fg:x="490291" fg:w="58"/><text x="93.2469%" y="639.50"></text></g><g><title>__do_fault (103 samples, 0.02%)</title><rect x="92.9914%" y="709" width="0.0195%" height="15" fill="rgb(217,16,9)" fg:x="490262" fg:w="103"/><text x="93.2414%" y="719.50"></text></g><g><title>filemap_fault (102 samples, 0.02%)</title><rect x="92.9916%" y="693" width="0.0193%" height="15" fill="rgb(249,173,9)" fg:x="490263" fg:w="102"/><text x="93.2416%" y="703.50"></text></g><g><title>kernel_init_free_pages (207 samples, 0.04%)</title><rect x="93.0665%" y="645" width="0.0393%" height="15" fill="rgb(205,163,53)" fg:x="490658" fg:w="207"/><text x="93.3165%" y="655.50"></text></g><g><title>clear_page_erms (200 samples, 0.04%)</title><rect x="93.0679%" y="629" width="0.0379%" height="15" fill="rgb(217,54,41)" fg:x="490665" fg:w="200"/><text x="93.3179%" y="639.50"></text></g><g><title>__alloc_pages_nodemask (430 samples, 0.08%)</title><rect x="93.0244%" y="693" width="0.0816%" height="15" fill="rgb(228,216,12)" fg:x="490436" fg:w="430"/><text x="93.2744%" y="703.50"></text></g><g><title>get_page_from_freelist (385 samples, 0.07%)</title><rect x="93.0330%" y="677" width="0.0730%" height="15" fill="rgb(244,228,15)" fg:x="490481" fg:w="385"/><text x="93.2830%" y="687.50"></text></g><g><title>prep_new_page (219 samples, 0.04%)</title><rect x="93.0645%" y="661" width="0.0415%" height="15" fill="rgb(221,176,53)" fg:x="490647" fg:w="219"/><text x="93.3145%" y="671.50"></text></g><g><title>alloc_pages_vma (468 samples, 0.09%)</title><rect x="93.0193%" y="709" width="0.0888%" height="15" fill="rgb(205,94,34)" fg:x="490409" fg:w="468"/><text x="93.2693%" y="719.50"></text></g><g><title>do_page_mkwrite (246 samples, 0.05%)</title><rect x="93.1206%" y="709" width="0.0467%" height="15" fill="rgb(213,110,48)" fg:x="490943" fg:w="246"/><text x="93.3706%" y="719.50"></text></g><g><title>btrfs_page_mkwrite (246 samples, 0.05%)</title><rect x="93.1206%" y="693" width="0.0467%" height="15" fill="rgb(236,142,28)" fg:x="490943" fg:w="246"/><text x="93.3706%" y="703.50"></text></g><g><title>__mod_memcg_lruvec_state (54 samples, 0.01%)</title><rect x="93.3097%" y="661" width="0.0102%" height="15" fill="rgb(225,135,29)" fg:x="491940" fg:w="54"/><text x="93.5597%" y="671.50"></text></g><g><title>page_add_file_rmap (167 samples, 0.03%)</title><rect x="93.2907%" y="677" width="0.0317%" height="15" fill="rgb(252,45,31)" fg:x="491840" fg:w="167"/><text x="93.5407%" y="687.50"></text></g><g><title>alloc_set_pte (253 samples, 0.05%)</title><rect x="93.2759%" y="693" width="0.0480%" height="15" fill="rgb(211,187,50)" fg:x="491762" fg:w="253"/><text x="93.5259%" y="703.50"></text></g><g><title>unlock_page (73 samples, 0.01%)</title><rect x="93.3245%" y="693" width="0.0138%" height="15" fill="rgb(229,109,7)" fg:x="492018" fg:w="73"/><text x="93.5745%" y="703.50"></text></g><g><title>filemap_map_pages (923 samples, 0.18%)</title><rect x="93.1743%" y="709" width="0.1751%" height="15" fill="rgb(251,131,51)" fg:x="491226" fg:w="923"/><text x="93.4243%" y="719.50"></text></g><g><title>xas_find (58 samples, 0.01%)</title><rect x="93.3384%" y="693" width="0.0110%" height="15" fill="rgb(251,180,35)" fg:x="492091" fg:w="58"/><text x="93.5884%" y="703.50"></text></g><g><title>__pagevec_lru_add_fn (68 samples, 0.01%)</title><rect x="93.3545%" y="677" width="0.0129%" height="15" fill="rgb(211,46,32)" fg:x="492176" fg:w="68"/><text x="93.6045%" y="687.50"></text></g><g><title>lru_cache_add (105 samples, 0.02%)</title><rect x="93.3511%" y="709" width="0.0199%" height="15" fill="rgb(248,123,17)" fg:x="492158" fg:w="105"/><text x="93.6011%" y="719.50"></text></g><g><title>pagevec_lru_move_fn (93 samples, 0.02%)</title><rect x="93.3533%" y="693" width="0.0176%" height="15" fill="rgb(227,141,18)" fg:x="492170" fg:w="93"/><text x="93.6033%" y="703.50"></text></g><g><title>mem_cgroup_charge (100 samples, 0.02%)</title><rect x="93.3715%" y="709" width="0.0190%" height="15" fill="rgb(216,102,9)" fg:x="492266" fg:w="100"/><text x="93.6215%" y="719.50"></text></g><g><title>handle_mm_fault (2,445 samples, 0.46%)</title><rect x="92.9493%" y="725" width="0.4638%" height="15" fill="rgb(253,47,13)" fg:x="490040" fg:w="2445"/><text x="93.1993%" y="735.50"></text></g><g><title>do_user_addr_fault (2,594 samples, 0.49%)</title><rect x="92.9283%" y="741" width="0.4920%" height="15" fill="rgb(226,93,23)" fg:x="489929" fg:w="2594"/><text x="93.1783%" y="751.50"></text></g><g><title>exc_page_fault (2,617 samples, 0.50%)</title><rect x="92.9241%" y="757" width="0.4964%" height="15" fill="rgb(247,104,17)" fg:x="489907" fg:w="2617"/><text x="93.1741%" y="767.50"></text></g><g><title>asm_exc_page_fault (2,667 samples, 0.51%)</title><rect x="92.9176%" y="773" width="0.5059%" height="15" fill="rgb(233,203,26)" fg:x="489873" fg:w="2667"/><text x="93.1676%" y="783.50"></text></g><g><title>rcu_core (86 samples, 0.02%)</title><rect x="93.4277%" y="677" width="0.0163%" height="15" fill="rgb(244,98,49)" fg:x="492562" fg:w="86"/><text x="93.6777%" y="687.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (112 samples, 0.02%)</title><rect x="93.4235%" y="773" width="0.0212%" height="15" fill="rgb(235,134,22)" fg:x="492540" fg:w="112"/><text x="93.6735%" y="783.50"></text></g><g><title>sysvec_apic_timer_interrupt (110 samples, 0.02%)</title><rect x="93.4239%" y="757" width="0.0209%" height="15" fill="rgb(221,70,32)" fg:x="492542" fg:w="110"/><text x="93.6739%" y="767.50"></text></g><g><title>irq_exit_rcu (92 samples, 0.02%)</title><rect x="93.4273%" y="741" width="0.0175%" height="15" fill="rgb(238,15,50)" fg:x="492560" fg:w="92"/><text x="93.6773%" y="751.50"></text></g><g><title>do_softirq_own_stack (92 samples, 0.02%)</title><rect x="93.4273%" y="725" width="0.0175%" height="15" fill="rgb(215,221,48)" fg:x="492560" fg:w="92"/><text x="93.6773%" y="735.50"></text></g><g><title>asm_call_sysvec_on_stack (92 samples, 0.02%)</title><rect x="93.4273%" y="709" width="0.0175%" height="15" fill="rgb(236,73,3)" fg:x="492560" fg:w="92"/><text x="93.6773%" y="719.50"></text></g><g><title>__softirqentry_text_start (92 samples, 0.02%)</title><rect x="93.4273%" y="693" width="0.0175%" height="15" fill="rgb(250,107,11)" fg:x="492560" fg:w="92"/><text x="93.6773%" y="703.50"></text></g><g><title>entry_SYSCALL_64 (1,248 samples, 0.24%)</title><rect x="93.4459%" y="773" width="0.2367%" height="15" fill="rgb(242,39,14)" fg:x="492658" fg:w="1248"/><text x="93.6959%" y="783.50"></text></g><g><title>copy_process (101 samples, 0.02%)</title><rect x="93.7737%" y="709" width="0.0192%" height="15" fill="rgb(248,164,37)" fg:x="494386" fg:w="101"/><text x="94.0237%" y="719.50"></text></g><g><title>__do_sys_clone (115 samples, 0.02%)</title><rect x="93.7737%" y="741" width="0.0218%" height="15" fill="rgb(217,60,12)" fg:x="494386" fg:w="115"/><text x="94.0237%" y="751.50"></text></g><g><title>kernel_clone (115 samples, 0.02%)</title><rect x="93.7737%" y="725" width="0.0218%" height="15" fill="rgb(240,125,29)" fg:x="494386" fg:w="115"/><text x="94.0237%" y="735.50"></text></g><g><title>_copy_to_user (207 samples, 0.04%)</title><rect x="93.8118%" y="709" width="0.0393%" height="15" fill="rgb(208,207,28)" fg:x="494587" fg:w="207"/><text x="94.0618%" y="719.50"></text></g><g><title>copy_user_enhanced_fast_string (185 samples, 0.04%)</title><rect x="93.8160%" y="693" width="0.0351%" height="15" fill="rgb(209,159,27)" fg:x="494609" fg:w="185"/><text x="94.0660%" y="703.50"></text></g><g><title>cp_new_stat (325 samples, 0.06%)</title><rect x="93.7989%" y="725" width="0.0616%" height="15" fill="rgb(251,176,53)" fg:x="494519" fg:w="325"/><text x="94.0489%" y="735.50"></text></g><g><title>__fget_light (80 samples, 0.02%)</title><rect x="93.8649%" y="709" width="0.0152%" height="15" fill="rgb(211,85,7)" fg:x="494867" fg:w="80"/><text x="94.1149%" y="719.50"></text></g><g><title>__fget_files (72 samples, 0.01%)</title><rect x="93.8664%" y="693" width="0.0137%" height="15" fill="rgb(216,64,54)" fg:x="494875" fg:w="72"/><text x="94.1164%" y="703.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="93.9548%" y="693" width="0.0125%" height="15" fill="rgb(217,54,24)" fg:x="495341" fg:w="66"/><text x="94.2048%" y="703.50"></text></g><g><title>btrfs_getattr (559 samples, 0.11%)</title><rect x="93.8801%" y="709" width="0.1060%" height="15" fill="rgb(208,206,53)" fg:x="494947" fg:w="559"/><text x="94.1301%" y="719.50"></text></g><g><title>inode_get_bytes (70 samples, 0.01%)</title><rect x="93.9728%" y="693" width="0.0133%" height="15" fill="rgb(251,74,39)" fg:x="495436" fg:w="70"/><text x="94.2228%" y="703.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="93.9753%" y="677" width="0.0108%" height="15" fill="rgb(226,47,5)" fg:x="495449" fg:w="57"/><text x="94.2253%" y="687.50"></text></g><g><title>security_inode_getattr (223 samples, 0.04%)</title><rect x="93.9965%" y="709" width="0.0423%" height="15" fill="rgb(234,111,33)" fg:x="495561" fg:w="223"/><text x="94.2465%" y="719.50"></text></g><g><title>tomoyo_path_perm (163 samples, 0.03%)</title><rect x="94.0079%" y="693" width="0.0309%" height="15" fill="rgb(251,14,10)" fg:x="495621" fg:w="163"/><text x="94.2579%" y="703.50"></text></g><g><title>tomoyo_init_request_info (71 samples, 0.01%)</title><rect x="94.0254%" y="677" width="0.0135%" height="15" fill="rgb(232,43,0)" fg:x="495713" fg:w="71"/><text x="94.2754%" y="687.50"></text></g><g><title>__do_sys_newfstat (1,374 samples, 0.26%)</title><rect x="93.7955%" y="741" width="0.2606%" height="15" fill="rgb(222,68,43)" fg:x="494501" fg:w="1374"/><text x="94.0455%" y="751.50"></text></g><g><title>vfs_fstat (1,031 samples, 0.20%)</title><rect x="93.8605%" y="725" width="0.1956%" height="15" fill="rgb(217,24,23)" fg:x="494844" fg:w="1031"/><text x="94.1105%" y="735.50"></text></g><g><title>vfs_getattr_nosec (91 samples, 0.02%)</title><rect x="94.0388%" y="709" width="0.0173%" height="15" fill="rgb(229,209,14)" fg:x="495784" fg:w="91"/><text x="94.2888%" y="719.50"></text></g><g><title>__close_fd (86 samples, 0.02%)</title><rect x="94.0625%" y="725" width="0.0163%" height="15" fill="rgb(250,149,48)" fg:x="495909" fg:w="86"/><text x="94.3125%" y="735.50"></text></g><g><title>pick_file (82 samples, 0.02%)</title><rect x="94.0633%" y="709" width="0.0156%" height="15" fill="rgb(210,120,37)" fg:x="495913" fg:w="82"/><text x="94.3133%" y="719.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="94.0677%" y="693" width="0.0112%" height="15" fill="rgb(210,21,8)" fg:x="495936" fg:w="59"/><text x="94.3177%" y="703.50"></text></g><g><title>fput_many (203 samples, 0.04%)</title><rect x="94.0859%" y="709" width="0.0385%" height="15" fill="rgb(243,145,7)" fg:x="496032" fg:w="203"/><text x="94.3359%" y="719.50"></text></g><g><title>task_work_add (120 samples, 0.02%)</title><rect x="94.1016%" y="693" width="0.0228%" height="15" fill="rgb(238,178,32)" fg:x="496115" fg:w="120"/><text x="94.3516%" y="703.50"></text></g><g><title>__x64_sys_close (352 samples, 0.07%)</title><rect x="94.0614%" y="741" width="0.0668%" height="15" fill="rgb(222,4,10)" fg:x="495903" fg:w="352"/><text x="94.3114%" y="751.50"></text></g><g><title>filp_close (260 samples, 0.05%)</title><rect x="94.0789%" y="725" width="0.0493%" height="15" fill="rgb(239,7,37)" fg:x="495995" fg:w="260"/><text x="94.3289%" y="735.50"></text></g><g><title>load_elf_binary (56 samples, 0.01%)</title><rect x="94.1310%" y="693" width="0.0106%" height="15" fill="rgb(215,31,37)" fg:x="496270" fg:w="56"/><text x="94.3810%" y="703.50"></text></g><g><title>begin_new_exec (56 samples, 0.01%)</title><rect x="94.1310%" y="677" width="0.0106%" height="15" fill="rgb(224,83,33)" fg:x="496270" fg:w="56"/><text x="94.3810%" y="687.50"></text></g><g><title>bprm_execve (97 samples, 0.02%)</title><rect x="94.1297%" y="709" width="0.0184%" height="15" fill="rgb(239,55,3)" fg:x="496263" fg:w="97"/><text x="94.3797%" y="719.50"></text></g><g><title>do_execveat_common (139 samples, 0.03%)</title><rect x="94.1284%" y="725" width="0.0264%" height="15" fill="rgb(247,92,11)" fg:x="496256" fg:w="139"/><text x="94.3784%" y="735.50"></text></g><g><title>__x64_sys_execve (143 samples, 0.03%)</title><rect x="94.1282%" y="741" width="0.0271%" height="15" fill="rgb(239,200,7)" fg:x="496255" fg:w="143"/><text x="94.3782%" y="751.50"></text></g><g><title>update_curr (111 samples, 0.02%)</title><rect x="94.2346%" y="613" width="0.0211%" height="15" fill="rgb(227,115,8)" fg:x="496816" fg:w="111"/><text x="94.4846%" y="623.50"></text></g><g><title>dequeue_entity (297 samples, 0.06%)</title><rect x="94.2156%" y="629" width="0.0563%" height="15" fill="rgb(215,189,27)" fg:x="496716" fg:w="297"/><text x="94.4656%" y="639.50"></text></g><g><title>update_load_avg (86 samples, 0.02%)</title><rect x="94.2556%" y="613" width="0.0163%" height="15" fill="rgb(251,216,39)" fg:x="496927" fg:w="86"/><text x="94.5056%" y="623.50"></text></g><g><title>dequeue_task_fair (329 samples, 0.06%)</title><rect x="94.2103%" y="645" width="0.0624%" height="15" fill="rgb(207,29,47)" fg:x="496688" fg:w="329"/><text x="94.4603%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (2,513 samples, 0.48%)</title><rect x="94.2915%" y="629" width="0.4767%" height="15" fill="rgb(210,71,34)" fg:x="497116" fg:w="2513"/><text x="94.5415%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,478 samples, 0.47%)</title><rect x="94.2981%" y="613" width="0.4700%" height="15" fill="rgb(253,217,51)" fg:x="497151" fg:w="2478"/><text x="94.5481%" y="623.50"></text></g><g><title>native_write_msr (2,461 samples, 0.47%)</title><rect x="94.3013%" y="597" width="0.4668%" height="15" fill="rgb(222,117,46)" fg:x="497168" fg:w="2461"/><text x="94.5513%" y="607.50"></text></g><g><title>asm_sysvec_irq_work (59 samples, 0.01%)</title><rect x="94.7693%" y="629" width="0.0112%" height="15" fill="rgb(226,132,6)" fg:x="499635" fg:w="59"/><text x="95.0193%" y="639.50"></text></g><g><title>finish_task_switch (2,699 samples, 0.51%)</title><rect x="94.2727%" y="645" width="0.5119%" height="15" fill="rgb(254,145,51)" fg:x="497017" fg:w="2699"/><text x="94.5227%" y="655.50"></text></g><g><title>newidle_balance (69 samples, 0.01%)</title><rect x="94.7867%" y="629" width="0.0131%" height="15" fill="rgb(231,199,27)" fg:x="499727" fg:w="69"/><text x="95.0367%" y="639.50"></text></g><g><title>pick_next_task_fair (79 samples, 0.01%)</title><rect x="94.7850%" y="645" width="0.0150%" height="15" fill="rgb(245,158,14)" fg:x="499718" fg:w="79"/><text x="95.0350%" y="655.50"></text></g><g><title>psi_task_change (251 samples, 0.05%)</title><rect x="94.8068%" y="645" width="0.0476%" height="15" fill="rgb(240,113,14)" fg:x="499833" fg:w="251"/><text x="95.0568%" y="655.50"></text></g><g><title>psi_group_change (206 samples, 0.04%)</title><rect x="94.8154%" y="629" width="0.0391%" height="15" fill="rgb(210,20,13)" fg:x="499878" fg:w="206"/><text x="95.0654%" y="639.50"></text></g><g><title>futex_wait_queue_me (3,611 samples, 0.68%)</title><rect x="94.1784%" y="693" width="0.6849%" height="15" fill="rgb(241,144,13)" fg:x="496520" fg:w="3611"/><text x="94.4284%" y="703.50"></text></g><g><title>schedule (3,562 samples, 0.68%)</title><rect x="94.1877%" y="677" width="0.6756%" height="15" fill="rgb(235,43,34)" fg:x="496569" fg:w="3562"/><text x="94.4377%" y="687.50"></text></g><g><title>__schedule (3,538 samples, 0.67%)</title><rect x="94.1923%" y="661" width="0.6711%" height="15" fill="rgb(208,36,20)" fg:x="496593" fg:w="3538"/><text x="94.4423%" y="671.50"></text></g><g><title>futex_wait (3,767 samples, 0.71%)</title><rect x="94.1703%" y="709" width="0.7145%" height="15" fill="rgb(239,204,10)" fg:x="496477" fg:w="3767"/><text x="94.4203%" y="719.50"></text></g><g><title>futex_wait_setup (113 samples, 0.02%)</title><rect x="94.8634%" y="693" width="0.0214%" height="15" fill="rgb(217,84,43)" fg:x="500131" fg:w="113"/><text x="95.1134%" y="703.50"></text></g><g><title>select_task_rq_fair (58 samples, 0.01%)</title><rect x="94.9098%" y="661" width="0.0110%" height="15" fill="rgb(241,170,50)" fg:x="500376" fg:w="58"/><text x="95.1598%" y="671.50"></text></g><g><title>enqueue_task_fair (63 samples, 0.01%)</title><rect x="94.9227%" y="645" width="0.0119%" height="15" fill="rgb(226,205,29)" fg:x="500444" fg:w="63"/><text x="95.1727%" y="655.50"></text></g><g><title>ttwu_do_activate (145 samples, 0.03%)</title><rect x="94.9216%" y="661" width="0.0275%" height="15" fill="rgb(233,113,1)" fg:x="500438" fg:w="145"/><text x="95.1716%" y="671.50"></text></g><g><title>psi_task_change (76 samples, 0.01%)</title><rect x="94.9347%" y="645" width="0.0144%" height="15" fill="rgb(253,98,13)" fg:x="500507" fg:w="76"/><text x="95.1847%" y="655.50"></text></g><g><title>psi_group_change (71 samples, 0.01%)</title><rect x="94.9356%" y="629" width="0.0135%" height="15" fill="rgb(211,115,12)" fg:x="500512" fg:w="71"/><text x="95.1856%" y="639.50"></text></g><g><title>__x64_sys_futex (4,168 samples, 0.79%)</title><rect x="94.1642%" y="741" width="0.7906%" height="15" fill="rgb(208,12,16)" fg:x="496445" fg:w="4168"/><text x="94.4142%" y="751.50"></text></g><g><title>do_futex (4,155 samples, 0.79%)</title><rect x="94.1667%" y="725" width="0.7881%" height="15" fill="rgb(237,193,54)" fg:x="496458" fg:w="4155"/><text x="94.4167%" y="735.50"></text></g><g><title>futex_wake (369 samples, 0.07%)</title><rect x="94.8848%" y="709" width="0.0700%" height="15" fill="rgb(243,22,42)" fg:x="500244" fg:w="369"/><text x="95.1348%" y="719.50"></text></g><g><title>wake_up_q (294 samples, 0.06%)</title><rect x="94.8990%" y="693" width="0.0558%" height="15" fill="rgb(233,151,36)" fg:x="500319" fg:w="294"/><text x="95.1490%" y="703.50"></text></g><g><title>try_to_wake_up (289 samples, 0.05%)</title><rect x="94.9000%" y="677" width="0.0548%" height="15" fill="rgb(237,57,45)" fg:x="500324" fg:w="289"/><text x="95.1500%" y="687.50"></text></g><g><title>__split_vma (72 samples, 0.01%)</title><rect x="94.9631%" y="693" width="0.0137%" height="15" fill="rgb(221,88,17)" fg:x="500657" fg:w="72"/><text x="95.2131%" y="703.50"></text></g><g><title>flush_tlb_mm_range (53 samples, 0.01%)</title><rect x="94.9940%" y="661" width="0.0101%" height="15" fill="rgb(230,79,15)" fg:x="500820" fg:w="53"/><text x="95.2440%" y="671.50"></text></g><g><title>free_unref_page_list (61 samples, 0.01%)</title><rect x="95.0181%" y="645" width="0.0116%" height="15" fill="rgb(213,57,13)" fg:x="500947" fg:w="61"/><text x="95.2681%" y="655.50"></text></g><g><title>tlb_finish_mmu (206 samples, 0.04%)</title><rect x="94.9935%" y="677" width="0.0391%" height="15" fill="rgb(222,116,39)" fg:x="500817" fg:w="206"/><text x="95.2435%" y="687.50"></text></g><g><title>release_pages (136 samples, 0.03%)</title><rect x="95.0068%" y="661" width="0.0258%" height="15" fill="rgb(245,107,2)" fg:x="500887" fg:w="136"/><text x="95.2568%" y="671.50"></text></g><g><title>unmap_page_range (130 samples, 0.02%)</title><rect x="95.0335%" y="661" width="0.0247%" height="15" fill="rgb(238,1,10)" fg:x="501028" fg:w="130"/><text x="95.2835%" y="671.50"></text></g><g><title>unmap_region (401 samples, 0.08%)</title><rect x="94.9827%" y="693" width="0.0761%" height="15" fill="rgb(249,4,48)" fg:x="500760" fg:w="401"/><text x="95.2327%" y="703.50"></text></g><g><title>unmap_vmas (135 samples, 0.03%)</title><rect x="95.0331%" y="677" width="0.0256%" height="15" fill="rgb(223,151,18)" fg:x="501026" fg:w="135"/><text x="95.2831%" y="687.50"></text></g><g><title>__do_munmap (514 samples, 0.10%)</title><rect x="94.9616%" y="709" width="0.0975%" height="15" fill="rgb(227,65,43)" fg:x="500649" fg:w="514"/><text x="95.2116%" y="719.50"></text></g><g><title>__vm_munmap (516 samples, 0.10%)</title><rect x="94.9616%" y="725" width="0.0979%" height="15" fill="rgb(218,40,45)" fg:x="500649" fg:w="516"/><text x="95.2116%" y="735.50"></text></g><g><title>__x64_sys_munmap (520 samples, 0.10%)</title><rect x="94.9614%" y="741" width="0.0986%" height="15" fill="rgb(252,121,31)" fg:x="500648" fg:w="520"/><text x="95.2114%" y="751.50"></text></g><g><title>do_filp_open (78 samples, 0.01%)</title><rect x="95.0610%" y="709" width="0.0148%" height="15" fill="rgb(219,158,43)" fg:x="501173" fg:w="78"/><text x="95.3110%" y="719.50"></text></g><g><title>path_openat (78 samples, 0.01%)</title><rect x="95.0610%" y="693" width="0.0148%" height="15" fill="rgb(231,162,42)" fg:x="501173" fg:w="78"/><text x="95.3110%" y="703.50"></text></g><g><title>__x64_sys_open (95 samples, 0.02%)</title><rect x="95.0601%" y="741" width="0.0180%" height="15" fill="rgb(217,179,25)" fg:x="501168" fg:w="95"/><text x="95.3101%" y="751.50"></text></g><g><title>do_sys_openat2 (93 samples, 0.02%)</title><rect x="95.0604%" y="725" width="0.0176%" height="15" fill="rgb(206,212,31)" fg:x="501170" fg:w="93"/><text x="95.3104%" y="735.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="95.1035%" y="693" width="0.0118%" height="15" fill="rgb(235,144,12)" fg:x="501397" fg:w="62"/><text x="95.3535%" y="703.50"></text></g><g><title>__alloc_fd (168 samples, 0.03%)</title><rect x="95.0891%" y="709" width="0.0319%" height="15" fill="rgb(213,51,10)" fg:x="501321" fg:w="168"/><text x="95.3391%" y="719.50"></text></g><g><title>build_open_flags (72 samples, 0.01%)</title><rect x="95.1308%" y="709" width="0.0137%" height="15" fill="rgb(231,145,14)" fg:x="501541" fg:w="72"/><text x="95.3808%" y="719.50"></text></g><g><title>allocate_slab (63 samples, 0.01%)</title><rect x="95.2543%" y="597" width="0.0119%" height="15" fill="rgb(235,15,28)" fg:x="502192" fg:w="63"/><text x="95.5043%" y="607.50"></text></g><g><title>__slab_alloc (190 samples, 0.04%)</title><rect x="95.2378%" y="629" width="0.0360%" height="15" fill="rgb(237,206,10)" fg:x="502105" fg:w="190"/><text x="95.4878%" y="639.50"></text></g><g><title>___slab_alloc (179 samples, 0.03%)</title><rect x="95.2399%" y="613" width="0.0340%" height="15" fill="rgb(236,227,27)" fg:x="502116" fg:w="179"/><text x="95.4899%" y="623.50"></text></g><g><title>__mod_memcg_lruvec_state (93 samples, 0.02%)</title><rect x="95.3269%" y="613" width="0.0176%" height="15" fill="rgb(246,83,35)" fg:x="502575" fg:w="93"/><text x="95.5769%" y="623.50"></text></g><g><title>__mod_memcg_state.part.0 (63 samples, 0.01%)</title><rect x="95.3326%" y="597" width="0.0119%" height="15" fill="rgb(220,136,24)" fg:x="502605" fg:w="63"/><text x="95.5826%" y="607.50"></text></g><g><title>memcg_slab_post_alloc_hook (411 samples, 0.08%)</title><rect x="95.2738%" y="629" width="0.0780%" height="15" fill="rgb(217,3,25)" fg:x="502295" fg:w="411"/><text x="95.5238%" y="639.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="95.3523%" y="629" width="0.0123%" height="15" fill="rgb(239,24,14)" fg:x="502709" fg:w="65"/><text x="95.6023%" y="639.50"></text></g><g><title>get_obj_cgroup_from_current (182 samples, 0.03%)</title><rect x="95.3762%" y="613" width="0.0345%" height="15" fill="rgb(244,16,53)" fg:x="502835" fg:w="182"/><text x="95.6262%" y="623.50"></text></g><g><title>obj_cgroup_charge (136 samples, 0.03%)</title><rect x="95.4108%" y="613" width="0.0258%" height="15" fill="rgb(208,175,44)" fg:x="503017" fg:w="136"/><text x="95.6608%" y="623.50"></text></g><g><title>kmem_cache_alloc (1,241 samples, 0.24%)</title><rect x="95.2014%" y="645" width="0.2354%" height="15" fill="rgb(252,18,48)" fg:x="501913" fg:w="1241"/><text x="95.4514%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (378 samples, 0.07%)</title><rect x="95.3651%" y="629" width="0.0717%" height="15" fill="rgb(234,199,32)" fg:x="502776" fg:w="378"/><text x="95.6151%" y="639.50"></text></g><g><title>apparmor_file_alloc_security (133 samples, 0.03%)</title><rect x="95.4413%" y="629" width="0.0252%" height="15" fill="rgb(225,77,54)" fg:x="503178" fg:w="133"/><text x="95.6913%" y="639.50"></text></g><g><title>__alloc_file (1,696 samples, 0.32%)</title><rect x="95.1765%" y="661" width="0.3217%" height="15" fill="rgb(225,42,25)" fg:x="501782" fg:w="1696"/><text x="95.4265%" y="671.50"></text></g><g><title>security_file_alloc (324 samples, 0.06%)</title><rect x="95.4368%" y="645" width="0.0615%" height="15" fill="rgb(242,227,46)" fg:x="503154" fg:w="324"/><text x="95.6868%" y="655.50"></text></g><g><title>kmem_cache_alloc (167 samples, 0.03%)</title><rect x="95.4665%" y="629" width="0.0317%" height="15" fill="rgb(246,197,35)" fg:x="503311" fg:w="167"/><text x="95.7165%" y="639.50"></text></g><g><title>alloc_empty_file (1,739 samples, 0.33%)</title><rect x="95.1712%" y="677" width="0.3298%" height="15" fill="rgb(215,159,26)" fg:x="501754" fg:w="1739"/><text x="95.4212%" y="687.50"></text></g><g><title>__legitimize_mnt (77 samples, 0.01%)</title><rect x="95.5113%" y="629" width="0.0146%" height="15" fill="rgb(212,194,50)" fg:x="503547" fg:w="77"/><text x="95.7613%" y="639.50"></text></g><g><title>__legitimize_path (169 samples, 0.03%)</title><rect x="95.5079%" y="645" width="0.0321%" height="15" fill="rgb(246,132,1)" fg:x="503529" fg:w="169"/><text x="95.7579%" y="655.50"></text></g><g><title>lockref_get_not_dead (74 samples, 0.01%)</title><rect x="95.5259%" y="629" width="0.0140%" height="15" fill="rgb(217,71,7)" fg:x="503624" fg:w="74"/><text x="95.7759%" y="639.50"></text></g><g><title>complete_walk (220 samples, 0.04%)</title><rect x="95.5011%" y="677" width="0.0417%" height="15" fill="rgb(252,59,32)" fg:x="503493" fg:w="220"/><text x="95.7511%" y="687.50"></text></g><g><title>try_to_unlazy (206 samples, 0.04%)</title><rect x="95.5037%" y="661" width="0.0391%" height="15" fill="rgb(253,204,25)" fg:x="503507" fg:w="206"/><text x="95.7537%" y="671.50"></text></g><g><title>errseq_sample (95 samples, 0.02%)</title><rect x="95.5856%" y="661" width="0.0180%" height="15" fill="rgb(232,21,16)" fg:x="503939" fg:w="95"/><text x="95.8356%" y="671.50"></text></g><g><title>lockref_get (63 samples, 0.01%)</title><rect x="95.6075%" y="661" width="0.0119%" height="15" fill="rgb(248,90,29)" fg:x="504054" fg:w="63"/><text x="95.8575%" y="671.50"></text></g><g><title>apparmor_file_open (133 samples, 0.03%)</title><rect x="95.6289%" y="645" width="0.0252%" height="15" fill="rgb(249,223,7)" fg:x="504167" fg:w="133"/><text x="95.8789%" y="655.50"></text></g><g><title>__srcu_read_lock (64 samples, 0.01%)</title><rect x="95.6721%" y="629" width="0.0121%" height="15" fill="rgb(231,119,42)" fg:x="504395" fg:w="64"/><text x="95.9221%" y="639.50"></text></g><g><title>__srcu_read_unlock (70 samples, 0.01%)</title><rect x="95.6843%" y="629" width="0.0133%" height="15" fill="rgb(215,41,35)" fg:x="504459" fg:w="70"/><text x="95.9343%" y="639.50"></text></g><g><title>tomoyo_check_open_permission (315 samples, 0.06%)</title><rect x="95.6541%" y="645" width="0.0597%" height="15" fill="rgb(220,44,45)" fg:x="504300" fg:w="315"/><text x="95.9041%" y="655.50"></text></g><g><title>tomoyo_init_request_info (66 samples, 0.01%)</title><rect x="95.7013%" y="629" width="0.0125%" height="15" fill="rgb(253,197,36)" fg:x="504549" fg:w="66"/><text x="95.9513%" y="639.50"></text></g><g><title>security_file_open (491 samples, 0.09%)</title><rect x="95.6228%" y="661" width="0.0931%" height="15" fill="rgb(245,225,54)" fg:x="504135" fg:w="491"/><text x="95.8728%" y="671.50"></text></g><g><title>do_dentry_open (917 samples, 0.17%)</title><rect x="95.5428%" y="677" width="0.1739%" height="15" fill="rgb(239,94,37)" fg:x="503713" fg:w="917"/><text x="95.7928%" y="687.50"></text></g><g><title>inode_permission.part.0 (236 samples, 0.04%)</title><rect x="95.7799%" y="661" width="0.0448%" height="15" fill="rgb(242,217,10)" fg:x="504963" fg:w="236"/><text x="96.0299%" y="671.50"></text></g><g><title>generic_permission (77 samples, 0.01%)</title><rect x="95.8100%" y="645" width="0.0146%" height="15" fill="rgb(250,193,7)" fg:x="505122" fg:w="77"/><text x="96.0600%" y="655.50"></text></g><g><title>lookup_fast (339 samples, 0.06%)</title><rect x="95.8451%" y="645" width="0.0643%" height="15" fill="rgb(230,104,19)" fg:x="505307" fg:w="339"/><text x="96.0951%" y="655.50"></text></g><g><title>__d_lookup_rcu (239 samples, 0.05%)</title><rect x="95.8641%" y="629" width="0.0453%" height="15" fill="rgb(230,181,4)" fg:x="505407" fg:w="239"/><text x="96.1141%" y="639.50"></text></g><g><title>link_path_walk.part.0 (1,078 samples, 0.20%)</title><rect x="95.7224%" y="677" width="0.2045%" height="15" fill="rgb(216,219,49)" fg:x="504660" fg:w="1078"/><text x="95.9724%" y="687.50"></text></g><g><title>walk_component (499 samples, 0.09%)</title><rect x="95.8322%" y="661" width="0.0946%" height="15" fill="rgb(254,144,0)" fg:x="505239" fg:w="499"/><text x="96.0822%" y="671.50"></text></g><g><title>step_into (92 samples, 0.02%)</title><rect x="95.9094%" y="645" width="0.0175%" height="15" fill="rgb(205,209,38)" fg:x="505646" fg:w="92"/><text x="96.1594%" y="655.50"></text></g><g><title>__d_lookup_rcu (525 samples, 0.10%)</title><rect x="95.9307%" y="661" width="0.0996%" height="15" fill="rgb(240,21,42)" fg:x="505758" fg:w="525"/><text x="96.1807%" y="671.50"></text></g><g><title>lookup_fast (546 samples, 0.10%)</title><rect x="95.9269%" y="677" width="0.1036%" height="15" fill="rgb(241,132,3)" fg:x="505738" fg:w="546"/><text x="96.1769%" y="687.50"></text></g><g><title>inode_permission.part.0 (150 samples, 0.03%)</title><rect x="96.0557%" y="661" width="0.0285%" height="15" fill="rgb(225,14,2)" fg:x="506417" fg:w="150"/><text x="96.3057%" y="671.50"></text></g><g><title>may_open (288 samples, 0.05%)</title><rect x="96.0304%" y="677" width="0.0546%" height="15" fill="rgb(210,141,35)" fg:x="506284" fg:w="288"/><text x="96.2804%" y="687.50"></text></g><g><title>__fget_light (138 samples, 0.03%)</title><rect x="96.0934%" y="661" width="0.0262%" height="15" fill="rgb(251,14,44)" fg:x="506616" fg:w="138"/><text x="96.3434%" y="671.50"></text></g><g><title>__fget_files (131 samples, 0.02%)</title><rect x="96.0947%" y="645" width="0.0248%" height="15" fill="rgb(247,48,18)" fg:x="506623" fg:w="131"/><text x="96.3447%" y="655.50"></text></g><g><title>path_init (240 samples, 0.05%)</title><rect x="96.0853%" y="677" width="0.0455%" height="15" fill="rgb(225,0,40)" fg:x="506573" fg:w="240"/><text x="96.3353%" y="687.50"></text></g><g><title>fput_many (55 samples, 0.01%)</title><rect x="96.1203%" y="661" width="0.0104%" height="15" fill="rgb(221,31,33)" fg:x="506758" fg:w="55"/><text x="96.3703%" y="671.50"></text></g><g><title>dput (77 samples, 0.01%)</title><rect x="96.1391%" y="661" width="0.0146%" height="15" fill="rgb(237,42,40)" fg:x="506857" fg:w="77"/><text x="96.3891%" y="671.50"></text></g><g><title>lockref_put_or_lock (55 samples, 0.01%)</title><rect x="96.1433%" y="645" width="0.0104%" height="15" fill="rgb(233,51,29)" fg:x="506879" fg:w="55"/><text x="96.3933%" y="655.50"></text></g><g><title>terminate_walk (117 samples, 0.02%)</title><rect x="96.1365%" y="677" width="0.0222%" height="15" fill="rgb(226,58,20)" fg:x="506843" fg:w="117"/><text x="96.3865%" y="687.50"></text></g><g><title>do_filp_open (5,358 samples, 1.02%)</title><rect x="95.1445%" y="709" width="1.0163%" height="15" fill="rgb(208,98,7)" fg:x="501613" fg:w="5358"/><text x="95.3945%" y="719.50"></text></g><g><title>path_openat (5,315 samples, 1.01%)</title><rect x="95.1526%" y="693" width="1.0081%" height="15" fill="rgb(228,143,44)" fg:x="501656" fg:w="5315"/><text x="95.4026%" y="703.50"></text></g><g><title>memset_erms (514 samples, 0.10%)</title><rect x="96.2104%" y="677" width="0.0975%" height="15" fill="rgb(246,55,38)" fg:x="507233" fg:w="514"/><text x="96.4604%" y="687.50"></text></g><g><title>kmem_cache_alloc (726 samples, 0.14%)</title><rect x="96.1820%" y="693" width="0.1377%" height="15" fill="rgb(247,87,16)" fg:x="507083" fg:w="726"/><text x="96.4320%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (62 samples, 0.01%)</title><rect x="96.3079%" y="677" width="0.0118%" height="15" fill="rgb(234,129,42)" fg:x="507747" fg:w="62"/><text x="96.5579%" y="687.50"></text></g><g><title>__check_heap_object (103 samples, 0.02%)</title><rect x="96.3688%" y="661" width="0.0195%" height="15" fill="rgb(220,82,16)" fg:x="508068" fg:w="103"/><text x="96.6188%" y="671.50"></text></g><g><title>__virt_addr_valid (138 samples, 0.03%)</title><rect x="96.3884%" y="661" width="0.0262%" height="15" fill="rgb(211,88,4)" fg:x="508171" fg:w="138"/><text x="96.6384%" y="671.50"></text></g><g><title>__check_object_size (296 samples, 0.06%)</title><rect x="96.3601%" y="677" width="0.0561%" height="15" fill="rgb(248,151,21)" fg:x="508022" fg:w="296"/><text x="96.6101%" y="687.50"></text></g><g><title>getname_flags.part.0 (1,282 samples, 0.24%)</title><rect x="96.1733%" y="709" width="0.2432%" height="15" fill="rgb(238,163,6)" fg:x="507037" fg:w="1282"/><text x="96.4233%" y="719.50"></text></g><g><title>strncpy_from_user (510 samples, 0.10%)</title><rect x="96.3197%" y="693" width="0.0967%" height="15" fill="rgb(209,183,11)" fg:x="507809" fg:w="510"/><text x="96.5697%" y="703.50"></text></g><g><title>kmem_cache_free (148 samples, 0.03%)</title><rect x="96.4164%" y="709" width="0.0281%" height="15" fill="rgb(219,37,20)" fg:x="508319" fg:w="148"/><text x="96.6664%" y="719.50"></text></g><g><title>__x64_sys_openat (7,214 samples, 1.37%)</title><rect x="95.0781%" y="741" width="1.3683%" height="15" fill="rgb(210,158,4)" fg:x="501263" fg:w="7214"/><text x="95.3281%" y="751.50"></text></g><g><title>do_sys_openat2 (7,191 samples, 1.36%)</title><rect x="95.0824%" y="725" width="1.3640%" height="15" fill="rgb(221,167,53)" fg:x="501286" fg:w="7191"/><text x="95.3324%" y="735.50"></text></g><g><title>__fget_light (677 samples, 0.13%)</title><rect x="96.5612%" y="709" width="0.1284%" height="15" fill="rgb(237,151,45)" fg:x="509082" fg:w="677"/><text x="96.8112%" y="719.50"></text></g><g><title>__fget_files (614 samples, 0.12%)</title><rect x="96.5731%" y="693" width="0.1165%" height="15" fill="rgb(231,39,3)" fg:x="509145" fg:w="614"/><text x="96.8231%" y="703.50"></text></g><g><title>_cond_resched (72 samples, 0.01%)</title><rect x="96.7533%" y="693" width="0.0137%" height="15" fill="rgb(212,167,28)" fg:x="510095" fg:w="72"/><text x="97.0033%" y="703.50"></text></g><g><title>__fdget_pos (1,322 samples, 0.25%)</title><rect x="96.5164%" y="725" width="0.2508%" height="15" fill="rgb(232,178,8)" fg:x="508846" fg:w="1322"/><text x="96.7664%" y="735.50"></text></g><g><title>mutex_lock (409 samples, 0.08%)</title><rect x="96.6896%" y="709" width="0.0776%" height="15" fill="rgb(225,151,20)" fg:x="509759" fg:w="409"/><text x="96.9396%" y="719.50"></text></g><g><title>fput_many (313 samples, 0.06%)</title><rect x="96.7706%" y="725" width="0.0594%" height="15" fill="rgb(238,3,37)" fg:x="510186" fg:w="313"/><text x="97.0206%" y="735.50"></text></g><g><title>mutex_unlock (364 samples, 0.07%)</title><rect x="96.8299%" y="725" width="0.0690%" height="15" fill="rgb(251,147,42)" fg:x="510499" fg:w="364"/><text x="97.0799%" y="735.50"></text></g><g><title>__fsnotify_parent (450 samples, 0.09%)</title><rect x="97.0048%" y="709" width="0.0854%" height="15" fill="rgb(208,173,10)" fg:x="511421" fg:w="450"/><text x="97.2548%" y="719.50"></text></g><g><title>btrfs_file_read_iter (90 samples, 0.02%)</title><rect x="97.1615%" y="693" width="0.0171%" height="15" fill="rgb(246,225,4)" fg:x="512247" fg:w="90"/><text x="97.4115%" y="703.50"></text></g><g><title>_cond_resched (101 samples, 0.02%)</title><rect x="97.4062%" y="677" width="0.0192%" height="15" fill="rgb(248,102,6)" fg:x="513537" fg:w="101"/><text x="97.6562%" y="687.50"></text></g><g><title>_cond_resched (59 samples, 0.01%)</title><rect x="97.5259%" y="661" width="0.0112%" height="15" fill="rgb(232,6,21)" fg:x="514168" fg:w="59"/><text x="97.7759%" y="671.50"></text></g><g><title>handle_mm_fault (72 samples, 0.01%)</title><rect x="98.2277%" y="597" width="0.0137%" height="15" fill="rgb(221,179,22)" fg:x="517868" fg:w="72"/><text x="98.4777%" y="607.50"></text></g><g><title>do_user_addr_fault (77 samples, 0.01%)</title><rect x="98.2271%" y="613" width="0.0146%" height="15" fill="rgb(252,50,20)" fg:x="517865" fg:w="77"/><text x="98.4771%" y="623.50"></text></g><g><title>asm_exc_page_fault (199 samples, 0.04%)</title><rect x="98.2041%" y="645" width="0.0377%" height="15" fill="rgb(222,56,38)" fg:x="517744" fg:w="199"/><text x="98.4541%" y="655.50"></text></g><g><title>exc_page_fault (79 samples, 0.01%)</title><rect x="98.2269%" y="629" width="0.0150%" height="15" fill="rgb(206,193,29)" fg:x="517864" fg:w="79"/><text x="98.4769%" y="639.50"></text></g><g><title>copy_user_enhanced_fast_string (3,744 samples, 0.71%)</title><rect x="97.5372%" y="661" width="0.7102%" height="15" fill="rgb(239,192,45)" fg:x="514228" fg:w="3744"/><text x="97.7872%" y="671.50"></text></g><g><title>copy_page_to_iter (4,357 samples, 0.83%)</title><rect x="97.4268%" y="677" width="0.8264%" height="15" fill="rgb(254,18,36)" fg:x="513646" fg:w="4357"/><text x="97.6768%" y="687.50"></text></g><g><title>pagecache_get_page (1,846 samples, 0.35%)</title><rect x="98.2614%" y="677" width="0.3501%" height="15" fill="rgb(221,127,11)" fg:x="518046" fg:w="1846"/><text x="98.5114%" y="687.50"></text></g><g><title>find_get_entry (1,613 samples, 0.31%)</title><rect x="98.3056%" y="661" width="0.3059%" height="15" fill="rgb(234,146,35)" fg:x="518279" fg:w="1613"/><text x="98.5556%" y="671.50"></text></g><g><title>xas_load (418 samples, 0.08%)</title><rect x="98.5323%" y="645" width="0.0793%" height="15" fill="rgb(254,201,37)" fg:x="519474" fg:w="418"/><text x="98.7823%" y="655.50"></text></g><g><title>xas_start (243 samples, 0.05%)</title><rect x="98.5655%" y="629" width="0.0461%" height="15" fill="rgb(211,202,23)" fg:x="519649" fg:w="243"/><text x="98.8155%" y="639.50"></text></g><g><title>atime_needs_update (468 samples, 0.09%)</title><rect x="98.6300%" y="661" width="0.0888%" height="15" fill="rgb(237,91,2)" fg:x="519989" fg:w="468"/><text x="98.8800%" y="671.50"></text></g><g><title>current_time (259 samples, 0.05%)</title><rect x="98.6696%" y="645" width="0.0491%" height="15" fill="rgb(226,228,36)" fg:x="520198" fg:w="259"/><text x="98.9196%" y="655.50"></text></g><g><title>ktime_get_coarse_real_ts64 (87 samples, 0.02%)</title><rect x="98.7022%" y="629" width="0.0165%" height="15" fill="rgb(213,63,50)" fg:x="520370" fg:w="87"/><text x="98.9522%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (100 samples, 0.02%)</title><rect x="98.7256%" y="629" width="0.0190%" height="15" fill="rgb(235,194,19)" fg:x="520493" fg:w="100"/><text x="98.9756%" y="639.50"></text></g><g><title>btrfs_update_inode (114 samples, 0.02%)</title><rect x="98.7250%" y="645" width="0.0216%" height="15" fill="rgb(207,204,18)" fg:x="520490" fg:w="114"/><text x="98.9750%" y="655.50"></text></g><g><title>btrfs_dirty_inode (187 samples, 0.04%)</title><rect x="98.7187%" y="661" width="0.0355%" height="15" fill="rgb(248,8,7)" fg:x="520457" fg:w="187"/><text x="98.9687%" y="671.50"></text></g><g><title>generic_file_buffered_read (8,310 samples, 1.58%)</title><rect x="97.1786%" y="693" width="1.5762%" height="15" fill="rgb(223,145,47)" fg:x="512337" fg:w="8310"/><text x="97.4286%" y="703.50"></text></g><g><title>touch_atime (755 samples, 0.14%)</title><rect x="98.6116%" y="677" width="0.1432%" height="15" fill="rgb(228,84,11)" fg:x="519892" fg:w="755"/><text x="98.8616%" y="687.50"></text></g><g><title>new_sync_read (8,821 samples, 1.67%)</title><rect x="97.0915%" y="709" width="1.6731%" height="15" fill="rgb(218,76,45)" fg:x="511878" fg:w="8821"/><text x="97.3415%" y="719.50"></text></g><g><title>rw_verify_area (107 samples, 0.02%)</title><rect x="98.7646%" y="709" width="0.0203%" height="15" fill="rgb(223,80,15)" fg:x="520699" fg:w="107"/><text x="99.0146%" y="719.50"></text></g><g><title>aa_file_perm (165 samples, 0.03%)</title><rect x="98.8458%" y="677" width="0.0313%" height="15" fill="rgb(219,218,33)" fg:x="521127" fg:w="165"/><text x="99.0958%" y="687.50"></text></g><g><title>apparmor_file_permission (323 samples, 0.06%)</title><rect x="98.8160%" y="693" width="0.0613%" height="15" fill="rgb(208,51,11)" fg:x="520970" fg:w="323"/><text x="99.0660%" y="703.50"></text></g><g><title>ksys_read (12,687 samples, 2.41%)</title><rect x="96.4711%" y="741" width="2.4064%" height="15" fill="rgb(229,165,39)" fg:x="508607" fg:w="12687"/><text x="96.7211%" y="751.50">ks..</text></g><g><title>vfs_read (10,431 samples, 1.98%)</title><rect x="96.8990%" y="725" width="1.9785%" height="15" fill="rgb(241,100,24)" fg:x="510863" fg:w="10431"/><text x="97.1490%" y="735.50">v..</text></g><g><title>security_file_permission (488 samples, 0.09%)</title><rect x="98.7849%" y="709" width="0.0926%" height="15" fill="rgb(228,14,23)" fg:x="520806" fg:w="488"/><text x="99.0349%" y="719.50"></text></g><g><title>syscall_enter_from_user_mode (130 samples, 0.02%)</title><rect x="98.8788%" y="741" width="0.0247%" height="15" fill="rgb(247,116,52)" fg:x="521301" fg:w="130"/><text x="99.1288%" y="751.50"></text></g><g><title>perf_event_mmap (101 samples, 0.02%)</title><rect x="98.9135%" y="693" width="0.0192%" height="15" fill="rgb(216,149,33)" fg:x="521484" fg:w="101"/><text x="99.1635%" y="703.50"></text></g><g><title>perf_iterate_sb (84 samples, 0.02%)</title><rect x="98.9168%" y="677" width="0.0159%" height="15" fill="rgb(238,142,29)" fg:x="521501" fg:w="84"/><text x="99.1668%" y="687.50"></text></g><g><title>perf_iterate_ctx (72 samples, 0.01%)</title><rect x="98.9190%" y="661" width="0.0137%" height="15" fill="rgb(224,83,40)" fg:x="521513" fg:w="72"/><text x="99.1690%" y="671.50"></text></g><g><title>vma_merge (54 samples, 0.01%)</title><rect x="98.9352%" y="693" width="0.0102%" height="15" fill="rgb(234,165,11)" fg:x="521598" fg:w="54"/><text x="99.1852%" y="703.50"></text></g><g><title>do_mmap (222 samples, 0.04%)</title><rect x="98.9039%" y="725" width="0.0421%" height="15" fill="rgb(215,96,23)" fg:x="521433" fg:w="222"/><text x="99.1539%" y="735.50"></text></g><g><title>mmap_region (188 samples, 0.04%)</title><rect x="98.9103%" y="709" width="0.0357%" height="15" fill="rgb(233,179,26)" fg:x="521467" fg:w="188"/><text x="99.1603%" y="719.50"></text></g><g><title>do_syscall_64 (27,445 samples, 5.21%)</title><rect x="93.7465%" y="757" width="5.2057%" height="15" fill="rgb(225,129,33)" fg:x="494243" fg:w="27445"/><text x="93.9965%" y="767.50">do_sys..</text></g><g><title>vm_mmap_pgoff (257 samples, 0.05%)</title><rect x="98.9035%" y="741" width="0.0487%" height="15" fill="rgb(237,49,13)" fg:x="521431" fg:w="257"/><text x="99.1535%" y="751.50"></text></g><g><title>fpregs_assert_state_consistent (101 samples, 0.02%)</title><rect x="99.0349%" y="725" width="0.0192%" height="15" fill="rgb(211,3,31)" fg:x="522124" fg:w="101"/><text x="99.2849%" y="735.50"></text></g><g><title>switch_fpu_return (64 samples, 0.01%)</title><rect x="99.0577%" y="725" width="0.0121%" height="15" fill="rgb(216,152,19)" fg:x="522244" fg:w="64"/><text x="99.3077%" y="735.50"></text></g><g><title>btrfs_release_file (137 samples, 0.03%)</title><rect x="99.1108%" y="693" width="0.0260%" height="15" fill="rgb(251,121,35)" fg:x="522524" fg:w="137"/><text x="99.3608%" y="703.50"></text></g><g><title>lockref_put_or_lock (79 samples, 0.01%)</title><rect x="99.1484%" y="677" width="0.0150%" height="15" fill="rgb(210,217,47)" fg:x="522722" fg:w="79"/><text x="99.3984%" y="687.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="99.1520%" y="661" width="0.0114%" height="15" fill="rgb(244,116,22)" fg:x="522741" fg:w="60"/><text x="99.4020%" y="671.50"></text></g><g><title>dput (144 samples, 0.03%)</title><rect x="99.1368%" y="693" width="0.0273%" height="15" fill="rgb(228,17,21)" fg:x="522661" fg:w="144"/><text x="99.3868%" y="703.50"></text></g><g><title>kmem_cache_free (141 samples, 0.03%)</title><rect x="99.1641%" y="693" width="0.0267%" height="15" fill="rgb(240,149,34)" fg:x="522805" fg:w="141"/><text x="99.4141%" y="703.50"></text></g><g><title>__fput (723 samples, 0.14%)</title><rect x="99.0808%" y="709" width="0.1371%" height="15" fill="rgb(208,125,47)" fg:x="522366" fg:w="723"/><text x="99.3308%" y="719.50"></text></g><g><title>security_file_free (80 samples, 0.02%)</title><rect x="99.2028%" y="693" width="0.0152%" height="15" fill="rgb(249,186,39)" fg:x="523009" fg:w="80"/><text x="99.4528%" y="703.50"></text></g><g><title>apparmor_file_free_security (63 samples, 0.01%)</title><rect x="99.2060%" y="677" width="0.0119%" height="15" fill="rgb(240,220,33)" fg:x="523026" fg:w="63"/><text x="99.4560%" y="687.50"></text></g><g><title>_raw_spin_lock_irq (66 samples, 0.01%)</title><rect x="99.2200%" y="709" width="0.0125%" height="15" fill="rgb(243,110,23)" fg:x="523100" fg:w="66"/><text x="99.4700%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29,506 samples, 5.60%)</title><rect x="93.6826%" y="773" width="5.5966%" height="15" fill="rgb(219,163,46)" fg:x="493906" fg:w="29506"/><text x="93.9326%" y="783.50">entry_S..</text></g><g><title>syscall_exit_to_user_mode (1,724 samples, 0.33%)</title><rect x="98.9522%" y="757" width="0.3270%" height="15" fill="rgb(216,126,30)" fg:x="521688" fg:w="1724"/><text x="99.2022%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (1,586 samples, 0.30%)</title><rect x="98.9784%" y="741" width="0.3008%" height="15" fill="rgb(208,139,11)" fg:x="521826" fg:w="1586"/><text x="99.2284%" y="751.50"></text></g><g><title>task_work_run (1,104 samples, 0.21%)</title><rect x="99.0698%" y="725" width="0.2094%" height="15" fill="rgb(213,118,36)" fg:x="522308" fg:w="1104"/><text x="99.3198%" y="735.50"></text></g><g><title>call_rcu (245 samples, 0.05%)</title><rect x="99.2328%" y="709" width="0.0465%" height="15" fill="rgb(226,43,17)" fg:x="523167" fg:w="245"/><text x="99.4828%" y="719.50"></text></g><g><title>rcu_segcblist_enqueue (128 samples, 0.02%)</title><rect x="99.2549%" y="693" width="0.0243%" height="15" fill="rgb(254,217,4)" fg:x="523284" fg:w="128"/><text x="99.5049%" y="703.50"></text></g><g><title>error_entry (235 samples, 0.04%)</title><rect x="99.2792%" y="773" width="0.0446%" height="15" fill="rgb(210,134,47)" fg:x="523412" fg:w="235"/><text x="99.5292%" y="783.50"></text></g><g><title>sync_regs (208 samples, 0.04%)</title><rect x="99.2843%" y="757" width="0.0395%" height="15" fill="rgb(237,24,49)" fg:x="523439" fg:w="208"/><text x="99.5343%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (996 samples, 0.19%)</title><rect x="99.3460%" y="725" width="0.1889%" height="15" fill="rgb(251,39,46)" fg:x="523764" fg:w="996"/><text x="99.5960%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (965 samples, 0.18%)</title><rect x="99.3519%" y="709" width="0.1830%" height="15" fill="rgb(251,220,3)" fg:x="523795" fg:w="965"/><text x="99.6019%" y="719.50"></text></g><g><title>native_write_msr (961 samples, 0.18%)</title><rect x="99.3526%" y="693" width="0.1823%" height="15" fill="rgb(228,105,12)" fg:x="523799" fg:w="961"/><text x="99.6026%" y="703.50"></text></g><g><title>schedule_tail (1,095 samples, 0.21%)</title><rect x="99.3321%" y="757" width="0.2077%" height="15" fill="rgb(215,196,1)" fg:x="523691" fg:w="1095"/><text x="99.5821%" y="767.50"></text></g><g><title>finish_task_switch (1,084 samples, 0.21%)</title><rect x="99.3342%" y="741" width="0.2056%" height="15" fill="rgb(214,33,39)" fg:x="523702" fg:w="1084"/><text x="99.5842%" y="751.50"></text></g><g><title>ret_from_fork (1,120 samples, 0.21%)</title><rect x="99.3304%" y="773" width="0.2124%" height="15" fill="rgb(220,19,52)" fg:x="523682" fg:w="1120"/><text x="99.5804%" y="783.50"></text></g><g><title>syscall_return_via_sysret (322 samples, 0.06%)</title><rect x="99.5429%" y="773" width="0.0611%" height="15" fill="rgb(221,78,38)" fg:x="524802" fg:w="322"/><text x="99.7929%" y="783.50"></text></g><g><title>[zig] (61,407 samples, 11.65%)</title><rect x="87.9570%" y="789" width="11.6475%" height="15" fill="rgb(253,30,16)" fg:x="463720" fg:w="61407"/><text x="88.2070%" y="799.50">[zig]</text></g><g><title>asm_exc_page_fault (587 samples, 0.11%)</title><rect x="99.6049%" y="789" width="0.1113%" height="15" fill="rgb(242,65,0)" fg:x="525129" fg:w="587"/><text x="99.8549%" y="799.50"></text></g><g><title>page_remove_rmap (83 samples, 0.02%)</title><rect x="99.7804%" y="613" width="0.0157%" height="15" fill="rgb(235,201,12)" fg:x="526054" fg:w="83"/><text x="100.0304%" y="623.50"></text></g><g><title>unmap_page_range (222 samples, 0.04%)</title><rect x="99.7563%" y="629" width="0.0421%" height="15" fill="rgb(233,161,9)" fg:x="525927" fg:w="222"/><text x="100.0063%" y="639.50"></text></g><g><title>begin_new_exec (270 samples, 0.05%)</title><rect x="99.7474%" y="693" width="0.0512%" height="15" fill="rgb(241,207,41)" fg:x="525880" fg:w="270"/><text x="99.9974%" y="703.50"></text></g><g><title>mmput (265 samples, 0.05%)</title><rect x="99.7483%" y="677" width="0.0503%" height="15" fill="rgb(212,69,46)" fg:x="525885" fg:w="265"/><text x="99.9983%" y="687.50"></text></g><g><title>exit_mmap (265 samples, 0.05%)</title><rect x="99.7483%" y="661" width="0.0503%" height="15" fill="rgb(239,69,45)" fg:x="525885" fg:w="265"/><text x="99.9983%" y="671.50"></text></g><g><title>unmap_vmas (224 samples, 0.04%)</title><rect x="99.7561%" y="645" width="0.0425%" height="15" fill="rgb(242,117,48)" fg:x="525926" fg:w="224"/><text x="100.0061%" y="655.50"></text></g><g><title>__x64_sys_execve (316 samples, 0.06%)</title><rect x="99.7455%" y="757" width="0.0599%" height="15" fill="rgb(228,41,36)" fg:x="525870" fg:w="316"/><text x="99.9955%" y="767.50"></text></g><g><title>do_execveat_common (316 samples, 0.06%)</title><rect x="99.7455%" y="741" width="0.0599%" height="15" fill="rgb(212,3,32)" fg:x="525870" fg:w="316"/><text x="99.9955%" y="751.50"></text></g><g><title>bprm_execve (316 samples, 0.06%)</title><rect x="99.7455%" y="725" width="0.0599%" height="15" fill="rgb(233,41,49)" fg:x="525870" fg:w="316"/><text x="99.9955%" y="735.50"></text></g><g><title>load_elf_binary (316 samples, 0.06%)</title><rect x="99.7455%" y="709" width="0.0599%" height="15" fill="rgb(252,170,49)" fg:x="525870" fg:w="316"/><text x="99.9955%" y="719.50"></text></g><g><title>tlb_finish_mmu (76 samples, 0.01%)</title><rect x="99.8086%" y="677" width="0.0144%" height="15" fill="rgb(229,53,26)" fg:x="526203" fg:w="76"/><text x="100.0586%" y="687.50"></text></g><g><title>page_remove_rmap (89 samples, 0.02%)</title><rect x="99.8600%" y="645" width="0.0169%" height="15" fill="rgb(217,157,12)" fg:x="526474" fg:w="89"/><text x="100.1100%" y="655.50"></text></g><g><title>__x64_sys_exit_group (419 samples, 0.08%)</title><rect x="99.8062%" y="757" width="0.0795%" height="15" fill="rgb(227,17,9)" fg:x="526190" fg:w="419"/><text x="100.0562%" y="767.50"></text></g><g><title>do_group_exit (419 samples, 0.08%)</title><rect x="99.8062%" y="741" width="0.0795%" height="15" fill="rgb(218,84,12)" fg:x="526190" fg:w="419"/><text x="100.0562%" y="751.50"></text></g><g><title>do_exit (419 samples, 0.08%)</title><rect x="99.8062%" y="725" width="0.0795%" height="15" fill="rgb(212,79,24)" fg:x="526190" fg:w="419"/><text x="100.0562%" y="735.50"></text></g><g><title>mmput (413 samples, 0.08%)</title><rect x="99.8073%" y="709" width="0.0783%" height="15" fill="rgb(217,222,37)" fg:x="526196" fg:w="413"/><text x="100.0573%" y="719.50"></text></g><g><title>exit_mmap (413 samples, 0.08%)</title><rect x="99.8073%" y="693" width="0.0783%" height="15" fill="rgb(246,208,8)" fg:x="526196" fg:w="413"/><text x="100.0573%" y="703.50"></text></g><g><title>unmap_vmas (330 samples, 0.06%)</title><rect x="99.8230%" y="677" width="0.0626%" height="15" fill="rgb(244,133,10)" fg:x="526279" fg:w="330"/><text x="100.0730%" y="687.50"></text></g><g><title>unmap_page_range (330 samples, 0.06%)</title><rect x="99.8230%" y="661" width="0.0626%" height="15" fill="rgb(209,219,41)" fg:x="526279" fg:w="330"/><text x="100.0730%" y="671.50"></text></g><g><title>do_syscall_64 (747 samples, 0.14%)</title><rect x="99.7455%" y="773" width="0.1417%" height="15" fill="rgb(253,175,45)" fg:x="525870" fg:w="747"/><text x="99.9955%" y="783.50"></text></g><g><title>page_remove_rmap (98 samples, 0.02%)</title><rect x="99.9243%" y="613" width="0.0186%" height="15" fill="rgb(235,100,37)" fg:x="526813" fg:w="98"/><text x="100.1743%" y="623.50"></text></g><g><title>mmput (282 samples, 0.05%)</title><rect x="99.8911%" y="677" width="0.0535%" height="15" fill="rgb(225,87,19)" fg:x="526638" fg:w="282"/><text x="100.1411%" y="687.50"></text></g><g><title>exit_mmap (281 samples, 0.05%)</title><rect x="99.8913%" y="661" width="0.0533%" height="15" fill="rgb(217,152,17)" fg:x="526639" fg:w="281"/><text x="100.1413%" y="671.50"></text></g><g><title>unmap_vmas (240 samples, 0.05%)</title><rect x="99.8991%" y="645" width="0.0455%" height="15" fill="rgb(235,72,13)" fg:x="526680" fg:w="240"/><text x="100.1491%" y="655.50"></text></g><g><title>unmap_page_range (240 samples, 0.05%)</title><rect x="99.8991%" y="629" width="0.0455%" height="15" fill="rgb(233,140,18)" fg:x="526680" fg:w="240"/><text x="100.1491%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,212 samples, 0.23%)</title><rect x="99.7166%" y="789" width="0.2299%" height="15" fill="rgb(207,212,28)" fg:x="525718" fg:w="1212"/><text x="99.9666%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (313 samples, 0.06%)</title><rect x="99.8871%" y="773" width="0.0594%" height="15" fill="rgb(220,130,25)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (313 samples, 0.06%)</title><rect x="99.8871%" y="757" width="0.0594%" height="15" fill="rgb(205,55,34)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="767.50"></text></g><g><title>arch_do_signal (313 samples, 0.06%)</title><rect x="99.8871%" y="741" width="0.0594%" height="15" fill="rgb(237,54,35)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="751.50"></text></g><g><title>get_signal (313 samples, 0.06%)</title><rect x="99.8871%" y="725" width="0.0594%" height="15" fill="rgb(208,67,23)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="735.50"></text></g><g><title>do_group_exit (313 samples, 0.06%)</title><rect x="99.8871%" y="709" width="0.0594%" height="15" fill="rgb(206,207,50)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="719.50"></text></g><g><title>do_exit (313 samples, 0.06%)</title><rect x="99.8871%" y="693" width="0.0594%" height="15" fill="rgb(213,211,42)" fg:x="526617" fg:w="313"/><text x="100.1371%" y="703.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (219 samples, 0.04%)</title><rect x="99.9465%" y="789" width="0.0415%" height="15" fill="rgb(252,197,50)" fg:x="526930" fg:w="219"/><text x="100.1965%" y="799.50"></text></g><g><title>all (527,212 samples, 100%)</title><rect x="0.0000%" y="821" width="100.0000%" height="15" fill="rgb(251,211,41)" fg:x="0" fg:w="527212"/><text x="0.2500%" y="831.50"></text></g><g><title>zig (63,493 samples, 12.04%)</title><rect x="87.9568%" y="805" width="12.0432%" height="15" fill="rgb(229,211,5)" fg:x="463719" fg:w="63493"/><text x="88.2068%" y="815.50">zig</text></g><g><title>syscall_return_via_sysret (60 samples, 0.01%)</title><rect x="99.9886%" y="789" width="0.0114%" height="15" fill="rgb(239,36,31)" fg:x="527152" fg:w="60"/><text x="100.2386%" y="799.50"></text></g></svg></svg> +\ No newline at end of file diff --git a/results/llvm-sysroot-hermetic-j8.svg b/results/llvm-sysroot-hermetic-j8.svg @@ -0,0 +1,491 @@ +<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="790" onload="init(evt)" viewBox="0 0 1200 790" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css"> +text { font-family: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="790" 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="773.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="773.00"> </text><svg id="frames" x="10" width="1180" total_samples="1292852"><g><title>_dl_update_slotinfo (157 samples, 0.01%)</title><rect x="0.0850%" y="693" width="0.0121%" height="15" fill="rgb(227,0,7)" fg:x="1099" fg:w="157"/><text x="0.3350%" y="703.50"></text></g><g><title>[anon] (1,409 samples, 0.11%)</title><rect x="0.0073%" y="709" width="0.1090%" height="15" fill="rgb(217,0,24)" fg:x="95" fg:w="1409"/><text x="0.2573%" y="719.50"></text></g><g><title>[perf-956514.map] (169 samples, 0.01%)</title><rect x="0.1164%" y="709" width="0.0131%" height="15" fill="rgb(221,193,54)" fg:x="1505" fg:w="169"/><text x="0.3664%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (132 samples, 0.01%)</title><rect x="0.1677%" y="469" width="0.0102%" height="15" fill="rgb(248,212,6)" fg:x="2168" fg:w="132"/><text x="0.4177%" y="479.50"></text></g><g><title>BlockBegin::iterate_preorder (212 samples, 0.02%)</title><rect x="0.1672%" y="485" width="0.0164%" height="15" fill="rgb(208,68,35)" fg:x="2162" fg:w="212"/><text x="0.4172%" y="495.50"></text></g><g><title>BlockBegin::iterate_preorder (218 samples, 0.02%)</title><rect x="0.1671%" y="501" width="0.0169%" height="15" fill="rgb(232,128,0)" fg:x="2160" fg:w="218"/><text x="0.4171%" y="511.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (404 samples, 0.03%)</title><rect x="0.1614%" y="517" width="0.0312%" height="15" fill="rgb(207,160,47)" fg:x="2087" fg:w="404"/><text x="0.4114%" y="527.50"></text></g><g><title>BlockListBuilder::set_leaders (146 samples, 0.01%)</title><rect x="0.2037%" y="469" width="0.0113%" height="15" fill="rgb(228,23,34)" fg:x="2634" fg:w="146"/><text x="0.4537%" y="479.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (168 samples, 0.01%)</title><rect x="0.2023%" y="485" width="0.0130%" height="15" fill="rgb(218,30,26)" fg:x="2616" fg:w="168"/><text x="0.4523%" y="495.50"></text></g><g><title>ciField::ciField (130 samples, 0.01%)</title><rect x="0.2329%" y="405" width="0.0101%" height="15" fill="rgb(220,122,19)" fg:x="3011" fg:w="130"/><text x="0.4829%" y="415.50"></text></g><g><title>ciEnv::get_field_by_index (146 samples, 0.01%)</title><rect x="0.2320%" y="421" width="0.0113%" height="15" fill="rgb(250,228,42)" fg:x="3000" fg:w="146"/><text x="0.4820%" y="431.50"></text></g><g><title>ciBytecodeStream::get_field (165 samples, 0.01%)</title><rect x="0.2319%" y="437" width="0.0128%" height="15" fill="rgb(240,193,28)" fg:x="2998" fg:w="165"/><text x="0.4819%" y="447.50"></text></g><g><title>GraphBuilder::access_field (222 samples, 0.02%)</title><rect x="0.2282%" y="453" width="0.0172%" height="15" fill="rgb(216,20,37)" fg:x="2950" fg:w="222"/><text x="0.4782%" y="463.50"></text></g><g><title>GraphBuilder::access_field (162 samples, 0.01%)</title><rect x="0.2771%" y="373" width="0.0125%" height="15" fill="rgb(206,188,39)" fg:x="3582" fg:w="162"/><text x="0.5271%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (146 samples, 0.01%)</title><rect x="0.3230%" y="197" width="0.0113%" height="15" fill="rgb(217,207,13)" fg:x="4176" fg:w="146"/><text x="0.5730%" y="207.50"></text></g><g><title>GraphBuilder::invoke (228 samples, 0.02%)</title><rect x="0.3224%" y="213" width="0.0176%" height="15" fill="rgb(231,73,38)" fg:x="4168" fg:w="228"/><text x="0.5724%" y="223.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (344 samples, 0.03%)</title><rect x="0.3153%" y="245" width="0.0266%" height="15" fill="rgb(225,20,46)" fg:x="4077" fg:w="344"/><text x="0.5653%" y="255.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (342 samples, 0.03%)</title><rect x="0.3155%" y="229" width="0.0265%" height="15" fill="rgb(210,31,41)" fg:x="4079" fg:w="342"/><text x="0.5655%" y="239.50"></text></g><g><title>GraphBuilder::try_inline_full (444 samples, 0.03%)</title><rect x="0.3142%" y="261" width="0.0343%" height="15" fill="rgb(221,200,47)" fg:x="4062" fg:w="444"/><text x="0.5642%" y="271.50"></text></g><g><title>GraphBuilder::try_inline (494 samples, 0.04%)</title><rect x="0.3139%" y="277" width="0.0382%" height="15" fill="rgb(226,26,5)" fg:x="4058" fg:w="494"/><text x="0.5639%" y="287.50"></text></g><g><title>GraphBuilder::invoke (669 samples, 0.05%)</title><rect x="0.3123%" y="293" width="0.0517%" height="15" fill="rgb(249,33,26)" fg:x="4038" fg:w="669"/><text x="0.5623%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (901 samples, 0.07%)</title><rect x="0.2988%" y="325" width="0.0697%" height="15" fill="rgb(235,183,28)" fg:x="3863" fg:w="901"/><text x="0.5488%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (895 samples, 0.07%)</title><rect x="0.2993%" y="309" width="0.0692%" height="15" fill="rgb(221,5,38)" fg:x="3869" fg:w="895"/><text x="0.5493%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (1,125 samples, 0.09%)</title><rect x="0.2972%" y="341" width="0.0870%" height="15" fill="rgb(247,18,42)" fg:x="3843" fg:w="1125"/><text x="0.5472%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (1,178 samples, 0.09%)</title><rect x="0.2968%" y="357" width="0.0911%" height="15" fill="rgb(241,131,45)" fg:x="3837" fg:w="1178"/><text x="0.5468%" y="367.50"></text></g><g><title>ciBytecodeStream::get_method (215 samples, 0.02%)</title><rect x="0.3908%" y="357" width="0.0166%" height="15" fill="rgb(249,31,29)" fg:x="5052" fg:w="215"/><text x="0.6408%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (203 samples, 0.02%)</title><rect x="0.3917%" y="341" width="0.0157%" height="15" fill="rgb(225,111,53)" fg:x="5064" fg:w="203"/><text x="0.6417%" y="351.50"></text></g><g><title>GraphBuilder::invoke (1,521 samples, 0.12%)</title><rect x="0.2931%" y="373" width="0.1176%" height="15" fill="rgb(238,160,17)" fg:x="3789" fg:w="1521"/><text x="0.5431%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,932 samples, 0.15%)</title><rect x="0.2671%" y="405" width="0.1494%" height="15" fill="rgb(214,148,48)" fg:x="3453" fg:w="1932"/><text x="0.5171%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,911 samples, 0.15%)</title><rect x="0.2687%" y="389" width="0.1478%" height="15" fill="rgb(232,36,49)" fg:x="3474" fg:w="1911"/><text x="0.5187%" y="399.50"></text></g><g><title>GraphBuilder::push_scope (168 samples, 0.01%)</title><rect x="0.4174%" y="405" width="0.0130%" height="15" fill="rgb(209,103,24)" fg:x="5397" fg:w="168"/><text x="0.6674%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (156 samples, 0.01%)</title><rect x="0.4314%" y="405" width="0.0121%" height="15" fill="rgb(229,88,8)" fg:x="5578" fg:w="156"/><text x="0.6814%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (149 samples, 0.01%)</title><rect x="0.4320%" y="389" width="0.0115%" height="15" fill="rgb(213,181,19)" fg:x="5585" fg:w="149"/><text x="0.6820%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (2,364 samples, 0.18%)</title><rect x="0.2619%" y="421" width="0.1829%" height="15" fill="rgb(254,191,54)" fg:x="3386" fg:w="2364"/><text x="0.5119%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (2,386 samples, 0.18%)</title><rect x="0.2613%" y="437" width="0.1846%" height="15" fill="rgb(241,83,37)" fg:x="3378" fg:w="2386"/><text x="0.5113%" y="447.50"></text></g><g><title>ciMethod::ciMethod (194 samples, 0.02%)</title><rect x="0.4643%" y="373" width="0.0150%" height="15" fill="rgb(233,36,39)" fg:x="6003" fg:w="194"/><text x="0.7143%" y="383.50"></text></g><g><title>ciSignature::ciSignature (150 samples, 0.01%)</title><rect x="0.4677%" y="357" width="0.0116%" height="15" fill="rgb(226,3,54)" fg:x="6047" fg:w="150"/><text x="0.7177%" y="367.50"></text></g><g><title>ciObjectFactory::create_new_metadata (206 samples, 0.02%)</title><rect x="0.4636%" y="389" width="0.0159%" height="15" fill="rgb(245,192,40)" fg:x="5994" fg:w="206"/><text x="0.7136%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (224 samples, 0.02%)</title><rect x="0.4623%" y="405" width="0.0173%" height="15" fill="rgb(238,167,29)" fg:x="5977" fg:w="224"/><text x="0.7123%" y="415.50"></text></g><g><title>ciEnv::get_method_by_index_impl (358 samples, 0.03%)</title><rect x="0.4524%" y="421" width="0.0277%" height="15" fill="rgb(232,182,51)" fg:x="5849" fg:w="358"/><text x="0.7024%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (390 samples, 0.03%)</title><rect x="0.4501%" y="437" width="0.0302%" height="15" fill="rgb(231,60,39)" fg:x="5819" fg:w="390"/><text x="0.7001%" y="447.50"></text></g><g><title>GraphBuilder::invoke (3,032 samples, 0.23%)</title><rect x="0.2524%" y="453" width="0.2345%" height="15" fill="rgb(208,69,12)" fg:x="3263" fg:w="3032"/><text x="0.5024%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,509 samples, 0.27%)</title><rect x="0.2199%" y="469" width="0.2714%" height="15" fill="rgb(235,93,37)" fg:x="2843" fg:w="3509"/><text x="0.4699%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,571 samples, 0.28%)</title><rect x="0.2164%" y="485" width="0.2762%" height="15" fill="rgb(213,116,39)" fg:x="2798" fg:w="3571"/><text x="0.4664%" y="495.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,937 samples, 0.30%)</title><rect x="0.1934%" y="501" width="0.3045%" height="15" fill="rgb(222,207,29)" fg:x="2501" fg:w="3937"/><text x="0.4434%" y="511.50"></text></g><g><title>IR::IR (3,959 samples, 0.31%)</title><rect x="0.1928%" y="517" width="0.3062%" height="15" fill="rgb(206,96,30)" fg:x="2493" fg:w="3959"/><text x="0.4428%" y="527.50"></text></g><g><title>NullCheckEliminator::iterate_one (188 samples, 0.01%)</title><rect x="0.5172%" y="485" width="0.0145%" height="15" fill="rgb(218,138,4)" fg:x="6686" fg:w="188"/><text x="0.7672%" y="495.50"></text></g><g><title>IR::eliminate_null_checks (220 samples, 0.02%)</title><rect x="0.5155%" y="517" width="0.0170%" height="15" fill="rgb(250,191,14)" fg:x="6665" fg:w="220"/><text x="0.7655%" y="527.50"></text></g><g><title>Optimizer::eliminate_null_checks (219 samples, 0.02%)</title><rect x="0.5156%" y="501" width="0.0169%" height="15" fill="rgb(239,60,40)" fg:x="6666" fg:w="219"/><text x="0.7656%" y="511.50"></text></g><g><title>Compilation::build_hir (4,965 samples, 0.38%)</title><rect x="0.1611%" y="533" width="0.3840%" height="15" fill="rgb(206,27,48)" fg:x="2083" fg:w="4965"/><text x="0.4111%" y="543.50"></text></g><g><title>LIR_Assembler::emit_call (174 samples, 0.01%)</title><rect x="0.5540%" y="501" width="0.0135%" height="15" fill="rgb(225,35,8)" fg:x="7163" fg:w="174"/><text x="0.8040%" y="511.50"></text></g><g><title>LIR_Assembler::emit_op1 (182 samples, 0.01%)</title><rect x="0.5708%" y="501" width="0.0141%" height="15" fill="rgb(250,213,24)" fg:x="7380" fg:w="182"/><text x="0.8208%" y="511.50"></text></g><g><title>LIR_Assembler::emit_code (717 samples, 0.06%)</title><rect x="0.5470%" y="517" width="0.0555%" height="15" fill="rgb(247,123,22)" fg:x="7072" fg:w="717"/><text x="0.7970%" y="527.50"></text></g><g><title>CodeEmitInfo::record_debug_info (131 samples, 0.01%)</title><rect x="0.6087%" y="469" width="0.0101%" height="15" fill="rgb(231,138,38)" fg:x="7870" fg:w="131"/><text x="0.8587%" y="479.50"></text></g><g><title>LIR_Assembler::add_call_info (133 samples, 0.01%)</title><rect x="0.6087%" y="485" width="0.0103%" height="15" fill="rgb(231,145,46)" fg:x="7869" fg:w="133"/><text x="0.8587%" y="495.50"></text></g><g><title>CounterOverflowStub::emit_code (164 samples, 0.01%)</title><rect x="0.6083%" y="501" width="0.0127%" height="15" fill="rgb(251,118,11)" fg:x="7864" fg:w="164"/><text x="0.8583%" y="511.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (378 samples, 0.03%)</title><rect x="0.6074%" y="517" width="0.0292%" height="15" fill="rgb(217,147,25)" fg:x="7853" fg:w="378"/><text x="0.8574%" y="527.50"></text></g><g><title>Compilation::emit_code_body (1,205 samples, 0.09%)</title><rect x="0.5452%" y="533" width="0.0932%" height="15" fill="rgb(247,81,37)" fg:x="7048" fg:w="1205"/><text x="0.7952%" y="543.50"></text></g><g><title>LIRGenerator::move_to_phi (233 samples, 0.02%)</title><rect x="0.6536%" y="469" width="0.0180%" height="15" fill="rgb(209,12,38)" fg:x="8450" fg:w="233"/><text x="0.9036%" y="479.50"></text></g><g><title>PhiResolverState::reset (162 samples, 0.01%)</title><rect x="0.6591%" y="453" width="0.0125%" height="15" fill="rgb(227,1,9)" fg:x="8521" fg:w="162"/><text x="0.9091%" y="463.50"></text></g><g><title>LIRGenerator::do_Goto (264 samples, 0.02%)</title><rect x="0.6520%" y="485" width="0.0204%" height="15" fill="rgb(248,47,43)" fg:x="8429" fg:w="264"/><text x="0.9020%" y="495.50"></text></g><g><title>LIRGenerator::do_Invoke (142 samples, 0.01%)</title><rect x="0.6786%" y="485" width="0.0110%" height="15" fill="rgb(221,10,30)" fg:x="8773" fg:w="142"/><text x="0.9286%" y="495.50"></text></g><g><title>LIRGenerator::block_do (982 samples, 0.08%)</title><rect x="0.6392%" y="501" width="0.0760%" height="15" fill="rgb(210,229,1)" fg:x="8264" fg:w="982"/><text x="0.8892%" y="511.50"></text></g><g><title>BlockList::iterate_forward (989 samples, 0.08%)</title><rect x="0.6389%" y="517" width="0.0765%" height="15" fill="rgb(222,148,37)" fg:x="8260" fg:w="989"/><text x="0.8889%" y="527.50"></text></g><g><title>IntervalWalker::walk_to (131 samples, 0.01%)</title><rect x="0.7285%" y="469" width="0.0101%" height="15" fill="rgb(234,67,33)" fg:x="9418" fg:w="131"/><text x="0.9785%" y="479.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (167 samples, 0.01%)</title><rect x="0.7588%" y="437" width="0.0129%" height="15" fill="rgb(247,98,35)" fg:x="9810" fg:w="167"/><text x="1.0088%" y="447.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (489 samples, 0.04%)</title><rect x="0.7412%" y="453" width="0.0378%" height="15" fill="rgb(247,138,52)" fg:x="9582" fg:w="489"/><text x="0.9912%" y="463.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (160 samples, 0.01%)</title><rect x="0.7790%" y="453" width="0.0124%" height="15" fill="rgb(213,79,30)" fg:x="10071" fg:w="160"/><text x="1.0290%" y="463.50"></text></g><g><title>LinearScanWalker::activate_current (768 samples, 0.06%)</title><rect x="0.7387%" y="469" width="0.0594%" height="15" fill="rgb(246,177,23)" fg:x="9550" fg:w="768"/><text x="0.9887%" y="479.50"></text></g><g><title>IntervalWalker::walk_to (965 samples, 0.07%)</title><rect x="0.7237%" y="485" width="0.0746%" height="15" fill="rgb(230,62,27)" fg:x="9356" fg:w="965"/><text x="0.9737%" y="495.50"></text></g><g><title>LinearScan::allocate_registers (1,061 samples, 0.08%)</title><rect x="0.7219%" y="501" width="0.0821%" height="15" fill="rgb(216,154,8)" fg:x="9333" fg:w="1061"/><text x="0.9719%" y="511.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (167 samples, 0.01%)</title><rect x="0.8298%" y="469" width="0.0129%" height="15" fill="rgb(244,35,45)" fg:x="10728" fg:w="167"/><text x="1.0798%" y="479.50"></text></g><g><title>LinearScan::compute_oop_map (187 samples, 0.01%)</title><rect x="0.8441%" y="453" width="0.0145%" height="15" fill="rgb(251,115,12)" fg:x="10913" fg:w="187"/><text x="1.0941%" y="463.50"></text></g><g><title>LinearScan::compute_oop_map (206 samples, 0.02%)</title><rect x="0.8427%" y="469" width="0.0159%" height="15" fill="rgb(240,54,50)" fg:x="10895" fg:w="206"/><text x="1.0927%" y="479.50"></text></g><g><title>LinearScan::assign_reg_num (705 samples, 0.05%)</title><rect x="0.8044%" y="485" width="0.0545%" height="15" fill="rgb(233,84,52)" fg:x="10400" fg:w="705"/><text x="1.0544%" y="495.50"></text></g><g><title>LinearScan::assign_reg_num (729 samples, 0.06%)</title><rect x="0.8040%" y="501" width="0.0564%" height="15" fill="rgb(207,117,47)" fg:x="10394" fg:w="729"/><text x="1.0540%" y="511.50"></text></g><g><title>LinearScan::add_use (210 samples, 0.02%)</title><rect x="0.9059%" y="485" width="0.0162%" height="15" fill="rgb(249,43,39)" fg:x="11712" fg:w="210"/><text x="1.1559%" y="495.50"></text></g><g><title>LinearScan::build_intervals (894 samples, 0.07%)</title><rect x="0.8603%" y="501" width="0.0691%" height="15" fill="rgb(209,38,44)" fg:x="11123" fg:w="894"/><text x="1.1103%" y="511.50"></text></g><g><title>LinearScan::compute_local_live_sets (322 samples, 0.02%)</title><rect x="0.9344%" y="501" width="0.0249%" height="15" fill="rgb(236,212,23)" fg:x="12081" fg:w="322"/><text x="1.1844%" y="511.50"></text></g><g><title>LinearScan::resolve_data_flow (144 samples, 0.01%)</title><rect x="0.9686%" y="501" width="0.0111%" height="15" fill="rgb(242,79,21)" fg:x="12523" fg:w="144"/><text x="1.2186%" y="511.50"></text></g><g><title>LinearScan::do_linear_scan (3,528 samples, 0.27%)</title><rect x="0.7192%" y="517" width="0.2729%" height="15" fill="rgb(211,96,35)" fg:x="9298" fg:w="3528"/><text x="0.9692%" y="527.50"></text></g><g><title>Compilation::emit_lir (4,578 samples, 0.35%)</title><rect x="0.6384%" y="533" width="0.3541%" height="15" fill="rgb(253,215,40)" fg:x="8253" fg:w="4578"/><text x="0.8884%" y="543.50"></text></g><g><title>Compilation::compile_java_method (10,917 samples, 0.84%)</title><rect x="0.1605%" y="549" width="0.8444%" height="15" fill="rgb(211,81,21)" fg:x="2075" fg:w="10917"/><text x="0.4105%" y="559.50"></text></g><g><title>ciMethod::ensure_method_data (136 samples, 0.01%)</title><rect x="0.9944%" y="533" width="0.0105%" height="15" fill="rgb(208,190,38)" fg:x="12856" fg:w="136"/><text x="1.2444%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (131 samples, 0.01%)</title><rect x="0.9948%" y="517" width="0.0101%" height="15" fill="rgb(235,213,38)" fg:x="12861" fg:w="131"/><text x="1.2448%" y="527.50"></text></g><g><title>CodeBuffer::relocate_code_to (143 samples, 0.01%)</title><rect x="1.0319%" y="485" width="0.0111%" height="15" fill="rgb(237,122,38)" fg:x="13341" fg:w="143"/><text x="1.2819%" y="495.50"></text></g><g><title>CodeBuffer::copy_code_to (164 samples, 0.01%)</title><rect x="1.0316%" y="501" width="0.0127%" height="15" fill="rgb(244,218,35)" fg:x="13337" fg:w="164"/><text x="1.2816%" y="511.50"></text></g><g><title>nmethod::nmethod (320 samples, 0.02%)</title><rect x="1.0311%" y="517" width="0.0248%" height="15" fill="rgb(240,68,47)" fg:x="13331" fg:w="320"/><text x="1.2811%" y="527.50"></text></g><g><title>Compilation::compile_method (11,581 samples, 0.90%)</title><rect x="0.1603%" y="565" width="0.8958%" height="15" fill="rgb(210,16,53)" fg:x="2072" fg:w="11581"/><text x="0.4103%" y="575.50"></text></g><g><title>ciEnv::register_method (613 samples, 0.05%)</title><rect x="1.0086%" y="549" width="0.0474%" height="15" fill="rgb(235,124,12)" fg:x="13040" fg:w="613"/><text x="1.2586%" y="559.50"></text></g><g><title>nmethod::new_nmethod (550 samples, 0.04%)</title><rect x="1.0135%" y="533" width="0.0425%" height="15" fill="rgb(224,169,11)" fg:x="13103" fg:w="550"/><text x="1.2635%" y="543.50"></text></g><g><title>Compilation::Compilation (11,600 samples, 0.90%)</title><rect x="0.1600%" y="581" width="0.8972%" height="15" fill="rgb(250,166,2)" fg:x="2068" fg:w="11600"/><text x="0.4100%" y="591.50"></text></g><g><title>Compiler::compile_method (11,614 samples, 0.90%)</title><rect x="0.1590%" y="597" width="0.8983%" height="15" fill="rgb(242,216,29)" fg:x="2056" fg:w="11614"/><text x="0.4090%" y="607.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (12,140 samples, 0.94%)</title><rect x="0.1406%" y="613" width="0.9390%" height="15" fill="rgb(230,116,27)" fg:x="1818" fg:w="12140"/><text x="0.3906%" y="623.50"></text></g><g><title>Monitor::IWait (132 samples, 0.01%)</title><rect x="1.0864%" y="581" width="0.0102%" height="15" fill="rgb(228,99,48)" fg:x="14045" fg:w="132"/><text x="1.3364%" y="591.50"></text></g><g><title>Monitor::wait (141 samples, 0.01%)</title><rect x="1.0857%" y="597" width="0.0109%" height="15" fill="rgb(253,11,6)" fg:x="14037" fg:w="141"/><text x="1.3357%" y="607.50"></text></g><g><title>CompileQueue::get (247 samples, 0.02%)</title><rect x="1.0839%" y="613" width="0.0191%" height="15" fill="rgb(247,143,39)" fg:x="14013" fg:w="247"/><text x="1.3339%" y="623.50"></text></g><g><title>CompileBroker::compiler_thread_loop (12,459 samples, 0.96%)</title><rect x="0.1403%" y="629" width="0.9637%" height="15" fill="rgb(236,97,10)" fg:x="1814" fg:w="12459"/><text x="0.3903%" y="639.50"></text></g><g><title>__GI___clone (12,477 samples, 0.97%)</title><rect x="0.1390%" y="709" width="0.9651%" height="15" fill="rgb(233,208,19)" fg:x="1797" fg:w="12477"/><text x="0.3890%" y="719.50"></text></g><g><title>start_thread (12,462 samples, 0.96%)</title><rect x="0.1402%" y="693" width="0.9639%" height="15" fill="rgb(216,164,2)" fg:x="1812" fg:w="12462"/><text x="0.3902%" y="703.50"></text></g><g><title>thread_native_entry (12,462 samples, 0.96%)</title><rect x="0.1402%" y="677" width="0.9639%" height="15" fill="rgb(220,129,5)" fg:x="1812" fg:w="12462"/><text x="0.3902%" y="687.50"></text></g><g><title>Thread::call_run (12,462 samples, 0.96%)</title><rect x="0.1402%" y="661" width="0.9639%" height="15" fill="rgb(242,17,10)" fg:x="1812" fg:w="12462"/><text x="0.3902%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (12,460 samples, 0.96%)</title><rect x="0.1403%" y="645" width="0.9638%" height="15" fill="rgb(242,107,0)" fg:x="1814" fg:w="12460"/><text x="0.3903%" y="655.50"></text></g><g><title>C1_CompilerThre (14,295 samples, 1.11%)</title><rect x="0.0032%" y="725" width="1.1057%" height="15" fill="rgb(251,28,31)" fg:x="41" fg:w="14295"/><text x="0.2532%" y="735.50"></text></g><g><title>_dl_update_slotinfo (203 samples, 0.02%)</title><rect x="1.3765%" y="693" width="0.0157%" height="15" fill="rgb(233,223,10)" fg:x="17796" fg:w="203"/><text x="1.6265%" y="703.50"></text></g><g><title>[anon] (3,940 samples, 0.30%)</title><rect x="1.1420%" y="709" width="0.3048%" height="15" fill="rgb(215,21,27)" fg:x="14764" fg:w="3940"/><text x="1.3920%" y="719.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (143 samples, 0.01%)</title><rect x="1.4601%" y="453" width="0.0111%" height="15" fill="rgb(232,23,21)" fg:x="18877" fg:w="143"/><text x="1.7101%" y="463.50"></text></g><g><title>ciTypeFlow::df_flow_types (165 samples, 0.01%)</title><rect x="1.4585%" y="485" width="0.0128%" height="15" fill="rgb(244,5,23)" fg:x="18856" fg:w="165"/><text x="1.7085%" y="495.50"></text></g><g><title>ciTypeFlow::flow_block (165 samples, 0.01%)</title><rect x="1.4585%" y="469" width="0.0128%" height="15" fill="rgb(226,81,46)" fg:x="18856" fg:w="165"/><text x="1.7085%" y="479.50"></text></g><g><title>InlineTree::ok_to_inline (176 samples, 0.01%)</title><rect x="1.4580%" y="549" width="0.0136%" height="15" fill="rgb(247,70,30)" fg:x="18850" fg:w="176"/><text x="1.7080%" y="559.50"></text></g><g><title>ciMethod::get_flow_analysis (173 samples, 0.01%)</title><rect x="1.4582%" y="533" width="0.0134%" height="15" fill="rgb(212,68,19)" fg:x="18853" fg:w="173"/><text x="1.7082%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (173 samples, 0.01%)</title><rect x="1.4582%" y="517" width="0.0134%" height="15" fill="rgb(240,187,13)" fg:x="18853" fg:w="173"/><text x="1.7082%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (173 samples, 0.01%)</title><rect x="1.4582%" y="501" width="0.0134%" height="15" fill="rgb(223,113,26)" fg:x="18853" fg:w="173"/><text x="1.7082%" y="511.50"></text></g><g><title>Compile::call_generator (256 samples, 0.02%)</title><rect x="1.4522%" y="565" width="0.0198%" height="15" fill="rgb(206,192,2)" fg:x="18775" fg:w="256"/><text x="1.7022%" y="575.50"></text></g><g><title>ciTypeFlow::do_flow (136 samples, 0.01%)</title><rect x="1.4808%" y="421" width="0.0105%" height="15" fill="rgb(241,108,4)" fg:x="19144" fg:w="136"/><text x="1.7308%" y="431.50"></text></g><g><title>ciTypeFlow::flow_types (136 samples, 0.01%)</title><rect x="1.4808%" y="405" width="0.0105%" height="15" fill="rgb(247,173,49)" fg:x="19144" fg:w="136"/><text x="1.7308%" y="415.50"></text></g><g><title>InlineTree::ok_to_inline (175 samples, 0.01%)</title><rect x="1.4780%" y="453" width="0.0135%" height="15" fill="rgb(224,114,35)" fg:x="19108" fg:w="175"/><text x="1.7280%" y="463.50"></text></g><g><title>ciMethod::get_flow_analysis (147 samples, 0.01%)</title><rect x="1.4801%" y="437" width="0.0114%" height="15" fill="rgb(245,159,27)" fg:x="19136" fg:w="147"/><text x="1.7301%" y="447.50"></text></g><g><title>Compile::call_generator (204 samples, 0.02%)</title><rect x="1.4763%" y="469" width="0.0158%" height="15" fill="rgb(245,172,44)" fg:x="19086" fg:w="204"/><text x="1.7263%" y="479.50"></text></g><g><title>Parse::do_call (228 samples, 0.02%)</title><rect x="1.5277%" y="293" width="0.0176%" height="15" fill="rgb(236,23,11)" fg:x="19751" fg:w="228"/><text x="1.7777%" y="303.50"></text></g><g><title>Parse::do_one_block (435 samples, 0.03%)</title><rect x="1.5245%" y="325" width="0.0336%" height="15" fill="rgb(205,117,38)" fg:x="19710" fg:w="435"/><text x="1.7745%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (425 samples, 0.03%)</title><rect x="1.5253%" y="309" width="0.0329%" height="15" fill="rgb(237,72,25)" fg:x="19720" fg:w="425"/><text x="1.7753%" y="319.50"></text></g><g><title>Parse::do_all_blocks (444 samples, 0.03%)</title><rect x="1.5243%" y="341" width="0.0343%" height="15" fill="rgb(244,70,9)" fg:x="19707" fg:w="444"/><text x="1.7743%" y="351.50"></text></g><g><title>ParseGenerator::generate (521 samples, 0.04%)</title><rect x="1.5207%" y="373" width="0.0403%" height="15" fill="rgb(217,125,39)" fg:x="19661" fg:w="521"/><text x="1.7707%" y="383.50"></text></g><g><title>Parse::Parse (520 samples, 0.04%)</title><rect x="1.5208%" y="357" width="0.0402%" height="15" fill="rgb(235,36,10)" fg:x="19662" fg:w="520"/><text x="1.7708%" y="367.50"></text></g><g><title>Parse::do_call (802 samples, 0.06%)</title><rect x="1.5071%" y="389" width="0.0620%" height="15" fill="rgb(251,123,47)" fg:x="19484" fg:w="802"/><text x="1.7571%" y="399.50"></text></g><g><title>Parse::do_one_block (1,099 samples, 0.09%)</title><rect x="1.5034%" y="421" width="0.0850%" height="15" fill="rgb(221,13,13)" fg:x="19437" fg:w="1099"/><text x="1.7534%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (1,087 samples, 0.08%)</title><rect x="1.5043%" y="405" width="0.0841%" height="15" fill="rgb(238,131,9)" fg:x="19449" fg:w="1087"/><text x="1.7543%" y="415.50"></text></g><g><title>Parse::do_all_blocks (1,112 samples, 0.09%)</title><rect x="1.5033%" y="437" width="0.0860%" height="15" fill="rgb(211,50,8)" fg:x="19435" fg:w="1112"/><text x="1.7533%" y="447.50"></text></g><g><title>ParseGenerator::generate (1,205 samples, 0.09%)</title><rect x="1.4989%" y="469" width="0.0932%" height="15" fill="rgb(245,182,24)" fg:x="19379" fg:w="1205"/><text x="1.7489%" y="479.50"></text></g><g><title>Parse::Parse (1,205 samples, 0.09%)</title><rect x="1.4989%" y="453" width="0.0932%" height="15" fill="rgb(242,14,37)" fg:x="19379" fg:w="1205"/><text x="1.7489%" y="463.50"></text></g><g><title>Parse::do_all_blocks (140 samples, 0.01%)</title><rect x="1.5945%" y="421" width="0.0108%" height="15" fill="rgb(246,228,12)" fg:x="20615" fg:w="140"/><text x="1.8445%" y="431.50"></text></g><g><title>Parse::do_one_block (138 samples, 0.01%)</title><rect x="1.5947%" y="405" width="0.0107%" height="15" fill="rgb(213,55,15)" fg:x="20617" fg:w="138"/><text x="1.8447%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (134 samples, 0.01%)</title><rect x="1.5950%" y="389" width="0.0104%" height="15" fill="rgb(209,9,3)" fg:x="20621" fg:w="134"/><text x="1.8450%" y="399.50"></text></g><g><title>ParseGenerator::generate (148 samples, 0.01%)</title><rect x="1.5942%" y="453" width="0.0114%" height="15" fill="rgb(230,59,30)" fg:x="20611" fg:w="148"/><text x="1.8442%" y="463.50"></text></g><g><title>Parse::Parse (148 samples, 0.01%)</title><rect x="1.5942%" y="437" width="0.0114%" height="15" fill="rgb(209,121,21)" fg:x="20611" fg:w="148"/><text x="1.8442%" y="447.50"></text></g><g><title>PredictedCallGenerator::generate (209 samples, 0.02%)</title><rect x="1.5922%" y="469" width="0.0162%" height="15" fill="rgb(220,109,13)" fg:x="20585" fg:w="209"/><text x="1.8422%" y="479.50"></text></g><g><title>Parse::do_call (1,738 samples, 0.13%)</title><rect x="1.4763%" y="485" width="0.1344%" height="15" fill="rgb(232,18,1)" fg:x="19086" fg:w="1738"/><text x="1.7263%" y="495.50"></text></g><g><title>Parse::do_field_access (162 samples, 0.01%)</title><rect x="1.6123%" y="485" width="0.0125%" height="15" fill="rgb(215,41,42)" fg:x="20845" fg:w="162"/><text x="1.8623%" y="495.50"></text></g><g><title>Parse::do_all_blocks (2,007 samples, 0.16%)</title><rect x="1.4741%" y="533" width="0.1552%" height="15" fill="rgb(224,123,36)" fg:x="19058" fg:w="2007"/><text x="1.7241%" y="543.50"></text></g><g><title>Parse::do_one_block (2,007 samples, 0.16%)</title><rect x="1.4741%" y="517" width="0.1552%" height="15" fill="rgb(240,125,3)" fg:x="19058" fg:w="2007"/><text x="1.7241%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (2,000 samples, 0.15%)</title><rect x="1.4746%" y="501" width="0.1547%" height="15" fill="rgb(205,98,50)" fg:x="19065" fg:w="2000"/><text x="1.7246%" y="511.50"></text></g><g><title>ParseGenerator::generate (2,033 samples, 0.16%)</title><rect x="1.4722%" y="565" width="0.1572%" height="15" fill="rgb(205,185,37)" fg:x="19034" fg:w="2033"/><text x="1.7222%" y="575.50"></text></g><g><title>Parse::Parse (2,033 samples, 0.16%)</title><rect x="1.4722%" y="549" width="0.1572%" height="15" fill="rgb(238,207,15)" fg:x="19034" fg:w="2033"/><text x="1.7222%" y="559.50"></text></g><g><title>Parse::do_call (156 samples, 0.01%)</title><rect x="1.6385%" y="373" width="0.0121%" height="15" fill="rgb(213,199,42)" fg:x="21183" fg:w="156"/><text x="1.8885%" y="383.50"></text></g><g><title>Parse::do_one_block (233 samples, 0.02%)</title><rect x="1.6371%" y="405" width="0.0180%" height="15" fill="rgb(235,201,11)" fg:x="21165" fg:w="233"/><text x="1.8871%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (229 samples, 0.02%)</title><rect x="1.6374%" y="389" width="0.0177%" height="15" fill="rgb(207,46,11)" fg:x="21169" fg:w="229"/><text x="1.8874%" y="399.50"></text></g><g><title>Parse::do_all_blocks (237 samples, 0.02%)</title><rect x="1.6371%" y="421" width="0.0183%" height="15" fill="rgb(241,35,35)" fg:x="21165" fg:w="237"/><text x="1.8871%" y="431.50"></text></g><g><title>ParseGenerator::generate (258 samples, 0.02%)</title><rect x="1.6362%" y="453" width="0.0200%" height="15" fill="rgb(243,32,47)" fg:x="21154" fg:w="258"/><text x="1.8862%" y="463.50"></text></g><g><title>Parse::Parse (257 samples, 0.02%)</title><rect x="1.6363%" y="437" width="0.0199%" height="15" fill="rgb(247,202,23)" fg:x="21155" fg:w="257"/><text x="1.8863%" y="447.50"></text></g><g><title>Parse::do_call (379 samples, 0.03%)</title><rect x="1.6306%" y="469" width="0.0293%" height="15" fill="rgb(219,102,11)" fg:x="21081" fg:w="379"/><text x="1.8806%" y="479.50"></text></g><g><title>Parse::do_one_block (455 samples, 0.04%)</title><rect x="1.6300%" y="501" width="0.0352%" height="15" fill="rgb(243,110,44)" fg:x="21073" fg:w="455"/><text x="1.8800%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (452 samples, 0.03%)</title><rect x="1.6302%" y="485" width="0.0350%" height="15" fill="rgb(222,74,54)" fg:x="21076" fg:w="452"/><text x="1.8802%" y="495.50"></text></g><g><title>Parse::do_all_blocks (457 samples, 0.04%)</title><rect x="1.6300%" y="517" width="0.0353%" height="15" fill="rgb(216,99,12)" fg:x="21073" fg:w="457"/><text x="1.8800%" y="527.50"></text></g><g><title>ParseGenerator::generate (462 samples, 0.04%)</title><rect x="1.6297%" y="549" width="0.0357%" height="15" fill="rgb(226,22,26)" fg:x="21070" fg:w="462"/><text x="1.8797%" y="559.50"></text></g><g><title>Parse::Parse (462 samples, 0.04%)</title><rect x="1.6297%" y="533" width="0.0357%" height="15" fill="rgb(217,163,10)" fg:x="21070" fg:w="462"/><text x="1.8797%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (565 samples, 0.04%)</title><rect x="1.6295%" y="565" width="0.0437%" height="15" fill="rgb(213,25,53)" fg:x="21067" fg:w="565"/><text x="1.8795%" y="575.50"></text></g><g><title>Parse::do_call (2,876 samples, 0.22%)</title><rect x="1.4522%" y="581" width="0.2225%" height="15" fill="rgb(252,105,26)" fg:x="18775" fg:w="2876"/><text x="1.7022%" y="591.50"></text></g><g><title>Parse::do_all_blocks (2,890 samples, 0.22%)</title><rect x="1.4521%" y="629" width="0.2235%" height="15" fill="rgb(220,39,43)" fg:x="18773" fg:w="2890"/><text x="1.7021%" y="639.50"></text></g><g><title>Parse::do_one_block (2,890 samples, 0.22%)</title><rect x="1.4521%" y="613" width="0.2235%" height="15" fill="rgb(229,68,48)" fg:x="18773" fg:w="2890"/><text x="1.7021%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (2,890 samples, 0.22%)</title><rect x="1.4521%" y="597" width="0.2235%" height="15" fill="rgb(252,8,32)" fg:x="18773" fg:w="2890"/><text x="1.7021%" y="607.50"></text></g><g><title>C2Compiler::compile_method (2,926 samples, 0.23%)</title><rect x="1.4496%" y="693" width="0.2263%" height="15" fill="rgb(223,20,43)" fg:x="18741" fg:w="2926"/><text x="1.6996%" y="703.50"></text></g><g><title>Compile::Compile (2,926 samples, 0.23%)</title><rect x="1.4496%" y="677" width="0.2263%" height="15" fill="rgb(229,81,49)" fg:x="18741" fg:w="2926"/><text x="1.6996%" y="687.50"></text></g><g><title>ParseGenerator::generate (2,894 samples, 0.22%)</title><rect x="1.4521%" y="661" width="0.2238%" height="15" fill="rgb(236,28,36)" fg:x="18773" fg:w="2894"/><text x="1.7021%" y="671.50"></text></g><g><title>Parse::Parse (2,894 samples, 0.22%)</title><rect x="1.4521%" y="645" width="0.2238%" height="15" fill="rgb(249,185,26)" fg:x="18773" fg:w="2894"/><text x="1.7021%" y="655.50"></text></g><g><title>PhaseCFG::sched_call (237 samples, 0.02%)</title><rect x="1.6890%" y="629" width="0.0183%" height="15" fill="rgb(249,174,33)" fg:x="21836" fg:w="237"/><text x="1.9390%" y="639.50"></text></g><g><title>PhaseCFG::schedule_local (239 samples, 0.02%)</title><rect x="1.6890%" y="645" width="0.0185%" height="15" fill="rgb(233,201,37)" fg:x="21836" fg:w="239"/><text x="1.9390%" y="655.50"></text></g><g><title>PhaseCFG::do_global_code_motion (312 samples, 0.02%)</title><rect x="1.6836%" y="677" width="0.0241%" height="15" fill="rgb(221,78,26)" fg:x="21767" fg:w="312"/><text x="1.9336%" y="687.50"></text></g><g><title>PhaseCFG::global_code_motion (312 samples, 0.02%)</title><rect x="1.6836%" y="661" width="0.0241%" height="15" fill="rgb(250,127,30)" fg:x="21767" fg:w="312"/><text x="1.9336%" y="671.50"></text></g><g><title>Compile::Code_Gen (466 samples, 0.04%)</title><rect x="1.6764%" y="693" width="0.0360%" height="15" fill="rgb(230,49,44)" fg:x="21673" fg:w="466"/><text x="1.9264%" y="703.50"></text></g><g><title>OopFlow::build_oop_map (159 samples, 0.01%)</title><rect x="1.7638%" y="613" width="0.0123%" height="15" fill="rgb(229,67,23)" fg:x="22803" fg:w="159"/><text x="2.0138%" y="623.50"></text></g><g><title>OopFlow::compute_reach (257 samples, 0.02%)</title><rect x="1.7563%" y="629" width="0.0199%" height="15" fill="rgb(249,83,47)" fg:x="22706" fg:w="257"/><text x="2.0063%" y="639.50"></text></g><g><title>Compile::BuildOopMaps (904 samples, 0.07%)</title><rect x="1.7135%" y="645" width="0.0699%" height="15" fill="rgb(215,43,3)" fg:x="22153" fg:w="904"/><text x="1.9635%" y="655.50"></text></g><g><title>Compile::scratch_emit_size (224 samples, 0.02%)</title><rect x="1.8008%" y="613" width="0.0173%" height="15" fill="rgb(238,154,13)" fg:x="23282" fg:w="224"/><text x="2.0508%" y="623.50"></text></g><g><title>Compile::shorten_branches (418 samples, 0.03%)</title><rect x="1.7883%" y="629" width="0.0323%" height="15" fill="rgb(219,56,2)" fg:x="23120" fg:w="418"/><text x="2.0383%" y="639.50"></text></g><g><title>Compile::init_buffer (482 samples, 0.04%)</title><rect x="1.7834%" y="645" width="0.0373%" height="15" fill="rgb(233,0,4)" fg:x="23057" fg:w="482"/><text x="2.0334%" y="655.50"></text></g><g><title>Compile::Output (1,399 samples, 0.11%)</title><rect x="1.7128%" y="661" width="0.1082%" height="15" fill="rgb(235,30,7)" fg:x="22144" fg:w="1399"/><text x="1.9628%" y="671.50"></text></g><g><title>Compile::Process_OopMap_Node (280 samples, 0.02%)</title><rect x="1.8359%" y="645" width="0.0217%" height="15" fill="rgb(250,79,13)" fg:x="23736" fg:w="280"/><text x="2.0859%" y="655.50"></text></g><g><title>Compile::fill_buffer (681 samples, 0.05%)</title><rect x="1.8212%" y="661" width="0.0527%" height="15" fill="rgb(211,146,34)" fg:x="23546" fg:w="681"/><text x="2.0712%" y="671.50"></text></g><g><title>Matcher::find_shared (416 samples, 0.03%)</title><rect x="1.8825%" y="645" width="0.0322%" height="15" fill="rgb(228,22,38)" fg:x="24338" fg:w="416"/><text x="2.1325%" y="655.50"></text></g><g><title>Arena::contains (481 samples, 0.04%)</title><rect x="1.9485%" y="629" width="0.0372%" height="15" fill="rgb(235,168,5)" fg:x="25191" fg:w="481"/><text x="2.1985%" y="639.50"></text></g><g><title>Matcher::match_sfpt (176 samples, 0.01%)</title><rect x="1.9899%" y="629" width="0.0136%" height="15" fill="rgb(221,155,16)" fg:x="25727" fg:w="176"/><text x="2.2399%" y="639.50"></text></g><g><title>Matcher::Label_Root (165 samples, 0.01%)</title><rect x="2.0369%" y="581" width="0.0128%" height="15" fill="rgb(215,215,53)" fg:x="26334" fg:w="165"/><text x="2.2869%" y="591.50"></text></g><g><title>Matcher::Label_Root (391 samples, 0.03%)</title><rect x="2.0287%" y="597" width="0.0302%" height="15" fill="rgb(223,4,10)" fg:x="26228" fg:w="391"/><text x="2.2787%" y="607.50"></text></g><g><title>Matcher::Label_Root (598 samples, 0.05%)</title><rect x="2.0206%" y="613" width="0.0463%" height="15" fill="rgb(234,103,6)" fg:x="26123" fg:w="598"/><text x="2.2706%" y="623.50"></text></g><g><title>Matcher::ReduceInst_Interior (210 samples, 0.02%)</title><rect x="2.0694%" y="597" width="0.0162%" height="15" fill="rgb(227,97,0)" fg:x="26754" fg:w="210"/><text x="2.3194%" y="607.50"></text></g><g><title>Matcher::ReduceInst (382 samples, 0.03%)</title><rect x="2.0668%" y="613" width="0.0295%" height="15" fill="rgb(234,150,53)" fg:x="26721" fg:w="382"/><text x="2.3168%" y="623.50"></text></g><g><title>Matcher::match_tree (1,221 samples, 0.09%)</title><rect x="2.0036%" y="629" width="0.0944%" height="15" fill="rgb(228,201,54)" fg:x="25903" fg:w="1221"/><text x="2.2536%" y="639.50"></text></g><g><title>Matcher::xform (2,499 samples, 0.19%)</title><rect x="1.9162%" y="645" width="0.1933%" height="15" fill="rgb(222,22,37)" fg:x="24773" fg:w="2499"/><text x="2.1662%" y="655.50"></text></g><g><title>Matcher::match (3,043 samples, 0.24%)</title><rect x="1.8750%" y="661" width="0.2354%" height="15" fill="rgb(237,53,32)" fg:x="24241" fg:w="3043"/><text x="2.1250%" y="671.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (208 samples, 0.02%)</title><rect x="2.1105%" y="661" width="0.0161%" height="15" fill="rgb(233,25,53)" fg:x="27285" fg:w="208"/><text x="2.3605%" y="671.50"></text></g><g><title>PhaseCFG::PhaseCFG (177 samples, 0.01%)</title><rect x="2.1265%" y="661" width="0.0137%" height="15" fill="rgb(210,40,34)" fg:x="27493" fg:w="177"/><text x="2.3765%" y="671.50"></text></g><g><title>PhaseCFG::build_cfg (170 samples, 0.01%)</title><rect x="2.1271%" y="645" width="0.0131%" height="15" fill="rgb(241,220,44)" fg:x="27500" fg:w="170"/><text x="2.3771%" y="655.50"></text></g><g><title>Node_Backward_Iterator::next (282 samples, 0.02%)</title><rect x="2.2057%" y="613" width="0.0218%" height="15" fill="rgb(235,28,35)" fg:x="28516" fg:w="282"/><text x="2.4557%" y="623.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (130 samples, 0.01%)</title><rect x="2.2275%" y="613" width="0.0101%" height="15" fill="rgb(210,56,17)" fg:x="28798" fg:w="130"/><text x="2.4775%" y="623.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (177 samples, 0.01%)</title><rect x="2.2375%" y="613" width="0.0137%" height="15" fill="rgb(224,130,29)" fg:x="28928" fg:w="177"/><text x="2.4875%" y="623.50"></text></g><g><title>PhaseCFG::schedule_late (807 samples, 0.06%)</title><rect x="2.1956%" y="629" width="0.0624%" height="15" fill="rgb(235,212,8)" fg:x="28386" fg:w="807"/><text x="2.4456%" y="639.50"></text></g><g><title>PhaseCFG::select (130 samples, 0.01%)</title><rect x="2.2914%" y="613" width="0.0101%" height="15" fill="rgb(223,33,50)" fg:x="29624" fg:w="130"/><text x="2.5414%" y="623.50"></text></g><g><title>PhaseCFG::schedule_local (687 samples, 0.05%)</title><rect x="2.2580%" y="629" width="0.0531%" height="15" fill="rgb(219,149,13)" fg:x="29193" fg:w="687"/><text x="2.5080%" y="639.50"></text></g><g><title>RegMask::Size (131 samples, 0.01%)</title><rect x="2.3405%" y="613" width="0.0101%" height="15" fill="rgb(250,156,29)" fg:x="30259" fg:w="131"/><text x="2.5905%" y="623.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (523 samples, 0.04%)</title><rect x="2.3153%" y="629" width="0.0405%" height="15" fill="rgb(216,193,19)" fg:x="29933" fg:w="523"/><text x="2.5653%" y="639.50"></text></g><g><title>PhaseIFG::init (207 samples, 0.02%)</title><rect x="2.3638%" y="629" width="0.0160%" height="15" fill="rgb(216,135,14)" fg:x="30561" fg:w="207"/><text x="2.6138%" y="639.50"></text></g><g><title>PhaseLive::add_livein (205 samples, 0.02%)</title><rect x="2.4060%" y="613" width="0.0159%" height="15" fill="rgb(241,47,5)" fg:x="31106" fg:w="205"/><text x="2.6560%" y="623.50"></text></g><g><title>PhaseLive::add_liveout (383 samples, 0.03%)</title><rect x="2.4219%" y="613" width="0.0296%" height="15" fill="rgb(233,42,35)" fg:x="31311" fg:w="383"/><text x="2.6719%" y="623.50"></text></g><g><title>PhaseLive::compute (929 samples, 0.07%)</title><rect x="2.3799%" y="629" width="0.0719%" height="15" fill="rgb(231,13,6)" fg:x="30768" fg:w="929"/><text x="2.6299%" y="639.50"></text></g><g><title>PhaseCFG::global_code_motion (3,881 samples, 0.30%)</title><rect x="2.1534%" y="645" width="0.3002%" height="15" fill="rgb(207,181,40)" fg:x="27840" fg:w="3881"/><text x="2.4034%" y="655.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,056 samples, 0.31%)</title><rect x="2.1402%" y="661" width="0.3137%" height="15" fill="rgb(254,173,49)" fg:x="27670" fg:w="4056"/><text x="2.3902%" y="671.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,074 samples, 0.08%)</title><rect x="2.4756%" y="645" width="0.0831%" height="15" fill="rgb(221,1,38)" fg:x="32006" fg:w="1074"/><text x="2.7256%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (306 samples, 0.02%)</title><rect x="2.6057%" y="629" width="0.0237%" height="15" fill="rgb(206,124,46)" fg:x="33688" fg:w="306"/><text x="2.8557%" y="639.50"></text></g><g><title>PhaseChaitin::bias_color (167 samples, 0.01%)</title><rect x="2.6294%" y="629" width="0.0129%" height="15" fill="rgb(249,21,11)" fg:x="33994" fg:w="167"/><text x="2.8794%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (360 samples, 0.03%)</title><rect x="2.6776%" y="613" width="0.0278%" height="15" fill="rgb(222,201,40)" fg:x="34618" fg:w="360"/><text x="2.9276%" y="623.50"></text></g><g><title>PhaseIFG::re_insert (823 samples, 0.06%)</title><rect x="2.6431%" y="629" width="0.0637%" height="15" fill="rgb(235,61,29)" fg:x="34171" fg:w="823"/><text x="2.8931%" y="639.50"></text></g><g><title>RegMask::clear_to_sets (177 samples, 0.01%)</title><rect x="2.7067%" y="629" width="0.0137%" height="15" fill="rgb(219,207,3)" fg:x="34994" fg:w="177"/><text x="2.9567%" y="639.50"></text></g><g><title>PhaseChaitin::Select (2,094 samples, 0.16%)</title><rect x="2.5587%" y="645" width="0.1620%" height="15" fill="rgb(222,56,46)" fg:x="33080" fg:w="2094"/><text x="2.8087%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (305 samples, 0.02%)</title><rect x="2.7434%" y="629" width="0.0236%" height="15" fill="rgb(239,76,54)" fg:x="35468" fg:w="305"/><text x="2.9934%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (381 samples, 0.03%)</title><rect x="2.8067%" y="613" width="0.0295%" height="15" fill="rgb(231,124,27)" fg:x="36287" fg:w="381"/><text x="3.0567%" y="623.50"></text></g><g><title>PhaseIFG::remove_node (898 samples, 0.07%)</title><rect x="2.7670%" y="629" width="0.0695%" height="15" fill="rgb(249,195,6)" fg:x="35773" fg:w="898"/><text x="3.0170%" y="639.50"></text></g><g><title>PhaseChaitin::Simplify (1,498 samples, 0.12%)</title><rect x="2.7207%" y="645" width="0.1159%" height="15" fill="rgb(237,174,47)" fg:x="35174" fg:w="1498"/><text x="2.9707%" y="655.50"></text></g><g><title>MachNode::rematerialize (136 samples, 0.01%)</title><rect x="3.0505%" y="629" width="0.0105%" height="15" fill="rgb(206,201,31)" fg:x="39439" fg:w="136"/><text x="3.3005%" y="639.50"></text></g><g><title>Node::rematerialize (162 samples, 0.01%)</title><rect x="3.0645%" y="629" width="0.0125%" height="15" fill="rgb(231,57,52)" fg:x="39620" fg:w="162"/><text x="3.3145%" y="639.50"></text></g><g><title>PhaseChaitin::split_USE (192 samples, 0.01%)</title><rect x="3.0895%" y="629" width="0.0149%" height="15" fill="rgb(248,177,22)" fg:x="39943" fg:w="192"/><text x="3.3395%" y="639.50"></text></g><g><title>PhaseChaitin::Split (3,556 samples, 0.28%)</title><rect x="2.8365%" y="645" width="0.2751%" height="15" fill="rgb(215,211,37)" fg:x="36672" fg:w="3556"/><text x="3.0865%" y="655.50"></text></g><g><title>IndexSet::IndexSet (258 samples, 0.02%)</title><rect x="3.1844%" y="629" width="0.0200%" height="15" fill="rgb(241,128,51)" fg:x="41170" fg:w="258"/><text x="3.4344%" y="639.50"></text></g><g><title>PhaseChaitin::raise_pressure (150 samples, 0.01%)</title><rect x="3.2622%" y="613" width="0.0116%" height="15" fill="rgb(227,165,31)" fg:x="42176" fg:w="150"/><text x="3.5122%" y="623.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (781 samples, 0.06%)</title><rect x="3.2138%" y="629" width="0.0604%" height="15" fill="rgb(228,167,24)" fg:x="41550" fg:w="781"/><text x="3.4638%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (167 samples, 0.01%)</title><rect x="3.3060%" y="613" width="0.0129%" height="15" fill="rgb(228,143,12)" fg:x="42742" fg:w="167"/><text x="3.5560%" y="623.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (546 samples, 0.04%)</title><rect x="3.2833%" y="629" width="0.0422%" height="15" fill="rgb(249,149,8)" fg:x="42448" fg:w="546"/><text x="3.5333%" y="639.50"></text></g><g><title>IndexSet::alloc_block_containing (148 samples, 0.01%)</title><rect x="3.4835%" y="613" width="0.0114%" height="15" fill="rgb(243,35,44)" fg:x="45037" fg:w="148"/><text x="3.7335%" y="623.50"></text></g><g><title>IndexSetIterator::advance_and_next (879 samples, 0.07%)</title><rect x="3.4961%" y="613" width="0.0680%" height="15" fill="rgb(246,89,9)" fg:x="45200" fg:w="879"/><text x="3.7461%" y="623.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,091 samples, 0.24%)</title><rect x="3.3255%" y="629" width="0.2391%" height="15" fill="rgb(233,213,13)" fg:x="42994" fg:w="3091"/><text x="3.5755%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (196 samples, 0.02%)</title><rect x="3.6147%" y="613" width="0.0152%" height="15" fill="rgb(233,141,41)" fg:x="46733" fg:w="196"/><text x="3.8647%" y="623.50"></text></g><g><title>RegMask::Size (362 samples, 0.03%)</title><rect x="3.6299%" y="613" width="0.0280%" height="15" fill="rgb(239,167,4)" fg:x="46929" fg:w="362"/><text x="3.8799%" y="623.50"></text></g><g><title>RegMask::smear_to_sets (792 samples, 0.06%)</title><rect x="3.6579%" y="613" width="0.0613%" height="15" fill="rgb(209,217,16)" fg:x="47291" fg:w="792"/><text x="3.9079%" y="623.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,900 samples, 0.15%)</title><rect x="3.5728%" y="629" width="0.1470%" height="15" fill="rgb(219,88,35)" fg:x="46191" fg:w="1900"/><text x="3.8228%" y="639.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,961 samples, 0.62%)</title><rect x="3.1116%" y="645" width="0.6158%" height="15" fill="rgb(220,193,23)" fg:x="40228" fg:w="7961"/><text x="3.3616%" y="655.50"></text></g><g><title>PhaseChaitin::interfere_with_live (407 samples, 0.03%)</title><rect x="3.7394%" y="629" width="0.0315%" height="15" fill="rgb(230,90,52)" fg:x="48345" fg:w="407"/><text x="3.9894%" y="639.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (570 samples, 0.04%)</title><rect x="3.7273%" y="645" width="0.0441%" height="15" fill="rgb(252,106,19)" fg:x="48189" fg:w="570"/><text x="3.9773%" y="655.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (134 samples, 0.01%)</title><rect x="3.7714%" y="645" width="0.0104%" height="15" fill="rgb(206,74,20)" fg:x="48759" fg:w="134"/><text x="4.0214%" y="655.50"></text></g><g><title>RegMask::Size (1,386 samples, 0.11%)</title><rect x="3.9759%" y="629" width="0.1072%" height="15" fill="rgb(230,138,44)" fg:x="51403" fg:w="1386"/><text x="4.2259%" y="639.50"></text></g><g><title>RegMask::clear_to_sets (224 samples, 0.02%)</title><rect x="4.0831%" y="629" width="0.0173%" height="15" fill="rgb(235,182,43)" fg:x="52789" fg:w="224"/><text x="4.3331%" y="639.50"></text></g><g><title>RegMask::is_bound1 (177 samples, 0.01%)</title><rect x="4.1096%" y="629" width="0.0137%" height="15" fill="rgb(242,16,51)" fg:x="53131" fg:w="177"/><text x="4.3596%" y="639.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,485 samples, 0.35%)</title><rect x="3.7970%" y="645" width="0.3469%" height="15" fill="rgb(248,9,4)" fg:x="49090" fg:w="4485"/><text x="4.0470%" y="655.50"></text></g><g><title>PhaseChaitin::merge_multidefs (631 samples, 0.05%)</title><rect x="4.1440%" y="645" width="0.0488%" height="15" fill="rgb(210,31,22)" fg:x="53576" fg:w="631"/><text x="4.3940%" y="655.50"></text></g><g><title>PhaseChaitin::elide_copy (2,424 samples, 0.19%)</title><rect x="4.3679%" y="629" width="0.1875%" height="15" fill="rgb(239,54,39)" fg:x="56470" fg:w="2424"/><text x="4.6179%" y="639.50"></text></g><g><title>find_lowest_bit (447 samples, 0.03%)</title><rect x="4.5690%" y="629" width="0.0346%" height="15" fill="rgb(230,99,41)" fg:x="59070" fg:w="447"/><text x="4.8190%" y="639.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,316 samples, 0.41%)</title><rect x="4.1928%" y="645" width="0.4112%" height="15" fill="rgb(253,106,12)" fg:x="54207" fg:w="5316"/><text x="4.4428%" y="655.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (211 samples, 0.02%)</title><rect x="4.6041%" y="645" width="0.0163%" height="15" fill="rgb(213,46,41)" fg:x="59524" fg:w="211"/><text x="4.8541%" y="655.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (168 samples, 0.01%)</title><rect x="4.6211%" y="629" width="0.0130%" height="15" fill="rgb(215,133,35)" fg:x="59744" fg:w="168"/><text x="4.8711%" y="639.50"></text></g><g><title>PhaseCFG::is_uncommon (131 samples, 0.01%)</title><rect x="4.6380%" y="613" width="0.0101%" height="15" fill="rgb(213,28,5)" fg:x="59963" fg:w="131"/><text x="4.8880%" y="623.50"></text></g><g><title>IndexSet::lrg_union (299 samples, 0.02%)</title><rect x="4.6514%" y="597" width="0.0231%" height="15" fill="rgb(215,77,49)" fg:x="60136" fg:w="299"/><text x="4.9014%" y="607.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (323 samples, 0.02%)</title><rect x="4.6756%" y="597" width="0.0250%" height="15" fill="rgb(248,100,22)" fg:x="60448" fg:w="323"/><text x="4.9256%" y="607.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (778 samples, 0.06%)</title><rect x="4.6482%" y="613" width="0.0602%" height="15" fill="rgb(208,67,9)" fg:x="60094" fg:w="778"/><text x="4.8982%" y="623.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,139 samples, 0.09%)</title><rect x="4.6204%" y="645" width="0.0881%" height="15" fill="rgb(219,133,21)" fg:x="59735" fg:w="1139"/><text x="4.8704%" y="655.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (962 samples, 0.07%)</title><rect x="4.6341%" y="629" width="0.0744%" height="15" fill="rgb(246,46,29)" fg:x="59912" fg:w="962"/><text x="4.8841%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (487 samples, 0.04%)</title><rect x="4.7441%" y="629" width="0.0377%" height="15" fill="rgb(246,185,52)" fg:x="61334" fg:w="487"/><text x="4.9941%" y="639.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (947 samples, 0.07%)</title><rect x="4.7086%" y="645" width="0.0732%" height="15" fill="rgb(252,136,11)" fg:x="60875" fg:w="947"/><text x="4.9586%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (397 samples, 0.03%)</title><rect x="4.8183%" y="629" width="0.0307%" height="15" fill="rgb(219,138,53)" fg:x="62294" fg:w="397"/><text x="5.0683%" y="639.50"></text></g><g><title>PhaseIFG::SquareUp (872 samples, 0.07%)</title><rect x="4.7818%" y="645" width="0.0674%" height="15" fill="rgb(211,51,23)" fg:x="61822" fg:w="872"/><text x="5.0318%" y="655.50"></text></g><g><title>IndexSet::initialize (188 samples, 0.01%)</title><rect x="4.8584%" y="629" width="0.0145%" height="15" fill="rgb(247,221,28)" fg:x="62812" fg:w="188"/><text x="5.1084%" y="639.50"></text></g><g><title>PhaseIFG::init (384 samples, 0.03%)</title><rect x="4.8493%" y="645" width="0.0297%" height="15" fill="rgb(251,222,45)" fg:x="62694" fg:w="384"/><text x="5.0993%" y="655.50"></text></g><g><title>IndexSet::alloc_block_containing (190 samples, 0.01%)</title><rect x="5.0520%" y="613" width="0.0147%" height="15" fill="rgb(217,162,53)" fg:x="65315" fg:w="190"/><text x="5.3020%" y="623.50"></text></g><g><title>IndexSetIterator::advance_and_next (326 samples, 0.03%)</title><rect x="5.0698%" y="613" width="0.0252%" height="15" fill="rgb(229,93,14)" fg:x="65545" fg:w="326"/><text x="5.3198%" y="623.50"></text></g><g><title>PhaseLive::add_liveout (1,354 samples, 0.10%)</title><rect x="4.9925%" y="629" width="0.1047%" height="15" fill="rgb(209,67,49)" fg:x="64545" fg:w="1354"/><text x="5.2425%" y="639.50"></text></g><g><title>PhaseLive::compute (2,832 samples, 0.22%)</title><rect x="4.8794%" y="645" width="0.2191%" height="15" fill="rgb(213,87,29)" fg:x="63083" fg:w="2832"/><text x="5.1294%" y="655.50"></text></g><g><title>PhaseChaitin::Register_Allocate (34,248 samples, 2.65%)</title><rect x="2.4639%" y="661" width="2.6490%" height="15" fill="rgb(205,151,52)" fg:x="31855" fg:w="34248"/><text x="2.7139%" y="671.50">Ph..</text></g><g><title>Compile::Code_Gen (44,027 samples, 3.41%)</title><rect x="1.7124%" y="677" width="3.4054%" height="15" fill="rgb(253,215,39)" fg:x="22139" fg:w="44027"/><text x="1.9624%" y="687.50">Com..</text></g><g><title>Parse::do_one_block (203 samples, 0.02%)</title><rect x="5.1437%" y="53" width="0.0157%" height="15" fill="rgb(221,220,41)" fg:x="66501" fg:w="203"/><text x="5.3937%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (200 samples, 0.02%)</title><rect x="5.1440%" y="37" width="0.0155%" height="15" fill="rgb(218,133,21)" fg:x="66504" fg:w="200"/><text x="5.3940%" y="47.50"></text></g><g><title>Parse::do_all_blocks (205 samples, 0.02%)</title><rect x="5.1437%" y="69" width="0.0159%" height="15" fill="rgb(221,193,43)" fg:x="66501" fg:w="205"/><text x="5.3937%" y="79.50"></text></g><g><title>ParseGenerator::generate (237 samples, 0.02%)</title><rect x="5.1421%" y="101" width="0.0183%" height="15" fill="rgb(240,128,52)" fg:x="66480" fg:w="237"/><text x="5.3921%" y="111.50"></text></g><g><title>Parse::Parse (237 samples, 0.02%)</title><rect x="5.1421%" y="85" width="0.0183%" height="15" fill="rgb(253,114,12)" fg:x="66480" fg:w="237"/><text x="5.3921%" y="95.50"></text></g><g><title>Parse::do_call (326 samples, 0.03%)</title><rect x="5.1370%" y="117" width="0.0252%" height="15" fill="rgb(215,223,47)" fg:x="66414" fg:w="326"/><text x="5.3870%" y="127.50"></text></g><g><title>Parse::do_one_block (450 samples, 0.03%)</title><rect x="5.1345%" y="149" width="0.0348%" height="15" fill="rgb(248,225,23)" fg:x="66382" fg:w="450"/><text x="5.3845%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (441 samples, 0.03%)</title><rect x="5.1352%" y="133" width="0.0341%" height="15" fill="rgb(250,108,0)" fg:x="66391" fg:w="441"/><text x="5.3852%" y="143.50"></text></g><g><title>Parse::do_all_blocks (454 samples, 0.04%)</title><rect x="5.1345%" y="165" width="0.0351%" height="15" fill="rgb(228,208,7)" fg:x="66381" fg:w="454"/><text x="5.3845%" y="175.50"></text></g><g><title>ParseGenerator::generate (489 samples, 0.04%)</title><rect x="5.1328%" y="197" width="0.0378%" height="15" fill="rgb(244,45,10)" fg:x="66360" fg:w="489"/><text x="5.3828%" y="207.50"></text></g><g><title>Parse::Parse (489 samples, 0.04%)</title><rect x="5.1328%" y="181" width="0.0378%" height="15" fill="rgb(207,125,25)" fg:x="66360" fg:w="489"/><text x="5.3828%" y="191.50"></text></g><g><title>Parse::do_call (604 samples, 0.05%)</title><rect x="5.1262%" y="213" width="0.0467%" height="15" fill="rgb(210,195,18)" fg:x="66274" fg:w="604"/><text x="5.3762%" y="223.50"></text></g><g><title>Parse::do_one_block (694 samples, 0.05%)</title><rect x="5.1254%" y="245" width="0.0537%" height="15" fill="rgb(249,80,12)" fg:x="66264" fg:w="694"/><text x="5.3754%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (691 samples, 0.05%)</title><rect x="5.1256%" y="229" width="0.0534%" height="15" fill="rgb(221,65,9)" fg:x="66267" fg:w="691"/><text x="5.3756%" y="239.50"></text></g><g><title>ParseGenerator::generate (698 samples, 0.05%)</title><rect x="5.1252%" y="293" width="0.0540%" height="15" fill="rgb(235,49,36)" fg:x="66261" fg:w="698"/><text x="5.3752%" y="303.50"></text></g><g><title>Parse::Parse (698 samples, 0.05%)</title><rect x="5.1252%" y="277" width="0.0540%" height="15" fill="rgb(225,32,20)" fg:x="66261" fg:w="698"/><text x="5.3752%" y="287.50"></text></g><g><title>Parse::do_all_blocks (695 samples, 0.05%)</title><rect x="5.1254%" y="261" width="0.0538%" height="15" fill="rgb(215,141,46)" fg:x="66264" fg:w="695"/><text x="5.3754%" y="271.50"></text></g><g><title>Parse::do_call (817 samples, 0.06%)</title><rect x="5.1215%" y="309" width="0.0632%" height="15" fill="rgb(250,160,47)" fg:x="66213" fg:w="817"/><text x="5.3715%" y="319.50"></text></g><g><title>ParseGenerator::generate (828 samples, 0.06%)</title><rect x="5.1214%" y="389" width="0.0640%" height="15" fill="rgb(216,222,40)" fg:x="66212" fg:w="828"/><text x="5.3714%" y="399.50"></text></g><g><title>Parse::Parse (828 samples, 0.06%)</title><rect x="5.1214%" y="373" width="0.0640%" height="15" fill="rgb(234,217,39)" fg:x="66212" fg:w="828"/><text x="5.3714%" y="383.50"></text></g><g><title>Parse::do_all_blocks (827 samples, 0.06%)</title><rect x="5.1215%" y="357" width="0.0640%" height="15" fill="rgb(207,178,40)" fg:x="66213" fg:w="827"/><text x="5.3715%" y="367.50"></text></g><g><title>Parse::do_one_block (827 samples, 0.06%)</title><rect x="5.1215%" y="341" width="0.0640%" height="15" fill="rgb(221,136,13)" fg:x="66213" fg:w="827"/><text x="5.3715%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (827 samples, 0.06%)</title><rect x="5.1215%" y="325" width="0.0640%" height="15" fill="rgb(249,199,10)" fg:x="66213" fg:w="827"/><text x="5.3715%" y="335.50"></text></g><g><title>Parse::do_call (976 samples, 0.08%)</title><rect x="5.1190%" y="405" width="0.0755%" height="15" fill="rgb(249,222,13)" fg:x="66181" fg:w="976"/><text x="5.3690%" y="415.50"></text></g><g><title>ParseGenerator::generate (978 samples, 0.08%)</title><rect x="5.1190%" y="485" width="0.0756%" height="15" fill="rgb(244,185,38)" fg:x="66181" fg:w="978"/><text x="5.3690%" y="495.50"></text></g><g><title>Parse::Parse (978 samples, 0.08%)</title><rect x="5.1190%" y="469" width="0.0756%" height="15" fill="rgb(236,202,9)" fg:x="66181" fg:w="978"/><text x="5.3690%" y="479.50"></text></g><g><title>Parse::do_all_blocks (978 samples, 0.08%)</title><rect x="5.1190%" y="453" width="0.0756%" height="15" fill="rgb(250,229,37)" fg:x="66181" fg:w="978"/><text x="5.3690%" y="463.50"></text></g><g><title>Parse::do_one_block (978 samples, 0.08%)</title><rect x="5.1190%" y="437" width="0.0756%" height="15" fill="rgb(206,174,23)" fg:x="66181" fg:w="978"/><text x="5.3690%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (978 samples, 0.08%)</title><rect x="5.1190%" y="421" width="0.0756%" height="15" fill="rgb(211,33,43)" fg:x="66181" fg:w="978"/><text x="5.3690%" y="431.50"></text></g><g><title>Parse::do_call (131 samples, 0.01%)</title><rect x="5.1952%" y="293" width="0.0101%" height="15" fill="rgb(245,58,50)" fg:x="67166" fg:w="131"/><text x="5.4452%" y="303.50"></text></g><g><title>ParseGenerator::generate (133 samples, 0.01%)</title><rect x="5.1952%" y="373" width="0.0103%" height="15" fill="rgb(244,68,36)" fg:x="67166" fg:w="133"/><text x="5.4452%" y="383.50"></text></g><g><title>Parse::Parse (133 samples, 0.01%)</title><rect x="5.1952%" y="357" width="0.0103%" height="15" fill="rgb(232,229,15)" fg:x="67166" fg:w="133"/><text x="5.4452%" y="367.50"></text></g><g><title>Parse::do_all_blocks (133 samples, 0.01%)</title><rect x="5.1952%" y="341" width="0.0103%" height="15" fill="rgb(254,30,23)" fg:x="67166" fg:w="133"/><text x="5.4452%" y="351.50"></text></g><g><title>Parse::do_one_block (133 samples, 0.01%)</title><rect x="5.1952%" y="325" width="0.0103%" height="15" fill="rgb(235,160,14)" fg:x="67166" fg:w="133"/><text x="5.4452%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (133 samples, 0.01%)</title><rect x="5.1952%" y="309" width="0.0103%" height="15" fill="rgb(212,155,44)" fg:x="67166" fg:w="133"/><text x="5.4452%" y="319.50"></text></g><g><title>ParseGenerator::generate (147 samples, 0.01%)</title><rect x="5.1946%" y="469" width="0.0114%" height="15" fill="rgb(226,2,50)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="479.50"></text></g><g><title>Parse::Parse (147 samples, 0.01%)</title><rect x="5.1946%" y="453" width="0.0114%" height="15" fill="rgb(234,177,6)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="463.50"></text></g><g><title>Parse::do_all_blocks (147 samples, 0.01%)</title><rect x="5.1946%" y="437" width="0.0114%" height="15" fill="rgb(217,24,9)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="447.50"></text></g><g><title>Parse::do_one_block (147 samples, 0.01%)</title><rect x="5.1946%" y="421" width="0.0114%" height="15" fill="rgb(220,13,46)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (147 samples, 0.01%)</title><rect x="5.1946%" y="405" width="0.0114%" height="15" fill="rgb(239,221,27)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="415.50"></text></g><g><title>Parse::do_call (147 samples, 0.01%)</title><rect x="5.1946%" y="389" width="0.0114%" height="15" fill="rgb(222,198,25)" fg:x="67159" fg:w="147"/><text x="5.4446%" y="399.50"></text></g><g><title>ParseGenerator::generate (1,150 samples, 0.09%)</title><rect x="5.1185%" y="581" width="0.0890%" height="15" fill="rgb(211,99,13)" fg:x="66174" fg:w="1150"/><text x="5.3685%" y="591.50"></text></g><g><title>Parse::Parse (1,150 samples, 0.09%)</title><rect x="5.1185%" y="565" width="0.0890%" height="15" fill="rgb(232,111,31)" fg:x="66174" fg:w="1150"/><text x="5.3685%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,149 samples, 0.09%)</title><rect x="5.1185%" y="549" width="0.0889%" height="15" fill="rgb(245,82,37)" fg:x="66175" fg:w="1149"/><text x="5.3685%" y="559.50"></text></g><g><title>Parse::do_one_block (1,149 samples, 0.09%)</title><rect x="5.1185%" y="533" width="0.0889%" height="15" fill="rgb(227,149,46)" fg:x="66175" fg:w="1149"/><text x="5.3685%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,149 samples, 0.09%)</title><rect x="5.1185%" y="517" width="0.0889%" height="15" fill="rgb(218,36,50)" fg:x="66175" fg:w="1149"/><text x="5.3685%" y="527.50"></text></g><g><title>Parse::do_call (1,149 samples, 0.09%)</title><rect x="5.1185%" y="501" width="0.0889%" height="15" fill="rgb(226,80,48)" fg:x="66175" fg:w="1149"/><text x="5.3685%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (165 samples, 0.01%)</title><rect x="5.1946%" y="485" width="0.0128%" height="15" fill="rgb(238,224,15)" fg:x="67159" fg:w="165"/><text x="5.4446%" y="495.50"></text></g><g><title>ParseGenerator::generate (150 samples, 0.01%)</title><rect x="5.2100%" y="277" width="0.0116%" height="15" fill="rgb(241,136,10)" fg:x="67358" fg:w="150"/><text x="5.4600%" y="287.50"></text></g><g><title>Parse::Parse (150 samples, 0.01%)</title><rect x="5.2100%" y="261" width="0.0116%" height="15" fill="rgb(208,32,45)" fg:x="67358" fg:w="150"/><text x="5.4600%" y="271.50"></text></g><g><title>Parse::do_all_blocks (148 samples, 0.01%)</title><rect x="5.2102%" y="245" width="0.0114%" height="15" fill="rgb(207,135,9)" fg:x="67360" fg:w="148"/><text x="5.4602%" y="255.50"></text></g><g><title>Parse::do_one_block (148 samples, 0.01%)</title><rect x="5.2102%" y="229" width="0.0114%" height="15" fill="rgb(206,86,44)" fg:x="67360" fg:w="148"/><text x="5.4602%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (148 samples, 0.01%)</title><rect x="5.2102%" y="213" width="0.0114%" height="15" fill="rgb(245,177,15)" fg:x="67360" fg:w="148"/><text x="5.4602%" y="223.50"></text></g><g><title>Parse::do_call (204 samples, 0.02%)</title><rect x="5.2084%" y="293" width="0.0158%" height="15" fill="rgb(206,64,50)" fg:x="67337" fg:w="204"/><text x="5.4584%" y="303.50"></text></g><g><title>ParseGenerator::generate (214 samples, 0.02%)</title><rect x="5.2084%" y="373" width="0.0166%" height="15" fill="rgb(234,36,40)" fg:x="67337" fg:w="214"/><text x="5.4584%" y="383.50"></text></g><g><title>Parse::Parse (214 samples, 0.02%)</title><rect x="5.2084%" y="357" width="0.0166%" height="15" fill="rgb(213,64,8)" fg:x="67337" fg:w="214"/><text x="5.4584%" y="367.50"></text></g><g><title>Parse::do_all_blocks (214 samples, 0.02%)</title><rect x="5.2084%" y="341" width="0.0166%" height="15" fill="rgb(210,75,36)" fg:x="67337" fg:w="214"/><text x="5.4584%" y="351.50"></text></g><g><title>Parse::do_one_block (214 samples, 0.02%)</title><rect x="5.2084%" y="325" width="0.0166%" height="15" fill="rgb(229,88,21)" fg:x="67337" fg:w="214"/><text x="5.4584%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (214 samples, 0.02%)</title><rect x="5.2084%" y="309" width="0.0166%" height="15" fill="rgb(252,204,47)" fg:x="67337" fg:w="214"/><text x="5.4584%" y="319.50"></text></g><g><title>ParseGenerator::generate (245 samples, 0.02%)</title><rect x="5.2077%" y="469" width="0.0190%" height="15" fill="rgb(208,77,27)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="479.50"></text></g><g><title>Parse::Parse (245 samples, 0.02%)</title><rect x="5.2077%" y="453" width="0.0190%" height="15" fill="rgb(221,76,26)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="463.50"></text></g><g><title>Parse::do_all_blocks (245 samples, 0.02%)</title><rect x="5.2077%" y="437" width="0.0190%" height="15" fill="rgb(225,139,18)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="447.50"></text></g><g><title>Parse::do_one_block (245 samples, 0.02%)</title><rect x="5.2077%" y="421" width="0.0190%" height="15" fill="rgb(230,137,11)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (245 samples, 0.02%)</title><rect x="5.2077%" y="405" width="0.0190%" height="15" fill="rgb(212,28,1)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="415.50"></text></g><g><title>Parse::do_call (245 samples, 0.02%)</title><rect x="5.2077%" y="389" width="0.0190%" height="15" fill="rgb(248,164,17)" fg:x="67328" fg:w="245"/><text x="5.4577%" y="399.50"></text></g><g><title>ParseGenerator::generate (288 samples, 0.02%)</title><rect x="5.2074%" y="565" width="0.0223%" height="15" fill="rgb(222,171,42)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="575.50"></text></g><g><title>Parse::Parse (288 samples, 0.02%)</title><rect x="5.2074%" y="549" width="0.0223%" height="15" fill="rgb(243,84,45)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="559.50"></text></g><g><title>Parse::do_all_blocks (288 samples, 0.02%)</title><rect x="5.2074%" y="533" width="0.0223%" height="15" fill="rgb(252,49,23)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="543.50"></text></g><g><title>Parse::do_one_block (288 samples, 0.02%)</title><rect x="5.2074%" y="517" width="0.0223%" height="15" fill="rgb(215,19,7)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (288 samples, 0.02%)</title><rect x="5.2074%" y="501" width="0.0223%" height="15" fill="rgb(238,81,41)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="511.50"></text></g><g><title>Parse::do_call (288 samples, 0.02%)</title><rect x="5.2074%" y="485" width="0.0223%" height="15" fill="rgb(210,199,37)" fg:x="67324" fg:w="288"/><text x="5.4574%" y="495.50"></text></g><g><title>Parse::do_call (1,487 samples, 0.12%)</title><rect x="5.1185%" y="597" width="0.1150%" height="15" fill="rgb(244,192,49)" fg:x="66174" fg:w="1487"/><text x="5.3685%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (337 samples, 0.03%)</title><rect x="5.2074%" y="581" width="0.0261%" height="15" fill="rgb(226,211,11)" fg:x="67324" fg:w="337"/><text x="5.4574%" y="591.50"></text></g><g><title>Compile::Compile (45,528 samples, 3.52%)</title><rect x="1.7124%" y="693" width="3.5215%" height="15" fill="rgb(236,162,54)" fg:x="22139" fg:w="45528"/><text x="1.9624%" y="703.50">Com..</text></g><g><title>ParseGenerator::generate (1,493 samples, 0.12%)</title><rect x="5.1185%" y="677" width="0.1155%" height="15" fill="rgb(220,229,9)" fg:x="66174" fg:w="1493"/><text x="5.3685%" y="687.50"></text></g><g><title>Parse::Parse (1,493 samples, 0.12%)</title><rect x="5.1185%" y="661" width="0.1155%" height="15" fill="rgb(250,87,22)" fg:x="66174" fg:w="1493"/><text x="5.3685%" y="671.50"></text></g><g><title>Parse::do_all_blocks (1,493 samples, 0.12%)</title><rect x="5.1185%" y="645" width="0.1155%" height="15" fill="rgb(239,43,17)" fg:x="66174" fg:w="1493"/><text x="5.3685%" y="655.50"></text></g><g><title>Parse::do_one_block (1,493 samples, 0.12%)</title><rect x="5.1185%" y="629" width="0.1155%" height="15" fill="rgb(231,177,25)" fg:x="66174" fg:w="1493"/><text x="5.3685%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (1,493 samples, 0.12%)</title><rect x="5.1185%" y="613" width="0.1155%" height="15" fill="rgb(219,179,1)" fg:x="66174" fg:w="1493"/><text x="5.3685%" y="623.50"></text></g><g><title>Compile::final_graph_reshaping_impl (146 samples, 0.01%)</title><rect x="5.2472%" y="645" width="0.0113%" height="15" fill="rgb(238,219,53)" fg:x="67838" fg:w="146"/><text x="5.4972%" y="655.50"></text></g><g><title>Compile::final_graph_reshaping (332 samples, 0.03%)</title><rect x="5.2341%" y="677" width="0.0257%" height="15" fill="rgb(232,167,36)" fg:x="67669" fg:w="332"/><text x="5.4841%" y="687.50"></text></g><g><title>Compile::final_graph_reshaping_walk (328 samples, 0.03%)</title><rect x="5.2344%" y="661" width="0.0254%" height="15" fill="rgb(244,19,51)" fg:x="67673" fg:w="328"/><text x="5.4844%" y="671.50"></text></g><g><title>Compile::remove_speculative_types (311 samples, 0.02%)</title><rect x="5.2629%" y="677" width="0.0241%" height="15" fill="rgb(224,6,22)" fg:x="68042" fg:w="311"/><text x="5.5129%" y="687.50"></text></g><g><title>ConnectionGraph::split_unique_types (141 samples, 0.01%)</title><rect x="5.3225%" y="645" width="0.0109%" height="15" fill="rgb(224,145,5)" fg:x="68812" fg:w="141"/><text x="5.5725%" y="655.50"></text></g><g><title>ConnectionGraph::compute_escape (600 samples, 0.05%)</title><rect x="5.2871%" y="661" width="0.0464%" height="15" fill="rgb(234,130,49)" fg:x="68355" fg:w="600"/><text x="5.5371%" y="671.50"></text></g><g><title>ConnectionGraph::do_analysis (604 samples, 0.05%)</title><rect x="5.2871%" y="677" width="0.0467%" height="15" fill="rgb(254,6,2)" fg:x="68354" fg:w="604"/><text x="5.5371%" y="687.50"></text></g><g><title>PhaseCCP::analyze (832 samples, 0.06%)</title><rect x="5.3341%" y="677" width="0.0644%" height="15" fill="rgb(208,96,46)" fg:x="68962" fg:w="832"/><text x="5.5841%" y="687.50"></text></g><g><title>PhaseCCP::transform_once (138 samples, 0.01%)</title><rect x="5.4072%" y="645" width="0.0107%" height="15" fill="rgb(239,3,39)" fg:x="69907" fg:w="138"/><text x="5.6572%" y="655.50"></text></g><g><title>PhaseCCP::do_transform (254 samples, 0.02%)</title><rect x="5.3985%" y="677" width="0.0196%" height="15" fill="rgb(233,210,1)" fg:x="69794" fg:w="254"/><text x="5.6485%" y="687.50"></text></g><g><title>PhaseCCP::transform (254 samples, 0.02%)</title><rect x="5.3985%" y="661" width="0.0196%" height="15" fill="rgb(244,137,37)" fg:x="69794" fg:w="254"/><text x="5.6485%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (153 samples, 0.01%)</title><rect x="5.4289%" y="629" width="0.0118%" height="15" fill="rgb(240,136,2)" fg:x="70188" fg:w="153"/><text x="5.6789%" y="639.50"></text></g><g><title>IdealLoopTree::iteration_split (206 samples, 0.02%)</title><rect x="5.4287%" y="645" width="0.0159%" height="15" fill="rgb(239,18,37)" fg:x="70185" fg:w="206"/><text x="5.6787%" y="655.50"></text></g><g><title>IdealLoopTree::iteration_split (250 samples, 0.02%)</title><rect x="5.4275%" y="661" width="0.0193%" height="15" fill="rgb(218,185,22)" fg:x="70170" fg:w="250"/><text x="5.6775%" y="671.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (195 samples, 0.02%)</title><rect x="5.4524%" y="645" width="0.0151%" height="15" fill="rgb(225,218,4)" fg:x="70492" fg:w="195"/><text x="5.7024%" y="655.50"></text></g><g><title>IdealLoopTree::loop_predication (268 samples, 0.02%)</title><rect x="5.4469%" y="661" width="0.0207%" height="15" fill="rgb(230,182,32)" fg:x="70420" fg:w="268"/><text x="5.6969%" y="671.50"></text></g><g><title>NTarjan::DFS (305 samples, 0.02%)</title><rect x="5.5322%" y="645" width="0.0236%" height="15" fill="rgb(242,56,43)" fg:x="71523" fg:w="305"/><text x="5.7822%" y="655.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,151 samples, 0.09%)</title><rect x="5.4717%" y="661" width="0.0890%" height="15" fill="rgb(233,99,24)" fg:x="70741" fg:w="1151"/><text x="5.7217%" y="671.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (169 samples, 0.01%)</title><rect x="5.6705%" y="613" width="0.0131%" height="15" fill="rgb(234,209,42)" fg:x="73311" fg:w="169"/><text x="5.9205%" y="623.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (434 samples, 0.03%)</title><rect x="5.6501%" y="645" width="0.0336%" height="15" fill="rgb(227,7,12)" fg:x="73048" fg:w="434"/><text x="5.9001%" y="655.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (404 samples, 0.03%)</title><rect x="5.6525%" y="629" width="0.0312%" height="15" fill="rgb(245,203,43)" fg:x="73078" fg:w="404"/><text x="5.9025%" y="639.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,696 samples, 0.13%)</title><rect x="5.5607%" y="661" width="0.1312%" height="15" fill="rgb(238,205,33)" fg:x="71892" fg:w="1696"/><text x="5.8107%" y="671.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (264 samples, 0.02%)</title><rect x="5.9013%" y="597" width="0.0204%" height="15" fill="rgb(231,56,7)" fg:x="76295" fg:w="264"/><text x="6.1513%" y="607.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (394 samples, 0.03%)</title><rect x="5.8943%" y="613" width="0.0305%" height="15" fill="rgb(244,186,29)" fg:x="76205" fg:w="394"/><text x="6.1443%" y="623.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (157 samples, 0.01%)</title><rect x="5.9250%" y="613" width="0.0121%" height="15" fill="rgb(234,111,31)" fg:x="76601" fg:w="157"/><text x="6.1750%" y="623.50"></text></g><g><title>PhaseIdealLoop::dom_depth (765 samples, 0.06%)</title><rect x="6.1548%" y="597" width="0.0592%" height="15" fill="rgb(241,149,10)" fg:x="79572" fg:w="765"/><text x="6.4048%" y="607.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,577 samples, 0.28%)</title><rect x="5.9386%" y="613" width="0.2767%" height="15" fill="rgb(249,206,44)" fg:x="76777" fg:w="3577"/><text x="6.1886%" y="623.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,657 samples, 0.36%)</title><rect x="5.8570%" y="629" width="0.3602%" height="15" fill="rgb(251,153,30)" fg:x="75722" fg:w="4657"/><text x="6.1070%" y="639.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,568 samples, 0.43%)</title><rect x="5.7943%" y="645" width="0.4307%" height="15" fill="rgb(239,152,38)" fg:x="74912" fg:w="5568"/><text x="6.0443%" y="655.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (6,911 samples, 0.53%)</title><rect x="5.6919%" y="661" width="0.5346%" height="15" fill="rgb(249,139,47)" fg:x="73588" fg:w="6911"/><text x="5.9419%" y="671.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (250 samples, 0.02%)</title><rect x="6.2775%" y="645" width="0.0193%" height="15" fill="rgb(244,64,35)" fg:x="81159" fg:w="250"/><text x="6.5275%" y="655.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (929 samples, 0.07%)</title><rect x="6.2271%" y="661" width="0.0719%" height="15" fill="rgb(216,46,15)" fg:x="80507" fg:w="929"/><text x="6.4771%" y="671.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (284 samples, 0.02%)</title><rect x="6.3492%" y="645" width="0.0220%" height="15" fill="rgb(250,74,19)" fg:x="82086" fg:w="284"/><text x="6.5992%" y="655.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (174 samples, 0.01%)</title><rect x="6.3979%" y="629" width="0.0135%" height="15" fill="rgb(249,42,33)" fg:x="82716" fg:w="174"/><text x="6.6479%" y="639.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (179 samples, 0.01%)</title><rect x="6.4114%" y="629" width="0.0138%" height="15" fill="rgb(242,149,17)" fg:x="82890" fg:w="179"/><text x="6.6614%" y="639.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (757 samples, 0.06%)</title><rect x="6.3712%" y="645" width="0.0586%" height="15" fill="rgb(244,29,21)" fg:x="82370" fg:w="757"/><text x="6.6212%" y="655.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,645 samples, 0.13%)</title><rect x="6.3032%" y="661" width="0.1272%" height="15" fill="rgb(220,130,37)" fg:x="81491" fg:w="1645"/><text x="6.5532%" y="671.50"></text></g><g><title>RegionNode::Ideal (221 samples, 0.02%)</title><rect x="6.5156%" y="629" width="0.0171%" height="15" fill="rgb(211,67,2)" fg:x="84237" fg:w="221"/><text x="6.7656%" y="639.50"></text></g><g><title>PhaseIterGVN::transform_old (1,401 samples, 0.11%)</title><rect x="6.4355%" y="645" width="0.1084%" height="15" fill="rgb(235,68,52)" fg:x="83202" fg:w="1401"/><text x="6.6855%" y="655.50"></text></g><g><title>PhaseIterGVN::optimize (1,485 samples, 0.11%)</title><rect x="6.4306%" y="661" width="0.1149%" height="15" fill="rgb(246,142,3)" fg:x="83138" fg:w="1485"/><text x="6.6806%" y="671.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (14,669 samples, 1.13%)</title><rect x="5.4200%" y="677" width="1.1346%" height="15" fill="rgb(241,25,7)" fg:x="70072" fg:w="14669"/><text x="5.6700%" y="687.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (136 samples, 0.01%)</title><rect x="6.5547%" y="677" width="0.0105%" height="15" fill="rgb(242,119,39)" fg:x="84742" fg:w="136"/><text x="6.8047%" y="687.50"></text></g><g><title>IfNode::Ideal (340 samples, 0.03%)</title><rect x="6.6011%" y="645" width="0.0263%" height="15" fill="rgb(241,98,45)" fg:x="85343" fg:w="340"/><text x="6.8511%" y="655.50"></text></g><g><title>LoadNode::Ideal (207 samples, 0.02%)</title><rect x="6.6301%" y="645" width="0.0160%" height="15" fill="rgb(254,28,30)" fg:x="85718" fg:w="207"/><text x="6.8801%" y="655.50"></text></g><g><title>NodeHash::hash_find_insert (191 samples, 0.01%)</title><rect x="6.6592%" y="645" width="0.0148%" height="15" fill="rgb(241,142,54)" fg:x="86093" fg:w="191"/><text x="6.9092%" y="655.50"></text></g><g><title>PhaseIterGVN::subsume_node (232 samples, 0.02%)</title><rect x="6.6791%" y="645" width="0.0179%" height="15" fill="rgb(222,85,15)" fg:x="86351" fg:w="232"/><text x="6.9291%" y="655.50"></text></g><g><title>PhiNode::Ideal (167 samples, 0.01%)</title><rect x="6.6975%" y="645" width="0.0129%" height="15" fill="rgb(210,85,47)" fg:x="86589" fg:w="167"/><text x="6.9475%" y="655.50"></text></g><g><title>PhaseIterGVN::subsume_node (145 samples, 0.01%)</title><rect x="6.7267%" y="629" width="0.0112%" height="15" fill="rgb(224,206,25)" fg:x="86966" fg:w="145"/><text x="6.9767%" y="639.50"></text></g><g><title>RegionNode::Ideal (380 samples, 0.03%)</title><rect x="6.7196%" y="645" width="0.0294%" height="15" fill="rgb(243,201,19)" fg:x="86875" fg:w="380"/><text x="6.9696%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (137 samples, 0.01%)</title><rect x="6.7510%" y="437" width="0.0106%" height="15" fill="rgb(236,59,4)" fg:x="87280" fg:w="137"/><text x="7.0010%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (147 samples, 0.01%)</title><rect x="6.7510%" y="453" width="0.0114%" height="15" fill="rgb(254,179,45)" fg:x="87280" fg:w="147"/><text x="7.0010%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (163 samples, 0.01%)</title><rect x="6.7510%" y="469" width="0.0126%" height="15" fill="rgb(226,14,10)" fg:x="87280" fg:w="163"/><text x="7.0010%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (178 samples, 0.01%)</title><rect x="6.7510%" y="485" width="0.0138%" height="15" fill="rgb(244,27,41)" fg:x="87280" fg:w="178"/><text x="7.0010%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (187 samples, 0.01%)</title><rect x="6.7510%" y="501" width="0.0145%" height="15" fill="rgb(235,35,32)" fg:x="87280" fg:w="187"/><text x="7.0010%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (201 samples, 0.02%)</title><rect x="6.7509%" y="517" width="0.0155%" height="15" fill="rgb(218,68,31)" fg:x="87279" fg:w="201"/><text x="7.0009%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (216 samples, 0.02%)</title><rect x="6.7509%" y="533" width="0.0167%" height="15" fill="rgb(207,120,37)" fg:x="87279" fg:w="216"/><text x="7.0009%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (232 samples, 0.02%)</title><rect x="6.7509%" y="549" width="0.0179%" height="15" fill="rgb(227,98,0)" fg:x="87279" fg:w="232"/><text x="7.0009%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (241 samples, 0.02%)</title><rect x="6.7509%" y="565" width="0.0186%" height="15" fill="rgb(207,7,3)" fg:x="87279" fg:w="241"/><text x="7.0009%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (272 samples, 0.02%)</title><rect x="6.7509%" y="581" width="0.0210%" height="15" fill="rgb(206,98,19)" fg:x="87279" fg:w="272"/><text x="7.0009%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (309 samples, 0.02%)</title><rect x="6.7509%" y="597" width="0.0239%" height="15" fill="rgb(217,5,26)" fg:x="87279" fg:w="309"/><text x="7.0009%" y="607.50"></text></g><g><title>InitializeNode::can_capture_store (311 samples, 0.02%)</title><rect x="6.7508%" y="629" width="0.0241%" height="15" fill="rgb(235,190,38)" fg:x="87278" fg:w="311"/><text x="7.0008%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (311 samples, 0.02%)</title><rect x="6.7508%" y="613" width="0.0241%" height="15" fill="rgb(247,86,24)" fg:x="87278" fg:w="311"/><text x="7.0008%" y="623.50"></text></g><g><title>StoreNode::Ideal (352 samples, 0.03%)</title><rect x="6.7507%" y="645" width="0.0272%" height="15" fill="rgb(205,101,16)" fg:x="87276" fg:w="352"/><text x="7.0007%" y="655.50"></text></g><g><title>PhaseIterGVN::transform_old (2,712 samples, 0.21%)</title><rect x="6.5737%" y="661" width="0.2098%" height="15" fill="rgb(246,168,33)" fg:x="84988" fg:w="2712"/><text x="6.8237%" y="671.50"></text></g><g><title>PhaseIterGVN::optimize (2,841 samples, 0.22%)</title><rect x="6.5652%" y="677" width="0.2197%" height="15" fill="rgb(231,114,1)" fg:x="84878" fg:w="2841"/><text x="6.8152%" y="687.50"></text></g><g><title>PhaseIterGVN::transform_old (312 samples, 0.02%)</title><rect x="6.7910%" y="645" width="0.0241%" height="15" fill="rgb(207,184,53)" fg:x="87798" fg:w="312"/><text x="7.0410%" y="655.50"></text></g><g><title>PhaseIterGVN::optimize (323 samples, 0.02%)</title><rect x="6.7905%" y="661" width="0.0250%" height="15" fill="rgb(224,95,51)" fg:x="87791" fg:w="323"/><text x="7.0405%" y="671.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (484 samples, 0.04%)</title><rect x="6.7898%" y="677" width="0.0374%" height="15" fill="rgb(212,188,45)" fg:x="87782" fg:w="484"/><text x="7.0398%" y="687.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (159 samples, 0.01%)</title><rect x="6.8287%" y="661" width="0.0123%" height="15" fill="rgb(223,154,38)" fg:x="88285" fg:w="159"/><text x="7.0787%" y="671.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (180 samples, 0.01%)</title><rect x="6.8272%" y="677" width="0.0139%" height="15" fill="rgb(251,22,52)" fg:x="88266" fg:w="180"/><text x="7.0772%" y="687.50"></text></g><g><title>Compile::Optimize (20,785 samples, 1.61%)</title><rect x="5.2339%" y="693" width="1.6077%" height="15" fill="rgb(229,209,22)" fg:x="67667" fg:w="20785"/><text x="5.4839%" y="703.50"></text></g><g><title>Parse::do_one_block (182 samples, 0.01%)</title><rect x="6.8431%" y="581" width="0.0141%" height="15" fill="rgb(234,138,34)" fg:x="88471" fg:w="182"/><text x="7.0931%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (163 samples, 0.01%)</title><rect x="6.8446%" y="565" width="0.0126%" height="15" fill="rgb(212,95,11)" fg:x="88490" fg:w="163"/><text x="7.0946%" y="575.50"></text></g><g><title>Parse::do_all_blocks (186 samples, 0.01%)</title><rect x="6.8430%" y="597" width="0.0144%" height="15" fill="rgb(240,179,47)" fg:x="88470" fg:w="186"/><text x="7.0930%" y="607.50"></text></g><g><title>ParseGenerator::generate (198 samples, 0.02%)</title><rect x="6.8430%" y="629" width="0.0153%" height="15" fill="rgb(240,163,11)" fg:x="88470" fg:w="198"/><text x="7.0930%" y="639.50"></text></g><g><title>Parse::Parse (198 samples, 0.02%)</title><rect x="6.8430%" y="613" width="0.0153%" height="15" fill="rgb(236,37,12)" fg:x="88470" fg:w="198"/><text x="7.0930%" y="623.50"></text></g><g><title>CompileBroker::compiler_thread_loop (234 samples, 0.02%)</title><rect x="6.8420%" y="693" width="0.0181%" height="15" fill="rgb(232,164,16)" fg:x="88457" fg:w="234"/><text x="7.0920%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (234 samples, 0.02%)</title><rect x="6.8420%" y="677" width="0.0181%" height="15" fill="rgb(244,205,15)" fg:x="88457" fg:w="234"/><text x="7.0920%" y="687.50"></text></g><g><title>C2Compiler::compile_method (234 samples, 0.02%)</title><rect x="6.8420%" y="661" width="0.0181%" height="15" fill="rgb(223,117,47)" fg:x="88457" fg:w="234"/><text x="7.0920%" y="671.50"></text></g><g><title>Compile::Compile (234 samples, 0.02%)</title><rect x="6.8420%" y="645" width="0.0181%" height="15" fill="rgb(244,107,35)" fg:x="88457" fg:w="234"/><text x="7.0920%" y="655.50"></text></g><g><title>Compile::call_generator (142 samples, 0.01%)</title><rect x="6.8729%" y="549" width="0.0110%" height="15" fill="rgb(205,140,8)" fg:x="88857" fg:w="142"/><text x="7.1229%" y="559.50"></text></g><g><title>Parse::do_all_blocks (144 samples, 0.01%)</title><rect x="6.8952%" y="517" width="0.0111%" height="15" fill="rgb(228,84,46)" fg:x="89145" fg:w="144"/><text x="7.1452%" y="527.50"></text></g><g><title>Parse::Parse (249 samples, 0.02%)</title><rect x="6.8910%" y="533" width="0.0193%" height="15" fill="rgb(254,188,9)" fg:x="89090" fg:w="249"/><text x="7.1410%" y="543.50"></text></g><g><title>ParseGenerator::generate (252 samples, 0.02%)</title><rect x="6.8908%" y="549" width="0.0195%" height="15" fill="rgb(206,112,54)" fg:x="89088" fg:w="252"/><text x="7.1408%" y="559.50"></text></g><g><title>Parse::do_call (643 samples, 0.05%)</title><rect x="6.8729%" y="565" width="0.0497%" height="15" fill="rgb(216,84,49)" fg:x="88857" fg:w="643"/><text x="7.1229%" y="575.50"></text></g><g><title>Parse::do_all_blocks (886 samples, 0.07%)</title><rect x="6.8690%" y="613" width="0.0685%" height="15" fill="rgb(214,194,35)" fg:x="88806" fg:w="886"/><text x="7.1190%" y="623.50"></text></g><g><title>Parse::do_one_block (886 samples, 0.07%)</title><rect x="6.8690%" y="597" width="0.0685%" height="15" fill="rgb(249,28,3)" fg:x="88806" fg:w="886"/><text x="7.1190%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (879 samples, 0.07%)</title><rect x="6.8695%" y="581" width="0.0680%" height="15" fill="rgb(222,56,52)" fg:x="88813" fg:w="879"/><text x="7.1195%" y="591.50"></text></g><g><title>ParseGenerator::generate (897 samples, 0.07%)</title><rect x="6.8690%" y="645" width="0.0694%" height="15" fill="rgb(245,217,50)" fg:x="88806" fg:w="897"/><text x="7.1190%" y="655.50"></text></g><g><title>Parse::Parse (897 samples, 0.07%)</title><rect x="6.8690%" y="629" width="0.0694%" height="15" fill="rgb(213,201,24)" fg:x="88806" fg:w="897"/><text x="7.1190%" y="639.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,043 samples, 0.08%)</title><rect x="6.8601%" y="693" width="0.0807%" height="15" fill="rgb(248,116,28)" fg:x="88691" fg:w="1043"/><text x="7.1101%" y="703.50"></text></g><g><title>C2Compiler::compile_method (1,043 samples, 0.08%)</title><rect x="6.8601%" y="677" width="0.0807%" height="15" fill="rgb(219,72,43)" fg:x="88691" fg:w="1043"/><text x="7.1101%" y="687.50"></text></g><g><title>Compile::Compile (1,043 samples, 0.08%)</title><rect x="6.8601%" y="661" width="0.0807%" height="15" fill="rgb(209,138,14)" fg:x="88691" fg:w="1043"/><text x="7.1101%" y="671.50"></text></g><g><title>ParseGenerator::generate (135 samples, 0.01%)</title><rect x="6.9776%" y="405" width="0.0104%" height="15" fill="rgb(222,18,33)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="415.50"></text></g><g><title>Parse::Parse (135 samples, 0.01%)</title><rect x="6.9776%" y="389" width="0.0104%" height="15" fill="rgb(213,199,7)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="399.50"></text></g><g><title>Parse::do_all_blocks (135 samples, 0.01%)</title><rect x="6.9776%" y="373" width="0.0104%" height="15" fill="rgb(250,110,10)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="383.50"></text></g><g><title>Parse::do_one_block (135 samples, 0.01%)</title><rect x="6.9776%" y="357" width="0.0104%" height="15" fill="rgb(248,123,6)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (135 samples, 0.01%)</title><rect x="6.9776%" y="341" width="0.0104%" height="15" fill="rgb(206,91,31)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="351.50"></text></g><g><title>Parse::do_call (135 samples, 0.01%)</title><rect x="6.9776%" y="325" width="0.0104%" height="15" fill="rgb(211,154,13)" fg:x="90210" fg:w="135"/><text x="7.2276%" y="335.50"></text></g><g><title>ParseGenerator::generate (152 samples, 0.01%)</title><rect x="6.9776%" y="501" width="0.0118%" height="15" fill="rgb(225,148,7)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="511.50"></text></g><g><title>Parse::Parse (152 samples, 0.01%)</title><rect x="6.9776%" y="485" width="0.0118%" height="15" fill="rgb(220,160,43)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="495.50"></text></g><g><title>Parse::do_all_blocks (152 samples, 0.01%)</title><rect x="6.9776%" y="469" width="0.0118%" height="15" fill="rgb(213,52,39)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="479.50"></text></g><g><title>Parse::do_one_block (152 samples, 0.01%)</title><rect x="6.9776%" y="453" width="0.0118%" height="15" fill="rgb(243,137,7)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (152 samples, 0.01%)</title><rect x="6.9776%" y="437" width="0.0118%" height="15" fill="rgb(230,79,13)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="447.50"></text></g><g><title>Parse::do_call (152 samples, 0.01%)</title><rect x="6.9776%" y="421" width="0.0118%" height="15" fill="rgb(247,105,23)" fg:x="90210" fg:w="152"/><text x="7.2276%" y="431.50"></text></g><g><title>ParseGenerator::generate (173 samples, 0.01%)</title><rect x="6.9776%" y="597" width="0.0134%" height="15" fill="rgb(223,179,41)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="607.50"></text></g><g><title>Parse::Parse (173 samples, 0.01%)</title><rect x="6.9776%" y="581" width="0.0134%" height="15" fill="rgb(218,9,34)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="591.50"></text></g><g><title>Parse::do_all_blocks (173 samples, 0.01%)</title><rect x="6.9776%" y="565" width="0.0134%" height="15" fill="rgb(222,106,8)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="575.50"></text></g><g><title>Parse::do_one_block (173 samples, 0.01%)</title><rect x="6.9776%" y="549" width="0.0134%" height="15" fill="rgb(211,220,0)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (173 samples, 0.01%)</title><rect x="6.9776%" y="533" width="0.0134%" height="15" fill="rgb(229,52,16)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="543.50"></text></g><g><title>Parse::do_call (173 samples, 0.01%)</title><rect x="6.9776%" y="517" width="0.0134%" height="15" fill="rgb(212,155,18)" fg:x="90210" fg:w="173"/><text x="7.2276%" y="527.50"></text></g><g><title>ParseGenerator::generate (200 samples, 0.02%)</title><rect x="6.9776%" y="693" width="0.0155%" height="15" fill="rgb(242,21,14)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="703.50"></text></g><g><title>Parse::Parse (200 samples, 0.02%)</title><rect x="6.9776%" y="677" width="0.0155%" height="15" fill="rgb(222,19,48)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="687.50"></text></g><g><title>Parse::do_all_blocks (200 samples, 0.02%)</title><rect x="6.9776%" y="661" width="0.0155%" height="15" fill="rgb(232,45,27)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="671.50"></text></g><g><title>Parse::do_one_block (200 samples, 0.02%)</title><rect x="6.9776%" y="645" width="0.0155%" height="15" fill="rgb(249,103,42)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (200 samples, 0.02%)</title><rect x="6.9776%" y="629" width="0.0155%" height="15" fill="rgb(246,81,33)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="639.50"></text></g><g><title>Parse::do_call (200 samples, 0.02%)</title><rect x="6.9776%" y="613" width="0.0155%" height="15" fill="rgb(252,33,42)" fg:x="90210" fg:w="200"/><text x="7.2276%" y="623.50"></text></g><g><title>[unknown] (72,023 samples, 5.57%)</title><rect x="1.4494%" y="709" width="5.5709%" height="15" fill="rgb(209,212,41)" fg:x="18738" fg:w="72023"/><text x="1.6994%" y="719.50">[unknow..</text></g><g><title>Compile::identify_useful_nodes (225 samples, 0.02%)</title><rect x="7.0409%" y="549" width="0.0174%" height="15" fill="rgb(207,154,6)" fg:x="91029" fg:w="225"/><text x="7.2909%" y="559.50"></text></g><g><title>Compile::remove_useless_nodes (208 samples, 0.02%)</title><rect x="7.0583%" y="549" width="0.0161%" height="15" fill="rgb(223,64,47)" fg:x="91254" fg:w="208"/><text x="7.3083%" y="559.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (533 samples, 0.04%)</title><rect x="7.0371%" y="565" width="0.0412%" height="15" fill="rgb(211,161,38)" fg:x="90979" fg:w="533"/><text x="7.2871%" y="575.50"></text></g><g><title>C2Compiler::compile_method (781 samples, 0.06%)</title><rect x="7.0223%" y="597" width="0.0604%" height="15" fill="rgb(219,138,40)" fg:x="90788" fg:w="781"/><text x="7.2723%" y="607.50"></text></g><g><title>Compile::Compile (770 samples, 0.06%)</title><rect x="7.0232%" y="581" width="0.0596%" height="15" fill="rgb(241,228,46)" fg:x="90799" fg:w="770"/><text x="7.2732%" y="591.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (978 samples, 0.08%)</title><rect x="7.0217%" y="613" width="0.0756%" height="15" fill="rgb(223,209,38)" fg:x="90780" fg:w="978"/><text x="7.2717%" y="623.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,173 samples, 0.09%)</title><rect x="7.0213%" y="629" width="0.0907%" height="15" fill="rgb(236,164,45)" fg:x="90775" fg:w="1173"/><text x="7.2713%" y="639.50"></text></g><g><title>CompileQueue::get (179 samples, 0.01%)</title><rect x="7.0982%" y="613" width="0.0138%" height="15" fill="rgb(231,15,5)" fg:x="91769" fg:w="179"/><text x="7.3482%" y="623.50"></text></g><g><title>Thread::call_run (1,175 samples, 0.09%)</title><rect x="7.0213%" y="661" width="0.0909%" height="15" fill="rgb(252,35,15)" fg:x="90775" fg:w="1175"/><text x="7.2713%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (1,175 samples, 0.09%)</title><rect x="7.0213%" y="645" width="0.0909%" height="15" fill="rgb(248,181,18)" fg:x="90775" fg:w="1175"/><text x="7.2713%" y="655.50"></text></g><g><title>__GI___clone (1,186 samples, 0.09%)</title><rect x="7.0205%" y="709" width="0.0917%" height="15" fill="rgb(233,39,42)" fg:x="90765" fg:w="1186"/><text x="7.2705%" y="719.50"></text></g><g><title>start_thread (1,179 samples, 0.09%)</title><rect x="7.0211%" y="693" width="0.0912%" height="15" fill="rgb(238,110,33)" fg:x="90772" fg:w="1179"/><text x="7.2711%" y="703.50"></text></g><g><title>thread_native_entry (1,177 samples, 0.09%)</title><rect x="7.0212%" y="677" width="0.0910%" height="15" fill="rgb(233,195,10)" fg:x="90774" fg:w="1177"/><text x="7.2712%" y="687.50"></text></g><g><title>C2_CompilerThre (77,754 samples, 6.01%)</title><rect x="1.1089%" y="725" width="6.0141%" height="15" fill="rgb(254,105,3)" fg:x="14336" fg:w="77754"/><text x="1.3589%" y="735.50">C2_Compi..</text></g><g><title>futex_wait_queue_me (181 samples, 0.01%)</title><rect x="7.1806%" y="533" width="0.0140%" height="15" fill="rgb(221,225,9)" fg:x="92834" fg:w="181"/><text x="7.4306%" y="543.50"></text></g><g><title>schedule (163 samples, 0.01%)</title><rect x="7.1820%" y="517" width="0.0126%" height="15" fill="rgb(224,227,45)" fg:x="92852" fg:w="163"/><text x="7.4320%" y="527.50"></text></g><g><title>__schedule (161 samples, 0.01%)</title><rect x="7.1821%" y="501" width="0.0125%" height="15" fill="rgb(229,198,43)" fg:x="92854" fg:w="161"/><text x="7.4321%" y="511.50"></text></g><g><title>do_futex (205 samples, 0.02%)</title><rect x="7.1800%" y="565" width="0.0159%" height="15" fill="rgb(206,209,35)" fg:x="92827" fg:w="205"/><text x="7.4300%" y="575.50"></text></g><g><title>futex_wait (204 samples, 0.02%)</title><rect x="7.1801%" y="549" width="0.0158%" height="15" fill="rgb(245,195,53)" fg:x="92828" fg:w="204"/><text x="7.4301%" y="559.50"></text></g><g><title>do_syscall_64 (211 samples, 0.02%)</title><rect x="7.1799%" y="597" width="0.0163%" height="15" fill="rgb(240,92,26)" fg:x="92826" fg:w="211"/><text x="7.4299%" y="607.50"></text></g><g><title>__x64_sys_futex (211 samples, 0.02%)</title><rect x="7.1799%" y="581" width="0.0163%" height="15" fill="rgb(207,40,23)" fg:x="92826" fg:w="211"/><text x="7.4299%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (237 samples, 0.02%)</title><rect x="7.1784%" y="661" width="0.0183%" height="15" fill="rgb(223,111,35)" fg:x="92806" fg:w="237"/><text x="7.4284%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (237 samples, 0.02%)</title><rect x="7.1784%" y="645" width="0.0183%" height="15" fill="rgb(229,147,28)" fg:x="92806" fg:w="237"/><text x="7.4284%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (232 samples, 0.02%)</title><rect x="7.1788%" y="629" width="0.0179%" height="15" fill="rgb(211,29,28)" fg:x="92811" fg:w="232"/><text x="7.4288%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (218 samples, 0.02%)</title><rect x="7.1799%" y="613" width="0.0169%" height="15" fill="rgb(228,72,33)" fg:x="92825" fg:w="218"/><text x="7.4299%" y="623.50"></text></g><g><title>Parker::park (348 samples, 0.03%)</title><rect x="7.1765%" y="677" width="0.0269%" height="15" fill="rgb(205,214,31)" fg:x="92781" fg:w="348"/><text x="7.4265%" y="687.50"></text></g><g><title>Unsafe_Park (360 samples, 0.03%)</title><rect x="7.1758%" y="693" width="0.0278%" height="15" fill="rgb(224,111,15)" fg:x="92773" fg:w="360"/><text x="7.4258%" y="703.50"></text></g><g><title>[perf-956514.map] (907 samples, 0.07%)</title><rect x="7.1346%" y="709" width="0.0702%" height="15" fill="rgb(253,21,26)" fg:x="92240" fg:w="907"/><text x="7.3846%" y="719.50"></text></g><g><title>ForkJoinPool.co (946 samples, 0.07%)</title><rect x="7.1331%" y="725" width="0.0732%" height="15" fill="rgb(245,139,43)" fg:x="92221" fg:w="946"/><text x="7.3831%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (188 samples, 0.01%)</title><rect x="7.2136%" y="597" width="0.0145%" height="15" fill="rgb(252,170,7)" fg:x="93261" fg:w="188"/><text x="7.4636%" y="607.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (189 samples, 0.01%)</title><rect x="7.2136%" y="613" width="0.0146%" height="15" fill="rgb(231,118,14)" fg:x="93261" fg:w="189"/><text x="7.4636%" y="623.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (205 samples, 0.02%)</title><rect x="7.2135%" y="629" width="0.0159%" height="15" fill="rgb(238,83,0)" fg:x="93260" fg:w="205"/><text x="7.4635%" y="639.50"></text></g><g><title>Thread::call_run (213 samples, 0.02%)</title><rect x="7.2135%" y="661" width="0.0165%" height="15" fill="rgb(221,39,39)" fg:x="93260" fg:w="213"/><text x="7.4635%" y="671.50"></text></g><g><title>ConcurrentGCThread::run (213 samples, 0.02%)</title><rect x="7.2135%" y="645" width="0.0165%" height="15" fill="rgb(222,119,46)" fg:x="93260" fg:w="213"/><text x="7.4635%" y="655.50"></text></g><g><title>G1_Refine#0 (235 samples, 0.02%)</title><rect x="7.2119%" y="725" width="0.0182%" height="15" fill="rgb(222,165,49)" fg:x="93239" fg:w="235"/><text x="7.4619%" y="735.50"></text></g><g><title>__GI___clone (214 samples, 0.02%)</title><rect x="7.2135%" y="709" width="0.0166%" height="15" fill="rgb(219,113,52)" fg:x="93260" fg:w="214"/><text x="7.4635%" y="719.50"></text></g><g><title>start_thread (214 samples, 0.02%)</title><rect x="7.2135%" y="693" width="0.0166%" height="15" fill="rgb(214,7,15)" fg:x="93260" fg:w="214"/><text x="7.4635%" y="703.50"></text></g><g><title>thread_native_entry (214 samples, 0.02%)</title><rect x="7.2135%" y="677" width="0.0166%" height="15" fill="rgb(235,32,4)" fg:x="93260" fg:w="214"/><text x="7.4635%" y="687.50"></text></g><g><title>G1_Refine#1 (132 samples, 0.01%)</title><rect x="7.2301%" y="725" width="0.0102%" height="15" fill="rgb(238,90,54)" fg:x="93474" fg:w="132"/><text x="7.4801%" y="735.50"></text></g><g><title>G1_Young_RemSet (132 samples, 0.01%)</title><rect x="7.2408%" y="725" width="0.0102%" height="15" fill="rgb(213,208,19)" fg:x="93613" fg:w="132"/><text x="7.4908%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (283 samples, 0.02%)</title><rect x="7.2674%" y="581" width="0.0219%" height="15" fill="rgb(233,156,4)" fg:x="93957" fg:w="283"/><text x="7.5174%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (451 samples, 0.03%)</title><rect x="7.2549%" y="597" width="0.0349%" height="15" fill="rgb(207,194,5)" fg:x="93795" fg:w="451"/><text x="7.5049%" y="607.50"></text></g><g><title>SpinPause (165 samples, 0.01%)</title><rect x="7.2901%" y="597" width="0.0128%" height="15" fill="rgb(206,111,30)" fg:x="94250" fg:w="165"/><text x="7.5401%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (635 samples, 0.05%)</title><rect x="7.2542%" y="613" width="0.0491%" height="15" fill="rgb(243,70,54)" fg:x="93786" fg:w="635"/><text x="7.5042%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (185 samples, 0.01%)</title><rect x="7.3054%" y="517" width="0.0143%" height="15" fill="rgb(242,28,8)" fg:x="94448" fg:w="185"/><text x="7.5554%" y="527.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (139 samples, 0.01%)</title><rect x="7.3090%" y="501" width="0.0108%" height="15" fill="rgb(219,106,18)" fg:x="94494" fg:w="139"/><text x="7.5590%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (223 samples, 0.02%)</title><rect x="7.3034%" y="533" width="0.0172%" height="15" fill="rgb(244,222,10)" fg:x="94422" fg:w="223"/><text x="7.5534%" y="543.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (244 samples, 0.02%)</title><rect x="7.3034%" y="613" width="0.0189%" height="15" fill="rgb(236,179,52)" fg:x="94422" fg:w="244"/><text x="7.5534%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (244 samples, 0.02%)</title><rect x="7.3034%" y="597" width="0.0189%" height="15" fill="rgb(213,23,39)" fg:x="94422" fg:w="244"/><text x="7.5534%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (244 samples, 0.02%)</title><rect x="7.3034%" y="581" width="0.0189%" height="15" fill="rgb(238,48,10)" fg:x="94422" fg:w="244"/><text x="7.5534%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (244 samples, 0.02%)</title><rect x="7.3034%" y="565" width="0.0189%" height="15" fill="rgb(251,196,23)" fg:x="94422" fg:w="244"/><text x="7.5534%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (244 samples, 0.02%)</title><rect x="7.3034%" y="549" width="0.0189%" height="15" fill="rgb(250,152,24)" fg:x="94422" fg:w="244"/><text x="7.5534%" y="559.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (139 samples, 0.01%)</title><rect x="7.3458%" y="501" width="0.0108%" height="15" fill="rgb(209,150,17)" fg:x="94970" fg:w="139"/><text x="7.5958%" y="511.50"></text></g><g><title>InterpreterOopMap::iterate_oop (145 samples, 0.01%)</title><rect x="7.3454%" y="517" width="0.0112%" height="15" fill="rgb(234,202,34)" fg:x="94965" fg:w="145"/><text x="7.5954%" y="527.50"></text></g><g><title>frame::oops_interpreted_do (154 samples, 0.01%)</title><rect x="7.3452%" y="533" width="0.0119%" height="15" fill="rgb(253,148,53)" fg:x="94963" fg:w="154"/><text x="7.5952%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (335 samples, 0.03%)</title><rect x="7.3313%" y="597" width="0.0259%" height="15" fill="rgb(218,129,16)" fg:x="94783" fg:w="335"/><text x="7.5813%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (282 samples, 0.02%)</title><rect x="7.3354%" y="581" width="0.0218%" height="15" fill="rgb(216,85,19)" fg:x="94836" fg:w="282"/><text x="7.5854%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (282 samples, 0.02%)</title><rect x="7.3354%" y="565" width="0.0218%" height="15" fill="rgb(235,228,7)" fg:x="94836" fg:w="282"/><text x="7.5854%" y="575.50"></text></g><g><title>JavaThread::oops_do (281 samples, 0.02%)</title><rect x="7.3355%" y="549" width="0.0217%" height="15" fill="rgb(245,175,0)" fg:x="94837" fg:w="281"/><text x="7.5855%" y="559.50"></text></g><g><title>G1ParTask::work (1,342 samples, 0.10%)</title><rect x="7.2542%" y="629" width="0.1038%" height="15" fill="rgb(208,168,36)" fg:x="93786" fg:w="1342"/><text x="7.5042%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (347 samples, 0.03%)</title><rect x="7.3312%" y="613" width="0.0268%" height="15" fill="rgb(246,171,24)" fg:x="94781" fg:w="347"/><text x="7.5812%" y="623.50"></text></g><g><title>__GI___clone (1,577 samples, 0.12%)</title><rect x="7.2533%" y="709" width="0.1220%" height="15" fill="rgb(215,142,24)" fg:x="93774" fg:w="1577"/><text x="7.5033%" y="719.50"></text></g><g><title>start_thread (1,577 samples, 0.12%)</title><rect x="7.2533%" y="693" width="0.1220%" height="15" fill="rgb(250,187,7)" fg:x="93774" fg:w="1577"/><text x="7.5033%" y="703.50"></text></g><g><title>thread_native_entry (1,577 samples, 0.12%)</title><rect x="7.2533%" y="677" width="0.1220%" height="15" fill="rgb(228,66,33)" fg:x="93774" fg:w="1577"/><text x="7.5033%" y="687.50"></text></g><g><title>Thread::call_run (1,577 samples, 0.12%)</title><rect x="7.2533%" y="661" width="0.1220%" height="15" fill="rgb(234,215,21)" fg:x="93774" fg:w="1577"/><text x="7.5033%" y="671.50"></text></g><g><title>GangWorker::loop (1,577 samples, 0.12%)</title><rect x="7.2533%" y="645" width="0.1220%" height="15" fill="rgb(222,191,20)" fg:x="93774" fg:w="1577"/><text x="7.5033%" y="655.50"></text></g><g><title>GC_Thread#0 (1,607 samples, 0.12%)</title><rect x="7.2510%" y="725" width="0.1243%" height="15" fill="rgb(245,79,54)" fg:x="93745" fg:w="1607"/><text x="7.5010%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (398 samples, 0.03%)</title><rect x="7.3914%" y="581" width="0.0308%" height="15" fill="rgb(240,10,37)" fg:x="95560" fg:w="398"/><text x="7.6414%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (585 samples, 0.05%)</title><rect x="7.3784%" y="597" width="0.0452%" height="15" fill="rgb(214,192,32)" fg:x="95392" fg:w="585"/><text x="7.6284%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (735 samples, 0.06%)</title><rect x="7.3773%" y="613" width="0.0569%" height="15" fill="rgb(209,36,54)" fg:x="95378" fg:w="735"/><text x="7.6273%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (163 samples, 0.01%)</title><rect x="7.4428%" y="549" width="0.0126%" height="15" fill="rgb(220,10,11)" fg:x="96224" fg:w="163"/><text x="7.6928%" y="559.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (172 samples, 0.01%)</title><rect x="7.4425%" y="565" width="0.0133%" height="15" fill="rgb(221,106,17)" fg:x="96221" fg:w="172"/><text x="7.6925%" y="575.50"></text></g><g><title>G1RemSet::scan_rem_set (201 samples, 0.02%)</title><rect x="7.4424%" y="613" width="0.0155%" height="15" fill="rgb(251,142,44)" fg:x="96219" fg:w="201"/><text x="7.6924%" y="623.50"></text></g><g><title>G1CollectionSet::iterate_from (200 samples, 0.02%)</title><rect x="7.4425%" y="597" width="0.0155%" height="15" fill="rgb(238,13,15)" fg:x="96220" fg:w="200"/><text x="7.6925%" y="607.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (200 samples, 0.02%)</title><rect x="7.4425%" y="581" width="0.0155%" height="15" fill="rgb(208,107,27)" fg:x="96220" fg:w="200"/><text x="7.6925%" y="591.50"></text></g><g><title>G1RootProcessor::process_java_roots (148 samples, 0.01%)</title><rect x="7.4580%" y="597" width="0.0114%" height="15" fill="rgb(205,136,37)" fg:x="96421" fg:w="148"/><text x="7.7080%" y="607.50"></text></g><g><title>G1ParTask::work (1,196 samples, 0.09%)</title><rect x="7.3773%" y="629" width="0.0925%" height="15" fill="rgb(250,205,27)" fg:x="95378" fg:w="1196"/><text x="7.6273%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (154 samples, 0.01%)</title><rect x="7.4579%" y="613" width="0.0119%" height="15" fill="rgb(210,80,43)" fg:x="96420" fg:w="154"/><text x="7.7079%" y="623.50"></text></g><g><title>__GI___clone (1,412 samples, 0.11%)</title><rect x="7.3765%" y="709" width="0.1092%" height="15" fill="rgb(247,160,36)" fg:x="95367" fg:w="1412"/><text x="7.6265%" y="719.50"></text></g><g><title>start_thread (1,412 samples, 0.11%)</title><rect x="7.3765%" y="693" width="0.1092%" height="15" fill="rgb(234,13,49)" fg:x="95367" fg:w="1412"/><text x="7.6265%" y="703.50"></text></g><g><title>thread_native_entry (1,412 samples, 0.11%)</title><rect x="7.3765%" y="677" width="0.1092%" height="15" fill="rgb(234,122,0)" fg:x="95367" fg:w="1412"/><text x="7.6265%" y="687.50"></text></g><g><title>Thread::call_run (1,412 samples, 0.11%)</title><rect x="7.3765%" y="661" width="0.1092%" height="15" fill="rgb(207,146,38)" fg:x="95367" fg:w="1412"/><text x="7.6265%" y="671.50"></text></g><g><title>GangWorker::loop (1,412 samples, 0.11%)</title><rect x="7.3765%" y="645" width="0.1092%" height="15" fill="rgb(207,177,25)" fg:x="95367" fg:w="1412"/><text x="7.6265%" y="655.50"></text></g><g><title>GC_Thread#1 (1,430 samples, 0.11%)</title><rect x="7.3753%" y="725" width="0.1106%" height="15" fill="rgb(211,178,42)" fg:x="95352" fg:w="1430"/><text x="7.6253%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (360 samples, 0.03%)</title><rect x="7.5037%" y="581" width="0.0278%" height="15" fill="rgb(230,69,54)" fg:x="97012" fg:w="360"/><text x="7.7537%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (557 samples, 0.04%)</title><rect x="7.4898%" y="597" width="0.0431%" height="15" fill="rgb(214,135,41)" fg:x="96832" fg:w="557"/><text x="7.7398%" y="607.50"></text></g><g><title>SpinPause (176 samples, 0.01%)</title><rect x="7.5336%" y="597" width="0.0136%" height="15" fill="rgb(237,67,25)" fg:x="97398" fg:w="176"/><text x="7.7836%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (758 samples, 0.06%)</title><rect x="7.4891%" y="613" width="0.0586%" height="15" fill="rgb(222,189,50)" fg:x="96823" fg:w="758"/><text x="7.7391%" y="623.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (150 samples, 0.01%)</title><rect x="7.5477%" y="613" width="0.0116%" height="15" fill="rgb(245,148,34)" fg:x="97581" fg:w="150"/><text x="7.7977%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (150 samples, 0.01%)</title><rect x="7.5477%" y="597" width="0.0116%" height="15" fill="rgb(222,29,6)" fg:x="97581" fg:w="150"/><text x="7.7977%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (150 samples, 0.01%)</title><rect x="7.5477%" y="581" width="0.0116%" height="15" fill="rgb(221,189,43)" fg:x="97581" fg:w="150"/><text x="7.7977%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (150 samples, 0.01%)</title><rect x="7.5477%" y="565" width="0.0116%" height="15" fill="rgb(207,36,27)" fg:x="97581" fg:w="150"/><text x="7.7977%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (150 samples, 0.01%)</title><rect x="7.5477%" y="549" width="0.0116%" height="15" fill="rgb(217,90,24)" fg:x="97581" fg:w="150"/><text x="7.7977%" y="559.50"></text></g><g><title>InterpreterOopMap::iterate_oop (142 samples, 0.01%)</title><rect x="7.5792%" y="517" width="0.0110%" height="15" fill="rgb(224,66,35)" fg:x="97988" fg:w="142"/><text x="7.8292%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (139 samples, 0.01%)</title><rect x="7.5794%" y="501" width="0.0108%" height="15" fill="rgb(221,13,50)" fg:x="97991" fg:w="139"/><text x="7.8294%" y="511.50"></text></g><g><title>frame::oops_interpreted_do (143 samples, 0.01%)</title><rect x="7.5792%" y="533" width="0.0111%" height="15" fill="rgb(236,68,49)" fg:x="97988" fg:w="143"/><text x="7.8292%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (294 samples, 0.02%)</title><rect x="7.5677%" y="597" width="0.0227%" height="15" fill="rgb(229,146,28)" fg:x="97839" fg:w="294"/><text x="7.8177%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (217 samples, 0.02%)</title><rect x="7.5736%" y="581" width="0.0168%" height="15" fill="rgb(225,31,38)" fg:x="97916" fg:w="217"/><text x="7.8236%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (217 samples, 0.02%)</title><rect x="7.5736%" y="565" width="0.0168%" height="15" fill="rgb(250,208,3)" fg:x="97916" fg:w="217"/><text x="7.8236%" y="575.50"></text></g><g><title>JavaThread::oops_do (217 samples, 0.02%)</title><rect x="7.5736%" y="549" width="0.0168%" height="15" fill="rgb(246,54,23)" fg:x="97916" fg:w="217"/><text x="7.8236%" y="559.50"></text></g><g><title>G1ParTask::work (1,327 samples, 0.10%)</title><rect x="7.4891%" y="629" width="0.1026%" height="15" fill="rgb(243,76,11)" fg:x="96823" fg:w="1327"/><text x="7.7391%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (311 samples, 0.02%)</title><rect x="7.5677%" y="613" width="0.0241%" height="15" fill="rgb(245,21,50)" fg:x="97839" fg:w="311"/><text x="7.8177%" y="623.50"></text></g><g><title>GC_Thread#2 (1,513 samples, 0.12%)</title><rect x="7.4859%" y="725" width="0.1170%" height="15" fill="rgb(228,9,43)" fg:x="96782" fg:w="1513"/><text x="7.7359%" y="735.50"></text></g><g><title>__GI___clone (1,484 samples, 0.11%)</title><rect x="7.4882%" y="709" width="0.1148%" height="15" fill="rgb(208,100,47)" fg:x="96811" fg:w="1484"/><text x="7.7382%" y="719.50"></text></g><g><title>start_thread (1,484 samples, 0.11%)</title><rect x="7.4882%" y="693" width="0.1148%" height="15" fill="rgb(232,26,8)" fg:x="96811" fg:w="1484"/><text x="7.7382%" y="703.50"></text></g><g><title>thread_native_entry (1,484 samples, 0.11%)</title><rect x="7.4882%" y="677" width="0.1148%" height="15" fill="rgb(216,166,38)" fg:x="96811" fg:w="1484"/><text x="7.7382%" y="687.50"></text></g><g><title>Thread::call_run (1,484 samples, 0.11%)</title><rect x="7.4882%" y="661" width="0.1148%" height="15" fill="rgb(251,202,51)" fg:x="96811" fg:w="1484"/><text x="7.7382%" y="671.50"></text></g><g><title>GangWorker::loop (1,484 samples, 0.11%)</title><rect x="7.4882%" y="645" width="0.1148%" height="15" fill="rgb(254,216,34)" fg:x="96811" fg:w="1484"/><text x="7.7382%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (393 samples, 0.03%)</title><rect x="7.6205%" y="581" width="0.0304%" height="15" fill="rgb(251,32,27)" fg:x="98522" fg:w="393"/><text x="7.8705%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (583 samples, 0.05%)</title><rect x="7.6069%" y="597" width="0.0451%" height="15" fill="rgb(208,127,28)" fg:x="98346" fg:w="583"/><text x="7.8569%" y="607.50"></text></g><g><title>SpinPause (141 samples, 0.01%)</title><rect x="7.6527%" y="597" width="0.0109%" height="15" fill="rgb(224,137,22)" fg:x="98938" fg:w="141"/><text x="7.9027%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (747 samples, 0.06%)</title><rect x="7.6059%" y="613" width="0.0578%" height="15" fill="rgb(254,70,32)" fg:x="98333" fg:w="747"/><text x="7.8559%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (166 samples, 0.01%)</title><rect x="7.6639%" y="533" width="0.0128%" height="15" fill="rgb(229,75,37)" fg:x="99083" fg:w="166"/><text x="7.9139%" y="543.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (211 samples, 0.02%)</title><rect x="7.6638%" y="613" width="0.0163%" height="15" fill="rgb(252,64,23)" fg:x="99082" fg:w="211"/><text x="7.9138%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (211 samples, 0.02%)</title><rect x="7.6638%" y="597" width="0.0163%" height="15" fill="rgb(232,162,48)" fg:x="99082" fg:w="211"/><text x="7.9138%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (211 samples, 0.02%)</title><rect x="7.6638%" y="581" width="0.0163%" height="15" fill="rgb(246,160,12)" fg:x="99082" fg:w="211"/><text x="7.9138%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (211 samples, 0.02%)</title><rect x="7.6638%" y="565" width="0.0163%" height="15" fill="rgb(247,166,0)" fg:x="99082" fg:w="211"/><text x="7.9138%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (211 samples, 0.02%)</title><rect x="7.6638%" y="549" width="0.0163%" height="15" fill="rgb(249,219,21)" fg:x="99082" fg:w="211"/><text x="7.9138%" y="559.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (135 samples, 0.01%)</title><rect x="7.6802%" y="565" width="0.0104%" height="15" fill="rgb(205,209,3)" fg:x="99293" fg:w="135"/><text x="7.9302%" y="575.50"></text></g><g><title>G1RemSet::scan_rem_set (141 samples, 0.01%)</title><rect x="7.6802%" y="613" width="0.0109%" height="15" fill="rgb(243,44,1)" fg:x="99293" fg:w="141"/><text x="7.9302%" y="623.50"></text></g><g><title>G1CollectionSet::iterate_from (141 samples, 0.01%)</title><rect x="7.6802%" y="597" width="0.0109%" height="15" fill="rgb(206,159,16)" fg:x="99293" fg:w="141"/><text x="7.9302%" y="607.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (141 samples, 0.01%)</title><rect x="7.6802%" y="581" width="0.0109%" height="15" fill="rgb(244,77,30)" fg:x="99293" fg:w="141"/><text x="7.9302%" y="591.50"></text></g><g><title>G1RootProcessor::process_java_roots (217 samples, 0.02%)</title><rect x="7.6912%" y="597" width="0.0168%" height="15" fill="rgb(218,69,12)" fg:x="99436" fg:w="217"/><text x="7.9412%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (202 samples, 0.02%)</title><rect x="7.6924%" y="581" width="0.0156%" height="15" fill="rgb(212,87,7)" fg:x="99451" fg:w="202"/><text x="7.9424%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (202 samples, 0.02%)</title><rect x="7.6924%" y="565" width="0.0156%" height="15" fill="rgb(245,114,25)" fg:x="99451" fg:w="202"/><text x="7.9424%" y="575.50"></text></g><g><title>JavaThread::oops_do (202 samples, 0.02%)</title><rect x="7.6924%" y="549" width="0.0156%" height="15" fill="rgb(210,61,42)" fg:x="99451" fg:w="202"/><text x="7.9424%" y="559.50"></text></g><g><title>G1ParTask::work (1,337 samples, 0.10%)</title><rect x="7.6059%" y="629" width="0.1034%" height="15" fill="rgb(211,52,33)" fg:x="98333" fg:w="1337"/><text x="7.8559%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (236 samples, 0.02%)</title><rect x="7.6911%" y="613" width="0.0183%" height="15" fill="rgb(234,58,33)" fg:x="99434" fg:w="236"/><text x="7.9411%" y="623.50"></text></g><g><title>__GI___clone (1,538 samples, 0.12%)</title><rect x="7.6050%" y="709" width="0.1190%" height="15" fill="rgb(220,115,36)" fg:x="98321" fg:w="1538"/><text x="7.8550%" y="719.50"></text></g><g><title>start_thread (1,538 samples, 0.12%)</title><rect x="7.6050%" y="693" width="0.1190%" height="15" fill="rgb(243,153,54)" fg:x="98321" fg:w="1538"/><text x="7.8550%" y="703.50"></text></g><g><title>thread_native_entry (1,538 samples, 0.12%)</title><rect x="7.6050%" y="677" width="0.1190%" height="15" fill="rgb(251,47,18)" fg:x="98321" fg:w="1538"/><text x="7.8550%" y="687.50"></text></g><g><title>Thread::call_run (1,538 samples, 0.12%)</title><rect x="7.6050%" y="661" width="0.1190%" height="15" fill="rgb(242,102,42)" fg:x="98321" fg:w="1538"/><text x="7.8550%" y="671.50"></text></g><g><title>GangWorker::loop (1,538 samples, 0.12%)</title><rect x="7.6050%" y="645" width="0.1190%" height="15" fill="rgb(234,31,38)" fg:x="98321" fg:w="1538"/><text x="7.8550%" y="655.50"></text></g><g><title>GC_Thread#3 (1,565 samples, 0.12%)</title><rect x="7.6030%" y="725" width="0.1211%" height="15" fill="rgb(221,117,51)" fg:x="98295" fg:w="1565"/><text x="7.8530%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (292 samples, 0.02%)</title><rect x="7.7421%" y="581" width="0.0226%" height="15" fill="rgb(212,20,18)" fg:x="100094" fg:w="292"/><text x="7.9921%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (503 samples, 0.04%)</title><rect x="7.7279%" y="597" width="0.0389%" height="15" fill="rgb(245,133,36)" fg:x="99910" fg:w="503"/><text x="7.9779%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (620 samples, 0.05%)</title><rect x="7.7269%" y="613" width="0.0480%" height="15" fill="rgb(212,6,19)" fg:x="99897" fg:w="620"/><text x="7.9769%" y="623.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (141 samples, 0.01%)</title><rect x="7.7749%" y="613" width="0.0109%" height="15" fill="rgb(218,1,36)" fg:x="100518" fg:w="141"/><text x="8.0249%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (141 samples, 0.01%)</title><rect x="7.7749%" y="597" width="0.0109%" height="15" fill="rgb(246,84,54)" fg:x="100518" fg:w="141"/><text x="8.0249%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (141 samples, 0.01%)</title><rect x="7.7749%" y="581" width="0.0109%" height="15" fill="rgb(242,110,6)" fg:x="100518" fg:w="141"/><text x="8.0249%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (141 samples, 0.01%)</title><rect x="7.7749%" y="565" width="0.0109%" height="15" fill="rgb(214,47,5)" fg:x="100518" fg:w="141"/><text x="8.0249%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (141 samples, 0.01%)</title><rect x="7.7749%" y="549" width="0.0109%" height="15" fill="rgb(218,159,25)" fg:x="100518" fg:w="141"/><text x="8.0249%" y="559.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (210 samples, 0.02%)</title><rect x="7.8082%" y="485" width="0.0162%" height="15" fill="rgb(215,211,28)" fg:x="100949" fg:w="210"/><text x="8.0582%" y="495.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (162 samples, 0.01%)</title><rect x="7.8120%" y="469" width="0.0125%" height="15" fill="rgb(238,59,32)" fg:x="100997" fg:w="162"/><text x="8.0620%" y="479.50"></text></g><g><title>InterpreterOopMap::iterate_oop (290 samples, 0.02%)</title><rect x="7.8038%" y="517" width="0.0224%" height="15" fill="rgb(226,82,3)" fg:x="100891" fg:w="290"/><text x="8.0538%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (285 samples, 0.02%)</title><rect x="7.8041%" y="501" width="0.0220%" height="15" fill="rgb(240,164,32)" fg:x="100896" fg:w="285"/><text x="8.0541%" y="511.50"></text></g><g><title>G1RootProcessor::process_java_roots (440 samples, 0.03%)</title><rect x="7.7928%" y="597" width="0.0340%" height="15" fill="rgb(232,46,7)" fg:x="100750" fg:w="440"/><text x="8.0428%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (402 samples, 0.03%)</title><rect x="7.7958%" y="581" width="0.0311%" height="15" fill="rgb(229,129,53)" fg:x="100788" fg:w="402"/><text x="8.0458%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (402 samples, 0.03%)</title><rect x="7.7958%" y="565" width="0.0311%" height="15" fill="rgb(234,188,29)" fg:x="100788" fg:w="402"/><text x="8.0458%" y="575.50"></text></g><g><title>JavaThread::oops_do (392 samples, 0.03%)</title><rect x="7.7966%" y="549" width="0.0303%" height="15" fill="rgb(246,141,4)" fg:x="100798" fg:w="392"/><text x="8.0466%" y="559.50"></text></g><g><title>frame::oops_interpreted_do (301 samples, 0.02%)</title><rect x="7.8036%" y="533" width="0.0233%" height="15" fill="rgb(229,23,39)" fg:x="100889" fg:w="301"/><text x="8.0536%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (465 samples, 0.04%)</title><rect x="7.7928%" y="613" width="0.0360%" height="15" fill="rgb(206,12,3)" fg:x="100749" fg:w="465"/><text x="8.0428%" y="623.50"></text></g><g><title>G1ParTask::work (1,318 samples, 0.10%)</title><rect x="7.7269%" y="629" width="0.1019%" height="15" fill="rgb(252,226,20)" fg:x="99897" fg:w="1318"/><text x="7.9769%" y="639.50"></text></g><g><title>GC_Thread#4 (1,551 samples, 0.12%)</title><rect x="7.7240%" y="725" width="0.1200%" height="15" fill="rgb(216,123,35)" fg:x="99860" fg:w="1551"/><text x="7.9740%" y="735.50"></text></g><g><title>__GI___clone (1,530 samples, 0.12%)</title><rect x="7.7256%" y="709" width="0.1183%" height="15" fill="rgb(212,68,40)" fg:x="99881" fg:w="1530"/><text x="7.9756%" y="719.50"></text></g><g><title>start_thread (1,530 samples, 0.12%)</title><rect x="7.7256%" y="693" width="0.1183%" height="15" fill="rgb(254,125,32)" fg:x="99881" fg:w="1530"/><text x="7.9756%" y="703.50"></text></g><g><title>thread_native_entry (1,530 samples, 0.12%)</title><rect x="7.7256%" y="677" width="0.1183%" height="15" fill="rgb(253,97,22)" fg:x="99881" fg:w="1530"/><text x="7.9756%" y="687.50"></text></g><g><title>Thread::call_run (1,530 samples, 0.12%)</title><rect x="7.7256%" y="661" width="0.1183%" height="15" fill="rgb(241,101,14)" fg:x="99881" fg:w="1530"/><text x="7.9756%" y="671.50"></text></g><g><title>GangWorker::loop (1,530 samples, 0.12%)</title><rect x="7.7256%" y="645" width="0.1183%" height="15" fill="rgb(238,103,29)" fg:x="99881" fg:w="1530"/><text x="7.9756%" y="655.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (148 samples, 0.01%)</title><rect x="7.8795%" y="565" width="0.0114%" height="15" fill="rgb(233,195,47)" fg:x="101870" fg:w="148"/><text x="8.1295%" y="575.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (480 samples, 0.04%)</title><rect x="7.8639%" y="581" width="0.0371%" height="15" fill="rgb(246,218,30)" fg:x="101668" fg:w="480"/><text x="8.1139%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (718 samples, 0.06%)</title><rect x="7.8464%" y="597" width="0.0555%" height="15" fill="rgb(219,145,47)" fg:x="101442" fg:w="718"/><text x="8.0964%" y="607.50"></text></g><g><title>SpinPause (178 samples, 0.01%)</title><rect x="7.9024%" y="597" width="0.0138%" height="15" fill="rgb(243,12,26)" fg:x="102166" fg:w="178"/><text x="8.1524%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (917 samples, 0.07%)</title><rect x="7.8454%" y="613" width="0.0709%" height="15" fill="rgb(214,87,16)" fg:x="101429" fg:w="917"/><text x="8.0954%" y="623.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (142 samples, 0.01%)</title><rect x="7.9163%" y="613" width="0.0110%" height="15" fill="rgb(208,99,42)" fg:x="102346" fg:w="142"/><text x="8.1663%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (142 samples, 0.01%)</title><rect x="7.9163%" y="597" width="0.0110%" height="15" fill="rgb(253,99,2)" fg:x="102346" fg:w="142"/><text x="8.1663%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (142 samples, 0.01%)</title><rect x="7.9163%" y="581" width="0.0110%" height="15" fill="rgb(220,168,23)" fg:x="102346" fg:w="142"/><text x="8.1663%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (142 samples, 0.01%)</title><rect x="7.9163%" y="565" width="0.0110%" height="15" fill="rgb(242,38,24)" fg:x="102346" fg:w="142"/><text x="8.1663%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (142 samples, 0.01%)</title><rect x="7.9163%" y="549" width="0.0110%" height="15" fill="rgb(225,182,9)" fg:x="102346" fg:w="142"/><text x="8.1663%" y="559.50"></text></g><g><title>G1RemSet::scan_rem_set (142 samples, 0.01%)</title><rect x="7.9273%" y="613" width="0.0110%" height="15" fill="rgb(243,178,37)" fg:x="102488" fg:w="142"/><text x="8.1773%" y="623.50"></text></g><g><title>G1CollectionSet::iterate_from (142 samples, 0.01%)</title><rect x="7.9273%" y="597" width="0.0110%" height="15" fill="rgb(232,139,19)" fg:x="102488" fg:w="142"/><text x="8.1773%" y="607.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (141 samples, 0.01%)</title><rect x="7.9274%" y="581" width="0.0109%" height="15" fill="rgb(225,201,24)" fg:x="102489" fg:w="141"/><text x="8.1774%" y="591.50"></text></g><g><title>frame::oops_interpreted_do (136 samples, 0.01%)</title><rect x="7.9479%" y="533" width="0.0105%" height="15" fill="rgb(221,47,46)" fg:x="102754" fg:w="136"/><text x="8.1979%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (262 samples, 0.02%)</title><rect x="7.9383%" y="597" width="0.0203%" height="15" fill="rgb(249,23,13)" fg:x="102631" fg:w="262"/><text x="8.1883%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (227 samples, 0.02%)</title><rect x="7.9410%" y="581" width="0.0176%" height="15" fill="rgb(219,9,5)" fg:x="102666" fg:w="227"/><text x="8.1910%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (227 samples, 0.02%)</title><rect x="7.9410%" y="565" width="0.0176%" height="15" fill="rgb(254,171,16)" fg:x="102666" fg:w="227"/><text x="8.1910%" y="575.50"></text></g><g><title>JavaThread::oops_do (226 samples, 0.02%)</title><rect x="7.9411%" y="549" width="0.0175%" height="15" fill="rgb(230,171,20)" fg:x="102667" fg:w="226"/><text x="8.1911%" y="559.50"></text></g><g><title>G1ParTask::work (1,481 samples, 0.11%)</title><rect x="7.8454%" y="629" width="0.1146%" height="15" fill="rgb(210,71,41)" fg:x="101429" fg:w="1481"/><text x="8.0954%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (280 samples, 0.02%)</title><rect x="7.9383%" y="613" width="0.0217%" height="15" fill="rgb(206,173,20)" fg:x="102630" fg:w="280"/><text x="8.1883%" y="623.50"></text></g><g><title>__GI___clone (1,677 samples, 0.13%)</title><rect x="7.8451%" y="709" width="0.1297%" height="15" fill="rgb(233,88,34)" fg:x="101426" fg:w="1677"/><text x="8.0951%" y="719.50"></text></g><g><title>start_thread (1,677 samples, 0.13%)</title><rect x="7.8451%" y="693" width="0.1297%" height="15" fill="rgb(223,209,46)" fg:x="101426" fg:w="1677"/><text x="8.0951%" y="703.50"></text></g><g><title>thread_native_entry (1,677 samples, 0.13%)</title><rect x="7.8451%" y="677" width="0.1297%" height="15" fill="rgb(250,43,18)" fg:x="101426" fg:w="1677"/><text x="8.0951%" y="687.50"></text></g><g><title>Thread::call_run (1,677 samples, 0.13%)</title><rect x="7.8451%" y="661" width="0.1297%" height="15" fill="rgb(208,13,10)" fg:x="101426" fg:w="1677"/><text x="8.0951%" y="671.50"></text></g><g><title>GangWorker::loop (1,677 samples, 0.13%)</title><rect x="7.8451%" y="645" width="0.1297%" height="15" fill="rgb(212,200,36)" fg:x="101426" fg:w="1677"/><text x="8.0951%" y="655.50"></text></g><g><title>GC_Thread#5 (1,694 samples, 0.13%)</title><rect x="7.8440%" y="725" width="0.1310%" height="15" fill="rgb(225,90,30)" fg:x="101411" fg:w="1694"/><text x="8.0940%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (344 samples, 0.03%)</title><rect x="7.9918%" y="581" width="0.0266%" height="15" fill="rgb(236,182,39)" fg:x="103322" fg:w="344"/><text x="8.2418%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (546 samples, 0.04%)</title><rect x="7.9780%" y="597" width="0.0422%" height="15" fill="rgb(212,144,35)" fg:x="103144" fg:w="546"/><text x="8.2280%" y="607.50"></text></g><g><title>SpinPause (151 samples, 0.01%)</title><rect x="8.0211%" y="597" width="0.0117%" height="15" fill="rgb(228,63,44)" fg:x="103701" fg:w="151"/><text x="8.2711%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (726 samples, 0.06%)</title><rect x="7.9771%" y="613" width="0.0562%" height="15" fill="rgb(228,109,6)" fg:x="103132" fg:w="726"/><text x="8.2271%" y="623.50"></text></g><g><title>G1RemSet::scan_rem_set (132 samples, 0.01%)</title><rect x="8.0410%" y="613" width="0.0102%" height="15" fill="rgb(238,117,24)" fg:x="103958" fg:w="132"/><text x="8.2910%" y="623.50"></text></g><g><title>G1CollectionSet::iterate_from (132 samples, 0.01%)</title><rect x="8.0410%" y="597" width="0.0102%" height="15" fill="rgb(242,26,26)" fg:x="103958" fg:w="132"/><text x="8.2910%" y="607.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (132 samples, 0.01%)</title><rect x="8.0410%" y="581" width="0.0102%" height="15" fill="rgb(221,92,48)" fg:x="103958" fg:w="132"/><text x="8.2910%" y="591.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (227 samples, 0.02%)</title><rect x="8.0629%" y="485" width="0.0176%" height="15" fill="rgb(209,209,32)" fg:x="104241" fg:w="227"/><text x="8.3129%" y="495.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (174 samples, 0.01%)</title><rect x="8.0670%" y="469" width="0.0135%" height="15" fill="rgb(221,70,22)" fg:x="104294" fg:w="174"/><text x="8.3170%" y="479.50"></text></g><g><title>InterpreterOopMap::iterate_oop (319 samples, 0.02%)</title><rect x="8.0580%" y="517" width="0.0247%" height="15" fill="rgb(248,145,5)" fg:x="104178" fg:w="319"/><text x="8.3080%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (315 samples, 0.02%)</title><rect x="8.0583%" y="501" width="0.0244%" height="15" fill="rgb(226,116,26)" fg:x="104182" fg:w="315"/><text x="8.3083%" y="511.50"></text></g><g><title>frame::oops_interpreted_do (328 samples, 0.03%)</title><rect x="8.0578%" y="533" width="0.0254%" height="15" fill="rgb(244,5,17)" fg:x="104176" fg:w="328"/><text x="8.3078%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (415 samples, 0.03%)</title><rect x="8.0512%" y="597" width="0.0321%" height="15" fill="rgb(252,159,33)" fg:x="104090" fg:w="415"/><text x="8.3012%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (404 samples, 0.03%)</title><rect x="8.0520%" y="581" width="0.0312%" height="15" fill="rgb(206,71,0)" fg:x="104101" fg:w="404"/><text x="8.3020%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (404 samples, 0.03%)</title><rect x="8.0520%" y="565" width="0.0312%" height="15" fill="rgb(233,118,54)" fg:x="104101" fg:w="404"/><text x="8.3020%" y="575.50"></text></g><g><title>JavaThread::oops_do (404 samples, 0.03%)</title><rect x="8.0520%" y="549" width="0.0312%" height="15" fill="rgb(234,83,48)" fg:x="104101" fg:w="404"/><text x="8.3020%" y="559.50"></text></g><g><title>G1ParTask::work (1,378 samples, 0.11%)</title><rect x="7.9771%" y="629" width="0.1066%" height="15" fill="rgb(228,3,54)" fg:x="103132" fg:w="1378"/><text x="8.2271%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (420 samples, 0.03%)</title><rect x="8.0512%" y="613" width="0.0325%" height="15" fill="rgb(226,155,13)" fg:x="104090" fg:w="420"/><text x="8.3012%" y="623.50"></text></g><g><title>__GI___clone (1,580 samples, 0.12%)</title><rect x="7.9762%" y="709" width="0.1222%" height="15" fill="rgb(241,28,37)" fg:x="103120" fg:w="1580"/><text x="8.2262%" y="719.50"></text></g><g><title>start_thread (1,580 samples, 0.12%)</title><rect x="7.9762%" y="693" width="0.1222%" height="15" fill="rgb(233,93,10)" fg:x="103120" fg:w="1580"/><text x="8.2262%" y="703.50"></text></g><g><title>thread_native_entry (1,580 samples, 0.12%)</title><rect x="7.9762%" y="677" width="0.1222%" height="15" fill="rgb(225,113,19)" fg:x="103120" fg:w="1580"/><text x="8.2262%" y="687.50"></text></g><g><title>Thread::call_run (1,580 samples, 0.12%)</title><rect x="7.9762%" y="661" width="0.1222%" height="15" fill="rgb(241,2,18)" fg:x="103120" fg:w="1580"/><text x="8.2262%" y="671.50"></text></g><g><title>GangWorker::loop (1,580 samples, 0.12%)</title><rect x="7.9762%" y="645" width="0.1222%" height="15" fill="rgb(228,207,21)" fg:x="103120" fg:w="1580"/><text x="8.2262%" y="655.50"></text></g><g><title>GC_Thread#6 (1,597 samples, 0.12%)</title><rect x="7.9750%" y="725" width="0.1235%" height="15" fill="rgb(213,211,35)" fg:x="103105" fg:w="1597"/><text x="8.2250%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (297 samples, 0.02%)</title><rect x="8.1134%" y="581" width="0.0230%" height="15" fill="rgb(209,83,10)" fg:x="104894" fg:w="297"/><text x="8.3634%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (449 samples, 0.03%)</title><rect x="8.1023%" y="597" width="0.0347%" height="15" fill="rgb(209,164,1)" fg:x="104751" fg:w="449"/><text x="8.3523%" y="607.50"></text></g><g><title>SpinPause (147 samples, 0.01%)</title><rect x="8.1375%" y="597" width="0.0114%" height="15" fill="rgb(213,184,43)" fg:x="105206" fg:w="147"/><text x="8.3875%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (613 samples, 0.05%)</title><rect x="8.1018%" y="613" width="0.0474%" height="15" fill="rgb(231,61,34)" fg:x="104744" fg:w="613"/><text x="8.3518%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (166 samples, 0.01%)</title><rect x="8.1580%" y="549" width="0.0128%" height="15" fill="rgb(235,75,3)" fg:x="105471" fg:w="166"/><text x="8.4080%" y="559.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (178 samples, 0.01%)</title><rect x="8.1579%" y="565" width="0.0138%" height="15" fill="rgb(220,106,47)" fg:x="105469" fg:w="178"/><text x="8.4079%" y="575.50"></text></g><g><title>G1RemSet::scan_rem_set (189 samples, 0.01%)</title><rect x="8.1577%" y="613" width="0.0146%" height="15" fill="rgb(210,196,33)" fg:x="105467" fg:w="189"/><text x="8.4077%" y="623.50"></text></g><g><title>G1CollectionSet::iterate_from (189 samples, 0.01%)</title><rect x="8.1577%" y="597" width="0.0146%" height="15" fill="rgb(229,154,42)" fg:x="105467" fg:w="189"/><text x="8.4077%" y="607.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (189 samples, 0.01%)</title><rect x="8.1577%" y="581" width="0.0146%" height="15" fill="rgb(228,114,26)" fg:x="105467" fg:w="189"/><text x="8.4077%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (147 samples, 0.01%)</title><rect x="8.1752%" y="501" width="0.0114%" height="15" fill="rgb(208,144,1)" fg:x="105693" fg:w="147"/><text x="8.4252%" y="511.50"></text></g><g><title>frame::oops_do_internal (159 samples, 0.01%)</title><rect x="8.1743%" y="533" width="0.0123%" height="15" fill="rgb(239,112,37)" fg:x="105682" fg:w="159"/><text x="8.4243%" y="543.50"></text></g><g><title>OopMapSet::oops_do (159 samples, 0.01%)</title><rect x="8.1743%" y="517" width="0.0123%" height="15" fill="rgb(210,96,50)" fg:x="105682" fg:w="159"/><text x="8.4243%" y="527.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (142 samples, 0.01%)</title><rect x="8.1927%" y="469" width="0.0110%" height="15" fill="rgb(222,178,2)" fg:x="105920" fg:w="142"/><text x="8.4427%" y="479.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (185 samples, 0.01%)</title><rect x="8.1895%" y="485" width="0.0143%" height="15" fill="rgb(226,74,18)" fg:x="105878" fg:w="185"/><text x="8.4395%" y="495.50"></text></g><g><title>InterpreterOopMap::iterate_oop (237 samples, 0.02%)</title><rect x="8.1867%" y="517" width="0.0183%" height="15" fill="rgb(225,67,54)" fg:x="105842" fg:w="237"/><text x="8.4367%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (234 samples, 0.02%)</title><rect x="8.1869%" y="501" width="0.0181%" height="15" fill="rgb(251,92,32)" fg:x="105845" fg:w="234"/><text x="8.4369%" y="511.50"></text></g><g><title>frame::oops_interpreted_do (242 samples, 0.02%)</title><rect x="8.1866%" y="533" width="0.0187%" height="15" fill="rgb(228,149,22)" fg:x="105841" fg:w="242"/><text x="8.4366%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (421 samples, 0.03%)</title><rect x="8.1729%" y="597" width="0.0326%" height="15" fill="rgb(243,54,13)" fg:x="105663" fg:w="421"/><text x="8.4229%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (421 samples, 0.03%)</title><rect x="8.1729%" y="581" width="0.0326%" height="15" fill="rgb(243,180,28)" fg:x="105663" fg:w="421"/><text x="8.4229%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (421 samples, 0.03%)</title><rect x="8.1729%" y="565" width="0.0326%" height="15" fill="rgb(208,167,24)" fg:x="105663" fg:w="421"/><text x="8.4229%" y="575.50"></text></g><g><title>JavaThread::oops_do (421 samples, 0.03%)</title><rect x="8.1729%" y="549" width="0.0326%" height="15" fill="rgb(245,73,45)" fg:x="105663" fg:w="421"/><text x="8.4229%" y="559.50"></text></g><g><title>G1ParTask::work (1,365 samples, 0.11%)</title><rect x="8.1018%" y="629" width="0.1056%" height="15" fill="rgb(237,203,48)" fg:x="104744" fg:w="1365"/><text x="8.3518%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (453 samples, 0.04%)</title><rect x="8.1723%" y="613" width="0.0350%" height="15" fill="rgb(211,197,16)" fg:x="105656" fg:w="453"/><text x="8.4223%" y="623.50"></text></g><g><title>__GI___clone (1,557 samples, 0.12%)</title><rect x="8.1007%" y="709" width="0.1204%" height="15" fill="rgb(243,99,51)" fg:x="104730" fg:w="1557"/><text x="8.3507%" y="719.50"></text></g><g><title>start_thread (1,557 samples, 0.12%)</title><rect x="8.1007%" y="693" width="0.1204%" height="15" fill="rgb(215,123,29)" fg:x="104730" fg:w="1557"/><text x="8.3507%" y="703.50"></text></g><g><title>thread_native_entry (1,557 samples, 0.12%)</title><rect x="8.1007%" y="677" width="0.1204%" height="15" fill="rgb(239,186,37)" fg:x="104730" fg:w="1557"/><text x="8.3507%" y="687.50"></text></g><g><title>Thread::call_run (1,557 samples, 0.12%)</title><rect x="8.1007%" y="661" width="0.1204%" height="15" fill="rgb(252,136,39)" fg:x="104730" fg:w="1557"/><text x="8.3507%" y="671.50"></text></g><g><title>GangWorker::loop (1,557 samples, 0.12%)</title><rect x="8.1007%" y="645" width="0.1204%" height="15" fill="rgb(223,213,32)" fg:x="104730" fg:w="1557"/><text x="8.3507%" y="655.50"></text></g><g><title>GC_Thread#7 (1,587 samples, 0.12%)</title><rect x="8.0985%" y="725" width="0.1228%" height="15" fill="rgb(233,115,5)" fg:x="104702" fg:w="1587"/><text x="8.3485%" y="735.50"></text></g><g><title>[perf-956514.map] (136 samples, 0.01%)</title><rect x="8.2245%" y="709" width="0.0105%" height="15" fill="rgb(207,226,44)" fg:x="106330" fg:w="136"/><text x="8.4745%" y="719.50"></text></g><g><title>Service_Thread (155 samples, 0.01%)</title><rect x="8.2242%" y="725" width="0.0120%" height="15" fill="rgb(208,126,0)" fg:x="106327" fg:w="155"/><text x="8.4742%" y="735.50"></text></g><g><title>finish_task_switch (130 samples, 0.01%)</title><rect x="8.2432%" y="389" width="0.0101%" height="15" fill="rgb(244,66,21)" fg:x="106572" fg:w="130"/><text x="8.4932%" y="399.50"></text></g><g><title>futex_wait_queue_me (177 samples, 0.01%)</title><rect x="8.2412%" y="437" width="0.0137%" height="15" fill="rgb(222,97,12)" fg:x="106547" fg:w="177"/><text x="8.4912%" y="447.50"></text></g><g><title>schedule (164 samples, 0.01%)</title><rect x="8.2422%" y="421" width="0.0127%" height="15" fill="rgb(219,213,19)" fg:x="106560" fg:w="164"/><text x="8.4922%" y="431.50"></text></g><g><title>__schedule (163 samples, 0.01%)</title><rect x="8.2423%" y="405" width="0.0126%" height="15" fill="rgb(252,169,30)" fg:x="106561" fg:w="163"/><text x="8.4923%" y="415.50"></text></g><g><title>do_futex (194 samples, 0.02%)</title><rect x="8.2408%" y="469" width="0.0150%" height="15" fill="rgb(206,32,51)" fg:x="106541" fg:w="194"/><text x="8.4908%" y="479.50"></text></g><g><title>futex_wait (192 samples, 0.01%)</title><rect x="8.2409%" y="453" width="0.0149%" height="15" fill="rgb(250,172,42)" fg:x="106543" fg:w="192"/><text x="8.4909%" y="463.50"></text></g><g><title>do_syscall_64 (201 samples, 0.02%)</title><rect x="8.2405%" y="501" width="0.0155%" height="15" fill="rgb(209,34,43)" fg:x="106537" fg:w="201"/><text x="8.4905%" y="511.50"></text></g><g><title>__x64_sys_futex (200 samples, 0.02%)</title><rect x="8.2405%" y="485" width="0.0155%" height="15" fill="rgb(223,11,35)" fg:x="106538" fg:w="200"/><text x="8.4905%" y="495.50"></text></g><g><title>__pthread_cond_timedwait (220 samples, 0.02%)</title><rect x="8.2393%" y="565" width="0.0170%" height="15" fill="rgb(251,219,26)" fg:x="106522" fg:w="220"/><text x="8.4893%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (218 samples, 0.02%)</title><rect x="8.2395%" y="549" width="0.0169%" height="15" fill="rgb(231,119,3)" fg:x="106524" fg:w="218"/><text x="8.4895%" y="559.50"></text></g><g><title>futex_abstimed_wait_cancelable (213 samples, 0.02%)</title><rect x="8.2398%" y="533" width="0.0165%" height="15" fill="rgb(216,97,11)" fg:x="106529" fg:w="213"/><text x="8.4898%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (205 samples, 0.02%)</title><rect x="8.2405%" y="517" width="0.0159%" height="15" fill="rgb(223,59,9)" fg:x="106537" fg:w="205"/><text x="8.4905%" y="527.50"></text></g><g><title>Monitor::IWait (248 samples, 0.02%)</title><rect x="8.2382%" y="597" width="0.0192%" height="15" fill="rgb(233,93,31)" fg:x="106508" fg:w="248"/><text x="8.4882%" y="607.50"></text></g><g><title>os::PlatformEvent::park (237 samples, 0.02%)</title><rect x="8.2391%" y="581" width="0.0183%" height="15" fill="rgb(239,81,33)" fg:x="106519" fg:w="237"/><text x="8.4891%" y="591.50"></text></g><g><title>Monitor::wait (249 samples, 0.02%)</title><rect x="8.2382%" y="613" width="0.0193%" height="15" fill="rgb(213,120,34)" fg:x="106508" fg:w="249"/><text x="8.4882%" y="623.50"></text></g><g><title>NMethodSweeper::process_compiled_method (143 samples, 0.01%)</title><rect x="8.2596%" y="581" width="0.0111%" height="15" fill="rgb(243,49,53)" fg:x="106785" fg:w="143"/><text x="8.5096%" y="591.50"></text></g><g><title>NMethodSweeper::possibly_sweep (174 samples, 0.01%)</title><rect x="8.2575%" y="613" width="0.0135%" height="15" fill="rgb(247,216,33)" fg:x="106757" fg:w="174"/><text x="8.5075%" y="623.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (168 samples, 0.01%)</title><rect x="8.2579%" y="597" width="0.0130%" height="15" fill="rgb(226,26,14)" fg:x="106763" fg:w="168"/><text x="8.5079%" y="607.50"></text></g><g><title>__GI___clone (441 samples, 0.03%)</title><rect x="8.2378%" y="709" width="0.0341%" height="15" fill="rgb(215,49,53)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="719.50"></text></g><g><title>start_thread (441 samples, 0.03%)</title><rect x="8.2378%" y="693" width="0.0341%" height="15" fill="rgb(245,162,40)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="703.50"></text></g><g><title>thread_native_entry (441 samples, 0.03%)</title><rect x="8.2378%" y="677" width="0.0341%" height="15" fill="rgb(229,68,17)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="687.50"></text></g><g><title>Thread::call_run (441 samples, 0.03%)</title><rect x="8.2378%" y="661" width="0.0341%" height="15" fill="rgb(213,182,10)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (441 samples, 0.03%)</title><rect x="8.2378%" y="645" width="0.0341%" height="15" fill="rgb(245,125,30)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="655.50"></text></g><g><title>NMethodSweeper::sweeper_loop (441 samples, 0.03%)</title><rect x="8.2378%" y="629" width="0.0341%" height="15" fill="rgb(232,202,2)" fg:x="106502" fg:w="441"/><text x="8.4878%" y="639.50"></text></g><g><title>Sweeper_thread (464 samples, 0.04%)</title><rect x="8.2362%" y="725" width="0.0359%" height="15" fill="rgb(237,140,51)" fg:x="106482" fg:w="464"/><text x="8.4862%" y="735.50"></text></g><g><title>[perf-956514.map] (554 samples, 0.04%)</title><rect x="8.2743%" y="709" width="0.0429%" height="15" fill="rgb(236,157,25)" fg:x="106974" fg:w="554"/><text x="8.5243%" y="719.50"></text></g><g><title>Thread-0 (610 samples, 0.05%)</title><rect x="8.2721%" y="725" width="0.0472%" height="15" fill="rgb(219,209,0)" fg:x="106946" fg:w="610"/><text x="8.5221%" y="735.50"></text></g><g><title>VM_Periodic_Tas (151 samples, 0.01%)</title><rect x="8.3193%" y="725" width="0.0117%" height="15" fill="rgb(240,116,54)" fg:x="107556" fg:w="151"/><text x="8.5693%" y="735.50"></text></g><g><title>__GI___clone (140 samples, 0.01%)</title><rect x="8.3201%" y="709" width="0.0108%" height="15" fill="rgb(216,10,36)" fg:x="107567" fg:w="140"/><text x="8.5701%" y="719.50"></text></g><g><title>start_thread (140 samples, 0.01%)</title><rect x="8.3201%" y="693" width="0.0108%" height="15" fill="rgb(222,72,44)" fg:x="107567" fg:w="140"/><text x="8.5701%" y="703.50"></text></g><g><title>thread_native_entry (140 samples, 0.01%)</title><rect x="8.3201%" y="677" width="0.0108%" height="15" fill="rgb(232,159,9)" fg:x="107567" fg:w="140"/><text x="8.5701%" y="687.50"></text></g><g><title>Thread::call_run (140 samples, 0.01%)</title><rect x="8.3201%" y="661" width="0.0108%" height="15" fill="rgb(210,39,32)" fg:x="107567" fg:w="140"/><text x="8.5701%" y="671.50"></text></g><g><title>WatcherThread::run (140 samples, 0.01%)</title><rect x="8.3201%" y="645" width="0.0108%" height="15" fill="rgb(216,194,45)" fg:x="107567" fg:w="140"/><text x="8.5701%" y="655.50"></text></g><g><title>SafepointSynchronize::begin (337 samples, 0.03%)</title><rect x="8.3433%" y="613" width="0.0261%" height="15" fill="rgb(218,18,35)" fg:x="107867" fg:w="337"/><text x="8.5933%" y="623.50"></text></g><g><title>__GI___clone (559 samples, 0.04%)</title><rect x="8.3388%" y="709" width="0.0432%" height="15" fill="rgb(207,83,51)" fg:x="107808" fg:w="559"/><text x="8.5888%" y="719.50"></text></g><g><title>start_thread (559 samples, 0.04%)</title><rect x="8.3388%" y="693" width="0.0432%" height="15" fill="rgb(225,63,43)" fg:x="107808" fg:w="559"/><text x="8.5888%" y="703.50"></text></g><g><title>thread_native_entry (559 samples, 0.04%)</title><rect x="8.3388%" y="677" width="0.0432%" height="15" fill="rgb(207,57,36)" fg:x="107808" fg:w="559"/><text x="8.5888%" y="687.50"></text></g><g><title>Thread::call_run (559 samples, 0.04%)</title><rect x="8.3388%" y="661" width="0.0432%" height="15" fill="rgb(216,99,33)" fg:x="107808" fg:w="559"/><text x="8.5888%" y="671.50"></text></g><g><title>VMThread::run (559 samples, 0.04%)</title><rect x="8.3388%" y="645" width="0.0432%" height="15" fill="rgb(225,42,16)" fg:x="107808" fg:w="559"/><text x="8.5888%" y="655.50"></text></g><g><title>VMThread::loop (558 samples, 0.04%)</title><rect x="8.3389%" y="629" width="0.0432%" height="15" fill="rgb(220,201,45)" fg:x="107809" fg:w="558"/><text x="8.5889%" y="639.50"></text></g><g><title>VM_Thread (669 samples, 0.05%)</title><rect x="8.3310%" y="725" width="0.0517%" height="15" fill="rgb(225,33,4)" fg:x="107707" fg:w="669"/><text x="8.5810%" y="735.50"></text></g><g><title>finish_task_switch (131 samples, 0.01%)</title><rect x="8.3989%" y="565" width="0.0101%" height="15" fill="rgb(224,33,50)" fg:x="108585" fg:w="131"/><text x="8.6489%" y="575.50"></text></g><g><title>futex_wait_queue_me (143 samples, 0.01%)</title><rect x="8.3983%" y="613" width="0.0111%" height="15" fill="rgb(246,198,51)" fg:x="108577" fg:w="143"/><text x="8.6483%" y="623.50"></text></g><g><title>schedule (141 samples, 0.01%)</title><rect x="8.3984%" y="597" width="0.0109%" height="15" fill="rgb(205,22,4)" fg:x="108579" fg:w="141"/><text x="8.6484%" y="607.50"></text></g><g><title>__schedule (141 samples, 0.01%)</title><rect x="8.3984%" y="581" width="0.0109%" height="15" fill="rgb(206,3,8)" fg:x="108579" fg:w="141"/><text x="8.6484%" y="591.50"></text></g><g><title>futex_wait (148 samples, 0.01%)</title><rect x="8.3979%" y="629" width="0.0114%" height="15" fill="rgb(251,23,15)" fg:x="108573" fg:w="148"/><text x="8.6479%" y="639.50"></text></g><g><title>__x64_sys_futex (160 samples, 0.01%)</title><rect x="8.3976%" y="661" width="0.0124%" height="15" fill="rgb(252,88,28)" fg:x="108569" fg:w="160"/><text x="8.6476%" y="671.50"></text></g><g><title>do_futex (158 samples, 0.01%)</title><rect x="8.3978%" y="645" width="0.0122%" height="15" fill="rgb(212,127,14)" fg:x="108571" fg:w="158"/><text x="8.6478%" y="655.50"></text></g><g><title>do_syscall_64 (262 samples, 0.02%)</title><rect x="8.3955%" y="677" width="0.0203%" height="15" fill="rgb(247,145,37)" fg:x="108541" fg:w="262"/><text x="8.6455%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (269 samples, 0.02%)</title><rect x="8.3955%" y="693" width="0.0208%" height="15" fill="rgb(209,117,53)" fg:x="108541" fg:w="269"/><text x="8.6455%" y="703.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (468 samples, 0.04%)</title><rect x="8.3832%" y="709" width="0.0362%" height="15" fill="rgb(212,90,42)" fg:x="108383" fg:w="468"/><text x="8.6332%" y="719.50"></text></g><g><title>bazel (517 samples, 0.04%)</title><rect x="8.3832%" y="725" width="0.0400%" height="15" fill="rgb(218,164,37)" fg:x="108382" fg:w="517"/><text x="8.6332%" y="735.50"></text></g><g><title>elf_machine_rela (138 samples, 0.01%)</title><rect x="8.4370%" y="597" width="0.0107%" height="15" fill="rgb(246,65,34)" fg:x="109078" fg:w="138"/><text x="8.6870%" y="607.50"></text></g><g><title>elf_dynamic_do_Rela (169 samples, 0.01%)</title><rect x="8.4358%" y="613" width="0.0131%" height="15" fill="rgb(231,100,33)" fg:x="109063" fg:w="169"/><text x="8.6858%" y="623.50"></text></g><g><title>_dl_relocate_object (178 samples, 0.01%)</title><rect x="8.4353%" y="629" width="0.0138%" height="15" fill="rgb(228,126,14)" fg:x="109056" fg:w="178"/><text x="8.6853%" y="639.50"></text></g><g><title>[ld-2.31.so] (245 samples, 0.02%)</title><rect x="8.4305%" y="645" width="0.0190%" height="15" fill="rgb(215,173,21)" fg:x="108994" fg:w="245"/><text x="8.6805%" y="655.50"></text></g><g><title>_dl_start_final (246 samples, 0.02%)</title><rect x="8.4305%" y="677" width="0.0190%" height="15" fill="rgb(210,6,40)" fg:x="108994" fg:w="246"/><text x="8.6805%" y="687.50"></text></g><g><title>_dl_sysdep_start (246 samples, 0.02%)</title><rect x="8.4305%" y="661" width="0.0190%" height="15" fill="rgb(212,48,18)" fg:x="108994" fg:w="246"/><text x="8.6805%" y="671.50"></text></g><g><title>_dl_start (249 samples, 0.02%)</title><rect x="8.4305%" y="693" width="0.0193%" height="15" fill="rgb(230,214,11)" fg:x="108994" fg:w="249"/><text x="8.6805%" y="703.50"></text></g><g><title>_start (291 samples, 0.02%)</title><rect x="8.4276%" y="709" width="0.0225%" height="15" fill="rgb(254,105,39)" fg:x="108956" fg:w="291"/><text x="8.6776%" y="719.50"></text></g><g><title>build-runfiles (392 samples, 0.03%)</title><rect x="8.4232%" y="725" width="0.0303%" height="15" fill="rgb(245,158,5)" fg:x="108900" fg:w="392"/><text x="8.6732%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (347 samples, 0.03%)</title><rect x="8.4982%" y="213" width="0.0268%" height="15" fill="rgb(249,208,11)" fg:x="109869" fg:w="347"/><text x="8.7482%" y="223.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (344 samples, 0.03%)</title><rect x="8.4984%" y="197" width="0.0266%" height="15" fill="rgb(210,39,28)" fg:x="109872" fg:w="344"/><text x="8.7484%" y="207.50"></text></g><g><title>native_write_msr (343 samples, 0.03%)</title><rect x="8.4985%" y="181" width="0.0265%" height="15" fill="rgb(211,56,53)" fg:x="109873" fg:w="343"/><text x="8.7485%" y="191.50"></text></g><g><title>finish_task_switch (361 samples, 0.03%)</title><rect x="8.4978%" y="229" width="0.0279%" height="15" fill="rgb(226,201,30)" fg:x="109864" fg:w="361"/><text x="8.7478%" y="239.50"></text></g><g><title>_cond_resched (363 samples, 0.03%)</title><rect x="8.4977%" y="261" width="0.0281%" height="15" fill="rgb(239,101,34)" fg:x="109863" fg:w="363"/><text x="8.7477%" y="271.50"></text></g><g><title>__schedule (363 samples, 0.03%)</title><rect x="8.4977%" y="245" width="0.0281%" height="15" fill="rgb(226,209,5)" fg:x="109863" fg:w="363"/><text x="8.7477%" y="255.50"></text></g><g><title>sched_exec (388 samples, 0.03%)</title><rect x="8.4960%" y="293" width="0.0300%" height="15" fill="rgb(250,105,47)" fg:x="109841" fg:w="388"/><text x="8.7460%" y="303.50"></text></g><g><title>stop_one_cpu (370 samples, 0.03%)</title><rect x="8.4974%" y="277" width="0.0286%" height="15" fill="rgb(230,72,3)" fg:x="109859" fg:w="370"/><text x="8.7474%" y="287.50"></text></g><g><title>bprm_execve (687 samples, 0.05%)</title><rect x="8.4831%" y="309" width="0.0531%" height="15" fill="rgb(232,218,39)" fg:x="109674" fg:w="687"/><text x="8.7331%" y="319.50"></text></g><g><title>do_execveat_common (769 samples, 0.06%)</title><rect x="8.4812%" y="325" width="0.0595%" height="15" fill="rgb(248,166,6)" fg:x="109650" fg:w="769"/><text x="8.7312%" y="335.50"></text></g><g><title>__GI_execve (775 samples, 0.06%)</title><rect x="8.4812%" y="389" width="0.0599%" height="15" fill="rgb(247,89,20)" fg:x="109650" fg:w="775"/><text x="8.7312%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (775 samples, 0.06%)</title><rect x="8.4812%" y="373" width="0.0599%" height="15" fill="rgb(248,130,54)" fg:x="109650" fg:w="775"/><text x="8.7312%" y="383.50"></text></g><g><title>do_syscall_64 (775 samples, 0.06%)</title><rect x="8.4812%" y="357" width="0.0599%" height="15" fill="rgb(234,196,4)" fg:x="109650" fg:w="775"/><text x="8.7312%" y="367.50"></text></g><g><title>__x64_sys_execve (775 samples, 0.06%)</title><rect x="8.4812%" y="341" width="0.0599%" height="15" fill="rgb(250,143,31)" fg:x="109650" fg:w="775"/><text x="8.7312%" y="351.50"></text></g><g><title>[dash] (949 samples, 0.07%)</title><rect x="8.4722%" y="405" width="0.0734%" height="15" fill="rgb(211,110,34)" fg:x="109533" fg:w="949"/><text x="8.7222%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (3,250 samples, 0.25%)</title><rect x="8.5687%" y="277" width="0.2514%" height="15" fill="rgb(215,124,48)" fg:x="110780" fg:w="3250"/><text x="8.8187%" y="287.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,226 samples, 0.25%)</title><rect x="8.5705%" y="261" width="0.2495%" height="15" fill="rgb(216,46,13)" fg:x="110804" fg:w="3226"/><text x="8.8205%" y="271.50"></text></g><g><title>native_write_msr (3,213 samples, 0.25%)</title><rect x="8.5715%" y="245" width="0.2485%" height="15" fill="rgb(205,184,25)" fg:x="110817" fg:w="3213"/><text x="8.8215%" y="255.50"></text></g><g><title>finish_task_switch (3,536 samples, 0.27%)</title><rect x="8.5594%" y="293" width="0.2735%" height="15" fill="rgb(228,1,10)" fg:x="110660" fg:w="3536"/><text x="8.8094%" y="303.50"></text></g><g><title>schedule (3,588 samples, 0.28%)</title><rect x="8.5566%" y="325" width="0.2775%" height="15" fill="rgb(213,116,27)" fg:x="110624" fg:w="3588"/><text x="8.8066%" y="335.50"></text></g><g><title>__schedule (3,587 samples, 0.28%)</title><rect x="8.5567%" y="309" width="0.2774%" height="15" fill="rgb(241,95,50)" fg:x="110625" fg:w="3587"/><text x="8.8067%" y="319.50"></text></g><g><title>release_task (180 samples, 0.01%)</title><rect x="8.8375%" y="309" width="0.0139%" height="15" fill="rgb(238,48,32)" fg:x="114256" fg:w="180"/><text x="9.0875%" y="319.50"></text></g><g><title>do_syscall_64 (3,882 samples, 0.30%)</title><rect x="8.5520%" y="373" width="0.3003%" height="15" fill="rgb(235,113,49)" fg:x="110565" fg:w="3882"/><text x="8.8020%" y="383.50"></text></g><g><title>kernel_wait4 (3,862 samples, 0.30%)</title><rect x="8.5536%" y="357" width="0.2987%" height="15" fill="rgb(205,127,43)" fg:x="110585" fg:w="3862"/><text x="8.8036%" y="367.50"></text></g><g><title>do_wait (3,851 samples, 0.30%)</title><rect x="8.5544%" y="341" width="0.2979%" height="15" fill="rgb(250,162,2)" fg:x="110596" fg:w="3851"/><text x="8.8044%" y="351.50"></text></g><g><title>wait_consider_task (235 samples, 0.02%)</title><rect x="8.8341%" y="325" width="0.0182%" height="15" fill="rgb(220,13,41)" fg:x="114212" fg:w="235"/><text x="9.0841%" y="335.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,984 samples, 0.31%)</title><rect x="8.5520%" y="389" width="0.3082%" height="15" fill="rgb(249,221,25)" fg:x="110565" fg:w="3984"/><text x="8.8020%" y="399.50"></text></g><g><title>__GI___wait4 (4,048 samples, 0.31%)</title><rect x="8.5496%" y="405" width="0.3131%" height="15" fill="rgb(215,208,19)" fg:x="110534" fg:w="4048"/><text x="8.7996%" y="415.50"></text></g><g><title>[dash] (5,204 samples, 0.40%)</title><rect x="8.4700%" y="421" width="0.4025%" height="15" fill="rgb(236,175,2)" fg:x="109504" fg:w="5204"/><text x="8.7200%" y="431.50"></text></g><g><title>[dash] (5,348 samples, 0.41%)</title><rect x="8.4673%" y="437" width="0.4137%" height="15" fill="rgb(241,52,2)" fg:x="109470" fg:w="5348"/><text x="8.7173%" y="447.50"></text></g><g><title>anon_vma_fork (156 samples, 0.01%)</title><rect x="8.9193%" y="309" width="0.0121%" height="15" fill="rgb(248,140,14)" fg:x="115313" fg:w="156"/><text x="9.1693%" y="319.50"></text></g><g><title>copy_page_range (136 samples, 0.01%)</title><rect x="8.9313%" y="309" width="0.0105%" height="15" fill="rgb(253,22,42)" fg:x="115469" fg:w="136"/><text x="9.1813%" y="319.50"></text></g><g><title>dup_mm (501 samples, 0.04%)</title><rect x="8.9155%" y="325" width="0.0388%" height="15" fill="rgb(234,61,47)" fg:x="115264" fg:w="501"/><text x="9.1655%" y="335.50"></text></g><g><title>inherit_task_group.isra.0 (153 samples, 0.01%)</title><rect x="8.9579%" y="309" width="0.0118%" height="15" fill="rgb(208,226,15)" fg:x="115812" fg:w="153"/><text x="9.2079%" y="319.50"></text></g><g><title>inherit_event.constprop.0 (149 samples, 0.01%)</title><rect x="8.9582%" y="293" width="0.0115%" height="15" fill="rgb(217,221,4)" fg:x="115816" fg:w="149"/><text x="9.2082%" y="303.50"></text></g><g><title>perf_event_init_task (164 samples, 0.01%)</title><rect x="8.9577%" y="325" width="0.0127%" height="15" fill="rgb(212,174,34)" fg:x="115810" fg:w="164"/><text x="9.2077%" y="335.50"></text></g><g><title>copy_process (882 samples, 0.07%)</title><rect x="8.9040%" y="341" width="0.0682%" height="15" fill="rgb(253,83,4)" fg:x="115115" fg:w="882"/><text x="9.1540%" y="351.50"></text></g><g><title>do_syscall_64 (927 samples, 0.07%)</title><rect x="8.9040%" y="389" width="0.0717%" height="15" fill="rgb(250,195,49)" fg:x="115115" fg:w="927"/><text x="9.1540%" y="399.50"></text></g><g><title>__do_sys_clone (927 samples, 0.07%)</title><rect x="8.9040%" y="373" width="0.0717%" height="15" fill="rgb(241,192,25)" fg:x="115115" fg:w="927"/><text x="9.1540%" y="383.50"></text></g><g><title>kernel_clone (927 samples, 0.07%)</title><rect x="8.9040%" y="357" width="0.0717%" height="15" fill="rgb(208,124,10)" fg:x="115115" fg:w="927"/><text x="9.1540%" y="367.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (935 samples, 0.07%)</title><rect x="8.9040%" y="405" width="0.0723%" height="15" fill="rgb(222,33,0)" fg:x="115115" fg:w="935"/><text x="9.1540%" y="415.50"></text></g><g><title>asm_exc_page_fault (235 samples, 0.02%)</title><rect x="8.9798%" y="357" width="0.0182%" height="15" fill="rgb(234,209,28)" fg:x="116096" fg:w="235"/><text x="9.2298%" y="367.50"></text></g><g><title>exc_page_fault (169 samples, 0.01%)</title><rect x="8.9849%" y="341" width="0.0131%" height="15" fill="rgb(224,11,23)" fg:x="116162" fg:w="169"/><text x="9.2349%" y="351.50"></text></g><g><title>do_user_addr_fault (168 samples, 0.01%)</title><rect x="8.9850%" y="325" width="0.0130%" height="15" fill="rgb(232,99,1)" fg:x="116163" fg:w="168"/><text x="9.2350%" y="335.50"></text></g><g><title>__put_user_nocheck_4 (249 samples, 0.02%)</title><rect x="8.9788%" y="373" width="0.0193%" height="15" fill="rgb(237,95,45)" fg:x="116083" fg:w="249"/><text x="9.2288%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (2,828 samples, 0.22%)</title><rect x="9.0040%" y="357" width="0.2187%" height="15" fill="rgb(208,109,11)" fg:x="116408" fg:w="2828"/><text x="9.2540%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,782 samples, 0.22%)</title><rect x="9.0075%" y="341" width="0.2152%" height="15" fill="rgb(216,190,48)" fg:x="116454" fg:w="2782"/><text x="9.2575%" y="351.50"></text></g><g><title>native_write_msr (2,764 samples, 0.21%)</title><rect x="9.0089%" y="325" width="0.2138%" height="15" fill="rgb(251,171,36)" fg:x="116472" fg:w="2764"/><text x="9.2589%" y="335.50"></text></g><g><title>schedule_tail (3,256 samples, 0.25%)</title><rect x="8.9783%" y="389" width="0.2518%" height="15" fill="rgb(230,62,22)" fg:x="116076" fg:w="3256"/><text x="9.2283%" y="399.50"></text></g><g><title>finish_task_switch (2,987 samples, 0.23%)</title><rect x="8.9991%" y="373" width="0.2310%" height="15" fill="rgb(225,114,35)" fg:x="116345" fg:w="2987"/><text x="9.2491%" y="383.50"></text></g><g><title>arch_fork (4,365 samples, 0.34%)</title><rect x="8.8933%" y="421" width="0.3376%" height="15" fill="rgb(215,118,42)" fg:x="114977" fg:w="4365"/><text x="9.1433%" y="431.50"></text></g><g><title>ret_from_fork (3,277 samples, 0.25%)</title><rect x="8.9774%" y="405" width="0.2535%" height="15" fill="rgb(243,119,21)" fg:x="116065" fg:w="3277"/><text x="9.2274%" y="415.50"></text></g><g><title>__libc_fork (4,573 samples, 0.35%)</title><rect x="8.8859%" y="437" width="0.3537%" height="15" fill="rgb(252,177,53)" fg:x="114882" fg:w="4573"/><text x="9.1359%" y="447.50"></text></g><g><title>[dash] (10,085 samples, 0.78%)</title><rect x="8.4662%" y="453" width="0.7801%" height="15" fill="rgb(237,209,29)" fg:x="109455" fg:w="10085"/><text x="8.7162%" y="463.50"></text></g><g><title>[dash] (10,186 samples, 0.79%)</title><rect x="8.4658%" y="469" width="0.7879%" height="15" fill="rgb(212,65,23)" fg:x="109450" fg:w="10186"/><text x="8.7158%" y="479.50"></text></g><g><title>[dash] (10,251 samples, 0.79%)</title><rect x="8.4652%" y="485" width="0.7929%" height="15" fill="rgb(230,222,46)" fg:x="109443" fg:w="10251"/><text x="8.7152%" y="495.50"></text></g><g><title>[dash] (10,341 samples, 0.80%)</title><rect x="8.4643%" y="501" width="0.7999%" height="15" fill="rgb(215,135,32)" fg:x="109431" fg:w="10341"/><text x="8.7143%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (148 samples, 0.01%)</title><rect x="9.2662%" y="373" width="0.0114%" height="15" fill="rgb(246,101,22)" fg:x="119798" fg:w="148"/><text x="9.5162%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (147 samples, 0.01%)</title><rect x="9.2663%" y="357" width="0.0114%" height="15" fill="rgb(206,107,13)" fg:x="119799" fg:w="147"/><text x="9.5163%" y="367.50"></text></g><g><title>native_write_msr (146 samples, 0.01%)</title><rect x="9.2663%" y="341" width="0.0113%" height="15" fill="rgb(250,100,44)" fg:x="119800" fg:w="146"/><text x="9.5163%" y="351.50"></text></g><g><title>finish_task_switch (162 samples, 0.01%)</title><rect x="9.2661%" y="389" width="0.0125%" height="15" fill="rgb(231,147,38)" fg:x="119797" fg:w="162"/><text x="9.5161%" y="399.50"></text></g><g><title>schedule (168 samples, 0.01%)</title><rect x="9.2658%" y="421" width="0.0130%" height="15" fill="rgb(229,8,40)" fg:x="119793" fg:w="168"/><text x="9.5158%" y="431.50"></text></g><g><title>__schedule (167 samples, 0.01%)</title><rect x="9.2659%" y="405" width="0.0129%" height="15" fill="rgb(221,135,30)" fg:x="119794" fg:w="167"/><text x="9.5159%" y="415.50"></text></g><g><title>do_syscall_64 (213 samples, 0.02%)</title><rect x="9.2656%" y="469" width="0.0165%" height="15" fill="rgb(249,193,18)" fg:x="119790" fg:w="213"/><text x="9.5156%" y="479.50"></text></g><g><title>kernel_wait4 (213 samples, 0.02%)</title><rect x="9.2656%" y="453" width="0.0165%" height="15" fill="rgb(209,133,39)" fg:x="119790" fg:w="213"/><text x="9.5156%" y="463.50"></text></g><g><title>do_wait (213 samples, 0.02%)</title><rect x="9.2656%" y="437" width="0.0165%" height="15" fill="rgb(232,100,14)" fg:x="119790" fg:w="213"/><text x="9.5156%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (221 samples, 0.02%)</title><rect x="9.2656%" y="485" width="0.0171%" height="15" fill="rgb(224,185,1)" fg:x="119790" fg:w="221"/><text x="9.5156%" y="495.50"></text></g><g><title>__GI___wait4 (239 samples, 0.02%)</title><rect x="9.2643%" y="501" width="0.0185%" height="15" fill="rgb(223,139,8)" fg:x="119774" fg:w="239"/><text x="9.5143%" y="511.50"></text></g><g><title>[dash] (10,663 samples, 0.82%)</title><rect x="8.4625%" y="517" width="0.8248%" height="15" fill="rgb(232,213,38)" fg:x="109407" fg:w="10663"/><text x="8.7125%" y="527.50"></text></g><g><title>dup_mm (186 samples, 0.01%)</title><rect x="9.3028%" y="405" width="0.0144%" height="15" fill="rgb(207,94,22)" fg:x="120272" fg:w="186"/><text x="9.5528%" y="415.50"></text></g><g><title>copy_process (431 samples, 0.03%)</title><rect x="9.2960%" y="421" width="0.0333%" height="15" fill="rgb(219,183,54)" fg:x="120183" fg:w="431"/><text x="9.5460%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (452 samples, 0.03%)</title><rect x="9.2960%" y="485" width="0.0350%" height="15" fill="rgb(216,185,54)" fg:x="120183" fg:w="452"/><text x="9.5460%" y="495.50"></text></g><g><title>do_syscall_64 (452 samples, 0.03%)</title><rect x="9.2960%" y="469" width="0.0350%" height="15" fill="rgb(254,217,39)" fg:x="120183" fg:w="452"/><text x="9.5460%" y="479.50"></text></g><g><title>__do_sys_clone (452 samples, 0.03%)</title><rect x="9.2960%" y="453" width="0.0350%" height="15" fill="rgb(240,178,23)" fg:x="120183" fg:w="452"/><text x="9.5460%" y="463.50"></text></g><g><title>kernel_clone (452 samples, 0.03%)</title><rect x="9.2960%" y="437" width="0.0350%" height="15" fill="rgb(218,11,47)" fg:x="120183" fg:w="452"/><text x="9.5460%" y="447.50"></text></g><g><title>exc_page_fault (130 samples, 0.01%)</title><rect x="9.3349%" y="421" width="0.0101%" height="15" fill="rgb(218,51,51)" fg:x="120686" fg:w="130"/><text x="9.5849%" y="431.50"></text></g><g><title>do_user_addr_fault (130 samples, 0.01%)</title><rect x="9.3349%" y="405" width="0.0101%" height="15" fill="rgb(238,126,27)" fg:x="120686" fg:w="130"/><text x="9.5849%" y="415.50"></text></g><g><title>asm_exc_page_fault (165 samples, 0.01%)</title><rect x="9.3322%" y="437" width="0.0128%" height="15" fill="rgb(249,202,22)" fg:x="120652" fg:w="165"/><text x="9.5822%" y="447.50"></text></g><g><title>__put_user_nocheck_4 (168 samples, 0.01%)</title><rect x="9.3321%" y="453" width="0.0130%" height="15" fill="rgb(254,195,49)" fg:x="120650" fg:w="168"/><text x="9.5821%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (1,713 samples, 0.13%)</title><rect x="9.3488%" y="437" width="0.1325%" height="15" fill="rgb(208,123,14)" fg:x="120866" fg:w="1713"/><text x="9.5988%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,684 samples, 0.13%)</title><rect x="9.3510%" y="421" width="0.1303%" height="15" fill="rgb(224,200,8)" fg:x="120895" fg:w="1684"/><text x="9.6010%" y="431.50"></text></g><g><title>native_write_msr (1,677 samples, 0.13%)</title><rect x="9.3516%" y="405" width="0.1297%" height="15" fill="rgb(217,61,36)" fg:x="120902" fg:w="1677"/><text x="9.6016%" y="415.50"></text></g><g><title>schedule_tail (1,979 samples, 0.15%)</title><rect x="9.3318%" y="469" width="0.1531%" height="15" fill="rgb(206,35,45)" fg:x="120647" fg:w="1979"/><text x="9.5818%" y="479.50"></text></g><g><title>finish_task_switch (1,797 samples, 0.14%)</title><rect x="9.3459%" y="453" width="0.1390%" height="15" fill="rgb(217,65,33)" fg:x="120829" fg:w="1797"/><text x="9.5959%" y="463.50"></text></g><g><title>arch_fork (2,509 samples, 0.19%)</title><rect x="9.2911%" y="501" width="0.1941%" height="15" fill="rgb(222,158,48)" fg:x="120120" fg:w="2509"/><text x="9.5411%" y="511.50"></text></g><g><title>ret_from_fork (1,986 samples, 0.15%)</title><rect x="9.3315%" y="485" width="0.1536%" height="15" fill="rgb(254,2,54)" fg:x="120643" fg:w="1986"/><text x="9.5815%" y="495.50"></text></g><g><title>__libc_fork (2,606 samples, 0.20%)</title><rect x="9.2872%" y="517" width="0.2016%" height="15" fill="rgb(250,143,38)" fg:x="120070" fg:w="2606"/><text x="9.5372%" y="527.50"></text></g><g><title>[dash] (13,313 samples, 1.03%)</title><rect x="8.4611%" y="533" width="1.0297%" height="15" fill="rgb(248,25,0)" fg:x="109389" fg:w="13313"/><text x="8.7111%" y="543.50"></text></g><g><title>[dash] (13,400 samples, 1.04%)</title><rect x="8.4599%" y="549" width="1.0365%" height="15" fill="rgb(206,152,27)" fg:x="109374" fg:w="13400"/><text x="8.7099%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (2,302 samples, 0.18%)</title><rect x="9.5198%" y="389" width="0.1781%" height="15" fill="rgb(240,77,30)" fg:x="123077" fg:w="2302"/><text x="9.7698%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,283 samples, 0.18%)</title><rect x="9.5213%" y="373" width="0.1766%" height="15" fill="rgb(231,5,3)" fg:x="123096" fg:w="2283"/><text x="9.7713%" y="383.50"></text></g><g><title>native_write_msr (2,276 samples, 0.18%)</title><rect x="9.5218%" y="357" width="0.1760%" height="15" fill="rgb(207,226,32)" fg:x="123103" fg:w="2276"/><text x="9.7718%" y="367.50"></text></g><g><title>finish_task_switch (2,543 samples, 0.20%)</title><rect x="9.5132%" y="405" width="0.1967%" height="15" fill="rgb(222,207,47)" fg:x="122992" fg:w="2543"/><text x="9.7632%" y="415.50"></text></g><g><title>schedule (2,602 samples, 0.20%)</title><rect x="9.5110%" y="437" width="0.2013%" height="15" fill="rgb(229,115,45)" fg:x="122963" fg:w="2602"/><text x="9.7610%" y="447.50"></text></g><g><title>__schedule (2,601 samples, 0.20%)</title><rect x="9.5111%" y="421" width="0.2012%" height="15" fill="rgb(224,191,6)" fg:x="122964" fg:w="2601"/><text x="9.7611%" y="431.50"></text></g><g><title>new_sync_read (2,691 samples, 0.21%)</title><rect x="9.5048%" y="469" width="0.2081%" height="15" fill="rgb(230,227,24)" fg:x="122883" fg:w="2691"/><text x="9.7548%" y="479.50"></text></g><g><title>pipe_read (2,688 samples, 0.21%)</title><rect x="9.5050%" y="453" width="0.2079%" height="15" fill="rgb(228,80,19)" fg:x="122886" fg:w="2688"/><text x="9.7550%" y="463.50"></text></g><g><title>do_syscall_64 (2,717 samples, 0.21%)</title><rect x="9.5033%" y="517" width="0.2102%" height="15" fill="rgb(247,229,0)" fg:x="122863" fg:w="2717"/><text x="9.7533%" y="527.50"></text></g><g><title>ksys_read (2,712 samples, 0.21%)</title><rect x="9.5036%" y="501" width="0.2098%" height="15" fill="rgb(237,194,15)" fg:x="122868" fg:w="2712"/><text x="9.7536%" y="511.50"></text></g><g><title>vfs_read (2,708 samples, 0.21%)</title><rect x="9.5039%" y="485" width="0.2095%" height="15" fill="rgb(219,203,20)" fg:x="122872" fg:w="2708"/><text x="9.7539%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,786 samples, 0.22%)</title><rect x="9.5033%" y="533" width="0.2155%" height="15" fill="rgb(234,128,8)" fg:x="122863" fg:w="2786"/><text x="9.7533%" y="543.50"></text></g><g><title>__GI___libc_read (2,847 samples, 0.22%)</title><rect x="9.5023%" y="549" width="0.2202%" height="15" fill="rgb(248,202,8)" fg:x="122851" fg:w="2847"/><text x="9.7523%" y="559.50"></text></g><g><title>[dash] (16,389 samples, 1.27%)</title><rect x="8.4584%" y="565" width="1.2677%" height="15" fill="rgb(206,104,37)" fg:x="109354" fg:w="16389"/><text x="8.7084%" y="575.50"></text></g><g><title>[dash] (16,404 samples, 1.27%)</title><rect x="8.4579%" y="581" width="1.2688%" height="15" fill="rgb(223,8,27)" fg:x="109348" fg:w="16404"/><text x="8.7079%" y="591.50"></text></g><g><title>[dash] (16,429 samples, 1.27%)</title><rect x="8.4571%" y="597" width="1.2708%" height="15" fill="rgb(216,217,28)" fg:x="109338" fg:w="16429"/><text x="8.7071%" y="607.50"></text></g><g><title>[dash] (16,440 samples, 1.27%)</title><rect x="8.4567%" y="613" width="1.2716%" height="15" fill="rgb(249,199,1)" fg:x="109333" fg:w="16440"/><text x="8.7067%" y="623.50"></text></g><g><title>[dash] (16,479 samples, 1.27%)</title><rect x="8.4565%" y="629" width="1.2746%" height="15" fill="rgb(240,85,17)" fg:x="109330" fg:w="16479"/><text x="8.7065%" y="639.50"></text></g><g><title>[dash] (16,486 samples, 1.28%)</title><rect x="8.4563%" y="645" width="1.2752%" height="15" fill="rgb(206,108,45)" fg:x="109327" fg:w="16486"/><text x="8.7063%" y="655.50"></text></g><g><title>[dash] (16,530 samples, 1.28%)</title><rect x="8.4562%" y="661" width="1.2786%" height="15" fill="rgb(245,210,41)" fg:x="109326" fg:w="16530"/><text x="8.7062%" y="671.50"></text></g><g><title>[dash] (16,543 samples, 1.28%)</title><rect x="8.4562%" y="677" width="1.2796%" height="15" fill="rgb(206,13,37)" fg:x="109326" fg:w="16543"/><text x="8.7062%" y="687.50"></text></g><g><title>__libc_start_main (16,545 samples, 1.28%)</title><rect x="8.4562%" y="693" width="1.2797%" height="15" fill="rgb(250,61,18)" fg:x="109326" fg:w="16545"/><text x="8.7062%" y="703.50"></text></g><g><title>[dash] (16,556 samples, 1.28%)</title><rect x="8.4556%" y="709" width="1.2806%" height="15" fill="rgb(235,172,48)" fg:x="109318" fg:w="16556"/><text x="8.7056%" y="719.50"></text></g><g><title>do_filp_open (208 samples, 0.02%)</title><rect x="9.8065%" y="629" width="0.0161%" height="15" fill="rgb(249,201,17)" fg:x="126783" fg:w="208"/><text x="10.0565%" y="639.50"></text></g><g><title>path_openat (207 samples, 0.02%)</title><rect x="9.8065%" y="613" width="0.0160%" height="15" fill="rgb(219,208,6)" fg:x="126784" fg:w="207"/><text x="10.0565%" y="623.50"></text></g><g><title>__x64_sys_openat (282 samples, 0.02%)</title><rect x="9.8053%" y="661" width="0.0218%" height="15" fill="rgb(248,31,23)" fg:x="126768" fg:w="282"/><text x="10.0553%" y="671.50"></text></g><g><title>do_sys_openat2 (282 samples, 0.02%)</title><rect x="9.8053%" y="645" width="0.0218%" height="15" fill="rgb(245,15,42)" fg:x="126768" fg:w="282"/><text x="10.0553%" y="655.50"></text></g><g><title>generic_file_buffered_read (260 samples, 0.02%)</title><rect x="9.8366%" y="613" width="0.0201%" height="15" fill="rgb(222,217,39)" fg:x="127173" fg:w="260"/><text x="10.0866%" y="623.50"></text></g><g><title>new_sync_read (279 samples, 0.02%)</title><rect x="9.8353%" y="629" width="0.0216%" height="15" fill="rgb(210,219,27)" fg:x="127156" fg:w="279"/><text x="10.0853%" y="639.50"></text></g><g><title>ksys_read (405 samples, 0.03%)</title><rect x="9.8271%" y="661" width="0.0313%" height="15" fill="rgb(252,166,36)" fg:x="127050" fg:w="405"/><text x="10.0771%" y="671.50"></text></g><g><title>vfs_read (340 samples, 0.03%)</title><rect x="9.8321%" y="645" width="0.0263%" height="15" fill="rgb(245,132,34)" fg:x="127115" fg:w="340"/><text x="10.0821%" y="655.50"></text></g><g><title>do_syscall_64 (778 samples, 0.06%)</title><rect x="9.7989%" y="677" width="0.0602%" height="15" fill="rgb(236,54,3)" fg:x="126685" fg:w="778"/><text x="10.0489%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (856 samples, 0.07%)</title><rect x="9.7984%" y="693" width="0.0662%" height="15" fill="rgb(241,173,43)" fg:x="126679" fg:w="856"/><text x="10.0484%" y="703.50"></text></g><g><title>[unknown] (1,679 samples, 0.13%)</title><rect x="9.7361%" y="709" width="0.1299%" height="15" fill="rgb(215,190,9)" fg:x="125874" fg:w="1679"/><text x="9.9861%" y="719.50"></text></g><g><title>asm_exc_page_fault (258 samples, 0.02%)</title><rect x="9.8756%" y="709" width="0.0200%" height="15" fill="rgb(242,101,16)" fg:x="127677" fg:w="258"/><text x="10.1256%" y="719.50"></text></g><g><title>exit_mmap (256 samples, 0.02%)</title><rect x="9.8982%" y="581" width="0.0198%" height="15" fill="rgb(223,190,21)" fg:x="127969" fg:w="256"/><text x="10.1482%" y="591.50"></text></g><g><title>mmput (258 samples, 0.02%)</title><rect x="9.8982%" y="597" width="0.0200%" height="15" fill="rgb(215,228,25)" fg:x="127969" fg:w="258"/><text x="10.1482%" y="607.50"></text></g><g><title>begin_new_exec (279 samples, 0.02%)</title><rect x="9.8971%" y="613" width="0.0216%" height="15" fill="rgb(225,36,22)" fg:x="127955" fg:w="279"/><text x="10.1471%" y="623.50"></text></g><g><title>load_elf_binary (315 samples, 0.02%)</title><rect x="9.8963%" y="629" width="0.0244%" height="15" fill="rgb(251,106,46)" fg:x="127944" fg:w="315"/><text x="10.1463%" y="639.50"></text></g><g><title>__x64_sys_execve (316 samples, 0.02%)</title><rect x="9.8963%" y="677" width="0.0244%" height="15" fill="rgb(208,90,1)" fg:x="127944" fg:w="316"/><text x="10.1463%" y="687.50"></text></g><g><title>do_execveat_common (316 samples, 0.02%)</title><rect x="9.8963%" y="661" width="0.0244%" height="15" fill="rgb(243,10,4)" fg:x="127944" fg:w="316"/><text x="10.1463%" y="671.50"></text></g><g><title>bprm_execve (316 samples, 0.02%)</title><rect x="9.8963%" y="645" width="0.0244%" height="15" fill="rgb(212,137,27)" fg:x="127944" fg:w="316"/><text x="10.1463%" y="655.50"></text></g><g><title>free_pgtables (167 samples, 0.01%)</title><rect x="9.9229%" y="597" width="0.0129%" height="15" fill="rgb(231,220,49)" fg:x="128289" fg:w="167"/><text x="10.1729%" y="607.50"></text></g><g><title>unmap_page_range (233 samples, 0.02%)</title><rect x="9.9508%" y="581" width="0.0180%" height="15" fill="rgb(237,96,20)" fg:x="128649" fg:w="233"/><text x="10.2008%" y="591.50"></text></g><g><title>exit_mmap (608 samples, 0.05%)</title><rect x="9.9223%" y="613" width="0.0470%" height="15" fill="rgb(239,229,30)" fg:x="128281" fg:w="608"/><text x="10.1723%" y="623.50"></text></g><g><title>unmap_vmas (245 samples, 0.02%)</title><rect x="9.9504%" y="597" width="0.0190%" height="15" fill="rgb(219,65,33)" fg:x="128644" fg:w="245"/><text x="10.2004%" y="607.50"></text></g><g><title>mmput (612 samples, 0.05%)</title><rect x="9.9223%" y="629" width="0.0473%" height="15" fill="rgb(243,134,7)" fg:x="128281" fg:w="612"/><text x="10.1723%" y="639.50"></text></g><g><title>__x64_sys_exit_group (706 samples, 0.05%)</title><rect x="9.9207%" y="677" width="0.0546%" height="15" fill="rgb(216,177,54)" fg:x="128260" fg:w="706"/><text x="10.1707%" y="687.50"></text></g><g><title>do_group_exit (706 samples, 0.05%)</title><rect x="9.9207%" y="661" width="0.0546%" height="15" fill="rgb(211,160,20)" fg:x="128260" fg:w="706"/><text x="10.1707%" y="671.50"></text></g><g><title>do_exit (706 samples, 0.05%)</title><rect x="9.9207%" y="645" width="0.0546%" height="15" fill="rgb(239,85,39)" fg:x="128260" fg:w="706"/><text x="10.1707%" y="655.50"></text></g><g><title>do_syscall_64 (1,029 samples, 0.08%)</title><rect x="9.8963%" y="693" width="0.0796%" height="15" fill="rgb(232,125,22)" fg:x="127944" fg:w="1029"/><text x="10.1463%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,038 samples, 0.08%)</title><rect x="9.8956%" y="709" width="0.0803%" height="15" fill="rgb(244,57,34)" fg:x="127936" fg:w="1038"/><text x="10.1456%" y="719.50"></text></g><g><title>c++ (19,693 samples, 1.52%)</title><rect x="8.4536%" y="725" width="1.5232%" height="15" fill="rgb(214,203,32)" fg:x="109292" fg:w="19693"/><text x="8.7036%" y="735.50"></text></g><g><title>[perf-956514.map] (511 samples, 0.04%)</title><rect x="9.9788%" y="709" width="0.0395%" height="15" fill="rgb(207,58,43)" fg:x="129011" fg:w="511"/><text x="10.2288%" y="719.50"></text></g><g><title>find-action-loo (551 samples, 0.04%)</title><rect x="9.9786%" y="725" width="0.0426%" height="15" fill="rgb(215,193,15)" fg:x="129009" fg:w="551"/><text x="10.2286%" y="735.50"></text></g><g><title>[perf-956514.map] (228 samples, 0.02%)</title><rect x="10.0271%" y="709" width="0.0176%" height="15" fill="rgb(232,15,44)" fg:x="129635" fg:w="228"/><text x="10.2771%" y="719.50"></text></g><g><title>globbing_pool-1 (342 samples, 0.03%)</title><rect x="10.0240%" y="725" width="0.0265%" height="15" fill="rgb(212,3,48)" fg:x="129595" fg:w="342"/><text x="10.2740%" y="735.50"></text></g><g><title>[perf-956514.map] (154 samples, 0.01%)</title><rect x="10.0526%" y="709" width="0.0119%" height="15" fill="rgb(218,128,7)" fg:x="129965" fg:w="154"/><text x="10.3026%" y="719.50"></text></g><g><title>globbing_pool-2 (221 samples, 0.02%)</title><rect x="10.0504%" y="725" width="0.0171%" height="15" fill="rgb(226,216,39)" fg:x="129937" fg:w="221"/><text x="10.3004%" y="735.50"></text></g><g><title>[perf-956514.map] (262 samples, 0.02%)</title><rect x="10.0696%" y="709" width="0.0203%" height="15" fill="rgb(243,47,51)" fg:x="130185" fg:w="262"/><text x="10.3196%" y="719.50"></text></g><g><title>globbing_pool-3 (483 samples, 0.04%)</title><rect x="10.0675%" y="725" width="0.0374%" height="15" fill="rgb(241,183,40)" fg:x="130158" fg:w="483"/><text x="10.3175%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (145 samples, 0.01%)</title><rect x="10.0937%" y="709" width="0.0112%" height="15" fill="rgb(231,217,32)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (145 samples, 0.01%)</title><rect x="10.0937%" y="693" width="0.0112%" height="15" fill="rgb(229,61,38)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (145 samples, 0.01%)</title><rect x="10.0937%" y="677" width="0.0112%" height="15" fill="rgb(225,210,5)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="687.50"></text></g><g><title>arch_do_signal (145 samples, 0.01%)</title><rect x="10.0937%" y="661" width="0.0112%" height="15" fill="rgb(231,79,45)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="671.50"></text></g><g><title>get_signal (145 samples, 0.01%)</title><rect x="10.0937%" y="645" width="0.0112%" height="15" fill="rgb(224,100,7)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="655.50"></text></g><g><title>do_group_exit (145 samples, 0.01%)</title><rect x="10.0937%" y="629" width="0.0112%" height="15" fill="rgb(241,198,18)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="639.50"></text></g><g><title>do_exit (145 samples, 0.01%)</title><rect x="10.0937%" y="613" width="0.0112%" height="15" fill="rgb(252,97,53)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="623.50"></text></g><g><title>mmput (145 samples, 0.01%)</title><rect x="10.0937%" y="597" width="0.0112%" height="15" fill="rgb(220,88,7)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="607.50"></text></g><g><title>exit_mmap (145 samples, 0.01%)</title><rect x="10.0937%" y="581" width="0.0112%" height="15" fill="rgb(213,176,14)" fg:x="130496" fg:w="145"/><text x="10.3437%" y="591.50"></text></g><g><title>unmap_vmas (143 samples, 0.01%)</title><rect x="10.0938%" y="565" width="0.0111%" height="15" fill="rgb(246,73,7)" fg:x="130498" fg:w="143"/><text x="10.3438%" y="575.50"></text></g><g><title>unmap_page_range (143 samples, 0.01%)</title><rect x="10.0938%" y="549" width="0.0111%" height="15" fill="rgb(245,64,36)" fg:x="130498" fg:w="143"/><text x="10.3438%" y="559.50"></text></g><g><title>[perf-956514.map] (168 samples, 0.01%)</title><rect x="10.1079%" y="709" width="0.0130%" height="15" fill="rgb(245,80,10)" fg:x="130680" fg:w="168"/><text x="10.3579%" y="719.50"></text></g><g><title>globbing_pool-4 (239 samples, 0.02%)</title><rect x="10.1049%" y="725" width="0.0185%" height="15" fill="rgb(232,107,50)" fg:x="130641" fg:w="239"/><text x="10.3549%" y="735.50"></text></g><g><title>[perf-956514.map] (249 samples, 0.02%)</title><rect x="10.1270%" y="709" width="0.0193%" height="15" fill="rgb(253,3,0)" fg:x="130927" fg:w="249"/><text x="10.3770%" y="719.50"></text></g><g><title>globbing_pool-5 (338 samples, 0.03%)</title><rect x="10.1234%" y="725" width="0.0261%" height="15" fill="rgb(212,99,53)" fg:x="130880" fg:w="338"/><text x="10.3734%" y="735.50"></text></g><g><title>[anon] (258 samples, 0.02%)</title><rect x="10.1787%" y="709" width="0.0200%" height="15" fill="rgb(249,111,54)" fg:x="131596" fg:w="258"/><text x="10.4287%" y="719.50"></text></g><g><title>SystemDictionary::load_instance_class (133 samples, 0.01%)</title><rect x="10.3604%" y="629" width="0.0103%" height="15" fill="rgb(249,55,30)" fg:x="133945" fg:w="133"/><text x="10.6104%" y="639.50"></text></g><g><title>ConstantPool::klass_at_impl (145 samples, 0.01%)</title><rect x="10.3596%" y="677" width="0.0112%" height="15" fill="rgb(237,47,42)" fg:x="133934" fg:w="145"/><text x="10.6096%" y="687.50"></text></g><g><title>SystemDictionary::resolve_or_fail (143 samples, 0.01%)</title><rect x="10.3597%" y="661" width="0.0111%" height="15" fill="rgb(211,20,18)" fg:x="133936" fg:w="143"/><text x="10.6097%" y="671.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (143 samples, 0.01%)</title><rect x="10.3597%" y="645" width="0.0111%" height="15" fill="rgb(231,203,46)" fg:x="133936" fg:w="143"/><text x="10.6097%" y="655.50"></text></g><g><title>InstanceKlass::link_class_impl (135 samples, 0.01%)</title><rect x="10.3709%" y="661" width="0.0104%" height="15" fill="rgb(237,142,3)" fg:x="134081" fg:w="135"/><text x="10.6209%" y="671.50"></text></g><g><title>InterpreterRuntime::_new (284 samples, 0.02%)</title><rect x="10.3595%" y="693" width="0.0220%" height="15" fill="rgb(241,107,1)" fg:x="133933" fg:w="284"/><text x="10.6095%" y="703.50"></text></g><g><title>InstanceKlass::initialize_impl (137 samples, 0.01%)</title><rect x="10.3709%" y="677" width="0.0106%" height="15" fill="rgb(229,83,13)" fg:x="134080" fg:w="137"/><text x="10.6209%" y="687.50"></text></g><g><title>LinkResolver::resolve_invoke (262 samples, 0.02%)</title><rect x="10.4031%" y="661" width="0.0203%" height="15" fill="rgb(241,91,40)" fg:x="134497" fg:w="262"/><text x="10.6531%" y="671.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (306 samples, 0.02%)</title><rect x="10.4009%" y="677" width="0.0237%" height="15" fill="rgb(225,3,45)" fg:x="134468" fg:w="306"/><text x="10.6509%" y="687.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (477 samples, 0.04%)</title><rect x="10.3921%" y="693" width="0.0369%" height="15" fill="rgb(244,223,14)" fg:x="134355" fg:w="477"/><text x="10.6421%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (448 samples, 0.03%)</title><rect x="10.4665%" y="549" width="0.0347%" height="15" fill="rgb(224,124,37)" fg:x="135316" fg:w="448"/><text x="10.7165%" y="559.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (538 samples, 0.04%)</title><rect x="10.4597%" y="565" width="0.0416%" height="15" fill="rgb(251,171,30)" fg:x="135228" fg:w="538"/><text x="10.7097%" y="575.50"></text></g><g><title>ClassFileParser::parse_constant_pool (561 samples, 0.04%)</title><rect x="10.4583%" y="581" width="0.0434%" height="15" fill="rgb(236,46,54)" fg:x="135210" fg:w="561"/><text x="10.7083%" y="591.50"></text></g><g><title>ClassFileParser::parse_method (163 samples, 0.01%)</title><rect x="10.5037%" y="565" width="0.0126%" height="15" fill="rgb(245,213,5)" fg:x="135797" fg:w="163"/><text x="10.7537%" y="575.50"></text></g><g><title>ClassFileParser::parse_methods (165 samples, 0.01%)</title><rect x="10.5036%" y="581" width="0.0128%" height="15" fill="rgb(230,144,27)" fg:x="135796" fg:w="165"/><text x="10.7536%" y="591.50"></text></g><g><title>ClassFileParser::parse_stream (777 samples, 0.06%)</title><rect x="10.4576%" y="597" width="0.0601%" height="15" fill="rgb(220,86,6)" fg:x="135201" fg:w="777"/><text x="10.7076%" y="607.50"></text></g><g><title>ClassFileParser::ClassFileParser (783 samples, 0.06%)</title><rect x="10.4573%" y="613" width="0.0606%" height="15" fill="rgb(240,20,13)" fg:x="135198" fg:w="783"/><text x="10.7073%" y="623.50"></text></g><g><title>DefaultMethods::generate_default_methods (147 samples, 0.01%)</title><rect x="10.5184%" y="581" width="0.0114%" height="15" fill="rgb(217,89,34)" fg:x="135987" fg:w="147"/><text x="10.7684%" y="591.50"></text></g><g><title>ClassFileParser::fill_instance_klass (182 samples, 0.01%)</title><rect x="10.5180%" y="597" width="0.0141%" height="15" fill="rgb(229,13,5)" fg:x="135982" fg:w="182"/><text x="10.7680%" y="607.50"></text></g><g><title>ClassFileParser::create_instance_klass (188 samples, 0.01%)</title><rect x="10.5179%" y="613" width="0.0145%" height="15" fill="rgb(244,67,35)" fg:x="135981" fg:w="188"/><text x="10.7679%" y="623.50"></text></g><g><title>KlassFactory::create_from_stream (1,037 samples, 0.08%)</title><rect x="10.4572%" y="629" width="0.0802%" height="15" fill="rgb(221,40,2)" fg:x="135196" fg:w="1037"/><text x="10.7072%" y="639.50"></text></g><g><title>JVM_DefineClassWithSource (1,092 samples, 0.08%)</title><rect x="10.4560%" y="677" width="0.0845%" height="15" fill="rgb(237,157,21)" fg:x="135180" fg:w="1092"/><text x="10.7060%" y="687.50"></text></g><g><title>jvm_define_class_common (1,090 samples, 0.08%)</title><rect x="10.4561%" y="661" width="0.0843%" height="15" fill="rgb(222,94,11)" fg:x="135182" fg:w="1090"/><text x="10.7061%" y="671.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,077 samples, 0.08%)</title><rect x="10.4571%" y="645" width="0.0833%" height="15" fill="rgb(249,113,6)" fg:x="135195" fg:w="1077"/><text x="10.7071%" y="655.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,131 samples, 0.09%)</title><rect x="10.4558%" y="693" width="0.0875%" height="15" fill="rgb(238,137,36)" fg:x="135178" fg:w="1131"/><text x="10.7058%" y="703.50"></text></g><g><title>[perf-956514.map] (4,731 samples, 0.37%)</title><rect x="10.2002%" y="709" width="0.3659%" height="15" fill="rgb(210,102,26)" fg:x="131874" fg:w="4731"/><text x="10.4502%" y="719.50"></text></g><g><title>[unknown] (144 samples, 0.01%)</title><rect x="10.5662%" y="709" width="0.0111%" height="15" fill="rgb(218,30,30)" fg:x="136605" fg:w="144"/><text x="10.8162%" y="719.50"></text></g><g><title>schedule_tail (136 samples, 0.01%)</title><rect x="10.5783%" y="677" width="0.0105%" height="15" fill="rgb(214,67,26)" fg:x="136762" fg:w="136"/><text x="10.8283%" y="687.50"></text></g><g><title>finish_task_switch (136 samples, 0.01%)</title><rect x="10.5783%" y="661" width="0.0105%" height="15" fill="rgb(251,9,53)" fg:x="136762" fg:w="136"/><text x="10.8283%" y="671.50"></text></g><g><title>ret_from_fork (141 samples, 0.01%)</title><rect x="10.5781%" y="693" width="0.0109%" height="15" fill="rgb(228,204,25)" fg:x="136759" fg:w="141"/><text x="10.8281%" y="703.50"></text></g><g><title>__GI___clone (242 samples, 0.02%)</title><rect x="10.5773%" y="709" width="0.0187%" height="15" fill="rgb(207,153,8)" fg:x="136749" fg:w="242"/><text x="10.8273%" y="719.50"></text></g><g><title>java (5,445 samples, 0.42%)</title><rect x="10.1779%" y="725" width="0.4212%" height="15" fill="rgb(242,9,16)" fg:x="131585" fg:w="5445"/><text x="10.4279%" y="735.50"></text></g><g><title>[unknown] (168 samples, 0.01%)</title><rect x="10.6039%" y="709" width="0.0130%" height="15" fill="rgb(217,211,10)" fg:x="137093" fg:w="168"/><text x="10.8539%" y="719.50"></text></g><g><title>execute_command_internal (427 samples, 0.03%)</title><rect x="10.6188%" y="629" width="0.0330%" height="15" fill="rgb(219,228,52)" fg:x="137286" fg:w="427"/><text x="10.8688%" y="639.50"></text></g><g><title>execute_command (429 samples, 0.03%)</title><rect x="10.6188%" y="645" width="0.0332%" height="15" fill="rgb(231,92,29)" fg:x="137285" fg:w="429"/><text x="10.8688%" y="655.50"></text></g><g><title>[bash] (197 samples, 0.02%)</title><rect x="10.6613%" y="581" width="0.0152%" height="15" fill="rgb(232,8,23)" fg:x="137835" fg:w="197"/><text x="10.9113%" y="591.50"></text></g><g><title>[bash] (332 samples, 0.03%)</title><rect x="10.6551%" y="597" width="0.0257%" height="15" fill="rgb(216,211,34)" fg:x="137755" fg:w="332"/><text x="10.9051%" y="607.50"></text></g><g><title>parse_command (404 samples, 0.03%)</title><rect x="10.6520%" y="629" width="0.0312%" height="15" fill="rgb(236,151,0)" fg:x="137714" fg:w="404"/><text x="10.9020%" y="639.50"></text></g><g><title>yyparse (403 samples, 0.03%)</title><rect x="10.6520%" y="613" width="0.0312%" height="15" fill="rgb(209,168,3)" fg:x="137715" fg:w="403"/><text x="10.9020%" y="623.50"></text></g><g><title>read_command (405 samples, 0.03%)</title><rect x="10.6520%" y="645" width="0.0313%" height="15" fill="rgb(208,129,28)" fg:x="137714" fg:w="405"/><text x="10.9020%" y="655.50"></text></g><g><title>reader_loop (852 samples, 0.07%)</title><rect x="10.6175%" y="661" width="0.0659%" height="15" fill="rgb(229,78,22)" fg:x="137268" fg:w="852"/><text x="10.8675%" y="671.50"></text></g><g><title>__libc_start_main (869 samples, 0.07%)</title><rect x="10.6169%" y="693" width="0.0672%" height="15" fill="rgb(228,187,13)" fg:x="137261" fg:w="869"/><text x="10.8669%" y="703.50"></text></g><g><title>main (869 samples, 0.07%)</title><rect x="10.6169%" y="677" width="0.0672%" height="15" fill="rgb(240,119,24)" fg:x="137261" fg:w="869"/><text x="10.8669%" y="687.50"></text></g><g><title>_start (888 samples, 0.07%)</title><rect x="10.6169%" y="709" width="0.0687%" height="15" fill="rgb(209,194,42)" fg:x="137261" fg:w="888"/><text x="10.8669%" y="719.50"></text></g><g><title>libtool (1,196 samples, 0.09%)</title><rect x="10.5990%" y="725" width="0.0925%" height="15" fill="rgb(247,200,46)" fg:x="137030" fg:w="1196"/><text x="10.8490%" y="735.50"></text></g><g><title>__libc_start_main (132 samples, 0.01%)</title><rect x="10.6947%" y="693" width="0.0102%" height="15" fill="rgb(218,76,16)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="703.50"></text></g><g><title>__GI___clone (132 samples, 0.01%)</title><rect x="10.6947%" y="677" width="0.0102%" height="15" fill="rgb(225,21,48)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (132 samples, 0.01%)</title><rect x="10.6947%" y="661" width="0.0102%" height="15" fill="rgb(239,223,50)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="671.50"></text></g><g><title>do_syscall_64 (132 samples, 0.01%)</title><rect x="10.6947%" y="645" width="0.0102%" height="15" fill="rgb(244,45,21)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="655.50"></text></g><g><title>__do_sys_clone (132 samples, 0.01%)</title><rect x="10.6947%" y="629" width="0.0102%" height="15" fill="rgb(232,33,43)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="639.50"></text></g><g><title>kernel_clone (132 samples, 0.01%)</title><rect x="10.6947%" y="613" width="0.0102%" height="15" fill="rgb(209,8,3)" fg:x="138266" fg:w="132"/><text x="10.9447%" y="623.50"></text></g><g><title>[unknown] (143 samples, 0.01%)</title><rect x="10.6942%" y="709" width="0.0111%" height="15" fill="rgb(214,25,53)" fg:x="138260" fg:w="143"/><text x="10.9442%" y="719.50"></text></g><g><title>CreateTarget (147 samples, 0.01%)</title><rect x="10.7069%" y="677" width="0.0114%" height="15" fill="rgb(254,186,54)" fg:x="138425" fg:w="147"/><text x="10.9569%" y="687.50"></text></g><g><title>do_syscall_64 (141 samples, 0.01%)</title><rect x="10.7264%" y="645" width="0.0109%" height="15" fill="rgb(208,174,49)" fg:x="138677" fg:w="141"/><text x="10.9764%" y="655.50"></text></g><g><title>kernel_wait4 (141 samples, 0.01%)</title><rect x="10.7264%" y="629" width="0.0109%" height="15" fill="rgb(233,191,51)" fg:x="138677" fg:w="141"/><text x="10.9764%" y="639.50"></text></g><g><title>do_wait (141 samples, 0.01%)</title><rect x="10.7264%" y="613" width="0.0109%" height="15" fill="rgb(222,134,10)" fg:x="138677" fg:w="141"/><text x="10.9764%" y="623.50"></text></g><g><title>__GI___wait4 (142 samples, 0.01%)</title><rect x="10.7264%" y="677" width="0.0110%" height="15" fill="rgb(230,226,20)" fg:x="138677" fg:w="142"/><text x="10.9764%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (142 samples, 0.01%)</title><rect x="10.7264%" y="661" width="0.0110%" height="15" fill="rgb(251,111,25)" fg:x="138677" fg:w="142"/><text x="10.9764%" y="671.50"></text></g><g><title>Pid1Main (930 samples, 0.07%)</title><rect x="10.7054%" y="693" width="0.0719%" height="15" fill="rgb(224,40,46)" fg:x="138405" fg:w="930"/><text x="10.9554%" y="703.50"></text></g><g><title>__GI___clone (1,032 samples, 0.08%)</title><rect x="10.7052%" y="709" width="0.0798%" height="15" fill="rgb(236,108,47)" fg:x="138403" fg:w="1032"/><text x="10.9552%" y="719.50"></text></g><g><title>[libc-2.31.so] (157 samples, 0.01%)</title><rect x="10.7961%" y="661" width="0.0121%" height="15" fill="rgb(234,93,0)" fg:x="139577" fg:w="157"/><text x="11.0461%" y="671.50"></text></g><g><title>__libc_start_main (417 samples, 0.03%)</title><rect x="10.7894%" y="693" width="0.0323%" height="15" fill="rgb(224,213,32)" fg:x="139491" fg:w="417"/><text x="11.0394%" y="703.50"></text></g><g><title>main (353 samples, 0.03%)</title><rect x="10.7944%" y="677" width="0.0273%" height="15" fill="rgb(251,11,48)" fg:x="139555" fg:w="353"/><text x="11.0444%" y="687.50"></text></g><g><title>_dl_catch_exception (141 samples, 0.01%)</title><rect x="10.8226%" y="613" width="0.0109%" height="15" fill="rgb(236,173,5)" fg:x="139920" fg:w="141"/><text x="11.0726%" y="623.50"></text></g><g><title>openaux (141 samples, 0.01%)</title><rect x="10.8226%" y="597" width="0.0109%" height="15" fill="rgb(230,95,12)" fg:x="139920" fg:w="141"/><text x="11.0726%" y="607.50"></text></g><g><title>_dl_map_object (141 samples, 0.01%)</title><rect x="10.8226%" y="581" width="0.0109%" height="15" fill="rgb(232,209,1)" fg:x="139920" fg:w="141"/><text x="11.0726%" y="591.50"></text></g><g><title>_dl_map_object_deps (148 samples, 0.01%)</title><rect x="10.8224%" y="629" width="0.0114%" height="15" fill="rgb(232,6,1)" fg:x="139918" fg:w="148"/><text x="11.0724%" y="639.50"></text></g><g><title>_dl_lookup_symbol_x (279 samples, 0.02%)</title><rect x="10.8436%" y="581" width="0.0216%" height="15" fill="rgb(210,224,50)" fg:x="140192" fg:w="279"/><text x="11.0936%" y="591.50"></text></g><g><title>do_lookup_x (185 samples, 0.01%)</title><rect x="10.8509%" y="565" width="0.0143%" height="15" fill="rgb(228,127,35)" fg:x="140286" fg:w="185"/><text x="11.1009%" y="575.50"></text></g><g><title>elf_machine_rela (341 samples, 0.03%)</title><rect x="10.8393%" y="597" width="0.0264%" height="15" fill="rgb(245,102,45)" fg:x="140136" fg:w="341"/><text x="11.0893%" y="607.50"></text></g><g><title>elf_dynamic_do_Rela (405 samples, 0.03%)</title><rect x="10.8359%" y="613" width="0.0313%" height="15" fill="rgb(214,1,49)" fg:x="140092" fg:w="405"/><text x="11.0859%" y="623.50"></text></g><g><title>_dl_relocate_object (433 samples, 0.03%)</title><rect x="10.8341%" y="629" width="0.0335%" height="15" fill="rgb(226,163,40)" fg:x="140069" fg:w="433"/><text x="11.0841%" y="639.50"></text></g><g><title>[ld-2.31.so] (604 samples, 0.05%)</title><rect x="10.8217%" y="645" width="0.0467%" height="15" fill="rgb(239,212,28)" fg:x="139909" fg:w="604"/><text x="11.0717%" y="655.50"></text></g><g><title>_dl_start_final (610 samples, 0.05%)</title><rect x="10.8217%" y="677" width="0.0472%" height="15" fill="rgb(220,20,13)" fg:x="139908" fg:w="610"/><text x="11.0717%" y="687.50"></text></g><g><title>_dl_sysdep_start (609 samples, 0.05%)</title><rect x="10.8217%" y="661" width="0.0471%" height="15" fill="rgb(210,164,35)" fg:x="139909" fg:w="609"/><text x="11.0717%" y="671.50"></text></g><g><title>_dl_start (618 samples, 0.05%)</title><rect x="10.8217%" y="693" width="0.0478%" height="15" fill="rgb(248,109,41)" fg:x="139908" fg:w="618"/><text x="11.0717%" y="703.50"></text></g><g><title>_start (1,036 samples, 0.08%)</title><rect x="10.7894%" y="709" width="0.0801%" height="15" fill="rgb(238,23,50)" fg:x="139491" fg:w="1036"/><text x="11.0394%" y="719.50"></text></g><g><title>__x64_sys_exit (162 samples, 0.01%)</title><rect x="10.8860%" y="677" width="0.0125%" height="15" fill="rgb(211,48,49)" fg:x="140740" fg:w="162"/><text x="11.1360%" y="687.50"></text></g><g><title>do_exit (162 samples, 0.01%)</title><rect x="10.8860%" y="661" width="0.0125%" height="15" fill="rgb(223,36,21)" fg:x="140740" fg:w="162"/><text x="11.1360%" y="671.50"></text></g><g><title>linux-sandbox (2,745 samples, 0.21%)</title><rect x="10.6916%" y="725" width="0.2123%" height="15" fill="rgb(207,123,46)" fg:x="138226" fg:w="2745"/><text x="10.9416%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (318 samples, 0.02%)</title><rect x="10.8793%" y="709" width="0.0246%" height="15" fill="rgb(240,218,32)" fg:x="140653" fg:w="318"/><text x="11.1293%" y="719.50"></text></g><g><title>do_syscall_64 (315 samples, 0.02%)</title><rect x="10.8795%" y="693" width="0.0244%" height="15" fill="rgb(252,5,43)" fg:x="140656" fg:w="315"/><text x="11.1295%" y="703.50"></text></g><g><title>process-wrapper (152 samples, 0.01%)</title><rect x="10.9043%" y="725" width="0.0118%" height="15" fill="rgb(252,84,19)" fg:x="140977" fg:w="152"/><text x="11.1543%" y="735.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (168 samples, 0.01%)</title><rect x="10.9229%" y="693" width="0.0130%" height="15" fill="rgb(243,152,39)" fg:x="141217" fg:w="168"/><text x="11.1729%" y="703.50"></text></g><g><title>__GI___wait4 (168 samples, 0.01%)</title><rect x="10.9229%" y="677" width="0.0130%" height="15" fill="rgb(234,160,15)" fg:x="141217" fg:w="168"/><text x="11.1729%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (168 samples, 0.01%)</title><rect x="10.9229%" y="661" width="0.0130%" height="15" fill="rgb(237,34,20)" fg:x="141217" fg:w="168"/><text x="11.1729%" y="671.50"></text></g><g><title>do_syscall_64 (168 samples, 0.01%)</title><rect x="10.9229%" y="645" width="0.0130%" height="15" fill="rgb(229,97,13)" fg:x="141217" fg:w="168"/><text x="11.1729%" y="655.50"></text></g><g><title>kernel_wait4 (167 samples, 0.01%)</title><rect x="10.9230%" y="629" width="0.0129%" height="15" fill="rgb(234,71,50)" fg:x="141218" fg:w="167"/><text x="11.1730%" y="639.50"></text></g><g><title>do_wait (167 samples, 0.01%)</title><rect x="10.9230%" y="613" width="0.0129%" height="15" fill="rgb(253,155,4)" fg:x="141218" fg:w="167"/><text x="11.1730%" y="623.50"></text></g><g><title>process_reaper (305 samples, 0.02%)</title><rect x="10.9161%" y="725" width="0.0236%" height="15" fill="rgb(222,185,37)" fg:x="141129" fg:w="305"/><text x="11.1661%" y="735.50"></text></g><g><title>[perf-956514.map] (305 samples, 0.02%)</title><rect x="10.9161%" y="709" width="0.0236%" height="15" fill="rgb(251,177,13)" fg:x="141129" fg:w="305"/><text x="11.1661%" y="719.50"></text></g><g><title>do_syscall_64 (138 samples, 0.01%)</title><rect x="10.9695%" y="597" width="0.0107%" height="15" fill="rgb(250,179,40)" fg:x="141820" fg:w="138"/><text x="11.2195%" y="607.50"></text></g><g><title>__x64_sys_futex (137 samples, 0.01%)</title><rect x="10.9696%" y="581" width="0.0106%" height="15" fill="rgb(242,44,2)" fg:x="141821" fg:w="137"/><text x="11.2196%" y="591.50"></text></g><g><title>do_futex (135 samples, 0.01%)</title><rect x="10.9698%" y="565" width="0.0104%" height="15" fill="rgb(216,177,13)" fg:x="141823" fg:w="135"/><text x="11.2198%" y="575.50"></text></g><g><title>futex_wait (134 samples, 0.01%)</title><rect x="10.9699%" y="549" width="0.0104%" height="15" fill="rgb(216,106,43)" fg:x="141824" fg:w="134"/><text x="11.2199%" y="559.50"></text></g><g><title>futex_wait_queue_me (130 samples, 0.01%)</title><rect x="10.9702%" y="533" width="0.0101%" height="15" fill="rgb(216,183,2)" fg:x="141828" fg:w="130"/><text x="11.2202%" y="543.50"></text></g><g><title>__pthread_cond_wait (151 samples, 0.01%)</title><rect x="10.9688%" y="661" width="0.0117%" height="15" fill="rgb(249,75,3)" fg:x="141810" fg:w="151"/><text x="11.2188%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (151 samples, 0.01%)</title><rect x="10.9688%" y="645" width="0.0117%" height="15" fill="rgb(219,67,39)" fg:x="141810" fg:w="151"/><text x="11.2188%" y="655.50"></text></g><g><title>futex_wait_cancelable (148 samples, 0.01%)</title><rect x="10.9690%" y="629" width="0.0114%" height="15" fill="rgb(253,228,2)" fg:x="141813" fg:w="148"/><text x="11.2190%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (142 samples, 0.01%)</title><rect x="10.9695%" y="613" width="0.0110%" height="15" fill="rgb(235,138,27)" fg:x="141819" fg:w="142"/><text x="11.2195%" y="623.50"></text></g><g><title>Parker::park (163 samples, 0.01%)</title><rect x="10.9683%" y="677" width="0.0126%" height="15" fill="rgb(236,97,51)" fg:x="141804" fg:w="163"/><text x="11.2183%" y="687.50"></text></g><g><title>Unsafe_Park (171 samples, 0.01%)</title><rect x="10.9679%" y="693" width="0.0132%" height="15" fill="rgb(240,80,30)" fg:x="141799" fg:w="171"/><text x="11.2179%" y="703.50"></text></g><g><title>[perf-956514.map] (535 samples, 0.04%)</title><rect x="10.9405%" y="709" width="0.0414%" height="15" fill="rgb(230,178,19)" fg:x="141444" fg:w="535"/><text x="11.1905%" y="719.50"></text></g><g><title>profile-writer- (559 samples, 0.04%)</title><rect x="10.9397%" y="725" width="0.0432%" height="15" fill="rgb(210,190,27)" fg:x="141434" fg:w="559"/><text x="11.1897%" y="735.50"></text></g><g><title>[unknown] (305 samples, 0.02%)</title><rect x="10.9854%" y="709" width="0.0236%" height="15" fill="rgb(222,107,31)" fg:x="142025" fg:w="305"/><text x="11.2354%" y="719.50"></text></g><g><title>__libc_start_main (147 samples, 0.01%)</title><rect x="11.0090%" y="693" width="0.0114%" height="15" fill="rgb(216,127,34)" fg:x="142330" fg:w="147"/><text x="11.2590%" y="703.50"></text></g><g><title>Py_BytesMain (147 samples, 0.01%)</title><rect x="11.0090%" y="677" width="0.0114%" height="15" fill="rgb(234,116,52)" fg:x="142330" fg:w="147"/><text x="11.2590%" y="687.50"></text></g><g><title>_start (155 samples, 0.01%)</title><rect x="11.0090%" y="709" width="0.0120%" height="15" fill="rgb(222,124,15)" fg:x="142330" fg:w="155"/><text x="11.2590%" y="719.50"></text></g><g><title>python3 (499 samples, 0.04%)</title><rect x="10.9834%" y="725" width="0.0386%" height="15" fill="rgb(231,179,28)" fg:x="141999" fg:w="499"/><text x="11.2334%" y="735.50"></text></g><g><title>[sed] (188 samples, 0.01%)</title><rect x="11.0435%" y="597" width="0.0145%" height="15" fill="rgb(226,93,45)" fg:x="142776" fg:w="188"/><text x="11.2935%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (192 samples, 0.01%)</title><rect x="11.0621%" y="405" width="0.0149%" height="15" fill="rgb(215,8,51)" fg:x="143017" fg:w="192"/><text x="11.3121%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (192 samples, 0.01%)</title><rect x="11.0621%" y="389" width="0.0149%" height="15" fill="rgb(223,106,5)" fg:x="143017" fg:w="192"/><text x="11.3121%" y="399.50"></text></g><g><title>native_write_msr (192 samples, 0.01%)</title><rect x="11.0621%" y="373" width="0.0149%" height="15" fill="rgb(250,191,5)" fg:x="143017" fg:w="192"/><text x="11.3121%" y="383.50"></text></g><g><title>finish_task_switch (202 samples, 0.02%)</title><rect x="11.0618%" y="421" width="0.0156%" height="15" fill="rgb(242,132,44)" fg:x="143013" fg:w="202"/><text x="11.3118%" y="431.50"></text></g><g><title>new_sync_read (222 samples, 0.02%)</title><rect x="11.0604%" y="485" width="0.0172%" height="15" fill="rgb(251,152,29)" fg:x="142994" fg:w="222"/><text x="11.3104%" y="495.50"></text></g><g><title>pipe_read (220 samples, 0.02%)</title><rect x="11.0605%" y="469" width="0.0170%" height="15" fill="rgb(218,179,5)" fg:x="142996" fg:w="220"/><text x="11.3105%" y="479.50"></text></g><g><title>schedule (206 samples, 0.02%)</title><rect x="11.0616%" y="453" width="0.0159%" height="15" fill="rgb(227,67,19)" fg:x="143010" fg:w="206"/><text x="11.3116%" y="463.50"></text></g><g><title>__schedule (206 samples, 0.02%)</title><rect x="11.0616%" y="437" width="0.0159%" height="15" fill="rgb(233,119,31)" fg:x="143010" fg:w="206"/><text x="11.3116%" y="447.50"></text></g><g><title>do_syscall_64 (227 samples, 0.02%)</title><rect x="11.0603%" y="533" width="0.0176%" height="15" fill="rgb(241,120,22)" fg:x="142993" fg:w="227"/><text x="11.3103%" y="543.50"></text></g><g><title>ksys_read (227 samples, 0.02%)</title><rect x="11.0603%" y="517" width="0.0176%" height="15" fill="rgb(224,102,30)" fg:x="142993" fg:w="227"/><text x="11.3103%" y="527.50"></text></g><g><title>vfs_read (227 samples, 0.02%)</title><rect x="11.0603%" y="501" width="0.0176%" height="15" fill="rgb(210,164,37)" fg:x="142993" fg:w="227"/><text x="11.3103%" y="511.50"></text></g><g><title>_IO_new_file_underflow (254 samples, 0.02%)</title><rect x="11.0586%" y="581" width="0.0196%" height="15" fill="rgb(226,191,16)" fg:x="142971" fg:w="254"/><text x="11.3086%" y="591.50"></text></g><g><title>__GI___libc_read (234 samples, 0.02%)</title><rect x="11.0601%" y="565" width="0.0181%" height="15" fill="rgb(214,40,45)" fg:x="142991" fg:w="234"/><text x="11.3101%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (232 samples, 0.02%)</title><rect x="11.0603%" y="549" width="0.0179%" height="15" fill="rgb(244,29,26)" fg:x="142993" fg:w="232"/><text x="11.3103%" y="559.50"></text></g><g><title>_IO_getdelim (262 samples, 0.02%)</title><rect x="11.0580%" y="597" width="0.0203%" height="15" fill="rgb(216,16,5)" fg:x="142964" fg:w="262"/><text x="11.3080%" y="607.50"></text></g><g><title>[sed] (539 samples, 0.04%)</title><rect x="11.0430%" y="613" width="0.0417%" height="15" fill="rgb(249,76,35)" fg:x="142770" fg:w="539"/><text x="11.2930%" y="623.50"></text></g><g><title>[sed] (590 samples, 0.05%)</title><rect x="11.0410%" y="629" width="0.0456%" height="15" fill="rgb(207,11,44)" fg:x="142744" fg:w="590"/><text x="11.2910%" y="639.50"></text></g><g><title>[sed] (778 samples, 0.06%)</title><rect x="11.0390%" y="645" width="0.0602%" height="15" fill="rgb(228,190,49)" fg:x="142718" fg:w="778"/><text x="11.2890%" y="655.50"></text></g><g><title>[sed] (808 samples, 0.06%)</title><rect x="11.0379%" y="661" width="0.0625%" height="15" fill="rgb(214,173,12)" fg:x="142704" fg:w="808"/><text x="11.2879%" y="671.50"></text></g><g><title>[sed] (905 samples, 0.07%)</title><rect x="11.0377%" y="677" width="0.0700%" height="15" fill="rgb(218,26,35)" fg:x="142701" fg:w="905"/><text x="11.2877%" y="687.50"></text></g><g><title>__libc_start_main (996 samples, 0.08%)</title><rect x="11.0377%" y="693" width="0.0770%" height="15" fill="rgb(220,200,19)" fg:x="142701" fg:w="996"/><text x="11.2877%" y="703.50"></text></g><g><title>[sed] (1,027 samples, 0.08%)</title><rect x="11.0374%" y="709" width="0.0794%" height="15" fill="rgb(239,95,49)" fg:x="142697" fg:w="1027"/><text x="11.2874%" y="719.50"></text></g><g><title>_IO_getdelim (149 samples, 0.01%)</title><rect x="11.1323%" y="613" width="0.0115%" height="15" fill="rgb(235,85,53)" fg:x="143924" fg:w="149"/><text x="11.3823%" y="623.50"></text></g><g><title>determine_info (246 samples, 0.02%)</title><rect x="11.1571%" y="533" width="0.0190%" height="15" fill="rgb(233,133,31)" fg:x="144245" fg:w="246"/><text x="11.4071%" y="543.50"></text></g><g><title>__GI__dl_addr (276 samples, 0.02%)</title><rect x="11.1549%" y="549" width="0.0213%" height="15" fill="rgb(218,25,20)" fg:x="144216" fg:w="276"/><text x="11.4049%" y="559.50"></text></g><g><title>__fopen_internal (395 samples, 0.03%)</title><rect x="11.1461%" y="613" width="0.0306%" height="15" fill="rgb(252,210,38)" fg:x="144103" fg:w="395"/><text x="11.3961%" y="623.50"></text></g><g><title>malloc_hook_ini (286 samples, 0.02%)</title><rect x="11.1546%" y="597" width="0.0221%" height="15" fill="rgb(242,134,21)" fg:x="144212" fg:w="286"/><text x="11.4046%" y="607.50"></text></g><g><title>ptmalloc_init (286 samples, 0.02%)</title><rect x="11.1546%" y="581" width="0.0221%" height="15" fill="rgb(213,28,48)" fg:x="144212" fg:w="286"/><text x="11.4046%" y="591.50"></text></g><g><title>ptmalloc_init (286 samples, 0.02%)</title><rect x="11.1546%" y="565" width="0.0221%" height="15" fill="rgb(250,196,2)" fg:x="144212" fg:w="286"/><text x="11.4046%" y="575.50"></text></g><g><title>[libselinux.so.1] (683 samples, 0.05%)</title><rect x="11.1246%" y="645" width="0.0528%" height="15" fill="rgb(227,5,17)" fg:x="143824" fg:w="683"/><text x="11.3746%" y="655.50"></text></g><g><title>selinuxfs_exists (584 samples, 0.05%)</title><rect x="11.1322%" y="629" width="0.0452%" height="15" fill="rgb(221,226,24)" fg:x="143923" fg:w="584"/><text x="11.3822%" y="639.50"></text></g><g><title>_dl_start_user (772 samples, 0.06%)</title><rect x="11.1241%" y="709" width="0.0597%" height="15" fill="rgb(211,5,48)" fg:x="143818" fg:w="772"/><text x="11.3741%" y="719.50"></text></g><g><title>_dl_init (772 samples, 0.06%)</title><rect x="11.1241%" y="693" width="0.0597%" height="15" fill="rgb(219,150,6)" fg:x="143818" fg:w="772"/><text x="11.3741%" y="703.50"></text></g><g><title>call_init (770 samples, 0.06%)</title><rect x="11.1242%" y="677" width="0.0596%" height="15" fill="rgb(251,46,16)" fg:x="143820" fg:w="770"/><text x="11.3742%" y="687.50"></text></g><g><title>call_init (769 samples, 0.06%)</title><rect x="11.1243%" y="661" width="0.0595%" height="15" fill="rgb(220,204,40)" fg:x="143821" fg:w="769"/><text x="11.3743%" y="671.50"></text></g><g><title>[ld-2.31.so] (132 samples, 0.01%)</title><rect x="11.2138%" y="533" width="0.0102%" height="15" fill="rgb(211,85,2)" fg:x="144978" fg:w="132"/><text x="11.4638%" y="543.50"></text></g><g><title>__vma_adjust (205 samples, 0.02%)</title><rect x="11.2329%" y="373" width="0.0159%" height="15" fill="rgb(229,17,7)" fg:x="145225" fg:w="205"/><text x="11.4829%" y="383.50"></text></g><g><title>__split_vma (282 samples, 0.02%)</title><rect x="11.2325%" y="389" width="0.0218%" height="15" fill="rgb(239,72,28)" fg:x="145220" fg:w="282"/><text x="11.4825%" y="399.50"></text></g><g><title>__do_munmap (455 samples, 0.04%)</title><rect x="11.2315%" y="405" width="0.0352%" height="15" fill="rgb(230,47,54)" fg:x="145207" fg:w="455"/><text x="11.4815%" y="415.50"></text></g><g><title>perf_event_mmap (174 samples, 0.01%)</title><rect x="11.2671%" y="405" width="0.0135%" height="15" fill="rgb(214,50,8)" fg:x="145667" fg:w="174"/><text x="11.5171%" y="415.50"></text></g><g><title>do_mmap (854 samples, 0.07%)</title><rect x="11.2268%" y="437" width="0.0661%" height="15" fill="rgb(216,198,43)" fg:x="145146" fg:w="854"/><text x="11.4768%" y="447.50"></text></g><g><title>mmap_region (827 samples, 0.06%)</title><rect x="11.2289%" y="421" width="0.0640%" height="15" fill="rgb(234,20,35)" fg:x="145173" fg:w="827"/><text x="11.4789%" y="431.50"></text></g><g><title>ksys_mmap_pgoff (902 samples, 0.07%)</title><rect x="11.2253%" y="469" width="0.0698%" height="15" fill="rgb(254,45,19)" fg:x="145127" fg:w="902"/><text x="11.4753%" y="479.50"></text></g><g><title>vm_mmap_pgoff (886 samples, 0.07%)</title><rect x="11.2266%" y="453" width="0.0685%" height="15" fill="rgb(219,14,44)" fg:x="145143" fg:w="886"/><text x="11.4766%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (970 samples, 0.08%)</title><rect x="11.2250%" y="501" width="0.0750%" height="15" fill="rgb(217,220,26)" fg:x="145123" fg:w="970"/><text x="11.4750%" y="511.50"></text></g><g><title>do_syscall_64 (969 samples, 0.07%)</title><rect x="11.2251%" y="485" width="0.0750%" height="15" fill="rgb(213,158,28)" fg:x="145124" fg:w="969"/><text x="11.4751%" y="495.50"></text></g><g><title>__mmap64 (992 samples, 0.08%)</title><rect x="11.2240%" y="517" width="0.0767%" height="15" fill="rgb(252,51,52)" fg:x="145110" fg:w="992"/><text x="11.4740%" y="527.50"></text></g><g><title>_dl_map_segments (1,132 samples, 0.09%)</title><rect x="11.2133%" y="549" width="0.0876%" height="15" fill="rgb(246,89,16)" fg:x="144971" fg:w="1132"/><text x="11.4633%" y="559.50"></text></g><g><title>__mmap64 (993 samples, 0.08%)</title><rect x="11.2240%" y="533" width="0.0768%" height="15" fill="rgb(216,158,49)" fg:x="145110" fg:w="993"/><text x="11.4740%" y="543.50"></text></g><g><title>elf_get_dynamic_info (164 samples, 0.01%)</title><rect x="11.3111%" y="549" width="0.0127%" height="15" fill="rgb(236,107,19)" fg:x="146236" fg:w="164"/><text x="11.5611%" y="559.50"></text></g><g><title>_dl_map_object_from_fd (1,492 samples, 0.12%)</title><rect x="11.2085%" y="565" width="0.1154%" height="15" fill="rgb(228,185,30)" fg:x="144909" fg:w="1492"/><text x="11.4585%" y="575.50"></text></g><g><title>do_filp_open (153 samples, 0.01%)</title><rect x="11.3322%" y="453" width="0.0118%" height="15" fill="rgb(246,134,8)" fg:x="146509" fg:w="153"/><text x="11.5822%" y="463.50"></text></g><g><title>path_openat (148 samples, 0.01%)</title><rect x="11.3326%" y="437" width="0.0114%" height="15" fill="rgb(214,143,50)" fg:x="146514" fg:w="148"/><text x="11.5826%" y="447.50"></text></g><g><title>__x64_sys_openat (199 samples, 0.02%)</title><rect x="11.3312%" y="485" width="0.0154%" height="15" fill="rgb(228,75,8)" fg:x="146495" fg:w="199"/><text x="11.5812%" y="495.50"></text></g><g><title>do_sys_openat2 (195 samples, 0.02%)</title><rect x="11.3315%" y="469" width="0.0151%" height="15" fill="rgb(207,175,4)" fg:x="146499" fg:w="195"/><text x="11.5815%" y="479.50"></text></g><g><title>do_syscall_64 (201 samples, 0.02%)</title><rect x="11.3311%" y="501" width="0.0155%" height="15" fill="rgb(205,108,24)" fg:x="146494" fg:w="201"/><text x="11.5811%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (214 samples, 0.02%)</title><rect x="11.3311%" y="517" width="0.0166%" height="15" fill="rgb(244,120,49)" fg:x="146494" fg:w="214"/><text x="11.5811%" y="527.50"></text></g><g><title>__GI___open64_nocancel (221 samples, 0.02%)</title><rect x="11.3308%" y="533" width="0.0171%" height="15" fill="rgb(223,47,38)" fg:x="146490" fg:w="221"/><text x="11.5808%" y="543.50"></text></g><g><title>open_path (330 samples, 0.03%)</title><rect x="11.3257%" y="565" width="0.0255%" height="15" fill="rgb(229,179,11)" fg:x="146424" fg:w="330"/><text x="11.5757%" y="575.50"></text></g><g><title>open_verify (271 samples, 0.02%)</title><rect x="11.3302%" y="549" width="0.0210%" height="15" fill="rgb(231,122,1)" fg:x="146483" fg:w="271"/><text x="11.5802%" y="559.50"></text></g><g><title>_dl_map_object (1,922 samples, 0.15%)</title><rect x="11.2045%" y="581" width="0.1487%" height="15" fill="rgb(245,119,9)" fg:x="144858" fg:w="1922"/><text x="11.4545%" y="591.50"></text></g><g><title>_dl_catch_exception (1,928 samples, 0.15%)</title><rect x="11.2041%" y="613" width="0.1491%" height="15" fill="rgb(241,163,25)" fg:x="144853" fg:w="1928"/><text x="11.4541%" y="623.50"></text></g><g><title>openaux (1,924 samples, 0.15%)</title><rect x="11.2045%" y="597" width="0.1488%" height="15" fill="rgb(217,214,3)" fg:x="144857" fg:w="1924"/><text x="11.4545%" y="607.50"></text></g><g><title>_dl_map_object_deps (1,992 samples, 0.15%)</title><rect x="11.2024%" y="629" width="0.1541%" height="15" fill="rgb(240,86,28)" fg:x="144831" fg:w="1992"/><text x="11.4524%" y="639.50"></text></g><g><title>mprotect_fixup (206 samples, 0.02%)</title><rect x="11.3649%" y="517" width="0.0159%" height="15" fill="rgb(215,47,9)" fg:x="146931" fg:w="206"/><text x="11.6149%" y="527.50"></text></g><g><title>__x64_sys_mprotect (225 samples, 0.02%)</title><rect x="11.3638%" y="549" width="0.0174%" height="15" fill="rgb(252,25,45)" fg:x="146917" fg:w="225"/><text x="11.6138%" y="559.50"></text></g><g><title>do_mprotect_pkey (224 samples, 0.02%)</title><rect x="11.3639%" y="533" width="0.0173%" height="15" fill="rgb(251,164,9)" fg:x="146918" fg:w="224"/><text x="11.6139%" y="543.50"></text></g><g><title>do_syscall_64 (226 samples, 0.02%)</title><rect x="11.3638%" y="565" width="0.0175%" height="15" fill="rgb(233,194,0)" fg:x="146917" fg:w="226"/><text x="11.6138%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (229 samples, 0.02%)</title><rect x="11.3636%" y="581" width="0.0177%" height="15" fill="rgb(249,111,24)" fg:x="146915" fg:w="229"/><text x="11.6136%" y="591.50"></text></g><g><title>_dl_protect_relro (238 samples, 0.02%)</title><rect x="11.3630%" y="613" width="0.0184%" height="15" fill="rgb(250,223,3)" fg:x="146907" fg:w="238"/><text x="11.6130%" y="623.50"></text></g><g><title>__mprotect (235 samples, 0.02%)</title><rect x="11.3632%" y="597" width="0.0182%" height="15" fill="rgb(236,178,37)" fg:x="146910" fg:w="235"/><text x="11.6132%" y="607.50"></text></g><g><title>check_match (203 samples, 0.02%)</title><rect x="11.4404%" y="549" width="0.0157%" height="15" fill="rgb(241,158,50)" fg:x="147908" fg:w="203"/><text x="11.6904%" y="559.50"></text></g><g><title>strcmp (132 samples, 0.01%)</title><rect x="11.4459%" y="533" width="0.0102%" height="15" fill="rgb(213,121,41)" fg:x="147979" fg:w="132"/><text x="11.6959%" y="543.50"></text></g><g><title>_dl_lookup_symbol_x (738 samples, 0.06%)</title><rect x="11.3995%" y="581" width="0.0571%" height="15" fill="rgb(240,92,3)" fg:x="147379" fg:w="738"/><text x="11.6495%" y="591.50"></text></g><g><title>do_lookup_x (581 samples, 0.04%)</title><rect x="11.4117%" y="565" width="0.0449%" height="15" fill="rgb(205,123,3)" fg:x="147536" fg:w="581"/><text x="11.6617%" y="575.50"></text></g><g><title>elf_machine_rela (866 samples, 0.07%)</title><rect x="11.3903%" y="597" width="0.0670%" height="15" fill="rgb(205,97,47)" fg:x="147260" fg:w="866"/><text x="11.6403%" y="607.50"></text></g><g><title>elf_dynamic_do_Rela (1,039 samples, 0.08%)</title><rect x="11.3814%" y="613" width="0.0804%" height="15" fill="rgb(247,152,14)" fg:x="147145" fg:w="1039"/><text x="11.6314%" y="623.50"></text></g><g><title>_dl_relocate_object (1,296 samples, 0.10%)</title><rect x="11.3626%" y="629" width="0.1002%" height="15" fill="rgb(248,195,53)" fg:x="146901" fg:w="1296"/><text x="11.6126%" y="639.50"></text></g><g><title>[ld-2.31.so] (3,565 samples, 0.28%)</title><rect x="11.1942%" y="645" width="0.2757%" height="15" fill="rgb(226,201,16)" fg:x="144724" fg:w="3565"/><text x="11.4442%" y="655.50"></text></g><g><title>_dl_start_final (3,639 samples, 0.28%)</title><rect x="11.1935%" y="677" width="0.2815%" height="15" fill="rgb(205,98,0)" fg:x="144715" fg:w="3639"/><text x="11.4435%" y="687.50"></text></g><g><title>_dl_sysdep_start (3,638 samples, 0.28%)</title><rect x="11.1935%" y="661" width="0.2814%" height="15" fill="rgb(214,191,48)" fg:x="144716" fg:w="3638"/><text x="11.4435%" y="671.50"></text></g><g><title>_dl_start (3,684 samples, 0.28%)</title><rect x="11.1935%" y="693" width="0.2850%" height="15" fill="rgb(237,112,39)" fg:x="144715" fg:w="3684"/><text x="11.4435%" y="703.50"></text></g><g><title>_start (3,735 samples, 0.29%)</title><rect x="11.1929%" y="709" width="0.2889%" height="15" fill="rgb(247,203,27)" fg:x="144708" fg:w="3735"/><text x="11.4429%" y="719.50"></text></g><g><title>asm_exc_page_fault (215 samples, 0.02%)</title><rect x="11.4818%" y="709" width="0.0166%" height="15" fill="rgb(235,124,28)" fg:x="148443" fg:w="215"/><text x="11.7318%" y="719.50"></text></g><g><title>__x64_sys_execve (272 samples, 0.02%)</title><rect x="11.4987%" y="677" width="0.0210%" height="15" fill="rgb(208,207,46)" fg:x="148661" fg:w="272"/><text x="11.7487%" y="687.50"></text></g><g><title>do_execveat_common (272 samples, 0.02%)</title><rect x="11.4987%" y="661" width="0.0210%" height="15" fill="rgb(234,176,4)" fg:x="148661" fg:w="272"/><text x="11.7487%" y="671.50"></text></g><g><title>bprm_execve (272 samples, 0.02%)</title><rect x="11.4987%" y="645" width="0.0210%" height="15" fill="rgb(230,133,28)" fg:x="148661" fg:w="272"/><text x="11.7487%" y="655.50"></text></g><g><title>load_elf_binary (272 samples, 0.02%)</title><rect x="11.4987%" y="629" width="0.0210%" height="15" fill="rgb(211,137,40)" fg:x="148661" fg:w="272"/><text x="11.7487%" y="639.50"></text></g><g><title>tlb_finish_mmu (135 samples, 0.01%)</title><rect x="11.5317%" y="597" width="0.0104%" height="15" fill="rgb(254,35,13)" fg:x="149088" fg:w="135"/><text x="11.7817%" y="607.50"></text></g><g><title>unmap_page_range (248 samples, 0.02%)</title><rect x="11.5425%" y="581" width="0.0192%" height="15" fill="rgb(225,49,51)" fg:x="149228" fg:w="248"/><text x="11.7925%" y="591.50"></text></g><g><title>exit_mmap (542 samples, 0.04%)</title><rect x="11.5204%" y="613" width="0.0419%" height="15" fill="rgb(251,10,15)" fg:x="148942" fg:w="542"/><text x="11.7704%" y="623.50"></text></g><g><title>unmap_vmas (261 samples, 0.02%)</title><rect x="11.5422%" y="597" width="0.0202%" height="15" fill="rgb(228,207,15)" fg:x="149223" fg:w="261"/><text x="11.7922%" y="607.50"></text></g><g><title>mmput (544 samples, 0.04%)</title><rect x="11.5204%" y="629" width="0.0421%" height="15" fill="rgb(241,99,19)" fg:x="148942" fg:w="544"/><text x="11.7704%" y="639.50"></text></g><g><title>do_syscall_64 (885 samples, 0.07%)</title><rect x="11.4987%" y="693" width="0.0685%" height="15" fill="rgb(207,104,49)" fg:x="148661" fg:w="885"/><text x="11.7487%" y="703.50"></text></g><g><title>__x64_sys_exit_group (613 samples, 0.05%)</title><rect x="11.5197%" y="677" width="0.0474%" height="15" fill="rgb(234,99,18)" fg:x="148933" fg:w="613"/><text x="11.7697%" y="687.50"></text></g><g><title>do_group_exit (613 samples, 0.05%)</title><rect x="11.5197%" y="661" width="0.0474%" height="15" fill="rgb(213,191,49)" fg:x="148933" fg:w="613"/><text x="11.7697%" y="671.50"></text></g><g><title>do_exit (613 samples, 0.05%)</title><rect x="11.5197%" y="645" width="0.0474%" height="15" fill="rgb(210,226,19)" fg:x="148933" fg:w="613"/><text x="11.7697%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (888 samples, 0.07%)</title><rect x="11.4985%" y="709" width="0.0687%" height="15" fill="rgb(229,97,18)" fg:x="148659" fg:w="888"/><text x="11.7485%" y="719.50"></text></g><g><title>sed (7,059 samples, 0.55%)</title><rect x="11.0220%" y="725" width="0.5460%" height="15" fill="rgb(211,167,15)" fg:x="142498" fg:w="7059"/><text x="11.2720%" y="735.50"></text></g><g><title>JavaCalls::call_helper (130 samples, 0.01%)</title><rect x="11.5715%" y="709" width="0.0101%" height="15" fill="rgb(210,169,34)" fg:x="149602" fg:w="130"/><text x="11.8215%" y="719.50"></text></g><g><title>HandleMark::initialize (130 samples, 0.01%)</title><rect x="11.5715%" y="693" width="0.0101%" height="15" fill="rgb(241,121,31)" fg:x="149602" fg:w="130"/><text x="11.8215%" y="703.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (133 samples, 0.01%)</title><rect x="11.5849%" y="693" width="0.0103%" height="15" fill="rgb(232,40,11)" fg:x="149776" fg:w="133"/><text x="11.8349%" y="703.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (178 samples, 0.01%)</title><rect x="11.5952%" y="693" width="0.0138%" height="15" fill="rgb(205,86,26)" fg:x="149909" fg:w="178"/><text x="11.8452%" y="703.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;5292148ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)0, 5292148ul&gt;::oop_access_barrier (150 samples, 0.01%)</title><rect x="11.6091%" y="693" width="0.0116%" height="15" fill="rgb(231,126,28)" fg:x="150088" fg:w="150"/><text x="11.8591%" y="703.50"></text></g><g><title>CollectedHeap::obj_allocate (376 samples, 0.03%)</title><rect x="11.6355%" y="693" width="0.0291%" height="15" fill="rgb(219,221,18)" fg:x="150430" fg:w="376"/><text x="11.8855%" y="703.50"></text></g><g><title>HandleMark::pop_and_restore (176 samples, 0.01%)</title><rect x="11.6716%" y="693" width="0.0136%" height="15" fill="rgb(211,40,0)" fg:x="150897" fg:w="176"/><text x="11.9216%" y="703.50"></text></g><g><title>InstanceKlass::initialize (146 samples, 0.01%)</title><rect x="11.6917%" y="693" width="0.0113%" height="15" fill="rgb(239,85,43)" fg:x="151157" fg:w="146"/><text x="11.9417%" y="703.50"></text></g><g><title>JNIHandleBlock::allocate_block (414 samples, 0.03%)</title><rect x="11.7060%" y="693" width="0.0320%" height="15" fill="rgb(231,55,21)" fg:x="151341" fg:w="414"/><text x="11.9560%" y="703.50"></text></g><g><title>JNIHandles::make_local (134 samples, 0.01%)</title><rect x="11.7427%" y="693" width="0.0104%" height="15" fill="rgb(225,184,43)" fg:x="151816" fg:w="134"/><text x="11.9927%" y="703.50"></text></g><g><title>JavaCalls::call (146 samples, 0.01%)</title><rect x="11.7648%" y="693" width="0.0113%" height="15" fill="rgb(251,158,41)" fg:x="152101" fg:w="146"/><text x="12.0148%" y="703.50"></text></g><g><title>JavaCalls::call_helper (206 samples, 0.02%)</title><rect x="11.7761%" y="693" width="0.0159%" height="15" fill="rgb(234,159,37)" fg:x="152247" fg:w="206"/><text x="12.0261%" y="703.50"></text></g><g><title>JavaThread::can_call_java (289 samples, 0.02%)</title><rect x="11.7920%" y="693" width="0.0224%" height="15" fill="rgb(216,204,22)" fg:x="152453" fg:w="289"/><text x="12.0420%" y="703.50"></text></g><g><title>JavaThread::is_Java_thread (342 samples, 0.03%)</title><rect x="11.8164%" y="693" width="0.0265%" height="15" fill="rgb(214,17,3)" fg:x="152769" fg:w="342"/><text x="12.0664%" y="703.50"></text></g><g><title>MemAllocator::allocate (191 samples, 0.01%)</title><rect x="11.8492%" y="693" width="0.0148%" height="15" fill="rgb(212,111,17)" fg:x="153193" fg:w="191"/><text x="12.0992%" y="703.50"></text></g><g><title>ThreadHeapSampler::enabled (250 samples, 0.02%)</title><rect x="11.8744%" y="693" width="0.0193%" height="15" fill="rgb(221,157,24)" fg:x="153518" fg:w="250"/><text x="12.1244%" y="703.50"></text></g><g><title>ThreadShadow::clear_pending_exception (185 samples, 0.01%)</title><rect x="11.8939%" y="693" width="0.0143%" height="15" fill="rgb(252,16,13)" fg:x="153771" fg:w="185"/><text x="12.1439%" y="703.50"></text></g><g><title>ThreadStateTransition::transition_from_native (240 samples, 0.02%)</title><rect x="11.9148%" y="693" width="0.0186%" height="15" fill="rgb(221,62,2)" fg:x="154041" fg:w="240"/><text x="12.1648%" y="703.50"></text></g><g><title>__GI___xstat (167 samples, 0.01%)</title><rect x="11.9592%" y="693" width="0.0129%" height="15" fill="rgb(247,87,22)" fg:x="154615" fg:w="167"/><text x="12.2092%" y="703.50"></text></g><g><title>__GI_unlinkat (198 samples, 0.02%)</title><rect x="11.9722%" y="693" width="0.0153%" height="15" fill="rgb(215,73,9)" fg:x="154783" fg:w="198"/><text x="12.2222%" y="703.50"></text></g><g><title>_int_free (169 samples, 0.01%)</title><rect x="11.9928%" y="693" width="0.0131%" height="15" fill="rgb(207,175,33)" fg:x="155049" fg:w="169"/><text x="12.2428%" y="703.50"></text></g><g><title>check_bounds (298 samples, 0.02%)</title><rect x="12.0156%" y="693" width="0.0230%" height="15" fill="rgb(243,129,54)" fg:x="155344" fg:w="298"/><text x="12.2656%" y="703.50"></text></g><g><title>jni_NewObjectV (273 samples, 0.02%)</title><rect x="12.0660%" y="693" width="0.0211%" height="15" fill="rgb(227,119,45)" fg:x="155995" fg:w="273"/><text x="12.3160%" y="703.50"></text></g><g><title>os::os_exception_wrapper (223 samples, 0.02%)</title><rect x="12.1207%" y="693" width="0.0172%" height="15" fill="rgb(205,109,36)" fg:x="156703" fg:w="223"/><text x="12.3707%" y="703.50"></text></g><g><title>[anon] (7,259 samples, 0.56%)</title><rect x="11.5837%" y="709" width="0.5615%" height="15" fill="rgb(205,6,39)" fg:x="149760" fg:w="7259"/><text x="11.8337%" y="719.50"></text></g><g><title>[libc-2.31.so] (191 samples, 0.01%)</title><rect x="12.8405%" y="693" width="0.0148%" height="15" fill="rgb(221,32,16)" fg:x="166009" fg:w="191"/><text x="13.0905%" y="703.50"></text></g><g><title>__x64_sys_close (396 samples, 0.03%)</title><rect x="12.8603%" y="645" width="0.0306%" height="15" fill="rgb(228,144,50)" fg:x="166265" fg:w="396"/><text x="13.1103%" y="655.50"></text></g><g><title>filp_close (282 samples, 0.02%)</title><rect x="12.8691%" y="629" width="0.0218%" height="15" fill="rgb(229,201,53)" fg:x="166379" fg:w="282"/><text x="13.1191%" y="639.50"></text></g><g><title>do_syscall_64 (424 samples, 0.03%)</title><rect x="12.8588%" y="661" width="0.0328%" height="15" fill="rgb(249,153,27)" fg:x="166245" fg:w="424"/><text x="13.1088%" y="671.50"></text></g><g><title>btrfs_release_file (348 samples, 0.03%)</title><rect x="12.9035%" y="597" width="0.0269%" height="15" fill="rgb(227,106,25)" fg:x="166823" fg:w="348"/><text x="13.1535%" y="607.50"></text></g><g><title>kfree (279 samples, 0.02%)</title><rect x="12.9088%" y="581" width="0.0216%" height="15" fill="rgb(230,65,29)" fg:x="166892" fg:w="279"/><text x="13.1588%" y="591.50"></text></g><g><title>__fput (668 samples, 0.05%)</title><rect x="12.8985%" y="613" width="0.0517%" height="15" fill="rgb(221,57,46)" fg:x="166759" fg:w="668"/><text x="13.1485%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,263 samples, 0.10%)</title><rect x="12.8582%" y="677" width="0.0977%" height="15" fill="rgb(229,161,17)" fg:x="166237" fg:w="1263"/><text x="13.1082%" y="687.50"></text></g><g><title>syscall_exit_to_user_mode (831 samples, 0.06%)</title><rect x="12.8916%" y="661" width="0.0643%" height="15" fill="rgb(222,213,11)" fg:x="166669" fg:w="831"/><text x="13.1416%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (828 samples, 0.06%)</title><rect x="12.8918%" y="645" width="0.0640%" height="15" fill="rgb(235,35,13)" fg:x="166672" fg:w="828"/><text x="13.1418%" y="655.50"></text></g><g><title>task_work_run (761 samples, 0.06%)</title><rect x="12.8970%" y="629" width="0.0589%" height="15" fill="rgb(233,158,34)" fg:x="166739" fg:w="761"/><text x="13.1470%" y="639.50"></text></g><g><title>__GI___close_nocancel (1,309 samples, 0.10%)</title><rect x="12.8553%" y="693" width="0.1012%" height="15" fill="rgb(215,151,48)" fg:x="166200" fg:w="1309"/><text x="13.1053%" y="703.50"></text></g><g><title>__GI___libc_free (1,212 samples, 0.09%)</title><rect x="12.9565%" y="693" width="0.0937%" height="15" fill="rgb(229,84,14)" fg:x="167509" fg:w="1212"/><text x="13.2065%" y="703.50"></text></g><g><title>entry_SYSCALL_64 (302 samples, 0.02%)</title><rect x="13.0776%" y="677" width="0.0234%" height="15" fill="rgb(229,68,14)" fg:x="169074" fg:w="302"/><text x="13.3276%" y="687.50"></text></g><g><title>__schedule (192 samples, 0.01%)</title><rect x="13.1982%" y="581" width="0.0149%" height="15" fill="rgb(243,106,26)" fg:x="170633" fg:w="192"/><text x="13.4482%" y="591.50"></text></g><g><title>_cond_resched (277 samples, 0.02%)</title><rect x="13.1943%" y="597" width="0.0214%" height="15" fill="rgb(206,45,38)" fg:x="170583" fg:w="277"/><text x="13.4443%" y="607.50"></text></g><g><title>_raw_spin_lock (247 samples, 0.02%)</title><rect x="13.2420%" y="581" width="0.0191%" height="15" fill="rgb(226,6,15)" fg:x="171200" fg:w="247"/><text x="13.4920%" y="591.50"></text></g><g><title>lockref_put_or_lock (464 samples, 0.04%)</title><rect x="13.2253%" y="597" width="0.0359%" height="15" fill="rgb(232,22,54)" fg:x="170984" fg:w="464"/><text x="13.4753%" y="607.50"></text></g><g><title>dput (1,298 samples, 0.10%)</title><rect x="13.1621%" y="613" width="0.1004%" height="15" fill="rgb(229,222,32)" fg:x="170167" fg:w="1298"/><text x="13.4121%" y="623.50"></text></g><g><title>_raw_spin_lock (153 samples, 0.01%)</title><rect x="13.3227%" y="533" width="0.0118%" height="15" fill="rgb(228,62,29)" fg:x="172243" fg:w="153"/><text x="13.5727%" y="543.50"></text></g><g><title>__d_lookup (531 samples, 0.04%)</title><rect x="13.2940%" y="549" width="0.0411%" height="15" fill="rgb(251,103,34)" fg:x="171872" fg:w="531"/><text x="13.5440%" y="559.50"></text></g><g><title>__lookup_hash (672 samples, 0.05%)</title><rect x="13.2833%" y="597" width="0.0520%" height="15" fill="rgb(233,12,30)" fg:x="171733" fg:w="672"/><text x="13.5333%" y="607.50"></text></g><g><title>lookup_dcache (627 samples, 0.05%)</title><rect x="13.2867%" y="581" width="0.0485%" height="15" fill="rgb(238,52,0)" fg:x="171778" fg:w="627"/><text x="13.5367%" y="591.50"></text></g><g><title>d_lookup (594 samples, 0.05%)</title><rect x="13.2893%" y="565" width="0.0459%" height="15" fill="rgb(223,98,5)" fg:x="171811" fg:w="594"/><text x="13.5393%" y="575.50"></text></g><g><title>down_write (191 samples, 0.01%)</title><rect x="13.3353%" y="597" width="0.0148%" height="15" fill="rgb(228,75,37)" fg:x="172406" fg:w="191"/><text x="13.5853%" y="607.50"></text></g><g><title>__legitimize_mnt (190 samples, 0.01%)</title><rect x="13.3900%" y="517" width="0.0147%" height="15" fill="rgb(205,115,49)" fg:x="173113" fg:w="190"/><text x="13.6400%" y="527.50"></text></g><g><title>__legitimize_path (325 samples, 0.03%)</title><rect x="13.3873%" y="533" width="0.0251%" height="15" fill="rgb(250,154,43)" fg:x="173078" fg:w="325"/><text x="13.6373%" y="543.50"></text></g><g><title>complete_walk (479 samples, 0.04%)</title><rect x="13.3788%" y="565" width="0.0370%" height="15" fill="rgb(226,43,29)" fg:x="172968" fg:w="479"/><text x="13.6288%" y="575.50"></text></g><g><title>try_to_unlazy (441 samples, 0.03%)</title><rect x="13.3817%" y="549" width="0.0341%" height="15" fill="rgb(249,228,39)" fg:x="173006" fg:w="441"/><text x="13.6317%" y="559.50"></text></g><g><title>inode_permission.part.0 (3,107 samples, 0.24%)</title><rect x="13.6542%" y="549" width="0.2403%" height="15" fill="rgb(216,79,43)" fg:x="176528" fg:w="3107"/><text x="13.9042%" y="559.50"></text></g><g><title>generic_permission (662 samples, 0.05%)</title><rect x="13.8433%" y="533" width="0.0512%" height="15" fill="rgb(228,95,12)" fg:x="178973" fg:w="662"/><text x="14.0933%" y="543.50"></text></g><g><title>security_inode_permission (335 samples, 0.03%)</title><rect x="13.8945%" y="549" width="0.0259%" height="15" fill="rgb(249,221,15)" fg:x="179635" fg:w="335"/><text x="14.1445%" y="559.50"></text></g><g><title>__d_lookup_rcu (4,198 samples, 0.32%)</title><rect x="14.0780%" y="517" width="0.3247%" height="15" fill="rgb(233,34,13)" fg:x="182008" fg:w="4198"/><text x="14.3280%" y="527.50"></text></g><g><title>lookup_fast (5,119 samples, 0.40%)</title><rect x="14.0071%" y="533" width="0.3959%" height="15" fill="rgb(214,103,39)" fg:x="181091" fg:w="5119"/><text x="14.2571%" y="543.50"></text></g><g><title>link_path_walk.part.0 (14,005 samples, 1.08%)</title><rect x="13.4158%" y="565" width="1.0833%" height="15" fill="rgb(251,126,39)" fg:x="173447" fg:w="14005"/><text x="13.6658%" y="575.50"></text></g><g><title>walk_component (7,482 samples, 0.58%)</title><rect x="13.9204%" y="549" width="0.5787%" height="15" fill="rgb(214,216,36)" fg:x="179970" fg:w="7482"/><text x="14.1704%" y="559.50"></text></g><g><title>step_into (1,242 samples, 0.10%)</title><rect x="14.4030%" y="533" width="0.0961%" height="15" fill="rgb(220,221,8)" fg:x="186210" fg:w="1242"/><text x="14.6530%" y="543.50"></text></g><g><title>path_init (363 samples, 0.03%)</title><rect x="14.4991%" y="565" width="0.0281%" height="15" fill="rgb(240,216,3)" fg:x="187452" fg:w="363"/><text x="14.7491%" y="575.50"></text></g><g><title>nd_jump_root (211 samples, 0.02%)</title><rect x="14.5109%" y="549" width="0.0163%" height="15" fill="rgb(232,218,17)" fg:x="187604" fg:w="211"/><text x="14.7609%" y="559.50"></text></g><g><title>set_root (156 samples, 0.01%)</title><rect x="14.5151%" y="533" width="0.0121%" height="15" fill="rgb(229,163,45)" fg:x="187659" fg:w="156"/><text x="14.7651%" y="543.50"></text></g><g><title>filename_parentat (15,287 samples, 1.18%)</title><rect x="13.3501%" y="597" width="1.1824%" height="15" fill="rgb(231,110,42)" fg:x="172597" fg:w="15287"/><text x="13.6001%" y="607.50"></text></g><g><title>path_parentat (15,008 samples, 1.16%)</title><rect x="13.3717%" y="581" width="1.1608%" height="15" fill="rgb(208,170,48)" fg:x="172876" fg:w="15008"/><text x="13.6217%" y="591.50"></text></g><g><title>kmem_cache_free (419 samples, 0.03%)</title><rect x="14.5325%" y="597" width="0.0324%" height="15" fill="rgb(239,116,25)" fg:x="187884" fg:w="419"/><text x="14.7825%" y="607.50"></text></g><g><title>__mnt_want_write (151 samples, 0.01%)</title><rect x="14.5874%" y="581" width="0.0117%" height="15" fill="rgb(219,200,50)" fg:x="188594" fg:w="151"/><text x="14.8374%" y="591.50"></text></g><g><title>mnt_want_write (524 samples, 0.04%)</title><rect x="14.5649%" y="597" width="0.0405%" height="15" fill="rgb(245,200,0)" fg:x="188303" fg:w="524"/><text x="14.8149%" y="607.50"></text></g><g><title>filename_create (17,421 samples, 1.35%)</title><rect x="13.2625%" y="613" width="1.3475%" height="15" fill="rgb(245,119,33)" fg:x="171465" fg:w="17421"/><text x="13.5125%" y="623.50"></text></g><g><title>kmem_cache_free (453 samples, 0.04%)</title><rect x="14.6268%" y="597" width="0.0350%" height="15" fill="rgb(231,125,12)" fg:x="189103" fg:w="453"/><text x="14.8768%" y="607.50"></text></g><g><title>__legitimize_mnt (243 samples, 0.02%)</title><rect x="14.6859%" y="533" width="0.0188%" height="15" fill="rgb(216,96,41)" fg:x="189867" fg:w="243"/><text x="14.9359%" y="543.50"></text></g><g><title>__legitimize_path (404 samples, 0.03%)</title><rect x="14.6823%" y="549" width="0.0312%" height="15" fill="rgb(248,43,45)" fg:x="189820" fg:w="404"/><text x="14.9323%" y="559.50"></text></g><g><title>complete_walk (574 samples, 0.04%)</title><rect x="14.6738%" y="581" width="0.0444%" height="15" fill="rgb(217,222,7)" fg:x="189710" fg:w="574"/><text x="14.9238%" y="591.50"></text></g><g><title>try_to_unlazy (528 samples, 0.04%)</title><rect x="14.6773%" y="565" width="0.0408%" height="15" fill="rgb(233,28,6)" fg:x="189756" fg:w="528"/><text x="14.9273%" y="575.50"></text></g><g><title>btrfs_permission (186 samples, 0.01%)</title><rect x="15.2577%" y="549" width="0.0144%" height="15" fill="rgb(231,218,15)" fg:x="197260" fg:w="186"/><text x="15.5077%" y="559.50"></text></g><g><title>inode_permission.part.0 (3,964 samples, 0.31%)</title><rect x="15.0414%" y="565" width="0.3066%" height="15" fill="rgb(226,171,48)" fg:x="194463" fg:w="3964"/><text x="15.2914%" y="575.50"></text></g><g><title>generic_permission (981 samples, 0.08%)</title><rect x="15.2721%" y="549" width="0.0759%" height="15" fill="rgb(235,201,9)" fg:x="197446" fg:w="981"/><text x="15.5221%" y="559.50"></text></g><g><title>security_inode_permission (449 samples, 0.03%)</title><rect x="15.3480%" y="565" width="0.0347%" height="15" fill="rgb(217,80,15)" fg:x="198427" fg:w="449"/><text x="15.5980%" y="575.50"></text></g><g><title>__d_lookup_rcu (5,590 samples, 0.43%)</title><rect x="15.5806%" y="533" width="0.4324%" height="15" fill="rgb(219,152,8)" fg:x="201434" fg:w="5590"/><text x="15.8306%" y="543.50"></text></g><g><title>lookup_fast (6,796 samples, 0.53%)</title><rect x="15.4882%" y="549" width="0.5257%" height="15" fill="rgb(243,107,38)" fg:x="200240" fg:w="6796"/><text x="15.7382%" y="559.50"></text></g><g><title>page_put_link (282 samples, 0.02%)</title><rect x="16.0139%" y="549" width="0.0218%" height="15" fill="rgb(231,17,5)" fg:x="207036" fg:w="282"/><text x="16.2639%" y="559.50"></text></g><g><title>__lookup_mnt (210 samples, 0.02%)</title><rect x="16.1716%" y="533" width="0.0162%" height="15" fill="rgb(209,25,54)" fg:x="209075" fg:w="210"/><text x="16.4216%" y="543.50"></text></g><g><title>atime_needs_update (288 samples, 0.02%)</title><rect x="16.1883%" y="533" width="0.0223%" height="15" fill="rgb(219,0,2)" fg:x="209291" fg:w="288"/><text x="16.4383%" y="543.50"></text></g><g><title>current_time (177 samples, 0.01%)</title><rect x="16.1969%" y="517" width="0.0137%" height="15" fill="rgb(246,9,5)" fg:x="209402" fg:w="177"/><text x="16.4469%" y="527.50"></text></g><g><title>page_get_link (1,149 samples, 0.09%)</title><rect x="16.2157%" y="533" width="0.0889%" height="15" fill="rgb(226,159,4)" fg:x="209645" fg:w="1149"/><text x="16.4657%" y="543.50"></text></g><g><title>pagecache_get_page (1,059 samples, 0.08%)</title><rect x="16.2227%" y="517" width="0.0819%" height="15" fill="rgb(219,175,34)" fg:x="209735" fg:w="1059"/><text x="16.4727%" y="527.50"></text></g><g><title>find_get_entry (946 samples, 0.07%)</title><rect x="16.2314%" y="501" width="0.0732%" height="15" fill="rgb(236,10,46)" fg:x="209848" fg:w="946"/><text x="16.4814%" y="511.50"></text></g><g><title>xas_load (224 samples, 0.02%)</title><rect x="16.2872%" y="485" width="0.0173%" height="15" fill="rgb(240,211,16)" fg:x="210570" fg:w="224"/><text x="16.5372%" y="495.50"></text></g><g><title>xas_start (213 samples, 0.02%)</title><rect x="16.2881%" y="469" width="0.0165%" height="15" fill="rgb(205,3,43)" fg:x="210581" fg:w="213"/><text x="16.5381%" y="479.50"></text></g><g><title>link_path_walk.part.0 (20,536 samples, 1.59%)</title><rect x="14.7182%" y="581" width="1.5884%" height="15" fill="rgb(245,7,22)" fg:x="190284" fg:w="20536"/><text x="14.9682%" y="591.50"></text></g><g><title>walk_component (11,944 samples, 0.92%)</title><rect x="15.3827%" y="565" width="0.9238%" height="15" fill="rgb(239,132,32)" fg:x="198876" fg:w="11944"/><text x="15.6327%" y="575.50"></text></g><g><title>step_into (3,501 samples, 0.27%)</title><rect x="16.0358%" y="549" width="0.2708%" height="15" fill="rgb(228,202,34)" fg:x="207319" fg:w="3501"/><text x="16.2858%" y="559.50"></text></g><g><title>path_init (556 samples, 0.04%)</title><rect x="16.3066%" y="581" width="0.0430%" height="15" fill="rgb(254,200,22)" fg:x="210820" fg:w="556"/><text x="16.5566%" y="591.50"></text></g><g><title>nd_jump_root (366 samples, 0.03%)</title><rect x="16.3213%" y="565" width="0.0283%" height="15" fill="rgb(219,10,39)" fg:x="211010" fg:w="366"/><text x="16.5713%" y="575.50"></text></g><g><title>set_root (300 samples, 0.02%)</title><rect x="16.3264%" y="549" width="0.0232%" height="15" fill="rgb(226,210,39)" fg:x="211076" fg:w="300"/><text x="16.5764%" y="559.50"></text></g><g><title>terminate_walk (130 samples, 0.01%)</title><rect x="16.3496%" y="581" width="0.0101%" height="15" fill="rgb(208,219,16)" fg:x="211376" fg:w="130"/><text x="16.5996%" y="591.50"></text></g><g><title>__d_lookup_rcu (349 samples, 0.03%)</title><rect x="16.3670%" y="549" width="0.0270%" height="15" fill="rgb(216,158,51)" fg:x="211601" fg:w="349"/><text x="16.6170%" y="559.50"></text></g><g><title>lookup_fast (392 samples, 0.03%)</title><rect x="16.3637%" y="565" width="0.0303%" height="15" fill="rgb(233,14,44)" fg:x="211559" fg:w="392"/><text x="16.6137%" y="575.50"></text></g><g><title>path_lookupat (22,454 samples, 1.74%)</title><rect x="14.6618%" y="597" width="1.7368%" height="15" fill="rgb(237,97,39)" fg:x="189556" fg:w="22454"/><text x="14.9118%" y="607.50"></text></g><g><title>walk_component (504 samples, 0.04%)</title><rect x="16.3596%" y="581" width="0.0390%" height="15" fill="rgb(218,198,43)" fg:x="211506" fg:w="504"/><text x="16.6096%" y="591.50"></text></g><g><title>filename_lookup (23,157 samples, 1.79%)</title><rect x="14.6100%" y="613" width="1.7912%" height="15" fill="rgb(231,104,20)" fg:x="188886" fg:w="23157"/><text x="14.8600%" y="623.50">f..</text></g><g><title>getname_flags (213 samples, 0.02%)</title><rect x="16.4012%" y="613" width="0.0165%" height="15" fill="rgb(254,36,13)" fg:x="212043" fg:w="213"/><text x="16.6512%" y="623.50"></text></g><g><title>memset_erms (1,944 samples, 0.15%)</title><rect x="16.4802%" y="581" width="0.1504%" height="15" fill="rgb(248,14,50)" fg:x="213065" fg:w="1944"/><text x="16.7302%" y="591.50"></text></g><g><title>_cond_resched (161 samples, 0.01%)</title><rect x="16.6474%" y="565" width="0.0125%" height="15" fill="rgb(217,107,29)" fg:x="215226" fg:w="161"/><text x="16.8974%" y="575.50"></text></g><g><title>kmem_cache_alloc (2,941 samples, 0.23%)</title><rect x="16.4340%" y="597" width="0.2275%" height="15" fill="rgb(251,169,33)" fg:x="212467" fg:w="2941"/><text x="16.6840%" y="607.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (399 samples, 0.03%)</title><rect x="16.6306%" y="581" width="0.0309%" height="15" fill="rgb(217,108,32)" fg:x="215009" fg:w="399"/><text x="16.8806%" y="591.50"></text></g><g><title>__check_heap_object (253 samples, 0.02%)</title><rect x="16.7994%" y="565" width="0.0196%" height="15" fill="rgb(219,66,42)" fg:x="217192" fg:w="253"/><text x="17.0494%" y="575.50"></text></g><g><title>__virt_addr_valid (489 samples, 0.04%)</title><rect x="16.8190%" y="565" width="0.0378%" height="15" fill="rgb(206,180,7)" fg:x="217445" fg:w="489"/><text x="17.0690%" y="575.50"></text></g><g><title>__check_object_size (1,036 samples, 0.08%)</title><rect x="16.7809%" y="581" width="0.0801%" height="15" fill="rgb(208,226,31)" fg:x="216952" fg:w="1036"/><text x="17.0309%" y="591.50"></text></g><g><title>getname_flags.part.0 (5,741 samples, 0.44%)</title><rect x="16.4177%" y="613" width="0.4441%" height="15" fill="rgb(218,26,49)" fg:x="212256" fg:w="5741"/><text x="16.6677%" y="623.50"></text></g><g><title>strncpy_from_user (2,589 samples, 0.20%)</title><rect x="16.6615%" y="597" width="0.2003%" height="15" fill="rgb(233,197,48)" fg:x="215408" fg:w="2589"/><text x="16.9115%" y="607.50"></text></g><g><title>btrfs_permission (226 samples, 0.02%)</title><rect x="16.8971%" y="581" width="0.0175%" height="15" fill="rgb(252,181,51)" fg:x="218455" fg:w="226"/><text x="17.1471%" y="591.50"></text></g><g><title>inode_permission.part.0 (379 samples, 0.03%)</title><rect x="16.8869%" y="597" width="0.0293%" height="15" fill="rgb(253,90,19)" fg:x="218322" fg:w="379"/><text x="17.1369%" y="607.50"></text></g><g><title>may_linkat (713 samples, 0.06%)</title><rect x="16.8618%" y="613" width="0.0551%" height="15" fill="rgb(215,171,30)" fg:x="217998" fg:w="713"/><text x="17.1118%" y="623.50"></text></g><g><title>mnt_drop_write (223 samples, 0.02%)</title><rect x="16.9169%" y="613" width="0.0172%" height="15" fill="rgb(214,222,9)" fg:x="218711" fg:w="223"/><text x="17.1669%" y="623.50"></text></g><g><title>mntput_no_expire (165 samples, 0.01%)</title><rect x="16.9364%" y="613" width="0.0128%" height="15" fill="rgb(223,3,22)" fg:x="218962" fg:w="165"/><text x="17.1864%" y="623.50"></text></g><g><title>apparmor_path_link (408 samples, 0.03%)</title><rect x="16.9635%" y="597" width="0.0316%" height="15" fill="rgb(225,196,46)" fg:x="219313" fg:w="408"/><text x="17.2135%" y="607.50"></text></g><g><title>security_path_link (1,266 samples, 0.10%)</title><rect x="16.9491%" y="613" width="0.0979%" height="15" fill="rgb(209,110,37)" fg:x="219127" fg:w="1266"/><text x="17.1991%" y="623.50"></text></g><g><title>tomoyo_path_link (672 samples, 0.05%)</title><rect x="16.9951%" y="597" width="0.0520%" height="15" fill="rgb(249,89,12)" fg:x="219721" fg:w="672"/><text x="17.2451%" y="607.50"></text></g><g><title>tomoyo_path2_perm (631 samples, 0.05%)</title><rect x="16.9982%" y="581" width="0.0488%" height="15" fill="rgb(226,27,33)" fg:x="219762" fg:w="631"/><text x="17.2482%" y="591.50"></text></g><g><title>tomoyo_init_request_info (431 samples, 0.03%)</title><rect x="17.0137%" y="565" width="0.0333%" height="15" fill="rgb(213,82,22)" fg:x="219962" fg:w="431"/><text x="17.2637%" y="575.50"></text></g><g><title>tomoyo_domain (246 samples, 0.02%)</title><rect x="17.0280%" y="549" width="0.0190%" height="15" fill="rgb(248,140,0)" fg:x="220147" fg:w="246"/><text x="17.2780%" y="559.50"></text></g><g><title>up_write (160 samples, 0.01%)</title><rect x="17.0470%" y="613" width="0.0124%" height="15" fill="rgb(228,106,3)" fg:x="220393" fg:w="160"/><text x="17.2970%" y="623.50"></text></g><g><title>btrfs_create_pending_block_groups (203 samples, 0.02%)</title><rect x="17.2461%" y="565" width="0.0157%" height="15" fill="rgb(209,23,37)" fg:x="222967" fg:w="203"/><text x="17.4961%" y="575.50"></text></g><g><title>_raw_spin_lock (844 samples, 0.07%)</title><rect x="17.3186%" y="533" width="0.0653%" height="15" fill="rgb(241,93,50)" fg:x="223904" fg:w="844"/><text x="17.5686%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (220 samples, 0.02%)</title><rect x="17.3669%" y="517" width="0.0170%" height="15" fill="rgb(253,46,43)" fg:x="224528" fg:w="220"/><text x="17.6169%" y="527.50"></text></g><g><title>btrfs_trans_release_metadata (1,547 samples, 0.12%)</title><rect x="17.2781%" y="565" width="0.1197%" height="15" fill="rgb(226,206,43)" fg:x="223380" fg:w="1547"/><text x="17.5281%" y="575.50"></text></g><g><title>btrfs_block_rsv_release (1,376 samples, 0.11%)</title><rect x="17.2913%" y="549" width="0.1064%" height="15" fill="rgb(217,54,7)" fg:x="223551" fg:w="1376"/><text x="17.5413%" y="559.50"></text></g><g><title>btrfs_try_granting_tickets (133 samples, 0.01%)</title><rect x="17.3875%" y="533" width="0.0103%" height="15" fill="rgb(223,5,52)" fg:x="224794" fg:w="133"/><text x="17.6375%" y="543.50"></text></g><g><title>__btrfs_end_transaction (3,410 samples, 0.26%)</title><rect x="17.1723%" y="581" width="0.2638%" height="15" fill="rgb(206,52,46)" fg:x="222012" fg:w="3410"/><text x="17.4223%" y="591.50"></text></g><g><title>kmem_cache_free (495 samples, 0.04%)</title><rect x="17.3977%" y="565" width="0.0383%" height="15" fill="rgb(253,136,11)" fg:x="224927" fg:w="495"/><text x="17.6477%" y="575.50"></text></g><g><title>__radix_tree_lookup (221 samples, 0.02%)</title><rect x="17.4674%" y="565" width="0.0171%" height="15" fill="rgb(208,106,33)" fg:x="225828" fg:w="221"/><text x="17.7174%" y="575.50"></text></g><g><title>balance_dirty_pages_ratelimited (631 samples, 0.05%)</title><rect x="17.4364%" y="581" width="0.0488%" height="15" fill="rgb(206,54,4)" fg:x="225427" fg:w="631"/><text x="17.6864%" y="591.50"></text></g><g><title>btrfs_comp_cpu_keys (449 samples, 0.03%)</title><rect x="17.6418%" y="517" width="0.0347%" height="15" fill="rgb(213,3,15)" fg:x="228082" fg:w="449"/><text x="17.8918%" y="527.50"></text></g><g><title>__btrfs_add_delayed_item (1,448 samples, 0.11%)</title><rect x="17.5841%" y="533" width="0.1120%" height="15" fill="rgb(252,211,39)" fg:x="227337" fg:w="1448"/><text x="17.8341%" y="543.50"></text></g><g><title>rb_insert_color (254 samples, 0.02%)</title><rect x="17.6765%" y="517" width="0.0196%" height="15" fill="rgb(223,6,36)" fg:x="228531" fg:w="254"/><text x="17.9265%" y="527.50"></text></g><g><title>__list_add_valid (294 samples, 0.02%)</title><rect x="17.7150%" y="517" width="0.0227%" height="15" fill="rgb(252,169,45)" fg:x="229029" fg:w="294"/><text x="17.9650%" y="527.50"></text></g><g><title>__list_del_entry_valid (139 samples, 0.01%)</title><rect x="17.7378%" y="517" width="0.0108%" height="15" fill="rgb(212,48,26)" fg:x="229323" fg:w="139"/><text x="17.9878%" y="527.50"></text></g><g><title>_raw_spin_lock (239 samples, 0.02%)</title><rect x="17.7491%" y="517" width="0.0185%" height="15" fill="rgb(251,102,48)" fg:x="229470" fg:w="239"/><text x="17.9991%" y="527.50"></text></g><g><title>mutex_lock (148 samples, 0.01%)</title><rect x="17.7676%" y="517" width="0.0114%" height="15" fill="rgb(243,208,16)" fg:x="229709" fg:w="148"/><text x="18.0176%" y="527.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,466 samples, 0.11%)</title><rect x="17.6961%" y="533" width="0.1134%" height="15" fill="rgb(219,96,24)" fg:x="228785" fg:w="1466"/><text x="17.9461%" y="543.50"></text></g><g><title>mutex_unlock (394 samples, 0.03%)</title><rect x="17.7791%" y="517" width="0.0305%" height="15" fill="rgb(219,33,29)" fg:x="229857" fg:w="394"/><text x="18.0291%" y="527.50"></text></g><g><title>___slab_alloc (167 samples, 0.01%)</title><rect x="17.8466%" y="501" width="0.0129%" height="15" fill="rgb(223,176,5)" fg:x="230730" fg:w="167"/><text x="18.0966%" y="511.50"></text></g><g><title>__slab_alloc (205 samples, 0.02%)</title><rect x="17.8438%" y="517" width="0.0159%" height="15" fill="rgb(228,140,14)" fg:x="230694" fg:w="205"/><text x="18.0938%" y="527.50"></text></g><g><title>_cond_resched (151 samples, 0.01%)</title><rect x="17.8953%" y="501" width="0.0117%" height="15" fill="rgb(217,179,31)" fg:x="231360" fg:w="151"/><text x="18.1453%" y="511.50"></text></g><g><title>__kmalloc (1,263 samples, 0.10%)</title><rect x="17.8095%" y="533" width="0.0977%" height="15" fill="rgb(230,9,30)" fg:x="230251" fg:w="1263"/><text x="18.0595%" y="543.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (303 samples, 0.02%)</title><rect x="17.8838%" y="517" width="0.0234%" height="15" fill="rgb(230,136,20)" fg:x="231211" fg:w="303"/><text x="18.1338%" y="527.50"></text></g><g><title>mutex_spin_on_owner (1,715 samples, 0.13%)</title><rect x="17.9106%" y="517" width="0.1327%" height="15" fill="rgb(215,210,22)" fg:x="231557" fg:w="1715"/><text x="18.1606%" y="527.50"></text></g><g><title>__mutex_lock.constprop.0 (1,884 samples, 0.15%)</title><rect x="17.9072%" y="533" width="0.1457%" height="15" fill="rgb(218,43,5)" fg:x="231514" fg:w="1884"/><text x="18.1572%" y="543.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,098 samples, 0.08%)</title><rect x="18.0536%" y="533" width="0.0849%" height="15" fill="rgb(216,11,5)" fg:x="233406" fg:w="1098"/><text x="18.3036%" y="543.50"></text></g><g><title>btrfs_block_rsv_migrate (1,013 samples, 0.08%)</title><rect x="18.0601%" y="517" width="0.0784%" height="15" fill="rgb(209,82,29)" fg:x="233491" fg:w="1013"/><text x="18.3101%" y="527.50"></text></g><g><title>_raw_spin_lock (917 samples, 0.07%)</title><rect x="18.0676%" y="501" width="0.0709%" height="15" fill="rgb(244,115,12)" fg:x="233587" fg:w="917"/><text x="18.3176%" y="511.50"></text></g><g><title>btrfs_get_or_create_delayed_node (667 samples, 0.05%)</title><rect x="18.1385%" y="533" width="0.0516%" height="15" fill="rgb(222,82,18)" fg:x="234504" fg:w="667"/><text x="18.3885%" y="543.50"></text></g><g><title>btrfs_get_delayed_node (419 samples, 0.03%)</title><rect x="18.1577%" y="517" width="0.0324%" height="15" fill="rgb(249,227,8)" fg:x="234752" fg:w="419"/><text x="18.4077%" y="527.50"></text></g><g><title>memcpy_erms (204 samples, 0.02%)</title><rect x="18.1901%" y="533" width="0.0158%" height="15" fill="rgb(253,141,45)" fg:x="235171" fg:w="204"/><text x="18.4401%" y="543.50"></text></g><g><title>mutex_lock (177 samples, 0.01%)</title><rect x="18.2059%" y="533" width="0.0137%" height="15" fill="rgb(234,184,4)" fg:x="235375" fg:w="177"/><text x="18.4559%" y="543.50"></text></g><g><title>btrfs_insert_delayed_dir_index (8,558 samples, 0.66%)</title><rect x="17.5660%" y="549" width="0.6619%" height="15" fill="rgb(218,194,23)" fg:x="227103" fg:w="8558"/><text x="17.8160%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (311 samples, 0.02%)</title><rect x="18.2280%" y="549" width="0.0241%" height="15" fill="rgb(235,66,41)" fg:x="235661" fg:w="311"/><text x="18.4780%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (189 samples, 0.01%)</title><rect x="18.2374%" y="533" width="0.0146%" height="15" fill="rgb(245,217,1)" fg:x="235783" fg:w="189"/><text x="18.4874%" y="543.50"></text></g><g><title>_raw_spin_lock (313 samples, 0.02%)</title><rect x="18.3173%" y="517" width="0.0242%" height="15" fill="rgb(229,91,1)" fg:x="236816" fg:w="313"/><text x="18.5673%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (987 samples, 0.08%)</title><rect x="18.2654%" y="533" width="0.0763%" height="15" fill="rgb(207,101,30)" fg:x="236144" fg:w="987"/><text x="18.5154%" y="543.50"></text></g><g><title>btrfs_release_path (1,379 samples, 0.11%)</title><rect x="18.2521%" y="549" width="0.1067%" height="15" fill="rgb(223,82,49)" fg:x="235972" fg:w="1379"/><text x="18.5021%" y="559.50"></text></g><g><title>release_extent_buffer (220 samples, 0.02%)</title><rect x="18.3417%" y="533" width="0.0170%" height="15" fill="rgb(218,167,17)" fg:x="237131" fg:w="220"/><text x="18.5917%" y="543.50"></text></g><g><title>btrfs_set_16 (195 samples, 0.02%)</title><rect x="18.3587%" y="549" width="0.0151%" height="15" fill="rgb(208,103,14)" fg:x="237351" fg:w="195"/><text x="18.6087%" y="559.50"></text></g><g><title>crc32c (455 samples, 0.04%)</title><rect x="18.3879%" y="549" width="0.0352%" height="15" fill="rgb(238,20,8)" fg:x="237728" fg:w="455"/><text x="18.6379%" y="559.50"></text></g><g><title>crypto_shash_update (299 samples, 0.02%)</title><rect x="18.3999%" y="533" width="0.0231%" height="15" fill="rgb(218,80,54)" fg:x="237884" fg:w="299"/><text x="18.6499%" y="543.50"></text></g><g><title>btrfs_get_32 (298 samples, 0.02%)</title><rect x="18.4361%" y="533" width="0.0230%" height="15" fill="rgb(240,144,17)" fg:x="238351" fg:w="298"/><text x="18.6861%" y="543.50"></text></g><g><title>_raw_read_lock (213 samples, 0.02%)</title><rect x="18.5660%" y="469" width="0.0165%" height="15" fill="rgb(245,27,50)" fg:x="240031" fg:w="213"/><text x="18.8160%" y="479.50"></text></g><g><title>finish_wait (263 samples, 0.02%)</title><rect x="18.5833%" y="469" width="0.0203%" height="15" fill="rgb(251,51,7)" fg:x="240254" fg:w="263"/><text x="18.8333%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (252 samples, 0.02%)</title><rect x="18.5841%" y="453" width="0.0195%" height="15" fill="rgb(245,217,29)" fg:x="240265" fg:w="252"/><text x="18.8341%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (232 samples, 0.02%)</title><rect x="18.5857%" y="437" width="0.0179%" height="15" fill="rgb(221,176,29)" fg:x="240285" fg:w="232"/><text x="18.8357%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (741 samples, 0.06%)</title><rect x="18.6116%" y="453" width="0.0573%" height="15" fill="rgb(212,180,24)" fg:x="240621" fg:w="741"/><text x="18.8616%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (681 samples, 0.05%)</title><rect x="18.6163%" y="437" width="0.0527%" height="15" fill="rgb(254,24,2)" fg:x="240681" fg:w="681"/><text x="18.8663%" y="447.50"></text></g><g><title>prepare_to_wait_event (872 samples, 0.07%)</title><rect x="18.6038%" y="469" width="0.0674%" height="15" fill="rgb(230,100,2)" fg:x="240519" fg:w="872"/><text x="18.8538%" y="479.50"></text></g><g><title>queued_read_lock_slowpath (2,541 samples, 0.20%)</title><rect x="18.6712%" y="469" width="0.1965%" height="15" fill="rgb(219,142,25)" fg:x="241391" fg:w="2541"/><text x="18.9212%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,573 samples, 0.12%)</title><rect x="18.7461%" y="453" width="0.1217%" height="15" fill="rgb(240,73,43)" fg:x="242359" fg:w="1573"/><text x="18.9961%" y="463.50"></text></g><g><title>dequeue_entity (217 samples, 0.02%)</title><rect x="18.8836%" y="421" width="0.0168%" height="15" fill="rgb(214,114,15)" fg:x="244137" fg:w="217"/><text x="19.1336%" y="431.50"></text></g><g><title>dequeue_task_fair (267 samples, 0.02%)</title><rect x="18.8803%" y="437" width="0.0207%" height="15" fill="rgb(207,130,4)" fg:x="244094" fg:w="267"/><text x="19.1303%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (587 samples, 0.05%)</title><rect x="18.9046%" y="421" width="0.0454%" height="15" fill="rgb(221,25,40)" fg:x="244408" fg:w="587"/><text x="19.1546%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (576 samples, 0.04%)</title><rect x="18.9054%" y="405" width="0.0446%" height="15" fill="rgb(241,184,7)" fg:x="244419" fg:w="576"/><text x="19.1554%" y="415.50"></text></g><g><title>native_write_msr (559 samples, 0.04%)</title><rect x="18.9067%" y="389" width="0.0432%" height="15" fill="rgb(235,159,4)" fg:x="244436" fg:w="559"/><text x="19.1567%" y="399.50"></text></g><g><title>finish_task_switch (655 samples, 0.05%)</title><rect x="18.9009%" y="437" width="0.0507%" height="15" fill="rgb(214,87,48)" fg:x="244361" fg:w="655"/><text x="19.1509%" y="447.50"></text></g><g><title>psi_task_change (217 samples, 0.02%)</title><rect x="18.9613%" y="437" width="0.0168%" height="15" fill="rgb(246,198,24)" fg:x="245142" fg:w="217"/><text x="19.2113%" y="447.50"></text></g><g><title>psi_group_change (166 samples, 0.01%)</title><rect x="18.9653%" y="421" width="0.0128%" height="15" fill="rgb(209,66,40)" fg:x="245193" fg:w="166"/><text x="19.2153%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (5,547 samples, 0.43%)</title><rect x="18.5536%" y="485" width="0.4291%" height="15" fill="rgb(233,147,39)" fg:x="239870" fg:w="5547"/><text x="18.8036%" y="495.50"></text></g><g><title>schedule (1,485 samples, 0.11%)</title><rect x="18.8677%" y="469" width="0.1149%" height="15" fill="rgb(231,145,52)" fg:x="243932" fg:w="1485"/><text x="19.1177%" y="479.50"></text></g><g><title>__schedule (1,471 samples, 0.11%)</title><rect x="18.8688%" y="453" width="0.1138%" height="15" fill="rgb(206,20,26)" fg:x="243946" fg:w="1471"/><text x="19.1188%" y="463.50"></text></g><g><title>__btrfs_read_lock_root_node (5,968 samples, 0.46%)</title><rect x="18.5503%" y="501" width="0.4616%" height="15" fill="rgb(238,220,4)" fg:x="239828" fg:w="5968"/><text x="18.8003%" y="511.50"></text></g><g><title>btrfs_root_node (377 samples, 0.03%)</title><rect x="18.9828%" y="485" width="0.0292%" height="15" fill="rgb(252,195,42)" fg:x="245419" fg:w="377"/><text x="19.2328%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (318 samples, 0.02%)</title><rect x="19.0347%" y="469" width="0.0246%" height="15" fill="rgb(209,10,6)" fg:x="246090" fg:w="318"/><text x="19.2847%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (246 samples, 0.02%)</title><rect x="19.0402%" y="453" width="0.0190%" height="15" fill="rgb(229,3,52)" fg:x="246162" fg:w="246"/><text x="19.2902%" y="463.50"></text></g><g><title>prepare_to_wait_event (412 samples, 0.03%)</title><rect x="19.0287%" y="485" width="0.0319%" height="15" fill="rgb(253,49,37)" fg:x="246013" fg:w="412"/><text x="19.2787%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (291 samples, 0.02%)</title><rect x="19.0606%" y="485" width="0.0225%" height="15" fill="rgb(240,103,49)" fg:x="246425" fg:w="291"/><text x="19.3106%" y="495.50"></text></g><g><title>dequeue_entity (376 samples, 0.03%)</title><rect x="19.1038%" y="437" width="0.0291%" height="15" fill="rgb(250,182,30)" fg:x="246984" fg:w="376"/><text x="19.3538%" y="447.50"></text></g><g><title>dequeue_task_fair (454 samples, 0.04%)</title><rect x="19.0996%" y="453" width="0.0351%" height="15" fill="rgb(248,8,30)" fg:x="246929" fg:w="454"/><text x="19.3496%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (1,554 samples, 0.12%)</title><rect x="19.1399%" y="437" width="0.1202%" height="15" fill="rgb(237,120,30)" fg:x="247450" fg:w="1554"/><text x="19.3899%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,519 samples, 0.12%)</title><rect x="19.1426%" y="421" width="0.1175%" height="15" fill="rgb(221,146,34)" fg:x="247485" fg:w="1519"/><text x="19.3926%" y="431.50"></text></g><g><title>native_write_msr (1,494 samples, 0.12%)</title><rect x="19.1445%" y="405" width="0.1156%" height="15" fill="rgb(242,55,13)" fg:x="247510" fg:w="1494"/><text x="19.3945%" y="415.50"></text></g><g><title>finish_task_switch (1,681 samples, 0.13%)</title><rect x="19.1347%" y="453" width="0.1300%" height="15" fill="rgb(242,112,31)" fg:x="247383" fg:w="1681"/><text x="19.3847%" y="463.50"></text></g><g><title>psi_task_change (273 samples, 0.02%)</title><rect x="19.2753%" y="453" width="0.0211%" height="15" fill="rgb(249,192,27)" fg:x="249201" fg:w="273"/><text x="19.5253%" y="463.50"></text></g><g><title>psi_group_change (210 samples, 0.02%)</title><rect x="19.2802%" y="437" width="0.0162%" height="15" fill="rgb(208,204,44)" fg:x="249264" fg:w="210"/><text x="19.5302%" y="447.50"></text></g><g><title>__btrfs_tree_lock (3,800 samples, 0.29%)</title><rect x="19.0119%" y="501" width="0.2939%" height="15" fill="rgb(208,93,54)" fg:x="245796" fg:w="3800"/><text x="19.2619%" y="511.50"></text></g><g><title>schedule (2,880 samples, 0.22%)</title><rect x="19.0831%" y="485" width="0.2228%" height="15" fill="rgb(242,1,31)" fg:x="246716" fg:w="2880"/><text x="19.3331%" y="495.50"></text></g><g><title>__schedule (2,864 samples, 0.22%)</title><rect x="19.0843%" y="469" width="0.2215%" height="15" fill="rgb(241,83,25)" fg:x="246732" fg:w="2864"/><text x="19.3343%" y="479.50"></text></g><g><title>btrfs_leaf_free_space (532 samples, 0.04%)</title><rect x="19.3148%" y="501" width="0.0411%" height="15" fill="rgb(205,169,50)" fg:x="249712" fg:w="532"/><text x="19.5648%" y="511.50"></text></g><g><title>leaf_space_used (450 samples, 0.03%)</title><rect x="19.3212%" y="485" width="0.0348%" height="15" fill="rgb(239,186,37)" fg:x="249794" fg:w="450"/><text x="19.5712%" y="495.50"></text></g><g><title>btrfs_get_32 (365 samples, 0.03%)</title><rect x="19.3277%" y="469" width="0.0282%" height="15" fill="rgb(205,221,10)" fg:x="249879" fg:w="365"/><text x="19.5777%" y="479.50"></text></g><g><title>_raw_write_lock (268 samples, 0.02%)</title><rect x="19.3747%" y="485" width="0.0207%" height="15" fill="rgb(218,196,15)" fg:x="250486" fg:w="268"/><text x="19.6247%" y="495.50"></text></g><g><title>btrfs_try_tree_write_lock (1,918 samples, 0.15%)</title><rect x="19.3681%" y="501" width="0.1484%" height="15" fill="rgb(218,196,35)" fg:x="250401" fg:w="1918"/><text x="19.6181%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (1,565 samples, 0.12%)</title><rect x="19.3954%" y="485" width="0.1211%" height="15" fill="rgb(233,63,24)" fg:x="250754" fg:w="1565"/><text x="19.6454%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (249 samples, 0.02%)</title><rect x="19.4972%" y="469" width="0.0193%" height="15" fill="rgb(225,8,4)" fg:x="252070" fg:w="249"/><text x="19.7472%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (2,885 samples, 0.22%)</title><rect x="19.5165%" y="501" width="0.2232%" height="15" fill="rgb(234,105,35)" fg:x="252319" fg:w="2885"/><text x="19.7665%" y="511.50"></text></g><g><title>btrfs_buffer_uptodate (331 samples, 0.03%)</title><rect x="19.7629%" y="485" width="0.0256%" height="15" fill="rgb(236,21,32)" fg:x="255505" fg:w="331"/><text x="20.0129%" y="495.50"></text></g><g><title>verify_parent_transid (261 samples, 0.02%)</title><rect x="19.7683%" y="469" width="0.0202%" height="15" fill="rgb(228,109,6)" fg:x="255575" fg:w="261"/><text x="20.0183%" y="479.50"></text></g><g><title>btrfs_get_64 (423 samples, 0.03%)</title><rect x="19.7885%" y="485" width="0.0327%" height="15" fill="rgb(229,215,31)" fg:x="255836" fg:w="423"/><text x="20.0385%" y="495.50"></text></g><g><title>btrfs_verify_level_key (130 samples, 0.01%)</title><rect x="19.8222%" y="485" width="0.0101%" height="15" fill="rgb(221,52,54)" fg:x="256272" fg:w="130"/><text x="20.0722%" y="495.50"></text></g><g><title>__radix_tree_lookup (1,401 samples, 0.11%)</title><rect x="19.8988%" y="469" width="0.1084%" height="15" fill="rgb(252,129,43)" fg:x="257262" fg:w="1401"/><text x="20.1488%" y="479.50"></text></g><g><title>mark_page_accessed (572 samples, 0.04%)</title><rect x="20.0212%" y="453" width="0.0442%" height="15" fill="rgb(248,183,27)" fg:x="258845" fg:w="572"/><text x="20.2712%" y="463.50"></text></g><g><title>mark_extent_buffer_accessed (753 samples, 0.06%)</title><rect x="20.0075%" y="469" width="0.0582%" height="15" fill="rgb(250,0,22)" fg:x="258667" fg:w="753"/><text x="20.2575%" y="479.50"></text></g><g><title>find_extent_buffer (3,046 samples, 0.24%)</title><rect x="19.8323%" y="485" width="0.2356%" height="15" fill="rgb(213,166,10)" fg:x="256402" fg:w="3046"/><text x="20.0823%" y="495.50"></text></g><g><title>read_block_for_search.isra.0 (4,667 samples, 0.36%)</title><rect x="19.7396%" y="501" width="0.3610%" height="15" fill="rgb(207,163,36)" fg:x="255204" fg:w="4667"/><text x="19.9896%" y="511.50"></text></g><g><title>read_extent_buffer (423 samples, 0.03%)</title><rect x="20.0679%" y="485" width="0.0327%" height="15" fill="rgb(208,122,22)" fg:x="259448" fg:w="423"/><text x="20.3179%" y="495.50"></text></g><g><title>alloc_extent_buffer (134 samples, 0.01%)</title><rect x="20.1052%" y="453" width="0.0104%" height="15" fill="rgb(207,104,49)" fg:x="259930" fg:w="134"/><text x="20.3552%" y="463.50"></text></g><g><title>alloc_tree_block_no_bg_flush (501 samples, 0.04%)</title><rect x="20.1046%" y="485" width="0.0388%" height="15" fill="rgb(248,211,50)" fg:x="259923" fg:w="501"/><text x="20.3546%" y="495.50"></text></g><g><title>btrfs_alloc_tree_block (500 samples, 0.04%)</title><rect x="20.1047%" y="469" width="0.0387%" height="15" fill="rgb(217,13,45)" fg:x="259924" fg:w="500"/><text x="20.3547%" y="479.50"></text></g><g><title>copy_for_split (294 samples, 0.02%)</title><rect x="20.1470%" y="485" width="0.0227%" height="15" fill="rgb(211,216,49)" fg:x="260471" fg:w="294"/><text x="20.3970%" y="495.50"></text></g><g><title>btrfs_get_token_32 (358 samples, 0.03%)</title><rect x="20.1851%" y="453" width="0.0277%" height="15" fill="rgb(221,58,53)" fg:x="260964" fg:w="358"/><text x="20.4351%" y="463.50"></text></g><g><title>btrfs_set_token_32 (310 samples, 0.02%)</title><rect x="20.2137%" y="453" width="0.0240%" height="15" fill="rgb(220,112,41)" fg:x="261333" fg:w="310"/><text x="20.4637%" y="463.50"></text></g><g><title>memmove_extent_buffer (137 samples, 0.01%)</title><rect x="20.2482%" y="453" width="0.0106%" height="15" fill="rgb(236,38,28)" fg:x="261779" fg:w="137"/><text x="20.4982%" y="463.50"></text></g><g><title>__push_leaf_left (1,133 samples, 0.09%)</title><rect x="20.1715%" y="469" width="0.0876%" height="15" fill="rgb(227,195,22)" fg:x="260787" fg:w="1133"/><text x="20.4215%" y="479.50"></text></g><g><title>push_leaf_left (1,255 samples, 0.10%)</title><rect x="20.1698%" y="485" width="0.0971%" height="15" fill="rgb(214,55,33)" fg:x="260766" fg:w="1255"/><text x="20.4198%" y="495.50"></text></g><g><title>btrfs_get_token_32 (362 samples, 0.03%)</title><rect x="20.2879%" y="453" width="0.0280%" height="15" fill="rgb(248,80,13)" fg:x="262292" fg:w="362"/><text x="20.5379%" y="463.50"></text></g><g><title>btrfs_set_token_32 (371 samples, 0.03%)</title><rect x="20.3179%" y="453" width="0.0287%" height="15" fill="rgb(238,52,6)" fg:x="262680" fg:w="371"/><text x="20.5679%" y="463.50"></text></g><g><title>__push_leaf_right (1,242 samples, 0.10%)</title><rect x="20.2713%" y="469" width="0.0961%" height="15" fill="rgb(224,198,47)" fg:x="262078" fg:w="1242"/><text x="20.5213%" y="479.50"></text></g><g><title>btrfs_read_node_slot (200 samples, 0.02%)</title><rect x="20.3759%" y="469" width="0.0155%" height="15" fill="rgb(233,171,20)" fg:x="263430" fg:w="200"/><text x="20.6259%" y="479.50"></text></g><g><title>read_tree_block (164 samples, 0.01%)</title><rect x="20.3787%" y="453" width="0.0127%" height="15" fill="rgb(241,30,25)" fg:x="263466" fg:w="164"/><text x="20.6287%" y="463.50"></text></g><g><title>push_leaf_right (1,638 samples, 0.13%)</title><rect x="20.2669%" y="485" width="0.1267%" height="15" fill="rgb(207,171,38)" fg:x="262021" fg:w="1638"/><text x="20.5169%" y="495.50"></text></g><g><title>split_leaf (3,791 samples, 0.29%)</title><rect x="20.1006%" y="501" width="0.2932%" height="15" fill="rgb(234,70,1)" fg:x="259871" fg:w="3791"/><text x="20.3506%" y="511.50"></text></g><g><title>select_task_rq_fair (408 samples, 0.03%)</title><rect x="20.4714%" y="421" width="0.0316%" height="15" fill="rgb(232,178,18)" fg:x="264665" fg:w="408"/><text x="20.7214%" y="431.50"></text></g><g><title>enqueue_entity (369 samples, 0.03%)</title><rect x="20.5145%" y="389" width="0.0285%" height="15" fill="rgb(241,78,40)" fg:x="265222" fg:w="369"/><text x="20.7645%" y="399.50"></text></g><g><title>update_load_avg (135 samples, 0.01%)</title><rect x="20.5326%" y="373" width="0.0104%" height="15" fill="rgb(222,35,25)" fg:x="265456" fg:w="135"/><text x="20.7826%" y="383.50"></text></g><g><title>enqueue_task_fair (476 samples, 0.04%)</title><rect x="20.5081%" y="405" width="0.0368%" height="15" fill="rgb(207,92,16)" fg:x="265140" fg:w="476"/><text x="20.7581%" y="415.50"></text></g><g><title>ttwu_do_activate (903 samples, 0.07%)</title><rect x="20.5058%" y="421" width="0.0698%" height="15" fill="rgb(216,59,51)" fg:x="265110" fg:w="903"/><text x="20.7558%" y="431.50"></text></g><g><title>psi_task_change (396 samples, 0.03%)</title><rect x="20.5450%" y="405" width="0.0306%" height="15" fill="rgb(213,80,28)" fg:x="265617" fg:w="396"/><text x="20.7950%" y="415.50"></text></g><g><title>psi_group_change (315 samples, 0.02%)</title><rect x="20.5513%" y="389" width="0.0244%" height="15" fill="rgb(220,93,7)" fg:x="265698" fg:w="315"/><text x="20.8013%" y="399.50"></text></g><g><title>__wake_up_common (2,113 samples, 0.16%)</title><rect x="20.4300%" y="469" width="0.1634%" height="15" fill="rgb(225,24,44)" fg:x="264130" fg:w="2113"/><text x="20.6800%" y="479.50"></text></g><g><title>autoremove_wake_function (2,070 samples, 0.16%)</title><rect x="20.4334%" y="453" width="0.1601%" height="15" fill="rgb(243,74,40)" fg:x="264173" fg:w="2070"/><text x="20.6834%" y="463.50"></text></g><g><title>try_to_wake_up (1,989 samples, 0.15%)</title><rect x="20.4396%" y="437" width="0.1538%" height="15" fill="rgb(228,39,7)" fg:x="264254" fg:w="1989"/><text x="20.6896%" y="447.50"></text></g><g><title>__wake_up_common_lock (2,156 samples, 0.17%)</title><rect x="20.4291%" y="485" width="0.1668%" height="15" fill="rgb(227,79,8)" fg:x="264118" fg:w="2156"/><text x="20.6791%" y="495.50"></text></g><g><title>btrfs_tree_read_unlock (360 samples, 0.03%)</title><rect x="20.5959%" y="485" width="0.0278%" height="15" fill="rgb(236,58,11)" fg:x="266274" fg:w="360"/><text x="20.8459%" y="495.50"></text></g><g><title>btrfs_search_slot (28,043 samples, 2.17%)</title><rect x="18.4660%" y="517" width="2.1691%" height="15" fill="rgb(249,63,35)" fg:x="238738" fg:w="28043"/><text x="18.7160%" y="527.50">b..</text></g><g><title>unlock_up (3,116 samples, 0.24%)</title><rect x="20.3941%" y="501" width="0.2410%" height="15" fill="rgb(252,114,16)" fg:x="263665" fg:w="3116"/><text x="20.6441%" y="511.50"></text></g><g><title>btrfs_get_32 (271 samples, 0.02%)</title><rect x="20.7745%" y="501" width="0.0210%" height="15" fill="rgb(254,151,24)" fg:x="268584" fg:w="271"/><text x="21.0245%" y="511.50"></text></g><g><title>btrfs_get_token_32 (9,265 samples, 0.72%)</title><rect x="20.7955%" y="501" width="0.7166%" height="15" fill="rgb(253,54,39)" fg:x="268855" fg:w="9265"/><text x="21.0455%" y="511.50"></text></g><g><title>check_setget_bounds.isra.0 (1,265 samples, 0.10%)</title><rect x="21.4143%" y="485" width="0.0978%" height="15" fill="rgb(243,25,45)" fg:x="276855" fg:w="1265"/><text x="21.6643%" y="495.50"></text></g><g><title>btrfs_leaf_free_space (685 samples, 0.05%)</title><rect x="21.5121%" y="501" width="0.0530%" height="15" fill="rgb(234,134,9)" fg:x="278120" fg:w="685"/><text x="21.7621%" y="511.50"></text></g><g><title>leaf_space_used (595 samples, 0.05%)</title><rect x="21.5191%" y="485" width="0.0460%" height="15" fill="rgb(227,166,31)" fg:x="278210" fg:w="595"/><text x="21.7691%" y="495.50"></text></g><g><title>btrfs_get_32 (460 samples, 0.04%)</title><rect x="21.5295%" y="469" width="0.0356%" height="15" fill="rgb(245,143,41)" fg:x="278345" fg:w="460"/><text x="21.7795%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (368 samples, 0.03%)</title><rect x="21.5651%" y="501" width="0.0285%" height="15" fill="rgb(238,181,32)" fg:x="278805" fg:w="368"/><text x="21.8151%" y="511.50"></text></g><g><title>set_extent_buffer_dirty (188 samples, 0.01%)</title><rect x="21.5790%" y="485" width="0.0145%" height="15" fill="rgb(224,113,18)" fg:x="278985" fg:w="188"/><text x="21.8290%" y="495.50"></text></g><g><title>btrfs_set_token_32 (7,351 samples, 0.57%)</title><rect x="21.5936%" y="501" width="0.5686%" height="15" fill="rgb(240,229,28)" fg:x="279173" fg:w="7351"/><text x="21.8436%" y="511.50"></text></g><g><title>check_setget_bounds.isra.0 (1,124 samples, 0.09%)</title><rect x="22.0752%" y="485" width="0.0869%" height="15" fill="rgb(250,185,3)" fg:x="285400" fg:w="1124"/><text x="22.3252%" y="495.50"></text></g><g><title>btrfs_unlock_up_safe (245 samples, 0.02%)</title><rect x="22.1622%" y="501" width="0.0190%" height="15" fill="rgb(212,59,25)" fg:x="286524" fg:w="245"/><text x="22.4122%" y="511.50"></text></g><g><title>copy_pages (265 samples, 0.02%)</title><rect x="22.1933%" y="485" width="0.0205%" height="15" fill="rgb(221,87,20)" fg:x="286926" fg:w="265"/><text x="22.4433%" y="495.50"></text></g><g><title>memcpy_extent_buffer (2,383 samples, 0.18%)</title><rect x="22.1815%" y="501" width="0.1843%" height="15" fill="rgb(213,74,28)" fg:x="286774" fg:w="2383"/><text x="22.4315%" y="511.50"></text></g><g><title>memmove (1,966 samples, 0.15%)</title><rect x="22.2138%" y="485" width="0.1521%" height="15" fill="rgb(224,132,34)" fg:x="287191" fg:w="1966"/><text x="22.4638%" y="495.50"></text></g><g><title>copy_pages (257 samples, 0.02%)</title><rect x="22.3868%" y="485" width="0.0199%" height="15" fill="rgb(222,101,24)" fg:x="289428" fg:w="257"/><text x="22.6368%" y="495.50"></text></g><g><title>memmove_extent_buffer (2,166 samples, 0.17%)</title><rect x="22.3658%" y="501" width="0.1675%" height="15" fill="rgb(254,142,4)" fg:x="289157" fg:w="2166"/><text x="22.6158%" y="511.50"></text></g><g><title>memmove (1,638 samples, 0.13%)</title><rect x="22.4067%" y="485" width="0.1267%" height="15" fill="rgb(230,229,49)" fg:x="289685" fg:w="1638"/><text x="22.6567%" y="495.50"></text></g><g><title>insert_with_overflow (53,390 samples, 4.13%)</title><rect x="18.4231%" y="549" width="4.1296%" height="15" fill="rgb(238,70,47)" fg:x="238183" fg:w="53390"/><text x="18.6731%" y="559.50">inse..</text></g><g><title>btrfs_insert_empty_items (52,924 samples, 4.09%)</title><rect x="18.4591%" y="533" width="4.0936%" height="15" fill="rgb(231,160,17)" fg:x="238649" fg:w="52924"/><text x="18.7091%" y="543.50">btrf..</text></g><g><title>setup_items_for_insert (24,792 samples, 1.92%)</title><rect x="20.6351%" y="517" width="1.9176%" height="15" fill="rgb(218,68,53)" fg:x="266781" fg:w="24792"/><text x="20.8851%" y="527.50">s..</text></g><g><title>write_extent_buffer (250 samples, 0.02%)</title><rect x="22.5334%" y="501" width="0.0193%" height="15" fill="rgb(236,111,10)" fg:x="291323" fg:w="250"/><text x="22.7834%" y="511.50"></text></g><g><title>memset_erms (130 samples, 0.01%)</title><rect x="22.5727%" y="533" width="0.0101%" height="15" fill="rgb(224,34,41)" fg:x="291831" fg:w="130"/><text x="22.8227%" y="543.50"></text></g><g><title>_cond_resched (156 samples, 0.01%)</title><rect x="22.5873%" y="517" width="0.0121%" height="15" fill="rgb(241,118,19)" fg:x="292020" fg:w="156"/><text x="22.8373%" y="527.50"></text></g><g><title>kmem_cache_alloc (612 samples, 0.05%)</title><rect x="22.5527%" y="549" width="0.0473%" height="15" fill="rgb(238,129,25)" fg:x="291573" fg:w="612"/><text x="22.8027%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (224 samples, 0.02%)</title><rect x="22.5827%" y="533" width="0.0173%" height="15" fill="rgb(238,22,31)" fg:x="291961" fg:w="224"/><text x="22.8327%" y="543.50"></text></g><g><title>kmem_cache_free (405 samples, 0.03%)</title><rect x="22.6000%" y="549" width="0.0313%" height="15" fill="rgb(222,174,48)" fg:x="292185" fg:w="405"/><text x="22.8500%" y="559.50"></text></g><g><title>btrfs_insert_dir_item (66,561 samples, 5.15%)</title><rect x="17.5299%" y="565" width="5.1484%" height="15" fill="rgb(206,152,40)" fg:x="226636" fg:w="66561"/><text x="17.7799%" y="575.50">btrfs_..</text></g><g><title>write_extent_buffer (607 samples, 0.05%)</title><rect x="22.6314%" y="549" width="0.0470%" height="15" fill="rgb(218,99,54)" fg:x="292590" fg:w="607"/><text x="22.8814%" y="559.50"></text></g><g><title>_raw_spin_lock (314 samples, 0.02%)</title><rect x="22.7782%" y="501" width="0.0243%" height="15" fill="rgb(220,174,26)" fg:x="294489" fg:w="314"/><text x="23.0282%" y="511.50"></text></g><g><title>free_extent_buffer.part.0 (952 samples, 0.07%)</title><rect x="22.7290%" y="517" width="0.0736%" height="15" fill="rgb(245,116,9)" fg:x="293852" fg:w="952"/><text x="22.9790%" y="527.50"></text></g><g><title>btrfs_free_path (1,446 samples, 0.11%)</title><rect x="22.7099%" y="549" width="0.1118%" height="15" fill="rgb(209,72,35)" fg:x="293605" fg:w="1446"/><text x="22.9599%" y="559.50"></text></g><g><title>btrfs_release_path (1,430 samples, 0.11%)</title><rect x="22.7111%" y="533" width="0.1106%" height="15" fill="rgb(226,126,21)" fg:x="293621" fg:w="1430"/><text x="22.9611%" y="543.50"></text></g><g><title>release_extent_buffer (247 samples, 0.02%)</title><rect x="22.8026%" y="517" width="0.0191%" height="15" fill="rgb(227,192,1)" fg:x="294804" fg:w="247"/><text x="23.0526%" y="527.50"></text></g><g><title>_raw_read_lock (204 samples, 0.02%)</title><rect x="22.9628%" y="485" width="0.0158%" height="15" fill="rgb(237,180,29)" fg:x="296875" fg:w="204"/><text x="23.2128%" y="495.50"></text></g><g><title>finish_wait (422 samples, 0.03%)</title><rect x="22.9791%" y="485" width="0.0326%" height="15" fill="rgb(230,197,35)" fg:x="297086" fg:w="422"/><text x="23.2291%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (404 samples, 0.03%)</title><rect x="22.9805%" y="469" width="0.0312%" height="15" fill="rgb(246,193,31)" fg:x="297104" fg:w="404"/><text x="23.2305%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (376 samples, 0.03%)</title><rect x="22.9827%" y="453" width="0.0291%" height="15" fill="rgb(241,36,4)" fg:x="297132" fg:w="376"/><text x="23.2327%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (1,216 samples, 0.09%)</title><rect x="23.0241%" y="469" width="0.0941%" height="15" fill="rgb(241,130,17)" fg:x="297667" fg:w="1216"/><text x="23.2741%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,147 samples, 0.09%)</title><rect x="23.0294%" y="453" width="0.0887%" height="15" fill="rgb(206,137,32)" fg:x="297736" fg:w="1147"/><text x="23.2794%" y="463.50"></text></g><g><title>prepare_to_wait_event (1,403 samples, 0.11%)</title><rect x="23.0120%" y="485" width="0.1085%" height="15" fill="rgb(237,228,51)" fg:x="297511" fg:w="1403"/><text x="23.2620%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (2,841 samples, 0.22%)</title><rect x="23.1205%" y="485" width="0.2197%" height="15" fill="rgb(243,6,42)" fg:x="298914" fg:w="2841"/><text x="23.3705%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,834 samples, 0.14%)</title><rect x="23.1984%" y="469" width="0.1419%" height="15" fill="rgb(251,74,28)" fg:x="299921" fg:w="1834"/><text x="23.4484%" y="479.50"></text></g><g><title>update_curr (135 samples, 0.01%)</title><rect x="23.3678%" y="421" width="0.0104%" height="15" fill="rgb(218,20,49)" fg:x="302111" fg:w="135"/><text x="23.6178%" y="431.50"></text></g><g><title>dequeue_entity (344 samples, 0.03%)</title><rect x="23.3595%" y="437" width="0.0266%" height="15" fill="rgb(238,28,14)" fg:x="302004" fg:w="344"/><text x="23.6095%" y="447.50"></text></g><g><title>dequeue_task_fair (406 samples, 0.03%)</title><rect x="23.3559%" y="453" width="0.0314%" height="15" fill="rgb(229,40,46)" fg:x="301957" fg:w="406"/><text x="23.6059%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (777 samples, 0.06%)</title><rect x="23.3918%" y="437" width="0.0601%" height="15" fill="rgb(244,195,20)" fg:x="302422" fg:w="777"/><text x="23.6418%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (743 samples, 0.06%)</title><rect x="23.3945%" y="421" width="0.0575%" height="15" fill="rgb(253,56,35)" fg:x="302456" fg:w="743"/><text x="23.6445%" y="431.50"></text></g><g><title>native_write_msr (731 samples, 0.06%)</title><rect x="23.3954%" y="405" width="0.0565%" height="15" fill="rgb(210,149,44)" fg:x="302468" fg:w="731"/><text x="23.6454%" y="415.50"></text></g><g><title>finish_task_switch (876 samples, 0.07%)</title><rect x="23.3873%" y="453" width="0.0678%" height="15" fill="rgb(240,135,12)" fg:x="302363" fg:w="876"/><text x="23.6373%" y="463.50"></text></g><g><title>psi_task_change (298 samples, 0.02%)</title><rect x="23.4659%" y="453" width="0.0230%" height="15" fill="rgb(251,24,50)" fg:x="303380" fg:w="298"/><text x="23.7159%" y="463.50"></text></g><g><title>psi_group_change (248 samples, 0.02%)</title><rect x="23.4698%" y="437" width="0.0192%" height="15" fill="rgb(243,200,47)" fg:x="303430" fg:w="248"/><text x="23.7198%" y="447.50"></text></g><g><title>__btrfs_tree_read_lock (7,059 samples, 0.55%)</title><rect x="22.9503%" y="501" width="0.5460%" height="15" fill="rgb(224,166,26)" fg:x="296714" fg:w="7059"/><text x="23.2003%" y="511.50"></text></g><g><title>schedule (2,018 samples, 0.16%)</title><rect x="23.3403%" y="485" width="0.1561%" height="15" fill="rgb(233,0,47)" fg:x="301755" fg:w="2018"/><text x="23.5903%" y="495.50"></text></g><g><title>__schedule (2,006 samples, 0.16%)</title><rect x="23.3412%" y="469" width="0.1552%" height="15" fill="rgb(253,80,5)" fg:x="301767" fg:w="2006"/><text x="23.5912%" y="479.50"></text></g><g><title>__btrfs_read_lock_root_node (7,921 samples, 0.61%)</title><rect x="22.9459%" y="517" width="0.6127%" height="15" fill="rgb(214,133,25)" fg:x="296656" fg:w="7921"/><text x="23.1959%" y="527.50"></text></g><g><title>btrfs_root_node (804 samples, 0.06%)</title><rect x="23.4963%" y="501" width="0.0622%" height="15" fill="rgb(209,27,14)" fg:x="303773" fg:w="804"/><text x="23.7463%" y="511.50"></text></g><g><title>alloc_tree_block_no_bg_flush (234 samples, 0.02%)</title><rect x="23.5728%" y="485" width="0.0181%" height="15" fill="rgb(219,102,51)" fg:x="304762" fg:w="234"/><text x="23.8228%" y="495.50"></text></g><g><title>btrfs_alloc_tree_block (232 samples, 0.02%)</title><rect x="23.5730%" y="469" width="0.0179%" height="15" fill="rgb(237,18,16)" fg:x="304764" fg:w="232"/><text x="23.8230%" y="479.50"></text></g><g><title>__btrfs_cow_block (486 samples, 0.04%)</title><rect x="23.5724%" y="501" width="0.0376%" height="15" fill="rgb(241,85,17)" fg:x="304756" fg:w="486"/><text x="23.8224%" y="511.50"></text></g><g><title>btrfs_cow_block (493 samples, 0.04%)</title><rect x="23.5721%" y="517" width="0.0381%" height="15" fill="rgb(236,90,42)" fg:x="304753" fg:w="493"/><text x="23.8221%" y="527.50"></text></g><g><title>btrfs_leaf_free_space (732 samples, 0.06%)</title><rect x="23.6103%" y="517" width="0.0566%" height="15" fill="rgb(249,57,21)" fg:x="305246" fg:w="732"/><text x="23.8603%" y="527.50"></text></g><g><title>leaf_space_used (590 samples, 0.05%)</title><rect x="23.6213%" y="501" width="0.0456%" height="15" fill="rgb(243,12,36)" fg:x="305388" fg:w="590"/><text x="23.8713%" y="511.50"></text></g><g><title>btrfs_get_32 (456 samples, 0.04%)</title><rect x="23.6316%" y="485" width="0.0353%" height="15" fill="rgb(253,128,47)" fg:x="305522" fg:w="456"/><text x="23.8816%" y="495.50"></text></g><g><title>_raw_write_lock (319 samples, 0.02%)</title><rect x="23.6783%" y="501" width="0.0247%" height="15" fill="rgb(207,33,20)" fg:x="306125" fg:w="319"/><text x="23.9283%" y="511.50"></text></g><g><title>btrfs_try_tree_write_lock (1,544 samples, 0.12%)</title><rect x="23.6703%" y="517" width="0.1194%" height="15" fill="rgb(233,215,35)" fg:x="306022" fg:w="1544"/><text x="23.9203%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (1,121 samples, 0.09%)</title><rect x="23.7030%" y="501" width="0.0867%" height="15" fill="rgb(249,188,52)" fg:x="306445" fg:w="1121"/><text x="23.9530%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (142 samples, 0.01%)</title><rect x="23.7787%" y="485" width="0.0110%" height="15" fill="rgb(225,12,32)" fg:x="307424" fg:w="142"/><text x="24.0287%" y="495.50"></text></g><g><title>generic_bin_search.constprop.0 (3,682 samples, 0.28%)</title><rect x="23.7897%" y="517" width="0.2848%" height="15" fill="rgb(247,98,14)" fg:x="307566" fg:w="3682"/><text x="24.0397%" y="527.50"></text></g><g><title>btrfs_buffer_uptodate (654 samples, 0.05%)</title><rect x="24.1104%" y="501" width="0.0506%" height="15" fill="rgb(247,219,48)" fg:x="311712" fg:w="654"/><text x="24.3604%" y="511.50"></text></g><g><title>verify_parent_transid (556 samples, 0.04%)</title><rect x="24.1180%" y="485" width="0.0430%" height="15" fill="rgb(253,60,48)" fg:x="311810" fg:w="556"/><text x="24.3680%" y="495.50"></text></g><g><title>btrfs_get_64 (489 samples, 0.04%)</title><rect x="24.1610%" y="501" width="0.0378%" height="15" fill="rgb(245,15,52)" fg:x="312366" fg:w="489"/><text x="24.4110%" y="511.50"></text></g><g><title>btrfs_verify_level_key (145 samples, 0.01%)</title><rect x="24.2035%" y="501" width="0.0112%" height="15" fill="rgb(220,133,28)" fg:x="312916" fg:w="145"/><text x="24.4535%" y="511.50"></text></g><g><title>__radix_tree_lookup (1,800 samples, 0.14%)</title><rect x="24.3005%" y="485" width="0.1392%" height="15" fill="rgb(217,180,4)" fg:x="314170" fg:w="1800"/><text x="24.5505%" y="495.50"></text></g><g><title>mark_page_accessed (891 samples, 0.07%)</title><rect x="24.4569%" y="469" width="0.0689%" height="15" fill="rgb(251,24,1)" fg:x="316191" fg:w="891"/><text x="24.7069%" y="479.50"></text></g><g><title>mark_extent_buffer_accessed (1,106 samples, 0.09%)</title><rect x="24.4403%" y="485" width="0.0855%" height="15" fill="rgb(212,185,49)" fg:x="315977" fg:w="1106"/><text x="24.6903%" y="495.50"></text></g><g><title>find_extent_buffer (4,041 samples, 0.31%)</title><rect x="24.2148%" y="501" width="0.3126%" height="15" fill="rgb(215,175,22)" fg:x="313061" fg:w="4041"/><text x="24.4648%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (6,355 samples, 0.49%)</title><rect x="24.0745%" y="517" width="0.4915%" height="15" fill="rgb(250,205,14)" fg:x="311248" fg:w="6355"/><text x="24.3245%" y="527.50"></text></g><g><title>read_extent_buffer (501 samples, 0.04%)</title><rect x="24.5273%" y="501" width="0.0388%" height="15" fill="rgb(225,211,22)" fg:x="317102" fg:w="501"/><text x="24.7773%" y="511.50"></text></g><g><title>btrfs_tree_read_unlock (473 samples, 0.04%)</title><rect x="24.6236%" y="501" width="0.0366%" height="15" fill="rgb(251,179,42)" fg:x="318347" fg:w="473"/><text x="24.8736%" y="511.50"></text></g><g><title>btrfs_search_slot (23,597 samples, 1.83%)</title><rect x="22.8473%" y="533" width="1.8252%" height="15" fill="rgb(208,216,51)" fg:x="295382" fg:w="23597"/><text x="23.0973%" y="543.50">b..</text></g><g><title>unlock_up (1,366 samples, 0.11%)</title><rect x="24.5668%" y="517" width="0.1057%" height="15" fill="rgb(235,36,11)" fg:x="317613" fg:w="1366"/><text x="24.8168%" y="527.50"></text></g><g><title>btrfs_tree_unlock (157 samples, 0.01%)</title><rect x="24.6604%" y="501" width="0.0121%" height="15" fill="rgb(213,189,28)" fg:x="318822" fg:w="157"/><text x="24.9104%" y="511.50"></text></g><g><title>btrfs_get_32 (348 samples, 0.03%)</title><rect x="24.7963%" y="517" width="0.0269%" height="15" fill="rgb(227,203,42)" fg:x="320579" fg:w="348"/><text x="25.0463%" y="527.50"></text></g><g><title>btrfs_get_token_32 (6,381 samples, 0.49%)</title><rect x="24.8232%" y="517" width="0.4936%" height="15" fill="rgb(244,72,36)" fg:x="320927" fg:w="6381"/><text x="25.0732%" y="527.50"></text></g><g><title>check_setget_bounds.isra.0 (861 samples, 0.07%)</title><rect x="25.2501%" y="501" width="0.0666%" height="15" fill="rgb(213,53,17)" fg:x="326447" fg:w="861"/><text x="25.5001%" y="511.50"></text></g><g><title>btrfs_leaf_free_space (775 samples, 0.06%)</title><rect x="25.3167%" y="517" width="0.0599%" height="15" fill="rgb(207,167,3)" fg:x="327308" fg:w="775"/><text x="25.5667%" y="527.50"></text></g><g><title>leaf_space_used (667 samples, 0.05%)</title><rect x="25.3251%" y="501" width="0.0516%" height="15" fill="rgb(216,98,30)" fg:x="327416" fg:w="667"/><text x="25.5751%" y="511.50"></text></g><g><title>btrfs_get_32 (491 samples, 0.04%)</title><rect x="25.3387%" y="485" width="0.0380%" height="15" fill="rgb(236,123,15)" fg:x="327592" fg:w="491"/><text x="25.5887%" y="495.50"></text></g><g><title>btrfs_mark_buffer_dirty (536 samples, 0.04%)</title><rect x="25.3767%" y="517" width="0.0415%" height="15" fill="rgb(248,81,50)" fg:x="328083" fg:w="536"/><text x="25.6267%" y="527.50"></text></g><g><title>set_extent_buffer_dirty (193 samples, 0.01%)</title><rect x="25.4032%" y="501" width="0.0149%" height="15" fill="rgb(214,120,4)" fg:x="328426" fg:w="193"/><text x="25.6532%" y="511.50"></text></g><g><title>check_setget_bounds.isra.0 (830 samples, 0.06%)</title><rect x="25.7524%" y="501" width="0.0642%" height="15" fill="rgb(208,179,34)" fg:x="332940" fg:w="830"/><text x="26.0024%" y="511.50"></text></g><g><title>btrfs_set_token_32 (5,152 samples, 0.40%)</title><rect x="25.4181%" y="517" width="0.3985%" height="15" fill="rgb(227,140,7)" fg:x="328619" fg:w="5152"/><text x="25.6681%" y="527.50"></text></g><g><title>btrfs_unlock_up_safe (137 samples, 0.01%)</title><rect x="25.8166%" y="517" width="0.0106%" height="15" fill="rgb(214,22,6)" fg:x="333771" fg:w="137"/><text x="26.0666%" y="527.50"></text></g><g><title>copy_pages (471 samples, 0.04%)</title><rect x="25.8424%" y="501" width="0.0364%" height="15" fill="rgb(207,137,27)" fg:x="334104" fg:w="471"/><text x="26.0924%" y="511.50"></text></g><g><title>memcpy_extent_buffer (4,120 samples, 0.32%)</title><rect x="25.8272%" y="517" width="0.3187%" height="15" fill="rgb(210,8,46)" fg:x="333908" fg:w="4120"/><text x="26.0772%" y="527.50"></text></g><g><title>memmove (3,453 samples, 0.27%)</title><rect x="25.8788%" y="501" width="0.2671%" height="15" fill="rgb(240,16,54)" fg:x="334575" fg:w="3453"/><text x="26.1288%" y="511.50"></text></g><g><title>copy_pages (205 samples, 0.02%)</title><rect x="26.1673%" y="501" width="0.0159%" height="15" fill="rgb(211,209,29)" fg:x="338304" fg:w="205"/><text x="26.4173%" y="511.50"></text></g><g><title>memmove_extent_buffer (1,809 samples, 0.14%)</title><rect x="26.1459%" y="517" width="0.1399%" height="15" fill="rgb(226,228,24)" fg:x="338028" fg:w="1809"/><text x="26.3959%" y="527.50"></text></g><g><title>memmove (1,328 samples, 0.10%)</title><rect x="26.1831%" y="501" width="0.1027%" height="15" fill="rgb(222,84,9)" fg:x="338509" fg:w="1328"/><text x="26.4331%" y="511.50"></text></g><g><title>btrfs_insert_empty_items (45,022 samples, 3.48%)</title><rect x="22.8291%" y="549" width="3.4824%" height="15" fill="rgb(234,203,30)" fg:x="295146" fg:w="45022"/><text x="23.0791%" y="559.50">btr..</text></g><g><title>setup_items_for_insert (21,189 samples, 1.64%)</title><rect x="24.6725%" y="533" width="1.6389%" height="15" fill="rgb(238,109,14)" fg:x="318979" fg:w="21189"/><text x="24.9225%" y="543.50"></text></g><g><title>write_extent_buffer (330 samples, 0.03%)</title><rect x="26.2859%" y="517" width="0.0255%" height="15" fill="rgb(233,206,34)" fg:x="339838" fg:w="330"/><text x="26.5359%" y="527.50"></text></g><g><title>btrfs_mark_buffer_dirty (330 samples, 0.03%)</title><rect x="26.3114%" y="549" width="0.0255%" height="15" fill="rgb(220,167,47)" fg:x="340168" fg:w="330"/><text x="26.5614%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (203 samples, 0.02%)</title><rect x="26.3213%" y="533" width="0.0157%" height="15" fill="rgb(238,105,10)" fg:x="340295" fg:w="203"/><text x="26.5713%" y="543.50"></text></g><g><title>btrfs_set_16 (237 samples, 0.02%)</title><rect x="26.3370%" y="549" width="0.0183%" height="15" fill="rgb(213,227,17)" fg:x="340498" fg:w="237"/><text x="26.5870%" y="559.50"></text></g><g><title>btrfs_set_64 (199 samples, 0.02%)</title><rect x="26.3553%" y="549" width="0.0154%" height="15" fill="rgb(217,132,38)" fg:x="340735" fg:w="199"/><text x="26.6053%" y="559.50"></text></g><g><title>kmem_cache_alloc (569 samples, 0.04%)</title><rect x="26.3707%" y="549" width="0.0440%" height="15" fill="rgb(242,146,4)" fg:x="340934" fg:w="569"/><text x="26.6207%" y="559.50"></text></g><g><title>kmem_cache_free (368 samples, 0.03%)</title><rect x="26.4147%" y="549" width="0.0285%" height="15" fill="rgb(212,61,9)" fg:x="341503" fg:w="368"/><text x="26.6647%" y="559.50"></text></g><g><title>btrfs_insert_inode_ref (49,013 samples, 3.79%)</title><rect x="22.6783%" y="565" width="3.7911%" height="15" fill="rgb(247,126,22)" fg:x="293197" fg:w="49013"/><text x="22.9283%" y="575.50">btrf..</text></g><g><title>write_extent_buffer (339 samples, 0.03%)</title><rect x="26.4432%" y="549" width="0.0262%" height="15" fill="rgb(220,196,2)" fg:x="341871" fg:w="339"/><text x="26.6932%" y="559.50"></text></g><g><title>_raw_spin_lock (218 samples, 0.02%)</title><rect x="26.5326%" y="517" width="0.0169%" height="15" fill="rgb(208,46,4)" fg:x="343027" fg:w="218"/><text x="26.7826%" y="527.50"></text></g><g><title>mutex_lock (167 samples, 0.01%)</title><rect x="26.5494%" y="517" width="0.0129%" height="15" fill="rgb(252,104,46)" fg:x="343245" fg:w="167"/><text x="26.7994%" y="527.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (874 samples, 0.07%)</title><rect x="26.5087%" y="533" width="0.0676%" height="15" fill="rgb(237,152,48)" fg:x="342718" fg:w="874"/><text x="26.7587%" y="543.50"></text></g><g><title>mutex_unlock (180 samples, 0.01%)</title><rect x="26.5624%" y="517" width="0.0139%" height="15" fill="rgb(221,59,37)" fg:x="343412" fg:w="180"/><text x="26.8124%" y="527.50"></text></g><g><title>__mutex_lock.constprop.0 (151 samples, 0.01%)</title><rect x="26.5763%" y="533" width="0.0117%" height="15" fill="rgb(209,202,51)" fg:x="343592" fg:w="151"/><text x="26.8263%" y="543.50"></text></g><g><title>btrfs_get_or_create_delayed_node (223 samples, 0.02%)</title><rect x="26.5941%" y="533" width="0.0172%" height="15" fill="rgb(228,81,30)" fg:x="343823" fg:w="223"/><text x="26.8441%" y="543.50"></text></g><g><title>btrfs_get_delayed_node (198 samples, 0.02%)</title><rect x="26.5961%" y="517" width="0.0153%" height="15" fill="rgb(227,42,39)" fg:x="343848" fg:w="198"/><text x="26.8461%" y="527.50"></text></g><g><title>inode_get_bytes (211 samples, 0.02%)</title><rect x="26.6229%" y="517" width="0.0163%" height="15" fill="rgb(221,26,2)" fg:x="344195" fg:w="211"/><text x="26.8729%" y="527.50"></text></g><g><title>_raw_spin_lock (139 samples, 0.01%)</title><rect x="26.6285%" y="501" width="0.0108%" height="15" fill="rgb(254,61,31)" fg:x="344267" fg:w="139"/><text x="26.8785%" y="511.50"></text></g><g><title>fill_stack_inode_item (488 samples, 0.04%)</title><rect x="26.6114%" y="533" width="0.0377%" height="15" fill="rgb(222,173,38)" fg:x="344046" fg:w="488"/><text x="26.8614%" y="543.50"></text></g><g><title>btrfs_delayed_update_inode (2,165 samples, 0.17%)</title><rect x="26.5009%" y="549" width="0.1675%" height="15" fill="rgb(218,50,12)" fg:x="342617" fg:w="2165"/><text x="26.7509%" y="559.50"></text></g><g><title>mutex_unlock (134 samples, 0.01%)</title><rect x="26.6580%" y="533" width="0.0104%" height="15" fill="rgb(223,88,40)" fg:x="344648" fg:w="134"/><text x="26.9080%" y="543.50"></text></g><g><title>_raw_spin_lock (441 samples, 0.03%)</title><rect x="26.6783%" y="533" width="0.0341%" height="15" fill="rgb(237,54,19)" fg:x="344911" fg:w="441"/><text x="26.9283%" y="543.50"></text></g><g><title>btrfs_update_inode (3,472 samples, 0.27%)</title><rect x="26.4694%" y="565" width="0.2686%" height="15" fill="rgb(251,129,25)" fg:x="342210" fg:w="3472"/><text x="26.7194%" y="575.50"></text></g><g><title>btrfs_update_root_times (900 samples, 0.07%)</title><rect x="26.6683%" y="549" width="0.0696%" height="15" fill="rgb(238,97,19)" fg:x="344782" fg:w="900"/><text x="26.9183%" y="559.50"></text></g><g><title>ktime_get_real_ts64 (329 samples, 0.03%)</title><rect x="26.7125%" y="533" width="0.0254%" height="15" fill="rgb(240,169,18)" fg:x="345353" fg:w="329"/><text x="26.9625%" y="543.50"></text></g><g><title>btrfs_add_link (119,885 samples, 9.27%)</title><rect x="17.4852%" y="581" width="9.2729%" height="15" fill="rgb(230,187,49)" fg:x="226058" fg:w="119885"/><text x="17.7352%" y="591.50">btrfs_add_link</text></g><g><title>fs_umode_to_ftype (162 samples, 0.01%)</title><rect x="26.7456%" y="565" width="0.0125%" height="15" fill="rgb(209,44,26)" fg:x="345781" fg:w="162"/><text x="26.9956%" y="575.50"></text></g><g><title>__percpu_counter_compare (187 samples, 0.01%)</title><rect x="26.7729%" y="565" width="0.0145%" height="15" fill="rgb(244,0,6)" fg:x="346134" fg:w="187"/><text x="27.0229%" y="575.50"></text></g><g><title>btrfs_balance_delayed_items (527 samples, 0.04%)</title><rect x="26.7874%" y="565" width="0.0408%" height="15" fill="rgb(248,18,21)" fg:x="346321" fg:w="527"/><text x="27.0374%" y="575.50"></text></g><g><title>_raw_spin_lock (423 samples, 0.03%)</title><rect x="26.8468%" y="533" width="0.0327%" height="15" fill="rgb(245,180,19)" fg:x="347089" fg:w="423"/><text x="27.0968%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (355 samples, 0.03%)</title><rect x="26.8520%" y="517" width="0.0275%" height="15" fill="rgb(252,118,36)" fg:x="347157" fg:w="355"/><text x="27.1020%" y="527.50"></text></g><g><title>select_task_rq_fair (394 samples, 0.03%)</title><rect x="26.9124%" y="517" width="0.0305%" height="15" fill="rgb(210,224,19)" fg:x="347938" fg:w="394"/><text x="27.1624%" y="527.50"></text></g><g><title>enqueue_task_fair (343 samples, 0.03%)</title><rect x="26.9486%" y="501" width="0.0265%" height="15" fill="rgb(218,30,24)" fg:x="348406" fg:w="343"/><text x="27.1986%" y="511.50"></text></g><g><title>enqueue_entity (280 samples, 0.02%)</title><rect x="26.9535%" y="485" width="0.0217%" height="15" fill="rgb(219,75,50)" fg:x="348469" fg:w="280"/><text x="27.2035%" y="495.50"></text></g><g><title>ttwu_do_activate (557 samples, 0.04%)</title><rect x="26.9455%" y="517" width="0.0431%" height="15" fill="rgb(234,72,50)" fg:x="348366" fg:w="557"/><text x="27.1955%" y="527.50"></text></g><g><title>psi_task_change (172 samples, 0.01%)</title><rect x="26.9753%" y="501" width="0.0133%" height="15" fill="rgb(219,100,48)" fg:x="348751" fg:w="172"/><text x="27.2253%" y="511.50"></text></g><g><title>ttwu_do_wakeup (153 samples, 0.01%)</title><rect x="26.9886%" y="517" width="0.0118%" height="15" fill="rgb(253,5,41)" fg:x="348923" fg:w="153"/><text x="27.2386%" y="527.50"></text></g><g><title>check_preempt_curr (140 samples, 0.01%)</title><rect x="26.9896%" y="501" width="0.0108%" height="15" fill="rgb(247,181,11)" fg:x="348936" fg:w="140"/><text x="27.2396%" y="511.50"></text></g><g><title>__queue_work (2,208 samples, 0.17%)</title><rect x="26.8374%" y="549" width="0.1708%" height="15" fill="rgb(222,223,25)" fg:x="346968" fg:w="2208"/><text x="27.0874%" y="559.50"></text></g><g><title>try_to_wake_up (1,567 samples, 0.12%)</title><rect x="26.8870%" y="533" width="0.1212%" height="15" fill="rgb(214,198,28)" fg:x="347609" fg:w="1567"/><text x="27.1370%" y="543.50"></text></g><g><title>btrfs_btree_balance_dirty (3,250 samples, 0.25%)</title><rect x="26.7581%" y="581" width="0.2514%" height="15" fill="rgb(230,46,43)" fg:x="345943" fg:w="3250"/><text x="27.0081%" y="591.50"></text></g><g><title>queue_work_on (2,256 samples, 0.17%)</title><rect x="26.8350%" y="565" width="0.1745%" height="15" fill="rgb(233,65,53)" fg:x="346937" fg:w="2256"/><text x="27.0850%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (139 samples, 0.01%)</title><rect x="27.0576%" y="533" width="0.0108%" height="15" fill="rgb(221,121,27)" fg:x="349815" fg:w="139"/><text x="27.3076%" y="543.50"></text></g><g><title>btrfs_search_forward (130 samples, 0.01%)</title><rect x="27.0705%" y="533" width="0.0101%" height="15" fill="rgb(247,70,47)" fg:x="349982" fg:w="130"/><text x="27.3205%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (138 samples, 0.01%)</title><rect x="27.0828%" y="517" width="0.0107%" height="15" fill="rgb(228,85,35)" fg:x="350141" fg:w="138"/><text x="27.3328%" y="527.50"></text></g><g><title>copy_items.isra.0 (163 samples, 0.01%)</title><rect x="27.0819%" y="533" width="0.0126%" height="15" fill="rgb(209,50,18)" fg:x="350129" fg:w="163"/><text x="27.3319%" y="543.50"></text></g><g><title>drop_objectid_items (264 samples, 0.02%)</title><rect x="27.0945%" y="533" width="0.0204%" height="15" fill="rgb(250,19,35)" fg:x="350292" fg:w="264"/><text x="27.3445%" y="543.50"></text></g><g><title>btrfs_search_forward (174 samples, 0.01%)</title><rect x="27.1211%" y="501" width="0.0135%" height="15" fill="rgb(253,107,29)" fg:x="350636" fg:w="174"/><text x="27.3711%" y="511.50"></text></g><g><title>btrfs_search_slot (142 samples, 0.01%)</title><rect x="27.1396%" y="469" width="0.0110%" height="15" fill="rgb(252,179,29)" fg:x="350875" fg:w="142"/><text x="27.3896%" y="479.50"></text></g><g><title>btrfs_insert_empty_items (309 samples, 0.02%)</title><rect x="27.1396%" y="485" width="0.0239%" height="15" fill="rgb(238,194,6)" fg:x="350875" fg:w="309"/><text x="27.3896%" y="495.50"></text></g><g><title>setup_items_for_insert (167 samples, 0.01%)</title><rect x="27.1506%" y="469" width="0.0129%" height="15" fill="rgb(238,164,29)" fg:x="351017" fg:w="167"/><text x="27.4006%" y="479.50"></text></g><g><title>insert_dir_log_key (330 samples, 0.03%)</title><rect x="27.1395%" y="501" width="0.0255%" height="15" fill="rgb(224,25,9)" fg:x="350874" fg:w="330"/><text x="27.3895%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (200 samples, 0.02%)</title><rect x="27.1984%" y="453" width="0.0155%" height="15" fill="rgb(244,153,23)" fg:x="351635" fg:w="200"/><text x="27.4484%" y="463.50"></text></g><g><title>__btrfs_read_lock_root_node (250 samples, 0.02%)</title><rect x="27.1981%" y="469" width="0.0193%" height="15" fill="rgb(212,203,14)" fg:x="351631" fg:w="250"/><text x="27.4481%" y="479.50"></text></g><g><title>btrfs_search_slot (636 samples, 0.05%)</title><rect x="27.1942%" y="485" width="0.0492%" height="15" fill="rgb(220,164,20)" fg:x="351581" fg:w="636"/><text x="27.4442%" y="495.50"></text></g><g><title>overwrite_item (1,168 samples, 0.09%)</title><rect x="27.1651%" y="501" width="0.0903%" height="15" fill="rgb(222,203,48)" fg:x="351204" fg:w="1168"/><text x="27.4151%" y="511.50"></text></g><g><title>log_directory_changes (1,837 samples, 0.14%)</title><rect x="27.1161%" y="533" width="0.1421%" height="15" fill="rgb(215,159,22)" fg:x="350571" fg:w="1837"/><text x="27.3661%" y="543.50"></text></g><g><title>log_dir_items (1,836 samples, 0.14%)</title><rect x="27.1162%" y="517" width="0.1420%" height="15" fill="rgb(216,183,47)" fg:x="350572" fg:w="1836"/><text x="27.3662%" y="527.50"></text></g><g><title>btrfs_log_inode (2,660 samples, 0.21%)</title><rect x="27.0527%" y="549" width="0.2057%" height="15" fill="rgb(229,195,25)" fg:x="349752" fg:w="2660"/><text x="27.3027%" y="559.50"></text></g><g><title>btrfs_release_path (135 samples, 0.01%)</title><rect x="27.2586%" y="549" width="0.0104%" height="15" fill="rgb(224,132,51)" fg:x="352414" fg:w="135"/><text x="27.5086%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (251 samples, 0.02%)</title><rect x="27.2924%" y="533" width="0.0194%" height="15" fill="rgb(240,63,7)" fg:x="352850" fg:w="251"/><text x="27.5424%" y="543.50"></text></g><g><title>find_extent_buffer (239 samples, 0.02%)</title><rect x="27.3252%" y="517" width="0.0185%" height="15" fill="rgb(249,182,41)" fg:x="353275" fg:w="239"/><text x="27.5752%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (463 samples, 0.04%)</title><rect x="27.3118%" y="533" width="0.0358%" height="15" fill="rgb(243,47,26)" fg:x="353101" fg:w="463"/><text x="27.5618%" y="543.50"></text></g><g><title>btrfs_search_slot (1,043 samples, 0.08%)</title><rect x="27.2691%" y="549" width="0.0807%" height="15" fill="rgb(233,48,2)" fg:x="352549" fg:w="1043"/><text x="27.5191%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (176 samples, 0.01%)</title><rect x="27.3843%" y="469" width="0.0136%" height="15" fill="rgb(244,165,34)" fg:x="354039" fg:w="176"/><text x="27.6343%" y="479.50"></text></g><g><title>insert_dir_log_key (185 samples, 0.01%)</title><rect x="27.3843%" y="485" width="0.0143%" height="15" fill="rgb(207,89,7)" fg:x="354039" fg:w="185"/><text x="27.6343%" y="495.50"></text></g><g><title>btrfs_insert_empty_items (174 samples, 0.01%)</title><rect x="27.4041%" y="469" width="0.0135%" height="15" fill="rgb(244,117,36)" fg:x="354294" fg:w="174"/><text x="27.6541%" y="479.50"></text></g><g><title>btrfs_search_slot (325 samples, 0.03%)</title><rect x="27.4220%" y="469" width="0.0251%" height="15" fill="rgb(226,144,34)" fg:x="354526" fg:w="325"/><text x="27.6720%" y="479.50"></text></g><g><title>overwrite_item (707 samples, 0.05%)</title><rect x="27.3987%" y="485" width="0.0547%" height="15" fill="rgb(213,23,19)" fg:x="354224" fg:w="707"/><text x="27.6487%" y="495.50"></text></g><g><title>btrfs_log_inode (1,322 samples, 0.10%)</title><rect x="27.3532%" y="533" width="0.1023%" height="15" fill="rgb(217,75,12)" fg:x="353636" fg:w="1322"/><text x="27.6032%" y="543.50"></text></g><g><title>log_directory_changes (1,037 samples, 0.08%)</title><rect x="27.3752%" y="517" width="0.0802%" height="15" fill="rgb(224,159,17)" fg:x="353921" fg:w="1037"/><text x="27.6252%" y="527.50"></text></g><g><title>log_dir_items (1,037 samples, 0.08%)</title><rect x="27.3752%" y="501" width="0.0802%" height="15" fill="rgb(217,118,1)" fg:x="353921" fg:w="1037"/><text x="27.6252%" y="511.50"></text></g><g><title>log_new_dir_dentries (1,393 samples, 0.11%)</title><rect x="27.3522%" y="549" width="0.1077%" height="15" fill="rgb(232,180,48)" fg:x="353623" fg:w="1393"/><text x="27.6022%" y="559.50"></text></g><g><title>btrfs_log_new_name (5,791 samples, 0.45%)</title><rect x="27.0137%" y="581" width="0.4479%" height="15" fill="rgb(230,27,33)" fg:x="349247" fg:w="5791"/><text x="27.2637%" y="591.50"></text></g><g><title>btrfs_log_inode_parent (5,638 samples, 0.44%)</title><rect x="27.0255%" y="565" width="0.4361%" height="15" fill="rgb(205,31,21)" fg:x="349400" fg:w="5638"/><text x="27.2755%" y="575.50"></text></g><g><title>__list_add_valid (137 samples, 0.01%)</title><rect x="27.5520%" y="533" width="0.0106%" height="15" fill="rgb(253,59,4)" fg:x="356207" fg:w="137"/><text x="27.8020%" y="543.50"></text></g><g><title>_raw_spin_lock (220 samples, 0.02%)</title><rect x="27.5629%" y="533" width="0.0170%" height="15" fill="rgb(224,201,9)" fg:x="356347" fg:w="220"/><text x="27.8129%" y="543.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,137 samples, 0.09%)</title><rect x="27.5110%" y="549" width="0.0879%" height="15" fill="rgb(229,206,30)" fg:x="355677" fg:w="1137"/><text x="27.7610%" y="559.50"></text></g><g><title>_raw_spin_lock (340 samples, 0.03%)</title><rect x="27.6031%" y="533" width="0.0263%" height="15" fill="rgb(212,67,47)" fg:x="356867" fg:w="340"/><text x="27.8531%" y="543.50"></text></g><g><title>btrfs_block_rsv_migrate (391 samples, 0.03%)</title><rect x="27.5992%" y="549" width="0.0302%" height="15" fill="rgb(211,96,50)" fg:x="356817" fg:w="391"/><text x="27.8492%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,057 samples, 0.08%)</title><rect x="27.6295%" y="549" width="0.0818%" height="15" fill="rgb(252,114,18)" fg:x="357208" fg:w="1057"/><text x="27.8795%" y="559.50"></text></g><g><title>btrfs_get_delayed_node (1,027 samples, 0.08%)</title><rect x="27.6318%" y="533" width="0.0794%" height="15" fill="rgb(223,58,37)" fg:x="357238" fg:w="1027"/><text x="27.8818%" y="543.50"></text></g><g><title>inode_get_bytes (188 samples, 0.01%)</title><rect x="27.7212%" y="533" width="0.0145%" height="15" fill="rgb(237,70,4)" fg:x="358394" fg:w="188"/><text x="27.9712%" y="543.50"></text></g><g><title>_raw_spin_lock (175 samples, 0.01%)</title><rect x="27.7222%" y="517" width="0.0135%" height="15" fill="rgb(244,85,46)" fg:x="358407" fg:w="175"/><text x="27.9722%" y="527.50"></text></g><g><title>fill_stack_inode_item (393 samples, 0.03%)</title><rect x="27.7112%" y="549" width="0.0304%" height="15" fill="rgb(223,39,52)" fg:x="358265" fg:w="393"/><text x="27.9612%" y="559.50"></text></g><g><title>mutex_lock (259 samples, 0.02%)</title><rect x="27.7416%" y="549" width="0.0200%" height="15" fill="rgb(218,200,14)" fg:x="358658" fg:w="259"/><text x="27.9916%" y="559.50"></text></g><g><title>btrfs_delayed_update_inode (3,715 samples, 0.29%)</title><rect x="27.4816%" y="565" width="0.2873%" height="15" fill="rgb(208,171,16)" fg:x="355297" fg:w="3715"/><text x="27.7316%" y="575.50"></text></g><g><title>_raw_spin_lock (141 samples, 0.01%)</title><rect x="27.7714%" y="549" width="0.0109%" height="15" fill="rgb(234,200,18)" fg:x="359043" fg:w="141"/><text x="28.0214%" y="559.50"></text></g><g><title>btrfs_update_inode (4,297 samples, 0.33%)</title><rect x="27.4650%" y="581" width="0.3324%" height="15" fill="rgb(228,45,11)" fg:x="355082" fg:w="4297"/><text x="27.7150%" y="591.50"></text></g><g><title>btrfs_update_root_times (367 samples, 0.03%)</title><rect x="27.7690%" y="565" width="0.0284%" height="15" fill="rgb(237,182,11)" fg:x="359012" fg:w="367"/><text x="28.0190%" y="575.50"></text></g><g><title>ktime_get_real_ts64 (195 samples, 0.02%)</title><rect x="27.7823%" y="549" width="0.0151%" height="15" fill="rgb(241,175,49)" fg:x="359184" fg:w="195"/><text x="28.0323%" y="559.50"></text></g><g><title>_raw_spin_lock (130 samples, 0.01%)</title><rect x="27.8248%" y="549" width="0.0101%" height="15" fill="rgb(247,38,35)" fg:x="359734" fg:w="130"/><text x="28.0748%" y="559.50"></text></g><g><title>__d_instantiate (453 samples, 0.04%)</title><rect x="27.8049%" y="565" width="0.0350%" height="15" fill="rgb(228,39,49)" fg:x="359476" fg:w="453"/><text x="28.0549%" y="575.50"></text></g><g><title>d_instantiate (735 samples, 0.06%)</title><rect x="27.8023%" y="581" width="0.0569%" height="15" fill="rgb(226,101,26)" fg:x="359442" fg:w="735"/><text x="28.0523%" y="591.50"></text></g><g><title>security_d_instantiate (152 samples, 0.01%)</title><rect x="27.8473%" y="565" width="0.0118%" height="15" fill="rgb(206,141,19)" fg:x="360025" fg:w="152"/><text x="28.0973%" y="575.50"></text></g><g><title>ihold (170 samples, 0.01%)</title><rect x="27.8591%" y="581" width="0.0131%" height="15" fill="rgb(211,200,13)" fg:x="360177" fg:w="170"/><text x="28.1091%" y="591.50"></text></g><g><title>_raw_spin_lock (469 samples, 0.04%)</title><rect x="27.9979%" y="549" width="0.0363%" height="15" fill="rgb(241,121,6)" fg:x="361972" fg:w="469"/><text x="28.2479%" y="559.50"></text></g><g><title>_raw_spin_lock (898 samples, 0.07%)</title><rect x="28.0893%" y="517" width="0.0695%" height="15" fill="rgb(234,221,29)" fg:x="363153" fg:w="898"/><text x="28.3393%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (357 samples, 0.03%)</title><rect x="28.1311%" y="501" width="0.0276%" height="15" fill="rgb(229,136,5)" fg:x="363694" fg:w="357"/><text x="28.3811%" y="511.50"></text></g><g><title>_raw_spin_lock (180 samples, 0.01%)</title><rect x="28.2373%" y="485" width="0.0139%" height="15" fill="rgb(238,36,11)" fg:x="365066" fg:w="180"/><text x="28.4873%" y="495.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,194 samples, 0.09%)</title><rect x="28.1589%" y="517" width="0.0924%" height="15" fill="rgb(251,55,41)" fg:x="364053" fg:w="1194"/><text x="28.4089%" y="527.50"></text></g><g><title>btrfs_reduce_alloc_profile (510 samples, 0.04%)</title><rect x="28.2118%" y="501" width="0.0394%" height="15" fill="rgb(242,34,40)" fg:x="364737" fg:w="510"/><text x="28.4618%" y="511.50"></text></g><g><title>calc_available_free_space.isra.0 (743 samples, 0.06%)</title><rect x="28.2513%" y="517" width="0.0575%" height="15" fill="rgb(215,42,17)" fg:x="365247" fg:w="743"/><text x="28.5013%" y="527.50"></text></g><g><title>btrfs_reduce_alloc_profile (395 samples, 0.03%)</title><rect x="28.2782%" y="501" width="0.0306%" height="15" fill="rgb(207,44,46)" fg:x="365595" fg:w="395"/><text x="28.5282%" y="511.50"></text></g><g><title>_raw_spin_lock (232 samples, 0.02%)</title><rect x="28.2908%" y="485" width="0.0179%" height="15" fill="rgb(211,206,28)" fg:x="365758" fg:w="232"/><text x="28.5408%" y="495.50"></text></g><g><title>__reserve_bytes (3,144 samples, 0.24%)</title><rect x="28.0656%" y="533" width="0.2432%" height="15" fill="rgb(237,167,16)" fg:x="362847" fg:w="3144"/><text x="28.3156%" y="543.50"></text></g><g><title>btrfs_block_rsv_add (4,197 samples, 0.32%)</title><rect x="27.9844%" y="565" width="0.3246%" height="15" fill="rgb(233,66,6)" fg:x="361797" fg:w="4197"/><text x="28.2344%" y="575.50"></text></g><g><title>btrfs_reserve_metadata_bytes (3,551 samples, 0.27%)</title><rect x="28.0344%" y="549" width="0.2747%" height="15" fill="rgb(246,123,29)" fg:x="362443" fg:w="3551"/><text x="28.2844%" y="559.50"></text></g><g><title>_raw_spin_lock (343 samples, 0.03%)</title><rect x="28.3420%" y="549" width="0.0265%" height="15" fill="rgb(209,62,40)" fg:x="366420" fg:w="343"/><text x="28.5920%" y="559.50"></text></g><g><title>join_transaction (714 samples, 0.06%)</title><rect x="28.3135%" y="565" width="0.0552%" height="15" fill="rgb(218,4,25)" fg:x="366052" fg:w="714"/><text x="28.5635%" y="575.50"></text></g><g><title>kmem_cache_alloc (586 samples, 0.05%)</title><rect x="28.3688%" y="565" width="0.0453%" height="15" fill="rgb(253,91,49)" fg:x="366766" fg:w="586"/><text x="28.6188%" y="575.50"></text></g><g><title>_raw_spin_lock (376 samples, 0.03%)</title><rect x="28.4288%" y="549" width="0.0291%" height="15" fill="rgb(228,155,29)" fg:x="367542" fg:w="376"/><text x="28.6788%" y="559.50"></text></g><g><title>btrfs_link (146,689 samples, 11.35%)</title><rect x="17.1120%" y="597" width="11.3462%" height="15" fill="rgb(243,57,37)" fg:x="221233" fg:w="146689"/><text x="17.3620%" y="607.50">btrfs_link</text></g><g><title>start_transaction (7,533 samples, 0.58%)</title><rect x="27.8755%" y="581" width="0.5827%" height="15" fill="rgb(244,167,17)" fg:x="360389" fg:w="7533"/><text x="28.1255%" y="591.50"></text></g><g><title>wait_current_trans (570 samples, 0.04%)</title><rect x="28.4141%" y="565" width="0.0441%" height="15" fill="rgb(207,181,38)" fg:x="367352" fg:w="570"/><text x="28.6641%" y="575.50"></text></g><g><title>down_write (185 samples, 0.01%)</title><rect x="28.4582%" y="597" width="0.0143%" height="15" fill="rgb(211,8,23)" fg:x="367922" fg:w="185"/><text x="28.7082%" y="607.50"></text></g><g><title>fsnotify (537 samples, 0.04%)</title><rect x="28.4748%" y="597" width="0.0415%" height="15" fill="rgb(235,11,44)" fg:x="368137" fg:w="537"/><text x="28.7248%" y="607.50"></text></g><g><title>btrfs_permission (189 samples, 0.01%)</title><rect x="28.5236%" y="581" width="0.0146%" height="15" fill="rgb(248,18,52)" fg:x="368768" fg:w="189"/><text x="28.7736%" y="591.50"></text></g><g><title>inode_permission.part.0 (311 samples, 0.02%)</title><rect x="28.5163%" y="597" width="0.0241%" height="15" fill="rgb(208,4,7)" fg:x="368674" fg:w="311"/><text x="28.7663%" y="607.50"></text></g><g><title>map_id_up (235 samples, 0.02%)</title><rect x="28.5404%" y="597" width="0.0182%" height="15" fill="rgb(240,17,39)" fg:x="368985" fg:w="235"/><text x="28.7904%" y="607.50"></text></g><g><title>__x64_sys_link (199,801 samples, 15.45%)</title><rect x="13.1279%" y="645" width="15.4543%" height="15" fill="rgb(207,170,3)" fg:x="169724" fg:w="199801"/><text x="13.3779%" y="655.50">__x64_sys_link</text></g><g><title>do_linkat (199,760 samples, 15.45%)</title><rect x="13.1310%" y="629" width="15.4511%" height="15" fill="rgb(236,100,52)" fg:x="169765" fg:w="199760"/><text x="13.3810%" y="639.50">do_linkat</text></g><g><title>vfs_link (148,972 samples, 11.52%)</title><rect x="17.0594%" y="613" width="11.5227%" height="15" fill="rgb(246,78,51)" fg:x="220553" fg:w="148972"/><text x="17.3094%" y="623.50">vfs_link</text></g><g><title>up_write (166 samples, 0.01%)</title><rect x="28.5693%" y="597" width="0.0128%" height="15" fill="rgb(211,17,15)" fg:x="369359" fg:w="166"/><text x="28.8193%" y="607.50"></text></g><g><title>do_syscall_64 (200,024 samples, 15.47%)</title><rect x="13.1155%" y="661" width="15.4715%" height="15" fill="rgb(209,59,46)" fg:x="169564" fg:w="200024"/><text x="13.3655%" y="671.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (200,566 samples, 15.51%)</title><rect x="13.1010%" y="677" width="15.5135%" height="15" fill="rgb(210,92,25)" fg:x="169376" fg:w="200566"/><text x="13.3510%" y="687.50">entry_SYSCALL_64_after_h..</text></g><g><title>syscall_exit_to_user_mode (354 samples, 0.03%)</title><rect x="28.5870%" y="661" width="0.0274%" height="15" fill="rgb(238,174,52)" fg:x="369588" fg:w="354"/><text x="28.8370%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (310 samples, 0.02%)</title><rect x="28.5904%" y="645" width="0.0240%" height="15" fill="rgb(230,73,7)" fg:x="369632" fg:w="310"/><text x="28.8404%" y="655.50"></text></g><g><title>__GI___link (201,442 samples, 15.58%)</title><rect x="13.0503%" y="693" width="15.5812%" height="15" fill="rgb(243,124,40)" fg:x="168721" fg:w="201442"/><text x="13.3003%" y="703.50">__GI___link</text></g><g><title>syscall_return_via_sysret (204 samples, 0.02%)</title><rect x="28.6157%" y="677" width="0.0158%" height="15" fill="rgb(244,170,11)" fg:x="369959" fg:w="204"/><text x="28.8657%" y="687.50"></text></g><g><title>entry_SYSCALL_64 (557 samples, 0.04%)</title><rect x="28.6723%" y="677" width="0.0431%" height="15" fill="rgb(207,114,54)" fg:x="370690" fg:w="557"/><text x="28.9223%" y="687.50"></text></g><g><title>_copy_to_user (837 samples, 0.06%)</title><rect x="28.7928%" y="613" width="0.0647%" height="15" fill="rgb(205,42,20)" fg:x="372248" fg:w="837"/><text x="29.0428%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (729 samples, 0.06%)</title><rect x="28.8011%" y="597" width="0.0564%" height="15" fill="rgb(230,30,28)" fg:x="372356" fg:w="729"/><text x="29.0511%" y="607.50"></text></g><g><title>from_kgid_munged (169 samples, 0.01%)</title><rect x="28.8577%" y="613" width="0.0131%" height="15" fill="rgb(205,73,54)" fg:x="373087" fg:w="169"/><text x="29.1077%" y="623.50"></text></g><g><title>map_id_up (149 samples, 0.01%)</title><rect x="28.8592%" y="597" width="0.0115%" height="15" fill="rgb(254,227,23)" fg:x="373107" fg:w="149"/><text x="29.1092%" y="607.50"></text></g><g><title>cp_new_stat (1,739 samples, 0.13%)</title><rect x="28.7567%" y="629" width="0.1345%" height="15" fill="rgb(228,202,34)" fg:x="371782" fg:w="1739"/><text x="29.0067%" y="639.50"></text></g><g><title>from_kuid_munged (265 samples, 0.02%)</title><rect x="28.8707%" y="613" width="0.0205%" height="15" fill="rgb(222,225,37)" fg:x="373256" fg:w="265"/><text x="29.1207%" y="623.50"></text></g><g><title>map_id_up (199 samples, 0.02%)</title><rect x="28.8758%" y="597" width="0.0154%" height="15" fill="rgb(221,14,54)" fg:x="373322" fg:w="199"/><text x="29.1258%" y="607.50"></text></g><g><title>_raw_spin_lock (231 samples, 0.02%)</title><rect x="29.0070%" y="597" width="0.0179%" height="15" fill="rgb(254,102,2)" fg:x="375017" fg:w="231"/><text x="29.2570%" y="607.50"></text></g><g><title>generic_fillattr (161 samples, 0.01%)</title><rect x="29.0260%" y="597" width="0.0125%" height="15" fill="rgb(232,104,17)" fg:x="375263" fg:w="161"/><text x="29.2760%" y="607.50"></text></g><g><title>btrfs_getattr (1,954 samples, 0.15%)</title><rect x="28.9062%" y="613" width="0.1511%" height="15" fill="rgb(250,220,14)" fg:x="373715" fg:w="1954"/><text x="29.1562%" y="623.50"></text></g><g><title>inode_get_bytes (245 samples, 0.02%)</title><rect x="29.0384%" y="597" width="0.0190%" height="15" fill="rgb(241,158,9)" fg:x="375424" fg:w="245"/><text x="29.2884%" y="607.50"></text></g><g><title>_raw_spin_lock (201 samples, 0.02%)</title><rect x="29.0418%" y="581" width="0.0155%" height="15" fill="rgb(246,9,43)" fg:x="375468" fg:w="201"/><text x="29.2918%" y="591.50"></text></g><g><title>kmem_cache_free (999 samples, 0.08%)</title><rect x="29.0944%" y="597" width="0.0773%" height="15" fill="rgb(206,73,33)" fg:x="376147" fg:w="999"/><text x="29.3444%" y="607.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (160 samples, 0.01%)</title><rect x="29.1593%" y="581" width="0.0124%" height="15" fill="rgb(222,79,8)" fg:x="376986" fg:w="160"/><text x="29.4093%" y="591.50"></text></g><g><title>__legitimize_mnt (461 samples, 0.04%)</title><rect x="29.2125%" y="533" width="0.0357%" height="15" fill="rgb(234,8,54)" fg:x="377675" fg:w="461"/><text x="29.4625%" y="543.50"></text></g><g><title>__legitimize_path (799 samples, 0.06%)</title><rect x="29.2057%" y="549" width="0.0618%" height="15" fill="rgb(209,134,38)" fg:x="377586" fg:w="799"/><text x="29.4557%" y="559.50"></text></g><g><title>lockref_get_not_dead (246 samples, 0.02%)</title><rect x="29.2484%" y="533" width="0.0190%" height="15" fill="rgb(230,127,29)" fg:x="378139" fg:w="246"/><text x="29.4984%" y="543.50"></text></g><g><title>complete_walk (1,072 samples, 0.08%)</title><rect x="29.1939%" y="581" width="0.0829%" height="15" fill="rgb(242,44,41)" fg:x="377434" fg:w="1072"/><text x="29.4439%" y="591.50"></text></g><g><title>try_to_unlazy (1,012 samples, 0.08%)</title><rect x="29.1985%" y="565" width="0.0783%" height="15" fill="rgb(222,56,43)" fg:x="377494" fg:w="1012"/><text x="29.4485%" y="575.50"></text></g><g><title>btrfs_permission (341 samples, 0.03%)</title><rect x="30.3900%" y="549" width="0.0264%" height="15" fill="rgb(238,39,47)" fg:x="392898" fg:w="341"/><text x="30.6400%" y="559.50"></text></g><g><title>inode_permission.part.0 (8,149 samples, 0.63%)</title><rect x="29.9415%" y="565" width="0.6303%" height="15" fill="rgb(226,79,43)" fg:x="387099" fg:w="8149"/><text x="30.1915%" y="575.50"></text></g><g><title>generic_permission (2,009 samples, 0.16%)</title><rect x="30.4164%" y="549" width="0.1554%" height="15" fill="rgb(242,105,53)" fg:x="393239" fg:w="2009"/><text x="30.6664%" y="559.50"></text></g><g><title>security_inode_permission (940 samples, 0.07%)</title><rect x="30.5718%" y="565" width="0.0727%" height="15" fill="rgb(251,132,46)" fg:x="395248" fg:w="940"/><text x="30.8218%" y="575.50"></text></g><g><title>__d_lookup_rcu (11,344 samples, 0.88%)</title><rect x="31.0756%" y="533" width="0.8774%" height="15" fill="rgb(231,77,14)" fg:x="401762" fg:w="11344"/><text x="31.3256%" y="543.50"></text></g><g><title>lookup_fast (13,964 samples, 1.08%)</title><rect x="30.8743%" y="549" width="1.0801%" height="15" fill="rgb(240,135,9)" fg:x="399159" fg:w="13964"/><text x="31.1243%" y="559.50"></text></g><g><title>page_put_link (507 samples, 0.04%)</title><rect x="31.9544%" y="549" width="0.0392%" height="15" fill="rgb(248,109,14)" fg:x="413123" fg:w="507"/><text x="32.2044%" y="559.50"></text></g><g><title>__lookup_mnt (423 samples, 0.03%)</title><rect x="32.2598%" y="533" width="0.0327%" height="15" fill="rgb(227,146,52)" fg:x="417072" fg:w="423"/><text x="32.5098%" y="543.50"></text></g><g><title>atime_needs_update (544 samples, 0.04%)</title><rect x="32.2943%" y="533" width="0.0421%" height="15" fill="rgb(232,54,3)" fg:x="417518" fg:w="544"/><text x="32.5443%" y="543.50"></text></g><g><title>current_time (305 samples, 0.02%)</title><rect x="32.3128%" y="517" width="0.0236%" height="15" fill="rgb(229,201,43)" fg:x="417757" fg:w="305"/><text x="32.5628%" y="527.50"></text></g><g><title>ktime_get_coarse_real_ts64 (143 samples, 0.01%)</title><rect x="32.3254%" y="501" width="0.0111%" height="15" fill="rgb(252,161,33)" fg:x="417919" fg:w="143"/><text x="32.5754%" y="511.50"></text></g><g><title>page_get_link (2,304 samples, 0.18%)</title><rect x="32.3463%" y="533" width="0.1782%" height="15" fill="rgb(226,146,40)" fg:x="418190" fg:w="2304"/><text x="32.5963%" y="543.50"></text></g><g><title>pagecache_get_page (2,071 samples, 0.16%)</title><rect x="32.3643%" y="517" width="0.1602%" height="15" fill="rgb(219,47,25)" fg:x="418423" fg:w="2071"/><text x="32.6143%" y="527.50"></text></g><g><title>find_get_entry (1,812 samples, 0.14%)</title><rect x="32.3844%" y="501" width="0.1402%" height="15" fill="rgb(250,135,13)" fg:x="418682" fg:w="1812"/><text x="32.6344%" y="511.50"></text></g><g><title>xas_load (401 samples, 0.03%)</title><rect x="32.4935%" y="485" width="0.0310%" height="15" fill="rgb(219,229,18)" fg:x="420093" fg:w="401"/><text x="32.7435%" y="495.50"></text></g><g><title>xas_start (372 samples, 0.03%)</title><rect x="32.4958%" y="469" width="0.0288%" height="15" fill="rgb(217,152,27)" fg:x="420122" fg:w="372"/><text x="32.7458%" y="479.50"></text></g><g><title>link_path_walk.part.0 (42,048 samples, 3.25%)</title><rect x="29.2768%" y="581" width="3.2523%" height="15" fill="rgb(225,71,47)" fg:x="378506" fg:w="42048"/><text x="29.5268%" y="591.50">lin..</text></g><g><title>walk_component (24,366 samples, 1.88%)</title><rect x="30.6445%" y="565" width="1.8847%" height="15" fill="rgb(220,139,14)" fg:x="396188" fg:w="24366"/><text x="30.8945%" y="575.50">w..</text></g><g><title>step_into (6,924 samples, 0.54%)</title><rect x="31.9936%" y="549" width="0.5356%" height="15" fill="rgb(247,54,32)" fg:x="413630" fg:w="6924"/><text x="32.2436%" y="559.50"></text></g><g><title>path_init (1,185 samples, 0.09%)</title><rect x="32.5292%" y="581" width="0.0917%" height="15" fill="rgb(252,131,39)" fg:x="420554" fg:w="1185"/><text x="32.7792%" y="591.50"></text></g><g><title>nd_jump_root (783 samples, 0.06%)</title><rect x="32.5603%" y="565" width="0.0606%" height="15" fill="rgb(210,108,39)" fg:x="420956" fg:w="783"/><text x="32.8103%" y="575.50"></text></g><g><title>set_root (629 samples, 0.05%)</title><rect x="32.5722%" y="549" width="0.0487%" height="15" fill="rgb(205,23,29)" fg:x="421110" fg:w="629"/><text x="32.8222%" y="559.50"></text></g><g><title>terminate_walk (333 samples, 0.03%)</title><rect x="32.6208%" y="581" width="0.0258%" height="15" fill="rgb(246,139,46)" fg:x="421739" fg:w="333"/><text x="32.8708%" y="591.50"></text></g><g><title>lookup_fast (2,110 samples, 0.16%)</title><rect x="32.6567%" y="565" width="0.1632%" height="15" fill="rgb(250,81,26)" fg:x="422203" fg:w="2110"/><text x="32.9067%" y="575.50"></text></g><g><title>__d_lookup_rcu (2,017 samples, 0.16%)</title><rect x="32.6639%" y="549" width="0.1560%" height="15" fill="rgb(214,104,7)" fg:x="422296" fg:w="2017"/><text x="32.9139%" y="559.50"></text></g><g><title>path_lookupat (47,292 samples, 3.66%)</title><rect x="29.1716%" y="597" width="3.6580%" height="15" fill="rgb(233,189,8)" fg:x="377146" fg:w="47292"/><text x="29.4216%" y="607.50">path..</text></g><g><title>walk_component (2,366 samples, 0.18%)</title><rect x="32.6466%" y="581" width="0.1830%" height="15" fill="rgb(228,141,17)" fg:x="422072" fg:w="2366"/><text x="32.8966%" y="591.50"></text></g><g><title>filename_lookup (48,892 samples, 3.78%)</title><rect x="29.0574%" y="613" width="3.7817%" height="15" fill="rgb(247,157,1)" fg:x="375669" fg:w="48892"/><text x="29.3074%" y="623.50">file..</text></g><g><title>mntput_no_expire (149 samples, 0.01%)</title><rect x="32.8406%" y="613" width="0.0115%" height="15" fill="rgb(249,225,5)" fg:x="424581" fg:w="149"/><text x="33.0906%" y="623.50"></text></g><g><title>_cond_resched (131 samples, 0.01%)</title><rect x="32.8648%" y="581" width="0.0101%" height="15" fill="rgb(242,55,13)" fg:x="424893" fg:w="131"/><text x="33.1148%" y="591.50"></text></g><g><title>btrfs_dentry_delete (205 samples, 0.02%)</title><rect x="32.8749%" y="581" width="0.0159%" height="15" fill="rgb(230,49,50)" fg:x="425024" fg:w="205"/><text x="33.1249%" y="591.50"></text></g><g><title>lockref_put_or_lock (247 samples, 0.02%)</title><rect x="32.8908%" y="581" width="0.0191%" height="15" fill="rgb(241,111,38)" fg:x="425229" fg:w="247"/><text x="33.1408%" y="591.50"></text></g><g><title>_raw_spin_lock (193 samples, 0.01%)</title><rect x="32.8949%" y="565" width="0.0149%" height="15" fill="rgb(252,155,4)" fg:x="425283" fg:w="193"/><text x="33.1449%" y="575.50"></text></g><g><title>path_put (758 samples, 0.06%)</title><rect x="32.8522%" y="613" width="0.0586%" height="15" fill="rgb(212,69,32)" fg:x="424730" fg:w="758"/><text x="33.1022%" y="623.50"></text></g><g><title>dput (734 samples, 0.06%)</title><rect x="32.8540%" y="597" width="0.0568%" height="15" fill="rgb(243,107,47)" fg:x="424754" fg:w="734"/><text x="33.1040%" y="607.50"></text></g><g><title>apparmor_inode_getattr (232 samples, 0.02%)</title><rect x="32.9835%" y="597" width="0.0179%" height="15" fill="rgb(247,130,12)" fg:x="426428" fg:w="232"/><text x="33.2335%" y="607.50"></text></g><g><title>security_inode_getattr (2,428 samples, 0.19%)</title><rect x="32.9108%" y="613" width="0.1878%" height="15" fill="rgb(233,74,16)" fg:x="425488" fg:w="2428"/><text x="33.1608%" y="623.50"></text></g><g><title>tomoyo_path_perm (1,237 samples, 0.10%)</title><rect x="33.0029%" y="597" width="0.0957%" height="15" fill="rgb(208,58,18)" fg:x="426679" fg:w="1237"/><text x="33.2529%" y="607.50"></text></g><g><title>tomoyo_init_request_info (816 samples, 0.06%)</title><rect x="33.0355%" y="581" width="0.0631%" height="15" fill="rgb(242,225,1)" fg:x="427100" fg:w="816"/><text x="33.2855%" y="591.50"></text></g><g><title>tomoyo_domain (455 samples, 0.04%)</title><rect x="33.0634%" y="565" width="0.0352%" height="15" fill="rgb(249,39,40)" fg:x="427461" fg:w="455"/><text x="33.3134%" y="575.50"></text></g><g><title>memset_erms (2,040 samples, 0.16%)</title><rect x="33.1965%" y="565" width="0.1578%" height="15" fill="rgb(207,72,44)" fg:x="429182" fg:w="2040"/><text x="33.4465%" y="575.50"></text></g><g><title>_cond_resched (133 samples, 0.01%)</title><rect x="33.3812%" y="549" width="0.0103%" height="15" fill="rgb(215,193,12)" fg:x="431569" fg:w="133"/><text x="33.6312%" y="559.50"></text></g><g><title>kmem_cache_alloc (3,367 samples, 0.26%)</title><rect x="33.1329%" y="581" width="0.2604%" height="15" fill="rgb(248,41,39)" fg:x="428359" fg:w="3367"/><text x="33.3829%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (504 samples, 0.04%)</title><rect x="33.3543%" y="565" width="0.0390%" height="15" fill="rgb(253,85,4)" fg:x="431222" fg:w="504"/><text x="33.6043%" y="575.50"></text></g><g><title>__check_heap_object (287 samples, 0.02%)</title><rect x="33.5447%" y="549" width="0.0222%" height="15" fill="rgb(243,70,31)" fg:x="433683" fg:w="287"/><text x="33.7947%" y="559.50"></text></g><g><title>__virt_addr_valid (781 samples, 0.06%)</title><rect x="33.5669%" y="549" width="0.0604%" height="15" fill="rgb(253,195,26)" fg:x="433970" fg:w="781"/><text x="33.8169%" y="559.50"></text></g><g><title>__check_object_size (1,558 samples, 0.12%)</title><rect x="33.5165%" y="565" width="0.1205%" height="15" fill="rgb(243,42,11)" fg:x="433319" fg:w="1558"/><text x="33.7665%" y="575.50"></text></g><g><title>user_path_at_empty (6,968 samples, 0.54%)</title><rect x="33.0986%" y="613" width="0.5390%" height="15" fill="rgb(239,66,17)" fg:x="427916" fg:w="6968"/><text x="33.3486%" y="623.50"></text></g><g><title>getname_flags.part.0 (6,793 samples, 0.53%)</title><rect x="33.1121%" y="597" width="0.5254%" height="15" fill="rgb(217,132,21)" fg:x="428091" fg:w="6793"/><text x="33.3621%" y="607.50"></text></g><g><title>strncpy_from_user (3,158 samples, 0.24%)</title><rect x="33.3933%" y="581" width="0.2443%" height="15" fill="rgb(252,202,21)" fg:x="431726" fg:w="3158"/><text x="33.6433%" y="591.50"></text></g><g><title>__do_sys_newlstat (63,702 samples, 4.93%)</title><rect x="28.7447%" y="645" width="4.9272%" height="15" fill="rgb(233,98,36)" fg:x="371627" fg:w="63702"/><text x="28.9947%" y="655.50">__do_s..</text></g><g><title>vfs_statx (61,808 samples, 4.78%)</title><rect x="28.8912%" y="629" width="4.7807%" height="15" fill="rgb(216,153,54)" fg:x="373521" fg:w="61808"/><text x="29.1412%" y="639.50">vfs_st..</text></g><g><title>vfs_getattr_nosec (445 samples, 0.03%)</title><rect x="33.6376%" y="613" width="0.0344%" height="15" fill="rgb(250,99,7)" fg:x="434884" fg:w="445"/><text x="33.8876%" y="623.50"></text></g><g><title>do_syscall_64 (64,028 samples, 4.95%)</title><rect x="28.7313%" y="661" width="4.9525%" height="15" fill="rgb(207,56,50)" fg:x="371453" fg:w="64028"/><text x="28.9813%" y="671.50">do_sys..</text></g><g><title>syscall_enter_from_user_mode (135 samples, 0.01%)</title><rect x="33.6733%" y="645" width="0.0104%" height="15" fill="rgb(244,61,34)" fg:x="435346" fg:w="135"/><text x="33.9233%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64,571 samples, 4.99%)</title><rect x="28.7154%" y="677" width="4.9945%" height="15" fill="rgb(241,50,38)" fg:x="371247" fg:w="64571"/><text x="28.9654%" y="687.50">entry_..</text></g><g><title>syscall_exit_to_user_mode (337 samples, 0.03%)</title><rect x="33.6837%" y="661" width="0.0261%" height="15" fill="rgb(212,166,30)" fg:x="435481" fg:w="337"/><text x="33.9337%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (241 samples, 0.02%)</title><rect x="33.6912%" y="645" width="0.0186%" height="15" fill="rgb(249,127,32)" fg:x="435577" fg:w="241"/><text x="33.9412%" y="655.50"></text></g><g><title>__GI___lxstat (65,916 samples, 5.10%)</title><rect x="28.6315%" y="693" width="5.0985%" height="15" fill="rgb(209,103,0)" fg:x="370163" fg:w="65916"/><text x="28.8815%" y="703.50">__GI__..</text></g><g><title>syscall_return_via_sysret (254 samples, 0.02%)</title><rect x="33.7104%" y="677" width="0.0196%" height="15" fill="rgb(238,209,51)" fg:x="435825" fg:w="254"/><text x="33.9604%" y="687.50"></text></g><g><title>d_lru_add (137 samples, 0.01%)</title><rect x="33.7463%" y="613" width="0.0106%" height="15" fill="rgb(237,56,23)" fg:x="436290" fg:w="137"/><text x="33.9963%" y="623.50"></text></g><g><title>list_lru_add (131 samples, 0.01%)</title><rect x="33.7468%" y="597" width="0.0101%" height="15" fill="rgb(215,153,46)" fg:x="436296" fg:w="131"/><text x="33.9968%" y="607.50"></text></g><g><title>dput (210 samples, 0.02%)</title><rect x="33.7428%" y="629" width="0.0162%" height="15" fill="rgb(224,49,31)" fg:x="436245" fg:w="210"/><text x="33.9928%" y="639.50"></text></g><g><title>btrfs_free_path (145 samples, 0.01%)</title><rect x="33.7648%" y="565" width="0.0112%" height="15" fill="rgb(250,18,42)" fg:x="436529" fg:w="145"/><text x="34.0148%" y="575.50"></text></g><g><title>btrfs_release_path (137 samples, 0.01%)</title><rect x="33.7654%" y="549" width="0.0106%" height="15" fill="rgb(215,176,39)" fg:x="436537" fg:w="137"/><text x="34.0154%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (158 samples, 0.01%)</title><rect x="33.7948%" y="485" width="0.0122%" height="15" fill="rgb(223,77,29)" fg:x="436917" fg:w="158"/><text x="34.0448%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (153 samples, 0.01%)</title><rect x="33.7952%" y="469" width="0.0118%" height="15" fill="rgb(234,94,52)" fg:x="436922" fg:w="153"/><text x="34.0452%" y="479.50"></text></g><g><title>prepare_to_wait_event (184 samples, 0.01%)</title><rect x="33.7930%" y="501" width="0.0142%" height="15" fill="rgb(220,154,50)" fg:x="436894" fg:w="184"/><text x="34.0430%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (240 samples, 0.02%)</title><rect x="33.8073%" y="501" width="0.0186%" height="15" fill="rgb(212,11,10)" fg:x="437078" fg:w="240"/><text x="34.0573%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (163 samples, 0.01%)</title><rect x="33.8132%" y="485" width="0.0126%" height="15" fill="rgb(205,166,19)" fg:x="437155" fg:w="163"/><text x="34.0632%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (683 samples, 0.05%)</title><rect x="33.7859%" y="517" width="0.0528%" height="15" fill="rgb(244,198,16)" fg:x="436802" fg:w="683"/><text x="34.0359%" y="527.50"></text></g><g><title>schedule (167 samples, 0.01%)</title><rect x="33.8258%" y="501" width="0.0129%" height="15" fill="rgb(219,69,12)" fg:x="437318" fg:w="167"/><text x="34.0758%" y="511.50"></text></g><g><title>__schedule (164 samples, 0.01%)</title><rect x="33.8261%" y="485" width="0.0127%" height="15" fill="rgb(245,30,7)" fg:x="437321" fg:w="164"/><text x="34.0761%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (776 samples, 0.06%)</title><rect x="33.7852%" y="533" width="0.0600%" height="15" fill="rgb(218,221,48)" fg:x="436793" fg:w="776"/><text x="34.0352%" y="543.50"></text></g><g><title>__btrfs_tree_read_lock (380 samples, 0.03%)</title><rect x="33.8453%" y="533" width="0.0294%" height="15" fill="rgb(216,66,15)" fg:x="437569" fg:w="380"/><text x="34.0953%" y="543.50"></text></g><g><title>schedule (251 samples, 0.02%)</title><rect x="33.8552%" y="517" width="0.0194%" height="15" fill="rgb(226,122,50)" fg:x="437698" fg:w="251"/><text x="34.1052%" y="527.50"></text></g><g><title>__schedule (246 samples, 0.02%)</title><rect x="33.8556%" y="501" width="0.0190%" height="15" fill="rgb(239,156,16)" fg:x="437703" fg:w="246"/><text x="34.1056%" y="511.50"></text></g><g><title>__wake_up_common (136 samples, 0.01%)</title><rect x="33.8746%" y="517" width="0.0105%" height="15" fill="rgb(224,27,38)" fg:x="437949" fg:w="136"/><text x="34.1246%" y="527.50"></text></g><g><title>autoremove_wake_function (134 samples, 0.01%)</title><rect x="33.8748%" y="501" width="0.0104%" height="15" fill="rgb(224,39,27)" fg:x="437951" fg:w="134"/><text x="34.1248%" y="511.50"></text></g><g><title>__wake_up_common_lock (137 samples, 0.01%)</title><rect x="33.8746%" y="533" width="0.0106%" height="15" fill="rgb(215,92,29)" fg:x="437949" fg:w="137"/><text x="34.1246%" y="543.50"></text></g><g><title>btrfs_tree_read_lock_atomic (366 samples, 0.03%)</title><rect x="33.8911%" y="533" width="0.0283%" height="15" fill="rgb(207,159,16)" fg:x="438162" fg:w="366"/><text x="34.1411%" y="543.50"></text></g><g><title>queued_read_lock_slowpath (309 samples, 0.02%)</title><rect x="33.8955%" y="517" width="0.0239%" height="15" fill="rgb(238,163,47)" fg:x="438219" fg:w="309"/><text x="34.1455%" y="527.50"></text></g><g><title>generic_bin_search.constprop.0 (265 samples, 0.02%)</title><rect x="33.9241%" y="533" width="0.0205%" height="15" fill="rgb(219,91,49)" fg:x="438589" fg:w="265"/><text x="34.1741%" y="543.50"></text></g><g><title>__radix_tree_lookup (147 samples, 0.01%)</title><rect x="33.9604%" y="501" width="0.0114%" height="15" fill="rgb(227,167,31)" fg:x="439058" fg:w="147"/><text x="34.2104%" y="511.50"></text></g><g><title>find_extent_buffer (307 samples, 0.02%)</title><rect x="33.9537%" y="517" width="0.0237%" height="15" fill="rgb(234,80,54)" fg:x="438971" fg:w="307"/><text x="34.2037%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (476 samples, 0.04%)</title><rect x="33.9446%" y="533" width="0.0368%" height="15" fill="rgb(212,114,2)" fg:x="438854" fg:w="476"/><text x="34.1946%" y="543.50"></text></g><g><title>btrfs_search_slot (2,670 samples, 0.21%)</title><rect x="33.7776%" y="549" width="0.2065%" height="15" fill="rgb(234,50,24)" fg:x="436695" fg:w="2670"/><text x="34.0276%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (2,731 samples, 0.21%)</title><rect x="33.7760%" y="565" width="0.2112%" height="15" fill="rgb(221,68,8)" fg:x="436674" fg:w="2731"/><text x="34.0260%" y="575.50"></text></g><g><title>btrfs_lookup (3,004 samples, 0.23%)</title><rect x="33.7612%" y="597" width="0.2324%" height="15" fill="rgb(254,180,31)" fg:x="436482" fg:w="3004"/><text x="34.0112%" y="607.50"></text></g><g><title>btrfs_lookup_dentry (2,998 samples, 0.23%)</title><rect x="33.7616%" y="581" width="0.2319%" height="15" fill="rgb(247,130,50)" fg:x="436488" fg:w="2998"/><text x="34.0116%" y="591.50"></text></g><g><title>kmem_cache_alloc (259 samples, 0.02%)</title><rect x="33.9958%" y="565" width="0.0200%" height="15" fill="rgb(211,109,4)" fg:x="439516" fg:w="259"/><text x="34.2458%" y="575.50"></text></g><g><title>__d_alloc (293 samples, 0.02%)</title><rect x="33.9938%" y="581" width="0.0227%" height="15" fill="rgb(238,50,21)" fg:x="439489" fg:w="293"/><text x="34.2438%" y="591.50"></text></g><g><title>d_alloc (314 samples, 0.02%)</title><rect x="33.9935%" y="597" width="0.0243%" height="15" fill="rgb(225,57,45)" fg:x="439486" fg:w="314"/><text x="34.2435%" y="607.50"></text></g><g><title>__lookup_hash (3,458 samples, 0.27%)</title><rect x="33.7600%" y="613" width="0.2675%" height="15" fill="rgb(209,196,50)" fg:x="436467" fg:w="3458"/><text x="34.0100%" y="623.50"></text></g><g><title>inode_permission.part.0 (331 samples, 0.03%)</title><rect x="34.0593%" y="565" width="0.0256%" height="15" fill="rgb(242,140,13)" fg:x="440336" fg:w="331"/><text x="34.3093%" y="575.50"></text></g><g><title>__d_lookup_rcu (502 samples, 0.04%)</title><rect x="34.1018%" y="533" width="0.0388%" height="15" fill="rgb(217,111,7)" fg:x="440886" fg:w="502"/><text x="34.3518%" y="543.50"></text></g><g><title>lookup_fast (591 samples, 0.05%)</title><rect x="34.0950%" y="549" width="0.0457%" height="15" fill="rgb(253,193,51)" fg:x="440798" fg:w="591"/><text x="34.3450%" y="559.50"></text></g><g><title>link_path_walk.part.0 (1,447 samples, 0.11%)</title><rect x="34.0382%" y="581" width="0.1119%" height="15" fill="rgb(252,70,29)" fg:x="440064" fg:w="1447"/><text x="34.2882%" y="591.50"></text></g><g><title>walk_component (819 samples, 0.06%)</title><rect x="34.0868%" y="565" width="0.0633%" height="15" fill="rgb(232,127,12)" fg:x="440692" fg:w="819"/><text x="34.3368%" y="575.50"></text></g><g><title>filename_parentat (1,665 samples, 0.13%)</title><rect x="34.0288%" y="613" width="0.1288%" height="15" fill="rgb(211,180,21)" fg:x="439942" fg:w="1665"/><text x="34.2788%" y="623.50"></text></g><g><title>path_parentat (1,636 samples, 0.13%)</title><rect x="34.0310%" y="597" width="0.1265%" height="15" fill="rgb(229,72,13)" fg:x="439971" fg:w="1636"/><text x="34.2810%" y="607.50"></text></g><g><title>filename_create (5,265 samples, 0.41%)</title><rect x="33.7591%" y="629" width="0.4072%" height="15" fill="rgb(240,211,49)" fg:x="436455" fg:w="5265"/><text x="34.0091%" y="639.50"></text></g><g><title>kmem_cache_alloc (140 samples, 0.01%)</title><rect x="34.1681%" y="613" width="0.0108%" height="15" fill="rgb(219,149,40)" fg:x="441743" fg:w="140"/><text x="34.4181%" y="623.50"></text></g><g><title>getname_flags.part.0 (317 samples, 0.02%)</title><rect x="34.1671%" y="629" width="0.0245%" height="15" fill="rgb(210,127,46)" fg:x="441730" fg:w="317"/><text x="34.4171%" y="639.50"></text></g><g><title>strncpy_from_user (164 samples, 0.01%)</title><rect x="34.1789%" y="613" width="0.0127%" height="15" fill="rgb(220,106,7)" fg:x="441883" fg:w="164"/><text x="34.4289%" y="623.50"></text></g><g><title>__btrfs_end_transaction (255 samples, 0.02%)</title><rect x="34.2076%" y="597" width="0.0197%" height="15" fill="rgb(249,31,22)" fg:x="442253" fg:w="255"/><text x="34.4576%" y="607.50"></text></g><g><title>btrfs_insert_delayed_dir_index (542 samples, 0.04%)</title><rect x="34.2351%" y="565" width="0.0419%" height="15" fill="rgb(253,1,49)" fg:x="442609" fg:w="542"/><text x="34.4851%" y="575.50"></text></g><g><title>btrfs_release_path (133 samples, 0.01%)</title><rect x="34.2794%" y="565" width="0.0103%" height="15" fill="rgb(227,144,33)" fg:x="443182" fg:w="133"/><text x="34.5294%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (195 samples, 0.02%)</title><rect x="34.3204%" y="485" width="0.0151%" height="15" fill="rgb(249,163,44)" fg:x="443712" fg:w="195"/><text x="34.5704%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (470 samples, 0.04%)</title><rect x="34.3068%" y="501" width="0.0364%" height="15" fill="rgb(234,15,39)" fg:x="443536" fg:w="470"/><text x="34.5568%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (537 samples, 0.04%)</title><rect x="34.3063%" y="517" width="0.0415%" height="15" fill="rgb(207,66,16)" fg:x="443530" fg:w="537"/><text x="34.5563%" y="527.50"></text></g><g><title>__btrfs_tree_lock (416 samples, 0.03%)</title><rect x="34.3479%" y="517" width="0.0322%" height="15" fill="rgb(233,112,24)" fg:x="444067" fg:w="416"/><text x="34.5979%" y="527.50"></text></g><g><title>schedule (258 samples, 0.02%)</title><rect x="34.3601%" y="501" width="0.0200%" height="15" fill="rgb(230,90,22)" fg:x="444225" fg:w="258"/><text x="34.6101%" y="511.50"></text></g><g><title>__schedule (257 samples, 0.02%)</title><rect x="34.3602%" y="485" width="0.0199%" height="15" fill="rgb(229,61,13)" fg:x="444226" fg:w="257"/><text x="34.6102%" y="495.50"></text></g><g><title>btrfs_try_tree_write_lock (436 samples, 0.03%)</title><rect x="34.3854%" y="517" width="0.0337%" height="15" fill="rgb(225,57,24)" fg:x="444552" fg:w="436"/><text x="34.6354%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (403 samples, 0.03%)</title><rect x="34.3879%" y="501" width="0.0312%" height="15" fill="rgb(208,169,48)" fg:x="444585" fg:w="403"/><text x="34.6379%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (211 samples, 0.02%)</title><rect x="34.4191%" y="517" width="0.0163%" height="15" fill="rgb(244,218,51)" fg:x="444988" fg:w="211"/><text x="34.6691%" y="527.50"></text></g><g><title>find_extent_buffer (244 samples, 0.02%)</title><rect x="34.4446%" y="501" width="0.0189%" height="15" fill="rgb(214,148,10)" fg:x="445318" fg:w="244"/><text x="34.6946%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (408 samples, 0.03%)</title><rect x="34.4354%" y="517" width="0.0316%" height="15" fill="rgb(225,174,27)" fg:x="445199" fg:w="408"/><text x="34.6854%" y="527.50"></text></g><g><title>split_leaf (212 samples, 0.02%)</title><rect x="34.4670%" y="517" width="0.0164%" height="15" fill="rgb(230,96,26)" fg:x="445607" fg:w="212"/><text x="34.7170%" y="527.50"></text></g><g><title>__wake_up_common (185 samples, 0.01%)</title><rect x="34.4869%" y="485" width="0.0143%" height="15" fill="rgb(232,10,30)" fg:x="445864" fg:w="185"/><text x="34.7369%" y="495.50"></text></g><g><title>autoremove_wake_function (177 samples, 0.01%)</title><rect x="34.4875%" y="469" width="0.0137%" height="15" fill="rgb(222,8,50)" fg:x="445872" fg:w="177"/><text x="34.7375%" y="479.50"></text></g><g><title>try_to_wake_up (171 samples, 0.01%)</title><rect x="34.4879%" y="453" width="0.0132%" height="15" fill="rgb(213,81,27)" fg:x="445878" fg:w="171"/><text x="34.7379%" y="463.50"></text></g><g><title>__wake_up_common_lock (189 samples, 0.01%)</title><rect x="34.4868%" y="501" width="0.0146%" height="15" fill="rgb(245,50,10)" fg:x="445863" fg:w="189"/><text x="34.7368%" y="511.50"></text></g><g><title>btrfs_search_slot (2,644 samples, 0.20%)</title><rect x="34.2991%" y="533" width="0.2045%" height="15" fill="rgb(216,100,18)" fg:x="443436" fg:w="2644"/><text x="34.5491%" y="543.50"></text></g><g><title>unlock_up (261 samples, 0.02%)</title><rect x="34.4834%" y="517" width="0.0202%" height="15" fill="rgb(236,147,54)" fg:x="445819" fg:w="261"/><text x="34.7334%" y="527.50"></text></g><g><title>btrfs_get_token_32 (472 samples, 0.04%)</title><rect x="34.5154%" y="517" width="0.0365%" height="15" fill="rgb(205,143,26)" fg:x="446233" fg:w="472"/><text x="34.7654%" y="527.50"></text></g><g><title>btrfs_set_token_32 (368 samples, 0.03%)</title><rect x="34.5588%" y="517" width="0.0285%" height="15" fill="rgb(236,26,9)" fg:x="446794" fg:w="368"/><text x="34.8088%" y="527.50"></text></g><g><title>memcpy_extent_buffer (144 samples, 0.01%)</title><rect x="34.5893%" y="517" width="0.0111%" height="15" fill="rgb(221,165,53)" fg:x="447188" fg:w="144"/><text x="34.8393%" y="527.50"></text></g><g><title>memmove_extent_buffer (145 samples, 0.01%)</title><rect x="34.6004%" y="517" width="0.0112%" height="15" fill="rgb(214,110,17)" fg:x="447332" fg:w="145"/><text x="34.8504%" y="527.50"></text></g><g><title>insert_with_overflow (4,117 samples, 0.32%)</title><rect x="34.2954%" y="565" width="0.3184%" height="15" fill="rgb(237,197,12)" fg:x="443389" fg:w="4117"/><text x="34.5454%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (4,082 samples, 0.32%)</title><rect x="34.2981%" y="549" width="0.3157%" height="15" fill="rgb(205,84,17)" fg:x="443424" fg:w="4082"/><text x="34.5481%" y="559.50"></text></g><g><title>setup_items_for_insert (1,426 samples, 0.11%)</title><rect x="34.5036%" y="533" width="0.1103%" height="15" fill="rgb(237,18,45)" fg:x="446080" fg:w="1426"/><text x="34.7536%" y="543.50"></text></g><g><title>btrfs_insert_dir_item (5,072 samples, 0.39%)</title><rect x="34.2321%" y="581" width="0.3923%" height="15" fill="rgb(221,87,14)" fg:x="442570" fg:w="5072"/><text x="34.4821%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (157 samples, 0.01%)</title><rect x="34.6276%" y="565" width="0.0121%" height="15" fill="rgb(238,186,15)" fg:x="447684" fg:w="157"/><text x="34.8776%" y="575.50"></text></g><g><title>btrfs_update_inode (259 samples, 0.02%)</title><rect x="34.6244%" y="581" width="0.0200%" height="15" fill="rgb(208,115,11)" fg:x="447642" fg:w="259"/><text x="34.8744%" y="591.50"></text></g><g><title>btrfs_add_link (5,376 samples, 0.42%)</title><rect x="34.2297%" y="597" width="0.4158%" height="15" fill="rgb(254,175,0)" fg:x="442540" fg:w="5376"/><text x="34.4797%" y="607.50"></text></g><g><title>__queue_work (200 samples, 0.02%)</title><rect x="34.6535%" y="565" width="0.0155%" height="15" fill="rgb(227,24,42)" fg:x="448019" fg:w="200"/><text x="34.9035%" y="575.50"></text></g><g><title>try_to_wake_up (143 samples, 0.01%)</title><rect x="34.6580%" y="549" width="0.0111%" height="15" fill="rgb(223,211,37)" fg:x="448076" fg:w="143"/><text x="34.9080%" y="559.50"></text></g><g><title>btrfs_btree_balance_dirty (306 samples, 0.02%)</title><rect x="34.6456%" y="597" width="0.0237%" height="15" fill="rgb(235,49,27)" fg:x="447916" fg:w="306"/><text x="34.8956%" y="607.50"></text></g><g><title>queue_work_on (207 samples, 0.02%)</title><rect x="34.6532%" y="581" width="0.0160%" height="15" fill="rgb(254,97,51)" fg:x="448015" fg:w="207"/><text x="34.9032%" y="591.50"></text></g><g><title>queued_read_lock_slowpath (228 samples, 0.02%)</title><rect x="34.7250%" y="517" width="0.0176%" height="15" fill="rgb(249,51,40)" fg:x="448943" fg:w="228"/><text x="34.9750%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (145 samples, 0.01%)</title><rect x="34.7314%" y="501" width="0.0112%" height="15" fill="rgb(210,128,45)" fg:x="449026" fg:w="145"/><text x="34.9814%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (535 samples, 0.04%)</title><rect x="34.7116%" y="533" width="0.0414%" height="15" fill="rgb(224,137,50)" fg:x="448769" fg:w="535"/><text x="34.9616%" y="543.50"></text></g><g><title>schedule (133 samples, 0.01%)</title><rect x="34.7426%" y="517" width="0.0103%" height="15" fill="rgb(242,15,9)" fg:x="449171" fg:w="133"/><text x="34.9926%" y="527.50"></text></g><g><title>__schedule (133 samples, 0.01%)</title><rect x="34.7426%" y="501" width="0.0103%" height="15" fill="rgb(233,187,41)" fg:x="449171" fg:w="133"/><text x="34.9926%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (594 samples, 0.05%)</title><rect x="34.7112%" y="549" width="0.0459%" height="15" fill="rgb(227,2,29)" fg:x="448764" fg:w="594"/><text x="34.9612%" y="559.50"></text></g><g><title>__btrfs_tree_lock (368 samples, 0.03%)</title><rect x="34.7571%" y="549" width="0.0285%" height="15" fill="rgb(222,70,3)" fg:x="449358" fg:w="368"/><text x="35.0071%" y="559.50"></text></g><g><title>schedule (215 samples, 0.02%)</title><rect x="34.7689%" y="533" width="0.0166%" height="15" fill="rgb(213,11,42)" fg:x="449511" fg:w="215"/><text x="35.0189%" y="543.50"></text></g><g><title>__schedule (213 samples, 0.02%)</title><rect x="34.7691%" y="517" width="0.0165%" height="15" fill="rgb(225,150,9)" fg:x="449513" fg:w="213"/><text x="35.0191%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (478 samples, 0.04%)</title><rect x="34.7911%" y="549" width="0.0370%" height="15" fill="rgb(230,162,45)" fg:x="449797" fg:w="478"/><text x="35.0411%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (440 samples, 0.03%)</title><rect x="34.7940%" y="533" width="0.0340%" height="15" fill="rgb(222,14,52)" fg:x="449835" fg:w="440"/><text x="35.0440%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (193 samples, 0.01%)</title><rect x="34.8280%" y="549" width="0.0149%" height="15" fill="rgb(254,198,14)" fg:x="450275" fg:w="193"/><text x="35.0780%" y="559.50"></text></g><g><title>find_extent_buffer (228 samples, 0.02%)</title><rect x="34.8511%" y="533" width="0.0176%" height="15" fill="rgb(220,217,30)" fg:x="450573" fg:w="228"/><text x="35.1011%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (370 samples, 0.03%)</title><rect x="34.8430%" y="549" width="0.0286%" height="15" fill="rgb(215,146,41)" fg:x="450468" fg:w="370"/><text x="35.0930%" y="559.50"></text></g><g><title>__push_leaf_left (165 samples, 0.01%)</title><rect x="34.8871%" y="517" width="0.0128%" height="15" fill="rgb(217,27,36)" fg:x="451039" fg:w="165"/><text x="35.1371%" y="527.50"></text></g><g><title>push_leaf_left (206 samples, 0.02%)</title><rect x="34.8860%" y="533" width="0.0159%" height="15" fill="rgb(219,218,39)" fg:x="451024" fg:w="206"/><text x="35.1360%" y="543.50"></text></g><g><title>split_leaf (396 samples, 0.03%)</title><rect x="34.8716%" y="549" width="0.0306%" height="15" fill="rgb(219,4,42)" fg:x="450838" fg:w="396"/><text x="35.1216%" y="559.50"></text></g><g><title>__wake_up_common (268 samples, 0.02%)</title><rect x="34.9055%" y="517" width="0.0207%" height="15" fill="rgb(249,119,36)" fg:x="451277" fg:w="268"/><text x="35.1555%" y="527.50"></text></g><g><title>autoremove_wake_function (265 samples, 0.02%)</title><rect x="34.9058%" y="501" width="0.0205%" height="15" fill="rgb(209,23,33)" fg:x="451280" fg:w="265"/><text x="35.1558%" y="511.50"></text></g><g><title>try_to_wake_up (250 samples, 0.02%)</title><rect x="34.9069%" y="485" width="0.0193%" height="15" fill="rgb(211,10,0)" fg:x="451295" fg:w="250"/><text x="35.1569%" y="495.50"></text></g><g><title>__wake_up_common_lock (271 samples, 0.02%)</title><rect x="34.9055%" y="533" width="0.0210%" height="15" fill="rgb(208,99,37)" fg:x="451276" fg:w="271"/><text x="35.1555%" y="543.50"></text></g><g><title>btrfs_search_slot (2,900 samples, 0.22%)</title><rect x="34.7058%" y="565" width="0.2243%" height="15" fill="rgb(213,132,31)" fg:x="448694" fg:w="2900"/><text x="34.9558%" y="575.50"></text></g><g><title>unlock_up (360 samples, 0.03%)</title><rect x="34.9022%" y="549" width="0.0278%" height="15" fill="rgb(243,129,40)" fg:x="451234" fg:w="360"/><text x="35.1522%" y="559.50"></text></g><g><title>btrfs_get_token_32 (189 samples, 0.01%)</title><rect x="34.9406%" y="549" width="0.0146%" height="15" fill="rgb(210,66,33)" fg:x="451730" fg:w="189"/><text x="35.1906%" y="559.50"></text></g><g><title>btrfs_set_token_32 (192 samples, 0.01%)</title><rect x="34.9633%" y="549" width="0.0149%" height="15" fill="rgb(209,189,4)" fg:x="452024" fg:w="192"/><text x="35.2133%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (3,706 samples, 0.29%)</title><rect x="34.7050%" y="581" width="0.2867%" height="15" fill="rgb(214,107,37)" fg:x="448684" fg:w="3706"/><text x="34.9550%" y="591.50"></text></g><g><title>setup_items_for_insert (796 samples, 0.06%)</title><rect x="34.9301%" y="565" width="0.0616%" height="15" fill="rgb(245,88,54)" fg:x="451594" fg:w="796"/><text x="35.1801%" y="575.50"></text></g><g><title>fill_inode_item (244 samples, 0.02%)</title><rect x="35.0025%" y="581" width="0.0189%" height="15" fill="rgb(205,146,20)" fg:x="452530" fg:w="244"/><text x="35.2525%" y="591.50"></text></g><g><title>inode_tree_add (435 samples, 0.03%)</title><rect x="35.0237%" y="581" width="0.0336%" height="15" fill="rgb(220,161,25)" fg:x="452805" fg:w="435"/><text x="35.2737%" y="591.50"></text></g><g><title>btrfs_alloc_inode (323 samples, 0.02%)</title><rect x="35.0781%" y="549" width="0.0250%" height="15" fill="rgb(215,152,15)" fg:x="453508" fg:w="323"/><text x="35.3281%" y="559.50"></text></g><g><title>kmem_cache_alloc (216 samples, 0.02%)</title><rect x="35.0864%" y="533" width="0.0167%" height="15" fill="rgb(233,192,44)" fg:x="453615" fg:w="216"/><text x="35.3364%" y="543.50"></text></g><g><title>alloc_inode (425 samples, 0.03%)</title><rect x="35.0768%" y="565" width="0.0329%" height="15" fill="rgb(240,170,46)" fg:x="453491" fg:w="425"/><text x="35.3268%" y="575.50"></text></g><g><title>new_inode (469 samples, 0.04%)</title><rect x="35.0744%" y="581" width="0.0363%" height="15" fill="rgb(207,104,33)" fg:x="453460" fg:w="469"/><text x="35.3244%" y="591.50"></text></g><g><title>btrfs_new_inode (5,569 samples, 0.43%)</title><rect x="34.6815%" y="597" width="0.4308%" height="15" fill="rgb(219,21,39)" fg:x="448380" fg:w="5569"/><text x="34.9315%" y="607.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (140 samples, 0.01%)</title><rect x="35.1187%" y="565" width="0.0108%" height="15" fill="rgb(214,133,29)" fg:x="454033" fg:w="140"/><text x="35.3687%" y="575.50"></text></g><g><title>btrfs_get_or_create_delayed_node (354 samples, 0.03%)</title><rect x="35.1353%" y="565" width="0.0274%" height="15" fill="rgb(226,93,6)" fg:x="454247" fg:w="354"/><text x="35.3853%" y="575.50"></text></g><g><title>btrfs_delayed_update_inode (692 samples, 0.05%)</title><rect x="35.1144%" y="581" width="0.0535%" height="15" fill="rgb(252,222,34)" fg:x="453977" fg:w="692"/><text x="35.3644%" y="591.50"></text></g><g><title>btrfs_update_inode (751 samples, 0.06%)</title><rect x="35.1124%" y="597" width="0.0581%" height="15" fill="rgb(252,92,48)" fg:x="453951" fg:w="751"/><text x="35.3624%" y="607.50"></text></g><g><title>__reserve_bytes (257 samples, 0.02%)</title><rect x="35.1949%" y="549" width="0.0199%" height="15" fill="rgb(245,223,24)" fg:x="455018" fg:w="257"/><text x="35.4449%" y="559.50"></text></g><g><title>btrfs_block_rsv_add (330 samples, 0.03%)</title><rect x="35.1894%" y="581" width="0.0255%" height="15" fill="rgb(205,176,3)" fg:x="454947" fg:w="330"/><text x="35.4394%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (288 samples, 0.02%)</title><rect x="35.1927%" y="565" width="0.0223%" height="15" fill="rgb(235,151,15)" fg:x="454989" fg:w="288"/><text x="35.4427%" y="575.50"></text></g><g><title>btrfs_mkdir (13,210 samples, 1.02%)</title><rect x="34.2055%" y="613" width="1.0218%" height="15" fill="rgb(237,209,11)" fg:x="442227" fg:w="13210"/><text x="34.4555%" y="623.50"></text></g><g><title>start_transaction (594 samples, 0.05%)</title><rect x="35.1814%" y="597" width="0.0459%" height="15" fill="rgb(243,227,24)" fg:x="454843" fg:w="594"/><text x="35.4314%" y="607.50"></text></g><g><title>do_mkdirat (19,311 samples, 1.49%)</title><rect x="33.7399%" y="645" width="1.4937%" height="15" fill="rgb(239,193,16)" fg:x="436207" fg:w="19311"/><text x="33.9899%" y="655.50"></text></g><g><title>vfs_mkdir (13,313 samples, 1.03%)</title><rect x="34.2038%" y="629" width="1.0297%" height="15" fill="rgb(231,27,9)" fg:x="442205" fg:w="13313"/><text x="34.4538%" y="639.50"></text></g><g><title>do_syscall_64 (19,338 samples, 1.50%)</title><rect x="33.7385%" y="661" width="1.4958%" height="15" fill="rgb(219,169,10)" fg:x="436189" fg:w="19338"/><text x="33.9885%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19,388 samples, 1.50%)</title><rect x="33.7374%" y="677" width="1.4996%" height="15" fill="rgb(244,229,43)" fg:x="436175" fg:w="19388"/><text x="33.9874%" y="687.50"></text></g><g><title>__GI___mkdir (19,514 samples, 1.51%)</title><rect x="33.7300%" y="693" width="1.5094%" height="15" fill="rgb(254,38,20)" fg:x="436079" fg:w="19514"/><text x="33.9800%" y="703.50"></text></g><g><title>btrfs_filldir (834 samples, 0.06%)</title><rect x="35.3364%" y="581" width="0.0645%" height="15" fill="rgb(250,47,30)" fg:x="456848" fg:w="834"/><text x="35.5864%" y="591.50"></text></g><g><title>filldir64 (764 samples, 0.06%)</title><rect x="35.3419%" y="565" width="0.0591%" height="15" fill="rgb(224,124,36)" fg:x="456918" fg:w="764"/><text x="35.5919%" y="575.50"></text></g><g><title>verify_dirent_name (211 samples, 0.02%)</title><rect x="35.3846%" y="549" width="0.0163%" height="15" fill="rgb(246,68,51)" fg:x="457471" fg:w="211"/><text x="35.6346%" y="559.50"></text></g><g><title>memchr (154 samples, 0.01%)</title><rect x="35.3890%" y="533" width="0.0119%" height="15" fill="rgb(253,43,49)" fg:x="457528" fg:w="154"/><text x="35.6390%" y="543.50"></text></g><g><title>btrfs_get_16 (170 samples, 0.01%)</title><rect x="35.4037%" y="581" width="0.0131%" height="15" fill="rgb(219,54,36)" fg:x="457718" fg:w="170"/><text x="35.6537%" y="591.50"></text></g><g><title>btrfs_get_32 (135 samples, 0.01%)</title><rect x="35.4169%" y="581" width="0.0104%" height="15" fill="rgb(227,133,34)" fg:x="457888" fg:w="135"/><text x="35.6669%" y="591.50"></text></g><g><title>btrfs_search_slot (222 samples, 0.02%)</title><rect x="35.4337%" y="565" width="0.0172%" height="15" fill="rgb(247,227,15)" fg:x="458105" fg:w="222"/><text x="35.6837%" y="575.50"></text></g><g><title>btrfs_next_old_leaf (315 samples, 0.02%)</title><rect x="35.4319%" y="581" width="0.0244%" height="15" fill="rgb(229,96,14)" fg:x="458082" fg:w="315"/><text x="35.6819%" y="591.50"></text></g><g><title>btrfs_readdir_get_delayed_items (262 samples, 0.02%)</title><rect x="35.4570%" y="581" width="0.0203%" height="15" fill="rgb(220,79,17)" fg:x="458407" fg:w="262"/><text x="35.7070%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (166 samples, 0.01%)</title><rect x="35.4892%" y="565" width="0.0128%" height="15" fill="rgb(205,131,53)" fg:x="458823" fg:w="166"/><text x="35.7392%" y="575.50"></text></g><g><title>btrfs_release_path (338 samples, 0.03%)</title><rect x="35.4792%" y="581" width="0.0261%" height="15" fill="rgb(209,50,29)" fg:x="458693" fg:w="338"/><text x="35.7292%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (364 samples, 0.03%)</title><rect x="35.5410%" y="517" width="0.0282%" height="15" fill="rgb(245,86,46)" fg:x="459492" fg:w="364"/><text x="35.7910%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (346 samples, 0.03%)</title><rect x="35.5424%" y="501" width="0.0268%" height="15" fill="rgb(235,66,46)" fg:x="459510" fg:w="346"/><text x="35.7924%" y="511.50"></text></g><g><title>prepare_to_wait_event (398 samples, 0.03%)</title><rect x="35.5391%" y="533" width="0.0308%" height="15" fill="rgb(232,148,31)" fg:x="459468" fg:w="398"/><text x="35.7891%" y="543.50"></text></g><g><title>queued_read_lock_slowpath (780 samples, 0.06%)</title><rect x="35.5699%" y="533" width="0.0603%" height="15" fill="rgb(217,149,8)" fg:x="459866" fg:w="780"/><text x="35.8199%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (492 samples, 0.04%)</title><rect x="35.5922%" y="517" width="0.0381%" height="15" fill="rgb(209,183,11)" fg:x="460154" fg:w="492"/><text x="35.8422%" y="527.50"></text></g><g><title>finish_task_switch (139 samples, 0.01%)</title><rect x="35.6420%" y="501" width="0.0108%" height="15" fill="rgb(208,55,20)" fg:x="460798" fg:w="139"/><text x="35.8920%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (1,784 samples, 0.14%)</title><rect x="35.5245%" y="549" width="0.1380%" height="15" fill="rgb(218,39,14)" fg:x="459279" fg:w="1784"/><text x="35.7745%" y="559.50"></text></g><g><title>schedule (417 samples, 0.03%)</title><rect x="35.6302%" y="533" width="0.0323%" height="15" fill="rgb(216,169,33)" fg:x="460646" fg:w="417"/><text x="35.8802%" y="543.50"></text></g><g><title>__schedule (408 samples, 0.03%)</title><rect x="35.6309%" y="517" width="0.0316%" height="15" fill="rgb(233,80,24)" fg:x="460655" fg:w="408"/><text x="35.8809%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (1,946 samples, 0.15%)</title><rect x="35.5236%" y="565" width="0.1505%" height="15" fill="rgb(213,179,31)" fg:x="459267" fg:w="1946"/><text x="35.7736%" y="575.50"></text></g><g><title>btrfs_root_node (150 samples, 0.01%)</title><rect x="35.6625%" y="549" width="0.0116%" height="15" fill="rgb(209,19,5)" fg:x="461063" fg:w="150"/><text x="35.9125%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (432 samples, 0.03%)</title><rect x="35.6741%" y="565" width="0.0334%" height="15" fill="rgb(219,18,35)" fg:x="461213" fg:w="432"/><text x="35.9241%" y="575.50"></text></g><g><title>schedule (347 samples, 0.03%)</title><rect x="35.6807%" y="549" width="0.0268%" height="15" fill="rgb(209,169,16)" fg:x="461298" fg:w="347"/><text x="35.9307%" y="559.50"></text></g><g><title>__schedule (344 samples, 0.03%)</title><rect x="35.6809%" y="533" width="0.0266%" height="15" fill="rgb(245,90,51)" fg:x="461301" fg:w="344"/><text x="35.9309%" y="543.50"></text></g><g><title>ttwu_do_activate (240 samples, 0.02%)</title><rect x="35.7264%" y="501" width="0.0186%" height="15" fill="rgb(220,99,45)" fg:x="461890" fg:w="240"/><text x="35.9764%" y="511.50"></text></g><g><title>__wake_up_common (524 samples, 0.04%)</title><rect x="35.7076%" y="549" width="0.0405%" height="15" fill="rgb(249,89,25)" fg:x="461646" fg:w="524"/><text x="35.9576%" y="559.50"></text></g><g><title>autoremove_wake_function (516 samples, 0.04%)</title><rect x="35.7082%" y="533" width="0.0399%" height="15" fill="rgb(239,193,0)" fg:x="461654" fg:w="516"/><text x="35.9582%" y="543.50"></text></g><g><title>try_to_wake_up (491 samples, 0.04%)</title><rect x="35.7101%" y="517" width="0.0380%" height="15" fill="rgb(231,126,1)" fg:x="461679" fg:w="491"/><text x="35.9601%" y="527.50"></text></g><g><title>__wake_up_common_lock (528 samples, 0.04%)</title><rect x="35.7075%" y="565" width="0.0408%" height="15" fill="rgb(243,166,3)" fg:x="461645" fg:w="528"/><text x="35.9575%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (133 samples, 0.01%)</title><rect x="35.7502%" y="565" width="0.0103%" height="15" fill="rgb(223,22,34)" fg:x="462197" fg:w="133"/><text x="36.0002%" y="575.50"></text></g><g><title>btrfs_tree_read_lock_atomic (642 samples, 0.05%)</title><rect x="35.7605%" y="565" width="0.0497%" height="15" fill="rgb(251,52,51)" fg:x="462330" fg:w="642"/><text x="36.0105%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (555 samples, 0.04%)</title><rect x="35.7672%" y="549" width="0.0429%" height="15" fill="rgb(221,165,28)" fg:x="462417" fg:w="555"/><text x="36.0172%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (552 samples, 0.04%)</title><rect x="35.8185%" y="565" width="0.0427%" height="15" fill="rgb(218,121,47)" fg:x="463080" fg:w="552"/><text x="36.0685%" y="575.50"></text></g><g><title>__radix_tree_lookup (289 samples, 0.02%)</title><rect x="35.8962%" y="533" width="0.0224%" height="15" fill="rgb(209,120,9)" fg:x="464085" fg:w="289"/><text x="36.1462%" y="543.50"></text></g><g><title>mark_extent_buffer_accessed (148 samples, 0.01%)</title><rect x="35.9187%" y="533" width="0.0114%" height="15" fill="rgb(236,68,12)" fg:x="464375" fg:w="148"/><text x="36.1687%" y="543.50"></text></g><g><title>find_extent_buffer (584 samples, 0.05%)</title><rect x="35.8852%" y="549" width="0.0452%" height="15" fill="rgb(225,194,26)" fg:x="463943" fg:w="584"/><text x="36.1352%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (970 samples, 0.08%)</title><rect x="35.8612%" y="565" width="0.0750%" height="15" fill="rgb(231,84,39)" fg:x="463632" fg:w="970"/><text x="36.1112%" y="575.50"></text></g><g><title>btrfs_search_slot (5,661 samples, 0.44%)</title><rect x="35.5053%" y="581" width="0.4379%" height="15" fill="rgb(210,11,45)" fg:x="459031" fg:w="5661"/><text x="35.7553%" y="591.50"></text></g><g><title>filldir64 (148 samples, 0.01%)</title><rect x="35.9487%" y="581" width="0.0114%" height="15" fill="rgb(224,54,52)" fg:x="464763" fg:w="148"/><text x="36.1987%" y="591.50"></text></g><g><title>btrfs_real_readdir (9,610 samples, 0.74%)</title><rect x="35.3026%" y="597" width="0.7433%" height="15" fill="rgb(238,102,14)" fg:x="456411" fg:w="9610"/><text x="35.5526%" y="607.50"></text></g><g><title>read_extent_buffer (837 samples, 0.06%)</title><rect x="35.9812%" y="581" width="0.0647%" height="15" fill="rgb(243,160,52)" fg:x="465184" fg:w="837"/><text x="36.2312%" y="591.50"></text></g><g><title>security_file_permission (180 samples, 0.01%)</title><rect x="36.0531%" y="597" width="0.0139%" height="15" fill="rgb(216,114,19)" fg:x="466113" fg:w="180"/><text x="36.3031%" y="607.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (164 samples, 0.01%)</title><rect x="36.1054%" y="533" width="0.0127%" height="15" fill="rgb(244,166,37)" fg:x="466790" fg:w="164"/><text x="36.3554%" y="543.50"></text></g><g><title>btrfs_block_rsv_add (360 samples, 0.03%)</title><rect x="36.1181%" y="533" width="0.0278%" height="15" fill="rgb(246,29,44)" fg:x="466954" fg:w="360"/><text x="36.3681%" y="543.50"></text></g><g><title>btrfs_reserve_metadata_bytes (307 samples, 0.02%)</title><rect x="36.1222%" y="517" width="0.0237%" height="15" fill="rgb(215,56,53)" fg:x="467007" fg:w="307"/><text x="36.3722%" y="527.50"></text></g><g><title>__reserve_bytes (270 samples, 0.02%)</title><rect x="36.1251%" y="501" width="0.0209%" height="15" fill="rgb(217,60,2)" fg:x="467044" fg:w="270"/><text x="36.3751%" y="511.50"></text></g><g><title>btrfs_delayed_update_inode (722 samples, 0.06%)</title><rect x="36.0994%" y="549" width="0.0558%" height="15" fill="rgb(207,26,24)" fg:x="466712" fg:w="722"/><text x="36.3494%" y="559.50"></text></g><g><title>btrfs_update_inode (812 samples, 0.06%)</title><rect x="36.0980%" y="565" width="0.0628%" height="15" fill="rgb(252,210,15)" fg:x="466694" fg:w="812"/><text x="36.3480%" y="575.50"></text></g><g><title>btrfs_dirty_inode (1,332 samples, 0.10%)</title><rect x="36.0832%" y="581" width="0.1030%" height="15" fill="rgb(253,209,26)" fg:x="466502" fg:w="1332"/><text x="36.3332%" y="591.50"></text></g><g><title>start_transaction (211 samples, 0.02%)</title><rect x="36.1699%" y="565" width="0.0163%" height="15" fill="rgb(238,170,14)" fg:x="467623" fg:w="211"/><text x="36.4199%" y="575.50"></text></g><g><title>touch_atime (1,586 samples, 0.12%)</title><rect x="36.0670%" y="597" width="0.1227%" height="15" fill="rgb(216,178,15)" fg:x="466293" fg:w="1586"/><text x="36.3170%" y="607.50"></text></g><g><title>iterate_dir (11,571 samples, 0.89%)</title><rect x="35.2972%" y="613" width="0.8950%" height="15" fill="rgb(250,197,2)" fg:x="456340" fg:w="11571"/><text x="35.5472%" y="623.50"></text></g><g><title>__x64_sys_getdents64 (11,801 samples, 0.91%)</title><rect x="35.2807%" y="629" width="0.9128%" height="15" fill="rgb(212,70,42)" fg:x="456127" fg:w="11801"/><text x="35.5307%" y="639.50"></text></g><g><title>do_syscall_64 (11,840 samples, 0.92%)</title><rect x="35.2784%" y="645" width="0.9158%" height="15" fill="rgb(227,213,9)" fg:x="456098" fg:w="11840"/><text x="35.5284%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (11,948 samples, 0.92%)</title><rect x="35.2772%" y="661" width="0.9242%" height="15" fill="rgb(245,99,25)" fg:x="456082" fg:w="11948"/><text x="35.5272%" y="671.50"></text></g><g><title>__GI___getdents64 (12,061 samples, 0.93%)</title><rect x="35.2707%" y="677" width="0.9329%" height="15" fill="rgb(250,82,29)" fg:x="455998" fg:w="12061"/><text x="35.5207%" y="687.50"></text></g><g><title>__GI___readdir64 (12,473 samples, 0.96%)</title><rect x="35.2394%" y="693" width="0.9648%" height="15" fill="rgb(241,226,54)" fg:x="455593" fg:w="12473"/><text x="35.4894%" y="703.50"></text></g><g><title>entry_SYSCALL_64 (659 samples, 0.05%)</title><rect x="36.2801%" y="677" width="0.0510%" height="15" fill="rgb(221,99,41)" fg:x="469048" fg:w="659"/><text x="36.5301%" y="687.50"></text></g><g><title>_copy_to_user (644 samples, 0.05%)</title><rect x="36.4144%" y="613" width="0.0498%" height="15" fill="rgb(213,90,21)" fg:x="470784" fg:w="644"/><text x="36.6644%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (562 samples, 0.04%)</title><rect x="36.4207%" y="597" width="0.0435%" height="15" fill="rgb(205,208,24)" fg:x="470866" fg:w="562"/><text x="36.6707%" y="607.50"></text></g><g><title>from_kgid_munged (141 samples, 0.01%)</title><rect x="36.4643%" y="613" width="0.0109%" height="15" fill="rgb(246,31,12)" fg:x="471429" fg:w="141"/><text x="36.7143%" y="623.50"></text></g><g><title>cp_new_stat (1,309 samples, 0.10%)</title><rect x="36.3872%" y="629" width="0.1012%" height="15" fill="rgb(213,154,6)" fg:x="470432" fg:w="1309"/><text x="36.6372%" y="639.50"></text></g><g><title>from_kuid_munged (171 samples, 0.01%)</title><rect x="36.4752%" y="613" width="0.0132%" height="15" fill="rgb(222,163,29)" fg:x="471570" fg:w="171"/><text x="36.7252%" y="623.50"></text></g><g><title>map_id_up (143 samples, 0.01%)</title><rect x="36.4773%" y="597" width="0.0111%" height="15" fill="rgb(227,201,8)" fg:x="471598" fg:w="143"/><text x="36.7273%" y="607.50"></text></g><g><title>_raw_spin_lock (191 samples, 0.01%)</title><rect x="36.5948%" y="597" width="0.0148%" height="15" fill="rgb(233,9,32)" fg:x="473116" fg:w="191"/><text x="36.8448%" y="607.50"></text></g><g><title>generic_fillattr (182 samples, 0.01%)</title><rect x="36.6099%" y="597" width="0.0141%" height="15" fill="rgb(217,54,24)" fg:x="473312" fg:w="182"/><text x="36.8599%" y="607.50"></text></g><g><title>btrfs_getattr (1,642 samples, 0.13%)</title><rect x="36.5174%" y="613" width="0.1270%" height="15" fill="rgb(235,192,0)" fg:x="472116" fg:w="1642"/><text x="36.7674%" y="623.50"></text></g><g><title>inode_get_bytes (264 samples, 0.02%)</title><rect x="36.6240%" y="597" width="0.0204%" height="15" fill="rgb(235,45,9)" fg:x="473494" fg:w="264"/><text x="36.8740%" y="607.50"></text></g><g><title>_raw_spin_lock (226 samples, 0.02%)</title><rect x="36.6269%" y="581" width="0.0175%" height="15" fill="rgb(246,42,40)" fg:x="473532" fg:w="226"/><text x="36.8769%" y="591.50"></text></g><g><title>kmem_cache_free (1,154 samples, 0.09%)</title><rect x="36.6867%" y="597" width="0.0893%" height="15" fill="rgb(248,111,24)" fg:x="474305" fg:w="1154"/><text x="36.9367%" y="607.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (230 samples, 0.02%)</title><rect x="36.7582%" y="581" width="0.0178%" height="15" fill="rgb(249,65,22)" fg:x="475229" fg:w="230"/><text x="37.0082%" y="591.50"></text></g><g><title>__legitimize_mnt (398 samples, 0.03%)</title><rect x="36.8132%" y="533" width="0.0308%" height="15" fill="rgb(238,111,51)" fg:x="475940" fg:w="398"/><text x="37.0632%" y="543.50"></text></g><g><title>__legitimize_path (718 samples, 0.06%)</title><rect x="36.8089%" y="549" width="0.0555%" height="15" fill="rgb(250,118,22)" fg:x="475885" fg:w="718"/><text x="37.0589%" y="559.50"></text></g><g><title>lockref_get_not_dead (265 samples, 0.02%)</title><rect x="36.8440%" y="533" width="0.0205%" height="15" fill="rgb(234,84,26)" fg:x="476338" fg:w="265"/><text x="37.0940%" y="543.50"></text></g><g><title>complete_walk (929 samples, 0.07%)</title><rect x="36.7996%" y="581" width="0.0719%" height="15" fill="rgb(243,172,12)" fg:x="475765" fg:w="929"/><text x="37.0496%" y="591.50"></text></g><g><title>try_to_unlazy (902 samples, 0.07%)</title><rect x="36.8017%" y="565" width="0.0698%" height="15" fill="rgb(236,150,49)" fg:x="475792" fg:w="902"/><text x="37.0517%" y="575.50"></text></g><g><title>btrfs_permission (465 samples, 0.04%)</title><rect x="38.3001%" y="549" width="0.0360%" height="15" fill="rgb(225,197,26)" fg:x="495163" fg:w="465"/><text x="38.5501%" y="559.50"></text></g><g><title>inode_permission.part.0 (10,480 samples, 0.81%)</title><rect x="37.7168%" y="565" width="0.8106%" height="15" fill="rgb(214,17,42)" fg:x="487622" fg:w="10480"/><text x="37.9668%" y="575.50"></text></g><g><title>generic_permission (2,474 samples, 0.19%)</title><rect x="38.3360%" y="549" width="0.1914%" height="15" fill="rgb(224,165,40)" fg:x="495628" fg:w="2474"/><text x="38.5860%" y="559.50"></text></g><g><title>security_inode_permission (1,142 samples, 0.09%)</title><rect x="38.5274%" y="565" width="0.0883%" height="15" fill="rgb(246,100,4)" fg:x="498102" fg:w="1142"/><text x="38.7774%" y="575.50"></text></g><g><title>__d_lookup_rcu (14,199 samples, 1.10%)</title><rect x="39.1739%" y="533" width="1.0983%" height="15" fill="rgb(222,103,0)" fg:x="506461" fg:w="14199"/><text x="39.4239%" y="543.50"></text></g><g><title>lookup_fast (17,603 samples, 1.36%)</title><rect x="38.9118%" y="549" width="1.3616%" height="15" fill="rgb(227,189,26)" fg:x="503072" fg:w="17603"/><text x="39.1618%" y="559.50"></text></g><g><title>page_put_link (473 samples, 0.04%)</title><rect x="40.2734%" y="549" width="0.0366%" height="15" fill="rgb(214,202,17)" fg:x="520675" fg:w="473"/><text x="40.5234%" y="559.50"></text></g><g><title>__lookup_mnt (497 samples, 0.04%)</title><rect x="40.6445%" y="533" width="0.0384%" height="15" fill="rgb(229,111,3)" fg:x="525473" fg:w="497"/><text x="40.8945%" y="543.50"></text></g><g><title>atime_needs_update (424 samples, 0.03%)</title><rect x="40.6850%" y="533" width="0.0328%" height="15" fill="rgb(229,172,15)" fg:x="525997" fg:w="424"/><text x="40.9350%" y="543.50"></text></g><g><title>current_time (249 samples, 0.02%)</title><rect x="40.6985%" y="517" width="0.0193%" height="15" fill="rgb(230,224,35)" fg:x="526172" fg:w="249"/><text x="40.9485%" y="527.50"></text></g><g><title>page_get_link (1,632 samples, 0.13%)</title><rect x="40.7261%" y="533" width="0.1262%" height="15" fill="rgb(251,141,6)" fg:x="526528" fg:w="1632"/><text x="40.9761%" y="543.50"></text></g><g><title>pagecache_get_page (1,475 samples, 0.11%)</title><rect x="40.7382%" y="517" width="0.1141%" height="15" fill="rgb(225,208,6)" fg:x="526685" fg:w="1475"/><text x="40.9882%" y="527.50"></text></g><g><title>find_get_entry (1,311 samples, 0.10%)</title><rect x="40.7509%" y="501" width="0.1014%" height="15" fill="rgb(246,181,16)" fg:x="526849" fg:w="1311"/><text x="41.0009%" y="511.50"></text></g><g><title>xas_load (207 samples, 0.02%)</title><rect x="40.8363%" y="485" width="0.0160%" height="15" fill="rgb(227,129,36)" fg:x="527953" fg:w="207"/><text x="41.0863%" y="495.50"></text></g><g><title>xas_start (193 samples, 0.01%)</title><rect x="40.8374%" y="469" width="0.0149%" height="15" fill="rgb(248,117,24)" fg:x="527967" fg:w="193"/><text x="41.0874%" y="479.50"></text></g><g><title>link_path_walk.part.0 (51,509 samples, 3.98%)</title><rect x="36.8715%" y="581" width="3.9841%" height="15" fill="rgb(214,185,35)" fg:x="476694" fg:w="51509"/><text x="37.1215%" y="591.50">link..</text></g><g><title>walk_component (28,959 samples, 2.24%)</title><rect x="38.6157%" y="565" width="2.2399%" height="15" fill="rgb(236,150,34)" fg:x="499244" fg:w="28959"/><text x="38.8657%" y="575.50">w..</text></g><g><title>step_into (7,055 samples, 0.55%)</title><rect x="40.3100%" y="549" width="0.5457%" height="15" fill="rgb(243,228,27)" fg:x="521148" fg:w="7055"/><text x="40.5600%" y="559.50"></text></g><g><title>path_init (1,251 samples, 0.10%)</title><rect x="40.8556%" y="581" width="0.0968%" height="15" fill="rgb(245,77,44)" fg:x="528203" fg:w="1251"/><text x="41.1056%" y="591.50"></text></g><g><title>nd_jump_root (889 samples, 0.07%)</title><rect x="40.8836%" y="565" width="0.0688%" height="15" fill="rgb(235,214,42)" fg:x="528565" fg:w="889"/><text x="41.1336%" y="575.50"></text></g><g><title>set_root (706 samples, 0.05%)</title><rect x="40.8978%" y="549" width="0.0546%" height="15" fill="rgb(221,74,3)" fg:x="528748" fg:w="706"/><text x="41.1478%" y="559.50"></text></g><g><title>dput (867 samples, 0.07%)</title><rect x="40.9649%" y="565" width="0.0671%" height="15" fill="rgb(206,121,29)" fg:x="529616" fg:w="867"/><text x="41.2149%" y="575.50"></text></g><g><title>lockref_put_or_lock (734 samples, 0.06%)</title><rect x="40.9752%" y="549" width="0.0568%" height="15" fill="rgb(249,131,53)" fg:x="529749" fg:w="734"/><text x="41.2252%" y="559.50"></text></g><g><title>terminate_walk (1,229 samples, 0.10%)</title><rect x="40.9524%" y="581" width="0.0951%" height="15" fill="rgb(236,170,29)" fg:x="529454" fg:w="1229"/><text x="41.2024%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (241 samples, 0.02%)</title><rect x="41.1278%" y="485" width="0.0186%" height="15" fill="rgb(247,96,15)" fg:x="531721" fg:w="241"/><text x="41.3778%" y="495.50"></text></g><g><title>_raw_spin_lock (300 samples, 0.02%)</title><rect x="41.2026%" y="469" width="0.0232%" height="15" fill="rgb(211,210,7)" fg:x="532689" fg:w="300"/><text x="41.4526%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (989 samples, 0.08%)</title><rect x="41.1496%" y="485" width="0.0765%" height="15" fill="rgb(240,88,50)" fg:x="532004" fg:w="989"/><text x="41.3996%" y="495.50"></text></g><g><title>btrfs_free_path (1,743 samples, 0.13%)</title><rect x="41.1092%" y="517" width="0.1348%" height="15" fill="rgb(209,229,26)" fg:x="531481" fg:w="1743"/><text x="41.3592%" y="527.50"></text></g><g><title>btrfs_release_path (1,649 samples, 0.13%)</title><rect x="41.1165%" y="501" width="0.1275%" height="15" fill="rgb(210,68,23)" fg:x="531575" fg:w="1649"/><text x="41.3665%" y="511.50"></text></g><g><title>release_extent_buffer (230 samples, 0.02%)</title><rect x="41.2262%" y="485" width="0.0178%" height="15" fill="rgb(229,180,13)" fg:x="532994" fg:w="230"/><text x="41.4762%" y="495.50"></text></g><g><title>_raw_read_lock (228 samples, 0.02%)</title><rect x="41.3843%" y="453" width="0.0176%" height="15" fill="rgb(236,53,44)" fg:x="535038" fg:w="228"/><text x="41.6343%" y="463.50"></text></g><g><title>finish_wait (516 samples, 0.04%)</title><rect x="41.4028%" y="453" width="0.0399%" height="15" fill="rgb(244,214,29)" fg:x="535277" fg:w="516"/><text x="41.6528%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (490 samples, 0.04%)</title><rect x="41.4048%" y="437" width="0.0379%" height="15" fill="rgb(220,75,29)" fg:x="535303" fg:w="490"/><text x="41.6548%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (461 samples, 0.04%)</title><rect x="41.4071%" y="421" width="0.0357%" height="15" fill="rgb(214,183,37)" fg:x="535332" fg:w="461"/><text x="41.6571%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (1,337 samples, 0.10%)</title><rect x="41.4532%" y="437" width="0.1034%" height="15" fill="rgb(239,117,29)" fg:x="535928" fg:w="1337"/><text x="41.7032%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,256 samples, 0.10%)</title><rect x="41.4594%" y="421" width="0.0971%" height="15" fill="rgb(237,171,35)" fg:x="536009" fg:w="1256"/><text x="41.7094%" y="431.50"></text></g><g><title>prepare_to_wait_event (1,503 samples, 0.12%)</title><rect x="41.4429%" y="453" width="0.1163%" height="15" fill="rgb(229,178,53)" fg:x="535795" fg:w="1503"/><text x="41.6929%" y="463.50"></text></g><g><title>queued_read_lock_slowpath (2,988 samples, 0.23%)</title><rect x="41.5591%" y="453" width="0.2311%" height="15" fill="rgb(210,102,19)" fg:x="537298" fg:w="2988"/><text x="41.8091%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,026 samples, 0.16%)</title><rect x="41.6335%" y="437" width="0.1567%" height="15" fill="rgb(235,127,22)" fg:x="538260" fg:w="2026"/><text x="41.8835%" y="447.50"></text></g><g><title>dequeue_entity (316 samples, 0.02%)</title><rect x="41.8121%" y="405" width="0.0244%" height="15" fill="rgb(244,31,31)" fg:x="540569" fg:w="316"/><text x="42.0621%" y="415.50"></text></g><g><title>dequeue_task_fair (384 samples, 0.03%)</title><rect x="41.8082%" y="421" width="0.0297%" height="15" fill="rgb(231,43,21)" fg:x="540518" fg:w="384"/><text x="42.0582%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (980 samples, 0.08%)</title><rect x="41.8434%" y="405" width="0.0758%" height="15" fill="rgb(217,131,35)" fg:x="540973" fg:w="980"/><text x="42.0934%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (940 samples, 0.07%)</title><rect x="41.8465%" y="389" width="0.0727%" height="15" fill="rgb(221,149,4)" fg:x="541013" fg:w="940"/><text x="42.0965%" y="399.50"></text></g><g><title>native_write_msr (923 samples, 0.07%)</title><rect x="41.8478%" y="373" width="0.0714%" height="15" fill="rgb(232,170,28)" fg:x="541030" fg:w="923"/><text x="42.0978%" y="383.50"></text></g><g><title>finish_task_switch (1,096 samples, 0.08%)</title><rect x="41.8379%" y="421" width="0.0848%" height="15" fill="rgb(238,56,10)" fg:x="540902" fg:w="1096"/><text x="42.0879%" y="431.50"></text></g><g><title>psi_task_change (306 samples, 0.02%)</title><rect x="41.9364%" y="421" width="0.0237%" height="15" fill="rgb(235,196,14)" fg:x="542176" fg:w="306"/><text x="42.1864%" y="431.50"></text></g><g><title>psi_group_change (247 samples, 0.02%)</title><rect x="41.9410%" y="405" width="0.0191%" height="15" fill="rgb(216,45,48)" fg:x="542235" fg:w="247"/><text x="42.1910%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (7,733 samples, 0.60%)</title><rect x="41.3705%" y="469" width="0.5981%" height="15" fill="rgb(238,213,17)" fg:x="534859" fg:w="7733"/><text x="41.6205%" y="479.50"></text></g><g><title>schedule (2,306 samples, 0.18%)</title><rect x="41.7902%" y="453" width="0.1784%" height="15" fill="rgb(212,13,2)" fg:x="540286" fg:w="2306"/><text x="42.0402%" y="463.50"></text></g><g><title>__schedule (2,283 samples, 0.18%)</title><rect x="41.7920%" y="437" width="0.1766%" height="15" fill="rgb(240,114,20)" fg:x="540309" fg:w="2283"/><text x="42.0420%" y="447.50"></text></g><g><title>btrfs_root_node (991 samples, 0.08%)</title><rect x="41.9686%" y="469" width="0.0767%" height="15" fill="rgb(228,41,40)" fg:x="542592" fg:w="991"/><text x="42.2186%" y="479.50"></text></g><g><title>__btrfs_read_lock_root_node (8,808 samples, 0.68%)</title><rect x="41.3641%" y="485" width="0.6813%" height="15" fill="rgb(244,132,35)" fg:x="534776" fg:w="8808"/><text x="41.6141%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (258 samples, 0.02%)</title><rect x="42.0625%" y="453" width="0.0200%" height="15" fill="rgb(253,189,4)" fg:x="543806" fg:w="258"/><text x="42.3125%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (194 samples, 0.02%)</title><rect x="42.0675%" y="437" width="0.0150%" height="15" fill="rgb(224,37,19)" fg:x="543870" fg:w="194"/><text x="42.3175%" y="447.50"></text></g><g><title>prepare_to_wait_event (343 samples, 0.03%)</title><rect x="42.0576%" y="469" width="0.0265%" height="15" fill="rgb(235,223,18)" fg:x="543743" fg:w="343"/><text x="42.3076%" y="479.50"></text></g><g><title>queued_read_lock_slowpath (147 samples, 0.01%)</title><rect x="42.0842%" y="469" width="0.0114%" height="15" fill="rgb(235,163,25)" fg:x="544086" fg:w="147"/><text x="42.3342%" y="479.50"></text></g><g><title>dequeue_entity (281 samples, 0.02%)</title><rect x="42.1145%" y="421" width="0.0217%" height="15" fill="rgb(217,145,28)" fg:x="544478" fg:w="281"/><text x="42.3645%" y="431.50"></text></g><g><title>dequeue_task_fair (345 samples, 0.03%)</title><rect x="42.1116%" y="437" width="0.0267%" height="15" fill="rgb(223,223,32)" fg:x="544441" fg:w="345"/><text x="42.3616%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (1,378 samples, 0.11%)</title><rect x="42.1426%" y="421" width="0.1066%" height="15" fill="rgb(227,189,39)" fg:x="544842" fg:w="1378"/><text x="42.3926%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,337 samples, 0.10%)</title><rect x="42.1458%" y="405" width="0.1034%" height="15" fill="rgb(248,10,22)" fg:x="544883" fg:w="1337"/><text x="42.3958%" y="415.50"></text></g><g><title>native_write_msr (1,312 samples, 0.10%)</title><rect x="42.1477%" y="389" width="0.1015%" height="15" fill="rgb(248,46,39)" fg:x="544908" fg:w="1312"/><text x="42.3977%" y="399.50"></text></g><g><title>finish_task_switch (1,482 samples, 0.11%)</title><rect x="42.1383%" y="437" width="0.1146%" height="15" fill="rgb(248,113,48)" fg:x="544786" fg:w="1482"/><text x="42.3883%" y="447.50"></text></g><g><title>psi_task_change (259 samples, 0.02%)</title><rect x="42.2645%" y="437" width="0.0200%" height="15" fill="rgb(245,16,25)" fg:x="546418" fg:w="259"/><text x="42.5145%" y="447.50"></text></g><g><title>psi_group_change (198 samples, 0.02%)</title><rect x="42.2693%" y="421" width="0.0153%" height="15" fill="rgb(249,152,16)" fg:x="546479" fg:w="198"/><text x="42.5193%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (3,184 samples, 0.25%)</title><rect x="42.0453%" y="485" width="0.2463%" height="15" fill="rgb(250,16,1)" fg:x="543584" fg:w="3184"/><text x="42.2953%" y="495.50"></text></g><g><title>schedule (2,535 samples, 0.20%)</title><rect x="42.0955%" y="469" width="0.1961%" height="15" fill="rgb(249,138,3)" fg:x="544233" fg:w="2535"/><text x="42.3455%" y="479.50"></text></g><g><title>__schedule (2,517 samples, 0.19%)</title><rect x="42.0969%" y="453" width="0.1947%" height="15" fill="rgb(227,71,41)" fg:x="544251" fg:w="2517"/><text x="42.3469%" y="463.50"></text></g><g><title>select_task_rq_fair (172 samples, 0.01%)</title><rect x="42.3055%" y="421" width="0.0133%" height="15" fill="rgb(209,184,23)" fg:x="546947" fg:w="172"/><text x="42.5555%" y="431.50"></text></g><g><title>enqueue_task_fair (177 samples, 0.01%)</title><rect x="42.3214%" y="405" width="0.0137%" height="15" fill="rgb(223,215,31)" fg:x="547153" fg:w="177"/><text x="42.5714%" y="415.50"></text></g><g><title>ttwu_do_activate (358 samples, 0.03%)</title><rect x="42.3200%" y="421" width="0.0277%" height="15" fill="rgb(210,146,28)" fg:x="547135" fg:w="358"/><text x="42.5700%" y="431.50"></text></g><g><title>psi_task_change (161 samples, 0.01%)</title><rect x="42.3352%" y="405" width="0.0125%" height="15" fill="rgb(209,183,41)" fg:x="547332" fg:w="161"/><text x="42.5852%" y="415.50"></text></g><g><title>psi_group_change (143 samples, 0.01%)</title><rect x="42.3366%" y="389" width="0.0111%" height="15" fill="rgb(209,224,45)" fg:x="547350" fg:w="143"/><text x="42.5866%" y="399.50"></text></g><g><title>__wake_up_common (805 samples, 0.06%)</title><rect x="42.2918%" y="469" width="0.0623%" height="15" fill="rgb(224,209,51)" fg:x="546770" fg:w="805"/><text x="42.5418%" y="479.50"></text></g><g><title>autoremove_wake_function (787 samples, 0.06%)</title><rect x="42.2932%" y="453" width="0.0609%" height="15" fill="rgb(223,17,39)" fg:x="546788" fg:w="787"/><text x="42.5432%" y="463.50"></text></g><g><title>try_to_wake_up (760 samples, 0.06%)</title><rect x="42.2953%" y="437" width="0.0588%" height="15" fill="rgb(234,204,37)" fg:x="546815" fg:w="760"/><text x="42.5453%" y="447.50"></text></g><g><title>__wake_up_common_lock (818 samples, 0.06%)</title><rect x="42.2918%" y="485" width="0.0633%" height="15" fill="rgb(236,120,5)" fg:x="546770" fg:w="818"/><text x="42.5418%" y="495.50"></text></g><g><title>btrfs_set_path_blocking (758 samples, 0.06%)</title><rect x="42.3639%" y="485" width="0.0586%" height="15" fill="rgb(248,97,27)" fg:x="547702" fg:w="758"/><text x="42.6139%" y="495.50"></text></g><g><title>btrfs_set_lock_blocking_read (407 samples, 0.03%)</title><rect x="42.3910%" y="469" width="0.0315%" height="15" fill="rgb(240,66,17)" fg:x="548053" fg:w="407"/><text x="42.6410%" y="479.50"></text></g><g><title>_raw_read_lock (345 samples, 0.03%)</title><rect x="42.4379%" y="469" width="0.0267%" height="15" fill="rgb(210,79,3)" fg:x="548659" fg:w="345"/><text x="42.6879%" y="479.50"></text></g><g><title>btrfs_tree_read_lock_atomic (1,609 samples, 0.12%)</title><rect x="42.4225%" y="485" width="0.1245%" height="15" fill="rgb(214,176,27)" fg:x="548460" fg:w="1609"/><text x="42.6725%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (1,064 samples, 0.08%)</title><rect x="42.4646%" y="469" width="0.0823%" height="15" fill="rgb(235,185,3)" fg:x="549005" fg:w="1064"/><text x="42.7146%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (259 samples, 0.02%)</title><rect x="42.5269%" y="453" width="0.0200%" height="15" fill="rgb(227,24,12)" fg:x="549810" fg:w="259"/><text x="42.7769%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (553 samples, 0.04%)</title><rect x="42.5469%" y="485" width="0.0428%" height="15" fill="rgb(252,169,48)" fg:x="550069" fg:w="553"/><text x="42.7969%" y="495.50"></text></g><g><title>generic_bin_search.constprop.0 (3,073 samples, 0.24%)</title><rect x="42.5949%" y="485" width="0.2377%" height="15" fill="rgb(212,65,1)" fg:x="550689" fg:w="3073"/><text x="42.8449%" y="495.50"></text></g><g><title>btrfs_buffer_uptodate (439 samples, 0.03%)</title><rect x="42.8720%" y="469" width="0.0340%" height="15" fill="rgb(242,39,24)" fg:x="554272" fg:w="439"/><text x="43.1220%" y="479.50"></text></g><g><title>verify_parent_transid (306 samples, 0.02%)</title><rect x="42.8823%" y="453" width="0.0237%" height="15" fill="rgb(249,32,23)" fg:x="554405" fg:w="306"/><text x="43.1323%" y="463.50"></text></g><g><title>btrfs_get_64 (546 samples, 0.04%)</title><rect x="42.9060%" y="469" width="0.0422%" height="15" fill="rgb(251,195,23)" fg:x="554711" fg:w="546"/><text x="43.1560%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (140 samples, 0.01%)</title><rect x="42.9374%" y="453" width="0.0108%" height="15" fill="rgb(236,174,8)" fg:x="555117" fg:w="140"/><text x="43.1874%" y="463.50"></text></g><g><title>btrfs_verify_level_key (198 samples, 0.02%)</title><rect x="42.9551%" y="469" width="0.0153%" height="15" fill="rgb(220,197,8)" fg:x="555346" fg:w="198"/><text x="43.2051%" y="479.50"></text></g><g><title>__radix_tree_lookup (1,962 samples, 0.15%)</title><rect x="43.0479%" y="453" width="0.1518%" height="15" fill="rgb(240,108,37)" fg:x="556545" fg:w="1962"/><text x="43.2979%" y="463.50"></text></g><g><title>mark_page_accessed (619 samples, 0.05%)</title><rect x="43.2172%" y="437" width="0.0479%" height="15" fill="rgb(232,176,24)" fg:x="558734" fg:w="619"/><text x="43.4672%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (844 samples, 0.07%)</title><rect x="43.1999%" y="453" width="0.0653%" height="15" fill="rgb(243,35,29)" fg:x="558511" fg:w="844"/><text x="43.4499%" y="463.50"></text></g><g><title>find_extent_buffer (3,841 samples, 0.30%)</title><rect x="42.9704%" y="469" width="0.2971%" height="15" fill="rgb(210,37,18)" fg:x="555544" fg:w="3841"/><text x="43.2204%" y="479.50"></text></g><g><title>read_block_for_search.isra.0 (6,220 samples, 0.48%)</title><rect x="42.8326%" y="485" width="0.4811%" height="15" fill="rgb(224,184,40)" fg:x="553762" fg:w="6220"/><text x="43.0826%" y="495.50"></text></g><g><title>read_extent_buffer (597 samples, 0.05%)</title><rect x="43.2675%" y="469" width="0.0462%" height="15" fill="rgb(236,39,29)" fg:x="559385" fg:w="597"/><text x="43.5175%" y="479.50"></text></g><g><title>btrfs_search_slot (27,043 samples, 2.09%)</title><rect x="41.2593%" y="501" width="2.0917%" height="15" fill="rgb(232,48,39)" fg:x="533422" fg:w="27043"/><text x="41.5093%" y="511.50">b..</text></g><g><title>unlock_up (483 samples, 0.04%)</title><rect x="43.3137%" y="485" width="0.0374%" height="15" fill="rgb(236,34,42)" fg:x="559982" fg:w="483"/><text x="43.5637%" y="495.50"></text></g><g><title>btrfs_lookup_dir_item (27,880 samples, 2.16%)</title><rect x="41.2440%" y="517" width="2.1565%" height="15" fill="rgb(243,106,37)" fg:x="533224" fg:w="27880"/><text x="41.4940%" y="527.50">b..</text></g><g><title>crc32c (639 samples, 0.05%)</title><rect x="43.3511%" y="501" width="0.0494%" height="15" fill="rgb(218,96,6)" fg:x="560465" fg:w="639"/><text x="43.6011%" y="511.50"></text></g><g><title>crypto_shash_update (334 samples, 0.03%)</title><rect x="43.3746%" y="485" width="0.0258%" height="15" fill="rgb(235,130,12)" fg:x="560770" fg:w="334"/><text x="43.6246%" y="495.50"></text></g><g><title>kmem_cache_alloc (638 samples, 0.05%)</title><rect x="43.4005%" y="517" width="0.0493%" height="15" fill="rgb(231,95,0)" fg:x="561104" fg:w="638"/><text x="43.6505%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (139 samples, 0.01%)</title><rect x="43.4391%" y="501" width="0.0108%" height="15" fill="rgb(228,12,23)" fg:x="561603" fg:w="139"/><text x="43.6891%" y="511.50"></text></g><g><title>btrfs_lookup (31,143 samples, 2.41%)</title><rect x="41.0731%" y="549" width="2.4089%" height="15" fill="rgb(216,12,1)" fg:x="531014" fg:w="31143"/><text x="41.3231%" y="559.50">bt..</text></g><g><title>btrfs_lookup_dentry (31,072 samples, 2.40%)</title><rect x="41.0786%" y="533" width="2.4034%" height="15" fill="rgb(219,59,3)" fg:x="531085" fg:w="31072"/><text x="41.3286%" y="543.50">bt..</text></g><g><title>kmem_cache_free (415 samples, 0.03%)</title><rect x="43.4498%" y="517" width="0.0321%" height="15" fill="rgb(215,208,46)" fg:x="561742" fg:w="415"/><text x="43.6998%" y="527.50"></text></g><g><title>d_set_d_op (240 samples, 0.02%)</title><rect x="43.5779%" y="501" width="0.0186%" height="15" fill="rgb(254,224,29)" fg:x="563398" fg:w="240"/><text x="43.8279%" y="511.50"></text></g><g><title>allocate_slab (210 samples, 0.02%)</title><rect x="43.6522%" y="453" width="0.0162%" height="15" fill="rgb(232,14,29)" fg:x="564358" fg:w="210"/><text x="43.9022%" y="463.50"></text></g><g><title>___slab_alloc (511 samples, 0.04%)</title><rect x="43.6338%" y="469" width="0.0395%" height="15" fill="rgb(208,45,52)" fg:x="564120" fg:w="511"/><text x="43.8838%" y="479.50"></text></g><g><title>__slab_alloc (556 samples, 0.04%)</title><rect x="43.6304%" y="485" width="0.0430%" height="15" fill="rgb(234,191,28)" fg:x="564077" fg:w="556"/><text x="43.8804%" y="495.50"></text></g><g><title>__mod_memcg_lruvec_state (265 samples, 0.02%)</title><rect x="43.7432%" y="469" width="0.0205%" height="15" fill="rgb(244,67,43)" fg:x="565535" fg:w="265"/><text x="43.9932%" y="479.50"></text></g><g><title>__mod_memcg_state.part.0 (223 samples, 0.02%)</title><rect x="43.7465%" y="453" width="0.0172%" height="15" fill="rgb(236,189,24)" fg:x="565577" fg:w="223"/><text x="43.9965%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,232 samples, 0.10%)</title><rect x="43.6738%" y="485" width="0.0953%" height="15" fill="rgb(239,214,33)" fg:x="564638" fg:w="1232"/><text x="43.9238%" y="495.50"></text></g><g><title>get_obj_cgroup_from_current (923 samples, 0.07%)</title><rect x="43.7950%" y="469" width="0.0714%" height="15" fill="rgb(226,176,41)" fg:x="566205" fg:w="923"/><text x="44.0450%" y="479.50"></text></g><g><title>obj_cgroup_charge (363 samples, 0.03%)</title><rect x="43.8664%" y="469" width="0.0281%" height="15" fill="rgb(248,47,8)" fg:x="567128" fg:w="363"/><text x="44.1164%" y="479.50"></text></g><g><title>kmem_cache_alloc (3,862 samples, 0.30%)</title><rect x="43.5965%" y="501" width="0.2987%" height="15" fill="rgb(218,81,44)" fg:x="563638" fg:w="3862"/><text x="43.8465%" y="511.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,527 samples, 0.12%)</title><rect x="43.7771%" y="485" width="0.1181%" height="15" fill="rgb(213,98,6)" fg:x="565973" fg:w="1527"/><text x="44.0271%" y="495.50"></text></g><g><title>__d_alloc (4,544 samples, 0.35%)</title><rect x="43.5531%" y="517" width="0.3515%" height="15" fill="rgb(222,85,22)" fg:x="563077" fg:w="4544"/><text x="43.8031%" y="527.50"></text></g><g><title>__list_add_valid (139 samples, 0.01%)</title><rect x="43.9046%" y="517" width="0.0108%" height="15" fill="rgb(239,46,39)" fg:x="567621" fg:w="139"/><text x="44.1546%" y="527.50"></text></g><g><title>d_alloc (4,994 samples, 0.39%)</title><rect x="43.5396%" y="533" width="0.3863%" height="15" fill="rgb(237,12,29)" fg:x="562902" fg:w="4994"/><text x="43.7896%" y="543.50"></text></g><g><title>_raw_spin_lock (136 samples, 0.01%)</title><rect x="43.9153%" y="517" width="0.0105%" height="15" fill="rgb(214,77,8)" fg:x="567760" fg:w="136"/><text x="44.1653%" y="527.50"></text></g><g><title>d_alloc_parallel (5,748 samples, 0.44%)</title><rect x="43.4819%" y="549" width="0.4446%" height="15" fill="rgb(217,168,37)" fg:x="562157" fg:w="5748"/><text x="43.7319%" y="559.50"></text></g><g><title>__wake_up_common (140 samples, 0.01%)</title><rect x="43.9847%" y="485" width="0.0108%" height="15" fill="rgb(221,217,23)" fg:x="568657" fg:w="140"/><text x="44.2347%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (188 samples, 0.01%)</title><rect x="43.9955%" y="485" width="0.0145%" height="15" fill="rgb(243,229,36)" fg:x="568797" fg:w="188"/><text x="44.2455%" y="495.50"></text></g><g><title>__wake_up_common_lock (617 samples, 0.05%)</title><rect x="43.9751%" y="501" width="0.0477%" height="15" fill="rgb(251,163,40)" fg:x="568533" fg:w="617"/><text x="44.2251%" y="511.50"></text></g><g><title>_raw_spin_unlock_irqrestore (165 samples, 0.01%)</title><rect x="44.0101%" y="485" width="0.0128%" height="15" fill="rgb(237,222,12)" fg:x="568985" fg:w="165"/><text x="44.2601%" y="495.50"></text></g><g><title>__d_lookup_done (851 samples, 0.07%)</title><rect x="43.9571%" y="517" width="0.0658%" height="15" fill="rgb(248,132,6)" fg:x="568300" fg:w="851"/><text x="44.2071%" y="527.50"></text></g><g><title>__d_rehash (281 samples, 0.02%)</title><rect x="44.0229%" y="517" width="0.0217%" height="15" fill="rgb(227,167,50)" fg:x="569151" fg:w="281"/><text x="44.2729%" y="527.50"></text></g><g><title>_raw_spin_lock (134 samples, 0.01%)</title><rect x="44.0446%" y="517" width="0.0104%" height="15" fill="rgb(242,84,37)" fg:x="569432" fg:w="134"/><text x="44.2946%" y="527.50"></text></g><g><title>__d_add (1,550 samples, 0.12%)</title><rect x="43.9353%" y="533" width="0.1199%" height="15" fill="rgb(212,4,50)" fg:x="568018" fg:w="1550"/><text x="44.1853%" y="543.50"></text></g><g><title>__lookup_slow (38,652 samples, 2.99%)</title><rect x="41.0657%" y="565" width="2.9897%" height="15" fill="rgb(230,228,32)" fg:x="530919" fg:w="38652"/><text x="41.3157%" y="575.50">__l..</text></g><g><title>d_splice_alias (1,666 samples, 0.13%)</title><rect x="43.9265%" y="549" width="0.1289%" height="15" fill="rgb(248,217,23)" fg:x="567905" fg:w="1666"/><text x="44.1765%" y="559.50"></text></g><g><title>down_read (190 samples, 0.01%)</title><rect x="44.0555%" y="565" width="0.0147%" height="15" fill="rgb(238,197,32)" fg:x="569573" fg:w="190"/><text x="44.3055%" y="575.50"></text></g><g><title>__d_lookup_rcu (2,657 samples, 0.21%)</title><rect x="44.0846%" y="549" width="0.2055%" height="15" fill="rgb(236,106,1)" fg:x="569948" fg:w="2657"/><text x="44.3346%" y="559.50"></text></g><g><title>__legitimize_mnt (391 samples, 0.03%)</title><rect x="44.2986%" y="517" width="0.0302%" height="15" fill="rgb(219,228,13)" fg:x="572715" fg:w="391"/><text x="44.5486%" y="527.50"></text></g><g><title>__legitimize_path (887 samples, 0.07%)</title><rect x="44.2950%" y="533" width="0.0686%" height="15" fill="rgb(238,30,35)" fg:x="572669" fg:w="887"/><text x="44.5450%" y="543.50"></text></g><g><title>lockref_get_not_dead (449 samples, 0.03%)</title><rect x="44.3289%" y="517" width="0.0347%" height="15" fill="rgb(236,70,23)" fg:x="573107" fg:w="449"/><text x="44.5789%" y="527.50"></text></g><g><title>lookup_fast (3,843 samples, 0.30%)</title><rect x="44.0702%" y="565" width="0.2972%" height="15" fill="rgb(249,104,48)" fg:x="569763" fg:w="3843"/><text x="44.3202%" y="575.50"></text></g><g><title>try_to_unlazy (999 samples, 0.08%)</title><rect x="44.2902%" y="549" width="0.0773%" height="15" fill="rgb(254,117,50)" fg:x="572607" fg:w="999"/><text x="44.5402%" y="559.50"></text></g><g><title>_cond_resched (151 samples, 0.01%)</title><rect x="44.4052%" y="533" width="0.0117%" height="15" fill="rgb(223,152,4)" fg:x="574093" fg:w="151"/><text x="44.6552%" y="543.50"></text></g><g><title>btrfs_dentry_delete (296 samples, 0.02%)</title><rect x="44.4169%" y="533" width="0.0229%" height="15" fill="rgb(245,6,2)" fg:x="574245" fg:w="296"/><text x="44.6669%" y="543.50"></text></g><g><title>__list_add_valid (382 samples, 0.03%)</title><rect x="44.4993%" y="501" width="0.0295%" height="15" fill="rgb(249,150,24)" fg:x="575310" fg:w="382"/><text x="44.7493%" y="511.50"></text></g><g><title>_raw_spin_lock (576 samples, 0.04%)</title><rect x="44.5288%" y="501" width="0.0446%" height="15" fill="rgb(228,185,42)" fg:x="575692" fg:w="576"/><text x="44.7788%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (162 samples, 0.01%)</title><rect x="44.5609%" y="485" width="0.0125%" height="15" fill="rgb(226,39,33)" fg:x="576106" fg:w="162"/><text x="44.8109%" y="495.50"></text></g><g><title>d_lru_add (1,819 samples, 0.14%)</title><rect x="44.4398%" y="533" width="0.1407%" height="15" fill="rgb(221,166,19)" fg:x="574541" fg:w="1819"/><text x="44.6898%" y="543.50"></text></g><g><title>list_lru_add (1,698 samples, 0.13%)</title><rect x="44.4492%" y="517" width="0.1313%" height="15" fill="rgb(209,109,2)" fg:x="574662" fg:w="1698"/><text x="44.6992%" y="527.50"></text></g><g><title>lockref_put_or_lock (173 samples, 0.01%)</title><rect x="44.5805%" y="533" width="0.0134%" height="15" fill="rgb(252,216,26)" fg:x="576360" fg:w="173"/><text x="44.8305%" y="543.50"></text></g><g><title>step_into (2,938 samples, 0.23%)</title><rect x="44.3675%" y="565" width="0.2272%" height="15" fill="rgb(227,173,36)" fg:x="573606" fg:w="2938"/><text x="44.6175%" y="575.50"></text></g><g><title>dput (2,610 samples, 0.20%)</title><rect x="44.3929%" y="549" width="0.2019%" height="15" fill="rgb(209,90,7)" fg:x="573934" fg:w="2610"/><text x="44.6429%" y="559.50"></text></g><g><title>path_lookupat (101,299 samples, 7.84%)</title><rect x="36.7760%" y="597" width="7.8353%" height="15" fill="rgb(250,194,11)" fg:x="475459" fg:w="101299"/><text x="37.0260%" y="607.50">path_lookup..</text></g><g><title>walk_component (46,075 samples, 3.56%)</title><rect x="41.0475%" y="581" width="3.5638%" height="15" fill="rgb(220,72,50)" fg:x="530683" fg:w="46075"/><text x="41.2975%" y="591.50">walk..</text></g><g><title>up_read (214 samples, 0.02%)</title><rect x="44.5947%" y="565" width="0.0166%" height="15" fill="rgb(222,106,48)" fg:x="576544" fg:w="214"/><text x="44.8447%" y="575.50"></text></g><g><title>filename_lookup (103,077 samples, 7.97%)</title><rect x="36.6444%" y="613" width="7.9728%" height="15" fill="rgb(216,220,45)" fg:x="473758" fg:w="103077"/><text x="36.8944%" y="623.50">filename_lo..</text></g><g><title>_cond_resched (149 samples, 0.01%)</title><rect x="44.6374%" y="581" width="0.0115%" height="15" fill="rgb(234,112,18)" fg:x="577096" fg:w="149"/><text x="44.8874%" y="591.50"></text></g><g><title>btrfs_dentry_delete (167 samples, 0.01%)</title><rect x="44.6493%" y="581" width="0.0129%" height="15" fill="rgb(206,179,9)" fg:x="577250" fg:w="167"/><text x="44.8993%" y="591.50"></text></g><g><title>lockref_put_or_lock (243 samples, 0.02%)</title><rect x="44.6623%" y="581" width="0.0188%" height="15" fill="rgb(215,115,40)" fg:x="577417" fg:w="243"/><text x="44.9123%" y="591.50"></text></g><g><title>_raw_spin_lock (196 samples, 0.02%)</title><rect x="44.6659%" y="565" width="0.0152%" height="15" fill="rgb(222,69,34)" fg:x="577464" fg:w="196"/><text x="44.9159%" y="575.50"></text></g><g><title>path_put (682 samples, 0.05%)</title><rect x="44.6287%" y="613" width="0.0528%" height="15" fill="rgb(209,161,10)" fg:x="576983" fg:w="682"/><text x="44.8787%" y="623.50"></text></g><g><title>dput (668 samples, 0.05%)</title><rect x="44.6298%" y="597" width="0.0517%" height="15" fill="rgb(217,6,38)" fg:x="576997" fg:w="668"/><text x="44.8798%" y="607.50"></text></g><g><title>apparmor_inode_getattr (212 samples, 0.02%)</title><rect x="44.7442%" y="597" width="0.0164%" height="15" fill="rgb(229,229,48)" fg:x="578476" fg:w="212"/><text x="44.9942%" y="607.50"></text></g><g><title>security_inode_getattr (1,983 samples, 0.15%)</title><rect x="44.6815%" y="613" width="0.1534%" height="15" fill="rgb(225,21,28)" fg:x="577666" fg:w="1983"/><text x="44.9315%" y="623.50"></text></g><g><title>tomoyo_path_perm (945 samples, 0.07%)</title><rect x="44.7618%" y="597" width="0.0731%" height="15" fill="rgb(206,33,13)" fg:x="578704" fg:w="945"/><text x="45.0118%" y="607.50"></text></g><g><title>tomoyo_init_request_info (608 samples, 0.05%)</title><rect x="44.7879%" y="581" width="0.0470%" height="15" fill="rgb(242,178,17)" fg:x="579041" fg:w="608"/><text x="45.0379%" y="591.50"></text></g><g><title>tomoyo_domain (318 samples, 0.02%)</title><rect x="44.8103%" y="565" width="0.0246%" height="15" fill="rgb(220,162,5)" fg:x="579331" fg:w="318"/><text x="45.0603%" y="575.50"></text></g><g><title>memcg_slab_post_alloc_hook (139 samples, 0.01%)</title><rect x="44.9257%" y="565" width="0.0108%" height="15" fill="rgb(210,33,43)" fg:x="580823" fg:w="139"/><text x="45.1757%" y="575.50"></text></g><g><title>memset_erms (2,447 samples, 0.19%)</title><rect x="44.9371%" y="565" width="0.1893%" height="15" fill="rgb(216,116,54)" fg:x="580970" fg:w="2447"/><text x="45.1871%" y="575.50"></text></g><g><title>_cond_resched (187 samples, 0.01%)</title><rect x="45.1640%" y="549" width="0.0145%" height="15" fill="rgb(249,92,24)" fg:x="583904" fg:w="187"/><text x="45.4140%" y="559.50"></text></g><g><title>kmem_cache_alloc (4,002 samples, 0.31%)</title><rect x="44.8701%" y="581" width="0.3095%" height="15" fill="rgb(231,189,14)" fg:x="580104" fg:w="4002"/><text x="45.1201%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (689 samples, 0.05%)</title><rect x="45.1264%" y="565" width="0.0533%" height="15" fill="rgb(230,8,41)" fg:x="583417" fg:w="689"/><text x="45.3764%" y="575.50"></text></g><g><title>__check_heap_object (461 samples, 0.04%)</title><rect x="45.3864%" y="549" width="0.0357%" height="15" fill="rgb(249,7,27)" fg:x="586779" fg:w="461"/><text x="45.6364%" y="559.50"></text></g><g><title>__virt_addr_valid (734 samples, 0.06%)</title><rect x="45.4221%" y="549" width="0.0568%" height="15" fill="rgb(232,86,5)" fg:x="587240" fg:w="734"/><text x="45.6721%" y="559.50"></text></g><g><title>__check_object_size (1,602 samples, 0.12%)</title><rect x="45.3613%" y="565" width="0.1239%" height="15" fill="rgb(224,175,18)" fg:x="586454" fg:w="1602"/><text x="45.6113%" y="575.50"></text></g><g><title>user_path_at_empty (8,416 samples, 0.65%)</title><rect x="44.8349%" y="613" width="0.6510%" height="15" fill="rgb(220,129,12)" fg:x="579649" fg:w="8416"/><text x="45.0849%" y="623.50"></text></g><g><title>getname_flags.part.0 (8,236 samples, 0.64%)</title><rect x="44.8488%" y="597" width="0.6370%" height="15" fill="rgb(210,19,36)" fg:x="579829" fg:w="8236"/><text x="45.0988%" y="607.50"></text></g><g><title>strncpy_from_user (3,959 samples, 0.31%)</title><rect x="45.1796%" y="581" width="0.3062%" height="15" fill="rgb(219,96,14)" fg:x="584106" fg:w="3959"/><text x="45.4296%" y="591.50"></text></g><g><title>__do_sys_newstat (118,307 samples, 9.15%)</title><rect x="36.3677%" y="645" width="9.1509%" height="15" fill="rgb(249,106,1)" fg:x="470180" fg:w="118307"/><text x="36.6177%" y="655.50">__do_sys_news..</text></g><g><title>vfs_statx (116,746 samples, 9.03%)</title><rect x="36.4884%" y="629" width="9.0301%" height="15" fill="rgb(249,155,20)" fg:x="471741" fg:w="116746"/><text x="36.7384%" y="639.50">vfs_statx</text></g><g><title>vfs_getattr_nosec (422 samples, 0.03%)</title><rect x="45.4859%" y="613" width="0.0326%" height="15" fill="rgb(244,168,9)" fg:x="588065" fg:w="422"/><text x="45.7359%" y="623.50"></text></g><g><title>do_syscall_64 (118,621 samples, 9.18%)</title><rect x="36.3533%" y="661" width="9.1751%" height="15" fill="rgb(216,23,50)" fg:x="469995" fg:w="118621"/><text x="36.6033%" y="671.50">do_syscall_64</text></g><g><title>fpregs_assert_state_consistent (148 samples, 0.01%)</title><rect x="45.5496%" y="629" width="0.0114%" height="15" fill="rgb(224,219,20)" fg:x="588889" fg:w="148"/><text x="45.7996%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (119,433 samples, 9.24%)</title><rect x="36.3311%" y="677" width="9.2379%" height="15" fill="rgb(222,156,15)" fg:x="469707" fg:w="119433"/><text x="36.5811%" y="687.50">entry_SYSCALL..</text></g><g><title>syscall_exit_to_user_mode (524 samples, 0.04%)</title><rect x="45.5285%" y="661" width="0.0405%" height="15" fill="rgb(231,97,17)" fg:x="588616" fg:w="524"/><text x="45.7785%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (401 samples, 0.03%)</title><rect x="45.5380%" y="645" width="0.0310%" height="15" fill="rgb(218,70,48)" fg:x="588739" fg:w="401"/><text x="45.7880%" y="655.50"></text></g><g><title>syscall_return_via_sysret (386 samples, 0.03%)</title><rect x="45.5723%" y="677" width="0.0299%" height="15" fill="rgb(212,196,52)" fg:x="589182" fg:w="386"/><text x="45.8223%" y="687.50"></text></g><g><title>__GI___xstat (121,504 samples, 9.40%)</title><rect x="36.2044%" y="693" width="9.3981%" height="15" fill="rgb(243,203,18)" fg:x="468069" fg:w="121504"/><text x="36.4544%" y="703.50">__GI___xstat</text></g><g><title>crc32c_pcl_intel_update (283 samples, 0.02%)</title><rect x="45.6600%" y="677" width="0.0219%" height="15" fill="rgb(252,125,41)" fg:x="590316" fg:w="283"/><text x="45.9100%" y="687.50"></text></g><g><title>entry_SYSCALL_64 (357 samples, 0.03%)</title><rect x="45.6819%" y="677" width="0.0276%" height="15" fill="rgb(223,180,33)" fg:x="590599" fg:w="357"/><text x="45.9319%" y="687.50"></text></g><g><title>getname_flags (227 samples, 0.02%)</title><rect x="45.7638%" y="629" width="0.0176%" height="15" fill="rgb(254,159,46)" fg:x="591658" fg:w="227"/><text x="46.0138%" y="639.50"></text></g><g><title>memset_erms (1,402 samples, 0.11%)</title><rect x="45.8285%" y="597" width="0.1084%" height="15" fill="rgb(254,38,10)" fg:x="592495" fg:w="1402"/><text x="46.0785%" y="607.50"></text></g><g><title>kmem_cache_alloc (2,088 samples, 0.16%)</title><rect x="45.7922%" y="613" width="0.1615%" height="15" fill="rgb(208,217,32)" fg:x="592026" fg:w="2088"/><text x="46.0422%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (217 samples, 0.02%)</title><rect x="45.9370%" y="597" width="0.0168%" height="15" fill="rgb(221,120,13)" fg:x="593897" fg:w="217"/><text x="46.1870%" y="607.50"></text></g><g><title>__check_heap_object (176 samples, 0.01%)</title><rect x="46.0275%" y="581" width="0.0136%" height="15" fill="rgb(246,54,52)" fg:x="595067" fg:w="176"/><text x="46.2775%" y="591.50"></text></g><g><title>__virt_addr_valid (622 samples, 0.05%)</title><rect x="46.0411%" y="581" width="0.0481%" height="15" fill="rgb(242,34,25)" fg:x="595243" fg:w="622"/><text x="46.2911%" y="591.50"></text></g><g><title>__check_object_size (1,104 samples, 0.09%)</title><rect x="46.0111%" y="597" width="0.0854%" height="15" fill="rgb(247,209,9)" fg:x="594855" fg:w="1104"/><text x="46.2611%" y="607.50"></text></g><g><title>getname_flags.part.0 (4,080 samples, 0.32%)</title><rect x="45.7813%" y="629" width="0.3156%" height="15" fill="rgb(228,71,26)" fg:x="591885" fg:w="4080"/><text x="46.0313%" y="639.50"></text></g><g><title>strncpy_from_user (1,851 samples, 0.14%)</title><rect x="45.9538%" y="613" width="0.1432%" height="15" fill="rgb(222,145,49)" fg:x="594114" fg:w="1851"/><text x="46.2038%" y="623.50"></text></g><g><title>__x64_sys_unlinkat (4,363 samples, 0.34%)</title><rect x="45.7597%" y="645" width="0.3375%" height="15" fill="rgb(218,121,17)" fg:x="591605" fg:w="4363"/><text x="46.0097%" y="655.50"></text></g><g><title>d_lru_add (178 samples, 0.01%)</title><rect x="46.1179%" y="613" width="0.0138%" height="15" fill="rgb(244,50,7)" fg:x="596236" fg:w="178"/><text x="46.3679%" y="623.50"></text></g><g><title>list_lru_add (173 samples, 0.01%)</title><rect x="46.1183%" y="597" width="0.0134%" height="15" fill="rgb(246,229,37)" fg:x="596241" fg:w="173"/><text x="46.3683%" y="607.50"></text></g><g><title>dput (337 samples, 0.03%)</title><rect x="46.1089%" y="629" width="0.0261%" height="15" fill="rgb(225,18,5)" fg:x="596120" fg:w="337"/><text x="46.3589%" y="639.50"></text></g><g><title>path_init (143 samples, 0.01%)</title><rect x="46.1503%" y="597" width="0.0111%" height="15" fill="rgb(213,204,8)" fg:x="596655" fg:w="143"/><text x="46.4003%" y="607.50"></text></g><g><title>filename_parentat (376 samples, 0.03%)</title><rect x="46.1350%" y="629" width="0.0291%" height="15" fill="rgb(238,103,6)" fg:x="596457" fg:w="376"/><text x="46.3850%" y="639.50"></text></g><g><title>path_parentat (351 samples, 0.03%)</title><rect x="46.1369%" y="613" width="0.0271%" height="15" fill="rgb(222,25,35)" fg:x="596482" fg:w="351"/><text x="46.3869%" y="623.50"></text></g><g><title>security_path_rmdir (175 samples, 0.01%)</title><rect x="46.1812%" y="629" width="0.0135%" height="15" fill="rgb(213,203,35)" fg:x="597054" fg:w="175"/><text x="46.4312%" y="639.50"></text></g><g><title>btrfs_trans_release_metadata (130 samples, 0.01%)</title><rect x="46.2157%" y="581" width="0.0101%" height="15" fill="rgb(221,79,53)" fg:x="597501" fg:w="130"/><text x="46.4657%" y="591.50"></text></g><g><title>__btrfs_end_transaction (294 samples, 0.02%)</title><rect x="46.2071%" y="597" width="0.0227%" height="15" fill="rgb(243,200,35)" fg:x="597390" fg:w="294"/><text x="46.4571%" y="607.50"></text></g><g><title>__wake_up_common (342 samples, 0.03%)</title><rect x="46.2453%" y="517" width="0.0265%" height="15" fill="rgb(248,60,25)" fg:x="597883" fg:w="342"/><text x="46.4953%" y="527.50"></text></g><g><title>autoremove_wake_function (331 samples, 0.03%)</title><rect x="46.2461%" y="501" width="0.0256%" height="15" fill="rgb(227,53,46)" fg:x="597894" fg:w="331"/><text x="46.4961%" y="511.50"></text></g><g><title>try_to_wake_up (323 samples, 0.02%)</title><rect x="46.2467%" y="485" width="0.0250%" height="15" fill="rgb(216,120,32)" fg:x="597902" fg:w="323"/><text x="46.4967%" y="495.50"></text></g><g><title>__wake_up_common_lock (419 samples, 0.03%)</title><rect x="46.2450%" y="533" width="0.0324%" height="15" fill="rgb(220,134,1)" fg:x="597879" fg:w="419"/><text x="46.4950%" y="543.50"></text></g><g><title>btrfs_free_path (502 samples, 0.04%)</title><rect x="46.2437%" y="565" width="0.0388%" height="15" fill="rgb(237,168,5)" fg:x="597863" fg:w="502"/><text x="46.4937%" y="575.50"></text></g><g><title>btrfs_release_path (496 samples, 0.04%)</title><rect x="46.2442%" y="549" width="0.0384%" height="15" fill="rgb(231,100,33)" fg:x="597869" fg:w="496"/><text x="46.4942%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (178 samples, 0.01%)</title><rect x="46.2890%" y="517" width="0.0138%" height="15" fill="rgb(236,177,47)" fg:x="598448" fg:w="178"/><text x="46.5390%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (186 samples, 0.01%)</title><rect x="46.2890%" y="533" width="0.0144%" height="15" fill="rgb(235,7,49)" fg:x="598448" fg:w="186"/><text x="46.5390%" y="543.50"></text></g><g><title>prepare_to_wait_event (132 samples, 0.01%)</title><rect x="46.3123%" y="501" width="0.0102%" height="15" fill="rgb(232,119,22)" fg:x="598750" fg:w="132"/><text x="46.5623%" y="511.50"></text></g><g><title>__btrfs_tree_lock (290 samples, 0.02%)</title><rect x="46.3062%" y="517" width="0.0224%" height="15" fill="rgb(254,73,53)" fg:x="598671" fg:w="290"/><text x="46.5562%" y="527.50"></text></g><g><title>btrfs_lock_root_node (309 samples, 0.02%)</title><rect x="46.3062%" y="533" width="0.0239%" height="15" fill="rgb(251,35,20)" fg:x="598670" fg:w="309"/><text x="46.5562%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (131 samples, 0.01%)</title><rect x="46.3410%" y="533" width="0.0101%" height="15" fill="rgb(241,119,20)" fg:x="599121" fg:w="131"/><text x="46.5910%" y="543.50"></text></g><g><title>btrfs_lookup_dir_index_item (913 samples, 0.07%)</title><rect x="46.2826%" y="565" width="0.0706%" height="15" fill="rgb(207,102,14)" fg:x="598365" fg:w="913"/><text x="46.5326%" y="575.50"></text></g><g><title>btrfs_search_slot (902 samples, 0.07%)</title><rect x="46.2834%" y="549" width="0.0698%" height="15" fill="rgb(248,201,50)" fg:x="598376" fg:w="902"/><text x="46.5334%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (234 samples, 0.02%)</title><rect x="46.3700%" y="485" width="0.0181%" height="15" fill="rgb(222,185,44)" fg:x="599495" fg:w="234"/><text x="46.6200%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (223 samples, 0.02%)</title><rect x="46.3708%" y="469" width="0.0172%" height="15" fill="rgb(218,107,18)" fg:x="599506" fg:w="223"/><text x="46.6208%" y="479.50"></text></g><g><title>prepare_to_wait_event (247 samples, 0.02%)</title><rect x="46.3693%" y="501" width="0.0191%" height="15" fill="rgb(237,177,39)" fg:x="599486" fg:w="247"/><text x="46.6193%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (559 samples, 0.04%)</title><rect x="46.3605%" y="517" width="0.0432%" height="15" fill="rgb(246,69,6)" fg:x="599373" fg:w="559"/><text x="46.6105%" y="527.50"></text></g><g><title>schedule (184 samples, 0.01%)</title><rect x="46.3895%" y="501" width="0.0142%" height="15" fill="rgb(234,208,37)" fg:x="599748" fg:w="184"/><text x="46.6395%" y="511.50"></text></g><g><title>__schedule (180 samples, 0.01%)</title><rect x="46.3898%" y="485" width="0.0139%" height="15" fill="rgb(225,4,6)" fg:x="599752" fg:w="180"/><text x="46.6398%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (582 samples, 0.05%)</title><rect x="46.3603%" y="533" width="0.0450%" height="15" fill="rgb(233,45,0)" fg:x="599370" fg:w="582"/><text x="46.6103%" y="543.50"></text></g><g><title>prepare_to_wait_event (133 samples, 0.01%)</title><rect x="46.4164%" y="501" width="0.0103%" height="15" fill="rgb(226,136,5)" fg:x="600095" fg:w="133"/><text x="46.6664%" y="511.50"></text></g><g><title>__btrfs_tree_lock (315 samples, 0.02%)</title><rect x="46.4089%" y="517" width="0.0244%" height="15" fill="rgb(211,91,47)" fg:x="599998" fg:w="315"/><text x="46.6589%" y="527.50"></text></g><g><title>btrfs_lock_root_node (328 samples, 0.03%)</title><rect x="46.4088%" y="533" width="0.0254%" height="15" fill="rgb(242,88,51)" fg:x="599997" fg:w="328"/><text x="46.6588%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (139 samples, 0.01%)</title><rect x="46.4449%" y="533" width="0.0108%" height="15" fill="rgb(230,91,28)" fg:x="600464" fg:w="139"/><text x="46.6949%" y="543.50"></text></g><g><title>btrfs_search_slot (1,347 samples, 0.10%)</title><rect x="46.3543%" y="549" width="0.1042%" height="15" fill="rgb(254,186,29)" fg:x="599292" fg:w="1347"/><text x="46.6043%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (1,376 samples, 0.11%)</title><rect x="46.3532%" y="565" width="0.1064%" height="15" fill="rgb(238,6,4)" fg:x="599278" fg:w="1376"/><text x="46.6032%" y="575.50"></text></g><g><title>__wake_up_common (313 samples, 0.02%)</title><rect x="46.4615%" y="533" width="0.0242%" height="15" fill="rgb(221,151,16)" fg:x="600678" fg:w="313"/><text x="46.7115%" y="543.50"></text></g><g><title>autoremove_wake_function (307 samples, 0.02%)</title><rect x="46.4619%" y="517" width="0.0237%" height="15" fill="rgb(251,143,52)" fg:x="600684" fg:w="307"/><text x="46.7119%" y="527.50"></text></g><g><title>try_to_wake_up (300 samples, 0.02%)</title><rect x="46.4625%" y="501" width="0.0232%" height="15" fill="rgb(206,90,15)" fg:x="600691" fg:w="300"/><text x="46.7125%" y="511.50"></text></g><g><title>__wake_up_common_lock (401 samples, 0.03%)</title><rect x="46.4614%" y="549" width="0.0310%" height="15" fill="rgb(218,35,8)" fg:x="600677" fg:w="401"/><text x="46.7114%" y="559.50"></text></g><g><title>btrfs_release_path (495 samples, 0.04%)</title><rect x="46.4596%" y="565" width="0.0383%" height="15" fill="rgb(239,215,6)" fg:x="600654" fg:w="495"/><text x="46.7096%" y="575.50"></text></g><g><title>btrfs_del_dir_entries_in_log (3,481 samples, 0.27%)</title><rect x="46.2376%" y="581" width="0.2692%" height="15" fill="rgb(245,116,39)" fg:x="597784" fg:w="3481"/><text x="46.4876%" y="591.50"></text></g><g><title>ttwu_do_activate (164 samples, 0.01%)</title><rect x="46.5499%" y="453" width="0.0127%" height="15" fill="rgb(242,65,28)" fg:x="601821" fg:w="164"/><text x="46.7999%" y="463.50"></text></g><g><title>__wake_up_common (682 samples, 0.05%)</title><rect x="46.5145%" y="501" width="0.0528%" height="15" fill="rgb(252,132,53)" fg:x="601364" fg:w="682"/><text x="46.7645%" y="511.50"></text></g><g><title>autoremove_wake_function (659 samples, 0.05%)</title><rect x="46.5163%" y="485" width="0.0510%" height="15" fill="rgb(224,159,50)" fg:x="601387" fg:w="659"/><text x="46.7663%" y="495.50"></text></g><g><title>try_to_wake_up (651 samples, 0.05%)</title><rect x="46.5169%" y="469" width="0.0504%" height="15" fill="rgb(224,93,4)" fg:x="601395" fg:w="651"/><text x="46.7669%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (295 samples, 0.02%)</title><rect x="46.5673%" y="501" width="0.0228%" height="15" fill="rgb(208,81,34)" fg:x="602046" fg:w="295"/><text x="46.8173%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (285 samples, 0.02%)</title><rect x="46.5681%" y="485" width="0.0220%" height="15" fill="rgb(233,92,54)" fg:x="602056" fg:w="285"/><text x="46.8181%" y="495.50"></text></g><g><title>__wake_up_common_lock (985 samples, 0.08%)</title><rect x="46.5145%" y="517" width="0.0762%" height="15" fill="rgb(237,21,14)" fg:x="601363" fg:w="985"/><text x="46.7645%" y="527.50"></text></g><g><title>btrfs_free_path (1,179 samples, 0.09%)</title><rect x="46.5109%" y="549" width="0.0912%" height="15" fill="rgb(249,128,51)" fg:x="601317" fg:w="1179"/><text x="46.7609%" y="559.50"></text></g><g><title>btrfs_release_path (1,168 samples, 0.09%)</title><rect x="46.5117%" y="533" width="0.0903%" height="15" fill="rgb(223,129,24)" fg:x="601328" fg:w="1168"/><text x="46.7617%" y="543.50"></text></g><g><title>finish_wait (160 samples, 0.01%)</title><rect x="46.6215%" y="501" width="0.0124%" height="15" fill="rgb(231,168,25)" fg:x="602747" fg:w="160"/><text x="46.8715%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (149 samples, 0.01%)</title><rect x="46.6224%" y="485" width="0.0115%" height="15" fill="rgb(224,39,20)" fg:x="602758" fg:w="149"/><text x="46.8724%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (140 samples, 0.01%)</title><rect x="46.6230%" y="469" width="0.0108%" height="15" fill="rgb(225,152,53)" fg:x="602767" fg:w="140"/><text x="46.8730%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (359 samples, 0.03%)</title><rect x="46.6366%" y="485" width="0.0278%" height="15" fill="rgb(252,17,24)" fg:x="602942" fg:w="359"/><text x="46.8866%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (338 samples, 0.03%)</title><rect x="46.6382%" y="469" width="0.0261%" height="15" fill="rgb(250,114,30)" fg:x="602963" fg:w="338"/><text x="46.8882%" y="479.50"></text></g><g><title>prepare_to_wait_event (402 samples, 0.03%)</title><rect x="46.6339%" y="501" width="0.0311%" height="15" fill="rgb(229,5,4)" fg:x="602907" fg:w="402"/><text x="46.8839%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (1,032 samples, 0.08%)</title><rect x="46.6148%" y="517" width="0.0798%" height="15" fill="rgb(225,176,49)" fg:x="602660" fg:w="1032"/><text x="46.8648%" y="527.50"></text></g><g><title>schedule (359 samples, 0.03%)</title><rect x="46.6668%" y="501" width="0.0278%" height="15" fill="rgb(224,221,49)" fg:x="603333" fg:w="359"/><text x="46.9168%" y="511.50"></text></g><g><title>__schedule (355 samples, 0.03%)</title><rect x="46.6671%" y="485" width="0.0275%" height="15" fill="rgb(253,169,27)" fg:x="603337" fg:w="355"/><text x="46.9171%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (1,121 samples, 0.09%)</title><rect x="46.6142%" y="533" width="0.0867%" height="15" fill="rgb(211,206,16)" fg:x="602652" fg:w="1121"/><text x="46.8642%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (207 samples, 0.02%)</title><rect x="46.7193%" y="485" width="0.0160%" height="15" fill="rgb(244,87,35)" fg:x="604011" fg:w="207"/><text x="46.9693%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (199 samples, 0.02%)</title><rect x="46.7199%" y="469" width="0.0154%" height="15" fill="rgb(246,28,10)" fg:x="604019" fg:w="199"/><text x="46.9699%" y="479.50"></text></g><g><title>prepare_to_wait_event (235 samples, 0.02%)</title><rect x="46.7176%" y="501" width="0.0182%" height="15" fill="rgb(229,12,44)" fg:x="603990" fg:w="235"/><text x="46.9676%" y="511.50"></text></g><g><title>__btrfs_tree_lock (562 samples, 0.04%)</title><rect x="46.7056%" y="517" width="0.0435%" height="15" fill="rgb(210,145,37)" fg:x="603834" fg:w="562"/><text x="46.9556%" y="527.50"></text></g><g><title>schedule (130 samples, 0.01%)</title><rect x="46.7390%" y="501" width="0.0101%" height="15" fill="rgb(227,112,52)" fg:x="604266" fg:w="130"/><text x="46.9890%" y="511.50"></text></g><g><title>btrfs_lock_root_node (598 samples, 0.05%)</title><rect x="46.7053%" y="533" width="0.0463%" height="15" fill="rgb(238,155,34)" fg:x="603831" fg:w="598"/><text x="46.9553%" y="543.50"></text></g><g><title>find_extent_buffer (241 samples, 0.02%)</title><rect x="46.7817%" y="517" width="0.0186%" height="15" fill="rgb(239,226,36)" fg:x="604818" fg:w="241"/><text x="47.0317%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (421 samples, 0.03%)</title><rect x="46.7718%" y="533" width="0.0326%" height="15" fill="rgb(230,16,23)" fg:x="604690" fg:w="421"/><text x="47.0218%" y="543.50"></text></g><g><title>btrfs_search_slot (2,665 samples, 0.21%)</title><rect x="46.6021%" y="549" width="0.2061%" height="15" fill="rgb(236,171,36)" fg:x="602496" fg:w="2665"/><text x="46.8521%" y="559.50"></text></g><g><title>btrfs_del_inode_ref (4,104 samples, 0.32%)</title><rect x="46.5089%" y="565" width="0.3174%" height="15" fill="rgb(221,22,14)" fg:x="601291" fg:w="4104"/><text x="46.7589%" y="575.50"></text></g><g><title>btrfs_del_inode_ref_in_log (4,235 samples, 0.33%)</title><rect x="46.5069%" y="581" width="0.3276%" height="15" fill="rgb(242,43,11)" fg:x="601265" fg:w="4235"/><text x="46.7569%" y="591.50"></text></g><g><title>btrfs_get_token_32 (662 samples, 0.05%)</title><rect x="46.8613%" y="565" width="0.0512%" height="15" fill="rgb(232,69,23)" fg:x="605847" fg:w="662"/><text x="47.1113%" y="575.50"></text></g><g><title>btrfs_set_token_32 (487 samples, 0.04%)</title><rect x="46.9157%" y="565" width="0.0377%" height="15" fill="rgb(216,180,54)" fg:x="606551" fg:w="487"/><text x="47.1657%" y="575.50"></text></g><g><title>memmove_extent_buffer (351 samples, 0.03%)</title><rect x="46.9635%" y="565" width="0.0271%" height="15" fill="rgb(216,5,24)" fg:x="607168" fg:w="351"/><text x="47.2135%" y="575.50"></text></g><g><title>memmove (272 samples, 0.02%)</title><rect x="46.9696%" y="549" width="0.0210%" height="15" fill="rgb(225,89,9)" fg:x="607247" fg:w="272"/><text x="47.2196%" y="559.50"></text></g><g><title>__push_leaf_right (136 samples, 0.01%)</title><rect x="46.9946%" y="549" width="0.0105%" height="15" fill="rgb(243,75,33)" fg:x="607571" fg:w="136"/><text x="47.2446%" y="559.50"></text></g><g><title>push_leaf_right (161 samples, 0.01%)</title><rect x="46.9944%" y="565" width="0.0125%" height="15" fill="rgb(247,141,45)" fg:x="607568" fg:w="161"/><text x="47.2444%" y="575.50"></text></g><g><title>btrfs_del_items (2,239 samples, 0.17%)</title><rect x="46.8344%" y="581" width="0.1732%" height="15" fill="rgb(232,177,36)" fg:x="605500" fg:w="2239"/><text x="47.0844%" y="591.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (311 samples, 0.02%)</title><rect x="47.0076%" y="581" width="0.0241%" height="15" fill="rgb(219,125,36)" fg:x="607739" fg:w="311"/><text x="47.2576%" y="591.50"></text></g><g><title>btrfs_delete_delayed_dir_index (503 samples, 0.04%)</title><rect x="47.0317%" y="581" width="0.0389%" height="15" fill="rgb(227,94,9)" fg:x="608050" fg:w="503"/><text x="47.2817%" y="591.50"></text></g><g><title>btrfs_match_dir_item_name (141 samples, 0.01%)</title><rect x="47.0762%" y="565" width="0.0109%" height="15" fill="rgb(240,34,52)" fg:x="608625" fg:w="141"/><text x="47.3262%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (322 samples, 0.02%)</title><rect x="47.1105%" y="517" width="0.0249%" height="15" fill="rgb(216,45,12)" fg:x="609069" fg:w="322"/><text x="47.3605%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (189 samples, 0.01%)</title><rect x="47.1208%" y="501" width="0.0146%" height="15" fill="rgb(246,21,19)" fg:x="609202" fg:w="189"/><text x="47.3708%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (646 samples, 0.05%)</title><rect x="47.0952%" y="533" width="0.0500%" height="15" fill="rgb(213,98,42)" fg:x="608871" fg:w="646"/><text x="47.3452%" y="543.50"></text></g><g><title>__btrfs_read_lock_root_node (696 samples, 0.05%)</title><rect x="47.0948%" y="549" width="0.0538%" height="15" fill="rgb(250,136,47)" fg:x="608866" fg:w="696"/><text x="47.3448%" y="559.50"></text></g><g><title>__btrfs_tree_lock (187 samples, 0.01%)</title><rect x="47.1486%" y="549" width="0.0145%" height="15" fill="rgb(251,124,27)" fg:x="609562" fg:w="187"/><text x="47.3986%" y="559.50"></text></g><g><title>schedule (165 samples, 0.01%)</title><rect x="47.1503%" y="533" width="0.0128%" height="15" fill="rgb(229,180,14)" fg:x="609584" fg:w="165"/><text x="47.4003%" y="543.50"></text></g><g><title>__schedule (164 samples, 0.01%)</title><rect x="47.1504%" y="517" width="0.0127%" height="15" fill="rgb(245,216,25)" fg:x="609585" fg:w="164"/><text x="47.4004%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (146 samples, 0.01%)</title><rect x="47.1759%" y="501" width="0.0113%" height="15" fill="rgb(251,43,5)" fg:x="609914" fg:w="146"/><text x="47.4259%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (140 samples, 0.01%)</title><rect x="47.1763%" y="485" width="0.0108%" height="15" fill="rgb(250,128,24)" fg:x="609920" fg:w="140"/><text x="47.4263%" y="495.50"></text></g><g><title>prepare_to_wait_event (173 samples, 0.01%)</title><rect x="47.1742%" y="517" width="0.0134%" height="15" fill="rgb(217,117,27)" fg:x="609893" fg:w="173"/><text x="47.4242%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (467 samples, 0.04%)</title><rect x="47.1876%" y="517" width="0.0361%" height="15" fill="rgb(245,147,4)" fg:x="610066" fg:w="467"/><text x="47.4376%" y="527.50"></text></g><g><title>__btrfs_tree_lock (1,032 samples, 0.08%)</title><rect x="47.1648%" y="533" width="0.0798%" height="15" fill="rgb(242,201,35)" fg:x="609771" fg:w="1032"/><text x="47.4148%" y="543.50"></text></g><g><title>schedule (270 samples, 0.02%)</title><rect x="47.2237%" y="517" width="0.0209%" height="15" fill="rgb(218,181,1)" fg:x="610533" fg:w="270"/><text x="47.4737%" y="527.50"></text></g><g><title>__schedule (267 samples, 0.02%)</title><rect x="47.2240%" y="501" width="0.0207%" height="15" fill="rgb(222,6,29)" fg:x="610536" fg:w="267"/><text x="47.4740%" y="511.50"></text></g><g><title>btrfs_lock_root_node (1,059 samples, 0.08%)</title><rect x="47.1646%" y="549" width="0.0819%" height="15" fill="rgb(208,186,3)" fg:x="609768" fg:w="1059"/><text x="47.4146%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (347 samples, 0.03%)</title><rect x="47.2502%" y="549" width="0.0268%" height="15" fill="rgb(216,36,26)" fg:x="610875" fg:w="347"/><text x="47.5002%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (321 samples, 0.02%)</title><rect x="47.2522%" y="533" width="0.0248%" height="15" fill="rgb(248,201,23)" fg:x="610901" fg:w="321"/><text x="47.5022%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (300 samples, 0.02%)</title><rect x="47.2788%" y="549" width="0.0232%" height="15" fill="rgb(251,170,31)" fg:x="611245" fg:w="300"/><text x="47.5288%" y="559.50"></text></g><g><title>__radix_tree_lookup (136 samples, 0.01%)</title><rect x="47.3205%" y="517" width="0.0105%" height="15" fill="rgb(207,110,25)" fg:x="611784" fg:w="136"/><text x="47.5705%" y="527.50"></text></g><g><title>find_extent_buffer (312 samples, 0.02%)</title><rect x="47.3131%" y="533" width="0.0241%" height="15" fill="rgb(250,54,15)" fg:x="611689" fg:w="312"/><text x="47.5631%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (510 samples, 0.04%)</title><rect x="47.3020%" y="549" width="0.0394%" height="15" fill="rgb(227,68,33)" fg:x="611545" fg:w="510"/><text x="47.5520%" y="559.50"></text></g><g><title>reada_for_balance (172 samples, 0.01%)</title><rect x="47.3415%" y="549" width="0.0133%" height="15" fill="rgb(238,34,41)" fg:x="612055" fg:w="172"/><text x="47.5915%" y="559.50"></text></g><g><title>enqueue_task_fair (146 samples, 0.01%)</title><rect x="47.3975%" y="453" width="0.0113%" height="15" fill="rgb(220,11,15)" fg:x="612779" fg:w="146"/><text x="47.6475%" y="463.50"></text></g><g><title>ttwu_do_activate (269 samples, 0.02%)</title><rect x="47.3967%" y="469" width="0.0208%" height="15" fill="rgb(246,111,35)" fg:x="612769" fg:w="269"/><text x="47.6467%" y="479.50"></text></g><g><title>__wake_up_common (825 samples, 0.06%)</title><rect x="47.3594%" y="517" width="0.0638%" height="15" fill="rgb(209,88,53)" fg:x="612287" fg:w="825"/><text x="47.6094%" y="527.50"></text></g><g><title>autoremove_wake_function (812 samples, 0.06%)</title><rect x="47.3604%" y="501" width="0.0628%" height="15" fill="rgb(231,185,47)" fg:x="612300" fg:w="812"/><text x="47.6104%" y="511.50"></text></g><g><title>try_to_wake_up (792 samples, 0.06%)</title><rect x="47.3620%" y="485" width="0.0613%" height="15" fill="rgb(233,154,1)" fg:x="612320" fg:w="792"/><text x="47.6120%" y="495.50"></text></g><g><title>__wake_up_common_lock (875 samples, 0.07%)</title><rect x="47.3594%" y="533" width="0.0677%" height="15" fill="rgb(225,15,46)" fg:x="612287" fg:w="875"/><text x="47.6094%" y="543.50"></text></g><g><title>btrfs_search_slot (4,419 samples, 0.34%)</title><rect x="47.0871%" y="565" width="0.3418%" height="15" fill="rgb(211,135,41)" fg:x="608766" fg:w="4419"/><text x="47.3371%" y="575.50"></text></g><g><title>unlock_up (949 samples, 0.07%)</title><rect x="47.3555%" y="549" width="0.0734%" height="15" fill="rgb(208,54,0)" fg:x="612236" fg:w="949"/><text x="47.6055%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (4,641 samples, 0.36%)</title><rect x="47.0745%" y="581" width="0.3590%" height="15" fill="rgb(244,136,14)" fg:x="608603" fg:w="4641"/><text x="47.3245%" y="591.50"></text></g><g><title>__wake_up_common (324 samples, 0.03%)</title><rect x="47.4340%" y="549" width="0.0251%" height="15" fill="rgb(241,56,14)" fg:x="613251" fg:w="324"/><text x="47.6840%" y="559.50"></text></g><g><title>autoremove_wake_function (321 samples, 0.02%)</title><rect x="47.4342%" y="533" width="0.0248%" height="15" fill="rgb(205,80,24)" fg:x="613254" fg:w="321"/><text x="47.6842%" y="543.50"></text></g><g><title>try_to_wake_up (313 samples, 0.02%)</title><rect x="47.4348%" y="517" width="0.0242%" height="15" fill="rgb(220,57,4)" fg:x="613262" fg:w="313"/><text x="47.6848%" y="527.50"></text></g><g><title>__wake_up_common_lock (328 samples, 0.03%)</title><rect x="47.4339%" y="565" width="0.0254%" height="15" fill="rgb(226,193,50)" fg:x="613250" fg:w="328"/><text x="47.6839%" y="575.50"></text></g><g><title>btrfs_release_path (434 samples, 0.03%)</title><rect x="47.4334%" y="581" width="0.0336%" height="15" fill="rgb(231,168,22)" fg:x="613244" fg:w="434"/><text x="47.6834%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (291 samples, 0.02%)</title><rect x="47.4694%" y="565" width="0.0225%" height="15" fill="rgb(254,215,14)" fg:x="613709" fg:w="291"/><text x="47.7194%" y="575.50"></text></g><g><title>btrfs_update_inode (390 samples, 0.03%)</title><rect x="47.4670%" y="581" width="0.0302%" height="15" fill="rgb(211,115,16)" fg:x="613678" fg:w="390"/><text x="47.7170%" y="591.50"></text></g><g><title>__btrfs_unlink_inode (16,497 samples, 1.28%)</title><rect x="46.2299%" y="597" width="1.2760%" height="15" fill="rgb(236,210,16)" fg:x="597684" fg:w="16497"/><text x="46.4799%" y="607.50"></text></g><g><title>btrfs_btree_balance_dirty (232 samples, 0.02%)</title><rect x="47.5105%" y="597" width="0.0179%" height="15" fill="rgb(221,94,12)" fg:x="614241" fg:w="232"/><text x="47.7605%" y="607.50"></text></g><g><title>queue_work_on (163 samples, 0.01%)</title><rect x="47.5159%" y="581" width="0.0126%" height="15" fill="rgb(235,218,49)" fg:x="614310" fg:w="163"/><text x="47.7659%" y="591.50"></text></g><g><title>__queue_work (159 samples, 0.01%)</title><rect x="47.5162%" y="565" width="0.0123%" height="15" fill="rgb(217,114,14)" fg:x="614314" fg:w="159"/><text x="47.7662%" y="575.50"></text></g><g><title>btrfs_free_path (160 samples, 0.01%)</title><rect x="47.5306%" y="565" width="0.0124%" height="15" fill="rgb(216,145,22)" fg:x="614500" fg:w="160"/><text x="47.7806%" y="575.50"></text></g><g><title>btrfs_release_path (147 samples, 0.01%)</title><rect x="47.5316%" y="549" width="0.0114%" height="15" fill="rgb(217,112,39)" fg:x="614513" fg:w="147"/><text x="47.7816%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (166 samples, 0.01%)</title><rect x="47.5654%" y="485" width="0.0128%" height="15" fill="rgb(225,85,32)" fg:x="614950" fg:w="166"/><text x="47.8154%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (159 samples, 0.01%)</title><rect x="47.5659%" y="469" width="0.0123%" height="15" fill="rgb(245,209,47)" fg:x="614957" fg:w="159"/><text x="47.8159%" y="479.50"></text></g><g><title>prepare_to_wait_event (194 samples, 0.02%)</title><rect x="47.5637%" y="501" width="0.0150%" height="15" fill="rgb(218,220,15)" fg:x="614928" fg:w="194"/><text x="47.8137%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (349 samples, 0.03%)</title><rect x="47.5787%" y="501" width="0.0270%" height="15" fill="rgb(222,202,31)" fg:x="615122" fg:w="349"/><text x="47.8287%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (214 samples, 0.02%)</title><rect x="47.5891%" y="485" width="0.0166%" height="15" fill="rgb(243,203,4)" fg:x="615257" fg:w="214"/><text x="47.8391%" y="495.50"></text></g><g><title>finish_task_switch (133 samples, 0.01%)</title><rect x="47.6120%" y="469" width="0.0103%" height="15" fill="rgb(237,92,17)" fg:x="615553" fg:w="133"/><text x="47.8620%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (937 samples, 0.07%)</title><rect x="47.5556%" y="517" width="0.0725%" height="15" fill="rgb(231,119,7)" fg:x="614823" fg:w="937"/><text x="47.8056%" y="527.50"></text></g><g><title>schedule (289 samples, 0.02%)</title><rect x="47.6057%" y="501" width="0.0224%" height="15" fill="rgb(237,82,41)" fg:x="615471" fg:w="289"/><text x="47.8557%" y="511.50"></text></g><g><title>__schedule (286 samples, 0.02%)</title><rect x="47.6059%" y="485" width="0.0221%" height="15" fill="rgb(226,81,48)" fg:x="615474" fg:w="286"/><text x="47.8559%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (1,027 samples, 0.08%)</title><rect x="47.5547%" y="533" width="0.0794%" height="15" fill="rgb(234,70,51)" fg:x="614812" fg:w="1027"/><text x="47.8047%" y="543.50"></text></g><g><title>__btrfs_tree_lock (220 samples, 0.02%)</title><rect x="47.6341%" y="533" width="0.0170%" height="15" fill="rgb(251,86,4)" fg:x="615839" fg:w="220"/><text x="47.8841%" y="543.50"></text></g><g><title>schedule (175 samples, 0.01%)</title><rect x="47.6376%" y="517" width="0.0135%" height="15" fill="rgb(244,144,28)" fg:x="615884" fg:w="175"/><text x="47.8876%" y="527.50"></text></g><g><title>__schedule (173 samples, 0.01%)</title><rect x="47.6378%" y="501" width="0.0134%" height="15" fill="rgb(232,161,39)" fg:x="615886" fg:w="173"/><text x="47.8878%" y="511.50"></text></g><g><title>btrfs_try_tree_write_lock (234 samples, 0.02%)</title><rect x="47.6626%" y="533" width="0.0181%" height="15" fill="rgb(247,34,51)" fg:x="616207" fg:w="234"/><text x="47.9126%" y="543.50"></text></g><g><title>queued_write_lock_slowpath (198 samples, 0.02%)</title><rect x="47.6654%" y="517" width="0.0153%" height="15" fill="rgb(225,132,2)" fg:x="616243" fg:w="198"/><text x="47.9154%" y="527.50"></text></g><g><title>generic_bin_search.constprop.0 (277 samples, 0.02%)</title><rect x="47.6807%" y="533" width="0.0214%" height="15" fill="rgb(209,159,44)" fg:x="616441" fg:w="277"/><text x="47.9307%" y="543.50"></text></g><g><title>__radix_tree_lookup (176 samples, 0.01%)</title><rect x="47.7215%" y="501" width="0.0136%" height="15" fill="rgb(251,214,1)" fg:x="616968" fg:w="176"/><text x="47.9715%" y="511.50"></text></g><g><title>find_extent_buffer (361 samples, 0.03%)</title><rect x="47.7134%" y="517" width="0.0279%" height="15" fill="rgb(247,84,47)" fg:x="616864" fg:w="361"/><text x="47.9634%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (565 samples, 0.04%)</title><rect x="47.7021%" y="533" width="0.0437%" height="15" fill="rgb(240,111,43)" fg:x="616718" fg:w="565"/><text x="47.9521%" y="543.50"></text></g><g><title>btrfs_search_slot (2,834 samples, 0.22%)</title><rect x="47.5448%" y="549" width="0.2192%" height="15" fill="rgb(215,214,35)" fg:x="614684" fg:w="2834"/><text x="47.7948%" y="559.50"></text></g><g><title>unlock_up (225 samples, 0.02%)</title><rect x="47.7466%" y="533" width="0.0174%" height="15" fill="rgb(248,207,23)" fg:x="617293" fg:w="225"/><text x="47.9966%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (3,201 samples, 0.25%)</title><rect x="47.5430%" y="565" width="0.2476%" height="15" fill="rgb(214,186,4)" fg:x="614660" fg:w="3201"/><text x="47.7930%" y="575.50"></text></g><g><title>setup_items_for_insert (343 samples, 0.03%)</title><rect x="47.7640%" y="549" width="0.0265%" height="15" fill="rgb(220,133,22)" fg:x="617518" fg:w="343"/><text x="48.0140%" y="559.50"></text></g><g><title>btrfs_orphan_add (3,477 samples, 0.27%)</title><rect x="47.5286%" y="597" width="0.2689%" height="15" fill="rgb(239,134,19)" fg:x="614475" fg:w="3477"/><text x="47.7786%" y="607.50"></text></g><g><title>btrfs_insert_orphan_item (3,468 samples, 0.27%)</title><rect x="47.5293%" y="581" width="0.2682%" height="15" fill="rgb(250,140,9)" fg:x="614484" fg:w="3468"/><text x="47.7793%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (197 samples, 0.02%)</title><rect x="47.7997%" y="581" width="0.0152%" height="15" fill="rgb(225,59,14)" fg:x="617980" fg:w="197"/><text x="48.0497%" y="591.50"></text></g><g><title>btrfs_update_inode (227 samples, 0.02%)</title><rect x="47.7986%" y="597" width="0.0176%" height="15" fill="rgb(214,152,51)" fg:x="617965" fg:w="227"/><text x="48.0486%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (375 samples, 0.03%)</title><rect x="47.8260%" y="581" width="0.0290%" height="15" fill="rgb(251,227,43)" fg:x="618319" fg:w="375"/><text x="48.0760%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (328 samples, 0.03%)</title><rect x="47.8296%" y="565" width="0.0254%" height="15" fill="rgb(241,96,17)" fg:x="618366" fg:w="328"/><text x="48.0796%" y="575.50"></text></g><g><title>__reserve_bytes (295 samples, 0.02%)</title><rect x="47.8322%" y="549" width="0.0228%" height="15" fill="rgb(234,198,43)" fg:x="618399" fg:w="295"/><text x="48.0822%" y="559.50"></text></g><g><title>btrfs_rmdir (21,538 samples, 1.67%)</title><rect x="46.2007%" y="613" width="1.6659%" height="15" fill="rgb(220,108,29)" fg:x="597307" fg:w="21538"/><text x="46.4507%" y="623.50"></text></g><g><title>start_transaction (620 samples, 0.05%)</title><rect x="47.8187%" y="597" width="0.0480%" height="15" fill="rgb(226,163,33)" fg:x="618225" fg:w="620"/><text x="48.0687%" y="607.50"></text></g><g><title>dentry_unlink_inode (155 samples, 0.01%)</title><rect x="47.8742%" y="613" width="0.0120%" height="15" fill="rgb(205,194,45)" fg:x="618943" fg:w="155"/><text x="48.1242%" y="623.50"></text></g><g><title>__destroy_inode (180 samples, 0.01%)</title><rect x="47.8865%" y="597" width="0.0139%" height="15" fill="rgb(206,143,44)" fg:x="619101" fg:w="180"/><text x="48.1365%" y="607.50"></text></g><g><title>alloc_extent_map (172 samples, 0.01%)</title><rect x="47.9077%" y="565" width="0.0133%" height="15" fill="rgb(236,136,36)" fg:x="619376" fg:w="172"/><text x="48.1577%" y="575.50"></text></g><g><title>kmem_cache_alloc (154 samples, 0.01%)</title><rect x="47.9091%" y="549" width="0.0119%" height="15" fill="rgb(249,172,42)" fg:x="619394" fg:w="154"/><text x="48.1591%" y="559.50"></text></g><g><title>btrfs_drop_extent_cache (305 samples, 0.02%)</title><rect x="47.9045%" y="581" width="0.0236%" height="15" fill="rgb(216,139,23)" fg:x="619334" fg:w="305"/><text x="48.1545%" y="591.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (150 samples, 0.01%)</title><rect x="47.9281%" y="581" width="0.0116%" height="15" fill="rgb(207,166,20)" fg:x="619639" fg:w="150"/><text x="48.1781%" y="591.50"></text></g><g><title>clear_record_extent_bits (210 samples, 0.02%)</title><rect x="47.9466%" y="565" width="0.0162%" height="15" fill="rgb(210,209,22)" fg:x="619879" fg:w="210"/><text x="48.1966%" y="575.50"></text></g><g><title>__clear_extent_bit (177 samples, 0.01%)</title><rect x="47.9492%" y="549" width="0.0137%" height="15" fill="rgb(232,118,20)" fg:x="619912" fg:w="177"/><text x="48.1992%" y="559.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (276 samples, 0.02%)</title><rect x="47.9442%" y="581" width="0.0213%" height="15" fill="rgb(238,113,42)" fg:x="619848" fg:w="276"/><text x="48.1942%" y="591.50"></text></g><g><title>btrfs_destroy_inode (1,040 samples, 0.08%)</title><rect x="47.9004%" y="597" width="0.0804%" height="15" fill="rgb(231,42,5)" fg:x="619281" fg:w="1040"/><text x="48.1504%" y="607.50"></text></g><g><title>rb_erase (197 samples, 0.02%)</title><rect x="47.9656%" y="581" width="0.0152%" height="15" fill="rgb(243,166,24)" fg:x="620124" fg:w="197"/><text x="48.2156%" y="591.50"></text></g><g><title>destroy_inode (1,242 samples, 0.10%)</title><rect x="47.8862%" y="613" width="0.0961%" height="15" fill="rgb(237,226,12)" fg:x="619098" fg:w="1242"/><text x="48.1362%" y="623.50"></text></g><g><title>btrfs_trans_release_metadata (234 samples, 0.02%)</title><rect x="48.0230%" y="565" width="0.0181%" height="15" fill="rgb(229,133,24)" fg:x="620866" fg:w="234"/><text x="48.2730%" y="575.50"></text></g><g><title>btrfs_block_rsv_release (218 samples, 0.02%)</title><rect x="48.0242%" y="549" width="0.0169%" height="15" fill="rgb(238,33,43)" fg:x="620882" fg:w="218"/><text x="48.2742%" y="559.50"></text></g><g><title>__btrfs_end_transaction (520 samples, 0.04%)</title><rect x="48.0068%" y="581" width="0.0402%" height="15" fill="rgb(227,59,38)" fg:x="620657" fg:w="520"/><text x="48.2568%" y="591.50"></text></g><g><title>__radix_tree_lookup (183 samples, 0.01%)</title><rect x="48.0618%" y="549" width="0.0142%" height="15" fill="rgb(230,97,0)" fg:x="621368" fg:w="183"/><text x="48.3118%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (386 samples, 0.03%)</title><rect x="48.0470%" y="581" width="0.0299%" height="15" fill="rgb(250,173,50)" fg:x="621177" fg:w="386"/><text x="48.2970%" y="591.50"></text></g><g><title>radix_tree_delete_item (238 samples, 0.02%)</title><rect x="48.0585%" y="565" width="0.0184%" height="15" fill="rgb(240,15,50)" fg:x="621325" fg:w="238"/><text x="48.3085%" y="575.50"></text></g><g><title>btrfs_alloc_block_rsv (143 samples, 0.01%)</title><rect x="48.0827%" y="581" width="0.0111%" height="15" fill="rgb(221,93,22)" fg:x="621638" fg:w="143"/><text x="48.3327%" y="591.50"></text></g><g><title>btrfs_btree_balance_dirty (148 samples, 0.01%)</title><rect x="48.0937%" y="581" width="0.0114%" height="15" fill="rgb(245,180,53)" fg:x="621781" fg:w="148"/><text x="48.3437%" y="591.50"></text></g><g><title>__btrfs_end_transaction (142 samples, 0.01%)</title><rect x="48.1076%" y="565" width="0.0110%" height="15" fill="rgb(231,88,51)" fg:x="621960" fg:w="142"/><text x="48.3576%" y="575.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (183 samples, 0.01%)</title><rect x="48.1186%" y="565" width="0.0142%" height="15" fill="rgb(240,58,21)" fg:x="622102" fg:w="183"/><text x="48.3686%" y="575.50"></text></g><g><title>btrfs_get_token_32 (881 samples, 0.07%)</title><rect x="48.1598%" y="533" width="0.0681%" height="15" fill="rgb(237,21,10)" fg:x="622635" fg:w="881"/><text x="48.4098%" y="543.50"></text></g><g><title>check_setget_bounds.isra.0 (132 samples, 0.01%)</title><rect x="48.2177%" y="517" width="0.0102%" height="15" fill="rgb(218,43,11)" fg:x="623384" fg:w="132"/><text x="48.4677%" y="527.50"></text></g><g><title>btrfs_set_token_32 (614 samples, 0.05%)</title><rect x="48.2308%" y="533" width="0.0475%" height="15" fill="rgb(218,221,29)" fg:x="623553" fg:w="614"/><text x="48.4808%" y="543.50"></text></g><g><title>memmove_extent_buffer (390 samples, 0.03%)</title><rect x="48.2891%" y="533" width="0.0302%" height="15" fill="rgb(214,118,42)" fg:x="624307" fg:w="390"/><text x="48.5391%" y="543.50"></text></g><g><title>memmove (315 samples, 0.02%)</title><rect x="48.2949%" y="517" width="0.0244%" height="15" fill="rgb(251,200,26)" fg:x="624382" fg:w="315"/><text x="48.5449%" y="527.50"></text></g><g><title>btrfs_del_items (2,419 samples, 0.19%)</title><rect x="48.1384%" y="549" width="0.1871%" height="15" fill="rgb(237,101,39)" fg:x="622358" fg:w="2419"/><text x="48.3884%" y="559.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (139 samples, 0.01%)</title><rect x="48.3255%" y="549" width="0.0108%" height="15" fill="rgb(251,117,11)" fg:x="624777" fg:w="139"/><text x="48.5755%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (183 samples, 0.01%)</title><rect x="48.3579%" y="469" width="0.0142%" height="15" fill="rgb(216,223,23)" fg:x="625196" fg:w="183"/><text x="48.6079%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (168 samples, 0.01%)</title><rect x="48.3591%" y="453" width="0.0130%" height="15" fill="rgb(251,54,12)" fg:x="625211" fg:w="168"/><text x="48.6091%" y="463.50"></text></g><g><title>prepare_to_wait_event (206 samples, 0.02%)</title><rect x="48.3565%" y="485" width="0.0159%" height="15" fill="rgb(254,176,54)" fg:x="625178" fg:w="206"/><text x="48.6065%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (346 samples, 0.03%)</title><rect x="48.3724%" y="485" width="0.0268%" height="15" fill="rgb(210,32,8)" fg:x="625384" fg:w="346"/><text x="48.6224%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (226 samples, 0.02%)</title><rect x="48.3817%" y="469" width="0.0175%" height="15" fill="rgb(235,52,38)" fg:x="625504" fg:w="226"/><text x="48.6317%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (838 samples, 0.06%)</title><rect x="48.3491%" y="501" width="0.0648%" height="15" fill="rgb(231,4,44)" fg:x="625082" fg:w="838"/><text x="48.5991%" y="511.50"></text></g><g><title>schedule (190 samples, 0.01%)</title><rect x="48.3992%" y="485" width="0.0147%" height="15" fill="rgb(249,2,32)" fg:x="625730" fg:w="190"/><text x="48.6492%" y="495.50"></text></g><g><title>__schedule (189 samples, 0.01%)</title><rect x="48.3993%" y="469" width="0.0146%" height="15" fill="rgb(224,65,26)" fg:x="625731" fg:w="189"/><text x="48.6493%" y="479.50"></text></g><g><title>__btrfs_read_lock_root_node (912 samples, 0.07%)</title><rect x="48.3486%" y="517" width="0.0705%" height="15" fill="rgb(250,73,40)" fg:x="625076" fg:w="912"/><text x="48.5986%" y="527.50"></text></g><g><title>__btrfs_tree_lock (245 samples, 0.02%)</title><rect x="48.4192%" y="517" width="0.0190%" height="15" fill="rgb(253,177,16)" fg:x="625988" fg:w="245"/><text x="48.6692%" y="527.50"></text></g><g><title>schedule (222 samples, 0.02%)</title><rect x="48.4209%" y="501" width="0.0172%" height="15" fill="rgb(217,32,34)" fg:x="626011" fg:w="222"/><text x="48.6709%" y="511.50"></text></g><g><title>__schedule (221 samples, 0.02%)</title><rect x="48.4210%" y="485" width="0.0171%" height="15" fill="rgb(212,7,10)" fg:x="626012" fg:w="221"/><text x="48.6710%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (152 samples, 0.01%)</title><rect x="48.4507%" y="469" width="0.0118%" height="15" fill="rgb(245,89,8)" fg:x="626396" fg:w="152"/><text x="48.7007%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (137 samples, 0.01%)</title><rect x="48.4519%" y="453" width="0.0106%" height="15" fill="rgb(237,16,53)" fg:x="626411" fg:w="137"/><text x="48.7019%" y="463.50"></text></g><g><title>prepare_to_wait_event (176 samples, 0.01%)</title><rect x="48.4492%" y="485" width="0.0136%" height="15" fill="rgb(250,204,30)" fg:x="626377" fg:w="176"/><text x="48.6992%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (471 samples, 0.04%)</title><rect x="48.4629%" y="485" width="0.0364%" height="15" fill="rgb(208,77,27)" fg:x="626553" fg:w="471"/><text x="48.7129%" y="495.50"></text></g><g><title>finish_task_switch (132 samples, 0.01%)</title><rect x="48.5063%" y="453" width="0.0102%" height="15" fill="rgb(250,204,28)" fg:x="627115" fg:w="132"/><text x="48.7563%" y="463.50"></text></g><g><title>__btrfs_tree_lock (1,049 samples, 0.08%)</title><rect x="48.4403%" y="501" width="0.0811%" height="15" fill="rgb(244,63,21)" fg:x="626261" fg:w="1049"/><text x="48.6903%" y="511.50"></text></g><g><title>schedule (286 samples, 0.02%)</title><rect x="48.4993%" y="485" width="0.0221%" height="15" fill="rgb(236,85,44)" fg:x="627024" fg:w="286"/><text x="48.7493%" y="495.50"></text></g><g><title>__schedule (282 samples, 0.02%)</title><rect x="48.4996%" y="469" width="0.0218%" height="15" fill="rgb(215,98,4)" fg:x="627028" fg:w="282"/><text x="48.7496%" y="479.50"></text></g><g><title>btrfs_lock_root_node (1,071 samples, 0.08%)</title><rect x="48.4401%" y="517" width="0.0828%" height="15" fill="rgb(235,38,11)" fg:x="626259" fg:w="1071"/><text x="48.6901%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (296 samples, 0.02%)</title><rect x="48.5273%" y="517" width="0.0229%" height="15" fill="rgb(254,186,25)" fg:x="627386" fg:w="296"/><text x="48.7773%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (268 samples, 0.02%)</title><rect x="48.5295%" y="501" width="0.0207%" height="15" fill="rgb(225,55,31)" fg:x="627414" fg:w="268"/><text x="48.7795%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (225 samples, 0.02%)</title><rect x="48.5526%" y="517" width="0.0174%" height="15" fill="rgb(211,15,21)" fg:x="627713" fg:w="225"/><text x="48.8026%" y="527.50"></text></g><g><title>__radix_tree_lookup (165 samples, 0.01%)</title><rect x="48.5890%" y="485" width="0.0128%" height="15" fill="rgb(215,187,41)" fg:x="628184" fg:w="165"/><text x="48.8390%" y="495.50"></text></g><g><title>find_extent_buffer (301 samples, 0.02%)</title><rect x="48.5829%" y="501" width="0.0233%" height="15" fill="rgb(248,69,32)" fg:x="628105" fg:w="301"/><text x="48.8329%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (513 samples, 0.04%)</title><rect x="48.5700%" y="517" width="0.0397%" height="15" fill="rgb(252,102,52)" fg:x="627938" fg:w="513"/><text x="48.8200%" y="527.50"></text></g><g><title>reada_for_balance (138 samples, 0.01%)</title><rect x="48.6097%" y="517" width="0.0107%" height="15" fill="rgb(253,140,32)" fg:x="628451" fg:w="138"/><text x="48.8597%" y="527.50"></text></g><g><title>select_task_rq_fair (138 samples, 0.01%)</title><rect x="48.6510%" y="437" width="0.0107%" height="15" fill="rgb(216,56,42)" fg:x="628986" fg:w="138"/><text x="48.9010%" y="447.50"></text></g><g><title>enqueue_task_fair (158 samples, 0.01%)</title><rect x="48.6636%" y="421" width="0.0122%" height="15" fill="rgb(216,184,14)" fg:x="629148" fg:w="158"/><text x="48.9136%" y="431.50"></text></g><g><title>ttwu_do_activate (349 samples, 0.03%)</title><rect x="48.6626%" y="437" width="0.0270%" height="15" fill="rgb(237,187,27)" fg:x="629136" fg:w="349"/><text x="48.9126%" y="447.50"></text></g><g><title>psi_task_change (178 samples, 0.01%)</title><rect x="48.6759%" y="421" width="0.0138%" height="15" fill="rgb(219,65,3)" fg:x="629307" fg:w="178"/><text x="48.9259%" y="431.50"></text></g><g><title>psi_group_change (159 samples, 0.01%)</title><rect x="48.6773%" y="405" width="0.0123%" height="15" fill="rgb(245,83,25)" fg:x="629326" fg:w="159"/><text x="48.9273%" y="415.50"></text></g><g><title>__wake_up_common (931 samples, 0.07%)</title><rect x="48.6248%" y="485" width="0.0720%" height="15" fill="rgb(214,205,45)" fg:x="628647" fg:w="931"/><text x="48.8748%" y="495.50"></text></g><g><title>autoremove_wake_function (909 samples, 0.07%)</title><rect x="48.6265%" y="469" width="0.0703%" height="15" fill="rgb(241,20,18)" fg:x="628669" fg:w="909"/><text x="48.8765%" y="479.50"></text></g><g><title>try_to_wake_up (889 samples, 0.07%)</title><rect x="48.6281%" y="453" width="0.0688%" height="15" fill="rgb(232,163,23)" fg:x="628689" fg:w="889"/><text x="48.8781%" y="463.50"></text></g><g><title>__wake_up_common_lock (989 samples, 0.08%)</title><rect x="48.6248%" y="501" width="0.0765%" height="15" fill="rgb(214,5,46)" fg:x="628647" fg:w="989"/><text x="48.8748%" y="511.50"></text></g><g><title>btrfs_lookup_inode (4,723 samples, 0.37%)</title><rect x="48.3379%" y="549" width="0.3653%" height="15" fill="rgb(229,78,17)" fg:x="624937" fg:w="4723"/><text x="48.5879%" y="559.50"></text></g><g><title>btrfs_search_slot (4,705 samples, 0.36%)</title><rect x="48.3393%" y="533" width="0.3639%" height="15" fill="rgb(248,89,10)" fg:x="624955" fg:w="4705"/><text x="48.5893%" y="543.50"></text></g><g><title>unlock_up (1,065 samples, 0.08%)</title><rect x="48.6208%" y="517" width="0.0824%" height="15" fill="rgb(248,54,15)" fg:x="628595" fg:w="1065"/><text x="48.8708%" y="527.50"></text></g><g><title>__wake_up_common (287 samples, 0.02%)</title><rect x="48.7104%" y="517" width="0.0222%" height="15" fill="rgb(223,116,6)" fg:x="629754" fg:w="287"/><text x="48.9604%" y="527.50"></text></g><g><title>autoremove_wake_function (278 samples, 0.02%)</title><rect x="48.7111%" y="501" width="0.0215%" height="15" fill="rgb(205,125,38)" fg:x="629763" fg:w="278"/><text x="48.9611%" y="511.50"></text></g><g><title>try_to_wake_up (273 samples, 0.02%)</title><rect x="48.7115%" y="485" width="0.0211%" height="15" fill="rgb(251,78,38)" fg:x="629768" fg:w="273"/><text x="48.9615%" y="495.50"></text></g><g><title>__wake_up_common_lock (300 samples, 0.02%)</title><rect x="48.7104%" y="533" width="0.0232%" height="15" fill="rgb(253,78,28)" fg:x="629754" fg:w="300"/><text x="48.9604%" y="543.50"></text></g><g><title>btrfs_release_path (443 samples, 0.03%)</title><rect x="48.7094%" y="549" width="0.0343%" height="15" fill="rgb(209,120,3)" fg:x="629741" fg:w="443"/><text x="48.9594%" y="559.50"></text></g><g><title>__btrfs_update_delayed_inode (8,077 samples, 0.62%)</title><rect x="48.1327%" y="565" width="0.6247%" height="15" fill="rgb(238,229,9)" fg:x="622285" fg:w="8077"/><text x="48.3827%" y="575.50"></text></g><g><title>btrfs_btree_balance_dirty (181 samples, 0.01%)</title><rect x="48.7624%" y="565" width="0.0140%" height="15" fill="rgb(253,159,18)" fg:x="630426" fg:w="181"/><text x="49.0124%" y="575.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (9,065 samples, 0.70%)</title><rect x="48.1052%" y="581" width="0.7012%" height="15" fill="rgb(244,42,34)" fg:x="621929" fg:w="9065"/><text x="48.3552%" y="591.50"></text></g><g><title>start_transaction (197 samples, 0.02%)</title><rect x="48.7911%" y="565" width="0.0152%" height="15" fill="rgb(224,8,7)" fg:x="630797" fg:w="197"/><text x="49.0411%" y="575.50"></text></g><g><title>btrfs_del_items (163 samples, 0.01%)</title><rect x="48.8081%" y="565" width="0.0126%" height="15" fill="rgb(210,201,45)" fg:x="631016" fg:w="163"/><text x="49.0581%" y="575.50"></text></g><g><title>__wake_up_common (171 samples, 0.01%)</title><rect x="48.8217%" y="517" width="0.0132%" height="15" fill="rgb(252,185,21)" fg:x="631192" fg:w="171"/><text x="49.0717%" y="527.50"></text></g><g><title>autoremove_wake_function (168 samples, 0.01%)</title><rect x="48.8219%" y="501" width="0.0130%" height="15" fill="rgb(223,131,1)" fg:x="631195" fg:w="168"/><text x="49.0719%" y="511.50"></text></g><g><title>try_to_wake_up (165 samples, 0.01%)</title><rect x="48.8221%" y="485" width="0.0128%" height="15" fill="rgb(245,141,16)" fg:x="631198" fg:w="165"/><text x="49.0721%" y="495.50"></text></g><g><title>__wake_up_common_lock (174 samples, 0.01%)</title><rect x="48.8216%" y="533" width="0.0135%" height="15" fill="rgb(229,55,45)" fg:x="631191" fg:w="174"/><text x="49.0716%" y="543.50"></text></g><g><title>btrfs_free_path (305 samples, 0.02%)</title><rect x="48.8207%" y="565" width="0.0236%" height="15" fill="rgb(208,92,15)" fg:x="631179" fg:w="305"/><text x="49.0707%" y="575.50"></text></g><g><title>btrfs_release_path (300 samples, 0.02%)</title><rect x="48.8211%" y="549" width="0.0232%" height="15" fill="rgb(234,185,47)" fg:x="631184" fg:w="300"/><text x="49.0711%" y="559.50"></text></g><g><title>finish_wait (145 samples, 0.01%)</title><rect x="48.8605%" y="517" width="0.0112%" height="15" fill="rgb(253,104,50)" fg:x="631694" fg:w="145"/><text x="49.1105%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (138 samples, 0.01%)</title><rect x="48.8610%" y="501" width="0.0107%" height="15" fill="rgb(205,70,7)" fg:x="631701" fg:w="138"/><text x="49.1110%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (131 samples, 0.01%)</title><rect x="48.8616%" y="485" width="0.0101%" height="15" fill="rgb(240,178,43)" fg:x="631708" fg:w="131"/><text x="49.1116%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (456 samples, 0.04%)</title><rect x="48.8751%" y="501" width="0.0353%" height="15" fill="rgb(214,112,2)" fg:x="631883" fg:w="456"/><text x="49.1251%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (439 samples, 0.03%)</title><rect x="48.8764%" y="485" width="0.0340%" height="15" fill="rgb(206,46,17)" fg:x="631900" fg:w="439"/><text x="49.1264%" y="495.50"></text></g><g><title>prepare_to_wait_event (512 samples, 0.04%)</title><rect x="48.8717%" y="517" width="0.0396%" height="15" fill="rgb(225,220,16)" fg:x="631839" fg:w="512"/><text x="49.1217%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (397 samples, 0.03%)</title><rect x="48.9113%" y="517" width="0.0307%" height="15" fill="rgb(238,65,40)" fg:x="632351" fg:w="397"/><text x="49.1613%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (248 samples, 0.02%)</title><rect x="48.9228%" y="501" width="0.0192%" height="15" fill="rgb(230,151,21)" fg:x="632500" fg:w="248"/><text x="49.1728%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (458 samples, 0.04%)</title><rect x="48.9579%" y="469" width="0.0354%" height="15" fill="rgb(218,58,49)" fg:x="632953" fg:w="458"/><text x="49.2079%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (431 samples, 0.03%)</title><rect x="48.9600%" y="453" width="0.0333%" height="15" fill="rgb(219,179,14)" fg:x="632980" fg:w="431"/><text x="49.2100%" y="463.50"></text></g><g><title>native_write_msr (427 samples, 0.03%)</title><rect x="48.9603%" y="437" width="0.0330%" height="15" fill="rgb(223,72,1)" fg:x="632984" fg:w="427"/><text x="49.2103%" y="447.50"></text></g><g><title>finish_task_switch (502 samples, 0.04%)</title><rect x="48.9556%" y="485" width="0.0388%" height="15" fill="rgb(238,126,10)" fg:x="632923" fg:w="502"/><text x="49.2056%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (1,939 samples, 0.15%)</title><rect x="48.8562%" y="533" width="0.1500%" height="15" fill="rgb(224,206,38)" fg:x="631638" fg:w="1939"/><text x="49.1062%" y="543.50"></text></g><g><title>schedule (829 samples, 0.06%)</title><rect x="48.9420%" y="517" width="0.0641%" height="15" fill="rgb(212,201,54)" fg:x="632748" fg:w="829"/><text x="49.1920%" y="527.50"></text></g><g><title>__schedule (821 samples, 0.06%)</title><rect x="48.9426%" y="501" width="0.0635%" height="15" fill="rgb(218,154,48)" fg:x="632756" fg:w="821"/><text x="49.1926%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (1,989 samples, 0.15%)</title><rect x="48.8555%" y="549" width="0.1538%" height="15" fill="rgb(232,93,24)" fg:x="631629" fg:w="1989"/><text x="49.1055%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (217 samples, 0.02%)</title><rect x="49.0305%" y="501" width="0.0168%" height="15" fill="rgb(245,30,21)" fg:x="633892" fg:w="217"/><text x="49.2805%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (197 samples, 0.02%)</title><rect x="49.0321%" y="485" width="0.0152%" height="15" fill="rgb(242,148,29)" fg:x="633912" fg:w="197"/><text x="49.2821%" y="495.50"></text></g><g><title>prepare_to_wait_event (254 samples, 0.02%)</title><rect x="49.0285%" y="517" width="0.0196%" height="15" fill="rgb(244,153,54)" fg:x="633866" fg:w="254"/><text x="49.2785%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (607 samples, 0.05%)</title><rect x="49.0482%" y="517" width="0.0470%" height="15" fill="rgb(252,87,22)" fg:x="634120" fg:w="607"/><text x="49.2982%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (202 samples, 0.02%)</title><rect x="49.0795%" y="501" width="0.0156%" height="15" fill="rgb(210,51,29)" fg:x="634525" fg:w="202"/><text x="49.3295%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (280 samples, 0.02%)</title><rect x="49.1076%" y="469" width="0.0217%" height="15" fill="rgb(242,136,47)" fg:x="634889" fg:w="280"/><text x="49.3576%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (264 samples, 0.02%)</title><rect x="49.1089%" y="453" width="0.0204%" height="15" fill="rgb(238,68,4)" fg:x="634905" fg:w="264"/><text x="49.3589%" y="463.50"></text></g><g><title>native_write_msr (259 samples, 0.02%)</title><rect x="49.1093%" y="437" width="0.0200%" height="15" fill="rgb(242,161,30)" fg:x="634910" fg:w="259"/><text x="49.3593%" y="447.50"></text></g><g><title>finish_task_switch (306 samples, 0.02%)</title><rect x="49.1062%" y="485" width="0.0237%" height="15" fill="rgb(218,58,44)" fg:x="634870" fg:w="306"/><text x="49.3562%" y="495.50"></text></g><g><title>__btrfs_tree_lock (1,583 samples, 0.12%)</title><rect x="49.0181%" y="533" width="0.1224%" height="15" fill="rgb(252,125,32)" fg:x="633732" fg:w="1583"/><text x="49.2681%" y="543.50"></text></g><g><title>schedule (588 samples, 0.05%)</title><rect x="49.0951%" y="517" width="0.0455%" height="15" fill="rgb(219,178,0)" fg:x="634727" fg:w="588"/><text x="49.3451%" y="527.50"></text></g><g><title>__schedule (587 samples, 0.05%)</title><rect x="49.0952%" y="501" width="0.0454%" height="15" fill="rgb(213,152,7)" fg:x="634728" fg:w="587"/><text x="49.3452%" y="511.50"></text></g><g><title>btrfs_lock_root_node (1,609 samples, 0.12%)</title><rect x="49.0178%" y="549" width="0.1245%" height="15" fill="rgb(249,109,34)" fg:x="633727" fg:w="1609"/><text x="49.2678%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (141 samples, 0.01%)</title><rect x="49.1489%" y="549" width="0.0109%" height="15" fill="rgb(232,96,21)" fg:x="635423" fg:w="141"/><text x="49.3989%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (253 samples, 0.02%)</title><rect x="49.1619%" y="549" width="0.0196%" height="15" fill="rgb(228,27,39)" fg:x="635590" fg:w="253"/><text x="49.4119%" y="559.50"></text></g><g><title>__radix_tree_lookup (147 samples, 0.01%)</title><rect x="49.1991%" y="517" width="0.0114%" height="15" fill="rgb(211,182,52)" fg:x="636072" fg:w="147"/><text x="49.4491%" y="527.50"></text></g><g><title>find_extent_buffer (297 samples, 0.02%)</title><rect x="49.1927%" y="533" width="0.0230%" height="15" fill="rgb(234,178,38)" fg:x="635989" fg:w="297"/><text x="49.4427%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (501 samples, 0.04%)</title><rect x="49.1814%" y="549" width="0.0388%" height="15" fill="rgb(221,111,3)" fg:x="635843" fg:w="501"/><text x="49.4314%" y="559.50"></text></g><g><title>__wake_up_common (317 samples, 0.02%)</title><rect x="49.2267%" y="517" width="0.0245%" height="15" fill="rgb(228,175,21)" fg:x="636429" fg:w="317"/><text x="49.4767%" y="527.50"></text></g><g><title>autoremove_wake_function (316 samples, 0.02%)</title><rect x="49.2268%" y="501" width="0.0244%" height="15" fill="rgb(228,174,43)" fg:x="636430" fg:w="316"/><text x="49.4768%" y="511.50"></text></g><g><title>try_to_wake_up (311 samples, 0.02%)</title><rect x="49.2272%" y="485" width="0.0241%" height="15" fill="rgb(211,191,0)" fg:x="636435" fg:w="311"/><text x="49.4772%" y="495.50"></text></g><g><title>__wake_up_common_lock (339 samples, 0.03%)</title><rect x="49.2267%" y="533" width="0.0262%" height="15" fill="rgb(253,117,3)" fg:x="636428" fg:w="339"/><text x="49.4767%" y="543.50"></text></g><g><title>btrfs_search_slot (5,307 samples, 0.41%)</title><rect x="48.8443%" y="565" width="0.4105%" height="15" fill="rgb(241,127,19)" fg:x="631484" fg:w="5307"/><text x="49.0943%" y="575.50"></text></g><g><title>unlock_up (425 samples, 0.03%)</title><rect x="49.2219%" y="549" width="0.0329%" height="15" fill="rgb(218,103,12)" fg:x="636366" fg:w="425"/><text x="49.4719%" y="559.50"></text></g><g><title>btrfs_del_orphan_item (5,880 samples, 0.45%)</title><rect x="48.8064%" y="581" width="0.4548%" height="15" fill="rgb(236,214,43)" fg:x="630994" fg:w="5880"/><text x="49.0564%" y="591.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (157 samples, 0.01%)</title><rect x="49.2847%" y="565" width="0.0121%" height="15" fill="rgb(244,144,19)" fg:x="637178" fg:w="157"/><text x="49.5347%" y="575.50"></text></g><g><title>clear_state_bit (216 samples, 0.02%)</title><rect x="49.3091%" y="549" width="0.0167%" height="15" fill="rgb(246,188,10)" fg:x="637494" fg:w="216"/><text x="49.5591%" y="559.50"></text></g><g><title>__clear_extent_bit (424 samples, 0.03%)</title><rect x="49.2968%" y="565" width="0.0328%" height="15" fill="rgb(212,193,33)" fg:x="637335" fg:w="424"/><text x="49.5468%" y="575.50"></text></g><g><title>btrfs_free_tree_block (184 samples, 0.01%)</title><rect x="49.3496%" y="533" width="0.0142%" height="15" fill="rgb(241,51,29)" fg:x="638017" fg:w="184"/><text x="49.5996%" y="543.50"></text></g><g><title>btrfs_del_leaf (234 samples, 0.02%)</title><rect x="49.3494%" y="549" width="0.0181%" height="15" fill="rgb(211,58,19)" fg:x="638015" fg:w="234"/><text x="49.5994%" y="559.50"></text></g><g><title>btrfs_get_token_32 (951 samples, 0.07%)</title><rect x="49.3736%" y="549" width="0.0736%" height="15" fill="rgb(229,111,26)" fg:x="638328" fg:w="951"/><text x="49.6236%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (154 samples, 0.01%)</title><rect x="49.4353%" y="533" width="0.0119%" height="15" fill="rgb(213,115,40)" fg:x="639125" fg:w="154"/><text x="49.6853%" y="543.50"></text></g><g><title>btrfs_set_token_32 (684 samples, 0.05%)</title><rect x="49.4507%" y="549" width="0.0529%" height="15" fill="rgb(209,56,44)" fg:x="639325" fg:w="684"/><text x="49.7007%" y="559.50"></text></g><g><title>memmove_extent_buffer (401 samples, 0.03%)</title><rect x="49.5189%" y="549" width="0.0310%" height="15" fill="rgb(230,108,32)" fg:x="640206" fg:w="401"/><text x="49.7689%" y="559.50"></text></g><g><title>memmove (307 samples, 0.02%)</title><rect x="49.5262%" y="533" width="0.0237%" height="15" fill="rgb(216,165,31)" fg:x="640300" fg:w="307"/><text x="49.7762%" y="543.50"></text></g><g><title>push_leaf_left (176 samples, 0.01%)</title><rect x="49.5499%" y="549" width="0.0136%" height="15" fill="rgb(218,122,21)" fg:x="640607" fg:w="176"/><text x="49.7999%" y="559.50"></text></g><g><title>push_leaf_right (160 samples, 0.01%)</title><rect x="49.5635%" y="549" width="0.0124%" height="15" fill="rgb(223,224,47)" fg:x="640783" fg:w="160"/><text x="49.8135%" y="559.50"></text></g><g><title>btrfs_del_items (3,202 samples, 0.25%)</title><rect x="49.3299%" y="565" width="0.2477%" height="15" fill="rgb(238,102,44)" fg:x="637762" fg:w="3202"/><text x="49.5799%" y="575.50"></text></g><g><title>alloc_extent_map (250 samples, 0.02%)</title><rect x="49.5815%" y="549" width="0.0193%" height="15" fill="rgb(236,46,40)" fg:x="641015" fg:w="250"/><text x="49.8315%" y="559.50"></text></g><g><title>kmem_cache_alloc (190 samples, 0.01%)</title><rect x="49.5861%" y="533" width="0.0147%" height="15" fill="rgb(247,202,50)" fg:x="641075" fg:w="190"/><text x="49.8361%" y="543.50"></text></g><g><title>btrfs_drop_extent_cache (425 samples, 0.03%)</title><rect x="49.5775%" y="565" width="0.0329%" height="15" fill="rgb(209,99,20)" fg:x="640964" fg:w="425"/><text x="49.8275%" y="575.50"></text></g><g><title>enqueue_task_fair (154 samples, 0.01%)</title><rect x="49.6466%" y="453" width="0.0119%" height="15" fill="rgb(252,27,34)" fg:x="641857" fg:w="154"/><text x="49.8966%" y="463.50"></text></g><g><title>ttwu_do_activate (280 samples, 0.02%)</title><rect x="49.6461%" y="469" width="0.0217%" height="15" fill="rgb(215,206,23)" fg:x="641851" fg:w="280"/><text x="49.8961%" y="479.50"></text></g><g><title>__wake_up_common (791 samples, 0.06%)</title><rect x="49.6130%" y="517" width="0.0612%" height="15" fill="rgb(212,135,36)" fg:x="641423" fg:w="791"/><text x="49.8630%" y="527.50"></text></g><g><title>autoremove_wake_function (773 samples, 0.06%)</title><rect x="49.6144%" y="501" width="0.0598%" height="15" fill="rgb(240,189,1)" fg:x="641441" fg:w="773"/><text x="49.8644%" y="511.50"></text></g><g><title>try_to_wake_up (761 samples, 0.06%)</title><rect x="49.6153%" y="485" width="0.0589%" height="15" fill="rgb(242,56,20)" fg:x="641453" fg:w="761"/><text x="49.8653%" y="495.50"></text></g><g><title>__wake_up_common_lock (809 samples, 0.06%)</title><rect x="49.6128%" y="533" width="0.0626%" height="15" fill="rgb(247,132,33)" fg:x="641420" fg:w="809"/><text x="49.8628%" y="543.50"></text></g><g><title>btrfs_free_path (989 samples, 0.08%)</title><rect x="49.6104%" y="565" width="0.0765%" height="15" fill="rgb(208,149,11)" fg:x="641389" fg:w="989"/><text x="49.8604%" y="575.50"></text></g><g><title>btrfs_release_path (983 samples, 0.08%)</title><rect x="49.6109%" y="549" width="0.0760%" height="15" fill="rgb(211,33,11)" fg:x="641395" fg:w="983"/><text x="49.8609%" y="559.50"></text></g><g><title>_raw_spin_lock (172 samples, 0.01%)</title><rect x="49.7051%" y="517" width="0.0133%" height="15" fill="rgb(221,29,38)" fg:x="642613" fg:w="172"/><text x="49.9551%" y="527.50"></text></g><g><title>btrfs_block_rsv_release (261 samples, 0.02%)</title><rect x="49.7006%" y="533" width="0.0202%" height="15" fill="rgb(206,182,49)" fg:x="642555" fg:w="261"/><text x="49.9506%" y="543.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (355 samples, 0.03%)</title><rect x="49.7208%" y="533" width="0.0275%" height="15" fill="rgb(216,140,1)" fg:x="642816" fg:w="355"/><text x="49.9708%" y="543.50"></text></g><g><title>kfree (211 samples, 0.02%)</title><rect x="49.7482%" y="533" width="0.0163%" height="15" fill="rgb(232,57,40)" fg:x="643171" fg:w="211"/><text x="49.9982%" y="543.50"></text></g><g><title>__btrfs_kill_delayed_node (951 samples, 0.07%)</title><rect x="49.6957%" y="549" width="0.0736%" height="15" fill="rgb(224,186,18)" fg:x="642492" fg:w="951"/><text x="49.9457%" y="559.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,006 samples, 0.08%)</title><rect x="49.6949%" y="565" width="0.0778%" height="15" fill="rgb(215,121,11)" fg:x="642481" fg:w="1006"/><text x="49.9449%" y="575.50"></text></g><g><title>_raw_spin_lock_irqsave (254 samples, 0.02%)</title><rect x="49.7993%" y="501" width="0.0196%" height="15" fill="rgb(245,147,10)" fg:x="643831" fg:w="254"/><text x="50.0493%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (239 samples, 0.02%)</title><rect x="49.8004%" y="485" width="0.0185%" height="15" fill="rgb(238,153,13)" fg:x="643846" fg:w="239"/><text x="50.0504%" y="495.50"></text></g><g><title>prepare_to_wait_event (282 samples, 0.02%)</title><rect x="49.7975%" y="517" width="0.0218%" height="15" fill="rgb(233,108,0)" fg:x="643808" fg:w="282"/><text x="50.0475%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (438 samples, 0.03%)</title><rect x="49.8193%" y="517" width="0.0339%" height="15" fill="rgb(212,157,17)" fg:x="644090" fg:w="438"/><text x="50.0693%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (296 samples, 0.02%)</title><rect x="49.8303%" y="501" width="0.0229%" height="15" fill="rgb(225,213,38)" fg:x="644232" fg:w="296"/><text x="50.0803%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (1,110 samples, 0.09%)</title><rect x="49.7878%" y="533" width="0.0859%" height="15" fill="rgb(248,16,11)" fg:x="643682" fg:w="1110"/><text x="50.0378%" y="543.50"></text></g><g><title>schedule (264 samples, 0.02%)</title><rect x="49.8532%" y="517" width="0.0204%" height="15" fill="rgb(241,33,4)" fg:x="644528" fg:w="264"/><text x="50.1032%" y="527.50"></text></g><g><title>__schedule (260 samples, 0.02%)</title><rect x="49.8535%" y="501" width="0.0201%" height="15" fill="rgb(222,26,43)" fg:x="644532" fg:w="260"/><text x="50.1035%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (1,187 samples, 0.09%)</title><rect x="49.7870%" y="549" width="0.0918%" height="15" fill="rgb(243,29,36)" fg:x="643672" fg:w="1187"/><text x="50.0370%" y="559.50"></text></g><g><title>__btrfs_tree_lock (286 samples, 0.02%)</title><rect x="49.8788%" y="549" width="0.0221%" height="15" fill="rgb(241,9,27)" fg:x="644859" fg:w="286"/><text x="50.1288%" y="559.50"></text></g><g><title>schedule (254 samples, 0.02%)</title><rect x="49.8813%" y="533" width="0.0196%" height="15" fill="rgb(205,117,26)" fg:x="644891" fg:w="254"/><text x="50.1313%" y="543.50"></text></g><g><title>__schedule (252 samples, 0.02%)</title><rect x="49.8814%" y="517" width="0.0195%" height="15" fill="rgb(209,80,39)" fg:x="644893" fg:w="252"/><text x="50.1314%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (159 samples, 0.01%)</title><rect x="49.9152%" y="501" width="0.0123%" height="15" fill="rgb(239,155,6)" fg:x="645330" fg:w="159"/><text x="50.1652%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (145 samples, 0.01%)</title><rect x="49.9163%" y="485" width="0.0112%" height="15" fill="rgb(212,104,12)" fg:x="645344" fg:w="145"/><text x="50.1663%" y="495.50"></text></g><g><title>prepare_to_wait_event (183 samples, 0.01%)</title><rect x="49.9135%" y="517" width="0.0142%" height="15" fill="rgb(234,204,3)" fg:x="645308" fg:w="183"/><text x="50.1635%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (543 samples, 0.04%)</title><rect x="49.9277%" y="517" width="0.0420%" height="15" fill="rgb(251,218,7)" fg:x="645491" fg:w="543"/><text x="50.1777%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (163 samples, 0.01%)</title><rect x="49.9571%" y="501" width="0.0126%" height="15" fill="rgb(221,81,32)" fg:x="645871" fg:w="163"/><text x="50.2071%" y="511.50"></text></g><g><title>__schedule (278 samples, 0.02%)</title><rect x="49.9699%" y="501" width="0.0215%" height="15" fill="rgb(214,152,26)" fg:x="646037" fg:w="278"/><text x="50.2199%" y="511.50"></text></g><g><title>__btrfs_tree_lock (1,109 samples, 0.09%)</title><rect x="49.9057%" y="533" width="0.0858%" height="15" fill="rgb(223,22,3)" fg:x="645207" fg:w="1109"/><text x="50.1557%" y="543.50"></text></g><g><title>schedule (282 samples, 0.02%)</title><rect x="49.9697%" y="517" width="0.0218%" height="15" fill="rgb(207,174,7)" fg:x="646034" fg:w="282"/><text x="50.2197%" y="527.50"></text></g><g><title>btrfs_lock_root_node (1,138 samples, 0.09%)</title><rect x="49.9056%" y="549" width="0.0880%" height="15" fill="rgb(224,19,52)" fg:x="645206" fg:w="1138"/><text x="50.1556%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (398 samples, 0.03%)</title><rect x="50.0043%" y="549" width="0.0308%" height="15" fill="rgb(228,24,14)" fg:x="646482" fg:w="398"/><text x="50.2543%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (371 samples, 0.03%)</title><rect x="50.0064%" y="533" width="0.0287%" height="15" fill="rgb(230,153,43)" fg:x="646509" fg:w="371"/><text x="50.2564%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (294 samples, 0.02%)</title><rect x="50.0377%" y="549" width="0.0227%" height="15" fill="rgb(231,106,12)" fg:x="646914" fg:w="294"/><text x="50.2877%" y="559.50"></text></g><g><title>find_extent_buffer (246 samples, 0.02%)</title><rect x="50.0710%" y="533" width="0.0190%" height="15" fill="rgb(215,92,2)" fg:x="647344" fg:w="246"/><text x="50.3210%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (440 samples, 0.03%)</title><rect x="50.0605%" y="549" width="0.0340%" height="15" fill="rgb(249,143,25)" fg:x="647208" fg:w="440"/><text x="50.3105%" y="559.50"></text></g><g><title>reada_for_balance (152 samples, 0.01%)</title><rect x="50.0945%" y="549" width="0.0118%" height="15" fill="rgb(252,7,35)" fg:x="647648" fg:w="152"/><text x="50.3445%" y="559.50"></text></g><g><title>select_task_rq_fair (175 samples, 0.01%)</title><rect x="50.1395%" y="469" width="0.0135%" height="15" fill="rgb(216,69,40)" fg:x="648229" fg:w="175"/><text x="50.3895%" y="479.50"></text></g><g><title>enqueue_entity (157 samples, 0.01%)</title><rect x="50.1567%" y="437" width="0.0121%" height="15" fill="rgb(240,36,33)" fg:x="648452" fg:w="157"/><text x="50.4067%" y="447.50"></text></g><g><title>enqueue_task_fair (187 samples, 0.01%)</title><rect x="50.1553%" y="453" width="0.0145%" height="15" fill="rgb(231,128,14)" fg:x="648434" fg:w="187"/><text x="50.4053%" y="463.50"></text></g><g><title>ttwu_do_activate (361 samples, 0.03%)</title><rect x="50.1542%" y="469" width="0.0279%" height="15" fill="rgb(245,143,14)" fg:x="648420" fg:w="361"/><text x="50.4042%" y="479.50"></text></g><g><title>psi_task_change (160 samples, 0.01%)</title><rect x="50.1698%" y="453" width="0.0124%" height="15" fill="rgb(222,130,28)" fg:x="648621" fg:w="160"/><text x="50.4198%" y="463.50"></text></g><g><title>psi_group_change (143 samples, 0.01%)</title><rect x="50.1711%" y="437" width="0.0111%" height="15" fill="rgb(212,10,48)" fg:x="648638" fg:w="143"/><text x="50.4211%" y="447.50"></text></g><g><title>__wake_up_common (1,019 samples, 0.08%)</title><rect x="50.1113%" y="517" width="0.0788%" height="15" fill="rgb(254,118,45)" fg:x="647865" fg:w="1019"/><text x="50.3613%" y="527.50"></text></g><g><title>autoremove_wake_function (1,003 samples, 0.08%)</title><rect x="50.1125%" y="501" width="0.0776%" height="15" fill="rgb(228,6,45)" fg:x="647881" fg:w="1003"/><text x="50.3625%" y="511.50"></text></g><g><title>try_to_wake_up (989 samples, 0.08%)</title><rect x="50.1136%" y="485" width="0.0765%" height="15" fill="rgb(241,18,35)" fg:x="647895" fg:w="989"/><text x="50.3636%" y="495.50"></text></g><g><title>__wake_up_common_lock (1,085 samples, 0.08%)</title><rect x="50.1112%" y="533" width="0.0839%" height="15" fill="rgb(227,214,53)" fg:x="647864" fg:w="1085"/><text x="50.3612%" y="543.50"></text></g><g><title>btrfs_search_slot (5,430 samples, 0.42%)</title><rect x="49.7775%" y="565" width="0.4200%" height="15" fill="rgb(224,107,51)" fg:x="643549" fg:w="5430"/><text x="50.0275%" y="575.50"></text></g><g><title>unlock_up (1,176 samples, 0.09%)</title><rect x="50.1065%" y="549" width="0.0910%" height="15" fill="rgb(248,60,28)" fg:x="647803" fg:w="1176"/><text x="50.3565%" y="559.50"></text></g><g><title>__set_extent_bit (349 samples, 0.03%)</title><rect x="50.2073%" y="549" width="0.0270%" height="15" fill="rgb(249,101,23)" fg:x="649106" fg:w="349"/><text x="50.4573%" y="559.50"></text></g><g><title>lock_extent_bits (377 samples, 0.03%)</title><rect x="50.2052%" y="565" width="0.0292%" height="15" fill="rgb(228,51,19)" fg:x="649079" fg:w="377"/><text x="50.4552%" y="575.50"></text></g><g><title>btrfs_truncate_inode_items (12,586 samples, 0.97%)</title><rect x="49.2707%" y="581" width="0.9735%" height="15" fill="rgb(213,20,6)" fg:x="636997" fg:w="12586"/><text x="49.5207%" y="591.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (217 samples, 0.02%)</title><rect x="50.2721%" y="517" width="0.0168%" height="15" fill="rgb(212,124,10)" fg:x="649944" fg:w="217"/><text x="50.5221%" y="527.50"></text></g><g><title>btrfs_block_rsv_refill (631 samples, 0.05%)</title><rect x="50.2529%" y="565" width="0.0488%" height="15" fill="rgb(248,3,40)" fg:x="649696" fg:w="631"/><text x="50.5029%" y="575.50"></text></g><g><title>btrfs_reserve_metadata_bytes (537 samples, 0.04%)</title><rect x="50.2602%" y="549" width="0.0415%" height="15" fill="rgb(223,178,23)" fg:x="649790" fg:w="537"/><text x="50.5102%" y="559.50"></text></g><g><title>__reserve_bytes (515 samples, 0.04%)</title><rect x="50.2619%" y="533" width="0.0398%" height="15" fill="rgb(240,132,45)" fg:x="649812" fg:w="515"/><text x="50.5119%" y="543.50"></text></g><g><title>calc_available_free_space.isra.0 (166 samples, 0.01%)</title><rect x="50.2889%" y="517" width="0.0128%" height="15" fill="rgb(245,164,36)" fg:x="650161" fg:w="166"/><text x="50.5389%" y="527.50"></text></g><g><title>evict_refill_and_join (1,069 samples, 0.08%)</title><rect x="50.2442%" y="581" width="0.0827%" height="15" fill="rgb(231,188,53)" fg:x="649583" fg:w="1069"/><text x="50.4942%" y="591.50"></text></g><g><title>start_transaction (311 samples, 0.02%)</title><rect x="50.3028%" y="565" width="0.0241%" height="15" fill="rgb(237,198,39)" fg:x="650341" fg:w="311"/><text x="50.5528%" y="575.50"></text></g><g><title>kmem_cache_free (132 samples, 0.01%)</title><rect x="50.3355%" y="581" width="0.0102%" height="15" fill="rgb(223,120,35)" fg:x="650763" fg:w="132"/><text x="50.5855%" y="591.50"></text></g><g><title>btrfs_evict_inode (30,361 samples, 2.35%)</title><rect x="48.0012%" y="597" width="2.3484%" height="15" fill="rgb(253,107,49)" fg:x="620585" fg:w="30361"/><text x="48.2512%" y="607.50">b..</text></g><g><title>evict (30,650 samples, 2.37%)</title><rect x="47.9852%" y="613" width="2.3707%" height="15" fill="rgb(216,44,31)" fg:x="620377" fg:w="30650"/><text x="48.2352%" y="623.50">ev..</text></g><g><title>_raw_spin_lock (237 samples, 0.02%)</title><rect x="50.4017%" y="581" width="0.0183%" height="15" fill="rgb(253,87,21)" fg:x="651620" fg:w="237"/><text x="50.6517%" y="591.50"></text></g><g><title>__list_del_entry_valid (484 samples, 0.04%)</title><rect x="50.4508%" y="533" width="0.0374%" height="15" fill="rgb(226,18,2)" fg:x="652254" fg:w="484"/><text x="50.7008%" y="543.50"></text></g><g><title>_raw_spin_lock (195 samples, 0.02%)</title><rect x="50.4882%" y="533" width="0.0151%" height="15" fill="rgb(216,8,46)" fg:x="652738" fg:w="195"/><text x="50.7382%" y="543.50"></text></g><g><title>d_lru_del (1,368 samples, 0.11%)</title><rect x="50.4258%" y="565" width="0.1058%" height="15" fill="rgb(226,140,39)" fg:x="651931" fg:w="1368"/><text x="50.6758%" y="575.50"></text></g><g><title>list_lru_del (1,322 samples, 0.10%)</title><rect x="50.4294%" y="549" width="0.1023%" height="15" fill="rgb(221,194,54)" fg:x="651977" fg:w="1322"/><text x="50.6794%" y="559.50"></text></g><g><title>mem_cgroup_from_obj (364 samples, 0.03%)</title><rect x="50.5035%" y="533" width="0.0282%" height="15" fill="rgb(213,92,11)" fg:x="652935" fg:w="364"/><text x="50.7535%" y="543.50"></text></g><g><title>d_walk (2,083 samples, 0.16%)</title><rect x="50.3741%" y="597" width="0.1611%" height="15" fill="rgb(229,162,46)" fg:x="651263" fg:w="2083"/><text x="50.6241%" y="607.50"></text></g><g><title>select_collect (1,487 samples, 0.12%)</title><rect x="50.4202%" y="581" width="0.1150%" height="15" fill="rgb(214,111,36)" fg:x="651859" fg:w="1487"/><text x="50.6702%" y="591.50"></text></g><g><title>___d_drop (867 samples, 0.07%)</title><rect x="50.5462%" y="565" width="0.0671%" height="15" fill="rgb(207,6,21)" fg:x="653487" fg:w="867"/><text x="50.7962%" y="575.50"></text></g><g><title>call_rcu (578 samples, 0.04%)</title><rect x="50.6227%" y="565" width="0.0447%" height="15" fill="rgb(213,127,38)" fg:x="654476" fg:w="578"/><text x="50.8727%" y="575.50"></text></g><g><title>rcu_segcblist_enqueue (323 samples, 0.02%)</title><rect x="50.6424%" y="549" width="0.0250%" height="15" fill="rgb(238,118,32)" fg:x="654731" fg:w="323"/><text x="50.8924%" y="559.50"></text></g><g><title>__dentry_kill (1,674 samples, 0.13%)</title><rect x="50.5392%" y="581" width="0.1295%" height="15" fill="rgb(240,139,39)" fg:x="653397" fg:w="1674"/><text x="50.7892%" y="591.50"></text></g><g><title>__dput_to_list (188 samples, 0.01%)</title><rect x="50.6687%" y="581" width="0.0145%" height="15" fill="rgb(235,10,37)" fg:x="655071" fg:w="188"/><text x="50.9187%" y="591.50"></text></g><g><title>d_lru_del (146 samples, 0.01%)</title><rect x="50.6719%" y="565" width="0.0113%" height="15" fill="rgb(249,171,38)" fg:x="655113" fg:w="146"/><text x="50.9219%" y="575.50"></text></g><g><title>list_lru_del (140 samples, 0.01%)</title><rect x="50.6724%" y="549" width="0.0108%" height="15" fill="rgb(242,144,32)" fg:x="655119" fg:w="140"/><text x="50.9224%" y="559.50"></text></g><g><title>_raw_spin_lock (153 samples, 0.01%)</title><rect x="50.6876%" y="581" width="0.0118%" height="15" fill="rgb(217,117,21)" fg:x="655316" fg:w="153"/><text x="50.9376%" y="591.50"></text></g><g><title>_raw_spin_trylock (150 samples, 0.01%)</title><rect x="50.7105%" y="565" width="0.0116%" height="15" fill="rgb(249,87,1)" fg:x="655612" fg:w="150"/><text x="50.9605%" y="575.50"></text></g><g><title>shrink_dcache_parent (4,548 samples, 0.35%)</title><rect x="50.3704%" y="613" width="0.3518%" height="15" fill="rgb(248,196,48)" fg:x="651215" fg:w="4548"/><text x="50.6204%" y="623.50"></text></g><g><title>shrink_dentry_list (2,417 samples, 0.19%)</title><rect x="50.5353%" y="597" width="0.1870%" height="15" fill="rgb(251,206,33)" fg:x="653346" fg:w="2417"/><text x="50.7853%" y="607.50"></text></g><g><title>shrink_lock_dentry.part.0 (183 samples, 0.01%)</title><rect x="50.7080%" y="581" width="0.0142%" height="15" fill="rgb(232,141,28)" fg:x="655580" fg:w="183"/><text x="50.9580%" y="591.50"></text></g><g><title>do_rmdir (59,821 samples, 4.63%)</title><rect x="46.0972%" y="645" width="4.6271%" height="15" fill="rgb(209,167,14)" fg:x="595968" fg:w="59821"/><text x="46.3472%" y="655.50">do_rm..</text></g><g><title>vfs_rmdir.part.0 (58,525 samples, 4.53%)</title><rect x="46.1974%" y="629" width="4.5268%" height="15" fill="rgb(225,11,50)" fg:x="597264" fg:w="58525"/><text x="46.4474%" y="639.50">vfs_r..</text></g><g><title>_raw_spin_lock (234 samples, 0.02%)</title><rect x="50.9170%" y="565" width="0.0181%" height="15" fill="rgb(209,50,20)" fg:x="658282" fg:w="234"/><text x="51.1670%" y="575.50"></text></g><g><title>lookup_dcache (2,233 samples, 0.17%)</title><rect x="50.7642%" y="613" width="0.1727%" height="15" fill="rgb(212,17,46)" fg:x="656306" fg:w="2233"/><text x="51.0142%" y="623.50"></text></g><g><title>d_lookup (2,192 samples, 0.17%)</title><rect x="50.7674%" y="597" width="0.1695%" height="15" fill="rgb(216,101,39)" fg:x="656347" fg:w="2192"/><text x="51.0174%" y="607.50"></text></g><g><title>__d_lookup (2,077 samples, 0.16%)</title><rect x="50.7763%" y="581" width="0.1607%" height="15" fill="rgb(212,228,48)" fg:x="656462" fg:w="2077"/><text x="51.0263%" y="591.50"></text></g><g><title>__lookup_hash (2,290 samples, 0.18%)</title><rect x="50.7599%" y="629" width="0.1771%" height="15" fill="rgb(250,6,50)" fg:x="656250" fg:w="2290"/><text x="51.0099%" y="639.50"></text></g><g><title>down_write (240 samples, 0.02%)</title><rect x="50.9376%" y="629" width="0.0186%" height="15" fill="rgb(250,160,48)" fg:x="658548" fg:w="240"/><text x="51.1876%" y="639.50"></text></g><g><title>__schedule (262 samples, 0.02%)</title><rect x="50.9812%" y="597" width="0.0203%" height="15" fill="rgb(244,216,33)" fg:x="659112" fg:w="262"/><text x="51.2312%" y="607.50"></text></g><g><title>_cond_resched (331 samples, 0.03%)</title><rect x="50.9784%" y="613" width="0.0256%" height="15" fill="rgb(207,157,5)" fg:x="659075" fg:w="331"/><text x="51.2284%" y="623.50"></text></g><g><title>btrfs_dentry_delete (350 samples, 0.03%)</title><rect x="51.0041%" y="613" width="0.0271%" height="15" fill="rgb(228,199,8)" fg:x="659407" fg:w="350"/><text x="51.2541%" y="623.50"></text></g><g><title>lockref_put_or_lock (430 samples, 0.03%)</title><rect x="51.0311%" y="613" width="0.0333%" height="15" fill="rgb(227,80,20)" fg:x="659757" fg:w="430"/><text x="51.2811%" y="623.50"></text></g><g><title>_raw_spin_lock (135 samples, 0.01%)</title><rect x="51.0539%" y="597" width="0.0104%" height="15" fill="rgb(222,9,33)" fg:x="660052" fg:w="135"/><text x="51.3039%" y="607.50"></text></g><g><title>dput (1,423 samples, 0.11%)</title><rect x="50.9562%" y="629" width="0.1101%" height="15" fill="rgb(239,44,28)" fg:x="658788" fg:w="1423"/><text x="51.2062%" y="639.50"></text></g><g><title>__legitimize_mnt (266 samples, 0.02%)</title><rect x="51.1376%" y="549" width="0.0206%" height="15" fill="rgb(249,187,43)" fg:x="661133" fg:w="266"/><text x="51.3876%" y="559.50"></text></g><g><title>__legitimize_path (547 samples, 0.04%)</title><rect x="51.1267%" y="565" width="0.0423%" height="15" fill="rgb(216,141,28)" fg:x="660992" fg:w="547"/><text x="51.3767%" y="575.50"></text></g><g><title>lockref_get_not_dead (138 samples, 0.01%)</title><rect x="51.1583%" y="549" width="0.0107%" height="15" fill="rgb(230,154,53)" fg:x="661401" fg:w="138"/><text x="51.4083%" y="559.50"></text></g><g><title>legitimize_links (158 samples, 0.01%)</title><rect x="51.1690%" y="565" width="0.0122%" height="15" fill="rgb(227,82,4)" fg:x="661539" fg:w="158"/><text x="51.4190%" y="575.50"></text></g><g><title>complete_walk (954 samples, 0.07%)</title><rect x="51.1089%" y="597" width="0.0738%" height="15" fill="rgb(220,107,16)" fg:x="660763" fg:w="954"/><text x="51.3589%" y="607.50"></text></g><g><title>try_to_unlazy (853 samples, 0.07%)</title><rect x="51.1168%" y="581" width="0.0660%" height="15" fill="rgb(207,187,2)" fg:x="660864" fg:w="853"/><text x="51.3668%" y="591.50"></text></g><g><title>inode_permission.part.0 (409 samples, 0.03%)</title><rect x="51.2099%" y="581" width="0.0316%" height="15" fill="rgb(210,162,52)" fg:x="662068" fg:w="409"/><text x="51.4599%" y="591.50"></text></g><g><title>generic_permission (238 samples, 0.02%)</title><rect x="51.2231%" y="565" width="0.0184%" height="15" fill="rgb(217,216,49)" fg:x="662239" fg:w="238"/><text x="51.4731%" y="575.50"></text></g><g><title>link_path_walk.part.0 (798 samples, 0.06%)</title><rect x="51.1827%" y="597" width="0.0617%" height="15" fill="rgb(218,146,49)" fg:x="661717" fg:w="798"/><text x="51.4327%" y="607.50"></text></g><g><title>__fget_files (648 samples, 0.05%)</title><rect x="51.2930%" y="565" width="0.0501%" height="15" fill="rgb(216,55,40)" fg:x="663142" fg:w="648"/><text x="51.5430%" y="575.50"></text></g><g><title>__fget_light (944 samples, 0.07%)</title><rect x="51.2704%" y="581" width="0.0730%" height="15" fill="rgb(208,196,21)" fg:x="662850" fg:w="944"/><text x="51.5204%" y="591.50"></text></g><g><title>path_init (1,376 samples, 0.11%)</title><rect x="51.2445%" y="597" width="0.1064%" height="15" fill="rgb(242,117,42)" fg:x="662515" fg:w="1376"/><text x="51.4945%" y="607.50"></text></g><g><title>path_parentat (3,656 samples, 0.28%)</title><rect x="51.1011%" y="613" width="0.2828%" height="15" fill="rgb(210,11,23)" fg:x="660662" fg:w="3656"/><text x="51.3511%" y="623.50"></text></g><g><title>terminate_walk (427 samples, 0.03%)</title><rect x="51.3509%" y="597" width="0.0330%" height="15" fill="rgb(217,110,2)" fg:x="663891" fg:w="427"/><text x="51.6009%" y="607.50"></text></g><g><title>filename_parentat (4,046 samples, 0.31%)</title><rect x="51.0710%" y="629" width="0.3130%" height="15" fill="rgb(229,77,54)" fg:x="660273" fg:w="4046"/><text x="51.3210%" y="639.50"></text></g><g><title>ihold (884 samples, 0.07%)</title><rect x="51.3840%" y="629" width="0.0684%" height="15" fill="rgb(218,53,16)" fg:x="664319" fg:w="884"/><text x="51.6340%" y="639.50"></text></g><g><title>iput.part.0 (136 samples, 0.01%)</title><rect x="51.4528%" y="629" width="0.0105%" height="15" fill="rgb(215,38,13)" fg:x="665208" fg:w="136"/><text x="51.7028%" y="639.50"></text></g><g><title>kmem_cache_free (669 samples, 0.05%)</title><rect x="51.4633%" y="629" width="0.0517%" height="15" fill="rgb(235,42,18)" fg:x="665344" fg:w="669"/><text x="51.7133%" y="639.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (228 samples, 0.02%)</title><rect x="51.4974%" y="613" width="0.0176%" height="15" fill="rgb(219,66,54)" fg:x="665785" fg:w="228"/><text x="51.7474%" y="623.50"></text></g><g><title>mnt_drop_write (224 samples, 0.02%)</title><rect x="51.5150%" y="629" width="0.0173%" height="15" fill="rgb(222,205,4)" fg:x="666013" fg:w="224"/><text x="51.7650%" y="639.50"></text></g><g><title>__mnt_want_write (259 samples, 0.02%)</title><rect x="51.5463%" y="613" width="0.0200%" height="15" fill="rgb(227,213,46)" fg:x="666417" fg:w="259"/><text x="51.7963%" y="623.50"></text></g><g><title>mnt_want_write (528 samples, 0.04%)</title><rect x="51.5323%" y="629" width="0.0408%" height="15" fill="rgb(250,145,42)" fg:x="666237" fg:w="528"/><text x="51.7823%" y="639.50"></text></g><g><title>putname (311 samples, 0.02%)</title><rect x="51.5841%" y="629" width="0.0241%" height="15" fill="rgb(219,15,2)" fg:x="666906" fg:w="311"/><text x="51.8341%" y="639.50"></text></g><g><title>apparmor_path_unlink (195 samples, 0.02%)</title><rect x="51.6114%" y="613" width="0.0151%" height="15" fill="rgb(231,181,52)" fg:x="667259" fg:w="195"/><text x="51.8614%" y="623.50"></text></g><g><title>security_path_unlink (1,052 samples, 0.08%)</title><rect x="51.6082%" y="629" width="0.0814%" height="15" fill="rgb(235,1,42)" fg:x="667217" fg:w="1052"/><text x="51.8582%" y="639.50"></text></g><g><title>tomoyo_path_unlink (814 samples, 0.06%)</title><rect x="51.6266%" y="613" width="0.0630%" height="15" fill="rgb(249,88,27)" fg:x="667455" fg:w="814"/><text x="51.8766%" y="623.50"></text></g><g><title>tomoyo_path_perm (788 samples, 0.06%)</title><rect x="51.6286%" y="597" width="0.0610%" height="15" fill="rgb(235,145,16)" fg:x="667481" fg:w="788"/><text x="51.8786%" y="607.50"></text></g><g><title>tomoyo_init_request_info (550 samples, 0.04%)</title><rect x="51.6470%" y="581" width="0.0425%" height="15" fill="rgb(237,114,19)" fg:x="667719" fg:w="550"/><text x="51.8970%" y="591.50"></text></g><g><title>tomoyo_domain (307 samples, 0.02%)</title><rect x="51.6658%" y="565" width="0.0237%" height="15" fill="rgb(238,51,50)" fg:x="667962" fg:w="307"/><text x="51.9158%" y="575.50"></text></g><g><title>up_write (161 samples, 0.01%)</title><rect x="51.6895%" y="629" width="0.0125%" height="15" fill="rgb(205,194,25)" fg:x="668269" fg:w="161"/><text x="51.9395%" y="639.50"></text></g><g><title>_raw_spin_lock (154 samples, 0.01%)</title><rect x="51.7269%" y="613" width="0.0119%" height="15" fill="rgb(215,203,17)" fg:x="668752" fg:w="154"/><text x="51.9769%" y="623.50"></text></g><g><title>btrfs_create_pending_block_groups (216 samples, 0.02%)</title><rect x="51.8298%" y="581" width="0.0167%" height="15" fill="rgb(233,112,49)" fg:x="670083" fg:w="216"/><text x="52.0798%" y="591.50"></text></g><g><title>btrfs_put_transaction (153 samples, 0.01%)</title><rect x="51.8465%" y="581" width="0.0118%" height="15" fill="rgb(241,130,26)" fg:x="670299" fg:w="153"/><text x="52.0965%" y="591.50"></text></g><g><title>_raw_spin_lock (843 samples, 0.07%)</title><rect x="51.8892%" y="549" width="0.0652%" height="15" fill="rgb(252,223,19)" fg:x="670850" fg:w="843"/><text x="52.1392%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (280 samples, 0.02%)</title><rect x="51.9327%" y="533" width="0.0217%" height="15" fill="rgb(211,95,25)" fg:x="671413" fg:w="280"/><text x="52.1827%" y="543.50"></text></g><g><title>btrfs_trans_release_metadata (1,260 samples, 0.10%)</title><rect x="51.8667%" y="581" width="0.0975%" height="15" fill="rgb(251,182,27)" fg:x="670560" fg:w="1260"/><text x="52.1167%" y="591.50"></text></g><g><title>btrfs_block_rsv_release (1,201 samples, 0.09%)</title><rect x="51.8713%" y="565" width="0.0929%" height="15" fill="rgb(238,24,4)" fg:x="670619" fg:w="1201"/><text x="52.1213%" y="575.50"></text></g><g><title>__btrfs_end_transaction (3,249 samples, 0.25%)</title><rect x="51.7557%" y="597" width="0.2513%" height="15" fill="rgb(224,220,25)" fg:x="669125" fg:w="3249"/><text x="52.0057%" y="607.50"></text></g><g><title>kmem_cache_free (554 samples, 0.04%)</title><rect x="51.9642%" y="581" width="0.0429%" height="15" fill="rgb(239,133,26)" fg:x="671820" fg:w="554"/><text x="52.2142%" y="591.50"></text></g><g><title>btrfs_end_log_trans (242 samples, 0.02%)</title><rect x="52.1408%" y="565" width="0.0187%" height="15" fill="rgb(211,94,48)" fg:x="674104" fg:w="242"/><text x="52.3908%" y="575.50"></text></g><g><title>select_task_rq_fair (376 samples, 0.03%)</title><rect x="52.3830%" y="469" width="0.0291%" height="15" fill="rgb(239,87,6)" fg:x="677235" fg:w="376"/><text x="52.6330%" y="479.50"></text></g><g><title>update_cfs_rq_h_load (130 samples, 0.01%)</title><rect x="52.4021%" y="453" width="0.0101%" height="15" fill="rgb(227,62,0)" fg:x="677481" fg:w="130"/><text x="52.6521%" y="463.50"></text></g><g><title>enqueue_entity (418 samples, 0.03%)</title><rect x="52.4231%" y="437" width="0.0323%" height="15" fill="rgb(211,226,4)" fg:x="677753" fg:w="418"/><text x="52.6731%" y="447.50"></text></g><g><title>enqueue_task_fair (544 samples, 0.04%)</title><rect x="52.4154%" y="453" width="0.0421%" height="15" fill="rgb(253,38,52)" fg:x="677654" fg:w="544"/><text x="52.6654%" y="463.50"></text></g><g><title>ttwu_do_activate (1,197 samples, 0.09%)</title><rect x="52.4126%" y="469" width="0.0926%" height="15" fill="rgb(229,126,40)" fg:x="677617" fg:w="1197"/><text x="52.6626%" y="479.50"></text></g><g><title>psi_task_change (616 samples, 0.05%)</title><rect x="52.4575%" y="453" width="0.0476%" height="15" fill="rgb(229,165,44)" fg:x="678198" fg:w="616"/><text x="52.7075%" y="463.50"></text></g><g><title>psi_group_change (550 samples, 0.04%)</title><rect x="52.4626%" y="437" width="0.0425%" height="15" fill="rgb(247,95,47)" fg:x="678264" fg:w="550"/><text x="52.7126%" y="447.50"></text></g><g><title>__wake_up_common (4,584 samples, 0.35%)</title><rect x="52.1759%" y="517" width="0.3546%" height="15" fill="rgb(216,140,30)" fg:x="674557" fg:w="4584"/><text x="52.4259%" y="527.50"></text></g><g><title>autoremove_wake_function (4,461 samples, 0.35%)</title><rect x="52.1854%" y="501" width="0.3451%" height="15" fill="rgb(246,214,8)" fg:x="674680" fg:w="4461"/><text x="52.4354%" y="511.50"></text></g><g><title>try_to_wake_up (4,396 samples, 0.34%)</title><rect x="52.1904%" y="485" width="0.3400%" height="15" fill="rgb(227,224,15)" fg:x="674745" fg:w="4396"/><text x="52.4404%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (985 samples, 0.08%)</title><rect x="52.5305%" y="517" width="0.0762%" height="15" fill="rgb(233,175,4)" fg:x="679141" fg:w="985"/><text x="52.7805%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (941 samples, 0.07%)</title><rect x="52.5339%" y="501" width="0.0728%" height="15" fill="rgb(221,66,45)" fg:x="679185" fg:w="941"/><text x="52.7839%" y="511.50"></text></g><g><title>__wake_up_common_lock (5,634 samples, 0.44%)</title><rect x="52.1744%" y="533" width="0.4358%" height="15" fill="rgb(221,178,18)" fg:x="674538" fg:w="5634"/><text x="52.4244%" y="543.50"></text></g><g><title>btrfs_tree_unlock (370 samples, 0.03%)</title><rect x="52.6105%" y="533" width="0.0286%" height="15" fill="rgb(213,81,29)" fg:x="680176" fg:w="370"/><text x="52.8605%" y="543.50"></text></g><g><title>_raw_spin_lock (148 samples, 0.01%)</title><rect x="52.6512%" y="517" width="0.0114%" height="15" fill="rgb(220,89,49)" fg:x="680702" fg:w="148"/><text x="52.9012%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (296 samples, 0.02%)</title><rect x="52.6398%" y="533" width="0.0229%" height="15" fill="rgb(227,60,33)" fg:x="680555" fg:w="296"/><text x="52.8898%" y="543.50"></text></g><g><title>btrfs_free_path (6,711 samples, 0.52%)</title><rect x="52.1596%" y="565" width="0.5191%" height="15" fill="rgb(205,113,12)" fg:x="674346" fg:w="6711"/><text x="52.4096%" y="575.50"></text></g><g><title>btrfs_release_path (6,655 samples, 0.51%)</title><rect x="52.1639%" y="549" width="0.5148%" height="15" fill="rgb(211,32,1)" fg:x="674402" fg:w="6655"/><text x="52.4139%" y="559.50"></text></g><g><title>release_extent_buffer (206 samples, 0.02%)</title><rect x="52.6627%" y="533" width="0.0159%" height="15" fill="rgb(246,2,12)" fg:x="680851" fg:w="206"/><text x="52.9127%" y="543.50"></text></g><g><title>_raw_read_lock (216 samples, 0.02%)</title><rect x="52.7627%" y="501" width="0.0167%" height="15" fill="rgb(243,37,27)" fg:x="682144" fg:w="216"/><text x="53.0127%" y="511.50"></text></g><g><title>finish_wait (577 samples, 0.04%)</title><rect x="52.7800%" y="501" width="0.0446%" height="15" fill="rgb(248,211,31)" fg:x="682367" fg:w="577"/><text x="53.0300%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (555 samples, 0.04%)</title><rect x="52.7817%" y="485" width="0.0429%" height="15" fill="rgb(242,146,47)" fg:x="682389" fg:w="555"/><text x="53.0317%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (537 samples, 0.04%)</title><rect x="52.7831%" y="469" width="0.0415%" height="15" fill="rgb(206,70,20)" fg:x="682407" fg:w="537"/><text x="53.0331%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,042 samples, 0.08%)</title><rect x="52.8324%" y="485" width="0.0806%" height="15" fill="rgb(215,10,51)" fg:x="683045" fg:w="1042"/><text x="53.0824%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (992 samples, 0.08%)</title><rect x="52.8363%" y="469" width="0.0767%" height="15" fill="rgb(243,178,53)" fg:x="683095" fg:w="992"/><text x="53.0863%" y="479.50"></text></g><g><title>prepare_to_wait_event (1,152 samples, 0.09%)</title><rect x="52.8247%" y="501" width="0.0891%" height="15" fill="rgb(233,221,20)" fg:x="682945" fg:w="1152"/><text x="53.0747%" y="511.50"></text></g><g><title>dequeue_task_fair (145 samples, 0.01%)</title><rect x="52.9298%" y="469" width="0.0112%" height="15" fill="rgb(218,95,35)" fg:x="684304" fg:w="145"/><text x="53.1798%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (2,728 samples, 0.21%)</title><rect x="52.7507%" y="517" width="0.2110%" height="15" fill="rgb(229,13,5)" fg:x="681988" fg:w="2728"/><text x="53.0007%" y="527.50"></text></g><g><title>schedule (498 samples, 0.04%)</title><rect x="52.9231%" y="501" width="0.0385%" height="15" fill="rgb(252,164,30)" fg:x="684218" fg:w="498"/><text x="53.1731%" y="511.50"></text></g><g><title>__schedule (486 samples, 0.04%)</title><rect x="52.9241%" y="485" width="0.0376%" height="15" fill="rgb(232,68,36)" fg:x="684230" fg:w="486"/><text x="53.1741%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (2,969 samples, 0.23%)</title><rect x="52.7481%" y="533" width="0.2296%" height="15" fill="rgb(219,59,54)" fg:x="681955" fg:w="2969"/><text x="52.9981%" y="543.50"></text></g><g><title>btrfs_root_node (208 samples, 0.02%)</title><rect x="52.9617%" y="517" width="0.0161%" height="15" fill="rgb(250,92,33)" fg:x="684716" fg:w="208"/><text x="53.2117%" y="527.50"></text></g><g><title>balance_level (335 samples, 0.03%)</title><rect x="52.9787%" y="533" width="0.0259%" height="15" fill="rgb(229,162,54)" fg:x="684936" fg:w="335"/><text x="53.2287%" y="543.50"></text></g><g><title>_cond_resched (138 samples, 0.01%)</title><rect x="53.0310%" y="501" width="0.0107%" height="15" fill="rgb(244,114,52)" fg:x="685612" fg:w="138"/><text x="53.2810%" y="511.50"></text></g><g><title>_raw_write_lock (221 samples, 0.02%)</title><rect x="53.0420%" y="501" width="0.0171%" height="15" fill="rgb(212,211,43)" fg:x="685755" fg:w="221"/><text x="53.2920%" y="511.50"></text></g><g><title>finish_wait (603 samples, 0.05%)</title><rect x="53.0592%" y="501" width="0.0466%" height="15" fill="rgb(226,147,8)" fg:x="685977" fg:w="603"/><text x="53.3092%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (592 samples, 0.05%)</title><rect x="53.0601%" y="485" width="0.0458%" height="15" fill="rgb(226,23,13)" fg:x="685988" fg:w="592"/><text x="53.3101%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (555 samples, 0.04%)</title><rect x="53.0629%" y="469" width="0.0429%" height="15" fill="rgb(240,63,4)" fg:x="686025" fg:w="555"/><text x="53.3129%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,446 samples, 0.11%)</title><rect x="53.1147%" y="485" width="0.1118%" height="15" fill="rgb(221,1,32)" fg:x="686694" fg:w="1446"/><text x="53.3647%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,346 samples, 0.10%)</title><rect x="53.1224%" y="469" width="0.1041%" height="15" fill="rgb(242,117,10)" fg:x="686794" fg:w="1346"/><text x="53.3724%" y="479.50"></text></g><g><title>prepare_to_wait_event (1,582 samples, 0.12%)</title><rect x="53.1062%" y="501" width="0.1224%" height="15" fill="rgb(249,172,44)" fg:x="686584" fg:w="1582"/><text x="53.3562%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (273 samples, 0.02%)</title><rect x="53.2285%" y="501" width="0.0211%" height="15" fill="rgb(244,46,45)" fg:x="688166" fg:w="273"/><text x="53.4785%" y="511.50"></text></g><g><title>dequeue_entity (218 samples, 0.02%)</title><rect x="53.2615%" y="453" width="0.0169%" height="15" fill="rgb(206,43,17)" fg:x="688592" fg:w="218"/><text x="53.5115%" y="463.50"></text></g><g><title>dequeue_task_fair (252 samples, 0.02%)</title><rect x="53.2596%" y="469" width="0.0195%" height="15" fill="rgb(239,218,39)" fg:x="688568" fg:w="252"/><text x="53.5096%" y="479.50"></text></g><g><title>finish_task_switch (173 samples, 0.01%)</title><rect x="53.2791%" y="469" width="0.0134%" height="15" fill="rgb(208,169,54)" fg:x="688820" fg:w="173"/><text x="53.5291%" y="479.50"></text></g><g><title>psi_task_change (170 samples, 0.01%)</title><rect x="53.2993%" y="469" width="0.0131%" height="15" fill="rgb(247,25,42)" fg:x="689081" fg:w="170"/><text x="53.5493%" y="479.50"></text></g><g><title>psi_group_change (146 samples, 0.01%)</title><rect x="53.3012%" y="453" width="0.0113%" height="15" fill="rgb(226,23,31)" fg:x="689105" fg:w="146"/><text x="53.5512%" y="463.50"></text></g><g><title>__btrfs_tree_lock (3,906 samples, 0.30%)</title><rect x="53.0140%" y="517" width="0.3021%" height="15" fill="rgb(247,16,28)" fg:x="685393" fg:w="3906"/><text x="53.2640%" y="527.50"></text></g><g><title>schedule (860 samples, 0.07%)</title><rect x="53.2496%" y="501" width="0.0665%" height="15" fill="rgb(231,147,38)" fg:x="688439" fg:w="860"/><text x="53.4996%" y="511.50"></text></g><g><title>__schedule (849 samples, 0.07%)</title><rect x="53.2505%" y="485" width="0.0657%" height="15" fill="rgb(253,81,48)" fg:x="688450" fg:w="849"/><text x="53.5005%" y="495.50"></text></g><g><title>btrfs_lock_root_node (4,096 samples, 0.32%)</title><rect x="53.0123%" y="533" width="0.3168%" height="15" fill="rgb(249,222,43)" fg:x="685371" fg:w="4096"/><text x="53.2623%" y="543.50"></text></g><g><title>btrfs_root_node (168 samples, 0.01%)</title><rect x="53.3162%" y="517" width="0.0130%" height="15" fill="rgb(221,3,27)" fg:x="689299" fg:w="168"/><text x="53.5662%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (460 samples, 0.04%)</title><rect x="53.3292%" y="533" width="0.0356%" height="15" fill="rgb(228,180,5)" fg:x="689467" fg:w="460"/><text x="53.5792%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (190 samples, 0.01%)</title><rect x="53.3647%" y="533" width="0.0147%" height="15" fill="rgb(227,131,42)" fg:x="689927" fg:w="190"/><text x="53.6147%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (161 samples, 0.01%)</title><rect x="53.3889%" y="533" width="0.0125%" height="15" fill="rgb(212,3,39)" fg:x="690239" fg:w="161"/><text x="53.6389%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (742 samples, 0.06%)</title><rect x="53.4013%" y="533" width="0.0574%" height="15" fill="rgb(226,45,5)" fg:x="690400" fg:w="742"/><text x="53.6513%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (134 samples, 0.01%)</title><rect x="53.4736%" y="517" width="0.0104%" height="15" fill="rgb(215,167,45)" fg:x="691335" fg:w="134"/><text x="53.7236%" y="527.50"></text></g><g><title>btrfs_get_64 (246 samples, 0.02%)</title><rect x="53.4840%" y="517" width="0.0190%" height="15" fill="rgb(250,218,53)" fg:x="691469" fg:w="246"/><text x="53.7340%" y="527.50"></text></g><g><title>btrfs_verify_level_key (132 samples, 0.01%)</title><rect x="53.5038%" y="517" width="0.0102%" height="15" fill="rgb(207,140,0)" fg:x="691725" fg:w="132"/><text x="53.7538%" y="527.50"></text></g><g><title>__radix_tree_lookup (392 samples, 0.03%)</title><rect x="53.5279%" y="501" width="0.0303%" height="15" fill="rgb(238,133,51)" fg:x="692037" fg:w="392"/><text x="53.7779%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (363 samples, 0.03%)</title><rect x="53.5583%" y="501" width="0.0281%" height="15" fill="rgb(218,203,53)" fg:x="692430" fg:w="363"/><text x="53.8083%" y="511.50"></text></g><g><title>mark_page_accessed (241 samples, 0.02%)</title><rect x="53.5678%" y="485" width="0.0186%" height="15" fill="rgb(226,184,25)" fg:x="692552" fg:w="241"/><text x="53.8178%" y="495.50"></text></g><g><title>find_extent_buffer (946 samples, 0.07%)</title><rect x="53.5140%" y="517" width="0.0732%" height="15" fill="rgb(231,121,21)" fg:x="691857" fg:w="946"/><text x="53.7640%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (1,894 samples, 0.15%)</title><rect x="53.4587%" y="533" width="0.1465%" height="15" fill="rgb(251,14,34)" fg:x="691142" fg:w="1894"/><text x="53.7087%" y="543.50"></text></g><g><title>read_extent_buffer (233 samples, 0.02%)</title><rect x="53.5872%" y="517" width="0.0180%" height="15" fill="rgb(249,193,11)" fg:x="692803" fg:w="233"/><text x="53.8372%" y="527.50"></text></g><g><title>btrfs_lookup_dir_index_item (12,369 samples, 0.96%)</title><rect x="52.6787%" y="565" width="0.9567%" height="15" fill="rgb(220,172,37)" fg:x="681057" fg:w="12369"/><text x="52.9287%" y="575.50"></text></g><g><title>btrfs_search_slot (12,287 samples, 0.95%)</title><rect x="52.6850%" y="549" width="0.9504%" height="15" fill="rgb(231,229,43)" fg:x="681139" fg:w="12287"/><text x="52.9350%" y="559.50"></text></g><g><title>unlock_up (272 samples, 0.02%)</title><rect x="53.6143%" y="533" width="0.0210%" height="15" fill="rgb(250,161,5)" fg:x="693154" fg:w="272"/><text x="53.8643%" y="543.50"></text></g><g><title>_raw_read_lock (265 samples, 0.02%)</title><rect x="53.7399%" y="501" width="0.0205%" height="15" fill="rgb(218,225,18)" fg:x="694777" fg:w="265"/><text x="53.9899%" y="511.50"></text></g><g><title>finish_wait (1,079 samples, 0.08%)</title><rect x="53.7617%" y="501" width="0.0835%" height="15" fill="rgb(245,45,42)" fg:x="695059" fg:w="1079"/><text x="54.0117%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,030 samples, 0.08%)</title><rect x="53.7655%" y="485" width="0.0797%" height="15" fill="rgb(211,115,1)" fg:x="695108" fg:w="1030"/><text x="54.0155%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (979 samples, 0.08%)</title><rect x="53.7694%" y="469" width="0.0757%" height="15" fill="rgb(248,133,52)" fg:x="695159" fg:w="979"/><text x="54.0194%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (2,701 samples, 0.21%)</title><rect x="53.8633%" y="485" width="0.2089%" height="15" fill="rgb(238,100,21)" fg:x="696373" fg:w="2701"/><text x="54.1133%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,548 samples, 0.20%)</title><rect x="53.8752%" y="469" width="0.1971%" height="15" fill="rgb(247,144,11)" fg:x="696526" fg:w="2548"/><text x="54.1252%" y="479.50"></text></g><g><title>prepare_to_wait_event (2,970 samples, 0.23%)</title><rect x="53.8455%" y="501" width="0.2297%" height="15" fill="rgb(206,164,16)" fg:x="696143" fg:w="2970"/><text x="54.0955%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (279 samples, 0.02%)</title><rect x="54.0753%" y="501" width="0.0216%" height="15" fill="rgb(222,34,3)" fg:x="699113" fg:w="279"/><text x="54.3253%" y="511.50"></text></g><g><title>update_curr (150 samples, 0.01%)</title><rect x="54.1398%" y="437" width="0.0116%" height="15" fill="rgb(248,82,4)" fg:x="699948" fg:w="150"/><text x="54.3898%" y="447.50"></text></g><g><title>dequeue_entity (468 samples, 0.04%)</title><rect x="54.1275%" y="453" width="0.0362%" height="15" fill="rgb(228,81,46)" fg:x="699788" fg:w="468"/><text x="54.3775%" y="463.50"></text></g><g><title>update_load_avg (158 samples, 0.01%)</title><rect x="54.1514%" y="437" width="0.0122%" height="15" fill="rgb(227,67,47)" fg:x="700098" fg:w="158"/><text x="54.4014%" y="447.50"></text></g><g><title>dequeue_task_fair (539 samples, 0.04%)</title><rect x="54.1234%" y="469" width="0.0417%" height="15" fill="rgb(215,93,53)" fg:x="699736" fg:w="539"/><text x="54.3734%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (426 samples, 0.03%)</title><rect x="54.1725%" y="453" width="0.0330%" height="15" fill="rgb(248,194,39)" fg:x="700370" fg:w="426"/><text x="54.4225%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (398 samples, 0.03%)</title><rect x="54.1746%" y="437" width="0.0308%" height="15" fill="rgb(215,5,19)" fg:x="700398" fg:w="398"/><text x="54.4246%" y="447.50"></text></g><g><title>native_write_msr (384 samples, 0.03%)</title><rect x="54.1757%" y="421" width="0.0297%" height="15" fill="rgb(226,215,51)" fg:x="700412" fg:w="384"/><text x="54.4257%" y="431.50"></text></g><g><title>finish_task_switch (549 samples, 0.04%)</title><rect x="54.1651%" y="469" width="0.0425%" height="15" fill="rgb(225,56,26)" fg:x="700275" fg:w="549"/><text x="54.4151%" y="479.50"></text></g><g><title>psi_task_change (454 samples, 0.04%)</title><rect x="54.2229%" y="469" width="0.0351%" height="15" fill="rgb(222,75,29)" fg:x="701022" fg:w="454"/><text x="54.4729%" y="479.50"></text></g><g><title>psi_group_change (388 samples, 0.03%)</title><rect x="54.2280%" y="453" width="0.0300%" height="15" fill="rgb(236,139,6)" fg:x="701088" fg:w="388"/><text x="54.4780%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (7,073 samples, 0.55%)</title><rect x="53.7205%" y="517" width="0.5471%" height="15" fill="rgb(223,137,36)" fg:x="694527" fg:w="7073"/><text x="53.9705%" y="527.50"></text></g><g><title>schedule (2,208 samples, 0.17%)</title><rect x="54.0968%" y="501" width="0.1708%" height="15" fill="rgb(226,99,2)" fg:x="699392" fg:w="2208"/><text x="54.3468%" y="511.50"></text></g><g><title>__schedule (2,169 samples, 0.17%)</title><rect x="54.0999%" y="485" width="0.1678%" height="15" fill="rgb(206,133,23)" fg:x="699431" fg:w="2169"/><text x="54.3499%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (7,538 samples, 0.58%)</title><rect x="53.7172%" y="533" width="0.5831%" height="15" fill="rgb(243,173,15)" fg:x="694484" fg:w="7538"/><text x="53.9672%" y="543.50"></text></g><g><title>btrfs_root_node (422 samples, 0.03%)</title><rect x="54.2676%" y="517" width="0.0326%" height="15" fill="rgb(228,69,28)" fg:x="701600" fg:w="422"/><text x="54.5176%" y="527.50"></text></g><g><title>balance_level (360 samples, 0.03%)</title><rect x="54.3006%" y="533" width="0.0278%" height="15" fill="rgb(212,51,22)" fg:x="702026" fg:w="360"/><text x="54.5506%" y="543.50"></text></g><g><title>_raw_write_lock (193 samples, 0.01%)</title><rect x="54.3549%" y="501" width="0.0149%" height="15" fill="rgb(227,113,0)" fg:x="702728" fg:w="193"/><text x="54.6049%" y="511.50"></text></g><g><title>finish_wait (620 samples, 0.05%)</title><rect x="54.3701%" y="501" width="0.0480%" height="15" fill="rgb(252,84,27)" fg:x="702925" fg:w="620"/><text x="54.6201%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (598 samples, 0.05%)</title><rect x="54.3718%" y="485" width="0.0463%" height="15" fill="rgb(223,145,39)" fg:x="702947" fg:w="598"/><text x="54.6218%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (568 samples, 0.04%)</title><rect x="54.3741%" y="469" width="0.0439%" height="15" fill="rgb(239,219,30)" fg:x="702977" fg:w="568"/><text x="54.6241%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,480 samples, 0.11%)</title><rect x="54.4280%" y="485" width="0.1145%" height="15" fill="rgb(224,196,39)" fg:x="703673" fg:w="1480"/><text x="54.6780%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,413 samples, 0.11%)</title><rect x="54.4331%" y="469" width="0.1093%" height="15" fill="rgb(205,35,43)" fg:x="703740" fg:w="1413"/><text x="54.6831%" y="479.50"></text></g><g><title>prepare_to_wait_event (1,620 samples, 0.13%)</title><rect x="54.4184%" y="501" width="0.1253%" height="15" fill="rgb(228,201,21)" fg:x="703550" fg:w="1620"/><text x="54.6684%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (293 samples, 0.02%)</title><rect x="54.5438%" y="501" width="0.0227%" height="15" fill="rgb(237,118,16)" fg:x="705170" fg:w="293"/><text x="54.7938%" y="511.50"></text></g><g><title>dequeue_entity (210 samples, 0.02%)</title><rect x="54.5767%" y="453" width="0.0162%" height="15" fill="rgb(241,17,19)" fg:x="705596" fg:w="210"/><text x="54.8267%" y="463.50"></text></g><g><title>dequeue_task_fair (235 samples, 0.02%)</title><rect x="54.5752%" y="469" width="0.0182%" height="15" fill="rgb(214,10,25)" fg:x="705577" fg:w="235"/><text x="54.8252%" y="479.50"></text></g><g><title>finish_task_switch (163 samples, 0.01%)</title><rect x="54.5934%" y="469" width="0.0126%" height="15" fill="rgb(238,37,29)" fg:x="705812" fg:w="163"/><text x="54.8434%" y="479.50"></text></g><g><title>psi_task_change (192 samples, 0.01%)</title><rect x="54.6124%" y="469" width="0.0149%" height="15" fill="rgb(253,83,25)" fg:x="706057" fg:w="192"/><text x="54.8624%" y="479.50"></text></g><g><title>psi_group_change (164 samples, 0.01%)</title><rect x="54.6145%" y="453" width="0.0127%" height="15" fill="rgb(234,192,12)" fg:x="706085" fg:w="164"/><text x="54.8645%" y="463.50"></text></g><g><title>__btrfs_tree_lock (3,832 samples, 0.30%)</title><rect x="54.3348%" y="517" width="0.2964%" height="15" fill="rgb(241,216,45)" fg:x="702468" fg:w="3832"/><text x="54.5848%" y="527.50"></text></g><g><title>schedule (837 samples, 0.06%)</title><rect x="54.5664%" y="501" width="0.0647%" height="15" fill="rgb(242,22,33)" fg:x="705463" fg:w="837"/><text x="54.8164%" y="511.50"></text></g><g><title>__schedule (803 samples, 0.06%)</title><rect x="54.5690%" y="485" width="0.0621%" height="15" fill="rgb(231,105,49)" fg:x="705497" fg:w="803"/><text x="54.8190%" y="495.50"></text></g><g><title>btrfs_lock_root_node (4,040 samples, 0.31%)</title><rect x="54.3331%" y="533" width="0.3125%" height="15" fill="rgb(218,204,15)" fg:x="702446" fg:w="4040"/><text x="54.5831%" y="543.50"></text></g><g><title>btrfs_root_node (186 samples, 0.01%)</title><rect x="54.6312%" y="517" width="0.0144%" height="15" fill="rgb(235,138,41)" fg:x="706300" fg:w="186"/><text x="54.8812%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (572 samples, 0.04%)</title><rect x="54.6455%" y="533" width="0.0442%" height="15" fill="rgb(246,0,9)" fg:x="706486" fg:w="572"/><text x="54.8955%" y="543.50"></text></g><g><title>btrfs_set_lock_blocking_write (150 samples, 0.01%)</title><rect x="54.6782%" y="517" width="0.0116%" height="15" fill="rgb(210,74,4)" fg:x="706908" fg:w="150"/><text x="54.9282%" y="527.50"></text></g><g><title>btrfs_tree_read_unlock (154 samples, 0.01%)</title><rect x="54.6898%" y="533" width="0.0119%" height="15" fill="rgb(250,60,41)" fg:x="707058" fg:w="154"/><text x="54.9398%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (162 samples, 0.01%)</title><rect x="54.7017%" y="533" width="0.0125%" height="15" fill="rgb(220,115,12)" fg:x="707212" fg:w="162"/><text x="54.9517%" y="543.50"></text></g><g><title>_raw_write_lock (130 samples, 0.01%)</title><rect x="54.7042%" y="517" width="0.0101%" height="15" fill="rgb(237,100,13)" fg:x="707244" fg:w="130"/><text x="54.9542%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (203 samples, 0.02%)</title><rect x="54.7145%" y="533" width="0.0157%" height="15" fill="rgb(213,55,26)" fg:x="707377" fg:w="203"/><text x="54.9645%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (1,015 samples, 0.08%)</title><rect x="54.7302%" y="533" width="0.0785%" height="15" fill="rgb(216,17,4)" fg:x="707580" fg:w="1015"/><text x="54.9802%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (172 samples, 0.01%)</title><rect x="54.8245%" y="517" width="0.0133%" height="15" fill="rgb(220,153,47)" fg:x="708800" fg:w="172"/><text x="55.0745%" y="527.50"></text></g><g><title>verify_parent_transid (143 samples, 0.01%)</title><rect x="54.8268%" y="501" width="0.0111%" height="15" fill="rgb(215,131,9)" fg:x="708829" fg:w="143"/><text x="55.0768%" y="511.50"></text></g><g><title>btrfs_get_64 (222 samples, 0.02%)</title><rect x="54.8378%" y="517" width="0.0172%" height="15" fill="rgb(233,46,42)" fg:x="708972" fg:w="222"/><text x="55.0878%" y="527.50"></text></g><g><title>__radix_tree_lookup (657 samples, 0.05%)</title><rect x="54.9080%" y="501" width="0.0508%" height="15" fill="rgb(226,86,7)" fg:x="709879" fg:w="657"/><text x="55.1580%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (372 samples, 0.03%)</title><rect x="54.9590%" y="501" width="0.0288%" height="15" fill="rgb(239,226,21)" fg:x="710538" fg:w="372"/><text x="55.2090%" y="511.50"></text></g><g><title>mark_page_accessed (284 samples, 0.02%)</title><rect x="54.9658%" y="485" width="0.0220%" height="15" fill="rgb(244,137,22)" fg:x="710626" fg:w="284"/><text x="55.2158%" y="495.50"></text></g><g><title>find_extent_buffer (1,616 samples, 0.12%)</title><rect x="54.8631%" y="517" width="0.1250%" height="15" fill="rgb(211,139,35)" fg:x="709299" fg:w="1616"/><text x="55.1131%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (2,569 samples, 0.20%)</title><rect x="54.8087%" y="533" width="0.1987%" height="15" fill="rgb(214,62,50)" fg:x="708595" fg:w="2569"/><text x="55.0587%" y="543.50"></text></g><g><title>read_extent_buffer (249 samples, 0.02%)</title><rect x="54.9881%" y="517" width="0.0193%" height="15" fill="rgb(212,113,44)" fg:x="710915" fg:w="249"/><text x="55.2381%" y="527.50"></text></g><g><title>btrfs_search_slot (17,887 samples, 1.38%)</title><rect x="53.6518%" y="549" width="1.3835%" height="15" fill="rgb(226,150,43)" fg:x="693638" fg:w="17887"/><text x="53.9018%" y="559.50"></text></g><g><title>unlock_up (214 samples, 0.02%)</title><rect x="55.0187%" y="533" width="0.0166%" height="15" fill="rgb(250,71,37)" fg:x="711311" fg:w="214"/><text x="55.2687%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (18,384 samples, 1.42%)</title><rect x="53.6354%" y="565" width="1.4220%" height="15" fill="rgb(219,76,19)" fg:x="693426" fg:w="18384"/><text x="53.8854%" y="575.50"></text></g><g><title>crc32c (285 samples, 0.02%)</title><rect x="55.0353%" y="549" width="0.0220%" height="15" fill="rgb(250,39,11)" fg:x="711525" fg:w="285"/><text x="55.2853%" y="559.50"></text></g><g><title>crypto_shash_update (164 samples, 0.01%)</title><rect x="55.0447%" y="533" width="0.0127%" height="15" fill="rgb(230,64,31)" fg:x="711646" fg:w="164"/><text x="55.2947%" y="543.50"></text></g><g><title>select_task_rq_fair (340 samples, 0.03%)</title><rect x="55.2663%" y="485" width="0.0263%" height="15" fill="rgb(208,222,23)" fg:x="714511" fg:w="340"/><text x="55.5163%" y="495.50"></text></g><g><title>enqueue_entity (433 samples, 0.03%)</title><rect x="55.3014%" y="453" width="0.0335%" height="15" fill="rgb(227,125,18)" fg:x="714965" fg:w="433"/><text x="55.5514%" y="463.50"></text></g><g><title>update_load_avg (153 samples, 0.01%)</title><rect x="55.3230%" y="437" width="0.0118%" height="15" fill="rgb(234,210,9)" fg:x="715245" fg:w="153"/><text x="55.5730%" y="447.50"></text></g><g><title>enqueue_task_fair (530 samples, 0.04%)</title><rect x="55.2952%" y="469" width="0.0410%" height="15" fill="rgb(217,127,24)" fg:x="714885" fg:w="530"/><text x="55.5452%" y="479.50"></text></g><g><title>ttwu_do_activate (1,119 samples, 0.09%)</title><rect x="55.2932%" y="485" width="0.0866%" height="15" fill="rgb(239,141,48)" fg:x="714859" fg:w="1119"/><text x="55.5432%" y="495.50"></text></g><g><title>psi_task_change (563 samples, 0.04%)</title><rect x="55.3362%" y="469" width="0.0435%" height="15" fill="rgb(227,109,8)" fg:x="715415" fg:w="563"/><text x="55.5862%" y="479.50"></text></g><g><title>psi_group_change (500 samples, 0.04%)</title><rect x="55.3411%" y="453" width="0.0387%" height="15" fill="rgb(235,184,23)" fg:x="715478" fg:w="500"/><text x="55.5911%" y="463.50"></text></g><g><title>__wake_up_common (4,261 samples, 0.33%)</title><rect x="55.0773%" y="533" width="0.3296%" height="15" fill="rgb(227,226,48)" fg:x="712068" fg:w="4261"/><text x="55.3273%" y="543.50"></text></g><g><title>autoremove_wake_function (4,144 samples, 0.32%)</title><rect x="55.0864%" y="517" width="0.3205%" height="15" fill="rgb(206,150,11)" fg:x="712185" fg:w="4144"/><text x="55.3364%" y="527.50"></text></g><g><title>try_to_wake_up (4,094 samples, 0.32%)</title><rect x="55.0902%" y="501" width="0.3167%" height="15" fill="rgb(254,2,33)" fg:x="712235" fg:w="4094"/><text x="55.3402%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,542 samples, 0.12%)</title><rect x="55.4069%" y="533" width="0.1193%" height="15" fill="rgb(243,160,20)" fg:x="716329" fg:w="1542"/><text x="55.6569%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,495 samples, 0.12%)</title><rect x="55.4105%" y="517" width="0.1156%" height="15" fill="rgb(218,208,30)" fg:x="716376" fg:w="1495"/><text x="55.6605%" y="527.50"></text></g><g><title>__wake_up_common_lock (5,872 samples, 0.45%)</title><rect x="55.0758%" y="549" width="0.4542%" height="15" fill="rgb(224,120,49)" fg:x="712048" fg:w="5872"/><text x="55.3258%" y="559.50"></text></g><g><title>btrfs_tree_unlock (408 samples, 0.03%)</title><rect x="55.5302%" y="549" width="0.0316%" height="15" fill="rgb(246,12,2)" fg:x="717923" fg:w="408"/><text x="55.7802%" y="559.50"></text></g><g><title>_raw_spin_lock (171 samples, 0.01%)</title><rect x="55.5743%" y="533" width="0.0132%" height="15" fill="rgb(236,117,3)" fg:x="718494" fg:w="171"/><text x="55.8243%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (327 samples, 0.03%)</title><rect x="55.5624%" y="549" width="0.0253%" height="15" fill="rgb(216,128,52)" fg:x="718339" fg:w="327"/><text x="55.8124%" y="559.50"></text></g><g><title>btrfs_release_path (7,044 samples, 0.54%)</title><rect x="55.0573%" y="565" width="0.5448%" height="15" fill="rgb(246,145,19)" fg:x="711810" fg:w="7044"/><text x="55.3073%" y="575.50"></text></g><g><title>release_extent_buffer (188 samples, 0.01%)</title><rect x="55.5876%" y="549" width="0.0145%" height="15" fill="rgb(222,11,46)" fg:x="718666" fg:w="188"/><text x="55.8376%" y="559.50"></text></g><g><title>kmem_cache_alloc (391 samples, 0.03%)</title><rect x="55.6023%" y="565" width="0.0302%" height="15" fill="rgb(245,82,36)" fg:x="718856" fg:w="391"/><text x="55.8523%" y="575.50"></text></g><g><title>kmem_cache_free (476 samples, 0.04%)</title><rect x="55.6326%" y="565" width="0.0368%" height="15" fill="rgb(250,73,51)" fg:x="719247" fg:w="476"/><text x="55.8826%" y="575.50"></text></g><g><title>mutex_lock (428 samples, 0.03%)</title><rect x="55.6694%" y="565" width="0.0331%" height="15" fill="rgb(221,189,23)" fg:x="719723" fg:w="428"/><text x="55.9194%" y="575.50"></text></g><g><title>btrfs_del_dir_entries_in_log (46,882 samples, 3.63%)</title><rect x="52.0981%" y="581" width="3.6262%" height="15" fill="rgb(210,33,7)" fg:x="673551" fg:w="46882"/><text x="52.3481%" y="591.50">btrf..</text></g><g><title>mutex_unlock (282 samples, 0.02%)</title><rect x="55.7025%" y="565" width="0.0218%" height="15" fill="rgb(210,107,22)" fg:x="720151" fg:w="282"/><text x="55.9525%" y="575.50"></text></g><g><title>btrfs_get_32 (401 samples, 0.03%)</title><rect x="55.8891%" y="549" width="0.0310%" height="15" fill="rgb(222,116,37)" fg:x="722563" fg:w="401"/><text x="56.1391%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (961 samples, 0.07%)</title><rect x="56.4077%" y="533" width="0.0743%" height="15" fill="rgb(254,17,48)" fg:x="729268" fg:w="961"/><text x="56.6577%" y="543.50"></text></g><g><title>btrfs_get_token_32 (7,266 samples, 0.56%)</title><rect x="55.9201%" y="549" width="0.5620%" height="15" fill="rgb(224,36,32)" fg:x="722964" fg:w="7266"/><text x="56.1701%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (491 samples, 0.04%)</title><rect x="56.4821%" y="549" width="0.0380%" height="15" fill="rgb(232,90,46)" fg:x="730230" fg:w="491"/><text x="56.7321%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (235 samples, 0.02%)</title><rect x="56.5019%" y="533" width="0.0182%" height="15" fill="rgb(241,66,40)" fg:x="730486" fg:w="235"/><text x="56.7519%" y="543.50"></text></g><g><title>btrfs_set_token_32 (5,197 samples, 0.40%)</title><rect x="56.5201%" y="549" width="0.4020%" height="15" fill="rgb(249,184,29)" fg:x="730721" fg:w="5197"/><text x="56.7701%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (767 samples, 0.06%)</title><rect x="56.8627%" y="533" width="0.0593%" height="15" fill="rgb(231,181,1)" fg:x="735151" fg:w="767"/><text x="57.1127%" y="543.50"></text></g><g><title>leaf_space_used (426 samples, 0.03%)</title><rect x="56.9224%" y="549" width="0.0330%" height="15" fill="rgb(224,94,2)" fg:x="735922" fg:w="426"/><text x="57.1724%" y="559.50"></text></g><g><title>btrfs_get_32 (333 samples, 0.03%)</title><rect x="56.9296%" y="533" width="0.0258%" height="15" fill="rgb(229,170,15)" fg:x="736015" fg:w="333"/><text x="57.1796%" y="543.50"></text></g><g><title>memcpy_extent_buffer (991 samples, 0.08%)</title><rect x="56.9553%" y="549" width="0.0767%" height="15" fill="rgb(240,127,35)" fg:x="736348" fg:w="991"/><text x="57.2053%" y="559.50"></text></g><g><title>memmove (756 samples, 0.06%)</title><rect x="56.9735%" y="533" width="0.0585%" height="15" fill="rgb(248,196,34)" fg:x="736583" fg:w="756"/><text x="57.2235%" y="543.50"></text></g><g><title>copy_pages (893 samples, 0.07%)</title><rect x="57.0635%" y="533" width="0.0691%" height="15" fill="rgb(236,137,7)" fg:x="737746" fg:w="893"/><text x="57.3135%" y="543.50"></text></g><g><title>memmove_extent_buffer (7,903 samples, 0.61%)</title><rect x="57.0320%" y="549" width="0.6113%" height="15" fill="rgb(235,127,16)" fg:x="737339" fg:w="7903"/><text x="57.2820%" y="559.50"></text></g><g><title>memmove (6,603 samples, 0.51%)</title><rect x="57.1325%" y="533" width="0.5107%" height="15" fill="rgb(250,192,54)" fg:x="738639" fg:w="6603"/><text x="57.3825%" y="543.50"></text></g><g><title>btrfs_del_items (24,511 samples, 1.90%)</title><rect x="55.7475%" y="565" width="1.8959%" height="15" fill="rgb(218,98,20)" fg:x="720733" fg:w="24511"/><text x="55.9975%" y="575.50">b..</text></g><g><title>btrfs_get_16 (690 samples, 0.05%)</title><rect x="57.6616%" y="549" width="0.0534%" height="15" fill="rgb(230,176,47)" fg:x="745479" fg:w="690"/><text x="57.9116%" y="559.50"></text></g><g><title>btrfs_get_32 (281 samples, 0.02%)</title><rect x="57.7150%" y="549" width="0.0217%" height="15" fill="rgb(244,2,33)" fg:x="746169" fg:w="281"/><text x="57.9650%" y="559.50"></text></g><g><title>btrfs_find_name_in_backref (1,552 samples, 0.12%)</title><rect x="57.6434%" y="565" width="0.1200%" height="15" fill="rgb(231,100,17)" fg:x="745244" fg:w="1552"/><text x="57.8934%" y="575.50"></text></g><g><title>memcmp_extent_buffer (346 samples, 0.03%)</title><rect x="57.7367%" y="549" width="0.0268%" height="15" fill="rgb(245,23,12)" fg:x="746450" fg:w="346"/><text x="57.9867%" y="559.50"></text></g><g><title>memcmp (230 samples, 0.02%)</title><rect x="57.7457%" y="533" width="0.0178%" height="15" fill="rgb(249,55,22)" fg:x="746566" fg:w="230"/><text x="57.9957%" y="543.50"></text></g><g><title>_raw_spin_lock (385 samples, 0.03%)</title><rect x="57.8322%" y="517" width="0.0298%" height="15" fill="rgb(207,134,9)" fg:x="747685" fg:w="385"/><text x="58.0822%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (982 samples, 0.08%)</title><rect x="57.7863%" y="533" width="0.0760%" height="15" fill="rgb(218,134,0)" fg:x="747091" fg:w="982"/><text x="58.0363%" y="543.50"></text></g><g><title>btrfs_free_path (1,565 samples, 0.12%)</title><rect x="57.7635%" y="565" width="0.1211%" height="15" fill="rgb(213,212,33)" fg:x="746796" fg:w="1565"/><text x="58.0135%" y="575.50"></text></g><g><title>btrfs_release_path (1,552 samples, 0.12%)</title><rect x="57.7645%" y="549" width="0.1200%" height="15" fill="rgb(252,106,18)" fg:x="746809" fg:w="1552"/><text x="58.0145%" y="559.50"></text></g><g><title>release_extent_buffer (288 samples, 0.02%)</title><rect x="57.8622%" y="533" width="0.0223%" height="15" fill="rgb(208,126,42)" fg:x="748073" fg:w="288"/><text x="58.1122%" y="543.50"></text></g><g><title>btrfs_get_64 (152 samples, 0.01%)</title><rect x="57.8928%" y="565" width="0.0118%" height="15" fill="rgb(246,175,29)" fg:x="748468" fg:w="152"/><text x="58.1428%" y="575.50"></text></g><g><title>_raw_read_lock (354 samples, 0.03%)</title><rect x="58.0423%" y="517" width="0.0274%" height="15" fill="rgb(215,13,50)" fg:x="750401" fg:w="354"/><text x="58.2923%" y="527.50"></text></g><g><title>finish_wait (980 samples, 0.08%)</title><rect x="58.0716%" y="517" width="0.0758%" height="15" fill="rgb(216,172,15)" fg:x="750780" fg:w="980"/><text x="58.3216%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (931 samples, 0.07%)</title><rect x="58.0754%" y="501" width="0.0720%" height="15" fill="rgb(212,103,13)" fg:x="750829" fg:w="931"/><text x="58.3254%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (884 samples, 0.07%)</title><rect x="58.0790%" y="485" width="0.0684%" height="15" fill="rgb(231,171,36)" fg:x="750876" fg:w="884"/><text x="58.3290%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (3,376 samples, 0.26%)</title><rect x="58.1695%" y="501" width="0.2611%" height="15" fill="rgb(250,123,20)" fg:x="752046" fg:w="3376"/><text x="58.4195%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,214 samples, 0.25%)</title><rect x="58.1821%" y="485" width="0.2486%" height="15" fill="rgb(212,53,50)" fg:x="752208" fg:w="3214"/><text x="58.4321%" y="495.50"></text></g><g><title>prepare_to_wait_event (3,719 samples, 0.29%)</title><rect x="58.1481%" y="517" width="0.2877%" height="15" fill="rgb(243,54,12)" fg:x="751769" fg:w="3719"/><text x="58.3981%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (5,111 samples, 0.40%)</title><rect x="58.4358%" y="517" width="0.3953%" height="15" fill="rgb(234,101,34)" fg:x="755488" fg:w="5111"/><text x="58.6858%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,508 samples, 0.27%)</title><rect x="58.5598%" y="501" width="0.2713%" height="15" fill="rgb(254,67,22)" fg:x="757091" fg:w="3508"/><text x="58.8098%" y="511.50"></text></g><g><title>update_curr (204 samples, 0.02%)</title><rect x="58.8797%" y="453" width="0.0158%" height="15" fill="rgb(250,35,47)" fg:x="761228" fg:w="204"/><text x="59.1297%" y="463.50"></text></g><g><title>dequeue_entity (539 samples, 0.04%)</title><rect x="58.8668%" y="469" width="0.0417%" height="15" fill="rgb(226,126,38)" fg:x="761061" fg:w="539"/><text x="59.1168%" y="479.50"></text></g><g><title>update_load_avg (168 samples, 0.01%)</title><rect x="58.8955%" y="453" width="0.0130%" height="15" fill="rgb(216,138,53)" fg:x="761432" fg:w="168"/><text x="59.1455%" y="463.50"></text></g><g><title>dequeue_task_fair (696 samples, 0.05%)</title><rect x="58.8586%" y="485" width="0.0538%" height="15" fill="rgb(246,199,43)" fg:x="760954" fg:w="696"/><text x="59.1086%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (1,311 samples, 0.10%)</title><rect x="58.9229%" y="469" width="0.1014%" height="15" fill="rgb(232,125,11)" fg:x="761786" fg:w="1311"/><text x="59.1729%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,259 samples, 0.10%)</title><rect x="58.9269%" y="453" width="0.0974%" height="15" fill="rgb(218,219,45)" fg:x="761838" fg:w="1259"/><text x="59.1769%" y="463.50"></text></g><g><title>native_write_msr (1,238 samples, 0.10%)</title><rect x="58.9286%" y="437" width="0.0958%" height="15" fill="rgb(216,102,54)" fg:x="761859" fg:w="1238"/><text x="59.1786%" y="447.50"></text></g><g><title>finish_task_switch (1,513 samples, 0.12%)</title><rect x="58.9124%" y="485" width="0.1170%" height="15" fill="rgb(250,228,7)" fg:x="761650" fg:w="1513"/><text x="59.1624%" y="495.50"></text></g><g><title>pick_next_task_fair (177 samples, 0.01%)</title><rect x="59.0296%" y="485" width="0.0137%" height="15" fill="rgb(226,125,25)" fg:x="763165" fg:w="177"/><text x="59.2796%" y="495.50"></text></g><g><title>psi_task_change (522 samples, 0.04%)</title><rect x="59.0525%" y="485" width="0.0404%" height="15" fill="rgb(224,165,27)" fg:x="763461" fg:w="522"/><text x="59.3025%" y="495.50"></text></g><g><title>psi_group_change (462 samples, 0.04%)</title><rect x="59.0571%" y="469" width="0.0357%" height="15" fill="rgb(233,86,3)" fg:x="763521" fg:w="462"/><text x="59.3071%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (14,076 samples, 1.09%)</title><rect x="58.0201%" y="533" width="1.0888%" height="15" fill="rgb(228,116,20)" fg:x="750114" fg:w="14076"/><text x="58.2701%" y="543.50"></text></g><g><title>schedule (3,591 samples, 0.28%)</title><rect x="58.8311%" y="517" width="0.2778%" height="15" fill="rgb(209,192,17)" fg:x="760599" fg:w="3591"/><text x="59.0811%" y="527.50"></text></g><g><title>__schedule (3,545 samples, 0.27%)</title><rect x="58.8347%" y="501" width="0.2742%" height="15" fill="rgb(224,88,34)" fg:x="760645" fg:w="3545"/><text x="59.0847%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (14,612 samples, 1.13%)</title><rect x="58.0146%" y="549" width="1.1302%" height="15" fill="rgb(233,38,6)" fg:x="750043" fg:w="14612"/><text x="58.2646%" y="559.50"></text></g><g><title>btrfs_root_node (465 samples, 0.04%)</title><rect x="59.1089%" y="533" width="0.0360%" height="15" fill="rgb(212,59,30)" fg:x="764190" fg:w="465"/><text x="59.3589%" y="543.50"></text></g><g><title>alloc_tree_block_no_bg_flush (201 samples, 0.02%)</title><rect x="59.1630%" y="517" width="0.0155%" height="15" fill="rgb(213,80,3)" fg:x="764890" fg:w="201"/><text x="59.4130%" y="527.50"></text></g><g><title>btrfs_alloc_tree_block (201 samples, 0.02%)</title><rect x="59.1630%" y="501" width="0.0155%" height="15" fill="rgb(251,178,7)" fg:x="764890" fg:w="201"/><text x="59.4130%" y="511.50"></text></g><g><title>__btrfs_cow_block (409 samples, 0.03%)</title><rect x="59.1624%" y="533" width="0.0316%" height="15" fill="rgb(213,154,26)" fg:x="764882" fg:w="409"/><text x="59.4124%" y="543.50"></text></g><g><title>btrfs_cow_block (413 samples, 0.03%)</title><rect x="59.1623%" y="549" width="0.0319%" height="15" fill="rgb(238,165,49)" fg:x="764881" fg:w="413"/><text x="59.4123%" y="559.50"></text></g><g><title>_cond_resched (135 samples, 0.01%)</title><rect x="59.2194%" y="517" width="0.0104%" height="15" fill="rgb(248,91,46)" fg:x="765619" fg:w="135"/><text x="59.4694%" y="527.50"></text></g><g><title>_raw_write_lock (289 samples, 0.02%)</title><rect x="59.2305%" y="517" width="0.0224%" height="15" fill="rgb(244,21,52)" fg:x="765763" fg:w="289"/><text x="59.4805%" y="527.50"></text></g><g><title>finish_wait (690 samples, 0.05%)</title><rect x="59.2531%" y="517" width="0.0534%" height="15" fill="rgb(247,122,20)" fg:x="766055" fg:w="690"/><text x="59.5031%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (654 samples, 0.05%)</title><rect x="59.2559%" y="501" width="0.0506%" height="15" fill="rgb(218,27,9)" fg:x="766091" fg:w="654"/><text x="59.5059%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (618 samples, 0.05%)</title><rect x="59.2587%" y="485" width="0.0478%" height="15" fill="rgb(246,7,6)" fg:x="766127" fg:w="618"/><text x="59.5087%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (2,051 samples, 0.16%)</title><rect x="59.3265%" y="501" width="0.1586%" height="15" fill="rgb(227,135,54)" fg:x="767004" fg:w="2051"/><text x="59.5765%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,902 samples, 0.15%)</title><rect x="59.3380%" y="485" width="0.1471%" height="15" fill="rgb(247,14,11)" fg:x="767153" fg:w="1902"/><text x="59.5880%" y="495.50"></text></g><g><title>prepare_to_wait_event (2,361 samples, 0.18%)</title><rect x="59.3072%" y="517" width="0.1826%" height="15" fill="rgb(206,149,34)" fg:x="766754" fg:w="2361"/><text x="59.5572%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (7,185 samples, 0.56%)</title><rect x="59.4898%" y="517" width="0.5557%" height="15" fill="rgb(227,228,4)" fg:x="769115" fg:w="7185"/><text x="59.7398%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,232 samples, 0.17%)</title><rect x="59.8729%" y="501" width="0.1726%" height="15" fill="rgb(238,218,28)" fg:x="774068" fg:w="2232"/><text x="60.1229%" y="511.50"></text></g><g><title>update_curr (177 samples, 0.01%)</title><rect x="60.0934%" y="453" width="0.0137%" height="15" fill="rgb(252,86,40)" fg:x="776919" fg:w="177"/><text x="60.3434%" y="463.50"></text></g><g><title>dequeue_entity (546 samples, 0.04%)</title><rect x="60.0797%" y="469" width="0.0422%" height="15" fill="rgb(251,225,11)" fg:x="776741" fg:w="546"/><text x="60.3297%" y="479.50"></text></g><g><title>update_load_avg (191 samples, 0.01%)</title><rect x="60.1071%" y="453" width="0.0148%" height="15" fill="rgb(206,46,49)" fg:x="777096" fg:w="191"/><text x="60.3571%" y="463.50"></text></g><g><title>dequeue_task_fair (676 samples, 0.05%)</title><rect x="60.0735%" y="485" width="0.0523%" height="15" fill="rgb(245,128,24)" fg:x="776662" fg:w="676"/><text x="60.3235%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (1,182 samples, 0.09%)</title><rect x="60.1337%" y="469" width="0.0914%" height="15" fill="rgb(219,177,34)" fg:x="777440" fg:w="1182"/><text x="60.3837%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,126 samples, 0.09%)</title><rect x="60.1381%" y="453" width="0.0871%" height="15" fill="rgb(218,60,48)" fg:x="777496" fg:w="1126"/><text x="60.3881%" y="463.50"></text></g><g><title>native_write_msr (1,105 samples, 0.09%)</title><rect x="60.1397%" y="437" width="0.0855%" height="15" fill="rgb(221,11,5)" fg:x="777517" fg:w="1105"/><text x="60.3897%" y="447.50"></text></g><g><title>finish_task_switch (1,346 samples, 0.10%)</title><rect x="60.1258%" y="485" width="0.1041%" height="15" fill="rgb(220,148,13)" fg:x="777338" fg:w="1346"/><text x="60.3758%" y="495.50"></text></g><g><title>pick_next_task_fair (153 samples, 0.01%)</title><rect x="60.2299%" y="485" width="0.0118%" height="15" fill="rgb(210,16,3)" fg:x="778684" fg:w="153"/><text x="60.4799%" y="495.50"></text></g><g><title>psi_task_change (519 samples, 0.04%)</title><rect x="60.2515%" y="485" width="0.0401%" height="15" fill="rgb(236,80,2)" fg:x="778963" fg:w="519"/><text x="60.5015%" y="495.50"></text></g><g><title>psi_group_change (448 samples, 0.03%)</title><rect x="60.2570%" y="469" width="0.0347%" height="15" fill="rgb(239,129,19)" fg:x="779034" fg:w="448"/><text x="60.5070%" y="479.50"></text></g><g><title>__btrfs_tree_lock (14,352 samples, 1.11%)</title><rect x="59.1961%" y="533" width="1.1101%" height="15" fill="rgb(220,106,35)" fg:x="765318" fg:w="14352"/><text x="59.4461%" y="543.50"></text></g><g><title>schedule (3,370 samples, 0.26%)</title><rect x="60.0455%" y="517" width="0.2607%" height="15" fill="rgb(252,139,45)" fg:x="776300" fg:w="3370"/><text x="60.2955%" y="527.50"></text></g><g><title>__schedule (3,315 samples, 0.26%)</title><rect x="60.0498%" y="501" width="0.2564%" height="15" fill="rgb(229,8,36)" fg:x="776355" fg:w="3315"/><text x="60.2998%" y="511.50"></text></g><g><title>btrfs_lock_root_node (14,686 samples, 1.14%)</title><rect x="59.1942%" y="549" width="1.1359%" height="15" fill="rgb(230,126,33)" fg:x="765294" fg:w="14686"/><text x="59.4442%" y="559.50"></text></g><g><title>btrfs_root_node (309 samples, 0.02%)</title><rect x="60.3063%" y="533" width="0.0239%" height="15" fill="rgb(239,140,21)" fg:x="779671" fg:w="309"/><text x="60.5563%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (281 samples, 0.02%)</title><rect x="60.3306%" y="549" width="0.0217%" height="15" fill="rgb(254,104,9)" fg:x="779986" fg:w="281"/><text x="60.5806%" y="559.50"></text></g><g><title>_raw_write_lock (289 samples, 0.02%)</title><rect x="60.3584%" y="533" width="0.0224%" height="15" fill="rgb(239,52,14)" fg:x="780345" fg:w="289"/><text x="60.6084%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (2,209 samples, 0.17%)</title><rect x="60.3524%" y="549" width="0.1709%" height="15" fill="rgb(208,227,44)" fg:x="780267" fg:w="2209"/><text x="60.6024%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (1,840 samples, 0.14%)</title><rect x="60.3809%" y="533" width="0.1423%" height="15" fill="rgb(246,18,19)" fg:x="780636" fg:w="1840"/><text x="60.6309%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (337 samples, 0.03%)</title><rect x="60.5239%" y="549" width="0.0261%" height="15" fill="rgb(235,228,25)" fg:x="782484" fg:w="337"/><text x="60.7739%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (3,913 samples, 0.30%)</title><rect x="60.5499%" y="549" width="0.3027%" height="15" fill="rgb(240,156,20)" fg:x="782821" fg:w="3913"/><text x="60.7999%" y="559.50"></text></g><g><title>btrfs_buffer_uptodate (609 samples, 0.05%)</title><rect x="60.8869%" y="533" width="0.0471%" height="15" fill="rgb(224,8,20)" fg:x="787177" fg:w="609"/><text x="61.1369%" y="543.50"></text></g><g><title>verify_parent_transid (547 samples, 0.04%)</title><rect x="60.8917%" y="517" width="0.0423%" height="15" fill="rgb(214,12,52)" fg:x="787239" fg:w="547"/><text x="61.1417%" y="527.50"></text></g><g><title>btrfs_get_64 (500 samples, 0.04%)</title><rect x="60.9340%" y="533" width="0.0387%" height="15" fill="rgb(211,220,47)" fg:x="787786" fg:w="500"/><text x="61.1840%" y="543.50"></text></g><g><title>btrfs_verify_level_key (141 samples, 0.01%)</title><rect x="60.9769%" y="533" width="0.0109%" height="15" fill="rgb(250,173,5)" fg:x="788341" fg:w="141"/><text x="61.2269%" y="543.50"></text></g><g><title>__radix_tree_lookup (1,843 samples, 0.14%)</title><rect x="61.0744%" y="517" width="0.1426%" height="15" fill="rgb(250,125,52)" fg:x="789602" fg:w="1843"/><text x="61.3244%" y="527.50"></text></g><g><title>mark_page_accessed (955 samples, 0.07%)</title><rect x="61.2360%" y="501" width="0.0739%" height="15" fill="rgb(209,133,18)" fg:x="791691" fg:w="955"/><text x="61.4860%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (1,195 samples, 0.09%)</title><rect x="61.2177%" y="517" width="0.0924%" height="15" fill="rgb(216,173,22)" fg:x="791454" fg:w="1195"/><text x="61.4677%" y="527.50"></text></g><g><title>find_extent_buffer (4,184 samples, 0.32%)</title><rect x="60.9878%" y="533" width="0.3236%" height="15" fill="rgb(205,3,22)" fg:x="788482" fg:w="4184"/><text x="61.2378%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (6,478 samples, 0.50%)</title><rect x="60.8526%" y="549" width="0.5011%" height="15" fill="rgb(248,22,20)" fg:x="786734" fg:w="6478"/><text x="61.1026%" y="559.50"></text></g><g><title>read_extent_buffer (546 samples, 0.04%)</title><rect x="61.3114%" y="533" width="0.0422%" height="15" fill="rgb(233,6,29)" fg:x="792666" fg:w="546"/><text x="61.5614%" y="543.50"></text></g><g><title>__wake_up_common_lock (130 samples, 0.01%)</title><rect x="61.3986%" y="533" width="0.0101%" height="15" fill="rgb(240,22,54)" fg:x="793793" fg:w="130"/><text x="61.6486%" y="543.50"></text></g><g><title>btrfs_search_slot (45,451 samples, 3.52%)</title><rect x="57.9045%" y="565" width="3.5156%" height="15" fill="rgb(231,133,32)" fg:x="748620" fg:w="45451"/><text x="58.1545%" y="575.50">btr..</text></g><g><title>unlock_up (842 samples, 0.07%)</title><rect x="61.3550%" y="549" width="0.0651%" height="15" fill="rgb(248,193,4)" fg:x="793229" fg:w="842"/><text x="61.6050%" y="559.50"></text></g><g><title>btrfs_tree_unlock (141 samples, 0.01%)</title><rect x="61.4092%" y="533" width="0.0109%" height="15" fill="rgb(211,178,46)" fg:x="793930" fg:w="141"/><text x="61.6592%" y="543.50"></text></g><g><title>__schedule (286 samples, 0.02%)</title><rect x="61.4683%" y="517" width="0.0221%" height="15" fill="rgb(224,5,42)" fg:x="794694" fg:w="286"/><text x="61.7183%" y="527.50"></text></g><g><title>_cond_resched (374 samples, 0.03%)</title><rect x="61.4641%" y="533" width="0.0289%" height="15" fill="rgb(239,176,25)" fg:x="794640" fg:w="374"/><text x="61.7141%" y="543.50"></text></g><g><title>kmem_cache_alloc (938 samples, 0.07%)</title><rect x="61.4207%" y="565" width="0.0726%" height="15" fill="rgb(245,187,50)" fg:x="794079" fg:w="938"/><text x="61.6707%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (476 samples, 0.04%)</title><rect x="61.4565%" y="549" width="0.0368%" height="15" fill="rgb(248,24,15)" fg:x="794541" fg:w="476"/><text x="61.7065%" y="559.50"></text></g><g><title>btrfs_del_inode_ref (75,005 samples, 5.80%)</title><rect x="55.7243%" y="581" width="5.8015%" height="15" fill="rgb(205,166,13)" fg:x="720433" fg:w="75005"/><text x="55.9743%" y="591.50">btrfs_d..</text></g><g><title>kmem_cache_free (421 samples, 0.03%)</title><rect x="61.4933%" y="565" width="0.0326%" height="15" fill="rgb(208,114,23)" fg:x="795017" fg:w="421"/><text x="61.7433%" y="575.50"></text></g><g><title>_raw_spin_lock_irqsave (142 samples, 0.01%)</title><rect x="61.8642%" y="453" width="0.0110%" height="15" fill="rgb(239,127,18)" fg:x="799813" fg:w="142"/><text x="62.1142%" y="463.50"></text></g><g><title>select_task_rq_fair (539 samples, 0.04%)</title><rect x="61.8765%" y="453" width="0.0417%" height="15" fill="rgb(219,154,28)" fg:x="799972" fg:w="539"/><text x="62.1265%" y="463.50"></text></g><g><title>update_cfs_rq_h_load (193 samples, 0.01%)</title><rect x="61.9033%" y="437" width="0.0149%" height="15" fill="rgb(225,157,23)" fg:x="800318" fg:w="193"/><text x="62.1533%" y="447.50"></text></g><g><title>enqueue_entity (639 samples, 0.05%)</title><rect x="61.9338%" y="421" width="0.0494%" height="15" fill="rgb(219,8,6)" fg:x="800712" fg:w="639"/><text x="62.1838%" y="431.50"></text></g><g><title>update_load_avg (222 samples, 0.02%)</title><rect x="61.9660%" y="405" width="0.0172%" height="15" fill="rgb(212,47,6)" fg:x="801129" fg:w="222"/><text x="62.2160%" y="415.50"></text></g><g><title>enqueue_task_fair (810 samples, 0.06%)</title><rect x="61.9235%" y="437" width="0.0627%" height="15" fill="rgb(224,190,4)" fg:x="800579" fg:w="810"/><text x="62.1735%" y="447.50"></text></g><g><title>ttwu_do_activate (1,629 samples, 0.13%)</title><rect x="61.9201%" y="453" width="0.1260%" height="15" fill="rgb(239,183,29)" fg:x="800535" fg:w="1629"/><text x="62.1701%" y="463.50"></text></g><g><title>psi_task_change (773 samples, 0.06%)</title><rect x="61.9863%" y="437" width="0.0598%" height="15" fill="rgb(213,57,7)" fg:x="801391" fg:w="773"/><text x="62.2363%" y="447.50"></text></g><g><title>psi_group_change (695 samples, 0.05%)</title><rect x="61.9923%" y="421" width="0.0538%" height="15" fill="rgb(216,148,1)" fg:x="801469" fg:w="695"/><text x="62.2423%" y="431.50"></text></g><g><title>ttwu_do_wakeup (183 samples, 0.01%)</title><rect x="62.0461%" y="453" width="0.0142%" height="15" fill="rgb(236,182,29)" fg:x="802164" fg:w="183"/><text x="62.2961%" y="463.50"></text></g><g><title>check_preempt_curr (173 samples, 0.01%)</title><rect x="62.0469%" y="437" width="0.0134%" height="15" fill="rgb(244,120,48)" fg:x="802174" fg:w="173"/><text x="62.2969%" y="447.50"></text></g><g><title>ttwu_queue_wakelist (195 samples, 0.02%)</title><rect x="62.0602%" y="453" width="0.0151%" height="15" fill="rgb(206,71,34)" fg:x="802347" fg:w="195"/><text x="62.3102%" y="463.50"></text></g><g><title>__wake_up_common (6,402 samples, 0.50%)</title><rect x="61.5919%" y="501" width="0.4952%" height="15" fill="rgb(242,32,6)" fg:x="796292" fg:w="6402"/><text x="61.8419%" y="511.50"></text></g><g><title>autoremove_wake_function (6,208 samples, 0.48%)</title><rect x="61.6069%" y="485" width="0.4802%" height="15" fill="rgb(241,35,3)" fg:x="796486" fg:w="6208"/><text x="61.8569%" y="495.50"></text></g><g><title>try_to_wake_up (6,122 samples, 0.47%)</title><rect x="61.6135%" y="469" width="0.4735%" height="15" fill="rgb(222,62,19)" fg:x="796572" fg:w="6122"/><text x="61.8635%" y="479.50"></text></g><g><title>update_rq_clock (152 samples, 0.01%)</title><rect x="62.0753%" y="453" width="0.0118%" height="15" fill="rgb(223,110,41)" fg:x="802542" fg:w="152"/><text x="62.3253%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (2,773 samples, 0.21%)</title><rect x="62.0871%" y="501" width="0.2145%" height="15" fill="rgb(208,224,4)" fg:x="802694" fg:w="2773"/><text x="62.3371%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,697 samples, 0.21%)</title><rect x="62.0930%" y="485" width="0.2086%" height="15" fill="rgb(241,137,19)" fg:x="802770" fg:w="2697"/><text x="62.3430%" y="495.50"></text></g><g><title>__wake_up_common_lock (9,284 samples, 0.72%)</title><rect x="61.5894%" y="517" width="0.7181%" height="15" fill="rgb(244,24,17)" fg:x="796260" fg:w="9284"/><text x="61.8394%" y="527.50"></text></g><g><title>btrfs_tree_unlock (411 samples, 0.03%)</title><rect x="62.3078%" y="517" width="0.0318%" height="15" fill="rgb(245,178,49)" fg:x="805547" fg:w="411"/><text x="62.5578%" y="527.50"></text></g><g><title>_raw_spin_lock (224 samples, 0.02%)</title><rect x="62.3621%" y="501" width="0.0173%" height="15" fill="rgb(219,160,38)" fg:x="806250" fg:w="224"/><text x="62.6121%" y="511.50"></text></g><g><title>free_extent_buffer.part.0 (505 samples, 0.04%)</title><rect x="62.3405%" y="517" width="0.0391%" height="15" fill="rgb(228,137,14)" fg:x="805970" fg:w="505"/><text x="62.5905%" y="527.50"></text></g><g><title>btrfs_free_path (10,844 samples, 0.84%)</title><rect x="61.5636%" y="549" width="0.8388%" height="15" fill="rgb(237,134,11)" fg:x="795926" fg:w="10844"/><text x="61.8136%" y="559.50"></text></g><g><title>btrfs_release_path (10,770 samples, 0.83%)</title><rect x="61.5693%" y="533" width="0.8330%" height="15" fill="rgb(211,126,44)" fg:x="796000" fg:w="10770"/><text x="61.8193%" y="543.50"></text></g><g><title>release_extent_buffer (295 samples, 0.02%)</title><rect x="62.3795%" y="517" width="0.0228%" height="15" fill="rgb(226,171,33)" fg:x="806475" fg:w="295"/><text x="62.6295%" y="527.50"></text></g><g><title>_raw_read_lock (384 samples, 0.03%)</title><rect x="62.5301%" y="501" width="0.0297%" height="15" fill="rgb(253,99,13)" fg:x="808422" fg:w="384"/><text x="62.7801%" y="511.50"></text></g><g><title>finish_wait (1,272 samples, 0.10%)</title><rect x="62.5612%" y="501" width="0.0984%" height="15" fill="rgb(244,48,7)" fg:x="808824" fg:w="1272"/><text x="62.8112%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,214 samples, 0.09%)</title><rect x="62.5657%" y="485" width="0.0939%" height="15" fill="rgb(244,217,54)" fg:x="808882" fg:w="1214"/><text x="62.8157%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,134 samples, 0.09%)</title><rect x="62.5719%" y="469" width="0.0877%" height="15" fill="rgb(224,15,18)" fg:x="808962" fg:w="1134"/><text x="62.8219%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (3,213 samples, 0.25%)</title><rect x="62.6832%" y="485" width="0.2485%" height="15" fill="rgb(244,99,12)" fg:x="810401" fg:w="3213"/><text x="62.9332%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,024 samples, 0.23%)</title><rect x="62.6978%" y="469" width="0.2339%" height="15" fill="rgb(233,226,8)" fg:x="810590" fg:w="3024"/><text x="62.9478%" y="479.50"></text></g><g><title>prepare_to_wait_event (3,573 samples, 0.28%)</title><rect x="62.6599%" y="501" width="0.2764%" height="15" fill="rgb(229,211,3)" fg:x="810100" fg:w="3573"/><text x="62.9099%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (350 samples, 0.03%)</title><rect x="62.9363%" y="501" width="0.0271%" height="15" fill="rgb(216,140,21)" fg:x="813673" fg:w="350"/><text x="63.1863%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (135 samples, 0.01%)</title><rect x="62.9529%" y="485" width="0.0104%" height="15" fill="rgb(234,122,30)" fg:x="813888" fg:w="135"/><text x="63.2029%" y="495.50"></text></g><g><title>__perf_event_task_sched_out (138 samples, 0.01%)</title><rect x="62.9869%" y="469" width="0.0107%" height="15" fill="rgb(236,25,46)" fg:x="814327" fg:w="138"/><text x="63.2369%" y="479.50"></text></g><g><title>update_curr (234 samples, 0.02%)</title><rect x="63.0249%" y="437" width="0.0181%" height="15" fill="rgb(217,52,54)" fg:x="814819" fg:w="234"/><text x="63.2749%" y="447.50"></text></g><g><title>dequeue_entity (684 samples, 0.05%)</title><rect x="63.0060%" y="453" width="0.0529%" height="15" fill="rgb(222,29,26)" fg:x="814574" fg:w="684"/><text x="63.2560%" y="463.50"></text></g><g><title>update_load_avg (205 samples, 0.02%)</title><rect x="63.0430%" y="437" width="0.0159%" height="15" fill="rgb(216,177,29)" fg:x="815053" fg:w="205"/><text x="63.2930%" y="447.50"></text></g><g><title>dequeue_task_fair (800 samples, 0.06%)</title><rect x="63.0003%" y="469" width="0.0619%" height="15" fill="rgb(247,136,51)" fg:x="814501" fg:w="800"/><text x="63.2503%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (464 samples, 0.04%)</title><rect x="63.0699%" y="453" width="0.0359%" height="15" fill="rgb(231,47,47)" fg:x="815401" fg:w="464"/><text x="63.3199%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (434 samples, 0.03%)</title><rect x="63.0723%" y="437" width="0.0336%" height="15" fill="rgb(211,192,36)" fg:x="815431" fg:w="434"/><text x="63.3223%" y="447.50"></text></g><g><title>native_write_msr (419 samples, 0.03%)</title><rect x="63.0734%" y="421" width="0.0324%" height="15" fill="rgb(229,156,32)" fg:x="815446" fg:w="419"/><text x="63.3234%" y="431.50"></text></g><g><title>finish_task_switch (601 samples, 0.05%)</title><rect x="63.0622%" y="469" width="0.0465%" height="15" fill="rgb(248,213,20)" fg:x="815301" fg:w="601"/><text x="63.3122%" y="479.50"></text></g><g><title>pick_next_task_fair (164 samples, 0.01%)</title><rect x="63.1087%" y="469" width="0.0127%" height="15" fill="rgb(217,64,7)" fg:x="815902" fg:w="164"/><text x="63.3587%" y="479.50"></text></g><g><title>pick_next_task_idle (130 samples, 0.01%)</title><rect x="63.1214%" y="469" width="0.0101%" height="15" fill="rgb(232,142,8)" fg:x="816066" fg:w="130"/><text x="63.3714%" y="479.50"></text></g><g><title>psi_task_change (643 samples, 0.05%)</title><rect x="63.1314%" y="469" width="0.0497%" height="15" fill="rgb(224,92,44)" fg:x="816196" fg:w="643"/><text x="63.3814%" y="479.50"></text></g><g><title>psi_group_change (543 samples, 0.04%)</title><rect x="63.1392%" y="453" width="0.0420%" height="15" fill="rgb(214,169,17)" fg:x="816296" fg:w="543"/><text x="63.3892%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (8,920 samples, 0.69%)</title><rect x="62.5048%" y="517" width="0.6899%" height="15" fill="rgb(210,59,37)" fg:x="808095" fg:w="8920"/><text x="62.7548%" y="527.50"></text></g><g><title>schedule (2,992 samples, 0.23%)</title><rect x="62.9634%" y="501" width="0.2314%" height="15" fill="rgb(214,116,48)" fg:x="814023" fg:w="2992"/><text x="63.2134%" y="511.50"></text></g><g><title>__schedule (2,940 samples, 0.23%)</title><rect x="62.9674%" y="485" width="0.2274%" height="15" fill="rgb(244,191,6)" fg:x="814075" fg:w="2940"/><text x="63.2174%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (9,818 samples, 0.76%)</title><rect x="62.4989%" y="533" width="0.7594%" height="15" fill="rgb(241,50,52)" fg:x="808018" fg:w="9818"/><text x="62.7489%" y="543.50"></text></g><g><title>btrfs_root_node (820 samples, 0.06%)</title><rect x="63.1949%" y="517" width="0.0634%" height="15" fill="rgb(236,75,39)" fg:x="817016" fg:w="820"/><text x="63.4449%" y="527.50"></text></g><g><title>btrfs_get_64 (187 samples, 0.01%)</title><rect x="63.2894%" y="517" width="0.0145%" height="15" fill="rgb(236,99,0)" fg:x="818238" fg:w="187"/><text x="63.5394%" y="527.50"></text></g><g><title>balance_level (581 samples, 0.04%)</title><rect x="63.2590%" y="533" width="0.0449%" height="15" fill="rgb(207,202,15)" fg:x="817845" fg:w="581"/><text x="63.5090%" y="543.50"></text></g><g><title>_raw_write_lock (263 samples, 0.02%)</title><rect x="63.3449%" y="501" width="0.0203%" height="15" fill="rgb(233,207,14)" fg:x="818956" fg:w="263"/><text x="63.5949%" y="511.50"></text></g><g><title>finish_wait (951 samples, 0.07%)</title><rect x="63.3654%" y="501" width="0.0736%" height="15" fill="rgb(226,27,51)" fg:x="819221" fg:w="951"/><text x="63.6154%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (916 samples, 0.07%)</title><rect x="63.3681%" y="485" width="0.0709%" height="15" fill="rgb(206,104,42)" fg:x="819256" fg:w="916"/><text x="63.6181%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (859 samples, 0.07%)</title><rect x="63.3725%" y="469" width="0.0664%" height="15" fill="rgb(212,225,4)" fg:x="819313" fg:w="859"/><text x="63.6225%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (2,118 samples, 0.16%)</title><rect x="63.4533%" y="485" width="0.1638%" height="15" fill="rgb(233,96,42)" fg:x="820357" fg:w="2118"/><text x="63.7033%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,033 samples, 0.16%)</title><rect x="63.4599%" y="469" width="0.1572%" height="15" fill="rgb(229,21,32)" fg:x="820442" fg:w="2033"/><text x="63.7099%" y="479.50"></text></g><g><title>prepare_to_wait_event (2,331 samples, 0.18%)</title><rect x="63.4395%" y="501" width="0.1803%" height="15" fill="rgb(226,216,24)" fg:x="820179" fg:w="2331"/><text x="63.6895%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (384 samples, 0.03%)</title><rect x="63.6198%" y="501" width="0.0297%" height="15" fill="rgb(221,163,17)" fg:x="822510" fg:w="384"/><text x="63.8698%" y="511.50"></text></g><g><title>dequeue_entity (325 samples, 0.03%)</title><rect x="63.6683%" y="453" width="0.0251%" height="15" fill="rgb(216,216,42)" fg:x="823137" fg:w="325"/><text x="63.9183%" y="463.50"></text></g><g><title>dequeue_task_fair (370 samples, 0.03%)</title><rect x="63.6654%" y="469" width="0.0286%" height="15" fill="rgb(240,118,7)" fg:x="823100" fg:w="370"/><text x="63.9154%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (164 samples, 0.01%)</title><rect x="63.6989%" y="453" width="0.0127%" height="15" fill="rgb(221,67,37)" fg:x="823532" fg:w="164"/><text x="63.9489%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (150 samples, 0.01%)</title><rect x="63.6999%" y="437" width="0.0116%" height="15" fill="rgb(241,32,44)" fg:x="823546" fg:w="150"/><text x="63.9499%" y="447.50"></text></g><g><title>native_write_msr (142 samples, 0.01%)</title><rect x="63.7006%" y="421" width="0.0110%" height="15" fill="rgb(235,204,43)" fg:x="823554" fg:w="142"/><text x="63.9506%" y="431.50"></text></g><g><title>finish_task_switch (237 samples, 0.02%)</title><rect x="63.6941%" y="469" width="0.0183%" height="15" fill="rgb(213,116,10)" fg:x="823470" fg:w="237"/><text x="63.9441%" y="479.50"></text></g><g><title>psi_task_change (297 samples, 0.02%)</title><rect x="63.7218%" y="469" width="0.0230%" height="15" fill="rgb(239,15,48)" fg:x="823828" fg:w="297"/><text x="63.9718%" y="479.50"></text></g><g><title>psi_group_change (252 samples, 0.02%)</title><rect x="63.7252%" y="453" width="0.0195%" height="15" fill="rgb(207,123,36)" fg:x="823873" fg:w="252"/><text x="63.9752%" y="463.50"></text></g><g><title>__btrfs_tree_lock (5,639 samples, 0.44%)</title><rect x="63.3149%" y="517" width="0.4362%" height="15" fill="rgb(209,103,30)" fg:x="818568" fg:w="5639"/><text x="63.5649%" y="527.50"></text></g><g><title>schedule (1,313 samples, 0.10%)</title><rect x="63.6495%" y="501" width="0.1016%" height="15" fill="rgb(238,100,19)" fg:x="822894" fg:w="1313"/><text x="63.8995%" y="511.50"></text></g><g><title>__schedule (1,281 samples, 0.10%)</title><rect x="63.6520%" y="485" width="0.0991%" height="15" fill="rgb(244,30,14)" fg:x="822926" fg:w="1281"/><text x="63.9020%" y="495.50"></text></g><g><title>btrfs_lock_root_node (5,978 samples, 0.46%)</title><rect x="63.3124%" y="533" width="0.4624%" height="15" fill="rgb(249,174,6)" fg:x="818535" fg:w="5978"/><text x="63.5624%" y="543.50"></text></g><g><title>btrfs_root_node (306 samples, 0.02%)</title><rect x="63.7511%" y="517" width="0.0237%" height="15" fill="rgb(235,213,41)" fg:x="824207" fg:w="306"/><text x="64.0011%" y="527.50"></text></g><g><title>btrfs_set_lock_blocking_write (167 samples, 0.01%)</title><rect x="63.7977%" y="517" width="0.0129%" height="15" fill="rgb(213,118,6)" fg:x="824810" fg:w="167"/><text x="64.0477%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (465 samples, 0.04%)</title><rect x="63.7747%" y="533" width="0.0360%" height="15" fill="rgb(235,44,51)" fg:x="824513" fg:w="465"/><text x="64.0247%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (258 samples, 0.02%)</title><rect x="63.8107%" y="533" width="0.0200%" height="15" fill="rgb(217,9,53)" fg:x="824978" fg:w="258"/><text x="64.0607%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (232 samples, 0.02%)</title><rect x="63.8307%" y="533" width="0.0179%" height="15" fill="rgb(237,172,34)" fg:x="825236" fg:w="232"/><text x="64.0807%" y="543.50"></text></g><g><title>_raw_write_lock (188 samples, 0.01%)</title><rect x="63.8341%" y="517" width="0.0145%" height="15" fill="rgb(206,206,11)" fg:x="825280" fg:w="188"/><text x="64.0841%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (338 samples, 0.03%)</title><rect x="63.8491%" y="533" width="0.0261%" height="15" fill="rgb(214,149,29)" fg:x="825475" fg:w="338"/><text x="64.0991%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (1,610 samples, 0.12%)</title><rect x="63.8753%" y="533" width="0.1245%" height="15" fill="rgb(208,123,3)" fg:x="825813" fg:w="1610"/><text x="64.1253%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (260 samples, 0.02%)</title><rect x="64.0247%" y="517" width="0.0201%" height="15" fill="rgb(229,126,4)" fg:x="827744" fg:w="260"/><text x="64.2747%" y="527.50"></text></g><g><title>verify_parent_transid (196 samples, 0.02%)</title><rect x="64.0296%" y="501" width="0.0152%" height="15" fill="rgb(222,92,36)" fg:x="827808" fg:w="196"/><text x="64.2796%" y="511.50"></text></g><g><title>btrfs_get_64 (322 samples, 0.02%)</title><rect x="64.0448%" y="517" width="0.0249%" height="15" fill="rgb(216,39,41)" fg:x="828004" fg:w="322"/><text x="64.2948%" y="527.50"></text></g><g><title>btrfs_verify_level_key (143 samples, 0.01%)</title><rect x="64.0708%" y="517" width="0.0111%" height="15" fill="rgb(253,127,28)" fg:x="828340" fg:w="143"/><text x="64.3208%" y="527.50"></text></g><g><title>__radix_tree_lookup (879 samples, 0.07%)</title><rect x="64.1239%" y="501" width="0.0680%" height="15" fill="rgb(249,152,51)" fg:x="829027" fg:w="879"/><text x="64.3739%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (526 samples, 0.04%)</title><rect x="64.1921%" y="501" width="0.0407%" height="15" fill="rgb(209,123,42)" fg:x="829909" fg:w="526"/><text x="64.4421%" y="511.50"></text></g><g><title>mark_page_accessed (389 samples, 0.03%)</title><rect x="64.2027%" y="485" width="0.0301%" height="15" fill="rgb(241,118,22)" fg:x="830046" fg:w="389"/><text x="64.4527%" y="495.50"></text></g><g><title>find_extent_buffer (1,968 samples, 0.15%)</title><rect x="64.0818%" y="517" width="0.1522%" height="15" fill="rgb(208,25,7)" fg:x="828483" fg:w="1968"/><text x="64.3318%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (3,367 samples, 0.26%)</title><rect x="63.9998%" y="533" width="0.2604%" height="15" fill="rgb(243,144,39)" fg:x="827423" fg:w="3367"/><text x="64.2498%" y="543.50"></text></g><g><title>read_extent_buffer (339 samples, 0.03%)</title><rect x="64.2340%" y="517" width="0.0262%" height="15" fill="rgb(250,50,5)" fg:x="830451" fg:w="339"/><text x="64.4840%" y="527.50"></text></g><g><title>btrfs_search_slot (24,610 samples, 1.90%)</title><rect x="62.4023%" y="549" width="1.9035%" height="15" fill="rgb(207,67,11)" fg:x="806770" fg:w="24610"/><text x="62.6523%" y="559.50">b..</text></g><g><title>unlock_up (356 samples, 0.03%)</title><rect x="64.2784%" y="533" width="0.0275%" height="15" fill="rgb(245,204,40)" fg:x="831024" fg:w="356"/><text x="64.5284%" y="543.50"></text></g><g><title>crc32c (362 samples, 0.03%)</title><rect x="64.3059%" y="549" width="0.0280%" height="15" fill="rgb(238,228,24)" fg:x="831380" fg:w="362"/><text x="64.5559%" y="559.50"></text></g><g><title>crypto_shash_update (231 samples, 0.02%)</title><rect x="64.3160%" y="533" width="0.0179%" height="15" fill="rgb(217,116,22)" fg:x="831511" fg:w="231"/><text x="64.5660%" y="543.50"></text></g><g><title>memset_erms (198 samples, 0.02%)</title><rect x="64.3653%" y="533" width="0.0153%" height="15" fill="rgb(234,98,12)" fg:x="832148" fg:w="198"/><text x="64.6153%" y="543.50"></text></g><g><title>kmem_cache_alloc (803 samples, 0.06%)</title><rect x="64.3339%" y="549" width="0.0621%" height="15" fill="rgb(242,170,50)" fg:x="831742" fg:w="803"/><text x="64.5839%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (199 samples, 0.02%)</title><rect x="64.3806%" y="533" width="0.0154%" height="15" fill="rgb(235,7,5)" fg:x="832346" fg:w="199"/><text x="64.6306%" y="543.50"></text></g><g><title>btrfs_del_inode_ref (37,412 samples, 2.89%)</title><rect x="61.5456%" y="565" width="2.8938%" height="15" fill="rgb(241,114,28)" fg:x="795694" fg:w="37412"/><text x="61.7956%" y="575.50">bt..</text></g><g><title>kmem_cache_free (561 samples, 0.04%)</title><rect x="64.3960%" y="549" width="0.0434%" height="15" fill="rgb(246,112,42)" fg:x="832545" fg:w="561"/><text x="64.6460%" y="559.50"></text></g><g><title>btrfs_end_log_trans (217 samples, 0.02%)</title><rect x="64.4394%" y="565" width="0.0168%" height="15" fill="rgb(248,228,14)" fg:x="833106" fg:w="217"/><text x="64.6894%" y="575.50"></text></g><g><title>mutex_lock (362 samples, 0.03%)</title><rect x="64.4562%" y="565" width="0.0280%" height="15" fill="rgb(208,133,18)" fg:x="833323" fg:w="362"/><text x="64.7062%" y="575.50"></text></g><g><title>btrfs_del_inode_ref_in_log (38,472 samples, 2.98%)</title><rect x="61.5258%" y="581" width="2.9757%" height="15" fill="rgb(207,35,49)" fg:x="795438" fg:w="38472"/><text x="61.7758%" y="591.50">btr..</text></g><g><title>mutex_unlock (225 samples, 0.02%)</title><rect x="64.4842%" y="565" width="0.0174%" height="15" fill="rgb(205,68,36)" fg:x="833685" fg:w="225"/><text x="64.7342%" y="575.50"></text></g><g><title>__btrfs_add_free_space (209 samples, 0.02%)</title><rect x="64.7247%" y="533" width="0.0162%" height="15" fill="rgb(245,62,40)" fg:x="836795" fg:w="209"/><text x="64.9747%" y="543.50"></text></g><g><title>btrfs_free_tree_block (421 samples, 0.03%)</title><rect x="64.7243%" y="549" width="0.0326%" height="15" fill="rgb(228,27,24)" fg:x="836790" fg:w="421"/><text x="64.9743%" y="559.50"></text></g><g><title>btrfs_del_leaf (509 samples, 0.04%)</title><rect x="64.7243%" y="565" width="0.0394%" height="15" fill="rgb(253,19,12)" fg:x="836790" fg:w="509"/><text x="64.9743%" y="575.50"></text></g><g><title>btrfs_get_32 (451 samples, 0.03%)</title><rect x="64.7637%" y="565" width="0.0349%" height="15" fill="rgb(232,28,20)" fg:x="837299" fg:w="451"/><text x="65.0137%" y="575.50"></text></g><g><title>check_setget_bounds.isra.0 (1,552 samples, 0.12%)</title><rect x="65.5713%" y="549" width="0.1200%" height="15" fill="rgb(218,35,51)" fg:x="847740" fg:w="1552"/><text x="65.8213%" y="559.50"></text></g><g><title>btrfs_get_token_32 (11,544 samples, 0.89%)</title><rect x="64.7986%" y="565" width="0.8929%" height="15" fill="rgb(212,90,40)" fg:x="837750" fg:w="11544"/><text x="65.0486%" y="575.50"></text></g><g><title>btrfs_mark_buffer_dirty (651 samples, 0.05%)</title><rect x="65.6915%" y="565" width="0.0504%" height="15" fill="rgb(220,172,12)" fg:x="849294" fg:w="651"/><text x="65.9415%" y="575.50"></text></g><g><title>set_extent_buffer_dirty (203 samples, 0.02%)</title><rect x="65.7262%" y="549" width="0.0157%" height="15" fill="rgb(226,159,20)" fg:x="849742" fg:w="203"/><text x="65.9762%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (1,258 samples, 0.10%)</title><rect x="66.2952%" y="549" width="0.0973%" height="15" fill="rgb(234,205,16)" fg:x="857099" fg:w="1258"/><text x="66.5452%" y="559.50"></text></g><g><title>btrfs_set_token_32 (8,395 samples, 0.65%)</title><rect x="65.7433%" y="565" width="0.6493%" height="15" fill="rgb(207,9,39)" fg:x="849963" fg:w="8395"/><text x="65.9933%" y="575.50"></text></g><g><title>leaf_space_used (418 samples, 0.03%)</title><rect x="66.3941%" y="565" width="0.0323%" height="15" fill="rgb(249,143,15)" fg:x="858378" fg:w="418"/><text x="66.6441%" y="575.50"></text></g><g><title>btrfs_get_32 (297 samples, 0.02%)</title><rect x="66.4035%" y="549" width="0.0230%" height="15" fill="rgb(253,133,29)" fg:x="858499" fg:w="297"/><text x="66.6535%" y="559.50"></text></g><g><title>copy_pages (176 samples, 0.01%)</title><rect x="66.4421%" y="549" width="0.0136%" height="15" fill="rgb(221,187,0)" fg:x="858998" fg:w="176"/><text x="66.6921%" y="559.50"></text></g><g><title>memcpy_extent_buffer (1,402 samples, 0.11%)</title><rect x="66.4265%" y="565" width="0.1084%" height="15" fill="rgb(205,204,26)" fg:x="858796" fg:w="1402"/><text x="66.6765%" y="575.50"></text></g><g><title>memmove (1,024 samples, 0.08%)</title><rect x="66.4557%" y="549" width="0.0792%" height="15" fill="rgb(224,68,54)" fg:x="859174" fg:w="1024"/><text x="66.7057%" y="559.50"></text></g><g><title>copy_pages (581 samples, 0.04%)</title><rect x="66.5656%" y="549" width="0.0449%" height="15" fill="rgb(209,67,4)" fg:x="860595" fg:w="581"/><text x="66.8156%" y="559.50"></text></g><g><title>memmove_extent_buffer (5,195 samples, 0.40%)</title><rect x="66.5349%" y="565" width="0.4018%" height="15" fill="rgb(228,229,18)" fg:x="860198" fg:w="5195"/><text x="66.7849%" y="575.50"></text></g><g><title>memmove (4,217 samples, 0.33%)</title><rect x="66.6106%" y="549" width="0.3262%" height="15" fill="rgb(231,89,13)" fg:x="861176" fg:w="4217"/><text x="66.8606%" y="559.50"></text></g><g><title>__push_leaf_left (307 samples, 0.02%)</title><rect x="66.9391%" y="549" width="0.0237%" height="15" fill="rgb(210,182,18)" fg:x="865423" fg:w="307"/><text x="67.1891%" y="559.50"></text></g><g><title>push_leaf_left (486 samples, 0.04%)</title><rect x="66.9367%" y="565" width="0.0376%" height="15" fill="rgb(240,105,2)" fg:x="865393" fg:w="486"/><text x="67.1867%" y="575.50"></text></g><g><title>__push_leaf_right (360 samples, 0.03%)</title><rect x="66.9755%" y="549" width="0.0278%" height="15" fill="rgb(207,170,50)" fg:x="865894" fg:w="360"/><text x="67.2255%" y="559.50"></text></g><g><title>push_leaf_right (561 samples, 0.04%)</title><rect x="66.9743%" y="565" width="0.0434%" height="15" fill="rgb(232,133,24)" fg:x="865879" fg:w="561"/><text x="67.2243%" y="575.50"></text></g><g><title>btrfs_del_items (32,574 samples, 2.52%)</title><rect x="64.5016%" y="581" width="2.5195%" height="15" fill="rgb(235,166,27)" fg:x="833910" fg:w="32574"/><text x="64.7516%" y="591.50">bt..</text></g><g><title>btrfs_comp_cpu_keys (476 samples, 0.04%)</title><rect x="67.0956%" y="549" width="0.0368%" height="15" fill="rgb(209,19,13)" fg:x="867447" fg:w="476"/><text x="67.3456%" y="559.50"></text></g><g><title>__btrfs_add_delayed_item (1,465 samples, 0.11%)</title><rect x="67.0425%" y="565" width="0.1133%" height="15" fill="rgb(226,79,39)" fg:x="866760" fg:w="1465"/><text x="67.2925%" y="575.50"></text></g><g><title>rb_insert_color (302 samples, 0.02%)</title><rect x="67.1324%" y="549" width="0.0234%" height="15" fill="rgb(222,163,10)" fg:x="867923" fg:w="302"/><text x="67.3824%" y="559.50"></text></g><g><title>__list_add_valid (258 samples, 0.02%)</title><rect x="67.1744%" y="549" width="0.0200%" height="15" fill="rgb(214,44,19)" fg:x="868465" fg:w="258"/><text x="67.4244%" y="559.50"></text></g><g><title>__list_del_entry_valid (189 samples, 0.01%)</title><rect x="67.1943%" y="549" width="0.0146%" height="15" fill="rgb(210,217,13)" fg:x="868723" fg:w="189"/><text x="67.4443%" y="559.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.02%)</title><rect x="67.2090%" y="549" width="0.0190%" height="15" fill="rgb(237,61,54)" fg:x="868913" fg:w="246"/><text x="67.4590%" y="559.50"></text></g><g><title>mutex_lock (140 samples, 0.01%)</title><rect x="67.2280%" y="549" width="0.0108%" height="15" fill="rgb(226,184,24)" fg:x="869159" fg:w="140"/><text x="67.4780%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,629 samples, 0.13%)</title><rect x="67.1558%" y="565" width="0.1260%" height="15" fill="rgb(223,226,4)" fg:x="868225" fg:w="1629"/><text x="67.4058%" y="575.50"></text></g><g><title>mutex_unlock (555 samples, 0.04%)</title><rect x="67.2389%" y="549" width="0.0429%" height="15" fill="rgb(210,26,41)" fg:x="869299" fg:w="555"/><text x="67.4889%" y="559.50"></text></g><g><title>mutex_spin_on_owner (617 samples, 0.05%)</title><rect x="67.2832%" y="549" width="0.0477%" height="15" fill="rgb(220,221,6)" fg:x="869872" fg:w="617"/><text x="67.5332%" y="559.50"></text></g><g><title>__schedule (147 samples, 0.01%)</title><rect x="67.3314%" y="517" width="0.0114%" height="15" fill="rgb(225,89,49)" fg:x="870495" fg:w="147"/><text x="67.5814%" y="527.50"></text></g><g><title>__mutex_lock.constprop.0 (789 samples, 0.06%)</title><rect x="67.2818%" y="565" width="0.0610%" height="15" fill="rgb(218,70,45)" fg:x="869854" fg:w="789"/><text x="67.5318%" y="575.50"></text></g><g><title>schedule_preempt_disabled (148 samples, 0.01%)</title><rect x="67.3314%" y="549" width="0.0114%" height="15" fill="rgb(238,166,21)" fg:x="870495" fg:w="148"/><text x="67.5814%" y="559.50"></text></g><g><title>schedule (148 samples, 0.01%)</title><rect x="67.3314%" y="533" width="0.0114%" height="15" fill="rgb(224,141,44)" fg:x="870495" fg:w="148"/><text x="67.5814%" y="543.50"></text></g><g><title>_raw_spin_lock (1,041 samples, 0.08%)</title><rect x="67.3682%" y="533" width="0.0805%" height="15" fill="rgb(230,12,49)" fg:x="870971" fg:w="1041"/><text x="67.6182%" y="543.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,351 samples, 0.10%)</title><rect x="67.3443%" y="565" width="0.1045%" height="15" fill="rgb(212,174,12)" fg:x="870662" fg:w="1351"/><text x="67.5943%" y="575.50"></text></g><g><title>btrfs_block_rsv_migrate (1,152 samples, 0.09%)</title><rect x="67.3597%" y="549" width="0.0891%" height="15" fill="rgb(246,67,9)" fg:x="870861" fg:w="1152"/><text x="67.6097%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (565 samples, 0.04%)</title><rect x="67.4488%" y="565" width="0.0437%" height="15" fill="rgb(239,35,23)" fg:x="872013" fg:w="565"/><text x="67.6988%" y="575.50"></text></g><g><title>btrfs_get_delayed_node (363 samples, 0.03%)</title><rect x="67.4644%" y="549" width="0.0281%" height="15" fill="rgb(211,167,0)" fg:x="872215" fg:w="363"/><text x="67.7144%" y="559.50"></text></g><g><title>kmem_cache_alloc_trace (870 samples, 0.07%)</title><rect x="67.4926%" y="565" width="0.0673%" height="15" fill="rgb(225,119,45)" fg:x="872579" fg:w="870"/><text x="67.7426%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (187 samples, 0.01%)</title><rect x="67.5454%" y="549" width="0.0145%" height="15" fill="rgb(210,162,6)" fg:x="873262" fg:w="187"/><text x="67.7954%" y="559.50"></text></g><g><title>__schedule (215 samples, 0.02%)</title><rect x="67.5898%" y="533" width="0.0166%" height="15" fill="rgb(208,118,35)" fg:x="873836" fg:w="215"/><text x="67.8398%" y="543.50"></text></g><g><title>_cond_resched (263 samples, 0.02%)</title><rect x="67.5869%" y="549" width="0.0203%" height="15" fill="rgb(239,4,53)" fg:x="873798" fg:w="263"/><text x="67.8369%" y="559.50"></text></g><g><title>mutex_lock (613 samples, 0.05%)</title><rect x="67.5599%" y="565" width="0.0474%" height="15" fill="rgb(213,130,21)" fg:x="873449" fg:w="613"/><text x="67.8099%" y="575.50"></text></g><g><title>btrfs_delete_delayed_dir_index (7,798 samples, 0.60%)</title><rect x="67.0211%" y="581" width="0.6032%" height="15" fill="rgb(235,148,0)" fg:x="866484" fg:w="7798"/><text x="67.2711%" y="591.50"></text></g><g><title>mutex_unlock (220 samples, 0.02%)</title><rect x="67.6073%" y="565" width="0.0170%" height="15" fill="rgb(244,224,18)" fg:x="874062" fg:w="220"/><text x="67.8573%" y="575.50"></text></g><g><title>btrfs_get_16 (192 samples, 0.01%)</title><rect x="67.6449%" y="565" width="0.0149%" height="15" fill="rgb(211,214,4)" fg:x="874548" fg:w="192"/><text x="67.8949%" y="575.50"></text></g><g><title>btrfs_delete_one_dir_name (598 samples, 0.05%)</title><rect x="67.6243%" y="581" width="0.0463%" height="15" fill="rgb(206,119,25)" fg:x="874282" fg:w="598"/><text x="67.8743%" y="591.50"></text></g><g><title>btrfs_get_32 (140 samples, 0.01%)</title><rect x="67.6597%" y="565" width="0.0108%" height="15" fill="rgb(243,93,47)" fg:x="874740" fg:w="140"/><text x="67.9097%" y="575.50"></text></g><g><title>btrfs_get_16 (409 samples, 0.03%)</title><rect x="67.7270%" y="549" width="0.0316%" height="15" fill="rgb(224,194,6)" fg:x="875610" fg:w="409"/><text x="67.9770%" y="559.50"></text></g><g><title>btrfs_get_32 (281 samples, 0.02%)</title><rect x="67.7586%" y="549" width="0.0217%" height="15" fill="rgb(243,229,6)" fg:x="876019" fg:w="281"/><text x="68.0086%" y="559.50"></text></g><g><title>btrfs_match_dir_item_name (1,743 samples, 0.13%)</title><rect x="67.6994%" y="565" width="0.1348%" height="15" fill="rgb(207,23,50)" fg:x="875253" fg:w="1743"/><text x="67.9494%" y="575.50"></text></g><g><title>memcmp_extent_buffer (696 samples, 0.05%)</title><rect x="67.7804%" y="549" width="0.0538%" height="15" fill="rgb(253,192,32)" fg:x="876300" fg:w="696"/><text x="68.0304%" y="559.50"></text></g><g><title>memcmp (367 samples, 0.03%)</title><rect x="67.8058%" y="533" width="0.0284%" height="15" fill="rgb(213,21,6)" fg:x="876629" fg:w="367"/><text x="68.0558%" y="543.50"></text></g><g><title>_raw_read_lock (290 samples, 0.02%)</title><rect x="67.9574%" y="517" width="0.0224%" height="15" fill="rgb(243,151,13)" fg:x="878589" fg:w="290"/><text x="68.2074%" y="527.50"></text></g><g><title>finish_wait (744 samples, 0.06%)</title><rect x="67.9810%" y="517" width="0.0575%" height="15" fill="rgb(233,165,41)" fg:x="878894" fg:w="744"/><text x="68.2310%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (711 samples, 0.05%)</title><rect x="67.9836%" y="501" width="0.0550%" height="15" fill="rgb(246,176,45)" fg:x="878927" fg:w="711"/><text x="68.2336%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (667 samples, 0.05%)</title><rect x="67.9870%" y="485" width="0.0516%" height="15" fill="rgb(217,170,52)" fg:x="878971" fg:w="667"/><text x="68.2370%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (2,357 samples, 0.18%)</title><rect x="68.0551%" y="501" width="0.1823%" height="15" fill="rgb(214,203,54)" fg:x="879852" fg:w="2357"/><text x="68.3051%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,255 samples, 0.17%)</title><rect x="68.0630%" y="485" width="0.1744%" height="15" fill="rgb(248,215,49)" fg:x="879954" fg:w="2255"/><text x="68.3130%" y="495.50"></text></g><g><title>prepare_to_wait_event (2,625 samples, 0.20%)</title><rect x="68.0389%" y="517" width="0.2030%" height="15" fill="rgb(208,46,10)" fg:x="879642" fg:w="2625"/><text x="68.2889%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (4,205 samples, 0.33%)</title><rect x="68.2419%" y="517" width="0.3252%" height="15" fill="rgb(254,5,31)" fg:x="882267" fg:w="4205"/><text x="68.4919%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,746 samples, 0.21%)</title><rect x="68.3548%" y="501" width="0.2124%" height="15" fill="rgb(222,104,33)" fg:x="883726" fg:w="2746"/><text x="68.6048%" y="511.50"></text></g><g><title>update_curr (181 samples, 0.01%)</title><rect x="68.6051%" y="453" width="0.0140%" height="15" fill="rgb(248,49,16)" fg:x="886962" fg:w="181"/><text x="68.8551%" y="463.50"></text></g><g><title>dequeue_entity (469 samples, 0.04%)</title><rect x="68.5932%" y="469" width="0.0363%" height="15" fill="rgb(232,198,41)" fg:x="886809" fg:w="469"/><text x="68.8432%" y="479.50"></text></g><g><title>update_load_avg (135 samples, 0.01%)</title><rect x="68.6191%" y="453" width="0.0104%" height="15" fill="rgb(214,125,3)" fg:x="887143" fg:w="135"/><text x="68.8691%" y="463.50"></text></g><g><title>dequeue_task_fair (561 samples, 0.04%)</title><rect x="68.5882%" y="485" width="0.0434%" height="15" fill="rgb(229,220,28)" fg:x="886744" fg:w="561"/><text x="68.8382%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (840 samples, 0.06%)</title><rect x="68.6400%" y="469" width="0.0650%" height="15" fill="rgb(222,64,37)" fg:x="887413" fg:w="840"/><text x="68.8900%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (810 samples, 0.06%)</title><rect x="68.6423%" y="453" width="0.0627%" height="15" fill="rgb(249,184,13)" fg:x="887443" fg:w="810"/><text x="68.8923%" y="463.50"></text></g><g><title>native_write_msr (798 samples, 0.06%)</title><rect x="68.6432%" y="437" width="0.0617%" height="15" fill="rgb(252,176,6)" fg:x="887455" fg:w="798"/><text x="68.8932%" y="447.50"></text></g><g><title>finish_task_switch (986 samples, 0.08%)</title><rect x="68.6316%" y="485" width="0.0763%" height="15" fill="rgb(228,153,7)" fg:x="887305" fg:w="986"/><text x="68.8816%" y="495.50"></text></g><g><title>psi_task_change (379 samples, 0.03%)</title><rect x="68.7248%" y="485" width="0.0293%" height="15" fill="rgb(242,193,5)" fg:x="888510" fg:w="379"/><text x="68.9748%" y="495.50"></text></g><g><title>psi_group_change (315 samples, 0.02%)</title><rect x="68.7298%" y="469" width="0.0244%" height="15" fill="rgb(232,140,9)" fg:x="888574" fg:w="315"/><text x="68.9798%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (10,653 samples, 0.82%)</title><rect x="67.9402%" y="533" width="0.8240%" height="15" fill="rgb(213,222,16)" fg:x="878366" fg:w="10653"/><text x="68.1902%" y="543.50"></text></g><g><title>schedule (2,547 samples, 0.20%)</title><rect x="68.5672%" y="517" width="0.1970%" height="15" fill="rgb(222,75,50)" fg:x="886472" fg:w="2547"/><text x="68.8172%" y="527.50"></text></g><g><title>__schedule (2,527 samples, 0.20%)</title><rect x="68.5687%" y="501" width="0.1955%" height="15" fill="rgb(205,180,2)" fg:x="886492" fg:w="2527"/><text x="68.8187%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (11,522 samples, 0.89%)</title><rect x="67.9351%" y="549" width="0.8912%" height="15" fill="rgb(216,34,7)" fg:x="878300" fg:w="11522"/><text x="68.1851%" y="559.50"></text></g><g><title>btrfs_root_node (803 samples, 0.06%)</title><rect x="68.7642%" y="533" width="0.0621%" height="15" fill="rgb(253,16,32)" fg:x="889019" fg:w="803"/><text x="69.0142%" y="543.50"></text></g><g><title>prepare_to_wait_event (162 samples, 0.01%)</title><rect x="68.8352%" y="533" width="0.0125%" height="15" fill="rgb(208,97,28)" fg:x="889937" fg:w="162"/><text x="69.0852%" y="543.50"></text></g><g><title>dequeue_entity (331 samples, 0.03%)</title><rect x="68.8708%" y="485" width="0.0256%" height="15" fill="rgb(225,92,11)" fg:x="890398" fg:w="331"/><text x="69.1208%" y="495.50"></text></g><g><title>dequeue_task_fair (429 samples, 0.03%)</title><rect x="68.8667%" y="501" width="0.0332%" height="15" fill="rgb(243,38,12)" fg:x="890345" fg:w="429"/><text x="69.1167%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (890 samples, 0.07%)</title><rect x="68.9069%" y="485" width="0.0688%" height="15" fill="rgb(208,139,16)" fg:x="890864" fg:w="890"/><text x="69.1569%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (868 samples, 0.07%)</title><rect x="68.9086%" y="469" width="0.0671%" height="15" fill="rgb(227,24,9)" fg:x="890886" fg:w="868"/><text x="69.1586%" y="479.50"></text></g><g><title>native_write_msr (861 samples, 0.07%)</title><rect x="68.9091%" y="453" width="0.0666%" height="15" fill="rgb(206,62,11)" fg:x="890893" fg:w="861"/><text x="69.1591%" y="463.50"></text></g><g><title>finish_task_switch (1,019 samples, 0.08%)</title><rect x="68.8999%" y="501" width="0.0788%" height="15" fill="rgb(228,134,27)" fg:x="890774" fg:w="1019"/><text x="69.1499%" y="511.50"></text></g><g><title>psi_task_change (326 samples, 0.03%)</title><rect x="68.9926%" y="501" width="0.0252%" height="15" fill="rgb(205,55,33)" fg:x="891972" fg:w="326"/><text x="69.2426%" y="511.50"></text></g><g><title>psi_group_change (270 samples, 0.02%)</title><rect x="68.9969%" y="485" width="0.0209%" height="15" fill="rgb(243,75,43)" fg:x="892028" fg:w="270"/><text x="69.2469%" y="495.50"></text></g><g><title>__btrfs_tree_lock (2,594 samples, 0.20%)</title><rect x="68.8263%" y="549" width="0.2006%" height="15" fill="rgb(223,27,42)" fg:x="889822" fg:w="2594"/><text x="69.0763%" y="559.50"></text></g><g><title>schedule (2,317 samples, 0.18%)</title><rect x="68.8477%" y="533" width="0.1792%" height="15" fill="rgb(232,189,33)" fg:x="890099" fg:w="2317"/><text x="69.0977%" y="543.50"></text></g><g><title>__schedule (2,298 samples, 0.18%)</title><rect x="68.8492%" y="517" width="0.1777%" height="15" fill="rgb(210,9,39)" fg:x="890118" fg:w="2298"/><text x="69.0992%" y="527.50"></text></g><g><title>alloc_tree_block_no_bg_flush (133 samples, 0.01%)</title><rect x="69.0438%" y="517" width="0.0103%" height="15" fill="rgb(242,85,26)" fg:x="892634" fg:w="133"/><text x="69.2938%" y="527.50"></text></g><g><title>__btrfs_cow_block (275 samples, 0.02%)</title><rect x="69.0435%" y="533" width="0.0213%" height="15" fill="rgb(248,44,4)" fg:x="892630" fg:w="275"/><text x="69.2935%" y="543.50"></text></g><g><title>btrfs_cow_block (278 samples, 0.02%)</title><rect x="69.0433%" y="549" width="0.0215%" height="15" fill="rgb(250,96,46)" fg:x="892628" fg:w="278"/><text x="69.2933%" y="559.50"></text></g><g><title>_cond_resched (135 samples, 0.01%)</title><rect x="69.0875%" y="517" width="0.0104%" height="15" fill="rgb(229,116,26)" fg:x="893199" fg:w="135"/><text x="69.3375%" y="527.50"></text></g><g><title>_raw_write_lock (259 samples, 0.02%)</title><rect x="69.0987%" y="517" width="0.0200%" height="15" fill="rgb(246,94,34)" fg:x="893344" fg:w="259"/><text x="69.3487%" y="527.50"></text></g><g><title>finish_wait (603 samples, 0.05%)</title><rect x="69.1189%" y="517" width="0.0466%" height="15" fill="rgb(251,73,21)" fg:x="893605" fg:w="603"/><text x="69.3689%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (560 samples, 0.04%)</title><rect x="69.1222%" y="501" width="0.0433%" height="15" fill="rgb(254,121,25)" fg:x="893648" fg:w="560"/><text x="69.3722%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (520 samples, 0.04%)</title><rect x="69.1253%" y="485" width="0.0402%" height="15" fill="rgb(215,161,49)" fg:x="893688" fg:w="520"/><text x="69.3753%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (1,817 samples, 0.14%)</title><rect x="69.1830%" y="501" width="0.1405%" height="15" fill="rgb(221,43,13)" fg:x="894434" fg:w="1817"/><text x="69.4330%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,680 samples, 0.13%)</title><rect x="69.1936%" y="485" width="0.1299%" height="15" fill="rgb(249,5,37)" fg:x="894571" fg:w="1680"/><text x="69.4436%" y="495.50"></text></g><g><title>prepare_to_wait_event (2,091 samples, 0.16%)</title><rect x="69.1663%" y="517" width="0.1617%" height="15" fill="rgb(226,25,44)" fg:x="894218" fg:w="2091"/><text x="69.4163%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (5,752 samples, 0.44%)</title><rect x="69.3280%" y="517" width="0.4449%" height="15" fill="rgb(238,189,16)" fg:x="896309" fg:w="5752"/><text x="69.5780%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,771 samples, 0.14%)</title><rect x="69.6360%" y="501" width="0.1370%" height="15" fill="rgb(251,186,8)" fg:x="900290" fg:w="1771"/><text x="69.8860%" y="511.50"></text></g><g><title>update_curr (175 samples, 0.01%)</title><rect x="69.8221%" y="453" width="0.0135%" height="15" fill="rgb(254,34,31)" fg:x="902696" fg:w="175"/><text x="70.0721%" y="463.50"></text></g><g><title>dequeue_entity (548 samples, 0.04%)</title><rect x="69.8082%" y="469" width="0.0424%" height="15" fill="rgb(225,215,27)" fg:x="902517" fg:w="548"/><text x="70.0582%" y="479.50"></text></g><g><title>update_load_avg (194 samples, 0.02%)</title><rect x="69.8356%" y="453" width="0.0150%" height="15" fill="rgb(221,192,48)" fg:x="902871" fg:w="194"/><text x="70.0856%" y="463.50"></text></g><g><title>dequeue_task_fair (673 samples, 0.05%)</title><rect x="69.8021%" y="485" width="0.0521%" height="15" fill="rgb(219,137,20)" fg:x="902438" fg:w="673"/><text x="70.0521%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (1,579 samples, 0.12%)</title><rect x="69.8622%" y="469" width="0.1221%" height="15" fill="rgb(219,84,11)" fg:x="903215" fg:w="1579"/><text x="70.1122%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,516 samples, 0.12%)</title><rect x="69.8671%" y="453" width="0.1173%" height="15" fill="rgb(224,10,23)" fg:x="903278" fg:w="1516"/><text x="70.1171%" y="463.50"></text></g><g><title>native_write_msr (1,492 samples, 0.12%)</title><rect x="69.8689%" y="437" width="0.1154%" height="15" fill="rgb(248,22,39)" fg:x="903302" fg:w="1492"/><text x="70.1189%" y="447.50"></text></g><g><title>finish_task_switch (1,765 samples, 0.14%)</title><rect x="69.8542%" y="485" width="0.1365%" height="15" fill="rgb(212,154,20)" fg:x="903111" fg:w="1765"/><text x="70.1042%" y="495.50"></text></g><g><title>pick_next_task_idle (130 samples, 0.01%)</title><rect x="70.0007%" y="485" width="0.0101%" height="15" fill="rgb(236,199,50)" fg:x="905005" fg:w="130"/><text x="70.2507%" y="495.50"></text></g><g><title>psi_task_change (473 samples, 0.04%)</title><rect x="70.0107%" y="485" width="0.0366%" height="15" fill="rgb(211,9,17)" fg:x="905135" fg:w="473"/><text x="70.2607%" y="495.50"></text></g><g><title>psi_group_change (388 samples, 0.03%)</title><rect x="70.0173%" y="469" width="0.0300%" height="15" fill="rgb(243,216,36)" fg:x="905220" fg:w="388"/><text x="70.2673%" y="479.50"></text></g><g><title>__btrfs_tree_lock (12,839 samples, 0.99%)</title><rect x="69.0672%" y="533" width="0.9931%" height="15" fill="rgb(250,2,10)" fg:x="892937" fg:w="12839"/><text x="69.3172%" y="543.50"></text></g><g><title>schedule (3,715 samples, 0.29%)</title><rect x="69.7730%" y="517" width="0.2873%" height="15" fill="rgb(226,50,48)" fg:x="902061" fg:w="3715"/><text x="70.0230%" y="527.50"></text></g><g><title>__schedule (3,667 samples, 0.28%)</title><rect x="69.7767%" y="501" width="0.2836%" height="15" fill="rgb(243,81,16)" fg:x="902109" fg:w="3667"/><text x="70.0267%" y="511.50"></text></g><g><title>btrfs_lock_root_node (13,155 samples, 1.02%)</title><rect x="69.0648%" y="549" width="1.0175%" height="15" fill="rgb(250,14,2)" fg:x="892906" fg:w="13155"/><text x="69.3148%" y="559.50"></text></g><g><title>btrfs_root_node (285 samples, 0.02%)</title><rect x="70.0603%" y="533" width="0.0220%" height="15" fill="rgb(233,135,29)" fg:x="905776" fg:w="285"/><text x="70.3103%" y="543.50"></text></g><g><title>btrfs_set_path_blocking (266 samples, 0.02%)</title><rect x="70.0823%" y="549" width="0.0206%" height="15" fill="rgb(224,64,43)" fg:x="906061" fg:w="266"/><text x="70.3323%" y="559.50"></text></g><g><title>btrfs_tree_read_unlock (243 samples, 0.02%)</title><rect x="70.1031%" y="549" width="0.0188%" height="15" fill="rgb(238,84,13)" fg:x="906329" fg:w="243"/><text x="70.3531%" y="559.50"></text></g><g><title>_raw_write_lock (286 samples, 0.02%)</title><rect x="70.1301%" y="533" width="0.0221%" height="15" fill="rgb(253,48,26)" fg:x="906678" fg:w="286"/><text x="70.3801%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (3,811 samples, 0.29%)</title><rect x="70.1219%" y="549" width="0.2948%" height="15" fill="rgb(205,223,31)" fg:x="906572" fg:w="3811"/><text x="70.3719%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (3,417 samples, 0.26%)</title><rect x="70.1523%" y="533" width="0.2643%" height="15" fill="rgb(221,41,32)" fg:x="906966" fg:w="3417"/><text x="70.4023%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (310 samples, 0.02%)</title><rect x="70.4171%" y="549" width="0.0240%" height="15" fill="rgb(213,158,31)" fg:x="910389" fg:w="310"/><text x="70.6671%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (3,490 samples, 0.27%)</title><rect x="70.4412%" y="549" width="0.2699%" height="15" fill="rgb(245,126,43)" fg:x="910700" fg:w="3490"/><text x="70.6912%" y="559.50"></text></g><g><title>btrfs_buffer_uptodate (470 samples, 0.04%)</title><rect x="70.7499%" y="533" width="0.0364%" height="15" fill="rgb(227,7,22)" fg:x="914692" fg:w="470"/><text x="70.9999%" y="543.50"></text></g><g><title>verify_parent_transid (354 samples, 0.03%)</title><rect x="70.7589%" y="517" width="0.0274%" height="15" fill="rgb(252,90,44)" fg:x="914808" fg:w="354"/><text x="71.0089%" y="527.50"></text></g><g><title>btrfs_get_64 (516 samples, 0.04%)</title><rect x="70.7863%" y="533" width="0.0399%" height="15" fill="rgb(253,91,0)" fg:x="915162" fg:w="516"/><text x="71.0363%" y="543.50"></text></g><g><title>check_setget_bounds.isra.0 (137 samples, 0.01%)</title><rect x="70.8156%" y="517" width="0.0106%" height="15" fill="rgb(252,175,49)" fg:x="915541" fg:w="137"/><text x="71.0656%" y="527.50"></text></g><g><title>btrfs_verify_level_key (189 samples, 0.01%)</title><rect x="70.8321%" y="533" width="0.0146%" height="15" fill="rgb(246,150,1)" fg:x="915754" fg:w="189"/><text x="71.0821%" y="543.50"></text></g><g><title>__radix_tree_lookup (1,862 samples, 0.14%)</title><rect x="70.9203%" y="517" width="0.1440%" height="15" fill="rgb(241,192,25)" fg:x="916894" fg:w="1862"/><text x="71.1703%" y="527.50"></text></g><g><title>mark_page_accessed (676 samples, 0.05%)</title><rect x="71.0822%" y="501" width="0.0523%" height="15" fill="rgb(239,187,11)" fg:x="918987" fg:w="676"/><text x="71.3322%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (899 samples, 0.07%)</title><rect x="71.0651%" y="517" width="0.0695%" height="15" fill="rgb(218,202,51)" fg:x="918766" fg:w="899"/><text x="71.3151%" y="527.50"></text></g><g><title>find_extent_buffer (3,755 samples, 0.29%)</title><rect x="70.8467%" y="533" width="0.2904%" height="15" fill="rgb(225,176,8)" fg:x="915943" fg:w="3755"/><text x="71.0967%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (6,048 samples, 0.47%)</title><rect x="70.7111%" y="549" width="0.4678%" height="15" fill="rgb(219,122,41)" fg:x="914190" fg:w="6048"/><text x="70.9611%" y="559.50"></text></g><g><title>read_extent_buffer (540 samples, 0.04%)</title><rect x="71.1371%" y="533" width="0.0418%" height="15" fill="rgb(248,140,20)" fg:x="919698" fg:w="540"/><text x="71.3871%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (146 samples, 0.01%)</title><rect x="71.1870%" y="533" width="0.0113%" height="15" fill="rgb(245,41,37)" fg:x="920343" fg:w="146"/><text x="71.4370%" y="543.50"></text></g><g><title>btrfs_get_64 (164 samples, 0.01%)</title><rect x="71.1983%" y="533" width="0.0127%" height="15" fill="rgb(235,82,39)" fg:x="920489" fg:w="164"/><text x="71.4483%" y="543.50"></text></g><g><title>__radix_tree_lookup (531 samples, 0.04%)</title><rect x="71.2440%" y="517" width="0.0411%" height="15" fill="rgb(230,108,42)" fg:x="921079" fg:w="531"/><text x="71.4940%" y="527.50"></text></g><g><title>mark_extent_buffer_accessed (287 samples, 0.02%)</title><rect x="71.2853%" y="517" width="0.0222%" height="15" fill="rgb(215,150,50)" fg:x="921613" fg:w="287"/><text x="71.5353%" y="527.50"></text></g><g><title>mark_page_accessed (212 samples, 0.02%)</title><rect x="71.2911%" y="501" width="0.0164%" height="15" fill="rgb(233,212,5)" fg:x="921688" fg:w="212"/><text x="71.5411%" y="511.50"></text></g><g><title>find_extent_buffer (1,252 samples, 0.10%)</title><rect x="71.2110%" y="533" width="0.0968%" height="15" fill="rgb(245,80,22)" fg:x="920653" fg:w="1252"/><text x="71.4610%" y="543.50"></text></g><g><title>reada_for_balance (1,781 samples, 0.14%)</title><rect x="71.1789%" y="549" width="0.1378%" height="15" fill="rgb(238,129,16)" fg:x="920238" fg:w="1781"/><text x="71.4289%" y="559.50"></text></g><g><title>__list_del_entry_valid (208 samples, 0.02%)</title><rect x="71.3925%" y="485" width="0.0161%" height="15" fill="rgb(240,19,0)" fg:x="923000" fg:w="208"/><text x="71.6425%" y="495.50"></text></g><g><title>_raw_spin_lock (394 samples, 0.03%)</title><rect x="71.6556%" y="469" width="0.0305%" height="15" fill="rgb(232,42,35)" fg:x="926401" fg:w="394"/><text x="71.9056%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (269 samples, 0.02%)</title><rect x="71.6653%" y="453" width="0.0208%" height="15" fill="rgb(223,130,24)" fg:x="926526" fg:w="269"/><text x="71.9153%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (340 samples, 0.03%)</title><rect x="71.6861%" y="469" width="0.0263%" height="15" fill="rgb(237,16,22)" fg:x="926795" fg:w="340"/><text x="71.9361%" y="479.50"></text></g><g><title>available_idle_cpu (361 samples, 0.03%)</title><rect x="71.7769%" y="453" width="0.0279%" height="15" fill="rgb(248,192,20)" fg:x="927969" fg:w="361"/><text x="72.0269%" y="463.50"></text></g><g><title>select_task_rq_fair (1,668 samples, 0.13%)</title><rect x="71.7166%" y="469" width="0.1290%" height="15" fill="rgb(233,167,2)" fg:x="927190" fg:w="1668"/><text x="71.9666%" y="479.50"></text></g><g><title>update_cfs_rq_h_load (300 samples, 0.02%)</title><rect x="71.8225%" y="453" width="0.0232%" height="15" fill="rgb(252,71,44)" fg:x="928558" fg:w="300"/><text x="72.0725%" y="463.50"></text></g><g><title>update_curr (177 samples, 0.01%)</title><rect x="71.9440%" y="421" width="0.0137%" height="15" fill="rgb(238,37,47)" fg:x="930130" fg:w="177"/><text x="72.1940%" y="431.50"></text></g><g><title>enqueue_entity (1,434 samples, 0.11%)</title><rect x="71.8870%" y="437" width="0.1109%" height="15" fill="rgb(214,202,54)" fg:x="929393" fg:w="1434"/><text x="72.1370%" y="447.50"></text></g><g><title>update_load_avg (520 samples, 0.04%)</title><rect x="71.9577%" y="421" width="0.0402%" height="15" fill="rgb(254,165,40)" fg:x="930307" fg:w="520"/><text x="72.2077%" y="431.50"></text></g><g><title>enqueue_task_fair (1,805 samples, 0.14%)</title><rect x="71.8668%" y="453" width="0.1396%" height="15" fill="rgb(246,173,38)" fg:x="929132" fg:w="1805"/><text x="72.1168%" y="463.50"></text></g><g><title>ttwu_do_activate (3,682 samples, 0.28%)</title><rect x="71.8556%" y="469" width="0.2848%" height="15" fill="rgb(215,3,27)" fg:x="928986" fg:w="3682"/><text x="72.1056%" y="479.50"></text></g><g><title>psi_task_change (1,729 samples, 0.13%)</title><rect x="72.0066%" y="453" width="0.1337%" height="15" fill="rgb(239,169,51)" fg:x="930939" fg:w="1729"/><text x="72.2566%" y="463.50"></text></g><g><title>psi_group_change (1,533 samples, 0.12%)</title><rect x="72.0218%" y="437" width="0.1186%" height="15" fill="rgb(212,5,25)" fg:x="931135" fg:w="1533"/><text x="72.2718%" y="447.50"></text></g><g><title>record_times (255 samples, 0.02%)</title><rect x="72.1206%" y="421" width="0.0197%" height="15" fill="rgb(243,45,17)" fg:x="932413" fg:w="255"/><text x="72.3706%" y="431.50"></text></g><g><title>sched_clock_cpu (159 samples, 0.01%)</title><rect x="72.1281%" y="405" width="0.0123%" height="15" fill="rgb(242,97,9)" fg:x="932509" fg:w="159"/><text x="72.3781%" y="415.50"></text></g><g><title>sched_clock (133 samples, 0.01%)</title><rect x="72.1301%" y="389" width="0.0103%" height="15" fill="rgb(228,71,31)" fg:x="932535" fg:w="133"/><text x="72.3801%" y="399.50"></text></g><g><title>check_preempt_wakeup (147 samples, 0.01%)</title><rect x="72.1511%" y="437" width="0.0114%" height="15" fill="rgb(252,184,16)" fg:x="932807" fg:w="147"/><text x="72.4011%" y="447.50"></text></g><g><title>resched_curr (147 samples, 0.01%)</title><rect x="72.1626%" y="437" width="0.0114%" height="15" fill="rgb(236,169,46)" fg:x="932955" fg:w="147"/><text x="72.4126%" y="447.50"></text></g><g><title>ttwu_do_wakeup (436 samples, 0.03%)</title><rect x="72.1404%" y="469" width="0.0337%" height="15" fill="rgb(207,17,47)" fg:x="932668" fg:w="436"/><text x="72.3904%" y="479.50"></text></g><g><title>check_preempt_curr (403 samples, 0.03%)</title><rect x="72.1429%" y="453" width="0.0312%" height="15" fill="rgb(206,201,28)" fg:x="932701" fg:w="403"/><text x="72.3929%" y="463.50"></text></g><g><title>ttwu_queue_wakelist (239 samples, 0.02%)</title><rect x="72.1741%" y="469" width="0.0185%" height="15" fill="rgb(224,184,23)" fg:x="933104" fg:w="239"/><text x="72.4241%" y="479.50"></text></g><g><title>__wake_up_common (10,879 samples, 0.84%)</title><rect x="71.3784%" y="517" width="0.8415%" height="15" fill="rgb(208,139,48)" fg:x="922817" fg:w="10879"/><text x="71.6284%" y="527.50"></text></g><g><title>autoremove_wake_function (10,724 samples, 0.83%)</title><rect x="71.3904%" y="501" width="0.8295%" height="15" fill="rgb(208,130,10)" fg:x="922972" fg:w="10724"/><text x="71.6404%" y="511.50"></text></g><g><title>try_to_wake_up (10,477 samples, 0.81%)</title><rect x="71.4095%" y="485" width="0.8104%" height="15" fill="rgb(211,213,45)" fg:x="923219" fg:w="10477"/><text x="71.6595%" y="495.50"></text></g><g><title>update_rq_clock (353 samples, 0.03%)</title><rect x="72.1926%" y="469" width="0.0273%" height="15" fill="rgb(235,100,30)" fg:x="933343" fg:w="353"/><text x="72.4426%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (562 samples, 0.04%)</title><rect x="72.2199%" y="517" width="0.0435%" height="15" fill="rgb(206,144,31)" fg:x="933696" fg:w="562"/><text x="72.4699%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (494 samples, 0.04%)</title><rect x="72.2251%" y="501" width="0.0382%" height="15" fill="rgb(224,200,26)" fg:x="933764" fg:w="494"/><text x="72.4751%" y="511.50"></text></g><g><title>__wake_up_common_lock (11,555 samples, 0.89%)</title><rect x="71.3750%" y="533" width="0.8938%" height="15" fill="rgb(247,104,53)" fg:x="922773" fg:w="11555"/><text x="71.6250%" y="543.50"></text></g><g><title>btrfs_search_slot (57,649 samples, 4.46%)</title><rect x="67.8342%" y="565" width="4.4591%" height="15" fill="rgb(220,14,17)" fg:x="876996" fg:w="57649"/><text x="68.0842%" y="575.50">btrfs..</text></g><g><title>unlock_up (12,571 samples, 0.97%)</title><rect x="71.3209%" y="549" width="0.9723%" height="15" fill="rgb(230,140,40)" fg:x="922074" fg:w="12571"/><text x="71.5709%" y="559.50"></text></g><g><title>btrfs_tree_unlock (316 samples, 0.02%)</title><rect x="72.2688%" y="533" width="0.0244%" height="15" fill="rgb(229,2,41)" fg:x="934329" fg:w="316"/><text x="72.5188%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (60,128 samples, 4.65%)</title><rect x="67.6793%" y="581" width="4.6508%" height="15" fill="rgb(232,89,16)" fg:x="874993" fg:w="60128"/><text x="67.9293%" y="591.50">btrfs..</text></g><g><title>crc32c (476 samples, 0.04%)</title><rect x="72.2933%" y="565" width="0.0368%" height="15" fill="rgb(247,59,52)" fg:x="934645" fg:w="476"/><text x="72.5433%" y="575.50"></text></g><g><title>crypto_shash_update (305 samples, 0.02%)</title><rect x="72.3065%" y="549" width="0.0236%" height="15" fill="rgb(226,110,21)" fg:x="934816" fg:w="305"/><text x="72.5565%" y="559.50"></text></g><g><title>_raw_spin_lock (186 samples, 0.01%)</title><rect x="72.4055%" y="501" width="0.0144%" height="15" fill="rgb(224,176,43)" fg:x="936096" fg:w="186"/><text x="72.6555%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (155 samples, 0.01%)</title><rect x="72.4079%" y="485" width="0.0120%" height="15" fill="rgb(221,73,6)" fg:x="936127" fg:w="155"/><text x="72.6579%" y="495.50"></text></g><g><title>select_task_rq_fair (468 samples, 0.04%)</title><rect x="72.4292%" y="501" width="0.0362%" height="15" fill="rgb(232,78,19)" fg:x="936402" fg:w="468"/><text x="72.6792%" y="511.50"></text></g><g><title>enqueue_entity (463 samples, 0.04%)</title><rect x="72.4788%" y="469" width="0.0358%" height="15" fill="rgb(233,112,48)" fg:x="937044" fg:w="463"/><text x="72.7288%" y="479.50"></text></g><g><title>update_load_avg (159 samples, 0.01%)</title><rect x="72.5023%" y="453" width="0.0123%" height="15" fill="rgb(243,131,47)" fg:x="937348" fg:w="159"/><text x="72.7523%" y="463.50"></text></g><g><title>enqueue_task_fair (570 samples, 0.04%)</title><rect x="72.4721%" y="485" width="0.0441%" height="15" fill="rgb(226,51,1)" fg:x="936957" fg:w="570"/><text x="72.7221%" y="495.50"></text></g><g><title>ttwu_do_activate (1,239 samples, 0.10%)</title><rect x="72.4692%" y="501" width="0.0958%" height="15" fill="rgb(247,58,7)" fg:x="936920" fg:w="1239"/><text x="72.7192%" y="511.50"></text></g><g><title>psi_task_change (632 samples, 0.05%)</title><rect x="72.5162%" y="485" width="0.0489%" height="15" fill="rgb(209,7,32)" fg:x="937527" fg:w="632"/><text x="72.7662%" y="495.50"></text></g><g><title>psi_group_change (557 samples, 0.04%)</title><rect x="72.5220%" y="469" width="0.0431%" height="15" fill="rgb(209,39,41)" fg:x="937602" fg:w="557"/><text x="72.7720%" y="479.50"></text></g><g><title>ttwu_do_wakeup (137 samples, 0.01%)</title><rect x="72.5651%" y="501" width="0.0106%" height="15" fill="rgb(226,182,46)" fg:x="938159" fg:w="137"/><text x="72.8151%" y="511.50"></text></g><g><title>__wake_up_common (3,275 samples, 0.25%)</title><rect x="72.3413%" y="549" width="0.2533%" height="15" fill="rgb(230,219,10)" fg:x="935266" fg:w="3275"/><text x="72.5913%" y="559.50"></text></g><g><title>autoremove_wake_function (3,211 samples, 0.25%)</title><rect x="72.3463%" y="533" width="0.2484%" height="15" fill="rgb(227,175,30)" fg:x="935330" fg:w="3211"/><text x="72.5963%" y="543.50"></text></g><g><title>try_to_wake_up (3,146 samples, 0.24%)</title><rect x="72.3513%" y="517" width="0.2433%" height="15" fill="rgb(217,2,50)" fg:x="935395" fg:w="3146"/><text x="72.6013%" y="527.50"></text></g><g><title>update_rq_clock (142 samples, 0.01%)</title><rect x="72.5836%" y="501" width="0.0110%" height="15" fill="rgb(229,160,0)" fg:x="938399" fg:w="142"/><text x="72.8336%" y="511.50"></text></g><g><title>__wake_up_common_lock (3,371 samples, 0.26%)</title><rect x="72.3398%" y="565" width="0.2607%" height="15" fill="rgb(207,78,37)" fg:x="935247" fg:w="3371"/><text x="72.5898%" y="575.50"></text></g><g><title>btrfs_tree_unlock (249 samples, 0.02%)</title><rect x="72.6006%" y="565" width="0.0193%" height="15" fill="rgb(225,57,0)" fg:x="938618" fg:w="249"/><text x="72.8506%" y="575.50"></text></g><g><title>_raw_spin_lock (321 samples, 0.02%)</title><rect x="72.6672%" y="549" width="0.0248%" height="15" fill="rgb(232,154,2)" fg:x="939479" fg:w="321"/><text x="72.9172%" y="559.50"></text></g><g><title>free_extent_buffer.part.0 (923 samples, 0.07%)</title><rect x="72.6211%" y="565" width="0.0714%" height="15" fill="rgb(241,212,25)" fg:x="938883" fg:w="923"/><text x="72.8711%" y="575.50"></text></g><g><title>btrfs_release_path (5,017 samples, 0.39%)</title><rect x="72.3301%" y="581" width="0.3881%" height="15" fill="rgb(226,69,20)" fg:x="935121" fg:w="5017"/><text x="72.5801%" y="591.50"></text></g><g><title>release_extent_buffer (332 samples, 0.03%)</title><rect x="72.6925%" y="565" width="0.0257%" height="15" fill="rgb(247,184,54)" fg:x="939806" fg:w="332"/><text x="72.9425%" y="575.50"></text></g><g><title>__list_add_valid (165 samples, 0.01%)</title><rect x="72.7761%" y="533" width="0.0128%" height="15" fill="rgb(210,145,0)" fg:x="940887" fg:w="165"/><text x="73.0261%" y="543.50"></text></g><g><title>__list_del_entry_valid (132 samples, 0.01%)</title><rect x="72.7888%" y="533" width="0.0102%" height="15" fill="rgb(253,82,12)" fg:x="941052" fg:w="132"/><text x="73.0388%" y="543.50"></text></g><g><title>_raw_spin_lock (257 samples, 0.02%)</title><rect x="72.7994%" y="533" width="0.0199%" height="15" fill="rgb(245,42,11)" fg:x="941188" fg:w="257"/><text x="73.0494%" y="543.50"></text></g><g><title>mutex_lock (285 samples, 0.02%)</title><rect x="72.8193%" y="533" width="0.0220%" height="15" fill="rgb(219,147,32)" fg:x="941446" fg:w="285"/><text x="73.0693%" y="543.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,558 samples, 0.12%)</title><rect x="72.7513%" y="549" width="0.1205%" height="15" fill="rgb(246,12,7)" fg:x="940567" fg:w="1558"/><text x="73.0013%" y="559.50"></text></g><g><title>mutex_unlock (394 samples, 0.03%)</title><rect x="72.8414%" y="533" width="0.0305%" height="15" fill="rgb(243,50,9)" fg:x="941731" fg:w="394"/><text x="73.0914%" y="543.50"></text></g><g><title>mutex_spin_on_owner (304 samples, 0.02%)</title><rect x="72.8728%" y="533" width="0.0235%" height="15" fill="rgb(219,149,6)" fg:x="942137" fg:w="304"/><text x="73.1228%" y="543.50"></text></g><g><title>__mutex_lock.constprop.0 (378 samples, 0.03%)</title><rect x="72.8718%" y="549" width="0.0292%" height="15" fill="rgb(241,51,42)" fg:x="942125" fg:w="378"/><text x="73.1218%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (340 samples, 0.03%)</title><rect x="72.9036%" y="549" width="0.0263%" height="15" fill="rgb(226,128,27)" fg:x="942536" fg:w="340"/><text x="73.1536%" y="559.50"></text></g><g><title>btrfs_get_delayed_node (316 samples, 0.02%)</title><rect x="72.9055%" y="533" width="0.0244%" height="15" fill="rgb(244,144,4)" fg:x="942560" fg:w="316"/><text x="73.1555%" y="543.50"></text></g><g><title>inode_get_bytes (201 samples, 0.02%)</title><rect x="72.9387%" y="533" width="0.0155%" height="15" fill="rgb(221,4,13)" fg:x="942990" fg:w="201"/><text x="73.1887%" y="543.50"></text></g><g><title>_raw_spin_lock (137 samples, 0.01%)</title><rect x="72.9437%" y="517" width="0.0106%" height="15" fill="rgb(208,170,28)" fg:x="943054" fg:w="137"/><text x="73.1937%" y="527.50"></text></g><g><title>fill_stack_inode_item (459 samples, 0.04%)</title><rect x="72.9299%" y="549" width="0.0355%" height="15" fill="rgb(226,131,13)" fg:x="942876" fg:w="459"/><text x="73.1799%" y="559.50"></text></g><g><title>map_id_up (144 samples, 0.01%)</title><rect x="72.9543%" y="533" width="0.0111%" height="15" fill="rgb(215,72,41)" fg:x="943191" fg:w="144"/><text x="73.2043%" y="543.50"></text></g><g><title>mutex_lock (183 samples, 0.01%)</title><rect x="72.9654%" y="549" width="0.0142%" height="15" fill="rgb(243,108,20)" fg:x="943335" fg:w="183"/><text x="73.2154%" y="559.50"></text></g><g><title>btrfs_delayed_update_inode (3,234 samples, 0.25%)</title><rect x="72.7445%" y="565" width="0.2501%" height="15" fill="rgb(230,189,17)" fg:x="940479" fg:w="3234"/><text x="72.9945%" y="575.50"></text></g><g><title>mutex_unlock (195 samples, 0.02%)</title><rect x="72.9796%" y="549" width="0.0151%" height="15" fill="rgb(220,50,17)" fg:x="943518" fg:w="195"/><text x="73.2296%" y="559.50"></text></g><g><title>_raw_spin_lock (417 samples, 0.03%)</title><rect x="73.0005%" y="549" width="0.0323%" height="15" fill="rgb(248,152,48)" fg:x="943789" fg:w="417"/><text x="73.2505%" y="559.50"></text></g><g><title>btrfs_update_inode (4,384 samples, 0.34%)</title><rect x="72.7181%" y="581" width="0.3391%" height="15" fill="rgb(244,91,11)" fg:x="940138" fg:w="4384"/><text x="72.9681%" y="591.50"></text></g><g><title>btrfs_update_root_times (809 samples, 0.06%)</title><rect x="72.9947%" y="565" width="0.0626%" height="15" fill="rgb(220,157,5)" fg:x="943713" fg:w="809"/><text x="73.2447%" y="575.50"></text></g><g><title>ktime_get_real_ts64 (316 samples, 0.02%)</title><rect x="73.0328%" y="549" width="0.0244%" height="15" fill="rgb(253,137,8)" fg:x="944206" fg:w="316"/><text x="73.2828%" y="559.50"></text></g><g><title>kmem_cache_alloc (530 samples, 0.04%)</title><rect x="73.0655%" y="581" width="0.0410%" height="15" fill="rgb(217,137,51)" fg:x="944629" fg:w="530"/><text x="73.3155%" y="591.50"></text></g><g><title>__btrfs_unlink_inode (273,219 samples, 21.13%)</title><rect x="52.0070%" y="597" width="21.1330%" height="15" fill="rgb(218,209,53)" fg:x="672374" fg:w="273219"/><text x="52.2570%" y="607.50">__btrfs_unlink_inode</text></g><g><title>kmem_cache_free (434 samples, 0.03%)</title><rect x="73.1065%" y="581" width="0.0336%" height="15" fill="rgb(249,137,25)" fg:x="945159" fg:w="434"/><text x="73.3565%" y="591.50"></text></g><g><title>__radix_tree_lookup (232 samples, 0.02%)</title><rect x="73.1692%" y="581" width="0.0179%" height="15" fill="rgb(239,155,26)" fg:x="945970" fg:w="232"/><text x="73.4192%" y="591.50"></text></g><g><title>balance_dirty_pages_ratelimited (618 samples, 0.05%)</title><rect x="73.1402%" y="597" width="0.0478%" height="15" fill="rgb(227,85,46)" fg:x="945594" fg:w="618"/><text x="73.3902%" y="607.50"></text></g><g><title>__percpu_counter_compare (157 samples, 0.01%)</title><rect x="73.1999%" y="581" width="0.0121%" height="15" fill="rgb(251,107,43)" fg:x="946367" fg:w="157"/><text x="73.4499%" y="591.50"></text></g><g><title>btrfs_balance_delayed_items (385 samples, 0.03%)</title><rect x="73.2122%" y="581" width="0.0298%" height="15" fill="rgb(234,170,33)" fg:x="946525" fg:w="385"/><text x="73.4622%" y="591.50"></text></g><g><title>_raw_spin_lock (386 samples, 0.03%)</title><rect x="73.2663%" y="549" width="0.0299%" height="15" fill="rgb(206,29,35)" fg:x="947225" fg:w="386"/><text x="73.5163%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (297 samples, 0.02%)</title><rect x="73.2732%" y="533" width="0.0230%" height="15" fill="rgb(227,138,25)" fg:x="947314" fg:w="297"/><text x="73.5232%" y="543.50"></text></g><g><title>insert_work (133 samples, 0.01%)</title><rect x="73.2962%" y="549" width="0.0103%" height="15" fill="rgb(249,131,35)" fg:x="947611" fg:w="133"/><text x="73.5462%" y="559.50"></text></g><g><title>select_task_rq_fair (452 samples, 0.03%)</title><rect x="73.3400%" y="533" width="0.0350%" height="15" fill="rgb(239,6,40)" fg:x="948178" fg:w="452"/><text x="73.5900%" y="543.50"></text></g><g><title>enqueue_task_fair (310 samples, 0.02%)</title><rect x="73.3791%" y="517" width="0.0240%" height="15" fill="rgb(246,136,47)" fg:x="948683" fg:w="310"/><text x="73.6291%" y="527.50"></text></g><g><title>enqueue_entity (246 samples, 0.02%)</title><rect x="73.3840%" y="501" width="0.0190%" height="15" fill="rgb(253,58,26)" fg:x="948747" fg:w="246"/><text x="73.6340%" y="511.50"></text></g><g><title>ttwu_do_activate (497 samples, 0.04%)</title><rect x="73.3771%" y="533" width="0.0384%" height="15" fill="rgb(237,141,10)" fg:x="948657" fg:w="497"/><text x="73.6271%" y="543.50"></text></g><g><title>psi_task_change (159 samples, 0.01%)</title><rect x="73.4032%" y="517" width="0.0123%" height="15" fill="rgb(234,156,12)" fg:x="948995" fg:w="159"/><text x="73.6532%" y="527.50"></text></g><g><title>check_preempt_wakeup (149 samples, 0.01%)</title><rect x="73.4181%" y="501" width="0.0115%" height="15" fill="rgb(243,224,36)" fg:x="949188" fg:w="149"/><text x="73.6681%" y="511.50"></text></g><g><title>ttwu_do_wakeup (196 samples, 0.02%)</title><rect x="73.4155%" y="533" width="0.0152%" height="15" fill="rgb(205,229,51)" fg:x="949154" fg:w="196"/><text x="73.6655%" y="543.50"></text></g><g><title>check_preempt_curr (189 samples, 0.01%)</title><rect x="73.4161%" y="517" width="0.0146%" height="15" fill="rgb(223,189,4)" fg:x="949161" fg:w="189"/><text x="73.6661%" y="527.50"></text></g><g><title>try_to_wake_up (1,690 samples, 0.13%)</title><rect x="73.3065%" y="549" width="0.1307%" height="15" fill="rgb(249,167,54)" fg:x="947744" fg:w="1690"/><text x="73.5565%" y="559.50"></text></g><g><title>__queue_work (2,359 samples, 0.18%)</title><rect x="73.2548%" y="565" width="0.1825%" height="15" fill="rgb(218,34,28)" fg:x="947076" fg:w="2359"/><text x="73.5048%" y="575.50"></text></g><g><title>btrfs_btree_balance_dirty (3,249 samples, 0.25%)</title><rect x="73.1880%" y="597" width="0.2513%" height="15" fill="rgb(232,109,42)" fg:x="946212" fg:w="3249"/><text x="73.4380%" y="607.50"></text></g><g><title>queue_work_on (2,431 samples, 0.19%)</title><rect x="73.2512%" y="581" width="0.1880%" height="15" fill="rgb(248,214,46)" fg:x="947030" fg:w="2431"/><text x="73.5012%" y="591.50"></text></g><g><title>mutex_lock (747 samples, 0.06%)</title><rect x="73.4458%" y="581" width="0.0578%" height="15" fill="rgb(244,216,40)" fg:x="949546" fg:w="747"/><text x="73.6958%" y="591.50"></text></g><g><title>btrfs_record_unlink_dir (978 samples, 0.08%)</title><rect x="73.4400%" y="597" width="0.0756%" height="15" fill="rgb(231,226,31)" fg:x="949471" fg:w="978"/><text x="73.6900%" y="607.50"></text></g><g><title>mutex_unlock (156 samples, 0.01%)</title><rect x="73.5036%" y="581" width="0.0121%" height="15" fill="rgb(238,38,43)" fg:x="950293" fg:w="156"/><text x="73.7536%" y="591.50"></text></g><g><title>_raw_spin_lock (184 samples, 0.01%)</title><rect x="73.6228%" y="549" width="0.0142%" height="15" fill="rgb(208,88,43)" fg:x="951834" fg:w="184"/><text x="73.8728%" y="559.50"></text></g><g><title>mutex_lock (133 samples, 0.01%)</title><rect x="73.6374%" y="549" width="0.0103%" height="15" fill="rgb(205,136,37)" fg:x="952023" fg:w="133"/><text x="73.8874%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,141 samples, 0.09%)</title><rect x="73.5682%" y="565" width="0.0883%" height="15" fill="rgb(237,34,14)" fg:x="951128" fg:w="1141"/><text x="73.8182%" y="575.50"></text></g><g><title>btrfs_block_rsv_migrate (615 samples, 0.05%)</title><rect x="73.6571%" y="565" width="0.0476%" height="15" fill="rgb(236,193,44)" fg:x="952277" fg:w="615"/><text x="73.9071%" y="575.50"></text></g><g><title>_raw_spin_lock (545 samples, 0.04%)</title><rect x="73.6625%" y="549" width="0.0422%" height="15" fill="rgb(231,48,10)" fg:x="952347" fg:w="545"/><text x="73.9125%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,040 samples, 0.08%)</title><rect x="73.7046%" y="565" width="0.0804%" height="15" fill="rgb(213,141,34)" fg:x="952892" fg:w="1040"/><text x="73.9546%" y="575.50"></text></g><g><title>btrfs_get_delayed_node (1,008 samples, 0.08%)</title><rect x="73.7071%" y="549" width="0.0780%" height="15" fill="rgb(249,130,34)" fg:x="952924" fg:w="1008"/><text x="73.9571%" y="559.50"></text></g><g><title>inode_get_bytes (189 samples, 0.01%)</title><rect x="73.7967%" y="549" width="0.0146%" height="15" fill="rgb(219,42,41)" fg:x="954082" fg:w="189"/><text x="74.0467%" y="559.50"></text></g><g><title>_raw_spin_lock (170 samples, 0.01%)</title><rect x="73.7982%" y="533" width="0.0131%" height="15" fill="rgb(224,100,54)" fg:x="954101" fg:w="170"/><text x="74.0482%" y="543.50"></text></g><g><title>fill_stack_inode_item (418 samples, 0.03%)</title><rect x="73.7851%" y="565" width="0.0323%" height="15" fill="rgb(229,200,27)" fg:x="953932" fg:w="418"/><text x="74.0351%" y="575.50"></text></g><g><title>mutex_lock (420 samples, 0.03%)</title><rect x="73.8174%" y="565" width="0.0325%" height="15" fill="rgb(217,118,10)" fg:x="954350" fg:w="420"/><text x="74.0674%" y="575.50"></text></g><g><title>btrfs_delayed_update_inode (4,180 samples, 0.32%)</title><rect x="73.5352%" y="581" width="0.3233%" height="15" fill="rgb(206,22,3)" fg:x="950701" fg:w="4180"/><text x="73.7852%" y="591.50"></text></g><g><title>_raw_spin_lock (174 samples, 0.01%)</title><rect x="73.8616%" y="565" width="0.0135%" height="15" fill="rgb(232,163,46)" fg:x="954921" fg:w="174"/><text x="74.1116%" y="575.50"></text></g><g><title>btrfs_update_inode (4,829 samples, 0.37%)</title><rect x="73.5166%" y="597" width="0.3735%" height="15" fill="rgb(206,95,13)" fg:x="950461" fg:w="4829"/><text x="73.7666%" y="607.50"></text></g><g><title>btrfs_update_root_times (409 samples, 0.03%)</title><rect x="73.8585%" y="581" width="0.0316%" height="15" fill="rgb(253,154,18)" fg:x="954881" fg:w="409"/><text x="74.1085%" y="591.50"></text></g><g><title>ktime_get_real_ts64 (195 samples, 0.02%)</title><rect x="73.8750%" y="565" width="0.0151%" height="15" fill="rgb(219,32,23)" fg:x="955095" fg:w="195"/><text x="74.1250%" y="575.50"></text></g><g><title>_raw_spin_lock (351 samples, 0.03%)</title><rect x="73.9624%" y="565" width="0.0271%" height="15" fill="rgb(230,191,45)" fg:x="956225" fg:w="351"/><text x="74.2124%" y="575.50"></text></g><g><title>_raw_spin_lock (580 samples, 0.04%)</title><rect x="74.0398%" y="533" width="0.0449%" height="15" fill="rgb(229,64,36)" fg:x="957225" fg:w="580"/><text x="74.2898%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (154 samples, 0.01%)</title><rect x="74.0727%" y="517" width="0.0119%" height="15" fill="rgb(205,129,25)" fg:x="957651" fg:w="154"/><text x="74.3227%" y="527.50"></text></g><g><title>_raw_spin_lock (205 samples, 0.02%)</title><rect x="74.1708%" y="501" width="0.0159%" height="15" fill="rgb(254,112,7)" fg:x="958919" fg:w="205"/><text x="74.4208%" y="511.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,318 samples, 0.10%)</title><rect x="74.0849%" y="533" width="0.1019%" height="15" fill="rgb(226,53,48)" fg:x="957808" fg:w="1318"/><text x="74.3349%" y="543.50"></text></g><g><title>btrfs_reduce_alloc_profile (595 samples, 0.05%)</title><rect x="74.1408%" y="517" width="0.0460%" height="15" fill="rgb(214,153,38)" fg:x="958531" fg:w="595"/><text x="74.3908%" y="527.50"></text></g><g><title>btrfs_get_alloc_profile (170 samples, 0.01%)</title><rect x="74.2064%" y="517" width="0.0131%" height="15" fill="rgb(243,101,7)" fg:x="959379" fg:w="170"/><text x="74.4564%" y="527.50"></text></g><g><title>_raw_spin_lock (240 samples, 0.02%)</title><rect x="74.2347%" y="501" width="0.0186%" height="15" fill="rgb(240,140,22)" fg:x="959745" fg:w="240"/><text x="74.4847%" y="511.50"></text></g><g><title>calc_available_free_space.isra.0 (860 samples, 0.07%)</title><rect x="74.1868%" y="533" width="0.0665%" height="15" fill="rgb(235,114,2)" fg:x="959126" fg:w="860"/><text x="74.4368%" y="543.50"></text></g><g><title>btrfs_reduce_alloc_profile (437 samples, 0.03%)</title><rect x="74.2196%" y="517" width="0.0338%" height="15" fill="rgb(242,59,12)" fg:x="959549" fg:w="437"/><text x="74.4696%" y="527.50"></text></g><g><title>__reserve_bytes (3,106 samples, 0.24%)</title><rect x="74.0132%" y="549" width="0.2402%" height="15" fill="rgb(252,134,9)" fg:x="956881" fg:w="3106"/><text x="74.2632%" y="559.50"></text></g><g><title>btrfs_block_rsv_add (3,843 samples, 0.30%)</title><rect x="73.9563%" y="581" width="0.2972%" height="15" fill="rgb(236,4,44)" fg:x="956145" fg:w="3843"/><text x="74.2063%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (3,412 samples, 0.26%)</title><rect x="73.9896%" y="565" width="0.2639%" height="15" fill="rgb(254,172,41)" fg:x="956576" fg:w="3412"/><text x="74.2396%" y="575.50"></text></g><g><title>join_transaction (643 samples, 0.05%)</title><rect x="74.2582%" y="581" width="0.0497%" height="15" fill="rgb(244,63,20)" fg:x="960049" fg:w="643"/><text x="74.5082%" y="591.50"></text></g><g><title>_raw_spin_lock (259 samples, 0.02%)</title><rect x="74.2879%" y="565" width="0.0200%" height="15" fill="rgb(250,73,31)" fg:x="960433" fg:w="259"/><text x="74.5379%" y="575.50"></text></g><g><title>kmem_cache_alloc (535 samples, 0.04%)</title><rect x="74.3080%" y="581" width="0.0414%" height="15" fill="rgb(241,38,36)" fg:x="960692" fg:w="535"/><text x="74.5580%" y="591.50"></text></g><g><title>_raw_spin_lock (441 samples, 0.03%)</title><rect x="74.3653%" y="565" width="0.0341%" height="15" fill="rgb(245,211,2)" fg:x="961433" fg:w="441"/><text x="74.6153%" y="575.50"></text></g><g><title>btrfs_unlink (292,968 samples, 22.66%)</title><rect x="51.7389%" y="613" width="22.6606%" height="15" fill="rgb(206,120,28)" fg:x="668908" fg:w="292968"/><text x="51.9889%" y="623.50">btrfs_unlink</text></g><g><title>start_transaction (6,486 samples, 0.50%)</title><rect x="73.8979%" y="597" width="0.5017%" height="15" fill="rgb(211,59,34)" fg:x="955390" fg:w="6486"/><text x="74.1479%" y="607.50"></text></g><g><title>wait_current_trans (649 samples, 0.05%)</title><rect x="74.3493%" y="581" width="0.0502%" height="15" fill="rgb(233,168,5)" fg:x="961227" fg:w="649"/><text x="74.5993%" y="591.50"></text></g><g><title>d_delete (325 samples, 0.03%)</title><rect x="74.3995%" y="613" width="0.0251%" height="15" fill="rgb(234,33,13)" fg:x="961876" fg:w="325"/><text x="74.6495%" y="623.50"></text></g><g><title>_raw_spin_lock (203 samples, 0.02%)</title><rect x="74.4090%" y="597" width="0.0157%" height="15" fill="rgb(231,150,26)" fg:x="961998" fg:w="203"/><text x="74.6590%" y="607.50"></text></g><g><title>dentry_unlink_inode (309 samples, 0.02%)</title><rect x="74.4247%" y="613" width="0.0239%" height="15" fill="rgb(217,191,4)" fg:x="962201" fg:w="309"/><text x="74.6747%" y="623.50"></text></g><g><title>down_write (881 samples, 0.07%)</title><rect x="74.4486%" y="613" width="0.0681%" height="15" fill="rgb(246,198,38)" fg:x="962510" fg:w="881"/><text x="74.6986%" y="623.50"></text></g><g><title>fsnotify (623 samples, 0.05%)</title><rect x="74.5167%" y="613" width="0.0482%" height="15" fill="rgb(245,64,37)" fg:x="963391" fg:w="623"/><text x="74.7667%" y="623.50"></text></g><g><title>ihold (173 samples, 0.01%)</title><rect x="74.5649%" y="613" width="0.0134%" height="15" fill="rgb(250,30,36)" fg:x="964014" fg:w="173"/><text x="74.8149%" y="623.50"></text></g><g><title>iput.part.0 (495 samples, 0.04%)</title><rect x="74.5812%" y="613" width="0.0383%" height="15" fill="rgb(217,86,53)" fg:x="964224" fg:w="495"/><text x="74.8312%" y="623.50"></text></g><g><title>_atomic_dec_and_lock (434 samples, 0.03%)</title><rect x="74.5859%" y="597" width="0.0336%" height="15" fill="rgb(228,157,16)" fg:x="964285" fg:w="434"/><text x="74.8359%" y="607.50"></text></g><g><title>btrfs_permission (156 samples, 0.01%)</title><rect x="74.6396%" y="581" width="0.0121%" height="15" fill="rgb(217,59,31)" fg:x="964980" fg:w="156"/><text x="74.8896%" y="591.50"></text></g><g><title>inode_permission.part.0 (303 samples, 0.02%)</title><rect x="74.6309%" y="597" width="0.0234%" height="15" fill="rgb(237,138,41)" fg:x="964867" fg:w="303"/><text x="74.8809%" y="607.50"></text></g><g><title>may_delete (465 samples, 0.04%)</title><rect x="74.6195%" y="613" width="0.0360%" height="15" fill="rgb(227,91,49)" fg:x="964720" fg:w="465"/><text x="74.8695%" y="623.50"></text></g><g><title>do_unlinkat (309,717 samples, 23.96%)</title><rect x="50.7242%" y="645" width="23.9561%" height="15" fill="rgb(247,21,44)" fg:x="655789" fg:w="309717"/><text x="50.9742%" y="655.50">do_unlinkat</text></g><g><title>vfs_unlink (297,076 samples, 22.98%)</title><rect x="51.7020%" y="629" width="22.9783%" height="15" fill="rgb(219,210,51)" fg:x="668430" fg:w="297076"/><text x="51.9520%" y="639.50">vfs_unlink</text></g><g><title>up_write (209 samples, 0.02%)</title><rect x="74.6642%" y="613" width="0.0162%" height="15" fill="rgb(209,140,6)" fg:x="965297" fg:w="209"/><text x="74.9142%" y="623.50"></text></g><g><title>do_syscall_64 (374,373 samples, 28.96%)</title><rect x="45.7309%" y="661" width="28.9571%" height="15" fill="rgb(221,188,24)" fg:x="591233" fg:w="374373"/><text x="45.9809%" y="671.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (375,490 samples, 29.04%)</title><rect x="45.7095%" y="677" width="29.0435%" height="15" fill="rgb(232,154,20)" fg:x="590956" fg:w="375490"/><text x="45.9595%" y="687.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (840 samples, 0.06%)</title><rect x="74.6881%" y="661" width="0.0650%" height="15" fill="rgb(244,137,50)" fg:x="965606" fg:w="840"/><text x="74.9381%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (763 samples, 0.06%)</title><rect x="74.6940%" y="645" width="0.0590%" height="15" fill="rgb(225,185,43)" fg:x="965683" fg:w="763"/><text x="74.9440%" y="655.50"></text></g><g><title>switch_fpu_return (484 samples, 0.04%)</title><rect x="74.7156%" y="629" width="0.0374%" height="15" fill="rgb(213,205,38)" fg:x="965962" fg:w="484"/><text x="74.9656%" y="639.50"></text></g><g><title>copy_kernel_to_fpregs (168 samples, 0.01%)</title><rect x="74.7400%" y="613" width="0.0130%" height="15" fill="rgb(236,73,12)" fg:x="966278" fg:w="168"/><text x="74.9900%" y="623.50"></text></g><g><title>syscall_return_via_sysret (265 samples, 0.02%)</title><rect x="74.7560%" y="677" width="0.0205%" height="15" fill="rgb(235,219,13)" fg:x="966484" fg:w="265"/><text x="75.0060%" y="687.50"></text></g><g><title>__GI_unlinkat (377,055 samples, 29.16%)</title><rect x="45.6119%" y="693" width="29.1646%" height="15" fill="rgb(218,59,36)" fg:x="589695" fg:w="377055"/><text x="45.8619%" y="703.50">__GI_unlinkat</text></g><g><title>_int_free (223 samples, 0.02%)</title><rect x="74.7844%" y="677" width="0.0172%" height="15" fill="rgb(205,110,39)" fg:x="966851" fg:w="223"/><text x="75.0344%" y="687.50"></text></g><g><title>__closedir (306 samples, 0.02%)</title><rect x="74.7780%" y="693" width="0.0237%" height="15" fill="rgb(218,206,42)" fg:x="966769" fg:w="306"/><text x="75.0280%" y="703.50"></text></g><g><title>__dirfd (169 samples, 0.01%)</title><rect x="74.8018%" y="693" width="0.0131%" height="15" fill="rgb(248,125,24)" fg:x="967076" fg:w="169"/><text x="75.0518%" y="703.50"></text></g><g><title>__errno_location (162 samples, 0.01%)</title><rect x="74.8148%" y="693" width="0.0125%" height="15" fill="rgb(242,28,27)" fg:x="967245" fg:w="162"/><text x="75.0648%" y="703.50"></text></g><g><title>__x64_sys_fcntl (135 samples, 0.01%)</title><rect x="74.8322%" y="613" width="0.0104%" height="15" fill="rgb(216,228,15)" fg:x="967469" fg:w="135"/><text x="75.0822%" y="623.50"></text></g><g><title>do_syscall_64 (149 samples, 0.01%)</title><rect x="74.8311%" y="629" width="0.0115%" height="15" fill="rgb(235,116,46)" fg:x="967456" fg:w="149"/><text x="75.0811%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (162 samples, 0.01%)</title><rect x="74.8311%" y="645" width="0.0125%" height="15" fill="rgb(224,18,32)" fg:x="967455" fg:w="162"/><text x="75.0811%" y="655.50"></text></g><g><title>__GI___fcntl64_nocancel (217 samples, 0.02%)</title><rect x="74.8277%" y="677" width="0.0168%" height="15" fill="rgb(252,5,12)" fg:x="967411" fg:w="217"/><text x="75.0777%" y="687.50"></text></g><g><title>__fcntl64_nocancel_adjusted (207 samples, 0.02%)</title><rect x="74.8284%" y="661" width="0.0160%" height="15" fill="rgb(251,36,5)" fg:x="967421" fg:w="207"/><text x="75.0784%" y="671.50"></text></g><g><title>btrfs_getattr (169 samples, 0.01%)</title><rect x="74.8615%" y="597" width="0.0131%" height="15" fill="rgb(217,53,14)" fg:x="967849" fg:w="169"/><text x="75.1115%" y="607.50"></text></g><g><title>__do_sys_newfstat (456 samples, 0.04%)</title><rect x="74.8501%" y="629" width="0.0353%" height="15" fill="rgb(215,86,45)" fg:x="967701" fg:w="456"/><text x="75.1001%" y="639.50"></text></g><g><title>vfs_fstat (350 samples, 0.03%)</title><rect x="74.8583%" y="613" width="0.0271%" height="15" fill="rgb(242,169,11)" fg:x="967807" fg:w="350"/><text x="75.1083%" y="623.50"></text></g><g><title>do_syscall_64 (475 samples, 0.04%)</title><rect x="74.8492%" y="645" width="0.0367%" height="15" fill="rgb(211,213,45)" fg:x="967689" fg:w="475"/><text x="75.0992%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (493 samples, 0.04%)</title><rect x="74.8488%" y="661" width="0.0381%" height="15" fill="rgb(205,88,11)" fg:x="967684" fg:w="493"/><text x="75.0988%" y="671.50"></text></g><g><title>__GI___fxstat (556 samples, 0.04%)</title><rect x="74.8445%" y="677" width="0.0430%" height="15" fill="rgb(252,69,26)" fg:x="967628" fg:w="556"/><text x="75.0945%" y="687.50"></text></g><g><title>__GI___fcntl64_nocancel (156 samples, 0.01%)</title><rect x="74.8886%" y="661" width="0.0121%" height="15" fill="rgb(246,123,37)" fg:x="968199" fg:w="156"/><text x="75.1386%" y="671.50"></text></g><g><title>__fcntl64_nocancel_adjusted (153 samples, 0.01%)</title><rect x="74.8889%" y="645" width="0.0118%" height="15" fill="rgb(212,205,5)" fg:x="968202" fg:w="153"/><text x="75.1389%" y="655.50"></text></g><g><title>malloc_consolidate (151 samples, 0.01%)</title><rect x="74.9216%" y="629" width="0.0117%" height="15" fill="rgb(253,148,0)" fg:x="968626" fg:w="151"/><text x="75.1716%" y="639.50"></text></g><g><title>__GI___libc_malloc (437 samples, 0.03%)</title><rect x="74.9007%" y="661" width="0.0338%" height="15" fill="rgb(239,22,4)" fg:x="968355" fg:w="437"/><text x="75.1507%" y="671.50"></text></g><g><title>_int_malloc (325 samples, 0.03%)</title><rect x="74.9093%" y="645" width="0.0251%" height="15" fill="rgb(226,26,53)" fg:x="968467" fg:w="325"/><text x="75.1593%" y="655.50"></text></g><g><title>__fdopendir (1,414 samples, 0.11%)</title><rect x="74.8274%" y="693" width="0.1094%" height="15" fill="rgb(225,229,45)" fg:x="967407" fg:w="1414"/><text x="75.0774%" y="703.50"></text></g><g><title>__alloc_dir (637 samples, 0.05%)</title><rect x="74.8875%" y="677" width="0.0493%" height="15" fill="rgb(220,60,37)" fg:x="968184" fg:w="637"/><text x="75.1375%" y="687.50"></text></g><g><title>__alloc_fd (134 samples, 0.01%)</title><rect x="74.9591%" y="613" width="0.0104%" height="15" fill="rgb(217,180,35)" fg:x="969110" fg:w="134"/><text x="75.2091%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (136 samples, 0.01%)</title><rect x="74.9958%" y="533" width="0.0105%" height="15" fill="rgb(229,7,53)" fg:x="969585" fg:w="136"/><text x="75.2458%" y="543.50"></text></g><g><title>kmem_cache_alloc (472 samples, 0.04%)</title><rect x="74.9889%" y="549" width="0.0365%" height="15" fill="rgb(254,137,3)" fg:x="969495" fg:w="472"/><text x="75.2389%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (238 samples, 0.02%)</title><rect x="75.0070%" y="533" width="0.0184%" height="15" fill="rgb(215,140,41)" fg:x="969729" fg:w="238"/><text x="75.2570%" y="543.50"></text></g><g><title>__alloc_file (709 samples, 0.05%)</title><rect x="74.9844%" y="565" width="0.0548%" height="15" fill="rgb(250,80,15)" fg:x="969437" fg:w="709"/><text x="75.2344%" y="575.50"></text></g><g><title>security_file_alloc (179 samples, 0.01%)</title><rect x="75.0254%" y="549" width="0.0138%" height="15" fill="rgb(252,191,6)" fg:x="969967" fg:w="179"/><text x="75.2754%" y="559.50"></text></g><g><title>alloc_empty_file (751 samples, 0.06%)</title><rect x="74.9826%" y="581" width="0.0581%" height="15" fill="rgb(246,217,18)" fg:x="969414" fg:w="751"/><text x="75.2326%" y="591.50"></text></g><g><title>memset_erms (143 samples, 0.01%)</title><rect x="75.0709%" y="533" width="0.0111%" height="15" fill="rgb(223,93,7)" fg:x="970555" fg:w="143"/><text x="75.3209%" y="543.50"></text></g><g><title>btrfs_opendir (372 samples, 0.03%)</title><rect x="75.0565%" y="565" width="0.0288%" height="15" fill="rgb(225,55,52)" fg:x="970370" fg:w="372"/><text x="75.3065%" y="575.50"></text></g><g><title>kmem_cache_alloc_trace (341 samples, 0.03%)</title><rect x="75.0589%" y="549" width="0.0264%" height="15" fill="rgb(240,31,24)" fg:x="970401" fg:w="341"/><text x="75.3089%" y="559.50"></text></g><g><title>security_file_open (279 samples, 0.02%)</title><rect x="75.0963%" y="565" width="0.0216%" height="15" fill="rgb(205,56,52)" fg:x="970884" fg:w="279"/><text x="75.3463%" y="575.50"></text></g><g><title>do_dentry_open (916 samples, 0.07%)</title><rect x="75.0472%" y="581" width="0.0709%" height="15" fill="rgb(246,146,12)" fg:x="970249" fg:w="916"/><text x="75.2972%" y="591.50"></text></g><g><title>lookup_fast (161 samples, 0.01%)</title><rect x="75.1252%" y="581" width="0.0125%" height="15" fill="rgb(239,84,36)" fg:x="971258" fg:w="161"/><text x="75.3752%" y="591.50"></text></g><g><title>__d_lookup_rcu (142 samples, 0.01%)</title><rect x="75.1267%" y="565" width="0.0110%" height="15" fill="rgb(207,41,40)" fg:x="971277" fg:w="142"/><text x="75.3767%" y="575.50"></text></g><g><title>path_init (130 samples, 0.01%)</title><rect x="75.1473%" y="581" width="0.0101%" height="15" fill="rgb(241,179,25)" fg:x="971544" fg:w="130"/><text x="75.3973%" y="591.50"></text></g><g><title>do_filp_open (2,437 samples, 0.19%)</title><rect x="74.9732%" y="613" width="0.1885%" height="15" fill="rgb(210,0,34)" fg:x="969293" fg:w="2437"/><text x="75.2232%" y="623.50"></text></g><g><title>path_openat (2,395 samples, 0.19%)</title><rect x="74.9765%" y="597" width="0.1852%" height="15" fill="rgb(225,217,29)" fg:x="969335" fg:w="2395"/><text x="75.2265%" y="607.50"></text></g><g><title>kmem_cache_alloc (137 samples, 0.01%)</title><rect x="75.1715%" y="597" width="0.0106%" height="15" fill="rgb(216,191,38)" fg:x="971856" fg:w="137"/><text x="75.4215%" y="607.50"></text></g><g><title>getname_flags.part.0 (302 samples, 0.02%)</title><rect x="75.1706%" y="613" width="0.0234%" height="15" fill="rgb(232,140,52)" fg:x="971844" fg:w="302"/><text x="75.4206%" y="623.50"></text></g><g><title>strncpy_from_user (153 samples, 0.01%)</title><rect x="75.1821%" y="597" width="0.0118%" height="15" fill="rgb(223,158,51)" fg:x="971993" fg:w="153"/><text x="75.4321%" y="607.50"></text></g><g><title>__x64_sys_openat (3,167 samples, 0.24%)</title><rect x="74.9535%" y="645" width="0.2450%" height="15" fill="rgb(235,29,51)" fg:x="969038" fg:w="3167"/><text x="75.2035%" y="655.50"></text></g><g><title>do_sys_openat2 (3,136 samples, 0.24%)</title><rect x="74.9559%" y="629" width="0.2426%" height="15" fill="rgb(215,181,18)" fg:x="969069" fg:w="3136"/><text x="75.2059%" y="639.50"></text></g><g><title>do_syscall_64 (3,212 samples, 0.25%)</title><rect x="74.9508%" y="661" width="0.2484%" height="15" fill="rgb(227,125,34)" fg:x="969003" fg:w="3212"/><text x="75.2008%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,241 samples, 0.25%)</title><rect x="74.9503%" y="677" width="0.2507%" height="15" fill="rgb(230,197,49)" fg:x="968996" fg:w="3241"/><text x="75.2003%" y="687.50"></text></g><g><title>__libc_openat64 (3,401 samples, 0.26%)</title><rect x="74.9397%" y="693" width="0.2631%" height="15" fill="rgb(239,141,16)" fg:x="968859" fg:w="3401"/><text x="75.1897%" y="703.50"></text></g><g><title>_int_free (836 samples, 0.06%)</title><rect x="75.2081%" y="693" width="0.0647%" height="15" fill="rgb(225,105,43)" fg:x="972330" fg:w="836"/><text x="75.4581%" y="703.50"></text></g><g><title>tcache_put (143 samples, 0.01%)</title><rect x="75.2617%" y="677" width="0.0111%" height="15" fill="rgb(214,131,14)" fg:x="973023" fg:w="143"/><text x="75.5117%" y="687.50"></text></g><g><title>free@plt (493 samples, 0.04%)</title><rect x="75.2788%" y="693" width="0.0381%" height="15" fill="rgb(229,177,11)" fg:x="973244" fg:w="493"/><text x="75.5288%" y="703.50"></text></g><g><title>ThreadStateTransition::transition_from_native (156 samples, 0.01%)</title><rect x="75.3345%" y="677" width="0.0121%" height="15" fill="rgb(231,180,14)" fg:x="973963" fg:w="156"/><text x="75.5845%" y="687.50"></text></g><g><title>jni_ExceptionOccurred (387 samples, 0.03%)</title><rect x="75.3170%" y="693" width="0.0299%" height="15" fill="rgb(232,88,2)" fg:x="973737" fg:w="387"/><text x="75.5670%" y="703.50"></text></g><g><title>HandleMark::pop_and_restore (211 samples, 0.02%)</title><rect x="75.4192%" y="677" width="0.0163%" height="15" fill="rgb(205,220,8)" fg:x="975059" fg:w="211"/><text x="75.6692%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (1,215 samples, 0.09%)</title><rect x="75.4373%" y="677" width="0.0940%" height="15" fill="rgb(225,23,53)" fg:x="975292" fg:w="1215"/><text x="75.6873%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (982 samples, 0.08%)</title><rect x="75.5312%" y="677" width="0.0760%" height="15" fill="rgb(213,62,29)" fg:x="976507" fg:w="982"/><text x="75.7812%" y="687.50"></text></g><g><title>[libc-2.31.so] (1,068 samples, 0.08%)</title><rect x="75.6072%" y="677" width="0.0826%" height="15" fill="rgb(227,75,7)" fg:x="977489" fg:w="1068"/><text x="75.8572%" y="687.50"></text></g><g><title>check_bounds (841 samples, 0.07%)</title><rect x="75.6910%" y="677" width="0.0650%" height="15" fill="rgb(207,105,14)" fg:x="978573" fg:w="841"/><text x="75.9410%" y="687.50"></text></g><g><title>jni_GetByteArrayRegion (5,702 samples, 0.44%)</title><rect x="75.3471%" y="693" width="0.4410%" height="15" fill="rgb(245,62,29)" fg:x="974126" fg:w="5702"/><text x="75.5971%" y="703.50"></text></g><g><title>memmove@plt (414 samples, 0.03%)</title><rect x="75.7561%" y="677" width="0.0320%" height="15" fill="rgb(236,202,4)" fg:x="979414" fg:w="414"/><text x="76.0061%" y="687.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (1,507 samples, 0.12%)</title><rect x="75.8627%" y="677" width="0.1166%" height="15" fill="rgb(250,67,1)" fg:x="980793" fg:w="1507"/><text x="76.1127%" y="687.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (1,300 samples, 0.10%)</title><rect x="75.8788%" y="661" width="0.1006%" height="15" fill="rgb(253,115,44)" fg:x="981000" fg:w="1300"/><text x="76.1288%" y="671.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (1,150 samples, 0.09%)</title><rect x="75.8904%" y="645" width="0.0890%" height="15" fill="rgb(251,139,18)" fg:x="981150" fg:w="1150"/><text x="76.1404%" y="655.50"></text></g><g><title>HandleMark::pop_and_restore (677 samples, 0.05%)</title><rect x="75.9793%" y="677" width="0.0524%" height="15" fill="rgb(218,22,32)" fg:x="982300" fg:w="677"/><text x="76.2293%" y="687.50"></text></g><g><title>JNIHandles::make_local (655 samples, 0.05%)</title><rect x="76.0317%" y="677" width="0.0507%" height="15" fill="rgb(243,53,5)" fg:x="982977" fg:w="655"/><text x="76.2817%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (818 samples, 0.06%)</title><rect x="76.0845%" y="677" width="0.0633%" height="15" fill="rgb(227,56,16)" fg:x="983660" fg:w="818"/><text x="76.3345%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,038 samples, 0.08%)</title><rect x="76.1478%" y="677" width="0.0803%" height="15" fill="rgb(245,53,0)" fg:x="984478" fg:w="1038"/><text x="76.3978%" y="687.50"></text></g><g><title>jni_GetObjectField (5,693 samples, 0.44%)</title><rect x="75.7881%" y="693" width="0.4403%" height="15" fill="rgb(216,170,35)" fg:x="979828" fg:w="5693"/><text x="76.0381%" y="703.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;565366ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 565366ul&gt;::oop_access_barrier (134 samples, 0.01%)</title><rect x="76.3140%" y="677" width="0.0104%" height="15" fill="rgb(211,200,8)" fg:x="986627" fg:w="134"/><text x="76.5640%" y="687.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 573558ul&gt;::oop_access_barrier (657 samples, 0.05%)</title><rect x="76.3244%" y="677" width="0.0508%" height="15" fill="rgb(228,204,44)" fg:x="986761" fg:w="657"/><text x="76.5744%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (744 samples, 0.06%)</title><rect x="76.3768%" y="677" width="0.0575%" height="15" fill="rgb(214,121,17)" fg:x="987439" fg:w="744"/><text x="76.6268%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,155 samples, 0.09%)</title><rect x="76.4343%" y="677" width="0.0893%" height="15" fill="rgb(233,64,38)" fg:x="988183" fg:w="1155"/><text x="76.6843%" y="687.50"></text></g><g><title>jni_GetStringLength (3,824 samples, 0.30%)</title><rect x="76.2284%" y="693" width="0.2958%" height="15" fill="rgb(253,54,19)" fg:x="985521" fg:w="3824"/><text x="76.4784%" y="703.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (491 samples, 0.04%)</title><rect x="76.8441%" y="629" width="0.0380%" height="15" fill="rgb(253,94,18)" fg:x="993480" fg:w="491"/><text x="77.0941%" y="639.50"></text></g><g><title>ThreadHeapSampler::enabled (158 samples, 0.01%)</title><rect x="76.9085%" y="613" width="0.0122%" height="15" fill="rgb(227,57,52)" fg:x="994313" fg:w="158"/><text x="77.1585%" y="623.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (504 samples, 0.04%)</title><rect x="76.8820%" y="629" width="0.0390%" height="15" fill="rgb(230,228,50)" fg:x="993971" fg:w="504"/><text x="77.1320%" y="639.50"></text></g><g><title>[libc-2.31.so] (384 samples, 0.03%)</title><rect x="76.9512%" y="613" width="0.0297%" height="15" fill="rgb(217,205,27)" fg:x="994865" fg:w="384"/><text x="77.2012%" y="623.50"></text></g><g><title>ObjAllocator::initialize (881 samples, 0.07%)</title><rect x="76.9218%" y="629" width="0.0681%" height="15" fill="rgb(252,71,50)" fg:x="994485" fg:w="881"/><text x="77.1718%" y="639.50"></text></g><g><title>__tls_get_addr (665 samples, 0.05%)</title><rect x="76.9900%" y="629" width="0.0514%" height="15" fill="rgb(209,86,4)" fg:x="995367" fg:w="665"/><text x="77.2400%" y="639.50"></text></g><g><title>__tls_get_addr@plt (268 samples, 0.02%)</title><rect x="77.0415%" y="629" width="0.0207%" height="15" fill="rgb(229,94,0)" fg:x="996032" fg:w="268"/><text x="77.2915%" y="639.50"></text></g><g><title>MemAllocator::allocate (3,519 samples, 0.27%)</title><rect x="76.7905%" y="645" width="0.2722%" height="15" fill="rgb(252,223,21)" fg:x="992788" fg:w="3519"/><text x="77.0405%" y="655.50"></text></g><g><title>CollectedHeap::obj_allocate (3,692 samples, 0.29%)</title><rect x="76.7780%" y="661" width="0.2856%" height="15" fill="rgb(230,210,4)" fg:x="992626" fg:w="3692"/><text x="77.0280%" y="671.50"></text></g><g><title>InstanceKlass::allocate_instance (4,324 samples, 0.33%)</title><rect x="76.7294%" y="677" width="0.3345%" height="15" fill="rgb(240,149,38)" fg:x="991997" fg:w="4324"/><text x="76.9794%" y="687.50"></text></g><g><title>JNIHandles::make_local (745 samples, 0.06%)</title><rect x="77.0647%" y="677" width="0.0576%" height="15" fill="rgb(254,105,20)" fg:x="996332" fg:w="745"/><text x="77.3147%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (602 samples, 0.05%)</title><rect x="77.1285%" y="677" width="0.0466%" height="15" fill="rgb(253,87,46)" fg:x="997157" fg:w="602"/><text x="77.3785%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,118 samples, 0.09%)</title><rect x="77.1750%" y="677" width="0.0865%" height="15" fill="rgb(253,116,33)" fg:x="997759" fg:w="1118"/><text x="77.4250%" y="687.50"></text></g><g><title>InstanceKlass::check_valid_for_instantiation (162 samples, 0.01%)</title><rect x="77.3724%" y="661" width="0.0125%" height="15" fill="rgb(229,198,5)" fg:x="1000311" fg:w="162"/><text x="77.6224%" y="671.50"></text></g><g><title>java_lang_Class::as_Klass (182 samples, 0.01%)</title><rect x="77.3925%" y="661" width="0.0141%" height="15" fill="rgb(242,38,37)" fg:x="1000571" fg:w="182"/><text x="77.6425%" y="671.50"></text></g><g><title>alloc_object (2,323 samples, 0.18%)</title><rect x="77.2615%" y="677" width="0.1797%" height="15" fill="rgb(242,69,53)" fg:x="998877" fg:w="2323"/><text x="77.5115%" y="687.50"></text></g><g><title>oopDesc::metadata_field (447 samples, 0.03%)</title><rect x="77.4066%" y="661" width="0.0346%" height="15" fill="rgb(249,80,16)" fg:x="1000753" fg:w="447"/><text x="77.6566%" y="671.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (2,853 samples, 0.22%)</title><rect x="77.6286%" y="661" width="0.2207%" height="15" fill="rgb(206,128,11)" fg:x="1003623" fg:w="2853"/><text x="77.8786%" y="671.50"></text></g><g><title>HandleMark::~HandleMark (162 samples, 0.01%)</title><rect x="78.0505%" y="645" width="0.0125%" height="15" fill="rgb(212,35,20)" fg:x="1009078" fg:w="162"/><text x="78.3005%" y="655.50"></text></g><g><title>JNIHandleBlock::release_block (321 samples, 0.02%)</title><rect x="78.0645%" y="645" width="0.0248%" height="15" fill="rgb(236,79,13)" fg:x="1009258" fg:w="321"/><text x="78.3145%" y="655.50"></text></g><g><title>JavaCallArguments::parameters (881 samples, 0.07%)</title><rect x="78.0893%" y="645" width="0.0681%" height="15" fill="rgb(233,123,3)" fg:x="1009579" fg:w="881"/><text x="78.3393%" y="655.50"></text></g><g><title>JNIHandleBlock::allocate_block (574 samples, 0.04%)</title><rect x="78.2750%" y="629" width="0.0444%" height="15" fill="rgb(214,93,52)" fg:x="1011980" fg:w="574"/><text x="78.5250%" y="639.50"></text></g><g><title>ThreadShadow::clear_pending_exception (359 samples, 0.03%)</title><rect x="78.3206%" y="629" width="0.0278%" height="15" fill="rgb(251,37,40)" fg:x="1012570" fg:w="359"/><text x="78.5706%" y="639.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (2,481 samples, 0.19%)</title><rect x="78.1574%" y="645" width="0.1919%" height="15" fill="rgb(227,80,54)" fg:x="1010460" fg:w="2481"/><text x="78.4074%" y="655.50"></text></g><g><title>AbstractInterpreter::size_top_interpreter_activation (185 samples, 0.01%)</title><rect x="78.4150%" y="629" width="0.0143%" height="15" fill="rgb(254,48,11)" fg:x="1013790" fg:w="185"/><text x="78.6650%" y="639.50"></text></g><g><title>JavaCalls::call_helper (7,468 samples, 0.58%)</title><rect x="77.8533%" y="661" width="0.5776%" height="15" fill="rgb(235,193,26)" fg:x="1006528" fg:w="7468"/><text x="78.1033%" y="671.50"></text></g><g><title>os::stack_shadow_pages_available (988 samples, 0.08%)</title><rect x="78.3545%" y="645" width="0.0764%" height="15" fill="rgb(229,99,21)" fg:x="1013008" fg:w="988"/><text x="78.6045%" y="655.50"></text></g><g><title>methodHandle::operator= (276 samples, 0.02%)</title><rect x="78.4359%" y="661" width="0.0213%" height="15" fill="rgb(211,140,41)" fg:x="1014060" fg:w="276"/><text x="78.6859%" y="671.50"></text></g><g><title>methodHandle::~methodHandle (648 samples, 0.05%)</title><rect x="78.4572%" y="661" width="0.0501%" height="15" fill="rgb(240,227,30)" fg:x="1014336" fg:w="648"/><text x="78.7072%" y="671.50"></text></g><g><title>__tls_get_addr (133 samples, 0.01%)</title><rect x="78.5503%" y="645" width="0.0103%" height="15" fill="rgb(215,224,45)" fg:x="1015539" fg:w="133"/><text x="78.8003%" y="655.50"></text></g><g><title>jni_invoke_nonstatic (14,482 samples, 1.12%)</title><rect x="77.4430%" y="677" width="1.1202%" height="15" fill="rgb(206,123,31)" fg:x="1001223" fg:w="14482"/><text x="77.6930%" y="687.50"></text></g><g><title>resource_allocate_bytes (681 samples, 0.05%)</title><rect x="78.5105%" y="661" width="0.0527%" height="15" fill="rgb(210,138,16)" fg:x="1015024" fg:w="681"/><text x="78.7605%" y="671.50"></text></g><g><title>jni_NewObjectV (26,386 samples, 2.04%)</title><rect x="76.5244%" y="693" width="2.0409%" height="15" fill="rgb(228,57,28)" fg:x="989347" fg:w="26386"/><text x="76.7744%" y="703.50">j..</text></g><g><title>operator delete (146 samples, 0.01%)</title><rect x="78.5678%" y="693" width="0.0113%" height="15" fill="rgb(242,170,10)" fg:x="1015766" fg:w="146"/><text x="78.8178%" y="703.50"></text></g><g><title>operator delete@plt (577 samples, 0.04%)</title><rect x="78.5791%" y="693" width="0.0446%" height="15" fill="rgb(228,214,39)" fg:x="1015912" fg:w="577"/><text x="78.8291%" y="703.50"></text></g><g><title>operator delete[] (323 samples, 0.02%)</title><rect x="78.6238%" y="693" width="0.0250%" height="15" fill="rgb(218,179,33)" fg:x="1016489" fg:w="323"/><text x="78.8738%" y="703.50"></text></g><g><title>__GI___libc_malloc (1,765 samples, 0.14%)</title><rect x="78.6509%" y="677" width="0.1365%" height="15" fill="rgb(235,193,39)" fg:x="1016840" fg:w="1765"/><text x="78.9009%" y="687.50"></text></g><g><title>tcache_get (772 samples, 0.06%)</title><rect x="78.7277%" y="661" width="0.0597%" height="15" fill="rgb(219,221,36)" fg:x="1017833" fg:w="772"/><text x="78.9777%" y="671.50"></text></g><g><title>operator new (2,201 samples, 0.17%)</title><rect x="78.6488%" y="693" width="0.1702%" height="15" fill="rgb(248,218,19)" fg:x="1016812" fg:w="2201"/><text x="78.8988%" y="703.50"></text></g><g><title>malloc@plt (402 samples, 0.03%)</title><rect x="78.7879%" y="677" width="0.0311%" height="15" fill="rgb(205,50,9)" fg:x="1018611" fg:w="402"/><text x="79.0379%" y="687.50"></text></g><g><title>operator new@plt (610 samples, 0.05%)</title><rect x="78.8190%" y="693" width="0.0472%" height="15" fill="rgb(238,81,28)" fg:x="1019013" fg:w="610"/><text x="79.0690%" y="703.50"></text></g><g><title>operator new[] (326 samples, 0.03%)</title><rect x="78.8662%" y="693" width="0.0252%" height="15" fill="rgb(235,110,19)" fg:x="1019623" fg:w="326"/><text x="79.1162%" y="703.50"></text></g><g><title>_int_malloc (348 samples, 0.03%)</title><rect x="78.9283%" y="645" width="0.0269%" height="15" fill="rgb(214,7,14)" fg:x="1020426" fg:w="348"/><text x="79.1783%" y="655.50"></text></g><g><title>__GI___libc_malloc (737 samples, 0.06%)</title><rect x="78.9039%" y="661" width="0.0570%" height="15" fill="rgb(211,77,3)" fg:x="1020111" fg:w="737"/><text x="79.1539%" y="671.50"></text></g><g><title>operator new (766 samples, 0.06%)</title><rect x="78.9036%" y="677" width="0.0592%" height="15" fill="rgb(229,5,9)" fg:x="1020107" fg:w="766"/><text x="79.1536%" y="687.50"></text></g><g><title>[libunix_jni.so] (863,899 samples, 66.82%)</title><rect x="12.1454%" y="709" width="66.8212%" height="15" fill="rgb(225,90,11)" fg:x="157022" fg:w="863899"/><text x="12.3954%" y="719.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (868 samples, 0.07%)</title><rect x="78.8994%" y="693" width="0.0671%" height="15" fill="rgb(242,56,8)" fg:x="1020053" fg:w="868"/><text x="79.1494%" y="703.50"></text></g><g><title>InstanceKlass::allocate_objArray (175 samples, 0.01%)</title><rect x="89.3894%" y="677" width="0.0135%" height="15" fill="rgb(249,212,39)" fg:x="1155672" fg:w="175"/><text x="89.6394%" y="687.50"></text></g><g><title>InterpreterRuntime::anewarray (251 samples, 0.02%)</title><rect x="89.3848%" y="693" width="0.0194%" height="15" fill="rgb(236,90,9)" fg:x="1155613" fg:w="251"/><text x="89.6348%" y="703.50"></text></g><g><title>TieredThresholdPolicy::event (244 samples, 0.02%)</title><rect x="89.4115%" y="661" width="0.0189%" height="15" fill="rgb(206,88,35)" fg:x="1155959" fg:w="244"/><text x="89.6615%" y="671.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (208 samples, 0.02%)</title><rect x="89.4143%" y="645" width="0.0161%" height="15" fill="rgb(205,126,30)" fg:x="1155995" fg:w="208"/><text x="89.6643%" y="655.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (310 samples, 0.02%)</title><rect x="89.4067%" y="693" width="0.0240%" height="15" fill="rgb(230,176,12)" fg:x="1155896" fg:w="310"/><text x="89.6567%" y="703.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (308 samples, 0.02%)</title><rect x="89.4068%" y="677" width="0.0238%" height="15" fill="rgb(243,19,9)" fg:x="1155898" fg:w="308"/><text x="89.6568%" y="687.50"></text></g><g><title>LinkResolver::resolve_invoke (211 samples, 0.02%)</title><rect x="89.4552%" y="661" width="0.0163%" height="15" fill="rgb(245,171,17)" fg:x="1156523" fg:w="211"/><text x="89.7052%" y="671.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (308 samples, 0.02%)</title><rect x="89.4499%" y="677" width="0.0238%" height="15" fill="rgb(227,52,21)" fg:x="1156455" fg:w="308"/><text x="89.6999%" y="687.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (419 samples, 0.03%)</title><rect x="89.4463%" y="693" width="0.0324%" height="15" fill="rgb(238,69,14)" fg:x="1156408" fg:w="419"/><text x="89.6963%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (296 samples, 0.02%)</title><rect x="89.5248%" y="549" width="0.0229%" height="15" fill="rgb(241,156,39)" fg:x="1157423" fg:w="296"/><text x="89.7748%" y="559.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (322 samples, 0.02%)</title><rect x="89.5229%" y="565" width="0.0249%" height="15" fill="rgb(212,227,28)" fg:x="1157398" fg:w="322"/><text x="89.7729%" y="575.50"></text></g><g><title>ClassFileParser::parse_constant_pool (330 samples, 0.03%)</title><rect x="89.5224%" y="581" width="0.0255%" height="15" fill="rgb(209,118,27)" fg:x="1157392" fg:w="330"/><text x="89.7724%" y="591.50"></text></g><g><title>ClassFileParser::ClassFileParser (416 samples, 0.03%)</title><rect x="89.5219%" y="613" width="0.0322%" height="15" fill="rgb(226,102,5)" fg:x="1157386" fg:w="416"/><text x="89.7719%" y="623.50"></text></g><g><title>ClassFileParser::parse_stream (415 samples, 0.03%)</title><rect x="89.5220%" y="597" width="0.0321%" height="15" fill="rgb(223,34,3)" fg:x="1157387" fg:w="415"/><text x="89.7720%" y="607.50"></text></g><g><title>KlassFactory::create_from_stream (516 samples, 0.04%)</title><rect x="89.5219%" y="629" width="0.0399%" height="15" fill="rgb(221,81,38)" fg:x="1157386" fg:w="516"/><text x="89.7719%" y="639.50"></text></g><g><title>JVM_DefineClassWithSource (539 samples, 0.04%)</title><rect x="89.5214%" y="677" width="0.0417%" height="15" fill="rgb(236,219,28)" fg:x="1157379" fg:w="539"/><text x="89.7714%" y="687.50"></text></g><g><title>jvm_define_class_common (537 samples, 0.04%)</title><rect x="89.5215%" y="661" width="0.0415%" height="15" fill="rgb(213,200,14)" fg:x="1157381" fg:w="537"/><text x="89.7715%" y="671.50"></text></g><g><title>SystemDictionary::resolve_from_stream (532 samples, 0.04%)</title><rect x="89.5219%" y="645" width="0.0411%" height="15" fill="rgb(240,33,19)" fg:x="1157386" fg:w="532"/><text x="89.7719%" y="655.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (564 samples, 0.04%)</title><rect x="89.5213%" y="693" width="0.0436%" height="15" fill="rgb(233,113,27)" fg:x="1157378" fg:w="564"/><text x="89.7713%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (206 samples, 0.02%)</title><rect x="89.5806%" y="597" width="0.0159%" height="15" fill="rgb(220,221,18)" fg:x="1158145" fg:w="206"/><text x="89.8306%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (201 samples, 0.02%)</title><rect x="89.5810%" y="581" width="0.0155%" height="15" fill="rgb(238,92,8)" fg:x="1158150" fg:w="201"/><text x="89.8310%" y="591.50"></text></g><g><title>native_write_msr (201 samples, 0.02%)</title><rect x="89.5810%" y="565" width="0.0155%" height="15" fill="rgb(222,164,16)" fg:x="1158150" fg:w="201"/><text x="89.8310%" y="575.50"></text></g><g><title>schedule_tail (220 samples, 0.02%)</title><rect x="89.5799%" y="629" width="0.0170%" height="15" fill="rgb(241,119,3)" fg:x="1158136" fg:w="220"/><text x="89.8299%" y="639.50"></text></g><g><title>finish_task_switch (220 samples, 0.02%)</title><rect x="89.5799%" y="613" width="0.0170%" height="15" fill="rgb(241,44,8)" fg:x="1158136" fg:w="220"/><text x="89.8299%" y="623.50"></text></g><g><title>__libc_vfork (307 samples, 0.02%)</title><rect x="89.5734%" y="661" width="0.0237%" height="15" fill="rgb(230,36,40)" fg:x="1158052" fg:w="307"/><text x="89.8234%" y="671.50"></text></g><g><title>ret_from_fork (229 samples, 0.02%)</title><rect x="89.5795%" y="645" width="0.0177%" height="15" fill="rgb(243,16,36)" fg:x="1158130" fg:w="229"/><text x="89.8295%" y="655.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (499 samples, 0.04%)</title><rect x="89.5716%" y="693" width="0.0386%" height="15" fill="rgb(231,4,26)" fg:x="1158028" fg:w="499"/><text x="89.8216%" y="703.50"></text></g><g><title>vforkChild (475 samples, 0.04%)</title><rect x="89.5734%" y="677" width="0.0367%" height="15" fill="rgb(240,9,31)" fg:x="1158052" fg:w="475"/><text x="89.8234%" y="687.50"></text></g><g><title>childProcess (168 samples, 0.01%)</title><rect x="89.5972%" y="661" width="0.0130%" height="15" fill="rgb(207,173,15)" fg:x="1158359" fg:w="168"/><text x="89.8472%" y="671.50"></text></g><g><title>do_huge_pmd_anonymous_page (139 samples, 0.01%)</title><rect x="89.6249%" y="549" width="0.0108%" height="15" fill="rgb(224,192,53)" fg:x="1158717" fg:w="139"/><text x="89.8749%" y="559.50"></text></g><g><title>handle_mm_fault (142 samples, 0.01%)</title><rect x="89.6247%" y="565" width="0.0110%" height="15" fill="rgb(223,67,28)" fg:x="1158715" fg:w="142"/><text x="89.8747%" y="575.50"></text></g><g><title>ObjArrayAllocator::initialize (148 samples, 0.01%)</title><rect x="89.6243%" y="629" width="0.0114%" height="15" fill="rgb(211,20,47)" fg:x="1158710" fg:w="148"/><text x="89.8743%" y="639.50"></text></g><g><title>asm_exc_page_fault (146 samples, 0.01%)</title><rect x="89.6245%" y="613" width="0.0113%" height="15" fill="rgb(240,228,2)" fg:x="1158712" fg:w="146"/><text x="89.8745%" y="623.50"></text></g><g><title>exc_page_fault (146 samples, 0.01%)</title><rect x="89.6245%" y="597" width="0.0113%" height="15" fill="rgb(248,151,12)" fg:x="1158712" fg:w="146"/><text x="89.8745%" y="607.50"></text></g><g><title>do_user_addr_fault (145 samples, 0.01%)</title><rect x="89.6246%" y="581" width="0.0112%" height="15" fill="rgb(244,8,39)" fg:x="1158713" fg:w="145"/><text x="89.8746%" y="591.50"></text></g><g><title>TypeArrayKlass::allocate_common (204 samples, 0.02%)</title><rect x="89.6203%" y="677" width="0.0158%" height="15" fill="rgb(222,26,8)" fg:x="1158658" fg:w="204"/><text x="89.8703%" y="687.50"></text></g><g><title>CollectedHeap::array_allocate (201 samples, 0.02%)</title><rect x="89.6205%" y="661" width="0.0155%" height="15" fill="rgb(213,106,44)" fg:x="1158661" fg:w="201"/><text x="89.8705%" y="671.50"></text></g><g><title>MemAllocator::allocate (201 samples, 0.02%)</title><rect x="89.6205%" y="645" width="0.0155%" height="15" fill="rgb(214,129,20)" fg:x="1158661" fg:w="201"/><text x="89.8705%" y="655.50"></text></g><g><title>OptoRuntime::new_array_C (282 samples, 0.02%)</title><rect x="89.6144%" y="693" width="0.0218%" height="15" fill="rgb(212,32,13)" fg:x="1158581" fg:w="282"/><text x="89.8644%" y="703.50"></text></g><g><title>do_huge_pmd_anonymous_page (163 samples, 0.01%)</title><rect x="89.6467%" y="549" width="0.0126%" height="15" fill="rgb(208,168,33)" fg:x="1158999" fg:w="163"/><text x="89.8967%" y="559.50"></text></g><g><title>exc_page_fault (167 samples, 0.01%)</title><rect x="89.6466%" y="597" width="0.0129%" height="15" fill="rgb(231,207,8)" fg:x="1158998" fg:w="167"/><text x="89.8966%" y="607.50"></text></g><g><title>do_user_addr_fault (167 samples, 0.01%)</title><rect x="89.6466%" y="581" width="0.0129%" height="15" fill="rgb(235,219,23)" fg:x="1158998" fg:w="167"/><text x="89.8966%" y="591.50"></text></g><g><title>handle_mm_fault (166 samples, 0.01%)</title><rect x="89.6467%" y="565" width="0.0128%" height="15" fill="rgb(226,216,26)" fg:x="1158999" fg:w="166"/><text x="89.8967%" y="575.50"></text></g><g><title>ObjAllocator::initialize (170 samples, 0.01%)</title><rect x="89.6465%" y="629" width="0.0131%" height="15" fill="rgb(239,137,16)" fg:x="1158996" fg:w="170"/><text x="89.8965%" y="639.50"></text></g><g><title>asm_exc_page_fault (168 samples, 0.01%)</title><rect x="89.6466%" y="613" width="0.0130%" height="15" fill="rgb(207,12,36)" fg:x="1158998" fg:w="168"/><text x="89.8966%" y="623.50"></text></g><g><title>InstanceKlass::allocate_instance (253 samples, 0.02%)</title><rect x="89.6402%" y="677" width="0.0196%" height="15" fill="rgb(210,214,24)" fg:x="1158915" fg:w="253"/><text x="89.8902%" y="687.50"></text></g><g><title>CollectedHeap::obj_allocate (251 samples, 0.02%)</title><rect x="89.6403%" y="661" width="0.0194%" height="15" fill="rgb(206,56,30)" fg:x="1158917" fg:w="251"/><text x="89.8903%" y="671.50"></text></g><g><title>MemAllocator::allocate (251 samples, 0.02%)</title><rect x="89.6403%" y="645" width="0.0194%" height="15" fill="rgb(228,143,26)" fg:x="1158917" fg:w="251"/><text x="89.8903%" y="655.50"></text></g><g><title>OptoRuntime::new_instance_C (279 samples, 0.02%)</title><rect x="89.6390%" y="693" width="0.0216%" height="15" fill="rgb(216,218,46)" fg:x="1158899" fg:w="279"/><text x="89.8890%" y="703.50"></text></g><g><title>Runtime1::counter_overflow (162 samples, 0.01%)</title><rect x="89.6606%" y="693" width="0.0125%" height="15" fill="rgb(206,6,19)" fg:x="1159179" fg:w="162"/><text x="89.9106%" y="703.50"></text></g><g><title>Runtime1::new_instance (131 samples, 0.01%)</title><rect x="89.6784%" y="693" width="0.0101%" height="15" fill="rgb(239,177,51)" fg:x="1159409" fg:w="131"/><text x="89.9284%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (169 samples, 0.01%)</title><rect x="89.7208%" y="469" width="0.0131%" height="15" fill="rgb(216,55,25)" fg:x="1159957" fg:w="169"/><text x="89.9708%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (162 samples, 0.01%)</title><rect x="89.7213%" y="453" width="0.0125%" height="15" fill="rgb(231,163,29)" fg:x="1159964" fg:w="162"/><text x="89.9713%" y="463.50"></text></g><g><title>native_write_msr (161 samples, 0.01%)</title><rect x="89.7214%" y="437" width="0.0125%" height="15" fill="rgb(232,149,50)" fg:x="1159965" fg:w="161"/><text x="89.9714%" y="447.50"></text></g><g><title>finish_task_switch (176 samples, 0.01%)</title><rect x="89.7205%" y="485" width="0.0136%" height="15" fill="rgb(223,142,48)" fg:x="1159953" fg:w="176"/><text x="89.9705%" y="495.50"></text></g><g><title>futex_wait_queue_me (274 samples, 0.02%)</title><rect x="89.7168%" y="533" width="0.0212%" height="15" fill="rgb(245,83,23)" fg:x="1159906" fg:w="274"/><text x="89.9668%" y="543.50"></text></g><g><title>schedule (269 samples, 0.02%)</title><rect x="89.7172%" y="517" width="0.0208%" height="15" fill="rgb(224,63,2)" fg:x="1159911" fg:w="269"/><text x="89.9672%" y="527.50"></text></g><g><title>__schedule (267 samples, 0.02%)</title><rect x="89.7174%" y="501" width="0.0207%" height="15" fill="rgb(218,65,53)" fg:x="1159913" fg:w="267"/><text x="89.9674%" y="511.50"></text></g><g><title>__x64_sys_futex (285 samples, 0.02%)</title><rect x="89.7165%" y="581" width="0.0220%" height="15" fill="rgb(221,84,29)" fg:x="1159901" fg:w="285"/><text x="89.9665%" y="591.50"></text></g><g><title>do_futex (285 samples, 0.02%)</title><rect x="89.7165%" y="565" width="0.0220%" height="15" fill="rgb(234,0,32)" fg:x="1159901" fg:w="285"/><text x="89.9665%" y="575.50"></text></g><g><title>futex_wait (281 samples, 0.02%)</title><rect x="89.7168%" y="549" width="0.0217%" height="15" fill="rgb(206,20,16)" fg:x="1159905" fg:w="281"/><text x="89.9668%" y="559.50"></text></g><g><title>do_syscall_64 (286 samples, 0.02%)</title><rect x="89.7165%" y="597" width="0.0221%" height="15" fill="rgb(244,172,18)" fg:x="1159901" fg:w="286"/><text x="89.9665%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (294 samples, 0.02%)</title><rect x="89.7164%" y="613" width="0.0227%" height="15" fill="rgb(254,133,1)" fg:x="1159900" fg:w="294"/><text x="89.9664%" y="623.50"></text></g><g><title>__pthread_cond_wait (311 samples, 0.02%)</title><rect x="89.7152%" y="661" width="0.0241%" height="15" fill="rgb(222,206,41)" fg:x="1159885" fg:w="311"/><text x="89.9652%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (311 samples, 0.02%)</title><rect x="89.7152%" y="645" width="0.0241%" height="15" fill="rgb(212,3,42)" fg:x="1159885" fg:w="311"/><text x="89.9652%" y="655.50"></text></g><g><title>futex_wait_cancelable (305 samples, 0.02%)</title><rect x="89.7157%" y="629" width="0.0236%" height="15" fill="rgb(241,11,4)" fg:x="1159891" fg:w="305"/><text x="89.9657%" y="639.50"></text></g><g><title>Parker::park (348 samples, 0.03%)</title><rect x="89.7134%" y="677" width="0.0269%" height="15" fill="rgb(205,19,26)" fg:x="1159861" fg:w="348"/><text x="89.9634%" y="687.50"></text></g><g><title>Unsafe_Park (362 samples, 0.03%)</title><rect x="89.7131%" y="693" width="0.0280%" height="15" fill="rgb(210,179,32)" fg:x="1159857" fg:w="362"/><text x="89.9631%" y="703.50"></text></g><g><title>__x64_sys_futex (271 samples, 0.02%)</title><rect x="89.7469%" y="613" width="0.0210%" height="15" fill="rgb(227,116,49)" fg:x="1160294" fg:w="271"/><text x="89.9969%" y="623.50"></text></g><g><title>do_futex (268 samples, 0.02%)</title><rect x="89.7471%" y="597" width="0.0207%" height="15" fill="rgb(211,146,6)" fg:x="1160297" fg:w="268"/><text x="89.9971%" y="607.50"></text></g><g><title>futex_wake (267 samples, 0.02%)</title><rect x="89.7472%" y="581" width="0.0207%" height="15" fill="rgb(219,44,39)" fg:x="1160298" fg:w="267"/><text x="89.9972%" y="591.50"></text></g><g><title>wake_up_q (217 samples, 0.02%)</title><rect x="89.7510%" y="565" width="0.0168%" height="15" fill="rgb(234,128,11)" fg:x="1160348" fg:w="217"/><text x="90.0010%" y="575.50"></text></g><g><title>try_to_wake_up (214 samples, 0.02%)</title><rect x="89.7513%" y="549" width="0.0166%" height="15" fill="rgb(220,183,53)" fg:x="1160351" fg:w="214"/><text x="90.0013%" y="559.50"></text></g><g><title>do_syscall_64 (276 samples, 0.02%)</title><rect x="89.7467%" y="629" width="0.0213%" height="15" fill="rgb(213,219,32)" fg:x="1160292" fg:w="276"/><text x="89.9967%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (293 samples, 0.02%)</title><rect x="89.7466%" y="645" width="0.0227%" height="15" fill="rgb(232,156,16)" fg:x="1160291" fg:w="293"/><text x="89.9966%" y="655.50"></text></g><g><title>__pthread_cond_signal (318 samples, 0.02%)</title><rect x="89.7448%" y="677" width="0.0246%" height="15" fill="rgb(246,135,34)" fg:x="1160267" fg:w="318"/><text x="89.9948%" y="687.50"></text></g><g><title>futex_wake (303 samples, 0.02%)</title><rect x="89.7459%" y="661" width="0.0234%" height="15" fill="rgb(241,99,0)" fg:x="1160282" fg:w="303"/><text x="89.9959%" y="671.50"></text></g><g><title>Unsafe_Unpark (374 samples, 0.03%)</title><rect x="89.7411%" y="693" width="0.0289%" height="15" fill="rgb(222,103,45)" fg:x="1160219" fg:w="374"/><text x="89.9911%" y="703.50"></text></g><g><title>blk_mq_end_request (175 samples, 0.01%)</title><rect x="89.7810%" y="581" width="0.0135%" height="15" fill="rgb(212,57,4)" fg:x="1160736" fg:w="175"/><text x="90.0310%" y="591.50"></text></g><g><title>blk_update_request (173 samples, 0.01%)</title><rect x="89.7812%" y="565" width="0.0134%" height="15" fill="rgb(215,68,47)" fg:x="1160738" fg:w="173"/><text x="90.0312%" y="575.50"></text></g><g><title>__handle_irq_event_percpu (182 samples, 0.01%)</title><rect x="89.7810%" y="629" width="0.0141%" height="15" fill="rgb(230,84,2)" fg:x="1160736" fg:w="182"/><text x="90.0310%" y="639.50"></text></g><g><title>nvme_irq (182 samples, 0.01%)</title><rect x="89.7810%" y="613" width="0.0141%" height="15" fill="rgb(220,102,14)" fg:x="1160736" fg:w="182"/><text x="90.0310%" y="623.50"></text></g><g><title>nvme_process_cq (182 samples, 0.01%)</title><rect x="89.7810%" y="597" width="0.0141%" height="15" fill="rgb(240,10,32)" fg:x="1160736" fg:w="182"/><text x="90.0310%" y="607.50"></text></g><g><title>handle_irq_event (183 samples, 0.01%)</title><rect x="89.7810%" y="645" width="0.0142%" height="15" fill="rgb(215,47,27)" fg:x="1160736" fg:w="183"/><text x="90.0310%" y="655.50"></text></g><g><title>handle_edge_irq (184 samples, 0.01%)</title><rect x="89.7810%" y="661" width="0.0142%" height="15" fill="rgb(233,188,43)" fg:x="1160736" fg:w="184"/><text x="90.0310%" y="671.50"></text></g><g><title>common_interrupt (205 samples, 0.02%)</title><rect x="89.7810%" y="677" width="0.0159%" height="15" fill="rgb(253,190,1)" fg:x="1160736" fg:w="205"/><text x="90.0310%" y="687.50"></text></g><g><title>asm_common_interrupt (207 samples, 0.02%)</title><rect x="89.7810%" y="693" width="0.0160%" height="15" fill="rgb(206,114,52)" fg:x="1160736" fg:w="207"/><text x="90.0310%" y="703.50"></text></g><g><title>__alloc_pages_slowpath.constprop.0 (141 samples, 0.01%)</title><rect x="89.8151%" y="597" width="0.0109%" height="15" fill="rgb(233,120,37)" fg:x="1161176" fg:w="141"/><text x="90.0651%" y="607.50"></text></g><g><title>try_to_free_pages (133 samples, 0.01%)</title><rect x="89.8157%" y="581" width="0.0103%" height="15" fill="rgb(214,52,39)" fg:x="1161184" fg:w="133"/><text x="90.0657%" y="591.50"></text></g><g><title>do_try_to_free_pages (133 samples, 0.01%)</title><rect x="89.8157%" y="565" width="0.0103%" height="15" fill="rgb(223,80,29)" fg:x="1161184" fg:w="133"/><text x="90.0657%" y="575.50"></text></g><g><title>shrink_node (133 samples, 0.01%)</title><rect x="89.8157%" y="549" width="0.0103%" height="15" fill="rgb(230,101,40)" fg:x="1161184" fg:w="133"/><text x="90.0657%" y="559.50"></text></g><g><title>get_page_from_freelist (229 samples, 0.02%)</title><rect x="89.8277%" y="597" width="0.0177%" height="15" fill="rgb(219,211,8)" fg:x="1161339" fg:w="229"/><text x="90.0777%" y="607.50"></text></g><g><title>__alloc_pages_nodemask (411 samples, 0.03%)</title><rect x="89.8139%" y="613" width="0.0318%" height="15" fill="rgb(252,126,28)" fg:x="1161161" fg:w="411"/><text x="90.0639%" y="623.50"></text></g><g><title>alloc_pages_vma (444 samples, 0.03%)</title><rect x="89.8126%" y="629" width="0.0343%" height="15" fill="rgb(215,56,38)" fg:x="1161144" fg:w="444"/><text x="90.0626%" y="639.50"></text></g><g><title>handle_mm_fault (825 samples, 0.06%)</title><rect x="89.8031%" y="645" width="0.0638%" height="15" fill="rgb(249,55,44)" fg:x="1161021" fg:w="825"/><text x="90.0531%" y="655.50"></text></g><g><title>exc_page_fault (911 samples, 0.07%)</title><rect x="89.7973%" y="677" width="0.0705%" height="15" fill="rgb(220,221,32)" fg:x="1160946" fg:w="911"/><text x="90.0473%" y="687.50"></text></g><g><title>do_user_addr_fault (896 samples, 0.07%)</title><rect x="89.7984%" y="661" width="0.0693%" height="15" fill="rgb(212,216,41)" fg:x="1160961" fg:w="896"/><text x="90.0484%" y="671.50"></text></g><g><title>asm_exc_page_fault (929 samples, 0.07%)</title><rect x="89.7971%" y="693" width="0.0719%" height="15" fill="rgb(228,213,43)" fg:x="1160943" fg:w="929"/><text x="90.0471%" y="703.50"></text></g><g><title>__hrtimer_run_queues (167 samples, 0.01%)</title><rect x="89.8746%" y="629" width="0.0129%" height="15" fill="rgb(211,31,26)" fg:x="1161945" fg:w="167"/><text x="90.1246%" y="639.50"></text></g><g><title>hrtimer_interrupt (197 samples, 0.02%)</title><rect x="89.8734%" y="645" width="0.0152%" height="15" fill="rgb(229,202,19)" fg:x="1161930" fg:w="197"/><text x="90.1234%" y="655.50"></text></g><g><title>__sysvec_apic_timer_interrupt (202 samples, 0.02%)</title><rect x="89.8732%" y="661" width="0.0156%" height="15" fill="rgb(229,105,46)" fg:x="1161928" fg:w="202"/><text x="90.1232%" y="671.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (396 samples, 0.03%)</title><rect x="89.8689%" y="693" width="0.0306%" height="15" fill="rgb(235,108,1)" fg:x="1161872" fg:w="396"/><text x="90.1189%" y="703.50"></text></g><g><title>sysvec_apic_timer_interrupt (340 samples, 0.03%)</title><rect x="89.8732%" y="677" width="0.0263%" height="15" fill="rgb(245,111,35)" fg:x="1161928" fg:w="340"/><text x="90.1232%" y="687.50"></text></g><g><title>irq_exit_rcu (138 samples, 0.01%)</title><rect x="89.8889%" y="661" width="0.0107%" height="15" fill="rgb(219,185,31)" fg:x="1162130" fg:w="138"/><text x="90.1389%" y="671.50"></text></g><g><title>do_softirq_own_stack (132 samples, 0.01%)</title><rect x="89.8893%" y="645" width="0.0102%" height="15" fill="rgb(214,4,43)" fg:x="1162136" fg:w="132"/><text x="90.1393%" y="655.50"></text></g><g><title>asm_call_sysvec_on_stack (132 samples, 0.01%)</title><rect x="89.8893%" y="629" width="0.0102%" height="15" fill="rgb(235,227,40)" fg:x="1162136" fg:w="132"/><text x="90.1393%" y="639.50"></text></g><g><title>__softirqentry_text_start (132 samples, 0.01%)</title><rect x="89.8893%" y="613" width="0.0102%" height="15" fill="rgb(230,88,30)" fg:x="1162136" fg:w="132"/><text x="90.1393%" y="623.50"></text></g><g><title>schedule (130 samples, 0.01%)</title><rect x="89.9009%" y="645" width="0.0101%" height="15" fill="rgb(216,217,1)" fg:x="1162286" fg:w="130"/><text x="90.1509%" y="655.50"></text></g><g><title>irqentry_exit_to_user_mode (143 samples, 0.01%)</title><rect x="89.9005%" y="677" width="0.0111%" height="15" fill="rgb(248,139,50)" fg:x="1162281" fg:w="143"/><text x="90.1505%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (140 samples, 0.01%)</title><rect x="89.9008%" y="661" width="0.0108%" height="15" fill="rgb(233,1,21)" fg:x="1162284" fg:w="140"/><text x="90.1508%" y="671.50"></text></g><g><title>asm_sysvec_reschedule_ipi (156 samples, 0.01%)</title><rect x="89.9005%" y="693" width="0.0121%" height="15" fill="rgb(215,183,12)" fg:x="1162281" fg:w="156"/><text x="90.1505%" y="703.50"></text></g><g><title>do_filp_open (267 samples, 0.02%)</title><rect x="89.9462%" y="597" width="0.0207%" height="15" fill="rgb(229,104,42)" fg:x="1162871" fg:w="267"/><text x="90.1962%" y="607.50"></text></g><g><title>path_openat (263 samples, 0.02%)</title><rect x="89.9465%" y="581" width="0.0203%" height="15" fill="rgb(243,34,48)" fg:x="1162875" fg:w="263"/><text x="90.1965%" y="591.50"></text></g><g><title>__x64_sys_openat (346 samples, 0.03%)</title><rect x="89.9440%" y="629" width="0.0268%" height="15" fill="rgb(239,11,44)" fg:x="1162843" fg:w="346"/><text x="90.1940%" y="639.50"></text></g><g><title>do_sys_openat2 (344 samples, 0.03%)</title><rect x="89.9442%" y="613" width="0.0266%" height="15" fill="rgb(231,98,35)" fg:x="1162845" fg:w="344"/><text x="90.1942%" y="623.50"></text></g><g><title>do_syscall_64 (348 samples, 0.03%)</title><rect x="89.9439%" y="645" width="0.0269%" height="15" fill="rgb(233,28,25)" fg:x="1162842" fg:w="348"/><text x="90.1939%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (352 samples, 0.03%)</title><rect x="89.9439%" y="661" width="0.0272%" height="15" fill="rgb(234,123,11)" fg:x="1162841" fg:w="352"/><text x="90.1939%" y="671.50"></text></g><g><title>__libc_open64 (358 samples, 0.03%)</title><rect x="89.9435%" y="677" width="0.0277%" height="15" fill="rgb(220,69,3)" fg:x="1162836" fg:w="358"/><text x="90.1935%" y="687.50"></text></g><g><title>fileOpen (505 samples, 0.04%)</title><rect x="89.9342%" y="693" width="0.0391%" height="15" fill="rgb(214,64,36)" fg:x="1162716" fg:w="505"/><text x="90.1842%" y="703.50"></text></g><g><title>[[vdso]] (1,258 samples, 0.10%)</title><rect x="90.1296%" y="645" width="0.0973%" height="15" fill="rgb(211,138,32)" fg:x="1165242" fg:w="1258"/><text x="90.3796%" y="655.50"></text></g><g><title>__vdso_clock_gettime (2,269 samples, 0.18%)</title><rect x="90.0521%" y="661" width="0.1755%" height="15" fill="rgb(213,118,47)" fg:x="1164241" fg:w="2269"/><text x="90.3021%" y="671.50"></text></g><g><title>__GI___clock_gettime (2,940 samples, 0.23%)</title><rect x="90.0015%" y="677" width="0.2274%" height="15" fill="rgb(243,124,49)" fg:x="1163586" fg:w="2940"/><text x="90.2515%" y="687.50"></text></g><g><title>os::javaTimeNanos (3,254 samples, 0.25%)</title><rect x="89.9776%" y="693" width="0.2517%" height="15" fill="rgb(221,30,28)" fg:x="1163277" fg:w="3254"/><text x="90.2276%" y="703.50"></text></g><g><title>[perf-956514.map] (145,614 samples, 11.26%)</title><rect x="78.9666%" y="709" width="11.2630%" height="15" fill="rgb(246,37,13)" fg:x="1020921" fg:w="145614"/><text x="79.2166%" y="719.50">[perf-956514.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (213 samples, 0.02%)</title><rect x="90.2570%" y="677" width="0.0165%" height="15" fill="rgb(249,66,14)" fg:x="1166889" fg:w="213"/><text x="90.5070%" y="687.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (333 samples, 0.03%)</title><rect x="90.2497%" y="693" width="0.0258%" height="15" fill="rgb(213,166,5)" fg:x="1166795" fg:w="333"/><text x="90.4997%" y="703.50"></text></g><g><title>__GI___clock_gettime (320 samples, 0.02%)</title><rect x="90.2847%" y="693" width="0.0248%" height="15" fill="rgb(221,66,24)" fg:x="1167248" fg:w="320"/><text x="90.5347%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (163 samples, 0.01%)</title><rect x="90.3628%" y="517" width="0.0126%" height="15" fill="rgb(210,132,17)" fg:x="1168257" fg:w="163"/><text x="90.6128%" y="527.50"></text></g><g><title>copy_page_to_iter (172 samples, 0.01%)</title><rect x="90.3622%" y="533" width="0.0133%" height="15" fill="rgb(243,202,5)" fg:x="1168249" fg:w="172"/><text x="90.6122%" y="543.50"></text></g><g><title>btrfs_dirty_inode (142 samples, 0.01%)</title><rect x="90.3822%" y="517" width="0.0110%" height="15" fill="rgb(233,70,48)" fg:x="1168508" fg:w="142"/><text x="90.6322%" y="527.50"></text></g><g><title>touch_atime (167 samples, 0.01%)</title><rect x="90.3806%" y="533" width="0.0129%" height="15" fill="rgb(238,41,26)" fg:x="1168487" fg:w="167"/><text x="90.6306%" y="543.50"></text></g><g><title>new_sync_read (457 samples, 0.04%)</title><rect x="90.3586%" y="565" width="0.0353%" height="15" fill="rgb(241,19,31)" fg:x="1168203" fg:w="457"/><text x="90.6086%" y="575.50"></text></g><g><title>generic_file_buffered_read (442 samples, 0.03%)</title><rect x="90.3598%" y="549" width="0.0342%" height="15" fill="rgb(214,76,10)" fg:x="1168218" fg:w="442"/><text x="90.6098%" y="559.50"></text></g><g><title>ksys_read (540 samples, 0.04%)</title><rect x="90.3545%" y="597" width="0.0418%" height="15" fill="rgb(254,202,22)" fg:x="1168150" fg:w="540"/><text x="90.6045%" y="607.50"></text></g><g><title>vfs_read (502 samples, 0.04%)</title><rect x="90.3574%" y="581" width="0.0388%" height="15" fill="rgb(214,72,24)" fg:x="1168188" fg:w="502"/><text x="90.6074%" y="591.50"></text></g><g><title>do_syscall_64 (548 samples, 0.04%)</title><rect x="90.3542%" y="613" width="0.0424%" height="15" fill="rgb(221,92,46)" fg:x="1168146" fg:w="548"/><text x="90.6042%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (554 samples, 0.04%)</title><rect x="90.3539%" y="629" width="0.0429%" height="15" fill="rgb(246,13,50)" fg:x="1168142" fg:w="554"/><text x="90.6039%" y="639.50"></text></g><g><title>__libc_read (586 samples, 0.05%)</title><rect x="90.3516%" y="661" width="0.0453%" height="15" fill="rgb(240,165,38)" fg:x="1168113" fg:w="586"/><text x="90.6016%" y="671.50"></text></g><g><title>__libc_read (586 samples, 0.05%)</title><rect x="90.3516%" y="645" width="0.0453%" height="15" fill="rgb(241,24,51)" fg:x="1168113" fg:w="586"/><text x="90.6016%" y="655.50"></text></g><g><title>handleRead (591 samples, 0.05%)</title><rect x="90.3514%" y="677" width="0.0457%" height="15" fill="rgb(227,51,44)" fg:x="1168110" fg:w="591"/><text x="90.6014%" y="687.50"></text></g><g><title>readBytes (765 samples, 0.06%)</title><rect x="90.3497%" y="693" width="0.0592%" height="15" fill="rgb(231,121,3)" fg:x="1168088" fg:w="765"/><text x="90.5997%" y="703.50"></text></g><g><title>[unknown] (2,354 samples, 0.18%)</title><rect x="90.2296%" y="709" width="0.1821%" height="15" fill="rgb(245,3,41)" fg:x="1166535" fg:w="2354"/><text x="90.4796%" y="719.50"></text></g><g><title>__GI___clone (146 samples, 0.01%)</title><rect x="90.4117%" y="709" width="0.0113%" height="15" fill="rgb(214,13,26)" fg:x="1168889" fg:w="146"/><text x="90.6617%" y="719.50"></text></g><g><title>__vdso_clock_gettime (461 samples, 0.04%)</title><rect x="90.4235%" y="709" width="0.0357%" height="15" fill="rgb(252,75,11)" fg:x="1169042" fg:w="461"/><text x="90.6735%" y="719.50"></text></g><g><title>asm_exc_page_fault (167 samples, 0.01%)</title><rect x="90.4601%" y="709" width="0.0129%" height="15" fill="rgb(218,226,17)" fg:x="1169515" fg:w="167"/><text x="90.7101%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (243 samples, 0.02%)</title><rect x="90.4800%" y="709" width="0.0188%" height="15" fill="rgb(248,89,38)" fg:x="1169773" fg:w="243"/><text x="90.7300%" y="719.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (584 samples, 0.05%)</title><rect x="90.4988%" y="709" width="0.0452%" height="15" fill="rgb(237,73,46)" fg:x="1170016" fg:w="584"/><text x="90.7488%" y="719.50"></text></g><g><title>jni_GetStringLength (406 samples, 0.03%)</title><rect x="90.5442%" y="709" width="0.0314%" height="15" fill="rgb(242,78,33)" fg:x="1170603" fg:w="406"/><text x="90.7942%" y="719.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 573558ul&gt;::oop_access_barrier (345 samples, 0.03%)</title><rect x="90.5490%" y="693" width="0.0267%" height="15" fill="rgb(235,60,3)" fg:x="1170664" fg:w="345"/><text x="90.7990%" y="703.50"></text></g><g><title>skyframe-evalua (1,021,609 samples, 79.02%)</title><rect x="11.5680%" y="725" width="79.0198%" height="15" fill="rgb(216,172,19)" fg:x="149557" fg:w="1021609"/><text x="11.8180%" y="735.50">skyframe-evalua</text></g><g><title>skyframe-invali (149 samples, 0.01%)</title><rect x="90.5878%" y="725" width="0.0115%" height="15" fill="rgb(227,6,42)" fg:x="1171166" fg:w="149"/><text x="90.8378%" y="735.50"></text></g><g><title>kernel_init_free_pages (437 samples, 0.03%)</title><rect x="94.5384%" y="565" width="0.0338%" height="15" fill="rgb(223,207,42)" fg:x="1222241" fg:w="437"/><text x="94.7884%" y="575.50"></text></g><g><title>clear_page_erms (423 samples, 0.03%)</title><rect x="94.5394%" y="549" width="0.0327%" height="15" fill="rgb(246,138,30)" fg:x="1222255" fg:w="423"/><text x="94.7894%" y="559.50"></text></g><g><title>get_page_from_freelist (774 samples, 0.06%)</title><rect x="94.5127%" y="597" width="0.0599%" height="15" fill="rgb(251,199,47)" fg:x="1221909" fg:w="774"/><text x="94.7627%" y="607.50"></text></g><g><title>prep_new_page (469 samples, 0.04%)</title><rect x="94.5363%" y="581" width="0.0363%" height="15" fill="rgb(228,218,44)" fg:x="1222214" fg:w="469"/><text x="94.7863%" y="591.50"></text></g><g><title>__alloc_pages_nodemask (900 samples, 0.07%)</title><rect x="94.5035%" y="613" width="0.0696%" height="15" fill="rgb(220,68,6)" fg:x="1221791" fg:w="900"/><text x="94.7535%" y="623.50"></text></g><g><title>alloc_pages_vma (981 samples, 0.08%)</title><rect x="94.4994%" y="629" width="0.0759%" height="15" fill="rgb(240,60,26)" fg:x="1221737" fg:w="981"/><text x="94.7494%" y="639.50"></text></g><g><title>page_add_file_rmap (275 samples, 0.02%)</title><rect x="94.6600%" y="597" width="0.0213%" height="15" fill="rgb(211,200,19)" fg:x="1223814" fg:w="275"/><text x="94.9100%" y="607.50"></text></g><g><title>alloc_set_pte (407 samples, 0.03%)</title><rect x="94.6514%" y="613" width="0.0315%" height="15" fill="rgb(242,145,30)" fg:x="1223703" fg:w="407"/><text x="94.9014%" y="623.50"></text></g><g><title>filemap_map_pages (1,381 samples, 0.11%)</title><rect x="94.5939%" y="629" width="0.1068%" height="15" fill="rgb(225,64,13)" fg:x="1222959" fg:w="1381"/><text x="94.8439%" y="639.50"></text></g><g><title>__pagevec_lru_add_fn (160 samples, 0.01%)</title><rect x="94.7071%" y="597" width="0.0124%" height="15" fill="rgb(218,103,35)" fg:x="1224423" fg:w="160"/><text x="94.9571%" y="607.50"></text></g><g><title>lru_cache_add (274 samples, 0.02%)</title><rect x="94.7010%" y="629" width="0.0212%" height="15" fill="rgb(216,93,46)" fg:x="1224344" fg:w="274"/><text x="94.9510%" y="639.50"></text></g><g><title>pagevec_lru_move_fn (224 samples, 0.02%)</title><rect x="94.7049%" y="613" width="0.0173%" height="15" fill="rgb(225,159,27)" fg:x="1224394" fg:w="224"/><text x="94.9549%" y="623.50"></text></g><g><title>mem_cgroup_charge (276 samples, 0.02%)</title><rect x="94.7227%" y="629" width="0.0213%" height="15" fill="rgb(225,204,11)" fg:x="1224624" fg:w="276"/><text x="94.9727%" y="639.50"></text></g><g><title>handle_mm_fault (3,969 samples, 0.31%)</title><rect x="94.4561%" y="645" width="0.3070%" height="15" fill="rgb(205,56,4)" fg:x="1221178" fg:w="3969"/><text x="94.7061%" y="655.50"></text></g><g><title>do_user_addr_fault (4,249 samples, 0.33%)</title><rect x="94.4381%" y="661" width="0.3287%" height="15" fill="rgb(206,6,35)" fg:x="1220945" fg:w="4249"/><text x="94.6881%" y="671.50"></text></g><g><title>exc_page_fault (4,281 samples, 0.33%)</title><rect x="94.4361%" y="677" width="0.3311%" height="15" fill="rgb(247,73,52)" fg:x="1220919" fg:w="4281"/><text x="94.6861%" y="687.50"></text></g><g><title>asm_exc_page_fault (4,361 samples, 0.34%)</title><rect x="94.4338%" y="693" width="0.3373%" height="15" fill="rgb(246,97,4)" fg:x="1220889" fg:w="4361"/><text x="94.6838%" y="703.50"></text></g><g><title>rcu_core (140 samples, 0.01%)</title><rect x="94.7784%" y="597" width="0.0108%" height="15" fill="rgb(212,37,15)" fg:x="1225344" fg:w="140"/><text x="95.0284%" y="607.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (246 samples, 0.02%)</title><rect x="94.7711%" y="693" width="0.0190%" height="15" fill="rgb(208,130,40)" fg:x="1225250" fg:w="246"/><text x="95.0211%" y="703.50"></text></g><g><title>sysvec_apic_timer_interrupt (226 samples, 0.02%)</title><rect x="94.7726%" y="677" width="0.0175%" height="15" fill="rgb(236,55,29)" fg:x="1225270" fg:w="226"/><text x="95.0226%" y="687.50"></text></g><g><title>irq_exit_rcu (156 samples, 0.01%)</title><rect x="94.7781%" y="661" width="0.0121%" height="15" fill="rgb(209,156,45)" fg:x="1225340" fg:w="156"/><text x="95.0281%" y="671.50"></text></g><g><title>do_softirq_own_stack (152 samples, 0.01%)</title><rect x="94.7784%" y="645" width="0.0118%" height="15" fill="rgb(249,107,4)" fg:x="1225344" fg:w="152"/><text x="95.0284%" y="655.50"></text></g><g><title>asm_call_sysvec_on_stack (152 samples, 0.01%)</title><rect x="94.7784%" y="629" width="0.0118%" height="15" fill="rgb(227,7,13)" fg:x="1225344" fg:w="152"/><text x="95.0284%" y="639.50"></text></g><g><title>__softirqentry_text_start (152 samples, 0.01%)</title><rect x="94.7784%" y="613" width="0.0118%" height="15" fill="rgb(250,129,14)" fg:x="1225344" fg:w="152"/><text x="95.0284%" y="623.50"></text></g><g><title>entry_SYSCALL_64 (2,087 samples, 0.16%)</title><rect x="94.7954%" y="693" width="0.1614%" height="15" fill="rgb(229,92,13)" fg:x="1225564" fg:w="2087"/><text x="95.0454%" y="703.50"></text></g><g><title>copy_process (148 samples, 0.01%)</title><rect x="95.0321%" y="629" width="0.0114%" height="15" fill="rgb(245,98,39)" fg:x="1228625" fg:w="148"/><text x="95.2821%" y="639.50"></text></g><g><title>__do_sys_clone (164 samples, 0.01%)</title><rect x="95.0321%" y="661" width="0.0127%" height="15" fill="rgb(234,135,48)" fg:x="1228625" fg:w="164"/><text x="95.2821%" y="671.50"></text></g><g><title>kernel_clone (164 samples, 0.01%)</title><rect x="95.0321%" y="645" width="0.0127%" height="15" fill="rgb(230,98,28)" fg:x="1228625" fg:w="164"/><text x="95.2821%" y="655.50"></text></g><g><title>_copy_to_user (358 samples, 0.03%)</title><rect x="95.0550%" y="629" width="0.0277%" height="15" fill="rgb(223,121,0)" fg:x="1228921" fg:w="358"/><text x="95.3050%" y="639.50"></text></g><g><title>copy_user_enhanced_fast_string (320 samples, 0.02%)</title><rect x="95.0580%" y="613" width="0.0248%" height="15" fill="rgb(234,173,33)" fg:x="1228959" fg:w="320"/><text x="95.3080%" y="623.50"></text></g><g><title>cp_new_stat (587 samples, 0.05%)</title><rect x="95.0474%" y="645" width="0.0454%" height="15" fill="rgb(245,47,8)" fg:x="1228822" fg:w="587"/><text x="95.2974%" y="655.50"></text></g><g><title>__fget_light (141 samples, 0.01%)</title><rect x="95.0963%" y="629" width="0.0109%" height="15" fill="rgb(205,17,20)" fg:x="1229454" fg:w="141"/><text x="95.3463%" y="639.50"></text></g><g><title>_raw_spin_lock (137 samples, 0.01%)</title><rect x="95.1762%" y="613" width="0.0106%" height="15" fill="rgb(232,151,16)" fg:x="1230488" fg:w="137"/><text x="95.4262%" y="623.50"></text></g><g><title>btrfs_getattr (1,204 samples, 0.09%)</title><rect x="95.1072%" y="629" width="0.0931%" height="15" fill="rgb(208,30,32)" fg:x="1229595" fg:w="1204"/><text x="95.3572%" y="639.50"></text></g><g><title>security_inode_getattr (565 samples, 0.04%)</title><rect x="95.2073%" y="629" width="0.0437%" height="15" fill="rgb(254,26,3)" fg:x="1230889" fg:w="565"/><text x="95.4573%" y="639.50"></text></g><g><title>tomoyo_path_perm (400 samples, 0.03%)</title><rect x="95.2200%" y="613" width="0.0309%" height="15" fill="rgb(240,177,30)" fg:x="1231054" fg:w="400"/><text x="95.4700%" y="623.50"></text></g><g><title>tomoyo_init_request_info (198 samples, 0.02%)</title><rect x="95.2356%" y="597" width="0.0153%" height="15" fill="rgb(248,76,44)" fg:x="1231256" fg:w="198"/><text x="95.4856%" y="607.50"></text></g><g><title>__do_sys_newfstat (2,891 samples, 0.22%)</title><rect x="95.0448%" y="661" width="0.2236%" height="15" fill="rgb(241,186,54)" fg:x="1228789" fg:w="2891"/><text x="95.2948%" y="671.50"></text></g><g><title>vfs_fstat (2,271 samples, 0.18%)</title><rect x="95.0928%" y="645" width="0.1757%" height="15" fill="rgb(249,171,29)" fg:x="1229409" fg:w="2271"/><text x="95.3428%" y="655.50"></text></g><g><title>vfs_getattr_nosec (226 samples, 0.02%)</title><rect x="95.2510%" y="629" width="0.0175%" height="15" fill="rgb(237,151,44)" fg:x="1231454" fg:w="226"/><text x="95.5010%" y="639.50"></text></g><g><title>__close_fd (205 samples, 0.02%)</title><rect x="95.2758%" y="645" width="0.0159%" height="15" fill="rgb(228,174,30)" fg:x="1231775" fg:w="205"/><text x="95.5258%" y="655.50"></text></g><g><title>pick_file (196 samples, 0.02%)</title><rect x="95.2765%" y="629" width="0.0152%" height="15" fill="rgb(252,14,37)" fg:x="1231784" fg:w="196"/><text x="95.5265%" y="639.50"></text></g><g><title>fput_many (343 samples, 0.03%)</title><rect x="95.2979%" y="629" width="0.0265%" height="15" fill="rgb(207,111,40)" fg:x="1232061" fg:w="343"/><text x="95.5479%" y="639.50"></text></g><g><title>task_work_add (233 samples, 0.02%)</title><rect x="95.3064%" y="613" width="0.0180%" height="15" fill="rgb(248,171,54)" fg:x="1232171" fg:w="233"/><text x="95.5564%" y="623.50"></text></g><g><title>__x64_sys_close (716 samples, 0.06%)</title><rect x="95.2739%" y="661" width="0.0554%" height="15" fill="rgb(211,127,2)" fg:x="1231751" fg:w="716"/><text x="95.5239%" y="671.50"></text></g><g><title>filp_close (486 samples, 0.04%)</title><rect x="95.2917%" y="645" width="0.0376%" height="15" fill="rgb(236,87,47)" fg:x="1231981" fg:w="486"/><text x="95.5417%" y="655.50"></text></g><g><title>bprm_execve (150 samples, 0.01%)</title><rect x="95.3295%" y="629" width="0.0116%" height="15" fill="rgb(223,190,45)" fg:x="1232469" fg:w="150"/><text x="95.5795%" y="639.50"></text></g><g><title>__x64_sys_execve (182 samples, 0.01%)</title><rect x="95.3293%" y="661" width="0.0141%" height="15" fill="rgb(215,5,16)" fg:x="1232467" fg:w="182"/><text x="95.5793%" y="671.50"></text></g><g><title>do_execveat_common (182 samples, 0.01%)</title><rect x="95.3293%" y="645" width="0.0141%" height="15" fill="rgb(252,82,33)" fg:x="1232467" fg:w="182"/><text x="95.5793%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (2,583 samples, 0.20%)</title><rect x="95.3727%" y="549" width="0.1998%" height="15" fill="rgb(247,213,44)" fg:x="1233028" fg:w="2583"/><text x="95.6227%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,556 samples, 0.20%)</title><rect x="95.3748%" y="533" width="0.1977%" height="15" fill="rgb(205,196,44)" fg:x="1233055" fg:w="2556"/><text x="95.6248%" y="543.50"></text></g><g><title>native_write_msr (2,550 samples, 0.20%)</title><rect x="95.3753%" y="517" width="0.1972%" height="15" fill="rgb(237,96,54)" fg:x="1233061" fg:w="2550"/><text x="95.6253%" y="527.50"></text></g><g><title>finish_task_switch (2,749 samples, 0.21%)</title><rect x="95.3695%" y="565" width="0.2126%" height="15" fill="rgb(230,113,34)" fg:x="1232986" fg:w="2749"/><text x="95.6195%" y="575.50"></text></g><g><title>futex_wait_queue_me (3,137 samples, 0.24%)</title><rect x="95.3524%" y="613" width="0.2426%" height="15" fill="rgb(221,224,12)" fg:x="1232765" fg:w="3137"/><text x="95.6024%" y="623.50"></text></g><g><title>schedule (3,109 samples, 0.24%)</title><rect x="95.3545%" y="597" width="0.2405%" height="15" fill="rgb(219,112,44)" fg:x="1232793" fg:w="3109"/><text x="95.6045%" y="607.50"></text></g><g><title>__schedule (3,104 samples, 0.24%)</title><rect x="95.3549%" y="581" width="0.2401%" height="15" fill="rgb(210,31,13)" fg:x="1232798" fg:w="3104"/><text x="95.6049%" y="591.50"></text></g><g><title>futex_wait (3,197 samples, 0.25%)</title><rect x="95.3502%" y="629" width="0.2473%" height="15" fill="rgb(230,25,16)" fg:x="1232737" fg:w="3197"/><text x="95.6002%" y="639.50"></text></g><g><title>__x64_sys_futex (3,559 samples, 0.28%)</title><rect x="95.3478%" y="661" width="0.2753%" height="15" fill="rgb(246,108,53)" fg:x="1232706" fg:w="3559"/><text x="95.5978%" y="671.50"></text></g><g><title>do_futex (3,542 samples, 0.27%)</title><rect x="95.3491%" y="645" width="0.2740%" height="15" fill="rgb(241,172,50)" fg:x="1232723" fg:w="3542"/><text x="95.5991%" y="655.50"></text></g><g><title>futex_wake (331 samples, 0.03%)</title><rect x="95.5975%" y="629" width="0.0256%" height="15" fill="rgb(235,141,10)" fg:x="1235934" fg:w="331"/><text x="95.8475%" y="639.50"></text></g><g><title>wake_up_q (285 samples, 0.02%)</title><rect x="95.6010%" y="613" width="0.0220%" height="15" fill="rgb(220,174,43)" fg:x="1235980" fg:w="285"/><text x="95.8510%" y="623.50"></text></g><g><title>try_to_wake_up (281 samples, 0.02%)</title><rect x="95.6014%" y="597" width="0.0217%" height="15" fill="rgb(215,181,40)" fg:x="1235984" fg:w="281"/><text x="95.8514%" y="607.50"></text></g><g><title>__split_vma (142 samples, 0.01%)</title><rect x="95.6294%" y="613" width="0.0110%" height="15" fill="rgb(230,97,2)" fg:x="1236347" fg:w="142"/><text x="95.8794%" y="623.50"></text></g><g><title>free_unref_page_list (159 samples, 0.01%)</title><rect x="95.6760%" y="565" width="0.0123%" height="15" fill="rgb(211,25,27)" fg:x="1236949" fg:w="159"/><text x="95.9260%" y="575.50"></text></g><g><title>tlb_finish_mmu (472 samples, 0.04%)</title><rect x="95.6563%" y="597" width="0.0365%" height="15" fill="rgb(230,87,26)" fg:x="1236694" fg:w="472"/><text x="95.9063%" y="607.50"></text></g><g><title>release_pages (398 samples, 0.03%)</title><rect x="95.6620%" y="581" width="0.0308%" height="15" fill="rgb(227,160,17)" fg:x="1236768" fg:w="398"/><text x="95.9120%" y="591.50"></text></g><g><title>unmap_page_range (262 samples, 0.02%)</title><rect x="95.6936%" y="581" width="0.0203%" height="15" fill="rgb(244,85,34)" fg:x="1237177" fg:w="262"/><text x="95.9436%" y="591.50"></text></g><g><title>unmap_region (880 samples, 0.07%)</title><rect x="95.6459%" y="613" width="0.0681%" height="15" fill="rgb(207,70,0)" fg:x="1236560" fg:w="880"/><text x="95.8959%" y="623.50"></text></g><g><title>unmap_vmas (267 samples, 0.02%)</title><rect x="95.6933%" y="597" width="0.0207%" height="15" fill="rgb(223,129,7)" fg:x="1237173" fg:w="267"/><text x="95.9433%" y="607.50"></text></g><g><title>__do_munmap (1,118 samples, 0.09%)</title><rect x="95.6277%" y="629" width="0.0865%" height="15" fill="rgb(246,105,7)" fg:x="1236325" fg:w="1118"/><text x="95.8777%" y="639.50"></text></g><g><title>__vm_munmap (1,124 samples, 0.09%)</title><rect x="95.6275%" y="645" width="0.0869%" height="15" fill="rgb(215,154,42)" fg:x="1236322" fg:w="1124"/><text x="95.8775%" y="655.50"></text></g><g><title>__x64_sys_munmap (1,131 samples, 0.09%)</title><rect x="95.6275%" y="661" width="0.0875%" height="15" fill="rgb(220,215,30)" fg:x="1236322" fg:w="1131"/><text x="95.8775%" y="671.50"></text></g><g><title>do_filp_open (221 samples, 0.02%)</title><rect x="95.7156%" y="629" width="0.0171%" height="15" fill="rgb(228,81,51)" fg:x="1237461" fg:w="221"/><text x="95.9656%" y="639.50"></text></g><g><title>path_openat (218 samples, 0.02%)</title><rect x="95.7158%" y="613" width="0.0169%" height="15" fill="rgb(247,71,54)" fg:x="1237464" fg:w="218"/><text x="95.9658%" y="623.50"></text></g><g><title>__x64_sys_open (252 samples, 0.02%)</title><rect x="95.7151%" y="661" width="0.0195%" height="15" fill="rgb(234,176,34)" fg:x="1237455" fg:w="252"/><text x="95.9651%" y="671.50"></text></g><g><title>do_sys_openat2 (252 samples, 0.02%)</title><rect x="95.7151%" y="645" width="0.0195%" height="15" fill="rgb(241,103,54)" fg:x="1237455" fg:w="252"/><text x="95.9651%" y="655.50"></text></g><g><title>_raw_spin_lock (133 samples, 0.01%)</title><rect x="95.7713%" y="613" width="0.0103%" height="15" fill="rgb(228,22,34)" fg:x="1238181" fg:w="133"/><text x="96.0213%" y="623.50"></text></g><g><title>__alloc_fd (519 samples, 0.04%)</title><rect x="95.7489%" y="629" width="0.0401%" height="15" fill="rgb(241,179,48)" fg:x="1237891" fg:w="519"/><text x="95.9989%" y="639.50"></text></g><g><title>__slab_alloc (348 samples, 0.03%)</title><rect x="95.8959%" y="549" width="0.0269%" height="15" fill="rgb(235,167,37)" fg:x="1239792" fg:w="348"/><text x="96.1459%" y="559.50"></text></g><g><title>___slab_alloc (322 samples, 0.02%)</title><rect x="95.8979%" y="533" width="0.0249%" height="15" fill="rgb(213,109,30)" fg:x="1239818" fg:w="322"/><text x="96.1479%" y="543.50"></text></g><g><title>__mod_memcg_lruvec_state (160 samples, 0.01%)</title><rect x="95.9708%" y="533" width="0.0124%" height="15" fill="rgb(222,172,16)" fg:x="1240761" fg:w="160"/><text x="96.2208%" y="543.50"></text></g><g><title>memcg_slab_post_alloc_hook (817 samples, 0.06%)</title><rect x="95.9231%" y="549" width="0.0632%" height="15" fill="rgb(233,192,5)" fg:x="1240144" fg:w="817"/><text x="96.1731%" y="559.50"></text></g><g><title>get_obj_cgroup_from_current (491 samples, 0.04%)</title><rect x="96.0033%" y="533" width="0.0380%" height="15" fill="rgb(247,189,41)" fg:x="1241181" fg:w="491"/><text x="96.2533%" y="543.50"></text></g><g><title>obj_cgroup_charge (225 samples, 0.02%)</title><rect x="96.0413%" y="533" width="0.0174%" height="15" fill="rgb(218,134,47)" fg:x="1241672" fg:w="225"/><text x="96.2913%" y="543.50"></text></g><g><title>kmem_cache_alloc (2,435 samples, 0.19%)</title><rect x="95.8708%" y="565" width="0.1883%" height="15" fill="rgb(216,29,3)" fg:x="1239468" fg:w="2435"/><text x="96.1208%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (833 samples, 0.06%)</title><rect x="95.9947%" y="549" width="0.0644%" height="15" fill="rgb(246,140,12)" fg:x="1241070" fg:w="833"/><text x="96.2447%" y="559.50"></text></g><g><title>apparmor_file_alloc_security (471 samples, 0.04%)</title><rect x="96.0675%" y="549" width="0.0364%" height="15" fill="rgb(230,136,11)" fg:x="1242010" fg:w="471"/><text x="96.3175%" y="559.50"></text></g><g><title>__alloc_file (3,604 samples, 0.28%)</title><rect x="95.8545%" y="581" width="0.2788%" height="15" fill="rgb(247,22,47)" fg:x="1239257" fg:w="3604"/><text x="96.1045%" y="591.50"></text></g><g><title>security_file_alloc (958 samples, 0.07%)</title><rect x="96.0592%" y="565" width="0.0741%" height="15" fill="rgb(218,84,22)" fg:x="1241903" fg:w="958"/><text x="96.3092%" y="575.50"></text></g><g><title>kmem_cache_alloc (380 samples, 0.03%)</title><rect x="96.1039%" y="549" width="0.0294%" height="15" fill="rgb(216,87,39)" fg:x="1242481" fg:w="380"/><text x="96.3539%" y="559.50"></text></g><g><title>alloc_empty_file (3,703 samples, 0.29%)</title><rect x="95.8483%" y="597" width="0.2864%" height="15" fill="rgb(221,178,8)" fg:x="1239177" fg:w="3703"/><text x="96.0983%" y="607.50"></text></g><g><title>__legitimize_mnt (235 samples, 0.02%)</title><rect x="96.1419%" y="549" width="0.0182%" height="15" fill="rgb(230,42,11)" fg:x="1242973" fg:w="235"/><text x="96.3919%" y="559.50"></text></g><g><title>__legitimize_path (398 samples, 0.03%)</title><rect x="96.1389%" y="565" width="0.0308%" height="15" fill="rgb(237,229,4)" fg:x="1242934" fg:w="398"/><text x="96.3889%" y="575.50"></text></g><g><title>complete_walk (481 samples, 0.04%)</title><rect x="96.1349%" y="597" width="0.0372%" height="15" fill="rgb(222,31,33)" fg:x="1242882" fg:w="481"/><text x="96.3849%" y="607.50"></text></g><g><title>try_to_unlazy (475 samples, 0.04%)</title><rect x="96.1354%" y="581" width="0.0367%" height="15" fill="rgb(210,17,39)" fg:x="1242888" fg:w="475"/><text x="96.3854%" y="591.50"></text></g><g><title>errseq_sample (428 samples, 0.03%)</title><rect x="96.2052%" y="581" width="0.0331%" height="15" fill="rgb(244,93,20)" fg:x="1243791" fg:w="428"/><text x="96.4552%" y="591.50"></text></g><g><title>apparmor_file_open (264 samples, 0.02%)</title><rect x="96.2655%" y="565" width="0.0204%" height="15" fill="rgb(210,40,47)" fg:x="1244570" fg:w="264"/><text x="96.5155%" y="575.50"></text></g><g><title>__srcu_read_lock (175 samples, 0.01%)</title><rect x="96.2993%" y="549" width="0.0135%" height="15" fill="rgb(239,211,47)" fg:x="1245008" fg:w="175"/><text x="96.5493%" y="559.50"></text></g><g><title>tomoyo_check_open_permission (619 samples, 0.05%)</title><rect x="96.2860%" y="565" width="0.0479%" height="15" fill="rgb(251,223,49)" fg:x="1244835" fg:w="619"/><text x="96.5360%" y="575.50"></text></g><g><title>security_file_open (1,004 samples, 0.08%)</title><rect x="96.2591%" y="581" width="0.0777%" height="15" fill="rgb(221,149,5)" fg:x="1244488" fg:w="1004"/><text x="96.5091%" y="591.50"></text></g><g><title>do_dentry_open (2,136 samples, 0.17%)</title><rect x="96.1721%" y="597" width="0.1652%" height="15" fill="rgb(219,224,51)" fg:x="1243363" fg:w="2136"/><text x="96.4221%" y="607.50"></text></g><g><title>do_truncate (130 samples, 0.01%)</title><rect x="96.3373%" y="597" width="0.0101%" height="15" fill="rgb(223,7,8)" fg:x="1245499" fg:w="130"/><text x="96.5873%" y="607.50"></text></g><g><title>inode_permission.part.0 (707 samples, 0.05%)</title><rect x="96.4055%" y="581" width="0.0547%" height="15" fill="rgb(241,217,22)" fg:x="1246380" fg:w="707"/><text x="96.6555%" y="591.50"></text></g><g><title>generic_permission (132 samples, 0.01%)</title><rect x="96.4499%" y="565" width="0.0102%" height="15" fill="rgb(248,209,0)" fg:x="1246955" fg:w="132"/><text x="96.6999%" y="575.50"></text></g><g><title>lookup_fast (1,008 samples, 0.08%)</title><rect x="96.4796%" y="565" width="0.0780%" height="15" fill="rgb(217,205,4)" fg:x="1247339" fg:w="1008"/><text x="96.7296%" y="575.50"></text></g><g><title>__d_lookup_rcu (842 samples, 0.07%)</title><rect x="96.4925%" y="549" width="0.0651%" height="15" fill="rgb(228,124,39)" fg:x="1247505" fg:w="842"/><text x="96.7425%" y="559.50"></text></g><g><title>link_path_walk.part.0 (2,889 samples, 0.22%)</title><rect x="96.3474%" y="597" width="0.2235%" height="15" fill="rgb(250,116,42)" fg:x="1245629" fg:w="2889"/><text x="96.5974%" y="607.50"></text></g><g><title>walk_component (1,360 samples, 0.11%)</title><rect x="96.4656%" y="581" width="0.1052%" height="15" fill="rgb(223,202,9)" fg:x="1247158" fg:w="1360"/><text x="96.7156%" y="591.50"></text></g><g><title>step_into (171 samples, 0.01%)</title><rect x="96.5576%" y="565" width="0.0132%" height="15" fill="rgb(242,222,40)" fg:x="1248347" fg:w="171"/><text x="96.8076%" y="575.50"></text></g><g><title>lookup_fast (1,633 samples, 0.13%)</title><rect x="96.5708%" y="597" width="0.1263%" height="15" fill="rgb(229,99,46)" fg:x="1248518" fg:w="1633"/><text x="96.8208%" y="607.50"></text></g><g><title>__d_lookup_rcu (1,576 samples, 0.12%)</title><rect x="96.5752%" y="581" width="0.1219%" height="15" fill="rgb(225,56,46)" fg:x="1248575" fg:w="1576"/><text x="96.8252%" y="591.50"></text></g><g><title>inode_permission.part.0 (181 samples, 0.01%)</title><rect x="96.7480%" y="581" width="0.0140%" height="15" fill="rgb(227,94,5)" fg:x="1250809" fg:w="181"/><text x="96.9980%" y="591.50"></text></g><g><title>may_open (846 samples, 0.07%)</title><rect x="96.6971%" y="597" width="0.0654%" height="15" fill="rgb(205,112,38)" fg:x="1250151" fg:w="846"/><text x="96.9471%" y="607.50"></text></g><g><title>__fget_light (314 samples, 0.02%)</title><rect x="96.7767%" y="581" width="0.0243%" height="15" fill="rgb(231,133,46)" fg:x="1251180" fg:w="314"/><text x="97.0267%" y="591.50"></text></g><g><title>__fget_files (285 samples, 0.02%)</title><rect x="96.7790%" y="565" width="0.0220%" height="15" fill="rgb(217,16,9)" fg:x="1251209" fg:w="285"/><text x="97.0290%" y="575.50"></text></g><g><title>path_init (595 samples, 0.05%)</title><rect x="96.7627%" y="597" width="0.0460%" height="15" fill="rgb(249,173,9)" fg:x="1250998" fg:w="595"/><text x="97.0127%" y="607.50"></text></g><g><title>dput (202 samples, 0.02%)</title><rect x="96.8179%" y="581" width="0.0156%" height="15" fill="rgb(205,163,53)" fg:x="1251712" fg:w="202"/><text x="97.0679%" y="591.50"></text></g><g><title>lockref_put_or_lock (131 samples, 0.01%)</title><rect x="96.8234%" y="565" width="0.0101%" height="15" fill="rgb(217,54,41)" fg:x="1251783" fg:w="131"/><text x="97.0734%" y="575.50"></text></g><g><title>terminate_walk (342 samples, 0.03%)</title><rect x="96.8137%" y="597" width="0.0265%" height="15" fill="rgb(228,216,12)" fg:x="1251658" fg:w="342"/><text x="97.0637%" y="607.50"></text></g><g><title>do_filp_open (13,335 samples, 1.03%)</title><rect x="95.8105%" y="629" width="1.0314%" height="15" fill="rgb(244,228,15)" fg:x="1238688" fg:w="13335"/><text x="96.0605%" y="639.50"></text></g><g><title>path_openat (13,134 samples, 1.02%)</title><rect x="95.8260%" y="613" width="1.0159%" height="15" fill="rgb(221,176,53)" fg:x="1238889" fg:w="13134"/><text x="96.0760%" y="623.50"></text></g><g><title>get_unused_fd_flags (135 samples, 0.01%)</title><rect x="96.8482%" y="629" width="0.0104%" height="15" fill="rgb(205,94,34)" fg:x="1252104" fg:w="135"/><text x="97.0982%" y="639.50"></text></g><g><title>memset_erms (1,109 samples, 0.09%)</title><rect x="96.8982%" y="597" width="0.0858%" height="15" fill="rgb(213,110,48)" fg:x="1252750" fg:w="1109"/><text x="97.1482%" y="607.50"></text></g><g><title>kmem_cache_alloc (1,641 samples, 0.13%)</title><rect x="96.8718%" y="613" width="0.1269%" height="15" fill="rgb(236,142,28)" fg:x="1252409" fg:w="1641"/><text x="97.1218%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (191 samples, 0.01%)</title><rect x="96.9840%" y="597" width="0.0148%" height="15" fill="rgb(225,135,29)" fg:x="1253859" fg:w="191"/><text x="97.2340%" y="607.50"></text></g><g><title>__check_heap_object (150 samples, 0.01%)</title><rect x="97.0353%" y="581" width="0.0116%" height="15" fill="rgb(252,45,31)" fg:x="1254523" fg:w="150"/><text x="97.2853%" y="591.50"></text></g><g><title>__virt_addr_valid (265 samples, 0.02%)</title><rect x="97.0469%" y="581" width="0.0205%" height="15" fill="rgb(211,187,50)" fg:x="1254673" fg:w="265"/><text x="97.2969%" y="591.50"></text></g><g><title>getname_flags.part.0 (2,655 samples, 0.21%)</title><rect x="96.8642%" y="629" width="0.2054%" height="15" fill="rgb(229,109,7)" fg:x="1252311" fg:w="2655"/><text x="97.1142%" y="639.50"></text></g><g><title>strncpy_from_user (916 samples, 0.07%)</title><rect x="96.9987%" y="613" width="0.0709%" height="15" fill="rgb(251,131,51)" fg:x="1254050" fg:w="916"/><text x="97.2487%" y="623.50"></text></g><g><title>__check_object_size (564 samples, 0.04%)</title><rect x="97.0260%" y="597" width="0.0436%" height="15" fill="rgb(251,180,35)" fg:x="1254402" fg:w="564"/><text x="97.2760%" y="607.50"></text></g><g><title>kmem_cache_free (427 samples, 0.03%)</title><rect x="97.0696%" y="629" width="0.0330%" height="15" fill="rgb(211,46,32)" fg:x="1254966" fg:w="427"/><text x="97.3196%" y="639.50"></text></g><g><title>__x64_sys_openat (17,739 samples, 1.37%)</title><rect x="95.7346%" y="661" width="1.3721%" height="15" fill="rgb(248,123,17)" fg:x="1237707" fg:w="17739"/><text x="95.9846%" y="671.50"></text></g><g><title>do_sys_openat2 (17,688 samples, 1.37%)</title><rect x="95.7386%" y="645" width="1.3681%" height="15" fill="rgb(227,141,18)" fg:x="1237758" fg:w="17688"/><text x="95.9886%" y="655.50"></text></g><g><title>__fget_files (1,133 samples, 0.09%)</title><rect x="97.2072%" y="613" width="0.0876%" height="15" fill="rgb(216,102,9)" fg:x="1256745" fg:w="1133"/><text x="97.4572%" y="623.50"></text></g><g><title>__fget_light (1,366 samples, 0.11%)</title><rect x="97.1893%" y="629" width="0.1057%" height="15" fill="rgb(253,47,13)" fg:x="1256514" fg:w="1366"/><text x="97.4393%" y="639.50"></text></g><g><title>_cond_resched (130 samples, 0.01%)</title><rect x="97.3424%" y="613" width="0.0101%" height="15" fill="rgb(226,93,23)" fg:x="1258493" fg:w="130"/><text x="97.5924%" y="623.50"></text></g><g><title>__fdget_pos (2,434 samples, 0.19%)</title><rect x="97.1646%" y="645" width="0.1883%" height="15" fill="rgb(247,104,17)" fg:x="1256194" fg:w="2434"/><text x="97.4146%" y="655.50"></text></g><g><title>mutex_lock (744 samples, 0.06%)</title><rect x="97.2953%" y="629" width="0.0575%" height="15" fill="rgb(233,203,26)" fg:x="1257884" fg:w="744"/><text x="97.5453%" y="639.50"></text></g><g><title>fput_many (550 samples, 0.04%)</title><rect x="97.3554%" y="645" width="0.0425%" height="15" fill="rgb(244,98,49)" fg:x="1258661" fg:w="550"/><text x="97.6054%" y="655.50"></text></g><g><title>mutex_unlock (589 samples, 0.05%)</title><rect x="97.3979%" y="645" width="0.0456%" height="15" fill="rgb(235,134,22)" fg:x="1259211" fg:w="589"/><text x="97.6479%" y="655.50"></text></g><g><title>__fsnotify_parent (1,069 samples, 0.08%)</title><rect x="97.5357%" y="629" width="0.0827%" height="15" fill="rgb(221,70,32)" fg:x="1260992" fg:w="1069"/><text x="97.7857%" y="639.50"></text></g><g><title>btrfs_file_read_iter (206 samples, 0.02%)</title><rect x="97.6976%" y="613" width="0.0159%" height="15" fill="rgb(238,15,50)" fg:x="1263085" fg:w="206"/><text x="97.9476%" y="623.50"></text></g><g><title>_cond_resched (170 samples, 0.01%)</title><rect x="97.8995%" y="597" width="0.0131%" height="15" fill="rgb(215,221,48)" fg:x="1265696" fg:w="170"/><text x="98.1495%" y="607.50"></text></g><g><title>_cond_resched (170 samples, 0.01%)</title><rect x="97.9957%" y="581" width="0.0131%" height="15" fill="rgb(236,73,3)" fg:x="1266939" fg:w="170"/><text x="98.2457%" y="591.50"></text></g><g><title>handle_mm_fault (153 samples, 0.01%)</title><rect x="98.4975%" y="517" width="0.0118%" height="15" fill="rgb(250,107,11)" fg:x="1273427" fg:w="153"/><text x="98.7475%" y="527.50"></text></g><g><title>asm_exc_page_fault (340 samples, 0.03%)</title><rect x="98.4837%" y="565" width="0.0263%" height="15" fill="rgb(242,39,14)" fg:x="1273248" fg:w="340"/><text x="98.7337%" y="575.50"></text></g><g><title>exc_page_fault (176 samples, 0.01%)</title><rect x="98.4963%" y="549" width="0.0136%" height="15" fill="rgb(248,164,37)" fg:x="1273412" fg:w="176"/><text x="98.7463%" y="559.50"></text></g><g><title>do_user_addr_fault (173 samples, 0.01%)</title><rect x="98.4966%" y="533" width="0.0134%" height="15" fill="rgb(217,60,12)" fg:x="1273415" fg:w="173"/><text x="98.7466%" y="543.50"></text></g><g><title>copy_user_enhanced_fast_string (6,511 samples, 0.50%)</title><rect x="98.0091%" y="581" width="0.5036%" height="15" fill="rgb(240,125,29)" fg:x="1267113" fg:w="6511"/><text x="98.2591%" y="591.50"></text></g><g><title>copy_page_to_iter (7,800 samples, 0.60%)</title><rect x="97.9145%" y="597" width="0.6033%" height="15" fill="rgb(208,207,28)" fg:x="1265889" fg:w="7800"/><text x="98.1645%" y="607.50"></text></g><g><title>pagecache_get_page (4,309 samples, 0.33%)</title><rect x="98.5262%" y="597" width="0.3333%" height="15" fill="rgb(209,159,27)" fg:x="1273798" fg:w="4309"/><text x="98.7762%" y="607.50"></text></g><g><title>find_get_entry (3,676 samples, 0.28%)</title><rect x="98.5752%" y="581" width="0.2843%" height="15" fill="rgb(251,176,53)" fg:x="1274431" fg:w="3676"/><text x="98.8252%" y="591.50"></text></g><g><title>xas_load (945 samples, 0.07%)</title><rect x="98.7864%" y="565" width="0.0731%" height="15" fill="rgb(211,85,7)" fg:x="1277162" fg:w="945"/><text x="99.0364%" y="575.50"></text></g><g><title>xas_start (676 samples, 0.05%)</title><rect x="98.8072%" y="549" width="0.0523%" height="15" fill="rgb(216,64,54)" fg:x="1277431" fg:w="676"/><text x="99.0572%" y="559.50"></text></g><g><title>atime_needs_update (1,104 samples, 0.09%)</title><rect x="98.8812%" y="581" width="0.0854%" height="15" fill="rgb(217,54,24)" fg:x="1278388" fg:w="1104"/><text x="99.1312%" y="591.50"></text></g><g><title>current_time (616 samples, 0.05%)</title><rect x="98.9190%" y="565" width="0.0476%" height="15" fill="rgb(208,206,53)" fg:x="1278876" fg:w="616"/><text x="99.1690%" y="575.50"></text></g><g><title>ktime_get_coarse_real_ts64 (209 samples, 0.02%)</title><rect x="98.9505%" y="549" width="0.0162%" height="15" fill="rgb(251,74,39)" fg:x="1279283" fg:w="209"/><text x="99.2005%" y="559.50"></text></g><g><title>btrfs_block_rsv_add (191 samples, 0.01%)</title><rect x="98.9846%" y="533" width="0.0148%" height="15" fill="rgb(226,47,5)" fg:x="1279725" fg:w="191"/><text x="99.2346%" y="543.50"></text></g><g><title>btrfs_reserve_metadata_bytes (166 samples, 0.01%)</title><rect x="98.9866%" y="517" width="0.0128%" height="15" fill="rgb(234,111,33)" fg:x="1279750" fg:w="166"/><text x="99.2366%" y="527.50"></text></g><g><title>__reserve_bytes (158 samples, 0.01%)</title><rect x="98.9872%" y="501" width="0.0122%" height="15" fill="rgb(251,14,10)" fg:x="1279758" fg:w="158"/><text x="99.2372%" y="511.50"></text></g><g><title>btrfs_delayed_update_inode (397 samples, 0.03%)</title><rect x="98.9745%" y="549" width="0.0307%" height="15" fill="rgb(232,43,0)" fg:x="1279594" fg:w="397"/><text x="99.2245%" y="559.50"></text></g><g><title>btrfs_update_inode (440 samples, 0.03%)</title><rect x="98.9739%" y="565" width="0.0340%" height="15" fill="rgb(222,68,43)" fg:x="1279586" fg:w="440"/><text x="99.2239%" y="575.50"></text></g><g><title>btrfs_dirty_inode (762 samples, 0.06%)</title><rect x="98.9666%" y="581" width="0.0589%" height="15" fill="rgb(217,24,23)" fg:x="1279492" fg:w="762"/><text x="99.2166%" y="591.50"></text></g><g><title>generic_file_buffered_read (16,974 samples, 1.31%)</title><rect x="97.7135%" y="613" width="1.3129%" height="15" fill="rgb(229,209,14)" fg:x="1263291" fg:w="16974"/><text x="97.9635%" y="623.50"></text></g><g><title>touch_atime (2,158 samples, 0.17%)</title><rect x="98.8595%" y="597" width="0.1669%" height="15" fill="rgb(250,149,48)" fg:x="1278107" fg:w="2158"/><text x="99.1095%" y="607.50"></text></g><g><title>new_sync_read (18,334 samples, 1.42%)</title><rect x="97.6193%" y="629" width="1.4181%" height="15" fill="rgb(210,120,37)" fg:x="1262073" fg:w="18334"/><text x="97.8693%" y="639.50"></text></g><g><title>iov_iter_init (142 samples, 0.01%)</title><rect x="99.0264%" y="613" width="0.0110%" height="15" fill="rgb(210,21,8)" fg:x="1280265" fg:w="142"/><text x="99.2764%" y="623.50"></text></g><g><title>rw_verify_area (233 samples, 0.02%)</title><rect x="99.0374%" y="629" width="0.0180%" height="15" fill="rgb(243,145,7)" fg:x="1280407" fg:w="233"/><text x="99.2874%" y="639.50"></text></g><g><title>aa_file_perm (308 samples, 0.02%)</title><rect x="99.1673%" y="597" width="0.0238%" height="15" fill="rgb(238,178,32)" fg:x="1282086" fg:w="308"/><text x="99.4173%" y="607.50"></text></g><g><title>apparmor_file_permission (1,302 samples, 0.10%)</title><rect x="99.0905%" y="613" width="0.1007%" height="15" fill="rgb(222,4,10)" fg:x="1281094" fg:w="1302"/><text x="99.3405%" y="623.50"></text></g><g><title>security_file_permission (1,757 samples, 0.14%)</title><rect x="99.0554%" y="629" width="0.1359%" height="15" fill="rgb(239,7,37)" fg:x="1280640" fg:w="1757"/><text x="99.3054%" y="639.50"></text></g><g><title>ksys_read (26,633 samples, 2.06%)</title><rect x="97.1315%" y="661" width="2.0600%" height="15" fill="rgb(215,31,37)" fg:x="1255767" fg:w="26633"/><text x="97.3815%" y="671.50">k..</text></g><g><title>vfs_read (22,600 samples, 1.75%)</title><rect x="97.4435%" y="645" width="1.7481%" height="15" fill="rgb(224,83,33)" fg:x="1259800" fg:w="22600"/><text x="97.6935%" y="655.50"></text></g><g><title>syscall_enter_from_user_mode (231 samples, 0.02%)</title><rect x="99.1926%" y="661" width="0.0179%" height="15" fill="rgb(239,55,3)" fg:x="1282413" fg:w="231"/><text x="99.4426%" y="671.50"></text></g><g><title>perf_iterate_sb (131 samples, 0.01%)</title><rect x="99.2246%" y="597" width="0.0101%" height="15" fill="rgb(247,92,11)" fg:x="1282827" fg:w="131"/><text x="99.4746%" y="607.50"></text></g><g><title>perf_event_mmap (163 samples, 0.01%)</title><rect x="99.2225%" y="613" width="0.0126%" height="15" fill="rgb(239,200,7)" fg:x="1282800" fg:w="163"/><text x="99.4725%" y="623.50"></text></g><g><title>do_mmap (433 samples, 0.03%)</title><rect x="99.2110%" y="645" width="0.0335%" height="15" fill="rgb(227,115,8)" fg:x="1282651" fg:w="433"/><text x="99.4610%" y="655.50"></text></g><g><title>mmap_region (330 samples, 0.03%)</title><rect x="99.2189%" y="629" width="0.0255%" height="15" fill="rgb(215,189,27)" fg:x="1282754" fg:w="330"/><text x="99.4689%" y="639.50"></text></g><g><title>do_syscall_64 (54,874 samples, 4.24%)</title><rect x="95.0035%" y="677" width="4.2444%" height="15" fill="rgb(251,216,39)" fg:x="1228255" fg:w="54874"/><text x="95.2535%" y="687.50">do_sy..</text></g><g><title>vm_mmap_pgoff (485 samples, 0.04%)</title><rect x="99.2104%" y="661" width="0.0375%" height="15" fill="rgb(207,29,47)" fg:x="1282644" fg:w="485"/><text x="99.4604%" y="671.50"></text></g><g><title>fpregs_assert_state_consistent (225 samples, 0.02%)</title><rect x="99.3170%" y="645" width="0.0174%" height="15" fill="rgb(210,71,34)" fg:x="1284022" fg:w="225"/><text x="99.5670%" y="655.50"></text></g><g><title>btrfs_release_file (467 samples, 0.04%)</title><rect x="99.3851%" y="613" width="0.0361%" height="15" fill="rgb(253,217,51)" fg:x="1284902" fg:w="467"/><text x="99.6351%" y="623.50"></text></g><g><title>lockref_put_or_lock (131 samples, 0.01%)</title><rect x="99.4372%" y="597" width="0.0101%" height="15" fill="rgb(222,117,46)" fg:x="1285576" fg:w="131"/><text x="99.6872%" y="607.50"></text></g><g><title>dput (345 samples, 0.03%)</title><rect x="99.4212%" y="613" width="0.0267%" height="15" fill="rgb(226,132,6)" fg:x="1285369" fg:w="345"/><text x="99.6712%" y="623.50"></text></g><g><title>kmem_cache_free (288 samples, 0.02%)</title><rect x="99.4479%" y="613" width="0.0223%" height="15" fill="rgb(254,145,51)" fg:x="1285714" fg:w="288"/><text x="99.6979%" y="623.50"></text></g><g><title>apparmor_file_free_security (334 samples, 0.03%)</title><rect x="99.4979%" y="597" width="0.0258%" height="15" fill="rgb(231,199,27)" fg:x="1286360" fg:w="334"/><text x="99.7479%" y="607.50"></text></g><g><title>__fput (2,138 samples, 0.17%)</title><rect x="99.3584%" y="629" width="0.1654%" height="15" fill="rgb(245,158,14)" fg:x="1284557" fg:w="2138"/><text x="99.6084%" y="639.50"></text></g><g><title>security_file_free (401 samples, 0.03%)</title><rect x="99.4927%" y="613" width="0.0310%" height="15" fill="rgb(240,113,14)" fg:x="1286294" fg:w="401"/><text x="99.7427%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59,645 samples, 4.61%)</title><rect x="94.9568%" y="693" width="4.6134%" height="15" fill="rgb(210,20,13)" fg:x="1227651" fg:w="59645"/><text x="95.2068%" y="703.50">entry..</text></g><g><title>syscall_exit_to_user_mode (4,167 samples, 0.32%)</title><rect x="99.2479%" y="677" width="0.3223%" height="15" fill="rgb(241,144,13)" fg:x="1283129" fg:w="4167"/><text x="99.4979%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (3,900 samples, 0.30%)</title><rect x="99.2686%" y="661" width="0.3017%" height="15" fill="rgb(235,43,34)" fg:x="1283396" fg:w="3900"/><text x="99.5186%" y="671.50"></text></g><g><title>task_work_run (2,870 samples, 0.22%)</title><rect x="99.3483%" y="645" width="0.2220%" height="15" fill="rgb(208,36,20)" fg:x="1284426" fg:w="2870"/><text x="99.5983%" y="655.50"></text></g><g><title>call_rcu (497 samples, 0.04%)</title><rect x="99.5318%" y="629" width="0.0384%" height="15" fill="rgb(239,204,10)" fg:x="1286799" fg:w="497"/><text x="99.7818%" y="639.50"></text></g><g><title>rcu_segcblist_enqueue (204 samples, 0.02%)</title><rect x="99.5545%" y="613" width="0.0158%" height="15" fill="rgb(217,84,43)" fg:x="1287092" fg:w="204"/><text x="99.8045%" y="623.50"></text></g><g><title>error_entry (354 samples, 0.03%)</title><rect x="99.5703%" y="693" width="0.0274%" height="15" fill="rgb(241,170,50)" fg:x="1287296" fg:w="354"/><text x="99.8203%" y="703.50"></text></g><g><title>sync_regs (317 samples, 0.02%)</title><rect x="99.5731%" y="677" width="0.0245%" height="15" fill="rgb(226,205,29)" fg:x="1287333" fg:w="317"/><text x="99.8231%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (1,066 samples, 0.08%)</title><rect x="99.6064%" y="645" width="0.0825%" height="15" fill="rgb(233,113,1)" fg:x="1287763" fg:w="1066"/><text x="99.8564%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,034 samples, 0.08%)</title><rect x="99.6088%" y="629" width="0.0800%" height="15" fill="rgb(253,98,13)" fg:x="1287795" fg:w="1034"/><text x="99.8588%" y="639.50"></text></g><g><title>native_write_msr (1,020 samples, 0.08%)</title><rect x="99.6099%" y="613" width="0.0789%" height="15" fill="rgb(211,115,12)" fg:x="1287809" fg:w="1020"/><text x="99.8599%" y="623.50"></text></g><g><title>schedule_tail (1,138 samples, 0.09%)</title><rect x="99.6041%" y="677" width="0.0880%" height="15" fill="rgb(208,12,16)" fg:x="1287733" fg:w="1138"/><text x="99.8541%" y="687.50"></text></g><g><title>finish_task_switch (1,135 samples, 0.09%)</title><rect x="99.6043%" y="661" width="0.0878%" height="15" fill="rgb(237,193,54)" fg:x="1287736" fg:w="1135"/><text x="99.8543%" y="671.50"></text></g><g><title>ret_from_fork (1,167 samples, 0.09%)</title><rect x="99.6029%" y="693" width="0.0903%" height="15" fill="rgb(243,22,42)" fg:x="1287718" fg:w="1167"/><text x="99.8529%" y="703.50"></text></g><g><title>syscall_return_via_sysret (794 samples, 0.06%)</title><rect x="99.6932%" y="693" width="0.0614%" height="15" fill="rgb(233,151,36)" fg:x="1288885" fg:w="794"/><text x="99.9432%" y="703.50"></text></g><g><title>[zig] (118,365 samples, 9.16%)</title><rect x="90.5994%" y="709" width="9.1553%" height="15" fill="rgb(237,57,45)" fg:x="1171316" fg:w="118365"/><text x="90.8494%" y="719.50">[zig]</text></g><g><title>asm_exc_page_fault (875 samples, 0.07%)</title><rect x="99.7551%" y="709" width="0.0677%" height="15" fill="rgb(221,88,17)" fg:x="1289686" fg:w="875"/><text x="100.0051%" y="719.50"></text></g><g><title>mmput (313 samples, 0.02%)</title><rect x="99.8446%" y="597" width="0.0242%" height="15" fill="rgb(230,79,15)" fg:x="1290843" fg:w="313"/><text x="100.0946%" y="607.50"></text></g><g><title>exit_mmap (312 samples, 0.02%)</title><rect x="99.8447%" y="581" width="0.0241%" height="15" fill="rgb(213,57,13)" fg:x="1290844" fg:w="312"/><text x="100.0947%" y="591.50"></text></g><g><title>unmap_vmas (229 samples, 0.02%)</title><rect x="99.8511%" y="565" width="0.0177%" height="15" fill="rgb(222,116,39)" fg:x="1290927" fg:w="229"/><text x="100.1011%" y="575.50"></text></g><g><title>unmap_page_range (228 samples, 0.02%)</title><rect x="99.8512%" y="549" width="0.0176%" height="15" fill="rgb(245,107,2)" fg:x="1290928" fg:w="228"/><text x="100.1012%" y="559.50"></text></g><g><title>begin_new_exec (316 samples, 0.02%)</title><rect x="99.8446%" y="613" width="0.0244%" height="15" fill="rgb(238,1,10)" fg:x="1290843" fg:w="316"/><text x="100.0946%" y="623.50"></text></g><g><title>__x64_sys_execve (373 samples, 0.03%)</title><rect x="99.8431%" y="677" width="0.0289%" height="15" fill="rgb(249,4,48)" fg:x="1290823" fg:w="373"/><text x="100.0931%" y="687.50"></text></g><g><title>do_execveat_common (373 samples, 0.03%)</title><rect x="99.8431%" y="661" width="0.0289%" height="15" fill="rgb(223,151,18)" fg:x="1290823" fg:w="373"/><text x="100.0931%" y="671.50"></text></g><g><title>bprm_execve (373 samples, 0.03%)</title><rect x="99.8431%" y="645" width="0.0289%" height="15" fill="rgb(227,65,43)" fg:x="1290823" fg:w="373"/><text x="100.0931%" y="655.50"></text></g><g><title>load_elf_binary (373 samples, 0.03%)</title><rect x="99.8431%" y="629" width="0.0289%" height="15" fill="rgb(218,40,45)" fg:x="1290823" fg:w="373"/><text x="100.0931%" y="639.50"></text></g><g><title>tlb_finish_mmu (155 samples, 0.01%)</title><rect x="99.8768%" y="597" width="0.0120%" height="15" fill="rgb(252,121,31)" fg:x="1291259" fg:w="155"/><text x="100.1268%" y="607.50"></text></g><g><title>page_remove_rmap (157 samples, 0.01%)</title><rect x="99.9161%" y="565" width="0.0121%" height="15" fill="rgb(219,158,43)" fg:x="1291767" fg:w="157"/><text x="100.1661%" y="575.50"></text></g><g><title>exit_mmap (772 samples, 0.06%)</title><rect x="99.8757%" y="613" width="0.0597%" height="15" fill="rgb(231,162,42)" fg:x="1291245" fg:w="772"/><text x="100.1257%" y="623.50"></text></g><g><title>unmap_vmas (603 samples, 0.05%)</title><rect x="99.8888%" y="597" width="0.0466%" height="15" fill="rgb(217,179,25)" fg:x="1291414" fg:w="603"/><text x="100.1388%" y="607.50"></text></g><g><title>unmap_page_range (603 samples, 0.05%)</title><rect x="99.8888%" y="581" width="0.0466%" height="15" fill="rgb(206,212,31)" fg:x="1291414" fg:w="603"/><text x="100.1388%" y="591.50"></text></g><g><title>mmput (774 samples, 0.06%)</title><rect x="99.8756%" y="629" width="0.0599%" height="15" fill="rgb(235,144,12)" fg:x="1291244" fg:w="774"/><text x="100.1256%" y="639.50"></text></g><g><title>__x64_sys_exit_group (793 samples, 0.06%)</title><rect x="99.8745%" y="677" width="0.0613%" height="15" fill="rgb(213,51,10)" fg:x="1291229" fg:w="793"/><text x="100.1245%" y="687.50"></text></g><g><title>do_group_exit (793 samples, 0.06%)</title><rect x="99.8745%" y="661" width="0.0613%" height="15" fill="rgb(231,145,14)" fg:x="1291229" fg:w="793"/><text x="100.1245%" y="671.50"></text></g><g><title>do_exit (793 samples, 0.06%)</title><rect x="99.8745%" y="645" width="0.0613%" height="15" fill="rgb(235,15,28)" fg:x="1291229" fg:w="793"/><text x="100.1245%" y="655.50"></text></g><g><title>do_syscall_64 (1,203 samples, 0.09%)</title><rect x="99.8431%" y="693" width="0.0931%" height="15" fill="rgb(237,206,10)" fg:x="1290823" fg:w="1203"/><text x="100.0931%" y="703.50"></text></g><g><title>mmput (292 samples, 0.02%)</title><rect x="99.9390%" y="597" width="0.0226%" height="15" fill="rgb(236,227,27)" fg:x="1292063" fg:w="292"/><text x="100.1890%" y="607.50"></text></g><g><title>exit_mmap (292 samples, 0.02%)</title><rect x="99.9390%" y="581" width="0.0226%" height="15" fill="rgb(246,83,35)" fg:x="1292063" fg:w="292"/><text x="100.1890%" y="591.50"></text></g><g><title>unmap_vmas (218 samples, 0.02%)</title><rect x="99.9447%" y="565" width="0.0169%" height="15" fill="rgb(220,136,24)" fg:x="1292137" fg:w="218"/><text x="100.1947%" y="575.50"></text></g><g><title>unmap_page_range (217 samples, 0.02%)</title><rect x="99.9448%" y="549" width="0.0168%" height="15" fill="rgb(217,3,25)" fg:x="1292138" fg:w="217"/><text x="100.1948%" y="559.50"></text></g><g><title>arch_do_signal (340 samples, 0.03%)</title><rect x="99.9361%" y="661" width="0.0263%" height="15" fill="rgb(239,24,14)" fg:x="1292026" fg:w="340"/><text x="100.1861%" y="671.50"></text></g><g><title>get_signal (340 samples, 0.03%)</title><rect x="99.9361%" y="645" width="0.0263%" height="15" fill="rgb(244,16,53)" fg:x="1292026" fg:w="340"/><text x="100.1861%" y="655.50"></text></g><g><title>do_group_exit (340 samples, 0.03%)</title><rect x="99.9361%" y="629" width="0.0263%" height="15" fill="rgb(208,175,44)" fg:x="1292026" fg:w="340"/><text x="100.1861%" y="639.50"></text></g><g><title>do_exit (340 samples, 0.03%)</title><rect x="99.9361%" y="613" width="0.0263%" height="15" fill="rgb(252,18,48)" fg:x="1292026" fg:w="340"/><text x="100.1861%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,794 samples, 0.14%)</title><rect x="99.8237%" y="709" width="0.1388%" height="15" fill="rgb(234,199,32)" fg:x="1290573" fg:w="1794"/><text x="100.0737%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (341 samples, 0.03%)</title><rect x="99.9361%" y="693" width="0.0264%" height="15" fill="rgb(225,77,54)" fg:x="1292026" fg:w="341"/><text x="100.1861%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (341 samples, 0.03%)</title><rect x="99.9361%" y="677" width="0.0264%" height="15" fill="rgb(225,42,25)" fg:x="1292026" fg:w="341"/><text x="100.1861%" y="687.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (352 samples, 0.03%)</title><rect x="99.9625%" y="709" width="0.0272%" height="15" fill="rgb(242,227,46)" fg:x="1292367" fg:w="352"/><text x="100.2125%" y="719.50"></text></g><g><title>all (1,292,852 samples, 100%)</title><rect x="0.0000%" y="741" width="100.0000%" height="15" fill="rgb(246,197,35)" fg:x="0" fg:w="1292852"/><text x="0.2500%" y="751.50"></text></g><g><title>zig (121,536 samples, 9.40%)</title><rect x="90.5994%" y="725" width="9.4006%" height="15" fill="rgb(215,159,26)" fg:x="1171316" fg:w="121536"/><text x="90.8494%" y="735.50">zig</text></g></svg></svg> +\ No newline at end of file diff --git a/results/llvm-sysroot-j1.svg b/results/llvm-sysroot-j1.svg @@ -0,0 +1,491 @@ +<?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="886" onload="init(evt)" viewBox="0 0 1200 886" 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="886" 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="869.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="869.00"> </text><svg id="frames" x="10" width="1180" total_samples="482777"><g><title>_dl_update_slotinfo (129 samples, 0.03%)</title><rect x="0.2055%" y="789" width="0.0267%" height="15" fill="rgb(227,0,7)" fg:x="992" fg:w="129"/><text x="0.4555%" y="799.50"></text></g><g><title>[anon] (1,232 samples, 0.26%)</title><rect x="0.0178%" y="805" width="0.2552%" height="15" fill="rgb(217,0,24)" fg:x="86" fg:w="1232"/><text x="0.2678%" y="815.50"></text></g><g><title>[perf-987172.map] (156 samples, 0.03%)</title><rect x="0.2732%" y="805" width="0.0323%" height="15" fill="rgb(221,193,54)" fg:x="1319" fg:w="156"/><text x="0.5232%" y="815.50"></text></g><g><title>[unknown] (106 samples, 0.02%)</title><rect x="0.3057%" y="805" width="0.0220%" height="15" fill="rgb(248,212,6)" fg:x="1476" fg:w="106"/><text x="0.5557%" y="815.50"></text></g><g><title>jio_vsnprintf (72 samples, 0.01%)</title><rect x="0.3420%" y="661" width="0.0149%" height="15" fill="rgb(208,68,35)" fg:x="1651" fg:w="72"/><text x="0.5920%" y="671.50"></text></g><g><title>os::vsnprintf (72 samples, 0.01%)</title><rect x="0.3420%" y="645" width="0.0149%" height="15" fill="rgb(232,128,0)" fg:x="1651" fg:w="72"/><text x="0.5920%" y="655.50"></text></g><g><title>__vsnprintf_internal (70 samples, 0.01%)</title><rect x="0.3424%" y="629" width="0.0145%" height="15" fill="rgb(207,160,47)" fg:x="1653" fg:w="70"/><text x="0.5924%" y="639.50"></text></g><g><title>__vfprintf_internal (68 samples, 0.01%)</title><rect x="0.3428%" y="613" width="0.0141%" height="15" fill="rgb(228,23,34)" fg:x="1655" fg:w="68"/><text x="0.5928%" y="623.50"></text></g><g><title>CompileBroker::post_compile (82 samples, 0.02%)</title><rect x="0.3409%" y="693" width="0.0170%" height="15" fill="rgb(218,30,26)" fg:x="1646" fg:w="82"/><text x="0.5909%" y="703.50"></text></g><g><title>StringEventLog::log (81 samples, 0.02%)</title><rect x="0.3412%" y="677" width="0.0168%" height="15" fill="rgb(220,122,19)" fg:x="1647" fg:w="81"/><text x="0.5912%" y="687.50"></text></g><g><title>CompileTask::print (115 samples, 0.02%)</title><rect x="0.3621%" y="693" width="0.0238%" height="15" fill="rgb(250,228,42)" fg:x="1748" fg:w="115"/><text x="0.6121%" y="703.50"></text></g><g><title>outputStream::print (67 samples, 0.01%)</title><rect x="0.3720%" y="677" width="0.0139%" height="15" fill="rgb(240,193,28)" fg:x="1796" fg:w="67"/><text x="0.6220%" y="687.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (64 samples, 0.01%)</title><rect x="0.3726%" y="661" width="0.0133%" height="15" fill="rgb(216,20,37)" fg:x="1799" fg:w="64"/><text x="0.6226%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (58 samples, 0.01%)</title><rect x="0.4060%" y="533" width="0.0120%" height="15" fill="rgb(206,188,39)" fg:x="1960" fg:w="58"/><text x="0.6560%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (88 samples, 0.02%)</title><rect x="0.4058%" y="549" width="0.0182%" height="15" fill="rgb(217,207,13)" fg:x="1959" fg:w="88"/><text x="0.6558%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (147 samples, 0.03%)</title><rect x="0.4047%" y="565" width="0.0304%" height="15" fill="rgb(231,73,38)" fg:x="1954" fg:w="147"/><text x="0.6547%" y="575.50"></text></g><g><title>SubstitutionResolver::block_do (54 samples, 0.01%)</title><rect x="0.4240%" y="549" width="0.0112%" height="15" fill="rgb(225,20,46)" fg:x="2047" fg:w="54"/><text x="0.6740%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (215 samples, 0.04%)</title><rect x="0.4039%" y="597" width="0.0445%" height="15" fill="rgb(210,31,41)" fg:x="1950" fg:w="215"/><text x="0.6539%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (214 samples, 0.04%)</title><rect x="0.4041%" y="581" width="0.0443%" height="15" fill="rgb(221,200,47)" fg:x="1951" fg:w="214"/><text x="0.6541%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (64 samples, 0.01%)</title><rect x="0.4352%" y="565" width="0.0133%" height="15" fill="rgb(226,26,5)" fg:x="2101" fg:w="64"/><text x="0.6852%" y="575.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (375 samples, 0.08%)</title><rect x="0.3942%" y="613" width="0.0777%" height="15" fill="rgb(249,33,26)" fg:x="1903" fg:w="375"/><text x="0.6442%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (66 samples, 0.01%)</title><rect x="0.4764%" y="533" width="0.0137%" height="15" fill="rgb(235,183,28)" fg:x="2300" fg:w="66"/><text x="0.7264%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (83 samples, 0.02%)</title><rect x="0.4748%" y="549" width="0.0172%" height="15" fill="rgb(221,5,38)" fg:x="2292" fg:w="83"/><text x="0.7248%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (110 samples, 0.02%)</title><rect x="0.4729%" y="565" width="0.0228%" height="15" fill="rgb(247,18,42)" fg:x="2283" fg:w="110"/><text x="0.7229%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (112 samples, 0.02%)</title><rect x="0.4727%" y="581" width="0.0232%" height="15" fill="rgb(241,131,45)" fg:x="2282" fg:w="112"/><text x="0.7227%" y="591.50"></text></g><g><title>MethodLiveness::compute_liveness (97 samples, 0.02%)</title><rect x="0.5067%" y="533" width="0.0201%" height="15" fill="rgb(249,31,29)" fg:x="2446" fg:w="97"/><text x="0.7567%" y="543.50"></text></g><g><title>BlockListBuilder::set_leaders (129 samples, 0.03%)</title><rect x="0.5002%" y="565" width="0.0267%" height="15" fill="rgb(225,111,53)" fg:x="2415" fg:w="129"/><text x="0.7502%" y="575.50"></text></g><g><title>ciMethod::bci_block_start (100 samples, 0.02%)</title><rect x="0.5062%" y="549" width="0.0207%" height="15" fill="rgb(238,160,17)" fg:x="2444" fg:w="100"/><text x="0.7562%" y="559.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (143 samples, 0.03%)</title><rect x="0.4980%" y="581" width="0.0296%" height="15" fill="rgb(214,148,48)" fg:x="2404" fg:w="143"/><text x="0.7480%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (65 samples, 0.01%)</title><rect x="0.5738%" y="469" width="0.0135%" height="15" fill="rgb(232,36,49)" fg:x="2770" fg:w="65"/><text x="0.8238%" y="479.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (74 samples, 0.02%)</title><rect x="0.5723%" y="485" width="0.0153%" height="15" fill="rgb(209,103,24)" fg:x="2763" fg:w="74"/><text x="0.8223%" y="495.50"></text></g><g><title>ciField::ciField (104 samples, 0.02%)</title><rect x="0.5692%" y="501" width="0.0215%" height="15" fill="rgb(229,88,8)" fg:x="2748" fg:w="104"/><text x="0.8192%" y="511.50"></text></g><g><title>ciEnv::get_field_by_index (114 samples, 0.02%)</title><rect x="0.5680%" y="517" width="0.0236%" height="15" fill="rgb(213,181,19)" fg:x="2742" fg:w="114"/><text x="0.8180%" y="527.50"></text></g><g><title>ciBytecodeStream::get_field (137 samples, 0.03%)</title><rect x="0.5680%" y="533" width="0.0284%" height="15" fill="rgb(254,191,54)" fg:x="2742" fg:w="137"/><text x="0.8180%" y="543.50"></text></g><g><title>GraphBuilder::access_field (194 samples, 0.04%)</title><rect x="0.5572%" y="549" width="0.0402%" height="15" fill="rgb(241,83,37)" fg:x="2690" fg:w="194"/><text x="0.8072%" y="559.50"></text></g><g><title>BlockBegin::try_merge (51 samples, 0.01%)</title><rect x="0.6583%" y="469" width="0.0106%" height="15" fill="rgb(233,36,39)" fg:x="3178" fg:w="51"/><text x="0.9083%" y="479.50"></text></g><g><title>ciField::ciField (73 samples, 0.02%)</title><rect x="0.6788%" y="421" width="0.0151%" height="15" fill="rgb(226,3,54)" fg:x="3277" fg:w="73"/><text x="0.9288%" y="431.50"></text></g><g><title>ciEnv::get_field_by_index (78 samples, 0.02%)</title><rect x="0.6784%" y="437" width="0.0162%" height="15" fill="rgb(245,192,40)" fg:x="3275" fg:w="78"/><text x="0.9284%" y="447.50"></text></g><g><title>ciBytecodeStream::get_field (91 samples, 0.02%)</title><rect x="0.6782%" y="453" width="0.0188%" height="15" fill="rgb(238,167,29)" fg:x="3274" fg:w="91"/><text x="0.9282%" y="463.50"></text></g><g><title>GraphBuilder::access_field (133 samples, 0.03%)</title><rect x="0.6703%" y="469" width="0.0275%" height="15" fill="rgb(232,182,51)" fg:x="3236" fg:w="133"/><text x="0.9203%" y="479.50"></text></g><g><title>ciBytecodeStream::get_field (56 samples, 0.01%)</title><rect x="0.7345%" y="373" width="0.0116%" height="15" fill="rgb(231,60,39)" fg:x="3546" fg:w="56"/><text x="0.9845%" y="383.50"></text></g><g><title>GraphBuilder::access_field (82 samples, 0.02%)</title><rect x="0.7316%" y="389" width="0.0170%" height="15" fill="rgb(208,69,12)" fg:x="3532" fg:w="82"/><text x="0.9816%" y="399.50"></text></g><g><title>GraphBuilder::access_field (51 samples, 0.01%)</title><rect x="0.7656%" y="309" width="0.0106%" height="15" fill="rgb(235,93,37)" fg:x="3696" fg:w="51"/><text x="1.0156%" y="319.50"></text></g><g><title>GraphBuilder::invoke (65 samples, 0.01%)</title><rect x="0.7877%" y="229" width="0.0135%" height="15" fill="rgb(213,116,39)" fg:x="3803" fg:w="65"/><text x="1.0377%" y="239.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (98 samples, 0.02%)</title><rect x="0.7826%" y="261" width="0.0203%" height="15" fill="rgb(222,207,29)" fg:x="3778" fg:w="98"/><text x="1.0326%" y="271.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (96 samples, 0.02%)</title><rect x="0.7830%" y="245" width="0.0199%" height="15" fill="rgb(206,96,30)" fg:x="3780" fg:w="96"/><text x="1.0330%" y="255.50"></text></g><g><title>GraphBuilder::try_inline_full (147 samples, 0.03%)</title><rect x="0.7811%" y="277" width="0.0304%" height="15" fill="rgb(218,138,4)" fg:x="3771" fg:w="147"/><text x="1.0311%" y="287.50"></text></g><g><title>GraphBuilder::try_inline (157 samples, 0.03%)</title><rect x="0.7809%" y="293" width="0.0325%" height="15" fill="rgb(250,191,14)" fg:x="3770" fg:w="157"/><text x="1.0309%" y="303.50"></text></g><g><title>GraphBuilder::invoke (221 samples, 0.05%)</title><rect x="0.7784%" y="309" width="0.0458%" height="15" fill="rgb(239,60,40)" fg:x="3758" fg:w="221"/><text x="1.0284%" y="319.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (331 samples, 0.07%)</title><rect x="0.7604%" y="341" width="0.0686%" height="15" fill="rgb(206,27,48)" fg:x="3671" fg:w="331"/><text x="1.0104%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (324 samples, 0.07%)</title><rect x="0.7618%" y="325" width="0.0671%" height="15" fill="rgb(225,35,8)" fg:x="3678" fg:w="324"/><text x="1.0118%" y="335.50"></text></g><g><title>GraphBuilder::try_inline_full (415 samples, 0.09%)</title><rect x="0.7581%" y="357" width="0.0860%" height="15" fill="rgb(250,213,24)" fg:x="3660" fg:w="415"/><text x="1.0081%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (451 samples, 0.09%)</title><rect x="0.7579%" y="373" width="0.0934%" height="15" fill="rgb(247,123,22)" fg:x="3659" fg:w="451"/><text x="1.0079%" y="383.50"></text></g><g><title>ciObjectFactory::get_metadata (51 samples, 0.01%)</title><rect x="0.8650%" y="341" width="0.0106%" height="15" fill="rgb(231,138,38)" fg:x="4176" fg:w="51"/><text x="1.1150%" y="351.50"></text></g><g><title>ciBytecodeStream::get_method (97 samples, 0.02%)</title><rect x="0.8559%" y="373" width="0.0201%" height="15" fill="rgb(231,145,46)" fg:x="4132" fg:w="97"/><text x="1.1059%" y="383.50"></text></g><g><title>ciEnv::get_method_by_index_impl (92 samples, 0.02%)</title><rect x="0.8569%" y="357" width="0.0191%" height="15" fill="rgb(251,118,11)" fg:x="4137" fg:w="92"/><text x="1.1069%" y="367.50"></text></g><g><title>GraphBuilder::invoke (613 samples, 0.13%)</title><rect x="0.7529%" y="389" width="0.1270%" height="15" fill="rgb(217,147,25)" fg:x="3635" fg:w="613"/><text x="1.0029%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (821 samples, 0.17%)</title><rect x="0.7186%" y="421" width="0.1701%" height="15" fill="rgb(247,81,37)" fg:x="3469" fg:w="821"/><text x="0.9686%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (806 samples, 0.17%)</title><rect x="0.7217%" y="405" width="0.1670%" height="15" fill="rgb(209,12,38)" fg:x="3484" fg:w="806"/><text x="0.9717%" y="415.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (54 samples, 0.01%)</title><rect x="0.8894%" y="405" width="0.0112%" height="15" fill="rgb(227,1,9)" fg:x="4294" fg:w="54"/><text x="1.1394%" y="415.50"></text></g><g><title>GraphBuilder::push_scope (82 samples, 0.02%)</title><rect x="0.8888%" y="421" width="0.0170%" height="15" fill="rgb(248,47,43)" fg:x="4291" fg:w="82"/><text x="1.1388%" y="431.50"></text></g><g><title>ciMethod::ensure_method_data (63 samples, 0.01%)</title><rect x="0.9064%" y="405" width="0.0130%" height="15" fill="rgb(221,10,30)" fg:x="4376" fg:w="63"/><text x="1.1564%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (65 samples, 0.01%)</title><rect x="0.9062%" y="421" width="0.0135%" height="15" fill="rgb(210,229,1)" fg:x="4375" fg:w="65"/><text x="1.1562%" y="431.50"></text></g><g><title>GraphBuilder::try_inline_full (1,003 samples, 0.21%)</title><rect x="0.7125%" y="437" width="0.2078%" height="15" fill="rgb(222,148,37)" fg:x="3440" fg:w="1003"/><text x="0.9625%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (1,045 samples, 0.22%)</title><rect x="0.7115%" y="453" width="0.2165%" height="15" fill="rgb(234,67,33)" fg:x="3435" fg:w="1045"/><text x="0.9615%" y="463.50"></text></g><g><title>ciMethod::ciMethod (50 samples, 0.01%)</title><rect x="0.9528%" y="389" width="0.0104%" height="15" fill="rgb(247,98,35)" fg:x="4600" fg:w="50"/><text x="1.2028%" y="399.50"></text></g><g><title>ciObjectFactory::create_new_metadata (59 samples, 0.01%)</title><rect x="0.9512%" y="405" width="0.0122%" height="15" fill="rgb(247,138,52)" fg:x="4592" fg:w="59"/><text x="1.2012%" y="415.50"></text></g><g><title>ciObjectFactory::get_metadata (71 samples, 0.01%)</title><rect x="0.9489%" y="421" width="0.0147%" height="15" fill="rgb(213,79,30)" fg:x="4581" fg:w="71"/><text x="1.1989%" y="431.50"></text></g><g><title>ciEnv::get_method_by_index_impl (138 samples, 0.03%)</title><rect x="0.9352%" y="437" width="0.0286%" height="15" fill="rgb(246,177,23)" fg:x="4515" fg:w="138"/><text x="1.1852%" y="447.50"></text></g><g><title>ciBytecodeStream::get_method (153 samples, 0.03%)</title><rect x="0.9323%" y="453" width="0.0317%" height="15" fill="rgb(230,62,27)" fg:x="4501" fg:w="153"/><text x="1.1823%" y="463.50"></text></g><g><title>GraphBuilder::invoke (1,285 samples, 0.27%)</title><rect x="0.7047%" y="469" width="0.2662%" height="15" fill="rgb(216,154,8)" fg:x="3402" fg:w="1285"/><text x="0.9547%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,625 samples, 0.34%)</title><rect x="0.6483%" y="501" width="0.3366%" height="15" fill="rgb(244,35,45)" fg:x="3130" fg:w="1625"/><text x="0.8983%" y="511.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,611 samples, 0.33%)</title><rect x="0.6512%" y="485" width="0.3337%" height="15" fill="rgb(251,115,12)" fg:x="3144" fg:w="1611"/><text x="0.9012%" y="495.50"></text></g><g><title>MethodLiveness::init_basic_blocks (52 samples, 0.01%)</title><rect x="1.0005%" y="421" width="0.0108%" height="15" fill="rgb(240,54,50)" fg:x="4830" fg:w="52"/><text x="1.2505%" y="431.50"></text></g><g><title>BlockListBuilder::set_leaders (84 samples, 0.02%)</title><rect x="0.9945%" y="469" width="0.0174%" height="15" fill="rgb(233,84,52)" fg:x="4801" fg:w="84"/><text x="1.2445%" y="479.50"></text></g><g><title>ciMethod::bci_block_start (70 samples, 0.01%)</title><rect x="0.9974%" y="453" width="0.0145%" height="15" fill="rgb(207,117,47)" fg:x="4815" fg:w="70"/><text x="1.2474%" y="463.50"></text></g><g><title>MethodLiveness::compute_liveness (69 samples, 0.01%)</title><rect x="0.9976%" y="437" width="0.0143%" height="15" fill="rgb(249,43,39)" fg:x="4816" fg:w="69"/><text x="1.2476%" y="447.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (107 samples, 0.02%)</title><rect x="0.9909%" y="485" width="0.0222%" height="15" fill="rgb(209,38,44)" fg:x="4784" fg:w="107"/><text x="1.2409%" y="495.50"></text></g><g><title>GraphBuilder::push_scope (170 samples, 0.04%)</title><rect x="0.9895%" y="501" width="0.0352%" height="15" fill="rgb(236,212,23)" fg:x="4777" fg:w="170"/><text x="1.2395%" y="511.50"></text></g><g><title>Method::build_interpreter_method_data (60 samples, 0.01%)</title><rect x="1.0295%" y="469" width="0.0124%" height="15" fill="rgb(242,79,21)" fg:x="4970" fg:w="60"/><text x="1.2795%" y="479.50"></text></g><g><title>MethodData::allocate (60 samples, 0.01%)</title><rect x="1.0295%" y="453" width="0.0124%" height="15" fill="rgb(211,96,35)" fg:x="4970" fg:w="60"/><text x="1.2795%" y="463.50"></text></g><g><title>ciMethodData::load_data (50 samples, 0.01%)</title><rect x="1.0421%" y="469" width="0.0104%" height="15" fill="rgb(253,215,40)" fg:x="5031" fg:w="50"/><text x="1.2921%" y="479.50"></text></g><g><title>ciMethod::ensure_method_data (134 samples, 0.03%)</title><rect x="1.0278%" y="501" width="0.0278%" height="15" fill="rgb(211,81,21)" fg:x="4962" fg:w="134"/><text x="1.2778%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (128 samples, 0.03%)</title><rect x="1.0290%" y="485" width="0.0265%" height="15" fill="rgb(208,190,38)" fg:x="4968" fg:w="128"/><text x="1.2790%" y="495.50"></text></g><g><title>GraphBuilder::try_inline_full (2,058 samples, 0.43%)</title><rect x="0.6318%" y="517" width="0.4263%" height="15" fill="rgb(235,213,38)" fg:x="3050" fg:w="2058"/><text x="0.8818%" y="527.50"></text></g><g><title>GraphBuilder::try_inline (2,079 samples, 0.43%)</title><rect x="0.6291%" y="533" width="0.4306%" height="15" fill="rgb(237,122,38)" fg:x="3037" fg:w="2079"/><text x="0.8791%" y="543.50"></text></g><g><title>ciEnv::lookup_method (91 samples, 0.02%)</title><rect x="1.0844%" y="501" width="0.0188%" height="15" fill="rgb(244,218,35)" fg:x="5235" fg:w="91"/><text x="1.3344%" y="511.50"></text></g><g><title>ciMethod::ciMethod (146 samples, 0.03%)</title><rect x="1.1078%" y="469" width="0.0302%" height="15" fill="rgb(240,68,47)" fg:x="5348" fg:w="146"/><text x="1.3578%" y="479.50"></text></g><g><title>ciSignature::ciSignature (117 samples, 0.02%)</title><rect x="1.1138%" y="453" width="0.0242%" height="15" fill="rgb(210,16,53)" fg:x="5377" fg:w="117"/><text x="1.3638%" y="463.50"></text></g><g><title>ciObjectFactory::get_metadata (173 samples, 0.04%)</title><rect x="1.1032%" y="501" width="0.0358%" height="15" fill="rgb(235,124,12)" fg:x="5326" fg:w="173"/><text x="1.3532%" y="511.50"></text></g><g><title>ciObjectFactory::create_new_metadata (158 samples, 0.03%)</title><rect x="1.1063%" y="485" width="0.0327%" height="15" fill="rgb(224,169,11)" fg:x="5341" fg:w="158"/><text x="1.3563%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (300 samples, 0.06%)</title><rect x="1.0779%" y="517" width="0.0621%" height="15" fill="rgb(250,166,2)" fg:x="5204" fg:w="300"/><text x="1.3279%" y="527.50"></text></g><g><title>ciBytecodeStream::get_method (324 samples, 0.07%)</title><rect x="1.0734%" y="533" width="0.0671%" height="15" fill="rgb(242,216,29)" fg:x="5182" fg:w="324"/><text x="1.3234%" y="543.50"></text></g><g><title>GraphBuilder::invoke (2,623 samples, 0.54%)</title><rect x="0.6125%" y="549" width="0.5433%" height="15" fill="rgb(230,116,27)" fg:x="2957" fg:w="2623"/><text x="0.8625%" y="559.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,050 samples, 0.63%)</title><rect x="0.5388%" y="565" width="0.6318%" height="15" fill="rgb(228,99,48)" fg:x="2601" fg:w="3050"/><text x="0.7888%" y="575.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,103 samples, 0.64%)</title><rect x="0.5301%" y="581" width="0.6427%" height="15" fill="rgb(253,11,6)" fg:x="2559" fg:w="3103"/><text x="0.7801%" y="591.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,435 samples, 0.71%)</title><rect x="0.4721%" y="597" width="0.7115%" height="15" fill="rgb(247,143,39)" fg:x="2279" fg:w="3435"/><text x="0.7221%" y="607.50"></text></g><g><title>IR::IR (3,446 samples, 0.71%)</title><rect x="0.4719%" y="613" width="0.7138%" height="15" fill="rgb(236,97,10)" fg:x="2278" fg:w="3446"/><text x="0.7219%" y="623.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (67 samples, 0.01%)</title><rect x="1.1856%" y="597" width="0.0139%" height="15" fill="rgb(233,208,19)" fg:x="5724" fg:w="67"/><text x="1.4356%" y="607.50"></text></g><g><title>IR::compute_code (80 samples, 0.02%)</title><rect x="1.1856%" y="613" width="0.0166%" height="15" fill="rgb(216,164,2)" fg:x="5724" fg:w="80"/><text x="1.4356%" y="623.50"></text></g><g><title>BlockList::iterate_backward (89 samples, 0.02%)</title><rect x="1.2030%" y="597" width="0.0184%" height="15" fill="rgb(220,129,5)" fg:x="5808" fg:w="89"/><text x="1.4530%" y="607.50"></text></g><g><title>UseCountComputer::block_do (87 samples, 0.02%)</title><rect x="1.2035%" y="581" width="0.0180%" height="15" fill="rgb(242,17,10)" fg:x="5810" fg:w="87"/><text x="1.4535%" y="591.50"></text></g><g><title>IR::compute_use_counts (115 samples, 0.02%)</title><rect x="1.2022%" y="613" width="0.0238%" height="15" fill="rgb(242,107,0)" fg:x="5804" fg:w="115"/><text x="1.4522%" y="623.50"></text></g><g><title>NullCheckEliminator::iterate_one (142 samples, 0.03%)</title><rect x="1.2316%" y="581" width="0.0294%" height="15" fill="rgb(251,28,31)" fg:x="5946" fg:w="142"/><text x="1.4816%" y="591.50"></text></g><g><title>IR::eliminate_null_checks (174 samples, 0.04%)</title><rect x="1.2260%" y="613" width="0.0360%" height="15" fill="rgb(233,223,10)" fg:x="5919" fg:w="174"/><text x="1.4760%" y="623.50"></text></g><g><title>Optimizer::eliminate_null_checks (172 samples, 0.04%)</title><rect x="1.2264%" y="597" width="0.0356%" height="15" fill="rgb(215,21,27)" fg:x="5921" fg:w="172"/><text x="1.4764%" y="607.50"></text></g><g><title>IR::optimize_blocks (66 samples, 0.01%)</title><rect x="1.2621%" y="613" width="0.0137%" height="15" fill="rgb(232,23,21)" fg:x="6093" fg:w="66"/><text x="1.5121%" y="623.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (54 samples, 0.01%)</title><rect x="1.2646%" y="597" width="0.0112%" height="15" fill="rgb(244,5,23)" fg:x="6105" fg:w="54"/><text x="1.5146%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (53 samples, 0.01%)</title><rect x="1.2648%" y="581" width="0.0110%" height="15" fill="rgb(226,81,46)" fg:x="6106" fg:w="53"/><text x="1.5148%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (53 samples, 0.01%)</title><rect x="1.2648%" y="565" width="0.0110%" height="15" fill="rgb(247,70,30)" fg:x="6106" fg:w="53"/><text x="1.5148%" y="575.50"></text></g><g><title>Compilation::build_hir (4,357 samples, 0.90%)</title><rect x="0.3929%" y="629" width="0.9025%" height="15" fill="rgb(212,68,19)" fg:x="1897" fg:w="4357"/><text x="0.6429%" y="639.50"></text></g><g><title>CodeEmitInfo::record_debug_info (87 samples, 0.02%)</title><rect x="1.3275%" y="549" width="0.0180%" height="15" fill="rgb(240,187,13)" fg:x="6409" fg:w="87"/><text x="1.5775%" y="559.50"></text></g><g><title>LIR_Assembler::add_call_info (89 samples, 0.02%)</title><rect x="1.3273%" y="565" width="0.0184%" height="15" fill="rgb(223,113,26)" fg:x="6408" fg:w="89"/><text x="1.5773%" y="575.50"></text></g><g><title>LIR_Assembler::call (106 samples, 0.02%)</title><rect x="1.3250%" y="581" width="0.0220%" height="15" fill="rgb(206,192,2)" fg:x="6397" fg:w="106"/><text x="1.5750%" y="591.50"></text></g><g><title>LIR_Assembler::emit_call (193 samples, 0.04%)</title><rect x="1.3139%" y="597" width="0.0400%" height="15" fill="rgb(241,108,4)" fg:x="6343" fg:w="193"/><text x="1.5639%" y="607.50"></text></g><g><title>LIR_Assembler::emit_op1 (144 samples, 0.03%)</title><rect x="1.3607%" y="597" width="0.0298%" height="15" fill="rgb(247,173,49)" fg:x="6569" fg:w="144"/><text x="1.6107%" y="607.50"></text></g><g><title>LIR_Assembler::emit_profile_call (49 samples, 0.01%)</title><rect x="1.3942%" y="597" width="0.0101%" height="15" fill="rgb(224,114,35)" fg:x="6731" fg:w="49"/><text x="1.6442%" y="607.50"></text></g><g><title>LIR_Assembler::emit_code (645 samples, 0.13%)</title><rect x="1.2977%" y="613" width="0.1336%" height="15" fill="rgb(245,159,27)" fg:x="6265" fg:w="645"/><text x="1.5477%" y="623.50"></text></g><g><title>LIR_Assembler::add_call_info (97 samples, 0.02%)</title><rect x="1.4512%" y="581" width="0.0201%" height="15" fill="rgb(245,172,44)" fg:x="7006" fg:w="97"/><text x="1.7012%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (97 samples, 0.02%)</title><rect x="1.4512%" y="565" width="0.0201%" height="15" fill="rgb(236,23,11)" fg:x="7006" fg:w="97"/><text x="1.7012%" y="575.50"></text></g><g><title>CounterOverflowStub::emit_code (117 samples, 0.02%)</title><rect x="1.4497%" y="597" width="0.0242%" height="15" fill="rgb(205,117,38)" fg:x="6999" fg:w="117"/><text x="1.6997%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (60 samples, 0.01%)</title><rect x="1.4787%" y="581" width="0.0124%" height="15" fill="rgb(237,72,25)" fg:x="7139" fg:w="60"/><text x="1.7287%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (58 samples, 0.01%)</title><rect x="1.4792%" y="565" width="0.0120%" height="15" fill="rgb(244,70,9)" fg:x="7141" fg:w="58"/><text x="1.7292%" y="575.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (69 samples, 0.01%)</title><rect x="1.4775%" y="597" width="0.0143%" height="15" fill="rgb(217,125,39)" fg:x="7133" fg:w="69"/><text x="1.7275%" y="607.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (301 samples, 0.06%)</title><rect x="1.4466%" y="613" width="0.0623%" height="15" fill="rgb(235,36,10)" fg:x="6984" fg:w="301"/><text x="1.6966%" y="623.50"></text></g><g><title>Compilation::emit_code_body (1,041 samples, 0.22%)</title><rect x="1.2954%" y="629" width="0.2156%" height="15" fill="rgb(251,123,47)" fg:x="6254" fg:w="1041"/><text x="1.5454%" y="639.50"></text></g><g><title>LIRGenerator::do_Base (83 samples, 0.02%)</title><rect x="1.5251%" y="581" width="0.0172%" height="15" fill="rgb(221,13,13)" fg:x="7363" fg:w="83"/><text x="1.7751%" y="591.50"></text></g><g><title>LIRGenerator::move_to_phi (63 samples, 0.01%)</title><rect x="1.5483%" y="549" width="0.0130%" height="15" fill="rgb(238,131,9)" fg:x="7475" fg:w="63"/><text x="1.7983%" y="559.50"></text></g><g><title>PhiResolver::create_node (58 samples, 0.01%)</title><rect x="1.5494%" y="533" width="0.0120%" height="15" fill="rgb(211,50,8)" fg:x="7480" fg:w="58"/><text x="1.7994%" y="543.50"></text></g><g><title>LIRGenerator::move_to_phi (225 samples, 0.05%)</title><rect x="1.5456%" y="565" width="0.0466%" height="15" fill="rgb(245,182,24)" fg:x="7462" fg:w="225"/><text x="1.7956%" y="575.50"></text></g><g><title>PhiResolverState::reset (144 samples, 0.03%)</title><rect x="1.5624%" y="549" width="0.0298%" height="15" fill="rgb(242,14,37)" fg:x="7543" fg:w="144"/><text x="1.8124%" y="559.50"></text></g><g><title>LIRGenerator::do_Goto (253 samples, 0.05%)</title><rect x="1.5427%" y="581" width="0.0524%" height="15" fill="rgb(246,228,12)" fg:x="7448" fg:w="253"/><text x="1.7927%" y="591.50"></text></g><g><title>LIRGenerator::do_If (71 samples, 0.01%)</title><rect x="1.5951%" y="581" width="0.0147%" height="15" fill="rgb(213,55,15)" fg:x="7701" fg:w="71"/><text x="1.8451%" y="591.50"></text></g><g><title>LIRGenerator::do_Invoke (119 samples, 0.02%)</title><rect x="1.6115%" y="581" width="0.0246%" height="15" fill="rgb(209,9,3)" fg:x="7780" fg:w="119"/><text x="1.8615%" y="591.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (81 samples, 0.02%)</title><rect x="1.6616%" y="581" width="0.0168%" height="15" fill="rgb(230,59,30)" fg:x="8022" fg:w="81"/><text x="1.9116%" y="591.50"></text></g><g><title>LIRGenerator::block_do (868 samples, 0.18%)</title><rect x="1.5139%" y="597" width="0.1798%" height="15" fill="rgb(209,121,21)" fg:x="7309" fg:w="868"/><text x="1.7639%" y="607.50"></text></g><g><title>BlockList::iterate_forward (881 samples, 0.18%)</title><rect x="1.5125%" y="613" width="0.1825%" height="15" fill="rgb(220,109,13)" fg:x="7302" fg:w="881"/><text x="1.7625%" y="623.50"></text></g><g><title>IntervalWalker::walk_to (121 samples, 0.03%)</title><rect x="1.7196%" y="565" width="0.0251%" height="15" fill="rgb(232,18,1)" fg:x="8302" fg:w="121"/><text x="1.9696%" y="575.50"></text></g><g><title>LinearScanWalker::find_free_reg (104 samples, 0.02%)</title><rect x="1.7689%" y="533" width="0.0215%" height="15" fill="rgb(215,41,42)" fg:x="8540" fg:w="104"/><text x="2.0189%" y="543.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (155 samples, 0.03%)</title><rect x="1.7934%" y="533" width="0.0321%" height="15" fill="rgb(224,123,36)" fg:x="8658" fg:w="155"/><text x="2.0434%" y="543.50"></text></g><g><title>LinearScanWalker::split_before_usage (70 samples, 0.01%)</title><rect x="1.8255%" y="533" width="0.0145%" height="15" fill="rgb(240,125,3)" fg:x="8813" fg:w="70"/><text x="2.0755%" y="543.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (430 samples, 0.09%)</title><rect x="1.7515%" y="549" width="0.0891%" height="15" fill="rgb(205,98,50)" fg:x="8456" fg:w="430"/><text x="2.0015%" y="559.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (70 samples, 0.01%)</title><rect x="1.8503%" y="533" width="0.0145%" height="15" fill="rgb(205,185,37)" fg:x="8933" fg:w="70"/><text x="2.1003%" y="543.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (157 samples, 0.03%)</title><rect x="1.8406%" y="549" width="0.0325%" height="15" fill="rgb(238,207,15)" fg:x="8886" fg:w="157"/><text x="2.0906%" y="559.50"></text></g><g><title>LinearScanWalker::activate_current (686 samples, 0.14%)</title><rect x="1.7447%" y="565" width="0.1421%" height="15" fill="rgb(213,199,42)" fg:x="8423" fg:w="686"/><text x="1.9947%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (856 samples, 0.18%)</title><rect x="1.7101%" y="581" width="0.1773%" height="15" fill="rgb(235,201,11)" fg:x="8256" fg:w="856"/><text x="1.9601%" y="591.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (73 samples, 0.02%)</title><rect x="1.8882%" y="581" width="0.0151%" height="15" fill="rgb(207,46,11)" fg:x="9116" fg:w="73"/><text x="2.1382%" y="591.50"></text></g><g><title>resource_allocate_bytes (50 samples, 0.01%)</title><rect x="1.8930%" y="565" width="0.0104%" height="15" fill="rgb(241,35,35)" fg:x="9139" fg:w="50"/><text x="2.1430%" y="575.50"></text></g><g><title>LinearScan::allocate_registers (946 samples, 0.20%)</title><rect x="1.7076%" y="597" width="0.1959%" height="15" fill="rgb(243,32,47)" fg:x="8244" fg:w="946"/><text x="1.9576%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (72 samples, 0.01%)</title><rect x="1.9373%" y="565" width="0.0149%" height="15" fill="rgb(247,202,23)" fg:x="9353" fg:w="72"/><text x="2.1873%" y="575.50"></text></g><g><title>LinearScan::color_lir_opr (75 samples, 0.02%)</title><rect x="1.9537%" y="565" width="0.0155%" height="15" fill="rgb(219,102,11)" fg:x="9432" fg:w="75"/><text x="2.2037%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (79 samples, 0.02%)</title><rect x="1.9829%" y="549" width="0.0164%" height="15" fill="rgb(243,110,44)" fg:x="9573" fg:w="79"/><text x="2.2329%" y="559.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (157 samples, 0.03%)</title><rect x="1.9692%" y="565" width="0.0325%" height="15" fill="rgb(222,74,54)" fg:x="9507" fg:w="157"/><text x="2.2192%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (97 samples, 0.02%)</title><rect x="2.0127%" y="533" width="0.0201%" height="15" fill="rgb(216,99,12)" fg:x="9717" fg:w="97"/><text x="2.2627%" y="543.50"></text></g><g><title>LinearScan::compute_oop_map (170 samples, 0.04%)</title><rect x="2.0059%" y="549" width="0.0352%" height="15" fill="rgb(226,22,26)" fg:x="9684" fg:w="170"/><text x="2.2559%" y="559.50"></text></g><g><title>LinearScan::compute_oop_map (192 samples, 0.04%)</title><rect x="2.0018%" y="565" width="0.0398%" height="15" fill="rgb(217,163,10)" fg:x="9664" fg:w="192"/><text x="2.2518%" y="575.50"></text></g><g><title>LinearScan::assign_reg_num (656 samples, 0.14%)</title><rect x="1.9058%" y="581" width="0.1359%" height="15" fill="rgb(213,25,53)" fg:x="9201" fg:w="656"/><text x="2.1558%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (686 samples, 0.14%)</title><rect x="1.9036%" y="597" width="0.1421%" height="15" fill="rgb(252,105,26)" fg:x="9190" fg:w="686"/><text x="2.1536%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (83 samples, 0.02%)</title><rect x="2.1003%" y="581" width="0.0172%" height="15" fill="rgb(220,39,43)" fg:x="10140" fg:w="83"/><text x="2.3503%" y="591.50"></text></g><g><title>LinearScan::add_def (67 samples, 0.01%)</title><rect x="2.1175%" y="581" width="0.0139%" height="15" fill="rgb(229,68,48)" fg:x="10223" fg:w="67"/><text x="2.3675%" y="591.50"></text></g><g><title>LinearScan::create_interval (59 samples, 0.01%)</title><rect x="2.1459%" y="565" width="0.0122%" height="15" fill="rgb(252,8,32)" fg:x="10360" fg:w="59"/><text x="2.3959%" y="575.50"></text></g><g><title>LinearScan::add_temp (107 samples, 0.02%)</title><rect x="2.1362%" y="581" width="0.0222%" height="15" fill="rgb(223,20,43)" fg:x="10313" fg:w="107"/><text x="2.3862%" y="591.50"></text></g><g><title>Interval::add_range (53 samples, 0.01%)</title><rect x="2.1687%" y="565" width="0.0110%" height="15" fill="rgb(229,81,49)" fg:x="10470" fg:w="53"/><text x="2.4187%" y="575.50"></text></g><g><title>LinearScan::create_interval (66 samples, 0.01%)</title><rect x="2.1799%" y="565" width="0.0137%" height="15" fill="rgb(236,28,36)" fg:x="10524" fg:w="66"/><text x="2.4299%" y="575.50"></text></g><g><title>LinearScan::add_use (172 samples, 0.04%)</title><rect x="2.1583%" y="581" width="0.0356%" height="15" fill="rgb(249,185,26)" fg:x="10420" fg:w="172"/><text x="2.4083%" y="591.50"></text></g><g><title>LinearScan::build_intervals (777 samples, 0.16%)</title><rect x="2.0457%" y="597" width="0.1609%" height="15" fill="rgb(249,174,33)" fg:x="9876" fg:w="777"/><text x="2.2957%" y="607.50"></text></g><g><title>LinearScan::compute_global_live_sets (64 samples, 0.01%)</title><rect x="2.2066%" y="597" width="0.0133%" height="15" fill="rgb(233,201,37)" fg:x="10653" fg:w="64"/><text x="2.4566%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (95 samples, 0.02%)</title><rect x="2.2489%" y="581" width="0.0197%" height="15" fill="rgb(221,78,26)" fg:x="10857" fg:w="95"/><text x="2.4989%" y="591.50"></text></g><g><title>LinearScan::compute_local_live_sets (305 samples, 0.06%)</title><rect x="2.2199%" y="597" width="0.0632%" height="15" fill="rgb(250,127,30)" fg:x="10717" fg:w="305"/><text x="2.4699%" y="607.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (56 samples, 0.01%)</title><rect x="2.2714%" y="581" width="0.0116%" height="15" fill="rgb(230,49,44)" fg:x="10966" fg:w="56"/><text x="2.5214%" y="591.50"></text></g><g><title>LinearScan::eliminate_spill_moves (64 samples, 0.01%)</title><rect x="2.2830%" y="597" width="0.0133%" height="15" fill="rgb(229,67,23)" fg:x="11022" fg:w="64"/><text x="2.5330%" y="607.50"></text></g><g><title>LinearScan::resolve_collect_mappings (74 samples, 0.02%)</title><rect x="2.3133%" y="581" width="0.0153%" height="15" fill="rgb(249,83,47)" fg:x="11168" fg:w="74"/><text x="2.5633%" y="591.50"></text></g><g><title>LinearScan::resolve_data_flow (126 samples, 0.03%)</title><rect x="2.3064%" y="597" width="0.0261%" height="15" fill="rgb(215,43,3)" fg:x="11135" fg:w="126"/><text x="2.5564%" y="607.50"></text></g><g><title>LinearScan::do_linear_scan (3,166 samples, 0.66%)</title><rect x="1.7031%" y="613" width="0.6558%" height="15" fill="rgb(238,154,13)" fg:x="8222" fg:w="3166"/><text x="1.9531%" y="623.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (51 samples, 0.01%)</title><rect x="2.3483%" y="597" width="0.0106%" height="15" fill="rgb(219,56,2)" fg:x="11337" fg:w="51"/><text x="2.5983%" y="607.50"></text></g><g><title>Compilation::emit_lir (4,098 samples, 0.85%)</title><rect x="1.5110%" y="629" width="0.8488%" height="15" fill="rgb(233,0,4)" fg:x="7295" fg:w="4098"/><text x="1.7610%" y="639.50"></text></g><g><title>MethodData::allocate (65 samples, 0.01%)</title><rect x="2.3665%" y="581" width="0.0135%" height="15" fill="rgb(235,30,7)" fg:x="11425" fg:w="65"/><text x="2.6165%" y="591.50"></text></g><g><title>Method::build_interpreter_method_data (67 samples, 0.01%)</title><rect x="2.3663%" y="597" width="0.0139%" height="15" fill="rgb(250,79,13)" fg:x="11424" fg:w="67"/><text x="2.6163%" y="607.50"></text></g><g><title>Compilation::compile_java_method (9,654 samples, 2.00%)</title><rect x="0.3915%" y="645" width="1.9997%" height="15" fill="rgb(211,146,34)" fg:x="1890" fg:w="9654"/><text x="0.6415%" y="655.50">C..</text></g><g><title>ciMethod::ensure_method_data (124 samples, 0.03%)</title><rect x="2.3655%" y="629" width="0.0257%" height="15" fill="rgb(228,22,38)" fg:x="11420" fg:w="124"/><text x="2.6155%" y="639.50"></text></g><g><title>ciMethod::ensure_method_data (120 samples, 0.02%)</title><rect x="2.3663%" y="613" width="0.0249%" height="15" fill="rgb(235,168,5)" fg:x="11424" fg:w="120"/><text x="2.6163%" y="623.50"></text></g><g><title>Compilation::initialize (50 samples, 0.01%)</title><rect x="2.3912%" y="645" width="0.0104%" height="15" fill="rgb(221,155,16)" fg:x="11544" fg:w="50"/><text x="2.6412%" y="655.50"></text></g><g><title>CodeBuffer::finalize_oop_references (65 samples, 0.01%)</title><rect x="2.4140%" y="613" width="0.0135%" height="15" fill="rgb(215,215,53)" fg:x="11654" fg:w="65"/><text x="2.6640%" y="623.50"></text></g><g><title>CodeCache::allocate (55 samples, 0.01%)</title><rect x="2.4274%" y="613" width="0.0114%" height="15" fill="rgb(223,4,10)" fg:x="11719" fg:w="55"/><text x="2.6774%" y="623.50"></text></g><g><title>CodeBuffer::relocate_code_to (158 samples, 0.03%)</title><rect x="2.4525%" y="581" width="0.0327%" height="15" fill="rgb(234,103,6)" fg:x="11840" fg:w="158"/><text x="2.7025%" y="591.50"></text></g><g><title>CodeBuffer::copy_code_to (171 samples, 0.04%)</title><rect x="2.4519%" y="597" width="0.0354%" height="15" fill="rgb(227,97,0)" fg:x="11837" fg:w="171"/><text x="2.7019%" y="607.50"></text></g><g><title>nmethod::nmethod (327 samples, 0.07%)</title><rect x="2.4502%" y="613" width="0.0677%" height="15" fill="rgb(234,150,53)" fg:x="11829" fg:w="327"/><text x="2.7002%" y="623.50"></text></g><g><title>nmethod::new_nmethod (509 samples, 0.11%)</title><rect x="2.4127%" y="629" width="0.1054%" height="15" fill="rgb(228,201,54)" fg:x="11648" fg:w="509"/><text x="2.6627%" y="639.50"></text></g><g><title>ciEnv::register_method (564 samples, 0.12%)</title><rect x="2.4017%" y="645" width="0.1168%" height="15" fill="rgb(222,22,37)" fg:x="11595" fg:w="564"/><text x="2.6517%" y="655.50"></text></g><g><title>Compilation::compile_method (10,273 samples, 2.13%)</title><rect x="0.3913%" y="661" width="2.1279%" height="15" fill="rgb(237,53,32)" fg:x="1889" fg:w="10273"/><text x="0.6413%" y="671.50">C..</text></g><g><title>Compilation::Compilation (10,294 samples, 2.13%)</title><rect x="0.3894%" y="677" width="2.1322%" height="15" fill="rgb(233,25,53)" fg:x="1880" fg:w="10294"/><text x="0.6394%" y="687.50">C..</text></g><g><title>Compiler::compile_method (10,313 samples, 2.14%)</title><rect x="0.3859%" y="693" width="2.1362%" height="15" fill="rgb(210,40,34)" fg:x="1863" fg:w="10313"/><text x="0.6359%" y="703.50">C..</text></g><g><title>ciEnv::ciEnv (99 samples, 0.02%)</title><rect x="2.5310%" y="693" width="0.0205%" height="15" fill="rgb(241,220,44)" fg:x="12219" fg:w="99"/><text x="2.7810%" y="703.50"></text></g><g><title>ciObjectFactory::get (54 samples, 0.01%)</title><rect x="2.5403%" y="677" width="0.0112%" height="15" fill="rgb(235,28,35)" fg:x="12264" fg:w="54"/><text x="2.7903%" y="687.50"></text></g><g><title>ciMethod::ciMethod (106 samples, 0.02%)</title><rect x="2.5531%" y="645" width="0.0220%" height="15" fill="rgb(210,56,17)" fg:x="12326" fg:w="106"/><text x="2.8031%" y="655.50"></text></g><g><title>ciSignature::ciSignature (96 samples, 0.02%)</title><rect x="2.5552%" y="629" width="0.0199%" height="15" fill="rgb(224,130,29)" fg:x="12336" fg:w="96"/><text x="2.8052%" y="639.50"></text></g><g><title>ciEnv::get_method_from_handle (124 samples, 0.03%)</title><rect x="2.5515%" y="693" width="0.0257%" height="15" fill="rgb(235,212,8)" fg:x="12318" fg:w="124"/><text x="2.8015%" y="703.50"></text></g><g><title>ciObjectFactory::get_metadata (119 samples, 0.02%)</title><rect x="2.5525%" y="677" width="0.0246%" height="15" fill="rgb(223,33,50)" fg:x="12323" fg:w="119"/><text x="2.8025%" y="687.50"></text></g><g><title>ciObjectFactory::create_new_metadata (117 samples, 0.02%)</title><rect x="2.5529%" y="661" width="0.0242%" height="15" fill="rgb(219,149,13)" fg:x="12325" fg:w="117"/><text x="2.8029%" y="671.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (10,895 samples, 2.26%)</title><rect x="0.3306%" y="709" width="2.2567%" height="15" fill="rgb(250,156,29)" fg:x="1596" fg:w="10895"/><text x="0.5806%" y="719.50">C..</text></g><g><title>futex_wait_queue_me (65 samples, 0.01%)</title><rect x="2.6043%" y="517" width="0.0135%" height="15" fill="rgb(216,193,19)" fg:x="12573" fg:w="65"/><text x="2.8543%" y="527.50"></text></g><g><title>schedule (59 samples, 0.01%)</title><rect x="2.6056%" y="501" width="0.0122%" height="15" fill="rgb(216,135,14)" fg:x="12579" fg:w="59"/><text x="2.8556%" y="511.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="2.6058%" y="485" width="0.0120%" height="15" fill="rgb(241,47,5)" fg:x="12580" fg:w="58"/><text x="2.8558%" y="495.50"></text></g><g><title>do_futex (74 samples, 0.02%)</title><rect x="2.6041%" y="549" width="0.0153%" height="15" fill="rgb(233,42,35)" fg:x="12572" fg:w="74"/><text x="2.8541%" y="559.50"></text></g><g><title>futex_wait (74 samples, 0.02%)</title><rect x="2.6041%" y="533" width="0.0153%" height="15" fill="rgb(231,13,6)" fg:x="12572" fg:w="74"/><text x="2.8541%" y="543.50"></text></g><g><title>__pthread_cond_timedwait (79 samples, 0.02%)</title><rect x="2.6033%" y="645" width="0.0164%" height="15" fill="rgb(207,181,40)" fg:x="12568" fg:w="79"/><text x="2.8533%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (79 samples, 0.02%)</title><rect x="2.6033%" y="629" width="0.0164%" height="15" fill="rgb(254,173,49)" fg:x="12568" fg:w="79"/><text x="2.8533%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (77 samples, 0.02%)</title><rect x="2.6037%" y="613" width="0.0159%" height="15" fill="rgb(221,1,38)" fg:x="12570" fg:w="77"/><text x="2.8537%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.02%)</title><rect x="2.6039%" y="597" width="0.0157%" height="15" fill="rgb(206,124,46)" fg:x="12571" fg:w="76"/><text x="2.8539%" y="607.50"></text></g><g><title>do_syscall_64 (75 samples, 0.02%)</title><rect x="2.6041%" y="581" width="0.0155%" height="15" fill="rgb(249,21,11)" fg:x="12572" fg:w="75"/><text x="2.8541%" y="591.50"></text></g><g><title>__x64_sys_futex (75 samples, 0.02%)</title><rect x="2.6041%" y="565" width="0.0155%" height="15" fill="rgb(222,201,40)" fg:x="12572" fg:w="75"/><text x="2.8541%" y="575.50"></text></g><g><title>Monitor::wait (100 samples, 0.02%)</title><rect x="2.6004%" y="693" width="0.0207%" height="15" fill="rgb(235,61,29)" fg:x="12554" fg:w="100"/><text x="2.8504%" y="703.50"></text></g><g><title>Monitor::IWait (94 samples, 0.02%)</title><rect x="2.6016%" y="677" width="0.0195%" height="15" fill="rgb(219,207,3)" fg:x="12560" fg:w="94"/><text x="2.8516%" y="687.50"></text></g><g><title>os::PlatformEvent::park (89 samples, 0.02%)</title><rect x="2.6027%" y="661" width="0.0184%" height="15" fill="rgb(222,56,46)" fg:x="12565" fg:w="89"/><text x="2.8527%" y="671.50"></text></g><g><title>TieredThresholdPolicy::select_task (49 samples, 0.01%)</title><rect x="2.6211%" y="693" width="0.0101%" height="15" fill="rgb(239,76,54)" fg:x="12654" fg:w="49"/><text x="2.8711%" y="703.50"></text></g><g><title>CompileQueue::get (172 samples, 0.04%)</title><rect x="2.5962%" y="709" width="0.0356%" height="15" fill="rgb(231,124,27)" fg:x="12534" fg:w="172"/><text x="2.8462%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (11,132 samples, 2.31%)</title><rect x="0.3289%" y="725" width="2.3058%" height="15" fill="rgb(249,195,6)" fg:x="1588" fg:w="11132"/><text x="0.5789%" y="735.50">C..</text></g><g><title>__GI___clone (11,133 samples, 2.31%)</title><rect x="0.3289%" y="805" width="2.3060%" height="15" fill="rgb(237,174,47)" fg:x="1588" fg:w="11133"/><text x="0.5789%" y="815.50">_..</text></g><g><title>start_thread (11,133 samples, 2.31%)</title><rect x="0.3289%" y="789" width="2.3060%" height="15" fill="rgb(206,201,31)" fg:x="1588" fg:w="11133"/><text x="0.5789%" y="799.50">s..</text></g><g><title>thread_native_entry (11,133 samples, 2.31%)</title><rect x="0.3289%" y="773" width="2.3060%" height="15" fill="rgb(231,57,52)" fg:x="1588" fg:w="11133"/><text x="0.5789%" y="783.50">t..</text></g><g><title>Thread::call_run (11,133 samples, 2.31%)</title><rect x="0.3289%" y="757" width="2.3060%" height="15" fill="rgb(248,177,22)" fg:x="1588" fg:w="11133"/><text x="0.5789%" y="767.50">T..</text></g><g><title>JavaThread::thread_main_inner (11,133 samples, 2.31%)</title><rect x="0.3289%" y="741" width="2.3060%" height="15" fill="rgb(215,211,37)" fg:x="1588" fg:w="11133"/><text x="0.5789%" y="751.50">J..</text></g><g><title>C1_CompilerThre (12,725 samples, 2.64%)</title><rect x="0.0083%" y="821" width="2.6358%" height="15" fill="rgb(241,128,51)" fg:x="40" fg:w="12725"/><text x="0.2583%" y="831.50">C1..</text></g><g><title>ProjNode::pinned (65 samples, 0.01%)</title><rect x="2.6915%" y="789" width="0.0135%" height="15" fill="rgb(227,165,31)" fg:x="12994" fg:w="65"/><text x="2.9415%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (68 samples, 0.01%)</title><rect x="2.6911%" y="805" width="0.0141%" height="15" fill="rgb(228,167,24)" fg:x="12992" fg:w="68"/><text x="2.9411%" y="815.50"></text></g><g><title>MultiNode::is_CFG (61 samples, 0.01%)</title><rect x="2.9542%" y="789" width="0.0126%" height="15" fill="rgb(228,143,12)" fg:x="14262" fg:w="61"/><text x="3.2042%" y="799.50"></text></g><g><title>Node::is_CFG (63 samples, 0.01%)</title><rect x="2.9834%" y="789" width="0.0130%" height="15" fill="rgb(249,149,8)" fg:x="14403" fg:w="63"/><text x="3.2334%" y="799.50"></text></g><g><title>_dl_update_slotinfo (210 samples, 0.04%)</title><rect x="3.2122%" y="789" width="0.0435%" height="15" fill="rgb(243,35,44)" fg:x="15508" fg:w="210"/><text x="3.4622%" y="799.50"></text></g><g><title>update_get_addr (64 samples, 0.01%)</title><rect x="3.3676%" y="789" width="0.0133%" height="15" fill="rgb(246,89,9)" fg:x="16258" fg:w="64"/><text x="3.6176%" y="799.50"></text></g><g><title>[anon] (3,228 samples, 0.67%)</title><rect x="2.7137%" y="805" width="0.6686%" height="15" fill="rgb(233,213,13)" fg:x="13101" fg:w="3228"/><text x="2.9637%" y="815.50"></text></g><g><title>ciBytecodeStream::get_method (53 samples, 0.01%)</title><rect x="3.4175%" y="517" width="0.0110%" height="15" fill="rgb(233,141,41)" fg:x="16499" fg:w="53"/><text x="3.6675%" y="527.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (54 samples, 0.01%)</title><rect x="3.4175%" y="533" width="0.0112%" height="15" fill="rgb(239,167,4)" fg:x="16499" fg:w="54"/><text x="3.6675%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (96 samples, 0.02%)</title><rect x="3.4109%" y="549" width="0.0199%" height="15" fill="rgb(209,217,16)" fg:x="16467" fg:w="96"/><text x="3.6609%" y="559.50"></text></g><g><title>ciTypeFlow::df_flow_types (113 samples, 0.02%)</title><rect x="3.4076%" y="581" width="0.0234%" height="15" fill="rgb(219,88,35)" fg:x="16451" fg:w="113"/><text x="3.6576%" y="591.50"></text></g><g><title>ciTypeFlow::flow_block (111 samples, 0.02%)</title><rect x="3.4080%" y="565" width="0.0230%" height="15" fill="rgb(220,193,23)" fg:x="16453" fg:w="111"/><text x="3.6580%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (121 samples, 0.03%)</title><rect x="3.4065%" y="645" width="0.0251%" height="15" fill="rgb(230,90,52)" fg:x="16446" fg:w="121"/><text x="3.6565%" y="655.50"></text></g><g><title>ciMethod::get_flow_analysis (119 samples, 0.02%)</title><rect x="3.4070%" y="629" width="0.0246%" height="15" fill="rgb(252,106,19)" fg:x="16448" fg:w="119"/><text x="3.6570%" y="639.50"></text></g><g><title>ciTypeFlow::do_flow (119 samples, 0.02%)</title><rect x="3.4070%" y="613" width="0.0246%" height="15" fill="rgb(206,74,20)" fg:x="16448" fg:w="119"/><text x="3.6570%" y="623.50"></text></g><g><title>ciTypeFlow::flow_types (119 samples, 0.02%)</title><rect x="3.4070%" y="597" width="0.0246%" height="15" fill="rgb(230,138,44)" fg:x="16448" fg:w="119"/><text x="3.6570%" y="607.50"></text></g><g><title>Compile::call_generator (171 samples, 0.04%)</title><rect x="3.3974%" y="661" width="0.0354%" height="15" fill="rgb(235,182,43)" fg:x="16402" fg:w="171"/><text x="3.6474%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (71 samples, 0.01%)</title><rect x="3.4565%" y="453" width="0.0147%" height="15" fill="rgb(242,16,51)" fg:x="16687" fg:w="71"/><text x="3.7065%" y="463.50"></text></g><g><title>ciTypeFlow::flow_block (77 samples, 0.02%)</title><rect x="3.4554%" y="469" width="0.0159%" height="15" fill="rgb(248,9,4)" fg:x="16682" fg:w="77"/><text x="3.7054%" y="479.50"></text></g><g><title>ciTypeFlow::df_flow_types (89 samples, 0.02%)</title><rect x="3.4531%" y="485" width="0.0184%" height="15" fill="rgb(210,31,22)" fg:x="16671" fg:w="89"/><text x="3.7031%" y="495.50"></text></g><g><title>InlineTree::ok_to_inline (118 samples, 0.02%)</title><rect x="3.4482%" y="549" width="0.0244%" height="15" fill="rgb(239,54,39)" fg:x="16647" fg:w="118"/><text x="3.6982%" y="559.50"></text></g><g><title>ciMethod::get_flow_analysis (98 samples, 0.02%)</title><rect x="3.4523%" y="533" width="0.0203%" height="15" fill="rgb(230,99,41)" fg:x="16667" fg:w="98"/><text x="3.7023%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (94 samples, 0.02%)</title><rect x="3.4531%" y="517" width="0.0195%" height="15" fill="rgb(253,106,12)" fg:x="16671" fg:w="94"/><text x="3.7031%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (94 samples, 0.02%)</title><rect x="3.4531%" y="501" width="0.0195%" height="15" fill="rgb(213,46,41)" fg:x="16671" fg:w="94"/><text x="3.7031%" y="511.50"></text></g><g><title>Compile::call_generator (146 samples, 0.03%)</title><rect x="3.4440%" y="565" width="0.0302%" height="15" fill="rgb(215,133,35)" fg:x="16627" fg:w="146"/><text x="3.6940%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (59 samples, 0.01%)</title><rect x="3.5068%" y="453" width="0.0122%" height="15" fill="rgb(213,28,5)" fg:x="16930" fg:w="59"/><text x="3.7568%" y="463.50"></text></g><g><title>Compile::call_generator (65 samples, 0.01%)</title><rect x="3.5060%" y="469" width="0.0135%" height="15" fill="rgb(215,77,49)" fg:x="16926" fg:w="65"/><text x="3.7560%" y="479.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="3.5650%" y="325" width="0.0116%" height="15" fill="rgb(248,100,22)" fg:x="17211" fg:w="56"/><text x="3.8150%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="3.5658%" y="309" width="0.0108%" height="15" fill="rgb(208,67,9)" fg:x="17215" fg:w="52"/><text x="3.8158%" y="319.50"></text></g><g><title>Parse::do_all_blocks (59 samples, 0.01%)</title><rect x="3.5650%" y="341" width="0.0122%" height="15" fill="rgb(219,133,21)" fg:x="17211" fg:w="59"/><text x="3.8150%" y="351.50"></text></g><g><title>ParseGenerator::generate (114 samples, 0.02%)</title><rect x="3.5584%" y="373" width="0.0236%" height="15" fill="rgb(246,46,29)" fg:x="17179" fg:w="114"/><text x="3.8084%" y="383.50"></text></g><g><title>Parse::Parse (113 samples, 0.02%)</title><rect x="3.5586%" y="357" width="0.0234%" height="15" fill="rgb(246,185,52)" fg:x="17180" fg:w="113"/><text x="3.8086%" y="367.50"></text></g><g><title>Parse::do_call (209 samples, 0.04%)</title><rect x="3.5428%" y="389" width="0.0433%" height="15" fill="rgb(252,136,11)" fg:x="17104" fg:w="209"/><text x="3.7928%" y="399.50"></text></g><g><title>Parse::do_field_access (50 samples, 0.01%)</title><rect x="3.5876%" y="389" width="0.0104%" height="15" fill="rgb(219,138,53)" fg:x="17320" fg:w="50"/><text x="3.8376%" y="399.50"></text></g><g><title>Parse::do_one_block (354 samples, 0.07%)</title><rect x="3.5368%" y="421" width="0.0733%" height="15" fill="rgb(211,51,23)" fg:x="17075" fg:w="354"/><text x="3.7868%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (346 samples, 0.07%)</title><rect x="3.5385%" y="405" width="0.0717%" height="15" fill="rgb(247,221,28)" fg:x="17083" fg:w="346"/><text x="3.7885%" y="415.50"></text></g><g><title>Parse::do_all_blocks (366 samples, 0.08%)</title><rect x="3.5360%" y="437" width="0.0758%" height="15" fill="rgb(251,222,45)" fg:x="17071" fg:w="366"/><text x="3.7860%" y="447.50"></text></g><g><title>ParseGenerator::generate (418 samples, 0.09%)</title><rect x="3.5288%" y="469" width="0.0866%" height="15" fill="rgb(217,162,53)" fg:x="17036" fg:w="418"/><text x="3.7788%" y="479.50"></text></g><g><title>Parse::Parse (415 samples, 0.09%)</title><rect x="3.5294%" y="453" width="0.0860%" height="15" fill="rgb(229,93,14)" fg:x="17039" fg:w="415"/><text x="3.7794%" y="463.50"></text></g><g><title>Parse::do_call (603 samples, 0.12%)</title><rect x="3.5053%" y="485" width="0.1249%" height="15" fill="rgb(209,67,49)" fg:x="16923" fg:w="603"/><text x="3.7553%" y="495.50"></text></g><g><title>GraphKit::access_store_at (55 samples, 0.01%)</title><rect x="3.6406%" y="453" width="0.0114%" height="15" fill="rgb(213,87,29)" fg:x="17576" fg:w="55"/><text x="3.8906%" y="463.50"></text></g><g><title>BarrierSetC2::store_at (55 samples, 0.01%)</title><rect x="3.6406%" y="437" width="0.0114%" height="15" fill="rgb(205,151,52)" fg:x="17576" fg:w="55"/><text x="3.8906%" y="447.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (51 samples, 0.01%)</title><rect x="3.6414%" y="421" width="0.0106%" height="15" fill="rgb(253,215,39)" fg:x="17580" fg:w="51"/><text x="3.8914%" y="431.50"></text></g><g><title>Parse::do_put_xxx (58 samples, 0.01%)</title><rect x="3.6406%" y="469" width="0.0120%" height="15" fill="rgb(221,220,41)" fg:x="17576" fg:w="58"/><text x="3.8906%" y="479.50"></text></g><g><title>Parse::do_field_access (121 samples, 0.03%)</title><rect x="3.6315%" y="485" width="0.0251%" height="15" fill="rgb(218,133,21)" fg:x="17532" fg:w="121"/><text x="3.8815%" y="495.50"></text></g><g><title>Parse::do_one_block (854 samples, 0.18%)</title><rect x="3.4971%" y="517" width="0.1769%" height="15" fill="rgb(221,193,43)" fg:x="16883" fg:w="854"/><text x="3.7471%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (839 samples, 0.17%)</title><rect x="3.5002%" y="501" width="0.1738%" height="15" fill="rgb(240,128,52)" fg:x="16898" fg:w="839"/><text x="3.7502%" y="511.50"></text></g><g><title>Parse::do_all_blocks (865 samples, 0.18%)</title><rect x="3.4971%" y="533" width="0.1792%" height="15" fill="rgb(253,114,12)" fg:x="16883" fg:w="865"/><text x="3.7471%" y="543.50"></text></g><g><title>Parse::Parse (935 samples, 0.19%)</title><rect x="3.4902%" y="549" width="0.1937%" height="15" fill="rgb(215,223,47)" fg:x="16850" fg:w="935"/><text x="3.7402%" y="559.50"></text></g><g><title>ParseGenerator::generate (937 samples, 0.19%)</title><rect x="3.4900%" y="565" width="0.1941%" height="15" fill="rgb(248,225,23)" fg:x="16849" fg:w="937"/><text x="3.7400%" y="575.50"></text></g><g><title>Parse::do_call (71 samples, 0.01%)</title><rect x="3.6887%" y="469" width="0.0147%" height="15" fill="rgb(250,108,0)" fg:x="17808" fg:w="71"/><text x="3.9387%" y="479.50"></text></g><g><title>Parse::do_one_block (97 samples, 0.02%)</title><rect x="3.6870%" y="501" width="0.0201%" height="15" fill="rgb(228,208,7)" fg:x="17800" fg:w="97"/><text x="3.9370%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.02%)</title><rect x="3.6872%" y="485" width="0.0199%" height="15" fill="rgb(244,45,10)" fg:x="17801" fg:w="96"/><text x="3.9372%" y="495.50"></text></g><g><title>Parse::do_all_blocks (98 samples, 0.02%)</title><rect x="3.6870%" y="517" width="0.0203%" height="15" fill="rgb(207,125,25)" fg:x="17800" fg:w="98"/><text x="3.9370%" y="527.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.02%)</title><rect x="3.6866%" y="549" width="0.0220%" height="15" fill="rgb(210,195,18)" fg:x="17798" fg:w="106"/><text x="3.9366%" y="559.50"></text></g><g><title>Parse::Parse (106 samples, 0.02%)</title><rect x="3.6866%" y="533" width="0.0220%" height="15" fill="rgb(249,80,12)" fg:x="17798" fg:w="106"/><text x="3.9366%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (133 samples, 0.03%)</title><rect x="3.6843%" y="565" width="0.0275%" height="15" fill="rgb(221,65,9)" fg:x="17787" fg:w="133"/><text x="3.9343%" y="575.50"></text></g><g><title>Parse::do_call (1,315 samples, 0.27%)</title><rect x="3.4440%" y="581" width="0.2724%" height="15" fill="rgb(235,49,36)" fg:x="16627" fg:w="1315"/><text x="3.6940%" y="591.50"></text></g><g><title>Parse::do_get_xxx (50 samples, 0.01%)</title><rect x="3.7195%" y="565" width="0.0104%" height="15" fill="rgb(225,32,20)" fg:x="17957" fg:w="50"/><text x="3.9695%" y="575.50"></text></g><g><title>GraphKit::access_store_at (59 samples, 0.01%)</title><rect x="3.7303%" y="549" width="0.0122%" height="15" fill="rgb(215,141,46)" fg:x="18009" fg:w="59"/><text x="3.9803%" y="559.50"></text></g><g><title>BarrierSetC2::store_at (59 samples, 0.01%)</title><rect x="3.7303%" y="533" width="0.0122%" height="15" fill="rgb(250,160,47)" fg:x="18009" fg:w="59"/><text x="3.9803%" y="543.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (54 samples, 0.01%)</title><rect x="3.7313%" y="517" width="0.0112%" height="15" fill="rgb(216,222,40)" fg:x="18014" fg:w="54"/><text x="3.9813%" y="527.50"></text></g><g><title>Parse::do_put_xxx (63 samples, 0.01%)</title><rect x="3.7299%" y="565" width="0.0130%" height="15" fill="rgb(234,217,39)" fg:x="18007" fg:w="63"/><text x="3.9799%" y="575.50"></text></g><g><title>Parse::do_field_access (122 samples, 0.03%)</title><rect x="3.7181%" y="581" width="0.0253%" height="15" fill="rgb(207,178,40)" fg:x="17950" fg:w="122"/><text x="3.9681%" y="591.50"></text></g><g><title>Parse::do_all_blocks (1,538 samples, 0.32%)</title><rect x="3.4364%" y="629" width="0.3186%" height="15" fill="rgb(221,136,13)" fg:x="16590" fg:w="1538"/><text x="3.6864%" y="639.50"></text></g><g><title>Parse::do_one_block (1,537 samples, 0.32%)</title><rect x="3.4366%" y="613" width="0.3184%" height="15" fill="rgb(249,199,10)" fg:x="16591" fg:w="1537"/><text x="3.6866%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (1,535 samples, 0.32%)</title><rect x="3.4370%" y="597" width="0.3180%" height="15" fill="rgb(249,222,13)" fg:x="16593" fg:w="1535"/><text x="3.6870%" y="607.50"></text></g><g><title>ParseGenerator::generate (1,559 samples, 0.32%)</title><rect x="3.4335%" y="661" width="0.3229%" height="15" fill="rgb(244,185,38)" fg:x="16576" fg:w="1559"/><text x="3.6835%" y="671.50"></text></g><g><title>Parse::Parse (1,559 samples, 0.32%)</title><rect x="3.4335%" y="645" width="0.3229%" height="15" fill="rgb(236,202,9)" fg:x="16576" fg:w="1559"/><text x="3.6835%" y="655.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="3.7777%" y="405" width="0.0110%" height="15" fill="rgb(250,229,37)" fg:x="18238" fg:w="53"/><text x="4.0277%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="3.7779%" y="389" width="0.0108%" height="15" fill="rgb(206,174,23)" fg:x="18239" fg:w="52"/><text x="4.0279%" y="399.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.01%)</title><rect x="3.7775%" y="421" width="0.0116%" height="15" fill="rgb(211,33,43)" fg:x="18237" fg:w="56"/><text x="4.0275%" y="431.50"></text></g><g><title>ParseGenerator::generate (62 samples, 0.01%)</title><rect x="3.7769%" y="453" width="0.0128%" height="15" fill="rgb(245,58,50)" fg:x="18234" fg:w="62"/><text x="4.0269%" y="463.50"></text></g><g><title>Parse::Parse (62 samples, 0.01%)</title><rect x="3.7769%" y="437" width="0.0128%" height="15" fill="rgb(244,68,36)" fg:x="18234" fg:w="62"/><text x="4.0269%" y="447.50"></text></g><g><title>Parse::do_call (96 samples, 0.02%)</title><rect x="3.7715%" y="469" width="0.0199%" height="15" fill="rgb(232,229,15)" fg:x="18208" fg:w="96"/><text x="4.0215%" y="479.50"></text></g><g><title>Parse::do_all_blocks (149 samples, 0.03%)</title><rect x="3.7670%" y="517" width="0.0309%" height="15" fill="rgb(254,30,23)" fg:x="18186" fg:w="149"/><text x="4.0170%" y="527.50"></text></g><g><title>Parse::do_one_block (148 samples, 0.03%)</title><rect x="3.7672%" y="501" width="0.0307%" height="15" fill="rgb(235,160,14)" fg:x="18187" fg:w="148"/><text x="4.0172%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (144 samples, 0.03%)</title><rect x="3.7680%" y="485" width="0.0298%" height="15" fill="rgb(212,155,44)" fg:x="18191" fg:w="144"/><text x="4.0180%" y="495.50"></text></g><g><title>ParseGenerator::generate (167 samples, 0.03%)</title><rect x="3.7647%" y="549" width="0.0346%" height="15" fill="rgb(226,2,50)" fg:x="18175" fg:w="167"/><text x="4.0147%" y="559.50"></text></g><g><title>Parse::Parse (167 samples, 0.03%)</title><rect x="3.7647%" y="533" width="0.0346%" height="15" fill="rgb(234,177,6)" fg:x="18175" fg:w="167"/><text x="4.0147%" y="543.50"></text></g><g><title>Parse::do_call (232 samples, 0.05%)</title><rect x="3.7583%" y="565" width="0.0481%" height="15" fill="rgb(217,24,9)" fg:x="18144" fg:w="232"/><text x="4.0083%" y="575.50"></text></g><g><title>Parse::do_one_block (281 samples, 0.06%)</title><rect x="3.7568%" y="597" width="0.0582%" height="15" fill="rgb(220,13,46)" fg:x="18137" fg:w="281"/><text x="4.0068%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (280 samples, 0.06%)</title><rect x="3.7570%" y="581" width="0.0580%" height="15" fill="rgb(239,221,27)" fg:x="18138" fg:w="280"/><text x="4.0070%" y="591.50"></text></g><g><title>Parse::do_all_blocks (283 samples, 0.06%)</title><rect x="3.7568%" y="613" width="0.0586%" height="15" fill="rgb(222,198,25)" fg:x="18137" fg:w="283"/><text x="4.0068%" y="623.50"></text></g><g><title>ParseGenerator::generate (289 samples, 0.06%)</title><rect x="3.7564%" y="645" width="0.0599%" height="15" fill="rgb(211,99,13)" fg:x="18135" fg:w="289"/><text x="4.0064%" y="655.50"></text></g><g><title>Parse::Parse (289 samples, 0.06%)</title><rect x="3.7564%" y="629" width="0.0599%" height="15" fill="rgb(232,111,31)" fg:x="18135" fg:w="289"/><text x="4.0064%" y="639.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="3.8165%" y="597" width="0.0114%" height="15" fill="rgb(245,82,37)" fg:x="18425" fg:w="55"/><text x="4.0665%" y="607.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="3.8165%" y="581" width="0.0114%" height="15" fill="rgb(227,149,46)" fg:x="18425" fg:w="55"/><text x="4.0665%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="3.8167%" y="565" width="0.0112%" height="15" fill="rgb(218,36,50)" fg:x="18426" fg:w="54"/><text x="4.0667%" y="575.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="3.8163%" y="629" width="0.0126%" height="15" fill="rgb(226,80,48)" fg:x="18424" fg:w="61"/><text x="4.0663%" y="639.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="3.8163%" y="613" width="0.0126%" height="15" fill="rgb(238,224,15)" fg:x="18424" fg:w="61"/><text x="4.0663%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (62 samples, 0.01%)</title><rect x="3.8163%" y="645" width="0.0128%" height="15" fill="rgb(241,136,10)" fg:x="18424" fg:w="62"/><text x="4.0663%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (353 samples, 0.07%)</title><rect x="3.7564%" y="661" width="0.0731%" height="15" fill="rgb(208,32,45)" fg:x="18135" fg:w="353"/><text x="4.0064%" y="671.50"></text></g><g><title>Parse::do_call (2,099 samples, 0.43%)</title><rect x="3.3974%" y="677" width="0.4348%" height="15" fill="rgb(207,135,9)" fg:x="16402" fg:w="2099"/><text x="3.6474%" y="687.50"></text></g><g><title>Parse::do_all_blocks (2,113 samples, 0.44%)</title><rect x="3.3970%" y="725" width="0.4377%" height="15" fill="rgb(206,86,44)" fg:x="16400" fg:w="2113"/><text x="3.6470%" y="735.50"></text></g><g><title>Parse::do_one_block (2,113 samples, 0.44%)</title><rect x="3.3970%" y="709" width="0.4377%" height="15" fill="rgb(245,177,15)" fg:x="16400" fg:w="2113"/><text x="3.6470%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (2,113 samples, 0.44%)</title><rect x="3.3970%" y="693" width="0.4377%" height="15" fill="rgb(206,64,50)" fg:x="16400" fg:w="2113"/><text x="3.6470%" y="703.50"></text></g><g><title>C2Compiler::compile_method (2,143 samples, 0.44%)</title><rect x="3.3910%" y="789" width="0.4439%" height="15" fill="rgb(234,36,40)" fg:x="16371" fg:w="2143"/><text x="3.6410%" y="799.50"></text></g><g><title>Compile::Compile (2,143 samples, 0.44%)</title><rect x="3.3910%" y="773" width="0.4439%" height="15" fill="rgb(213,64,8)" fg:x="16371" fg:w="2143"/><text x="3.6410%" y="783.50"></text></g><g><title>ParseGenerator::generate (2,114 samples, 0.44%)</title><rect x="3.3970%" y="757" width="0.4379%" height="15" fill="rgb(210,75,36)" fg:x="16400" fg:w="2114"/><text x="3.6470%" y="767.50"></text></g><g><title>Parse::Parse (2,114 samples, 0.44%)</title><rect x="3.3970%" y="741" width="0.4379%" height="15" fill="rgb(229,88,21)" fg:x="16400" fg:w="2114"/><text x="3.6470%" y="751.50"></text></g><g><title>Compile::Output (50 samples, 0.01%)</title><rect x="3.8355%" y="773" width="0.0104%" height="15" fill="rgb(252,204,47)" fg:x="18517" fg:w="50"/><text x="4.0855%" y="783.50"></text></g><g><title>Compile::init_buffer (50 samples, 0.01%)</title><rect x="3.8355%" y="757" width="0.0104%" height="15" fill="rgb(208,77,27)" fg:x="18517" fg:w="50"/><text x="4.0855%" y="767.50"></text></g><g><title>Compile::shorten_branches (50 samples, 0.01%)</title><rect x="3.8355%" y="741" width="0.0104%" height="15" fill="rgb(221,76,26)" fg:x="18517" fg:w="50"/><text x="4.0855%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (50 samples, 0.01%)</title><rect x="3.8355%" y="725" width="0.0104%" height="15" fill="rgb(225,139,18)" fg:x="18517" fg:w="50"/><text x="4.0855%" y="735.50"></text></g><g><title>PhaseCFG::sched_call (177 samples, 0.04%)</title><rect x="3.8593%" y="725" width="0.0367%" height="15" fill="rgb(230,137,11)" fg:x="18632" fg:w="177"/><text x="4.1093%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (179 samples, 0.04%)</title><rect x="3.8593%" y="741" width="0.0371%" height="15" fill="rgb(212,28,1)" fg:x="18632" fg:w="179"/><text x="4.1093%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (231 samples, 0.05%)</title><rect x="3.8496%" y="773" width="0.0478%" height="15" fill="rgb(248,164,17)" fg:x="18585" fg:w="231"/><text x="4.0996%" y="783.50"></text></g><g><title>PhaseCFG::global_code_motion (231 samples, 0.05%)</title><rect x="3.8496%" y="757" width="0.0478%" height="15" fill="rgb(222,171,42)" fg:x="18585" fg:w="231"/><text x="4.0996%" y="767.50"></text></g><g><title>Compile::Code_Gen (346 samples, 0.07%)</title><rect x="3.8355%" y="789" width="0.0717%" height="15" fill="rgb(243,84,45)" fg:x="18517" fg:w="346"/><text x="4.0855%" y="799.50"></text></g><g><title>OopFlow::compute_reach (175 samples, 0.04%)</title><rect x="4.0128%" y="725" width="0.0362%" height="15" fill="rgb(252,49,23)" fg:x="19373" fg:w="175"/><text x="4.2628%" y="735.50"></text></g><g><title>OopFlow::build_oop_map (100 samples, 0.02%)</title><rect x="4.0284%" y="709" width="0.0207%" height="15" fill="rgb(215,19,7)" fg:x="19448" fg:w="100"/><text x="4.2784%" y="719.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (83 samples, 0.02%)</title><rect x="4.0530%" y="725" width="0.0172%" height="15" fill="rgb(238,81,41)" fg:x="19567" fg:w="83"/><text x="4.3030%" y="735.50"></text></g><g><title>Compile::BuildOopMaps (773 samples, 0.16%)</title><rect x="3.9105%" y="741" width="0.1601%" height="15" fill="rgb(210,199,37)" fg:x="18879" fg:w="773"/><text x="4.1605%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (162 samples, 0.03%)</title><rect x="4.1152%" y="709" width="0.0336%" height="15" fill="rgb(244,192,49)" fg:x="19867" fg:w="162"/><text x="4.3652%" y="719.50"></text></g><g><title>Compile::init_buffer (404 samples, 0.08%)</title><rect x="4.0706%" y="741" width="0.0837%" height="15" fill="rgb(226,211,11)" fg:x="19652" fg:w="404"/><text x="4.3206%" y="751.50"></text></g><g><title>Compile::shorten_branches (346 samples, 0.07%)</title><rect x="4.0826%" y="725" width="0.0717%" height="15" fill="rgb(236,162,54)" fg:x="19710" fg:w="346"/><text x="4.3326%" y="735.50"></text></g><g><title>Compile::Output (1,189 samples, 0.25%)</title><rect x="3.9086%" y="757" width="0.2463%" height="15" fill="rgb(220,229,9)" fg:x="18870" fg:w="1189"/><text x="4.1586%" y="767.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (62 samples, 0.01%)</title><rect x="4.1990%" y="725" width="0.0128%" height="15" fill="rgb(250,87,22)" fg:x="20272" fg:w="62"/><text x="4.4490%" y="735.50"></text></g><g><title>DebugInformationRecorder::describe_scope (50 samples, 0.01%)</title><rect x="4.2119%" y="725" width="0.0104%" height="15" fill="rgb(239,43,17)" fg:x="20334" fg:w="50"/><text x="4.4619%" y="735.50"></text></g><g><title>Compile::Process_OopMap_Node (221 samples, 0.05%)</title><rect x="4.1847%" y="741" width="0.0458%" height="15" fill="rgb(231,177,25)" fg:x="20203" fg:w="221"/><text x="4.4347%" y="751.50"></text></g><g><title>Compile::fill_buffer (523 samples, 0.11%)</title><rect x="4.1555%" y="757" width="0.1083%" height="15" fill="rgb(219,179,1)" fg:x="20062" fg:w="523"/><text x="4.4055%" y="767.50"></text></g><g><title>Matcher::find_shared (374 samples, 0.08%)</title><rect x="4.2829%" y="741" width="0.0775%" height="15" fill="rgb(238,219,53)" fg:x="20677" fg:w="374"/><text x="4.5329%" y="751.50"></text></g><g><title>Arena::contains (490 samples, 0.10%)</title><rect x="4.4325%" y="725" width="0.1015%" height="15" fill="rgb(232,167,36)" fg:x="21399" fg:w="490"/><text x="4.6825%" y="735.50"></text></g><g><title>Matcher::match_tree (127 samples, 0.03%)</title><rect x="4.5495%" y="709" width="0.0263%" height="15" fill="rgb(244,19,51)" fg:x="21964" fg:w="127"/><text x="4.7995%" y="719.50"></text></g><g><title>Matcher::match_sfpt (164 samples, 0.03%)</title><rect x="4.5441%" y="725" width="0.0340%" height="15" fill="rgb(224,6,22)" fg:x="21938" fg:w="164"/><text x="4.7941%" y="735.50"></text></g><g><title>Matcher::Label_Root (126 samples, 0.03%)</title><rect x="4.6444%" y="677" width="0.0261%" height="15" fill="rgb(224,145,5)" fg:x="22422" fg:w="126"/><text x="4.8944%" y="687.50"></text></g><g><title>State::DFA (61 samples, 0.01%)</title><rect x="4.6709%" y="677" width="0.0126%" height="15" fill="rgb(234,130,49)" fg:x="22550" fg:w="61"/><text x="4.9209%" y="687.50"></text></g><g><title>Matcher::Label_Root (263 samples, 0.05%)</title><rect x="4.6305%" y="693" width="0.0545%" height="15" fill="rgb(254,6,2)" fg:x="22355" fg:w="263"/><text x="4.8805%" y="703.50"></text></g><g><title>Matcher::Label_Root (413 samples, 0.09%)</title><rect x="4.6162%" y="709" width="0.0855%" height="15" fill="rgb(208,96,46)" fg:x="22286" fg:w="413"/><text x="4.8662%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (52 samples, 0.01%)</title><rect x="4.7134%" y="661" width="0.0108%" height="15" fill="rgb(239,3,39)" fg:x="22755" fg:w="52"/><text x="4.9634%" y="671.50"></text></g><g><title>Matcher::ReduceInst (93 samples, 0.02%)</title><rect x="4.7119%" y="677" width="0.0193%" height="15" fill="rgb(233,210,1)" fg:x="22748" fg:w="93"/><text x="4.9619%" y="687.50"></text></g><g><title>Matcher::ReduceInst_Interior (170 samples, 0.04%)</title><rect x="4.7071%" y="693" width="0.0352%" height="15" fill="rgb(244,137,37)" fg:x="22725" fg:w="170"/><text x="4.9571%" y="703.50"></text></g><g><title>State::MachNodeGenerator (59 samples, 0.01%)</title><rect x="4.7482%" y="693" width="0.0122%" height="15" fill="rgb(240,136,2)" fg:x="22923" fg:w="59"/><text x="4.9982%" y="703.50"></text></g><g><title>Matcher::ReduceInst (325 samples, 0.07%)</title><rect x="4.7018%" y="709" width="0.0673%" height="15" fill="rgb(239,18,37)" fg:x="22699" fg:w="325"/><text x="4.9518%" y="719.50"></text></g><g><title>Matcher::match_tree (932 samples, 0.19%)</title><rect x="4.5781%" y="725" width="0.1930%" height="15" fill="rgb(218,185,22)" fg:x="22102" fg:w="932"/><text x="4.8281%" y="735.50"></text></g><g><title>Node::clone (65 samples, 0.01%)</title><rect x="4.7726%" y="725" width="0.0135%" height="15" fill="rgb(225,218,4)" fg:x="23041" fg:w="65"/><text x="5.0226%" y="735.50"></text></g><g><title>Matcher::xform (2,099 samples, 0.43%)</title><rect x="4.3625%" y="741" width="0.4348%" height="15" fill="rgb(230,182,32)" fg:x="21061" fg:w="2099"/><text x="4.6125%" y="751.50"></text></g><g><title>Matcher::match (2,580 samples, 0.53%)</title><rect x="4.2662%" y="757" width="0.5344%" height="15" fill="rgb(242,56,43)" fg:x="20596" fg:w="2580"/><text x="4.5162%" y="767.50"></text></g><g><title>PhaseBlockLayout::find_edges (60 samples, 0.01%)</title><rect x="4.8008%" y="741" width="0.0124%" height="15" fill="rgb(233,99,24)" fg:x="23177" fg:w="60"/><text x="5.0508%" y="751.50"></text></g><g><title>PhaseBlockLayout::grow_traces (62 samples, 0.01%)</title><rect x="4.8132%" y="741" width="0.0128%" height="15" fill="rgb(234,209,42)" fg:x="23237" fg:w="62"/><text x="5.0632%" y="751.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (161 samples, 0.03%)</title><rect x="4.8008%" y="757" width="0.0333%" height="15" fill="rgb(227,7,12)" fg:x="23177" fg:w="161"/><text x="5.0508%" y="767.50"></text></g><g><title>PhaseCFG::PhaseCFG (153 samples, 0.03%)</title><rect x="4.8341%" y="757" width="0.0317%" height="15" fill="rgb(245,203,43)" fg:x="23338" fg:w="153"/><text x="5.0841%" y="767.50"></text></g><g><title>PhaseCFG::build_cfg (145 samples, 0.03%)</title><rect x="4.8358%" y="741" width="0.0300%" height="15" fill="rgb(238,205,33)" fg:x="23346" fg:w="145"/><text x="5.0858%" y="751.50"></text></g><g><title>PhaseCFG::build_dominator_tree (98 samples, 0.02%)</title><rect x="4.8660%" y="741" width="0.0203%" height="15" fill="rgb(231,56,7)" fg:x="23492" fg:w="98"/><text x="5.1160%" y="751.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (59 samples, 0.01%)</title><rect x="4.8863%" y="741" width="0.0122%" height="15" fill="rgb(244,186,29)" fg:x="23590" fg:w="59"/><text x="5.1363%" y="751.50"></text></g><g><title>Node_Backward_Iterator::next (249 samples, 0.05%)</title><rect x="5.0127%" y="709" width="0.0516%" height="15" fill="rgb(234,111,31)" fg:x="24200" fg:w="249"/><text x="5.2627%" y="719.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (105 samples, 0.02%)</title><rect x="5.0642%" y="709" width="0.0217%" height="15" fill="rgb(241,149,10)" fg:x="24449" fg:w="105"/><text x="5.3142%" y="719.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (154 samples, 0.03%)</title><rect x="5.0860%" y="709" width="0.0319%" height="15" fill="rgb(249,206,44)" fg:x="24554" fg:w="154"/><text x="5.3360%" y="719.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (74 samples, 0.02%)</title><rect x="5.1179%" y="709" width="0.0153%" height="15" fill="rgb(251,153,30)" fg:x="24708" fg:w="74"/><text x="5.3679%" y="719.50"></text></g><g><title>PhaseCFG::schedule_late (684 samples, 0.14%)</title><rect x="4.9924%" y="725" width="0.1417%" height="15" fill="rgb(239,152,38)" fg:x="24102" fg:w="684"/><text x="5.2424%" y="735.50"></text></g><g><title>PhaseCFG::select (94 samples, 0.02%)</title><rect x="5.2039%" y="709" width="0.0195%" height="15" fill="rgb(249,139,47)" fg:x="25123" fg:w="94"/><text x="5.4539%" y="719.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (57 samples, 0.01%)</title><rect x="5.2233%" y="709" width="0.0118%" height="15" fill="rgb(244,64,35)" fg:x="25217" fg:w="57"/><text x="5.4733%" y="719.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (56 samples, 0.01%)</title><rect x="5.2351%" y="709" width="0.0116%" height="15" fill="rgb(216,46,15)" fg:x="25274" fg:w="56"/><text x="5.4851%" y="719.50"></text></g><g><title>PhaseCFG::schedule_local (554 samples, 0.11%)</title><rect x="5.1340%" y="725" width="0.1148%" height="15" fill="rgb(250,74,19)" fg:x="24786" fg:w="554"/><text x="5.3840%" y="735.50"></text></g><g><title>RegMask::Size (100 samples, 0.02%)</title><rect x="5.3085%" y="709" width="0.0207%" height="15" fill="rgb(249,42,33)" fg:x="25628" fg:w="100"/><text x="5.5585%" y="719.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (430 samples, 0.09%)</title><rect x="5.2550%" y="725" width="0.0891%" height="15" fill="rgb(242,149,17)" fg:x="25370" fg:w="430"/><text x="5.5050%" y="735.50"></text></g><g><title>PhaseChaitin::mark_ssa (72 samples, 0.01%)</title><rect x="5.3441%" y="725" width="0.0149%" height="15" fill="rgb(244,29,21)" fg:x="25800" fg:w="72"/><text x="5.5941%" y="735.50"></text></g><g><title>IndexSet::initialize (102 samples, 0.02%)</title><rect x="5.3702%" y="709" width="0.0211%" height="15" fill="rgb(220,130,37)" fg:x="25926" fg:w="102"/><text x="5.6202%" y="719.50"></text></g><g><title>PhaseIFG::init (197 samples, 0.04%)</title><rect x="5.3590%" y="725" width="0.0408%" height="15" fill="rgb(211,67,2)" fg:x="25872" fg:w="197"/><text x="5.6090%" y="735.50"></text></g><g><title>IndexSet::initialize (53 samples, 0.01%)</title><rect x="5.4462%" y="709" width="0.0110%" height="15" fill="rgb(235,68,52)" fg:x="26293" fg:w="53"/><text x="5.6962%" y="719.50"></text></g><g><title>PhaseLive::add_livein (190 samples, 0.04%)</title><rect x="5.4574%" y="709" width="0.0394%" height="15" fill="rgb(246,142,3)" fg:x="26347" fg:w="190"/><text x="5.7074%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (58 samples, 0.01%)</title><rect x="5.4847%" y="693" width="0.0120%" height="15" fill="rgb(241,25,7)" fg:x="26479" fg:w="58"/><text x="5.7347%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (53 samples, 0.01%)</title><rect x="5.5338%" y="693" width="0.0110%" height="15" fill="rgb(242,119,39)" fg:x="26716" fg:w="53"/><text x="5.7838%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (93 samples, 0.02%)</title><rect x="5.5489%" y="693" width="0.0193%" height="15" fill="rgb(241,98,45)" fg:x="26789" fg:w="93"/><text x="5.7989%" y="703.50"></text></g><g><title>PhaseLive::add_liveout (352 samples, 0.07%)</title><rect x="5.4967%" y="709" width="0.0729%" height="15" fill="rgb(254,28,30)" fg:x="26537" fg:w="352"/><text x="5.7467%" y="719.50"></text></g><g><title>PhaseLive::compute (822 samples, 0.17%)</title><rect x="5.3998%" y="725" width="0.1703%" height="15" fill="rgb(241,142,54)" fg:x="26069" fg:w="822"/><text x="5.6498%" y="735.50"></text></g><g><title>PhaseCFG::global_code_motion (3,263 samples, 0.68%)</title><rect x="4.8985%" y="741" width="0.6759%" height="15" fill="rgb(222,85,15)" fg:x="23649" fg:w="3263"/><text x="5.1485%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,423 samples, 0.71%)</title><rect x="4.8658%" y="757" width="0.7090%" height="15" fill="rgb(210,85,47)" fg:x="23491" fg:w="3423"/><text x="5.1158%" y="767.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (75 samples, 0.02%)</title><rect x="5.5802%" y="757" width="0.0155%" height="15" fill="rgb(224,206,25)" fg:x="26940" fg:w="75"/><text x="5.8302%" y="767.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,123 samples, 0.23%)</title><rect x="5.6225%" y="741" width="0.2326%" height="15" fill="rgb(243,201,19)" fg:x="27144" fg:w="1123"/><text x="5.8725%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (282 samples, 0.06%)</title><rect x="5.9657%" y="725" width="0.0584%" height="15" fill="rgb(236,59,4)" fg:x="28801" fg:w="282"/><text x="6.2157%" y="735.50"></text></g><g><title>PhaseChaitin::bias_color (155 samples, 0.03%)</title><rect x="6.0241%" y="725" width="0.0321%" height="15" fill="rgb(254,179,45)" fg:x="29083" fg:w="155"/><text x="6.2741%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (64 samples, 0.01%)</title><rect x="6.1192%" y="709" width="0.0133%" height="15" fill="rgb(226,14,10)" fg:x="29542" fg:w="64"/><text x="6.3692%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (83 samples, 0.02%)</title><rect x="6.1324%" y="709" width="0.0172%" height="15" fill="rgb(244,27,41)" fg:x="29606" fg:w="83"/><text x="6.3824%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (333 samples, 0.07%)</title><rect x="6.1496%" y="709" width="0.0690%" height="15" fill="rgb(235,35,32)" fg:x="29689" fg:w="333"/><text x="6.3996%" y="719.50"></text></g><g><title>PhaseIFG::re_insert (788 samples, 0.16%)</title><rect x="6.0583%" y="725" width="0.1632%" height="15" fill="rgb(218,68,31)" fg:x="29248" fg:w="788"/><text x="6.3083%" y="735.50"></text></g><g><title>RegMask::clear_to_sets (140 samples, 0.03%)</title><rect x="6.2215%" y="725" width="0.0290%" height="15" fill="rgb(207,120,37)" fg:x="30036" fg:w="140"/><text x="6.4715%" y="735.50"></text></g><g><title>PhaseChaitin::Select (1,922 samples, 0.40%)</title><rect x="5.8551%" y="741" width="0.3981%" height="15" fill="rgb(227,98,0)" fg:x="28267" fg:w="1922"/><text x="6.1051%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (300 samples, 0.06%)</title><rect x="6.3031%" y="725" width="0.0621%" height="15" fill="rgb(207,7,3)" fg:x="30430" fg:w="300"/><text x="6.5531%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (55 samples, 0.01%)</title><rect x="6.4456%" y="709" width="0.0114%" height="15" fill="rgb(206,98,19)" fg:x="31118" fg:w="55"/><text x="6.6956%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (400 samples, 0.08%)</title><rect x="6.4570%" y="709" width="0.0829%" height="15" fill="rgb(217,5,26)" fg:x="31173" fg:w="400"/><text x="6.7070%" y="719.50"></text></g><g><title>PhaseIFG::remove_node (845 samples, 0.18%)</title><rect x="6.3653%" y="725" width="0.1750%" height="15" fill="rgb(235,190,38)" fg:x="30730" fg:w="845"/><text x="6.6153%" y="735.50"></text></g><g><title>PhaseChaitin::Simplify (1,387 samples, 0.29%)</title><rect x="6.2532%" y="741" width="0.2873%" height="15" fill="rgb(247,86,24)" fg:x="30189" fg:w="1387"/><text x="6.5032%" y="751.50"></text></g><g><title>MachNode::rematerialize (175 samples, 0.04%)</title><rect x="7.0612%" y="725" width="0.0362%" height="15" fill="rgb(205,101,16)" fg:x="34090" fg:w="175"/><text x="7.3112%" y="735.50"></text></g><g><title>Node::rematerialize (172 samples, 0.04%)</title><rect x="7.1068%" y="725" width="0.0356%" height="15" fill="rgb(246,168,33)" fg:x="34310" fg:w="172"/><text x="7.3568%" y="735.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (62 samples, 0.01%)</title><rect x="7.1789%" y="709" width="0.0128%" height="15" fill="rgb(231,114,1)" fg:x="34658" fg:w="62"/><text x="7.4289%" y="719.50"></text></g><g><title>PhaseChaitin::split_USE (134 samples, 0.03%)</title><rect x="7.1679%" y="725" width="0.0278%" height="15" fill="rgb(207,184,53)" fg:x="34605" fg:w="134"/><text x="7.4179%" y="735.50"></text></g><g><title>PhaseChaitin::Split (3,244 samples, 0.67%)</title><rect x="6.5405%" y="741" width="0.6719%" height="15" fill="rgb(224,95,51)" fg:x="31576" fg:w="3244"/><text x="6.7905%" y="751.50"></text></g><g><title>IndexSet::IndexSet (286 samples, 0.06%)</title><rect x="7.3752%" y="725" width="0.0592%" height="15" fill="rgb(212,188,45)" fg:x="35606" fg:w="286"/><text x="7.6252%" y="735.50"></text></g><g><title>MachNode::rematerialize (65 samples, 0.01%)</title><rect x="7.4368%" y="725" width="0.0135%" height="15" fill="rgb(223,154,38)" fg:x="35903" fg:w="65"/><text x="7.6868%" y="735.50"></text></g><g><title>MachNode::rematerialize (97 samples, 0.02%)</title><rect x="7.5507%" y="709" width="0.0201%" height="15" fill="rgb(251,22,52)" fg:x="36453" fg:w="97"/><text x="7.8007%" y="719.50"></text></g><g><title>RegMask::is_UP (64 samples, 0.01%)</title><rect x="7.5913%" y="693" width="0.0133%" height="15" fill="rgb(229,209,22)" fg:x="36649" fg:w="64"/><text x="7.8413%" y="703.50"></text></g><g><title>PhaseChaitin::raise_pressure (142 samples, 0.03%)</title><rect x="7.5753%" y="709" width="0.0294%" height="15" fill="rgb(234,138,34)" fg:x="36572" fg:w="142"/><text x="7.8253%" y="719.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (739 samples, 0.15%)</title><rect x="7.4531%" y="725" width="0.1531%" height="15" fill="rgb(212,95,11)" fg:x="35982" fg:w="739"/><text x="7.7031%" y="735.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (50 samples, 0.01%)</title><rect x="7.6062%" y="725" width="0.0104%" height="15" fill="rgb(240,179,47)" fg:x="36721" fg:w="50"/><text x="7.8562%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (141 samples, 0.03%)</title><rect x="7.6741%" y="709" width="0.0292%" height="15" fill="rgb(240,163,11)" fg:x="37049" fg:w="141"/><text x="7.9241%" y="719.50"></text></g><g><title>RegMask::is_UP (77 samples, 0.02%)</title><rect x="7.7033%" y="709" width="0.0159%" height="15" fill="rgb(236,37,12)" fg:x="37190" fg:w="77"/><text x="7.9533%" y="719.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (464 samples, 0.10%)</title><rect x="7.6236%" y="725" width="0.0961%" height="15" fill="rgb(232,164,16)" fg:x="36805" fg:w="464"/><text x="7.8736%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (116 samples, 0.02%)</title><rect x="8.0729%" y="709" width="0.0240%" height="15" fill="rgb(244,205,15)" fg:x="38974" fg:w="116"/><text x="8.3229%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (768 samples, 0.16%)</title><rect x="8.0981%" y="709" width="0.1591%" height="15" fill="rgb(223,117,47)" fg:x="39096" fg:w="768"/><text x="8.3481%" y="719.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,600 samples, 0.54%)</title><rect x="7.7197%" y="725" width="0.5386%" height="15" fill="rgb(244,107,35)" fg:x="37269" fg:w="2600"/><text x="7.9697%" y="735.50"></text></g><g><title>PhaseChaitin::lower_pressure (90 samples, 0.02%)</title><rect x="8.2583%" y="725" width="0.0186%" height="15" fill="rgb(205,140,8)" fg:x="39869" fg:w="90"/><text x="8.5083%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (181 samples, 0.04%)</title><rect x="8.3780%" y="709" width="0.0375%" height="15" fill="rgb(228,84,46)" fg:x="40447" fg:w="181"/><text x="8.6280%" y="719.50"></text></g><g><title>RegMask::Size (275 samples, 0.06%)</title><rect x="8.4155%" y="709" width="0.0570%" height="15" fill="rgb(254,188,9)" fg:x="40628" fg:w="275"/><text x="8.6655%" y="719.50"></text></g><g><title>RegMask::smear_to_sets (627 samples, 0.13%)</title><rect x="8.4724%" y="709" width="0.1299%" height="15" fill="rgb(206,112,54)" fg:x="40903" fg:w="627"/><text x="8.7224%" y="719.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,580 samples, 0.33%)</title><rect x="8.2769%" y="725" width="0.3273%" height="15" fill="rgb(216,84,49)" fg:x="39959" fg:w="1580"/><text x="8.5269%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (6,809 samples, 1.41%)</title><rect x="7.2131%" y="741" width="1.4104%" height="15" fill="rgb(214,194,35)" fg:x="34823" fg:w="6809"/><text x="7.4631%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (68 samples, 0.01%)</title><rect x="8.7061%" y="709" width="0.0141%" height="15" fill="rgb(249,28,3)" fg:x="42031" fg:w="68"/><text x="8.9561%" y="719.50"></text></g><g><title>PhaseChaitin::interfere_with_live (334 samples, 0.07%)</title><rect x="8.6514%" y="725" width="0.0692%" height="15" fill="rgb(222,56,52)" fg:x="41767" fg:w="334"/><text x="8.9014%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (474 samples, 0.10%)</title><rect x="8.6234%" y="741" width="0.0982%" height="15" fill="rgb(245,217,50)" fg:x="41632" fg:w="474"/><text x="8.8734%" y="751.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (119 samples, 0.02%)</title><rect x="8.7216%" y="741" width="0.0246%" height="15" fill="rgb(213,201,24)" fg:x="42106" fg:w="119"/><text x="8.9716%" y="751.50"></text></g><g><title>PhaseChaitin::de_ssa (83 samples, 0.02%)</title><rect x="8.7525%" y="741" width="0.0172%" height="15" fill="rgb(248,116,28)" fg:x="42255" fg:w="83"/><text x="9.0025%" y="751.50"></text></g><g><title>PhaseChaitin::fixup_spills (59 samples, 0.01%)</title><rect x="8.7699%" y="741" width="0.0122%" height="15" fill="rgb(219,72,43)" fg:x="42339" fg:w="59"/><text x="9.0199%" y="751.50"></text></g><g><title>MachCallJavaNode::in_RegMask (77 samples, 0.02%)</title><rect x="9.1255%" y="725" width="0.0159%" height="15" fill="rgb(209,138,14)" fg:x="44056" fg:w="77"/><text x="9.3755%" y="735.50"></text></g><g><title>MachNode::ideal_reg (75 samples, 0.02%)</title><rect x="9.1421%" y="725" width="0.0155%" height="15" fill="rgb(222,18,33)" fg:x="44136" fg:w="75"/><text x="9.3921%" y="735.50"></text></g><g><title>MachNode::in_RegMask (57 samples, 0.01%)</title><rect x="9.1576%" y="725" width="0.0118%" height="15" fill="rgb(213,199,7)" fg:x="44211" fg:w="57"/><text x="9.4076%" y="735.50"></text></g><g><title>RegMask::Size (1,054 samples, 0.22%)</title><rect x="9.1922%" y="725" width="0.2183%" height="15" fill="rgb(250,110,10)" fg:x="44378" fg:w="1054"/><text x="9.4422%" y="735.50"></text></g><g><title>RegMask::clear_to_sets (193 samples, 0.04%)</title><rect x="9.4106%" y="725" width="0.0400%" height="15" fill="rgb(248,123,6)" fg:x="45432" fg:w="193"/><text x="9.6606%" y="735.50"></text></g><g><title>RegMask::is_aligned_pairs (82 samples, 0.02%)</title><rect x="9.4505%" y="725" width="0.0170%" height="15" fill="rgb(206,91,31)" fg:x="45625" fg:w="82"/><text x="9.7005%" y="735.50"></text></g><g><title>RegMask::is_bound1 (149 samples, 0.03%)</title><rect x="9.4675%" y="725" width="0.0309%" height="15" fill="rgb(211,154,13)" fg:x="45707" fg:w="149"/><text x="9.7175%" y="735.50"></text></g><g><title>RegMask::is_bound_pair (94 samples, 0.02%)</title><rect x="9.4984%" y="725" width="0.0195%" height="15" fill="rgb(225,148,7)" fg:x="45856" fg:w="94"/><text x="9.7484%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,687 samples, 0.76%)</title><rect x="8.7821%" y="741" width="0.7637%" height="15" fill="rgb(220,160,43)" fg:x="42398" fg:w="3687"/><text x="9.0321%" y="751.50"></text></g><g><title>PhaseChaitin::merge_multidefs (495 samples, 0.10%)</title><rect x="9.5460%" y="741" width="0.1025%" height="15" fill="rgb(213,52,39)" fg:x="46086" fg:w="495"/><text x="9.7960%" y="751.50"></text></g><g><title>PhaseChaitin::use_prior_register (83 samples, 0.02%)</title><rect x="10.3549%" y="709" width="0.0172%" height="15" fill="rgb(243,137,7)" fg:x="49991" fg:w="83"/><text x="10.6049%" y="719.50"></text></g><g><title>PhaseChaitin::elide_copy (1,828 samples, 0.38%)</title><rect x="10.0013%" y="725" width="0.3786%" height="15" fill="rgb(230,79,13)" fg:x="48284" fg:w="1828"/><text x="10.2513%" y="735.50"></text></g><g><title>[libc-2.31.so] (60 samples, 0.01%)</title><rect x="10.3897%" y="725" width="0.0124%" height="15" fill="rgb(247,105,23)" fg:x="50159" fg:w="60"/><text x="10.6397%" y="735.50"></text></g><g><title>find_lowest_bit (328 samples, 0.07%)</title><rect x="10.4025%" y="725" width="0.0679%" height="15" fill="rgb(223,179,41)" fg:x="50221" fg:w="328"/><text x="10.6525%" y="735.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (3,975 samples, 0.82%)</title><rect x="9.6486%" y="741" width="0.8234%" height="15" fill="rgb(218,9,34)" fg:x="46581" fg:w="3975"/><text x="9.8986%" y="751.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (173 samples, 0.04%)</title><rect x="10.4719%" y="741" width="0.0358%" height="15" fill="rgb(222,106,8)" fg:x="50556" fg:w="173"/><text x="10.7219%" y="751.50"></text></g><g><title>PhaseCoalesce::combine_these_two (65 samples, 0.01%)</title><rect x="10.5272%" y="709" width="0.0135%" height="15" fill="rgb(211,220,0)" fg:x="50823" fg:w="65"/><text x="10.7772%" y="719.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (150 samples, 0.03%)</title><rect x="10.5102%" y="725" width="0.0311%" height="15" fill="rgb(229,52,16)" fg:x="50741" fg:w="150"/><text x="10.7602%" y="735.50"></text></g><g><title>PhaseCFG::is_uncommon (112 samples, 0.02%)</title><rect x="10.5502%" y="709" width="0.0232%" height="15" fill="rgb(212,155,18)" fg:x="50934" fg:w="112"/><text x="10.8002%" y="719.50"></text></g><g><title>IndexSet::lrg_union (225 samples, 0.05%)</title><rect x="10.5807%" y="693" width="0.0466%" height="15" fill="rgb(242,21,14)" fg:x="51081" fg:w="225"/><text x="10.8307%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (200 samples, 0.04%)</title><rect x="10.6304%" y="693" width="0.0414%" height="15" fill="rgb(222,19,48)" fg:x="51321" fg:w="200"/><text x="10.8804%" y="703.50"></text></g><g><title>PhaseIFG::effective_degree (58 samples, 0.01%)</title><rect x="10.6718%" y="693" width="0.0120%" height="15" fill="rgb(232,45,27)" fg:x="51521" fg:w="58"/><text x="10.9218%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (552 samples, 0.11%)</title><rect x="10.5734%" y="709" width="0.1143%" height="15" fill="rgb(249,103,42)" fg:x="51046" fg:w="552"/><text x="10.8234%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (710 samples, 0.15%)</title><rect x="10.5413%" y="725" width="0.1471%" height="15" fill="rgb(246,81,33)" fg:x="50891" fg:w="710"/><text x="10.7913%" y="735.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (873 samples, 0.18%)</title><rect x="10.5077%" y="741" width="0.1808%" height="15" fill="rgb(252,33,42)" fg:x="50729" fg:w="873"/><text x="10.7577%" y="751.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (856 samples, 0.18%)</title><rect x="10.6888%" y="741" width="0.1773%" height="15" fill="rgb(209,212,41)" fg:x="51603" fg:w="856"/><text x="10.9388%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (457 samples, 0.09%)</title><rect x="10.7714%" y="725" width="0.0947%" height="15" fill="rgb(207,154,6)" fg:x="52002" fg:w="457"/><text x="11.0214%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (82 samples, 0.02%)</title><rect x="10.9322%" y="725" width="0.0170%" height="15" fill="rgb(223,64,47)" fg:x="52778" fg:w="82"/><text x="11.1822%" y="735.50"></text></g><g><title>PhaseIFG::SquareUp (779 samples, 0.16%)</title><rect x="10.8661%" y="741" width="0.1614%" height="15" fill="rgb(211,161,38)" fg:x="52459" fg:w="779"/><text x="11.1161%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (378 samples, 0.08%)</title><rect x="10.9492%" y="725" width="0.0783%" height="15" fill="rgb(219,138,40)" fg:x="52860" fg:w="378"/><text x="11.1992%" y="735.50"></text></g><g><title>IndexSet::initialize (202 samples, 0.04%)</title><rect x="11.0488%" y="725" width="0.0418%" height="15" fill="rgb(241,228,46)" fg:x="53341" fg:w="202"/><text x="11.2988%" y="735.50"></text></g><g><title>PhaseIFG::init (366 samples, 0.08%)</title><rect x="11.0275%" y="741" width="0.0758%" height="15" fill="rgb(223,209,38)" fg:x="53238" fg:w="366"/><text x="11.2775%" y="751.50"></text></g><g><title>[libc-2.31.so] (60 samples, 0.01%)</title><rect x="11.0908%" y="725" width="0.0124%" height="15" fill="rgb(236,164,45)" fg:x="53544" fg:w="60"/><text x="11.3408%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (88 samples, 0.02%)</title><rect x="11.3259%" y="725" width="0.0182%" height="15" fill="rgb(231,15,5)" fg:x="54679" fg:w="88"/><text x="11.5759%" y="735.50"></text></g><g><title>IndexSet::free_block (49 samples, 0.01%)</title><rect x="11.3442%" y="725" width="0.0101%" height="15" fill="rgb(252,35,15)" fg:x="54767" fg:w="49"/><text x="11.5942%" y="735.50"></text></g><g><title>IndexSet::initialize (99 samples, 0.02%)</title><rect x="11.3543%" y="725" width="0.0205%" height="15" fill="rgb(248,181,18)" fg:x="54816" fg:w="99"/><text x="11.6043%" y="735.50"></text></g><g><title>__tls_get_addr (65 samples, 0.01%)</title><rect x="11.5382%" y="693" width="0.0135%" height="15" fill="rgb(233,39,42)" fg:x="55704" fg:w="65"/><text x="11.7882%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (206 samples, 0.04%)</title><rect x="11.5111%" y="709" width="0.0427%" height="15" fill="rgb(238,110,33)" fg:x="55573" fg:w="206"/><text x="11.7611%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (306 samples, 0.06%)</title><rect x="11.5596%" y="709" width="0.0634%" height="15" fill="rgb(233,195,10)" fg:x="55807" fg:w="306"/><text x="11.8096%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (1,222 samples, 0.25%)</title><rect x="11.3752%" y="725" width="0.2531%" height="15" fill="rgb(254,105,3)" fg:x="54917" fg:w="1222"/><text x="11.6252%" y="735.50"></text></g><g><title>PhaseLive::compute (2,543 samples, 0.53%)</title><rect x="11.1039%" y="741" width="0.5267%" height="15" fill="rgb(221,225,9)" fg:x="53607" fg:w="2543"/><text x="11.3539%" y="751.50"></text></g><g><title>PhaseChaitin::Register_Allocate (29,252 samples, 6.06%)</title><rect x="5.5991%" y="757" width="6.0591%" height="15" fill="rgb(224,227,45)" fg:x="27031" fg:w="29252"/><text x="5.8491%" y="767.50">PhaseCha..</text></g><g><title>Compile::Code_Gen (37,461 samples, 7.76%)</title><rect x="3.9072%" y="773" width="7.7595%" height="15" fill="rgb(229,198,43)" fg:x="18863" fg:w="37461"/><text x="4.1572%" y="783.50">Compile::Co..</text></g><g><title>Parse::do_call (91 samples, 0.02%)</title><rect x="11.7218%" y="117" width="0.0188%" height="15" fill="rgb(206,209,35)" fg:x="56590" fg:w="91"/><text x="11.9718%" y="127.50"></text></g><g><title>Parse::do_one_block (172 samples, 0.04%)</title><rect x="11.7191%" y="149" width="0.0356%" height="15" fill="rgb(245,195,53)" fg:x="56577" fg:w="172"/><text x="11.9691%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.04%)</title><rect x="11.7193%" y="133" width="0.0354%" height="15" fill="rgb(240,92,26)" fg:x="56578" fg:w="171"/><text x="11.9693%" y="143.50"></text></g><g><title>Parse::do_all_blocks (175 samples, 0.04%)</title><rect x="11.7189%" y="165" width="0.0362%" height="15" fill="rgb(207,40,23)" fg:x="56576" fg:w="175"/><text x="11.9689%" y="175.50"></text></g><g><title>ParseGenerator::generate (203 samples, 0.04%)</title><rect x="11.7156%" y="197" width="0.0420%" height="15" fill="rgb(223,111,35)" fg:x="56560" fg:w="203"/><text x="11.9656%" y="207.50"></text></g><g><title>Parse::Parse (202 samples, 0.04%)</title><rect x="11.7158%" y="181" width="0.0418%" height="15" fill="rgb(229,147,28)" fg:x="56561" fg:w="202"/><text x="11.9658%" y="191.50"></text></g><g><title>Parse::do_call (253 samples, 0.05%)</title><rect x="11.7075%" y="213" width="0.0524%" height="15" fill="rgb(211,29,28)" fg:x="56521" fg:w="253"/><text x="11.9575%" y="223.50"></text></g><g><title>Parse::do_one_block (347 samples, 0.07%)</title><rect x="11.7029%" y="245" width="0.0719%" height="15" fill="rgb(228,72,33)" fg:x="56499" fg:w="347"/><text x="11.9529%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (341 samples, 0.07%)</title><rect x="11.7042%" y="229" width="0.0706%" height="15" fill="rgb(205,214,31)" fg:x="56505" fg:w="341"/><text x="11.9542%" y="239.50"></text></g><g><title>Parse::do_all_blocks (351 samples, 0.07%)</title><rect x="11.7029%" y="261" width="0.0727%" height="15" fill="rgb(224,111,15)" fg:x="56499" fg:w="351"/><text x="11.9529%" y="271.50"></text></g><g><title>ParseGenerator::generate (380 samples, 0.08%)</title><rect x="11.6994%" y="293" width="0.0787%" height="15" fill="rgb(253,21,26)" fg:x="56482" fg:w="380"/><text x="11.9494%" y="303.50"></text></g><g><title>Parse::Parse (380 samples, 0.08%)</title><rect x="11.6994%" y="277" width="0.0787%" height="15" fill="rgb(245,139,43)" fg:x="56482" fg:w="380"/><text x="11.9494%" y="287.50"></text></g><g><title>Parse::do_call (484 samples, 0.10%)</title><rect x="11.6857%" y="309" width="0.1003%" height="15" fill="rgb(252,170,7)" fg:x="56416" fg:w="484"/><text x="11.9357%" y="319.50"></text></g><g><title>ParseGenerator::generate (567 samples, 0.12%)</title><rect x="11.6818%" y="389" width="0.1174%" height="15" fill="rgb(231,118,14)" fg:x="56397" fg:w="567"/><text x="11.9318%" y="399.50"></text></g><g><title>Parse::Parse (567 samples, 0.12%)</title><rect x="11.6818%" y="373" width="0.1174%" height="15" fill="rgb(238,83,0)" fg:x="56397" fg:w="567"/><text x="11.9318%" y="383.50"></text></g><g><title>Parse::do_all_blocks (561 samples, 0.12%)</title><rect x="11.6830%" y="357" width="0.1162%" height="15" fill="rgb(221,39,39)" fg:x="56403" fg:w="561"/><text x="11.9330%" y="367.50"></text></g><g><title>Parse::do_one_block (560 samples, 0.12%)</title><rect x="11.6832%" y="341" width="0.1160%" height="15" fill="rgb(222,119,46)" fg:x="56404" fg:w="560"/><text x="11.9332%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (558 samples, 0.12%)</title><rect x="11.6837%" y="325" width="0.1156%" height="15" fill="rgb(222,165,49)" fg:x="56406" fg:w="558"/><text x="11.9337%" y="335.50"></text></g><g><title>Parse::do_call (639 samples, 0.13%)</title><rect x="11.6747%" y="405" width="0.1324%" height="15" fill="rgb(219,113,52)" fg:x="56363" fg:w="639"/><text x="11.9247%" y="415.50"></text></g><g><title>ParseGenerator::generate (651 samples, 0.13%)</title><rect x="11.6745%" y="485" width="0.1348%" height="15" fill="rgb(214,7,15)" fg:x="56362" fg:w="651"/><text x="11.9245%" y="495.50"></text></g><g><title>Parse::Parse (651 samples, 0.13%)</title><rect x="11.6745%" y="469" width="0.1348%" height="15" fill="rgb(235,32,4)" fg:x="56362" fg:w="651"/><text x="11.9245%" y="479.50"></text></g><g><title>Parse::do_all_blocks (650 samples, 0.13%)</title><rect x="11.6747%" y="453" width="0.1346%" height="15" fill="rgb(238,90,54)" fg:x="56363" fg:w="650"/><text x="11.9247%" y="463.50"></text></g><g><title>Parse::do_one_block (650 samples, 0.13%)</title><rect x="11.6747%" y="437" width="0.1346%" height="15" fill="rgb(213,208,19)" fg:x="56363" fg:w="650"/><text x="11.9247%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (650 samples, 0.13%)</title><rect x="11.6747%" y="421" width="0.1346%" height="15" fill="rgb(233,156,4)" fg:x="56363" fg:w="650"/><text x="11.9247%" y="431.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="11.8119%" y="293" width="0.0114%" height="15" fill="rgb(207,194,5)" fg:x="57025" fg:w="55"/><text x="12.0619%" y="303.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.01%)</title><rect x="11.8113%" y="325" width="0.0143%" height="15" fill="rgb(206,111,30)" fg:x="57022" fg:w="69"/><text x="12.0613%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.01%)</title><rect x="11.8113%" y="309" width="0.0143%" height="15" fill="rgb(243,70,54)" fg:x="57022" fg:w="69"/><text x="12.0613%" y="319.50"></text></g><g><title>ParseGenerator::generate (70 samples, 0.01%)</title><rect x="11.8113%" y="373" width="0.0145%" height="15" fill="rgb(242,28,8)" fg:x="57022" fg:w="70"/><text x="12.0613%" y="383.50"></text></g><g><title>Parse::Parse (70 samples, 0.01%)</title><rect x="11.8113%" y="357" width="0.0145%" height="15" fill="rgb(219,106,18)" fg:x="57022" fg:w="70"/><text x="12.0613%" y="367.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.01%)</title><rect x="11.8113%" y="341" width="0.0145%" height="15" fill="rgb(244,222,10)" fg:x="57022" fg:w="70"/><text x="12.0613%" y="351.50"></text></g><g><title>Parse::do_call (85 samples, 0.02%)</title><rect x="11.8094%" y="389" width="0.0176%" height="15" fill="rgb(236,179,52)" fg:x="57013" fg:w="85"/><text x="12.0594%" y="399.50"></text></g><g><title>ParseGenerator::generate (86 samples, 0.02%)</title><rect x="11.8094%" y="469" width="0.0178%" height="15" fill="rgb(213,23,39)" fg:x="57013" fg:w="86"/><text x="12.0594%" y="479.50"></text></g><g><title>Parse::Parse (86 samples, 0.02%)</title><rect x="11.8094%" y="453" width="0.0178%" height="15" fill="rgb(238,48,10)" fg:x="57013" fg:w="86"/><text x="12.0594%" y="463.50"></text></g><g><title>Parse::do_all_blocks (86 samples, 0.02%)</title><rect x="11.8094%" y="437" width="0.0178%" height="15" fill="rgb(251,196,23)" fg:x="57013" fg:w="86"/><text x="12.0594%" y="447.50"></text></g><g><title>Parse::do_one_block (86 samples, 0.02%)</title><rect x="11.8094%" y="421" width="0.0178%" height="15" fill="rgb(250,152,24)" fg:x="57013" fg:w="86"/><text x="12.0594%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.02%)</title><rect x="11.8094%" y="405" width="0.0178%" height="15" fill="rgb(209,150,17)" fg:x="57013" fg:w="86"/><text x="12.0594%" y="415.50"></text></g><g><title>ParseGenerator::generate (770 samples, 0.16%)</title><rect x="11.6689%" y="581" width="0.1595%" height="15" fill="rgb(234,202,34)" fg:x="56335" fg:w="770"/><text x="11.9189%" y="591.50"></text></g><g><title>Parse::Parse (770 samples, 0.16%)</title><rect x="11.6689%" y="565" width="0.1595%" height="15" fill="rgb(253,148,53)" fg:x="56335" fg:w="770"/><text x="11.9189%" y="575.50"></text></g><g><title>Parse::do_all_blocks (769 samples, 0.16%)</title><rect x="11.6692%" y="549" width="0.1593%" height="15" fill="rgb(218,129,16)" fg:x="56336" fg:w="769"/><text x="11.9192%" y="559.50"></text></g><g><title>Parse::do_one_block (769 samples, 0.16%)</title><rect x="11.6692%" y="533" width="0.1593%" height="15" fill="rgb(216,85,19)" fg:x="56336" fg:w="769"/><text x="11.9192%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (769 samples, 0.16%)</title><rect x="11.6692%" y="517" width="0.1593%" height="15" fill="rgb(235,228,7)" fg:x="56336" fg:w="769"/><text x="11.9192%" y="527.50"></text></g><g><title>Parse::do_call (769 samples, 0.16%)</title><rect x="11.6692%" y="501" width="0.1593%" height="15" fill="rgb(245,175,0)" fg:x="56336" fg:w="769"/><text x="11.9192%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (92 samples, 0.02%)</title><rect x="11.8094%" y="485" width="0.0191%" height="15" fill="rgb(208,168,36)" fg:x="57013" fg:w="92"/><text x="12.0594%" y="495.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="11.8313%" y="293" width="0.0114%" height="15" fill="rgb(246,171,24)" fg:x="57119" fg:w="55"/><text x="12.0813%" y="303.50"></text></g><g><title>ParseGenerator::generate (66 samples, 0.01%)</title><rect x="11.8313%" y="373" width="0.0137%" height="15" fill="rgb(215,142,24)" fg:x="57119" fg:w="66"/><text x="12.0813%" y="383.50"></text></g><g><title>Parse::Parse (66 samples, 0.01%)</title><rect x="11.8313%" y="357" width="0.0137%" height="15" fill="rgb(250,187,7)" fg:x="57119" fg:w="66"/><text x="12.0813%" y="367.50"></text></g><g><title>Parse::do_all_blocks (66 samples, 0.01%)</title><rect x="11.8313%" y="341" width="0.0137%" height="15" fill="rgb(228,66,33)" fg:x="57119" fg:w="66"/><text x="12.0813%" y="351.50"></text></g><g><title>Parse::do_one_block (66 samples, 0.01%)</title><rect x="11.8313%" y="325" width="0.0137%" height="15" fill="rgb(234,215,21)" fg:x="57119" fg:w="66"/><text x="12.0813%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (66 samples, 0.01%)</title><rect x="11.8313%" y="309" width="0.0137%" height="15" fill="rgb(222,191,20)" fg:x="57119" fg:w="66"/><text x="12.0813%" y="319.50"></text></g><g><title>Parse::do_call (93 samples, 0.02%)</title><rect x="11.8286%" y="389" width="0.0193%" height="15" fill="rgb(245,79,54)" fg:x="57106" fg:w="93"/><text x="12.0786%" y="399.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.02%)</title><rect x="11.8286%" y="469" width="0.0199%" height="15" fill="rgb(240,10,37)" fg:x="57106" fg:w="96"/><text x="12.0786%" y="479.50"></text></g><g><title>Parse::Parse (96 samples, 0.02%)</title><rect x="11.8286%" y="453" width="0.0199%" height="15" fill="rgb(214,192,32)" fg:x="57106" fg:w="96"/><text x="12.0786%" y="463.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.02%)</title><rect x="11.8286%" y="437" width="0.0199%" height="15" fill="rgb(209,36,54)" fg:x="57106" fg:w="96"/><text x="12.0786%" y="447.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.02%)</title><rect x="11.8286%" y="421" width="0.0199%" height="15" fill="rgb(220,10,11)" fg:x="57106" fg:w="96"/><text x="12.0786%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.02%)</title><rect x="11.8286%" y="405" width="0.0199%" height="15" fill="rgb(221,106,17)" fg:x="57106" fg:w="96"/><text x="12.0786%" y="415.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.02%)</title><rect x="11.8284%" y="565" width="0.0228%" height="15" fill="rgb(251,142,44)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="575.50"></text></g><g><title>Parse::Parse (110 samples, 0.02%)</title><rect x="11.8284%" y="549" width="0.0228%" height="15" fill="rgb(238,13,15)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="559.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.02%)</title><rect x="11.8284%" y="533" width="0.0228%" height="15" fill="rgb(208,107,27)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="543.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.02%)</title><rect x="11.8284%" y="517" width="0.0228%" height="15" fill="rgb(205,136,37)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (110 samples, 0.02%)</title><rect x="11.8284%" y="501" width="0.0228%" height="15" fill="rgb(250,205,27)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="511.50"></text></g><g><title>Parse::do_call (110 samples, 0.02%)</title><rect x="11.8284%" y="485" width="0.0228%" height="15" fill="rgb(210,80,43)" fg:x="57105" fg:w="110"/><text x="12.0784%" y="495.50"></text></g><g><title>ParseGenerator::generate (891 samples, 0.18%)</title><rect x="11.6683%" y="677" width="0.1846%" height="15" fill="rgb(247,160,36)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="687.50"></text></g><g><title>Parse::Parse (891 samples, 0.18%)</title><rect x="11.6683%" y="661" width="0.1846%" height="15" fill="rgb(234,13,49)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="671.50"></text></g><g><title>Parse::do_all_blocks (891 samples, 0.18%)</title><rect x="11.6683%" y="645" width="0.1846%" height="15" fill="rgb(234,122,0)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="655.50"></text></g><g><title>Parse::do_one_block (891 samples, 0.18%)</title><rect x="11.6683%" y="629" width="0.1846%" height="15" fill="rgb(207,146,38)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (891 samples, 0.18%)</title><rect x="11.6683%" y="613" width="0.1846%" height="15" fill="rgb(207,177,25)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="623.50"></text></g><g><title>Parse::do_call (891 samples, 0.18%)</title><rect x="11.6683%" y="597" width="0.1846%" height="15" fill="rgb(211,178,42)" fg:x="56332" fg:w="891"/><text x="11.9183%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (118 samples, 0.02%)</title><rect x="11.8284%" y="581" width="0.0244%" height="15" fill="rgb(230,69,54)" fg:x="57105" fg:w="118"/><text x="12.0784%" y="591.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.01%)</title><rect x="11.8614%" y="245" width="0.0110%" height="15" fill="rgb(214,135,41)" fg:x="57264" fg:w="53"/><text x="12.1114%" y="255.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="11.8614%" y="229" width="0.0110%" height="15" fill="rgb(237,67,25)" fg:x="57264" fg:w="53"/><text x="12.1114%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.01%)</title><rect x="11.8614%" y="213" width="0.0110%" height="15" fill="rgb(222,189,50)" fg:x="57264" fg:w="53"/><text x="12.1114%" y="223.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="11.8614%" y="277" width="0.0120%" height="15" fill="rgb(245,148,34)" fg:x="57264" fg:w="58"/><text x="12.1114%" y="287.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="11.8614%" y="261" width="0.0120%" height="15" fill="rgb(222,29,6)" fg:x="57264" fg:w="58"/><text x="12.1114%" y="271.50"></text></g><g><title>Parse::do_call (72 samples, 0.01%)</title><rect x="11.8593%" y="293" width="0.0149%" height="15" fill="rgb(221,189,43)" fg:x="57254" fg:w="72"/><text x="12.1093%" y="303.50"></text></g><g><title>ParseGenerator::generate (93 samples, 0.02%)</title><rect x="11.8583%" y="373" width="0.0193%" height="15" fill="rgb(207,36,27)" fg:x="57249" fg:w="93"/><text x="12.1083%" y="383.50"></text></g><g><title>Parse::Parse (93 samples, 0.02%)</title><rect x="11.8583%" y="357" width="0.0193%" height="15" fill="rgb(217,90,24)" fg:x="57249" fg:w="93"/><text x="12.1083%" y="367.50"></text></g><g><title>Parse::do_all_blocks (92 samples, 0.02%)</title><rect x="11.8585%" y="341" width="0.0191%" height="15" fill="rgb(224,66,35)" fg:x="57250" fg:w="92"/><text x="12.1085%" y="351.50"></text></g><g><title>Parse::do_one_block (92 samples, 0.02%)</title><rect x="11.8585%" y="325" width="0.0191%" height="15" fill="rgb(221,13,50)" fg:x="57250" fg:w="92"/><text x="12.1085%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.02%)</title><rect x="11.8587%" y="309" width="0.0188%" height="15" fill="rgb(236,68,49)" fg:x="57251" fg:w="91"/><text x="12.1087%" y="319.50"></text></g><g><title>Parse::do_call (116 samples, 0.02%)</title><rect x="11.8560%" y="389" width="0.0240%" height="15" fill="rgb(229,146,28)" fg:x="57238" fg:w="116"/><text x="12.1060%" y="399.50"></text></g><g><title>ParseGenerator::generate (121 samples, 0.03%)</title><rect x="11.8558%" y="469" width="0.0251%" height="15" fill="rgb(225,31,38)" fg:x="57237" fg:w="121"/><text x="12.1058%" y="479.50"></text></g><g><title>Parse::Parse (121 samples, 0.03%)</title><rect x="11.8558%" y="453" width="0.0251%" height="15" fill="rgb(250,208,3)" fg:x="57237" fg:w="121"/><text x="12.1058%" y="463.50"></text></g><g><title>Parse::do_all_blocks (121 samples, 0.03%)</title><rect x="11.8558%" y="437" width="0.0251%" height="15" fill="rgb(246,54,23)" fg:x="57237" fg:w="121"/><text x="12.1058%" y="447.50"></text></g><g><title>Parse::do_one_block (121 samples, 0.03%)</title><rect x="11.8558%" y="421" width="0.0251%" height="15" fill="rgb(243,76,11)" fg:x="57237" fg:w="121"/><text x="12.1058%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (121 samples, 0.03%)</title><rect x="11.8558%" y="405" width="0.0251%" height="15" fill="rgb(245,21,50)" fg:x="57237" fg:w="121"/><text x="12.1058%" y="415.50"></text></g><g><title>ParseGenerator::generate (142 samples, 0.03%)</title><rect x="11.8533%" y="565" width="0.0294%" height="15" fill="rgb(228,9,43)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="575.50"></text></g><g><title>Parse::Parse (142 samples, 0.03%)</title><rect x="11.8533%" y="549" width="0.0294%" height="15" fill="rgb(208,100,47)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="559.50"></text></g><g><title>Parse::do_all_blocks (142 samples, 0.03%)</title><rect x="11.8533%" y="533" width="0.0294%" height="15" fill="rgb(232,26,8)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="543.50"></text></g><g><title>Parse::do_one_block (142 samples, 0.03%)</title><rect x="11.8533%" y="517" width="0.0294%" height="15" fill="rgb(216,166,38)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (142 samples, 0.03%)</title><rect x="11.8533%" y="501" width="0.0294%" height="15" fill="rgb(251,202,51)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="511.50"></text></g><g><title>Parse::do_call (142 samples, 0.03%)</title><rect x="11.8533%" y="485" width="0.0294%" height="15" fill="rgb(254,216,34)" fg:x="57225" fg:w="142"/><text x="12.1033%" y="495.50"></text></g><g><title>ParseGenerator::generate (190 samples, 0.04%)</title><rect x="11.8529%" y="661" width="0.0394%" height="15" fill="rgb(251,32,27)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="671.50"></text></g><g><title>Parse::Parse (190 samples, 0.04%)</title><rect x="11.8529%" y="645" width="0.0394%" height="15" fill="rgb(208,127,28)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="655.50"></text></g><g><title>Parse::do_all_blocks (190 samples, 0.04%)</title><rect x="11.8529%" y="629" width="0.0394%" height="15" fill="rgb(224,137,22)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="639.50"></text></g><g><title>Parse::do_one_block (190 samples, 0.04%)</title><rect x="11.8529%" y="613" width="0.0394%" height="15" fill="rgb(254,70,32)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (190 samples, 0.04%)</title><rect x="11.8529%" y="597" width="0.0394%" height="15" fill="rgb(229,75,37)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="607.50"></text></g><g><title>Parse::do_call (190 samples, 0.04%)</title><rect x="11.8529%" y="581" width="0.0394%" height="15" fill="rgb(252,64,23)" fg:x="57223" fg:w="190"/><text x="12.1029%" y="591.50"></text></g><g><title>Compile::Compile (38,584 samples, 7.99%)</title><rect x="3.9072%" y="789" width="7.9921%" height="15" fill="rgb(232,162,48)" fg:x="18863" fg:w="38584"/><text x="4.1572%" y="799.50">Compile::Co..</text></g><g><title>ParseGenerator::generate (1,115 samples, 0.23%)</title><rect x="11.6683%" y="773" width="0.2310%" height="15" fill="rgb(246,160,12)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="783.50"></text></g><g><title>Parse::Parse (1,115 samples, 0.23%)</title><rect x="11.6683%" y="757" width="0.2310%" height="15" fill="rgb(247,166,0)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="767.50"></text></g><g><title>Parse::do_all_blocks (1,115 samples, 0.23%)</title><rect x="11.6683%" y="741" width="0.2310%" height="15" fill="rgb(249,219,21)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="751.50"></text></g><g><title>Parse::do_one_block (1,115 samples, 0.23%)</title><rect x="11.6683%" y="725" width="0.2310%" height="15" fill="rgb(205,209,3)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (1,115 samples, 0.23%)</title><rect x="11.6683%" y="709" width="0.2310%" height="15" fill="rgb(243,44,1)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="719.50"></text></g><g><title>Parse::do_call (1,115 samples, 0.23%)</title><rect x="11.6683%" y="693" width="0.2310%" height="15" fill="rgb(206,159,16)" fg:x="56332" fg:w="1115"/><text x="11.9183%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (224 samples, 0.05%)</title><rect x="11.8529%" y="677" width="0.0464%" height="15" fill="rgb(244,77,30)" fg:x="57223" fg:w="224"/><text x="12.1029%" y="687.50"></text></g><g><title>Compile::final_graph_reshaping_impl (112 samples, 0.02%)</title><rect x="11.9279%" y="741" width="0.0232%" height="15" fill="rgb(218,69,12)" fg:x="57585" fg:w="112"/><text x="12.1779%" y="751.50"></text></g><g><title>Compile::final_graph_reshaping_walk (261 samples, 0.05%)</title><rect x="11.9005%" y="757" width="0.0541%" height="15" fill="rgb(212,87,7)" fg:x="57453" fg:w="261"/><text x="12.1505%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping (266 samples, 0.06%)</title><rect x="11.8997%" y="773" width="0.0551%" height="15" fill="rgb(245,114,25)" fg:x="57449" fg:w="266"/><text x="12.1497%" y="783.50"></text></g><g><title>Compile::remove_speculative_types (225 samples, 0.05%)</title><rect x="11.9598%" y="773" width="0.0466%" height="15" fill="rgb(210,61,42)" fg:x="57739" fg:w="225"/><text x="12.2098%" y="783.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (65 samples, 0.01%)</title><rect x="12.0410%" y="741" width="0.0135%" height="15" fill="rgb(211,52,33)" fg:x="58131" fg:w="65"/><text x="12.2910%" y="751.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (75 samples, 0.02%)</title><rect x="12.0625%" y="725" width="0.0155%" height="15" fill="rgb(234,58,33)" fg:x="58235" fg:w="75"/><text x="12.3125%" y="735.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (161 samples, 0.03%)</title><rect x="12.0548%" y="741" width="0.0333%" height="15" fill="rgb(220,115,36)" fg:x="58198" fg:w="161"/><text x="12.3048%" y="751.50"></text></g><g><title>ConnectionGraph::split_memory_phi (73 samples, 0.02%)</title><rect x="12.1008%" y="709" width="0.0151%" height="15" fill="rgb(243,153,54)" fg:x="58420" fg:w="73"/><text x="12.3508%" y="719.50"></text></g><g><title>ConnectionGraph::find_inst_mem (56 samples, 0.01%)</title><rect x="12.1043%" y="693" width="0.0116%" height="15" fill="rgb(251,47,18)" fg:x="58437" fg:w="56"/><text x="12.3543%" y="703.50"></text></g><g><title>ConnectionGraph::split_memory_phi (52 samples, 0.01%)</title><rect x="12.1052%" y="677" width="0.0108%" height="15" fill="rgb(242,102,42)" fg:x="58441" fg:w="52"/><text x="12.3552%" y="687.50"></text></g><g><title>ConnectionGraph::find_inst_mem (109 samples, 0.02%)</title><rect x="12.0940%" y="725" width="0.0226%" height="15" fill="rgb(234,31,38)" fg:x="58387" fg:w="109"/><text x="12.3440%" y="735.50"></text></g><g><title>ConnectionGraph::split_unique_types (132 samples, 0.03%)</title><rect x="12.0921%" y="741" width="0.0273%" height="15" fill="rgb(221,117,51)" fg:x="58378" fg:w="132"/><text x="12.3421%" y="751.50"></text></g><g><title>ConnectionGraph::compute_escape (547 samples, 0.11%)</title><rect x="12.0074%" y="757" width="0.1133%" height="15" fill="rgb(212,20,18)" fg:x="57969" fg:w="547"/><text x="12.2574%" y="767.50"></text></g><g><title>ConnectionGraph::do_analysis (553 samples, 0.11%)</title><rect x="12.0066%" y="773" width="0.1145%" height="15" fill="rgb(245,133,36)" fg:x="57965" fg:w="553"/><text x="12.2566%" y="783.50"></text></g><g><title>PhiNode::Value (49 samples, 0.01%)</title><rect x="12.2263%" y="757" width="0.0101%" height="15" fill="rgb(212,6,19)" fg:x="59026" fg:w="49"/><text x="12.4763%" y="767.50"></text></g><g><title>TypeInstPtr::add_offset (49 samples, 0.01%)</title><rect x="12.2522%" y="757" width="0.0101%" height="15" fill="rgb(218,1,36)" fg:x="59151" fg:w="49"/><text x="12.5022%" y="767.50"></text></g><g><title>PhaseCCP::analyze (707 samples, 0.15%)</title><rect x="12.1228%" y="773" width="0.1464%" height="15" fill="rgb(246,84,54)" fg:x="58526" fg:w="707"/><text x="12.3728%" y="783.50"></text></g><g><title>PhaseCCP::transform_once (125 samples, 0.03%)</title><rect x="12.2889%" y="741" width="0.0259%" height="15" fill="rgb(242,110,6)" fg:x="59328" fg:w="125"/><text x="12.5389%" y="751.50"></text></g><g><title>PhaseCCP::do_transform (223 samples, 0.05%)</title><rect x="12.2692%" y="773" width="0.0462%" height="15" fill="rgb(214,47,5)" fg:x="59233" fg:w="223"/><text x="12.5192%" y="783.50"></text></g><g><title>PhaseCCP::transform (223 samples, 0.05%)</title><rect x="12.2692%" y="757" width="0.0462%" height="15" fill="rgb(218,159,25)" fg:x="59233" fg:w="223"/><text x="12.5192%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (60 samples, 0.01%)</title><rect x="12.3415%" y="693" width="0.0124%" height="15" fill="rgb(215,211,28)" fg:x="59582" fg:w="60"/><text x="12.5915%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (77 samples, 0.02%)</title><rect x="12.3409%" y="709" width="0.0159%" height="15" fill="rgb(238,59,32)" fg:x="59579" fg:w="77"/><text x="12.5909%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (127 samples, 0.03%)</title><rect x="12.3401%" y="725" width="0.0263%" height="15" fill="rgb(226,82,3)" fg:x="59575" fg:w="127"/><text x="12.5901%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (174 samples, 0.04%)</title><rect x="12.3397%" y="741" width="0.0360%" height="15" fill="rgb(240,164,32)" fg:x="59573" fg:w="174"/><text x="12.5897%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (200 samples, 0.04%)</title><rect x="12.3388%" y="757" width="0.0414%" height="15" fill="rgb(232,46,7)" fg:x="59569" fg:w="200"/><text x="12.5888%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (70 samples, 0.01%)</title><rect x="12.3807%" y="741" width="0.0145%" height="15" fill="rgb(229,129,53)" fg:x="59771" fg:w="70"/><text x="12.6307%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (70 samples, 0.01%)</title><rect x="12.4018%" y="725" width="0.0145%" height="15" fill="rgb(234,188,29)" fg:x="59873" fg:w="70"/><text x="12.6518%" y="735.50"></text></g><g><title>IdealLoopTree::loop_predication (220 samples, 0.05%)</title><rect x="12.3803%" y="757" width="0.0456%" height="15" fill="rgb(246,141,4)" fg:x="59769" fg:w="220"/><text x="12.6303%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (148 samples, 0.03%)</title><rect x="12.3952%" y="741" width="0.0307%" height="15" fill="rgb(229,23,39)" fg:x="59841" fg:w="148"/><text x="12.6452%" y="751.50"></text></g><g><title>NTarjan::DFS (267 samples, 0.06%)</title><rect x="12.5760%" y="741" width="0.0553%" height="15" fill="rgb(206,12,3)" fg:x="60714" fg:w="267"/><text x="12.8260%" y="751.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,004 samples, 0.21%)</title><rect x="12.4349%" y="757" width="0.2080%" height="15" fill="rgb(252,226,20)" fg:x="60033" fg:w="1004"/><text x="12.6849%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_depth (55 samples, 0.01%)</title><rect x="12.8985%" y="709" width="0.0114%" height="15" fill="rgb(216,123,35)" fg:x="62271" fg:w="55"/><text x="13.1485%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (169 samples, 0.04%)</title><rect x="12.9099%" y="709" width="0.0350%" height="15" fill="rgb(212,68,40)" fg:x="62326" fg:w="169"/><text x="13.1599%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (370 samples, 0.08%)</title><rect x="12.8689%" y="725" width="0.0766%" height="15" fill="rgb(254,125,32)" fg:x="62128" fg:w="370"/><text x="13.1189%" y="735.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (407 samples, 0.08%)</title><rect x="12.8614%" y="741" width="0.0843%" height="15" fill="rgb(253,97,22)" fg:x="62092" fg:w="407"/><text x="13.1114%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,524 samples, 0.32%)</title><rect x="12.6429%" y="757" width="0.3157%" height="15" fill="rgb(241,101,14)" fg:x="61037" fg:w="1524"/><text x="12.8929%" y="767.50"></text></g><g><title>Node::unique_ctrl_out (63 samples, 0.01%)</title><rect x="13.3277%" y="725" width="0.0130%" height="15" fill="rgb(238,103,29)" fg:x="64343" fg:w="63"/><text x="13.5777%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (83 samples, 0.02%)</title><rect x="13.3409%" y="725" width="0.0172%" height="15" fill="rgb(233,195,47)" fg:x="64407" fg:w="83"/><text x="13.5909%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (69 samples, 0.01%)</title><rect x="13.5276%" y="677" width="0.0143%" height="15" fill="rgb(246,218,30)" fg:x="65308" fg:w="69"/><text x="13.7776%" y="687.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (115 samples, 0.02%)</title><rect x="13.5419%" y="677" width="0.0238%" height="15" fill="rgb(219,145,47)" fg:x="65377" fg:w="115"/><text x="13.7919%" y="687.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (250 samples, 0.05%)</title><rect x="13.5141%" y="693" width="0.0518%" height="15" fill="rgb(243,12,26)" fg:x="65243" fg:w="250"/><text x="13.7641%" y="703.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (391 samples, 0.08%)</title><rect x="13.4922%" y="709" width="0.0810%" height="15" fill="rgb(214,87,16)" fg:x="65137" fg:w="391"/><text x="13.7422%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_depth (51 samples, 0.01%)</title><rect x="13.5959%" y="693" width="0.0106%" height="15" fill="rgb(208,99,42)" fg:x="65638" fg:w="51"/><text x="13.8459%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (177 samples, 0.04%)</title><rect x="13.5736%" y="709" width="0.0367%" height="15" fill="rgb(253,99,2)" fg:x="65530" fg:w="177"/><text x="13.8236%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_depth (1,284 samples, 0.27%)</title><rect x="14.5001%" y="693" width="0.2660%" height="15" fill="rgb(220,168,23)" fg:x="70003" fg:w="1284"/><text x="14.7501%" y="703.50"></text></g><g><title>PhaseIdealLoop::is_dominator (5,579 samples, 1.16%)</title><rect x="13.6139%" y="709" width="1.1556%" height="15" fill="rgb(242,38,24)" fg:x="65725" fg:w="5579"/><text x="13.8639%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (6,843 samples, 1.42%)</title><rect x="13.3581%" y="725" width="1.4174%" height="15" fill="rgb(225,182,9)" fg:x="64490" fg:w="6843"/><text x="13.6081%" y="735.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (7,613 samples, 1.58%)</title><rect x="13.2100%" y="741" width="1.5769%" height="15" fill="rgb(243,178,37)" fg:x="63775" fg:w="7613"/><text x="13.4600%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (8,847 samples, 1.83%)</title><rect x="12.9586%" y="757" width="1.8325%" height="15" fill="rgb(232,139,19)" fg:x="62561" fg:w="8847"/><text x="13.2086%" y="767.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (208 samples, 0.04%)</title><rect x="14.9218%" y="741" width="0.0431%" height="15" fill="rgb(225,201,24)" fg:x="72039" fg:w="208"/><text x="15.1718%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (857 samples, 0.18%)</title><rect x="14.7915%" y="757" width="0.1775%" height="15" fill="rgb(221,47,46)" fg:x="71410" fg:w="857"/><text x="15.0415%" y="767.50"></text></g><g><title>PhaseIdealLoop::do_split_if (110 samples, 0.02%)</title><rect x="15.0678%" y="741" width="0.0228%" height="15" fill="rgb(249,23,13)" fg:x="72744" fg:w="110"/><text x="15.3178%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (264 samples, 0.05%)</title><rect x="15.0923%" y="741" width="0.0547%" height="15" fill="rgb(219,9,5)" fg:x="72862" fg:w="264"/><text x="15.3423%" y="751.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (91 samples, 0.02%)</title><rect x="15.1886%" y="725" width="0.0188%" height="15" fill="rgb(254,171,16)" fg:x="73327" fg:w="91"/><text x="15.4386%" y="735.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (150 samples, 0.03%)</title><rect x="15.2081%" y="725" width="0.0311%" height="15" fill="rgb(230,171,20)" fg:x="73421" fg:w="150"/><text x="15.4581%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (54 samples, 0.01%)</title><rect x="15.2279%" y="709" width="0.0112%" height="15" fill="rgb(210,71,41)" fg:x="73517" fg:w="54"/><text x="15.4779%" y="719.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (164 samples, 0.03%)</title><rect x="15.2391%" y="725" width="0.0340%" height="15" fill="rgb(206,173,20)" fg:x="73571" fg:w="164"/><text x="15.4891%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (662 samples, 0.14%)</title><rect x="15.1470%" y="741" width="0.1371%" height="15" fill="rgb(233,88,34)" fg:x="73126" fg:w="662"/><text x="15.3970%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,482 samples, 0.31%)</title><rect x="14.9783%" y="757" width="0.3070%" height="15" fill="rgb(223,209,46)" fg:x="72312" fg:w="1482"/><text x="15.2283%" y="767.50"></text></g><g><title>LoadNode::Ideal (79 samples, 0.02%)</title><rect x="15.3709%" y="725" width="0.0164%" height="15" fill="rgb(250,43,18)" fg:x="74207" fg:w="79"/><text x="15.6209%" y="735.50"></text></g><g><title>NodeHash::hash_find_insert (110 samples, 0.02%)</title><rect x="15.3961%" y="725" width="0.0228%" height="15" fill="rgb(208,13,10)" fg:x="74329" fg:w="110"/><text x="15.6461%" y="735.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (61 samples, 0.01%)</title><rect x="15.4193%" y="725" width="0.0126%" height="15" fill="rgb(212,200,36)" fg:x="74441" fg:w="61"/><text x="15.6693%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (82 samples, 0.02%)</title><rect x="15.4320%" y="725" width="0.0170%" height="15" fill="rgb(225,90,30)" fg:x="74502" fg:w="82"/><text x="15.6820%" y="735.50"></text></g><g><title>RegionNode::is_unreachable_region (111 samples, 0.02%)</title><rect x="15.4881%" y="709" width="0.0230%" height="15" fill="rgb(236,182,39)" fg:x="74773" fg:w="111"/><text x="15.7381%" y="719.50"></text></g><g><title>RegionNode::Ideal (193 samples, 0.04%)</title><rect x="15.4713%" y="725" width="0.0400%" height="15" fill="rgb(212,144,35)" fg:x="74692" fg:w="193"/><text x="15.7213%" y="735.50"></text></g><g><title>PhaseIterGVN::transform_old (1,139 samples, 0.24%)</title><rect x="15.2955%" y="741" width="0.2359%" height="15" fill="rgb(228,63,44)" fg:x="73843" fg:w="1139"/><text x="15.5455%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (1,195 samples, 0.25%)</title><rect x="15.2855%" y="757" width="0.2475%" height="15" fill="rgb(228,109,6)" fg:x="73795" fg:w="1195"/><text x="15.5355%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (15,634 samples, 3.24%)</title><rect x="12.3196%" y="773" width="3.2383%" height="15" fill="rgb(238,117,24)" fg:x="59476" fg:w="15634"/><text x="12.5696%" y="783.50">Pha..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (59 samples, 0.01%)</title><rect x="15.5708%" y="757" width="0.0122%" height="15" fill="rgb(242,26,26)" fg:x="75172" fg:w="59"/><text x="15.8208%" y="767.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (122 samples, 0.03%)</title><rect x="15.5581%" y="773" width="0.0253%" height="15" fill="rgb(221,92,48)" fg:x="75111" fg:w="122"/><text x="15.8081%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (75 samples, 0.02%)</title><rect x="15.6774%" y="709" width="0.0155%" height="15" fill="rgb(209,209,32)" fg:x="75687" fg:w="75"/><text x="15.9274%" y="719.50"></text></g><g><title>Unique_Node_List::remove (66 samples, 0.01%)</title><rect x="15.6793%" y="693" width="0.0137%" height="15" fill="rgb(221,70,22)" fg:x="75696" fg:w="66"/><text x="15.9293%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (81 samples, 0.02%)</title><rect x="15.6764%" y="725" width="0.0168%" height="15" fill="rgb(248,145,5)" fg:x="75682" fg:w="81"/><text x="15.9264%" y="735.50"></text></g><g><title>IfNode::Ideal (258 samples, 0.05%)</title><rect x="15.6540%" y="741" width="0.0534%" height="15" fill="rgb(226,116,26)" fg:x="75574" fg:w="258"/><text x="15.9040%" y="751.50"></text></g><g><title>split_if (61 samples, 0.01%)</title><rect x="15.6948%" y="725" width="0.0126%" height="15" fill="rgb(244,5,17)" fg:x="75771" fg:w="61"/><text x="15.9448%" y="735.50"></text></g><g><title>MemNode::Ideal_common (52 samples, 0.01%)</title><rect x="15.7182%" y="725" width="0.0108%" height="15" fill="rgb(252,159,33)" fg:x="75884" fg:w="52"/><text x="15.9682%" y="735.50"></text></g><g><title>Node::dominates (52 samples, 0.01%)</title><rect x="15.7311%" y="693" width="0.0108%" height="15" fill="rgb(206,71,0)" fg:x="75946" fg:w="52"/><text x="15.9811%" y="703.50"></text></g><g><title>MemNode::all_controls_dominate (53 samples, 0.01%)</title><rect x="15.7311%" y="709" width="0.0110%" height="15" fill="rgb(233,118,54)" fg:x="75946" fg:w="53"/><text x="15.9811%" y="719.50"></text></g><g><title>LoadNode::Ideal (153 samples, 0.03%)</title><rect x="15.7145%" y="741" width="0.0317%" height="15" fill="rgb(234,83,48)" fg:x="75866" fg:w="153"/><text x="15.9645%" y="751.50"></text></g><g><title>MemNode::find_previous_store (79 samples, 0.02%)</title><rect x="15.7298%" y="725" width="0.0164%" height="15" fill="rgb(228,3,54)" fg:x="75940" fg:w="79"/><text x="15.9798%" y="735.50"></text></g><g><title>NodeHash::grow (55 samples, 0.01%)</title><rect x="15.8021%" y="725" width="0.0114%" height="15" fill="rgb(226,155,13)" fg:x="76289" fg:w="55"/><text x="16.0521%" y="735.50"></text></g><g><title>NodeHash::hash_find_insert (185 samples, 0.04%)</title><rect x="15.7775%" y="741" width="0.0383%" height="15" fill="rgb(241,28,37)" fg:x="76170" fg:w="185"/><text x="16.0275%" y="751.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (57 samples, 0.01%)</title><rect x="15.8158%" y="741" width="0.0118%" height="15" fill="rgb(233,93,10)" fg:x="76355" fg:w="57"/><text x="16.0658%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (93 samples, 0.02%)</title><rect x="15.8502%" y="725" width="0.0193%" height="15" fill="rgb(225,113,19)" fg:x="76521" fg:w="93"/><text x="16.1002%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (227 samples, 0.05%)</title><rect x="15.8276%" y="741" width="0.0470%" height="15" fill="rgb(241,2,18)" fg:x="76412" fg:w="227"/><text x="16.0776%" y="751.50"></text></g><g><title>PhiNode::Ideal (145 samples, 0.03%)</title><rect x="15.8759%" y="741" width="0.0300%" height="15" fill="rgb(228,207,21)" fg:x="76645" fg:w="145"/><text x="16.1259%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (113 samples, 0.02%)</title><rect x="15.9484%" y="709" width="0.0234%" height="15" fill="rgb(213,211,35)" fg:x="76995" fg:w="113"/><text x="16.1984%" y="719.50"></text></g><g><title>Unique_Node_List::remove (100 samples, 0.02%)</title><rect x="15.9510%" y="693" width="0.0207%" height="15" fill="rgb(209,83,10)" fg:x="77008" fg:w="100"/><text x="16.2010%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (130 samples, 0.03%)</title><rect x="15.9461%" y="725" width="0.0269%" height="15" fill="rgb(209,164,1)" fg:x="76984" fg:w="130"/><text x="16.1961%" y="735.50"></text></g><g><title>RegionNode::is_unreachable_region (97 samples, 0.02%)</title><rect x="15.9782%" y="725" width="0.0201%" height="15" fill="rgb(213,184,43)" fg:x="77139" fg:w="97"/><text x="16.2282%" y="735.50"></text></g><g><title>RegionNode::Ideal (343 samples, 0.07%)</title><rect x="15.9283%" y="741" width="0.0710%" height="15" fill="rgb(231,61,34)" fg:x="76898" fg:w="343"/><text x="16.1783%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (53 samples, 0.01%)</title><rect x="16.0037%" y="437" width="0.0110%" height="15" fill="rgb(235,75,3)" fg:x="77262" fg:w="53"/><text x="16.2537%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (68 samples, 0.01%)</title><rect x="16.0037%" y="453" width="0.0141%" height="15" fill="rgb(220,106,47)" fg:x="77262" fg:w="68"/><text x="16.2537%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (81 samples, 0.02%)</title><rect x="16.0037%" y="469" width="0.0168%" height="15" fill="rgb(210,196,33)" fg:x="77262" fg:w="81"/><text x="16.2537%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (101 samples, 0.02%)</title><rect x="16.0037%" y="485" width="0.0209%" height="15" fill="rgb(229,154,42)" fg:x="77262" fg:w="101"/><text x="16.2537%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (125 samples, 0.03%)</title><rect x="16.0037%" y="501" width="0.0259%" height="15" fill="rgb(228,114,26)" fg:x="77262" fg:w="125"/><text x="16.2537%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (147 samples, 0.03%)</title><rect x="16.0037%" y="517" width="0.0304%" height="15" fill="rgb(208,144,1)" fg:x="77262" fg:w="147"/><text x="16.2537%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (160 samples, 0.03%)</title><rect x="16.0037%" y="533" width="0.0331%" height="15" fill="rgb(239,112,37)" fg:x="77262" fg:w="160"/><text x="16.2537%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (166 samples, 0.03%)</title><rect x="16.0037%" y="549" width="0.0344%" height="15" fill="rgb(210,96,50)" fg:x="77262" fg:w="166"/><text x="16.2537%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (190 samples, 0.04%)</title><rect x="16.0037%" y="565" width="0.0394%" height="15" fill="rgb(222,178,2)" fg:x="77262" fg:w="190"/><text x="16.2537%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (210 samples, 0.04%)</title><rect x="16.0037%" y="581" width="0.0435%" height="15" fill="rgb(226,74,18)" fg:x="77262" fg:w="210"/><text x="16.2537%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (222 samples, 0.05%)</title><rect x="16.0037%" y="597" width="0.0460%" height="15" fill="rgb(225,67,54)" fg:x="77262" fg:w="222"/><text x="16.2537%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (236 samples, 0.05%)</title><rect x="16.0037%" y="613" width="0.0489%" height="15" fill="rgb(251,92,32)" fg:x="77262" fg:w="236"/><text x="16.2537%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (252 samples, 0.05%)</title><rect x="16.0035%" y="629" width="0.0522%" height="15" fill="rgb(228,149,22)" fg:x="77261" fg:w="252"/><text x="16.2535%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (270 samples, 0.06%)</title><rect x="16.0035%" y="645" width="0.0559%" height="15" fill="rgb(243,54,13)" fg:x="77261" fg:w="270"/><text x="16.2535%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (287 samples, 0.06%)</title><rect x="16.0032%" y="661" width="0.0594%" height="15" fill="rgb(243,180,28)" fg:x="77260" fg:w="287"/><text x="16.2532%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (323 samples, 0.07%)</title><rect x="16.0032%" y="677" width="0.0669%" height="15" fill="rgb(208,167,24)" fg:x="77260" fg:w="323"/><text x="16.2532%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (357 samples, 0.07%)</title><rect x="16.0026%" y="725" width="0.0739%" height="15" fill="rgb(245,73,45)" fg:x="77257" fg:w="357"/><text x="16.2526%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (356 samples, 0.07%)</title><rect x="16.0028%" y="709" width="0.0737%" height="15" fill="rgb(237,203,48)" fg:x="77258" fg:w="356"/><text x="16.2528%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (355 samples, 0.07%)</title><rect x="16.0030%" y="693" width="0.0735%" height="15" fill="rgb(211,197,16)" fg:x="77259" fg:w="355"/><text x="16.2530%" y="703.50"></text></g><g><title>StoreNode::Ideal (393 samples, 0.08%)</title><rect x="16.0024%" y="741" width="0.0814%" height="15" fill="rgb(243,99,51)" fg:x="77256" fg:w="393"/><text x="16.2524%" y="751.50"></text></g><g><title>PhaseIterGVN::transform_old (2,389 samples, 0.49%)</title><rect x="15.5968%" y="757" width="0.4948%" height="15" fill="rgb(215,123,29)" fg:x="75298" fg:w="2389"/><text x="15.8468%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (2,470 samples, 0.51%)</title><rect x="15.5834%" y="773" width="0.5116%" height="15" fill="rgb(239,186,37)" fg:x="75233" fg:w="2470"/><text x="15.8334%" y="783.50"></text></g><g><title>PhaseIterGVN::transform_old (232 samples, 0.05%)</title><rect x="16.1064%" y="741" width="0.0481%" height="15" fill="rgb(252,136,39)" fg:x="77758" fg:w="232"/><text x="16.3564%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (248 samples, 0.05%)</title><rect x="16.1043%" y="757" width="0.0514%" height="15" fill="rgb(223,213,32)" fg:x="77748" fg:w="248"/><text x="16.3543%" y="767.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (74 samples, 0.02%)</title><rect x="16.1567%" y="757" width="0.0153%" height="15" fill="rgb(233,115,5)" fg:x="78001" fg:w="74"/><text x="16.4067%" y="767.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (368 samples, 0.08%)</title><rect x="16.1021%" y="773" width="0.0762%" height="15" fill="rgb(207,226,44)" fg:x="77737" fg:w="368"/><text x="16.3521%" y="783.50"></text></g><g><title>Compile::identify_useful_nodes (67 samples, 0.01%)</title><rect x="16.1847%" y="741" width="0.0139%" height="15" fill="rgb(208,126,0)" fg:x="78136" fg:w="67"/><text x="16.4347%" y="751.50"></text></g><g><title>Compile::remove_useless_nodes (50 samples, 0.01%)</title><rect x="16.1986%" y="741" width="0.0104%" height="15" fill="rgb(244,66,21)" fg:x="78203" fg:w="50"/><text x="16.4486%" y="751.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (157 samples, 0.03%)</title><rect x="16.1783%" y="773" width="0.0325%" height="15" fill="rgb(222,97,12)" fg:x="78105" fg:w="157"/><text x="16.4283%" y="783.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (143 samples, 0.03%)</title><rect x="16.1812%" y="757" width="0.0296%" height="15" fill="rgb(219,213,19)" fg:x="78119" fg:w="143"/><text x="16.4312%" y="767.50"></text></g><g><title>Compile::Optimize (20,820 samples, 4.31%)</title><rect x="11.8993%" y="789" width="4.3126%" height="15" fill="rgb(252,169,30)" fg:x="57447" fg:w="20820"/><text x="12.1493%" y="799.50">Compi..</text></g><g><title>Parse::do_one_block (152 samples, 0.03%)</title><rect x="16.2154%" y="677" width="0.0315%" height="15" fill="rgb(206,32,51)" fg:x="78284" fg:w="152"/><text x="16.4654%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (140 samples, 0.03%)</title><rect x="16.2178%" y="661" width="0.0290%" height="15" fill="rgb(250,172,42)" fg:x="78296" fg:w="140"/><text x="16.4678%" y="671.50"></text></g><g><title>Parse::do_all_blocks (157 samples, 0.03%)</title><rect x="16.2149%" y="693" width="0.0325%" height="15" fill="rgb(209,34,43)" fg:x="78282" fg:w="157"/><text x="16.4649%" y="703.50"></text></g><g><title>ParseGenerator::generate (169 samples, 0.04%)</title><rect x="16.2149%" y="725" width="0.0350%" height="15" fill="rgb(223,11,35)" fg:x="78282" fg:w="169"/><text x="16.4649%" y="735.50"></text></g><g><title>Parse::Parse (169 samples, 0.04%)</title><rect x="16.2149%" y="709" width="0.0350%" height="15" fill="rgb(251,219,26)" fg:x="78282" fg:w="169"/><text x="16.4649%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (190 samples, 0.04%)</title><rect x="16.2122%" y="789" width="0.0394%" height="15" fill="rgb(231,119,3)" fg:x="78269" fg:w="190"/><text x="16.4622%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (190 samples, 0.04%)</title><rect x="16.2122%" y="773" width="0.0394%" height="15" fill="rgb(216,97,11)" fg:x="78269" fg:w="190"/><text x="16.4622%" y="783.50"></text></g><g><title>C2Compiler::compile_method (190 samples, 0.04%)</title><rect x="16.2122%" y="757" width="0.0394%" height="15" fill="rgb(223,59,9)" fg:x="78269" fg:w="190"/><text x="16.4622%" y="767.50"></text></g><g><title>Compile::Compile (190 samples, 0.04%)</title><rect x="16.2122%" y="741" width="0.0394%" height="15" fill="rgb(233,93,31)" fg:x="78269" fg:w="190"/><text x="16.4622%" y="751.50"></text></g><g><title>ciTypeFlow::df_flow_types (68 samples, 0.01%)</title><rect x="16.2516%" y="661" width="0.0141%" height="15" fill="rgb(239,81,33)" fg:x="78459" fg:w="68"/><text x="16.5016%" y="671.50"></text></g><g><title>ciTypeFlow::flow_block (68 samples, 0.01%)</title><rect x="16.2516%" y="645" width="0.0141%" height="15" fill="rgb(213,120,34)" fg:x="78459" fg:w="68"/><text x="16.5016%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (68 samples, 0.01%)</title><rect x="16.2516%" y="629" width="0.0141%" height="15" fill="rgb(243,49,53)" fg:x="78459" fg:w="68"/><text x="16.5016%" y="639.50"></text></g><g><title>CallGenerator::for_inline (69 samples, 0.01%)</title><rect x="16.2516%" y="741" width="0.0143%" height="15" fill="rgb(247,216,33)" fg:x="78459" fg:w="69"/><text x="16.5016%" y="751.50"></text></g><g><title>InlineTree::check_can_parse (69 samples, 0.01%)</title><rect x="16.2516%" y="725" width="0.0143%" height="15" fill="rgb(226,26,14)" fg:x="78459" fg:w="69"/><text x="16.5016%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (69 samples, 0.01%)</title><rect x="16.2516%" y="709" width="0.0143%" height="15" fill="rgb(215,49,53)" fg:x="78459" fg:w="69"/><text x="16.5016%" y="719.50"></text></g><g><title>ciTypeFlow::do_flow (69 samples, 0.01%)</title><rect x="16.2516%" y="693" width="0.0143%" height="15" fill="rgb(245,162,40)" fg:x="78459" fg:w="69"/><text x="16.5016%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (69 samples, 0.01%)</title><rect x="16.2516%" y="677" width="0.0143%" height="15" fill="rgb(229,68,17)" fg:x="78459" fg:w="69"/><text x="16.5016%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (65 samples, 0.01%)</title><rect x="16.2794%" y="629" width="0.0135%" height="15" fill="rgb(213,182,10)" fg:x="78593" fg:w="65"/><text x="16.5294%" y="639.50"></text></g><g><title>Compile::call_generator (86 samples, 0.02%)</title><rect x="16.2777%" y="645" width="0.0178%" height="15" fill="rgb(245,125,30)" fg:x="78585" fg:w="86"/><text x="16.5277%" y="655.50"></text></g><g><title>Parse::do_one_block (113 samples, 0.02%)</title><rect x="16.3187%" y="597" width="0.0234%" height="15" fill="rgb(232,202,2)" fg:x="78783" fg:w="113"/><text x="16.5687%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (105 samples, 0.02%)</title><rect x="16.3204%" y="581" width="0.0217%" height="15" fill="rgb(237,140,51)" fg:x="78791" fg:w="105"/><text x="16.5704%" y="591.50"></text></g><g><title>Parse::do_all_blocks (124 samples, 0.03%)</title><rect x="16.3179%" y="613" width="0.0257%" height="15" fill="rgb(236,157,25)" fg:x="78779" fg:w="124"/><text x="16.5679%" y="623.50"></text></g><g><title>ParseGenerator::generate (208 samples, 0.04%)</title><rect x="16.3071%" y="645" width="0.0431%" height="15" fill="rgb(219,209,0)" fg:x="78727" fg:w="208"/><text x="16.5571%" y="655.50"></text></g><g><title>Parse::Parse (207 samples, 0.04%)</title><rect x="16.3073%" y="629" width="0.0429%" height="15" fill="rgb(240,116,54)" fg:x="78728" fg:w="207"/><text x="16.5573%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (80 samples, 0.02%)</title><rect x="16.3502%" y="645" width="0.0166%" height="15" fill="rgb(216,10,36)" fg:x="78935" fg:w="80"/><text x="16.6002%" y="655.50"></text></g><g><title>Parse::do_call (453 samples, 0.09%)</title><rect x="16.2777%" y="661" width="0.0938%" height="15" fill="rgb(222,72,44)" fg:x="78585" fg:w="453"/><text x="16.5277%" y="671.50"></text></g><g><title>Parse::do_field_access (80 samples, 0.02%)</title><rect x="16.3753%" y="661" width="0.0166%" height="15" fill="rgb(232,159,9)" fg:x="79056" fg:w="80"/><text x="16.6253%" y="671.50"></text></g><g><title>Parse::do_all_blocks (635 samples, 0.13%)</title><rect x="16.2700%" y="709" width="0.1315%" height="15" fill="rgb(210,39,32)" fg:x="78548" fg:w="635"/><text x="16.5200%" y="719.50"></text></g><g><title>Parse::do_one_block (634 samples, 0.13%)</title><rect x="16.2702%" y="693" width="0.1313%" height="15" fill="rgb(216,194,45)" fg:x="78549" fg:w="634"/><text x="16.5202%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (628 samples, 0.13%)</title><rect x="16.2715%" y="677" width="0.1301%" height="15" fill="rgb(218,18,35)" fg:x="78555" fg:w="628"/><text x="16.5215%" y="687.50"></text></g><g><title>ParseGenerator::generate (642 samples, 0.13%)</title><rect x="16.2700%" y="741" width="0.1330%" height="15" fill="rgb(207,83,51)" fg:x="78548" fg:w="642"/><text x="16.5200%" y="751.50"></text></g><g><title>Parse::Parse (642 samples, 0.13%)</title><rect x="16.2700%" y="725" width="0.1330%" height="15" fill="rgb(225,63,43)" fg:x="78548" fg:w="642"/><text x="16.5200%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (756 samples, 0.16%)</title><rect x="16.2516%" y="789" width="0.1566%" height="15" fill="rgb(207,57,36)" fg:x="78459" fg:w="756"/><text x="16.5016%" y="799.50"></text></g><g><title>C2Compiler::compile_method (756 samples, 0.16%)</title><rect x="16.2516%" y="773" width="0.1566%" height="15" fill="rgb(216,99,33)" fg:x="78459" fg:w="756"/><text x="16.5016%" y="783.50"></text></g><g><title>Compile::Compile (756 samples, 0.16%)</title><rect x="16.2516%" y="757" width="0.1566%" height="15" fill="rgb(225,42,16)" fg:x="78459" fg:w="756"/><text x="16.5016%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (57 samples, 0.01%)</title><rect x="16.4223%" y="789" width="0.0118%" height="15" fill="rgb(220,201,45)" fg:x="79283" fg:w="57"/><text x="16.6723%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (57 samples, 0.01%)</title><rect x="16.4223%" y="773" width="0.0118%" height="15" fill="rgb(225,33,4)" fg:x="79283" fg:w="57"/><text x="16.6723%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (57 samples, 0.01%)</title><rect x="16.4223%" y="757" width="0.0118%" height="15" fill="rgb(224,33,50)" fg:x="79283" fg:w="57"/><text x="16.6723%" y="767.50"></text></g><g><title>C2Compiler::compile_method (57 samples, 0.01%)</title><rect x="16.4223%" y="741" width="0.0118%" height="15" fill="rgb(246,198,51)" fg:x="79283" fg:w="57"/><text x="16.6723%" y="751.50"></text></g><g><title>Compile::Compile (57 samples, 0.01%)</title><rect x="16.4223%" y="725" width="0.0118%" height="15" fill="rgb(205,22,4)" fg:x="79283" fg:w="57"/><text x="16.6723%" y="735.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.01%)</title><rect x="16.4525%" y="485" width="0.0108%" height="15" fill="rgb(206,3,8)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="495.50"></text></g><g><title>Parse::Parse (52 samples, 0.01%)</title><rect x="16.4525%" y="469" width="0.0108%" height="15" fill="rgb(251,23,15)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="479.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="16.4525%" y="453" width="0.0108%" height="15" fill="rgb(252,88,28)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="463.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.01%)</title><rect x="16.4525%" y="437" width="0.0108%" height="15" fill="rgb(212,127,14)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="16.4525%" y="421" width="0.0108%" height="15" fill="rgb(247,145,37)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="431.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="16.4525%" y="405" width="0.0108%" height="15" fill="rgb(209,117,53)" fg:x="79429" fg:w="52"/><text x="16.7025%" y="415.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.01%)</title><rect x="16.4525%" y="581" width="0.0116%" height="15" fill="rgb(212,90,42)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="591.50"></text></g><g><title>Parse::Parse (56 samples, 0.01%)</title><rect x="16.4525%" y="565" width="0.0116%" height="15" fill="rgb(218,164,37)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="575.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.01%)</title><rect x="16.4525%" y="549" width="0.0116%" height="15" fill="rgb(246,65,34)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="559.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="16.4525%" y="533" width="0.0116%" height="15" fill="rgb(231,100,33)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (56 samples, 0.01%)</title><rect x="16.4525%" y="517" width="0.0116%" height="15" fill="rgb(228,126,14)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="527.50"></text></g><g><title>Parse::do_call (56 samples, 0.01%)</title><rect x="16.4525%" y="501" width="0.0116%" height="15" fill="rgb(215,173,21)" fg:x="79429" fg:w="56"/><text x="16.7025%" y="511.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.01%)</title><rect x="16.4525%" y="677" width="0.0135%" height="15" fill="rgb(210,6,40)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="687.50"></text></g><g><title>Parse::Parse (65 samples, 0.01%)</title><rect x="16.4525%" y="661" width="0.0135%" height="15" fill="rgb(212,48,18)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="671.50"></text></g><g><title>Parse::do_all_blocks (65 samples, 0.01%)</title><rect x="16.4525%" y="645" width="0.0135%" height="15" fill="rgb(230,214,11)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="655.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.01%)</title><rect x="16.4525%" y="629" width="0.0135%" height="15" fill="rgb(254,105,39)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.01%)</title><rect x="16.4525%" y="613" width="0.0135%" height="15" fill="rgb(245,158,5)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="623.50"></text></g><g><title>Parse::do_call (65 samples, 0.01%)</title><rect x="16.4525%" y="597" width="0.0135%" height="15" fill="rgb(249,208,11)" fg:x="79429" fg:w="65"/><text x="16.7025%" y="607.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.02%)</title><rect x="16.4525%" y="773" width="0.0153%" height="15" fill="rgb(210,39,28)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="783.50"></text></g><g><title>Parse::Parse (74 samples, 0.02%)</title><rect x="16.4525%" y="757" width="0.0153%" height="15" fill="rgb(211,56,53)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="767.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.02%)</title><rect x="16.4525%" y="741" width="0.0153%" height="15" fill="rgb(226,201,30)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="751.50"></text></g><g><title>Parse::do_one_block (74 samples, 0.02%)</title><rect x="16.4525%" y="725" width="0.0153%" height="15" fill="rgb(239,101,34)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (74 samples, 0.02%)</title><rect x="16.4525%" y="709" width="0.0153%" height="15" fill="rgb(226,209,5)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="719.50"></text></g><g><title>Parse::do_call (74 samples, 0.02%)</title><rect x="16.4525%" y="693" width="0.0153%" height="15" fill="rgb(250,105,47)" fg:x="79429" fg:w="74"/><text x="16.7025%" y="703.50"></text></g><g><title>Parse::do_call (78 samples, 0.02%)</title><rect x="16.4525%" y="789" width="0.0162%" height="15" fill="rgb(230,72,3)" fg:x="79429" fg:w="78"/><text x="16.7025%" y="799.50"></text></g><g><title>Parse::do_call (49 samples, 0.01%)</title><rect x="16.4908%" y="37" width="0.0101%" height="15" fill="rgb(232,218,39)" fg:x="79614" fg:w="49"/><text x="16.7408%" y="47.50"></text></g><g><title>ParseGenerator::generate (76 samples, 0.02%)</title><rect x="16.4898%" y="117" width="0.0157%" height="15" fill="rgb(248,166,6)" fg:x="79609" fg:w="76"/><text x="16.7398%" y="127.50"></text></g><g><title>Parse::Parse (76 samples, 0.02%)</title><rect x="16.4898%" y="101" width="0.0157%" height="15" fill="rgb(247,89,20)" fg:x="79609" fg:w="76"/><text x="16.7398%" y="111.50"></text></g><g><title>Parse::do_all_blocks (76 samples, 0.02%)</title><rect x="16.4898%" y="85" width="0.0157%" height="15" fill="rgb(248,130,54)" fg:x="79609" fg:w="76"/><text x="16.7398%" y="95.50"></text></g><g><title>Parse::do_one_block (76 samples, 0.02%)</title><rect x="16.4898%" y="69" width="0.0157%" height="15" fill="rgb(234,196,4)" fg:x="79609" fg:w="76"/><text x="16.7398%" y="79.50"></text></g><g><title>Parse::do_one_bytecode (76 samples, 0.02%)</title><rect x="16.4898%" y="53" width="0.0157%" height="15" fill="rgb(250,143,31)" fg:x="79609" fg:w="76"/><text x="16.7398%" y="63.50"></text></g><g><title>Parse::do_call (87 samples, 0.02%)</title><rect x="16.4877%" y="133" width="0.0180%" height="15" fill="rgb(211,110,34)" fg:x="79599" fg:w="87"/><text x="16.7377%" y="143.50"></text></g><g><title>Parse::do_all_blocks (93 samples, 0.02%)</title><rect x="16.4877%" y="181" width="0.0193%" height="15" fill="rgb(215,124,48)" fg:x="79599" fg:w="93"/><text x="16.7377%" y="191.50"></text></g><g><title>Parse::do_one_block (93 samples, 0.02%)</title><rect x="16.4877%" y="165" width="0.0193%" height="15" fill="rgb(216,46,13)" fg:x="79599" fg:w="93"/><text x="16.7377%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.02%)</title><rect x="16.4877%" y="149" width="0.0193%" height="15" fill="rgb(205,184,25)" fg:x="79599" fg:w="93"/><text x="16.7377%" y="159.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.02%)</title><rect x="16.4877%" y="213" width="0.0195%" height="15" fill="rgb(228,1,10)" fg:x="79599" fg:w="94"/><text x="16.7377%" y="223.50"></text></g><g><title>Parse::Parse (94 samples, 0.02%)</title><rect x="16.4877%" y="197" width="0.0195%" height="15" fill="rgb(213,116,27)" fg:x="79599" fg:w="94"/><text x="16.7377%" y="207.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.02%)</title><rect x="16.4859%" y="309" width="0.0228%" height="15" fill="rgb(241,95,50)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="319.50"></text></g><g><title>Parse::Parse (110 samples, 0.02%)</title><rect x="16.4859%" y="293" width="0.0228%" height="15" fill="rgb(238,48,32)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="303.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.02%)</title><rect x="16.4859%" y="277" width="0.0228%" height="15" fill="rgb(235,113,49)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="287.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.02%)</title><rect x="16.4859%" y="261" width="0.0228%" height="15" fill="rgb(205,127,43)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (110 samples, 0.02%)</title><rect x="16.4859%" y="245" width="0.0228%" height="15" fill="rgb(250,162,2)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="255.50"></text></g><g><title>Parse::do_call (110 samples, 0.02%)</title><rect x="16.4859%" y="229" width="0.0228%" height="15" fill="rgb(220,13,41)" fg:x="79590" fg:w="110"/><text x="16.7359%" y="239.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.02%)</title><rect x="16.4857%" y="405" width="0.0249%" height="15" fill="rgb(249,221,25)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="415.50"></text></g><g><title>Parse::Parse (120 samples, 0.02%)</title><rect x="16.4857%" y="389" width="0.0249%" height="15" fill="rgb(215,208,19)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="399.50"></text></g><g><title>Parse::do_all_blocks (120 samples, 0.02%)</title><rect x="16.4857%" y="373" width="0.0249%" height="15" fill="rgb(236,175,2)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="383.50"></text></g><g><title>Parse::do_one_block (120 samples, 0.02%)</title><rect x="16.4857%" y="357" width="0.0249%" height="15" fill="rgb(241,52,2)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (120 samples, 0.02%)</title><rect x="16.4857%" y="341" width="0.0249%" height="15" fill="rgb(248,140,14)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="351.50"></text></g><g><title>Parse::do_call (120 samples, 0.02%)</title><rect x="16.4857%" y="325" width="0.0249%" height="15" fill="rgb(253,22,42)" fg:x="79589" fg:w="120"/><text x="16.7357%" y="335.50"></text></g><g><title>ParseGenerator::generate (133 samples, 0.03%)</title><rect x="16.4857%" y="501" width="0.0275%" height="15" fill="rgb(234,61,47)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="511.50"></text></g><g><title>Parse::Parse (133 samples, 0.03%)</title><rect x="16.4857%" y="485" width="0.0275%" height="15" fill="rgb(208,226,15)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="495.50"></text></g><g><title>Parse::do_all_blocks (133 samples, 0.03%)</title><rect x="16.4857%" y="469" width="0.0275%" height="15" fill="rgb(217,221,4)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="479.50"></text></g><g><title>Parse::do_one_block (133 samples, 0.03%)</title><rect x="16.4857%" y="453" width="0.0275%" height="15" fill="rgb(212,174,34)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (133 samples, 0.03%)</title><rect x="16.4857%" y="437" width="0.0275%" height="15" fill="rgb(253,83,4)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="447.50"></text></g><g><title>Parse::do_call (133 samples, 0.03%)</title><rect x="16.4857%" y="421" width="0.0275%" height="15" fill="rgb(250,195,49)" fg:x="79589" fg:w="133"/><text x="16.7357%" y="431.50"></text></g><g><title>ParseGenerator::generate (145 samples, 0.03%)</title><rect x="16.4857%" y="597" width="0.0300%" height="15" fill="rgb(241,192,25)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="607.50"></text></g><g><title>Parse::Parse (145 samples, 0.03%)</title><rect x="16.4857%" y="581" width="0.0300%" height="15" fill="rgb(208,124,10)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="591.50"></text></g><g><title>Parse::do_all_blocks (145 samples, 0.03%)</title><rect x="16.4857%" y="565" width="0.0300%" height="15" fill="rgb(222,33,0)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="575.50"></text></g><g><title>Parse::do_one_block (145 samples, 0.03%)</title><rect x="16.4857%" y="549" width="0.0300%" height="15" fill="rgb(234,209,28)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (145 samples, 0.03%)</title><rect x="16.4857%" y="533" width="0.0300%" height="15" fill="rgb(224,11,23)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="543.50"></text></g><g><title>Parse::do_call (145 samples, 0.03%)</title><rect x="16.4857%" y="517" width="0.0300%" height="15" fill="rgb(232,99,1)" fg:x="79589" fg:w="145"/><text x="16.7357%" y="527.50"></text></g><g><title>ParseGenerator::generate (165 samples, 0.03%)</title><rect x="16.4857%" y="693" width="0.0342%" height="15" fill="rgb(237,95,45)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="703.50"></text></g><g><title>Parse::Parse (165 samples, 0.03%)</title><rect x="16.4857%" y="677" width="0.0342%" height="15" fill="rgb(208,109,11)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="687.50"></text></g><g><title>Parse::do_all_blocks (165 samples, 0.03%)</title><rect x="16.4857%" y="661" width="0.0342%" height="15" fill="rgb(216,190,48)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="671.50"></text></g><g><title>Parse::do_one_block (165 samples, 0.03%)</title><rect x="16.4857%" y="645" width="0.0342%" height="15" fill="rgb(251,171,36)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (165 samples, 0.03%)</title><rect x="16.4857%" y="629" width="0.0342%" height="15" fill="rgb(230,62,22)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="639.50"></text></g><g><title>Parse::do_call (165 samples, 0.03%)</title><rect x="16.4857%" y="613" width="0.0342%" height="15" fill="rgb(225,114,35)" fg:x="79589" fg:w="165"/><text x="16.7357%" y="623.50"></text></g><g><title>ParseGenerator::generate (191 samples, 0.04%)</title><rect x="16.4857%" y="789" width="0.0396%" height="15" fill="rgb(215,118,42)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="799.50"></text></g><g><title>Parse::Parse (191 samples, 0.04%)</title><rect x="16.4857%" y="773" width="0.0396%" height="15" fill="rgb(243,119,21)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="783.50"></text></g><g><title>Parse::do_all_blocks (191 samples, 0.04%)</title><rect x="16.4857%" y="757" width="0.0396%" height="15" fill="rgb(252,177,53)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="767.50"></text></g><g><title>Parse::do_one_block (191 samples, 0.04%)</title><rect x="16.4857%" y="741" width="0.0396%" height="15" fill="rgb(237,209,29)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (191 samples, 0.04%)</title><rect x="16.4857%" y="725" width="0.0396%" height="15" fill="rgb(212,65,23)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="735.50"></text></g><g><title>Parse::do_call (191 samples, 0.04%)</title><rect x="16.4857%" y="709" width="0.0396%" height="15" fill="rgb(230,222,46)" fg:x="79589" fg:w="191"/><text x="16.7357%" y="719.50"></text></g><g><title>Thread::call_run (65 samples, 0.01%)</title><rect x="16.5316%" y="789" width="0.0135%" height="15" fill="rgb(215,135,32)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (65 samples, 0.01%)</title><rect x="16.5316%" y="773" width="0.0135%" height="15" fill="rgb(246,101,22)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (65 samples, 0.01%)</title><rect x="16.5316%" y="757" width="0.0135%" height="15" fill="rgb(206,107,13)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (65 samples, 0.01%)</title><rect x="16.5316%" y="741" width="0.0135%" height="15" fill="rgb(250,100,44)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="751.50"></text></g><g><title>C2Compiler::compile_method (65 samples, 0.01%)</title><rect x="16.5316%" y="725" width="0.0135%" height="15" fill="rgb(231,147,38)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="735.50"></text></g><g><title>Compile::Compile (65 samples, 0.01%)</title><rect x="16.5316%" y="709" width="0.0135%" height="15" fill="rgb(229,8,40)" fg:x="79811" fg:w="65"/><text x="16.7816%" y="719.50"></text></g><g><title>_dl_update_slotinfo (55 samples, 0.01%)</title><rect x="16.5495%" y="789" width="0.0114%" height="15" fill="rgb(221,135,30)" fg:x="79897" fg:w="55"/><text x="16.7995%" y="799.50"></text></g><g><title>start_thread (63 samples, 0.01%)</title><rect x="16.5638%" y="789" width="0.0130%" height="15" fill="rgb(249,193,18)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="799.50"></text></g><g><title>thread_native_entry (63 samples, 0.01%)</title><rect x="16.5638%" y="773" width="0.0130%" height="15" fill="rgb(209,133,39)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="783.50"></text></g><g><title>Thread::call_run (63 samples, 0.01%)</title><rect x="16.5638%" y="757" width="0.0130%" height="15" fill="rgb(232,100,14)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (63 samples, 0.01%)</title><rect x="16.5638%" y="741" width="0.0130%" height="15" fill="rgb(224,185,1)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (63 samples, 0.01%)</title><rect x="16.5638%" y="725" width="0.0130%" height="15" fill="rgb(223,139,8)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (63 samples, 0.01%)</title><rect x="16.5638%" y="709" width="0.0130%" height="15" fill="rgb(232,213,38)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="719.50"></text></g><g><title>C2Compiler::compile_method (63 samples, 0.01%)</title><rect x="16.5638%" y="693" width="0.0130%" height="15" fill="rgb(207,94,22)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="703.50"></text></g><g><title>Compile::Compile (63 samples, 0.01%)</title><rect x="16.5638%" y="677" width="0.0130%" height="15" fill="rgb(219,183,54)" fg:x="79966" fg:w="63"/><text x="16.8138%" y="687.50"></text></g><g><title>[unknown] (63,686 samples, 13.19%)</title><rect x="3.3904%" y="805" width="13.1916%" height="15" fill="rgb(216,185,54)" fg:x="16368" fg:w="63686"/><text x="3.6404%" y="815.50">[unknown]</text></g><g><title>Dict::Insert (67 samples, 0.01%)</title><rect x="16.6039%" y="629" width="0.0139%" height="15" fill="rgb(254,217,39)" fg:x="80160" fg:w="67"/><text x="16.8539%" y="639.50"></text></g><g><title>Type::Initialize (75 samples, 0.02%)</title><rect x="16.6035%" y="645" width="0.0155%" height="15" fill="rgb(240,178,23)" fg:x="80158" fg:w="75"/><text x="16.8535%" y="655.50"></text></g><g><title>CompileWrapper::CompileWrapper (77 samples, 0.02%)</title><rect x="16.6033%" y="661" width="0.0159%" height="15" fill="rgb(218,11,47)" fg:x="80157" fg:w="77"/><text x="16.8533%" y="671.50"></text></g><g><title>Compile::identify_useful_nodes (175 samples, 0.04%)</title><rect x="16.6288%" y="645" width="0.0362%" height="15" fill="rgb(218,51,51)" fg:x="80280" fg:w="175"/><text x="16.8788%" y="655.50"></text></g><g><title>Compile::remove_useless_nodes (176 samples, 0.04%)</title><rect x="16.6650%" y="645" width="0.0365%" height="15" fill="rgb(238,126,27)" fg:x="80455" fg:w="176"/><text x="16.9150%" y="655.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (438 samples, 0.09%)</title><rect x="16.6201%" y="661" width="0.0907%" height="15" fill="rgb(249,202,22)" fg:x="80238" fg:w="438"/><text x="16.8701%" y="671.50"></text></g><g><title>C2Compiler::compile_method (660 samples, 0.14%)</title><rect x="16.5863%" y="693" width="0.1367%" height="15" fill="rgb(254,195,49)" fg:x="80075" fg:w="660"/><text x="16.8363%" y="703.50"></text></g><g><title>Compile::Compile (655 samples, 0.14%)</title><rect x="16.5874%" y="677" width="0.1357%" height="15" fill="rgb(208,123,14)" fg:x="80080" fg:w="655"/><text x="16.8374%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (791 samples, 0.16%)</title><rect x="16.5857%" y="709" width="0.1638%" height="15" fill="rgb(224,200,8)" fg:x="80072" fg:w="791"/><text x="16.8357%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.01%)</title><rect x="16.7684%" y="453" width="0.0101%" height="15" fill="rgb(217,61,36)" fg:x="80954" fg:w="49"/><text x="17.0184%" y="463.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="16.7678%" y="469" width="0.0110%" height="15" fill="rgb(206,35,45)" fg:x="80951" fg:w="53"/><text x="17.0178%" y="479.50"></text></g><g><title>futex_wait_queue_me (91 samples, 0.02%)</title><rect x="16.7630%" y="517" width="0.0188%" height="15" fill="rgb(217,65,33)" fg:x="80928" fg:w="91"/><text x="17.0130%" y="527.50"></text></g><g><title>schedule (81 samples, 0.02%)</title><rect x="16.7651%" y="501" width="0.0168%" height="15" fill="rgb(222,158,48)" fg:x="80938" fg:w="81"/><text x="17.0151%" y="511.50"></text></g><g><title>__schedule (79 samples, 0.02%)</title><rect x="16.7655%" y="485" width="0.0164%" height="15" fill="rgb(254,2,54)" fg:x="80940" fg:w="79"/><text x="17.0155%" y="495.50"></text></g><g><title>do_futex (100 samples, 0.02%)</title><rect x="16.7626%" y="549" width="0.0207%" height="15" fill="rgb(250,143,38)" fg:x="80926" fg:w="100"/><text x="17.0126%" y="559.50"></text></g><g><title>futex_wait (99 samples, 0.02%)</title><rect x="16.7628%" y="533" width="0.0205%" height="15" fill="rgb(248,25,0)" fg:x="80927" fg:w="99"/><text x="17.0128%" y="543.50"></text></g><g><title>do_syscall_64 (105 samples, 0.02%)</title><rect x="16.7620%" y="581" width="0.0217%" height="15" fill="rgb(206,152,27)" fg:x="80923" fg:w="105"/><text x="17.0120%" y="591.50"></text></g><g><title>__x64_sys_futex (104 samples, 0.02%)</title><rect x="16.7622%" y="565" width="0.0215%" height="15" fill="rgb(240,77,30)" fg:x="80924" fg:w="104"/><text x="17.0122%" y="575.50"></text></g><g><title>__pthread_cond_timedwait (118 samples, 0.02%)</title><rect x="16.7595%" y="645" width="0.0244%" height="15" fill="rgb(231,5,3)" fg:x="80911" fg:w="118"/><text x="17.0095%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (118 samples, 0.02%)</title><rect x="16.7595%" y="629" width="0.0244%" height="15" fill="rgb(207,226,32)" fg:x="80911" fg:w="118"/><text x="17.0095%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (111 samples, 0.02%)</title><rect x="16.7609%" y="613" width="0.0230%" height="15" fill="rgb(222,207,47)" fg:x="80918" fg:w="111"/><text x="17.0109%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.02%)</title><rect x="16.7618%" y="597" width="0.0222%" height="15" fill="rgb(229,115,45)" fg:x="80922" fg:w="107"/><text x="17.0118%" y="607.50"></text></g><g><title>Monitor::wait (161 samples, 0.03%)</title><rect x="16.7525%" y="693" width="0.0333%" height="15" fill="rgb(224,191,6)" fg:x="80877" fg:w="161"/><text x="17.0025%" y="703.50"></text></g><g><title>Monitor::IWait (157 samples, 0.03%)</title><rect x="16.7533%" y="677" width="0.0325%" height="15" fill="rgb(230,227,24)" fg:x="80881" fg:w="157"/><text x="17.0033%" y="687.50"></text></g><g><title>os::PlatformEvent::park (131 samples, 0.03%)</title><rect x="16.7587%" y="661" width="0.0271%" height="15" fill="rgb(228,80,19)" fg:x="80907" fg:w="131"/><text x="17.0087%" y="671.50"></text></g><g><title>CompileQueue::get (204 samples, 0.04%)</title><rect x="16.7508%" y="709" width="0.0423%" height="15" fill="rgb(247,229,0)" fg:x="80869" fg:w="204"/><text x="17.0008%" y="719.50"></text></g><g><title>__GI___clone (1,012 samples, 0.21%)</title><rect x="16.5838%" y="805" width="0.2096%" height="15" fill="rgb(237,194,15)" fg:x="80063" fg:w="1012"/><text x="16.8338%" y="815.50"></text></g><g><title>start_thread (1,012 samples, 0.21%)</title><rect x="16.5838%" y="789" width="0.2096%" height="15" fill="rgb(219,203,20)" fg:x="80063" fg:w="1012"/><text x="16.8338%" y="799.50"></text></g><g><title>thread_native_entry (1,012 samples, 0.21%)</title><rect x="16.5838%" y="773" width="0.2096%" height="15" fill="rgb(234,128,8)" fg:x="80063" fg:w="1012"/><text x="16.8338%" y="783.50"></text></g><g><title>Thread::call_run (1,005 samples, 0.21%)</title><rect x="16.5853%" y="757" width="0.2082%" height="15" fill="rgb(248,202,8)" fg:x="80070" fg:w="1005"/><text x="16.8353%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (1,004 samples, 0.21%)</title><rect x="16.5855%" y="741" width="0.2080%" height="15" fill="rgb(206,104,37)" fg:x="80071" fg:w="1004"/><text x="16.8355%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,004 samples, 0.21%)</title><rect x="16.5855%" y="725" width="0.2080%" height="15" fill="rgb(223,8,27)" fg:x="80071" fg:w="1004"/><text x="16.8355%" y="735.50"></text></g><g><title>asm_exc_page_fault (49 samples, 0.01%)</title><rect x="16.7957%" y="805" width="0.0101%" height="15" fill="rgb(216,217,28)" fg:x="81086" fg:w="49"/><text x="17.0457%" y="815.50"></text></g><g><title>C2_CompilerThre (68,423 samples, 14.17%)</title><rect x="2.6441%" y="821" width="14.1728%" height="15" fill="rgb(249,199,1)" fg:x="12765" fg:w="68423"/><text x="2.8941%" y="831.50">C2_CompilerThre</text></g><g><title>[perf-987172.map] (56 samples, 0.01%)</title><rect x="16.8173%" y="805" width="0.0116%" height="15" fill="rgb(240,85,17)" fg:x="81190" fg:w="56"/><text x="17.0673%" y="815.50"></text></g><g><title>Command-Accumul (71 samples, 0.01%)</title><rect x="16.8169%" y="821" width="0.0147%" height="15" fill="rgb(206,108,45)" fg:x="81188" fg:w="71"/><text x="17.0669%" y="831.50"></text></g><g><title>update_curr (52 samples, 0.01%)</title><rect x="17.3467%" y="549" width="0.0108%" height="15" fill="rgb(245,210,41)" fg:x="83746" fg:w="52"/><text x="17.5967%" y="559.50"></text></g><g><title>dequeue_entity (132 samples, 0.03%)</title><rect x="17.3360%" y="565" width="0.0273%" height="15" fill="rgb(206,13,37)" fg:x="83694" fg:w="132"/><text x="17.5860%" y="575.50"></text></g><g><title>dequeue_task_fair (151 samples, 0.03%)</title><rect x="17.3331%" y="581" width="0.0313%" height="15" fill="rgb(250,61,18)" fg:x="83680" fg:w="151"/><text x="17.5831%" y="591.50"></text></g><g><title>finish_task_switch (50 samples, 0.01%)</title><rect x="17.3643%" y="581" width="0.0104%" height="15" fill="rgb(235,172,48)" fg:x="83831" fg:w="50"/><text x="17.6143%" y="591.50"></text></g><g><title>psi_task_change (132 samples, 0.03%)</title><rect x="17.3840%" y="581" width="0.0273%" height="15" fill="rgb(249,201,17)" fg:x="83926" fg:w="132"/><text x="17.6340%" y="591.50"></text></g><g><title>psi_group_change (105 samples, 0.02%)</title><rect x="17.3896%" y="565" width="0.0217%" height="15" fill="rgb(219,208,6)" fg:x="83953" fg:w="105"/><text x="17.6396%" y="575.50"></text></g><g><title>futex_wait_queue_me (551 samples, 0.11%)</title><rect x="17.3016%" y="629" width="0.1141%" height="15" fill="rgb(248,31,23)" fg:x="83528" fg:w="551"/><text x="17.5516%" y="639.50"></text></g><g><title>schedule (482 samples, 0.10%)</title><rect x="17.3159%" y="613" width="0.0998%" height="15" fill="rgb(245,15,42)" fg:x="83597" fg:w="482"/><text x="17.5659%" y="623.50"></text></g><g><title>__schedule (465 samples, 0.10%)</title><rect x="17.3194%" y="597" width="0.0963%" height="15" fill="rgb(222,217,39)" fg:x="83614" fg:w="465"/><text x="17.5694%" y="607.50"></text></g><g><title>futex_wait_setup (50 samples, 0.01%)</title><rect x="17.4157%" y="629" width="0.0104%" height="15" fill="rgb(210,219,27)" fg:x="84079" fg:w="50"/><text x="17.6657%" y="639.50"></text></g><g><title>do_futex (678 samples, 0.14%)</title><rect x="17.2937%" y="661" width="0.1404%" height="15" fill="rgb(252,166,36)" fg:x="83490" fg:w="678"/><text x="17.5437%" y="671.50"></text></g><g><title>futex_wait (669 samples, 0.14%)</title><rect x="17.2956%" y="645" width="0.1386%" height="15" fill="rgb(245,132,34)" fg:x="83499" fg:w="669"/><text x="17.5456%" y="655.50"></text></g><g><title>__x64_sys_futex (704 samples, 0.15%)</title><rect x="17.2916%" y="677" width="0.1458%" height="15" fill="rgb(236,54,3)" fg:x="83480" fg:w="704"/><text x="17.5416%" y="687.50"></text></g><g><title>do_syscall_64 (710 samples, 0.15%)</title><rect x="17.2910%" y="693" width="0.1471%" height="15" fill="rgb(241,173,43)" fg:x="83477" fg:w="710"/><text x="17.5410%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (746 samples, 0.15%)</title><rect x="17.2883%" y="709" width="0.1545%" height="15" fill="rgb(215,190,9)" fg:x="83464" fg:w="746"/><text x="17.5383%" y="719.50"></text></g><g><title>__pthread_cond_timedwait (856 samples, 0.18%)</title><rect x="17.2674%" y="757" width="0.1773%" height="15" fill="rgb(242,101,16)" fg:x="83363" fg:w="856"/><text x="17.5174%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (855 samples, 0.18%)</title><rect x="17.2676%" y="741" width="0.1771%" height="15" fill="rgb(223,190,21)" fg:x="83364" fg:w="855"/><text x="17.5176%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (802 samples, 0.17%)</title><rect x="17.2786%" y="725" width="0.1661%" height="15" fill="rgb(215,228,25)" fg:x="83417" fg:w="802"/><text x="17.5286%" y="735.50"></text></g><g><title>__x64_sys_futex (50 samples, 0.01%)</title><rect x="17.4519%" y="709" width="0.0104%" height="15" fill="rgb(225,36,22)" fg:x="84254" fg:w="50"/><text x="17.7019%" y="719.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="17.4517%" y="725" width="0.0116%" height="15" fill="rgb(251,106,46)" fg:x="84253" fg:w="56"/><text x="17.7017%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="17.4513%" y="741" width="0.0122%" height="15" fill="rgb(208,90,1)" fg:x="84251" fg:w="59"/><text x="17.7013%" y="751.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (76 samples, 0.02%)</title><rect x="17.4480%" y="757" width="0.0157%" height="15" fill="rgb(243,10,4)" fg:x="84235" fg:w="76"/><text x="17.6980%" y="767.50"></text></g><g><title>Parker::park (1,112 samples, 0.23%)</title><rect x="17.2444%" y="773" width="0.2303%" height="15" fill="rgb(212,137,27)" fg:x="83252" fg:w="1112"/><text x="17.4944%" y="783.50"></text></g><g><title>Unsafe_Park (1,197 samples, 0.25%)</title><rect x="17.2332%" y="789" width="0.2479%" height="15" fill="rgb(231,220,49)" fg:x="83198" fg:w="1197"/><text x="17.4832%" y="799.50"></text></g><g><title>[perf-987172.map] (3,083 samples, 0.64%)</title><rect x="16.8529%" y="805" width="0.6386%" height="15" fill="rgb(237,96,20)" fg:x="81362" fg:w="3083"/><text x="17.1029%" y="815.50"></text></g><g><title>[unknown] (53 samples, 0.01%)</title><rect x="17.4915%" y="805" width="0.0110%" height="15" fill="rgb(239,229,30)" fg:x="84445" fg:w="53"/><text x="17.7415%" y="815.50"></text></g><g><title>ForkJoinPool.co (3,200 samples, 0.66%)</title><rect x="16.8430%" y="821" width="0.6628%" height="15" fill="rgb(219,65,33)" fg:x="81314" fg:w="3200"/><text x="17.0930%" y="831.50"></text></g><g><title>__GI___clone (51 samples, 0.01%)</title><rect x="17.5162%" y="805" width="0.0106%" height="15" fill="rgb(243,134,7)" fg:x="84564" fg:w="51"/><text x="17.7662%" y="815.50"></text></g><g><title>start_thread (51 samples, 0.01%)</title><rect x="17.5162%" y="789" width="0.0106%" height="15" fill="rgb(216,177,54)" fg:x="84564" fg:w="51"/><text x="17.7662%" y="799.50"></text></g><g><title>thread_native_entry (51 samples, 0.01%)</title><rect x="17.5162%" y="773" width="0.0106%" height="15" fill="rgb(211,160,20)" fg:x="84564" fg:w="51"/><text x="17.7662%" y="783.50"></text></g><g><title>Thread::call_run (51 samples, 0.01%)</title><rect x="17.5162%" y="757" width="0.0106%" height="15" fill="rgb(239,85,39)" fg:x="84564" fg:w="51"/><text x="17.7662%" y="767.50"></text></g><g><title>GangWorker::loop (51 samples, 0.01%)</title><rect x="17.5162%" y="741" width="0.0106%" height="15" fill="rgb(232,125,22)" fg:x="84564" fg:w="51"/><text x="17.7662%" y="751.50"></text></g><g><title>G1_Conc#1 (57 samples, 0.01%)</title><rect x="17.5153%" y="821" width="0.0118%" height="15" fill="rgb(244,57,34)" fg:x="84560" fg:w="57"/><text x="17.7653%" y="831.50"></text></g><g><title>G1RemSet::refine_card_concurrently (98 samples, 0.02%)</title><rect x="17.5373%" y="693" width="0.0203%" height="15" fill="rgb(214,203,32)" fg:x="84666" fg:w="98"/><text x="17.7873%" y="703.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (99 samples, 0.02%)</title><rect x="17.5373%" y="709" width="0.0205%" height="15" fill="rgb(207,58,43)" fg:x="84666" fg:w="99"/><text x="17.7873%" y="719.50"></text></g><g><title>Thread::call_run (115 samples, 0.02%)</title><rect x="17.5373%" y="757" width="0.0238%" height="15" fill="rgb(215,193,15)" fg:x="84666" fg:w="115"/><text x="17.7873%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (115 samples, 0.02%)</title><rect x="17.5373%" y="741" width="0.0238%" height="15" fill="rgb(232,15,44)" fg:x="84666" fg:w="115"/><text x="17.7873%" y="751.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (115 samples, 0.02%)</title><rect x="17.5373%" y="725" width="0.0238%" height="15" fill="rgb(212,3,48)" fg:x="84666" fg:w="115"/><text x="17.7873%" y="735.50"></text></g><g><title>G1_Refine#0 (135 samples, 0.03%)</title><rect x="17.5334%" y="821" width="0.0280%" height="15" fill="rgb(218,128,7)" fg:x="84647" fg:w="135"/><text x="17.7834%" y="831.50"></text></g><g><title>__GI___clone (124 samples, 0.03%)</title><rect x="17.5356%" y="805" width="0.0257%" height="15" fill="rgb(226,216,39)" fg:x="84658" fg:w="124"/><text x="17.7856%" y="815.50"></text></g><g><title>start_thread (116 samples, 0.02%)</title><rect x="17.5373%" y="789" width="0.0240%" height="15" fill="rgb(243,47,51)" fg:x="84666" fg:w="116"/><text x="17.7873%" y="799.50"></text></g><g><title>thread_native_entry (116 samples, 0.02%)</title><rect x="17.5373%" y="773" width="0.0240%" height="15" fill="rgb(241,183,40)" fg:x="84666" fg:w="116"/><text x="17.7873%" y="783.50"></text></g><g><title>G1_Refine#1 (56 samples, 0.01%)</title><rect x="17.5613%" y="821" width="0.0116%" height="15" fill="rgb(231,217,32)" fg:x="84782" fg:w="56"/><text x="17.8113%" y="831.50"></text></g><g><title>__GI___clone (55 samples, 0.01%)</title><rect x="17.5615%" y="805" width="0.0114%" height="15" fill="rgb(229,61,38)" fg:x="84783" fg:w="55"/><text x="17.8115%" y="815.50"></text></g><g><title>start_thread (54 samples, 0.01%)</title><rect x="17.5617%" y="789" width="0.0112%" height="15" fill="rgb(225,210,5)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="799.50"></text></g><g><title>thread_native_entry (54 samples, 0.01%)</title><rect x="17.5617%" y="773" width="0.0112%" height="15" fill="rgb(231,79,45)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="783.50"></text></g><g><title>Thread::call_run (54 samples, 0.01%)</title><rect x="17.5617%" y="757" width="0.0112%" height="15" fill="rgb(224,100,7)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (54 samples, 0.01%)</title><rect x="17.5617%" y="741" width="0.0112%" height="15" fill="rgb(241,198,18)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="751.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (54 samples, 0.01%)</title><rect x="17.5617%" y="725" width="0.0112%" height="15" fill="rgb(252,97,53)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="735.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (54 samples, 0.01%)</title><rect x="17.5617%" y="709" width="0.0112%" height="15" fill="rgb(220,88,7)" fg:x="84784" fg:w="54"/><text x="17.8117%" y="719.50"></text></g><g><title>G1RemSet::refine_card_concurrently (53 samples, 0.01%)</title><rect x="17.5619%" y="693" width="0.0110%" height="15" fill="rgb(213,176,14)" fg:x="84785" fg:w="53"/><text x="17.8119%" y="703.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (72 samples, 0.01%)</title><rect x="17.5795%" y="693" width="0.0149%" height="15" fill="rgb(246,73,7)" fg:x="84870" fg:w="72"/><text x="17.8295%" y="703.50"></text></g><g><title>G1CollectionSet::iterate (78 samples, 0.02%)</title><rect x="17.5785%" y="709" width="0.0162%" height="15" fill="rgb(245,64,36)" fg:x="84865" fg:w="78"/><text x="17.8285%" y="719.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (118 samples, 0.02%)</title><rect x="17.5783%" y="725" width="0.0244%" height="15" fill="rgb(245,80,10)" fg:x="84864" fg:w="118"/><text x="17.8283%" y="735.50"></text></g><g><title>G1_Young_RemSet (128 samples, 0.03%)</title><rect x="17.5781%" y="821" width="0.0265%" height="15" fill="rgb(232,107,50)" fg:x="84863" fg:w="128"/><text x="17.8281%" y="831.50"></text></g><g><title>__GI___clone (127 samples, 0.03%)</title><rect x="17.5783%" y="805" width="0.0263%" height="15" fill="rgb(253,3,0)" fg:x="84864" fg:w="127"/><text x="17.8283%" y="815.50"></text></g><g><title>start_thread (127 samples, 0.03%)</title><rect x="17.5783%" y="789" width="0.0263%" height="15" fill="rgb(212,99,53)" fg:x="84864" fg:w="127"/><text x="17.8283%" y="799.50"></text></g><g><title>thread_native_entry (127 samples, 0.03%)</title><rect x="17.5783%" y="773" width="0.0263%" height="15" fill="rgb(249,111,54)" fg:x="84864" fg:w="127"/><text x="17.8283%" y="783.50"></text></g><g><title>Thread::call_run (127 samples, 0.03%)</title><rect x="17.5783%" y="757" width="0.0263%" height="15" fill="rgb(249,55,30)" fg:x="84864" fg:w="127"/><text x="17.8283%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (127 samples, 0.03%)</title><rect x="17.5783%" y="741" width="0.0263%" height="15" fill="rgb(237,47,42)" fg:x="84864" fg:w="127"/><text x="17.8283%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (93 samples, 0.02%)</title><rect x="17.6286%" y="677" width="0.0193%" height="15" fill="rgb(211,20,18)" fg:x="85107" fg:w="93"/><text x="17.8786%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (169 samples, 0.04%)</title><rect x="17.6131%" y="693" width="0.0350%" height="15" fill="rgb(231,203,46)" fg:x="85032" fg:w="169"/><text x="17.8631%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (231 samples, 0.05%)</title><rect x="17.6117%" y="709" width="0.0478%" height="15" fill="rgb(237,142,3)" fg:x="85025" fg:w="231"/><text x="17.8617%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (81 samples, 0.02%)</title><rect x="17.6647%" y="613" width="0.0168%" height="15" fill="rgb(241,107,1)" fg:x="85281" fg:w="81"/><text x="17.9147%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (63 samples, 0.01%)</title><rect x="17.6684%" y="597" width="0.0130%" height="15" fill="rgb(229,83,13)" fg:x="85299" fg:w="63"/><text x="17.9184%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (111 samples, 0.02%)</title><rect x="17.6595%" y="629" width="0.0230%" height="15" fill="rgb(241,91,40)" fg:x="85256" fg:w="111"/><text x="17.9095%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (122 samples, 0.03%)</title><rect x="17.6595%" y="677" width="0.0253%" height="15" fill="rgb(225,3,45)" fg:x="85256" fg:w="122"/><text x="17.9095%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (122 samples, 0.03%)</title><rect x="17.6595%" y="661" width="0.0253%" height="15" fill="rgb(244,223,14)" fg:x="85256" fg:w="122"/><text x="17.9095%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (122 samples, 0.03%)</title><rect x="17.6595%" y="645" width="0.0253%" height="15" fill="rgb(224,124,37)" fg:x="85256" fg:w="122"/><text x="17.9095%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (152 samples, 0.03%)</title><rect x="17.6595%" y="709" width="0.0315%" height="15" fill="rgb(251,171,30)" fg:x="85256" fg:w="152"/><text x="17.9095%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (152 samples, 0.03%)</title><rect x="17.6595%" y="693" width="0.0315%" height="15" fill="rgb(236,46,54)" fg:x="85256" fg:w="152"/><text x="17.9095%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (55 samples, 0.01%)</title><rect x="17.6937%" y="597" width="0.0114%" height="15" fill="rgb(245,213,5)" fg:x="85421" fg:w="55"/><text x="17.9437%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (68 samples, 0.01%)</title><rect x="17.6912%" y="629" width="0.0141%" height="15" fill="rgb(230,144,27)" fg:x="85409" fg:w="68"/><text x="17.9412%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (62 samples, 0.01%)</title><rect x="17.6924%" y="613" width="0.0128%" height="15" fill="rgb(220,86,6)" fg:x="85415" fg:w="62"/><text x="17.9424%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (80 samples, 0.02%)</title><rect x="17.6910%" y="661" width="0.0166%" height="15" fill="rgb(240,20,13)" fg:x="85408" fg:w="80"/><text x="17.9410%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (80 samples, 0.02%)</title><rect x="17.6910%" y="645" width="0.0166%" height="15" fill="rgb(217,89,34)" fg:x="85408" fg:w="80"/><text x="17.9410%" y="655.50"></text></g><g><title>G1RemSet::scan_rem_set (92 samples, 0.02%)</title><rect x="17.6910%" y="709" width="0.0191%" height="15" fill="rgb(229,13,5)" fg:x="85408" fg:w="92"/><text x="17.9410%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (92 samples, 0.02%)</title><rect x="17.6910%" y="693" width="0.0191%" height="15" fill="rgb(244,67,35)" fg:x="85408" fg:w="92"/><text x="17.9410%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (92 samples, 0.02%)</title><rect x="17.6910%" y="677" width="0.0191%" height="15" fill="rgb(221,40,2)" fg:x="85408" fg:w="92"/><text x="17.9410%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (62 samples, 0.01%)</title><rect x="17.7100%" y="677" width="0.0128%" height="15" fill="rgb(237,157,21)" fg:x="85500" fg:w="62"/><text x="17.9600%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (62 samples, 0.01%)</title><rect x="17.7100%" y="661" width="0.0128%" height="15" fill="rgb(222,94,11)" fg:x="85500" fg:w="62"/><text x="17.9600%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (62 samples, 0.01%)</title><rect x="17.7100%" y="645" width="0.0128%" height="15" fill="rgb(249,113,6)" fg:x="85500" fg:w="62"/><text x="17.9600%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.01%)</title><rect x="17.7119%" y="629" width="0.0110%" height="15" fill="rgb(238,137,36)" fg:x="85509" fg:w="53"/><text x="17.9619%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (120 samples, 0.02%)</title><rect x="17.7100%" y="693" width="0.0249%" height="15" fill="rgb(210,102,26)" fg:x="85500" fg:w="120"/><text x="17.9600%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (58 samples, 0.01%)</title><rect x="17.7229%" y="677" width="0.0120%" height="15" fill="rgb(218,30,30)" fg:x="85562" fg:w="58"/><text x="17.9729%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (58 samples, 0.01%)</title><rect x="17.7229%" y="661" width="0.0120%" height="15" fill="rgb(214,67,26)" fg:x="85562" fg:w="58"/><text x="17.9729%" y="671.50"></text></g><g><title>JavaThread::oops_do (58 samples, 0.01%)</title><rect x="17.7229%" y="645" width="0.0120%" height="15" fill="rgb(251,9,53)" fg:x="85562" fg:w="58"/><text x="17.9729%" y="655.50"></text></g><g><title>G1ParTask::work (624 samples, 0.13%)</title><rect x="17.6117%" y="725" width="0.1293%" height="15" fill="rgb(228,204,25)" fg:x="85025" fg:w="624"/><text x="17.8617%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (149 samples, 0.03%)</title><rect x="17.7100%" y="709" width="0.0309%" height="15" fill="rgb(207,153,8)" fg:x="85500" fg:w="149"/><text x="17.9600%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (54 samples, 0.01%)</title><rect x="17.7432%" y="693" width="0.0112%" height="15" fill="rgb(242,9,16)" fg:x="85660" fg:w="54"/><text x="17.9932%" y="703.50"></text></g><g><title>RefProcPhase2Task::work (63 samples, 0.01%)</title><rect x="17.7432%" y="709" width="0.0130%" height="15" fill="rgb(217,211,10)" fg:x="85660" fg:w="63"/><text x="17.9932%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (83 samples, 0.02%)</title><rect x="17.7432%" y="725" width="0.0172%" height="15" fill="rgb(219,228,52)" fg:x="85660" fg:w="83"/><text x="17.9932%" y="735.50"></text></g><g><title>__GI___clone (809 samples, 0.17%)</title><rect x="17.6100%" y="805" width="0.1676%" height="15" fill="rgb(231,92,29)" fg:x="85017" fg:w="809"/><text x="17.8600%" y="815.50"></text></g><g><title>start_thread (809 samples, 0.17%)</title><rect x="17.6100%" y="789" width="0.1676%" height="15" fill="rgb(232,8,23)" fg:x="85017" fg:w="809"/><text x="17.8600%" y="799.50"></text></g><g><title>thread_native_entry (809 samples, 0.17%)</title><rect x="17.6100%" y="773" width="0.1676%" height="15" fill="rgb(216,211,34)" fg:x="85017" fg:w="809"/><text x="17.8600%" y="783.50"></text></g><g><title>Thread::call_run (809 samples, 0.17%)</title><rect x="17.6100%" y="757" width="0.1676%" height="15" fill="rgb(236,151,0)" fg:x="85017" fg:w="809"/><text x="17.8600%" y="767.50"></text></g><g><title>GangWorker::loop (809 samples, 0.17%)</title><rect x="17.6100%" y="741" width="0.1676%" height="15" fill="rgb(209,168,3)" fg:x="85017" fg:w="809"/><text x="17.8600%" y="751.50"></text></g><g><title>GC_Thread#0 (836 samples, 0.17%)</title><rect x="17.6046%" y="821" width="0.1732%" height="15" fill="rgb(208,129,28)" fg:x="84991" fg:w="836"/><text x="17.8546%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (69 samples, 0.01%)</title><rect x="17.7999%" y="677" width="0.0143%" height="15" fill="rgb(229,78,22)" fg:x="85934" fg:w="69"/><text x="18.0499%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (139 samples, 0.03%)</title><rect x="17.7865%" y="693" width="0.0288%" height="15" fill="rgb(228,187,13)" fg:x="85869" fg:w="139"/><text x="18.0365%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (200 samples, 0.04%)</title><rect x="17.7838%" y="709" width="0.0414%" height="15" fill="rgb(240,119,24)" fg:x="85856" fg:w="200"/><text x="18.0338%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (139 samples, 0.03%)</title><rect x="17.8308%" y="613" width="0.0288%" height="15" fill="rgb(209,194,42)" fg:x="86083" fg:w="139"/><text x="18.0808%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (104 samples, 0.02%)</title><rect x="17.8380%" y="597" width="0.0215%" height="15" fill="rgb(247,200,46)" fg:x="86118" fg:w="104"/><text x="18.0880%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (175 samples, 0.04%)</title><rect x="17.8254%" y="629" width="0.0362%" height="15" fill="rgb(218,76,16)" fg:x="86057" fg:w="175"/><text x="18.0754%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (190 samples, 0.04%)</title><rect x="17.8254%" y="677" width="0.0394%" height="15" fill="rgb(225,21,48)" fg:x="86057" fg:w="190"/><text x="18.0754%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (190 samples, 0.04%)</title><rect x="17.8254%" y="661" width="0.0394%" height="15" fill="rgb(239,223,50)" fg:x="86057" fg:w="190"/><text x="18.0754%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (190 samples, 0.04%)</title><rect x="17.8254%" y="645" width="0.0394%" height="15" fill="rgb(244,45,21)" fg:x="86057" fg:w="190"/><text x="18.0754%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (193 samples, 0.04%)</title><rect x="17.8254%" y="709" width="0.0400%" height="15" fill="rgb(232,33,43)" fg:x="86057" fg:w="193"/><text x="18.0754%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (193 samples, 0.04%)</title><rect x="17.8254%" y="693" width="0.0400%" height="15" fill="rgb(209,8,3)" fg:x="86057" fg:w="193"/><text x="18.0754%" y="703.50"></text></g><g><title>G1RemSet::scan_rem_set (57 samples, 0.01%)</title><rect x="17.8654%" y="709" width="0.0118%" height="15" fill="rgb(214,25,53)" fg:x="86250" fg:w="57"/><text x="18.1154%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (57 samples, 0.01%)</title><rect x="17.8654%" y="693" width="0.0118%" height="15" fill="rgb(254,186,54)" fg:x="86250" fg:w="57"/><text x="18.1154%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (57 samples, 0.01%)</title><rect x="17.8654%" y="677" width="0.0118%" height="15" fill="rgb(208,174,49)" fg:x="86250" fg:w="57"/><text x="18.1154%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (59 samples, 0.01%)</title><rect x="17.8780%" y="677" width="0.0122%" height="15" fill="rgb(233,191,51)" fg:x="86311" fg:w="59"/><text x="18.1280%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (56 samples, 0.01%)</title><rect x="17.8786%" y="661" width="0.0116%" height="15" fill="rgb(222,134,10)" fg:x="86314" fg:w="56"/><text x="18.1286%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (56 samples, 0.01%)</title><rect x="17.8786%" y="645" width="0.0116%" height="15" fill="rgb(230,226,20)" fg:x="86314" fg:w="56"/><text x="18.1286%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (52 samples, 0.01%)</title><rect x="17.8795%" y="629" width="0.0108%" height="15" fill="rgb(251,111,25)" fg:x="86318" fg:w="52"/><text x="18.1295%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (51 samples, 0.01%)</title><rect x="17.8952%" y="581" width="0.0106%" height="15" fill="rgb(224,40,46)" fg:x="86394" fg:w="51"/><text x="18.1452%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (65 samples, 0.01%)</title><rect x="17.8925%" y="613" width="0.0135%" height="15" fill="rgb(236,108,47)" fg:x="86381" fg:w="65"/><text x="18.1425%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (64 samples, 0.01%)</title><rect x="17.8927%" y="597" width="0.0133%" height="15" fill="rgb(234,93,0)" fg:x="86382" fg:w="64"/><text x="18.1427%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (136 samples, 0.03%)</title><rect x="17.8780%" y="693" width="0.0282%" height="15" fill="rgb(224,213,32)" fg:x="86311" fg:w="136"/><text x="18.1280%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (77 samples, 0.02%)</title><rect x="17.8902%" y="677" width="0.0159%" height="15" fill="rgb(251,11,48)" fg:x="86370" fg:w="77"/><text x="18.1402%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (77 samples, 0.02%)</title><rect x="17.8902%" y="661" width="0.0159%" height="15" fill="rgb(236,173,5)" fg:x="86370" fg:w="77"/><text x="18.1402%" y="671.50"></text></g><g><title>JavaThread::oops_do (77 samples, 0.02%)</title><rect x="17.8902%" y="645" width="0.0159%" height="15" fill="rgb(230,95,12)" fg:x="86370" fg:w="77"/><text x="18.1402%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (67 samples, 0.01%)</title><rect x="17.8923%" y="629" width="0.0139%" height="15" fill="rgb(232,209,1)" fg:x="86380" fg:w="67"/><text x="18.1423%" y="639.50"></text></g><g><title>G1ParTask::work (612 samples, 0.13%)</title><rect x="17.7838%" y="725" width="0.1268%" height="15" fill="rgb(232,6,1)" fg:x="85856" fg:w="612"/><text x="18.0338%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (161 samples, 0.03%)</title><rect x="17.8772%" y="709" width="0.0333%" height="15" fill="rgb(210,224,50)" fg:x="86307" fg:w="161"/><text x="18.1272%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (61 samples, 0.01%)</title><rect x="17.9112%" y="693" width="0.0126%" height="15" fill="rgb(228,127,35)" fg:x="86471" fg:w="61"/><text x="18.1612%" y="703.50"></text></g><g><title>SpinPause (49 samples, 0.01%)</title><rect x="17.9137%" y="677" width="0.0101%" height="15" fill="rgb(245,102,45)" fg:x="86483" fg:w="49"/><text x="18.1637%" y="687.50"></text></g><g><title>RefProcPhase2Task::work (70 samples, 0.01%)</title><rect x="17.9112%" y="709" width="0.0145%" height="15" fill="rgb(214,1,49)" fg:x="86471" fg:w="70"/><text x="18.1612%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (124 samples, 0.03%)</title><rect x="17.9112%" y="725" width="0.0257%" height="15" fill="rgb(226,163,40)" fg:x="86471" fg:w="124"/><text x="18.1612%" y="735.50"></text></g><g><title>RefProcPhase3Task::work (54 samples, 0.01%)</title><rect x="17.9257%" y="709" width="0.0112%" height="15" fill="rgb(239,212,28)" fg:x="86541" fg:w="54"/><text x="18.1757%" y="719.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (54 samples, 0.01%)</title><rect x="17.9257%" y="693" width="0.0112%" height="15" fill="rgb(220,20,13)" fg:x="86541" fg:w="54"/><text x="18.1757%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (54 samples, 0.01%)</title><rect x="17.9257%" y="677" width="0.0112%" height="15" fill="rgb(210,164,35)" fg:x="86541" fg:w="54"/><text x="18.1757%" y="687.50"></text></g><g><title>SpinPause (54 samples, 0.01%)</title><rect x="17.9257%" y="661" width="0.0112%" height="15" fill="rgb(248,109,41)" fg:x="86541" fg:w="54"/><text x="18.1757%" y="671.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="17.9418%" y="629" width="0.0120%" height="15" fill="rgb(238,23,50)" fg:x="86619" fg:w="58"/><text x="18.1918%" y="639.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="17.9418%" y="613" width="0.0120%" height="15" fill="rgb(211,48,49)" fg:x="86619" fg:w="58"/><text x="18.1918%" y="623.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="17.9418%" y="597" width="0.0120%" height="15" fill="rgb(223,36,21)" fg:x="86619" fg:w="58"/><text x="18.1918%" y="607.50"></text></g><g><title>futex_wait (57 samples, 0.01%)</title><rect x="17.9420%" y="581" width="0.0118%" height="15" fill="rgb(207,123,46)" fg:x="86620" fg:w="57"/><text x="18.1920%" y="591.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.01%)</title><rect x="17.9422%" y="565" width="0.0116%" height="15" fill="rgb(240,218,32)" fg:x="86621" fg:w="56"/><text x="18.1922%" y="575.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="17.9424%" y="549" width="0.0114%" height="15" fill="rgb(252,5,43)" fg:x="86622" fg:w="55"/><text x="18.1924%" y="559.50"></text></g><g><title>__schedule (55 samples, 0.01%)</title><rect x="17.9424%" y="533" width="0.0114%" height="15" fill="rgb(252,84,19)" fg:x="86622" fg:w="55"/><text x="18.1924%" y="543.50"></text></g><g><title>__GI___clone (835 samples, 0.17%)</title><rect x="17.7815%" y="805" width="0.1730%" height="15" fill="rgb(243,152,39)" fg:x="85845" fg:w="835"/><text x="18.0315%" y="815.50"></text></g><g><title>start_thread (835 samples, 0.17%)</title><rect x="17.7815%" y="789" width="0.1730%" height="15" fill="rgb(234,160,15)" fg:x="85845" fg:w="835"/><text x="18.0315%" y="799.50"></text></g><g><title>thread_native_entry (835 samples, 0.17%)</title><rect x="17.7815%" y="773" width="0.1730%" height="15" fill="rgb(237,34,20)" fg:x="85845" fg:w="835"/><text x="18.0315%" y="783.50"></text></g><g><title>Thread::call_run (835 samples, 0.17%)</title><rect x="17.7815%" y="757" width="0.1730%" height="15" fill="rgb(229,97,13)" fg:x="85845" fg:w="835"/><text x="18.0315%" y="767.50"></text></g><g><title>GangWorker::loop (835 samples, 0.17%)</title><rect x="17.7815%" y="741" width="0.1730%" height="15" fill="rgb(234,71,50)" fg:x="85845" fg:w="835"/><text x="18.0315%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (63 samples, 0.01%)</title><rect x="17.9414%" y="725" width="0.0130%" height="15" fill="rgb(253,155,4)" fg:x="86617" fg:w="63"/><text x="18.1914%" y="735.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.01%)</title><rect x="17.9416%" y="709" width="0.0128%" height="15" fill="rgb(222,185,37)" fg:x="86618" fg:w="62"/><text x="18.1916%" y="719.50"></text></g><g><title>__new_sem_wait_slow (61 samples, 0.01%)</title><rect x="17.9418%" y="693" width="0.0126%" height="15" fill="rgb(251,177,13)" fg:x="86619" fg:w="61"/><text x="18.1918%" y="703.50"></text></g><g><title>do_futex_wait (61 samples, 0.01%)</title><rect x="17.9418%" y="677" width="0.0126%" height="15" fill="rgb(250,179,40)" fg:x="86619" fg:w="61"/><text x="18.1918%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (61 samples, 0.01%)</title><rect x="17.9418%" y="661" width="0.0126%" height="15" fill="rgb(242,44,2)" fg:x="86619" fg:w="61"/><text x="18.1918%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.01%)</title><rect x="17.9418%" y="645" width="0.0126%" height="15" fill="rgb(216,177,13)" fg:x="86619" fg:w="61"/><text x="18.1918%" y="655.50"></text></g><g><title>GC_Thread#1 (858 samples, 0.18%)</title><rect x="17.7778%" y="821" width="0.1777%" height="15" fill="rgb(216,106,43)" fg:x="85827" fg:w="858"/><text x="18.0278%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (101 samples, 0.02%)</title><rect x="17.9812%" y="677" width="0.0209%" height="15" fill="rgb(216,183,2)" fg:x="86809" fg:w="101"/><text x="18.2312%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (184 samples, 0.04%)</title><rect x="17.9644%" y="693" width="0.0381%" height="15" fill="rgb(249,75,3)" fg:x="86728" fg:w="184"/><text x="18.2144%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (239 samples, 0.05%)</title><rect x="17.9627%" y="709" width="0.0495%" height="15" fill="rgb(219,67,39)" fg:x="86720" fg:w="239"/><text x="18.2127%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (123 samples, 0.03%)</title><rect x="18.0178%" y="613" width="0.0255%" height="15" fill="rgb(253,228,2)" fg:x="86986" fg:w="123"/><text x="18.2678%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (105 samples, 0.02%)</title><rect x="18.0216%" y="597" width="0.0217%" height="15" fill="rgb(235,138,27)" fg:x="87004" fg:w="105"/><text x="18.2716%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (156 samples, 0.03%)</title><rect x="18.0129%" y="629" width="0.0323%" height="15" fill="rgb(236,97,51)" fg:x="86962" fg:w="156"/><text x="18.2629%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (168 samples, 0.03%)</title><rect x="18.0125%" y="709" width="0.0348%" height="15" fill="rgb(240,80,30)" fg:x="86960" fg:w="168"/><text x="18.2625%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (168 samples, 0.03%)</title><rect x="18.0125%" y="693" width="0.0348%" height="15" fill="rgb(230,178,19)" fg:x="86960" fg:w="168"/><text x="18.2625%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (168 samples, 0.03%)</title><rect x="18.0125%" y="677" width="0.0348%" height="15" fill="rgb(210,190,27)" fg:x="86960" fg:w="168"/><text x="18.2625%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (168 samples, 0.03%)</title><rect x="18.0125%" y="661" width="0.0348%" height="15" fill="rgb(222,107,31)" fg:x="86960" fg:w="168"/><text x="18.2625%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (168 samples, 0.03%)</title><rect x="18.0125%" y="645" width="0.0348%" height="15" fill="rgb(216,127,34)" fg:x="86960" fg:w="168"/><text x="18.2625%" y="655.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (94 samples, 0.02%)</title><rect x="18.0628%" y="613" width="0.0195%" height="15" fill="rgb(234,116,52)" fg:x="87203" fg:w="94"/><text x="18.3128%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (70 samples, 0.01%)</title><rect x="18.0678%" y="597" width="0.0145%" height="15" fill="rgb(222,124,15)" fg:x="87227" fg:w="70"/><text x="18.3178%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (123 samples, 0.03%)</title><rect x="18.0570%" y="677" width="0.0255%" height="15" fill="rgb(231,179,28)" fg:x="87175" fg:w="123"/><text x="18.3070%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (123 samples, 0.03%)</title><rect x="18.0570%" y="661" width="0.0255%" height="15" fill="rgb(226,93,45)" fg:x="87175" fg:w="123"/><text x="18.3070%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (123 samples, 0.03%)</title><rect x="18.0570%" y="645" width="0.0255%" height="15" fill="rgb(215,8,51)" fg:x="87175" fg:w="123"/><text x="18.3070%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (114 samples, 0.02%)</title><rect x="18.0589%" y="629" width="0.0236%" height="15" fill="rgb(223,106,5)" fg:x="87184" fg:w="114"/><text x="18.3089%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (164 samples, 0.03%)</title><rect x="18.0570%" y="693" width="0.0340%" height="15" fill="rgb(250,191,5)" fg:x="87175" fg:w="164"/><text x="18.3070%" y="703.50"></text></g><g><title>G1ParTask::work (629 samples, 0.13%)</title><rect x="17.9627%" y="725" width="0.1303%" height="15" fill="rgb(242,132,44)" fg:x="86720" fg:w="629"/><text x="18.2127%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (176 samples, 0.04%)</title><rect x="18.0566%" y="709" width="0.0365%" height="15" fill="rgb(251,152,29)" fg:x="87173" fg:w="176"/><text x="18.3066%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (85 samples, 0.02%)</title><rect x="18.0943%" y="725" width="0.0176%" height="15" fill="rgb(218,179,5)" fg:x="87355" fg:w="85"/><text x="18.3443%" y="735.50"></text></g><g><title>__GI___clone (774 samples, 0.16%)</title><rect x="17.9596%" y="805" width="0.1603%" height="15" fill="rgb(227,67,19)" fg:x="86705" fg:w="774"/><text x="18.2096%" y="815.50"></text></g><g><title>start_thread (774 samples, 0.16%)</title><rect x="17.9596%" y="789" width="0.1603%" height="15" fill="rgb(233,119,31)" fg:x="86705" fg:w="774"/><text x="18.2096%" y="799.50"></text></g><g><title>thread_native_entry (774 samples, 0.16%)</title><rect x="17.9596%" y="773" width="0.1603%" height="15" fill="rgb(241,120,22)" fg:x="86705" fg:w="774"/><text x="18.2096%" y="783.50"></text></g><g><title>Thread::call_run (774 samples, 0.16%)</title><rect x="17.9596%" y="757" width="0.1603%" height="15" fill="rgb(224,102,30)" fg:x="86705" fg:w="774"/><text x="18.2096%" y="767.50"></text></g><g><title>GangWorker::loop (774 samples, 0.16%)</title><rect x="17.9596%" y="741" width="0.1603%" height="15" fill="rgb(210,164,37)" fg:x="86705" fg:w="774"/><text x="18.2096%" y="751.50"></text></g><g><title>GC_Thread#2 (800 samples, 0.17%)</title><rect x="17.9555%" y="821" width="0.1657%" height="15" fill="rgb(226,191,16)" fg:x="86685" fg:w="800"/><text x="18.2055%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (71 samples, 0.01%)</title><rect x="18.1405%" y="677" width="0.0147%" height="15" fill="rgb(214,40,45)" fg:x="87578" fg:w="71"/><text x="18.3905%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (138 samples, 0.03%)</title><rect x="18.1268%" y="693" width="0.0286%" height="15" fill="rgb(244,29,26)" fg:x="87512" fg:w="138"/><text x="18.3768%" y="703.50"></text></g><g><title>SpinPause (69 samples, 0.01%)</title><rect x="18.1568%" y="693" width="0.0143%" height="15" fill="rgb(216,16,5)" fg:x="87657" fg:w="69"/><text x="18.4068%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (224 samples, 0.05%)</title><rect x="18.1251%" y="709" width="0.0464%" height="15" fill="rgb(249,76,35)" fg:x="87504" fg:w="224"/><text x="18.3751%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (218 samples, 0.05%)</title><rect x="18.1815%" y="613" width="0.0452%" height="15" fill="rgb(207,11,44)" fg:x="87776" fg:w="218"/><text x="18.4315%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (171 samples, 0.04%)</title><rect x="18.1912%" y="597" width="0.0354%" height="15" fill="rgb(228,190,49)" fg:x="87823" fg:w="171"/><text x="18.4412%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (274 samples, 0.06%)</title><rect x="18.1722%" y="629" width="0.0568%" height="15" fill="rgb(214,173,12)" fg:x="87731" fg:w="274"/><text x="18.4222%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (288 samples, 0.06%)</title><rect x="18.1720%" y="677" width="0.0597%" height="15" fill="rgb(218,26,35)" fg:x="87730" fg:w="288"/><text x="18.4220%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (288 samples, 0.06%)</title><rect x="18.1720%" y="661" width="0.0597%" height="15" fill="rgb(220,200,19)" fg:x="87730" fg:w="288"/><text x="18.4220%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (287 samples, 0.06%)</title><rect x="18.1722%" y="645" width="0.0594%" height="15" fill="rgb(239,95,49)" fg:x="87731" fg:w="287"/><text x="18.4222%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (293 samples, 0.06%)</title><rect x="18.1717%" y="709" width="0.0607%" height="15" fill="rgb(235,85,53)" fg:x="87729" fg:w="293"/><text x="18.4217%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (292 samples, 0.06%)</title><rect x="18.1720%" y="693" width="0.0605%" height="15" fill="rgb(233,133,31)" fg:x="87730" fg:w="292"/><text x="18.4220%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (72 samples, 0.01%)</title><rect x="18.2480%" y="581" width="0.0149%" height="15" fill="rgb(218,25,20)" fg:x="88097" fg:w="72"/><text x="18.4980%" y="591.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (59 samples, 0.01%)</title><rect x="18.2507%" y="565" width="0.0122%" height="15" fill="rgb(252,210,38)" fg:x="88110" fg:w="59"/><text x="18.5007%" y="575.50"></text></g><g><title>InterpreterOopMap::iterate_oop (98 samples, 0.02%)</title><rect x="18.2449%" y="613" width="0.0203%" height="15" fill="rgb(242,134,21)" fg:x="88082" fg:w="98"/><text x="18.4949%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (98 samples, 0.02%)</title><rect x="18.2449%" y="597" width="0.0203%" height="15" fill="rgb(213,28,48)" fg:x="88082" fg:w="98"/><text x="18.4949%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (108 samples, 0.02%)</title><rect x="18.2444%" y="629" width="0.0224%" height="15" fill="rgb(250,196,2)" fg:x="88080" fg:w="108"/><text x="18.4944%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (136 samples, 0.03%)</title><rect x="18.2389%" y="693" width="0.0282%" height="15" fill="rgb(227,5,17)" fg:x="88053" fg:w="136"/><text x="18.4889%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (136 samples, 0.03%)</title><rect x="18.2389%" y="677" width="0.0282%" height="15" fill="rgb(221,226,24)" fg:x="88053" fg:w="136"/><text x="18.4889%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (136 samples, 0.03%)</title><rect x="18.2389%" y="661" width="0.0282%" height="15" fill="rgb(211,5,48)" fg:x="88053" fg:w="136"/><text x="18.4889%" y="671.50"></text></g><g><title>JavaThread::oops_do (136 samples, 0.03%)</title><rect x="18.2389%" y="645" width="0.0282%" height="15" fill="rgb(219,150,6)" fg:x="88053" fg:w="136"/><text x="18.4889%" y="655.50"></text></g><g><title>G1RootProcessor::evacuate_roots (151 samples, 0.03%)</title><rect x="18.2378%" y="709" width="0.0313%" height="15" fill="rgb(251,46,16)" fg:x="88048" fg:w="151"/><text x="18.4878%" y="719.50"></text></g><g><title>G1ParTask::work (696 samples, 0.14%)</title><rect x="18.1251%" y="725" width="0.1442%" height="15" fill="rgb(220,204,40)" fg:x="87504" fg:w="696"/><text x="18.3751%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (52 samples, 0.01%)</title><rect x="18.2708%" y="709" width="0.0108%" height="15" fill="rgb(211,85,2)" fg:x="88207" fg:w="52"/><text x="18.5208%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (97 samples, 0.02%)</title><rect x="18.2708%" y="725" width="0.0201%" height="15" fill="rgb(229,17,7)" fg:x="88207" fg:w="97"/><text x="18.5208%" y="735.50"></text></g><g><title>__GI___clone (872 samples, 0.18%)</title><rect x="18.1231%" y="805" width="0.1806%" height="15" fill="rgb(239,72,28)" fg:x="87494" fg:w="872"/><text x="18.3731%" y="815.50"></text></g><g><title>start_thread (872 samples, 0.18%)</title><rect x="18.1231%" y="789" width="0.1806%" height="15" fill="rgb(230,47,54)" fg:x="87494" fg:w="872"/><text x="18.3731%" y="799.50"></text></g><g><title>thread_native_entry (872 samples, 0.18%)</title><rect x="18.1231%" y="773" width="0.1806%" height="15" fill="rgb(214,50,8)" fg:x="87494" fg:w="872"/><text x="18.3731%" y="783.50"></text></g><g><title>Thread::call_run (872 samples, 0.18%)</title><rect x="18.1231%" y="757" width="0.1806%" height="15" fill="rgb(216,198,43)" fg:x="87494" fg:w="872"/><text x="18.3731%" y="767.50"></text></g><g><title>GangWorker::loop (872 samples, 0.18%)</title><rect x="18.1231%" y="741" width="0.1806%" height="15" fill="rgb(234,20,35)" fg:x="87494" fg:w="872"/><text x="18.3731%" y="751.50"></text></g><g><title>GC_Thread#3 (885 samples, 0.18%)</title><rect x="18.1212%" y="821" width="0.1833%" height="15" fill="rgb(254,45,19)" fg:x="87485" fg:w="885"/><text x="18.3712%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (69 samples, 0.01%)</title><rect x="18.3290%" y="677" width="0.0143%" height="15" fill="rgb(219,14,44)" fg:x="88488" fg:w="69"/><text x="18.5790%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (139 samples, 0.03%)</title><rect x="18.3153%" y="693" width="0.0288%" height="15" fill="rgb(217,220,26)" fg:x="88422" fg:w="139"/><text x="18.5653%" y="703.50"></text></g><g><title>SpinPause (58 samples, 0.01%)</title><rect x="18.3449%" y="693" width="0.0120%" height="15" fill="rgb(213,158,28)" fg:x="88565" fg:w="58"/><text x="18.5949%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (220 samples, 0.05%)</title><rect x="18.3124%" y="709" width="0.0456%" height="15" fill="rgb(252,51,52)" fg:x="88408" fg:w="220"/><text x="18.5624%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (110 samples, 0.02%)</title><rect x="18.3644%" y="613" width="0.0228%" height="15" fill="rgb(246,89,16)" fg:x="88659" fg:w="110"/><text x="18.6144%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (73 samples, 0.02%)</title><rect x="18.3720%" y="597" width="0.0151%" height="15" fill="rgb(216,158,49)" fg:x="88696" fg:w="73"/><text x="18.6220%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (144 samples, 0.03%)</title><rect x="18.3586%" y="629" width="0.0298%" height="15" fill="rgb(236,107,19)" fg:x="88631" fg:w="144"/><text x="18.6086%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (162 samples, 0.03%)</title><rect x="18.3584%" y="677" width="0.0336%" height="15" fill="rgb(228,185,30)" fg:x="88630" fg:w="162"/><text x="18.6084%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (162 samples, 0.03%)</title><rect x="18.3584%" y="661" width="0.0336%" height="15" fill="rgb(246,134,8)" fg:x="88630" fg:w="162"/><text x="18.6084%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (161 samples, 0.03%)</title><rect x="18.3586%" y="645" width="0.0333%" height="15" fill="rgb(214,143,50)" fg:x="88631" fg:w="161"/><text x="18.6086%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (177 samples, 0.04%)</title><rect x="18.3584%" y="709" width="0.0367%" height="15" fill="rgb(228,75,8)" fg:x="88630" fg:w="177"/><text x="18.6084%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (177 samples, 0.04%)</title><rect x="18.3584%" y="693" width="0.0367%" height="15" fill="rgb(207,175,4)" fg:x="88630" fg:w="177"/><text x="18.6084%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.01%)</title><rect x="18.3950%" y="629" width="0.0110%" height="15" fill="rgb(205,108,24)" fg:x="88807" fg:w="53"/><text x="18.6450%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (69 samples, 0.01%)</title><rect x="18.3950%" y="645" width="0.0143%" height="15" fill="rgb(244,120,49)" fg:x="88807" fg:w="69"/><text x="18.6450%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (72 samples, 0.01%)</title><rect x="18.3950%" y="661" width="0.0149%" height="15" fill="rgb(223,47,38)" fg:x="88807" fg:w="72"/><text x="18.6450%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (79 samples, 0.02%)</title><rect x="18.3950%" y="709" width="0.0164%" height="15" fill="rgb(229,179,11)" fg:x="88807" fg:w="79"/><text x="18.6450%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (79 samples, 0.02%)</title><rect x="18.3950%" y="693" width="0.0164%" height="15" fill="rgb(231,122,1)" fg:x="88807" fg:w="79"/><text x="18.6450%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (79 samples, 0.02%)</title><rect x="18.3950%" y="677" width="0.0164%" height="15" fill="rgb(245,119,9)" fg:x="88807" fg:w="79"/><text x="18.6450%" y="687.50"></text></g><g><title>HandleArea::oops_do (56 samples, 0.01%)</title><rect x="18.4211%" y="629" width="0.0116%" height="15" fill="rgb(241,163,25)" fg:x="88933" fg:w="56"/><text x="18.6711%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (111 samples, 0.02%)</title><rect x="18.4114%" y="693" width="0.0230%" height="15" fill="rgb(217,214,3)" fg:x="88886" fg:w="111"/><text x="18.6614%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (65 samples, 0.01%)</title><rect x="18.4209%" y="677" width="0.0135%" height="15" fill="rgb(240,86,28)" fg:x="88932" fg:w="65"/><text x="18.6709%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (65 samples, 0.01%)</title><rect x="18.4209%" y="661" width="0.0135%" height="15" fill="rgb(215,47,9)" fg:x="88932" fg:w="65"/><text x="18.6709%" y="671.50"></text></g><g><title>JavaThread::oops_do (65 samples, 0.01%)</title><rect x="18.4209%" y="645" width="0.0135%" height="15" fill="rgb(252,25,45)" fg:x="88932" fg:w="65"/><text x="18.6709%" y="655.50"></text></g><g><title>G1ParTask::work (605 samples, 0.13%)</title><rect x="18.3124%" y="725" width="0.1253%" height="15" fill="rgb(251,164,9)" fg:x="88408" fg:w="605"/><text x="18.5624%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (127 samples, 0.03%)</title><rect x="18.4114%" y="709" width="0.0263%" height="15" fill="rgb(233,194,0)" fg:x="88886" fg:w="127"/><text x="18.6614%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (55 samples, 0.01%)</title><rect x="18.4410%" y="693" width="0.0114%" height="15" fill="rgb(249,111,24)" fg:x="89029" fg:w="55"/><text x="18.6910%" y="703.50"></text></g><g><title>SpinPause (50 samples, 0.01%)</title><rect x="18.4421%" y="677" width="0.0104%" height="15" fill="rgb(250,223,3)" fg:x="89034" fg:w="50"/><text x="18.6921%" y="687.50"></text></g><g><title>RefProcPhase2Task::work (64 samples, 0.01%)</title><rect x="18.4410%" y="709" width="0.0133%" height="15" fill="rgb(236,178,37)" fg:x="89029" fg:w="64"/><text x="18.6910%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (114 samples, 0.02%)</title><rect x="18.4410%" y="725" width="0.0236%" height="15" fill="rgb(241,158,50)" fg:x="89029" fg:w="114"/><text x="18.6910%" y="735.50"></text></g><g><title>RefProcPhase3Task::work (50 samples, 0.01%)</title><rect x="18.4543%" y="709" width="0.0104%" height="15" fill="rgb(213,121,41)" fg:x="89093" fg:w="50"/><text x="18.7043%" y="719.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (50 samples, 0.01%)</title><rect x="18.4543%" y="693" width="0.0104%" height="15" fill="rgb(240,92,3)" fg:x="89093" fg:w="50"/><text x="18.7043%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (50 samples, 0.01%)</title><rect x="18.4543%" y="677" width="0.0104%" height="15" fill="rgb(205,123,3)" fg:x="89093" fg:w="50"/><text x="18.7043%" y="687.50"></text></g><g><title>futex_wait_queue_me (60 samples, 0.01%)</title><rect x="18.4719%" y="565" width="0.0124%" height="15" fill="rgb(205,97,47)" fg:x="89178" fg:w="60"/><text x="18.7219%" y="575.50"></text></g><g><title>schedule (58 samples, 0.01%)</title><rect x="18.4723%" y="549" width="0.0120%" height="15" fill="rgb(247,152,14)" fg:x="89180" fg:w="58"/><text x="18.7223%" y="559.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="18.4723%" y="533" width="0.0120%" height="15" fill="rgb(248,195,53)" fg:x="89180" fg:w="58"/><text x="18.7223%" y="543.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="18.4719%" y="613" width="0.0128%" height="15" fill="rgb(226,201,16)" fg:x="89178" fg:w="62"/><text x="18.7219%" y="623.50"></text></g><g><title>do_futex (62 samples, 0.01%)</title><rect x="18.4719%" y="597" width="0.0128%" height="15" fill="rgb(205,98,0)" fg:x="89178" fg:w="62"/><text x="18.7219%" y="607.50"></text></g><g><title>futex_wait (62 samples, 0.01%)</title><rect x="18.4719%" y="581" width="0.0128%" height="15" fill="rgb(214,191,48)" fg:x="89178" fg:w="62"/><text x="18.7219%" y="591.50"></text></g><g><title>__GI___clone (850 samples, 0.18%)</title><rect x="18.3089%" y="805" width="0.1761%" height="15" fill="rgb(237,112,39)" fg:x="88391" fg:w="850"/><text x="18.5589%" y="815.50"></text></g><g><title>start_thread (850 samples, 0.18%)</title><rect x="18.3089%" y="789" width="0.1761%" height="15" fill="rgb(247,203,27)" fg:x="88391" fg:w="850"/><text x="18.5589%" y="799.50"></text></g><g><title>thread_native_entry (850 samples, 0.18%)</title><rect x="18.3089%" y="773" width="0.1761%" height="15" fill="rgb(235,124,28)" fg:x="88391" fg:w="850"/><text x="18.5589%" y="783.50"></text></g><g><title>Thread::call_run (850 samples, 0.18%)</title><rect x="18.3089%" y="757" width="0.1761%" height="15" fill="rgb(208,207,46)" fg:x="88391" fg:w="850"/><text x="18.5589%" y="767.50"></text></g><g><title>GangWorker::loop (850 samples, 0.18%)</title><rect x="18.3089%" y="741" width="0.1761%" height="15" fill="rgb(234,176,4)" fg:x="88391" fg:w="850"/><text x="18.5589%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (65 samples, 0.01%)</title><rect x="18.4715%" y="725" width="0.0135%" height="15" fill="rgb(230,133,28)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="735.50"></text></g><g><title>PosixSemaphore::wait (65 samples, 0.01%)</title><rect x="18.4715%" y="709" width="0.0135%" height="15" fill="rgb(211,137,40)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="719.50"></text></g><g><title>__new_sem_wait_slow (65 samples, 0.01%)</title><rect x="18.4715%" y="693" width="0.0135%" height="15" fill="rgb(254,35,13)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="703.50"></text></g><g><title>do_futex_wait (65 samples, 0.01%)</title><rect x="18.4715%" y="677" width="0.0135%" height="15" fill="rgb(225,49,51)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (65 samples, 0.01%)</title><rect x="18.4715%" y="661" width="0.0135%" height="15" fill="rgb(251,10,15)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="18.4715%" y="645" width="0.0135%" height="15" fill="rgb(228,207,15)" fg:x="89176" fg:w="65"/><text x="18.7215%" y="655.50"></text></g><g><title>do_syscall_64 (64 samples, 0.01%)</title><rect x="18.4717%" y="629" width="0.0133%" height="15" fill="rgb(241,99,19)" fg:x="89177" fg:w="64"/><text x="18.7217%" y="639.50"></text></g><g><title>GC_Thread#4 (874 samples, 0.18%)</title><rect x="18.3045%" y="821" width="0.1810%" height="15" fill="rgb(207,104,49)" fg:x="88370" fg:w="874"/><text x="18.5545%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (90 samples, 0.02%)</title><rect x="18.5154%" y="677" width="0.0186%" height="15" fill="rgb(234,99,18)" fg:x="89388" fg:w="90"/><text x="18.7654%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (196 samples, 0.04%)</title><rect x="18.4945%" y="693" width="0.0406%" height="15" fill="rgb(213,191,49)" fg:x="89287" fg:w="196"/><text x="18.7445%" y="703.50"></text></g><g><title>SpinPause (70 samples, 0.01%)</title><rect x="18.5357%" y="693" width="0.0145%" height="15" fill="rgb(210,226,19)" fg:x="89486" fg:w="70"/><text x="18.7857%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (282 samples, 0.06%)</title><rect x="18.4930%" y="709" width="0.0584%" height="15" fill="rgb(229,97,18)" fg:x="89280" fg:w="282"/><text x="18.7430%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (163 samples, 0.03%)</title><rect x="18.5607%" y="613" width="0.0338%" height="15" fill="rgb(211,167,15)" fg:x="89607" fg:w="163"/><text x="18.8107%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (115 samples, 0.02%)</title><rect x="18.5707%" y="597" width="0.0238%" height="15" fill="rgb(210,169,34)" fg:x="89655" fg:w="115"/><text x="18.8207%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (217 samples, 0.04%)</title><rect x="18.5518%" y="629" width="0.0449%" height="15" fill="rgb(241,121,31)" fg:x="89564" fg:w="217"/><text x="18.8018%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (242 samples, 0.05%)</title><rect x="18.5516%" y="677" width="0.0501%" height="15" fill="rgb(232,40,11)" fg:x="89563" fg:w="242"/><text x="18.8016%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (242 samples, 0.05%)</title><rect x="18.5516%" y="661" width="0.0501%" height="15" fill="rgb(205,86,26)" fg:x="89563" fg:w="242"/><text x="18.8016%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (241 samples, 0.05%)</title><rect x="18.5518%" y="645" width="0.0499%" height="15" fill="rgb(231,126,28)" fg:x="89564" fg:w="241"/><text x="18.8018%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (250 samples, 0.05%)</title><rect x="18.5516%" y="709" width="0.0518%" height="15" fill="rgb(219,221,18)" fg:x="89563" fg:w="250"/><text x="18.8016%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (250 samples, 0.05%)</title><rect x="18.5516%" y="693" width="0.0518%" height="15" fill="rgb(211,40,0)" fg:x="89563" fg:w="250"/><text x="18.8016%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (50 samples, 0.01%)</title><rect x="18.6069%" y="613" width="0.0104%" height="15" fill="rgb(239,85,43)" fg:x="89830" fg:w="50"/><text x="18.8569%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (69 samples, 0.01%)</title><rect x="18.6038%" y="629" width="0.0143%" height="15" fill="rgb(231,55,21)" fg:x="89815" fg:w="69"/><text x="18.8538%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (78 samples, 0.02%)</title><rect x="18.6038%" y="645" width="0.0162%" height="15" fill="rgb(225,184,43)" fg:x="89815" fg:w="78"/><text x="18.8538%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (85 samples, 0.02%)</title><rect x="18.6034%" y="661" width="0.0176%" height="15" fill="rgb(251,158,41)" fg:x="89813" fg:w="85"/><text x="18.8534%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (109 samples, 0.02%)</title><rect x="18.6034%" y="709" width="0.0226%" height="15" fill="rgb(234,159,37)" fg:x="89813" fg:w="109"/><text x="18.8534%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (109 samples, 0.02%)</title><rect x="18.6034%" y="693" width="0.0226%" height="15" fill="rgb(216,204,22)" fg:x="89813" fg:w="109"/><text x="18.8534%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (109 samples, 0.02%)</title><rect x="18.6034%" y="677" width="0.0226%" height="15" fill="rgb(214,17,3)" fg:x="89813" fg:w="109"/><text x="18.8534%" y="687.50"></text></g><g><title>G1ParTask::work (689 samples, 0.14%)</title><rect x="18.4930%" y="725" width="0.1427%" height="15" fill="rgb(212,111,17)" fg:x="89280" fg:w="689"/><text x="18.7430%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (61 samples, 0.01%)</title><rect x="18.6395%" y="693" width="0.0126%" height="15" fill="rgb(221,157,24)" fg:x="89987" fg:w="61"/><text x="18.8895%" y="703.50"></text></g><g><title>SpinPause (55 samples, 0.01%)</title><rect x="18.6407%" y="677" width="0.0114%" height="15" fill="rgb(252,16,13)" fg:x="89993" fg:w="55"/><text x="18.8907%" y="687.50"></text></g><g><title>RefProcPhase2Task::work (71 samples, 0.01%)</title><rect x="18.6395%" y="709" width="0.0147%" height="15" fill="rgb(221,62,2)" fg:x="89987" fg:w="71"/><text x="18.8895%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (108 samples, 0.02%)</title><rect x="18.6395%" y="725" width="0.0224%" height="15" fill="rgb(247,87,22)" fg:x="89987" fg:w="108"/><text x="18.8895%" y="735.50"></text></g><g><title>do_syscall_64 (51 samples, 0.01%)</title><rect x="18.6664%" y="629" width="0.0106%" height="15" fill="rgb(215,73,9)" fg:x="90117" fg:w="51"/><text x="18.9164%" y="639.50"></text></g><g><title>__x64_sys_futex (51 samples, 0.01%)</title><rect x="18.6664%" y="613" width="0.0106%" height="15" fill="rgb(207,175,33)" fg:x="90117" fg:w="51"/><text x="18.9164%" y="623.50"></text></g><g><title>do_futex (50 samples, 0.01%)</title><rect x="18.6666%" y="597" width="0.0104%" height="15" fill="rgb(243,129,54)" fg:x="90118" fg:w="50"/><text x="18.9166%" y="607.50"></text></g><g><title>futex_wait (50 samples, 0.01%)</title><rect x="18.6666%" y="581" width="0.0104%" height="15" fill="rgb(227,119,45)" fg:x="90118" fg:w="50"/><text x="18.9166%" y="591.50"></text></g><g><title>__GI___clone (908 samples, 0.19%)</title><rect x="18.4893%" y="805" width="0.1881%" height="15" fill="rgb(205,109,36)" fg:x="89262" fg:w="908"/><text x="18.7393%" y="815.50"></text></g><g><title>start_thread (908 samples, 0.19%)</title><rect x="18.4893%" y="789" width="0.1881%" height="15" fill="rgb(205,6,39)" fg:x="89262" fg:w="908"/><text x="18.7393%" y="799.50"></text></g><g><title>thread_native_entry (908 samples, 0.19%)</title><rect x="18.4893%" y="773" width="0.1881%" height="15" fill="rgb(221,32,16)" fg:x="89262" fg:w="908"/><text x="18.7393%" y="783.50"></text></g><g><title>Thread::call_run (908 samples, 0.19%)</title><rect x="18.4893%" y="757" width="0.1881%" height="15" fill="rgb(228,144,50)" fg:x="89262" fg:w="908"/><text x="18.7393%" y="767.50"></text></g><g><title>GangWorker::loop (908 samples, 0.19%)</title><rect x="18.4893%" y="741" width="0.1881%" height="15" fill="rgb(229,201,53)" fg:x="89262" fg:w="908"/><text x="18.7393%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (53 samples, 0.01%)</title><rect x="18.6664%" y="725" width="0.0110%" height="15" fill="rgb(249,153,27)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="735.50"></text></g><g><title>PosixSemaphore::wait (53 samples, 0.01%)</title><rect x="18.6664%" y="709" width="0.0110%" height="15" fill="rgb(227,106,25)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="719.50"></text></g><g><title>__new_sem_wait_slow (53 samples, 0.01%)</title><rect x="18.6664%" y="693" width="0.0110%" height="15" fill="rgb(230,65,29)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="703.50"></text></g><g><title>do_futex_wait (53 samples, 0.01%)</title><rect x="18.6664%" y="677" width="0.0110%" height="15" fill="rgb(221,57,46)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (53 samples, 0.01%)</title><rect x="18.6664%" y="661" width="0.0110%" height="15" fill="rgb(229,161,17)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.01%)</title><rect x="18.6664%" y="645" width="0.0110%" height="15" fill="rgb(222,213,11)" fg:x="90117" fg:w="53"/><text x="18.9164%" y="655.50"></text></g><g><title>GC_Thread#5 (929 samples, 0.19%)</title><rect x="18.4856%" y="821" width="0.1924%" height="15" fill="rgb(235,35,13)" fg:x="89244" fg:w="929"/><text x="18.7356%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (114 samples, 0.02%)</title><rect x="18.6987%" y="677" width="0.0236%" height="15" fill="rgb(233,158,34)" fg:x="90273" fg:w="114"/><text x="18.9487%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (188 samples, 0.04%)</title><rect x="18.6838%" y="693" width="0.0389%" height="15" fill="rgb(215,151,48)" fg:x="90201" fg:w="188"/><text x="18.9338%" y="703.50"></text></g><g><title>SpinPause (54 samples, 0.01%)</title><rect x="18.7233%" y="693" width="0.0112%" height="15" fill="rgb(229,84,14)" fg:x="90392" fg:w="54"/><text x="18.9733%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (259 samples, 0.05%)</title><rect x="18.6827%" y="709" width="0.0536%" height="15" fill="rgb(229,68,14)" fg:x="90196" fg:w="259"/><text x="18.9327%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (111 samples, 0.02%)</title><rect x="18.7403%" y="613" width="0.0230%" height="15" fill="rgb(243,106,26)" fg:x="90474" fg:w="111"/><text x="18.9903%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (93 samples, 0.02%)</title><rect x="18.7441%" y="597" width="0.0193%" height="15" fill="rgb(206,45,38)" fg:x="90492" fg:w="93"/><text x="18.9941%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (137 samples, 0.03%)</title><rect x="18.7368%" y="629" width="0.0284%" height="15" fill="rgb(226,6,15)" fg:x="90457" fg:w="137"/><text x="18.9868%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (164 samples, 0.03%)</title><rect x="18.7366%" y="677" width="0.0340%" height="15" fill="rgb(232,22,54)" fg:x="90456" fg:w="164"/><text x="18.9866%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (164 samples, 0.03%)</title><rect x="18.7366%" y="661" width="0.0340%" height="15" fill="rgb(229,222,32)" fg:x="90456" fg:w="164"/><text x="18.9866%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (163 samples, 0.03%)</title><rect x="18.7368%" y="645" width="0.0338%" height="15" fill="rgb(228,62,29)" fg:x="90457" fg:w="163"/><text x="18.9868%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (170 samples, 0.04%)</title><rect x="18.7366%" y="709" width="0.0352%" height="15" fill="rgb(251,103,34)" fg:x="90456" fg:w="170"/><text x="18.9866%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (170 samples, 0.04%)</title><rect x="18.7366%" y="693" width="0.0352%" height="15" fill="rgb(233,12,30)" fg:x="90456" fg:w="170"/><text x="18.9866%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (64 samples, 0.01%)</title><rect x="18.7757%" y="613" width="0.0133%" height="15" fill="rgb(238,52,0)" fg:x="90645" fg:w="64"/><text x="19.0257%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (50 samples, 0.01%)</title><rect x="18.7786%" y="597" width="0.0104%" height="15" fill="rgb(223,98,5)" fg:x="90659" fg:w="50"/><text x="19.0286%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (87 samples, 0.02%)</title><rect x="18.7722%" y="629" width="0.0180%" height="15" fill="rgb(228,75,37)" fg:x="90628" fg:w="87"/><text x="19.0222%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (114 samples, 0.02%)</title><rect x="18.7722%" y="645" width="0.0236%" height="15" fill="rgb(205,115,49)" fg:x="90628" fg:w="114"/><text x="19.0222%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (119 samples, 0.02%)</title><rect x="18.7720%" y="661" width="0.0246%" height="15" fill="rgb(250,154,43)" fg:x="90627" fg:w="119"/><text x="19.0220%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (129 samples, 0.03%)</title><rect x="18.7718%" y="709" width="0.0267%" height="15" fill="rgb(226,43,29)" fg:x="90626" fg:w="129"/><text x="19.0218%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (129 samples, 0.03%)</title><rect x="18.7718%" y="693" width="0.0267%" height="15" fill="rgb(249,228,39)" fg:x="90626" fg:w="129"/><text x="19.0218%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (129 samples, 0.03%)</title><rect x="18.7718%" y="677" width="0.0267%" height="15" fill="rgb(216,79,43)" fg:x="90626" fg:w="129"/><text x="19.0218%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (90 samples, 0.02%)</title><rect x="18.7989%" y="693" width="0.0186%" height="15" fill="rgb(228,95,12)" fg:x="90757" fg:w="90"/><text x="19.0489%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (62 samples, 0.01%)</title><rect x="18.8047%" y="677" width="0.0128%" height="15" fill="rgb(249,221,15)" fg:x="90785" fg:w="62"/><text x="19.0547%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (62 samples, 0.01%)</title><rect x="18.8047%" y="661" width="0.0128%" height="15" fill="rgb(233,34,13)" fg:x="90785" fg:w="62"/><text x="19.0547%" y="671.50"></text></g><g><title>JavaThread::oops_do (56 samples, 0.01%)</title><rect x="18.8060%" y="645" width="0.0116%" height="15" fill="rgb(214,103,39)" fg:x="90791" fg:w="56"/><text x="19.0560%" y="655.50"></text></g><g><title>G1ParTask::work (665 samples, 0.14%)</title><rect x="18.6827%" y="725" width="0.1377%" height="15" fill="rgb(251,126,39)" fg:x="90196" fg:w="665"/><text x="18.9327%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (106 samples, 0.02%)</title><rect x="18.7985%" y="709" width="0.0220%" height="15" fill="rgb(214,216,36)" fg:x="90755" fg:w="106"/><text x="19.0485%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (55 samples, 0.01%)</title><rect x="18.8232%" y="693" width="0.0114%" height="15" fill="rgb(220,221,8)" fg:x="90874" fg:w="55"/><text x="19.0732%" y="703.50"></text></g><g><title>SpinPause (50 samples, 0.01%)</title><rect x="18.8242%" y="677" width="0.0104%" height="15" fill="rgb(240,216,3)" fg:x="90879" fg:w="50"/><text x="19.0742%" y="687.50"></text></g><g><title>RefProcPhase2Task::work (63 samples, 0.01%)</title><rect x="18.8232%" y="709" width="0.0130%" height="15" fill="rgb(232,218,17)" fg:x="90874" fg:w="63"/><text x="19.0732%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (76 samples, 0.02%)</title><rect x="18.8232%" y="725" width="0.0157%" height="15" fill="rgb(229,163,45)" fg:x="90874" fg:w="76"/><text x="19.0732%" y="735.50"></text></g><g><title>finish_task_switch (59 samples, 0.01%)</title><rect x="18.8485%" y="517" width="0.0122%" height="15" fill="rgb(231,110,42)" fg:x="90996" fg:w="59"/><text x="19.0985%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.01%)</title><rect x="18.8487%" y="501" width="0.0120%" height="15" fill="rgb(208,170,48)" fg:x="90997" fg:w="58"/><text x="19.0987%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.01%)</title><rect x="18.8487%" y="485" width="0.0120%" height="15" fill="rgb(239,116,25)" fg:x="90997" fg:w="58"/><text x="19.0987%" y="495.50"></text></g><g><title>native_write_msr (58 samples, 0.01%)</title><rect x="18.8487%" y="469" width="0.0120%" height="15" fill="rgb(219,200,50)" fg:x="90997" fg:w="58"/><text x="19.0987%" y="479.50"></text></g><g><title>futex_wait_queue_me (83 samples, 0.02%)</title><rect x="18.8462%" y="565" width="0.0172%" height="15" fill="rgb(245,200,0)" fg:x="90985" fg:w="83"/><text x="19.0962%" y="575.50"></text></g><g><title>schedule (80 samples, 0.02%)</title><rect x="18.8468%" y="549" width="0.0166%" height="15" fill="rgb(245,119,33)" fg:x="90988" fg:w="80"/><text x="19.0968%" y="559.50"></text></g><g><title>__schedule (79 samples, 0.02%)</title><rect x="18.8470%" y="533" width="0.0164%" height="15" fill="rgb(231,125,12)" fg:x="90989" fg:w="79"/><text x="19.0970%" y="543.50"></text></g><g><title>do_syscall_64 (84 samples, 0.02%)</title><rect x="18.8462%" y="629" width="0.0174%" height="15" fill="rgb(216,96,41)" fg:x="90985" fg:w="84"/><text x="19.0962%" y="639.50"></text></g><g><title>__x64_sys_futex (84 samples, 0.02%)</title><rect x="18.8462%" y="613" width="0.0174%" height="15" fill="rgb(248,43,45)" fg:x="90985" fg:w="84"/><text x="19.0962%" y="623.50"></text></g><g><title>do_futex (84 samples, 0.02%)</title><rect x="18.8462%" y="597" width="0.0174%" height="15" fill="rgb(217,222,7)" fg:x="90985" fg:w="84"/><text x="19.0962%" y="607.50"></text></g><g><title>futex_wait (84 samples, 0.02%)</title><rect x="18.8462%" y="581" width="0.0174%" height="15" fill="rgb(233,28,6)" fg:x="90985" fg:w="84"/><text x="19.0962%" y="591.50"></text></g><g><title>__GI___clone (876 samples, 0.18%)</title><rect x="18.6825%" y="805" width="0.1815%" height="15" fill="rgb(231,218,15)" fg:x="90195" fg:w="876"/><text x="18.9325%" y="815.50"></text></g><g><title>start_thread (876 samples, 0.18%)</title><rect x="18.6825%" y="789" width="0.1815%" height="15" fill="rgb(226,171,48)" fg:x="90195" fg:w="876"/><text x="18.9325%" y="799.50"></text></g><g><title>thread_native_entry (876 samples, 0.18%)</title><rect x="18.6825%" y="773" width="0.1815%" height="15" fill="rgb(235,201,9)" fg:x="90195" fg:w="876"/><text x="18.9325%" y="783.50"></text></g><g><title>Thread::call_run (876 samples, 0.18%)</title><rect x="18.6825%" y="757" width="0.1815%" height="15" fill="rgb(217,80,15)" fg:x="90195" fg:w="876"/><text x="18.9325%" y="767.50"></text></g><g><title>GangWorker::loop (876 samples, 0.18%)</title><rect x="18.6825%" y="741" width="0.1815%" height="15" fill="rgb(219,152,8)" fg:x="90195" fg:w="876"/><text x="18.9325%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (91 samples, 0.02%)</title><rect x="18.8451%" y="725" width="0.0188%" height="15" fill="rgb(243,107,38)" fg:x="90980" fg:w="91"/><text x="19.0951%" y="735.50"></text></g><g><title>PosixSemaphore::wait (91 samples, 0.02%)</title><rect x="18.8451%" y="709" width="0.0188%" height="15" fill="rgb(231,17,5)" fg:x="90980" fg:w="91"/><text x="19.0951%" y="719.50"></text></g><g><title>__new_sem_wait_slow (91 samples, 0.02%)</title><rect x="18.8451%" y="693" width="0.0188%" height="15" fill="rgb(209,25,54)" fg:x="90980" fg:w="91"/><text x="19.0951%" y="703.50"></text></g><g><title>do_futex_wait (89 samples, 0.02%)</title><rect x="18.8456%" y="677" width="0.0184%" height="15" fill="rgb(219,0,2)" fg:x="90982" fg:w="89"/><text x="19.0956%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (89 samples, 0.02%)</title><rect x="18.8456%" y="661" width="0.0184%" height="15" fill="rgb(246,9,5)" fg:x="90982" fg:w="89"/><text x="19.0956%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.02%)</title><rect x="18.8462%" y="645" width="0.0178%" height="15" fill="rgb(226,159,4)" fg:x="90985" fg:w="86"/><text x="19.0962%" y="655.50"></text></g><g><title>GC_Thread#6 (900 samples, 0.19%)</title><rect x="18.6780%" y="821" width="0.1864%" height="15" fill="rgb(219,175,34)" fg:x="90173" fg:w="900"/><text x="18.9280%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (97 samples, 0.02%)</title><rect x="18.8895%" y="677" width="0.0201%" height="15" fill="rgb(236,10,46)" fg:x="91194" fg:w="97"/><text x="19.1395%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (197 samples, 0.04%)</title><rect x="18.8700%" y="693" width="0.0408%" height="15" fill="rgb(240,211,16)" fg:x="91100" fg:w="197"/><text x="19.1200%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (260 samples, 0.05%)</title><rect x="18.8683%" y="709" width="0.0539%" height="15" fill="rgb(205,3,43)" fg:x="91092" fg:w="260"/><text x="19.1183%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (131 samples, 0.03%)</title><rect x="18.9272%" y="613" width="0.0271%" height="15" fill="rgb(245,7,22)" fg:x="91376" fg:w="131"/><text x="19.1772%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (109 samples, 0.02%)</title><rect x="18.9317%" y="597" width="0.0226%" height="15" fill="rgb(239,132,32)" fg:x="91398" fg:w="109"/><text x="19.1817%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (160 samples, 0.03%)</title><rect x="18.9224%" y="629" width="0.0331%" height="15" fill="rgb(228,202,34)" fg:x="91353" fg:w="160"/><text x="19.1724%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (178 samples, 0.04%)</title><rect x="18.9224%" y="677" width="0.0369%" height="15" fill="rgb(254,200,22)" fg:x="91353" fg:w="178"/><text x="19.1724%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (178 samples, 0.04%)</title><rect x="18.9224%" y="661" width="0.0369%" height="15" fill="rgb(219,10,39)" fg:x="91353" fg:w="178"/><text x="19.1724%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (178 samples, 0.04%)</title><rect x="18.9224%" y="645" width="0.0369%" height="15" fill="rgb(226,210,39)" fg:x="91353" fg:w="178"/><text x="19.1724%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (189 samples, 0.04%)</title><rect x="18.9224%" y="709" width="0.0391%" height="15" fill="rgb(208,219,16)" fg:x="91353" fg:w="189"/><text x="19.1724%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (189 samples, 0.04%)</title><rect x="18.9224%" y="693" width="0.0391%" height="15" fill="rgb(216,158,51)" fg:x="91353" fg:w="189"/><text x="19.1724%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (51 samples, 0.01%)</title><rect x="18.9642%" y="613" width="0.0106%" height="15" fill="rgb(233,14,44)" fg:x="91555" fg:w="51"/><text x="19.2142%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (64 samples, 0.01%)</title><rect x="18.9620%" y="629" width="0.0133%" height="15" fill="rgb(237,97,39)" fg:x="91544" fg:w="64"/><text x="19.2120%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (81 samples, 0.02%)</title><rect x="18.9620%" y="645" width="0.0168%" height="15" fill="rgb(218,198,43)" fg:x="91544" fg:w="81"/><text x="19.2120%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (84 samples, 0.02%)</title><rect x="18.9615%" y="661" width="0.0174%" height="15" fill="rgb(231,104,20)" fg:x="91542" fg:w="84"/><text x="19.2115%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (94 samples, 0.02%)</title><rect x="18.9615%" y="709" width="0.0195%" height="15" fill="rgb(254,36,13)" fg:x="91542" fg:w="94"/><text x="19.2115%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (94 samples, 0.02%)</title><rect x="18.9615%" y="693" width="0.0195%" height="15" fill="rgb(248,14,50)" fg:x="91542" fg:w="94"/><text x="19.2115%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (94 samples, 0.02%)</title><rect x="18.9615%" y="677" width="0.0195%" height="15" fill="rgb(217,107,29)" fg:x="91542" fg:w="94"/><text x="19.2115%" y="687.50"></text></g><g><title>InterpreterOopMap::iterate_oop (51 samples, 0.01%)</title><rect x="18.9949%" y="613" width="0.0106%" height="15" fill="rgb(251,169,33)" fg:x="91703" fg:w="51"/><text x="19.2449%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (51 samples, 0.01%)</title><rect x="18.9949%" y="597" width="0.0106%" height="15" fill="rgb(217,108,32)" fg:x="91703" fg:w="51"/><text x="19.2449%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (130 samples, 0.03%)</title><rect x="18.9810%" y="693" width="0.0269%" height="15" fill="rgb(219,66,42)" fg:x="91636" fg:w="130"/><text x="19.2310%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (86 samples, 0.02%)</title><rect x="18.9901%" y="677" width="0.0178%" height="15" fill="rgb(206,180,7)" fg:x="91680" fg:w="86"/><text x="19.2401%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (86 samples, 0.02%)</title><rect x="18.9901%" y="661" width="0.0178%" height="15" fill="rgb(208,226,31)" fg:x="91680" fg:w="86"/><text x="19.2401%" y="671.50"></text></g><g><title>JavaThread::oops_do (86 samples, 0.02%)</title><rect x="18.9901%" y="645" width="0.0178%" height="15" fill="rgb(218,26,49)" fg:x="91680" fg:w="86"/><text x="19.2401%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (65 samples, 0.01%)</title><rect x="18.9945%" y="629" width="0.0135%" height="15" fill="rgb(233,197,48)" fg:x="91701" fg:w="65"/><text x="19.2445%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (135 samples, 0.03%)</title><rect x="18.9810%" y="709" width="0.0280%" height="15" fill="rgb(252,181,51)" fg:x="91636" fg:w="135"/><text x="19.2310%" y="719.50"></text></g><g><title>G1ParTask::work (680 samples, 0.14%)</title><rect x="18.8683%" y="725" width="0.1409%" height="15" fill="rgb(253,90,19)" fg:x="91092" fg:w="680"/><text x="19.1183%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (54 samples, 0.01%)</title><rect x="19.0123%" y="709" width="0.0112%" height="15" fill="rgb(215,171,30)" fg:x="91787" fg:w="54"/><text x="19.2623%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (108 samples, 0.02%)</title><rect x="19.0123%" y="725" width="0.0224%" height="15" fill="rgb(214,222,9)" fg:x="91787" fg:w="108"/><text x="19.2623%" y="735.50"></text></g><g><title>RefProcPhase3Task::work (54 samples, 0.01%)</title><rect x="19.0235%" y="709" width="0.0112%" height="15" fill="rgb(223,3,22)" fg:x="91841" fg:w="54"/><text x="19.2735%" y="719.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (54 samples, 0.01%)</title><rect x="19.0235%" y="693" width="0.0112%" height="15" fill="rgb(225,196,46)" fg:x="91841" fg:w="54"/><text x="19.2735%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (54 samples, 0.01%)</title><rect x="19.0235%" y="677" width="0.0112%" height="15" fill="rgb(209,110,37)" fg:x="91841" fg:w="54"/><text x="19.2735%" y="687.50"></text></g><g><title>SpinPause (53 samples, 0.01%)</title><rect x="19.0237%" y="661" width="0.0110%" height="15" fill="rgb(249,89,12)" fg:x="91842" fg:w="53"/><text x="19.2737%" y="671.50"></text></g><g><title>futex_wait_queue_me (52 samples, 0.01%)</title><rect x="19.0417%" y="565" width="0.0108%" height="15" fill="rgb(226,27,33)" fg:x="91929" fg:w="52"/><text x="19.2917%" y="575.50"></text></g><g><title>schedule (51 samples, 0.01%)</title><rect x="19.0419%" y="549" width="0.0106%" height="15" fill="rgb(213,82,22)" fg:x="91930" fg:w="51"/><text x="19.2919%" y="559.50"></text></g><g><title>__schedule (51 samples, 0.01%)</title><rect x="19.0419%" y="533" width="0.0106%" height="15" fill="rgb(248,140,0)" fg:x="91930" fg:w="51"/><text x="19.2919%" y="543.50"></text></g><g><title>do_syscall_64 (55 samples, 0.01%)</title><rect x="19.0413%" y="629" width="0.0114%" height="15" fill="rgb(228,106,3)" fg:x="91927" fg:w="55"/><text x="19.2913%" y="639.50"></text></g><g><title>__x64_sys_futex (54 samples, 0.01%)</title><rect x="19.0415%" y="613" width="0.0112%" height="15" fill="rgb(209,23,37)" fg:x="91928" fg:w="54"/><text x="19.2915%" y="623.50"></text></g><g><title>do_futex (54 samples, 0.01%)</title><rect x="19.0415%" y="597" width="0.0112%" height="15" fill="rgb(241,93,50)" fg:x="91928" fg:w="54"/><text x="19.2915%" y="607.50"></text></g><g><title>futex_wait (54 samples, 0.01%)</title><rect x="19.0415%" y="581" width="0.0112%" height="15" fill="rgb(253,46,43)" fg:x="91928" fg:w="54"/><text x="19.2915%" y="591.50"></text></g><g><title>__GI___clone (903 samples, 0.19%)</title><rect x="18.8663%" y="805" width="0.1870%" height="15" fill="rgb(226,206,43)" fg:x="91082" fg:w="903"/><text x="19.1163%" y="815.50"></text></g><g><title>start_thread (903 samples, 0.19%)</title><rect x="18.8663%" y="789" width="0.1870%" height="15" fill="rgb(217,54,7)" fg:x="91082" fg:w="903"/><text x="19.1163%" y="799.50"></text></g><g><title>thread_native_entry (903 samples, 0.19%)</title><rect x="18.8663%" y="773" width="0.1870%" height="15" fill="rgb(223,5,52)" fg:x="91082" fg:w="903"/><text x="19.1163%" y="783.50"></text></g><g><title>Thread::call_run (903 samples, 0.19%)</title><rect x="18.8663%" y="757" width="0.1870%" height="15" fill="rgb(206,52,46)" fg:x="91082" fg:w="903"/><text x="19.1163%" y="767.50"></text></g><g><title>GangWorker::loop (903 samples, 0.19%)</title><rect x="18.8663%" y="741" width="0.1870%" height="15" fill="rgb(253,136,11)" fg:x="91082" fg:w="903"/><text x="19.1163%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (59 samples, 0.01%)</title><rect x="19.0411%" y="725" width="0.0122%" height="15" fill="rgb(208,106,33)" fg:x="91926" fg:w="59"/><text x="19.2911%" y="735.50"></text></g><g><title>PosixSemaphore::wait (59 samples, 0.01%)</title><rect x="19.0411%" y="709" width="0.0122%" height="15" fill="rgb(206,54,4)" fg:x="91926" fg:w="59"/><text x="19.2911%" y="719.50"></text></g><g><title>__new_sem_wait_slow (59 samples, 0.01%)</title><rect x="19.0411%" y="693" width="0.0122%" height="15" fill="rgb(213,3,15)" fg:x="91926" fg:w="59"/><text x="19.2911%" y="703.50"></text></g><g><title>do_futex_wait (58 samples, 0.01%)</title><rect x="19.0413%" y="677" width="0.0120%" height="15" fill="rgb(252,211,39)" fg:x="91927" fg:w="58"/><text x="19.2913%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (58 samples, 0.01%)</title><rect x="19.0413%" y="661" width="0.0120%" height="15" fill="rgb(223,6,36)" fg:x="91927" fg:w="58"/><text x="19.2913%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="19.0413%" y="645" width="0.0120%" height="15" fill="rgb(252,169,45)" fg:x="91927" fg:w="58"/><text x="19.2913%" y="655.50"></text></g><g><title>GC_Thread#7 (917 samples, 0.19%)</title><rect x="18.8644%" y="821" width="0.1899%" height="15" fill="rgb(212,48,26)" fg:x="91073" fg:w="917"/><text x="19.1144%" y="831.50"></text></g><g><title>[perf-987172.map] (135 samples, 0.03%)</title><rect x="19.0620%" y="805" width="0.0280%" height="15" fill="rgb(251,102,48)" fg:x="92027" fg:w="135"/><text x="19.3120%" y="815.50"></text></g><g><title>Service_Thread (161 samples, 0.03%)</title><rect x="19.0601%" y="821" width="0.0333%" height="15" fill="rgb(243,208,16)" fg:x="92018" fg:w="161"/><text x="19.3101%" y="831.50"></text></g><g><title>futex_wait_queue_me (96 samples, 0.02%)</title><rect x="19.1045%" y="533" width="0.0199%" height="15" fill="rgb(219,96,24)" fg:x="92232" fg:w="96"/><text x="19.3545%" y="543.50"></text></g><g><title>schedule (83 samples, 0.02%)</title><rect x="19.1072%" y="517" width="0.0172%" height="15" fill="rgb(219,33,29)" fg:x="92245" fg:w="83"/><text x="19.3572%" y="527.50"></text></g><g><title>__schedule (83 samples, 0.02%)</title><rect x="19.1072%" y="501" width="0.0172%" height="15" fill="rgb(223,176,5)" fg:x="92245" fg:w="83"/><text x="19.3572%" y="511.50"></text></g><g><title>do_futex (111 samples, 0.02%)</title><rect x="19.1039%" y="565" width="0.0230%" height="15" fill="rgb(228,140,14)" fg:x="92229" fg:w="111"/><text x="19.3539%" y="575.50"></text></g><g><title>futex_wait (110 samples, 0.02%)</title><rect x="19.1041%" y="549" width="0.0228%" height="15" fill="rgb(217,179,31)" fg:x="92230" fg:w="110"/><text x="19.3541%" y="559.50"></text></g><g><title>do_syscall_64 (118 samples, 0.02%)</title><rect x="19.1030%" y="597" width="0.0244%" height="15" fill="rgb(230,9,30)" fg:x="92225" fg:w="118"/><text x="19.3530%" y="607.50"></text></g><g><title>__x64_sys_futex (118 samples, 0.02%)</title><rect x="19.1030%" y="581" width="0.0244%" height="15" fill="rgb(230,136,20)" fg:x="92225" fg:w="118"/><text x="19.3530%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (139 samples, 0.03%)</title><rect x="19.0997%" y="661" width="0.0288%" height="15" fill="rgb(215,210,22)" fg:x="92209" fg:w="139"/><text x="19.3497%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (138 samples, 0.03%)</title><rect x="19.0999%" y="645" width="0.0286%" height="15" fill="rgb(218,43,5)" fg:x="92210" fg:w="138"/><text x="19.3499%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (132 samples, 0.03%)</title><rect x="19.1012%" y="629" width="0.0273%" height="15" fill="rgb(216,11,5)" fg:x="92216" fg:w="132"/><text x="19.3512%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.03%)</title><rect x="19.1030%" y="613" width="0.0255%" height="15" fill="rgb(209,82,29)" fg:x="92225" fg:w="123"/><text x="19.3530%" y="623.50"></text></g><g><title>Monitor::wait (162 samples, 0.03%)</title><rect x="19.0987%" y="709" width="0.0336%" height="15" fill="rgb(244,115,12)" fg:x="92204" fg:w="162"/><text x="19.3487%" y="719.50"></text></g><g><title>Monitor::IWait (160 samples, 0.03%)</title><rect x="19.0991%" y="693" width="0.0331%" height="15" fill="rgb(222,82,18)" fg:x="92206" fg:w="160"/><text x="19.3491%" y="703.50"></text></g><g><title>os::PlatformEvent::park (157 samples, 0.03%)</title><rect x="19.0997%" y="677" width="0.0325%" height="15" fill="rgb(249,227,8)" fg:x="92209" fg:w="157"/><text x="19.3497%" y="687.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (68 samples, 0.01%)</title><rect x="19.1391%" y="661" width="0.0141%" height="15" fill="rgb(253,141,45)" fg:x="92399" fg:w="68"/><text x="19.3891%" y="671.50"></text></g><g><title>NMethodSweeper::process_compiled_method (87 samples, 0.02%)</title><rect x="19.1386%" y="677" width="0.0180%" height="15" fill="rgb(234,184,4)" fg:x="92397" fg:w="87"/><text x="19.3886%" y="687.50"></text></g><g><title>NMethodSweeper::possibly_sweep (119 samples, 0.02%)</title><rect x="19.1322%" y="709" width="0.0246%" height="15" fill="rgb(218,194,23)" fg:x="92366" fg:w="119"/><text x="19.3822%" y="719.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (111 samples, 0.02%)</title><rect x="19.1339%" y="693" width="0.0230%" height="15" fill="rgb(235,66,41)" fg:x="92374" fg:w="111"/><text x="19.3839%" y="703.50"></text></g><g><title>__GI___clone (295 samples, 0.06%)</title><rect x="19.0968%" y="805" width="0.0611%" height="15" fill="rgb(245,217,1)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="815.50"></text></g><g><title>start_thread (295 samples, 0.06%)</title><rect x="19.0968%" y="789" width="0.0611%" height="15" fill="rgb(229,91,1)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="799.50"></text></g><g><title>thread_native_entry (295 samples, 0.06%)</title><rect x="19.0968%" y="773" width="0.0611%" height="15" fill="rgb(207,101,30)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="783.50"></text></g><g><title>Thread::call_run (295 samples, 0.06%)</title><rect x="19.0968%" y="757" width="0.0611%" height="15" fill="rgb(223,82,49)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (295 samples, 0.06%)</title><rect x="19.0968%" y="741" width="0.0611%" height="15" fill="rgb(218,167,17)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="751.50"></text></g><g><title>NMethodSweeper::sweeper_loop (295 samples, 0.06%)</title><rect x="19.0968%" y="725" width="0.0611%" height="15" fill="rgb(208,103,14)" fg:x="92195" fg:w="295"/><text x="19.3468%" y="735.50"></text></g><g><title>Sweeper_thread (313 samples, 0.06%)</title><rect x="19.0937%" y="821" width="0.0648%" height="15" fill="rgb(238,20,8)" fg:x="92180" fg:w="313"/><text x="19.3437%" y="831.50"></text></g><g><title>Java_java_io_FileInputStream_available0 (50 samples, 0.01%)</title><rect x="19.2348%" y="789" width="0.0104%" height="15" fill="rgb(218,80,54)" fg:x="92861" fg:w="50"/><text x="19.4848%" y="799.50"></text></g><g><title>get_cpu_load (89 samples, 0.02%)</title><rect x="19.2563%" y="789" width="0.0184%" height="15" fill="rgb(240,144,17)" fg:x="92965" fg:w="89"/><text x="19.5063%" y="799.50"></text></g><g><title>get_cpuload_internal (89 samples, 0.02%)</title><rect x="19.2563%" y="773" width="0.0184%" height="15" fill="rgb(245,27,50)" fg:x="92965" fg:w="89"/><text x="19.5063%" y="783.50"></text></g><g><title>get_totalticks (89 samples, 0.02%)</title><rect x="19.2563%" y="757" width="0.0184%" height="15" fill="rgb(251,51,7)" fg:x="92965" fg:w="89"/><text x="19.5063%" y="767.50"></text></g><g><title>[perf-987172.map] (543 samples, 0.11%)</title><rect x="19.1635%" y="805" width="0.1125%" height="15" fill="rgb(245,217,29)" fg:x="92517" fg:w="543"/><text x="19.4135%" y="815.50"></text></g><g><title>Thread-0 (615 samples, 0.13%)</title><rect x="19.1585%" y="821" width="0.1274%" height="15" fill="rgb(221,176,29)" fg:x="92493" fg:w="615"/><text x="19.4085%" y="831.50"></text></g><g><title>PeriodicTask::real_time_tick (62 samples, 0.01%)</title><rect x="19.2894%" y="725" width="0.0128%" height="15" fill="rgb(212,180,24)" fg:x="93125" fg:w="62"/><text x="19.5394%" y="735.50"></text></g><g><title>futex_wait_queue_me (95 samples, 0.02%)</title><rect x="19.3149%" y="533" width="0.0197%" height="15" fill="rgb(254,24,2)" fg:x="93248" fg:w="95"/><text x="19.5649%" y="543.50"></text></g><g><title>schedule (82 samples, 0.02%)</title><rect x="19.3176%" y="517" width="0.0170%" height="15" fill="rgb(230,100,2)" fg:x="93261" fg:w="82"/><text x="19.5676%" y="527.50"></text></g><g><title>__schedule (79 samples, 0.02%)</title><rect x="19.3182%" y="501" width="0.0164%" height="15" fill="rgb(219,142,25)" fg:x="93264" fg:w="79"/><text x="19.5682%" y="511.50"></text></g><g><title>do_futex (106 samples, 0.02%)</title><rect x="19.3131%" y="565" width="0.0220%" height="15" fill="rgb(240,73,43)" fg:x="93239" fg:w="106"/><text x="19.5631%" y="575.50"></text></g><g><title>futex_wait (105 samples, 0.02%)</title><rect x="19.3133%" y="549" width="0.0217%" height="15" fill="rgb(214,114,15)" fg:x="93240" fg:w="105"/><text x="19.5633%" y="559.50"></text></g><g><title>do_syscall_64 (113 samples, 0.02%)</title><rect x="19.3120%" y="597" width="0.0234%" height="15" fill="rgb(207,130,4)" fg:x="93234" fg:w="113"/><text x="19.5620%" y="607.50"></text></g><g><title>__x64_sys_futex (113 samples, 0.02%)</title><rect x="19.3120%" y="581" width="0.0234%" height="15" fill="rgb(221,25,40)" fg:x="93234" fg:w="113"/><text x="19.5620%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (137 samples, 0.03%)</title><rect x="19.3089%" y="661" width="0.0284%" height="15" fill="rgb(241,184,7)" fg:x="93219" fg:w="137"/><text x="19.5589%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (136 samples, 0.03%)</title><rect x="19.3091%" y="645" width="0.0282%" height="15" fill="rgb(235,159,4)" fg:x="93220" fg:w="136"/><text x="19.5591%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (129 samples, 0.03%)</title><rect x="19.3106%" y="629" width="0.0267%" height="15" fill="rgb(214,87,48)" fg:x="93227" fg:w="129"/><text x="19.5606%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.03%)</title><rect x="19.3118%" y="613" width="0.0255%" height="15" fill="rgb(246,198,24)" fg:x="93233" fg:w="123"/><text x="19.5618%" y="623.50"></text></g><g><title>Monitor::wait (178 samples, 0.04%)</title><rect x="19.3035%" y="709" width="0.0369%" height="15" fill="rgb(209,66,40)" fg:x="93193" fg:w="178"/><text x="19.5535%" y="719.50"></text></g><g><title>Monitor::IWait (174 samples, 0.04%)</title><rect x="19.3044%" y="693" width="0.0360%" height="15" fill="rgb(233,147,39)" fg:x="93197" fg:w="174"/><text x="19.5544%" y="703.50"></text></g><g><title>os::PlatformEvent::park (162 samples, 0.03%)</title><rect x="19.3068%" y="677" width="0.0336%" height="15" fill="rgb(231,145,52)" fg:x="93209" fg:w="162"/><text x="19.5568%" y="687.50"></text></g><g><title>WatcherThread::sleep (190 samples, 0.04%)</title><rect x="19.3031%" y="725" width="0.0394%" height="15" fill="rgb(206,20,26)" fg:x="93191" fg:w="190"/><text x="19.5531%" y="735.50"></text></g><g><title>__GI___clone (257 samples, 0.05%)</title><rect x="19.2894%" y="805" width="0.0532%" height="15" fill="rgb(238,220,4)" fg:x="93125" fg:w="257"/><text x="19.5394%" y="815.50"></text></g><g><title>start_thread (257 samples, 0.05%)</title><rect x="19.2894%" y="789" width="0.0532%" height="15" fill="rgb(252,195,42)" fg:x="93125" fg:w="257"/><text x="19.5394%" y="799.50"></text></g><g><title>thread_native_entry (257 samples, 0.05%)</title><rect x="19.2894%" y="773" width="0.0532%" height="15" fill="rgb(209,10,6)" fg:x="93125" fg:w="257"/><text x="19.5394%" y="783.50"></text></g><g><title>Thread::call_run (257 samples, 0.05%)</title><rect x="19.2894%" y="757" width="0.0532%" height="15" fill="rgb(229,3,52)" fg:x="93125" fg:w="257"/><text x="19.5394%" y="767.50"></text></g><g><title>WatcherThread::run (257 samples, 0.05%)</title><rect x="19.2894%" y="741" width="0.0532%" height="15" fill="rgb(253,49,37)" fg:x="93125" fg:w="257"/><text x="19.5394%" y="751.50"></text></g><g><title>VM_Periodic_Tas (279 samples, 0.06%)</title><rect x="19.2859%" y="821" width="0.0578%" height="15" fill="rgb(240,103,49)" fg:x="93108" fg:w="279"/><text x="19.5359%" y="831.50"></text></g><g><title>[unknown] (63 samples, 0.01%)</title><rect x="19.3470%" y="805" width="0.0130%" height="15" fill="rgb(250,182,30)" fg:x="93403" fg:w="63"/><text x="19.5970%" y="815.50"></text></g><g><title>vframe::sender (59 samples, 0.01%)</title><rect x="19.3479%" y="789" width="0.0122%" height="15" fill="rgb(248,8,30)" fg:x="93407" fg:w="59"/><text x="19.5979%" y="799.50"></text></g><g><title>PosixSemaphore::signal (50 samples, 0.01%)</title><rect x="19.4032%" y="645" width="0.0104%" height="15" fill="rgb(237,120,30)" fg:x="93674" fg:w="50"/><text x="19.6532%" y="655.50"></text></g><g><title>__new_sem_post (49 samples, 0.01%)</title><rect x="19.4034%" y="629" width="0.0101%" height="15" fill="rgb(221,146,34)" fg:x="93675" fg:w="49"/><text x="19.6534%" y="639.50"></text></g><g><title>futex_wake (49 samples, 0.01%)</title><rect x="19.4034%" y="613" width="0.0101%" height="15" fill="rgb(242,55,13)" fg:x="93675" fg:w="49"/><text x="19.6534%" y="623.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (94 samples, 0.02%)</title><rect x="19.4032%" y="661" width="0.0195%" height="15" fill="rgb(242,112,31)" fg:x="93674" fg:w="94"/><text x="19.6532%" y="671.50"></text></g><g><title>WorkGang::run_task (95 samples, 0.02%)</title><rect x="19.4032%" y="677" width="0.0197%" height="15" fill="rgb(249,192,27)" fg:x="93674" fg:w="95"/><text x="19.6532%" y="687.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (103 samples, 0.02%)</title><rect x="19.4017%" y="693" width="0.0213%" height="15" fill="rgb(208,204,44)" fg:x="93667" fg:w="103"/><text x="19.6517%" y="703.50"></text></g><g><title>SafepointSynchronize::begin (258 samples, 0.05%)</title><rect x="19.3771%" y="709" width="0.0534%" height="15" fill="rgb(208,93,54)" fg:x="93548" fg:w="258"/><text x="19.6271%" y="719.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (52 samples, 0.01%)</title><rect x="19.4398%" y="645" width="0.0108%" height="15" fill="rgb(242,1,31)" fg:x="93851" fg:w="52"/><text x="19.6898%" y="655.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (53 samples, 0.01%)</title><rect x="19.4398%" y="661" width="0.0110%" height="15" fill="rgb(241,83,25)" fg:x="93851" fg:w="53"/><text x="19.6898%" y="671.50"></text></g><g><title>VM_Deoptimize::doit (59 samples, 0.01%)</title><rect x="19.4398%" y="677" width="0.0122%" height="15" fill="rgb(205,169,50)" fg:x="93851" fg:w="59"/><text x="19.6898%" y="687.50"></text></g><g><title>VM_Operation::evaluate (119 samples, 0.02%)</title><rect x="19.4355%" y="693" width="0.0246%" height="15" fill="rgb(239,186,37)" fg:x="93830" fg:w="119"/><text x="19.6855%" y="703.50"></text></g><g><title>VMThread::evaluate_operation (122 samples, 0.03%)</title><rect x="19.4351%" y="709" width="0.0253%" height="15" fill="rgb(205,221,10)" fg:x="93828" fg:w="122"/><text x="19.6851%" y="719.50"></text></g><g><title>Thread::call_run (466 samples, 0.10%)</title><rect x="19.3644%" y="757" width="0.0965%" height="15" fill="rgb(218,196,15)" fg:x="93487" fg:w="466"/><text x="19.6144%" y="767.50"></text></g><g><title>VMThread::run (466 samples, 0.10%)</title><rect x="19.3644%" y="741" width="0.0965%" height="15" fill="rgb(218,196,35)" fg:x="93487" fg:w="466"/><text x="19.6144%" y="751.50"></text></g><g><title>VMThread::loop (466 samples, 0.10%)</title><rect x="19.3644%" y="725" width="0.0965%" height="15" fill="rgb(233,63,24)" fg:x="93487" fg:w="466"/><text x="19.6144%" y="735.50"></text></g><g><title>__GI___clone (490 samples, 0.10%)</title><rect x="19.3601%" y="805" width="0.1015%" height="15" fill="rgb(225,8,4)" fg:x="93466" fg:w="490"/><text x="19.6101%" y="815.50"></text></g><g><title>start_thread (472 samples, 0.10%)</title><rect x="19.3638%" y="789" width="0.0978%" height="15" fill="rgb(234,105,35)" fg:x="93484" fg:w="472"/><text x="19.6138%" y="799.50"></text></g><g><title>thread_native_entry (471 samples, 0.10%)</title><rect x="19.3640%" y="773" width="0.0976%" height="15" fill="rgb(236,21,32)" fg:x="93485" fg:w="471"/><text x="19.6140%" y="783.50"></text></g><g><title>VM_Thread (573 samples, 0.12%)</title><rect x="19.3437%" y="821" width="0.1187%" height="15" fill="rgb(228,109,6)" fg:x="93387" fg:w="573"/><text x="19.5937%" y="831.50"></text></g><g><title>__x64_sys_epoll_pwait (62 samples, 0.01%)</title><rect x="19.5138%" y="757" width="0.0128%" height="15" fill="rgb(229,215,31)" fg:x="94208" fg:w="62"/><text x="19.7638%" y="767.50"></text></g><g><title>do_epoll_wait (62 samples, 0.01%)</title><rect x="19.5138%" y="741" width="0.0128%" height="15" fill="rgb(221,52,54)" fg:x="94208" fg:w="62"/><text x="19.7638%" y="751.50"></text></g><g><title>schedule_hrtimeout_range_clock (56 samples, 0.01%)</title><rect x="19.5150%" y="725" width="0.0116%" height="15" fill="rgb(252,129,43)" fg:x="94214" fg:w="56"/><text x="19.7650%" y="735.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="19.5152%" y="709" width="0.0114%" height="15" fill="rgb(248,183,27)" fg:x="94215" fg:w="55"/><text x="19.7652%" y="719.50"></text></g><g><title>__schedule (53 samples, 0.01%)</title><rect x="19.5156%" y="693" width="0.0110%" height="15" fill="rgb(250,0,22)" fg:x="94217" fg:w="53"/><text x="19.7656%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (99 samples, 0.02%)</title><rect x="19.5299%" y="645" width="0.0205%" height="15" fill="rgb(213,166,10)" fg:x="94286" fg:w="99"/><text x="19.7799%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (98 samples, 0.02%)</title><rect x="19.5301%" y="629" width="0.0203%" height="15" fill="rgb(207,163,36)" fg:x="94287" fg:w="98"/><text x="19.7801%" y="639.50"></text></g><g><title>native_write_msr (96 samples, 0.02%)</title><rect x="19.5305%" y="613" width="0.0199%" height="15" fill="rgb(208,122,22)" fg:x="94289" fg:w="96"/><text x="19.7805%" y="623.50"></text></g><g><title>finish_task_switch (110 samples, 0.02%)</title><rect x="19.5295%" y="661" width="0.0228%" height="15" fill="rgb(207,104,49)" fg:x="94284" fg:w="110"/><text x="19.7795%" y="671.50"></text></g><g><title>futex_wait_queue_me (130 samples, 0.03%)</title><rect x="19.5266%" y="709" width="0.0269%" height="15" fill="rgb(248,211,50)" fg:x="94270" fg:w="130"/><text x="19.7766%" y="719.50"></text></g><g><title>schedule (128 samples, 0.03%)</title><rect x="19.5270%" y="693" width="0.0265%" height="15" fill="rgb(217,13,45)" fg:x="94272" fg:w="128"/><text x="19.7770%" y="703.50"></text></g><g><title>__schedule (127 samples, 0.03%)</title><rect x="19.5272%" y="677" width="0.0263%" height="15" fill="rgb(211,216,49)" fg:x="94273" fg:w="127"/><text x="19.7772%" y="687.50"></text></g><g><title>futex_wait (131 samples, 0.03%)</title><rect x="19.5266%" y="725" width="0.0271%" height="15" fill="rgb(221,58,53)" fg:x="94270" fg:w="131"/><text x="19.7766%" y="735.50"></text></g><g><title>__x64_sys_futex (148 samples, 0.03%)</title><rect x="19.5266%" y="757" width="0.0307%" height="15" fill="rgb(220,112,41)" fg:x="94270" fg:w="148"/><text x="19.7766%" y="767.50"></text></g><g><title>do_futex (148 samples, 0.03%)</title><rect x="19.5266%" y="741" width="0.0307%" height="15" fill="rgb(236,38,28)" fg:x="94270" fg:w="148"/><text x="19.7766%" y="751.50"></text></g><g><title>do_syscall_64 (286 samples, 0.06%)</title><rect x="19.5131%" y="773" width="0.0592%" height="15" fill="rgb(227,195,22)" fg:x="94205" fg:w="286"/><text x="19.7631%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (290 samples, 0.06%)</title><rect x="19.5127%" y="789" width="0.0601%" height="15" fill="rgb(214,55,33)" fg:x="94203" fg:w="290"/><text x="19.7627%" y="799.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (549 samples, 0.11%)</title><rect x="19.4688%" y="805" width="0.1137%" height="15" fill="rgb(248,80,13)" fg:x="93991" fg:w="549"/><text x="19.7188%" y="815.50"></text></g><g><title>bazel (594 samples, 0.12%)</title><rect x="19.4686%" y="821" width="0.1230%" height="15" fill="rgb(238,52,6)" fg:x="93990" fg:w="594"/><text x="19.7186%" y="831.50"></text></g><g><title>_dl_catch_exception (68 samples, 0.01%)</title><rect x="19.6033%" y="709" width="0.0141%" height="15" fill="rgb(224,198,47)" fg:x="94640" fg:w="68"/><text x="19.8533%" y="719.50"></text></g><g><title>openaux (68 samples, 0.01%)</title><rect x="19.6033%" y="693" width="0.0141%" height="15" fill="rgb(233,171,20)" fg:x="94640" fg:w="68"/><text x="19.8533%" y="703.50"></text></g><g><title>_dl_map_object (68 samples, 0.01%)</title><rect x="19.6033%" y="677" width="0.0141%" height="15" fill="rgb(241,30,25)" fg:x="94640" fg:w="68"/><text x="19.8533%" y="687.50"></text></g><g><title>_dl_map_object_deps (71 samples, 0.01%)</title><rect x="19.6030%" y="725" width="0.0147%" height="15" fill="rgb(207,171,38)" fg:x="94639" fg:w="71"/><text x="19.8530%" y="735.50"></text></g><g><title>elf_machine_rela (104 samples, 0.02%)</title><rect x="19.6252%" y="693" width="0.0215%" height="15" fill="rgb(234,70,1)" fg:x="94746" fg:w="104"/><text x="19.8752%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (81 samples, 0.02%)</title><rect x="19.6300%" y="677" width="0.0168%" height="15" fill="rgb(232,178,18)" fg:x="94769" fg:w="81"/><text x="19.8800%" y="687.50"></text></g><g><title>elf_dynamic_do_Rela (127 samples, 0.03%)</title><rect x="19.6217%" y="709" width="0.0263%" height="15" fill="rgb(241,78,40)" fg:x="94729" fg:w="127"/><text x="19.8717%" y="719.50"></text></g><g><title>_dl_relocate_object (142 samples, 0.03%)</title><rect x="19.6188%" y="725" width="0.0294%" height="15" fill="rgb(222,35,25)" fg:x="94715" fg:w="142"/><text x="19.8688%" y="735.50"></text></g><g><title>[ld-2.31.so] (226 samples, 0.05%)</title><rect x="19.6026%" y="741" width="0.0468%" height="15" fill="rgb(207,92,16)" fg:x="94637" fg:w="226"/><text x="19.8526%" y="751.50"></text></g><g><title>_dl_start_final (229 samples, 0.05%)</title><rect x="19.6026%" y="773" width="0.0474%" height="15" fill="rgb(216,59,51)" fg:x="94637" fg:w="229"/><text x="19.8526%" y="783.50"></text></g><g><title>_dl_sysdep_start (229 samples, 0.05%)</title><rect x="19.6026%" y="757" width="0.0474%" height="15" fill="rgb(213,80,28)" fg:x="94637" fg:w="229"/><text x="19.8526%" y="767.50"></text></g><g><title>_dl_start (233 samples, 0.05%)</title><rect x="19.6026%" y="789" width="0.0483%" height="15" fill="rgb(220,93,7)" fg:x="94637" fg:w="233"/><text x="19.8526%" y="799.50"></text></g><g><title>_start (258 samples, 0.05%)</title><rect x="19.5983%" y="805" width="0.0534%" height="15" fill="rgb(225,24,44)" fg:x="94616" fg:w="258"/><text x="19.8483%" y="815.50"></text></g><g><title>build-runfiles (336 samples, 0.07%)</title><rect x="19.5919%" y="821" width="0.0696%" height="15" fill="rgb(243,74,40)" fg:x="94585" fg:w="336"/><text x="19.8419%" y="831.50"></text></g><g><title>do_open_execat (144 samples, 0.03%)</title><rect x="19.7468%" y="389" width="0.0298%" height="15" fill="rgb(228,39,7)" fg:x="95333" fg:w="144"/><text x="19.9968%" y="399.50"></text></g><g><title>do_filp_open (139 samples, 0.03%)</title><rect x="19.7478%" y="373" width="0.0288%" height="15" fill="rgb(227,79,8)" fg:x="95338" fg:w="139"/><text x="19.9978%" y="383.50"></text></g><g><title>path_openat (138 samples, 0.03%)</title><rect x="19.7480%" y="357" width="0.0286%" height="15" fill="rgb(236,58,11)" fg:x="95339" fg:w="138"/><text x="19.9980%" y="367.50"></text></g><g><title>load_elf_binary (51 samples, 0.01%)</title><rect x="19.7779%" y="389" width="0.0106%" height="15" fill="rgb(249,63,35)" fg:x="95483" fg:w="51"/><text x="20.0279%" y="399.50"></text></g><g><title>select_task_rq_fair (89 samples, 0.02%)</title><rect x="19.7963%" y="373" width="0.0184%" height="15" fill="rgb(252,114,16)" fg:x="95572" fg:w="89"/><text x="20.0463%" y="383.50"></text></g><g><title>find_idlest_group (79 samples, 0.02%)</title><rect x="19.7984%" y="357" width="0.0164%" height="15" fill="rgb(254,151,24)" fg:x="95582" fg:w="79"/><text x="20.0484%" y="367.50"></text></g><g><title>sched_exec (156 samples, 0.03%)</title><rect x="19.7959%" y="389" width="0.0323%" height="15" fill="rgb(253,54,39)" fg:x="95570" fg:w="156"/><text x="20.0459%" y="399.50"></text></g><g><title>stop_one_cpu (65 samples, 0.01%)</title><rect x="19.8147%" y="373" width="0.0135%" height="15" fill="rgb(243,25,45)" fg:x="95661" fg:w="65"/><text x="20.0647%" y="383.50"></text></g><g><title>_cond_resched (65 samples, 0.01%)</title><rect x="19.8147%" y="357" width="0.0135%" height="15" fill="rgb(234,134,9)" fg:x="95661" fg:w="65"/><text x="20.0647%" y="367.50"></text></g><g><title>__schedule (65 samples, 0.01%)</title><rect x="19.8147%" y="341" width="0.0135%" height="15" fill="rgb(227,166,31)" fg:x="95661" fg:w="65"/><text x="20.0647%" y="351.50"></text></g><g><title>finish_task_switch (64 samples, 0.01%)</title><rect x="19.8149%" y="325" width="0.0133%" height="15" fill="rgb(245,143,41)" fg:x="95662" fg:w="64"/><text x="20.0649%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (60 samples, 0.01%)</title><rect x="19.8158%" y="309" width="0.0124%" height="15" fill="rgb(238,181,32)" fg:x="95666" fg:w="60"/><text x="20.0658%" y="319.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (60 samples, 0.01%)</title><rect x="19.8158%" y="293" width="0.0124%" height="15" fill="rgb(224,113,18)" fg:x="95666" fg:w="60"/><text x="20.0658%" y="303.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="19.8160%" y="277" width="0.0122%" height="15" fill="rgb(240,229,28)" fg:x="95667" fg:w="59"/><text x="20.0660%" y="287.50"></text></g><g><title>security_bprm_check (98 samples, 0.02%)</title><rect x="19.8282%" y="389" width="0.0203%" height="15" fill="rgb(250,185,3)" fg:x="95726" fg:w="98"/><text x="20.0782%" y="399.50"></text></g><g><title>tomoyo_bprm_check_security (98 samples, 0.02%)</title><rect x="19.8282%" y="373" width="0.0203%" height="15" fill="rgb(212,59,25)" fg:x="95726" fg:w="98"/><text x="20.0782%" y="383.50"></text></g><g><title>tomoyo_find_next_domain (95 samples, 0.02%)</title><rect x="19.8288%" y="357" width="0.0197%" height="15" fill="rgb(221,87,20)" fg:x="95729" fg:w="95"/><text x="20.0788%" y="367.50"></text></g><g><title>tomoyo_realpath_nofollow (56 samples, 0.01%)</title><rect x="19.8369%" y="341" width="0.0116%" height="15" fill="rgb(213,74,28)" fg:x="95768" fg:w="56"/><text x="20.0869%" y="351.50"></text></g><g><title>aa_dfa_leftmatch (63 samples, 0.01%)</title><rect x="19.8636%" y="325" width="0.0130%" height="15" fill="rgb(224,132,34)" fg:x="95897" fg:w="63"/><text x="20.1136%" y="335.50"></text></g><g><title>apparmor_bprm_creds_for_exec (155 samples, 0.03%)</title><rect x="19.8491%" y="373" width="0.0321%" height="15" fill="rgb(222,101,24)" fg:x="95827" fg:w="155"/><text x="20.0991%" y="383.50"></text></g><g><title>profile_transition (139 samples, 0.03%)</title><rect x="19.8524%" y="357" width="0.0288%" height="15" fill="rgb(254,142,4)" fg:x="95843" fg:w="139"/><text x="20.1024%" y="367.50"></text></g><g><title>find_attach (110 samples, 0.02%)</title><rect x="19.8584%" y="341" width="0.0228%" height="15" fill="rgb(230,229,49)" fg:x="95872" fg:w="110"/><text x="20.1084%" y="351.50"></text></g><g><title>security_bprm_creds_for_exec (163 samples, 0.03%)</title><rect x="19.8485%" y="389" width="0.0338%" height="15" fill="rgb(238,70,47)" fg:x="95824" fg:w="163"/><text x="20.0985%" y="399.50"></text></g><g><title>bprm_execve (700 samples, 0.14%)</title><rect x="19.7389%" y="405" width="0.1450%" height="15" fill="rgb(231,160,17)" fg:x="95295" fg:w="700"/><text x="19.9889%" y="415.50"></text></g><g><title>__get_user_pages_remote (52 samples, 0.01%)</title><rect x="19.8841%" y="373" width="0.0108%" height="15" fill="rgb(218,68,53)" fg:x="95996" fg:w="52"/><text x="20.1341%" y="383.50"></text></g><g><title>__get_user_pages (50 samples, 0.01%)</title><rect x="19.8845%" y="357" width="0.0104%" height="15" fill="rgb(236,111,10)" fg:x="95998" fg:w="50"/><text x="20.1345%" y="367.50"></text></g><g><title>get_arg_page (53 samples, 0.01%)</title><rect x="19.8841%" y="389" width="0.0110%" height="15" fill="rgb(224,34,41)" fg:x="95996" fg:w="53"/><text x="20.1341%" y="399.50"></text></g><g><title>copy_string_kernel (55 samples, 0.01%)</title><rect x="19.8839%" y="405" width="0.0114%" height="15" fill="rgb(241,118,19)" fg:x="95995" fg:w="55"/><text x="20.1339%" y="415.50"></text></g><g><title>copy_strings.isra.0 (51 samples, 0.01%)</title><rect x="19.8953%" y="405" width="0.0106%" height="15" fill="rgb(238,129,25)" fg:x="96050" fg:w="51"/><text x="20.1453%" y="415.50"></text></g><g><title>do_execveat_common (845 samples, 0.18%)</title><rect x="19.7329%" y="421" width="0.1750%" height="15" fill="rgb(238,22,31)" fg:x="95266" fg:w="845"/><text x="19.9829%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (848 samples, 0.18%)</title><rect x="19.7329%" y="469" width="0.1757%" height="15" fill="rgb(222,174,48)" fg:x="95266" fg:w="848"/><text x="19.9829%" y="479.50"></text></g><g><title>do_syscall_64 (848 samples, 0.18%)</title><rect x="19.7329%" y="453" width="0.1757%" height="15" fill="rgb(206,152,40)" fg:x="95266" fg:w="848"/><text x="19.9829%" y="463.50"></text></g><g><title>__x64_sys_execve (848 samples, 0.18%)</title><rect x="19.7329%" y="437" width="0.1757%" height="15" fill="rgb(218,99,54)" fg:x="95266" fg:w="848"/><text x="19.9829%" y="447.50"></text></g><g><title>__GI_execve (849 samples, 0.18%)</title><rect x="19.7329%" y="485" width="0.1759%" height="15" fill="rgb(220,174,26)" fg:x="95266" fg:w="849"/><text x="19.9829%" y="495.50"></text></g><g><title>[dash] (977 samples, 0.20%)</title><rect x="19.7118%" y="501" width="0.2024%" height="15" fill="rgb(245,116,9)" fg:x="95164" fg:w="977"/><text x="19.9618%" y="511.50"></text></g><g><title>_int_malloc (50 samples, 0.01%)</title><rect x="19.9160%" y="485" width="0.0104%" height="15" fill="rgb(209,72,35)" fg:x="96150" fg:w="50"/><text x="20.1660%" y="495.50"></text></g><g><title>__GI___libc_malloc (54 samples, 0.01%)</title><rect x="19.9156%" y="501" width="0.0112%" height="15" fill="rgb(226,126,21)" fg:x="96148" fg:w="54"/><text x="20.1656%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (359 samples, 0.07%)</title><rect x="19.9409%" y="373" width="0.0744%" height="15" fill="rgb(227,192,1)" fg:x="96270" fg:w="359"/><text x="20.1909%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (352 samples, 0.07%)</title><rect x="19.9423%" y="357" width="0.0729%" height="15" fill="rgb(237,180,29)" fg:x="96277" fg:w="352"/><text x="20.1923%" y="367.50"></text></g><g><title>native_write_msr (348 samples, 0.07%)</title><rect x="19.9432%" y="341" width="0.0721%" height="15" fill="rgb(230,197,35)" fg:x="96281" fg:w="348"/><text x="20.1932%" y="351.50"></text></g><g><title>finish_task_switch (366 samples, 0.08%)</title><rect x="19.9398%" y="389" width="0.0758%" height="15" fill="rgb(246,193,31)" fg:x="96265" fg:w="366"/><text x="20.1898%" y="399.50"></text></g><g><title>schedule (421 samples, 0.09%)</title><rect x="19.9330%" y="421" width="0.0872%" height="15" fill="rgb(241,36,4)" fg:x="96232" fg:w="421"/><text x="20.1830%" y="431.50"></text></g><g><title>__schedule (421 samples, 0.09%)</title><rect x="19.9330%" y="405" width="0.0872%" height="15" fill="rgb(241,130,17)" fg:x="96232" fg:w="421"/><text x="20.1830%" y="415.50"></text></g><g><title>release_task (63 samples, 0.01%)</title><rect x="20.0229%" y="405" width="0.0130%" height="15" fill="rgb(206,137,32)" fg:x="96666" fg:w="63"/><text x="20.2729%" y="415.50"></text></g><g><title>do_syscall_64 (521 samples, 0.11%)</title><rect x="19.9289%" y="469" width="0.1079%" height="15" fill="rgb(237,228,51)" fg:x="96212" fg:w="521"/><text x="20.1789%" y="479.50"></text></g><g><title>kernel_wait4 (513 samples, 0.11%)</title><rect x="19.9305%" y="453" width="0.1063%" height="15" fill="rgb(243,6,42)" fg:x="96220" fg:w="513"/><text x="20.1805%" y="463.50"></text></g><g><title>do_wait (512 samples, 0.11%)</title><rect x="19.9307%" y="437" width="0.1061%" height="15" fill="rgb(251,74,28)" fg:x="96221" fg:w="512"/><text x="20.1807%" y="447.50"></text></g><g><title>wait_consider_task (80 samples, 0.02%)</title><rect x="20.0202%" y="421" width="0.0166%" height="15" fill="rgb(218,20,49)" fg:x="96653" fg:w="80"/><text x="20.2702%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (575 samples, 0.12%)</title><rect x="19.9289%" y="485" width="0.1191%" height="15" fill="rgb(238,28,14)" fg:x="96212" fg:w="575"/><text x="20.1789%" y="495.50"></text></g><g><title>syscall_exit_to_user_mode (54 samples, 0.01%)</title><rect x="20.0368%" y="469" width="0.0112%" height="15" fill="rgb(229,40,46)" fg:x="96733" fg:w="54"/><text x="20.2868%" y="479.50"></text></g><g><title>exit_to_user_mode_prepare (54 samples, 0.01%)</title><rect x="20.0368%" y="453" width="0.0112%" height="15" fill="rgb(244,195,20)" fg:x="96733" fg:w="54"/><text x="20.2868%" y="463.50"></text></g><g><title>arch_do_signal (54 samples, 0.01%)</title><rect x="20.0368%" y="437" width="0.0112%" height="15" fill="rgb(253,56,35)" fg:x="96733" fg:w="54"/><text x="20.2868%" y="447.50"></text></g><g><title>__GI___wait4 (603 samples, 0.12%)</title><rect x="19.9268%" y="501" width="0.1249%" height="15" fill="rgb(210,149,44)" fg:x="96202" fg:w="603"/><text x="20.1768%" y="511.50"></text></g><g><title>exc_page_fault (63 samples, 0.01%)</title><rect x="20.0590%" y="485" width="0.0130%" height="15" fill="rgb(240,135,12)" fg:x="96840" fg:w="63"/><text x="20.3090%" y="495.50"></text></g><g><title>do_user_addr_fault (63 samples, 0.01%)</title><rect x="20.0590%" y="469" width="0.0130%" height="15" fill="rgb(251,24,50)" fg:x="96840" fg:w="63"/><text x="20.3090%" y="479.50"></text></g><g><title>handle_mm_fault (55 samples, 0.01%)</title><rect x="20.0606%" y="453" width="0.0114%" height="15" fill="rgb(243,200,47)" fg:x="96848" fg:w="55"/><text x="20.3106%" y="463.50"></text></g><g><title>asm_exc_page_fault (64 samples, 0.01%)</title><rect x="20.0590%" y="501" width="0.0133%" height="15" fill="rgb(224,166,26)" fg:x="96840" fg:w="64"/><text x="20.3090%" y="511.50"></text></g><g><title>[dash] (1,769 samples, 0.37%)</title><rect x="19.7095%" y="517" width="0.3664%" height="15" fill="rgb(233,0,47)" fg:x="95153" fg:w="1769"/><text x="19.9595%" y="527.50"></text></g><g><title>handle_mm_fault (101 samples, 0.02%)</title><rect x="20.1006%" y="469" width="0.0209%" height="15" fill="rgb(253,80,5)" fg:x="97041" fg:w="101"/><text x="20.3506%" y="479.50"></text></g><g><title>wp_page_copy (85 samples, 0.02%)</title><rect x="20.1039%" y="453" width="0.0176%" height="15" fill="rgb(214,133,25)" fg:x="97057" fg:w="85"/><text x="20.3539%" y="463.50"></text></g><g><title>asm_exc_page_fault (111 samples, 0.02%)</title><rect x="20.0987%" y="517" width="0.0230%" height="15" fill="rgb(209,27,14)" fg:x="97032" fg:w="111"/><text x="20.3487%" y="527.50"></text></g><g><title>exc_page_fault (111 samples, 0.02%)</title><rect x="20.0987%" y="501" width="0.0230%" height="15" fill="rgb(219,102,51)" fg:x="97032" fg:w="111"/><text x="20.3487%" y="511.50"></text></g><g><title>do_user_addr_fault (110 samples, 0.02%)</title><rect x="20.0989%" y="485" width="0.0228%" height="15" fill="rgb(237,18,16)" fg:x="97033" fg:w="110"/><text x="20.3489%" y="495.50"></text></g><g><title>[dash] (2,033 samples, 0.42%)</title><rect x="19.7023%" y="533" width="0.4211%" height="15" fill="rgb(241,85,17)" fg:x="95118" fg:w="2033"/><text x="19.9523%" y="543.50"></text></g><g><title>link_path_walk.part.0 (96 samples, 0.02%)</title><rect x="20.1426%" y="421" width="0.0199%" height="15" fill="rgb(236,90,42)" fg:x="97244" fg:w="96"/><text x="20.3926%" y="431.50"></text></g><g><title>walk_component (52 samples, 0.01%)</title><rect x="20.1517%" y="405" width="0.0108%" height="15" fill="rgb(249,57,21)" fg:x="97288" fg:w="52"/><text x="20.4017%" y="415.50"></text></g><g><title>path_lookupat (116 samples, 0.02%)</title><rect x="20.1418%" y="437" width="0.0240%" height="15" fill="rgb(243,12,36)" fg:x="97240" fg:w="116"/><text x="20.3918%" y="447.50"></text></g><g><title>filename_lookup (124 samples, 0.03%)</title><rect x="20.1406%" y="453" width="0.0257%" height="15" fill="rgb(253,128,47)" fg:x="97234" fg:w="124"/><text x="20.3906%" y="463.50"></text></g><g><title>__do_sys_newstat (194 samples, 0.04%)</title><rect x="20.1372%" y="485" width="0.0402%" height="15" fill="rgb(207,33,20)" fg:x="97218" fg:w="194"/><text x="20.3872%" y="495.50"></text></g><g><title>vfs_statx (190 samples, 0.04%)</title><rect x="20.1381%" y="469" width="0.0394%" height="15" fill="rgb(233,215,35)" fg:x="97222" fg:w="190"/><text x="20.3881%" y="479.50"></text></g><g><title>do_syscall_64 (199 samples, 0.04%)</title><rect x="20.1368%" y="501" width="0.0412%" height="15" fill="rgb(249,188,52)" fg:x="97216" fg:w="199"/><text x="20.3868%" y="511.50"></text></g><g><title>__GI___xstat (265 samples, 0.05%)</title><rect x="20.1240%" y="533" width="0.0549%" height="15" fill="rgb(225,12,32)" fg:x="97154" fg:w="265"/><text x="20.3740%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (203 samples, 0.04%)</title><rect x="20.1368%" y="517" width="0.0420%" height="15" fill="rgb(247,98,14)" fg:x="97216" fg:w="203"/><text x="20.3868%" y="527.50"></text></g><g><title>filemap_map_pages (77 samples, 0.02%)</title><rect x="20.2122%" y="437" width="0.0159%" height="15" fill="rgb(247,219,48)" fg:x="97580" fg:w="77"/><text x="20.4622%" y="447.50"></text></g><g><title>handle_mm_fault (132 samples, 0.03%)</title><rect x="20.2071%" y="453" width="0.0273%" height="15" fill="rgb(253,60,48)" fg:x="97555" fg:w="132"/><text x="20.4571%" y="463.50"></text></g><g><title>exc_page_fault (157 samples, 0.03%)</title><rect x="20.2021%" y="485" width="0.0325%" height="15" fill="rgb(245,15,52)" fg:x="97531" fg:w="157"/><text x="20.4521%" y="495.50"></text></g><g><title>do_user_addr_fault (157 samples, 0.03%)</title><rect x="20.2021%" y="469" width="0.0325%" height="15" fill="rgb(220,133,28)" fg:x="97531" fg:w="157"/><text x="20.4521%" y="479.50"></text></g><g><title>asm_exc_page_fault (161 samples, 0.03%)</title><rect x="20.2019%" y="501" width="0.0333%" height="15" fill="rgb(217,180,4)" fg:x="97530" fg:w="161"/><text x="20.4519%" y="511.50"></text></g><g><title>__vmalloc_node_range (68 samples, 0.01%)</title><rect x="20.2474%" y="421" width="0.0141%" height="15" fill="rgb(251,24,1)" fg:x="97750" fg:w="68"/><text x="20.4974%" y="431.50"></text></g><g><title>anon_vma_clone (77 samples, 0.02%)</title><rect x="20.3038%" y="389" width="0.0159%" height="15" fill="rgb(212,185,49)" fg:x="98022" fg:w="77"/><text x="20.5538%" y="399.50"></text></g><g><title>anon_vma_fork (109 samples, 0.02%)</title><rect x="20.3034%" y="405" width="0.0226%" height="15" fill="rgb(215,175,22)" fg:x="98020" fg:w="109"/><text x="20.5534%" y="415.50"></text></g><g><title>copy_page_range (100 samples, 0.02%)</title><rect x="20.3262%" y="405" width="0.0207%" height="15" fill="rgb(250,205,14)" fg:x="98130" fg:w="100"/><text x="20.5762%" y="415.50"></text></g><g><title>vm_area_dup (84 samples, 0.02%)</title><rect x="20.3547%" y="405" width="0.0174%" height="15" fill="rgb(225,211,22)" fg:x="98268" fg:w="84"/><text x="20.6047%" y="415.50"></text></g><g><title>kmem_cache_alloc (51 samples, 0.01%)</title><rect x="20.3616%" y="389" width="0.0106%" height="15" fill="rgb(251,179,42)" fg:x="98301" fg:w="51"/><text x="20.6116%" y="399.50"></text></g><g><title>dup_mm (381 samples, 0.08%)</title><rect x="20.2938%" y="421" width="0.0789%" height="15" fill="rgb(208,216,51)" fg:x="97974" fg:w="381"/><text x="20.5438%" y="431.50"></text></g><g><title>kmem_cache_alloc_trace (52 samples, 0.01%)</title><rect x="20.4212%" y="357" width="0.0108%" height="15" fill="rgb(235,36,11)" fg:x="98589" fg:w="52"/><text x="20.6712%" y="367.50"></text></g><g><title>allocate_fake_cpuc (86 samples, 0.02%)</title><rect x="20.4330%" y="325" width="0.0178%" height="15" fill="rgb(213,189,28)" fg:x="98646" fg:w="86"/><text x="20.6830%" y="335.50"></text></g><g><title>kmem_cache_alloc_trace (65 samples, 0.01%)</title><rect x="20.4374%" y="309" width="0.0135%" height="15" fill="rgb(227,203,42)" fg:x="98667" fg:w="65"/><text x="20.6874%" y="319.50"></text></g><g><title>perf_try_init_event (147 samples, 0.03%)</title><rect x="20.4320%" y="357" width="0.0304%" height="15" fill="rgb(244,72,36)" fg:x="98641" fg:w="147"/><text x="20.6820%" y="367.50"></text></g><g><title>x86_pmu_event_init (146 samples, 0.03%)</title><rect x="20.4322%" y="341" width="0.0302%" height="15" fill="rgb(213,53,17)" fg:x="98642" fg:w="146"/><text x="20.6822%" y="351.50"></text></g><g><title>perf_event_alloc (260 samples, 0.05%)</title><rect x="20.4088%" y="373" width="0.0539%" height="15" fill="rgb(207,167,3)" fg:x="98529" fg:w="260"/><text x="20.6588%" y="383.50"></text></g><g><title>inherit_task_group.isra.0 (330 samples, 0.07%)</title><rect x="20.3945%" y="405" width="0.0684%" height="15" fill="rgb(216,98,30)" fg:x="98460" fg:w="330"/><text x="20.6445%" y="415.50"></text></g><g><title>inherit_event.constprop.0 (322 samples, 0.07%)</title><rect x="20.3962%" y="389" width="0.0667%" height="15" fill="rgb(236,123,15)" fg:x="98468" fg:w="322"/><text x="20.6462%" y="399.50"></text></g><g><title>perf_event_init_task (354 samples, 0.07%)</title><rect x="20.3933%" y="421" width="0.0733%" height="15" fill="rgb(248,81,50)" fg:x="98454" fg:w="354"/><text x="20.6433%" y="431.50"></text></g><g><title>copy_process (1,153 samples, 0.24%)</title><rect x="20.2358%" y="437" width="0.2388%" height="15" fill="rgb(214,120,4)" fg:x="97694" fg:w="1153"/><text x="20.4858%" y="447.50"></text></g><g><title>__do_sys_clone (1,245 samples, 0.26%)</title><rect x="20.2354%" y="469" width="0.2579%" height="15" fill="rgb(208,179,34)" fg:x="97692" fg:w="1245"/><text x="20.4854%" y="479.50"></text></g><g><title>kernel_clone (1,243 samples, 0.26%)</title><rect x="20.2358%" y="453" width="0.2575%" height="15" fill="rgb(227,140,7)" fg:x="97694" fg:w="1243"/><text x="20.4858%" y="463.50"></text></g><g><title>wake_up_new_task (87 samples, 0.02%)</title><rect x="20.4753%" y="437" width="0.0180%" height="15" fill="rgb(214,22,6)" fg:x="98850" fg:w="87"/><text x="20.7253%" y="447.50"></text></g><g><title>do_syscall_64 (1,249 samples, 0.26%)</title><rect x="20.2352%" y="485" width="0.2587%" height="15" fill="rgb(207,137,27)" fg:x="97691" fg:w="1249"/><text x="20.4852%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,250 samples, 0.26%)</title><rect x="20.2352%" y="501" width="0.2589%" height="15" fill="rgb(210,8,46)" fg:x="97691" fg:w="1250"/><text x="20.4852%" y="511.50"></text></g><g><title>handle_mm_fault (146 samples, 0.03%)</title><rect x="20.5267%" y="405" width="0.0302%" height="15" fill="rgb(240,16,54)" fg:x="99098" fg:w="146"/><text x="20.7767%" y="415.50"></text></g><g><title>exc_page_fault (213 samples, 0.04%)</title><rect x="20.5142%" y="437" width="0.0441%" height="15" fill="rgb(211,209,29)" fg:x="99038" fg:w="213"/><text x="20.7642%" y="447.50"></text></g><g><title>do_user_addr_fault (211 samples, 0.04%)</title><rect x="20.5146%" y="421" width="0.0437%" height="15" fill="rgb(226,228,24)" fg:x="99040" fg:w="211"/><text x="20.7646%" y="431.50"></text></g><g><title>__put_user_nocheck_4 (273 samples, 0.06%)</title><rect x="20.5020%" y="469" width="0.0565%" height="15" fill="rgb(222,84,9)" fg:x="98979" fg:w="273"/><text x="20.7520%" y="479.50"></text></g><g><title>asm_exc_page_fault (252 samples, 0.05%)</title><rect x="20.5064%" y="453" width="0.0522%" height="15" fill="rgb(234,203,30)" fg:x="99000" fg:w="252"/><text x="20.7564%" y="463.50"></text></g><g><title>__mmdrop (70 samples, 0.01%)</title><rect x="20.5842%" y="453" width="0.0145%" height="15" fill="rgb(238,109,14)" fg:x="99376" fg:w="70"/><text x="20.8342%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (4,905 samples, 1.02%)</title><rect x="20.5987%" y="453" width="1.0160%" height="15" fill="rgb(233,206,34)" fg:x="99446" fg:w="4905"/><text x="20.8487%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,751 samples, 0.98%)</title><rect x="20.6306%" y="437" width="0.9841%" height="15" fill="rgb(220,167,47)" fg:x="99600" fg:w="4751"/><text x="20.8806%" y="447.50"></text></g><g><title>native_write_msr (4,704 samples, 0.97%)</title><rect x="20.6404%" y="421" width="0.9744%" height="15" fill="rgb(238,105,10)" fg:x="99647" fg:w="4704"/><text x="20.8904%" y="431.50"></text></g><g><title>asm_sysvec_irq_work (58 samples, 0.01%)</title><rect x="21.6164%" y="453" width="0.0120%" height="15" fill="rgb(213,227,17)" fg:x="104359" fg:w="58"/><text x="21.8664%" y="463.50"></text></g><g><title>schedule_tail (5,468 samples, 1.13%)</title><rect x="20.5016%" y="485" width="1.1326%" height="15" fill="rgb(217,132,38)" fg:x="98977" fg:w="5468"/><text x="20.7516%" y="495.50"></text></g><g><title>finish_task_switch (5,178 samples, 1.07%)</title><rect x="20.5617%" y="469" width="1.0725%" height="15" fill="rgb(242,146,4)" fg:x="99267" fg:w="5178"/><text x="20.8117%" y="479.50"></text></g><g><title>ret_from_fork (5,509 samples, 1.14%)</title><rect x="20.4983%" y="501" width="1.1411%" height="15" fill="rgb(212,61,9)" fg:x="98961" fg:w="5509"/><text x="20.7483%" y="511.50"></text></g><g><title>arch_fork (6,973 samples, 1.44%)</title><rect x="20.1955%" y="517" width="1.4444%" height="15" fill="rgb(247,126,22)" fg:x="97499" fg:w="6973"/><text x="20.4455%" y="527.50"></text></g><g><title>handle_mm_fault (93 samples, 0.02%)</title><rect x="21.6423%" y="469" width="0.0193%" height="15" fill="rgb(220,196,2)" fg:x="104484" fg:w="93"/><text x="21.8923%" y="479.50"></text></g><g><title>wp_page_copy (71 samples, 0.01%)</title><rect x="21.6468%" y="453" width="0.0147%" height="15" fill="rgb(208,46,4)" fg:x="104506" fg:w="71"/><text x="21.8968%" y="463.50"></text></g><g><title>exc_page_fault (105 samples, 0.02%)</title><rect x="21.6400%" y="501" width="0.0217%" height="15" fill="rgb(252,104,46)" fg:x="104473" fg:w="105"/><text x="21.8900%" y="511.50"></text></g><g><title>do_user_addr_fault (105 samples, 0.02%)</title><rect x="21.6400%" y="485" width="0.0217%" height="15" fill="rgb(237,152,48)" fg:x="104473" fg:w="105"/><text x="21.8900%" y="495.50"></text></g><g><title>asm_exc_page_fault (109 samples, 0.02%)</title><rect x="21.6398%" y="517" width="0.0226%" height="15" fill="rgb(221,59,37)" fg:x="104472" fg:w="109"/><text x="21.8898%" y="527.50"></text></g><g><title>__libc_fork (7,182 samples, 1.49%)</title><rect x="20.1795%" y="533" width="1.4876%" height="15" fill="rgb(209,202,51)" fg:x="97422" fg:w="7182"/><text x="20.4295%" y="543.50"></text></g><g><title>[dash] (9,554 samples, 1.98%)</title><rect x="19.6981%" y="549" width="1.9790%" height="15" fill="rgb(228,81,30)" fg:x="95098" fg:w="9554"/><text x="19.9481%" y="559.50">[..</text></g><g><title>__GI___close (55 samples, 0.01%)</title><rect x="21.6771%" y="549" width="0.0114%" height="15" fill="rgb(227,42,39)" fg:x="104652" fg:w="55"/><text x="21.9271%" y="559.50"></text></g><g><title>[dash] (9,676 samples, 2.00%)</title><rect x="19.6954%" y="565" width="2.0042%" height="15" fill="rgb(221,26,2)" fg:x="95085" fg:w="9676"/><text x="19.9454%" y="575.50">[..</text></g><g><title>[dash] (9,719 samples, 2.01%)</title><rect x="19.6942%" y="581" width="2.0131%" height="15" fill="rgb(254,61,31)" fg:x="95079" fg:w="9719"/><text x="19.9442%" y="591.50">[..</text></g><g><title>[dash] (9,763 samples, 2.02%)</title><rect x="19.6923%" y="597" width="2.0223%" height="15" fill="rgb(222,173,38)" fg:x="95070" fg:w="9763"/><text x="19.9423%" y="607.50">[..</text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="21.7173%" y="581" width="0.0101%" height="15" fill="rgb(218,50,12)" fg:x="104846" fg:w="49"/><text x="21.9673%" y="591.50"></text></g><g><title>__GI___wait4 (63 samples, 0.01%)</title><rect x="21.7152%" y="597" width="0.0130%" height="15" fill="rgb(223,88,40)" fg:x="104836" fg:w="63"/><text x="21.9652%" y="607.50"></text></g><g><title>[dash] (9,905 samples, 2.05%)</title><rect x="19.6882%" y="613" width="2.0517%" height="15" fill="rgb(237,54,19)" fg:x="95050" fg:w="9905"/><text x="19.9382%" y="623.50">[..</text></g><g><title>anon_vma_fork (88 samples, 0.02%)</title><rect x="21.7860%" y="485" width="0.0182%" height="15" fill="rgb(251,129,25)" fg:x="105178" fg:w="88"/><text x="22.0360%" y="495.50"></text></g><g><title>copy_page_range (125 samples, 0.03%)</title><rect x="21.8043%" y="485" width="0.0259%" height="15" fill="rgb(238,97,19)" fg:x="105266" fg:w="125"/><text x="22.0543%" y="495.50"></text></g><g><title>vm_area_dup (80 samples, 0.02%)</title><rect x="21.8416%" y="485" width="0.0166%" height="15" fill="rgb(240,169,18)" fg:x="105446" fg:w="80"/><text x="22.0916%" y="495.50"></text></g><g><title>kmem_cache_alloc (56 samples, 0.01%)</title><rect x="21.8465%" y="469" width="0.0116%" height="15" fill="rgb(230,187,49)" fg:x="105470" fg:w="56"/><text x="22.0965%" y="479.50"></text></g><g><title>dup_mm (383 samples, 0.08%)</title><rect x="21.7796%" y="501" width="0.0793%" height="15" fill="rgb(209,44,26)" fg:x="105147" fg:w="383"/><text x="22.0296%" y="511.50"></text></g><g><title>perf_event_alloc (87 samples, 0.02%)</title><rect x="21.8766%" y="453" width="0.0180%" height="15" fill="rgb(244,0,6)" fg:x="105615" fg:w="87"/><text x="22.1266%" y="463.50"></text></g><g><title>inherit_task_group.isra.0 (111 samples, 0.02%)</title><rect x="21.8718%" y="485" width="0.0230%" height="15" fill="rgb(248,18,21)" fg:x="105592" fg:w="111"/><text x="22.1218%" y="495.50"></text></g><g><title>inherit_event.constprop.0 (107 samples, 0.02%)</title><rect x="21.8726%" y="469" width="0.0222%" height="15" fill="rgb(245,180,19)" fg:x="105596" fg:w="107"/><text x="22.1226%" y="479.50"></text></g><g><title>perf_event_init_task (121 samples, 0.03%)</title><rect x="21.8708%" y="501" width="0.0251%" height="15" fill="rgb(252,118,36)" fg:x="105587" fg:w="121"/><text x="22.1208%" y="511.50"></text></g><g><title>copy_process (707 samples, 0.15%)</title><rect x="21.7554%" y="517" width="0.1464%" height="15" fill="rgb(210,224,19)" fg:x="105030" fg:w="707"/><text x="22.0054%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (753 samples, 0.16%)</title><rect x="21.7554%" y="581" width="0.1560%" height="15" fill="rgb(218,30,24)" fg:x="105030" fg:w="753"/><text x="22.0054%" y="591.50"></text></g><g><title>do_syscall_64 (753 samples, 0.16%)</title><rect x="21.7554%" y="565" width="0.1560%" height="15" fill="rgb(219,75,50)" fg:x="105030" fg:w="753"/><text x="22.0054%" y="575.50"></text></g><g><title>__do_sys_clone (753 samples, 0.16%)</title><rect x="21.7554%" y="549" width="0.1560%" height="15" fill="rgb(234,72,50)" fg:x="105030" fg:w="753"/><text x="22.0054%" y="559.50"></text></g><g><title>kernel_clone (753 samples, 0.16%)</title><rect x="21.7554%" y="533" width="0.1560%" height="15" fill="rgb(219,100,48)" fg:x="105030" fg:w="753"/><text x="22.0054%" y="543.50"></text></g><g><title>alloc_pages_vma (53 samples, 0.01%)</title><rect x="21.9312%" y="453" width="0.0110%" height="15" fill="rgb(253,5,41)" fg:x="105879" fg:w="53"/><text x="22.1812%" y="463.50"></text></g><g><title>exc_page_fault (196 samples, 0.04%)</title><rect x="21.9188%" y="517" width="0.0406%" height="15" fill="rgb(247,181,11)" fg:x="105819" fg:w="196"/><text x="22.1688%" y="527.50"></text></g><g><title>do_user_addr_fault (196 samples, 0.04%)</title><rect x="21.9188%" y="501" width="0.0406%" height="15" fill="rgb(222,223,25)" fg:x="105819" fg:w="196"/><text x="22.1688%" y="511.50"></text></g><g><title>handle_mm_fault (177 samples, 0.04%)</title><rect x="21.9228%" y="485" width="0.0367%" height="15" fill="rgb(214,198,28)" fg:x="105838" fg:w="177"/><text x="22.1728%" y="495.50"></text></g><g><title>wp_page_copy (150 samples, 0.03%)</title><rect x="21.9283%" y="469" width="0.0311%" height="15" fill="rgb(230,46,43)" fg:x="105865" fg:w="150"/><text x="22.1783%" y="479.50"></text></g><g><title>asm_exc_page_fault (208 samples, 0.04%)</title><rect x="21.9167%" y="533" width="0.0431%" height="15" fill="rgb(233,65,53)" fg:x="105809" fg:w="208"/><text x="22.1667%" y="543.50"></text></g><g><title>__put_user_nocheck_4 (214 samples, 0.04%)</title><rect x="21.9157%" y="549" width="0.0443%" height="15" fill="rgb(221,121,27)" fg:x="105804" fg:w="214"/><text x="22.1657%" y="559.50"></text></g><g><title>__mmdrop (52 samples, 0.01%)</title><rect x="21.9787%" y="533" width="0.0108%" height="15" fill="rgb(247,70,47)" fg:x="106108" fg:w="52"/><text x="22.2287%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (2,329 samples, 0.48%)</title><rect x="21.9894%" y="533" width="0.4824%" height="15" fill="rgb(228,85,35)" fg:x="106160" fg:w="2329"/><text x="22.2394%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,245 samples, 0.47%)</title><rect x="22.0068%" y="517" width="0.4650%" height="15" fill="rgb(209,50,18)" fg:x="106244" fg:w="2245"/><text x="22.2568%" y="527.50"></text></g><g><title>native_write_msr (2,227 samples, 0.46%)</title><rect x="22.0106%" y="501" width="0.4613%" height="15" fill="rgb(250,19,35)" fg:x="106262" fg:w="2227"/><text x="22.2606%" y="511.50"></text></g><g><title>schedule_tail (2,752 samples, 0.57%)</title><rect x="21.9147%" y="565" width="0.5700%" height="15" fill="rgb(253,107,29)" fg:x="105799" fg:w="2752"/><text x="22.1647%" y="575.50"></text></g><g><title>finish_task_switch (2,529 samples, 0.52%)</title><rect x="21.9609%" y="549" width="0.5238%" height="15" fill="rgb(252,179,29)" fg:x="106022" fg:w="2529"/><text x="22.2109%" y="559.50"></text></g><g><title>ret_from_fork (2,773 samples, 0.57%)</title><rect x="21.9126%" y="581" width="0.5744%" height="15" fill="rgb(238,194,6)" fg:x="105789" fg:w="2773"/><text x="22.1626%" y="591.50"></text></g><g><title>arch_fork (3,592 samples, 0.74%)</title><rect x="21.7436%" y="597" width="0.7440%" height="15" fill="rgb(238,164,29)" fg:x="104973" fg:w="3592"/><text x="21.9936%" y="607.50"></text></g><g><title>__libc_fork (3,652 samples, 0.76%)</title><rect x="21.7399%" y="613" width="0.7565%" height="15" fill="rgb(224,25,9)" fg:x="104955" fg:w="3652"/><text x="21.9899%" y="623.50"></text></g><g><title>[dash] (13,581 samples, 2.81%)</title><rect x="19.6855%" y="629" width="2.8131%" height="15" fill="rgb(244,153,23)" fg:x="95037" fg:w="13581"/><text x="19.9355%" y="639.50">[d..</text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="22.5013%" y="613" width="0.0101%" height="15" fill="rgb(212,203,14)" fg:x="108631" fg:w="49"/><text x="22.7513%" y="623.50"></text></g><g><title>__GI_pipe (50 samples, 0.01%)</title><rect x="22.5013%" y="629" width="0.0104%" height="15" fill="rgb(220,164,20)" fg:x="108631" fg:w="50"/><text x="22.7513%" y="639.50"></text></g><g><title>[dash] (13,692 samples, 2.84%)</title><rect x="19.6826%" y="645" width="2.8361%" height="15" fill="rgb(222,203,48)" fg:x="95023" fg:w="13692"/><text x="19.9326%" y="655.50">[d..</text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="22.5195%" y="629" width="0.0108%" height="15" fill="rgb(215,159,22)" fg:x="108719" fg:w="52"/><text x="22.7695%" y="639.50"></text></g><g><title>__GI___close (56 samples, 0.01%)</title><rect x="22.5191%" y="645" width="0.0116%" height="15" fill="rgb(216,183,47)" fg:x="108717" fg:w="56"/><text x="22.7691%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (225 samples, 0.05%)</title><rect x="22.5524%" y="485" width="0.0466%" height="15" fill="rgb(229,195,25)" fg:x="108878" fg:w="225"/><text x="22.8024%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (222 samples, 0.05%)</title><rect x="22.5531%" y="469" width="0.0460%" height="15" fill="rgb(224,132,51)" fg:x="108881" fg:w="222"/><text x="22.8031%" y="479.50"></text></g><g><title>native_write_msr (220 samples, 0.05%)</title><rect x="22.5535%" y="453" width="0.0456%" height="15" fill="rgb(240,63,7)" fg:x="108883" fg:w="220"/><text x="22.8035%" y="463.50"></text></g><g><title>finish_task_switch (246 samples, 0.05%)</title><rect x="22.5504%" y="501" width="0.0510%" height="15" fill="rgb(249,182,41)" fg:x="108868" fg:w="246"/><text x="22.8004%" y="511.50"></text></g><g><title>schedule (305 samples, 0.06%)</title><rect x="22.5425%" y="533" width="0.0632%" height="15" fill="rgb(243,47,26)" fg:x="108830" fg:w="305"/><text x="22.7925%" y="543.50"></text></g><g><title>__schedule (300 samples, 0.06%)</title><rect x="22.5435%" y="517" width="0.0621%" height="15" fill="rgb(233,48,2)" fg:x="108835" fg:w="300"/><text x="22.7935%" y="527.50"></text></g><g><title>new_sync_read (339 samples, 0.07%)</title><rect x="22.5363%" y="565" width="0.0702%" height="15" fill="rgb(244,165,34)" fg:x="108800" fg:w="339"/><text x="22.7863%" y="575.50"></text></g><g><title>pipe_read (338 samples, 0.07%)</title><rect x="22.5365%" y="549" width="0.0700%" height="15" fill="rgb(207,89,7)" fg:x="108801" fg:w="338"/><text x="22.7865%" y="559.50"></text></g><g><title>do_syscall_64 (359 samples, 0.07%)</title><rect x="22.5330%" y="613" width="0.0744%" height="15" fill="rgb(244,117,36)" fg:x="108784" fg:w="359"/><text x="22.7830%" y="623.50"></text></g><g><title>ksys_read (354 samples, 0.07%)</title><rect x="22.5340%" y="597" width="0.0733%" height="15" fill="rgb(226,144,34)" fg:x="108789" fg:w="354"/><text x="22.7840%" y="607.50"></text></g><g><title>vfs_read (348 samples, 0.07%)</title><rect x="22.5352%" y="581" width="0.0721%" height="15" fill="rgb(213,23,19)" fg:x="108795" fg:w="348"/><text x="22.7852%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (411 samples, 0.09%)</title><rect x="22.5328%" y="629" width="0.0851%" height="15" fill="rgb(217,75,12)" fg:x="108783" fg:w="411"/><text x="22.7828%" y="639.50"></text></g><g><title>syscall_exit_to_user_mode (51 samples, 0.01%)</title><rect x="22.6073%" y="613" width="0.0106%" height="15" fill="rgb(224,159,17)" fg:x="109143" fg:w="51"/><text x="22.8573%" y="623.50"></text></g><g><title>exit_to_user_mode_prepare (51 samples, 0.01%)</title><rect x="22.6073%" y="597" width="0.0106%" height="15" fill="rgb(217,118,1)" fg:x="109143" fg:w="51"/><text x="22.8573%" y="607.50"></text></g><g><title>__GI___libc_read (440 samples, 0.09%)</title><rect x="22.5321%" y="645" width="0.0911%" height="15" fill="rgb(232,180,48)" fg:x="108780" fg:w="440"/><text x="22.7821%" y="655.50"></text></g><g><title>bprm_execve (53 samples, 0.01%)</title><rect x="22.6266%" y="565" width="0.0110%" height="15" fill="rgb(230,27,33)" fg:x="109236" fg:w="53"/><text x="22.8766%" y="575.50"></text></g><g><title>__GI_execve (70 samples, 0.01%)</title><rect x="22.6264%" y="645" width="0.0145%" height="15" fill="rgb(205,31,21)" fg:x="109235" fg:w="70"/><text x="22.8764%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.01%)</title><rect x="22.6264%" y="629" width="0.0145%" height="15" fill="rgb(253,59,4)" fg:x="109235" fg:w="70"/><text x="22.8764%" y="639.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="22.6264%" y="613" width="0.0145%" height="15" fill="rgb(224,201,9)" fg:x="109235" fg:w="70"/><text x="22.8764%" y="623.50"></text></g><g><title>__x64_sys_execve (70 samples, 0.01%)</title><rect x="22.6264%" y="597" width="0.0145%" height="15" fill="rgb(229,206,30)" fg:x="109235" fg:w="70"/><text x="22.8764%" y="607.50"></text></g><g><title>do_execveat_common (70 samples, 0.01%)</title><rect x="22.6264%" y="581" width="0.0145%" height="15" fill="rgb(212,67,47)" fg:x="109235" fg:w="70"/><text x="22.8764%" y="591.50"></text></g><g><title>[dash] (14,313 samples, 2.96%)</title><rect x="19.6776%" y="661" width="2.9647%" height="15" fill="rgb(211,96,50)" fg:x="94999" fg:w="14313"/><text x="19.9276%" y="671.50">[da..</text></g><g><title>[dash] (14,336 samples, 2.97%)</title><rect x="19.6753%" y="677" width="2.9695%" height="15" fill="rgb(252,114,18)" fg:x="94988" fg:w="14336"/><text x="19.9253%" y="687.50">[da..</text></g><g><title>[dash] (14,363 samples, 2.98%)</title><rect x="19.6726%" y="693" width="2.9751%" height="15" fill="rgb(223,58,37)" fg:x="94975" fg:w="14363"/><text x="19.9226%" y="703.50">[da..</text></g><g><title>[dash] (14,371 samples, 2.98%)</title><rect x="19.6716%" y="709" width="2.9767%" height="15" fill="rgb(237,70,4)" fg:x="94970" fg:w="14371"/><text x="19.9216%" y="719.50">[da..</text></g><g><title>[dash] (14,424 samples, 2.99%)</title><rect x="19.6708%" y="725" width="2.9877%" height="15" fill="rgb(244,85,46)" fg:x="94966" fg:w="14424"/><text x="19.9208%" y="735.50">[da..</text></g><g><title>[dash] (14,427 samples, 2.99%)</title><rect x="19.6704%" y="741" width="2.9883%" height="15" fill="rgb(223,39,52)" fg:x="94964" fg:w="14427"/><text x="19.9204%" y="751.50">[da..</text></g><g><title>__GI__exit (91 samples, 0.02%)</title><rect x="22.6595%" y="741" width="0.0188%" height="15" fill="rgb(218,200,14)" fg:x="109395" fg:w="91"/><text x="22.9095%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.02%)</title><rect x="22.6606%" y="725" width="0.0178%" height="15" fill="rgb(208,171,16)" fg:x="109400" fg:w="86"/><text x="22.9106%" y="735.50"></text></g><g><title>do_syscall_64 (86 samples, 0.02%)</title><rect x="22.6606%" y="709" width="0.0178%" height="15" fill="rgb(234,200,18)" fg:x="109400" fg:w="86"/><text x="22.9106%" y="719.50"></text></g><g><title>__x64_sys_exit_group (84 samples, 0.02%)</title><rect x="22.6610%" y="693" width="0.0174%" height="15" fill="rgb(228,45,11)" fg:x="109402" fg:w="84"/><text x="22.9110%" y="703.50"></text></g><g><title>do_group_exit (82 samples, 0.02%)</title><rect x="22.6614%" y="677" width="0.0170%" height="15" fill="rgb(237,182,11)" fg:x="109404" fg:w="82"/><text x="22.9114%" y="687.50"></text></g><g><title>do_exit (75 samples, 0.02%)</title><rect x="22.6628%" y="661" width="0.0155%" height="15" fill="rgb(241,175,49)" fg:x="109411" fg:w="75"/><text x="22.9128%" y="671.50"></text></g><g><title>[dash] (14,527 samples, 3.01%)</title><rect x="19.6702%" y="757" width="3.0090%" height="15" fill="rgb(247,38,35)" fg:x="94963" fg:w="14527"/><text x="19.9202%" y="767.50">[da..</text></g><g><title>__libc_start_main (14,548 samples, 3.01%)</title><rect x="19.6697%" y="789" width="3.0134%" height="15" fill="rgb(228,39,49)" fg:x="94961" fg:w="14548"/><text x="19.9197%" y="799.50">__l..</text></g><g><title>[dash] (14,548 samples, 3.01%)</title><rect x="19.6697%" y="773" width="3.0134%" height="15" fill="rgb(226,101,26)" fg:x="94961" fg:w="14548"/><text x="19.9197%" y="783.50">[da..</text></g><g><title>[dash] (14,562 samples, 3.02%)</title><rect x="19.6671%" y="805" width="3.0163%" height="15" fill="rgb(206,141,19)" fg:x="94948" fg:w="14562"/><text x="19.9171%" y="815.50">[da..</text></g><g><title>[ld-2.31.so] (96 samples, 0.02%)</title><rect x="22.6906%" y="741" width="0.0199%" height="15" fill="rgb(211,200,13)" fg:x="109545" fg:w="96"/><text x="22.9406%" y="751.50"></text></g><g><title>_dl_start_final (100 samples, 0.02%)</title><rect x="22.6906%" y="773" width="0.0207%" height="15" fill="rgb(241,121,6)" fg:x="109545" fg:w="100"/><text x="22.9406%" y="783.50"></text></g><g><title>_dl_sysdep_start (100 samples, 0.02%)</title><rect x="22.6906%" y="757" width="0.0207%" height="15" fill="rgb(234,221,29)" fg:x="109545" fg:w="100"/><text x="22.9406%" y="767.50"></text></g><g><title>_dl_start (107 samples, 0.02%)</title><rect x="22.6906%" y="789" width="0.0222%" height="15" fill="rgb(229,136,5)" fg:x="109545" fg:w="107"/><text x="22.9406%" y="799.50"></text></g><g><title>_start (110 samples, 0.02%)</title><rect x="22.6906%" y="805" width="0.0228%" height="15" fill="rgb(238,36,11)" fg:x="109545" fg:w="110"/><text x="22.9406%" y="815.50"></text></g><g><title>asm_exc_page_fault (303 samples, 0.06%)</title><rect x="22.7134%" y="805" width="0.0628%" height="15" fill="rgb(251,55,41)" fg:x="109655" fg:w="303"/><text x="22.9634%" y="815.50"></text></g><g><title>kmem_cache_free (66 samples, 0.01%)</title><rect x="22.8138%" y="629" width="0.0137%" height="15" fill="rgb(242,34,40)" fg:x="110140" fg:w="66"/><text x="23.0638%" y="639.50"></text></g><g><title>unlink_anon_vmas (135 samples, 0.03%)</title><rect x="22.8002%" y="645" width="0.0280%" height="15" fill="rgb(215,42,17)" fg:x="110074" fg:w="135"/><text x="23.0502%" y="655.50"></text></g><g><title>free_pgtables (176 samples, 0.04%)</title><rect x="22.7975%" y="661" width="0.0365%" height="15" fill="rgb(207,44,46)" fg:x="110061" fg:w="176"/><text x="23.0475%" y="671.50"></text></g><g><title>kmem_cache_free (73 samples, 0.02%)</title><rect x="22.8366%" y="645" width="0.0151%" height="15" fill="rgb(211,206,28)" fg:x="110250" fg:w="73"/><text x="23.0866%" y="655.50"></text></g><g><title>remove_vma (84 samples, 0.02%)</title><rect x="22.8346%" y="661" width="0.0174%" height="15" fill="rgb(237,167,16)" fg:x="110240" fg:w="84"/><text x="23.0846%" y="671.50"></text></g><g><title>tlb_finish_mmu (103 samples, 0.02%)</title><rect x="22.8520%" y="661" width="0.0213%" height="15" fill="rgb(233,66,6)" fg:x="110324" fg:w="103"/><text x="23.1020%" y="671.50"></text></g><g><title>release_pages (86 samples, 0.02%)</title><rect x="22.8555%" y="645" width="0.0178%" height="15" fill="rgb(246,123,29)" fg:x="110341" fg:w="86"/><text x="23.1055%" y="655.50"></text></g><g><title>unmap_page_range (93 samples, 0.02%)</title><rect x="22.8739%" y="645" width="0.0193%" height="15" fill="rgb(209,62,40)" fg:x="110430" fg:w="93"/><text x="23.1239%" y="655.50"></text></g><g><title>exit_mmap (471 samples, 0.10%)</title><rect x="22.7960%" y="677" width="0.0976%" height="15" fill="rgb(218,4,25)" fg:x="110054" fg:w="471"/><text x="23.0460%" y="687.50"></text></g><g><title>unmap_vmas (98 samples, 0.02%)</title><rect x="22.8733%" y="661" width="0.0203%" height="15" fill="rgb(253,91,49)" fg:x="110427" fg:w="98"/><text x="23.1233%" y="671.50"></text></g><g><title>mmput (474 samples, 0.10%)</title><rect x="22.7958%" y="693" width="0.0982%" height="15" fill="rgb(228,155,29)" fg:x="110053" fg:w="474"/><text x="23.0458%" y="703.50"></text></g><g><title>begin_new_exec (570 samples, 0.12%)</title><rect x="22.7844%" y="709" width="0.1181%" height="15" fill="rgb(243,57,37)" fg:x="109998" fg:w="570"/><text x="23.0344%" y="719.50"></text></g><g><title>load_elf_binary (602 samples, 0.12%)</title><rect x="22.7817%" y="725" width="0.1247%" height="15" fill="rgb(244,167,17)" fg:x="109985" fg:w="602"/><text x="23.0317%" y="735.50"></text></g><g><title>bprm_execve (606 samples, 0.13%)</title><rect x="22.7813%" y="741" width="0.1255%" height="15" fill="rgb(207,181,38)" fg:x="109983" fg:w="606"/><text x="23.0313%" y="751.50"></text></g><g><title>__x64_sys_execve (610 samples, 0.13%)</title><rect x="22.7811%" y="773" width="0.1264%" height="15" fill="rgb(211,8,23)" fg:x="109982" fg:w="610"/><text x="23.0311%" y="783.50"></text></g><g><title>do_execveat_common (610 samples, 0.13%)</title><rect x="22.7811%" y="757" width="0.1264%" height="15" fill="rgb(235,11,44)" fg:x="109982" fg:w="610"/><text x="23.0311%" y="767.50"></text></g><g><title>kmem_cache_free (55 samples, 0.01%)</title><rect x="22.9311%" y="661" width="0.0114%" height="15" fill="rgb(248,18,52)" fg:x="110706" fg:w="55"/><text x="23.1811%" y="671.50"></text></g><g><title>unlink_anon_vmas (128 samples, 0.03%)</title><rect x="22.9168%" y="677" width="0.0265%" height="15" fill="rgb(208,4,7)" fg:x="110637" fg:w="128"/><text x="23.1668%" y="687.50"></text></g><g><title>free_pgtables (167 samples, 0.03%)</title><rect x="22.9149%" y="693" width="0.0346%" height="15" fill="rgb(240,17,39)" fg:x="110628" fg:w="167"/><text x="23.1649%" y="703.50"></text></g><g><title>lru_add_drain_cpu (59 samples, 0.01%)</title><rect x="22.9499%" y="677" width="0.0122%" height="15" fill="rgb(207,170,3)" fg:x="110797" fg:w="59"/><text x="23.1999%" y="687.50"></text></g><g><title>pagevec_lru_move_fn (57 samples, 0.01%)</title><rect x="22.9503%" y="661" width="0.0118%" height="15" fill="rgb(236,100,52)" fg:x="110799" fg:w="57"/><text x="23.2003%" y="671.50"></text></g><g><title>lru_add_drain (62 samples, 0.01%)</title><rect x="22.9497%" y="693" width="0.0128%" height="15" fill="rgb(246,78,51)" fg:x="110796" fg:w="62"/><text x="23.1997%" y="703.50"></text></g><g><title>kmem_cache_free (66 samples, 0.01%)</title><rect x="22.9644%" y="677" width="0.0137%" height="15" fill="rgb(211,17,15)" fg:x="110867" fg:w="66"/><text x="23.2144%" y="687.50"></text></g><g><title>remove_vma (75 samples, 0.02%)</title><rect x="22.9628%" y="693" width="0.0155%" height="15" fill="rgb(209,59,46)" fg:x="110859" fg:w="75"/><text x="23.2128%" y="703.50"></text></g><g><title>tlb_finish_mmu (106 samples, 0.02%)</title><rect x="22.9783%" y="693" width="0.0220%" height="15" fill="rgb(210,92,25)" fg:x="110934" fg:w="106"/><text x="23.2283%" y="703.50"></text></g><g><title>release_pages (86 samples, 0.02%)</title><rect x="22.9825%" y="677" width="0.0178%" height="15" fill="rgb(238,174,52)" fg:x="110954" fg:w="86"/><text x="23.2325%" y="687.50"></text></g><g><title>page_remove_rmap (101 samples, 0.02%)</title><rect x="23.0626%" y="661" width="0.0209%" height="15" fill="rgb(230,73,7)" fg:x="111341" fg:w="101"/><text x="23.3126%" y="671.50"></text></g><g><title>unmap_page_range (428 samples, 0.09%)</title><rect x="23.0011%" y="677" width="0.0887%" height="15" fill="rgb(243,124,40)" fg:x="111044" fg:w="428"/><text x="23.2511%" y="687.50"></text></g><g><title>exit_mmap (871 samples, 0.18%)</title><rect x="22.9139%" y="709" width="0.1804%" height="15" fill="rgb(244,170,11)" fg:x="110623" fg:w="871"/><text x="23.1639%" y="719.50"></text></g><g><title>unmap_vmas (453 samples, 0.09%)</title><rect x="23.0005%" y="693" width="0.0938%" height="15" fill="rgb(207,114,54)" fg:x="111041" fg:w="453"/><text x="23.2505%" y="703.50"></text></g><g><title>mmput (887 samples, 0.18%)</title><rect x="22.9124%" y="725" width="0.1837%" height="15" fill="rgb(205,42,20)" fg:x="110616" fg:w="887"/><text x="23.1624%" y="735.50"></text></g><g><title>__wake_up_common_lock (51 samples, 0.01%)</title><rect x="23.1067%" y="677" width="0.0106%" height="15" fill="rgb(230,30,28)" fg:x="111554" fg:w="51"/><text x="23.3567%" y="687.50"></text></g><g><title>pipe_release (58 samples, 0.01%)</title><rect x="23.1063%" y="693" width="0.0120%" height="15" fill="rgb(205,73,54)" fg:x="111552" fg:w="58"/><text x="23.3563%" y="703.50"></text></g><g><title>__fput (73 samples, 0.02%)</title><rect x="23.1038%" y="709" width="0.0151%" height="15" fill="rgb(254,227,23)" fg:x="111540" fg:w="73"/><text x="23.3538%" y="719.50"></text></g><g><title>task_work_run (76 samples, 0.02%)</title><rect x="23.1036%" y="725" width="0.0157%" height="15" fill="rgb(228,202,34)" fg:x="111539" fg:w="76"/><text x="23.3536%" y="735.50"></text></g><g><title>__x64_sys_exit_group (1,025 samples, 0.21%)</title><rect x="22.9075%" y="773" width="0.2123%" height="15" fill="rgb(222,225,37)" fg:x="110592" fg:w="1025"/><text x="23.1575%" y="783.50"></text></g><g><title>do_group_exit (1,025 samples, 0.21%)</title><rect x="22.9075%" y="757" width="0.2123%" height="15" fill="rgb(221,14,54)" fg:x="110592" fg:w="1025"/><text x="23.1575%" y="767.50"></text></g><g><title>do_exit (1,025 samples, 0.21%)</title><rect x="22.9075%" y="741" width="0.2123%" height="15" fill="rgb(254,102,2)" fg:x="110592" fg:w="1025"/><text x="23.1575%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,669 samples, 0.35%)</title><rect x="22.7761%" y="805" width="0.3457%" height="15" fill="rgb(232,104,17)" fg:x="109958" fg:w="1669"/><text x="23.0261%" y="815.50"></text></g><g><title>do_syscall_64 (1,666 samples, 0.35%)</title><rect x="22.7768%" y="789" width="0.3451%" height="15" fill="rgb(250,220,14)" fg:x="109961" fg:w="1666"/><text x="23.0268%" y="799.50"></text></g><g><title>c++ (16,765 samples, 3.47%)</title><rect x="19.6615%" y="821" width="3.4726%" height="15" fill="rgb(241,158,9)" fg:x="94921" fg:w="16765"/><text x="19.9115%" y="831.50">c++</text></g><g><title>[perf-987172.map] (526 samples, 0.11%)</title><rect x="23.1368%" y="805" width="0.1090%" height="15" fill="rgb(246,9,43)" fg:x="111699" fg:w="526"/><text x="23.3868%" y="815.50"></text></g><g><title>find-action-loo (544 samples, 0.11%)</title><rect x="23.1357%" y="821" width="0.1127%" height="15" fill="rgb(206,73,33)" fg:x="111694" fg:w="544"/><text x="23.3857%" y="831.50"></text></g><g><title>globbing_pool-0 (58 samples, 0.01%)</title><rect x="23.2484%" y="821" width="0.0120%" height="15" fill="rgb(222,79,8)" fg:x="112238" fg:w="58"/><text x="23.4984%" y="831.50"></text></g><g><title>[perf-987172.map] (212 samples, 0.04%)</title><rect x="23.2660%" y="805" width="0.0439%" height="15" fill="rgb(234,8,54)" fg:x="112323" fg:w="212"/><text x="23.5160%" y="815.50"></text></g><g><title>__GI___clone (79 samples, 0.02%)</title><rect x="23.3099%" y="805" width="0.0164%" height="15" fill="rgb(209,134,38)" fg:x="112535" fg:w="79"/><text x="23.5599%" y="815.50"></text></g><g><title>globbing_pool-1 (326 samples, 0.07%)</title><rect x="23.2604%" y="821" width="0.0675%" height="15" fill="rgb(230,127,29)" fg:x="112296" fg:w="326"/><text x="23.5104%" y="831.50"></text></g><g><title>[libunix_jni.so] (68 samples, 0.01%)</title><rect x="23.3294%" y="805" width="0.0141%" height="15" fill="rgb(242,44,41)" fg:x="112629" fg:w="68"/><text x="23.5794%" y="815.50"></text></g><g><title>[perf-987172.map] (279 samples, 0.06%)</title><rect x="23.3435%" y="805" width="0.0578%" height="15" fill="rgb(222,56,43)" fg:x="112697" fg:w="279"/><text x="23.5935%" y="815.50"></text></g><g><title>globbing_pool-2 (402 samples, 0.08%)</title><rect x="23.3280%" y="821" width="0.0833%" height="15" fill="rgb(238,39,47)" fg:x="112622" fg:w="402"/><text x="23.5780%" y="831.50"></text></g><g><title>[libunix_jni.so] (72 samples, 0.01%)</title><rect x="23.4121%" y="805" width="0.0149%" height="15" fill="rgb(226,79,43)" fg:x="113028" fg:w="72"/><text x="23.6621%" y="815.50"></text></g><g><title>[perf-987172.map] (324 samples, 0.07%)</title><rect x="23.4270%" y="805" width="0.0671%" height="15" fill="rgb(242,105,53)" fg:x="113100" fg:w="324"/><text x="23.6770%" y="815.50"></text></g><g><title>globbing_pool-3 (430 samples, 0.09%)</title><rect x="23.4112%" y="821" width="0.0891%" height="15" fill="rgb(251,132,46)" fg:x="113024" fg:w="430"/><text x="23.6612%" y="831.50"></text></g><g><title>[perf-987172.map] (139 samples, 0.03%)</title><rect x="23.5046%" y="805" width="0.0288%" height="15" fill="rgb(231,77,14)" fg:x="113475" fg:w="139"/><text x="23.7546%" y="815.50"></text></g><g><title>globbing_pool-4 (188 samples, 0.04%)</title><rect x="23.5003%" y="821" width="0.0389%" height="15" fill="rgb(240,135,9)" fg:x="113454" fg:w="188"/><text x="23.7503%" y="831.50"></text></g><g><title>[perf-987172.map] (95 samples, 0.02%)</title><rect x="23.5409%" y="805" width="0.0197%" height="15" fill="rgb(248,109,14)" fg:x="113650" fg:w="95"/><text x="23.7909%" y="815.50"></text></g><g><title>globbing_pool-5 (118 samples, 0.02%)</title><rect x="23.5392%" y="821" width="0.0244%" height="15" fill="rgb(227,146,52)" fg:x="113642" fg:w="118"/><text x="23.7892%" y="831.50"></text></g><g><title>[perf-987172.map] (68 samples, 0.01%)</title><rect x="23.5641%" y="805" width="0.0141%" height="15" fill="rgb(232,54,3)" fg:x="113762" fg:w="68"/><text x="23.8141%" y="815.50"></text></g><g><title>free_pcppages_bulk (56 samples, 0.01%)</title><rect x="23.6032%" y="581" width="0.0116%" height="15" fill="rgb(229,201,43)" fg:x="113951" fg:w="56"/><text x="23.8532%" y="591.50"></text></g><g><title>free_unref_page_list (69 samples, 0.01%)</title><rect x="23.6014%" y="597" width="0.0143%" height="15" fill="rgb(252,161,33)" fg:x="113942" fg:w="69"/><text x="23.8514%" y="607.50"></text></g><g><title>tlb_flush_mmu (119 samples, 0.02%)</title><rect x="23.5927%" y="629" width="0.0246%" height="15" fill="rgb(226,146,40)" fg:x="113900" fg:w="119"/><text x="23.8427%" y="639.50"></text></g><g><title>release_pages (111 samples, 0.02%)</title><rect x="23.5943%" y="613" width="0.0230%" height="15" fill="rgb(219,47,25)" fg:x="113908" fg:w="111"/><text x="23.8443%" y="623.50"></text></g><g><title>mmput (180 samples, 0.04%)</title><rect x="23.5802%" y="693" width="0.0373%" height="15" fill="rgb(250,135,13)" fg:x="113840" fg:w="180"/><text x="23.8302%" y="703.50"></text></g><g><title>exit_mmap (180 samples, 0.04%)</title><rect x="23.5802%" y="677" width="0.0373%" height="15" fill="rgb(219,229,18)" fg:x="113840" fg:w="180"/><text x="23.8302%" y="687.50"></text></g><g><title>unmap_vmas (179 samples, 0.04%)</title><rect x="23.5805%" y="661" width="0.0371%" height="15" fill="rgb(217,152,27)" fg:x="113841" fg:w="179"/><text x="23.8305%" y="671.50"></text></g><g><title>unmap_page_range (178 samples, 0.04%)</title><rect x="23.5807%" y="645" width="0.0369%" height="15" fill="rgb(225,71,47)" fg:x="113842" fg:w="178"/><text x="23.8307%" y="655.50"></text></g><g><title>arch_do_signal (182 samples, 0.04%)</title><rect x="23.5800%" y="757" width="0.0377%" height="15" fill="rgb(220,139,14)" fg:x="113839" fg:w="182"/><text x="23.8300%" y="767.50"></text></g><g><title>get_signal (182 samples, 0.04%)</title><rect x="23.5800%" y="741" width="0.0377%" height="15" fill="rgb(247,54,32)" fg:x="113839" fg:w="182"/><text x="23.8300%" y="751.50"></text></g><g><title>do_group_exit (182 samples, 0.04%)</title><rect x="23.5800%" y="725" width="0.0377%" height="15" fill="rgb(252,131,39)" fg:x="113839" fg:w="182"/><text x="23.8300%" y="735.50"></text></g><g><title>do_exit (182 samples, 0.04%)</title><rect x="23.5800%" y="709" width="0.0377%" height="15" fill="rgb(210,108,39)" fg:x="113839" fg:w="182"/><text x="23.8300%" y="719.50"></text></g><g><title>globbing_pool-6 (262 samples, 0.05%)</title><rect x="23.5637%" y="821" width="0.0543%" height="15" fill="rgb(205,23,29)" fg:x="113760" fg:w="262"/><text x="23.8137%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (183 samples, 0.04%)</title><rect x="23.5800%" y="805" width="0.0379%" height="15" fill="rgb(246,139,46)" fg:x="113839" fg:w="183"/><text x="23.8300%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (183 samples, 0.04%)</title><rect x="23.5800%" y="789" width="0.0379%" height="15" fill="rgb(250,81,26)" fg:x="113839" fg:w="183"/><text x="23.8300%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (183 samples, 0.04%)</title><rect x="23.5800%" y="773" width="0.0379%" height="15" fill="rgb(214,104,7)" fg:x="113839" fg:w="183"/><text x="23.8300%" y="783.50"></text></g><g><title>[perf-987172.map] (99 samples, 0.02%)</title><rect x="23.6258%" y="805" width="0.0205%" height="15" fill="rgb(233,189,8)" fg:x="114060" fg:w="99"/><text x="23.8758%" y="815.50"></text></g><g><title>globbing_pool-7 (146 samples, 0.03%)</title><rect x="23.6179%" y="821" width="0.0302%" height="15" fill="rgb(228,141,17)" fg:x="114022" fg:w="146"/><text x="23.8679%" y="831.50"></text></g><g><title>[perf-987172.map] (172 samples, 0.04%)</title><rect x="23.6569%" y="805" width="0.0356%" height="15" fill="rgb(247,157,1)" fg:x="114210" fg:w="172"/><text x="23.9069%" y="815.50"></text></g><g><title>globbing_pool-8 (230 samples, 0.05%)</title><rect x="23.6482%" y="821" width="0.0476%" height="15" fill="rgb(249,225,5)" fg:x="114168" fg:w="230"/><text x="23.8982%" y="831.50"></text></g><g><title>[perf-987172.map] (107 samples, 0.02%)</title><rect x="23.6969%" y="805" width="0.0222%" height="15" fill="rgb(242,55,13)" fg:x="114403" fg:w="107"/><text x="23.9469%" y="815.50"></text></g><g><title>globbing_pool-9 (118 samples, 0.02%)</title><rect x="23.6958%" y="821" width="0.0244%" height="15" fill="rgb(230,49,50)" fg:x="114398" fg:w="118"/><text x="23.9458%" y="831.50"></text></g><g><title>[anon] (217 samples, 0.04%)</title><rect x="23.7234%" y="805" width="0.0449%" height="15" fill="rgb(241,111,38)" fg:x="114531" fg:w="217"/><text x="23.9734%" y="815.50"></text></g><g><title>ClassFileParser::ClassFileParser (69 samples, 0.01%)</title><rect x="24.1911%" y="677" width="0.0143%" height="15" fill="rgb(252,155,4)" fg:x="116789" fg:w="69"/><text x="24.4411%" y="687.50"></text></g><g><title>ClassFileParser::parse_stream (68 samples, 0.01%)</title><rect x="24.1913%" y="661" width="0.0141%" height="15" fill="rgb(212,69,32)" fg:x="116790" fg:w="68"/><text x="24.4413%" y="671.50"></text></g><g><title>KlassFactory::create_from_stream (110 samples, 0.02%)</title><rect x="24.1911%" y="693" width="0.0228%" height="15" fill="rgb(243,107,47)" fg:x="116789" fg:w="110"/><text x="24.4411%" y="703.50"></text></g><g><title>ClassLoader::load_class (121 samples, 0.03%)</title><rect x="24.1890%" y="709" width="0.0251%" height="15" fill="rgb(247,130,12)" fg:x="116779" fg:w="121"/><text x="24.4390%" y="719.50"></text></g><g><title>SystemDictionary::resolve_or_fail (139 samples, 0.03%)</title><rect x="24.1880%" y="757" width="0.0288%" height="15" fill="rgb(233,74,16)" fg:x="116774" fg:w="139"/><text x="24.4380%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (139 samples, 0.03%)</title><rect x="24.1880%" y="741" width="0.0288%" height="15" fill="rgb(208,58,18)" fg:x="116774" fg:w="139"/><text x="24.4380%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (134 samples, 0.03%)</title><rect x="24.1890%" y="725" width="0.0278%" height="15" fill="rgb(242,225,1)" fg:x="116779" fg:w="134"/><text x="24.4390%" y="735.50"></text></g><g><title>ConstantPool::klass_at_impl (142 samples, 0.03%)</title><rect x="24.1876%" y="773" width="0.0294%" height="15" fill="rgb(249,39,40)" fg:x="116772" fg:w="142"/><text x="24.4376%" y="783.50"></text></g><g><title>Rewriter::rewrite (59 samples, 0.01%)</title><rect x="24.2304%" y="741" width="0.0122%" height="15" fill="rgb(207,72,44)" fg:x="116979" fg:w="59"/><text x="24.4804%" y="751.50"></text></g><g><title>Rewriter::Rewriter (59 samples, 0.01%)</title><rect x="24.2304%" y="725" width="0.0122%" height="15" fill="rgb(215,193,12)" fg:x="116979" fg:w="59"/><text x="24.4804%" y="735.50"></text></g><g><title>InstanceKlass::link_class_impl (145 samples, 0.03%)</title><rect x="24.2180%" y="757" width="0.0300%" height="15" fill="rgb(248,41,39)" fg:x="116919" fg:w="145"/><text x="24.4680%" y="767.50"></text></g><g><title>InstanceKlass::initialize_impl (155 samples, 0.03%)</title><rect x="24.2174%" y="773" width="0.0321%" height="15" fill="rgb(253,85,4)" fg:x="116916" fg:w="155"/><text x="24.4674%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (302 samples, 0.06%)</title><rect x="24.1872%" y="789" width="0.0626%" height="15" fill="rgb(243,70,31)" fg:x="116770" fg:w="302"/><text x="24.4372%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (50 samples, 0.01%)</title><rect x="24.2609%" y="789" width="0.0104%" height="15" fill="rgb(253,195,26)" fg:x="117126" fg:w="50"/><text x="24.5109%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (50 samples, 0.01%)</title><rect x="24.2609%" y="773" width="0.0104%" height="15" fill="rgb(243,42,11)" fg:x="117126" fg:w="50"/><text x="24.5109%" y="783.50"></text></g><g><title>LinkResolver::resolve_field (65 samples, 0.01%)</title><rect x="24.2897%" y="741" width="0.0135%" height="15" fill="rgb(239,66,17)" fg:x="117265" fg:w="65"/><text x="24.5397%" y="751.50"></text></g><g><title>LinkResolver::resolve_field_access (88 samples, 0.02%)</title><rect x="24.2853%" y="757" width="0.0182%" height="15" fill="rgb(217,132,21)" fg:x="117244" fg:w="88"/><text x="24.5353%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (100 samples, 0.02%)</title><rect x="24.2833%" y="773" width="0.0207%" height="15" fill="rgb(252,202,21)" fg:x="117234" fg:w="100"/><text x="24.5333%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (57 samples, 0.01%)</title><rect x="24.3164%" y="661" width="0.0118%" height="15" fill="rgb(233,98,36)" fg:x="117394" fg:w="57"/><text x="24.5664%" y="671.50"></text></g><g><title>ClassLoader::load_class (61 samples, 0.01%)</title><rect x="24.3158%" y="677" width="0.0126%" height="15" fill="rgb(216,153,54)" fg:x="117391" fg:w="61"/><text x="24.5658%" y="687.50"></text></g><g><title>SystemDictionary::load_instance_class (69 samples, 0.01%)</title><rect x="24.3156%" y="693" width="0.0143%" height="15" fill="rgb(250,99,7)" fg:x="117390" fg:w="69"/><text x="24.5656%" y="703.50"></text></g><g><title>ConstantPool::klass_ref_at (86 samples, 0.02%)</title><rect x="24.3125%" y="741" width="0.0178%" height="15" fill="rgb(207,56,50)" fg:x="117375" fg:w="86"/><text x="24.5625%" y="751.50"></text></g><g><title>SystemDictionary::resolve_or_fail (79 samples, 0.02%)</title><rect x="24.3139%" y="725" width="0.0164%" height="15" fill="rgb(244,61,34)" fg:x="117382" fg:w="79"/><text x="24.5639%" y="735.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (78 samples, 0.02%)</title><rect x="24.3141%" y="709" width="0.0162%" height="15" fill="rgb(241,50,38)" fg:x="117383" fg:w="78"/><text x="24.5641%" y="719.50"></text></g><g><title>InstanceKlass::link_class_impl (91 samples, 0.02%)</title><rect x="24.3437%" y="709" width="0.0188%" height="15" fill="rgb(212,166,30)" fg:x="117526" fg:w="91"/><text x="24.5937%" y="719.50"></text></g><g><title>InstanceKlass::initialize_impl (93 samples, 0.02%)</title><rect x="24.3437%" y="725" width="0.0193%" height="15" fill="rgb(249,127,32)" fg:x="117526" fg:w="93"/><text x="24.5937%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (115 samples, 0.02%)</title><rect x="24.3433%" y="741" width="0.0238%" height="15" fill="rgb(209,103,0)" fg:x="117524" fg:w="115"/><text x="24.5933%" y="751.50"></text></g><g><title>LinkResolver::resolve_invoke (271 samples, 0.06%)</title><rect x="24.3116%" y="757" width="0.0561%" height="15" fill="rgb(238,209,51)" fg:x="117371" fg:w="271"/><text x="24.5616%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (329 samples, 0.07%)</title><rect x="24.3040%" y="773" width="0.0681%" height="15" fill="rgb(237,56,23)" fg:x="117334" fg:w="329"/><text x="24.5540%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (54 samples, 0.01%)</title><rect x="24.3721%" y="773" width="0.0112%" height="15" fill="rgb(215,153,46)" fg:x="117663" fg:w="54"/><text x="24.6221%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (51 samples, 0.01%)</title><rect x="24.3727%" y="757" width="0.0106%" height="15" fill="rgb(224,49,31)" fg:x="117666" fg:w="51"/><text x="24.6227%" y="767.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (51 samples, 0.01%)</title><rect x="24.3727%" y="741" width="0.0106%" height="15" fill="rgb(250,18,42)" fg:x="117666" fg:w="51"/><text x="24.6227%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (489 samples, 0.10%)</title><rect x="24.2824%" y="789" width="0.1013%" height="15" fill="rgb(215,176,39)" fg:x="117230" fg:w="489"/><text x="24.5324%" y="799.50"></text></g><g><title>JVM_GetClassDeclaredMethods (68 samples, 0.01%)</title><rect x="24.4144%" y="789" width="0.0141%" height="15" fill="rgb(223,77,29)" fg:x="117867" fg:w="68"/><text x="24.6644%" y="799.50"></text></g><g><title>get_class_declared_methods_helper (68 samples, 0.01%)</title><rect x="24.4144%" y="773" width="0.0141%" height="15" fill="rgb(234,94,52)" fg:x="117867" fg:w="68"/><text x="24.6644%" y="783.50"></text></g><g><title>SymbolTable::add (58 samples, 0.01%)</title><rect x="24.4674%" y="645" width="0.0120%" height="15" fill="rgb(220,154,50)" fg:x="118123" fg:w="58"/><text x="24.7174%" y="655.50"></text></g><g><title>SymbolTable::basic_add (58 samples, 0.01%)</title><rect x="24.4674%" y="629" width="0.0120%" height="15" fill="rgb(212,11,10)" fg:x="118123" fg:w="58"/><text x="24.7174%" y="639.50"></text></g><g><title>SymbolTable::lookup_only (437 samples, 0.09%)</title><rect x="24.4794%" y="645" width="0.0905%" height="15" fill="rgb(205,166,19)" fg:x="118181" fg:w="437"/><text x="24.7294%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (531 samples, 0.11%)</title><rect x="24.4604%" y="661" width="0.1100%" height="15" fill="rgb(244,198,16)" fg:x="118089" fg:w="531"/><text x="24.7104%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (546 samples, 0.11%)</title><rect x="24.4577%" y="677" width="0.1131%" height="15" fill="rgb(219,69,12)" fg:x="118076" fg:w="546"/><text x="24.7077%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (160 samples, 0.03%)</title><rect x="24.5776%" y="661" width="0.0331%" height="15" fill="rgb(245,30,7)" fg:x="118655" fg:w="160"/><text x="24.8276%" y="671.50"></text></g><g><title>ClassFileParser::parse_methods (161 samples, 0.03%)</title><rect x="24.5776%" y="677" width="0.0333%" height="15" fill="rgb(218,221,48)" fg:x="118655" fg:w="161"/><text x="24.8276%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (773 samples, 0.16%)</title><rect x="24.4554%" y="709" width="0.1601%" height="15" fill="rgb(216,66,15)" fg:x="118065" fg:w="773"/><text x="24.7054%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (771 samples, 0.16%)</title><rect x="24.4558%" y="693" width="0.1597%" height="15" fill="rgb(226,122,50)" fg:x="118067" fg:w="771"/><text x="24.7058%" y="703.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (93 samples, 0.02%)</title><rect x="24.6215%" y="661" width="0.0193%" height="15" fill="rgb(239,156,16)" fg:x="118867" fg:w="93"/><text x="24.8715%" y="671.50"></text></g><g><title>DefaultMethods::generate_default_methods (138 samples, 0.03%)</title><rect x="24.6174%" y="677" width="0.0286%" height="15" fill="rgb(224,27,38)" fg:x="118847" fg:w="138"/><text x="24.8674%" y="687.50"></text></g><g><title>ClassFileParser::fill_instance_klass (186 samples, 0.04%)</title><rect x="24.6155%" y="693" width="0.0385%" height="15" fill="rgb(224,39,27)" fg:x="118838" fg:w="186"/><text x="24.8655%" y="703.50"></text></g><g><title>ClassFileParser::create_instance_klass (192 samples, 0.04%)</title><rect x="24.6155%" y="709" width="0.0398%" height="15" fill="rgb(215,92,29)" fg:x="118838" fg:w="192"/><text x="24.8655%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (1,008 samples, 0.21%)</title><rect x="24.4554%" y="725" width="0.2088%" height="15" fill="rgb(207,159,16)" fg:x="118065" fg:w="1008"/><text x="24.7054%" y="735.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,052 samples, 0.22%)</title><rect x="24.4552%" y="741" width="0.2179%" height="15" fill="rgb(238,163,47)" fg:x="118064" fg:w="1052"/><text x="24.7052%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (1,069 samples, 0.22%)</title><rect x="24.4519%" y="773" width="0.2214%" height="15" fill="rgb(219,91,49)" fg:x="118048" fg:w="1069"/><text x="24.7019%" y="783.50"></text></g><g><title>jvm_define_class_common (1,068 samples, 0.22%)</title><rect x="24.4521%" y="757" width="0.2212%" height="15" fill="rgb(227,167,31)" fg:x="118049" fg:w="1068"/><text x="24.7021%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,116 samples, 0.23%)</title><rect x="24.4515%" y="789" width="0.2312%" height="15" fill="rgb(234,80,54)" fg:x="118046" fg:w="1116"/><text x="24.7015%" y="799.50"></text></g><g><title>SystemDictionary::load_instance_class (56 samples, 0.01%)</title><rect x="24.6855%" y="725" width="0.0116%" height="15" fill="rgb(212,114,2)" fg:x="119176" fg:w="56"/><text x="24.9355%" y="735.50"></text></g><g><title>JVM_FindClassFromBootLoader (71 samples, 0.01%)</title><rect x="24.6826%" y="773" width="0.0147%" height="15" fill="rgb(234,50,24)" fg:x="119162" fg:w="71"/><text x="24.9326%" y="783.50"></text></g><g><title>SystemDictionary::resolve_or_null (70 samples, 0.01%)</title><rect x="24.6828%" y="757" width="0.0145%" height="15" fill="rgb(221,68,8)" fg:x="119163" fg:w="70"/><text x="24.9328%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (68 samples, 0.01%)</title><rect x="24.6832%" y="741" width="0.0141%" height="15" fill="rgb(254,180,31)" fg:x="119165" fg:w="68"/><text x="24.9332%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (81 samples, 0.02%)</title><rect x="24.6826%" y="789" width="0.0168%" height="15" fill="rgb(247,130,50)" fg:x="119162" fg:w="81"/><text x="24.9326%" y="799.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (71 samples, 0.01%)</title><rect x="24.7207%" y="789" width="0.0147%" height="15" fill="rgb(211,109,4)" fg:x="119346" fg:w="71"/><text x="24.9707%" y="799.50"></text></g><g><title>SystemDictionary::parse_stream (68 samples, 0.01%)</title><rect x="24.7214%" y="773" width="0.0141%" height="15" fill="rgb(238,50,21)" fg:x="119349" fg:w="68"/><text x="24.9714%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (54 samples, 0.01%)</title><rect x="24.7243%" y="757" width="0.0112%" height="15" fill="rgb(225,57,45)" fg:x="119363" fg:w="54"/><text x="24.9743%" y="767.50"></text></g><g><title>[perf-987172.map] (4,705 samples, 0.97%)</title><rect x="23.7721%" y="805" width="0.9746%" height="15" fill="rgb(209,196,50)" fg:x="114766" fg:w="4705"/><text x="24.0221%" y="815.50"></text></g><g><title>readBytes (59 samples, 0.01%)</title><rect x="24.7667%" y="789" width="0.0122%" height="15" fill="rgb(242,140,13)" fg:x="119568" fg:w="59"/><text x="25.0167%" y="799.50"></text></g><g><title>[unknown] (159 samples, 0.03%)</title><rect x="24.7466%" y="805" width="0.0329%" height="15" fill="rgb(217,111,7)" fg:x="119471" fg:w="159"/><text x="24.9966%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (106 samples, 0.02%)</title><rect x="24.7837%" y="741" width="0.0220%" height="15" fill="rgb(253,193,51)" fg:x="119650" fg:w="106"/><text x="25.0337%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (105 samples, 0.02%)</title><rect x="24.7839%" y="725" width="0.0217%" height="15" fill="rgb(252,70,29)" fg:x="119651" fg:w="105"/><text x="25.0339%" y="735.50"></text></g><g><title>native_write_msr (105 samples, 0.02%)</title><rect x="24.7839%" y="709" width="0.0217%" height="15" fill="rgb(232,127,12)" fg:x="119651" fg:w="105"/><text x="25.0339%" y="719.50"></text></g><g><title>schedule_tail (113 samples, 0.02%)</title><rect x="24.7831%" y="773" width="0.0234%" height="15" fill="rgb(211,180,21)" fg:x="119647" fg:w="113"/><text x="25.0331%" y="783.50"></text></g><g><title>finish_task_switch (113 samples, 0.02%)</title><rect x="24.7831%" y="757" width="0.0234%" height="15" fill="rgb(229,72,13)" fg:x="119647" fg:w="113"/><text x="25.0331%" y="767.50"></text></g><g><title>ret_from_fork (117 samples, 0.02%)</title><rect x="24.7827%" y="789" width="0.0242%" height="15" fill="rgb(240,211,49)" fg:x="119645" fg:w="117"/><text x="25.0327%" y="799.50"></text></g><g><title>JNI_CreateJavaVM (57 samples, 0.01%)</title><rect x="24.8071%" y="757" width="0.0118%" height="15" fill="rgb(219,149,40)" fg:x="119763" fg:w="57"/><text x="25.0571%" y="767.50"></text></g><g><title>Threads::create_vm (57 samples, 0.01%)</title><rect x="24.8071%" y="741" width="0.0118%" height="15" fill="rgb(210,127,46)" fg:x="119763" fg:w="57"/><text x="25.0571%" y="751.50"></text></g><g><title>JavaMain (58 samples, 0.01%)</title><rect x="24.8071%" y="773" width="0.0120%" height="15" fill="rgb(220,106,7)" fg:x="119763" fg:w="58"/><text x="25.0571%" y="783.50"></text></g><g><title>__GI___clone (228 samples, 0.05%)</title><rect x="24.7796%" y="805" width="0.0472%" height="15" fill="rgb(249,31,22)" fg:x="119630" fg:w="228"/><text x="25.0296%" y="815.50"></text></g><g><title>start_thread (96 samples, 0.02%)</title><rect x="24.8069%" y="789" width="0.0199%" height="15" fill="rgb(253,1,49)" fg:x="119762" fg:w="96"/><text x="25.0569%" y="799.50"></text></g><g><title>java (5,372 samples, 1.11%)</title><rect x="23.7203%" y="821" width="1.1127%" height="15" fill="rgb(227,144,33)" fg:x="114516" fg:w="5372"/><text x="23.9703%" y="831.50"></text></g><g><title>execute_command_internal (52 samples, 0.01%)</title><rect x="24.8589%" y="789" width="0.0108%" height="15" fill="rgb(249,163,44)" fg:x="120013" fg:w="52"/><text x="25.1089%" y="799.50"></text></g><g><title>[unknown] (131 samples, 0.03%)</title><rect x="24.8465%" y="805" width="0.0271%" height="15" fill="rgb(234,15,39)" fg:x="119953" fg:w="131"/><text x="25.0965%" y="815.50"></text></g><g><title>[bash] (69 samples, 0.01%)</title><rect x="24.8800%" y="709" width="0.0143%" height="15" fill="rgb(207,66,16)" fg:x="120115" fg:w="69"/><text x="25.1300%" y="719.50"></text></g><g><title>parse_and_execute (58 samples, 0.01%)</title><rect x="24.9202%" y="629" width="0.0120%" height="15" fill="rgb(233,112,24)" fg:x="120309" fg:w="58"/><text x="25.1702%" y="639.50"></text></g><g><title>execute_command_internal (56 samples, 0.01%)</title><rect x="24.9206%" y="613" width="0.0116%" height="15" fill="rgb(230,90,22)" fg:x="120311" fg:w="56"/><text x="25.1706%" y="623.50"></text></g><g><title>expand_word_leave_quoted (88 samples, 0.02%)</title><rect x="24.9159%" y="677" width="0.0182%" height="15" fill="rgb(229,61,13)" fg:x="120288" fg:w="88"/><text x="25.1659%" y="687.50"></text></g><g><title>[bash] (88 samples, 0.02%)</title><rect x="24.9159%" y="661" width="0.0182%" height="15" fill="rgb(225,57,24)" fg:x="120288" fg:w="88"/><text x="25.1659%" y="671.50"></text></g><g><title>command_substitute (88 samples, 0.02%)</title><rect x="24.9159%" y="645" width="0.0182%" height="15" fill="rgb(208,169,48)" fg:x="120288" fg:w="88"/><text x="25.1659%" y="655.50"></text></g><g><title>execute_command (115 samples, 0.02%)</title><rect x="24.9111%" y="709" width="0.0238%" height="15" fill="rgb(244,218,51)" fg:x="120265" fg:w="115"/><text x="25.1611%" y="719.50"></text></g><g><title>execute_command_internal (115 samples, 0.02%)</title><rect x="24.9111%" y="693" width="0.0238%" height="15" fill="rgb(214,148,10)" fg:x="120265" fg:w="115"/><text x="25.1611%" y="703.50"></text></g><g><title>execute_command_internal (76 samples, 0.02%)</title><rect x="24.9436%" y="597" width="0.0157%" height="15" fill="rgb(225,174,27)" fg:x="120422" fg:w="76"/><text x="25.1936%" y="607.50"></text></g><g><title>[bash] (76 samples, 0.02%)</title><rect x="24.9436%" y="581" width="0.0157%" height="15" fill="rgb(230,96,26)" fg:x="120422" fg:w="76"/><text x="25.1936%" y="591.50"></text></g><g><title>[bash] (76 samples, 0.02%)</title><rect x="24.9436%" y="565" width="0.0157%" height="15" fill="rgb(232,10,30)" fg:x="120422" fg:w="76"/><text x="25.1936%" y="575.50"></text></g><g><title>execute_command_internal (73 samples, 0.02%)</title><rect x="24.9442%" y="549" width="0.0151%" height="15" fill="rgb(222,8,50)" fg:x="120425" fg:w="73"/><text x="25.1942%" y="559.50"></text></g><g><title>parse_and_execute (79 samples, 0.02%)</title><rect x="24.9434%" y="613" width="0.0164%" height="15" fill="rgb(213,81,27)" fg:x="120421" fg:w="79"/><text x="25.1934%" y="623.50"></text></g><g><title>command_substitute (119 samples, 0.02%)</title><rect x="24.9359%" y="629" width="0.0246%" height="15" fill="rgb(245,50,10)" fg:x="120385" fg:w="119"/><text x="25.1859%" y="639.50"></text></g><g><title>[bash] (125 samples, 0.03%)</title><rect x="24.9351%" y="645" width="0.0259%" height="15" fill="rgb(216,100,18)" fg:x="120381" fg:w="125"/><text x="25.1851%" y="655.50"></text></g><g><title>[bash] (128 samples, 0.03%)</title><rect x="24.9351%" y="661" width="0.0265%" height="15" fill="rgb(236,147,54)" fg:x="120381" fg:w="128"/><text x="25.1851%" y="671.50"></text></g><g><title>[bash] (134 samples, 0.03%)</title><rect x="24.9349%" y="677" width="0.0278%" height="15" fill="rgb(205,143,26)" fg:x="120380" fg:w="134"/><text x="25.1849%" y="687.50"></text></g><g><title>[bash] (137 samples, 0.03%)</title><rect x="24.9349%" y="693" width="0.0284%" height="15" fill="rgb(236,26,9)" fg:x="120380" fg:w="137"/><text x="25.1849%" y="703.50"></text></g><g><title>expand_words (138 samples, 0.03%)</title><rect x="24.9349%" y="709" width="0.0286%" height="15" fill="rgb(221,165,53)" fg:x="120380" fg:w="138"/><text x="25.1849%" y="719.50"></text></g><g><title>execute_command_internal (408 samples, 0.08%)</title><rect x="24.8800%" y="725" width="0.0845%" height="15" fill="rgb(214,110,17)" fg:x="120115" fg:w="408"/><text x="25.1300%" y="735.50"></text></g><g><title>execute_command (410 samples, 0.08%)</title><rect x="24.8798%" y="741" width="0.0849%" height="15" fill="rgb(237,197,12)" fg:x="120114" fg:w="410"/><text x="25.1298%" y="751.50"></text></g><g><title>[bash] (162 samples, 0.03%)</title><rect x="24.9883%" y="677" width="0.0336%" height="15" fill="rgb(205,84,17)" fg:x="120638" fg:w="162"/><text x="25.2383%" y="687.50"></text></g><g><title>[bash] (295 samples, 0.06%)</title><rect x="24.9734%" y="693" width="0.0611%" height="15" fill="rgb(237,18,45)" fg:x="120566" fg:w="295"/><text x="25.2234%" y="703.50"></text></g><g><title>reader_loop (786 samples, 0.16%)</title><rect x="24.8761%" y="757" width="0.1628%" height="15" fill="rgb(221,87,14)" fg:x="120096" fg:w="786"/><text x="25.1261%" y="767.50"></text></g><g><title>read_command (358 samples, 0.07%)</title><rect x="24.9647%" y="741" width="0.0742%" height="15" fill="rgb(238,186,15)" fg:x="120524" fg:w="358"/><text x="25.2147%" y="751.50"></text></g><g><title>parse_command (357 samples, 0.07%)</title><rect x="24.9649%" y="725" width="0.0739%" height="15" fill="rgb(208,115,11)" fg:x="120525" fg:w="357"/><text x="25.2149%" y="735.50"></text></g><g><title>yyparse (357 samples, 0.07%)</title><rect x="24.9649%" y="709" width="0.0739%" height="15" fill="rgb(254,175,0)" fg:x="120525" fg:w="357"/><text x="25.2149%" y="719.50"></text></g><g><title>__libc_start_main (802 samples, 0.17%)</title><rect x="24.8740%" y="789" width="0.1661%" height="15" fill="rgb(227,24,42)" fg:x="120086" fg:w="802"/><text x="25.1240%" y="799.50"></text></g><g><title>main (802 samples, 0.17%)</title><rect x="24.8740%" y="773" width="0.1661%" height="15" fill="rgb(223,211,37)" fg:x="120086" fg:w="802"/><text x="25.1240%" y="783.50"></text></g><g><title>_start (823 samples, 0.17%)</title><rect x="24.8740%" y="805" width="0.1705%" height="15" fill="rgb(235,49,27)" fg:x="120086" fg:w="823"/><text x="25.1240%" y="815.50"></text></g><g><title>mmput (55 samples, 0.01%)</title><rect x="25.0526%" y="725" width="0.0114%" height="15" fill="rgb(254,97,51)" fg:x="120948" fg:w="55"/><text x="25.3026%" y="735.50"></text></g><g><title>exit_mmap (55 samples, 0.01%)</title><rect x="25.0526%" y="709" width="0.0114%" height="15" fill="rgb(249,51,40)" fg:x="120948" fg:w="55"/><text x="25.3026%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.02%)</title><rect x="25.0492%" y="805" width="0.0153%" height="15" fill="rgb(210,128,45)" fg:x="120932" fg:w="74"/><text x="25.2992%" y="815.50"></text></g><g><title>do_syscall_64 (74 samples, 0.02%)</title><rect x="25.0492%" y="789" width="0.0153%" height="15" fill="rgb(224,137,50)" fg:x="120932" fg:w="74"/><text x="25.2992%" y="799.50"></text></g><g><title>__x64_sys_exit_group (58 samples, 0.01%)</title><rect x="25.0526%" y="773" width="0.0120%" height="15" fill="rgb(242,15,9)" fg:x="120948" fg:w="58"/><text x="25.3026%" y="783.50"></text></g><g><title>do_group_exit (58 samples, 0.01%)</title><rect x="25.0526%" y="757" width="0.0120%" height="15" fill="rgb(233,187,41)" fg:x="120948" fg:w="58"/><text x="25.3026%" y="767.50"></text></g><g><title>do_exit (58 samples, 0.01%)</title><rect x="25.0526%" y="741" width="0.0120%" height="15" fill="rgb(227,2,29)" fg:x="120948" fg:w="58"/><text x="25.3026%" y="751.50"></text></g><g><title>libtool (1,121 samples, 0.23%)</title><rect x="24.8330%" y="821" width="0.2322%" height="15" fill="rgb(222,70,3)" fg:x="119888" fg:w="1121"/><text x="25.0830%" y="831.50"></text></g><g><title>copy_process (66 samples, 0.01%)</title><rect x="25.0731%" y="693" width="0.0137%" height="15" fill="rgb(213,11,42)" fg:x="121047" fg:w="66"/><text x="25.3231%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.01%)</title><rect x="25.0731%" y="757" width="0.0145%" height="15" fill="rgb(225,150,9)" fg:x="121047" fg:w="70"/><text x="25.3231%" y="767.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="25.0731%" y="741" width="0.0145%" height="15" fill="rgb(230,162,45)" fg:x="121047" fg:w="70"/><text x="25.3231%" y="751.50"></text></g><g><title>__do_sys_clone (70 samples, 0.01%)</title><rect x="25.0731%" y="725" width="0.0145%" height="15" fill="rgb(222,14,52)" fg:x="121047" fg:w="70"/><text x="25.3231%" y="735.50"></text></g><g><title>kernel_clone (70 samples, 0.01%)</title><rect x="25.0731%" y="709" width="0.0145%" height="15" fill="rgb(254,198,14)" fg:x="121047" fg:w="70"/><text x="25.3231%" y="719.50"></text></g><g><title>__libc_start_main (72 samples, 0.01%)</title><rect x="25.0731%" y="789" width="0.0149%" height="15" fill="rgb(220,217,30)" fg:x="121047" fg:w="72"/><text x="25.3231%" y="799.50"></text></g><g><title>__GI___clone (72 samples, 0.01%)</title><rect x="25.0731%" y="773" width="0.0149%" height="15" fill="rgb(215,146,41)" fg:x="121047" fg:w="72"/><text x="25.3231%" y="783.50"></text></g><g><title>[unknown] (84 samples, 0.02%)</title><rect x="25.0720%" y="805" width="0.0174%" height="15" fill="rgb(217,27,36)" fg:x="121042" fg:w="84"/><text x="25.3220%" y="815.50"></text></g><g><title>WriteFile (52 samples, 0.01%)</title><rect x="25.0903%" y="773" width="0.0108%" height="15" fill="rgb(219,218,39)" fg:x="121130" fg:w="52"/><text x="25.3403%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="25.1027%" y="661" width="0.0101%" height="15" fill="rgb(219,4,42)" fg:x="121190" fg:w="49"/><text x="25.3527%" y="671.50"></text></g><g><title>do_syscall_64 (49 samples, 0.01%)</title><rect x="25.1027%" y="645" width="0.0101%" height="15" fill="rgb(249,119,36)" fg:x="121190" fg:w="49"/><text x="25.3527%" y="655.50"></text></g><g><title>ksys_read (49 samples, 0.01%)</title><rect x="25.1027%" y="629" width="0.0101%" height="15" fill="rgb(209,23,33)" fg:x="121190" fg:w="49"/><text x="25.3527%" y="639.50"></text></g><g><title>vfs_read (49 samples, 0.01%)</title><rect x="25.1027%" y="613" width="0.0101%" height="15" fill="rgb(211,10,0)" fg:x="121190" fg:w="49"/><text x="25.3527%" y="623.50"></text></g><g><title>__GI___fgets_unlocked (56 samples, 0.01%)</title><rect x="25.1014%" y="741" width="0.0116%" height="15" fill="rgb(208,99,37)" fg:x="121184" fg:w="56"/><text x="25.3514%" y="751.50"></text></g><g><title>__GI__IO_getline_info (55 samples, 0.01%)</title><rect x="25.1017%" y="725" width="0.0114%" height="15" fill="rgb(213,132,31)" fg:x="121185" fg:w="55"/><text x="25.3517%" y="735.50"></text></g><g><title>__GI__IO_default_uflow (50 samples, 0.01%)</title><rect x="25.1027%" y="709" width="0.0104%" height="15" fill="rgb(243,129,40)" fg:x="121190" fg:w="50"/><text x="25.3527%" y="719.50"></text></g><g><title>_IO_new_file_underflow (50 samples, 0.01%)</title><rect x="25.1027%" y="693" width="0.0104%" height="15" fill="rgb(210,66,33)" fg:x="121190" fg:w="50"/><text x="25.3527%" y="703.50"></text></g><g><title>__GI___read_nocancel (50 samples, 0.01%)</title><rect x="25.1027%" y="677" width="0.0104%" height="15" fill="rgb(209,189,4)" fg:x="121190" fg:w="50"/><text x="25.3527%" y="687.50"></text></g><g><title>__GI___getmntent_r (77 samples, 0.02%)</title><rect x="25.1012%" y="773" width="0.0159%" height="15" fill="rgb(214,107,37)" fg:x="121183" fg:w="77"/><text x="25.3512%" y="783.50"></text></g><g><title>get_mnt_entry (77 samples, 0.02%)</title><rect x="25.1012%" y="757" width="0.0159%" height="15" fill="rgb(245,88,54)" fg:x="121183" fg:w="77"/><text x="25.3512%" y="767.50"></text></g><g><title>bprm_execve (97 samples, 0.02%)</title><rect x="25.1391%" y="677" width="0.0201%" height="15" fill="rgb(205,146,20)" fg:x="121366" fg:w="97"/><text x="25.3891%" y="687.50"></text></g><g><title>do_execveat_common (108 samples, 0.02%)</title><rect x="25.1385%" y="693" width="0.0224%" height="15" fill="rgb(220,161,25)" fg:x="121363" fg:w="108"/><text x="25.3885%" y="703.50"></text></g><g><title>__execvpe_common (118 samples, 0.02%)</title><rect x="25.1369%" y="773" width="0.0244%" height="15" fill="rgb(215,152,15)" fg:x="121355" fg:w="118"/><text x="25.3869%" y="783.50"></text></g><g><title>__GI_execve (111 samples, 0.02%)</title><rect x="25.1383%" y="757" width="0.0230%" height="15" fill="rgb(233,192,44)" fg:x="121362" fg:w="111"/><text x="25.3883%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.02%)</title><rect x="25.1385%" y="741" width="0.0228%" height="15" fill="rgb(240,170,46)" fg:x="121363" fg:w="110"/><text x="25.3885%" y="751.50"></text></g><g><title>do_syscall_64 (110 samples, 0.02%)</title><rect x="25.1385%" y="725" width="0.0228%" height="15" fill="rgb(207,104,33)" fg:x="121363" fg:w="110"/><text x="25.3885%" y="735.50"></text></g><g><title>__x64_sys_execve (110 samples, 0.02%)</title><rect x="25.1385%" y="709" width="0.0228%" height="15" fill="rgb(219,21,39)" fg:x="121363" fg:w="110"/><text x="25.3885%" y="719.50"></text></g><g><title>copy_process (62 samples, 0.01%)</title><rect x="25.1648%" y="677" width="0.0128%" height="15" fill="rgb(214,133,29)" fg:x="121490" fg:w="62"/><text x="25.4148%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="25.1648%" y="741" width="0.0130%" height="15" fill="rgb(226,93,6)" fg:x="121490" fg:w="63"/><text x="25.4148%" y="751.50"></text></g><g><title>do_syscall_64 (63 samples, 0.01%)</title><rect x="25.1648%" y="725" width="0.0130%" height="15" fill="rgb(252,222,34)" fg:x="121490" fg:w="63"/><text x="25.4148%" y="735.50"></text></g><g><title>__do_sys_clone (63 samples, 0.01%)</title><rect x="25.1648%" y="709" width="0.0130%" height="15" fill="rgb(252,92,48)" fg:x="121490" fg:w="63"/><text x="25.4148%" y="719.50"></text></g><g><title>kernel_clone (63 samples, 0.01%)</title><rect x="25.1648%" y="693" width="0.0130%" height="15" fill="rgb(245,223,24)" fg:x="121490" fg:w="63"/><text x="25.4148%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (155 samples, 0.03%)</title><rect x="25.1851%" y="693" width="0.0321%" height="15" fill="rgb(205,176,3)" fg:x="121588" fg:w="155"/><text x="25.4351%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (155 samples, 0.03%)</title><rect x="25.1851%" y="677" width="0.0321%" height="15" fill="rgb(235,151,15)" fg:x="121588" fg:w="155"/><text x="25.4351%" y="687.50"></text></g><g><title>native_write_msr (155 samples, 0.03%)</title><rect x="25.1851%" y="661" width="0.0321%" height="15" fill="rgb(237,209,11)" fg:x="121588" fg:w="155"/><text x="25.4351%" y="671.50"></text></g><g><title>arch_fork (279 samples, 0.06%)</title><rect x="25.1613%" y="757" width="0.0578%" height="15" fill="rgb(243,227,24)" fg:x="121473" fg:w="279"/><text x="25.4113%" y="767.50"></text></g><g><title>ret_from_fork (198 samples, 0.04%)</title><rect x="25.1781%" y="741" width="0.0410%" height="15" fill="rgb(239,193,16)" fg:x="121554" fg:w="198"/><text x="25.4281%" y="751.50"></text></g><g><title>schedule_tail (198 samples, 0.04%)</title><rect x="25.1781%" y="725" width="0.0410%" height="15" fill="rgb(231,27,9)" fg:x="121554" fg:w="198"/><text x="25.4281%" y="735.50"></text></g><g><title>finish_task_switch (168 samples, 0.03%)</title><rect x="25.1843%" y="709" width="0.0348%" height="15" fill="rgb(219,169,10)" fg:x="121584" fg:w="168"/><text x="25.4343%" y="719.50"></text></g><g><title>__libc_fork (280 samples, 0.06%)</title><rect x="25.1613%" y="773" width="0.0580%" height="15" fill="rgb(244,229,43)" fg:x="121473" fg:w="280"/><text x="25.4113%" y="783.50"></text></g><g><title>__mount (75 samples, 0.02%)</title><rect x="25.2201%" y="773" width="0.0155%" height="15" fill="rgb(254,38,20)" fg:x="121757" fg:w="75"/><text x="25.4701%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.02%)</title><rect x="25.2205%" y="757" width="0.0151%" height="15" fill="rgb(250,47,30)" fg:x="121759" fg:w="73"/><text x="25.4705%" y="767.50"></text></g><g><title>do_syscall_64 (73 samples, 0.02%)</title><rect x="25.2205%" y="741" width="0.0151%" height="15" fill="rgb(224,124,36)" fg:x="121759" fg:w="73"/><text x="25.4705%" y="751.50"></text></g><g><title>__x64_sys_mount (73 samples, 0.02%)</title><rect x="25.2205%" y="725" width="0.0151%" height="15" fill="rgb(246,68,51)" fg:x="121759" fg:w="73"/><text x="25.4705%" y="735.50"></text></g><g><title>Pid1Main (772 samples, 0.16%)</title><rect x="25.0898%" y="789" width="0.1599%" height="15" fill="rgb(253,43,49)" fg:x="121128" fg:w="772"/><text x="25.3398%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (175 samples, 0.04%)</title><rect x="25.2611%" y="741" width="0.0362%" height="15" fill="rgb(219,54,36)" fg:x="121955" fg:w="175"/><text x="25.5111%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (175 samples, 0.04%)</title><rect x="25.2611%" y="725" width="0.0362%" height="15" fill="rgb(227,133,34)" fg:x="121955" fg:w="175"/><text x="25.5111%" y="735.50"></text></g><g><title>native_write_msr (175 samples, 0.04%)</title><rect x="25.2611%" y="709" width="0.0362%" height="15" fill="rgb(247,227,15)" fg:x="121955" fg:w="175"/><text x="25.5111%" y="719.50"></text></g><g><title>schedule_tail (196 samples, 0.04%)</title><rect x="25.2578%" y="773" width="0.0406%" height="15" fill="rgb(229,96,14)" fg:x="121939" fg:w="196"/><text x="25.5078%" y="783.50"></text></g><g><title>finish_task_switch (195 samples, 0.04%)</title><rect x="25.2580%" y="757" width="0.0404%" height="15" fill="rgb(220,79,17)" fg:x="121940" fg:w="195"/><text x="25.5080%" y="767.50"></text></g><g><title>__GI___clone (1,011 samples, 0.21%)</title><rect x="25.0894%" y="805" width="0.2094%" height="15" fill="rgb(205,131,53)" fg:x="121126" fg:w="1011"/><text x="25.3394%" y="815.50"></text></g><g><title>ret_from_fork (211 samples, 0.04%)</title><rect x="25.2551%" y="789" width="0.0437%" height="15" fill="rgb(209,50,29)" fg:x="121926" fg:w="211"/><text x="25.5051%" y="799.50"></text></g><g><title>handle_mm_fault (87 samples, 0.02%)</title><rect x="25.3243%" y="693" width="0.0180%" height="15" fill="rgb(245,86,46)" fg:x="122260" fg:w="87"/><text x="25.5743%" y="703.50"></text></g><g><title>exc_page_fault (92 samples, 0.02%)</title><rect x="25.3235%" y="725" width="0.0191%" height="15" fill="rgb(235,66,46)" fg:x="122256" fg:w="92"/><text x="25.5735%" y="735.50"></text></g><g><title>do_user_addr_fault (91 samples, 0.02%)</title><rect x="25.3237%" y="709" width="0.0188%" height="15" fill="rgb(232,148,31)" fg:x="122257" fg:w="91"/><text x="25.5737%" y="719.50"></text></g><g><title>asm_exc_page_fault (96 samples, 0.02%)</title><rect x="25.3229%" y="741" width="0.0199%" height="15" fill="rgb(217,149,8)" fg:x="122253" fg:w="96"/><text x="25.5729%" y="751.50"></text></g><g><title>[libc-2.31.so] (123 samples, 0.03%)</title><rect x="25.3200%" y="757" width="0.0255%" height="15" fill="rgb(209,183,11)" fg:x="122239" fg:w="123"/><text x="25.5700%" y="767.50"></text></g><g><title>__libc_start_main (230 samples, 0.05%)</title><rect x="25.3102%" y="789" width="0.0476%" height="15" fill="rgb(208,55,20)" fg:x="122192" fg:w="230"/><text x="25.5602%" y="799.50"></text></g><g><title>main (193 samples, 0.04%)</title><rect x="25.3179%" y="773" width="0.0400%" height="15" fill="rgb(218,39,14)" fg:x="122229" fg:w="193"/><text x="25.5679%" y="783.50"></text></g><g><title>do_mmap (54 samples, 0.01%)</title><rect x="25.3672%" y="533" width="0.0112%" height="15" fill="rgb(216,169,33)" fg:x="122467" fg:w="54"/><text x="25.6172%" y="543.50"></text></g><g><title>mmap_region (53 samples, 0.01%)</title><rect x="25.3674%" y="517" width="0.0110%" height="15" fill="rgb(233,80,24)" fg:x="122468" fg:w="53"/><text x="25.6174%" y="527.50"></text></g><g><title>ksys_mmap_pgoff (56 samples, 0.01%)</title><rect x="25.3672%" y="565" width="0.0116%" height="15" fill="rgb(213,179,31)" fg:x="122467" fg:w="56"/><text x="25.6172%" y="575.50"></text></g><g><title>vm_mmap_pgoff (56 samples, 0.01%)</title><rect x="25.3672%" y="549" width="0.0116%" height="15" fill="rgb(209,19,5)" fg:x="122467" fg:w="56"/><text x="25.6172%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="25.3672%" y="597" width="0.0120%" height="15" fill="rgb(219,18,35)" fg:x="122467" fg:w="58"/><text x="25.6172%" y="607.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="25.3672%" y="581" width="0.0120%" height="15" fill="rgb(209,169,16)" fg:x="122467" fg:w="58"/><text x="25.6172%" y="591.50"></text></g><g><title>_dl_map_segments (72 samples, 0.01%)</title><rect x="25.3645%" y="645" width="0.0149%" height="15" fill="rgb(245,90,51)" fg:x="122454" fg:w="72"/><text x="25.6145%" y="655.50"></text></g><g><title>__mmap64 (63 samples, 0.01%)</title><rect x="25.3664%" y="629" width="0.0130%" height="15" fill="rgb(220,99,45)" fg:x="122463" fg:w="63"/><text x="25.6164%" y="639.50"></text></g><g><title>__mmap64 (63 samples, 0.01%)</title><rect x="25.3664%" y="613" width="0.0130%" height="15" fill="rgb(249,89,25)" fg:x="122463" fg:w="63"/><text x="25.6164%" y="623.50"></text></g><g><title>_dl_map_object_from_fd (95 samples, 0.02%)</title><rect x="25.3637%" y="661" width="0.0197%" height="15" fill="rgb(239,193,0)" fg:x="122450" fg:w="95"/><text x="25.6137%" y="671.50"></text></g><g><title>_dl_catch_exception (135 samples, 0.03%)</title><rect x="25.3593%" y="709" width="0.0280%" height="15" fill="rgb(231,126,1)" fg:x="122429" fg:w="135"/><text x="25.6093%" y="719.50"></text></g><g><title>openaux (135 samples, 0.03%)</title><rect x="25.3593%" y="693" width="0.0280%" height="15" fill="rgb(243,166,3)" fg:x="122429" fg:w="135"/><text x="25.6093%" y="703.50"></text></g><g><title>_dl_map_object (135 samples, 0.03%)</title><rect x="25.3593%" y="677" width="0.0280%" height="15" fill="rgb(223,22,34)" fg:x="122429" fg:w="135"/><text x="25.6093%" y="687.50"></text></g><g><title>_dl_map_object_deps (144 samples, 0.03%)</title><rect x="25.3591%" y="725" width="0.0298%" height="15" fill="rgb(251,52,51)" fg:x="122428" fg:w="144"/><text x="25.6091%" y="735.50"></text></g><g><title>dl_new_hash (59 samples, 0.01%)</title><rect x="25.4090%" y="661" width="0.0122%" height="15" fill="rgb(221,165,28)" fg:x="122669" fg:w="59"/><text x="25.6590%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (169 samples, 0.04%)</title><rect x="25.4078%" y="677" width="0.0350%" height="15" fill="rgb(218,121,47)" fg:x="122663" fg:w="169"/><text x="25.6578%" y="687.50"></text></g><g><title>do_lookup_x (104 samples, 0.02%)</title><rect x="25.4213%" y="661" width="0.0215%" height="15" fill="rgb(209,120,9)" fg:x="122728" fg:w="104"/><text x="25.6713%" y="671.50"></text></g><g><title>elf_machine_rela (217 samples, 0.04%)</title><rect x="25.3989%" y="693" width="0.0449%" height="15" fill="rgb(236,68,12)" fg:x="122620" fg:w="217"/><text x="25.6489%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (265 samples, 0.05%)</title><rect x="25.3933%" y="709" width="0.0549%" height="15" fill="rgb(225,194,26)" fg:x="122593" fg:w="265"/><text x="25.6433%" y="719.50"></text></g><g><title>_dl_relocate_object (276 samples, 0.06%)</title><rect x="25.3921%" y="725" width="0.0572%" height="15" fill="rgb(231,84,39)" fg:x="122587" fg:w="276"/><text x="25.6421%" y="735.50"></text></g><g><title>[ld-2.31.so] (450 samples, 0.09%)</title><rect x="25.3579%" y="741" width="0.0932%" height="15" fill="rgb(210,11,45)" fg:x="122422" fg:w="450"/><text x="25.6079%" y="751.50"></text></g><g><title>_dl_start_final (455 samples, 0.09%)</title><rect x="25.3579%" y="773" width="0.0942%" height="15" fill="rgb(224,54,52)" fg:x="122422" fg:w="455"/><text x="25.6079%" y="783.50"></text></g><g><title>_dl_sysdep_start (455 samples, 0.09%)</title><rect x="25.3579%" y="757" width="0.0942%" height="15" fill="rgb(238,102,14)" fg:x="122422" fg:w="455"/><text x="25.6079%" y="767.50"></text></g><g><title>_dl_start (458 samples, 0.09%)</title><rect x="25.3579%" y="789" width="0.0949%" height="15" fill="rgb(243,160,52)" fg:x="122422" fg:w="458"/><text x="25.6079%" y="799.50"></text></g><g><title>_start (699 samples, 0.14%)</title><rect x="25.3100%" y="805" width="0.1448%" height="15" fill="rgb(216,114,19)" fg:x="122191" fg:w="699"/><text x="25.5600%" y="815.50"></text></g><g><title>asm_exc_page_fault (95 samples, 0.02%)</title><rect x="25.4548%" y="805" width="0.0197%" height="15" fill="rgb(244,166,37)" fg:x="122890" fg:w="95"/><text x="25.7048%" y="815.50"></text></g><g><title>begin_new_exec (50 samples, 0.01%)</title><rect x="25.4759%" y="709" width="0.0104%" height="15" fill="rgb(246,29,44)" fg:x="122992" fg:w="50"/><text x="25.7259%" y="719.50"></text></g><g><title>mmput (49 samples, 0.01%)</title><rect x="25.4762%" y="693" width="0.0101%" height="15" fill="rgb(215,56,53)" fg:x="122993" fg:w="49"/><text x="25.7262%" y="703.50"></text></g><g><title>exit_mmap (49 samples, 0.01%)</title><rect x="25.4762%" y="677" width="0.0101%" height="15" fill="rgb(217,60,2)" fg:x="122993" fg:w="49"/><text x="25.7262%" y="687.50"></text></g><g><title>load_elf_binary (73 samples, 0.02%)</title><rect x="25.4745%" y="725" width="0.0151%" height="15" fill="rgb(207,26,24)" fg:x="122985" fg:w="73"/><text x="25.7245%" y="735.50"></text></g><g><title>__x64_sys_execve (74 samples, 0.02%)</title><rect x="25.4745%" y="773" width="0.0153%" height="15" fill="rgb(252,210,15)" fg:x="122985" fg:w="74"/><text x="25.7245%" y="783.50"></text></g><g><title>do_execveat_common (74 samples, 0.02%)</title><rect x="25.4745%" y="757" width="0.0153%" height="15" fill="rgb(253,209,26)" fg:x="122985" fg:w="74"/><text x="25.7245%" y="767.50"></text></g><g><title>bprm_execve (74 samples, 0.02%)</title><rect x="25.4745%" y="741" width="0.0153%" height="15" fill="rgb(238,170,14)" fg:x="122985" fg:w="74"/><text x="25.7245%" y="751.50"></text></g><g><title>mmput (104 samples, 0.02%)</title><rect x="25.4915%" y="741" width="0.0215%" height="15" fill="rgb(216,178,15)" fg:x="123067" fg:w="104"/><text x="25.7415%" y="751.50"></text></g><g><title>exit_mmap (104 samples, 0.02%)</title><rect x="25.4915%" y="725" width="0.0215%" height="15" fill="rgb(250,197,2)" fg:x="123067" fg:w="104"/><text x="25.7415%" y="735.50"></text></g><g><title>__x64_sys_exit (140 samples, 0.03%)</title><rect x="25.4898%" y="773" width="0.0290%" height="15" fill="rgb(212,70,42)" fg:x="123059" fg:w="140"/><text x="25.7398%" y="783.50"></text></g><g><title>do_exit (140 samples, 0.03%)</title><rect x="25.4898%" y="757" width="0.0290%" height="15" fill="rgb(227,213,9)" fg:x="123059" fg:w="140"/><text x="25.7398%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (263 samples, 0.05%)</title><rect x="25.4745%" y="805" width="0.0545%" height="15" fill="rgb(245,99,25)" fg:x="122985" fg:w="263"/><text x="25.7245%" y="815.50"></text></g><g><title>do_syscall_64 (263 samples, 0.05%)</title><rect x="25.4745%" y="789" width="0.0545%" height="15" fill="rgb(250,82,29)" fg:x="122985" fg:w="263"/><text x="25.7245%" y="799.50"></text></g><g><title>__x64_sys_exit_group (49 samples, 0.01%)</title><rect x="25.5188%" y="773" width="0.0101%" height="15" fill="rgb(241,226,54)" fg:x="123199" fg:w="49"/><text x="25.7688%" y="783.50"></text></g><g><title>do_group_exit (49 samples, 0.01%)</title><rect x="25.5188%" y="757" width="0.0101%" height="15" fill="rgb(221,99,41)" fg:x="123199" fg:w="49"/><text x="25.7688%" y="767.50"></text></g><g><title>do_exit (49 samples, 0.01%)</title><rect x="25.5188%" y="741" width="0.0101%" height="15" fill="rgb(213,90,21)" fg:x="123199" fg:w="49"/><text x="25.7688%" y="751.50"></text></g><g><title>linux-sandbox (2,241 samples, 0.46%)</title><rect x="25.0652%" y="821" width="0.4642%" height="15" fill="rgb(205,208,24)" fg:x="121009" fg:w="2241"/><text x="25.3152%" y="831.50"></text></g><g><title>__libc_start_main (50 samples, 0.01%)</title><rect x="25.5327%" y="789" width="0.0104%" height="15" fill="rgb(246,31,12)" fg:x="123266" fg:w="50"/><text x="25.7827%" y="799.50"></text></g><g><title>_dl_start_final (65 samples, 0.01%)</title><rect x="25.5431%" y="773" width="0.0135%" height="15" fill="rgb(213,154,6)" fg:x="123316" fg:w="65"/><text x="25.7931%" y="783.50"></text></g><g><title>_dl_sysdep_start (65 samples, 0.01%)</title><rect x="25.5431%" y="757" width="0.0135%" height="15" fill="rgb(222,163,29)" fg:x="123316" fg:w="65"/><text x="25.7931%" y="767.50"></text></g><g><title>[ld-2.31.so] (65 samples, 0.01%)</title><rect x="25.5431%" y="741" width="0.0135%" height="15" fill="rgb(227,201,8)" fg:x="123316" fg:w="65"/><text x="25.7931%" y="751.50"></text></g><g><title>_dl_start (66 samples, 0.01%)</title><rect x="25.5431%" y="789" width="0.0137%" height="15" fill="rgb(233,9,32)" fg:x="123316" fg:w="66"/><text x="25.7931%" y="799.50"></text></g><g><title>_start (118 samples, 0.02%)</title><rect x="25.5327%" y="805" width="0.0244%" height="15" fill="rgb(217,54,24)" fg:x="123266" fg:w="118"/><text x="25.7827%" y="815.50"></text></g><g><title>process-wrapper (154 samples, 0.03%)</title><rect x="25.5306%" y="821" width="0.0319%" height="15" fill="rgb(235,192,0)" fg:x="123256" fg:w="154"/><text x="25.7806%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.02%)</title><rect x="25.5816%" y="757" width="0.0166%" height="15" fill="rgb(235,45,9)" fg:x="123502" fg:w="80"/><text x="25.8316%" y="767.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="25.5816%" y="741" width="0.0166%" height="15" fill="rgb(246,42,40)" fg:x="123502" fg:w="80"/><text x="25.8316%" y="751.50"></text></g><g><title>kernel_wait4 (80 samples, 0.02%)</title><rect x="25.5816%" y="725" width="0.0166%" height="15" fill="rgb(248,111,24)" fg:x="123502" fg:w="80"/><text x="25.8316%" y="735.50"></text></g><g><title>do_wait (79 samples, 0.02%)</title><rect x="25.5818%" y="709" width="0.0164%" height="15" fill="rgb(249,65,22)" fg:x="123503" fg:w="79"/><text x="25.8318%" y="719.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (82 samples, 0.02%)</title><rect x="25.5814%" y="789" width="0.0170%" height="15" fill="rgb(238,111,51)" fg:x="123501" fg:w="82"/><text x="25.8314%" y="799.50"></text></g><g><title>__GI___wait4 (82 samples, 0.02%)</title><rect x="25.5814%" y="773" width="0.0170%" height="15" fill="rgb(250,118,22)" fg:x="123501" fg:w="82"/><text x="25.8314%" y="783.50"></text></g><g><title>[perf-987172.map] (201 samples, 0.04%)</title><rect x="25.5636%" y="805" width="0.0416%" height="15" fill="rgb(234,84,26)" fg:x="123415" fg:w="201"/><text x="25.8136%" y="815.50"></text></g><g><title>process_reaper (208 samples, 0.04%)</title><rect x="25.5625%" y="821" width="0.0431%" height="15" fill="rgb(243,172,12)" fg:x="123410" fg:w="208"/><text x="25.8125%" y="831.50"></text></g><g><title>futex_wait_queue_me (51 samples, 0.01%)</title><rect x="25.6997%" y="629" width="0.0106%" height="15" fill="rgb(236,150,49)" fg:x="124072" fg:w="51"/><text x="25.9497%" y="639.50"></text></g><g><title>schedule (50 samples, 0.01%)</title><rect x="25.6999%" y="613" width="0.0104%" height="15" fill="rgb(225,197,26)" fg:x="124073" fg:w="50"/><text x="25.9499%" y="623.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="25.6990%" y="693" width="0.0120%" height="15" fill="rgb(214,17,42)" fg:x="124069" fg:w="58"/><text x="25.9490%" y="703.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="25.6990%" y="677" width="0.0120%" height="15" fill="rgb(224,165,40)" fg:x="124069" fg:w="58"/><text x="25.9490%" y="687.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="25.6994%" y="661" width="0.0116%" height="15" fill="rgb(246,100,4)" fg:x="124071" fg:w="56"/><text x="25.9494%" y="671.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="25.6994%" y="645" width="0.0116%" height="15" fill="rgb(222,103,0)" fg:x="124071" fg:w="56"/><text x="25.9494%" y="655.50"></text></g><g><title>__pthread_cond_wait (71 samples, 0.01%)</title><rect x="25.6974%" y="757" width="0.0147%" height="15" fill="rgb(227,189,26)" fg:x="124061" fg:w="71"/><text x="25.9474%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (71 samples, 0.01%)</title><rect x="25.6974%" y="741" width="0.0147%" height="15" fill="rgb(214,202,17)" fg:x="124061" fg:w="71"/><text x="25.9474%" y="751.50"></text></g><g><title>futex_wait_cancelable (67 samples, 0.01%)</title><rect x="25.6982%" y="725" width="0.0139%" height="15" fill="rgb(229,111,3)" fg:x="124065" fg:w="67"/><text x="25.9482%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="25.6990%" y="709" width="0.0130%" height="15" fill="rgb(229,172,15)" fg:x="124069" fg:w="63"/><text x="25.9490%" y="719.50"></text></g><g><title>Parker::park (98 samples, 0.02%)</title><rect x="25.6941%" y="773" width="0.0203%" height="15" fill="rgb(230,224,35)" fg:x="124045" fg:w="98"/><text x="25.9441%" y="783.50"></text></g><g><title>Unsafe_Park (106 samples, 0.02%)</title><rect x="25.6930%" y="789" width="0.0220%" height="15" fill="rgb(251,141,6)" fg:x="124040" fg:w="106"/><text x="25.9430%" y="799.50"></text></g><g><title>[perf-987172.map] (515 samples, 0.11%)</title><rect x="25.6102%" y="805" width="0.1067%" height="15" fill="rgb(225,208,6)" fg:x="123640" fg:w="515"/><text x="25.8602%" y="815.50"></text></g><g><title>profile-writer- (557 samples, 0.12%)</title><rect x="25.6056%" y="821" width="0.1154%" height="15" fill="rgb(246,181,16)" fg:x="123618" fg:w="557"/><text x="25.8556%" y="831.50"></text></g><g><title>[python3.9] (55 samples, 0.01%)</title><rect x="25.7342%" y="789" width="0.0114%" height="15" fill="rgb(227,129,36)" fg:x="124239" fg:w="55"/><text x="25.9842%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (93 samples, 0.02%)</title><rect x="25.7469%" y="789" width="0.0193%" height="15" fill="rgb(248,117,24)" fg:x="124300" fg:w="93"/><text x="25.9969%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.01%)</title><rect x="25.7550%" y="773" width="0.0112%" height="15" fill="rgb(214,185,35)" fg:x="124339" fg:w="54"/><text x="26.0050%" y="783.50"></text></g><g><title>[unknown] (233 samples, 0.05%)</title><rect x="25.7264%" y="805" width="0.0483%" height="15" fill="rgb(236,150,34)" fg:x="124201" fg:w="233"/><text x="25.9764%" y="815.50"></text></g><g><title>Py_RunMain (59 samples, 0.01%)</title><rect x="25.7748%" y="757" width="0.0122%" height="15" fill="rgb(243,228,27)" fg:x="124435" fg:w="59"/><text x="26.0248%" y="767.50"></text></g><g><title>Py_InitializeFromConfig (49 samples, 0.01%)</title><rect x="25.7871%" y="725" width="0.0101%" height="15" fill="rgb(245,77,44)" fg:x="124494" fg:w="49"/><text x="26.0371%" y="735.50"></text></g><g><title>[python3.9] (49 samples, 0.01%)</title><rect x="25.7871%" y="709" width="0.0101%" height="15" fill="rgb(235,214,42)" fg:x="124494" fg:w="49"/><text x="26.0371%" y="719.50"></text></g><g><title>__libc_start_main (109 samples, 0.02%)</title><rect x="25.7748%" y="789" width="0.0226%" height="15" fill="rgb(221,74,3)" fg:x="124435" fg:w="109"/><text x="26.0248%" y="799.50"></text></g><g><title>Py_BytesMain (109 samples, 0.02%)</title><rect x="25.7748%" y="773" width="0.0226%" height="15" fill="rgb(206,121,29)" fg:x="124435" fg:w="109"/><text x="26.0248%" y="783.50"></text></g><g><title>[python3.9] (50 samples, 0.01%)</title><rect x="25.7871%" y="757" width="0.0104%" height="15" fill="rgb(249,131,53)" fg:x="124494" fg:w="50"/><text x="26.0371%" y="767.50"></text></g><g><title>[python3.9] (50 samples, 0.01%)</title><rect x="25.7871%" y="741" width="0.0104%" height="15" fill="rgb(236,170,29)" fg:x="124494" fg:w="50"/><text x="26.0371%" y="751.50"></text></g><g><title>_start (114 samples, 0.02%)</title><rect x="25.7748%" y="805" width="0.0236%" height="15" fill="rgb(247,96,15)" fg:x="124435" fg:w="114"/><text x="26.0248%" y="815.50"></text></g><g><title>python3 (381 samples, 0.08%)</title><rect x="25.7218%" y="821" width="0.0789%" height="15" fill="rgb(211,210,7)" fg:x="124179" fg:w="381"/><text x="25.9718%" y="831.50"></text></g><g><title>[[stack]] (88 samples, 0.02%)</title><rect x="25.8036%" y="805" width="0.0182%" height="15" fill="rgb(240,88,50)" fg:x="124574" fg:w="88"/><text x="26.0536%" y="815.50"></text></g><g><title>[sed] (79 samples, 0.02%)</title><rect x="25.8585%" y="677" width="0.0164%" height="15" fill="rgb(209,229,26)" fg:x="124839" fg:w="79"/><text x="26.1085%" y="687.50"></text></g><g><title>[sed] (171 samples, 0.04%)</title><rect x="25.8494%" y="693" width="0.0354%" height="15" fill="rgb(210,68,23)" fg:x="124795" fg:w="171"/><text x="26.0994%" y="703.50"></text></g><g><title>[sed] (319 samples, 0.07%)</title><rect x="25.8484%" y="709" width="0.0661%" height="15" fill="rgb(229,180,13)" fg:x="124790" fg:w="319"/><text x="26.0984%" y="719.50"></text></g><g><title>[sed] (372 samples, 0.08%)</title><rect x="25.8424%" y="725" width="0.0771%" height="15" fill="rgb(236,53,44)" fg:x="124761" fg:w="372"/><text x="26.0924%" y="735.50"></text></g><g><title>new_sync_write (59 samples, 0.01%)</title><rect x="25.9207%" y="549" width="0.0122%" height="15" fill="rgb(244,214,29)" fg:x="125139" fg:w="59"/><text x="26.1707%" y="559.50"></text></g><g><title>pipe_write (58 samples, 0.01%)</title><rect x="25.9209%" y="533" width="0.0120%" height="15" fill="rgb(220,75,29)" fg:x="125140" fg:w="58"/><text x="26.1709%" y="543.50"></text></g><g><title>__GI___fflush_unlocked (68 samples, 0.01%)</title><rect x="25.9194%" y="725" width="0.0141%" height="15" fill="rgb(214,183,37)" fg:x="125133" fg:w="68"/><text x="26.1694%" y="735.50"></text></g><g><title>_IO_new_file_sync (67 samples, 0.01%)</title><rect x="25.9196%" y="709" width="0.0139%" height="15" fill="rgb(239,117,29)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="719.50"></text></g><g><title>_IO_new_do_write (67 samples, 0.01%)</title><rect x="25.9196%" y="693" width="0.0139%" height="15" fill="rgb(237,171,35)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="703.50"></text></g><g><title>_IO_new_do_write (67 samples, 0.01%)</title><rect x="25.9196%" y="677" width="0.0139%" height="15" fill="rgb(229,178,53)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="687.50"></text></g><g><title>new_do_write (67 samples, 0.01%)</title><rect x="25.9196%" y="661" width="0.0139%" height="15" fill="rgb(210,102,19)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="671.50"></text></g><g><title>_IO_new_file_write (67 samples, 0.01%)</title><rect x="25.9196%" y="645" width="0.0139%" height="15" fill="rgb(235,127,22)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="655.50"></text></g><g><title>__GI___libc_write (67 samples, 0.01%)</title><rect x="25.9196%" y="629" width="0.0139%" height="15" fill="rgb(244,31,31)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.01%)</title><rect x="25.9196%" y="613" width="0.0139%" height="15" fill="rgb(231,43,21)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="623.50"></text></g><g><title>do_syscall_64 (67 samples, 0.01%)</title><rect x="25.9196%" y="597" width="0.0139%" height="15" fill="rgb(217,131,35)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="607.50"></text></g><g><title>ksys_write (67 samples, 0.01%)</title><rect x="25.9196%" y="581" width="0.0139%" height="15" fill="rgb(221,149,4)" fg:x="125134" fg:w="67"/><text x="26.1696%" y="591.50"></text></g><g><title>vfs_write (65 samples, 0.01%)</title><rect x="25.9200%" y="565" width="0.0135%" height="15" fill="rgb(232,170,28)" fg:x="125136" fg:w="65"/><text x="26.1700%" y="575.50"></text></g><g><title>[sed] (525 samples, 0.11%)</title><rect x="25.8370%" y="741" width="0.1087%" height="15" fill="rgb(238,56,10)" fg:x="124735" fg:w="525"/><text x="26.0870%" y="751.50"></text></g><g><title>[sed] (553 samples, 0.11%)</title><rect x="25.8349%" y="757" width="0.1145%" height="15" fill="rgb(235,196,14)" fg:x="124725" fg:w="553"/><text x="26.0849%" y="767.50"></text></g><g><title>[sed] (608 samples, 0.13%)</title><rect x="25.8347%" y="773" width="0.1259%" height="15" fill="rgb(216,45,48)" fg:x="124724" fg:w="608"/><text x="26.0847%" y="783.50"></text></g><g><title>__libc_start_main (690 samples, 0.14%)</title><rect x="25.8347%" y="789" width="0.1429%" height="15" fill="rgb(238,213,17)" fg:x="124724" fg:w="690"/><text x="26.0847%" y="799.50"></text></g><g><title>__GI_exit (66 samples, 0.01%)</title><rect x="25.9640%" y="773" width="0.0137%" height="15" fill="rgb(212,13,2)" fg:x="125348" fg:w="66"/><text x="26.2140%" y="783.50"></text></g><g><title>__run_exit_handlers (66 samples, 0.01%)</title><rect x="25.9640%" y="757" width="0.0137%" height="15" fill="rgb(240,114,20)" fg:x="125348" fg:w="66"/><text x="26.2140%" y="767.50"></text></g><g><title>[sed] (704 samples, 0.15%)</title><rect x="25.8337%" y="805" width="0.1458%" height="15" fill="rgb(228,41,40)" fg:x="124719" fg:w="704"/><text x="26.0837%" y="815.50"></text></g><g><title>[unknown] (105 samples, 0.02%)</title><rect x="25.9795%" y="805" width="0.0217%" height="15" fill="rgb(244,132,35)" fg:x="125423" fg:w="105"/><text x="26.2295%" y="815.50"></text></g><g><title>filesystems_proc_show (67 samples, 0.01%)</title><rect x="26.0176%" y="549" width="0.0139%" height="15" fill="rgb(253,189,4)" fg:x="125607" fg:w="67"/><text x="26.2676%" y="559.50"></text></g><g><title>seq_printf (51 samples, 0.01%)</title><rect x="26.0209%" y="533" width="0.0106%" height="15" fill="rgb(224,37,19)" fg:x="125623" fg:w="51"/><text x="26.2709%" y="543.50"></text></g><g><title>vsnprintf (49 samples, 0.01%)</title><rect x="26.0213%" y="517" width="0.0101%" height="15" fill="rgb(235,223,18)" fg:x="125625" fg:w="49"/><text x="26.2713%" y="527.50"></text></g><g><title>new_sync_read (84 samples, 0.02%)</title><rect x="26.0143%" y="597" width="0.0174%" height="15" fill="rgb(235,163,25)" fg:x="125591" fg:w="84"/><text x="26.2643%" y="607.50"></text></g><g><title>proc_reg_read_iter (83 samples, 0.02%)</title><rect x="26.0145%" y="581" width="0.0172%" height="15" fill="rgb(217,145,28)" fg:x="125592" fg:w="83"/><text x="26.2645%" y="591.50"></text></g><g><title>seq_read_iter (81 samples, 0.02%)</title><rect x="26.0149%" y="565" width="0.0168%" height="15" fill="rgb(223,223,32)" fg:x="125594" fg:w="81"/><text x="26.2649%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.02%)</title><rect x="26.0133%" y="661" width="0.0191%" height="15" fill="rgb(227,189,39)" fg:x="125586" fg:w="92"/><text x="26.2633%" y="671.50"></text></g><g><title>do_syscall_64 (91 samples, 0.02%)</title><rect x="26.0135%" y="645" width="0.0188%" height="15" fill="rgb(248,10,22)" fg:x="125587" fg:w="91"/><text x="26.2635%" y="655.50"></text></g><g><title>ksys_read (90 samples, 0.02%)</title><rect x="26.0137%" y="629" width="0.0186%" height="15" fill="rgb(248,46,39)" fg:x="125588" fg:w="90"/><text x="26.2637%" y="639.50"></text></g><g><title>vfs_read (90 samples, 0.02%)</title><rect x="26.0137%" y="613" width="0.0186%" height="15" fill="rgb(248,113,48)" fg:x="125588" fg:w="90"/><text x="26.2637%" y="623.50"></text></g><g><title>_IO_new_file_underflow (101 samples, 0.02%)</title><rect x="26.0116%" y="693" width="0.0209%" height="15" fill="rgb(245,16,25)" fg:x="125578" fg:w="101"/><text x="26.2616%" y="703.50"></text></g><g><title>__GI___libc_read (93 samples, 0.02%)</title><rect x="26.0133%" y="677" width="0.0193%" height="15" fill="rgb(249,152,16)" fg:x="125586" fg:w="93"/><text x="26.2633%" y="687.50"></text></g><g><title>_IO_getdelim (120 samples, 0.02%)</title><rect x="26.0085%" y="709" width="0.0249%" height="15" fill="rgb(250,16,1)" fg:x="125563" fg:w="120"/><text x="26.2585%" y="719.50"></text></g><g><title>__GI__dl_addr (102 samples, 0.02%)</title><rect x="26.0522%" y="645" width="0.0211%" height="15" fill="rgb(249,138,3)" fg:x="125774" fg:w="102"/><text x="26.3022%" y="655.50"></text></g><g><title>determine_info (98 samples, 0.02%)</title><rect x="26.0530%" y="629" width="0.0203%" height="15" fill="rgb(227,71,41)" fg:x="125778" fg:w="98"/><text x="26.3030%" y="639.50"></text></g><g><title>__fopen_internal (179 samples, 0.04%)</title><rect x="26.0373%" y="709" width="0.0371%" height="15" fill="rgb(209,184,23)" fg:x="125702" fg:w="179"/><text x="26.2873%" y="719.50"></text></g><g><title>malloc_hook_ini (108 samples, 0.02%)</title><rect x="26.0520%" y="693" width="0.0224%" height="15" fill="rgb(223,215,31)" fg:x="125773" fg:w="108"/><text x="26.3020%" y="703.50"></text></g><g><title>ptmalloc_init (108 samples, 0.02%)</title><rect x="26.0520%" y="677" width="0.0224%" height="15" fill="rgb(210,146,28)" fg:x="125773" fg:w="108"/><text x="26.3020%" y="687.50"></text></g><g><title>ptmalloc_init (108 samples, 0.02%)</title><rect x="26.0520%" y="661" width="0.0224%" height="15" fill="rgb(209,183,41)" fg:x="125773" fg:w="108"/><text x="26.3020%" y="671.50"></text></g><g><title>[libselinux.so.1] (354 samples, 0.07%)</title><rect x="26.0025%" y="741" width="0.0733%" height="15" fill="rgb(209,224,45)" fg:x="125534" fg:w="354"/><text x="26.2525%" y="751.50"></text></g><g><title>selinuxfs_exists (325 samples, 0.07%)</title><rect x="26.0085%" y="725" width="0.0673%" height="15" fill="rgb(224,209,51)" fg:x="125563" fg:w="325"/><text x="26.2585%" y="735.50"></text></g><g><title>_dl_start_user (375 samples, 0.08%)</title><rect x="26.0014%" y="805" width="0.0777%" height="15" fill="rgb(223,17,39)" fg:x="125529" fg:w="375"/><text x="26.2514%" y="815.50"></text></g><g><title>_dl_init (373 samples, 0.08%)</title><rect x="26.0019%" y="789" width="0.0773%" height="15" fill="rgb(234,204,37)" fg:x="125531" fg:w="373"/><text x="26.2519%" y="799.50"></text></g><g><title>call_init (372 samples, 0.08%)</title><rect x="26.0021%" y="773" width="0.0771%" height="15" fill="rgb(236,120,5)" fg:x="125532" fg:w="372"/><text x="26.2521%" y="783.50"></text></g><g><title>call_init (372 samples, 0.08%)</title><rect x="26.0021%" y="757" width="0.0771%" height="15" fill="rgb(248,97,27)" fg:x="125532" fg:w="372"/><text x="26.2521%" y="767.50"></text></g><g><title>do_syscall_64 (71 samples, 0.01%)</title><rect x="26.1009%" y="693" width="0.0147%" height="15" fill="rgb(240,66,17)" fg:x="126009" fg:w="71"/><text x="26.3509%" y="703.50"></text></g><g><title>do_faccessat (70 samples, 0.01%)</title><rect x="26.1011%" y="677" width="0.0145%" height="15" fill="rgb(210,79,3)" fg:x="126010" fg:w="70"/><text x="26.3511%" y="687.50"></text></g><g><title>__access (73 samples, 0.02%)</title><rect x="26.1007%" y="725" width="0.0151%" height="15" fill="rgb(214,176,27)" fg:x="126008" fg:w="73"/><text x="26.3507%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="26.1009%" y="709" width="0.0149%" height="15" fill="rgb(235,185,3)" fg:x="126009" fg:w="72"/><text x="26.3509%" y="719.50"></text></g><g><title>_dl_cache_libcmp (61 samples, 0.01%)</title><rect x="26.1408%" y="645" width="0.0126%" height="15" fill="rgb(227,24,12)" fg:x="126202" fg:w="61"/><text x="26.3908%" y="655.50"></text></g><g><title>do_filp_open (62 samples, 0.01%)</title><rect x="26.1638%" y="549" width="0.0128%" height="15" fill="rgb(252,169,48)" fg:x="126313" fg:w="62"/><text x="26.4138%" y="559.50"></text></g><g><title>path_openat (58 samples, 0.01%)</title><rect x="26.1647%" y="533" width="0.0120%" height="15" fill="rgb(212,65,1)" fg:x="126317" fg:w="58"/><text x="26.4147%" y="543.50"></text></g><g><title>__GI___open64_nocancel (91 samples, 0.02%)</title><rect x="26.1595%" y="629" width="0.0188%" height="15" fill="rgb(242,39,24)" fg:x="126292" fg:w="91"/><text x="26.4095%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.02%)</title><rect x="26.1599%" y="613" width="0.0184%" height="15" fill="rgb(249,32,23)" fg:x="126294" fg:w="89"/><text x="26.4099%" y="623.50"></text></g><g><title>do_syscall_64 (89 samples, 0.02%)</title><rect x="26.1599%" y="597" width="0.0184%" height="15" fill="rgb(251,195,23)" fg:x="126294" fg:w="89"/><text x="26.4099%" y="607.50"></text></g><g><title>__x64_sys_openat (89 samples, 0.02%)</title><rect x="26.1599%" y="581" width="0.0184%" height="15" fill="rgb(236,174,8)" fg:x="126294" fg:w="89"/><text x="26.4099%" y="591.50"></text></g><g><title>do_sys_openat2 (88 samples, 0.02%)</title><rect x="26.1601%" y="565" width="0.0182%" height="15" fill="rgb(220,197,8)" fg:x="126295" fg:w="88"/><text x="26.4101%" y="575.50"></text></g><g><title>_dl_sysdep_read_whole_file (172 samples, 0.04%)</title><rect x="26.1535%" y="645" width="0.0356%" height="15" fill="rgb(240,108,37)" fg:x="126263" fg:w="172"/><text x="26.4035%" y="655.50"></text></g><g><title>__mmap64 (52 samples, 0.01%)</title><rect x="26.1783%" y="629" width="0.0108%" height="15" fill="rgb(232,176,24)" fg:x="126383" fg:w="52"/><text x="26.4283%" y="639.50"></text></g><g><title>__mmap64 (51 samples, 0.01%)</title><rect x="26.1785%" y="613" width="0.0106%" height="15" fill="rgb(243,35,29)" fg:x="126384" fg:w="51"/><text x="26.4285%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="26.1790%" y="597" width="0.0101%" height="15" fill="rgb(210,37,18)" fg:x="126386" fg:w="49"/><text x="26.4290%" y="607.50"></text></g><g><title>do_syscall_64 (49 samples, 0.01%)</title><rect x="26.1790%" y="581" width="0.0101%" height="15" fill="rgb(224,184,40)" fg:x="126386" fg:w="49"/><text x="26.4290%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (49 samples, 0.01%)</title><rect x="26.1790%" y="565" width="0.0101%" height="15" fill="rgb(236,39,29)" fg:x="126386" fg:w="49"/><text x="26.4290%" y="575.50"></text></g><g><title>do_user_addr_fault (50 samples, 0.01%)</title><rect x="26.1895%" y="613" width="0.0104%" height="15" fill="rgb(232,48,39)" fg:x="126437" fg:w="50"/><text x="26.4395%" y="623.50"></text></g><g><title>asm_exc_page_fault (53 samples, 0.01%)</title><rect x="26.1891%" y="645" width="0.0110%" height="15" fill="rgb(236,34,42)" fg:x="126435" fg:w="53"/><text x="26.4391%" y="655.50"></text></g><g><title>exc_page_fault (51 samples, 0.01%)</title><rect x="26.1895%" y="629" width="0.0106%" height="15" fill="rgb(243,106,37)" fg:x="126437" fg:w="51"/><text x="26.4395%" y="639.50"></text></g><g><title>_dl_load_cache_lookup (326 samples, 0.07%)</title><rect x="26.1332%" y="661" width="0.0675%" height="15" fill="rgb(218,96,6)" fg:x="126165" fg:w="326"/><text x="26.3832%" y="671.50"></text></g><g><title>handle_mm_fault (76 samples, 0.02%)</title><rect x="26.2249%" y="565" width="0.0157%" height="15" fill="rgb(235,130,12)" fg:x="126608" fg:w="76"/><text x="26.4749%" y="575.50"></text></g><g><title>asm_exc_page_fault (85 samples, 0.02%)</title><rect x="26.2235%" y="613" width="0.0176%" height="15" fill="rgb(231,95,0)" fg:x="126601" fg:w="85"/><text x="26.4735%" y="623.50"></text></g><g><title>exc_page_fault (85 samples, 0.02%)</title><rect x="26.2235%" y="597" width="0.0176%" height="15" fill="rgb(228,12,23)" fg:x="126601" fg:w="85"/><text x="26.4735%" y="607.50"></text></g><g><title>do_user_addr_fault (85 samples, 0.02%)</title><rect x="26.2235%" y="581" width="0.0176%" height="15" fill="rgb(216,12,1)" fg:x="126601" fg:w="85"/><text x="26.4735%" y="591.50"></text></g><g><title>[ld-2.31.so] (112 samples, 0.02%)</title><rect x="26.2196%" y="629" width="0.0232%" height="15" fill="rgb(219,59,3)" fg:x="126582" fg:w="112"/><text x="26.4696%" y="639.50"></text></g><g><title>vma_interval_tree_insert (97 samples, 0.02%)</title><rect x="26.2763%" y="453" width="0.0201%" height="15" fill="rgb(215,208,46)" fg:x="126856" fg:w="97"/><text x="26.5263%" y="463.50"></text></g><g><title>__vma_adjust (181 samples, 0.04%)</title><rect x="26.2643%" y="469" width="0.0375%" height="15" fill="rgb(254,224,29)" fg:x="126798" fg:w="181"/><text x="26.5143%" y="479.50"></text></g><g><title>__split_vma (252 samples, 0.05%)</title><rect x="26.2633%" y="485" width="0.0522%" height="15" fill="rgb(232,14,29)" fg:x="126793" fg:w="252"/><text x="26.5133%" y="495.50"></text></g><g><title>vm_area_dup (65 samples, 0.01%)</title><rect x="26.3020%" y="469" width="0.0135%" height="15" fill="rgb(208,45,52)" fg:x="126980" fg:w="65"/><text x="26.5520%" y="479.50"></text></g><g><title>unmap_region (83 samples, 0.02%)</title><rect x="26.3273%" y="485" width="0.0172%" height="15" fill="rgb(234,191,28)" fg:x="127102" fg:w="83"/><text x="26.5773%" y="495.50"></text></g><g><title>__do_munmap (403 samples, 0.08%)</title><rect x="26.2612%" y="501" width="0.0835%" height="15" fill="rgb(244,67,43)" fg:x="126783" fg:w="403"/><text x="26.5112%" y="511.50"></text></g><g><title>perf_iterate_sb (75 samples, 0.02%)</title><rect x="26.3629%" y="485" width="0.0155%" height="15" fill="rgb(236,189,24)" fg:x="127274" fg:w="75"/><text x="26.6129%" y="495.50"></text></g><g><title>perf_iterate_ctx (71 samples, 0.01%)</title><rect x="26.3637%" y="469" width="0.0147%" height="15" fill="rgb(239,214,33)" fg:x="127278" fg:w="71"/><text x="26.6137%" y="479.50"></text></g><g><title>perf_event_mmap (170 samples, 0.04%)</title><rect x="26.3461%" y="501" width="0.0352%" height="15" fill="rgb(226,176,41)" fg:x="127193" fg:w="170"/><text x="26.5961%" y="511.50"></text></g><g><title>vma_link (73 samples, 0.02%)</title><rect x="26.3911%" y="501" width="0.0151%" height="15" fill="rgb(248,47,8)" fg:x="127410" fg:w="73"/><text x="26.6411%" y="511.50"></text></g><g><title>mmap_region (765 samples, 0.16%)</title><rect x="26.2539%" y="517" width="0.1585%" height="15" fill="rgb(218,81,44)" fg:x="126748" fg:w="765"/><text x="26.5039%" y="527.50"></text></g><g><title>do_mmap (784 samples, 0.16%)</title><rect x="26.2504%" y="533" width="0.1624%" height="15" fill="rgb(213,98,6)" fg:x="126731" fg:w="784"/><text x="26.5004%" y="543.50"></text></g><g><title>ksys_mmap_pgoff (813 samples, 0.17%)</title><rect x="26.2471%" y="565" width="0.1684%" height="15" fill="rgb(222,85,22)" fg:x="126715" fg:w="813"/><text x="26.4971%" y="575.50"></text></g><g><title>vm_mmap_pgoff (798 samples, 0.17%)</title><rect x="26.2502%" y="549" width="0.1653%" height="15" fill="rgb(239,46,39)" fg:x="126730" fg:w="798"/><text x="26.5002%" y="559.50"></text></g><g><title>do_mmap (66 samples, 0.01%)</title><rect x="26.4155%" y="549" width="0.0137%" height="15" fill="rgb(237,12,29)" fg:x="127528" fg:w="66"/><text x="26.6655%" y="559.50"></text></g><g><title>mmap_region (65 samples, 0.01%)</title><rect x="26.4157%" y="533" width="0.0135%" height="15" fill="rgb(214,77,8)" fg:x="127529" fg:w="65"/><text x="26.6657%" y="543.50"></text></g><g><title>do_syscall_64 (886 samples, 0.18%)</title><rect x="26.2461%" y="581" width="0.1835%" height="15" fill="rgb(217,168,37)" fg:x="126710" fg:w="886"/><text x="26.4961%" y="591.50"></text></g><g><title>vm_mmap_pgoff (68 samples, 0.01%)</title><rect x="26.4155%" y="565" width="0.0141%" height="15" fill="rgb(221,217,23)" fg:x="127528" fg:w="68"/><text x="26.6655%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (889 samples, 0.18%)</title><rect x="26.2459%" y="597" width="0.1841%" height="15" fill="rgb(243,229,36)" fg:x="126709" fg:w="889"/><text x="26.4959%" y="607.50"></text></g><g><title>__mmap64 (908 samples, 0.19%)</title><rect x="26.2428%" y="629" width="0.1881%" height="15" fill="rgb(251,163,40)" fg:x="126694" fg:w="908"/><text x="26.4928%" y="639.50"></text></g><g><title>__mmap64 (907 samples, 0.19%)</title><rect x="26.2430%" y="613" width="0.1879%" height="15" fill="rgb(237,222,12)" fg:x="126695" fg:w="907"/><text x="26.4930%" y="623.50"></text></g><g><title>_dl_map_segments (1,030 samples, 0.21%)</title><rect x="26.2177%" y="645" width="0.2133%" height="15" fill="rgb(248,132,6)" fg:x="126573" fg:w="1030"/><text x="26.4677%" y="655.50"></text></g><g><title>_dl_new_object (75 samples, 0.02%)</title><rect x="26.4310%" y="645" width="0.0155%" height="15" fill="rgb(227,167,50)" fg:x="127603" fg:w="75"/><text x="26.6810%" y="655.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.01%)</title><rect x="26.4495%" y="629" width="0.0114%" height="15" fill="rgb(242,84,37)" fg:x="127692" fg:w="55"/><text x="26.6995%" y="639.50"></text></g><g><title>exc_page_fault (55 samples, 0.01%)</title><rect x="26.4495%" y="613" width="0.0114%" height="15" fill="rgb(212,4,50)" fg:x="127692" fg:w="55"/><text x="26.6995%" y="623.50"></text></g><g><title>do_user_addr_fault (53 samples, 0.01%)</title><rect x="26.4499%" y="597" width="0.0110%" height="15" fill="rgb(230,228,32)" fg:x="127694" fg:w="53"/><text x="26.6999%" y="607.50"></text></g><g><title>_dl_setup_hash (80 samples, 0.02%)</title><rect x="26.4466%" y="645" width="0.0166%" height="15" fill="rgb(248,217,23)" fg:x="127678" fg:w="80"/><text x="26.6966%" y="655.50"></text></g><g><title>handle_mm_fault (108 samples, 0.02%)</title><rect x="26.4739%" y="581" width="0.0224%" height="15" fill="rgb(238,197,32)" fg:x="127810" fg:w="108"/><text x="26.7239%" y="591.50"></text></g><g><title>wp_page_copy (78 samples, 0.02%)</title><rect x="26.4801%" y="565" width="0.0162%" height="15" fill="rgb(236,106,1)" fg:x="127840" fg:w="78"/><text x="26.7301%" y="575.50"></text></g><g><title>do_user_addr_fault (124 samples, 0.03%)</title><rect x="26.4714%" y="597" width="0.0257%" height="15" fill="rgb(219,228,13)" fg:x="127798" fg:w="124"/><text x="26.7214%" y="607.50"></text></g><g><title>exc_page_fault (131 samples, 0.03%)</title><rect x="26.4704%" y="613" width="0.0271%" height="15" fill="rgb(238,30,35)" fg:x="127793" fg:w="131"/><text x="26.7204%" y="623.50"></text></g><g><title>asm_exc_page_fault (133 samples, 0.03%)</title><rect x="26.4702%" y="629" width="0.0275%" height="15" fill="rgb(236,70,23)" fg:x="127792" fg:w="133"/><text x="26.7202%" y="639.50"></text></g><g><title>_dl_map_object_from_fd (1,451 samples, 0.30%)</title><rect x="26.2007%" y="661" width="0.3006%" height="15" fill="rgb(249,104,48)" fg:x="126491" fg:w="1451"/><text x="26.4507%" y="671.50"></text></g><g><title>elf_get_dynamic_info (184 samples, 0.04%)</title><rect x="26.4631%" y="645" width="0.0381%" height="15" fill="rgb(254,117,50)" fg:x="127758" fg:w="184"/><text x="26.7131%" y="655.50"></text></g><g><title>do_filp_open (139 samples, 0.03%)</title><rect x="26.5108%" y="565" width="0.0288%" height="15" fill="rgb(223,152,4)" fg:x="127988" fg:w="139"/><text x="26.7608%" y="575.50"></text></g><g><title>path_openat (135 samples, 0.03%)</title><rect x="26.5116%" y="549" width="0.0280%" height="15" fill="rgb(245,6,2)" fg:x="127992" fg:w="135"/><text x="26.7616%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (178 samples, 0.04%)</title><rect x="26.5077%" y="629" width="0.0369%" height="15" fill="rgb(249,150,24)" fg:x="127973" fg:w="178"/><text x="26.7577%" y="639.50"></text></g><g><title>do_syscall_64 (178 samples, 0.04%)</title><rect x="26.5077%" y="613" width="0.0369%" height="15" fill="rgb(228,185,42)" fg:x="127973" fg:w="178"/><text x="26.7577%" y="623.50"></text></g><g><title>__x64_sys_openat (177 samples, 0.04%)</title><rect x="26.5079%" y="597" width="0.0367%" height="15" fill="rgb(226,39,33)" fg:x="127974" fg:w="177"/><text x="26.7579%" y="607.50"></text></g><g><title>do_sys_openat2 (175 samples, 0.04%)</title><rect x="26.5083%" y="581" width="0.0362%" height="15" fill="rgb(221,166,19)" fg:x="127976" fg:w="175"/><text x="26.7583%" y="591.50"></text></g><g><title>__GI___open64_nocancel (183 samples, 0.04%)</title><rect x="26.5073%" y="645" width="0.0379%" height="15" fill="rgb(209,109,2)" fg:x="127971" fg:w="183"/><text x="26.7573%" y="655.50"></text></g><g><title>open_verify (237 samples, 0.05%)</title><rect x="26.5054%" y="661" width="0.0491%" height="15" fill="rgb(252,216,26)" fg:x="127962" fg:w="237"/><text x="26.7554%" y="671.50"></text></g><g><title>_dl_catch_exception (2,113 samples, 0.44%)</title><rect x="26.1284%" y="709" width="0.4377%" height="15" fill="rgb(227,173,36)" fg:x="126142" fg:w="2113"/><text x="26.3784%" y="719.50"></text></g><g><title>openaux (2,109 samples, 0.44%)</title><rect x="26.1292%" y="693" width="0.4368%" height="15" fill="rgb(209,90,7)" fg:x="126146" fg:w="2109"/><text x="26.3792%" y="703.50"></text></g><g><title>_dl_map_object (2,109 samples, 0.44%)</title><rect x="26.1292%" y="677" width="0.4368%" height="15" fill="rgb(250,194,11)" fg:x="126146" fg:w="2109"/><text x="26.3792%" y="687.50"></text></g><g><title>strcmp (56 samples, 0.01%)</title><rect x="26.5545%" y="661" width="0.0116%" height="15" fill="rgb(220,72,50)" fg:x="128199" fg:w="56"/><text x="26.8045%" y="671.50"></text></g><g><title>_dl_map_object_deps (2,173 samples, 0.45%)</title><rect x="26.1234%" y="725" width="0.4501%" height="15" fill="rgb(222,106,48)" fg:x="126118" fg:w="2173"/><text x="26.3734%" y="735.50"></text></g><g><title>__vma_adjust (68 samples, 0.01%)</title><rect x="26.5870%" y="581" width="0.0141%" height="15" fill="rgb(216,220,45)" fg:x="128356" fg:w="68"/><text x="26.8370%" y="591.50"></text></g><g><title>__split_vma (115 samples, 0.02%)</title><rect x="26.5868%" y="597" width="0.0238%" height="15" fill="rgb(234,112,18)" fg:x="128355" fg:w="115"/><text x="26.8368%" y="607.50"></text></g><g><title>perf_event_mmap (71 samples, 0.01%)</title><rect x="26.6179%" y="597" width="0.0147%" height="15" fill="rgb(206,179,9)" fg:x="128505" fg:w="71"/><text x="26.8679%" y="607.50"></text></g><g><title>mprotect_fixup (229 samples, 0.05%)</title><rect x="26.5862%" y="613" width="0.0474%" height="15" fill="rgb(215,115,40)" fg:x="128352" fg:w="229"/><text x="26.8362%" y="623.50"></text></g><g><title>do_syscall_64 (244 samples, 0.05%)</title><rect x="26.5839%" y="661" width="0.0505%" height="15" fill="rgb(222,69,34)" fg:x="128341" fg:w="244"/><text x="26.8339%" y="671.50"></text></g><g><title>__x64_sys_mprotect (244 samples, 0.05%)</title><rect x="26.5839%" y="645" width="0.0505%" height="15" fill="rgb(209,161,10)" fg:x="128341" fg:w="244"/><text x="26.8339%" y="655.50"></text></g><g><title>do_mprotect_pkey (244 samples, 0.05%)</title><rect x="26.5839%" y="629" width="0.0505%" height="15" fill="rgb(217,6,38)" fg:x="128341" fg:w="244"/><text x="26.8339%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (245 samples, 0.05%)</title><rect x="26.5839%" y="677" width="0.0507%" height="15" fill="rgb(229,229,48)" fg:x="128341" fg:w="245"/><text x="26.8339%" y="687.50"></text></g><g><title>_dl_protect_relro (252 samples, 0.05%)</title><rect x="26.5829%" y="709" width="0.0522%" height="15" fill="rgb(225,21,28)" fg:x="128336" fg:w="252"/><text x="26.8329%" y="719.50"></text></g><g><title>__mprotect (252 samples, 0.05%)</title><rect x="26.5829%" y="693" width="0.0522%" height="15" fill="rgb(206,33,13)" fg:x="128336" fg:w="252"/><text x="26.8329%" y="703.50"></text></g><g><title>elf_machine_lazy_rel (52 samples, 0.01%)</title><rect x="26.6415%" y="693" width="0.0108%" height="15" fill="rgb(242,178,17)" fg:x="128619" fg:w="52"/><text x="26.8915%" y="703.50"></text></g><g><title>dl_new_hash (88 samples, 0.02%)</title><rect x="26.6825%" y="661" width="0.0182%" height="15" fill="rgb(220,162,5)" fg:x="128817" fg:w="88"/><text x="26.9325%" y="671.50"></text></g><g><title>check_match (153 samples, 0.03%)</title><rect x="26.7705%" y="645" width="0.0317%" height="15" fill="rgb(210,33,43)" fg:x="129242" fg:w="153"/><text x="27.0205%" y="655.50"></text></g><g><title>strcmp (106 samples, 0.02%)</title><rect x="26.7803%" y="629" width="0.0220%" height="15" fill="rgb(216,116,54)" fg:x="129289" fg:w="106"/><text x="27.0303%" y="639.50"></text></g><g><title>_dl_lookup_symbol_x (626 samples, 0.13%)</title><rect x="26.6742%" y="677" width="0.1297%" height="15" fill="rgb(249,92,24)" fg:x="128777" fg:w="626"/><text x="26.9242%" y="687.50"></text></g><g><title>do_lookup_x (498 samples, 0.10%)</title><rect x="26.7007%" y="661" width="0.1032%" height="15" fill="rgb(231,189,14)" fg:x="128905" fg:w="498"/><text x="26.9507%" y="671.50"></text></g><g><title>elf_machine_rela (752 samples, 0.16%)</title><rect x="26.6523%" y="693" width="0.1558%" height="15" fill="rgb(230,8,41)" fg:x="128671" fg:w="752"/><text x="26.9023%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (866 samples, 0.18%)</title><rect x="26.6351%" y="709" width="0.1794%" height="15" fill="rgb(249,7,27)" fg:x="128588" fg:w="866"/><text x="26.8851%" y="719.50"></text></g><g><title>_dl_relocate_object (1,135 samples, 0.24%)</title><rect x="26.5812%" y="725" width="0.2351%" height="15" fill="rgb(232,86,5)" fg:x="128328" fg:w="1135"/><text x="26.8312%" y="735.50"></text></g><g><title>__vm_munmap (53 samples, 0.01%)</title><rect x="26.8167%" y="645" width="0.0110%" height="15" fill="rgb(224,175,18)" fg:x="129465" fg:w="53"/><text x="27.0667%" y="655.50"></text></g><g><title>__do_munmap (53 samples, 0.01%)</title><rect x="26.8167%" y="629" width="0.0110%" height="15" fill="rgb(220,129,12)" fg:x="129465" fg:w="53"/><text x="27.0667%" y="639.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="26.8167%" y="677" width="0.0112%" height="15" fill="rgb(210,19,36)" fg:x="129465" fg:w="54"/><text x="27.0667%" y="687.50"></text></g><g><title>__x64_sys_munmap (54 samples, 0.01%)</title><rect x="26.8167%" y="661" width="0.0112%" height="15" fill="rgb(219,96,14)" fg:x="129465" fg:w="54"/><text x="27.0667%" y="671.50"></text></g><g><title>_dl_unload_cache (65 samples, 0.01%)</title><rect x="26.8163%" y="725" width="0.0135%" height="15" fill="rgb(249,106,1)" fg:x="129463" fg:w="65"/><text x="27.0663%" y="735.50"></text></g><g><title>munmap (64 samples, 0.01%)</title><rect x="26.8165%" y="709" width="0.0133%" height="15" fill="rgb(249,155,20)" fg:x="129464" fg:w="64"/><text x="27.0665%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="26.8167%" y="693" width="0.0130%" height="15" fill="rgb(244,168,9)" fg:x="129465" fg:w="63"/><text x="27.0667%" y="703.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.01%)</title><rect x="26.8298%" y="725" width="0.0114%" height="15" fill="rgb(216,23,50)" fg:x="129528" fg:w="55"/><text x="27.0798%" y="735.50"></text></g><g><title>exc_page_fault (55 samples, 0.01%)</title><rect x="26.8298%" y="709" width="0.0114%" height="15" fill="rgb(224,219,20)" fg:x="129528" fg:w="55"/><text x="27.0798%" y="719.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.01%)</title><rect x="26.8300%" y="693" width="0.0112%" height="15" fill="rgb(222,156,15)" fg:x="129529" fg:w="54"/><text x="27.0800%" y="703.50"></text></g><g><title>[ld-2.31.so] (3,641 samples, 0.75%)</title><rect x="26.0918%" y="741" width="0.7542%" height="15" fill="rgb(231,97,17)" fg:x="125965" fg:w="3641"/><text x="26.3418%" y="751.50"></text></g><g><title>_dl_start_final (3,772 samples, 0.78%)</title><rect x="26.0878%" y="773" width="0.7813%" height="15" fill="rgb(218,70,48)" fg:x="125946" fg:w="3772"/><text x="26.3378%" y="783.50"></text></g><g><title>_dl_sysdep_start (3,770 samples, 0.78%)</title><rect x="26.0882%" y="757" width="0.7809%" height="15" fill="rgb(212,196,52)" fg:x="125948" fg:w="3770"/><text x="26.3382%" y="767.50"></text></g><g><title>_dl_start (3,810 samples, 0.79%)</title><rect x="26.0874%" y="789" width="0.7892%" height="15" fill="rgb(243,203,18)" fg:x="125944" fg:w="3810"/><text x="26.3374%" y="799.50"></text></g><g><title>_start (3,819 samples, 0.79%)</title><rect x="26.0870%" y="805" width="0.7910%" height="15" fill="rgb(252,125,41)" fg:x="125942" fg:w="3819"/><text x="26.3370%" y="815.50"></text></g><g><title>asm_exc_page_fault (220 samples, 0.05%)</title><rect x="26.8780%" y="805" width="0.0456%" height="15" fill="rgb(223,180,33)" fg:x="129761" fg:w="220"/><text x="27.1280%" y="815.50"></text></g><g><title>__do_munmap (66 samples, 0.01%)</title><rect x="26.9449%" y="677" width="0.0137%" height="15" fill="rgb(254,159,46)" fg:x="130084" fg:w="66"/><text x="27.1949%" y="687.50"></text></g><g><title>__vm_munmap (68 samples, 0.01%)</title><rect x="26.9447%" y="693" width="0.0141%" height="15" fill="rgb(254,38,10)" fg:x="130083" fg:w="68"/><text x="27.1947%" y="703.50"></text></g><g><title>mmap_region (73 samples, 0.02%)</title><rect x="26.9623%" y="661" width="0.0151%" height="15" fill="rgb(208,217,32)" fg:x="130168" fg:w="73"/><text x="27.2123%" y="671.50"></text></g><g><title>do_mmap (86 samples, 0.02%)</title><rect x="26.9599%" y="677" width="0.0178%" height="15" fill="rgb(221,120,13)" fg:x="130156" fg:w="86"/><text x="27.2099%" y="687.50"></text></g><g><title>elf_map (165 samples, 0.03%)</title><rect x="26.9445%" y="709" width="0.0342%" height="15" fill="rgb(246,54,52)" fg:x="130082" fg:w="165"/><text x="27.1945%" y="719.50"></text></g><g><title>vm_mmap_pgoff (94 samples, 0.02%)</title><rect x="26.9592%" y="693" width="0.0195%" height="15" fill="rgb(242,34,25)" fg:x="130153" fg:w="94"/><text x="27.2092%" y="703.50"></text></g><g><title>setup_arg_pages (162 samples, 0.03%)</title><rect x="26.9826%" y="709" width="0.0336%" height="15" fill="rgb(247,209,9)" fg:x="130266" fg:w="162"/><text x="27.2326%" y="719.50"></text></g><g><title>shift_arg_pages (85 samples, 0.02%)</title><rect x="26.9986%" y="693" width="0.0176%" height="15" fill="rgb(228,71,26)" fg:x="130343" fg:w="85"/><text x="27.2486%" y="703.50"></text></g><g><title>do_mmap (59 samples, 0.01%)</title><rect x="27.0212%" y="693" width="0.0122%" height="15" fill="rgb(222,145,49)" fg:x="130452" fg:w="59"/><text x="27.2712%" y="703.50"></text></g><g><title>mmap_region (58 samples, 0.01%)</title><rect x="27.0214%" y="677" width="0.0120%" height="15" fill="rgb(218,121,17)" fg:x="130453" fg:w="58"/><text x="27.2714%" y="687.50"></text></g><g><title>__x64_sys_execve (533 samples, 0.11%)</title><rect x="26.9242%" y="773" width="0.1104%" height="15" fill="rgb(244,50,7)" fg:x="129984" fg:w="533"/><text x="27.1742%" y="783.50"></text></g><g><title>do_execveat_common (533 samples, 0.11%)</title><rect x="26.9242%" y="757" width="0.1104%" height="15" fill="rgb(246,229,37)" fg:x="129984" fg:w="533"/><text x="27.1742%" y="767.50"></text></g><g><title>bprm_execve (533 samples, 0.11%)</title><rect x="26.9242%" y="741" width="0.1104%" height="15" fill="rgb(225,18,5)" fg:x="129984" fg:w="533"/><text x="27.1742%" y="751.50"></text></g><g><title>load_elf_binary (533 samples, 0.11%)</title><rect x="26.9242%" y="725" width="0.1104%" height="15" fill="rgb(213,204,8)" fg:x="129984" fg:w="533"/><text x="27.1742%" y="735.50"></text></g><g><title>vm_mmap_pgoff (66 samples, 0.01%)</title><rect x="27.0210%" y="709" width="0.0137%" height="15" fill="rgb(238,103,6)" fg:x="130451" fg:w="66"/><text x="27.2710%" y="719.50"></text></g><g><title>tlb_finish_mmu (64 samples, 0.01%)</title><rect x="27.0520%" y="693" width="0.0133%" height="15" fill="rgb(222,25,35)" fg:x="130601" fg:w="64"/><text x="27.3020%" y="703.50"></text></g><g><title>release_pages (51 samples, 0.01%)</title><rect x="27.0547%" y="677" width="0.0106%" height="15" fill="rgb(213,203,35)" fg:x="130614" fg:w="51"/><text x="27.3047%" y="687.50"></text></g><g><title>unmap_page_range (104 samples, 0.02%)</title><rect x="27.0657%" y="677" width="0.0215%" height="15" fill="rgb(221,79,53)" fg:x="130667" fg:w="104"/><text x="27.3157%" y="687.50"></text></g><g><title>exit_mmap (252 samples, 0.05%)</title><rect x="27.0355%" y="709" width="0.0522%" height="15" fill="rgb(243,200,35)" fg:x="130521" fg:w="252"/><text x="27.2855%" y="719.50"></text></g><g><title>unmap_vmas (108 samples, 0.02%)</title><rect x="27.0653%" y="693" width="0.0224%" height="15" fill="rgb(248,60,25)" fg:x="130665" fg:w="108"/><text x="27.3153%" y="703.50"></text></g><g><title>mmput (253 samples, 0.05%)</title><rect x="27.0355%" y="725" width="0.0524%" height="15" fill="rgb(227,53,46)" fg:x="130521" fg:w="253"/><text x="27.2855%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (811 samples, 0.17%)</title><rect x="26.9236%" y="805" width="0.1680%" height="15" fill="rgb(216,120,32)" fg:x="129981" fg:w="811"/><text x="27.1736%" y="815.50"></text></g><g><title>do_syscall_64 (808 samples, 0.17%)</title><rect x="26.9242%" y="789" width="0.1674%" height="15" fill="rgb(220,134,1)" fg:x="129984" fg:w="808"/><text x="27.1742%" y="799.50"></text></g><g><title>__x64_sys_exit_group (275 samples, 0.06%)</title><rect x="27.0346%" y="773" width="0.0570%" height="15" fill="rgb(237,168,5)" fg:x="130517" fg:w="275"/><text x="27.2846%" y="783.50"></text></g><g><title>do_group_exit (275 samples, 0.06%)</title><rect x="27.0346%" y="757" width="0.0570%" height="15" fill="rgb(231,100,33)" fg:x="130517" fg:w="275"/><text x="27.2846%" y="767.50"></text></g><g><title>do_exit (275 samples, 0.06%)</title><rect x="27.0346%" y="741" width="0.0570%" height="15" fill="rgb(236,177,47)" fg:x="130517" fg:w="275"/><text x="27.2846%" y="751.50"></text></g><g><title>sed (6,245 samples, 1.29%)</title><rect x="25.8007%" y="821" width="1.2936%" height="15" fill="rgb(235,7,49)" fg:x="124560" fg:w="6245"/><text x="26.0507%" y="831.50"></text></g><g><title>HandleMark::pop_and_restore (66 samples, 0.01%)</title><rect x="27.1386%" y="789" width="0.0137%" height="15" fill="rgb(232,119,22)" fg:x="131019" fg:w="66"/><text x="27.3886%" y="799.50"></text></g><g><title>[anon] (915 samples, 0.19%)</title><rect x="27.0982%" y="805" width="0.1895%" height="15" fill="rgb(254,73,53)" fg:x="130824" fg:w="915"/><text x="27.3482%" y="815.50"></text></g><g><title>[libc-2.31.so] (56 samples, 0.01%)</title><rect x="27.5005%" y="789" width="0.0116%" height="15" fill="rgb(251,35,20)" fg:x="132766" fg:w="56"/><text x="27.7505%" y="799.50"></text></g><g><title>__x64_sys_close (76 samples, 0.02%)</title><rect x="27.5179%" y="741" width="0.0157%" height="15" fill="rgb(241,119,20)" fg:x="132850" fg:w="76"/><text x="27.7679%" y="751.50"></text></g><g><title>filp_close (58 samples, 0.01%)</title><rect x="27.5216%" y="725" width="0.0120%" height="15" fill="rgb(207,102,14)" fg:x="132868" fg:w="58"/><text x="27.7716%" y="735.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="27.5173%" y="757" width="0.0166%" height="15" fill="rgb(248,201,50)" fg:x="132847" fg:w="80"/><text x="27.7673%" y="767.50"></text></g><g><title>btrfs_release_file (72 samples, 0.01%)</title><rect x="27.5450%" y="693" width="0.0149%" height="15" fill="rgb(222,185,44)" fg:x="132981" fg:w="72"/><text x="27.7950%" y="703.50"></text></g><g><title>kfree (59 samples, 0.01%)</title><rect x="27.5477%" y="677" width="0.0122%" height="15" fill="rgb(218,107,18)" fg:x="132994" fg:w="59"/><text x="27.7977%" y="687.50"></text></g><g><title>__fput (164 samples, 0.03%)</title><rect x="27.5403%" y="709" width="0.0340%" height="15" fill="rgb(237,177,39)" fg:x="132958" fg:w="164"/><text x="27.7903%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (308 samples, 0.06%)</title><rect x="27.5164%" y="773" width="0.0638%" height="15" fill="rgb(246,69,6)" fg:x="132843" fg:w="308"/><text x="27.7664%" y="783.50"></text></g><g><title>syscall_exit_to_user_mode (224 samples, 0.05%)</title><rect x="27.5338%" y="757" width="0.0464%" height="15" fill="rgb(234,208,37)" fg:x="132927" fg:w="224"/><text x="27.7838%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (223 samples, 0.05%)</title><rect x="27.5340%" y="741" width="0.0462%" height="15" fill="rgb(225,4,6)" fg:x="132928" fg:w="223"/><text x="27.7840%" y="751.50"></text></g><g><title>task_work_run (202 samples, 0.04%)</title><rect x="27.5384%" y="725" width="0.0418%" height="15" fill="rgb(233,45,0)" fg:x="132949" fg:w="202"/><text x="27.7884%" y="735.50"></text></g><g><title>__GI___close_nocancel (334 samples, 0.07%)</title><rect x="27.5121%" y="789" width="0.0692%" height="15" fill="rgb(226,136,5)" fg:x="132822" fg:w="334"/><text x="27.7621%" y="799.50"></text></g><g><title>__GI___libc_free (139 samples, 0.03%)</title><rect x="27.5813%" y="789" width="0.0288%" height="15" fill="rgb(211,91,47)" fg:x="133156" fg:w="139"/><text x="27.8313%" y="799.50"></text></g><g><title>lookup_fast (69 samples, 0.01%)</title><rect x="27.6364%" y="645" width="0.0143%" height="15" fill="rgb(242,88,51)" fg:x="133422" fg:w="69"/><text x="27.8864%" y="655.50"></text></g><g><title>__d_lookup_rcu (59 samples, 0.01%)</title><rect x="27.6384%" y="629" width="0.0122%" height="15" fill="rgb(230,91,28)" fg:x="133432" fg:w="59"/><text x="27.8884%" y="639.50"></text></g><g><title>link_path_walk.part.0 (147 samples, 0.03%)</title><rect x="27.6210%" y="677" width="0.0304%" height="15" fill="rgb(254,186,29)" fg:x="133348" fg:w="147"/><text x="27.8710%" y="687.50"></text></g><g><title>walk_component (80 samples, 0.02%)</title><rect x="27.6349%" y="661" width="0.0166%" height="15" fill="rgb(238,6,4)" fg:x="133415" fg:w="80"/><text x="27.8849%" y="671.50"></text></g><g><title>path_lookupat (187 samples, 0.04%)</title><rect x="27.6196%" y="693" width="0.0387%" height="15" fill="rgb(221,151,16)" fg:x="133341" fg:w="187"/><text x="27.8696%" y="703.50"></text></g><g><title>filename_lookup (207 samples, 0.04%)</title><rect x="27.6161%" y="709" width="0.0429%" height="15" fill="rgb(251,143,52)" fg:x="133324" fg:w="207"/><text x="27.8661%" y="719.50"></text></g><g><title>__do_sys_newlstat (291 samples, 0.06%)</title><rect x="27.6109%" y="741" width="0.0603%" height="15" fill="rgb(206,90,15)" fg:x="133299" fg:w="291"/><text x="27.8609%" y="751.50"></text></g><g><title>vfs_statx (279 samples, 0.06%)</title><rect x="27.6134%" y="725" width="0.0578%" height="15" fill="rgb(218,35,8)" fg:x="133311" fg:w="279"/><text x="27.8634%" y="735.50"></text></g><g><title>do_syscall_64 (295 samples, 0.06%)</title><rect x="27.6107%" y="757" width="0.0611%" height="15" fill="rgb(239,215,6)" fg:x="133298" fg:w="295"/><text x="27.8607%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (297 samples, 0.06%)</title><rect x="27.6107%" y="773" width="0.0615%" height="15" fill="rgb(245,116,39)" fg:x="133298" fg:w="297"/><text x="27.8607%" y="783.50"></text></g><g><title>__GI___lxstat (301 samples, 0.06%)</title><rect x="27.6101%" y="789" width="0.0623%" height="15" fill="rgb(242,65,28)" fg:x="133295" fg:w="301"/><text x="27.8601%" y="799.50"></text></g><g><title>dput (52 samples, 0.01%)</title><rect x="27.6811%" y="725" width="0.0108%" height="15" fill="rgb(252,132,53)" fg:x="133638" fg:w="52"/><text x="27.9311%" y="735.50"></text></g><g><title>btrfs_free_path (49 samples, 0.01%)</title><rect x="27.6935%" y="661" width="0.0101%" height="15" fill="rgb(224,159,50)" fg:x="133698" fg:w="49"/><text x="27.9435%" y="671.50"></text></g><g><title>btrfs_release_path (49 samples, 0.01%)</title><rect x="27.6935%" y="645" width="0.0101%" height="15" fill="rgb(224,93,4)" fg:x="133698" fg:w="49"/><text x="27.9435%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (81 samples, 0.02%)</title><rect x="27.7335%" y="629" width="0.0168%" height="15" fill="rgb(208,81,34)" fg:x="133891" fg:w="81"/><text x="27.9835%" y="639.50"></text></g><g><title>__radix_tree_lookup (65 samples, 0.01%)</title><rect x="27.7656%" y="597" width="0.0135%" height="15" fill="rgb(233,92,54)" fg:x="134046" fg:w="65"/><text x="28.0156%" y="607.50"></text></g><g><title>find_extent_buffer (118 samples, 0.02%)</title><rect x="27.7582%" y="613" width="0.0244%" height="15" fill="rgb(237,21,14)" fg:x="134010" fg:w="118"/><text x="28.0082%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (168 samples, 0.03%)</title><rect x="27.7503%" y="629" width="0.0348%" height="15" fill="rgb(249,128,51)" fg:x="133972" fg:w="168"/><text x="28.0003%" y="639.50"></text></g><g><title>btrfs_search_slot (404 samples, 0.08%)</title><rect x="27.7043%" y="645" width="0.0837%" height="15" fill="rgb(223,129,24)" fg:x="133750" fg:w="404"/><text x="27.9543%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (421 samples, 0.09%)</title><rect x="27.7037%" y="661" width="0.0872%" height="15" fill="rgb(231,168,25)" fg:x="133747" fg:w="421"/><text x="27.9537%" y="671.50"></text></g><g><title>btrfs_lookup (503 samples, 0.10%)</title><rect x="27.6925%" y="693" width="0.1042%" height="15" fill="rgb(224,39,20)" fg:x="133693" fg:w="503"/><text x="27.9425%" y="703.50"></text></g><g><title>btrfs_lookup_dentry (503 samples, 0.10%)</title><rect x="27.6925%" y="677" width="0.1042%" height="15" fill="rgb(225,152,53)" fg:x="133693" fg:w="503"/><text x="27.9425%" y="687.50"></text></g><g><title>kmem_cache_alloc (106 samples, 0.02%)</title><rect x="27.7983%" y="661" width="0.0220%" height="15" fill="rgb(252,17,24)" fg:x="134204" fg:w="106"/><text x="28.0483%" y="671.50"></text></g><g><title>__d_alloc (116 samples, 0.02%)</title><rect x="27.7973%" y="677" width="0.0240%" height="15" fill="rgb(250,114,30)" fg:x="134199" fg:w="116"/><text x="28.0473%" y="687.50"></text></g><g><title>d_alloc (126 samples, 0.03%)</title><rect x="27.7967%" y="693" width="0.0261%" height="15" fill="rgb(229,5,4)" fg:x="134196" fg:w="126"/><text x="28.0467%" y="703.50"></text></g><g><title>__lookup_hash (691 samples, 0.14%)</title><rect x="27.6921%" y="709" width="0.1431%" height="15" fill="rgb(225,176,49)" fg:x="133691" fg:w="691"/><text x="27.9421%" y="719.50"></text></g><g><title>inode_permission.part.0 (91 samples, 0.02%)</title><rect x="27.8663%" y="661" width="0.0188%" height="15" fill="rgb(224,221,49)" fg:x="134532" fg:w="91"/><text x="28.1163%" y="671.50"></text></g><g><title>lookup_fast (192 samples, 0.04%)</title><rect x="27.8934%" y="645" width="0.0398%" height="15" fill="rgb(253,169,27)" fg:x="134663" fg:w="192"/><text x="28.1434%" y="655.50"></text></g><g><title>__d_lookup_rcu (145 samples, 0.03%)</title><rect x="27.9032%" y="629" width="0.0300%" height="15" fill="rgb(211,206,16)" fg:x="134710" fg:w="145"/><text x="28.1532%" y="639.50"></text></g><g><title>link_path_walk.part.0 (473 samples, 0.10%)</title><rect x="27.8443%" y="677" width="0.0980%" height="15" fill="rgb(244,87,35)" fg:x="134426" fg:w="473"/><text x="28.0943%" y="687.50"></text></g><g><title>walk_component (263 samples, 0.05%)</title><rect x="27.8878%" y="661" width="0.0545%" height="15" fill="rgb(246,28,10)" fg:x="134636" fg:w="263"/><text x="28.1378%" y="671.50"></text></g><g><title>filename_parentat (532 samples, 0.11%)</title><rect x="27.8369%" y="709" width="0.1102%" height="15" fill="rgb(229,12,44)" fg:x="134390" fg:w="532"/><text x="28.0869%" y="719.50"></text></g><g><title>path_parentat (527 samples, 0.11%)</title><rect x="27.8379%" y="693" width="0.1092%" height="15" fill="rgb(210,145,37)" fg:x="134395" fg:w="527"/><text x="28.0879%" y="703.50"></text></g><g><title>filename_create (1,258 samples, 0.26%)</title><rect x="27.6919%" y="725" width="0.2606%" height="15" fill="rgb(227,112,52)" fg:x="133690" fg:w="1258"/><text x="27.9419%" y="735.50"></text></g><g><title>getname_flags.part.0 (109 samples, 0.02%)</title><rect x="27.9525%" y="725" width="0.0226%" height="15" fill="rgb(238,155,34)" fg:x="134948" fg:w="109"/><text x="28.2025%" y="735.50"></text></g><g><title>strncpy_from_user (57 samples, 0.01%)</title><rect x="27.9632%" y="709" width="0.0118%" height="15" fill="rgb(239,226,36)" fg:x="135000" fg:w="57"/><text x="28.2132%" y="719.50"></text></g><g><title>__btrfs_end_transaction (60 samples, 0.01%)</title><rect x="27.9885%" y="693" width="0.0124%" height="15" fill="rgb(230,16,23)" fg:x="135122" fg:w="60"/><text x="28.2385%" y="703.50"></text></g><g><title>btrfs_insert_delayed_dir_index (145 samples, 0.03%)</title><rect x="28.0055%" y="661" width="0.0300%" height="15" fill="rgb(236,171,36)" fg:x="135204" fg:w="145"/><text x="28.2555%" y="671.50"></text></g><g><title>btrfs_release_path (51 samples, 0.01%)</title><rect x="28.0386%" y="661" width="0.0106%" height="15" fill="rgb(221,22,14)" fg:x="135364" fg:w="51"/><text x="28.2886%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (80 samples, 0.02%)</title><rect x="28.0838%" y="613" width="0.0166%" height="15" fill="rgb(242,43,11)" fg:x="135582" fg:w="80"/><text x="28.3338%" y="623.50"></text></g><g><title>find_extent_buffer (78 samples, 0.02%)</title><rect x="28.1078%" y="597" width="0.0162%" height="15" fill="rgb(232,69,23)" fg:x="135698" fg:w="78"/><text x="28.3578%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (126 samples, 0.03%)</title><rect x="28.1003%" y="613" width="0.0261%" height="15" fill="rgb(216,180,54)" fg:x="135662" fg:w="126"/><text x="28.3503%" y="623.50"></text></g><g><title>split_leaf (67 samples, 0.01%)</title><rect x="28.1264%" y="613" width="0.0139%" height="15" fill="rgb(216,5,24)" fg:x="135788" fg:w="67"/><text x="28.3764%" y="623.50"></text></g><g><title>btrfs_search_slot (431 samples, 0.09%)</title><rect x="28.0560%" y="629" width="0.0893%" height="15" fill="rgb(225,89,9)" fg:x="135448" fg:w="431"/><text x="28.3060%" y="639.50"></text></g><g><title>btrfs_get_token_32 (139 samples, 0.03%)</title><rect x="28.1585%" y="613" width="0.0288%" height="15" fill="rgb(243,75,33)" fg:x="135943" fg:w="139"/><text x="28.4085%" y="623.50"></text></g><g><title>btrfs_set_token_32 (136 samples, 0.03%)</title><rect x="28.1960%" y="613" width="0.0282%" height="15" fill="rgb(247,141,45)" fg:x="136124" fg:w="136"/><text x="28.4460%" y="623.50"></text></g><g><title>memmove_extent_buffer (67 samples, 0.01%)</title><rect x="28.2354%" y="613" width="0.0139%" height="15" fill="rgb(232,177,36)" fg:x="136314" fg:w="67"/><text x="28.4854%" y="623.50"></text></g><g><title>memmove (56 samples, 0.01%)</title><rect x="28.2377%" y="597" width="0.0116%" height="15" fill="rgb(219,125,36)" fg:x="136325" fg:w="56"/><text x="28.4877%" y="607.50"></text></g><g><title>insert_with_overflow (964 samples, 0.20%)</title><rect x="28.0515%" y="661" width="0.1997%" height="15" fill="rgb(227,94,9)" fg:x="135426" fg:w="964"/><text x="28.3015%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (946 samples, 0.20%)</title><rect x="28.0552%" y="645" width="0.1959%" height="15" fill="rgb(240,34,52)" fg:x="135444" fg:w="946"/><text x="28.3052%" y="655.50"></text></g><g><title>setup_items_for_insert (511 samples, 0.11%)</title><rect x="28.1453%" y="629" width="0.1058%" height="15" fill="rgb(216,45,12)" fg:x="135879" fg:w="511"/><text x="28.3953%" y="639.50"></text></g><g><title>btrfs_insert_dir_item (1,236 samples, 0.26%)</title><rect x="28.0032%" y="677" width="0.2560%" height="15" fill="rgb(246,21,19)" fg:x="135193" fg:w="1236"/><text x="28.2532%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (55 samples, 0.01%)</title><rect x="28.2611%" y="661" width="0.0114%" height="15" fill="rgb(213,98,42)" fg:x="136438" fg:w="55"/><text x="28.5111%" y="671.50"></text></g><g><title>btrfs_update_inode (74 samples, 0.02%)</title><rect x="28.2592%" y="677" width="0.0153%" height="15" fill="rgb(250,136,47)" fg:x="136429" fg:w="74"/><text x="28.5092%" y="687.50"></text></g><g><title>btrfs_add_link (1,322 samples, 0.27%)</title><rect x="28.0009%" y="693" width="0.2738%" height="15" fill="rgb(251,124,27)" fg:x="135182" fg:w="1322"/><text x="28.2509%" y="703.50"></text></g><g><title>btrfs_free_path (54 samples, 0.01%)</title><rect x="28.2973%" y="677" width="0.0112%" height="15" fill="rgb(229,180,14)" fg:x="136613" fg:w="54"/><text x="28.5473%" y="687.50"></text></g><g><title>btrfs_release_path (54 samples, 0.01%)</title><rect x="28.2973%" y="661" width="0.0112%" height="15" fill="rgb(245,216,25)" fg:x="136613" fg:w="54"/><text x="28.5473%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (66 samples, 0.01%)</title><rect x="28.3354%" y="645" width="0.0137%" height="15" fill="rgb(251,43,5)" fg:x="136797" fg:w="66"/><text x="28.5854%" y="655.50"></text></g><g><title>find_extent_buffer (71 samples, 0.01%)</title><rect x="28.3549%" y="629" width="0.0147%" height="15" fill="rgb(250,128,24)" fg:x="136891" fg:w="71"/><text x="28.6049%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (117 samples, 0.02%)</title><rect x="28.3491%" y="645" width="0.0242%" height="15" fill="rgb(217,117,27)" fg:x="136863" fg:w="117"/><text x="28.5991%" y="655.50"></text></g><g><title>__push_leaf_left (97 samples, 0.02%)</title><rect x="28.3872%" y="613" width="0.0201%" height="15" fill="rgb(245,147,4)" fg:x="137047" fg:w="97"/><text x="28.6372%" y="623.50"></text></g><g><title>split_leaf (171 samples, 0.04%)</title><rect x="28.3733%" y="645" width="0.0354%" height="15" fill="rgb(242,201,35)" fg:x="136980" fg:w="171"/><text x="28.6233%" y="655.50"></text></g><g><title>push_leaf_left (108 samples, 0.02%)</title><rect x="28.3864%" y="629" width="0.0224%" height="15" fill="rgb(218,181,1)" fg:x="137043" fg:w="108"/><text x="28.6364%" y="639.50"></text></g><g><title>btrfs_search_slot (512 samples, 0.11%)</title><rect x="28.3106%" y="661" width="0.1061%" height="15" fill="rgb(222,6,29)" fg:x="136677" fg:w="512"/><text x="28.5606%" y="671.50"></text></g><g><title>btrfs_get_token_32 (74 samples, 0.02%)</title><rect x="28.4268%" y="645" width="0.0153%" height="15" fill="rgb(208,186,3)" fg:x="137238" fg:w="74"/><text x="28.6768%" y="655.50"></text></g><g><title>btrfs_set_token_32 (55 samples, 0.01%)</title><rect x="28.4523%" y="645" width="0.0114%" height="15" fill="rgb(216,36,26)" fg:x="137361" fg:w="55"/><text x="28.7023%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (797 samples, 0.17%)</title><rect x="28.3100%" y="677" width="0.1651%" height="15" fill="rgb(248,201,23)" fg:x="136674" fg:w="797"/><text x="28.5600%" y="687.50"></text></g><g><title>setup_items_for_insert (282 samples, 0.06%)</title><rect x="28.4166%" y="661" width="0.0584%" height="15" fill="rgb(251,170,31)" fg:x="137189" fg:w="282"/><text x="28.6666%" y="671.50"></text></g><g><title>fill_inode_item (93 samples, 0.02%)</title><rect x="28.4862%" y="677" width="0.0193%" height="15" fill="rgb(207,110,25)" fg:x="137525" fg:w="93"/><text x="28.7362%" y="687.50"></text></g><g><title>inode_tree_add (125 samples, 0.03%)</title><rect x="28.5067%" y="677" width="0.0259%" height="15" fill="rgb(250,54,15)" fg:x="137624" fg:w="125"/><text x="28.7567%" y="687.50"></text></g><g><title>insert_inode_locked4 (54 samples, 0.01%)</title><rect x="28.5326%" y="677" width="0.0112%" height="15" fill="rgb(227,68,33)" fg:x="137749" fg:w="54"/><text x="28.7826%" y="687.50"></text></g><g><title>inode_insert5 (53 samples, 0.01%)</title><rect x="28.5328%" y="661" width="0.0110%" height="15" fill="rgb(238,34,41)" fg:x="137750" fg:w="53"/><text x="28.7828%" y="671.50"></text></g><g><title>btrfs_alloc_inode (123 samples, 0.03%)</title><rect x="28.5585%" y="645" width="0.0255%" height="15" fill="rgb(220,11,15)" fg:x="137874" fg:w="123"/><text x="28.8085%" y="655.50"></text></g><g><title>kmem_cache_alloc (97 samples, 0.02%)</title><rect x="28.5639%" y="629" width="0.0201%" height="15" fill="rgb(246,111,35)" fg:x="137900" fg:w="97"/><text x="28.8139%" y="639.50"></text></g><g><title>alloc_inode (160 samples, 0.03%)</title><rect x="28.5577%" y="661" width="0.0331%" height="15" fill="rgb(209,88,53)" fg:x="137870" fg:w="160"/><text x="28.8077%" y="671.50"></text></g><g><title>new_inode (193 samples, 0.04%)</title><rect x="28.5521%" y="677" width="0.0400%" height="15" fill="rgb(231,185,47)" fg:x="137843" fg:w="193"/><text x="28.8021%" y="687.50"></text></g><g><title>btrfs_new_inode (1,465 samples, 0.30%)</title><rect x="28.2899%" y="693" width="0.3035%" height="15" fill="rgb(233,154,1)" fg:x="136577" fg:w="1465"/><text x="28.5399%" y="703.50"></text></g><g><title>btrfs_get_or_create_delayed_node (122 samples, 0.03%)</title><rect x="28.6074%" y="661" width="0.0253%" height="15" fill="rgb(225,15,46)" fg:x="138110" fg:w="122"/><text x="28.8574%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (215 samples, 0.04%)</title><rect x="28.5944%" y="677" width="0.0445%" height="15" fill="rgb(211,135,41)" fg:x="138047" fg:w="215"/><text x="28.8444%" y="687.50"></text></g><g><title>btrfs_update_inode (235 samples, 0.05%)</title><rect x="28.5933%" y="693" width="0.0487%" height="15" fill="rgb(208,54,0)" fg:x="138042" fg:w="235"/><text x="28.8433%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (87 samples, 0.02%)</title><rect x="28.6555%" y="677" width="0.0180%" height="15" fill="rgb(244,136,14)" fg:x="138342" fg:w="87"/><text x="28.9055%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (82 samples, 0.02%)</title><rect x="28.6565%" y="661" width="0.0170%" height="15" fill="rgb(241,56,14)" fg:x="138347" fg:w="82"/><text x="28.9065%" y="671.50"></text></g><g><title>__reserve_bytes (81 samples, 0.02%)</title><rect x="28.6567%" y="645" width="0.0168%" height="15" fill="rgb(205,80,24)" fg:x="138348" fg:w="81"/><text x="28.9067%" y="655.50"></text></g><g><title>btrfs_mkdir (3,385 samples, 0.70%)</title><rect x="27.9870%" y="709" width="0.7012%" height="15" fill="rgb(220,57,4)" fg:x="135115" fg:w="3385"/><text x="28.2370%" y="719.50"></text></g><g><title>start_transaction (185 samples, 0.04%)</title><rect x="28.6499%" y="693" width="0.0383%" height="15" fill="rgb(226,193,50)" fg:x="138315" fg:w="185"/><text x="28.8999%" y="703.50"></text></g><g><title>do_mkdirat (4,883 samples, 1.01%)</title><rect x="27.6803%" y="741" width="1.0114%" height="15" fill="rgb(231,168,22)" fg:x="133634" fg:w="4883"/><text x="27.9303%" y="751.50"></text></g><g><title>vfs_mkdir (3,410 samples, 0.71%)</title><rect x="27.9854%" y="725" width="0.7063%" height="15" fill="rgb(254,215,14)" fg:x="135107" fg:w="3410"/><text x="28.2354%" y="735.50"></text></g><g><title>do_syscall_64 (4,885 samples, 1.01%)</title><rect x="27.6801%" y="757" width="1.0119%" height="15" fill="rgb(211,115,16)" fg:x="133633" fg:w="4885"/><text x="27.9301%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,900 samples, 1.01%)</title><rect x="27.6784%" y="773" width="1.0150%" height="15" fill="rgb(236,210,16)" fg:x="133625" fg:w="4900"/><text x="27.9284%" y="783.50"></text></g><g><title>__GI___mkdir (4,937 samples, 1.02%)</title><rect x="27.6724%" y="789" width="1.0226%" height="15" fill="rgb(221,94,12)" fg:x="133596" fg:w="4937"/><text x="27.9224%" y="799.50"></text></g><g><title>btrfs_filldir (411 samples, 0.09%)</title><rect x="28.7903%" y="677" width="0.0851%" height="15" fill="rgb(235,218,49)" fg:x="138993" fg:w="411"/><text x="29.0403%" y="687.50"></text></g><g><title>filldir64 (377 samples, 0.08%)</title><rect x="28.7974%" y="661" width="0.0781%" height="15" fill="rgb(217,114,14)" fg:x="139027" fg:w="377"/><text x="29.0474%" y="671.50"></text></g><g><title>verify_dirent_name (106 samples, 0.02%)</title><rect x="28.8535%" y="645" width="0.0220%" height="15" fill="rgb(216,145,22)" fg:x="139298" fg:w="106"/><text x="29.1035%" y="655.50"></text></g><g><title>memchr (78 samples, 0.02%)</title><rect x="28.8593%" y="629" width="0.0162%" height="15" fill="rgb(217,112,39)" fg:x="139326" fg:w="78"/><text x="29.1093%" y="639.50"></text></g><g><title>btrfs_get_16 (63 samples, 0.01%)</title><rect x="28.8767%" y="677" width="0.0130%" height="15" fill="rgb(225,85,32)" fg:x="139410" fg:w="63"/><text x="29.1267%" y="687.50"></text></g><g><title>btrfs_next_old_leaf (53 samples, 0.01%)</title><rect x="28.9057%" y="677" width="0.0110%" height="15" fill="rgb(245,209,47)" fg:x="139550" fg:w="53"/><text x="29.1557%" y="687.50"></text></g><g><title>btrfs_readdir_get_delayed_items (106 samples, 0.02%)</title><rect x="28.9167%" y="677" width="0.0220%" height="15" fill="rgb(218,220,15)" fg:x="139603" fg:w="106"/><text x="29.1667%" y="687.50"></text></g><g><title>btrfs_release_path (87 samples, 0.02%)</title><rect x="28.9413%" y="677" width="0.0180%" height="15" fill="rgb(222,202,31)" fg:x="139722" fg:w="87"/><text x="29.1913%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (176 samples, 0.04%)</title><rect x="28.9931%" y="661" width="0.0365%" height="15" fill="rgb(243,203,4)" fg:x="139972" fg:w="176"/><text x="29.2431%" y="671.50"></text></g><g><title>__radix_tree_lookup (125 samples, 0.03%)</title><rect x="29.0503%" y="629" width="0.0259%" height="15" fill="rgb(237,92,17)" fg:x="140248" fg:w="125"/><text x="29.3003%" y="639.50"></text></g><g><title>find_extent_buffer (217 samples, 0.04%)</title><rect x="29.0416%" y="645" width="0.0449%" height="15" fill="rgb(231,119,7)" fg:x="140206" fg:w="217"/><text x="29.2916%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (50 samples, 0.01%)</title><rect x="29.0762%" y="629" width="0.0104%" height="15" fill="rgb(237,82,41)" fg:x="140373" fg:w="50"/><text x="29.3262%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (304 samples, 0.06%)</title><rect x="29.0296%" y="661" width="0.0630%" height="15" fill="rgb(226,81,48)" fg:x="140148" fg:w="304"/><text x="29.2796%" y="671.50"></text></g><g><title>btrfs_search_slot (680 samples, 0.14%)</title><rect x="28.9593%" y="677" width="0.1409%" height="15" fill="rgb(234,70,51)" fg:x="139809" fg:w="680"/><text x="29.2093%" y="687.50"></text></g><g><title>filldir64 (51 samples, 0.01%)</title><rect x="29.1041%" y="677" width="0.0106%" height="15" fill="rgb(251,86,4)" fg:x="140508" fg:w="51"/><text x="29.3541%" y="687.50"></text></g><g><title>btrfs_real_readdir (2,208 samples, 0.46%)</title><rect x="28.7576%" y="693" width="0.4574%" height="15" fill="rgb(244,144,28)" fg:x="138835" fg:w="2208"/><text x="29.0076%" y="703.50"></text></g><g><title>read_extent_buffer (395 samples, 0.08%)</title><rect x="29.1331%" y="677" width="0.0818%" height="15" fill="rgb(232,161,39)" fg:x="140648" fg:w="395"/><text x="29.3831%" y="687.50"></text></g><g><title>security_file_permission (60 samples, 0.01%)</title><rect x="29.2203%" y="693" width="0.0124%" height="15" fill="rgb(247,34,51)" fg:x="141069" fg:w="60"/><text x="29.4703%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (61 samples, 0.01%)</title><rect x="29.2586%" y="629" width="0.0126%" height="15" fill="rgb(225,132,2)" fg:x="141254" fg:w="61"/><text x="29.5086%" y="639.50"></text></g><g><title>btrfs_reserve_metadata_bytes (56 samples, 0.01%)</title><rect x="29.2597%" y="613" width="0.0116%" height="15" fill="rgb(209,159,44)" fg:x="141259" fg:w="56"/><text x="29.5097%" y="623.50"></text></g><g><title>__reserve_bytes (53 samples, 0.01%)</title><rect x="29.2603%" y="597" width="0.0110%" height="15" fill="rgb(251,214,1)" fg:x="141262" fg:w="53"/><text x="29.5103%" y="607.50"></text></g><g><title>btrfs_delayed_update_inode (126 samples, 0.03%)</title><rect x="29.2502%" y="645" width="0.0261%" height="15" fill="rgb(247,84,47)" fg:x="141213" fg:w="126"/><text x="29.5002%" y="655.50"></text></g><g><title>btrfs_update_inode (149 samples, 0.03%)</title><rect x="29.2481%" y="661" width="0.0309%" height="15" fill="rgb(240,111,43)" fg:x="141203" fg:w="149"/><text x="29.4981%" y="671.50"></text></g><g><title>btrfs_dirty_inode (235 samples, 0.05%)</title><rect x="29.2429%" y="677" width="0.0487%" height="15" fill="rgb(215,214,35)" fg:x="141178" fg:w="235"/><text x="29.4929%" y="687.50"></text></g><g><title>start_transaction (61 samples, 0.01%)</title><rect x="29.2789%" y="661" width="0.0126%" height="15" fill="rgb(248,207,23)" fg:x="141352" fg:w="61"/><text x="29.5289%" y="671.50"></text></g><g><title>touch_atime (290 samples, 0.06%)</title><rect x="29.2328%" y="693" width="0.0601%" height="15" fill="rgb(214,186,4)" fg:x="141129" fg:w="290"/><text x="29.4828%" y="703.50"></text></g><g><title>iterate_dir (2,617 samples, 0.54%)</title><rect x="28.7528%" y="709" width="0.5421%" height="15" fill="rgb(220,133,22)" fg:x="138812" fg:w="2617"/><text x="29.0028%" y="719.50"></text></g><g><title>__x64_sys_getdents64 (2,680 samples, 0.56%)</title><rect x="28.7414%" y="725" width="0.5551%" height="15" fill="rgb(239,134,19)" fg:x="138757" fg:w="2680"/><text x="28.9914%" y="735.50"></text></g><g><title>do_syscall_64 (2,686 samples, 0.56%)</title><rect x="28.7408%" y="741" width="0.5564%" height="15" fill="rgb(250,140,9)" fg:x="138754" fg:w="2686"/><text x="28.9908%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,700 samples, 0.56%)</title><rect x="28.7396%" y="757" width="0.5593%" height="15" fill="rgb(225,59,14)" fg:x="138748" fg:w="2700"/><text x="28.9896%" y="767.50"></text></g><g><title>__GI___getdents64 (2,741 samples, 0.57%)</title><rect x="28.7327%" y="773" width="0.5678%" height="15" fill="rgb(214,152,51)" fg:x="138715" fg:w="2741"/><text x="28.9827%" y="783.50"></text></g><g><title>__GI___readdir64 (2,926 samples, 0.61%)</title><rect x="28.6950%" y="789" width="0.6061%" height="15" fill="rgb(251,227,43)" fg:x="138533" fg:w="2926"/><text x="28.9450%" y="799.50"></text></g><g><title>link_path_walk.part.0 (86 samples, 0.02%)</title><rect x="29.3059%" y="677" width="0.0178%" height="15" fill="rgb(241,96,17)" fg:x="141482" fg:w="86"/><text x="29.5559%" y="687.50"></text></g><g><title>filename_lookup (103 samples, 0.02%)</title><rect x="29.3044%" y="709" width="0.0213%" height="15" fill="rgb(234,198,43)" fg:x="141475" fg:w="103"/><text x="29.5544%" y="719.50"></text></g><g><title>path_lookupat (101 samples, 0.02%)</title><rect x="29.3048%" y="693" width="0.0209%" height="15" fill="rgb(220,108,29)" fg:x="141477" fg:w="101"/><text x="29.5548%" y="703.50"></text></g><g><title>__do_sys_newstat (149 samples, 0.03%)</title><rect x="29.3023%" y="741" width="0.0309%" height="15" fill="rgb(226,163,33)" fg:x="141465" fg:w="149"/><text x="29.5523%" y="751.50"></text></g><g><title>vfs_statx (145 samples, 0.03%)</title><rect x="29.3032%" y="725" width="0.0300%" height="15" fill="rgb(205,194,45)" fg:x="141469" fg:w="145"/><text x="29.5532%" y="735.50"></text></g><g><title>__GI___xstat (157 samples, 0.03%)</title><rect x="29.3011%" y="789" width="0.0325%" height="15" fill="rgb(206,143,44)" fg:x="141459" fg:w="157"/><text x="29.5511%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (153 samples, 0.03%)</title><rect x="29.3019%" y="773" width="0.0317%" height="15" fill="rgb(236,136,36)" fg:x="141463" fg:w="153"/><text x="29.5519%" y="783.50"></text></g><g><title>do_syscall_64 (151 samples, 0.03%)</title><rect x="29.3023%" y="757" width="0.0313%" height="15" fill="rgb(249,172,42)" fg:x="141465" fg:w="151"/><text x="29.5523%" y="767.50"></text></g><g><title>__GI_remove (57 samples, 0.01%)</title><rect x="29.3336%" y="789" width="0.0118%" height="15" fill="rgb(216,139,23)" fg:x="141616" fg:w="57"/><text x="29.5836%" y="799.50"></text></g><g><title>crc32c_pcl_intel_update (129 samples, 0.03%)</title><rect x="29.3788%" y="773" width="0.0267%" height="15" fill="rgb(207,166,20)" fg:x="141834" fg:w="129"/><text x="29.6288%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (150 samples, 0.03%)</title><rect x="29.4055%" y="773" width="0.0311%" height="15" fill="rgb(210,209,22)" fg:x="141963" fg:w="150"/><text x="29.6555%" y="783.50"></text></g><g><title>getname_flags (82 samples, 0.02%)</title><rect x="29.4527%" y="725" width="0.0170%" height="15" fill="rgb(232,118,20)" fg:x="142191" fg:w="82"/><text x="29.7027%" y="735.50"></text></g><g><title>memset_erms (585 samples, 0.12%)</title><rect x="29.5134%" y="693" width="0.1212%" height="15" fill="rgb(238,113,42)" fg:x="142484" fg:w="585"/><text x="29.7634%" y="703.50"></text></g><g><title>kmem_cache_alloc (776 samples, 0.16%)</title><rect x="29.4832%" y="709" width="0.1607%" height="15" fill="rgb(231,42,5)" fg:x="142338" fg:w="776"/><text x="29.7332%" y="719.50"></text></g><g><title>__check_heap_object (51 samples, 0.01%)</title><rect x="29.7046%" y="677" width="0.0106%" height="15" fill="rgb(243,166,24)" fg:x="143407" fg:w="51"/><text x="29.9546%" y="687.50"></text></g><g><title>__virt_addr_valid (209 samples, 0.04%)</title><rect x="29.7152%" y="677" width="0.0433%" height="15" fill="rgb(237,226,12)" fg:x="143458" fg:w="209"/><text x="29.9652%" y="687.50"></text></g><g><title>__check_object_size (317 samples, 0.07%)</title><rect x="29.6940%" y="693" width="0.0657%" height="15" fill="rgb(229,133,24)" fg:x="143356" fg:w="317"/><text x="29.9440%" y="703.50"></text></g><g><title>getname_flags.part.0 (1,401 samples, 0.29%)</title><rect x="29.4697%" y="725" width="0.2902%" height="15" fill="rgb(238,33,43)" fg:x="142273" fg:w="1401"/><text x="29.7197%" y="735.50"></text></g><g><title>strncpy_from_user (560 samples, 0.12%)</title><rect x="29.6439%" y="709" width="0.1160%" height="15" fill="rgb(227,59,38)" fg:x="143114" fg:w="560"/><text x="29.8939%" y="719.50"></text></g><g><title>__x64_sys_unlinkat (1,501 samples, 0.31%)</title><rect x="29.4492%" y="741" width="0.3109%" height="15" fill="rgb(230,97,0)" fg:x="142174" fg:w="1501"/><text x="29.6992%" y="751.50"></text></g><g><title>dput (74 samples, 0.02%)</title><rect x="29.7707%" y="725" width="0.0153%" height="15" fill="rgb(250,173,50)" fg:x="143726" fg:w="74"/><text x="30.0207%" y="735.50"></text></g><g><title>filename_parentat (69 samples, 0.01%)</title><rect x="29.7860%" y="725" width="0.0143%" height="15" fill="rgb(240,15,50)" fg:x="143800" fg:w="69"/><text x="30.0360%" y="735.50"></text></g><g><title>path_parentat (62 samples, 0.01%)</title><rect x="29.7875%" y="709" width="0.0128%" height="15" fill="rgb(221,93,22)" fg:x="143807" fg:w="62"/><text x="30.0375%" y="719.50"></text></g><g><title>btrfs_lookup_dir_index_item (67 samples, 0.01%)</title><rect x="29.8481%" y="661" width="0.0139%" height="15" fill="rgb(245,180,53)" fg:x="144100" fg:w="67"/><text x="30.0981%" y="671.50"></text></g><g><title>btrfs_search_slot (67 samples, 0.01%)</title><rect x="29.8481%" y="645" width="0.0139%" height="15" fill="rgb(231,88,51)" fg:x="144100" fg:w="67"/><text x="30.0981%" y="655.50"></text></g><g><title>btrfs_search_slot (67 samples, 0.01%)</title><rect x="29.8626%" y="645" width="0.0139%" height="15" fill="rgb(240,58,21)" fg:x="144170" fg:w="67"/><text x="30.1126%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (71 samples, 0.01%)</title><rect x="29.8620%" y="661" width="0.0147%" height="15" fill="rgb(237,21,10)" fg:x="144167" fg:w="71"/><text x="30.1120%" y="671.50"></text></g><g><title>btrfs_del_dir_entries_in_log (251 samples, 0.05%)</title><rect x="29.8401%" y="677" width="0.0520%" height="15" fill="rgb(218,43,11)" fg:x="144061" fg:w="251"/><text x="30.0901%" y="687.50"></text></g><g><title>btrfs_search_slot (142 samples, 0.03%)</title><rect x="29.9037%" y="645" width="0.0294%" height="15" fill="rgb(218,221,29)" fg:x="144368" fg:w="142"/><text x="30.1537%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (237 samples, 0.05%)</title><rect x="29.8948%" y="661" width="0.0491%" height="15" fill="rgb(214,118,42)" fg:x="144325" fg:w="237"/><text x="30.1448%" y="671.50"></text></g><g><title>btrfs_del_inode_ref_in_log (270 samples, 0.06%)</title><rect x="29.8921%" y="677" width="0.0559%" height="15" fill="rgb(251,200,26)" fg:x="144312" fg:w="270"/><text x="30.1421%" y="687.50"></text></g><g><title>btrfs_get_token_32 (224 samples, 0.05%)</title><rect x="29.9745%" y="661" width="0.0464%" height="15" fill="rgb(237,101,39)" fg:x="144710" fg:w="224"/><text x="30.2245%" y="671.50"></text></g><g><title>btrfs_set_token_32 (193 samples, 0.04%)</title><rect x="30.0232%" y="661" width="0.0400%" height="15" fill="rgb(251,117,11)" fg:x="144945" fg:w="193"/><text x="30.2732%" y="671.50"></text></g><g><title>memmove_extent_buffer (109 samples, 0.02%)</title><rect x="30.0741%" y="661" width="0.0226%" height="15" fill="rgb(216,223,23)" fg:x="145191" fg:w="109"/><text x="30.3241%" y="671.50"></text></g><g><title>memmove (86 samples, 0.02%)</title><rect x="30.0789%" y="645" width="0.0178%" height="15" fill="rgb(251,54,12)" fg:x="145214" fg:w="86"/><text x="30.3289%" y="655.50"></text></g><g><title>__push_leaf_right (50 samples, 0.01%)</title><rect x="30.0996%" y="645" width="0.0104%" height="15" fill="rgb(254,176,54)" fg:x="145314" fg:w="50"/><text x="30.3496%" y="655.50"></text></g><g><title>push_leaf_right (56 samples, 0.01%)</title><rect x="30.0996%" y="661" width="0.0116%" height="15" fill="rgb(210,32,8)" fg:x="145314" fg:w="56"/><text x="30.3496%" y="671.50"></text></g><g><title>btrfs_del_items (789 samples, 0.16%)</title><rect x="29.9480%" y="677" width="0.1634%" height="15" fill="rgb(235,52,38)" fg:x="144582" fg:w="789"/><text x="30.1980%" y="687.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (49 samples, 0.01%)</title><rect x="30.1114%" y="677" width="0.0101%" height="15" fill="rgb(231,4,44)" fg:x="145371" fg:w="49"/><text x="30.3614%" y="687.50"></text></g><g><title>__btrfs_add_delayed_item (54 samples, 0.01%)</title><rect x="30.1226%" y="661" width="0.0112%" height="15" fill="rgb(249,2,32)" fg:x="145425" fg:w="54"/><text x="30.3726%" y="671.50"></text></g><g><title>btrfs_delete_delayed_dir_index (142 samples, 0.03%)</title><rect x="30.1216%" y="677" width="0.0294%" height="15" fill="rgb(224,65,26)" fg:x="145420" fg:w="142"/><text x="30.3716%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (85 samples, 0.02%)</title><rect x="30.1804%" y="645" width="0.0176%" height="15" fill="rgb(250,73,40)" fg:x="145704" fg:w="85"/><text x="30.4304%" y="655.50"></text></g><g><title>__radix_tree_lookup (50 samples, 0.01%)</title><rect x="30.2115%" y="613" width="0.0104%" height="15" fill="rgb(253,177,16)" fg:x="145854" fg:w="50"/><text x="30.4615%" y="623.50"></text></g><g><title>find_extent_buffer (99 samples, 0.02%)</title><rect x="30.2075%" y="629" width="0.0205%" height="15" fill="rgb(217,32,34)" fg:x="145835" fg:w="99"/><text x="30.4575%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (161 samples, 0.03%)</title><rect x="30.1980%" y="645" width="0.0333%" height="15" fill="rgb(212,7,10)" fg:x="145789" fg:w="161"/><text x="30.4480%" y="655.50"></text></g><g><title>find_extent_buffer (61 samples, 0.01%)</title><rect x="30.2357%" y="629" width="0.0126%" height="15" fill="rgb(245,89,8)" fg:x="145971" fg:w="61"/><text x="30.4857%" y="639.50"></text></g><g><title>reada_for_balance (92 samples, 0.02%)</title><rect x="30.2313%" y="645" width="0.0191%" height="15" fill="rgb(237,16,53)" fg:x="145950" fg:w="92"/><text x="30.4813%" y="655.50"></text></g><g><title>btrfs_search_slot (438 samples, 0.09%)</title><rect x="30.1622%" y="661" width="0.0907%" height="15" fill="rgb(250,204,30)" fg:x="145616" fg:w="438"/><text x="30.4122%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (489 samples, 0.10%)</title><rect x="30.1557%" y="677" width="0.1013%" height="15" fill="rgb(208,77,27)" fg:x="145585" fg:w="489"/><text x="30.4057%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (65 samples, 0.01%)</title><rect x="30.2651%" y="661" width="0.0135%" height="15" fill="rgb(250,204,28)" fg:x="146113" fg:w="65"/><text x="30.5151%" y="671.50"></text></g><g><title>btrfs_update_inode (86 samples, 0.02%)</title><rect x="30.2639%" y="677" width="0.0178%" height="15" fill="rgb(244,63,21)" fg:x="146107" fg:w="86"/><text x="30.5139%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (2,189 samples, 0.45%)</title><rect x="29.8351%" y="693" width="0.4534%" height="15" fill="rgb(236,85,44)" fg:x="144037" fg:w="2189"/><text x="30.0851%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (61 samples, 0.01%)</title><rect x="30.3165%" y="629" width="0.0126%" height="15" fill="rgb(215,98,4)" fg:x="146361" fg:w="61"/><text x="30.5665%" y="639.50"></text></g><g><title>__radix_tree_lookup (59 samples, 0.01%)</title><rect x="30.3399%" y="597" width="0.0122%" height="15" fill="rgb(235,38,11)" fg:x="146474" fg:w="59"/><text x="30.5899%" y="607.50"></text></g><g><title>find_extent_buffer (98 samples, 0.02%)</title><rect x="30.3368%" y="613" width="0.0203%" height="15" fill="rgb(254,186,25)" fg:x="146459" fg:w="98"/><text x="30.5868%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (151 samples, 0.03%)</title><rect x="30.3291%" y="629" width="0.0313%" height="15" fill="rgb(225,55,31)" fg:x="146422" fg:w="151"/><text x="30.5791%" y="639.50"></text></g><g><title>btrfs_search_slot (313 samples, 0.06%)</title><rect x="30.3003%" y="645" width="0.0648%" height="15" fill="rgb(211,15,21)" fg:x="146283" fg:w="313"/><text x="30.5503%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (398 samples, 0.08%)</title><rect x="30.2999%" y="661" width="0.0824%" height="15" fill="rgb(215,187,41)" fg:x="146281" fg:w="398"/><text x="30.5499%" y="671.50"></text></g><g><title>setup_items_for_insert (83 samples, 0.02%)</title><rect x="30.3652%" y="645" width="0.0172%" height="15" fill="rgb(248,69,32)" fg:x="146596" fg:w="83"/><text x="30.6152%" y="655.50"></text></g><g><title>btrfs_orphan_add (464 samples, 0.10%)</title><rect x="30.2900%" y="693" width="0.0961%" height="15" fill="rgb(252,102,52)" fg:x="146233" fg:w="464"/><text x="30.5400%" y="703.50"></text></g><g><title>btrfs_insert_orphan_item (463 samples, 0.10%)</title><rect x="30.2902%" y="677" width="0.0959%" height="15" fill="rgb(253,140,32)" fg:x="146234" fg:w="463"/><text x="30.5402%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (60 samples, 0.01%)</title><rect x="30.3892%" y="677" width="0.0124%" height="15" fill="rgb(216,56,42)" fg:x="146712" fg:w="60"/><text x="30.6392%" y="687.50"></text></g><g><title>btrfs_update_inode (88 samples, 0.02%)</title><rect x="30.3873%" y="693" width="0.0182%" height="15" fill="rgb(216,184,14)" fg:x="146703" fg:w="88"/><text x="30.6373%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (62 samples, 0.01%)</title><rect x="30.4095%" y="677" width="0.0128%" height="15" fill="rgb(237,187,27)" fg:x="146810" fg:w="62"/><text x="30.6595%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (57 samples, 0.01%)</title><rect x="30.4105%" y="661" width="0.0118%" height="15" fill="rgb(219,65,3)" fg:x="146815" fg:w="57"/><text x="30.6605%" y="671.50"></text></g><g><title>__reserve_bytes (57 samples, 0.01%)</title><rect x="30.4105%" y="645" width="0.0118%" height="15" fill="rgb(245,83,25)" fg:x="146815" fg:w="57"/><text x="30.6605%" y="655.50"></text></g><g><title>btrfs_rmdir (2,930 samples, 0.61%)</title><rect x="29.8227%" y="709" width="0.6069%" height="15" fill="rgb(214,205,45)" fg:x="143977" fg:w="2930"/><text x="30.0727%" y="719.50"></text></g><g><title>start_transaction (114 samples, 0.02%)</title><rect x="30.4060%" y="693" width="0.0236%" height="15" fill="rgb(241,20,18)" fg:x="146793" fg:w="114"/><text x="30.6560%" y="703.50"></text></g><g><title>btrfs_drop_extent_cache (73 samples, 0.02%)</title><rect x="30.4509%" y="677" width="0.0151%" height="15" fill="rgb(232,163,23)" fg:x="147010" fg:w="73"/><text x="30.7009%" y="687.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (54 samples, 0.01%)</title><rect x="30.4774%" y="677" width="0.0112%" height="15" fill="rgb(214,5,46)" fg:x="147138" fg:w="54"/><text x="30.7274%" y="687.50"></text></g><g><title>btrfs_destroy_inode (241 samples, 0.05%)</title><rect x="30.4499%" y="693" width="0.0499%" height="15" fill="rgb(229,78,17)" fg:x="147005" fg:w="241"/><text x="30.6999%" y="703.50"></text></g><g><title>rb_erase (54 samples, 0.01%)</title><rect x="30.4886%" y="677" width="0.0112%" height="15" fill="rgb(248,89,10)" fg:x="147192" fg:w="54"/><text x="30.7386%" y="687.50"></text></g><g><title>destroy_inode (277 samples, 0.06%)</title><rect x="30.4432%" y="709" width="0.0574%" height="15" fill="rgb(248,54,15)" fg:x="146973" fg:w="277"/><text x="30.6932%" y="719.50"></text></g><g><title>__btrfs_end_transaction (86 samples, 0.02%)</title><rect x="30.5153%" y="677" width="0.0178%" height="15" fill="rgb(223,116,6)" fg:x="147321" fg:w="86"/><text x="30.7653%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (79 samples, 0.02%)</title><rect x="30.5331%" y="677" width="0.0164%" height="15" fill="rgb(205,125,38)" fg:x="147407" fg:w="79"/><text x="30.7831%" y="687.50"></text></g><g><title>radix_tree_delete_item (52 samples, 0.01%)</title><rect x="30.5387%" y="661" width="0.0108%" height="15" fill="rgb(251,78,38)" fg:x="147434" fg:w="52"/><text x="30.7887%" y="671.50"></text></g><g><title>btrfs_get_token_32 (256 samples, 0.05%)</title><rect x="30.5907%" y="629" width="0.0530%" height="15" fill="rgb(253,78,28)" fg:x="147685" fg:w="256"/><text x="30.8407%" y="639.50"></text></g><g><title>btrfs_set_token_32 (260 samples, 0.05%)</title><rect x="30.6456%" y="629" width="0.0539%" height="15" fill="rgb(209,120,3)" fg:x="147950" fg:w="260"/><text x="30.8956%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (53 samples, 0.01%)</title><rect x="30.6885%" y="613" width="0.0110%" height="15" fill="rgb(238,229,9)" fg:x="148157" fg:w="53"/><text x="30.9385%" y="623.50"></text></g><g><title>memmove_extent_buffer (137 samples, 0.03%)</title><rect x="30.7084%" y="629" width="0.0284%" height="15" fill="rgb(253,159,18)" fg:x="148253" fg:w="137"/><text x="30.9584%" y="639.50"></text></g><g><title>memmove (109 samples, 0.02%)</title><rect x="30.7142%" y="613" width="0.0226%" height="15" fill="rgb(244,42,34)" fg:x="148281" fg:w="109"/><text x="30.9642%" y="623.50"></text></g><g><title>btrfs_del_items (837 samples, 0.17%)</title><rect x="30.5696%" y="645" width="0.1734%" height="15" fill="rgb(224,8,7)" fg:x="147583" fg:w="837"/><text x="30.8196%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (79 samples, 0.02%)</title><rect x="30.7695%" y="613" width="0.0164%" height="15" fill="rgb(210,201,45)" fg:x="148548" fg:w="79"/><text x="31.0195%" y="623.50"></text></g><g><title>find_extent_buffer (67 samples, 0.01%)</title><rect x="30.7937%" y="597" width="0.0139%" height="15" fill="rgb(252,185,21)" fg:x="148665" fg:w="67"/><text x="31.0437%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (119 samples, 0.02%)</title><rect x="30.7858%" y="613" width="0.0246%" height="15" fill="rgb(223,131,1)" fg:x="148627" fg:w="119"/><text x="31.0358%" y="623.50"></text></g><g><title>reada_for_balance (65 samples, 0.01%)</title><rect x="30.8105%" y="613" width="0.0135%" height="15" fill="rgb(245,141,16)" fg:x="148746" fg:w="65"/><text x="31.0605%" y="623.50"></text></g><g><title>btrfs_lookup_inode (390 samples, 0.08%)</title><rect x="30.7475%" y="645" width="0.0808%" height="15" fill="rgb(229,55,45)" fg:x="148442" fg:w="390"/><text x="30.9975%" y="655.50"></text></g><g><title>btrfs_search_slot (386 samples, 0.08%)</title><rect x="30.7484%" y="629" width="0.0800%" height="15" fill="rgb(208,92,15)" fg:x="148446" fg:w="386"/><text x="30.9984%" y="639.50"></text></g><g><title>__btrfs_update_delayed_inode (1,347 samples, 0.28%)</title><rect x="30.5677%" y="661" width="0.2790%" height="15" fill="rgb(234,185,47)" fg:x="147574" fg:w="1347"/><text x="30.8177%" y="671.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,477 samples, 0.31%)</title><rect x="30.5576%" y="677" width="0.3059%" height="15" fill="rgb(253,104,50)" fg:x="147525" fg:w="1477"/><text x="30.8076%" y="687.50"></text></g><g><title>btrfs_free_path (55 samples, 0.01%)</title><rect x="30.8724%" y="661" width="0.0114%" height="15" fill="rgb(205,70,7)" fg:x="149045" fg:w="55"/><text x="31.1224%" y="671.50"></text></g><g><title>btrfs_release_path (55 samples, 0.01%)</title><rect x="30.8724%" y="645" width="0.0114%" height="15" fill="rgb(240,178,43)" fg:x="149045" fg:w="55"/><text x="31.1224%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (71 samples, 0.01%)</title><rect x="30.9066%" y="645" width="0.0147%" height="15" fill="rgb(214,112,2)" fg:x="149210" fg:w="71"/><text x="31.1566%" y="655.50"></text></g><g><title>find_extent_buffer (84 samples, 0.02%)</title><rect x="30.9257%" y="629" width="0.0174%" height="15" fill="rgb(206,46,17)" fg:x="149302" fg:w="84"/><text x="31.1757%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (116 samples, 0.02%)</title><rect x="30.9213%" y="645" width="0.0240%" height="15" fill="rgb(225,220,16)" fg:x="149281" fg:w="116"/><text x="31.1713%" y="655.50"></text></g><g><title>btrfs_search_slot (345 samples, 0.07%)</title><rect x="30.8838%" y="661" width="0.0715%" height="15" fill="rgb(238,65,40)" fg:x="149100" fg:w="345"/><text x="31.1338%" y="671.50"></text></g><g><title>btrfs_del_orphan_item (467 samples, 0.10%)</title><rect x="30.8635%" y="677" width="0.0967%" height="15" fill="rgb(230,151,21)" fg:x="149002" fg:w="467"/><text x="31.1135%" y="687.50"></text></g><g><title>__clear_extent_bit (102 samples, 0.02%)</title><rect x="30.9845%" y="661" width="0.0211%" height="15" fill="rgb(218,58,49)" fg:x="149586" fg:w="102"/><text x="31.2345%" y="671.50"></text></g><g><title>steal_from_bitmap.part.0 (52 samples, 0.01%)</title><rect x="31.0321%" y="597" width="0.0108%" height="15" fill="rgb(219,179,14)" fg:x="149816" fg:w="52"/><text x="31.2821%" y="607.50"></text></g><g><title>__btrfs_add_free_space (63 samples, 0.01%)</title><rect x="31.0313%" y="613" width="0.0130%" height="15" fill="rgb(223,72,1)" fg:x="149812" fg:w="63"/><text x="31.2813%" y="623.50"></text></g><g><title>btrfs_free_tree_block (87 samples, 0.02%)</title><rect x="31.0313%" y="629" width="0.0180%" height="15" fill="rgb(238,126,10)" fg:x="149812" fg:w="87"/><text x="31.2813%" y="639.50"></text></g><g><title>btrfs_del_leaf (98 samples, 0.02%)</title><rect x="31.0311%" y="645" width="0.0203%" height="15" fill="rgb(224,206,38)" fg:x="149811" fg:w="98"/><text x="31.2811%" y="655.50"></text></g><g><title>btrfs_get_token_32 (283 samples, 0.06%)</title><rect x="31.0609%" y="645" width="0.0586%" height="15" fill="rgb(212,201,54)" fg:x="149955" fg:w="283"/><text x="31.3109%" y="655.50"></text></g><g><title>btrfs_set_token_32 (287 samples, 0.06%)</title><rect x="31.1224%" y="645" width="0.0594%" height="15" fill="rgb(218,154,48)" fg:x="150252" fg:w="287"/><text x="31.3724%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (55 samples, 0.01%)</title><rect x="31.1705%" y="629" width="0.0114%" height="15" fill="rgb(232,93,24)" fg:x="150484" fg:w="55"/><text x="31.4205%" y="639.50"></text></g><g><title>memcpy_extent_buffer (56 samples, 0.01%)</title><rect x="31.1885%" y="645" width="0.0116%" height="15" fill="rgb(245,30,21)" fg:x="150571" fg:w="56"/><text x="31.4385%" y="655.50"></text></g><g><title>memmove_extent_buffer (168 samples, 0.03%)</title><rect x="31.2001%" y="645" width="0.0348%" height="15" fill="rgb(242,148,29)" fg:x="150627" fg:w="168"/><text x="31.4501%" y="655.50"></text></g><g><title>memmove (123 samples, 0.03%)</title><rect x="31.2094%" y="629" width="0.0255%" height="15" fill="rgb(244,153,54)" fg:x="150672" fg:w="123"/><text x="31.4594%" y="639.50"></text></g><g><title>__push_leaf_left (57 samples, 0.01%)</title><rect x="31.2351%" y="629" width="0.0118%" height="15" fill="rgb(252,87,22)" fg:x="150796" fg:w="57"/><text x="31.4851%" y="639.50"></text></g><g><title>push_leaf_left (70 samples, 0.01%)</title><rect x="31.2349%" y="645" width="0.0145%" height="15" fill="rgb(210,51,29)" fg:x="150795" fg:w="70"/><text x="31.4849%" y="655.50"></text></g><g><title>__push_leaf_right (55 samples, 0.01%)</title><rect x="31.2494%" y="629" width="0.0114%" height="15" fill="rgb(242,136,47)" fg:x="150865" fg:w="55"/><text x="31.4994%" y="639.50"></text></g><g><title>push_leaf_right (68 samples, 0.01%)</title><rect x="31.2494%" y="645" width="0.0141%" height="15" fill="rgb(238,68,4)" fg:x="150865" fg:w="68"/><text x="31.4994%" y="655.50"></text></g><g><title>btrfs_del_items (1,251 samples, 0.26%)</title><rect x="31.0056%" y="661" width="0.2591%" height="15" fill="rgb(242,161,30)" fg:x="149688" fg:w="1251"/><text x="31.2556%" y="671.50"></text></g><g><title>alloc_extent_map (57 samples, 0.01%)</title><rect x="31.2676%" y="645" width="0.0118%" height="15" fill="rgb(218,58,44)" fg:x="150953" fg:w="57"/><text x="31.5176%" y="655.50"></text></g><g><title>kmem_cache_alloc (53 samples, 0.01%)</title><rect x="31.2685%" y="629" width="0.0110%" height="15" fill="rgb(252,125,32)" fg:x="150957" fg:w="53"/><text x="31.5185%" y="639.50"></text></g><g><title>btrfs_drop_extent_cache (102 samples, 0.02%)</title><rect x="31.2647%" y="661" width="0.0211%" height="15" fill="rgb(219,178,0)" fg:x="150939" fg:w="102"/><text x="31.5147%" y="671.50"></text></g><g><title>btrfs_free_path (50 samples, 0.01%)</title><rect x="31.2859%" y="661" width="0.0104%" height="15" fill="rgb(213,152,7)" fg:x="151041" fg:w="50"/><text x="31.5359%" y="671.50"></text></g><g><title>btrfs_release_path (50 samples, 0.01%)</title><rect x="31.2859%" y="645" width="0.0104%" height="15" fill="rgb(249,109,34)" fg:x="151041" fg:w="50"/><text x="31.5359%" y="655.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="31.3143%" y="613" width="0.0145%" height="15" fill="rgb(232,96,21)" fg:x="151178" fg:w="70"/><text x="31.5643%" y="623.50"></text></g><g><title>btrfs_block_rsv_release (122 samples, 0.03%)</title><rect x="31.3051%" y="629" width="0.0253%" height="15" fill="rgb(228,27,39)" fg:x="151134" fg:w="122"/><text x="31.5551%" y="639.50"></text></g><g><title>finish_one_item (76 samples, 0.02%)</title><rect x="31.3418%" y="613" width="0.0157%" height="15" fill="rgb(211,182,52)" fg:x="151311" fg:w="76"/><text x="31.5918%" y="623.50"></text></g><g><title>rb_erase (55 samples, 0.01%)</title><rect x="31.3575%" y="613" width="0.0114%" height="15" fill="rgb(234,178,38)" fg:x="151387" fg:w="55"/><text x="31.6075%" y="623.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (193 samples, 0.04%)</title><rect x="31.3304%" y="629" width="0.0400%" height="15" fill="rgb(221,111,3)" fg:x="151256" fg:w="193"/><text x="31.5804%" y="639.50"></text></g><g><title>__slab_free (58 samples, 0.01%)</title><rect x="31.3843%" y="613" width="0.0120%" height="15" fill="rgb(228,175,21)" fg:x="151516" fg:w="58"/><text x="31.6343%" y="623.50"></text></g><g><title>kfree (152 samples, 0.03%)</title><rect x="31.3704%" y="629" width="0.0315%" height="15" fill="rgb(228,174,43)" fg:x="151449" fg:w="152"/><text x="31.6204%" y="639.50"></text></g><g><title>__btrfs_kill_delayed_node (496 samples, 0.10%)</title><rect x="31.3018%" y="645" width="0.1027%" height="15" fill="rgb(211,191,0)" fg:x="151118" fg:w="496"/><text x="31.5518%" y="655.50"></text></g><g><title>btrfs_kill_delayed_inode_items (510 samples, 0.11%)</title><rect x="31.3008%" y="661" width="0.1056%" height="15" fill="rgb(253,117,3)" fg:x="151113" fg:w="510"/><text x="31.5508%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (92 samples, 0.02%)</title><rect x="31.4336%" y="645" width="0.0191%" height="15" fill="rgb(241,127,19)" fg:x="151754" fg:w="92"/><text x="31.6836%" y="655.50"></text></g><g><title>find_extent_buffer (68 samples, 0.01%)</title><rect x="31.4603%" y="629" width="0.0141%" height="15" fill="rgb(218,103,12)" fg:x="151883" fg:w="68"/><text x="31.7103%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (123 samples, 0.03%)</title><rect x="31.4526%" y="645" width="0.0255%" height="15" fill="rgb(236,214,43)" fg:x="151846" fg:w="123"/><text x="31.7026%" y="655.50"></text></g><g><title>find_extent_buffer (59 samples, 0.01%)</title><rect x="31.4808%" y="629" width="0.0122%" height="15" fill="rgb(244,144,19)" fg:x="151982" fg:w="59"/><text x="31.7308%" y="639.50"></text></g><g><title>reada_for_balance (84 samples, 0.02%)</title><rect x="31.4781%" y="645" width="0.0174%" height="15" fill="rgb(246,188,10)" fg:x="151969" fg:w="84"/><text x="31.7281%" y="655.50"></text></g><g><title>btrfs_search_slot (457 samples, 0.09%)</title><rect x="31.4075%" y="661" width="0.0947%" height="15" fill="rgb(212,193,33)" fg:x="151628" fg:w="457"/><text x="31.6575%" y="671.50"></text></g><g><title>lock_extent_bits (55 samples, 0.01%)</title><rect x="31.5067%" y="661" width="0.0114%" height="15" fill="rgb(241,51,29)" fg:x="152107" fg:w="55"/><text x="31.7567%" y="671.50"></text></g><g><title>__set_extent_bit (54 samples, 0.01%)</title><rect x="31.5069%" y="645" width="0.0112%" height="15" fill="rgb(211,58,19)" fg:x="152108" fg:w="54"/><text x="31.7569%" y="655.50"></text></g><g><title>btrfs_truncate_inode_items (2,737 samples, 0.57%)</title><rect x="30.9644%" y="677" width="0.5669%" height="15" fill="rgb(229,111,26)" fg:x="149489" fg:w="2737"/><text x="31.2144%" y="687.50"></text></g><g><title>read_extent_buffer (64 samples, 0.01%)</title><rect x="31.5181%" y="661" width="0.0133%" height="15" fill="rgb(213,115,40)" fg:x="152162" fg:w="64"/><text x="31.7681%" y="671.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (72 samples, 0.01%)</title><rect x="31.5452%" y="613" width="0.0149%" height="15" fill="rgb(209,56,44)" fg:x="152293" fg:w="72"/><text x="31.7952%" y="623.50"></text></g><g><title>btrfs_block_rsv_refill (153 samples, 0.03%)</title><rect x="31.5357%" y="661" width="0.0317%" height="15" fill="rgb(230,108,32)" fg:x="152247" fg:w="153"/><text x="31.7857%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (126 samples, 0.03%)</title><rect x="31.5413%" y="645" width="0.0261%" height="15" fill="rgb(216,165,31)" fg:x="152274" fg:w="126"/><text x="31.7913%" y="655.50"></text></g><g><title>__reserve_bytes (125 samples, 0.03%)</title><rect x="31.5415%" y="629" width="0.0259%" height="15" fill="rgb(218,122,21)" fg:x="152275" fg:w="125"/><text x="31.7915%" y="639.50"></text></g><g><title>evict_refill_and_join (270 samples, 0.06%)</title><rect x="31.5313%" y="677" width="0.0559%" height="15" fill="rgb(223,224,47)" fg:x="152226" fg:w="270"/><text x="31.7813%" y="687.50"></text></g><g><title>start_transaction (96 samples, 0.02%)</title><rect x="31.5674%" y="661" width="0.0199%" height="15" fill="rgb(238,102,44)" fg:x="152400" fg:w="96"/><text x="31.8174%" y="671.50"></text></g><g><title>btrfs_evict_inode (5,235 samples, 1.08%)</title><rect x="30.5141%" y="693" width="1.0844%" height="15" fill="rgb(236,46,40)" fg:x="147315" fg:w="5235"/><text x="30.7641%" y="703.50"></text></g><g><title>evict (5,303 samples, 1.10%)</title><rect x="30.5033%" y="709" width="1.0984%" height="15" fill="rgb(247,202,50)" fg:x="147263" fg:w="5303"/><text x="30.7533%" y="719.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="31.6177%" y="677" width="0.0141%" height="15" fill="rgb(209,99,20)" fg:x="152643" fg:w="68"/><text x="31.8677%" y="687.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="31.6730%" y="629" width="0.0128%" height="15" fill="rgb(252,27,34)" fg:x="152910" fg:w="62"/><text x="31.9230%" y="639.50"></text></g><g><title>d_lru_del (387 samples, 0.08%)</title><rect x="31.6399%" y="661" width="0.0802%" height="15" fill="rgb(215,206,23)" fg:x="152750" fg:w="387"/><text x="31.8899%" y="671.50"></text></g><g><title>list_lru_del (369 samples, 0.08%)</title><rect x="31.6436%" y="645" width="0.0764%" height="15" fill="rgb(212,135,36)" fg:x="152768" fg:w="369"/><text x="31.8936%" y="655.50"></text></g><g><title>mem_cgroup_from_obj (164 samples, 0.03%)</title><rect x="31.6861%" y="629" width="0.0340%" height="15" fill="rgb(240,189,1)" fg:x="152973" fg:w="164"/><text x="31.9361%" y="639.50"></text></g><g><title>d_walk (574 samples, 0.12%)</title><rect x="31.6094%" y="693" width="0.1189%" height="15" fill="rgb(242,56,20)" fg:x="152603" fg:w="574"/><text x="31.8594%" y="703.50"></text></g><g><title>select_collect (466 samples, 0.10%)</title><rect x="31.6318%" y="677" width="0.0965%" height="15" fill="rgb(247,132,33)" fg:x="152711" fg:w="466"/><text x="31.8818%" y="687.50"></text></g><g><title>___d_drop (247 samples, 0.05%)</title><rect x="31.7418%" y="661" width="0.0512%" height="15" fill="rgb(208,149,11)" fg:x="153242" fg:w="247"/><text x="31.9918%" y="671.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="31.7944%" y="661" width="0.0137%" height="15" fill="rgb(211,33,11)" fg:x="153496" fg:w="66"/><text x="32.0444%" y="671.50"></text></g><g><title>call_rcu (292 samples, 0.06%)</title><rect x="31.8081%" y="661" width="0.0605%" height="15" fill="rgb(221,29,38)" fg:x="153562" fg:w="292"/><text x="32.0581%" y="671.50"></text></g><g><title>rcu_segcblist_enqueue (155 samples, 0.03%)</title><rect x="31.8364%" y="645" width="0.0321%" height="15" fill="rgb(206,182,49)" fg:x="153699" fg:w="155"/><text x="32.0864%" y="655.50"></text></g><g><title>__dentry_kill (664 samples, 0.14%)</title><rect x="31.7316%" y="677" width="0.1375%" height="15" fill="rgb(216,140,1)" fg:x="153193" fg:w="664"/><text x="31.9816%" y="687.50"></text></g><g><title>__dput_to_list (66 samples, 0.01%)</title><rect x="31.8692%" y="677" width="0.0137%" height="15" fill="rgb(232,57,40)" fg:x="153857" fg:w="66"/><text x="32.1192%" y="687.50"></text></g><g><title>d_lru_del (55 samples, 0.01%)</title><rect x="31.8714%" y="661" width="0.0114%" height="15" fill="rgb(224,186,18)" fg:x="153868" fg:w="55"/><text x="32.1214%" y="671.50"></text></g><g><title>list_lru_del (49 samples, 0.01%)</title><rect x="31.8727%" y="645" width="0.0101%" height="15" fill="rgb(215,121,11)" fg:x="153874" fg:w="49"/><text x="32.1227%" y="655.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="31.8862%" y="677" width="0.0137%" height="15" fill="rgb(245,147,10)" fg:x="153939" fg:w="66"/><text x="32.1362%" y="687.50"></text></g><g><title>_raw_spin_trylock (66 samples, 0.01%)</title><rect x="31.9112%" y="661" width="0.0137%" height="15" fill="rgb(238,153,13)" fg:x="154060" fg:w="66"/><text x="32.1612%" y="671.50"></text></g><g><title>shrink_dcache_parent (1,527 samples, 0.32%)</title><rect x="31.6088%" y="709" width="0.3163%" height="15" fill="rgb(233,108,0)" fg:x="152600" fg:w="1527"/><text x="31.8588%" y="719.50"></text></g><g><title>shrink_dentry_list (950 samples, 0.20%)</title><rect x="31.7283%" y="693" width="0.1968%" height="15" fill="rgb(212,157,17)" fg:x="153177" fg:w="950"/><text x="31.9783%" y="703.50"></text></g><g><title>shrink_lock_dentry.part.0 (88 samples, 0.02%)</title><rect x="31.9069%" y="677" width="0.0182%" height="15" fill="rgb(225,213,38)" fg:x="154039" fg:w="88"/><text x="32.1569%" y="687.50"></text></g><g><title>do_rmdir (10,459 samples, 2.17%)</title><rect x="29.7601%" y="741" width="2.1664%" height="15" fill="rgb(248,16,11)" fg:x="143675" fg:w="10459"/><text x="30.0101%" y="751.50">d..</text></g><g><title>vfs_rmdir.part.0 (10,163 samples, 2.11%)</title><rect x="29.8214%" y="725" width="2.1051%" height="15" fill="rgb(241,33,4)" fg:x="143971" fg:w="10163"/><text x="30.0714%" y="735.50">v..</text></g><g><title>_raw_spin_lock (156 samples, 0.03%)</title><rect x="32.1650%" y="661" width="0.0323%" height="15" fill="rgb(222,26,43)" fg:x="155285" fg:w="156"/><text x="32.4150%" y="671.50"></text></g><g><title>__d_lookup (1,177 samples, 0.24%)</title><rect x="31.9553%" y="677" width="0.2438%" height="15" fill="rgb(243,29,36)" fg:x="154273" fg:w="1177"/><text x="32.2053%" y="687.50"></text></g><g><title>__lookup_hash (1,218 samples, 0.25%)</title><rect x="31.9470%" y="725" width="0.2523%" height="15" fill="rgb(241,9,27)" fg:x="154233" fg:w="1218"/><text x="32.1970%" y="735.50"></text></g><g><title>lookup_dcache (1,200 samples, 0.25%)</title><rect x="31.9508%" y="709" width="0.2486%" height="15" fill="rgb(205,117,26)" fg:x="154251" fg:w="1200"/><text x="32.2008%" y="719.50"></text></g><g><title>d_lookup (1,191 samples, 0.25%)</title><rect x="31.9526%" y="693" width="0.2467%" height="15" fill="rgb(209,80,39)" fg:x="154260" fg:w="1191"/><text x="32.2026%" y="703.50"></text></g><g><title>call_rcu (323 samples, 0.07%)</title><rect x="32.1998%" y="725" width="0.0669%" height="15" fill="rgb(239,155,6)" fg:x="155453" fg:w="323"/><text x="32.4498%" y="735.50"></text></g><g><title>rcu_segcblist_enqueue (161 samples, 0.03%)</title><rect x="32.2333%" y="709" width="0.0333%" height="15" fill="rgb(212,104,12)" fg:x="155615" fg:w="161"/><text x="32.4833%" y="719.50"></text></g><g><title>__srcu_read_lock (63 samples, 0.01%)</title><rect x="32.2855%" y="661" width="0.0130%" height="15" fill="rgb(234,204,3)" fg:x="155867" fg:w="63"/><text x="32.5355%" y="671.50"></text></g><g><title>fsnotify_destroy_marks (159 samples, 0.03%)</title><rect x="32.2809%" y="693" width="0.0329%" height="15" fill="rgb(251,218,7)" fg:x="155845" fg:w="159"/><text x="32.5309%" y="703.50"></text></g><g><title>fsnotify_grab_connector (147 samples, 0.03%)</title><rect x="32.2834%" y="677" width="0.0304%" height="15" fill="rgb(221,81,32)" fg:x="155857" fg:w="147"/><text x="32.5334%" y="687.50"></text></g><g><title>__srcu_read_unlock (74 samples, 0.02%)</title><rect x="32.2986%" y="661" width="0.0153%" height="15" fill="rgb(214,152,26)" fg:x="155930" fg:w="74"/><text x="32.5486%" y="671.50"></text></g><g><title>__destroy_inode (249 samples, 0.05%)</title><rect x="32.2673%" y="709" width="0.0516%" height="15" fill="rgb(223,22,3)" fg:x="155779" fg:w="249"/><text x="32.5173%" y="719.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="32.3307%" y="693" width="0.0139%" height="15" fill="rgb(207,174,7)" fg:x="156085" fg:w="67"/><text x="32.5807%" y="703.50"></text></g><g><title>_raw_write_lock (59 samples, 0.01%)</title><rect x="32.3592%" y="677" width="0.0122%" height="15" fill="rgb(224,19,52)" fg:x="156223" fg:w="59"/><text x="32.6092%" y="687.50"></text></g><g><title>memset_erms (149 samples, 0.03%)</title><rect x="32.4235%" y="645" width="0.0309%" height="15" fill="rgb(228,24,14)" fg:x="156533" fg:w="149"/><text x="32.6735%" y="655.50"></text></g><g><title>alloc_extent_map (463 samples, 0.10%)</title><rect x="32.3715%" y="677" width="0.0959%" height="15" fill="rgb(230,153,43)" fg:x="156282" fg:w="463"/><text x="32.6215%" y="687.50"></text></g><g><title>kmem_cache_alloc (429 samples, 0.09%)</title><rect x="32.3785%" y="661" width="0.0889%" height="15" fill="rgb(231,106,12)" fg:x="156316" fg:w="429"/><text x="32.6285%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (63 samples, 0.01%)</title><rect x="32.4543%" y="645" width="0.0130%" height="15" fill="rgb(215,92,2)" fg:x="156682" fg:w="63"/><text x="32.7043%" y="655.50"></text></g><g><title>free_extent_map (117 samples, 0.02%)</title><rect x="32.4674%" y="677" width="0.0242%" height="15" fill="rgb(249,143,25)" fg:x="156745" fg:w="117"/><text x="32.7174%" y="687.50"></text></g><g><title>kmem_cache_free (266 samples, 0.06%)</title><rect x="32.4916%" y="677" width="0.0551%" height="15" fill="rgb(252,7,35)" fg:x="156862" fg:w="266"/><text x="32.7416%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (71 samples, 0.01%)</title><rect x="32.5320%" y="661" width="0.0147%" height="15" fill="rgb(216,69,40)" fg:x="157057" fg:w="71"/><text x="32.7820%" y="671.50"></text></g><g><title>btrfs_drop_extent_cache (978 samples, 0.20%)</title><rect x="32.3445%" y="693" width="0.2026%" height="15" fill="rgb(240,36,33)" fg:x="156152" fg:w="978"/><text x="32.5945%" y="703.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="32.5631%" y="645" width="0.0120%" height="15" fill="rgb(231,128,14)" fg:x="157207" fg:w="58"/><text x="32.8131%" y="655.50"></text></g><g><title>alloc_extent_state (223 samples, 0.05%)</title><rect x="32.5751%" y="645" width="0.0462%" height="15" fill="rgb(245,143,14)" fg:x="157265" fg:w="223"/><text x="32.8251%" y="655.50"></text></g><g><title>kmem_cache_alloc (201 samples, 0.04%)</title><rect x="32.5796%" y="629" width="0.0416%" height="15" fill="rgb(222,130,28)" fg:x="157287" fg:w="201"/><text x="32.8296%" y="639.50"></text></g><g><title>free_extent_state (58 samples, 0.01%)</title><rect x="32.6213%" y="645" width="0.0120%" height="15" fill="rgb(212,10,48)" fg:x="157488" fg:w="58"/><text x="32.8713%" y="655.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (525 samples, 0.11%)</title><rect x="32.5471%" y="693" width="0.1087%" height="15" fill="rgb(254,118,45)" fg:x="157130" fg:w="525"/><text x="32.7971%" y="703.50"></text></g><g><title>clear_extent_bit (495 samples, 0.10%)</title><rect x="32.5533%" y="677" width="0.1025%" height="15" fill="rgb(228,6,45)" fg:x="157160" fg:w="495"/><text x="32.8033%" y="687.50"></text></g><g><title>__clear_extent_bit (488 samples, 0.10%)</title><rect x="32.5548%" y="661" width="0.1011%" height="15" fill="rgb(241,18,35)" fg:x="157167" fg:w="488"/><text x="32.8048%" y="671.50"></text></g><g><title>kmem_cache_free (109 samples, 0.02%)</title><rect x="32.6333%" y="645" width="0.0226%" height="15" fill="rgb(227,214,53)" fg:x="157546" fg:w="109"/><text x="32.8833%" y="655.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (105 samples, 0.02%)</title><rect x="32.6559%" y="693" width="0.0217%" height="15" fill="rgb(224,107,51)" fg:x="157655" fg:w="105"/><text x="32.9059%" y="703.50"></text></g><g><title>_raw_spin_lock_irq (53 samples, 0.01%)</title><rect x="32.6666%" y="677" width="0.0110%" height="15" fill="rgb(248,60,28)" fg:x="157707" fg:w="53"/><text x="32.9166%" y="687.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="32.6925%" y="645" width="0.0108%" height="15" fill="rgb(249,101,23)" fg:x="157832" fg:w="52"/><text x="32.9425%" y="655.50"></text></g><g><title>alloc_extent_state (242 samples, 0.05%)</title><rect x="32.7033%" y="645" width="0.0501%" height="15" fill="rgb(228,51,19)" fg:x="157884" fg:w="242"/><text x="32.9533%" y="655.50"></text></g><g><title>kmem_cache_alloc (217 samples, 0.04%)</title><rect x="32.7085%" y="629" width="0.0449%" height="15" fill="rgb(213,20,6)" fg:x="157909" fg:w="217"/><text x="32.9585%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (52 samples, 0.01%)</title><rect x="32.7427%" y="613" width="0.0108%" height="15" fill="rgb(212,124,10)" fg:x="158074" fg:w="52"/><text x="32.9927%" y="623.50"></text></g><g><title>free_extent_state (53 samples, 0.01%)</title><rect x="32.7534%" y="645" width="0.0110%" height="15" fill="rgb(248,3,40)" fg:x="158126" fg:w="53"/><text x="33.0034%" y="655.50"></text></g><g><title>clear_record_extent_bits (534 samples, 0.11%)</title><rect x="32.6822%" y="677" width="0.1106%" height="15" fill="rgb(223,178,23)" fg:x="157782" fg:w="534"/><text x="32.9322%" y="687.50"></text></g><g><title>__clear_extent_bit (528 samples, 0.11%)</title><rect x="32.6834%" y="661" width="0.1094%" height="15" fill="rgb(240,132,45)" fg:x="157788" fg:w="528"/><text x="32.9334%" y="671.50"></text></g><g><title>kmem_cache_free (137 samples, 0.03%)</title><rect x="32.7644%" y="645" width="0.0284%" height="15" fill="rgb(245,164,36)" fg:x="158179" fg:w="137"/><text x="33.0144%" y="655.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (585 samples, 0.12%)</title><rect x="32.6776%" y="693" width="0.1212%" height="15" fill="rgb(231,188,53)" fg:x="157760" fg:w="585"/><text x="32.9276%" y="703.50"></text></g><g><title>btrfs_destroy_inode (3,082 samples, 0.64%)</title><rect x="32.3189%" y="709" width="0.6384%" height="15" fill="rgb(237,198,39)" fg:x="156028" fg:w="3082"/><text x="32.5689%" y="719.50"></text></g><g><title>rb_erase (765 samples, 0.16%)</title><rect x="32.7988%" y="693" width="0.1585%" height="15" fill="rgb(223,120,35)" fg:x="158345" fg:w="765"/><text x="33.0488%" y="703.50"></text></g><g><title>destroy_inode (3,389 samples, 0.70%)</title><rect x="32.2667%" y="725" width="0.7020%" height="15" fill="rgb(253,107,49)" fg:x="155776" fg:w="3389"/><text x="32.5167%" y="735.50"></text></g><g><title>btrfs_put_root (55 samples, 0.01%)</title><rect x="32.9572%" y="709" width="0.0114%" height="15" fill="rgb(216,44,31)" fg:x="159110" fg:w="55"/><text x="33.2072%" y="719.50"></text></g><g><title>down_write (74 samples, 0.02%)</title><rect x="32.9686%" y="725" width="0.0153%" height="15" fill="rgb(253,87,21)" fg:x="159165" fg:w="74"/><text x="33.2186%" y="735.50"></text></g><g><title>lockref_put_or_lock (105 samples, 0.02%)</title><rect x="33.0101%" y="709" width="0.0217%" height="15" fill="rgb(226,18,2)" fg:x="159365" fg:w="105"/><text x="33.2601%" y="719.50"></text></g><g><title>dput (235 samples, 0.05%)</title><rect x="32.9840%" y="725" width="0.0487%" height="15" fill="rgb(216,8,46)" fg:x="159239" fg:w="235"/><text x="33.2340%" y="735.50"></text></g><g><title>__list_del_entry_valid (302 samples, 0.06%)</title><rect x="33.0434%" y="709" width="0.0626%" height="15" fill="rgb(226,140,39)" fg:x="159526" fg:w="302"/><text x="33.2934%" y="719.50"></text></g><g><title>__remove_inode_hash (134 samples, 0.03%)</title><rect x="33.1060%" y="709" width="0.0278%" height="15" fill="rgb(221,194,54)" fg:x="159828" fg:w="134"/><text x="33.3560%" y="719.50"></text></g><g><title>_raw_spin_lock (114 samples, 0.02%)</title><rect x="33.1101%" y="693" width="0.0236%" height="15" fill="rgb(213,92,11)" fg:x="159848" fg:w="114"/><text x="33.3601%" y="703.50"></text></g><g><title>_raw_spin_lock (225 samples, 0.05%)</title><rect x="33.1337%" y="709" width="0.0466%" height="15" fill="rgb(229,162,46)" fg:x="159962" fg:w="225"/><text x="33.3837%" y="719.50"></text></g><g><title>btrfs_put_transaction (127 samples, 0.03%)</title><rect x="33.2640%" y="677" width="0.0263%" height="15" fill="rgb(214,111,36)" fg:x="160591" fg:w="127"/><text x="33.5140%" y="687.50"></text></g><g><title>_raw_spin_lock (219 samples, 0.05%)</title><rect x="33.3193%" y="645" width="0.0454%" height="15" fill="rgb(207,6,21)" fg:x="160858" fg:w="219"/><text x="33.5693%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (399 samples, 0.08%)</title><rect x="33.2930%" y="677" width="0.0826%" height="15" fill="rgb(213,127,38)" fg:x="160731" fg:w="399"/><text x="33.5430%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (381 samples, 0.08%)</title><rect x="33.2967%" y="661" width="0.0789%" height="15" fill="rgb(238,118,32)" fg:x="160749" fg:w="381"/><text x="33.5467%" y="671.50"></text></g><g><title>__btrfs_end_transaction (1,066 samples, 0.22%)</title><rect x="33.2073%" y="693" width="0.2208%" height="15" fill="rgb(240,139,39)" fg:x="160317" fg:w="1066"/><text x="33.4573%" y="703.50"></text></g><g><title>kmem_cache_free (253 samples, 0.05%)</title><rect x="33.3757%" y="677" width="0.0524%" height="15" fill="rgb(235,10,37)" fg:x="161130" fg:w="253"/><text x="33.6257%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (66 samples, 0.01%)</title><rect x="33.4144%" y="661" width="0.0137%" height="15" fill="rgb(249,171,38)" fg:x="161317" fg:w="66"/><text x="33.6644%" y="671.50"></text></g><g><title>_raw_spin_lock (97 samples, 0.02%)</title><rect x="33.4465%" y="677" width="0.0201%" height="15" fill="rgb(242,144,32)" fg:x="161472" fg:w="97"/><text x="33.6965%" y="687.50"></text></g><g><title>mutex_lock (82 samples, 0.02%)</title><rect x="33.4666%" y="677" width="0.0170%" height="15" fill="rgb(217,117,21)" fg:x="161569" fg:w="82"/><text x="33.7166%" y="687.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="33.4836%" y="677" width="0.0114%" height="15" fill="rgb(249,87,1)" fg:x="161651" fg:w="55"/><text x="33.7336%" y="687.50"></text></g><g><title>__radix_tree_delete (104 samples, 0.02%)</title><rect x="33.4975%" y="661" width="0.0215%" height="15" fill="rgb(248,196,48)" fg:x="161718" fg:w="104"/><text x="33.7475%" y="671.50"></text></g><g><title>__radix_tree_lookup (414 samples, 0.09%)</title><rect x="33.5190%" y="661" width="0.0858%" height="15" fill="rgb(251,206,33)" fg:x="161822" fg:w="414"/><text x="33.7690%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (869 samples, 0.18%)</title><rect x="33.4281%" y="693" width="0.1800%" height="15" fill="rgb(232,141,28)" fg:x="161383" fg:w="869"/><text x="33.6781%" y="703.50"></text></g><g><title>radix_tree_delete_item (546 samples, 0.11%)</title><rect x="33.4950%" y="677" width="0.1131%" height="15" fill="rgb(209,167,14)" fg:x="161706" fg:w="546"/><text x="33.7450%" y="687.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="33.6081%" y="693" width="0.0122%" height="15" fill="rgb(225,11,50)" fg:x="162252" fg:w="59"/><text x="33.8581%" y="703.50"></text></g><g><title>_raw_write_lock (60 samples, 0.01%)</title><rect x="33.6203%" y="693" width="0.0124%" height="15" fill="rgb(209,50,20)" fg:x="162311" fg:w="60"/><text x="33.8703%" y="703.50"></text></g><g><title>memset_erms (50 samples, 0.01%)</title><rect x="33.6646%" y="661" width="0.0104%" height="15" fill="rgb(212,17,46)" fg:x="162525" fg:w="50"/><text x="33.9146%" y="671.50"></text></g><g><title>btrfs_alloc_block_rsv (220 samples, 0.05%)</title><rect x="33.6331%" y="693" width="0.0456%" height="15" fill="rgb(216,101,39)" fg:x="162373" fg:w="220"/><text x="33.8831%" y="703.50"></text></g><g><title>kmem_cache_alloc_trace (144 samples, 0.03%)</title><rect x="33.6489%" y="677" width="0.0298%" height="15" fill="rgb(212,228,48)" fg:x="162449" fg:w="144"/><text x="33.8989%" y="687.50"></text></g><g><title>btrfs_btree_balance_dirty (54 samples, 0.01%)</title><rect x="33.6787%" y="693" width="0.0112%" height="15" fill="rgb(250,6,50)" fg:x="162593" fg:w="54"/><text x="33.9287%" y="703.50"></text></g><g><title>btrfs_put_transaction (66 samples, 0.01%)</title><rect x="33.7413%" y="661" width="0.0137%" height="15" fill="rgb(250,160,48)" fg:x="162895" fg:w="66"/><text x="33.9913%" y="671.50"></text></g><g><title>__btrfs_end_transaction (377 samples, 0.08%)</title><rect x="33.7023%" y="677" width="0.0781%" height="15" fill="rgb(244,216,33)" fg:x="162707" fg:w="377"/><text x="33.9523%" y="687.50"></text></g><g><title>kmem_cache_free (112 samples, 0.02%)</title><rect x="33.7572%" y="661" width="0.0232%" height="15" fill="rgb(207,157,5)" fg:x="162972" fg:w="112"/><text x="34.0072%" y="671.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="33.8200%" y="661" width="0.0122%" height="15" fill="rgb(228,199,8)" fg:x="163275" fg:w="59"/><text x="34.0700%" y="671.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="33.8322%" y="661" width="0.0133%" height="15" fill="rgb(227,80,20)" fg:x="163334" fg:w="64"/><text x="34.0822%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (362 samples, 0.07%)</title><rect x="33.7804%" y="677" width="0.0750%" height="15" fill="rgb(222,9,33)" fg:x="163084" fg:w="362"/><text x="34.0304%" y="687.50"></text></g><g><title>_find_next_bit.constprop.0 (64 samples, 0.01%)</title><rect x="34.0536%" y="581" width="0.0133%" height="15" fill="rgb(239,44,28)" fg:x="164403" fg:w="64"/><text x="34.3036%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (76 samples, 0.02%)</title><rect x="34.0524%" y="597" width="0.0157%" height="15" fill="rgb(249,187,43)" fg:x="164397" fg:w="76"/><text x="34.3024%" y="607.50"></text></g><g><title>__btrfs_add_free_space (92 samples, 0.02%)</title><rect x="34.0505%" y="613" width="0.0191%" height="15" fill="rgb(216,141,28)" fg:x="164388" fg:w="92"/><text x="34.3005%" y="623.50"></text></g><g><title>btrfs_free_tree_block (144 samples, 0.03%)</title><rect x="34.0505%" y="629" width="0.0298%" height="15" fill="rgb(230,154,53)" fg:x="164388" fg:w="144"/><text x="34.3005%" y="639.50"></text></g><g><title>btrfs_del_leaf (160 samples, 0.03%)</title><rect x="34.0495%" y="645" width="0.0331%" height="15" fill="rgb(227,82,4)" fg:x="164383" fg:w="160"/><text x="34.2995%" y="655.50"></text></g><g><title>btrfs_get_32 (78 samples, 0.02%)</title><rect x="34.0826%" y="645" width="0.0162%" height="15" fill="rgb(220,107,16)" fg:x="164543" fg:w="78"/><text x="34.3326%" y="655.50"></text></g><g><title>btrfs_get_token_32 (2,107 samples, 0.44%)</title><rect x="34.0988%" y="645" width="0.4364%" height="15" fill="rgb(207,187,2)" fg:x="164621" fg:w="2107"/><text x="34.3488%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (317 samples, 0.07%)</title><rect x="34.4695%" y="629" width="0.0657%" height="15" fill="rgb(210,162,52)" fg:x="166411" fg:w="317"/><text x="34.7195%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (151 samples, 0.03%)</title><rect x="34.5352%" y="645" width="0.0313%" height="15" fill="rgb(217,216,49)" fg:x="166728" fg:w="151"/><text x="34.7852%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (108 samples, 0.02%)</title><rect x="34.5441%" y="629" width="0.0224%" height="15" fill="rgb(218,146,49)" fg:x="166771" fg:w="108"/><text x="34.7941%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (397 samples, 0.08%)</title><rect x="34.8766%" y="629" width="0.0822%" height="15" fill="rgb(216,55,40)" fg:x="168376" fg:w="397"/><text x="35.1266%" y="639.50"></text></g><g><title>btrfs_set_token_32 (1,882 samples, 0.39%)</title><rect x="34.5692%" y="645" width="0.3898%" height="15" fill="rgb(208,196,21)" fg:x="166892" fg:w="1882"/><text x="34.8192%" y="655.50"></text></g><g><title>leaf_space_used (112 samples, 0.02%)</title><rect x="34.9623%" y="645" width="0.0232%" height="15" fill="rgb(242,117,42)" fg:x="168790" fg:w="112"/><text x="35.2123%" y="655.50"></text></g><g><title>btrfs_get_32 (76 samples, 0.02%)</title><rect x="34.9698%" y="629" width="0.0157%" height="15" fill="rgb(210,11,23)" fg:x="168826" fg:w="76"/><text x="35.2198%" y="639.50"></text></g><g><title>memcpy_extent_buffer (311 samples, 0.06%)</title><rect x="34.9855%" y="645" width="0.0644%" height="15" fill="rgb(217,110,2)" fg:x="168902" fg:w="311"/><text x="35.2355%" y="655.50"></text></g><g><title>memmove (257 samples, 0.05%)</title><rect x="34.9967%" y="629" width="0.0532%" height="15" fill="rgb(229,77,54)" fg:x="168956" fg:w="257"/><text x="35.2467%" y="639.50"></text></g><g><title>copy_pages (297 samples, 0.06%)</title><rect x="35.0798%" y="629" width="0.0615%" height="15" fill="rgb(218,53,16)" fg:x="169357" fg:w="297"/><text x="35.3298%" y="639.50"></text></g><g><title>memmove_extent_buffer (2,787 samples, 0.58%)</title><rect x="35.0499%" y="645" width="0.5773%" height="15" fill="rgb(215,38,13)" fg:x="169213" fg:w="2787"/><text x="35.2999%" y="655.50"></text></g><g><title>memmove (2,346 samples, 0.49%)</title><rect x="35.1413%" y="629" width="0.4859%" height="15" fill="rgb(235,42,18)" fg:x="169654" fg:w="2346"/><text x="35.3913%" y="639.50"></text></g><g><title>__push_leaf_left (104 samples, 0.02%)</title><rect x="35.6318%" y="629" width="0.0215%" height="15" fill="rgb(219,66,54)" fg:x="172022" fg:w="104"/><text x="35.8818%" y="639.50"></text></g><g><title>push_leaf_left (178 samples, 0.04%)</title><rect x="35.6272%" y="645" width="0.0369%" height="15" fill="rgb(222,205,4)" fg:x="172000" fg:w="178"/><text x="35.8772%" y="655.50"></text></g><g><title>__push_leaf_right (99 samples, 0.02%)</title><rect x="35.6697%" y="629" width="0.0205%" height="15" fill="rgb(227,213,46)" fg:x="172205" fg:w="99"/><text x="35.9197%" y="639.50"></text></g><g><title>alloc_extent_buffer (63 samples, 0.01%)</title><rect x="35.7065%" y="597" width="0.0130%" height="15" fill="rgb(250,145,42)" fg:x="172383" fg:w="63"/><text x="35.9565%" y="607.50"></text></g><g><title>find_extent_buffer (57 samples, 0.01%)</title><rect x="35.7078%" y="581" width="0.0118%" height="15" fill="rgb(219,15,2)" fg:x="172389" fg:w="57"/><text x="35.9578%" y="591.50"></text></g><g><title>btrfs_read_node_slot (123 samples, 0.03%)</title><rect x="35.6995%" y="629" width="0.0255%" height="15" fill="rgb(231,181,52)" fg:x="172349" fg:w="123"/><text x="35.9495%" y="639.50"></text></g><g><title>read_tree_block (92 samples, 0.02%)</title><rect x="35.7059%" y="613" width="0.0191%" height="15" fill="rgb(235,1,42)" fg:x="172380" fg:w="92"/><text x="35.9559%" y="623.50"></text></g><g><title>push_leaf_right (327 samples, 0.07%)</title><rect x="35.6641%" y="645" width="0.0677%" height="15" fill="rgb(249,88,27)" fg:x="172178" fg:w="327"/><text x="35.9141%" y="655.50"></text></g><g><title>btrfs_del_items (8,939 samples, 1.85%)</title><rect x="33.8844%" y="661" width="1.8516%" height="15" fill="rgb(235,145,16)" fg:x="163586" fg:w="8939"/><text x="34.1344%" y="671.50">b..</text></g><g><title>_raw_spin_lock (107 samples, 0.02%)</title><rect x="35.7519%" y="629" width="0.0222%" height="15" fill="rgb(237,114,19)" fg:x="172602" fg:w="107"/><text x="36.0019%" y="639.50"></text></g><g><title>btrfs_block_rsv_release (201 samples, 0.04%)</title><rect x="35.7399%" y="645" width="0.0416%" height="15" fill="rgb(238,51,50)" fg:x="172544" fg:w="201"/><text x="35.9899%" y="655.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (237 samples, 0.05%)</title><rect x="35.7360%" y="661" width="0.0491%" height="15" fill="rgb(205,194,25)" fg:x="172525" fg:w="237"/><text x="35.9860%" y="671.50"></text></g><g><title>btrfs_get_32 (63 samples, 0.01%)</title><rect x="35.7851%" y="661" width="0.0130%" height="15" fill="rgb(215,203,17)" fg:x="172762" fg:w="63"/><text x="36.0351%" y="671.50"></text></g><g><title>_raw_read_lock (65 samples, 0.01%)</title><rect x="35.8654%" y="597" width="0.0135%" height="15" fill="rgb(233,112,49)" fg:x="173150" fg:w="65"/><text x="36.1154%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (80 samples, 0.02%)</title><rect x="35.8627%" y="613" width="0.0166%" height="15" fill="rgb(241,130,26)" fg:x="173137" fg:w="80"/><text x="36.1127%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (180 samples, 0.04%)</title><rect x="35.8607%" y="629" width="0.0373%" height="15" fill="rgb(252,223,19)" fg:x="173127" fg:w="180"/><text x="36.1107%" y="639.50"></text></g><g><title>btrfs_root_node (89 samples, 0.02%)</title><rect x="35.8795%" y="613" width="0.0184%" height="15" fill="rgb(211,95,25)" fg:x="173218" fg:w="89"/><text x="36.1295%" y="623.50"></text></g><g><title>alloc_extent_buffer (51 samples, 0.01%)</title><rect x="35.9201%" y="581" width="0.0106%" height="15" fill="rgb(251,182,27)" fg:x="173414" fg:w="51"/><text x="36.1701%" y="591.50"></text></g><g><title>find_extent_buffer (50 samples, 0.01%)</title><rect x="35.9203%" y="565" width="0.0104%" height="15" fill="rgb(238,24,4)" fg:x="173415" fg:w="50"/><text x="36.1703%" y="575.50"></text></g><g><title>btrfs_read_node_slot (98 samples, 0.02%)</title><rect x="35.9155%" y="613" width="0.0203%" height="15" fill="rgb(224,220,25)" fg:x="173392" fg:w="98"/><text x="36.1655%" y="623.50"></text></g><g><title>read_tree_block (77 samples, 0.02%)</title><rect x="35.9199%" y="597" width="0.0159%" height="15" fill="rgb(239,133,26)" fg:x="173413" fg:w="77"/><text x="36.1699%" y="607.50"></text></g><g><title>balance_level (225 samples, 0.05%)</title><rect x="35.8981%" y="629" width="0.0466%" height="15" fill="rgb(211,94,48)" fg:x="173308" fg:w="225"/><text x="36.1481%" y="639.50"></text></g><g><title>_raw_write_lock (56 samples, 0.01%)</title><rect x="35.9651%" y="597" width="0.0116%" height="15" fill="rgb(239,87,6)" fg:x="173631" fg:w="56"/><text x="36.2151%" y="607.50"></text></g><g><title>__btrfs_tree_lock (91 samples, 0.02%)</title><rect x="35.9580%" y="613" width="0.0188%" height="15" fill="rgb(227,62,0)" fg:x="173597" fg:w="91"/><text x="36.2080%" y="623.50"></text></g><g><title>btrfs_lock_root_node (143 samples, 0.03%)</title><rect x="35.9557%" y="629" width="0.0296%" height="15" fill="rgb(211,226,4)" fg:x="173586" fg:w="143"/><text x="36.2057%" y="639.50"></text></g><g><title>_raw_write_lock (99 samples, 0.02%)</title><rect x="36.0096%" y="613" width="0.0205%" height="15" fill="rgb(253,38,52)" fg:x="173846" fg:w="99"/><text x="36.2596%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (127 samples, 0.03%)</title><rect x="36.0044%" y="629" width="0.0263%" height="15" fill="rgb(229,126,40)" fg:x="173821" fg:w="127"/><text x="36.2544%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (68 samples, 0.01%)</title><rect x="36.0307%" y="629" width="0.0141%" height="15" fill="rgb(229,165,44)" fg:x="173948" fg:w="68"/><text x="36.2807%" y="639.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="36.0322%" y="613" width="0.0126%" height="15" fill="rgb(247,95,47)" fg:x="173955" fg:w="61"/><text x="36.2822%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (513 samples, 0.11%)</title><rect x="36.0448%" y="629" width="0.1063%" height="15" fill="rgb(216,140,30)" fg:x="174016" fg:w="513"/><text x="36.2948%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (63 samples, 0.01%)</title><rect x="36.1817%" y="613" width="0.0130%" height="15" fill="rgb(246,214,8)" fg:x="174677" fg:w="63"/><text x="36.4317%" y="623.50"></text></g><g><title>btrfs_get_64 (175 samples, 0.04%)</title><rect x="36.1948%" y="613" width="0.0362%" height="15" fill="rgb(227,224,15)" fg:x="174740" fg:w="175"/><text x="36.4448%" y="623.50"></text></g><g><title>__radix_tree_lookup (466 samples, 0.10%)</title><rect x="36.2824%" y="597" width="0.0965%" height="15" fill="rgb(233,175,4)" fg:x="175163" fg:w="466"/><text x="36.5324%" y="607.50"></text></g><g><title>check_buffer_tree_ref (58 samples, 0.01%)</title><rect x="36.3866%" y="581" width="0.0120%" height="15" fill="rgb(221,66,45)" fg:x="175666" fg:w="58"/><text x="36.6366%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (295 samples, 0.06%)</title><rect x="36.3789%" y="597" width="0.0611%" height="15" fill="rgb(221,178,18)" fg:x="175629" fg:w="295"/><text x="36.6289%" y="607.50"></text></g><g><title>mark_page_accessed (200 samples, 0.04%)</title><rect x="36.3986%" y="581" width="0.0414%" height="15" fill="rgb(213,81,29)" fg:x="175724" fg:w="200"/><text x="36.6486%" y="591.50"></text></g><g><title>find_extent_buffer (958 samples, 0.20%)</title><rect x="36.2432%" y="613" width="0.1984%" height="15" fill="rgb(220,89,49)" fg:x="174974" fg:w="958"/><text x="36.4932%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,550 samples, 0.32%)</title><rect x="36.1511%" y="629" width="0.3211%" height="15" fill="rgb(227,60,33)" fg:x="174529" fg:w="1550"/><text x="36.4011%" y="639.50"></text></g><g><title>read_extent_buffer (147 samples, 0.03%)</title><rect x="36.4417%" y="613" width="0.0304%" height="15" fill="rgb(205,113,12)" fg:x="175932" fg:w="147"/><text x="36.6917%" y="623.50"></text></g><g><title>btrfs_get_64 (50 samples, 0.01%)</title><rect x="36.4837%" y="613" width="0.0104%" height="15" fill="rgb(211,32,1)" fg:x="176135" fg:w="50"/><text x="36.7337%" y="623.50"></text></g><g><title>__radix_tree_lookup (162 samples, 0.03%)</title><rect x="36.5051%" y="597" width="0.0336%" height="15" fill="rgb(246,2,12)" fg:x="176238" fg:w="162"/><text x="36.7551%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (95 samples, 0.02%)</title><rect x="36.5386%" y="597" width="0.0197%" height="15" fill="rgb(243,37,27)" fg:x="176400" fg:w="95"/><text x="36.7886%" y="607.50"></text></g><g><title>mark_page_accessed (57 samples, 0.01%)</title><rect x="36.5465%" y="581" width="0.0118%" height="15" fill="rgb(248,211,31)" fg:x="176438" fg:w="57"/><text x="36.7965%" y="591.50"></text></g><g><title>find_extent_buffer (312 samples, 0.06%)</title><rect x="36.4941%" y="613" width="0.0646%" height="15" fill="rgb(242,146,47)" fg:x="176185" fg:w="312"/><text x="36.7441%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (50 samples, 0.01%)</title><rect x="36.5589%" y="613" width="0.0104%" height="15" fill="rgb(206,70,20)" fg:x="176498" fg:w="50"/><text x="36.8089%" y="623.50"></text></g><g><title>reada_for_balance (516 samples, 0.11%)</title><rect x="36.4721%" y="629" width="0.1069%" height="15" fill="rgb(215,10,51)" fg:x="176079" fg:w="516"/><text x="36.7221%" y="639.50"></text></g><g><title>release_extent_buffer (61 samples, 0.01%)</title><rect x="36.5790%" y="629" width="0.0126%" height="15" fill="rgb(243,178,53)" fg:x="176595" fg:w="61"/><text x="36.8290%" y="639.50"></text></g><g><title>btrfs_lookup_inode (4,012 samples, 0.83%)</title><rect x="35.7981%" y="661" width="0.8310%" height="15" fill="rgb(233,221,20)" fg:x="172825" fg:w="4012"/><text x="36.0481%" y="671.50"></text></g><g><title>btrfs_search_slot (3,992 samples, 0.83%)</title><rect x="35.8022%" y="645" width="0.8269%" height="15" fill="rgb(218,95,35)" fg:x="172845" fg:w="3992"/><text x="36.0522%" y="655.50"></text></g><g><title>unlock_up (181 samples, 0.04%)</title><rect x="36.5916%" y="629" width="0.0375%" height="15" fill="rgb(229,13,5)" fg:x="176656" fg:w="181"/><text x="36.8416%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (147 samples, 0.03%)</title><rect x="36.6291%" y="661" width="0.0304%" height="15" fill="rgb(252,164,30)" fg:x="176837" fg:w="147"/><text x="36.8791%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (108 samples, 0.02%)</title><rect x="36.6372%" y="645" width="0.0224%" height="15" fill="rgb(232,68,36)" fg:x="176876" fg:w="108"/><text x="36.8872%" y="655.50"></text></g><g><title>btrfs_release_delayed_inode (64 samples, 0.01%)</title><rect x="36.6596%" y="661" width="0.0133%" height="15" fill="rgb(219,59,54)" fg:x="176984" fg:w="64"/><text x="36.9096%" y="671.50"></text></g><g><title>btrfs_tree_unlock (59 samples, 0.01%)</title><rect x="36.6834%" y="645" width="0.0122%" height="15" fill="rgb(250,92,33)" fg:x="177099" fg:w="59"/><text x="36.9334%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (188 samples, 0.04%)</title><rect x="36.6971%" y="645" width="0.0389%" height="15" fill="rgb(229,162,54)" fg:x="177165" fg:w="188"/><text x="36.9471%" y="655.50"></text></g><g><title>_raw_spin_lock (165 samples, 0.03%)</title><rect x="36.7018%" y="629" width="0.0342%" height="15" fill="rgb(244,114,52)" fg:x="177188" fg:w="165"/><text x="36.9518%" y="639.50"></text></g><g><title>btrfs_release_path (478 samples, 0.10%)</title><rect x="36.6728%" y="661" width="0.0990%" height="15" fill="rgb(212,211,43)" fg:x="177048" fg:w="478"/><text x="36.9228%" y="671.50"></text></g><g><title>release_extent_buffer (173 samples, 0.04%)</title><rect x="36.7360%" y="645" width="0.0358%" height="15" fill="rgb(226,147,8)" fg:x="177353" fg:w="173"/><text x="36.9860%" y="655.50"></text></g><g><title>btrfs_search_slot (68 samples, 0.01%)</title><rect x="36.7718%" y="661" width="0.0141%" height="15" fill="rgb(226,23,13)" fg:x="177526" fg:w="68"/><text x="37.0218%" y="671.50"></text></g><g><title>finish_one_item (234 samples, 0.05%)</title><rect x="36.7859%" y="661" width="0.0485%" height="15" fill="rgb(240,63,4)" fg:x="177594" fg:w="234"/><text x="37.0359%" y="671.50"></text></g><g><title>read_extent_buffer (71 samples, 0.01%)</title><rect x="36.8344%" y="661" width="0.0147%" height="15" fill="rgb(221,1,32)" fg:x="177828" fg:w="71"/><text x="37.0844%" y="671.50"></text></g><g><title>__btrfs_update_delayed_inode (14,691 samples, 3.04%)</title><rect x="33.8554%" y="677" width="3.0430%" height="15" fill="rgb(242,117,10)" fg:x="163446" fg:w="14691"/><text x="34.1054%" y="687.50">__b..</text></g><g><title>write_extent_buffer (238 samples, 0.05%)</title><rect x="36.8491%" y="661" width="0.0493%" height="15" fill="rgb(249,172,44)" fg:x="177899" fg:w="238"/><text x="37.0991%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (67 samples, 0.01%)</title><rect x="36.9148%" y="677" width="0.0139%" height="15" fill="rgb(244,46,45)" fg:x="178216" fg:w="67"/><text x="37.1648%" y="687.50"></text></g><g><title>memset_erms (50 samples, 0.01%)</title><rect x="36.9442%" y="661" width="0.0104%" height="15" fill="rgb(206,43,17)" fg:x="178358" fg:w="50"/><text x="37.1942%" y="671.50"></text></g><g><title>kmem_cache_alloc (148 samples, 0.03%)</title><rect x="36.9303%" y="677" width="0.0307%" height="15" fill="rgb(239,218,39)" fg:x="178291" fg:w="148"/><text x="37.1803%" y="687.50"></text></g><g><title>kmem_cache_free (98 samples, 0.02%)</title><rect x="36.9610%" y="677" width="0.0203%" height="15" fill="rgb(208,169,54)" fg:x="178439" fg:w="98"/><text x="37.2110%" y="687.50"></text></g><g><title>mutex_lock (113 samples, 0.02%)</title><rect x="36.9813%" y="677" width="0.0234%" height="15" fill="rgb(247,25,42)" fg:x="178537" fg:w="113"/><text x="37.2313%" y="687.50"></text></g><g><title>mutex_unlock (92 samples, 0.02%)</title><rect x="37.0047%" y="677" width="0.0191%" height="15" fill="rgb(226,23,31)" fg:x="178650" fg:w="92"/><text x="37.2547%" y="687.50"></text></g><g><title>join_transaction (184 samples, 0.04%)</title><rect x="37.0515%" y="661" width="0.0381%" height="15" fill="rgb(247,16,28)" fg:x="178876" fg:w="184"/><text x="37.3015%" y="671.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="37.0751%" y="645" width="0.0145%" height="15" fill="rgb(231,147,38)" fg:x="178990" fg:w="70"/><text x="37.3251%" y="655.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (16,589 samples, 3.44%)</title><rect x="33.6899%" y="693" width="3.4362%" height="15" fill="rgb(253,81,48)" fg:x="162647" fg:w="16589"/><text x="33.9399%" y="703.50">btr..</text></g><g><title>start_transaction (494 samples, 0.10%)</title><rect x="37.0237%" y="677" width="0.1023%" height="15" fill="rgb(249,222,43)" fg:x="178742" fg:w="494"/><text x="37.2737%" y="687.50"></text></g><g><title>kmem_cache_alloc (176 samples, 0.04%)</title><rect x="37.0896%" y="661" width="0.0365%" height="15" fill="rgb(221,3,27)" fg:x="179060" fg:w="176"/><text x="37.3396%" y="671.50"></text></g><g><title>btrfs_get_32 (81 samples, 0.02%)</title><rect x="37.1523%" y="661" width="0.0168%" height="15" fill="rgb(228,180,5)" fg:x="179363" fg:w="81"/><text x="37.4023%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (176 samples, 0.04%)</title><rect x="37.1691%" y="661" width="0.0365%" height="15" fill="rgb(227,131,42)" fg:x="179444" fg:w="176"/><text x="37.4191%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (115 samples, 0.02%)</title><rect x="37.1818%" y="645" width="0.0238%" height="15" fill="rgb(212,3,39)" fg:x="179505" fg:w="115"/><text x="37.4318%" y="655.50"></text></g><g><title>leaf_space_used (127 samples, 0.03%)</title><rect x="37.2062%" y="661" width="0.0263%" height="15" fill="rgb(226,45,5)" fg:x="179623" fg:w="127"/><text x="37.4562%" y="671.50"></text></g><g><title>btrfs_get_32 (85 samples, 0.02%)</title><rect x="37.2149%" y="645" width="0.0176%" height="15" fill="rgb(215,167,45)" fg:x="179665" fg:w="85"/><text x="37.4649%" y="655.50"></text></g><g><title>btrfs_del_items (490 samples, 0.10%)</title><rect x="37.1316%" y="677" width="0.1015%" height="15" fill="rgb(250,218,53)" fg:x="179263" fg:w="490"/><text x="37.3816%" y="687.50"></text></g><g><title>btrfs_tree_unlock (129 samples, 0.03%)</title><rect x="37.2445%" y="645" width="0.0267%" height="15" fill="rgb(207,140,0)" fg:x="179808" fg:w="129"/><text x="37.4945%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (186 samples, 0.04%)</title><rect x="37.2721%" y="645" width="0.0385%" height="15" fill="rgb(238,133,51)" fg:x="179941" fg:w="186"/><text x="37.5221%" y="655.50"></text></g><g><title>_raw_spin_lock (157 samples, 0.03%)</title><rect x="37.2781%" y="629" width="0.0325%" height="15" fill="rgb(218,203,53)" fg:x="179970" fg:w="157"/><text x="37.5281%" y="639.50"></text></g><g><title>btrfs_free_path (538 samples, 0.11%)</title><rect x="37.2331%" y="677" width="0.1114%" height="15" fill="rgb(226,184,25)" fg:x="179753" fg:w="538"/><text x="37.4831%" y="687.50"></text></g><g><title>btrfs_release_path (532 samples, 0.11%)</title><rect x="37.2344%" y="661" width="0.1102%" height="15" fill="rgb(231,121,21)" fg:x="179759" fg:w="532"/><text x="37.4844%" y="671.50"></text></g><g><title>release_extent_buffer (164 samples, 0.03%)</title><rect x="37.3106%" y="645" width="0.0340%" height="15" fill="rgb(251,14,34)" fg:x="180127" fg:w="164"/><text x="37.5606%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (77 samples, 0.02%)</title><rect x="37.4111%" y="645" width="0.0159%" height="15" fill="rgb(249,193,11)" fg:x="180612" fg:w="77"/><text x="37.6611%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (155 samples, 0.03%)</title><rect x="37.4088%" y="661" width="0.0321%" height="15" fill="rgb(220,172,37)" fg:x="180601" fg:w="155"/><text x="37.6588%" y="671.50"></text></g><g><title>btrfs_root_node (67 samples, 0.01%)</title><rect x="37.4270%" y="645" width="0.0139%" height="15" fill="rgb(231,229,43)" fg:x="180689" fg:w="67"/><text x="37.6770%" y="655.50"></text></g><g><title>btrfs_read_node_slot (66 samples, 0.01%)</title><rect x="37.4591%" y="645" width="0.0137%" height="15" fill="rgb(250,161,5)" fg:x="180844" fg:w="66"/><text x="37.7091%" y="655.50"></text></g><g><title>balance_level (195 samples, 0.04%)</title><rect x="37.4421%" y="661" width="0.0404%" height="15" fill="rgb(218,225,18)" fg:x="180762" fg:w="195"/><text x="37.6921%" y="671.50"></text></g><g><title>_raw_write_lock (65 samples, 0.01%)</title><rect x="37.4993%" y="629" width="0.0135%" height="15" fill="rgb(245,45,42)" fg:x="181038" fg:w="65"/><text x="37.7493%" y="639.50"></text></g><g><title>__btrfs_tree_lock (125 samples, 0.03%)</title><rect x="37.4885%" y="645" width="0.0259%" height="15" fill="rgb(211,115,1)" fg:x="180986" fg:w="125"/><text x="37.7385%" y="655.50"></text></g><g><title>btrfs_lock_root_node (194 samples, 0.04%)</title><rect x="37.4871%" y="661" width="0.0402%" height="15" fill="rgb(248,133,52)" fg:x="180979" fg:w="194"/><text x="37.7371%" y="671.50"></text></g><g><title>btrfs_root_node (62 samples, 0.01%)</title><rect x="37.5144%" y="645" width="0.0128%" height="15" fill="rgb(238,100,21)" fg:x="181111" fg:w="62"/><text x="37.7644%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (150 samples, 0.03%)</title><rect x="37.5273%" y="661" width="0.0311%" height="15" fill="rgb(247,144,11)" fg:x="181173" fg:w="150"/><text x="37.7773%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock (62 samples, 0.01%)</title><rect x="37.5583%" y="661" width="0.0128%" height="15" fill="rgb(206,164,16)" fg:x="181323" fg:w="62"/><text x="37.8083%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (119 samples, 0.02%)</title><rect x="37.5712%" y="661" width="0.0246%" height="15" fill="rgb(222,34,3)" fg:x="181385" fg:w="119"/><text x="37.8212%" y="671.50"></text></g><g><title>_raw_write_lock (91 samples, 0.02%)</title><rect x="37.5770%" y="645" width="0.0188%" height="15" fill="rgb(248,82,4)" fg:x="181413" fg:w="91"/><text x="37.8270%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (55 samples, 0.01%)</title><rect x="37.5958%" y="661" width="0.0114%" height="15" fill="rgb(228,81,46)" fg:x="181504" fg:w="55"/><text x="37.8458%" y="671.50"></text></g><g><title>_raw_spin_lock (50 samples, 0.01%)</title><rect x="37.5969%" y="645" width="0.0104%" height="15" fill="rgb(227,67,47)" fg:x="181509" fg:w="50"/><text x="37.8469%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (777 samples, 0.16%)</title><rect x="37.6072%" y="661" width="0.1609%" height="15" fill="rgb(215,93,53)" fg:x="181559" fg:w="777"/><text x="37.8572%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (61 samples, 0.01%)</title><rect x="37.7988%" y="645" width="0.0126%" height="15" fill="rgb(248,194,39)" fg:x="182484" fg:w="61"/><text x="38.0488%" y="655.50"></text></g><g><title>btrfs_get_64 (160 samples, 0.03%)</title><rect x="37.8115%" y="645" width="0.0331%" height="15" fill="rgb(215,5,19)" fg:x="182545" fg:w="160"/><text x="38.0615%" y="655.50"></text></g><g><title>__radix_tree_lookup (460 samples, 0.10%)</title><rect x="37.8823%" y="629" width="0.0953%" height="15" fill="rgb(226,215,51)" fg:x="182887" fg:w="460"/><text x="38.1323%" y="639.50"></text></g><g><title>check_buffer_tree_ref (59 samples, 0.01%)</title><rect x="37.9881%" y="613" width="0.0122%" height="15" fill="rgb(225,56,26)" fg:x="183398" fg:w="59"/><text x="38.2381%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (255 samples, 0.05%)</title><rect x="37.9776%" y="629" width="0.0528%" height="15" fill="rgb(222,75,29)" fg:x="183347" fg:w="255"/><text x="38.2276%" y="639.50"></text></g><g><title>mark_page_accessed (145 samples, 0.03%)</title><rect x="38.0004%" y="613" width="0.0300%" height="15" fill="rgb(236,139,6)" fg:x="183457" fg:w="145"/><text x="38.2504%" y="623.50"></text></g><g><title>find_extent_buffer (854 samples, 0.18%)</title><rect x="37.8560%" y="645" width="0.1769%" height="15" fill="rgb(223,137,36)" fg:x="182760" fg:w="854"/><text x="38.1060%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,446 samples, 0.30%)</title><rect x="37.7682%" y="661" width="0.2995%" height="15" fill="rgb(226,99,2)" fg:x="182336" fg:w="1446"/><text x="38.0182%" y="671.50"></text></g><g><title>read_extent_buffer (168 samples, 0.03%)</title><rect x="38.0329%" y="645" width="0.0348%" height="15" fill="rgb(206,133,23)" fg:x="183614" fg:w="168"/><text x="38.2829%" y="655.50"></text></g><g><title>btrfs_get_64 (55 samples, 0.01%)</title><rect x="38.0782%" y="645" width="0.0114%" height="15" fill="rgb(243,173,15)" fg:x="183833" fg:w="55"/><text x="38.3282%" y="655.50"></text></g><g><title>__radix_tree_lookup (126 samples, 0.03%)</title><rect x="38.0963%" y="629" width="0.0261%" height="15" fill="rgb(228,69,28)" fg:x="183920" fg:w="126"/><text x="38.3463%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (96 samples, 0.02%)</title><rect x="38.1224%" y="629" width="0.0199%" height="15" fill="rgb(212,51,22)" fg:x="184046" fg:w="96"/><text x="38.3724%" y="639.50"></text></g><g><title>mark_page_accessed (53 samples, 0.01%)</title><rect x="38.1313%" y="613" width="0.0110%" height="15" fill="rgb(227,113,0)" fg:x="184089" fg:w="53"/><text x="38.3813%" y="623.50"></text></g><g><title>find_extent_buffer (258 samples, 0.05%)</title><rect x="38.0896%" y="645" width="0.0534%" height="15" fill="rgb(252,84,27)" fg:x="183888" fg:w="258"/><text x="38.3396%" y="655.50"></text></g><g><title>reada_for_balance (438 samples, 0.09%)</title><rect x="38.0677%" y="661" width="0.0907%" height="15" fill="rgb(223,145,39)" fg:x="183782" fg:w="438"/><text x="38.3177%" y="671.50"></text></g><g><title>release_extent_buffer (53 samples, 0.01%)</title><rect x="38.1584%" y="661" width="0.0110%" height="15" fill="rgb(239,219,30)" fg:x="184220" fg:w="53"/><text x="38.4084%" y="671.50"></text></g><g><title>btrfs_search_slot (4,196 samples, 0.87%)</title><rect x="37.3446%" y="677" width="0.8691%" height="15" fill="rgb(224,196,39)" fg:x="180291" fg:w="4196"/><text x="37.5946%" y="687.50"></text></g><g><title>unlock_up (214 samples, 0.04%)</title><rect x="38.1694%" y="661" width="0.0443%" height="15" fill="rgb(205,35,43)" fg:x="184273" fg:w="214"/><text x="38.4194%" y="671.50"></text></g><g><title>memset_erms (59 samples, 0.01%)</title><rect x="38.2282%" y="661" width="0.0122%" height="15" fill="rgb(228,201,21)" fg:x="184557" fg:w="59"/><text x="38.4782%" y="671.50"></text></g><g><title>kmem_cache_alloc (155 samples, 0.03%)</title><rect x="38.2137%" y="677" width="0.0321%" height="15" fill="rgb(237,118,16)" fg:x="184487" fg:w="155"/><text x="38.4637%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (5,516 samples, 1.14%)</title><rect x="37.1260%" y="693" width="1.1426%" height="15" fill="rgb(241,17,19)" fg:x="179236" fg:w="5516"/><text x="37.3760%" y="703.50"></text></g><g><title>kmem_cache_free (110 samples, 0.02%)</title><rect x="38.2458%" y="677" width="0.0228%" height="15" fill="rgb(214,10,25)" fg:x="184642" fg:w="110"/><text x="38.4958%" y="687.50"></text></g><g><title>_raw_spin_lock (121 samples, 0.03%)</title><rect x="38.2827%" y="661" width="0.0251%" height="15" fill="rgb(238,37,29)" fg:x="184820" fg:w="121"/><text x="38.5327%" y="671.50"></text></g><g><title>btrfs_free_block_rsv (215 samples, 0.04%)</title><rect x="38.2694%" y="693" width="0.0445%" height="15" fill="rgb(253,83,25)" fg:x="184756" fg:w="215"/><text x="38.5194%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (209 samples, 0.04%)</title><rect x="38.2707%" y="677" width="0.0433%" height="15" fill="rgb(234,192,12)" fg:x="184762" fg:w="209"/><text x="38.5207%" y="687.50"></text></g><g><title>mutex_lock (72 samples, 0.01%)</title><rect x="38.3987%" y="661" width="0.0149%" height="15" fill="rgb(241,216,45)" fg:x="185380" fg:w="72"/><text x="38.6487%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (242 samples, 0.05%)</title><rect x="38.3753%" y="677" width="0.0501%" height="15" fill="rgb(242,22,33)" fg:x="185267" fg:w="242"/><text x="38.6253%" y="687.50"></text></g><g><title>mutex_unlock (57 samples, 0.01%)</title><rect x="38.4136%" y="661" width="0.0118%" height="15" fill="rgb(231,105,49)" fg:x="185452" fg:w="57"/><text x="38.6636%" y="671.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="38.4550%" y="661" width="0.0122%" height="15" fill="rgb(218,204,15)" fg:x="185652" fg:w="59"/><text x="38.7050%" y="671.50"></text></g><g><title>memset_erms (53 samples, 0.01%)</title><rect x="38.4865%" y="629" width="0.0110%" height="15" fill="rgb(235,138,41)" fg:x="185804" fg:w="53"/><text x="38.7365%" y="639.50"></text></g><g><title>alloc_extent_state (191 samples, 0.04%)</title><rect x="38.4672%" y="661" width="0.0396%" height="15" fill="rgb(246,0,9)" fg:x="185711" fg:w="191"/><text x="38.7172%" y="671.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.04%)</title><rect x="38.4718%" y="645" width="0.0350%" height="15" fill="rgb(210,74,4)" fg:x="185733" fg:w="169"/><text x="38.7218%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (68 samples, 0.01%)</title><rect x="38.5341%" y="629" width="0.0141%" height="15" fill="rgb(250,60,41)" fg:x="186034" fg:w="68"/><text x="38.7841%" y="639.50"></text></g><g><title>__wake_up_common_lock (178 samples, 0.04%)</title><rect x="38.5174%" y="645" width="0.0369%" height="15" fill="rgb(220,115,12)" fg:x="185953" fg:w="178"/><text x="38.7674%" y="655.50"></text></g><g><title>free_extent_state (56 samples, 0.01%)</title><rect x="38.5592%" y="645" width="0.0116%" height="15" fill="rgb(237,100,13)" fg:x="186155" fg:w="56"/><text x="38.8092%" y="655.50"></text></g><g><title>kmem_cache_free (126 samples, 0.03%)</title><rect x="38.5708%" y="645" width="0.0261%" height="15" fill="rgb(213,55,26)" fg:x="186211" fg:w="126"/><text x="38.8208%" y="655.50"></text></g><g><title>clear_state_bit (454 samples, 0.09%)</title><rect x="38.5068%" y="661" width="0.0940%" height="15" fill="rgb(216,17,4)" fg:x="185902" fg:w="454"/><text x="38.7568%" y="671.50"></text></g><g><title>free_extent_state (53 samples, 0.01%)</title><rect x="38.6008%" y="661" width="0.0110%" height="15" fill="rgb(220,153,47)" fg:x="186356" fg:w="53"/><text x="38.8508%" y="671.50"></text></g><g><title>__clear_extent_bit (1,032 samples, 0.21%)</title><rect x="38.4254%" y="677" width="0.2138%" height="15" fill="rgb(215,131,9)" fg:x="185509" fg:w="1032"/><text x="38.6754%" y="687.50"></text></g><g><title>kmem_cache_free (132 samples, 0.03%)</title><rect x="38.6118%" y="661" width="0.0273%" height="15" fill="rgb(233,46,42)" fg:x="186409" fg:w="132"/><text x="38.8618%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (213 samples, 0.04%)</title><rect x="38.8119%" y="597" width="0.0441%" height="15" fill="rgb(226,86,7)" fg:x="187375" fg:w="213"/><text x="39.0619%" y="607.50"></text></g><g><title>steal_from_bitmap.part.0 (256 samples, 0.05%)</title><rect x="38.8069%" y="613" width="0.0530%" height="15" fill="rgb(239,226,21)" fg:x="187351" fg:w="256"/><text x="39.0569%" y="623.50"></text></g><g><title>__btrfs_add_free_space (314 samples, 0.07%)</title><rect x="38.8007%" y="629" width="0.0650%" height="15" fill="rgb(244,137,22)" fg:x="187321" fg:w="314"/><text x="39.0507%" y="639.50"></text></g><g><title>btrfs_add_delayed_tree_ref (80 samples, 0.02%)</title><rect x="38.8685%" y="629" width="0.0166%" height="15" fill="rgb(211,139,35)" fg:x="187648" fg:w="80"/><text x="39.1185%" y="639.50"></text></g><g><title>btrfs_free_tree_block (466 samples, 0.10%)</title><rect x="38.7995%" y="645" width="0.0965%" height="15" fill="rgb(214,62,50)" fg:x="187315" fg:w="466"/><text x="39.0495%" y="655.50"></text></g><g><title>check_ref_cleanup (49 samples, 0.01%)</title><rect x="38.8859%" y="629" width="0.0101%" height="15" fill="rgb(212,113,44)" fg:x="187732" fg:w="49"/><text x="39.1359%" y="639.50"></text></g><g><title>btrfs_del_leaf (521 samples, 0.11%)</title><rect x="38.7987%" y="661" width="0.1079%" height="15" fill="rgb(226,150,43)" fg:x="187311" fg:w="521"/><text x="39.0487%" y="671.50"></text></g><g><title>btrfs_get_32 (161 samples, 0.03%)</title><rect x="38.9066%" y="661" width="0.0333%" height="15" fill="rgb(250,71,37)" fg:x="187832" fg:w="161"/><text x="39.1566%" y="671.50"></text></g><g><title>btrfs_get_token_32 (1,992 samples, 0.41%)</title><rect x="38.9399%" y="661" width="0.4126%" height="15" fill="rgb(219,76,19)" fg:x="187993" fg:w="1992"/><text x="39.1899%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (342 samples, 0.07%)</title><rect x="39.2817%" y="645" width="0.0708%" height="15" fill="rgb(250,39,11)" fg:x="189643" fg:w="342"/><text x="39.5317%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (134 samples, 0.03%)</title><rect x="39.3525%" y="661" width="0.0278%" height="15" fill="rgb(230,64,31)" fg:x="189985" fg:w="134"/><text x="39.6025%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (106 samples, 0.02%)</title><rect x="39.3583%" y="645" width="0.0220%" height="15" fill="rgb(208,222,23)" fg:x="190013" fg:w="106"/><text x="39.6083%" y="655.50"></text></g><g><title>btrfs_set_token_32 (1,905 samples, 0.39%)</title><rect x="39.3836%" y="661" width="0.3946%" height="15" fill="rgb(227,125,18)" fg:x="190135" fg:w="1905"/><text x="39.6336%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (433 samples, 0.09%)</title><rect x="39.6885%" y="645" width="0.0897%" height="15" fill="rgb(234,210,9)" fg:x="191607" fg:w="433"/><text x="39.9385%" y="655.50"></text></g><g><title>clear_extent_buffer_dirty (51 samples, 0.01%)</title><rect x="39.7782%" y="661" width="0.0106%" height="15" fill="rgb(217,127,24)" fg:x="192040" fg:w="51"/><text x="40.0282%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (136 samples, 0.03%)</title><rect x="39.7933%" y="645" width="0.0282%" height="15" fill="rgb(239,141,48)" fg:x="192113" fg:w="136"/><text x="40.0433%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (85 samples, 0.02%)</title><rect x="39.8039%" y="629" width="0.0176%" height="15" fill="rgb(227,109,8)" fg:x="192164" fg:w="85"/><text x="40.0539%" y="639.50"></text></g><g><title>tree_mod_log_insert_key (53 samples, 0.01%)</title><rect x="39.8215%" y="645" width="0.0110%" height="15" fill="rgb(235,184,23)" fg:x="192249" fg:w="53"/><text x="40.0715%" y="655.50"></text></g><g><title>fixup_low_keys (307 samples, 0.06%)</title><rect x="39.7888%" y="661" width="0.0636%" height="15" fill="rgb(227,226,48)" fg:x="192091" fg:w="307"/><text x="40.0388%" y="671.50"></text></g><g><title>write_extent_buffer (96 samples, 0.02%)</title><rect x="39.8325%" y="645" width="0.0199%" height="15" fill="rgb(206,150,11)" fg:x="192302" fg:w="96"/><text x="40.0825%" y="655.50"></text></g><g><title>leaf_space_used (102 samples, 0.02%)</title><rect x="39.8557%" y="661" width="0.0211%" height="15" fill="rgb(254,2,33)" fg:x="192414" fg:w="102"/><text x="40.1057%" y="671.50"></text></g><g><title>btrfs_get_32 (69 samples, 0.01%)</title><rect x="39.8625%" y="645" width="0.0143%" height="15" fill="rgb(243,160,20)" fg:x="192447" fg:w="69"/><text x="40.1125%" y="655.50"></text></g><g><title>memcpy_extent_buffer (285 samples, 0.06%)</title><rect x="39.8768%" y="661" width="0.0590%" height="15" fill="rgb(218,208,30)" fg:x="192516" fg:w="285"/><text x="40.1268%" y="671.50"></text></g><g><title>memmove (234 samples, 0.05%)</title><rect x="39.8874%" y="645" width="0.0485%" height="15" fill="rgb(224,120,49)" fg:x="192567" fg:w="234"/><text x="40.1374%" y="655.50"></text></g><g><title>copy_pages (293 samples, 0.06%)</title><rect x="39.9594%" y="645" width="0.0607%" height="15" fill="rgb(246,12,2)" fg:x="192915" fg:w="293"/><text x="40.2094%" y="655.50"></text></g><g><title>memmove_extent_buffer (2,345 samples, 0.49%)</title><rect x="39.9358%" y="661" width="0.4857%" height="15" fill="rgb(236,117,3)" fg:x="192801" fg:w="2345"/><text x="40.1858%" y="671.50"></text></g><g><title>memmove (1,938 samples, 0.40%)</title><rect x="40.0201%" y="645" width="0.4014%" height="15" fill="rgb(216,128,52)" fg:x="193208" fg:w="1938"/><text x="40.2701%" y="655.50"></text></g><g><title>clear_extent_buffer_dirty (60 samples, 0.01%)</title><rect x="40.4452%" y="629" width="0.0124%" height="15" fill="rgb(246,145,19)" fg:x="195260" fg:w="60"/><text x="40.6952%" y="639.50"></text></g><g><title>__push_leaf_left (204 samples, 0.04%)</title><rect x="40.4236%" y="645" width="0.0423%" height="15" fill="rgb(222,11,46)" fg:x="195156" fg:w="204"/><text x="40.6736%" y="655.50"></text></g><g><title>push_leaf_left (278 samples, 0.06%)</title><rect x="40.4216%" y="661" width="0.0576%" height="15" fill="rgb(245,82,36)" fg:x="195146" fg:w="278"/><text x="40.6716%" y="671.50"></text></g><g><title>__push_leaf_right (224 samples, 0.05%)</title><rect x="40.4831%" y="645" width="0.0464%" height="15" fill="rgb(250,73,51)" fg:x="195443" fg:w="224"/><text x="40.7331%" y="655.50"></text></g><g><title>alloc_extent_buffer (64 samples, 0.01%)</title><rect x="40.5518%" y="613" width="0.0133%" height="15" fill="rgb(221,189,23)" fg:x="195775" fg:w="64"/><text x="40.8018%" y="623.50"></text></g><g><title>find_extent_buffer (58 samples, 0.01%)</title><rect x="40.5531%" y="597" width="0.0120%" height="15" fill="rgb(210,33,7)" fg:x="195781" fg:w="58"/><text x="40.8031%" y="607.50"></text></g><g><title>btrfs_read_node_slot (120 samples, 0.02%)</title><rect x="40.5452%" y="645" width="0.0249%" height="15" fill="rgb(210,107,22)" fg:x="195743" fg:w="120"/><text x="40.7952%" y="655.50"></text></g><g><title>read_tree_block (91 samples, 0.02%)</title><rect x="40.5512%" y="629" width="0.0188%" height="15" fill="rgb(222,116,37)" fg:x="195772" fg:w="91"/><text x="40.8012%" y="639.50"></text></g><g><title>push_leaf_right (479 samples, 0.10%)</title><rect x="40.4791%" y="661" width="0.0992%" height="15" fill="rgb(254,17,48)" fg:x="195424" fg:w="479"/><text x="40.7291%" y="671.50"></text></g><g><title>read_extent_buffer (74 samples, 0.02%)</title><rect x="40.5784%" y="661" width="0.0153%" height="15" fill="rgb(224,36,32)" fg:x="195903" fg:w="74"/><text x="40.8284%" y="671.50"></text></g><g><title>btrfs_del_items (9,458 samples, 1.96%)</title><rect x="38.6400%" y="677" width="1.9591%" height="15" fill="rgb(232,90,46)" fg:x="186545" fg:w="9458"/><text x="38.8900%" y="687.50">b..</text></g><g><title>_raw_write_lock (59 samples, 0.01%)</title><rect x="40.6107%" y="661" width="0.0122%" height="15" fill="rgb(241,66,40)" fg:x="196059" fg:w="59"/><text x="40.8607%" y="671.50"></text></g><g><title>memset_erms (136 samples, 0.03%)</title><rect x="40.6784%" y="629" width="0.0282%" height="15" fill="rgb(249,184,29)" fg:x="196386" fg:w="136"/><text x="40.9284%" y="639.50"></text></g><g><title>alloc_extent_map (467 samples, 0.10%)</title><rect x="40.6229%" y="661" width="0.0967%" height="15" fill="rgb(231,181,1)" fg:x="196118" fg:w="467"/><text x="40.8729%" y="671.50"></text></g><g><title>kmem_cache_alloc (421 samples, 0.09%)</title><rect x="40.6324%" y="645" width="0.0872%" height="15" fill="rgb(224,94,2)" fg:x="196164" fg:w="421"/><text x="40.8824%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (63 samples, 0.01%)</title><rect x="40.7066%" y="629" width="0.0130%" height="15" fill="rgb(229,170,15)" fg:x="196522" fg:w="63"/><text x="40.9566%" y="639.50"></text></g><g><title>free_extent_map (129 samples, 0.03%)</title><rect x="40.7196%" y="661" width="0.0267%" height="15" fill="rgb(240,127,35)" fg:x="196585" fg:w="129"/><text x="40.9696%" y="671.50"></text></g><g><title>kmem_cache_free (242 samples, 0.05%)</title><rect x="40.7463%" y="661" width="0.0501%" height="15" fill="rgb(248,196,34)" fg:x="196714" fg:w="242"/><text x="40.9963%" y="671.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (60 samples, 0.01%)</title><rect x="40.7840%" y="645" width="0.0124%" height="15" fill="rgb(236,137,7)" fg:x="196896" fg:w="60"/><text x="41.0340%" y="655.50"></text></g><g><title>btrfs_drop_extent_cache (955 samples, 0.20%)</title><rect x="40.5991%" y="677" width="0.1978%" height="15" fill="rgb(235,127,16)" fg:x="196003" fg:w="955"/><text x="40.8491%" y="687.50"></text></g><g><title>btrfs_tree_unlock (121 samples, 0.03%)</title><rect x="40.8149%" y="645" width="0.0251%" height="15" fill="rgb(250,192,54)" fg:x="197045" fg:w="121"/><text x="41.0649%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (155 samples, 0.03%)</title><rect x="40.8420%" y="645" width="0.0321%" height="15" fill="rgb(218,98,20)" fg:x="197176" fg:w="155"/><text x="41.0920%" y="655.50"></text></g><g><title>_raw_spin_lock (121 samples, 0.03%)</title><rect x="40.8491%" y="629" width="0.0251%" height="15" fill="rgb(230,176,47)" fg:x="197210" fg:w="121"/><text x="41.0991%" y="639.50"></text></g><g><title>btrfs_free_path (565 samples, 0.12%)</title><rect x="40.7969%" y="677" width="0.1170%" height="15" fill="rgb(244,2,33)" fg:x="196958" fg:w="565"/><text x="41.0469%" y="687.50"></text></g><g><title>btrfs_release_path (557 samples, 0.12%)</title><rect x="40.7985%" y="661" width="0.1154%" height="15" fill="rgb(231,100,17)" fg:x="196966" fg:w="557"/><text x="41.0485%" y="671.50"></text></g><g><title>release_extent_buffer (192 samples, 0.04%)</title><rect x="40.8742%" y="645" width="0.0398%" height="15" fill="rgb(245,23,12)" fg:x="197331" fg:w="192"/><text x="41.1242%" y="655.50"></text></g><g><title>_raw_spin_lock (80 samples, 0.02%)</title><rect x="40.9589%" y="629" width="0.0166%" height="15" fill="rgb(249,55,22)" fg:x="197740" fg:w="80"/><text x="41.2089%" y="639.50"></text></g><g><title>memset_erms (60 samples, 0.01%)</title><rect x="41.0069%" y="597" width="0.0124%" height="15" fill="rgb(207,134,9)" fg:x="197972" fg:w="60"/><text x="41.2569%" y="607.50"></text></g><g><title>alloc_extent_state (242 samples, 0.05%)</title><rect x="40.9754%" y="629" width="0.0501%" height="15" fill="rgb(218,134,0)" fg:x="197820" fg:w="242"/><text x="41.2254%" y="639.50"></text></g><g><title>kmem_cache_alloc (213 samples, 0.04%)</title><rect x="40.9814%" y="613" width="0.0441%" height="15" fill="rgb(213,212,33)" fg:x="197849" fg:w="213"/><text x="41.2314%" y="623.50"></text></g><g><title>free_extent_state (60 samples, 0.01%)</title><rect x="41.0258%" y="629" width="0.0124%" height="15" fill="rgb(252,106,18)" fg:x="198063" fg:w="60"/><text x="41.2758%" y="639.50"></text></g><g><title>__clear_extent_bit (564 samples, 0.12%)</title><rect x="40.9493%" y="645" width="0.1168%" height="15" fill="rgb(208,126,42)" fg:x="197694" fg:w="564"/><text x="41.1993%" y="655.50"></text></g><g><title>kmem_cache_free (135 samples, 0.03%)</title><rect x="41.0382%" y="629" width="0.0280%" height="15" fill="rgb(246,175,29)" fg:x="198123" fg:w="135"/><text x="41.2882%" y="639.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (616 samples, 0.13%)</title><rect x="40.9388%" y="677" width="0.1276%" height="15" fill="rgb(215,13,50)" fg:x="197643" fg:w="616"/><text x="41.1888%" y="687.50"></text></g><g><title>clear_extent_bit (573 samples, 0.12%)</title><rect x="40.9477%" y="661" width="0.1187%" height="15" fill="rgb(216,172,15)" fg:x="197686" fg:w="573"/><text x="41.1977%" y="671.50"></text></g><g><title>_raw_spin_lock (49 samples, 0.01%)</title><rect x="41.0738%" y="661" width="0.0101%" height="15" fill="rgb(212,103,13)" fg:x="198295" fg:w="49"/><text x="41.3238%" y="671.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="41.0896%" y="645" width="0.0110%" height="15" fill="rgb(231,171,36)" fg:x="198371" fg:w="53"/><text x="41.3396%" y="655.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (171 samples, 0.04%)</title><rect x="41.0664%" y="677" width="0.0354%" height="15" fill="rgb(250,123,20)" fg:x="198259" fg:w="171"/><text x="41.3164%" y="687.50"></text></g><g><title>find_contiguous_extent_bit (86 samples, 0.02%)</title><rect x="41.0840%" y="661" width="0.0178%" height="15" fill="rgb(212,53,50)" fg:x="198344" fg:w="86"/><text x="41.3340%" y="671.50"></text></g><g><title>__btrfs_kill_delayed_node (85 samples, 0.02%)</title><rect x="41.1088%" y="661" width="0.0176%" height="15" fill="rgb(243,54,12)" fg:x="198464" fg:w="85"/><text x="41.3588%" y="671.50"></text></g><g><title>mutex_lock (65 samples, 0.01%)</title><rect x="41.1130%" y="645" width="0.0135%" height="15" fill="rgb(234,101,34)" fg:x="198484" fg:w="65"/><text x="41.3630%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (88 samples, 0.02%)</title><rect x="41.1266%" y="661" width="0.0182%" height="15" fill="rgb(254,67,22)" fg:x="198550" fg:w="88"/><text x="41.3766%" y="671.50"></text></g><g><title>btrfs_kill_delayed_inode_items (257 samples, 0.05%)</title><rect x="41.1018%" y="677" width="0.0532%" height="15" fill="rgb(250,35,47)" fg:x="198430" fg:w="257"/><text x="41.3518%" y="687.50"></text></g><g><title>mutex_unlock (49 samples, 0.01%)</title><rect x="41.1449%" y="661" width="0.0101%" height="15" fill="rgb(226,126,38)" fg:x="198638" fg:w="49"/><text x="41.3949%" y="671.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="41.2310%" y="629" width="0.0110%" height="15" fill="rgb(216,138,53)" fg:x="199054" fg:w="53"/><text x="41.4810%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (87 samples, 0.02%)</title><rect x="41.2259%" y="645" width="0.0180%" height="15" fill="rgb(246,199,43)" fg:x="199029" fg:w="87"/><text x="41.4759%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (187 samples, 0.04%)</title><rect x="41.2236%" y="661" width="0.0387%" height="15" fill="rgb(232,125,11)" fg:x="199018" fg:w="187"/><text x="41.4736%" y="671.50"></text></g><g><title>btrfs_root_node (89 samples, 0.02%)</title><rect x="41.2439%" y="645" width="0.0184%" height="15" fill="rgb(218,219,45)" fg:x="199116" fg:w="89"/><text x="41.4939%" y="655.50"></text></g><g><title>btrfs_read_node_slot (70 samples, 0.01%)</title><rect x="41.2845%" y="645" width="0.0145%" height="15" fill="rgb(216,102,54)" fg:x="199312" fg:w="70"/><text x="41.5345%" y="655.50"></text></g><g><title>read_tree_block (54 samples, 0.01%)</title><rect x="41.2878%" y="629" width="0.0112%" height="15" fill="rgb(250,228,7)" fg:x="199328" fg:w="54"/><text x="41.5378%" y="639.50"></text></g><g><title>balance_level (221 samples, 0.05%)</title><rect x="41.2632%" y="661" width="0.0458%" height="15" fill="rgb(226,125,25)" fg:x="199209" fg:w="221"/><text x="41.5132%" y="671.50"></text></g><g><title>_raw_write_lock (49 samples, 0.01%)</title><rect x="41.3284%" y="629" width="0.0101%" height="15" fill="rgb(224,165,27)" fg:x="199524" fg:w="49"/><text x="41.5784%" y="639.50"></text></g><g><title>__btrfs_tree_lock (99 samples, 0.02%)</title><rect x="41.3197%" y="645" width="0.0205%" height="15" fill="rgb(233,86,3)" fg:x="199482" fg:w="99"/><text x="41.5697%" y="655.50"></text></g><g><title>btrfs_lock_root_node (171 samples, 0.04%)</title><rect x="41.3182%" y="661" width="0.0354%" height="15" fill="rgb(228,116,20)" fg:x="199475" fg:w="171"/><text x="41.5682%" y="671.50"></text></g><g><title>btrfs_root_node (65 samples, 0.01%)</title><rect x="41.3402%" y="645" width="0.0135%" height="15" fill="rgb(209,192,17)" fg:x="199581" fg:w="65"/><text x="41.5902%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (144 samples, 0.03%)</title><rect x="41.3537%" y="661" width="0.0298%" height="15" fill="rgb(224,88,34)" fg:x="199646" fg:w="144"/><text x="41.6037%" y="671.50"></text></g><g><title>_raw_write_lock (82 samples, 0.02%)</title><rect x="41.4005%" y="645" width="0.0170%" height="15" fill="rgb(233,38,6)" fg:x="199872" fg:w="82"/><text x="41.6505%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (119 samples, 0.02%)</title><rect x="41.3932%" y="661" width="0.0246%" height="15" fill="rgb(212,59,30)" fg:x="199837" fg:w="119"/><text x="41.6432%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (60 samples, 0.01%)</title><rect x="41.4179%" y="661" width="0.0124%" height="15" fill="rgb(213,80,3)" fg:x="199956" fg:w="60"/><text x="41.6679%" y="671.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="41.4195%" y="645" width="0.0108%" height="15" fill="rgb(251,178,7)" fg:x="199964" fg:w="52"/><text x="41.6695%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (804 samples, 0.17%)</title><rect x="41.4303%" y="661" width="0.1665%" height="15" fill="rgb(213,154,26)" fg:x="200016" fg:w="804"/><text x="41.6803%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (59 samples, 0.01%)</title><rect x="41.6227%" y="645" width="0.0122%" height="15" fill="rgb(238,165,49)" fg:x="200945" fg:w="59"/><text x="41.8727%" y="655.50"></text></g><g><title>btrfs_get_64 (124 samples, 0.03%)</title><rect x="41.6350%" y="645" width="0.0257%" height="15" fill="rgb(248,91,46)" fg:x="201004" fg:w="124"/><text x="41.8850%" y="655.50"></text></g><g><title>__radix_tree_lookup (453 samples, 0.09%)</title><rect x="41.6983%" y="629" width="0.0938%" height="15" fill="rgb(244,21,52)" fg:x="201310" fg:w="453"/><text x="41.9483%" y="639.50"></text></g><g><title>check_buffer_tree_ref (72 samples, 0.01%)</title><rect x="41.8019%" y="613" width="0.0149%" height="15" fill="rgb(247,122,20)" fg:x="201810" fg:w="72"/><text x="42.0519%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (253 samples, 0.05%)</title><rect x="41.7924%" y="629" width="0.0524%" height="15" fill="rgb(218,27,9)" fg:x="201764" fg:w="253"/><text x="42.0424%" y="639.50"></text></g><g><title>mark_page_accessed (135 samples, 0.03%)</title><rect x="41.8168%" y="613" width="0.0280%" height="15" fill="rgb(246,7,6)" fg:x="201882" fg:w="135"/><text x="42.0668%" y="623.50"></text></g><g><title>find_extent_buffer (840 samples, 0.17%)</title><rect x="41.6722%" y="645" width="0.1740%" height="15" fill="rgb(227,135,54)" fg:x="201184" fg:w="840"/><text x="41.9222%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,366 samples, 0.28%)</title><rect x="41.5968%" y="661" width="0.2829%" height="15" fill="rgb(247,14,11)" fg:x="200820" fg:w="1366"/><text x="41.8468%" y="671.50"></text></g><g><title>read_extent_buffer (162 samples, 0.03%)</title><rect x="41.8462%" y="645" width="0.0336%" height="15" fill="rgb(206,149,34)" fg:x="202024" fg:w="162"/><text x="42.0962%" y="655.50"></text></g><g><title>btrfs_get_64 (51 samples, 0.01%)</title><rect x="41.8941%" y="645" width="0.0106%" height="15" fill="rgb(227,228,4)" fg:x="202255" fg:w="51"/><text x="42.1441%" y="655.50"></text></g><g><title>__radix_tree_lookup (176 samples, 0.04%)</title><rect x="41.9121%" y="629" width="0.0365%" height="15" fill="rgb(238,218,28)" fg:x="202342" fg:w="176"/><text x="42.1621%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (93 samples, 0.02%)</title><rect x="41.9486%" y="629" width="0.0193%" height="15" fill="rgb(252,86,40)" fg:x="202518" fg:w="93"/><text x="42.1986%" y="639.50"></text></g><g><title>mark_page_accessed (53 samples, 0.01%)</title><rect x="41.9568%" y="613" width="0.0110%" height="15" fill="rgb(251,225,11)" fg:x="202558" fg:w="53"/><text x="42.2068%" y="623.50"></text></g><g><title>find_extent_buffer (313 samples, 0.06%)</title><rect x="41.9046%" y="645" width="0.0648%" height="15" fill="rgb(206,46,49)" fg:x="202306" fg:w="313"/><text x="42.1546%" y="655.50"></text></g><g><title>reada_for_balance (511 samples, 0.11%)</title><rect x="41.8798%" y="661" width="0.1058%" height="15" fill="rgb(245,128,24)" fg:x="202186" fg:w="511"/><text x="42.1298%" y="671.50"></text></g><g><title>release_extent_buffer (54 samples, 0.01%)</title><rect x="41.9856%" y="661" width="0.0112%" height="15" fill="rgb(219,177,34)" fg:x="202697" fg:w="54"/><text x="42.2356%" y="671.50"></text></g><g><title>btrfs_search_slot (4,249 samples, 0.88%)</title><rect x="41.1579%" y="677" width="0.8801%" height="15" fill="rgb(218,60,48)" fg:x="198701" fg:w="4249"/><text x="41.4079%" y="687.50"></text></g><g><title>unlock_up (199 samples, 0.04%)</title><rect x="41.9968%" y="661" width="0.0412%" height="15" fill="rgb(221,11,5)" fg:x="202751" fg:w="199"/><text x="42.2468%" y="671.50"></text></g><g><title>inode_sub_bytes (71 samples, 0.01%)</title><rect x="42.0380%" y="677" width="0.0147%" height="15" fill="rgb(220,148,13)" fg:x="202950" fg:w="71"/><text x="42.2880%" y="687.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="42.0416%" y="661" width="0.0112%" height="15" fill="rgb(210,16,3)" fg:x="202967" fg:w="54"/><text x="42.2916%" y="671.50"></text></g><g><title>memset_erms (53 samples, 0.01%)</title><rect x="42.0701%" y="661" width="0.0110%" height="15" fill="rgb(236,80,2)" fg:x="203105" fg:w="53"/><text x="42.3201%" y="671.50"></text></g><g><title>kmem_cache_alloc (171 samples, 0.04%)</title><rect x="42.0527%" y="677" width="0.0354%" height="15" fill="rgb(239,129,19)" fg:x="203021" fg:w="171"/><text x="42.3027%" y="687.50"></text></g><g><title>kmem_cache_free (138 samples, 0.03%)</title><rect x="42.0882%" y="677" width="0.0286%" height="15" fill="rgb(220,106,35)" fg:x="203192" fg:w="138"/><text x="42.3382%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (72 samples, 0.01%)</title><rect x="42.1018%" y="661" width="0.0149%" height="15" fill="rgb(252,139,45)" fg:x="203258" fg:w="72"/><text x="42.3518%" y="671.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="42.1439%" y="645" width="0.0143%" height="15" fill="rgb(229,8,36)" fg:x="203461" fg:w="69"/><text x="42.3939%" y="655.50"></text></g><g><title>alloc_extent_state (351 samples, 0.07%)</title><rect x="42.1582%" y="645" width="0.0727%" height="15" fill="rgb(230,126,33)" fg:x="203530" fg:w="351"/><text x="42.4082%" y="655.50"></text></g><g><title>kmem_cache_alloc (244 samples, 0.05%)</title><rect x="42.1803%" y="629" width="0.0505%" height="15" fill="rgb(239,140,21)" fg:x="203637" fg:w="244"/><text x="42.4303%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (61 samples, 0.01%)</title><rect x="42.2182%" y="613" width="0.0126%" height="15" fill="rgb(254,104,9)" fg:x="203820" fg:w="61"/><text x="42.4682%" y="623.50"></text></g><g><title>cache_state_if_flags (63 samples, 0.01%)</title><rect x="42.2309%" y="645" width="0.0130%" height="15" fill="rgb(239,52,14)" fg:x="203881" fg:w="63"/><text x="42.4809%" y="655.50"></text></g><g><title>__set_extent_bit (666 samples, 0.14%)</title><rect x="42.1234%" y="661" width="0.1380%" height="15" fill="rgb(208,227,44)" fg:x="203362" fg:w="666"/><text x="42.3734%" y="671.50"></text></g><g><title>insert_state (84 samples, 0.02%)</title><rect x="42.2439%" y="645" width="0.0174%" height="15" fill="rgb(246,18,19)" fg:x="203944" fg:w="84"/><text x="42.4939%" y="655.50"></text></g><g><title>set_state_bits (52 samples, 0.01%)</title><rect x="42.2506%" y="629" width="0.0108%" height="15" fill="rgb(235,228,25)" fg:x="203976" fg:w="52"/><text x="42.5006%" y="639.50"></text></g><g><title>lock_extent_bits (699 samples, 0.14%)</title><rect x="42.1168%" y="677" width="0.1448%" height="15" fill="rgb(240,156,20)" fg:x="203330" fg:w="699"/><text x="42.3668%" y="687.50"></text></g><g><title>btrfs_truncate_inode_items (19,232 samples, 3.98%)</title><rect x="38.3187%" y="693" width="3.9836%" height="15" fill="rgb(224,8,20)" fg:x="184994" fg:w="19232"/><text x="38.5687%" y="703.50">btrf..</text></g><g><title>read_extent_buffer (197 samples, 0.04%)</title><rect x="42.2615%" y="677" width="0.0408%" height="15" fill="rgb(214,12,52)" fg:x="204029" fg:w="197"/><text x="42.5115%" y="687.50"></text></g><g><title>clear_extent_bit (52 samples, 0.01%)</title><rect x="42.3023%" y="693" width="0.0108%" height="15" fill="rgb(211,220,47)" fg:x="204226" fg:w="52"/><text x="42.5523%" y="703.50"></text></g><g><title>__clear_extent_bit (52 samples, 0.01%)</title><rect x="42.3023%" y="677" width="0.0108%" height="15" fill="rgb(250,173,5)" fg:x="204226" fg:w="52"/><text x="42.5523%" y="687.50"></text></g><g><title>btrfs_block_rsv_migrate (299 samples, 0.06%)</title><rect x="42.3181%" y="677" width="0.0619%" height="15" fill="rgb(250,125,52)" fg:x="204302" fg:w="299"/><text x="42.5681%" y="687.50"></text></g><g><title>_raw_spin_lock (231 samples, 0.05%)</title><rect x="42.3322%" y="661" width="0.0478%" height="15" fill="rgb(209,133,18)" fg:x="204370" fg:w="231"/><text x="42.5822%" y="671.50"></text></g><g><title>_raw_spin_lock (143 samples, 0.03%)</title><rect x="42.3960%" y="661" width="0.0296%" height="15" fill="rgb(216,173,22)" fg:x="204678" fg:w="143"/><text x="42.6460%" y="671.50"></text></g><g><title>_raw_spin_lock (108 samples, 0.02%)</title><rect x="42.4320%" y="645" width="0.0224%" height="15" fill="rgb(205,3,22)" fg:x="204852" fg:w="108"/><text x="42.6820%" y="655.50"></text></g><g><title>btrfs_block_rsv_add_bytes (141 samples, 0.03%)</title><rect x="42.4256%" y="661" width="0.0292%" height="15" fill="rgb(248,22,20)" fg:x="204821" fg:w="141"/><text x="42.6756%" y="671.50"></text></g><g><title>_raw_spin_lock (107 samples, 0.02%)</title><rect x="42.4844%" y="629" width="0.0222%" height="15" fill="rgb(233,6,29)" fg:x="205105" fg:w="107"/><text x="42.7344%" y="639.50"></text></g><g><title>btrfs_get_alloc_profile (56 samples, 0.01%)</title><rect x="42.5762%" y="613" width="0.0116%" height="15" fill="rgb(240,22,54)" fg:x="205548" fg:w="56"/><text x="42.8262%" y="623.50"></text></g><g><title>_raw_spin_lock (241 samples, 0.05%)</title><rect x="42.6516%" y="597" width="0.0499%" height="15" fill="rgb(231,133,32)" fg:x="205912" fg:w="241"/><text x="42.9016%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (945 samples, 0.20%)</title><rect x="42.5068%" y="629" width="0.1957%" height="15" fill="rgb(248,193,4)" fg:x="205213" fg:w="945"/><text x="42.7568%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (554 samples, 0.11%)</title><rect x="42.5878%" y="613" width="0.1148%" height="15" fill="rgb(211,178,46)" fg:x="205604" fg:w="554"/><text x="42.8378%" y="623.50"></text></g><g><title>_raw_spin_lock (98 samples, 0.02%)</title><rect x="42.7734%" y="597" width="0.0203%" height="15" fill="rgb(224,5,42)" fg:x="206500" fg:w="98"/><text x="43.0234%" y="607.50"></text></g><g><title>btrfs_block_rsv_refill (1,998 samples, 0.41%)</title><rect x="42.3800%" y="677" width="0.4139%" height="15" fill="rgb(239,176,25)" fg:x="204601" fg:w="1998"/><text x="42.6300%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,637 samples, 0.34%)</title><rect x="42.4548%" y="661" width="0.3391%" height="15" fill="rgb(245,187,50)" fg:x="204962" fg:w="1637"/><text x="42.7048%" y="671.50"></text></g><g><title>__reserve_bytes (1,617 samples, 0.33%)</title><rect x="42.4589%" y="645" width="0.3349%" height="15" fill="rgb(248,24,15)" fg:x="204982" fg:w="1617"/><text x="42.7089%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (441 samples, 0.09%)</title><rect x="42.7025%" y="629" width="0.0913%" height="15" fill="rgb(205,166,13)" fg:x="206158" fg:w="441"/><text x="42.9525%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (238 samples, 0.05%)</title><rect x="42.7446%" y="613" width="0.0493%" height="15" fill="rgb(208,114,23)" fg:x="206361" fg:w="238"/><text x="42.9946%" y="623.50"></text></g><g><title>join_transaction (338 samples, 0.07%)</title><rect x="42.8521%" y="661" width="0.0700%" height="15" fill="rgb(239,127,18)" fg:x="206880" fg:w="338"/><text x="43.1021%" y="671.50"></text></g><g><title>_raw_spin_lock (119 samples, 0.02%)</title><rect x="42.8974%" y="645" width="0.0246%" height="15" fill="rgb(219,154,28)" fg:x="207099" fg:w="119"/><text x="43.1474%" y="655.50"></text></g><g><title>memset_erms (95 samples, 0.02%)</title><rect x="42.9567%" y="645" width="0.0197%" height="15" fill="rgb(225,157,23)" fg:x="207385" fg:w="95"/><text x="43.2067%" y="655.50"></text></g><g><title>evict_refill_and_join (3,269 samples, 0.68%)</title><rect x="42.3131%" y="693" width="0.6771%" height="15" fill="rgb(219,8,6)" fg:x="204278" fg:w="3269"/><text x="42.5631%" y="703.50"></text></g><g><title>start_transaction (938 samples, 0.19%)</title><rect x="42.7959%" y="677" width="0.1943%" height="15" fill="rgb(212,47,6)" fg:x="206609" fg:w="938"/><text x="43.0459%" y="687.50"></text></g><g><title>kmem_cache_alloc (329 samples, 0.07%)</title><rect x="42.9221%" y="661" width="0.0681%" height="15" fill="rgb(224,190,4)" fg:x="207218" fg:w="329"/><text x="43.1721%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (67 samples, 0.01%)</title><rect x="42.9764%" y="645" width="0.0139%" height="15" fill="rgb(239,183,29)" fg:x="207480" fg:w="67"/><text x="43.2264%" y="655.50"></text></g><g><title>kfree (137 samples, 0.03%)</title><rect x="42.9911%" y="693" width="0.0284%" height="15" fill="rgb(213,57,7)" fg:x="207551" fg:w="137"/><text x="43.2411%" y="703.50"></text></g><g><title>__slab_free (138 samples, 0.03%)</title><rect x="43.0418%" y="677" width="0.0286%" height="15" fill="rgb(216,148,1)" fg:x="207796" fg:w="138"/><text x="43.2918%" y="687.50"></text></g><g><title>kmem_cache_free (315 samples, 0.07%)</title><rect x="43.0194%" y="693" width="0.0652%" height="15" fill="rgb(236,182,29)" fg:x="207688" fg:w="315"/><text x="43.2694%" y="703.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (51 samples, 0.01%)</title><rect x="43.0741%" y="677" width="0.0106%" height="15" fill="rgb(244,120,48)" fg:x="207952" fg:w="51"/><text x="43.3241%" y="687.50"></text></g><g><title>lock_extent_bits (51 samples, 0.01%)</title><rect x="43.0847%" y="693" width="0.0106%" height="15" fill="rgb(206,71,34)" fg:x="208003" fg:w="51"/><text x="43.3347%" y="703.50"></text></g><g><title>__set_extent_bit (51 samples, 0.01%)</title><rect x="43.0847%" y="677" width="0.0106%" height="15" fill="rgb(242,32,6)" fg:x="208003" fg:w="51"/><text x="43.3347%" y="687.50"></text></g><g><title>truncate_inode_pages_final (79 samples, 0.02%)</title><rect x="43.0992%" y="693" width="0.0164%" height="15" fill="rgb(241,35,3)" fg:x="208073" fg:w="79"/><text x="43.3492%" y="703.50"></text></g><g><title>__pagevec_release (122 samples, 0.03%)</title><rect x="43.1205%" y="677" width="0.0253%" height="15" fill="rgb(222,62,19)" fg:x="208176" fg:w="122"/><text x="43.3705%" y="687.50"></text></g><g><title>release_pages (112 samples, 0.02%)</title><rect x="43.1226%" y="661" width="0.0232%" height="15" fill="rgb(223,110,41)" fg:x="208186" fg:w="112"/><text x="43.3726%" y="671.50"></text></g><g><title>delete_from_page_cache_batch (52 samples, 0.01%)</title><rect x="43.1462%" y="677" width="0.0108%" height="15" fill="rgb(208,224,4)" fg:x="208300" fg:w="52"/><text x="43.3962%" y="687.50"></text></g><g><title>btrfs_evict_inode (48,228 samples, 9.99%)</title><rect x="33.1803%" y="709" width="9.9897%" height="15" fill="rgb(241,137,19)" fg:x="160187" fg:w="48228"/><text x="33.4303%" y="719.50">btrfs_evict_in..</text></g><g><title>truncate_inode_pages_range (263 samples, 0.05%)</title><rect x="43.1156%" y="693" width="0.0545%" height="15" fill="rgb(244,24,17)" fg:x="208152" fg:w="263"/><text x="43.3656%" y="703.50"></text></g><g><title>clear_inode (59 samples, 0.01%)</title><rect x="43.1700%" y="709" width="0.0122%" height="15" fill="rgb(245,178,49)" fg:x="208415" fg:w="59"/><text x="43.4200%" y="719.50"></text></g><g><title>_raw_spin_lock (121 samples, 0.03%)</title><rect x="43.1907%" y="693" width="0.0251%" height="15" fill="rgb(219,160,38)" fg:x="208515" fg:w="121"/><text x="43.4407%" y="703.50"></text></g><g><title>inode_wait_for_writeback (163 samples, 0.03%)</title><rect x="43.1823%" y="709" width="0.0338%" height="15" fill="rgb(228,137,14)" fg:x="208474" fg:w="163"/><text x="43.4323%" y="719.50"></text></g><g><title>evict (49,178 samples, 10.19%)</title><rect x="33.0326%" y="725" width="10.1865%" height="15" fill="rgb(237,134,11)" fg:x="159474" fg:w="49178"/><text x="33.2826%" y="735.50">evict</text></g><g><title>__legitimize_mnt (78 samples, 0.02%)</title><rect x="43.2519%" y="645" width="0.0162%" height="15" fill="rgb(211,126,44)" fg:x="208810" fg:w="78"/><text x="43.5019%" y="655.50"></text></g><g><title>__legitimize_path (164 samples, 0.03%)</title><rect x="43.2485%" y="661" width="0.0340%" height="15" fill="rgb(226,171,33)" fg:x="208794" fg:w="164"/><text x="43.4985%" y="671.50"></text></g><g><title>lockref_get_not_dead (70 samples, 0.01%)</title><rect x="43.2680%" y="645" width="0.0145%" height="15" fill="rgb(253,99,13)" fg:x="208888" fg:w="70"/><text x="43.5180%" y="655.50"></text></g><g><title>complete_walk (220 samples, 0.05%)</title><rect x="43.2409%" y="693" width="0.0456%" height="15" fill="rgb(244,48,7)" fg:x="208757" fg:w="220"/><text x="43.4909%" y="703.50"></text></g><g><title>try_to_unlazy (209 samples, 0.04%)</title><rect x="43.2432%" y="677" width="0.0433%" height="15" fill="rgb(244,217,54)" fg:x="208768" fg:w="209"/><text x="43.4932%" y="687.50"></text></g><g><title>link_path_walk.part.0 (120 samples, 0.02%)</title><rect x="43.2864%" y="693" width="0.0249%" height="15" fill="rgb(224,15,18)" fg:x="208977" fg:w="120"/><text x="43.5364%" y="703.50"></text></g><g><title>__fget_light (228 samples, 0.05%)</title><rect x="43.3237%" y="677" width="0.0472%" height="15" fill="rgb(244,99,12)" fg:x="209157" fg:w="228"/><text x="43.5737%" y="687.50"></text></g><g><title>__fget_files (167 samples, 0.03%)</title><rect x="43.3364%" y="661" width="0.0346%" height="15" fill="rgb(233,226,8)" fg:x="209218" fg:w="167"/><text x="43.5864%" y="671.50"></text></g><g><title>path_init (321 samples, 0.07%)</title><rect x="43.3113%" y="693" width="0.0665%" height="15" fill="rgb(229,211,3)" fg:x="209097" fg:w="321"/><text x="43.5613%" y="703.50"></text></g><g><title>filename_parentat (798 samples, 0.17%)</title><rect x="43.2191%" y="725" width="0.1653%" height="15" fill="rgb(216,140,21)" fg:x="208652" fg:w="798"/><text x="43.4691%" y="735.50"></text></g><g><title>path_parentat (727 samples, 0.15%)</title><rect x="43.2338%" y="709" width="0.1506%" height="15" fill="rgb(234,122,30)" fg:x="208723" fg:w="727"/><text x="43.4838%" y="719.50"></text></g><g><title>ihold (164 samples, 0.03%)</title><rect x="43.3844%" y="725" width="0.0340%" height="15" fill="rgb(236,25,46)" fg:x="209450" fg:w="164"/><text x="43.6344%" y="735.50"></text></g><g><title>_atomic_dec_and_lock (111 samples, 0.02%)</title><rect x="43.4254%" y="709" width="0.0230%" height="15" fill="rgb(217,52,54)" fg:x="209648" fg:w="111"/><text x="43.6754%" y="719.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="43.4377%" y="693" width="0.0108%" height="15" fill="rgb(222,29,26)" fg:x="209707" fg:w="52"/><text x="43.6877%" y="703.50"></text></g><g><title>iput.part.0 (155 samples, 0.03%)</title><rect x="43.4184%" y="725" width="0.0321%" height="15" fill="rgb(216,177,29)" fg:x="209614" fg:w="155"/><text x="43.6684%" y="735.50"></text></g><g><title>kmem_cache_free (182 samples, 0.04%)</title><rect x="43.4505%" y="725" width="0.0377%" height="15" fill="rgb(247,136,51)" fg:x="209769" fg:w="182"/><text x="43.7005%" y="735.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (74 samples, 0.02%)</title><rect x="43.4729%" y="709" width="0.0153%" height="15" fill="rgb(231,47,47)" fg:x="209877" fg:w="74"/><text x="43.7229%" y="719.50"></text></g><g><title>mnt_drop_write (114 samples, 0.02%)</title><rect x="43.4882%" y="725" width="0.0236%" height="15" fill="rgb(211,192,36)" fg:x="209951" fg:w="114"/><text x="43.7382%" y="735.50"></text></g><g><title>__mnt_want_write (73 samples, 0.02%)</title><rect x="43.5172%" y="709" width="0.0151%" height="15" fill="rgb(229,156,32)" fg:x="210091" fg:w="73"/><text x="43.7672%" y="719.50"></text></g><g><title>mnt_want_write (105 samples, 0.02%)</title><rect x="43.5118%" y="725" width="0.0217%" height="15" fill="rgb(248,213,20)" fg:x="210065" fg:w="105"/><text x="43.7618%" y="735.50"></text></g><g><title>apparmor_path_unlink (119 samples, 0.02%)</title><rect x="43.5460%" y="709" width="0.0246%" height="15" fill="rgb(217,64,7)" fg:x="210230" fg:w="119"/><text x="43.7960%" y="719.50"></text></g><g><title>security_path_unlink (323 samples, 0.07%)</title><rect x="43.5443%" y="725" width="0.0669%" height="15" fill="rgb(232,142,8)" fg:x="210222" fg:w="323"/><text x="43.7943%" y="735.50"></text></g><g><title>tomoyo_path_unlink (196 samples, 0.04%)</title><rect x="43.5706%" y="709" width="0.0406%" height="15" fill="rgb(224,92,44)" fg:x="210349" fg:w="196"/><text x="43.8206%" y="719.50"></text></g><g><title>tomoyo_path_perm (185 samples, 0.04%)</title><rect x="43.5729%" y="693" width="0.0383%" height="15" fill="rgb(214,169,17)" fg:x="210360" fg:w="185"/><text x="43.8229%" y="703.50"></text></g><g><title>tomoyo_init_request_info (95 samples, 0.02%)</title><rect x="43.5916%" y="677" width="0.0197%" height="15" fill="rgb(210,59,37)" fg:x="210450" fg:w="95"/><text x="43.8416%" y="687.50"></text></g><g><title>up_write (68 samples, 0.01%)</title><rect x="43.6112%" y="725" width="0.0141%" height="15" fill="rgb(214,116,48)" fg:x="210545" fg:w="68"/><text x="43.8612%" y="735.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="43.6533%" y="709" width="0.0126%" height="15" fill="rgb(244,191,6)" fg:x="210748" fg:w="61"/><text x="43.9033%" y="719.50"></text></g><g><title>btrfs_put_transaction (59 samples, 0.01%)</title><rect x="43.7152%" y="677" width="0.0122%" height="15" fill="rgb(241,50,52)" fg:x="211047" fg:w="59"/><text x="43.9652%" y="687.50"></text></g><g><title>_raw_spin_lock (106 samples, 0.02%)</title><rect x="43.7426%" y="645" width="0.0220%" height="15" fill="rgb(236,75,39)" fg:x="211179" fg:w="106"/><text x="43.9926%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (204 samples, 0.04%)</title><rect x="43.7291%" y="677" width="0.0423%" height="15" fill="rgb(236,99,0)" fg:x="211114" fg:w="204"/><text x="43.9791%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (192 samples, 0.04%)</title><rect x="43.7316%" y="661" width="0.0398%" height="15" fill="rgb(207,202,15)" fg:x="211126" fg:w="192"/><text x="43.9816%" y="671.50"></text></g><g><title>__btrfs_end_transaction (597 samples, 0.12%)</title><rect x="43.6750%" y="693" width="0.1237%" height="15" fill="rgb(233,207,14)" fg:x="210853" fg:w="597"/><text x="43.9250%" y="703.50"></text></g><g><title>kmem_cache_free (132 samples, 0.03%)</title><rect x="43.7713%" y="677" width="0.0273%" height="15" fill="rgb(226,27,51)" fg:x="211318" fg:w="132"/><text x="44.0213%" y="687.50"></text></g><g><title>btrfs_end_log_trans (55 samples, 0.01%)</title><rect x="43.9043%" y="661" width="0.0114%" height="15" fill="rgb(206,104,42)" fg:x="211960" fg:w="55"/><text x="44.1543%" y="671.50"></text></g><g><title>btrfs_tree_unlock (62 samples, 0.01%)</title><rect x="43.9271%" y="629" width="0.0128%" height="15" fill="rgb(212,225,4)" fg:x="212070" fg:w="62"/><text x="44.1771%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (66 samples, 0.01%)</title><rect x="43.9402%" y="629" width="0.0137%" height="15" fill="rgb(233,96,42)" fg:x="212133" fg:w="66"/><text x="44.1902%" y="639.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="43.9416%" y="613" width="0.0122%" height="15" fill="rgb(229,21,32)" fg:x="212140" fg:w="59"/><text x="44.1916%" y="623.50"></text></g><g><title>btrfs_free_path (227 samples, 0.05%)</title><rect x="43.9157%" y="661" width="0.0470%" height="15" fill="rgb(226,216,24)" fg:x="212015" fg:w="227"/><text x="44.1657%" y="671.50"></text></g><g><title>btrfs_release_path (220 samples, 0.05%)</title><rect x="43.9172%" y="645" width="0.0456%" height="15" fill="rgb(221,163,17)" fg:x="212022" fg:w="220"/><text x="44.1672%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (71 samples, 0.01%)</title><rect x="43.9895%" y="613" width="0.0147%" height="15" fill="rgb(216,216,42)" fg:x="212371" fg:w="71"/><text x="44.2395%" y="623.50"></text></g><g><title>_raw_read_lock (52 samples, 0.01%)</title><rect x="43.9934%" y="597" width="0.0108%" height="15" fill="rgb(240,118,7)" fg:x="212390" fg:w="52"/><text x="44.2434%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (153 samples, 0.03%)</title><rect x="43.9878%" y="629" width="0.0317%" height="15" fill="rgb(221,67,37)" fg:x="212363" fg:w="153"/><text x="44.2378%" y="639.50"></text></g><g><title>btrfs_root_node (74 samples, 0.02%)</title><rect x="44.0042%" y="613" width="0.0153%" height="15" fill="rgb(241,32,44)" fg:x="212442" fg:w="74"/><text x="44.2542%" y="623.50"></text></g><g><title>__btrfs_tree_lock (82 samples, 0.02%)</title><rect x="44.0236%" y="613" width="0.0170%" height="15" fill="rgb(235,204,43)" fg:x="212536" fg:w="82"/><text x="44.2736%" y="623.50"></text></g><g><title>btrfs_lock_root_node (154 samples, 0.03%)</title><rect x="44.0205%" y="629" width="0.0319%" height="15" fill="rgb(213,116,10)" fg:x="212521" fg:w="154"/><text x="44.2705%" y="639.50"></text></g><g><title>btrfs_root_node (57 samples, 0.01%)</title><rect x="44.0406%" y="613" width="0.0118%" height="15" fill="rgb(239,15,48)" fg:x="212618" fg:w="57"/><text x="44.2906%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (59 samples, 0.01%)</title><rect x="44.0524%" y="629" width="0.0122%" height="15" fill="rgb(207,123,36)" fg:x="212675" fg:w="59"/><text x="44.3024%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (49 samples, 0.01%)</title><rect x="44.0647%" y="629" width="0.0101%" height="15" fill="rgb(209,103,30)" fg:x="212734" fg:w="49"/><text x="44.3147%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (74 samples, 0.02%)</title><rect x="44.0748%" y="629" width="0.0153%" height="15" fill="rgb(238,100,19)" fg:x="212783" fg:w="74"/><text x="44.3248%" y="639.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="44.0773%" y="613" width="0.0128%" height="15" fill="rgb(244,30,14)" fg:x="212795" fg:w="62"/><text x="44.3273%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (73 samples, 0.02%)</title><rect x="44.0901%" y="629" width="0.0151%" height="15" fill="rgb(249,174,6)" fg:x="212857" fg:w="73"/><text x="44.3401%" y="639.50"></text></g><g><title>release_extent_buffer (52 samples, 0.01%)</title><rect x="44.1052%" y="629" width="0.0108%" height="15" fill="rgb(235,213,41)" fg:x="212930" fg:w="52"/><text x="44.3552%" y="639.50"></text></g><g><title>btrfs_lookup_dir_index_item (769 samples, 0.16%)</title><rect x="43.9627%" y="661" width="0.1593%" height="15" fill="rgb(213,118,6)" fg:x="212242" fg:w="769"/><text x="44.2127%" y="671.50"></text></g><g><title>btrfs_search_slot (756 samples, 0.16%)</title><rect x="43.9654%" y="645" width="0.1566%" height="15" fill="rgb(235,44,51)" fg:x="212255" fg:w="756"/><text x="44.2154%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (81 samples, 0.02%)</title><rect x="44.1581%" y="613" width="0.0168%" height="15" fill="rgb(217,9,53)" fg:x="213185" fg:w="81"/><text x="44.4081%" y="623.50"></text></g><g><title>_raw_read_lock (59 samples, 0.01%)</title><rect x="44.1626%" y="597" width="0.0122%" height="15" fill="rgb(237,172,34)" fg:x="213207" fg:w="59"/><text x="44.4126%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (162 samples, 0.03%)</title><rect x="44.1558%" y="629" width="0.0336%" height="15" fill="rgb(206,206,11)" fg:x="213174" fg:w="162"/><text x="44.4058%" y="639.50"></text></g><g><title>btrfs_root_node (70 samples, 0.01%)</title><rect x="44.1748%" y="613" width="0.0145%" height="15" fill="rgb(214,149,29)" fg:x="213266" fg:w="70"/><text x="44.4248%" y="623.50"></text></g><g><title>__btrfs_tree_lock (94 samples, 0.02%)</title><rect x="44.1933%" y="613" width="0.0195%" height="15" fill="rgb(208,123,3)" fg:x="213355" fg:w="94"/><text x="44.4433%" y="623.50"></text></g><g><title>btrfs_lock_root_node (161 samples, 0.03%)</title><rect x="44.1900%" y="629" width="0.0333%" height="15" fill="rgb(229,126,4)" fg:x="213339" fg:w="161"/><text x="44.4400%" y="639.50"></text></g><g><title>btrfs_root_node (51 samples, 0.01%)</title><rect x="44.2128%" y="613" width="0.0106%" height="15" fill="rgb(222,92,36)" fg:x="213449" fg:w="51"/><text x="44.4628%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (76 samples, 0.02%)</title><rect x="44.2233%" y="629" width="0.0157%" height="15" fill="rgb(216,39,41)" fg:x="213500" fg:w="76"/><text x="44.4733%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (68 samples, 0.01%)</title><rect x="44.2478%" y="629" width="0.0141%" height="15" fill="rgb(253,127,28)" fg:x="213618" fg:w="68"/><text x="44.4978%" y="639.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="44.2511%" y="613" width="0.0108%" height="15" fill="rgb(249,152,51)" fg:x="213634" fg:w="52"/><text x="44.5011%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (73 samples, 0.02%)</title><rect x="44.2618%" y="629" width="0.0151%" height="15" fill="rgb(209,123,42)" fg:x="213686" fg:w="73"/><text x="44.5118%" y="639.50"></text></g><g><title>release_extent_buffer (67 samples, 0.01%)</title><rect x="44.2770%" y="629" width="0.0139%" height="15" fill="rgb(241,118,22)" fg:x="213759" fg:w="67"/><text x="44.5270%" y="639.50"></text></g><g><title>btrfs_search_slot (806 samples, 0.17%)</title><rect x="44.1295%" y="645" width="0.1670%" height="15" fill="rgb(208,25,7)" fg:x="213047" fg:w="806"/><text x="44.3795%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (871 samples, 0.18%)</title><rect x="44.1220%" y="661" width="0.1804%" height="15" fill="rgb(243,144,39)" fg:x="213011" fg:w="871"/><text x="44.3720%" y="671.50"></text></g><g><title>btrfs_tree_unlock (72 samples, 0.01%)</title><rect x="44.3180%" y="645" width="0.0149%" height="15" fill="rgb(250,50,5)" fg:x="213957" fg:w="72"/><text x="44.5680%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (73 samples, 0.02%)</title><rect x="44.3337%" y="645" width="0.0151%" height="15" fill="rgb(207,67,11)" fg:x="214033" fg:w="73"/><text x="44.5837%" y="655.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="44.3354%" y="629" width="0.0135%" height="15" fill="rgb(245,204,40)" fg:x="214041" fg:w="65"/><text x="44.5854%" y="639.50"></text></g><g><title>btrfs_release_path (281 samples, 0.06%)</title><rect x="44.3024%" y="661" width="0.0582%" height="15" fill="rgb(238,228,24)" fg:x="213882" fg:w="281"/><text x="44.5524%" y="671.50"></text></g><g><title>release_extent_buffer (57 samples, 0.01%)</title><rect x="44.3488%" y="645" width="0.0118%" height="15" fill="rgb(217,116,22)" fg:x="214106" fg:w="57"/><text x="44.5988%" y="655.50"></text></g><g><title>memset_erms (59 samples, 0.01%)</title><rect x="44.3760%" y="645" width="0.0122%" height="15" fill="rgb(234,98,12)" fg:x="214237" fg:w="59"/><text x="44.6260%" y="655.50"></text></g><g><title>kmem_cache_alloc (158 samples, 0.03%)</title><rect x="44.3606%" y="661" width="0.0327%" height="15" fill="rgb(242,170,50)" fg:x="214163" fg:w="158"/><text x="44.6106%" y="671.50"></text></g><g><title>kmem_cache_free (98 samples, 0.02%)</title><rect x="44.3934%" y="661" width="0.0203%" height="15" fill="rgb(235,7,5)" fg:x="214321" fg:w="98"/><text x="44.6434%" y="671.50"></text></g><g><title>mutex_lock (121 samples, 0.03%)</title><rect x="44.4137%" y="661" width="0.0251%" height="15" fill="rgb(241,114,28)" fg:x="214419" fg:w="121"/><text x="44.6637%" y="671.50"></text></g><g><title>btrfs_del_dir_entries_in_log (2,811 samples, 0.58%)</title><rect x="43.8782%" y="677" width="0.5823%" height="15" fill="rgb(246,112,42)" fg:x="211834" fg:w="2811"/><text x="44.1282%" y="687.50"></text></g><g><title>mutex_unlock (105 samples, 0.02%)</title><rect x="44.4387%" y="661" width="0.0217%" height="15" fill="rgb(248,228,14)" fg:x="214540" fg:w="105"/><text x="44.6887%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (98 samples, 0.02%)</title><rect x="44.5061%" y="613" width="0.0203%" height="15" fill="rgb(208,133,18)" fg:x="214865" fg:w="98"/><text x="44.7561%" y="623.50"></text></g><g><title>_raw_spin_lock (78 samples, 0.02%)</title><rect x="44.5102%" y="597" width="0.0162%" height="15" fill="rgb(207,35,49)" fg:x="214885" fg:w="78"/><text x="44.7602%" y="607.50"></text></g><g><title>btrfs_free_path (297 samples, 0.06%)</title><rect x="44.4849%" y="645" width="0.0615%" height="15" fill="rgb(205,68,36)" fg:x="214763" fg:w="297"/><text x="44.7349%" y="655.50"></text></g><g><title>btrfs_release_path (288 samples, 0.06%)</title><rect x="44.4868%" y="629" width="0.0597%" height="15" fill="rgb(245,62,40)" fg:x="214772" fg:w="288"/><text x="44.7368%" y="639.50"></text></g><g><title>release_extent_buffer (97 samples, 0.02%)</title><rect x="44.5264%" y="613" width="0.0201%" height="15" fill="rgb(228,27,24)" fg:x="214963" fg:w="97"/><text x="44.7764%" y="623.50"></text></g><g><title>_raw_read_lock (119 samples, 0.02%)</title><rect x="44.6057%" y="597" width="0.0246%" height="15" fill="rgb(253,19,12)" fg:x="215346" fg:w="119"/><text x="44.8557%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (169 samples, 0.04%)</title><rect x="44.5955%" y="613" width="0.0350%" height="15" fill="rgb(232,28,20)" fg:x="215297" fg:w="169"/><text x="44.8455%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (344 samples, 0.07%)</title><rect x="44.5937%" y="629" width="0.0713%" height="15" fill="rgb(218,35,51)" fg:x="215288" fg:w="344"/><text x="44.8437%" y="639.50"></text></g><g><title>btrfs_root_node (166 samples, 0.03%)</title><rect x="44.6305%" y="613" width="0.0344%" height="15" fill="rgb(212,90,40)" fg:x="215466" fg:w="166"/><text x="44.8805%" y="623.50"></text></g><g><title>__btrfs_tree_lock (154 samples, 0.03%)</title><rect x="44.6732%" y="613" width="0.0319%" height="15" fill="rgb(220,172,12)" fg:x="215672" fg:w="154"/><text x="44.9232%" y="623.50"></text></g><g><title>_raw_write_lock (86 samples, 0.02%)</title><rect x="44.6873%" y="597" width="0.0178%" height="15" fill="rgb(226,159,20)" fg:x="215740" fg:w="86"/><text x="44.9373%" y="607.50"></text></g><g><title>btrfs_lock_root_node (266 samples, 0.06%)</title><rect x="44.6684%" y="629" width="0.0551%" height="15" fill="rgb(234,205,16)" fg:x="215649" fg:w="266"/><text x="44.9184%" y="639.50"></text></g><g><title>btrfs_root_node (89 samples, 0.02%)</title><rect x="44.7051%" y="613" width="0.0184%" height="15" fill="rgb(207,9,39)" fg:x="215826" fg:w="89"/><text x="44.9551%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (97 samples, 0.02%)</title><rect x="44.7238%" y="629" width="0.0201%" height="15" fill="rgb(249,143,15)" fg:x="215916" fg:w="97"/><text x="44.9738%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (128 samples, 0.03%)</title><rect x="44.7443%" y="629" width="0.0265%" height="15" fill="rgb(253,133,29)" fg:x="216015" fg:w="128"/><text x="44.9943%" y="639.50"></text></g><g><title>_raw_spin_lock (108 samples, 0.02%)</title><rect x="44.7484%" y="613" width="0.0224%" height="15" fill="rgb(221,187,0)" fg:x="216035" fg:w="108"/><text x="44.9984%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (187 samples, 0.04%)</title><rect x="44.7708%" y="629" width="0.0387%" height="15" fill="rgb(205,204,26)" fg:x="216143" fg:w="187"/><text x="45.0208%" y="639.50"></text></g><g><title>release_extent_buffer (79 samples, 0.02%)</title><rect x="44.8095%" y="629" width="0.0164%" height="15" fill="rgb(224,68,54)" fg:x="216330" fg:w="79"/><text x="45.0595%" y="639.50"></text></g><g><title>btrfs_search_slot (1,423 samples, 0.29%)</title><rect x="44.5464%" y="645" width="0.2948%" height="15" fill="rgb(209,67,4)" fg:x="215060" fg:w="1423"/><text x="44.7964%" y="655.50"></text></g><g><title>unlock_up (74 samples, 0.02%)</title><rect x="44.8259%" y="629" width="0.0153%" height="15" fill="rgb(228,229,18)" fg:x="216409" fg:w="74"/><text x="45.0759%" y="639.50"></text></g><g><title>crc32c (61 samples, 0.01%)</title><rect x="44.8412%" y="645" width="0.0126%" height="15" fill="rgb(231,89,13)" fg:x="216483" fg:w="61"/><text x="45.0912%" y="655.50"></text></g><g><title>memset_erms (93 samples, 0.02%)</title><rect x="44.8909%" y="629" width="0.0193%" height="15" fill="rgb(210,182,18)" fg:x="216723" fg:w="93"/><text x="45.1409%" y="639.50"></text></g><g><title>kmem_cache_alloc (323 samples, 0.07%)</title><rect x="44.8538%" y="645" width="0.0669%" height="15" fill="rgb(240,105,2)" fg:x="216544" fg:w="323"/><text x="45.1038%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (51 samples, 0.01%)</title><rect x="44.9102%" y="629" width="0.0106%" height="15" fill="rgb(207,170,50)" fg:x="216816" fg:w="51"/><text x="45.1602%" y="639.50"></text></g><g><title>btrfs_del_inode_ref (2,370 samples, 0.49%)</title><rect x="44.4777%" y="661" width="0.4909%" height="15" fill="rgb(232,133,24)" fg:x="214728" fg:w="2370"/><text x="44.7277%" y="671.50"></text></g><g><title>kmem_cache_free (231 samples, 0.05%)</title><rect x="44.9207%" y="645" width="0.0478%" height="15" fill="rgb(235,166,27)" fg:x="216867" fg:w="231"/><text x="45.1707%" y="655.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (50 samples, 0.01%)</title><rect x="44.9582%" y="629" width="0.0104%" height="15" fill="rgb(209,19,13)" fg:x="217048" fg:w="50"/><text x="45.2082%" y="639.50"></text></g><g><title>btrfs_end_log_trans (50 samples, 0.01%)</title><rect x="44.9686%" y="661" width="0.0104%" height="15" fill="rgb(226,79,39)" fg:x="217098" fg:w="50"/><text x="45.2186%" y="671.50"></text></g><g><title>mutex_lock (106 samples, 0.02%)</title><rect x="44.9789%" y="661" width="0.0220%" height="15" fill="rgb(222,163,10)" fg:x="217148" fg:w="106"/><text x="45.2289%" y="671.50"></text></g><g><title>btrfs_del_inode_ref_in_log (2,684 samples, 0.56%)</title><rect x="44.4605%" y="677" width="0.5560%" height="15" fill="rgb(214,44,19)" fg:x="214645" fg:w="2684"/><text x="44.7105%" y="687.50"></text></g><g><title>mutex_unlock (75 samples, 0.02%)</title><rect x="45.0009%" y="661" width="0.0155%" height="15" fill="rgb(210,217,13)" fg:x="217254" fg:w="75"/><text x="45.2509%" y="671.50"></text></g><g><title>steal_from_bitmap.part.0 (50 samples, 0.01%)</title><rect x="45.3027%" y="613" width="0.0104%" height="15" fill="rgb(237,61,54)" fg:x="218711" fg:w="50"/><text x="45.5527%" y="623.50"></text></g><g><title>__btrfs_add_free_space (64 samples, 0.01%)</title><rect x="45.3012%" y="629" width="0.0133%" height="15" fill="rgb(226,184,24)" fg:x="218704" fg:w="64"/><text x="45.5512%" y="639.50"></text></g><g><title>btrfs_free_tree_block (100 samples, 0.02%)</title><rect x="45.3012%" y="645" width="0.0207%" height="15" fill="rgb(223,226,4)" fg:x="218704" fg:w="100"/><text x="45.5512%" y="655.50"></text></g><g><title>btrfs_del_leaf (110 samples, 0.02%)</title><rect x="45.3010%" y="661" width="0.0228%" height="15" fill="rgb(210,26,41)" fg:x="218703" fg:w="110"/><text x="45.5510%" y="671.50"></text></g><g><title>btrfs_get_32 (151 samples, 0.03%)</title><rect x="45.3238%" y="661" width="0.0313%" height="15" fill="rgb(220,221,6)" fg:x="218813" fg:w="151"/><text x="45.5738%" y="671.50"></text></g><g><title>btrfs_get_token_32 (3,860 samples, 0.80%)</title><rect x="45.3551%" y="661" width="0.7995%" height="15" fill="rgb(225,89,49)" fg:x="218964" fg:w="3860"/><text x="45.6051%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (478 samples, 0.10%)</title><rect x="46.0556%" y="645" width="0.0990%" height="15" fill="rgb(218,70,45)" fg:x="222346" fg:w="478"/><text x="46.3056%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (178 samples, 0.04%)</title><rect x="46.1546%" y="661" width="0.0369%" height="15" fill="rgb(238,166,21)" fg:x="222824" fg:w="178"/><text x="46.4046%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (101 samples, 0.02%)</title><rect x="46.1706%" y="645" width="0.0209%" height="15" fill="rgb(224,141,44)" fg:x="222901" fg:w="101"/><text x="46.4206%" y="655.50"></text></g><g><title>btrfs_set_token_32 (3,343 samples, 0.69%)</title><rect x="46.1923%" y="661" width="0.6925%" height="15" fill="rgb(230,12,49)" fg:x="223006" fg:w="3343"/><text x="46.4423%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (725 samples, 0.15%)</title><rect x="46.7346%" y="645" width="0.1502%" height="15" fill="rgb(212,174,12)" fg:x="225624" fg:w="725"/><text x="46.9846%" y="655.50"></text></g><g><title>leaf_space_used (118 samples, 0.02%)</title><rect x="46.8869%" y="661" width="0.0244%" height="15" fill="rgb(246,67,9)" fg:x="226359" fg:w="118"/><text x="47.1369%" y="671.50"></text></g><g><title>btrfs_get_32 (84 samples, 0.02%)</title><rect x="46.8939%" y="645" width="0.0174%" height="15" fill="rgb(239,35,23)" fg:x="226393" fg:w="84"/><text x="47.1439%" y="655.50"></text></g><g><title>copy_pages (78 samples, 0.02%)</title><rect x="46.9229%" y="645" width="0.0162%" height="15" fill="rgb(211,167,0)" fg:x="226533" fg:w="78"/><text x="47.1729%" y="655.50"></text></g><g><title>memcpy_extent_buffer (687 samples, 0.14%)</title><rect x="46.9113%" y="661" width="0.1423%" height="15" fill="rgb(225,119,45)" fg:x="226477" fg:w="687"/><text x="47.1613%" y="671.50"></text></g><g><title>memmove (553 samples, 0.11%)</title><rect x="46.9391%" y="645" width="0.1145%" height="15" fill="rgb(210,162,6)" fg:x="226611" fg:w="553"/><text x="47.1891%" y="655.50"></text></g><g><title>copy_pages (191 samples, 0.04%)</title><rect x="47.0791%" y="645" width="0.0396%" height="15" fill="rgb(208,118,35)" fg:x="227287" fg:w="191"/><text x="47.3291%" y="655.50"></text></g><g><title>memmove_extent_buffer (1,835 samples, 0.38%)</title><rect x="47.0536%" y="661" width="0.3801%" height="15" fill="rgb(239,4,53)" fg:x="227164" fg:w="1835"/><text x="47.3036%" y="671.50"></text></g><g><title>memmove (1,521 samples, 0.32%)</title><rect x="47.1186%" y="645" width="0.3151%" height="15" fill="rgb(213,130,21)" fg:x="227478" fg:w="1521"/><text x="47.3686%" y="655.50"></text></g><g><title>__push_leaf_left (102 samples, 0.02%)</title><rect x="47.4345%" y="645" width="0.0211%" height="15" fill="rgb(235,148,0)" fg:x="229003" fg:w="102"/><text x="47.6845%" y="655.50"></text></g><g><title>push_leaf_left (166 samples, 0.03%)</title><rect x="47.4337%" y="661" width="0.0344%" height="15" fill="rgb(244,224,18)" fg:x="228999" fg:w="166"/><text x="47.6837%" y="671.50"></text></g><g><title>__push_leaf_right (130 samples, 0.03%)</title><rect x="47.4699%" y="645" width="0.0269%" height="15" fill="rgb(211,214,4)" fg:x="229174" fg:w="130"/><text x="47.7199%" y="655.50"></text></g><g><title>push_leaf_right (173 samples, 0.04%)</title><rect x="47.4681%" y="661" width="0.0358%" height="15" fill="rgb(206,119,25)" fg:x="229165" fg:w="173"/><text x="47.7181%" y="671.50"></text></g><g><title>btrfs_del_items (12,020 samples, 2.49%)</title><rect x="45.0164%" y="677" width="2.4898%" height="15" fill="rgb(243,93,47)" fg:x="217329" fg:w="12020"/><text x="45.2664%" y="687.50">bt..</text></g><g><title>mutex_lock (59 samples, 0.01%)</title><rect x="47.5899%" y="645" width="0.0122%" height="15" fill="rgb(224,194,6)" fg:x="229753" fg:w="59"/><text x="47.8399%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (362 samples, 0.07%)</title><rect x="47.5362%" y="661" width="0.0750%" height="15" fill="rgb(243,229,6)" fg:x="229494" fg:w="362"/><text x="47.7862%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (281 samples, 0.06%)</title><rect x="47.6112%" y="661" width="0.0582%" height="15" fill="rgb(207,23,50)" fg:x="229856" fg:w="281"/><text x="47.8612%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (266 samples, 0.06%)</title><rect x="47.6143%" y="645" width="0.0551%" height="15" fill="rgb(253,192,32)" fg:x="229871" fg:w="266"/><text x="47.8643%" y="655.50"></text></g><g><title>mutex_lock (88 samples, 0.02%)</title><rect x="47.6694%" y="661" width="0.0182%" height="15" fill="rgb(213,21,6)" fg:x="230137" fg:w="88"/><text x="47.9194%" y="671.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (919 samples, 0.19%)</title><rect x="47.5062%" y="677" width="0.1904%" height="15" fill="rgb(243,151,13)" fg:x="229349" fg:w="919"/><text x="47.7562%" y="687.50"></text></g><g><title>btrfs_comp_cpu_keys (167 samples, 0.03%)</title><rect x="47.7436%" y="645" width="0.0346%" height="15" fill="rgb(233,165,41)" fg:x="230495" fg:w="167"/><text x="47.9936%" y="655.50"></text></g><g><title>__btrfs_add_delayed_item (463 samples, 0.10%)</title><rect x="47.7098%" y="661" width="0.0959%" height="15" fill="rgb(246,176,45)" fg:x="230332" fg:w="463"/><text x="47.9598%" y="671.50"></text></g><g><title>rb_insert_color (133 samples, 0.03%)</title><rect x="47.7782%" y="645" width="0.0275%" height="15" fill="rgb(217,170,52)" fg:x="230662" fg:w="133"/><text x="48.0282%" y="655.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="47.8329%" y="645" width="0.0133%" height="15" fill="rgb(214,203,54)" fg:x="230926" fg:w="64"/><text x="48.0829%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (245 samples, 0.05%)</title><rect x="47.8057%" y="661" width="0.0507%" height="15" fill="rgb(248,215,49)" fg:x="230795" fg:w="245"/><text x="48.0557%" y="671.50"></text></g><g><title>mutex_unlock (50 samples, 0.01%)</title><rect x="47.8461%" y="645" width="0.0104%" height="15" fill="rgb(208,46,10)" fg:x="230990" fg:w="50"/><text x="48.0961%" y="655.50"></text></g><g><title>mutex_spin_on_owner (177 samples, 0.04%)</title><rect x="47.8581%" y="645" width="0.0367%" height="15" fill="rgb(254,5,31)" fg:x="231048" fg:w="177"/><text x="48.1081%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (190 samples, 0.04%)</title><rect x="47.8565%" y="661" width="0.0394%" height="15" fill="rgb(222,104,33)" fg:x="231040" fg:w="190"/><text x="48.1065%" y="671.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (202 samples, 0.04%)</title><rect x="47.8960%" y="661" width="0.0418%" height="15" fill="rgb(248,49,16)" fg:x="231231" fg:w="202"/><text x="48.1460%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (182 samples, 0.04%)</title><rect x="47.9002%" y="645" width="0.0377%" height="15" fill="rgb(232,198,41)" fg:x="231251" fg:w="182"/><text x="48.1502%" y="655.50"></text></g><g><title>_raw_spin_lock (156 samples, 0.03%)</title><rect x="47.9056%" y="629" width="0.0323%" height="15" fill="rgb(214,125,3)" fg:x="231277" fg:w="156"/><text x="48.1556%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (73 samples, 0.02%)</title><rect x="47.9379%" y="661" width="0.0151%" height="15" fill="rgb(229,220,28)" fg:x="231433" fg:w="73"/><text x="48.1879%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (57 samples, 0.01%)</title><rect x="47.9412%" y="645" width="0.0118%" height="15" fill="rgb(222,64,37)" fg:x="231449" fg:w="57"/><text x="48.1912%" y="655.50"></text></g><g><title>__slab_alloc (54 samples, 0.01%)</title><rect x="47.9729%" y="645" width="0.0112%" height="15" fill="rgb(249,184,13)" fg:x="231602" fg:w="54"/><text x="48.2229%" y="655.50"></text></g><g><title>memset_erms (57 samples, 0.01%)</title><rect x="47.9874%" y="645" width="0.0118%" height="15" fill="rgb(252,176,6)" fg:x="231672" fg:w="57"/><text x="48.2374%" y="655.50"></text></g><g><title>kmem_cache_alloc_trace (247 samples, 0.05%)</title><rect x="47.9530%" y="661" width="0.0512%" height="15" fill="rgb(228,153,7)" fg:x="231506" fg:w="247"/><text x="48.2030%" y="671.50"></text></g><g><title>mutex_lock (130 samples, 0.03%)</title><rect x="48.0042%" y="661" width="0.0269%" height="15" fill="rgb(242,193,5)" fg:x="231753" fg:w="130"/><text x="48.2542%" y="671.50"></text></g><g><title>btrfs_delete_delayed_dir_index (1,722 samples, 0.36%)</title><rect x="47.6966%" y="677" width="0.3567%" height="15" fill="rgb(232,140,9)" fg:x="230268" fg:w="1722"/><text x="47.9466%" y="687.50"></text></g><g><title>mutex_unlock (107 samples, 0.02%)</title><rect x="48.0311%" y="661" width="0.0222%" height="15" fill="rgb(213,222,16)" fg:x="231883" fg:w="107"/><text x="48.2811%" y="671.50"></text></g><g><title>btrfs_get_16 (70 samples, 0.01%)</title><rect x="48.0669%" y="661" width="0.0145%" height="15" fill="rgb(222,75,50)" fg:x="232056" fg:w="70"/><text x="48.3169%" y="671.50"></text></g><g><title>btrfs_delete_one_dir_name (181 samples, 0.04%)</title><rect x="48.0532%" y="677" width="0.0375%" height="15" fill="rgb(205,180,2)" fg:x="231990" fg:w="181"/><text x="48.3032%" y="687.50"></text></g><g><title>btrfs_get_16 (114 samples, 0.02%)</title><rect x="48.1226%" y="645" width="0.0236%" height="15" fill="rgb(216,34,7)" fg:x="232325" fg:w="114"/><text x="48.3726%" y="655.50"></text></g><g><title>btrfs_get_32 (93 samples, 0.02%)</title><rect x="48.1462%" y="645" width="0.0193%" height="15" fill="rgb(253,16,32)" fg:x="232439" fg:w="93"/><text x="48.3962%" y="655.50"></text></g><g><title>btrfs_match_dir_item_name (436 samples, 0.09%)</title><rect x="48.1090%" y="661" width="0.0903%" height="15" fill="rgb(208,97,28)" fg:x="232259" fg:w="436"/><text x="48.3590%" y="671.50"></text></g><g><title>memcmp_extent_buffer (163 samples, 0.03%)</title><rect x="48.1655%" y="645" width="0.0338%" height="15" fill="rgb(225,92,11)" fg:x="232532" fg:w="163"/><text x="48.4155%" y="655.50"></text></g><g><title>memcmp (91 samples, 0.02%)</title><rect x="48.1804%" y="629" width="0.0188%" height="15" fill="rgb(243,38,12)" fg:x="232604" fg:w="91"/><text x="48.4304%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (80 samples, 0.02%)</title><rect x="48.2629%" y="629" width="0.0166%" height="15" fill="rgb(208,139,16)" fg:x="233002" fg:w="80"/><text x="48.5129%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (188 samples, 0.04%)</title><rect x="48.2593%" y="645" width="0.0389%" height="15" fill="rgb(227,24,9)" fg:x="232985" fg:w="188"/><text x="48.5093%" y="655.50"></text></g><g><title>btrfs_root_node (91 samples, 0.02%)</title><rect x="48.2794%" y="629" width="0.0188%" height="15" fill="rgb(206,62,11)" fg:x="233082" fg:w="91"/><text x="48.5294%" y="639.50"></text></g><g><title>alloc_extent_buffer (56 samples, 0.01%)</title><rect x="48.3281%" y="597" width="0.0116%" height="15" fill="rgb(228,134,27)" fg:x="233317" fg:w="56"/><text x="48.5781%" y="607.50"></text></g><g><title>find_extent_buffer (51 samples, 0.01%)</title><rect x="48.3291%" y="581" width="0.0106%" height="15" fill="rgb(205,55,33)" fg:x="233322" fg:w="51"/><text x="48.5791%" y="591.50"></text></g><g><title>btrfs_read_node_slot (92 samples, 0.02%)</title><rect x="48.3244%" y="629" width="0.0191%" height="15" fill="rgb(243,75,43)" fg:x="233299" fg:w="92"/><text x="48.5744%" y="639.50"></text></g><g><title>read_tree_block (76 samples, 0.02%)</title><rect x="48.3277%" y="613" width="0.0157%" height="15" fill="rgb(223,27,42)" fg:x="233315" fg:w="76"/><text x="48.5777%" y="623.50"></text></g><g><title>balance_level (250 samples, 0.05%)</title><rect x="48.3018%" y="645" width="0.0518%" height="15" fill="rgb(232,189,33)" fg:x="233190" fg:w="250"/><text x="48.5518%" y="655.50"></text></g><g><title>_raw_write_lock (61 samples, 0.01%)</title><rect x="48.3733%" y="613" width="0.0126%" height="15" fill="rgb(210,9,39)" fg:x="233535" fg:w="61"/><text x="48.6233%" y="623.50"></text></g><g><title>__btrfs_tree_lock (101 samples, 0.02%)</title><rect x="48.3656%" y="629" width="0.0209%" height="15" fill="rgb(242,85,26)" fg:x="233498" fg:w="101"/><text x="48.6156%" y="639.50"></text></g><g><title>btrfs_lock_root_node (164 samples, 0.03%)</title><rect x="48.3639%" y="645" width="0.0340%" height="15" fill="rgb(248,44,4)" fg:x="233490" fg:w="164"/><text x="48.6139%" y="655.50"></text></g><g><title>btrfs_root_node (55 samples, 0.01%)</title><rect x="48.3865%" y="629" width="0.0114%" height="15" fill="rgb(250,96,46)" fg:x="233599" fg:w="55"/><text x="48.6365%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (76 samples, 0.02%)</title><rect x="48.3979%" y="645" width="0.0157%" height="15" fill="rgb(229,116,26)" fg:x="233654" fg:w="76"/><text x="48.6479%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (57 samples, 0.01%)</title><rect x="48.4137%" y="645" width="0.0118%" height="15" fill="rgb(246,94,34)" fg:x="233730" fg:w="57"/><text x="48.6637%" y="655.50"></text></g><g><title>_raw_write_lock (110 samples, 0.02%)</title><rect x="48.4321%" y="629" width="0.0228%" height="15" fill="rgb(251,73,21)" fg:x="233819" fg:w="110"/><text x="48.6821%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (147 samples, 0.03%)</title><rect x="48.4255%" y="645" width="0.0304%" height="15" fill="rgb(254,121,25)" fg:x="233787" fg:w="147"/><text x="48.6755%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (97 samples, 0.02%)</title><rect x="48.4565%" y="645" width="0.0201%" height="15" fill="rgb(215,161,49)" fg:x="233937" fg:w="97"/><text x="48.7065%" y="655.50"></text></g><g><title>_raw_spin_lock (78 samples, 0.02%)</title><rect x="48.4605%" y="629" width="0.0162%" height="15" fill="rgb(221,43,13)" fg:x="233956" fg:w="78"/><text x="48.7105%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,153 samples, 0.24%)</title><rect x="48.4766%" y="645" width="0.2388%" height="15" fill="rgb(249,5,37)" fg:x="234034" fg:w="1153"/><text x="48.7266%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (76 samples, 0.02%)</title><rect x="48.7451%" y="629" width="0.0157%" height="15" fill="rgb(226,25,44)" fg:x="235330" fg:w="76"/><text x="48.9951%" y="639.50"></text></g><g><title>btrfs_get_64 (117 samples, 0.02%)</title><rect x="48.7608%" y="629" width="0.0242%" height="15" fill="rgb(238,189,16)" fg:x="235406" fg:w="117"/><text x="49.0108%" y="639.50"></text></g><g><title>__radix_tree_lookup (587 samples, 0.12%)</title><rect x="48.8343%" y="613" width="0.1216%" height="15" fill="rgb(251,186,8)" fg:x="235761" fg:w="587"/><text x="49.0843%" y="623.50"></text></g><g><title>check_buffer_tree_ref (52 samples, 0.01%)</title><rect x="48.9673%" y="597" width="0.0108%" height="15" fill="rgb(254,34,31)" fg:x="236403" fg:w="52"/><text x="49.2173%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (266 samples, 0.06%)</title><rect x="48.9564%" y="613" width="0.0551%" height="15" fill="rgb(225,215,27)" fg:x="236350" fg:w="266"/><text x="49.2064%" y="623.50"></text></g><g><title>mark_page_accessed (161 samples, 0.03%)</title><rect x="48.9781%" y="597" width="0.0333%" height="15" fill="rgb(221,192,48)" fg:x="236455" fg:w="161"/><text x="49.2281%" y="607.50"></text></g><g><title>find_extent_buffer (1,059 samples, 0.22%)</title><rect x="48.7946%" y="629" width="0.2194%" height="15" fill="rgb(219,137,20)" fg:x="235569" fg:w="1059"/><text x="49.0446%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,600 samples, 0.33%)</title><rect x="48.7155%" y="645" width="0.3314%" height="15" fill="rgb(219,84,11)" fg:x="235187" fg:w="1600"/><text x="48.9655%" y="655.50"></text></g><g><title>read_extent_buffer (159 samples, 0.03%)</title><rect x="49.0139%" y="629" width="0.0329%" height="15" fill="rgb(224,10,23)" fg:x="236628" fg:w="159"/><text x="49.2639%" y="639.50"></text></g><g><title>btrfs_get_64 (117 samples, 0.02%)</title><rect x="49.0709%" y="629" width="0.0242%" height="15" fill="rgb(248,22,39)" fg:x="236903" fg:w="117"/><text x="49.3209%" y="639.50"></text></g><g><title>__radix_tree_lookup (364 samples, 0.08%)</title><rect x="49.1241%" y="613" width="0.0754%" height="15" fill="rgb(212,154,20)" fg:x="237160" fg:w="364"/><text x="49.3741%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (216 samples, 0.04%)</title><rect x="49.1995%" y="613" width="0.0447%" height="15" fill="rgb(236,199,50)" fg:x="237524" fg:w="216"/><text x="49.4495%" y="623.50"></text></g><g><title>mark_page_accessed (140 samples, 0.03%)</title><rect x="49.2153%" y="597" width="0.0290%" height="15" fill="rgb(211,9,17)" fg:x="237600" fg:w="140"/><text x="49.4653%" y="607.50"></text></g><g><title>find_extent_buffer (726 samples, 0.15%)</title><rect x="49.0951%" y="629" width="0.1504%" height="15" fill="rgb(243,216,36)" fg:x="237020" fg:w="726"/><text x="49.3451%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (50 samples, 0.01%)</title><rect x="49.2461%" y="629" width="0.0104%" height="15" fill="rgb(250,2,10)" fg:x="237749" fg:w="50"/><text x="49.4961%" y="639.50"></text></g><g><title>reada_for_balance (1,056 samples, 0.22%)</title><rect x="49.0469%" y="645" width="0.2187%" height="15" fill="rgb(226,50,48)" fg:x="236787" fg:w="1056"/><text x="49.2969%" y="655.50"></text></g><g><title>release_extent_buffer (81 samples, 0.02%)</title><rect x="49.2656%" y="645" width="0.0168%" height="15" fill="rgb(243,81,16)" fg:x="237843" fg:w="81"/><text x="49.5156%" y="655.50"></text></g><g><title>btrfs_search_slot (5,449 samples, 1.13%)</title><rect x="48.1993%" y="661" width="1.1287%" height="15" fill="rgb(250,14,2)" fg:x="232695" fg:w="5449"/><text x="48.4493%" y="671.50"></text></g><g><title>unlock_up (220 samples, 0.05%)</title><rect x="49.2824%" y="645" width="0.0456%" height="15" fill="rgb(233,135,29)" fg:x="237924" fg:w="220"/><text x="49.5324%" y="655.50"></text></g><g><title>btrfs_tree_unlock (54 samples, 0.01%)</title><rect x="49.3168%" y="629" width="0.0112%" height="15" fill="rgb(224,64,43)" fg:x="238090" fg:w="54"/><text x="49.5668%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (6,073 samples, 1.26%)</title><rect x="48.0974%" y="677" width="1.2579%" height="15" fill="rgb(238,84,13)" fg:x="232203" fg:w="6073"/><text x="48.3474%" y="687.50"></text></g><g><title>crc32c (132 samples, 0.03%)</title><rect x="49.3280%" y="661" width="0.0273%" height="15" fill="rgb(253,48,26)" fg:x="238144" fg:w="132"/><text x="49.5780%" y="671.50"></text></g><g><title>crypto_shash_update (106 samples, 0.02%)</title><rect x="49.3333%" y="645" width="0.0220%" height="15" fill="rgb(205,223,31)" fg:x="238170" fg:w="106"/><text x="49.5833%" y="655.50"></text></g><g><title>btrfs_tree_unlock (77 samples, 0.02%)</title><rect x="49.3648%" y="661" width="0.0159%" height="15" fill="rgb(221,41,32)" fg:x="238322" fg:w="77"/><text x="49.6148%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (231 samples, 0.05%)</title><rect x="49.3830%" y="661" width="0.0478%" height="15" fill="rgb(213,158,31)" fg:x="238410" fg:w="231"/><text x="49.6330%" y="671.50"></text></g><g><title>_raw_spin_lock (188 samples, 0.04%)</title><rect x="49.3920%" y="645" width="0.0389%" height="15" fill="rgb(245,126,43)" fg:x="238453" fg:w="188"/><text x="49.6420%" y="655.50"></text></g><g><title>btrfs_release_path (555 samples, 0.11%)</title><rect x="49.3553%" y="677" width="0.1150%" height="15" fill="rgb(227,7,22)" fg:x="238276" fg:w="555"/><text x="49.6053%" y="687.50"></text></g><g><title>release_extent_buffer (190 samples, 0.04%)</title><rect x="49.4309%" y="661" width="0.0394%" height="15" fill="rgb(252,90,44)" fg:x="238641" fg:w="190"/><text x="49.6809%" y="671.50"></text></g><g><title>_raw_spin_lock (49 samples, 0.01%)</title><rect x="49.5119%" y="629" width="0.0101%" height="15" fill="rgb(253,91,0)" fg:x="239032" fg:w="49"/><text x="49.7619%" y="639.50"></text></g><g><title>mutex_lock (62 samples, 0.01%)</title><rect x="49.5222%" y="629" width="0.0128%" height="15" fill="rgb(252,175,49)" fg:x="239082" fg:w="62"/><text x="49.7722%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (260 samples, 0.05%)</title><rect x="49.4926%" y="645" width="0.0539%" height="15" fill="rgb(246,150,1)" fg:x="238939" fg:w="260"/><text x="49.7426%" y="655.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="49.5351%" y="629" width="0.0114%" height="15" fill="rgb(241,192,25)" fg:x="239144" fg:w="55"/><text x="49.7851%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (97 samples, 0.02%)</title><rect x="49.5514%" y="645" width="0.0201%" height="15" fill="rgb(239,187,11)" fg:x="239223" fg:w="97"/><text x="49.8014%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (84 samples, 0.02%)</title><rect x="49.5541%" y="629" width="0.0174%" height="15" fill="rgb(218,202,51)" fg:x="239236" fg:w="84"/><text x="49.8041%" y="639.50"></text></g><g><title>inode_get_bytes (63 samples, 0.01%)</title><rect x="49.5794%" y="629" width="0.0130%" height="15" fill="rgb(225,176,8)" fg:x="239358" fg:w="63"/><text x="49.8294%" y="639.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="49.5811%" y="613" width="0.0114%" height="15" fill="rgb(219,122,41)" fg:x="239366" fg:w="55"/><text x="49.8311%" y="623.50"></text></g><g><title>fill_stack_inode_item (154 samples, 0.03%)</title><rect x="49.5715%" y="645" width="0.0319%" height="15" fill="rgb(248,140,20)" fg:x="239320" fg:w="154"/><text x="49.8215%" y="655.50"></text></g><g><title>map_id_up (53 samples, 0.01%)</title><rect x="49.5925%" y="629" width="0.0110%" height="15" fill="rgb(245,41,37)" fg:x="239421" fg:w="53"/><text x="49.8425%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (693 samples, 0.14%)</title><rect x="49.4854%" y="661" width="0.1435%" height="15" fill="rgb(235,82,39)" fg:x="238904" fg:w="693"/><text x="49.7354%" y="671.50"></text></g><g><title>mutex_unlock (78 samples, 0.02%)</title><rect x="49.6128%" y="645" width="0.0162%" height="15" fill="rgb(230,108,42)" fg:x="239519" fg:w="78"/><text x="49.8628%" y="655.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="49.6329%" y="645" width="0.0135%" height="15" fill="rgb(215,150,50)" fg:x="239616" fg:w="65"/><text x="49.8829%" y="655.50"></text></g><g><title>btrfs_update_inode (955 samples, 0.20%)</title><rect x="49.4703%" y="677" width="0.1978%" height="15" fill="rgb(233,212,5)" fg:x="238831" fg:w="955"/><text x="49.7203%" y="687.50"></text></g><g><title>btrfs_update_root_times (189 samples, 0.04%)</title><rect x="49.6289%" y="661" width="0.0391%" height="15" fill="rgb(245,80,22)" fg:x="239597" fg:w="189"/><text x="49.8789%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (105 samples, 0.02%)</title><rect x="49.6463%" y="645" width="0.0217%" height="15" fill="rgb(238,129,16)" fg:x="239681" fg:w="105"/><text x="49.8963%" y="655.50"></text></g><g><title>read_tsc (61 samples, 0.01%)</title><rect x="49.6554%" y="629" width="0.0126%" height="15" fill="rgb(240,19,0)" fg:x="239725" fg:w="61"/><text x="49.9054%" y="639.50"></text></g><g><title>current_time (70 samples, 0.01%)</title><rect x="49.6681%" y="677" width="0.0145%" height="15" fill="rgb(232,42,35)" fg:x="239786" fg:w="70"/><text x="49.9181%" y="687.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="49.7000%" y="661" width="0.0114%" height="15" fill="rgb(223,130,24)" fg:x="239940" fg:w="55"/><text x="49.9500%" y="671.50"></text></g><g><title>kmem_cache_alloc (173 samples, 0.04%)</title><rect x="49.6826%" y="677" width="0.0358%" height="15" fill="rgb(237,16,22)" fg:x="239856" fg:w="173"/><text x="49.9326%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (28,721 samples, 5.95%)</title><rect x="43.7987%" y="693" width="5.9491%" height="15" fill="rgb(248,192,20)" fg:x="211450" fg:w="28721"/><text x="44.0487%" y="703.50">__btrfs_..</text></g><g><title>kmem_cache_free (142 samples, 0.03%)</title><rect x="49.7184%" y="677" width="0.0294%" height="15" fill="rgb(233,167,2)" fg:x="240029" fg:w="142"/><text x="49.9684%" y="687.50"></text></g><g><title>btrfs_btree_balance_dirty (87 samples, 0.02%)</title><rect x="49.7480%" y="693" width="0.0180%" height="15" fill="rgb(252,71,44)" fg:x="240172" fg:w="87"/><text x="49.9980%" y="703.50"></text></g><g><title>btrfs_tree_unlock (60 samples, 0.01%)</title><rect x="49.7820%" y="629" width="0.0124%" height="15" fill="rgb(238,37,47)" fg:x="240336" fg:w="60"/><text x="50.0320%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (165 samples, 0.03%)</title><rect x="49.7957%" y="629" width="0.0342%" height="15" fill="rgb(214,202,54)" fg:x="240402" fg:w="165"/><text x="50.0457%" y="639.50"></text></g><g><title>_raw_spin_lock (143 samples, 0.03%)</title><rect x="49.8002%" y="613" width="0.0296%" height="15" fill="rgb(254,165,40)" fg:x="240424" fg:w="143"/><text x="50.0502%" y="623.50"></text></g><g><title>btrfs_free_path (488 samples, 0.10%)</title><rect x="49.7723%" y="661" width="0.1011%" height="15" fill="rgb(246,173,38)" fg:x="240289" fg:w="488"/><text x="50.0223%" y="671.50"></text></g><g><title>btrfs_release_path (482 samples, 0.10%)</title><rect x="49.7735%" y="645" width="0.0998%" height="15" fill="rgb(215,3,27)" fg:x="240295" fg:w="482"/><text x="50.0235%" y="655.50"></text></g><g><title>release_extent_buffer (210 samples, 0.04%)</title><rect x="49.8298%" y="629" width="0.0435%" height="15" fill="rgb(239,169,51)" fg:x="240567" fg:w="210"/><text x="50.0798%" y="639.50"></text></g><g><title>_raw_read_lock (51 samples, 0.01%)</title><rect x="49.9481%" y="597" width="0.0106%" height="15" fill="rgb(212,5,25)" fg:x="241138" fg:w="51"/><text x="50.1981%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (82 samples, 0.02%)</title><rect x="49.9433%" y="613" width="0.0170%" height="15" fill="rgb(243,45,17)" fg:x="241115" fg:w="82"/><text x="50.1933%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (171 samples, 0.04%)</title><rect x="49.9400%" y="629" width="0.0354%" height="15" fill="rgb(242,97,9)" fg:x="241099" fg:w="171"/><text x="50.1900%" y="639.50"></text></g><g><title>btrfs_root_node (73 samples, 0.02%)</title><rect x="49.9603%" y="613" width="0.0151%" height="15" fill="rgb(228,71,31)" fg:x="241197" fg:w="73"/><text x="50.2103%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (186 samples, 0.04%)</title><rect x="49.9806%" y="629" width="0.0385%" height="15" fill="rgb(252,184,16)" fg:x="241295" fg:w="186"/><text x="50.2306%" y="639.50"></text></g><g><title>leaf_space_used (154 samples, 0.03%)</title><rect x="49.9873%" y="613" width="0.0319%" height="15" fill="rgb(236,169,46)" fg:x="241327" fg:w="154"/><text x="50.2373%" y="623.50"></text></g><g><title>btrfs_get_32 (104 samples, 0.02%)</title><rect x="49.9976%" y="597" width="0.0215%" height="15" fill="rgb(207,17,47)" fg:x="241377" fg:w="104"/><text x="50.2476%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (74 samples, 0.02%)</title><rect x="50.0192%" y="629" width="0.0153%" height="15" fill="rgb(206,201,28)" fg:x="241481" fg:w="74"/><text x="50.2692%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (127 samples, 0.03%)</title><rect x="50.0345%" y="629" width="0.0263%" height="15" fill="rgb(224,184,23)" fg:x="241555" fg:w="127"/><text x="50.2845%" y="639.50"></text></g><g><title>_raw_write_lock (102 samples, 0.02%)</title><rect x="50.0397%" y="613" width="0.0211%" height="15" fill="rgb(208,139,48)" fg:x="241580" fg:w="102"/><text x="50.2897%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (654 samples, 0.14%)</title><rect x="50.0608%" y="629" width="0.1355%" height="15" fill="rgb(208,130,10)" fg:x="241682" fg:w="654"/><text x="50.3108%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (63 samples, 0.01%)</title><rect x="50.2277%" y="613" width="0.0130%" height="15" fill="rgb(211,213,45)" fg:x="242488" fg:w="63"/><text x="50.4777%" y="623.50"></text></g><g><title>btrfs_get_64 (143 samples, 0.03%)</title><rect x="50.2408%" y="613" width="0.0296%" height="15" fill="rgb(235,100,30)" fg:x="242551" fg:w="143"/><text x="50.4908%" y="623.50"></text></g><g><title>__radix_tree_lookup (507 samples, 0.11%)</title><rect x="50.3197%" y="597" width="0.1050%" height="15" fill="rgb(206,144,31)" fg:x="242932" fg:w="507"/><text x="50.5697%" y="607.50"></text></g><g><title>check_buffer_tree_ref (55 samples, 0.01%)</title><rect x="50.4347%" y="581" width="0.0114%" height="15" fill="rgb(224,200,26)" fg:x="243487" fg:w="55"/><text x="50.6847%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (264 samples, 0.05%)</title><rect x="50.4251%" y="597" width="0.0547%" height="15" fill="rgb(247,104,53)" fg:x="243441" fg:w="264"/><text x="50.6751%" y="607.50"></text></g><g><title>mark_page_accessed (163 samples, 0.03%)</title><rect x="50.4461%" y="581" width="0.0338%" height="15" fill="rgb(220,14,17)" fg:x="243542" fg:w="163"/><text x="50.6961%" y="591.50"></text></g><g><title>find_extent_buffer (962 samples, 0.20%)</title><rect x="50.2826%" y="613" width="0.1993%" height="15" fill="rgb(230,140,40)" fg:x="242753" fg:w="962"/><text x="50.5326%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,518 samples, 0.31%)</title><rect x="50.1963%" y="629" width="0.3144%" height="15" fill="rgb(229,2,41)" fg:x="242336" fg:w="1518"/><text x="50.4463%" y="639.50"></text></g><g><title>read_extent_buffer (139 samples, 0.03%)</title><rect x="50.4819%" y="613" width="0.0288%" height="15" fill="rgb(232,89,16)" fg:x="243715" fg:w="139"/><text x="50.7319%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (62 samples, 0.01%)</title><rect x="50.5480%" y="613" width="0.0128%" height="15" fill="rgb(247,59,52)" fg:x="244034" fg:w="62"/><text x="50.7980%" y="623.50"></text></g><g><title>btrfs_search_slot (3,296 samples, 0.68%)</title><rect x="49.8798%" y="645" width="0.6827%" height="15" fill="rgb(226,110,21)" fg:x="240808" fg:w="3296"/><text x="50.1298%" y="655.50"></text></g><g><title>unlock_up (250 samples, 0.05%)</title><rect x="50.5107%" y="629" width="0.0518%" height="15" fill="rgb(224,176,43)" fg:x="243854" fg:w="250"/><text x="50.7607%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (265 samples, 0.05%)</title><rect x="50.6170%" y="629" width="0.0549%" height="15" fill="rgb(221,73,6)" fg:x="244367" fg:w="265"/><text x="50.8670%" y="639.50"></text></g><g><title>leaf_space_used (230 samples, 0.05%)</title><rect x="50.6242%" y="613" width="0.0476%" height="15" fill="rgb(232,78,19)" fg:x="244402" fg:w="230"/><text x="50.8742%" y="623.50"></text></g><g><title>btrfs_get_32 (155 samples, 0.03%)</title><rect x="50.6397%" y="597" width="0.0321%" height="15" fill="rgb(233,112,48)" fg:x="244477" fg:w="155"/><text x="50.8897%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (142 samples, 0.03%)</title><rect x="50.6718%" y="629" width="0.0294%" height="15" fill="rgb(243,131,47)" fg:x="244632" fg:w="142"/><text x="50.9218%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (97 samples, 0.02%)</title><rect x="50.6812%" y="613" width="0.0201%" height="15" fill="rgb(226,51,1)" fg:x="244677" fg:w="97"/><text x="50.9312%" y="623.50"></text></g><g><title>btrfs_set_token_32 (90 samples, 0.02%)</title><rect x="50.7013%" y="629" width="0.0186%" height="15" fill="rgb(247,58,7)" fg:x="244774" fg:w="90"/><text x="50.9513%" y="639.50"></text></g><g><title>btrfs_unlock_up_safe (53 samples, 0.01%)</title><rect x="50.7199%" y="629" width="0.0110%" height="15" fill="rgb(209,7,32)" fg:x="244864" fg:w="53"/><text x="50.9699%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (4,277 samples, 0.89%)</title><rect x="49.8733%" y="661" width="0.8859%" height="15" fill="rgb(209,39,41)" fg:x="240777" fg:w="4277"/><text x="50.1233%" y="671.50"></text></g><g><title>setup_items_for_insert (950 samples, 0.20%)</title><rect x="50.5625%" y="645" width="0.1968%" height="15" fill="rgb(226,182,46)" fg:x="244104" fg:w="950"/><text x="50.8125%" y="655.50"></text></g><g><title>write_extent_buffer (135 samples, 0.03%)</title><rect x="50.7313%" y="629" width="0.0280%" height="15" fill="rgb(230,219,10)" fg:x="244919" fg:w="135"/><text x="50.9813%" y="639.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="50.7706%" y="645" width="0.0112%" height="15" fill="rgb(227,175,30)" fg:x="245109" fg:w="54"/><text x="51.0206%" y="655.50"></text></g><g><title>kmem_cache_alloc (147 samples, 0.03%)</title><rect x="50.7593%" y="661" width="0.0304%" height="15" fill="rgb(217,2,50)" fg:x="245054" fg:w="147"/><text x="51.0093%" y="671.50"></text></g><g><title>btrfs_orphan_add (5,060 samples, 1.05%)</title><rect x="49.7671%" y="693" width="1.0481%" height="15" fill="rgb(229,160,0)" fg:x="240264" fg:w="5060"/><text x="50.0171%" y="703.50"></text></g><g><title>btrfs_insert_orphan_item (5,050 samples, 1.05%)</title><rect x="49.7691%" y="677" width="1.0460%" height="15" fill="rgb(207,78,37)" fg:x="240274" fg:w="5050"/><text x="50.0191%" y="687.50"></text></g><g><title>kmem_cache_free (123 samples, 0.03%)</title><rect x="50.7897%" y="661" width="0.0255%" height="15" fill="rgb(225,57,0)" fg:x="245201" fg:w="123"/><text x="51.0397%" y="671.50"></text></g><g><title>mutex_lock (127 samples, 0.03%)</title><rect x="50.8179%" y="677" width="0.0263%" height="15" fill="rgb(232,154,2)" fg:x="245337" fg:w="127"/><text x="51.0679%" y="687.50"></text></g><g><title>btrfs_record_unlink_dir (249 samples, 0.05%)</title><rect x="50.8152%" y="693" width="0.0516%" height="15" fill="rgb(241,212,25)" fg:x="245324" fg:w="249"/><text x="51.0652%" y="703.50"></text></g><g><title>mutex_unlock (109 samples, 0.02%)</title><rect x="50.8442%" y="677" width="0.0226%" height="15" fill="rgb(226,69,20)" fg:x="245464" fg:w="109"/><text x="51.0942%" y="687.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="50.8742%" y="677" width="0.0116%" height="15" fill="rgb(247,184,54)" fg:x="245609" fg:w="56"/><text x="51.1242%" y="687.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="50.9415%" y="645" width="0.0106%" height="15" fill="rgb(210,145,0)" fg:x="245934" fg:w="51"/><text x="51.1915%" y="655.50"></text></g><g><title>mutex_lock (78 samples, 0.02%)</title><rect x="50.9523%" y="645" width="0.0162%" height="15" fill="rgb(253,82,12)" fg:x="245986" fg:w="78"/><text x="51.2023%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (299 samples, 0.06%)</title><rect x="50.9194%" y="661" width="0.0619%" height="15" fill="rgb(245,42,11)" fg:x="245827" fg:w="299"/><text x="51.1694%" y="671.50"></text></g><g><title>mutex_unlock (62 samples, 0.01%)</title><rect x="50.9685%" y="645" width="0.0128%" height="15" fill="rgb(219,147,32)" fg:x="246064" fg:w="62"/><text x="51.2185%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (165 samples, 0.03%)</title><rect x="50.9813%" y="661" width="0.0342%" height="15" fill="rgb(246,12,7)" fg:x="246126" fg:w="165"/><text x="51.2313%" y="671.50"></text></g><g><title>_raw_spin_lock (129 samples, 0.03%)</title><rect x="50.9888%" y="645" width="0.0267%" height="15" fill="rgb(243,50,9)" fg:x="246162" fg:w="129"/><text x="51.2388%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (76 samples, 0.02%)</title><rect x="51.0155%" y="661" width="0.0157%" height="15" fill="rgb(219,149,6)" fg:x="246291" fg:w="76"/><text x="51.2655%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (63 samples, 0.01%)</title><rect x="51.0182%" y="645" width="0.0130%" height="15" fill="rgb(241,51,42)" fg:x="246304" fg:w="63"/><text x="51.2682%" y="655.50"></text></g><g><title>inode_get_bytes (79 samples, 0.02%)</title><rect x="51.0416%" y="645" width="0.0164%" height="15" fill="rgb(226,128,27)" fg:x="246417" fg:w="79"/><text x="51.2916%" y="655.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="51.0441%" y="629" width="0.0139%" height="15" fill="rgb(244,144,4)" fg:x="246429" fg:w="67"/><text x="51.2941%" y="639.50"></text></g><g><title>fill_stack_inode_item (168 samples, 0.03%)</title><rect x="51.0312%" y="661" width="0.0348%" height="15" fill="rgb(221,4,13)" fg:x="246367" fg:w="168"/><text x="51.2812%" y="671.50"></text></g><g><title>mutex_lock (54 samples, 0.01%)</title><rect x="51.0660%" y="661" width="0.0112%" height="15" fill="rgb(208,170,28)" fg:x="246535" fg:w="54"/><text x="51.3160%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (975 samples, 0.20%)</title><rect x="50.8860%" y="677" width="0.2020%" height="15" fill="rgb(226,131,13)" fg:x="245666" fg:w="975"/><text x="51.1360%" y="687.50"></text></g><g><title>mutex_unlock (52 samples, 0.01%)</title><rect x="51.0772%" y="661" width="0.0108%" height="15" fill="rgb(215,72,41)" fg:x="246589" fg:w="52"/><text x="51.3272%" y="671.50"></text></g><g><title>btrfs_update_inode (1,230 samples, 0.25%)</title><rect x="50.8670%" y="693" width="0.2548%" height="15" fill="rgb(243,108,20)" fg:x="245574" fg:w="1230"/><text x="51.1170%" y="703.50"></text></g><g><title>btrfs_update_root_times (163 samples, 0.03%)</title><rect x="51.0880%" y="677" width="0.0338%" height="15" fill="rgb(230,189,17)" fg:x="246641" fg:w="163"/><text x="51.3380%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (103 samples, 0.02%)</title><rect x="51.1004%" y="661" width="0.0213%" height="15" fill="rgb(220,50,17)" fg:x="246701" fg:w="103"/><text x="51.3504%" y="671.50"></text></g><g><title>read_tsc (63 samples, 0.01%)</title><rect x="51.1087%" y="645" width="0.0130%" height="15" fill="rgb(248,152,48)" fg:x="246741" fg:w="63"/><text x="51.3587%" y="655.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="51.1688%" y="661" width="0.0137%" height="15" fill="rgb(244,91,11)" fg:x="247031" fg:w="66"/><text x="51.4188%" y="671.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.02%)</title><rect x="51.1971%" y="629" width="0.0211%" height="15" fill="rgb(220,157,5)" fg:x="247168" fg:w="102"/><text x="51.4471%" y="639.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (423 samples, 0.09%)</title><rect x="51.2183%" y="629" width="0.0876%" height="15" fill="rgb(253,137,8)" fg:x="247270" fg:w="423"/><text x="51.4683%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (251 samples, 0.05%)</title><rect x="51.2539%" y="613" width="0.0520%" height="15" fill="rgb(217,137,51)" fg:x="247442" fg:w="251"/><text x="51.5039%" y="623.50"></text></g><g><title>_raw_spin_lock (114 samples, 0.02%)</title><rect x="51.2823%" y="597" width="0.0236%" height="15" fill="rgb(218,209,53)" fg:x="247579" fg:w="114"/><text x="51.5323%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (914 samples, 0.19%)</title><rect x="51.1663%" y="677" width="0.1893%" height="15" fill="rgb(249,137,25)" fg:x="247019" fg:w="914"/><text x="51.4163%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (836 samples, 0.17%)</title><rect x="51.1824%" y="661" width="0.1732%" height="15" fill="rgb(239,155,26)" fg:x="247097" fg:w="836"/><text x="51.4324%" y="671.50"></text></g><g><title>__reserve_bytes (826 samples, 0.17%)</title><rect x="51.1845%" y="645" width="0.1711%" height="15" fill="rgb(227,85,46)" fg:x="247107" fg:w="826"/><text x="51.4345%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (240 samples, 0.05%)</title><rect x="51.3059%" y="629" width="0.0497%" height="15" fill="rgb(251,107,43)" fg:x="247693" fg:w="240"/><text x="51.5559%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (127 samples, 0.03%)</title><rect x="51.3293%" y="613" width="0.0263%" height="15" fill="rgb(234,170,33)" fg:x="247806" fg:w="127"/><text x="51.5793%" y="623.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="51.3442%" y="597" width="0.0114%" height="15" fill="rgb(206,29,35)" fg:x="247878" fg:w="55"/><text x="51.5942%" y="607.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.02%)</title><rect x="51.3945%" y="661" width="0.0151%" height="15" fill="rgb(227,138,25)" fg:x="248121" fg:w="73"/><text x="51.6445%" y="671.50"></text></g><g><title>join_transaction (256 samples, 0.05%)</title><rect x="51.3568%" y="677" width="0.0530%" height="15" fill="rgb(249,131,35)" fg:x="247939" fg:w="256"/><text x="51.6068%" y="687.50"></text></g><g><title>kmem_cache_alloc (170 samples, 0.04%)</title><rect x="51.4099%" y="677" width="0.0352%" height="15" fill="rgb(239,6,40)" fg:x="248195" fg:w="170"/><text x="51.6599%" y="687.50"></text></g><g><title>btrfs_unlink (37,640 samples, 7.80%)</title><rect x="43.6661%" y="709" width="7.7966%" height="15" fill="rgb(246,136,47)" fg:x="210810" fg:w="37640"/><text x="43.9161%" y="719.50">btrfs_unlink</text></g><g><title>start_transaction (1,605 samples, 0.33%)</title><rect x="51.1302%" y="693" width="0.3325%" height="15" fill="rgb(253,58,26)" fg:x="246845" fg:w="1605"/><text x="51.3802%" y="703.50"></text></g><g><title>wait_current_trans (85 samples, 0.02%)</title><rect x="51.4451%" y="677" width="0.0176%" height="15" fill="rgb(237,141,10)" fg:x="248365" fg:w="85"/><text x="51.6951%" y="687.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="51.4507%" y="661" width="0.0120%" height="15" fill="rgb(234,156,12)" fg:x="248392" fg:w="58"/><text x="51.7007%" y="671.50"></text></g><g><title>d_delete (117 samples, 0.02%)</title><rect x="51.4627%" y="709" width="0.0242%" height="15" fill="rgb(243,224,36)" fg:x="248450" fg:w="117"/><text x="51.7127%" y="719.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="51.4674%" y="693" width="0.0195%" height="15" fill="rgb(205,229,51)" fg:x="248473" fg:w="94"/><text x="51.7174%" y="703.50"></text></g><g><title>__srcu_read_lock (102 samples, 0.02%)</title><rect x="51.5141%" y="661" width="0.0211%" height="15" fill="rgb(223,189,4)" fg:x="248698" fg:w="102"/><text x="51.7641%" y="671.50"></text></g><g><title>dentry_unlink_inode (285 samples, 0.06%)</title><rect x="51.4869%" y="709" width="0.0590%" height="15" fill="rgb(249,167,54)" fg:x="248567" fg:w="285"/><text x="51.7369%" y="719.50"></text></g><g><title>fsnotify_destroy_marks (183 samples, 0.04%)</title><rect x="51.5080%" y="693" width="0.0379%" height="15" fill="rgb(218,34,28)" fg:x="248669" fg:w="183"/><text x="51.7580%" y="703.50"></text></g><g><title>fsnotify_grab_connector (169 samples, 0.04%)</title><rect x="51.5109%" y="677" width="0.0350%" height="15" fill="rgb(232,109,42)" fg:x="248683" fg:w="169"/><text x="51.7609%" y="687.50"></text></g><g><title>__srcu_read_unlock (52 samples, 0.01%)</title><rect x="51.5352%" y="661" width="0.0108%" height="15" fill="rgb(248,214,46)" fg:x="248800" fg:w="52"/><text x="51.7852%" y="671.50"></text></g><g><title>down_write (350 samples, 0.07%)</title><rect x="51.5460%" y="709" width="0.0725%" height="15" fill="rgb(244,216,40)" fg:x="248852" fg:w="350"/><text x="51.7960%" y="719.50"></text></g><g><title>fsnotify (227 samples, 0.05%)</title><rect x="51.6184%" y="709" width="0.0470%" height="15" fill="rgb(231,226,31)" fg:x="249202" fg:w="227"/><text x="51.8684%" y="719.50"></text></g><g><title>ihold (60 samples, 0.01%)</title><rect x="51.6655%" y="709" width="0.0124%" height="15" fill="rgb(238,38,43)" fg:x="249429" fg:w="60"/><text x="51.9155%" y="719.50"></text></g><g><title>iput.part.0 (124 samples, 0.03%)</title><rect x="51.6793%" y="709" width="0.0257%" height="15" fill="rgb(208,88,43)" fg:x="249496" fg:w="124"/><text x="51.9293%" y="719.50"></text></g><g><title>_atomic_dec_and_lock (111 samples, 0.02%)</title><rect x="51.6820%" y="693" width="0.0230%" height="15" fill="rgb(205,136,37)" fg:x="249509" fg:w="111"/><text x="51.9320%" y="703.50"></text></g><g><title>inode_permission.part.0 (66 samples, 0.01%)</title><rect x="51.7137%" y="693" width="0.0137%" height="15" fill="rgb(237,34,14)" fg:x="249662" fg:w="66"/><text x="51.9637%" y="703.50"></text></g><g><title>may_delete (117 samples, 0.02%)</title><rect x="51.7050%" y="709" width="0.0242%" height="15" fill="rgb(236,193,44)" fg:x="249620" fg:w="117"/><text x="51.9550%" y="719.50"></text></g><g><title>do_unlinkat (95,694 samples, 19.82%)</title><rect x="31.9265%" y="741" width="19.8216%" height="15" fill="rgb(231,48,10)" fg:x="154134" fg:w="95694"/><text x="32.1765%" y="751.50">do_unlinkat</text></g><g><title>vfs_unlink (39,215 samples, 8.12%)</title><rect x="43.6253%" y="725" width="8.1228%" height="15" fill="rgb(213,141,34)" fg:x="210613" fg:w="39215"/><text x="43.8753%" y="735.50">vfs_unlink</text></g><g><title>up_write (81 samples, 0.02%)</title><rect x="51.7313%" y="709" width="0.0168%" height="15" fill="rgb(249,130,34)" fg:x="249747" fg:w="81"/><text x="51.9813%" y="719.50"></text></g><g><title>do_syscall_64 (107,696 samples, 22.31%)</title><rect x="29.4438%" y="757" width="22.3076%" height="15" fill="rgb(219,42,41)" fg:x="142148" fg:w="107696"/><text x="29.6938%" y="767.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (107,801 samples, 22.33%)</title><rect x="29.4366%" y="773" width="22.3294%" height="15" fill="rgb(224,100,54)" fg:x="142113" fg:w="107801"/><text x="29.6866%" y="783.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (70 samples, 0.01%)</title><rect x="51.7514%" y="757" width="0.0145%" height="15" fill="rgb(229,200,27)" fg:x="249844" fg:w="70"/><text x="52.0014%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (57 samples, 0.01%)</title><rect x="51.7541%" y="741" width="0.0118%" height="15" fill="rgb(217,118,10)" fg:x="249857" fg:w="57"/><text x="52.0041%" y="751.50"></text></g><g><title>syscall_return_via_sysret (90 samples, 0.02%)</title><rect x="51.7680%" y="773" width="0.0186%" height="15" fill="rgb(206,22,3)" fg:x="249924" fg:w="90"/><text x="52.0180%" y="783.50"></text></g><g><title>__GI_unlinkat (108,344 samples, 22.44%)</title><rect x="29.3454%" y="789" width="22.4418%" height="15" fill="rgb(232,163,46)" fg:x="141673" fg:w="108344"/><text x="29.5954%" y="799.50">__GI_unlinkat</text></g><g><title>__closedir (72 samples, 0.01%)</title><rect x="51.7885%" y="789" width="0.0149%" height="15" fill="rgb(206,95,13)" fg:x="250023" fg:w="72"/><text x="52.0385%" y="799.50"></text></g><g><title>_int_free (61 samples, 0.01%)</title><rect x="51.7908%" y="773" width="0.0126%" height="15" fill="rgb(253,154,18)" fg:x="250034" fg:w="61"/><text x="52.0408%" y="783.50"></text></g><g><title>__GI___fcntl64_nocancel (49 samples, 0.01%)</title><rect x="51.8105%" y="773" width="0.0101%" height="15" fill="rgb(219,32,23)" fg:x="250129" fg:w="49"/><text x="52.0605%" y="783.50"></text></g><g><title>__fcntl64_nocancel_adjusted (49 samples, 0.01%)</title><rect x="51.8105%" y="757" width="0.0101%" height="15" fill="rgb(230,191,45)" fg:x="250129" fg:w="49"/><text x="52.0605%" y="767.50"></text></g><g><title>btrfs_getattr (60 samples, 0.01%)</title><rect x="51.8376%" y="693" width="0.0124%" height="15" fill="rgb(229,64,36)" fg:x="250260" fg:w="60"/><text x="52.0876%" y="703.50"></text></g><g><title>do_syscall_64 (146 samples, 0.03%)</title><rect x="51.8264%" y="741" width="0.0302%" height="15" fill="rgb(205,129,25)" fg:x="250206" fg:w="146"/><text x="52.0764%" y="751.50"></text></g><g><title>__do_sys_newfstat (139 samples, 0.03%)</title><rect x="51.8279%" y="725" width="0.0288%" height="15" fill="rgb(254,112,7)" fg:x="250213" fg:w="139"/><text x="52.0779%" y="735.50"></text></g><g><title>vfs_fstat (99 samples, 0.02%)</title><rect x="51.8361%" y="709" width="0.0205%" height="15" fill="rgb(226,53,48)" fg:x="250253" fg:w="99"/><text x="52.0861%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (154 samples, 0.03%)</title><rect x="51.8250%" y="757" width="0.0319%" height="15" fill="rgb(214,153,38)" fg:x="250199" fg:w="154"/><text x="52.0750%" y="767.50"></text></g><g><title>__GI___fxstat (180 samples, 0.04%)</title><rect x="51.8206%" y="773" width="0.0373%" height="15" fill="rgb(243,101,7)" fg:x="250178" fg:w="180"/><text x="52.0706%" y="783.50"></text></g><g><title>__GI___fcntl64_nocancel (52 samples, 0.01%)</title><rect x="51.8583%" y="757" width="0.0108%" height="15" fill="rgb(240,140,22)" fg:x="250360" fg:w="52"/><text x="52.1083%" y="767.50"></text></g><g><title>__fcntl64_nocancel_adjusted (49 samples, 0.01%)</title><rect x="51.8589%" y="741" width="0.0101%" height="15" fill="rgb(235,114,2)" fg:x="250363" fg:w="49"/><text x="52.1089%" y="751.50"></text></g><g><title>__GI___libc_malloc (110 samples, 0.02%)</title><rect x="51.8691%" y="757" width="0.0228%" height="15" fill="rgb(242,59,12)" fg:x="250412" fg:w="110"/><text x="52.1191%" y="767.50"></text></g><g><title>_int_malloc (80 samples, 0.02%)</title><rect x="51.8753%" y="741" width="0.0166%" height="15" fill="rgb(252,134,9)" fg:x="250442" fg:w="80"/><text x="52.1253%" y="751.50"></text></g><g><title>__fdopendir (397 samples, 0.08%)</title><rect x="51.8100%" y="789" width="0.0822%" height="15" fill="rgb(236,4,44)" fg:x="250127" fg:w="397"/><text x="52.0600%" y="799.50"></text></g><g><title>__alloc_dir (166 samples, 0.03%)</title><rect x="51.8579%" y="773" width="0.0344%" height="15" fill="rgb(254,172,41)" fg:x="250358" fg:w="166"/><text x="52.1079%" y="783.50"></text></g><g><title>kmem_cache_alloc (126 samples, 0.03%)</title><rect x="51.9350%" y="645" width="0.0261%" height="15" fill="rgb(244,63,20)" fg:x="250730" fg:w="126"/><text x="52.1850%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (50 samples, 0.01%)</title><rect x="51.9507%" y="629" width="0.0104%" height="15" fill="rgb(250,73,31)" fg:x="250806" fg:w="50"/><text x="52.2007%" y="639.50"></text></g><g><title>__alloc_file (178 samples, 0.04%)</title><rect x="51.9318%" y="661" width="0.0369%" height="15" fill="rgb(241,38,36)" fg:x="250715" fg:w="178"/><text x="52.1818%" y="671.50"></text></g><g><title>alloc_empty_file (193 samples, 0.04%)</title><rect x="51.9298%" y="677" width="0.0400%" height="15" fill="rgb(245,211,2)" fg:x="250705" fg:w="193"/><text x="52.1798%" y="687.50"></text></g><g><title>btrfs_opendir (107 samples, 0.02%)</title><rect x="51.9836%" y="661" width="0.0222%" height="15" fill="rgb(206,120,28)" fg:x="250965" fg:w="107"/><text x="52.2336%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (100 samples, 0.02%)</title><rect x="51.9851%" y="645" width="0.0207%" height="15" fill="rgb(211,59,34)" fg:x="250972" fg:w="100"/><text x="52.2351%" y="655.50"></text></g><g><title>security_file_open (68 samples, 0.01%)</title><rect x="52.0135%" y="661" width="0.0141%" height="15" fill="rgb(233,168,5)" fg:x="251109" fg:w="68"/><text x="52.2635%" y="671.50"></text></g><g><title>do_dentry_open (266 samples, 0.06%)</title><rect x="51.9726%" y="677" width="0.0551%" height="15" fill="rgb(234,33,13)" fg:x="250912" fg:w="266"/><text x="52.2226%" y="687.50"></text></g><g><title>lookup_fast (84 samples, 0.02%)</title><rect x="52.0306%" y="677" width="0.0174%" height="15" fill="rgb(231,150,26)" fg:x="251192" fg:w="84"/><text x="52.2806%" y="687.50"></text></g><g><title>__d_lookup_rcu (80 samples, 0.02%)</title><rect x="52.0315%" y="661" width="0.0166%" height="15" fill="rgb(217,191,4)" fg:x="251196" fg:w="80"/><text x="52.2815%" y="671.50"></text></g><g><title>do_filp_open (683 samples, 0.14%)</title><rect x="51.9240%" y="709" width="0.1415%" height="15" fill="rgb(246,198,38)" fg:x="250677" fg:w="683"/><text x="52.1740%" y="719.50"></text></g><g><title>path_openat (671 samples, 0.14%)</title><rect x="51.9265%" y="693" width="0.1390%" height="15" fill="rgb(245,64,37)" fg:x="250689" fg:w="671"/><text x="52.1765%" y="703.50"></text></g><g><title>getname_flags.part.0 (94 samples, 0.02%)</title><rect x="52.0702%" y="709" width="0.0195%" height="15" fill="rgb(250,30,36)" fg:x="251383" fg:w="94"/><text x="52.3202%" y="719.50"></text></g><g><title>do_syscall_64 (905 samples, 0.19%)</title><rect x="51.9053%" y="757" width="0.1875%" height="15" fill="rgb(217,86,53)" fg:x="250587" fg:w="905"/><text x="52.1553%" y="767.50"></text></g><g><title>__x64_sys_openat (895 samples, 0.19%)</title><rect x="51.9074%" y="741" width="0.1854%" height="15" fill="rgb(228,157,16)" fg:x="250597" fg:w="895"/><text x="52.1574%" y="751.50"></text></g><g><title>do_sys_openat2 (886 samples, 0.18%)</title><rect x="51.9093%" y="725" width="0.1835%" height="15" fill="rgb(217,59,31)" fg:x="250606" fg:w="886"/><text x="52.1593%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (914 samples, 0.19%)</title><rect x="51.9045%" y="773" width="0.1893%" height="15" fill="rgb(237,138,41)" fg:x="250583" fg:w="914"/><text x="52.1545%" y="783.50"></text></g><g><title>__libc_openat64 (963 samples, 0.20%)</title><rect x="51.8958%" y="789" width="0.1995%" height="15" fill="rgb(227,91,49)" fg:x="250541" fg:w="963"/><text x="52.1458%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (159 samples, 0.03%)</title><rect x="52.1379%" y="773" width="0.0329%" height="15" fill="rgb(247,21,44)" fg:x="251710" fg:w="159"/><text x="52.3879%" y="783.50"></text></g><g><title>__list_add_valid (50 samples, 0.01%)</title><rect x="52.2693%" y="677" width="0.0104%" height="15" fill="rgb(219,210,51)" fg:x="252344" fg:w="50"/><text x="52.5193%" y="687.50"></text></g><g><title>_raw_spin_lock (104 samples, 0.02%)</title><rect x="52.2796%" y="677" width="0.0215%" height="15" fill="rgb(209,140,6)" fg:x="252394" fg:w="104"/><text x="52.5296%" y="687.50"></text></g><g><title>d_lru_add (446 samples, 0.09%)</title><rect x="52.2220%" y="709" width="0.0924%" height="15" fill="rgb(221,188,24)" fg:x="252116" fg:w="446"/><text x="52.4720%" y="719.50"></text></g><g><title>list_lru_add (425 samples, 0.09%)</title><rect x="52.2264%" y="693" width="0.0880%" height="15" fill="rgb(232,154,20)" fg:x="252137" fg:w="425"/><text x="52.4764%" y="703.50"></text></g><g><title>mem_cgroup_from_obj (63 samples, 0.01%)</title><rect x="52.3014%" y="677" width="0.0130%" height="15" fill="rgb(244,137,50)" fg:x="252499" fg:w="63"/><text x="52.5514%" y="687.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="52.3316%" y="693" width="0.0122%" height="15" fill="rgb(225,185,43)" fg:x="252645" fg:w="59"/><text x="52.5816%" y="703.50"></text></g><g><title>lockref_put_or_lock (143 samples, 0.03%)</title><rect x="52.3144%" y="709" width="0.0296%" height="15" fill="rgb(213,205,38)" fg:x="252562" fg:w="143"/><text x="52.5644%" y="719.50"></text></g><g><title>dput (699 samples, 0.14%)</title><rect x="52.1999%" y="725" width="0.1448%" height="15" fill="rgb(236,73,12)" fg:x="252009" fg:w="699"/><text x="52.4499%" y="735.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (65 samples, 0.01%)</title><rect x="52.3882%" y="629" width="0.0135%" height="15" fill="rgb(235,219,13)" fg:x="252918" fg:w="65"/><text x="52.6382%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (283 samples, 0.06%)</title><rect x="52.4033%" y="629" width="0.0586%" height="15" fill="rgb(218,59,36)" fg:x="252991" fg:w="283"/><text x="52.6533%" y="639.50"></text></g><g><title>_raw_spin_lock (212 samples, 0.04%)</title><rect x="52.4180%" y="613" width="0.0439%" height="15" fill="rgb(205,110,39)" fg:x="253062" fg:w="212"/><text x="52.6680%" y="623.50"></text></g><g><title>btrfs_free_path (596 samples, 0.12%)</title><rect x="52.3753%" y="661" width="0.1235%" height="15" fill="rgb(218,206,42)" fg:x="252856" fg:w="596"/><text x="52.6253%" y="671.50"></text></g><g><title>btrfs_release_path (581 samples, 0.12%)</title><rect x="52.3784%" y="645" width="0.1203%" height="15" fill="rgb(248,125,24)" fg:x="252871" fg:w="581"/><text x="52.6284%" y="655.50"></text></g><g><title>release_extent_buffer (178 samples, 0.04%)</title><rect x="52.4619%" y="629" width="0.0369%" height="15" fill="rgb(242,28,27)" fg:x="253274" fg:w="178"/><text x="52.7119%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (84 samples, 0.02%)</title><rect x="52.5800%" y="613" width="0.0174%" height="15" fill="rgb(216,228,15)" fg:x="253844" fg:w="84"/><text x="52.8300%" y="623.50"></text></g><g><title>_raw_read_lock (55 samples, 0.01%)</title><rect x="52.5860%" y="597" width="0.0114%" height="15" fill="rgb(235,116,46)" fg:x="253873" fg:w="55"/><text x="52.8360%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (276 samples, 0.06%)</title><rect x="52.5754%" y="629" width="0.0572%" height="15" fill="rgb(224,18,32)" fg:x="253822" fg:w="276"/><text x="52.8254%" y="639.50"></text></g><g><title>btrfs_root_node (170 samples, 0.04%)</title><rect x="52.5974%" y="613" width="0.0352%" height="15" fill="rgb(252,5,12)" fg:x="253928" fg:w="170"/><text x="52.8474%" y="623.50"></text></g><g><title>dequeue_task_fair (64 samples, 0.01%)</title><rect x="52.6477%" y="581" width="0.0133%" height="15" fill="rgb(251,36,5)" fg:x="254171" fg:w="64"/><text x="52.8977%" y="591.50"></text></g><g><title>dequeue_entity (60 samples, 0.01%)</title><rect x="52.6485%" y="565" width="0.0124%" height="15" fill="rgb(217,53,14)" fg:x="254175" fg:w="60"/><text x="52.8985%" y="575.50"></text></g><g><title>__btrfs_tree_read_lock (205 samples, 0.04%)</title><rect x="52.6326%" y="629" width="0.0425%" height="15" fill="rgb(215,86,45)" fg:x="254098" fg:w="205"/><text x="52.8826%" y="639.50"></text></g><g><title>schedule (157 samples, 0.03%)</title><rect x="52.6425%" y="613" width="0.0325%" height="15" fill="rgb(242,169,11)" fg:x="254146" fg:w="157"/><text x="52.8925%" y="623.50"></text></g><g><title>__schedule (157 samples, 0.03%)</title><rect x="52.6425%" y="597" width="0.0325%" height="15" fill="rgb(211,213,45)" fg:x="254146" fg:w="157"/><text x="52.8925%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (192 samples, 0.04%)</title><rect x="52.6837%" y="629" width="0.0398%" height="15" fill="rgb(205,88,11)" fg:x="254345" fg:w="192"/><text x="52.9337%" y="639.50"></text></g><g><title>btrfs_set_lock_blocking_read (130 samples, 0.03%)</title><rect x="52.6966%" y="613" width="0.0269%" height="15" fill="rgb(252,69,26)" fg:x="254407" fg:w="130"/><text x="52.9466%" y="623.50"></text></g><g><title>_raw_read_lock (141 samples, 0.03%)</title><rect x="52.7308%" y="613" width="0.0292%" height="15" fill="rgb(246,123,37)" fg:x="254572" fg:w="141"/><text x="52.9808%" y="623.50"></text></g><g><title>btrfs_tree_read_lock_atomic (307 samples, 0.06%)</title><rect x="52.7235%" y="629" width="0.0636%" height="15" fill="rgb(212,205,5)" fg:x="254537" fg:w="307"/><text x="52.9735%" y="639.50"></text></g><g><title>queued_read_lock_slowpath (131 samples, 0.03%)</title><rect x="52.7600%" y="613" width="0.0271%" height="15" fill="rgb(253,148,0)" fg:x="254713" fg:w="131"/><text x="53.0100%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (114 samples, 0.02%)</title><rect x="52.7871%" y="629" width="0.0236%" height="15" fill="rgb(239,22,4)" fg:x="254844" fg:w="114"/><text x="53.0371%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,149 samples, 0.24%)</title><rect x="52.8138%" y="629" width="0.2380%" height="15" fill="rgb(226,26,53)" fg:x="254973" fg:w="1149"/><text x="53.0638%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (100 samples, 0.02%)</title><rect x="53.0901%" y="613" width="0.0207%" height="15" fill="rgb(225,229,45)" fg:x="256307" fg:w="100"/><text x="53.3401%" y="623.50"></text></g><g><title>verify_parent_transid (62 samples, 0.01%)</title><rect x="53.0980%" y="597" width="0.0128%" height="15" fill="rgb(220,60,37)" fg:x="256345" fg:w="62"/><text x="53.3480%" y="607.50"></text></g><g><title>btrfs_get_64 (140 samples, 0.03%)</title><rect x="53.1109%" y="613" width="0.0290%" height="15" fill="rgb(217,180,35)" fg:x="256407" fg:w="140"/><text x="53.3609%" y="623.50"></text></g><g><title>btrfs_verify_level_key (65 samples, 0.01%)</title><rect x="53.1430%" y="613" width="0.0135%" height="15" fill="rgb(229,7,53)" fg:x="256562" fg:w="65"/><text x="53.3930%" y="623.50"></text></g><g><title>__radix_tree_lookup (781 samples, 0.16%)</title><rect x="53.2080%" y="597" width="0.1618%" height="15" fill="rgb(254,137,3)" fg:x="256876" fg:w="781"/><text x="53.4580%" y="607.50"></text></g><g><title>check_buffer_tree_ref (62 samples, 0.01%)</title><rect x="53.3832%" y="581" width="0.0128%" height="15" fill="rgb(215,140,41)" fg:x="257722" fg:w="62"/><text x="53.6332%" y="591.50"></text></g><g><title>mark_page_accessed (214 samples, 0.04%)</title><rect x="53.3961%" y="581" width="0.0443%" height="15" fill="rgb(250,80,15)" fg:x="257784" fg:w="214"/><text x="53.6461%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (343 samples, 0.07%)</title><rect x="53.3698%" y="597" width="0.0710%" height="15" fill="rgb(252,191,6)" fg:x="257657" fg:w="343"/><text x="53.6198%" y="607.50"></text></g><g><title>find_extent_buffer (1,381 samples, 0.29%)</title><rect x="53.1564%" y="613" width="0.2861%" height="15" fill="rgb(246,217,18)" fg:x="256627" fg:w="1381"/><text x="53.4064%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (2,083 samples, 0.43%)</title><rect x="53.0518%" y="629" width="0.4315%" height="15" fill="rgb(223,93,7)" fg:x="256122" fg:w="2083"/><text x="53.3018%" y="639.50"></text></g><g><title>read_extent_buffer (197 samples, 0.04%)</title><rect x="53.4425%" y="613" width="0.0408%" height="15" fill="rgb(225,55,52)" fg:x="258008" fg:w="197"/><text x="53.6925%" y="623.50"></text></g><g><title>btrfs_search_slot (4,853 samples, 1.01%)</title><rect x="52.5040%" y="645" width="1.0052%" height="15" fill="rgb(240,31,24)" fg:x="253477" fg:w="4853"/><text x="52.7540%" y="655.50"></text></g><g><title>unlock_up (125 samples, 0.03%)</title><rect x="53.4833%" y="629" width="0.0259%" height="15" fill="rgb(205,56,52)" fg:x="258205" fg:w="125"/><text x="53.7333%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (5,045 samples, 1.04%)</title><rect x="52.4988%" y="661" width="1.0450%" height="15" fill="rgb(246,146,12)" fg:x="253452" fg:w="5045"/><text x="52.7488%" y="671.50"></text></g><g><title>crc32c (167 samples, 0.03%)</title><rect x="53.5092%" y="645" width="0.0346%" height="15" fill="rgb(239,84,36)" fg:x="258330" fg:w="167"/><text x="53.7592%" y="655.50"></text></g><g><title>crypto_shash_update (130 samples, 0.03%)</title><rect x="53.5168%" y="629" width="0.0269%" height="15" fill="rgb(207,41,40)" fg:x="258367" fg:w="130"/><text x="53.7668%" y="639.50"></text></g><g><title>kmem_cache_alloc (237 samples, 0.05%)</title><rect x="53.5438%" y="661" width="0.0491%" height="15" fill="rgb(241,179,25)" fg:x="258497" fg:w="237"/><text x="53.7938%" y="671.50"></text></g><g><title>btrfs_lookup (6,086 samples, 1.26%)</title><rect x="52.3554%" y="693" width="1.2606%" height="15" fill="rgb(210,0,34)" fg:x="252760" fg:w="6086"/><text x="52.6054%" y="703.50"></text></g><g><title>btrfs_lookup_dentry (6,072 samples, 1.26%)</title><rect x="52.3583%" y="677" width="1.2577%" height="15" fill="rgb(225,217,29)" fg:x="252774" fg:w="6072"/><text x="52.6083%" y="687.50"></text></g><g><title>kmem_cache_free (112 samples, 0.02%)</title><rect x="53.5929%" y="661" width="0.0232%" height="15" fill="rgb(216,191,38)" fg:x="258734" fg:w="112"/><text x="53.8429%" y="671.50"></text></g><g><title>__slab_alloc (136 samples, 0.03%)</title><rect x="53.6923%" y="645" width="0.0282%" height="15" fill="rgb(232,140,52)" fg:x="259214" fg:w="136"/><text x="53.9423%" y="655.50"></text></g><g><title>___slab_alloc (129 samples, 0.03%)</title><rect x="53.6937%" y="629" width="0.0267%" height="15" fill="rgb(223,158,51)" fg:x="259221" fg:w="129"/><text x="53.9437%" y="639.50"></text></g><g><title>get_partial_node.part.0 (55 samples, 0.01%)</title><rect x="53.7091%" y="613" width="0.0114%" height="15" fill="rgb(235,29,51)" fg:x="259295" fg:w="55"/><text x="53.9591%" y="623.50"></text></g><g><title>__mod_memcg_lruvec_state (124 samples, 0.03%)</title><rect x="53.7911%" y="629" width="0.0257%" height="15" fill="rgb(215,181,18)" fg:x="259691" fg:w="124"/><text x="54.0411%" y="639.50"></text></g><g><title>__mod_memcg_state.part.0 (83 samples, 0.02%)</title><rect x="53.7996%" y="613" width="0.0172%" height="15" fill="rgb(227,125,34)" fg:x="259732" fg:w="83"/><text x="54.0496%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (487 samples, 0.10%)</title><rect x="53.7205%" y="645" width="0.1009%" height="15" fill="rgb(230,197,49)" fg:x="259350" fg:w="487"/><text x="53.9705%" y="655.50"></text></g><g><title>memset_erms (69 samples, 0.01%)</title><rect x="53.8220%" y="645" width="0.0143%" height="15" fill="rgb(239,141,16)" fg:x="259840" fg:w="69"/><text x="54.0720%" y="655.50"></text></g><g><title>obj_cgroup_charge (160 samples, 0.03%)</title><rect x="53.8555%" y="629" width="0.0331%" height="15" fill="rgb(225,105,43)" fg:x="260002" fg:w="160"/><text x="54.1055%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,137 samples, 0.24%)</title><rect x="53.6533%" y="661" width="0.2355%" height="15" fill="rgb(214,131,14)" fg:x="259026" fg:w="1137"/><text x="53.9033%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (251 samples, 0.05%)</title><rect x="53.8369%" y="645" width="0.0520%" height="15" fill="rgb(229,177,11)" fg:x="259912" fg:w="251"/><text x="54.0869%" y="655.50"></text></g><g><title>__d_alloc (1,336 samples, 0.28%)</title><rect x="53.6225%" y="677" width="0.2767%" height="15" fill="rgb(231,180,14)" fg:x="258877" fg:w="1336"/><text x="53.8725%" y="687.50"></text></g><g><title>d_alloc (1,439 samples, 0.30%)</title><rect x="53.6161%" y="693" width="0.2981%" height="15" fill="rgb(232,88,2)" fg:x="258846" fg:w="1439"/><text x="53.8661%" y="703.50"></text></g><g><title>_raw_spin_lock (50 samples, 0.01%)</title><rect x="53.9038%" y="677" width="0.0104%" height="15" fill="rgb(205,220,8)" fg:x="260235" fg:w="50"/><text x="54.1538%" y="687.50"></text></g><g><title>__d_rehash (95 samples, 0.02%)</title><rect x="53.9218%" y="661" width="0.0197%" height="15" fill="rgb(225,23,53)" fg:x="260322" fg:w="95"/><text x="54.1718%" y="671.50"></text></g><g><title>d_splice_alias (208 samples, 0.04%)</title><rect x="53.9141%" y="693" width="0.0431%" height="15" fill="rgb(213,62,29)" fg:x="260285" fg:w="208"/><text x="54.1641%" y="703.50"></text></g><g><title>__d_add (192 samples, 0.04%)</title><rect x="53.9174%" y="677" width="0.0398%" height="15" fill="rgb(227,75,7)" fg:x="260301" fg:w="192"/><text x="54.1674%" y="687.50"></text></g><g><title>_raw_spin_lock (76 samples, 0.02%)</title><rect x="53.9415%" y="661" width="0.0157%" height="15" fill="rgb(207,105,14)" fg:x="260417" fg:w="76"/><text x="54.1915%" y="671.50"></text></g><g><title>__lookup_hash (8,319 samples, 1.72%)</title><rect x="52.3515%" y="709" width="1.7232%" height="15" fill="rgb(245,62,29)" fg:x="252741" fg:w="8319"/><text x="52.6015%" y="719.50"></text></g><g><title>lookup_dcache (567 samples, 0.12%)</title><rect x="53.9572%" y="693" width="0.1174%" height="15" fill="rgb(236,202,4)" fg:x="260493" fg:w="567"/><text x="54.2072%" y="703.50"></text></g><g><title>d_lookup (556 samples, 0.12%)</title><rect x="53.9595%" y="677" width="0.1152%" height="15" fill="rgb(250,67,1)" fg:x="260504" fg:w="556"/><text x="54.2095%" y="687.50"></text></g><g><title>__d_lookup (532 samples, 0.11%)</title><rect x="53.9645%" y="661" width="0.1102%" height="15" fill="rgb(253,115,44)" fg:x="260528" fg:w="532"/><text x="54.2145%" y="671.50"></text></g><g><title>down_write (67 samples, 0.01%)</title><rect x="54.0747%" y="709" width="0.0139%" height="15" fill="rgb(251,139,18)" fg:x="261060" fg:w="67"/><text x="54.3247%" y="719.50"></text></g><g><title>__legitimize_mnt (137 samples, 0.03%)</title><rect x="54.1291%" y="629" width="0.0284%" height="15" fill="rgb(218,22,32)" fg:x="261323" fg:w="137"/><text x="54.3791%" y="639.50"></text></g><g><title>__legitimize_path (250 samples, 0.05%)</title><rect x="54.1237%" y="645" width="0.0518%" height="15" fill="rgb(243,53,5)" fg:x="261297" fg:w="250"/><text x="54.3737%" y="655.50"></text></g><g><title>lockref_get_not_dead (87 samples, 0.02%)</title><rect x="54.1575%" y="629" width="0.0180%" height="15" fill="rgb(227,56,16)" fg:x="261460" fg:w="87"/><text x="54.4075%" y="639.50"></text></g><g><title>complete_walk (334 samples, 0.07%)</title><rect x="54.1128%" y="677" width="0.0692%" height="15" fill="rgb(245,53,0)" fg:x="261244" fg:w="334"/><text x="54.3628%" y="687.50"></text></g><g><title>try_to_unlazy (317 samples, 0.07%)</title><rect x="54.1163%" y="661" width="0.0657%" height="15" fill="rgb(216,170,35)" fg:x="261261" fg:w="317"/><text x="54.3663%" y="671.50"></text></g><g><title>btrfs_permission (85 samples, 0.02%)</title><rect x="54.5877%" y="645" width="0.0176%" height="15" fill="rgb(211,200,8)" fg:x="263537" fg:w="85"/><text x="54.8377%" y="655.50"></text></g><g><title>inode_permission.part.0 (1,290 samples, 0.27%)</title><rect x="54.4154%" y="661" width="0.2672%" height="15" fill="rgb(228,204,44)" fg:x="262705" fg:w="1290"/><text x="54.6654%" y="671.50"></text></g><g><title>generic_permission (373 samples, 0.08%)</title><rect x="54.6053%" y="645" width="0.0773%" height="15" fill="rgb(214,121,17)" fg:x="263622" fg:w="373"/><text x="54.8553%" y="655.50"></text></g><g><title>security_inode_permission (136 samples, 0.03%)</title><rect x="54.6826%" y="661" width="0.0282%" height="15" fill="rgb(233,64,38)" fg:x="263995" fg:w="136"/><text x="54.9326%" y="671.50"></text></g><g><title>__d_lookup_rcu (2,200 samples, 0.46%)</title><rect x="54.9142%" y="629" width="0.4557%" height="15" fill="rgb(253,54,19)" fg:x="265113" fg:w="2200"/><text x="55.1642%" y="639.50"></text></g><g><title>lookup_fast (2,758 samples, 0.57%)</title><rect x="54.7990%" y="645" width="0.5713%" height="15" fill="rgb(253,94,18)" fg:x="264557" fg:w="2758"/><text x="55.0490%" y="655.50"></text></g><g><title>link_path_walk.part.0 (6,359 samples, 1.32%)</title><rect x="54.1820%" y="677" width="1.3172%" height="15" fill="rgb(227,57,52)" fg:x="261578" fg:w="6359"/><text x="54.4320%" y="687.50"></text></g><g><title>walk_component (3,806 samples, 0.79%)</title><rect x="54.7108%" y="661" width="0.7884%" height="15" fill="rgb(230,228,50)" fg:x="264131" fg:w="3806"/><text x="54.9608%" y="671.50"></text></g><g><title>step_into (622 samples, 0.13%)</title><rect x="55.3703%" y="645" width="0.1288%" height="15" fill="rgb(217,205,27)" fg:x="267315" fg:w="622"/><text x="55.6203%" y="655.50"></text></g><g><title>__lookup_mnt (64 samples, 0.01%)</title><rect x="55.4859%" y="629" width="0.0133%" height="15" fill="rgb(252,71,50)" fg:x="267873" fg:w="64"/><text x="55.7359%" y="639.50"></text></g><g><title>path_init (357 samples, 0.07%)</title><rect x="55.4991%" y="677" width="0.0739%" height="15" fill="rgb(209,86,4)" fg:x="267937" fg:w="357"/><text x="55.7491%" y="687.50"></text></g><g><title>nd_jump_root (273 samples, 0.06%)</title><rect x="55.5165%" y="661" width="0.0565%" height="15" fill="rgb(229,94,0)" fg:x="268021" fg:w="273"/><text x="55.7665%" y="671.50"></text></g><g><title>set_root (227 samples, 0.05%)</title><rect x="55.5261%" y="645" width="0.0470%" height="15" fill="rgb(252,223,21)" fg:x="268067" fg:w="227"/><text x="55.7761%" y="655.50"></text></g><g><title>filename_parentat (7,190 samples, 1.49%)</title><rect x="54.0885%" y="709" width="1.4893%" height="15" fill="rgb(230,210,4)" fg:x="261127" fg:w="7190"/><text x="54.3385%" y="719.50"></text></g><g><title>path_parentat (7,103 samples, 1.47%)</title><rect x="54.1066%" y="693" width="1.4713%" height="15" fill="rgb(240,149,38)" fg:x="261214" fg:w="7103"/><text x="54.3566%" y="703.50"></text></g><g><title>kmem_cache_free (125 samples, 0.03%)</title><rect x="55.5778%" y="709" width="0.0259%" height="15" fill="rgb(254,105,20)" fg:x="268317" fg:w="125"/><text x="55.8278%" y="719.50"></text></g><g><title>__mnt_want_write (84 samples, 0.02%)</title><rect x="55.6166%" y="693" width="0.0174%" height="15" fill="rgb(253,87,46)" fg:x="268504" fg:w="84"/><text x="55.8666%" y="703.50"></text></g><g><title>mnt_want_write (163 samples, 0.03%)</title><rect x="55.6037%" y="709" width="0.0338%" height="15" fill="rgb(253,116,33)" fg:x="268442" fg:w="163"/><text x="55.8537%" y="719.50"></text></g><g><title>filename_create (15,907 samples, 3.29%)</title><rect x="52.3447%" y="725" width="3.2949%" height="15" fill="rgb(229,198,5)" fg:x="252708" fg:w="15907"/><text x="52.5947%" y="735.50">fil..</text></g><g><title>memcg_slab_post_alloc_hook (69 samples, 0.01%)</title><rect x="55.7116%" y="693" width="0.0143%" height="15" fill="rgb(242,38,37)" fg:x="268963" fg:w="69"/><text x="55.9616%" y="703.50"></text></g><g><title>memset_erms (854 samples, 0.18%)</title><rect x="55.7272%" y="693" width="0.1769%" height="15" fill="rgb(242,69,53)" fg:x="269038" fg:w="854"/><text x="55.9772%" y="703.50"></text></g><g><title>kmem_cache_alloc (1,261 samples, 0.26%)</title><rect x="55.6644%" y="709" width="0.2612%" height="15" fill="rgb(249,80,16)" fg:x="268735" fg:w="1261"/><text x="55.9144%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (104 samples, 0.02%)</title><rect x="55.9041%" y="693" width="0.0215%" height="15" fill="rgb(206,128,11)" fg:x="269892" fg:w="104"/><text x="56.1541%" y="703.50"></text></g><g><title>__check_heap_object (163 samples, 0.03%)</title><rect x="56.1199%" y="677" width="0.0338%" height="15" fill="rgb(212,35,20)" fg:x="270934" fg:w="163"/><text x="56.3699%" y="687.50"></text></g><g><title>__virt_addr_valid (264 samples, 0.05%)</title><rect x="56.1537%" y="677" width="0.0547%" height="15" fill="rgb(236,79,13)" fg:x="271097" fg:w="264"/><text x="56.4037%" y="687.50"></text></g><g><title>__check_object_size (594 samples, 0.12%)</title><rect x="56.0882%" y="693" width="0.1230%" height="15" fill="rgb(233,123,3)" fg:x="270781" fg:w="594"/><text x="56.3382%" y="703.50"></text></g><g><title>getname_flags.part.0 (2,733 samples, 0.57%)</title><rect x="55.6458%" y="725" width="0.5661%" height="15" fill="rgb(214,93,52)" fg:x="268645" fg:w="2733"/><text x="55.8958%" y="735.50"></text></g><g><title>strncpy_from_user (1,382 samples, 0.29%)</title><rect x="55.9256%" y="709" width="0.2863%" height="15" fill="rgb(251,37,40)" fg:x="269996" fg:w="1382"/><text x="56.1756%" y="719.50"></text></g><g><title>kmem_cache_free (174 samples, 0.04%)</title><rect x="56.2119%" y="725" width="0.0360%" height="15" fill="rgb(227,80,54)" fg:x="271378" fg:w="174"/><text x="56.4619%" y="735.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (53 samples, 0.01%)</title><rect x="56.2369%" y="709" width="0.0110%" height="15" fill="rgb(254,48,11)" fg:x="271499" fg:w="53"/><text x="56.4869%" y="719.50"></text></g><g><title>apparmor_path_symlink (120 samples, 0.02%)</title><rect x="56.2722%" y="709" width="0.0249%" height="15" fill="rgb(235,193,26)" fg:x="271669" fg:w="120"/><text x="56.5222%" y="719.50"></text></g><g><title>security_path_symlink (413 samples, 0.09%)</title><rect x="56.2587%" y="725" width="0.0855%" height="15" fill="rgb(229,99,21)" fg:x="271604" fg:w="413"/><text x="56.5087%" y="735.50"></text></g><g><title>tomoyo_path_symlink (228 samples, 0.05%)</title><rect x="56.2970%" y="709" width="0.0472%" height="15" fill="rgb(211,140,41)" fg:x="271789" fg:w="228"/><text x="56.5470%" y="719.50"></text></g><g><title>tomoyo_path_perm (217 samples, 0.04%)</title><rect x="56.2993%" y="693" width="0.0449%" height="15" fill="rgb(240,227,30)" fg:x="271800" fg:w="217"/><text x="56.5493%" y="703.50"></text></g><g><title>tomoyo_init_request_info (119 samples, 0.02%)</title><rect x="56.3196%" y="677" width="0.0246%" height="15" fill="rgb(215,224,45)" fg:x="271898" fg:w="119"/><text x="56.5696%" y="687.50"></text></g><g><title>up_write (72 samples, 0.01%)</title><rect x="56.3442%" y="725" width="0.0149%" height="15" fill="rgb(206,123,31)" fg:x="272017" fg:w="72"/><text x="56.5942%" y="735.50"></text></g><g><title>btrfs_put_transaction (88 samples, 0.02%)</title><rect x="56.4648%" y="677" width="0.0182%" height="15" fill="rgb(210,138,16)" fg:x="272599" fg:w="88"/><text x="56.7148%" y="687.50"></text></g><g><title>_raw_spin_lock (159 samples, 0.03%)</title><rect x="56.5000%" y="645" width="0.0329%" height="15" fill="rgb(228,57,28)" fg:x="272769" fg:w="159"/><text x="56.7500%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (267 samples, 0.06%)</title><rect x="56.4853%" y="677" width="0.0553%" height="15" fill="rgb(242,170,10)" fg:x="272698" fg:w="267"/><text x="56.7353%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (248 samples, 0.05%)</title><rect x="56.4892%" y="661" width="0.0514%" height="15" fill="rgb(228,214,39)" fg:x="272717" fg:w="248"/><text x="56.7392%" y="671.50"></text></g><g><title>__btrfs_end_transaction (684 samples, 0.14%)</title><rect x="56.4200%" y="693" width="0.1417%" height="15" fill="rgb(218,179,33)" fg:x="272383" fg:w="684"/><text x="56.6700%" y="703.50"></text></g><g><title>kmem_cache_free (102 samples, 0.02%)</title><rect x="56.5406%" y="677" width="0.0211%" height="15" fill="rgb(235,193,39)" fg:x="272965" fg:w="102"/><text x="56.7906%" y="687.50"></text></g><g><title>btrfs_comp_cpu_keys (152 samples, 0.03%)</title><rect x="56.6829%" y="629" width="0.0315%" height="15" fill="rgb(219,221,36)" fg:x="273652" fg:w="152"/><text x="56.9329%" y="639.50"></text></g><g><title>__btrfs_add_delayed_item (455 samples, 0.09%)</title><rect x="56.6467%" y="645" width="0.0942%" height="15" fill="rgb(248,218,19)" fg:x="273477" fg:w="455"/><text x="56.8967%" y="655.50"></text></g><g><title>rb_insert_color (128 samples, 0.03%)</title><rect x="56.7144%" y="629" width="0.0265%" height="15" fill="rgb(205,50,9)" fg:x="273804" fg:w="128"/><text x="56.9644%" y="639.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="56.7658%" y="629" width="0.0110%" height="15" fill="rgb(238,81,28)" fg:x="274052" fg:w="53"/><text x="57.0158%" y="639.50"></text></g><g><title>mutex_lock (79 samples, 0.02%)</title><rect x="56.7769%" y="629" width="0.0164%" height="15" fill="rgb(235,110,19)" fg:x="274106" fg:w="79"/><text x="57.0269%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (319 samples, 0.07%)</title><rect x="56.7409%" y="645" width="0.0661%" height="15" fill="rgb(214,7,14)" fg:x="273932" fg:w="319"/><text x="56.9909%" y="655.50"></text></g><g><title>mutex_unlock (66 samples, 0.01%)</title><rect x="56.7933%" y="629" width="0.0137%" height="15" fill="rgb(211,77,3)" fg:x="274185" fg:w="66"/><text x="57.0433%" y="639.50"></text></g><g><title>__slab_alloc (133 samples, 0.03%)</title><rect x="56.8339%" y="629" width="0.0275%" height="15" fill="rgb(229,5,9)" fg:x="274381" fg:w="133"/><text x="57.0839%" y="639.50"></text></g><g><title>___slab_alloc (125 samples, 0.03%)</title><rect x="56.8356%" y="613" width="0.0259%" height="15" fill="rgb(225,90,11)" fg:x="274389" fg:w="125"/><text x="57.0856%" y="623.50"></text></g><g><title>get_partial_node.part.0 (53 samples, 0.01%)</title><rect x="56.8505%" y="597" width="0.0110%" height="15" fill="rgb(242,56,8)" fg:x="274461" fg:w="53"/><text x="57.1005%" y="607.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="56.8693%" y="629" width="0.0112%" height="15" fill="rgb(249,212,39)" fg:x="274552" fg:w="54"/><text x="57.1193%" y="639.50"></text></g><g><title>__kmalloc (386 samples, 0.08%)</title><rect x="56.8070%" y="645" width="0.0800%" height="15" fill="rgb(236,90,9)" fg:x="274251" fg:w="386"/><text x="57.0570%" y="655.50"></text></g><g><title>mutex_spin_on_owner (459 samples, 0.10%)</title><rect x="56.8888%" y="629" width="0.0951%" height="15" fill="rgb(206,88,35)" fg:x="274646" fg:w="459"/><text x="57.1388%" y="639.50"></text></g><g><title>__mutex_lock.constprop.0 (470 samples, 0.10%)</title><rect x="56.8869%" y="645" width="0.0974%" height="15" fill="rgb(205,126,30)" fg:x="274637" fg:w="470"/><text x="57.1369%" y="655.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (310 samples, 0.06%)</title><rect x="56.9843%" y="645" width="0.0642%" height="15" fill="rgb(230,176,12)" fg:x="275107" fg:w="310"/><text x="57.2343%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (260 samples, 0.05%)</title><rect x="56.9946%" y="629" width="0.0539%" height="15" fill="rgb(243,19,9)" fg:x="275157" fg:w="260"/><text x="57.2446%" y="639.50"></text></g><g><title>_raw_spin_lock (224 samples, 0.05%)</title><rect x="57.0021%" y="613" width="0.0464%" height="15" fill="rgb(245,171,17)" fg:x="275193" fg:w="224"/><text x="57.2521%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (144 samples, 0.03%)</title><rect x="57.0485%" y="645" width="0.0298%" height="15" fill="rgb(227,52,21)" fg:x="275417" fg:w="144"/><text x="57.2985%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (129 samples, 0.03%)</title><rect x="57.0516%" y="629" width="0.0267%" height="15" fill="rgb(238,69,14)" fg:x="275432" fg:w="129"/><text x="57.3016%" y="639.50"></text></g><g><title>mutex_lock (82 samples, 0.02%)</title><rect x="57.0868%" y="645" width="0.0170%" height="15" fill="rgb(241,156,39)" fg:x="275602" fg:w="82"/><text x="57.3368%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,332 samples, 0.48%)</title><rect x="56.6295%" y="661" width="0.4830%" height="15" fill="rgb(212,227,28)" fg:x="273394" fg:w="2332"/><text x="56.8795%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (175 samples, 0.04%)</title><rect x="57.1125%" y="661" width="0.0362%" height="15" fill="rgb(209,118,27)" fg:x="275726" fg:w="175"/><text x="57.3625%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (119 samples, 0.02%)</title><rect x="57.1241%" y="645" width="0.0246%" height="15" fill="rgb(226,102,5)" fg:x="275782" fg:w="119"/><text x="57.3741%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (254 samples, 0.05%)</title><rect x="57.1589%" y="645" width="0.0526%" height="15" fill="rgb(223,34,3)" fg:x="275950" fg:w="254"/><text x="57.4089%" y="655.50"></text></g><g><title>_raw_spin_lock (191 samples, 0.04%)</title><rect x="57.1719%" y="629" width="0.0396%" height="15" fill="rgb(221,81,38)" fg:x="276013" fg:w="191"/><text x="57.4219%" y="639.50"></text></g><g><title>btrfs_release_path (491 samples, 0.10%)</title><rect x="57.1487%" y="661" width="0.1017%" height="15" fill="rgb(236,219,28)" fg:x="275901" fg:w="491"/><text x="57.3987%" y="671.50"></text></g><g><title>release_extent_buffer (188 samples, 0.04%)</title><rect x="57.2115%" y="645" width="0.0389%" height="15" fill="rgb(213,200,14)" fg:x="276204" fg:w="188"/><text x="57.4615%" y="655.50"></text></g><g><title>btrfs_set_16 (61 samples, 0.01%)</title><rect x="57.2504%" y="661" width="0.0126%" height="15" fill="rgb(240,33,19)" fg:x="276392" fg:w="61"/><text x="57.5004%" y="671.50"></text></g><g><title>btrfs_get_32 (94 samples, 0.02%)</title><rect x="57.2927%" y="645" width="0.0195%" height="15" fill="rgb(233,113,27)" fg:x="276596" fg:w="94"/><text x="57.5427%" y="655.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="57.3942%" y="581" width="0.0110%" height="15" fill="rgb(220,221,18)" fg:x="277086" fg:w="53"/><text x="57.6442%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (78 samples, 0.02%)</title><rect x="57.3892%" y="597" width="0.0162%" height="15" fill="rgb(238,92,8)" fg:x="277062" fg:w="78"/><text x="57.6392%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (198 samples, 0.04%)</title><rect x="57.3867%" y="613" width="0.0410%" height="15" fill="rgb(222,164,16)" fg:x="277050" fg:w="198"/><text x="57.6367%" y="623.50"></text></g><g><title>btrfs_root_node (108 samples, 0.02%)</title><rect x="57.4054%" y="597" width="0.0224%" height="15" fill="rgb(241,119,3)" fg:x="277140" fg:w="108"/><text x="57.6554%" y="607.50"></text></g><g><title>dequeue_task_fair (66 samples, 0.01%)</title><rect x="57.4439%" y="565" width="0.0137%" height="15" fill="rgb(241,44,8)" fg:x="277326" fg:w="66"/><text x="57.6939%" y="575.50"></text></g><g><title>dequeue_entity (58 samples, 0.01%)</title><rect x="57.4456%" y="549" width="0.0120%" height="15" fill="rgb(230,36,40)" fg:x="277334" fg:w="58"/><text x="57.6956%" y="559.50"></text></g><g><title>__btrfs_tree_lock (228 samples, 0.05%)</title><rect x="57.4278%" y="613" width="0.0472%" height="15" fill="rgb(243,16,36)" fg:x="277248" fg:w="228"/><text x="57.6778%" y="623.50"></text></g><g><title>schedule (181 samples, 0.04%)</title><rect x="57.4375%" y="597" width="0.0375%" height="15" fill="rgb(231,4,26)" fg:x="277295" fg:w="181"/><text x="57.6875%" y="607.50"></text></g><g><title>__schedule (178 samples, 0.04%)</title><rect x="57.4381%" y="581" width="0.0369%" height="15" fill="rgb(240,9,31)" fg:x="277298" fg:w="178"/><text x="57.6881%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (210 samples, 0.04%)</title><rect x="57.4797%" y="613" width="0.0435%" height="15" fill="rgb(207,173,15)" fg:x="277499" fg:w="210"/><text x="57.7297%" y="623.50"></text></g><g><title>leaf_space_used (179 samples, 0.04%)</title><rect x="57.4862%" y="597" width="0.0371%" height="15" fill="rgb(224,192,53)" fg:x="277530" fg:w="179"/><text x="57.7362%" y="607.50"></text></g><g><title>btrfs_get_32 (146 samples, 0.03%)</title><rect x="57.4930%" y="581" width="0.0302%" height="15" fill="rgb(223,67,28)" fg:x="277563" fg:w="146"/><text x="57.7430%" y="591.50"></text></g><g><title>_raw_write_lock (101 samples, 0.02%)</title><rect x="57.5319%" y="597" width="0.0209%" height="15" fill="rgb(211,20,47)" fg:x="277751" fg:w="101"/><text x="57.7819%" y="607.50"></text></g><g><title>btrfs_try_tree_write_lock (267 samples, 0.06%)</title><rect x="57.5255%" y="613" width="0.0553%" height="15" fill="rgb(240,228,2)" fg:x="277720" fg:w="267"/><text x="57.7755%" y="623.50"></text></g><g><title>queued_write_lock_slowpath (135 samples, 0.03%)</title><rect x="57.5529%" y="597" width="0.0280%" height="15" fill="rgb(248,151,12)" fg:x="277852" fg:w="135"/><text x="57.8029%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,243 samples, 0.26%)</title><rect x="57.5808%" y="613" width="0.2575%" height="15" fill="rgb(244,8,39)" fg:x="277987" fg:w="1243"/><text x="57.8308%" y="623.50"></text></g><g><title>btrfs_buffer_uptodate (68 samples, 0.01%)</title><rect x="57.8663%" y="597" width="0.0141%" height="15" fill="rgb(222,26,8)" fg:x="279365" fg:w="68"/><text x="58.1163%" y="607.50"></text></g><g><title>btrfs_get_64 (126 samples, 0.03%)</title><rect x="57.8803%" y="597" width="0.0261%" height="15" fill="rgb(213,106,44)" fg:x="279433" fg:w="126"/><text x="58.1303%" y="607.50"></text></g><g><title>btrfs_verify_level_key (53 samples, 0.01%)</title><rect x="57.9096%" y="597" width="0.0110%" height="15" fill="rgb(214,129,20)" fg:x="279574" fg:w="53"/><text x="58.1596%" y="607.50"></text></g><g><title>__radix_tree_lookup (481 samples, 0.10%)</title><rect x="57.9570%" y="581" width="0.0996%" height="15" fill="rgb(212,32,13)" fg:x="279803" fg:w="481"/><text x="58.2070%" y="591.50"></text></g><g><title>check_buffer_tree_ref (65 samples, 0.01%)</title><rect x="58.0666%" y="565" width="0.0135%" height="15" fill="rgb(208,168,33)" fg:x="280332" fg:w="65"/><text x="58.3166%" y="575.50"></text></g><g><title>mark_page_accessed (171 samples, 0.04%)</title><rect x="58.0800%" y="565" width="0.0354%" height="15" fill="rgb(231,207,8)" fg:x="280397" fg:w="171"/><text x="58.3300%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (285 samples, 0.06%)</title><rect x="58.0566%" y="581" width="0.0590%" height="15" fill="rgb(235,219,23)" fg:x="280284" fg:w="285"/><text x="58.3066%" y="591.50"></text></g><g><title>find_extent_buffer (950 samples, 0.20%)</title><rect x="57.9205%" y="597" width="0.1968%" height="15" fill="rgb(226,216,26)" fg:x="279627" fg:w="950"/><text x="58.1705%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (1,499 samples, 0.31%)</title><rect x="57.8383%" y="613" width="0.3105%" height="15" fill="rgb(239,137,16)" fg:x="279230" fg:w="1499"/><text x="58.0883%" y="623.50"></text></g><g><title>read_extent_buffer (152 samples, 0.03%)</title><rect x="58.1173%" y="597" width="0.0315%" height="15" fill="rgb(207,12,36)" fg:x="280577" fg:w="152"/><text x="58.3673%" y="607.50"></text></g><g><title>alloc_extent_buffer (57 samples, 0.01%)</title><rect x="58.1517%" y="565" width="0.0118%" height="15" fill="rgb(210,214,24)" fg:x="280743" fg:w="57"/><text x="58.4017%" y="575.50"></text></g><g><title>alloc_tree_block_no_bg_flush (141 samples, 0.03%)</title><rect x="58.1513%" y="597" width="0.0292%" height="15" fill="rgb(206,56,30)" fg:x="280741" fg:w="141"/><text x="58.4013%" y="607.50"></text></g><g><title>btrfs_alloc_tree_block (141 samples, 0.03%)</title><rect x="58.1513%" y="581" width="0.0292%" height="15" fill="rgb(228,143,26)" fg:x="280741" fg:w="141"/><text x="58.4013%" y="591.50"></text></g><g><title>copy_for_split (117 samples, 0.02%)</title><rect x="58.1838%" y="597" width="0.0242%" height="15" fill="rgb(216,218,46)" fg:x="280898" fg:w="117"/><text x="58.4338%" y="607.50"></text></g><g><title>btrfs_get_token_32 (102 samples, 0.02%)</title><rect x="58.2327%" y="565" width="0.0211%" height="15" fill="rgb(206,6,19)" fg:x="281134" fg:w="102"/><text x="58.4827%" y="575.50"></text></g><g><title>btrfs_set_token_32 (141 samples, 0.03%)</title><rect x="58.2551%" y="565" width="0.0292%" height="15" fill="rgb(239,177,51)" fg:x="281242" fg:w="141"/><text x="58.5051%" y="575.50"></text></g><g><title>memmove_extent_buffer (98 samples, 0.02%)</title><rect x="58.2950%" y="565" width="0.0203%" height="15" fill="rgb(216,55,25)" fg:x="281435" fg:w="98"/><text x="58.5450%" y="575.50"></text></g><g><title>memmove (57 samples, 0.01%)</title><rect x="58.3035%" y="549" width="0.0118%" height="15" fill="rgb(231,163,29)" fg:x="281476" fg:w="57"/><text x="58.5535%" y="559.50"></text></g><g><title>__push_leaf_left (501 samples, 0.10%)</title><rect x="58.2120%" y="581" width="0.1038%" height="15" fill="rgb(232,149,50)" fg:x="281034" fg:w="501"/><text x="58.4620%" y="591.50"></text></g><g><title>push_leaf_left (573 samples, 0.12%)</title><rect x="58.2082%" y="597" width="0.1187%" height="15" fill="rgb(223,142,48)" fg:x="281016" fg:w="573"/><text x="58.4582%" y="607.50"></text></g><g><title>btrfs_get_token_32 (78 samples, 0.02%)</title><rect x="58.3485%" y="565" width="0.0162%" height="15" fill="rgb(245,83,23)" fg:x="281693" fg:w="78"/><text x="58.5985%" y="575.50"></text></g><g><title>btrfs_set_token_32 (119 samples, 0.02%)</title><rect x="58.3667%" y="565" width="0.0246%" height="15" fill="rgb(224,63,2)" fg:x="281781" fg:w="119"/><text x="58.6167%" y="575.50"></text></g><g><title>memcpy_extent_buffer (52 samples, 0.01%)</title><rect x="58.3942%" y="565" width="0.0108%" height="15" fill="rgb(218,65,53)" fg:x="281914" fg:w="52"/><text x="58.6442%" y="575.50"></text></g><g><title>__push_leaf_right (393 samples, 0.08%)</title><rect x="58.3313%" y="581" width="0.0814%" height="15" fill="rgb(221,84,29)" fg:x="281610" fg:w="393"/><text x="58.5813%" y="591.50"></text></g><g><title>btrfs_read_node_slot (66 samples, 0.01%)</title><rect x="58.4191%" y="581" width="0.0137%" height="15" fill="rgb(234,0,32)" fg:x="282034" fg:w="66"/><text x="58.6691%" y="591.50"></text></g><g><title>read_tree_block (50 samples, 0.01%)</title><rect x="58.4224%" y="565" width="0.0104%" height="15" fill="rgb(206,20,16)" fg:x="282050" fg:w="50"/><text x="58.6724%" y="575.50"></text></g><g><title>split_leaf (1,391 samples, 0.29%)</title><rect x="58.1490%" y="613" width="0.2881%" height="15" fill="rgb(244,172,18)" fg:x="280730" fg:w="1391"/><text x="58.3990%" y="623.50"></text></g><g><title>push_leaf_right (532 samples, 0.11%)</title><rect x="58.3269%" y="597" width="0.1102%" height="15" fill="rgb(254,133,1)" fg:x="281589" fg:w="532"/><text x="58.5769%" y="607.50"></text></g><g><title>__wake_up_common (80 samples, 0.02%)</title><rect x="58.4711%" y="581" width="0.0166%" height="15" fill="rgb(222,206,41)" fg:x="282285" fg:w="80"/><text x="58.7211%" y="591.50"></text></g><g><title>autoremove_wake_function (77 samples, 0.02%)</title><rect x="58.4717%" y="565" width="0.0159%" height="15" fill="rgb(212,3,42)" fg:x="282288" fg:w="77"/><text x="58.7217%" y="575.50"></text></g><g><title>try_to_wake_up (77 samples, 0.02%)</title><rect x="58.4717%" y="549" width="0.0159%" height="15" fill="rgb(241,11,4)" fg:x="282288" fg:w="77"/><text x="58.7217%" y="559.50"></text></g><g><title>__wake_up_common_lock (88 samples, 0.02%)</title><rect x="58.4705%" y="597" width="0.0182%" height="15" fill="rgb(205,19,26)" fg:x="282282" fg:w="88"/><text x="58.7205%" y="607.50"></text></g><g><title>btrfs_tree_read_unlock (88 samples, 0.02%)</title><rect x="58.4887%" y="597" width="0.0182%" height="15" fill="rgb(210,179,32)" fg:x="282370" fg:w="88"/><text x="58.7387%" y="607.50"></text></g><g><title>btrfs_search_slot (5,771 samples, 1.20%)</title><rect x="57.3180%" y="629" width="1.1954%" height="15" fill="rgb(227,116,49)" fg:x="276718" fg:w="5771"/><text x="57.5680%" y="639.50"></text></g><g><title>unlock_up (367 samples, 0.08%)</title><rect x="58.4373%" y="613" width="0.0760%" height="15" fill="rgb(211,146,6)" fg:x="282122" fg:w="367"/><text x="58.6873%" y="623.50"></text></g><g><title>btrfs_get_32 (128 samples, 0.03%)</title><rect x="58.7012%" y="613" width="0.0265%" height="15" fill="rgb(219,44,39)" fg:x="283396" fg:w="128"/><text x="58.9512%" y="623.50"></text></g><g><title>btrfs_get_token_32 (3,479 samples, 0.72%)</title><rect x="58.7277%" y="613" width="0.7206%" height="15" fill="rgb(234,128,11)" fg:x="283524" fg:w="3479"/><text x="58.9777%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (755 samples, 0.16%)</title><rect x="59.2920%" y="597" width="0.1564%" height="15" fill="rgb(220,183,53)" fg:x="286248" fg:w="755"/><text x="59.5420%" y="607.50"></text></g><g><title>btrfs_leaf_free_space (255 samples, 0.05%)</title><rect x="59.4484%" y="613" width="0.0528%" height="15" fill="rgb(213,219,32)" fg:x="287003" fg:w="255"/><text x="59.6984%" y="623.50"></text></g><g><title>leaf_space_used (220 samples, 0.05%)</title><rect x="59.4556%" y="597" width="0.0456%" height="15" fill="rgb(232,156,16)" fg:x="287038" fg:w="220"/><text x="59.7056%" y="607.50"></text></g><g><title>btrfs_get_32 (157 samples, 0.03%)</title><rect x="59.4687%" y="581" width="0.0325%" height="15" fill="rgb(246,135,34)" fg:x="287101" fg:w="157"/><text x="59.7187%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (186 samples, 0.04%)</title><rect x="59.5012%" y="613" width="0.0385%" height="15" fill="rgb(241,99,0)" fg:x="287258" fg:w="186"/><text x="59.7512%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (108 samples, 0.02%)</title><rect x="59.5173%" y="597" width="0.0224%" height="15" fill="rgb(222,103,45)" fg:x="287336" fg:w="108"/><text x="59.7673%" y="607.50"></text></g><g><title>btrfs_set_token_32 (3,153 samples, 0.65%)</title><rect x="59.5397%" y="613" width="0.6531%" height="15" fill="rgb(212,57,4)" fg:x="287444" fg:w="3153"/><text x="59.7897%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (662 samples, 0.14%)</title><rect x="60.0557%" y="597" width="0.1371%" height="15" fill="rgb(215,68,47)" fg:x="289935" fg:w="662"/><text x="60.3057%" y="607.50"></text></g><g><title>btrfs_unlock_up_safe (49 samples, 0.01%)</title><rect x="60.1928%" y="613" width="0.0101%" height="15" fill="rgb(230,84,2)" fg:x="290597" fg:w="49"/><text x="60.4428%" y="623.50"></text></g><g><title>copy_pages (125 samples, 0.03%)</title><rect x="60.2168%" y="597" width="0.0259%" height="15" fill="rgb(220,102,14)" fg:x="290713" fg:w="125"/><text x="60.4668%" y="607.50"></text></g><g><title>memcpy_extent_buffer (1,059 samples, 0.22%)</title><rect x="60.2036%" y="613" width="0.2194%" height="15" fill="rgb(240,10,32)" fg:x="290649" fg:w="1059"/><text x="60.4536%" y="623.50"></text></g><g><title>memmove (870 samples, 0.18%)</title><rect x="60.2427%" y="597" width="0.1802%" height="15" fill="rgb(215,47,27)" fg:x="290838" fg:w="870"/><text x="60.4927%" y="607.50"></text></g><g><title>copy_pages (126 samples, 0.03%)</title><rect x="60.4463%" y="597" width="0.0261%" height="15" fill="rgb(233,188,43)" fg:x="291821" fg:w="126"/><text x="60.6963%" y="607.50"></text></g><g><title>memmove_extent_buffer (1,032 samples, 0.21%)</title><rect x="60.4229%" y="613" width="0.2138%" height="15" fill="rgb(253,190,1)" fg:x="291708" fg:w="1032"/><text x="60.6729%" y="623.50"></text></g><g><title>memmove (793 samples, 0.16%)</title><rect x="60.4724%" y="597" width="0.1643%" height="15" fill="rgb(206,114,52)" fg:x="291947" fg:w="793"/><text x="60.7224%" y="607.50"></text></g><g><title>insert_with_overflow (16,334 samples, 3.38%)</title><rect x="57.2815%" y="661" width="3.3833%" height="15" fill="rgb(233,120,37)" fg:x="276542" fg:w="16334"/><text x="57.5315%" y="671.50">ins..</text></g><g><title>btrfs_insert_empty_items (16,186 samples, 3.35%)</title><rect x="57.3122%" y="645" width="3.3527%" height="15" fill="rgb(214,52,39)" fg:x="276690" fg:w="16186"/><text x="57.5622%" y="655.50">btr..</text></g><g><title>setup_items_for_insert (10,387 samples, 2.15%)</title><rect x="58.5134%" y="629" width="2.1515%" height="15" fill="rgb(223,80,29)" fg:x="282489" fg:w="10387"/><text x="58.7634%" y="639.50">s..</text></g><g><title>write_extent_buffer (136 samples, 0.03%)</title><rect x="60.6367%" y="613" width="0.0282%" height="15" fill="rgb(230,101,40)" fg:x="292740" fg:w="136"/><text x="60.8867%" y="623.50"></text></g><g><title>memset_erms (67 samples, 0.01%)</title><rect x="60.6889%" y="645" width="0.0139%" height="15" fill="rgb(219,211,8)" fg:x="292992" fg:w="67"/><text x="60.9389%" y="655.50"></text></g><g><title>kmem_cache_alloc (211 samples, 0.04%)</title><rect x="60.6649%" y="661" width="0.0437%" height="15" fill="rgb(252,126,28)" fg:x="292876" fg:w="211"/><text x="60.9149%" y="671.50"></text></g><g><title>kmem_cache_free (142 samples, 0.03%)</title><rect x="60.7086%" y="661" width="0.0294%" height="15" fill="rgb(215,56,38)" fg:x="293087" fg:w="142"/><text x="60.9586%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (20,228 samples, 4.19%)</title><rect x="56.6009%" y="677" width="4.1899%" height="15" fill="rgb(249,55,44)" fg:x="273256" fg:w="20228"/><text x="56.8509%" y="687.50">btrfs..</text></g><g><title>write_extent_buffer (255 samples, 0.05%)</title><rect x="60.7380%" y="661" width="0.0528%" height="15" fill="rgb(220,221,32)" fg:x="293229" fg:w="255"/><text x="60.9880%" y="671.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="60.7983%" y="661" width="0.0128%" height="15" fill="rgb(212,216,41)" fg:x="293520" fg:w="62"/><text x="61.0483%" y="671.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="60.8393%" y="629" width="0.0130%" height="15" fill="rgb(228,213,43)" fg:x="293718" fg:w="63"/><text x="61.0893%" y="639.50"></text></g><g><title>mutex_lock (71 samples, 0.01%)</title><rect x="60.8523%" y="629" width="0.0147%" height="15" fill="rgb(211,31,26)" fg:x="293781" fg:w="71"/><text x="61.1023%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (301 samples, 0.06%)</title><rect x="60.8181%" y="645" width="0.0623%" height="15" fill="rgb(229,202,19)" fg:x="293616" fg:w="301"/><text x="61.0681%" y="655.50"></text></g><g><title>mutex_unlock (65 samples, 0.01%)</title><rect x="60.8670%" y="629" width="0.0135%" height="15" fill="rgb(229,105,46)" fg:x="293852" fg:w="65"/><text x="61.1170%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (90 samples, 0.02%)</title><rect x="60.8921%" y="645" width="0.0186%" height="15" fill="rgb(235,108,1)" fg:x="293973" fg:w="90"/><text x="61.1421%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (77 samples, 0.02%)</title><rect x="60.8948%" y="629" width="0.0159%" height="15" fill="rgb(245,111,35)" fg:x="293986" fg:w="77"/><text x="61.1448%" y="639.50"></text></g><g><title>inode_get_bytes (103 samples, 0.02%)</title><rect x="60.9192%" y="629" width="0.0213%" height="15" fill="rgb(219,185,31)" fg:x="294104" fg:w="103"/><text x="61.1692%" y="639.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="60.9211%" y="613" width="0.0195%" height="15" fill="rgb(214,4,43)" fg:x="294113" fg:w="94"/><text x="61.1711%" y="623.50"></text></g><g><title>fill_stack_inode_item (178 samples, 0.04%)</title><rect x="60.9107%" y="645" width="0.0369%" height="15" fill="rgb(235,227,40)" fg:x="294063" fg:w="178"/><text x="61.1607%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (766 samples, 0.16%)</title><rect x="60.8111%" y="661" width="0.1587%" height="15" fill="rgb(230,88,30)" fg:x="293582" fg:w="766"/><text x="61.0611%" y="671.50"></text></g><g><title>mutex_unlock (62 samples, 0.01%)</title><rect x="60.9569%" y="645" width="0.0128%" height="15" fill="rgb(216,217,1)" fg:x="294286" fg:w="62"/><text x="61.2069%" y="655.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="60.9745%" y="645" width="0.0108%" height="15" fill="rgb(248,139,50)" fg:x="294371" fg:w="52"/><text x="61.2245%" y="655.50"></text></g><g><title>btrfs_update_inode (1,061 samples, 0.22%)</title><rect x="60.7908%" y="677" width="0.2198%" height="15" fill="rgb(233,1,21)" fg:x="293484" fg:w="1061"/><text x="61.0408%" y="687.50"></text></g><g><title>btrfs_update_root_times (197 samples, 0.04%)</title><rect x="60.9698%" y="661" width="0.0408%" height="15" fill="rgb(215,183,12)" fg:x="294348" fg:w="197"/><text x="61.2198%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (122 samples, 0.03%)</title><rect x="60.9853%" y="645" width="0.0253%" height="15" fill="rgb(229,104,42)" fg:x="294423" fg:w="122"/><text x="61.2353%" y="655.50"></text></g><g><title>read_tsc (84 samples, 0.02%)</title><rect x="60.9932%" y="629" width="0.0174%" height="15" fill="rgb(243,34,48)" fg:x="294461" fg:w="84"/><text x="61.2432%" y="639.50"></text></g><g><title>btrfs_add_link (21,507 samples, 4.45%)</title><rect x="56.5619%" y="693" width="4.4549%" height="15" fill="rgb(239,11,44)" fg:x="273068" fg:w="21507"/><text x="56.8119%" y="703.50">btrfs..</text></g><g><title>btrfs_balance_delayed_items (74 samples, 0.02%)</title><rect x="61.0240%" y="677" width="0.0153%" height="15" fill="rgb(231,98,35)" fg:x="294610" fg:w="74"/><text x="61.2740%" y="687.50"></text></g><g><title>enqueue_task_fair (72 samples, 0.01%)</title><rect x="61.0729%" y="613" width="0.0149%" height="15" fill="rgb(233,28,25)" fg:x="294846" fg:w="72"/><text x="61.3229%" y="623.50"></text></g><g><title>enqueue_entity (58 samples, 0.01%)</title><rect x="61.0758%" y="597" width="0.0120%" height="15" fill="rgb(234,123,11)" fg:x="294860" fg:w="58"/><text x="61.3258%" y="607.50"></text></g><g><title>ttwu_do_activate (122 samples, 0.03%)</title><rect x="61.0702%" y="629" width="0.0253%" height="15" fill="rgb(220,69,3)" fg:x="294833" fg:w="122"/><text x="61.3202%" y="639.50"></text></g><g><title>try_to_wake_up (212 samples, 0.04%)</title><rect x="61.0584%" y="645" width="0.0439%" height="15" fill="rgb(214,64,36)" fg:x="294776" fg:w="212"/><text x="61.3084%" y="655.50"></text></g><g><title>__queue_work (277 samples, 0.06%)</title><rect x="61.0452%" y="661" width="0.0574%" height="15" fill="rgb(211,138,32)" fg:x="294712" fg:w="277"/><text x="61.2952%" y="671.50"></text></g><g><title>btrfs_btree_balance_dirty (410 samples, 0.08%)</title><rect x="61.0178%" y="693" width="0.0849%" height="15" fill="rgb(213,118,47)" fg:x="294580" fg:w="410"/><text x="61.2678%" y="703.50"></text></g><g><title>queue_work_on (292 samples, 0.06%)</title><rect x="61.0423%" y="677" width="0.0605%" height="15" fill="rgb(243,124,49)" fg:x="294698" fg:w="292"/><text x="61.2923%" y="687.50"></text></g><g><title>btrfs_find_free_ino (117 samples, 0.02%)</title><rect x="61.1032%" y="693" width="0.0242%" height="15" fill="rgb(221,30,28)" fg:x="294992" fg:w="117"/><text x="61.3532%" y="703.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="61.1162%" y="677" width="0.0112%" height="15" fill="rgb(246,37,13)" fg:x="295055" fg:w="54"/><text x="61.3662%" y="687.50"></text></g><g><title>__wake_up_common (86 samples, 0.02%)</title><rect x="61.1369%" y="645" width="0.0178%" height="15" fill="rgb(249,66,14)" fg:x="295155" fg:w="86"/><text x="61.3869%" y="655.50"></text></g><g><title>autoremove_wake_function (83 samples, 0.02%)</title><rect x="61.1375%" y="629" width="0.0172%" height="15" fill="rgb(213,166,5)" fg:x="295158" fg:w="83"/><text x="61.3875%" y="639.50"></text></g><g><title>try_to_wake_up (83 samples, 0.02%)</title><rect x="61.1375%" y="613" width="0.0172%" height="15" fill="rgb(221,66,24)" fg:x="295158" fg:w="83"/><text x="61.3875%" y="623.50"></text></g><g><title>__wake_up_common_lock (91 samples, 0.02%)</title><rect x="61.1367%" y="661" width="0.0188%" height="15" fill="rgb(210,132,17)" fg:x="295154" fg:w="91"/><text x="61.3867%" y="671.50"></text></g><g><title>btrfs_tree_unlock (67 samples, 0.01%)</title><rect x="61.1556%" y="661" width="0.0139%" height="15" fill="rgb(243,202,5)" fg:x="295245" fg:w="67"/><text x="61.4056%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (211 samples, 0.04%)</title><rect x="61.1701%" y="661" width="0.0437%" height="15" fill="rgb(233,70,48)" fg:x="295315" fg:w="211"/><text x="61.4201%" y="671.50"></text></g><g><title>_raw_spin_lock (146 samples, 0.03%)</title><rect x="61.1835%" y="645" width="0.0302%" height="15" fill="rgb(238,41,26)" fg:x="295380" fg:w="146"/><text x="61.4335%" y="655.50"></text></g><g><title>btrfs_free_path (601 samples, 0.12%)</title><rect x="61.1274%" y="693" width="0.1245%" height="15" fill="rgb(241,19,31)" fg:x="295109" fg:w="601"/><text x="61.3774%" y="703.50"></text></g><g><title>btrfs_release_path (599 samples, 0.12%)</title><rect x="61.1278%" y="677" width="0.1241%" height="15" fill="rgb(214,76,10)" fg:x="295111" fg:w="599"/><text x="61.3778%" y="687.50"></text></g><g><title>release_extent_buffer (184 samples, 0.04%)</title><rect x="61.2138%" y="661" width="0.0381%" height="15" fill="rgb(254,202,22)" fg:x="295526" fg:w="184"/><text x="61.4638%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.02%)</title><rect x="61.3441%" y="645" width="0.0186%" height="15" fill="rgb(214,72,24)" fg:x="296155" fg:w="90"/><text x="61.5941%" y="655.50"></text></g><g><title>_raw_read_lock (64 samples, 0.01%)</title><rect x="61.3494%" y="629" width="0.0133%" height="15" fill="rgb(221,92,46)" fg:x="296181" fg:w="64"/><text x="61.5994%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (230 samples, 0.05%)</title><rect x="61.3403%" y="661" width="0.0476%" height="15" fill="rgb(246,13,50)" fg:x="296137" fg:w="230"/><text x="61.5903%" y="671.50"></text></g><g><title>btrfs_root_node (122 samples, 0.03%)</title><rect x="61.3627%" y="645" width="0.0253%" height="15" fill="rgb(240,165,38)" fg:x="296245" fg:w="122"/><text x="61.6127%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (160 samples, 0.03%)</title><rect x="61.3963%" y="661" width="0.0331%" height="15" fill="rgb(241,24,51)" fg:x="296407" fg:w="160"/><text x="61.6463%" y="671.50"></text></g><g><title>leaf_space_used (135 samples, 0.03%)</title><rect x="61.4014%" y="645" width="0.0280%" height="15" fill="rgb(227,51,44)" fg:x="296432" fg:w="135"/><text x="61.6514%" y="655.50"></text></g><g><title>btrfs_get_32 (98 samples, 0.02%)</title><rect x="61.4091%" y="629" width="0.0203%" height="15" fill="rgb(231,121,3)" fg:x="296469" fg:w="98"/><text x="61.6591%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (153 samples, 0.03%)</title><rect x="61.4294%" y="661" width="0.0317%" height="15" fill="rgb(245,3,41)" fg:x="296567" fg:w="153"/><text x="61.6794%" y="671.50"></text></g><g><title>btrfs_set_lock_blocking_write (62 samples, 0.01%)</title><rect x="61.4482%" y="645" width="0.0128%" height="15" fill="rgb(214,13,26)" fg:x="296658" fg:w="62"/><text x="61.6982%" y="655.50"></text></g><g><title>_raw_write_lock (130 samples, 0.03%)</title><rect x="61.4692%" y="645" width="0.0269%" height="15" fill="rgb(252,75,11)" fg:x="296759" fg:w="130"/><text x="61.7192%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (203 samples, 0.04%)</title><rect x="61.4611%" y="661" width="0.0420%" height="15" fill="rgb(218,226,17)" fg:x="296720" fg:w="203"/><text x="61.7111%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (806 samples, 0.17%)</title><rect x="61.5031%" y="661" width="0.1670%" height="15" fill="rgb(248,89,38)" fg:x="296923" fg:w="806"/><text x="61.7531%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (57 samples, 0.01%)</title><rect x="61.6999%" y="645" width="0.0118%" height="15" fill="rgb(237,73,46)" fg:x="297873" fg:w="57"/><text x="61.9499%" y="655.50"></text></g><g><title>btrfs_get_64 (119 samples, 0.02%)</title><rect x="61.7117%" y="645" width="0.0246%" height="15" fill="rgb(242,78,33)" fg:x="297930" fg:w="119"/><text x="61.9617%" y="655.50"></text></g><g><title>__radix_tree_lookup (451 samples, 0.09%)</title><rect x="61.7875%" y="629" width="0.0934%" height="15" fill="rgb(235,60,3)" fg:x="298296" fg:w="451"/><text x="62.0375%" y="639.50"></text></g><g><title>check_buffer_tree_ref (67 samples, 0.01%)</title><rect x="61.8940%" y="613" width="0.0139%" height="15" fill="rgb(216,172,19)" fg:x="298810" fg:w="67"/><text x="62.1440%" y="623.50"></text></g><g><title>mark_page_accessed (165 samples, 0.03%)</title><rect x="61.9079%" y="613" width="0.0342%" height="15" fill="rgb(227,6,42)" fg:x="298877" fg:w="165"/><text x="62.1579%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (298 samples, 0.06%)</title><rect x="61.8810%" y="629" width="0.0617%" height="15" fill="rgb(223,207,42)" fg:x="298747" fg:w="298"/><text x="62.1310%" y="639.50"></text></g><g><title>find_extent_buffer (946 samples, 0.20%)</title><rect x="61.7486%" y="645" width="0.1959%" height="15" fill="rgb(246,138,30)" fg:x="298108" fg:w="946"/><text x="61.9986%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,496 samples, 0.31%)</title><rect x="61.6701%" y="661" width="0.3099%" height="15" fill="rgb(251,199,47)" fg:x="297729" fg:w="1496"/><text x="61.9201%" y="671.50"></text></g><g><title>read_extent_buffer (171 samples, 0.04%)</title><rect x="61.9445%" y="645" width="0.0354%" height="15" fill="rgb(228,218,44)" fg:x="299054" fg:w="171"/><text x="62.1945%" y="655.50"></text></g><g><title>pagecache_get_page (64 samples, 0.01%)</title><rect x="61.9909%" y="597" width="0.0133%" height="15" fill="rgb(220,68,6)" fg:x="299278" fg:w="64"/><text x="62.2409%" y="607.50"></text></g><g><title>alloc_extent_buffer (101 samples, 0.02%)</title><rect x="61.9851%" y="613" width="0.0209%" height="15" fill="rgb(240,60,26)" fg:x="299250" fg:w="101"/><text x="62.2351%" y="623.50"></text></g><g><title>btrfs_add_delayed_tree_ref (67 samples, 0.01%)</title><rect x="62.0061%" y="613" width="0.0139%" height="15" fill="rgb(211,200,19)" fg:x="299351" fg:w="67"/><text x="62.2561%" y="623.50"></text></g><g><title>btrfs_reserve_extent (60 samples, 0.01%)</title><rect x="62.0226%" y="613" width="0.0124%" height="15" fill="rgb(242,145,30)" fg:x="299431" fg:w="60"/><text x="62.2726%" y="623.50"></text></g><g><title>find_free_extent (55 samples, 0.01%)</title><rect x="62.0237%" y="597" width="0.0114%" height="15" fill="rgb(225,64,13)" fg:x="299436" fg:w="55"/><text x="62.2737%" y="607.50"></text></g><g><title>alloc_tree_block_no_bg_flush (308 samples, 0.06%)</title><rect x="61.9827%" y="645" width="0.0638%" height="15" fill="rgb(218,103,35)" fg:x="299238" fg:w="308"/><text x="62.2327%" y="655.50"></text></g><g><title>btrfs_alloc_tree_block (306 samples, 0.06%)</title><rect x="61.9831%" y="629" width="0.0634%" height="15" fill="rgb(216,93,46)" fg:x="299240" fg:w="306"/><text x="62.2331%" y="639.50"></text></g><g><title>__set_page_dirty_nobuffers (74 samples, 0.02%)</title><rect x="62.0605%" y="597" width="0.0153%" height="15" fill="rgb(225,159,27)" fg:x="299614" fg:w="74"/><text x="62.3105%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (83 samples, 0.02%)</title><rect x="62.0593%" y="629" width="0.0172%" height="15" fill="rgb(225,204,11)" fg:x="299608" fg:w="83"/><text x="62.3093%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (80 samples, 0.02%)</title><rect x="62.0599%" y="613" width="0.0166%" height="15" fill="rgb(205,56,4)" fg:x="299611" fg:w="80"/><text x="62.3099%" y="623.50"></text></g><g><title>copy_extent_buffer (55 samples, 0.01%)</title><rect x="62.0821%" y="629" width="0.0114%" height="15" fill="rgb(206,6,35)" fg:x="299718" fg:w="55"/><text x="62.3321%" y="639.50"></text></g><g><title>read_extent_buffer (52 samples, 0.01%)</title><rect x="62.0827%" y="613" width="0.0108%" height="15" fill="rgb(247,73,52)" fg:x="299721" fg:w="52"/><text x="62.3327%" y="623.50"></text></g><g><title>copy_for_split (219 samples, 0.05%)</title><rect x="62.0504%" y="645" width="0.0454%" height="15" fill="rgb(246,97,4)" fg:x="299565" fg:w="219"/><text x="62.3004%" y="655.50"></text></g><g><title>btrfs_get_token_32 (63 samples, 0.01%)</title><rect x="62.1100%" y="613" width="0.0130%" height="15" fill="rgb(212,37,15)" fg:x="299853" fg:w="63"/><text x="62.3600%" y="623.50"></text></g><g><title>btrfs_set_token_32 (82 samples, 0.02%)</title><rect x="62.1239%" y="613" width="0.0170%" height="15" fill="rgb(208,130,40)" fg:x="299920" fg:w="82"/><text x="62.3739%" y="623.50"></text></g><g><title>__push_leaf_left (293 samples, 0.06%)</title><rect x="62.0974%" y="629" width="0.0607%" height="15" fill="rgb(236,55,29)" fg:x="299792" fg:w="293"/><text x="62.3474%" y="639.50"></text></g><g><title>push_leaf_left (350 samples, 0.07%)</title><rect x="62.0964%" y="645" width="0.0725%" height="15" fill="rgb(209,156,45)" fg:x="299787" fg:w="350"/><text x="62.3464%" y="655.50"></text></g><g><title>split_leaf (918 samples, 0.19%)</title><rect x="61.9800%" y="661" width="0.1901%" height="15" fill="rgb(249,107,4)" fg:x="299225" fg:w="918"/><text x="62.2300%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock (82 samples, 0.02%)</title><rect x="62.2026%" y="645" width="0.0170%" height="15" fill="rgb(227,7,13)" fg:x="300300" fg:w="82"/><text x="62.4526%" y="655.50"></text></g><g><title>btrfs_search_slot (4,594 samples, 0.95%)</title><rect x="61.2738%" y="677" width="0.9516%" height="15" fill="rgb(250,129,14)" fg:x="295816" fg:w="4594"/><text x="61.5238%" y="687.50"></text></g><g><title>unlock_up (267 samples, 0.06%)</title><rect x="62.1701%" y="661" width="0.0553%" height="15" fill="rgb(229,92,13)" fg:x="300143" fg:w="267"/><text x="62.4201%" y="671.50"></text></g><g><title>btrfs_get_32 (111 samples, 0.02%)</title><rect x="62.3292%" y="661" width="0.0230%" height="15" fill="rgb(245,98,39)" fg:x="300911" fg:w="111"/><text x="62.5792%" y="671.50"></text></g><g><title>btrfs_get_token_32 (751 samples, 0.16%)</title><rect x="62.3522%" y="661" width="0.1556%" height="15" fill="rgb(234,135,48)" fg:x="301022" fg:w="751"/><text x="62.6022%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (190 samples, 0.04%)</title><rect x="62.4684%" y="645" width="0.0394%" height="15" fill="rgb(230,98,28)" fg:x="301583" fg:w="190"/><text x="62.7184%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (290 samples, 0.06%)</title><rect x="62.5077%" y="661" width="0.0601%" height="15" fill="rgb(223,121,0)" fg:x="301773" fg:w="290"/><text x="62.7577%" y="671.50"></text></g><g><title>leaf_space_used (259 samples, 0.05%)</title><rect x="62.5142%" y="645" width="0.0536%" height="15" fill="rgb(234,173,33)" fg:x="301804" fg:w="259"/><text x="62.7642%" y="655.50"></text></g><g><title>btrfs_get_32 (174 samples, 0.04%)</title><rect x="62.5318%" y="629" width="0.0360%" height="15" fill="rgb(245,47,8)" fg:x="301889" fg:w="174"/><text x="62.7818%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (149 samples, 0.03%)</title><rect x="62.5678%" y="661" width="0.0309%" height="15" fill="rgb(205,17,20)" fg:x="302063" fg:w="149"/><text x="62.8178%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (102 samples, 0.02%)</title><rect x="62.5775%" y="645" width="0.0211%" height="15" fill="rgb(232,151,16)" fg:x="302110" fg:w="102"/><text x="62.8275%" y="655.50"></text></g><g><title>btrfs_set_token_32 (874 samples, 0.18%)</title><rect x="62.5987%" y="661" width="0.1810%" height="15" fill="rgb(208,30,32)" fg:x="302212" fg:w="874"/><text x="62.8487%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (171 samples, 0.04%)</title><rect x="62.7443%" y="645" width="0.0354%" height="15" fill="rgb(254,26,3)" fg:x="302915" fg:w="171"/><text x="62.9943%" y="655.50"></text></g><g><title>memmove_extent_buffer (268 samples, 0.06%)</title><rect x="62.7915%" y="661" width="0.0555%" height="15" fill="rgb(240,177,30)" fg:x="303143" fg:w="268"/><text x="63.0415%" y="671.50"></text></g><g><title>memmove (187 samples, 0.04%)</title><rect x="62.8083%" y="645" width="0.0387%" height="15" fill="rgb(248,76,44)" fg:x="303224" fg:w="187"/><text x="63.0583%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (7,750 samples, 1.61%)</title><rect x="61.2649%" y="693" width="1.6053%" height="15" fill="rgb(241,186,54)" fg:x="295773" fg:w="7750"/><text x="61.5149%" y="703.50"></text></g><g><title>setup_items_for_insert (3,113 samples, 0.64%)</title><rect x="62.2254%" y="677" width="0.6448%" height="15" fill="rgb(249,171,29)" fg:x="300410" fg:w="3113"/><text x="62.4754%" y="687.50"></text></g><g><title>write_extent_buffer (112 samples, 0.02%)</title><rect x="62.8470%" y="661" width="0.0232%" height="15" fill="rgb(237,151,44)" fg:x="303411" fg:w="112"/><text x="63.0970%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (198 samples, 0.04%)</title><rect x="62.8702%" y="693" width="0.0410%" height="15" fill="rgb(228,174,30)" fg:x="303523" fg:w="198"/><text x="63.1202%" y="703.50"></text></g><g><title>set_extent_buffer_dirty (148 samples, 0.03%)</title><rect x="62.8806%" y="677" width="0.0307%" height="15" fill="rgb(252,14,37)" fg:x="303573" fg:w="148"/><text x="63.1306%" y="687.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="62.9707%" y="677" width="0.0141%" height="15" fill="rgb(207,111,40)" fg:x="304008" fg:w="68"/><text x="63.2207%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (218 samples, 0.05%)</title><rect x="62.9984%" y="645" width="0.0452%" height="15" fill="rgb(248,171,54)" fg:x="304142" fg:w="218"/><text x="63.2484%" y="655.50"></text></g><g><title>_raw_spin_lock (165 samples, 0.03%)</title><rect x="63.0094%" y="629" width="0.0342%" height="15" fill="rgb(211,127,2)" fg:x="304195" fg:w="165"/><text x="63.2594%" y="639.50"></text></g><g><title>btrfs_free_path (462 samples, 0.10%)</title><rect x="62.9856%" y="677" width="0.0957%" height="15" fill="rgb(236,87,47)" fg:x="304080" fg:w="462"/><text x="63.2356%" y="687.50"></text></g><g><title>btrfs_release_path (454 samples, 0.09%)</title><rect x="62.9873%" y="661" width="0.0940%" height="15" fill="rgb(223,190,45)" fg:x="304088" fg:w="454"/><text x="63.2373%" y="671.50"></text></g><g><title>release_extent_buffer (182 samples, 0.04%)</title><rect x="63.0436%" y="645" width="0.0377%" height="15" fill="rgb(215,5,16)" fg:x="304360" fg:w="182"/><text x="63.2936%" y="655.50"></text></g><g><title>btrfs_get_32 (92 samples, 0.02%)</title><rect x="63.0813%" y="677" width="0.0191%" height="15" fill="rgb(252,82,33)" fg:x="304542" fg:w="92"/><text x="63.3313%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (102 samples, 0.02%)</title><rect x="63.1755%" y="629" width="0.0211%" height="15" fill="rgb(247,213,44)" fg:x="304997" fg:w="102"/><text x="63.4255%" y="639.50"></text></g><g><title>_raw_read_lock (71 samples, 0.01%)</title><rect x="63.1820%" y="613" width="0.0147%" height="15" fill="rgb(205,196,44)" fg:x="305028" fg:w="71"/><text x="63.4320%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (209 samples, 0.04%)</title><rect x="63.1729%" y="645" width="0.0433%" height="15" fill="rgb(237,96,54)" fg:x="304984" fg:w="209"/><text x="63.4229%" y="655.50"></text></g><g><title>btrfs_root_node (94 samples, 0.02%)</title><rect x="63.1967%" y="629" width="0.0195%" height="15" fill="rgb(230,113,34)" fg:x="305099" fg:w="94"/><text x="63.4467%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (183 samples, 0.04%)</title><rect x="63.2288%" y="645" width="0.0379%" height="15" fill="rgb(221,224,12)" fg:x="305254" fg:w="183"/><text x="63.4788%" y="655.50"></text></g><g><title>leaf_space_used (153 samples, 0.03%)</title><rect x="63.2350%" y="629" width="0.0317%" height="15" fill="rgb(219,112,44)" fg:x="305284" fg:w="153"/><text x="63.4850%" y="639.50"></text></g><g><title>btrfs_get_32 (108 samples, 0.02%)</title><rect x="63.2443%" y="613" width="0.0224%" height="15" fill="rgb(210,31,13)" fg:x="305329" fg:w="108"/><text x="63.4943%" y="623.50"></text></g><g><title>_raw_write_lock (110 samples, 0.02%)</title><rect x="63.2723%" y="629" width="0.0228%" height="15" fill="rgb(230,25,16)" fg:x="305464" fg:w="110"/><text x="63.5223%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (189 samples, 0.04%)</title><rect x="63.2677%" y="645" width="0.0391%" height="15" fill="rgb(246,108,53)" fg:x="305442" fg:w="189"/><text x="63.5177%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (57 samples, 0.01%)</title><rect x="63.2951%" y="629" width="0.0118%" height="15" fill="rgb(241,172,50)" fg:x="305574" fg:w="57"/><text x="63.5451%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (807 samples, 0.17%)</title><rect x="63.3069%" y="645" width="0.1672%" height="15" fill="rgb(235,141,10)" fg:x="305631" fg:w="807"/><text x="63.5569%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (78 samples, 0.02%)</title><rect x="63.4966%" y="629" width="0.0162%" height="15" fill="rgb(220,174,43)" fg:x="306547" fg:w="78"/><text x="63.7466%" y="639.50"></text></g><g><title>verify_parent_transid (56 samples, 0.01%)</title><rect x="63.5012%" y="613" width="0.0116%" height="15" fill="rgb(215,181,40)" fg:x="306569" fg:w="56"/><text x="63.7512%" y="623.50"></text></g><g><title>btrfs_get_64 (135 samples, 0.03%)</title><rect x="63.5128%" y="629" width="0.0280%" height="15" fill="rgb(230,97,2)" fg:x="306625" fg:w="135"/><text x="63.7628%" y="639.50"></text></g><g><title>btrfs_verify_level_key (50 samples, 0.01%)</title><rect x="63.5428%" y="629" width="0.0104%" height="15" fill="rgb(211,25,27)" fg:x="306770" fg:w="50"/><text x="63.7928%" y="639.50"></text></g><g><title>__radix_tree_lookup (474 samples, 0.10%)</title><rect x="63.6099%" y="613" width="0.0982%" height="15" fill="rgb(230,87,26)" fg:x="307094" fg:w="474"/><text x="63.8599%" y="623.50"></text></g><g><title>check_buffer_tree_ref (62 samples, 0.01%)</title><rect x="63.7180%" y="597" width="0.0128%" height="15" fill="rgb(227,160,17)" fg:x="307616" fg:w="62"/><text x="63.9680%" y="607.50"></text></g><g><title>mark_page_accessed (193 samples, 0.04%)</title><rect x="63.7309%" y="597" width="0.0400%" height="15" fill="rgb(244,85,34)" fg:x="307678" fg:w="193"/><text x="63.9809%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (309 samples, 0.06%)</title><rect x="63.7083%" y="613" width="0.0640%" height="15" fill="rgb(207,70,0)" fg:x="307569" fg:w="309"/><text x="63.9583%" y="623.50"></text></g><g><title>find_extent_buffer (1,066 samples, 0.22%)</title><rect x="63.5532%" y="629" width="0.2208%" height="15" fill="rgb(223,129,7)" fg:x="306820" fg:w="1066"/><text x="63.8032%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,593 samples, 0.33%)</title><rect x="63.4740%" y="645" width="0.3300%" height="15" fill="rgb(246,105,7)" fg:x="306438" fg:w="1593"/><text x="63.7240%" y="655.50"></text></g><g><title>read_extent_buffer (145 samples, 0.03%)</title><rect x="63.7740%" y="629" width="0.0300%" height="15" fill="rgb(215,154,42)" fg:x="307886" fg:w="145"/><text x="64.0240%" y="639.50"></text></g><g><title>pagecache_get_page (73 samples, 0.02%)</title><rect x="63.8193%" y="581" width="0.0151%" height="15" fill="rgb(220,215,30)" fg:x="308105" fg:w="73"/><text x="64.0693%" y="591.50"></text></g><g><title>alloc_extent_buffer (133 samples, 0.03%)</title><rect x="63.8098%" y="597" width="0.0275%" height="15" fill="rgb(228,81,51)" fg:x="308059" fg:w="133"/><text x="64.0598%" y="607.50"></text></g><g><title>btrfs_add_delayed_tree_ref (61 samples, 0.01%)</title><rect x="63.8373%" y="597" width="0.0126%" height="15" fill="rgb(247,71,54)" fg:x="308192" fg:w="61"/><text x="64.0873%" y="607.50"></text></g><g><title>btrfs_reserve_extent (75 samples, 0.02%)</title><rect x="63.8533%" y="597" width="0.0155%" height="15" fill="rgb(234,176,34)" fg:x="308269" fg:w="75"/><text x="64.1033%" y="607.50"></text></g><g><title>find_free_extent (65 samples, 0.01%)</title><rect x="63.8554%" y="581" width="0.0135%" height="15" fill="rgb(241,103,54)" fg:x="308279" fg:w="65"/><text x="64.1054%" y="591.50"></text></g><g><title>set_extent_bit (70 samples, 0.01%)</title><rect x="63.8707%" y="597" width="0.0145%" height="15" fill="rgb(228,22,34)" fg:x="308353" fg:w="70"/><text x="64.1207%" y="607.50"></text></g><g><title>__set_extent_bit (70 samples, 0.01%)</title><rect x="63.8707%" y="581" width="0.0145%" height="15" fill="rgb(241,179,48)" fg:x="308353" fg:w="70"/><text x="64.1207%" y="591.50"></text></g><g><title>alloc_tree_block_no_bg_flush (383 samples, 0.08%)</title><rect x="63.8069%" y="629" width="0.0793%" height="15" fill="rgb(235,167,37)" fg:x="308045" fg:w="383"/><text x="64.0569%" y="639.50"></text></g><g><title>btrfs_alloc_tree_block (382 samples, 0.08%)</title><rect x="63.8071%" y="613" width="0.0791%" height="15" fill="rgb(213,109,30)" fg:x="308046" fg:w="382"/><text x="64.0571%" y="623.50"></text></g><g><title>__set_page_dirty_nobuffers (52 samples, 0.01%)</title><rect x="63.8991%" y="581" width="0.0108%" height="15" fill="rgb(222,172,16)" fg:x="308490" fg:w="52"/><text x="64.1491%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (67 samples, 0.01%)</title><rect x="63.8968%" y="613" width="0.0139%" height="15" fill="rgb(233,192,5)" fg:x="308479" fg:w="67"/><text x="64.1468%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (63 samples, 0.01%)</title><rect x="63.8976%" y="597" width="0.0130%" height="15" fill="rgb(247,189,41)" fg:x="308483" fg:w="63"/><text x="64.1476%" y="607.50"></text></g><g><title>copy_extent_buffer (59 samples, 0.01%)</title><rect x="63.9171%" y="613" width="0.0122%" height="15" fill="rgb(218,134,47)" fg:x="308577" fg:w="59"/><text x="64.1671%" y="623.50"></text></g><g><title>read_extent_buffer (57 samples, 0.01%)</title><rect x="63.9175%" y="597" width="0.0118%" height="15" fill="rgb(216,29,3)" fg:x="308579" fg:w="57"/><text x="64.1675%" y="607.50"></text></g><g><title>copy_for_split (201 samples, 0.04%)</title><rect x="63.8900%" y="629" width="0.0416%" height="15" fill="rgb(246,140,12)" fg:x="308446" fg:w="201"/><text x="64.1400%" y="639.50"></text></g><g><title>btrfs_get_token_32 (54 samples, 0.01%)</title><rect x="63.9486%" y="597" width="0.0112%" height="15" fill="rgb(230,136,11)" fg:x="308729" fg:w="54"/><text x="64.1986%" y="607.50"></text></g><g><title>btrfs_set_token_32 (82 samples, 0.02%)</title><rect x="63.9610%" y="597" width="0.0170%" height="15" fill="rgb(247,22,47)" fg:x="308789" fg:w="82"/><text x="64.2110%" y="607.50"></text></g><g><title>__push_leaf_left (302 samples, 0.06%)</title><rect x="63.9349%" y="613" width="0.0626%" height="15" fill="rgb(218,84,22)" fg:x="308663" fg:w="302"/><text x="64.1849%" y="623.50"></text></g><g><title>push_leaf_left (376 samples, 0.08%)</title><rect x="63.9320%" y="629" width="0.0779%" height="15" fill="rgb(216,87,39)" fg:x="308649" fg:w="376"/><text x="64.1820%" y="639.50"></text></g><g><title>split_leaf (1,005 samples, 0.21%)</title><rect x="63.8040%" y="645" width="0.2082%" height="15" fill="rgb(221,178,8)" fg:x="308031" fg:w="1005"/><text x="64.0540%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (88 samples, 0.02%)</title><rect x="64.0501%" y="629" width="0.0182%" height="15" fill="rgb(230,42,11)" fg:x="309219" fg:w="88"/><text x="64.3001%" y="639.50"></text></g><g><title>btrfs_search_slot (4,649 samples, 0.96%)</title><rect x="63.1091%" y="661" width="0.9630%" height="15" fill="rgb(237,229,4)" fg:x="304676" fg:w="4649"/><text x="63.3591%" y="671.50"></text></g><g><title>unlock_up (289 samples, 0.06%)</title><rect x="64.0122%" y="645" width="0.0599%" height="15" fill="rgb(222,31,33)" fg:x="309036" fg:w="289"/><text x="64.2622%" y="655.50"></text></g><g><title>btrfs_get_32 (135 samples, 0.03%)</title><rect x="64.1874%" y="645" width="0.0280%" height="15" fill="rgb(210,17,39)" fg:x="309882" fg:w="135"/><text x="64.4374%" y="655.50"></text></g><g><title>btrfs_get_token_32 (838 samples, 0.17%)</title><rect x="64.2154%" y="645" width="0.1736%" height="15" fill="rgb(244,93,20)" fg:x="310017" fg:w="838"/><text x="64.4654%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (186 samples, 0.04%)</title><rect x="64.3504%" y="629" width="0.0385%" height="15" fill="rgb(210,40,47)" fg:x="310669" fg:w="186"/><text x="64.6004%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (315 samples, 0.07%)</title><rect x="64.3889%" y="645" width="0.0652%" height="15" fill="rgb(239,211,47)" fg:x="310855" fg:w="315"/><text x="64.6389%" y="655.50"></text></g><g><title>leaf_space_used (268 samples, 0.06%)</title><rect x="64.3987%" y="629" width="0.0555%" height="15" fill="rgb(251,223,49)" fg:x="310902" fg:w="268"/><text x="64.6487%" y="639.50"></text></g><g><title>btrfs_get_32 (175 samples, 0.04%)</title><rect x="64.4179%" y="613" width="0.0362%" height="15" fill="rgb(221,149,5)" fg:x="310995" fg:w="175"/><text x="64.6679%" y="623.50"></text></g><g><title>btrfs_mark_buffer_dirty (265 samples, 0.05%)</title><rect x="64.4542%" y="645" width="0.0549%" height="15" fill="rgb(219,224,51)" fg:x="311170" fg:w="265"/><text x="64.7042%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (119 samples, 0.02%)</title><rect x="64.4844%" y="629" width="0.0246%" height="15" fill="rgb(223,7,8)" fg:x="311316" fg:w="119"/><text x="64.7344%" y="639.50"></text></g><g><title>btrfs_set_token_32 (877 samples, 0.18%)</title><rect x="64.5091%" y="645" width="0.1817%" height="15" fill="rgb(241,217,22)" fg:x="311435" fg:w="877"/><text x="64.7591%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (170 samples, 0.04%)</title><rect x="64.6555%" y="629" width="0.0352%" height="15" fill="rgb(248,209,0)" fg:x="312142" fg:w="170"/><text x="64.9055%" y="639.50"></text></g><g><title>btrfs_unlock_up_safe (58 samples, 0.01%)</title><rect x="64.6907%" y="645" width="0.0120%" height="15" fill="rgb(217,205,4)" fg:x="312312" fg:w="58"/><text x="64.9407%" y="655.50"></text></g><g><title>memmove_extent_buffer (314 samples, 0.07%)</title><rect x="64.7059%" y="645" width="0.0650%" height="15" fill="rgb(228,124,39)" fg:x="312385" fg:w="314"/><text x="64.9559%" y="655.50"></text></g><g><title>memmove (193 samples, 0.04%)</title><rect x="64.7309%" y="629" width="0.0400%" height="15" fill="rgb(250,116,42)" fg:x="312506" fg:w="193"/><text x="64.9809%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (8,286 samples, 1.72%)</title><rect x="63.1026%" y="677" width="1.7163%" height="15" fill="rgb(223,202,9)" fg:x="304645" fg:w="8286"/><text x="63.3526%" y="687.50"></text></g><g><title>setup_items_for_insert (3,606 samples, 0.75%)</title><rect x="64.0720%" y="661" width="0.7469%" height="15" fill="rgb(242,222,40)" fg:x="309325" fg:w="3606"/><text x="64.3220%" y="671.50"></text></g><g><title>write_extent_buffer (232 samples, 0.05%)</title><rect x="64.7709%" y="645" width="0.0481%" height="15" fill="rgb(229,99,46)" fg:x="312699" fg:w="232"/><text x="65.0209%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (167 samples, 0.03%)</title><rect x="64.8190%" y="677" width="0.0346%" height="15" fill="rgb(225,56,46)" fg:x="312931" fg:w="167"/><text x="65.0690%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (109 samples, 0.02%)</title><rect x="64.8310%" y="661" width="0.0226%" height="15" fill="rgb(227,94,5)" fg:x="312989" fg:w="109"/><text x="65.0810%" y="671.50"></text></g><g><title>btrfs_set_16 (59 samples, 0.01%)</title><rect x="64.8535%" y="677" width="0.0122%" height="15" fill="rgb(205,112,38)" fg:x="313098" fg:w="59"/><text x="65.1035%" y="687.50"></text></g><g><title>btrfs_set_64 (50 samples, 0.01%)</title><rect x="64.8658%" y="677" width="0.0104%" height="15" fill="rgb(231,133,46)" fg:x="313157" fg:w="50"/><text x="65.1158%" y="687.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (88 samples, 0.02%)</title><rect x="64.8761%" y="677" width="0.0182%" height="15" fill="rgb(217,16,9)" fg:x="313207" fg:w="88"/><text x="65.1261%" y="687.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="64.8989%" y="661" width="0.0133%" height="15" fill="rgb(249,173,9)" fg:x="313317" fg:w="64"/><text x="65.1489%" y="671.50"></text></g><g><title>btrfs_update_root_times (215 samples, 0.04%)</title><rect x="64.8944%" y="677" width="0.0445%" height="15" fill="rgb(205,163,53)" fg:x="313295" fg:w="215"/><text x="65.1444%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (129 samples, 0.03%)</title><rect x="64.9122%" y="661" width="0.0267%" height="15" fill="rgb(217,54,41)" fg:x="313381" fg:w="129"/><text x="65.1622%" y="671.50"></text></g><g><title>read_tsc (80 samples, 0.02%)</title><rect x="64.9223%" y="645" width="0.0166%" height="15" fill="rgb(228,216,12)" fg:x="313430" fg:w="80"/><text x="65.1723%" y="655.50"></text></g><g><title>current_time (122 samples, 0.03%)</title><rect x="64.9389%" y="677" width="0.0253%" height="15" fill="rgb(244,228,15)" fg:x="313510" fg:w="122"/><text x="65.1889%" y="687.50"></text></g><g><title>ktime_get_coarse_real_ts64 (66 samples, 0.01%)</title><rect x="64.9505%" y="661" width="0.0137%" height="15" fill="rgb(221,176,53)" fg:x="313566" fg:w="66"/><text x="65.2005%" y="671.50"></text></g><g><title>btrfs_set_token_32 (348 samples, 0.07%)</title><rect x="65.0118%" y="661" width="0.0721%" height="15" fill="rgb(205,94,34)" fg:x="313862" fg:w="348"/><text x="65.2618%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (67 samples, 0.01%)</title><rect x="65.0700%" y="645" width="0.0139%" height="15" fill="rgb(213,110,48)" fg:x="314143" fg:w="67"/><text x="65.3200%" y="655.50"></text></g><g><title>btrfs_set_token_64 (519 samples, 0.11%)</title><rect x="65.0839%" y="661" width="0.1075%" height="15" fill="rgb(236,142,28)" fg:x="314210" fg:w="519"/><text x="65.3339%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (94 samples, 0.02%)</title><rect x="65.1719%" y="645" width="0.0195%" height="15" fill="rgb(225,135,29)" fg:x="314635" fg:w="94"/><text x="65.4219%" y="655.50"></text></g><g><title>inode_get_bytes (66 samples, 0.01%)</title><rect x="65.1926%" y="661" width="0.0137%" height="15" fill="rgb(252,45,31)" fg:x="314735" fg:w="66"/><text x="65.4426%" y="671.50"></text></g><g><title>fill_inode_item (1,223 samples, 0.25%)</title><rect x="64.9642%" y="677" width="0.2533%" height="15" fill="rgb(211,187,50)" fg:x="313632" fg:w="1223"/><text x="65.2142%" y="687.50"></text></g><g><title>map_id_up (54 samples, 0.01%)</title><rect x="65.2063%" y="661" width="0.0112%" height="15" fill="rgb(229,109,7)" fg:x="314801" fg:w="54"/><text x="65.4563%" y="671.50"></text></g><g><title>inode_init_owner (72 samples, 0.01%)</title><rect x="65.2235%" y="677" width="0.0149%" height="15" fill="rgb(251,131,51)" fg:x="314884" fg:w="72"/><text x="65.4735%" y="687.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="65.5721%" y="661" width="0.0110%" height="15" fill="rgb(251,180,35)" fg:x="316567" fg:w="53"/><text x="65.8221%" y="671.50"></text></g><g><title>inode_tree_add (1,880 samples, 0.39%)</title><rect x="65.2392%" y="677" width="0.3894%" height="15" fill="rgb(211,46,32)" fg:x="314960" fg:w="1880"/><text x="65.4892%" y="687.50"></text></g><g><title>rb_insert_color (217 samples, 0.04%)</title><rect x="65.5837%" y="661" width="0.0449%" height="15" fill="rgb(248,123,17)" fg:x="316623" fg:w="217"/><text x="65.8337%" y="671.50"></text></g><g><title>_raw_spin_lock (125 samples, 0.03%)</title><rect x="65.6407%" y="645" width="0.0259%" height="15" fill="rgb(227,141,18)" fg:x="316898" fg:w="125"/><text x="65.8907%" y="655.50"></text></g><g><title>insert_inode_locked4 (506 samples, 0.10%)</title><rect x="65.6286%" y="677" width="0.1048%" height="15" fill="rgb(216,102,9)" fg:x="316840" fg:w="506"/><text x="65.8786%" y="687.50"></text></g><g><title>inode_insert5 (502 samples, 0.10%)</title><rect x="65.6295%" y="661" width="0.1040%" height="15" fill="rgb(253,47,13)" fg:x="316844" fg:w="502"/><text x="65.8795%" y="671.50"></text></g><g><title>find_inode (323 samples, 0.07%)</title><rect x="65.6665%" y="645" width="0.0669%" height="15" fill="rgb(226,93,23)" fg:x="317023" fg:w="323"/><text x="65.9165%" y="655.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="65.7506%" y="661" width="0.0126%" height="15" fill="rgb(247,104,17)" fg:x="317429" fg:w="61"/><text x="66.0006%" y="671.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.04%)</title><rect x="65.7335%" y="677" width="0.0350%" height="15" fill="rgb(233,203,26)" fg:x="317346" fg:w="169"/><text x="65.9835%" y="687.50"></text></g><g><title>kmem_cache_free (105 samples, 0.02%)</title><rect x="65.7685%" y="677" width="0.0217%" height="15" fill="rgb(244,98,49)" fg:x="317515" fg:w="105"/><text x="66.0185%" y="687.50"></text></g><g><title>memzero_extent_buffer (154 samples, 0.03%)</title><rect x="65.7902%" y="677" width="0.0319%" height="15" fill="rgb(235,134,22)" fg:x="317620" fg:w="154"/><text x="66.0402%" y="687.50"></text></g><g><title>_raw_spin_lock (337 samples, 0.07%)</title><rect x="65.8292%" y="661" width="0.0698%" height="15" fill="rgb(221,70,32)" fg:x="317808" fg:w="337"/><text x="66.0792%" y="671.50"></text></g><g><title>btrfs_init_metadata_block_rsv (138 samples, 0.03%)</title><rect x="65.9387%" y="629" width="0.0286%" height="15" fill="rgb(238,15,50)" fg:x="318337" fg:w="138"/><text x="66.1887%" y="639.50"></text></g><g><title>btrfs_find_space_info (79 samples, 0.02%)</title><rect x="65.9509%" y="613" width="0.0164%" height="15" fill="rgb(215,221,48)" fg:x="318396" fg:w="79"/><text x="66.2009%" y="623.50"></text></g><g><title>__slab_alloc (106 samples, 0.02%)</title><rect x="66.0201%" y="613" width="0.0220%" height="15" fill="rgb(236,73,3)" fg:x="318730" fg:w="106"/><text x="66.2701%" y="623.50"></text></g><g><title>___slab_alloc (98 samples, 0.02%)</title><rect x="66.0218%" y="597" width="0.0203%" height="15" fill="rgb(250,107,11)" fg:x="318738" fg:w="98"/><text x="66.2718%" y="607.50"></text></g><g><title>__mod_memcg_lruvec_state (79 samples, 0.02%)</title><rect x="66.0978%" y="597" width="0.0164%" height="15" fill="rgb(242,39,14)" fg:x="319105" fg:w="79"/><text x="66.3478%" y="607.50"></text></g><g><title>memcg_slab_post_alloc_hook (363 samples, 0.08%)</title><rect x="66.0423%" y="613" width="0.0752%" height="15" fill="rgb(248,164,37)" fg:x="318837" fg:w="363"/><text x="66.2923%" y="623.50"></text></g><g><title>get_obj_cgroup_from_current (109 samples, 0.02%)</title><rect x="66.1268%" y="597" width="0.0226%" height="15" fill="rgb(217,60,12)" fg:x="319245" fg:w="109"/><text x="66.3768%" y="607.50"></text></g><g><title>obj_cgroup_charge (209 samples, 0.04%)</title><rect x="66.1494%" y="597" width="0.0433%" height="15" fill="rgb(240,125,29)" fg:x="319354" fg:w="209"/><text x="66.3994%" y="607.50"></text></g><g><title>btrfs_alloc_inode (1,355 samples, 0.28%)</title><rect x="65.9126%" y="645" width="0.2807%" height="15" fill="rgb(208,207,28)" fg:x="318211" fg:w="1355"/><text x="66.1626%" y="655.50"></text></g><g><title>kmem_cache_alloc (1,044 samples, 0.22%)</title><rect x="65.9770%" y="629" width="0.2162%" height="15" fill="rgb(209,159,27)" fg:x="318522" fg:w="1044"/><text x="66.2270%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (366 samples, 0.08%)</title><rect x="66.1175%" y="613" width="0.0758%" height="15" fill="rgb(251,176,53)" fg:x="319200" fg:w="366"/><text x="66.3675%" y="623.50"></text></g><g><title>alloc_inode (1,877 samples, 0.39%)</title><rect x="65.8990%" y="661" width="0.3888%" height="15" fill="rgb(211,85,7)" fg:x="318145" fg:w="1877"/><text x="66.1490%" y="671.50"></text></g><g><title>inode_init_always (456 samples, 0.09%)</title><rect x="66.1933%" y="645" width="0.0945%" height="15" fill="rgb(216,64,54)" fg:x="319566" fg:w="456"/><text x="66.4433%" y="655.50"></text></g><g><title>security_inode_alloc (84 samples, 0.02%)</title><rect x="66.2703%" y="629" width="0.0174%" height="15" fill="rgb(217,54,24)" fg:x="319938" fg:w="84"/><text x="66.5203%" y="639.50"></text></g><g><title>new_inode (2,333 samples, 0.48%)</title><rect x="65.8221%" y="677" width="0.4832%" height="15" fill="rgb(208,206,53)" fg:x="317774" fg:w="2333"/><text x="66.0721%" y="687.50"></text></g><g><title>inode_sb_list_add (85 samples, 0.02%)</title><rect x="66.2877%" y="661" width="0.0176%" height="15" fill="rgb(251,74,39)" fg:x="320022" fg:w="85"/><text x="66.5377%" y="671.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="66.2940%" y="645" width="0.0114%" height="15" fill="rgb(226,47,5)" fg:x="320052" fg:w="55"/><text x="66.5440%" y="655.50"></text></g><g><title>btrfs_new_inode (16,537 samples, 3.43%)</title><rect x="62.9112%" y="693" width="3.4254%" height="15" fill="rgb(234,111,33)" fg:x="303721" fg:w="16537"/><text x="63.1612%" y="703.50">btr..</text></g><g><title>write_extent_buffer (151 samples, 0.03%)</title><rect x="66.3054%" y="677" width="0.0313%" height="15" fill="rgb(251,14,10)" fg:x="320107" fg:w="151"/><text x="66.5554%" y="687.50"></text></g><g><title>btrfs_set_64 (78 samples, 0.02%)</title><rect x="66.3439%" y="693" width="0.0162%" height="15" fill="rgb(232,43,0)" fg:x="320293" fg:w="78"/><text x="66.5939%" y="703.50"></text></g><g><title>btrfs_set_8 (80 samples, 0.02%)</title><rect x="66.3600%" y="693" width="0.0166%" height="15" fill="rgb(222,68,43)" fg:x="320371" fg:w="80"/><text x="66.6100%" y="703.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="66.4897%" y="645" width="0.0128%" height="15" fill="rgb(217,24,23)" fg:x="320997" fg:w="62"/><text x="66.7397%" y="655.50"></text></g><g><title>mutex_lock (78 samples, 0.02%)</title><rect x="66.5025%" y="645" width="0.0162%" height="15" fill="rgb(229,209,14)" fg:x="321059" fg:w="78"/><text x="66.7525%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (432 samples, 0.09%)</title><rect x="66.4387%" y="661" width="0.0895%" height="15" fill="rgb(250,149,48)" fg:x="320751" fg:w="432"/><text x="66.6887%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (140 samples, 0.03%)</title><rect x="66.5282%" y="661" width="0.0290%" height="15" fill="rgb(210,120,37)" fg:x="321183" fg:w="140"/><text x="66.7782%" y="671.50"></text></g><g><title>_raw_spin_lock (122 samples, 0.03%)</title><rect x="66.5320%" y="645" width="0.0253%" height="15" fill="rgb(210,21,8)" fg:x="321201" fg:w="122"/><text x="66.7820%" y="655.50"></text></g><g><title>_raw_spin_lock (293 samples, 0.06%)</title><rect x="66.5773%" y="645" width="0.0607%" height="15" fill="rgb(243,145,7)" fg:x="321420" fg:w="293"/><text x="66.8273%" y="655.50"></text></g><g><title>__radix_tree_lookup (567 samples, 0.12%)</title><rect x="66.6451%" y="629" width="0.1174%" height="15" fill="rgb(238,178,32)" fg:x="321747" fg:w="567"/><text x="66.8951%" y="639.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="66.7625%" y="629" width="0.0116%" height="15" fill="rgb(222,4,10)" fg:x="322314" fg:w="56"/><text x="67.0125%" y="639.50"></text></g><g><title>btrfs_get_delayed_node (660 samples, 0.14%)</title><rect x="66.6382%" y="645" width="0.1367%" height="15" fill="rgb(239,7,37)" fg:x="321714" fg:w="660"/><text x="66.8882%" y="655.50"></text></g><g><title>__slab_alloc (117 samples, 0.02%)</title><rect x="66.7975%" y="629" width="0.0242%" height="15" fill="rgb(215,31,37)" fg:x="322483" fg:w="117"/><text x="67.0475%" y="639.50"></text></g><g><title>___slab_alloc (111 samples, 0.02%)</title><rect x="66.7987%" y="613" width="0.0230%" height="15" fill="rgb(224,83,33)" fg:x="322489" fg:w="111"/><text x="67.0487%" y="623.50"></text></g><g><title>memset_erms (92 samples, 0.02%)</title><rect x="66.8242%" y="629" width="0.0191%" height="15" fill="rgb(239,55,3)" fg:x="322612" fg:w="92"/><text x="67.0742%" y="639.50"></text></g><g><title>kmem_cache_alloc (367 samples, 0.08%)</title><rect x="66.7749%" y="645" width="0.0760%" height="15" fill="rgb(247,92,11)" fg:x="322374" fg:w="367"/><text x="67.0249%" y="655.50"></text></g><g><title>radix_tree_insert (178 samples, 0.04%)</title><rect x="66.8509%" y="645" width="0.0369%" height="15" fill="rgb(239,200,7)" fg:x="322741" fg:w="178"/><text x="67.1009%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,598 samples, 0.33%)</title><rect x="66.5572%" y="661" width="0.3310%" height="15" fill="rgb(227,115,8)" fg:x="321323" fg:w="1598"/><text x="66.8072%" y="671.50"></text></g><g><title>inode_get_bytes (104 samples, 0.02%)</title><rect x="66.8930%" y="645" width="0.0215%" height="15" fill="rgb(215,189,27)" fg:x="322944" fg:w="104"/><text x="67.1430%" y="655.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="66.8951%" y="629" width="0.0195%" height="15" fill="rgb(251,216,39)" fg:x="322954" fg:w="94"/><text x="67.1451%" y="639.50"></text></g><g><title>fill_stack_inode_item (160 samples, 0.03%)</title><rect x="66.8882%" y="661" width="0.0331%" height="15" fill="rgb(207,29,47)" fg:x="322921" fg:w="160"/><text x="67.1382%" y="671.50"></text></g><g><title>mutex_lock (120 samples, 0.02%)</title><rect x="66.9214%" y="661" width="0.0249%" height="15" fill="rgb(210,71,34)" fg:x="323081" fg:w="120"/><text x="67.1714%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (2,684 samples, 0.56%)</title><rect x="66.4000%" y="677" width="0.5560%" height="15" fill="rgb(253,217,51)" fg:x="320564" fg:w="2684"/><text x="66.6500%" y="687.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="66.9607%" y="661" width="0.0114%" height="15" fill="rgb(222,117,46)" fg:x="323271" fg:w="55"/><text x="67.2107%" y="671.50"></text></g><g><title>btrfs_update_inode (2,973 samples, 0.62%)</title><rect x="66.3799%" y="693" width="0.6158%" height="15" fill="rgb(226,132,6)" fg:x="320467" fg:w="2973"/><text x="66.6299%" y="703.50"></text></g><g><title>btrfs_update_root_times (192 samples, 0.04%)</title><rect x="66.9560%" y="677" width="0.0398%" height="15" fill="rgb(254,145,51)" fg:x="323248" fg:w="192"/><text x="67.2060%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (114 samples, 0.02%)</title><rect x="66.9721%" y="661" width="0.0236%" height="15" fill="rgb(231,199,27)" fg:x="323326" fg:w="114"/><text x="67.2221%" y="671.50"></text></g><g><title>read_tsc (63 samples, 0.01%)</title><rect x="66.9827%" y="645" width="0.0130%" height="15" fill="rgb(245,158,14)" fg:x="323377" fg:w="63"/><text x="67.2327%" y="655.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="67.0272%" y="661" width="0.0106%" height="15" fill="rgb(240,113,14)" fg:x="323592" fg:w="51"/><text x="67.2772%" y="671.50"></text></g><g><title>__d_instantiate (119 samples, 0.02%)</title><rect x="67.0167%" y="677" width="0.0246%" height="15" fill="rgb(210,20,13)" fg:x="323541" fg:w="119"/><text x="67.2667%" y="687.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="67.0413%" y="677" width="0.0106%" height="15" fill="rgb(241,144,13)" fg:x="323660" fg:w="51"/><text x="67.2913%" y="687.50"></text></g><g><title>d_instantiate_new (297 samples, 0.06%)</title><rect x="66.9980%" y="693" width="0.0615%" height="15" fill="rgb(235,43,34)" fg:x="323451" fg:w="297"/><text x="67.2480%" y="703.50"></text></g><g><title>memset_erms (64 samples, 0.01%)</title><rect x="67.0863%" y="677" width="0.0133%" height="15" fill="rgb(208,36,20)" fg:x="323877" fg:w="64"/><text x="67.3363%" y="687.50"></text></g><g><title>kmem_cache_alloc (220 samples, 0.05%)</title><rect x="67.0616%" y="693" width="0.0456%" height="15" fill="rgb(239,204,10)" fg:x="323758" fg:w="220"/><text x="67.3116%" y="703.50"></text></g><g><title>kmem_cache_free (123 samples, 0.03%)</title><rect x="67.1072%" y="693" width="0.0255%" height="15" fill="rgb(217,84,43)" fg:x="323978" fg:w="123"/><text x="67.3572%" y="703.50"></text></g><g><title>security_inode_init_security (128 samples, 0.03%)</title><rect x="67.1327%" y="693" width="0.0265%" height="15" fill="rgb(241,170,50)" fg:x="324101" fg:w="128"/><text x="67.3827%" y="703.50"></text></g><g><title>_raw_spin_lock (75 samples, 0.02%)</title><rect x="67.2455%" y="661" width="0.0155%" height="15" fill="rgb(226,205,29)" fg:x="324646" fg:w="75"/><text x="67.4955%" y="671.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="67.2822%" y="629" width="0.0217%" height="15" fill="rgb(233,113,1)" fg:x="324823" fg:w="105"/><text x="67.5322%" y="639.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (531 samples, 0.11%)</title><rect x="67.3040%" y="629" width="0.1100%" height="15" fill="rgb(253,98,13)" fg:x="324928" fg:w="531"/><text x="67.5540%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (270 samples, 0.06%)</title><rect x="67.3580%" y="613" width="0.0559%" height="15" fill="rgb(211,115,12)" fg:x="325189" fg:w="270"/><text x="67.6080%" y="623.50"></text></g><g><title>_raw_spin_lock (113 samples, 0.02%)</title><rect x="67.3905%" y="597" width="0.0234%" height="15" fill="rgb(208,12,16)" fg:x="325346" fg:w="113"/><text x="67.6405%" y="607.50"></text></g><g><title>_raw_spin_lock (77 samples, 0.02%)</title><rect x="67.4562%" y="597" width="0.0159%" height="15" fill="rgb(237,193,54)" fg:x="325663" fg:w="77"/><text x="67.7062%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (1,118 samples, 0.23%)</title><rect x="67.2408%" y="677" width="0.2316%" height="15" fill="rgb(243,22,42)" fg:x="324623" fg:w="1118"/><text x="67.4908%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,020 samples, 0.21%)</title><rect x="67.2611%" y="661" width="0.2113%" height="15" fill="rgb(233,151,36)" fg:x="324721" fg:w="1020"/><text x="67.5111%" y="671.50"></text></g><g><title>__reserve_bytes (992 samples, 0.21%)</title><rect x="67.2669%" y="645" width="0.2055%" height="15" fill="rgb(237,57,45)" fg:x="324749" fg:w="992"/><text x="67.5169%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (282 samples, 0.06%)</title><rect x="67.4139%" y="629" width="0.0584%" height="15" fill="rgb(221,88,17)" fg:x="325459" fg:w="282"/><text x="67.6639%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (165 samples, 0.03%)</title><rect x="67.4382%" y="613" width="0.0342%" height="15" fill="rgb(230,79,15)" fg:x="325576" fg:w="165"/><text x="67.6882%" y="623.50"></text></g><g><title>_raw_spin_lock (86 samples, 0.02%)</title><rect x="67.5142%" y="661" width="0.0178%" height="15" fill="rgb(213,57,13)" fg:x="325943" fg:w="86"/><text x="67.7642%" y="671.50"></text></g><g><title>join_transaction (276 samples, 0.06%)</title><rect x="67.4753%" y="677" width="0.0572%" height="15" fill="rgb(222,116,39)" fg:x="325755" fg:w="276"/><text x="67.7253%" y="687.50"></text></g><g><title>memset_erms (53 samples, 0.01%)</title><rect x="67.5589%" y="661" width="0.0110%" height="15" fill="rgb(245,107,2)" fg:x="326159" fg:w="53"/><text x="67.8089%" y="671.50"></text></g><g><title>kmem_cache_alloc (225 samples, 0.05%)</title><rect x="67.5324%" y="677" width="0.0466%" height="15" fill="rgb(238,1,10)" fg:x="326031" fg:w="225"/><text x="67.7824%" y="687.50"></text></g><g><title>start_transaction (2,155 samples, 0.45%)</title><rect x="67.1592%" y="693" width="0.4464%" height="15" fill="rgb(249,4,48)" fg:x="324229" fg:w="2155"/><text x="67.4092%" y="703.50"></text></g><g><title>wait_current_trans (128 samples, 0.03%)</title><rect x="67.5790%" y="677" width="0.0265%" height="15" fill="rgb(223,151,18)" fg:x="326256" fg:w="128"/><text x="67.8290%" y="687.50"></text></g><g><title>_raw_spin_lock (91 samples, 0.02%)</title><rect x="67.5867%" y="661" width="0.0188%" height="15" fill="rgb(227,65,43)" fg:x="326293" fg:w="91"/><text x="67.8367%" y="671.50"></text></g><g><title>strlen (746 samples, 0.15%)</title><rect x="67.6055%" y="693" width="0.1545%" height="15" fill="rgb(218,40,45)" fg:x="326384" fg:w="746"/><text x="67.8555%" y="703.50"></text></g><g><title>btrfs_symlink (55,130 samples, 11.42%)</title><rect x="56.3768%" y="709" width="11.4194%" height="15" fill="rgb(252,121,31)" fg:x="272174" fg:w="55130"/><text x="56.6268%" y="719.50">btrfs_symlink</text></g><g><title>write_extent_buffer (174 samples, 0.04%)</title><rect x="67.7601%" y="693" width="0.0360%" height="15" fill="rgb(219,158,43)" fg:x="327130" fg:w="174"/><text x="68.0101%" y="703.50"></text></g><g><title>btrfs_permission (52 samples, 0.01%)</title><rect x="67.8129%" y="693" width="0.0108%" height="15" fill="rgb(231,162,42)" fg:x="327385" fg:w="52"/><text x="68.0629%" y="703.50"></text></g><g><title>inode_permission.part.0 (104 samples, 0.02%)</title><rect x="67.8058%" y="709" width="0.0215%" height="15" fill="rgb(217,179,25)" fg:x="327351" fg:w="104"/><text x="68.0558%" y="719.50"></text></g><g><title>do_symlinkat (75,553 samples, 15.65%)</title><rect x="52.1879%" y="741" width="15.6497%" height="15" fill="rgb(206,212,31)" fg:x="251951" fg:w="75553"/><text x="52.4379%" y="751.50">do_symlinkat</text></g><g><title>vfs_symlink (55,415 samples, 11.48%)</title><rect x="56.3591%" y="725" width="11.4784%" height="15" fill="rgb(235,144,12)" fg:x="272089" fg:w="55415"/><text x="56.6091%" y="735.50">vfs_symlink</text></g><g><title>do_syscall_64 (75,613 samples, 15.66%)</title><rect x="52.1796%" y="757" width="15.6621%" height="15" fill="rgb(213,51,10)" fg:x="251911" fg:w="75613"/><text x="52.4296%" y="767.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (75,700 samples, 15.68%)</title><rect x="52.1709%" y="773" width="15.6801%" height="15" fill="rgb(231,145,14)" fg:x="251869" fg:w="75700"/><text x="52.4209%" y="783.50">entry_SYSCALL_64_after_h..</text></g><g><title>syscall_return_via_sysret (62 samples, 0.01%)</title><rect x="67.8595%" y="773" width="0.0128%" height="15" fill="rgb(235,15,28)" fg:x="327610" fg:w="62"/><text x="68.1095%" y="783.50"></text></g><g><title>__symlink (76,118 samples, 15.77%)</title><rect x="52.1063%" y="789" width="15.7667%" height="15" fill="rgb(237,206,10)" fg:x="251557" fg:w="76118"/><text x="52.3563%" y="799.50">__symlink</text></g><g><title>_int_free (145 samples, 0.03%)</title><rect x="67.8730%" y="789" width="0.0300%" height="15" fill="rgb(236,227,27)" fg:x="327675" fg:w="145"/><text x="68.1230%" y="799.50"></text></g><g><title>free@plt (66 samples, 0.01%)</title><rect x="67.9032%" y="789" width="0.0137%" height="15" fill="rgb(246,83,35)" fg:x="327821" fg:w="66"/><text x="68.1532%" y="799.50"></text></g><g><title>jni_ExceptionOccurred (96 samples, 0.02%)</title><rect x="67.9169%" y="789" width="0.0199%" height="15" fill="rgb(220,136,24)" fg:x="327887" fg:w="96"/><text x="68.1669%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (197 samples, 0.04%)</title><rect x="67.9759%" y="773" width="0.0408%" height="15" fill="rgb(217,3,25)" fg:x="328172" fg:w="197"/><text x="68.2259%" y="783.50"></text></g><g><title>ThreadStateTransition::transition_from_native (147 samples, 0.03%)</title><rect x="68.0167%" y="773" width="0.0304%" height="15" fill="rgb(239,24,14)" fg:x="328369" fg:w="147"/><text x="68.2667%" y="783.50"></text></g><g><title>[libc-2.31.so] (125 samples, 0.03%)</title><rect x="68.0472%" y="773" width="0.0259%" height="15" fill="rgb(244,16,53)" fg:x="328516" fg:w="125"/><text x="68.2972%" y="783.50"></text></g><g><title>check_bounds (169 samples, 0.04%)</title><rect x="68.0730%" y="773" width="0.0350%" height="15" fill="rgb(208,175,44)" fg:x="328641" fg:w="169"/><text x="68.3230%" y="783.50"></text></g><g><title>jni_GetByteArrayRegion (856 samples, 0.18%)</title><rect x="67.9367%" y="789" width="0.1773%" height="15" fill="rgb(252,18,48)" fg:x="327983" fg:w="856"/><text x="68.1867%" y="799.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (139 samples, 0.03%)</title><rect x="68.1381%" y="773" width="0.0288%" height="15" fill="rgb(234,199,32)" fg:x="328955" fg:w="139"/><text x="68.3881%" y="783.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (111 samples, 0.02%)</title><rect x="68.1439%" y="757" width="0.0230%" height="15" fill="rgb(225,77,54)" fg:x="328983" fg:w="111"/><text x="68.3939%" y="767.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (92 samples, 0.02%)</title><rect x="68.1478%" y="741" width="0.0191%" height="15" fill="rgb(225,42,25)" fg:x="329002" fg:w="92"/><text x="68.3978%" y="751.50"></text></g><g><title>HandleMark::pop_and_restore (141 samples, 0.03%)</title><rect x="68.1669%" y="773" width="0.0292%" height="15" fill="rgb(242,227,46)" fg:x="329094" fg:w="141"/><text x="68.4169%" y="783.50"></text></g><g><title>JNIHandles::make_local (123 samples, 0.03%)</title><rect x="68.1961%" y="773" width="0.0255%" height="15" fill="rgb(246,197,35)" fg:x="329235" fg:w="123"/><text x="68.4461%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (171 samples, 0.04%)</title><rect x="68.2228%" y="773" width="0.0354%" height="15" fill="rgb(215,159,26)" fg:x="329364" fg:w="171"/><text x="68.4728%" y="783.50"></text></g><g><title>jni_GetObjectField (867 samples, 0.18%)</title><rect x="68.1141%" y="789" width="0.1796%" height="15" fill="rgb(212,194,50)" fg:x="328839" fg:w="867"/><text x="68.3641%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (171 samples, 0.04%)</title><rect x="68.2582%" y="773" width="0.0354%" height="15" fill="rgb(246,132,1)" fg:x="329535" fg:w="171"/><text x="68.5082%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (135 samples, 0.03%)</title><rect x="68.3239%" y="773" width="0.0280%" height="15" fill="rgb(217,71,7)" fg:x="329852" fg:w="135"/><text x="68.5739%" y="783.50"></text></g><g><title>jni_GetStringLength (497 samples, 0.10%)</title><rect x="68.2936%" y="789" width="0.1029%" height="15" fill="rgb(252,59,32)" fg:x="329706" fg:w="497"/><text x="68.5436%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (216 samples, 0.04%)</title><rect x="68.3518%" y="773" width="0.0447%" height="15" fill="rgb(253,204,25)" fg:x="329987" fg:w="216"/><text x="68.6018%" y="783.50"></text></g><g><title>jni_NewObjectV (171 samples, 0.04%)</title><rect x="68.3976%" y="789" width="0.0354%" height="15" fill="rgb(232,21,16)" fg:x="330208" fg:w="171"/><text x="68.6476%" y="799.50"></text></g><g><title>jni_invoke_nonstatic (81 samples, 0.02%)</title><rect x="68.4163%" y="773" width="0.0168%" height="15" fill="rgb(248,90,29)" fg:x="330298" fg:w="81"/><text x="68.6663%" y="783.50"></text></g><g><title>operator delete@plt (66 samples, 0.01%)</title><rect x="68.4430%" y="789" width="0.0137%" height="15" fill="rgb(249,223,7)" fg:x="330427" fg:w="66"/><text x="68.6930%" y="799.50"></text></g><g><title>__GI___libc_malloc (198 samples, 0.04%)</title><rect x="68.4610%" y="773" width="0.0410%" height="15" fill="rgb(231,119,42)" fg:x="330514" fg:w="198"/><text x="68.7110%" y="783.50"></text></g><g><title>tcache_get (82 samples, 0.02%)</title><rect x="68.4850%" y="757" width="0.0170%" height="15" fill="rgb(215,41,35)" fg:x="330630" fg:w="82"/><text x="68.7350%" y="767.50"></text></g><g><title>operator new (250 samples, 0.05%)</title><rect x="68.4598%" y="789" width="0.0518%" height="15" fill="rgb(220,44,45)" fg:x="330508" fg:w="250"/><text x="68.7098%" y="799.50"></text></g><g><title>_int_malloc (120 samples, 0.02%)</title><rect x="68.5509%" y="741" width="0.0249%" height="15" fill="rgb(253,197,36)" fg:x="330948" fg:w="120"/><text x="68.8009%" y="751.50"></text></g><g><title>__GI___libc_malloc (234 samples, 0.05%)</title><rect x="68.5321%" y="757" width="0.0485%" height="15" fill="rgb(245,225,54)" fg:x="330857" fg:w="234"/><text x="68.7821%" y="767.50"></text></g><g><title>operator new (253 samples, 0.05%)</title><rect x="68.5316%" y="773" width="0.0524%" height="15" fill="rgb(239,94,37)" fg:x="330855" fg:w="253"/><text x="68.7816%" y="783.50"></text></g><g><title>std::string::_Rep::_S_create (278 samples, 0.06%)</title><rect x="68.5294%" y="789" width="0.0576%" height="15" fill="rgb(242,217,10)" fg:x="330844" fg:w="278"/><text x="68.7794%" y="799.50"></text></g><g><title>[libunix_jni.so] (199,384 samples, 41.30%)</title><rect x="27.2878%" y="805" width="41.2994%" height="15" fill="rgb(250,193,7)" fg:x="131739" fg:w="199384"/><text x="27.5378%" y="815.50">[libunix_jni.so]</text></g><g><title>InstanceKlass::link_class_impl (75 samples, 0.02%)</title><rect x="81.0262%" y="757" width="0.0155%" height="15" fill="rgb(230,104,19)" fg:x="391176" fg:w="75"/><text x="81.2762%" y="767.50"></text></g><g><title>InterpreterRuntime::_new (120 samples, 0.02%)</title><rect x="81.0173%" y="789" width="0.0249%" height="15" fill="rgb(230,181,4)" fg:x="391133" fg:w="120"/><text x="81.2673%" y="799.50"></text></g><g><title>InstanceKlass::initialize_impl (81 samples, 0.02%)</title><rect x="81.0254%" y="773" width="0.0168%" height="15" fill="rgb(216,219,49)" fg:x="391172" fg:w="81"/><text x="81.2754%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (68 samples, 0.01%)</title><rect x="81.0484%" y="773" width="0.0141%" height="15" fill="rgb(254,144,0)" fg:x="391283" fg:w="68"/><text x="81.2984%" y="783.50"></text></g><g><title>InterpreterRuntime::anewarray (101 samples, 0.02%)</title><rect x="81.0422%" y="789" width="0.0209%" height="15" fill="rgb(205,209,38)" fg:x="391253" fg:w="101"/><text x="81.2922%" y="799.50"></text></g><g><title>TieredThresholdPolicy::call_event (54 samples, 0.01%)</title><rect x="81.0871%" y="725" width="0.0112%" height="15" fill="rgb(240,21,42)" fg:x="391470" fg:w="54"/><text x="81.3371%" y="735.50"></text></g><g><title>TieredThresholdPolicy::event (148 samples, 0.03%)</title><rect x="81.0772%" y="757" width="0.0307%" height="15" fill="rgb(241,132,3)" fg:x="391422" fg:w="148"/><text x="81.3272%" y="767.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (121 samples, 0.03%)</title><rect x="81.0828%" y="741" width="0.0251%" height="15" fill="rgb(225,14,2)" fg:x="391449" fg:w="121"/><text x="81.3328%" y="751.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (177 samples, 0.04%)</title><rect x="81.0716%" y="789" width="0.0367%" height="15" fill="rgb(210,141,35)" fg:x="391395" fg:w="177"/><text x="81.3216%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (177 samples, 0.04%)</title><rect x="81.0716%" y="773" width="0.0367%" height="15" fill="rgb(251,14,44)" fg:x="391395" fg:w="177"/><text x="81.3216%" y="783.50"></text></g><g><title>InterpreterRuntime::ldc (83 samples, 0.02%)</title><rect x="81.1083%" y="789" width="0.0172%" height="15" fill="rgb(247,48,18)" fg:x="391572" fg:w="83"/><text x="81.3583%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (50 samples, 0.01%)</title><rect x="81.1824%" y="741" width="0.0104%" height="15" fill="rgb(225,0,40)" fg:x="391930" fg:w="50"/><text x="81.4324%" y="751.50"></text></g><g><title>LinkResolver::resolve_static_call (71 samples, 0.01%)</title><rect x="81.1928%" y="741" width="0.0147%" height="15" fill="rgb(221,31,33)" fg:x="391980" fg:w="71"/><text x="81.4428%" y="751.50"></text></g><g><title>LinkResolver::resolve_invoke (243 samples, 0.05%)</title><rect x="81.1582%" y="757" width="0.0503%" height="15" fill="rgb(237,42,40)" fg:x="391813" fg:w="243"/><text x="81.4082%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (307 samples, 0.06%)</title><rect x="81.1474%" y="773" width="0.0636%" height="15" fill="rgb(233,51,29)" fg:x="391761" fg:w="307"/><text x="81.3974%" y="783.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (51 samples, 0.01%)</title><rect x="81.2112%" y="725" width="0.0106%" height="15" fill="rgb(226,58,20)" fg:x="392069" fg:w="51"/><text x="81.4612%" y="735.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (60 samples, 0.01%)</title><rect x="81.2110%" y="773" width="0.0124%" height="15" fill="rgb(208,98,7)" fg:x="392068" fg:w="60"/><text x="81.4610%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (59 samples, 0.01%)</title><rect x="81.2112%" y="757" width="0.0122%" height="15" fill="rgb(228,143,44)" fg:x="392069" fg:w="59"/><text x="81.4612%" y="767.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (59 samples, 0.01%)</title><rect x="81.2112%" y="741" width="0.0122%" height="15" fill="rgb(246,55,38)" fg:x="392069" fg:w="59"/><text x="81.4612%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (424 samples, 0.09%)</title><rect x="81.1375%" y="789" width="0.0878%" height="15" fill="rgb(247,87,16)" fg:x="391713" fg:w="424"/><text x="81.3875%" y="799.50"></text></g><g><title>JVM_IHashCode (60 samples, 0.01%)</title><rect x="81.2696%" y="789" width="0.0124%" height="15" fill="rgb(234,129,42)" fg:x="392351" fg:w="60"/><text x="81.5196%" y="799.50"></text></g><g><title>JVM_IsInterrupted (67 samples, 0.01%)</title><rect x="81.2976%" y="789" width="0.0139%" height="15" fill="rgb(220,82,16)" fg:x="392486" fg:w="67"/><text x="81.5476%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (314 samples, 0.07%)</title><rect x="81.3421%" y="645" width="0.0650%" height="15" fill="rgb(211,88,4)" fg:x="392701" fg:w="314"/><text x="81.5921%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (346 samples, 0.07%)</title><rect x="81.3357%" y="661" width="0.0717%" height="15" fill="rgb(248,151,21)" fg:x="392670" fg:w="346"/><text x="81.5857%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (356 samples, 0.07%)</title><rect x="81.3342%" y="677" width="0.0737%" height="15" fill="rgb(238,163,6)" fg:x="392663" fg:w="356"/><text x="81.5842%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (81 samples, 0.02%)</title><rect x="81.4090%" y="677" width="0.0168%" height="15" fill="rgb(209,183,11)" fg:x="393024" fg:w="81"/><text x="81.6590%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (80 samples, 0.02%)</title><rect x="81.4092%" y="661" width="0.0166%" height="15" fill="rgb(219,37,20)" fg:x="393025" fg:w="80"/><text x="81.6592%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (453 samples, 0.09%)</title><rect x="81.3322%" y="709" width="0.0938%" height="15" fill="rgb(210,158,4)" fg:x="392653" fg:w="453"/><text x="81.5822%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (450 samples, 0.09%)</title><rect x="81.3328%" y="693" width="0.0932%" height="15" fill="rgb(221,167,53)" fg:x="392656" fg:w="450"/><text x="81.5828%" y="703.50"></text></g><g><title>DefaultMethods::generate_default_methods (49 samples, 0.01%)</title><rect x="81.4270%" y="677" width="0.0101%" height="15" fill="rgb(237,151,45)" fg:x="393111" fg:w="49"/><text x="81.6770%" y="687.50"></text></g><g><title>ClassFileParser::fill_instance_klass (79 samples, 0.02%)</title><rect x="81.4260%" y="693" width="0.0164%" height="15" fill="rgb(231,39,3)" fg:x="393106" fg:w="79"/><text x="81.6760%" y="703.50"></text></g><g><title>ClassFileParser::create_instance_klass (82 samples, 0.02%)</title><rect x="81.4260%" y="709" width="0.0170%" height="15" fill="rgb(212,167,28)" fg:x="393106" fg:w="82"/><text x="81.6760%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (564 samples, 0.12%)</title><rect x="81.3322%" y="725" width="0.1168%" height="15" fill="rgb(232,178,8)" fg:x="392653" fg:w="564"/><text x="81.5822%" y="735.50"></text></g><g><title>JVM_DefineClassWithSource (604 samples, 0.13%)</title><rect x="81.3303%" y="773" width="0.1251%" height="15" fill="rgb(225,151,20)" fg:x="392644" fg:w="604"/><text x="81.5803%" y="783.50"></text></g><g><title>jvm_define_class_common (604 samples, 0.13%)</title><rect x="81.3303%" y="757" width="0.1251%" height="15" fill="rgb(238,3,37)" fg:x="392644" fg:w="604"/><text x="81.5803%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (596 samples, 0.12%)</title><rect x="81.3320%" y="741" width="0.1235%" height="15" fill="rgb(251,147,42)" fg:x="392652" fg:w="596"/><text x="81.5820%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (624 samples, 0.13%)</title><rect x="81.3301%" y="789" width="0.1293%" height="15" fill="rgb(208,173,10)" fg:x="392643" fg:w="624"/><text x="81.5801%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (313 samples, 0.06%)</title><rect x="81.4977%" y="693" width="0.0648%" height="15" fill="rgb(246,225,4)" fg:x="393452" fg:w="313"/><text x="81.7477%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (313 samples, 0.06%)</title><rect x="81.4977%" y="677" width="0.0648%" height="15" fill="rgb(248,102,6)" fg:x="393452" fg:w="313"/><text x="81.7477%" y="687.50"></text></g><g><title>native_write_msr (313 samples, 0.06%)</title><rect x="81.4977%" y="661" width="0.0648%" height="15" fill="rgb(232,6,21)" fg:x="393452" fg:w="313"/><text x="81.7477%" y="671.50"></text></g><g><title>schedule_tail (341 samples, 0.07%)</title><rect x="81.4933%" y="725" width="0.0706%" height="15" fill="rgb(221,179,22)" fg:x="393431" fg:w="341"/><text x="81.7433%" y="735.50"></text></g><g><title>finish_task_switch (335 samples, 0.07%)</title><rect x="81.4946%" y="709" width="0.0694%" height="15" fill="rgb(252,50,20)" fg:x="393437" fg:w="335"/><text x="81.7446%" y="719.50"></text></g><g><title>__libc_vfork (415 samples, 0.09%)</title><rect x="81.4782%" y="757" width="0.0860%" height="15" fill="rgb(222,56,38)" fg:x="393358" fg:w="415"/><text x="81.7282%" y="767.50"></text></g><g><title>ret_from_fork (373 samples, 0.08%)</title><rect x="81.4869%" y="741" width="0.0773%" height="15" fill="rgb(206,193,29)" fg:x="393400" fg:w="373"/><text x="81.7369%" y="751.50"></text></g><g><title>bprm_execve (120 samples, 0.02%)</title><rect x="81.5681%" y="645" width="0.0249%" height="15" fill="rgb(239,192,45)" fg:x="393792" fg:w="120"/><text x="81.8181%" y="655.50"></text></g><g><title>JDK_execvpe (159 samples, 0.03%)</title><rect x="81.5644%" y="741" width="0.0329%" height="15" fill="rgb(254,18,36)" fg:x="393774" fg:w="159"/><text x="81.8144%" y="751.50"></text></g><g><title>__GI_execve (159 samples, 0.03%)</title><rect x="81.5644%" y="725" width="0.0329%" height="15" fill="rgb(221,127,11)" fg:x="393774" fg:w="159"/><text x="81.8144%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (158 samples, 0.03%)</title><rect x="81.5646%" y="709" width="0.0327%" height="15" fill="rgb(234,146,35)" fg:x="393775" fg:w="158"/><text x="81.8146%" y="719.50"></text></g><g><title>do_syscall_64 (158 samples, 0.03%)</title><rect x="81.5646%" y="693" width="0.0327%" height="15" fill="rgb(254,201,37)" fg:x="393775" fg:w="158"/><text x="81.8146%" y="703.50"></text></g><g><title>__x64_sys_execve (158 samples, 0.03%)</title><rect x="81.5646%" y="677" width="0.0327%" height="15" fill="rgb(211,202,23)" fg:x="393775" fg:w="158"/><text x="81.8146%" y="687.50"></text></g><g><title>do_execveat_common (158 samples, 0.03%)</title><rect x="81.5646%" y="661" width="0.0327%" height="15" fill="rgb(237,91,2)" fg:x="393775" fg:w="158"/><text x="81.8146%" y="671.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (661 samples, 0.14%)</title><rect x="81.4751%" y="789" width="0.1369%" height="15" fill="rgb(226,228,36)" fg:x="393343" fg:w="661"/><text x="81.7251%" y="799.50"></text></g><g><title>vforkChild (646 samples, 0.13%)</title><rect x="81.4782%" y="773" width="0.1338%" height="15" fill="rgb(213,63,50)" fg:x="393358" fg:w="646"/><text x="81.7282%" y="783.50"></text></g><g><title>childProcess (231 samples, 0.05%)</title><rect x="81.5642%" y="757" width="0.0478%" height="15" fill="rgb(235,194,19)" fg:x="393773" fg:w="231"/><text x="81.8142%" y="767.50"></text></g><g><title>OptoRuntime::new_array_C (59 samples, 0.01%)</title><rect x="81.6197%" y="789" width="0.0122%" height="15" fill="rgb(207,204,18)" fg:x="394041" fg:w="59"/><text x="81.8697%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (86 samples, 0.02%)</title><rect x="81.6478%" y="773" width="0.0178%" height="15" fill="rgb(248,8,7)" fg:x="394177" fg:w="86"/><text x="81.8978%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (68 samples, 0.01%)</title><rect x="81.6516%" y="757" width="0.0141%" height="15" fill="rgb(223,145,47)" fg:x="394195" fg:w="68"/><text x="81.9016%" y="767.50"></text></g><g><title>Runtime1::counter_overflow (170 samples, 0.04%)</title><rect x="81.6406%" y="789" width="0.0352%" height="15" fill="rgb(228,84,11)" fg:x="394142" fg:w="170"/><text x="81.8906%" y="799.50"></text></g><g><title>ObjectMonitor::enter (61 samples, 0.01%)</title><rect x="81.6841%" y="773" width="0.0126%" height="15" fill="rgb(218,76,45)" fg:x="394352" fg:w="61"/><text x="81.9341%" y="783.50"></text></g><g><title>Runtime1::monitorenter (121 samples, 0.03%)</title><rect x="81.6770%" y="789" width="0.0251%" height="15" fill="rgb(223,80,15)" fg:x="394318" fg:w="121"/><text x="81.9270%" y="799.50"></text></g><g><title>SystemDictionary::parse_stream (74 samples, 0.02%)</title><rect x="81.7487%" y="773" width="0.0153%" height="15" fill="rgb(219,218,33)" fg:x="394664" fg:w="74"/><text x="81.9987%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (52 samples, 0.01%)</title><rect x="81.7533%" y="757" width="0.0108%" height="15" fill="rgb(208,51,11)" fg:x="394686" fg:w="52"/><text x="82.0033%" y="767.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (82 samples, 0.02%)</title><rect x="81.7475%" y="789" width="0.0170%" height="15" fill="rgb(229,165,39)" fg:x="394658" fg:w="82"/><text x="81.9975%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (139 samples, 0.03%)</title><rect x="81.7796%" y="565" width="0.0288%" height="15" fill="rgb(241,100,24)" fg:x="394813" fg:w="139"/><text x="82.0296%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (138 samples, 0.03%)</title><rect x="81.7798%" y="549" width="0.0286%" height="15" fill="rgb(228,14,23)" fg:x="394814" fg:w="138"/><text x="82.0298%" y="559.50"></text></g><g><title>native_write_msr (138 samples, 0.03%)</title><rect x="81.7798%" y="533" width="0.0286%" height="15" fill="rgb(247,116,52)" fg:x="394814" fg:w="138"/><text x="82.0298%" y="543.50"></text></g><g><title>finish_task_switch (144 samples, 0.03%)</title><rect x="81.7796%" y="581" width="0.0298%" height="15" fill="rgb(216,149,33)" fg:x="394813" fg:w="144"/><text x="82.0296%" y="591.50"></text></g><g><title>futex_wait_queue_me (169 samples, 0.04%)</title><rect x="81.7767%" y="629" width="0.0350%" height="15" fill="rgb(238,142,29)" fg:x="394799" fg:w="169"/><text x="82.0267%" y="639.50"></text></g><g><title>schedule (169 samples, 0.04%)</title><rect x="81.7767%" y="613" width="0.0350%" height="15" fill="rgb(224,83,40)" fg:x="394799" fg:w="169"/><text x="82.0267%" y="623.50"></text></g><g><title>__schedule (169 samples, 0.04%)</title><rect x="81.7767%" y="597" width="0.0350%" height="15" fill="rgb(234,165,11)" fg:x="394799" fg:w="169"/><text x="82.0267%" y="607.50"></text></g><g><title>do_syscall_64 (175 samples, 0.04%)</title><rect x="81.7756%" y="693" width="0.0362%" height="15" fill="rgb(215,96,23)" fg:x="394794" fg:w="175"/><text x="82.0256%" y="703.50"></text></g><g><title>__x64_sys_futex (175 samples, 0.04%)</title><rect x="81.7756%" y="677" width="0.0362%" height="15" fill="rgb(233,179,26)" fg:x="394794" fg:w="175"/><text x="82.0256%" y="687.50"></text></g><g><title>do_futex (174 samples, 0.04%)</title><rect x="81.7759%" y="661" width="0.0360%" height="15" fill="rgb(225,129,33)" fg:x="394795" fg:w="174"/><text x="82.0259%" y="671.50"></text></g><g><title>futex_wait (171 samples, 0.04%)</title><rect x="81.7765%" y="645" width="0.0354%" height="15" fill="rgb(237,49,13)" fg:x="394798" fg:w="171"/><text x="82.0265%" y="655.50"></text></g><g><title>__pthread_cond_wait (188 samples, 0.04%)</title><rect x="81.7738%" y="757" width="0.0389%" height="15" fill="rgb(211,3,31)" fg:x="394785" fg:w="188"/><text x="82.0238%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (187 samples, 0.04%)</title><rect x="81.7740%" y="741" width="0.0387%" height="15" fill="rgb(216,152,19)" fg:x="394786" fg:w="187"/><text x="82.0240%" y="751.50"></text></g><g><title>futex_wait_cancelable (183 samples, 0.04%)</title><rect x="81.7748%" y="725" width="0.0379%" height="15" fill="rgb(251,121,35)" fg:x="394790" fg:w="183"/><text x="82.0248%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (179 samples, 0.04%)</title><rect x="81.7756%" y="709" width="0.0371%" height="15" fill="rgb(210,217,47)" fg:x="394794" fg:w="179"/><text x="82.0256%" y="719.50"></text></g><g><title>Parker::park (213 samples, 0.04%)</title><rect x="81.7713%" y="773" width="0.0441%" height="15" fill="rgb(244,116,22)" fg:x="394773" fg:w="213"/><text x="82.0213%" y="783.50"></text></g><g><title>Unsafe_Park (218 samples, 0.05%)</title><rect x="81.7705%" y="789" width="0.0452%" height="15" fill="rgb(228,17,21)" fg:x="394769" fg:w="218"/><text x="82.0205%" y="799.50"></text></g><g><title>enqueue_entity (55 samples, 0.01%)</title><rect x="81.8488%" y="597" width="0.0114%" height="15" fill="rgb(240,149,34)" fg:x="395147" fg:w="55"/><text x="82.0988%" y="607.50"></text></g><g><title>enqueue_task_fair (65 samples, 0.01%)</title><rect x="81.8471%" y="613" width="0.0135%" height="15" fill="rgb(208,125,47)" fg:x="395139" fg:w="65"/><text x="82.0971%" y="623.50"></text></g><g><title>ttwu_do_activate (106 samples, 0.02%)</title><rect x="81.8465%" y="629" width="0.0220%" height="15" fill="rgb(249,186,39)" fg:x="395136" fg:w="106"/><text x="82.0965%" y="639.50"></text></g><g><title>__x64_sys_futex (200 samples, 0.04%)</title><rect x="81.8299%" y="709" width="0.0414%" height="15" fill="rgb(240,220,33)" fg:x="395056" fg:w="200"/><text x="82.0799%" y="719.50"></text></g><g><title>do_futex (200 samples, 0.04%)</title><rect x="81.8299%" y="693" width="0.0414%" height="15" fill="rgb(243,110,23)" fg:x="395056" fg:w="200"/><text x="82.0799%" y="703.50"></text></g><g><title>futex_wake (199 samples, 0.04%)</title><rect x="81.8301%" y="677" width="0.0412%" height="15" fill="rgb(219,163,46)" fg:x="395057" fg:w="199"/><text x="82.0801%" y="687.50"></text></g><g><title>wake_up_q (167 samples, 0.03%)</title><rect x="81.8367%" y="661" width="0.0346%" height="15" fill="rgb(216,126,30)" fg:x="395089" fg:w="167"/><text x="82.0867%" y="671.50"></text></g><g><title>try_to_wake_up (164 samples, 0.03%)</title><rect x="81.8374%" y="645" width="0.0340%" height="15" fill="rgb(208,139,11)" fg:x="395092" fg:w="164"/><text x="82.0874%" y="655.50"></text></g><g><title>do_syscall_64 (202 samples, 0.04%)</title><rect x="81.8297%" y="725" width="0.0418%" height="15" fill="rgb(213,118,36)" fg:x="395055" fg:w="202"/><text x="82.0797%" y="735.50"></text></g><g><title>__pthread_cond_signal (221 samples, 0.05%)</title><rect x="81.8272%" y="773" width="0.0458%" height="15" fill="rgb(226,43,17)" fg:x="395043" fg:w="221"/><text x="82.0772%" y="783.50"></text></g><g><title>futex_wake (213 samples, 0.04%)</title><rect x="81.8289%" y="757" width="0.0441%" height="15" fill="rgb(254,217,4)" fg:x="395051" fg:w="213"/><text x="82.0789%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (211 samples, 0.04%)</title><rect x="81.8293%" y="741" width="0.0437%" height="15" fill="rgb(210,134,47)" fg:x="395053" fg:w="211"/><text x="82.0793%" y="751.50"></text></g><g><title>Unsafe_Unpark (279 samples, 0.06%)</title><rect x="81.8162%" y="789" width="0.0578%" height="15" fill="rgb(237,24,49)" fg:x="394990" fg:w="279"/><text x="82.0662%" y="799.50"></text></g><g><title>kernel_init_free_pages (80 samples, 0.02%)</title><rect x="81.9382%" y="661" width="0.0166%" height="15" fill="rgb(251,39,46)" fg:x="395579" fg:w="80"/><text x="82.1882%" y="671.50"></text></g><g><title>clear_page_erms (79 samples, 0.02%)</title><rect x="81.9385%" y="645" width="0.0164%" height="15" fill="rgb(251,220,3)" fg:x="395580" fg:w="79"/><text x="82.1885%" y="655.50"></text></g><g><title>get_page_from_freelist (141 samples, 0.03%)</title><rect x="81.9258%" y="693" width="0.0292%" height="15" fill="rgb(228,105,12)" fg:x="395519" fg:w="141"/><text x="82.1758%" y="703.50"></text></g><g><title>prep_new_page (84 samples, 0.02%)</title><rect x="81.9376%" y="677" width="0.0174%" height="15" fill="rgb(215,196,1)" fg:x="395576" fg:w="84"/><text x="82.1876%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (183 samples, 0.04%)</title><rect x="81.9175%" y="709" width="0.0379%" height="15" fill="rgb(214,33,39)" fg:x="395479" fg:w="183"/><text x="82.1675%" y="719.50"></text></g><g><title>alloc_pages_vma (194 samples, 0.04%)</title><rect x="81.9159%" y="725" width="0.0402%" height="15" fill="rgb(220,19,52)" fg:x="395471" fg:w="194"/><text x="82.1659%" y="735.50"></text></g><g><title>lru_cache_add (63 samples, 0.01%)</title><rect x="81.9617%" y="725" width="0.0130%" height="15" fill="rgb(221,78,38)" fg:x="395692" fg:w="63"/><text x="82.2117%" y="735.50"></text></g><g><title>pagevec_lru_move_fn (51 samples, 0.01%)</title><rect x="81.9641%" y="709" width="0.0106%" height="15" fill="rgb(253,30,16)" fg:x="395704" fg:w="51"/><text x="82.2141%" y="719.50"></text></g><g><title>mem_cgroup_charge (56 samples, 0.01%)</title><rect x="81.9749%" y="725" width="0.0116%" height="15" fill="rgb(242,65,0)" fg:x="395756" fg:w="56"/><text x="82.2249%" y="735.50"></text></g><g><title>handle_mm_fault (459 samples, 0.10%)</title><rect x="81.8993%" y="741" width="0.0951%" height="15" fill="rgb(235,201,12)" fg:x="395391" fg:w="459"/><text x="82.1493%" y="751.50"></text></g><g><title>exc_page_fault (512 samples, 0.11%)</title><rect x="81.8910%" y="773" width="0.1061%" height="15" fill="rgb(233,161,9)" fg:x="395351" fg:w="512"/><text x="82.1410%" y="783.50"></text></g><g><title>do_user_addr_fault (501 samples, 0.10%)</title><rect x="81.8933%" y="757" width="0.1038%" height="15" fill="rgb(241,207,41)" fg:x="395362" fg:w="501"/><text x="82.1433%" y="767.50"></text></g><g><title>asm_exc_page_fault (527 samples, 0.11%)</title><rect x="81.8902%" y="789" width="0.1092%" height="15" fill="rgb(212,69,46)" fg:x="395347" fg:w="527"/><text x="82.1402%" y="799.50"></text></g><g><title>tick_sched_handle (49 samples, 0.01%)</title><rect x="82.0060%" y="693" width="0.0101%" height="15" fill="rgb(239,69,45)" fg:x="395906" fg:w="49"/><text x="82.2560%" y="703.50"></text></g><g><title>tick_sched_timer (57 samples, 0.01%)</title><rect x="82.0054%" y="709" width="0.0118%" height="15" fill="rgb(242,117,48)" fg:x="395903" fg:w="57"/><text x="82.2554%" y="719.50"></text></g><g><title>__hrtimer_run_queues (72 samples, 0.01%)</title><rect x="82.0029%" y="725" width="0.0149%" height="15" fill="rgb(228,41,36)" fg:x="395891" fg:w="72"/><text x="82.2529%" y="735.50"></text></g><g><title>__sysvec_apic_timer_interrupt (79 samples, 0.02%)</title><rect x="82.0018%" y="757" width="0.0164%" height="15" fill="rgb(212,3,32)" fg:x="395886" fg:w="79"/><text x="82.2518%" y="767.50"></text></g><g><title>hrtimer_interrupt (77 samples, 0.02%)</title><rect x="82.0022%" y="741" width="0.0159%" height="15" fill="rgb(233,41,49)" fg:x="395888" fg:w="77"/><text x="82.2522%" y="751.50"></text></g><g><title>rcu_core (67 samples, 0.01%)</title><rect x="82.0184%" y="693" width="0.0139%" height="15" fill="rgb(252,170,49)" fg:x="395966" fg:w="67"/><text x="82.2684%" y="703.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (176 samples, 0.04%)</title><rect x="81.9993%" y="789" width="0.0365%" height="15" fill="rgb(229,53,26)" fg:x="395874" fg:w="176"/><text x="82.2493%" y="799.50"></text></g><g><title>sysvec_apic_timer_interrupt (164 samples, 0.03%)</title><rect x="82.0018%" y="773" width="0.0340%" height="15" fill="rgb(217,157,12)" fg:x="395886" fg:w="164"/><text x="82.2518%" y="783.50"></text></g><g><title>irq_exit_rcu (85 samples, 0.02%)</title><rect x="82.0182%" y="757" width="0.0176%" height="15" fill="rgb(227,17,9)" fg:x="395965" fg:w="85"/><text x="82.2682%" y="767.50"></text></g><g><title>do_softirq_own_stack (84 samples, 0.02%)</title><rect x="82.0184%" y="741" width="0.0174%" height="15" fill="rgb(218,84,12)" fg:x="395966" fg:w="84"/><text x="82.2684%" y="751.50"></text></g><g><title>asm_call_sysvec_on_stack (84 samples, 0.02%)</title><rect x="82.0184%" y="725" width="0.0174%" height="15" fill="rgb(212,79,24)" fg:x="395966" fg:w="84"/><text x="82.2684%" y="735.50"></text></g><g><title>__softirqentry_text_start (84 samples, 0.02%)</title><rect x="82.0184%" y="709" width="0.0174%" height="15" fill="rgb(217,222,37)" fg:x="395966" fg:w="84"/><text x="82.2684%" y="719.50"></text></g><g><title>error_entry (78 samples, 0.02%)</title><rect x="82.0447%" y="789" width="0.0162%" height="15" fill="rgb(246,208,8)" fg:x="396093" fg:w="78"/><text x="82.2947%" y="799.50"></text></g><g><title>sync_regs (73 samples, 0.02%)</title><rect x="82.0457%" y="773" width="0.0151%" height="15" fill="rgb(244,133,10)" fg:x="396098" fg:w="73"/><text x="82.2957%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.01%)</title><rect x="82.0625%" y="757" width="0.0139%" height="15" fill="rgb(209,219,41)" fg:x="396179" fg:w="67"/><text x="82.3125%" y="767.50"></text></g><g><title>__close (73 samples, 0.02%)</title><rect x="82.0615%" y="773" width="0.0151%" height="15" fill="rgb(253,175,45)" fg:x="396174" fg:w="73"/><text x="82.3115%" y="783.50"></text></g><g><title>fileDescriptorClose (91 samples, 0.02%)</title><rect x="82.0613%" y="789" width="0.0188%" height="15" fill="rgb(235,100,37)" fg:x="396173" fg:w="91"/><text x="82.3113%" y="799.50"></text></g><g><title>JNU_GetStringPlatformChars (55 samples, 0.01%)</title><rect x="82.0808%" y="773" width="0.0114%" height="15" fill="rgb(225,87,19)" fg:x="396267" fg:w="55"/><text x="82.3308%" y="783.50"></text></g><g><title>link_path_walk.part.0 (64 samples, 0.01%)</title><rect x="82.1265%" y="661" width="0.0133%" height="15" fill="rgb(217,152,17)" fg:x="396488" fg:w="64"/><text x="82.3765%" y="671.50"></text></g><g><title>do_filp_open (172 samples, 0.04%)</title><rect x="82.1069%" y="693" width="0.0356%" height="15" fill="rgb(235,72,13)" fg:x="396393" fg:w="172"/><text x="82.3569%" y="703.50"></text></g><g><title>path_openat (170 samples, 0.04%)</title><rect x="82.1073%" y="677" width="0.0352%" height="15" fill="rgb(233,140,18)" fg:x="396395" fg:w="170"/><text x="82.3573%" y="687.50"></text></g><g><title>do_syscall_64 (223 samples, 0.05%)</title><rect x="82.1021%" y="741" width="0.0462%" height="15" fill="rgb(207,212,28)" fg:x="396370" fg:w="223"/><text x="82.3521%" y="751.50"></text></g><g><title>__x64_sys_openat (222 samples, 0.05%)</title><rect x="82.1023%" y="725" width="0.0460%" height="15" fill="rgb(220,130,25)" fg:x="396371" fg:w="222"/><text x="82.3523%" y="735.50"></text></g><g><title>do_sys_openat2 (220 samples, 0.05%)</title><rect x="82.1027%" y="709" width="0.0456%" height="15" fill="rgb(205,55,34)" fg:x="396373" fg:w="220"/><text x="82.3527%" y="719.50"></text></g><g><title>__libc_open64 (234 samples, 0.05%)</title><rect x="82.1000%" y="773" width="0.0485%" height="15" fill="rgb(237,54,35)" fg:x="396360" fg:w="234"/><text x="82.3500%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (226 samples, 0.05%)</title><rect x="82.1017%" y="757" width="0.0468%" height="15" fill="rgb(208,67,23)" fg:x="396368" fg:w="226"/><text x="82.3517%" y="767.50"></text></g><g><title>fileOpen (349 samples, 0.07%)</title><rect x="82.0801%" y="789" width="0.0723%" height="15" fill="rgb(206,207,50)" fg:x="396264" fg:w="349"/><text x="82.3301%" y="799.50"></text></g><g><title>jni_IsAssignableFrom (105 samples, 0.02%)</title><rect x="82.1595%" y="789" width="0.0217%" height="15" fill="rgb(213,211,42)" fg:x="396647" fg:w="105"/><text x="82.4095%" y="799.50"></text></g><g><title>os::javaTimeNanos (64 samples, 0.01%)</title><rect x="82.1837%" y="789" width="0.0133%" height="15" fill="rgb(252,197,50)" fg:x="396764" fg:w="64"/><text x="82.4337%" y="799.50"></text></g><g><title>__GI___clock_gettime (54 samples, 0.01%)</title><rect x="82.1858%" y="773" width="0.0112%" height="15" fill="rgb(251,211,41)" fg:x="396774" fg:w="54"/><text x="82.4358%" y="783.50"></text></g><g><title>[perf-987172.map] (65,709 samples, 13.61%)</title><rect x="68.5872%" y="805" width="13.6106%" height="15" fill="rgb(229,211,5)" fg:x="331123" fg:w="65709"/><text x="68.8372%" y="815.50">[perf-987172.map]</text></g><g><title>Bytecode_invoke::static_target (49 samples, 0.01%)</title><rect x="82.2351%" y="757" width="0.0101%" height="15" fill="rgb(239,36,31)" fg:x="397012" fg:w="49"/><text x="82.4851%" y="767.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (167 samples, 0.03%)</title><rect x="82.2347%" y="773" width="0.0346%" height="15" fill="rgb(248,67,31)" fg:x="397010" fg:w="167"/><text x="82.4847%" y="783.50"></text></g><g><title>frame::sender (51 samples, 0.01%)</title><rect x="82.2587%" y="757" width="0.0106%" height="15" fill="rgb(249,55,44)" fg:x="397126" fg:w="51"/><text x="82.5087%" y="767.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (251 samples, 0.05%)</title><rect x="82.2220%" y="789" width="0.0520%" height="15" fill="rgb(216,82,12)" fg:x="396949" fg:w="251"/><text x="82.4720%" y="799.50"></text></g><g><title>copy_user_enhanced_fast_string (92 samples, 0.02%)</title><rect x="82.3152%" y="613" width="0.0191%" height="15" fill="rgb(242,174,1)" fg:x="397399" fg:w="92"/><text x="82.5652%" y="623.50"></text></g><g><title>copy_page_to_iter (100 samples, 0.02%)</title><rect x="82.3138%" y="629" width="0.0207%" height="15" fill="rgb(208,120,29)" fg:x="397392" fg:w="100"/><text x="82.5638%" y="639.50"></text></g><g><title>get_page_from_freelist (57 samples, 0.01%)</title><rect x="82.3399%" y="597" width="0.0118%" height="15" fill="rgb(221,105,43)" fg:x="397518" fg:w="57"/><text x="82.5899%" y="607.50"></text></g><g><title>__alloc_pages_nodemask (67 samples, 0.01%)</title><rect x="82.3380%" y="613" width="0.0139%" height="15" fill="rgb(234,124,22)" fg:x="397509" fg:w="67"/><text x="82.5880%" y="623.50"></text></g><g><title>__add_to_page_cache_locked (89 samples, 0.02%)</title><rect x="82.3527%" y="597" width="0.0184%" height="15" fill="rgb(212,23,30)" fg:x="397580" fg:w="89"/><text x="82.6027%" y="607.50"></text></g><g><title>add_to_page_cache_lru (156 samples, 0.03%)</title><rect x="82.3523%" y="613" width="0.0323%" height="15" fill="rgb(219,122,53)" fg:x="397578" fg:w="156"/><text x="82.6023%" y="623.50"></text></g><g><title>blk_mq_flush_plug_list (65 samples, 0.01%)</title><rect x="82.3863%" y="581" width="0.0135%" height="15" fill="rgb(248,84,24)" fg:x="397742" fg:w="65"/><text x="82.6363%" y="591.50"></text></g><g><title>blk_mq_sched_insert_requests (65 samples, 0.01%)</title><rect x="82.3863%" y="565" width="0.0135%" height="15" fill="rgb(245,115,18)" fg:x="397742" fg:w="65"/><text x="82.6363%" y="575.50"></text></g><g><title>blk_mq_try_issue_list_directly (65 samples, 0.01%)</title><rect x="82.3863%" y="549" width="0.0135%" height="15" fill="rgb(227,176,51)" fg:x="397742" fg:w="65"/><text x="82.6363%" y="559.50"></text></g><g><title>__blk_mq_try_issue_directly (63 samples, 0.01%)</title><rect x="82.3867%" y="533" width="0.0130%" height="15" fill="rgb(229,63,42)" fg:x="397744" fg:w="63"/><text x="82.6367%" y="543.50"></text></g><g><title>nvme_queue_rq (62 samples, 0.01%)</title><rect x="82.3869%" y="517" width="0.0128%" height="15" fill="rgb(247,202,24)" fg:x="397745" fg:w="62"/><text x="82.6369%" y="527.50"></text></g><g><title>blk_finish_plug (67 samples, 0.01%)</title><rect x="82.3861%" y="597" width="0.0139%" height="15" fill="rgb(244,173,20)" fg:x="397741" fg:w="67"/><text x="82.6361%" y="607.50"></text></g><g><title>btrfs_lookup_file_extent (71 samples, 0.01%)</title><rect x="82.4151%" y="549" width="0.0147%" height="15" fill="rgb(242,81,47)" fg:x="397881" fg:w="71"/><text x="82.6651%" y="559.50"></text></g><g><title>btrfs_search_slot (71 samples, 0.01%)</title><rect x="82.4151%" y="533" width="0.0147%" height="15" fill="rgb(231,185,54)" fg:x="397881" fg:w="71"/><text x="82.6651%" y="543.50"></text></g><g><title>btrfs_get_extent (133 samples, 0.03%)</title><rect x="82.4072%" y="565" width="0.0275%" height="15" fill="rgb(243,55,32)" fg:x="397843" fg:w="133"/><text x="82.6572%" y="575.50"></text></g><g><title>btrfs_do_readpage (207 samples, 0.04%)</title><rect x="82.4026%" y="581" width="0.0429%" height="15" fill="rgb(208,167,19)" fg:x="397821" fg:w="207"/><text x="82.6526%" y="591.50"></text></g><g><title>btrfs_search_slot (64 samples, 0.01%)</title><rect x="82.4563%" y="517" width="0.0133%" height="15" fill="rgb(231,72,35)" fg:x="398080" fg:w="64"/><text x="82.7063%" y="527.50"></text></g><g><title>btrfs_lookup_csum (69 samples, 0.01%)</title><rect x="82.4557%" y="533" width="0.0143%" height="15" fill="rgb(250,173,51)" fg:x="398077" fg:w="69"/><text x="82.7057%" y="543.50"></text></g><g><title>btrfs_lookup_bio_sums (84 samples, 0.02%)</title><rect x="82.4548%" y="549" width="0.0174%" height="15" fill="rgb(209,5,22)" fg:x="398073" fg:w="84"/><text x="82.7048%" y="559.50"></text></g><g><title>submit_one_bio (181 samples, 0.04%)</title><rect x="82.4544%" y="581" width="0.0375%" height="15" fill="rgb(250,174,19)" fg:x="398071" fg:w="181"/><text x="82.7044%" y="591.50"></text></g><g><title>btrfs_submit_data_bio (181 samples, 0.04%)</title><rect x="82.4544%" y="565" width="0.0375%" height="15" fill="rgb(217,3,49)" fg:x="398071" fg:w="181"/><text x="82.7044%" y="575.50"></text></g><g><title>btrfs_map_bio (95 samples, 0.02%)</title><rect x="82.4722%" y="549" width="0.0197%" height="15" fill="rgb(218,225,5)" fg:x="398157" fg:w="95"/><text x="82.7222%" y="559.50"></text></g><g><title>submit_bio_noacct (74 samples, 0.02%)</title><rect x="82.4766%" y="533" width="0.0153%" height="15" fill="rgb(236,89,11)" fg:x="398178" fg:w="74"/><text x="82.7266%" y="543.50"></text></g><g><title>read_pages (515 samples, 0.11%)</title><rect x="82.3859%" y="613" width="0.1067%" height="15" fill="rgb(206,33,28)" fg:x="397740" fg:w="515"/><text x="82.6359%" y="623.50"></text></g><g><title>extent_readahead (445 samples, 0.09%)</title><rect x="82.4004%" y="597" width="0.0922%" height="15" fill="rgb(241,56,42)" fg:x="397810" fg:w="445"/><text x="82.6504%" y="607.50"></text></g><g><title>page_cache_ra_unbounded (756 samples, 0.16%)</title><rect x="82.3366%" y="629" width="0.1566%" height="15" fill="rgb(222,44,11)" fg:x="397502" fg:w="756"/><text x="82.5866%" y="639.50"></text></g><g><title>wait_on_page_bit_common (77 samples, 0.02%)</title><rect x="82.5060%" y="629" width="0.0159%" height="15" fill="rgb(234,111,20)" fg:x="398320" fg:w="77"/><text x="82.7560%" y="639.50"></text></g><g><title>io_schedule (65 samples, 0.01%)</title><rect x="82.5085%" y="613" width="0.0135%" height="15" fill="rgb(237,77,6)" fg:x="398332" fg:w="65"/><text x="82.7585%" y="623.50"></text></g><g><title>schedule (65 samples, 0.01%)</title><rect x="82.5085%" y="597" width="0.0135%" height="15" fill="rgb(235,111,23)" fg:x="398332" fg:w="65"/><text x="82.7585%" y="607.50"></text></g><g><title>__schedule (65 samples, 0.01%)</title><rect x="82.5085%" y="581" width="0.0135%" height="15" fill="rgb(251,135,29)" fg:x="398332" fg:w="65"/><text x="82.7585%" y="591.50"></text></g><g><title>new_sync_read (1,038 samples, 0.22%)</title><rect x="82.3072%" y="661" width="0.2150%" height="15" fill="rgb(217,57,1)" fg:x="397360" fg:w="1038"/><text x="82.5572%" y="671.50"></text></g><g><title>generic_file_buffered_read (1,033 samples, 0.21%)</title><rect x="82.3082%" y="645" width="0.2140%" height="15" fill="rgb(249,119,31)" fg:x="397365" fg:w="1033"/><text x="82.5582%" y="655.50"></text></g><g><title>ksys_read (1,084 samples, 0.22%)</title><rect x="82.3016%" y="693" width="0.2245%" height="15" fill="rgb(233,164,33)" fg:x="397333" fg:w="1084"/><text x="82.5516%" y="703.50"></text></g><g><title>vfs_read (1,068 samples, 0.22%)</title><rect x="82.3049%" y="677" width="0.2212%" height="15" fill="rgb(250,217,43)" fg:x="397349" fg:w="1068"/><text x="82.5549%" y="687.50"></text></g><g><title>do_syscall_64 (1,093 samples, 0.23%)</title><rect x="82.3001%" y="709" width="0.2264%" height="15" fill="rgb(232,154,50)" fg:x="397326" fg:w="1093"/><text x="82.5501%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,100 samples, 0.23%)</title><rect x="82.2999%" y="725" width="0.2278%" height="15" fill="rgb(227,190,8)" fg:x="397325" fg:w="1100"/><text x="82.5499%" y="735.50"></text></g><g><title>__libc_read (1,121 samples, 0.23%)</title><rect x="82.2972%" y="757" width="0.2322%" height="15" fill="rgb(209,217,32)" fg:x="397312" fg:w="1121"/><text x="82.5472%" y="767.50"></text></g><g><title>__libc_read (1,120 samples, 0.23%)</title><rect x="82.2974%" y="741" width="0.2320%" height="15" fill="rgb(243,203,50)" fg:x="397313" fg:w="1120"/><text x="82.5474%" y="751.50"></text></g><g><title>handleRead (1,127 samples, 0.23%)</title><rect x="82.2970%" y="773" width="0.2334%" height="15" fill="rgb(232,152,27)" fg:x="397311" fg:w="1127"/><text x="82.5470%" y="783.50"></text></g><g><title>readBytes (1,236 samples, 0.26%)</title><rect x="82.2947%" y="789" width="0.2560%" height="15" fill="rgb(240,34,29)" fg:x="397300" fg:w="1236"/><text x="82.5447%" y="799.50"></text></g><g><title>[unknown] (1,718 samples, 0.36%)</title><rect x="82.1978%" y="805" width="0.3559%" height="15" fill="rgb(215,185,52)" fg:x="396832" fg:w="1718"/><text x="82.4478%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.01%)</title><rect x="82.5565%" y="741" width="0.0114%" height="15" fill="rgb(240,89,49)" fg:x="398564" fg:w="55"/><text x="82.8065%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.01%)</title><rect x="82.5565%" y="725" width="0.0114%" height="15" fill="rgb(225,12,52)" fg:x="398564" fg:w="55"/><text x="82.8065%" y="735.50"></text></g><g><title>native_write_msr (55 samples, 0.01%)</title><rect x="82.5565%" y="709" width="0.0114%" height="15" fill="rgb(239,128,45)" fg:x="398564" fg:w="55"/><text x="82.8065%" y="719.50"></text></g><g><title>schedule_tail (60 samples, 0.01%)</title><rect x="82.5559%" y="773" width="0.0124%" height="15" fill="rgb(211,78,47)" fg:x="398561" fg:w="60"/><text x="82.8059%" y="783.50"></text></g><g><title>finish_task_switch (60 samples, 0.01%)</title><rect x="82.5559%" y="757" width="0.0124%" height="15" fill="rgb(232,31,21)" fg:x="398561" fg:w="60"/><text x="82.8059%" y="767.50"></text></g><g><title>ret_from_fork (63 samples, 0.01%)</title><rect x="82.5555%" y="789" width="0.0130%" height="15" fill="rgb(222,168,14)" fg:x="398559" fg:w="63"/><text x="82.8055%" y="799.50"></text></g><g><title>__GI___clone (103 samples, 0.02%)</title><rect x="82.5536%" y="805" width="0.0213%" height="15" fill="rgb(209,128,24)" fg:x="398550" fg:w="103"/><text x="82.8036%" y="815.50"></text></g><g><title>asm_exc_page_fault (156 samples, 0.03%)</title><rect x="82.5793%" y="805" width="0.0323%" height="15" fill="rgb(249,35,13)" fg:x="398674" fg:w="156"/><text x="82.8293%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="82.6164%" y="805" width="0.0112%" height="15" fill="rgb(218,7,2)" fg:x="398853" fg:w="54"/><text x="82.8664%" y="815.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (81 samples, 0.02%)</title><rect x="82.6276%" y="805" width="0.0168%" height="15" fill="rgb(238,107,27)" fg:x="398907" fg:w="81"/><text x="82.8776%" y="815.50"></text></g><g><title>skyframe-evalua (268,244 samples, 55.56%)</title><rect x="27.0943%" y="821" width="55.5627%" height="15" fill="rgb(217,88,38)" fg:x="130805" fg:w="268244"/><text x="27.3443%" y="831.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (60 samples, 0.01%)</title><rect x="82.6732%" y="565" width="0.0124%" height="15" fill="rgb(230,207,0)" fg:x="399127" fg:w="60"/><text x="82.9232%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.01%)</title><rect x="82.6734%" y="549" width="0.0122%" height="15" fill="rgb(249,64,54)" fg:x="399128" fg:w="59"/><text x="82.9234%" y="559.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="82.6734%" y="533" width="0.0122%" height="15" fill="rgb(231,7,11)" fg:x="399128" fg:w="59"/><text x="82.9234%" y="543.50"></text></g><g><title>do_syscall_64 (65 samples, 0.01%)</title><rect x="82.6723%" y="693" width="0.0135%" height="15" fill="rgb(205,149,21)" fg:x="399123" fg:w="65"/><text x="82.9223%" y="703.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.01%)</title><rect x="82.6723%" y="677" width="0.0135%" height="15" fill="rgb(215,126,34)" fg:x="399123" fg:w="65"/><text x="82.9223%" y="687.50"></text></g><g><title>do_futex (65 samples, 0.01%)</title><rect x="82.6723%" y="661" width="0.0135%" height="15" fill="rgb(241,132,45)" fg:x="399123" fg:w="65"/><text x="82.9223%" y="671.50"></text></g><g><title>futex_wait (63 samples, 0.01%)</title><rect x="82.6727%" y="645" width="0.0130%" height="15" fill="rgb(252,69,32)" fg:x="399125" fg:w="63"/><text x="82.9227%" y="655.50"></text></g><g><title>futex_wait_queue_me (63 samples, 0.01%)</title><rect x="82.6727%" y="629" width="0.0130%" height="15" fill="rgb(232,204,19)" fg:x="399125" fg:w="63"/><text x="82.9227%" y="639.50"></text></g><g><title>schedule (62 samples, 0.01%)</title><rect x="82.6730%" y="613" width="0.0128%" height="15" fill="rgb(249,15,47)" fg:x="399126" fg:w="62"/><text x="82.9230%" y="623.50"></text></g><g><title>__schedule (62 samples, 0.01%)</title><rect x="82.6730%" y="597" width="0.0128%" height="15" fill="rgb(209,227,23)" fg:x="399126" fg:w="62"/><text x="82.9230%" y="607.50"></text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="82.6732%" y="581" width="0.0126%" height="15" fill="rgb(248,92,24)" fg:x="399127" fg:w="61"/><text x="82.9232%" y="591.50"></text></g><g><title>__pthread_cond_wait (66 samples, 0.01%)</title><rect x="82.6723%" y="757" width="0.0137%" height="15" fill="rgb(247,59,2)" fg:x="399123" fg:w="66"/><text x="82.9223%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (66 samples, 0.01%)</title><rect x="82.6723%" y="741" width="0.0137%" height="15" fill="rgb(221,30,5)" fg:x="399123" fg:w="66"/><text x="82.9223%" y="751.50"></text></g><g><title>futex_wait_cancelable (66 samples, 0.01%)</title><rect x="82.6723%" y="725" width="0.0137%" height="15" fill="rgb(208,108,53)" fg:x="399123" fg:w="66"/><text x="82.9223%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.01%)</title><rect x="82.6723%" y="709" width="0.0137%" height="15" fill="rgb(211,183,26)" fg:x="399123" fg:w="66"/><text x="82.9223%" y="719.50"></text></g><g><title>Parker::park (75 samples, 0.02%)</title><rect x="82.6711%" y="773" width="0.0155%" height="15" fill="rgb(232,132,4)" fg:x="399117" fg:w="75"/><text x="82.9211%" y="783.50"></text></g><g><title>Unsafe_Park (76 samples, 0.02%)</title><rect x="82.6711%" y="789" width="0.0157%" height="15" fill="rgb(253,128,37)" fg:x="399117" fg:w="76"/><text x="82.9211%" y="799.50"></text></g><g><title>[perf-987172.map] (148 samples, 0.03%)</title><rect x="82.6576%" y="805" width="0.0307%" height="15" fill="rgb(221,58,24)" fg:x="399052" fg:w="148"/><text x="82.9076%" y="815.50"></text></g><g><title>skyframe-invali (164 samples, 0.03%)</title><rect x="82.6570%" y="821" width="0.0340%" height="15" fill="rgb(230,54,45)" fg:x="399049" fg:w="164"/><text x="82.9070%" y="831.50"></text></g><g><title>[unknown] (77 samples, 0.02%)</title><rect x="82.6978%" y="805" width="0.0159%" height="15" fill="rgb(254,21,18)" fg:x="399246" fg:w="77"/><text x="82.9478%" y="815.50"></text></g><g><title>[zig] (77 samples, 0.02%)</title><rect x="82.6978%" y="789" width="0.0159%" height="15" fill="rgb(221,108,0)" fg:x="399246" fg:w="77"/><text x="82.9478%" y="799.50"></text></g><g><title>find_vma (56 samples, 0.01%)</title><rect x="88.4678%" y="741" width="0.0116%" height="15" fill="rgb(206,95,1)" fg:x="427102" fg:w="56"/><text x="88.7178%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="88.5324%" y="613" width="0.0139%" height="15" fill="rgb(237,52,5)" fg:x="427414" fg:w="67"/><text x="88.7824%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.01%)</title><rect x="88.5326%" y="597" width="0.0137%" height="15" fill="rgb(218,150,34)" fg:x="427415" fg:w="66"/><text x="88.7826%" y="607.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="88.5328%" y="581" width="0.0135%" height="15" fill="rgb(235,194,28)" fg:x="427416" fg:w="65"/><text x="88.7828%" y="591.50"></text></g><g><title>finish_task_switch (73 samples, 0.02%)</title><rect x="88.5316%" y="629" width="0.0151%" height="15" fill="rgb(245,92,18)" fg:x="427410" fg:w="73"/><text x="88.7816%" y="639.50"></text></g><g><title>wait_on_page_bit_common (92 samples, 0.02%)</title><rect x="88.5303%" y="693" width="0.0191%" height="15" fill="rgb(253,203,53)" fg:x="427404" fg:w="92"/><text x="88.7803%" y="703.50"></text></g><g><title>io_schedule (90 samples, 0.02%)</title><rect x="88.5307%" y="677" width="0.0186%" height="15" fill="rgb(249,185,47)" fg:x="427406" fg:w="90"/><text x="88.7807%" y="687.50"></text></g><g><title>schedule (90 samples, 0.02%)</title><rect x="88.5307%" y="661" width="0.0186%" height="15" fill="rgb(252,194,52)" fg:x="427406" fg:w="90"/><text x="88.7807%" y="671.50"></text></g><g><title>__schedule (90 samples, 0.02%)</title><rect x="88.5307%" y="645" width="0.0186%" height="15" fill="rgb(210,53,36)" fg:x="427406" fg:w="90"/><text x="88.7807%" y="655.50"></text></g><g><title>__do_fault (144 samples, 0.03%)</title><rect x="88.5251%" y="725" width="0.0298%" height="15" fill="rgb(237,37,25)" fg:x="427379" fg:w="144"/><text x="88.7751%" y="735.50"></text></g><g><title>filemap_fault (143 samples, 0.03%)</title><rect x="88.5253%" y="709" width="0.0296%" height="15" fill="rgb(242,116,27)" fg:x="427380" fg:w="143"/><text x="88.7753%" y="719.50"></text></g><g><title>__list_del_entry_valid (118 samples, 0.02%)</title><rect x="88.5920%" y="677" width="0.0244%" height="15" fill="rgb(213,185,26)" fg:x="427702" fg:w="118"/><text x="88.8420%" y="687.50"></text></g><g><title>kernel_init_free_pages (236 samples, 0.05%)</title><rect x="88.6198%" y="661" width="0.0489%" height="15" fill="rgb(225,204,8)" fg:x="427836" fg:w="236"/><text x="88.8698%" y="671.50"></text></g><g><title>clear_page_erms (230 samples, 0.05%)</title><rect x="88.6210%" y="645" width="0.0476%" height="15" fill="rgb(254,111,37)" fg:x="427842" fg:w="230"/><text x="88.8710%" y="655.50"></text></g><g><title>get_page_from_freelist (439 samples, 0.09%)</title><rect x="88.5782%" y="693" width="0.0909%" height="15" fill="rgb(242,35,9)" fg:x="427635" fg:w="439"/><text x="88.8282%" y="703.50"></text></g><g><title>prep_new_page (251 samples, 0.05%)</title><rect x="88.6171%" y="677" width="0.0520%" height="15" fill="rgb(232,138,49)" fg:x="427823" fg:w="251"/><text x="88.8671%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (495 samples, 0.10%)</title><rect x="88.5670%" y="709" width="0.1025%" height="15" fill="rgb(247,56,4)" fg:x="427581" fg:w="495"/><text x="88.8170%" y="719.50"></text></g><g><title>alloc_pages_vma (524 samples, 0.11%)</title><rect x="88.5632%" y="725" width="0.1085%" height="15" fill="rgb(226,179,17)" fg:x="427563" fg:w="524"/><text x="88.8132%" y="735.50"></text></g><g><title>do_page_mkwrite (224 samples, 0.05%)</title><rect x="88.6869%" y="725" width="0.0464%" height="15" fill="rgb(216,163,45)" fg:x="428160" fg:w="224"/><text x="88.9369%" y="735.50"></text></g><g><title>btrfs_page_mkwrite (224 samples, 0.05%)</title><rect x="88.6869%" y="709" width="0.0464%" height="15" fill="rgb(211,157,3)" fg:x="428160" fg:w="224"/><text x="88.9369%" y="719.50"></text></g><g><title>__mod_memcg_lruvec_state (60 samples, 0.01%)</title><rect x="88.8740%" y="677" width="0.0124%" height="15" fill="rgb(234,44,20)" fg:x="429063" fg:w="60"/><text x="89.1240%" y="687.50"></text></g><g><title>page_add_file_rmap (199 samples, 0.04%)</title><rect x="88.8495%" y="693" width="0.0412%" height="15" fill="rgb(254,138,23)" fg:x="428945" fg:w="199"/><text x="89.0995%" y="703.50"></text></g><g><title>alloc_set_pte (287 samples, 0.06%)</title><rect x="88.8325%" y="709" width="0.0594%" height="15" fill="rgb(206,119,39)" fg:x="428863" fg:w="287"/><text x="89.0825%" y="719.50"></text></g><g><title>unlock_page (69 samples, 0.01%)</title><rect x="88.8922%" y="709" width="0.0143%" height="15" fill="rgb(231,105,52)" fg:x="429151" fg:w="69"/><text x="89.1422%" y="719.50"></text></g><g><title>filemap_map_pages (850 samples, 0.18%)</title><rect x="88.7422%" y="725" width="0.1761%" height="15" fill="rgb(250,20,5)" fg:x="428427" fg:w="850"/><text x="88.9922%" y="735.50"></text></g><g><title>xas_find (57 samples, 0.01%)</title><rect x="88.9065%" y="709" width="0.0118%" height="15" fill="rgb(215,198,30)" fg:x="429220" fg:w="57"/><text x="89.1565%" y="719.50"></text></g><g><title>__pagevec_lru_add_fn (92 samples, 0.02%)</title><rect x="88.9262%" y="693" width="0.0191%" height="15" fill="rgb(246,142,8)" fg:x="429315" fg:w="92"/><text x="89.1762%" y="703.50"></text></g><g><title>lru_cache_add (144 samples, 0.03%)</title><rect x="88.9199%" y="725" width="0.0298%" height="15" fill="rgb(243,26,38)" fg:x="429285" fg:w="144"/><text x="89.1699%" y="735.50"></text></g><g><title>pagevec_lru_move_fn (132 samples, 0.03%)</title><rect x="88.9224%" y="709" width="0.0273%" height="15" fill="rgb(205,133,28)" fg:x="429297" fg:w="132"/><text x="89.1724%" y="719.50"></text></g><g><title>get_mem_cgroup_from_mm (49 samples, 0.01%)</title><rect x="88.9556%" y="709" width="0.0101%" height="15" fill="rgb(212,34,0)" fg:x="429457" fg:w="49"/><text x="89.2056%" y="719.50"></text></g><g><title>mem_cgroup_charge (130 samples, 0.03%)</title><rect x="88.9504%" y="725" width="0.0269%" height="15" fill="rgb(251,226,22)" fg:x="429432" fg:w="130"/><text x="89.2004%" y="735.50"></text></g><g><title>handle_mm_fault (2,522 samples, 0.52%)</title><rect x="88.4794%" y="741" width="0.5224%" height="15" fill="rgb(252,119,9)" fg:x="427158" fg:w="2522"/><text x="88.7294%" y="751.50"></text></g><g><title>do_user_addr_fault (2,665 samples, 0.55%)</title><rect x="88.4562%" y="757" width="0.5520%" height="15" fill="rgb(213,150,50)" fg:x="427046" fg:w="2665"/><text x="88.7062%" y="767.50"></text></g><g><title>exc_page_fault (2,685 samples, 0.56%)</title><rect x="88.4535%" y="773" width="0.5562%" height="15" fill="rgb(212,24,39)" fg:x="427033" fg:w="2685"/><text x="88.7035%" y="783.50"></text></g><g><title>asm_exc_page_fault (2,726 samples, 0.56%)</title><rect x="88.4485%" y="789" width="0.5646%" height="15" fill="rgb(213,46,39)" fg:x="427009" fg:w="2726"/><text x="88.6985%" y="799.50"></text></g><g><title>rcu_core (74 samples, 0.02%)</title><rect x="89.0179%" y="693" width="0.0153%" height="15" fill="rgb(239,106,12)" fg:x="429758" fg:w="74"/><text x="89.2679%" y="703.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (101 samples, 0.02%)</title><rect x="89.0131%" y="789" width="0.0209%" height="15" fill="rgb(249,229,21)" fg:x="429735" fg:w="101"/><text x="89.2631%" y="799.50"></text></g><g><title>sysvec_apic_timer_interrupt (97 samples, 0.02%)</title><rect x="89.0140%" y="773" width="0.0201%" height="15" fill="rgb(212,158,3)" fg:x="429739" fg:w="97"/><text x="89.2640%" y="783.50"></text></g><g><title>irq_exit_rcu (78 samples, 0.02%)</title><rect x="89.0179%" y="757" width="0.0162%" height="15" fill="rgb(253,26,48)" fg:x="429758" fg:w="78"/><text x="89.2679%" y="767.50"></text></g><g><title>do_softirq_own_stack (78 samples, 0.02%)</title><rect x="89.0179%" y="741" width="0.0162%" height="15" fill="rgb(238,178,20)" fg:x="429758" fg:w="78"/><text x="89.2679%" y="751.50"></text></g><g><title>asm_call_sysvec_on_stack (78 samples, 0.02%)</title><rect x="89.0179%" y="725" width="0.0162%" height="15" fill="rgb(208,86,15)" fg:x="429758" fg:w="78"/><text x="89.2679%" y="735.50"></text></g><g><title>__softirqentry_text_start (78 samples, 0.02%)</title><rect x="89.0179%" y="709" width="0.0162%" height="15" fill="rgb(239,42,53)" fg:x="429758" fg:w="78"/><text x="89.2679%" y="719.50"></text></g><g><title>entry_SYSCALL_64 (1,253 samples, 0.26%)</title><rect x="89.0359%" y="789" width="0.2595%" height="15" fill="rgb(245,226,8)" fg:x="429845" fg:w="1253"/><text x="89.2859%" y="799.50"></text></g><g><title>inherit_task_group.isra.0 (56 samples, 0.01%)</title><rect x="89.4102%" y="693" width="0.0116%" height="15" fill="rgb(216,176,32)" fg:x="431652" fg:w="56"/><text x="89.6602%" y="703.50"></text></g><g><title>inherit_event.constprop.0 (51 samples, 0.01%)</title><rect x="89.4113%" y="677" width="0.0106%" height="15" fill="rgb(231,186,21)" fg:x="431657" fg:w="51"/><text x="89.6613%" y="687.50"></text></g><g><title>perf_event_init_task (61 samples, 0.01%)</title><rect x="89.4098%" y="709" width="0.0126%" height="15" fill="rgb(205,95,49)" fg:x="431650" fg:w="61"/><text x="89.6598%" y="719.50"></text></g><g><title>copy_process (138 samples, 0.03%)</title><rect x="89.3947%" y="725" width="0.0286%" height="15" fill="rgb(217,145,8)" fg:x="431577" fg:w="138"/><text x="89.6447%" y="735.50"></text></g><g><title>__do_sys_clone (150 samples, 0.03%)</title><rect x="89.3947%" y="757" width="0.0311%" height="15" fill="rgb(239,144,48)" fg:x="431577" fg:w="150"/><text x="89.6447%" y="767.50"></text></g><g><title>kernel_clone (150 samples, 0.03%)</title><rect x="89.3947%" y="741" width="0.0311%" height="15" fill="rgb(214,189,23)" fg:x="431577" fg:w="150"/><text x="89.6447%" y="751.50"></text></g><g><title>_copy_to_user (165 samples, 0.03%)</title><rect x="89.4413%" y="725" width="0.0342%" height="15" fill="rgb(229,157,17)" fg:x="431802" fg:w="165"/><text x="89.6913%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (151 samples, 0.03%)</title><rect x="89.4442%" y="709" width="0.0313%" height="15" fill="rgb(230,5,48)" fg:x="431816" fg:w="151"/><text x="89.6942%" y="719.50"></text></g><g><title>cp_new_stat (276 samples, 0.06%)</title><rect x="89.4285%" y="741" width="0.0572%" height="15" fill="rgb(224,156,48)" fg:x="431740" fg:w="276"/><text x="89.6785%" y="751.50"></text></g><g><title>__fget_files (102 samples, 0.02%)</title><rect x="89.4929%" y="709" width="0.0211%" height="15" fill="rgb(223,14,29)" fg:x="432051" fg:w="102"/><text x="89.7429%" y="719.50"></text></g><g><title>__fget_light (109 samples, 0.02%)</title><rect x="89.4916%" y="725" width="0.0226%" height="15" fill="rgb(229,96,36)" fg:x="432045" fg:w="109"/><text x="89.7416%" y="735.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="89.6037%" y="709" width="0.0143%" height="15" fill="rgb(231,102,53)" fg:x="432586" fg:w="69"/><text x="89.8537%" y="719.50"></text></g><g><title>btrfs_getattr (618 samples, 0.13%)</title><rect x="89.5144%" y="725" width="0.1280%" height="15" fill="rgb(210,77,38)" fg:x="432155" fg:w="618"/><text x="89.7644%" y="735.50"></text></g><g><title>inode_get_bytes (79 samples, 0.02%)</title><rect x="89.6261%" y="709" width="0.0164%" height="15" fill="rgb(235,131,6)" fg:x="432694" fg:w="79"/><text x="89.8761%" y="719.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.01%)</title><rect x="89.6275%" y="693" width="0.0149%" height="15" fill="rgb(252,55,38)" fg:x="432701" fg:w="72"/><text x="89.8775%" y="703.50"></text></g><g><title>fput_many (50 samples, 0.01%)</title><rect x="89.6433%" y="725" width="0.0104%" height="15" fill="rgb(246,38,14)" fg:x="432777" fg:w="50"/><text x="89.8933%" y="735.50"></text></g><g><title>security_inode_getattr (245 samples, 0.05%)</title><rect x="89.6536%" y="725" width="0.0507%" height="15" fill="rgb(242,27,5)" fg:x="432827" fg:w="245"/><text x="89.9036%" y="735.50"></text></g><g><title>tomoyo_path_perm (189 samples, 0.04%)</title><rect x="89.6652%" y="709" width="0.0391%" height="15" fill="rgb(228,65,35)" fg:x="432883" fg:w="189"/><text x="89.9152%" y="719.50"></text></g><g><title>tomoyo_init_request_info (89 samples, 0.02%)</title><rect x="89.6859%" y="693" width="0.0184%" height="15" fill="rgb(245,93,11)" fg:x="432983" fg:w="89"/><text x="89.9359%" y="703.50"></text></g><g><title>__do_sys_newfstat (1,434 samples, 0.30%)</title><rect x="89.4258%" y="757" width="0.2970%" height="15" fill="rgb(213,1,31)" fg:x="431727" fg:w="1434"/><text x="89.6758%" y="767.50"></text></g><g><title>vfs_fstat (1,145 samples, 0.24%)</title><rect x="89.4856%" y="741" width="0.2372%" height="15" fill="rgb(237,205,14)" fg:x="432016" fg:w="1145"/><text x="89.7356%" y="751.50"></text></g><g><title>vfs_getattr_nosec (89 samples, 0.02%)</title><rect x="89.7044%" y="725" width="0.0184%" height="15" fill="rgb(232,118,45)" fg:x="433072" fg:w="89"/><text x="89.9544%" y="735.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="89.7394%" y="709" width="0.0118%" height="15" fill="rgb(218,5,6)" fg:x="433241" fg:w="57"/><text x="89.9894%" y="719.50"></text></g><g><title>__close_fd (103 samples, 0.02%)</title><rect x="89.7300%" y="741" width="0.0213%" height="15" fill="rgb(251,87,51)" fg:x="433196" fg:w="103"/><text x="89.9800%" y="751.50"></text></g><g><title>pick_file (98 samples, 0.02%)</title><rect x="89.7311%" y="725" width="0.0203%" height="15" fill="rgb(207,225,20)" fg:x="433201" fg:w="98"/><text x="89.9811%" y="735.50"></text></g><g><title>fput_many (201 samples, 0.04%)</title><rect x="89.7561%" y="725" width="0.0416%" height="15" fill="rgb(222,78,54)" fg:x="433322" fg:w="201"/><text x="90.0061%" y="735.50"></text></g><g><title>task_work_add (129 samples, 0.03%)</title><rect x="89.7711%" y="709" width="0.0267%" height="15" fill="rgb(232,85,16)" fg:x="433394" fg:w="129"/><text x="90.0211%" y="719.50"></text></g><g><title>__x64_sys_close (343 samples, 0.07%)</title><rect x="89.7294%" y="757" width="0.0710%" height="15" fill="rgb(244,25,33)" fg:x="433193" fg:w="343"/><text x="89.9794%" y="767.50"></text></g><g><title>filp_close (237 samples, 0.05%)</title><rect x="89.7514%" y="741" width="0.0491%" height="15" fill="rgb(233,24,36)" fg:x="433299" fg:w="237"/><text x="90.0014%" y="751.50"></text></g><g><title>bprm_execve (60 samples, 0.01%)</title><rect x="89.8019%" y="725" width="0.0124%" height="15" fill="rgb(253,49,54)" fg:x="433543" fg:w="60"/><text x="90.0519%" y="735.50"></text></g><g><title>__x64_sys_execve (125 samples, 0.03%)</title><rect x="89.8005%" y="757" width="0.0259%" height="15" fill="rgb(245,12,22)" fg:x="433536" fg:w="125"/><text x="90.0505%" y="767.50"></text></g><g><title>do_execveat_common (124 samples, 0.03%)</title><rect x="89.8007%" y="741" width="0.0257%" height="15" fill="rgb(253,141,28)" fg:x="433537" fg:w="124"/><text x="90.0507%" y="751.50"></text></g><g><title>update_curr (98 samples, 0.02%)</title><rect x="89.9218%" y="629" width="0.0203%" height="15" fill="rgb(225,207,27)" fg:x="434122" fg:w="98"/><text x="90.1718%" y="639.50"></text></g><g><title>dequeue_entity (284 samples, 0.06%)</title><rect x="89.9018%" y="645" width="0.0588%" height="15" fill="rgb(220,84,2)" fg:x="434025" fg:w="284"/><text x="90.1518%" y="655.50"></text></g><g><title>update_load_avg (89 samples, 0.02%)</title><rect x="89.9421%" y="629" width="0.0184%" height="15" fill="rgb(224,37,37)" fg:x="434220" fg:w="89"/><text x="90.1921%" y="639.50"></text></g><g><title>dequeue_task_fair (318 samples, 0.07%)</title><rect x="89.8960%" y="661" width="0.0659%" height="15" fill="rgb(220,143,18)" fg:x="433997" fg:w="318"/><text x="90.1460%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (5,065 samples, 1.05%)</title><rect x="89.9941%" y="645" width="1.0491%" height="15" fill="rgb(210,88,33)" fg:x="434471" fg:w="5065"/><text x="90.2441%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,021 samples, 1.04%)</title><rect x="90.0033%" y="629" width="1.0400%" height="15" fill="rgb(219,87,51)" fg:x="434515" fg:w="5021"/><text x="90.2533%" y="639.50"></text></g><g><title>native_write_msr (4,990 samples, 1.03%)</title><rect x="90.0097%" y="613" width="1.0336%" height="15" fill="rgb(211,7,35)" fg:x="434546" fg:w="4990"/><text x="90.2597%" y="623.50"></text></g><g><title>__wake_up_common (69 samples, 0.01%)</title><rect x="91.0532%" y="485" width="0.0143%" height="15" fill="rgb(232,77,2)" fg:x="439584" fg:w="69"/><text x="91.3032%" y="495.50"></text></g><g><title>pollwake (66 samples, 0.01%)</title><rect x="91.0538%" y="469" width="0.0137%" height="15" fill="rgb(249,94,25)" fg:x="439587" fg:w="66"/><text x="91.3038%" y="479.50"></text></g><g><title>try_to_wake_up (64 samples, 0.01%)</title><rect x="91.0543%" y="453" width="0.0133%" height="15" fill="rgb(215,112,2)" fg:x="439589" fg:w="64"/><text x="91.3043%" y="463.50"></text></g><g><title>asm_call_sysvec_on_stack (79 samples, 0.02%)</title><rect x="91.0520%" y="613" width="0.0164%" height="15" fill="rgb(226,115,48)" fg:x="439578" fg:w="79"/><text x="91.3020%" y="623.50"></text></g><g><title>__sysvec_irq_work (78 samples, 0.02%)</title><rect x="91.0522%" y="597" width="0.0162%" height="15" fill="rgb(249,196,10)" fg:x="439579" fg:w="78"/><text x="91.3022%" y="607.50"></text></g><g><title>irq_work_run (78 samples, 0.02%)</title><rect x="91.0522%" y="581" width="0.0162%" height="15" fill="rgb(237,109,14)" fg:x="439579" fg:w="78"/><text x="91.3022%" y="591.50"></text></g><g><title>irq_work_run_list (78 samples, 0.02%)</title><rect x="91.0522%" y="565" width="0.0162%" height="15" fill="rgb(217,103,53)" fg:x="439579" fg:w="78"/><text x="91.3022%" y="575.50"></text></g><g><title>irq_work_single (77 samples, 0.02%)</title><rect x="91.0524%" y="549" width="0.0159%" height="15" fill="rgb(244,137,9)" fg:x="439580" fg:w="77"/><text x="91.3024%" y="559.50"></text></g><g><title>perf_pending_event (77 samples, 0.02%)</title><rect x="91.0524%" y="533" width="0.0159%" height="15" fill="rgb(227,201,3)" fg:x="439580" fg:w="77"/><text x="91.3024%" y="543.50"></text></g><g><title>perf_event_wakeup (75 samples, 0.02%)</title><rect x="91.0528%" y="517" width="0.0155%" height="15" fill="rgb(243,94,6)" fg:x="439582" fg:w="75"/><text x="91.3028%" y="527.50"></text></g><g><title>__wake_up_common_lock (74 samples, 0.02%)</title><rect x="91.0530%" y="501" width="0.0153%" height="15" fill="rgb(235,118,5)" fg:x="439583" fg:w="74"/><text x="91.3030%" y="511.50"></text></g><g><title>asm_sysvec_irq_work (97 samples, 0.02%)</title><rect x="91.0489%" y="645" width="0.0201%" height="15" fill="rgb(247,10,30)" fg:x="439563" fg:w="97"/><text x="91.2989%" y="655.50"></text></g><g><title>sysvec_irq_work (82 samples, 0.02%)</title><rect x="91.0520%" y="629" width="0.0170%" height="15" fill="rgb(205,26,28)" fg:x="439578" fg:w="82"/><text x="91.3020%" y="639.50"></text></g><g><title>finish_task_switch (5,378 samples, 1.11%)</title><rect x="89.9618%" y="661" width="1.1140%" height="15" fill="rgb(206,99,35)" fg:x="434315" fg:w="5378"/><text x="90.2118%" y="671.50"></text></g><g><title>newidle_balance (56 samples, 0.01%)</title><rect x="91.0764%" y="645" width="0.0116%" height="15" fill="rgb(238,130,40)" fg:x="439696" fg:w="56"/><text x="91.3264%" y="655.50"></text></g><g><title>pick_next_task_fair (62 samples, 0.01%)</title><rect x="91.0758%" y="661" width="0.0128%" height="15" fill="rgb(224,126,31)" fg:x="439693" fg:w="62"/><text x="91.3258%" y="671.50"></text></g><g><title>psi_task_change (195 samples, 0.04%)</title><rect x="91.0963%" y="661" width="0.0404%" height="15" fill="rgb(254,105,17)" fg:x="439792" fg:w="195"/><text x="91.3463%" y="671.50"></text></g><g><title>psi_group_change (166 samples, 0.03%)</title><rect x="91.1023%" y="645" width="0.0344%" height="15" fill="rgb(216,87,36)" fg:x="439821" fg:w="166"/><text x="91.3523%" y="655.50"></text></g><g><title>record_times (51 samples, 0.01%)</title><rect x="91.1261%" y="629" width="0.0106%" height="15" fill="rgb(240,21,12)" fg:x="439936" fg:w="51"/><text x="91.3761%" y="639.50"></text></g><g><title>futex_wait_queue_me (6,227 samples, 1.29%)</title><rect x="89.8572%" y="709" width="1.2898%" height="15" fill="rgb(245,192,34)" fg:x="433810" fg:w="6227"/><text x="90.1072%" y="719.50"></text></g><g><title>schedule (6,173 samples, 1.28%)</title><rect x="89.8684%" y="693" width="1.2786%" height="15" fill="rgb(226,100,49)" fg:x="433864" fg:w="6173"/><text x="90.1184%" y="703.50"></text></g><g><title>__schedule (6,148 samples, 1.27%)</title><rect x="89.8736%" y="677" width="1.2735%" height="15" fill="rgb(245,188,27)" fg:x="433889" fg:w="6148"/><text x="90.1236%" y="687.50"></text></g><g><title>futex_wait (6,376 samples, 1.32%)</title><rect x="89.8454%" y="725" width="1.3207%" height="15" fill="rgb(212,170,8)" fg:x="433753" fg:w="6376"/><text x="90.0954%" y="735.50"></text></g><g><title>futex_wait_setup (92 samples, 0.02%)</title><rect x="91.1471%" y="709" width="0.0191%" height="15" fill="rgb(217,113,29)" fg:x="440037" fg:w="92"/><text x="91.3971%" y="719.50"></text></g><g><title>select_task_rq_fair (76 samples, 0.02%)</title><rect x="91.1928%" y="677" width="0.0157%" height="15" fill="rgb(237,30,3)" fg:x="440258" fg:w="76"/><text x="91.4428%" y="687.50"></text></g><g><title>enqueue_entity (51 samples, 0.01%)</title><rect x="91.2135%" y="645" width="0.0106%" height="15" fill="rgb(227,19,28)" fg:x="440358" fg:w="51"/><text x="91.4635%" y="655.50"></text></g><g><title>enqueue_task_fair (66 samples, 0.01%)</title><rect x="91.2108%" y="661" width="0.0137%" height="15" fill="rgb(239,172,45)" fg:x="440345" fg:w="66"/><text x="91.4608%" y="671.50"></text></g><g><title>ttwu_do_activate (157 samples, 0.03%)</title><rect x="91.2096%" y="677" width="0.0325%" height="15" fill="rgb(254,55,39)" fg:x="440339" fg:w="157"/><text x="91.4596%" y="687.50"></text></g><g><title>psi_task_change (85 samples, 0.02%)</title><rect x="91.2245%" y="661" width="0.0176%" height="15" fill="rgb(249,208,12)" fg:x="440411" fg:w="85"/><text x="91.4745%" y="671.50"></text></g><g><title>psi_group_change (78 samples, 0.02%)</title><rect x="91.2260%" y="645" width="0.0162%" height="15" fill="rgb(240,52,13)" fg:x="440418" fg:w="78"/><text x="91.4760%" y="655.50"></text></g><g><title>__x64_sys_futex (6,818 samples, 1.41%)</title><rect x="89.8359%" y="757" width="1.4122%" height="15" fill="rgb(252,149,13)" fg:x="433707" fg:w="6818"/><text x="90.0859%" y="767.50"></text></g><g><title>do_futex (6,795 samples, 1.41%)</title><rect x="89.8407%" y="741" width="1.4075%" height="15" fill="rgb(232,81,48)" fg:x="433730" fg:w="6795"/><text x="90.0907%" y="751.50"></text></g><g><title>futex_wake (396 samples, 0.08%)</title><rect x="91.1661%" y="725" width="0.0820%" height="15" fill="rgb(222,144,2)" fg:x="440129" fg:w="396"/><text x="91.4161%" y="735.50"></text></g><g><title>wake_up_q (318 samples, 0.07%)</title><rect x="91.1823%" y="709" width="0.0659%" height="15" fill="rgb(216,81,32)" fg:x="440207" fg:w="318"/><text x="91.4323%" y="719.50"></text></g><g><title>try_to_wake_up (309 samples, 0.06%)</title><rect x="91.1841%" y="693" width="0.0640%" height="15" fill="rgb(244,78,51)" fg:x="440216" fg:w="309"/><text x="91.4341%" y="703.50"></text></g><g><title>__split_vma (74 samples, 0.02%)</title><rect x="91.2601%" y="709" width="0.0153%" height="15" fill="rgb(217,66,21)" fg:x="440583" fg:w="74"/><text x="91.5101%" y="719.50"></text></g><g><title>flush_tlb_mm_range (58 samples, 0.01%)</title><rect x="91.2910%" y="677" width="0.0120%" height="15" fill="rgb(247,101,42)" fg:x="440732" fg:w="58"/><text x="91.5410%" y="687.50"></text></g><g><title>free_pcppages_bulk (57 samples, 0.01%)</title><rect x="91.3254%" y="645" width="0.0118%" height="15" fill="rgb(227,81,39)" fg:x="440898" fg:w="57"/><text x="91.5754%" y="655.50"></text></g><g><title>free_unref_page_list (110 samples, 0.02%)</title><rect x="91.3179%" y="661" width="0.0228%" height="15" fill="rgb(220,223,44)" fg:x="440862" fg:w="110"/><text x="91.5679%" y="671.50"></text></g><g><title>tlb_finish_mmu (278 samples, 0.06%)</title><rect x="91.2898%" y="693" width="0.0576%" height="15" fill="rgb(205,218,2)" fg:x="440726" fg:w="278"/><text x="91.5398%" y="703.50"></text></g><g><title>release_pages (208 samples, 0.04%)</title><rect x="91.3043%" y="677" width="0.0431%" height="15" fill="rgb(212,207,28)" fg:x="440796" fg:w="208"/><text x="91.5543%" y="687.50"></text></g><g><title>unmap_page_range (148 samples, 0.03%)</title><rect x="91.3484%" y="677" width="0.0307%" height="15" fill="rgb(224,12,41)" fg:x="441009" fg:w="148"/><text x="91.5984%" y="687.50"></text></g><g><title>unmap_region (474 samples, 0.10%)</title><rect x="91.2811%" y="709" width="0.0982%" height="15" fill="rgb(216,118,12)" fg:x="440684" fg:w="474"/><text x="91.5311%" y="719.50"></text></g><g><title>unmap_vmas (154 samples, 0.03%)</title><rect x="91.3474%" y="693" width="0.0319%" height="15" fill="rgb(252,97,46)" fg:x="441004" fg:w="154"/><text x="91.5974%" y="703.50"></text></g><g><title>__do_munmap (589 samples, 0.12%)</title><rect x="91.2577%" y="725" width="0.1220%" height="15" fill="rgb(244,206,19)" fg:x="440571" fg:w="589"/><text x="91.5077%" y="735.50"></text></g><g><title>__vm_munmap (596 samples, 0.12%)</title><rect x="91.2577%" y="741" width="0.1235%" height="15" fill="rgb(231,84,31)" fg:x="440571" fg:w="596"/><text x="91.5077%" y="751.50"></text></g><g><title>__x64_sys_munmap (599 samples, 0.12%)</title><rect x="91.2575%" y="757" width="0.1241%" height="15" fill="rgb(244,133,0)" fg:x="440570" fg:w="599"/><text x="91.5075%" y="767.50"></text></g><g><title>do_filp_open (117 samples, 0.02%)</title><rect x="91.3821%" y="725" width="0.0242%" height="15" fill="rgb(223,15,50)" fg:x="441172" fg:w="117"/><text x="91.6321%" y="735.50"></text></g><g><title>path_openat (117 samples, 0.02%)</title><rect x="91.3821%" y="709" width="0.0242%" height="15" fill="rgb(250,118,49)" fg:x="441172" fg:w="117"/><text x="91.6321%" y="719.50"></text></g><g><title>__x64_sys_open (126 samples, 0.03%)</title><rect x="91.3815%" y="757" width="0.0261%" height="15" fill="rgb(248,25,38)" fg:x="441169" fg:w="126"/><text x="91.6315%" y="767.50"></text></g><g><title>do_sys_openat2 (126 samples, 0.03%)</title><rect x="91.3815%" y="741" width="0.0261%" height="15" fill="rgb(215,70,14)" fg:x="441169" fg:w="126"/><text x="91.6315%" y="751.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="91.4517%" y="709" width="0.0135%" height="15" fill="rgb(215,28,15)" fg:x="441508" fg:w="65"/><text x="91.7017%" y="719.50"></text></g><g><title>__alloc_fd (197 samples, 0.04%)</title><rect x="91.4321%" y="725" width="0.0408%" height="15" fill="rgb(243,6,28)" fg:x="441413" fg:w="197"/><text x="91.6821%" y="735.50"></text></g><g><title>__fd_install (54 samples, 0.01%)</title><rect x="91.4729%" y="725" width="0.0112%" height="15" fill="rgb(222,130,1)" fg:x="441610" fg:w="54"/><text x="91.7229%" y="735.50"></text></g><g><title>build_open_flags (53 samples, 0.01%)</title><rect x="91.4938%" y="725" width="0.0110%" height="15" fill="rgb(236,166,44)" fg:x="441711" fg:w="53"/><text x="91.7438%" y="735.50"></text></g><g><title>get_partial_node.part.0 (55 samples, 0.01%)</title><rect x="91.6411%" y="613" width="0.0114%" height="15" fill="rgb(221,108,14)" fg:x="442422" fg:w="55"/><text x="91.8911%" y="623.50"></text></g><g><title>__slab_alloc (191 samples, 0.04%)</title><rect x="91.6131%" y="645" width="0.0396%" height="15" fill="rgb(252,3,45)" fg:x="442287" fg:w="191"/><text x="91.8631%" y="655.50"></text></g><g><title>___slab_alloc (179 samples, 0.04%)</title><rect x="91.6156%" y="629" width="0.0371%" height="15" fill="rgb(237,68,30)" fg:x="442299" fg:w="179"/><text x="91.8656%" y="639.50"></text></g><g><title>__mod_memcg_lruvec_state (85 samples, 0.02%)</title><rect x="91.7190%" y="629" width="0.0176%" height="15" fill="rgb(211,79,22)" fg:x="442798" fg:w="85"/><text x="91.9690%" y="639.50"></text></g><g><title>__mod_memcg_state.part.0 (49 samples, 0.01%)</title><rect x="91.7264%" y="613" width="0.0101%" height="15" fill="rgb(252,185,21)" fg:x="442834" fg:w="49"/><text x="91.9764%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (432 samples, 0.09%)</title><rect x="91.6527%" y="645" width="0.0895%" height="15" fill="rgb(225,189,26)" fg:x="442478" fg:w="432"/><text x="91.9027%" y="655.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="91.7422%" y="645" width="0.0135%" height="15" fill="rgb(241,30,40)" fg:x="442910" fg:w="65"/><text x="91.9922%" y="655.50"></text></g><g><title>get_obj_cgroup_from_current (203 samples, 0.04%)</title><rect x="91.7645%" y="629" width="0.0420%" height="15" fill="rgb(235,215,44)" fg:x="443018" fg:w="203"/><text x="92.0145%" y="639.50"></text></g><g><title>obj_cgroup_charge (137 samples, 0.03%)</title><rect x="91.8066%" y="629" width="0.0284%" height="15" fill="rgb(205,8,29)" fg:x="443221" fg:w="137"/><text x="92.0566%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,241 samples, 0.26%)</title><rect x="91.5781%" y="661" width="0.2571%" height="15" fill="rgb(241,137,42)" fg:x="442118" fg:w="1241"/><text x="91.8281%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (384 samples, 0.08%)</title><rect x="91.7556%" y="645" width="0.0795%" height="15" fill="rgb(237,155,2)" fg:x="442975" fg:w="384"/><text x="92.0056%" y="655.50"></text></g><g><title>apparmor_file_alloc_security (137 samples, 0.03%)</title><rect x="91.8393%" y="645" width="0.0284%" height="15" fill="rgb(245,29,42)" fg:x="443379" fg:w="137"/><text x="92.0893%" y="655.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="91.8865%" y="629" width="0.0126%" height="15" fill="rgb(234,101,35)" fg:x="443607" fg:w="61"/><text x="92.1365%" y="639.50"></text></g><g><title>__alloc_file (1,711 samples, 0.35%)</title><rect x="91.5514%" y="677" width="0.3544%" height="15" fill="rgb(228,64,37)" fg:x="441989" fg:w="1711"/><text x="91.8014%" y="687.50"></text></g><g><title>security_file_alloc (341 samples, 0.07%)</title><rect x="91.8352%" y="661" width="0.0706%" height="15" fill="rgb(217,214,36)" fg:x="443359" fg:w="341"/><text x="92.0852%" y="671.50"></text></g><g><title>kmem_cache_alloc (184 samples, 0.04%)</title><rect x="91.8677%" y="645" width="0.0381%" height="15" fill="rgb(243,70,3)" fg:x="443516" fg:w="184"/><text x="92.1177%" y="655.50"></text></g><g><title>alloc_empty_file (1,745 samples, 0.36%)</title><rect x="91.5477%" y="693" width="0.3615%" height="15" fill="rgb(253,158,52)" fg:x="441971" fg:w="1745"/><text x="91.7977%" y="703.50"></text></g><g><title>errseq_sample (95 samples, 0.02%)</title><rect x="91.9601%" y="677" width="0.0197%" height="15" fill="rgb(234,111,54)" fg:x="443962" fg:w="95"/><text x="92.2101%" y="687.50"></text></g><g><title>lockref_get (75 samples, 0.02%)</title><rect x="91.9826%" y="677" width="0.0155%" height="15" fill="rgb(217,70,32)" fg:x="444071" fg:w="75"/><text x="92.2326%" y="687.50"></text></g><g><title>apparmor_file_open (150 samples, 0.03%)</title><rect x="92.0067%" y="661" width="0.0311%" height="15" fill="rgb(234,18,33)" fg:x="444187" fg:w="150"/><text x="92.2567%" y="671.50"></text></g><g><title>__srcu_read_lock (73 samples, 0.02%)</title><rect x="92.0603%" y="645" width="0.0151%" height="15" fill="rgb(234,12,49)" fg:x="444446" fg:w="73"/><text x="92.3103%" y="655.50"></text></g><g><title>__srcu_read_unlock (67 samples, 0.01%)</title><rect x="92.0754%" y="645" width="0.0139%" height="15" fill="rgb(236,10,21)" fg:x="444519" fg:w="67"/><text x="92.3254%" y="655.50"></text></g><g><title>tomoyo_check_open_permission (343 samples, 0.07%)</title><rect x="92.0377%" y="661" width="0.0710%" height="15" fill="rgb(248,182,45)" fg:x="444337" fg:w="343"/><text x="92.2877%" y="671.50"></text></g><g><title>tomoyo_init_request_info (74 samples, 0.02%)</title><rect x="92.0935%" y="645" width="0.0153%" height="15" fill="rgb(217,95,36)" fg:x="444606" fg:w="74"/><text x="92.3435%" y="655.50"></text></g><g><title>security_file_open (541 samples, 0.11%)</title><rect x="92.0002%" y="677" width="0.1121%" height="15" fill="rgb(212,110,31)" fg:x="444156" fg:w="541"/><text x="92.2502%" y="687.50"></text></g><g><title>do_dentry_open (975 samples, 0.20%)</title><rect x="91.9112%" y="693" width="0.2020%" height="15" fill="rgb(206,32,53)" fg:x="443726" fg:w="975"/><text x="92.1612%" y="703.50"></text></g><g><title>btrfs_dentry_delete (56 samples, 0.01%)</title><rect x="92.1256%" y="677" width="0.0116%" height="15" fill="rgb(246,141,37)" fg:x="444761" fg:w="56"/><text x="92.3756%" y="687.50"></text></g><g><title>dput (164 samples, 0.03%)</title><rect x="92.1173%" y="693" width="0.0340%" height="15" fill="rgb(219,16,7)" fg:x="444721" fg:w="164"/><text x="92.3673%" y="703.50"></text></g><g><title>lockref_put_or_lock (68 samples, 0.01%)</title><rect x="92.1372%" y="677" width="0.0141%" height="15" fill="rgb(230,205,45)" fg:x="444817" fg:w="68"/><text x="92.3872%" y="687.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="92.1386%" y="661" width="0.0126%" height="15" fill="rgb(231,43,49)" fg:x="444824" fg:w="61"/><text x="92.3886%" y="671.50"></text></g><g><title>btrfs_permission (110 samples, 0.02%)</title><rect x="92.6970%" y="661" width="0.0228%" height="15" fill="rgb(212,106,34)" fg:x="447520" fg:w="110"/><text x="92.9470%" y="671.50"></text></g><g><title>inode_permission.part.0 (1,632 samples, 0.34%)</title><rect x="92.5185%" y="677" width="0.3380%" height="15" fill="rgb(206,83,17)" fg:x="446658" fg:w="1632"/><text x="92.7685%" y="687.50"></text></g><g><title>generic_permission (660 samples, 0.14%)</title><rect x="92.7198%" y="661" width="0.1367%" height="15" fill="rgb(244,154,49)" fg:x="447630" fg:w="660"/><text x="92.9698%" y="671.50"></text></g><g><title>security_inode_permission (178 samples, 0.04%)</title><rect x="92.8565%" y="677" width="0.0369%" height="15" fill="rgb(244,149,49)" fg:x="448290" fg:w="178"/><text x="93.1065%" y="687.50"></text></g><g><title>lockref_put_or_lock (91 samples, 0.02%)</title><rect x="93.0278%" y="645" width="0.0188%" height="15" fill="rgb(227,134,18)" fg:x="449117" fg:w="91"/><text x="93.2778%" y="655.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.02%)</title><rect x="93.0316%" y="629" width="0.0151%" height="15" fill="rgb(237,116,36)" fg:x="449135" fg:w="73"/><text x="93.2816%" y="639.50"></text></g><g><title>dput (148 samples, 0.03%)</title><rect x="93.0169%" y="661" width="0.0307%" height="15" fill="rgb(205,129,40)" fg:x="449064" fg:w="148"/><text x="93.2669%" y="671.50"></text></g><g><title>_raw_spin_lock (833 samples, 0.17%)</title><rect x="93.3723%" y="629" width="0.1725%" height="15" fill="rgb(236,178,4)" fg:x="450780" fg:w="833"/><text x="93.6223%" y="639.50"></text></g><g><title>__d_lookup (1,684 samples, 0.35%)</title><rect x="93.2022%" y="645" width="0.3488%" height="15" fill="rgb(251,76,53)" fg:x="449959" fg:w="1684"/><text x="93.4522%" y="655.50"></text></g><g><title>__d_lookup_rcu (1,369 samples, 0.28%)</title><rect x="93.5511%" y="645" width="0.2836%" height="15" fill="rgb(242,92,40)" fg:x="451643" fg:w="1369"/><text x="93.8011%" y="655.50"></text></g><g><title>lookup_fast (3,802 samples, 0.79%)</title><rect x="93.0475%" y="661" width="0.7875%" height="15" fill="rgb(209,45,30)" fg:x="449212" fg:w="3802"/><text x="93.2975%" y="671.50"></text></g><g><title>__traverse_mounts (84 samples, 0.02%)</title><rect x="94.0619%" y="645" width="0.0174%" height="15" fill="rgb(218,157,36)" fg:x="454109" fg:w="84"/><text x="94.3119%" y="655.50"></text></g><g><title>atime_needs_update (64 samples, 0.01%)</title><rect x="94.0807%" y="645" width="0.0133%" height="15" fill="rgb(222,186,16)" fg:x="454200" fg:w="64"/><text x="94.3307%" y="655.50"></text></g><g><title>_cond_resched (131 samples, 0.03%)</title><rect x="94.1346%" y="629" width="0.0271%" height="15" fill="rgb(254,72,35)" fg:x="454460" fg:w="131"/><text x="94.3846%" y="639.50"></text></g><g><title>rcu_all_qs (55 samples, 0.01%)</title><rect x="94.1503%" y="613" width="0.0114%" height="15" fill="rgb(224,25,35)" fg:x="454536" fg:w="55"/><text x="94.4003%" y="623.50"></text></g><g><title>dput (1,137 samples, 0.24%)</title><rect x="94.0940%" y="645" width="0.2355%" height="15" fill="rgb(206,135,52)" fg:x="454264" fg:w="1137"/><text x="94.3440%" y="655.50"></text></g><g><title>lockref_put_or_lock (810 samples, 0.17%)</title><rect x="94.1617%" y="629" width="0.1678%" height="15" fill="rgb(229,174,47)" fg:x="454591" fg:w="810"/><text x="94.4117%" y="639.50"></text></g><g><title>dput (118 samples, 0.02%)</title><rect x="94.3347%" y="629" width="0.0244%" height="15" fill="rgb(242,184,21)" fg:x="455426" fg:w="118"/><text x="94.5847%" y="639.50"></text></g><g><title>lockref_put_or_lock (89 samples, 0.02%)</title><rect x="94.3407%" y="613" width="0.0184%" height="15" fill="rgb(213,22,45)" fg:x="455455" fg:w="89"/><text x="94.5907%" y="623.50"></text></g><g><title>lockref_get (65 samples, 0.01%)</title><rect x="94.3591%" y="629" width="0.0135%" height="15" fill="rgb(237,81,54)" fg:x="455544" fg:w="65"/><text x="94.6091%" y="639.50"></text></g><g><title>nd_jump_root (245 samples, 0.05%)</title><rect x="94.3295%" y="645" width="0.0507%" height="15" fill="rgb(248,177,18)" fg:x="455401" fg:w="245"/><text x="94.5795%" y="655.50"></text></g><g><title>do_read_cache_page (200 samples, 0.04%)</title><rect x="94.3850%" y="629" width="0.0414%" height="15" fill="rgb(254,31,16)" fg:x="455669" fg:w="200"/><text x="94.6350%" y="639.50"></text></g><g><title>pagecache_get_page (154 samples, 0.03%)</title><rect x="94.3945%" y="613" width="0.0319%" height="15" fill="rgb(235,20,31)" fg:x="455715" fg:w="154"/><text x="94.6445%" y="623.50"></text></g><g><title>find_get_entry (113 samples, 0.02%)</title><rect x="94.4030%" y="597" width="0.0234%" height="15" fill="rgb(240,56,43)" fg:x="455756" fg:w="113"/><text x="94.6530%" y="607.50"></text></g><g><title>page_get_link (226 samples, 0.05%)</title><rect x="94.3802%" y="645" width="0.0468%" height="15" fill="rgb(237,197,51)" fg:x="455646" fg:w="226"/><text x="94.6302%" y="655.50"></text></g><g><title>__mnt_want_write (79 samples, 0.02%)</title><rect x="94.4337%" y="629" width="0.0164%" height="15" fill="rgb(241,162,44)" fg:x="455904" fg:w="79"/><text x="94.6837%" y="639.50"></text></g><g><title>touch_atime (163 samples, 0.03%)</title><rect x="94.4287%" y="645" width="0.0338%" height="15" fill="rgb(224,23,20)" fg:x="455880" fg:w="163"/><text x="94.6787%" y="655.50"></text></g><g><title>atime_needs_update (60 samples, 0.01%)</title><rect x="94.4500%" y="629" width="0.0124%" height="15" fill="rgb(250,109,34)" fg:x="455983" fg:w="60"/><text x="94.7000%" y="639.50"></text></g><g><title>__legitimize_mnt (90 samples, 0.02%)</title><rect x="94.4693%" y="613" width="0.0186%" height="15" fill="rgb(214,175,50)" fg:x="456076" fg:w="90"/><text x="94.7193%" y="623.50"></text></g><g><title>__legitimize_path (272 samples, 0.06%)</title><rect x="94.4658%" y="629" width="0.0563%" height="15" fill="rgb(213,182,5)" fg:x="456059" fg:w="272"/><text x="94.7158%" y="639.50"></text></g><g><title>lockref_get_not_dead (165 samples, 0.03%)</title><rect x="94.4879%" y="613" width="0.0342%" height="15" fill="rgb(209,199,19)" fg:x="456166" fg:w="165"/><text x="94.7379%" y="623.50"></text></g><g><title>__legitimize_mnt (144 samples, 0.03%)</title><rect x="94.5331%" y="597" width="0.0298%" height="15" fill="rgb(236,224,42)" fg:x="456384" fg:w="144"/><text x="94.7831%" y="607.50"></text></g><g><title>legitimize_links (327 samples, 0.07%)</title><rect x="94.5221%" y="629" width="0.0677%" height="15" fill="rgb(246,226,29)" fg:x="456331" fg:w="327"/><text x="94.7721%" y="639.50"></text></g><g><title>__legitimize_path (302 samples, 0.06%)</title><rect x="94.5273%" y="613" width="0.0626%" height="15" fill="rgb(227,223,11)" fg:x="456356" fg:w="302"/><text x="94.7773%" y="623.50"></text></g><g><title>lockref_get_not_dead (129 samples, 0.03%)</title><rect x="94.5631%" y="597" width="0.0267%" height="15" fill="rgb(219,7,51)" fg:x="456529" fg:w="129"/><text x="94.8131%" y="607.50"></text></g><g><title>link_path_walk.part.0 (11,781 samples, 2.44%)</title><rect x="92.1512%" y="693" width="2.4403%" height="15" fill="rgb(245,167,10)" fg:x="444885" fg:w="11781"/><text x="92.4012%" y="703.50">li..</text></g><g><title>walk_component (8,198 samples, 1.70%)</title><rect x="92.8934%" y="677" width="1.6981%" height="15" fill="rgb(237,224,16)" fg:x="448468" fg:w="8198"/><text x="93.1434%" y="687.50"></text></g><g><title>step_into (3,573 samples, 0.74%)</title><rect x="93.8514%" y="661" width="0.7401%" height="15" fill="rgb(226,132,13)" fg:x="453093" fg:w="3573"/><text x="94.1014%" y="671.50"></text></g><g><title>try_to_unlazy (623 samples, 0.13%)</title><rect x="94.4625%" y="645" width="0.1290%" height="15" fill="rgb(214,140,3)" fg:x="456043" fg:w="623"/><text x="94.7125%" y="655.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="94.7114%" y="661" width="0.0232%" height="15" fill="rgb(221,177,4)" fg:x="457245" fg:w="112"/><text x="94.9614%" y="671.50"></text></g><g><title>__d_lookup (642 samples, 0.13%)</title><rect x="94.6025%" y="677" width="0.1330%" height="15" fill="rgb(238,139,3)" fg:x="456719" fg:w="642"/><text x="94.8525%" y="687.50"></text></g><g><title>__d_lookup_rcu (575 samples, 0.12%)</title><rect x="94.7355%" y="677" width="0.1191%" height="15" fill="rgb(216,17,39)" fg:x="457361" fg:w="575"/><text x="94.9855%" y="687.50"></text></g><g><title>lookup_fast (1,271 samples, 0.26%)</title><rect x="94.5915%" y="693" width="0.2633%" height="15" fill="rgb(238,120,9)" fg:x="456666" fg:w="1271"/><text x="94.8415%" y="703.50"></text></g><g><title>inode_permission.part.0 (189 samples, 0.04%)</title><rect x="94.9047%" y="677" width="0.0391%" height="15" fill="rgb(244,92,53)" fg:x="458178" fg:w="189"/><text x="95.1547%" y="687.50"></text></g><g><title>may_open (435 samples, 0.09%)</title><rect x="94.8548%" y="693" width="0.0901%" height="15" fill="rgb(224,148,33)" fg:x="457937" fg:w="435"/><text x="95.1048%" y="703.50"></text></g><g><title>page_put_link (55 samples, 0.01%)</title><rect x="94.9515%" y="693" width="0.0114%" height="15" fill="rgb(243,6,36)" fg:x="458404" fg:w="55"/><text x="95.2015%" y="703.50"></text></g><g><title>__fget_light (169 samples, 0.04%)</title><rect x="94.9732%" y="677" width="0.0350%" height="15" fill="rgb(230,102,11)" fg:x="458509" fg:w="169"/><text x="95.2232%" y="687.50"></text></g><g><title>__fget_files (159 samples, 0.03%)</title><rect x="94.9753%" y="661" width="0.0329%" height="15" fill="rgb(234,148,36)" fg:x="458519" fg:w="159"/><text x="95.2253%" y="671.50"></text></g><g><title>path_init (274 samples, 0.06%)</title><rect x="94.9629%" y="693" width="0.0568%" height="15" fill="rgb(251,153,25)" fg:x="458459" fg:w="274"/><text x="95.2129%" y="703.50"></text></g><g><title>fput_many (54 samples, 0.01%)</title><rect x="95.0085%" y="677" width="0.0112%" height="15" fill="rgb(215,129,8)" fg:x="458679" fg:w="54"/><text x="95.2585%" y="687.50"></text></g><g><title>atime_needs_update (232 samples, 0.05%)</title><rect x="95.1261%" y="677" width="0.0481%" height="15" fill="rgb(224,128,35)" fg:x="459247" fg:w="232"/><text x="95.3761%" y="687.50"></text></g><g><title>dput (98 samples, 0.02%)</title><rect x="95.1742%" y="677" width="0.0203%" height="15" fill="rgb(237,56,52)" fg:x="459479" fg:w="98"/><text x="95.4242%" y="687.50"></text></g><g><title>lockref_put_or_lock (77 samples, 0.02%)</title><rect x="95.1785%" y="661" width="0.0159%" height="15" fill="rgb(234,213,19)" fg:x="459500" fg:w="77"/><text x="95.4285%" y="671.50"></text></g><g><title>nd_jump_root (78 samples, 0.02%)</title><rect x="95.1945%" y="677" width="0.0162%" height="15" fill="rgb(252,82,23)" fg:x="459577" fg:w="78"/><text x="95.4445%" y="687.50"></text></g><g><title>kernel_init_free_pages (53 samples, 0.01%)</title><rect x="95.2411%" y="597" width="0.0110%" height="15" fill="rgb(254,201,21)" fg:x="459802" fg:w="53"/><text x="95.4911%" y="607.50"></text></g><g><title>clear_page_erms (52 samples, 0.01%)</title><rect x="95.2413%" y="581" width="0.0108%" height="15" fill="rgb(250,186,11)" fg:x="459803" fg:w="52"/><text x="95.4913%" y="591.50"></text></g><g><title>get_page_from_freelist (95 samples, 0.02%)</title><rect x="95.2326%" y="629" width="0.0197%" height="15" fill="rgb(211,174,5)" fg:x="459761" fg:w="95"/><text x="95.4826%" y="639.50"></text></g><g><title>prep_new_page (56 samples, 0.01%)</title><rect x="95.2407%" y="613" width="0.0116%" height="15" fill="rgb(214,121,10)" fg:x="459800" fg:w="56"/><text x="95.4907%" y="623.50"></text></g><g><title>__alloc_pages_nodemask (111 samples, 0.02%)</title><rect x="95.2297%" y="645" width="0.0230%" height="15" fill="rgb(241,66,2)" fg:x="459747" fg:w="111"/><text x="95.4797%" y="655.50"></text></g><g><title>__add_to_page_cache_locked (72 samples, 0.01%)</title><rect x="95.2527%" y="629" width="0.0149%" height="15" fill="rgb(220,167,19)" fg:x="459858" fg:w="72"/><text x="95.5027%" y="639.50"></text></g><g><title>add_to_page_cache_lru (99 samples, 0.02%)</title><rect x="95.2527%" y="645" width="0.0205%" height="15" fill="rgb(231,54,50)" fg:x="459858" fg:w="99"/><text x="95.5027%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (73 samples, 0.02%)</title><rect x="95.3250%" y="565" width="0.0151%" height="15" fill="rgb(239,217,53)" fg:x="460207" fg:w="73"/><text x="95.5750%" y="575.50"></text></g><g><title>find_extent_buffer (80 samples, 0.02%)</title><rect x="95.3455%" y="549" width="0.0166%" height="15" fill="rgb(248,8,0)" fg:x="460306" fg:w="80"/><text x="95.5955%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (111 samples, 0.02%)</title><rect x="95.3401%" y="565" width="0.0230%" height="15" fill="rgb(229,118,37)" fg:x="460280" fg:w="111"/><text x="95.5901%" y="575.50"></text></g><g><title>btrfs_lookup_file_extent (233 samples, 0.05%)</title><rect x="95.3156%" y="597" width="0.0483%" height="15" fill="rgb(253,223,43)" fg:x="460162" fg:w="233"/><text x="95.5656%" y="607.50"></text></g><g><title>btrfs_search_slot (232 samples, 0.05%)</title><rect x="95.3158%" y="581" width="0.0481%" height="15" fill="rgb(211,77,36)" fg:x="460163" fg:w="232"/><text x="95.5658%" y="591.50"></text></g><g><title>btrfs_get_extent (508 samples, 0.11%)</title><rect x="95.2858%" y="613" width="0.1052%" height="15" fill="rgb(219,3,53)" fg:x="460018" fg:w="508"/><text x="95.5358%" y="623.50"></text></g><g><title>btrfs_do_readpage (578 samples, 0.12%)</title><rect x="95.2750%" y="629" width="0.1197%" height="15" fill="rgb(244,45,42)" fg:x="459966" fg:w="578"/><text x="95.5250%" y="639.50"></text></g><g><title>btrfs_readpage (641 samples, 0.13%)</title><rect x="95.2748%" y="645" width="0.1328%" height="15" fill="rgb(225,95,27)" fg:x="459965" fg:w="641"/><text x="95.5248%" y="655.50"></text></g><g><title>btrfs_lock_and_flush_ordered_range (62 samples, 0.01%)</title><rect x="95.3948%" y="629" width="0.0128%" height="15" fill="rgb(207,74,8)" fg:x="460544" fg:w="62"/><text x="95.6448%" y="639.50"></text></g><g><title>do_read_cache_page (874 samples, 0.18%)</title><rect x="95.2286%" y="661" width="0.1810%" height="15" fill="rgb(243,63,36)" fg:x="459742" fg:w="874"/><text x="95.4786%" y="671.50"></text></g><g><title>page_get_link (1,325 samples, 0.27%)</title><rect x="95.2106%" y="677" width="0.2745%" height="15" fill="rgb(211,180,12)" fg:x="459655" fg:w="1325"/><text x="95.4606%" y="687.50"></text></g><g><title>pagecache_get_page (364 samples, 0.08%)</title><rect x="95.4097%" y="661" width="0.0754%" height="15" fill="rgb(254,166,49)" fg:x="460616" fg:w="364"/><text x="95.6597%" y="671.50"></text></g><g><title>find_get_entry (329 samples, 0.07%)</title><rect x="95.4169%" y="645" width="0.0681%" height="15" fill="rgb(205,19,0)" fg:x="460651" fg:w="329"/><text x="95.6669%" y="655.50"></text></g><g><title>xas_load (83 samples, 0.02%)</title><rect x="95.4679%" y="629" width="0.0172%" height="15" fill="rgb(224,172,32)" fg:x="460897" fg:w="83"/><text x="95.7179%" y="639.50"></text></g><g><title>xas_start (79 samples, 0.02%)</title><rect x="95.4687%" y="613" width="0.0164%" height="15" fill="rgb(254,136,30)" fg:x="460901" fg:w="79"/><text x="95.7187%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (49 samples, 0.01%)</title><rect x="95.5012%" y="613" width="0.0101%" height="15" fill="rgb(246,19,35)" fg:x="461058" fg:w="49"/><text x="95.7512%" y="623.50"></text></g><g><title>btrfs_delayed_update_inode (155 samples, 0.03%)</title><rect x="95.4952%" y="629" width="0.0321%" height="15" fill="rgb(219,24,36)" fg:x="461029" fg:w="155"/><text x="95.7452%" y="639.50"></text></g><g><title>btrfs_update_inode (164 samples, 0.03%)</title><rect x="95.4948%" y="645" width="0.0340%" height="15" fill="rgb(251,55,1)" fg:x="461027" fg:w="164"/><text x="95.7448%" y="655.50"></text></g><g><title>btrfs_dirty_inode (224 samples, 0.05%)</title><rect x="95.4886%" y="661" width="0.0464%" height="15" fill="rgb(218,117,39)" fg:x="460997" fg:w="224"/><text x="95.7386%" y="671.50"></text></g><g><title>touch_atime (250 samples, 0.05%)</title><rect x="95.4878%" y="677" width="0.0518%" height="15" fill="rgb(248,169,11)" fg:x="460993" fg:w="250"/><text x="95.7378%" y="687.50"></text></g><g><title>step_into (2,522 samples, 0.52%)</title><rect x="95.0201%" y="693" width="0.5224%" height="15" fill="rgb(244,40,44)" fg:x="458735" fg:w="2522"/><text x="95.2701%" y="703.50"></text></g><g><title>dput (172 samples, 0.04%)</title><rect x="95.5478%" y="677" width="0.0356%" height="15" fill="rgb(234,62,37)" fg:x="461283" fg:w="172"/><text x="95.7978%" y="687.50"></text></g><g><title>lockref_put_or_lock (120 samples, 0.02%)</title><rect x="95.5586%" y="661" width="0.0249%" height="15" fill="rgb(207,117,42)" fg:x="461335" fg:w="120"/><text x="95.8086%" y="671.50"></text></g><g><title>terminate_walk (263 samples, 0.05%)</title><rect x="95.5425%" y="693" width="0.0545%" height="15" fill="rgb(213,43,2)" fg:x="461257" fg:w="263"/><text x="95.7925%" y="703.50"></text></g><g><title>mntput_no_expire (54 samples, 0.01%)</title><rect x="95.5857%" y="677" width="0.0112%" height="15" fill="rgb(244,202,51)" fg:x="461466" fg:w="54"/><text x="95.8357%" y="687.50"></text></g><g><title>do_filp_open (19,771 samples, 4.10%)</title><rect x="91.5048%" y="725" width="4.0953%" height="15" fill="rgb(253,174,46)" fg:x="441764" fg:w="19771"/><text x="91.7548%" y="735.50">do_f..</text></g><g><title>path_openat (19,718 samples, 4.08%)</title><rect x="91.5158%" y="709" width="4.0843%" height="15" fill="rgb(251,23,1)" fg:x="441817" fg:w="19718"/><text x="91.7658%" y="719.50">path..</text></g><g><title>get_unused_fd_flags (54 samples, 0.01%)</title><rect x="95.6021%" y="725" width="0.0112%" height="15" fill="rgb(253,26,1)" fg:x="461545" fg:w="54"/><text x="95.8521%" y="735.50"></text></g><g><title>memset_erms (613 samples, 0.13%)</title><rect x="95.6585%" y="693" width="0.1270%" height="15" fill="rgb(216,89,31)" fg:x="461817" fg:w="613"/><text x="95.9085%" y="703.50"></text></g><g><title>kmem_cache_alloc (870 samples, 0.18%)</title><rect x="95.6249%" y="709" width="0.1802%" height="15" fill="rgb(209,109,5)" fg:x="461655" fg:w="870"/><text x="95.8749%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (95 samples, 0.02%)</title><rect x="95.7854%" y="693" width="0.0197%" height="15" fill="rgb(229,63,13)" fg:x="462430" fg:w="95"/><text x="96.0354%" y="703.50"></text></g><g><title>__check_heap_object (69 samples, 0.01%)</title><rect x="95.8668%" y="677" width="0.0143%" height="15" fill="rgb(238,137,54)" fg:x="462823" fg:w="69"/><text x="96.1168%" y="687.50"></text></g><g><title>__virt_addr_valid (164 samples, 0.03%)</title><rect x="95.8811%" y="677" width="0.0340%" height="15" fill="rgb(228,1,9)" fg:x="462892" fg:w="164"/><text x="96.1311%" y="687.50"></text></g><g><title>__check_object_size (298 samples, 0.06%)</title><rect x="95.8556%" y="693" width="0.0617%" height="15" fill="rgb(249,120,48)" fg:x="462769" fg:w="298"/><text x="96.1056%" y="703.50"></text></g><g><title>getname_flags.part.0 (1,458 samples, 0.30%)</title><rect x="95.6156%" y="725" width="0.3020%" height="15" fill="rgb(209,72,36)" fg:x="461610" fg:w="1458"/><text x="95.8656%" y="735.50"></text></g><g><title>strncpy_from_user (543 samples, 0.11%)</title><rect x="95.8051%" y="709" width="0.1125%" height="15" fill="rgb(247,98,49)" fg:x="462525" fg:w="543"/><text x="96.0551%" y="719.50"></text></g><g><title>kmem_cache_free (218 samples, 0.05%)</title><rect x="95.9176%" y="725" width="0.0452%" height="15" fill="rgb(233,75,36)" fg:x="463068" fg:w="218"/><text x="96.1676%" y="735.50"></text></g><g><title>__x64_sys_openat (22,014 samples, 4.56%)</title><rect x="91.4076%" y="757" width="4.5599%" height="15" fill="rgb(225,14,24)" fg:x="441295" fg:w="22014"/><text x="91.6576%" y="767.50">__x64..</text></g><g><title>do_sys_openat2 (21,964 samples, 4.55%)</title><rect x="91.4180%" y="741" width="4.5495%" height="15" fill="rgb(237,193,20)" fg:x="441345" fg:w="21964"/><text x="91.6680%" y="751.50">do_sy..</text></g><g><title>__fget_light (703 samples, 0.15%)</title><rect x="96.0909%" y="725" width="0.1456%" height="15" fill="rgb(239,122,19)" fg:x="463905" fg:w="703"/><text x="96.3409%" y="735.50"></text></g><g><title>__fget_files (624 samples, 0.13%)</title><rect x="96.1073%" y="709" width="0.1293%" height="15" fill="rgb(231,220,10)" fg:x="463984" fg:w="624"/><text x="96.3573%" y="719.50"></text></g><g><title>_cond_resched (70 samples, 0.01%)</title><rect x="96.3107%" y="709" width="0.0145%" height="15" fill="rgb(220,66,15)" fg:x="464966" fg:w="70"/><text x="96.5607%" y="719.50"></text></g><g><title>__fdget_pos (1,366 samples, 0.28%)</title><rect x="96.0427%" y="741" width="0.2829%" height="15" fill="rgb(215,171,52)" fg:x="463672" fg:w="1366"/><text x="96.2927%" y="751.50"></text></g><g><title>mutex_lock (429 samples, 0.09%)</title><rect x="96.2368%" y="725" width="0.0889%" height="15" fill="rgb(241,169,50)" fg:x="464609" fg:w="429"/><text x="96.4868%" y="735.50"></text></g><g><title>fput_many (339 samples, 0.07%)</title><rect x="96.3292%" y="741" width="0.0702%" height="15" fill="rgb(236,189,0)" fg:x="465055" fg:w="339"/><text x="96.5792%" y="751.50"></text></g><g><title>mutex_unlock (404 samples, 0.08%)</title><rect x="96.3994%" y="741" width="0.0837%" height="15" fill="rgb(217,147,20)" fg:x="465394" fg:w="404"/><text x="96.6494%" y="751.50"></text></g><g><title>__fsnotify_parent (503 samples, 0.10%)</title><rect x="96.6165%" y="725" width="0.1042%" height="15" fill="rgb(206,188,39)" fg:x="466442" fg:w="503"/><text x="96.8665%" y="735.50"></text></g><g><title>btrfs_file_read_iter (83 samples, 0.02%)</title><rect x="96.8039%" y="709" width="0.0172%" height="15" fill="rgb(227,118,25)" fg:x="467347" fg:w="83"/><text x="97.0539%" y="719.50"></text></g><g><title>_cond_resched (73 samples, 0.02%)</title><rect x="97.0674%" y="693" width="0.0151%" height="15" fill="rgb(248,171,40)" fg:x="468619" fg:w="73"/><text x="97.3174%" y="703.50"></text></g><g><title>_cond_resched (59 samples, 0.01%)</title><rect x="97.1968%" y="677" width="0.0122%" height="15" fill="rgb(251,90,54)" fg:x="469244" fg:w="59"/><text x="97.4468%" y="687.50"></text></g><g><title>exc_page_fault (77 samples, 0.02%)</title><rect x="97.9272%" y="645" width="0.0159%" height="15" fill="rgb(234,11,46)" fg:x="472770" fg:w="77"/><text x="98.1772%" y="655.50"></text></g><g><title>do_user_addr_fault (77 samples, 0.02%)</title><rect x="97.9272%" y="629" width="0.0159%" height="15" fill="rgb(229,134,13)" fg:x="472770" fg:w="77"/><text x="98.1772%" y="639.50"></text></g><g><title>handle_mm_fault (69 samples, 0.01%)</title><rect x="97.9289%" y="613" width="0.0143%" height="15" fill="rgb(223,129,3)" fg:x="472778" fg:w="69"/><text x="98.1789%" y="623.50"></text></g><g><title>asm_exc_page_fault (195 samples, 0.04%)</title><rect x="97.9030%" y="661" width="0.0404%" height="15" fill="rgb(221,124,13)" fg:x="472653" fg:w="195"/><text x="98.1530%" y="671.50"></text></g><g><title>copy_user_enhanced_fast_string (3,559 samples, 0.74%)</title><rect x="97.2095%" y="677" width="0.7372%" height="15" fill="rgb(234,3,18)" fg:x="469305" fg:w="3559"/><text x="97.4595%" y="687.50"></text></g><g><title>copy_page_to_iter (4,207 samples, 0.87%)</title><rect x="97.0840%" y="693" width="0.8714%" height="15" fill="rgb(249,199,20)" fg:x="468699" fg:w="4207"/><text x="97.3340%" y="703.50"></text></g><g><title>mark_page_accessed (72 samples, 0.01%)</title><rect x="97.9554%" y="693" width="0.0149%" height="15" fill="rgb(224,134,6)" fg:x="472906" fg:w="72"/><text x="98.2054%" y="703.50"></text></g><g><title>pagecache_get_page (1,620 samples, 0.34%)</title><rect x="97.9703%" y="693" width="0.3356%" height="15" fill="rgb(254,83,26)" fg:x="472978" fg:w="1620"/><text x="98.2203%" y="703.50"></text></g><g><title>find_get_entry (1,364 samples, 0.28%)</title><rect x="98.0233%" y="677" width="0.2825%" height="15" fill="rgb(217,88,9)" fg:x="473234" fg:w="1364"/><text x="98.2733%" y="687.50"></text></g><g><title>xas_load (398 samples, 0.08%)</title><rect x="98.2234%" y="661" width="0.0824%" height="15" fill="rgb(225,73,2)" fg:x="474200" fg:w="398"/><text x="98.4734%" y="671.50"></text></g><g><title>xas_start (268 samples, 0.06%)</title><rect x="98.2503%" y="645" width="0.0555%" height="15" fill="rgb(226,44,39)" fg:x="474330" fg:w="268"/><text x="98.5003%" y="655.50"></text></g><g><title>generic_file_buffered_read (7,727 samples, 1.60%)</title><rect x="96.8211%" y="709" width="1.6005%" height="15" fill="rgb(228,53,17)" fg:x="467430" fg:w="7727"/><text x="97.0711%" y="719.50"></text></g><g><title>touch_atime (559 samples, 0.12%)</title><rect x="98.3058%" y="693" width="0.1158%" height="15" fill="rgb(212,27,27)" fg:x="474598" fg:w="559"/><text x="98.5558%" y="703.50"></text></g><g><title>atime_needs_update (432 samples, 0.09%)</title><rect x="98.3321%" y="677" width="0.0895%" height="15" fill="rgb(241,50,6)" fg:x="474725" fg:w="432"/><text x="98.5821%" y="687.50"></text></g><g><title>current_time (255 samples, 0.05%)</title><rect x="98.3688%" y="661" width="0.0528%" height="15" fill="rgb(225,28,51)" fg:x="474902" fg:w="255"/><text x="98.6188%" y="671.50"></text></g><g><title>ktime_get_coarse_real_ts64 (61 samples, 0.01%)</title><rect x="98.4090%" y="645" width="0.0126%" height="15" fill="rgb(215,33,16)" fg:x="475096" fg:w="61"/><text x="98.6590%" y="655.50"></text></g><g><title>new_sync_read (8,265 samples, 1.71%)</title><rect x="96.7217%" y="725" width="1.7120%" height="15" fill="rgb(243,40,39)" fg:x="466950" fg:w="8265"/><text x="96.9717%" y="735.50"></text></g><g><title>iov_iter_init (57 samples, 0.01%)</title><rect x="98.4218%" y="709" width="0.0118%" height="15" fill="rgb(225,11,42)" fg:x="475158" fg:w="57"/><text x="98.6718%" y="719.50"></text></g><g><title>rw_verify_area (101 samples, 0.02%)</title><rect x="98.4336%" y="725" width="0.0209%" height="15" fill="rgb(241,220,38)" fg:x="475215" fg:w="101"/><text x="98.6836%" y="735.50"></text></g><g><title>aa_file_perm (159 samples, 0.03%)</title><rect x="98.5227%" y="693" width="0.0329%" height="15" fill="rgb(244,52,35)" fg:x="475645" fg:w="159"/><text x="98.7727%" y="703.50"></text></g><g><title>apparmor_file_permission (310 samples, 0.06%)</title><rect x="98.4916%" y="709" width="0.0642%" height="15" fill="rgb(246,42,46)" fg:x="475495" fg:w="310"/><text x="98.7416%" y="719.50"></text></g><g><title>security_file_permission (492 samples, 0.10%)</title><rect x="98.4546%" y="725" width="0.1019%" height="15" fill="rgb(205,184,13)" fg:x="475316" fg:w="492"/><text x="98.7046%" y="735.50"></text></g><g><title>ksys_read (12,379 samples, 2.56%)</title><rect x="95.9928%" y="757" width="2.5641%" height="15" fill="rgb(209,48,36)" fg:x="463431" fg:w="12379"/><text x="96.2428%" y="767.50">ks..</text></g><g><title>vfs_read (10,012 samples, 2.07%)</title><rect x="96.4831%" y="741" width="2.0738%" height="15" fill="rgb(244,34,51)" fg:x="465798" fg:w="10012"/><text x="96.7331%" y="751.50">v..</text></g><g><title>syscall_enter_from_user_mode (141 samples, 0.03%)</title><rect x="98.5583%" y="757" width="0.0292%" height="15" fill="rgb(221,107,33)" fg:x="475817" fg:w="141"/><text x="98.8083%" y="767.50"></text></g><g><title>perf_iterate_sb (59 samples, 0.01%)</title><rect x="98.5996%" y="693" width="0.0122%" height="15" fill="rgb(224,203,12)" fg:x="476016" fg:w="59"/><text x="98.8496%" y="703.50"></text></g><g><title>perf_iterate_ctx (49 samples, 0.01%)</title><rect x="98.6016%" y="677" width="0.0101%" height="15" fill="rgb(230,215,18)" fg:x="476026" fg:w="49"/><text x="98.8516%" y="687.50"></text></g><g><title>perf_event_mmap (72 samples, 0.01%)</title><rect x="98.5971%" y="709" width="0.0149%" height="15" fill="rgb(206,185,35)" fg:x="476004" fg:w="72"/><text x="98.8471%" y="719.50"></text></g><g><title>do_mmap (178 samples, 0.04%)</title><rect x="98.5875%" y="741" width="0.0369%" height="15" fill="rgb(228,140,34)" fg:x="475958" fg:w="178"/><text x="98.8375%" y="751.50"></text></g><g><title>mmap_region (146 samples, 0.03%)</title><rect x="98.5942%" y="725" width="0.0302%" height="15" fill="rgb(208,93,13)" fg:x="475990" fg:w="146"/><text x="98.8442%" y="735.50"></text></g><g><title>do_syscall_64 (44,743 samples, 9.27%)</title><rect x="89.3601%" y="773" width="9.2678%" height="15" fill="rgb(221,193,39)" fg:x="431410" fg:w="44743"/><text x="89.6101%" y="783.50">do_syscall_64</text></g><g><title>vm_mmap_pgoff (195 samples, 0.04%)</title><rect x="98.5875%" y="757" width="0.0404%" height="15" fill="rgb(241,132,34)" fg:x="475958" fg:w="195"/><text x="98.8375%" y="767.50"></text></g><g><title>arch_do_signal (63 samples, 0.01%)</title><rect x="98.7015%" y="741" width="0.0130%" height="15" fill="rgb(221,141,10)" fg:x="476508" fg:w="63"/><text x="98.9515%" y="751.50"></text></g><g><title>get_signal (63 samples, 0.01%)</title><rect x="98.7015%" y="725" width="0.0130%" height="15" fill="rgb(226,90,31)" fg:x="476508" fg:w="63"/><text x="98.9515%" y="735.50"></text></g><g><title>fpregs_assert_state_consistent (107 samples, 0.02%)</title><rect x="98.7187%" y="741" width="0.0222%" height="15" fill="rgb(243,75,5)" fg:x="476591" fg:w="107"/><text x="98.9687%" y="751.50"></text></g><g><title>switch_fpu_return (71 samples, 0.01%)</title><rect x="98.7495%" y="741" width="0.0147%" height="15" fill="rgb(227,156,21)" fg:x="476740" fg:w="71"/><text x="98.9995%" y="751.50"></text></g><g><title>btrfs_release_file (166 samples, 0.03%)</title><rect x="98.8222%" y="709" width="0.0344%" height="15" fill="rgb(250,195,8)" fg:x="477091" fg:w="166"/><text x="99.0722%" y="719.50"></text></g><g><title>lockref_put_or_lock (68 samples, 0.01%)</title><rect x="98.8661%" y="693" width="0.0141%" height="15" fill="rgb(220,134,5)" fg:x="477303" fg:w="68"/><text x="99.1161%" y="703.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="98.8682%" y="677" width="0.0120%" height="15" fill="rgb(246,106,34)" fg:x="477313" fg:w="58"/><text x="99.1182%" y="687.50"></text></g><g><title>dput (117 samples, 0.02%)</title><rect x="98.8566%" y="709" width="0.0242%" height="15" fill="rgb(205,1,4)" fg:x="477257" fg:w="117"/><text x="99.1066%" y="719.50"></text></g><g><title>kmem_cache_free (125 samples, 0.03%)</title><rect x="98.8811%" y="709" width="0.0259%" height="15" fill="rgb(224,151,29)" fg:x="477375" fg:w="125"/><text x="99.1311%" y="719.50"></text></g><g><title>__fput (750 samples, 0.16%)</title><rect x="98.7825%" y="725" width="0.1554%" height="15" fill="rgb(251,196,0)" fg:x="476899" fg:w="750"/><text x="99.0325%" y="735.50"></text></g><g><title>security_file_free (77 samples, 0.02%)</title><rect x="98.9219%" y="709" width="0.0159%" height="15" fill="rgb(212,127,0)" fg:x="477572" fg:w="77"/><text x="99.1719%" y="719.50"></text></g><g><title>apparmor_file_free_security (55 samples, 0.01%)</title><rect x="98.9264%" y="693" width="0.0114%" height="15" fill="rgb(236,71,53)" fg:x="477594" fg:w="55"/><text x="99.1764%" y="703.50"></text></g><g><title>_raw_spin_lock_irq (61 samples, 0.01%)</title><rect x="98.9403%" y="725" width="0.0126%" height="15" fill="rgb(227,99,0)" fg:x="477661" fg:w="61"/><text x="99.1903%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46,886 samples, 9.71%)</title><rect x="89.2955%" y="789" width="9.7117%" height="15" fill="rgb(239,89,21)" fg:x="431098" fg:w="46886"/><text x="89.5455%" y="799.50">entry_SYSCALL_..</text></g><g><title>syscall_exit_to_user_mode (1,831 samples, 0.38%)</title><rect x="98.6279%" y="773" width="0.3793%" height="15" fill="rgb(243,122,19)" fg:x="476153" fg:w="1831"/><text x="98.8779%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (1,699 samples, 0.35%)</title><rect x="98.6553%" y="757" width="0.3519%" height="15" fill="rgb(229,192,45)" fg:x="476285" fg:w="1699"/><text x="98.9053%" y="767.50"></text></g><g><title>task_work_run (1,173 samples, 0.24%)</title><rect x="98.7642%" y="741" width="0.2430%" height="15" fill="rgb(235,165,35)" fg:x="476811" fg:w="1173"/><text x="99.0142%" y="751.50"></text></g><g><title>call_rcu (261 samples, 0.05%)</title><rect x="98.9531%" y="725" width="0.0541%" height="15" fill="rgb(253,202,0)" fg:x="477723" fg:w="261"/><text x="99.2031%" y="735.50"></text></g><g><title>rcu_segcblist_enqueue (144 samples, 0.03%)</title><rect x="98.9774%" y="709" width="0.0298%" height="15" fill="rgb(235,51,20)" fg:x="477840" fg:w="144"/><text x="99.2274%" y="719.50"></text></g><g><title>error_entry (218 samples, 0.05%)</title><rect x="99.0072%" y="789" width="0.0452%" height="15" fill="rgb(218,95,46)" fg:x="477984" fg:w="218"/><text x="99.2572%" y="799.50"></text></g><g><title>sync_regs (201 samples, 0.04%)</title><rect x="99.0107%" y="773" width="0.0416%" height="15" fill="rgb(212,81,10)" fg:x="478001" fg:w="201"/><text x="99.2607%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (1,787 samples, 0.37%)</title><rect x="99.0884%" y="741" width="0.3702%" height="15" fill="rgb(240,59,0)" fg:x="478376" fg:w="1787"/><text x="99.3384%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,740 samples, 0.36%)</title><rect x="99.0981%" y="725" width="0.3604%" height="15" fill="rgb(212,191,42)" fg:x="478423" fg:w="1740"/><text x="99.3481%" y="735.50"></text></g><g><title>native_write_msr (1,734 samples, 0.36%)</title><rect x="99.0994%" y="709" width="0.3592%" height="15" fill="rgb(233,140,3)" fg:x="478429" fg:w="1734"/><text x="99.3494%" y="719.50"></text></g><g><title>schedule_tail (1,958 samples, 0.41%)</title><rect x="99.0621%" y="773" width="0.4056%" height="15" fill="rgb(215,69,23)" fg:x="478249" fg:w="1958"/><text x="99.3121%" y="783.50"></text></g><g><title>finish_task_switch (1,948 samples, 0.40%)</title><rect x="99.0642%" y="757" width="0.4035%" height="15" fill="rgb(240,202,20)" fg:x="478259" fg:w="1948"/><text x="99.3142%" y="767.50"></text></g><g><title>ret_from_fork (2,001 samples, 0.41%)</title><rect x="99.0586%" y="789" width="0.4145%" height="15" fill="rgb(209,146,50)" fg:x="478232" fg:w="2001"/><text x="99.3086%" y="799.50"></text></g><g><title>syscall_return_via_sysret (331 samples, 0.07%)</title><rect x="99.4730%" y="789" width="0.0686%" height="15" fill="rgb(253,102,54)" fg:x="480233" fg:w="331"/><text x="99.7230%" y="799.50"></text></g><g><title>[zig] (81,242 samples, 16.83%)</title><rect x="82.7138%" y="805" width="16.8281%" height="15" fill="rgb(250,173,47)" fg:x="399323" fg:w="81242"/><text x="82.9638%" y="815.50">[zig]</text></g><g><title>asm_exc_page_fault (596 samples, 0.12%)</title><rect x="99.5429%" y="805" width="0.1235%" height="15" fill="rgb(232,142,7)" fg:x="480570" fg:w="596"/><text x="99.7929%" y="815.50"></text></g><g><title>tlb_finish_mmu (54 samples, 0.01%)</title><rect x="99.7098%" y="661" width="0.0112%" height="15" fill="rgb(230,157,47)" fg:x="481376" fg:w="54"/><text x="99.9598%" y="671.50"></text></g><g><title>page_remove_rmap (96 samples, 0.02%)</title><rect x="99.7434%" y="629" width="0.0199%" height="15" fill="rgb(214,177,35)" fg:x="481538" fg:w="96"/><text x="99.9934%" y="639.50"></text></g><g><title>exit_mmap (282 samples, 0.06%)</title><rect x="99.7084%" y="677" width="0.0584%" height="15" fill="rgb(234,119,46)" fg:x="481369" fg:w="282"/><text x="99.9584%" y="687.50"></text></g><g><title>unmap_vmas (221 samples, 0.05%)</title><rect x="99.7210%" y="661" width="0.0458%" height="15" fill="rgb(241,180,50)" fg:x="481430" fg:w="221"/><text x="99.9710%" y="671.50"></text></g><g><title>unmap_page_range (221 samples, 0.05%)</title><rect x="99.7210%" y="645" width="0.0458%" height="15" fill="rgb(221,54,25)" fg:x="481430" fg:w="221"/><text x="99.9710%" y="655.50"></text></g><g><title>mmput (285 samples, 0.06%)</title><rect x="99.7081%" y="693" width="0.0590%" height="15" fill="rgb(209,157,44)" fg:x="481368" fg:w="285"/><text x="99.9581%" y="703.50"></text></g><g><title>begin_new_exec (292 samples, 0.06%)</title><rect x="99.7073%" y="709" width="0.0605%" height="15" fill="rgb(246,115,41)" fg:x="481364" fg:w="292"/><text x="99.9573%" y="719.50"></text></g><g><title>bprm_execve (345 samples, 0.07%)</title><rect x="99.7050%" y="741" width="0.0715%" height="15" fill="rgb(229,86,1)" fg:x="481353" fg:w="345"/><text x="99.9550%" y="751.50"></text></g><g><title>load_elf_binary (345 samples, 0.07%)</title><rect x="99.7050%" y="725" width="0.0715%" height="15" fill="rgb(240,108,53)" fg:x="481353" fg:w="345"/><text x="99.9550%" y="735.50"></text></g><g><title>__x64_sys_execve (347 samples, 0.07%)</title><rect x="99.7050%" y="773" width="0.0719%" height="15" fill="rgb(227,134,2)" fg:x="481353" fg:w="347"/><text x="99.9550%" y="783.50"></text></g><g><title>do_execveat_common (347 samples, 0.07%)</title><rect x="99.7050%" y="757" width="0.0719%" height="15" fill="rgb(213,129,25)" fg:x="481353" fg:w="347"/><text x="99.9550%" y="767.50"></text></g><g><title>tlb_finish_mmu (75 samples, 0.02%)</title><rect x="99.7823%" y="693" width="0.0155%" height="15" fill="rgb(226,35,21)" fg:x="481726" fg:w="75"/><text x="100.0323%" y="703.50"></text></g><g><title>release_pages (52 samples, 0.01%)</title><rect x="99.7871%" y="677" width="0.0108%" height="15" fill="rgb(208,129,26)" fg:x="481749" fg:w="52"/><text x="100.0371%" y="687.50"></text></g><g><title>page_remove_rmap (89 samples, 0.02%)</title><rect x="99.8281%" y="661" width="0.0184%" height="15" fill="rgb(224,83,6)" fg:x="481947" fg:w="89"/><text x="100.0781%" y="671.50"></text></g><g><title>exit_mmap (359 samples, 0.07%)</title><rect x="99.7802%" y="709" width="0.0744%" height="15" fill="rgb(227,52,39)" fg:x="481716" fg:w="359"/><text x="100.0302%" y="719.50"></text></g><g><title>unmap_vmas (274 samples, 0.06%)</title><rect x="99.7978%" y="693" width="0.0568%" height="15" fill="rgb(241,30,17)" fg:x="481801" fg:w="274"/><text x="100.0478%" y="703.50"></text></g><g><title>unmap_page_range (273 samples, 0.06%)</title><rect x="99.7980%" y="677" width="0.0565%" height="15" fill="rgb(246,186,42)" fg:x="481802" fg:w="273"/><text x="100.0480%" y="687.50"></text></g><g><title>__x64_sys_exit_group (370 samples, 0.08%)</title><rect x="99.7782%" y="773" width="0.0766%" height="15" fill="rgb(221,169,15)" fg:x="481706" fg:w="370"/><text x="100.0282%" y="783.50"></text></g><g><title>do_group_exit (370 samples, 0.08%)</title><rect x="99.7782%" y="757" width="0.0766%" height="15" fill="rgb(235,108,21)" fg:x="481706" fg:w="370"/><text x="100.0282%" y="767.50"></text></g><g><title>do_exit (370 samples, 0.08%)</title><rect x="99.7782%" y="741" width="0.0766%" height="15" fill="rgb(219,148,30)" fg:x="481706" fg:w="370"/><text x="100.0282%" y="751.50"></text></g><g><title>mmput (360 samples, 0.07%)</title><rect x="99.7802%" y="725" width="0.0746%" height="15" fill="rgb(220,109,5)" fg:x="481716" fg:w="360"/><text x="100.0302%" y="735.50"></text></g><g><title>do_syscall_64 (748 samples, 0.15%)</title><rect x="99.7048%" y="789" width="0.1549%" height="15" fill="rgb(213,203,48)" fg:x="481352" fg:w="748"/><text x="99.9548%" y="799.50"></text></g><g><title>tlb_finish_mmu (59 samples, 0.01%)</title><rect x="99.8668%" y="661" width="0.0122%" height="15" fill="rgb(244,71,33)" fg:x="482134" fg:w="59"/><text x="100.1168%" y="671.50"></text></g><g><title>page_remove_rmap (119 samples, 0.02%)</title><rect x="99.9000%" y="629" width="0.0246%" height="15" fill="rgb(209,23,2)" fg:x="482294" fg:w="119"/><text x="100.1500%" y="639.50"></text></g><g><title>mmput (299 samples, 0.06%)</title><rect x="99.8662%" y="693" width="0.0619%" height="15" fill="rgb(219,97,7)" fg:x="482131" fg:w="299"/><text x="100.1162%" y="703.50"></text></g><g><title>exit_mmap (298 samples, 0.06%)</title><rect x="99.8664%" y="677" width="0.0617%" height="15" fill="rgb(216,161,23)" fg:x="482132" fg:w="298"/><text x="100.1164%" y="687.50"></text></g><g><title>unmap_vmas (237 samples, 0.05%)</title><rect x="99.8790%" y="661" width="0.0491%" height="15" fill="rgb(207,45,42)" fg:x="482193" fg:w="237"/><text x="100.1290%" y="671.50"></text></g><g><title>unmap_page_range (237 samples, 0.05%)</title><rect x="99.8790%" y="645" width="0.0491%" height="15" fill="rgb(241,61,4)" fg:x="482193" fg:w="237"/><text x="100.1290%" y="655.50"></text></g><g><title>arch_do_signal (336 samples, 0.07%)</title><rect x="99.8598%" y="757" width="0.0696%" height="15" fill="rgb(236,170,1)" fg:x="482100" fg:w="336"/><text x="100.1098%" y="767.50"></text></g><g><title>get_signal (336 samples, 0.07%)</title><rect x="99.8598%" y="741" width="0.0696%" height="15" fill="rgb(239,72,5)" fg:x="482100" fg:w="336"/><text x="100.1098%" y="751.50"></text></g><g><title>do_group_exit (336 samples, 0.07%)</title><rect x="99.8598%" y="725" width="0.0696%" height="15" fill="rgb(214,13,50)" fg:x="482100" fg:w="336"/><text x="100.1098%" y="735.50"></text></g><g><title>do_exit (336 samples, 0.07%)</title><rect x="99.8598%" y="709" width="0.0696%" height="15" fill="rgb(224,88,9)" fg:x="482100" fg:w="336"/><text x="100.1098%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,268 samples, 0.26%)</title><rect x="99.6669%" y="805" width="0.2626%" height="15" fill="rgb(238,192,34)" fg:x="481169" fg:w="1268"/><text x="99.9169%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (337 samples, 0.07%)</title><rect x="99.8598%" y="789" width="0.0698%" height="15" fill="rgb(217,203,50)" fg:x="482100" fg:w="337"/><text x="100.1098%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (337 samples, 0.07%)</title><rect x="99.8598%" y="773" width="0.0698%" height="15" fill="rgb(241,123,32)" fg:x="482100" fg:w="337"/><text x="100.1098%" y="783.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (253 samples, 0.05%)</title><rect x="99.9296%" y="805" width="0.0524%" height="15" fill="rgb(248,151,39)" fg:x="482437" fg:w="253"/><text x="100.1796%" y="815.50"></text></g><g><title>all (482,777 samples, 100%)</title><rect x="0.0000%" y="837" width="100.0000%" height="15" fill="rgb(208,89,6)" fg:x="0" fg:w="482777"/><text x="0.2500%" y="847.50"></text></g><g><title>zig (83,563 samples, 17.31%)</title><rect x="82.6912%" y="821" width="17.3088%" height="15" fill="rgb(254,43,26)" fg:x="399214" fg:w="83563"/><text x="82.9412%" y="831.50">zig</text></g><g><title>syscall_return_via_sysret (69 samples, 0.01%)</title><rect x="99.9857%" y="805" width="0.0143%" height="15" fill="rgb(216,158,13)" fg:x="482708" fg:w="69"/><text x="100.2357%" y="815.50"></text></g></svg></svg> +\ No newline at end of file diff --git a/results/llvm-sysroot-j8.svg b/results/llvm-sysroot-j8.svg @@ -0,0 +1,491 @@ +<?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="694" onload="init(evt)" viewBox="0 0 1200 694" 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="694" 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="677.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="677.00"> </text><svg id="frames" x="10" width="1180" total_samples="2403600"><g><title>[anon] (1,369 samples, 0.06%)</title><rect x="0.0055%" y="613" width="0.0570%" height="15" fill="rgb(227,0,7)" fg:x="131" fg:w="1369"/><text x="0.2555%" y="623.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (406 samples, 0.02%)</title><rect x="0.0876%" y="421" width="0.0169%" height="15" fill="rgb(217,0,24)" fg:x="2106" fg:w="406"/><text x="0.3376%" y="431.50"></text></g><g><title>GraphBuilder::invoke (253 samples, 0.01%)</title><rect x="0.1699%" y="117" width="0.0105%" height="15" fill="rgb(221,193,54)" fg:x="4084" fg:w="253"/><text x="0.4199%" y="127.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (339 samples, 0.01%)</title><rect x="0.1671%" y="149" width="0.0141%" height="15" fill="rgb(248,212,6)" fg:x="4017" fg:w="339"/><text x="0.4171%" y="159.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (336 samples, 0.01%)</title><rect x="0.1672%" y="133" width="0.0140%" height="15" fill="rgb(208,68,35)" fg:x="4020" fg:w="336"/><text x="0.4172%" y="143.50"></text></g><g><title>GraphBuilder::try_inline_full (442 samples, 0.02%)</title><rect x="0.1667%" y="165" width="0.0184%" height="15" fill="rgb(232,128,0)" fg:x="4006" fg:w="442"/><text x="0.4167%" y="175.50"></text></g><g><title>GraphBuilder::try_inline (474 samples, 0.02%)</title><rect x="0.1665%" y="181" width="0.0197%" height="15" fill="rgb(207,160,47)" fg:x="4003" fg:w="474"/><text x="0.4165%" y="191.50"></text></g><g><title>GraphBuilder::invoke (633 samples, 0.03%)</title><rect x="0.1655%" y="197" width="0.0263%" height="15" fill="rgb(228,23,34)" fg:x="3977" fg:w="633"/><text x="0.4155%" y="207.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (841 samples, 0.03%)</title><rect x="0.1586%" y="229" width="0.0350%" height="15" fill="rgb(218,30,26)" fg:x="3811" fg:w="841"/><text x="0.4086%" y="239.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (832 samples, 0.03%)</title><rect x="0.1589%" y="213" width="0.0346%" height="15" fill="rgb(220,122,19)" fg:x="3820" fg:w="832"/><text x="0.4089%" y="223.50"></text></g><g><title>GraphBuilder::try_inline_full (1,066 samples, 0.04%)</title><rect x="0.1574%" y="245" width="0.0444%" height="15" fill="rgb(250,228,42)" fg:x="3783" fg:w="1066"/><text x="0.4074%" y="255.50"></text></g><g><title>GraphBuilder::try_inline (1,112 samples, 0.05%)</title><rect x="0.1573%" y="261" width="0.0463%" height="15" fill="rgb(240,193,28)" fg:x="3780" fg:w="1112"/><text x="0.4073%" y="271.50"></text></g><g><title>GraphBuilder::invoke (1,401 samples, 0.06%)</title><rect x="0.1556%" y="277" width="0.0583%" height="15" fill="rgb(216,20,37)" fg:x="3740" fg:w="1401"/><text x="0.4056%" y="287.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,790 samples, 0.07%)</title><rect x="0.1427%" y="309" width="0.0745%" height="15" fill="rgb(206,188,39)" fg:x="3430" fg:w="1790"/><text x="0.3927%" y="319.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,774 samples, 0.07%)</title><rect x="0.1434%" y="293" width="0.0738%" height="15" fill="rgb(217,207,13)" fg:x="3446" fg:w="1774"/><text x="0.3934%" y="303.50"></text></g><g><title>GraphBuilder::try_inline_full (2,229 samples, 0.09%)</title><rect x="0.1397%" y="325" width="0.0927%" height="15" fill="rgb(231,73,38)" fg:x="3359" fg:w="2229"/><text x="0.3897%" y="335.50"></text></g><g><title>GraphBuilder::try_inline (2,251 samples, 0.09%)</title><rect x="0.1393%" y="341" width="0.0937%" height="15" fill="rgb(225,20,46)" fg:x="3349" fg:w="2251"/><text x="0.3893%" y="351.50"></text></g><g><title>ciEnv::get_method_by_index_impl (322 samples, 0.01%)</title><rect x="0.2369%" y="325" width="0.0134%" height="15" fill="rgb(210,31,41)" fg:x="5695" fg:w="322"/><text x="0.4869%" y="335.50"></text></g><g><title>ciBytecodeStream::get_method (351 samples, 0.01%)</title><rect x="0.2359%" y="341" width="0.0146%" height="15" fill="rgb(221,200,47)" fg:x="5669" fg:w="351"/><text x="0.4859%" y="351.50"></text></g><g><title>GraphBuilder::invoke (2,837 samples, 0.12%)</title><rect x="0.1355%" y="357" width="0.1180%" height="15" fill="rgb(226,26,5)" fg:x="3256" fg:w="2837"/><text x="0.3855%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,354 samples, 0.14%)</title><rect x="0.1175%" y="373" width="0.1395%" height="15" fill="rgb(249,33,26)" fg:x="2824" fg:w="3354"/><text x="0.3675%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,396 samples, 0.14%)</title><rect x="0.1162%" y="389" width="0.1413%" height="15" fill="rgb(235,183,28)" fg:x="2794" fg:w="3396"/><text x="0.3662%" y="399.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,728 samples, 0.16%)</title><rect x="0.1046%" y="405" width="0.1551%" height="15" fill="rgb(221,5,38)" fg:x="2515" fg:w="3728"/><text x="0.3546%" y="415.50"></text></g><g><title>IR::IR (3,742 samples, 0.16%)</title><rect x="0.1045%" y="421" width="0.1557%" height="15" fill="rgb(247,18,42)" fg:x="2512" fg:w="3742"/><text x="0.3545%" y="431.50"></text></g><g><title>Compilation::build_hir (4,705 samples, 0.20%)</title><rect x="0.0873%" y="437" width="0.1957%" height="15" fill="rgb(241,131,45)" fg:x="2098" fg:w="4705"/><text x="0.3373%" y="447.50"></text></g><g><title>LIR_Assembler::emit_code (673 samples, 0.03%)</title><rect x="0.2837%" y="421" width="0.0280%" height="15" fill="rgb(249,31,29)" fg:x="6820" fg:w="673"/><text x="0.5337%" y="431.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (382 samples, 0.02%)</title><rect x="0.3145%" y="421" width="0.0159%" height="15" fill="rgb(225,111,53)" fg:x="7559" fg:w="382"/><text x="0.5645%" y="431.50"></text></g><g><title>Compilation::emit_code_body (1,150 samples, 0.05%)</title><rect x="0.2830%" y="437" width="0.0478%" height="15" fill="rgb(238,160,17)" fg:x="6803" fg:w="1150"/><text x="0.5330%" y="447.50"></text></g><g><title>LIRGenerator::do_Goto (260 samples, 0.01%)</title><rect x="0.3380%" y="389" width="0.0108%" height="15" fill="rgb(214,148,48)" fg:x="8124" fg:w="260"/><text x="0.5880%" y="399.50"></text></g><g><title>LIRGenerator::block_do (927 samples, 0.04%)</title><rect x="0.3311%" y="405" width="0.0386%" height="15" fill="rgb(232,36,49)" fg:x="7959" fg:w="927"/><text x="0.5811%" y="415.50"></text></g><g><title>BlockList::iterate_forward (932 samples, 0.04%)</title><rect x="0.3310%" y="421" width="0.0388%" height="15" fill="rgb(209,103,24)" fg:x="7955" fg:w="932"/><text x="0.5810%" y="431.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (451 samples, 0.02%)</title><rect x="0.3830%" y="357" width="0.0188%" height="15" fill="rgb(229,88,8)" fg:x="9205" fg:w="451"/><text x="0.6330%" y="367.50"></text></g><g><title>LinearScanWalker::activate_current (711 samples, 0.03%)</title><rect x="0.3818%" y="373" width="0.0296%" height="15" fill="rgb(213,181,19)" fg:x="9176" fg:w="711"/><text x="0.6318%" y="383.50"></text></g><g><title>IntervalWalker::walk_to (915 samples, 0.04%)</title><rect x="0.3734%" y="389" width="0.0381%" height="15" fill="rgb(254,191,54)" fg:x="8974" fg:w="915"/><text x="0.6234%" y="399.50"></text></g><g><title>LinearScan::allocate_registers (999 samples, 0.04%)</title><rect x="0.3731%" y="405" width="0.0416%" height="15" fill="rgb(241,83,37)" fg:x="8969" fg:w="999"/><text x="0.6231%" y="415.50"></text></g><g><title>LinearScan::assign_reg_num (708 samples, 0.03%)</title><rect x="0.4150%" y="389" width="0.0295%" height="15" fill="rgb(233,36,39)" fg:x="9976" fg:w="708"/><text x="0.6650%" y="399.50"></text></g><g><title>LinearScan::assign_reg_num (745 samples, 0.03%)</title><rect x="0.4147%" y="405" width="0.0310%" height="15" fill="rgb(226,3,54)" fg:x="9968" fg:w="745"/><text x="0.6647%" y="415.50"></text></g><g><title>LinearScan::build_intervals (813 samples, 0.03%)</title><rect x="0.4457%" y="405" width="0.0338%" height="15" fill="rgb(245,192,40)" fg:x="10713" fg:w="813"/><text x="0.6957%" y="415.50"></text></g><g><title>LinearScan::compute_local_live_sets (291 samples, 0.01%)</title><rect x="0.4823%" y="405" width="0.0121%" height="15" fill="rgb(238,167,29)" fg:x="11592" fg:w="291"/><text x="0.7323%" y="415.50"></text></g><g><title>LinearScan::do_linear_scan (3,317 samples, 0.14%)</title><rect x="0.3720%" y="421" width="0.1380%" height="15" fill="rgb(232,182,51)" fg:x="8941" fg:w="3317"/><text x="0.6220%" y="431.50"></text></g><g><title>Compilation::emit_lir (4,310 samples, 0.18%)</title><rect x="0.3309%" y="437" width="0.1793%" height="15" fill="rgb(231,60,39)" fg:x="7953" fg:w="4310"/><text x="0.5809%" y="447.50"></text></g><g><title>Compilation::compile_java_method (10,315 samples, 0.43%)</title><rect x="0.0869%" y="453" width="0.4291%" height="15" fill="rgb(208,69,12)" fg:x="2089" fg:w="10315"/><text x="0.3369%" y="463.50"></text></g><g><title>nmethod::nmethod (281 samples, 0.01%)</title><rect x="0.5307%" y="421" width="0.0117%" height="15" fill="rgb(235,93,37)" fg:x="12756" fg:w="281"/><text x="0.7807%" y="431.50"></text></g><g><title>nmethod::new_nmethod (517 samples, 0.02%)</title><rect x="0.5209%" y="437" width="0.0215%" height="15" fill="rgb(213,116,39)" fg:x="12521" fg:w="517"/><text x="0.7709%" y="447.50"></text></g><g><title>ciEnv::register_method (581 samples, 0.02%)</title><rect x="0.5183%" y="453" width="0.0242%" height="15" fill="rgb(222,207,29)" fg:x="12458" fg:w="581"/><text x="0.7683%" y="463.50"></text></g><g><title>Compilation::compile_method (10,961 samples, 0.46%)</title><rect x="0.0866%" y="469" width="0.4560%" height="15" fill="rgb(206,96,30)" fg:x="2082" fg:w="10961"/><text x="0.3366%" y="479.50"></text></g><g><title>Compilation::Compilation (10,979 samples, 0.46%)</title><rect x="0.0862%" y="485" width="0.4568%" height="15" fill="rgb(218,138,4)" fg:x="2073" fg:w="10979"/><text x="0.3362%" y="495.50"></text></g><g><title>Compiler::compile_method (11,000 samples, 0.46%)</title><rect x="0.0854%" y="501" width="0.4576%" height="15" fill="rgb(250,191,14)" fg:x="2053" fg:w="11000"/><text x="0.3354%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,538 samples, 0.48%)</title><rect x="0.0752%" y="517" width="0.4800%" height="15" fill="rgb(239,60,40)" fg:x="1808" fg:w="11538"/><text x="0.3252%" y="527.50"></text></g><g><title>CompileQueue::get (262 samples, 0.01%)</title><rect x="0.5574%" y="517" width="0.0109%" height="15" fill="rgb(206,27,48)" fg:x="13397" fg:w="262"/><text x="0.8074%" y="527.50"></text></g><g><title>__GI___clone (11,883 samples, 0.49%)</title><rect x="0.0744%" y="613" width="0.4944%" height="15" fill="rgb(225,35,8)" fg:x="1789" fg:w="11883"/><text x="0.3244%" y="623.50"></text></g><g><title>start_thread (11,874 samples, 0.49%)</title><rect x="0.0748%" y="597" width="0.4940%" height="15" fill="rgb(250,213,24)" fg:x="1798" fg:w="11874"/><text x="0.3248%" y="607.50"></text></g><g><title>thread_native_entry (11,874 samples, 0.49%)</title><rect x="0.0748%" y="581" width="0.4940%" height="15" fill="rgb(247,123,22)" fg:x="1798" fg:w="11874"/><text x="0.3248%" y="591.50"></text></g><g><title>Thread::call_run (11,873 samples, 0.49%)</title><rect x="0.0748%" y="565" width="0.4940%" height="15" fill="rgb(231,138,38)" fg:x="1799" fg:w="11873"/><text x="0.3248%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (11,871 samples, 0.49%)</title><rect x="0.0749%" y="549" width="0.4939%" height="15" fill="rgb(231,145,46)" fg:x="1801" fg:w="11871"/><text x="0.3249%" y="559.50"></text></g><g><title>CompileBroker::compiler_thread_loop (11,871 samples, 0.49%)</title><rect x="0.0749%" y="533" width="0.4939%" height="15" fill="rgb(251,118,11)" fg:x="1801" fg:w="11871"/><text x="0.3249%" y="543.50"></text></g><g><title>C1_CompilerThre (13,676 samples, 0.57%)</title><rect x="0.0027%" y="629" width="0.5690%" height="15" fill="rgb(217,147,25)" fg:x="64" fg:w="13676"/><text x="0.2527%" y="639.50"></text></g><g><title>_dl_update_slotinfo (271 samples, 0.01%)</title><rect x="0.7133%" y="597" width="0.0113%" height="15" fill="rgb(247,81,37)" fg:x="17146" fg:w="271"/><text x="0.9633%" y="607.50"></text></g><g><title>[anon] (4,073 samples, 0.17%)</title><rect x="0.5878%" y="613" width="0.1695%" height="15" fill="rgb(209,12,38)" fg:x="14129" fg:w="4073"/><text x="0.8378%" y="623.50"></text></g><g><title>Parse::do_one_block (389 samples, 0.02%)</title><rect x="0.7968%" y="229" width="0.0162%" height="15" fill="rgb(227,1,9)" fg:x="19151" fg:w="389"/><text x="1.0468%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (381 samples, 0.02%)</title><rect x="0.7971%" y="213" width="0.0159%" height="15" fill="rgb(248,47,43)" fg:x="19159" fg:w="381"/><text x="1.0471%" y="223.50"></text></g><g><title>Parse::do_all_blocks (400 samples, 0.02%)</title><rect x="0.7967%" y="245" width="0.0166%" height="15" fill="rgb(221,10,30)" fg:x="19149" fg:w="400"/><text x="1.0467%" y="255.50"></text></g><g><title>ParseGenerator::generate (471 samples, 0.02%)</title><rect x="0.7951%" y="277" width="0.0196%" height="15" fill="rgb(210,229,1)" fg:x="19111" fg:w="471"/><text x="1.0451%" y="287.50"></text></g><g><title>Parse::Parse (471 samples, 0.02%)</title><rect x="0.7951%" y="261" width="0.0196%" height="15" fill="rgb(222,148,37)" fg:x="19111" fg:w="471"/><text x="1.0451%" y="271.50"></text></g><g><title>Parse::do_call (729 samples, 0.03%)</title><rect x="0.7882%" y="293" width="0.0303%" height="15" fill="rgb(234,67,33)" fg:x="18944" fg:w="729"/><text x="1.0382%" y="303.50"></text></g><g><title>Parse::do_one_block (1,032 samples, 0.04%)</title><rect x="0.7857%" y="325" width="0.0429%" height="15" fill="rgb(247,98,35)" fg:x="18886" fg:w="1032"/><text x="1.0357%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (1,017 samples, 0.04%)</title><rect x="0.7864%" y="309" width="0.0423%" height="15" fill="rgb(247,138,52)" fg:x="18901" fg:w="1017"/><text x="1.0364%" y="319.50"></text></g><g><title>Parse::do_all_blocks (1,044 samples, 0.04%)</title><rect x="0.7857%" y="341" width="0.0434%" height="15" fill="rgb(213,79,30)" fg:x="18885" fg:w="1044"/><text x="1.0357%" y="351.50"></text></g><g><title>ParseGenerator::generate (1,139 samples, 0.05%)</title><rect x="0.7832%" y="373" width="0.0474%" height="15" fill="rgb(246,177,23)" fg:x="18826" fg:w="1139"/><text x="1.0332%" y="383.50"></text></g><g><title>Parse::Parse (1,139 samples, 0.05%)</title><rect x="0.7832%" y="357" width="0.0474%" height="15" fill="rgb(230,62,27)" fg:x="18826" fg:w="1139"/><text x="1.0332%" y="367.50"></text></g><g><title>Parse::do_call (1,668 samples, 0.07%)</title><rect x="0.7718%" y="389" width="0.0694%" height="15" fill="rgb(216,154,8)" fg:x="18550" fg:w="1668"/><text x="1.0218%" y="399.50"></text></g><g><title>Parse::do_all_blocks (1,924 samples, 0.08%)</title><rect x="0.7699%" y="437" width="0.0800%" height="15" fill="rgb(244,35,45)" fg:x="18506" fg:w="1924"/><text x="1.0199%" y="447.50"></text></g><g><title>Parse::do_one_block (1,923 samples, 0.08%)</title><rect x="0.7700%" y="421" width="0.0800%" height="15" fill="rgb(251,115,12)" fg:x="18507" fg:w="1923"/><text x="1.0200%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (1,912 samples, 0.08%)</title><rect x="0.7704%" y="405" width="0.0795%" height="15" fill="rgb(240,54,50)" fg:x="18518" fg:w="1912"/><text x="1.0204%" y="415.50"></text></g><g><title>ParseGenerator::generate (1,944 samples, 0.08%)</title><rect x="0.7692%" y="469" width="0.0809%" height="15" fill="rgb(233,84,52)" fg:x="18488" fg:w="1944"/><text x="1.0192%" y="479.50"></text></g><g><title>Parse::Parse (1,944 samples, 0.08%)</title><rect x="0.7692%" y="453" width="0.0809%" height="15" fill="rgb(207,117,47)" fg:x="18488" fg:w="1944"/><text x="1.0192%" y="463.50"></text></g><g><title>ParseGenerator::generate (257 samples, 0.01%)</title><rect x="0.8531%" y="357" width="0.0107%" height="15" fill="rgb(249,43,39)" fg:x="20506" fg:w="257"/><text x="1.1031%" y="367.50"></text></g><g><title>Parse::Parse (255 samples, 0.01%)</title><rect x="0.8532%" y="341" width="0.0106%" height="15" fill="rgb(209,38,44)" fg:x="20508" fg:w="255"/><text x="1.1032%" y="351.50"></text></g><g><title>Parse::do_call (347 samples, 0.01%)</title><rect x="0.8511%" y="373" width="0.0144%" height="15" fill="rgb(236,212,23)" fg:x="20456" fg:w="347"/><text x="1.1011%" y="383.50"></text></g><g><title>Parse::do_one_block (427 samples, 0.02%)</title><rect x="0.8503%" y="405" width="0.0178%" height="15" fill="rgb(242,79,21)" fg:x="20438" fg:w="427"/><text x="1.1003%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (423 samples, 0.02%)</title><rect x="0.8505%" y="389" width="0.0176%" height="15" fill="rgb(211,96,35)" fg:x="20442" fg:w="423"/><text x="1.1005%" y="399.50"></text></g><g><title>Parse::do_all_blocks (431 samples, 0.02%)</title><rect x="0.8503%" y="421" width="0.0179%" height="15" fill="rgb(253,215,40)" fg:x="20438" fg:w="431"/><text x="1.1003%" y="431.50"></text></g><g><title>ParseGenerator::generate (440 samples, 0.02%)</title><rect x="0.8501%" y="453" width="0.0183%" height="15" fill="rgb(211,81,21)" fg:x="20433" fg:w="440"/><text x="1.1001%" y="463.50"></text></g><g><title>Parse::Parse (440 samples, 0.02%)</title><rect x="0.8501%" y="437" width="0.0183%" height="15" fill="rgb(208,190,38)" fg:x="20433" fg:w="440"/><text x="1.1001%" y="447.50"></text></g><g><title>PredictedCallGenerator::generate (528 samples, 0.02%)</title><rect x="0.8501%" y="469" width="0.0220%" height="15" fill="rgb(235,213,38)" fg:x="20432" fg:w="528"/><text x="1.1001%" y="479.50"></text></g><g><title>Parse::do_call (2,712 samples, 0.11%)</title><rect x="0.7599%" y="485" width="0.1128%" height="15" fill="rgb(237,122,38)" fg:x="18265" fg:w="2712"/><text x="1.0099%" y="495.50"></text></g><g><title>Parse::do_all_blocks (2,736 samples, 0.11%)</title><rect x="0.7599%" y="533" width="0.1138%" height="15" fill="rgb(244,218,35)" fg:x="18265" fg:w="2736"/><text x="1.0099%" y="543.50"></text></g><g><title>Parse::do_one_block (2,736 samples, 0.11%)</title><rect x="0.7599%" y="517" width="0.1138%" height="15" fill="rgb(240,68,47)" fg:x="18265" fg:w="2736"/><text x="1.0099%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (2,736 samples, 0.11%)</title><rect x="0.7599%" y="501" width="0.1138%" height="15" fill="rgb(210,16,53)" fg:x="18265" fg:w="2736"/><text x="1.0099%" y="511.50"></text></g><g><title>C2Compiler::compile_method (2,764 samples, 0.11%)</title><rect x="0.7588%" y="597" width="0.1150%" height="15" fill="rgb(235,124,12)" fg:x="18238" fg:w="2764"/><text x="1.0088%" y="607.50"></text></g><g><title>Compile::Compile (2,764 samples, 0.11%)</title><rect x="0.7588%" y="581" width="0.1150%" height="15" fill="rgb(224,169,11)" fg:x="18238" fg:w="2764"/><text x="1.0088%" y="591.50"></text></g><g><title>ParseGenerator::generate (2,737 samples, 0.11%)</title><rect x="0.7599%" y="565" width="0.1139%" height="15" fill="rgb(250,166,2)" fg:x="18265" fg:w="2737"/><text x="1.0099%" y="575.50"></text></g><g><title>Parse::Parse (2,737 samples, 0.11%)</title><rect x="0.7599%" y="549" width="0.1139%" height="15" fill="rgb(242,216,29)" fg:x="18265" fg:w="2737"/><text x="1.0099%" y="559.50"></text></g><g><title>PhaseCFG::sched_call (244 samples, 0.01%)</title><rect x="0.8808%" y="533" width="0.0102%" height="15" fill="rgb(230,116,27)" fg:x="21170" fg:w="244"/><text x="1.1308%" y="543.50"></text></g><g><title>PhaseCFG::schedule_local (246 samples, 0.01%)</title><rect x="0.8808%" y="549" width="0.0102%" height="15" fill="rgb(228,99,48)" fg:x="21170" fg:w="246"/><text x="1.1308%" y="559.50"></text></g><g><title>PhaseCFG::do_global_code_motion (328 samples, 0.01%)</title><rect x="0.8776%" y="581" width="0.0136%" height="15" fill="rgb(253,11,6)" fg:x="21093" fg:w="328"/><text x="1.1276%" y="591.50"></text></g><g><title>PhaseCFG::global_code_motion (328 samples, 0.01%)</title><rect x="0.8776%" y="565" width="0.0136%" height="15" fill="rgb(247,143,39)" fg:x="21093" fg:w="328"/><text x="1.1276%" y="575.50"></text></g><g><title>Compile::Code_Gen (506 samples, 0.02%)</title><rect x="0.8740%" y="597" width="0.0211%" height="15" fill="rgb(236,97,10)" fg:x="21007" fg:w="506"/><text x="1.1240%" y="607.50"></text></g><g><title>OopFlow::compute_reach (253 samples, 0.01%)</title><rect x="0.9202%" y="533" width="0.0105%" height="15" fill="rgb(233,208,19)" fg:x="22117" fg:w="253"/><text x="1.1702%" y="543.50"></text></g><g><title>Compile::BuildOopMaps (947 samples, 0.04%)</title><rect x="0.8957%" y="549" width="0.0394%" height="15" fill="rgb(216,164,2)" fg:x="21529" fg:w="947"/><text x="1.1457%" y="559.50"></text></g><g><title>Compile::init_buffer (490 samples, 0.02%)</title><rect x="0.9351%" y="549" width="0.0204%" height="15" fill="rgb(220,129,5)" fg:x="22476" fg:w="490"/><text x="1.1851%" y="559.50"></text></g><g><title>Compile::shorten_branches (412 samples, 0.02%)</title><rect x="0.9383%" y="533" width="0.0171%" height="15" fill="rgb(242,17,10)" fg:x="22554" fg:w="412"/><text x="1.1883%" y="543.50"></text></g><g><title>Compile::Output (1,450 samples, 0.06%)</title><rect x="0.8952%" y="565" width="0.0603%" height="15" fill="rgb(242,107,0)" fg:x="21517" fg:w="1450"/><text x="1.1452%" y="575.50"></text></g><g><title>Compile::Process_OopMap_Node (277 samples, 0.01%)</title><rect x="0.9641%" y="549" width="0.0115%" height="15" fill="rgb(251,28,31)" fg:x="23173" fg:w="277"/><text x="1.2141%" y="559.50"></text></g><g><title>Compile::fill_buffer (718 samples, 0.03%)</title><rect x="0.9557%" y="565" width="0.0299%" height="15" fill="rgb(233,223,10)" fg:x="22971" fg:w="718"/><text x="1.2057%" y="575.50"></text></g><g><title>Matcher::find_shared (437 samples, 0.02%)</title><rect x="0.9899%" y="549" width="0.0182%" height="15" fill="rgb(215,21,27)" fg:x="23794" fg:w="437"/><text x="1.2399%" y="559.50"></text></g><g><title>Arena::contains (603 samples, 0.03%)</title><rect x="1.0281%" y="533" width="0.0251%" height="15" fill="rgb(232,23,21)" fg:x="24711" fg:w="603"/><text x="1.2781%" y="543.50"></text></g><g><title>Matcher::Label_Root (387 samples, 0.02%)</title><rect x="1.0794%" y="501" width="0.0161%" height="15" fill="rgb(244,5,23)" fg:x="25945" fg:w="387"/><text x="1.3294%" y="511.50"></text></g><g><title>Matcher::Label_Root (581 samples, 0.02%)</title><rect x="1.0746%" y="517" width="0.0242%" height="15" fill="rgb(226,81,46)" fg:x="25829" fg:w="581"/><text x="1.3246%" y="527.50"></text></g><g><title>Matcher::ReduceInst_Interior (244 samples, 0.01%)</title><rect x="1.1006%" y="501" width="0.0102%" height="15" fill="rgb(247,70,30)" fg:x="26453" fg:w="244"/><text x="1.3506%" y="511.50"></text></g><g><title>Matcher::ReduceInst (423 samples, 0.02%)</title><rect x="1.0988%" y="517" width="0.0176%" height="15" fill="rgb(212,68,19)" fg:x="26410" fg:w="423"/><text x="1.3488%" y="527.50"></text></g><g><title>Matcher::match_tree (1,282 samples, 0.05%)</title><rect x="1.0634%" y="533" width="0.0533%" height="15" fill="rgb(240,187,13)" fg:x="25561" fg:w="1282"/><text x="1.3134%" y="543.50"></text></g><g><title>Matcher::xform (2,786 samples, 0.12%)</title><rect x="1.0086%" y="549" width="0.1159%" height="15" fill="rgb(223,113,26)" fg:x="24242" fg:w="2786"/><text x="1.2586%" y="559.50"></text></g><g><title>Matcher::match (3,342 samples, 0.14%)</title><rect x="0.9858%" y="565" width="0.1390%" height="15" fill="rgb(206,192,2)" fg:x="23695" fg:w="3342"/><text x="1.2358%" y="575.50"></text></g><g><title>Node_Backward_Iterator::next (305 samples, 0.01%)</title><rect x="1.1786%" y="517" width="0.0127%" height="15" fill="rgb(241,108,4)" fg:x="28330" fg:w="305"/><text x="1.4286%" y="527.50"></text></g><g><title>PhaseCFG::schedule_late (871 samples, 0.04%)</title><rect x="1.1722%" y="533" width="0.0362%" height="15" fill="rgb(247,173,49)" fg:x="28176" fg:w="871"/><text x="1.4222%" y="543.50"></text></g><g><title>PhaseCFG::schedule_local (704 samples, 0.03%)</title><rect x="1.2085%" y="533" width="0.0293%" height="15" fill="rgb(224,114,35)" fg:x="29047" fg:w="704"/><text x="1.4585%" y="543.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (538 samples, 0.02%)</title><rect x="1.2399%" y="533" width="0.0224%" height="15" fill="rgb(245,159,27)" fg:x="29803" fg:w="538"/><text x="1.4899%" y="543.50"></text></g><g><title>PhaseLive::add_liveout (497 samples, 0.02%)</title><rect x="1.3025%" y="517" width="0.0207%" height="15" fill="rgb(245,172,44)" fg:x="31307" fg:w="497"/><text x="1.5525%" y="527.50"></text></g><g><title>PhaseLive::compute (1,118 samples, 0.05%)</title><rect x="1.2770%" y="533" width="0.0465%" height="15" fill="rgb(236,23,11)" fg:x="30693" fg:w="1118"/><text x="1.5270%" y="543.50"></text></g><g><title>PhaseCFG::global_code_motion (4,217 samples, 0.18%)</title><rect x="1.1490%" y="549" width="0.1754%" height="15" fill="rgb(205,117,38)" fg:x="27617" fg:w="4217"/><text x="1.3990%" y="559.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,418 samples, 0.18%)</title><rect x="1.1407%" y="565" width="0.1838%" height="15" fill="rgb(237,72,25)" fg:x="27419" fg:w="4418"/><text x="1.3907%" y="575.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,367 samples, 0.06%)</title><rect x="1.3371%" y="549" width="0.0569%" height="15" fill="rgb(244,70,9)" fg:x="32138" fg:w="1367"/><text x="1.5871%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (357 samples, 0.01%)</title><rect x="1.4223%" y="533" width="0.0149%" height="15" fill="rgb(217,125,39)" fg:x="34186" fg:w="357"/><text x="1.6723%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (424 samples, 0.02%)</title><rect x="1.4685%" y="517" width="0.0176%" height="15" fill="rgb(235,36,10)" fg:x="35297" fg:w="424"/><text x="1.7185%" y="527.50"></text></g><g><title>PhaseIFG::re_insert (975 samples, 0.04%)</title><rect x="1.4462%" y="533" width="0.0406%" height="15" fill="rgb(251,123,47)" fg:x="34761" fg:w="975"/><text x="1.6962%" y="543.50"></text></g><g><title>PhaseChaitin::Select (2,445 samples, 0.10%)</title><rect x="1.3940%" y="549" width="0.1017%" height="15" fill="rgb(221,13,13)" fg:x="33505" fg:w="2445"/><text x="1.6440%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (366 samples, 0.02%)</title><rect x="1.5091%" y="533" width="0.0152%" height="15" fill="rgb(238,131,9)" fg:x="36273" fg:w="366"/><text x="1.7591%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (500 samples, 0.02%)</title><rect x="1.5476%" y="517" width="0.0208%" height="15" fill="rgb(211,50,8)" fg:x="37199" fg:w="500"/><text x="1.7976%" y="527.50"></text></g><g><title>PhaseIFG::remove_node (1,063 samples, 0.04%)</title><rect x="1.5243%" y="533" width="0.0442%" height="15" fill="rgb(245,182,24)" fg:x="36639" fg:w="1063"/><text x="1.7743%" y="543.50"></text></g><g><title>PhaseChaitin::Simplify (1,753 samples, 0.07%)</title><rect x="1.4957%" y="549" width="0.0729%" height="15" fill="rgb(242,14,37)" fg:x="35950" fg:w="1753"/><text x="1.7457%" y="559.50"></text></g><g><title>PhaseChaitin::Split (4,114 samples, 0.17%)</title><rect x="1.5686%" y="549" width="0.1712%" height="15" fill="rgb(246,228,12)" fg:x="37703" fg:w="4114"/><text x="1.8186%" y="559.50"></text></g><g><title>IndexSet::IndexSet (343 samples, 0.01%)</title><rect x="1.7849%" y="533" width="0.0143%" height="15" fill="rgb(213,55,15)" fg:x="42901" fg:w="343"/><text x="2.0349%" y="543.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (934 samples, 0.04%)</title><rect x="1.8045%" y="533" width="0.0389%" height="15" fill="rgb(209,9,3)" fg:x="43372" fg:w="934"/><text x="2.0545%" y="543.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (653 samples, 0.03%)</title><rect x="1.8479%" y="533" width="0.0272%" height="15" fill="rgb(230,59,30)" fg:x="44417" fg:w="653"/><text x="2.0979%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (987 samples, 0.04%)</title><rect x="1.9751%" y="517" width="0.0411%" height="15" fill="rgb(209,121,21)" fg:x="47473" fg:w="987"/><text x="2.2251%" y="527.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,397 samples, 0.14%)</title><rect x="1.8751%" y="533" width="0.1413%" height="15" fill="rgb(220,109,13)" fg:x="45070" fg:w="3397"/><text x="2.1251%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (251 samples, 0.01%)</title><rect x="2.0474%" y="517" width="0.0104%" height="15" fill="rgb(232,18,1)" fg:x="49211" fg:w="251"/><text x="2.2974%" y="527.50"></text></g><g><title>RegMask::Size (437 samples, 0.02%)</title><rect x="2.0578%" y="517" width="0.0182%" height="15" fill="rgb(215,41,42)" fg:x="49462" fg:w="437"/><text x="2.3078%" y="527.50"></text></g><g><title>RegMask::smear_to_sets (799 samples, 0.03%)</title><rect x="2.0760%" y="517" width="0.0332%" height="15" fill="rgb(224,123,36)" fg:x="49899" fg:w="799"/><text x="2.3260%" y="527.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,103 samples, 0.09%)</title><rect x="2.0224%" y="533" width="0.0875%" height="15" fill="rgb(240,125,3)" fg:x="48611" fg:w="2103"/><text x="2.2724%" y="543.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (9,005 samples, 0.37%)</title><rect x="1.7399%" y="549" width="0.3746%" height="15" fill="rgb(205,98,50)" fg:x="41821" fg:w="9005"/><text x="1.9899%" y="559.50"></text></g><g><title>PhaseChaitin::interfere_with_live (409 samples, 0.02%)</title><rect x="2.1230%" y="533" width="0.0170%" height="15" fill="rgb(205,185,37)" fg:x="51028" fg:w="409"/><text x="2.3730%" y="543.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (612 samples, 0.03%)</title><rect x="2.1146%" y="549" width="0.0255%" height="15" fill="rgb(238,207,15)" fg:x="50826" fg:w="612"/><text x="2.3646%" y="559.50"></text></g><g><title>RegMask::Size (1,490 samples, 0.06%)</title><rect x="2.2599%" y="533" width="0.0620%" height="15" fill="rgb(213,199,42)" fg:x="54318" fg:w="1490"/><text x="2.5099%" y="543.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,847 samples, 0.20%)</title><rect x="2.1561%" y="549" width="0.2017%" height="15" fill="rgb(235,201,11)" fg:x="51823" fg:w="4847"/><text x="2.4061%" y="559.50"></text></g><g><title>PhaseChaitin::merge_multidefs (625 samples, 0.03%)</title><rect x="2.3578%" y="549" width="0.0260%" height="15" fill="rgb(207,46,11)" fg:x="56673" fg:w="625"/><text x="2.6078%" y="559.50"></text></g><g><title>PhaseChaitin::elide_copy (2,539 samples, 0.11%)</title><rect x="2.4791%" y="533" width="0.1056%" height="15" fill="rgb(241,35,35)" fg:x="59588" fg:w="2539"/><text x="2.7291%" y="543.50"></text></g><g><title>find_lowest_bit (441 samples, 0.02%)</title><rect x="2.5921%" y="533" width="0.0183%" height="15" fill="rgb(243,32,47)" fg:x="62303" fg:w="441"/><text x="2.8421%" y="543.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,454 samples, 0.23%)</title><rect x="2.3838%" y="549" width="0.2269%" height="15" fill="rgb(247,202,23)" fg:x="57298" fg:w="5454"/><text x="2.6338%" y="559.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (250 samples, 0.01%)</title><rect x="2.6108%" y="549" width="0.0104%" height="15" fill="rgb(219,102,11)" fg:x="62752" fg:w="250"/><text x="2.8608%" y="559.50"></text></g><g><title>IndexSet::lrg_union (383 samples, 0.02%)</title><rect x="2.6415%" y="501" width="0.0159%" height="15" fill="rgb(243,110,44)" fg:x="63492" fg:w="383"/><text x="2.8915%" y="511.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (269 samples, 0.01%)</title><rect x="2.6586%" y="501" width="0.0112%" height="15" fill="rgb(222,74,54)" fg:x="63903" fg:w="269"/><text x="2.9086%" y="511.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (860 samples, 0.04%)</title><rect x="2.6392%" y="517" width="0.0358%" height="15" fill="rgb(216,99,12)" fg:x="63435" fg:w="860"/><text x="2.8892%" y="527.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,293 samples, 0.05%)</title><rect x="2.6212%" y="549" width="0.0538%" height="15" fill="rgb(226,22,26)" fg:x="63003" fg:w="1293"/><text x="2.8712%" y="559.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,089 samples, 0.05%)</title><rect x="2.6297%" y="533" width="0.0453%" height="15" fill="rgb(217,163,10)" fg:x="63207" fg:w="1089"/><text x="2.8797%" y="543.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,083 samples, 0.05%)</title><rect x="2.6750%" y="549" width="0.0451%" height="15" fill="rgb(213,25,53)" fg:x="64297" fg:w="1083"/><text x="2.9250%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (545 samples, 0.02%)</title><rect x="2.6974%" y="533" width="0.0227%" height="15" fill="rgb(252,105,26)" fg:x="64835" fg:w="545"/><text x="2.9474%" y="543.50"></text></g><g><title>PhaseIFG::SquareUp (1,021 samples, 0.04%)</title><rect x="2.7201%" y="549" width="0.0425%" height="15" fill="rgb(220,39,43)" fg:x="65380" fg:w="1021"/><text x="2.9701%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (481 samples, 0.02%)</title><rect x="2.7426%" y="533" width="0.0200%" height="15" fill="rgb(229,68,48)" fg:x="65920" fg:w="481"/><text x="2.9926%" y="543.50"></text></g><g><title>PhaseIFG::init (427 samples, 0.02%)</title><rect x="2.7626%" y="549" width="0.0178%" height="15" fill="rgb(252,8,32)" fg:x="66401" fg:w="427"/><text x="3.0126%" y="559.50"></text></g><g><title>IndexSet::alloc_block_containing (270 samples, 0.01%)</title><rect x="2.8870%" y="517" width="0.0112%" height="15" fill="rgb(223,20,43)" fg:x="69392" fg:w="270"/><text x="3.1370%" y="527.50"></text></g><g><title>IndexSetIterator::advance_and_next (354 samples, 0.01%)</title><rect x="2.9008%" y="517" width="0.0147%" height="15" fill="rgb(229,81,49)" fg:x="69723" fg:w="354"/><text x="3.1508%" y="527.50"></text></g><g><title>PhaseLive::add_liveout (1,600 samples, 0.07%)</title><rect x="2.8503%" y="533" width="0.0666%" height="15" fill="rgb(236,28,36)" fg:x="68509" fg:w="1600"/><text x="3.1003%" y="543.50"></text></g><g><title>PhaseLive::compute (3,292 samples, 0.14%)</title><rect x="2.7805%" y="549" width="0.1370%" height="15" fill="rgb(249,185,26)" fg:x="66831" fg:w="3292"/><text x="3.0305%" y="559.50"></text></g><g><title>PhaseChaitin::Register_Allocate (38,315 samples, 1.59%)</title><rect x="1.3304%" y="565" width="1.5941%" height="15" fill="rgb(249,174,33)" fg:x="31977" fg:w="38315"/><text x="1.5804%" y="575.50"></text></g><g><title>Compile::Code_Gen (48,833 samples, 2.03%)</title><rect x="0.8950%" y="581" width="2.0317%" height="15" fill="rgb(233,201,37)" fg:x="21513" fg:w="48833"/><text x="1.1450%" y="591.50">C..</text></g><g><title>Parse::do_one_block (318 samples, 0.01%)</title><rect x="2.9351%" y="53" width="0.0132%" height="15" fill="rgb(221,78,26)" fg:x="70549" fg:w="318"/><text x="3.1851%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (310 samples, 0.01%)</title><rect x="2.9355%" y="37" width="0.0129%" height="15" fill="rgb(250,127,30)" fg:x="70557" fg:w="310"/><text x="3.1855%" y="47.50"></text></g><g><title>Parse::do_all_blocks (323 samples, 0.01%)</title><rect x="2.9351%" y="69" width="0.0134%" height="15" fill="rgb(230,49,44)" fg:x="70549" fg:w="323"/><text x="3.1851%" y="79.50"></text></g><g><title>ParseGenerator::generate (349 samples, 0.01%)</title><rect x="2.9343%" y="101" width="0.0145%" height="15" fill="rgb(229,67,23)" fg:x="70529" fg:w="349"/><text x="3.1843%" y="111.50"></text></g><g><title>Parse::Parse (349 samples, 0.01%)</title><rect x="2.9343%" y="85" width="0.0145%" height="15" fill="rgb(249,83,47)" fg:x="70529" fg:w="349"/><text x="3.1843%" y="95.50"></text></g><g><title>Parse::do_call (474 samples, 0.02%)</title><rect x="2.9314%" y="117" width="0.0197%" height="15" fill="rgb(215,43,3)" fg:x="70460" fg:w="474"/><text x="3.1814%" y="127.50"></text></g><g><title>ParseGenerator::generate (569 samples, 0.02%)</title><rect x="2.9307%" y="197" width="0.0237%" height="15" fill="rgb(238,154,13)" fg:x="70443" fg:w="569"/><text x="3.1807%" y="207.50"></text></g><g><title>Parse::Parse (569 samples, 0.02%)</title><rect x="2.9307%" y="181" width="0.0237%" height="15" fill="rgb(219,56,2)" fg:x="70443" fg:w="569"/><text x="3.1807%" y="191.50"></text></g><g><title>Parse::do_all_blocks (567 samples, 0.02%)</title><rect x="2.9308%" y="165" width="0.0236%" height="15" fill="rgb(233,0,4)" fg:x="70445" fg:w="567"/><text x="3.1808%" y="175.50"></text></g><g><title>Parse::do_one_block (567 samples, 0.02%)</title><rect x="2.9308%" y="149" width="0.0236%" height="15" fill="rgb(235,30,7)" fg:x="70445" fg:w="567"/><text x="3.1808%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (564 samples, 0.02%)</title><rect x="2.9309%" y="133" width="0.0235%" height="15" fill="rgb(250,79,13)" fg:x="70448" fg:w="564"/><text x="3.1809%" y="143.50"></text></g><g><title>Parse::do_call (705 samples, 0.03%)</title><rect x="2.9286%" y="213" width="0.0293%" height="15" fill="rgb(211,146,34)" fg:x="70392" fg:w="705"/><text x="3.1786%" y="223.50"></text></g><g><title>ParseGenerator::generate (720 samples, 0.03%)</title><rect x="2.9284%" y="293" width="0.0300%" height="15" fill="rgb(228,22,38)" fg:x="70388" fg:w="720"/><text x="3.1784%" y="303.50"></text></g><g><title>Parse::Parse (720 samples, 0.03%)</title><rect x="2.9284%" y="277" width="0.0300%" height="15" fill="rgb(235,168,5)" fg:x="70388" fg:w="720"/><text x="3.1784%" y="287.50"></text></g><g><title>Parse::do_all_blocks (718 samples, 0.03%)</title><rect x="2.9285%" y="261" width="0.0299%" height="15" fill="rgb(221,155,16)" fg:x="70390" fg:w="718"/><text x="3.1785%" y="271.50"></text></g><g><title>Parse::do_one_block (718 samples, 0.03%)</title><rect x="2.9285%" y="245" width="0.0299%" height="15" fill="rgb(215,215,53)" fg:x="70390" fg:w="718"/><text x="3.1785%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (718 samples, 0.03%)</title><rect x="2.9285%" y="229" width="0.0299%" height="15" fill="rgb(223,4,10)" fg:x="70390" fg:w="718"/><text x="3.1785%" y="239.50"></text></g><g><title>Parse::do_call (897 samples, 0.04%)</title><rect x="2.9272%" y="309" width="0.0373%" height="15" fill="rgb(234,103,6)" fg:x="70358" fg:w="897"/><text x="3.1772%" y="319.50"></text></g><g><title>ParseGenerator::generate (900 samples, 0.04%)</title><rect x="2.9272%" y="389" width="0.0374%" height="15" fill="rgb(227,97,0)" fg:x="70357" fg:w="900"/><text x="3.1772%" y="399.50"></text></g><g><title>Parse::Parse (900 samples, 0.04%)</title><rect x="2.9272%" y="373" width="0.0374%" height="15" fill="rgb(234,150,53)" fg:x="70357" fg:w="900"/><text x="3.1772%" y="383.50"></text></g><g><title>Parse::do_all_blocks (899 samples, 0.04%)</title><rect x="2.9272%" y="357" width="0.0374%" height="15" fill="rgb(228,201,54)" fg:x="70358" fg:w="899"/><text x="3.1772%" y="367.50"></text></g><g><title>Parse::do_one_block (899 samples, 0.04%)</title><rect x="2.9272%" y="341" width="0.0374%" height="15" fill="rgb(222,22,37)" fg:x="70358" fg:w="899"/><text x="3.1772%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (899 samples, 0.04%)</title><rect x="2.9272%" y="325" width="0.0374%" height="15" fill="rgb(237,53,32)" fg:x="70358" fg:w="899"/><text x="3.1772%" y="335.50"></text></g><g><title>ParseGenerator::generate (1,086 samples, 0.05%)</title><rect x="2.9270%" y="485" width="0.0452%" height="15" fill="rgb(233,25,53)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="495.50"></text></g><g><title>Parse::Parse (1,086 samples, 0.05%)</title><rect x="2.9270%" y="469" width="0.0452%" height="15" fill="rgb(210,40,34)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="479.50"></text></g><g><title>Parse::do_all_blocks (1,086 samples, 0.05%)</title><rect x="2.9270%" y="453" width="0.0452%" height="15" fill="rgb(241,220,44)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="463.50"></text></g><g><title>Parse::do_one_block (1,086 samples, 0.05%)</title><rect x="2.9270%" y="437" width="0.0452%" height="15" fill="rgb(235,28,35)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (1,086 samples, 0.05%)</title><rect x="2.9270%" y="421" width="0.0452%" height="15" fill="rgb(210,56,17)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="431.50"></text></g><g><title>Parse::do_call (1,086 samples, 0.05%)</title><rect x="2.9270%" y="405" width="0.0452%" height="15" fill="rgb(224,130,29)" fg:x="70353" fg:w="1086"/><text x="3.1770%" y="415.50"></text></g><g><title>Parse::do_call (241 samples, 0.01%)</title><rect x="2.9725%" y="197" width="0.0100%" height="15" fill="rgb(235,212,8)" fg:x="71447" fg:w="241"/><text x="3.2225%" y="207.50"></text></g><g><title>ParseGenerator::generate (251 samples, 0.01%)</title><rect x="2.9724%" y="277" width="0.0104%" height="15" fill="rgb(223,33,50)" fg:x="71444" fg:w="251"/><text x="3.2224%" y="287.50"></text></g><g><title>Parse::Parse (251 samples, 0.01%)</title><rect x="2.9724%" y="261" width="0.0104%" height="15" fill="rgb(219,149,13)" fg:x="71444" fg:w="251"/><text x="3.2224%" y="271.50"></text></g><g><title>Parse::do_all_blocks (250 samples, 0.01%)</title><rect x="2.9724%" y="245" width="0.0104%" height="15" fill="rgb(250,156,29)" fg:x="71445" fg:w="250"/><text x="3.2224%" y="255.50"></text></g><g><title>Parse::do_one_block (250 samples, 0.01%)</title><rect x="2.9724%" y="229" width="0.0104%" height="15" fill="rgb(216,193,19)" fg:x="71445" fg:w="250"/><text x="3.2224%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (250 samples, 0.01%)</title><rect x="2.9724%" y="213" width="0.0104%" height="15" fill="rgb(216,135,14)" fg:x="71445" fg:w="250"/><text x="3.2224%" y="223.50"></text></g><g><title>Parse::do_call (265 samples, 0.01%)</title><rect x="2.9722%" y="293" width="0.0110%" height="15" fill="rgb(241,47,5)" fg:x="71439" fg:w="265"/><text x="3.2222%" y="303.50"></text></g><g><title>ParseGenerator::generate (266 samples, 0.01%)</title><rect x="2.9722%" y="373" width="0.0111%" height="15" fill="rgb(233,42,35)" fg:x="71439" fg:w="266"/><text x="3.2222%" y="383.50"></text></g><g><title>Parse::Parse (266 samples, 0.01%)</title><rect x="2.9722%" y="357" width="0.0111%" height="15" fill="rgb(231,13,6)" fg:x="71439" fg:w="266"/><text x="3.2222%" y="367.50"></text></g><g><title>Parse::do_all_blocks (266 samples, 0.01%)</title><rect x="2.9722%" y="341" width="0.0111%" height="15" fill="rgb(207,181,40)" fg:x="71439" fg:w="266"/><text x="3.2222%" y="351.50"></text></g><g><title>Parse::do_one_block (266 samples, 0.01%)</title><rect x="2.9722%" y="325" width="0.0111%" height="15" fill="rgb(254,173,49)" fg:x="71439" fg:w="266"/><text x="3.2222%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (266 samples, 0.01%)</title><rect x="2.9722%" y="309" width="0.0111%" height="15" fill="rgb(221,1,38)" fg:x="71439" fg:w="266"/><text x="3.2222%" y="319.50"></text></g><g><title>ParseGenerator::generate (306 samples, 0.01%)</title><rect x="2.9722%" y="469" width="0.0127%" height="15" fill="rgb(206,124,46)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="479.50"></text></g><g><title>Parse::Parse (306 samples, 0.01%)</title><rect x="2.9722%" y="453" width="0.0127%" height="15" fill="rgb(249,21,11)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="463.50"></text></g><g><title>Parse::do_all_blocks (306 samples, 0.01%)</title><rect x="2.9722%" y="437" width="0.0127%" height="15" fill="rgb(222,201,40)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="447.50"></text></g><g><title>Parse::do_one_block (306 samples, 0.01%)</title><rect x="2.9722%" y="421" width="0.0127%" height="15" fill="rgb(235,61,29)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (306 samples, 0.01%)</title><rect x="2.9722%" y="405" width="0.0127%" height="15" fill="rgb(219,207,3)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="415.50"></text></g><g><title>Parse::do_call (306 samples, 0.01%)</title><rect x="2.9722%" y="389" width="0.0127%" height="15" fill="rgb(222,56,46)" fg:x="71439" fg:w="306"/><text x="3.2222%" y="399.50"></text></g><g><title>ParseGenerator::generate (1,459 samples, 0.06%)</title><rect x="2.9270%" y="581" width="0.0607%" height="15" fill="rgb(239,76,54)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="591.50"></text></g><g><title>Parse::Parse (1,459 samples, 0.06%)</title><rect x="2.9270%" y="565" width="0.0607%" height="15" fill="rgb(231,124,27)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,459 samples, 0.06%)</title><rect x="2.9270%" y="549" width="0.0607%" height="15" fill="rgb(249,195,6)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="559.50"></text></g><g><title>Parse::do_one_block (1,459 samples, 0.06%)</title><rect x="2.9270%" y="533" width="0.0607%" height="15" fill="rgb(237,174,47)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,459 samples, 0.06%)</title><rect x="2.9270%" y="517" width="0.0607%" height="15" fill="rgb(206,201,31)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="527.50"></text></g><g><title>Parse::do_call (1,459 samples, 0.06%)</title><rect x="2.9270%" y="501" width="0.0607%" height="15" fill="rgb(231,57,52)" fg:x="70353" fg:w="1459"/><text x="3.1770%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (373 samples, 0.02%)</title><rect x="2.9722%" y="485" width="0.0155%" height="15" fill="rgb(248,177,22)" fg:x="71439" fg:w="373"/><text x="3.2222%" y="495.50"></text></g><g><title>Compile::Compile (50,306 samples, 2.09%)</title><rect x="0.8950%" y="597" width="2.0929%" height="15" fill="rgb(215,211,37)" fg:x="21513" fg:w="50306"/><text x="1.1450%" y="607.50">C..</text></g><g><title>Compile::final_graph_reshaping_walk (344 samples, 0.01%)</title><rect x="2.9886%" y="565" width="0.0143%" height="15" fill="rgb(241,128,51)" fg:x="71833" fg:w="344"/><text x="3.2386%" y="575.50"></text></g><g><title>Compile::final_graph_reshaping (352 samples, 0.01%)</title><rect x="2.9883%" y="581" width="0.0146%" height="15" fill="rgb(227,165,31)" fg:x="71826" fg:w="352"/><text x="3.2383%" y="591.50"></text></g><g><title>Compile::remove_speculative_types (339 samples, 0.01%)</title><rect x="3.0087%" y="581" width="0.0141%" height="15" fill="rgb(228,167,24)" fg:x="72318" fg:w="339"/><text x="3.2587%" y="591.50"></text></g><g><title>ConnectionGraph::compute_escape (666 samples, 0.03%)</title><rect x="3.0231%" y="565" width="0.0277%" height="15" fill="rgb(228,143,12)" fg:x="72664" fg:w="666"/><text x="3.2731%" y="575.50"></text></g><g><title>ConnectionGraph::do_analysis (673 samples, 0.03%)</title><rect x="3.0230%" y="581" width="0.0280%" height="15" fill="rgb(249,149,8)" fg:x="72660" fg:w="673"/><text x="3.2730%" y="591.50"></text></g><g><title>PhaseCCP::analyze (865 samples, 0.04%)</title><rect x="3.0512%" y="581" width="0.0360%" height="15" fill="rgb(243,35,44)" fg:x="73338" fg:w="865"/><text x="3.3012%" y="591.50"></text></g><g><title>PhaseCCP::do_transform (263 samples, 0.01%)</title><rect x="3.0872%" y="581" width="0.0109%" height="15" fill="rgb(246,89,9)" fg:x="74203" fg:w="263"/><text x="3.3372%" y="591.50"></text></g><g><title>PhaseCCP::transform (263 samples, 0.01%)</title><rect x="3.0872%" y="565" width="0.0109%" height="15" fill="rgb(233,213,13)" fg:x="74203" fg:w="263"/><text x="3.3372%" y="575.50"></text></g><g><title>IdealLoopTree::iteration_split (264 samples, 0.01%)</title><rect x="3.1035%" y="565" width="0.0110%" height="15" fill="rgb(233,141,41)" fg:x="74596" fg:w="264"/><text x="3.3535%" y="575.50"></text></g><g><title>IdealLoopTree::loop_predication (307 samples, 0.01%)</title><rect x="3.1145%" y="565" width="0.0128%" height="15" fill="rgb(239,167,4)" fg:x="74860" fg:w="307"/><text x="3.3645%" y="575.50"></text></g><g><title>NTarjan::DFS (369 samples, 0.02%)</title><rect x="3.1640%" y="549" width="0.0154%" height="15" fill="rgb(209,217,16)" fg:x="76050" fg:w="369"/><text x="3.4140%" y="559.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,265 samples, 0.05%)</title><rect x="3.1291%" y="565" width="0.0526%" height="15" fill="rgb(219,88,35)" fg:x="75212" fg:w="1265"/><text x="3.3791%" y="575.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (447 samples, 0.02%)</title><rect x="3.2351%" y="549" width="0.0186%" height="15" fill="rgb(220,193,23)" fg:x="77760" fg:w="447"/><text x="3.4851%" y="559.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (406 samples, 0.02%)</title><rect x="3.2369%" y="533" width="0.0169%" height="15" fill="rgb(230,90,52)" fg:x="77801" fg:w="406"/><text x="3.4869%" y="543.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,822 samples, 0.08%)</title><rect x="3.1818%" y="565" width="0.0758%" height="15" fill="rgb(252,106,19)" fg:x="76477" fg:w="1822"/><text x="3.4318%" y="575.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (290 samples, 0.01%)</title><rect x="3.3814%" y="501" width="0.0121%" height="15" fill="rgb(206,74,20)" fg:x="81275" fg:w="290"/><text x="3.6314%" y="511.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (444 samples, 0.02%)</title><rect x="3.3770%" y="517" width="0.0185%" height="15" fill="rgb(230,138,44)" fg:x="81169" fg:w="444"/><text x="3.6270%" y="527.50"></text></g><g><title>PhaseIdealLoop::dom_depth (719 samples, 0.03%)</title><rect x="3.5124%" y="501" width="0.0299%" height="15" fill="rgb(235,182,43)" fg:x="84424" fg:w="719"/><text x="3.7624%" y="511.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,339 samples, 0.14%)</title><rect x="3.4036%" y="517" width="0.1389%" height="15" fill="rgb(242,16,51)" fg:x="81809" fg:w="3339"/><text x="3.6536%" y="527.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,559 samples, 0.19%)</title><rect x="3.3537%" y="533" width="0.1897%" height="15" fill="rgb(248,9,4)" fg:x="80610" fg:w="4559"/><text x="3.6037%" y="543.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,513 samples, 0.23%)</title><rect x="3.3179%" y="549" width="0.2294%" height="15" fill="rgb(210,31,22)" fg:x="79748" fg:w="5513"/><text x="3.5679%" y="559.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (6,981 samples, 0.29%)</title><rect x="3.2576%" y="565" width="0.2904%" height="15" fill="rgb(239,54,39)" fg:x="78299" fg:w="6981"/><text x="3.5076%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (289 samples, 0.01%)</title><rect x="3.5788%" y="549" width="0.0120%" height="15" fill="rgb(230,99,41)" fg:x="86021" fg:w="289"/><text x="3.8288%" y="559.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,041 samples, 0.04%)</title><rect x="3.5481%" y="565" width="0.0433%" height="15" fill="rgb(253,106,12)" fg:x="85282" fg:w="1041"/><text x="3.7981%" y="575.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (286 samples, 0.01%)</title><rect x="3.6200%" y="549" width="0.0119%" height="15" fill="rgb(213,46,41)" fg:x="87011" fg:w="286"/><text x="3.8700%" y="559.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (871 samples, 0.04%)</title><rect x="3.6319%" y="549" width="0.0362%" height="15" fill="rgb(215,133,35)" fg:x="87297" fg:w="871"/><text x="3.8819%" y="559.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,776 samples, 0.07%)</title><rect x="3.5945%" y="565" width="0.0739%" height="15" fill="rgb(213,28,5)" fg:x="86398" fg:w="1776"/><text x="3.8445%" y="575.50"></text></g><g><title>RegionNode::Ideal (247 samples, 0.01%)</title><rect x="3.7159%" y="533" width="0.0103%" height="15" fill="rgb(215,77,49)" fg:x="89315" fg:w="247"/><text x="3.9659%" y="543.50"></text></g><g><title>PhaseIterGVN::transform_old (1,502 samples, 0.06%)</title><rect x="3.6714%" y="549" width="0.0625%" height="15" fill="rgb(248,100,22)" fg:x="88245" fg:w="1502"/><text x="3.9214%" y="559.50"></text></g><g><title>PhaseIterGVN::optimize (1,584 samples, 0.07%)</title><rect x="3.6685%" y="565" width="0.0659%" height="15" fill="rgb(208,67,9)" fg:x="88177" fg:w="1584"/><text x="3.9185%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (15,413 samples, 0.64%)</title><rect x="3.0989%" y="581" width="0.6412%" height="15" fill="rgb(219,133,21)" fg:x="74484" fg:w="15413"/><text x="3.3489%" y="591.50"></text></g><g><title>IfNode::Ideal (348 samples, 0.01%)</title><rect x="3.7639%" y="549" width="0.0145%" height="15" fill="rgb(246,46,29)" fg:x="90468" fg:w="348"/><text x="4.0139%" y="559.50"></text></g><g><title>PhaseIterGVN::subsume_node (244 samples, 0.01%)</title><rect x="3.8054%" y="549" width="0.0102%" height="15" fill="rgb(246,185,52)" fg:x="91466" fg:w="244"/><text x="4.0554%" y="559.50"></text></g><g><title>RegionNode::Ideal (424 samples, 0.02%)</title><rect x="3.8272%" y="549" width="0.0176%" height="15" fill="rgb(252,136,11)" fg:x="91991" fg:w="424"/><text x="4.0772%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (252 samples, 0.01%)</title><rect x="3.8460%" y="405" width="0.0105%" height="15" fill="rgb(219,138,53)" fg:x="92442" fg:w="252"/><text x="4.0960%" y="415.50"></text></g><g><title>InitializeNode::detect_init_independence (262 samples, 0.01%)</title><rect x="3.8460%" y="421" width="0.0109%" height="15" fill="rgb(211,51,23)" fg:x="92442" fg:w="262"/><text x="4.0960%" y="431.50"></text></g><g><title>InitializeNode::detect_init_independence (276 samples, 0.01%)</title><rect x="3.8459%" y="437" width="0.0115%" height="15" fill="rgb(247,221,28)" fg:x="92441" fg:w="276"/><text x="4.0959%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (295 samples, 0.01%)</title><rect x="3.8459%" y="453" width="0.0123%" height="15" fill="rgb(251,222,45)" fg:x="92441" fg:w="295"/><text x="4.0959%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (309 samples, 0.01%)</title><rect x="3.8459%" y="469" width="0.0129%" height="15" fill="rgb(217,162,53)" fg:x="92441" fg:w="309"/><text x="4.0959%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (342 samples, 0.01%)</title><rect x="3.8459%" y="485" width="0.0142%" height="15" fill="rgb(229,93,14)" fg:x="92441" fg:w="342"/><text x="4.0959%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (371 samples, 0.02%)</title><rect x="3.8459%" y="501" width="0.0154%" height="15" fill="rgb(209,67,49)" fg:x="92441" fg:w="371"/><text x="4.0959%" y="511.50"></text></g><g><title>InitializeNode::can_capture_store (372 samples, 0.02%)</title><rect x="3.8459%" y="533" width="0.0155%" height="15" fill="rgb(213,87,29)" fg:x="92441" fg:w="372"/><text x="4.0959%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (372 samples, 0.02%)</title><rect x="3.8459%" y="517" width="0.0155%" height="15" fill="rgb(205,151,52)" fg:x="92441" fg:w="372"/><text x="4.0959%" y="527.50"></text></g><g><title>StoreNode::Ideal (414 samples, 0.02%)</title><rect x="3.8457%" y="549" width="0.0172%" height="15" fill="rgb(253,215,39)" fg:x="92435" fg:w="414"/><text x="4.0957%" y="559.50"></text></g><g><title>PhaseIterGVN::transform_old (2,786 samples, 0.12%)</title><rect x="3.7495%" y="565" width="0.1159%" height="15" fill="rgb(221,220,41)" fg:x="90122" fg:w="2786"/><text x="3.9995%" y="575.50"></text></g><g><title>PhaseIterGVN::optimize (2,894 samples, 0.12%)</title><rect x="3.7459%" y="581" width="0.1204%" height="15" fill="rgb(218,133,21)" fg:x="90037" fg:w="2894"/><text x="3.9959%" y="591.50"></text></g><g><title>PhaseIterGVN::transform_old (296 samples, 0.01%)</title><rect x="3.8686%" y="549" width="0.0123%" height="15" fill="rgb(221,193,43)" fg:x="92986" fg:w="296"/><text x="4.1186%" y="559.50"></text></g><g><title>PhaseIterGVN::optimize (312 samples, 0.01%)</title><rect x="3.8681%" y="565" width="0.0130%" height="15" fill="rgb(240,128,52)" fg:x="92973" fg:w="312"/><text x="4.1181%" y="575.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (456 samples, 0.02%)</title><rect x="3.8679%" y="581" width="0.0190%" height="15" fill="rgb(253,114,12)" fg:x="92970" fg:w="456"/><text x="4.1179%" y="591.50"></text></g><g><title>Compile::Optimize (21,819 samples, 0.91%)</title><rect x="2.9880%" y="597" width="0.9078%" height="15" fill="rgb(215,223,47)" fg:x="71819" fg:w="21819"/><text x="3.2380%" y="607.50"></text></g><g><title>CompileBroker::compiler_thread_loop (255 samples, 0.01%)</title><rect x="3.8962%" y="597" width="0.0106%" height="15" fill="rgb(248,225,23)" fg:x="93650" fg:w="255"/><text x="4.1462%" y="607.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (255 samples, 0.01%)</title><rect x="3.8962%" y="581" width="0.0106%" height="15" fill="rgb(250,108,0)" fg:x="93650" fg:w="255"/><text x="4.1462%" y="591.50"></text></g><g><title>C2Compiler::compile_method (255 samples, 0.01%)</title><rect x="3.8962%" y="565" width="0.0106%" height="15" fill="rgb(228,208,7)" fg:x="93650" fg:w="255"/><text x="4.1462%" y="575.50"></text></g><g><title>Compile::Compile (255 samples, 0.01%)</title><rect x="3.8962%" y="549" width="0.0106%" height="15" fill="rgb(244,45,10)" fg:x="93650" fg:w="255"/><text x="4.1462%" y="559.50"></text></g><g><title>Parse::Parse (249 samples, 0.01%)</title><rect x="3.9203%" y="437" width="0.0104%" height="15" fill="rgb(207,125,25)" fg:x="94228" fg:w="249"/><text x="4.1703%" y="447.50"></text></g><g><title>ParseGenerator::generate (252 samples, 0.01%)</title><rect x="3.9202%" y="453" width="0.0105%" height="15" fill="rgb(210,195,18)" fg:x="94227" fg:w="252"/><text x="4.1702%" y="463.50"></text></g><g><title>Parse::do_call (553 samples, 0.02%)</title><rect x="3.9129%" y="469" width="0.0230%" height="15" fill="rgb(249,80,12)" fg:x="94051" fg:w="553"/><text x="4.1629%" y="479.50"></text></g><g><title>Parse::do_all_blocks (792 samples, 0.03%)</title><rect x="3.9107%" y="517" width="0.0330%" height="15" fill="rgb(221,65,9)" fg:x="93998" fg:w="792"/><text x="4.1607%" y="527.50"></text></g><g><title>Parse::do_one_block (791 samples, 0.03%)</title><rect x="3.9108%" y="501" width="0.0329%" height="15" fill="rgb(235,49,36)" fg:x="93999" fg:w="791"/><text x="4.1608%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (783 samples, 0.03%)</title><rect x="3.9111%" y="485" width="0.0326%" height="15" fill="rgb(225,32,20)" fg:x="94007" fg:w="783"/><text x="4.1611%" y="495.50"></text></g><g><title>ParseGenerator::generate (811 samples, 0.03%)</title><rect x="3.9107%" y="549" width="0.0337%" height="15" fill="rgb(215,141,46)" fg:x="93998" fg:w="811"/><text x="4.1607%" y="559.50"></text></g><g><title>Parse::Parse (811 samples, 0.03%)</title><rect x="3.9107%" y="533" width="0.0337%" height="15" fill="rgb(250,160,47)" fg:x="93998" fg:w="811"/><text x="4.1607%" y="543.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (940 samples, 0.04%)</title><rect x="3.9068%" y="597" width="0.0391%" height="15" fill="rgb(216,222,40)" fg:x="93905" fg:w="940"/><text x="4.1568%" y="607.50"></text></g><g><title>C2Compiler::compile_method (940 samples, 0.04%)</title><rect x="3.9068%" y="581" width="0.0391%" height="15" fill="rgb(234,217,39)" fg:x="93905" fg:w="940"/><text x="4.1568%" y="591.50"></text></g><g><title>Compile::Compile (940 samples, 0.04%)</title><rect x="3.9068%" y="565" width="0.0391%" height="15" fill="rgb(207,178,40)" fg:x="93905" fg:w="940"/><text x="4.1568%" y="575.50"></text></g><g><title>ParseGenerator::generate (247 samples, 0.01%)</title><rect x="3.9659%" y="597" width="0.0103%" height="15" fill="rgb(221,136,13)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="607.50"></text></g><g><title>Parse::Parse (247 samples, 0.01%)</title><rect x="3.9659%" y="581" width="0.0103%" height="15" fill="rgb(249,199,10)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="591.50"></text></g><g><title>Parse::do_all_blocks (247 samples, 0.01%)</title><rect x="3.9659%" y="565" width="0.0103%" height="15" fill="rgb(249,222,13)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="575.50"></text></g><g><title>Parse::do_one_block (247 samples, 0.01%)</title><rect x="3.9659%" y="549" width="0.0103%" height="15" fill="rgb(244,185,38)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (247 samples, 0.01%)</title><rect x="3.9659%" y="533" width="0.0103%" height="15" fill="rgb(236,202,9)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="543.50"></text></g><g><title>Parse::do_call (247 samples, 0.01%)</title><rect x="3.9659%" y="517" width="0.0103%" height="15" fill="rgb(250,229,37)" fg:x="95324" fg:w="247"/><text x="4.2159%" y="527.50"></text></g><g><title>[unknown] (77,733 samples, 3.23%)</title><rect x="0.7587%" y="613" width="3.2340%" height="15" fill="rgb(206,174,23)" fg:x="18235" fg:w="77733"/><text x="1.0087%" y="623.50">[un..</text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (514 samples, 0.02%)</title><rect x="4.0025%" y="469" width="0.0214%" height="15" fill="rgb(211,33,43)" fg:x="96205" fg:w="514"/><text x="4.2525%" y="479.50"></text></g><g><title>Compile::Compile (766 samples, 0.03%)</title><rect x="3.9948%" y="485" width="0.0319%" height="15" fill="rgb(245,58,50)" fg:x="96018" fg:w="766"/><text x="4.2448%" y="495.50"></text></g><g><title>C2Compiler::compile_method (780 samples, 0.03%)</title><rect x="3.9942%" y="501" width="0.0325%" height="15" fill="rgb(244,68,36)" fg:x="96005" fg:w="780"/><text x="4.2442%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (958 samples, 0.04%)</title><rect x="3.9940%" y="517" width="0.0399%" height="15" fill="rgb(232,229,15)" fg:x="95999" fg:w="958"/><text x="4.2440%" y="527.50"></text></g><g><title>Monitor::IWait (258 samples, 0.01%)</title><rect x="4.0350%" y="485" width="0.0107%" height="15" fill="rgb(254,30,23)" fg:x="96985" fg:w="258"/><text x="4.2850%" y="495.50"></text></g><g><title>Monitor::wait (269 samples, 0.01%)</title><rect x="4.0346%" y="501" width="0.0112%" height="15" fill="rgb(235,160,14)" fg:x="96975" fg:w="269"/><text x="4.2846%" y="511.50"></text></g><g><title>CompileQueue::get (331 samples, 0.01%)</title><rect x="4.0342%" y="517" width="0.0138%" height="15" fill="rgb(212,155,44)" fg:x="96965" fg:w="331"/><text x="4.2842%" y="527.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,303 samples, 0.05%)</title><rect x="3.9938%" y="533" width="0.0542%" height="15" fill="rgb(226,2,50)" fg:x="95996" fg:w="1303"/><text x="4.2438%" y="543.50"></text></g><g><title>Thread::call_run (1,308 samples, 0.05%)</title><rect x="3.9938%" y="565" width="0.0544%" height="15" fill="rgb(234,177,6)" fg:x="95995" fg:w="1308"/><text x="4.2438%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (1,307 samples, 0.05%)</title><rect x="3.9938%" y="549" width="0.0544%" height="15" fill="rgb(217,24,9)" fg:x="95996" fg:w="1307"/><text x="4.2438%" y="559.50"></text></g><g><title>__GI___clone (1,317 samples, 0.05%)</title><rect x="3.9935%" y="613" width="0.0548%" height="15" fill="rgb(220,13,46)" fg:x="95987" fg:w="1317"/><text x="4.2435%" y="623.50"></text></g><g><title>start_thread (1,311 samples, 0.05%)</title><rect x="3.9937%" y="597" width="0.0545%" height="15" fill="rgb(239,221,27)" fg:x="95993" fg:w="1311"/><text x="4.2437%" y="607.50"></text></g><g><title>thread_native_entry (1,309 samples, 0.05%)</title><rect x="3.9938%" y="581" width="0.0545%" height="15" fill="rgb(222,198,25)" fg:x="95995" fg:w="1309"/><text x="4.2438%" y="591.50"></text></g><g><title>C2_CompilerThre (83,690 samples, 3.48%)</title><rect x="0.5716%" y="629" width="3.4819%" height="15" fill="rgb(211,99,13)" fg:x="13740" fg:w="83690"/><text x="0.8216%" y="639.50">C2_..</text></g><g><title>__pthread_cond_timedwait (243 samples, 0.01%)</title><rect x="4.0920%" y="565" width="0.0101%" height="15" fill="rgb(232,111,31)" fg:x="98356" fg:w="243"/><text x="4.3420%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (243 samples, 0.01%)</title><rect x="4.0920%" y="549" width="0.0101%" height="15" fill="rgb(245,82,37)" fg:x="98356" fg:w="243"/><text x="4.3420%" y="559.50"></text></g><g><title>Parker::park (380 samples, 0.02%)</title><rect x="4.0909%" y="581" width="0.0158%" height="15" fill="rgb(227,149,46)" fg:x="98328" fg:w="380"/><text x="4.3409%" y="591.50"></text></g><g><title>Unsafe_Park (390 samples, 0.02%)</title><rect x="4.0906%" y="597" width="0.0162%" height="15" fill="rgb(218,36,50)" fg:x="98321" fg:w="390"/><text x="4.3406%" y="607.50"></text></g><g><title>[perf-996087.map] (1,060 samples, 0.04%)</title><rect x="4.0632%" y="613" width="0.0441%" height="15" fill="rgb(226,80,48)" fg:x="97662" fg:w="1060"/><text x="4.3132%" y="623.50"></text></g><g><title>ForkJoinPool.co (1,084 samples, 0.05%)</title><rect x="4.0626%" y="629" width="0.0451%" height="15" fill="rgb(238,224,15)" fg:x="97648" fg:w="1084"/><text x="4.3126%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue (371 samples, 0.02%)</title><rect x="4.1400%" y="501" width="0.0154%" height="15" fill="rgb(241,136,10)" fg:x="99510" fg:w="371"/><text x="4.3900%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (435 samples, 0.02%)</title><rect x="4.1394%" y="517" width="0.0181%" height="15" fill="rgb(208,32,45)" fg:x="99494" fg:w="435"/><text x="4.3894%" y="527.50"></text></g><g><title>frame::oops_interpreted_do (243 samples, 0.01%)</title><rect x="4.1717%" y="437" width="0.0101%" height="15" fill="rgb(207,135,9)" fg:x="100271" fg:w="243"/><text x="4.4217%" y="447.50"></text></g><g><title>G1RootProcessor::process_java_roots (260 samples, 0.01%)</title><rect x="4.1710%" y="501" width="0.0108%" height="15" fill="rgb(206,86,44)" fg:x="100255" fg:w="260"/><text x="4.4210%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (260 samples, 0.01%)</title><rect x="4.1710%" y="485" width="0.0108%" height="15" fill="rgb(245,177,15)" fg:x="100255" fg:w="260"/><text x="4.4210%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (260 samples, 0.01%)</title><rect x="4.1710%" y="469" width="0.0108%" height="15" fill="rgb(206,64,50)" fg:x="100255" fg:w="260"/><text x="4.4210%" y="479.50"></text></g><g><title>JavaThread::oops_do (260 samples, 0.01%)</title><rect x="4.1710%" y="453" width="0.0108%" height="15" fill="rgb(234,36,40)" fg:x="100255" fg:w="260"/><text x="4.4210%" y="463.50"></text></g><g><title>G1ParTask::work (1,028 samples, 0.04%)</title><rect x="4.1394%" y="533" width="0.0428%" height="15" fill="rgb(213,64,8)" fg:x="99494" fg:w="1028"/><text x="4.3894%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (270 samples, 0.01%)</title><rect x="4.1709%" y="517" width="0.0112%" height="15" fill="rgb(210,75,36)" fg:x="100252" fg:w="270"/><text x="4.4209%" y="527.50"></text></g><g><title>__GI___clone (1,274 samples, 0.05%)</title><rect x="4.1385%" y="613" width="0.0530%" height="15" fill="rgb(229,88,21)" fg:x="99472" fg:w="1274"/><text x="4.3885%" y="623.50"></text></g><g><title>start_thread (1,274 samples, 0.05%)</title><rect x="4.1385%" y="597" width="0.0530%" height="15" fill="rgb(252,204,47)" fg:x="99472" fg:w="1274"/><text x="4.3885%" y="607.50"></text></g><g><title>thread_native_entry (1,274 samples, 0.05%)</title><rect x="4.1385%" y="581" width="0.0530%" height="15" fill="rgb(208,77,27)" fg:x="99472" fg:w="1274"/><text x="4.3885%" y="591.50"></text></g><g><title>Thread::call_run (1,274 samples, 0.05%)</title><rect x="4.1385%" y="565" width="0.0530%" height="15" fill="rgb(221,76,26)" fg:x="99472" fg:w="1274"/><text x="4.3885%" y="575.50"></text></g><g><title>GangWorker::loop (1,274 samples, 0.05%)</title><rect x="4.1385%" y="549" width="0.0530%" height="15" fill="rgb(225,139,18)" fg:x="99472" fg:w="1274"/><text x="4.3885%" y="559.50"></text></g><g><title>GC_Thread#0 (1,296 samples, 0.05%)</title><rect x="4.1376%" y="629" width="0.0539%" height="15" fill="rgb(230,137,11)" fg:x="99451" fg:w="1296"/><text x="4.3876%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (298 samples, 0.01%)</title><rect x="4.2015%" y="485" width="0.0124%" height="15" fill="rgb(212,28,1)" fg:x="100987" fg:w="298"/><text x="4.4515%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (479 samples, 0.02%)</title><rect x="4.1946%" y="501" width="0.0199%" height="15" fill="rgb(248,164,17)" fg:x="100822" fg:w="479"/><text x="4.4446%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (548 samples, 0.02%)</title><rect x="4.1943%" y="517" width="0.0228%" height="15" fill="rgb(222,171,42)" fg:x="100815" fg:w="548"/><text x="4.4443%" y="527.50"></text></g><g><title>G1ParTask::work (1,062 samples, 0.04%)</title><rect x="4.1943%" y="533" width="0.0442%" height="15" fill="rgb(243,84,45)" fg:x="100815" fg:w="1062"/><text x="4.4443%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (275 samples, 0.01%)</title><rect x="4.2271%" y="517" width="0.0114%" height="15" fill="rgb(252,49,23)" fg:x="101602" fg:w="275"/><text x="4.4771%" y="527.50"></text></g><g><title>__GI___clone (1,333 samples, 0.06%)</title><rect x="4.1925%" y="613" width="0.0555%" height="15" fill="rgb(215,19,7)" fg:x="100770" fg:w="1333"/><text x="4.4425%" y="623.50"></text></g><g><title>start_thread (1,333 samples, 0.06%)</title><rect x="4.1925%" y="597" width="0.0555%" height="15" fill="rgb(238,81,41)" fg:x="100770" fg:w="1333"/><text x="4.4425%" y="607.50"></text></g><g><title>thread_native_entry (1,333 samples, 0.06%)</title><rect x="4.1925%" y="581" width="0.0555%" height="15" fill="rgb(210,199,37)" fg:x="100770" fg:w="1333"/><text x="4.4425%" y="591.50"></text></g><g><title>Thread::call_run (1,333 samples, 0.06%)</title><rect x="4.1925%" y="565" width="0.0555%" height="15" fill="rgb(244,192,49)" fg:x="100770" fg:w="1333"/><text x="4.4425%" y="575.50"></text></g><g><title>GangWorker::loop (1,333 samples, 0.06%)</title><rect x="4.1925%" y="549" width="0.0555%" height="15" fill="rgb(226,211,11)" fg:x="100770" fg:w="1333"/><text x="4.4425%" y="559.50"></text></g><g><title>GC_Thread#1 (1,357 samples, 0.06%)</title><rect x="4.1915%" y="629" width="0.0565%" height="15" fill="rgb(236,162,54)" fg:x="100747" fg:w="1357"/><text x="4.4415%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (264 samples, 0.01%)</title><rect x="4.2554%" y="485" width="0.0110%" height="15" fill="rgb(220,229,9)" fg:x="102283" fg:w="264"/><text x="4.5054%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (418 samples, 0.02%)</title><rect x="4.2498%" y="501" width="0.0174%" height="15" fill="rgb(250,87,22)" fg:x="102149" fg:w="418"/><text x="4.4998%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (489 samples, 0.02%)</title><rect x="4.2495%" y="517" width="0.0203%" height="15" fill="rgb(239,43,17)" fg:x="102142" fg:w="489"/><text x="4.4995%" y="527.50"></text></g><g><title>InterpreterOopMap::iterate_oop (250 samples, 0.01%)</title><rect x="4.2853%" y="421" width="0.0104%" height="15" fill="rgb(231,177,25)" fg:x="103002" fg:w="250"/><text x="4.5353%" y="431.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (249 samples, 0.01%)</title><rect x="4.2854%" y="405" width="0.0104%" height="15" fill="rgb(219,179,1)" fg:x="103003" fg:w="249"/><text x="4.5354%" y="415.50"></text></g><g><title>frame::oops_interpreted_do (252 samples, 0.01%)</title><rect x="4.2853%" y="437" width="0.0105%" height="15" fill="rgb(238,219,53)" fg:x="103002" fg:w="252"/><text x="4.5353%" y="447.50"></text></g><g><title>G1RootProcessor::process_java_roots (402 samples, 0.02%)</title><rect x="4.2792%" y="501" width="0.0167%" height="15" fill="rgb(232,167,36)" fg:x="102854" fg:w="402"/><text x="4.5292%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (322 samples, 0.01%)</title><rect x="4.2825%" y="485" width="0.0134%" height="15" fill="rgb(244,19,51)" fg:x="102934" fg:w="322"/><text x="4.5325%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (322 samples, 0.01%)</title><rect x="4.2825%" y="469" width="0.0134%" height="15" fill="rgb(224,6,22)" fg:x="102934" fg:w="322"/><text x="4.5325%" y="479.50"></text></g><g><title>JavaThread::oops_do (321 samples, 0.01%)</title><rect x="4.2825%" y="453" width="0.0134%" height="15" fill="rgb(224,145,5)" fg:x="102935" fg:w="321"/><text x="4.5325%" y="463.50"></text></g><g><title>G1ParTask::work (1,127 samples, 0.05%)</title><rect x="4.2495%" y="533" width="0.0469%" height="15" fill="rgb(234,130,49)" fg:x="102142" fg:w="1127"/><text x="4.4995%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (416 samples, 0.02%)</title><rect x="4.2791%" y="517" width="0.0173%" height="15" fill="rgb(254,6,2)" fg:x="102853" fg:w="416"/><text x="4.5291%" y="527.50"></text></g><g><title>__GI___clone (1,395 samples, 0.06%)</title><rect x="4.2491%" y="613" width="0.0580%" height="15" fill="rgb(208,96,46)" fg:x="102131" fg:w="1395"/><text x="4.4991%" y="623.50"></text></g><g><title>start_thread (1,395 samples, 0.06%)</title><rect x="4.2491%" y="597" width="0.0580%" height="15" fill="rgb(239,3,39)" fg:x="102131" fg:w="1395"/><text x="4.4991%" y="607.50"></text></g><g><title>thread_native_entry (1,395 samples, 0.06%)</title><rect x="4.2491%" y="581" width="0.0580%" height="15" fill="rgb(233,210,1)" fg:x="102131" fg:w="1395"/><text x="4.4991%" y="591.50"></text></g><g><title>Thread::call_run (1,395 samples, 0.06%)</title><rect x="4.2491%" y="565" width="0.0580%" height="15" fill="rgb(244,137,37)" fg:x="102131" fg:w="1395"/><text x="4.4991%" y="575.50"></text></g><g><title>GangWorker::loop (1,395 samples, 0.06%)</title><rect x="4.2491%" y="549" width="0.0580%" height="15" fill="rgb(240,136,2)" fg:x="102131" fg:w="1395"/><text x="4.4991%" y="559.50"></text></g><g><title>GC_Thread#2 (1,423 samples, 0.06%)</title><rect x="4.2480%" y="629" width="0.0592%" height="15" fill="rgb(239,18,37)" fg:x="102104" fg:w="1423"/><text x="4.4980%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (257 samples, 0.01%)</title><rect x="4.3174%" y="485" width="0.0107%" height="15" fill="rgb(218,185,22)" fg:x="103774" fg:w="257"/><text x="4.5674%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (418 samples, 0.02%)</title><rect x="4.3110%" y="501" width="0.0174%" height="15" fill="rgb(225,218,4)" fg:x="103620" fg:w="418"/><text x="4.5610%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (488 samples, 0.02%)</title><rect x="4.3104%" y="517" width="0.0203%" height="15" fill="rgb(230,182,32)" fg:x="103604" fg:w="488"/><text x="4.5604%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (276 samples, 0.01%)</title><rect x="4.3367%" y="501" width="0.0115%" height="15" fill="rgb(242,56,43)" fg:x="104237" fg:w="276"/><text x="4.5867%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (276 samples, 0.01%)</title><rect x="4.3367%" y="485" width="0.0115%" height="15" fill="rgb(233,99,24)" fg:x="104237" fg:w="276"/><text x="4.5867%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (276 samples, 0.01%)</title><rect x="4.3367%" y="469" width="0.0115%" height="15" fill="rgb(234,209,42)" fg:x="104237" fg:w="276"/><text x="4.5867%" y="479.50"></text></g><g><title>JavaThread::oops_do (276 samples, 0.01%)</title><rect x="4.3367%" y="453" width="0.0115%" height="15" fill="rgb(227,7,12)" fg:x="104237" fg:w="276"/><text x="4.5867%" y="463.50"></text></g><g><title>G1ParTask::work (920 samples, 0.04%)</title><rect x="4.3104%" y="533" width="0.0383%" height="15" fill="rgb(245,203,43)" fg:x="103604" fg:w="920"/><text x="4.5604%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (288 samples, 0.01%)</title><rect x="4.3367%" y="517" width="0.0120%" height="15" fill="rgb(238,205,33)" fg:x="104236" fg:w="288"/><text x="4.5867%" y="527.50"></text></g><g><title>__GI___clone (1,230 samples, 0.05%)</title><rect x="4.3082%" y="613" width="0.0512%" height="15" fill="rgb(231,56,7)" fg:x="103553" fg:w="1230"/><text x="4.5582%" y="623.50"></text></g><g><title>start_thread (1,230 samples, 0.05%)</title><rect x="4.3082%" y="597" width="0.0512%" height="15" fill="rgb(244,186,29)" fg:x="103553" fg:w="1230"/><text x="4.5582%" y="607.50"></text></g><g><title>thread_native_entry (1,230 samples, 0.05%)</title><rect x="4.3082%" y="581" width="0.0512%" height="15" fill="rgb(234,111,31)" fg:x="103553" fg:w="1230"/><text x="4.5582%" y="591.50"></text></g><g><title>Thread::call_run (1,230 samples, 0.05%)</title><rect x="4.3082%" y="565" width="0.0512%" height="15" fill="rgb(241,149,10)" fg:x="103553" fg:w="1230"/><text x="4.5582%" y="575.50"></text></g><g><title>GangWorker::loop (1,230 samples, 0.05%)</title><rect x="4.3082%" y="549" width="0.0512%" height="15" fill="rgb(249,206,44)" fg:x="103553" fg:w="1230"/><text x="4.5582%" y="559.50"></text></g><g><title>GC_Thread#3 (1,259 samples, 0.05%)</title><rect x="4.3072%" y="629" width="0.0524%" height="15" fill="rgb(251,153,30)" fg:x="103527" fg:w="1259"/><text x="4.5572%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (262 samples, 0.01%)</title><rect x="4.3680%" y="485" width="0.0109%" height="15" fill="rgb(239,152,38)" fg:x="104989" fg:w="262"/><text x="4.6180%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (409 samples, 0.02%)</title><rect x="4.3622%" y="501" width="0.0170%" height="15" fill="rgb(249,139,47)" fg:x="104850" fg:w="409"/><text x="4.6122%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (477 samples, 0.02%)</title><rect x="4.3616%" y="517" width="0.0198%" height="15" fill="rgb(244,64,35)" fg:x="104835" fg:w="477"/><text x="4.6116%" y="527.50"></text></g><g><title>G1ParTask::work (1,012 samples, 0.04%)</title><rect x="4.3615%" y="533" width="0.0421%" height="15" fill="rgb(216,46,15)" fg:x="104834" fg:w="1012"/><text x="4.6115%" y="543.50"></text></g><g><title>__GI___clone (1,273 samples, 0.05%)</title><rect x="4.3607%" y="613" width="0.0530%" height="15" fill="rgb(250,74,19)" fg:x="104813" fg:w="1273"/><text x="4.6107%" y="623.50"></text></g><g><title>start_thread (1,273 samples, 0.05%)</title><rect x="4.3607%" y="597" width="0.0530%" height="15" fill="rgb(249,42,33)" fg:x="104813" fg:w="1273"/><text x="4.6107%" y="607.50"></text></g><g><title>thread_native_entry (1,273 samples, 0.05%)</title><rect x="4.3607%" y="581" width="0.0530%" height="15" fill="rgb(242,149,17)" fg:x="104813" fg:w="1273"/><text x="4.6107%" y="591.50"></text></g><g><title>Thread::call_run (1,273 samples, 0.05%)</title><rect x="4.3607%" y="565" width="0.0530%" height="15" fill="rgb(244,29,21)" fg:x="104813" fg:w="1273"/><text x="4.6107%" y="575.50"></text></g><g><title>GangWorker::loop (1,273 samples, 0.05%)</title><rect x="4.3607%" y="549" width="0.0530%" height="15" fill="rgb(220,130,37)" fg:x="104813" fg:w="1273"/><text x="4.6107%" y="559.50"></text></g><g><title>GC_Thread#4 (1,304 samples, 0.05%)</title><rect x="4.3595%" y="629" width="0.0543%" height="15" fill="rgb(211,67,2)" fg:x="104786" fg:w="1304"/><text x="4.6095%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue (355 samples, 0.01%)</title><rect x="4.4156%" y="501" width="0.0148%" height="15" fill="rgb(235,68,52)" fg:x="106134" fg:w="355"/><text x="4.6656%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (414 samples, 0.02%)</title><rect x="4.4153%" y="517" width="0.0172%" height="15" fill="rgb(246,142,3)" fg:x="106125" fg:w="414"/><text x="4.6653%" y="527.50"></text></g><g><title>G1ParTask::work (935 samples, 0.04%)</title><rect x="4.4153%" y="533" width="0.0389%" height="15" fill="rgb(241,25,7)" fg:x="106125" fg:w="935"/><text x="4.6653%" y="543.50"></text></g><g><title>__GI___clone (1,239 samples, 0.05%)</title><rect x="4.4145%" y="613" width="0.0515%" height="15" fill="rgb(242,119,39)" fg:x="106107" fg:w="1239"/><text x="4.6645%" y="623.50"></text></g><g><title>start_thread (1,239 samples, 0.05%)</title><rect x="4.4145%" y="597" width="0.0515%" height="15" fill="rgb(241,98,45)" fg:x="106107" fg:w="1239"/><text x="4.6645%" y="607.50"></text></g><g><title>thread_native_entry (1,239 samples, 0.05%)</title><rect x="4.4145%" y="581" width="0.0515%" height="15" fill="rgb(254,28,30)" fg:x="106107" fg:w="1239"/><text x="4.6645%" y="591.50"></text></g><g><title>Thread::call_run (1,239 samples, 0.05%)</title><rect x="4.4145%" y="565" width="0.0515%" height="15" fill="rgb(241,142,54)" fg:x="106107" fg:w="1239"/><text x="4.6645%" y="575.50"></text></g><g><title>GangWorker::loop (1,239 samples, 0.05%)</title><rect x="4.4145%" y="549" width="0.0515%" height="15" fill="rgb(222,85,15)" fg:x="106107" fg:w="1239"/><text x="4.6645%" y="559.50"></text></g><g><title>GC_Thread#5 (1,257 samples, 0.05%)</title><rect x="4.4138%" y="629" width="0.0523%" height="15" fill="rgb(210,85,47)" fg:x="106090" fg:w="1257"/><text x="4.6638%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue (313 samples, 0.01%)</title><rect x="4.4679%" y="501" width="0.0130%" height="15" fill="rgb(224,206,25)" fg:x="107391" fg:w="313"/><text x="4.7179%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (368 samples, 0.02%)</title><rect x="4.4676%" y="517" width="0.0153%" height="15" fill="rgb(243,201,19)" fg:x="107384" fg:w="368"/><text x="4.7176%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (290 samples, 0.01%)</title><rect x="4.4946%" y="501" width="0.0121%" height="15" fill="rgb(236,59,4)" fg:x="108033" fg:w="290"/><text x="4.7446%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (286 samples, 0.01%)</title><rect x="4.4948%" y="485" width="0.0119%" height="15" fill="rgb(254,179,45)" fg:x="108037" fg:w="286"/><text x="4.7448%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (286 samples, 0.01%)</title><rect x="4.4948%" y="469" width="0.0119%" height="15" fill="rgb(226,14,10)" fg:x="108037" fg:w="286"/><text x="4.7448%" y="479.50"></text></g><g><title>JavaThread::oops_do (286 samples, 0.01%)</title><rect x="4.4948%" y="453" width="0.0119%" height="15" fill="rgb(244,27,41)" fg:x="108037" fg:w="286"/><text x="4.7448%" y="463.50"></text></g><g><title>G1ParTask::work (951 samples, 0.04%)</title><rect x="4.4676%" y="533" width="0.0396%" height="15" fill="rgb(235,35,32)" fg:x="107384" fg:w="951"/><text x="4.7176%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (312 samples, 0.01%)</title><rect x="4.4942%" y="517" width="0.0130%" height="15" fill="rgb(218,68,31)" fg:x="108023" fg:w="312"/><text x="4.7442%" y="527.50"></text></g><g><title>__GI___clone (1,212 samples, 0.05%)</title><rect x="4.4669%" y="613" width="0.0504%" height="15" fill="rgb(207,120,37)" fg:x="107366" fg:w="1212"/><text x="4.7169%" y="623.50"></text></g><g><title>start_thread (1,212 samples, 0.05%)</title><rect x="4.4669%" y="597" width="0.0504%" height="15" fill="rgb(227,98,0)" fg:x="107366" fg:w="1212"/><text x="4.7169%" y="607.50"></text></g><g><title>thread_native_entry (1,212 samples, 0.05%)</title><rect x="4.4669%" y="581" width="0.0504%" height="15" fill="rgb(207,7,3)" fg:x="107366" fg:w="1212"/><text x="4.7169%" y="591.50"></text></g><g><title>Thread::call_run (1,212 samples, 0.05%)</title><rect x="4.4669%" y="565" width="0.0504%" height="15" fill="rgb(206,98,19)" fg:x="107366" fg:w="1212"/><text x="4.7169%" y="575.50"></text></g><g><title>GangWorker::loop (1,212 samples, 0.05%)</title><rect x="4.4669%" y="549" width="0.0504%" height="15" fill="rgb(217,5,26)" fg:x="107366" fg:w="1212"/><text x="4.7169%" y="559.50"></text></g><g><title>GC_Thread#6 (1,232 samples, 0.05%)</title><rect x="4.4661%" y="629" width="0.0513%" height="15" fill="rgb(235,190,38)" fg:x="107347" fg:w="1232"/><text x="4.7161%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (267 samples, 0.01%)</title><rect x="4.5264%" y="485" width="0.0111%" height="15" fill="rgb(247,86,24)" fg:x="108796" fg:w="267"/><text x="4.7764%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (424 samples, 0.02%)</title><rect x="4.5204%" y="501" width="0.0176%" height="15" fill="rgb(205,101,16)" fg:x="108652" fg:w="424"/><text x="4.7704%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (469 samples, 0.02%)</title><rect x="4.5201%" y="517" width="0.0195%" height="15" fill="rgb(246,168,33)" fg:x="108645" fg:w="469"/><text x="4.7701%" y="527.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (243 samples, 0.01%)</title><rect x="4.5396%" y="517" width="0.0101%" height="15" fill="rgb(231,114,1)" fg:x="109114" fg:w="243"/><text x="4.7896%" y="527.50"></text></g><g><title>G1RemSet::update_rem_set (243 samples, 0.01%)</title><rect x="4.5396%" y="501" width="0.0101%" height="15" fill="rgb(207,184,53)" fg:x="109114" fg:w="243"/><text x="4.7896%" y="511.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (243 samples, 0.01%)</title><rect x="4.5396%" y="485" width="0.0101%" height="15" fill="rgb(224,95,51)" fg:x="109114" fg:w="243"/><text x="4.7896%" y="495.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (243 samples, 0.01%)</title><rect x="4.5396%" y="469" width="0.0101%" height="15" fill="rgb(212,188,45)" fg:x="109114" fg:w="243"/><text x="4.7896%" y="479.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (243 samples, 0.01%)</title><rect x="4.5396%" y="453" width="0.0101%" height="15" fill="rgb(223,154,38)" fg:x="109114" fg:w="243"/><text x="4.7896%" y="463.50"></text></g><g><title>G1ParTask::work (978 samples, 0.04%)</title><rect x="4.5201%" y="533" width="0.0407%" height="15" fill="rgb(251,22,52)" fg:x="108645" fg:w="978"/><text x="4.7701%" y="543.50"></text></g><g><title>__GI___clone (1,249 samples, 0.05%)</title><rect x="4.5181%" y="613" width="0.0520%" height="15" fill="rgb(229,209,22)" fg:x="108596" fg:w="1249"/><text x="4.7681%" y="623.50"></text></g><g><title>start_thread (1,249 samples, 0.05%)</title><rect x="4.5181%" y="597" width="0.0520%" height="15" fill="rgb(234,138,34)" fg:x="108596" fg:w="1249"/><text x="4.7681%" y="607.50"></text></g><g><title>thread_native_entry (1,249 samples, 0.05%)</title><rect x="4.5181%" y="581" width="0.0520%" height="15" fill="rgb(212,95,11)" fg:x="108596" fg:w="1249"/><text x="4.7681%" y="591.50"></text></g><g><title>Thread::call_run (1,249 samples, 0.05%)</title><rect x="4.5181%" y="565" width="0.0520%" height="15" fill="rgb(240,179,47)" fg:x="108596" fg:w="1249"/><text x="4.7681%" y="575.50"></text></g><g><title>GangWorker::loop (1,249 samples, 0.05%)</title><rect x="4.5181%" y="549" width="0.0520%" height="15" fill="rgb(240,163,11)" fg:x="108596" fg:w="1249"/><text x="4.7681%" y="559.50"></text></g><g><title>GC_Thread#7 (1,267 samples, 0.05%)</title><rect x="4.5173%" y="629" width="0.0527%" height="15" fill="rgb(236,37,12)" fg:x="108579" fg:w="1267"/><text x="4.7673%" y="639.50"></text></g><g><title>futex_wait_queue_me (269 samples, 0.01%)</title><rect x="4.5848%" y="341" width="0.0112%" height="15" fill="rgb(232,164,16)" fg:x="110201" fg:w="269"/><text x="4.8348%" y="351.50"></text></g><g><title>schedule (248 samples, 0.01%)</title><rect x="4.5857%" y="325" width="0.0103%" height="15" fill="rgb(244,205,15)" fg:x="110222" fg:w="248"/><text x="4.8357%" y="335.50"></text></g><g><title>__schedule (246 samples, 0.01%)</title><rect x="4.5858%" y="309" width="0.0102%" height="15" fill="rgb(223,117,47)" fg:x="110224" fg:w="246"/><text x="4.8358%" y="319.50"></text></g><g><title>do_futex (288 samples, 0.01%)</title><rect x="4.5847%" y="373" width="0.0120%" height="15" fill="rgb(244,107,35)" fg:x="110197" fg:w="288"/><text x="4.8347%" y="383.50"></text></g><g><title>futex_wait (287 samples, 0.01%)</title><rect x="4.5847%" y="357" width="0.0119%" height="15" fill="rgb(205,140,8)" fg:x="110198" fg:w="287"/><text x="4.8347%" y="367.50"></text></g><g><title>do_syscall_64 (293 samples, 0.01%)</title><rect x="4.5845%" y="405" width="0.0122%" height="15" fill="rgb(228,84,46)" fg:x="110194" fg:w="293"/><text x="4.8345%" y="415.50"></text></g><g><title>__x64_sys_futex (293 samples, 0.01%)</title><rect x="4.5845%" y="389" width="0.0122%" height="15" fill="rgb(254,188,9)" fg:x="110194" fg:w="293"/><text x="4.8345%" y="399.50"></text></g><g><title>__pthread_cond_timedwait (324 samples, 0.01%)</title><rect x="4.5835%" y="469" width="0.0135%" height="15" fill="rgb(206,112,54)" fg:x="110170" fg:w="324"/><text x="4.8335%" y="479.50"></text></g><g><title>__pthread_cond_wait_common (322 samples, 0.01%)</title><rect x="4.5836%" y="453" width="0.0134%" height="15" fill="rgb(216,84,49)" fg:x="110172" fg:w="322"/><text x="4.8336%" y="463.50"></text></g><g><title>futex_abstimed_wait_cancelable (315 samples, 0.01%)</title><rect x="4.5839%" y="437" width="0.0131%" height="15" fill="rgb(214,194,35)" fg:x="110179" fg:w="315"/><text x="4.8339%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (305 samples, 0.01%)</title><rect x="4.5843%" y="421" width="0.0127%" height="15" fill="rgb(249,28,3)" fg:x="110189" fg:w="305"/><text x="4.8343%" y="431.50"></text></g><g><title>Monitor::wait (387 samples, 0.02%)</title><rect x="4.5827%" y="517" width="0.0161%" height="15" fill="rgb(222,56,52)" fg:x="110149" fg:w="387"/><text x="4.8327%" y="527.50"></text></g><g><title>Monitor::IWait (384 samples, 0.02%)</title><rect x="4.5828%" y="501" width="0.0160%" height="15" fill="rgb(245,217,50)" fg:x="110152" fg:w="384"/><text x="4.8328%" y="511.50"></text></g><g><title>os::PlatformEvent::park (373 samples, 0.02%)</title><rect x="4.5833%" y="485" width="0.0155%" height="15" fill="rgb(213,201,24)" fg:x="110163" fg:w="373"/><text x="4.8333%" y="495.50"></text></g><g><title>__GI___clone (616 samples, 0.03%)</title><rect x="4.5822%" y="613" width="0.0256%" height="15" fill="rgb(248,116,28)" fg:x="110138" fg:w="616"/><text x="4.8322%" y="623.50"></text></g><g><title>start_thread (616 samples, 0.03%)</title><rect x="4.5822%" y="597" width="0.0256%" height="15" fill="rgb(219,72,43)" fg:x="110138" fg:w="616"/><text x="4.8322%" y="607.50"></text></g><g><title>thread_native_entry (616 samples, 0.03%)</title><rect x="4.5822%" y="581" width="0.0256%" height="15" fill="rgb(209,138,14)" fg:x="110138" fg:w="616"/><text x="4.8322%" y="591.50"></text></g><g><title>Thread::call_run (616 samples, 0.03%)</title><rect x="4.5822%" y="565" width="0.0256%" height="15" fill="rgb(222,18,33)" fg:x="110138" fg:w="616"/><text x="4.8322%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (616 samples, 0.03%)</title><rect x="4.5822%" y="549" width="0.0256%" height="15" fill="rgb(213,199,7)" fg:x="110138" fg:w="616"/><text x="4.8322%" y="559.50"></text></g><g><title>NMethodSweeper::sweeper_loop (615 samples, 0.03%)</title><rect x="4.5823%" y="533" width="0.0256%" height="15" fill="rgb(250,110,10)" fg:x="110139" fg:w="615"/><text x="4.8323%" y="543.50"></text></g><g><title>Sweeper_thread (641 samples, 0.03%)</title><rect x="4.5813%" y="629" width="0.0267%" height="15" fill="rgb(248,123,6)" fg:x="110117" fg:w="641"/><text x="4.8313%" y="639.50"></text></g><g><title>[perf-996087.map] (950 samples, 0.04%)</title><rect x="4.6102%" y="613" width="0.0395%" height="15" fill="rgb(206,91,31)" fg:x="110810" fg:w="950"/><text x="4.8602%" y="623.50"></text></g><g><title>Thread-0 (1,074 samples, 0.04%)</title><rect x="4.6080%" y="629" width="0.0447%" height="15" fill="rgb(211,154,13)" fg:x="110758" fg:w="1074"/><text x="4.8580%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (241 samples, 0.01%)</title><rect x="4.6580%" y="469" width="0.0100%" height="15" fill="rgb(225,148,7)" fg:x="111959" fg:w="241"/><text x="4.9080%" y="479.50"></text></g><g><title>__pthread_cond_wait_common (241 samples, 0.01%)</title><rect x="4.6580%" y="453" width="0.0100%" height="15" fill="rgb(220,160,43)" fg:x="111959" fg:w="241"/><text x="4.9080%" y="463.50"></text></g><g><title>Monitor::wait (283 samples, 0.01%)</title><rect x="4.6570%" y="517" width="0.0118%" height="15" fill="rgb(213,52,39)" fg:x="111936" fg:w="283"/><text x="4.9070%" y="527.50"></text></g><g><title>Monitor::IWait (280 samples, 0.01%)</title><rect x="4.6571%" y="501" width="0.0116%" height="15" fill="rgb(243,137,7)" fg:x="111939" fg:w="280"/><text x="4.9071%" y="511.50"></text></g><g><title>os::PlatformEvent::park (269 samples, 0.01%)</title><rect x="4.6576%" y="485" width="0.0112%" height="15" fill="rgb(230,79,13)" fg:x="111950" fg:w="269"/><text x="4.9076%" y="495.50"></text></g><g><title>__GI___clone (369 samples, 0.02%)</title><rect x="4.6536%" y="613" width="0.0154%" height="15" fill="rgb(247,105,23)" fg:x="111855" fg:w="369"/><text x="4.9036%" y="623.50"></text></g><g><title>start_thread (369 samples, 0.02%)</title><rect x="4.6536%" y="597" width="0.0154%" height="15" fill="rgb(223,179,41)" fg:x="111855" fg:w="369"/><text x="4.9036%" y="607.50"></text></g><g><title>thread_native_entry (369 samples, 0.02%)</title><rect x="4.6536%" y="581" width="0.0154%" height="15" fill="rgb(218,9,34)" fg:x="111855" fg:w="369"/><text x="4.9036%" y="591.50"></text></g><g><title>Thread::call_run (369 samples, 0.02%)</title><rect x="4.6536%" y="565" width="0.0154%" height="15" fill="rgb(222,106,8)" fg:x="111855" fg:w="369"/><text x="4.9036%" y="575.50"></text></g><g><title>WatcherThread::run (369 samples, 0.02%)</title><rect x="4.6536%" y="549" width="0.0154%" height="15" fill="rgb(211,220,0)" fg:x="111855" fg:w="369"/><text x="4.9036%" y="559.50"></text></g><g><title>WatcherThread::sleep (294 samples, 0.01%)</title><rect x="4.6568%" y="533" width="0.0122%" height="15" fill="rgb(229,52,16)" fg:x="111930" fg:w="294"/><text x="4.9068%" y="543.50"></text></g><g><title>VM_Periodic_Tas (393 samples, 0.02%)</title><rect x="4.6527%" y="629" width="0.0164%" height="15" fill="rgb(212,155,18)" fg:x="111832" fg:w="393"/><text x="4.9027%" y="639.50"></text></g><g><title>SafepointSynchronize::begin (449 samples, 0.02%)</title><rect x="4.6795%" y="517" width="0.0187%" height="15" fill="rgb(242,21,14)" fg:x="112476" fg:w="449"/><text x="4.9295%" y="527.50"></text></g><g><title>__GI___clone (791 samples, 0.03%)</title><rect x="4.6747%" y="613" width="0.0329%" height="15" fill="rgb(222,19,48)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="623.50"></text></g><g><title>start_thread (791 samples, 0.03%)</title><rect x="4.6747%" y="597" width="0.0329%" height="15" fill="rgb(232,45,27)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="607.50"></text></g><g><title>thread_native_entry (791 samples, 0.03%)</title><rect x="4.6747%" y="581" width="0.0329%" height="15" fill="rgb(249,103,42)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="591.50"></text></g><g><title>Thread::call_run (791 samples, 0.03%)</title><rect x="4.6747%" y="565" width="0.0329%" height="15" fill="rgb(246,81,33)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="575.50"></text></g><g><title>VMThread::run (791 samples, 0.03%)</title><rect x="4.6747%" y="549" width="0.0329%" height="15" fill="rgb(252,33,42)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="559.50"></text></g><g><title>VMThread::loop (791 samples, 0.03%)</title><rect x="4.6747%" y="533" width="0.0329%" height="15" fill="rgb(209,212,41)" fg:x="112360" fg:w="791"/><text x="4.9247%" y="543.50"></text></g><g><title>VM_Thread (931 samples, 0.04%)</title><rect x="4.6690%" y="629" width="0.0387%" height="15" fill="rgb(207,154,6)" fg:x="112225" fg:w="931"/><text x="4.9190%" y="639.50"></text></g><g><title>do_syscall_64 (245 samples, 0.01%)</title><rect x="4.7170%" y="581" width="0.0102%" height="15" fill="rgb(223,64,47)" fg:x="113378" fg:w="245"/><text x="4.9670%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (258 samples, 0.01%)</title><rect x="4.7170%" y="597" width="0.0107%" height="15" fill="rgb(211,161,38)" fg:x="113378" fg:w="258"/><text x="4.9670%" y="607.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (490 samples, 0.02%)</title><rect x="4.7089%" y="613" width="0.0204%" height="15" fill="rgb(219,138,40)" fg:x="113182" fg:w="490"/><text x="4.9589%" y="623.50"></text></g><g><title>bazel (524 samples, 0.02%)</title><rect x="4.7089%" y="629" width="0.0218%" height="15" fill="rgb(241,228,46)" fg:x="113182" fg:w="524"/><text x="4.9589%" y="639.50"></text></g><g><title>[ld-2.31.so] (254 samples, 0.01%)</title><rect x="4.7357%" y="549" width="0.0106%" height="15" fill="rgb(223,209,38)" fg:x="113827" fg:w="254"/><text x="4.9857%" y="559.50"></text></g><g><title>_dl_start_final (259 samples, 0.01%)</title><rect x="4.7357%" y="581" width="0.0108%" height="15" fill="rgb(236,164,45)" fg:x="113827" fg:w="259"/><text x="4.9857%" y="591.50"></text></g><g><title>_dl_sysdep_start (259 samples, 0.01%)</title><rect x="4.7357%" y="565" width="0.0108%" height="15" fill="rgb(231,15,5)" fg:x="113827" fg:w="259"/><text x="4.9857%" y="575.50"></text></g><g><title>_dl_start (260 samples, 0.01%)</title><rect x="4.7357%" y="597" width="0.0108%" height="15" fill="rgb(252,35,15)" fg:x="113827" fg:w="260"/><text x="4.9857%" y="607.50"></text></g><g><title>_start (316 samples, 0.01%)</title><rect x="4.7334%" y="613" width="0.0131%" height="15" fill="rgb(248,181,18)" fg:x="113772" fg:w="316"/><text x="4.9834%" y="623.50"></text></g><g><title>build-runfiles (449 samples, 0.02%)</title><rect x="4.7307%" y="629" width="0.0187%" height="15" fill="rgb(233,39,42)" fg:x="113706" fg:w="449"/><text x="4.9807%" y="639.50"></text></g><g><title>load_elf_binary (336 samples, 0.01%)</title><rect x="4.7823%" y="197" width="0.0140%" height="15" fill="rgb(238,110,33)" fg:x="114947" fg:w="336"/><text x="5.0323%" y="207.50"></text></g><g><title>__perf_event_task_sched_in (476 samples, 0.02%)</title><rect x="4.7997%" y="117" width="0.0198%" height="15" fill="rgb(233,195,10)" fg:x="115366" fg:w="476"/><text x="5.0497%" y="127.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (472 samples, 0.02%)</title><rect x="4.7999%" y="101" width="0.0196%" height="15" fill="rgb(254,105,3)" fg:x="115370" fg:w="472"/><text x="5.0499%" y="111.50"></text></g><g><title>native_write_msr (470 samples, 0.02%)</title><rect x="4.8000%" y="85" width="0.0196%" height="15" fill="rgb(221,225,9)" fg:x="115372" fg:w="470"/><text x="5.0500%" y="95.50"></text></g><g><title>finish_task_switch (495 samples, 0.02%)</title><rect x="4.7995%" y="133" width="0.0206%" height="15" fill="rgb(224,227,45)" fg:x="115361" fg:w="495"/><text x="5.0495%" y="143.50"></text></g><g><title>_cond_resched (502 samples, 0.02%)</title><rect x="4.7994%" y="165" width="0.0209%" height="15" fill="rgb(229,198,43)" fg:x="115358" fg:w="502"/><text x="5.0494%" y="175.50"></text></g><g><title>__schedule (502 samples, 0.02%)</title><rect x="4.7994%" y="149" width="0.0209%" height="15" fill="rgb(206,209,35)" fg:x="115358" fg:w="502"/><text x="5.0494%" y="159.50"></text></g><g><title>sched_exec (551 samples, 0.02%)</title><rect x="4.7975%" y="197" width="0.0229%" height="15" fill="rgb(245,195,53)" fg:x="115313" fg:w="551"/><text x="5.0475%" y="207.50"></text></g><g><title>stop_one_cpu (514 samples, 0.02%)</title><rect x="4.7991%" y="181" width="0.0214%" height="15" fill="rgb(240,92,26)" fg:x="115350" fg:w="514"/><text x="5.0491%" y="191.50"></text></g><g><title>bprm_execve (1,266 samples, 0.05%)</title><rect x="4.7775%" y="213" width="0.0527%" height="15" fill="rgb(207,40,23)" fg:x="114831" fg:w="1266"/><text x="5.0275%" y="223.50"></text></g><g><title>do_execveat_common (1,450 samples, 0.06%)</title><rect x="4.7760%" y="229" width="0.0603%" height="15" fill="rgb(223,111,35)" fg:x="114796" fg:w="1450"/><text x="5.0260%" y="239.50"></text></g><g><title>__x64_sys_execve (1,460 samples, 0.06%)</title><rect x="4.7759%" y="245" width="0.0607%" height="15" fill="rgb(229,147,28)" fg:x="114794" fg:w="1460"/><text x="5.0259%" y="255.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,461 samples, 0.06%)</title><rect x="4.7759%" y="277" width="0.0608%" height="15" fill="rgb(211,29,28)" fg:x="114794" fg:w="1461"/><text x="5.0259%" y="287.50"></text></g><g><title>do_syscall_64 (1,461 samples, 0.06%)</title><rect x="4.7759%" y="261" width="0.0608%" height="15" fill="rgb(228,72,33)" fg:x="114794" fg:w="1461"/><text x="5.0259%" y="271.50"></text></g><g><title>__GI_execve (1,463 samples, 0.06%)</title><rect x="4.7759%" y="293" width="0.0609%" height="15" fill="rgb(205,214,31)" fg:x="114793" fg:w="1463"/><text x="5.0259%" y="303.50"></text></g><g><title>[dash] (1,767 samples, 0.07%)</title><rect x="4.7676%" y="309" width="0.0735%" height="15" fill="rgb(224,111,15)" fg:x="114593" fg:w="1767"/><text x="5.0176%" y="319.50"></text></g><g><title>__perf_event_task_sched_in (5,062 samples, 0.21%)</title><rect x="4.8598%" y="181" width="0.2106%" height="15" fill="rgb(253,21,26)" fg:x="116809" fg:w="5062"/><text x="5.1098%" y="191.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,993 samples, 0.21%)</title><rect x="4.8626%" y="165" width="0.2077%" height="15" fill="rgb(245,139,43)" fg:x="116878" fg:w="4993"/><text x="5.1126%" y="175.50"></text></g><g><title>native_write_msr (4,953 samples, 0.21%)</title><rect x="4.8643%" y="149" width="0.2061%" height="15" fill="rgb(252,170,7)" fg:x="116918" fg:w="4953"/><text x="5.1143%" y="159.50"></text></g><g><title>finish_task_switch (5,494 samples, 0.23%)</title><rect x="4.8520%" y="197" width="0.2286%" height="15" fill="rgb(231,118,14)" fg:x="116623" fg:w="5494"/><text x="5.1020%" y="207.50"></text></g><g><title>schedule (5,578 samples, 0.23%)</title><rect x="4.8503%" y="229" width="0.2321%" height="15" fill="rgb(238,83,0)" fg:x="116583" fg:w="5578"/><text x="5.1003%" y="239.50"></text></g><g><title>__schedule (5,573 samples, 0.23%)</title><rect x="4.8506%" y="213" width="0.2319%" height="15" fill="rgb(221,39,39)" fg:x="116588" fg:w="5573"/><text x="5.1006%" y="223.50"></text></g><g><title>release_task (307 samples, 0.01%)</title><rect x="5.0857%" y="213" width="0.0128%" height="15" fill="rgb(222,119,46)" fg:x="122241" fg:w="307"/><text x="5.3357%" y="223.50"></text></g><g><title>do_syscall_64 (6,082 samples, 0.25%)</title><rect x="4.8466%" y="277" width="0.2530%" height="15" fill="rgb(222,165,49)" fg:x="116492" fg:w="6082"/><text x="5.0966%" y="287.50"></text></g><g><title>kernel_wait4 (6,052 samples, 0.25%)</title><rect x="4.8478%" y="261" width="0.2518%" height="15" fill="rgb(219,113,52)" fg:x="116522" fg:w="6052"/><text x="5.0978%" y="271.50"></text></g><g><title>do_wait (6,043 samples, 0.25%)</title><rect x="4.8482%" y="245" width="0.2514%" height="15" fill="rgb(214,7,15)" fg:x="116531" fg:w="6043"/><text x="5.0982%" y="255.50"></text></g><g><title>wait_consider_task (413 samples, 0.02%)</title><rect x="5.0824%" y="229" width="0.0172%" height="15" fill="rgb(235,32,4)" fg:x="122161" fg:w="413"/><text x="5.3324%" y="239.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (6,243 samples, 0.26%)</title><rect x="4.8465%" y="293" width="0.2597%" height="15" fill="rgb(238,90,54)" fg:x="116491" fg:w="6243"/><text x="5.0965%" y="303.50"></text></g><g><title>__GI___wait4 (6,329 samples, 0.26%)</title><rect x="4.8450%" y="309" width="0.2633%" height="15" fill="rgb(213,208,19)" fg:x="116454" fg:w="6329"/><text x="5.0950%" y="319.50"></text></g><g><title>[dash] (8,510 samples, 0.35%)</title><rect x="4.7658%" y="325" width="0.3541%" height="15" fill="rgb(233,156,4)" fg:x="114550" fg:w="8510"/><text x="5.0158%" y="335.50"></text></g><g><title>[dash] (8,795 samples, 0.37%)</title><rect x="4.7631%" y="341" width="0.3659%" height="15" fill="rgb(207,194,5)" fg:x="114487" fg:w="8795"/><text x="5.0131%" y="351.50"></text></g><g><title>dup_mm (808 samples, 0.03%)</title><rect x="5.1657%" y="229" width="0.0336%" height="15" fill="rgb(206,111,30)" fg:x="124162" fg:w="808"/><text x="5.4157%" y="239.50"></text></g><g><title>inherit_task_group.isra.0 (306 samples, 0.01%)</title><rect x="5.2043%" y="213" width="0.0127%" height="15" fill="rgb(243,70,54)" fg:x="125090" fg:w="306"/><text x="5.4543%" y="223.50"></text></g><g><title>inherit_event.constprop.0 (294 samples, 0.01%)</title><rect x="5.2048%" y="197" width="0.0122%" height="15" fill="rgb(242,28,8)" fg:x="125102" fg:w="294"/><text x="5.4548%" y="207.50"></text></g><g><title>perf_event_init_task (325 samples, 0.01%)</title><rect x="5.2040%" y="229" width="0.0135%" height="15" fill="rgb(219,106,18)" fg:x="125083" fg:w="325"/><text x="5.4540%" y="239.50"></text></g><g><title>copy_process (1,570 samples, 0.07%)</title><rect x="5.1534%" y="245" width="0.0653%" height="15" fill="rgb(244,222,10)" fg:x="123866" fg:w="1570"/><text x="5.4034%" y="255.50"></text></g><g><title>__do_sys_clone (1,658 samples, 0.07%)</title><rect x="5.1533%" y="277" width="0.0690%" height="15" fill="rgb(236,179,52)" fg:x="123864" fg:w="1658"/><text x="5.4033%" y="287.50"></text></g><g><title>kernel_clone (1,656 samples, 0.07%)</title><rect x="5.1534%" y="261" width="0.0689%" height="15" fill="rgb(213,23,39)" fg:x="123866" fg:w="1656"/><text x="5.4034%" y="271.50"></text></g><g><title>do_syscall_64 (1,660 samples, 0.07%)</title><rect x="5.1532%" y="293" width="0.0691%" height="15" fill="rgb(238,48,10)" fg:x="123863" fg:w="1660"/><text x="5.4032%" y="303.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,662 samples, 0.07%)</title><rect x="5.1532%" y="309" width="0.0691%" height="15" fill="rgb(251,196,23)" fg:x="123862" fg:w="1662"/><text x="5.4032%" y="319.50"></text></g><g><title>exc_page_fault (290 samples, 0.01%)</title><rect x="5.2317%" y="245" width="0.0121%" height="15" fill="rgb(250,152,24)" fg:x="125750" fg:w="290"/><text x="5.4817%" y="255.50"></text></g><g><title>do_user_addr_fault (283 samples, 0.01%)</title><rect x="5.2320%" y="229" width="0.0118%" height="15" fill="rgb(209,150,17)" fg:x="125757" fg:w="283"/><text x="5.4820%" y="239.50"></text></g><g><title>__put_user_nocheck_4 (445 samples, 0.02%)</title><rect x="5.2254%" y="277" width="0.0185%" height="15" fill="rgb(234,202,34)" fg:x="125597" fg:w="445"/><text x="5.4754%" y="287.50"></text></g><g><title>asm_exc_page_fault (423 samples, 0.02%)</title><rect x="5.2263%" y="261" width="0.0176%" height="15" fill="rgb(253,148,53)" fg:x="125619" fg:w="423"/><text x="5.4763%" y="271.50"></text></g><g><title>__perf_event_task_sched_in (5,722 samples, 0.24%)</title><rect x="5.2517%" y="261" width="0.2381%" height="15" fill="rgb(218,129,16)" fg:x="126230" fg:w="5722"/><text x="5.5017%" y="271.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,600 samples, 0.23%)</title><rect x="5.2568%" y="245" width="0.2330%" height="15" fill="rgb(216,85,19)" fg:x="126352" fg:w="5600"/><text x="5.5068%" y="255.50"></text></g><g><title>native_write_msr (5,569 samples, 0.23%)</title><rect x="5.2581%" y="229" width="0.2317%" height="15" fill="rgb(235,228,7)" fg:x="126383" fg:w="5569"/><text x="5.5081%" y="239.50"></text></g><g><title>schedule_tail (6,544 samples, 0.27%)</title><rect x="5.2245%" y="293" width="0.2723%" height="15" fill="rgb(245,175,0)" fg:x="125577" fg:w="6544"/><text x="5.4745%" y="303.50"></text></g><g><title>finish_task_switch (6,045 samples, 0.25%)</title><rect x="5.2453%" y="277" width="0.2515%" height="15" fill="rgb(208,168,36)" fg:x="126076" fg:w="6045"/><text x="5.4953%" y="287.50"></text></g><g><title>ret_from_fork (6,597 samples, 0.27%)</title><rect x="5.2238%" y="309" width="0.2745%" height="15" fill="rgb(246,171,24)" fg:x="125560" fg:w="6597"/><text x="5.4738%" y="319.50"></text></g><g><title>arch_fork (8,542 samples, 0.36%)</title><rect x="5.1430%" y="325" width="0.3554%" height="15" fill="rgb(215,142,24)" fg:x="123616" fg:w="8542"/><text x="5.3930%" y="335.50"></text></g><g><title>__libc_fork (8,879 samples, 0.37%)</title><rect x="5.1372%" y="341" width="0.3694%" height="15" fill="rgb(250,187,7)" fg:x="123477" fg:w="8879"/><text x="5.3872%" y="351.50"></text></g><g><title>[dash] (18,005 samples, 0.75%)</title><rect x="4.7623%" y="357" width="0.7491%" height="15" fill="rgb(228,66,33)" fg:x="114466" fg:w="18005"/><text x="5.0123%" y="367.50"></text></g><g><title>[dash] (18,195 samples, 0.76%)</title><rect x="4.7617%" y="373" width="0.7570%" height="15" fill="rgb(234,215,21)" fg:x="114452" fg:w="18195"/><text x="5.0117%" y="383.50"></text></g><g><title>[dash] (18,308 samples, 0.76%)</title><rect x="4.7611%" y="389" width="0.7617%" height="15" fill="rgb(222,191,20)" fg:x="114438" fg:w="18308"/><text x="5.0111%" y="399.50"></text></g><g><title>[dash] (18,488 samples, 0.77%)</title><rect x="4.7601%" y="405" width="0.7692%" height="15" fill="rgb(245,79,54)" fg:x="114413" fg:w="18488"/><text x="5.0101%" y="415.50"></text></g><g><title>finish_task_switch (244 samples, 0.01%)</title><rect x="5.5310%" y="293" width="0.0102%" height="15" fill="rgb(240,10,37)" fg:x="132942" fg:w="244"/><text x="5.7810%" y="303.50"></text></g><g><title>schedule (252 samples, 0.01%)</title><rect x="5.5308%" y="325" width="0.0105%" height="15" fill="rgb(214,192,32)" fg:x="132938" fg:w="252"/><text x="5.7808%" y="335.50"></text></g><g><title>__schedule (252 samples, 0.01%)</title><rect x="5.5308%" y="309" width="0.0105%" height="15" fill="rgb(209,36,54)" fg:x="132938" fg:w="252"/><text x="5.7808%" y="319.50"></text></g><g><title>do_syscall_64 (348 samples, 0.01%)</title><rect x="5.5301%" y="373" width="0.0145%" height="15" fill="rgb(220,10,11)" fg:x="132922" fg:w="348"/><text x="5.7801%" y="383.50"></text></g><g><title>kernel_wait4 (343 samples, 0.01%)</title><rect x="5.5303%" y="357" width="0.0143%" height="15" fill="rgb(221,106,17)" fg:x="132927" fg:w="343"/><text x="5.7803%" y="367.50"></text></g><g><title>do_wait (341 samples, 0.01%)</title><rect x="5.5304%" y="341" width="0.0142%" height="15" fill="rgb(251,142,44)" fg:x="132929" fg:w="341"/><text x="5.7804%" y="351.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (361 samples, 0.02%)</title><rect x="5.5301%" y="389" width="0.0150%" height="15" fill="rgb(238,13,15)" fg:x="132922" fg:w="361"/><text x="5.7801%" y="399.50"></text></g><g><title>__GI___wait4 (394 samples, 0.02%)</title><rect x="5.5294%" y="405" width="0.0164%" height="15" fill="rgb(208,107,27)" fg:x="132904" fg:w="394"/><text x="5.7794%" y="415.50"></text></g><g><title>[dash] (19,063 samples, 0.79%)</title><rect x="4.7581%" y="421" width="0.7931%" height="15" fill="rgb(205,136,37)" fg:x="114365" fg:w="19063"/><text x="5.0081%" y="431.50"></text></g><g><title>dup_mm (547 samples, 0.02%)</title><rect x="5.5650%" y="309" width="0.0228%" height="15" fill="rgb(250,205,27)" fg:x="133761" fg:w="547"/><text x="5.8150%" y="319.50"></text></g><g><title>copy_process (887 samples, 0.04%)</title><rect x="5.5593%" y="325" width="0.0369%" height="15" fill="rgb(210,80,43)" fg:x="133624" fg:w="887"/><text x="5.8093%" y="335.50"></text></g><g><title>do_syscall_64 (934 samples, 0.04%)</title><rect x="5.5592%" y="373" width="0.0389%" height="15" fill="rgb(247,160,36)" fg:x="133622" fg:w="934"/><text x="5.8092%" y="383.50"></text></g><g><title>__do_sys_clone (934 samples, 0.04%)</title><rect x="5.5592%" y="357" width="0.0389%" height="15" fill="rgb(234,13,49)" fg:x="133622" fg:w="934"/><text x="5.8092%" y="367.50"></text></g><g><title>kernel_clone (934 samples, 0.04%)</title><rect x="5.5592%" y="341" width="0.0389%" height="15" fill="rgb(234,122,0)" fg:x="133622" fg:w="934"/><text x="5.8092%" y="351.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (936 samples, 0.04%)</title><rect x="5.5592%" y="389" width="0.0389%" height="15" fill="rgb(207,146,38)" fg:x="133622" fg:w="936"/><text x="5.8092%" y="399.50"></text></g><g><title>__put_user_nocheck_4 (314 samples, 0.01%)</title><rect x="5.5995%" y="357" width="0.0131%" height="15" fill="rgb(207,177,25)" fg:x="134589" fg:w="314"/><text x="5.8495%" y="367.50"></text></g><g><title>asm_exc_page_fault (304 samples, 0.01%)</title><rect x="5.5999%" y="341" width="0.0126%" height="15" fill="rgb(211,178,42)" fg:x="134599" fg:w="304"/><text x="5.8499%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (3,250 samples, 0.14%)</title><rect x="5.6175%" y="341" width="0.1352%" height="15" fill="rgb(230,69,54)" fg:x="135022" fg:w="3250"/><text x="5.8675%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,189 samples, 0.13%)</title><rect x="5.6200%" y="325" width="0.1327%" height="15" fill="rgb(214,135,41)" fg:x="135083" fg:w="3189"/><text x="5.8700%" y="335.50"></text></g><g><title>native_write_msr (3,167 samples, 0.13%)</title><rect x="5.6209%" y="309" width="0.1318%" height="15" fill="rgb(237,67,25)" fg:x="135105" fg:w="3167"/><text x="5.8709%" y="319.50"></text></g><g><title>schedule_tail (3,790 samples, 0.16%)</title><rect x="5.5992%" y="373" width="0.1577%" height="15" fill="rgb(222,189,50)" fg:x="134583" fg:w="3790"/><text x="5.8492%" y="383.50"></text></g><g><title>finish_task_switch (3,448 samples, 0.14%)</title><rect x="5.6135%" y="357" width="0.1435%" height="15" fill="rgb(245,148,34)" fg:x="134925" fg:w="3448"/><text x="5.8635%" y="367.50"></text></g><g><title>ret_from_fork (3,804 samples, 0.16%)</title><rect x="5.5989%" y="389" width="0.1583%" height="15" fill="rgb(222,29,6)" fg:x="134575" fg:w="3804"/><text x="5.8489%" y="399.50"></text></g><g><title>arch_fork (4,888 samples, 0.20%)</title><rect x="5.5539%" y="405" width="0.2034%" height="15" fill="rgb(221,189,43)" fg:x="133493" fg:w="4888"/><text x="5.8039%" y="415.50"></text></g><g><title>__libc_fork (5,053 samples, 0.21%)</title><rect x="5.5512%" y="421" width="0.2102%" height="15" fill="rgb(207,36,27)" fg:x="133428" fg:w="5053"/><text x="5.8012%" y="431.50"></text></g><g><title>[dash] (24,214 samples, 1.01%)</title><rect x="4.7564%" y="437" width="1.0074%" height="15" fill="rgb(217,90,24)" fg:x="114325" fg:w="24214"/><text x="5.0064%" y="447.50"></text></g><g><title>[dash] (24,366 samples, 1.01%)</title><rect x="4.7557%" y="453" width="1.0137%" height="15" fill="rgb(224,66,35)" fg:x="114308" fg:w="24366"/><text x="5.0057%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (3,052 samples, 0.13%)</title><rect x="5.7847%" y="293" width="0.1270%" height="15" fill="rgb(221,13,50)" fg:x="139041" fg:w="3052"/><text x="6.0347%" y="303.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,022 samples, 0.13%)</title><rect x="5.7859%" y="277" width="0.1257%" height="15" fill="rgb(236,68,49)" fg:x="139071" fg:w="3022"/><text x="6.0359%" y="287.50"></text></g><g><title>native_write_msr (3,004 samples, 0.12%)</title><rect x="5.7867%" y="261" width="0.1250%" height="15" fill="rgb(229,146,28)" fg:x="139089" fg:w="3004"/><text x="6.0367%" y="271.50"></text></g><g><title>finish_task_switch (3,290 samples, 0.14%)</title><rect x="5.7822%" y="309" width="0.1369%" height="15" fill="rgb(225,31,38)" fg:x="138982" fg:w="3290"/><text x="6.0322%" y="319.50"></text></g><g><title>schedule (3,378 samples, 0.14%)</title><rect x="5.7802%" y="341" width="0.1405%" height="15" fill="rgb(250,208,3)" fg:x="138932" fg:w="3378"/><text x="6.0302%" y="351.50"></text></g><g><title>__schedule (3,374 samples, 0.14%)</title><rect x="5.7803%" y="325" width="0.1404%" height="15" fill="rgb(246,54,23)" fg:x="138936" fg:w="3374"/><text x="6.0303%" y="335.50"></text></g><g><title>new_sync_read (3,503 samples, 0.15%)</title><rect x="5.7755%" y="373" width="0.1457%" height="15" fill="rgb(243,76,11)" fg:x="138820" fg:w="3503"/><text x="6.0255%" y="383.50"></text></g><g><title>pipe_read (3,491 samples, 0.15%)</title><rect x="5.7760%" y="357" width="0.1452%" height="15" fill="rgb(245,21,50)" fg:x="138832" fg:w="3491"/><text x="6.0260%" y="367.50"></text></g><g><title>ksys_read (3,530 samples, 0.15%)</title><rect x="5.7746%" y="405" width="0.1469%" height="15" fill="rgb(228,9,43)" fg:x="138799" fg:w="3530"/><text x="6.0246%" y="415.50"></text></g><g><title>vfs_read (3,528 samples, 0.15%)</title><rect x="5.7747%" y="389" width="0.1468%" height="15" fill="rgb(208,100,47)" fg:x="138801" fg:w="3528"/><text x="6.0247%" y="399.50"></text></g><g><title>do_syscall_64 (3,537 samples, 0.15%)</title><rect x="5.7744%" y="421" width="0.1472%" height="15" fill="rgb(232,26,8)" fg:x="138793" fg:w="3537"/><text x="6.0244%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,636 samples, 0.15%)</title><rect x="5.7744%" y="437" width="0.1513%" height="15" fill="rgb(216,166,38)" fg:x="138793" fg:w="3636"/><text x="6.0244%" y="447.50"></text></g><g><title>__GI___libc_read (3,704 samples, 0.15%)</title><rect x="5.7742%" y="453" width="0.1541%" height="15" fill="rgb(251,202,51)" fg:x="138788" fg:w="3704"/><text x="6.0242%" y="463.50"></text></g><g><title>[dash] (28,411 samples, 1.18%)</title><rect x="4.7537%" y="469" width="1.1820%" height="15" fill="rgb(254,216,34)" fg:x="114260" fg:w="28411"/><text x="5.0037%" y="479.50"></text></g><g><title>[dash] (28,452 samples, 1.18%)</title><rect x="4.7530%" y="485" width="1.1837%" height="15" fill="rgb(251,32,27)" fg:x="114244" fg:w="28452"/><text x="5.0030%" y="495.50"></text></g><g><title>[dash] (28,480 samples, 1.18%)</title><rect x="4.7526%" y="501" width="1.1849%" height="15" fill="rgb(208,127,28)" fg:x="114233" fg:w="28480"/><text x="5.0026%" y="511.50"></text></g><g><title>[dash] (28,492 samples, 1.19%)</title><rect x="4.7523%" y="517" width="1.1854%" height="15" fill="rgb(224,137,22)" fg:x="114226" fg:w="28492"/><text x="5.0023%" y="527.50"></text></g><g><title>[dash] (28,536 samples, 1.19%)</title><rect x="4.7522%" y="533" width="1.1872%" height="15" fill="rgb(254,70,32)" fg:x="114223" fg:w="28536"/><text x="5.0022%" y="543.50"></text></g><g><title>[dash] (28,541 samples, 1.19%)</title><rect x="4.7520%" y="549" width="1.1874%" height="15" fill="rgb(229,75,37)" fg:x="114220" fg:w="28541"/><text x="5.0020%" y="559.50"></text></g><g><title>[dash] (28,612 samples, 1.19%)</title><rect x="4.7520%" y="565" width="1.1904%" height="15" fill="rgb(252,64,23)" fg:x="114218" fg:w="28612"/><text x="5.0020%" y="575.50"></text></g><g><title>[dash] (28,646 samples, 1.19%)</title><rect x="4.7517%" y="581" width="1.1918%" height="15" fill="rgb(232,162,48)" fg:x="114213" fg:w="28646"/><text x="5.0017%" y="591.50"></text></g><g><title>__libc_start_main (28,649 samples, 1.19%)</title><rect x="4.7517%" y="597" width="1.1919%" height="15" fill="rgb(246,160,12)" fg:x="114213" fg:w="28649"/><text x="5.0017%" y="607.50"></text></g><g><title>[dash] (28,674 samples, 1.19%)</title><rect x="4.7510%" y="613" width="1.1930%" height="15" fill="rgb(247,166,0)" fg:x="114194" fg:w="28674"/><text x="5.0010%" y="623.50"></text></g><g><title>asm_exc_page_fault (429 samples, 0.02%)</title><rect x="5.9529%" y="613" width="0.0178%" height="15" fill="rgb(249,219,21)" fg:x="143083" fg:w="429"/><text x="6.2029%" y="623.50"></text></g><g><title>exit_mmap (553 samples, 0.02%)</title><rect x="5.9723%" y="485" width="0.0230%" height="15" fill="rgb(205,209,3)" fg:x="143550" fg:w="553"/><text x="6.2223%" y="495.50"></text></g><g><title>mmput (556 samples, 0.02%)</title><rect x="5.9723%" y="501" width="0.0231%" height="15" fill="rgb(243,44,1)" fg:x="143550" fg:w="556"/><text x="6.2223%" y="511.50"></text></g><g><title>begin_new_exec (607 samples, 0.03%)</title><rect x="5.9714%" y="517" width="0.0253%" height="15" fill="rgb(206,159,16)" fg:x="143528" fg:w="607"/><text x="6.2214%" y="527.50"></text></g><g><title>__x64_sys_execve (649 samples, 0.03%)</title><rect x="5.9710%" y="581" width="0.0270%" height="15" fill="rgb(244,77,30)" fg:x="143518" fg:w="649"/><text x="6.2210%" y="591.50"></text></g><g><title>do_execveat_common (649 samples, 0.03%)</title><rect x="5.9710%" y="565" width="0.0270%" height="15" fill="rgb(218,69,12)" fg:x="143518" fg:w="649"/><text x="6.2210%" y="575.50"></text></g><g><title>bprm_execve (649 samples, 0.03%)</title><rect x="5.9710%" y="549" width="0.0270%" height="15" fill="rgb(212,87,7)" fg:x="143518" fg:w="649"/><text x="6.2210%" y="559.50"></text></g><g><title>load_elf_binary (649 samples, 0.03%)</title><rect x="5.9710%" y="533" width="0.0270%" height="15" fill="rgb(245,114,25)" fg:x="143518" fg:w="649"/><text x="6.2210%" y="543.50"></text></g><g><title>free_pgtables (253 samples, 0.01%)</title><rect x="6.0005%" y="501" width="0.0105%" height="15" fill="rgb(210,61,42)" fg:x="144228" fg:w="253"/><text x="6.2505%" y="511.50"></text></g><g><title>unmap_page_range (449 samples, 0.02%)</title><rect x="6.0245%" y="485" width="0.0187%" height="15" fill="rgb(211,52,33)" fg:x="144805" fg:w="449"/><text x="6.2745%" y="495.50"></text></g><g><title>exit_mmap (1,065 samples, 0.04%)</title><rect x="5.9997%" y="517" width="0.0443%" height="15" fill="rgb(234,58,33)" fg:x="144208" fg:w="1065"/><text x="6.2497%" y="527.50"></text></g><g><title>unmap_vmas (477 samples, 0.02%)</title><rect x="6.0241%" y="501" width="0.0198%" height="15" fill="rgb(220,115,36)" fg:x="144796" fg:w="477"/><text x="6.2741%" y="511.50"></text></g><g><title>mmput (1,072 samples, 0.04%)</title><rect x="5.9996%" y="533" width="0.0446%" height="15" fill="rgb(243,153,54)" fg:x="144206" fg:w="1072"/><text x="6.2496%" y="543.50"></text></g><g><title>__x64_sys_exit_group (1,264 samples, 0.05%)</title><rect x="5.9980%" y="581" width="0.0526%" height="15" fill="rgb(251,47,18)" fg:x="144167" fg:w="1264"/><text x="6.2480%" y="591.50"></text></g><g><title>do_group_exit (1,264 samples, 0.05%)</title><rect x="5.9980%" y="565" width="0.0526%" height="15" fill="rgb(242,102,42)" fg:x="144167" fg:w="1264"/><text x="6.2480%" y="575.50"></text></g><g><title>do_exit (1,264 samples, 0.05%)</title><rect x="5.9980%" y="549" width="0.0526%" height="15" fill="rgb(234,31,38)" fg:x="144167" fg:w="1264"/><text x="6.2480%" y="559.50"></text></g><g><title>do_syscall_64 (1,918 samples, 0.08%)</title><rect x="5.9709%" y="597" width="0.0798%" height="15" fill="rgb(221,117,51)" fg:x="143517" fg:w="1918"/><text x="6.2209%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,922 samples, 0.08%)</title><rect x="5.9708%" y="613" width="0.0800%" height="15" fill="rgb(212,20,18)" fg:x="143514" fg:w="1922"/><text x="6.2208%" y="623.50"></text></g><g><title>c++ (31,292 samples, 1.30%)</title><rect x="4.7493%" y="629" width="1.3019%" height="15" fill="rgb(245,133,36)" fg:x="114155" fg:w="31292"/><text x="4.9993%" y="639.50"></text></g><g><title>[perf-996087.map] (563 samples, 0.02%)</title><rect x="6.0535%" y="613" width="0.0234%" height="15" fill="rgb(212,6,19)" fg:x="145503" fg:w="563"/><text x="6.3035%" y="623.50"></text></g><g><title>find-action-loo (620 samples, 0.03%)</title><rect x="6.0532%" y="629" width="0.0258%" height="15" fill="rgb(218,1,36)" fg:x="145494" fg:w="620"/><text x="6.3032%" y="639.50"></text></g><g><title>globbing_pool-1 (368 samples, 0.02%)</title><rect x="6.0828%" y="629" width="0.0153%" height="15" fill="rgb(246,84,54)" fg:x="146207" fg:w="368"/><text x="6.3328%" y="639.50"></text></g><g><title>[perf-996087.map] (359 samples, 0.01%)</title><rect x="6.1014%" y="613" width="0.0149%" height="15" fill="rgb(242,110,6)" fg:x="146653" fg:w="359"/><text x="6.3514%" y="623.50"></text></g><g><title>globbing_pool-2 (537 samples, 0.02%)</title><rect x="6.0981%" y="629" width="0.0223%" height="15" fill="rgb(214,47,5)" fg:x="146575" fg:w="537"/><text x="6.3481%" y="639.50"></text></g><g><title>globbing_pool-5 (326 samples, 0.01%)</title><rect x="6.1331%" y="629" width="0.0136%" height="15" fill="rgb(218,159,25)" fg:x="147415" fg:w="326"/><text x="6.3831%" y="639.50"></text></g><g><title>InterpreterRuntime::_new (290 samples, 0.01%)</title><rect x="6.2690%" y="597" width="0.0121%" height="15" fill="rgb(215,211,28)" fg:x="150682" fg:w="290"/><text x="6.5190%" y="607.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (288 samples, 0.01%)</title><rect x="6.2921%" y="581" width="0.0120%" height="15" fill="rgb(238,59,32)" fg:x="151236" fg:w="288"/><text x="6.5421%" y="591.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (460 samples, 0.02%)</title><rect x="6.2881%" y="597" width="0.0191%" height="15" fill="rgb(226,82,3)" fg:x="151141" fg:w="460"/><text x="6.5381%" y="607.50"></text></g><g><title>SymbolTable::lookup_only (426 samples, 0.02%)</title><rect x="6.3242%" y="453" width="0.0177%" height="15" fill="rgb(240,164,32)" fg:x="152009" fg:w="426"/><text x="6.5742%" y="463.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (506 samples, 0.02%)</title><rect x="6.3211%" y="469" width="0.0211%" height="15" fill="rgb(232,46,7)" fg:x="151934" fg:w="506"/><text x="6.5711%" y="479.50"></text></g><g><title>ClassFileParser::parse_constant_pool (526 samples, 0.02%)</title><rect x="6.3206%" y="485" width="0.0219%" height="15" fill="rgb(229,129,53)" fg:x="151921" fg:w="526"/><text x="6.5706%" y="495.50"></text></g><g><title>ClassFileParser::ClassFileParser (728 samples, 0.03%)</title><rect x="6.3203%" y="517" width="0.0303%" height="15" fill="rgb(234,188,29)" fg:x="151914" fg:w="728"/><text x="6.5703%" y="527.50"></text></g><g><title>ClassFileParser::parse_stream (727 samples, 0.03%)</title><rect x="6.3203%" y="501" width="0.0302%" height="15" fill="rgb(246,141,4)" fg:x="151915" fg:w="727"/><text x="6.5703%" y="511.50"></text></g><g><title>KlassFactory::create_from_stream (956 samples, 0.04%)</title><rect x="6.3202%" y="533" width="0.0398%" height="15" fill="rgb(229,23,39)" fg:x="151912" fg:w="956"/><text x="6.5702%" y="543.50"></text></g><g><title>JVM_DefineClassWithSource (989 samples, 0.04%)</title><rect x="6.3196%" y="581" width="0.0411%" height="15" fill="rgb(206,12,3)" fg:x="151899" fg:w="989"/><text x="6.5696%" y="591.50"></text></g><g><title>jvm_define_class_common (988 samples, 0.04%)</title><rect x="6.3197%" y="565" width="0.0411%" height="15" fill="rgb(252,226,20)" fg:x="151900" fg:w="988"/><text x="6.5697%" y="575.50"></text></g><g><title>SystemDictionary::resolve_from_stream (976 samples, 0.04%)</title><rect x="6.3202%" y="549" width="0.0406%" height="15" fill="rgb(216,123,35)" fg:x="151912" fg:w="976"/><text x="6.5702%" y="559.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,034 samples, 0.04%)</title><rect x="6.3196%" y="597" width="0.0430%" height="15" fill="rgb(212,68,40)" fg:x="151897" fg:w="1034"/><text x="6.5696%" y="607.50"></text></g><g><title>[perf-996087.map] (4,660 samples, 0.19%)</title><rect x="6.1819%" y="613" width="0.1939%" height="15" fill="rgb(254,125,32)" fg:x="148588" fg:w="4660"/><text x="6.4319%" y="623.50"></text></g><g><title>__GI___clone (349 samples, 0.01%)</title><rect x="6.3819%" y="613" width="0.0145%" height="15" fill="rgb(253,97,22)" fg:x="153396" fg:w="349"/><text x="6.6319%" y="623.50"></text></g><g><title>java (5,456 samples, 0.23%)</title><rect x="6.1707%" y="629" width="0.2270%" height="15" fill="rgb(241,101,14)" fg:x="148320" fg:w="5456"/><text x="6.4207%" y="639.50"></text></g><g><title>[unknown] (264 samples, 0.01%)</title><rect x="6.4011%" y="613" width="0.0110%" height="15" fill="rgb(238,103,29)" fg:x="153856" fg:w="264"/><text x="6.6511%" y="623.50"></text></g><g><title>execute_command (263 samples, 0.01%)</title><rect x="6.4256%" y="517" width="0.0109%" height="15" fill="rgb(233,195,47)" fg:x="154446" fg:w="263"/><text x="6.6756%" y="527.50"></text></g><g><title>execute_command_internal (263 samples, 0.01%)</title><rect x="6.4256%" y="501" width="0.0109%" height="15" fill="rgb(246,218,30)" fg:x="154446" fg:w="263"/><text x="6.6756%" y="511.50"></text></g><g><title>[bash] (280 samples, 0.01%)</title><rect x="6.4366%" y="453" width="0.0116%" height="15" fill="rgb(219,145,47)" fg:x="154711" fg:w="280"/><text x="6.6866%" y="463.50"></text></g><g><title>command_substitute (276 samples, 0.01%)</title><rect x="6.4368%" y="437" width="0.0115%" height="15" fill="rgb(243,12,26)" fg:x="154715" fg:w="276"/><text x="6.6868%" y="447.50"></text></g><g><title>[bash] (281 samples, 0.01%)</title><rect x="6.4366%" y="469" width="0.0117%" height="15" fill="rgb(214,87,16)" fg:x="154711" fg:w="281"/><text x="6.6866%" y="479.50"></text></g><g><title>[bash] (283 samples, 0.01%)</title><rect x="6.4366%" y="485" width="0.0118%" height="15" fill="rgb(208,99,42)" fg:x="154710" fg:w="283"/><text x="6.6866%" y="495.50"></text></g><g><title>expand_words (289 samples, 0.01%)</title><rect x="6.4366%" y="517" width="0.0120%" height="15" fill="rgb(253,99,2)" fg:x="154709" fg:w="289"/><text x="6.6866%" y="527.50"></text></g><g><title>[bash] (288 samples, 0.01%)</title><rect x="6.4366%" y="501" width="0.0120%" height="15" fill="rgb(220,168,23)" fg:x="154710" fg:w="288"/><text x="6.6866%" y="511.50"></text></g><g><title>execute_command (847 samples, 0.04%)</title><rect x="6.4135%" y="549" width="0.0352%" height="15" fill="rgb(242,38,24)" fg:x="154155" fg:w="847"/><text x="6.6635%" y="559.50"></text></g><g><title>execute_command_internal (846 samples, 0.04%)</title><rect x="6.4135%" y="533" width="0.0352%" height="15" fill="rgb(225,182,9)" fg:x="154156" fg:w="846"/><text x="6.6635%" y="543.50"></text></g><g><title>[bash] (404 samples, 0.02%)</title><rect x="6.4507%" y="501" width="0.0168%" height="15" fill="rgb(243,178,37)" fg:x="155048" fg:w="404"/><text x="6.7007%" y="511.50"></text></g><g><title>reader_loop (1,356 samples, 0.06%)</title><rect x="6.4126%" y="565" width="0.0564%" height="15" fill="rgb(232,139,19)" fg:x="154133" fg:w="1356"/><text x="6.6626%" y="575.50"></text></g><g><title>read_command (487 samples, 0.02%)</title><rect x="6.4487%" y="549" width="0.0203%" height="15" fill="rgb(225,201,24)" fg:x="155002" fg:w="487"/><text x="6.6987%" y="559.50"></text></g><g><title>parse_command (487 samples, 0.02%)</title><rect x="6.4487%" y="533" width="0.0203%" height="15" fill="rgb(221,47,46)" fg:x="155002" fg:w="487"/><text x="6.6987%" y="543.50"></text></g><g><title>yyparse (487 samples, 0.02%)</title><rect x="6.4487%" y="517" width="0.0203%" height="15" fill="rgb(249,23,13)" fg:x="155002" fg:w="487"/><text x="6.6987%" y="527.50"></text></g><g><title>__libc_start_main (1,372 samples, 0.06%)</title><rect x="6.4122%" y="597" width="0.0571%" height="15" fill="rgb(219,9,5)" fg:x="154124" fg:w="1372"/><text x="6.6622%" y="607.50"></text></g><g><title>main (1,372 samples, 0.06%)</title><rect x="6.4122%" y="581" width="0.0571%" height="15" fill="rgb(254,171,16)" fg:x="154124" fg:w="1372"/><text x="6.6622%" y="591.50"></text></g><g><title>_start (1,390 samples, 0.06%)</title><rect x="6.4122%" y="613" width="0.0578%" height="15" fill="rgb(230,171,20)" fg:x="154124" fg:w="1390"/><text x="6.6622%" y="623.50"></text></g><g><title>libtool (1,844 samples, 0.08%)</title><rect x="6.3977%" y="629" width="0.0767%" height="15" fill="rgb(210,71,41)" fg:x="153776" fg:w="1844"/><text x="6.6477%" y="639.50"></text></g><g><title>schedule_tail (250 samples, 0.01%)</title><rect x="6.5044%" y="533" width="0.0104%" height="15" fill="rgb(206,173,20)" fg:x="156339" fg:w="250"/><text x="6.7544%" y="543.50"></text></g><g><title>arch_fork (338 samples, 0.01%)</title><rect x="6.5007%" y="565" width="0.0141%" height="15" fill="rgb(233,88,34)" fg:x="156252" fg:w="338"/><text x="6.7507%" y="575.50"></text></g><g><title>ret_from_fork (251 samples, 0.01%)</title><rect x="6.5044%" y="549" width="0.0104%" height="15" fill="rgb(223,209,46)" fg:x="156339" fg:w="251"/><text x="6.7544%" y="559.50"></text></g><g><title>__libc_fork (355 samples, 0.01%)</title><rect x="6.5005%" y="581" width="0.0148%" height="15" fill="rgb(250,43,18)" fg:x="156246" fg:w="355"/><text x="6.7505%" y="591.50"></text></g><g><title>Pid1Main (968 samples, 0.04%)</title><rect x="6.4830%" y="597" width="0.0403%" height="15" fill="rgb(208,13,10)" fg:x="155825" fg:w="968"/><text x="6.7330%" y="607.50"></text></g><g><title>__GI___clone (1,133 samples, 0.05%)</title><rect x="6.4829%" y="613" width="0.0471%" height="15" fill="rgb(212,200,36)" fg:x="155824" fg:w="1133"/><text x="6.7329%" y="623.50"></text></g><g><title>__libc_start_main (549 samples, 0.02%)</title><rect x="6.5328%" y="597" width="0.0228%" height="15" fill="rgb(225,90,30)" fg:x="157023" fg:w="549"/><text x="6.7828%" y="607.50"></text></g><g><title>main (468 samples, 0.02%)</title><rect x="6.5362%" y="581" width="0.0195%" height="15" fill="rgb(236,182,39)" fg:x="157104" fg:w="468"/><text x="6.7862%" y="591.50"></text></g><g><title>_dl_lookup_symbol_x (294 samples, 0.01%)</title><rect x="6.5689%" y="485" width="0.0122%" height="15" fill="rgb(212,144,35)" fg:x="157889" fg:w="294"/><text x="6.8189%" y="495.50"></text></g><g><title>elf_machine_rela (351 samples, 0.01%)</title><rect x="6.5667%" y="501" width="0.0146%" height="15" fill="rgb(228,63,44)" fg:x="157838" fg:w="351"/><text x="6.8167%" y="511.50"></text></g><g><title>elf_dynamic_do_Rela (402 samples, 0.02%)</title><rect x="6.5654%" y="517" width="0.0167%" height="15" fill="rgb(228,109,6)" fg:x="157806" fg:w="402"/><text x="6.8154%" y="527.50"></text></g><g><title>_dl_relocate_object (428 samples, 0.02%)</title><rect x="6.5645%" y="533" width="0.0178%" height="15" fill="rgb(238,117,24)" fg:x="157784" fg:w="428"/><text x="6.8145%" y="543.50"></text></g><g><title>[ld-2.31.so] (657 samples, 0.03%)</title><rect x="6.5557%" y="549" width="0.0273%" height="15" fill="rgb(242,26,26)" fg:x="157573" fg:w="657"/><text x="6.8057%" y="559.50"></text></g><g><title>_dl_start_final (663 samples, 0.03%)</title><rect x="6.5557%" y="581" width="0.0276%" height="15" fill="rgb(221,92,48)" fg:x="157572" fg:w="663"/><text x="6.8057%" y="591.50"></text></g><g><title>_dl_sysdep_start (663 samples, 0.03%)</title><rect x="6.5557%" y="565" width="0.0276%" height="15" fill="rgb(209,209,32)" fg:x="157572" fg:w="663"/><text x="6.8057%" y="575.50"></text></g><g><title>_dl_start (670 samples, 0.03%)</title><rect x="6.5557%" y="597" width="0.0279%" height="15" fill="rgb(221,70,22)" fg:x="157572" fg:w="670"/><text x="6.8057%" y="607.50"></text></g><g><title>_start (1,225 samples, 0.05%)</title><rect x="6.5327%" y="613" width="0.0510%" height="15" fill="rgb(248,145,5)" fg:x="157021" fg:w="1225"/><text x="6.7827%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (434 samples, 0.02%)</title><rect x="6.5895%" y="613" width="0.0181%" height="15" fill="rgb(226,116,26)" fg:x="158386" fg:w="434"/><text x="6.8395%" y="623.50"></text></g><g><title>do_syscall_64 (434 samples, 0.02%)</title><rect x="6.5895%" y="597" width="0.0181%" height="15" fill="rgb(244,5,17)" fg:x="158386" fg:w="434"/><text x="6.8395%" y="607.50"></text></g><g><title>linux-sandbox (3,202 samples, 0.13%)</title><rect x="6.4745%" y="629" width="0.1332%" height="15" fill="rgb(252,159,33)" fg:x="155620" fg:w="3202"/><text x="6.7245%" y="639.50"></text></g><g><title>do_wait (244 samples, 0.01%)</title><rect x="6.6224%" y="517" width="0.0102%" height="15" fill="rgb(206,71,0)" fg:x="159177" fg:w="244"/><text x="6.8724%" y="527.50"></text></g><g><title>do_syscall_64 (248 samples, 0.01%)</title><rect x="6.6223%" y="549" width="0.0103%" height="15" fill="rgb(233,118,54)" fg:x="159174" fg:w="248"/><text x="6.8723%" y="559.50"></text></g><g><title>kernel_wait4 (245 samples, 0.01%)</title><rect x="6.6224%" y="533" width="0.0102%" height="15" fill="rgb(234,83,48)" fg:x="159177" fg:w="245"/><text x="6.8724%" y="543.50"></text></g><g><title>__GI___wait4 (250 samples, 0.01%)</title><rect x="6.6223%" y="581" width="0.0104%" height="15" fill="rgb(228,3,54)" fg:x="159173" fg:w="250"/><text x="6.8723%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (249 samples, 0.01%)</title><rect x="6.6223%" y="565" width="0.0104%" height="15" fill="rgb(226,155,13)" fg:x="159174" fg:w="249"/><text x="6.8723%" y="575.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (251 samples, 0.01%)</title><rect x="6.6223%" y="597" width="0.0104%" height="15" fill="rgb(241,28,37)" fg:x="159173" fg:w="251"/><text x="6.8723%" y="607.50"></text></g><g><title>[perf-996087.map] (477 samples, 0.02%)</title><rect x="6.6153%" y="613" width="0.0198%" height="15" fill="rgb(233,93,10)" fg:x="159006" fg:w="477"/><text x="6.8653%" y="623.50"></text></g><g><title>process_reaper (487 samples, 0.02%)</title><rect x="6.6151%" y="629" width="0.0203%" height="15" fill="rgb(225,113,19)" fg:x="159001" fg:w="487"/><text x="6.8651%" y="639.50"></text></g><g><title>Unsafe_Park (246 samples, 0.01%)</title><rect x="6.6538%" y="597" width="0.0102%" height="15" fill="rgb(241,2,18)" fg:x="159931" fg:w="246"/><text x="6.9038%" y="607.50"></text></g><g><title>[perf-996087.map] (678 samples, 0.03%)</title><rect x="6.6360%" y="613" width="0.0282%" height="15" fill="rgb(228,207,21)" fg:x="159503" fg:w="678"/><text x="6.8860%" y="623.50"></text></g><g><title>profile-writer- (709 samples, 0.03%)</title><rect x="6.6354%" y="629" width="0.0295%" height="15" fill="rgb(213,211,35)" fg:x="159488" fg:w="709"/><text x="6.8854%" y="639.50"></text></g><g><title>[unknown] (341 samples, 0.01%)</title><rect x="6.6664%" y="613" width="0.0142%" height="15" fill="rgb(209,83,10)" fg:x="160233" fg:w="341"/><text x="6.9164%" y="623.50"></text></g><g><title>python3 (572 samples, 0.02%)</title><rect x="6.6651%" y="629" width="0.0238%" height="15" fill="rgb(209,164,1)" fg:x="160202" fg:w="572"/><text x="6.9151%" y="639.50"></text></g><g><title>[sed] (449 samples, 0.02%)</title><rect x="6.7002%" y="517" width="0.0187%" height="15" fill="rgb(213,184,43)" fg:x="161045" fg:w="449"/><text x="6.9502%" y="527.50"></text></g><g><title>[sed] (504 samples, 0.02%)</title><rect x="6.6987%" y="533" width="0.0210%" height="15" fill="rgb(231,61,34)" fg:x="161009" fg:w="504"/><text x="6.9487%" y="543.50"></text></g><g><title>[sed] (665 samples, 0.03%)</title><rect x="6.6978%" y="549" width="0.0277%" height="15" fill="rgb(235,75,3)" fg:x="160988" fg:w="665"/><text x="6.9478%" y="559.50"></text></g><g><title>[sed] (699 samples, 0.03%)</title><rect x="6.6972%" y="565" width="0.0291%" height="15" fill="rgb(220,106,47)" fg:x="160975" fg:w="699"/><text x="6.9472%" y="575.50"></text></g><g><title>[sed] (821 samples, 0.03%)</title><rect x="6.6971%" y="581" width="0.0342%" height="15" fill="rgb(210,196,33)" fg:x="160971" fg:w="821"/><text x="6.9471%" y="591.50"></text></g><g><title>__libc_start_main (906 samples, 0.04%)</title><rect x="6.6971%" y="597" width="0.0377%" height="15" fill="rgb(229,154,42)" fg:x="160971" fg:w="906"/><text x="6.9471%" y="607.50"></text></g><g><title>[sed] (937 samples, 0.04%)</title><rect x="6.6968%" y="613" width="0.0390%" height="15" fill="rgb(228,114,26)" fg:x="160965" fg:w="937"/><text x="6.9468%" y="623.50"></text></g><g><title>determine_info (246 samples, 0.01%)</title><rect x="6.7611%" y="437" width="0.0102%" height="15" fill="rgb(208,144,1)" fg:x="162509" fg:w="246"/><text x="7.0111%" y="447.50"></text></g><g><title>__GI__dl_addr (272 samples, 0.01%)</title><rect x="6.7601%" y="453" width="0.0113%" height="15" fill="rgb(239,112,37)" fg:x="162485" fg:w="272"/><text x="7.0101%" y="463.50"></text></g><g><title>__fopen_internal (403 samples, 0.02%)</title><rect x="6.7551%" y="517" width="0.0168%" height="15" fill="rgb(210,96,50)" fg:x="162366" fg:w="403"/><text x="7.0051%" y="527.50"></text></g><g><title>malloc_hook_ini (290 samples, 0.01%)</title><rect x="6.7598%" y="501" width="0.0121%" height="15" fill="rgb(222,178,2)" fg:x="162479" fg:w="290"/><text x="7.0098%" y="511.50"></text></g><g><title>ptmalloc_init (290 samples, 0.01%)</title><rect x="6.7598%" y="485" width="0.0121%" height="15" fill="rgb(226,74,18)" fg:x="162479" fg:w="290"/><text x="7.0098%" y="495.50"></text></g><g><title>ptmalloc_init (290 samples, 0.01%)</title><rect x="6.7598%" y="469" width="0.0121%" height="15" fill="rgb(225,67,54)" fg:x="162479" fg:w="290"/><text x="7.0098%" y="479.50"></text></g><g><title>selinuxfs_exists (618 samples, 0.03%)</title><rect x="6.7466%" y="533" width="0.0257%" height="15" fill="rgb(251,92,32)" fg:x="162162" fg:w="618"/><text x="6.9966%" y="543.50"></text></g><g><title>[libselinux.so.1] (770 samples, 0.03%)</title><rect x="6.7403%" y="549" width="0.0320%" height="15" fill="rgb(228,149,22)" fg:x="162011" fg:w="770"/><text x="6.9903%" y="559.50"></text></g><g><title>_dl_start_user (892 samples, 0.04%)</title><rect x="6.7401%" y="613" width="0.0371%" height="15" fill="rgb(243,54,13)" fg:x="162006" fg:w="892"/><text x="6.9901%" y="623.50"></text></g><g><title>_dl_init (892 samples, 0.04%)</title><rect x="6.7401%" y="597" width="0.0371%" height="15" fill="rgb(243,180,28)" fg:x="162006" fg:w="892"/><text x="6.9901%" y="607.50"></text></g><g><title>call_init (891 samples, 0.04%)</title><rect x="6.7402%" y="581" width="0.0371%" height="15" fill="rgb(208,167,24)" fg:x="162007" fg:w="891"/><text x="6.9902%" y="591.50"></text></g><g><title>call_init (890 samples, 0.04%)</title><rect x="6.7402%" y="565" width="0.0370%" height="15" fill="rgb(245,73,45)" fg:x="162008" fg:w="890"/><text x="6.9902%" y="575.50"></text></g><g><title>__vma_adjust (297 samples, 0.01%)</title><rect x="6.8147%" y="277" width="0.0124%" height="15" fill="rgb(237,203,48)" fg:x="163797" fg:w="297"/><text x="7.0647%" y="287.50"></text></g><g><title>__split_vma (398 samples, 0.02%)</title><rect x="6.8142%" y="293" width="0.0166%" height="15" fill="rgb(211,197,16)" fg:x="163785" fg:w="398"/><text x="7.0642%" y="303.50"></text></g><g><title>__do_munmap (616 samples, 0.03%)</title><rect x="6.8134%" y="309" width="0.0256%" height="15" fill="rgb(243,99,51)" fg:x="163768" fg:w="616"/><text x="7.0634%" y="319.50"></text></g><g><title>perf_event_mmap (244 samples, 0.01%)</title><rect x="6.8393%" y="309" width="0.0102%" height="15" fill="rgb(215,123,29)" fg:x="164390" fg:w="244"/><text x="7.0893%" y="319.50"></text></g><g><title>mmap_region (1,091 samples, 0.05%)</title><rect x="6.8117%" y="325" width="0.0454%" height="15" fill="rgb(239,186,37)" fg:x="163727" fg:w="1091"/><text x="7.0617%" y="335.50"></text></g><g><title>do_mmap (1,124 samples, 0.05%)</title><rect x="6.8105%" y="341" width="0.0468%" height="15" fill="rgb(252,136,39)" fg:x="163697" fg:w="1124"/><text x="7.0605%" y="351.50"></text></g><g><title>ksys_mmap_pgoff (1,162 samples, 0.05%)</title><rect x="6.8099%" y="373" width="0.0483%" height="15" fill="rgb(223,213,32)" fg:x="163683" fg:w="1162"/><text x="7.0599%" y="383.50"></text></g><g><title>vm_mmap_pgoff (1,152 samples, 0.05%)</title><rect x="6.8103%" y="357" width="0.0479%" height="15" fill="rgb(233,115,5)" fg:x="163693" fg:w="1152"/><text x="7.0603%" y="367.50"></text></g><g><title>do_syscall_64 (1,237 samples, 0.05%)</title><rect x="6.8097%" y="389" width="0.0515%" height="15" fill="rgb(207,226,44)" fg:x="163679" fg:w="1237"/><text x="7.0597%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,249 samples, 0.05%)</title><rect x="6.8097%" y="405" width="0.0520%" height="15" fill="rgb(208,126,0)" fg:x="163677" fg:w="1249"/><text x="7.0597%" y="415.50"></text></g><g><title>__mmap64 (1,270 samples, 0.05%)</title><rect x="6.8091%" y="437" width="0.0528%" height="15" fill="rgb(244,66,21)" fg:x="163664" fg:w="1270"/><text x="7.0591%" y="447.50"></text></g><g><title>__mmap64 (1,270 samples, 0.05%)</title><rect x="6.8091%" y="421" width="0.0528%" height="15" fill="rgb(222,97,12)" fg:x="163664" fg:w="1270"/><text x="7.0591%" y="431.50"></text></g><g><title>_dl_map_segments (1,482 samples, 0.06%)</title><rect x="6.8004%" y="453" width="0.0617%" height="15" fill="rgb(219,213,19)" fg:x="163455" fg:w="1482"/><text x="7.0504%" y="463.50"></text></g><g><title>_dl_map_object_from_fd (1,878 samples, 0.08%)</title><rect x="6.7976%" y="469" width="0.0781%" height="15" fill="rgb(252,169,30)" fg:x="163388" fg:w="1878"/><text x="7.0476%" y="479.50"></text></g><g><title>open_verify (292 samples, 0.01%)</title><rect x="6.8766%" y="469" width="0.0121%" height="15" fill="rgb(206,32,51)" fg:x="165287" fg:w="292"/><text x="7.1266%" y="479.50"></text></g><g><title>_dl_catch_exception (2,429 samples, 0.10%)</title><rect x="6.7887%" y="517" width="0.1011%" height="15" fill="rgb(250,172,42)" fg:x="163173" fg:w="2429"/><text x="7.0387%" y="527.50"></text></g><g><title>openaux (2,422 samples, 0.10%)</title><rect x="6.7890%" y="501" width="0.1008%" height="15" fill="rgb(209,34,43)" fg:x="163180" fg:w="2422"/><text x="7.0390%" y="511.50"></text></g><g><title>_dl_map_object (2,421 samples, 0.10%)</title><rect x="6.7890%" y="485" width="0.1007%" height="15" fill="rgb(223,11,35)" fg:x="163181" fg:w="2421"/><text x="7.0390%" y="495.50"></text></g><g><title>_dl_map_object_deps (2,505 samples, 0.10%)</title><rect x="6.7878%" y="533" width="0.1042%" height="15" fill="rgb(251,219,26)" fg:x="163152" fg:w="2505"/><text x="7.0378%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (247 samples, 0.01%)</title><rect x="6.8966%" y="485" width="0.0103%" height="15" fill="rgb(231,119,3)" fg:x="165766" fg:w="247"/><text x="7.1466%" y="495.50"></text></g><g><title>do_syscall_64 (247 samples, 0.01%)</title><rect x="6.8966%" y="469" width="0.0103%" height="15" fill="rgb(216,97,11)" fg:x="165766" fg:w="247"/><text x="7.1466%" y="479.50"></text></g><g><title>__x64_sys_mprotect (246 samples, 0.01%)</title><rect x="6.8966%" y="453" width="0.0102%" height="15" fill="rgb(223,59,9)" fg:x="165767" fg:w="246"/><text x="7.1466%" y="463.50"></text></g><g><title>do_mprotect_pkey (246 samples, 0.01%)</title><rect x="6.8966%" y="437" width="0.0102%" height="15" fill="rgb(233,93,31)" fg:x="165767" fg:w="246"/><text x="7.1466%" y="447.50"></text></g><g><title>_dl_protect_relro (257 samples, 0.01%)</title><rect x="6.8962%" y="517" width="0.0107%" height="15" fill="rgb(239,81,33)" fg:x="165757" fg:w="257"/><text x="7.1462%" y="527.50"></text></g><g><title>__mprotect (255 samples, 0.01%)</title><rect x="6.8963%" y="501" width="0.0106%" height="15" fill="rgb(213,120,34)" fg:x="165759" fg:w="255"/><text x="7.1463%" y="511.50"></text></g><g><title>_dl_lookup_symbol_x (765 samples, 0.03%)</title><rect x="6.9176%" y="485" width="0.0318%" height="15" fill="rgb(243,49,53)" fg:x="166272" fg:w="765"/><text x="7.1676%" y="495.50"></text></g><g><title>do_lookup_x (615 samples, 0.03%)</title><rect x="6.9239%" y="469" width="0.0256%" height="15" fill="rgb(247,216,33)" fg:x="166422" fg:w="615"/><text x="7.1739%" y="479.50"></text></g><g><title>elf_machine_rela (911 samples, 0.04%)</title><rect x="6.9123%" y="501" width="0.0379%" height="15" fill="rgb(226,26,14)" fg:x="166143" fg:w="911"/><text x="7.1623%" y="511.50"></text></g><g><title>elf_dynamic_do_Rela (1,105 samples, 0.05%)</title><rect x="6.9069%" y="517" width="0.0460%" height="15" fill="rgb(215,49,53)" fg:x="166014" fg:w="1105"/><text x="7.1569%" y="527.50"></text></g><g><title>_dl_relocate_object (1,398 samples, 0.06%)</title><rect x="6.8957%" y="533" width="0.0582%" height="15" fill="rgb(245,162,40)" fg:x="165746" fg:w="1398"/><text x="7.1457%" y="543.50"></text></g><g><title>[ld-2.31.so] (4,304 samples, 0.18%)</title><rect x="6.7837%" y="549" width="0.1791%" height="15" fill="rgb(229,68,17)" fg:x="163053" fg:w="4304"/><text x="7.0337%" y="559.50"></text></g><g><title>_dl_start_final (4,429 samples, 0.18%)</title><rect x="6.7831%" y="581" width="0.1843%" height="15" fill="rgb(213,182,10)" fg:x="163039" fg:w="4429"/><text x="7.0331%" y="591.50"></text></g><g><title>_dl_sysdep_start (4,425 samples, 0.18%)</title><rect x="6.7833%" y="565" width="0.1841%" height="15" fill="rgb(245,125,30)" fg:x="163043" fg:w="4425"/><text x="7.0333%" y="575.50"></text></g><g><title>_dl_start (4,521 samples, 0.19%)</title><rect x="6.7831%" y="597" width="0.1881%" height="15" fill="rgb(232,202,2)" fg:x="163039" fg:w="4521"/><text x="7.0331%" y="607.50"></text></g><g><title>_start (4,588 samples, 0.19%)</title><rect x="6.7827%" y="613" width="0.1909%" height="15" fill="rgb(237,140,51)" fg:x="163030" fg:w="4588"/><text x="7.0327%" y="623.50"></text></g><g><title>asm_exc_page_fault (281 samples, 0.01%)</title><rect x="6.9736%" y="613" width="0.0117%" height="15" fill="rgb(236,157,25)" fg:x="167618" fg:w="281"/><text x="7.2236%" y="623.50"></text></g><g><title>__x64_sys_execve (525 samples, 0.02%)</title><rect x="6.9856%" y="581" width="0.0218%" height="15" fill="rgb(219,209,0)" fg:x="167905" fg:w="525"/><text x="7.2356%" y="591.50"></text></g><g><title>do_execveat_common (525 samples, 0.02%)</title><rect x="6.9856%" y="565" width="0.0218%" height="15" fill="rgb(240,116,54)" fg:x="167905" fg:w="525"/><text x="7.2356%" y="575.50"></text></g><g><title>bprm_execve (525 samples, 0.02%)</title><rect x="6.9856%" y="549" width="0.0218%" height="15" fill="rgb(216,10,36)" fg:x="167905" fg:w="525"/><text x="7.2356%" y="559.50"></text></g><g><title>load_elf_binary (525 samples, 0.02%)</title><rect x="6.9856%" y="533" width="0.0218%" height="15" fill="rgb(222,72,44)" fg:x="167905" fg:w="525"/><text x="7.2356%" y="543.50"></text></g><g><title>unmap_page_range (315 samples, 0.01%)</title><rect x="7.0216%" y="485" width="0.0131%" height="15" fill="rgb(232,159,9)" fg:x="168771" fg:w="315"/><text x="7.2716%" y="495.50"></text></g><g><title>exit_mmap (646 samples, 0.03%)</title><rect x="7.0080%" y="517" width="0.0269%" height="15" fill="rgb(210,39,32)" fg:x="168444" fg:w="646"/><text x="7.2580%" y="527.50"></text></g><g><title>unmap_vmas (324 samples, 0.01%)</title><rect x="7.0214%" y="501" width="0.0135%" height="15" fill="rgb(216,194,45)" fg:x="168766" fg:w="324"/><text x="7.2714%" y="511.50"></text></g><g><title>mmput (649 samples, 0.03%)</title><rect x="7.0080%" y="533" width="0.0270%" height="15" fill="rgb(218,18,35)" fg:x="168444" fg:w="649"/><text x="7.2580%" y="543.50"></text></g><g><title>do_syscall_64 (1,254 samples, 0.05%)</title><rect x="6.9856%" y="597" width="0.0522%" height="15" fill="rgb(207,83,51)" fg:x="167905" fg:w="1254"/><text x="7.2356%" y="607.50"></text></g><g><title>__x64_sys_exit_group (729 samples, 0.03%)</title><rect x="7.0074%" y="581" width="0.0303%" height="15" fill="rgb(225,63,43)" fg:x="168430" fg:w="729"/><text x="7.2574%" y="591.50"></text></g><g><title>do_group_exit (729 samples, 0.03%)</title><rect x="7.0074%" y="565" width="0.0303%" height="15" fill="rgb(207,57,36)" fg:x="168430" fg:w="729"/><text x="7.2574%" y="575.50"></text></g><g><title>do_exit (729 samples, 0.03%)</title><rect x="7.0074%" y="549" width="0.0303%" height="15" fill="rgb(216,99,33)" fg:x="168430" fg:w="729"/><text x="7.2574%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,259 samples, 0.05%)</title><rect x="6.9854%" y="613" width="0.0524%" height="15" fill="rgb(225,42,16)" fg:x="167902" fg:w="1259"/><text x="7.2354%" y="623.50"></text></g><g><title>sed (8,399 samples, 0.35%)</title><rect x="6.6889%" y="629" width="0.3494%" height="15" fill="rgb(220,201,45)" fg:x="160774" fg:w="8399"/><text x="6.9389%" y="639.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (245 samples, 0.01%)</title><rect x="7.0456%" y="597" width="0.0102%" height="15" fill="rgb(225,33,4)" fg:x="169348" fg:w="245"/><text x="7.2956%" y="607.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;5292148ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)0, 5292148ul&gt;::oop_access_barrier (429 samples, 0.02%)</title><rect x="7.0559%" y="597" width="0.0178%" height="15" fill="rgb(224,33,50)" fg:x="169595" fg:w="429"/><text x="7.3059%" y="607.50"></text></g><g><title>HandleMark::pop_and_restore (251 samples, 0.01%)</title><rect x="7.0883%" y="597" width="0.0104%" height="15" fill="rgb(246,198,51)" fg:x="170374" fg:w="251"/><text x="7.3383%" y="607.50"></text></g><g><title>JavaThread::is_Java_thread (247 samples, 0.01%)</title><rect x="7.1151%" y="597" width="0.0103%" height="15" fill="rgb(205,22,4)" fg:x="171019" fg:w="247"/><text x="7.3651%" y="607.50"></text></g><g><title>ThreadStateTransition::transition_from_native (264 samples, 0.01%)</title><rect x="7.1343%" y="597" width="0.0110%" height="15" fill="rgb(206,3,8)" fg:x="171480" fg:w="264"/><text x="7.3843%" y="607.50"></text></g><g><title>__GI_unlinkat (477 samples, 0.02%)</title><rect x="7.1623%" y="597" width="0.0198%" height="15" fill="rgb(251,23,15)" fg:x="172154" fg:w="477"/><text x="7.4123%" y="607.50"></text></g><g><title>__symlink (290 samples, 0.01%)</title><rect x="7.1855%" y="597" width="0.0121%" height="15" fill="rgb(252,88,28)" fg:x="172710" fg:w="290"/><text x="7.4355%" y="607.50"></text></g><g><title>[anon] (4,721 samples, 0.20%)</title><rect x="7.0394%" y="613" width="0.1964%" height="15" fill="rgb(212,127,14)" fg:x="169199" fg:w="4721"/><text x="7.2894%" y="623.50"></text></g><g><title>[libc-2.31.so] (268 samples, 0.01%)</title><rect x="7.5418%" y="597" width="0.0111%" height="15" fill="rgb(247,145,37)" fg:x="181274" fg:w="268"/><text x="7.7918%" y="607.50"></text></g><g><title>__x64_sys_close (531 samples, 0.02%)</title><rect x="7.5577%" y="549" width="0.0221%" height="15" fill="rgb(209,117,53)" fg:x="181657" fg:w="531"/><text x="7.8077%" y="559.50"></text></g><g><title>filp_close (355 samples, 0.01%)</title><rect x="7.5650%" y="533" width="0.0148%" height="15" fill="rgb(212,90,42)" fg:x="181833" fg:w="355"/><text x="7.8150%" y="543.50"></text></g><g><title>do_syscall_64 (584 samples, 0.02%)</title><rect x="7.5561%" y="565" width="0.0243%" height="15" fill="rgb(218,164,37)" fg:x="181618" fg:w="584"/><text x="7.8061%" y="575.50"></text></g><g><title>btrfs_release_file (654 samples, 0.03%)</title><rect x="7.5930%" y="501" width="0.0272%" height="15" fill="rgb(246,65,34)" fg:x="182505" fg:w="654"/><text x="7.8430%" y="511.50"></text></g><g><title>kfree (515 samples, 0.02%)</title><rect x="7.5988%" y="485" width="0.0214%" height="15" fill="rgb(231,100,33)" fg:x="182644" fg:w="515"/><text x="7.8488%" y="495.50"></text></g><g><title>__fput (1,253 samples, 0.05%)</title><rect x="7.5877%" y="517" width="0.0521%" height="15" fill="rgb(228,126,14)" fg:x="182379" fg:w="1253"/><text x="7.8377%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,097 samples, 0.09%)</title><rect x="7.5556%" y="581" width="0.0872%" height="15" fill="rgb(215,173,21)" fg:x="181607" fg:w="2097"/><text x="7.8056%" y="591.50"></text></g><g><title>syscall_exit_to_user_mode (1,502 samples, 0.06%)</title><rect x="7.5804%" y="565" width="0.0625%" height="15" fill="rgb(210,6,40)" fg:x="182202" fg:w="1502"/><text x="7.8304%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,495 samples, 0.06%)</title><rect x="7.5807%" y="549" width="0.0622%" height="15" fill="rgb(212,48,18)" fg:x="182209" fg:w="1495"/><text x="7.8307%" y="559.50"></text></g><g><title>task_work_run (1,366 samples, 0.06%)</title><rect x="7.5860%" y="533" width="0.0568%" height="15" fill="rgb(230,214,11)" fg:x="182338" fg:w="1366"/><text x="7.8360%" y="543.50"></text></g><g><title>__GI___close_nocancel (2,183 samples, 0.09%)</title><rect x="7.5529%" y="597" width="0.0908%" height="15" fill="rgb(254,105,39)" fg:x="181542" fg:w="2183"/><text x="7.8029%" y="607.50"></text></g><g><title>__GI___libc_free (962 samples, 0.04%)</title><rect x="7.6438%" y="597" width="0.0400%" height="15" fill="rgb(245,158,5)" fg:x="183726" fg:w="962"/><text x="7.8938%" y="607.50"></text></g><g><title>__do_sys_newlstat (343 samples, 0.01%)</title><rect x="7.6841%" y="549" width="0.0143%" height="15" fill="rgb(249,208,11)" fg:x="184696" fg:w="343"/><text x="7.9341%" y="559.50"></text></g><g><title>vfs_statx (329 samples, 0.01%)</title><rect x="7.6847%" y="533" width="0.0137%" height="15" fill="rgb(210,39,28)" fg:x="184710" fg:w="329"/><text x="7.9347%" y="543.50"></text></g><g><title>do_syscall_64 (347 samples, 0.01%)</title><rect x="7.6841%" y="565" width="0.0144%" height="15" fill="rgb(211,56,53)" fg:x="184696" fg:w="347"/><text x="7.9341%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (352 samples, 0.01%)</title><rect x="7.6841%" y="581" width="0.0146%" height="15" fill="rgb(226,201,30)" fg:x="184695" fg:w="352"/><text x="7.9341%" y="591.50"></text></g><g><title>__GI___lxstat (363 samples, 0.02%)</title><rect x="7.6838%" y="597" width="0.0151%" height="15" fill="rgb(239,101,34)" fg:x="184688" fg:w="363"/><text x="7.9338%" y="607.50"></text></g><g><title>dput (351 samples, 0.01%)</title><rect x="7.7097%" y="533" width="0.0146%" height="15" fill="rgb(226,209,5)" fg:x="185311" fg:w="351"/><text x="7.9597%" y="543.50"></text></g><g><title>finish_wait (264 samples, 0.01%)</title><rect x="7.7513%" y="405" width="0.0110%" height="15" fill="rgb(250,105,47)" fg:x="186311" fg:w="264"/><text x="8.0013%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (255 samples, 0.01%)</title><rect x="7.7517%" y="389" width="0.0106%" height="15" fill="rgb(230,72,3)" fg:x="186320" fg:w="255"/><text x="8.0017%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (245 samples, 0.01%)</title><rect x="7.7521%" y="373" width="0.0102%" height="15" fill="rgb(232,218,39)" fg:x="186330" fg:w="245"/><text x="8.0021%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (624 samples, 0.03%)</title><rect x="7.7648%" y="389" width="0.0260%" height="15" fill="rgb(248,166,6)" fg:x="186634" fg:w="624"/><text x="8.0148%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (598 samples, 0.02%)</title><rect x="7.7659%" y="373" width="0.0249%" height="15" fill="rgb(247,89,20)" fg:x="186660" fg:w="598"/><text x="8.0159%" y="383.50"></text></g><g><title>prepare_to_wait_event (693 samples, 0.03%)</title><rect x="7.7623%" y="405" width="0.0288%" height="15" fill="rgb(248,130,54)" fg:x="186575" fg:w="693"/><text x="8.0123%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (648 samples, 0.03%)</title><rect x="7.7911%" y="405" width="0.0270%" height="15" fill="rgb(234,196,4)" fg:x="187268" fg:w="648"/><text x="8.0411%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (480 samples, 0.02%)</title><rect x="7.7981%" y="389" width="0.0200%" height="15" fill="rgb(250,143,31)" fg:x="187436" fg:w="480"/><text x="8.0481%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (2,296 samples, 0.10%)</title><rect x="7.7472%" y="421" width="0.0955%" height="15" fill="rgb(211,110,34)" fg:x="186211" fg:w="2296"/><text x="7.9972%" y="431.50"></text></g><g><title>schedule (591 samples, 0.02%)</title><rect x="7.8181%" y="405" width="0.0246%" height="15" fill="rgb(215,124,48)" fg:x="187916" fg:w="591"/><text x="8.0681%" y="415.50"></text></g><g><title>__schedule (585 samples, 0.02%)</title><rect x="7.8184%" y="389" width="0.0243%" height="15" fill="rgb(216,46,13)" fg:x="187922" fg:w="585"/><text x="8.0684%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (2,431 samples, 0.10%)</title><rect x="7.7468%" y="437" width="0.1011%" height="15" fill="rgb(205,184,25)" fg:x="186202" fg:w="2431"/><text x="7.9968%" y="447.50"></text></g><g><title>prepare_to_wait_event (246 samples, 0.01%)</title><rect x="7.8526%" y="421" width="0.0102%" height="15" fill="rgb(228,1,10)" fg:x="188744" fg:w="246"/><text x="8.1026%" y="431.50"></text></g><g><title>__schedule (581 samples, 0.02%)</title><rect x="7.8688%" y="405" width="0.0242%" height="15" fill="rgb(213,116,27)" fg:x="189134" fg:w="581"/><text x="8.1188%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (1,083 samples, 0.05%)</title><rect x="7.8479%" y="437" width="0.0451%" height="15" fill="rgb(241,95,50)" fg:x="188633" fg:w="1083"/><text x="8.0979%" y="447.50"></text></g><g><title>schedule (585 samples, 0.02%)</title><rect x="7.8687%" y="421" width="0.0243%" height="15" fill="rgb(238,48,32)" fg:x="189131" fg:w="585"/><text x="8.1187%" y="431.50"></text></g><g><title>ttwu_do_activate (248 samples, 0.01%)</title><rect x="7.9038%" y="373" width="0.0103%" height="15" fill="rgb(235,113,49)" fg:x="189976" fg:w="248"/><text x="8.1538%" y="383.50"></text></g><g><title>__wake_up_common (549 samples, 0.02%)</title><rect x="7.8932%" y="421" width="0.0228%" height="15" fill="rgb(205,127,43)" fg:x="189722" fg:w="549"/><text x="8.1432%" y="431.50"></text></g><g><title>autoremove_wake_function (540 samples, 0.02%)</title><rect x="7.8936%" y="405" width="0.0225%" height="15" fill="rgb(250,162,2)" fg:x="189731" fg:w="540"/><text x="8.1436%" y="415.50"></text></g><g><title>try_to_wake_up (515 samples, 0.02%)</title><rect x="7.8947%" y="389" width="0.0214%" height="15" fill="rgb(220,13,41)" fg:x="189756" fg:w="515"/><text x="8.1447%" y="399.50"></text></g><g><title>__wake_up_common_lock (566 samples, 0.02%)</title><rect x="7.8930%" y="437" width="0.0235%" height="15" fill="rgb(249,221,25)" fg:x="189716" fg:w="566"/><text x="8.1430%" y="447.50"></text></g><g><title>btrfs_tree_read_lock_atomic (765 samples, 0.03%)</title><rect x="7.9221%" y="437" width="0.0318%" height="15" fill="rgb(215,208,19)" fg:x="190416" fg:w="765"/><text x="8.1721%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (671 samples, 0.03%)</title><rect x="7.9260%" y="421" width="0.0279%" height="15" fill="rgb(236,175,2)" fg:x="190510" fg:w="671"/><text x="8.1760%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (346 samples, 0.01%)</title><rect x="7.9583%" y="437" width="0.0144%" height="15" fill="rgb(241,52,2)" fg:x="191285" fg:w="346"/><text x="8.2083%" y="447.50"></text></g><g><title>find_extent_buffer (449 samples, 0.02%)</title><rect x="7.9826%" y="421" width="0.0187%" height="15" fill="rgb(248,140,14)" fg:x="191870" fg:w="449"/><text x="8.2326%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (765 samples, 0.03%)</title><rect x="7.9727%" y="437" width="0.0318%" height="15" fill="rgb(253,22,42)" fg:x="191631" fg:w="765"/><text x="8.2227%" y="447.50"></text></g><g><title>btrfs_search_slot (6,437 samples, 0.27%)</title><rect x="7.7391%" y="453" width="0.2678%" height="15" fill="rgb(234,61,47)" fg:x="186018" fg:w="6437"/><text x="7.9891%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (6,533 samples, 0.27%)</title><rect x="7.7379%" y="469" width="0.2718%" height="15" fill="rgb(208,226,15)" fg:x="185988" fg:w="6533"/><text x="7.9879%" y="479.50"></text></g><g><title>btrfs_lookup (6,944 samples, 0.29%)</title><rect x="7.7257%" y="501" width="0.2889%" height="15" fill="rgb(217,221,4)" fg:x="185695" fg:w="6944"/><text x="7.9757%" y="511.50"></text></g><g><title>btrfs_lookup_dentry (6,923 samples, 0.29%)</title><rect x="7.7266%" y="485" width="0.2880%" height="15" fill="rgb(212,174,34)" fg:x="185716" fg:w="6923"/><text x="7.9766%" y="495.50"></text></g><g><title>kmem_cache_alloc (388 samples, 0.02%)</title><rect x="8.0170%" y="469" width="0.0161%" height="15" fill="rgb(253,83,4)" fg:x="192696" fg:w="388"/><text x="8.2670%" y="479.50"></text></g><g><title>__d_alloc (448 samples, 0.02%)</title><rect x="8.0149%" y="485" width="0.0186%" height="15" fill="rgb(250,195,49)" fg:x="192646" fg:w="448"/><text x="8.2649%" y="495.50"></text></g><g><title>d_alloc (487 samples, 0.02%)</title><rect x="8.0146%" y="501" width="0.0203%" height="15" fill="rgb(241,192,25)" fg:x="192639" fg:w="487"/><text x="8.2646%" y="511.50"></text></g><g><title>__lookup_hash (7,645 samples, 0.32%)</title><rect x="7.7252%" y="517" width="0.3181%" height="15" fill="rgb(208,124,10)" fg:x="185682" fg:w="7645"/><text x="7.9752%" y="527.50"></text></g><g><title>inode_permission.part.0 (580 samples, 0.02%)</title><rect x="8.0669%" y="469" width="0.0241%" height="15" fill="rgb(222,33,0)" fg:x="193896" fg:w="580"/><text x="8.3169%" y="479.50"></text></g><g><title>__d_lookup_rcu (800 samples, 0.03%)</title><rect x="8.1031%" y="437" width="0.0333%" height="15" fill="rgb(234,209,28)" fg:x="194766" fg:w="800"/><text x="8.3531%" y="447.50"></text></g><g><title>lookup_fast (911 samples, 0.04%)</title><rect x="8.0986%" y="453" width="0.0379%" height="15" fill="rgb(224,11,23)" fg:x="194658" fg:w="911"/><text x="8.3486%" y="463.50"></text></g><g><title>link_path_walk.part.0 (2,175 samples, 0.09%)</title><rect x="8.0523%" y="485" width="0.0905%" height="15" fill="rgb(232,99,1)" fg:x="193545" fg:w="2175"/><text x="8.3023%" y="495.50"></text></g><g><title>walk_component (1,203 samples, 0.05%)</title><rect x="8.0927%" y="469" width="0.0500%" height="15" fill="rgb(237,95,45)" fg:x="194517" fg:w="1203"/><text x="8.3427%" y="479.50"></text></g><g><title>filename_parentat (2,578 samples, 0.11%)</title><rect x="8.0442%" y="517" width="0.1073%" height="15" fill="rgb(208,109,11)" fg:x="193351" fg:w="2578"/><text x="8.2942%" y="527.50"></text></g><g><title>path_parentat (2,531 samples, 0.11%)</title><rect x="8.0462%" y="501" width="0.1053%" height="15" fill="rgb(216,190,48)" fg:x="193398" fg:w="2531"/><text x="8.2962%" y="511.50"></text></g><g><title>filename_create (10,443 samples, 0.43%)</title><rect x="7.7243%" y="533" width="0.4345%" height="15" fill="rgb(251,171,36)" fg:x="185662" fg:w="10443"/><text x="7.9743%" y="543.50"></text></g><g><title>getname_flags.part.0 (497 samples, 0.02%)</title><rect x="8.1592%" y="533" width="0.0207%" height="15" fill="rgb(230,62,22)" fg:x="196114" fg:w="497"/><text x="8.4092%" y="543.50"></text></g><g><title>strncpy_from_user (244 samples, 0.01%)</title><rect x="8.1697%" y="517" width="0.0102%" height="15" fill="rgb(225,114,35)" fg:x="196367" fg:w="244"/><text x="8.4197%" y="527.50"></text></g><g><title>__btrfs_end_transaction (401 samples, 0.02%)</title><rect x="8.1935%" y="501" width="0.0167%" height="15" fill="rgb(215,118,42)" fg:x="196940" fg:w="401"/><text x="8.4435%" y="511.50"></text></g><g><title>btrfs_insert_delayed_dir_index (768 samples, 0.03%)</title><rect x="8.2182%" y="469" width="0.0320%" height="15" fill="rgb(243,119,21)" fg:x="197533" fg:w="768"/><text x="8.4682%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (510 samples, 0.02%)</title><rect x="8.2914%" y="373" width="0.0212%" height="15" fill="rgb(252,177,53)" fg:x="199293" fg:w="510"/><text x="8.5414%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (487 samples, 0.02%)</title><rect x="8.2924%" y="357" width="0.0203%" height="15" fill="rgb(237,209,29)" fg:x="199316" fg:w="487"/><text x="8.5424%" y="367.50"></text></g><g><title>prepare_to_wait_event (589 samples, 0.02%)</title><rect x="8.2886%" y="389" width="0.0245%" height="15" fill="rgb(212,65,23)" fg:x="199225" fg:w="589"/><text x="8.5386%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (597 samples, 0.02%)</title><rect x="8.3131%" y="389" width="0.0248%" height="15" fill="rgb(230,222,46)" fg:x="199814" fg:w="597"/><text x="8.5631%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (439 samples, 0.02%)</title><rect x="8.3197%" y="373" width="0.0183%" height="15" fill="rgb(215,135,32)" fg:x="199972" fg:w="439"/><text x="8.5697%" y="383.50"></text></g><g><title>__schedule (438 samples, 0.02%)</title><rect x="8.3382%" y="373" width="0.0182%" height="15" fill="rgb(246,101,22)" fg:x="200417" fg:w="438"/><text x="8.5882%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (1,927 samples, 0.08%)</title><rect x="8.2763%" y="405" width="0.0802%" height="15" fill="rgb(206,107,13)" fg:x="198929" fg:w="1927"/><text x="8.5263%" y="415.50"></text></g><g><title>schedule (445 samples, 0.02%)</title><rect x="8.3380%" y="389" width="0.0185%" height="15" fill="rgb(250,100,44)" fg:x="200411" fg:w="445"/><text x="8.5880%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (2,036 samples, 0.08%)</title><rect x="8.2758%" y="421" width="0.0847%" height="15" fill="rgb(231,147,38)" fg:x="198916" fg:w="2036"/><text x="8.5258%" y="431.50"></text></g><g><title>prepare_to_wait_event (283 samples, 0.01%)</title><rect x="8.3647%" y="405" width="0.0118%" height="15" fill="rgb(229,8,40)" fg:x="201053" fg:w="283"/><text x="8.6147%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (244 samples, 0.01%)</title><rect x="8.3764%" y="405" width="0.0102%" height="15" fill="rgb(221,135,30)" fg:x="201336" fg:w="244"/><text x="8.6264%" y="415.50"></text></g><g><title>finish_task_switch (244 samples, 0.01%)</title><rect x="8.3951%" y="373" width="0.0102%" height="15" fill="rgb(249,193,18)" fg:x="201784" fg:w="244"/><text x="8.6451%" y="383.50"></text></g><g><title>__btrfs_tree_lock (1,269 samples, 0.05%)</title><rect x="8.3605%" y="421" width="0.0528%" height="15" fill="rgb(209,133,39)" fg:x="200952" fg:w="1269"/><text x="8.6105%" y="431.50"></text></g><g><title>schedule (641 samples, 0.03%)</title><rect x="8.3866%" y="405" width="0.0267%" height="15" fill="rgb(232,100,14)" fg:x="201580" fg:w="641"/><text x="8.6366%" y="415.50"></text></g><g><title>__schedule (635 samples, 0.03%)</title><rect x="8.3868%" y="389" width="0.0264%" height="15" fill="rgb(224,185,1)" fg:x="201586" fg:w="635"/><text x="8.6368%" y="399.50"></text></g><g><title>btrfs_try_tree_write_lock (1,326 samples, 0.06%)</title><rect x="8.4186%" y="421" width="0.0552%" height="15" fill="rgb(223,139,8)" fg:x="202350" fg:w="1326"/><text x="8.6686%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,270 samples, 0.05%)</title><rect x="8.4210%" y="405" width="0.0528%" height="15" fill="rgb(232,213,38)" fg:x="202406" fg:w="1270"/><text x="8.6710%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (437 samples, 0.02%)</title><rect x="8.4556%" y="389" width="0.0182%" height="15" fill="rgb(207,94,22)" fg:x="203239" fg:w="437"/><text x="8.7056%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (344 samples, 0.01%)</title><rect x="8.4738%" y="421" width="0.0143%" height="15" fill="rgb(219,183,54)" fg:x="203676" fg:w="344"/><text x="8.7238%" y="431.50"></text></g><g><title>find_extent_buffer (361 samples, 0.02%)</title><rect x="8.4949%" y="405" width="0.0150%" height="15" fill="rgb(216,185,54)" fg:x="204184" fg:w="361"/><text x="8.7449%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (589 samples, 0.02%)</title><rect x="8.4881%" y="421" width="0.0245%" height="15" fill="rgb(254,217,39)" fg:x="204020" fg:w="589"/><text x="8.7381%" y="431.50"></text></g><g><title>split_leaf (297 samples, 0.01%)</title><rect x="8.5126%" y="421" width="0.0124%" height="15" fill="rgb(240,178,23)" fg:x="204609" fg:w="297"/><text x="8.7626%" y="431.50"></text></g><g><title>ttwu_do_activate (334 samples, 0.01%)</title><rect x="8.5432%" y="341" width="0.0139%" height="15" fill="rgb(218,11,47)" fg:x="205345" fg:w="334"/><text x="8.7932%" y="351.50"></text></g><g><title>__wake_up_common (802 samples, 0.03%)</title><rect x="8.5274%" y="389" width="0.0334%" height="15" fill="rgb(218,51,51)" fg:x="204964" fg:w="802"/><text x="8.7774%" y="399.50"></text></g><g><title>autoremove_wake_function (785 samples, 0.03%)</title><rect x="8.5281%" y="373" width="0.0327%" height="15" fill="rgb(238,126,27)" fg:x="204981" fg:w="785"/><text x="8.7781%" y="383.50"></text></g><g><title>try_to_wake_up (772 samples, 0.03%)</title><rect x="8.5286%" y="357" width="0.0321%" height="15" fill="rgb(249,202,22)" fg:x="204994" fg:w="772"/><text x="8.7786%" y="367.50"></text></g><g><title>__wake_up_common_lock (817 samples, 0.03%)</title><rect x="8.5273%" y="405" width="0.0340%" height="15" fill="rgb(254,195,49)" fg:x="204963" fg:w="817"/><text x="8.7773%" y="415.50"></text></g><g><title>btrfs_search_slot (7,098 samples, 0.30%)</title><rect x="8.2689%" y="437" width="0.2953%" height="15" fill="rgb(208,123,14)" fg:x="198751" fg:w="7098"/><text x="8.5189%" y="447.50"></text></g><g><title>unlock_up (943 samples, 0.04%)</title><rect x="8.5250%" y="421" width="0.0392%" height="15" fill="rgb(224,200,8)" fg:x="204906" fg:w="943"/><text x="8.7750%" y="431.50"></text></g><g><title>btrfs_get_token_32 (636 samples, 0.03%)</title><rect x="8.5724%" y="421" width="0.0265%" height="15" fill="rgb(217,61,36)" fg:x="206046" fg:w="636"/><text x="8.8224%" y="431.50"></text></g><g><title>btrfs_set_token_32 (484 samples, 0.02%)</title><rect x="8.6046%" y="421" width="0.0201%" height="15" fill="rgb(206,35,45)" fg:x="206821" fg:w="484"/><text x="8.8546%" y="431.50"></text></g><g><title>memcpy_extent_buffer (265 samples, 0.01%)</title><rect x="8.6266%" y="421" width="0.0110%" height="15" fill="rgb(217,65,33)" fg:x="207350" fg:w="265"/><text x="8.8766%" y="431.50"></text></g><g><title>insert_with_overflow (9,170 samples, 0.38%)</title><rect x="8.2651%" y="469" width="0.3815%" height="15" fill="rgb(222,158,48)" fg:x="198660" fg:w="9170"/><text x="8.5151%" y="479.50"></text></g><g><title>btrfs_insert_empty_items (9,102 samples, 0.38%)</title><rect x="8.2679%" y="453" width="0.3787%" height="15" fill="rgb(254,2,54)" fg:x="198728" fg:w="9102"/><text x="8.5179%" y="463.50"></text></g><g><title>setup_items_for_insert (1,981 samples, 0.08%)</title><rect x="8.5642%" y="437" width="0.0824%" height="15" fill="rgb(250,143,38)" fg:x="205849" fg:w="1981"/><text x="8.8142%" y="447.50"></text></g><g><title>btrfs_insert_dir_item (10,554 samples, 0.44%)</title><rect x="8.2153%" y="485" width="0.4391%" height="15" fill="rgb(248,25,0)" fg:x="197464" fg:w="10554"/><text x="8.4653%" y="495.50"></text></g><g><title>btrfs_update_inode (345 samples, 0.01%)</title><rect x="8.6544%" y="485" width="0.0144%" height="15" fill="rgb(206,152,27)" fg:x="208018" fg:w="345"/><text x="8.9044%" y="495.50"></text></g><g><title>btrfs_add_link (11,002 samples, 0.46%)</title><rect x="8.2126%" y="501" width="0.4577%" height="15" fill="rgb(240,77,30)" fg:x="197397" fg:w="11002"/><text x="8.4626%" y="511.50"></text></g><g><title>__queue_work (247 samples, 0.01%)</title><rect x="8.6744%" y="469" width="0.0103%" height="15" fill="rgb(231,5,3)" fg:x="208497" fg:w="247"/><text x="8.9244%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (348 samples, 0.01%)</title><rect x="8.6703%" y="501" width="0.0145%" height="15" fill="rgb(207,226,32)" fg:x="208399" fg:w="348"/><text x="8.9203%" y="511.50"></text></g><g><title>queue_work_on (256 samples, 0.01%)</title><rect x="8.6741%" y="485" width="0.0107%" height="15" fill="rgb(222,207,47)" fg:x="208491" fg:w="256"/><text x="8.9241%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (444 samples, 0.02%)</title><rect x="8.7312%" y="405" width="0.0185%" height="15" fill="rgb(229,115,45)" fg:x="209863" fg:w="444"/><text x="8.9812%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (420 samples, 0.02%)</title><rect x="8.7322%" y="389" width="0.0175%" height="15" fill="rgb(224,191,6)" fg:x="209887" fg:w="420"/><text x="8.9822%" y="399.50"></text></g><g><title>prepare_to_wait_event (490 samples, 0.02%)</title><rect x="8.7297%" y="421" width="0.0204%" height="15" fill="rgb(230,227,24)" fg:x="209827" fg:w="490"/><text x="8.9797%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (584 samples, 0.02%)</title><rect x="8.7501%" y="421" width="0.0243%" height="15" fill="rgb(228,80,19)" fg:x="210317" fg:w="584"/><text x="9.0001%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (421 samples, 0.02%)</title><rect x="8.7569%" y="405" width="0.0175%" height="15" fill="rgb(247,229,0)" fg:x="210480" fg:w="421"/><text x="9.0069%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (1,915 samples, 0.08%)</title><rect x="8.7173%" y="437" width="0.0797%" height="15" fill="rgb(237,194,15)" fg:x="209528" fg:w="1915"/><text x="8.9673%" y="447.50"></text></g><g><title>schedule (542 samples, 0.02%)</title><rect x="8.7744%" y="421" width="0.0225%" height="15" fill="rgb(219,203,20)" fg:x="210901" fg:w="542"/><text x="9.0244%" y="431.50"></text></g><g><title>__schedule (538 samples, 0.02%)</title><rect x="8.7745%" y="405" width="0.0224%" height="15" fill="rgb(234,128,8)" fg:x="210905" fg:w="538"/><text x="9.0245%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (2,003 samples, 0.08%)</title><rect x="8.7171%" y="453" width="0.0833%" height="15" fill="rgb(248,202,8)" fg:x="209525" fg:w="2003"/><text x="8.9671%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (255 samples, 0.01%)</title><rect x="8.8152%" y="437" width="0.0106%" height="15" fill="rgb(206,104,37)" fg:x="211882" fg:w="255"/><text x="9.0652%" y="447.50"></text></g><g><title>finish_task_switch (269 samples, 0.01%)</title><rect x="8.8361%" y="405" width="0.0112%" height="15" fill="rgb(223,8,27)" fg:x="212385" fg:w="269"/><text x="9.0861%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,364 samples, 0.06%)</title><rect x="8.8005%" y="453" width="0.0567%" height="15" fill="rgb(216,217,28)" fg:x="211528" fg:w="1364"/><text x="9.0505%" y="463.50"></text></g><g><title>schedule (755 samples, 0.03%)</title><rect x="8.8258%" y="437" width="0.0314%" height="15" fill="rgb(249,199,1)" fg:x="212137" fg:w="755"/><text x="9.0758%" y="447.50"></text></g><g><title>__schedule (751 samples, 0.03%)</title><rect x="8.8260%" y="421" width="0.0312%" height="15" fill="rgb(240,85,17)" fg:x="212141" fg:w="751"/><text x="9.0760%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (1,253 samples, 0.05%)</title><rect x="8.8629%" y="453" width="0.0521%" height="15" fill="rgb(206,108,45)" fg:x="213029" fg:w="1253"/><text x="9.1129%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (1,190 samples, 0.05%)</title><rect x="8.8655%" y="437" width="0.0495%" height="15" fill="rgb(245,210,41)" fg:x="213092" fg:w="1190"/><text x="9.1155%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (365 samples, 0.02%)</title><rect x="8.8999%" y="421" width="0.0152%" height="15" fill="rgb(206,13,37)" fg:x="213917" fg:w="365"/><text x="9.1499%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (278 samples, 0.01%)</title><rect x="8.9150%" y="453" width="0.0116%" height="15" fill="rgb(250,61,18)" fg:x="214282" fg:w="278"/><text x="9.1650%" y="463.50"></text></g><g><title>find_extent_buffer (367 samples, 0.02%)</title><rect x="8.9341%" y="437" width="0.0153%" height="15" fill="rgb(235,172,48)" fg:x="214741" fg:w="367"/><text x="9.1841%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (599 samples, 0.02%)</title><rect x="8.9266%" y="453" width="0.0249%" height="15" fill="rgb(249,201,17)" fg:x="214560" fg:w="599"/><text x="9.1766%" y="463.50"></text></g><g><title>split_leaf (415 samples, 0.02%)</title><rect x="8.9516%" y="453" width="0.0173%" height="15" fill="rgb(219,208,6)" fg:x="215160" fg:w="415"/><text x="9.2016%" y="463.50"></text></g><g><title>ttwu_do_activate (385 samples, 0.02%)</title><rect x="8.9879%" y="373" width="0.0160%" height="15" fill="rgb(248,31,23)" fg:x="216034" fg:w="385"/><text x="9.2379%" y="383.50"></text></g><g><title>__wake_up_common (866 samples, 0.04%)</title><rect x="8.9724%" y="421" width="0.0360%" height="15" fill="rgb(245,15,42)" fg:x="215661" fg:w="866"/><text x="9.2224%" y="431.50"></text></g><g><title>autoremove_wake_function (849 samples, 0.04%)</title><rect x="8.9731%" y="405" width="0.0353%" height="15" fill="rgb(222,217,39)" fg:x="215678" fg:w="849"/><text x="9.2231%" y="415.50"></text></g><g><title>try_to_wake_up (830 samples, 0.03%)</title><rect x="8.9739%" y="389" width="0.0345%" height="15" fill="rgb(210,219,27)" fg:x="215697" fg:w="830"/><text x="9.2239%" y="399.50"></text></g><g><title>__wake_up_common_lock (887 samples, 0.04%)</title><rect x="8.9723%" y="437" width="0.0369%" height="15" fill="rgb(252,166,36)" fg:x="215658" fg:w="887"/><text x="9.2223%" y="447.50"></text></g><g><title>btrfs_search_slot (7,229 samples, 0.30%)</title><rect x="8.7116%" y="469" width="0.3008%" height="15" fill="rgb(245,132,34)" fg:x="209393" fg:w="7229"/><text x="8.9616%" y="479.50"></text></g><g><title>unlock_up (1,045 samples, 0.04%)</title><rect x="8.9689%" y="453" width="0.0435%" height="15" fill="rgb(236,54,3)" fg:x="215577" fg:w="1045"/><text x="9.2189%" y="463.50"></text></g><g><title>btrfs_get_token_32 (317 samples, 0.01%)</title><rect x="9.0198%" y="453" width="0.0132%" height="15" fill="rgb(241,173,43)" fg:x="216801" fg:w="317"/><text x="9.2698%" y="463.50"></text></g><g><title>btrfs_set_token_32 (295 samples, 0.01%)</title><rect x="9.0404%" y="453" width="0.0123%" height="15" fill="rgb(215,190,9)" fg:x="217294" fg:w="295"/><text x="9.2904%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (8,474 samples, 0.35%)</title><rect x="8.7111%" y="485" width="0.3526%" height="15" fill="rgb(242,101,16)" fg:x="209380" fg:w="8474"/><text x="8.9611%" y="495.50"></text></g><g><title>setup_items_for_insert (1,232 samples, 0.05%)</title><rect x="9.0124%" y="469" width="0.0513%" height="15" fill="rgb(223,190,21)" fg:x="216622" fg:w="1232"/><text x="9.2624%" y="479.50"></text></g><g><title>fill_inode_item (399 samples, 0.02%)</title><rect x="9.0725%" y="485" width="0.0166%" height="15" fill="rgb(215,228,25)" fg:x="218066" fg:w="399"/><text x="9.3225%" y="495.50"></text></g><g><title>inode_tree_add (805 samples, 0.03%)</title><rect x="9.0929%" y="485" width="0.0335%" height="15" fill="rgb(225,36,22)" fg:x="218558" fg:w="805"/><text x="9.3429%" y="495.50"></text></g><g><title>btrfs_alloc_inode (518 samples, 0.02%)</title><rect x="9.1409%" y="453" width="0.0216%" height="15" fill="rgb(251,106,46)" fg:x="219710" fg:w="518"/><text x="9.3909%" y="463.50"></text></g><g><title>kmem_cache_alloc (373 samples, 0.02%)</title><rect x="9.1469%" y="437" width="0.0155%" height="15" fill="rgb(208,90,1)" fg:x="219855" fg:w="373"/><text x="9.3969%" y="447.50"></text></g><g><title>alloc_inode (710 samples, 0.03%)</title><rect x="9.1395%" y="469" width="0.0295%" height="15" fill="rgb(243,10,4)" fg:x="219676" fg:w="710"/><text x="9.3895%" y="479.50"></text></g><g><title>new_inode (781 samples, 0.03%)</title><rect x="9.1383%" y="485" width="0.0325%" height="15" fill="rgb(212,137,27)" fg:x="219647" fg:w="781"/><text x="9.3883%" y="495.50"></text></g><g><title>btrfs_new_inode (11,496 samples, 0.48%)</title><rect x="8.6939%" y="501" width="0.4783%" height="15" fill="rgb(231,220,49)" fg:x="208966" fg:w="11496"/><text x="8.9439%" y="511.50"></text></g><g><title>btrfs_get_or_create_delayed_node (561 samples, 0.02%)</title><rect x="9.1897%" y="469" width="0.0233%" height="15" fill="rgb(237,96,20)" fg:x="220883" fg:w="561"/><text x="9.4397%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (1,028 samples, 0.04%)</title><rect x="9.1742%" y="485" width="0.0428%" height="15" fill="rgb(239,229,30)" fg:x="220510" fg:w="1028"/><text x="9.4242%" y="495.50"></text></g><g><title>btrfs_update_inode (1,112 samples, 0.05%)</title><rect x="9.1726%" y="501" width="0.0463%" height="15" fill="rgb(219,65,33)" fg:x="220472" fg:w="1112"/><text x="9.4226%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (499 samples, 0.02%)</title><rect x="9.2334%" y="485" width="0.0208%" height="15" fill="rgb(243,134,7)" fg:x="221933" fg:w="499"/><text x="9.4834%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (423 samples, 0.02%)</title><rect x="9.2365%" y="469" width="0.0176%" height="15" fill="rgb(216,177,54)" fg:x="222009" fg:w="423"/><text x="9.4865%" y="479.50"></text></g><g><title>__reserve_bytes (386 samples, 0.02%)</title><rect x="9.2381%" y="453" width="0.0161%" height="15" fill="rgb(211,160,20)" fg:x="222046" fg:w="386"/><text x="9.4881%" y="463.50"></text></g><g><title>btrfs_mkdir (25,775 samples, 1.07%)</title><rect x="8.1918%" y="517" width="1.0723%" height="15" fill="rgb(239,85,39)" fg:x="196899" fg:w="25775"/><text x="8.4418%" y="527.50"></text></g><g><title>start_transaction (902 samples, 0.04%)</title><rect x="9.2267%" y="501" width="0.0375%" height="15" fill="rgb(232,125,22)" fg:x="221772" fg:w="902"/><text x="9.4767%" y="511.50"></text></g><g><title>do_mkdirat (37,584 samples, 1.56%)</title><rect x="7.7070%" y="549" width="1.5637%" height="15" fill="rgb(244,57,34)" fg:x="185245" fg:w="37584"/><text x="7.9570%" y="559.50"></text></g><g><title>vfs_mkdir (25,989 samples, 1.08%)</title><rect x="8.1894%" y="533" width="1.0813%" height="15" fill="rgb(214,203,32)" fg:x="196840" fg:w="25989"/><text x="8.4394%" y="543.50"></text></g><g><title>do_syscall_64 (37,644 samples, 1.57%)</title><rect x="7.7054%" y="565" width="1.5662%" height="15" fill="rgb(207,58,43)" fg:x="185207" fg:w="37644"/><text x="7.9554%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37,753 samples, 1.57%)</title><rect x="7.7043%" y="581" width="1.5707%" height="15" fill="rgb(215,193,15)" fg:x="185181" fg:w="37753"/><text x="7.9543%" y="591.50"></text></g><g><title>__GI___mkdir (37,926 samples, 1.58%)</title><rect x="7.6989%" y="597" width="1.5779%" height="15" fill="rgb(232,15,44)" fg:x="185051" fg:w="37926"/><text x="7.9489%" y="607.50"></text></g><g><title>btrfs_filldir (1,084 samples, 0.05%)</title><rect x="9.3534%" y="485" width="0.0451%" height="15" fill="rgb(212,3,48)" fg:x="224818" fg:w="1084"/><text x="9.6034%" y="495.50"></text></g><g><title>filldir64 (1,011 samples, 0.04%)</title><rect x="9.3564%" y="469" width="0.0421%" height="15" fill="rgb(218,128,7)" fg:x="224891" fg:w="1011"/><text x="9.6064%" y="479.50"></text></g><g><title>verify_dirent_name (295 samples, 0.01%)</title><rect x="9.3862%" y="453" width="0.0123%" height="15" fill="rgb(226,216,39)" fg:x="225607" fg:w="295"/><text x="9.6362%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (284 samples, 0.01%)</title><rect x="9.4235%" y="437" width="0.0118%" height="15" fill="rgb(243,47,51)" fg:x="226503" fg:w="284"/><text x="9.6735%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (292 samples, 0.01%)</title><rect x="9.4234%" y="453" width="0.0121%" height="15" fill="rgb(241,183,40)" fg:x="226502" fg:w="292"/><text x="9.6734%" y="463.50"></text></g><g><title>btrfs_search_slot (524 samples, 0.02%)</title><rect x="9.4229%" y="469" width="0.0218%" height="15" fill="rgb(231,217,32)" fg:x="226488" fg:w="524"/><text x="9.6729%" y="479.50"></text></g><g><title>btrfs_next_old_leaf (672 samples, 0.03%)</title><rect x="9.4208%" y="485" width="0.0280%" height="15" fill="rgb(229,61,38)" fg:x="226439" fg:w="672"/><text x="9.6708%" y="495.50"></text></g><g><title>btrfs_readdir_get_delayed_items (444 samples, 0.02%)</title><rect x="9.4493%" y="485" width="0.0185%" height="15" fill="rgb(225,210,5)" fg:x="227124" fg:w="444"/><text x="9.6993%" y="495.50"></text></g><g><title>btrfs_release_path (447 samples, 0.02%)</title><rect x="9.4698%" y="485" width="0.0186%" height="15" fill="rgb(231,79,45)" fg:x="227615" fg:w="447"/><text x="9.7198%" y="495.50"></text></g><g><title>finish_wait (660 samples, 0.03%)</title><rect x="9.5154%" y="437" width="0.0275%" height="15" fill="rgb(224,100,7)" fg:x="228712" fg:w="660"/><text x="9.7654%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (628 samples, 0.03%)</title><rect x="9.5167%" y="421" width="0.0261%" height="15" fill="rgb(241,198,18)" fg:x="228744" fg:w="628"/><text x="9.7667%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (588 samples, 0.02%)</title><rect x="9.5184%" y="405" width="0.0245%" height="15" fill="rgb(252,97,53)" fg:x="228784" fg:w="588"/><text x="9.7684%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (1,568 samples, 0.07%)</title><rect x="9.5499%" y="421" width="0.0652%" height="15" fill="rgb(220,88,7)" fg:x="229542" fg:w="1568"/><text x="9.7999%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,472 samples, 0.06%)</title><rect x="9.5539%" y="405" width="0.0612%" height="15" fill="rgb(213,176,14)" fg:x="229638" fg:w="1472"/><text x="9.8039%" y="415.50"></text></g><g><title>prepare_to_wait_event (1,760 samples, 0.07%)</title><rect x="9.5431%" y="437" width="0.0732%" height="15" fill="rgb(246,73,7)" fg:x="229378" fg:w="1760"/><text x="9.7931%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (1,823 samples, 0.08%)</title><rect x="9.6163%" y="437" width="0.0758%" height="15" fill="rgb(245,64,36)" fg:x="231138" fg:w="1823"/><text x="9.8663%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,312 samples, 0.05%)</title><rect x="9.6376%" y="421" width="0.0546%" height="15" fill="rgb(245,80,10)" fg:x="231649" fg:w="1312"/><text x="9.8876%" y="431.50"></text></g><g><title>dequeue_entity (282 samples, 0.01%)</title><rect x="9.7019%" y="389" width="0.0117%" height="15" fill="rgb(232,107,50)" fg:x="233196" fg:w="282"/><text x="9.9519%" y="399.50"></text></g><g><title>dequeue_task_fair (340 samples, 0.01%)</title><rect x="9.7006%" y="405" width="0.0141%" height="15" fill="rgb(253,3,0)" fg:x="233163" fg:w="340"/><text x="9.9506%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (501 samples, 0.02%)</title><rect x="9.7173%" y="389" width="0.0208%" height="15" fill="rgb(212,99,53)" fg:x="233566" fg:w="501"/><text x="9.9673%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (494 samples, 0.02%)</title><rect x="9.7176%" y="373" width="0.0206%" height="15" fill="rgb(249,111,54)" fg:x="233573" fg:w="494"/><text x="9.9676%" y="383.50"></text></g><g><title>native_write_msr (490 samples, 0.02%)</title><rect x="9.7178%" y="357" width="0.0204%" height="15" fill="rgb(249,55,30)" fg:x="233577" fg:w="490"/><text x="9.9678%" y="367.50"></text></g><g><title>finish_task_switch (595 samples, 0.02%)</title><rect x="9.7147%" y="405" width="0.0248%" height="15" fill="rgb(237,47,42)" fg:x="233503" fg:w="595"/><text x="9.9647%" y="415.50"></text></g><g><title>psi_task_change (278 samples, 0.01%)</title><rect x="9.7453%" y="405" width="0.0116%" height="15" fill="rgb(211,20,18)" fg:x="234238" fg:w="278"/><text x="9.9953%" y="415.50"></text></g><g><title>__schedule (1,619 samples, 0.07%)</title><rect x="9.6931%" y="421" width="0.0674%" height="15" fill="rgb(231,203,46)" fg:x="232983" fg:w="1619"/><text x="9.9431%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (6,138 samples, 0.26%)</title><rect x="9.5053%" y="453" width="0.2554%" height="15" fill="rgb(237,142,3)" fg:x="228469" fg:w="6138"/><text x="9.7553%" y="463.50"></text></g><g><title>schedule (1,646 samples, 0.07%)</title><rect x="9.6922%" y="437" width="0.0685%" height="15" fill="rgb(241,107,1)" fg:x="232961" fg:w="1646"/><text x="9.9422%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (6,387 samples, 0.27%)</title><rect x="9.5038%" y="469" width="0.2657%" height="15" fill="rgb(229,83,13)" fg:x="228433" fg:w="6387"/><text x="9.7538%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (509 samples, 0.02%)</title><rect x="9.7695%" y="469" width="0.0212%" height="15" fill="rgb(241,91,40)" fg:x="234820" fg:w="509"/><text x="10.0195%" y="479.50"></text></g><g><title>schedule (440 samples, 0.02%)</title><rect x="9.7724%" y="453" width="0.0183%" height="15" fill="rgb(225,3,45)" fg:x="234889" fg:w="440"/><text x="10.0224%" y="463.50"></text></g><g><title>__schedule (437 samples, 0.02%)</title><rect x="9.7725%" y="437" width="0.0182%" height="15" fill="rgb(244,223,14)" fg:x="234892" fg:w="437"/><text x="10.0225%" y="447.50"></text></g><g><title>ttwu_do_activate (366 samples, 0.02%)</title><rect x="9.8055%" y="405" width="0.0152%" height="15" fill="rgb(224,124,37)" fg:x="235686" fg:w="366"/><text x="10.0555%" y="415.50"></text></g><g><title>__wake_up_common (796 samples, 0.03%)</title><rect x="9.7908%" y="453" width="0.0331%" height="15" fill="rgb(251,171,30)" fg:x="235332" fg:w="796"/><text x="10.0408%" y="463.50"></text></g><g><title>autoremove_wake_function (785 samples, 0.03%)</title><rect x="9.7913%" y="437" width="0.0327%" height="15" fill="rgb(236,46,54)" fg:x="235343" fg:w="785"/><text x="10.0413%" y="447.50"></text></g><g><title>try_to_wake_up (753 samples, 0.03%)</title><rect x="9.7926%" y="421" width="0.0313%" height="15" fill="rgb(245,213,5)" fg:x="235375" fg:w="753"/><text x="10.0426%" y="431.50"></text></g><g><title>__wake_up_common_lock (817 samples, 0.03%)</title><rect x="9.7907%" y="469" width="0.0340%" height="15" fill="rgb(230,144,27)" fg:x="235330" fg:w="817"/><text x="10.0407%" y="479.50"></text></g><g><title>btrfs_tree_read_lock_atomic (456 samples, 0.02%)</title><rect x="9.8352%" y="469" width="0.0190%" height="15" fill="rgb(220,86,6)" fg:x="236399" fg:w="456"/><text x="10.0852%" y="479.50"></text></g><g><title>queued_read_lock_slowpath (312 samples, 0.01%)</title><rect x="9.8412%" y="453" width="0.0130%" height="15" fill="rgb(240,20,13)" fg:x="236543" fg:w="312"/><text x="10.0912%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (926 samples, 0.04%)</title><rect x="9.8616%" y="469" width="0.0385%" height="15" fill="rgb(217,89,34)" fg:x="237033" fg:w="926"/><text x="10.1116%" y="479.50"></text></g><g><title>__radix_tree_lookup (459 samples, 0.02%)</title><rect x="9.9278%" y="437" width="0.0191%" height="15" fill="rgb(229,13,5)" fg:x="238624" fg:w="459"/><text x="10.1778%" y="447.50"></text></g><g><title>find_extent_buffer (889 samples, 0.04%)</title><rect x="9.9190%" y="453" width="0.0370%" height="15" fill="rgb(244,67,35)" fg:x="238414" fg:w="889"/><text x="10.1690%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (1,468 samples, 0.06%)</title><rect x="9.9001%" y="469" width="0.0611%" height="15" fill="rgb(221,40,2)" fg:x="237959" fg:w="1468"/><text x="10.1501%" y="479.50"></text></g><g><title>btrfs_search_slot (11,506 samples, 0.48%)</title><rect x="9.4884%" y="485" width="0.4787%" height="15" fill="rgb(237,157,21)" fg:x="228062" fg:w="11506"/><text x="9.7384%" y="495.50"></text></g><g><title>filldir64 (258 samples, 0.01%)</title><rect x="9.9712%" y="485" width="0.0107%" height="15" fill="rgb(222,94,11)" fg:x="239667" fg:w="258"/><text x="10.2212%" y="495.50"></text></g><g><title>btrfs_real_readdir (17,282 samples, 0.72%)</title><rect x="9.3271%" y="501" width="0.7190%" height="15" fill="rgb(249,113,6)" fg:x="224185" fg:w="17282"/><text x="9.5771%" y="511.50"></text></g><g><title>read_extent_buffer (1,136 samples, 0.05%)</title><rect x="9.9988%" y="485" width="0.0473%" height="15" fill="rgb(238,137,36)" fg:x="240331" fg:w="1136"/><text x="10.2488%" y="495.50"></text></g><g><title>security_file_permission (257 samples, 0.01%)</title><rect x="10.0520%" y="501" width="0.0107%" height="15" fill="rgb(210,102,26)" fg:x="241611" fg:w="257"/><text x="10.3020%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (552 samples, 0.02%)</title><rect x="10.1032%" y="437" width="0.0230%" height="15" fill="rgb(218,30,30)" fg:x="242841" fg:w="552"/><text x="10.3532%" y="447.50"></text></g><g><title>btrfs_reserve_metadata_bytes (476 samples, 0.02%)</title><rect x="10.1064%" y="421" width="0.0198%" height="15" fill="rgb(214,67,26)" fg:x="242917" fg:w="476"/><text x="10.3564%" y="431.50"></text></g><g><title>__reserve_bytes (426 samples, 0.02%)</title><rect x="10.1085%" y="405" width="0.0177%" height="15" fill="rgb(251,9,53)" fg:x="242967" fg:w="426"/><text x="10.3585%" y="415.50"></text></g><g><title>btrfs_delayed_update_inode (1,041 samples, 0.04%)</title><rect x="10.0897%" y="453" width="0.0433%" height="15" fill="rgb(228,204,25)" fg:x="242517" fg:w="1041"/><text x="10.3397%" y="463.50"></text></g><g><title>btrfs_update_inode (1,180 samples, 0.05%)</title><rect x="10.0889%" y="469" width="0.0491%" height="15" fill="rgb(207,153,8)" fg:x="242497" fg:w="1180"/><text x="10.3389%" y="479.50"></text></g><g><title>btrfs_dirty_inode (1,849 samples, 0.08%)</title><rect x="10.0782%" y="485" width="0.0769%" height="15" fill="rgb(242,9,16)" fg:x="242239" fg:w="1849"/><text x="10.3282%" y="495.50"></text></g><g><title>start_transaction (329 samples, 0.01%)</title><rect x="10.1414%" y="469" width="0.0137%" height="15" fill="rgb(217,211,10)" fg:x="243759" fg:w="329"/><text x="10.3914%" y="479.50"></text></g><g><title>touch_atime (2,282 samples, 0.09%)</title><rect x="10.0627%" y="501" width="0.0949%" height="15" fill="rgb(219,228,52)" fg:x="241868" fg:w="2282"/><text x="10.3127%" y="511.50"></text></g><g><title>iterate_dir (20,143 samples, 0.84%)</title><rect x="9.3224%" y="517" width="0.8380%" height="15" fill="rgb(231,92,29)" fg:x="224073" fg:w="20143"/><text x="9.5724%" y="527.50"></text></g><g><title>__x64_sys_getdents64 (20,474 samples, 0.85%)</title><rect x="9.3096%" y="533" width="0.8518%" height="15" fill="rgb(232,8,23)" fg:x="223765" fg:w="20474"/><text x="9.5596%" y="543.50"></text></g><g><title>do_syscall_64 (20,521 samples, 0.85%)</title><rect x="9.3081%" y="549" width="0.8538%" height="15" fill="rgb(216,211,34)" fg:x="223730" fg:w="20521"/><text x="9.5581%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20,683 samples, 0.86%)</title><rect x="9.3057%" y="565" width="0.8605%" height="15" fill="rgb(236,151,0)" fg:x="223673" fg:w="20683"/><text x="9.5557%" y="575.50"></text></g><g><title>__GI___getdents64 (20,889 samples, 0.87%)</title><rect x="9.2996%" y="581" width="0.8691%" height="15" fill="rgb(209,168,3)" fg:x="223524" fg:w="20889"/><text x="9.5496%" y="591.50"></text></g><g><title>__GI___readdir64 (21,438 samples, 0.89%)</title><rect x="9.2768%" y="597" width="0.8919%" height="15" fill="rgb(208,129,28)" fg:x="222977" fg:w="21438"/><text x="9.5268%" y="607.50"></text></g><g><title>__do_sys_newstat (254 samples, 0.01%)</title><rect x="10.1692%" y="549" width="0.0106%" height="15" fill="rgb(229,78,22)" fg:x="244426" fg:w="254"/><text x="10.4192%" y="559.50"></text></g><g><title>vfs_statx (242 samples, 0.01%)</title><rect x="10.1697%" y="533" width="0.0101%" height="15" fill="rgb(228,187,13)" fg:x="244438" fg:w="242"/><text x="10.4197%" y="543.50"></text></g><g><title>do_syscall_64 (260 samples, 0.01%)</title><rect x="10.1690%" y="565" width="0.0108%" height="15" fill="rgb(240,119,24)" fg:x="244422" fg:w="260"/><text x="10.4190%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (262 samples, 0.01%)</title><rect x="10.1690%" y="581" width="0.0109%" height="15" fill="rgb(209,194,42)" fg:x="244421" fg:w="262"/><text x="10.4190%" y="591.50"></text></g><g><title>__GI___xstat (270 samples, 0.01%)</title><rect x="10.1687%" y="597" width="0.0112%" height="15" fill="rgb(247,200,46)" fg:x="244415" fg:w="270"/><text x="10.4187%" y="607.50"></text></g><g><title>__switch_to_asm (272 samples, 0.01%)</title><rect x="10.2214%" y="581" width="0.0113%" height="15" fill="rgb(218,76,16)" fg:x="245681" fg:w="272"/><text x="10.4714%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (429 samples, 0.02%)</title><rect x="10.2381%" y="581" width="0.0178%" height="15" fill="rgb(225,21,48)" fg:x="246083" fg:w="429"/><text x="10.4881%" y="591.50"></text></g><g><title>crc32c_pcl_intel_update (495 samples, 0.02%)</title><rect x="10.2652%" y="581" width="0.0206%" height="15" fill="rgb(239,223,50)" fg:x="246735" fg:w="495"/><text x="10.5152%" y="591.50"></text></g><g><title>entry_SYSCALL_64 (484 samples, 0.02%)</title><rect x="10.2858%" y="581" width="0.0201%" height="15" fill="rgb(244,45,21)" fg:x="247230" fg:w="484"/><text x="10.5358%" y="591.50"></text></g><g><title>getname_flags (507 samples, 0.02%)</title><rect x="10.3587%" y="533" width="0.0211%" height="15" fill="rgb(232,33,43)" fg:x="248982" fg:w="507"/><text x="10.6087%" y="543.50"></text></g><g><title>memset_erms (1,986 samples, 0.08%)</title><rect x="10.4234%" y="501" width="0.0826%" height="15" fill="rgb(209,8,3)" fg:x="250536" fg:w="1986"/><text x="10.6734%" y="511.50"></text></g><g><title>kmem_cache_alloc (2,942 samples, 0.12%)</title><rect x="10.3902%" y="517" width="0.1224%" height="15" fill="rgb(214,25,53)" fg:x="249740" fg:w="2942"/><text x="10.6402%" y="527.50"></text></g><g><title>__check_heap_object (264 samples, 0.01%)</title><rect x="10.5829%" y="485" width="0.0110%" height="15" fill="rgb(254,186,54)" fg:x="254370" fg:w="264"/><text x="10.8329%" y="495.50"></text></g><g><title>__virt_addr_valid (1,027 samples, 0.04%)</title><rect x="10.5939%" y="485" width="0.0427%" height="15" fill="rgb(208,174,49)" fg:x="254634" fg:w="1027"/><text x="10.8439%" y="495.50"></text></g><g><title>__check_object_size (1,969 samples, 0.08%)</title><rect x="10.5646%" y="501" width="0.0819%" height="15" fill="rgb(233,191,51)" fg:x="253931" fg:w="1969"/><text x="10.8146%" y="511.50"></text></g><g><title>getname_flags.part.0 (6,423 samples, 0.27%)</title><rect x="10.3798%" y="533" width="0.2672%" height="15" fill="rgb(222,134,10)" fg:x="249489" fg:w="6423"/><text x="10.6298%" y="543.50"></text></g><g><title>strncpy_from_user (3,230 samples, 0.13%)</title><rect x="10.5126%" y="517" width="0.1344%" height="15" fill="rgb(230,226,20)" fg:x="252682" fg:w="3230"/><text x="10.7626%" y="527.50"></text></g><g><title>__x64_sys_unlinkat (6,991 samples, 0.29%)</title><rect x="10.3563%" y="549" width="0.2909%" height="15" fill="rgb(251,111,25)" fg:x="248924" fg:w="6991"/><text x="10.6063%" y="559.50"></text></g><g><title>d_lru_add (261 samples, 0.01%)</title><rect x="10.6667%" y="517" width="0.0109%" height="15" fill="rgb(224,40,46)" fg:x="256385" fg:w="261"/><text x="10.9167%" y="527.50"></text></g><g><title>list_lru_add (252 samples, 0.01%)</title><rect x="10.6671%" y="501" width="0.0105%" height="15" fill="rgb(236,108,47)" fg:x="256394" fg:w="252"/><text x="10.9171%" y="511.50"></text></g><g><title>dput (470 samples, 0.02%)</title><rect x="10.6603%" y="533" width="0.0196%" height="15" fill="rgb(234,93,0)" fg:x="256231" fg:w="470"/><text x="10.9103%" y="543.50"></text></g><g><title>path_init (250 samples, 0.01%)</title><rect x="10.6979%" y="501" width="0.0104%" height="15" fill="rgb(224,213,32)" fg:x="257135" fg:w="250"/><text x="10.9479%" y="511.50"></text></g><g><title>filename_parentat (778 samples, 0.03%)</title><rect x="10.6799%" y="533" width="0.0324%" height="15" fill="rgb(251,11,48)" fg:x="256701" fg:w="778"/><text x="10.9299%" y="543.50"></text></g><g><title>path_parentat (710 samples, 0.03%)</title><rect x="10.6827%" y="517" width="0.0295%" height="15" fill="rgb(236,173,5)" fg:x="256769" fg:w="710"/><text x="10.9327%" y="527.50"></text></g><g><title>security_path_rmdir (288 samples, 0.01%)</title><rect x="10.7274%" y="533" width="0.0120%" height="15" fill="rgb(230,95,12)" fg:x="257843" fg:w="288"/><text x="10.9774%" y="543.50"></text></g><g><title>__btrfs_end_transaction (413 samples, 0.02%)</title><rect x="10.7503%" y="501" width="0.0172%" height="15" fill="rgb(232,209,1)" fg:x="258395" fg:w="413"/><text x="11.0003%" y="511.50"></text></g><g><title>btrfs_free_path (348 samples, 0.01%)</title><rect x="10.7792%" y="469" width="0.0145%" height="15" fill="rgb(232,6,1)" fg:x="259088" fg:w="348"/><text x="11.0292%" y="479.50"></text></g><g><title>btrfs_release_path (342 samples, 0.01%)</title><rect x="10.7794%" y="453" width="0.0142%" height="15" fill="rgb(210,224,50)" fg:x="259094" fg:w="342"/><text x="11.0294%" y="463.50"></text></g><g><title>btrfs_lookup_dir_index_item (732 samples, 0.03%)</title><rect x="10.7936%" y="469" width="0.0305%" height="15" fill="rgb(228,127,35)" fg:x="259436" fg:w="732"/><text x="11.0436%" y="479.50"></text></g><g><title>btrfs_search_slot (721 samples, 0.03%)</title><rect x="10.7941%" y="453" width="0.0300%" height="15" fill="rgb(245,102,45)" fg:x="259447" fg:w="721"/><text x="11.0441%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (282 samples, 0.01%)</title><rect x="10.8288%" y="421" width="0.0117%" height="15" fill="rgb(214,1,49)" fg:x="260281" fg:w="282"/><text x="11.0788%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (301 samples, 0.01%)</title><rect x="10.8288%" y="437" width="0.0125%" height="15" fill="rgb(226,163,40)" fg:x="260280" fg:w="301"/><text x="11.0788%" y="447.50"></text></g><g><title>btrfs_search_slot (995 samples, 0.04%)</title><rect x="10.8251%" y="453" width="0.0414%" height="15" fill="rgb(239,212,28)" fg:x="260191" fg:w="995"/><text x="11.0751%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (1,046 samples, 0.04%)</title><rect x="10.8241%" y="469" width="0.0435%" height="15" fill="rgb(220,20,13)" fg:x="260168" fg:w="1046"/><text x="11.0741%" y="479.50"></text></g><g><title>btrfs_release_path (329 samples, 0.01%)</title><rect x="10.8676%" y="469" width="0.0137%" height="15" fill="rgb(210,164,35)" fg:x="261214" fg:w="329"/><text x="11.1176%" y="479.50"></text></g><g><title>btrfs_del_dir_entries_in_log (2,753 samples, 0.11%)</title><rect x="10.7736%" y="485" width="0.1145%" height="15" fill="rgb(248,109,41)" fg:x="258954" fg:w="2753"/><text x="11.0236%" y="495.50"></text></g><g><title>__wake_up_common (481 samples, 0.02%)</title><rect x="10.8940%" y="405" width="0.0200%" height="15" fill="rgb(238,23,50)" fg:x="261847" fg:w="481"/><text x="11.1440%" y="415.50"></text></g><g><title>autoremove_wake_function (472 samples, 0.02%)</title><rect x="10.8943%" y="389" width="0.0196%" height="15" fill="rgb(211,48,49)" fg:x="261856" fg:w="472"/><text x="11.1443%" y="399.50"></text></g><g><title>try_to_wake_up (463 samples, 0.02%)</title><rect x="10.8947%" y="373" width="0.0193%" height="15" fill="rgb(223,36,21)" fg:x="261865" fg:w="463"/><text x="11.1447%" y="383.50"></text></g><g><title>__wake_up_common_lock (608 samples, 0.03%)</title><rect x="10.8939%" y="421" width="0.0253%" height="15" fill="rgb(207,123,46)" fg:x="261846" fg:w="608"/><text x="11.1439%" y="431.50"></text></g><g><title>btrfs_free_path (819 samples, 0.03%)</title><rect x="10.8918%" y="453" width="0.0341%" height="15" fill="rgb(240,218,32)" fg:x="261796" fg:w="819"/><text x="11.1418%" y="463.50"></text></g><g><title>btrfs_release_path (808 samples, 0.03%)</title><rect x="10.8923%" y="437" width="0.0336%" height="15" fill="rgb(252,5,43)" fg:x="261807" fg:w="808"/><text x="11.1423%" y="447.50"></text></g><g><title>__btrfs_tree_read_lock (539 samples, 0.02%)</title><rect x="10.9357%" y="421" width="0.0224%" height="15" fill="rgb(252,84,19)" fg:x="262850" fg:w="539"/><text x="11.1857%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (676 samples, 0.03%)</title><rect x="10.9348%" y="437" width="0.0281%" height="15" fill="rgb(243,152,39)" fg:x="262830" fg:w="676"/><text x="11.1848%" y="447.50"></text></g><g><title>__btrfs_tree_lock (286 samples, 0.01%)</title><rect x="10.9684%" y="421" width="0.0119%" height="15" fill="rgb(234,160,15)" fg:x="263636" fg:w="286"/><text x="11.2184%" y="431.50"></text></g><g><title>btrfs_lock_root_node (319 samples, 0.01%)</title><rect x="10.9683%" y="437" width="0.0133%" height="15" fill="rgb(237,34,20)" fg:x="263633" fg:w="319"/><text x="11.2183%" y="447.50"></text></g><g><title>find_extent_buffer (306 samples, 0.01%)</title><rect x="11.0017%" y="421" width="0.0127%" height="15" fill="rgb(229,97,13)" fg:x="264437" fg:w="306"/><text x="11.2517%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (514 samples, 0.02%)</title><rect x="10.9951%" y="437" width="0.0214%" height="15" fill="rgb(234,71,50)" fg:x="264278" fg:w="514"/><text x="11.2451%" y="447.50"></text></g><g><title>btrfs_search_slot (2,272 samples, 0.09%)</title><rect x="10.9259%" y="453" width="0.0945%" height="15" fill="rgb(253,155,4)" fg:x="262615" fg:w="2272"/><text x="11.1759%" y="463.50"></text></g><g><title>btrfs_del_inode_ref (3,447 samples, 0.14%)</title><rect x="10.8902%" y="469" width="0.1434%" height="15" fill="rgb(222,185,37)" fg:x="261758" fg:w="3447"/><text x="11.1402%" y="479.50"></text></g><g><title>btrfs_del_inode_ref_in_log (3,636 samples, 0.15%)</title><rect x="10.8881%" y="485" width="0.1513%" height="15" fill="rgb(251,177,13)" fg:x="261707" fg:w="3636"/><text x="11.1381%" y="495.50"></text></g><g><title>btrfs_get_token_32 (842 samples, 0.04%)</title><rect x="11.0573%" y="469" width="0.0350%" height="15" fill="rgb(250,179,40)" fg:x="265773" fg:w="842"/><text x="11.3073%" y="479.50"></text></g><g><title>btrfs_set_token_32 (572 samples, 0.02%)</title><rect x="11.0944%" y="469" width="0.0238%" height="15" fill="rgb(242,44,2)" fg:x="266666" fg:w="572"/><text x="11.3444%" y="479.50"></text></g><g><title>memmove_extent_buffer (541 samples, 0.02%)</title><rect x="11.1248%" y="469" width="0.0225%" height="15" fill="rgb(216,177,13)" fg:x="267395" fg:w="541"/><text x="11.3748%" y="479.50"></text></g><g><title>memmove (439 samples, 0.02%)</title><rect x="11.1290%" y="453" width="0.0183%" height="15" fill="rgb(216,106,43)" fg:x="267497" fg:w="439"/><text x="11.3790%" y="463.50"></text></g><g><title>btrfs_del_items (2,818 samples, 0.12%)</title><rect x="11.0394%" y="485" width="0.1172%" height="15" fill="rgb(216,183,2)" fg:x="265343" fg:w="2818"/><text x="11.2894%" y="495.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (542 samples, 0.02%)</title><rect x="11.1566%" y="485" width="0.0225%" height="15" fill="rgb(249,75,3)" fg:x="268161" fg:w="542"/><text x="11.4066%" y="495.50"></text></g><g><title>btrfs_delete_delayed_dir_index (729 samples, 0.03%)</title><rect x="11.1792%" y="485" width="0.0303%" height="15" fill="rgb(219,67,39)" fg:x="268703" fg:w="729"/><text x="11.4292%" y="495.50"></text></g><g><title>btrfs_match_dir_item_name (270 samples, 0.01%)</title><rect x="11.2158%" y="469" width="0.0112%" height="15" fill="rgb(253,228,2)" fg:x="269584" fg:w="270"/><text x="11.4658%" y="479.50"></text></g><g><title>finish_wait (269 samples, 0.01%)</title><rect x="11.2419%" y="421" width="0.0112%" height="15" fill="rgb(235,138,27)" fg:x="270211" fg:w="269"/><text x="11.4919%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (261 samples, 0.01%)</title><rect x="11.2423%" y="405" width="0.0109%" height="15" fill="rgb(236,97,51)" fg:x="270219" fg:w="261"/><text x="11.4923%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (244 samples, 0.01%)</title><rect x="11.2430%" y="389" width="0.0102%" height="15" fill="rgb(240,80,30)" fg:x="270236" fg:w="244"/><text x="11.4930%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (590 samples, 0.02%)</title><rect x="11.2559%" y="405" width="0.0245%" height="15" fill="rgb(230,178,19)" fg:x="270548" fg:w="590"/><text x="11.5059%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (562 samples, 0.02%)</title><rect x="11.2571%" y="389" width="0.0234%" height="15" fill="rgb(210,190,27)" fg:x="270576" fg:w="562"/><text x="11.5071%" y="399.50"></text></g><g><title>prepare_to_wait_event (671 samples, 0.03%)</title><rect x="11.2531%" y="421" width="0.0279%" height="15" fill="rgb(222,107,31)" fg:x="270480" fg:w="671"/><text x="11.5031%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (915 samples, 0.04%)</title><rect x="11.2810%" y="421" width="0.0381%" height="15" fill="rgb(216,127,34)" fg:x="271151" fg:w="915"/><text x="11.5310%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (665 samples, 0.03%)</title><rect x="11.2914%" y="405" width="0.0277%" height="15" fill="rgb(234,116,52)" fg:x="271401" fg:w="665"/><text x="11.5414%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (2,606 samples, 0.11%)</title><rect x="11.2359%" y="437" width="0.1084%" height="15" fill="rgb(222,124,15)" fg:x="270066" fg:w="2606"/><text x="11.4859%" y="447.50"></text></g><g><title>schedule (606 samples, 0.03%)</title><rect x="11.3191%" y="421" width="0.0252%" height="15" fill="rgb(231,179,28)" fg:x="272066" fg:w="606"/><text x="11.5691%" y="431.50"></text></g><g><title>__schedule (596 samples, 0.02%)</title><rect x="11.3195%" y="405" width="0.0248%" height="15" fill="rgb(226,93,45)" fg:x="272076" fg:w="596"/><text x="11.5695%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (2,693 samples, 0.11%)</title><rect x="11.2353%" y="453" width="0.1120%" height="15" fill="rgb(215,8,51)" fg:x="270051" fg:w="2693"/><text x="11.4853%" y="463.50"></text></g><g><title>__btrfs_tree_lock (280 samples, 0.01%)</title><rect x="11.3473%" y="453" width="0.0116%" height="15" fill="rgb(223,106,5)" fg:x="272744" fg:w="280"/><text x="11.5973%" y="463.50"></text></g><g><title>schedule (244 samples, 0.01%)</title><rect x="11.3488%" y="437" width="0.0102%" height="15" fill="rgb(250,191,5)" fg:x="272780" fg:w="244"/><text x="11.5988%" y="447.50"></text></g><g><title>__schedule (241 samples, 0.01%)</title><rect x="11.3489%" y="421" width="0.0100%" height="15" fill="rgb(242,132,44)" fg:x="272783" fg:w="241"/><text x="11.5989%" y="431.50"></text></g><g><title>finish_wait (443 samples, 0.02%)</title><rect x="11.3696%" y="421" width="0.0184%" height="15" fill="rgb(251,152,29)" fg:x="273280" fg:w="443"/><text x="11.6196%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (418 samples, 0.02%)</title><rect x="11.3707%" y="405" width="0.0174%" height="15" fill="rgb(218,179,5)" fg:x="273305" fg:w="418"/><text x="11.6207%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (385 samples, 0.02%)</title><rect x="11.3720%" y="389" width="0.0160%" height="15" fill="rgb(227,67,19)" fg:x="273338" fg:w="385"/><text x="11.6220%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,318 samples, 0.05%)</title><rect x="11.3947%" y="405" width="0.0548%" height="15" fill="rgb(233,119,31)" fg:x="273882" fg:w="1318"/><text x="11.6447%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,233 samples, 0.05%)</title><rect x="11.3982%" y="389" width="0.0513%" height="15" fill="rgb(241,120,22)" fg:x="273967" fg:w="1233"/><text x="11.6482%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,503 samples, 0.06%)</title><rect x="11.3883%" y="421" width="0.0625%" height="15" fill="rgb(224,102,30)" fg:x="273729" fg:w="1503"/><text x="11.6383%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,709 samples, 0.07%)</title><rect x="11.4508%" y="421" width="0.0711%" height="15" fill="rgb(210,164,37)" fg:x="275232" fg:w="1709"/><text x="11.7008%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (833 samples, 0.03%)</title><rect x="11.4873%" y="405" width="0.0347%" height="15" fill="rgb(226,191,16)" fg:x="276108" fg:w="833"/><text x="11.7373%" y="415.50"></text></g><g><title>dequeue_entity (303 samples, 0.01%)</title><rect x="11.5303%" y="373" width="0.0126%" height="15" fill="rgb(214,40,45)" fg:x="277143" fg:w="303"/><text x="11.7803%" y="383.50"></text></g><g><title>dequeue_task_fair (360 samples, 0.01%)</title><rect x="11.5287%" y="389" width="0.0150%" height="15" fill="rgb(244,29,26)" fg:x="277105" fg:w="360"/><text x="11.7787%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (464 samples, 0.02%)</title><rect x="11.5468%" y="373" width="0.0193%" height="15" fill="rgb(216,16,5)" fg:x="277540" fg:w="464"/><text x="11.7968%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (439 samples, 0.02%)</title><rect x="11.5479%" y="357" width="0.0183%" height="15" fill="rgb(249,76,35)" fg:x="277565" fg:w="439"/><text x="11.7979%" y="367.50"></text></g><g><title>native_write_msr (433 samples, 0.02%)</title><rect x="11.5481%" y="341" width="0.0180%" height="15" fill="rgb(207,11,44)" fg:x="277571" fg:w="433"/><text x="11.7981%" y="351.50"></text></g><g><title>finish_task_switch (563 samples, 0.02%)</title><rect x="11.5437%" y="389" width="0.0234%" height="15" fill="rgb(228,190,49)" fg:x="277465" fg:w="563"/><text x="11.7937%" y="399.50"></text></g><g><title>psi_task_change (255 samples, 0.01%)</title><rect x="11.5727%" y="389" width="0.0106%" height="15" fill="rgb(214,173,12)" fg:x="278161" fg:w="255"/><text x="11.8227%" y="399.50"></text></g><g><title>__btrfs_tree_lock (5,414 samples, 0.23%)</title><rect x="11.3610%" y="437" width="0.2252%" height="15" fill="rgb(218,26,35)" fg:x="273073" fg:w="5414"/><text x="11.6110%" y="447.50"></text></g><g><title>schedule (1,546 samples, 0.06%)</title><rect x="11.5219%" y="421" width="0.0643%" height="15" fill="rgb(220,200,19)" fg:x="276941" fg:w="1546"/><text x="11.7719%" y="431.50"></text></g><g><title>__schedule (1,521 samples, 0.06%)</title><rect x="11.5230%" y="405" width="0.0633%" height="15" fill="rgb(239,95,49)" fg:x="276966" fg:w="1521"/><text x="11.7730%" y="415.50"></text></g><g><title>btrfs_lock_root_node (5,458 samples, 0.23%)</title><rect x="11.3608%" y="453" width="0.2271%" height="15" fill="rgb(235,85,53)" fg:x="273068" fg:w="5458"/><text x="11.6108%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (264 samples, 0.01%)</title><rect x="11.5914%" y="453" width="0.0110%" height="15" fill="rgb(233,133,31)" fg:x="278610" fg:w="264"/><text x="11.8414%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (487 samples, 0.02%)</title><rect x="11.6047%" y="453" width="0.0203%" height="15" fill="rgb(218,25,20)" fg:x="278931" fg:w="487"/><text x="11.8547%" y="463.50"></text></g><g><title>__radix_tree_lookup (253 samples, 0.01%)</title><rect x="11.6393%" y="421" width="0.0105%" height="15" fill="rgb(252,210,38)" fg:x="279762" fg:w="253"/><text x="11.8893%" y="431.50"></text></g><g><title>find_extent_buffer (509 samples, 0.02%)</title><rect x="11.6343%" y="437" width="0.0212%" height="15" fill="rgb(242,134,21)" fg:x="279642" fg:w="509"/><text x="11.8843%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (789 samples, 0.03%)</title><rect x="11.6250%" y="453" width="0.0328%" height="15" fill="rgb(213,28,48)" fg:x="279418" fg:w="789"/><text x="11.8750%" y="463.50"></text></g><g><title>reada_for_balance (311 samples, 0.01%)</title><rect x="11.6578%" y="453" width="0.0129%" height="15" fill="rgb(250,196,2)" fg:x="280207" fg:w="311"/><text x="11.9078%" y="463.50"></text></g><g><title>select_task_rq_fair (281 samples, 0.01%)</title><rect x="11.7089%" y="373" width="0.0117%" height="15" fill="rgb(227,5,17)" fg:x="281436" fg:w="281"/><text x="11.9589%" y="383.50"></text></g><g><title>enqueue_entity (254 samples, 0.01%)</title><rect x="11.7249%" y="341" width="0.0106%" height="15" fill="rgb(221,226,24)" fg:x="281819" fg:w="254"/><text x="11.9749%" y="351.50"></text></g><g><title>enqueue_task_fair (325 samples, 0.01%)</title><rect x="11.7227%" y="357" width="0.0135%" height="15" fill="rgb(211,5,48)" fg:x="281766" fg:w="325"/><text x="11.9727%" y="367.50"></text></g><g><title>ttwu_do_activate (686 samples, 0.03%)</title><rect x="11.7218%" y="373" width="0.0285%" height="15" fill="rgb(219,150,6)" fg:x="281745" fg:w="686"/><text x="11.9718%" y="383.50"></text></g><g><title>psi_task_change (339 samples, 0.01%)</title><rect x="11.7362%" y="357" width="0.0141%" height="15" fill="rgb(251,46,16)" fg:x="282092" fg:w="339"/><text x="11.9862%" y="367.50"></text></g><g><title>psi_group_change (308 samples, 0.01%)</title><rect x="11.7375%" y="341" width="0.0128%" height="15" fill="rgb(220,204,40)" fg:x="282123" fg:w="308"/><text x="11.9875%" y="351.50"></text></g><g><title>__wake_up_common (2,003 samples, 0.08%)</title><rect x="11.6744%" y="421" width="0.0833%" height="15" fill="rgb(211,85,2)" fg:x="280607" fg:w="2003"/><text x="11.9244%" y="431.50"></text></g><g><title>autoremove_wake_function (1,948 samples, 0.08%)</title><rect x="11.6767%" y="405" width="0.0810%" height="15" fill="rgb(229,17,7)" fg:x="280662" fg:w="1948"/><text x="11.9267%" y="415.50"></text></g><g><title>try_to_wake_up (1,908 samples, 0.08%)</title><rect x="11.6784%" y="389" width="0.0794%" height="15" fill="rgb(239,72,28)" fg:x="280702" fg:w="1908"/><text x="11.9284%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (323 samples, 0.01%)</title><rect x="11.7578%" y="421" width="0.0134%" height="15" fill="rgb(230,47,54)" fg:x="282610" fg:w="323"/><text x="12.0078%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (299 samples, 0.01%)</title><rect x="11.7588%" y="405" width="0.0124%" height="15" fill="rgb(214,50,8)" fg:x="282634" fg:w="299"/><text x="12.0088%" y="415.50"></text></g><g><title>__wake_up_common_lock (2,353 samples, 0.10%)</title><rect x="11.6742%" y="437" width="0.0979%" height="15" fill="rgb(216,198,43)" fg:x="280602" fg:w="2353"/><text x="11.9242%" y="447.50"></text></g><g><title>btrfs_search_slot (13,148 samples, 0.55%)</title><rect x="11.2271%" y="469" width="0.5470%" height="15" fill="rgb(234,20,35)" fg:x="269854" fg:w="13148"/><text x="11.4771%" y="479.50"></text></g><g><title>unlock_up (2,476 samples, 0.10%)</title><rect x="11.6711%" y="453" width="0.1030%" height="15" fill="rgb(254,45,19)" fg:x="280526" fg:w="2476"/><text x="11.9211%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (13,602 samples, 0.57%)</title><rect x="11.2135%" y="485" width="0.5659%" height="15" fill="rgb(219,14,44)" fg:x="269527" fg:w="13602"/><text x="11.4635%" y="495.50"></text></g><g><title>__wake_up_common (433 samples, 0.02%)</title><rect x="11.7803%" y="453" width="0.0180%" height="15" fill="rgb(217,220,26)" fg:x="283152" fg:w="433"/><text x="12.0303%" y="463.50"></text></g><g><title>autoremove_wake_function (422 samples, 0.02%)</title><rect x="11.7808%" y="437" width="0.0176%" height="15" fill="rgb(213,158,28)" fg:x="283163" fg:w="422"/><text x="12.0308%" y="447.50"></text></g><g><title>try_to_wake_up (412 samples, 0.02%)</title><rect x="11.7812%" y="421" width="0.0171%" height="15" fill="rgb(252,51,52)" fg:x="283173" fg:w="412"/><text x="12.0312%" y="431.50"></text></g><g><title>__wake_up_common_lock (453 samples, 0.02%)</title><rect x="11.7803%" y="469" width="0.0188%" height="15" fill="rgb(246,89,16)" fg:x="283151" fg:w="453"/><text x="12.0303%" y="479.50"></text></g><g><title>btrfs_release_path (632 samples, 0.03%)</title><rect x="11.7794%" y="485" width="0.0263%" height="15" fill="rgb(216,158,49)" fg:x="283129" fg:w="632"/><text x="12.0294%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (448 samples, 0.02%)</title><rect x="11.8078%" y="469" width="0.0186%" height="15" fill="rgb(236,107,19)" fg:x="283812" fg:w="448"/><text x="12.0578%" y="479.50"></text></g><g><title>btrfs_update_inode (597 samples, 0.02%)</title><rect x="11.8057%" y="485" width="0.0248%" height="15" fill="rgb(228,185,30)" fg:x="283761" fg:w="597"/><text x="12.0557%" y="495.50"></text></g><g><title>__btrfs_unlink_inode (25,703 samples, 1.07%)</title><rect x="10.7675%" y="501" width="1.0694%" height="15" fill="rgb(246,134,8)" fg:x="258808" fg:w="25703"/><text x="11.0175%" y="511.50"></text></g><g><title>__wake_up_common (328 samples, 0.01%)</title><rect x="11.8538%" y="421" width="0.0136%" height="15" fill="rgb(214,143,50)" fg:x="284919" fg:w="328"/><text x="12.1038%" y="431.50"></text></g><g><title>autoremove_wake_function (324 samples, 0.01%)</title><rect x="11.8540%" y="405" width="0.0135%" height="15" fill="rgb(228,75,8)" fg:x="284923" fg:w="324"/><text x="12.1040%" y="415.50"></text></g><g><title>try_to_wake_up (323 samples, 0.01%)</title><rect x="11.8541%" y="389" width="0.0134%" height="15" fill="rgb(207,175,4)" fg:x="284924" fg:w="323"/><text x="12.1041%" y="399.50"></text></g><g><title>__wake_up_common_lock (346 samples, 0.01%)</title><rect x="11.8536%" y="437" width="0.0144%" height="15" fill="rgb(205,108,24)" fg:x="284913" fg:w="346"/><text x="12.1036%" y="447.50"></text></g><g><title>btrfs_free_path (633 samples, 0.03%)</title><rect x="11.8518%" y="469" width="0.0263%" height="15" fill="rgb(244,120,49)" fg:x="284870" fg:w="633"/><text x="12.1018%" y="479.50"></text></g><g><title>btrfs_release_path (609 samples, 0.03%)</title><rect x="11.8528%" y="453" width="0.0253%" height="15" fill="rgb(223,47,38)" fg:x="284894" fg:w="609"/><text x="12.1028%" y="463.50"></text></g><g><title>finish_wait (344 samples, 0.01%)</title><rect x="11.8947%" y="405" width="0.0143%" height="15" fill="rgb(229,179,11)" fg:x="285900" fg:w="344"/><text x="12.1447%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (329 samples, 0.01%)</title><rect x="11.8953%" y="389" width="0.0137%" height="15" fill="rgb(231,122,1)" fg:x="285915" fg:w="329"/><text x="12.1453%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (312 samples, 0.01%)</title><rect x="11.8960%" y="373" width="0.0130%" height="15" fill="rgb(245,119,9)" fg:x="285932" fg:w="312"/><text x="12.1460%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (868 samples, 0.04%)</title><rect x="11.9124%" y="389" width="0.0361%" height="15" fill="rgb(241,163,25)" fg:x="286327" fg:w="868"/><text x="12.1624%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (824 samples, 0.03%)</title><rect x="11.9143%" y="373" width="0.0343%" height="15" fill="rgb(217,214,3)" fg:x="286371" fg:w="824"/><text x="12.1643%" y="383.50"></text></g><g><title>prepare_to_wait_event (969 samples, 0.04%)</title><rect x="11.9090%" y="405" width="0.0403%" height="15" fill="rgb(240,86,28)" fg:x="286244" fg:w="969"/><text x="12.1590%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (876 samples, 0.04%)</title><rect x="11.9493%" y="405" width="0.0364%" height="15" fill="rgb(215,47,9)" fg:x="287213" fg:w="876"/><text x="12.1993%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (634 samples, 0.03%)</title><rect x="11.9594%" y="389" width="0.0264%" height="15" fill="rgb(252,25,45)" fg:x="287455" fg:w="634"/><text x="12.2094%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (294 samples, 0.01%)</title><rect x="11.9989%" y="357" width="0.0122%" height="15" fill="rgb(251,164,9)" fg:x="288406" fg:w="294"/><text x="12.2489%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (288 samples, 0.01%)</title><rect x="11.9992%" y="341" width="0.0120%" height="15" fill="rgb(233,194,0)" fg:x="288412" fg:w="288"/><text x="12.2492%" y="351.50"></text></g><g><title>native_write_msr (284 samples, 0.01%)</title><rect x="11.9993%" y="325" width="0.0118%" height="15" fill="rgb(249,111,24)" fg:x="288416" fg:w="284"/><text x="12.2493%" y="335.50"></text></g><g><title>finish_task_switch (357 samples, 0.01%)</title><rect x="11.9971%" y="373" width="0.0149%" height="15" fill="rgb(250,223,3)" fg:x="288363" fg:w="357"/><text x="12.2471%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (3,203 samples, 0.13%)</title><rect x="11.8892%" y="421" width="0.1333%" height="15" fill="rgb(236,178,37)" fg:x="285770" fg:w="3203"/><text x="12.1392%" y="431.50"></text></g><g><title>schedule (884 samples, 0.04%)</title><rect x="11.9857%" y="405" width="0.0368%" height="15" fill="rgb(241,158,50)" fg:x="288089" fg:w="884"/><text x="12.2357%" y="415.50"></text></g><g><title>__schedule (870 samples, 0.04%)</title><rect x="11.9863%" y="389" width="0.0362%" height="15" fill="rgb(213,121,41)" fg:x="288103" fg:w="870"/><text x="12.2363%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (3,318 samples, 0.14%)</title><rect x="11.8888%" y="437" width="0.1380%" height="15" fill="rgb(240,92,3)" fg:x="285759" fg:w="3318"/><text x="12.1388%" y="447.50"></text></g><g><title>finish_task_switch (264 samples, 0.01%)</title><rect x="12.0466%" y="389" width="0.0110%" height="15" fill="rgb(205,123,3)" fg:x="289553" fg:w="264"/><text x="12.2966%" y="399.50"></text></g><g><title>__btrfs_tree_lock (906 samples, 0.04%)</title><rect x="12.0268%" y="437" width="0.0377%" height="15" fill="rgb(205,97,47)" fg:x="289077" fg:w="906"/><text x="12.2768%" y="447.50"></text></g><g><title>schedule (633 samples, 0.03%)</title><rect x="12.0382%" y="421" width="0.0263%" height="15" fill="rgb(247,152,14)" fg:x="289350" fg:w="633"/><text x="12.2882%" y="431.50"></text></g><g><title>__schedule (631 samples, 0.03%)</title><rect x="12.0383%" y="405" width="0.0263%" height="15" fill="rgb(248,195,53)" fg:x="289352" fg:w="631"/><text x="12.2883%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (771 samples, 0.03%)</title><rect x="12.0733%" y="437" width="0.0321%" height="15" fill="rgb(226,201,16)" fg:x="290193" fg:w="771"/><text x="12.3233%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (705 samples, 0.03%)</title><rect x="12.0760%" y="421" width="0.0293%" height="15" fill="rgb(205,98,0)" fg:x="290259" fg:w="705"/><text x="12.3260%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (320 samples, 0.01%)</title><rect x="12.1053%" y="437" width="0.0133%" height="15" fill="rgb(214,191,48)" fg:x="290964" fg:w="320"/><text x="12.3553%" y="447.50"></text></g><g><title>find_extent_buffer (491 samples, 0.02%)</title><rect x="12.1289%" y="421" width="0.0204%" height="15" fill="rgb(237,112,39)" fg:x="291530" fg:w="491"/><text x="12.3789%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (797 samples, 0.03%)</title><rect x="12.1187%" y="437" width="0.0332%" height="15" fill="rgb(247,203,27)" fg:x="291284" fg:w="797"/><text x="12.3687%" y="447.50"></text></g><g><title>ttwu_do_activate (359 samples, 0.01%)</title><rect x="12.1731%" y="357" width="0.0149%" height="15" fill="rgb(235,124,28)" fg:x="292592" fg:w="359"/><text x="12.4231%" y="367.50"></text></g><g><title>__wake_up_common (821 samples, 0.03%)</title><rect x="12.1575%" y="405" width="0.0342%" height="15" fill="rgb(208,207,46)" fg:x="292217" fg:w="821"/><text x="12.4075%" y="415.50"></text></g><g><title>autoremove_wake_function (802 samples, 0.03%)</title><rect x="12.1583%" y="389" width="0.0334%" height="15" fill="rgb(234,176,4)" fg:x="292236" fg:w="802"/><text x="12.4083%" y="399.50"></text></g><g><title>try_to_wake_up (778 samples, 0.03%)</title><rect x="12.1593%" y="373" width="0.0324%" height="15" fill="rgb(230,133,28)" fg:x="292260" fg:w="778"/><text x="12.4093%" y="383.50"></text></g><g><title>__wake_up_common_lock (840 samples, 0.03%)</title><rect x="12.1573%" y="421" width="0.0349%" height="15" fill="rgb(211,137,40)" fg:x="292213" fg:w="840"/><text x="12.4073%" y="431.50"></text></g><g><title>btrfs_search_slot (7,628 samples, 0.32%)</title><rect x="11.8796%" y="453" width="0.3174%" height="15" fill="rgb(254,35,13)" fg:x="285538" fg:w="7628"/><text x="12.1296%" y="463.50"></text></g><g><title>unlock_up (1,048 samples, 0.04%)</title><rect x="12.1534%" y="437" width="0.0436%" height="15" fill="rgb(225,49,51)" fg:x="292118" fg:w="1048"/><text x="12.4034%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (8,262 samples, 0.34%)</title><rect x="11.8781%" y="469" width="0.3437%" height="15" fill="rgb(251,10,15)" fg:x="285503" fg:w="8262"/><text x="12.1281%" y="479.50"></text></g><g><title>setup_items_for_insert (599 samples, 0.02%)</title><rect x="12.1970%" y="453" width="0.0249%" height="15" fill="rgb(228,207,15)" fg:x="293166" fg:w="599"/><text x="12.4470%" y="463.50"></text></g><g><title>btrfs_orphan_add (9,069 samples, 0.38%)</title><rect x="11.8499%" y="501" width="0.3773%" height="15" fill="rgb(241,99,19)" fg:x="284823" fg:w="9069"/><text x="12.0999%" y="511.50"></text></g><g><title>btrfs_insert_orphan_item (9,046 samples, 0.38%)</title><rect x="11.8508%" y="485" width="0.3764%" height="15" fill="rgb(207,104,49)" fg:x="284846" fg:w="9046"/><text x="12.1008%" y="495.50"></text></g><g><title>btrfs_update_inode (292 samples, 0.01%)</title><rect x="12.2278%" y="501" width="0.0121%" height="15" fill="rgb(234,99,18)" fg:x="293908" fg:w="292"/><text x="12.4778%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (508 samples, 0.02%)</title><rect x="12.2494%" y="485" width="0.0211%" height="15" fill="rgb(213,191,49)" fg:x="294427" fg:w="508"/><text x="12.4994%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (443 samples, 0.02%)</title><rect x="12.2521%" y="469" width="0.0184%" height="15" fill="rgb(210,226,19)" fg:x="294492" fg:w="443"/><text x="12.5021%" y="479.50"></text></g><g><title>__reserve_bytes (396 samples, 0.02%)</title><rect x="12.2541%" y="453" width="0.0165%" height="15" fill="rgb(229,97,18)" fg:x="294539" fg:w="396"/><text x="12.5041%" y="463.50"></text></g><g><title>btrfs_rmdir (36,890 samples, 1.53%)</title><rect x="10.7447%" y="517" width="1.5348%" height="15" fill="rgb(211,167,15)" fg:x="258259" fg:w="36890"/><text x="10.9947%" y="527.50"></text></g><g><title>start_transaction (877 samples, 0.04%)</title><rect x="12.2430%" y="501" width="0.0365%" height="15" fill="rgb(210,169,34)" fg:x="294272" fg:w="877"/><text x="12.4930%" y="511.50"></text></g><g><title>dentry_unlink_inode (243 samples, 0.01%)</title><rect x="12.2854%" y="517" width="0.0101%" height="15" fill="rgb(241,121,31)" fg:x="295293" fg:w="243"/><text x="12.5354%" y="527.50"></text></g><g><title>__destroy_inode (271 samples, 0.01%)</title><rect x="12.2960%" y="501" width="0.0113%" height="15" fill="rgb(232,40,11)" fg:x="295546" fg:w="271"/><text x="12.5460%" y="511.50"></text></g><g><title>btrfs_drop_extent_cache (394 samples, 0.02%)</title><rect x="12.3101%" y="485" width="0.0164%" height="15" fill="rgb(205,86,26)" fg:x="295886" fg:w="394"/><text x="12.5601%" y="495.50"></text></g><g><title>clear_record_extent_bits (256 samples, 0.01%)</title><rect x="12.3386%" y="469" width="0.0107%" height="15" fill="rgb(231,126,28)" fg:x="296570" fg:w="256"/><text x="12.5886%" y="479.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (340 samples, 0.01%)</title><rect x="12.3372%" y="485" width="0.0141%" height="15" fill="rgb(219,221,18)" fg:x="296536" fg:w="340"/><text x="12.5872%" y="495.50"></text></g><g><title>btrfs_destroy_inode (1,367 samples, 0.06%)</title><rect x="12.3072%" y="501" width="0.0569%" height="15" fill="rgb(211,40,0)" fg:x="295817" fg:w="1367"/><text x="12.5572%" y="511.50"></text></g><g><title>rb_erase (308 samples, 0.01%)</title><rect x="12.3513%" y="485" width="0.0128%" height="15" fill="rgb(239,85,43)" fg:x="296876" fg:w="308"/><text x="12.6013%" y="495.50"></text></g><g><title>destroy_inode (1,686 samples, 0.07%)</title><rect x="12.2956%" y="517" width="0.0701%" height="15" fill="rgb(231,55,21)" fg:x="295536" fg:w="1686"/><text x="12.5456%" y="527.50"></text></g><g><title>_raw_spin_lock (258 samples, 0.01%)</title><rect x="12.4010%" y="437" width="0.0107%" height="15" fill="rgb(225,184,43)" fg:x="298070" fg:w="258"/><text x="12.6510%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (416 samples, 0.02%)</title><rect x="12.3952%" y="469" width="0.0173%" height="15" fill="rgb(251,158,41)" fg:x="297932" fg:w="416"/><text x="12.6452%" y="479.50"></text></g><g><title>btrfs_block_rsv_release (387 samples, 0.02%)</title><rect x="12.3964%" y="453" width="0.0161%" height="15" fill="rgb(234,159,37)" fg:x="297961" fg:w="387"/><text x="12.6464%" y="463.50"></text></g><g><title>__btrfs_end_transaction (806 samples, 0.03%)</title><rect x="12.3833%" y="485" width="0.0335%" height="15" fill="rgb(216,204,22)" fg:x="297644" fg:w="806"/><text x="12.6333%" y="495.50"></text></g><g><title>__radix_tree_lookup (273 samples, 0.01%)</title><rect x="12.4289%" y="453" width="0.0114%" height="15" fill="rgb(214,17,3)" fg:x="298742" fg:w="273"/><text x="12.6789%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (570 samples, 0.02%)</title><rect x="12.4168%" y="485" width="0.0237%" height="15" fill="rgb(212,111,17)" fg:x="298450" fg:w="570"/><text x="12.6668%" y="495.50"></text></g><g><title>radix_tree_delete_item (319 samples, 0.01%)</title><rect x="12.4272%" y="469" width="0.0133%" height="15" fill="rgb(221,157,24)" fg:x="298701" fg:w="319"/><text x="12.6772%" y="479.50"></text></g><g><title>__btrfs_end_transaction (273 samples, 0.01%)</title><rect x="12.4574%" y="469" width="0.0114%" height="15" fill="rgb(252,16,13)" fg:x="299426" fg:w="273"/><text x="12.7074%" y="479.50"></text></g><g><title>btrfs_get_token_32 (1,060 samples, 0.04%)</title><rect x="12.4974%" y="437" width="0.0441%" height="15" fill="rgb(221,62,2)" fg:x="300388" fg:w="1060"/><text x="12.7474%" y="447.50"></text></g><g><title>btrfs_set_token_32 (718 samples, 0.03%)</title><rect x="12.5435%" y="437" width="0.0299%" height="15" fill="rgb(247,87,22)" fg:x="301496" fg:w="718"/><text x="12.7935%" y="447.50"></text></g><g><title>memmove_extent_buffer (556 samples, 0.02%)</title><rect x="12.5813%" y="437" width="0.0231%" height="15" fill="rgb(215,73,9)" fg:x="302403" fg:w="556"/><text x="12.8313%" y="447.50"></text></g><g><title>memmove (452 samples, 0.02%)</title><rect x="12.5856%" y="421" width="0.0188%" height="15" fill="rgb(207,175,33)" fg:x="302507" fg:w="452"/><text x="12.8356%" y="431.50"></text></g><g><title>btrfs_del_items (3,005 samples, 0.13%)</title><rect x="12.4828%" y="453" width="0.1250%" height="15" fill="rgb(243,129,54)" fg:x="300037" fg:w="3005"/><text x="12.7328%" y="463.50"></text></g><g><title>finish_wait (359 samples, 0.01%)</title><rect x="12.6336%" y="389" width="0.0149%" height="15" fill="rgb(227,119,45)" fg:x="303661" fg:w="359"/><text x="12.8836%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (340 samples, 0.01%)</title><rect x="12.6344%" y="373" width="0.0141%" height="15" fill="rgb(205,109,36)" fg:x="303680" fg:w="340"/><text x="12.8844%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (325 samples, 0.01%)</title><rect x="12.6350%" y="357" width="0.0135%" height="15" fill="rgb(205,6,39)" fg:x="303695" fg:w="325"/><text x="12.8850%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (803 samples, 0.03%)</title><rect x="12.6516%" y="373" width="0.0334%" height="15" fill="rgb(221,32,16)" fg:x="304093" fg:w="803"/><text x="12.9016%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (766 samples, 0.03%)</title><rect x="12.6531%" y="357" width="0.0319%" height="15" fill="rgb(228,144,50)" fg:x="304130" fg:w="766"/><text x="12.9031%" y="367.50"></text></g><g><title>prepare_to_wait_event (899 samples, 0.04%)</title><rect x="12.6486%" y="389" width="0.0374%" height="15" fill="rgb(229,201,53)" fg:x="304021" fg:w="899"/><text x="12.8986%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (814 samples, 0.03%)</title><rect x="12.6860%" y="389" width="0.0339%" height="15" fill="rgb(249,153,27)" fg:x="304920" fg:w="814"/><text x="12.9360%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (573 samples, 0.02%)</title><rect x="12.6960%" y="373" width="0.0238%" height="15" fill="rgb(227,106,25)" fg:x="305161" fg:w="573"/><text x="12.9460%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (307 samples, 0.01%)</title><rect x="12.7318%" y="341" width="0.0128%" height="15" fill="rgb(230,65,29)" fg:x="306021" fg:w="307"/><text x="12.9818%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (294 samples, 0.01%)</title><rect x="12.7323%" y="325" width="0.0122%" height="15" fill="rgb(221,57,46)" fg:x="306034" fg:w="294"/><text x="12.9823%" y="335.50"></text></g><g><title>native_write_msr (292 samples, 0.01%)</title><rect x="12.7324%" y="309" width="0.0121%" height="15" fill="rgb(229,161,17)" fg:x="306036" fg:w="292"/><text x="12.9824%" y="319.50"></text></g><g><title>finish_task_switch (346 samples, 0.01%)</title><rect x="12.7305%" y="357" width="0.0144%" height="15" fill="rgb(222,213,11)" fg:x="305991" fg:w="346"/><text x="12.9805%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (3,013 samples, 0.13%)</title><rect x="12.6286%" y="405" width="0.1254%" height="15" fill="rgb(235,35,13)" fg:x="303540" fg:w="3013"/><text x="12.8786%" y="415.50"></text></g><g><title>schedule (819 samples, 0.03%)</title><rect x="12.7198%" y="389" width="0.0341%" height="15" fill="rgb(233,158,34)" fg:x="305734" fg:w="819"/><text x="12.9698%" y="399.50"></text></g><g><title>__schedule (815 samples, 0.03%)</title><rect x="12.7200%" y="373" width="0.0339%" height="15" fill="rgb(215,151,48)" fg:x="305738" fg:w="815"/><text x="12.9700%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (3,116 samples, 0.13%)</title><rect x="12.6280%" y="421" width="0.1296%" height="15" fill="rgb(229,84,14)" fg:x="303526" fg:w="3116"/><text x="12.8780%" y="431.50"></text></g><g><title>__btrfs_tree_lock (436 samples, 0.02%)</title><rect x="12.7576%" y="421" width="0.0181%" height="15" fill="rgb(229,68,14)" fg:x="306642" fg:w="436"/><text x="13.0076%" y="431.50"></text></g><g><title>schedule (396 samples, 0.02%)</title><rect x="12.7593%" y="405" width="0.0165%" height="15" fill="rgb(243,106,26)" fg:x="306682" fg:w="396"/><text x="13.0093%" y="415.50"></text></g><g><title>__schedule (394 samples, 0.02%)</title><rect x="12.7594%" y="389" width="0.0164%" height="15" fill="rgb(206,45,38)" fg:x="306684" fg:w="394"/><text x="13.0094%" y="399.50"></text></g><g><title>finish_wait (339 samples, 0.01%)</title><rect x="12.7841%" y="389" width="0.0141%" height="15" fill="rgb(226,6,15)" fg:x="307279" fg:w="339"/><text x="13.0341%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (322 samples, 0.01%)</title><rect x="12.7848%" y="373" width="0.0134%" height="15" fill="rgb(232,22,54)" fg:x="307296" fg:w="322"/><text x="13.0348%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (306 samples, 0.01%)</title><rect x="12.7855%" y="357" width="0.0127%" height="15" fill="rgb(229,222,32)" fg:x="307312" fg:w="306"/><text x="13.0355%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (847 samples, 0.04%)</title><rect x="12.8030%" y="373" width="0.0352%" height="15" fill="rgb(228,62,29)" fg:x="307733" fg:w="847"/><text x="13.0530%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (775 samples, 0.03%)</title><rect x="12.8060%" y="357" width="0.0322%" height="15" fill="rgb(251,103,34)" fg:x="307805" fg:w="775"/><text x="13.0560%" y="367.50"></text></g><g><title>prepare_to_wait_event (981 samples, 0.04%)</title><rect x="12.7985%" y="389" width="0.0408%" height="15" fill="rgb(233,12,30)" fg:x="307624" fg:w="981"/><text x="13.0485%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (1,419 samples, 0.06%)</title><rect x="12.8393%" y="389" width="0.0590%" height="15" fill="rgb(238,52,0)" fg:x="308605" fg:w="1419"/><text x="13.0893%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (655 samples, 0.03%)</title><rect x="12.8711%" y="373" width="0.0273%" height="15" fill="rgb(223,98,5)" fg:x="309369" fg:w="655"/><text x="13.1211%" y="383.50"></text></g><g><title>dequeue_entity (242 samples, 0.01%)</title><rect x="12.9046%" y="341" width="0.0101%" height="15" fill="rgb(228,75,37)" fg:x="310174" fg:w="242"/><text x="13.1546%" y="351.50"></text></g><g><title>dequeue_task_fair (282 samples, 0.01%)</title><rect x="12.9035%" y="357" width="0.0117%" height="15" fill="rgb(205,115,49)" fg:x="310148" fg:w="282"/><text x="13.1535%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (360 samples, 0.01%)</title><rect x="12.9172%" y="341" width="0.0150%" height="15" fill="rgb(250,154,43)" fg:x="310478" fg:w="360"/><text x="13.1672%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (345 samples, 0.01%)</title><rect x="12.9178%" y="325" width="0.0144%" height="15" fill="rgb(226,43,29)" fg:x="310493" fg:w="345"/><text x="13.1678%" y="335.50"></text></g><g><title>native_write_msr (337 samples, 0.01%)</title><rect x="12.9182%" y="309" width="0.0140%" height="15" fill="rgb(249,228,39)" fg:x="310501" fg:w="337"/><text x="13.1682%" y="319.50"></text></g><g><title>finish_task_switch (428 samples, 0.02%)</title><rect x="12.9152%" y="357" width="0.0178%" height="15" fill="rgb(216,79,43)" fg:x="310430" fg:w="428"/><text x="13.1652%" y="367.50"></text></g><g><title>__schedule (1,200 samples, 0.05%)</title><rect x="12.8990%" y="373" width="0.0499%" height="15" fill="rgb(228,95,12)" fg:x="310040" fg:w="1200"/><text x="13.1490%" y="383.50"></text></g><g><title>__btrfs_tree_lock (4,127 samples, 0.17%)</title><rect x="12.7773%" y="405" width="0.1717%" height="15" fill="rgb(249,221,15)" fg:x="307114" fg:w="4127"/><text x="13.0273%" y="415.50"></text></g><g><title>schedule (1,217 samples, 0.05%)</title><rect x="12.8983%" y="389" width="0.0506%" height="15" fill="rgb(233,34,13)" fg:x="310024" fg:w="1217"/><text x="13.1483%" y="399.50"></text></g><g><title>btrfs_lock_root_node (4,181 samples, 0.17%)</title><rect x="12.7770%" y="421" width="0.1739%" height="15" fill="rgb(214,103,39)" fg:x="307107" fg:w="4181"/><text x="13.0270%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (273 samples, 0.01%)</title><rect x="12.9544%" y="421" width="0.0114%" height="15" fill="rgb(251,126,39)" fg:x="311373" fg:w="273"/><text x="13.2044%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (400 samples, 0.02%)</title><rect x="12.9680%" y="421" width="0.0166%" height="15" fill="rgb(214,216,36)" fg:x="311700" fg:w="400"/><text x="13.2180%" y="431.50"></text></g><g><title>find_extent_buffer (425 samples, 0.02%)</title><rect x="12.9922%" y="405" width="0.0177%" height="15" fill="rgb(220,221,8)" fg:x="312281" fg:w="425"/><text x="13.2422%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (672 samples, 0.03%)</title><rect x="12.9847%" y="421" width="0.0280%" height="15" fill="rgb(240,216,3)" fg:x="312100" fg:w="672"/><text x="13.2347%" y="431.50"></text></g><g><title>reada_for_balance (325 samples, 0.01%)</title><rect x="13.0126%" y="421" width="0.0135%" height="15" fill="rgb(232,218,17)" fg:x="312772" fg:w="325"/><text x="13.2626%" y="431.50"></text></g><g><title>select_task_rq_fair (291 samples, 0.01%)</title><rect x="13.0632%" y="341" width="0.0121%" height="15" fill="rgb(229,163,45)" fg:x="313986" fg:w="291"/><text x="13.3132%" y="351.50"></text></g><g><title>enqueue_entity (263 samples, 0.01%)</title><rect x="13.0797%" y="309" width="0.0109%" height="15" fill="rgb(231,110,42)" fg:x="314384" fg:w="263"/><text x="13.3297%" y="319.50"></text></g><g><title>enqueue_task_fair (352 samples, 0.01%)</title><rect x="13.0769%" y="325" width="0.0146%" height="15" fill="rgb(208,170,48)" fg:x="314317" fg:w="352"/><text x="13.3269%" y="335.50"></text></g><g><title>ttwu_do_activate (705 samples, 0.03%)</title><rect x="13.0761%" y="341" width="0.0293%" height="15" fill="rgb(239,116,25)" fg:x="314296" fg:w="705"/><text x="13.3261%" y="351.50"></text></g><g><title>psi_task_change (332 samples, 0.01%)</title><rect x="13.0916%" y="325" width="0.0138%" height="15" fill="rgb(219,200,50)" fg:x="314669" fg:w="332"/><text x="13.3416%" y="335.50"></text></g><g><title>psi_group_change (303 samples, 0.01%)</title><rect x="13.0928%" y="309" width="0.0126%" height="15" fill="rgb(245,200,0)" fg:x="314698" fg:w="303"/><text x="13.3428%" y="319.50"></text></g><g><title>__wake_up_common (2,010 samples, 0.08%)</title><rect x="13.0296%" y="389" width="0.0836%" height="15" fill="rgb(245,119,33)" fg:x="313179" fg:w="2010"/><text x="13.2796%" y="399.50"></text></g><g><title>autoremove_wake_function (1,959 samples, 0.08%)</title><rect x="13.0317%" y="373" width="0.0815%" height="15" fill="rgb(231,125,12)" fg:x="313230" fg:w="1959"/><text x="13.2817%" y="383.50"></text></g><g><title>try_to_wake_up (1,909 samples, 0.08%)</title><rect x="13.0338%" y="357" width="0.0794%" height="15" fill="rgb(216,96,41)" fg:x="313280" fg:w="1909"/><text x="13.2838%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (400 samples, 0.02%)</title><rect x="13.1132%" y="389" width="0.0166%" height="15" fill="rgb(248,43,45)" fg:x="315189" fg:w="400"/><text x="13.3632%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (383 samples, 0.02%)</title><rect x="13.1139%" y="373" width="0.0159%" height="15" fill="rgb(217,222,7)" fg:x="315206" fg:w="383"/><text x="13.3639%" y="383.50"></text></g><g><title>__wake_up_common_lock (2,442 samples, 0.10%)</title><rect x="13.0293%" y="405" width="0.1016%" height="15" fill="rgb(233,28,6)" fg:x="313172" fg:w="2442"/><text x="13.2793%" y="415.50"></text></g><g><title>btrfs_lookup_inode (12,385 samples, 0.52%)</title><rect x="12.6179%" y="453" width="0.5153%" height="15" fill="rgb(231,218,15)" fg:x="303283" fg:w="12385"/><text x="12.8679%" y="463.50"></text></g><g><title>btrfs_search_slot (12,342 samples, 0.51%)</title><rect x="12.6197%" y="437" width="0.5135%" height="15" fill="rgb(226,171,48)" fg:x="303326" fg:w="12342"/><text x="12.8697%" y="447.50"></text></g><g><title>unlock_up (2,565 samples, 0.11%)</title><rect x="13.0264%" y="421" width="0.1067%" height="15" fill="rgb(235,201,9)" fg:x="313103" fg:w="2565"/><text x="13.2764%" y="431.50"></text></g><g><title>__wake_up_common (398 samples, 0.02%)</title><rect x="13.1375%" y="421" width="0.0166%" height="15" fill="rgb(217,80,15)" fg:x="315773" fg:w="398"/><text x="13.3875%" y="431.50"></text></g><g><title>autoremove_wake_function (392 samples, 0.02%)</title><rect x="13.1378%" y="405" width="0.0163%" height="15" fill="rgb(219,152,8)" fg:x="315779" fg:w="392"/><text x="13.3878%" y="415.50"></text></g><g><title>try_to_wake_up (384 samples, 0.02%)</title><rect x="13.1381%" y="389" width="0.0160%" height="15" fill="rgb(243,107,38)" fg:x="315787" fg:w="384"/><text x="13.3881%" y="399.50"></text></g><g><title>__wake_up_common_lock (428 samples, 0.02%)</title><rect x="13.1373%" y="437" width="0.0178%" height="15" fill="rgb(231,17,5)" fg:x="315768" fg:w="428"/><text x="13.3873%" y="447.50"></text></g><g><title>btrfs_release_path (607 samples, 0.03%)</title><rect x="13.1365%" y="453" width="0.0253%" height="15" fill="rgb(209,25,54)" fg:x="315750" fg:w="607"/><text x="13.3865%" y="463.50"></text></g><g><title>__btrfs_update_delayed_inode (16,724 samples, 0.70%)</title><rect x="12.4787%" y="469" width="0.6958%" height="15" fill="rgb(219,0,2)" fg:x="299939" fg:w="16724"/><text x="12.7287%" y="479.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (18,073 samples, 0.75%)</title><rect x="12.4558%" y="485" width="0.7519%" height="15" fill="rgb(246,9,5)" fg:x="299387" fg:w="18073"/><text x="12.7058%" y="495.50"></text></g><g><title>start_transaction (268 samples, 0.01%)</title><rect x="13.1965%" y="469" width="0.0111%" height="15" fill="rgb(226,159,4)" fg:x="317192" fg:w="268"/><text x="13.4465%" y="479.50"></text></g><g><title>btrfs_del_items (406 samples, 0.02%)</title><rect x="13.2084%" y="469" width="0.0169%" height="15" fill="rgb(219,175,34)" fg:x="317478" fg:w="406"/><text x="13.4584%" y="479.50"></text></g><g><title>__wake_up_common (865 samples, 0.04%)</title><rect x="13.2263%" y="421" width="0.0360%" height="15" fill="rgb(236,10,46)" fg:x="317907" fg:w="865"/><text x="13.4763%" y="431.50"></text></g><g><title>autoremove_wake_function (854 samples, 0.04%)</title><rect x="13.2267%" y="405" width="0.0355%" height="15" fill="rgb(240,211,16)" fg:x="317918" fg:w="854"/><text x="13.4767%" y="415.50"></text></g><g><title>try_to_wake_up (840 samples, 0.03%)</title><rect x="13.2273%" y="389" width="0.0349%" height="15" fill="rgb(205,3,43)" fg:x="317932" fg:w="840"/><text x="13.4773%" y="399.50"></text></g><g><title>__wake_up_common_lock (892 samples, 0.04%)</title><rect x="13.2261%" y="437" width="0.0371%" height="15" fill="rgb(245,7,22)" fg:x="317902" fg:w="892"/><text x="13.4761%" y="447.50"></text></g><g><title>btrfs_free_path (1,134 samples, 0.05%)</title><rect x="13.2253%" y="469" width="0.0472%" height="15" fill="rgb(239,132,32)" fg:x="317884" fg:w="1134"/><text x="13.4753%" y="479.50"></text></g><g><title>btrfs_release_path (1,134 samples, 0.05%)</title><rect x="13.2253%" y="453" width="0.0472%" height="15" fill="rgb(228,202,34)" fg:x="317884" fg:w="1134"/><text x="13.4753%" y="463.50"></text></g><g><title>finish_wait (454 samples, 0.02%)</title><rect x="13.2891%" y="421" width="0.0189%" height="15" fill="rgb(254,200,22)" fg:x="319417" fg:w="454"/><text x="13.5391%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (438 samples, 0.02%)</title><rect x="13.2898%" y="405" width="0.0182%" height="15" fill="rgb(219,10,39)" fg:x="319433" fg:w="438"/><text x="13.5398%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (418 samples, 0.02%)</title><rect x="13.2906%" y="389" width="0.0174%" height="15" fill="rgb(226,210,39)" fg:x="319453" fg:w="418"/><text x="13.5406%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,224 samples, 0.05%)</title><rect x="13.3128%" y="405" width="0.0509%" height="15" fill="rgb(208,219,16)" fg:x="319986" fg:w="1224"/><text x="13.5628%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,184 samples, 0.05%)</title><rect x="13.3144%" y="389" width="0.0493%" height="15" fill="rgb(216,158,51)" fg:x="320026" fg:w="1184"/><text x="13.5644%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,353 samples, 0.06%)</title><rect x="13.3081%" y="421" width="0.0563%" height="15" fill="rgb(233,14,44)" fg:x="319874" fg:w="1353"/><text x="13.5581%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (861 samples, 0.04%)</title><rect x="13.3644%" y="421" width="0.0358%" height="15" fill="rgb(237,97,39)" fg:x="321227" fg:w="861"/><text x="13.6144%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (624 samples, 0.03%)</title><rect x="13.3743%" y="405" width="0.0260%" height="15" fill="rgb(218,198,43)" fg:x="321464" fg:w="624"/><text x="13.6243%" y="415.50"></text></g><g><title>dequeue_task_fair (248 samples, 0.01%)</title><rect x="13.4049%" y="389" width="0.0103%" height="15" fill="rgb(231,104,20)" fg:x="322200" fg:w="248"/><text x="13.6549%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (362 samples, 0.02%)</title><rect x="13.4171%" y="373" width="0.0151%" height="15" fill="rgb(254,36,13)" fg:x="322494" fg:w="362"/><text x="13.6671%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (350 samples, 0.01%)</title><rect x="13.4176%" y="357" width="0.0146%" height="15" fill="rgb(248,14,50)" fg:x="322506" fg:w="350"/><text x="13.6676%" y="367.50"></text></g><g><title>native_write_msr (347 samples, 0.01%)</title><rect x="13.4177%" y="341" width="0.0144%" height="15" fill="rgb(217,107,29)" fg:x="322509" fg:w="347"/><text x="13.6677%" y="351.50"></text></g><g><title>finish_task_switch (428 samples, 0.02%)</title><rect x="13.4152%" y="389" width="0.0178%" height="15" fill="rgb(251,169,33)" fg:x="322448" fg:w="428"/><text x="13.6652%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (3,895 samples, 0.16%)</title><rect x="13.2830%" y="437" width="0.1620%" height="15" fill="rgb(217,108,32)" fg:x="319270" fg:w="3895"/><text x="13.5330%" y="447.50"></text></g><g><title>schedule (1,077 samples, 0.04%)</title><rect x="13.4002%" y="421" width="0.0448%" height="15" fill="rgb(219,66,42)" fg:x="322088" fg:w="1077"/><text x="13.6502%" y="431.50"></text></g><g><title>__schedule (1,062 samples, 0.04%)</title><rect x="13.4009%" y="405" width="0.0442%" height="15" fill="rgb(206,180,7)" fg:x="322103" fg:w="1062"/><text x="13.6509%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (4,000 samples, 0.17%)</title><rect x="13.2821%" y="453" width="0.1664%" height="15" fill="rgb(208,226,31)" fg:x="319248" fg:w="4000"/><text x="13.5321%" y="463.50"></text></g><g><title>__btrfs_tree_lock (496 samples, 0.02%)</title><rect x="13.4485%" y="453" width="0.0206%" height="15" fill="rgb(218,26,49)" fg:x="323248" fg:w="496"/><text x="13.6985%" y="463.50"></text></g><g><title>schedule (430 samples, 0.02%)</title><rect x="13.4512%" y="437" width="0.0179%" height="15" fill="rgb(233,197,48)" fg:x="323314" fg:w="430"/><text x="13.7012%" y="447.50"></text></g><g><title>__schedule (427 samples, 0.02%)</title><rect x="13.4514%" y="421" width="0.0178%" height="15" fill="rgb(252,181,51)" fg:x="323317" fg:w="427"/><text x="13.7014%" y="431.50"></text></g><g><title>finish_wait (401 samples, 0.02%)</title><rect x="13.4790%" y="421" width="0.0167%" height="15" fill="rgb(253,90,19)" fg:x="323981" fg:w="401"/><text x="13.7290%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (377 samples, 0.02%)</title><rect x="13.4800%" y="405" width="0.0157%" height="15" fill="rgb(215,171,30)" fg:x="324005" fg:w="377"/><text x="13.7300%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (357 samples, 0.01%)</title><rect x="13.4808%" y="389" width="0.0149%" height="15" fill="rgb(214,222,9)" fg:x="324025" fg:w="357"/><text x="13.7308%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,000 samples, 0.04%)</title><rect x="13.5019%" y="405" width="0.0416%" height="15" fill="rgb(223,3,22)" fg:x="324532" fg:w="1000"/><text x="13.7519%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (929 samples, 0.04%)</title><rect x="13.5049%" y="389" width="0.0387%" height="15" fill="rgb(225,196,46)" fg:x="324603" fg:w="929"/><text x="13.7549%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,173 samples, 0.05%)</title><rect x="13.4958%" y="421" width="0.0488%" height="15" fill="rgb(209,110,37)" fg:x="324386" fg:w="1173"/><text x="13.7458%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,584 samples, 0.07%)</title><rect x="13.5446%" y="421" width="0.0659%" height="15" fill="rgb(249,89,12)" fg:x="325559" fg:w="1584"/><text x="13.7946%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (745 samples, 0.03%)</title><rect x="13.5795%" y="405" width="0.0310%" height="15" fill="rgb(226,27,33)" fg:x="326398" fg:w="745"/><text x="13.8295%" y="415.50"></text></g><g><title>dequeue_entity (253 samples, 0.01%)</title><rect x="13.6182%" y="373" width="0.0105%" height="15" fill="rgb(213,82,22)" fg:x="327326" fg:w="253"/><text x="13.8682%" y="383.50"></text></g><g><title>dequeue_task_fair (318 samples, 0.01%)</title><rect x="13.6164%" y="389" width="0.0132%" height="15" fill="rgb(248,140,0)" fg:x="327283" fg:w="318"/><text x="13.8664%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (441 samples, 0.02%)</title><rect x="13.6319%" y="373" width="0.0183%" height="15" fill="rgb(228,106,3)" fg:x="327656" fg:w="441"/><text x="13.8819%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (425 samples, 0.02%)</title><rect x="13.6326%" y="357" width="0.0177%" height="15" fill="rgb(209,23,37)" fg:x="327672" fg:w="425"/><text x="13.8826%" y="367.50"></text></g><g><title>native_write_msr (421 samples, 0.02%)</title><rect x="13.6327%" y="341" width="0.0175%" height="15" fill="rgb(241,93,50)" fg:x="327676" fg:w="421"/><text x="13.8827%" y="351.50"></text></g><g><title>finish_task_switch (514 samples, 0.02%)</title><rect x="13.6296%" y="389" width="0.0214%" height="15" fill="rgb(253,46,43)" fg:x="327601" fg:w="514"/><text x="13.8796%" y="399.50"></text></g><g><title>__btrfs_tree_lock (4,735 samples, 0.20%)</title><rect x="13.4698%" y="437" width="0.1970%" height="15" fill="rgb(226,206,43)" fg:x="323761" fg:w="4735"/><text x="13.7198%" y="447.50"></text></g><g><title>schedule (1,353 samples, 0.06%)</title><rect x="13.6105%" y="421" width="0.0563%" height="15" fill="rgb(217,54,7)" fg:x="327143" fg:w="1353"/><text x="13.8605%" y="431.50"></text></g><g><title>__schedule (1,338 samples, 0.06%)</title><rect x="13.6112%" y="405" width="0.0557%" height="15" fill="rgb(223,5,52)" fg:x="327158" fg:w="1338"/><text x="13.8612%" y="415.50"></text></g><g><title>btrfs_lock_root_node (4,783 samples, 0.20%)</title><rect x="13.4697%" y="453" width="0.1990%" height="15" fill="rgb(206,52,46)" fg:x="323757" fg:w="4783"/><text x="13.7197%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (343 samples, 0.01%)</title><rect x="13.6742%" y="453" width="0.0143%" height="15" fill="rgb(253,136,11)" fg:x="328672" fg:w="343"/><text x="13.9242%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (261 samples, 0.01%)</title><rect x="13.6776%" y="437" width="0.0109%" height="15" fill="rgb(208,106,33)" fg:x="328754" fg:w="261"/><text x="13.9276%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (352 samples, 0.01%)</title><rect x="13.6900%" y="453" width="0.0146%" height="15" fill="rgb(206,54,4)" fg:x="329053" fg:w="352"/><text x="13.9400%" y="463.50"></text></g><g><title>find_extent_buffer (492 samples, 0.02%)</title><rect x="13.7133%" y="437" width="0.0205%" height="15" fill="rgb(213,3,15)" fg:x="329612" fg:w="492"/><text x="13.9633%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (778 samples, 0.03%)</title><rect x="13.7047%" y="453" width="0.0324%" height="15" fill="rgb(252,211,39)" fg:x="329405" fg:w="778"/><text x="13.9547%" y="463.50"></text></g><g><title>ttwu_do_activate (473 samples, 0.02%)</title><rect x="13.7597%" y="373" width="0.0197%" height="15" fill="rgb(223,6,36)" fg:x="330727" fg:w="473"/><text x="14.0097%" y="383.50"></text></g><g><title>__wake_up_common (1,040 samples, 0.04%)</title><rect x="13.7405%" y="421" width="0.0433%" height="15" fill="rgb(252,169,45)" fg:x="330266" fg:w="1040"/><text x="13.9905%" y="431.50"></text></g><g><title>autoremove_wake_function (1,025 samples, 0.04%)</title><rect x="13.7411%" y="405" width="0.0426%" height="15" fill="rgb(212,48,26)" fg:x="330281" fg:w="1025"/><text x="13.9911%" y="415.50"></text></g><g><title>try_to_wake_up (983 samples, 0.04%)</title><rect x="13.7428%" y="389" width="0.0409%" height="15" fill="rgb(251,102,48)" fg:x="330323" fg:w="983"/><text x="13.9928%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,089 samples, 0.05%)</title><rect x="13.7403%" y="437" width="0.0453%" height="15" fill="rgb(243,208,16)" fg:x="330263" fg:w="1089"/><text x="13.9903%" y="447.50"></text></g><g><title>btrfs_search_slot (12,369 samples, 0.51%)</title><rect x="13.2725%" y="469" width="0.5146%" height="15" fill="rgb(219,96,24)" fg:x="319018" fg:w="12369"/><text x="13.5225%" y="479.50"></text></g><g><title>unlock_up (1,200 samples, 0.05%)</title><rect x="13.7372%" y="453" width="0.0499%" height="15" fill="rgb(219,33,29)" fg:x="330187" fg:w="1200"/><text x="13.9872%" y="463.50"></text></g><g><title>btrfs_del_orphan_item (14,058 samples, 0.58%)</title><rect x="13.2077%" y="485" width="0.5849%" height="15" fill="rgb(223,176,5)" fg:x="317460" fg:w="14058"/><text x="13.4577%" y="495.50"></text></g><g><title>clear_state_bit (292 samples, 0.01%)</title><rect x="13.8278%" y="453" width="0.0121%" height="15" fill="rgb(228,140,14)" fg:x="332366" fg:w="292"/><text x="14.0778%" y="463.50"></text></g><g><title>__clear_extent_bit (607 samples, 0.03%)</title><rect x="13.8171%" y="469" width="0.0253%" height="15" fill="rgb(217,179,31)" fg:x="332109" fg:w="607"/><text x="14.0671%" y="479.50"></text></g><g><title>__btrfs_add_free_space (293 samples, 0.01%)</title><rect x="13.8558%" y="421" width="0.0122%" height="15" fill="rgb(230,9,30)" fg:x="333038" fg:w="293"/><text x="14.1058%" y="431.50"></text></g><g><title>btrfs_free_tree_block (430 samples, 0.02%)</title><rect x="13.8557%" y="437" width="0.0179%" height="15" fill="rgb(230,136,20)" fg:x="333035" fg:w="430"/><text x="14.1057%" y="447.50"></text></g><g><title>btrfs_del_leaf (485 samples, 0.02%)</title><rect x="13.8555%" y="453" width="0.0202%" height="15" fill="rgb(215,210,22)" fg:x="333031" fg:w="485"/><text x="14.1055%" y="463.50"></text></g><g><title>btrfs_get_token_32 (1,078 samples, 0.04%)</title><rect x="13.8808%" y="453" width="0.0448%" height="15" fill="rgb(218,43,5)" fg:x="333639" fg:w="1078"/><text x="14.1308%" y="463.50"></text></g><g><title>btrfs_set_token_32 (790 samples, 0.03%)</title><rect x="13.9282%" y="453" width="0.0329%" height="15" fill="rgb(216,11,5)" fg:x="334778" fg:w="790"/><text x="14.1782%" y="463.50"></text></g><g><title>memmove_extent_buffer (546 samples, 0.02%)</title><rect x="13.9714%" y="453" width="0.0227%" height="15" fill="rgb(209,82,29)" fg:x="335816" fg:w="546"/><text x="14.2214%" y="463.50"></text></g><g><title>memmove (415 samples, 0.02%)</title><rect x="13.9768%" y="437" width="0.0173%" height="15" fill="rgb(244,115,12)" fg:x="335947" fg:w="415"/><text x="14.2268%" y="447.50"></text></g><g><title>btrfs_del_items (4,101 samples, 0.17%)</title><rect x="13.8425%" y="469" width="0.1706%" height="15" fill="rgb(222,82,18)" fg:x="332718" fg:w="4101"/><text x="14.0925%" y="479.50"></text></g><g><title>alloc_extent_map (243 samples, 0.01%)</title><rect x="14.0162%" y="453" width="0.0101%" height="15" fill="rgb(249,227,8)" fg:x="336893" fg:w="243"/><text x="14.2662%" y="463.50"></text></g><g><title>btrfs_drop_extent_cache (470 samples, 0.02%)</title><rect x="14.0131%" y="469" width="0.0196%" height="15" fill="rgb(253,141,45)" fg:x="336819" fg:w="470"/><text x="14.2631%" y="479.50"></text></g><g><title>ttwu_do_activate (262 samples, 0.01%)</title><rect x="14.0471%" y="373" width="0.0109%" height="15" fill="rgb(234,184,4)" fg:x="337635" fg:w="262"/><text x="14.2971%" y="383.50"></text></g><g><title>__wake_up_common (655 samples, 0.03%)</title><rect x="14.0339%" y="421" width="0.0273%" height="15" fill="rgb(218,194,23)" fg:x="337320" fg:w="655"/><text x="14.2839%" y="431.50"></text></g><g><title>autoremove_wake_function (639 samples, 0.03%)</title><rect x="14.0346%" y="405" width="0.0266%" height="15" fill="rgb(235,66,41)" fg:x="337336" fg:w="639"/><text x="14.2846%" y="415.50"></text></g><g><title>try_to_wake_up (627 samples, 0.03%)</title><rect x="14.0351%" y="389" width="0.0261%" height="15" fill="rgb(245,217,1)" fg:x="337348" fg:w="627"/><text x="14.2851%" y="399.50"></text></g><g><title>__wake_up_common_lock (679 samples, 0.03%)</title><rect x="14.0338%" y="437" width="0.0282%" height="15" fill="rgb(229,91,1)" fg:x="337317" fg:w="679"/><text x="14.2838%" y="447.50"></text></g><g><title>btrfs_free_path (924 samples, 0.04%)</title><rect x="14.0327%" y="469" width="0.0384%" height="15" fill="rgb(207,101,30)" fg:x="337289" fg:w="924"/><text x="14.2827%" y="479.50"></text></g><g><title>btrfs_release_path (923 samples, 0.04%)</title><rect x="14.0327%" y="453" width="0.0384%" height="15" fill="rgb(223,82,49)" fg:x="337290" fg:w="923"/><text x="14.2827%" y="463.50"></text></g><g><title>btrfs_block_rsv_release (311 samples, 0.01%)</title><rect x="14.0803%" y="437" width="0.0129%" height="15" fill="rgb(218,167,17)" fg:x="338433" fg:w="311"/><text x="14.3303%" y="447.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (392 samples, 0.02%)</title><rect x="14.0932%" y="437" width="0.0163%" height="15" fill="rgb(208,103,14)" fg:x="338744" fg:w="392"/><text x="14.3432%" y="447.50"></text></g><g><title>kfree (292 samples, 0.01%)</title><rect x="14.1095%" y="437" width="0.0121%" height="15" fill="rgb(238,20,8)" fg:x="339136" fg:w="292"/><text x="14.3595%" y="447.50"></text></g><g><title>__btrfs_kill_delayed_node (1,145 samples, 0.05%)</title><rect x="14.0766%" y="453" width="0.0476%" height="15" fill="rgb(218,80,54)" fg:x="338345" fg:w="1145"/><text x="14.3266%" y="463.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,206 samples, 0.05%)</title><rect x="14.0761%" y="469" width="0.0502%" height="15" fill="rgb(240,144,17)" fg:x="338332" fg:w="1206"/><text x="14.3261%" y="479.50"></text></g><g><title>finish_wait (437 samples, 0.02%)</title><rect x="14.1420%" y="421" width="0.0182%" height="15" fill="rgb(245,27,50)" fg:x="339916" fg:w="437"/><text x="14.3920%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (420 samples, 0.02%)</title><rect x="14.1427%" y="405" width="0.0175%" height="15" fill="rgb(251,51,7)" fg:x="339933" fg:w="420"/><text x="14.3927%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (405 samples, 0.02%)</title><rect x="14.1433%" y="389" width="0.0168%" height="15" fill="rgb(245,217,29)" fg:x="339948" fg:w="405"/><text x="14.3933%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,140 samples, 0.05%)</title><rect x="14.1645%" y="405" width="0.0474%" height="15" fill="rgb(221,176,29)" fg:x="340458" fg:w="1140"/><text x="14.4145%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,085 samples, 0.05%)</title><rect x="14.1668%" y="389" width="0.0451%" height="15" fill="rgb(212,180,24)" fg:x="340513" fg:w="1085"/><text x="14.4168%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,259 samples, 0.05%)</title><rect x="14.1602%" y="421" width="0.0524%" height="15" fill="rgb(254,24,2)" fg:x="340355" fg:w="1259"/><text x="14.4102%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (952 samples, 0.04%)</title><rect x="14.2126%" y="421" width="0.0396%" height="15" fill="rgb(230,100,2)" fg:x="341614" fg:w="952"/><text x="14.4626%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (708 samples, 0.03%)</title><rect x="14.2227%" y="405" width="0.0295%" height="15" fill="rgb(219,142,25)" fg:x="341858" fg:w="708"/><text x="14.4727%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (298 samples, 0.01%)</title><rect x="14.2659%" y="373" width="0.0124%" height="15" fill="rgb(240,73,43)" fg:x="342896" fg:w="298"/><text x="14.5159%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (285 samples, 0.01%)</title><rect x="14.2665%" y="357" width="0.0119%" height="15" fill="rgb(214,114,15)" fg:x="342909" fg:w="285"/><text x="14.5165%" y="367.50"></text></g><g><title>native_write_msr (281 samples, 0.01%)</title><rect x="14.2666%" y="341" width="0.0117%" height="15" fill="rgb(207,130,4)" fg:x="342913" fg:w="281"/><text x="14.5166%" y="351.50"></text></g><g><title>finish_task_switch (338 samples, 0.01%)</title><rect x="14.2648%" y="389" width="0.0141%" height="15" fill="rgb(221,25,40)" fg:x="342868" fg:w="338"/><text x="14.5148%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (3,684 samples, 0.15%)</title><rect x="14.1369%" y="437" width="0.1533%" height="15" fill="rgb(241,184,7)" fg:x="339794" fg:w="3684"/><text x="14.3869%" y="447.50"></text></g><g><title>schedule (912 samples, 0.04%)</title><rect x="14.2522%" y="421" width="0.0379%" height="15" fill="rgb(235,159,4)" fg:x="342566" fg:w="912"/><text x="14.5022%" y="431.50"></text></g><g><title>__schedule (909 samples, 0.04%)</title><rect x="14.2523%" y="405" width="0.0378%" height="15" fill="rgb(214,87,48)" fg:x="342569" fg:w="909"/><text x="14.5023%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (3,779 samples, 0.16%)</title><rect x="14.1363%" y="453" width="0.1572%" height="15" fill="rgb(246,198,24)" fg:x="339780" fg:w="3779"/><text x="14.3863%" y="463.50"></text></g><g><title>__btrfs_tree_lock (338 samples, 0.01%)</title><rect x="14.2935%" y="453" width="0.0141%" height="15" fill="rgb(209,66,40)" fg:x="343559" fg:w="338"/><text x="14.5435%" y="463.50"></text></g><g><title>schedule (285 samples, 0.01%)</title><rect x="14.2957%" y="437" width="0.0119%" height="15" fill="rgb(233,147,39)" fg:x="343612" fg:w="285"/><text x="14.5457%" y="447.50"></text></g><g><title>__schedule (280 samples, 0.01%)</title><rect x="14.2959%" y="421" width="0.0116%" height="15" fill="rgb(231,145,52)" fg:x="343617" fg:w="280"/><text x="14.5459%" y="431.50"></text></g><g><title>finish_wait (364 samples, 0.02%)</title><rect x="14.3187%" y="421" width="0.0151%" height="15" fill="rgb(206,20,26)" fg:x="344164" fg:w="364"/><text x="14.5687%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (340 samples, 0.01%)</title><rect x="14.3197%" y="405" width="0.0141%" height="15" fill="rgb(238,220,4)" fg:x="344188" fg:w="340"/><text x="14.5697%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (311 samples, 0.01%)</title><rect x="14.3209%" y="389" width="0.0129%" height="15" fill="rgb(252,195,42)" fg:x="344217" fg:w="311"/><text x="14.5709%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (913 samples, 0.04%)</title><rect x="14.3392%" y="405" width="0.0380%" height="15" fill="rgb(209,10,6)" fg:x="344658" fg:w="913"/><text x="14.5892%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (857 samples, 0.04%)</title><rect x="14.3416%" y="389" width="0.0357%" height="15" fill="rgb(229,3,52)" fg:x="344714" fg:w="857"/><text x="14.5916%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,051 samples, 0.04%)</title><rect x="14.3340%" y="421" width="0.0437%" height="15" fill="rgb(253,49,37)" fg:x="344533" fg:w="1051"/><text x="14.5840%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,511 samples, 0.06%)</title><rect x="14.3778%" y="421" width="0.0629%" height="15" fill="rgb(240,103,49)" fg:x="345584" fg:w="1511"/><text x="14.6278%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (731 samples, 0.03%)</title><rect x="14.4102%" y="405" width="0.0304%" height="15" fill="rgb(250,182,30)" fg:x="346364" fg:w="731"/><text x="14.6602%" y="415.50"></text></g><g><title>dequeue_task_fair (271 samples, 0.01%)</title><rect x="14.4459%" y="389" width="0.0113%" height="15" fill="rgb(248,8,30)" fg:x="347221" fg:w="271"/><text x="14.6959%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (418 samples, 0.02%)</title><rect x="14.4591%" y="373" width="0.0174%" height="15" fill="rgb(237,120,30)" fg:x="347540" fg:w="418"/><text x="14.7091%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (399 samples, 0.02%)</title><rect x="14.4599%" y="357" width="0.0166%" height="15" fill="rgb(221,146,34)" fg:x="347559" fg:w="399"/><text x="14.7099%" y="367.50"></text></g><g><title>native_write_msr (393 samples, 0.02%)</title><rect x="14.4602%" y="341" width="0.0164%" height="15" fill="rgb(242,55,13)" fg:x="347565" fg:w="393"/><text x="14.7102%" y="351.50"></text></g><g><title>finish_task_switch (488 samples, 0.02%)</title><rect x="14.4571%" y="389" width="0.0203%" height="15" fill="rgb(242,112,31)" fg:x="347492" fg:w="488"/><text x="14.7071%" y="399.50"></text></g><g><title>__btrfs_tree_lock (4,387 samples, 0.18%)</title><rect x="14.3107%" y="437" width="0.1825%" height="15" fill="rgb(249,192,27)" fg:x="343971" fg:w="4387"/><text x="14.5607%" y="447.50"></text></g><g><title>schedule (1,263 samples, 0.05%)</title><rect x="14.4406%" y="421" width="0.0525%" height="15" fill="rgb(208,204,44)" fg:x="347095" fg:w="1263"/><text x="14.6906%" y="431.50"></text></g><g><title>__schedule (1,248 samples, 0.05%)</title><rect x="14.4413%" y="405" width="0.0519%" height="15" fill="rgb(208,93,54)" fg:x="347110" fg:w="1248"/><text x="14.6913%" y="415.50"></text></g><g><title>btrfs_lock_root_node (4,432 samples, 0.18%)</title><rect x="14.3105%" y="453" width="0.1844%" height="15" fill="rgb(242,1,31)" fg:x="343967" fg:w="4432"/><text x="14.5605%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (356 samples, 0.01%)</title><rect x="14.5013%" y="453" width="0.0148%" height="15" fill="rgb(241,83,25)" fg:x="348554" fg:w="356"/><text x="14.7513%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (333 samples, 0.01%)</title><rect x="14.5023%" y="437" width="0.0139%" height="15" fill="rgb(205,169,50)" fg:x="348577" fg:w="333"/><text x="14.7523%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (405 samples, 0.02%)</title><rect x="14.5188%" y="453" width="0.0168%" height="15" fill="rgb(239,186,37)" fg:x="348973" fg:w="405"/><text x="14.7688%" y="463.50"></text></g><g><title>find_extent_buffer (405 samples, 0.02%)</title><rect x="14.5448%" y="437" width="0.0168%" height="15" fill="rgb(205,221,10)" fg:x="349599" fg:w="405"/><text x="14.7948%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (703 samples, 0.03%)</title><rect x="14.5356%" y="453" width="0.0292%" height="15" fill="rgb(218,196,15)" fg:x="349378" fg:w="703"/><text x="14.7856%" y="463.50"></text></g><g><title>reada_for_balance (332 samples, 0.01%)</title><rect x="14.5649%" y="453" width="0.0138%" height="15" fill="rgb(218,196,35)" fg:x="350081" fg:w="332"/><text x="14.8149%" y="463.50"></text></g><g><title>select_task_rq_fair (296 samples, 0.01%)</title><rect x="14.6166%" y="373" width="0.0123%" height="15" fill="rgb(233,63,24)" fg:x="351325" fg:w="296"/><text x="14.8666%" y="383.50"></text></g><g><title>enqueue_entity (263 samples, 0.01%)</title><rect x="14.6335%" y="341" width="0.0109%" height="15" fill="rgb(225,8,4)" fg:x="351731" fg:w="263"/><text x="14.8835%" y="351.50"></text></g><g><title>enqueue_task_fair (349 samples, 0.01%)</title><rect x="14.6311%" y="357" width="0.0145%" height="15" fill="rgb(234,105,35)" fg:x="351672" fg:w="349"/><text x="14.8811%" y="367.50"></text></g><g><title>ttwu_do_activate (695 samples, 0.03%)</title><rect x="14.6300%" y="373" width="0.0289%" height="15" fill="rgb(236,21,32)" fg:x="351646" fg:w="695"/><text x="14.8800%" y="383.50"></text></g><g><title>psi_task_change (318 samples, 0.01%)</title><rect x="14.6457%" y="357" width="0.0132%" height="15" fill="rgb(228,109,6)" fg:x="352023" fg:w="318"/><text x="14.8957%" y="367.50"></text></g><g><title>psi_group_change (290 samples, 0.01%)</title><rect x="14.6468%" y="341" width="0.0121%" height="15" fill="rgb(229,215,31)" fg:x="352051" fg:w="290"/><text x="14.8968%" y="351.50"></text></g><g><title>__wake_up_common (2,010 samples, 0.08%)</title><rect x="14.5829%" y="421" width="0.0836%" height="15" fill="rgb(221,52,54)" fg:x="350514" fg:w="2010"/><text x="14.8329%" y="431.50"></text></g><g><title>autoremove_wake_function (1,960 samples, 0.08%)</title><rect x="14.5850%" y="405" width="0.0815%" height="15" fill="rgb(252,129,43)" fg:x="350564" fg:w="1960"/><text x="14.8350%" y="415.50"></text></g><g><title>try_to_wake_up (1,919 samples, 0.08%)</title><rect x="14.5867%" y="389" width="0.0798%" height="15" fill="rgb(248,183,27)" fg:x="350605" fg:w="1919"/><text x="14.8367%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (357 samples, 0.01%)</title><rect x="14.6665%" y="421" width="0.0149%" height="15" fill="rgb(250,0,22)" fg:x="352524" fg:w="357"/><text x="14.9165%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (337 samples, 0.01%)</title><rect x="14.6673%" y="405" width="0.0140%" height="15" fill="rgb(213,166,10)" fg:x="352544" fg:w="337"/><text x="14.9173%" y="415.50"></text></g><g><title>__wake_up_common_lock (2,394 samples, 0.10%)</title><rect x="14.5827%" y="437" width="0.0996%" height="15" fill="rgb(207,163,36)" fg:x="350510" fg:w="2394"/><text x="14.8327%" y="447.50"></text></g><g><title>btrfs_search_slot (13,398 samples, 0.56%)</title><rect x="14.1279%" y="469" width="0.5574%" height="15" fill="rgb(208,122,22)" fg:x="339579" fg:w="13398"/><text x="14.3779%" y="479.50"></text></g><g><title>unlock_up (2,559 samples, 0.11%)</title><rect x="14.5789%" y="453" width="0.1065%" height="15" fill="rgb(207,104,49)" fg:x="350418" fg:w="2559"/><text x="14.8289%" y="463.50"></text></g><g><title>lock_extent_bits (404 samples, 0.02%)</title><rect x="14.6901%" y="469" width="0.0168%" height="15" fill="rgb(248,211,50)" fg:x="353091" fg:w="404"/><text x="14.9401%" y="479.50"></text></g><g><title>__set_extent_bit (379 samples, 0.02%)</title><rect x="14.6911%" y="453" width="0.0158%" height="15" fill="rgb(217,13,45)" fg:x="353116" fg:w="379"/><text x="14.9411%" y="463.50"></text></g><g><title>btrfs_truncate_inode_items (21,966 samples, 0.91%)</title><rect x="13.7991%" y="485" width="0.9139%" height="15" fill="rgb(211,216,49)" fg:x="331674" fg:w="21966"/><text x="14.0491%" y="495.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (298 samples, 0.01%)</title><rect x="14.7351%" y="421" width="0.0124%" height="15" fill="rgb(221,58,53)" fg:x="354174" fg:w="298"/><text x="14.9851%" y="431.50"></text></g><g><title>btrfs_block_rsv_refill (976 samples, 0.04%)</title><rect x="14.7193%" y="469" width="0.0406%" height="15" fill="rgb(220,112,41)" fg:x="353792" fg:w="976"/><text x="14.9693%" y="479.50"></text></g><g><title>btrfs_reserve_metadata_bytes (817 samples, 0.03%)</title><rect x="14.7259%" y="453" width="0.0340%" height="15" fill="rgb(236,38,28)" fg:x="353951" fg:w="817"/><text x="14.9759%" y="463.50"></text></g><g><title>__reserve_bytes (789 samples, 0.03%)</title><rect x="14.7270%" y="437" width="0.0328%" height="15" fill="rgb(227,195,22)" fg:x="353979" fg:w="789"/><text x="14.9770%" y="447.50"></text></g><g><title>calc_available_free_space.isra.0 (296 samples, 0.01%)</title><rect x="14.7475%" y="421" width="0.0123%" height="15" fill="rgb(214,55,33)" fg:x="354472" fg:w="296"/><text x="14.9975%" y="431.50"></text></g><g><title>evict_refill_and_join (1,632 samples, 0.07%)</title><rect x="14.7129%" y="485" width="0.0679%" height="15" fill="rgb(248,80,13)" fg:x="353640" fg:w="1632"/><text x="14.9629%" y="495.50"></text></g><g><title>start_transaction (481 samples, 0.02%)</title><rect x="14.7608%" y="469" width="0.0200%" height="15" fill="rgb(238,52,6)" fg:x="354791" fg:w="481"/><text x="15.0108%" y="479.50"></text></g><g><title>btrfs_evict_inode (58,082 samples, 2.42%)</title><rect x="12.3795%" y="501" width="2.4165%" height="15" fill="rgb(224,198,47)" fg:x="297553" fg:w="58082"/><text x="12.6295%" y="511.50">bt..</text></g><g><title>evict (58,453 samples, 2.43%)</title><rect x="12.3682%" y="517" width="2.4319%" height="15" fill="rgb(233,171,20)" fg:x="297282" fg:w="58453"/><text x="12.6182%" y="527.50">ev..</text></g><g><title>_raw_spin_lock (320 samples, 0.01%)</title><rect x="14.8358%" y="485" width="0.0133%" height="15" fill="rgb(241,30,25)" fg:x="356593" fg:w="320"/><text x="15.0858%" y="495.50"></text></g><g><title>__list_del_entry_valid (470 samples, 0.02%)</title><rect x="14.8731%" y="437" width="0.0196%" height="15" fill="rgb(207,171,38)" fg:x="357490" fg:w="470"/><text x="15.1231%" y="447.50"></text></g><g><title>_raw_spin_lock (270 samples, 0.01%)</title><rect x="14.8927%" y="437" width="0.0112%" height="15" fill="rgb(234,70,1)" fg:x="357960" fg:w="270"/><text x="15.1427%" y="447.50"></text></g><g><title>d_lru_del (1,937 samples, 0.08%)</title><rect x="14.8538%" y="469" width="0.0806%" height="15" fill="rgb(232,178,18)" fg:x="357026" fg:w="1937"/><text x="15.1038%" y="479.50"></text></g><g><title>list_lru_del (1,889 samples, 0.08%)</title><rect x="14.8558%" y="453" width="0.0786%" height="15" fill="rgb(241,78,40)" fg:x="357074" fg:w="1889"/><text x="15.1058%" y="463.50"></text></g><g><title>mem_cgroup_from_obj (728 samples, 0.03%)</title><rect x="14.9041%" y="437" width="0.0303%" height="15" fill="rgb(222,35,25)" fg:x="358235" fg:w="728"/><text x="15.1541%" y="447.50"></text></g><g><title>d_walk (2,969 samples, 0.12%)</title><rect x="14.8138%" y="501" width="0.1235%" height="15" fill="rgb(207,92,16)" fg:x="356065" fg:w="2969"/><text x="15.0638%" y="511.50"></text></g><g><title>select_collect (2,116 samples, 0.09%)</title><rect x="14.8493%" y="485" width="0.0880%" height="15" fill="rgb(216,59,51)" fg:x="356918" fg:w="2116"/><text x="15.0993%" y="495.50"></text></g><g><title>___d_drop (1,254 samples, 0.05%)</title><rect x="14.9465%" y="469" width="0.0522%" height="15" fill="rgb(213,80,28)" fg:x="359254" fg:w="1254"/><text x="15.1965%" y="479.50"></text></g><g><title>call_rcu (820 samples, 0.03%)</title><rect x="15.0059%" y="469" width="0.0341%" height="15" fill="rgb(220,93,7)" fg:x="360683" fg:w="820"/><text x="15.2559%" y="479.50"></text></g><g><title>rcu_segcblist_enqueue (436 samples, 0.02%)</title><rect x="15.0219%" y="453" width="0.0181%" height="15" fill="rgb(225,24,44)" fg:x="361067" fg:w="436"/><text x="15.2719%" y="463.50"></text></g><g><title>__dentry_kill (2,417 samples, 0.10%)</title><rect x="14.9412%" y="485" width="0.1006%" height="15" fill="rgb(243,74,40)" fg:x="359126" fg:w="2417"/><text x="15.1912%" y="495.50"></text></g><g><title>__dput_to_list (285 samples, 0.01%)</title><rect x="15.0417%" y="485" width="0.0119%" height="15" fill="rgb(228,39,7)" fg:x="361543" fg:w="285"/><text x="15.2917%" y="495.50"></text></g><g><title>shrink_dcache_parent (6,413 samples, 0.27%)</title><rect x="14.8114%" y="517" width="0.2668%" height="15" fill="rgb(227,79,8)" fg:x="356008" fg:w="6413"/><text x="15.0614%" y="527.50"></text></g><g><title>shrink_dentry_list (3,387 samples, 0.14%)</title><rect x="14.9373%" y="501" width="0.1409%" height="15" fill="rgb(236,58,11)" fg:x="359034" fg:w="3387"/><text x="15.1873%" y="511.50"></text></g><g><title>do_rmdir (106,528 samples, 4.43%)</title><rect x="10.6475%" y="549" width="4.4320%" height="15" fill="rgb(249,63,35)" fg:x="255923" fg:w="106528"/><text x="10.8975%" y="559.50">do_rm..</text></g><g><title>vfs_rmdir.part.0 (104,276 samples, 4.34%)</title><rect x="10.7412%" y="533" width="4.3383%" height="15" fill="rgb(252,114,16)" fg:x="258175" fg:w="104276"/><text x="10.9912%" y="543.50">vfs_r..</text></g><g><title>_raw_spin_lock (313 samples, 0.01%)</title><rect x="15.2643%" y="469" width="0.0130%" height="15" fill="rgb(254,151,24)" fg:x="366893" fg:w="313"/><text x="15.5143%" y="479.50"></text></g><g><title>__lookup_hash (3,709 samples, 0.15%)</title><rect x="15.1242%" y="533" width="0.1543%" height="15" fill="rgb(253,54,39)" fg:x="363525" fg:w="3709"/><text x="15.3742%" y="543.50"></text></g><g><title>lookup_dcache (3,600 samples, 0.15%)</title><rect x="15.1287%" y="517" width="0.1498%" height="15" fill="rgb(243,25,45)" fg:x="363634" fg:w="3600"/><text x="15.3787%" y="527.50"></text></g><g><title>d_lookup (3,443 samples, 0.14%)</title><rect x="15.1353%" y="501" width="0.1432%" height="15" fill="rgb(234,134,9)" fg:x="363791" fg:w="3443"/><text x="15.3853%" y="511.50"></text></g><g><title>__d_lookup (3,204 samples, 0.13%)</title><rect x="15.1452%" y="485" width="0.1333%" height="15" fill="rgb(227,166,31)" fg:x="364030" fg:w="3204"/><text x="15.3952%" y="495.50"></text></g><g><title>call_rcu (1,271 samples, 0.05%)</title><rect x="15.2788%" y="533" width="0.0529%" height="15" fill="rgb(245,143,41)" fg:x="367242" fg:w="1271"/><text x="15.5288%" y="543.50"></text></g><g><title>rcu_segcblist_enqueue (457 samples, 0.02%)</title><rect x="15.3127%" y="517" width="0.0190%" height="15" fill="rgb(238,181,32)" fg:x="368056" fg:w="457"/><text x="15.5627%" y="527.50"></text></g><g><title>__srcu_read_lock (742 samples, 0.03%)</title><rect x="15.3985%" y="469" width="0.0309%" height="15" fill="rgb(224,113,18)" fg:x="370119" fg:w="742"/><text x="15.6485%" y="479.50"></text></g><g><title>fsnotify_destroy_marks (1,490 samples, 0.06%)</title><rect x="15.3758%" y="501" width="0.0620%" height="15" fill="rgb(240,229,28)" fg:x="369572" fg:w="1490"/><text x="15.6258%" y="511.50"></text></g><g><title>fsnotify_grab_connector (1,175 samples, 0.05%)</title><rect x="15.3889%" y="485" width="0.0489%" height="15" fill="rgb(250,185,3)" fg:x="369887" fg:w="1175"/><text x="15.6389%" y="495.50"></text></g><g><title>__destroy_inode (3,248 samples, 0.14%)</title><rect x="15.3352%" y="517" width="0.1351%" height="15" fill="rgb(212,59,25)" fg:x="368597" fg:w="3248"/><text x="15.5852%" y="527.50"></text></g><g><title>security_inode_free (608 samples, 0.03%)</title><rect x="15.4450%" y="501" width="0.0253%" height="15" fill="rgb(221,87,20)" fg:x="371237" fg:w="608"/><text x="15.6950%" y="511.50"></text></g><g><title>_raw_spin_lock (349 samples, 0.01%)</title><rect x="15.4837%" y="501" width="0.0145%" height="15" fill="rgb(213,74,28)" fg:x="372167" fg:w="349"/><text x="15.7337%" y="511.50"></text></g><g><title>memset_erms (456 samples, 0.02%)</title><rect x="15.5842%" y="453" width="0.0190%" height="15" fill="rgb(224,132,34)" fg:x="374583" fg:w="456"/><text x="15.8342%" y="463.50"></text></g><g><title>alloc_extent_map (2,440 samples, 0.10%)</title><rect x="15.5243%" y="485" width="0.1015%" height="15" fill="rgb(222,101,24)" fg:x="373141" fg:w="2440"/><text x="15.7743%" y="495.50"></text></g><g><title>kmem_cache_alloc (2,142 samples, 0.09%)</title><rect x="15.5367%" y="469" width="0.0891%" height="15" fill="rgb(254,142,4)" fg:x="373439" fg:w="2142"/><text x="15.7867%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (542 samples, 0.02%)</title><rect x="15.6032%" y="453" width="0.0225%" height="15" fill="rgb(230,229,49)" fg:x="375039" fg:w="542"/><text x="15.8532%" y="463.50"></text></g><g><title>free_extent_map (356 samples, 0.01%)</title><rect x="15.6258%" y="485" width="0.0148%" height="15" fill="rgb(238,70,47)" fg:x="375582" fg:w="356"/><text x="15.8758%" y="495.50"></text></g><g><title>kmem_cache_free (1,231 samples, 0.05%)</title><rect x="15.6406%" y="485" width="0.0512%" height="15" fill="rgb(231,160,17)" fg:x="375938" fg:w="1231"/><text x="15.8906%" y="495.50"></text></g><g><title>btrfs_drop_extent_cache (4,725 samples, 0.20%)</title><rect x="15.4986%" y="501" width="0.1966%" height="15" fill="rgb(218,68,53)" fg:x="372524" fg:w="4725"/><text x="15.7486%" y="511.50"></text></g><g><title>alloc_extent_state (821 samples, 0.03%)</title><rect x="15.7314%" y="453" width="0.0342%" height="15" fill="rgb(236,111,10)" fg:x="378120" fg:w="821"/><text x="15.9814%" y="463.50"></text></g><g><title>kmem_cache_alloc (727 samples, 0.03%)</title><rect x="15.7353%" y="437" width="0.0302%" height="15" fill="rgb(224,34,41)" fg:x="378214" fg:w="727"/><text x="15.9853%" y="447.50"></text></g><g><title>__clear_extent_bit (1,777 samples, 0.07%)</title><rect x="15.7175%" y="469" width="0.0739%" height="15" fill="rgb(241,118,19)" fg:x="377786" fg:w="1777"/><text x="15.9675%" y="479.50"></text></g><g><title>kmem_cache_free (460 samples, 0.02%)</title><rect x="15.7723%" y="453" width="0.0191%" height="15" fill="rgb(238,129,25)" fg:x="379103" fg:w="460"/><text x="16.0223%" y="463.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (2,316 samples, 0.10%)</title><rect x="15.6952%" y="501" width="0.0964%" height="15" fill="rgb(238,22,31)" fg:x="377249" fg:w="2316"/><text x="15.9452%" y="511.50"></text></g><g><title>clear_extent_bit (1,826 samples, 0.08%)</title><rect x="15.7156%" y="485" width="0.0760%" height="15" fill="rgb(222,174,48)" fg:x="377739" fg:w="1826"/><text x="15.9656%" y="495.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (511 samples, 0.02%)</title><rect x="15.7915%" y="501" width="0.0213%" height="15" fill="rgb(206,152,40)" fg:x="379565" fg:w="511"/><text x="16.0415%" y="511.50"></text></g><g><title>_raw_spin_lock (244 samples, 0.01%)</title><rect x="15.8510%" y="453" width="0.0102%" height="15" fill="rgb(218,99,54)" fg:x="380995" fg:w="244"/><text x="16.1010%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,184 samples, 0.05%)</title><rect x="15.8749%" y="437" width="0.0493%" height="15" fill="rgb(220,174,26)" fg:x="381570" fg:w="1184"/><text x="16.1249%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (402 samples, 0.02%)</title><rect x="15.9075%" y="421" width="0.0167%" height="15" fill="rgb(245,116,9)" fg:x="382352" fg:w="402"/><text x="16.1575%" y="431.50"></text></g><g><title>alloc_extent_state (1,516 samples, 0.06%)</title><rect x="15.8612%" y="453" width="0.0631%" height="15" fill="rgb(209,72,35)" fg:x="381239" fg:w="1516"/><text x="16.1112%" y="463.50"></text></g><g><title>__clear_extent_bit (2,950 samples, 0.12%)</title><rect x="15.8354%" y="469" width="0.1227%" height="15" fill="rgb(226,126,21)" fg:x="380620" fg:w="2950"/><text x="16.0854%" y="479.50"></text></g><g><title>kmem_cache_free (601 samples, 0.03%)</title><rect x="15.9331%" y="453" width="0.0250%" height="15" fill="rgb(227,192,1)" fg:x="382969" fg:w="601"/><text x="16.1831%" y="463.50"></text></g><g><title>clear_record_extent_bits (3,186 samples, 0.13%)</title><rect x="15.8256%" y="485" width="0.1326%" height="15" fill="rgb(237,180,29)" fg:x="380385" fg:w="3186"/><text x="16.0756%" y="495.50"></text></g><g><title>ulist_init (333 samples, 0.01%)</title><rect x="15.9582%" y="485" width="0.0139%" height="15" fill="rgb(230,197,35)" fg:x="383571" fg:w="333"/><text x="16.2082%" y="495.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (4,042 samples, 0.17%)</title><rect x="15.8128%" y="501" width="0.1682%" height="15" fill="rgb(246,193,31)" fg:x="380076" fg:w="4042"/><text x="16.0628%" y="511.50"></text></g><g><title>btrfs_destroy_inode (15,830 samples, 0.66%)</title><rect x="15.4703%" y="517" width="0.6586%" height="15" fill="rgb(241,36,4)" fg:x="371845" fg:w="15830"/><text x="15.7203%" y="527.50"></text></g><g><title>rb_erase (3,557 samples, 0.15%)</title><rect x="15.9809%" y="501" width="0.1480%" height="15" fill="rgb(241,130,17)" fg:x="384118" fg:w="3557"/><text x="16.2309%" y="511.50"></text></g><g><title>destroy_inode (19,557 samples, 0.81%)</title><rect x="15.3317%" y="533" width="0.8137%" height="15" fill="rgb(206,137,32)" fg:x="368513" fg:w="19557"/><text x="15.5817%" y="543.50"></text></g><g><title>btrfs_put_root (395 samples, 0.02%)</title><rect x="16.1289%" y="517" width="0.0164%" height="15" fill="rgb(237,228,51)" fg:x="387675" fg:w="395"/><text x="16.3789%" y="527.50"></text></g><g><title>down_write (510 samples, 0.02%)</title><rect x="16.1454%" y="533" width="0.0212%" height="15" fill="rgb(243,6,42)" fg:x="388070" fg:w="510"/><text x="16.3954%" y="543.50"></text></g><g><title>_cond_resched (364 samples, 0.02%)</title><rect x="16.1986%" y="517" width="0.0151%" height="15" fill="rgb(251,74,28)" fg:x="389350" fg:w="364"/><text x="16.4486%" y="527.50"></text></g><g><title>btrfs_dentry_delete (844 samples, 0.04%)</title><rect x="16.2139%" y="517" width="0.0351%" height="15" fill="rgb(218,20,49)" fg:x="389717" fg:w="844"/><text x="16.4639%" y="527.50"></text></g><g><title>lockref_put_or_lock (811 samples, 0.03%)</title><rect x="16.2490%" y="517" width="0.0337%" height="15" fill="rgb(238,28,14)" fg:x="390561" fg:w="811"/><text x="16.4990%" y="527.50"></text></g><g><title>dput (2,834 samples, 0.12%)</title><rect x="16.1666%" y="533" width="0.1179%" height="15" fill="rgb(229,40,46)" fg:x="388580" fg:w="2834"/><text x="16.4166%" y="543.50"></text></g><g><title>__list_del_entry_valid (779 samples, 0.03%)</title><rect x="16.3082%" y="517" width="0.0324%" height="15" fill="rgb(244,195,20)" fg:x="391985" fg:w="779"/><text x="16.5582%" y="527.50"></text></g><g><title>_raw_spin_lock (765 samples, 0.03%)</title><rect x="16.3477%" y="501" width="0.0318%" height="15" fill="rgb(253,56,35)" fg:x="392934" fg:w="765"/><text x="16.5977%" y="511.50"></text></g><g><title>__remove_inode_hash (937 samples, 0.04%)</title><rect x="16.3407%" y="517" width="0.0390%" height="15" fill="rgb(210,149,44)" fg:x="392764" fg:w="937"/><text x="16.5907%" y="527.50"></text></g><g><title>_raw_spin_lock (877 samples, 0.04%)</title><rect x="16.3796%" y="517" width="0.0365%" height="15" fill="rgb(240,135,12)" fg:x="393701" fg:w="877"/><text x="16.6296%" y="527.50"></text></g><g><title>btrfs_put_transaction (486 samples, 0.02%)</title><rect x="16.5997%" y="485" width="0.0202%" height="15" fill="rgb(251,24,50)" fg:x="398990" fg:w="486"/><text x="16.8497%" y="495.50"></text></g><g><title>_raw_spin_lock (2,973 samples, 0.12%)</title><rect x="16.6981%" y="453" width="0.1237%" height="15" fill="rgb(243,200,47)" fg:x="401356" fg:w="2973"/><text x="16.9481%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,051 samples, 0.04%)</title><rect x="16.7781%" y="437" width="0.0437%" height="15" fill="rgb(224,166,26)" fg:x="403278" fg:w="1051"/><text x="17.0281%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (4,939 samples, 0.21%)</title><rect x="16.6263%" y="485" width="0.2055%" height="15" fill="rgb(233,0,47)" fg:x="399629" fg:w="4939"/><text x="16.8763%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (4,676 samples, 0.19%)</title><rect x="16.6372%" y="469" width="0.1945%" height="15" fill="rgb(253,80,5)" fg:x="399892" fg:w="4676"/><text x="16.8872%" y="479.50"></text></g><g><title>__btrfs_end_transaction (10,254 samples, 0.43%)</title><rect x="16.4692%" y="501" width="0.4266%" height="15" fill="rgb(214,133,25)" fg:x="395854" fg:w="10254"/><text x="16.7192%" y="511.50"></text></g><g><title>kmem_cache_free (1,540 samples, 0.06%)</title><rect x="16.8318%" y="485" width="0.0641%" height="15" fill="rgb(209,27,14)" fg:x="404568" fg:w="1540"/><text x="17.0818%" y="495.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (259 samples, 0.01%)</title><rect x="16.8850%" y="469" width="0.0108%" height="15" fill="rgb(219,102,51)" fg:x="405849" fg:w="259"/><text x="17.1350%" y="479.50"></text></g><g><title>_raw_spin_lock (1,052 samples, 0.04%)</title><rect x="16.9246%" y="485" width="0.0438%" height="15" fill="rgb(237,18,16)" fg:x="406800" fg:w="1052"/><text x="17.1746%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (565 samples, 0.02%)</title><rect x="16.9449%" y="469" width="0.0235%" height="15" fill="rgb(241,85,17)" fg:x="407287" fg:w="565"/><text x="17.1949%" y="479.50"></text></g><g><title>mutex_lock (948 samples, 0.04%)</title><rect x="16.9684%" y="485" width="0.0394%" height="15" fill="rgb(236,90,42)" fg:x="407853" fg:w="948"/><text x="17.2184%" y="495.50"></text></g><g><title>__radix_tree_delete (344 samples, 0.01%)</title><rect x="17.0199%" y="469" width="0.0143%" height="15" fill="rgb(249,57,21)" fg:x="409091" fg:w="344"/><text x="17.2699%" y="479.50"></text></g><g><title>__radix_tree_lookup (2,373 samples, 0.10%)</title><rect x="17.0342%" y="469" width="0.0987%" height="15" fill="rgb(243,12,36)" fg:x="409435" fg:w="2373"/><text x="17.2842%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (5,828 samples, 0.24%)</title><rect x="16.8958%" y="501" width="0.2425%" height="15" fill="rgb(253,128,47)" fg:x="406108" fg:w="5828"/><text x="17.1458%" y="511.50"></text></g><g><title>radix_tree_delete_item (2,913 samples, 0.12%)</title><rect x="17.0171%" y="485" width="0.1212%" height="15" fill="rgb(207,33,20)" fg:x="409023" fg:w="2913"/><text x="17.2671%" y="495.50"></text></g><g><title>_raw_write_lock (302 samples, 0.01%)</title><rect x="17.1473%" y="501" width="0.0126%" height="15" fill="rgb(233,215,35)" fg:x="412152" fg:w="302"/><text x="17.3973%" y="511.50"></text></g><g><title>__radix_tree_lookup (288 samples, 0.01%)</title><rect x="17.1825%" y="485" width="0.0120%" height="15" fill="rgb(249,188,52)" fg:x="412999" fg:w="288"/><text x="17.4325%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (825 samples, 0.03%)</title><rect x="17.1606%" y="501" width="0.0343%" height="15" fill="rgb(225,12,32)" fg:x="412471" fg:w="825"/><text x="17.4106%" y="511.50"></text></g><g><title>btrfs_find_space_info (556 samples, 0.02%)</title><rect x="17.2058%" y="485" width="0.0231%" height="15" fill="rgb(247,98,14)" fg:x="413559" fg:w="556"/><text x="17.4558%" y="495.50"></text></g><g><title>btrfs_alloc_block_rsv (1,922 samples, 0.08%)</title><rect x="17.1949%" y="501" width="0.0800%" height="15" fill="rgb(247,219,48)" fg:x="413296" fg:w="1922"/><text x="17.4449%" y="511.50"></text></g><g><title>kmem_cache_alloc_trace (1,103 samples, 0.05%)</title><rect x="17.2289%" y="485" width="0.0459%" height="15" fill="rgb(253,60,48)" fg:x="414115" fg:w="1103"/><text x="17.4789%" y="495.50"></text></g><g><title>btrfs_balance_delayed_items (607 samples, 0.03%)</title><rect x="17.2859%" y="485" width="0.0253%" height="15" fill="rgb(245,15,52)" fg:x="415485" fg:w="607"/><text x="17.5359%" y="495.50"></text></g><g><title>try_to_wake_up (598 samples, 0.02%)</title><rect x="17.3272%" y="453" width="0.0249%" height="15" fill="rgb(220,133,28)" fg:x="416477" fg:w="598"/><text x="17.5772%" y="463.50"></text></g><g><title>__queue_work (934 samples, 0.04%)</title><rect x="17.3133%" y="469" width="0.0389%" height="15" fill="rgb(217,180,4)" fg:x="416142" fg:w="934"/><text x="17.5633%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (1,872 samples, 0.08%)</title><rect x="17.2748%" y="501" width="0.0779%" height="15" fill="rgb(251,24,1)" fg:x="415218" fg:w="1872"/><text x="17.5248%" y="511.50"></text></g><g><title>queue_work_on (961 samples, 0.04%)</title><rect x="17.3127%" y="485" width="0.0400%" height="15" fill="rgb(212,185,49)" fg:x="416129" fg:w="961"/><text x="17.5627%" y="495.50"></text></g><g><title>btrfs_create_pending_block_groups (316 samples, 0.01%)</title><rect x="17.4370%" y="469" width="0.0131%" height="15" fill="rgb(215,175,22)" fg:x="419115" fg:w="316"/><text x="17.6870%" y="479.50"></text></g><g><title>__btrfs_end_transaction (3,012 samples, 0.13%)</title><rect x="17.3709%" y="485" width="0.1253%" height="15" fill="rgb(250,205,14)" fg:x="417528" fg:w="3012"/><text x="17.6209%" y="495.50"></text></g><g><title>kmem_cache_free (720 samples, 0.03%)</title><rect x="17.4663%" y="469" width="0.0300%" height="15" fill="rgb(225,211,22)" fg:x="419820" fg:w="720"/><text x="17.7163%" y="479.50"></text></g><g><title>__list_del_entry_valid (531 samples, 0.02%)</title><rect x="17.5432%" y="469" width="0.0221%" height="15" fill="rgb(251,179,42)" fg:x="421668" fg:w="531"/><text x="17.7932%" y="479.50"></text></g><g><title>_raw_spin_lock (382 samples, 0.02%)</title><rect x="17.5661%" y="469" width="0.0159%" height="15" fill="rgb(208,216,51)" fg:x="422218" fg:w="382"/><text x="17.8161%" y="479.50"></text></g><g><title>__schedule (258 samples, 0.01%)</title><rect x="17.5954%" y="437" width="0.0107%" height="15" fill="rgb(235,36,11)" fg:x="422923" fg:w="258"/><text x="17.8454%" y="447.50"></text></g><g><title>_cond_resched (321 samples, 0.01%)</title><rect x="17.5939%" y="453" width="0.0134%" height="15" fill="rgb(213,189,28)" fg:x="422887" fg:w="321"/><text x="17.8439%" y="463.50"></text></g><g><title>mutex_lock (601 samples, 0.03%)</title><rect x="17.5825%" y="469" width="0.0250%" height="15" fill="rgb(227,203,42)" fg:x="422612" fg:w="601"/><text x="17.8325%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,905 samples, 0.12%)</title><rect x="17.4963%" y="485" width="0.1209%" height="15" fill="rgb(244,72,36)" fg:x="420540" fg:w="2905"/><text x="17.7463%" y="495.50"></text></g><g><title>_find_next_bit.constprop.0 (409 samples, 0.02%)</title><rect x="17.7702%" y="389" width="0.0170%" height="15" fill="rgb(213,53,17)" fg:x="427124" fg:w="409"/><text x="18.0202%" y="399.50"></text></g><g><title>steal_from_bitmap.part.0 (500 samples, 0.02%)</title><rect x="17.7679%" y="405" width="0.0208%" height="15" fill="rgb(207,167,3)" fg:x="427069" fg:w="500"/><text x="18.0179%" y="415.50"></text></g><g><title>__btrfs_add_free_space (657 samples, 0.03%)</title><rect x="17.7641%" y="421" width="0.0273%" height="15" fill="rgb(216,98,30)" fg:x="426978" fg:w="657"/><text x="18.0141%" y="431.50"></text></g><g><title>btrfs_free_tree_block (969 samples, 0.04%)</title><rect x="17.7639%" y="437" width="0.0403%" height="15" fill="rgb(236,123,15)" fg:x="426973" fg:w="969"/><text x="18.0139%" y="447.50"></text></g><g><title>btrfs_del_leaf (1,122 samples, 0.05%)</title><rect x="17.7634%" y="453" width="0.0467%" height="15" fill="rgb(248,81,50)" fg:x="426962" fg:w="1122"/><text x="18.0134%" y="463.50"></text></g><g><title>btrfs_get_32 (516 samples, 0.02%)</title><rect x="17.8101%" y="453" width="0.0215%" height="15" fill="rgb(214,120,4)" fg:x="428084" fg:w="516"/><text x="18.0601%" y="463.50"></text></g><g><title>btrfs_get_token_32 (8,137 samples, 0.34%)</title><rect x="17.8316%" y="453" width="0.3385%" height="15" fill="rgb(208,179,34)" fg:x="428600" fg:w="8137"/><text x="18.0816%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (1,153 samples, 0.05%)</title><rect x="18.1222%" y="437" width="0.0480%" height="15" fill="rgb(227,140,7)" fg:x="435584" fg:w="1153"/><text x="18.3722%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (622 samples, 0.03%)</title><rect x="18.1701%" y="453" width="0.0259%" height="15" fill="rgb(214,22,6)" fg:x="436737" fg:w="622"/><text x="18.4201%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (339 samples, 0.01%)</title><rect x="18.1819%" y="437" width="0.0141%" height="15" fill="rgb(207,137,27)" fg:x="437020" fg:w="339"/><text x="18.4319%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (873 samples, 0.04%)</title><rect x="18.4039%" y="437" width="0.0363%" height="15" fill="rgb(210,8,46)" fg:x="442357" fg:w="873"/><text x="18.6539%" y="447.50"></text></g><g><title>btrfs_set_token_32 (5,843 samples, 0.24%)</title><rect x="18.1972%" y="453" width="0.2431%" height="15" fill="rgb(240,16,54)" fg:x="437388" fg:w="5843"/><text x="18.4472%" y="463.50"></text></g><g><title>leaf_space_used (549 samples, 0.02%)</title><rect x="18.4412%" y="453" width="0.0228%" height="15" fill="rgb(211,209,29)" fg:x="443252" fg:w="549"/><text x="18.6912%" y="463.50"></text></g><g><title>btrfs_get_32 (418 samples, 0.02%)</title><rect x="18.4466%" y="437" width="0.0174%" height="15" fill="rgb(226,228,24)" fg:x="443383" fg:w="418"/><text x="18.6966%" y="447.50"></text></g><g><title>memcpy_extent_buffer (1,229 samples, 0.05%)</title><rect x="18.4640%" y="453" width="0.0511%" height="15" fill="rgb(222,84,9)" fg:x="443801" fg:w="1229"/><text x="18.7140%" y="463.50"></text></g><g><title>memmove (869 samples, 0.04%)</title><rect x="18.4790%" y="437" width="0.0362%" height="15" fill="rgb(234,203,30)" fg:x="444161" fg:w="869"/><text x="18.7290%" y="447.50"></text></g><g><title>copy_pages (1,125 samples, 0.05%)</title><rect x="18.5463%" y="437" width="0.0468%" height="15" fill="rgb(238,109,14)" fg:x="445778" fg:w="1125"/><text x="18.7963%" y="447.50"></text></g><g><title>memmove_extent_buffer (10,001 samples, 0.42%)</title><rect x="18.5151%" y="453" width="0.4161%" height="15" fill="rgb(233,206,34)" fg:x="445030" fg:w="10001"/><text x="18.7651%" y="463.50"></text></g><g><title>memmove (8,128 samples, 0.34%)</title><rect x="18.5931%" y="437" width="0.3382%" height="15" fill="rgb(220,167,47)" fg:x="446903" fg:w="8128"/><text x="18.8431%" y="447.50"></text></g><g><title>__push_leaf_left (356 samples, 0.01%)</title><rect x="18.9328%" y="437" width="0.0148%" height="15" fill="rgb(238,105,10)" fg:x="455069" fg:w="356"/><text x="19.1828%" y="447.50"></text></g><g><title>push_leaf_left (563 samples, 0.02%)</title><rect x="18.9312%" y="453" width="0.0234%" height="15" fill="rgb(213,227,17)" fg:x="455031" fg:w="563"/><text x="19.1812%" y="463.50"></text></g><g><title>push_leaf_right (426 samples, 0.02%)</title><rect x="18.9547%" y="453" width="0.0177%" height="15" fill="rgb(217,132,38)" fg:x="455594" fg:w="426"/><text x="19.2047%" y="463.50"></text></g><g><title>btrfs_del_items (31,419 samples, 1.31%)</title><rect x="17.6673%" y="469" width="1.3072%" height="15" fill="rgb(242,146,4)" fg:x="424652" fg:w="31419"/><text x="17.9173%" y="479.50"></text></g><g><title>_raw_spin_lock (1,537 samples, 0.06%)</title><rect x="18.9939%" y="437" width="0.0639%" height="15" fill="rgb(212,61,9)" fg:x="456538" fg:w="1537"/><text x="19.2439%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (563 samples, 0.02%)</title><rect x="19.0344%" y="421" width="0.0234%" height="15" fill="rgb(247,126,22)" fg:x="457512" fg:w="563"/><text x="19.2844%" y="431.50"></text></g><g><title>btrfs_block_rsv_release (1,978 samples, 0.08%)</title><rect x="18.9805%" y="453" width="0.0823%" height="15" fill="rgb(220,196,2)" fg:x="456215" fg:w="1978"/><text x="19.2305%" y="463.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (2,338 samples, 0.10%)</title><rect x="18.9745%" y="469" width="0.0973%" height="15" fill="rgb(208,46,4)" fg:x="456071" fg:w="2338"/><text x="19.2245%" y="479.50"></text></g><g><title>btrfs_get_32 (323 samples, 0.01%)</title><rect x="19.0718%" y="469" width="0.0134%" height="15" fill="rgb(252,104,46)" fg:x="458409" fg:w="323"/><text x="19.3218%" y="479.50"></text></g><g><title>_raw_read_lock (666 samples, 0.03%)</title><rect x="19.2421%" y="405" width="0.0277%" height="15" fill="rgb(237,152,48)" fg:x="462504" fg:w="666"/><text x="19.4921%" y="415.50"></text></g><g><title>finish_wait (3,265 samples, 0.14%)</title><rect x="19.2721%" y="405" width="0.1358%" height="15" fill="rgb(221,59,37)" fg:x="463223" fg:w="3265"/><text x="19.5221%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (3,131 samples, 0.13%)</title><rect x="19.2776%" y="389" width="0.1303%" height="15" fill="rgb(209,202,51)" fg:x="463357" fg:w="3131"/><text x="19.5276%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,964 samples, 0.12%)</title><rect x="19.2846%" y="373" width="0.1233%" height="15" fill="rgb(228,81,30)" fg:x="463524" fg:w="2964"/><text x="19.5346%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (7,840 samples, 0.33%)</title><rect x="19.4413%" y="389" width="0.3262%" height="15" fill="rgb(227,42,39)" fg:x="467290" fg:w="7840"/><text x="19.6913%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,467 samples, 0.31%)</title><rect x="19.4568%" y="373" width="0.3107%" height="15" fill="rgb(221,26,2)" fg:x="467663" fg:w="7467"/><text x="19.7068%" y="383.50"></text></g><g><title>prepare_to_wait_event (8,779 samples, 0.37%)</title><rect x="19.4083%" y="405" width="0.3652%" height="15" fill="rgb(254,61,31)" fg:x="466499" fg:w="8779"/><text x="19.6583%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,948 samples, 0.29%)</title><rect x="19.8979%" y="389" width="0.2891%" height="15" fill="rgb(222,173,38)" fg:x="478267" fg:w="6948"/><text x="20.1479%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (9,938 samples, 0.41%)</title><rect x="19.7736%" y="405" width="0.4135%" height="15" fill="rgb(218,50,12)" fg:x="475278" fg:w="9938"/><text x="20.0236%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (294 samples, 0.01%)</title><rect x="20.2077%" y="373" width="0.0122%" height="15" fill="rgb(223,88,40)" fg:x="485712" fg:w="294"/><text x="20.4577%" y="383.50"></text></g><g><title>update_curr (509 samples, 0.02%)</title><rect x="20.2500%" y="341" width="0.0212%" height="15" fill="rgb(237,54,19)" fg:x="486729" fg:w="509"/><text x="20.5000%" y="351.50"></text></g><g><title>dequeue_entity (1,422 samples, 0.06%)</title><rect x="20.2312%" y="357" width="0.0592%" height="15" fill="rgb(251,129,25)" fg:x="486278" fg:w="1422"/><text x="20.4812%" y="367.50"></text></g><g><title>update_load_avg (462 samples, 0.02%)</title><rect x="20.2712%" y="341" width="0.0192%" height="15" fill="rgb(238,97,19)" fg:x="487238" fg:w="462"/><text x="20.5212%" y="351.50"></text></g><g><title>dequeue_task_fair (1,731 samples, 0.07%)</title><rect x="20.2233%" y="373" width="0.0720%" height="15" fill="rgb(240,169,18)" fg:x="486088" fg:w="1731"/><text x="20.4733%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (2,368 samples, 0.10%)</title><rect x="20.3079%" y="357" width="0.0985%" height="15" fill="rgb(230,187,49)" fg:x="488120" fg:w="2368"/><text x="20.5579%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,289 samples, 0.10%)</title><rect x="20.3112%" y="341" width="0.0952%" height="15" fill="rgb(209,44,26)" fg:x="488199" fg:w="2289"/><text x="20.5612%" y="351.50"></text></g><g><title>native_write_msr (2,250 samples, 0.09%)</title><rect x="20.3128%" y="325" width="0.0936%" height="15" fill="rgb(244,0,6)" fg:x="488238" fg:w="2250"/><text x="20.5628%" y="335.50"></text></g><g><title>finish_task_switch (2,767 samples, 0.12%)</title><rect x="20.2953%" y="373" width="0.1151%" height="15" fill="rgb(248,18,21)" fg:x="487819" fg:w="2767"/><text x="20.5453%" y="383.50"></text></g><g><title>pick_next_task_fair (298 samples, 0.01%)</title><rect x="20.4106%" y="373" width="0.0124%" height="15" fill="rgb(245,180,19)" fg:x="490589" fg:w="298"/><text x="20.6606%" y="383.50"></text></g><g><title>pick_next_task_idle (277 samples, 0.01%)</title><rect x="20.4230%" y="373" width="0.0115%" height="15" fill="rgb(252,118,36)" fg:x="490887" fg:w="277"/><text x="20.6730%" y="383.50"></text></g><g><title>psi_task_change (1,287 samples, 0.05%)</title><rect x="20.4345%" y="373" width="0.0535%" height="15" fill="rgb(210,224,19)" fg:x="491164" fg:w="1287"/><text x="20.6845%" y="383.50"></text></g><g><title>psi_group_change (1,092 samples, 0.05%)</title><rect x="20.4426%" y="357" width="0.0454%" height="15" fill="rgb(218,30,24)" fg:x="491359" fg:w="1092"/><text x="20.6926%" y="367.50"></text></g><g><title>__schedule (7,523 samples, 0.31%)</title><rect x="20.1907%" y="389" width="0.3130%" height="15" fill="rgb(219,75,50)" fg:x="485304" fg:w="7523"/><text x="20.4407%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (31,022 samples, 1.29%)</title><rect x="19.2135%" y="421" width="1.2906%" height="15" fill="rgb(234,72,50)" fg:x="461815" fg:w="31022"/><text x="19.4635%" y="431.50"></text></g><g><title>schedule (7,621 samples, 0.32%)</title><rect x="20.1871%" y="405" width="0.3171%" height="15" fill="rgb(219,100,48)" fg:x="485216" fg:w="7621"/><text x="20.4371%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (32,263 samples, 1.34%)</title><rect x="19.2073%" y="437" width="1.3423%" height="15" fill="rgb(253,5,41)" fg:x="461666" fg:w="32263"/><text x="19.4573%" y="447.50"></text></g><g><title>btrfs_root_node (1,091 samples, 0.05%)</title><rect x="20.5042%" y="421" width="0.0454%" height="15" fill="rgb(247,181,11)" fg:x="492838" fg:w="1091"/><text x="20.7542%" y="431.50"></text></g><g><title>prepare_to_wait_event (248 samples, 0.01%)</title><rect x="20.5572%" y="421" width="0.0103%" height="15" fill="rgb(222,223,25)" fg:x="494113" fg:w="248"/><text x="20.8072%" y="431.50"></text></g><g><title>dequeue_entity (603 samples, 0.03%)</title><rect x="20.5850%" y="373" width="0.0251%" height="15" fill="rgb(214,198,28)" fg:x="494780" fg:w="603"/><text x="20.8350%" y="383.50"></text></g><g><title>dequeue_task_fair (721 samples, 0.03%)</title><rect x="20.5823%" y="389" width="0.0300%" height="15" fill="rgb(230,46,43)" fg:x="494716" fg:w="721"/><text x="20.8323%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (1,066 samples, 0.04%)</title><rect x="20.6175%" y="373" width="0.0444%" height="15" fill="rgb(233,65,53)" fg:x="495562" fg:w="1066"/><text x="20.8675%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,044 samples, 0.04%)</title><rect x="20.6184%" y="357" width="0.0434%" height="15" fill="rgb(221,121,27)" fg:x="495584" fg:w="1044"/><text x="20.8684%" y="367.50"></text></g><g><title>native_write_msr (1,031 samples, 0.04%)</title><rect x="20.6189%" y="341" width="0.0429%" height="15" fill="rgb(247,70,47)" fg:x="495597" fg:w="1031"/><text x="20.8689%" y="351.50"></text></g><g><title>finish_task_switch (1,244 samples, 0.05%)</title><rect x="20.6123%" y="389" width="0.0518%" height="15" fill="rgb(228,85,35)" fg:x="495437" fg:w="1244"/><text x="20.8623%" y="399.50"></text></g><g><title>psi_task_change (506 samples, 0.02%)</title><rect x="20.6724%" y="389" width="0.0211%" height="15" fill="rgb(209,50,18)" fg:x="496883" fg:w="506"/><text x="20.9224%" y="399.50"></text></g><g><title>psi_group_change (430 samples, 0.02%)</title><rect x="20.6756%" y="373" width="0.0179%" height="15" fill="rgb(250,19,35)" fg:x="496959" fg:w="430"/><text x="20.9256%" y="383.50"></text></g><g><title>__schedule (3,177 samples, 0.13%)</title><rect x="20.5691%" y="405" width="0.1322%" height="15" fill="rgb(253,107,29)" fg:x="494398" fg:w="3177"/><text x="20.8191%" y="415.50"></text></g><g><title>__btrfs_tree_lock (3,647 samples, 0.15%)</title><rect x="20.5496%" y="437" width="0.1517%" height="15" fill="rgb(252,179,29)" fg:x="493929" fg:w="3647"/><text x="20.7996%" y="447.50"></text></g><g><title>schedule (3,215 samples, 0.13%)</title><rect x="20.5675%" y="421" width="0.1338%" height="15" fill="rgb(238,194,6)" fg:x="494361" fg:w="3215"/><text x="20.8175%" y="431.50"></text></g><g><title>alloc_extent_buffer (321 samples, 0.01%)</title><rect x="20.7173%" y="373" width="0.0134%" height="15" fill="rgb(238,164,29)" fg:x="497962" fg:w="321"/><text x="20.9673%" y="383.50"></text></g><g><title>btrfs_reserve_extent (327 samples, 0.01%)</title><rect x="20.7394%" y="373" width="0.0136%" height="15" fill="rgb(224,25,9)" fg:x="498492" fg:w="327"/><text x="20.9894%" y="383.50"></text></g><g><title>find_free_extent (287 samples, 0.01%)</title><rect x="20.7411%" y="357" width="0.0119%" height="15" fill="rgb(244,153,23)" fg:x="498532" fg:w="287"/><text x="20.9911%" y="367.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,134 samples, 0.05%)</title><rect x="20.7161%" y="405" width="0.0472%" height="15" fill="rgb(212,203,14)" fg:x="497932" fg:w="1134"/><text x="20.9661%" y="415.50"></text></g><g><title>btrfs_alloc_tree_block (1,130 samples, 0.05%)</title><rect x="20.7163%" y="389" width="0.0470%" height="15" fill="rgb(220,164,20)" fg:x="497936" fg:w="1130"/><text x="20.9663%" y="399.50"></text></g><g><title>btrfs_add_delayed_tree_ref (271 samples, 0.01%)</title><rect x="20.7646%" y="389" width="0.0113%" height="15" fill="rgb(222,203,48)" fg:x="499097" fg:w="271"/><text x="21.0146%" y="399.50"></text></g><g><title>btrfs_free_tree_block (680 samples, 0.03%)</title><rect x="20.7633%" y="405" width="0.0283%" height="15" fill="rgb(215,159,22)" fg:x="499066" fg:w="680"/><text x="21.0133%" y="415.50"></text></g><g><title>__btrfs_cow_block (2,393 samples, 0.10%)</title><rect x="20.7149%" y="421" width="0.0996%" height="15" fill="rgb(216,183,47)" fg:x="497903" fg:w="2393"/><text x="20.9649%" y="431.50"></text></g><g><title>btrfs_cow_block (2,412 samples, 0.10%)</title><rect x="20.7146%" y="437" width="0.1003%" height="15" fill="rgb(229,195,25)" fg:x="497896" fg:w="2412"/><text x="20.9646%" y="447.50"></text></g><g><title>_cond_resched (285 samples, 0.01%)</title><rect x="20.8610%" y="405" width="0.0119%" height="15" fill="rgb(224,132,51)" fg:x="501414" fg:w="285"/><text x="21.1110%" y="415.50"></text></g><g><title>_raw_write_lock (726 samples, 0.03%)</title><rect x="20.8769%" y="405" width="0.0302%" height="15" fill="rgb(240,63,7)" fg:x="501798" fg:w="726"/><text x="21.1269%" y="415.50"></text></g><g><title>finish_wait (4,760 samples, 0.20%)</title><rect x="20.9074%" y="405" width="0.1980%" height="15" fill="rgb(249,182,41)" fg:x="502531" fg:w="4760"/><text x="21.1574%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,464 samples, 0.19%)</title><rect x="20.9197%" y="389" width="0.1857%" height="15" fill="rgb(243,47,26)" fg:x="502827" fg:w="4464"/><text x="21.1697%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,193 samples, 0.17%)</title><rect x="20.9310%" y="373" width="0.1744%" height="15" fill="rgb(233,48,2)" fg:x="503098" fg:w="4193"/><text x="21.1810%" y="383.50"></text></g><g><title>__list_add_valid (396 samples, 0.02%)</title><rect x="21.1573%" y="389" width="0.0165%" height="15" fill="rgb(244,165,34)" fg:x="508536" fg:w="396"/><text x="21.4073%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (12,879 samples, 0.54%)</title><rect x="21.1737%" y="389" width="0.5358%" height="15" fill="rgb(207,89,7)" fg:x="508932" fg:w="12879"/><text x="21.4237%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,966 samples, 0.50%)</title><rect x="21.2117%" y="373" width="0.4978%" height="15" fill="rgb(244,117,36)" fg:x="509845" fg:w="11966"/><text x="21.4617%" y="383.50"></text></g><g><title>_raw_spin_unlock_irqrestore (368 samples, 0.02%)</title><rect x="21.7096%" y="389" width="0.0153%" height="15" fill="rgb(226,144,34)" fg:x="521811" fg:w="368"/><text x="21.9596%" y="399.50"></text></g><g><title>prepare_to_wait_event (14,834 samples, 0.62%)</title><rect x="21.1078%" y="405" width="0.6172%" height="15" fill="rgb(213,23,19)" fg:x="507346" fg:w="14834"/><text x="21.3578%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (18,962 samples, 0.79%)</title><rect x="21.7249%" y="405" width="0.7889%" height="15" fill="rgb(217,75,12)" fg:x="522180" fg:w="18962"/><text x="21.9749%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,459 samples, 0.35%)</title><rect x="22.1619%" y="389" width="0.3519%" height="15" fill="rgb(224,159,17)" fg:x="532683" fg:w="8459"/><text x="22.4119%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (526 samples, 0.02%)</title><rect x="22.5573%" y="373" width="0.0219%" height="15" fill="rgb(217,118,1)" fg:x="542187" fg:w="526"/><text x="22.8073%" y="383.50"></text></g><g><title>update_cfs_group (313 samples, 0.01%)</title><rect x="22.6294%" y="341" width="0.0130%" height="15" fill="rgb(232,180,48)" fg:x="543920" fg:w="313"/><text x="22.8794%" y="351.50"></text></g><g><title>update_curr (1,060 samples, 0.04%)</title><rect x="22.6424%" y="341" width="0.0441%" height="15" fill="rgb(230,27,33)" fg:x="544233" fg:w="1060"/><text x="22.8924%" y="351.50"></text></g><g><title>__update_load_avg_cfs_rq (270 samples, 0.01%)</title><rect x="22.7014%" y="325" width="0.0112%" height="15" fill="rgb(205,31,21)" fg:x="545652" fg:w="270"/><text x="22.9514%" y="335.50"></text></g><g><title>__update_load_avg_se (361 samples, 0.02%)</title><rect x="22.7127%" y="325" width="0.0150%" height="15" fill="rgb(253,59,4)" fg:x="545922" fg:w="361"/><text x="22.9627%" y="335.50"></text></g><g><title>dequeue_entity (3,035 samples, 0.13%)</title><rect x="22.6021%" y="357" width="0.1263%" height="15" fill="rgb(224,201,9)" fg:x="543265" fg:w="3035"/><text x="22.8521%" y="367.50"></text></g><g><title>update_load_avg (1,007 samples, 0.04%)</title><rect x="22.6865%" y="341" width="0.0419%" height="15" fill="rgb(229,206,30)" fg:x="545293" fg:w="1007"/><text x="22.9365%" y="351.50"></text></g><g><title>dequeue_task_fair (3,610 samples, 0.15%)</title><rect x="22.5877%" y="373" width="0.1502%" height="15" fill="rgb(212,67,47)" fg:x="542919" fg:w="3610"/><text x="22.8377%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (5,368 samples, 0.22%)</title><rect x="22.7663%" y="357" width="0.2233%" height="15" fill="rgb(211,96,50)" fg:x="547211" fg:w="5368"/><text x="23.0163%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,156 samples, 0.21%)</title><rect x="22.7751%" y="341" width="0.2145%" height="15" fill="rgb(252,114,18)" fg:x="547423" fg:w="5156"/><text x="23.0251%" y="351.50"></text></g><g><title>native_write_msr (5,077 samples, 0.21%)</title><rect x="22.7784%" y="325" width="0.2112%" height="15" fill="rgb(223,58,37)" fg:x="547502" fg:w="5077"/><text x="23.0284%" y="335.50"></text></g><g><title>finish_task_switch (6,335 samples, 0.26%)</title><rect x="22.7379%" y="373" width="0.2636%" height="15" fill="rgb(237,70,4)" fg:x="546529" fg:w="6335"/><text x="22.9879%" y="383.50"></text></g><g><title>newidle_balance (346 samples, 0.01%)</title><rect x="23.0095%" y="357" width="0.0144%" height="15" fill="rgb(244,85,46)" fg:x="553057" fg:w="346"/><text x="23.2595%" y="367.50"></text></g><g><title>pick_next_task_fair (695 samples, 0.03%)</title><rect x="23.0019%" y="373" width="0.0289%" height="15" fill="rgb(223,39,52)" fg:x="552873" fg:w="695"/><text x="23.2519%" y="383.50"></text></g><g><title>__update_idle_core (528 samples, 0.02%)</title><rect x="23.0341%" y="357" width="0.0220%" height="15" fill="rgb(218,200,14)" fg:x="553648" fg:w="528"/><text x="23.2841%" y="367.50"></text></g><g><title>pick_next_task_idle (613 samples, 0.03%)</title><rect x="23.0308%" y="373" width="0.0255%" height="15" fill="rgb(208,171,16)" fg:x="553568" fg:w="613"/><text x="23.2808%" y="383.50"></text></g><g><title>psi_task_change (2,801 samples, 0.12%)</title><rect x="23.0563%" y="373" width="0.1165%" height="15" fill="rgb(234,200,18)" fg:x="554181" fg:w="2801"/><text x="23.3063%" y="383.50"></text></g><g><title>psi_group_change (2,429 samples, 0.10%)</title><rect x="23.0718%" y="357" width="0.1011%" height="15" fill="rgb(228,45,11)" fg:x="554553" fg:w="2429"/><text x="23.3218%" y="367.50"></text></g><g><title>record_times (621 samples, 0.03%)</title><rect x="23.1470%" y="341" width="0.0258%" height="15" fill="rgb(237,182,11)" fg:x="556361" fg:w="621"/><text x="23.3970%" y="351.50"></text></g><g><title>sched_clock_cpu (406 samples, 0.02%)</title><rect x="23.1559%" y="325" width="0.0169%" height="15" fill="rgb(241,175,49)" fg:x="556576" fg:w="406"/><text x="23.4059%" y="335.50"></text></g><g><title>sched_clock (362 samples, 0.02%)</title><rect x="23.1578%" y="309" width="0.0151%" height="15" fill="rgb(247,38,35)" fg:x="556620" fg:w="362"/><text x="23.4078%" y="319.50"></text></g><g><title>native_sched_clock (342 samples, 0.01%)</title><rect x="23.1586%" y="293" width="0.0142%" height="15" fill="rgb(228,39,49)" fg:x="556640" fg:w="342"/><text x="23.4086%" y="303.50"></text></g><g><title>psi_task_switch (301 samples, 0.01%)</title><rect x="23.1728%" y="373" width="0.0125%" height="15" fill="rgb(226,101,26)" fg:x="556982" fg:w="301"/><text x="23.4228%" y="383.50"></text></g><g><title>__schedule (16,474 samples, 0.69%)</title><rect x="22.5221%" y="389" width="0.6854%" height="15" fill="rgb(206,141,19)" fg:x="541342" fg:w="16474"/><text x="22.7721%" y="399.50"></text></g><g><title>update_rq_clock (272 samples, 0.01%)</title><rect x="23.1962%" y="373" width="0.0113%" height="15" fill="rgb(211,200,13)" fg:x="557544" fg:w="272"/><text x="23.4462%" y="383.50"></text></g><g><title>__btrfs_tree_lock (57,456 samples, 2.39%)</title><rect x="20.8171%" y="421" width="2.3904%" height="15" fill="rgb(241,121,6)" fg:x="500361" fg:w="57456"/><text x="21.0671%" y="431.50">__..</text></g><g><title>schedule (16,675 samples, 0.69%)</title><rect x="22.5138%" y="405" width="0.6938%" height="15" fill="rgb(234,221,29)" fg:x="541142" fg:w="16675"/><text x="22.7638%" y="415.50"></text></g><g><title>btrfs_root_node (451 samples, 0.02%)</title><rect x="23.2076%" y="421" width="0.0188%" height="15" fill="rgb(229,136,5)" fg:x="557817" fg:w="451"/><text x="23.4576%" y="431.50"></text></g><g><title>btrfs_lock_root_node (57,961 samples, 2.41%)</title><rect x="20.8149%" y="437" width="2.4114%" height="15" fill="rgb(238,36,11)" fg:x="500308" fg:w="57961"/><text x="21.0649%" y="447.50">bt..</text></g><g><title>btrfs_set_path_blocking (420 samples, 0.02%)</title><rect x="23.2264%" y="437" width="0.0175%" height="15" fill="rgb(251,55,41)" fg:x="558269" fg:w="420"/><text x="23.4764%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (447 samples, 0.02%)</title><rect x="23.2441%" y="437" width="0.0186%" height="15" fill="rgb(242,34,40)" fg:x="558694" fg:w="447"/><text x="23.4941%" y="447.50"></text></g><g><title>_raw_write_lock (375 samples, 0.02%)</title><rect x="23.2685%" y="421" width="0.0156%" height="15" fill="rgb(215,42,17)" fg:x="559281" fg:w="375"/><text x="23.5185%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (2,803 samples, 0.12%)</title><rect x="23.2626%" y="437" width="0.1166%" height="15" fill="rgb(207,44,46)" fg:x="559141" fg:w="2803"/><text x="23.5126%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (2,288 samples, 0.10%)</title><rect x="23.2841%" y="421" width="0.0952%" height="15" fill="rgb(211,206,28)" fg:x="559656" fg:w="2288"/><text x="23.5341%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (531 samples, 0.02%)</title><rect x="23.3798%" y="437" width="0.0221%" height="15" fill="rgb(237,167,16)" fg:x="561956" fg:w="531"/><text x="23.6298%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,586 samples, 0.19%)</title><rect x="23.4019%" y="437" width="0.1908%" height="15" fill="rgb(233,66,6)" fg:x="562487" fg:w="4586"/><text x="23.6519%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (863 samples, 0.04%)</title><rect x="23.6227%" y="421" width="0.0359%" height="15" fill="rgb(246,123,29)" fg:x="567796" fg:w="863"/><text x="23.8727%" y="431.50"></text></g><g><title>verify_parent_transid (752 samples, 0.03%)</title><rect x="23.6274%" y="405" width="0.0313%" height="15" fill="rgb(209,62,40)" fg:x="567907" fg:w="752"/><text x="23.8774%" y="415.50"></text></g><g><title>btrfs_get_64 (844 samples, 0.04%)</title><rect x="23.6586%" y="421" width="0.0351%" height="15" fill="rgb(218,4,25)" fg:x="568659" fg:w="844"/><text x="23.9086%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,911 samples, 0.12%)</title><rect x="23.7708%" y="405" width="0.1211%" height="15" fill="rgb(253,91,49)" fg:x="571356" fg:w="2911"/><text x="24.0208%" y="415.50"></text></g><g><title>mark_page_accessed (1,239 samples, 0.05%)</title><rect x="23.9052%" y="389" width="0.0515%" height="15" fill="rgb(228,155,29)" fg:x="574586" fg:w="1239"/><text x="24.1552%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,563 samples, 0.07%)</title><rect x="23.8921%" y="405" width="0.0650%" height="15" fill="rgb(243,57,37)" fg:x="574271" fg:w="1563"/><text x="24.1421%" y="415.50"></text></g><g><title>find_extent_buffer (6,087 samples, 0.25%)</title><rect x="23.7060%" y="421" width="0.2532%" height="15" fill="rgb(244,167,17)" fg:x="569798" fg:w="6087"/><text x="23.9560%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (9,586 samples, 0.40%)</title><rect x="23.5927%" y="437" width="0.3988%" height="15" fill="rgb(207,181,38)" fg:x="567073" fg:w="9586"/><text x="23.8427%" y="447.50"></text></g><g><title>read_extent_buffer (774 samples, 0.03%)</title><rect x="23.9593%" y="421" width="0.0322%" height="15" fill="rgb(211,8,23)" fg:x="575885" fg:w="774"/><text x="24.2093%" y="431.50"></text></g><g><title>btrfs_get_64 (295 samples, 0.01%)</title><rect x="24.0080%" y="421" width="0.0123%" height="15" fill="rgb(235,11,44)" fg:x="577057" fg:w="295"/><text x="24.2580%" y="431.50"></text></g><g><title>__radix_tree_lookup (903 samples, 0.04%)</title><rect x="24.0491%" y="405" width="0.0376%" height="15" fill="rgb(248,18,52)" fg:x="578044" fg:w="903"/><text x="24.2991%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (460 samples, 0.02%)</title><rect x="24.0869%" y="405" width="0.0191%" height="15" fill="rgb(208,4,7)" fg:x="578952" fg:w="460"/><text x="24.3369%" y="415.50"></text></g><g><title>mark_page_accessed (350 samples, 0.01%)</title><rect x="24.0914%" y="389" width="0.0146%" height="15" fill="rgb(240,17,39)" fg:x="579062" fg:w="350"/><text x="24.3414%" y="399.50"></text></g><g><title>find_extent_buffer (2,079 samples, 0.09%)</title><rect x="24.0203%" y="421" width="0.0865%" height="15" fill="rgb(207,170,3)" fg:x="577352" fg:w="2079"/><text x="24.2703%" y="431.50"></text></g><g><title>reada_for_balance (2,944 samples, 0.12%)</title><rect x="23.9915%" y="437" width="0.1225%" height="15" fill="rgb(236,100,52)" fg:x="576659" fg:w="2944"/><text x="24.2415%" y="447.50"></text></g><g><title>__list_del_entry_valid (429 samples, 0.02%)</title><rect x="24.1777%" y="373" width="0.0178%" height="15" fill="rgb(246,78,51)" fg:x="581134" fg:w="429"/><text x="24.4277%" y="383.50"></text></g><g><title>_raw_spin_lock (551 samples, 0.02%)</title><rect x="24.3951%" y="357" width="0.0229%" height="15" fill="rgb(211,17,15)" fg:x="586360" fg:w="551"/><text x="24.6451%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (322 samples, 0.01%)</title><rect x="24.4046%" y="341" width="0.0134%" height="15" fill="rgb(209,59,46)" fg:x="586589" fg:w="322"/><text x="24.6546%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (690 samples, 0.03%)</title><rect x="24.4180%" y="357" width="0.0287%" height="15" fill="rgb(210,92,25)" fg:x="586911" fg:w="690"/><text x="24.6680%" y="367.50"></text></g><g><title>available_idle_cpu (583 samples, 0.02%)</title><rect x="24.5001%" y="341" width="0.0243%" height="15" fill="rgb(238,174,52)" fg:x="588885" fg:w="583"/><text x="24.7501%" y="351.50"></text></g><g><title>select_task_rq_fair (2,726 samples, 0.11%)</title><rect x="24.4507%" y="357" width="0.1134%" height="15" fill="rgb(230,73,7)" fg:x="587697" fg:w="2726"/><text x="24.7007%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (617 samples, 0.03%)</title><rect x="24.5384%" y="341" width="0.0257%" height="15" fill="rgb(243,124,40)" fg:x="589806" fg:w="617"/><text x="24.7884%" y="351.50"></text></g><g><title>update_cfs_group (254 samples, 0.01%)</title><rect x="24.6533%" y="309" width="0.0106%" height="15" fill="rgb(244,170,11)" fg:x="592566" fg:w="254"/><text x="24.9033%" y="319.50"></text></g><g><title>update_curr (314 samples, 0.01%)</title><rect x="24.6638%" y="309" width="0.0131%" height="15" fill="rgb(207,114,54)" fg:x="592820" fg:w="314"/><text x="24.9138%" y="319.50"></text></g><g><title>enqueue_entity (2,609 samples, 0.11%)</title><rect x="24.6050%" y="325" width="0.1085%" height="15" fill="rgb(205,42,20)" fg:x="591405" fg:w="2609"/><text x="24.8550%" y="335.50"></text></g><g><title>update_load_avg (880 samples, 0.04%)</title><rect x="24.6769%" y="309" width="0.0366%" height="15" fill="rgb(230,30,28)" fg:x="593134" fg:w="880"/><text x="24.9269%" y="319.50"></text></g><g><title>enqueue_task_fair (3,307 samples, 0.14%)</title><rect x="24.5837%" y="341" width="0.1376%" height="15" fill="rgb(205,73,54)" fg:x="590895" fg:w="3307"/><text x="24.8337%" y="351.50"></text></g><g><title>ttwu_do_activate (6,825 samples, 0.28%)</title><rect x="24.5733%" y="357" width="0.2839%" height="15" fill="rgb(254,227,23)" fg:x="590643" fg:w="6825"/><text x="24.8233%" y="367.50"></text></g><g><title>psi_task_change (3,262 samples, 0.14%)</title><rect x="24.7215%" y="341" width="0.1357%" height="15" fill="rgb(228,202,34)" fg:x="594206" fg:w="3262"/><text x="24.9715%" y="351.50"></text></g><g><title>psi_group_change (2,924 samples, 0.12%)</title><rect x="24.7356%" y="325" width="0.1217%" height="15" fill="rgb(222,225,37)" fg:x="594544" fg:w="2924"/><text x="24.9856%" y="335.50"></text></g><g><title>record_times (508 samples, 0.02%)</title><rect x="24.8361%" y="309" width="0.0211%" height="15" fill="rgb(221,14,54)" fg:x="596960" fg:w="508"/><text x="25.0861%" y="319.50"></text></g><g><title>sched_clock_cpu (339 samples, 0.01%)</title><rect x="24.8431%" y="293" width="0.0141%" height="15" fill="rgb(254,102,2)" fg:x="597129" fg:w="339"/><text x="25.0931%" y="303.50"></text></g><g><title>sched_clock (286 samples, 0.01%)</title><rect x="24.8453%" y="277" width="0.0119%" height="15" fill="rgb(232,104,17)" fg:x="597182" fg:w="286"/><text x="25.0953%" y="287.50"></text></g><g><title>native_sched_clock (254 samples, 0.01%)</title><rect x="24.8466%" y="261" width="0.0106%" height="15" fill="rgb(250,220,14)" fg:x="597214" fg:w="254"/><text x="25.0966%" y="271.50"></text></g><g><title>resched_curr (255 samples, 0.01%)</title><rect x="24.8728%" y="325" width="0.0106%" height="15" fill="rgb(241,158,9)" fg:x="597843" fg:w="255"/><text x="25.1228%" y="335.50"></text></g><g><title>ttwu_do_wakeup (633 samples, 0.03%)</title><rect x="24.8572%" y="357" width="0.0263%" height="15" fill="rgb(246,9,43)" fg:x="597468" fg:w="633"/><text x="25.1072%" y="367.50"></text></g><g><title>check_preempt_curr (567 samples, 0.02%)</title><rect x="24.8600%" y="341" width="0.0236%" height="15" fill="rgb(206,73,33)" fg:x="597534" fg:w="567"/><text x="25.1100%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (587 samples, 0.02%)</title><rect x="24.8835%" y="357" width="0.0244%" height="15" fill="rgb(222,79,8)" fg:x="598101" fg:w="587"/><text x="25.1335%" y="367.50"></text></g><g><title>__wake_up_common (18,674 samples, 0.78%)</title><rect x="24.1574%" y="405" width="0.7769%" height="15" fill="rgb(234,8,54)" fg:x="580647" fg:w="18674"/><text x="24.4074%" y="415.50"></text></g><g><title>autoremove_wake_function (18,250 samples, 0.76%)</title><rect x="24.1750%" y="389" width="0.7593%" height="15" fill="rgb(209,134,38)" fg:x="581071" fg:w="18250"/><text x="24.4250%" y="399.50"></text></g><g><title>try_to_wake_up (17,737 samples, 0.74%)</title><rect x="24.1964%" y="373" width="0.7379%" height="15" fill="rgb(230,127,29)" fg:x="581584" fg:w="17737"/><text x="24.4464%" y="383.50"></text></g><g><title>update_rq_clock (633 samples, 0.03%)</title><rect x="24.9080%" y="357" width="0.0263%" height="15" fill="rgb(242,44,41)" fg:x="598688" fg:w="633"/><text x="25.1580%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (2,891 samples, 0.12%)</title><rect x="24.9343%" y="405" width="0.1203%" height="15" fill="rgb(222,56,43)" fg:x="599321" fg:w="2891"/><text x="25.1843%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,724 samples, 0.11%)</title><rect x="24.9413%" y="389" width="0.1133%" height="15" fill="rgb(238,39,47)" fg:x="599488" fg:w="2724"/><text x="25.1913%" y="399.50"></text></g><g><title>__wake_up_common_lock (21,826 samples, 0.91%)</title><rect x="24.1546%" y="421" width="0.9081%" height="15" fill="rgb(226,79,43)" fg:x="580580" fg:w="21826"/><text x="24.4046%" y="431.50"></text></g><g><title>btrfs_lookup_inode (144,220 samples, 6.00%)</title><rect x="19.0852%" y="469" width="6.0002%" height="15" fill="rgb(242,105,53)" fg:x="458732" fg:w="144220"/><text x="19.3352%" y="479.50">btrfs_lo..</text></g><g><title>btrfs_search_slot (143,748 samples, 5.98%)</title><rect x="19.1048%" y="453" width="5.9805%" height="15" fill="rgb(251,132,46)" fg:x="459204" fg:w="143748"/><text x="19.3548%" y="463.50">btrfs_se..</text></g><g><title>unlock_up (23,277 samples, 0.97%)</title><rect x="24.1169%" y="437" width="0.9684%" height="15" fill="rgb(231,77,14)" fg:x="579675" fg:w="23277"/><text x="24.3669%" y="447.50"></text></g><g><title>btrfs_tree_unlock (538 samples, 0.02%)</title><rect x="25.0630%" y="421" width="0.0224%" height="15" fill="rgb(240,135,9)" fg:x="602414" fg:w="538"/><text x="25.3130%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (523 samples, 0.02%)</title><rect x="25.0854%" y="469" width="0.0218%" height="15" fill="rgb(248,109,14)" fg:x="602952" fg:w="523"/><text x="25.3354%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (304 samples, 0.01%)</title><rect x="25.0945%" y="453" width="0.0126%" height="15" fill="rgb(227,146,52)" fg:x="603171" fg:w="304"/><text x="25.3445%" y="463.50"></text></g><g><title>btrfs_release_delayed_inode (448 samples, 0.02%)</title><rect x="25.1071%" y="469" width="0.0186%" height="15" fill="rgb(232,54,3)" fg:x="603475" fg:w="448"/><text x="25.3571%" y="479.50"></text></g><g><title>select_task_rq_fair (822 samples, 0.03%)</title><rect x="25.1980%" y="389" width="0.0342%" height="15" fill="rgb(229,201,43)" fg:x="605660" fg:w="822"/><text x="25.4480%" y="399.50"></text></g><g><title>enqueue_entity (834 samples, 0.03%)</title><rect x="25.2444%" y="357" width="0.0347%" height="15" fill="rgb(252,161,33)" fg:x="606775" fg:w="834"/><text x="25.4944%" y="367.50"></text></g><g><title>update_load_avg (289 samples, 0.01%)</title><rect x="25.2671%" y="341" width="0.0120%" height="15" fill="rgb(226,146,40)" fg:x="607320" fg:w="289"/><text x="25.5171%" y="351.50"></text></g><g><title>enqueue_task_fair (1,053 samples, 0.04%)</title><rect x="25.2379%" y="373" width="0.0438%" height="15" fill="rgb(219,47,25)" fg:x="606617" fg:w="1053"/><text x="25.4879%" y="383.50"></text></g><g><title>ttwu_do_activate (2,207 samples, 0.09%)</title><rect x="25.2350%" y="389" width="0.0918%" height="15" fill="rgb(250,135,13)" fg:x="606548" fg:w="2207"/><text x="25.4850%" y="399.50"></text></g><g><title>psi_task_change (1,084 samples, 0.05%)</title><rect x="25.2817%" y="373" width="0.0451%" height="15" fill="rgb(219,229,18)" fg:x="607671" fg:w="1084"/><text x="25.5317%" y="383.50"></text></g><g><title>psi_group_change (965 samples, 0.04%)</title><rect x="25.2867%" y="357" width="0.0401%" height="15" fill="rgb(217,152,27)" fg:x="607790" fg:w="965"/><text x="25.5367%" y="367.50"></text></g><g><title>__wake_up_common (5,212 samples, 0.22%)</title><rect x="25.1339%" y="437" width="0.2168%" height="15" fill="rgb(225,71,47)" fg:x="604119" fg:w="5212"/><text x="25.3839%" y="447.50"></text></g><g><title>autoremove_wake_function (5,119 samples, 0.21%)</title><rect x="25.1378%" y="421" width="0.2130%" height="15" fill="rgb(220,139,14)" fg:x="604212" fg:w="5119"/><text x="25.3878%" y="431.50"></text></g><g><title>try_to_wake_up (4,990 samples, 0.21%)</title><rect x="25.1432%" y="405" width="0.2076%" height="15" fill="rgb(247,54,32)" fg:x="604341" fg:w="4990"/><text x="25.3932%" y="415.50"></text></g><g><title>__wake_up_common_lock (5,502 samples, 0.23%)</title><rect x="25.1332%" y="453" width="0.2289%" height="15" fill="rgb(252,131,39)" fg:x="604102" fg:w="5502"/><text x="25.3832%" y="463.50"></text></g><g><title>btrfs_tree_unlock (280 samples, 0.01%)</title><rect x="25.3622%" y="453" width="0.0116%" height="15" fill="rgb(210,108,39)" fg:x="609605" fg:w="280"/><text x="25.6122%" y="463.50"></text></g><g><title>_raw_spin_lock (405 samples, 0.02%)</title><rect x="25.4156%" y="437" width="0.0168%" height="15" fill="rgb(205,23,29)" fg:x="610890" fg:w="405"/><text x="25.6656%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,388 samples, 0.06%)</title><rect x="25.3749%" y="453" width="0.0577%" height="15" fill="rgb(246,139,46)" fg:x="609910" fg:w="1388"/><text x="25.6249%" y="463.50"></text></g><g><title>btrfs_release_path (7,788 samples, 0.32%)</title><rect x="25.1258%" y="469" width="0.3240%" height="15" fill="rgb(250,81,26)" fg:x="603923" fg:w="7788"/><text x="25.3758%" y="479.50"></text></g><g><title>release_extent_buffer (413 samples, 0.02%)</title><rect x="25.4326%" y="453" width="0.0172%" height="15" fill="rgb(214,104,7)" fg:x="611298" fg:w="413"/><text x="25.6826%" y="463.50"></text></g><g><title>__btrfs_tree_lock (250 samples, 0.01%)</title><rect x="25.4646%" y="437" width="0.0104%" height="15" fill="rgb(233,189,8)" fg:x="612067" fg:w="250"/><text x="25.7146%" y="447.50"></text></g><g><title>btrfs_lock_root_node (255 samples, 0.01%)</title><rect x="25.4646%" y="453" width="0.0106%" height="15" fill="rgb(228,141,17)" fg:x="612066" fg:w="255"/><text x="25.7146%" y="463.50"></text></g><g><title>btrfs_search_slot (880 samples, 0.04%)</title><rect x="25.4498%" y="469" width="0.0366%" height="15" fill="rgb(247,157,1)" fg:x="611711" fg:w="880"/><text x="25.6998%" y="479.50"></text></g><g><title>finish_one_item (1,167 samples, 0.05%)</title><rect x="25.4864%" y="469" width="0.0486%" height="15" fill="rgb(249,225,5)" fg:x="612591" fg:w="1167"/><text x="25.7364%" y="479.50"></text></g><g><title>__btrfs_update_delayed_inode (191,575 samples, 7.97%)</title><rect x="17.6171%" y="485" width="7.9703%" height="15" fill="rgb(242,55,13)" fg:x="423445" fg:w="191575"/><text x="17.8671%" y="495.50">__btrfs_upd..</text></g><g><title>write_extent_buffer (1,037 samples, 0.04%)</title><rect x="25.5443%" y="469" width="0.0431%" height="15" fill="rgb(230,49,50)" fg:x="613983" fg:w="1037"/><text x="25.7943%" y="479.50"></text></g><g><title>__radix_tree_lookup (252 samples, 0.01%)</title><rect x="25.6171%" y="469" width="0.0105%" height="15" fill="rgb(241,111,38)" fg:x="615732" fg:w="252"/><text x="25.8671%" y="479.50"></text></g><g><title>balance_dirty_pages_ratelimited (786 samples, 0.03%)</title><rect x="25.5952%" y="485" width="0.0327%" height="15" fill="rgb(252,155,4)" fg:x="615206" fg:w="786"/><text x="25.8452%" y="495.50"></text></g><g><title>btrfs_balance_delayed_items (408 samples, 0.02%)</title><rect x="25.6439%" y="469" width="0.0170%" height="15" fill="rgb(212,69,32)" fg:x="616377" fg:w="408"/><text x="25.8939%" y="479.50"></text></g><g><title>__queue_work (1,049 samples, 0.04%)</title><rect x="25.6636%" y="453" width="0.0436%" height="15" fill="rgb(243,107,47)" fg:x="616850" fg:w="1049"/><text x="25.9136%" y="463.50"></text></g><g><title>try_to_wake_up (733 samples, 0.03%)</title><rect x="25.6767%" y="437" width="0.0305%" height="15" fill="rgb(247,130,12)" fg:x="617166" fg:w="733"/><text x="25.9267%" y="447.50"></text></g><g><title>btrfs_btree_balance_dirty (1,900 samples, 0.08%)</title><rect x="25.6287%" y="485" width="0.0790%" height="15" fill="rgb(233,74,16)" fg:x="616011" fg:w="1900"/><text x="25.8787%" y="495.50"></text></g><g><title>queue_work_on (1,080 samples, 0.04%)</title><rect x="25.6628%" y="469" width="0.0449%" height="15" fill="rgb(208,58,18)" fg:x="616831" fg:w="1080"/><text x="25.9128%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (481 samples, 0.02%)</title><rect x="25.7169%" y="485" width="0.0200%" height="15" fill="rgb(242,225,1)" fg:x="618132" fg:w="481"/><text x="25.9669%" y="495.50"></text></g><g><title>kmem_cache_alloc (634 samples, 0.03%)</title><rect x="25.7373%" y="485" width="0.0264%" height="15" fill="rgb(249,39,40)" fg:x="618622" fg:w="634"/><text x="25.9873%" y="495.50"></text></g><g><title>kmem_cache_free (988 samples, 0.04%)</title><rect x="25.7637%" y="485" width="0.0411%" height="15" fill="rgb(207,72,44)" fg:x="619256" fg:w="988"/><text x="26.0137%" y="495.50"></text></g><g><title>mutex_lock (438 samples, 0.02%)</title><rect x="25.8048%" y="485" width="0.0182%" height="15" fill="rgb(215,193,12)" fg:x="620244" fg:w="438"/><text x="26.0548%" y="495.50"></text></g><g><title>mutex_unlock (423 samples, 0.02%)</title><rect x="25.8230%" y="485" width="0.0176%" height="15" fill="rgb(248,41,39)" fg:x="620682" fg:w="423"/><text x="26.0730%" y="495.50"></text></g><g><title>_raw_spin_lock (638 samples, 0.03%)</title><rect x="25.9053%" y="453" width="0.0265%" height="15" fill="rgb(253,85,4)" fg:x="622660" fg:w="638"/><text x="26.1553%" y="463.50"></text></g><g><title>join_transaction (1,294 samples, 0.05%)</title><rect x="25.8782%" y="469" width="0.0538%" height="15" fill="rgb(243,70,31)" fg:x="622008" fg:w="1294"/><text x="26.1282%" y="479.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (207,118 samples, 8.62%)</title><rect x="17.3527%" y="501" width="8.6170%" height="15" fill="rgb(253,195,26)" fg:x="417090" fg:w="207118"/><text x="17.6027%" y="511.50">btrfs_commit..</text></g><g><title>start_transaction (3,101 samples, 0.13%)</title><rect x="25.8407%" y="485" width="0.1290%" height="15" fill="rgb(243,42,11)" fg:x="621107" fg:w="3101"/><text x="26.0907%" y="495.50"></text></g><g><title>kmem_cache_alloc (906 samples, 0.04%)</title><rect x="25.9320%" y="469" width="0.0377%" height="15" fill="rgb(239,66,17)" fg:x="623302" fg:w="906"/><text x="26.1820%" y="479.50"></text></g><g><title>btrfs_get_32 (592 samples, 0.02%)</title><rect x="26.0250%" y="469" width="0.0246%" height="15" fill="rgb(217,132,21)" fg:x="625538" fg:w="592"/><text x="26.2750%" y="479.50"></text></g><g><title>btrfs_get_token_32 (325 samples, 0.01%)</title><rect x="26.0497%" y="469" width="0.0135%" height="15" fill="rgb(252,202,21)" fg:x="626130" fg:w="325"/><text x="26.2997%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (670 samples, 0.03%)</title><rect x="26.0632%" y="469" width="0.0279%" height="15" fill="rgb(233,98,36)" fg:x="626455" fg:w="670"/><text x="26.3132%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (343 samples, 0.01%)</title><rect x="26.0768%" y="453" width="0.0143%" height="15" fill="rgb(216,153,54)" fg:x="626782" fg:w="343"/><text x="26.3268%" y="463.50"></text></g><g><title>leaf_space_used (684 samples, 0.03%)</title><rect x="26.1010%" y="469" width="0.0285%" height="15" fill="rgb(250,99,7)" fg:x="627363" fg:w="684"/><text x="26.3510%" y="479.50"></text></g><g><title>btrfs_get_32 (478 samples, 0.02%)</title><rect x="26.1095%" y="453" width="0.0199%" height="15" fill="rgb(207,56,50)" fg:x="627569" fg:w="478"/><text x="26.3595%" y="463.50"></text></g><g><title>memcpy_extent_buffer (487 samples, 0.02%)</title><rect x="26.1294%" y="469" width="0.0203%" height="15" fill="rgb(244,61,34)" fg:x="628047" fg:w="487"/><text x="26.3794%" y="479.50"></text></g><g><title>btrfs_del_items (4,280 samples, 0.18%)</title><rect x="25.9825%" y="485" width="0.1781%" height="15" fill="rgb(241,50,38)" fg:x="624516" fg:w="4280"/><text x="26.2325%" y="495.50"></text></g><g><title>memmove_extent_buffer (262 samples, 0.01%)</title><rect x="26.1497%" y="469" width="0.0109%" height="15" fill="rgb(212,166,30)" fg:x="628534" fg:w="262"/><text x="26.3997%" y="479.50"></text></g><g><title>__task_rq_lock (403 samples, 0.02%)</title><rect x="26.3537%" y="389" width="0.0168%" height="15" fill="rgb(249,127,32)" fg:x="633437" fg:w="403"/><text x="26.6037%" y="399.50"></text></g><g><title>_raw_spin_lock (392 samples, 0.02%)</title><rect x="26.3541%" y="373" width="0.0163%" height="15" fill="rgb(209,103,0)" fg:x="633448" fg:w="392"/><text x="26.6041%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (384 samples, 0.02%)</title><rect x="26.3545%" y="357" width="0.0160%" height="15" fill="rgb(238,209,51)" fg:x="633456" fg:w="384"/><text x="26.6045%" y="367.50"></text></g><g><title>select_task_rq_fair (885 samples, 0.04%)</title><rect x="26.3869%" y="389" width="0.0368%" height="15" fill="rgb(237,56,23)" fg:x="634236" fg:w="885"/><text x="26.6369%" y="399.50"></text></g><g><title>enqueue_entity (924 samples, 0.04%)</title><rect x="26.4384%" y="357" width="0.0384%" height="15" fill="rgb(215,153,46)" fg:x="635474" fg:w="924"/><text x="26.6884%" y="367.50"></text></g><g><title>update_load_avg (371 samples, 0.02%)</title><rect x="26.4614%" y="341" width="0.0154%" height="15" fill="rgb(224,49,31)" fg:x="636027" fg:w="371"/><text x="26.7114%" y="351.50"></text></g><g><title>enqueue_task_fair (1,157 samples, 0.05%)</title><rect x="26.4294%" y="373" width="0.0481%" height="15" fill="rgb(250,18,42)" fg:x="635258" fg:w="1157"/><text x="26.6794%" y="383.50"></text></g><g><title>ttwu_do_activate (2,353 samples, 0.10%)</title><rect x="26.4260%" y="389" width="0.0979%" height="15" fill="rgb(215,176,39)" fg:x="635176" fg:w="2353"/><text x="26.6760%" y="399.50"></text></g><g><title>psi_task_change (1,114 samples, 0.05%)</title><rect x="26.4776%" y="373" width="0.0463%" height="15" fill="rgb(223,77,29)" fg:x="636415" fg:w="1114"/><text x="26.7276%" y="383.50"></text></g><g><title>psi_group_change (975 samples, 0.04%)</title><rect x="26.4834%" y="357" width="0.0406%" height="15" fill="rgb(234,94,52)" fg:x="636554" fg:w="975"/><text x="26.7334%" y="367.50"></text></g><g><title>ttwu_do_wakeup (245 samples, 0.01%)</title><rect x="26.5239%" y="389" width="0.0102%" height="15" fill="rgb(220,154,50)" fg:x="637529" fg:w="245"/><text x="26.7739%" y="399.50"></text></g><g><title>__wake_up_common (9,094 samples, 0.38%)</title><rect x="26.1728%" y="437" width="0.3783%" height="15" fill="rgb(212,11,10)" fg:x="629089" fg:w="9094"/><text x="26.4228%" y="447.50"></text></g><g><title>autoremove_wake_function (8,924 samples, 0.37%)</title><rect x="26.1799%" y="421" width="0.3713%" height="15" fill="rgb(205,166,19)" fg:x="629259" fg:w="8924"/><text x="26.4299%" y="431.50"></text></g><g><title>try_to_wake_up (8,814 samples, 0.37%)</title><rect x="26.1844%" y="405" width="0.3667%" height="15" fill="rgb(244,198,16)" fg:x="629369" fg:w="8814"/><text x="26.4344%" y="415.50"></text></g><g><title>__wake_up_common_lock (9,382 samples, 0.39%)</title><rect x="26.1711%" y="453" width="0.3903%" height="15" fill="rgb(219,69,12)" fg:x="629048" fg:w="9382"/><text x="26.4211%" y="463.50"></text></g><g><title>btrfs_tree_unlock (811 samples, 0.03%)</title><rect x="26.5614%" y="453" width="0.0337%" height="15" fill="rgb(245,30,7)" fg:x="638431" fg:w="811"/><text x="26.8114%" y="463.50"></text></g><g><title>_raw_spin_lock (455 samples, 0.02%)</title><rect x="26.6391%" y="437" width="0.0189%" height="15" fill="rgb(218,221,48)" fg:x="640297" fg:w="455"/><text x="26.8891%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,496 samples, 0.06%)</title><rect x="26.5961%" y="453" width="0.0622%" height="15" fill="rgb(216,66,15)" fg:x="639263" fg:w="1496"/><text x="26.8461%" y="463.50"></text></g><g><title>btrfs_free_path (12,334 samples, 0.51%)</title><rect x="26.1606%" y="485" width="0.5131%" height="15" fill="rgb(226,122,50)" fg:x="628796" fg:w="12334"/><text x="26.4106%" y="495.50"></text></g><g><title>btrfs_release_path (12,308 samples, 0.51%)</title><rect x="26.1617%" y="469" width="0.5121%" height="15" fill="rgb(239,156,16)" fg:x="628822" fg:w="12308"/><text x="26.4117%" y="479.50"></text></g><g><title>release_extent_buffer (371 samples, 0.02%)</title><rect x="26.6583%" y="453" width="0.0154%" height="15" fill="rgb(224,27,38)" fg:x="640759" fg:w="371"/><text x="26.9083%" y="463.50"></text></g><g><title>_raw_read_lock (879 samples, 0.04%)</title><rect x="26.8317%" y="437" width="0.0366%" height="15" fill="rgb(224,39,27)" fg:x="644927" fg:w="879"/><text x="27.0817%" y="447.50"></text></g><g><title>__list_del_entry_valid (248 samples, 0.01%)</title><rect x="26.8739%" y="421" width="0.0103%" height="15" fill="rgb(215,92,29)" fg:x="645942" fg:w="248"/><text x="27.1239%" y="431.50"></text></g><g><title>finish_wait (5,723 samples, 0.24%)</title><rect x="26.8722%" y="437" width="0.2381%" height="15" fill="rgb(207,159,16)" fg:x="645899" fg:w="5723"/><text x="27.1222%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (5,432 samples, 0.23%)</title><rect x="26.8843%" y="421" width="0.2260%" height="15" fill="rgb(238,163,47)" fg:x="646190" fg:w="5432"/><text x="27.1343%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,223 samples, 0.22%)</title><rect x="26.8930%" y="405" width="0.2173%" height="15" fill="rgb(219,91,49)" fg:x="646399" fg:w="5223"/><text x="27.1430%" y="415.50"></text></g><g><title>__list_add_valid (369 samples, 0.02%)</title><rect x="27.1509%" y="421" width="0.0154%" height="15" fill="rgb(227,167,31)" fg:x="652598" fg:w="369"/><text x="27.4009%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (15,615 samples, 0.65%)</title><rect x="27.1662%" y="421" width="0.6497%" height="15" fill="rgb(234,80,54)" fg:x="652967" fg:w="15615"/><text x="27.4162%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (14,989 samples, 0.62%)</title><rect x="27.1923%" y="405" width="0.6236%" height="15" fill="rgb(212,114,2)" fg:x="653593" fg:w="14989"/><text x="27.4423%" y="415.50"></text></g><g><title>prepare_to_wait_event (17,196 samples, 0.72%)</title><rect x="27.1115%" y="437" width="0.7154%" height="15" fill="rgb(234,50,24)" fg:x="651653" fg:w="17196"/><text x="27.3615%" y="447.50"></text></g><g><title>_raw_spin_unlock_irqrestore (267 samples, 0.01%)</title><rect x="27.8159%" y="421" width="0.0111%" height="15" fill="rgb(221,68,8)" fg:x="668582" fg:w="267"/><text x="28.0659%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (10,899 samples, 0.45%)</title><rect x="27.8270%" y="437" width="0.4534%" height="15" fill="rgb(254,180,31)" fg:x="668849" fg:w="10899"/><text x="28.0770%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,744 samples, 0.32%)</title><rect x="27.9582%" y="421" width="0.3222%" height="15" fill="rgb(247,130,50)" fg:x="672004" fg:w="7744"/><text x="28.2082%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (480 samples, 0.02%)</title><rect x="28.3116%" y="405" width="0.0200%" height="15" fill="rgb(211,109,4)" fg:x="680498" fg:w="480"/><text x="28.5616%" y="415.50"></text></g><g><title>update_curr (833 samples, 0.03%)</title><rect x="28.3786%" y="373" width="0.0347%" height="15" fill="rgb(238,50,21)" fg:x="682107" fg:w="833"/><text x="28.6286%" y="383.50"></text></g><g><title>__update_load_avg_se (242 samples, 0.01%)</title><rect x="28.4312%" y="357" width="0.0101%" height="15" fill="rgb(225,57,45)" fg:x="683372" fg:w="242"/><text x="28.6812%" y="367.50"></text></g><g><title>dequeue_entity (2,213 samples, 0.09%)</title><rect x="28.3501%" y="389" width="0.0921%" height="15" fill="rgb(209,196,50)" fg:x="681423" fg:w="2213"/><text x="28.6001%" y="399.50"></text></g><g><title>update_load_avg (696 samples, 0.03%)</title><rect x="28.4132%" y="373" width="0.0290%" height="15" fill="rgb(242,140,13)" fg:x="682940" fg:w="696"/><text x="28.6632%" y="383.50"></text></g><g><title>dequeue_task_fair (2,734 samples, 0.11%)</title><rect x="28.3363%" y="405" width="0.1137%" height="15" fill="rgb(217,111,7)" fg:x="681091" fg:w="2734"/><text x="28.5863%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (4,786 samples, 0.20%)</title><rect x="28.4704%" y="389" width="0.1991%" height="15" fill="rgb(253,193,51)" fg:x="684314" fg:w="4786"/><text x="28.7204%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,673 samples, 0.19%)</title><rect x="28.4751%" y="373" width="0.1944%" height="15" fill="rgb(252,70,29)" fg:x="684427" fg:w="4673"/><text x="28.7251%" y="383.50"></text></g><g><title>native_write_msr (4,619 samples, 0.19%)</title><rect x="28.4773%" y="357" width="0.1922%" height="15" fill="rgb(232,127,12)" fg:x="684481" fg:w="4619"/><text x="28.7273%" y="367.50"></text></g><g><title>finish_task_switch (5,489 samples, 0.23%)</title><rect x="28.4500%" y="405" width="0.2284%" height="15" fill="rgb(211,180,21)" fg:x="683825" fg:w="5489"/><text x="28.7000%" y="415.50"></text></g><g><title>pick_next_task_fair (445 samples, 0.02%)</title><rect x="28.6786%" y="405" width="0.0185%" height="15" fill="rgb(229,72,13)" fg:x="689319" fg:w="445"/><text x="28.9286%" y="415.50"></text></g><g><title>__update_idle_core (378 samples, 0.02%)</title><rect x="28.7003%" y="389" width="0.0157%" height="15" fill="rgb(240,211,49)" fg:x="689840" fg:w="378"/><text x="28.9503%" y="399.50"></text></g><g><title>pick_next_task_idle (455 samples, 0.02%)</title><rect x="28.6971%" y="405" width="0.0189%" height="15" fill="rgb(219,149,40)" fg:x="689764" fg:w="455"/><text x="28.9471%" y="415.50"></text></g><g><title>psi_task_change (1,994 samples, 0.08%)</title><rect x="28.7161%" y="405" width="0.0830%" height="15" fill="rgb(210,127,46)" fg:x="690219" fg:w="1994"/><text x="28.9661%" y="415.50"></text></g><g><title>psi_group_change (1,702 samples, 0.07%)</title><rect x="28.7282%" y="389" width="0.0708%" height="15" fill="rgb(220,106,7)" fg:x="690511" fg:w="1702"/><text x="28.9782%" y="399.50"></text></g><g><title>record_times (362 samples, 0.02%)</title><rect x="28.7839%" y="373" width="0.0151%" height="15" fill="rgb(249,31,22)" fg:x="691851" fg:w="362"/><text x="29.0339%" y="383.50"></text></g><g><title>psi_task_switch (262 samples, 0.01%)</title><rect x="28.7990%" y="405" width="0.0109%" height="15" fill="rgb(253,1,49)" fg:x="692213" fg:w="262"/><text x="29.0490%" y="415.50"></text></g><g><title>__schedule (13,069 samples, 0.54%)</title><rect x="28.2849%" y="421" width="0.5437%" height="15" fill="rgb(227,144,33)" fg:x="679857" fg:w="13069"/><text x="28.5349%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (48,930 samples, 2.04%)</title><rect x="26.7930%" y="453" width="2.0357%" height="15" fill="rgb(249,163,44)" fg:x="643997" fg:w="48930"/><text x="27.0430%" y="463.50">_..</text></g><g><title>schedule (13,179 samples, 0.55%)</title><rect x="28.2804%" y="437" width="0.5483%" height="15" fill="rgb(234,15,39)" fg:x="679748" fg:w="13179"/><text x="28.5304%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (50,149 samples, 2.09%)</title><rect x="26.7832%" y="469" width="2.0864%" height="15" fill="rgb(207,66,16)" fg:x="643761" fg:w="50149"/><text x="27.0332%" y="479.50">_..</text></g><g><title>btrfs_root_node (982 samples, 0.04%)</title><rect x="28.8288%" y="453" width="0.0409%" height="15" fill="rgb(233,112,24)" fg:x="692928" fg:w="982"/><text x="29.0788%" y="463.50"></text></g><g><title>prepare_to_wait_event (454 samples, 0.02%)</title><rect x="28.8868%" y="453" width="0.0189%" height="15" fill="rgb(230,90,22)" fg:x="694324" fg:w="454"/><text x="29.1368%" y="463.50"></text></g><g><title>update_curr (322 samples, 0.01%)</title><rect x="28.9448%" y="389" width="0.0134%" height="15" fill="rgb(229,61,13)" fg:x="695718" fg:w="322"/><text x="29.1948%" y="399.50"></text></g><g><title>dequeue_entity (901 samples, 0.04%)</title><rect x="28.9327%" y="405" width="0.0375%" height="15" fill="rgb(225,57,24)" fg:x="695427" fg:w="901"/><text x="29.1827%" y="415.50"></text></g><g><title>update_load_avg (288 samples, 0.01%)</title><rect x="28.9582%" y="389" width="0.0120%" height="15" fill="rgb(208,169,48)" fg:x="696040" fg:w="288"/><text x="29.2082%" y="399.50"></text></g><g><title>dequeue_task_fair (1,066 samples, 0.04%)</title><rect x="28.9286%" y="421" width="0.0444%" height="15" fill="rgb(244,218,51)" fg:x="695327" fg:w="1066"/><text x="29.1786%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (1,999 samples, 0.08%)</title><rect x="28.9819%" y="405" width="0.0832%" height="15" fill="rgb(214,148,10)" fg:x="696610" fg:w="1999"/><text x="29.2319%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,966 samples, 0.08%)</title><rect x="28.9833%" y="389" width="0.0818%" height="15" fill="rgb(225,174,27)" fg:x="696643" fg:w="1966"/><text x="29.2333%" y="399.50"></text></g><g><title>native_write_msr (1,948 samples, 0.08%)</title><rect x="28.9841%" y="373" width="0.0810%" height="15" fill="rgb(230,96,26)" fg:x="696661" fg:w="1948"/><text x="29.2341%" y="383.50"></text></g><g><title>finish_task_switch (2,292 samples, 0.10%)</title><rect x="28.9729%" y="421" width="0.0954%" height="15" fill="rgb(232,10,30)" fg:x="696393" fg:w="2292"/><text x="29.2229%" y="431.50"></text></g><g><title>psi_task_change (822 samples, 0.03%)</title><rect x="29.0834%" y="421" width="0.0342%" height="15" fill="rgb(222,8,50)" fg:x="699048" fg:w="822"/><text x="29.3334%" y="431.50"></text></g><g><title>psi_group_change (685 samples, 0.03%)</title><rect x="29.0891%" y="405" width="0.0285%" height="15" fill="rgb(213,81,27)" fg:x="699185" fg:w="685"/><text x="29.3391%" y="415.50"></text></g><g><title>__schedule (5,302 samples, 0.22%)</title><rect x="28.9077%" y="437" width="0.2206%" height="15" fill="rgb(245,50,10)" fg:x="694826" fg:w="5302"/><text x="29.1577%" y="447.50"></text></g><g><title>__btrfs_tree_lock (6,219 samples, 0.26%)</title><rect x="28.8696%" y="469" width="0.2587%" height="15" fill="rgb(216,100,18)" fg:x="693910" fg:w="6219"/><text x="29.1196%" y="479.50"></text></g><g><title>schedule (5,350 samples, 0.22%)</title><rect x="28.9058%" y="453" width="0.2226%" height="15" fill="rgb(236,147,54)" fg:x="694779" fg:w="5350"/><text x="29.1558%" y="463.50"></text></g><g><title>_cond_resched (268 samples, 0.01%)</title><rect x="29.1904%" y="437" width="0.0111%" height="15" fill="rgb(205,143,26)" fg:x="701620" fg:w="268"/><text x="29.4404%" y="447.50"></text></g><g><title>_raw_write_lock (736 samples, 0.03%)</title><rect x="29.2046%" y="437" width="0.0306%" height="15" fill="rgb(236,26,9)" fg:x="701962" fg:w="736"/><text x="29.4546%" y="447.50"></text></g><g><title>finish_wait (4,615 samples, 0.19%)</title><rect x="29.2354%" y="437" width="0.1920%" height="15" fill="rgb(221,165,53)" fg:x="702703" fg:w="4615"/><text x="29.4854%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,359 samples, 0.18%)</title><rect x="29.2461%" y="421" width="0.1814%" height="15" fill="rgb(214,110,17)" fg:x="702959" fg:w="4359"/><text x="29.4961%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,094 samples, 0.17%)</title><rect x="29.2571%" y="405" width="0.1703%" height="15" fill="rgb(237,197,12)" fg:x="703224" fg:w="4094"/><text x="29.5071%" y="415.50"></text></g><g><title>__list_add_valid (337 samples, 0.01%)</title><rect x="29.4727%" y="421" width="0.0140%" height="15" fill="rgb(205,84,17)" fg:x="708405" fg:w="337"/><text x="29.7227%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (11,505 samples, 0.48%)</title><rect x="29.4867%" y="421" width="0.4787%" height="15" fill="rgb(237,18,45)" fg:x="708742" fg:w="11505"/><text x="29.7367%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,612 samples, 0.44%)</title><rect x="29.5238%" y="405" width="0.4415%" height="15" fill="rgb(221,87,14)" fg:x="709635" fg:w="10612"/><text x="29.7738%" y="415.50"></text></g><g><title>prepare_to_wait_event (13,177 samples, 0.55%)</title><rect x="29.4292%" y="437" width="0.5482%" height="15" fill="rgb(238,186,15)" fg:x="707361" fg:w="13177"/><text x="29.6792%" y="447.50"></text></g><g><title>_raw_spin_unlock_irqrestore (291 samples, 0.01%)</title><rect x="29.9653%" y="421" width="0.0121%" height="15" fill="rgb(208,115,11)" fg:x="720247" fg:w="291"/><text x="30.2153%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (19,015 samples, 0.79%)</title><rect x="29.9775%" y="437" width="0.7911%" height="15" fill="rgb(254,175,0)" fg:x="720538" fg:w="19015"/><text x="30.2275%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,351 samples, 0.39%)</title><rect x="30.3795%" y="421" width="0.3890%" height="15" fill="rgb(227,24,42)" fg:x="730202" fg:w="9351"/><text x="30.6295%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (488 samples, 0.02%)</title><rect x="30.8100%" y="405" width="0.0203%" height="15" fill="rgb(223,211,37)" fg:x="740548" fg:w="488"/><text x="31.0600%" y="415.50"></text></g><g><title>update_cfs_group (275 samples, 0.01%)</title><rect x="30.8755%" y="373" width="0.0114%" height="15" fill="rgb(235,49,27)" fg:x="742124" fg:w="275"/><text x="31.1255%" y="383.50"></text></g><g><title>update_curr (942 samples, 0.04%)</title><rect x="30.8870%" y="373" width="0.0392%" height="15" fill="rgb(254,97,51)" fg:x="742399" fg:w="942"/><text x="31.1370%" y="383.50"></text></g><g><title>__update_load_avg_se (392 samples, 0.02%)</title><rect x="30.9492%" y="357" width="0.0163%" height="15" fill="rgb(249,51,40)" fg:x="743895" fg:w="392"/><text x="31.1992%" y="367.50"></text></g><g><title>dequeue_entity (2,789 samples, 0.12%)</title><rect x="30.8503%" y="389" width="0.1160%" height="15" fill="rgb(210,128,45)" fg:x="741518" fg:w="2789"/><text x="31.1003%" y="399.50"></text></g><g><title>update_load_avg (966 samples, 0.04%)</title><rect x="30.9262%" y="373" width="0.0402%" height="15" fill="rgb(224,137,50)" fg:x="743341" fg:w="966"/><text x="31.1762%" y="383.50"></text></g><g><title>dequeue_task_fair (3,312 samples, 0.14%)</title><rect x="30.8380%" y="405" width="0.1378%" height="15" fill="rgb(242,15,9)" fg:x="741222" fg:w="3312"/><text x="31.0880%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (4,241 samples, 0.18%)</title><rect x="31.0022%" y="389" width="0.1764%" height="15" fill="rgb(233,187,41)" fg:x="745169" fg:w="4241"/><text x="31.2522%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,119 samples, 0.17%)</title><rect x="31.0073%" y="373" width="0.1714%" height="15" fill="rgb(227,2,29)" fg:x="745291" fg:w="4119"/><text x="31.2573%" y="383.50"></text></g><g><title>native_write_msr (4,067 samples, 0.17%)</title><rect x="31.0094%" y="357" width="0.1692%" height="15" fill="rgb(222,70,3)" fg:x="745343" fg:w="4067"/><text x="31.2594%" y="367.50"></text></g><g><title>finish_task_switch (5,120 samples, 0.21%)</title><rect x="30.9758%" y="405" width="0.2130%" height="15" fill="rgb(213,11,42)" fg:x="744534" fg:w="5120"/><text x="31.2258%" y="415.50"></text></g><g><title>newidle_balance (331 samples, 0.01%)</title><rect x="31.1965%" y="389" width="0.0138%" height="15" fill="rgb(225,150,9)" fg:x="749839" fg:w="331"/><text x="31.4465%" y="399.50"></text></g><g><title>pick_next_task_fair (657 samples, 0.03%)</title><rect x="31.1890%" y="405" width="0.0273%" height="15" fill="rgb(230,162,45)" fg:x="749658" fg:w="657"/><text x="31.4390%" y="415.50"></text></g><g><title>__update_idle_core (507 samples, 0.02%)</title><rect x="31.2194%" y="389" width="0.0211%" height="15" fill="rgb(222,14,52)" fg:x="750390" fg:w="507"/><text x="31.4694%" y="399.50"></text></g><g><title>pick_next_task_idle (585 samples, 0.02%)</title><rect x="31.2163%" y="405" width="0.0243%" height="15" fill="rgb(254,198,14)" fg:x="750315" fg:w="585"/><text x="31.4663%" y="415.50"></text></g><g><title>psi_task_change (2,527 samples, 0.11%)</title><rect x="31.2406%" y="405" width="0.1051%" height="15" fill="rgb(220,217,30)" fg:x="750900" fg:w="2527"/><text x="31.4906%" y="415.50"></text></g><g><title>psi_group_change (2,163 samples, 0.09%)</title><rect x="31.2558%" y="389" width="0.0900%" height="15" fill="rgb(215,146,41)" fg:x="751264" fg:w="2163"/><text x="31.5058%" y="399.50"></text></g><g><title>record_times (585 samples, 0.02%)</title><rect x="31.3214%" y="373" width="0.0243%" height="15" fill="rgb(217,27,36)" fg:x="752842" fg:w="585"/><text x="31.5714%" y="383.50"></text></g><g><title>sched_clock_cpu (389 samples, 0.02%)</title><rect x="31.3296%" y="357" width="0.0162%" height="15" fill="rgb(219,218,39)" fg:x="753038" fg:w="389"/><text x="31.5796%" y="367.50"></text></g><g><title>sched_clock (335 samples, 0.01%)</title><rect x="31.3318%" y="341" width="0.0139%" height="15" fill="rgb(219,4,42)" fg:x="753092" fg:w="335"/><text x="31.5818%" y="351.50"></text></g><g><title>native_sched_clock (316 samples, 0.01%)</title><rect x="31.3326%" y="325" width="0.0131%" height="15" fill="rgb(249,119,36)" fg:x="753111" fg:w="316"/><text x="31.5826%" y="335.50"></text></g><g><title>psi_task_switch (265 samples, 0.01%)</title><rect x="31.3458%" y="405" width="0.0110%" height="15" fill="rgb(209,23,33)" fg:x="753427" fg:w="265"/><text x="31.5958%" y="415.50"></text></g><g><title>__schedule (14,405 samples, 0.60%)</title><rect x="30.7780%" y="421" width="0.5993%" height="15" fill="rgb(211,10,0)" fg:x="739779" fg:w="14405"/><text x="31.0280%" y="431.50"></text></g><g><title>update_rq_clock (269 samples, 0.01%)</title><rect x="31.3661%" y="405" width="0.0112%" height="15" fill="rgb(208,99,37)" fg:x="753915" fg:w="269"/><text x="31.6161%" y="415.50"></text></g><g><title>__btrfs_tree_lock (53,820 samples, 2.24%)</title><rect x="29.1382%" y="453" width="2.2391%" height="15" fill="rgb(213,132,31)" fg:x="700365" fg:w="53820"/><text x="29.3882%" y="463.50">_..</text></g><g><title>schedule (14,632 samples, 0.61%)</title><rect x="30.7686%" y="437" width="0.6088%" height="15" fill="rgb(243,129,40)" fg:x="739553" fg:w="14632"/><text x="31.0186%" y="447.50"></text></g><g><title>btrfs_lock_root_node (54,398 samples, 2.26%)</title><rect x="29.1358%" y="469" width="2.2632%" height="15" fill="rgb(210,66,33)" fg:x="700309" fg:w="54398"/><text x="29.3858%" y="479.50">b..</text></g><g><title>btrfs_root_node (521 samples, 0.02%)</title><rect x="31.3774%" y="453" width="0.0217%" height="15" fill="rgb(209,189,4)" fg:x="754186" fg:w="521"/><text x="31.6274%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (990 samples, 0.04%)</title><rect x="31.3990%" y="469" width="0.0412%" height="15" fill="rgb(214,107,37)" fg:x="754707" fg:w="990"/><text x="31.6490%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (376 samples, 0.02%)</title><rect x="31.4246%" y="453" width="0.0156%" height="15" fill="rgb(245,88,54)" fg:x="755321" fg:w="376"/><text x="31.6746%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (589 samples, 0.02%)</title><rect x="31.4404%" y="469" width="0.0245%" height="15" fill="rgb(205,146,20)" fg:x="755702" fg:w="589"/><text x="31.6904%" y="479.50"></text></g><g><title>_raw_write_lock (588 samples, 0.02%)</title><rect x="31.4740%" y="453" width="0.0245%" height="15" fill="rgb(220,161,25)" fg:x="756510" fg:w="588"/><text x="31.7240%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (4,126 samples, 0.17%)</title><rect x="31.4649%" y="469" width="0.1717%" height="15" fill="rgb(215,152,15)" fg:x="756291" fg:w="4126"/><text x="31.7149%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (3,318 samples, 0.14%)</title><rect x="31.4985%" y="453" width="0.1380%" height="15" fill="rgb(233,192,44)" fg:x="757099" fg:w="3318"/><text x="31.7485%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (570 samples, 0.02%)</title><rect x="31.6370%" y="469" width="0.0237%" height="15" fill="rgb(240,170,46)" fg:x="760426" fg:w="570"/><text x="31.8870%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (4,282 samples, 0.18%)</title><rect x="31.6607%" y="469" width="0.1781%" height="15" fill="rgb(207,104,33)" fg:x="760996" fg:w="4282"/><text x="31.9107%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (910 samples, 0.04%)</title><rect x="31.8655%" y="453" width="0.0379%" height="15" fill="rgb(219,21,39)" fg:x="765920" fg:w="910"/><text x="32.1155%" y="463.50"></text></g><g><title>verify_parent_transid (730 samples, 0.03%)</title><rect x="31.8730%" y="437" width="0.0304%" height="15" fill="rgb(214,133,29)" fg:x="766100" fg:w="730"/><text x="32.1230%" y="447.50"></text></g><g><title>btrfs_get_64 (855 samples, 0.04%)</title><rect x="31.9034%" y="453" width="0.0356%" height="15" fill="rgb(226,93,6)" fg:x="766830" fg:w="855"/><text x="32.1534%" y="463.50"></text></g><g><title>btrfs_verify_level_key (263 samples, 0.01%)</title><rect x="31.9428%" y="453" width="0.0109%" height="15" fill="rgb(252,222,34)" fg:x="767777" fg:w="263"/><text x="32.1928%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,331 samples, 0.10%)</title><rect x="32.0415%" y="437" width="0.0970%" height="15" fill="rgb(252,92,48)" fg:x="770149" fg:w="2331"/><text x="32.2915%" y="447.50"></text></g><g><title>mark_page_accessed (866 samples, 0.04%)</title><rect x="32.1521%" y="421" width="0.0360%" height="15" fill="rgb(245,223,24)" fg:x="772808" fg:w="866"/><text x="32.4021%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,181 samples, 0.05%)</title><rect x="32.1391%" y="437" width="0.0491%" height="15" fill="rgb(205,176,3)" fg:x="772496" fg:w="1181"/><text x="32.3891%" y="447.50"></text></g><g><title>find_extent_buffer (5,674 samples, 0.24%)</title><rect x="31.9537%" y="453" width="0.2361%" height="15" fill="rgb(235,151,15)" fg:x="768040" fg:w="5674"/><text x="32.2037%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (9,376 samples, 0.39%)</title><rect x="31.8388%" y="469" width="0.3901%" height="15" fill="rgb(237,209,11)" fg:x="765278" fg:w="9376"/><text x="32.0888%" y="479.50"></text></g><g><title>read_extent_buffer (940 samples, 0.04%)</title><rect x="32.1898%" y="453" width="0.0391%" height="15" fill="rgb(243,227,24)" fg:x="773714" fg:w="940"/><text x="32.4398%" y="463.50"></text></g><g><title>__list_del_entry_valid (331 samples, 0.01%)</title><rect x="32.2798%" y="405" width="0.0138%" height="15" fill="rgb(239,193,16)" fg:x="775877" fg:w="331"/><text x="32.5298%" y="415.50"></text></g><g><title>_raw_spin_lock (514 samples, 0.02%)</title><rect x="32.3548%" y="389" width="0.0214%" height="15" fill="rgb(231,27,9)" fg:x="777679" fg:w="514"/><text x="32.6048%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (317 samples, 0.01%)</title><rect x="32.3630%" y="373" width="0.0132%" height="15" fill="rgb(219,169,10)" fg:x="777876" fg:w="317"/><text x="32.6130%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (532 samples, 0.02%)</title><rect x="32.3761%" y="389" width="0.0221%" height="15" fill="rgb(244,229,43)" fg:x="778193" fg:w="532"/><text x="32.6261%" y="399.50"></text></g><g><title>available_idle_cpu (533 samples, 0.02%)</title><rect x="32.4415%" y="373" width="0.0222%" height="15" fill="rgb(254,38,20)" fg:x="779764" fg:w="533"/><text x="32.6915%" y="383.50"></text></g><g><title>select_task_rq_fair (2,379 samples, 0.10%)</title><rect x="32.4013%" y="389" width="0.0990%" height="15" fill="rgb(250,47,30)" fg:x="778797" fg:w="2379"/><text x="32.6513%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (536 samples, 0.02%)</title><rect x="32.4779%" y="373" width="0.0223%" height="15" fill="rgb(224,124,36)" fg:x="780640" fg:w="536"/><text x="32.7279%" y="383.50"></text></g><g><title>update_curr (293 samples, 0.01%)</title><rect x="32.5885%" y="341" width="0.0122%" height="15" fill="rgb(246,68,51)" fg:x="783298" fg:w="293"/><text x="32.8385%" y="351.50"></text></g><g><title>enqueue_entity (2,329 samples, 0.10%)</title><rect x="32.5370%" y="357" width="0.0969%" height="15" fill="rgb(253,43,49)" fg:x="782059" fg:w="2329"/><text x="32.7870%" y="367.50"></text></g><g><title>update_load_avg (797 samples, 0.03%)</title><rect x="32.6007%" y="341" width="0.0332%" height="15" fill="rgb(219,54,36)" fg:x="783591" fg:w="797"/><text x="32.8507%" y="351.50"></text></g><g><title>enqueue_task_fair (2,965 samples, 0.12%)</title><rect x="32.5191%" y="373" width="0.1234%" height="15" fill="rgb(227,133,34)" fg:x="781630" fg:w="2965"/><text x="32.7691%" y="383.50"></text></g><g><title>ttwu_do_activate (5,925 samples, 0.25%)</title><rect x="32.5096%" y="389" width="0.2465%" height="15" fill="rgb(247,227,15)" fg:x="781400" fg:w="5925"/><text x="32.7596%" y="399.50"></text></g><g><title>psi_task_change (2,726 samples, 0.11%)</title><rect x="32.6427%" y="373" width="0.1134%" height="15" fill="rgb(229,96,14)" fg:x="784599" fg:w="2726"/><text x="32.8927%" y="383.50"></text></g><g><title>psi_group_change (2,454 samples, 0.10%)</title><rect x="32.6540%" y="357" width="0.1021%" height="15" fill="rgb(220,79,17)" fg:x="784871" fg:w="2454"/><text x="32.9040%" y="367.50"></text></g><g><title>record_times (400 samples, 0.02%)</title><rect x="32.7394%" y="341" width="0.0166%" height="15" fill="rgb(205,131,53)" fg:x="786925" fg:w="400"/><text x="32.9894%" y="351.50"></text></g><g><title>sched_clock_cpu (273 samples, 0.01%)</title><rect x="32.7447%" y="325" width="0.0114%" height="15" fill="rgb(209,50,29)" fg:x="787052" fg:w="273"/><text x="32.9947%" y="335.50"></text></g><g><title>ttwu_do_wakeup (527 samples, 0.02%)</title><rect x="32.7561%" y="389" width="0.0219%" height="15" fill="rgb(245,86,46)" fg:x="787325" fg:w="527"/><text x="33.0061%" y="399.50"></text></g><g><title>check_preempt_curr (464 samples, 0.02%)</title><rect x="32.7587%" y="373" width="0.0193%" height="15" fill="rgb(235,66,46)" fg:x="787388" fg:w="464"/><text x="33.0087%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (299 samples, 0.01%)</title><rect x="32.7780%" y="389" width="0.0124%" height="15" fill="rgb(232,148,31)" fg:x="787852" fg:w="299"/><text x="33.0280%" y="399.50"></text></g><g><title>__wake_up_common (13,001 samples, 0.54%)</title><rect x="32.2710%" y="437" width="0.5409%" height="15" fill="rgb(217,149,8)" fg:x="775665" fg:w="13001"/><text x="32.5210%" y="447.50"></text></g><g><title>autoremove_wake_function (12,823 samples, 0.53%)</title><rect x="32.2784%" y="421" width="0.5335%" height="15" fill="rgb(209,183,11)" fg:x="775843" fg:w="12823"/><text x="32.5284%" y="431.50"></text></g><g><title>try_to_wake_up (12,450 samples, 0.52%)</title><rect x="32.2939%" y="405" width="0.5180%" height="15" fill="rgb(208,55,20)" fg:x="776216" fg:w="12450"/><text x="32.5439%" y="415.50"></text></g><g><title>update_rq_clock (515 samples, 0.02%)</title><rect x="32.7904%" y="389" width="0.0214%" height="15" fill="rgb(218,39,14)" fg:x="788151" fg:w="515"/><text x="33.0404%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (403 samples, 0.02%)</title><rect x="32.8119%" y="437" width="0.0168%" height="15" fill="rgb(216,169,33)" fg:x="788666" fg:w="403"/><text x="33.0619%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (350 samples, 0.01%)</title><rect x="32.8141%" y="421" width="0.0146%" height="15" fill="rgb(233,80,24)" fg:x="788719" fg:w="350"/><text x="33.0641%" y="431.50"></text></g><g><title>__wake_up_common_lock (13,541 samples, 0.56%)</title><rect x="32.2698%" y="453" width="0.5634%" height="15" fill="rgb(213,179,31)" fg:x="775637" fg:w="13541"/><text x="32.5198%" y="463.50"></text></g><g><title>btrfs_search_slot (148,469 samples, 6.18%)</title><rect x="26.6737%" y="485" width="6.1769%" height="15" fill="rgb(209,19,5)" fg:x="641130" fg:w="148469"/><text x="26.9237%" y="495.50">btrfs_se..</text></g><g><title>unlock_up (14,884 samples, 0.62%)</title><rect x="32.2314%" y="469" width="0.6192%" height="15" fill="rgb(219,18,35)" fg:x="774715" fg:w="14884"/><text x="32.4814%" y="479.50"></text></g><g><title>btrfs_tree_unlock (407 samples, 0.02%)</title><rect x="32.8337%" y="453" width="0.0169%" height="15" fill="rgb(209,169,16)" fg:x="789192" fg:w="407"/><text x="33.0837%" y="463.50"></text></g><g><title>kmem_cache_alloc (830 samples, 0.03%)</title><rect x="32.8507%" y="485" width="0.0345%" height="15" fill="rgb(245,90,51)" fg:x="789599" fg:w="830"/><text x="33.1007%" y="495.50"></text></g><g><title>btrfs_del_orphan_item (166,966 samples, 6.95%)</title><rect x="25.9697%" y="501" width="6.9465%" height="15" fill="rgb(220,99,45)" fg:x="624208" fg:w="166966"/><text x="26.2197%" y="511.50">btrfs_del..</text></g><g><title>kmem_cache_free (745 samples, 0.03%)</title><rect x="32.8852%" y="485" width="0.0310%" height="15" fill="rgb(249,89,25)" fg:x="790429" fg:w="745"/><text x="33.1352%" y="495.50"></text></g><g><title>_raw_spin_lock (705 samples, 0.03%)</title><rect x="32.9416%" y="469" width="0.0293%" height="15" fill="rgb(239,193,0)" fg:x="791785" fg:w="705"/><text x="33.1916%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (267 samples, 0.01%)</title><rect x="32.9599%" y="453" width="0.0111%" height="15" fill="rgb(231,126,1)" fg:x="792223" fg:w="267"/><text x="33.2099%" y="463.50"></text></g><g><title>btrfs_free_block_rsv (1,209 samples, 0.05%)</title><rect x="32.9262%" y="501" width="0.0503%" height="15" fill="rgb(243,166,3)" fg:x="791413" fg:w="1209"/><text x="33.1762%" y="511.50"></text></g><g><title>btrfs_block_rsv_release (1,160 samples, 0.05%)</title><rect x="32.9282%" y="485" width="0.0483%" height="15" fill="rgb(223,22,34)" fg:x="791462" fg:w="1160"/><text x="33.1782%" y="495.50"></text></g><g><title>btrfs_free_io_failure_record (246 samples, 0.01%)</title><rect x="32.9765%" y="501" width="0.0102%" height="15" fill="rgb(251,52,51)" fg:x="792622" fg:w="246"/><text x="33.2265%" y="511.50"></text></g><g><title>_raw_spin_lock (375 samples, 0.02%)</title><rect x="33.1166%" y="469" width="0.0156%" height="15" fill="rgb(221,165,28)" fg:x="795991" fg:w="375"/><text x="33.3666%" y="479.50"></text></g><g><title>mutex_lock (291 samples, 0.01%)</title><rect x="33.1323%" y="469" width="0.0121%" height="15" fill="rgb(218,121,47)" fg:x="796367" fg:w="291"/><text x="33.3823%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,077 samples, 0.04%)</title><rect x="33.1077%" y="485" width="0.0448%" height="15" fill="rgb(209,120,9)" fg:x="795777" fg:w="1077"/><text x="33.3577%" y="495.50"></text></g><g><title>alloc_extent_state (1,020 samples, 0.04%)</title><rect x="33.1960%" y="469" width="0.0424%" height="15" fill="rgb(236,68,12)" fg:x="797898" fg:w="1020"/><text x="33.4460%" y="479.50"></text></g><g><title>kmem_cache_alloc (924 samples, 0.04%)</title><rect x="33.2000%" y="453" width="0.0384%" height="15" fill="rgb(225,194,26)" fg:x="797994" fg:w="924"/><text x="33.4500%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (272 samples, 0.01%)</title><rect x="33.2271%" y="437" width="0.0113%" height="15" fill="rgb(231,84,39)" fg:x="798646" fg:w="272"/><text x="33.4771%" y="447.50"></text></g><g><title>__wake_up_common (321 samples, 0.01%)</title><rect x="33.2719%" y="437" width="0.0134%" height="15" fill="rgb(210,11,45)" fg:x="799724" fg:w="321"/><text x="33.5219%" y="447.50"></text></g><g><title>__wake_up_common_lock (954 samples, 0.04%)</title><rect x="33.2608%" y="453" width="0.0397%" height="15" fill="rgb(224,54,52)" fg:x="799456" fg:w="954"/><text x="33.5108%" y="463.50"></text></g><g><title>btrfs_clear_delalloc_extent (487 samples, 0.02%)</title><rect x="33.3005%" y="453" width="0.0203%" height="15" fill="rgb(238,102,14)" fg:x="800411" fg:w="487"/><text x="33.5505%" y="463.50"></text></g><g><title>kmem_cache_free (756 samples, 0.03%)</title><rect x="33.3286%" y="453" width="0.0315%" height="15" fill="rgb(243,160,52)" fg:x="801086" fg:w="756"/><text x="33.5786%" y="463.50"></text></g><g><title>clear_state_bit (3,149 samples, 0.13%)</title><rect x="33.2388%" y="469" width="0.1310%" height="15" fill="rgb(216,114,19)" fg:x="798927" fg:w="3149"/><text x="33.4888%" y="479.50"></text></g><g><title>__clear_extent_bit (5,873 samples, 0.24%)</title><rect x="33.1525%" y="485" width="0.2443%" height="15" fill="rgb(244,166,37)" fg:x="796854" fg:w="5873"/><text x="33.4025%" y="495.50"></text></g><g><title>kmem_cache_free (487 samples, 0.02%)</title><rect x="33.3766%" y="469" width="0.0203%" height="15" fill="rgb(246,29,44)" fg:x="802240" fg:w="487"/><text x="33.6266%" y="479.50"></text></g><g><title>_find_next_bit.constprop.0 (1,137 samples, 0.05%)</title><rect x="33.5278%" y="405" width="0.0473%" height="15" fill="rgb(215,56,53)" fg:x="805875" fg:w="1137"/><text x="33.7778%" y="415.50"></text></g><g><title>steal_from_bitmap.part.0 (1,378 samples, 0.06%)</title><rect x="33.5212%" y="421" width="0.0573%" height="15" fill="rgb(217,60,2)" fg:x="805716" fg:w="1378"/><text x="33.7712%" y="431.50"></text></g><g><title>__btrfs_add_free_space (1,858 samples, 0.08%)</title><rect x="33.5125%" y="437" width="0.0773%" height="15" fill="rgb(207,26,24)" fg:x="805506" fg:w="1858"/><text x="33.7625%" y="447.50"></text></g><g><title>add_delayed_ref_head (281 samples, 0.01%)</title><rect x="33.5963%" y="421" width="0.0117%" height="15" fill="rgb(252,210,15)" fg:x="807521" fg:w="281"/><text x="33.8463%" y="431.50"></text></g><g><title>btrfs_add_delayed_tree_ref (575 samples, 0.02%)</title><rect x="33.5939%" y="437" width="0.0239%" height="15" fill="rgb(253,209,26)" fg:x="807464" fg:w="575"/><text x="33.8439%" y="447.50"></text></g><g><title>btrfs_free_tree_block (2,944 samples, 0.12%)</title><rect x="33.5116%" y="453" width="0.1225%" height="15" fill="rgb(238,170,14)" fg:x="805485" fg:w="2944"/><text x="33.7616%" y="463.50"></text></g><g><title>check_ref_cleanup (336 samples, 0.01%)</title><rect x="33.6201%" y="437" width="0.0140%" height="15" fill="rgb(216,178,15)" fg:x="808093" fg:w="336"/><text x="33.8701%" y="447.50"></text></g><g><title>__wake_up_common (326 samples, 0.01%)</title><rect x="33.6355%" y="421" width="0.0136%" height="15" fill="rgb(250,197,2)" fg:x="808464" fg:w="326"/><text x="33.8855%" y="431.50"></text></g><g><title>autoremove_wake_function (326 samples, 0.01%)</title><rect x="33.6355%" y="405" width="0.0136%" height="15" fill="rgb(212,70,42)" fg:x="808464" fg:w="326"/><text x="33.8855%" y="415.50"></text></g><g><title>try_to_wake_up (316 samples, 0.01%)</title><rect x="33.6360%" y="389" width="0.0131%" height="15" fill="rgb(227,213,9)" fg:x="808474" fg:w="316"/><text x="33.8860%" y="399.50"></text></g><g><title>__wake_up_common_lock (342 samples, 0.01%)</title><rect x="33.6353%" y="437" width="0.0142%" height="15" fill="rgb(245,99,25)" fg:x="808459" fg:w="342"/><text x="33.8853%" y="447.50"></text></g><g><title>btrfs_unlock_up_safe (372 samples, 0.02%)</title><rect x="33.6346%" y="453" width="0.0155%" height="15" fill="rgb(250,82,29)" fg:x="808442" fg:w="372"/><text x="33.8846%" y="463.50"></text></g><g><title>btrfs_del_leaf (3,545 samples, 0.15%)</title><rect x="33.5099%" y="469" width="0.1475%" height="15" fill="rgb(241,226,54)" fg:x="805444" fg:w="3545"/><text x="33.7599%" y="479.50"></text></g><g><title>btrfs_get_32 (694 samples, 0.03%)</title><rect x="33.6574%" y="469" width="0.0289%" height="15" fill="rgb(221,99,41)" fg:x="808989" fg:w="694"/><text x="33.9074%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,183 samples, 0.05%)</title><rect x="33.9648%" y="453" width="0.0492%" height="15" fill="rgb(213,90,21)" fg:x="816378" fg:w="1183"/><text x="34.2148%" y="463.50"></text></g><g><title>btrfs_get_token_32 (7,879 samples, 0.33%)</title><rect x="33.6863%" y="469" width="0.3278%" height="15" fill="rgb(205,208,24)" fg:x="809683" fg:w="7879"/><text x="33.9363%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (634 samples, 0.03%)</title><rect x="34.0141%" y="469" width="0.0264%" height="15" fill="rgb(246,31,12)" fg:x="817562" fg:w="634"/><text x="34.2641%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (268 samples, 0.01%)</title><rect x="34.0293%" y="453" width="0.0111%" height="15" fill="rgb(213,154,6)" fg:x="817928" fg:w="268"/><text x="34.2793%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (908 samples, 0.04%)</title><rect x="34.2584%" y="453" width="0.0378%" height="15" fill="rgb(222,163,29)" fg:x="823434" fg:w="908"/><text x="34.5084%" y="463.50"></text></g><g><title>btrfs_set_token_32 (6,103 samples, 0.25%)</title><rect x="34.0423%" y="469" width="0.2539%" height="15" fill="rgb(227,201,8)" fg:x="818240" fg:w="6103"/><text x="34.2923%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (244 samples, 0.01%)</title><rect x="34.3013%" y="453" width="0.0102%" height="15" fill="rgb(233,9,32)" fg:x="824465" fg:w="244"/><text x="34.5513%" y="463.50"></text></g><g><title>fixup_low_keys (643 samples, 0.03%)</title><rect x="34.2977%" y="469" width="0.0268%" height="15" fill="rgb(217,54,24)" fg:x="824380" fg:w="643"/><text x="34.5477%" y="479.50"></text></g><g><title>leaf_space_used (625 samples, 0.03%)</title><rect x="34.3253%" y="469" width="0.0260%" height="15" fill="rgb(235,192,0)" fg:x="825043" fg:w="625"/><text x="34.5753%" y="479.50"></text></g><g><title>btrfs_get_32 (474 samples, 0.02%)</title><rect x="34.3316%" y="453" width="0.0197%" height="15" fill="rgb(235,45,9)" fg:x="825194" fg:w="474"/><text x="34.5816%" y="463.50"></text></g><g><title>memcpy_extent_buffer (1,158 samples, 0.05%)</title><rect x="34.3513%" y="469" width="0.0482%" height="15" fill="rgb(246,42,40)" fg:x="825668" fg:w="1158"/><text x="34.6013%" y="479.50"></text></g><g><title>memmove (807 samples, 0.03%)</title><rect x="34.3659%" y="453" width="0.0336%" height="15" fill="rgb(248,111,24)" fg:x="826019" fg:w="807"/><text x="34.6159%" y="463.50"></text></g><g><title>copy_pages (1,077 samples, 0.04%)</title><rect x="34.4271%" y="453" width="0.0448%" height="15" fill="rgb(249,65,22)" fg:x="827489" fg:w="1077"/><text x="34.6771%" y="463.50"></text></g><g><title>memmove_extent_buffer (8,362 samples, 0.35%)</title><rect x="34.3995%" y="469" width="0.3479%" height="15" fill="rgb(238,111,51)" fg:x="826826" fg:w="8362"/><text x="34.6495%" y="479.50"></text></g><g><title>memmove (6,622 samples, 0.28%)</title><rect x="34.4719%" y="453" width="0.2755%" height="15" fill="rgb(250,118,22)" fg:x="828566" fg:w="6622"/><text x="34.7219%" y="463.50"></text></g><g><title>clear_extent_buffer_dirty (370 samples, 0.02%)</title><rect x="34.7709%" y="437" width="0.0154%" height="15" fill="rgb(234,84,26)" fg:x="835753" fg:w="370"/><text x="35.0209%" y="447.50"></text></g><g><title>__push_leaf_left (1,116 samples, 0.05%)</title><rect x="34.7497%" y="453" width="0.0464%" height="15" fill="rgb(243,172,12)" fg:x="835243" fg:w="1116"/><text x="34.9997%" y="463.50"></text></g><g><title>push_leaf_left (1,510 samples, 0.06%)</title><rect x="34.7474%" y="469" width="0.0628%" height="15" fill="rgb(236,150,49)" fg:x="835188" fg:w="1510"/><text x="34.9974%" y="479.50"></text></g><g><title>__push_leaf_right (545 samples, 0.02%)</title><rect x="34.8113%" y="453" width="0.0227%" height="15" fill="rgb(225,197,26)" fg:x="836725" fg:w="545"/><text x="35.0613%" y="463.50"></text></g><g><title>push_leaf_right (973 samples, 0.04%)</title><rect x="34.8102%" y="469" width="0.0405%" height="15" fill="rgb(214,17,42)" fg:x="836698" fg:w="973"/><text x="35.0602%" y="479.50"></text></g><g><title>btrfs_del_items (35,180 samples, 1.46%)</title><rect x="33.3987%" y="485" width="1.4636%" height="15" fill="rgb(224,165,40)" fg:x="802772" fg:w="35180"/><text x="33.6487%" y="495.50"></text></g><g><title>memset_erms (457 samples, 0.02%)</title><rect x="34.9775%" y="437" width="0.0190%" height="15" fill="rgb(246,100,4)" fg:x="840720" fg:w="457"/><text x="35.2275%" y="447.50"></text></g><g><title>alloc_extent_map (2,889 samples, 0.12%)</title><rect x="34.8964%" y="469" width="0.1202%" height="15" fill="rgb(222,103,0)" fg:x="838771" fg:w="2889"/><text x="35.1464%" y="479.50"></text></g><g><title>kmem_cache_alloc (2,229 samples, 0.09%)</title><rect x="34.9239%" y="453" width="0.0927%" height="15" fill="rgb(227,189,26)" fg:x="839431" fg:w="2229"/><text x="35.1739%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (483 samples, 0.02%)</title><rect x="34.9965%" y="437" width="0.0201%" height="15" fill="rgb(214,202,17)" fg:x="841177" fg:w="483"/><text x="35.2465%" y="447.50"></text></g><g><title>free_extent_map (403 samples, 0.02%)</title><rect x="35.0168%" y="469" width="0.0168%" height="15" fill="rgb(229,111,3)" fg:x="841664" fg:w="403"/><text x="35.2668%" y="479.50"></text></g><g><title>kmem_cache_free (1,322 samples, 0.06%)</title><rect x="35.0336%" y="469" width="0.0550%" height="15" fill="rgb(229,172,15)" fg:x="842067" fg:w="1322"/><text x="35.2836%" y="479.50"></text></g><g><title>btrfs_drop_extent_cache (5,536 samples, 0.23%)</title><rect x="34.8624%" y="485" width="0.2303%" height="15" fill="rgb(230,224,35)" fg:x="837952" fg:w="5536"/><text x="35.1124%" y="495.50"></text></g><g><title>_raw_spin_lock (401 samples, 0.02%)</title><rect x="35.2094%" y="389" width="0.0167%" height="15" fill="rgb(251,141,6)" fg:x="846293" fg:w="401"/><text x="35.4594%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (272 samples, 0.01%)</title><rect x="35.2148%" y="373" width="0.0113%" height="15" fill="rgb(225,208,6)" fg:x="846422" fg:w="272"/><text x="35.4648%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (326 samples, 0.01%)</title><rect x="35.2261%" y="389" width="0.0136%" height="15" fill="rgb(246,181,16)" fg:x="846694" fg:w="326"/><text x="35.4761%" y="399.50"></text></g><g><title>available_idle_cpu (337 samples, 0.01%)</title><rect x="35.2694%" y="373" width="0.0140%" height="15" fill="rgb(227,129,36)" fg:x="847736" fg:w="337"/><text x="35.5194%" y="383.50"></text></g><g><title>select_task_rq_fair (1,530 samples, 0.06%)</title><rect x="35.2416%" y="389" width="0.0637%" height="15" fill="rgb(248,117,24)" fg:x="847068" fg:w="1530"/><text x="35.4916%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (368 samples, 0.02%)</title><rect x="35.2900%" y="373" width="0.0153%" height="15" fill="rgb(214,185,35)" fg:x="848230" fg:w="368"/><text x="35.5400%" y="383.50"></text></g><g><title>enqueue_entity (1,493 samples, 0.06%)</title><rect x="35.3303%" y="357" width="0.0621%" height="15" fill="rgb(236,150,34)" fg:x="849200" fg:w="1493"/><text x="35.5803%" y="367.50"></text></g><g><title>update_load_avg (524 samples, 0.02%)</title><rect x="35.3707%" y="341" width="0.0218%" height="15" fill="rgb(243,228,27)" fg:x="850169" fg:w="524"/><text x="35.6207%" y="351.50"></text></g><g><title>enqueue_task_fair (1,903 samples, 0.08%)</title><rect x="35.3163%" y="373" width="0.0792%" height="15" fill="rgb(245,77,44)" fg:x="848863" fg:w="1903"/><text x="35.5663%" y="383.50"></text></g><g><title>ttwu_do_activate (4,048 samples, 0.17%)</title><rect x="35.3107%" y="389" width="0.1684%" height="15" fill="rgb(235,214,42)" fg:x="848728" fg:w="4048"/><text x="35.5607%" y="399.50"></text></g><g><title>psi_task_change (2,010 samples, 0.08%)</title><rect x="35.3955%" y="373" width="0.0836%" height="15" fill="rgb(221,74,3)" fg:x="850766" fg:w="2010"/><text x="35.6455%" y="383.50"></text></g><g><title>psi_group_change (1,777 samples, 0.07%)</title><rect x="35.4052%" y="357" width="0.0739%" height="15" fill="rgb(206,121,29)" fg:x="850999" fg:w="1777"/><text x="35.6552%" y="367.50"></text></g><g><title>record_times (264 samples, 0.01%)</title><rect x="35.4681%" y="341" width="0.0110%" height="15" fill="rgb(249,131,53)" fg:x="852512" fg:w="264"/><text x="35.7181%" y="351.50"></text></g><g><title>ttwu_do_wakeup (403 samples, 0.02%)</title><rect x="35.4791%" y="389" width="0.0168%" height="15" fill="rgb(236,170,29)" fg:x="852776" fg:w="403"/><text x="35.7291%" y="399.50"></text></g><g><title>check_preempt_curr (365 samples, 0.02%)</title><rect x="35.4807%" y="373" width="0.0152%" height="15" fill="rgb(247,96,15)" fg:x="852814" fg:w="365"/><text x="35.7307%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (433 samples, 0.02%)</title><rect x="35.4959%" y="389" width="0.0180%" height="15" fill="rgb(211,210,7)" fg:x="853179" fg:w="433"/><text x="35.7459%" y="399.50"></text></g><g><title>__wake_up_common (10,050 samples, 0.42%)</title><rect x="35.1107%" y="437" width="0.4181%" height="15" fill="rgb(240,88,50)" fg:x="843921" fg:w="10050"/><text x="35.3607%" y="447.50"></text></g><g><title>autoremove_wake_function (9,831 samples, 0.41%)</title><rect x="35.1198%" y="421" width="0.4090%" height="15" fill="rgb(209,229,26)" fg:x="844140" fg:w="9831"/><text x="35.3698%" y="431.50"></text></g><g><title>try_to_wake_up (9,607 samples, 0.40%)</title><rect x="35.1291%" y="405" width="0.3997%" height="15" fill="rgb(210,68,23)" fg:x="844364" fg:w="9607"/><text x="35.3791%" y="415.50"></text></g><g><title>update_rq_clock (359 samples, 0.01%)</title><rect x="35.5139%" y="389" width="0.0149%" height="15" fill="rgb(229,180,13)" fg:x="853612" fg:w="359"/><text x="35.7639%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (350 samples, 0.01%)</title><rect x="35.5288%" y="437" width="0.0146%" height="15" fill="rgb(236,53,44)" fg:x="853971" fg:w="350"/><text x="35.7788%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (269 samples, 0.01%)</title><rect x="35.5322%" y="421" width="0.0112%" height="15" fill="rgb(244,214,29)" fg:x="854052" fg:w="269"/><text x="35.7822%" y="431.50"></text></g><g><title>__wake_up_common_lock (10,529 samples, 0.44%)</title><rect x="35.1098%" y="453" width="0.4381%" height="15" fill="rgb(220,75,29)" fg:x="843898" fg:w="10529"/><text x="35.3598%" y="463.50"></text></g><g><title>btrfs_tree_unlock (693 samples, 0.03%)</title><rect x="35.5480%" y="453" width="0.0288%" height="15" fill="rgb(214,183,37)" fg:x="854432" fg:w="693"/><text x="35.7980%" y="463.50"></text></g><g><title>_raw_spin_lock (357 samples, 0.01%)</title><rect x="35.6168%" y="437" width="0.0149%" height="15" fill="rgb(239,117,29)" fg:x="856085" fg:w="357"/><text x="35.8668%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,293 samples, 0.05%)</title><rect x="35.5780%" y="453" width="0.0538%" height="15" fill="rgb(237,171,35)" fg:x="855152" fg:w="1293"/><text x="35.8280%" y="463.50"></text></g><g><title>btrfs_free_path (13,338 samples, 0.55%)</title><rect x="35.0927%" y="485" width="0.5549%" height="15" fill="rgb(229,178,53)" fg:x="843488" fg:w="13338"/><text x="35.3427%" y="495.50"></text></g><g><title>btrfs_release_path (13,300 samples, 0.55%)</title><rect x="35.0943%" y="469" width="0.5533%" height="15" fill="rgb(210,102,19)" fg:x="843526" fg:w="13300"/><text x="35.3443%" y="479.50"></text></g><g><title>release_extent_buffer (381 samples, 0.02%)</title><rect x="35.6318%" y="453" width="0.0159%" height="15" fill="rgb(235,127,22)" fg:x="856445" fg:w="381"/><text x="35.8818%" y="463.50"></text></g><g><title>btrfs_get_32 (249 samples, 0.01%)</title><rect x="35.6476%" y="485" width="0.0104%" height="15" fill="rgb(244,31,31)" fg:x="856826" fg:w="249"/><text x="35.8976%" y="495.50"></text></g><g><title>btrfs_get_8 (357 samples, 0.01%)</title><rect x="35.6669%" y="485" width="0.0149%" height="15" fill="rgb(231,43,21)" fg:x="857289" fg:w="357"/><text x="35.9169%" y="495.50"></text></g><g><title>_raw_spin_lock (412 samples, 0.02%)</title><rect x="35.7191%" y="437" width="0.0171%" height="15" fill="rgb(217,131,35)" fg:x="858545" fg:w="412"/><text x="35.9691%" y="447.50"></text></g><g><title>_cond_resched (270 samples, 0.01%)</title><rect x="35.7897%" y="389" width="0.0112%" height="15" fill="rgb(221,149,4)" fg:x="860241" fg:w="270"/><text x="36.0397%" y="399.50"></text></g><g><title>alloc_extent_state (1,576 samples, 0.07%)</title><rect x="35.7363%" y="437" width="0.0656%" height="15" fill="rgb(232,170,28)" fg:x="858957" fg:w="1576"/><text x="35.9863%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,350 samples, 0.06%)</title><rect x="35.7457%" y="421" width="0.0562%" height="15" fill="rgb(238,56,10)" fg:x="859183" fg:w="1350"/><text x="35.9957%" y="431.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (521 samples, 0.02%)</title><rect x="35.7802%" y="405" width="0.0217%" height="15" fill="rgb(235,196,14)" fg:x="860012" fg:w="521"/><text x="36.0302%" y="415.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (3,907 samples, 0.16%)</title><rect x="35.6817%" y="485" width="0.1625%" height="15" fill="rgb(216,45,48)" fg:x="857646" fg:w="3907"/><text x="35.9317%" y="495.50"></text></g><g><title>clear_extent_bit (3,386 samples, 0.14%)</title><rect x="35.7034%" y="469" width="0.1409%" height="15" fill="rgb(238,213,17)" fg:x="858167" fg:w="3386"/><text x="35.9534%" y="479.50"></text></g><g><title>__clear_extent_bit (3,341 samples, 0.14%)</title><rect x="35.7053%" y="453" width="0.1390%" height="15" fill="rgb(212,13,2)" fg:x="858212" fg:w="3341"/><text x="35.9553%" y="463.50"></text></g><g><title>kmem_cache_free (783 samples, 0.03%)</title><rect x="35.8117%" y="437" width="0.0326%" height="15" fill="rgb(240,114,20)" fg:x="860770" fg:w="783"/><text x="36.0617%" y="447.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (915 samples, 0.04%)</title><rect x="35.8443%" y="485" width="0.0381%" height="15" fill="rgb(228,41,40)" fg:x="861553" fg:w="915"/><text x="36.0943%" y="495.50"></text></g><g><title>find_contiguous_extent_bit (278 samples, 0.01%)</title><rect x="35.8708%" y="469" width="0.0116%" height="15" fill="rgb(244,132,35)" fg:x="862190" fg:w="278"/><text x="36.1208%" y="479.50"></text></g><g><title>__btrfs_kill_delayed_node (399 samples, 0.02%)</title><rect x="35.8902%" y="469" width="0.0166%" height="15" fill="rgb(253,189,4)" fg:x="862656" fg:w="399"/><text x="36.1402%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (450 samples, 0.02%)</title><rect x="35.9071%" y="469" width="0.0187%" height="15" fill="rgb(224,37,19)" fg:x="863063" fg:w="450"/><text x="36.1571%" y="479.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,235 samples, 0.05%)</title><rect x="35.8823%" y="485" width="0.0514%" height="15" fill="rgb(235,223,18)" fg:x="862468" fg:w="1235"/><text x="36.1323%" y="495.50"></text></g><g><title>_raw_read_lock (783 samples, 0.03%)</title><rect x="36.0909%" y="437" width="0.0326%" height="15" fill="rgb(235,163,25)" fg:x="867480" fg:w="783"/><text x="36.3409%" y="447.50"></text></g><g><title>finish_wait (5,177 samples, 0.22%)</title><rect x="36.1261%" y="437" width="0.2154%" height="15" fill="rgb(217,145,28)" fg:x="868327" fg:w="5177"/><text x="36.3761%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,928 samples, 0.21%)</title><rect x="36.1365%" y="421" width="0.2050%" height="15" fill="rgb(223,223,32)" fg:x="868576" fg:w="4928"/><text x="36.3865%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,732 samples, 0.20%)</title><rect x="36.1446%" y="405" width="0.1969%" height="15" fill="rgb(227,189,39)" fg:x="868772" fg:w="4732"/><text x="36.3946%" y="415.50"></text></g><g><title>__list_add_valid (314 samples, 0.01%)</title><rect x="36.3771%" y="421" width="0.0131%" height="15" fill="rgb(248,10,22)" fg:x="874360" fg:w="314"/><text x="36.6271%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (12,548 samples, 0.52%)</title><rect x="36.3902%" y="421" width="0.5221%" height="15" fill="rgb(248,46,39)" fg:x="874674" fg:w="12548"/><text x="36.6402%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,963 samples, 0.50%)</title><rect x="36.4145%" y="405" width="0.4977%" height="15" fill="rgb(248,113,48)" fg:x="875259" fg:w="11963"/><text x="36.6645%" y="415.50"></text></g><g><title>prepare_to_wait_event (13,922 samples, 0.58%)</title><rect x="36.3424%" y="437" width="0.5792%" height="15" fill="rgb(245,16,25)" fg:x="873525" fg:w="13922"/><text x="36.5924%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (12,494 samples, 0.52%)</title><rect x="36.9216%" y="437" width="0.5198%" height="15" fill="rgb(249,152,16)" fg:x="887447" fg:w="12494"/><text x="37.1716%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,200 samples, 0.38%)</title><rect x="37.0586%" y="421" width="0.3828%" height="15" fill="rgb(250,16,1)" fg:x="890741" fg:w="9200"/><text x="37.3086%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (395 samples, 0.02%)</title><rect x="37.4725%" y="405" width="0.0164%" height="15" fill="rgb(249,138,3)" fg:x="900690" fg:w="395"/><text x="37.7225%" y="415.50"></text></g><g><title>update_curr (768 samples, 0.03%)</title><rect x="37.5318%" y="373" width="0.0320%" height="15" fill="rgb(227,71,41)" fg:x="902114" fg:w="768"/><text x="37.7818%" y="383.50"></text></g><g><title>dequeue_entity (2,037 samples, 0.08%)</title><rect x="37.5046%" y="389" width="0.0847%" height="15" fill="rgb(209,184,23)" fg:x="901461" fg:w="2037"/><text x="37.7546%" y="399.50"></text></g><g><title>update_load_avg (616 samples, 0.03%)</title><rect x="37.5637%" y="373" width="0.0256%" height="15" fill="rgb(223,215,31)" fg:x="902882" fg:w="616"/><text x="37.8137%" y="383.50"></text></g><g><title>dequeue_task_fair (2,455 samples, 0.10%)</title><rect x="37.4936%" y="405" width="0.1021%" height="15" fill="rgb(210,146,28)" fg:x="901197" fg:w="2455"/><text x="37.7436%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (3,739 samples, 0.16%)</title><rect x="37.6132%" y="389" width="0.1556%" height="15" fill="rgb(209,183,41)" fg:x="904072" fg:w="3739"/><text x="37.8632%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,647 samples, 0.15%)</title><rect x="37.6171%" y="373" width="0.1517%" height="15" fill="rgb(209,224,45)" fg:x="904164" fg:w="3647"/><text x="37.8671%" y="383.50"></text></g><g><title>native_write_msr (3,602 samples, 0.15%)</title><rect x="37.6189%" y="357" width="0.1499%" height="15" fill="rgb(224,209,51)" fg:x="904209" fg:w="3602"/><text x="37.8689%" y="367.50"></text></g><g><title>finish_task_switch (4,364 samples, 0.18%)</title><rect x="37.5958%" y="405" width="0.1816%" height="15" fill="rgb(223,17,39)" fg:x="903652" fg:w="4364"/><text x="37.8458%" y="415.50"></text></g><g><title>pick_next_task_fair (432 samples, 0.02%)</title><rect x="37.7776%" y="405" width="0.0180%" height="15" fill="rgb(234,204,37)" fg:x="908023" fg:w="432"/><text x="38.0276%" y="415.50"></text></g><g><title>__update_idle_core (348 samples, 0.01%)</title><rect x="37.7978%" y="389" width="0.0145%" height="15" fill="rgb(236,120,5)" fg:x="908508" fg:w="348"/><text x="38.0478%" y="399.50"></text></g><g><title>pick_next_task_idle (402 samples, 0.02%)</title><rect x="37.7956%" y="405" width="0.0167%" height="15" fill="rgb(248,97,27)" fg:x="908455" fg:w="402"/><text x="38.0456%" y="415.50"></text></g><g><title>psi_task_change (1,759 samples, 0.07%)</title><rect x="37.8123%" y="405" width="0.0732%" height="15" fill="rgb(240,66,17)" fg:x="908857" fg:w="1759"/><text x="38.0623%" y="415.50"></text></g><g><title>psi_group_change (1,509 samples, 0.06%)</title><rect x="37.8227%" y="389" width="0.0628%" height="15" fill="rgb(210,79,3)" fg:x="909107" fg:w="1509"/><text x="38.0727%" y="399.50"></text></g><g><title>record_times (314 samples, 0.01%)</title><rect x="37.8724%" y="373" width="0.0131%" height="15" fill="rgb(214,176,27)" fg:x="910302" fg:w="314"/><text x="38.1224%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (44,653 samples, 1.86%)</title><rect x="36.0544%" y="453" width="1.8578%" height="15" fill="rgb(235,185,3)" fg:x="866604" fg:w="44653"/><text x="36.3044%" y="463.50">_..</text></g><g><title>schedule (11,316 samples, 0.47%)</title><rect x="37.4414%" y="437" width="0.4708%" height="15" fill="rgb(227,24,12)" fg:x="899941" fg:w="11316"/><text x="37.6914%" y="447.50"></text></g><g><title>__schedule (11,209 samples, 0.47%)</title><rect x="37.4458%" y="421" width="0.4663%" height="15" fill="rgb(252,169,48)" fg:x="900048" fg:w="11209"/><text x="37.6958%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (46,034 samples, 1.92%)</title><rect x="36.0462%" y="469" width="1.9152%" height="15" fill="rgb(212,65,1)" fg:x="866406" fg:w="46034"/><text x="36.2962%" y="479.50">_..</text></g><g><title>btrfs_root_node (1,182 samples, 0.05%)</title><rect x="37.9122%" y="453" width="0.0492%" height="15" fill="rgb(242,39,24)" fg:x="911258" fg:w="1182"/><text x="38.1622%" y="463.50"></text></g><g><title>prepare_to_wait_event (304 samples, 0.01%)</title><rect x="37.9693%" y="453" width="0.0126%" height="15" fill="rgb(249,32,23)" fg:x="912629" fg:w="304"/><text x="38.2193%" y="463.50"></text></g><g><title>dequeue_entity (623 samples, 0.03%)</title><rect x="38.0007%" y="405" width="0.0259%" height="15" fill="rgb(251,195,23)" fg:x="913384" fg:w="623"/><text x="38.2507%" y="415.50"></text></g><g><title>dequeue_task_fair (743 samples, 0.03%)</title><rect x="37.9976%" y="421" width="0.0309%" height="15" fill="rgb(236,174,8)" fg:x="913310" fg:w="743"/><text x="38.2476%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (1,230 samples, 0.05%)</title><rect x="38.0341%" y="405" width="0.0512%" height="15" fill="rgb(220,197,8)" fg:x="914187" fg:w="1230"/><text x="38.2841%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,205 samples, 0.05%)</title><rect x="38.0351%" y="389" width="0.0501%" height="15" fill="rgb(240,108,37)" fg:x="914212" fg:w="1205"/><text x="38.2851%" y="399.50"></text></g><g><title>native_write_msr (1,194 samples, 0.05%)</title><rect x="38.0356%" y="373" width="0.0497%" height="15" fill="rgb(232,176,24)" fg:x="914223" fg:w="1194"/><text x="38.2856%" y="383.50"></text></g><g><title>finish_task_switch (1,403 samples, 0.06%)</title><rect x="38.0285%" y="421" width="0.0584%" height="15" fill="rgb(243,35,29)" fg:x="914053" fg:w="1403"/><text x="38.2785%" y="431.50"></text></g><g><title>psi_task_change (586 samples, 0.02%)</title><rect x="38.0969%" y="421" width="0.0244%" height="15" fill="rgb(210,37,18)" fg:x="915697" fg:w="586"/><text x="38.3469%" y="431.50"></text></g><g><title>psi_group_change (481 samples, 0.02%)</title><rect x="38.1013%" y="405" width="0.0200%" height="15" fill="rgb(224,184,40)" fg:x="915802" fg:w="481"/><text x="38.3513%" y="415.50"></text></g><g><title>__btrfs_tree_lock (4,026 samples, 0.17%)</title><rect x="37.9614%" y="469" width="0.1675%" height="15" fill="rgb(236,39,29)" fg:x="912440" fg:w="4026"/><text x="38.2114%" y="479.50"></text></g><g><title>schedule (3,533 samples, 0.15%)</title><rect x="37.9819%" y="453" width="0.1470%" height="15" fill="rgb(232,48,39)" fg:x="912933" fg:w="3533"/><text x="38.2319%" y="463.50"></text></g><g><title>__schedule (3,502 samples, 0.15%)</title><rect x="37.9832%" y="437" width="0.1457%" height="15" fill="rgb(236,34,42)" fg:x="912964" fg:w="3502"/><text x="38.2332%" y="447.50"></text></g><g><title>__btrfs_cow_block (439 samples, 0.02%)</title><rect x="38.1413%" y="453" width="0.0183%" height="15" fill="rgb(243,106,37)" fg:x="916765" fg:w="439"/><text x="38.3913%" y="463.50"></text></g><g><title>btrfs_cow_block (441 samples, 0.02%)</title><rect x="38.1413%" y="469" width="0.0183%" height="15" fill="rgb(218,96,6)" fg:x="916764" fg:w="441"/><text x="38.3913%" y="479.50"></text></g><g><title>_cond_resched (301 samples, 0.01%)</title><rect x="38.2101%" y="437" width="0.0125%" height="15" fill="rgb(235,130,12)" fg:x="918418" fg:w="301"/><text x="38.4601%" y="447.50"></text></g><g><title>_raw_write_lock (735 samples, 0.03%)</title><rect x="38.2255%" y="437" width="0.0306%" height="15" fill="rgb(231,95,0)" fg:x="918788" fg:w="735"/><text x="38.4755%" y="447.50"></text></g><g><title>finish_wait (4,418 samples, 0.18%)</title><rect x="38.2567%" y="437" width="0.1838%" height="15" fill="rgb(228,12,23)" fg:x="919537" fg:w="4418"/><text x="38.5067%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,164 samples, 0.17%)</title><rect x="38.2672%" y="421" width="0.1732%" height="15" fill="rgb(216,12,1)" fg:x="919791" fg:w="4164"/><text x="38.5172%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,909 samples, 0.16%)</title><rect x="38.2778%" y="405" width="0.1626%" height="15" fill="rgb(219,59,3)" fg:x="920046" fg:w="3909"/><text x="38.5278%" y="415.50"></text></g><g><title>__list_add_valid (341 samples, 0.01%)</title><rect x="38.4878%" y="421" width="0.0142%" height="15" fill="rgb(215,208,46)" fg:x="925092" fg:w="341"/><text x="38.7378%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (11,405 samples, 0.47%)</title><rect x="38.5020%" y="421" width="0.4745%" height="15" fill="rgb(254,224,29)" fg:x="925433" fg:w="11405"/><text x="38.7520%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,552 samples, 0.44%)</title><rect x="38.5374%" y="405" width="0.4390%" height="15" fill="rgb(232,14,29)" fg:x="926286" fg:w="10552"/><text x="38.7874%" y="415.50"></text></g><g><title>prepare_to_wait_event (13,109 samples, 0.55%)</title><rect x="38.4420%" y="437" width="0.5454%" height="15" fill="rgb(208,45,52)" fg:x="923991" fg:w="13109"/><text x="38.6920%" y="447.50"></text></g><g><title>_raw_spin_unlock_irqrestore (262 samples, 0.01%)</title><rect x="38.9765%" y="421" width="0.0109%" height="15" fill="rgb(234,191,28)" fg:x="936838" fg:w="262"/><text x="39.2265%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (19,337 samples, 0.80%)</title><rect x="38.9874%" y="437" width="0.8045%" height="15" fill="rgb(244,67,43)" fg:x="937100" fg:w="19337"/><text x="39.2374%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,597 samples, 0.40%)</title><rect x="39.3926%" y="421" width="0.3993%" height="15" fill="rgb(236,189,24)" fg:x="946840" fg:w="9597"/><text x="39.6426%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (521 samples, 0.02%)</title><rect x="39.8326%" y="405" width="0.0217%" height="15" fill="rgb(239,214,33)" fg:x="957416" fg:w="521"/><text x="40.0826%" y="415.50"></text></g><g><title>update_cfs_group (318 samples, 0.01%)</title><rect x="39.9006%" y="373" width="0.0132%" height="15" fill="rgb(226,176,41)" fg:x="959051" fg:w="318"/><text x="40.1506%" y="383.50"></text></g><g><title>update_curr (975 samples, 0.04%)</title><rect x="39.9138%" y="373" width="0.0406%" height="15" fill="rgb(248,47,8)" fg:x="959369" fg:w="975"/><text x="40.1638%" y="383.50"></text></g><g><title>__update_load_avg_cfs_rq (260 samples, 0.01%)</title><rect x="39.9670%" y="357" width="0.0108%" height="15" fill="rgb(218,81,44)" fg:x="960648" fg:w="260"/><text x="40.2170%" y="367.50"></text></g><g><title>__update_load_avg_se (338 samples, 0.01%)</title><rect x="39.9779%" y="357" width="0.0141%" height="15" fill="rgb(213,98,6)" fg:x="960908" fg:w="338"/><text x="40.2279%" y="367.50"></text></g><g><title>dequeue_entity (2,795 samples, 0.12%)</title><rect x="39.8766%" y="389" width="0.1163%" height="15" fill="rgb(222,85,22)" fg:x="958473" fg:w="2795"/><text x="40.1266%" y="399.50"></text></g><g><title>update_load_avg (924 samples, 0.04%)</title><rect x="39.9544%" y="373" width="0.0384%" height="15" fill="rgb(239,46,39)" fg:x="960344" fg:w="924"/><text x="40.2044%" y="383.50"></text></g><g><title>dequeue_task_fair (3,362 samples, 0.14%)</title><rect x="39.8620%" y="405" width="0.1399%" height="15" fill="rgb(237,12,29)" fg:x="958124" fg:w="3362"/><text x="40.1120%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (4,447 samples, 0.19%)</title><rect x="40.0278%" y="389" width="0.1850%" height="15" fill="rgb(214,77,8)" fg:x="962107" fg:w="4447"/><text x="40.2778%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,293 samples, 0.18%)</title><rect x="40.0342%" y="373" width="0.1786%" height="15" fill="rgb(217,168,37)" fg:x="962261" fg:w="4293"/><text x="40.2842%" y="383.50"></text></g><g><title>native_write_msr (4,246 samples, 0.18%)</title><rect x="40.0361%" y="357" width="0.1767%" height="15" fill="rgb(221,217,23)" fg:x="962308" fg:w="4246"/><text x="40.2861%" y="367.50"></text></g><g><title>finish_task_switch (5,294 samples, 0.22%)</title><rect x="40.0019%" y="405" width="0.2203%" height="15" fill="rgb(243,229,36)" fg:x="961486" fg:w="5294"/><text x="40.2519%" y="415.50"></text></g><g><title>newidle_balance (308 samples, 0.01%)</title><rect x="40.2288%" y="389" width="0.0128%" height="15" fill="rgb(251,163,40)" fg:x="966940" fg:w="308"/><text x="40.4788%" y="399.50"></text></g><g><title>pick_next_task_fair (587 samples, 0.02%)</title><rect x="40.2223%" y="405" width="0.0244%" height="15" fill="rgb(237,222,12)" fg:x="966784" fg:w="587"/><text x="40.4723%" y="415.50"></text></g><g><title>__update_idle_core (498 samples, 0.02%)</title><rect x="40.2501%" y="389" width="0.0207%" height="15" fill="rgb(248,132,6)" fg:x="967451" fg:w="498"/><text x="40.5001%" y="399.50"></text></g><g><title>pick_next_task_idle (580 samples, 0.02%)</title><rect x="40.2468%" y="405" width="0.0241%" height="15" fill="rgb(227,167,50)" fg:x="967371" fg:w="580"/><text x="40.4968%" y="415.50"></text></g><g><title>psi_task_change (2,567 samples, 0.11%)</title><rect x="40.2709%" y="405" width="0.1068%" height="15" fill="rgb(242,84,37)" fg:x="967951" fg:w="2567"/><text x="40.5209%" y="415.50"></text></g><g><title>psi_group_change (2,210 samples, 0.09%)</title><rect x="40.2857%" y="389" width="0.0919%" height="15" fill="rgb(212,4,50)" fg:x="968308" fg:w="2210"/><text x="40.5357%" y="399.50"></text></g><g><title>record_times (572 samples, 0.02%)</title><rect x="40.3539%" y="373" width="0.0238%" height="15" fill="rgb(230,228,32)" fg:x="969946" fg:w="572"/><text x="40.6039%" y="383.50"></text></g><g><title>sched_clock_cpu (351 samples, 0.01%)</title><rect x="40.3631%" y="357" width="0.0146%" height="15" fill="rgb(248,217,23)" fg:x="970167" fg:w="351"/><text x="40.6131%" y="367.50"></text></g><g><title>sched_clock (307 samples, 0.01%)</title><rect x="40.3649%" y="341" width="0.0128%" height="15" fill="rgb(238,197,32)" fg:x="970211" fg:w="307"/><text x="40.6149%" y="351.50"></text></g><g><title>native_sched_clock (285 samples, 0.01%)</title><rect x="40.3658%" y="325" width="0.0119%" height="15" fill="rgb(236,106,1)" fg:x="970233" fg:w="285"/><text x="40.6158%" y="335.50"></text></g><g><title>psi_task_switch (252 samples, 0.01%)</title><rect x="40.3777%" y="405" width="0.0105%" height="15" fill="rgb(219,228,13)" fg:x="970518" fg:w="252"/><text x="40.6277%" y="415.50"></text></g><g><title>__btrfs_tree_lock (54,020 samples, 2.25%)</title><rect x="38.1616%" y="453" width="2.2475%" height="15" fill="rgb(238,30,35)" fg:x="917252" fg:w="54020"/><text x="38.4116%" y="463.50">_..</text></g><g><title>schedule (14,835 samples, 0.62%)</title><rect x="39.7919%" y="437" width="0.6172%" height="15" fill="rgb(236,70,23)" fg:x="956437" fg:w="14835"/><text x="40.0419%" y="447.50"></text></g><g><title>__schedule (14,642 samples, 0.61%)</title><rect x="39.7999%" y="421" width="0.6092%" height="15" fill="rgb(249,104,48)" fg:x="956630" fg:w="14642"/><text x="40.0499%" y="431.50"></text></g><g><title>update_rq_clock (261 samples, 0.01%)</title><rect x="40.3982%" y="405" width="0.0109%" height="15" fill="rgb(254,117,50)" fg:x="971011" fg:w="261"/><text x="40.6482%" y="415.50"></text></g><g><title>btrfs_lock_root_node (54,539 samples, 2.27%)</title><rect x="38.1596%" y="469" width="2.2691%" height="15" fill="rgb(223,152,4)" fg:x="917205" fg:w="54539"/><text x="38.4096%" y="479.50">b..</text></g><g><title>btrfs_root_node (471 samples, 0.02%)</title><rect x="40.4091%" y="453" width="0.0196%" height="15" fill="rgb(245,6,2)" fg:x="971273" fg:w="471"/><text x="40.6591%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (1,274 samples, 0.05%)</title><rect x="40.4287%" y="469" width="0.0530%" height="15" fill="rgb(249,150,24)" fg:x="971744" fg:w="1274"/><text x="40.6787%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (480 samples, 0.02%)</title><rect x="40.4617%" y="453" width="0.0200%" height="15" fill="rgb(228,185,42)" fg:x="972538" fg:w="480"/><text x="40.7117%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (583 samples, 0.02%)</title><rect x="40.4817%" y="469" width="0.0243%" height="15" fill="rgb(226,39,33)" fg:x="973019" fg:w="583"/><text x="40.7317%" y="479.50"></text></g><g><title>_raw_write_lock (350 samples, 0.01%)</title><rect x="40.5112%" y="453" width="0.0146%" height="15" fill="rgb(221,166,19)" fg:x="973727" fg:w="350"/><text x="40.7612%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (2,937 samples, 0.12%)</title><rect x="40.5060%" y="469" width="0.1222%" height="15" fill="rgb(209,109,2)" fg:x="973602" fg:w="2937"/><text x="40.7560%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (2,458 samples, 0.10%)</title><rect x="40.5259%" y="453" width="0.1023%" height="15" fill="rgb(252,216,26)" fg:x="974081" fg:w="2458"/><text x="40.7759%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (646 samples, 0.03%)</title><rect x="40.6287%" y="469" width="0.0269%" height="15" fill="rgb(227,173,36)" fg:x="976551" fg:w="646"/><text x="40.8787%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (4,635 samples, 0.19%)</title><rect x="40.6556%" y="469" width="0.1928%" height="15" fill="rgb(209,90,7)" fg:x="977197" fg:w="4635"/><text x="40.9056%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (610 samples, 0.03%)</title><rect x="40.8803%" y="453" width="0.0254%" height="15" fill="rgb(250,194,11)" fg:x="982598" fg:w="610"/><text x="41.1303%" y="463.50"></text></g><g><title>verify_parent_transid (450 samples, 0.02%)</title><rect x="40.8869%" y="437" width="0.0187%" height="15" fill="rgb(220,72,50)" fg:x="982758" fg:w="450"/><text x="41.1369%" y="447.50"></text></g><g><title>btrfs_get_64 (877 samples, 0.04%)</title><rect x="40.9056%" y="453" width="0.0365%" height="15" fill="rgb(222,106,48)" fg:x="983208" fg:w="877"/><text x="41.1556%" y="463.50"></text></g><g><title>btrfs_verify_level_key (260 samples, 0.01%)</title><rect x="40.9462%" y="453" width="0.0108%" height="15" fill="rgb(216,220,45)" fg:x="984184" fg:w="260"/><text x="41.1962%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,523 samples, 0.10%)</title><rect x="41.0000%" y="437" width="0.1050%" height="15" fill="rgb(234,112,18)" fg:x="985477" fg:w="2523"/><text x="41.2500%" y="447.50"></text></g><g><title>mark_page_accessed (920 samples, 0.04%)</title><rect x="41.1176%" y="421" width="0.0383%" height="15" fill="rgb(206,179,9)" fg:x="988302" fg:w="920"/><text x="41.3676%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,226 samples, 0.05%)</title><rect x="41.1053%" y="437" width="0.0510%" height="15" fill="rgb(215,115,40)" fg:x="988008" fg:w="1226"/><text x="41.3553%" y="447.50"></text></g><g><title>find_extent_buffer (4,834 samples, 0.20%)</title><rect x="40.9571%" y="453" width="0.2011%" height="15" fill="rgb(222,69,34)" fg:x="984444" fg:w="4834"/><text x="41.2071%" y="463.50"></text></g><g><title>read_extent_buffer (801 samples, 0.03%)</title><rect x="41.1582%" y="453" width="0.0333%" height="15" fill="rgb(209,161,10)" fg:x="989278" fg:w="801"/><text x="41.4082%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (8,248 samples, 0.34%)</title><rect x="40.8484%" y="469" width="0.3432%" height="15" fill="rgb(217,6,38)" fg:x="981832" fg:w="8248"/><text x="41.0984%" y="479.50"></text></g><g><title>btrfs_get_64 (329 samples, 0.01%)</title><rect x="41.2057%" y="453" width="0.0137%" height="15" fill="rgb(229,229,48)" fg:x="990421" fg:w="329"/><text x="41.4557%" y="463.50"></text></g><g><title>__radix_tree_lookup (833 samples, 0.03%)</title><rect x="41.2460%" y="437" width="0.0347%" height="15" fill="rgb(225,21,28)" fg:x="991388" fg:w="833"/><text x="41.4960%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (460 samples, 0.02%)</title><rect x="41.2809%" y="437" width="0.0191%" height="15" fill="rgb(206,33,13)" fg:x="992228" fg:w="460"/><text x="41.5309%" y="447.50"></text></g><g><title>mark_page_accessed (334 samples, 0.01%)</title><rect x="41.2862%" y="421" width="0.0139%" height="15" fill="rgb(242,178,17)" fg:x="992354" fg:w="334"/><text x="41.5362%" y="431.50"></text></g><g><title>find_extent_buffer (1,941 samples, 0.08%)</title><rect x="41.2194%" y="453" width="0.0808%" height="15" fill="rgb(220,162,5)" fg:x="990750" fg:w="1941"/><text x="41.4694%" y="463.50"></text></g><g><title>reada_for_balance (2,757 samples, 0.11%)</title><rect x="41.1915%" y="469" width="0.1147%" height="15" fill="rgb(210,33,43)" fg:x="990080" fg:w="2757"/><text x="41.4415%" y="479.50"></text></g><g><title>__list_del_entry_valid (427 samples, 0.02%)</title><rect x="41.3702%" y="405" width="0.0178%" height="15" fill="rgb(216,116,54)" fg:x="994373" fg:w="427"/><text x="41.6202%" y="415.50"></text></g><g><title>_raw_spin_lock (545 samples, 0.02%)</title><rect x="41.5954%" y="389" width="0.0227%" height="15" fill="rgb(249,92,24)" fg:x="999788" fg:w="545"/><text x="41.8454%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (304 samples, 0.01%)</title><rect x="41.6055%" y="373" width="0.0126%" height="15" fill="rgb(231,189,14)" fg:x="1000029" fg:w="304"/><text x="41.8555%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (722 samples, 0.03%)</title><rect x="41.6181%" y="389" width="0.0300%" height="15" fill="rgb(230,8,41)" fg:x="1000333" fg:w="722"/><text x="41.8681%" y="399.50"></text></g><g><title>available_idle_cpu (606 samples, 0.03%)</title><rect x="41.7064%" y="373" width="0.0252%" height="15" fill="rgb(249,7,27)" fg:x="1002455" fg:w="606"/><text x="41.9564%" y="383.50"></text></g><g><title>select_task_rq_fair (2,988 samples, 0.12%)</title><rect x="41.6522%" y="389" width="0.1243%" height="15" fill="rgb(232,86,5)" fg:x="1001153" fg:w="2988"/><text x="41.9022%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (715 samples, 0.03%)</title><rect x="41.7468%" y="373" width="0.0297%" height="15" fill="rgb(224,175,18)" fg:x="1003426" fg:w="715"/><text x="41.9968%" y="383.50"></text></g><g><title>set_task_cpu (269 samples, 0.01%)</title><rect x="41.7765%" y="389" width="0.0112%" height="15" fill="rgb(220,129,12)" fg:x="1004141" fg:w="269"/><text x="42.0265%" y="399.50"></text></g><g><title>update_cfs_group (242 samples, 0.01%)</title><rect x="41.8749%" y="341" width="0.0101%" height="15" fill="rgb(210,19,36)" fg:x="1006506" fg:w="242"/><text x="42.1249%" y="351.50"></text></g><g><title>update_curr (348 samples, 0.01%)</title><rect x="41.8850%" y="341" width="0.0145%" height="15" fill="rgb(219,96,14)" fg:x="1006748" fg:w="348"/><text x="42.1350%" y="351.50"></text></g><g><title>enqueue_entity (2,770 samples, 0.12%)</title><rect x="41.8215%" y="357" width="0.1152%" height="15" fill="rgb(249,106,1)" fg:x="1005222" fg:w="2770"/><text x="42.0715%" y="367.50"></text></g><g><title>update_load_avg (896 samples, 0.04%)</title><rect x="41.8995%" y="341" width="0.0373%" height="15" fill="rgb(249,155,20)" fg:x="1007096" fg:w="896"/><text x="42.1495%" y="351.50"></text></g><g><title>enqueue_task_fair (3,538 samples, 0.15%)</title><rect x="41.7985%" y="373" width="0.1472%" height="15" fill="rgb(244,168,9)" fg:x="1004668" fg:w="3538"/><text x="42.0485%" y="383.50"></text></g><g><title>ttwu_do_activate (7,387 samples, 0.31%)</title><rect x="41.7877%" y="389" width="0.3073%" height="15" fill="rgb(216,23,50)" fg:x="1004410" fg:w="7387"/><text x="42.0377%" y="399.50"></text></g><g><title>psi_task_change (3,581 samples, 0.15%)</title><rect x="41.9461%" y="373" width="0.1490%" height="15" fill="rgb(224,219,20)" fg:x="1008216" fg:w="3581"/><text x="42.1961%" y="383.50"></text></g><g><title>psi_group_change (3,244 samples, 0.13%)</title><rect x="41.9601%" y="357" width="0.1350%" height="15" fill="rgb(222,156,15)" fg:x="1008553" fg:w="3244"/><text x="42.2101%" y="367.50"></text></g><g><title>record_times (566 samples, 0.02%)</title><rect x="42.0715%" y="341" width="0.0235%" height="15" fill="rgb(231,97,17)" fg:x="1011231" fg:w="566"/><text x="42.3215%" y="351.50"></text></g><g><title>sched_clock_cpu (386 samples, 0.02%)</title><rect x="42.0790%" y="325" width="0.0161%" height="15" fill="rgb(218,70,48)" fg:x="1011411" fg:w="386"/><text x="42.3290%" y="335.50"></text></g><g><title>sched_clock (326 samples, 0.01%)</title><rect x="42.0815%" y="309" width="0.0136%" height="15" fill="rgb(212,196,52)" fg:x="1011471" fg:w="326"/><text x="42.3315%" y="319.50"></text></g><g><title>native_sched_clock (300 samples, 0.01%)</title><rect x="42.0826%" y="293" width="0.0125%" height="15" fill="rgb(243,203,18)" fg:x="1011497" fg:w="300"/><text x="42.3326%" y="303.50"></text></g><g><title>resched_curr (334 samples, 0.01%)</title><rect x="42.1120%" y="357" width="0.0139%" height="15" fill="rgb(252,125,41)" fg:x="1012204" fg:w="334"/><text x="42.3620%" y="367.50"></text></g><g><title>ttwu_do_wakeup (744 samples, 0.03%)</title><rect x="42.0951%" y="389" width="0.0310%" height="15" fill="rgb(223,180,33)" fg:x="1011797" fg:w="744"/><text x="42.3451%" y="399.50"></text></g><g><title>check_preempt_curr (682 samples, 0.03%)</title><rect x="42.0976%" y="373" width="0.0284%" height="15" fill="rgb(254,159,46)" fg:x="1011859" fg:w="682"/><text x="42.3476%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (561 samples, 0.02%)</title><rect x="42.1260%" y="389" width="0.0233%" height="15" fill="rgb(254,38,10)" fg:x="1012541" fg:w="561"/><text x="42.3760%" y="399.50"></text></g><g><title>__wake_up_common (19,830 samples, 0.83%)</title><rect x="41.3507%" y="437" width="0.8250%" height="15" fill="rgb(208,217,32)" fg:x="993906" fg:w="19830"/><text x="41.6007%" y="447.50"></text></g><g><title>autoremove_wake_function (19,411 samples, 0.81%)</title><rect x="41.3682%" y="421" width="0.8076%" height="15" fill="rgb(221,120,13)" fg:x="994325" fg:w="19411"/><text x="41.6182%" y="431.50"></text></g><g><title>try_to_wake_up (18,915 samples, 0.79%)</title><rect x="41.3888%" y="405" width="0.7869%" height="15" fill="rgb(246,54,52)" fg:x="994821" fg:w="18915"/><text x="41.6388%" y="415.50"></text></g><g><title>update_rq_clock (634 samples, 0.03%)</title><rect x="42.1494%" y="389" width="0.0264%" height="15" fill="rgb(242,34,25)" fg:x="1013102" fg:w="634"/><text x="42.3994%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (2,981 samples, 0.12%)</title><rect x="42.1757%" y="437" width="0.1240%" height="15" fill="rgb(247,209,9)" fg:x="1013736" fg:w="2981"/><text x="42.4257%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,811 samples, 0.12%)</title><rect x="42.1828%" y="421" width="0.1169%" height="15" fill="rgb(228,71,26)" fg:x="1013906" fg:w="2811"/><text x="42.4328%" y="431.50"></text></g><g><title>__wake_up_common_lock (23,062 samples, 0.96%)</title><rect x="41.3480%" y="453" width="0.9595%" height="15" fill="rgb(222,145,49)" fg:x="993841" fg:w="23062"/><text x="41.5980%" y="463.50"></text></g><g><title>btrfs_search_slot (153,560 samples, 6.39%)</title><rect x="35.9396%" y="485" width="6.3888%" height="15" fill="rgb(218,121,17)" fg:x="863844" fg:w="153560"/><text x="36.1896%" y="495.50">btrfs_se..</text></g><g><title>unlock_up (24,496 samples, 1.02%)</title><rect x="41.3092%" y="469" width="1.0191%" height="15" fill="rgb(244,50,7)" fg:x="992908" fg:w="24496"/><text x="41.5592%" y="479.50"></text></g><g><title>btrfs_tree_unlock (494 samples, 0.02%)</title><rect x="42.3078%" y="453" width="0.0206%" height="15" fill="rgb(246,229,37)" fg:x="1016910" fg:w="494"/><text x="42.5578%" y="463.50"></text></g><g><title>inode_sub_bytes (652 samples, 0.03%)</title><rect x="42.3283%" y="485" width="0.0271%" height="15" fill="rgb(225,18,5)" fg:x="1017404" fg:w="652"/><text x="42.5783%" y="495.50"></text></g><g><title>_raw_spin_lock (403 samples, 0.02%)</title><rect x="42.3387%" y="469" width="0.0168%" height="15" fill="rgb(213,204,8)" fg:x="1017653" fg:w="403"/><text x="42.5887%" y="479.50"></text></g><g><title>kmem_cache_alloc (863 samples, 0.04%)</title><rect x="42.3555%" y="485" width="0.0359%" height="15" fill="rgb(238,103,6)" fg:x="1018056" fg:w="863"/><text x="42.6055%" y="495.50"></text></g><g><title>kmem_cache_free (694 samples, 0.03%)</title><rect x="42.3914%" y="485" width="0.0289%" height="15" fill="rgb(222,25,35)" fg:x="1018919" fg:w="694"/><text x="42.6414%" y="495.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.01%)</title><rect x="42.4686%" y="453" width="0.0102%" height="15" fill="rgb(213,203,35)" fg:x="1020776" fg:w="246"/><text x="42.7186%" y="463.50"></text></g><g><title>alloc_extent_state (1,673 samples, 0.07%)</title><rect x="42.4789%" y="453" width="0.0696%" height="15" fill="rgb(221,79,53)" fg:x="1021022" fg:w="1673"/><text x="42.7289%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,110 samples, 0.05%)</title><rect x="42.5023%" y="437" width="0.0462%" height="15" fill="rgb(243,200,35)" fg:x="1021585" fg:w="1110"/><text x="42.7523%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (243 samples, 0.01%)</title><rect x="42.5384%" y="421" width="0.0101%" height="15" fill="rgb(248,60,25)" fg:x="1022452" fg:w="243"/><text x="42.7884%" y="431.50"></text></g><g><title>cache_state_if_flags (450 samples, 0.02%)</title><rect x="42.5486%" y="453" width="0.0187%" height="15" fill="rgb(227,53,46)" fg:x="1022698" fg:w="450"/><text x="42.7986%" y="463.50"></text></g><g><title>__set_extent_bit (4,862 samples, 0.20%)</title><rect x="42.4327%" y="469" width="0.2023%" height="15" fill="rgb(216,120,32)" fg:x="1019913" fg:w="4862"/><text x="42.6827%" y="479.50"></text></g><g><title>insert_state (1,627 samples, 0.07%)</title><rect x="42.5673%" y="453" width="0.0677%" height="15" fill="rgb(220,134,1)" fg:x="1023148" fg:w="1627"/><text x="42.8173%" y="463.50"></text></g><g><title>set_state_bits (1,059 samples, 0.04%)</title><rect x="42.5909%" y="437" width="0.0441%" height="15" fill="rgb(237,168,5)" fg:x="1023716" fg:w="1059"/><text x="42.8409%" y="447.50"></text></g><g><title>btrfs_set_delalloc_extent (485 samples, 0.02%)</title><rect x="42.6148%" y="421" width="0.0202%" height="15" fill="rgb(231,100,33)" fg:x="1024290" fg:w="485"/><text x="42.8648%" y="431.50"></text></g><g><title>lock_extent_bits (5,166 samples, 0.21%)</title><rect x="42.4202%" y="485" width="0.2149%" height="15" fill="rgb(236,177,47)" fg:x="1019613" fg:w="5166"/><text x="42.6702%" y="495.50"></text></g><g><title>read_extent_buffer (734 samples, 0.03%)</title><rect x="42.6352%" y="485" width="0.0305%" height="15" fill="rgb(235,7,49)" fg:x="1024779" fg:w="734"/><text x="42.8852%" y="495.50"></text></g><g><title>btrfs_truncate_inode_items (232,284 samples, 9.66%)</title><rect x="33.0017%" y="501" width="9.6640%" height="15" fill="rgb(232,119,22)" fg:x="793230" fg:w="232284"/><text x="33.2517%" y="511.50">btrfs_truncate..</text></g><g><title>clear_extent_bit (330 samples, 0.01%)</title><rect x="42.6658%" y="501" width="0.0137%" height="15" fill="rgb(254,73,53)" fg:x="1025514" fg:w="330"/><text x="42.9158%" y="511.50"></text></g><g><title>__clear_extent_bit (318 samples, 0.01%)</title><rect x="42.6663%" y="485" width="0.0132%" height="15" fill="rgb(251,35,20)" fg:x="1025526" fg:w="318"/><text x="42.9163%" y="495.50"></text></g><g><title>_raw_spin_lock (1,238 samples, 0.05%)</title><rect x="42.7047%" y="469" width="0.0515%" height="15" fill="rgb(241,119,20)" fg:x="1026449" fg:w="1238"/><text x="42.9547%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (1,412 samples, 0.06%)</title><rect x="42.6975%" y="485" width="0.0587%" height="15" fill="rgb(207,102,14)" fg:x="1026276" fg:w="1412"/><text x="42.9475%" y="495.50"></text></g><g><title>_raw_spin_lock (435 samples, 0.02%)</title><rect x="42.7777%" y="469" width="0.0181%" height="15" fill="rgb(248,201,50)" fg:x="1028204" fg:w="435"/><text x="43.0277%" y="479.50"></text></g><g><title>_raw_spin_lock (366 samples, 0.02%)</title><rect x="42.8097%" y="453" width="0.0152%" height="15" fill="rgb(222,185,44)" fg:x="1028973" fg:w="366"/><text x="43.0597%" y="463.50"></text></g><g><title>btrfs_block_rsv_add_bytes (700 samples, 0.03%)</title><rect x="42.7958%" y="469" width="0.0291%" height="15" fill="rgb(218,107,18)" fg:x="1028640" fg:w="700"/><text x="43.0458%" y="479.50"></text></g><g><title>_raw_spin_lock (1,257 samples, 0.05%)</title><rect x="42.8901%" y="437" width="0.0523%" height="15" fill="rgb(237,177,39)" fg:x="1030907" fg:w="1257"/><text x="43.1401%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (585 samples, 0.02%)</title><rect x="42.9181%" y="421" width="0.0243%" height="15" fill="rgb(246,69,6)" fg:x="1031579" fg:w="585"/><text x="43.1681%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (303 samples, 0.01%)</title><rect x="43.0184%" y="421" width="0.0126%" height="15" fill="rgb(234,208,37)" fg:x="1033990" fg:w="303"/><text x="43.2684%" y="431.50"></text></g><g><title>_raw_spin_lock (627 samples, 0.03%)</title><rect x="43.0735%" y="405" width="0.0261%" height="15" fill="rgb(225,4,6)" fg:x="1035314" fg:w="627"/><text x="43.3235%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (3,773 samples, 0.16%)</title><rect x="42.9428%" y="437" width="0.1570%" height="15" fill="rgb(233,45,0)" fg:x="1032174" fg:w="3773"/><text x="43.1928%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,654 samples, 0.07%)</title><rect x="43.0310%" y="421" width="0.0688%" height="15" fill="rgb(226,136,5)" fg:x="1034293" fg:w="1654"/><text x="43.2810%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (756 samples, 0.03%)</title><rect x="43.1412%" y="421" width="0.0315%" height="15" fill="rgb(211,91,47)" fg:x="1036942" fg:w="756"/><text x="43.3912%" y="431.50"></text></g><g><title>_raw_spin_lock (727 samples, 0.03%)</title><rect x="43.2005%" y="405" width="0.0302%" height="15" fill="rgb(242,88,51)" fg:x="1038367" fg:w="727"/><text x="43.4505%" y="415.50"></text></g><g><title>__reserve_bytes (9,413 samples, 0.39%)</title><rect x="42.8392%" y="453" width="0.3916%" height="15" fill="rgb(230,91,28)" fg:x="1029684" fg:w="9413"/><text x="43.0892%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (3,150 samples, 0.13%)</title><rect x="43.0998%" y="437" width="0.1311%" height="15" fill="rgb(254,186,29)" fg:x="1035947" fg:w="3150"/><text x="43.3498%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,399 samples, 0.06%)</title><rect x="43.1727%" y="421" width="0.0582%" height="15" fill="rgb(238,6,4)" fg:x="1037698" fg:w="1399"/><text x="43.4227%" y="431.50"></text></g><g><title>btrfs_block_rsv_refill (11,413 samples, 0.47%)</title><rect x="42.7562%" y="485" width="0.4748%" height="15" fill="rgb(221,151,16)" fg:x="1027688" fg:w="11413"/><text x="43.0062%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (9,761 samples, 0.41%)</title><rect x="42.8249%" y="469" width="0.4061%" height="15" fill="rgb(251,143,52)" fg:x="1029340" fg:w="9761"/><text x="43.0749%" y="479.50"></text></g><g><title>btrfs_join_transaction (246 samples, 0.01%)</title><rect x="43.2310%" y="485" width="0.0102%" height="15" fill="rgb(206,90,15)" fg:x="1039101" fg:w="246"/><text x="43.4810%" y="495.50"></text></g><g><title>_raw_spin_lock (1,019 samples, 0.04%)</title><rect x="43.3614%" y="453" width="0.0424%" height="15" fill="rgb(218,35,8)" fg:x="1042234" fg:w="1019"/><text x="43.6114%" y="463.50"></text></g><g><title>join_transaction (2,134 samples, 0.09%)</title><rect x="43.3152%" y="469" width="0.0888%" height="15" fill="rgb(239,215,6)" fg:x="1041125" fg:w="2134"/><text x="43.5652%" y="479.50"></text></g><g><title>memset_erms (344 samples, 0.01%)</title><rect x="43.4443%" y="453" width="0.0143%" height="15" fill="rgb(245,116,39)" fg:x="1044226" fg:w="344"/><text x="43.6943%" y="463.50"></text></g><g><title>evict_refill_and_join (19,172 samples, 0.80%)</title><rect x="42.6795%" y="501" width="0.7976%" height="15" fill="rgb(242,65,28)" fg:x="1025844" fg:w="19172"/><text x="42.9295%" y="511.50"></text></g><g><title>start_transaction (5,669 samples, 0.24%)</title><rect x="43.2413%" y="485" width="0.2359%" height="15" fill="rgb(252,132,53)" fg:x="1039347" fg:w="5669"/><text x="43.4913%" y="495.50"></text></g><g><title>kmem_cache_alloc (1,757 samples, 0.07%)</title><rect x="43.4040%" y="469" width="0.0731%" height="15" fill="rgb(224,159,50)" fg:x="1043259" fg:w="1757"/><text x="43.6540%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (446 samples, 0.02%)</title><rect x="43.4586%" y="453" width="0.0186%" height="15" fill="rgb(224,93,4)" fg:x="1044570" fg:w="446"/><text x="43.7086%" y="463.50"></text></g><g><title>kfree (1,523 samples, 0.06%)</title><rect x="43.4805%" y="501" width="0.0634%" height="15" fill="rgb(208,81,34)" fg:x="1045098" fg:w="1523"/><text x="43.7305%" y="511.50"></text></g><g><title>__slab_free (532 samples, 0.02%)</title><rect x="43.5838%" y="485" width="0.0221%" height="15" fill="rgb(233,92,54)" fg:x="1047581" fg:w="532"/><text x="43.8338%" y="495.50"></text></g><g><title>kmem_cache_free (1,956 samples, 0.08%)</title><rect x="43.5439%" y="501" width="0.0814%" height="15" fill="rgb(237,21,14)" fg:x="1046621" fg:w="1956"/><text x="43.7939%" y="511.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (325 samples, 0.01%)</title><rect x="43.6117%" y="485" width="0.0135%" height="15" fill="rgb(249,128,51)" fg:x="1048252" fg:w="325"/><text x="43.8617%" y="495.50"></text></g><g><title>lock_extent_bits (257 samples, 0.01%)</title><rect x="43.6253%" y="501" width="0.0107%" height="15" fill="rgb(223,129,24)" fg:x="1048577" fg:w="257"/><text x="43.8753%" y="511.50"></text></g><g><title>__set_extent_bit (249 samples, 0.01%)</title><rect x="43.6256%" y="485" width="0.0104%" height="15" fill="rgb(231,168,25)" fg:x="1048585" fg:w="249"/><text x="43.8756%" y="495.50"></text></g><g><title>truncate_inode_pages_final (645 samples, 0.03%)</title><rect x="43.6394%" y="501" width="0.0268%" height="15" fill="rgb(224,39,20)" fg:x="1048916" fg:w="645"/><text x="43.8894%" y="511.50"></text></g><g><title>__pagevec_release (817 samples, 0.03%)</title><rect x="43.6756%" y="485" width="0.0340%" height="15" fill="rgb(225,152,53)" fg:x="1049787" fg:w="817"/><text x="43.9256%" y="495.50"></text></g><g><title>release_pages (539 samples, 0.02%)</title><rect x="43.6872%" y="469" width="0.0224%" height="15" fill="rgb(252,17,24)" fg:x="1050065" fg:w="539"/><text x="43.9372%" y="479.50"></text></g><g><title>delete_from_page_cache_batch (363 samples, 0.02%)</title><rect x="43.7103%" y="485" width="0.0151%" height="15" fill="rgb(250,114,30)" fg:x="1050620" fg:w="363"/><text x="43.9603%" y="495.50"></text></g><g><title>btrfs_evict_inode (656,817 samples, 27.33%)</title><rect x="16.4163%" y="517" width="27.3264%" height="15" fill="rgb(229,5,4)" fg:x="394583" fg:w="656817"/><text x="16.6663%" y="527.50">btrfs_evict_inode</text></g><g><title>truncate_inode_pages_range (1,839 samples, 0.08%)</title><rect x="43.6662%" y="501" width="0.0765%" height="15" fill="rgb(225,176,49)" fg:x="1049561" fg:w="1839"/><text x="43.9162%" y="511.50"></text></g><g><title>_raw_spin_lock_irq (337 samples, 0.01%)</title><rect x="43.7490%" y="501" width="0.0140%" height="15" fill="rgb(224,221,49)" fg:x="1051550" fg:w="337"/><text x="43.9990%" y="511.50"></text></g><g><title>clear_inode (494 samples, 0.02%)</title><rect x="43.7427%" y="517" width="0.0206%" height="15" fill="rgb(253,169,27)" fg:x="1051400" fg:w="494"/><text x="43.9927%" y="527.50"></text></g><g><title>inode_wait_for_writeback (440 samples, 0.02%)</title><rect x="43.7633%" y="517" width="0.0183%" height="15" fill="rgb(211,206,16)" fg:x="1051894" fg:w="440"/><text x="44.0133%" y="527.50"></text></g><g><title>_raw_spin_lock (310 samples, 0.01%)</title><rect x="43.7687%" y="501" width="0.0129%" height="15" fill="rgb(244,87,35)" fg:x="1052024" fg:w="310"/><text x="44.0187%" y="511.50"></text></g><g><title>evict (661,020 samples, 27.50%)</title><rect x="16.2845%" y="533" width="27.5012%" height="15" fill="rgb(246,28,10)" fg:x="391414" fg:w="661020"/><text x="16.5345%" y="543.50">evict</text></g><g><title>__legitimize_mnt (431 samples, 0.02%)</title><rect x="43.8630%" y="453" width="0.0179%" height="15" fill="rgb(229,12,44)" fg:x="1054291" fg:w="431"/><text x="44.1130%" y="463.50"></text></g><g><title>__legitimize_path (982 samples, 0.04%)</title><rect x="43.8505%" y="469" width="0.0409%" height="15" fill="rgb(210,145,37)" fg:x="1053990" fg:w="982"/><text x="44.1005%" y="479.50"></text></g><g><title>lockref_get_not_dead (249 samples, 0.01%)</title><rect x="43.8810%" y="453" width="0.0104%" height="15" fill="rgb(227,112,52)" fg:x="1054723" fg:w="249"/><text x="44.1310%" y="463.50"></text></g><g><title>legitimize_links (374 samples, 0.02%)</title><rect x="43.8915%" y="469" width="0.0156%" height="15" fill="rgb(238,155,34)" fg:x="1054976" fg:w="374"/><text x="44.1415%" y="479.50"></text></g><g><title>complete_walk (2,049 samples, 0.09%)</title><rect x="43.8248%" y="501" width="0.0852%" height="15" fill="rgb(239,226,36)" fg:x="1053373" fg:w="2049"/><text x="44.0748%" y="511.50"></text></g><g><title>try_to_unlazy (1,815 samples, 0.08%)</title><rect x="43.8345%" y="485" width="0.0755%" height="15" fill="rgb(230,16,23)" fg:x="1053607" fg:w="1815"/><text x="44.0845%" y="495.50"></text></g><g><title>inode_permission.part.0 (1,070 samples, 0.04%)</title><rect x="43.9341%" y="485" width="0.0445%" height="15" fill="rgb(236,171,36)" fg:x="1055999" fg:w="1070"/><text x="44.1841%" y="495.50"></text></g><g><title>generic_permission (409 samples, 0.02%)</title><rect x="43.9616%" y="469" width="0.0170%" height="15" fill="rgb(221,22,14)" fg:x="1056660" fg:w="409"/><text x="44.2116%" y="479.50"></text></g><g><title>link_path_walk.part.0 (1,774 samples, 0.07%)</title><rect x="43.9101%" y="501" width="0.0738%" height="15" fill="rgb(242,43,11)" fg:x="1055422" fg:w="1774"/><text x="44.1601%" y="511.50"></text></g><g><title>__fget_files (1,283 samples, 0.05%)</title><rect x="44.0424%" y="469" width="0.0534%" height="15" fill="rgb(232,69,23)" fg:x="1058604" fg:w="1283"/><text x="44.2924%" y="479.50"></text></g><g><title>__fget_light (1,866 samples, 0.08%)</title><rect x="44.0184%" y="485" width="0.0776%" height="15" fill="rgb(216,180,54)" fg:x="1058026" fg:w="1866"/><text x="44.2684%" y="495.50"></text></g><g><title>path_init (2,872 samples, 0.12%)</title><rect x="43.9839%" y="501" width="0.1195%" height="15" fill="rgb(216,5,24)" fg:x="1057196" fg:w="2872"/><text x="44.2339%" y="511.50"></text></g><g><title>path_parentat (7,909 samples, 0.33%)</title><rect x="43.8159%" y="517" width="0.3290%" height="15" fill="rgb(225,89,9)" fg:x="1053160" fg:w="7909"/><text x="44.0659%" y="527.50"></text></g><g><title>terminate_walk (1,001 samples, 0.04%)</title><rect x="44.1033%" y="501" width="0.0416%" height="15" fill="rgb(243,75,33)" fg:x="1060068" fg:w="1001"/><text x="44.3533%" y="511.50"></text></g><g><title>filename_parentat (8,636 samples, 0.36%)</title><rect x="43.7857%" y="533" width="0.3593%" height="15" fill="rgb(247,141,45)" fg:x="1052434" fg:w="8636"/><text x="44.0357%" y="543.50"></text></g><g><title>ihold (972 samples, 0.04%)</title><rect x="44.1450%" y="533" width="0.0404%" height="15" fill="rgb(232,177,36)" fg:x="1061070" fg:w="972"/><text x="44.3950%" y="543.50"></text></g><g><title>_atomic_dec_and_lock (332 samples, 0.01%)</title><rect x="44.2055%" y="517" width="0.0138%" height="15" fill="rgb(219,125,36)" fg:x="1062523" fg:w="332"/><text x="44.4555%" y="527.50"></text></g><g><title>iput.part.0 (1,126 samples, 0.05%)</title><rect x="44.1857%" y="533" width="0.0468%" height="15" fill="rgb(227,94,9)" fg:x="1062047" fg:w="1126"/><text x="44.4357%" y="543.50"></text></g><g><title>btrfs_drop_inode (312 samples, 0.01%)</title><rect x="44.2195%" y="517" width="0.0130%" height="15" fill="rgb(240,34,52)" fg:x="1062861" fg:w="312"/><text x="44.4695%" y="527.50"></text></g><g><title>__slab_free (247 samples, 0.01%)</title><rect x="44.2578%" y="517" width="0.0103%" height="15" fill="rgb(216,45,12)" fg:x="1063780" fg:w="247"/><text x="44.5078%" y="527.50"></text></g><g><title>kmem_cache_free (1,264 samples, 0.05%)</title><rect x="44.2325%" y="533" width="0.0526%" height="15" fill="rgb(246,21,19)" fg:x="1063173" fg:w="1264"/><text x="44.4825%" y="543.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (404 samples, 0.02%)</title><rect x="44.2683%" y="517" width="0.0168%" height="15" fill="rgb(213,98,42)" fg:x="1064033" fg:w="404"/><text x="44.5183%" y="527.50"></text></g><g><title>mnt_drop_write (741 samples, 0.03%)</title><rect x="44.2851%" y="533" width="0.0308%" height="15" fill="rgb(250,136,47)" fg:x="1064437" fg:w="741"/><text x="44.5351%" y="543.50"></text></g><g><title>__mnt_want_write (518 samples, 0.02%)</title><rect x="44.3303%" y="517" width="0.0216%" height="15" fill="rgb(251,124,27)" fg:x="1065524" fg:w="518"/><text x="44.5803%" y="527.50"></text></g><g><title>mnt_want_write (977 samples, 0.04%)</title><rect x="44.3159%" y="533" width="0.0406%" height="15" fill="rgb(229,180,14)" fg:x="1065178" fg:w="977"/><text x="44.5659%" y="543.50"></text></g><g><title>putname (722 samples, 0.03%)</title><rect x="44.3741%" y="533" width="0.0300%" height="15" fill="rgb(245,216,25)" fg:x="1066575" fg:w="722"/><text x="44.6241%" y="543.50"></text></g><g><title>apparmor_path_unlink (343 samples, 0.01%)</title><rect x="44.4092%" y="517" width="0.0143%" height="15" fill="rgb(251,43,5)" fg:x="1067420" fg:w="343"/><text x="44.6592%" y="527.50"></text></g><g><title>security_path_unlink (1,882 samples, 0.08%)</title><rect x="44.4041%" y="533" width="0.0783%" height="15" fill="rgb(250,128,24)" fg:x="1067297" fg:w="1882"/><text x="44.6541%" y="543.50"></text></g><g><title>tomoyo_path_unlink (1,416 samples, 0.06%)</title><rect x="44.4235%" y="517" width="0.0589%" height="15" fill="rgb(217,117,27)" fg:x="1067763" fg:w="1416"/><text x="44.6735%" y="527.50"></text></g><g><title>tomoyo_path_perm (1,367 samples, 0.06%)</title><rect x="44.4255%" y="501" width="0.0569%" height="15" fill="rgb(245,147,4)" fg:x="1067812" fg:w="1367"/><text x="44.6755%" y="511.50"></text></g><g><title>tomoyo_init_request_info (1,007 samples, 0.04%)</title><rect x="44.4405%" y="485" width="0.0419%" height="15" fill="rgb(242,201,35)" fg:x="1068172" fg:w="1007"/><text x="44.6905%" y="495.50"></text></g><g><title>tomoyo_domain (624 samples, 0.03%)</title><rect x="44.4564%" y="469" width="0.0260%" height="15" fill="rgb(218,181,1)" fg:x="1068555" fg:w="624"/><text x="44.7064%" y="479.50"></text></g><g><title>up_write (243 samples, 0.01%)</title><rect x="44.4824%" y="533" width="0.0101%" height="15" fill="rgb(222,6,29)" fg:x="1069179" fg:w="243"/><text x="44.7324%" y="543.50"></text></g><g><title>_raw_spin_lock (305 samples, 0.01%)</title><rect x="44.5127%" y="517" width="0.0127%" height="15" fill="rgb(208,186,3)" fg:x="1069907" fg:w="305"/><text x="44.7627%" y="527.50"></text></g><g><title>_raw_spin_lock (1,771 samples, 0.07%)</title><rect x="44.6889%" y="453" width="0.0737%" height="15" fill="rgb(216,36,26)" fg:x="1074143" fg:w="1771"/><text x="44.9389%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (674 samples, 0.03%)</title><rect x="44.7346%" y="437" width="0.0280%" height="15" fill="rgb(248,201,23)" fg:x="1075240" fg:w="674"/><text x="44.9846%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (2,868 samples, 0.12%)</title><rect x="44.6510%" y="485" width="0.1193%" height="15" fill="rgb(251,170,31)" fg:x="1073232" fg:w="2868"/><text x="44.9010%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (2,644 samples, 0.11%)</title><rect x="44.6603%" y="469" width="0.1100%" height="15" fill="rgb(207,110,25)" fg:x="1073456" fg:w="2644"/><text x="44.9103%" y="479.50"></text></g><g><title>__btrfs_end_transaction (6,038 samples, 0.25%)</title><rect x="44.5510%" y="501" width="0.2512%" height="15" fill="rgb(250,54,15)" fg:x="1070828" fg:w="6038"/><text x="44.8010%" y="511.50"></text></g><g><title>kmem_cache_free (766 samples, 0.03%)</title><rect x="44.7703%" y="485" width="0.0319%" height="15" fill="rgb(227,68,33)" fg:x="1076100" fg:w="766"/><text x="45.0203%" y="495.50"></text></g><g><title>btrfs_end_log_trans (262 samples, 0.01%)</title><rect x="44.9106%" y="469" width="0.0109%" height="15" fill="rgb(238,34,41)" fg:x="1079472" fg:w="262"/><text x="45.1606%" y="479.50"></text></g><g><title>enqueue_task_fair (274 samples, 0.01%)</title><rect x="44.9987%" y="357" width="0.0114%" height="15" fill="rgb(220,11,15)" fg:x="1081589" fg:w="274"/><text x="45.2487%" y="367.50"></text></g><g><title>ttwu_do_activate (597 samples, 0.02%)</title><rect x="44.9980%" y="373" width="0.0248%" height="15" fill="rgb(246,111,35)" fg:x="1081571" fg:w="597"/><text x="45.2480%" y="383.50"></text></g><g><title>psi_task_change (305 samples, 0.01%)</title><rect x="45.0101%" y="357" width="0.0127%" height="15" fill="rgb(209,88,53)" fg:x="1081863" fg:w="305"/><text x="45.2601%" y="367.50"></text></g><g><title>psi_group_change (266 samples, 0.01%)</title><rect x="45.0117%" y="341" width="0.0111%" height="15" fill="rgb(231,185,47)" fg:x="1081902" fg:w="266"/><text x="45.2617%" y="351.50"></text></g><g><title>__wake_up_common (2,263 samples, 0.09%)</title><rect x="44.9350%" y="421" width="0.0942%" height="15" fill="rgb(233,154,1)" fg:x="1080058" fg:w="2263"/><text x="45.1850%" y="431.50"></text></g><g><title>autoremove_wake_function (2,211 samples, 0.09%)</title><rect x="44.9372%" y="405" width="0.0920%" height="15" fill="rgb(225,15,46)" fg:x="1080110" fg:w="2211"/><text x="45.1872%" y="415.50"></text></g><g><title>try_to_wake_up (2,182 samples, 0.09%)</title><rect x="44.9384%" y="389" width="0.0908%" height="15" fill="rgb(211,135,41)" fg:x="1080139" fg:w="2182"/><text x="45.1884%" y="399.50"></text></g><g><title>__wake_up_common_lock (2,500 samples, 0.10%)</title><rect x="44.9344%" y="437" width="0.1040%" height="15" fill="rgb(208,54,0)" fg:x="1080043" fg:w="2500"/><text x="45.1844%" y="447.50"></text></g><g><title>btrfs_tree_unlock (436 samples, 0.02%)</title><rect x="45.0384%" y="437" width="0.0181%" height="15" fill="rgb(244,136,14)" fg:x="1082543" fg:w="436"/><text x="45.2884%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (332 samples, 0.01%)</title><rect x="45.0568%" y="437" width="0.0138%" height="15" fill="rgb(241,56,14)" fg:x="1082986" fg:w="332"/><text x="45.3068%" y="447.50"></text></g><g><title>btrfs_free_path (3,835 samples, 0.16%)</title><rect x="44.9215%" y="469" width="0.1596%" height="15" fill="rgb(205,80,24)" fg:x="1079734" fg:w="3835"/><text x="45.1715%" y="479.50"></text></g><g><title>btrfs_release_path (3,746 samples, 0.16%)</title><rect x="44.9252%" y="453" width="0.1558%" height="15" fill="rgb(220,57,4)" fg:x="1079823" fg:w="3746"/><text x="45.1752%" y="463.50"></text></g><g><title>release_extent_buffer (251 samples, 0.01%)</title><rect x="45.0706%" y="437" width="0.0104%" height="15" fill="rgb(226,193,50)" fg:x="1083318" fg:w="251"/><text x="45.3206%" y="447.50"></text></g><g><title>prepare_to_wait_event (255 samples, 0.01%)</title><rect x="45.1479%" y="405" width="0.0106%" height="15" fill="rgb(231,168,22)" fg:x="1085174" fg:w="255"/><text x="45.3979%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (842 samples, 0.04%)</title><rect x="45.1316%" y="421" width="0.0350%" height="15" fill="rgb(254,215,14)" fg:x="1084784" fg:w="842"/><text x="45.3816%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (1,087 samples, 0.05%)</title><rect x="45.1295%" y="437" width="0.0452%" height="15" fill="rgb(211,115,16)" fg:x="1084732" fg:w="1087"/><text x="45.3795%" y="447.50"></text></g><g><title>balance_level (361 samples, 0.02%)</title><rect x="45.1751%" y="437" width="0.0150%" height="15" fill="rgb(236,210,16)" fg:x="1085828" fg:w="361"/><text x="45.4251%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (464 samples, 0.02%)</title><rect x="45.2203%" y="389" width="0.0193%" height="15" fill="rgb(221,94,12)" fg:x="1086915" fg:w="464"/><text x="45.4703%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (429 samples, 0.02%)</title><rect x="45.2218%" y="373" width="0.0178%" height="15" fill="rgb(235,218,49)" fg:x="1086950" fg:w="429"/><text x="45.4718%" y="383.50"></text></g><g><title>prepare_to_wait_event (517 samples, 0.02%)</title><rect x="45.2183%" y="405" width="0.0215%" height="15" fill="rgb(217,114,14)" fg:x="1086868" fg:w="517"/><text x="45.4683%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,520 samples, 0.06%)</title><rect x="45.1957%" y="421" width="0.0632%" height="15" fill="rgb(216,145,22)" fg:x="1086323" fg:w="1520"/><text x="45.4457%" y="431.50"></text></g><g><title>schedule (372 samples, 0.02%)</title><rect x="45.2434%" y="405" width="0.0155%" height="15" fill="rgb(217,112,39)" fg:x="1087471" fg:w="372"/><text x="45.4934%" y="415.50"></text></g><g><title>__schedule (363 samples, 0.02%)</title><rect x="45.2438%" y="389" width="0.0151%" height="15" fill="rgb(225,85,32)" fg:x="1087480" fg:w="363"/><text x="45.4938%" y="399.50"></text></g><g><title>btrfs_lock_root_node (1,721 samples, 0.07%)</title><rect x="45.1948%" y="437" width="0.0716%" height="15" fill="rgb(245,209,47)" fg:x="1086303" fg:w="1721"/><text x="45.4448%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (605 samples, 0.03%)</title><rect x="45.2664%" y="437" width="0.0252%" height="15" fill="rgb(218,220,15)" fg:x="1088024" fg:w="605"/><text x="45.5164%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (818 samples, 0.03%)</title><rect x="45.3134%" y="437" width="0.0340%" height="15" fill="rgb(222,202,31)" fg:x="1089152" fg:w="818"/><text x="45.5634%" y="447.50"></text></g><g><title>btrfs_get_64 (307 samples, 0.01%)</title><rect x="45.3642%" y="421" width="0.0128%" height="15" fill="rgb(243,203,4)" fg:x="1090375" fg:w="307"/><text x="45.6142%" y="431.50"></text></g><g><title>__radix_tree_lookup (504 samples, 0.02%)</title><rect x="45.3904%" y="405" width="0.0210%" height="15" fill="rgb(237,92,17)" fg:x="1091004" fg:w="504"/><text x="45.6404%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (446 samples, 0.02%)</title><rect x="45.4114%" y="405" width="0.0186%" height="15" fill="rgb(231,119,7)" fg:x="1091508" fg:w="446"/><text x="45.6614%" y="415.50"></text></g><g><title>mark_page_accessed (310 samples, 0.01%)</title><rect x="45.4170%" y="389" width="0.0129%" height="15" fill="rgb(237,82,41)" fg:x="1091644" fg:w="310"/><text x="45.6670%" y="399.50"></text></g><g><title>find_extent_buffer (1,141 samples, 0.05%)</title><rect x="45.3833%" y="421" width="0.0475%" height="15" fill="rgb(226,81,48)" fg:x="1090832" fg:w="1141"/><text x="45.6333%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (2,265 samples, 0.09%)</title><rect x="45.3474%" y="437" width="0.0942%" height="15" fill="rgb(234,70,51)" fg:x="1089970" fg:w="2265"/><text x="45.5974%" y="447.50"></text></g><g><title>read_extent_buffer (262 samples, 0.01%)</title><rect x="45.4307%" y="421" width="0.0109%" height="15" fill="rgb(251,86,4)" fg:x="1091973" fg:w="262"/><text x="45.6807%" y="431.50"></text></g><g><title>btrfs_lookup_dir_index_item (9,160 samples, 0.38%)</title><rect x="45.0811%" y="469" width="0.3811%" height="15" fill="rgb(244,144,28)" fg:x="1083569" fg:w="9160"/><text x="45.3311%" y="479.50"></text></g><g><title>btrfs_search_slot (8,990 samples, 0.37%)</title><rect x="45.0882%" y="453" width="0.3740%" height="15" fill="rgb(232,161,39)" fg:x="1083739" fg:w="8990"/><text x="45.3382%" y="463.50"></text></g><g><title>unlock_up (305 samples, 0.01%)</title><rect x="45.4495%" y="437" width="0.0127%" height="15" fill="rgb(247,34,51)" fg:x="1092424" fg:w="305"/><text x="45.6995%" y="447.50"></text></g><g><title>finish_wait (377 samples, 0.02%)</title><rect x="45.5432%" y="405" width="0.0157%" height="15" fill="rgb(225,132,2)" fg:x="1094677" fg:w="377"/><text x="45.7932%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (352 samples, 0.01%)</title><rect x="45.5443%" y="389" width="0.0146%" height="15" fill="rgb(209,159,44)" fg:x="1094702" fg:w="352"/><text x="45.7943%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (331 samples, 0.01%)</title><rect x="45.5451%" y="373" width="0.0138%" height="15" fill="rgb(251,214,1)" fg:x="1094723" fg:w="331"/><text x="45.7951%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (1,157 samples, 0.05%)</title><rect x="45.5635%" y="389" width="0.0481%" height="15" fill="rgb(247,84,47)" fg:x="1095165" fg:w="1157"/><text x="45.8135%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,087 samples, 0.05%)</title><rect x="45.5664%" y="373" width="0.0452%" height="15" fill="rgb(240,111,43)" fg:x="1095235" fg:w="1087"/><text x="45.8164%" y="383.50"></text></g><g><title>prepare_to_wait_event (1,289 samples, 0.05%)</title><rect x="45.5590%" y="405" width="0.0536%" height="15" fill="rgb(215,214,35)" fg:x="1095056" fg:w="1289"/><text x="45.8090%" y="415.50"></text></g><g><title>dequeue_entity (256 samples, 0.01%)</title><rect x="45.6251%" y="357" width="0.0107%" height="15" fill="rgb(248,207,23)" fg:x="1096644" fg:w="256"/><text x="45.8751%" y="367.50"></text></g><g><title>dequeue_task_fair (307 samples, 0.01%)</title><rect x="45.6237%" y="373" width="0.0128%" height="15" fill="rgb(214,186,4)" fg:x="1096612" fg:w="307"/><text x="45.8737%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (303 samples, 0.01%)</title><rect x="45.6389%" y="357" width="0.0126%" height="15" fill="rgb(220,133,22)" fg:x="1096977" fg:w="303"/><text x="45.8889%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (294 samples, 0.01%)</title><rect x="45.6393%" y="341" width="0.0122%" height="15" fill="rgb(239,134,19)" fg:x="1096986" fg:w="294"/><text x="45.8893%" y="351.50"></text></g><g><title>native_write_msr (284 samples, 0.01%)</title><rect x="45.6397%" y="325" width="0.0118%" height="15" fill="rgb(250,140,9)" fg:x="1096996" fg:w="284"/><text x="45.8897%" y="335.50"></text></g><g><title>finish_task_switch (385 samples, 0.02%)</title><rect x="45.6365%" y="373" width="0.0160%" height="15" fill="rgb(225,59,14)" fg:x="1096919" fg:w="385"/><text x="45.8865%" y="383.50"></text></g><g><title>psi_task_change (251 samples, 0.01%)</title><rect x="45.6567%" y="373" width="0.0104%" height="15" fill="rgb(214,152,51)" fg:x="1097405" fg:w="251"/><text x="45.9067%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (3,393 samples, 0.14%)</title><rect x="45.5287%" y="421" width="0.1412%" height="15" fill="rgb(251,227,43)" fg:x="1094328" fg:w="3393"/><text x="45.7787%" y="431.50"></text></g><g><title>schedule (1,274 samples, 0.05%)</title><rect x="45.6169%" y="405" width="0.0530%" height="15" fill="rgb(241,96,17)" fg:x="1096447" fg:w="1274"/><text x="45.8669%" y="415.50"></text></g><g><title>__schedule (1,249 samples, 0.05%)</title><rect x="45.6179%" y="389" width="0.0520%" height="15" fill="rgb(234,198,43)" fg:x="1096472" fg:w="1249"/><text x="45.8679%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (3,745 samples, 0.16%)</title><rect x="45.5264%" y="437" width="0.1558%" height="15" fill="rgb(220,108,29)" fg:x="1094272" fg:w="3745"/><text x="45.7764%" y="447.50"></text></g><g><title>btrfs_root_node (296 samples, 0.01%)</title><rect x="45.6699%" y="421" width="0.0123%" height="15" fill="rgb(226,163,33)" fg:x="1097721" fg:w="296"/><text x="45.9199%" y="431.50"></text></g><g><title>balance_level (371 samples, 0.02%)</title><rect x="45.6826%" y="437" width="0.0154%" height="15" fill="rgb(205,194,45)" fg:x="1098027" fg:w="371"/><text x="45.9326%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (572 samples, 0.02%)</title><rect x="45.7302%" y="389" width="0.0238%" height="15" fill="rgb(206,143,44)" fg:x="1099170" fg:w="572"/><text x="45.9802%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (536 samples, 0.02%)</title><rect x="45.7317%" y="373" width="0.0223%" height="15" fill="rgb(236,136,36)" fg:x="1099206" fg:w="536"/><text x="45.9817%" y="383.50"></text></g><g><title>prepare_to_wait_event (633 samples, 0.03%)</title><rect x="45.7280%" y="405" width="0.0263%" height="15" fill="rgb(249,172,42)" fg:x="1099119" fg:w="633"/><text x="45.9780%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,754 samples, 0.07%)</title><rect x="45.7029%" y="421" width="0.0730%" height="15" fill="rgb(216,139,23)" fg:x="1098515" fg:w="1754"/><text x="45.9529%" y="431.50"></text></g><g><title>schedule (406 samples, 0.02%)</title><rect x="45.7590%" y="405" width="0.0169%" height="15" fill="rgb(207,166,20)" fg:x="1099863" fg:w="406"/><text x="46.0090%" y="415.50"></text></g><g><title>__schedule (389 samples, 0.02%)</title><rect x="45.7597%" y="389" width="0.0162%" height="15" fill="rgb(210,209,22)" fg:x="1099880" fg:w="389"/><text x="46.0097%" y="399.50"></text></g><g><title>btrfs_lock_root_node (1,975 samples, 0.08%)</title><rect x="45.7017%" y="437" width="0.0822%" height="15" fill="rgb(232,118,20)" fg:x="1098486" fg:w="1975"/><text x="45.9517%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (642 samples, 0.03%)</title><rect x="45.7839%" y="437" width="0.0267%" height="15" fill="rgb(238,113,42)" fg:x="1100461" fg:w="642"/><text x="46.0339%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (246 samples, 0.01%)</title><rect x="45.8238%" y="437" width="0.0102%" height="15" fill="rgb(231,42,5)" fg:x="1101420" fg:w="246"/><text x="46.0738%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (901 samples, 0.04%)</title><rect x="45.8340%" y="437" width="0.0375%" height="15" fill="rgb(243,166,24)" fg:x="1101666" fg:w="901"/><text x="46.0840%" y="447.50"></text></g><g><title>btrfs_get_64 (263 samples, 0.01%)</title><rect x="45.8894%" y="421" width="0.0109%" height="15" fill="rgb(237,226,12)" fg:x="1102998" fg:w="263"/><text x="46.1394%" y="431.50"></text></g><g><title>__radix_tree_lookup (609 samples, 0.03%)</title><rect x="45.9167%" y="405" width="0.0253%" height="15" fill="rgb(229,133,24)" fg:x="1103655" fg:w="609"/><text x="46.1667%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (448 samples, 0.02%)</title><rect x="45.9423%" y="405" width="0.0186%" height="15" fill="rgb(238,33,43)" fg:x="1104268" fg:w="448"/><text x="46.1923%" y="415.50"></text></g><g><title>mark_page_accessed (305 samples, 0.01%)</title><rect x="45.9482%" y="389" width="0.0127%" height="15" fill="rgb(227,59,38)" fg:x="1104411" fg:w="305"/><text x="46.1982%" y="399.50"></text></g><g><title>find_extent_buffer (1,314 samples, 0.05%)</title><rect x="45.9069%" y="421" width="0.0547%" height="15" fill="rgb(230,97,0)" fg:x="1103418" fg:w="1314"/><text x="46.1569%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (2,443 samples, 0.10%)</title><rect x="45.8715%" y="437" width="0.1016%" height="15" fill="rgb(250,173,50)" fg:x="1102567" fg:w="2443"/><text x="46.1215%" y="447.50"></text></g><g><title>read_extent_buffer (278 samples, 0.01%)</title><rect x="45.9616%" y="421" width="0.0116%" height="15" fill="rgb(240,15,50)" fg:x="1104732" fg:w="278"/><text x="46.2116%" y="431.50"></text></g><g><title>btrfs_search_slot (12,414 samples, 0.52%)</title><rect x="45.4793%" y="453" width="0.5165%" height="15" fill="rgb(221,93,22)" fg:x="1093140" fg:w="12414"/><text x="45.7293%" y="463.50"></text></g><g><title>unlock_up (321 samples, 0.01%)</title><rect x="45.9824%" y="437" width="0.0134%" height="15" fill="rgb(245,180,53)" fg:x="1105233" fg:w="321"/><text x="46.2324%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (13,100 samples, 0.55%)</title><rect x="45.4622%" y="469" width="0.5450%" height="15" fill="rgb(231,88,51)" fg:x="1092729" fg:w="13100"/><text x="45.7122%" y="479.50"></text></g><g><title>crc32c (275 samples, 0.01%)</title><rect x="45.9958%" y="453" width="0.0114%" height="15" fill="rgb(240,58,21)" fg:x="1105554" fg:w="275"/><text x="46.2458%" y="463.50"></text></g><g><title>enqueue_task_fair (274 samples, 0.01%)</title><rect x="46.0782%" y="373" width="0.0114%" height="15" fill="rgb(237,21,10)" fg:x="1107536" fg:w="274"/><text x="46.3282%" y="383.50"></text></g><g><title>ttwu_do_activate (571 samples, 0.02%)</title><rect x="46.0778%" y="389" width="0.0238%" height="15" fill="rgb(218,43,11)" fg:x="1107527" fg:w="571"/><text x="46.3278%" y="399.50"></text></g><g><title>psi_task_change (287 samples, 0.01%)</title><rect x="46.0897%" y="373" width="0.0119%" height="15" fill="rgb(218,221,29)" fg:x="1107811" fg:w="287"/><text x="46.3397%" y="383.50"></text></g><g><title>psi_group_change (260 samples, 0.01%)</title><rect x="46.0908%" y="357" width="0.0108%" height="15" fill="rgb(214,118,42)" fg:x="1107838" fg:w="260"/><text x="46.3408%" y="367.50"></text></g><g><title>__wake_up_common (2,115 samples, 0.09%)</title><rect x="46.0205%" y="437" width="0.0880%" height="15" fill="rgb(251,200,26)" fg:x="1106149" fg:w="2115"/><text x="46.2705%" y="447.50"></text></g><g><title>autoremove_wake_function (2,072 samples, 0.09%)</title><rect x="46.0223%" y="421" width="0.0862%" height="15" fill="rgb(237,101,39)" fg:x="1106192" fg:w="2072"/><text x="46.2723%" y="431.50"></text></g><g><title>try_to_wake_up (2,041 samples, 0.08%)</title><rect x="46.0236%" y="405" width="0.0849%" height="15" fill="rgb(251,117,11)" fg:x="1106223" fg:w="2041"/><text x="46.2736%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (257 samples, 0.01%)</title><rect x="46.1085%" y="437" width="0.0107%" height="15" fill="rgb(216,223,23)" fg:x="1108264" fg:w="257"/><text x="46.3585%" y="447.50"></text></g><g><title>__wake_up_common_lock (2,401 samples, 0.10%)</title><rect x="46.0202%" y="453" width="0.0999%" height="15" fill="rgb(251,54,12)" fg:x="1106141" fg:w="2401"/><text x="46.2702%" y="463.50"></text></g><g><title>btrfs_tree_unlock (434 samples, 0.02%)</title><rect x="46.1201%" y="453" width="0.0181%" height="15" fill="rgb(254,176,54)" fg:x="1108543" fg:w="434"/><text x="46.3701%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (367 samples, 0.02%)</title><rect x="46.1386%" y="453" width="0.0153%" height="15" fill="rgb(210,32,8)" fg:x="1108988" fg:w="367"/><text x="46.3886%" y="463.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.01%)</title><rect x="46.1437%" y="437" width="0.0102%" height="15" fill="rgb(235,52,38)" fg:x="1109109" fg:w="246"/><text x="46.3937%" y="447.50"></text></g><g><title>btrfs_release_path (3,821 samples, 0.16%)</title><rect x="46.0072%" y="469" width="0.1590%" height="15" fill="rgb(231,4,44)" fg:x="1105829" fg:w="3821"/><text x="46.2572%" y="479.50"></text></g><g><title>release_extent_buffer (295 samples, 0.01%)</title><rect x="46.1539%" y="453" width="0.0123%" height="15" fill="rgb(249,2,32)" fg:x="1109355" fg:w="295"/><text x="46.4039%" y="463.50"></text></g><g><title>kmem_cache_alloc (531 samples, 0.02%)</title><rect x="46.1662%" y="469" width="0.0221%" height="15" fill="rgb(224,65,26)" fg:x="1109650" fg:w="531"/><text x="46.4162%" y="479.50"></text></g><g><title>kmem_cache_free (581 samples, 0.02%)</title><rect x="46.1883%" y="469" width="0.0242%" height="15" fill="rgb(250,73,40)" fg:x="1110181" fg:w="581"/><text x="46.4383%" y="479.50"></text></g><g><title>mutex_lock (533 samples, 0.02%)</title><rect x="46.2124%" y="469" width="0.0222%" height="15" fill="rgb(253,177,16)" fg:x="1110762" fg:w="533"/><text x="46.4624%" y="479.50"></text></g><g><title>btrfs_del_dir_entries_in_log (33,203 samples, 1.38%)</title><rect x="44.8693%" y="485" width="1.3814%" height="15" fill="rgb(217,32,34)" fg:x="1078479" fg:w="33203"/><text x="45.1193%" y="495.50"></text></g><g><title>mutex_unlock (387 samples, 0.02%)</title><rect x="46.2346%" y="469" width="0.0161%" height="15" fill="rgb(212,7,10)" fg:x="1111295" fg:w="387"/><text x="46.4846%" y="479.50"></text></g><g><title>select_task_rq_fair (436 samples, 0.02%)</title><rect x="46.4464%" y="357" width="0.0181%" height="15" fill="rgb(245,89,8)" fg:x="1116386" fg:w="436"/><text x="46.6964%" y="367.50"></text></g><g><title>enqueue_entity (503 samples, 0.02%)</title><rect x="46.4714%" y="325" width="0.0209%" height="15" fill="rgb(237,16,53)" fg:x="1116987" fg:w="503"/><text x="46.7214%" y="335.50"></text></g><g><title>enqueue_task_fair (641 samples, 0.03%)</title><rect x="46.4667%" y="341" width="0.0267%" height="15" fill="rgb(250,204,30)" fg:x="1116874" fg:w="641"/><text x="46.7167%" y="351.50"></text></g><g><title>ttwu_do_activate (1,300 samples, 0.05%)</title><rect x="46.4653%" y="357" width="0.0541%" height="15" fill="rgb(208,77,27)" fg:x="1116841" fg:w="1300"/><text x="46.7153%" y="367.50"></text></g><g><title>psi_task_change (625 samples, 0.03%)</title><rect x="46.4934%" y="341" width="0.0260%" height="15" fill="rgb(250,204,28)" fg:x="1117516" fg:w="625"/><text x="46.7434%" y="351.50"></text></g><g><title>psi_group_change (557 samples, 0.02%)</title><rect x="46.4963%" y="325" width="0.0232%" height="15" fill="rgb(244,63,21)" fg:x="1117584" fg:w="557"/><text x="46.7463%" y="335.50"></text></g><g><title>__wake_up_common (5,303 samples, 0.22%)</title><rect x="46.3159%" y="405" width="0.2206%" height="15" fill="rgb(236,85,44)" fg:x="1113248" fg:w="5303"/><text x="46.5659%" y="415.50"></text></g><g><title>autoremove_wake_function (5,207 samples, 0.22%)</title><rect x="46.3199%" y="389" width="0.2166%" height="15" fill="rgb(215,98,4)" fg:x="1113344" fg:w="5207"/><text x="46.5699%" y="399.50"></text></g><g><title>try_to_wake_up (5,161 samples, 0.21%)</title><rect x="46.3218%" y="373" width="0.2147%" height="15" fill="rgb(235,38,11)" fg:x="1113390" fg:w="5161"/><text x="46.5718%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (1,204 samples, 0.05%)</title><rect x="46.5365%" y="405" width="0.0501%" height="15" fill="rgb(254,186,25)" fg:x="1118551" fg:w="1204"/><text x="46.7865%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,139 samples, 0.05%)</title><rect x="46.5392%" y="389" width="0.0474%" height="15" fill="rgb(225,55,31)" fg:x="1118616" fg:w="1139"/><text x="46.7892%" y="399.50"></text></g><g><title>__wake_up_common_lock (6,596 samples, 0.27%)</title><rect x="46.3147%" y="421" width="0.2744%" height="15" fill="rgb(211,15,21)" fg:x="1113219" fg:w="6596"/><text x="46.5647%" y="431.50"></text></g><g><title>btrfs_tree_unlock (630 samples, 0.03%)</title><rect x="46.5892%" y="421" width="0.0262%" height="15" fill="rgb(215,187,41)" fg:x="1119819" fg:w="630"/><text x="46.8392%" y="431.50"></text></g><g><title>_raw_spin_lock (480 samples, 0.02%)</title><rect x="46.6269%" y="405" width="0.0200%" height="15" fill="rgb(248,69,32)" fg:x="1120723" fg:w="480"/><text x="46.8769%" y="415.50"></text></g><g><title>free_extent_buffer.part.0 (733 samples, 0.03%)</title><rect x="46.6164%" y="421" width="0.0305%" height="15" fill="rgb(252,102,52)" fg:x="1120471" fg:w="733"/><text x="46.8664%" y="431.50"></text></g><g><title>btrfs_free_path (9,279 samples, 0.39%)</title><rect x="46.2858%" y="453" width="0.3860%" height="15" fill="rgb(253,140,32)" fg:x="1112526" fg:w="9279"/><text x="46.5358%" y="463.50"></text></g><g><title>btrfs_release_path (9,035 samples, 0.38%)</title><rect x="46.2960%" y="437" width="0.3759%" height="15" fill="rgb(216,56,42)" fg:x="1112770" fg:w="9035"/><text x="46.5460%" y="447.50"></text></g><g><title>release_extent_buffer (601 samples, 0.03%)</title><rect x="46.6469%" y="421" width="0.0250%" height="15" fill="rgb(216,184,14)" fg:x="1121204" fg:w="601"/><text x="46.8969%" y="431.50"></text></g><g><title>_raw_read_lock (474 samples, 0.02%)</title><rect x="46.7958%" y="405" width="0.0197%" height="15" fill="rgb(237,187,27)" fg:x="1124784" fg:w="474"/><text x="47.0458%" y="415.50"></text></g><g><title>finish_wait (514 samples, 0.02%)</title><rect x="46.8164%" y="405" width="0.0214%" height="15" fill="rgb(219,65,3)" fg:x="1125278" fg:w="514"/><text x="47.0664%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (479 samples, 0.02%)</title><rect x="46.8178%" y="389" width="0.0199%" height="15" fill="rgb(245,83,25)" fg:x="1125313" fg:w="479"/><text x="47.0678%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (430 samples, 0.02%)</title><rect x="46.8199%" y="373" width="0.0179%" height="15" fill="rgb(214,205,45)" fg:x="1125362" fg:w="430"/><text x="47.0699%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (1,570 samples, 0.07%)</title><rect x="46.8454%" y="389" width="0.0653%" height="15" fill="rgb(241,20,18)" fg:x="1125977" fg:w="1570"/><text x="47.0954%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,440 samples, 0.06%)</title><rect x="46.8508%" y="373" width="0.0599%" height="15" fill="rgb(232,163,23)" fg:x="1126107" fg:w="1440"/><text x="47.1008%" y="383.50"></text></g><g><title>prepare_to_wait_event (1,805 samples, 0.08%)</title><rect x="46.8381%" y="405" width="0.0751%" height="15" fill="rgb(214,5,46)" fg:x="1125800" fg:w="1805"/><text x="47.0881%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (273 samples, 0.01%)</title><rect x="46.9132%" y="405" width="0.0114%" height="15" fill="rgb(229,78,17)" fg:x="1127605" fg:w="273"/><text x="47.1632%" y="415.50"></text></g><g><title>dequeue_entity (630 samples, 0.03%)</title><rect x="46.9424%" y="357" width="0.0262%" height="15" fill="rgb(248,89,10)" fg:x="1128308" fg:w="630"/><text x="47.1924%" y="367.50"></text></g><g><title>dequeue_task_fair (774 samples, 0.03%)</title><rect x="46.9382%" y="373" width="0.0322%" height="15" fill="rgb(248,54,15)" fg:x="1128206" fg:w="774"/><text x="47.1882%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (662 samples, 0.03%)</title><rect x="46.9745%" y="357" width="0.0275%" height="15" fill="rgb(223,116,6)" fg:x="1129078" fg:w="662"/><text x="47.2245%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (640 samples, 0.03%)</title><rect x="46.9754%" y="341" width="0.0266%" height="15" fill="rgb(205,125,38)" fg:x="1129100" fg:w="640"/><text x="47.2254%" y="351.50"></text></g><g><title>native_write_msr (631 samples, 0.03%)</title><rect x="46.9757%" y="325" width="0.0263%" height="15" fill="rgb(251,78,38)" fg:x="1129109" fg:w="631"/><text x="47.2257%" y="335.50"></text></g><g><title>finish_task_switch (813 samples, 0.03%)</title><rect x="46.9704%" y="373" width="0.0338%" height="15" fill="rgb(253,78,28)" fg:x="1128980" fg:w="813"/><text x="47.2204%" y="383.50"></text></g><g><title>psi_task_change (489 samples, 0.02%)</title><rect x="47.0145%" y="373" width="0.0203%" height="15" fill="rgb(209,120,3)" fg:x="1130040" fg:w="489"/><text x="47.2645%" y="383.50"></text></g><g><title>psi_group_change (411 samples, 0.02%)</title><rect x="47.0177%" y="357" width="0.0171%" height="15" fill="rgb(238,229,9)" fg:x="1130118" fg:w="411"/><text x="47.2677%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (6,260 samples, 0.26%)</title><rect x="46.7816%" y="421" width="0.2604%" height="15" fill="rgb(253,159,18)" fg:x="1124443" fg:w="6260"/><text x="47.0316%" y="431.50"></text></g><g><title>schedule (2,825 samples, 0.12%)</title><rect x="46.9245%" y="405" width="0.1175%" height="15" fill="rgb(244,42,34)" fg:x="1127878" fg:w="2825"/><text x="47.1745%" y="415.50"></text></g><g><title>__schedule (2,792 samples, 0.12%)</title><rect x="46.9259%" y="389" width="0.1162%" height="15" fill="rgb(224,8,7)" fg:x="1127911" fg:w="2792"/><text x="47.1759%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (7,888 samples, 0.33%)</title><rect x="46.7753%" y="437" width="0.3282%" height="15" fill="rgb(210,201,45)" fg:x="1124291" fg:w="7888"/><text x="47.0253%" y="447.50"></text></g><g><title>btrfs_root_node (1,476 samples, 0.06%)</title><rect x="47.0421%" y="421" width="0.0614%" height="15" fill="rgb(252,185,21)" fg:x="1130703" fg:w="1476"/><text x="47.2921%" y="431.50"></text></g><g><title>balance_level (1,004 samples, 0.04%)</title><rect x="47.1044%" y="437" width="0.0418%" height="15" fill="rgb(223,131,1)" fg:x="1132202" fg:w="1004"/><text x="47.3544%" y="447.50"></text></g><g><title>btrfs_get_64 (365 samples, 0.02%)</title><rect x="47.1310%" y="421" width="0.0152%" height="15" fill="rgb(245,141,16)" fg:x="1132841" fg:w="365"/><text x="47.3810%" y="431.50"></text></g><g><title>_raw_write_lock (355 samples, 0.01%)</title><rect x="47.1726%" y="405" width="0.0148%" height="15" fill="rgb(229,55,45)" fg:x="1133840" fg:w="355"/><text x="47.4226%" y="415.50"></text></g><g><title>finish_wait (337 samples, 0.01%)</title><rect x="47.1873%" y="405" width="0.0140%" height="15" fill="rgb(208,92,15)" fg:x="1134195" fg:w="337"/><text x="47.4373%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (320 samples, 0.01%)</title><rect x="47.1881%" y="389" width="0.0133%" height="15" fill="rgb(234,185,47)" fg:x="1134212" fg:w="320"/><text x="47.4381%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (297 samples, 0.01%)</title><rect x="47.1890%" y="373" width="0.0124%" height="15" fill="rgb(253,104,50)" fg:x="1134235" fg:w="297"/><text x="47.4390%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (1,005 samples, 0.04%)</title><rect x="47.2053%" y="389" width="0.0418%" height="15" fill="rgb(205,70,7)" fg:x="1134626" fg:w="1005"/><text x="47.4553%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (942 samples, 0.04%)</title><rect x="47.2079%" y="373" width="0.0392%" height="15" fill="rgb(240,178,43)" fg:x="1134689" fg:w="942"/><text x="47.4579%" y="383.50"></text></g><g><title>prepare_to_wait_event (1,131 samples, 0.05%)</title><rect x="47.2015%" y="405" width="0.0471%" height="15" fill="rgb(214,112,2)" fg:x="1134536" fg:w="1131"/><text x="47.4515%" y="415.50"></text></g><g><title>dequeue_task_fair (259 samples, 0.01%)</title><rect x="47.2639%" y="373" width="0.0108%" height="15" fill="rgb(206,46,17)" fg:x="1136036" fg:w="259"/><text x="47.5139%" y="383.50"></text></g><g><title>finish_task_switch (284 samples, 0.01%)</title><rect x="47.2747%" y="373" width="0.0118%" height="15" fill="rgb(225,220,16)" fg:x="1136295" fg:w="284"/><text x="47.5247%" y="383.50"></text></g><g><title>__btrfs_tree_lock (3,496 samples, 0.15%)</title><rect x="47.1554%" y="421" width="0.1454%" height="15" fill="rgb(238,65,40)" fg:x="1133427" fg:w="3496"/><text x="47.4054%" y="431.50"></text></g><g><title>schedule (1,019 samples, 0.04%)</title><rect x="47.2584%" y="405" width="0.0424%" height="15" fill="rgb(230,151,21)" fg:x="1135904" fg:w="1019"/><text x="47.5084%" y="415.50"></text></g><g><title>__schedule (999 samples, 0.04%)</title><rect x="47.2593%" y="389" width="0.0416%" height="15" fill="rgb(218,58,49)" fg:x="1135924" fg:w="999"/><text x="47.5093%" y="399.50"></text></g><g><title>btrfs_lock_root_node (3,936 samples, 0.16%)</title><rect x="47.1530%" y="437" width="0.1638%" height="15" fill="rgb(219,179,14)" fg:x="1133370" fg:w="3936"/><text x="47.4030%" y="447.50"></text></g><g><title>btrfs_root_node (380 samples, 0.02%)</title><rect x="47.3010%" y="421" width="0.0158%" height="15" fill="rgb(223,72,1)" fg:x="1136926" fg:w="380"/><text x="47.5510%" y="431.50"></text></g><g><title>btrfs_set_path_blocking (684 samples, 0.03%)</title><rect x="47.3168%" y="437" width="0.0285%" height="15" fill="rgb(238,126,10)" fg:x="1137306" fg:w="684"/><text x="47.5668%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (335 samples, 0.01%)</title><rect x="47.3452%" y="437" width="0.0139%" height="15" fill="rgb(224,206,38)" fg:x="1137990" fg:w="335"/><text x="47.5952%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (453 samples, 0.02%)</title><rect x="47.3592%" y="437" width="0.0188%" height="15" fill="rgb(212,201,54)" fg:x="1138325" fg:w="453"/><text x="47.6092%" y="447.50"></text></g><g><title>_raw_write_lock (374 samples, 0.02%)</title><rect x="47.3625%" y="421" width="0.0156%" height="15" fill="rgb(218,154,48)" fg:x="1138404" fg:w="374"/><text x="47.6125%" y="431.50"></text></g><g><title>_raw_spin_lock (313 samples, 0.01%)</title><rect x="47.3854%" y="421" width="0.0130%" height="15" fill="rgb(232,93,24)" fg:x="1138955" fg:w="313"/><text x="47.6354%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (483 samples, 0.02%)</title><rect x="47.3783%" y="437" width="0.0201%" height="15" fill="rgb(245,30,21)" fg:x="1138786" fg:w="483"/><text x="47.6283%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (2,042 samples, 0.08%)</title><rect x="47.3984%" y="437" width="0.0850%" height="15" fill="rgb(242,148,29)" fg:x="1139269" fg:w="2042"/><text x="47.6484%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (449 samples, 0.02%)</title><rect x="47.5068%" y="421" width="0.0187%" height="15" fill="rgb(244,153,54)" fg:x="1141873" fg:w="449"/><text x="47.7568%" y="431.50"></text></g><g><title>verify_parent_transid (348 samples, 0.01%)</title><rect x="47.5110%" y="405" width="0.0145%" height="15" fill="rgb(252,87,22)" fg:x="1141974" fg:w="348"/><text x="47.7610%" y="415.50"></text></g><g><title>btrfs_get_64 (559 samples, 0.02%)</title><rect x="47.5255%" y="421" width="0.0233%" height="15" fill="rgb(210,51,29)" fg:x="1142322" fg:w="559"/><text x="47.7755%" y="431.50"></text></g><g><title>__radix_tree_lookup (1,825 samples, 0.08%)</title><rect x="47.6002%" y="405" width="0.0759%" height="15" fill="rgb(242,136,47)" fg:x="1144118" fg:w="1825"/><text x="47.8502%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (986 samples, 0.04%)</title><rect x="47.6762%" y="405" width="0.0410%" height="15" fill="rgb(238,68,4)" fg:x="1145945" fg:w="986"/><text x="47.9262%" y="415.50"></text></g><g><title>mark_page_accessed (738 samples, 0.03%)</title><rect x="47.6865%" y="389" width="0.0307%" height="15" fill="rgb(242,161,30)" fg:x="1146193" fg:w="738"/><text x="47.9365%" y="399.50"></text></g><g><title>find_extent_buffer (3,807 samples, 0.16%)</title><rect x="47.5599%" y="421" width="0.1584%" height="15" fill="rgb(218,58,44)" fg:x="1143150" fg:w="3807"/><text x="47.8099%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (6,287 samples, 0.26%)</title><rect x="47.4834%" y="437" width="0.2616%" height="15" fill="rgb(252,125,32)" fg:x="1141311" fg:w="6287"/><text x="47.7334%" y="447.50"></text></g><g><title>read_extent_buffer (641 samples, 0.03%)</title><rect x="47.7183%" y="421" width="0.0267%" height="15" fill="rgb(219,178,0)" fg:x="1146957" fg:w="641"/><text x="47.9683%" y="431.50"></text></g><g><title>release_extent_buffer (268 samples, 0.01%)</title><rect x="47.7541%" y="437" width="0.0111%" height="15" fill="rgb(213,152,7)" fg:x="1147817" fg:w="268"/><text x="48.0041%" y="447.50"></text></g><g><title>btrfs_search_slot (26,924 samples, 1.12%)</title><rect x="46.6719%" y="453" width="1.1202%" height="15" fill="rgb(249,109,34)" fg:x="1121805" fg:w="26924"/><text x="46.9219%" y="463.50"></text></g><g><title>unlock_up (644 samples, 0.03%)</title><rect x="47.7652%" y="437" width="0.0268%" height="15" fill="rgb(232,96,21)" fg:x="1148085" fg:w="644"/><text x="48.0152%" y="447.50"></text></g><g><title>crc32c (789 samples, 0.03%)</title><rect x="47.7920%" y="453" width="0.0328%" height="15" fill="rgb(228,27,39)" fg:x="1148729" fg:w="789"/><text x="48.0420%" y="463.50"></text></g><g><title>crypto_shash_update (389 samples, 0.02%)</title><rect x="47.8087%" y="437" width="0.0162%" height="15" fill="rgb(211,182,52)" fg:x="1149129" fg:w="389"/><text x="48.0587%" y="447.50"></text></g><g><title>memset_erms (299 samples, 0.01%)</title><rect x="47.8645%" y="437" width="0.0124%" height="15" fill="rgb(234,178,38)" fg:x="1150470" fg:w="299"/><text x="48.1145%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,591 samples, 0.07%)</title><rect x="47.8248%" y="453" width="0.0662%" height="15" fill="rgb(221,111,3)" fg:x="1149518" fg:w="1591"/><text x="48.0748%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (340 samples, 0.01%)</title><rect x="47.8769%" y="437" width="0.0141%" height="15" fill="rgb(228,175,21)" fg:x="1150769" fg:w="340"/><text x="48.1269%" y="447.50"></text></g><g><title>btrfs_del_inode_ref (40,211 samples, 1.67%)</title><rect x="46.2720%" y="469" width="1.6729%" height="15" fill="rgb(228,174,43)" fg:x="1112193" fg:w="40211"/><text x="46.5220%" y="479.50"></text></g><g><title>kmem_cache_free (1,295 samples, 0.05%)</title><rect x="47.8910%" y="453" width="0.0539%" height="15" fill="rgb(211,191,0)" fg:x="1151109" fg:w="1295"/><text x="48.1410%" y="463.50"></text></g><g><title>btrfs_end_log_trans (591 samples, 0.02%)</title><rect x="47.9449%" y="469" width="0.0246%" height="15" fill="rgb(253,117,3)" fg:x="1152404" fg:w="591"/><text x="48.1949%" y="479.50"></text></g><g><title>mutex_lock (713 samples, 0.03%)</title><rect x="47.9695%" y="469" width="0.0297%" height="15" fill="rgb(241,127,19)" fg:x="1152995" fg:w="713"/><text x="48.2195%" y="479.50"></text></g><g><title>btrfs_del_inode_ref_in_log (42,374 samples, 1.76%)</title><rect x="46.2507%" y="485" width="1.7629%" height="15" fill="rgb(218,103,12)" fg:x="1111682" fg:w="42374"/><text x="46.5007%" y="495.50"></text></g><g><title>mutex_unlock (348 samples, 0.01%)</title><rect x="47.9992%" y="469" width="0.0145%" height="15" fill="rgb(236,214,43)" fg:x="1153708" fg:w="348"/><text x="48.2492%" y="479.50"></text></g><g><title>_find_next_bit.constprop.0 (327 samples, 0.01%)</title><rect x="48.1781%" y="405" width="0.0136%" height="15" fill="rgb(244,144,19)" fg:x="1158009" fg:w="327"/><text x="48.4281%" y="415.50"></text></g><g><title>steal_from_bitmap.part.0 (387 samples, 0.02%)</title><rect x="48.1764%" y="421" width="0.0161%" height="15" fill="rgb(246,188,10)" fg:x="1157968" fg:w="387"/><text x="48.4264%" y="431.50"></text></g><g><title>__btrfs_add_free_space (535 samples, 0.02%)</title><rect x="48.1733%" y="437" width="0.0223%" height="15" fill="rgb(212,193,33)" fg:x="1157894" fg:w="535"/><text x="48.4233%" y="447.50"></text></g><g><title>btrfs_free_tree_block (835 samples, 0.03%)</title><rect x="48.1732%" y="453" width="0.0347%" height="15" fill="rgb(241,51,29)" fg:x="1157892" fg:w="835"/><text x="48.4232%" y="463.50"></text></g><g><title>btrfs_del_leaf (974 samples, 0.04%)</title><rect x="48.1729%" y="469" width="0.0405%" height="15" fill="rgb(211,58,19)" fg:x="1157883" fg:w="974"/><text x="48.4229%" y="479.50"></text></g><g><title>btrfs_get_32 (623 samples, 0.03%)</title><rect x="48.2134%" y="469" width="0.0259%" height="15" fill="rgb(229,111,26)" fg:x="1158857" fg:w="623"/><text x="48.4634%" y="479.50"></text></g><g><title>btrfs_get_token_32 (14,612 samples, 0.61%)</title><rect x="48.2393%" y="469" width="0.6079%" height="15" fill="rgb(213,115,40)" fg:x="1159480" fg:w="14612"/><text x="48.4893%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (2,032 samples, 0.08%)</title><rect x="48.7627%" y="453" width="0.0845%" height="15" fill="rgb(209,56,44)" fg:x="1172060" fg:w="2032"/><text x="49.0127%" y="463.50"></text></g><g><title>btrfs_mark_buffer_dirty (808 samples, 0.03%)</title><rect x="48.8472%" y="469" width="0.0336%" height="15" fill="rgb(230,108,32)" fg:x="1174092" fg:w="808"/><text x="49.0972%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (257 samples, 0.01%)</title><rect x="48.8702%" y="453" width="0.0107%" height="15" fill="rgb(216,165,31)" fg:x="1174643" fg:w="257"/><text x="49.1202%" y="463.50"></text></g><g><title>btrfs_set_token_32 (10,415 samples, 0.43%)</title><rect x="48.8818%" y="469" width="0.4333%" height="15" fill="rgb(218,122,21)" fg:x="1174923" fg:w="10415"/><text x="49.1318%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,603 samples, 0.07%)</title><rect x="49.2484%" y="453" width="0.0667%" height="15" fill="rgb(223,224,47)" fg:x="1183735" fg:w="1603"/><text x="49.4984%" y="463.50"></text></g><g><title>leaf_space_used (566 samples, 0.02%)</title><rect x="49.3165%" y="469" width="0.0235%" height="15" fill="rgb(238,102,44)" fg:x="1185372" fg:w="566"/><text x="49.5665%" y="479.50"></text></g><g><title>btrfs_get_32 (427 samples, 0.02%)</title><rect x="49.3223%" y="453" width="0.0178%" height="15" fill="rgb(236,46,40)" fg:x="1185511" fg:w="427"/><text x="49.5723%" y="463.50"></text></g><g><title>memcpy_extent_buffer (1,916 samples, 0.08%)</title><rect x="49.3401%" y="469" width="0.0797%" height="15" fill="rgb(247,202,50)" fg:x="1185938" fg:w="1916"/><text x="49.5901%" y="479.50"></text></g><g><title>memmove (1,498 samples, 0.06%)</title><rect x="49.3575%" y="453" width="0.0623%" height="15" fill="rgb(209,99,20)" fg:x="1186356" fg:w="1498"/><text x="49.6075%" y="463.50"></text></g><g><title>copy_pages (779 samples, 0.03%)</title><rect x="49.4462%" y="453" width="0.0324%" height="15" fill="rgb(252,27,34)" fg:x="1188489" fg:w="779"/><text x="49.6962%" y="463.50"></text></g><g><title>memmove (6,087 samples, 0.25%)</title><rect x="49.4786%" y="453" width="0.2532%" height="15" fill="rgb(215,206,23)" fg:x="1189268" fg:w="6087"/><text x="49.7286%" y="463.50"></text></g><g><title>memmove_extent_buffer (7,502 samples, 0.31%)</title><rect x="49.4198%" y="469" width="0.3121%" height="15" fill="rgb(212,135,36)" fg:x="1187854" fg:w="7502"/><text x="49.6698%" y="479.50"></text></g><g><title>__push_leaf_left (412 samples, 0.02%)</title><rect x="49.7333%" y="453" width="0.0171%" height="15" fill="rgb(240,189,1)" fg:x="1195390" fg:w="412"/><text x="49.9833%" y="463.50"></text></g><g><title>push_leaf_left (651 samples, 0.03%)</title><rect x="49.7319%" y="469" width="0.0271%" height="15" fill="rgb(242,56,20)" fg:x="1195356" fg:w="651"/><text x="49.9819%" y="479.50"></text></g><g><title>__push_leaf_right (457 samples, 0.02%)</title><rect x="49.7598%" y="453" width="0.0190%" height="15" fill="rgb(247,132,33)" fg:x="1196026" fg:w="457"/><text x="50.0098%" y="463.50"></text></g><g><title>push_leaf_right (672 samples, 0.03%)</title><rect x="49.7590%" y="469" width="0.0280%" height="15" fill="rgb(208,149,11)" fg:x="1196007" fg:w="672"/><text x="50.0090%" y="479.50"></text></g><g><title>btrfs_del_items (42,677 samples, 1.78%)</title><rect x="48.0136%" y="485" width="1.7755%" height="15" fill="rgb(211,33,11)" fg:x="1154056" fg:w="42677"/><text x="48.2636%" y="495.50">b..</text></g><g><title>__list_add_valid (613 samples, 0.03%)</title><rect x="49.8675%" y="453" width="0.0255%" height="15" fill="rgb(221,29,38)" fg:x="1198616" fg:w="613"/><text x="50.1175%" y="463.50"></text></g><g><title>_raw_spin_lock (425 samples, 0.02%)</title><rect x="49.8930%" y="453" width="0.0177%" height="15" fill="rgb(206,182,49)" fg:x="1199229" fg:w="425"/><text x="50.1430%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,623 samples, 0.11%)</title><rect x="49.8163%" y="469" width="0.1091%" height="15" fill="rgb(216,140,1)" fg:x="1197385" fg:w="2623"/><text x="50.0663%" y="479.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,607 samples, 0.07%)</title><rect x="49.9256%" y="469" width="0.0669%" height="15" fill="rgb(232,57,40)" fg:x="1200012" fg:w="1607"/><text x="50.1756%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (1,547 samples, 0.06%)</title><rect x="49.9281%" y="453" width="0.0644%" height="15" fill="rgb(224,186,18)" fg:x="1200072" fg:w="1547"/><text x="50.1781%" y="463.50"></text></g><g><title>__schedule (292 samples, 0.01%)</title><rect x="50.0052%" y="437" width="0.0121%" height="15" fill="rgb(215,121,11)" fg:x="1201924" fg:w="292"/><text x="50.2552%" y="447.50"></text></g><g><title>_cond_resched (317 samples, 0.01%)</title><rect x="50.0044%" y="453" width="0.0132%" height="15" fill="rgb(245,147,10)" fg:x="1201905" fg:w="317"/><text x="50.2544%" y="463.50"></text></g><g><title>mutex_lock (604 samples, 0.03%)</title><rect x="49.9925%" y="469" width="0.0251%" height="15" fill="rgb(238,153,13)" fg:x="1201619" fg:w="604"/><text x="50.2425%" y="479.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (5,640 samples, 0.23%)</title><rect x="49.7892%" y="485" width="0.2346%" height="15" fill="rgb(233,108,0)" fg:x="1196733" fg:w="5640"/><text x="50.0392%" y="495.50"></text></g><g><title>btrfs_comp_cpu_keys (894 samples, 0.04%)</title><rect x="50.0590%" y="453" width="0.0372%" height="15" fill="rgb(212,157,17)" fg:x="1203218" fg:w="894"/><text x="50.3090%" y="463.50"></text></g><g><title>__btrfs_add_delayed_item (1,966 samples, 0.08%)</title><rect x="50.0330%" y="469" width="0.0818%" height="15" fill="rgb(225,213,38)" fg:x="1202593" fg:w="1966"/><text x="50.2830%" y="479.50"></text></g><g><title>rb_insert_color (447 samples, 0.02%)</title><rect x="50.0962%" y="453" width="0.0186%" height="15" fill="rgb(248,16,11)" fg:x="1204112" fg:w="447"/><text x="50.3462%" y="463.50"></text></g><g><title>__list_del_entry_valid (343 samples, 0.01%)</title><rect x="50.1308%" y="453" width="0.0143%" height="15" fill="rgb(241,33,4)" fg:x="1204944" fg:w="343"/><text x="50.3808%" y="463.50"></text></g><g><title>_raw_spin_lock (258 samples, 0.01%)</title><rect x="50.1456%" y="453" width="0.0107%" height="15" fill="rgb(222,26,43)" fg:x="1205300" fg:w="258"/><text x="50.3956%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,709 samples, 0.07%)</title><rect x="50.1148%" y="469" width="0.0711%" height="15" fill="rgb(243,29,36)" fg:x="1204559" fg:w="1709"/><text x="50.3648%" y="479.50"></text></g><g><title>mutex_unlock (515 samples, 0.02%)</title><rect x="50.1645%" y="453" width="0.0214%" height="15" fill="rgb(241,9,27)" fg:x="1205753" fg:w="515"/><text x="50.4145%" y="463.50"></text></g><g><title>mutex_spin_on_owner (1,658 samples, 0.07%)</title><rect x="50.1919%" y="453" width="0.0690%" height="15" fill="rgb(205,117,26)" fg:x="1206413" fg:w="1658"/><text x="50.4419%" y="463.50"></text></g><g><title>finish_task_switch (246 samples, 0.01%)</title><rect x="50.2702%" y="405" width="0.0102%" height="15" fill="rgb(209,80,39)" fg:x="1208294" fg:w="246"/><text x="50.5202%" y="415.50"></text></g><g><title>__mutex_lock.constprop.0 (2,427 samples, 0.10%)</title><rect x="50.1859%" y="469" width="0.1010%" height="15" fill="rgb(239,155,6)" fg:x="1206268" fg:w="2427"/><text x="50.4359%" y="479.50"></text></g><g><title>schedule_preempt_disabled (611 samples, 0.03%)</title><rect x="50.2614%" y="453" width="0.0254%" height="15" fill="rgb(212,104,12)" fg:x="1208084" fg:w="611"/><text x="50.5114%" y="463.50"></text></g><g><title>schedule (611 samples, 0.03%)</title><rect x="50.2614%" y="437" width="0.0254%" height="15" fill="rgb(234,204,3)" fg:x="1208084" fg:w="611"/><text x="50.5114%" y="447.50"></text></g><g><title>__schedule (601 samples, 0.03%)</title><rect x="50.2619%" y="421" width="0.0250%" height="15" fill="rgb(251,218,7)" fg:x="1208094" fg:w="601"/><text x="50.5119%" y="431.50"></text></g><g><title>_raw_spin_lock (1,358 samples, 0.06%)</title><rect x="50.3117%" y="437" width="0.0565%" height="15" fill="rgb(221,81,32)" fg:x="1209292" fg:w="1358"/><text x="50.5617%" y="447.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,892 samples, 0.08%)</title><rect x="50.2896%" y="469" width="0.0787%" height="15" fill="rgb(214,152,26)" fg:x="1208762" fg:w="1892"/><text x="50.5396%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (1,580 samples, 0.07%)</title><rect x="50.3026%" y="453" width="0.0657%" height="15" fill="rgb(223,22,3)" fg:x="1209074" fg:w="1580"/><text x="50.5526%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (603 samples, 0.03%)</title><rect x="50.3684%" y="469" width="0.0251%" height="15" fill="rgb(207,174,7)" fg:x="1210654" fg:w="603"/><text x="50.6184%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (547 samples, 0.02%)</title><rect x="50.3707%" y="453" width="0.0228%" height="15" fill="rgb(224,19,52)" fg:x="1210710" fg:w="547"/><text x="50.6207%" y="463.50"></text></g><g><title>kmem_cache_alloc_trace (1,085 samples, 0.05%)</title><rect x="50.3935%" y="469" width="0.0451%" height="15" fill="rgb(228,24,14)" fg:x="1211257" fg:w="1085"/><text x="50.6435%" y="479.50"></text></g><g><title>mutex_lock (420 samples, 0.02%)</title><rect x="50.4386%" y="469" width="0.0175%" height="15" fill="rgb(230,153,43)" fg:x="1212342" fg:w="420"/><text x="50.6886%" y="479.50"></text></g><g><title>btrfs_delete_delayed_dir_index (10,706 samples, 0.45%)</title><rect x="50.0238%" y="485" width="0.4454%" height="15" fill="rgb(231,106,12)" fg:x="1202373" fg:w="10706"/><text x="50.2738%" y="495.50"></text></g><g><title>mutex_unlock (317 samples, 0.01%)</title><rect x="50.4561%" y="469" width="0.0132%" height="15" fill="rgb(215,92,2)" fg:x="1212762" fg:w="317"/><text x="50.7061%" y="479.50"></text></g><g><title>btrfs_get_16 (285 samples, 0.01%)</title><rect x="50.4869%" y="469" width="0.0119%" height="15" fill="rgb(249,143,25)" fg:x="1213503" fg:w="285"/><text x="50.7369%" y="479.50"></text></g><g><title>btrfs_delete_one_dir_name (867 samples, 0.04%)</title><rect x="50.4693%" y="485" width="0.0361%" height="15" fill="rgb(252,7,35)" fg:x="1213079" fg:w="867"/><text x="50.7193%" y="495.50"></text></g><g><title>btrfs_get_16 (783 samples, 0.03%)</title><rect x="50.5660%" y="453" width="0.0326%" height="15" fill="rgb(216,69,40)" fg:x="1215405" fg:w="783"/><text x="50.8160%" y="463.50"></text></g><g><title>btrfs_get_32 (525 samples, 0.02%)</title><rect x="50.5986%" y="453" width="0.0218%" height="15" fill="rgb(240,36,33)" fg:x="1216188" fg:w="525"/><text x="50.8486%" y="463.50"></text></g><g><title>btrfs_match_dir_item_name (3,365 samples, 0.14%)</title><rect x="50.5384%" y="469" width="0.1400%" height="15" fill="rgb(231,128,14)" fg:x="1214741" fg:w="3365"/><text x="50.7884%" y="479.50"></text></g><g><title>memcmp_extent_buffer (1,393 samples, 0.06%)</title><rect x="50.6204%" y="453" width="0.0580%" height="15" fill="rgb(245,143,14)" fg:x="1216713" fg:w="1393"/><text x="50.8704%" y="463.50"></text></g><g><title>memcmp (817 samples, 0.03%)</title><rect x="50.6444%" y="437" width="0.0340%" height="15" fill="rgb(222,130,28)" fg:x="1217289" fg:w="817"/><text x="50.8944%" y="447.50"></text></g><g><title>_raw_read_lock (698 samples, 0.03%)</title><rect x="50.8287%" y="421" width="0.0290%" height="15" fill="rgb(212,10,48)" fg:x="1221719" fg:w="698"/><text x="51.0787%" y="431.50"></text></g><g><title>finish_wait (3,712 samples, 0.15%)</title><rect x="50.8603%" y="421" width="0.1544%" height="15" fill="rgb(254,118,45)" fg:x="1222477" fg:w="3712"/><text x="51.1103%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (3,525 samples, 0.15%)</title><rect x="50.8680%" y="405" width="0.1467%" height="15" fill="rgb(228,6,45)" fg:x="1222664" fg:w="3525"/><text x="51.1180%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,368 samples, 0.14%)</title><rect x="50.8746%" y="389" width="0.1401%" height="15" fill="rgb(241,18,35)" fg:x="1222821" fg:w="3368"/><text x="51.1246%" y="399.50"></text></g><g><title>__list_add_valid (261 samples, 0.01%)</title><rect x="51.0447%" y="405" width="0.0109%" height="15" fill="rgb(227,214,53)" fg:x="1226910" fg:w="261"/><text x="51.2947%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (9,326 samples, 0.39%)</title><rect x="51.0555%" y="405" width="0.3880%" height="15" fill="rgb(224,107,51)" fg:x="1227171" fg:w="9326"/><text x="51.3055%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,904 samples, 0.37%)</title><rect x="51.0731%" y="389" width="0.3704%" height="15" fill="rgb(248,60,28)" fg:x="1227593" fg:w="8904"/><text x="51.3231%" y="399.50"></text></g><g><title>prepare_to_wait_event (10,463 samples, 0.44%)</title><rect x="51.0154%" y="421" width="0.4353%" height="15" fill="rgb(249,101,23)" fg:x="1226206" fg:w="10463"/><text x="51.2654%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (10,385 samples, 0.43%)</title><rect x="51.4507%" y="421" width="0.4321%" height="15" fill="rgb(228,51,19)" fg:x="1236669" fg:w="10385"/><text x="51.7007%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,467 samples, 0.31%)</title><rect x="51.5721%" y="405" width="0.3107%" height="15" fill="rgb(213,20,6)" fg:x="1239587" fg:w="7467"/><text x="51.8221%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (299 samples, 0.01%)</title><rect x="51.9055%" y="389" width="0.0124%" height="15" fill="rgb(212,124,10)" fg:x="1247601" fg:w="299"/><text x="52.1555%" y="399.50"></text></g><g><title>update_curr (539 samples, 0.02%)</title><rect x="51.9512%" y="357" width="0.0224%" height="15" fill="rgb(248,3,40)" fg:x="1248699" fg:w="539"/><text x="52.2012%" y="367.50"></text></g><g><title>dequeue_entity (1,603 samples, 0.07%)</title><rect x="51.9296%" y="373" width="0.0667%" height="15" fill="rgb(223,178,23)" fg:x="1248180" fg:w="1603"/><text x="52.1796%" y="383.50"></text></g><g><title>update_load_avg (545 samples, 0.02%)</title><rect x="51.9736%" y="357" width="0.0227%" height="15" fill="rgb(240,132,45)" fg:x="1249238" fg:w="545"/><text x="52.2236%" y="367.50"></text></g><g><title>dequeue_task_fair (1,943 samples, 0.08%)</title><rect x="51.9209%" y="389" width="0.0808%" height="15" fill="rgb(245,164,36)" fg:x="1247970" fg:w="1943"/><text x="52.1709%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (2,511 samples, 0.10%)</title><rect x="52.0149%" y="373" width="0.1045%" height="15" fill="rgb(231,188,53)" fg:x="1250231" fg:w="2511"/><text x="52.2649%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,432 samples, 0.10%)</title><rect x="52.0182%" y="357" width="0.1012%" height="15" fill="rgb(237,198,39)" fg:x="1250310" fg:w="2432"/><text x="52.2682%" y="367.50"></text></g><g><title>native_write_msr (2,384 samples, 0.10%)</title><rect x="52.0202%" y="341" width="0.0992%" height="15" fill="rgb(223,120,35)" fg:x="1250358" fg:w="2384"/><text x="52.2702%" y="351.50"></text></g><g><title>finish_task_switch (2,974 samples, 0.12%)</title><rect x="52.0017%" y="389" width="0.1237%" height="15" fill="rgb(253,107,49)" fg:x="1249913" fg:w="2974"/><text x="52.2517%" y="399.50"></text></g><g><title>pick_next_task_fair (351 samples, 0.01%)</title><rect x="52.1256%" y="389" width="0.0146%" height="15" fill="rgb(216,44,31)" fg:x="1252891" fg:w="351"/><text x="52.3756%" y="399.50"></text></g><g><title>__update_idle_core (258 samples, 0.01%)</title><rect x="52.1426%" y="373" width="0.0107%" height="15" fill="rgb(253,87,21)" fg:x="1253299" fg:w="258"/><text x="52.3926%" y="383.50"></text></g><g><title>pick_next_task_idle (318 samples, 0.01%)</title><rect x="52.1402%" y="389" width="0.0132%" height="15" fill="rgb(226,18,2)" fg:x="1253242" fg:w="318"/><text x="52.3902%" y="399.50"></text></g><g><title>psi_task_change (1,500 samples, 0.06%)</title><rect x="52.1534%" y="389" width="0.0624%" height="15" fill="rgb(216,8,46)" fg:x="1253560" fg:w="1500"/><text x="52.4034%" y="399.50"></text></g><g><title>psi_group_change (1,238 samples, 0.05%)</title><rect x="52.1643%" y="373" width="0.0515%" height="15" fill="rgb(226,140,39)" fg:x="1253822" fg:w="1238"/><text x="52.4143%" y="383.50"></text></g><g><title>record_times (246 samples, 0.01%)</title><rect x="52.2056%" y="357" width="0.0102%" height="15" fill="rgb(221,194,54)" fg:x="1254814" fg:w="246"/><text x="52.4556%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (34,605 samples, 1.44%)</title><rect x="50.7971%" y="437" width="1.4397%" height="15" fill="rgb(213,92,11)" fg:x="1220958" fg:w="34605"/><text x="51.0471%" y="447.50"></text></g><g><title>schedule (8,509 samples, 0.35%)</title><rect x="51.8828%" y="421" width="0.3540%" height="15" fill="rgb(229,162,46)" fg:x="1247054" fg:w="8509"/><text x="52.1328%" y="431.50"></text></g><g><title>__schedule (8,442 samples, 0.35%)</title><rect x="51.8855%" y="405" width="0.3512%" height="15" fill="rgb(214,111,36)" fg:x="1247121" fg:w="8442"/><text x="52.1355%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (36,107 samples, 1.50%)</title><rect x="50.7893%" y="453" width="1.5022%" height="15" fill="rgb(207,6,21)" fg:x="1220771" fg:w="36107"/><text x="51.0393%" y="463.50"></text></g><g><title>btrfs_root_node (1,314 samples, 0.05%)</title><rect x="52.2368%" y="437" width="0.0547%" height="15" fill="rgb(213,127,38)" fg:x="1255564" fg:w="1314"/><text x="52.4868%" y="447.50"></text></g><g><title>prepare_to_wait_event (243 samples, 0.01%)</title><rect x="52.2983%" y="437" width="0.0101%" height="15" fill="rgb(238,118,32)" fg:x="1257042" fg:w="243"/><text x="52.5483%" y="447.50"></text></g><g><title>dequeue_entity (503 samples, 0.02%)</title><rect x="52.3230%" y="389" width="0.0209%" height="15" fill="rgb(240,139,39)" fg:x="1257635" fg:w="503"/><text x="52.5730%" y="399.50"></text></g><g><title>dequeue_task_fair (582 samples, 0.02%)</title><rect x="52.3211%" y="405" width="0.0242%" height="15" fill="rgb(235,10,37)" fg:x="1257590" fg:w="582"/><text x="52.5711%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (1,177 samples, 0.05%)</title><rect x="52.3501%" y="389" width="0.0490%" height="15" fill="rgb(249,171,38)" fg:x="1258286" fg:w="1177"/><text x="52.6001%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,151 samples, 0.05%)</title><rect x="52.3511%" y="373" width="0.0479%" height="15" fill="rgb(242,144,32)" fg:x="1258312" fg:w="1151"/><text x="52.6011%" y="383.50"></text></g><g><title>native_write_msr (1,142 samples, 0.05%)</title><rect x="52.3515%" y="357" width="0.0475%" height="15" fill="rgb(217,117,21)" fg:x="1258321" fg:w="1142"/><text x="52.6015%" y="367.50"></text></g><g><title>finish_task_switch (1,343 samples, 0.06%)</title><rect x="52.3453%" y="405" width="0.0559%" height="15" fill="rgb(249,87,1)" fg:x="1258172" fg:w="1343"/><text x="52.5953%" y="415.50"></text></g><g><title>psi_task_change (438 samples, 0.02%)</title><rect x="52.4119%" y="405" width="0.0182%" height="15" fill="rgb(248,196,48)" fg:x="1259773" fg:w="438"/><text x="52.6619%" y="415.50"></text></g><g><title>psi_group_change (359 samples, 0.01%)</title><rect x="52.4152%" y="389" width="0.0149%" height="15" fill="rgb(251,206,33)" fg:x="1259852" fg:w="359"/><text x="52.6652%" y="399.50"></text></g><g><title>__btrfs_tree_lock (3,475 samples, 0.14%)</title><rect x="52.2915%" y="453" width="0.1446%" height="15" fill="rgb(232,141,28)" fg:x="1256878" fg:w="3475"/><text x="52.5415%" y="463.50"></text></g><g><title>schedule (3,068 samples, 0.13%)</title><rect x="52.3084%" y="437" width="0.1276%" height="15" fill="rgb(209,167,14)" fg:x="1257285" fg:w="3068"/><text x="52.5584%" y="447.50"></text></g><g><title>__schedule (3,043 samples, 0.13%)</title><rect x="52.3095%" y="421" width="0.1266%" height="15" fill="rgb(225,11,50)" fg:x="1257310" fg:w="3043"/><text x="52.5595%" y="431.50"></text></g><g><title>__btrfs_cow_block (481 samples, 0.02%)</title><rect x="52.4519%" y="437" width="0.0200%" height="15" fill="rgb(209,50,20)" fg:x="1260733" fg:w="481"/><text x="52.7019%" y="447.50"></text></g><g><title>btrfs_cow_block (487 samples, 0.02%)</title><rect x="52.4517%" y="453" width="0.0203%" height="15" fill="rgb(212,17,46)" fg:x="1260728" fg:w="487"/><text x="52.7017%" y="463.50"></text></g><g><title>_cond_resched (266 samples, 0.01%)</title><rect x="52.5168%" y="421" width="0.0111%" height="15" fill="rgb(216,101,39)" fg:x="1262293" fg:w="266"/><text x="52.7668%" y="431.50"></text></g><g><title>_raw_write_lock (701 samples, 0.03%)</title><rect x="52.5314%" y="421" width="0.0292%" height="15" fill="rgb(212,228,48)" fg:x="1262644" fg:w="701"/><text x="52.7814%" y="431.50"></text></g><g><title>finish_wait (4,144 samples, 0.17%)</title><rect x="52.5610%" y="421" width="0.1724%" height="15" fill="rgb(250,6,50)" fg:x="1263356" fg:w="4144"/><text x="52.8110%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (3,902 samples, 0.16%)</title><rect x="52.5711%" y="405" width="0.1623%" height="15" fill="rgb(250,160,48)" fg:x="1263598" fg:w="3902"/><text x="52.8211%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,628 samples, 0.15%)</title><rect x="52.5825%" y="389" width="0.1509%" height="15" fill="rgb(244,216,33)" fg:x="1263872" fg:w="3628"/><text x="52.8325%" y="399.50"></text></g><g><title>__list_add_valid (308 samples, 0.01%)</title><rect x="52.7772%" y="405" width="0.0128%" height="15" fill="rgb(207,157,5)" fg:x="1268553" fg:w="308"/><text x="53.0272%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (10,662 samples, 0.44%)</title><rect x="52.7900%" y="405" width="0.4436%" height="15" fill="rgb(228,199,8)" fg:x="1268861" fg:w="10662"/><text x="53.0400%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,817 samples, 0.41%)</title><rect x="52.8252%" y="389" width="0.4084%" height="15" fill="rgb(227,80,20)" fg:x="1269706" fg:w="9817"/><text x="53.0752%" y="399.50"></text></g><g><title>_raw_spin_unlock_irqrestore (286 samples, 0.01%)</title><rect x="53.2336%" y="405" width="0.0119%" height="15" fill="rgb(222,9,33)" fg:x="1279523" fg:w="286"/><text x="53.4836%" y="415.50"></text></g><g><title>prepare_to_wait_event (12,249 samples, 0.51%)</title><rect x="52.7359%" y="421" width="0.5096%" height="15" fill="rgb(239,44,28)" fg:x="1267561" fg:w="12249"/><text x="52.9859%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,460 samples, 0.35%)</title><rect x="53.6799%" y="405" width="0.3520%" height="15" fill="rgb(249,187,43)" fg:x="1290250" fg:w="8460"/><text x="53.9299%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (18,902 samples, 0.79%)</title><rect x="53.2455%" y="421" width="0.7864%" height="15" fill="rgb(216,141,28)" fg:x="1279810" fg:w="18902"/><text x="53.4955%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (512 samples, 0.02%)</title><rect x="54.0714%" y="389" width="0.0213%" height="15" fill="rgb(230,154,53)" fg:x="1299660" fg:w="512"/><text x="54.3214%" y="399.50"></text></g><g><title>update_cfs_group (293 samples, 0.01%)</title><rect x="54.1373%" y="357" width="0.0122%" height="15" fill="rgb(227,82,4)" fg:x="1301244" fg:w="293"/><text x="54.3873%" y="367.50"></text></g><g><title>update_curr (914 samples, 0.04%)</title><rect x="54.1495%" y="357" width="0.0380%" height="15" fill="rgb(220,107,16)" fg:x="1301537" fg:w="914"/><text x="54.3995%" y="367.50"></text></g><g><title>__update_load_avg_se (334 samples, 0.01%)</title><rect x="54.2092%" y="341" width="0.0139%" height="15" fill="rgb(207,187,2)" fg:x="1302973" fg:w="334"/><text x="54.4592%" y="351.50"></text></g><g><title>dequeue_entity (2,669 samples, 0.11%)</title><rect x="54.1130%" y="373" width="0.1110%" height="15" fill="rgb(210,162,52)" fg:x="1300659" fg:w="2669"/><text x="54.3630%" y="383.50"></text></g><g><title>update_load_avg (877 samples, 0.04%)</title><rect x="54.1875%" y="357" width="0.0365%" height="15" fill="rgb(217,216,49)" fg:x="1302451" fg:w="877"/><text x="54.4375%" y="367.50"></text></g><g><title>dequeue_task_fair (3,190 samples, 0.13%)</title><rect x="54.0994%" y="389" width="0.1327%" height="15" fill="rgb(218,146,49)" fg:x="1300333" fg:w="3190"/><text x="54.3494%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (3,987 samples, 0.17%)</title><rect x="54.2584%" y="373" width="0.1659%" height="15" fill="rgb(216,55,40)" fg:x="1304155" fg:w="3987"/><text x="54.5084%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,829 samples, 0.16%)</title><rect x="54.2650%" y="357" width="0.1593%" height="15" fill="rgb(208,196,21)" fg:x="1304313" fg:w="3829"/><text x="54.5150%" y="367.50"></text></g><g><title>native_write_msr (3,787 samples, 0.16%)</title><rect x="54.2667%" y="341" width="0.1576%" height="15" fill="rgb(242,117,42)" fg:x="1304355" fg:w="3787"/><text x="54.5167%" y="351.50"></text></g><g><title>finish_task_switch (4,828 samples, 0.20%)</title><rect x="54.2321%" y="389" width="0.2009%" height="15" fill="rgb(210,11,23)" fg:x="1303523" fg:w="4828"/><text x="54.4821%" y="399.50"></text></g><g><title>newidle_balance (302 samples, 0.01%)</title><rect x="54.4391%" y="373" width="0.0126%" height="15" fill="rgb(217,110,2)" fg:x="1308498" fg:w="302"/><text x="54.6891%" y="383.50"></text></g><g><title>pick_next_task_fair (585 samples, 0.02%)</title><rect x="54.4331%" y="389" width="0.0243%" height="15" fill="rgb(229,77,54)" fg:x="1308355" fg:w="585"/><text x="54.6831%" y="399.50"></text></g><g><title>__update_idle_core (501 samples, 0.02%)</title><rect x="54.4602%" y="373" width="0.0208%" height="15" fill="rgb(218,53,16)" fg:x="1309006" fg:w="501"/><text x="54.7102%" y="383.50"></text></g><g><title>pick_next_task_idle (571 samples, 0.02%)</title><rect x="54.4575%" y="389" width="0.0238%" height="15" fill="rgb(215,38,13)" fg:x="1308940" fg:w="571"/><text x="54.7075%" y="399.50"></text></g><g><title>psi_task_change (2,448 samples, 0.10%)</title><rect x="54.4812%" y="389" width="0.1018%" height="15" fill="rgb(235,42,18)" fg:x="1309511" fg:w="2448"/><text x="54.7312%" y="399.50"></text></g><g><title>psi_group_change (2,080 samples, 0.09%)</title><rect x="54.4965%" y="373" width="0.0865%" height="15" fill="rgb(219,66,54)" fg:x="1309879" fg:w="2080"/><text x="54.7465%" y="383.50"></text></g><g><title>record_times (524 samples, 0.02%)</title><rect x="54.5613%" y="357" width="0.0218%" height="15" fill="rgb(222,205,4)" fg:x="1311435" fg:w="524"/><text x="54.8113%" y="367.50"></text></g><g><title>sched_clock_cpu (327 samples, 0.01%)</title><rect x="54.5695%" y="341" width="0.0136%" height="15" fill="rgb(227,213,46)" fg:x="1311632" fg:w="327"/><text x="54.8195%" y="351.50"></text></g><g><title>sched_clock (288 samples, 0.01%)</title><rect x="54.5711%" y="325" width="0.0120%" height="15" fill="rgb(250,145,42)" fg:x="1311671" fg:w="288"/><text x="54.8211%" y="335.50"></text></g><g><title>native_sched_clock (270 samples, 0.01%)</title><rect x="54.5719%" y="309" width="0.0112%" height="15" fill="rgb(219,15,2)" fg:x="1311689" fg:w="270"/><text x="54.8219%" y="319.50"></text></g><g><title>psi_task_switch (272 samples, 0.01%)</title><rect x="54.5831%" y="389" width="0.0113%" height="15" fill="rgb(231,181,52)" fg:x="1311959" fg:w="272"/><text x="54.8331%" y="399.50"></text></g><g><title>__schedule (13,772 samples, 0.57%)</title><rect x="54.0418%" y="405" width="0.5730%" height="15" fill="rgb(235,1,42)" fg:x="1298949" fg:w="13772"/><text x="54.2918%" y="415.50"></text></g><g><title>update_rq_clock (275 samples, 0.01%)</title><rect x="54.6033%" y="389" width="0.0114%" height="15" fill="rgb(249,88,27)" fg:x="1312446" fg:w="275"/><text x="54.8533%" y="399.50"></text></g><g><title>__btrfs_tree_lock (51,444 samples, 2.14%)</title><rect x="52.4745%" y="437" width="2.1403%" height="15" fill="rgb(235,145,16)" fg:x="1261278" fg:w="51444"/><text x="52.7245%" y="447.50">_..</text></g><g><title>schedule (14,010 samples, 0.58%)</title><rect x="54.0320%" y="421" width="0.5829%" height="15" fill="rgb(237,114,19)" fg:x="1298712" fg:w="14010"/><text x="54.2820%" y="431.50"></text></g><g><title>btrfs_lock_root_node (51,985 samples, 2.16%)</title><rect x="52.4719%" y="453" width="2.1628%" height="15" fill="rgb(238,51,50)" fg:x="1261215" fg:w="51985"/><text x="52.7219%" y="463.50">b..</text></g><g><title>btrfs_root_node (478 samples, 0.02%)</title><rect x="54.6148%" y="437" width="0.0199%" height="15" fill="rgb(205,194,25)" fg:x="1312722" fg:w="478"/><text x="54.8648%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (562 samples, 0.02%)</title><rect x="54.6347%" y="453" width="0.0234%" height="15" fill="rgb(215,203,17)" fg:x="1313200" fg:w="562"/><text x="54.8847%" y="463.50"></text></g><g><title>btrfs_set_lock_blocking_write (276 samples, 0.01%)</title><rect x="54.6466%" y="437" width="0.0115%" height="15" fill="rgb(233,112,49)" fg:x="1313486" fg:w="276"/><text x="54.8966%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (487 samples, 0.02%)</title><rect x="54.6581%" y="453" width="0.0203%" height="15" fill="rgb(241,130,26)" fg:x="1313763" fg:w="487"/><text x="54.9081%" y="463.50"></text></g><g><title>_raw_write_lock (406 samples, 0.02%)</title><rect x="54.6847%" y="437" width="0.0169%" height="15" fill="rgb(252,223,19)" fg:x="1314401" fg:w="406"/><text x="54.9347%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (2,964 samples, 0.12%)</title><rect x="54.6784%" y="453" width="0.1233%" height="15" fill="rgb(211,95,25)" fg:x="1314250" fg:w="2964"/><text x="54.9284%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (2,406 samples, 0.10%)</title><rect x="54.7016%" y="437" width="0.1001%" height="15" fill="rgb(251,182,27)" fg:x="1314808" fg:w="2406"/><text x="54.9516%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (600 samples, 0.02%)</title><rect x="54.8026%" y="453" width="0.0250%" height="15" fill="rgb(238,24,4)" fg:x="1317235" fg:w="600"/><text x="55.0526%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (5,987 samples, 0.25%)</title><rect x="54.8276%" y="453" width="0.2491%" height="15" fill="rgb(224,220,25)" fg:x="1317835" fg:w="5987"/><text x="55.0776%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (762 samples, 0.03%)</title><rect x="55.1057%" y="437" width="0.0317%" height="15" fill="rgb(239,133,26)" fg:x="1324520" fg:w="762"/><text x="55.3557%" y="447.50"></text></g><g><title>verify_parent_transid (608 samples, 0.03%)</title><rect x="55.1121%" y="421" width="0.0253%" height="15" fill="rgb(211,94,48)" fg:x="1324674" fg:w="608"/><text x="55.3621%" y="431.50"></text></g><g><title>btrfs_get_64 (896 samples, 0.04%)</title><rect x="55.1374%" y="437" width="0.0373%" height="15" fill="rgb(239,87,6)" fg:x="1325282" fg:w="896"/><text x="55.3874%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (257 samples, 0.01%)</title><rect x="55.1640%" y="421" width="0.0107%" height="15" fill="rgb(227,62,0)" fg:x="1325921" fg:w="257"/><text x="55.4140%" y="431.50"></text></g><g><title>__radix_tree_lookup (3,148 samples, 0.13%)</title><rect x="55.2536%" y="421" width="0.1310%" height="15" fill="rgb(211,226,4)" fg:x="1328076" fg:w="3148"/><text x="55.5036%" y="431.50"></text></g><g><title>mark_page_accessed (1,097 samples, 0.05%)</title><rect x="55.3984%" y="405" width="0.0456%" height="15" fill="rgb(253,38,52)" fg:x="1331555" fg:w="1097"/><text x="55.6484%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,415 samples, 0.06%)</title><rect x="55.3852%" y="421" width="0.0589%" height="15" fill="rgb(229,126,40)" fg:x="1331238" fg:w="1415"/><text x="55.6352%" y="431.50"></text></g><g><title>find_extent_buffer (6,183 samples, 0.26%)</title><rect x="55.1888%" y="437" width="0.2572%" height="15" fill="rgb(229,165,44)" fg:x="1326518" fg:w="6183"/><text x="55.4388%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (9,678 samples, 0.40%)</title><rect x="55.0766%" y="453" width="0.4026%" height="15" fill="rgb(247,95,47)" fg:x="1323822" fg:w="9678"/><text x="55.3266%" y="463.50"></text></g><g><title>read_extent_buffer (799 samples, 0.03%)</title><rect x="55.4460%" y="437" width="0.0332%" height="15" fill="rgb(216,140,30)" fg:x="1332701" fg:w="799"/><text x="55.6960%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (342 samples, 0.01%)</title><rect x="55.4872%" y="437" width="0.0142%" height="15" fill="rgb(246,214,8)" fg:x="1333691" fg:w="342"/><text x="55.7372%" y="447.50"></text></g><g><title>verify_parent_transid (309 samples, 0.01%)</title><rect x="55.4886%" y="421" width="0.0129%" height="15" fill="rgb(227,224,15)" fg:x="1333724" fg:w="309"/><text x="55.7386%" y="431.50"></text></g><g><title>btrfs_get_64 (415 samples, 0.02%)</title><rect x="55.5015%" y="437" width="0.0173%" height="15" fill="rgb(233,175,4)" fg:x="1334033" fg:w="415"/><text x="55.7515%" y="447.50"></text></g><g><title>__radix_tree_lookup (1,405 samples, 0.06%)</title><rect x="55.5584%" y="421" width="0.0585%" height="15" fill="rgb(221,66,45)" fg:x="1335401" fg:w="1405"/><text x="55.8084%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (673 samples, 0.03%)</title><rect x="55.6171%" y="421" width="0.0280%" height="15" fill="rgb(221,178,18)" fg:x="1336813" fg:w="673"/><text x="55.8671%" y="431.50"></text></g><g><title>mark_page_accessed (514 samples, 0.02%)</title><rect x="55.6237%" y="405" width="0.0214%" height="15" fill="rgb(213,81,29)" fg:x="1336972" fg:w="514"/><text x="55.8737%" y="415.50"></text></g><g><title>find_extent_buffer (3,055 samples, 0.13%)</title><rect x="55.5187%" y="437" width="0.1271%" height="15" fill="rgb(220,89,49)" fg:x="1334448" fg:w="3055"/><text x="55.7687%" y="447.50"></text></g><g><title>reada_for_balance (4,221 samples, 0.18%)</title><rect x="55.4793%" y="453" width="0.1756%" height="15" fill="rgb(227,60,33)" fg:x="1333500" fg:w="4221"/><text x="55.7293%" y="463.50"></text></g><g><title>__list_del_entry_valid (506 samples, 0.02%)</title><rect x="55.7297%" y="389" width="0.0211%" height="15" fill="rgb(205,113,12)" fg:x="1339518" fg:w="506"/><text x="55.9797%" y="399.50"></text></g><g><title>_raw_spin_lock (612 samples, 0.03%)</title><rect x="56.0482%" y="373" width="0.0255%" height="15" fill="rgb(211,32,1)" fg:x="1347174" fg:w="612"/><text x="56.2982%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (338 samples, 0.01%)</title><rect x="56.0596%" y="357" width="0.0141%" height="15" fill="rgb(246,2,12)" fg:x="1347448" fg:w="338"/><text x="56.3096%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (867 samples, 0.04%)</title><rect x="56.0736%" y="373" width="0.0361%" height="15" fill="rgb(243,37,27)" fg:x="1347786" fg:w="867"/><text x="56.3236%" y="383.50"></text></g><g><title>available_idle_cpu (595 samples, 0.02%)</title><rect x="56.1757%" y="357" width="0.0248%" height="15" fill="rgb(248,211,31)" fg:x="1350238" fg:w="595"/><text x="56.4257%" y="367.50"></text></g><g><title>select_task_rq_fair (3,192 samples, 0.13%)</title><rect x="56.1145%" y="373" width="0.1328%" height="15" fill="rgb(242,146,47)" fg:x="1348768" fg:w="3192"/><text x="56.3645%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (754 samples, 0.03%)</title><rect x="56.2159%" y="357" width="0.0314%" height="15" fill="rgb(206,70,20)" fg:x="1351206" fg:w="754"/><text x="56.4659%" y="367.50"></text></g><g><title>set_task_cpu (248 samples, 0.01%)</title><rect x="56.2473%" y="373" width="0.0103%" height="15" fill="rgb(215,10,51)" fg:x="1351960" fg:w="248"/><text x="56.4973%" y="383.50"></text></g><g><title>update_cfs_group (294 samples, 0.01%)</title><rect x="56.3538%" y="325" width="0.0122%" height="15" fill="rgb(243,178,53)" fg:x="1354521" fg:w="294"/><text x="56.6038%" y="335.50"></text></g><g><title>update_curr (351 samples, 0.01%)</title><rect x="56.3661%" y="325" width="0.0146%" height="15" fill="rgb(233,221,20)" fg:x="1354815" fg:w="351"/><text x="56.6161%" y="335.50"></text></g><g><title>__update_load_avg_cfs_rq (267 samples, 0.01%)</title><rect x="56.4036%" y="309" width="0.0111%" height="15" fill="rgb(218,95,35)" fg:x="1355716" fg:w="267"/><text x="56.6536%" y="319.50"></text></g><g><title>enqueue_entity (3,142 samples, 0.13%)</title><rect x="56.2958%" y="341" width="0.1307%" height="15" fill="rgb(229,13,5)" fg:x="1353125" fg:w="3142"/><text x="56.5458%" y="351.50"></text></g><g><title>update_load_avg (1,101 samples, 0.05%)</title><rect x="56.3807%" y="325" width="0.0458%" height="15" fill="rgb(252,164,30)" fg:x="1355166" fg:w="1101"/><text x="56.6307%" y="335.50"></text></g><g><title>enqueue_task_fair (4,033 samples, 0.17%)</title><rect x="56.2690%" y="357" width="0.1678%" height="15" fill="rgb(232,68,36)" fg:x="1352482" fg:w="4033"/><text x="56.5190%" y="367.50"></text></g><g><title>ttwu_do_activate (8,351 samples, 0.35%)</title><rect x="56.2576%" y="373" width="0.3474%" height="15" fill="rgb(219,59,54)" fg:x="1352208" fg:w="8351"/><text x="56.5076%" y="383.50"></text></g><g><title>psi_task_change (4,037 samples, 0.17%)</title><rect x="56.4371%" y="357" width="0.1680%" height="15" fill="rgb(250,92,33)" fg:x="1356522" fg:w="4037"/><text x="56.6871%" y="367.50"></text></g><g><title>psi_group_change (3,551 samples, 0.15%)</title><rect x="56.4573%" y="341" width="0.1477%" height="15" fill="rgb(229,162,54)" fg:x="1357008" fg:w="3551"/><text x="56.7073%" y="351.50"></text></g><g><title>record_times (583 samples, 0.02%)</title><rect x="56.5808%" y="325" width="0.0243%" height="15" fill="rgb(244,114,52)" fg:x="1359976" fg:w="583"/><text x="56.8308%" y="335.50"></text></g><g><title>sched_clock_cpu (388 samples, 0.02%)</title><rect x="56.5889%" y="309" width="0.0161%" height="15" fill="rgb(212,211,43)" fg:x="1360171" fg:w="388"/><text x="56.8389%" y="319.50"></text></g><g><title>sched_clock (333 samples, 0.01%)</title><rect x="56.5912%" y="293" width="0.0139%" height="15" fill="rgb(226,147,8)" fg:x="1360226" fg:w="333"/><text x="56.8412%" y="303.50"></text></g><g><title>native_sched_clock (297 samples, 0.01%)</title><rect x="56.5927%" y="277" width="0.0124%" height="15" fill="rgb(226,23,13)" fg:x="1360262" fg:w="297"/><text x="56.8427%" y="287.50"></text></g><g><title>resched_curr (355 samples, 0.01%)</title><rect x="56.6238%" y="341" width="0.0148%" height="15" fill="rgb(240,63,4)" fg:x="1361010" fg:w="355"/><text x="56.8738%" y="351.50"></text></g><g><title>ttwu_do_wakeup (809 samples, 0.03%)</title><rect x="56.6051%" y="373" width="0.0337%" height="15" fill="rgb(221,1,32)" fg:x="1360559" fg:w="809"/><text x="56.8551%" y="383.50"></text></g><g><title>check_preempt_curr (751 samples, 0.03%)</title><rect x="56.6075%" y="357" width="0.0312%" height="15" fill="rgb(242,117,10)" fg:x="1360617" fg:w="751"/><text x="56.8575%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (721 samples, 0.03%)</title><rect x="56.6387%" y="373" width="0.0300%" height="15" fill="rgb(249,172,44)" fg:x="1361368" fg:w="721"/><text x="56.8887%" y="383.50"></text></g><g><title>__wake_up_common (23,889 samples, 0.99%)</title><rect x="55.7047%" y="421" width="0.9939%" height="15" fill="rgb(244,46,45)" fg:x="1338919" fg:w="23889"/><text x="55.9547%" y="431.50"></text></g><g><title>autoremove_wake_function (23,354 samples, 0.97%)</title><rect x="55.7270%" y="405" width="0.9716%" height="15" fill="rgb(206,43,17)" fg:x="1339454" fg:w="23354"/><text x="55.9770%" y="415.50"></text></g><g><title>try_to_wake_up (22,758 samples, 0.95%)</title><rect x="55.7518%" y="389" width="0.9468%" height="15" fill="rgb(239,218,39)" fg:x="1340050" fg:w="22758"/><text x="56.0018%" y="399.50"></text></g><g><title>update_rq_clock (719 samples, 0.03%)</title><rect x="56.6687%" y="373" width="0.0299%" height="15" fill="rgb(208,169,54)" fg:x="1362089" fg:w="719"/><text x="56.9187%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (4,752 samples, 0.20%)</title><rect x="56.6986%" y="421" width="0.1977%" height="15" fill="rgb(247,25,42)" fg:x="1362808" fg:w="4752"/><text x="56.9486%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,488 samples, 0.19%)</title><rect x="56.7096%" y="405" width="0.1867%" height="15" fill="rgb(226,23,31)" fg:x="1363072" fg:w="4488"/><text x="56.9596%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (281 samples, 0.01%)</title><rect x="56.8963%" y="421" width="0.0117%" height="15" fill="rgb(247,16,28)" fg:x="1367560" fg:w="281"/><text x="57.1463%" y="431.50"></text></g><g><title>__wake_up_common_lock (29,000 samples, 1.21%)</title><rect x="55.7016%" y="437" width="1.2065%" height="15" fill="rgb(231,147,38)" fg:x="1338843" fg:w="29000"/><text x="55.9516%" y="447.50"></text></g><g><title>btrfs_search_slot (150,434 samples, 6.26%)</title><rect x="50.6784%" y="469" width="6.2587%" height="15" fill="rgb(253,81,48)" fg:x="1218106" fg:w="150434"/><text x="50.9284%" y="479.50">btrfs_se..</text></g><g><title>unlock_up (30,714 samples, 1.28%)</title><rect x="55.6593%" y="453" width="1.2778%" height="15" fill="rgb(249,222,43)" fg:x="1337826" fg:w="30714"/><text x="55.9093%" y="463.50"></text></g><g><title>btrfs_tree_unlock (692 samples, 0.03%)</title><rect x="56.9083%" y="437" width="0.0288%" height="15" fill="rgb(221,3,27)" fg:x="1367848" fg:w="692"/><text x="57.1583%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (155,598 samples, 6.47%)</title><rect x="50.5141%" y="485" width="6.4735%" height="15" fill="rgb(228,180,5)" fg:x="1214157" fg:w="155598"/><text x="50.7641%" y="495.50">btrfs_lo..</text></g><g><title>crc32c (1,215 samples, 0.05%)</title><rect x="56.9371%" y="469" width="0.0505%" height="15" fill="rgb(227,131,42)" fg:x="1368540" fg:w="1215"/><text x="57.1871%" y="479.50"></text></g><g><title>crypto_shash_update (531 samples, 0.02%)</title><rect x="56.9656%" y="453" width="0.0221%" height="15" fill="rgb(212,3,39)" fg:x="1369224" fg:w="531"/><text x="57.2156%" y="463.50"></text></g><g><title>select_task_rq_fair (781 samples, 0.03%)</title><rect x="57.0672%" y="405" width="0.0325%" height="15" fill="rgb(226,45,5)" fg:x="1371668" fg:w="781"/><text x="57.3172%" y="415.50"></text></g><g><title>enqueue_entity (794 samples, 0.03%)</title><rect x="57.1141%" y="373" width="0.0330%" height="15" fill="rgb(215,167,45)" fg:x="1372794" fg:w="794"/><text x="57.3641%" y="383.50"></text></g><g><title>update_load_avg (264 samples, 0.01%)</title><rect x="57.1361%" y="357" width="0.0110%" height="15" fill="rgb(250,218,53)" fg:x="1373324" fg:w="264"/><text x="57.3861%" y="367.50"></text></g><g><title>enqueue_task_fair (1,014 samples, 0.04%)</title><rect x="57.1070%" y="389" width="0.0422%" height="15" fill="rgb(207,140,0)" fg:x="1372624" fg:w="1014"/><text x="57.3570%" y="399.50"></text></g><g><title>ttwu_do_activate (2,128 samples, 0.09%)</title><rect x="57.1031%" y="405" width="0.0885%" height="15" fill="rgb(238,133,51)" fg:x="1372529" fg:w="2128"/><text x="57.3531%" y="415.50"></text></g><g><title>psi_task_change (1,017 samples, 0.04%)</title><rect x="57.1493%" y="389" width="0.0423%" height="15" fill="rgb(218,203,53)" fg:x="1373640" fg:w="1017"/><text x="57.3993%" y="399.50"></text></g><g><title>psi_group_change (908 samples, 0.04%)</title><rect x="57.1538%" y="373" width="0.0378%" height="15" fill="rgb(226,184,25)" fg:x="1373749" fg:w="908"/><text x="57.4038%" y="383.50"></text></g><g><title>__wake_up_common (5,176 samples, 0.22%)</title><rect x="56.9981%" y="453" width="0.2153%" height="15" fill="rgb(231,121,21)" fg:x="1370006" fg:w="5176"/><text x="57.2481%" y="463.50"></text></g><g><title>autoremove_wake_function (5,042 samples, 0.21%)</title><rect x="57.0037%" y="437" width="0.2098%" height="15" fill="rgb(251,14,34)" fg:x="1370140" fg:w="5042"/><text x="57.2537%" y="447.50"></text></g><g><title>try_to_wake_up (4,922 samples, 0.20%)</title><rect x="57.0087%" y="421" width="0.2048%" height="15" fill="rgb(249,193,11)" fg:x="1370260" fg:w="4922"/><text x="57.2587%" y="431.50"></text></g><g><title>__wake_up_common_lock (5,426 samples, 0.23%)</title><rect x="56.9967%" y="469" width="0.2257%" height="15" fill="rgb(220,172,37)" fg:x="1369973" fg:w="5426"/><text x="57.2467%" y="479.50"></text></g><g><title>btrfs_tree_unlock (416 samples, 0.02%)</title><rect x="57.2225%" y="469" width="0.0173%" height="15" fill="rgb(231,229,43)" fg:x="1375400" fg:w="416"/><text x="57.4725%" y="479.50"></text></g><g><title>_raw_spin_lock (426 samples, 0.02%)</title><rect x="57.2830%" y="453" width="0.0177%" height="15" fill="rgb(250,161,5)" fg:x="1376853" fg:w="426"/><text x="57.5330%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,443 samples, 0.06%)</title><rect x="57.2411%" y="469" width="0.0600%" height="15" fill="rgb(218,225,18)" fg:x="1375847" fg:w="1443"/><text x="57.4911%" y="479.50"></text></g><g><title>btrfs_release_path (7,952 samples, 0.33%)</title><rect x="56.9876%" y="485" width="0.3308%" height="15" fill="rgb(245,45,42)" fg:x="1369755" fg:w="7952"/><text x="57.2376%" y="495.50"></text></g><g><title>release_extent_buffer (417 samples, 0.02%)</title><rect x="57.3011%" y="469" width="0.0173%" height="15" fill="rgb(211,115,1)" fg:x="1377290" fg:w="417"/><text x="57.5511%" y="479.50"></text></g><g><title>_raw_spin_lock (400 samples, 0.02%)</title><rect x="57.3765%" y="437" width="0.0166%" height="15" fill="rgb(248,133,52)" fg:x="1379102" fg:w="400"/><text x="57.6265%" y="447.50"></text></g><g><title>mutex_lock (406 samples, 0.02%)</title><rect x="57.3933%" y="437" width="0.0169%" height="15" fill="rgb(238,100,21)" fg:x="1379505" fg:w="406"/><text x="57.6433%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,008 samples, 0.08%)</title><rect x="57.3464%" y="453" width="0.0835%" height="15" fill="rgb(247,144,11)" fg:x="1378378" fg:w="2008"/><text x="57.5964%" y="463.50"></text></g><g><title>mutex_unlock (475 samples, 0.02%)</title><rect x="57.4102%" y="437" width="0.0198%" height="15" fill="rgb(206,164,16)" fg:x="1379911" fg:w="475"/><text x="57.6602%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (452 samples, 0.02%)</title><rect x="57.4388%" y="453" width="0.0188%" height="15" fill="rgb(222,34,3)" fg:x="1380598" fg:w="452"/><text x="57.6888%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (392 samples, 0.02%)</title><rect x="57.4413%" y="437" width="0.0163%" height="15" fill="rgb(248,82,4)" fg:x="1380658" fg:w="392"/><text x="57.6913%" y="447.50"></text></g><g><title>inode_get_bytes (310 samples, 0.01%)</title><rect x="57.4689%" y="437" width="0.0129%" height="15" fill="rgb(228,81,46)" fg:x="1381322" fg:w="310"/><text x="57.7189%" y="447.50"></text></g><g><title>fill_stack_inode_item (953 samples, 0.04%)</title><rect x="57.4576%" y="453" width="0.0396%" height="15" fill="rgb(227,67,47)" fg:x="1381050" fg:w="953"/><text x="57.7076%" y="463.50"></text></g><g><title>map_id_up (371 samples, 0.02%)</title><rect x="57.4818%" y="437" width="0.0154%" height="15" fill="rgb(215,93,53)" fg:x="1381632" fg:w="371"/><text x="57.7318%" y="447.50"></text></g><g><title>btrfs_delayed_update_inode (4,213 samples, 0.18%)</title><rect x="57.3402%" y="469" width="0.1753%" height="15" fill="rgb(248,194,39)" fg:x="1378230" fg:w="4213"/><text x="57.5902%" y="479.50"></text></g><g><title>_raw_spin_lock (535 samples, 0.02%)</title><rect x="57.5236%" y="453" width="0.0223%" height="15" fill="rgb(215,5,19)" fg:x="1382637" fg:w="535"/><text x="57.7736%" y="463.50"></text></g><g><title>btrfs_update_inode (6,117 samples, 0.25%)</title><rect x="57.3185%" y="485" width="0.2545%" height="15" fill="rgb(226,215,51)" fg:x="1377707" fg:w="6117"/><text x="57.5685%" y="495.50"></text></g><g><title>btrfs_update_root_times (1,381 samples, 0.06%)</title><rect x="57.5155%" y="469" width="0.0575%" height="15" fill="rgb(225,56,26)" fg:x="1382443" fg:w="1381"/><text x="57.7655%" y="479.50"></text></g><g><title>ktime_get_real_ts64 (651 samples, 0.03%)</title><rect x="57.5459%" y="453" width="0.0271%" height="15" fill="rgb(222,75,29)" fg:x="1383173" fg:w="651"/><text x="57.7959%" y="463.50"></text></g><g><title>read_tsc (243 samples, 0.01%)</title><rect x="57.5629%" y="437" width="0.0101%" height="15" fill="rgb(236,139,6)" fg:x="1383581" fg:w="243"/><text x="57.8129%" y="447.50"></text></g><g><title>kmem_cache_alloc (758 samples, 0.03%)</title><rect x="57.5813%" y="485" width="0.0315%" height="15" fill="rgb(223,137,36)" fg:x="1384025" fg:w="758"/><text x="57.8313%" y="495.50"></text></g><g><title>__btrfs_unlink_inode (308,609 samples, 12.84%)</title><rect x="44.8022%" y="501" width="12.8394%" height="15" fill="rgb(226,99,2)" fg:x="1076866" fg:w="308609"/><text x="45.0522%" y="511.50">__btrfs_unlink_inode</text></g><g><title>kmem_cache_free (692 samples, 0.03%)</title><rect x="57.6129%" y="485" width="0.0288%" height="15" fill="rgb(206,133,23)" fg:x="1384783" fg:w="692"/><text x="57.8629%" y="495.50"></text></g><g><title>__radix_tree_lookup (373 samples, 0.02%)</title><rect x="57.6707%" y="485" width="0.0155%" height="15" fill="rgb(243,173,15)" fg:x="1386174" fg:w="373"/><text x="57.9207%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,086 samples, 0.05%)</title><rect x="57.6418%" y="501" width="0.0452%" height="15" fill="rgb(228,69,28)" fg:x="1385479" fg:w="1086"/><text x="57.8918%" y="511.50"></text></g><g><title>btrfs_balance_delayed_items (629 samples, 0.03%)</title><rect x="57.6995%" y="485" width="0.0262%" height="15" fill="rgb(212,51,22)" fg:x="1386864" fg:w="629"/><text x="57.9495%" y="495.50"></text></g><g><title>_raw_spin_lock (287 samples, 0.01%)</title><rect x="57.7336%" y="453" width="0.0119%" height="15" fill="rgb(227,113,0)" fg:x="1387686" fg:w="287"/><text x="57.9836%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (256 samples, 0.01%)</title><rect x="57.7349%" y="437" width="0.0107%" height="15" fill="rgb(252,84,27)" fg:x="1387717" fg:w="256"/><text x="57.9849%" y="447.50"></text></g><g><title>select_task_rq_fair (316 samples, 0.01%)</title><rect x="57.7621%" y="437" width="0.0131%" height="15" fill="rgb(223,145,39)" fg:x="1388371" fg:w="316"/><text x="58.0121%" y="447.50"></text></g><g><title>enqueue_task_fair (251 samples, 0.01%)</title><rect x="57.7775%" y="421" width="0.0104%" height="15" fill="rgb(239,219,30)" fg:x="1388739" fg:w="251"/><text x="58.0275%" y="431.50"></text></g><g><title>ttwu_do_activate (377 samples, 0.02%)</title><rect x="57.7767%" y="437" width="0.0157%" height="15" fill="rgb(224,196,39)" fg:x="1388720" fg:w="377"/><text x="58.0267%" y="447.50"></text></g><g><title>__queue_work (1,669 samples, 0.07%)</title><rect x="57.7300%" y="469" width="0.0694%" height="15" fill="rgb(205,35,43)" fg:x="1387598" fg:w="1669"/><text x="57.9800%" y="479.50"></text></g><g><title>try_to_wake_up (1,225 samples, 0.05%)</title><rect x="57.7485%" y="453" width="0.0510%" height="15" fill="rgb(228,201,21)" fg:x="1388042" fg:w="1225"/><text x="57.9985%" y="463.50"></text></g><g><title>btrfs_btree_balance_dirty (2,720 samples, 0.11%)</title><rect x="57.6870%" y="501" width="0.1132%" height="15" fill="rgb(237,118,16)" fg:x="1386565" fg:w="2720"/><text x="57.9370%" y="511.50"></text></g><g><title>queue_work_on (1,728 samples, 0.07%)</title><rect x="57.7283%" y="485" width="0.0719%" height="15" fill="rgb(241,17,19)" fg:x="1387557" fg:w="1728"/><text x="57.9783%" y="495.50"></text></g><g><title>ttwu_do_activate (485 samples, 0.02%)</title><rect x="57.9058%" y="373" width="0.0202%" height="15" fill="rgb(214,10,25)" fg:x="1391823" fg:w="485"/><text x="58.1558%" y="383.50"></text></g><g><title>__wake_up_common (2,154 samples, 0.09%)</title><rect x="57.8416%" y="421" width="0.0896%" height="15" fill="rgb(238,37,29)" fg:x="1390281" fg:w="2154"/><text x="58.0916%" y="431.50"></text></g><g><title>autoremove_wake_function (2,107 samples, 0.09%)</title><rect x="57.8436%" y="405" width="0.0877%" height="15" fill="rgb(253,83,25)" fg:x="1390328" fg:w="2107"/><text x="58.0936%" y="415.50"></text></g><g><title>try_to_wake_up (2,084 samples, 0.09%)</title><rect x="57.8445%" y="389" width="0.0867%" height="15" fill="rgb(234,192,12)" fg:x="1390351" fg:w="2084"/><text x="58.0945%" y="399.50"></text></g><g><title>__wake_up_common_lock (2,225 samples, 0.09%)</title><rect x="57.8409%" y="437" width="0.0926%" height="15" fill="rgb(241,216,45)" fg:x="1390265" fg:w="2225"/><text x="58.0909%" y="447.50"></text></g><g><title>btrfs_tree_unlock (371 samples, 0.02%)</title><rect x="57.9336%" y="437" width="0.0154%" height="15" fill="rgb(242,22,33)" fg:x="1392491" fg:w="371"/><text x="58.1836%" y="447.50"></text></g><g><title>_raw_spin_lock (514 samples, 0.02%)</title><rect x="57.9935%" y="421" width="0.0214%" height="15" fill="rgb(231,105,49)" fg:x="1393932" fg:w="514"/><text x="58.2435%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,559 samples, 0.06%)</title><rect x="57.9502%" y="437" width="0.0649%" height="15" fill="rgb(218,204,15)" fg:x="1392892" fg:w="1559"/><text x="58.2002%" y="447.50"></text></g><g><title>btrfs_free_path (4,954 samples, 0.21%)</title><rect x="57.8243%" y="469" width="0.2061%" height="15" fill="rgb(235,138,41)" fg:x="1389864" fg:w="4954"/><text x="58.0743%" y="479.50"></text></g><g><title>btrfs_release_path (4,791 samples, 0.20%)</title><rect x="57.8310%" y="453" width="0.1993%" height="15" fill="rgb(246,0,9)" fg:x="1390027" fg:w="4791"/><text x="58.0810%" y="463.50"></text></g><g><title>release_extent_buffer (367 samples, 0.02%)</title><rect x="58.0151%" y="437" width="0.0153%" height="15" fill="rgb(210,74,4)" fg:x="1394451" fg:w="367"/><text x="58.2651%" y="447.50"></text></g><g><title>_raw_read_lock (631 samples, 0.03%)</title><rect x="58.1736%" y="405" width="0.0263%" height="15" fill="rgb(250,60,41)" fg:x="1398261" fg:w="631"/><text x="58.4236%" y="415.50"></text></g><g><title>finish_wait (4,341 samples, 0.18%)</title><rect x="58.2022%" y="405" width="0.1806%" height="15" fill="rgb(220,115,12)" fg:x="1398948" fg:w="4341"/><text x="58.4522%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,139 samples, 0.17%)</title><rect x="58.2106%" y="389" width="0.1722%" height="15" fill="rgb(237,100,13)" fg:x="1399150" fg:w="4139"/><text x="58.4606%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,942 samples, 0.16%)</title><rect x="58.2188%" y="373" width="0.1640%" height="15" fill="rgb(213,55,26)" fg:x="1399347" fg:w="3942"/><text x="58.4688%" y="383.50"></text></g><g><title>__list_add_valid (268 samples, 0.01%)</title><rect x="58.4117%" y="389" width="0.0111%" height="15" fill="rgb(216,17,4)" fg:x="1403984" fg:w="268"/><text x="58.6617%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (10,984 samples, 0.46%)</title><rect x="58.4229%" y="389" width="0.4570%" height="15" fill="rgb(220,153,47)" fg:x="1404252" fg:w="10984"/><text x="58.6729%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,531 samples, 0.44%)</title><rect x="58.4417%" y="373" width="0.4381%" height="15" fill="rgb(215,131,9)" fg:x="1404705" fg:w="10531"/><text x="58.6917%" y="383.50"></text></g><g><title>prepare_to_wait_event (12,106 samples, 0.50%)</title><rect x="58.3833%" y="405" width="0.5037%" height="15" fill="rgb(233,46,42)" fg:x="1403302" fg:w="12106"/><text x="58.6333%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (10,178 samples, 0.42%)</title><rect x="58.8870%" y="405" width="0.4234%" height="15" fill="rgb(226,86,7)" fg:x="1415408" fg:w="10178"/><text x="59.1370%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,449 samples, 0.31%)</title><rect x="59.0005%" y="389" width="0.3099%" height="15" fill="rgb(239,226,21)" fg:x="1418137" fg:w="7449"/><text x="59.2505%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (355 samples, 0.01%)</title><rect x="59.3366%" y="373" width="0.0148%" height="15" fill="rgb(244,137,22)" fg:x="1426214" fg:w="355"/><text x="59.5866%" y="383.50"></text></g><g><title>update_curr (629 samples, 0.03%)</title><rect x="59.3892%" y="341" width="0.0262%" height="15" fill="rgb(211,139,35)" fg:x="1427480" fg:w="629"/><text x="59.6392%" y="351.50"></text></g><g><title>dequeue_entity (1,730 samples, 0.07%)</title><rect x="59.3655%" y="357" width="0.0720%" height="15" fill="rgb(214,62,50)" fg:x="1426910" fg:w="1730"/><text x="59.6155%" y="367.50"></text></g><g><title>update_load_avg (531 samples, 0.02%)</title><rect x="59.4154%" y="341" width="0.0221%" height="15" fill="rgb(212,113,44)" fg:x="1428109" fg:w="531"/><text x="59.6654%" y="351.50"></text></g><g><title>dequeue_task_fair (2,106 samples, 0.09%)</title><rect x="59.3556%" y="373" width="0.0876%" height="15" fill="rgb(226,150,43)" fg:x="1426670" fg:w="2106"/><text x="59.6056%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (3,587 samples, 0.15%)</title><rect x="59.4596%" y="357" width="0.1492%" height="15" fill="rgb(250,71,37)" fg:x="1429172" fg:w="3587"/><text x="59.7096%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,473 samples, 0.14%)</title><rect x="59.4644%" y="341" width="0.1445%" height="15" fill="rgb(219,76,19)" fg:x="1429286" fg:w="3473"/><text x="59.7144%" y="351.50"></text></g><g><title>native_write_msr (3,432 samples, 0.14%)</title><rect x="59.4661%" y="325" width="0.1428%" height="15" fill="rgb(250,39,11)" fg:x="1429327" fg:w="3432"/><text x="59.7161%" y="335.50"></text></g><g><title>finish_task_switch (4,172 samples, 0.17%)</title><rect x="59.4432%" y="373" width="0.1736%" height="15" fill="rgb(230,64,31)" fg:x="1428776" fg:w="4172"/><text x="59.6932%" y="383.50"></text></g><g><title>pick_next_task_fair (376 samples, 0.02%)</title><rect x="59.6169%" y="373" width="0.0156%" height="15" fill="rgb(208,222,23)" fg:x="1432952" fg:w="376"/><text x="59.8669%" y="383.50"></text></g><g><title>pick_next_task_idle (365 samples, 0.02%)</title><rect x="59.6326%" y="373" width="0.0152%" height="15" fill="rgb(227,125,18)" fg:x="1433328" fg:w="365"/><text x="59.8826%" y="383.50"></text></g><g><title>__update_idle_core (300 samples, 0.01%)</title><rect x="59.6353%" y="357" width="0.0125%" height="15" fill="rgb(234,210,9)" fg:x="1433393" fg:w="300"/><text x="59.8853%" y="367.50"></text></g><g><title>psi_task_change (1,536 samples, 0.06%)</title><rect x="59.6477%" y="373" width="0.0639%" height="15" fill="rgb(217,127,24)" fg:x="1433693" fg:w="1536"/><text x="59.8977%" y="383.50"></text></g><g><title>psi_group_change (1,326 samples, 0.06%)</title><rect x="59.6565%" y="357" width="0.0552%" height="15" fill="rgb(239,141,48)" fg:x="1433903" fg:w="1326"/><text x="59.9065%" y="367.50"></text></g><g><title>record_times (292 samples, 0.01%)</title><rect x="59.6995%" y="341" width="0.0121%" height="15" fill="rgb(227,109,8)" fg:x="1434937" fg:w="292"/><text x="59.9495%" y="351.50"></text></g><g><title>__btrfs_tree_read_lock (38,267 samples, 1.59%)</title><rect x="58.1416%" y="421" width="1.5921%" height="15" fill="rgb(235,184,23)" fg:x="1397492" fg:w="38267"/><text x="58.3916%" y="431.50"></text></g><g><title>schedule (10,173 samples, 0.42%)</title><rect x="59.3105%" y="405" width="0.4232%" height="15" fill="rgb(227,226,48)" fg:x="1425586" fg:w="10173"/><text x="59.5605%" y="415.50"></text></g><g><title>__schedule (10,035 samples, 0.42%)</title><rect x="59.3162%" y="389" width="0.4175%" height="15" fill="rgb(206,150,11)" fg:x="1425724" fg:w="10035"/><text x="59.5662%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (39,654 samples, 1.65%)</title><rect x="58.1364%" y="437" width="1.6498%" height="15" fill="rgb(254,2,33)" fg:x="1397366" fg:w="39654"/><text x="58.3864%" y="447.50"></text></g><g><title>btrfs_root_node (1,261 samples, 0.05%)</title><rect x="59.7337%" y="421" width="0.0525%" height="15" fill="rgb(243,160,20)" fg:x="1435759" fg:w="1261"/><text x="59.9837%" y="431.50"></text></g><g><title>finish_wait (405 samples, 0.02%)</title><rect x="59.8045%" y="421" width="0.0168%" height="15" fill="rgb(218,208,30)" fg:x="1437461" fg:w="405"/><text x="60.0545%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (348 samples, 0.01%)</title><rect x="59.8069%" y="405" width="0.0145%" height="15" fill="rgb(224,120,49)" fg:x="1437518" fg:w="348"/><text x="60.0569%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (279 samples, 0.01%)</title><rect x="59.8097%" y="389" width="0.0116%" height="15" fill="rgb(246,12,2)" fg:x="1437587" fg:w="279"/><text x="60.0597%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (726 samples, 0.03%)</title><rect x="59.8375%" y="405" width="0.0302%" height="15" fill="rgb(236,117,3)" fg:x="1438253" fg:w="726"/><text x="60.0875%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (438 samples, 0.02%)</title><rect x="59.8494%" y="389" width="0.0182%" height="15" fill="rgb(216,128,52)" fg:x="1438541" fg:w="438"/><text x="60.0994%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,154 samples, 0.05%)</title><rect x="59.8222%" y="421" width="0.0480%" height="15" fill="rgb(246,145,19)" fg:x="1437887" fg:w="1154"/><text x="60.0722%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,328 samples, 0.06%)</title><rect x="59.8702%" y="421" width="0.0553%" height="15" fill="rgb(222,11,46)" fg:x="1439041" fg:w="1328"/><text x="60.1202%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (439 samples, 0.02%)</title><rect x="59.9072%" y="405" width="0.0183%" height="15" fill="rgb(245,82,36)" fg:x="1439930" fg:w="439"/><text x="60.1572%" y="415.50"></text></g><g><title>update_curr (399 samples, 0.02%)</title><rect x="59.9753%" y="357" width="0.0166%" height="15" fill="rgb(250,73,51)" fg:x="1441567" fg:w="399"/><text x="60.2253%" y="367.50"></text></g><g><title>dequeue_entity (1,158 samples, 0.05%)</title><rect x="59.9598%" y="373" width="0.0482%" height="15" fill="rgb(221,189,23)" fg:x="1441194" fg:w="1158"/><text x="60.2098%" y="383.50"></text></g><g><title>update_load_avg (386 samples, 0.02%)</title><rect x="59.9919%" y="357" width="0.0161%" height="15" fill="rgb(210,33,7)" fg:x="1441966" fg:w="386"/><text x="60.2419%" y="367.50"></text></g><g><title>dequeue_task_fair (1,396 samples, 0.06%)</title><rect x="59.9535%" y="389" width="0.0581%" height="15" fill="rgb(210,107,22)" fg:x="1441042" fg:w="1396"/><text x="60.2035%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (2,504 samples, 0.10%)</title><rect x="60.0237%" y="373" width="0.1042%" height="15" fill="rgb(222,116,37)" fg:x="1442729" fg:w="2504"/><text x="60.2737%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,449 samples, 0.10%)</title><rect x="60.0260%" y="357" width="0.1019%" height="15" fill="rgb(254,17,48)" fg:x="1442784" fg:w="2449"/><text x="60.2760%" y="367.50"></text></g><g><title>native_write_msr (2,425 samples, 0.10%)</title><rect x="60.0270%" y="341" width="0.1009%" height="15" fill="rgb(224,36,32)" fg:x="1442808" fg:w="2425"/><text x="60.2770%" y="351.50"></text></g><g><title>finish_task_switch (2,905 samples, 0.12%)</title><rect x="60.0116%" y="389" width="0.1209%" height="15" fill="rgb(232,90,46)" fg:x="1442438" fg:w="2905"/><text x="60.2616%" y="399.50"></text></g><g><title>pick_next_task_fair (252 samples, 0.01%)</title><rect x="60.1326%" y="389" width="0.0105%" height="15" fill="rgb(241,66,40)" fg:x="1445348" fg:w="252"/><text x="60.3826%" y="399.50"></text></g><g><title>psi_task_change (985 samples, 0.04%)</title><rect x="60.1520%" y="389" width="0.0410%" height="15" fill="rgb(249,184,29)" fg:x="1445814" fg:w="985"/><text x="60.4020%" y="399.50"></text></g><g><title>psi_group_change (812 samples, 0.03%)</title><rect x="60.1592%" y="373" width="0.0338%" height="15" fill="rgb(231,181,1)" fg:x="1445987" fg:w="812"/><text x="60.4092%" y="383.50"></text></g><g><title>__schedule (6,654 samples, 0.28%)</title><rect x="59.9289%" y="405" width="0.2768%" height="15" fill="rgb(224,94,2)" fg:x="1440450" fg:w="6654"/><text x="60.1789%" y="415.50"></text></g><g><title>__btrfs_tree_lock (10,085 samples, 0.42%)</title><rect x="59.7862%" y="437" width="0.4196%" height="15" fill="rgb(229,170,15)" fg:x="1437020" fg:w="10085"/><text x="60.0362%" y="447.50"></text></g><g><title>schedule (6,736 samples, 0.28%)</title><rect x="59.9255%" y="421" width="0.2802%" height="15" fill="rgb(240,127,35)" fg:x="1440369" fg:w="6736"/><text x="60.1755%" y="431.50"></text></g><g><title>btrfs_leaf_free_space (1,010 samples, 0.04%)</title><rect x="60.2126%" y="437" width="0.0420%" height="15" fill="rgb(248,196,34)" fg:x="1447269" fg:w="1010"/><text x="60.4626%" y="447.50"></text></g><g><title>leaf_space_used (741 samples, 0.03%)</title><rect x="60.2237%" y="421" width="0.0308%" height="15" fill="rgb(236,137,7)" fg:x="1447538" fg:w="741"/><text x="60.4737%" y="431.50"></text></g><g><title>btrfs_get_32 (498 samples, 0.02%)</title><rect x="60.2339%" y="405" width="0.0207%" height="15" fill="rgb(235,127,16)" fg:x="1447781" fg:w="498"/><text x="60.4839%" y="415.50"></text></g><g><title>btrfs_set_lock_blocking_read (302 samples, 0.01%)</title><rect x="60.2836%" y="421" width="0.0126%" height="15" fill="rgb(250,192,54)" fg:x="1448976" fg:w="302"/><text x="60.5336%" y="431.50"></text></g><g><title>btrfs_set_path_blocking (990 samples, 0.04%)</title><rect x="60.2600%" y="437" width="0.0412%" height="15" fill="rgb(218,98,20)" fg:x="1448410" fg:w="990"/><text x="60.5100%" y="447.50"></text></g><g><title>_raw_write_lock (557 samples, 0.02%)</title><rect x="60.3087%" y="421" width="0.0232%" height="15" fill="rgb(230,176,47)" fg:x="1449580" fg:w="557"/><text x="60.5587%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (7,730 samples, 0.32%)</title><rect x="60.3015%" y="437" width="0.3216%" height="15" fill="rgb(244,2,33)" fg:x="1449406" fg:w="7730"/><text x="60.5515%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (6,999 samples, 0.29%)</title><rect x="60.3319%" y="421" width="0.2912%" height="15" fill="rgb(231,100,17)" fg:x="1450137" fg:w="6999"/><text x="60.5819%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,171 samples, 0.05%)</title><rect x="60.5743%" y="405" width="0.0487%" height="15" fill="rgb(245,23,12)" fg:x="1455965" fg:w="1171"/><text x="60.8243%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (3,845 samples, 0.16%)</title><rect x="60.6231%" y="437" width="0.1600%" height="15" fill="rgb(249,55,22)" fg:x="1457137" fg:w="3845"/><text x="60.8731%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (808 samples, 0.03%)</title><rect x="60.8055%" y="421" width="0.0336%" height="15" fill="rgb(207,134,9)" fg:x="1461522" fg:w="808"/><text x="61.0555%" y="431.50"></text></g><g><title>verify_parent_transid (680 samples, 0.03%)</title><rect x="60.8109%" y="405" width="0.0283%" height="15" fill="rgb(218,134,0)" fg:x="1461650" fg:w="680"/><text x="61.0609%" y="415.50"></text></g><g><title>btrfs_get_64 (775 samples, 0.03%)</title><rect x="60.8392%" y="421" width="0.0322%" height="15" fill="rgb(213,212,33)" fg:x="1462330" fg:w="775"/><text x="61.0892%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (242 samples, 0.01%)</title><rect x="60.8613%" y="405" width="0.0101%" height="15" fill="rgb(252,106,18)" fg:x="1462863" fg:w="242"/><text x="61.1113%" y="415.50"></text></g><g><title>__radix_tree_lookup (2,316 samples, 0.10%)</title><rect x="60.9733%" y="405" width="0.0964%" height="15" fill="rgb(208,126,42)" fg:x="1465554" fg:w="2316"/><text x="61.2233%" y="415.50"></text></g><g><title>mark_page_accessed (840 samples, 0.03%)</title><rect x="61.0840%" y="389" width="0.0349%" height="15" fill="rgb(246,175,29)" fg:x="1468216" fg:w="840"/><text x="61.3340%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,178 samples, 0.05%)</title><rect x="61.0703%" y="405" width="0.0490%" height="15" fill="rgb(215,13,50)" fg:x="1467886" fg:w="1178"/><text x="61.3203%" y="415.50"></text></g><g><title>find_extent_buffer (5,743 samples, 0.24%)</title><rect x="60.8820%" y="421" width="0.2389%" height="15" fill="rgb(216,172,15)" fg:x="1463359" fg:w="5743"/><text x="61.1320%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (8,832 samples, 0.37%)</title><rect x="60.7831%" y="437" width="0.3674%" height="15" fill="rgb(212,103,13)" fg:x="1460982" fg:w="8832"/><text x="61.0331%" y="447.50"></text></g><g><title>read_extent_buffer (712 samples, 0.03%)</title><rect x="61.1209%" y="421" width="0.0296%" height="15" fill="rgb(231,171,36)" fg:x="1469102" fg:w="712"/><text x="61.3709%" y="431.50"></text></g><g><title>split_leaf (249 samples, 0.01%)</title><rect x="61.1509%" y="437" width="0.0104%" height="15" fill="rgb(250,123,20)" fg:x="1469822" fg:w="249"/><text x="61.4009%" y="447.50"></text></g><g><title>_raw_spin_lock (286 samples, 0.01%)</title><rect x="61.2635%" y="357" width="0.0119%" height="15" fill="rgb(212,53,50)" fg:x="1472529" fg:w="286"/><text x="61.5135%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (275 samples, 0.01%)</title><rect x="61.2754%" y="357" width="0.0114%" height="15" fill="rgb(243,54,12)" fg:x="1472815" fg:w="275"/><text x="61.5254%" y="367.50"></text></g><g><title>available_idle_cpu (290 samples, 0.01%)</title><rect x="61.3167%" y="341" width="0.0121%" height="15" fill="rgb(234,101,34)" fg:x="1473807" fg:w="290"/><text x="61.5667%" y="351.50"></text></g><g><title>select_task_rq_fair (1,527 samples, 0.06%)</title><rect x="61.2879%" y="357" width="0.0635%" height="15" fill="rgb(254,67,22)" fg:x="1473117" fg:w="1527"/><text x="61.5379%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (333 samples, 0.01%)</title><rect x="61.3376%" y="341" width="0.0139%" height="15" fill="rgb(250,35,47)" fg:x="1474311" fg:w="333"/><text x="61.5876%" y="351.50"></text></g><g><title>enqueue_entity (1,330 samples, 0.06%)</title><rect x="61.3722%" y="325" width="0.0553%" height="15" fill="rgb(226,126,38)" fg:x="1475142" fg:w="1330"/><text x="61.6222%" y="335.50"></text></g><g><title>update_load_avg (470 samples, 0.02%)</title><rect x="61.4080%" y="309" width="0.0196%" height="15" fill="rgb(216,138,53)" fg:x="1476002" fg:w="470"/><text x="61.6580%" y="319.50"></text></g><g><title>enqueue_task_fair (1,710 samples, 0.07%)</title><rect x="61.3612%" y="341" width="0.0711%" height="15" fill="rgb(246,199,43)" fg:x="1474878" fg:w="1710"/><text x="61.6112%" y="351.50"></text></g><g><title>ttwu_do_activate (3,523 samples, 0.15%)</title><rect x="61.3567%" y="357" width="0.1466%" height="15" fill="rgb(232,125,11)" fg:x="1474769" fg:w="3523"/><text x="61.6067%" y="367.50"></text></g><g><title>psi_task_change (1,701 samples, 0.07%)</title><rect x="61.4325%" y="341" width="0.0708%" height="15" fill="rgb(218,219,45)" fg:x="1476591" fg:w="1701"/><text x="61.6825%" y="351.50"></text></g><g><title>psi_group_change (1,500 samples, 0.06%)</title><rect x="61.4408%" y="325" width="0.0624%" height="15" fill="rgb(216,102,54)" fg:x="1476792" fg:w="1500"/><text x="61.6908%" y="335.50"></text></g><g><title>record_times (255 samples, 0.01%)</title><rect x="61.4926%" y="309" width="0.0106%" height="15" fill="rgb(250,228,7)" fg:x="1478037" fg:w="255"/><text x="61.7426%" y="319.50"></text></g><g><title>ttwu_do_wakeup (290 samples, 0.01%)</title><rect x="61.5032%" y="357" width="0.0121%" height="15" fill="rgb(226,125,25)" fg:x="1478292" fg:w="290"/><text x="61.7532%" y="367.50"></text></g><g><title>check_preempt_curr (258 samples, 0.01%)</title><rect x="61.5046%" y="341" width="0.0107%" height="15" fill="rgb(224,165,27)" fg:x="1478324" fg:w="258"/><text x="61.7546%" y="351.50"></text></g><g><title>__wake_up_common (7,970 samples, 0.33%)</title><rect x="61.2030%" y="405" width="0.3316%" height="15" fill="rgb(233,86,3)" fg:x="1471075" fg:w="7970"/><text x="61.4530%" y="415.50"></text></g><g><title>autoremove_wake_function (7,851 samples, 0.33%)</title><rect x="61.2079%" y="389" width="0.3266%" height="15" fill="rgb(228,116,20)" fg:x="1471194" fg:w="7851"/><text x="61.4579%" y="399.50"></text></g><g><title>try_to_wake_up (7,634 samples, 0.32%)</title><rect x="61.2170%" y="373" width="0.3176%" height="15" fill="rgb(209,192,17)" fg:x="1471411" fg:w="7634"/><text x="61.4670%" y="383.50"></text></g><g><title>update_rq_clock (273 samples, 0.01%)</title><rect x="61.5232%" y="357" width="0.0114%" height="15" fill="rgb(224,88,34)" fg:x="1478772" fg:w="273"/><text x="61.7732%" y="367.50"></text></g><g><title>__wake_up_common_lock (8,171 samples, 0.34%)</title><rect x="61.2019%" y="421" width="0.3399%" height="15" fill="rgb(233,38,6)" fg:x="1471048" fg:w="8171"/><text x="61.4519%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (603 samples, 0.03%)</title><rect x="61.5421%" y="421" width="0.0251%" height="15" fill="rgb(212,59,30)" fg:x="1479226" fg:w="603"/><text x="61.7921%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (278 samples, 0.01%)</title><rect x="61.5672%" y="421" width="0.0116%" height="15" fill="rgb(213,80,3)" fg:x="1479829" fg:w="278"/><text x="61.8172%" y="431.50"></text></g><g><title>btrfs_search_slot (85,148 samples, 3.54%)</title><rect x="58.0460%" y="453" width="3.5425%" height="15" fill="rgb(251,178,7)" fg:x="1395193" fg:w="85148"/><text x="58.2960%" y="463.50">btrf..</text></g><g><title>unlock_up (10,186 samples, 0.42%)</title><rect x="61.1647%" y="437" width="0.4238%" height="15" fill="rgb(213,154,26)" fg:x="1470155" fg:w="10186"/><text x="61.4147%" y="447.50"></text></g><g><title>btrfs_get_32 (404 samples, 0.02%)</title><rect x="61.6440%" y="437" width="0.0168%" height="15" fill="rgb(238,165,49)" fg:x="1481674" fg:w="404"/><text x="61.8940%" y="447.50"></text></g><g><title>btrfs_get_token_32 (375 samples, 0.02%)</title><rect x="61.6608%" y="437" width="0.0156%" height="15" fill="rgb(248,91,46)" fg:x="1482078" fg:w="375"/><text x="61.9108%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (1,133 samples, 0.05%)</title><rect x="61.6764%" y="437" width="0.0471%" height="15" fill="rgb(244,21,52)" fg:x="1482453" fg:w="1133"/><text x="61.9264%" y="447.50"></text></g><g><title>leaf_space_used (938 samples, 0.04%)</title><rect x="61.6845%" y="421" width="0.0390%" height="15" fill="rgb(247,122,20)" fg:x="1482648" fg:w="938"/><text x="61.9345%" y="431.50"></text></g><g><title>btrfs_get_32 (701 samples, 0.03%)</title><rect x="61.6943%" y="405" width="0.0292%" height="15" fill="rgb(218,27,9)" fg:x="1482885" fg:w="701"/><text x="61.9443%" y="415.50"></text></g><g><title>btrfs_mark_buffer_dirty (885 samples, 0.04%)</title><rect x="61.7235%" y="437" width="0.0368%" height="15" fill="rgb(246,7,6)" fg:x="1483586" fg:w="885"/><text x="61.9735%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (421 samples, 0.02%)</title><rect x="61.7428%" y="421" width="0.0175%" height="15" fill="rgb(227,135,54)" fg:x="1484050" fg:w="421"/><text x="61.9928%" y="431.50"></text></g><g><title>btrfs_set_token_32 (588 samples, 0.02%)</title><rect x="61.7603%" y="437" width="0.0245%" height="15" fill="rgb(247,14,11)" fg:x="1484471" fg:w="588"/><text x="62.0103%" y="447.50"></text></g><g><title>btrfs_unlock_up_safe (427 samples, 0.02%)</title><rect x="61.7848%" y="437" width="0.0178%" height="15" fill="rgb(206,149,34)" fg:x="1485059" fg:w="427"/><text x="62.0348%" y="447.50"></text></g><g><title>memmove_extent_buffer (720 samples, 0.03%)</title><rect x="61.8025%" y="437" width="0.0300%" height="15" fill="rgb(227,228,4)" fg:x="1485486" fg:w="720"/><text x="62.0525%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (92,205 samples, 3.84%)</title><rect x="58.0304%" y="469" width="3.8361%" height="15" fill="rgb(238,218,28)" fg:x="1394818" fg:w="92205"/><text x="58.2804%" y="479.50">btrf..</text></g><g><title>setup_items_for_insert (6,682 samples, 0.28%)</title><rect x="61.5885%" y="453" width="0.2780%" height="15" fill="rgb(252,86,40)" fg:x="1480341" fg:w="6682"/><text x="61.8385%" y="463.50"></text></g><g><title>write_extent_buffer (816 samples, 0.03%)</title><rect x="61.8325%" y="437" width="0.0339%" height="15" fill="rgb(251,225,11)" fg:x="1486207" fg:w="816"/><text x="62.0825%" y="447.50"></text></g><g><title>kmem_cache_alloc (686 samples, 0.03%)</title><rect x="61.8665%" y="469" width="0.0285%" height="15" fill="rgb(206,46,49)" fg:x="1487023" fg:w="686"/><text x="62.1165%" y="479.50"></text></g><g><title>btrfs_orphan_add (98,830 samples, 4.11%)</title><rect x="57.8096%" y="501" width="4.1117%" height="15" fill="rgb(245,128,24)" fg:x="1389512" fg:w="98830"/><text x="58.0596%" y="511.50">btrf..</text></g><g><title>btrfs_insert_orphan_item (98,671 samples, 4.11%)</title><rect x="57.8162%" y="485" width="4.1051%" height="15" fill="rgb(219,177,34)" fg:x="1389671" fg:w="98671"/><text x="58.0662%" y="495.50">btrf..</text></g><g><title>kmem_cache_free (633 samples, 0.03%)</title><rect x="61.8950%" y="469" width="0.0263%" height="15" fill="rgb(218,60,48)" fg:x="1487709" fg:w="633"/><text x="62.1450%" y="479.50"></text></g><g><title>mutex_lock (820 samples, 0.03%)</title><rect x="61.9256%" y="485" width="0.0341%" height="15" fill="rgb(221,11,5)" fg:x="1488443" fg:w="820"/><text x="62.1756%" y="495.50"></text></g><g><title>btrfs_record_unlink_dir (1,103 samples, 0.05%)</title><rect x="61.9214%" y="501" width="0.0459%" height="15" fill="rgb(220,148,13)" fg:x="1488342" fg:w="1103"/><text x="62.1714%" y="511.50"></text></g><g><title>_raw_spin_lock (244 samples, 0.01%)</title><rect x="62.0200%" y="453" width="0.0102%" height="15" fill="rgb(210,16,3)" fg:x="1490713" fg:w="244"/><text x="62.2700%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,099 samples, 0.05%)</title><rect x="62.0051%" y="469" width="0.0457%" height="15" fill="rgb(236,80,2)" fg:x="1490355" fg:w="1099"/><text x="62.2551%" y="479.50"></text></g><g><title>mutex_unlock (314 samples, 0.01%)</title><rect x="62.0378%" y="453" width="0.0131%" height="15" fill="rgb(239,129,19)" fg:x="1491140" fg:w="314"/><text x="62.2878%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (892 samples, 0.04%)</title><rect x="62.0509%" y="469" width="0.0371%" height="15" fill="rgb(220,106,35)" fg:x="1491455" fg:w="892"/><text x="62.3009%" y="479.50"></text></g><g><title>_raw_spin_lock (806 samples, 0.03%)</title><rect x="62.0545%" y="453" width="0.0335%" height="15" fill="rgb(252,139,45)" fg:x="1491541" fg:w="806"/><text x="62.3045%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (352 samples, 0.01%)</title><rect x="62.0880%" y="469" width="0.0146%" height="15" fill="rgb(229,8,36)" fg:x="1492347" fg:w="352"/><text x="62.3380%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (309 samples, 0.01%)</title><rect x="62.0898%" y="453" width="0.0129%" height="15" fill="rgb(230,126,33)" fg:x="1492390" fg:w="309"/><text x="62.3398%" y="463.50"></text></g><g><title>inode_get_bytes (244 samples, 0.01%)</title><rect x="62.1094%" y="453" width="0.0102%" height="15" fill="rgb(239,140,21)" fg:x="1492862" fg:w="244"/><text x="62.3594%" y="463.50"></text></g><g><title>fill_stack_inode_item (515 samples, 0.02%)</title><rect x="62.1026%" y="469" width="0.0214%" height="15" fill="rgb(254,104,9)" fg:x="1492699" fg:w="515"/><text x="62.3526%" y="479.50"></text></g><g><title>mutex_lock (377 samples, 0.02%)</title><rect x="62.1241%" y="469" width="0.0157%" height="15" fill="rgb(239,52,14)" fg:x="1493214" fg:w="377"/><text x="62.3741%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (3,907 samples, 0.16%)</title><rect x="61.9829%" y="485" width="0.1625%" height="15" fill="rgb(208,227,44)" fg:x="1489821" fg:w="3907"/><text x="62.2329%" y="495.50"></text></g><g><title>btrfs_update_inode (4,682 samples, 0.19%)</title><rect x="61.9733%" y="501" width="0.1948%" height="15" fill="rgb(246,18,19)" fg:x="1489591" fg:w="4682"/><text x="62.2233%" y="511.50"></text></g><g><title>btrfs_update_root_times (545 samples, 0.02%)</title><rect x="62.1454%" y="485" width="0.0227%" height="15" fill="rgb(235,228,25)" fg:x="1493728" fg:w="545"/><text x="62.3954%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (276 samples, 0.01%)</title><rect x="62.1566%" y="469" width="0.0115%" height="15" fill="rgb(240,156,20)" fg:x="1493997" fg:w="276"/><text x="62.4066%" y="479.50"></text></g><g><title>drop_nlink (730 samples, 0.03%)</title><rect x="62.1681%" y="501" width="0.0304%" height="15" fill="rgb(224,8,20)" fg:x="1494273" fg:w="730"/><text x="62.4181%" y="511.50"></text></g><g><title>_raw_spin_lock (607 samples, 0.03%)</title><rect x="62.2753%" y="469" width="0.0253%" height="15" fill="rgb(214,12,52)" fg:x="1496849" fg:w="607"/><text x="62.5253%" y="479.50"></text></g><g><title>_raw_spin_lock (1,205 samples, 0.05%)</title><rect x="62.3444%" y="437" width="0.0501%" height="15" fill="rgb(211,220,47)" fg:x="1498511" fg:w="1205"/><text x="62.5944%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (454 samples, 0.02%)</title><rect x="62.3757%" y="421" width="0.0189%" height="15" fill="rgb(250,173,5)" fg:x="1499262" fg:w="454"/><text x="62.6257%" y="431.50"></text></g><g><title>_raw_spin_lock (301 samples, 0.01%)</title><rect x="62.4547%" y="405" width="0.0125%" height="15" fill="rgb(250,125,52)" fg:x="1501162" fg:w="301"/><text x="62.7047%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,748 samples, 0.07%)</title><rect x="62.3947%" y="437" width="0.0727%" height="15" fill="rgb(209,133,18)" fg:x="1499718" fg:w="1748"/><text x="62.6447%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (815 samples, 0.03%)</title><rect x="62.4335%" y="421" width="0.0339%" height="15" fill="rgb(216,173,22)" fg:x="1500651" fg:w="815"/><text x="62.6835%" y="431.50"></text></g><g><title>_raw_spin_lock (372 samples, 0.02%)</title><rect x="62.4993%" y="405" width="0.0155%" height="15" fill="rgb(205,3,22)" fg:x="1502234" fg:w="372"/><text x="62.7493%" y="415.50"></text></g><g><title>__reserve_bytes (4,545 samples, 0.19%)</title><rect x="62.3258%" y="453" width="0.1891%" height="15" fill="rgb(248,22,20)" fg:x="1498063" fg:w="4545"/><text x="62.5758%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (1,142 samples, 0.05%)</title><rect x="62.4674%" y="437" width="0.0475%" height="15" fill="rgb(233,6,29)" fg:x="1501466" fg:w="1142"/><text x="62.7174%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (620 samples, 0.03%)</title><rect x="62.4891%" y="421" width="0.0258%" height="15" fill="rgb(240,22,54)" fg:x="1501988" fg:w="620"/><text x="62.7391%" y="431.50"></text></g><g><title>btrfs_block_rsv_add (5,950 samples, 0.25%)</title><rect x="62.2677%" y="485" width="0.2475%" height="15" fill="rgb(231,133,32)" fg:x="1496666" fg:w="5950"/><text x="62.5177%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,160 samples, 0.21%)</title><rect x="62.3005%" y="469" width="0.2147%" height="15" fill="rgb(248,193,4)" fg:x="1497456" fg:w="5160"/><text x="62.5505%" y="479.50"></text></g><g><title>_raw_spin_lock (392 samples, 0.02%)</title><rect x="62.5418%" y="469" width="0.0163%" height="15" fill="rgb(211,178,46)" fg:x="1503254" fg:w="392"/><text x="62.7918%" y="479.50"></text></g><g><title>join_transaction (988 samples, 0.04%)</title><rect x="62.5171%" y="485" width="0.0411%" height="15" fill="rgb(224,5,42)" fg:x="1502662" fg:w="988"/><text x="62.7671%" y="495.50"></text></g><g><title>kmem_cache_alloc (703 samples, 0.03%)</title><rect x="62.5582%" y="485" width="0.0292%" height="15" fill="rgb(239,176,25)" fg:x="1503650" fg:w="703"/><text x="62.8082%" y="495.50"></text></g><g><title>_raw_spin_lock (690 samples, 0.03%)</title><rect x="62.6024%" y="469" width="0.0287%" height="15" fill="rgb(245,187,50)" fg:x="1504712" fg:w="690"/><text x="62.8524%" y="479.50"></text></g><g><title>btrfs_unlink (435,190 samples, 18.11%)</title><rect x="44.5255%" y="517" width="18.1058%" height="15" fill="rgb(248,24,15)" fg:x="1070216" fg:w="435190"/><text x="44.7755%" y="527.50">btrfs_unlink</text></g><g><title>start_transaction (10,400 samples, 0.43%)</title><rect x="62.1986%" y="501" width="0.4327%" height="15" fill="rgb(205,166,13)" fg:x="1495006" fg:w="10400"/><text x="62.4486%" y="511.50"></text></g><g><title>wait_current_trans (1,053 samples, 0.04%)</title><rect x="62.5875%" y="485" width="0.0438%" height="15" fill="rgb(208,114,23)" fg:x="1504353" fg:w="1053"/><text x="62.8375%" y="495.50"></text></g><g><title>d_delete (436 samples, 0.02%)</title><rect x="62.6313%" y="517" width="0.0181%" height="15" fill="rgb(239,127,18)" fg:x="1505406" fg:w="436"/><text x="62.8813%" y="527.50"></text></g><g><title>_raw_spin_lock (302 samples, 0.01%)</title><rect x="62.6369%" y="501" width="0.0126%" height="15" fill="rgb(219,154,28)" fg:x="1505540" fg:w="302"/><text x="62.8869%" y="511.50"></text></g><g><title>__srcu_read_lock (733 samples, 0.03%)</title><rect x="62.7005%" y="469" width="0.0305%" height="15" fill="rgb(225,157,23)" fg:x="1507070" fg:w="733"/><text x="62.9505%" y="479.50"></text></g><g><title>dentry_unlink_inode (2,120 samples, 0.09%)</title><rect x="62.6494%" y="517" width="0.0882%" height="15" fill="rgb(219,8,6)" fg:x="1505842" fg:w="2120"/><text x="62.8994%" y="527.50"></text></g><g><title>fsnotify_destroy_marks (1,357 samples, 0.06%)</title><rect x="62.6812%" y="501" width="0.0565%" height="15" fill="rgb(212,47,6)" fg:x="1506605" fg:w="1357"/><text x="62.9312%" y="511.50"></text></g><g><title>fsnotify_grab_connector (1,119 samples, 0.05%)</title><rect x="62.6911%" y="485" width="0.0466%" height="15" fill="rgb(224,190,4)" fg:x="1506843" fg:w="1119"/><text x="62.9411%" y="495.50"></text></g><g><title>down_write (1,106 samples, 0.05%)</title><rect x="62.7376%" y="517" width="0.0460%" height="15" fill="rgb(239,183,29)" fg:x="1507962" fg:w="1106"/><text x="62.9876%" y="527.50"></text></g><g><title>fsnotify (1,358 samples, 0.06%)</title><rect x="62.7837%" y="517" width="0.0565%" height="15" fill="rgb(213,57,7)" fg:x="1509068" fg:w="1358"/><text x="63.0337%" y="527.50"></text></g><g><title>ihold (329 samples, 0.01%)</title><rect x="62.8402%" y="517" width="0.0137%" height="15" fill="rgb(216,148,1)" fg:x="1510426" fg:w="329"/><text x="63.0902%" y="527.50"></text></g><g><title>iput.part.0 (693 samples, 0.03%)</title><rect x="62.8565%" y="517" width="0.0288%" height="15" fill="rgb(236,182,29)" fg:x="1510819" fg:w="693"/><text x="63.1065%" y="527.50"></text></g><g><title>_atomic_dec_and_lock (535 samples, 0.02%)</title><rect x="62.8631%" y="501" width="0.0223%" height="15" fill="rgb(244,120,48)" fg:x="1510977" fg:w="535"/><text x="63.1131%" y="511.50"></text></g><g><title>btrfs_permission (445 samples, 0.02%)</title><rect x="62.9034%" y="485" width="0.0185%" height="15" fill="rgb(206,71,34)" fg:x="1511947" fg:w="445"/><text x="63.1534%" y="495.50"></text></g><g><title>inode_permission.part.0 (671 samples, 0.03%)</title><rect x="62.8957%" y="501" width="0.0279%" height="15" fill="rgb(242,32,6)" fg:x="1511762" fg:w="671"/><text x="63.1457%" y="511.50"></text></g><g><title>may_delete (946 samples, 0.04%)</title><rect x="62.8854%" y="517" width="0.0394%" height="15" fill="rgb(241,35,3)" fg:x="1511513" fg:w="946"/><text x="63.1354%" y="527.50"></text></g><g><title>do_unlinkat (1,150,405 samples, 47.86%)</title><rect x="15.0795%" y="549" width="47.8617%" height="15" fill="rgb(222,62,19)" fg:x="362451" fg:w="1150405"/><text x="15.3295%" y="559.50">do_unlinkat</text></g><g><title>vfs_unlink (443,434 samples, 18.45%)</title><rect x="44.4925%" y="533" width="18.4487%" height="15" fill="rgb(223,110,41)" fg:x="1069422" fg:w="443434"/><text x="44.7425%" y="543.50">vfs_unlink</text></g><g><title>up_write (356 samples, 0.01%)</title><rect x="62.9264%" y="517" width="0.0148%" height="15" fill="rgb(208,224,4)" fg:x="1512500" fg:w="356"/><text x="63.1764%" y="527.50"></text></g><g><title>do_syscall_64 (1,264,893 samples, 52.62%)</title><rect x="10.3261%" y="565" width="52.6249%" height="15" fill="rgb(241,137,19)" fg:x="248199" fg:w="1264893"/><text x="10.5761%" y="575.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (1,267,502 samples, 52.73%)</title><rect x="10.3060%" y="581" width="52.7335%" height="15" fill="rgb(244,24,17)" fg:x="247714" fg:w="1267502"/><text x="10.5560%" y="591.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (2,124 samples, 0.09%)</title><rect x="62.9511%" y="565" width="0.0884%" height="15" fill="rgb(245,178,49)" fg:x="1513092" fg:w="2124"/><text x="63.2011%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,783 samples, 0.07%)</title><rect x="62.9653%" y="549" width="0.0742%" height="15" fill="rgb(219,160,38)" fg:x="1513433" fg:w="1783"/><text x="63.2153%" y="559.50"></text></g><g><title>switch_fpu_return (1,466 samples, 0.06%)</title><rect x="62.9784%" y="533" width="0.0610%" height="15" fill="rgb(228,137,14)" fg:x="1513750" fg:w="1466"/><text x="63.2284%" y="543.50"></text></g><g><title>copy_kernel_to_fpregs (642 samples, 0.03%)</title><rect x="63.0127%" y="517" width="0.0267%" height="15" fill="rgb(237,134,11)" fg:x="1514574" fg:w="642"/><text x="63.2627%" y="527.50"></text></g><g><title>syscall_return_via_sysret (418 samples, 0.02%)</title><rect x="63.0441%" y="581" width="0.0174%" height="15" fill="rgb(211,126,44)" fg:x="1515329" fg:w="418"/><text x="63.2941%" y="591.50"></text></g><g><title>__GI_unlinkat (1,270,897 samples, 52.87%)</title><rect x="10.1871%" y="597" width="52.8747%" height="15" fill="rgb(226,171,33)" fg:x="244857" fg:w="1270897"/><text x="10.4371%" y="607.50">__GI_unlinkat</text></g><g><title>__closedir (469 samples, 0.02%)</title><rect x="63.0625%" y="597" width="0.0195%" height="15" fill="rgb(253,99,13)" fg:x="1515771" fg:w="469"/><text x="63.3125%" y="607.50"></text></g><g><title>_int_free (339 samples, 0.01%)</title><rect x="63.0679%" y="581" width="0.0141%" height="15" fill="rgb(244,48,7)" fg:x="1515901" fg:w="339"/><text x="63.3179%" y="591.50"></text></g><g><title>__dirfd (515 samples, 0.02%)</title><rect x="63.0820%" y="597" width="0.0214%" height="15" fill="rgb(244,217,54)" fg:x="1516240" fg:w="515"/><text x="63.3320%" y="607.50"></text></g><g><title>__GI___fcntl64_nocancel (275 samples, 0.01%)</title><rect x="63.1066%" y="581" width="0.0114%" height="15" fill="rgb(224,15,18)" fg:x="1516831" fg:w="275"/><text x="63.3566%" y="591.50"></text></g><g><title>__fcntl64_nocancel_adjusted (268 samples, 0.01%)</title><rect x="63.1069%" y="565" width="0.0111%" height="15" fill="rgb(244,99,12)" fg:x="1516838" fg:w="268"/><text x="63.3569%" y="575.50"></text></g><g><title>__do_sys_newfstat (610 samples, 0.03%)</title><rect x="63.1232%" y="533" width="0.0254%" height="15" fill="rgb(233,226,8)" fg:x="1517229" fg:w="610"/><text x="63.3732%" y="543.50"></text></g><g><title>vfs_fstat (477 samples, 0.02%)</title><rect x="63.1287%" y="517" width="0.0198%" height="15" fill="rgb(229,211,3)" fg:x="1517362" fg:w="477"/><text x="63.3787%" y="527.50"></text></g><g><title>do_syscall_64 (644 samples, 0.03%)</title><rect x="63.1222%" y="549" width="0.0268%" height="15" fill="rgb(216,140,21)" fg:x="1517205" fg:w="644"/><text x="63.3722%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (668 samples, 0.03%)</title><rect x="63.1219%" y="565" width="0.0278%" height="15" fill="rgb(234,122,30)" fg:x="1517199" fg:w="668"/><text x="63.3719%" y="575.50"></text></g><g><title>__GI___fxstat (773 samples, 0.03%)</title><rect x="63.1181%" y="581" width="0.0322%" height="15" fill="rgb(236,25,46)" fg:x="1517106" fg:w="773"/><text x="63.3681%" y="591.50"></text></g><g><title>_int_malloc (588 samples, 0.02%)</title><rect x="63.1673%" y="549" width="0.0245%" height="15" fill="rgb(217,52,54)" fg:x="1518290" fg:w="588"/><text x="63.4173%" y="559.50"></text></g><g><title>__GI___libc_malloc (768 samples, 0.03%)</title><rect x="63.1599%" y="565" width="0.0320%" height="15" fill="rgb(222,29,26)" fg:x="1518112" fg:w="768"/><text x="63.4099%" y="575.50"></text></g><g><title>__alloc_dir (1,037 samples, 0.04%)</title><rect x="63.1502%" y="581" width="0.0431%" height="15" fill="rgb(216,177,29)" fg:x="1517879" fg:w="1037"/><text x="63.4002%" y="591.50"></text></g><g><title>__fdopendir (2,100 samples, 0.09%)</title><rect x="63.1061%" y="597" width="0.0874%" height="15" fill="rgb(247,136,51)" fg:x="1516818" fg:w="2100"/><text x="63.3561%" y="607.50"></text></g><g><title>kmem_cache_alloc (728 samples, 0.03%)</title><rect x="63.2375%" y="453" width="0.0303%" height="15" fill="rgb(231,47,47)" fg:x="1519976" fg:w="728"/><text x="63.4875%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (356 samples, 0.01%)</title><rect x="63.2530%" y="437" width="0.0148%" height="15" fill="rgb(211,192,36)" fg:x="1520348" fg:w="356"/><text x="63.5030%" y="447.50"></text></g><g><title>__alloc_file (1,044 samples, 0.04%)</title><rect x="63.2341%" y="469" width="0.0434%" height="15" fill="rgb(229,156,32)" fg:x="1519894" fg:w="1044"/><text x="63.4841%" y="479.50"></text></g><g><title>alloc_empty_file (1,087 samples, 0.05%)</title><rect x="63.2332%" y="485" width="0.0452%" height="15" fill="rgb(248,213,20)" fg:x="1519873" fg:w="1087"/><text x="63.4832%" y="495.50"></text></g><g><title>btrfs_opendir (618 samples, 0.03%)</title><rect x="63.2900%" y="469" width="0.0257%" height="15" fill="rgb(217,64,7)" fg:x="1521238" fg:w="618"/><text x="63.5400%" y="479.50"></text></g><g><title>kmem_cache_alloc_trace (556 samples, 0.02%)</title><rect x="63.2926%" y="453" width="0.0231%" height="15" fill="rgb(232,142,8)" fg:x="1521300" fg:w="556"/><text x="63.5426%" y="463.50"></text></g><g><title>security_file_open (395 samples, 0.02%)</title><rect x="63.3237%" y="469" width="0.0164%" height="15" fill="rgb(224,92,44)" fg:x="1522049" fg:w="395"/><text x="63.5737%" y="479.50"></text></g><g><title>do_dentry_open (1,352 samples, 0.06%)</title><rect x="63.2841%" y="485" width="0.0562%" height="15" fill="rgb(214,169,17)" fg:x="1521096" fg:w="1352"/><text x="63.5341%" y="495.50"></text></g><g><title>do_filp_open (3,624 samples, 0.15%)</title><rect x="63.2248%" y="517" width="0.1508%" height="15" fill="rgb(210,59,37)" fg:x="1519672" fg:w="3624"/><text x="63.4748%" y="527.50"></text></g><g><title>path_openat (3,559 samples, 0.15%)</title><rect x="63.2275%" y="501" width="0.1481%" height="15" fill="rgb(214,116,48)" fg:x="1519737" fg:w="3559"/><text x="63.4775%" y="511.50"></text></g><g><title>getname_flags.part.0 (501 samples, 0.02%)</title><rect x="63.3816%" y="517" width="0.0208%" height="15" fill="rgb(244,191,6)" fg:x="1523441" fg:w="501"/><text x="63.6316%" y="527.50"></text></g><g><title>strncpy_from_user (265 samples, 0.01%)</title><rect x="63.3915%" y="501" width="0.0110%" height="15" fill="rgb(241,50,52)" fg:x="1523677" fg:w="265"/><text x="63.6415%" y="511.50"></text></g><g><title>__x64_sys_openat (4,804 samples, 0.20%)</title><rect x="63.2060%" y="549" width="0.1999%" height="15" fill="rgb(236,75,39)" fg:x="1519220" fg:w="4804"/><text x="63.4560%" y="559.50"></text></g><g><title>do_sys_openat2 (4,741 samples, 0.20%)</title><rect x="63.2086%" y="533" width="0.1972%" height="15" fill="rgb(236,99,0)" fg:x="1519283" fg:w="4741"/><text x="63.4586%" y="543.50"></text></g><g><title>do_syscall_64 (4,877 samples, 0.20%)</title><rect x="63.2039%" y="565" width="0.2029%" height="15" fill="rgb(207,202,15)" fg:x="1519170" fg:w="4877"/><text x="63.4539%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,936 samples, 0.21%)</title><rect x="63.2031%" y="581" width="0.2054%" height="15" fill="rgb(233,207,14)" fg:x="1519150" fg:w="4936"/><text x="63.4531%" y="591.50"></text></g><g><title>__libc_openat64 (5,176 samples, 0.22%)</title><rect x="63.1946%" y="597" width="0.2153%" height="15" fill="rgb(226,27,51)" fg:x="1518945" fg:w="5176"/><text x="63.4446%" y="607.50"></text></g><g><title>crc32c_pcl_intel_update (276 samples, 0.01%)</title><rect x="63.4478%" y="581" width="0.0115%" height="15" fill="rgb(206,104,42)" fg:x="1525032" fg:w="276"/><text x="63.6978%" y="591.50"></text></g><g><title>entry_SYSCALL_64 (474 samples, 0.02%)</title><rect x="63.4593%" y="581" width="0.0197%" height="15" fill="rgb(212,225,4)" fg:x="1525308" fg:w="474"/><text x="63.7093%" y="591.50"></text></g><g><title>btrfs_dentry_delete (305 samples, 0.01%)</title><rect x="63.5777%" y="517" width="0.0127%" height="15" fill="rgb(233,96,42)" fg:x="1528154" fg:w="305"/><text x="63.8277%" y="527.50"></text></g><g><title>__list_add_valid (555 samples, 0.02%)</title><rect x="63.6521%" y="485" width="0.0231%" height="15" fill="rgb(229,21,32)" fg:x="1529941" fg:w="555"/><text x="63.9021%" y="495.50"></text></g><g><title>_raw_spin_lock (636 samples, 0.03%)</title><rect x="63.6752%" y="485" width="0.0265%" height="15" fill="rgb(226,216,24)" fg:x="1530496" fg:w="636"/><text x="63.9252%" y="495.50"></text></g><g><title>d_lru_add (3,090 samples, 0.13%)</title><rect x="63.5904%" y="517" width="0.1286%" height="15" fill="rgb(221,163,17)" fg:x="1528459" fg:w="3090"/><text x="63.8404%" y="527.50"></text></g><g><title>list_lru_add (2,840 samples, 0.12%)</title><rect x="63.6008%" y="501" width="0.1182%" height="15" fill="rgb(216,216,42)" fg:x="1528709" fg:w="2840"/><text x="63.8508%" y="511.50"></text></g><g><title>mem_cgroup_from_obj (411 samples, 0.02%)</title><rect x="63.7019%" y="485" width="0.0171%" height="15" fill="rgb(240,118,7)" fg:x="1531138" fg:w="411"/><text x="63.9519%" y="495.50"></text></g><g><title>lockref_put_or_lock (688 samples, 0.03%)</title><rect x="63.7190%" y="517" width="0.0286%" height="15" fill="rgb(221,67,37)" fg:x="1531549" fg:w="688"/><text x="63.9690%" y="527.50"></text></g><g><title>dput (4,732 samples, 0.20%)</title><rect x="63.5523%" y="533" width="0.1969%" height="15" fill="rgb(241,32,44)" fg:x="1527544" fg:w="4732"/><text x="63.8023%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (433 samples, 0.02%)</title><rect x="63.8244%" y="437" width="0.0180%" height="15" fill="rgb(235,204,43)" fg:x="1534084" fg:w="433"/><text x="64.0744%" y="447.50"></text></g><g><title>_raw_spin_lock (354 samples, 0.01%)</title><rect x="63.8797%" y="421" width="0.0147%" height="15" fill="rgb(213,116,10)" fg:x="1535413" fg:w="354"/><text x="64.1297%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,229 samples, 0.05%)</title><rect x="63.8437%" y="437" width="0.0511%" height="15" fill="rgb(239,15,48)" fg:x="1534547" fg:w="1229"/><text x="64.0937%" y="447.50"></text></g><g><title>btrfs_free_path (2,463 samples, 0.10%)</title><rect x="63.8084%" y="469" width="0.1025%" height="15" fill="rgb(207,123,36)" fg:x="1533698" fg:w="2463"/><text x="64.0584%" y="479.50"></text></g><g><title>btrfs_release_path (2,315 samples, 0.10%)</title><rect x="63.8145%" y="453" width="0.0963%" height="15" fill="rgb(209,103,30)" fg:x="1533846" fg:w="2315"/><text x="64.0645%" y="463.50"></text></g><g><title>release_extent_buffer (384 samples, 0.02%)</title><rect x="63.8949%" y="437" width="0.0160%" height="15" fill="rgb(238,100,19)" fg:x="1535777" fg:w="384"/><text x="64.1449%" y="447.50"></text></g><g><title>_raw_read_lock (532 samples, 0.02%)</title><rect x="64.0374%" y="405" width="0.0221%" height="15" fill="rgb(244,30,14)" fg:x="1539203" fg:w="532"/><text x="64.2874%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (2,827 samples, 0.12%)</title><rect x="64.0675%" y="389" width="0.1176%" height="15" fill="rgb(249,174,6)" fg:x="1539927" fg:w="2827"/><text x="64.3175%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,691 samples, 0.11%)</title><rect x="64.0732%" y="373" width="0.1120%" height="15" fill="rgb(235,213,41)" fg:x="1540063" fg:w="2691"/><text x="64.3232%" y="383.50"></text></g><g><title>finish_wait (2,974 samples, 0.12%)</title><rect x="64.0614%" y="405" width="0.1237%" height="15" fill="rgb(213,118,6)" fg:x="1539781" fg:w="2974"/><text x="64.3114%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (7,313 samples, 0.30%)</title><rect x="64.2157%" y="389" width="0.3043%" height="15" fill="rgb(235,44,51)" fg:x="1543488" fg:w="7313"/><text x="64.4657%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,946 samples, 0.29%)</title><rect x="64.2309%" y="373" width="0.2890%" height="15" fill="rgb(217,9,53)" fg:x="1543855" fg:w="6946"/><text x="64.4809%" y="383.50"></text></g><g><title>prepare_to_wait_event (8,157 samples, 0.34%)</title><rect x="64.1858%" y="405" width="0.3394%" height="15" fill="rgb(237,172,34)" fg:x="1542769" fg:w="8157"/><text x="64.4358%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (7,990 samples, 0.33%)</title><rect x="64.5251%" y="405" width="0.3324%" height="15" fill="rgb(206,206,11)" fg:x="1550926" fg:w="7990"/><text x="64.7751%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,942 samples, 0.25%)</title><rect x="64.6103%" y="389" width="0.2472%" height="15" fill="rgb(214,149,29)" fg:x="1552974" fg:w="5942"/><text x="64.8603%" y="399.50"></text></g><g><title>update_curr (477 samples, 0.02%)</title><rect x="64.9123%" y="341" width="0.0198%" height="15" fill="rgb(208,123,3)" fg:x="1560231" fg:w="477"/><text x="65.1623%" y="351.50"></text></g><g><title>dequeue_entity (1,357 samples, 0.06%)</title><rect x="64.8943%" y="357" width="0.0565%" height="15" fill="rgb(229,126,4)" fg:x="1559799" fg:w="1357"/><text x="65.1443%" y="367.50"></text></g><g><title>update_load_avg (448 samples, 0.02%)</title><rect x="64.9321%" y="341" width="0.0186%" height="15" fill="rgb(222,92,36)" fg:x="1560708" fg:w="448"/><text x="65.1821%" y="351.50"></text></g><g><title>dequeue_task_fair (1,583 samples, 0.07%)</title><rect x="64.8876%" y="373" width="0.0659%" height="15" fill="rgb(216,39,41)" fg:x="1559638" fg:w="1583"/><text x="65.1376%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (1,608 samples, 0.07%)</title><rect x="64.9632%" y="357" width="0.0669%" height="15" fill="rgb(253,127,28)" fg:x="1561456" fg:w="1608"/><text x="65.2132%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,551 samples, 0.06%)</title><rect x="64.9656%" y="341" width="0.0645%" height="15" fill="rgb(249,152,51)" fg:x="1561513" fg:w="1551"/><text x="65.2156%" y="351.50"></text></g><g><title>native_write_msr (1,530 samples, 0.06%)</title><rect x="64.9665%" y="325" width="0.0637%" height="15" fill="rgb(209,123,42)" fg:x="1561534" fg:w="1530"/><text x="65.2165%" y="335.50"></text></g><g><title>finish_task_switch (1,932 samples, 0.08%)</title><rect x="64.9534%" y="373" width="0.0804%" height="15" fill="rgb(241,118,22)" fg:x="1561221" fg:w="1932"/><text x="65.2034%" y="383.50"></text></g><g><title>pick_next_task_fair (245 samples, 0.01%)</title><rect x="65.0340%" y="373" width="0.0102%" height="15" fill="rgb(208,25,7)" fg:x="1563157" fg:w="245"/><text x="65.2840%" y="383.50"></text></g><g><title>__update_idle_core (270 samples, 0.01%)</title><rect x="65.0461%" y="357" width="0.0112%" height="15" fill="rgb(243,144,39)" fg:x="1563448" fg:w="270"/><text x="65.2961%" y="367.50"></text></g><g><title>pick_next_task_idle (318 samples, 0.01%)</title><rect x="65.0442%" y="373" width="0.0132%" height="15" fill="rgb(250,50,5)" fg:x="1563402" fg:w="318"/><text x="65.2942%" y="383.50"></text></g><g><title>psi_task_change (1,140 samples, 0.05%)</title><rect x="65.0574%" y="373" width="0.0474%" height="15" fill="rgb(207,67,11)" fg:x="1563720" fg:w="1140"/><text x="65.3074%" y="383.50"></text></g><g><title>psi_group_change (949 samples, 0.04%)</title><rect x="65.0654%" y="357" width="0.0395%" height="15" fill="rgb(245,204,40)" fg:x="1563911" fg:w="949"/><text x="65.3154%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (26,580 samples, 1.11%)</title><rect x="64.0133%" y="421" width="1.1058%" height="15" fill="rgb(238,228,24)" fg:x="1538624" fg:w="26580"/><text x="64.2633%" y="431.50"></text></g><g><title>schedule (6,288 samples, 0.26%)</title><rect x="64.8575%" y="405" width="0.2616%" height="15" fill="rgb(217,116,22)" fg:x="1558916" fg:w="6288"/><text x="65.1075%" y="415.50"></text></g><g><title>__schedule (6,213 samples, 0.26%)</title><rect x="64.8607%" y="389" width="0.2585%" height="15" fill="rgb(234,98,12)" fg:x="1558991" fg:w="6213"/><text x="65.1107%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (28,078 samples, 1.17%)</title><rect x="64.0060%" y="437" width="1.1682%" height="15" fill="rgb(242,170,50)" fg:x="1538448" fg:w="28078"/><text x="64.2560%" y="447.50"></text></g><g><title>btrfs_root_node (1,321 samples, 0.05%)</title><rect x="65.1192%" y="421" width="0.0550%" height="15" fill="rgb(235,7,5)" fg:x="1565205" fg:w="1321"/><text x="65.3692%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (277 samples, 0.01%)</title><rect x="65.1869%" y="405" width="0.0115%" height="15" fill="rgb(241,114,28)" fg:x="1566833" fg:w="277"/><text x="65.4369%" y="415.50"></text></g><g><title>prepare_to_wait_event (384 samples, 0.02%)</title><rect x="65.1833%" y="421" width="0.0160%" height="15" fill="rgb(246,112,42)" fg:x="1566745" fg:w="384"/><text x="65.4333%" y="431.50"></text></g><g><title>dequeue_entity (283 samples, 0.01%)</title><rect x="65.2187%" y="373" width="0.0118%" height="15" fill="rgb(248,228,14)" fg:x="1567597" fg:w="283"/><text x="65.4687%" y="383.50"></text></g><g><title>dequeue_task_fair (345 samples, 0.01%)</title><rect x="65.2171%" y="389" width="0.0144%" height="15" fill="rgb(208,133,18)" fg:x="1567558" fg:w="345"/><text x="65.4671%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (311 samples, 0.01%)</title><rect x="65.2334%" y="373" width="0.0129%" height="15" fill="rgb(207,35,49)" fg:x="1567951" fg:w="311"/><text x="65.4834%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (304 samples, 0.01%)</title><rect x="65.2337%" y="357" width="0.0126%" height="15" fill="rgb(205,68,36)" fg:x="1567958" fg:w="304"/><text x="65.4837%" y="367.50"></text></g><g><title>native_write_msr (300 samples, 0.01%)</title><rect x="65.2339%" y="341" width="0.0125%" height="15" fill="rgb(245,62,40)" fg:x="1567962" fg:w="300"/><text x="65.4839%" y="351.50"></text></g><g><title>finish_task_switch (378 samples, 0.02%)</title><rect x="65.2314%" y="389" width="0.0157%" height="15" fill="rgb(228,27,24)" fg:x="1567903" fg:w="378"/><text x="65.4814%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (2,202 samples, 0.09%)</title><rect x="65.1742%" y="437" width="0.0916%" height="15" fill="rgb(253,19,12)" fg:x="1566526" fg:w="2202"/><text x="65.4242%" y="447.50"></text></g><g><title>schedule (1,359 samples, 0.06%)</title><rect x="65.2092%" y="421" width="0.0565%" height="15" fill="rgb(232,28,20)" fg:x="1567369" fg:w="1359"/><text x="65.4592%" y="431.50"></text></g><g><title>__schedule (1,342 samples, 0.06%)</title><rect x="65.2099%" y="405" width="0.0558%" height="15" fill="rgb(218,35,51)" fg:x="1567386" fg:w="1342"/><text x="65.4599%" y="415.50"></text></g><g><title>select_task_rq_fair (341 samples, 0.01%)</title><rect x="65.2812%" y="373" width="0.0142%" height="15" fill="rgb(212,90,40)" fg:x="1569099" fg:w="341"/><text x="65.5312%" y="383.50"></text></g><g><title>enqueue_entity (246 samples, 0.01%)</title><rect x="65.3006%" y="341" width="0.0102%" height="15" fill="rgb(220,172,12)" fg:x="1569565" fg:w="246"/><text x="65.5506%" y="351.50"></text></g><g><title>enqueue_task_fair (337 samples, 0.01%)</title><rect x="65.2979%" y="357" width="0.0140%" height="15" fill="rgb(226,159,20)" fg:x="1569501" fg:w="337"/><text x="65.5479%" y="367.50"></text></g><g><title>ttwu_do_activate (712 samples, 0.03%)</title><rect x="65.2967%" y="373" width="0.0296%" height="15" fill="rgb(234,205,16)" fg:x="1569471" fg:w="712"/><text x="65.5467%" y="383.50"></text></g><g><title>psi_task_change (344 samples, 0.01%)</title><rect x="65.3120%" y="357" width="0.0143%" height="15" fill="rgb(207,9,39)" fg:x="1569839" fg:w="344"/><text x="65.5620%" y="367.50"></text></g><g><title>psi_group_change (313 samples, 0.01%)</title><rect x="65.3133%" y="341" width="0.0130%" height="15" fill="rgb(249,143,15)" fg:x="1569870" fg:w="313"/><text x="65.5633%" y="351.50"></text></g><g><title>__wake_up_common (1,603 samples, 0.07%)</title><rect x="65.2661%" y="421" width="0.0667%" height="15" fill="rgb(253,133,29)" fg:x="1568737" fg:w="1603"/><text x="65.5161%" y="431.50"></text></g><g><title>autoremove_wake_function (1,580 samples, 0.07%)</title><rect x="65.2671%" y="405" width="0.0657%" height="15" fill="rgb(221,187,0)" fg:x="1568760" fg:w="1580"/><text x="65.5171%" y="415.50"></text></g><g><title>try_to_wake_up (1,538 samples, 0.06%)</title><rect x="65.2688%" y="389" width="0.0640%" height="15" fill="rgb(205,204,26)" fg:x="1568802" fg:w="1538"/><text x="65.5188%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,656 samples, 0.07%)</title><rect x="65.2658%" y="437" width="0.0689%" height="15" fill="rgb(224,68,54)" fg:x="1568729" fg:w="1656"/><text x="65.5158%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (970 samples, 0.04%)</title><rect x="65.3436%" y="437" width="0.0404%" height="15" fill="rgb(209,67,4)" fg:x="1570599" fg:w="970"/><text x="65.5936%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_read (583 samples, 0.02%)</title><rect x="65.3597%" y="421" width="0.0243%" height="15" fill="rgb(228,229,18)" fg:x="1570986" fg:w="583"/><text x="65.6097%" y="431.50"></text></g><g><title>_raw_read_lock (459 samples, 0.02%)</title><rect x="65.4002%" y="421" width="0.0191%" height="15" fill="rgb(231,89,13)" fg:x="1571959" fg:w="459"/><text x="65.6502%" y="431.50"></text></g><g><title>btrfs_tree_read_lock_atomic (2,734 samples, 0.11%)</title><rect x="65.3840%" y="437" width="0.1137%" height="15" fill="rgb(210,182,18)" fg:x="1571569" fg:w="2734"/><text x="65.6340%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (1,882 samples, 0.08%)</title><rect x="65.4194%" y="421" width="0.0783%" height="15" fill="rgb(240,105,2)" fg:x="1572421" fg:w="1882"/><text x="65.6694%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (598 samples, 0.02%)</title><rect x="65.4728%" y="405" width="0.0249%" height="15" fill="rgb(207,170,50)" fg:x="1573705" fg:w="598"/><text x="65.7228%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (887 samples, 0.04%)</title><rect x="65.4977%" y="437" width="0.0369%" height="15" fill="rgb(232,133,24)" fg:x="1574303" fg:w="887"/><text x="65.7477%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,661 samples, 0.19%)</title><rect x="65.5378%" y="437" width="0.1939%" height="15" fill="rgb(235,166,27)" fg:x="1575266" fg:w="4661"/><text x="65.7878%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (630 samples, 0.03%)</title><rect x="65.7616%" y="421" width="0.0262%" height="15" fill="rgb(209,19,13)" fg:x="1580645" fg:w="630"/><text x="66.0116%" y="431.50"></text></g><g><title>verify_parent_transid (458 samples, 0.02%)</title><rect x="65.7687%" y="405" width="0.0191%" height="15" fill="rgb(226,79,39)" fg:x="1580817" fg:w="458"/><text x="66.0187%" y="415.50"></text></g><g><title>btrfs_get_64 (725 samples, 0.03%)</title><rect x="65.7878%" y="421" width="0.0302%" height="15" fill="rgb(222,163,10)" fg:x="1581275" fg:w="725"/><text x="66.0378%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,623 samples, 0.11%)</title><rect x="65.8758%" y="405" width="0.1091%" height="15" fill="rgb(214,44,19)" fg:x="1583390" fg:w="2623"/><text x="66.1258%" y="415.50"></text></g><g><title>mark_page_accessed (845 samples, 0.04%)</title><rect x="65.9974%" y="389" width="0.0352%" height="15" fill="rgb(210,217,13)" fg:x="1586314" fg:w="845"/><text x="66.2474%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,144 samples, 0.05%)</title><rect x="65.9851%" y="405" width="0.0476%" height="15" fill="rgb(237,61,54)" fg:x="1586019" fg:w="1144"/><text x="66.2351%" y="415.50"></text></g><g><title>find_extent_buffer (4,887 samples, 0.20%)</title><rect x="65.8311%" y="421" width="0.2033%" height="15" fill="rgb(226,184,24)" fg:x="1582317" fg:w="4887"/><text x="66.0811%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (8,065 samples, 0.34%)</title><rect x="65.7317%" y="437" width="0.3355%" height="15" fill="rgb(223,226,4)" fg:x="1579927" fg:w="8065"/><text x="65.9817%" y="447.50"></text></g><g><title>read_extent_buffer (788 samples, 0.03%)</title><rect x="66.0344%" y="421" width="0.0328%" height="15" fill="rgb(210,26,41)" fg:x="1587204" fg:w="788"/><text x="66.2844%" y="431.50"></text></g><g><title>btrfs_search_slot (52,145 samples, 2.17%)</title><rect x="63.9243%" y="453" width="2.1695%" height="15" fill="rgb(220,221,6)" fg:x="1536484" fg:w="52145"/><text x="64.1743%" y="463.50">b..</text></g><g><title>unlock_up (637 samples, 0.03%)</title><rect x="66.0672%" y="437" width="0.0265%" height="15" fill="rgb(225,89,49)" fg:x="1587992" fg:w="637"/><text x="66.3172%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (53,265 samples, 2.22%)</title><rect x="63.9108%" y="469" width="2.2161%" height="15" fill="rgb(218,70,45)" fg:x="1536161" fg:w="53265"/><text x="64.1608%" y="479.50">b..</text></g><g><title>crc32c (797 samples, 0.03%)</title><rect x="66.0937%" y="453" width="0.0332%" height="15" fill="rgb(238,166,21)" fg:x="1588629" fg:w="797"/><text x="66.3437%" y="463.50"></text></g><g><title>crypto_shash_update (471 samples, 0.02%)</title><rect x="66.1073%" y="437" width="0.0196%" height="15" fill="rgb(224,141,44)" fg:x="1588955" fg:w="471"/><text x="66.3573%" y="447.50"></text></g><g><title>kmem_cache_alloc (962 samples, 0.04%)</title><rect x="66.1269%" y="469" width="0.0400%" height="15" fill="rgb(230,12,49)" fg:x="1589426" fg:w="962"/><text x="66.3769%" y="479.50"></text></g><g><title>btrfs_lookup (58,140 samples, 2.42%)</title><rect x="63.7738%" y="501" width="2.4189%" height="15" fill="rgb(212,174,12)" fg:x="1532868" fg:w="58140"/><text x="64.0238%" y="511.50">bt..</text></g><g><title>btrfs_lookup_dentry (58,004 samples, 2.41%)</title><rect x="63.7795%" y="485" width="2.4132%" height="15" fill="rgb(246,67,9)" fg:x="1533004" fg:w="58004"/><text x="64.0295%" y="495.50">bt..</text></g><g><title>kmem_cache_free (620 samples, 0.03%)</title><rect x="66.1669%" y="469" width="0.0258%" height="15" fill="rgb(239,35,23)" fg:x="1590388" fg:w="620"/><text x="66.4169%" y="479.50"></text></g><g><title>d_set_d_op (353 samples, 0.01%)</title><rect x="66.2156%" y="469" width="0.0147%" height="15" fill="rgb(211,167,0)" fg:x="1591557" fg:w="353"/><text x="66.4656%" y="479.50"></text></g><g><title>allocate_slab (286 samples, 0.01%)</title><rect x="66.2735%" y="421" width="0.0119%" height="15" fill="rgb(225,119,45)" fg:x="1592949" fg:w="286"/><text x="66.5235%" y="431.50"></text></g><g><title>___slab_alloc (804 samples, 0.03%)</title><rect x="66.2558%" y="437" width="0.0334%" height="15" fill="rgb(210,162,6)" fg:x="1592525" fg:w="804"/><text x="66.5058%" y="447.50"></text></g><g><title>__slab_alloc (857 samples, 0.04%)</title><rect x="66.2540%" y="453" width="0.0357%" height="15" fill="rgb(208,118,35)" fg:x="1592480" fg:w="857"/><text x="66.5040%" y="463.50"></text></g><g><title>__mod_memcg_lruvec_state (414 samples, 0.02%)</title><rect x="66.3425%" y="437" width="0.0172%" height="15" fill="rgb(239,4,53)" fg:x="1594609" fg:w="414"/><text x="66.5925%" y="447.50"></text></g><g><title>__mod_memcg_state.part.0 (322 samples, 0.01%)</title><rect x="66.3464%" y="421" width="0.0134%" height="15" fill="rgb(213,130,21)" fg:x="1594701" fg:w="322"/><text x="66.5964%" y="431.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,772 samples, 0.07%)</title><rect x="66.2899%" y="453" width="0.0737%" height="15" fill="rgb(235,148,0)" fg:x="1593344" fg:w="1772"/><text x="66.5399%" y="463.50"></text></g><g><title>get_obj_cgroup_from_current (863 samples, 0.04%)</title><rect x="66.3805%" y="437" width="0.0359%" height="15" fill="rgb(244,224,18)" fg:x="1595521" fg:w="863"/><text x="66.6305%" y="447.50"></text></g><g><title>obj_cgroup_charge (575 samples, 0.02%)</title><rect x="66.4164%" y="437" width="0.0239%" height="15" fill="rgb(211,214,4)" fg:x="1596384" fg:w="575"/><text x="66.6664%" y="447.50"></text></g><g><title>kmem_cache_alloc (5,059 samples, 0.21%)</title><rect x="66.2302%" y="469" width="0.2105%" height="15" fill="rgb(206,119,25)" fg:x="1591910" fg:w="5059"/><text x="66.4802%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,673 samples, 0.07%)</title><rect x="66.3711%" y="453" width="0.0696%" height="15" fill="rgb(243,93,47)" fg:x="1595296" fg:w="1673"/><text x="66.6211%" y="463.50"></text></g><g><title>__d_alloc (5,949 samples, 0.25%)</title><rect x="66.1988%" y="485" width="0.2475%" height="15" fill="rgb(224,194,6)" fg:x="1591155" fg:w="5949"/><text x="66.4488%" y="495.50"></text></g><g><title>d_alloc (6,477 samples, 0.27%)</title><rect x="66.1927%" y="501" width="0.2695%" height="15" fill="rgb(243,229,6)" fg:x="1591008" fg:w="6477"/><text x="66.4427%" y="511.50"></text></g><g><title>__d_rehash (485 samples, 0.02%)</title><rect x="66.4834%" y="469" width="0.0202%" height="15" fill="rgb(207,23,50)" fg:x="1597995" fg:w="485"/><text x="66.7334%" y="479.50"></text></g><g><title>__d_add (897 samples, 0.04%)</title><rect x="66.4735%" y="485" width="0.0373%" height="15" fill="rgb(253,192,32)" fg:x="1597756" fg:w="897"/><text x="66.7235%" y="495.50"></text></g><g><title>d_splice_alias (1,169 samples, 0.05%)</title><rect x="66.4622%" y="501" width="0.0486%" height="15" fill="rgb(213,21,6)" fg:x="1597485" fg:w="1169"/><text x="66.7122%" y="511.50"></text></g><g><title>__d_lookup (1,430 samples, 0.06%)</title><rect x="66.5193%" y="469" width="0.0595%" height="15" fill="rgb(243,151,13)" fg:x="1598859" fg:w="1430"/><text x="66.7693%" y="479.50"></text></g><g><title>__lookup_hash (67,622 samples, 2.81%)</title><rect x="63.7655%" y="517" width="2.8134%" height="15" fill="rgb(233,165,41)" fg:x="1532668" fg:w="67622"/><text x="64.0155%" y="527.50">__..</text></g><g><title>lookup_dcache (1,636 samples, 0.07%)</title><rect x="66.5108%" y="501" width="0.0681%" height="15" fill="rgb(246,176,45)" fg:x="1598654" fg:w="1636"/><text x="66.7608%" y="511.50"></text></g><g><title>d_lookup (1,591 samples, 0.07%)</title><rect x="66.5127%" y="485" width="0.0662%" height="15" fill="rgb(217,170,52)" fg:x="1598699" fg:w="1591"/><text x="66.7627%" y="495.50"></text></g><g><title>down_write (300 samples, 0.01%)</title><rect x="66.5791%" y="517" width="0.0125%" height="15" fill="rgb(214,203,54)" fg:x="1600295" fg:w="300"/><text x="66.8291%" y="527.50"></text></g><g><title>__legitimize_mnt (610 samples, 0.03%)</title><rect x="66.6535%" y="437" width="0.0254%" height="15" fill="rgb(248,215,49)" fg:x="1602083" fg:w="610"/><text x="66.9035%" y="447.50"></text></g><g><title>__legitimize_path (1,081 samples, 0.04%)</title><rect x="66.6424%" y="453" width="0.0450%" height="15" fill="rgb(208,46,10)" fg:x="1601816" fg:w="1081"/><text x="66.8924%" y="463.50"></text></g><g><title>legitimize_links (301 samples, 0.01%)</title><rect x="66.6874%" y="453" width="0.0125%" height="15" fill="rgb(254,5,31)" fg:x="1602899" fg:w="301"/><text x="66.9374%" y="463.50"></text></g><g><title>complete_walk (1,895 samples, 0.08%)</title><rect x="66.6231%" y="485" width="0.0788%" height="15" fill="rgb(222,104,33)" fg:x="1601352" fg:w="1895"/><text x="66.8731%" y="495.50"></text></g><g><title>try_to_unlazy (1,676 samples, 0.07%)</title><rect x="66.6322%" y="469" width="0.0697%" height="15" fill="rgb(248,49,16)" fg:x="1601571" fg:w="1676"/><text x="66.8822%" y="479.50"></text></g><g><title>generic_permission (1,325 samples, 0.06%)</title><rect x="67.1119%" y="453" width="0.0551%" height="15" fill="rgb(232,198,41)" fg:x="1613102" fg:w="1325"/><text x="67.3619%" y="463.50"></text></g><g><title>inode_permission.part.0 (6,835 samples, 0.28%)</title><rect x="66.8827%" y="469" width="0.2844%" height="15" fill="rgb(214,125,3)" fg:x="1607593" fg:w="6835"/><text x="67.1327%" y="479.50"></text></g><g><title>security_inode_permission (432 samples, 0.02%)</title><rect x="67.1671%" y="469" width="0.0180%" height="15" fill="rgb(229,220,28)" fg:x="1614428" fg:w="432"/><text x="67.4171%" y="479.50"></text></g><g><title>__d_lookup_rcu (10,345 samples, 0.43%)</title><rect x="67.3115%" y="437" width="0.4304%" height="15" fill="rgb(222,64,37)" fg:x="1617899" fg:w="10345"/><text x="67.5615%" y="447.50"></text></g><g><title>lookup_fast (11,764 samples, 0.49%)</title><rect x="67.2530%" y="453" width="0.4894%" height="15" fill="rgb(249,184,13)" fg:x="1616492" fg:w="11764"/><text x="67.5030%" y="463.50"></text></g><g><title>__lookup_mnt (402 samples, 0.02%)</title><rect x="67.7996%" y="437" width="0.0167%" height="15" fill="rgb(252,176,6)" fg:x="1629630" fg:w="402"/><text x="68.0496%" y="447.50"></text></g><g><title>link_path_walk.part.0 (26,793 samples, 1.11%)</title><rect x="66.7019%" y="485" width="1.1147%" height="15" fill="rgb(228,153,7)" fg:x="1603247" fg:w="26793"/><text x="66.9519%" y="495.50"></text></g><g><title>walk_component (15,180 samples, 0.63%)</title><rect x="67.1851%" y="469" width="0.6316%" height="15" fill="rgb(242,193,5)" fg:x="1614860" fg:w="15180"/><text x="67.4351%" y="479.50"></text></g><g><title>step_into (1,784 samples, 0.07%)</title><rect x="67.7424%" y="453" width="0.0742%" height="15" fill="rgb(232,140,9)" fg:x="1628256" fg:w="1784"/><text x="67.9924%" y="463.50"></text></g><g><title>path_init (1,931 samples, 0.08%)</title><rect x="67.8166%" y="485" width="0.0803%" height="15" fill="rgb(213,222,16)" fg:x="1630040" fg:w="1931"/><text x="68.0666%" y="495.50"></text></g><g><title>nd_jump_root (1,090 samples, 0.05%)</title><rect x="67.8516%" y="469" width="0.0453%" height="15" fill="rgb(222,75,50)" fg:x="1630881" fg:w="1090"/><text x="68.1016%" y="479.50"></text></g><g><title>set_root (810 samples, 0.03%)</title><rect x="67.8632%" y="453" width="0.0337%" height="15" fill="rgb(205,180,2)" fg:x="1631161" fg:w="810"/><text x="68.1132%" y="463.50"></text></g><g><title>filename_parentat (32,181 samples, 1.34%)</title><rect x="66.5916%" y="517" width="1.3389%" height="15" fill="rgb(216,34,7)" fg:x="1600595" fg:w="32181"/><text x="66.8416%" y="527.50"></text></g><g><title>path_parentat (31,639 samples, 1.32%)</title><rect x="66.6141%" y="501" width="1.3163%" height="15" fill="rgb(253,16,32)" fg:x="1601137" fg:w="31639"/><text x="66.8641%" y="511.50"></text></g><g><title>terminate_walk (805 samples, 0.03%)</title><rect x="67.8969%" y="485" width="0.0335%" height="15" fill="rgb(208,97,28)" fg:x="1631971" fg:w="805"/><text x="68.1469%" y="495.50"></text></g><g><title>kmem_cache_free (694 samples, 0.03%)</title><rect x="67.9304%" y="517" width="0.0289%" height="15" fill="rgb(225,92,11)" fg:x="1632776" fg:w="694"/><text x="68.1804%" y="527.50"></text></g><g><title>__mnt_want_write (395 samples, 0.02%)</title><rect x="67.9752%" y="501" width="0.0164%" height="15" fill="rgb(243,38,12)" fg:x="1633852" fg:w="395"/><text x="68.2252%" y="511.50"></text></g><g><title>mnt_want_write (917 samples, 0.04%)</title><rect x="67.9593%" y="517" width="0.0382%" height="15" fill="rgb(208,139,16)" fg:x="1633470" fg:w="917"/><text x="68.2093%" y="527.50"></text></g><g><title>filename_create (102,321 samples, 4.26%)</title><rect x="63.7492%" y="533" width="4.2570%" height="15" fill="rgb(227,24,9)" fg:x="1532276" fg:w="102321"/><text x="63.9992%" y="543.50">filen..</text></g><g><title>memset_erms (3,115 samples, 0.13%)</title><rect x="68.0794%" y="501" width="0.1296%" height="15" fill="rgb(206,62,11)" fg:x="1636357" fg:w="3115"/><text x="68.3294%" y="511.50"></text></g><g><title>kmem_cache_alloc (4,758 samples, 0.20%)</title><rect x="68.0315%" y="517" width="0.1980%" height="15" fill="rgb(228,134,27)" fg:x="1635204" fg:w="4758"/><text x="68.2815%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (490 samples, 0.02%)</title><rect x="68.2090%" y="501" width="0.0204%" height="15" fill="rgb(205,55,33)" fg:x="1639472" fg:w="490"/><text x="68.4590%" y="511.50"></text></g><g><title>__check_heap_object (469 samples, 0.02%)</title><rect x="68.3613%" y="485" width="0.0195%" height="15" fill="rgb(243,75,43)" fg:x="1643133" fg:w="469"/><text x="68.6113%" y="495.50"></text></g><g><title>__virt_addr_valid (1,073 samples, 0.04%)</title><rect x="68.3808%" y="485" width="0.0446%" height="15" fill="rgb(223,27,42)" fg:x="1643602" fg:w="1073"/><text x="68.6308%" y="495.50"></text></g><g><title>__check_object_size (2,347 samples, 0.10%)</title><rect x="68.3368%" y="501" width="0.0976%" height="15" fill="rgb(232,189,33)" fg:x="1642544" fg:w="2347"/><text x="68.5868%" y="511.50"></text></g><g><title>getname_flags.part.0 (10,145 samples, 0.42%)</title><rect x="68.0132%" y="533" width="0.4221%" height="15" fill="rgb(210,9,39)" fg:x="1634765" fg:w="10145"/><text x="68.2632%" y="543.50"></text></g><g><title>strncpy_from_user (4,948 samples, 0.21%)</title><rect x="68.2294%" y="517" width="0.2059%" height="15" fill="rgb(242,85,26)" fg:x="1639962" fg:w="4948"/><text x="68.4794%" y="527.50"></text></g><g><title>kmem_cache_free (980 samples, 0.04%)</title><rect x="68.4353%" y="533" width="0.0408%" height="15" fill="rgb(248,44,4)" fg:x="1644910" fg:w="980"/><text x="68.6853%" y="543.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (335 samples, 0.01%)</title><rect x="68.4621%" y="517" width="0.0139%" height="15" fill="rgb(250,96,46)" fg:x="1645555" fg:w="335"/><text x="68.7121%" y="527.50"></text></g><g><title>apparmor_path_symlink (622 samples, 0.03%)</title><rect x="68.5063%" y="517" width="0.0259%" height="15" fill="rgb(229,116,26)" fg:x="1646617" fg:w="622"/><text x="68.7563%" y="527.50"></text></g><g><title>security_path_symlink (2,360 samples, 0.10%)</title><rect x="68.4908%" y="533" width="0.0982%" height="15" fill="rgb(246,94,34)" fg:x="1646245" fg:w="2360"/><text x="68.7408%" y="543.50"></text></g><g><title>tomoyo_path_symlink (1,360 samples, 0.06%)</title><rect x="68.5324%" y="517" width="0.0566%" height="15" fill="rgb(251,73,21)" fg:x="1647245" fg:w="1360"/><text x="68.7824%" y="527.50"></text></g><g><title>tomoyo_path_perm (1,309 samples, 0.05%)</title><rect x="68.5345%" y="501" width="0.0545%" height="15" fill="rgb(254,121,25)" fg:x="1647296" fg:w="1309"/><text x="68.7845%" y="511.50"></text></g><g><title>tomoyo_init_request_info (900 samples, 0.04%)</title><rect x="68.5515%" y="485" width="0.0374%" height="15" fill="rgb(215,161,49)" fg:x="1647705" fg:w="900"/><text x="68.8015%" y="495.50"></text></g><g><title>tomoyo_domain (519 samples, 0.02%)</title><rect x="68.5674%" y="469" width="0.0216%" height="15" fill="rgb(221,43,13)" fg:x="1648086" fg:w="519"/><text x="68.8174%" y="479.50"></text></g><g><title>up_write (634 samples, 0.03%)</title><rect x="68.5890%" y="533" width="0.0264%" height="15" fill="rgb(249,5,37)" fg:x="1648605" fg:w="634"/><text x="68.8390%" y="543.50"></text></g><g><title>btrfs_create_pending_block_groups (398 samples, 0.02%)</title><rect x="68.7758%" y="485" width="0.0166%" height="15" fill="rgb(226,25,44)" fg:x="1653096" fg:w="398"/><text x="69.0258%" y="495.50"></text></g><g><title>_raw_spin_lock (1,453 samples, 0.06%)</title><rect x="68.8374%" y="453" width="0.0605%" height="15" fill="rgb(238,189,16)" fg:x="1654576" fg:w="1453"/><text x="69.0874%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (520 samples, 0.02%)</title><rect x="68.8762%" y="437" width="0.0216%" height="15" fill="rgb(251,186,8)" fg:x="1655509" fg:w="520"/><text x="69.1262%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (2,413 samples, 0.10%)</title><rect x="68.8083%" y="485" width="0.1004%" height="15" fill="rgb(254,34,31)" fg:x="1653876" fg:w="2413"/><text x="69.0583%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (2,194 samples, 0.09%)</title><rect x="68.8174%" y="469" width="0.0913%" height="15" fill="rgb(225,215,27)" fg:x="1654095" fg:w="2194"/><text x="69.0674%" y="479.50"></text></g><g><title>__btrfs_end_transaction (5,512 samples, 0.23%)</title><rect x="68.7151%" y="501" width="0.2293%" height="15" fill="rgb(221,192,48)" fg:x="1651635" fg:w="5512"/><text x="68.9651%" y="511.50"></text></g><g><title>kmem_cache_free (858 samples, 0.04%)</title><rect x="68.9087%" y="485" width="0.0357%" height="15" fill="rgb(219,137,20)" fg:x="1656289" fg:w="858"/><text x="69.1587%" y="495.50"></text></g><g><title>__radix_tree_lookup (405 samples, 0.02%)</title><rect x="68.9759%" y="485" width="0.0168%" height="15" fill="rgb(219,84,11)" fg:x="1657905" fg:w="405"/><text x="69.2259%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,171 samples, 0.05%)</title><rect x="68.9449%" y="501" width="0.0487%" height="15" fill="rgb(224,10,23)" fg:x="1657159" fg:w="1171"/><text x="69.1949%" y="511.50"></text></g><g><title>btrfs_comp_cpu_keys (919 samples, 0.04%)</title><rect x="69.1116%" y="437" width="0.0382%" height="15" fill="rgb(248,22,39)" fg:x="1661167" fg:w="919"/><text x="69.3616%" y="447.50"></text></g><g><title>__btrfs_add_delayed_item (2,295 samples, 0.10%)</title><rect x="69.0732%" y="453" width="0.0955%" height="15" fill="rgb(212,154,20)" fg:x="1660243" fg:w="2295"/><text x="69.3232%" y="463.50"></text></g><g><title>rb_insert_color (452 samples, 0.02%)</title><rect x="69.1499%" y="437" width="0.0188%" height="15" fill="rgb(236,199,50)" fg:x="1662086" fg:w="452"/><text x="69.3999%" y="447.50"></text></g><g><title>_raw_spin_lock (294 samples, 0.01%)</title><rect x="69.1978%" y="437" width="0.0122%" height="15" fill="rgb(211,9,17)" fg:x="1663239" fg:w="294"/><text x="69.4478%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,725 samples, 0.07%)</title><rect x="69.1687%" y="453" width="0.0718%" height="15" fill="rgb(243,216,36)" fg:x="1662538" fg:w="1725"/><text x="69.4187%" y="463.50"></text></g><g><title>mutex_unlock (528 samples, 0.02%)</title><rect x="69.2185%" y="437" width="0.0220%" height="15" fill="rgb(250,2,10)" fg:x="1663735" fg:w="528"/><text x="69.4685%" y="447.50"></text></g><g><title>__slab_alloc (259 samples, 0.01%)</title><rect x="69.2706%" y="437" width="0.0108%" height="15" fill="rgb(226,50,48)" fg:x="1664989" fg:w="259"/><text x="69.5206%" y="447.50"></text></g><g><title>__kmalloc (1,768 samples, 0.07%)</title><rect x="69.2404%" y="453" width="0.0736%" height="15" fill="rgb(243,81,16)" fg:x="1664263" fg:w="1768"/><text x="69.4904%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (441 samples, 0.02%)</title><rect x="69.2956%" y="437" width="0.0183%" height="15" fill="rgb(250,14,2)" fg:x="1665590" fg:w="441"/><text x="69.5456%" y="447.50"></text></g><g><title>mutex_spin_on_owner (1,238 samples, 0.05%)</title><rect x="69.3154%" y="437" width="0.0515%" height="15" fill="rgb(233,135,29)" fg:x="1666064" fg:w="1238"/><text x="69.5654%" y="447.50"></text></g><g><title>__mutex_lock.constprop.0 (1,362 samples, 0.06%)</title><rect x="69.3140%" y="453" width="0.0567%" height="15" fill="rgb(224,64,43)" fg:x="1666031" fg:w="1362"/><text x="69.5640%" y="463.50"></text></g><g><title>_raw_spin_lock (1,087 samples, 0.05%)</title><rect x="69.3864%" y="421" width="0.0452%" height="15" fill="rgb(238,84,13)" fg:x="1667771" fg:w="1087"/><text x="69.6364%" y="431.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,458 samples, 0.06%)</title><rect x="69.3712%" y="453" width="0.0607%" height="15" fill="rgb(253,48,26)" fg:x="1667407" fg:w="1458"/><text x="69.6212%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (1,258 samples, 0.05%)</title><rect x="69.3796%" y="437" width="0.0523%" height="15" fill="rgb(205,223,31)" fg:x="1667607" fg:w="1258"/><text x="69.6296%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (671 samples, 0.03%)</title><rect x="69.4319%" y="453" width="0.0279%" height="15" fill="rgb(221,41,32)" fg:x="1668865" fg:w="671"/><text x="69.6819%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (576 samples, 0.02%)</title><rect x="69.4358%" y="437" width="0.0240%" height="15" fill="rgb(213,158,31)" fg:x="1668960" fg:w="576"/><text x="69.6858%" y="447.50"></text></g><g><title>memcpy_erms (245 samples, 0.01%)</title><rect x="69.4599%" y="453" width="0.0102%" height="15" fill="rgb(245,126,43)" fg:x="1669537" fg:w="245"/><text x="69.7099%" y="463.50"></text></g><g><title>mutex_lock (262 samples, 0.01%)</title><rect x="69.4700%" y="453" width="0.0109%" height="15" fill="rgb(227,7,22)" fg:x="1669782" fg:w="262"/><text x="69.7200%" y="463.50"></text></g><g><title>btrfs_insert_delayed_dir_index (10,385 samples, 0.43%)</title><rect x="69.0558%" y="469" width="0.4321%" height="15" fill="rgb(252,90,44)" fg:x="1659825" fg:w="10385"/><text x="69.3058%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (444 samples, 0.02%)</title><rect x="69.4879%" y="469" width="0.0185%" height="15" fill="rgb(253,91,0)" fg:x="1670210" fg:w="444"/><text x="69.7379%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (284 samples, 0.01%)</title><rect x="69.4945%" y="453" width="0.0118%" height="15" fill="rgb(252,175,49)" fg:x="1670370" fg:w="284"/><text x="69.7445%" y="463.50"></text></g><g><title>_raw_spin_lock (401 samples, 0.02%)</title><rect x="69.5563%" y="437" width="0.0167%" height="15" fill="rgb(246,150,1)" fg:x="1671855" fg:w="401"/><text x="69.8063%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,368 samples, 0.06%)</title><rect x="69.5164%" y="453" width="0.0569%" height="15" fill="rgb(241,192,25)" fg:x="1670895" fg:w="1368"/><text x="69.7664%" y="463.50"></text></g><g><title>btrfs_release_path (1,954 samples, 0.08%)</title><rect x="69.5063%" y="469" width="0.0813%" height="15" fill="rgb(239,187,11)" fg:x="1670654" fg:w="1954"/><text x="69.7563%" y="479.50"></text></g><g><title>release_extent_buffer (345 samples, 0.01%)</title><rect x="69.5733%" y="453" width="0.0144%" height="15" fill="rgb(218,202,51)" fg:x="1672263" fg:w="345"/><text x="69.8233%" y="463.50"></text></g><g><title>btrfs_set_16 (314 samples, 0.01%)</title><rect x="69.5876%" y="469" width="0.0131%" height="15" fill="rgb(225,176,8)" fg:x="1672608" fg:w="314"/><text x="69.8376%" y="479.50"></text></g><g><title>crc32c (728 samples, 0.03%)</title><rect x="69.6117%" y="469" width="0.0303%" height="15" fill="rgb(219,122,41)" fg:x="1673186" fg:w="728"/><text x="69.8617%" y="479.50"></text></g><g><title>crypto_shash_update (372 samples, 0.02%)</title><rect x="69.6265%" y="453" width="0.0155%" height="15" fill="rgb(248,140,20)" fg:x="1673542" fg:w="372"/><text x="69.8765%" y="463.50"></text></g><g><title>btrfs_get_32 (446 samples, 0.02%)</title><rect x="69.6567%" y="453" width="0.0186%" height="15" fill="rgb(245,41,37)" fg:x="1674269" fg:w="446"/><text x="69.9067%" y="463.50"></text></g><g><title>_raw_read_lock (522 samples, 0.02%)</title><rect x="69.7896%" y="389" width="0.0217%" height="15" fill="rgb(235,82,39)" fg:x="1677464" fg:w="522"/><text x="70.0396%" y="399.50"></text></g><g><title>finish_wait (2,557 samples, 0.11%)</title><rect x="69.8126%" y="389" width="0.1064%" height="15" fill="rgb(230,108,42)" fg:x="1678016" fg:w="2557"/><text x="70.0626%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (2,419 samples, 0.10%)</title><rect x="69.8184%" y="373" width="0.1006%" height="15" fill="rgb(215,150,50)" fg:x="1678154" fg:w="2419"/><text x="70.0684%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,317 samples, 0.10%)</title><rect x="69.8226%" y="357" width="0.0964%" height="15" fill="rgb(233,212,5)" fg:x="1678256" fg:w="2317"/><text x="70.0726%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (6,386 samples, 0.27%)</title><rect x="69.9435%" y="373" width="0.2657%" height="15" fill="rgb(245,80,22)" fg:x="1681161" fg:w="6386"/><text x="70.1935%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,091 samples, 0.25%)</title><rect x="69.9557%" y="357" width="0.2534%" height="15" fill="rgb(238,129,16)" fg:x="1681456" fg:w="6091"/><text x="70.2057%" y="367.50"></text></g><g><title>prepare_to_wait_event (7,077 samples, 0.29%)</title><rect x="69.9192%" y="389" width="0.2944%" height="15" fill="rgb(240,19,0)" fg:x="1680579" fg:w="7077"/><text x="70.1692%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (6,545 samples, 0.27%)</title><rect x="70.2137%" y="389" width="0.2723%" height="15" fill="rgb(232,42,35)" fg:x="1687656" fg:w="6545"/><text x="70.4637%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,851 samples, 0.20%)</title><rect x="70.2842%" y="373" width="0.2018%" height="15" fill="rgb(223,130,24)" fg:x="1689350" fg:w="4851"/><text x="70.5342%" y="383.50"></text></g><g><title>update_curr (340 samples, 0.01%)</title><rect x="70.5323%" y="325" width="0.0141%" height="15" fill="rgb(237,16,22)" fg:x="1695315" fg:w="340"/><text x="70.7823%" y="335.50"></text></g><g><title>dequeue_entity (1,014 samples, 0.04%)</title><rect x="70.5181%" y="341" width="0.0422%" height="15" fill="rgb(248,192,20)" fg:x="1694972" fg:w="1014"/><text x="70.7681%" y="351.50"></text></g><g><title>update_load_avg (331 samples, 0.01%)</title><rect x="70.5465%" y="325" width="0.0138%" height="15" fill="rgb(233,167,2)" fg:x="1695655" fg:w="331"/><text x="70.7965%" y="335.50"></text></g><g><title>dequeue_task_fair (1,226 samples, 0.05%)</title><rect x="70.5117%" y="357" width="0.0510%" height="15" fill="rgb(252,71,44)" fg:x="1694820" fg:w="1226"/><text x="70.7617%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (1,531 samples, 0.06%)</title><rect x="70.5724%" y="341" width="0.0637%" height="15" fill="rgb(238,37,47)" fg:x="1696278" fg:w="1531"/><text x="70.8224%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,463 samples, 0.06%)</title><rect x="70.5752%" y="325" width="0.0609%" height="15" fill="rgb(214,202,54)" fg:x="1696346" fg:w="1463"/><text x="70.8252%" y="335.50"></text></g><g><title>native_write_msr (1,440 samples, 0.06%)</title><rect x="70.5762%" y="309" width="0.0599%" height="15" fill="rgb(254,165,40)" fg:x="1696369" fg:w="1440"/><text x="70.8262%" y="319.50"></text></g><g><title>finish_task_switch (1,860 samples, 0.08%)</title><rect x="70.5627%" y="357" width="0.0774%" height="15" fill="rgb(246,173,38)" fg:x="1696046" fg:w="1860"/><text x="70.8127%" y="367.50"></text></g><g><title>pick_next_task_idle (242 samples, 0.01%)</title><rect x="70.6485%" y="357" width="0.0101%" height="15" fill="rgb(215,3,27)" fg:x="1698108" fg:w="242"/><text x="70.8985%" y="367.50"></text></g><g><title>psi_task_change (895 samples, 0.04%)</title><rect x="70.6586%" y="357" width="0.0372%" height="15" fill="rgb(239,169,51)" fg:x="1698350" fg:w="895"/><text x="70.9086%" y="367.50"></text></g><g><title>psi_group_change (773 samples, 0.03%)</title><rect x="70.6637%" y="341" width="0.0322%" height="15" fill="rgb(212,5,25)" fg:x="1698472" fg:w="773"/><text x="70.9137%" y="351.50"></text></g><g><title>__schedule (5,274 samples, 0.22%)</title><rect x="70.4889%" y="373" width="0.2194%" height="15" fill="rgb(243,45,17)" fg:x="1694271" fg:w="5274"/><text x="70.7389%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (22,660 samples, 0.94%)</title><rect x="69.7656%" y="405" width="0.9428%" height="15" fill="rgb(242,97,9)" fg:x="1676886" fg:w="22660"/><text x="70.0156%" y="415.50"></text></g><g><title>schedule (5,345 samples, 0.22%)</title><rect x="70.4860%" y="389" width="0.2224%" height="15" fill="rgb(228,71,31)" fg:x="1694201" fg:w="5345"/><text x="70.7360%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (23,657 samples, 0.98%)</title><rect x="69.7606%" y="421" width="0.9842%" height="15" fill="rgb(252,184,16)" fg:x="1676766" fg:w="23657"/><text x="70.0106%" y="431.50"></text></g><g><title>btrfs_root_node (876 samples, 0.04%)</title><rect x="70.7084%" y="405" width="0.0364%" height="15" fill="rgb(236,169,46)" fg:x="1699547" fg:w="876"/><text x="70.9584%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (602 samples, 0.03%)</title><rect x="70.7668%" y="389" width="0.0250%" height="15" fill="rgb(207,17,47)" fg:x="1700950" fg:w="602"/><text x="71.0168%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (489 samples, 0.02%)</title><rect x="70.7715%" y="373" width="0.0203%" height="15" fill="rgb(206,201,28)" fg:x="1701063" fg:w="489"/><text x="71.0215%" y="383.50"></text></g><g><title>prepare_to_wait_event (794 samples, 0.03%)</title><rect x="70.7599%" y="405" width="0.0330%" height="15" fill="rgb(224,184,23)" fg:x="1700785" fg:w="794"/><text x="71.0099%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (712 samples, 0.03%)</title><rect x="70.7929%" y="405" width="0.0296%" height="15" fill="rgb(208,139,48)" fg:x="1701579" fg:w="712"/><text x="71.0429%" y="415.50"></text></g><g><title>dequeue_entity (443 samples, 0.02%)</title><rect x="70.8377%" y="357" width="0.0184%" height="15" fill="rgb(208,130,10)" fg:x="1702656" fg:w="443"/><text x="71.0877%" y="367.50"></text></g><g><title>dequeue_task_fair (552 samples, 0.02%)</title><rect x="70.8347%" y="373" width="0.0230%" height="15" fill="rgb(211,213,45)" fg:x="1702582" fg:w="552"/><text x="71.0847%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (565 samples, 0.02%)</title><rect x="70.8617%" y="357" width="0.0235%" height="15" fill="rgb(235,100,30)" fg:x="1703232" fg:w="565"/><text x="71.1117%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (545 samples, 0.02%)</title><rect x="70.8625%" y="341" width="0.0227%" height="15" fill="rgb(206,144,31)" fg:x="1703252" fg:w="545"/><text x="71.1125%" y="351.50"></text></g><g><title>native_write_msr (530 samples, 0.02%)</title><rect x="70.8632%" y="325" width="0.0221%" height="15" fill="rgb(224,200,26)" fg:x="1703267" fg:w="530"/><text x="71.1132%" y="335.50"></text></g><g><title>finish_task_switch (707 samples, 0.03%)</title><rect x="70.8576%" y="373" width="0.0294%" height="15" fill="rgb(247,104,53)" fg:x="1703134" fg:w="707"/><text x="71.1076%" y="383.50"></text></g><g><title>psi_task_change (387 samples, 0.02%)</title><rect x="70.8959%" y="373" width="0.0161%" height="15" fill="rgb(220,14,17)" fg:x="1704055" fg:w="387"/><text x="71.1459%" y="383.50"></text></g><g><title>psi_group_change (326 samples, 0.01%)</title><rect x="70.8985%" y="357" width="0.0136%" height="15" fill="rgb(230,140,40)" fg:x="1704116" fg:w="326"/><text x="71.1485%" y="367.50"></text></g><g><title>__btrfs_tree_lock (4,162 samples, 0.17%)</title><rect x="70.7448%" y="421" width="0.1732%" height="15" fill="rgb(229,2,41)" fg:x="1700423" fg:w="4162"/><text x="70.9948%" y="431.50"></text></g><g><title>schedule (2,294 samples, 0.10%)</title><rect x="70.8226%" y="405" width="0.0954%" height="15" fill="rgb(232,89,16)" fg:x="1702291" fg:w="2294"/><text x="71.0726%" y="415.50"></text></g><g><title>__schedule (2,248 samples, 0.09%)</title><rect x="70.8245%" y="389" width="0.0935%" height="15" fill="rgb(247,59,52)" fg:x="1702337" fg:w="2248"/><text x="71.0745%" y="399.50"></text></g><g><title>btrfs_leaf_free_space (872 samples, 0.04%)</title><rect x="70.9261%" y="421" width="0.0363%" height="15" fill="rgb(226,110,21)" fg:x="1704779" fg:w="872"/><text x="71.1761%" y="431.50"></text></g><g><title>leaf_space_used (719 samples, 0.03%)</title><rect x="70.9324%" y="405" width="0.0299%" height="15" fill="rgb(224,176,43)" fg:x="1704932" fg:w="719"/><text x="71.1824%" y="415.50"></text></g><g><title>btrfs_get_32 (554 samples, 0.02%)</title><rect x="70.9393%" y="389" width="0.0230%" height="15" fill="rgb(221,73,6)" fg:x="1705097" fg:w="554"/><text x="71.1893%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (256 samples, 0.01%)</title><rect x="70.9691%" y="373" width="0.0107%" height="15" fill="rgb(232,78,19)" fg:x="1705813" fg:w="256"/><text x="71.2191%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (242 samples, 0.01%)</title><rect x="70.9697%" y="357" width="0.0101%" height="15" fill="rgb(233,112,48)" fg:x="1705827" fg:w="242"/><text x="71.2197%" y="367.50"></text></g><g><title>prepare_to_wait_event (291 samples, 0.01%)</title><rect x="70.9677%" y="389" width="0.0121%" height="15" fill="rgb(243,131,47)" fg:x="1705780" fg:w="291"/><text x="71.2177%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (300 samples, 0.01%)</title><rect x="70.9798%" y="389" width="0.0125%" height="15" fill="rgb(226,51,1)" fg:x="1706071" fg:w="300"/><text x="71.2298%" y="399.50"></text></g><g><title>__btrfs_tree_lock (1,018 samples, 0.04%)</title><rect x="70.9623%" y="405" width="0.0424%" height="15" fill="rgb(247,58,7)" fg:x="1705651" fg:w="1018"/><text x="71.2123%" y="415.50"></text></g><g><title>schedule (298 samples, 0.01%)</title><rect x="70.9923%" y="389" width="0.0124%" height="15" fill="rgb(209,7,32)" fg:x="1706371" fg:w="298"/><text x="71.2423%" y="399.50"></text></g><g><title>__schedule (293 samples, 0.01%)</title><rect x="70.9925%" y="373" width="0.0122%" height="15" fill="rgb(209,39,41)" fg:x="1706376" fg:w="293"/><text x="71.2425%" y="383.50"></text></g><g><title>btrfs_lock_root_node (1,021 samples, 0.04%)</title><rect x="70.9623%" y="421" width="0.0425%" height="15" fill="rgb(226,182,46)" fg:x="1705651" fg:w="1021"/><text x="71.2123%" y="431.50"></text></g><g><title>_raw_write_lock (348 samples, 0.01%)</title><rect x="71.0196%" y="405" width="0.0145%" height="15" fill="rgb(230,219,10)" fg:x="1707027" fg:w="348"/><text x="71.2696%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (3,044 samples, 0.13%)</title><rect x="71.0147%" y="421" width="0.1266%" height="15" fill="rgb(227,175,30)" fg:x="1706910" fg:w="3044"/><text x="71.2647%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (2,579 samples, 0.11%)</title><rect x="71.0341%" y="405" width="0.1073%" height="15" fill="rgb(217,2,50)" fg:x="1707375" fg:w="2579"/><text x="71.2841%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (616 samples, 0.03%)</title><rect x="71.1157%" y="389" width="0.0256%" height="15" fill="rgb(229,160,0)" fg:x="1709338" fg:w="616"/><text x="71.3657%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (4,663 samples, 0.19%)</title><rect x="71.1416%" y="421" width="0.1940%" height="15" fill="rgb(207,78,37)" fg:x="1709960" fg:w="4663"/><text x="71.3916%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (546 samples, 0.02%)</title><rect x="71.3593%" y="405" width="0.0227%" height="15" fill="rgb(225,57,0)" fg:x="1715192" fg:w="546"/><text x="71.6093%" y="415.50"></text></g><g><title>verify_parent_transid (452 samples, 0.02%)</title><rect x="71.3632%" y="389" width="0.0188%" height="15" fill="rgb(232,154,2)" fg:x="1715286" fg:w="452"/><text x="71.6132%" y="399.50"></text></g><g><title>btrfs_get_64 (616 samples, 0.03%)</title><rect x="71.3820%" y="405" width="0.0256%" height="15" fill="rgb(241,212,25)" fg:x="1715738" fg:w="616"/><text x="71.6320%" y="415.50"></text></g><g><title>__radix_tree_lookup (2,205 samples, 0.09%)</title><rect x="71.4593%" y="389" width="0.0917%" height="15" fill="rgb(226,69,20)" fg:x="1717595" fg:w="2205"/><text x="71.7093%" y="399.50"></text></g><g><title>mark_page_accessed (887 samples, 0.04%)</title><rect x="71.5626%" y="373" width="0.0369%" height="15" fill="rgb(247,184,54)" fg:x="1720078" fg:w="887"/><text x="71.8126%" y="383.50"></text></g><g><title>mark_extent_buffer_accessed (1,159 samples, 0.05%)</title><rect x="71.5514%" y="389" width="0.0482%" height="15" fill="rgb(210,145,0)" fg:x="1719810" fg:w="1159"/><text x="71.8014%" y="399.50"></text></g><g><title>find_extent_buffer (4,414 samples, 0.18%)</title><rect x="71.4168%" y="405" width="0.1836%" height="15" fill="rgb(253,82,12)" fg:x="1716574" fg:w="4414"/><text x="71.6668%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (6,989 samples, 0.29%)</title><rect x="71.3356%" y="421" width="0.2908%" height="15" fill="rgb(245,42,11)" fg:x="1714623" fg:w="6989"/><text x="71.5856%" y="431.50"></text></g><g><title>read_extent_buffer (624 samples, 0.03%)</title><rect x="71.6004%" y="405" width="0.0260%" height="15" fill="rgb(219,147,32)" fg:x="1720988" fg:w="624"/><text x="71.8504%" y="415.50"></text></g><g><title>alloc_tree_block_no_bg_flush (611 samples, 0.03%)</title><rect x="71.6317%" y="405" width="0.0254%" height="15" fill="rgb(246,12,7)" fg:x="1721739" fg:w="611"/><text x="71.8817%" y="415.50"></text></g><g><title>btrfs_alloc_tree_block (610 samples, 0.03%)</title><rect x="71.6317%" y="389" width="0.0254%" height="15" fill="rgb(243,50,9)" fg:x="1721740" fg:w="610"/><text x="71.8817%" y="399.50"></text></g><g><title>copy_for_split (415 samples, 0.02%)</title><rect x="71.6596%" y="405" width="0.0173%" height="15" fill="rgb(219,149,6)" fg:x="1722409" fg:w="415"/><text x="71.9096%" y="415.50"></text></g><g><title>btrfs_get_token_32 (457 samples, 0.02%)</title><rect x="71.6879%" y="373" width="0.0190%" height="15" fill="rgb(241,51,42)" fg:x="1723090" fg:w="457"/><text x="71.9379%" y="383.50"></text></g><g><title>btrfs_set_token_32 (412 samples, 0.02%)</title><rect x="71.7081%" y="373" width="0.0171%" height="15" fill="rgb(226,128,27)" fg:x="1723576" fg:w="412"/><text x="71.9581%" y="383.50"></text></g><g><title>__push_leaf_left (1,537 samples, 0.06%)</title><rect x="71.6784%" y="389" width="0.0639%" height="15" fill="rgb(244,144,4)" fg:x="1722862" fg:w="1537"/><text x="71.9284%" y="399.50"></text></g><g><title>push_leaf_left (1,744 samples, 0.07%)</title><rect x="71.6768%" y="405" width="0.0726%" height="15" fill="rgb(221,4,13)" fg:x="1722824" fg:w="1744"/><text x="71.9268%" y="415.50"></text></g><g><title>btrfs_get_token_32 (453 samples, 0.02%)</title><rect x="71.7647%" y="373" width="0.0188%" height="15" fill="rgb(208,170,28)" fg:x="1724937" fg:w="453"/><text x="72.0147%" y="383.50"></text></g><g><title>btrfs_set_token_32 (466 samples, 0.02%)</title><rect x="71.7852%" y="373" width="0.0194%" height="15" fill="rgb(226,131,13)" fg:x="1725429" fg:w="466"/><text x="72.0352%" y="383.50"></text></g><g><title>__push_leaf_right (1,717 samples, 0.07%)</title><rect x="71.7530%" y="389" width="0.0714%" height="15" fill="rgb(215,72,41)" fg:x="1724656" fg:w="1717"/><text x="72.0030%" y="399.50"></text></g><g><title>btrfs_read_node_slot (270 samples, 0.01%)</title><rect x="71.8322%" y="389" width="0.0112%" height="15" fill="rgb(243,108,20)" fg:x="1726558" fg:w="270"/><text x="72.0822%" y="399.50"></text></g><g><title>push_leaf_right (2,308 samples, 0.10%)</title><rect x="71.7494%" y="405" width="0.0960%" height="15" fill="rgb(230,189,17)" fg:x="1724568" fg:w="2308"/><text x="71.9994%" y="415.50"></text></g><g><title>split_leaf (5,190 samples, 0.22%)</title><rect x="71.6295%" y="421" width="0.2159%" height="15" fill="rgb(220,50,17)" fg:x="1721687" fg:w="5190"/><text x="71.8795%" y="431.50"></text></g><g><title>split_node (429 samples, 0.02%)</title><rect x="71.8454%" y="421" width="0.0178%" height="15" fill="rgb(248,152,48)" fg:x="1726877" fg:w="429"/><text x="72.0954%" y="431.50"></text></g><g><title>push_nodes_for_insert (419 samples, 0.02%)</title><rect x="71.8459%" y="405" width="0.0174%" height="15" fill="rgb(244,91,11)" fg:x="1726887" fg:w="419"/><text x="72.0959%" y="415.50"></text></g><g><title>select_task_rq_fair (697 samples, 0.03%)</title><rect x="71.9373%" y="341" width="0.0290%" height="15" fill="rgb(220,157,5)" fg:x="1729085" fg:w="697"/><text x="72.1873%" y="351.50"></text></g><g><title>enqueue_entity (610 samples, 0.03%)</title><rect x="71.9777%" y="309" width="0.0254%" height="15" fill="rgb(253,137,8)" fg:x="1730056" fg:w="610"/><text x="72.2277%" y="319.50"></text></g><g><title>enqueue_task_fair (805 samples, 0.03%)</title><rect x="71.9721%" y="325" width="0.0335%" height="15" fill="rgb(217,137,51)" fg:x="1729921" fg:w="805"/><text x="72.2221%" y="335.50"></text></g><g><title>ttwu_do_activate (1,668 samples, 0.07%)</title><rect x="71.9696%" y="341" width="0.0694%" height="15" fill="rgb(218,209,53)" fg:x="1729861" fg:w="1668"/><text x="72.2196%" y="351.50"></text></g><g><title>psi_task_change (801 samples, 0.03%)</title><rect x="72.0057%" y="325" width="0.0333%" height="15" fill="rgb(249,137,25)" fg:x="1730728" fg:w="801"/><text x="72.2557%" y="335.50"></text></g><g><title>psi_group_change (714 samples, 0.03%)</title><rect x="72.0093%" y="309" width="0.0297%" height="15" fill="rgb(239,155,26)" fg:x="1730815" fg:w="714"/><text x="72.2593%" y="319.50"></text></g><g><title>__wake_up_common (3,880 samples, 0.16%)</title><rect x="71.8944%" y="389" width="0.1614%" height="15" fill="rgb(227,85,46)" fg:x="1728055" fg:w="3880"/><text x="72.1444%" y="399.50"></text></g><g><title>autoremove_wake_function (3,830 samples, 0.16%)</title><rect x="71.8965%" y="373" width="0.1593%" height="15" fill="rgb(251,107,43)" fg:x="1728105" fg:w="3830"/><text x="72.1465%" y="383.50"></text></g><g><title>try_to_wake_up (3,694 samples, 0.15%)</title><rect x="71.9022%" y="357" width="0.1537%" height="15" fill="rgb(234,170,33)" fg:x="1728241" fg:w="3694"/><text x="72.1522%" y="367.50"></text></g><g><title>__wake_up_common_lock (4,034 samples, 0.17%)</title><rect x="71.8939%" y="405" width="0.1678%" height="15" fill="rgb(206,29,35)" fg:x="1728042" fg:w="4034"/><text x="72.1439%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (551 samples, 0.02%)</title><rect x="72.0620%" y="405" width="0.0229%" height="15" fill="rgb(227,138,25)" fg:x="1732082" fg:w="551"/><text x="72.3120%" y="415.50"></text></g><g><title>btrfs_search_slot (57,967 samples, 2.41%)</title><rect x="69.6831%" y="437" width="2.4117%" height="15" fill="rgb(249,131,35)" fg:x="1674904" fg:w="57967"/><text x="69.9331%" y="447.50">bt..</text></g><g><title>unlock_up (5,565 samples, 0.23%)</title><rect x="71.8633%" y="421" width="0.2315%" height="15" fill="rgb(239,6,40)" fg:x="1727306" fg:w="5565"/><text x="72.1133%" y="431.50"></text></g><g><title>btrfs_get_32 (374 samples, 0.02%)</title><rect x="72.1970%" y="421" width="0.0156%" height="15" fill="rgb(246,136,47)" fg:x="1735326" fg:w="374"/><text x="72.4470%" y="431.50"></text></g><g><title>btrfs_get_token_32 (11,364 samples, 0.47%)</title><rect x="72.2125%" y="421" width="0.4728%" height="15" fill="rgb(253,58,26)" fg:x="1735700" fg:w="11364"/><text x="72.4625%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,702 samples, 0.07%)</title><rect x="72.6145%" y="405" width="0.0708%" height="15" fill="rgb(237,141,10)" fg:x="1745362" fg:w="1702"/><text x="72.8645%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (998 samples, 0.04%)</title><rect x="72.6853%" y="421" width="0.0415%" height="15" fill="rgb(234,156,12)" fg:x="1747064" fg:w="998"/><text x="72.9353%" y="431.50"></text></g><g><title>leaf_space_used (874 samples, 0.04%)</title><rect x="72.6905%" y="405" width="0.0364%" height="15" fill="rgb(243,224,36)" fg:x="1747188" fg:w="874"/><text x="72.9405%" y="415.50"></text></g><g><title>btrfs_get_32 (642 samples, 0.03%)</title><rect x="72.7001%" y="389" width="0.0267%" height="15" fill="rgb(205,229,51)" fg:x="1747420" fg:w="642"/><text x="72.9501%" y="399.50"></text></g><g><title>btrfs_mark_buffer_dirty (562 samples, 0.02%)</title><rect x="72.7268%" y="421" width="0.0234%" height="15" fill="rgb(223,189,4)" fg:x="1748062" fg:w="562"/><text x="72.9768%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (280 samples, 0.01%)</title><rect x="72.7386%" y="405" width="0.0116%" height="15" fill="rgb(249,167,54)" fg:x="1748344" fg:w="280"/><text x="72.9886%" y="415.50"></text></g><g><title>btrfs_set_token_32 (9,070 samples, 0.38%)</title><rect x="72.7502%" y="421" width="0.3774%" height="15" fill="rgb(218,34,28)" fg:x="1748624" fg:w="9070"/><text x="73.0002%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,523 samples, 0.06%)</title><rect x="73.0642%" y="405" width="0.0634%" height="15" fill="rgb(232,109,42)" fg:x="1756171" fg:w="1523"/><text x="73.3142%" y="415.50"></text></g><g><title>btrfs_unlock_up_safe (290 samples, 0.01%)</title><rect x="73.1276%" y="421" width="0.0121%" height="15" fill="rgb(248,214,46)" fg:x="1757694" fg:w="290"/><text x="73.3776%" y="431.50"></text></g><g><title>copy_pages (469 samples, 0.02%)</title><rect x="73.1499%" y="405" width="0.0195%" height="15" fill="rgb(244,216,40)" fg:x="1758232" fg:w="469"/><text x="73.3999%" y="415.50"></text></g><g><title>memcpy_extent_buffer (3,963 samples, 0.16%)</title><rect x="73.1399%" y="421" width="0.1649%" height="15" fill="rgb(231,226,31)" fg:x="1757990" fg:w="3963"/><text x="73.3899%" y="431.50"></text></g><g><title>memmove (3,252 samples, 0.14%)</title><rect x="73.1695%" y="405" width="0.1353%" height="15" fill="rgb(238,38,43)" fg:x="1758701" fg:w="3252"/><text x="73.4195%" y="415.50"></text></g><g><title>copy_pages (325 samples, 0.01%)</title><rect x="73.3226%" y="405" width="0.0135%" height="15" fill="rgb(208,88,43)" fg:x="1762383" fg:w="325"/><text x="73.5726%" y="415.50"></text></g><g><title>memmove_extent_buffer (3,022 samples, 0.13%)</title><rect x="73.3048%" y="421" width="0.1257%" height="15" fill="rgb(205,136,37)" fg:x="1761953" fg:w="3022"/><text x="73.5548%" y="431.50"></text></g><g><title>memmove (2,267 samples, 0.09%)</title><rect x="73.3362%" y="405" width="0.0943%" height="15" fill="rgb(237,34,14)" fg:x="1762708" fg:w="2267"/><text x="73.5862%" y="415.50"></text></g><g><title>insert_with_overflow (91,460 samples, 3.81%)</title><rect x="69.6420%" y="469" width="3.8051%" height="15" fill="rgb(236,193,44)" fg:x="1673914" fg:w="91460"/><text x="69.8920%" y="479.50">inse..</text></g><g><title>btrfs_insert_empty_items (90,659 samples, 3.77%)</title><rect x="69.6753%" y="453" width="3.7718%" height="15" fill="rgb(231,48,10)" fg:x="1674715" fg:w="90659"/><text x="69.9253%" y="463.50">btrf..</text></g><g><title>setup_items_for_insert (32,503 samples, 1.35%)</title><rect x="72.0948%" y="437" width="1.3523%" height="15" fill="rgb(213,141,34)" fg:x="1732871" fg:w="32503"/><text x="72.3448%" y="447.50"></text></g><g><title>write_extent_buffer (399 samples, 0.02%)</title><rect x="73.4305%" y="421" width="0.0166%" height="15" fill="rgb(249,130,34)" fg:x="1764975" fg:w="399"/><text x="73.6805%" y="431.50"></text></g><g><title>kmem_cache_alloc (668 samples, 0.03%)</title><rect x="73.4471%" y="469" width="0.0278%" height="15" fill="rgb(219,42,41)" fg:x="1765374" fg:w="668"/><text x="73.6971%" y="479.50"></text></g><g><title>kmem_cache_free (644 samples, 0.03%)</title><rect x="73.4749%" y="469" width="0.0268%" height="15" fill="rgb(224,100,54)" fg:x="1766042" fg:w="644"/><text x="73.7249%" y="479.50"></text></g><g><title>btrfs_insert_dir_item (108,428 samples, 4.51%)</title><rect x="69.0269%" y="485" width="4.5111%" height="15" fill="rgb(229,200,27)" fg:x="1659131" fg:w="108428"/><text x="69.2769%" y="495.50">btrfs..</text></g><g><title>write_extent_buffer (873 samples, 0.04%)</title><rect x="73.5017%" y="469" width="0.0363%" height="15" fill="rgb(217,118,10)" fg:x="1766686" fg:w="873"/><text x="73.7517%" y="479.50"></text></g><g><title>_raw_spin_lock (251 samples, 0.01%)</title><rect x="73.5798%" y="437" width="0.0104%" height="15" fill="rgb(206,22,3)" fg:x="1768563" fg:w="251"/><text x="73.8298%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,068 samples, 0.04%)</title><rect x="73.5638%" y="453" width="0.0444%" height="15" fill="rgb(232,163,46)" fg:x="1768180" fg:w="1068"/><text x="73.8138%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (332 samples, 0.01%)</title><rect x="73.6158%" y="453" width="0.0138%" height="15" fill="rgb(206,95,13)" fg:x="1769429" fg:w="332"/><text x="73.8658%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (294 samples, 0.01%)</title><rect x="73.6174%" y="437" width="0.0122%" height="15" fill="rgb(253,154,18)" fg:x="1769467" fg:w="294"/><text x="73.8674%" y="447.50"></text></g><g><title>fill_stack_inode_item (532 samples, 0.02%)</title><rect x="73.6296%" y="453" width="0.0221%" height="15" fill="rgb(219,32,23)" fg:x="1769761" fg:w="532"/><text x="73.8796%" y="463.50"></text></g><g><title>btrfs_delayed_update_inode (2,637 samples, 0.11%)</title><rect x="73.5584%" y="469" width="0.1097%" height="15" fill="rgb(230,191,45)" fg:x="1768050" fg:w="2637"/><text x="73.8084%" y="479.50"></text></g><g><title>_raw_spin_lock (502 samples, 0.02%)</title><rect x="73.6729%" y="453" width="0.0209%" height="15" fill="rgb(229,64,36)" fg:x="1770801" fg:w="502"/><text x="73.9229%" y="463.50"></text></g><g><title>btrfs_update_inode (4,140 samples, 0.17%)</title><rect x="73.5380%" y="485" width="0.1722%" height="15" fill="rgb(205,129,25)" fg:x="1767559" fg:w="4140"/><text x="73.7880%" y="495.50"></text></g><g><title>btrfs_update_root_times (1,012 samples, 0.04%)</title><rect x="73.6681%" y="469" width="0.0421%" height="15" fill="rgb(254,112,7)" fg:x="1770687" fg:w="1012"/><text x="73.9181%" y="479.50"></text></g><g><title>ktime_get_real_ts64 (396 samples, 0.02%)</title><rect x="73.6938%" y="453" width="0.0165%" height="15" fill="rgb(226,53,48)" fg:x="1771303" fg:w="396"/><text x="73.9438%" y="463.50"></text></g><g><title>btrfs_add_link (113,657 samples, 4.73%)</title><rect x="68.9936%" y="501" width="4.7286%" height="15" fill="rgb(214,153,38)" fg:x="1658330" fg:w="113657"/><text x="69.2436%" y="511.50">btrfs_..</text></g><g><title>btrfs_balance_delayed_items (792 samples, 0.03%)</title><rect x="73.7448%" y="485" width="0.0330%" height="15" fill="rgb(243,101,7)" fg:x="1772531" fg:w="792"/><text x="73.9948%" y="495.50"></text></g><g><title>_raw_spin_lock (536 samples, 0.02%)</title><rect x="73.7981%" y="453" width="0.0223%" height="15" fill="rgb(240,140,22)" fg:x="1773810" fg:w="536"/><text x="74.0481%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (406 samples, 0.02%)</title><rect x="73.8035%" y="437" width="0.0169%" height="15" fill="rgb(235,114,2)" fg:x="1773940" fg:w="406"/><text x="74.0535%" y="447.50"></text></g><g><title>_raw_spin_lock (339 samples, 0.01%)</title><rect x="73.8390%" y="437" width="0.0141%" height="15" fill="rgb(242,59,12)" fg:x="1774795" fg:w="339"/><text x="74.0890%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (275 samples, 0.01%)</title><rect x="73.8417%" y="421" width="0.0114%" height="15" fill="rgb(252,134,9)" fg:x="1774859" fg:w="275"/><text x="74.0917%" y="431.50"></text></g><g><title>select_task_rq_fair (670 samples, 0.03%)</title><rect x="73.8604%" y="437" width="0.0279%" height="15" fill="rgb(236,4,44)" fg:x="1775308" fg:w="670"/><text x="74.1104%" y="447.50"></text></g><g><title>enqueue_task_fair (487 samples, 0.02%)</title><rect x="73.8949%" y="421" width="0.0203%" height="15" fill="rgb(254,172,41)" fg:x="1776139" fg:w="487"/><text x="74.1449%" y="431.50"></text></g><g><title>enqueue_entity (372 samples, 0.02%)</title><rect x="73.8997%" y="405" width="0.0155%" height="15" fill="rgb(244,63,20)" fg:x="1776254" fg:w="372"/><text x="74.1497%" y="415.50"></text></g><g><title>ttwu_do_activate (821 samples, 0.03%)</title><rect x="73.8925%" y="437" width="0.0342%" height="15" fill="rgb(250,73,31)" fg:x="1776080" fg:w="821"/><text x="74.1425%" y="447.50"></text></g><g><title>psi_task_change (274 samples, 0.01%)</title><rect x="73.9153%" y="421" width="0.0114%" height="15" fill="rgb(241,38,36)" fg:x="1776627" fg:w="274"/><text x="74.1653%" y="431.50"></text></g><g><title>ttwu_do_wakeup (246 samples, 0.01%)</title><rect x="73.9267%" y="437" width="0.0102%" height="15" fill="rgb(245,211,2)" fg:x="1776901" fg:w="246"/><text x="74.1767%" y="447.50"></text></g><g><title>try_to_wake_up (2,777 samples, 0.12%)</title><rect x="73.8287%" y="453" width="0.1155%" height="15" fill="rgb(206,120,28)" fg:x="1774547" fg:w="2777"/><text x="74.0787%" y="463.50"></text></g><g><title>__queue_work (3,762 samples, 0.16%)</title><rect x="73.7878%" y="469" width="0.1565%" height="15" fill="rgb(211,59,34)" fg:x="1773563" fg:w="3762"/><text x="74.0378%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (5,320 samples, 0.22%)</title><rect x="73.7240%" y="501" width="0.2213%" height="15" fill="rgb(233,168,5)" fg:x="1772030" fg:w="5320"/><text x="73.9740%" y="511.50"></text></g><g><title>queue_work_on (3,852 samples, 0.16%)</title><rect x="73.7851%" y="485" width="0.1603%" height="15" fill="rgb(234,33,13)" fg:x="1773498" fg:w="3852"/><text x="74.0351%" y="495.50"></text></g><g><title>mutex_lock (517 samples, 0.02%)</title><rect x="73.9532%" y="485" width="0.0215%" height="15" fill="rgb(231,150,26)" fg:x="1777538" fg:w="517"/><text x="74.2032%" y="495.50"></text></g><g><title>btrfs_find_free_ino (1,112 samples, 0.05%)</title><rect x="73.9470%" y="501" width="0.0463%" height="15" fill="rgb(217,191,4)" fg:x="1777391" fg:w="1112"/><text x="74.1970%" y="511.50"></text></g><g><title>mutex_unlock (448 samples, 0.02%)</title><rect x="73.9747%" y="485" width="0.0186%" height="15" fill="rgb(246,198,38)" fg:x="1778055" fg:w="448"/><text x="74.2247%" y="495.50"></text></g><g><title>_raw_spin_lock (290 samples, 0.01%)</title><rect x="74.2538%" y="405" width="0.0121%" height="15" fill="rgb(245,64,37)" fg:x="1784765" fg:w="290"/><text x="74.5038%" y="415.50"></text></g><g><title>select_task_rq_fair (935 samples, 0.04%)</title><rect x="74.2773%" y="405" width="0.0389%" height="15" fill="rgb(250,30,36)" fg:x="1785330" fg:w="935"/><text x="74.5273%" y="415.50"></text></g><g><title>enqueue_entity (992 samples, 0.04%)</title><rect x="74.3338%" y="373" width="0.0413%" height="15" fill="rgb(217,86,53)" fg:x="1786688" fg:w="992"/><text x="74.5838%" y="383.50"></text></g><g><title>update_load_avg (351 samples, 0.01%)</title><rect x="74.3605%" y="357" width="0.0146%" height="15" fill="rgb(228,157,16)" fg:x="1787329" fg:w="351"/><text x="74.6105%" y="367.50"></text></g><g><title>enqueue_task_fair (1,277 samples, 0.05%)</title><rect x="74.3226%" y="389" width="0.0531%" height="15" fill="rgb(217,59,31)" fg:x="1786417" fg:w="1277"/><text x="74.5726%" y="399.50"></text></g><g><title>ttwu_do_activate (2,533 samples, 0.11%)</title><rect x="74.3196%" y="405" width="0.1054%" height="15" fill="rgb(237,138,41)" fg:x="1786347" fg:w="2533"/><text x="74.5696%" y="415.50"></text></g><g><title>psi_task_change (1,183 samples, 0.05%)</title><rect x="74.3758%" y="389" width="0.0492%" height="15" fill="rgb(227,91,49)" fg:x="1787697" fg:w="1183"/><text x="74.6258%" y="399.50"></text></g><g><title>psi_group_change (1,022 samples, 0.04%)</title><rect x="74.3825%" y="373" width="0.0425%" height="15" fill="rgb(247,21,44)" fg:x="1787858" fg:w="1022"/><text x="74.6325%" y="383.50"></text></g><g><title>ttwu_do_wakeup (325 samples, 0.01%)</title><rect x="74.4250%" y="405" width="0.0135%" height="15" fill="rgb(219,210,51)" fg:x="1788880" fg:w="325"/><text x="74.6750%" y="415.50"></text></g><g><title>check_preempt_curr (302 samples, 0.01%)</title><rect x="74.4260%" y="389" width="0.0126%" height="15" fill="rgb(209,140,6)" fg:x="1788903" fg:w="302"/><text x="74.6760%" y="399.50"></text></g><g><title>ttwu_queue_wakelist (672 samples, 0.03%)</title><rect x="74.4386%" y="405" width="0.0280%" height="15" fill="rgb(221,188,24)" fg:x="1789205" fg:w="672"/><text x="74.6886%" y="415.50"></text></g><g><title>__wake_up_common (11,308 samples, 0.47%)</title><rect x="74.0056%" y="453" width="0.4705%" height="15" fill="rgb(232,154,20)" fg:x="1778799" fg:w="11308"/><text x="74.2556%" y="463.50"></text></g><g><title>autoremove_wake_function (11,078 samples, 0.46%)</title><rect x="74.0152%" y="437" width="0.4609%" height="15" fill="rgb(244,137,50)" fg:x="1779029" fg:w="11078"/><text x="74.2652%" y="447.50"></text></g><g><title>try_to_wake_up (10,975 samples, 0.46%)</title><rect x="74.0195%" y="421" width="0.4566%" height="15" fill="rgb(225,185,43)" fg:x="1779132" fg:w="10975"/><text x="74.2695%" y="431.50"></text></g><g><title>__wake_up_common_lock (11,618 samples, 0.48%)</title><rect x="74.0013%" y="469" width="0.4834%" height="15" fill="rgb(213,205,38)" fg:x="1778696" fg:w="11618"/><text x="74.2513%" y="479.50"></text></g><g><title>btrfs_tree_unlock (336 samples, 0.01%)</title><rect x="74.4847%" y="469" width="0.0140%" height="15" fill="rgb(236,73,12)" fg:x="1790314" fg:w="336"/><text x="74.7347%" y="479.50"></text></g><g><title>_raw_spin_lock (373 samples, 0.02%)</title><rect x="74.5457%" y="453" width="0.0155%" height="15" fill="rgb(235,219,13)" fg:x="1791781" fg:w="373"/><text x="74.7957%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,485 samples, 0.06%)</title><rect x="74.4997%" y="469" width="0.0618%" height="15" fill="rgb(218,59,36)" fg:x="1790675" fg:w="1485"/><text x="74.7497%" y="479.50"></text></g><g><title>btrfs_free_path (13,966 samples, 0.58%)</title><rect x="73.9933%" y="501" width="0.5810%" height="15" fill="rgb(205,110,39)" fg:x="1778503" fg:w="13966"/><text x="74.2433%" y="511.50"></text></g><g><title>btrfs_release_path (13,955 samples, 0.58%)</title><rect x="73.9938%" y="485" width="0.5806%" height="15" fill="rgb(218,206,42)" fg:x="1778514" fg:w="13955"/><text x="74.2438%" y="495.50"></text></g><g><title>release_extent_buffer (309 samples, 0.01%)</title><rect x="74.5615%" y="469" width="0.0129%" height="15" fill="rgb(248,125,24)" fg:x="1792160" fg:w="309"/><text x="74.8115%" y="479.50"></text></g><g><title>btrfs_init_acl (644 samples, 0.03%)</title><rect x="74.5803%" y="501" width="0.0268%" height="15" fill="rgb(242,28,27)" fg:x="1792611" fg:w="644"/><text x="74.8303%" y="511.50"></text></g><g><title>_raw_read_lock (531 samples, 0.02%)</title><rect x="74.7301%" y="437" width="0.0221%" height="15" fill="rgb(216,228,15)" fg:x="1796212" fg:w="531"/><text x="74.9801%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (2,313 samples, 0.10%)</title><rect x="74.7587%" y="421" width="0.0962%" height="15" fill="rgb(235,116,46)" fg:x="1796900" fg:w="2313"/><text x="75.0087%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,199 samples, 0.09%)</title><rect x="74.7634%" y="405" width="0.0915%" height="15" fill="rgb(224,18,32)" fg:x="1797014" fg:w="2199"/><text x="75.0134%" y="415.50"></text></g><g><title>finish_wait (2,442 samples, 0.10%)</title><rect x="74.7534%" y="437" width="0.1016%" height="15" fill="rgb(252,5,12)" fg:x="1796773" fg:w="2442"/><text x="75.0034%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (5,390 samples, 0.22%)</title><rect x="74.8816%" y="421" width="0.2242%" height="15" fill="rgb(251,36,5)" fg:x="1799853" fg:w="5390"/><text x="75.1316%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,104 samples, 0.21%)</title><rect x="74.8935%" y="405" width="0.2123%" height="15" fill="rgb(217,53,14)" fg:x="1800139" fg:w="5104"/><text x="75.1435%" y="415.50"></text></g><g><title>prepare_to_wait_event (6,112 samples, 0.25%)</title><rect x="74.8556%" y="437" width="0.2543%" height="15" fill="rgb(215,86,45)" fg:x="1799230" fg:w="6112"/><text x="75.1056%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (7,924 samples, 0.33%)</title><rect x="75.1099%" y="437" width="0.3297%" height="15" fill="rgb(242,169,11)" fg:x="1805342" fg:w="7924"/><text x="75.3599%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,884 samples, 0.24%)</title><rect x="75.1948%" y="421" width="0.2448%" height="15" fill="rgb(211,213,45)" fg:x="1807382" fg:w="5884"/><text x="75.4448%" y="431.50"></text></g><g><title>update_curr (383 samples, 0.02%)</title><rect x="75.4829%" y="373" width="0.0159%" height="15" fill="rgb(205,88,11)" fg:x="1814306" fg:w="383"/><text x="75.7329%" y="383.50"></text></g><g><title>dequeue_entity (1,076 samples, 0.04%)</title><rect x="75.4684%" y="389" width="0.0448%" height="15" fill="rgb(252,69,26)" fg:x="1813958" fg:w="1076"/><text x="75.7184%" y="399.50"></text></g><g><title>update_load_avg (345 samples, 0.01%)</title><rect x="75.4988%" y="373" width="0.0144%" height="15" fill="rgb(246,123,37)" fg:x="1814689" fg:w="345"/><text x="75.7488%" y="383.50"></text></g><g><title>dequeue_task_fair (1,276 samples, 0.05%)</title><rect x="75.4628%" y="405" width="0.0531%" height="15" fill="rgb(212,205,5)" fg:x="1813824" fg:w="1276"/><text x="75.7128%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (1,224 samples, 0.05%)</title><rect x="75.5235%" y="389" width="0.0509%" height="15" fill="rgb(253,148,0)" fg:x="1815284" fg:w="1224"/><text x="75.7735%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,175 samples, 0.05%)</title><rect x="75.5256%" y="373" width="0.0489%" height="15" fill="rgb(239,22,4)" fg:x="1815333" fg:w="1175"/><text x="75.7756%" y="383.50"></text></g><g><title>native_write_msr (1,155 samples, 0.05%)</title><rect x="75.5264%" y="357" width="0.0481%" height="15" fill="rgb(226,26,53)" fg:x="1815353" fg:w="1155"/><text x="75.7764%" y="367.50"></text></g><g><title>finish_task_switch (1,473 samples, 0.06%)</title><rect x="75.5159%" y="405" width="0.0613%" height="15" fill="rgb(225,229,45)" fg:x="1815100" fg:w="1473"/><text x="75.7659%" y="415.50"></text></g><g><title>psi_task_change (945 samples, 0.04%)</title><rect x="75.5944%" y="405" width="0.0393%" height="15" fill="rgb(220,60,37)" fg:x="1816988" fg:w="945"/><text x="75.8444%" y="415.50"></text></g><g><title>psi_group_change (809 samples, 0.03%)</title><rect x="75.6001%" y="389" width="0.0337%" height="15" fill="rgb(217,180,35)" fg:x="1817124" fg:w="809"/><text x="75.8501%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (22,558 samples, 0.94%)</title><rect x="74.7068%" y="453" width="0.9385%" height="15" fill="rgb(229,7,53)" fg:x="1795652" fg:w="22558"/><text x="74.9568%" y="463.50"></text></g><g><title>schedule (4,944 samples, 0.21%)</title><rect x="75.4396%" y="437" width="0.2057%" height="15" fill="rgb(254,137,3)" fg:x="1813266" fg:w="4944"/><text x="75.6896%" y="447.50"></text></g><g><title>__schedule (4,878 samples, 0.20%)</title><rect x="75.4423%" y="421" width="0.2029%" height="15" fill="rgb(215,140,41)" fg:x="1813332" fg:w="4878"/><text x="75.6923%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (23,685 samples, 0.99%)</title><rect x="74.7011%" y="469" width="0.9854%" height="15" fill="rgb(250,80,15)" fg:x="1795516" fg:w="23685"/><text x="74.9511%" y="479.50"></text></g><g><title>btrfs_root_node (991 samples, 0.04%)</title><rect x="75.6453%" y="453" width="0.0412%" height="15" fill="rgb(252,191,6)" fg:x="1818210" fg:w="991"/><text x="75.8953%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (1,342 samples, 0.06%)</title><rect x="75.7346%" y="437" width="0.0558%" height="15" fill="rgb(246,217,18)" fg:x="1820356" fg:w="1342"/><text x="75.9846%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,158 samples, 0.05%)</title><rect x="75.7422%" y="421" width="0.0482%" height="15" fill="rgb(223,93,7)" fg:x="1820540" fg:w="1158"/><text x="75.9922%" y="431.50"></text></g><g><title>finish_wait (1,491 samples, 0.06%)</title><rect x="75.7284%" y="453" width="0.0620%" height="15" fill="rgb(225,55,52)" fg:x="1820208" fg:w="1491"/><text x="75.9784%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (5,151 samples, 0.21%)</title><rect x="75.8307%" y="437" width="0.2143%" height="15" fill="rgb(240,31,24)" fg:x="1822666" fg:w="5151"/><text x="76.0807%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,460 samples, 0.19%)</title><rect x="75.8594%" y="421" width="0.1856%" height="15" fill="rgb(205,56,52)" fg:x="1823357" fg:w="4460"/><text x="76.1094%" y="431.50"></text></g><g><title>prepare_to_wait_event (6,302 samples, 0.26%)</title><rect x="75.7928%" y="453" width="0.2622%" height="15" fill="rgb(246,146,12)" fg:x="1821755" fg:w="6302"/><text x="76.0428%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (6,735 samples, 0.28%)</title><rect x="76.0550%" y="453" width="0.2802%" height="15" fill="rgb(239,84,36)" fg:x="1828057" fg:w="6735"/><text x="76.3050%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,714 samples, 0.15%)</title><rect x="76.1806%" y="437" width="0.1545%" height="15" fill="rgb(207,41,40)" fg:x="1831078" fg:w="3714"/><text x="76.4306%" y="447.50"></text></g><g><title>__perf_event_task_sched_out (414 samples, 0.02%)</title><rect x="76.3709%" y="421" width="0.0172%" height="15" fill="rgb(241,179,25)" fg:x="1835651" fg:w="414"/><text x="76.6209%" y="431.50"></text></g><g><title>update_cfs_group (277 samples, 0.01%)</title><rect x="76.4298%" y="389" width="0.0115%" height="15" fill="rgb(210,0,34)" fg:x="1837067" fg:w="277"/><text x="76.6798%" y="399.50"></text></g><g><title>update_curr (884 samples, 0.04%)</title><rect x="76.4413%" y="389" width="0.0368%" height="15" fill="rgb(225,217,29)" fg:x="1837344" fg:w="884"/><text x="76.6913%" y="399.50"></text></g><g><title>__update_load_avg_se (297 samples, 0.01%)</title><rect x="76.4982%" y="373" width="0.0124%" height="15" fill="rgb(216,191,38)" fg:x="1838710" fg:w="297"/><text x="76.7482%" y="383.50"></text></g><g><title>dequeue_entity (2,501 samples, 0.10%)</title><rect x="76.4071%" y="405" width="0.1041%" height="15" fill="rgb(232,140,52)" fg:x="1836520" fg:w="2501"/><text x="76.6571%" y="415.50"></text></g><g><title>update_load_avg (793 samples, 0.03%)</title><rect x="76.4781%" y="389" width="0.0330%" height="15" fill="rgb(223,158,51)" fg:x="1838228" fg:w="793"/><text x="76.7281%" y="399.50"></text></g><g><title>dequeue_task_fair (2,969 samples, 0.12%)</title><rect x="76.3935%" y="421" width="0.1235%" height="15" fill="rgb(235,29,51)" fg:x="1836193" fg:w="2969"/><text x="76.6435%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (2,741 samples, 0.11%)</title><rect x="76.5384%" y="405" width="0.1140%" height="15" fill="rgb(215,181,18)" fg:x="1839676" fg:w="2741"/><text x="76.7884%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,650 samples, 0.11%)</title><rect x="76.5421%" y="389" width="0.1103%" height="15" fill="rgb(227,125,34)" fg:x="1839767" fg:w="2650"/><text x="76.7921%" y="399.50"></text></g><g><title>native_write_msr (2,601 samples, 0.11%)</title><rect x="76.5442%" y="373" width="0.1082%" height="15" fill="rgb(230,197,49)" fg:x="1839816" fg:w="2601"/><text x="76.7942%" y="383.50"></text></g><g><title>finish_task_switch (3,387 samples, 0.14%)</title><rect x="76.5170%" y="421" width="0.1409%" height="15" fill="rgb(239,141,16)" fg:x="1839162" fg:w="3387"/><text x="76.7670%" y="431.50"></text></g><g><title>newidle_balance (284 samples, 0.01%)</title><rect x="76.6638%" y="405" width="0.0118%" height="15" fill="rgb(225,105,43)" fg:x="1842692" fg:w="284"/><text x="76.9138%" y="415.50"></text></g><g><title>pick_next_task_fair (500 samples, 0.02%)</title><rect x="76.6581%" y="421" width="0.0208%" height="15" fill="rgb(214,131,14)" fg:x="1842554" fg:w="500"/><text x="76.9081%" y="431.50"></text></g><g><title>pick_next_task_idle (521 samples, 0.02%)</title><rect x="76.6789%" y="421" width="0.0217%" height="15" fill="rgb(229,177,11)" fg:x="1843054" fg:w="521"/><text x="76.9289%" y="431.50"></text></g><g><title>__update_idle_core (446 samples, 0.02%)</title><rect x="76.6820%" y="405" width="0.0186%" height="15" fill="rgb(231,180,14)" fg:x="1843129" fg:w="446"/><text x="76.9320%" y="415.50"></text></g><g><title>psi_task_change (2,265 samples, 0.09%)</title><rect x="76.7006%" y="421" width="0.0942%" height="15" fill="rgb(232,88,2)" fg:x="1843575" fg:w="2265"/><text x="76.9506%" y="431.50"></text></g><g><title>psi_group_change (1,905 samples, 0.08%)</title><rect x="76.7156%" y="405" width="0.0793%" height="15" fill="rgb(205,220,8)" fg:x="1843935" fg:w="1905"/><text x="76.9656%" y="415.50"></text></g><g><title>record_times (437 samples, 0.02%)</title><rect x="76.7766%" y="389" width="0.0182%" height="15" fill="rgb(225,23,53)" fg:x="1845403" fg:w="437"/><text x="77.0266%" y="399.50"></text></g><g><title>sched_clock_cpu (276 samples, 0.01%)</title><rect x="76.7833%" y="373" width="0.0115%" height="15" fill="rgb(213,62,29)" fg:x="1845564" fg:w="276"/><text x="77.0333%" y="383.50"></text></g><g><title>sched_clock (242 samples, 0.01%)</title><rect x="76.7847%" y="357" width="0.0101%" height="15" fill="rgb(227,75,7)" fg:x="1845598" fg:w="242"/><text x="77.0347%" y="367.50"></text></g><g><title>__schedule (11,473 samples, 0.48%)</title><rect x="76.3434%" y="437" width="0.4773%" height="15" fill="rgb(207,105,14)" fg:x="1834990" fg:w="11473"/><text x="76.5934%" y="447.50"></text></g><g><title>update_rq_clock (246 samples, 0.01%)</title><rect x="76.8105%" y="421" width="0.0102%" height="15" fill="rgb(245,62,29)" fg:x="1846217" fg:w="246"/><text x="77.0605%" y="431.50"></text></g><g><title>__btrfs_tree_lock (27,263 samples, 1.13%)</title><rect x="75.6865%" y="469" width="1.1343%" height="15" fill="rgb(236,202,4)" fg:x="1819201" fg:w="27263"/><text x="75.9365%" y="479.50"></text></g><g><title>schedule (11,672 samples, 0.49%)</title><rect x="76.3352%" y="453" width="0.4856%" height="15" fill="rgb(250,67,1)" fg:x="1834792" fg:w="11672"/><text x="76.5852%" y="463.50"></text></g><g><title>btrfs_leaf_free_space (923 samples, 0.04%)</title><rect x="76.8285%" y="469" width="0.0384%" height="15" fill="rgb(253,115,44)" fg:x="1846649" fg:w="923"/><text x="77.0785%" y="479.50"></text></g><g><title>leaf_space_used (690 samples, 0.03%)</title><rect x="76.8382%" y="453" width="0.0287%" height="15" fill="rgb(251,139,18)" fg:x="1846882" fg:w="690"/><text x="77.0882%" y="463.50"></text></g><g><title>btrfs_get_32 (514 samples, 0.02%)</title><rect x="76.8455%" y="437" width="0.0214%" height="15" fill="rgb(218,22,32)" fg:x="1847058" fg:w="514"/><text x="77.0955%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_read (314 samples, 0.01%)</title><rect x="76.8987%" y="453" width="0.0131%" height="15" fill="rgb(243,53,5)" fg:x="1848338" fg:w="314"/><text x="77.1487%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (1,278 samples, 0.05%)</title><rect x="76.8707%" y="469" width="0.0532%" height="15" fill="rgb(227,56,16)" fg:x="1847664" fg:w="1278"/><text x="77.1207%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (290 samples, 0.01%)</title><rect x="76.9118%" y="453" width="0.0121%" height="15" fill="rgb(245,53,0)" fg:x="1848652" fg:w="290"/><text x="77.1618%" y="463.50"></text></g><g><title>_raw_write_lock (516 samples, 0.02%)</title><rect x="76.9349%" y="453" width="0.0215%" height="15" fill="rgb(216,170,35)" fg:x="1849207" fg:w="516"/><text x="77.1849%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,279 samples, 0.34%)</title><rect x="77.4927%" y="437" width="0.3444%" height="15" fill="rgb(211,200,8)" fg:x="1862615" fg:w="8279"/><text x="77.7427%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (21,944 samples, 0.91%)</title><rect x="76.9243%" y="469" width="0.9130%" height="15" fill="rgb(228,204,44)" fg:x="1848952" fg:w="21944"/><text x="77.1743%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (21,172 samples, 0.88%)</title><rect x="76.9564%" y="453" width="0.8808%" height="15" fill="rgb(214,121,17)" fg:x="1849724" fg:w="21172"/><text x="77.2064%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (3,535 samples, 0.15%)</title><rect x="77.8372%" y="469" width="0.1471%" height="15" fill="rgb(233,64,38)" fg:x="1870896" fg:w="3535"/><text x="78.0872%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (598 samples, 0.02%)</title><rect x="78.0072%" y="453" width="0.0249%" height="15" fill="rgb(253,54,19)" fg:x="1874980" fg:w="598"/><text x="78.2572%" y="463.50"></text></g><g><title>verify_parent_transid (465 samples, 0.02%)</title><rect x="78.0127%" y="437" width="0.0193%" height="15" fill="rgb(253,94,18)" fg:x="1875113" fg:w="465"/><text x="78.2627%" y="447.50"></text></g><g><title>btrfs_get_64 (726 samples, 0.03%)</title><rect x="78.0320%" y="453" width="0.0302%" height="15" fill="rgb(227,57,52)" fg:x="1875578" fg:w="726"/><text x="78.2820%" y="463.50"></text></g><g><title>btrfs_verify_level_key (284 samples, 0.01%)</title><rect x="78.0646%" y="453" width="0.0118%" height="15" fill="rgb(230,228,50)" fg:x="1876360" fg:w="284"/><text x="78.3146%" y="463.50"></text></g><g><title>__radix_tree_lookup (1,821 samples, 0.08%)</title><rect x="78.1465%" y="437" width="0.0758%" height="15" fill="rgb(217,205,27)" fg:x="1878329" fg:w="1821"/><text x="78.3965%" y="447.50"></text></g><g><title>mark_page_accessed (692 samples, 0.03%)</title><rect x="78.2365%" y="421" width="0.0288%" height="15" fill="rgb(252,71,50)" fg:x="1880493" fg:w="692"/><text x="78.4865%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,032 samples, 0.04%)</title><rect x="78.2227%" y="437" width="0.0429%" height="15" fill="rgb(209,86,4)" fg:x="1880162" fg:w="1032"/><text x="78.4727%" y="447.50"></text></g><g><title>find_extent_buffer (4,590 samples, 0.19%)</title><rect x="78.0764%" y="453" width="0.1910%" height="15" fill="rgb(229,94,0)" fg:x="1876644" fg:w="4590"/><text x="78.3264%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (7,462 samples, 0.31%)</title><rect x="77.9843%" y="469" width="0.3105%" height="15" fill="rgb(252,223,21)" fg:x="1874431" fg:w="7462"/><text x="78.2343%" y="479.50"></text></g><g><title>read_extent_buffer (659 samples, 0.03%)</title><rect x="78.2673%" y="453" width="0.0274%" height="15" fill="rgb(230,210,4)" fg:x="1881234" fg:w="659"/><text x="78.5173%" y="463.50"></text></g><g><title>alloc_extent_buffer (330 samples, 0.01%)</title><rect x="78.2979%" y="421" width="0.0137%" height="15" fill="rgb(240,149,38)" fg:x="1881968" fg:w="330"/><text x="78.5479%" y="431.50"></text></g><g><title>btrfs_add_delayed_tree_ref (262 samples, 0.01%)</title><rect x="78.3116%" y="421" width="0.0109%" height="15" fill="rgb(254,105,20)" fg:x="1882298" fg:w="262"/><text x="78.5616%" y="431.50"></text></g><g><title>btrfs_reserve_extent (355 samples, 0.01%)</title><rect x="78.3233%" y="421" width="0.0148%" height="15" fill="rgb(253,87,46)" fg:x="1882579" fg:w="355"/><text x="78.5733%" y="431.50"></text></g><g><title>find_free_extent (314 samples, 0.01%)</title><rect x="78.3250%" y="405" width="0.0131%" height="15" fill="rgb(253,116,33)" fg:x="1882620" fg:w="314"/><text x="78.5750%" y="415.50"></text></g><g><title>set_extent_bit (283 samples, 0.01%)</title><rect x="78.3401%" y="421" width="0.0118%" height="15" fill="rgb(229,198,5)" fg:x="1882982" fg:w="283"/><text x="78.5901%" y="431.50"></text></g><g><title>__set_extent_bit (277 samples, 0.01%)</title><rect x="78.3403%" y="405" width="0.0115%" height="15" fill="rgb(242,38,37)" fg:x="1882988" fg:w="277"/><text x="78.5903%" y="415.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,350 samples, 0.06%)</title><rect x="78.2962%" y="453" width="0.0562%" height="15" fill="rgb(242,69,53)" fg:x="1881928" fg:w="1350"/><text x="78.5462%" y="463.50"></text></g><g><title>btrfs_alloc_tree_block (1,344 samples, 0.06%)</title><rect x="78.2965%" y="437" width="0.0559%" height="15" fill="rgb(249,80,16)" fg:x="1881934" fg:w="1344"/><text x="78.5465%" y="447.50"></text></g><g><title>copy_for_split (631 samples, 0.03%)</title><rect x="78.3544%" y="453" width="0.0263%" height="15" fill="rgb(206,128,11)" fg:x="1883327" fg:w="631"/><text x="78.6044%" y="463.50"></text></g><g><title>__push_leaf_left (951 samples, 0.04%)</title><rect x="78.3829%" y="437" width="0.0396%" height="15" fill="rgb(212,35,20)" fg:x="1884012" fg:w="951"/><text x="78.6329%" y="447.50"></text></g><g><title>push_leaf_left (1,239 samples, 0.05%)</title><rect x="78.3811%" y="453" width="0.0515%" height="15" fill="rgb(236,79,13)" fg:x="1883967" fg:w="1239"/><text x="78.6311%" y="463.50"></text></g><g><title>split_leaf (3,364 samples, 0.14%)</title><rect x="78.2948%" y="469" width="0.1400%" height="15" fill="rgb(233,123,3)" fg:x="1881894" fg:w="3364"/><text x="78.5448%" y="479.50"></text></g><g><title>__list_del_entry_valid (284 samples, 0.01%)</title><rect x="78.4817%" y="405" width="0.0118%" height="15" fill="rgb(214,93,52)" fg:x="1886387" fg:w="284"/><text x="78.7317%" y="415.50"></text></g><g><title>_raw_spin_lock (581 samples, 0.02%)</title><rect x="78.5513%" y="389" width="0.0242%" height="15" fill="rgb(251,37,40)" fg:x="1888058" fg:w="581"/><text x="78.8013%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (393 samples, 0.02%)</title><rect x="78.5591%" y="373" width="0.0164%" height="15" fill="rgb(227,80,54)" fg:x="1888246" fg:w="393"/><text x="78.8091%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (480 samples, 0.02%)</title><rect x="78.5754%" y="389" width="0.0200%" height="15" fill="rgb(254,48,11)" fg:x="1888639" fg:w="480"/><text x="78.8254%" y="399.50"></text></g><g><title>available_idle_cpu (463 samples, 0.02%)</title><rect x="78.6392%" y="373" width="0.0193%" height="15" fill="rgb(235,193,26)" fg:x="1890171" fg:w="463"/><text x="78.8892%" y="383.50"></text></g><g><title>select_task_rq_fair (2,225 samples, 0.09%)</title><rect x="78.5977%" y="389" width="0.0926%" height="15" fill="rgb(229,99,21)" fg:x="1889175" fg:w="2225"/><text x="78.8477%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (447 samples, 0.02%)</title><rect x="78.6717%" y="373" width="0.0186%" height="15" fill="rgb(211,140,41)" fg:x="1890953" fg:w="447"/><text x="78.9217%" y="383.50"></text></g><g><title>update_curr (298 samples, 0.01%)</title><rect x="78.7755%" y="341" width="0.0124%" height="15" fill="rgb(240,227,30)" fg:x="1893447" fg:w="298"/><text x="79.0255%" y="351.50"></text></g><g><title>enqueue_entity (2,229 samples, 0.09%)</title><rect x="78.7264%" y="357" width="0.0927%" height="15" fill="rgb(215,224,45)" fg:x="1892267" fg:w="2229"/><text x="78.9764%" y="367.50"></text></g><g><title>update_load_avg (751 samples, 0.03%)</title><rect x="78.7879%" y="341" width="0.0312%" height="15" fill="rgb(206,123,31)" fg:x="1893745" fg:w="751"/><text x="79.0379%" y="351.50"></text></g><g><title>enqueue_task_fair (2,846 samples, 0.12%)</title><rect x="78.7071%" y="373" width="0.1184%" height="15" fill="rgb(210,138,16)" fg:x="1891803" fg:w="2846"/><text x="78.9571%" y="383.50"></text></g><g><title>ttwu_do_activate (5,713 samples, 0.24%)</title><rect x="78.6982%" y="389" width="0.2377%" height="15" fill="rgb(228,57,28)" fg:x="1891589" fg:w="5713"/><text x="78.9482%" y="399.50"></text></g><g><title>psi_task_change (2,649 samples, 0.11%)</title><rect x="78.8256%" y="373" width="0.1102%" height="15" fill="rgb(242,170,10)" fg:x="1894653" fg:w="2649"/><text x="79.0756%" y="383.50"></text></g><g><title>psi_group_change (2,340 samples, 0.10%)</title><rect x="78.8385%" y="357" width="0.0974%" height="15" fill="rgb(228,214,39)" fg:x="1894962" fg:w="2340"/><text x="79.0885%" y="367.50"></text></g><g><title>record_times (370 samples, 0.02%)</title><rect x="78.9205%" y="341" width="0.0154%" height="15" fill="rgb(218,179,33)" fg:x="1896932" fg:w="370"/><text x="79.1705%" y="351.50"></text></g><g><title>resched_curr (255 samples, 0.01%)</title><rect x="78.9493%" y="357" width="0.0106%" height="15" fill="rgb(235,193,39)" fg:x="1897625" fg:w="255"/><text x="79.1993%" y="367.50"></text></g><g><title>ttwu_do_wakeup (581 samples, 0.02%)</title><rect x="78.9358%" y="389" width="0.0242%" height="15" fill="rgb(219,221,36)" fg:x="1897302" fg:w="581"/><text x="79.1858%" y="399.50"></text></g><g><title>check_preempt_curr (525 samples, 0.02%)</title><rect x="78.9382%" y="373" width="0.0218%" height="15" fill="rgb(248,218,19)" fg:x="1897358" fg:w="525"/><text x="79.1882%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (306 samples, 0.01%)</title><rect x="78.9600%" y="389" width="0.0127%" height="15" fill="rgb(205,50,9)" fg:x="1897883" fg:w="306"/><text x="79.2100%" y="399.50"></text></g><g><title>__wake_up_common (12,543 samples, 0.52%)</title><rect x="78.4709%" y="437" width="0.5218%" height="15" fill="rgb(238,81,28)" fg:x="1886127" fg:w="12543"/><text x="78.7209%" y="447.50"></text></g><g><title>autoremove_wake_function (12,318 samples, 0.51%)</title><rect x="78.4803%" y="421" width="0.5125%" height="15" fill="rgb(235,110,19)" fg:x="1886352" fg:w="12318"/><text x="78.7303%" y="431.50"></text></g><g><title>try_to_wake_up (11,991 samples, 0.50%)</title><rect x="78.4939%" y="405" width="0.4989%" height="15" fill="rgb(214,7,14)" fg:x="1886679" fg:w="11991"/><text x="78.7439%" y="415.50"></text></g><g><title>update_rq_clock (481 samples, 0.02%)</title><rect x="78.9727%" y="389" width="0.0200%" height="15" fill="rgb(211,77,3)" fg:x="1898189" fg:w="481"/><text x="79.2227%" y="399.50"></text></g><g><title>__wake_up_common_lock (12,859 samples, 0.53%)</title><rect x="78.4685%" y="453" width="0.5350%" height="15" fill="rgb(229,5,9)" fg:x="1886069" fg:w="12859"/><text x="78.7185%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (491 samples, 0.02%)</title><rect x="79.0038%" y="453" width="0.0204%" height="15" fill="rgb(225,90,11)" fg:x="1898936" fg:w="491"/><text x="79.2538%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (335 samples, 0.01%)</title><rect x="79.0243%" y="453" width="0.0139%" height="15" fill="rgb(242,56,8)" fg:x="1899427" fg:w="335"/><text x="79.2743%" y="463.50"></text></g><g><title>btrfs_tree_unlock (314 samples, 0.01%)</title><rect x="79.0382%" y="453" width="0.0131%" height="15" fill="rgb(249,212,39)" fg:x="1899762" fg:w="314"/><text x="79.2882%" y="463.50"></text></g><g><title>btrfs_search_slot (106,680 samples, 4.44%)</title><rect x="74.6130%" y="485" width="4.4383%" height="15" fill="rgb(236,90,9)" fg:x="1793397" fg:w="106680"/><text x="74.8630%" y="495.50">btrfs..</text></g><g><title>unlock_up (14,787 samples, 0.62%)</title><rect x="78.4361%" y="469" width="0.6152%" height="15" fill="rgb(206,88,35)" fg:x="1885290" fg:w="14787"/><text x="78.6861%" y="479.50"></text></g><g><title>btrfs_get_32 (422 samples, 0.02%)</title><rect x="79.1162%" y="469" width="0.0176%" height="15" fill="rgb(205,126,30)" fg:x="1901638" fg:w="422"/><text x="79.3662%" y="479.50"></text></g><g><title>btrfs_get_token_32 (3,906 samples, 0.16%)</title><rect x="79.1338%" y="469" width="0.1625%" height="15" fill="rgb(230,176,12)" fg:x="1902060" fg:w="3906"/><text x="79.3838%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (579 samples, 0.02%)</title><rect x="79.2722%" y="453" width="0.0241%" height="15" fill="rgb(243,19,9)" fg:x="1905387" fg:w="579"/><text x="79.5222%" y="463.50"></text></g><g><title>btrfs_leaf_free_space (987 samples, 0.04%)</title><rect x="79.2963%" y="469" width="0.0411%" height="15" fill="rgb(245,171,17)" fg:x="1905966" fg:w="987"/><text x="79.5463%" y="479.50"></text></g><g><title>leaf_space_used (819 samples, 0.03%)</title><rect x="79.3033%" y="453" width="0.0341%" height="15" fill="rgb(227,52,21)" fg:x="1906134" fg:w="819"/><text x="79.5533%" y="463.50"></text></g><g><title>btrfs_get_32 (582 samples, 0.02%)</title><rect x="79.3132%" y="437" width="0.0242%" height="15" fill="rgb(238,69,14)" fg:x="1906371" fg:w="582"/><text x="79.5632%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (742 samples, 0.03%)</title><rect x="79.3374%" y="469" width="0.0309%" height="15" fill="rgb(241,156,39)" fg:x="1906953" fg:w="742"/><text x="79.5874%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (371 samples, 0.02%)</title><rect x="79.3528%" y="453" width="0.0154%" height="15" fill="rgb(212,227,28)" fg:x="1907324" fg:w="371"/><text x="79.6028%" y="463.50"></text></g><g><title>btrfs_set_token_32 (3,185 samples, 0.13%)</title><rect x="79.3682%" y="469" width="0.1325%" height="15" fill="rgb(209,118,27)" fg:x="1907695" fg:w="3185"/><text x="79.6182%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (580 samples, 0.02%)</title><rect x="79.4766%" y="453" width="0.0241%" height="15" fill="rgb(226,102,5)" fg:x="1910300" fg:w="580"/><text x="79.7266%" y="463.50"></text></g><g><title>memcpy_extent_buffer (768 samples, 0.03%)</title><rect x="79.5091%" y="469" width="0.0320%" height="15" fill="rgb(223,34,3)" fg:x="1911081" fg:w="768"/><text x="79.7591%" y="479.50"></text></g><g><title>memmove (408 samples, 0.02%)</title><rect x="79.5241%" y="453" width="0.0170%" height="15" fill="rgb(221,81,38)" fg:x="1911441" fg:w="408"/><text x="79.7741%" y="463.50"></text></g><g><title>memmove_extent_buffer (1,384 samples, 0.06%)</title><rect x="79.5411%" y="469" width="0.0576%" height="15" fill="rgb(236,219,28)" fg:x="1911849" fg:w="1384"/><text x="79.7911%" y="479.50"></text></g><g><title>memmove (862 samples, 0.04%)</title><rect x="79.5628%" y="453" width="0.0359%" height="15" fill="rgb(213,200,14)" fg:x="1912371" fg:w="862"/><text x="79.8128%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (120,538 samples, 5.01%)</title><rect x="74.6070%" y="501" width="5.0149%" height="15" fill="rgb(240,33,19)" fg:x="1793255" fg:w="120538"/><text x="74.8570%" y="511.50">btrfs_..</text></g><g><title>setup_items_for_insert (13,716 samples, 0.57%)</title><rect x="79.0513%" y="485" width="0.5706%" height="15" fill="rgb(233,113,27)" fg:x="1900077" fg:w="13716"/><text x="79.3013%" y="495.50"></text></g><g><title>write_extent_buffer (560 samples, 0.02%)</title><rect x="79.5986%" y="469" width="0.0233%" height="15" fill="rgb(220,221,18)" fg:x="1913233" fg:w="560"/><text x="79.8486%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (500 samples, 0.02%)</title><rect x="79.6219%" y="501" width="0.0208%" height="15" fill="rgb(238,92,8)" fg:x="1913793" fg:w="500"/><text x="79.8719%" y="511.50"></text></g><g><title>set_extent_buffer_dirty (367 samples, 0.02%)</title><rect x="79.6275%" y="485" width="0.0153%" height="15" fill="rgb(222,164,16)" fg:x="1913926" fg:w="367"/><text x="79.8775%" y="495.50"></text></g><g><title>_raw_spin_lock (473 samples, 0.02%)</title><rect x="79.7113%" y="485" width="0.0197%" height="15" fill="rgb(241,119,3)" fg:x="1915941" fg:w="473"/><text x="79.9613%" y="495.50"></text></g><g><title>_raw_spin_lock (467 samples, 0.02%)</title><rect x="79.7965%" y="437" width="0.0194%" height="15" fill="rgb(241,44,8)" fg:x="1917989" fg:w="467"/><text x="80.0465%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,567 samples, 0.07%)</title><rect x="79.7510%" y="453" width="0.0652%" height="15" fill="rgb(230,36,40)" fg:x="1916894" fg:w="1567"/><text x="80.0010%" y="463.50"></text></g><g><title>btrfs_free_path (2,359 samples, 0.10%)</title><rect x="79.7321%" y="485" width="0.0981%" height="15" fill="rgb(243,16,36)" fg:x="1916440" fg:w="2359"/><text x="79.9821%" y="495.50"></text></g><g><title>btrfs_release_path (2,341 samples, 0.10%)</title><rect x="79.7328%" y="469" width="0.0974%" height="15" fill="rgb(231,4,26)" fg:x="1916458" fg:w="2341"/><text x="79.9828%" y="479.50"></text></g><g><title>release_extent_buffer (338 samples, 0.01%)</title><rect x="79.8162%" y="453" width="0.0141%" height="15" fill="rgb(240,9,31)" fg:x="1918461" fg:w="338"/><text x="80.0662%" y="463.50"></text></g><g><title>btrfs_get_32 (296 samples, 0.01%)</title><rect x="79.8302%" y="485" width="0.0123%" height="15" fill="rgb(207,173,15)" fg:x="1918799" fg:w="296"/><text x="80.0802%" y="495.50"></text></g><g><title>_raw_read_lock (504 samples, 0.02%)</title><rect x="79.9642%" y="421" width="0.0210%" height="15" fill="rgb(224,192,53)" fg:x="1922019" fg:w="504"/><text x="80.2142%" y="431.50"></text></g><g><title>finish_wait (2,165 samples, 0.09%)</title><rect x="79.9871%" y="421" width="0.0901%" height="15" fill="rgb(223,67,28)" fg:x="1922571" fg:w="2165"/><text x="80.2371%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (2,061 samples, 0.09%)</title><rect x="79.9915%" y="405" width="0.0857%" height="15" fill="rgb(211,20,47)" fg:x="1922675" fg:w="2061"/><text x="80.2415%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,967 samples, 0.08%)</title><rect x="79.9954%" y="389" width="0.0818%" height="15" fill="rgb(240,228,2)" fg:x="1922769" fg:w="1967"/><text x="80.2454%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (5,402 samples, 0.22%)</title><rect x="80.1000%" y="405" width="0.2247%" height="15" fill="rgb(248,151,12)" fg:x="1925283" fg:w="5402"/><text x="80.3500%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,113 samples, 0.21%)</title><rect x="80.1120%" y="389" width="0.2127%" height="15" fill="rgb(244,8,39)" fg:x="1925572" fg:w="5113"/><text x="80.3620%" y="399.50"></text></g><g><title>prepare_to_wait_event (6,040 samples, 0.25%)</title><rect x="80.0776%" y="421" width="0.2513%" height="15" fill="rgb(222,26,8)" fg:x="1924746" fg:w="6040"/><text x="80.3276%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (7,015 samples, 0.29%)</title><rect x="80.3289%" y="421" width="0.2919%" height="15" fill="rgb(213,106,44)" fg:x="1930786" fg:w="7015"/><text x="80.5789%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,917 samples, 0.20%)</title><rect x="80.4162%" y="405" width="0.2046%" height="15" fill="rgb(214,129,20)" fg:x="1932884" fg:w="4917"/><text x="80.6662%" y="415.50"></text></g><g><title>update_curr (409 samples, 0.02%)</title><rect x="80.6657%" y="357" width="0.0170%" height="15" fill="rgb(212,32,13)" fg:x="1938881" fg:w="409"/><text x="80.9157%" y="367.50"></text></g><g><title>dequeue_entity (1,085 samples, 0.05%)</title><rect x="80.6516%" y="373" width="0.0451%" height="15" fill="rgb(208,168,33)" fg:x="1938543" fg:w="1085"/><text x="80.9016%" y="383.50"></text></g><g><title>update_load_avg (338 samples, 0.01%)</title><rect x="80.6827%" y="357" width="0.0141%" height="15" fill="rgb(231,207,8)" fg:x="1939290" fg:w="338"/><text x="80.9327%" y="367.50"></text></g><g><title>dequeue_task_fair (1,262 samples, 0.05%)</title><rect x="80.6466%" y="389" width="0.0525%" height="15" fill="rgb(235,219,23)" fg:x="1938422" fg:w="1262"/><text x="80.8966%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (978 samples, 0.04%)</title><rect x="80.7068%" y="373" width="0.0407%" height="15" fill="rgb(226,216,26)" fg:x="1939868" fg:w="978"/><text x="80.9568%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (930 samples, 0.04%)</title><rect x="80.7088%" y="357" width="0.0387%" height="15" fill="rgb(239,137,16)" fg:x="1939916" fg:w="930"/><text x="80.9588%" y="367.50"></text></g><g><title>native_write_msr (915 samples, 0.04%)</title><rect x="80.7094%" y="341" width="0.0381%" height="15" fill="rgb(207,12,36)" fg:x="1939931" fg:w="915"/><text x="80.9594%" y="351.50"></text></g><g><title>finish_task_switch (1,197 samples, 0.05%)</title><rect x="80.6991%" y="389" width="0.0498%" height="15" fill="rgb(210,214,24)" fg:x="1939684" fg:w="1197"/><text x="80.9491%" y="399.50"></text></g><g><title>pick_next_task_idle (258 samples, 0.01%)</title><rect x="80.7565%" y="389" width="0.0107%" height="15" fill="rgb(206,56,30)" fg:x="1941063" fg:w="258"/><text x="81.0065%" y="399.50"></text></g><g><title>psi_task_change (961 samples, 0.04%)</title><rect x="80.7672%" y="389" width="0.0400%" height="15" fill="rgb(228,143,26)" fg:x="1941321" fg:w="961"/><text x="81.0172%" y="399.50"></text></g><g><title>psi_group_change (795 samples, 0.03%)</title><rect x="80.7741%" y="373" width="0.0331%" height="15" fill="rgb(216,218,46)" fg:x="1941487" fg:w="795"/><text x="81.0241%" y="383.50"></text></g><g><title>__schedule (4,675 samples, 0.19%)</title><rect x="80.6235%" y="405" width="0.1945%" height="15" fill="rgb(206,6,19)" fg:x="1937866" fg:w="4675"/><text x="80.8735%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (21,039 samples, 0.88%)</title><rect x="79.9427%" y="437" width="0.8753%" height="15" fill="rgb(239,177,51)" fg:x="1921503" fg:w="21039"/><text x="80.1927%" y="447.50"></text></g><g><title>schedule (4,741 samples, 0.20%)</title><rect x="80.6208%" y="421" width="0.1972%" height="15" fill="rgb(216,55,25)" fg:x="1937801" fg:w="4741"/><text x="80.8708%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (22,116 samples, 0.92%)</title><rect x="79.9393%" y="453" width="0.9201%" height="15" fill="rgb(231,163,29)" fg:x="1921420" fg:w="22116"/><text x="80.1893%" y="463.50"></text></g><g><title>btrfs_root_node (994 samples, 0.04%)</title><rect x="80.8180%" y="437" width="0.0414%" height="15" fill="rgb(232,149,50)" fg:x="1942542" fg:w="994"/><text x="81.0680%" y="447.50"></text></g><g><title>finish_wait (1,203 samples, 0.05%)</title><rect x="80.8977%" y="437" width="0.0500%" height="15" fill="rgb(223,142,48)" fg:x="1944458" fg:w="1203"/><text x="81.1477%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (1,097 samples, 0.05%)</title><rect x="80.9021%" y="421" width="0.0456%" height="15" fill="rgb(245,83,23)" fg:x="1944564" fg:w="1097"/><text x="81.1521%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (959 samples, 0.04%)</title><rect x="80.9079%" y="405" width="0.0399%" height="15" fill="rgb(224,63,2)" fg:x="1944702" fg:w="959"/><text x="81.1579%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,107 samples, 0.17%)</title><rect x="80.9819%" y="421" width="0.1709%" height="15" fill="rgb(218,65,53)" fg:x="1946480" fg:w="4107"/><text x="81.2319%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,516 samples, 0.15%)</title><rect x="81.0064%" y="405" width="0.1463%" height="15" fill="rgb(221,84,29)" fg:x="1947071" fg:w="3516"/><text x="81.2564%" y="415.50"></text></g><g><title>prepare_to_wait_event (5,025 samples, 0.21%)</title><rect x="80.9502%" y="437" width="0.2091%" height="15" fill="rgb(234,0,32)" fg:x="1945719" fg:w="5025"/><text x="81.2002%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (4,568 samples, 0.19%)</title><rect x="81.1593%" y="437" width="0.1900%" height="15" fill="rgb(206,20,16)" fg:x="1950744" fg:w="4568"/><text x="81.4093%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,280 samples, 0.09%)</title><rect x="81.2545%" y="421" width="0.0949%" height="15" fill="rgb(244,172,18)" fg:x="1953032" fg:w="2280"/><text x="81.5045%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (427 samples, 0.02%)</title><rect x="81.3832%" y="405" width="0.0178%" height="15" fill="rgb(254,133,1)" fg:x="1956127" fg:w="427"/><text x="81.6332%" y="415.50"></text></g><g><title>update_curr (883 samples, 0.04%)</title><rect x="81.4492%" y="373" width="0.0367%" height="15" fill="rgb(222,206,41)" fg:x="1957712" fg:w="883"/><text x="81.6992%" y="383.50"></text></g><g><title>__update_load_avg_se (261 samples, 0.01%)</title><rect x="81.5040%" y="357" width="0.0109%" height="15" fill="rgb(212,3,42)" fg:x="1959030" fg:w="261"/><text x="81.7540%" y="367.50"></text></g><g><title>dequeue_entity (2,325 samples, 0.10%)</title><rect x="81.4186%" y="389" width="0.0967%" height="15" fill="rgb(241,11,4)" fg:x="1956978" fg:w="2325"/><text x="81.6686%" y="399.50"></text></g><g><title>update_load_avg (708 samples, 0.03%)</title><rect x="81.4859%" y="373" width="0.0295%" height="15" fill="rgb(205,19,26)" fg:x="1958595" fg:w="708"/><text x="81.7359%" y="383.50"></text></g><g><title>dequeue_task_fair (2,742 samples, 0.11%)</title><rect x="81.4067%" y="405" width="0.1141%" height="15" fill="rgb(210,179,32)" fg:x="1956691" fg:w="2742"/><text x="81.6567%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (2,759 samples, 0.11%)</title><rect x="81.5423%" y="389" width="0.1148%" height="15" fill="rgb(227,116,49)" fg:x="1959951" fg:w="2759"/><text x="81.7923%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,681 samples, 0.11%)</title><rect x="81.5456%" y="373" width="0.1115%" height="15" fill="rgb(211,146,6)" fg:x="1960029" fg:w="2681"/><text x="81.7956%" y="383.50"></text></g><g><title>native_write_msr (2,643 samples, 0.11%)</title><rect x="81.5471%" y="357" width="0.1100%" height="15" fill="rgb(219,44,39)" fg:x="1960067" fg:w="2643"/><text x="81.7971%" y="367.50"></text></g><g><title>finish_task_switch (3,439 samples, 0.14%)</title><rect x="81.5208%" y="405" width="0.1431%" height="15" fill="rgb(234,128,11)" fg:x="1959433" fg:w="3439"/><text x="81.7708%" y="415.50"></text></g><g><title>newidle_balance (254 samples, 0.01%)</title><rect x="81.6700%" y="389" width="0.0106%" height="15" fill="rgb(220,183,53)" fg:x="1963019" fg:w="254"/><text x="81.9200%" y="399.50"></text></g><g><title>pick_next_task_fair (472 samples, 0.02%)</title><rect x="81.6642%" y="405" width="0.0196%" height="15" fill="rgb(213,219,32)" fg:x="1962881" fg:w="472"/><text x="81.9142%" y="415.50"></text></g><g><title>pick_next_task_idle (482 samples, 0.02%)</title><rect x="81.6838%" y="405" width="0.0201%" height="15" fill="rgb(232,156,16)" fg:x="1963353" fg:w="482"/><text x="81.9338%" y="415.50"></text></g><g><title>__update_idle_core (405 samples, 0.02%)</title><rect x="81.6871%" y="389" width="0.0168%" height="15" fill="rgb(246,135,34)" fg:x="1963430" fg:w="405"/><text x="81.9371%" y="399.50"></text></g><g><title>psi_task_change (2,023 samples, 0.08%)</title><rect x="81.7039%" y="405" width="0.0842%" height="15" fill="rgb(241,99,0)" fg:x="1963835" fg:w="2023"/><text x="81.9539%" y="415.50"></text></g><g><title>psi_group_change (1,682 samples, 0.07%)</title><rect x="81.7181%" y="389" width="0.0700%" height="15" fill="rgb(222,103,45)" fg:x="1964176" fg:w="1682"/><text x="81.9681%" y="399.50"></text></g><g><title>record_times (314 samples, 0.01%)</title><rect x="81.7750%" y="373" width="0.0131%" height="15" fill="rgb(212,57,4)" fg:x="1965544" fg:w="314"/><text x="82.0250%" y="383.50"></text></g><g><title>__btrfs_tree_lock (22,964 samples, 0.96%)</title><rect x="80.8594%" y="453" width="0.9554%" height="15" fill="rgb(215,68,47)" fg:x="1943536" fg:w="22964"/><text x="81.1094%" y="463.50"></text></g><g><title>schedule (11,188 samples, 0.47%)</title><rect x="81.3493%" y="437" width="0.4655%" height="15" fill="rgb(230,84,2)" fg:x="1955312" fg:w="11188"/><text x="81.5993%" y="447.50"></text></g><g><title>__schedule (11,065 samples, 0.46%)</title><rect x="81.3544%" y="421" width="0.4604%" height="15" fill="rgb(220,102,14)" fg:x="1955435" fg:w="11065"/><text x="81.6044%" y="431.50"></text></g><g><title>update_rq_clock (246 samples, 0.01%)</title><rect x="81.8045%" y="405" width="0.0102%" height="15" fill="rgb(240,10,32)" fg:x="1966254" fg:w="246"/><text x="82.0545%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (990 samples, 0.04%)</title><rect x="81.8224%" y="453" width="0.0412%" height="15" fill="rgb(215,47,27)" fg:x="1966683" fg:w="990"/><text x="82.0724%" y="463.50"></text></g><g><title>leaf_space_used (740 samples, 0.03%)</title><rect x="81.8328%" y="437" width="0.0308%" height="15" fill="rgb(233,188,43)" fg:x="1966933" fg:w="740"/><text x="82.0828%" y="447.50"></text></g><g><title>btrfs_get_32 (533 samples, 0.02%)</title><rect x="81.8414%" y="421" width="0.0222%" height="15" fill="rgb(253,190,1)" fg:x="1967140" fg:w="533"/><text x="82.0914%" y="431.50"></text></g><g><title>btrfs_set_lock_blocking_read (243 samples, 0.01%)</title><rect x="81.8793%" y="437" width="0.0101%" height="15" fill="rgb(206,114,52)" fg:x="1968051" fg:w="243"/><text x="82.1293%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (496 samples, 0.02%)</title><rect x="81.8715%" y="453" width="0.0206%" height="15" fill="rgb(233,120,37)" fg:x="1967864" fg:w="496"/><text x="82.1215%" y="463.50"></text></g><g><title>_raw_write_lock (522 samples, 0.02%)</title><rect x="81.9014%" y="437" width="0.0217%" height="15" fill="rgb(214,52,39)" fg:x="1968581" fg:w="522"/><text x="82.1514%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (14,263 samples, 0.59%)</title><rect x="81.8926%" y="453" width="0.5934%" height="15" fill="rgb(223,80,29)" fg:x="1968370" fg:w="14263"/><text x="82.1426%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (13,529 samples, 0.56%)</title><rect x="81.9231%" y="437" width="0.5629%" height="15" fill="rgb(230,101,40)" fg:x="1969104" fg:w="13529"/><text x="82.1731%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,091 samples, 0.17%)</title><rect x="82.3158%" y="421" width="0.1702%" height="15" fill="rgb(219,211,8)" fg:x="1978542" fg:w="4091"/><text x="82.5658%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (3,595 samples, 0.15%)</title><rect x="82.4861%" y="453" width="0.1496%" height="15" fill="rgb(252,126,28)" fg:x="1982635" fg:w="3595"/><text x="82.7361%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (684 samples, 0.03%)</title><rect x="82.6608%" y="437" width="0.0285%" height="15" fill="rgb(215,56,38)" fg:x="1986834" fg:w="684"/><text x="82.9108%" y="447.50"></text></g><g><title>verify_parent_transid (545 samples, 0.02%)</title><rect x="82.6665%" y="421" width="0.0227%" height="15" fill="rgb(249,55,44)" fg:x="1986973" fg:w="545"/><text x="82.9165%" y="431.50"></text></g><g><title>btrfs_get_64 (691 samples, 0.03%)</title><rect x="82.6892%" y="437" width="0.0287%" height="15" fill="rgb(220,221,32)" fg:x="1987518" fg:w="691"/><text x="82.9392%" y="447.50"></text></g><g><title>__radix_tree_lookup (2,058 samples, 0.09%)</title><rect x="82.8127%" y="421" width="0.0856%" height="15" fill="rgb(212,216,41)" fg:x="1990485" fg:w="2058"/><text x="83.0627%" y="431.50"></text></g><g><title>mark_page_accessed (785 samples, 0.03%)</title><rect x="82.9131%" y="405" width="0.0327%" height="15" fill="rgb(228,213,43)" fg:x="1992900" fg:w="785"/><text x="83.1631%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,132 samples, 0.05%)</title><rect x="82.8992%" y="421" width="0.0471%" height="15" fill="rgb(211,31,26)" fg:x="1992566" fg:w="1132"/><text x="83.1492%" y="431.50"></text></g><g><title>find_extent_buffer (5,261 samples, 0.22%)</title><rect x="82.7288%" y="437" width="0.2189%" height="15" fill="rgb(229,202,19)" fg:x="1988470" fg:w="5261"/><text x="82.9788%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (8,176 samples, 0.34%)</title><rect x="82.6356%" y="453" width="0.3402%" height="15" fill="rgb(229,105,46)" fg:x="1986230" fg:w="8176"/><text x="82.8856%" y="463.50"></text></g><g><title>read_extent_buffer (675 samples, 0.03%)</title><rect x="82.9477%" y="437" width="0.0281%" height="15" fill="rgb(235,108,1)" fg:x="1993731" fg:w="675"/><text x="83.1977%" y="447.50"></text></g><g><title>alloc_extent_buffer (433 samples, 0.02%)</title><rect x="82.9793%" y="405" width="0.0180%" height="15" fill="rgb(245,111,35)" fg:x="1994490" fg:w="433"/><text x="83.2293%" y="415.50"></text></g><g><title>btrfs_add_delayed_tree_ref (288 samples, 0.01%)</title><rect x="82.9973%" y="405" width="0.0120%" height="15" fill="rgb(219,185,31)" fg:x="1994924" fg:w="288"/><text x="83.2473%" y="415.50"></text></g><g><title>btrfs_reserve_extent (418 samples, 0.02%)</title><rect x="83.0105%" y="405" width="0.0174%" height="15" fill="rgb(214,4,43)" fg:x="1995241" fg:w="418"/><text x="83.2605%" y="415.50"></text></g><g><title>find_free_extent (364 samples, 0.02%)</title><rect x="83.0128%" y="389" width="0.0151%" height="15" fill="rgb(235,227,40)" fg:x="1995295" fg:w="364"/><text x="83.2628%" y="399.50"></text></g><g><title>set_extent_bit (325 samples, 0.01%)</title><rect x="83.0309%" y="405" width="0.0135%" height="15" fill="rgb(230,88,30)" fg:x="1995730" fg:w="325"/><text x="83.2809%" y="415.50"></text></g><g><title>__set_extent_bit (322 samples, 0.01%)</title><rect x="83.0310%" y="389" width="0.0134%" height="15" fill="rgb(216,217,1)" fg:x="1995733" fg:w="322"/><text x="83.2810%" y="399.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,620 samples, 0.07%)</title><rect x="82.9777%" y="437" width="0.0674%" height="15" fill="rgb(248,139,50)" fg:x="1994452" fg:w="1620"/><text x="83.2277%" y="447.50"></text></g><g><title>btrfs_alloc_tree_block (1,617 samples, 0.07%)</title><rect x="82.9778%" y="421" width="0.0673%" height="15" fill="rgb(233,1,21)" fg:x="1994455" fg:w="1617"/><text x="83.2278%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (257 samples, 0.01%)</title><rect x="83.0539%" y="421" width="0.0107%" height="15" fill="rgb(215,183,12)" fg:x="1996284" fg:w="257"/><text x="83.3039%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (243 samples, 0.01%)</title><rect x="83.0545%" y="405" width="0.0101%" height="15" fill="rgb(229,104,42)" fg:x="1996298" fg:w="243"/><text x="83.3045%" y="415.50"></text></g><g><title>copy_for_split (712 samples, 0.03%)</title><rect x="83.0468%" y="437" width="0.0296%" height="15" fill="rgb(243,34,48)" fg:x="1996114" fg:w="712"/><text x="83.2968%" y="447.50"></text></g><g><title>btrfs_get_token_32 (271 samples, 0.01%)</title><rect x="83.0897%" y="405" width="0.0113%" height="15" fill="rgb(239,11,44)" fg:x="1997144" fg:w="271"/><text x="83.3397%" y="415.50"></text></g><g><title>btrfs_set_token_32 (278 samples, 0.01%)</title><rect x="83.1019%" y="405" width="0.0116%" height="15" fill="rgb(231,98,35)" fg:x="1997438" fg:w="278"/><text x="83.3519%" y="415.50"></text></g><g><title>__push_leaf_left (1,198 samples, 0.05%)</title><rect x="83.0787%" y="421" width="0.0498%" height="15" fill="rgb(233,28,25)" fg:x="1996879" fg:w="1198"/><text x="83.3287%" y="431.50"></text></g><g><title>push_leaf_left (1,476 samples, 0.06%)</title><rect x="83.0765%" y="437" width="0.0614%" height="15" fill="rgb(234,123,11)" fg:x="1996827" fg:w="1476"/><text x="83.3265%" y="447.50"></text></g><g><title>split_leaf (3,935 samples, 0.16%)</title><rect x="82.9759%" y="453" width="0.1637%" height="15" fill="rgb(220,69,3)" fg:x="1994409" fg:w="3935"/><text x="83.2259%" y="463.50"></text></g><g><title>__list_del_entry_valid (328 samples, 0.01%)</title><rect x="83.1882%" y="389" width="0.0136%" height="15" fill="rgb(214,64,36)" fg:x="1999511" fg:w="328"/><text x="83.4382%" y="399.50"></text></g><g><title>_raw_spin_lock (560 samples, 0.02%)</title><rect x="83.2569%" y="373" width="0.0233%" height="15" fill="rgb(211,138,32)" fg:x="2001164" fg:w="560"/><text x="83.5069%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (378 samples, 0.02%)</title><rect x="83.2645%" y="357" width="0.0157%" height="15" fill="rgb(213,118,47)" fg:x="2001346" fg:w="378"/><text x="83.5145%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (525 samples, 0.02%)</title><rect x="83.2802%" y="373" width="0.0218%" height="15" fill="rgb(243,124,49)" fg:x="2001724" fg:w="525"/><text x="83.5302%" y="383.50"></text></g><g><title>available_idle_cpu (498 samples, 0.02%)</title><rect x="83.3479%" y="357" width="0.0207%" height="15" fill="rgb(221,30,28)" fg:x="2003350" fg:w="498"/><text x="83.5979%" y="367.50"></text></g><g><title>select_task_rq_fair (2,351 samples, 0.10%)</title><rect x="83.3040%" y="373" width="0.0978%" height="15" fill="rgb(246,37,13)" fg:x="2002296" fg:w="2351"/><text x="83.5540%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (480 samples, 0.02%)</title><rect x="83.3819%" y="357" width="0.0200%" height="15" fill="rgb(249,66,14)" fg:x="2004167" fg:w="480"/><text x="83.6319%" y="367.50"></text></g><g><title>update_curr (322 samples, 0.01%)</title><rect x="83.4859%" y="325" width="0.0134%" height="15" fill="rgb(213,166,5)" fg:x="2006668" fg:w="322"/><text x="83.7359%" y="335.50"></text></g><g><title>enqueue_entity (2,306 samples, 0.10%)</title><rect x="83.4372%" y="341" width="0.0959%" height="15" fill="rgb(221,66,24)" fg:x="2005497" fg:w="2306"/><text x="83.6872%" y="351.50"></text></g><g><title>update_load_avg (813 samples, 0.03%)</title><rect x="83.4993%" y="325" width="0.0338%" height="15" fill="rgb(210,132,17)" fg:x="2006990" fg:w="813"/><text x="83.7493%" y="335.50"></text></g><g><title>enqueue_task_fair (2,882 samples, 0.12%)</title><rect x="83.4197%" y="357" width="0.1199%" height="15" fill="rgb(243,202,5)" fg:x="2005075" fg:w="2882"/><text x="83.6697%" y="367.50"></text></g><g><title>ttwu_do_activate (5,828 samples, 0.24%)</title><rect x="83.4093%" y="373" width="0.2425%" height="15" fill="rgb(233,70,48)" fg:x="2004827" fg:w="5828"/><text x="83.6593%" y="383.50"></text></g><g><title>psi_task_change (2,691 samples, 0.11%)</title><rect x="83.5399%" y="357" width="0.1120%" height="15" fill="rgb(238,41,26)" fg:x="2007964" fg:w="2691"/><text x="83.7899%" y="367.50"></text></g><g><title>psi_group_change (2,390 samples, 0.10%)</title><rect x="83.5524%" y="341" width="0.0994%" height="15" fill="rgb(241,19,31)" fg:x="2008265" fg:w="2390"/><text x="83.8024%" y="351.50"></text></g><g><title>record_times (378 samples, 0.02%)</title><rect x="83.6361%" y="325" width="0.0157%" height="15" fill="rgb(214,76,10)" fg:x="2010277" fg:w="378"/><text x="83.8861%" y="335.50"></text></g><g><title>sched_clock_cpu (258 samples, 0.01%)</title><rect x="83.6411%" y="309" width="0.0107%" height="15" fill="rgb(254,202,22)" fg:x="2010397" fg:w="258"/><text x="83.8911%" y="319.50"></text></g><g><title>ttwu_do_wakeup (621 samples, 0.03%)</title><rect x="83.6518%" y="373" width="0.0258%" height="15" fill="rgb(214,72,24)" fg:x="2010655" fg:w="621"/><text x="83.9018%" y="383.50"></text></g><g><title>check_preempt_curr (546 samples, 0.02%)</title><rect x="83.6549%" y="357" width="0.0227%" height="15" fill="rgb(221,92,46)" fg:x="2010730" fg:w="546"/><text x="83.9049%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (285 samples, 0.01%)</title><rect x="83.6777%" y="373" width="0.0119%" height="15" fill="rgb(246,13,50)" fg:x="2011276" fg:w="285"/><text x="83.9277%" y="383.50"></text></g><g><title>__wake_up_common (12,822 samples, 0.53%)</title><rect x="83.1777%" y="421" width="0.5334%" height="15" fill="rgb(240,165,38)" fg:x="1999260" fg:w="12822"/><text x="83.4277%" y="431.50"></text></g><g><title>autoremove_wake_function (12,621 samples, 0.53%)</title><rect x="83.1861%" y="405" width="0.5251%" height="15" fill="rgb(241,24,51)" fg:x="1999461" fg:w="12621"/><text x="83.4361%" y="415.50"></text></g><g><title>try_to_wake_up (12,227 samples, 0.51%)</title><rect x="83.2025%" y="389" width="0.5087%" height="15" fill="rgb(227,51,44)" fg:x="1999855" fg:w="12227"/><text x="83.4525%" y="399.50"></text></g><g><title>update_rq_clock (521 samples, 0.02%)</title><rect x="83.6895%" y="373" width="0.0217%" height="15" fill="rgb(231,121,3)" fg:x="2011561" fg:w="521"/><text x="83.9395%" y="383.50"></text></g><g><title>__wake_up_common_lock (13,111 samples, 0.55%)</title><rect x="83.1755%" y="437" width="0.5455%" height="15" fill="rgb(245,3,41)" fg:x="1999207" fg:w="13111"/><text x="83.4255%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (476 samples, 0.02%)</title><rect x="83.7211%" y="437" width="0.0198%" height="15" fill="rgb(214,13,26)" fg:x="2012321" fg:w="476"/><text x="83.9711%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (366 samples, 0.02%)</title><rect x="83.7409%" y="437" width="0.0152%" height="15" fill="rgb(252,75,11)" fg:x="2012797" fg:w="366"/><text x="83.9909%" y="447.50"></text></g><g><title>btrfs_search_slot (94,104 samples, 3.92%)</title><rect x="79.8557%" y="469" width="3.9151%" height="15" fill="rgb(218,226,17)" fg:x="1919411" fg:w="94104"/><text x="80.1057%" y="479.50">btrf..</text></g><g><title>unlock_up (15,126 samples, 0.63%)</title><rect x="83.1415%" y="453" width="0.6293%" height="15" fill="rgb(248,89,38)" fg:x="1998389" fg:w="15126"/><text x="83.3915%" y="463.50"></text></g><g><title>btrfs_tree_unlock (352 samples, 0.01%)</title><rect x="83.7562%" y="437" width="0.0146%" height="15" fill="rgb(237,73,46)" fg:x="2013163" fg:w="352"/><text x="84.0062%" y="447.50"></text></g><g><title>btrfs_get_32 (447 samples, 0.02%)</title><rect x="83.8480%" y="453" width="0.0186%" height="15" fill="rgb(242,78,33)" fg:x="2015371" fg:w="447"/><text x="84.0980%" y="463.50"></text></g><g><title>btrfs_get_token_32 (4,124 samples, 0.17%)</title><rect x="83.8666%" y="453" width="0.1716%" height="15" fill="rgb(235,60,3)" fg:x="2015818" fg:w="4124"/><text x="84.1166%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (563 samples, 0.02%)</title><rect x="84.0148%" y="437" width="0.0234%" height="15" fill="rgb(216,172,19)" fg:x="2019379" fg:w="563"/><text x="84.2648%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (1,039 samples, 0.04%)</title><rect x="84.0382%" y="453" width="0.0432%" height="15" fill="rgb(227,6,42)" fg:x="2019942" fg:w="1039"/><text x="84.2882%" y="463.50"></text></g><g><title>leaf_space_used (853 samples, 0.04%)</title><rect x="84.0459%" y="437" width="0.0355%" height="15" fill="rgb(223,207,42)" fg:x="2020128" fg:w="853"/><text x="84.2959%" y="447.50"></text></g><g><title>btrfs_get_32 (605 samples, 0.03%)</title><rect x="84.0562%" y="421" width="0.0252%" height="15" fill="rgb(246,138,30)" fg:x="2020376" fg:w="605"/><text x="84.3062%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (839 samples, 0.03%)</title><rect x="84.0814%" y="453" width="0.0349%" height="15" fill="rgb(251,199,47)" fg:x="2020981" fg:w="839"/><text x="84.3314%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (367 samples, 0.02%)</title><rect x="84.1011%" y="437" width="0.0153%" height="15" fill="rgb(228,218,44)" fg:x="2021453" fg:w="367"/><text x="84.3511%" y="447.50"></text></g><g><title>btrfs_set_token_32 (3,263 samples, 0.14%)</title><rect x="84.1163%" y="453" width="0.1358%" height="15" fill="rgb(220,68,6)" fg:x="2021820" fg:w="3263"/><text x="84.3663%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (612 samples, 0.03%)</title><rect x="84.2266%" y="437" width="0.0255%" height="15" fill="rgb(240,60,26)" fg:x="2024471" fg:w="612"/><text x="84.4766%" y="447.50"></text></g><g><title>memcpy_extent_buffer (378 samples, 0.02%)</title><rect x="84.2617%" y="453" width="0.0157%" height="15" fill="rgb(211,200,19)" fg:x="2025315" fg:w="378"/><text x="84.5117%" y="463.50"></text></g><g><title>memmove_extent_buffer (1,658 samples, 0.07%)</title><rect x="84.2775%" y="453" width="0.0690%" height="15" fill="rgb(242,145,30)" fg:x="2025693" fg:w="1658"/><text x="84.5275%" y="463.50"></text></g><g><title>memmove (901 samples, 0.04%)</title><rect x="84.3090%" y="437" width="0.0375%" height="15" fill="rgb(225,64,13)" fg:x="2026450" fg:w="901"/><text x="84.5590%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (109,100 samples, 4.54%)</title><rect x="79.8497%" y="485" width="4.5390%" height="15" fill="rgb(218,103,35)" fg:x="1919267" fg:w="109100"/><text x="80.0997%" y="495.50">btrfs..</text></g><g><title>setup_items_for_insert (14,852 samples, 0.62%)</title><rect x="83.7708%" y="469" width="0.6179%" height="15" fill="rgb(216,93,46)" fg:x="2013515" fg:w="14852"/><text x="84.0208%" y="479.50"></text></g><g><title>write_extent_buffer (1,016 samples, 0.04%)</title><rect x="84.3464%" y="453" width="0.0423%" height="15" fill="rgb(225,159,27)" fg:x="2027351" fg:w="1016"/><text x="84.5964%" y="463.50"></text></g><g><title>btrfs_mark_buffer_dirty (534 samples, 0.02%)</title><rect x="84.3887%" y="485" width="0.0222%" height="15" fill="rgb(225,204,11)" fg:x="2028367" fg:w="534"/><text x="84.6387%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (361 samples, 0.02%)</title><rect x="84.3959%" y="469" width="0.0150%" height="15" fill="rgb(205,56,4)" fg:x="2028540" fg:w="361"/><text x="84.6459%" y="479.50"></text></g><g><title>btrfs_set_16 (357 samples, 0.01%)</title><rect x="84.4109%" y="485" width="0.0149%" height="15" fill="rgb(206,6,35)" fg:x="2028901" fg:w="357"/><text x="84.6609%" y="495.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (313 samples, 0.01%)</title><rect x="84.4349%" y="485" width="0.0130%" height="15" fill="rgb(247,73,52)" fg:x="2029478" fg:w="313"/><text x="84.6849%" y="495.50"></text></g><g><title>btrfs_update_root_times (574 samples, 0.02%)</title><rect x="84.4480%" y="485" width="0.0239%" height="15" fill="rgb(246,97,4)" fg:x="2029791" fg:w="574"/><text x="84.6980%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (343 samples, 0.01%)</title><rect x="84.4576%" y="469" width="0.0143%" height="15" fill="rgb(212,37,15)" fg:x="2030022" fg:w="343"/><text x="84.7076%" y="479.50"></text></g><g><title>current_time (622 samples, 0.03%)</title><rect x="84.4718%" y="485" width="0.0259%" height="15" fill="rgb(208,130,40)" fg:x="2030365" fg:w="622"/><text x="84.7218%" y="495.50"></text></g><g><title>ktime_get_coarse_real_ts64 (281 samples, 0.01%)</title><rect x="84.4860%" y="469" width="0.0117%" height="15" fill="rgb(236,55,29)" fg:x="2030706" fg:w="281"/><text x="84.7360%" y="479.50"></text></g><g><title>btrfs_set_token_32 (1,474 samples, 0.06%)</title><rect x="84.5273%" y="469" width="0.0613%" height="15" fill="rgb(209,156,45)" fg:x="2031699" fg:w="1474"/><text x="84.7773%" y="479.50"></text></g><g><title>btrfs_set_token_64 (1,993 samples, 0.08%)</title><rect x="84.5887%" y="469" width="0.0829%" height="15" fill="rgb(249,107,4)" fg:x="2033173" fg:w="1993"/><text x="84.8387%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (274 samples, 0.01%)</title><rect x="84.6602%" y="453" width="0.0114%" height="15" fill="rgb(227,7,13)" fg:x="2034892" fg:w="274"/><text x="84.9102%" y="463.50"></text></g><g><title>inode_get_bytes (261 samples, 0.01%)</title><rect x="84.6734%" y="469" width="0.0109%" height="15" fill="rgb(250,129,14)" fg:x="2035210" fg:w="261"/><text x="84.9234%" y="479.50"></text></g><g><title>fill_inode_item (4,783 samples, 0.20%)</title><rect x="84.4977%" y="485" width="0.1990%" height="15" fill="rgb(229,92,13)" fg:x="2030987" fg:w="4783"/><text x="84.7477%" y="495.50"></text></g><g><title>map_id_up (299 samples, 0.01%)</title><rect x="84.6843%" y="469" width="0.0124%" height="15" fill="rgb(245,98,39)" fg:x="2035471" fg:w="299"/><text x="84.9343%" y="479.50"></text></g><g><title>inherit_props (406 samples, 0.02%)</title><rect x="84.6967%" y="485" width="0.0169%" height="15" fill="rgb(234,135,48)" fg:x="2035770" fg:w="406"/><text x="84.9467%" y="495.50"></text></g><g><title>inode_init_owner (605 samples, 0.03%)</title><rect x="84.7136%" y="485" width="0.0252%" height="15" fill="rgb(230,98,28)" fg:x="2036176" fg:w="605"/><text x="84.9636%" y="495.50"></text></g><g><title>_raw_spin_lock (882 samples, 0.04%)</title><rect x="85.0948%" y="469" width="0.0367%" height="15" fill="rgb(223,121,0)" fg:x="2045339" fg:w="882"/><text x="85.3448%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (310 samples, 0.01%)</title><rect x="85.1186%" y="453" width="0.0129%" height="15" fill="rgb(234,173,33)" fg:x="2045911" fg:w="310"/><text x="85.3686%" y="463.50"></text></g><g><title>inode_tree_add (10,267 samples, 0.43%)</title><rect x="84.7446%" y="485" width="0.4272%" height="15" fill="rgb(245,47,8)" fg:x="2036921" fg:w="10267"/><text x="84.9946%" y="495.50"></text></g><g><title>rb_insert_color (916 samples, 0.04%)</title><rect x="85.1336%" y="469" width="0.0381%" height="15" fill="rgb(205,17,20)" fg:x="2046272" fg:w="916"/><text x="85.3836%" y="479.50"></text></g><g><title>_raw_spin_lock (610 samples, 0.03%)</title><rect x="85.1791%" y="453" width="0.0254%" height="15" fill="rgb(232,151,16)" fg:x="2047364" fg:w="610"/><text x="85.4291%" y="463.50"></text></g><g><title>insert_inode_locked4 (1,750 samples, 0.07%)</title><rect x="85.1717%" y="485" width="0.0728%" height="15" fill="rgb(208,30,32)" fg:x="2047188" fg:w="1750"/><text x="85.4217%" y="495.50"></text></g><g><title>inode_insert5 (1,731 samples, 0.07%)</title><rect x="85.1725%" y="469" width="0.0720%" height="15" fill="rgb(254,26,3)" fg:x="2047207" fg:w="1731"/><text x="85.4225%" y="479.50"></text></g><g><title>find_inode (963 samples, 0.04%)</title><rect x="85.2045%" y="453" width="0.0401%" height="15" fill="rgb(240,177,30)" fg:x="2047975" fg:w="963"/><text x="85.4545%" y="463.50"></text></g><g><title>kmem_cache_alloc (694 samples, 0.03%)</title><rect x="85.2445%" y="485" width="0.0289%" height="15" fill="rgb(248,76,44)" fg:x="2048938" fg:w="694"/><text x="85.4945%" y="495.50"></text></g><g><title>kmem_cache_free (630 samples, 0.03%)</title><rect x="85.2734%" y="485" width="0.0262%" height="15" fill="rgb(241,186,54)" fg:x="2049632" fg:w="630"/><text x="85.5234%" y="495.50"></text></g><g><title>memzero_extent_buffer (526 samples, 0.02%)</title><rect x="85.2996%" y="485" width="0.0219%" height="15" fill="rgb(249,171,29)" fg:x="2050262" fg:w="526"/><text x="85.5496%" y="495.50"></text></g><g><title>_raw_spin_lock (338 samples, 0.01%)</title><rect x="85.3252%" y="469" width="0.0141%" height="15" fill="rgb(237,151,44)" fg:x="2050877" fg:w="338"/><text x="85.5752%" y="479.50"></text></g><g><title>btrfs_init_metadata_block_rsv (738 samples, 0.03%)</title><rect x="85.3969%" y="437" width="0.0307%" height="15" fill="rgb(228,174,30)" fg:x="2052599" fg:w="738"/><text x="85.6469%" y="447.50"></text></g><g><title>btrfs_find_space_info (574 samples, 0.02%)</title><rect x="85.4037%" y="421" width="0.0239%" height="15" fill="rgb(252,14,37)" fg:x="2052763" fg:w="574"/><text x="85.6537%" y="431.50"></text></g><g><title>get_page_from_freelist (308 samples, 0.01%)</title><rect x="85.4913%" y="357" width="0.0128%" height="15" fill="rgb(207,111,40)" fg:x="2054868" fg:w="308"/><text x="85.7413%" y="367.50"></text></g><g><title>__alloc_pages_nodemask (327 samples, 0.01%)</title><rect x="85.4906%" y="373" width="0.0136%" height="15" fill="rgb(248,171,54)" fg:x="2054851" fg:w="327"/><text x="85.7406%" y="383.50"></text></g><g><title>allocate_slab (582 samples, 0.02%)</title><rect x="85.4886%" y="389" width="0.0242%" height="15" fill="rgb(211,127,2)" fg:x="2054803" fg:w="582"/><text x="85.7386%" y="399.50"></text></g><g><title>___slab_alloc (1,034 samples, 0.04%)</title><rect x="85.4750%" y="405" width="0.0430%" height="15" fill="rgb(236,87,47)" fg:x="2054477" fg:w="1034"/><text x="85.7250%" y="415.50"></text></g><g><title>__slab_alloc (1,078 samples, 0.04%)</title><rect x="85.4737%" y="421" width="0.0448%" height="15" fill="rgb(223,190,45)" fg:x="2054445" fg:w="1078"/><text x="85.7237%" y="431.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,350 samples, 0.06%)</title><rect x="85.5191%" y="421" width="0.0562%" height="15" fill="rgb(215,5,16)" fg:x="2055536" fg:w="1350"/><text x="85.7691%" y="431.50"></text></g><g><title>get_obj_cgroup_from_current (507 samples, 0.02%)</title><rect x="85.5882%" y="405" width="0.0211%" height="15" fill="rgb(252,82,33)" fg:x="2057199" fg:w="507"/><text x="85.8382%" y="415.50"></text></g><g><title>__memcg_kmem_charge (302 samples, 0.01%)</title><rect x="85.6270%" y="389" width="0.0126%" height="15" fill="rgb(247,213,44)" fg:x="2058131" fg:w="302"/><text x="85.8770%" y="399.50"></text></g><g><title>try_charge (264 samples, 0.01%)</title><rect x="85.6286%" y="373" width="0.0110%" height="15" fill="rgb(205,196,44)" fg:x="2058169" fg:w="264"/><text x="85.8786%" y="383.50"></text></g><g><title>obj_cgroup_charge (944 samples, 0.04%)</title><rect x="85.6093%" y="405" width="0.0393%" height="15" fill="rgb(237,96,54)" fg:x="2057706" fg:w="944"/><text x="85.8593%" y="415.50"></text></g><g><title>btrfs_alloc_inode (6,999 samples, 0.29%)</title><rect x="85.3578%" y="453" width="0.2912%" height="15" fill="rgb(230,113,34)" fg:x="2051659" fg:w="6999"/><text x="85.6078%" y="463.50"></text></g><g><title>kmem_cache_alloc (4,946 samples, 0.21%)</title><rect x="85.4432%" y="437" width="0.2058%" height="15" fill="rgb(221,224,12)" fg:x="2053712" fg:w="4946"/><text x="85.6932%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,767 samples, 0.07%)</title><rect x="85.5754%" y="421" width="0.0735%" height="15" fill="rgb(219,112,44)" fg:x="2056891" fg:w="1767"/><text x="85.8254%" y="431.50"></text></g><g><title>alloc_inode (9,198 samples, 0.38%)</title><rect x="85.3393%" y="469" width="0.3827%" height="15" fill="rgb(210,31,13)" fg:x="2051215" fg:w="9198"/><text x="85.5893%" y="479.50"></text></g><g><title>inode_init_always (1,755 samples, 0.07%)</title><rect x="85.6489%" y="453" width="0.0730%" height="15" fill="rgb(230,25,16)" fg:x="2058658" fg:w="1755"/><text x="85.8989%" y="463.50"></text></g><g><title>security_inode_alloc (451 samples, 0.02%)</title><rect x="85.7032%" y="437" width="0.0188%" height="15" fill="rgb(246,108,53)" fg:x="2059962" fg:w="451"/><text x="85.9532%" y="447.50"></text></g><g><title>__list_add_valid (261 samples, 0.01%)</title><rect x="85.7249%" y="453" width="0.0109%" height="15" fill="rgb(241,172,50)" fg:x="2060483" fg:w="261"/><text x="85.9749%" y="463.50"></text></g><g><title>new_inode (10,202 samples, 0.42%)</title><rect x="85.3215%" y="485" width="0.4244%" height="15" fill="rgb(235,141,10)" fg:x="2050788" fg:w="10202"/><text x="85.5715%" y="495.50"></text></g><g><title>inode_sb_list_add (576 samples, 0.02%)</title><rect x="85.7220%" y="469" width="0.0240%" height="15" fill="rgb(220,174,43)" fg:x="2060414" fg:w="576"/><text x="85.9720%" y="479.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.01%)</title><rect x="85.7357%" y="453" width="0.0102%" height="15" fill="rgb(215,181,40)" fg:x="2060744" fg:w="246"/><text x="85.9857%" y="463.50"></text></g><g><title>btrfs_new_inode (147,215 samples, 6.12%)</title><rect x="79.6427%" y="501" width="6.1248%" height="15" fill="rgb(230,97,2)" fg:x="1914293" fg:w="147215"/><text x="79.8927%" y="511.50">btrfs_ne..</text></g><g><title>write_extent_buffer (518 samples, 0.02%)</title><rect x="85.7460%" y="485" width="0.0216%" height="15" fill="rgb(211,25,27)" fg:x="2060990" fg:w="518"/><text x="85.9960%" y="495.50"></text></g><g><title>btrfs_set_64 (385 samples, 0.02%)</title><rect x="85.7762%" y="501" width="0.0160%" height="15" fill="rgb(230,87,26)" fg:x="2061717" fg:w="385"/><text x="86.0262%" y="511.50"></text></g><g><title>btrfs_set_8 (376 samples, 0.02%)</title><rect x="85.7922%" y="501" width="0.0156%" height="15" fill="rgb(227,160,17)" fg:x="2062102" fg:w="376"/><text x="86.0422%" y="511.50"></text></g><g><title>__list_add_valid (530 samples, 0.02%)</title><rect x="85.9126%" y="453" width="0.0221%" height="15" fill="rgb(244,85,34)" fg:x="2064996" fg:w="530"/><text x="86.1626%" y="463.50"></text></g><g><title>_raw_spin_lock (329 samples, 0.01%)</title><rect x="85.9347%" y="453" width="0.0137%" height="15" fill="rgb(207,70,0)" fg:x="2065526" fg:w="329"/><text x="86.1847%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,307 samples, 0.10%)</title><rect x="85.8672%" y="469" width="0.0960%" height="15" fill="rgb(223,129,7)" fg:x="2063905" fg:w="2307"/><text x="86.1172%" y="479.50"></text></g><g><title>_raw_spin_lock (1,120 samples, 0.05%)</title><rect x="85.9706%" y="453" width="0.0466%" height="15" fill="rgb(246,105,7)" fg:x="2066390" fg:w="1120"/><text x="86.2206%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (1,289 samples, 0.05%)</title><rect x="85.9637%" y="469" width="0.0536%" height="15" fill="rgb(215,154,42)" fg:x="2066223" fg:w="1289"/><text x="86.2137%" y="479.50"></text></g><g><title>_raw_spin_lock (254 samples, 0.01%)</title><rect x="86.0533%" y="453" width="0.0106%" height="15" fill="rgb(220,215,30)" fg:x="2068377" fg:w="254"/><text x="86.3033%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,489 samples, 0.10%)</title><rect x="86.0710%" y="437" width="0.1036%" height="15" fill="rgb(228,81,51)" fg:x="2068802" fg:w="2489"/><text x="86.3210%" y="447.50"></text></g><g><title>_raw_spin_lock (424 samples, 0.02%)</title><rect x="86.1745%" y="437" width="0.0176%" height="15" fill="rgb(247,71,54)" fg:x="2071291" fg:w="424"/><text x="86.4245%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (3,105 samples, 0.13%)</title><rect x="86.0640%" y="453" width="0.1292%" height="15" fill="rgb(234,176,34)" fg:x="2068634" fg:w="3105"/><text x="86.3140%" y="463.50"></text></g><g><title>allocate_slab (260 samples, 0.01%)</title><rect x="86.2418%" y="405" width="0.0108%" height="15" fill="rgb(241,103,54)" fg:x="2072907" fg:w="260"/><text x="86.4918%" y="415.50"></text></g><g><title>___slab_alloc (708 samples, 0.03%)</title><rect x="86.2253%" y="421" width="0.0295%" height="15" fill="rgb(228,22,34)" fg:x="2072511" fg:w="708"/><text x="86.4753%" y="431.50"></text></g><g><title>__slab_alloc (764 samples, 0.03%)</title><rect x="86.2231%" y="437" width="0.0318%" height="15" fill="rgb(241,179,48)" fg:x="2072459" fg:w="764"/><text x="86.4731%" y="447.50"></text></g><g><title>memset_erms (251 samples, 0.01%)</title><rect x="86.2583%" y="437" width="0.0104%" height="15" fill="rgb(235,167,37)" fg:x="2073305" fg:w="251"/><text x="86.5083%" y="447.50"></text></g><g><title>__schedule (273 samples, 0.01%)</title><rect x="86.2731%" y="405" width="0.0114%" height="15" fill="rgb(213,109,30)" fg:x="2073660" fg:w="273"/><text x="86.5231%" y="415.50"></text></g><g><title>_cond_resched (293 samples, 0.01%)</title><rect x="86.2723%" y="421" width="0.0122%" height="15" fill="rgb(222,172,16)" fg:x="2073642" fg:w="293"/><text x="86.5223%" y="431.50"></text></g><g><title>kmem_cache_alloc (2,199 samples, 0.09%)</title><rect x="86.1932%" y="453" width="0.0915%" height="15" fill="rgb(233,192,5)" fg:x="2071739" fg:w="2199"/><text x="86.4432%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (382 samples, 0.02%)</title><rect x="86.2688%" y="437" width="0.0159%" height="15" fill="rgb(247,189,41)" fg:x="2073556" fg:w="382"/><text x="86.5188%" y="447.50"></text></g><g><title>radix_tree_insert (820 samples, 0.03%)</title><rect x="86.2847%" y="453" width="0.0341%" height="15" fill="rgb(218,134,47)" fg:x="2073938" fg:w="820"/><text x="86.5347%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (7,329 samples, 0.30%)</title><rect x="86.0173%" y="469" width="0.3049%" height="15" fill="rgb(216,29,3)" fg:x="2067512" fg:w="7329"/><text x="86.2673%" y="479.50"></text></g><g><title>inode_get_bytes (245 samples, 0.01%)</title><rect x="86.3307%" y="453" width="0.0102%" height="15" fill="rgb(246,140,12)" fg:x="2075045" fg:w="245"/><text x="86.5807%" y="463.50"></text></g><g><title>fill_stack_inode_item (582 samples, 0.02%)</title><rect x="86.3222%" y="469" width="0.0242%" height="15" fill="rgb(230,136,11)" fg:x="2074841" fg:w="582"/><text x="86.5722%" y="479.50"></text></g><g><title>mutex_lock (449 samples, 0.02%)</title><rect x="86.3464%" y="469" width="0.0187%" height="15" fill="rgb(247,22,47)" fg:x="2075423" fg:w="449"/><text x="86.5964%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (12,903 samples, 0.54%)</title><rect x="85.8347%" y="485" width="0.5368%" height="15" fill="rgb(218,84,22)" fg:x="2063122" fg:w="12903"/><text x="86.0847%" y="495.50"></text></g><g><title>_raw_spin_lock (500 samples, 0.02%)</title><rect x="86.3752%" y="469" width="0.0208%" height="15" fill="rgb(216,87,39)" fg:x="2076115" fg:w="500"/><text x="86.6252%" y="479.50"></text></g><g><title>btrfs_update_inode (14,423 samples, 0.60%)</title><rect x="85.8135%" y="501" width="0.6001%" height="15" fill="rgb(221,178,8)" fg:x="2062614" fg:w="14423"/><text x="86.0635%" y="511.50"></text></g><g><title>btrfs_update_root_times (1,012 samples, 0.04%)</title><rect x="86.3715%" y="485" width="0.0421%" height="15" fill="rgb(230,42,11)" fg:x="2076025" fg:w="1012"/><text x="86.6215%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (421 samples, 0.02%)</title><rect x="86.3961%" y="469" width="0.0175%" height="15" fill="rgb(237,229,4)" fg:x="2076616" fg:w="421"/><text x="86.6461%" y="479.50"></text></g><g><title>__d_instantiate (948 samples, 0.04%)</title><rect x="86.4324%" y="485" width="0.0394%" height="15" fill="rgb(222,31,33)" fg:x="2077488" fg:w="948"/><text x="86.6824%" y="495.50"></text></g><g><title>d_flags_for_inode (433 samples, 0.02%)</title><rect x="86.4538%" y="469" width="0.0180%" height="15" fill="rgb(210,17,39)" fg:x="2078003" fg:w="433"/><text x="86.7038%" y="479.50"></text></g><g><title>security_d_instantiate (382 samples, 0.02%)</title><rect x="86.4814%" y="485" width="0.0159%" height="15" fill="rgb(244,93,20)" fg:x="2078668" fg:w="382"/><text x="86.7314%" y="495.50"></text></g><g><title>d_instantiate_new (2,022 samples, 0.08%)</title><rect x="86.4209%" y="501" width="0.0841%" height="15" fill="rgb(210,40,47)" fg:x="2077212" fg:w="2022"/><text x="86.6709%" y="511.50"></text></g><g><title>__schedule (288 samples, 0.01%)</title><rect x="86.5498%" y="453" width="0.0120%" height="15" fill="rgb(239,211,47)" fg:x="2080310" fg:w="288"/><text x="86.7998%" y="463.50"></text></g><g><title>_cond_resched (414 samples, 0.02%)</title><rect x="86.5469%" y="469" width="0.0172%" height="15" fill="rgb(251,223,49)" fg:x="2080241" fg:w="414"/><text x="86.7969%" y="479.50"></text></g><g><title>kmem_cache_alloc (1,278 samples, 0.05%)</title><rect x="86.5114%" y="501" width="0.0532%" height="15" fill="rgb(221,149,5)" fg:x="2079388" fg:w="1278"/><text x="86.7614%" y="511.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (565 samples, 0.02%)</title><rect x="86.5411%" y="485" width="0.0235%" height="15" fill="rgb(219,224,51)" fg:x="2080101" fg:w="565"/><text x="86.7911%" y="495.50"></text></g><g><title>kmem_cache_free (624 samples, 0.03%)</title><rect x="86.5646%" y="501" width="0.0260%" height="15" fill="rgb(223,7,8)" fg:x="2080666" fg:w="624"/><text x="86.8146%" y="511.50"></text></g><g><title>security_inode_init_security (400 samples, 0.02%)</title><rect x="86.5907%" y="501" width="0.0166%" height="15" fill="rgb(241,217,22)" fg:x="2081293" fg:w="400"/><text x="86.8407%" y="511.50"></text></g><g><title>_raw_spin_lock (623 samples, 0.03%)</title><rect x="86.7042%" y="469" width="0.0259%" height="15" fill="rgb(248,209,0)" fg:x="2084021" fg:w="623"/><text x="86.9542%" y="479.50"></text></g><g><title>_raw_spin_lock (1,162 samples, 0.05%)</title><rect x="86.7754%" y="437" width="0.0483%" height="15" fill="rgb(217,205,4)" fg:x="2085733" fg:w="1162"/><text x="87.0254%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (478 samples, 0.02%)</title><rect x="86.8038%" y="421" width="0.0199%" height="15" fill="rgb(228,124,39)" fg:x="2086417" fg:w="478"/><text x="87.0538%" y="431.50"></text></g><g><title>_raw_spin_lock (295 samples, 0.01%)</title><rect x="86.8890%" y="405" width="0.0123%" height="15" fill="rgb(250,116,42)" fg:x="2088465" fg:w="295"/><text x="87.1390%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,862 samples, 0.08%)</title><rect x="86.8239%" y="437" width="0.0775%" height="15" fill="rgb(223,202,9)" fg:x="2086900" fg:w="1862"/><text x="87.0739%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (756 samples, 0.03%)</title><rect x="86.8699%" y="421" width="0.0315%" height="15" fill="rgb(242,222,40)" fg:x="2088006" fg:w="756"/><text x="87.1199%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (308 samples, 0.01%)</title><rect x="86.9171%" y="421" width="0.0128%" height="15" fill="rgb(229,99,46)" fg:x="2089139" fg:w="308"/><text x="87.1671%" y="431.50"></text></g><g><title>_raw_spin_lock (446 samples, 0.02%)</title><rect x="86.9405%" y="405" width="0.0186%" height="15" fill="rgb(225,56,46)" fg:x="2089702" fg:w="446"/><text x="87.1905%" y="415.50"></text></g><g><title>__reserve_bytes (5,031 samples, 0.21%)</title><rect x="86.7500%" y="453" width="0.2093%" height="15" fill="rgb(227,94,5)" fg:x="2085122" fg:w="5031"/><text x="87.0000%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (1,391 samples, 0.06%)</title><rect x="86.9014%" y="437" width="0.0579%" height="15" fill="rgb(205,112,38)" fg:x="2088762" fg:w="1391"/><text x="87.1514%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (706 samples, 0.03%)</title><rect x="86.9299%" y="421" width="0.0294%" height="15" fill="rgb(231,133,46)" fg:x="2089447" fg:w="706"/><text x="87.1799%" y="431.50"></text></g><g><title>btrfs_block_rsv_add (6,290 samples, 0.26%)</title><rect x="86.6977%" y="485" width="0.2617%" height="15" fill="rgb(217,16,9)" fg:x="2083865" fg:w="6290"/><text x="86.9477%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,511 samples, 0.23%)</title><rect x="86.7301%" y="469" width="0.2293%" height="15" fill="rgb(249,173,9)" fg:x="2084644" fg:w="5511"/><text x="86.9801%" y="479.50"></text></g><g><title>_raw_spin_lock (455 samples, 0.02%)</title><rect x="86.9845%" y="469" width="0.0189%" height="15" fill="rgb(205,163,53)" fg:x="2090760" fg:w="455"/><text x="87.2345%" y="479.50"></text></g><g><title>join_transaction (984 samples, 0.04%)</title><rect x="86.9627%" y="485" width="0.0409%" height="15" fill="rgb(217,54,41)" fg:x="2090235" fg:w="984"/><text x="87.2127%" y="495.50"></text></g><g><title>kmem_cache_alloc (1,012 samples, 0.04%)</title><rect x="87.0036%" y="485" width="0.0421%" height="15" fill="rgb(228,216,12)" fg:x="2091219" fg:w="1012"/><text x="87.2536%" y="495.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (290 samples, 0.01%)</title><rect x="87.0337%" y="469" width="0.0121%" height="15" fill="rgb(244,228,15)" fg:x="2091941" fg:w="290"/><text x="87.2837%" y="479.50"></text></g><g><title>start_transaction (11,530 samples, 0.48%)</title><rect x="86.6073%" y="501" width="0.4797%" height="15" fill="rgb(221,176,53)" fg:x="2081693" fg:w="11530"/><text x="86.8573%" y="511.50"></text></g><g><title>wait_current_trans (992 samples, 0.04%)</title><rect x="87.0457%" y="485" width="0.0413%" height="15" fill="rgb(205,94,34)" fg:x="2092231" fg:w="992"/><text x="87.2957%" y="495.50"></text></g><g><title>_raw_spin_lock (673 samples, 0.03%)</title><rect x="87.0590%" y="469" width="0.0280%" height="15" fill="rgb(213,110,48)" fg:x="2092550" fg:w="673"/><text x="87.3090%" y="479.50"></text></g><g><title>strlen (2,911 samples, 0.12%)</title><rect x="87.0870%" y="501" width="0.1211%" height="15" fill="rgb(236,142,28)" fg:x="2093223" fg:w="2911"/><text x="87.3370%" y="511.50"></text></g><g><title>btrfs_symlink (446,923 samples, 18.59%)</title><rect x="68.6446%" y="517" width="18.5939%" height="15" fill="rgb(225,135,29)" fg:x="1649942" fg:w="446923"/><text x="68.8946%" y="527.50">btrfs_symlink</text></g><g><title>write_extent_buffer (731 samples, 0.03%)</title><rect x="87.2081%" y="501" width="0.0304%" height="15" fill="rgb(252,45,31)" fg:x="2096134" fg:w="731"/><text x="87.4581%" y="511.50"></text></g><g><title>fsnotify (541 samples, 0.02%)</title><rect x="87.2390%" y="517" width="0.0225%" height="15" fill="rgb(211,187,50)" fg:x="2096876" fg:w="541"/><text x="87.4890%" y="527.50"></text></g><g><title>btrfs_permission (386 samples, 0.02%)</title><rect x="87.2731%" y="501" width="0.0161%" height="15" fill="rgb(229,109,7)" fg:x="2097697" fg:w="386"/><text x="87.5231%" y="511.50"></text></g><g><title>inode_permission.part.0 (706 samples, 0.03%)</title><rect x="87.2615%" y="517" width="0.0294%" height="15" fill="rgb(251,131,51)" fg:x="2097417" fg:w="706"/><text x="87.5115%" y="527.50"></text></g><g><title>do_symlinkat (571,684 samples, 23.78%)</title><rect x="63.5224%" y="549" width="23.7845%" height="15" fill="rgb(251,180,35)" fg:x="1526824" fg:w="571684"/><text x="63.7724%" y="559.50">do_symlinkat</text></g><g><title>vfs_symlink (449,269 samples, 18.69%)</title><rect x="68.6154%" y="533" width="18.6915%" height="15" fill="rgb(211,46,32)" fg:x="1649239" fg:w="449269"/><text x="68.8654%" y="543.50">vfs_symlink</text></g><g><title>do_syscall_64 (572,587 samples, 23.82%)</title><rect x="63.4975%" y="565" width="23.8221%" height="15" fill="rgb(248,123,17)" fg:x="1526226" fg:w="572587"/><text x="63.7475%" y="575.50">do_syscall_64</text></g><g><title>syscall_enter_from_user_mode (305 samples, 0.01%)</title><rect x="87.3069%" y="549" width="0.0127%" height="15" fill="rgb(227,141,18)" fg:x="2098508" fg:w="305"/><text x="87.5569%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (574,323 samples, 23.89%)</title><rect x="63.4790%" y="581" width="23.8943%" height="15" fill="rgb(216,102,9)" fg:x="1525782" fg:w="574323"/><text x="63.7290%" y="591.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (1,292 samples, 0.05%)</title><rect x="87.3196%" y="565" width="0.0538%" height="15" fill="rgb(253,47,13)" fg:x="2098813" fg:w="1292"/><text x="87.5696%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,139 samples, 0.05%)</title><rect x="87.3259%" y="549" width="0.0474%" height="15" fill="rgb(226,93,23)" fg:x="2098966" fg:w="1139"/><text x="87.5759%" y="559.50"></text></g><g><title>switch_fpu_return (787 samples, 0.03%)</title><rect x="87.3406%" y="533" width="0.0327%" height="15" fill="rgb(247,104,17)" fg:x="2099318" fg:w="787"/><text x="87.5906%" y="543.50"></text></g><g><title>copy_kernel_to_fpregs (265 samples, 0.01%)</title><rect x="87.3623%" y="517" width="0.0110%" height="15" fill="rgb(233,203,26)" fg:x="2099840" fg:w="265"/><text x="87.6123%" y="527.50"></text></g><g><title>syscall_return_via_sysret (338 samples, 0.01%)</title><rect x="87.3794%" y="581" width="0.0141%" height="15" fill="rgb(244,98,49)" fg:x="2100251" fg:w="338"/><text x="87.6294%" y="591.50"></text></g><g><title>__symlink (576,438 samples, 23.98%)</title><rect x="63.4121%" y="597" width="23.9823%" height="15" fill="rgb(235,134,22)" fg:x="1524174" fg:w="576438"/><text x="63.6621%" y="607.50">__symlink</text></g><g><title>_int_free (725 samples, 0.03%)</title><rect x="87.3944%" y="597" width="0.0302%" height="15" fill="rgb(221,70,32)" fg:x="2100612" fg:w="725"/><text x="87.6444%" y="607.50"></text></g><g><title>free@plt (502 samples, 0.02%)</title><rect x="87.4274%" y="597" width="0.0209%" height="15" fill="rgb(238,15,50)" fg:x="2101405" fg:w="502"/><text x="87.6774%" y="607.50"></text></g><g><title>jni_ExceptionOccurred (602 samples, 0.03%)</title><rect x="87.4483%" y="597" width="0.0250%" height="15" fill="rgb(215,221,48)" fg:x="2101907" fg:w="602"/><text x="87.6983%" y="607.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (525 samples, 0.02%)</title><rect x="87.4954%" y="581" width="0.0218%" height="15" fill="rgb(236,73,3)" fg:x="2103040" fg:w="525"/><text x="87.7454%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (435 samples, 0.02%)</title><rect x="87.5173%" y="581" width="0.0181%" height="15" fill="rgb(250,107,11)" fg:x="2103565" fg:w="435"/><text x="87.7673%" y="591.50"></text></g><g><title>[libc-2.31.so] (652 samples, 0.03%)</title><rect x="87.5354%" y="581" width="0.0271%" height="15" fill="rgb(242,39,14)" fg:x="2104000" fg:w="652"/><text x="87.7854%" y="591.50"></text></g><g><title>check_bounds (742 samples, 0.03%)</title><rect x="87.5629%" y="581" width="0.0309%" height="15" fill="rgb(248,164,37)" fg:x="2104661" fg:w="742"/><text x="87.8129%" y="591.50"></text></g><g><title>jni_GetByteArrayRegion (3,201 samples, 0.13%)</title><rect x="87.4733%" y="597" width="0.1332%" height="15" fill="rgb(217,60,12)" fg:x="2102509" fg:w="3201"/><text x="87.7233%" y="607.50"></text></g><g><title>memmove@plt (307 samples, 0.01%)</title><rect x="87.5937%" y="581" width="0.0128%" height="15" fill="rgb(240,125,29)" fg:x="2105403" fg:w="307"/><text x="87.8437%" y="591.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (850 samples, 0.04%)</title><rect x="87.6374%" y="565" width="0.0354%" height="15" fill="rgb(208,207,28)" fg:x="2106453" fg:w="850"/><text x="87.8874%" y="575.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (765 samples, 0.03%)</title><rect x="87.6410%" y="549" width="0.0318%" height="15" fill="rgb(209,159,27)" fg:x="2106538" fg:w="765"/><text x="87.8910%" y="559.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (991 samples, 0.04%)</title><rect x="87.6316%" y="581" width="0.0412%" height="15" fill="rgb(251,176,53)" fg:x="2106313" fg:w="991"/><text x="87.8816%" y="591.50"></text></g><g><title>HandleMark::pop_and_restore (692 samples, 0.03%)</title><rect x="87.6728%" y="581" width="0.0288%" height="15" fill="rgb(211,85,7)" fg:x="2107304" fg:w="692"/><text x="87.9228%" y="591.50"></text></g><g><title>JNIHandles::make_local (833 samples, 0.03%)</title><rect x="87.7016%" y="581" width="0.0347%" height="15" fill="rgb(216,64,54)" fg:x="2107996" fg:w="833"/><text x="87.9516%" y="591.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (392 samples, 0.02%)</title><rect x="87.7365%" y="581" width="0.0163%" height="15" fill="rgb(217,54,24)" fg:x="2108835" fg:w="392"/><text x="87.9865%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (505 samples, 0.02%)</title><rect x="87.7528%" y="581" width="0.0210%" height="15" fill="rgb(208,206,53)" fg:x="2109227" fg:w="505"/><text x="88.0028%" y="591.50"></text></g><g><title>jni_GetObjectField (4,034 samples, 0.17%)</title><rect x="87.6066%" y="597" width="0.1678%" height="15" fill="rgb(251,74,39)" fg:x="2105712" fg:w="4034"/><text x="87.8566%" y="607.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (368 samples, 0.02%)</title><rect x="87.8234%" y="581" width="0.0153%" height="15" fill="rgb(226,47,5)" fg:x="2110923" fg:w="368"/><text x="88.0734%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (901 samples, 0.04%)</title><rect x="87.8387%" y="581" width="0.0375%" height="15" fill="rgb(234,111,33)" fg:x="2111291" fg:w="901"/><text x="88.0887%" y="591.50"></text></g><g><title>jni_GetStringLength (2,457 samples, 0.10%)</title><rect x="87.7744%" y="597" width="0.1022%" height="15" fill="rgb(251,14,10)" fg:x="2109746" fg:w="2457"/><text x="88.0244%" y="607.50"></text></g><g><title>operator delete@plt (669 samples, 0.03%)</title><rect x="87.8940%" y="597" width="0.0278%" height="15" fill="rgb(232,43,0)" fg:x="2112619" fg:w="669"/><text x="88.1440%" y="607.50"></text></g><g><title>__GI___libc_malloc (854 samples, 0.04%)</title><rect x="87.9321%" y="581" width="0.0355%" height="15" fill="rgb(222,68,43)" fg:x="2113535" fg:w="854"/><text x="88.1821%" y="591.50"></text></g><g><title>tcache_get (378 samples, 0.02%)</title><rect x="87.9519%" y="565" width="0.0157%" height="15" fill="rgb(217,24,23)" fg:x="2114011" fg:w="378"/><text x="88.2019%" y="575.50"></text></g><g><title>operator new (1,060 samples, 0.04%)</title><rect x="87.9315%" y="597" width="0.0441%" height="15" fill="rgb(229,209,14)" fg:x="2113521" fg:w="1060"/><text x="88.1815%" y="607.50"></text></g><g><title>operator new@plt (421 samples, 0.02%)</title><rect x="87.9756%" y="597" width="0.0175%" height="15" fill="rgb(250,149,48)" fg:x="2114581" fg:w="421"/><text x="88.2256%" y="607.50"></text></g><g><title>operator new[] (251 samples, 0.01%)</title><rect x="87.9931%" y="597" width="0.0104%" height="15" fill="rgb(210,120,37)" fg:x="2115002" fg:w="251"/><text x="88.2431%" y="607.50"></text></g><g><title>_int_malloc (475 samples, 0.02%)</title><rect x="88.0361%" y="549" width="0.0198%" height="15" fill="rgb(210,21,8)" fg:x="2116035" fg:w="475"/><text x="88.2861%" y="559.50"></text></g><g><title>__GI___libc_malloc (1,005 samples, 0.04%)</title><rect x="88.0188%" y="565" width="0.0418%" height="15" fill="rgb(243,145,7)" fg:x="2115620" fg:w="1005"/><text x="88.2688%" y="575.50"></text></g><g><title>operator new (1,075 samples, 0.04%)</title><rect x="88.0184%" y="581" width="0.0447%" height="15" fill="rgb(238,178,32)" fg:x="2115611" fg:w="1075"/><text x="88.2684%" y="591.50"></text></g><g><title>[libunix_jni.so] (1,942,842 samples, 80.83%)</title><rect x="7.2359%" y="613" width="80.8305%" height="15" fill="rgb(222,4,10)" fg:x="173921" fg:w="1942842"/><text x="7.4859%" y="623.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (1,242 samples, 0.05%)</title><rect x="88.0147%" y="597" width="0.0517%" height="15" fill="rgb(239,7,37)" fg:x="2115521" fg:w="1242"/><text x="88.2647%" y="607.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (283 samples, 0.01%)</title><rect x="92.5372%" y="581" width="0.0118%" height="15" fill="rgb(215,31,37)" fg:x="2224224" fg:w="283"/><text x="92.7872%" y="591.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (287 samples, 0.01%)</title><rect x="92.5371%" y="597" width="0.0119%" height="15" fill="rgb(224,83,33)" fg:x="2224222" fg:w="287"/><text x="92.7871%" y="607.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (318 samples, 0.01%)</title><rect x="92.5614%" y="581" width="0.0132%" height="15" fill="rgb(239,55,3)" fg:x="2224806" fg:w="318"/><text x="92.8114%" y="591.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (477 samples, 0.02%)</title><rect x="92.5585%" y="597" width="0.0198%" height="15" fill="rgb(247,92,11)" fg:x="2224735" fg:w="477"/><text x="92.8085%" y="607.50"></text></g><g><title>SymbolTable::lookup_only (285 samples, 0.01%)</title><rect x="92.6127%" y="453" width="0.0119%" height="15" fill="rgb(239,200,7)" fg:x="2226039" fg:w="285"/><text x="92.8627%" y="463.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (326 samples, 0.01%)</title><rect x="92.6110%" y="469" width="0.0136%" height="15" fill="rgb(227,115,8)" fg:x="2225999" fg:w="326"/><text x="92.8610%" y="479.50"></text></g><g><title>ClassFileParser::parse_constant_pool (334 samples, 0.01%)</title><rect x="92.6109%" y="485" width="0.0139%" height="15" fill="rgb(215,189,27)" fg:x="2225995" fg:w="334"/><text x="92.8609%" y="495.50"></text></g><g><title>ClassFileParser::ClassFileParser (434 samples, 0.02%)</title><rect x="92.6108%" y="517" width="0.0181%" height="15" fill="rgb(251,216,39)" fg:x="2225993" fg:w="434"/><text x="92.8608%" y="527.50"></text></g><g><title>ClassFileParser::parse_stream (434 samples, 0.02%)</title><rect x="92.6108%" y="501" width="0.0181%" height="15" fill="rgb(207,29,47)" fg:x="2225993" fg:w="434"/><text x="92.8608%" y="511.50"></text></g><g><title>KlassFactory::create_from_stream (528 samples, 0.02%)</title><rect x="92.6108%" y="533" width="0.0220%" height="15" fill="rgb(210,71,34)" fg:x="2225993" fg:w="528"/><text x="92.8608%" y="543.50"></text></g><g><title>JVM_DefineClassWithSource (566 samples, 0.02%)</title><rect x="92.6105%" y="581" width="0.0235%" height="15" fill="rgb(253,217,51)" fg:x="2225985" fg:w="566"/><text x="92.8605%" y="591.50"></text></g><g><title>jvm_define_class_common (566 samples, 0.02%)</title><rect x="92.6105%" y="565" width="0.0235%" height="15" fill="rgb(222,117,46)" fg:x="2225985" fg:w="566"/><text x="92.8605%" y="575.50"></text></g><g><title>SystemDictionary::resolve_from_stream (558 samples, 0.02%)</title><rect x="92.6108%" y="549" width="0.0232%" height="15" fill="rgb(226,132,6)" fg:x="2225993" fg:w="558"/><text x="92.8608%" y="559.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (589 samples, 0.02%)</title><rect x="92.6104%" y="597" width="0.0245%" height="15" fill="rgb(254,145,51)" fg:x="2225984" fg:w="589"/><text x="92.8604%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (379 samples, 0.02%)</title><rect x="92.6485%" y="501" width="0.0158%" height="15" fill="rgb(231,199,27)" fg:x="2226900" fg:w="379"/><text x="92.8985%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (371 samples, 0.02%)</title><rect x="92.6489%" y="485" width="0.0154%" height="15" fill="rgb(245,158,14)" fg:x="2226908" fg:w="371"/><text x="92.8989%" y="495.50"></text></g><g><title>native_write_msr (371 samples, 0.02%)</title><rect x="92.6489%" y="469" width="0.0154%" height="15" fill="rgb(240,113,14)" fg:x="2226908" fg:w="371"/><text x="92.8989%" y="479.50"></text></g><g><title>schedule_tail (405 samples, 0.02%)</title><rect x="92.6480%" y="533" width="0.0168%" height="15" fill="rgb(210,20,13)" fg:x="2226887" fg:w="405"/><text x="92.8980%" y="543.50"></text></g><g><title>finish_task_switch (403 samples, 0.02%)</title><rect x="92.6481%" y="517" width="0.0168%" height="15" fill="rgb(241,144,13)" fg:x="2226889" fg:w="403"/><text x="92.8981%" y="527.50"></text></g><g><title>__libc_vfork (567 samples, 0.02%)</title><rect x="92.6415%" y="565" width="0.0236%" height="15" fill="rgb(235,43,34)" fg:x="2226732" fg:w="567"/><text x="92.8915%" y="575.50"></text></g><g><title>ret_from_fork (420 samples, 0.02%)</title><rect x="92.6477%" y="549" width="0.0175%" height="15" fill="rgb(208,36,20)" fg:x="2226879" fg:w="420"/><text x="92.8977%" y="559.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,007 samples, 0.04%)</title><rect x="92.6384%" y="597" width="0.0419%" height="15" fill="rgb(239,204,10)" fg:x="2226657" fg:w="1007"/><text x="92.8884%" y="607.50"></text></g><g><title>vforkChild (933 samples, 0.04%)</title><rect x="92.6415%" y="581" width="0.0388%" height="15" fill="rgb(217,84,43)" fg:x="2226731" fg:w="933"/><text x="92.8915%" y="591.50"></text></g><g><title>childProcess (365 samples, 0.02%)</title><rect x="92.6651%" y="565" width="0.0152%" height="15" fill="rgb(241,170,50)" fg:x="2227299" fg:w="365"/><text x="92.9151%" y="575.50"></text></g><g><title>OptoRuntime::new_array_C (254 samples, 0.01%)</title><rect x="92.6820%" y="597" width="0.0106%" height="15" fill="rgb(226,205,29)" fg:x="2227704" fg:w="254"/><text x="92.9320%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (304 samples, 0.01%)</title><rect x="92.7391%" y="373" width="0.0126%" height="15" fill="rgb(233,113,1)" fg:x="2229076" fg:w="304"/><text x="92.9891%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (298 samples, 0.01%)</title><rect x="92.7393%" y="357" width="0.0124%" height="15" fill="rgb(253,98,13)" fg:x="2229082" fg:w="298"/><text x="92.9893%" y="367.50"></text></g><g><title>native_write_msr (296 samples, 0.01%)</title><rect x="92.7394%" y="341" width="0.0123%" height="15" fill="rgb(211,115,12)" fg:x="2229084" fg:w="296"/><text x="92.9894%" y="351.50"></text></g><g><title>finish_task_switch (319 samples, 0.01%)</title><rect x="92.7388%" y="389" width="0.0133%" height="15" fill="rgb(208,12,16)" fg:x="2229069" fg:w="319"/><text x="92.9888%" y="399.50"></text></g><g><title>futex_wait_queue_me (402 samples, 0.02%)</title><rect x="92.7370%" y="437" width="0.0167%" height="15" fill="rgb(237,193,54)" fg:x="2229026" fg:w="402"/><text x="92.9870%" y="447.50"></text></g><g><title>schedule (395 samples, 0.02%)</title><rect x="92.7373%" y="421" width="0.0164%" height="15" fill="rgb(243,22,42)" fg:x="2229033" fg:w="395"/><text x="92.9873%" y="431.50"></text></g><g><title>__schedule (394 samples, 0.02%)</title><rect x="92.7373%" y="405" width="0.0164%" height="15" fill="rgb(233,151,36)" fg:x="2229034" fg:w="394"/><text x="92.9873%" y="415.50"></text></g><g><title>do_syscall_64 (406 samples, 0.02%)</title><rect x="92.7369%" y="501" width="0.0169%" height="15" fill="rgb(237,57,45)" fg:x="2229025" fg:w="406"/><text x="92.9869%" y="511.50"></text></g><g><title>__x64_sys_futex (405 samples, 0.02%)</title><rect x="92.7370%" y="485" width="0.0168%" height="15" fill="rgb(221,88,17)" fg:x="2229026" fg:w="405"/><text x="92.9870%" y="495.50"></text></g><g><title>do_futex (405 samples, 0.02%)</title><rect x="92.7370%" y="469" width="0.0168%" height="15" fill="rgb(230,79,15)" fg:x="2229026" fg:w="405"/><text x="92.9870%" y="479.50"></text></g><g><title>futex_wait (405 samples, 0.02%)</title><rect x="92.7370%" y="453" width="0.0168%" height="15" fill="rgb(213,57,13)" fg:x="2229026" fg:w="405"/><text x="92.9870%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (416 samples, 0.02%)</title><rect x="92.7369%" y="517" width="0.0173%" height="15" fill="rgb(222,116,39)" fg:x="2229023" fg:w="416"/><text x="92.9869%" y="527.50"></text></g><g><title>__pthread_cond_wait (439 samples, 0.02%)</title><rect x="92.7361%" y="565" width="0.0183%" height="15" fill="rgb(245,107,2)" fg:x="2229004" fg:w="439"/><text x="92.9861%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (439 samples, 0.02%)</title><rect x="92.7361%" y="549" width="0.0183%" height="15" fill="rgb(238,1,10)" fg:x="2229004" fg:w="439"/><text x="92.9861%" y="559.50"></text></g><g><title>futex_wait_cancelable (432 samples, 0.02%)</title><rect x="92.7364%" y="533" width="0.0180%" height="15" fill="rgb(249,4,48)" fg:x="2229011" fg:w="432"/><text x="92.9864%" y="543.50"></text></g><g><title>Parker::park (517 samples, 0.02%)</title><rect x="92.7340%" y="581" width="0.0215%" height="15" fill="rgb(223,151,18)" fg:x="2228955" fg:w="517"/><text x="92.9840%" y="591.50"></text></g><g><title>Unsafe_Park (526 samples, 0.02%)</title><rect x="92.7339%" y="597" width="0.0219%" height="15" fill="rgb(227,65,43)" fg:x="2228951" fg:w="526"/><text x="92.9839%" y="607.50"></text></g><g><title>__x64_sys_futex (307 samples, 0.01%)</title><rect x="92.7594%" y="517" width="0.0128%" height="15" fill="rgb(218,40,45)" fg:x="2229564" fg:w="307"/><text x="93.0094%" y="527.50"></text></g><g><title>do_futex (306 samples, 0.01%)</title><rect x="92.7594%" y="501" width="0.0127%" height="15" fill="rgb(252,121,31)" fg:x="2229565" fg:w="306"/><text x="93.0094%" y="511.50"></text></g><g><title>futex_wake (304 samples, 0.01%)</title><rect x="92.7595%" y="485" width="0.0126%" height="15" fill="rgb(219,158,43)" fg:x="2229567" fg:w="304"/><text x="93.0095%" y="495.50"></text></g><g><title>wake_up_q (252 samples, 0.01%)</title><rect x="92.7616%" y="469" width="0.0105%" height="15" fill="rgb(231,162,42)" fg:x="2229619" fg:w="252"/><text x="93.0116%" y="479.50"></text></g><g><title>try_to_wake_up (251 samples, 0.01%)</title><rect x="92.7617%" y="453" width="0.0104%" height="15" fill="rgb(217,179,25)" fg:x="2229620" fg:w="251"/><text x="93.0117%" y="463.50"></text></g><g><title>do_syscall_64 (312 samples, 0.01%)</title><rect x="92.7593%" y="533" width="0.0130%" height="15" fill="rgb(206,212,31)" fg:x="2229562" fg:w="312"/><text x="93.0093%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (324 samples, 0.01%)</title><rect x="92.7592%" y="549" width="0.0135%" height="15" fill="rgb(235,144,12)" fg:x="2229561" fg:w="324"/><text x="93.0092%" y="559.50"></text></g><g><title>__pthread_cond_signal (352 samples, 0.01%)</title><rect x="92.7583%" y="581" width="0.0146%" height="15" fill="rgb(213,51,10)" fg:x="2229538" fg:w="352"/><text x="93.0083%" y="591.50"></text></g><g><title>futex_wake (340 samples, 0.01%)</title><rect x="92.7588%" y="565" width="0.0141%" height="15" fill="rgb(231,145,14)" fg:x="2229550" fg:w="340"/><text x="93.0088%" y="575.50"></text></g><g><title>Unsafe_Unpark (415 samples, 0.02%)</title><rect x="92.7557%" y="597" width="0.0173%" height="15" fill="rgb(235,15,28)" fg:x="2229477" fg:w="415"/><text x="93.0057%" y="607.50"></text></g><g><title>asm_common_interrupt (248 samples, 0.01%)</title><rect x="92.7800%" y="597" width="0.0103%" height="15" fill="rgb(237,206,10)" fg:x="2230061" fg:w="248"/><text x="93.0300%" y="607.50"></text></g><g><title>common_interrupt (248 samples, 0.01%)</title><rect x="92.7800%" y="581" width="0.0103%" height="15" fill="rgb(236,227,27)" fg:x="2230061" fg:w="248"/><text x="93.0300%" y="591.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (249 samples, 0.01%)</title><rect x="92.7911%" y="597" width="0.0104%" height="15" fill="rgb(246,83,35)" fg:x="2230326" fg:w="249"/><text x="93.0411%" y="607.50"></text></g><g><title>do_filp_open (317 samples, 0.01%)</title><rect x="92.8223%" y="501" width="0.0132%" height="15" fill="rgb(220,136,24)" fg:x="2231078" fg:w="317"/><text x="93.0723%" y="511.50"></text></g><g><title>path_openat (312 samples, 0.01%)</title><rect x="92.8226%" y="485" width="0.0130%" height="15" fill="rgb(217,3,25)" fg:x="2231083" fg:w="312"/><text x="93.0726%" y="495.50"></text></g><g><title>__x64_sys_openat (377 samples, 0.02%)</title><rect x="92.8214%" y="533" width="0.0157%" height="15" fill="rgb(239,24,14)" fg:x="2231056" fg:w="377"/><text x="93.0714%" y="543.50"></text></g><g><title>do_sys_openat2 (377 samples, 0.02%)</title><rect x="92.8214%" y="517" width="0.0157%" height="15" fill="rgb(244,16,53)" fg:x="2231056" fg:w="377"/><text x="93.0714%" y="527.50"></text></g><g><title>do_syscall_64 (379 samples, 0.02%)</title><rect x="92.8214%" y="549" width="0.0158%" height="15" fill="rgb(208,175,44)" fg:x="2231055" fg:w="379"/><text x="93.0714%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (382 samples, 0.02%)</title><rect x="92.8214%" y="565" width="0.0159%" height="15" fill="rgb(252,18,48)" fg:x="2231055" fg:w="382"/><text x="93.0714%" y="575.50"></text></g><g><title>__libc_open64 (390 samples, 0.02%)</title><rect x="92.8211%" y="581" width="0.0162%" height="15" fill="rgb(234,199,32)" fg:x="2231048" fg:w="390"/><text x="93.0711%" y="591.50"></text></g><g><title>fileOpen (534 samples, 0.02%)</title><rect x="92.8163%" y="597" width="0.0222%" height="15" fill="rgb(225,77,54)" fg:x="2230932" fg:w="534"/><text x="93.0663%" y="607.50"></text></g><g><title>[perf-996087.map] (114,921 samples, 4.78%)</title><rect x="88.0664%" y="613" width="4.7812%" height="15" fill="rgb(225,42,25)" fg:x="2116763" fg:w="114921"/><text x="88.3164%" y="623.50">[perf-..</text></g><g><title>SharedRuntime::resolve_sub_helper (284 samples, 0.01%)</title><rect x="92.8529%" y="597" width="0.0118%" height="15" fill="rgb(242,227,46)" fg:x="2231813" fg:w="284"/><text x="93.1029%" y="607.50"></text></g><g><title>new_sync_read (255 samples, 0.01%)</title><rect x="92.8897%" y="469" width="0.0106%" height="15" fill="rgb(246,197,35)" fg:x="2232698" fg:w="255"/><text x="93.1397%" y="479.50"></text></g><g><title>ksys_read (336 samples, 0.01%)</title><rect x="92.8875%" y="501" width="0.0140%" height="15" fill="rgb(215,159,26)" fg:x="2232645" fg:w="336"/><text x="93.1375%" y="511.50"></text></g><g><title>vfs_read (302 samples, 0.01%)</title><rect x="92.8890%" y="485" width="0.0126%" height="15" fill="rgb(212,194,50)" fg:x="2232679" fg:w="302"/><text x="93.1390%" y="495.50"></text></g><g><title>do_syscall_64 (341 samples, 0.01%)</title><rect x="92.8875%" y="517" width="0.0142%" height="15" fill="rgb(246,132,1)" fg:x="2232644" fg:w="341"/><text x="93.1375%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (352 samples, 0.01%)</title><rect x="92.8873%" y="533" width="0.0146%" height="15" fill="rgb(217,71,7)" fg:x="2232639" fg:w="352"/><text x="93.1373%" y="543.50"></text></g><g><title>__libc_read (371 samples, 0.02%)</title><rect x="92.8865%" y="565" width="0.0154%" height="15" fill="rgb(252,59,32)" fg:x="2232621" fg:w="371"/><text x="93.1365%" y="575.50"></text></g><g><title>__libc_read (370 samples, 0.02%)</title><rect x="92.8866%" y="549" width="0.0154%" height="15" fill="rgb(253,204,25)" fg:x="2232622" fg:w="370"/><text x="93.1366%" y="559.50"></text></g><g><title>handleRead (374 samples, 0.02%)</title><rect x="92.8865%" y="581" width="0.0156%" height="15" fill="rgb(232,21,16)" fg:x="2232620" fg:w="374"/><text x="93.1365%" y="591.50"></text></g><g><title>readBytes (522 samples, 0.02%)</title><rect x="92.8860%" y="597" width="0.0217%" height="15" fill="rgb(248,90,29)" fg:x="2232608" fg:w="522"/><text x="93.1360%" y="607.50"></text></g><g><title>[unknown] (1,499 samples, 0.06%)</title><rect x="92.8476%" y="613" width="0.0624%" height="15" fill="rgb(249,223,7)" fg:x="2231684" fg:w="1499"/><text x="93.0976%" y="623.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (277 samples, 0.01%)</title><rect x="92.9304%" y="613" width="0.0115%" height="15" fill="rgb(231,119,42)" fg:x="2233675" fg:w="277"/><text x="93.1804%" y="623.50"></text></g><g><title>skyframe-evalua (2,065,075 samples, 85.92%)</title><rect x="7.0383%" y="629" width="85.9159%" height="15" fill="rgb(215,41,35)" fg:x="169173" fg:w="2065075"/><text x="7.2883%" y="639.50">skyframe-evalua</text></g><g><title>kernel_init_free_pages (476 samples, 0.02%)</title><rect x="95.1849%" y="469" width="0.0198%" height="15" fill="rgb(220,44,45)" fg:x="2287864" fg:w="476"/><text x="95.4349%" y="479.50"></text></g><g><title>clear_page_erms (462 samples, 0.02%)</title><rect x="95.1855%" y="453" width="0.0192%" height="15" fill="rgb(253,197,36)" fg:x="2287878" fg:w="462"/><text x="95.4355%" y="463.50"></text></g><g><title>get_page_from_freelist (832 samples, 0.03%)</title><rect x="95.1703%" y="501" width="0.0346%" height="15" fill="rgb(245,225,54)" fg:x="2287513" fg:w="832"/><text x="95.4203%" y="511.50"></text></g><g><title>prep_new_page (508 samples, 0.02%)</title><rect x="95.1838%" y="485" width="0.0211%" height="15" fill="rgb(239,94,37)" fg:x="2287837" fg:w="508"/><text x="95.4338%" y="495.50"></text></g><g><title>__alloc_pages_nodemask (1,044 samples, 0.04%)</title><rect x="95.1617%" y="517" width="0.0434%" height="15" fill="rgb(242,217,10)" fg:x="2287307" fg:w="1044"/><text x="95.4117%" y="527.50"></text></g><g><title>alloc_pages_vma (1,124 samples, 0.05%)</title><rect x="95.1594%" y="533" width="0.0468%" height="15" fill="rgb(250,193,7)" fg:x="2287251" fg:w="1124"/><text x="95.4094%" y="543.50"></text></g><g><title>page_add_file_rmap (306 samples, 0.01%)</title><rect x="95.2499%" y="501" width="0.0127%" height="15" fill="rgb(230,104,19)" fg:x="2289426" fg:w="306"/><text x="95.4999%" y="511.50"></text></g><g><title>alloc_set_pte (468 samples, 0.02%)</title><rect x="95.2442%" y="517" width="0.0195%" height="15" fill="rgb(230,181,4)" fg:x="2289290" fg:w="468"/><text x="95.4942%" y="527.50"></text></g><g><title>filemap_map_pages (1,204 samples, 0.05%)</title><rect x="95.2224%" y="533" width="0.0501%" height="15" fill="rgb(216,219,49)" fg:x="2288766" fg:w="1204"/><text x="95.4724%" y="543.50"></text></g><g><title>lru_cache_add (279 samples, 0.01%)</title><rect x="95.2729%" y="533" width="0.0116%" height="15" fill="rgb(254,144,0)" fg:x="2289979" fg:w="279"/><text x="95.5229%" y="543.50"></text></g><g><title>mem_cgroup_charge (257 samples, 0.01%)</title><rect x="95.2848%" y="533" width="0.0107%" height="15" fill="rgb(205,209,38)" fg:x="2290266" fg:w="257"/><text x="95.5348%" y="543.50"></text></g><g><title>handle_mm_fault (4,231 samples, 0.18%)</title><rect x="95.1293%" y="549" width="0.1760%" height="15" fill="rgb(240,21,42)" fg:x="2286528" fg:w="4231"/><text x="95.3793%" y="559.50"></text></g><g><title>do_user_addr_fault (4,564 samples, 0.19%)</title><rect x="95.1186%" y="565" width="0.1899%" height="15" fill="rgb(241,132,3)" fg:x="2286271" fg:w="4564"/><text x="95.3686%" y="575.50"></text></g><g><title>exc_page_fault (4,611 samples, 0.19%)</title><rect x="95.1169%" y="581" width="0.1918%" height="15" fill="rgb(225,14,2)" fg:x="2286229" fg:w="4611"/><text x="95.3669%" y="591.50"></text></g><g><title>asm_exc_page_fault (4,699 samples, 0.20%)</title><rect x="95.1147%" y="597" width="0.1955%" height="15" fill="rgb(210,141,35)" fg:x="2286178" fg:w="4699"/><text x="95.3647%" y="607.50"></text></g><g><title>entry_SYSCALL_64 (2,161 samples, 0.09%)</title><rect x="95.3220%" y="597" width="0.0899%" height="15" fill="rgb(251,14,44)" fg:x="2291160" fg:w="2161"/><text x="95.5720%" y="607.50"></text></g><g><title>_copy_to_user (293 samples, 0.01%)</title><rect x="95.4738%" y="533" width="0.0122%" height="15" fill="rgb(247,48,18)" fg:x="2294809" fg:w="293"/><text x="95.7238%" y="543.50"></text></g><g><title>copy_user_enhanced_fast_string (250 samples, 0.01%)</title><rect x="95.4756%" y="517" width="0.0104%" height="15" fill="rgb(225,0,40)" fg:x="2294852" fg:w="250"/><text x="95.7256%" y="527.50"></text></g><g><title>cp_new_stat (534 samples, 0.02%)</title><rect x="95.4697%" y="549" width="0.0222%" height="15" fill="rgb(221,31,33)" fg:x="2294709" fg:w="534"/><text x="95.7197%" y="559.50"></text></g><g><title>btrfs_getattr (1,240 samples, 0.05%)</title><rect x="95.5018%" y="533" width="0.0516%" height="15" fill="rgb(237,42,40)" fg:x="2295481" fg:w="1240"/><text x="95.7518%" y="543.50"></text></g><g><title>security_inode_getattr (627 samples, 0.03%)</title><rect x="95.5569%" y="533" width="0.0261%" height="15" fill="rgb(233,51,29)" fg:x="2296805" fg:w="627"/><text x="95.8069%" y="543.50"></text></g><g><title>tomoyo_path_perm (432 samples, 0.02%)</title><rect x="95.5650%" y="517" width="0.0180%" height="15" fill="rgb(226,58,20)" fg:x="2297000" fg:w="432"/><text x="95.8150%" y="527.50"></text></g><g><title>__do_sys_newfstat (2,966 samples, 0.12%)</title><rect x="95.4686%" y="565" width="0.1234%" height="15" fill="rgb(208,98,7)" fg:x="2294683" fg:w="2966"/><text x="95.7186%" y="575.50"></text></g><g><title>vfs_fstat (2,406 samples, 0.10%)</title><rect x="95.4919%" y="549" width="0.1001%" height="15" fill="rgb(228,143,44)" fg:x="2295243" fg:w="2406"/><text x="95.7419%" y="559.50"></text></g><g><title>__close_fd (247 samples, 0.01%)</title><rect x="95.5968%" y="549" width="0.0103%" height="15" fill="rgb(246,55,38)" fg:x="2297764" fg:w="247"/><text x="95.8468%" y="559.50"></text></g><g><title>fput_many (383 samples, 0.02%)</title><rect x="95.6105%" y="533" width="0.0159%" height="15" fill="rgb(247,87,16)" fg:x="2298095" fg:w="383"/><text x="95.8605%" y="543.50"></text></g><g><title>task_work_add (261 samples, 0.01%)</title><rect x="95.6156%" y="517" width="0.0109%" height="15" fill="rgb(234,129,42)" fg:x="2298217" fg:w="261"/><text x="95.8656%" y="527.50"></text></g><g><title>__x64_sys_close (817 samples, 0.03%)</title><rect x="95.5959%" y="565" width="0.0340%" height="15" fill="rgb(220,82,16)" fg:x="2297742" fg:w="817"/><text x="95.8459%" y="575.50"></text></g><g><title>filp_close (548 samples, 0.02%)</title><rect x="95.6070%" y="549" width="0.0228%" height="15" fill="rgb(211,88,4)" fg:x="2298011" fg:w="548"/><text x="95.8570%" y="559.50"></text></g><g><title>bprm_execve (264 samples, 0.01%)</title><rect x="95.6301%" y="533" width="0.0110%" height="15" fill="rgb(248,151,21)" fg:x="2298564" fg:w="264"/><text x="95.8801%" y="543.50"></text></g><g><title>__x64_sys_execve (318 samples, 0.01%)</title><rect x="95.6299%" y="565" width="0.0132%" height="15" fill="rgb(238,163,6)" fg:x="2298560" fg:w="318"/><text x="95.8799%" y="575.50"></text></g><g><title>do_execveat_common (318 samples, 0.01%)</title><rect x="95.6299%" y="549" width="0.0132%" height="15" fill="rgb(209,183,11)" fg:x="2298560" fg:w="318"/><text x="95.8799%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (5,676 samples, 0.24%)</title><rect x="95.6727%" y="453" width="0.2361%" height="15" fill="rgb(219,37,20)" fg:x="2299590" fg:w="5676"/><text x="95.9227%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,593 samples, 0.23%)</title><rect x="95.6762%" y="437" width="0.2327%" height="15" fill="rgb(210,158,4)" fg:x="2299673" fg:w="5593"/><text x="95.9262%" y="447.50"></text></g><g><title>native_write_msr (5,563 samples, 0.23%)</title><rect x="95.6774%" y="421" width="0.2314%" height="15" fill="rgb(221,167,53)" fg:x="2299703" fg:w="5563"/><text x="95.9274%" y="431.50"></text></g><g><title>finish_task_switch (6,002 samples, 0.25%)</title><rect x="95.6685%" y="469" width="0.2497%" height="15" fill="rgb(237,151,45)" fg:x="2299488" fg:w="6002"/><text x="95.9185%" y="479.50"></text></g><g><title>futex_wait_queue_me (6,696 samples, 0.28%)</title><rect x="95.6519%" y="517" width="0.2786%" height="15" fill="rgb(231,39,3)" fg:x="2299088" fg:w="6696"/><text x="95.9019%" y="527.50"></text></g><g><title>schedule (6,621 samples, 0.28%)</title><rect x="95.6550%" y="501" width="0.2755%" height="15" fill="rgb(212,167,28)" fg:x="2299163" fg:w="6621"/><text x="95.9050%" y="511.50"></text></g><g><title>__schedule (6,608 samples, 0.27%)</title><rect x="95.6555%" y="485" width="0.2749%" height="15" fill="rgb(232,178,8)" fg:x="2299176" fg:w="6608"/><text x="95.9055%" y="495.50"></text></g><g><title>futex_wait (6,802 samples, 0.28%)</title><rect x="95.6497%" y="533" width="0.2830%" height="15" fill="rgb(225,151,20)" fg:x="2299036" fg:w="6802"/><text x="95.8997%" y="543.50"></text></g><g><title>__x64_sys_futex (7,438 samples, 0.31%)</title><rect x="95.6477%" y="565" width="0.3095%" height="15" fill="rgb(238,3,37)" fg:x="2298988" fg:w="7438"/><text x="95.8977%" y="575.50"></text></g><g><title>do_futex (7,415 samples, 0.31%)</title><rect x="95.6487%" y="549" width="0.3085%" height="15" fill="rgb(251,147,42)" fg:x="2299011" fg:w="7415"/><text x="95.8987%" y="559.50"></text></g><g><title>futex_wake (588 samples, 0.02%)</title><rect x="95.9327%" y="533" width="0.0245%" height="15" fill="rgb(208,173,10)" fg:x="2305838" fg:w="588"/><text x="96.1827%" y="543.50"></text></g><g><title>wake_up_q (496 samples, 0.02%)</title><rect x="95.9365%" y="517" width="0.0206%" height="15" fill="rgb(246,225,4)" fg:x="2305930" fg:w="496"/><text x="96.1865%" y="527.50"></text></g><g><title>try_to_wake_up (488 samples, 0.02%)</title><rect x="95.9368%" y="501" width="0.0203%" height="15" fill="rgb(248,102,6)" fg:x="2305938" fg:w="488"/><text x="96.1868%" y="511.50"></text></g><g><title>tlb_finish_mmu (477 samples, 0.02%)</title><rect x="95.9771%" y="501" width="0.0198%" height="15" fill="rgb(232,6,21)" fg:x="2306905" fg:w="477"/><text x="96.2271%" y="511.50"></text></g><g><title>release_pages (366 samples, 0.02%)</title><rect x="95.9817%" y="485" width="0.0152%" height="15" fill="rgb(221,179,22)" fg:x="2307016" fg:w="366"/><text x="96.2317%" y="495.50"></text></g><g><title>unmap_page_range (260 samples, 0.01%)</title><rect x="95.9972%" y="485" width="0.0108%" height="15" fill="rgb(252,50,20)" fg:x="2307389" fg:w="260"/><text x="96.2472%" y="495.50"></text></g><g><title>unmap_region (882 samples, 0.04%)</title><rect x="95.9715%" y="517" width="0.0367%" height="15" fill="rgb(222,56,38)" fg:x="2306770" fg:w="882"/><text x="96.2215%" y="527.50"></text></g><g><title>unmap_vmas (264 samples, 0.01%)</title><rect x="95.9972%" y="501" width="0.0110%" height="15" fill="rgb(206,193,29)" fg:x="2307388" fg:w="264"/><text x="96.2472%" y="511.50"></text></g><g><title>__do_munmap (1,126 samples, 0.05%)</title><rect x="95.9615%" y="533" width="0.0468%" height="15" fill="rgb(239,192,45)" fg:x="2306530" fg:w="1126"/><text x="96.2115%" y="543.50"></text></g><g><title>__vm_munmap (1,134 samples, 0.05%)</title><rect x="95.9613%" y="549" width="0.0472%" height="15" fill="rgb(254,18,36)" fg:x="2306527" fg:w="1134"/><text x="96.2113%" y="559.50"></text></g><g><title>__x64_sys_munmap (1,138 samples, 0.05%)</title><rect x="95.9613%" y="565" width="0.0473%" height="15" fill="rgb(221,127,11)" fg:x="2306526" fg:w="1138"/><text x="96.2113%" y="575.50"></text></g><g><title>do_filp_open (512 samples, 0.02%)</title><rect x="96.0093%" y="533" width="0.0213%" height="15" fill="rgb(234,146,35)" fg:x="2307680" fg:w="512"/><text x="96.2593%" y="543.50"></text></g><g><title>path_openat (510 samples, 0.02%)</title><rect x="96.0094%" y="517" width="0.0212%" height="15" fill="rgb(254,201,37)" fg:x="2307682" fg:w="510"/><text x="96.2594%" y="527.50"></text></g><g><title>__x64_sys_open (545 samples, 0.02%)</title><rect x="96.0089%" y="565" width="0.0227%" height="15" fill="rgb(211,202,23)" fg:x="2307670" fg:w="545"/><text x="96.2589%" y="575.50"></text></g><g><title>do_sys_openat2 (542 samples, 0.02%)</title><rect x="96.0090%" y="549" width="0.0225%" height="15" fill="rgb(237,91,2)" fg:x="2307673" fg:w="542"/><text x="96.2590%" y="559.50"></text></g><g><title>__alloc_fd (532 samples, 0.02%)</title><rect x="96.0413%" y="533" width="0.0221%" height="15" fill="rgb(226,228,36)" fg:x="2308448" fg:w="532"/><text x="96.2913%" y="543.50"></text></g><g><title>___slab_alloc (322 samples, 0.01%)</title><rect x="96.1399%" y="437" width="0.0134%" height="15" fill="rgb(213,63,50)" fg:x="2310818" fg:w="322"/><text x="96.3899%" y="447.50"></text></g><g><title>__slab_alloc (352 samples, 0.01%)</title><rect x="96.1388%" y="453" width="0.0146%" height="15" fill="rgb(235,194,19)" fg:x="2310791" fg:w="352"/><text x="96.3888%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (917 samples, 0.04%)</title><rect x="96.1535%" y="453" width="0.0382%" height="15" fill="rgb(207,204,18)" fg:x="2311146" fg:w="917"/><text x="96.4035%" y="463.50"></text></g><g><title>get_obj_cgroup_from_current (540 samples, 0.02%)</title><rect x="96.2034%" y="437" width="0.0225%" height="15" fill="rgb(248,8,7)" fg:x="2312344" fg:w="540"/><text x="96.4534%" y="447.50"></text></g><g><title>obj_cgroup_charge (260 samples, 0.01%)</title><rect x="96.2258%" y="437" width="0.0108%" height="15" fill="rgb(223,145,47)" fg:x="2312884" fg:w="260"/><text x="96.4758%" y="447.50"></text></g><g><title>kmem_cache_alloc (2,726 samples, 0.11%)</title><rect x="96.1235%" y="469" width="0.1134%" height="15" fill="rgb(228,84,11)" fg:x="2310425" fg:w="2726"/><text x="96.3735%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (963 samples, 0.04%)</title><rect x="96.1969%" y="453" width="0.0401%" height="15" fill="rgb(218,76,45)" fg:x="2312188" fg:w="963"/><text x="96.4469%" y="463.50"></text></g><g><title>apparmor_file_alloc_security (499 samples, 0.02%)</title><rect x="96.2414%" y="453" width="0.0208%" height="15" fill="rgb(223,80,15)" fg:x="2313258" fg:w="499"/><text x="96.4914%" y="463.50"></text></g><g><title>__alloc_file (3,978 samples, 0.17%)</title><rect x="96.1127%" y="485" width="0.1655%" height="15" fill="rgb(219,218,33)" fg:x="2310166" fg:w="3978"/><text x="96.3627%" y="495.50"></text></g><g><title>security_file_alloc (993 samples, 0.04%)</title><rect x="96.2369%" y="469" width="0.0413%" height="15" fill="rgb(208,51,11)" fg:x="2313151" fg:w="993"/><text x="96.4869%" y="479.50"></text></g><g><title>kmem_cache_alloc (386 samples, 0.02%)</title><rect x="96.2622%" y="453" width="0.0161%" height="15" fill="rgb(229,165,39)" fg:x="2313758" fg:w="386"/><text x="96.5122%" y="463.50"></text></g><g><title>alloc_empty_file (4,099 samples, 0.17%)</title><rect x="96.1090%" y="501" width="0.1705%" height="15" fill="rgb(241,100,24)" fg:x="2310076" fg:w="4099"/><text x="96.3590%" y="511.50"></text></g><g><title>errseq_sample (417 samples, 0.02%)</title><rect x="96.2991%" y="485" width="0.0173%" height="15" fill="rgb(228,14,23)" fg:x="2314646" fg:w="417"/><text x="96.5491%" y="495.50"></text></g><g><title>apparmor_file_open (352 samples, 0.01%)</title><rect x="96.3328%" y="469" width="0.0146%" height="15" fill="rgb(247,116,52)" fg:x="2315454" fg:w="352"/><text x="96.5828%" y="479.50"></text></g><g><title>tomoyo_check_open_permission (610 samples, 0.03%)</title><rect x="96.3474%" y="469" width="0.0254%" height="15" fill="rgb(216,149,33)" fg:x="2315806" fg:w="610"/><text x="96.5974%" y="479.50"></text></g><g><title>do_dentry_open (2,271 samples, 0.09%)</title><rect x="96.2805%" y="501" width="0.0945%" height="15" fill="rgb(238,142,29)" fg:x="2314197" fg:w="2271"/><text x="96.5305%" y="511.50"></text></g><g><title>security_file_open (1,079 samples, 0.04%)</title><rect x="96.3300%" y="485" width="0.0449%" height="15" fill="rgb(224,83,40)" fg:x="2315389" fg:w="1079"/><text x="96.5800%" y="495.50"></text></g><g><title>btrfs_dentry_delete (500 samples, 0.02%)</title><rect x="96.3865%" y="485" width="0.0208%" height="15" fill="rgb(234,165,11)" fg:x="2316746" fg:w="500"/><text x="96.6365%" y="495.50"></text></g><g><title>dput (661 samples, 0.03%)</title><rect x="96.3842%" y="501" width="0.0275%" height="15" fill="rgb(215,96,23)" fg:x="2316691" fg:w="661"/><text x="96.6342%" y="511.50"></text></g><g><title>generic_permission (1,332 samples, 0.06%)</title><rect x="96.7459%" y="469" width="0.0554%" height="15" fill="rgb(233,179,26)" fg:x="2325384" fg:w="1332"/><text x="96.9959%" y="479.50"></text></g><g><title>inode_permission.part.0 (4,816 samples, 0.20%)</title><rect x="96.6010%" y="485" width="0.2004%" height="15" fill="rgb(225,129,33)" fg:x="2321901" fg:w="4816"/><text x="96.8510%" y="495.50"></text></g><g><title>security_inode_permission (492 samples, 0.02%)</title><rect x="96.8013%" y="485" width="0.0205%" height="15" fill="rgb(237,49,13)" fg:x="2326717" fg:w="492"/><text x="97.0513%" y="495.50"></text></g><g><title>dput (360 samples, 0.01%)</title><rect x="96.8763%" y="469" width="0.0150%" height="15" fill="rgb(211,3,31)" fg:x="2328518" fg:w="360"/><text x="97.1263%" y="479.50"></text></g><g><title>_raw_spin_lock (2,747 samples, 0.11%)</title><rect x="97.0540%" y="437" width="0.1143%" height="15" fill="rgb(216,152,19)" fg:x="2332789" fg:w="2747"/><text x="97.3040%" y="447.50"></text></g><g><title>__d_lookup (5,511 samples, 0.23%)</title><rect x="96.9413%" y="453" width="0.2293%" height="15" fill="rgb(251,121,35)" fg:x="2330081" fg:w="5511"/><text x="97.1913%" y="463.50"></text></g><g><title>__d_lookup_rcu (3,628 samples, 0.15%)</title><rect x="97.1706%" y="453" width="0.1509%" height="15" fill="rgb(210,217,47)" fg:x="2335592" fg:w="3628"/><text x="97.4206%" y="463.50"></text></g><g><title>lookup_fast (10,346 samples, 0.43%)</title><rect x="96.8912%" y="469" width="0.4304%" height="15" fill="rgb(244,116,22)" fg:x="2328878" fg:w="10346"/><text x="97.1412%" y="479.50"></text></g><g><title>__traverse_mounts (323 samples, 0.01%)</title><rect x="97.4164%" y="453" width="0.0134%" height="15" fill="rgb(228,17,21)" fg:x="2341500" fg:w="323"/><text x="97.6664%" y="463.50"></text></g><g><title>_cond_resched (289 samples, 0.01%)</title><rect x="97.4523%" y="437" width="0.0120%" height="15" fill="rgb(240,149,34)" fg:x="2342363" fg:w="289"/><text x="97.7023%" y="447.50"></text></g><g><title>dput (2,176 samples, 0.09%)</title><rect x="97.4352%" y="453" width="0.0905%" height="15" fill="rgb(208,125,47)" fg:x="2341952" fg:w="2176"/><text x="97.6852%" y="463.50"></text></g><g><title>lockref_put_or_lock (1,473 samples, 0.06%)</title><rect x="97.4644%" y="437" width="0.0613%" height="15" fill="rgb(249,186,39)" fg:x="2342655" fg:w="1473"/><text x="97.7144%" y="447.50"></text></g><g><title>dput (340 samples, 0.01%)</title><rect x="97.5274%" y="437" width="0.0141%" height="15" fill="rgb(240,220,33)" fg:x="2344168" fg:w="340"/><text x="97.7774%" y="447.50"></text></g><g><title>lockref_put_or_lock (264 samples, 0.01%)</title><rect x="97.5305%" y="421" width="0.0110%" height="15" fill="rgb(243,110,23)" fg:x="2344244" fg:w="264"/><text x="97.7805%" y="431.50"></text></g><g><title>nd_jump_root (644 samples, 0.03%)</title><rect x="97.5258%" y="453" width="0.0268%" height="15" fill="rgb(219,163,46)" fg:x="2344131" fg:w="644"/><text x="97.7758%" y="463.50"></text></g><g><title>do_read_cache_page (673 samples, 0.03%)</title><rect x="97.5562%" y="437" width="0.0280%" height="15" fill="rgb(216,126,30)" fg:x="2344862" fg:w="673"/><text x="97.8062%" y="447.50"></text></g><g><title>pagecache_get_page (539 samples, 0.02%)</title><rect x="97.5618%" y="421" width="0.0224%" height="15" fill="rgb(208,139,11)" fg:x="2344996" fg:w="539"/><text x="97.8118%" y="431.50"></text></g><g><title>find_get_entry (466 samples, 0.02%)</title><rect x="97.5649%" y="405" width="0.0194%" height="15" fill="rgb(213,118,36)" fg:x="2345069" fg:w="466"/><text x="97.8149%" y="415.50"></text></g><g><title>page_get_link (780 samples, 0.03%)</title><rect x="97.5526%" y="453" width="0.0325%" height="15" fill="rgb(226,43,17)" fg:x="2344775" fg:w="780"/><text x="97.8026%" y="463.50"></text></g><g><title>touch_atime (441 samples, 0.02%)</title><rect x="97.5858%" y="453" width="0.0183%" height="15" fill="rgb(254,217,4)" fg:x="2345572" fg:w="441"/><text x="97.8358%" y="463.50"></text></g><g><title>__legitimize_mnt (277 samples, 0.01%)</title><rect x="97.6083%" y="421" width="0.0115%" height="15" fill="rgb(210,134,47)" fg:x="2346114" fg:w="277"/><text x="97.8583%" y="431.50"></text></g><g><title>__legitimize_path (648 samples, 0.03%)</title><rect x="97.6070%" y="437" width="0.0270%" height="15" fill="rgb(237,24,49)" fg:x="2346082" fg:w="648"/><text x="97.8570%" y="447.50"></text></g><g><title>lockref_get_not_dead (339 samples, 0.01%)</title><rect x="97.6199%" y="421" width="0.0141%" height="15" fill="rgb(251,39,46)" fg:x="2346391" fg:w="339"/><text x="97.8699%" y="431.50"></text></g><g><title>__legitimize_mnt (382 samples, 0.02%)</title><rect x="97.6394%" y="405" width="0.0159%" height="15" fill="rgb(251,220,3)" fg:x="2346860" fg:w="382"/><text x="97.8894%" y="415.50"></text></g><g><title>legitimize_links (826 samples, 0.03%)</title><rect x="97.6340%" y="437" width="0.0344%" height="15" fill="rgb(228,105,12)" fg:x="2346730" fg:w="826"/><text x="97.8840%" y="447.50"></text></g><g><title>__legitimize_path (733 samples, 0.03%)</title><rect x="97.6378%" y="421" width="0.0305%" height="15" fill="rgb(215,196,1)" fg:x="2346823" fg:w="733"/><text x="97.8878%" y="431.50"></text></g><g><title>lockref_get_not_dead (314 samples, 0.01%)</title><rect x="97.6553%" y="405" width="0.0131%" height="15" fill="rgb(214,33,39)" fg:x="2347242" fg:w="314"/><text x="97.9053%" y="415.50"></text></g><g><title>link_path_walk.part.0 (30,224 samples, 1.26%)</title><rect x="96.4117%" y="501" width="1.2574%" height="15" fill="rgb(220,19,52)" fg:x="2317352" fg:w="30224"/><text x="96.6617%" y="511.50"></text></g><g><title>walk_component (20,367 samples, 0.85%)</title><rect x="96.8218%" y="485" width="0.8474%" height="15" fill="rgb(221,78,38)" fg:x="2327209" fg:w="20367"/><text x="97.0718%" y="495.50"></text></g><g><title>step_into (8,165 samples, 0.34%)</title><rect x="97.3295%" y="469" width="0.3397%" height="15" fill="rgb(253,30,16)" fg:x="2339411" fg:w="8165"/><text x="97.5795%" y="479.50"></text></g><g><title>try_to_unlazy (1,563 samples, 0.07%)</title><rect x="97.6041%" y="453" width="0.0650%" height="15" fill="rgb(242,65,0)" fg:x="2346013" fg:w="1563"/><text x="97.8541%" y="463.50"></text></g><g><title>__d_lookup (1,589 samples, 0.07%)</title><rect x="97.6728%" y="485" width="0.0661%" height="15" fill="rgb(235,201,12)" fg:x="2347664" fg:w="1589"/><text x="97.9228%" y="495.50"></text></g><g><title>__d_lookup_rcu (1,650 samples, 0.07%)</title><rect x="97.7389%" y="485" width="0.0686%" height="15" fill="rgb(233,161,9)" fg:x="2349253" fg:w="1650"/><text x="97.9889%" y="495.50"></text></g><g><title>lookup_fast (3,328 samples, 0.14%)</title><rect x="97.6692%" y="501" width="0.1385%" height="15" fill="rgb(241,207,41)" fg:x="2347576" fg:w="3328"/><text x="97.9192%" y="511.50"></text></g><g><title>may_open (971 samples, 0.04%)</title><rect x="97.8076%" y="501" width="0.0404%" height="15" fill="rgb(212,69,46)" fg:x="2350904" fg:w="971"/><text x="98.0576%" y="511.50"></text></g><g><title>__fget_light (325 samples, 0.01%)</title><rect x="97.8657%" y="485" width="0.0135%" height="15" fill="rgb(239,69,45)" fg:x="2352301" fg:w="325"/><text x="98.1157%" y="495.50"></text></g><g><title>__fget_files (275 samples, 0.01%)</title><rect x="97.8678%" y="469" width="0.0114%" height="15" fill="rgb(242,117,48)" fg:x="2352351" fg:w="275"/><text x="98.1178%" y="479.50"></text></g><g><title>path_init (708 samples, 0.03%)</title><rect x="97.8540%" y="501" width="0.0295%" height="15" fill="rgb(228,41,36)" fg:x="2352018" fg:w="708"/><text x="98.1040%" y="511.50"></text></g><g><title>atime_needs_update (250 samples, 0.01%)</title><rect x="97.9567%" y="485" width="0.0104%" height="15" fill="rgb(212,3,32)" fg:x="2354487" fg:w="250"/><text x="98.2067%" y="495.50"></text></g><g><title>__alloc_pages_nodemask (291 samples, 0.01%)</title><rect x="97.9890%" y="453" width="0.0121%" height="15" fill="rgb(233,41,49)" fg:x="2355264" fg:w="291"/><text x="98.2390%" y="463.50"></text></g><g><title>__add_to_page_cache_locked (248 samples, 0.01%)</title><rect x="98.0015%" y="437" width="0.0103%" height="15" fill="rgb(252,170,49)" fg:x="2355564" fg:w="248"/><text x="98.2515%" y="447.50"></text></g><g><title>add_to_page_cache_lru (337 samples, 0.01%)</title><rect x="98.0011%" y="453" width="0.0140%" height="15" fill="rgb(229,53,26)" fg:x="2355555" fg:w="337"/><text x="98.2511%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (273 samples, 0.01%)</title><rect x="98.0523%" y="325" width="0.0114%" height="15" fill="rgb(217,157,12)" fg:x="2356785" fg:w="273"/><text x="98.3023%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath (249 samples, 0.01%)</title><rect x="98.0533%" y="309" width="0.0104%" height="15" fill="rgb(227,17,9)" fg:x="2356809" fg:w="249"/><text x="98.3033%" y="319.50"></text></g><g><title>prepare_to_wait_event (313 samples, 0.01%)</title><rect x="98.0509%" y="341" width="0.0130%" height="15" fill="rgb(218,84,12)" fg:x="2356752" fg:w="313"/><text x="98.3009%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (519 samples, 0.02%)</title><rect x="98.0776%" y="293" width="0.0216%" height="15" fill="rgb(212,79,24)" fg:x="2357393" fg:w="519"/><text x="98.3276%" y="303.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (505 samples, 0.02%)</title><rect x="98.0782%" y="277" width="0.0210%" height="15" fill="rgb(217,222,37)" fg:x="2357407" fg:w="505"/><text x="98.3282%" y="287.50"></text></g><g><title>native_write_msr (502 samples, 0.02%)</title><rect x="98.0783%" y="261" width="0.0209%" height="15" fill="rgb(246,208,8)" fg:x="2357410" fg:w="502"/><text x="98.3283%" y="271.50"></text></g><g><title>finish_task_switch (544 samples, 0.02%)</title><rect x="98.0771%" y="309" width="0.0226%" height="15" fill="rgb(244,133,10)" fg:x="2357381" fg:w="544"/><text x="98.3271%" y="319.50"></text></g><g><title>__btrfs_tree_read_lock (1,383 samples, 0.06%)</title><rect x="98.0457%" y="357" width="0.0575%" height="15" fill="rgb(209,219,41)" fg:x="2356626" fg:w="1383"/><text x="98.2957%" y="367.50"></text></g><g><title>schedule (718 samples, 0.03%)</title><rect x="98.0733%" y="341" width="0.0299%" height="15" fill="rgb(253,175,45)" fg:x="2357291" fg:w="718"/><text x="98.3233%" y="351.50"></text></g><g><title>__schedule (716 samples, 0.03%)</title><rect x="98.0734%" y="325" width="0.0298%" height="15" fill="rgb(235,100,37)" fg:x="2357293" fg:w="716"/><text x="98.3234%" y="335.50"></text></g><g><title>__btrfs_read_lock_root_node (1,436 samples, 0.06%)</title><rect x="98.0456%" y="373" width="0.0597%" height="15" fill="rgb(225,87,19)" fg:x="2356623" fg:w="1436"/><text x="98.2956%" y="383.50"></text></g><g><title>find_extent_buffer (255 samples, 0.01%)</title><rect x="98.1336%" y="357" width="0.0106%" height="15" fill="rgb(217,152,17)" fg:x="2358740" fg:w="255"/><text x="98.3836%" y="367.50"></text></g><g><title>read_block_for_search.isra.0 (397 samples, 0.02%)</title><rect x="98.1289%" y="373" width="0.0165%" height="15" fill="rgb(235,72,13)" fg:x="2358627" fg:w="397"/><text x="98.3789%" y="383.50"></text></g><g><title>btrfs_lookup_file_extent (2,493 samples, 0.10%)</title><rect x="98.0428%" y="405" width="0.1037%" height="15" fill="rgb(233,140,18)" fg:x="2356557" fg:w="2493"/><text x="98.2928%" y="415.50"></text></g><g><title>btrfs_search_slot (2,487 samples, 0.10%)</title><rect x="98.0431%" y="389" width="0.1035%" height="15" fill="rgb(207,212,28)" fg:x="2356563" fg:w="2487"/><text x="98.2931%" y="399.50"></text></g><g><title>btrfs_get_extent (3,263 samples, 0.14%)</title><rect x="98.0272%" y="421" width="0.1358%" height="15" fill="rgb(220,130,25)" fg:x="2356181" fg:w="3263"/><text x="98.2772%" y="431.50"></text></g><g><title>btrfs_do_readpage (3,574 samples, 0.15%)</title><rect x="98.0168%" y="437" width="0.1487%" height="15" fill="rgb(205,55,34)" fg:x="2355931" fg:w="3574"/><text x="98.2668%" y="447.50"></text></g><g><title>btrfs_readpage (3,784 samples, 0.16%)</title><rect x="98.0161%" y="453" width="0.1574%" height="15" fill="rgb(237,54,35)" fg:x="2355915" fg:w="3784"/><text x="98.2661%" y="463.50"></text></g><g><title>do_read_cache_page (4,502 samples, 0.19%)</title><rect x="97.9876%" y="469" width="0.1873%" height="15" fill="rgb(208,67,23)" fg:x="2355231" fg:w="4502"/><text x="98.2376%" y="479.50"></text></g><g><title>pagecache_get_page (694 samples, 0.03%)</title><rect x="98.1749%" y="469" width="0.0289%" height="15" fill="rgb(206,207,50)" fg:x="2359733" fg:w="694"/><text x="98.4249%" y="479.50"></text></g><g><title>find_get_entry (647 samples, 0.03%)</title><rect x="98.1769%" y="453" width="0.0269%" height="15" fill="rgb(213,211,42)" fg:x="2359780" fg:w="647"/><text x="98.4269%" y="463.50"></text></g><g><title>page_get_link (5,356 samples, 0.22%)</title><rect x="97.9811%" y="485" width="0.2228%" height="15" fill="rgb(252,197,50)" fg:x="2355073" fg:w="5356"/><text x="98.2311%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (426 samples, 0.02%)</title><rect x="98.2102%" y="437" width="0.0177%" height="15" fill="rgb(251,211,41)" fg:x="2360581" fg:w="426"/><text x="98.4602%" y="447.50"></text></g><g><title>btrfs_update_inode (474 samples, 0.02%)</title><rect x="98.2100%" y="453" width="0.0197%" height="15" fill="rgb(229,211,5)" fg:x="2360575" fg:w="474"/><text x="98.4600%" y="463.50"></text></g><g><title>btrfs_dirty_inode (743 samples, 0.03%)</title><rect x="98.2062%" y="469" width="0.0309%" height="15" fill="rgb(239,36,31)" fg:x="2360484" fg:w="743"/><text x="98.4562%" y="479.50"></text></g><g><title>touch_atime (818 samples, 0.03%)</title><rect x="98.2047%" y="485" width="0.0340%" height="15" fill="rgb(248,67,31)" fg:x="2360448" fg:w="818"/><text x="98.4547%" y="495.50"></text></g><g><title>step_into (8,568 samples, 0.36%)</title><rect x="97.8837%" y="501" width="0.3565%" height="15" fill="rgb(249,55,44)" fg:x="2352733" fg:w="8568"/><text x="98.1337%" y="511.50"></text></g><g><title>dput (489 samples, 0.02%)</title><rect x="98.2425%" y="485" width="0.0203%" height="15" fill="rgb(216,82,12)" fg:x="2361356" fg:w="489"/><text x="98.4925%" y="495.50"></text></g><g><title>lockref_put_or_lock (363 samples, 0.02%)</title><rect x="98.2477%" y="469" width="0.0151%" height="15" fill="rgb(242,174,1)" fg:x="2361482" fg:w="363"/><text x="98.4977%" y="479.50"></text></g><g><title>terminate_walk (675 samples, 0.03%)</title><rect x="98.2402%" y="501" width="0.0281%" height="15" fill="rgb(208,120,29)" fg:x="2361301" fg:w="675"/><text x="98.4902%" y="511.50"></text></g><g><title>do_filp_open (52,614 samples, 2.19%)</title><rect x="96.0805%" y="533" width="2.1890%" height="15" fill="rgb(221,105,43)" fg:x="2309392" fg:w="52614"/><text x="96.3305%" y="543.50">d..</text></g><g><title>path_openat (52,395 samples, 2.18%)</title><rect x="96.0897%" y="517" width="2.1799%" height="15" fill="rgb(234,124,22)" fg:x="2309611" fg:w="52395"/><text x="96.3397%" y="527.50">p..</text></g><g><title>memset_erms (1,065 samples, 0.04%)</title><rect x="98.3030%" y="501" width="0.0443%" height="15" fill="rgb(212,23,30)" fg:x="2362810" fg:w="1065"/><text x="98.5530%" y="511.50"></text></g><g><title>kmem_cache_alloc (1,686 samples, 0.07%)</title><rect x="98.2877%" y="517" width="0.0701%" height="15" fill="rgb(219,122,53)" fg:x="2362442" fg:w="1686"/><text x="98.5377%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (253 samples, 0.01%)</title><rect x="98.3473%" y="501" width="0.0105%" height="15" fill="rgb(248,84,24)" fg:x="2363875" fg:w="253"/><text x="98.5973%" y="511.50"></text></g><g><title>__virt_addr_valid (339 samples, 0.01%)</title><rect x="98.3867%" y="485" width="0.0141%" height="15" fill="rgb(245,115,18)" fg:x="2364822" fg:w="339"/><text x="98.6367%" y="495.50"></text></g><g><title>getname_flags.part.0 (2,876 samples, 0.12%)</title><rect x="98.2821%" y="533" width="0.1197%" height="15" fill="rgb(227,176,51)" fg:x="2362308" fg:w="2876"/><text x="98.5321%" y="543.50"></text></g><g><title>strncpy_from_user (1,056 samples, 0.04%)</title><rect x="98.3578%" y="517" width="0.0439%" height="15" fill="rgb(229,63,42)" fg:x="2364128" fg:w="1056"/><text x="98.6078%" y="527.50"></text></g><g><title>__check_object_size (621 samples, 0.03%)</title><rect x="98.3759%" y="501" width="0.0258%" height="15" fill="rgb(247,202,24)" fg:x="2364563" fg:w="621"/><text x="98.6259%" y="511.50"></text></g><g><title>kmem_cache_free (444 samples, 0.02%)</title><rect x="98.4017%" y="533" width="0.0185%" height="15" fill="rgb(244,173,20)" fg:x="2365184" fg:w="444"/><text x="98.6517%" y="543.50"></text></g><g><title>__x64_sys_openat (57,479 samples, 2.39%)</title><rect x="96.0316%" y="565" width="2.3914%" height="15" fill="rgb(242,81,47)" fg:x="2308215" fg:w="57479"/><text x="96.2816%" y="575.50">__..</text></g><g><title>do_sys_openat2 (57,409 samples, 2.39%)</title><rect x="96.0345%" y="549" width="2.3885%" height="15" fill="rgb(231,185,54)" fg:x="2308285" fg:w="57409"/><text x="96.2845%" y="559.50">do..</text></g><g><title>__fget_files (1,149 samples, 0.05%)</title><rect x="98.4796%" y="517" width="0.0478%" height="15" fill="rgb(243,55,32)" fg:x="2367056" fg:w="1149"/><text x="98.7296%" y="527.50"></text></g><g><title>__fget_light (1,342 samples, 0.06%)</title><rect x="98.4716%" y="533" width="0.0558%" height="15" fill="rgb(208,167,19)" fg:x="2366864" fg:w="1342"/><text x="98.7216%" y="543.50"></text></g><g><title>__fdget_pos (2,429 samples, 0.10%)</title><rect x="98.4582%" y="549" width="0.1011%" height="15" fill="rgb(231,72,35)" fg:x="2366541" fg:w="2429"/><text x="98.7082%" y="559.50"></text></g><g><title>mutex_lock (762 samples, 0.03%)</title><rect x="98.5275%" y="533" width="0.0317%" height="15" fill="rgb(250,173,51)" fg:x="2368208" fg:w="762"/><text x="98.7775%" y="543.50"></text></g><g><title>fput_many (516 samples, 0.02%)</title><rect x="98.5603%" y="549" width="0.0215%" height="15" fill="rgb(209,5,22)" fg:x="2368995" fg:w="516"/><text x="98.8103%" y="559.50"></text></g><g><title>mutex_unlock (622 samples, 0.03%)</title><rect x="98.5818%" y="549" width="0.0259%" height="15" fill="rgb(250,174,19)" fg:x="2369511" fg:w="622"/><text x="98.8318%" y="559.50"></text></g><g><title>__fsnotify_parent (1,043 samples, 0.04%)</title><rect x="98.6620%" y="533" width="0.0434%" height="15" fill="rgb(217,3,49)" fg:x="2371441" fg:w="1043"/><text x="98.9120%" y="543.50"></text></g><g><title>asm_exc_page_fault (334 samples, 0.01%)</title><rect x="99.1569%" y="469" width="0.0139%" height="15" fill="rgb(218,225,5)" fg:x="2383336" fg:w="334"/><text x="99.4069%" y="479.50"></text></g><g><title>copy_user_enhanced_fast_string (5,747 samples, 0.24%)</title><rect x="98.9329%" y="485" width="0.2391%" height="15" fill="rgb(236,89,11)" fg:x="2377950" fg:w="5747"/><text x="99.1829%" y="495.50"></text></g><g><title>copy_page_to_iter (7,102 samples, 0.30%)</title><rect x="98.8789%" y="501" width="0.2955%" height="15" fill="rgb(206,33,28)" fg:x="2376653" fg:w="7102"/><text x="99.1289%" y="511.50"></text></g><g><title>pagecache_get_page (3,674 samples, 0.15%)</title><rect x="99.1811%" y="501" width="0.1529%" height="15" fill="rgb(241,56,42)" fg:x="2383916" fg:w="3674"/><text x="99.4311%" y="511.50"></text></g><g><title>find_get_entry (3,070 samples, 0.13%)</title><rect x="99.2062%" y="485" width="0.1277%" height="15" fill="rgb(222,44,11)" fg:x="2384520" fg:w="3070"/><text x="99.4562%" y="495.50"></text></g><g><title>xas_load (880 samples, 0.04%)</title><rect x="99.2973%" y="469" width="0.0366%" height="15" fill="rgb(234,111,20)" fg:x="2386710" fg:w="880"/><text x="99.5473%" y="479.50"></text></g><g><title>xas_start (613 samples, 0.03%)</title><rect x="99.3084%" y="453" width="0.0255%" height="15" fill="rgb(237,77,6)" fg:x="2386977" fg:w="613"/><text x="99.5584%" y="463.50"></text></g><g><title>generic_file_buffered_read (15,085 samples, 0.63%)</title><rect x="98.7587%" y="517" width="0.6276%" height="15" fill="rgb(235,111,23)" fg:x="2373765" fg:w="15085"/><text x="99.0087%" y="527.50"></text></g><g><title>touch_atime (1,260 samples, 0.05%)</title><rect x="99.3339%" y="501" width="0.0524%" height="15" fill="rgb(251,135,29)" fg:x="2387590" fg:w="1260"/><text x="99.5839%" y="511.50"></text></g><g><title>atime_needs_update (988 samples, 0.04%)</title><rect x="99.3452%" y="485" width="0.0411%" height="15" fill="rgb(217,57,1)" fg:x="2387862" fg:w="988"/><text x="99.5952%" y="495.50"></text></g><g><title>current_time (538 samples, 0.02%)</title><rect x="99.3640%" y="469" width="0.0224%" height="15" fill="rgb(249,119,31)" fg:x="2388312" fg:w="538"/><text x="99.6140%" y="479.50"></text></g><g><title>new_sync_read (16,500 samples, 0.69%)</title><rect x="98.7057%" y="533" width="0.6865%" height="15" fill="rgb(233,164,33)" fg:x="2372490" fg:w="16500"/><text x="98.9557%" y="543.50"></text></g><g><title>aa_file_perm (339 samples, 0.01%)</title><rect x="99.4576%" y="501" width="0.0141%" height="15" fill="rgb(250,217,43)" fg:x="2390563" fg:w="339"/><text x="99.7076%" y="511.50"></text></g><g><title>apparmor_file_permission (1,170 samples, 0.05%)</title><rect x="99.4232%" y="517" width="0.0487%" height="15" fill="rgb(232,154,50)" fg:x="2389736" fg:w="1170"/><text x="99.6732%" y="527.50"></text></g><g><title>security_file_permission (1,715 samples, 0.07%)</title><rect x="99.4006%" y="533" width="0.0714%" height="15" fill="rgb(227,190,8)" fg:x="2389193" fg:w="1715"/><text x="99.6506%" y="543.50"></text></g><g><title>ksys_read (24,805 samples, 1.03%)</title><rect x="98.4400%" y="565" width="1.0320%" height="15" fill="rgb(209,217,32)" fg:x="2366104" fg:w="24805"/><text x="98.6900%" y="575.50"></text></g><g><title>vfs_read (20,776 samples, 0.86%)</title><rect x="98.6076%" y="549" width="0.8644%" height="15" fill="rgb(243,203,50)" fg:x="2370133" fg:w="20776"/><text x="98.8576%" y="559.50"></text></g><g><title>syscall_enter_from_user_mode (247 samples, 0.01%)</title><rect x="99.4727%" y="565" width="0.0103%" height="15" fill="rgb(232,152,27)" fg:x="2390925" fg:w="247"/><text x="99.7227%" y="575.50"></text></g><g><title>do_mmap (509 samples, 0.02%)</title><rect x="99.4833%" y="549" width="0.0212%" height="15" fill="rgb(240,34,29)" fg:x="2391181" fg:w="509"/><text x="99.7333%" y="559.50"></text></g><g><title>mmap_region (405 samples, 0.02%)</title><rect x="99.4876%" y="533" width="0.0168%" height="15" fill="rgb(215,185,52)" fg:x="2391285" fg:w="405"/><text x="99.7376%" y="543.50"></text></g><g><title>do_syscall_64 (97,790 samples, 4.07%)</title><rect x="95.4399%" y="581" width="4.0685%" height="15" fill="rgb(240,89,49)" fg:x="2293993" fg:w="97790"/><text x="95.6899%" y="591.50">do_s..</text></g><g><title>vm_mmap_pgoff (611 samples, 0.03%)</title><rect x="99.4829%" y="565" width="0.0254%" height="15" fill="rgb(225,12,52)" fg:x="2391172" fg:w="611"/><text x="99.7329%" y="575.50"></text></g><g><title>btrfs_release_file (578 samples, 0.02%)</title><rect x="99.5923%" y="517" width="0.0240%" height="15" fill="rgb(239,128,45)" fg:x="2393800" fg:w="578"/><text x="99.8423%" y="527.50"></text></g><g><title>dput (352 samples, 0.01%)</title><rect x="99.6163%" y="517" width="0.0146%" height="15" fill="rgb(211,78,47)" fg:x="2394378" fg:w="352"/><text x="99.8663%" y="527.50"></text></g><g><title>kmem_cache_free (332 samples, 0.01%)</title><rect x="99.6310%" y="517" width="0.0138%" height="15" fill="rgb(232,31,21)" fg:x="2394731" fg:w="332"/><text x="99.8810%" y="527.50"></text></g><g><title>__fput (2,378 samples, 0.10%)</title><rect x="99.5754%" y="533" width="0.0989%" height="15" fill="rgb(222,168,14)" fg:x="2393394" fg:w="2378"/><text x="99.8254%" y="543.50"></text></g><g><title>security_file_free (335 samples, 0.01%)</title><rect x="99.6604%" y="517" width="0.0139%" height="15" fill="rgb(209,128,24)" fg:x="2395437" fg:w="335"/><text x="99.9104%" y="527.50"></text></g><g><title>apparmor_file_free_security (267 samples, 0.01%)</title><rect x="99.6632%" y="501" width="0.0111%" height="15" fill="rgb(249,35,13)" fg:x="2395505" fg:w="267"/><text x="99.9132%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (103,074 samples, 4.29%)</title><rect x="95.4119%" y="597" width="4.2883%" height="15" fill="rgb(218,7,2)" fg:x="2293321" fg:w="103074"/><text x="95.6619%" y="607.50">entry..</text></g><g><title>syscall_exit_to_user_mode (4,612 samples, 0.19%)</title><rect x="99.5084%" y="581" width="0.1919%" height="15" fill="rgb(238,107,27)" fg:x="2391783" fg:w="4612"/><text x="99.7584%" y="591.50"></text></g><g><title>exit_to_user_mode_prepare (4,314 samples, 0.18%)</title><rect x="99.5208%" y="565" width="0.1795%" height="15" fill="rgb(217,88,38)" fg:x="2392081" fg:w="4314"/><text x="99.7708%" y="575.50"></text></g><g><title>task_work_run (3,163 samples, 0.13%)</title><rect x="99.5686%" y="549" width="0.1316%" height="15" fill="rgb(230,207,0)" fg:x="2393232" fg:w="3163"/><text x="99.8186%" y="559.50"></text></g><g><title>call_rcu (538 samples, 0.02%)</title><rect x="99.6779%" y="533" width="0.0224%" height="15" fill="rgb(249,64,54)" fg:x="2395857" fg:w="538"/><text x="99.9279%" y="543.50"></text></g><g><title>error_entry (412 samples, 0.02%)</title><rect x="99.7002%" y="597" width="0.0171%" height="15" fill="rgb(231,7,11)" fg:x="2396395" fg:w="412"/><text x="99.9502%" y="607.50"></text></g><g><title>sync_regs (361 samples, 0.02%)</title><rect x="99.7024%" y="581" width="0.0150%" height="15" fill="rgb(205,149,21)" fg:x="2396446" fg:w="361"/><text x="99.9524%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (2,279 samples, 0.09%)</title><rect x="99.7262%" y="549" width="0.0948%" height="15" fill="rgb(215,126,34)" fg:x="2397019" fg:w="2279"/><text x="99.9762%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,256 samples, 0.09%)</title><rect x="99.7272%" y="533" width="0.0939%" height="15" fill="rgb(241,132,45)" fg:x="2397042" fg:w="2256"/><text x="99.9772%" y="543.50"></text></g><g><title>native_write_msr (2,246 samples, 0.09%)</title><rect x="99.7276%" y="517" width="0.0934%" height="15" fill="rgb(252,69,32)" fg:x="2397052" fg:w="2246"/><text x="99.9776%" y="527.50"></text></g><g><title>schedule_tail (2,414 samples, 0.10%)</title><rect x="99.7238%" y="581" width="0.1004%" height="15" fill="rgb(232,204,19)" fg:x="2396962" fg:w="2414"/><text x="99.9738%" y="591.50"></text></g><g><title>finish_task_switch (2,409 samples, 0.10%)</title><rect x="99.7240%" y="565" width="0.1002%" height="15" fill="rgb(249,15,47)" fg:x="2396967" fg:w="2409"/><text x="99.9740%" y="575.50"></text></g><g><title>ret_from_fork (2,551 samples, 0.11%)</title><rect x="99.7211%" y="597" width="0.1061%" height="15" fill="rgb(209,227,23)" fg:x="2396897" fg:w="2551"/><text x="99.9711%" y="607.50"></text></g><g><title>syscall_return_via_sysret (824 samples, 0.03%)</title><rect x="99.8273%" y="597" width="0.0343%" height="15" fill="rgb(248,92,24)" fg:x="2399448" fg:w="824"/><text x="100.0773%" y="607.50"></text></g><g><title>[zig] (165,551 samples, 6.89%)</title><rect x="92.9741%" y="613" width="6.8876%" height="15" fill="rgb(247,59,2)" fg:x="2234726" fg:w="165551"/><text x="93.2241%" y="623.50">[zig]</text></g><g><title>asm_exc_page_fault (931 samples, 0.04%)</title><rect x="99.8620%" y="613" width="0.0387%" height="15" fill="rgb(221,30,5)" fg:x="2400283" fg:w="931"/><text x="100.1120%" y="623.50"></text></g><g><title>exit_mmap (356 samples, 0.01%)</title><rect x="99.9130%" y="485" width="0.0148%" height="15" fill="rgb(208,108,53)" fg:x="2401508" fg:w="356"/><text x="100.1630%" y="495.50"></text></g><g><title>unmap_vmas (280 samples, 0.01%)</title><rect x="99.9161%" y="469" width="0.0116%" height="15" fill="rgb(211,183,26)" fg:x="2401584" fg:w="280"/><text x="100.1661%" y="479.50"></text></g><g><title>unmap_page_range (279 samples, 0.01%)</title><rect x="99.9162%" y="453" width="0.0116%" height="15" fill="rgb(232,132,4)" fg:x="2401585" fg:w="279"/><text x="100.1662%" y="463.50"></text></g><g><title>mmput (360 samples, 0.01%)</title><rect x="99.9129%" y="501" width="0.0150%" height="15" fill="rgb(253,128,37)" fg:x="2401506" fg:w="360"/><text x="100.1629%" y="511.50"></text></g><g><title>begin_new_exec (370 samples, 0.02%)</title><rect x="99.9126%" y="517" width="0.0154%" height="15" fill="rgb(221,58,24)" fg:x="2401499" fg:w="370"/><text x="100.1626%" y="527.50"></text></g><g><title>__x64_sys_execve (428 samples, 0.02%)</title><rect x="99.9116%" y="581" width="0.0178%" height="15" fill="rgb(230,54,45)" fg:x="2401476" fg:w="428"/><text x="100.1616%" y="591.50"></text></g><g><title>do_execveat_common (428 samples, 0.02%)</title><rect x="99.9116%" y="565" width="0.0178%" height="15" fill="rgb(254,21,18)" fg:x="2401476" fg:w="428"/><text x="100.1616%" y="575.50"></text></g><g><title>bprm_execve (428 samples, 0.02%)</title><rect x="99.9116%" y="549" width="0.0178%" height="15" fill="rgb(221,108,0)" fg:x="2401476" fg:w="428"/><text x="100.1616%" y="559.50"></text></g><g><title>load_elf_binary (428 samples, 0.02%)</title><rect x="99.9116%" y="533" width="0.0178%" height="15" fill="rgb(206,95,1)" fg:x="2401476" fg:w="428"/><text x="100.1616%" y="543.50"></text></g><g><title>mmput (707 samples, 0.03%)</title><rect x="99.9308%" y="533" width="0.0294%" height="15" fill="rgb(237,52,5)" fg:x="2401936" fg:w="707"/><text x="100.1808%" y="543.50"></text></g><g><title>exit_mmap (707 samples, 0.03%)</title><rect x="99.9308%" y="517" width="0.0294%" height="15" fill="rgb(218,150,34)" fg:x="2401936" fg:w="707"/><text x="100.1808%" y="527.50"></text></g><g><title>unmap_vmas (534 samples, 0.02%)</title><rect x="99.9380%" y="501" width="0.0222%" height="15" fill="rgb(235,194,28)" fg:x="2402109" fg:w="534"/><text x="100.1880%" y="511.50"></text></g><g><title>unmap_page_range (533 samples, 0.02%)</title><rect x="99.9380%" y="485" width="0.0222%" height="15" fill="rgb(245,92,18)" fg:x="2402110" fg:w="533"/><text x="100.1880%" y="495.50"></text></g><g><title>__x64_sys_exit_group (719 samples, 0.03%)</title><rect x="99.9304%" y="581" width="0.0299%" height="15" fill="rgb(253,203,53)" fg:x="2401927" fg:w="719"/><text x="100.1804%" y="591.50"></text></g><g><title>do_group_exit (719 samples, 0.03%)</title><rect x="99.9304%" y="565" width="0.0299%" height="15" fill="rgb(249,185,47)" fg:x="2401927" fg:w="719"/><text x="100.1804%" y="575.50"></text></g><g><title>do_exit (719 samples, 0.03%)</title><rect x="99.9304%" y="549" width="0.0299%" height="15" fill="rgb(252,194,52)" fg:x="2401927" fg:w="719"/><text x="100.1804%" y="559.50"></text></g><g><title>do_syscall_64 (1,178 samples, 0.05%)</title><rect x="99.9116%" y="597" width="0.0490%" height="15" fill="rgb(210,53,36)" fg:x="2401476" fg:w="1178"/><text x="100.1616%" y="607.50"></text></g><g><title>mmput (322 samples, 0.01%)</title><rect x="99.9634%" y="501" width="0.0134%" height="15" fill="rgb(237,37,25)" fg:x="2402721" fg:w="322"/><text x="100.2134%" y="511.50"></text></g><g><title>exit_mmap (319 samples, 0.01%)</title><rect x="99.9636%" y="485" width="0.0133%" height="15" fill="rgb(242,116,27)" fg:x="2402724" fg:w="319"/><text x="100.2136%" y="495.50"></text></g><g><title>unmap_vmas (252 samples, 0.01%)</title><rect x="99.9663%" y="469" width="0.0105%" height="15" fill="rgb(213,185,26)" fg:x="2402791" fg:w="252"/><text x="100.2163%" y="479.50"></text></g><g><title>unmap_page_range (251 samples, 0.01%)</title><rect x="99.9664%" y="453" width="0.0104%" height="15" fill="rgb(225,204,8)" fg:x="2402792" fg:w="251"/><text x="100.2164%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,823 samples, 0.08%)</title><rect x="99.9014%" y="613" width="0.0758%" height="15" fill="rgb(254,111,37)" fg:x="2401231" fg:w="1823"/><text x="100.1514%" y="623.50"></text></g><g><title>syscall_exit_to_user_mode (400 samples, 0.02%)</title><rect x="99.9606%" y="597" width="0.0166%" height="15" fill="rgb(242,35,9)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="607.50"></text></g><g><title>exit_to_user_mode_prepare (400 samples, 0.02%)</title><rect x="99.9606%" y="581" width="0.0166%" height="15" fill="rgb(232,138,49)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="591.50"></text></g><g><title>arch_do_signal (400 samples, 0.02%)</title><rect x="99.9606%" y="565" width="0.0166%" height="15" fill="rgb(247,56,4)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="575.50"></text></g><g><title>get_signal (400 samples, 0.02%)</title><rect x="99.9606%" y="549" width="0.0166%" height="15" fill="rgb(226,179,17)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="559.50"></text></g><g><title>do_group_exit (400 samples, 0.02%)</title><rect x="99.9606%" y="533" width="0.0166%" height="15" fill="rgb(216,163,45)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="543.50"></text></g><g><title>do_exit (400 samples, 0.02%)</title><rect x="99.9606%" y="517" width="0.0166%" height="15" fill="rgb(211,157,3)" fg:x="2402654" fg:w="400"/><text x="100.2106%" y="527.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (405 samples, 0.02%)</title><rect x="99.9773%" y="613" width="0.0168%" height="15" fill="rgb(234,44,20)" fg:x="2403054" fg:w="405"/><text x="100.2273%" y="623.50"></text></g><g><title>all (2,403,600 samples, 100%)</title><rect x="0.0000%" y="645" width="100.0000%" height="15" fill="rgb(254,138,23)" fg:x="0" fg:w="2403600"/><text x="0.2500%" y="655.50"></text></g><g><title>zig (169,117 samples, 7.04%)</title><rect x="92.9640%" y="629" width="7.0360%" height="15" fill="rgb(206,119,39)" fg:x="2234483" fg:w="169117"/><text x="93.2140%" y="639.50">zig</text></g></svg></svg> +\ No newline at end of file diff --git a/results/profile.log b/results/profile.log @@ -0,0 +1,923 @@ ++ _build zigcc-hermetic-j1 --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox ++ name=zigcc-hermetic-j1 ++ shift ++ bazel build --color=no --curses=no --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +Analyzing: target //:zigzag-0 (41 packages loaded, 164 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 14770 targets configured). +INFO: Found 1 target... +INFO: Deleting stale sandbox base /home/motiejus/.cache/bazel/_bazel_motiejus/e63a0563bdc05cf337d03dd7622788e2/sandbox + +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[3 / 5] [Scann] Compiling main.cc +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +[5 / 5] checking cached actions +INFO: Elapsed time: 9.242s, Critical Path: 1.26s +INFO: 4 processes: 2 internal, 2 linux-sandbox. +INFO: Build completed successfully, 4 total actions +INFO: Build completed successfully, 4 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/zigcc-hermetic-j1.data bazel --batch build --color=no --curses=no --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 14833 targets configured). + +INFO: Found 64 targets... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[3 / 5] Compiling main.cc; 1s linux-sandbox +[7 / 9] Compiling main.cc; 0s linux-sandbox +[12 / 13] [Prepa] Linking zigzag-29 +[17 / 20] [Prepa] Creating source manifest for //:zigzag-52 +[24 / 25] [Prepa] Linking zigzag-56 +[31 / 33] Compiling main.cc; 0s linux-sandbox +[37 / 40] [Prepa] Creating source manifest for //:zigzag-57 +[48 / 49] [Prepa] Linking zigzag-2 +[57 / 60] [Prepa] Creating source manifest for //:zigzag-21 +[69 / 72] [Prepa] Creating source manifest for //:zigzag-23 +[84 / 85] [Prepa] Linking zigzag-14 +[97 / 100] [Prepa] Creating source manifest for //:zigzag-63 +[117 / 120] [Prepa] Creating source manifest for //:zigzag-1 +[140 / 141] [Prepa] Linking zigzag-11 +[165 / 168] [Prepa] Creating source manifest for //:zigzag-42 +[192 / 193] Linking zigzag-45; 0s linux-sandbox +[227 / 229] Compiling main.cc; 0s linux-sandbox +INFO: Elapsed time: 90.377s, Critical Path: 2.51s +INFO: 257 processes: 129 internal, 128 linux-sandbox. +INFO: Build completed successfully, 257 total actions +INFO: Build completed successfully, 257 total actions +[ perf record: Woken up 16412 times to write data ] +Warning: +Processed 747805 events and lost 135 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 4296.938 MB /home/motiejus/zigcc-hermetic-j1.data (530861 samples) ] ++ _build zigcc-hermetic-j8 --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox ++ name=zigcc-hermetic-j8 ++ shift ++ bazel build --color=no --curses=no --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Analyzing: target //:zigzag-0 (1 packages loaded) +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 14770 targets configured). + +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[4 / 5] checking cached actions +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 7.051s, Critical Path: 1.44s +INFO: 4 processes: 2 internal, 2 linux-sandbox. +INFO: Build completed successfully, 4 total actions +INFO: Build completed successfully, 4 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/zigcc-hermetic-j8.data bazel --batch build --color=no --curses=no --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +Analyzing: 64 targets (37 packages loaded, 135 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 14833 targets configured). +INFO: Found 64 targets... +[0 / 25] [Prepa] BazelWorkspaceStatusAction stable-status.txt ... (3 actions, 0 running) +[47 / 105] [Prepa] Creating source manifest for //:zigzag-4 ... (2 actions, 0 running) +[113 / 224] Compiling main.cc; 1s linux-sandbox ... (8 actions running) +[114 / 224] Compiling main.cc; 2s linux-sandbox ... (8 actions, 7 running) +[121 / 224] Linking zigzag-47; 1s linux-sandbox ... (8 actions running) +[122 / 224] Linking zigzag-9; 2s linux-sandbox ... (8 actions running) +[129 / 224] Compiling main.cc; 1s linux-sandbox ... (8 actions running) +[131 / 224] Compiling main.cc; 2s linux-sandbox ... (8 actions, 7 running) +[138 / 224] Linking zigzag-14; 2s linux-sandbox ... (8 actions, 7 running) +[146 / 224] Compiling main.cc; 2s linux-sandbox ... (8 actions, 7 running) +[155 / 224] Linking zigzag-28; 2s linux-sandbox ... (8 actions, 7 running) +[163 / 224] Compiling main.cc; 2s linux-sandbox ... (8 actions running) +[173 / 224] Linking zigzag-7; 3s linux-sandbox ... (8 actions, 7 running) +[192 / 224] Linking zigzag-13; 3s linux-sandbox ... (6 actions, 5 running) +[208 / 224] Linking zigzag-46; 3s linux-sandbox ... (8 actions, 7 running) +[244 / 257] Compiling main.cc; 2s linux-sandbox ... (8 actions, 7 running) +INFO: Elapsed time: 53.586s, Critical Path: 7.05s +INFO: 257 processes: 129 internal, 128 linux-sandbox. +INFO: Build completed successfully, 257 total actions +INFO: Build completed successfully, 257 total actions +[ perf record: Woken up 41074 times to write data ] +Warning: +Processed 1841393 events and lost 358 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 12475.263 MB /home/motiejus/zigcc-hermetic-j8.data (1538912 samples) ] ++ _build llvm-hermetic-j1 --jobs=1 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux --config=hermetic-sandbox ++ name=llvm-hermetic-j1 ++ shift ++ bazel build --color=no --curses=no --jobs=1 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux --config=hermetic-sandbox //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 1363 targets configured). + +INFO: Found 1 target... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 6] checking cached actions +[3 / 6] [Scann] Compiling main.cc +[4 / 6] checking cached actions +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 9.298s, Critical Path: 0.11s +INFO: 5 processes: 3 internal, 2 linux-sandbox. +INFO: Build completed successfully, 5 total actions +INFO: Build completed successfully, 5 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/llvm-hermetic-j1.data bazel --batch build --color=no --curses=no --jobs=1 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux --config=hermetic-sandbox ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 1426 targets configured). + +INFO: Found 64 targets... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 6] checking cached actions +[3 / 6] [Scann] Compiling main.cc +[5 / 6] checking cached actions +[54 / 56] checking cached actions +[131 / 134] [Prepa] Creating source manifest for //:zigzag-29 +[219 / 221] [Prepa] Writing file zigzag-26-2.params +[319 / 321] [Prepa] Writing file zigzag-54-2.params +INFO: Elapsed time: 12.961s, Critical Path: 0.15s +INFO: 321 processes: 193 internal, 128 linux-sandbox. +INFO: Build completed successfully, 321 total actions +INFO: Build completed successfully, 321 total actions +[ perf record: Woken up 4576 times to write data ] +Warning: +Processed 203077 events and lost 5 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 1212.392 MB /home/motiejus/llvm-hermetic-j1.data (150360 samples) ] ++ _build llvm-hermetic-j8 --jobs=8 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux --config=hermetic-sandbox ++ name=llvm-hermetic-j8 ++ shift ++ bazel build --color=no --curses=no --jobs=8 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux --config=hermetic-sandbox //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Analyzing: target //:zigzag-0 (1 packages loaded) +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 1363 targets configured). +INFO: Found 1 target... +[2 / 6] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 6] [Prepa] Creating runfiles tree bazel-out/k8-fastbuild/bin/zigzag-0.runfiles +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 5.350s, Critical Path: 0.10s +INFO: 4 processes: 2 internal, 2 linux-sandbox. +INFO: Build completed successfully, 4 total actions +INFO: Build completed successfully, 4 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/llvm-hermetic-j8.data bazel --batch build --color=no --curses=no --jobs=8 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux --config=hermetic-sandbox ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 1426 targets configured). + +INFO: Found 64 targets... +[0 / 14] [Prepa] Writing file zigzag-0-2.params +[2 / 14] [Scann] Compiling main.cc +[81 / 94] Linking zigzag-57; 0s linux-sandbox ... (7 actions, 6 running) +[206 / 214] Linking zigzag-16; 0s linux-sandbox ... (5 actions, 4 running) +[295 / 306] Compiling main.cc; 0s linux-sandbox ... (8 actions, 7 running) +INFO: Elapsed time: 7.719s, Critical Path: 0.70s +INFO: 321 processes: 193 internal, 128 linux-sandbox. +INFO: Build completed successfully, 321 total actions +INFO: Build completed successfully, 321 total actions +[ perf record: Woken up 6124 times to write data ] +Warning: +Processed 281086 events and lost 68 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 1796.745 MB /home/motiejus/llvm-hermetic-j8.data (222825 samples) ] ++ _build llvm-sysroot-hermetic-j1 --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox ++ name=llvm-sysroot-hermetic-j1 ++ shift ++ bazel build --color=no --curses=no --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +Analyzing: target //:zigzag-0 (37 packages loaded, 136 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 14770 targets configured). +INFO: Found 1 target... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[4 / 5] [Prepa] Linking zigzag-0 +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 8.158s, Critical Path: 1.45s +INFO: 4 processes: 2 internal, 2 linux-sandbox. +INFO: Build completed successfully, 4 total actions +INFO: Build completed successfully, 4 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/llvm-sysroot-hermetic-j1.data bazel --batch build --color=no --curses=no --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +Analyzing: 64 targets (41 packages loaded, 14766 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 14833 targets configured). +INFO: Found 64 targets... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[3 / 5] Compiling main.cc; 0s linux-sandbox +[4 / 5] [Prepa] Linking zigzag-0 +[8 / 9] [Prepa] Linking zigzag-50 +[13 / 16] [Prepa] Creating source manifest for //:zigzag-26 +[19 / 21] Compiling main.cc; 0s linux-sandbox +[24 / 25] Linking zigzag-56; 0s linux-sandbox +[33 / 36] [Prepa] Creating source manifest for //:zigzag-8 +[44 / 45] [Prepa] Linking zigzag-46 +[56 / 57] [Prepa] Linking zigzag-32 +[69 / 72] [Prepa] Creating source manifest for //:zigzag-23 +[84 / 85] [Prepa] Linking zigzag-14 +[101 / 104] [Prepa] Creating source manifest for //:zigzag-40 +[123 / 125] Compiling main.cc; 0s linux-sandbox +[148 / 149] [Prepa] Linking zigzag-38 +[173 / 176] [Prepa] Creating source manifest for //:zigzag-27 +[201 / 204] [Prepa] Creating source manifest for //:zigzag-37 +[237 / 240] [Prepa] Creating source manifest for //:zigzag-10 +INFO: Elapsed time: 96.375s, Critical Path: 4.03s +INFO: 257 processes: 129 internal, 128 linux-sandbox. +INFO: Build completed successfully, 257 total actions +INFO: Build completed successfully, 257 total actions +[ perf record: Woken up 16515 times to write data ] +Warning: +Processed 742606 events and lost 68 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 4267.866 MB /home/motiejus/llvm-sysroot-hermetic-j1.data (527412 samples) ] ++ _build llvm-sysroot-hermetic-j8 --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox ++ name=llvm-sysroot-hermetic-j8 ++ shift ++ bazel build --color=no --curses=no --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded + currently loading: +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +Analyzing: target //:zigzag-0 (37 packages loaded, 136 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 14770 targets configured). +INFO: Found 1 target... +[1 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt ... (2 actions, 0 running) +[3 / 5] [Scann] Compiling main.cc +[5 / 5] checking cached actions +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 7.357s, Critical Path: 1.48s +INFO: 4 processes: 2 internal, 2 linux-sandbox. +INFO: Build completed successfully, 4 total actions +INFO: Build completed successfully, 4 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/llvm-sysroot-hermetic-j8.data bazel --batch build --color=no --curses=no --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Found applicable config definition build:hermetic-sandbox in file /code/test-zigcc/.bazelrc: --experimental_use_hermetic_linux_sandbox --sandbox_add_mount_pair=/bin --sandbox_add_mount_pair=/usr --sandbox_add_mount_pair=/tmp/bazel-zig-cc --sandbox_add_mount_pair=/proc --sandbox_add_mount_pair=/usr/bin:/bin --sandbox_add_mount_pair=/usr/lib:/lib --sandbox_add_mount_pair=/usr/lib64:/lib64 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +Analyzing: 64 targets (37 packages loaded, 136 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 14833 targets configured). +INFO: Found 64 targets... +[0 / 26] [Prepa] Creating source manifest for //:zigzag-10 ... (5 actions, 0 running) +[39 / 87] [Prepa] Creating source manifest for //:zigzag-42 +[113 / 228] Compiling main.cc; 0s linux-sandbox ... (8 actions running) +[114 / 228] Compiling main.cc; 2s linux-sandbox ... (8 actions, 7 running) +[121 / 228] Compiling main.cc; 1s linux-sandbox ... (8 actions running) +[123 / 228] Compiling main.cc; 2s linux-sandbox ... (7 actions running) +[129 / 228] Compiling main.cc; 1s linux-sandbox ... (8 actions running) +[137 / 228] Compiling main.cc; 1s linux-sandbox ... (8 actions running) +[141 / 228] Compiling main.cc; 2s linux-sandbox ... (8 actions running) +[145 / 228] Compiling main.cc; 3s linux-sandbox ... (8 actions running) +[153 / 228] Linking zigzag-3; 2s linux-sandbox ... (8 actions running) +[162 / 228] Linking zigzag-44; 3s linux-sandbox ... (8 actions, 7 running) +[174 / 228] Linking zigzag-51; 2s linux-sandbox ... (8 actions, 7 running) +[188 / 228] Compiling main.cc; 3s linux-sandbox ... (8 actions, 6 running) +[205 / 228] Compiling main.cc; 1s linux-sandbox ... (8 actions, 7 running) +[233 / 244] Linking zigzag-19; 2s linux-sandbox ... (8 actions, 7 running) +INFO: Elapsed time: 51.463s, Critical Path: 7.23s +INFO: 257 processes: 129 internal, 128 linux-sandbox. +INFO: Build completed successfully, 257 total actions +INFO: Build completed successfully, 257 total actions +[ perf record: Woken up 36392 times to write data ] +Warning: +Processed 1578223 events and lost 266 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 10475.654 MB /home/motiejus/llvm-sysroot-hermetic-j8.data (1292913 samples) ] ++ _build zigcc-j1 --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ++ name=zigcc-j1 ++ shift ++ bazel build --color=no --curses=no --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +Analyzing: target //:zigzag-0 (37 packages loaded, 136 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 14770 targets configured). +INFO: Found 1 target... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[4 / 5] [Prepa] Linking zigzag-0 +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 8.321s, Critical Path: 1.48s +INFO: 4 processes: 2 internal, 2 linux-sandbox. +INFO: Build completed successfully, 4 total actions +INFO: Build completed successfully, 4 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/zigcc-j1.data bazel --batch build --color=no --curses=no --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +Analyzing: 64 targets (37 packages loaded, 134 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 14833 targets configured). + +INFO: Found 64 targets... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[4 / 5] [Prepa] Linking zigzag-0 +[8 / 9] [Prepa] Linking zigzag-50 +[11 / 13] Compiling main.cc; 0s linux-sandbox +[16 / 17] [Prepa] Linking zigzag-26 +[20 / 21] [Prepa] Linking zigzag-52 +[25 / 28] [Prepa] Creating source manifest for //:zigzag-13 +[33 / 36] [Prepa] Creating source manifest for //:zigzag-8 +[41 / 44] [Prepa] Creating source manifest for //:zigzag-46 +[52 / 53] Linking zigzag-39; 0s linux-sandbox +[65 / 68] [Prepa] Creating source manifest for //:zigzag-18 +[81 / 84] [Prepa] Creating source manifest for //:zigzag-14 +[97 / 100] [Prepa] Creating source manifest for //:zigzag-63 +[117 / 120] [Prepa] Creating source manifest for //:zigzag-1 +[140 / 141] [Prepa] Linking zigzag-11 +[165 / 168] [Prepa] Creating source manifest for //:zigzag-42 +[196 / 197] [Prepa] Linking zigzag-16 +[229 / 232] [Prepa] Creating source manifest for //:zigzag-41 +INFO: Elapsed time: 85.741s, Critical Path: 1.86s +INFO: 257 processes: 129 internal, 128 linux-sandbox. +INFO: Build completed successfully, 257 total actions +INFO: Build completed successfully, 257 total actions +[ perf record: Woken up 15940 times to write data ] +Warning: +Processed 736473 events and lost 59 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 4191.614 MB /home/motiejus/zigcc-j1.data (517703 samples) ] ++ _build zigcc-j8 --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ++ name=zigcc-j8 ++ shift ++ bazel build --color=no --curses=no --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Analyzing: target //:zigzag-0 (1 packages loaded) +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 14770 targets configured). + +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[4 / 5] [Prepa] Linking zigzag-0 +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 7.178s, Critical Path: 1.41s +INFO: 4 processes: 2 internal, 2 linux-sandbox. +INFO: Build completed successfully, 4 total actions +INFO: Build completed successfully, 4 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/zigcc-j8.data bazel --batch build --color=no --curses=no --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +Analyzing: 64 targets (37 packages loaded, 136 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 14833 targets configured). + +INFO: Found 64 targets... +[0 / 23] [Prepa] BazelWorkspaceStatusAction stable-status.txt ... (5 actions, 0 running) +[28 / 63] [Prepa] Creating runfiles tree bazel-out/k8-fastbuild/bin/zigzag-20.runfiles +[129 / 257] Compiling main.cc; 0s linux-sandbox ... (8 actions running) +[130 / 257] Compiling main.cc; 5s linux-sandbox ... (8 actions, 7 running) +[137 / 257] Linking zigzag-63; 2s linux-sandbox ... (8 actions running) +[138 / 257] Linking zigzag-62; 3s linux-sandbox ... (8 actions running) +[145 / 257] Compiling main.cc; 3s linux-sandbox ... (8 actions running) +[146 / 257] Compiling main.cc; 4s linux-sandbox ... (8 actions running) +[154 / 257] Linking zigzag-11; 3s linux-sandbox ... (8 actions, 7 running) +[162 / 257] Compiling main.cc; 3s linux-sandbox ... (8 actions, 7 running) +[170 / 257] Linking zigzag-31; 4s linux-sandbox ... (8 actions, 7 running) +[180 / 257] Compiling main.cc; 3s linux-sandbox ... (8 actions, 7 running) +[190 / 257] Linking zigzag-32; 4s linux-sandbox ... (8 actions, 7 running) +[203 / 257] Linking zigzag-46; 3s linux-sandbox ... (8 actions, 7 running) +[217 / 257] Linking zigzag-34; 4s linux-sandbox ... (8 actions running) +[233 / 257] Linking zigzag-39; 4s linux-sandbox ... (8 actions, 7 running) +INFO: Elapsed time: 77.619s, Critical Path: 11.04s +INFO: 257 processes: 129 internal, 128 linux-sandbox. +INFO: Build completed successfully, 257 total actions +INFO: Build completed successfully, 257 total actions +[ perf record: Woken up 56568 times to write data ] +Warning: +Processed 2787413 events and lost 435 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 19476.820 MB /home/motiejus/zigcc-j8.data (2397280 samples) ] ++ _build llvm-j1 --jobs=1 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux ++ name=llvm-j1 ++ shift ++ bazel build --color=no --curses=no --jobs=1 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded + currently loading: +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 1363 targets configured). +INFO: Found 1 target... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 6] checking cached actions +[3 / 6] [Scann] Compiling main.cc +[4 / 6] checking cached actions +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 8.895s, Critical Path: 0.10s +INFO: 5 processes: 3 internal, 2 linux-sandbox. +INFO: Build completed successfully, 5 total actions +INFO: Build completed successfully, 5 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/llvm-j1.data bazel --batch build --color=no --curses=no --jobs=1 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 1426 targets configured). + +INFO: Found 64 targets... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 6] checking cached actions +[3 / 6] [Scann] Compiling main.cc +[5 / 6] checking cached actions +[34 / 36] [Prepa] Writing file zigzag-24-2.params +[111 / 114] [Prepa] Creating source manifest for //:zigzag-50 +[204 / 206] [Prepa] Writing file zigzag-30-2.params +[309 / 311] [Prepa] Writing file zigzag-51-2.params +INFO: Elapsed time: 13.159s, Critical Path: 0.11s +INFO: 321 processes: 193 internal, 128 linux-sandbox. +INFO: Build completed successfully, 321 total actions +INFO: Build completed successfully, 321 total actions +[ perf record: Woken up 4443 times to write data ] +Warning: +Processed 204382 events and lost 54 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 1219.030 MB /home/motiejus/llvm-j1.data (151157 samples) ] ++ _build llvm-j8 --jobs=8 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux ++ name=llvm-j8 ++ shift ++ bazel build --color=no --curses=no --jobs=8 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded + currently loading: +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 1363 targets configured). + +INFO: Found 1 target... +[2 / 6] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 6] checking cached actions +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 6.199s, Critical Path: 0.12s +INFO: 4 processes: 2 internal, 2 linux-sandbox. +INFO: Build completed successfully, 4 total actions +INFO: Build completed successfully, 4 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/llvm-j8.data bazel --batch build --color=no --curses=no --jobs=8 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 1426 targets configured). + +INFO: Found 64 targets... +[0 / 24] [Prepa] Creating source manifest for //:zigzag-14 +[14 / 24] checking cached actions +[41 / 59] Compiling main.cc; 0s linux-sandbox ... (8 actions running) +[83 / 96] Compiling main.cc; 0s linux-sandbox ... (8 actions running) +[144 / 156] Compiling main.cc; 0s linux-sandbox ... (8 actions, 7 running) +[200 / 216] Compiling main.cc; 0s linux-sandbox ... (8 actions, 7 running) +[254 / 266] Compiling main.cc; 0s linux-sandbox ... (8 actions running) +INFO: Elapsed time: 11.042s, Critical Path: 0.88s +INFO: 321 processes: 193 internal, 128 linux-sandbox. +INFO: Build completed successfully, 321 total actions +INFO: Build completed successfully, 321 total actions +[ perf record: Woken up 6435 times to write data ] +Warning: +Processed 430335 events and lost 58 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 2932.879 MB /home/motiejus/llvm-j8.data (362314 samples) ] ++ _build llvm-sysroot-j1 --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ++ name=llvm-sysroot-j1 ++ shift ++ bazel build --color=no --curses=no --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +Analyzing: target //:zigzag-0 (37 packages loaded, 136 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 14770 targets configured). +INFO: Found 1 target... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[3 / 5] [Scann] Compiling main.cc +[4 / 5] Linking zigzag-0; 0s linux-sandbox +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 9.632s, Critical Path: 1.43s +INFO: 4 processes: 2 internal, 2 linux-sandbox. +INFO: Build completed successfully, 4 total actions +INFO: Build completed successfully, 4 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/llvm-sysroot-j1.data bazel --batch build --color=no --curses=no --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Loading: 0 packages loaded + currently loading: +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +Analyzing: 64 targets (37 packages loaded, 135 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 14833 targets configured). + +INFO: Found 64 targets... +[0 / 1] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[3 / 5] [Scann] Compiling main.cc +[5 / 8] [Prepa] Creating source manifest for //:zigzag-50 +[11 / 13] Compiling main.cc; 0s linux-sandbox +[16 / 17] Linking zigzag-26; 0s linux-sandbox +[24 / 25] [Prepa] Linking zigzag-56 +[32 / 33] [Prepa] Linking zigzag-33 +[41 / 44] [Prepa] Creating source manifest for //:zigzag-46 +[53 / 56] [Prepa] Creating source manifest for //:zigzag-32 +[65 / 68] [Prepa] Creating source manifest for //:zigzag-18 +[80 / 81] [Prepa] Linking zigzag-47 +[96 / 97] Linking zigzag-15; 0s linux-sandbox +[116 / 117] [Prepa] Linking zigzag-20 +[137 / 140] [Prepa] Creating source manifest for //:zigzag-11 +[164 / 165] [Prepa] Linking zigzag-6 +[193 / 196] [Prepa] Creating source manifest for //:zigzag-16 +[224 / 225] [Prepa] Linking zigzag-31 +INFO: Elapsed time: 89.096s, Critical Path: 2.92s +INFO: 257 processes: 129 internal, 128 linux-sandbox. +INFO: Build completed successfully, 257 total actions +INFO: Build completed successfully, 257 total actions +[ perf record: Woken up 15142 times to write data ] +Warning: +Processed 697322 events and lost 151 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 3909.025 MB /home/motiejus/llvm-sysroot-j1.data (482963 samples) ] ++ _build llvm-sysroot-j8 --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ++ name=llvm-sysroot-j8 ++ shift ++ bazel build --color=no --curses=no --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 //:zigzag-0 +Starting local Bazel server and connecting to it... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Analyzing: target //:zigzag-0 (1 packages loaded) +Analyzing: target //:zigzag-0 (1 packages loaded, 0 targets configured) +INFO: Analyzed target //:zigzag-0 (41 packages loaded, 14770 targets configured). + +INFO: Found 1 target... +[0 / 5] [Prepa] BazelWorkspaceStatusAction stable-status.txt +[3 / 5] checking cached actions +[4 / 5] checking cached actions +Target //:zigzag-0 up-to-date: + bazel-bin/zigzag-0 +INFO: Elapsed time: 7.087s, Critical Path: 1.32s +INFO: 4 processes: 2 internal, 2 linux-sandbox. +INFO: Build completed successfully, 4 total actions +INFO: Build completed successfully, 4 total actions ++ bazel shutdown ++ bazel --batch clean --color=no --curses=no +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'clean' from /code/test-zigcc/.bazelrc: + Inherited 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +INFO: Starting clean (this may take a while). Consider using --async if the clean takes more than several minutes. ++ perf record --call-graph=dwarf -g -o /home/motiejus/llvm-sysroot-j8.data bazel --batch build --color=no --curses=no --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ... +INFO: Options provided by the client: + Inherited 'common' options: --isatty=0 --terminal_columns=80 +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + Inherited 'common' options: --color=yes --curses=yes +INFO: Reading rc options for 'build' from /code/test-zigcc/.bazelrc: + 'build' options: --announce_rc --incompatible_enable_cc_toolchain_resolution --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 +Loading: +Loading: 0 packages loaded +Loading: 0 packages loaded +Analyzing: 64 targets (1 packages loaded, 0 targets configured) +Analyzing: 64 targets (37 packages loaded, 137 targets configured) +INFO: Analyzed 64 targets (41 packages loaded, 14833 targets configured). +INFO: Found 64 targets... +[0 / 26] [Prepa] Creating source manifest for //:zigzag-14 +[47 / 109] [Prepa] Creating source manifest for //:zigzag-22 +[102 / 204] Compiling main.cc; 0s linux-sandbox ... (8 actions running) +[103 / 204] Compiling main.cc; 4s linux-sandbox ... (8 actions, 7 running) +[110 / 204] Linking zigzag-11; 1s linux-sandbox ... (8 actions running) +[111 / 204] Linking zigzag-31; 3s linux-sandbox ... (8 actions running) +[114 / 204] Linking zigzag-31; 5s linux-sandbox ... (7 actions running) +[120 / 204] Compiling main.cc; 3s linux-sandbox ... (8 actions, 7 running) +[127 / 204] Linking zigzag-40; 3s linux-sandbox ... (8 actions, 7 running) +[134 / 204] Compiling main.cc; 4s linux-sandbox ... (8 actions running) +[142 / 204] Linking zigzag-38; 3s linux-sandbox ... (8 actions running) +[150 / 204] Compiling main.cc; 3s linux-sandbox ... (8 actions running) +[160 / 204] Linking zigzag-22; 4s linux-sandbox ... (8 actions, 7 running) +[171 / 204] Compiling main.cc; 3s linux-sandbox ... (8 actions, 7 running) +[186 / 204] Compiling main.cc; 3s linux-sandbox ... (8 actions, 7 running) +[213 / 225] Compiling main.cc; 3s linux-sandbox ... (8 actions, 7 running) +[247 / 257] Compiling main.cc; 3s linux-sandbox ... (8 actions, 7 running) +INFO: Elapsed time: 76.096s, Critical Path: 10.28s +INFO: 257 processes: 129 internal, 128 linux-sandbox. +INFO: Build completed successfully, 257 total actions +INFO: Build completed successfully, 257 total actions +[ perf record: Woken up 58586 times to write data ] +Warning: +Processed 2787248 events and lost 383 chunks! + +Check IO/CPU overload! + +[ perf record: Captured and wrote 19527.935 MB /home/motiejus/llvm-sysroot-j8.data (2403659 samples) ] ++ parallel -v --eta +<...> diff --git a/results/profile.sh b/results/profile.sh @@ -0,0 +1,30 @@ +#!/bin/bash +set -xeuo pipefail + +_build() { + name=$1 + shift + bazel build --color=no --curses=no "$@" //:zigzag-0 + bazel shutdown + bazel --batch clean --color=no --curses=no + perf record --call-graph=dwarf -g -o "$HOME/$name.data" bazel --batch build --color=no --curses=no "$@" ... +} + +_build zigcc-hermetic-j1 --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox +_build zigcc-hermetic-j8 --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox +_build llvm-hermetic-j1 --jobs=1 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux --config=hermetic-sandbox +_build llvm-hermetic-j8 --jobs=8 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux --config=hermetic-sandbox +_build llvm-sysroot-hermetic-j1 --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox +_build llvm-sysroot-hermetic-j8 --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 --config=hermetic-sandbox + +_build zigcc-j1 --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 +_build zigcc-j8 --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 +_build llvm-j1 --jobs=1 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux +_build llvm-j8 --jobs=8 --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux +_build llvm-sysroot-j1 --jobs=1 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 +_build llvm-sysroot-j8 --jobs=8 --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 + +for d in $HOME/*.data; do + f=$(basename "$d") + echo "perf script -i $d | inferno-collapse-perf | inferno-flamegraph > results/${f%data}svg" +done | parallel -v --eta diff --git a/results/profiling.txt b/results/profiling.txt @@ -1 +0,0 @@ -bazel --batch clean; perf record --call-graph=dwarf -g -o zigcc-j1.data bazel --batch build --jobs=1 --override_repository=bazel-zig-cc=/code/bazel-zig-cc --config=hermetic-sandbox --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 ... ; bazel --batch clean; perf record --call-graph=dwarf -g -o llvm-j1.data bazel --batch build --jobs=1 --override_repository=bazel-zig-cc=/code/bazel-zig-cc --config=hermetic-sandbox --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux ... diff --git a/results/zigcc-hermetic-j1.svg b/results/zigcc-hermetic-j1.svg @@ -0,0 +1,491 @@ +<?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="902" onload="init(evt)" viewBox="0 0 1200 902" 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="902" 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="885.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="885.00"> </text><svg id="frames" x="10" width="1180" total_samples="530700"><g><title>_dl_update_slotinfo (122 samples, 0.02%)</title><rect x="0.1835%" y="805" width="0.0230%" height="15" fill="rgb(227,0,7)" fg:x="974" fg:w="122"/><text x="0.4335%" y="815.50"></text></g><g><title>[anon] (1,248 samples, 0.24%)</title><rect x="0.0094%" y="821" width="0.2352%" height="15" fill="rgb(217,0,24)" fg:x="50" fg:w="1248"/><text x="0.2594%" y="831.50"></text></g><g><title>[perf-925888.map] (141 samples, 0.03%)</title><rect x="0.2451%" y="821" width="0.0266%" height="15" fill="rgb(221,193,54)" fg:x="1301" fg:w="141"/><text x="0.4951%" y="831.50"></text></g><g><title>[unknown] (104 samples, 0.02%)</title><rect x="0.2717%" y="821" width="0.0196%" height="15" fill="rgb(248,212,6)" fg:x="1442" fg:w="104"/><text x="0.5217%" y="831.50"></text></g><g><title>CompileBroker::post_compile (55 samples, 0.01%)</title><rect x="0.3053%" y="709" width="0.0104%" height="15" fill="rgb(208,68,35)" fg:x="1620" fg:w="55"/><text x="0.5553%" y="719.50"></text></g><g><title>CompileTask::print (86 samples, 0.02%)</title><rect x="0.3217%" y="709" width="0.0162%" height="15" fill="rgb(232,128,0)" fg:x="1707" fg:w="86"/><text x="0.5717%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (62 samples, 0.01%)</title><rect x="0.3578%" y="549" width="0.0117%" height="15" fill="rgb(207,160,47)" fg:x="1899" fg:w="62"/><text x="0.6078%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (93 samples, 0.02%)</title><rect x="0.3575%" y="565" width="0.0175%" height="15" fill="rgb(228,23,34)" fg:x="1897" fg:w="93"/><text x="0.6075%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (135 samples, 0.03%)</title><rect x="0.3571%" y="581" width="0.0254%" height="15" fill="rgb(218,30,26)" fg:x="1895" fg:w="135"/><text x="0.6071%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (198 samples, 0.04%)</title><rect x="0.3556%" y="613" width="0.0373%" height="15" fill="rgb(220,122,19)" fg:x="1887" fg:w="198"/><text x="0.6056%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (195 samples, 0.04%)</title><rect x="0.3561%" y="597" width="0.0367%" height="15" fill="rgb(250,228,42)" fg:x="1890" fg:w="195"/><text x="0.6061%" y="607.50"></text></g><g><title>SubstitutionResolver::block_do (55 samples, 0.01%)</title><rect x="0.3825%" y="581" width="0.0104%" height="15" fill="rgb(240,193,28)" fg:x="2030" fg:w="55"/><text x="0.6325%" y="591.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (368 samples, 0.07%)</title><rect x="0.3443%" y="629" width="0.0693%" height="15" fill="rgb(216,20,37)" fg:x="1827" fg:w="368"/><text x="0.5943%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (63 samples, 0.01%)</title><rect x="0.4162%" y="565" width="0.0119%" height="15" fill="rgb(206,188,39)" fg:x="2209" fg:w="63"/><text x="0.6662%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (86 samples, 0.02%)</title><rect x="0.4142%" y="597" width="0.0162%" height="15" fill="rgb(217,207,13)" fg:x="2198" fg:w="86"/><text x="0.6642%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (85 samples, 0.02%)</title><rect x="0.4144%" y="581" width="0.0160%" height="15" fill="rgb(231,73,38)" fg:x="2199" fg:w="85"/><text x="0.6644%" y="591.50"></text></g><g><title>MethodLiveness::init_basic_blocks (55 samples, 0.01%)</title><rect x="0.4485%" y="533" width="0.0104%" height="15" fill="rgb(225,20,46)" fg:x="2380" fg:w="55"/><text x="0.6985%" y="543.50"></text></g><g><title>BlockListBuilder::set_leaders (127 samples, 0.02%)</title><rect x="0.4351%" y="581" width="0.0239%" height="15" fill="rgb(210,31,41)" fg:x="2309" fg:w="127"/><text x="0.6851%" y="591.50"></text></g><g><title>ciMethod::bci_block_start (88 samples, 0.02%)</title><rect x="0.4424%" y="565" width="0.0166%" height="15" fill="rgb(221,200,47)" fg:x="2348" fg:w="88"/><text x="0.6924%" y="575.50"></text></g><g><title>MethodLiveness::compute_liveness (85 samples, 0.02%)</title><rect x="0.4430%" y="549" width="0.0160%" height="15" fill="rgb(226,26,5)" fg:x="2351" fg:w="85"/><text x="0.6930%" y="559.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (143 samples, 0.03%)</title><rect x="0.4323%" y="597" width="0.0269%" height="15" fill="rgb(249,33,26)" fg:x="2294" fg:w="143"/><text x="0.6823%" y="607.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (67 samples, 0.01%)</title><rect x="0.5022%" y="485" width="0.0126%" height="15" fill="rgb(235,183,28)" fg:x="2665" fg:w="67"/><text x="0.7522%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (83 samples, 0.02%)</title><rect x="0.4995%" y="501" width="0.0156%" height="15" fill="rgb(221,5,38)" fg:x="2651" fg:w="83"/><text x="0.7495%" y="511.50"></text></g><g><title>ciField::ciField (126 samples, 0.02%)</title><rect x="0.4946%" y="517" width="0.0237%" height="15" fill="rgb(247,18,42)" fg:x="2625" fg:w="126"/><text x="0.7446%" y="527.50"></text></g><g><title>ciEnv::get_field_by_index (139 samples, 0.03%)</title><rect x="0.4926%" y="533" width="0.0262%" height="15" fill="rgb(241,131,45)" fg:x="2614" fg:w="139"/><text x="0.7426%" y="543.50"></text></g><g><title>ciBytecodeStream::get_field (158 samples, 0.03%)</title><rect x="0.4922%" y="549" width="0.0298%" height="15" fill="rgb(249,31,29)" fg:x="2612" fg:w="158"/><text x="0.7422%" y="559.50"></text></g><g><title>GraphBuilder::access_field (208 samples, 0.04%)</title><rect x="0.4850%" y="565" width="0.0392%" height="15" fill="rgb(225,111,53)" fg:x="2574" fg:w="208"/><text x="0.7350%" y="575.50"></text></g><g><title>BlockBegin::try_merge (55 samples, 0.01%)</title><rect x="0.5758%" y="485" width="0.0104%" height="15" fill="rgb(238,160,17)" fg:x="3056" fg:w="55"/><text x="0.8258%" y="495.50"></text></g><g><title>ciField::ciField (75 samples, 0.01%)</title><rect x="0.5941%" y="437" width="0.0141%" height="15" fill="rgb(214,148,48)" fg:x="3153" fg:w="75"/><text x="0.8441%" y="447.50"></text></g><g><title>ciEnv::get_field_by_index (81 samples, 0.02%)</title><rect x="0.5934%" y="453" width="0.0153%" height="15" fill="rgb(232,36,49)" fg:x="3149" fg:w="81"/><text x="0.8434%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (97 samples, 0.02%)</title><rect x="0.5932%" y="469" width="0.0183%" height="15" fill="rgb(209,103,24)" fg:x="3148" fg:w="97"/><text x="0.8432%" y="479.50"></text></g><g><title>GraphBuilder::access_field (128 samples, 0.02%)</title><rect x="0.5883%" y="485" width="0.0241%" height="15" fill="rgb(229,88,8)" fg:x="3122" fg:w="128"/><text x="0.8383%" y="495.50"></text></g><g><title>GraphBuilder::access_field (81 samples, 0.02%)</title><rect x="0.6418%" y="405" width="0.0153%" height="15" fill="rgb(213,181,19)" fg:x="3406" fg:w="81"/><text x="0.8918%" y="415.50"></text></g><g><title>GraphBuilder::invoke (67 samples, 0.01%)</title><rect x="0.6889%" y="245" width="0.0126%" height="15" fill="rgb(254,191,54)" fg:x="3656" fg:w="67"/><text x="0.9389%" y="255.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (111 samples, 0.02%)</title><rect x="0.6827%" y="277" width="0.0209%" height="15" fill="rgb(241,83,37)" fg:x="3623" fg:w="111"/><text x="0.9327%" y="287.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (109 samples, 0.02%)</title><rect x="0.6831%" y="261" width="0.0205%" height="15" fill="rgb(233,36,39)" fg:x="3625" fg:w="109"/><text x="0.9331%" y="271.50"></text></g><g><title>GraphBuilder::try_inline_full (153 samples, 0.03%)</title><rect x="0.6816%" y="293" width="0.0288%" height="15" fill="rgb(226,3,54)" fg:x="3617" fg:w="153"/><text x="0.9316%" y="303.50"></text></g><g><title>GraphBuilder::try_inline (164 samples, 0.03%)</title><rect x="0.6816%" y="309" width="0.0309%" height="15" fill="rgb(245,192,40)" fg:x="3617" fg:w="164"/><text x="0.9316%" y="319.50"></text></g><g><title>GraphBuilder::invoke (230 samples, 0.04%)</title><rect x="0.6800%" y="325" width="0.0433%" height="15" fill="rgb(238,167,29)" fg:x="3609" fg:w="230"/><text x="0.9300%" y="335.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (304 samples, 0.06%)</title><rect x="0.6689%" y="357" width="0.0573%" height="15" fill="rgb(232,182,51)" fg:x="3550" fg:w="304"/><text x="0.9189%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (301 samples, 0.06%)</title><rect x="0.6695%" y="341" width="0.0567%" height="15" fill="rgb(231,60,39)" fg:x="3553" fg:w="301"/><text x="0.9195%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (392 samples, 0.07%)</title><rect x="0.6663%" y="373" width="0.0739%" height="15" fill="rgb(208,69,12)" fg:x="3536" fg:w="392"/><text x="0.9163%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (433 samples, 0.08%)</title><rect x="0.6655%" y="389" width="0.0816%" height="15" fill="rgb(235,93,37)" fg:x="3532" fg:w="433"/><text x="0.9155%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (80 samples, 0.02%)</title><rect x="0.7507%" y="389" width="0.0151%" height="15" fill="rgb(213,116,39)" fg:x="3984" fg:w="80"/><text x="1.0007%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (79 samples, 0.01%)</title><rect x="0.7509%" y="373" width="0.0149%" height="15" fill="rgb(222,207,29)" fg:x="3985" fg:w="79"/><text x="1.0009%" y="383.50"></text></g><g><title>GraphBuilder::invoke (566 samples, 0.11%)</title><rect x="0.6618%" y="405" width="0.1067%" height="15" fill="rgb(206,96,30)" fg:x="3512" fg:w="566"/><text x="0.9118%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (762 samples, 0.14%)</title><rect x="0.6326%" y="437" width="0.1436%" height="15" fill="rgb(218,138,4)" fg:x="3357" fg:w="762"/><text x="0.8826%" y="447.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (755 samples, 0.14%)</title><rect x="0.6339%" y="421" width="0.1423%" height="15" fill="rgb(250,191,14)" fg:x="3364" fg:w="755"/><text x="0.8839%" y="431.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (56 samples, 0.01%)</title><rect x="0.7778%" y="421" width="0.0106%" height="15" fill="rgb(239,60,40)" fg:x="4128" fg:w="56"/><text x="1.0278%" y="431.50"></text></g><g><title>GraphBuilder::push_scope (78 samples, 0.01%)</title><rect x="0.7775%" y="437" width="0.0147%" height="15" fill="rgb(206,27,48)" fg:x="4126" fg:w="78"/><text x="1.0275%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (944 samples, 0.18%)</title><rect x="0.6254%" y="453" width="0.1779%" height="15" fill="rgb(225,35,8)" fg:x="3319" fg:w="944"/><text x="0.8754%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (991 samples, 0.19%)</title><rect x="0.6243%" y="469" width="0.1867%" height="15" fill="rgb(250,213,24)" fg:x="3313" fg:w="991"/><text x="0.8743%" y="479.50"></text></g><g><title>ciMethod::ciMethod (73 samples, 0.01%)</title><rect x="0.8282%" y="405" width="0.0138%" height="15" fill="rgb(247,123,22)" fg:x="4395" fg:w="73"/><text x="1.0782%" y="415.50"></text></g><g><title>ciSignature::ciSignature (57 samples, 0.01%)</title><rect x="0.8312%" y="389" width="0.0107%" height="15" fill="rgb(231,138,38)" fg:x="4411" fg:w="57"/><text x="1.0812%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (87 samples, 0.02%)</title><rect x="0.8259%" y="437" width="0.0164%" height="15" fill="rgb(231,145,46)" fg:x="4383" fg:w="87"/><text x="1.0759%" y="447.50"></text></g><g><title>ciObjectFactory::create_new_metadata (82 samples, 0.02%)</title><rect x="0.8268%" y="421" width="0.0155%" height="15" fill="rgb(251,118,11)" fg:x="4388" fg:w="82"/><text x="1.0768%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (150 samples, 0.03%)</title><rect x="0.8148%" y="469" width="0.0283%" height="15" fill="rgb(217,147,25)" fg:x="4324" fg:w="150"/><text x="1.0648%" y="479.50"></text></g><g><title>ciEnv::get_method_by_index_impl (143 samples, 0.03%)</title><rect x="0.8161%" y="453" width="0.0269%" height="15" fill="rgb(247,81,37)" fg:x="4331" fg:w="143"/><text x="1.0661%" y="463.50"></text></g><g><title>GraphBuilder::invoke (1,221 samples, 0.23%)</title><rect x="0.6194%" y="485" width="0.2301%" height="15" fill="rgb(209,12,38)" fg:x="3287" fg:w="1221"/><text x="0.8694%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,555 samples, 0.29%)</title><rect x="0.5700%" y="517" width="0.2930%" height="15" fill="rgb(227,1,9)" fg:x="3025" fg:w="1555"/><text x="0.8200%" y="527.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,544 samples, 0.29%)</title><rect x="0.5721%" y="501" width="0.2909%" height="15" fill="rgb(248,47,43)" fg:x="3036" fg:w="1544"/><text x="0.8221%" y="511.50"></text></g><g><title>BlockListBuilder::set_leaders (60 samples, 0.01%)</title><rect x="0.8702%" y="485" width="0.0113%" height="15" fill="rgb(221,10,30)" fg:x="4618" fg:w="60"/><text x="1.1202%" y="495.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (86 samples, 0.02%)</title><rect x="0.8660%" y="501" width="0.0162%" height="15" fill="rgb(210,229,1)" fg:x="4596" fg:w="86"/><text x="1.1160%" y="511.50"></text></g><g><title>GraphBuilder::push_scope (144 samples, 0.03%)</title><rect x="0.8651%" y="517" width="0.0271%" height="15" fill="rgb(222,148,37)" fg:x="4591" fg:w="144"/><text x="1.1151%" y="527.50"></text></g><g><title>Method::build_interpreter_method_data (69 samples, 0.01%)</title><rect x="0.8960%" y="485" width="0.0130%" height="15" fill="rgb(234,67,33)" fg:x="4755" fg:w="69"/><text x="1.1460%" y="495.50"></text></g><g><title>MethodData::allocate (68 samples, 0.01%)</title><rect x="0.8962%" y="469" width="0.0128%" height="15" fill="rgb(247,98,35)" fg:x="4756" fg:w="68"/><text x="1.1462%" y="479.50"></text></g><g><title>ciMethodData::load_data (57 samples, 0.01%)</title><rect x="0.9092%" y="485" width="0.0107%" height="15" fill="rgb(247,138,52)" fg:x="4825" fg:w="57"/><text x="1.1592%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (145 samples, 0.03%)</title><rect x="0.8958%" y="501" width="0.0273%" height="15" fill="rgb(213,79,30)" fg:x="4754" fg:w="145"/><text x="1.1458%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (154 samples, 0.03%)</title><rect x="0.8943%" y="517" width="0.0290%" height="15" fill="rgb(246,177,23)" fg:x="4746" fg:w="154"/><text x="1.1443%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (1,942 samples, 0.37%)</title><rect x="0.5587%" y="533" width="0.3659%" height="15" fill="rgb(230,62,27)" fg:x="2965" fg:w="1942"/><text x="0.8087%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (1,958 samples, 0.37%)</title><rect x="0.5566%" y="549" width="0.3689%" height="15" fill="rgb(216,154,8)" fg:x="2954" fg:w="1958"/><text x="0.8066%" y="559.50"></text></g><g><title>ciEnv::lookup_method (102 samples, 0.02%)</title><rect x="0.9465%" y="517" width="0.0192%" height="15" fill="rgb(244,35,45)" fg:x="5023" fg:w="102"/><text x="1.1965%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (60 samples, 0.01%)</title><rect x="0.9894%" y="453" width="0.0113%" height="15" fill="rgb(251,115,12)" fg:x="5251" fg:w="60"/><text x="1.2394%" y="463.50"></text></g><g><title>ciSignature::ciSignature (143 samples, 0.03%)</title><rect x="0.9763%" y="469" width="0.0269%" height="15" fill="rgb(240,54,50)" fg:x="5181" fg:w="143"/><text x="1.2263%" y="479.50"></text></g><g><title>ciMethod::ciMethod (171 samples, 0.03%)</title><rect x="0.9714%" y="485" width="0.0322%" height="15" fill="rgb(233,84,52)" fg:x="5155" fg:w="171"/><text x="1.2214%" y="495.50"></text></g><g><title>ciObjectFactory::get_metadata (204 samples, 0.04%)</title><rect x="0.9657%" y="517" width="0.0384%" height="15" fill="rgb(207,117,47)" fg:x="5125" fg:w="204"/><text x="1.2157%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (182 samples, 0.03%)</title><rect x="0.9699%" y="501" width="0.0343%" height="15" fill="rgb(249,43,39)" fg:x="5147" fg:w="182"/><text x="1.2199%" y="511.50"></text></g><g><title>ciEnv::get_method_by_index_impl (344 samples, 0.06%)</title><rect x="0.9405%" y="533" width="0.0648%" height="15" fill="rgb(209,38,44)" fg:x="4991" fg:w="344"/><text x="1.1905%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (368 samples, 0.07%)</title><rect x="0.9363%" y="549" width="0.0693%" height="15" fill="rgb(236,212,23)" fg:x="4969" fg:w="368"/><text x="1.1863%" y="559.50"></text></g><g><title>GraphBuilder::invoke (2,545 samples, 0.48%)</title><rect x="0.5391%" y="565" width="0.4796%" height="15" fill="rgb(242,79,21)" fg:x="2861" fg:w="2545"/><text x="0.7891%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,999 samples, 0.57%)</title><rect x="0.4679%" y="581" width="0.5651%" height="15" fill="rgb(211,96,35)" fg:x="2483" fg:w="2999"/><text x="0.7179%" y="591.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,045 samples, 0.57%)</title><rect x="0.4611%" y="597" width="0.5738%" height="15" fill="rgb(253,215,40)" fg:x="2447" fg:w="3045"/><text x="0.7111%" y="607.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,359 samples, 0.63%)</title><rect x="0.4138%" y="613" width="0.6329%" height="15" fill="rgb(211,81,21)" fg:x="2196" fg:w="3359"/><text x="0.6638%" y="623.50"></text></g><g><title>IR::IR (3,370 samples, 0.64%)</title><rect x="0.4136%" y="629" width="0.6350%" height="15" fill="rgb(208,190,38)" fg:x="2195" fg:w="3370"/><text x="0.6636%" y="639.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (63 samples, 0.01%)</title><rect x="1.0488%" y="613" width="0.0119%" height="15" fill="rgb(235,213,38)" fg:x="5566" fg:w="63"/><text x="1.2988%" y="623.50"></text></g><g><title>IR::compute_code (72 samples, 0.01%)</title><rect x="1.0486%" y="629" width="0.0136%" height="15" fill="rgb(237,122,38)" fg:x="5565" fg:w="72"/><text x="1.2986%" y="639.50"></text></g><g><title>UseCountComputer::block_do (79 samples, 0.01%)</title><rect x="1.0631%" y="597" width="0.0149%" height="15" fill="rgb(244,218,35)" fg:x="5642" fg:w="79"/><text x="1.3131%" y="607.50"></text></g><g><title>BlockList::iterate_backward (81 samples, 0.02%)</title><rect x="1.0629%" y="613" width="0.0153%" height="15" fill="rgb(240,68,47)" fg:x="5641" fg:w="81"/><text x="1.3129%" y="623.50"></text></g><g><title>IR::compute_use_counts (121 samples, 0.02%)</title><rect x="1.0622%" y="629" width="0.0228%" height="15" fill="rgb(210,16,53)" fg:x="5637" fg:w="121"/><text x="1.3122%" y="639.50"></text></g><g><title>NullCheckEliminator::iterate_one (141 samples, 0.03%)</title><rect x="1.0884%" y="597" width="0.0266%" height="15" fill="rgb(235,124,12)" fg:x="5776" fg:w="141"/><text x="1.3384%" y="607.50"></text></g><g><title>IR::eliminate_null_checks (168 samples, 0.03%)</title><rect x="1.0850%" y="629" width="0.0317%" height="15" fill="rgb(224,169,11)" fg:x="5758" fg:w="168"/><text x="1.3350%" y="639.50"></text></g><g><title>Optimizer::eliminate_null_checks (167 samples, 0.03%)</title><rect x="1.0852%" y="613" width="0.0315%" height="15" fill="rgb(250,166,2)" fg:x="5759" fg:w="167"/><text x="1.3352%" y="623.50"></text></g><g><title>IR::optimize_blocks (70 samples, 0.01%)</title><rect x="1.1166%" y="629" width="0.0132%" height="15" fill="rgb(242,216,29)" fg:x="5926" fg:w="70"/><text x="1.3666%" y="639.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (58 samples, 0.01%)</title><rect x="1.1189%" y="613" width="0.0109%" height="15" fill="rgb(230,116,27)" fg:x="5938" fg:w="58"/><text x="1.3689%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (56 samples, 0.01%)</title><rect x="1.1193%" y="597" width="0.0106%" height="15" fill="rgb(228,99,48)" fg:x="5940" fg:w="56"/><text x="1.3693%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (56 samples, 0.01%)</title><rect x="1.1193%" y="581" width="0.0106%" height="15" fill="rgb(253,11,6)" fg:x="5940" fg:w="56"/><text x="1.3693%" y="591.50"></text></g><g><title>Compilation::build_hir (4,254 samples, 0.80%)</title><rect x="0.3428%" y="645" width="0.8016%" height="15" fill="rgb(247,143,39)" fg:x="1819" fg:w="4254"/><text x="0.5928%" y="655.50"></text></g><g><title>LIR_Assembler::add_call_info (102 samples, 0.02%)</title><rect x="1.1722%" y="581" width="0.0192%" height="15" fill="rgb(236,97,10)" fg:x="6221" fg:w="102"/><text x="1.4222%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (102 samples, 0.02%)</title><rect x="1.1722%" y="565" width="0.0192%" height="15" fill="rgb(233,208,19)" fg:x="6221" fg:w="102"/><text x="1.4222%" y="575.50"></text></g><g><title>LIR_Assembler::call (109 samples, 0.02%)</title><rect x="1.1720%" y="597" width="0.0205%" height="15" fill="rgb(216,164,2)" fg:x="6220" fg:w="109"/><text x="1.4220%" y="607.50"></text></g><g><title>LIR_Assembler::emit_call (164 samples, 0.03%)</title><rect x="1.1656%" y="613" width="0.0309%" height="15" fill="rgb(220,129,5)" fg:x="6186" fg:w="164"/><text x="1.4156%" y="623.50"></text></g><g><title>LIR_Assembler::emit_op1 (147 samples, 0.03%)</title><rect x="1.2028%" y="613" width="0.0277%" height="15" fill="rgb(242,17,10)" fg:x="6383" fg:w="147"/><text x="1.4528%" y="623.50"></text></g><g><title>LIR_Assembler::emit_code (633 samples, 0.12%)</title><rect x="1.1477%" y="629" width="0.1193%" height="15" fill="rgb(242,107,0)" fg:x="6091" fg:w="633"/><text x="1.3977%" y="639.50"></text></g><g><title>CodeEmitInfo::record_debug_info (91 samples, 0.02%)</title><rect x="1.2777%" y="581" width="0.0171%" height="15" fill="rgb(251,28,31)" fg:x="6781" fg:w="91"/><text x="1.5277%" y="591.50"></text></g><g><title>LIR_Assembler::add_call_info (92 samples, 0.02%)</title><rect x="1.2777%" y="597" width="0.0173%" height="15" fill="rgb(233,223,10)" fg:x="6781" fg:w="92"/><text x="1.5277%" y="607.50"></text></g><g><title>CounterOverflowStub::emit_code (115 samples, 0.02%)</title><rect x="1.2766%" y="613" width="0.0217%" height="15" fill="rgb(215,21,27)" fg:x="6775" fg:w="115"/><text x="1.5266%" y="623.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (66 samples, 0.01%)</title><rect x="1.3021%" y="613" width="0.0124%" height="15" fill="rgb(232,23,21)" fg:x="6910" fg:w="66"/><text x="1.5521%" y="623.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (296 samples, 0.06%)</title><rect x="1.2745%" y="629" width="0.0558%" height="15" fill="rgb(244,5,23)" fg:x="6764" fg:w="296"/><text x="1.5245%" y="639.50"></text></g><g><title>Compilation::emit_code_body (999 samples, 0.19%)</title><rect x="1.1443%" y="645" width="0.1882%" height="15" fill="rgb(226,81,46)" fg:x="6073" fg:w="999"/><text x="1.3943%" y="655.50"></text></g><g><title>LIRGenerator::do_Base (79 samples, 0.01%)</title><rect x="1.3461%" y="597" width="0.0149%" height="15" fill="rgb(247,70,30)" fg:x="7144" fg:w="79"/><text x="1.5961%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (56 samples, 0.01%)</title><rect x="1.3693%" y="565" width="0.0106%" height="15" fill="rgb(212,68,19)" fg:x="7267" fg:w="56"/><text x="1.6193%" y="575.50"></text></g><g><title>LIRGenerator::move_to_phi (219 samples, 0.04%)</title><rect x="1.3663%" y="581" width="0.0413%" height="15" fill="rgb(240,187,13)" fg:x="7251" fg:w="219"/><text x="1.6163%" y="591.50"></text></g><g><title>PhiResolverState::reset (139 samples, 0.03%)</title><rect x="1.3814%" y="565" width="0.0262%" height="15" fill="rgb(223,113,26)" fg:x="7331" fg:w="139"/><text x="1.6314%" y="575.50"></text></g><g><title>LIRGenerator::do_Goto (241 samples, 0.05%)</title><rect x="1.3639%" y="597" width="0.0454%" height="15" fill="rgb(206,192,2)" fg:x="7238" fg:w="241"/><text x="1.6139%" y="607.50"></text></g><g><title>LIRGenerator::do_Invoke (137 samples, 0.03%)</title><rect x="1.4183%" y="597" width="0.0258%" height="15" fill="rgb(241,108,4)" fg:x="7527" fg:w="137"/><text x="1.6683%" y="607.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (77 samples, 0.01%)</title><rect x="1.4682%" y="597" width="0.0145%" height="15" fill="rgb(247,173,49)" fg:x="7792" fg:w="77"/><text x="1.7182%" y="607.50"></text></g><g><title>LIRGenerator::block_do (863 samples, 0.16%)</title><rect x="1.3345%" y="613" width="0.1626%" height="15" fill="rgb(224,114,35)" fg:x="7082" fg:w="863"/><text x="1.5845%" y="623.50"></text></g><g><title>BlockList::iterate_forward (869 samples, 0.16%)</title><rect x="1.3337%" y="629" width="0.1637%" height="15" fill="rgb(245,159,27)" fg:x="7078" fg:w="869"/><text x="1.5837%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (124 samples, 0.02%)</title><rect x="1.5184%" y="581" width="0.0234%" height="15" fill="rgb(245,172,44)" fg:x="8058" fg:w="124"/><text x="1.7684%" y="591.50"></text></g><g><title>LinearScanWalker::find_free_reg (97 samples, 0.02%)</title><rect x="1.5634%" y="549" width="0.0183%" height="15" fill="rgb(236,23,11)" fg:x="8297" fg:w="97"/><text x="1.8134%" y="559.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (113 samples, 0.02%)</title><rect x="1.5860%" y="549" width="0.0213%" height="15" fill="rgb(205,117,38)" fg:x="8417" fg:w="113"/><text x="1.8360%" y="559.50"></text></g><g><title>Interval::split (58 samples, 0.01%)</title><rect x="1.6088%" y="533" width="0.0109%" height="15" fill="rgb(237,72,25)" fg:x="8538" fg:w="58"/><text x="1.8588%" y="543.50"></text></g><g><title>LinearScanWalker::split_before_usage (75 samples, 0.01%)</title><rect x="1.6073%" y="549" width="0.0141%" height="15" fill="rgb(244,70,9)" fg:x="8530" fg:w="75"/><text x="1.8573%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (400 samples, 0.08%)</title><rect x="1.5466%" y="565" width="0.0754%" height="15" fill="rgb(217,125,39)" fg:x="8208" fg:w="400"/><text x="1.7966%" y="575.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (74 samples, 0.01%)</title><rect x="1.6280%" y="549" width="0.0139%" height="15" fill="rgb(235,36,10)" fg:x="8640" fg:w="74"/><text x="1.8780%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (150 samples, 0.03%)</title><rect x="1.6220%" y="565" width="0.0283%" height="15" fill="rgb(251,123,47)" fg:x="8608" fg:w="150"/><text x="1.8720%" y="575.50"></text></g><g><title>LinearScanWalker::activate_current (657 samples, 0.12%)</title><rect x="1.5417%" y="581" width="0.1238%" height="15" fill="rgb(221,13,13)" fg:x="8182" fg:w="657"/><text x="1.7917%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (817 samples, 0.15%)</title><rect x="1.5118%" y="597" width="0.1539%" height="15" fill="rgb(238,131,9)" fg:x="8023" fg:w="817"/><text x="1.7618%" y="607.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (58 samples, 0.01%)</title><rect x="1.6665%" y="597" width="0.0109%" height="15" fill="rgb(211,50,8)" fg:x="8844" fg:w="58"/><text x="1.9165%" y="607.50"></text></g><g><title>LinearScan::allocate_registers (902 samples, 0.17%)</title><rect x="1.5086%" y="613" width="0.1700%" height="15" fill="rgb(245,182,24)" fg:x="8006" fg:w="902"/><text x="1.7586%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (78 samples, 0.01%)</title><rect x="1.7042%" y="581" width="0.0147%" height="15" fill="rgb(242,14,37)" fg:x="9044" fg:w="78"/><text x="1.9542%" y="591.50"></text></g><g><title>LinearScan::color_lir_opr (62 samples, 0.01%)</title><rect x="1.7194%" y="581" width="0.0117%" height="15" fill="rgb(246,228,12)" fg:x="9125" fg:w="62"/><text x="1.9694%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (79 samples, 0.01%)</title><rect x="1.7420%" y="565" width="0.0149%" height="15" fill="rgb(213,55,15)" fg:x="9245" fg:w="79"/><text x="1.9920%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (148 samples, 0.03%)</title><rect x="1.7311%" y="581" width="0.0279%" height="15" fill="rgb(209,9,3)" fg:x="9187" fg:w="148"/><text x="1.9811%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (76 samples, 0.01%)</title><rect x="1.7667%" y="549" width="0.0143%" height="15" fill="rgb(230,59,30)" fg:x="9376" fg:w="76"/><text x="2.0167%" y="559.50"></text></g><g><title>LinearScan::compute_oop_map (132 samples, 0.02%)</title><rect x="1.7633%" y="565" width="0.0249%" height="15" fill="rgb(209,121,21)" fg:x="9358" fg:w="132"/><text x="2.0133%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (157 samples, 0.03%)</title><rect x="1.7590%" y="581" width="0.0296%" height="15" fill="rgb(220,109,13)" fg:x="9335" fg:w="157"/><text x="2.0090%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (577 samples, 0.11%)</title><rect x="1.6800%" y="597" width="0.1087%" height="15" fill="rgb(232,18,1)" fg:x="8916" fg:w="577"/><text x="1.9300%" y="607.50"></text></g><g><title>LinearScan::assign_reg_num (607 samples, 0.11%)</title><rect x="1.6785%" y="613" width="0.1144%" height="15" fill="rgb(215,41,42)" fg:x="8908" fg:w="607"/><text x="1.9285%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (81 samples, 0.02%)</title><rect x="1.8402%" y="597" width="0.0153%" height="15" fill="rgb(224,123,36)" fg:x="9766" fg:w="81"/><text x="2.0902%" y="607.50"></text></g><g><title>LinearScan::add_def (72 samples, 0.01%)</title><rect x="1.8555%" y="597" width="0.0136%" height="15" fill="rgb(240,125,3)" fg:x="9847" fg:w="72"/><text x="2.1055%" y="607.50"></text></g><g><title>Interval::add_range (54 samples, 0.01%)</title><rect x="1.8726%" y="581" width="0.0102%" height="15" fill="rgb(205,98,50)" fg:x="9938" fg:w="54"/><text x="2.1226%" y="591.50"></text></g><g><title>LinearScan::add_temp (109 samples, 0.02%)</title><rect x="1.8715%" y="597" width="0.0205%" height="15" fill="rgb(205,185,37)" fg:x="9932" fg:w="109"/><text x="2.1215%" y="607.50"></text></g><g><title>Interval::Interval (59 samples, 0.01%)</title><rect x="1.9118%" y="565" width="0.0111%" height="15" fill="rgb(238,207,15)" fg:x="10146" fg:w="59"/><text x="2.1618%" y="575.50"></text></g><g><title>LinearScan::add_use (173 samples, 0.03%)</title><rect x="1.8920%" y="597" width="0.0326%" height="15" fill="rgb(213,199,42)" fg:x="10041" fg:w="173"/><text x="2.1420%" y="607.50"></text></g><g><title>LinearScan::create_interval (87 samples, 0.02%)</title><rect x="1.9082%" y="581" width="0.0164%" height="15" fill="rgb(235,201,11)" fg:x="10127" fg:w="87"/><text x="2.1582%" y="591.50"></text></g><g><title>LinearScan::build_intervals (775 samples, 0.15%)</title><rect x="1.7929%" y="613" width="0.1460%" height="15" fill="rgb(207,46,11)" fg:x="9515" fg:w="775"/><text x="2.0429%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (86 samples, 0.02%)</title><rect x="1.9699%" y="597" width="0.0162%" height="15" fill="rgb(241,35,35)" fg:x="10454" fg:w="86"/><text x="2.2199%" y="607.50"></text></g><g><title>LinearScan::compute_local_live_sets (245 samples, 0.05%)</title><rect x="1.9480%" y="613" width="0.0462%" height="15" fill="rgb(243,32,47)" fg:x="10338" fg:w="245"/><text x="2.1980%" y="623.50"></text></g><g><title>LinearScan::eliminate_spill_moves (59 samples, 0.01%)</title><rect x="1.9942%" y="613" width="0.0111%" height="15" fill="rgb(247,202,23)" fg:x="10583" fg:w="59"/><text x="2.2442%" y="623.50"></text></g><g><title>LinearScan::resolve_collect_mappings (76 samples, 0.01%)</title><rect x="2.0177%" y="597" width="0.0143%" height="15" fill="rgb(219,102,11)" fg:x="10708" fg:w="76"/><text x="2.2677%" y="607.50"></text></g><g><title>LinearScan::resolve_data_flow (114 samples, 0.02%)</title><rect x="2.0138%" y="613" width="0.0215%" height="15" fill="rgb(243,110,44)" fg:x="10687" fg:w="114"/><text x="2.2638%" y="623.50"></text></g><g><title>LinearScan::do_linear_scan (2,964 samples, 0.56%)</title><rect x="1.5033%" y="629" width="0.5585%" height="15" fill="rgb(222,74,54)" fg:x="7978" fg:w="2964"/><text x="1.7533%" y="639.50"></text></g><g><title>Compilation::emit_lir (3,873 samples, 0.73%)</title><rect x="1.3326%" y="645" width="0.7298%" height="15" fill="rgb(216,99,12)" fg:x="7072" fg:w="3873"/><text x="1.5826%" y="655.50"></text></g><g><title>MethodData::allocate (64 samples, 0.01%)</title><rect x="2.0686%" y="597" width="0.0121%" height="15" fill="rgb(226,22,26)" fg:x="10978" fg:w="64"/><text x="2.3186%" y="607.50"></text></g><g><title>Method::build_interpreter_method_data (67 samples, 0.01%)</title><rect x="2.0684%" y="613" width="0.0126%" height="15" fill="rgb(217,163,10)" fg:x="10977" fg:w="67"/><text x="2.3184%" y="623.50"></text></g><g><title>ciMethodData::load_data (57 samples, 0.01%)</title><rect x="2.0814%" y="613" width="0.0107%" height="15" fill="rgb(213,25,53)" fg:x="11046" fg:w="57"/><text x="2.3314%" y="623.50"></text></g><g><title>ciMethod::ensure_method_data (136 samples, 0.03%)</title><rect x="2.0684%" y="629" width="0.0256%" height="15" fill="rgb(252,105,26)" fg:x="10977" fg:w="136"/><text x="2.3184%" y="639.50"></text></g><g><title>Compilation::compile_java_method (9,300 samples, 1.75%)</title><rect x="0.3418%" y="661" width="1.7524%" height="15" fill="rgb(220,39,43)" fg:x="1814" fg:w="9300"/><text x="0.5918%" y="671.50"></text></g><g><title>ciMethod::ensure_method_data (139 samples, 0.03%)</title><rect x="2.0680%" y="645" width="0.0262%" height="15" fill="rgb(229,68,48)" fg:x="10975" fg:w="139"/><text x="2.3180%" y="655.50"></text></g><g><title>CodeBuffer::finalize_oop_references (81 samples, 0.02%)</title><rect x="2.1136%" y="629" width="0.0153%" height="15" fill="rgb(252,8,32)" fg:x="11217" fg:w="81"/><text x="2.3636%" y="639.50"></text></g><g><title>CodeCache::allocate (55 samples, 0.01%)</title><rect x="2.1289%" y="629" width="0.0104%" height="15" fill="rgb(223,20,43)" fg:x="11298" fg:w="55"/><text x="2.3789%" y="639.50"></text></g><g><title>CodeBuffer::relocate_code_to (105 samples, 0.02%)</title><rect x="2.1528%" y="597" width="0.0198%" height="15" fill="rgb(229,81,49)" fg:x="11425" fg:w="105"/><text x="2.4028%" y="607.50"></text></g><g><title>CodeBuffer::copy_code_to (115 samples, 0.02%)</title><rect x="2.1524%" y="613" width="0.0217%" height="15" fill="rgb(236,28,36)" fg:x="11423" fg:w="115"/><text x="2.4024%" y="623.50"></text></g><g><title>nmethod::new_nmethod (489 samples, 0.09%)</title><rect x="2.1117%" y="645" width="0.0921%" height="15" fill="rgb(249,185,26)" fg:x="11207" fg:w="489"/><text x="2.3617%" y="655.50"></text></g><g><title>nmethod::nmethod (279 samples, 0.05%)</title><rect x="2.1513%" y="629" width="0.0526%" height="15" fill="rgb(249,174,33)" fg:x="11417" fg:w="279"/><text x="2.4013%" y="639.50"></text></g><g><title>ciEnv::register_method (556 samples, 0.10%)</title><rect x="2.0997%" y="661" width="0.1048%" height="15" fill="rgb(233,201,37)" fg:x="11143" fg:w="556"/><text x="2.3497%" y="671.50"></text></g><g><title>Compilation::compile_method (9,893 samples, 1.86%)</title><rect x="0.3407%" y="677" width="1.8641%" height="15" fill="rgb(221,78,26)" fg:x="1808" fg:w="9893"/><text x="0.5907%" y="687.50">C..</text></g><g><title>Compiler::compile_method (9,916 samples, 1.87%)</title><rect x="0.3382%" y="709" width="1.8685%" height="15" fill="rgb(250,127,30)" fg:x="1795" fg:w="9916"/><text x="0.5882%" y="719.50">C..</text></g><g><title>Compilation::Compilation (9,907 samples, 1.87%)</title><rect x="0.3399%" y="693" width="1.8668%" height="15" fill="rgb(230,49,44)" fg:x="1804" fg:w="9907"/><text x="0.5899%" y="703.50">C..</text></g><g><title>ciEnv::ciEnv (89 samples, 0.02%)</title><rect x="2.2120%" y="709" width="0.0168%" height="15" fill="rgb(229,67,23)" fg:x="11739" fg:w="89"/><text x="2.4620%" y="719.50"></text></g><g><title>ciMethod::ciMethod (78 samples, 0.01%)</title><rect x="2.2308%" y="661" width="0.0147%" height="15" fill="rgb(249,83,47)" fg:x="11839" fg:w="78"/><text x="2.4808%" y="671.50"></text></g><g><title>ciSignature::ciSignature (72 samples, 0.01%)</title><rect x="2.2320%" y="645" width="0.0136%" height="15" fill="rgb(215,43,3)" fg:x="11845" fg:w="72"/><text x="2.4820%" y="655.50"></text></g><g><title>ciEnv::get_method_from_handle (101 samples, 0.02%)</title><rect x="2.2288%" y="709" width="0.0190%" height="15" fill="rgb(238,154,13)" fg:x="11828" fg:w="101"/><text x="2.4788%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (98 samples, 0.02%)</title><rect x="2.2293%" y="693" width="0.0185%" height="15" fill="rgb(219,56,2)" fg:x="11831" fg:w="98"/><text x="2.4793%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (93 samples, 0.02%)</title><rect x="2.2303%" y="677" width="0.0175%" height="15" fill="rgb(233,0,4)" fg:x="11836" fg:w="93"/><text x="2.4803%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (10,372 samples, 1.95%)</title><rect x="0.2990%" y="725" width="1.9544%" height="15" fill="rgb(235,30,7)" fg:x="1587" fg:w="10372"/><text x="0.5490%" y="735.50">C..</text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="2.2740%" y="485" width="0.0115%" height="15" fill="rgb(250,79,13)" fg:x="12068" fg:w="61"/><text x="2.5240%" y="495.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.02%)</title><rect x="2.2708%" y="533" width="0.0166%" height="15" fill="rgb(211,146,34)" fg:x="12051" fg:w="88"/><text x="2.5208%" y="543.50"></text></g><g><title>schedule (83 samples, 0.02%)</title><rect x="2.2717%" y="517" width="0.0156%" height="15" fill="rgb(228,22,38)" fg:x="12056" fg:w="83"/><text x="2.5217%" y="527.50"></text></g><g><title>__schedule (81 samples, 0.02%)</title><rect x="2.2721%" y="501" width="0.0153%" height="15" fill="rgb(235,168,5)" fg:x="12058" fg:w="81"/><text x="2.5221%" y="511.50"></text></g><g><title>do_syscall_64 (96 samples, 0.02%)</title><rect x="2.2706%" y="597" width="0.0181%" height="15" fill="rgb(221,155,16)" fg:x="12050" fg:w="96"/><text x="2.5206%" y="607.50"></text></g><g><title>__x64_sys_futex (96 samples, 0.02%)</title><rect x="2.2706%" y="581" width="0.0181%" height="15" fill="rgb(215,215,53)" fg:x="12050" fg:w="96"/><text x="2.5206%" y="591.50"></text></g><g><title>do_futex (96 samples, 0.02%)</title><rect x="2.2706%" y="565" width="0.0181%" height="15" fill="rgb(223,4,10)" fg:x="12050" fg:w="96"/><text x="2.5206%" y="575.50"></text></g><g><title>futex_wait (95 samples, 0.02%)</title><rect x="2.2708%" y="549" width="0.0179%" height="15" fill="rgb(234,103,6)" fg:x="12051" fg:w="95"/><text x="2.5208%" y="559.50"></text></g><g><title>__pthread_cond_timedwait (103 samples, 0.02%)</title><rect x="2.2704%" y="661" width="0.0194%" height="15" fill="rgb(227,97,0)" fg:x="12049" fg:w="103"/><text x="2.5204%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (103 samples, 0.02%)</title><rect x="2.2704%" y="645" width="0.0194%" height="15" fill="rgb(234,150,53)" fg:x="12049" fg:w="103"/><text x="2.5204%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (102 samples, 0.02%)</title><rect x="2.2706%" y="629" width="0.0192%" height="15" fill="rgb(228,201,54)" fg:x="12050" fg:w="102"/><text x="2.5206%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.02%)</title><rect x="2.2706%" y="613" width="0.0192%" height="15" fill="rgb(222,22,37)" fg:x="12050" fg:w="102"/><text x="2.5206%" y="623.50"></text></g><g><title>Monitor::IWait (117 samples, 0.02%)</title><rect x="2.2687%" y="693" width="0.0220%" height="15" fill="rgb(237,53,32)" fg:x="12040" fg:w="117"/><text x="2.5187%" y="703.50"></text></g><g><title>os::PlatformEvent::park (112 samples, 0.02%)</title><rect x="2.2696%" y="677" width="0.0211%" height="15" fill="rgb(233,25,53)" fg:x="12045" fg:w="112"/><text x="2.5196%" y="687.50"></text></g><g><title>Monitor::wait (120 samples, 0.02%)</title><rect x="2.2685%" y="709" width="0.0226%" height="15" fill="rgb(210,40,34)" fg:x="12039" fg:w="120"/><text x="2.5185%" y="719.50"></text></g><g><title>CompileQueue::get (216 samples, 0.04%)</title><rect x="2.2615%" y="725" width="0.0407%" height="15" fill="rgb(241,220,44)" fg:x="12002" fg:w="216"/><text x="2.5115%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (10,648 samples, 2.01%)</title><rect x="0.2979%" y="741" width="2.0064%" height="15" fill="rgb(235,28,35)" fg:x="1581" fg:w="10648"/><text x="0.5479%" y="751.50">C..</text></g><g><title>Thread::call_run (10,650 samples, 2.01%)</title><rect x="0.2977%" y="773" width="2.0068%" height="15" fill="rgb(210,56,17)" fg:x="1580" fg:w="10650"/><text x="0.5477%" y="783.50">T..</text></g><g><title>JavaThread::thread_main_inner (10,649 samples, 2.01%)</title><rect x="0.2979%" y="757" width="2.0066%" height="15" fill="rgb(224,130,29)" fg:x="1581" fg:w="10649"/><text x="0.5479%" y="767.50">J..</text></g><g><title>__GI___clone (10,684 samples, 2.01%)</title><rect x="0.2919%" y="821" width="2.0132%" height="15" fill="rgb(235,212,8)" fg:x="1549" fg:w="10684"/><text x="0.5419%" y="831.50">_..</text></g><g><title>start_thread (10,653 samples, 2.01%)</title><rect x="0.2977%" y="805" width="2.0073%" height="15" fill="rgb(223,33,50)" fg:x="1580" fg:w="10653"/><text x="0.5477%" y="815.50">s..</text></g><g><title>thread_native_entry (10,653 samples, 2.01%)</title><rect x="0.2977%" y="789" width="2.0073%" height="15" fill="rgb(219,149,13)" fg:x="1580" fg:w="10653"/><text x="0.5477%" y="799.50">t..</text></g><g><title>C1_CompilerThre (12,279 samples, 2.31%)</title><rect x="0.0024%" y="837" width="2.3137%" height="15" fill="rgb(250,156,29)" fg:x="13" fg:w="12279"/><text x="0.2524%" y="847.50">C..</text></g><g><title>PhaseIdealLoop::build_loop_early (69 samples, 0.01%)</title><rect x="2.3531%" y="821" width="0.0130%" height="15" fill="rgb(216,193,19)" fg:x="12488" fg:w="69"/><text x="2.6031%" y="831.50"></text></g><g><title>ProjNode::pinned (68 samples, 0.01%)</title><rect x="2.3533%" y="805" width="0.0128%" height="15" fill="rgb(216,135,14)" fg:x="12489" fg:w="68"/><text x="2.6033%" y="815.50"></text></g><g><title>MultiNode::is_CFG (66 samples, 0.01%)</title><rect x="2.5813%" y="805" width="0.0124%" height="15" fill="rgb(241,47,5)" fg:x="13699" fg:w="66"/><text x="2.8313%" y="815.50"></text></g><g><title>Node::is_CFG (67 samples, 0.01%)</title><rect x="2.6081%" y="805" width="0.0126%" height="15" fill="rgb(233,42,35)" fg:x="13841" fg:w="67"/><text x="2.8581%" y="815.50"></text></g><g><title>_dl_update_slotinfo (178 samples, 0.03%)</title><rect x="2.8110%" y="805" width="0.0335%" height="15" fill="rgb(231,13,6)" fg:x="14918" fg:w="178"/><text x="3.0610%" y="815.50"></text></g><g><title>[anon] (2,994 samples, 0.56%)</title><rect x="2.3718%" y="821" width="0.5642%" height="15" fill="rgb(207,181,40)" fg:x="12587" fg:w="2994"/><text x="2.6218%" y="831.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (65 samples, 0.01%)</title><rect x="2.9621%" y="549" width="0.0122%" height="15" fill="rgb(254,173,49)" fg:x="15720" fg:w="65"/><text x="3.2121%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (65 samples, 0.01%)</title><rect x="2.9621%" y="533" width="0.0122%" height="15" fill="rgb(221,1,38)" fg:x="15720" fg:w="65"/><text x="3.2121%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (61 samples, 0.01%)</title><rect x="2.9629%" y="517" width="0.0115%" height="15" fill="rgb(206,124,46)" fg:x="15724" fg:w="61"/><text x="3.2129%" y="527.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (115 samples, 0.02%)</title><rect x="2.9542%" y="565" width="0.0217%" height="15" fill="rgb(249,21,11)" fg:x="15678" fg:w="115"/><text x="3.2042%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (129 samples, 0.02%)</title><rect x="2.9520%" y="597" width="0.0243%" height="15" fill="rgb(222,201,40)" fg:x="15666" fg:w="129"/><text x="3.2020%" y="607.50"></text></g><g><title>ciTypeFlow::flow_block (128 samples, 0.02%)</title><rect x="2.9521%" y="581" width="0.0241%" height="15" fill="rgb(235,61,29)" fg:x="15667" fg:w="128"/><text x="3.2021%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (138 samples, 0.03%)</title><rect x="2.9510%" y="661" width="0.0260%" height="15" fill="rgb(219,207,3)" fg:x="15661" fg:w="138"/><text x="3.2010%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (138 samples, 0.03%)</title><rect x="2.9510%" y="645" width="0.0260%" height="15" fill="rgb(222,56,46)" fg:x="15661" fg:w="138"/><text x="3.2010%" y="655.50"></text></g><g><title>ciTypeFlow::do_flow (138 samples, 0.03%)</title><rect x="2.9510%" y="629" width="0.0260%" height="15" fill="rgb(239,76,54)" fg:x="15661" fg:w="138"/><text x="3.2010%" y="639.50"></text></g><g><title>ciTypeFlow::flow_types (138 samples, 0.03%)</title><rect x="2.9510%" y="613" width="0.0260%" height="15" fill="rgb(231,124,27)" fg:x="15661" fg:w="138"/><text x="3.2010%" y="623.50"></text></g><g><title>Compile::call_generator (179 samples, 0.03%)</title><rect x="2.9435%" y="677" width="0.0337%" height="15" fill="rgb(249,195,6)" fg:x="15621" fg:w="179"/><text x="3.1935%" y="687.50"></text></g><g><title>ciTypeFlow::df_flow_types (76 samples, 0.01%)</title><rect x="2.9917%" y="501" width="0.0143%" height="15" fill="rgb(237,174,47)" fg:x="15877" fg:w="76"/><text x="3.2417%" y="511.50"></text></g><g><title>ciTypeFlow::flow_block (70 samples, 0.01%)</title><rect x="2.9928%" y="485" width="0.0132%" height="15" fill="rgb(206,201,31)" fg:x="15883" fg:w="70"/><text x="3.2428%" y="495.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (61 samples, 0.01%)</title><rect x="2.9945%" y="469" width="0.0115%" height="15" fill="rgb(231,57,52)" fg:x="15892" fg:w="61"/><text x="3.2445%" y="479.50"></text></g><g><title>ciTypeFlow::do_flow (81 samples, 0.02%)</title><rect x="2.9913%" y="533" width="0.0153%" height="15" fill="rgb(248,177,22)" fg:x="15875" fg:w="81"/><text x="3.2413%" y="543.50"></text></g><g><title>ciTypeFlow::flow_types (81 samples, 0.02%)</title><rect x="2.9913%" y="517" width="0.0153%" height="15" fill="rgb(215,211,37)" fg:x="15875" fg:w="81"/><text x="3.2413%" y="527.50"></text></g><g><title>InlineTree::ok_to_inline (107 samples, 0.02%)</title><rect x="2.9866%" y="565" width="0.0202%" height="15" fill="rgb(241,128,51)" fg:x="15850" fg:w="107"/><text x="3.2366%" y="575.50"></text></g><g><title>ciMethod::get_flow_analysis (88 samples, 0.02%)</title><rect x="2.9902%" y="549" width="0.0166%" height="15" fill="rgb(227,165,31)" fg:x="15869" fg:w="88"/><text x="3.2402%" y="559.50"></text></g><g><title>Compile::call_generator (127 samples, 0.02%)</title><rect x="2.9834%" y="581" width="0.0239%" height="15" fill="rgb(228,167,24)" fg:x="15833" fg:w="127"/><text x="3.2334%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (62 samples, 0.01%)</title><rect x="3.0339%" y="469" width="0.0117%" height="15" fill="rgb(228,143,12)" fg:x="16101" fg:w="62"/><text x="3.2839%" y="479.50"></text></g><g><title>Compile::call_generator (77 samples, 0.01%)</title><rect x="3.0324%" y="485" width="0.0145%" height="15" fill="rgb(249,149,8)" fg:x="16093" fg:w="77"/><text x="3.2824%" y="495.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.01%)</title><rect x="3.0773%" y="389" width="0.0134%" height="15" fill="rgb(243,35,44)" fg:x="16331" fg:w="71"/><text x="3.3273%" y="399.50"></text></g><g><title>Parse::Parse (71 samples, 0.01%)</title><rect x="3.0773%" y="373" width="0.0134%" height="15" fill="rgb(246,89,9)" fg:x="16331" fg:w="71"/><text x="3.3273%" y="383.50"></text></g><g><title>Parse::do_call (149 samples, 0.03%)</title><rect x="3.0667%" y="405" width="0.0281%" height="15" fill="rgb(233,213,13)" fg:x="16275" fg:w="149"/><text x="3.3167%" y="415.50"></text></g><g><title>Parse::do_field_access (60 samples, 0.01%)</title><rect x="3.0959%" y="405" width="0.0113%" height="15" fill="rgb(233,141,41)" fg:x="16430" fg:w="60"/><text x="3.3459%" y="415.50"></text></g><g><title>Parse::do_one_block (301 samples, 0.06%)</title><rect x="3.0622%" y="437" width="0.0567%" height="15" fill="rgb(239,167,4)" fg:x="16251" fg:w="301"/><text x="3.3122%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (295 samples, 0.06%)</title><rect x="3.0633%" y="421" width="0.0556%" height="15" fill="rgb(209,217,16)" fg:x="16257" fg:w="295"/><text x="3.3133%" y="431.50"></text></g><g><title>Parse::do_all_blocks (307 samples, 0.06%)</title><rect x="3.0618%" y="453" width="0.0578%" height="15" fill="rgb(219,88,35)" fg:x="16249" fg:w="307"/><text x="3.3118%" y="463.50"></text></g><g><title>ParseGenerator::generate (357 samples, 0.07%)</title><rect x="3.0571%" y="485" width="0.0673%" height="15" fill="rgb(220,193,23)" fg:x="16224" fg:w="357"/><text x="3.3071%" y="495.50"></text></g><g><title>Parse::Parse (357 samples, 0.07%)</title><rect x="3.0571%" y="469" width="0.0673%" height="15" fill="rgb(230,90,52)" fg:x="16224" fg:w="357"/><text x="3.3071%" y="479.50"></text></g><g><title>Parse::do_call (545 samples, 0.10%)</title><rect x="3.0324%" y="501" width="0.1027%" height="15" fill="rgb(252,106,19)" fg:x="16093" fg:w="545"/><text x="3.2824%" y="511.50"></text></g><g><title>Parse::do_field_access (81 samples, 0.02%)</title><rect x="3.1372%" y="501" width="0.0153%" height="15" fill="rgb(206,74,20)" fg:x="16649" fg:w="81"/><text x="3.3872%" y="511.50"></text></g><g><title>Parse::do_one_block (740 samples, 0.14%)</title><rect x="3.0258%" y="533" width="0.1394%" height="15" fill="rgb(230,138,44)" fg:x="16058" fg:w="740"/><text x="3.2758%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (729 samples, 0.14%)</title><rect x="3.0279%" y="517" width="0.1374%" height="15" fill="rgb(235,182,43)" fg:x="16069" fg:w="729"/><text x="3.2779%" y="527.50"></text></g><g><title>Parse::do_all_blocks (742 samples, 0.14%)</title><rect x="3.0258%" y="549" width="0.1398%" height="15" fill="rgb(242,16,51)" fg:x="16058" fg:w="742"/><text x="3.2758%" y="559.50"></text></g><g><title>ParseGenerator::generate (817 samples, 0.15%)</title><rect x="3.0175%" y="581" width="0.1539%" height="15" fill="rgb(248,9,4)" fg:x="16014" fg:w="817"/><text x="3.2675%" y="591.50"></text></g><g><title>Parse::Parse (816 samples, 0.15%)</title><rect x="3.0177%" y="565" width="0.1538%" height="15" fill="rgb(210,31,22)" fg:x="16015" fg:w="816"/><text x="3.2677%" y="575.50"></text></g><g><title>Parse::do_call (75 samples, 0.01%)</title><rect x="3.1758%" y="485" width="0.0141%" height="15" fill="rgb(239,54,39)" fg:x="16854" fg:w="75"/><text x="3.4258%" y="495.50"></text></g><g><title>Parse::do_one_block (93 samples, 0.02%)</title><rect x="3.1752%" y="517" width="0.0175%" height="15" fill="rgb(230,99,41)" fg:x="16851" fg:w="93"/><text x="3.4252%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.02%)</title><rect x="3.1752%" y="501" width="0.0175%" height="15" fill="rgb(253,106,12)" fg:x="16851" fg:w="93"/><text x="3.4252%" y="511.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.02%)</title><rect x="3.1752%" y="533" width="0.0177%" height="15" fill="rgb(213,46,41)" fg:x="16851" fg:w="94"/><text x="3.4252%" y="543.50"></text></g><g><title>ParseGenerator::generate (101 samples, 0.02%)</title><rect x="3.1747%" y="565" width="0.0190%" height="15" fill="rgb(215,133,35)" fg:x="16848" fg:w="101"/><text x="3.4247%" y="575.50"></text></g><g><title>Parse::Parse (101 samples, 0.02%)</title><rect x="3.1747%" y="549" width="0.0190%" height="15" fill="rgb(213,28,5)" fg:x="16848" fg:w="101"/><text x="3.4247%" y="559.50"></text></g><g><title>PredictedCallGenerator::generate (136 samples, 0.03%)</title><rect x="3.1715%" y="581" width="0.0256%" height="15" fill="rgb(215,77,49)" fg:x="16831" fg:w="136"/><text x="3.4215%" y="591.50"></text></g><g><title>Parse::do_call (1,161 samples, 0.22%)</title><rect x="2.9834%" y="597" width="0.2188%" height="15" fill="rgb(248,100,22)" fg:x="15833" fg:w="1161"/><text x="3.2334%" y="607.50"></text></g><g><title>Parse::do_put_xxx (54 samples, 0.01%)</title><rect x="3.2135%" y="581" width="0.0102%" height="15" fill="rgb(208,67,9)" fg:x="17054" fg:w="54"/><text x="3.4635%" y="591.50"></text></g><g><title>Parse::do_field_access (112 samples, 0.02%)</title><rect x="3.2037%" y="597" width="0.0211%" height="15" fill="rgb(219,133,21)" fg:x="17002" fg:w="112"/><text x="3.4537%" y="607.50"></text></g><g><title>Parse::do_one_block (1,349 samples, 0.25%)</title><rect x="2.9787%" y="629" width="0.2542%" height="15" fill="rgb(246,46,29)" fg:x="15808" fg:w="1349"/><text x="3.2287%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (1,344 samples, 0.25%)</title><rect x="2.9796%" y="613" width="0.2533%" height="15" fill="rgb(246,185,52)" fg:x="15813" fg:w="1344"/><text x="3.2296%" y="623.50"></text></g><g><title>Parse::do_all_blocks (1,350 samples, 0.25%)</title><rect x="2.9787%" y="645" width="0.2544%" height="15" fill="rgb(252,136,11)" fg:x="15808" fg:w="1350"/><text x="3.2287%" y="655.50"></text></g><g><title>ParseGenerator::generate (1,356 samples, 0.26%)</title><rect x="2.9780%" y="677" width="0.2555%" height="15" fill="rgb(219,138,53)" fg:x="15804" fg:w="1356"/><text x="3.2280%" y="687.50"></text></g><g><title>Parse::Parse (1,356 samples, 0.26%)</title><rect x="2.9780%" y="661" width="0.2555%" height="15" fill="rgb(211,51,23)" fg:x="15804" fg:w="1356"/><text x="3.2280%" y="671.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="3.2495%" y="469" width="0.0109%" height="15" fill="rgb(247,221,28)" fg:x="17245" fg:w="58"/><text x="3.4995%" y="479.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="3.2495%" y="453" width="0.0109%" height="15" fill="rgb(251,222,45)" fg:x="17245" fg:w="58"/><text x="3.4995%" y="463.50"></text></g><g><title>Parse::do_call (79 samples, 0.01%)</title><rect x="3.2468%" y="485" width="0.0149%" height="15" fill="rgb(217,162,53)" fg:x="17231" fg:w="79"/><text x="3.4968%" y="495.50"></text></g><g><title>Parse::do_one_block (126 samples, 0.02%)</title><rect x="3.2444%" y="517" width="0.0237%" height="15" fill="rgb(229,93,14)" fg:x="17218" fg:w="126"/><text x="3.4944%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (125 samples, 0.02%)</title><rect x="3.2446%" y="501" width="0.0236%" height="15" fill="rgb(209,67,49)" fg:x="17219" fg:w="125"/><text x="3.4946%" y="511.50"></text></g><g><title>Parse::do_all_blocks (129 samples, 0.02%)</title><rect x="3.2442%" y="533" width="0.0243%" height="15" fill="rgb(213,87,29)" fg:x="17217" fg:w="129"/><text x="3.4942%" y="543.50"></text></g><g><title>ParseGenerator::generate (143 samples, 0.03%)</title><rect x="3.2429%" y="565" width="0.0269%" height="15" fill="rgb(205,151,52)" fg:x="17210" fg:w="143"/><text x="3.4929%" y="575.50"></text></g><g><title>Parse::Parse (143 samples, 0.03%)</title><rect x="3.2429%" y="549" width="0.0269%" height="15" fill="rgb(253,215,39)" fg:x="17210" fg:w="143"/><text x="3.4929%" y="559.50"></text></g><g><title>Parse::do_call (217 samples, 0.04%)</title><rect x="3.2352%" y="581" width="0.0409%" height="15" fill="rgb(221,220,41)" fg:x="17169" fg:w="217"/><text x="3.4852%" y="591.50"></text></g><g><title>Parse::do_one_block (258 samples, 0.05%)</title><rect x="3.2340%" y="613" width="0.0486%" height="15" fill="rgb(218,133,21)" fg:x="17163" fg:w="258"/><text x="3.4840%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (257 samples, 0.05%)</title><rect x="3.2342%" y="597" width="0.0484%" height="15" fill="rgb(221,193,43)" fg:x="17164" fg:w="257"/><text x="3.4842%" y="607.50"></text></g><g><title>Parse::do_all_blocks (259 samples, 0.05%)</title><rect x="3.2340%" y="629" width="0.0488%" height="15" fill="rgb(240,128,52)" fg:x="17163" fg:w="259"/><text x="3.4840%" y="639.50"></text></g><g><title>ParseGenerator::generate (262 samples, 0.05%)</title><rect x="3.2338%" y="661" width="0.0494%" height="15" fill="rgb(253,114,12)" fg:x="17162" fg:w="262"/><text x="3.4838%" y="671.50"></text></g><g><title>Parse::Parse (262 samples, 0.05%)</title><rect x="3.2338%" y="645" width="0.0494%" height="15" fill="rgb(215,223,47)" fg:x="17162" fg:w="262"/><text x="3.4838%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (306 samples, 0.06%)</title><rect x="3.2335%" y="677" width="0.0577%" height="15" fill="rgb(248,225,23)" fg:x="17160" fg:w="306"/><text x="3.4835%" y="687.50"></text></g><g><title>Parse::do_call (1,854 samples, 0.35%)</title><rect x="2.9435%" y="693" width="0.3493%" height="15" fill="rgb(250,108,0)" fg:x="15621" fg:w="1854"/><text x="3.1935%" y="703.50"></text></g><g><title>Parse::do_all_blocks (1,865 samples, 0.35%)</title><rect x="2.9435%" y="741" width="0.3514%" height="15" fill="rgb(228,208,7)" fg:x="15621" fg:w="1865"/><text x="3.1935%" y="751.50"></text></g><g><title>Parse::do_one_block (1,865 samples, 0.35%)</title><rect x="2.9435%" y="725" width="0.3514%" height="15" fill="rgb(244,45,10)" fg:x="15621" fg:w="1865"/><text x="3.1935%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (1,865 samples, 0.35%)</title><rect x="2.9435%" y="709" width="0.3514%" height="15" fill="rgb(207,125,25)" fg:x="15621" fg:w="1865"/><text x="3.1935%" y="719.50"></text></g><g><title>C2Compiler::compile_method (1,887 samples, 0.36%)</title><rect x="2.9397%" y="805" width="0.3556%" height="15" fill="rgb(210,195,18)" fg:x="15601" fg:w="1887"/><text x="3.1897%" y="815.50"></text></g><g><title>Compile::Compile (1,887 samples, 0.36%)</title><rect x="2.9397%" y="789" width="0.3556%" height="15" fill="rgb(249,80,12)" fg:x="15601" fg:w="1887"/><text x="3.1897%" y="799.50"></text></g><g><title>ParseGenerator::generate (1,867 samples, 0.35%)</title><rect x="2.9435%" y="773" width="0.3518%" height="15" fill="rgb(221,65,9)" fg:x="15621" fg:w="1867"/><text x="3.1935%" y="783.50"></text></g><g><title>Parse::Parse (1,867 samples, 0.35%)</title><rect x="2.9435%" y="757" width="0.3518%" height="15" fill="rgb(235,49,36)" fg:x="15621" fg:w="1867"/><text x="3.1935%" y="767.50"></text></g><g><title>PhaseCFG::sched_call (163 samples, 0.03%)</title><rect x="3.3162%" y="741" width="0.0307%" height="15" fill="rgb(225,32,20)" fg:x="17599" fg:w="163"/><text x="3.5662%" y="751.50"></text></g><g><title>PhaseCFG::schedule_local (166 samples, 0.03%)</title><rect x="3.3162%" y="757" width="0.0313%" height="15" fill="rgb(215,141,46)" fg:x="17599" fg:w="166"/><text x="3.5662%" y="767.50"></text></g><g><title>PhaseCFG::do_global_code_motion (220 samples, 0.04%)</title><rect x="3.3079%" y="789" width="0.0415%" height="15" fill="rgb(250,160,47)" fg:x="17555" fg:w="220"/><text x="3.5579%" y="799.50"></text></g><g><title>PhaseCFG::global_code_motion (220 samples, 0.04%)</title><rect x="3.3079%" y="773" width="0.0415%" height="15" fill="rgb(216,222,40)" fg:x="17555" fg:w="220"/><text x="3.5579%" y="783.50"></text></g><g><title>Compile::Code_Gen (342 samples, 0.06%)</title><rect x="3.2958%" y="805" width="0.0644%" height="15" fill="rgb(234,217,39)" fg:x="17491" fg:w="342"/><text x="3.5458%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (58 samples, 0.01%)</title><rect x="3.3493%" y="789" width="0.0109%" height="15" fill="rgb(207,178,40)" fg:x="17775" fg:w="58"/><text x="3.5993%" y="799.50"></text></g><g><title>OopFlow::compute_reach (195 samples, 0.04%)</title><rect x="3.4471%" y="741" width="0.0367%" height="15" fill="rgb(221,136,13)" fg:x="18294" fg:w="195"/><text x="3.6971%" y="751.50"></text></g><g><title>OopFlow::build_oop_map (103 samples, 0.02%)</title><rect x="3.4645%" y="725" width="0.0194%" height="15" fill="rgb(249,199,10)" fg:x="18386" fg:w="103"/><text x="3.7145%" y="735.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (68 samples, 0.01%)</title><rect x="3.4860%" y="741" width="0.0128%" height="15" fill="rgb(249,222,13)" fg:x="18500" fg:w="68"/><text x="3.7360%" y="751.50"></text></g><g><title>Compile::BuildOopMaps (721 samples, 0.14%)</title><rect x="3.3633%" y="757" width="0.1359%" height="15" fill="rgb(244,185,38)" fg:x="17849" fg:w="721"/><text x="3.6133%" y="767.50"></text></g><g><title>Compile::scratch_emit_size (154 samples, 0.03%)</title><rect x="3.5325%" y="725" width="0.0290%" height="15" fill="rgb(236,202,9)" fg:x="18747" fg:w="154"/><text x="3.7825%" y="735.50"></text></g><g><title>Compile::init_buffer (356 samples, 0.07%)</title><rect x="3.4992%" y="757" width="0.0671%" height="15" fill="rgb(250,229,37)" fg:x="18570" fg:w="356"/><text x="3.7492%" y="767.50"></text></g><g><title>Compile::shorten_branches (307 samples, 0.06%)</title><rect x="3.5084%" y="741" width="0.0578%" height="15" fill="rgb(206,174,23)" fg:x="18619" fg:w="307"/><text x="3.7584%" y="751.50"></text></g><g><title>Compile::Output (1,094 samples, 0.21%)</title><rect x="3.3608%" y="773" width="0.2061%" height="15" fill="rgb(211,33,43)" fg:x="17836" fg:w="1094"/><text x="3.6108%" y="783.50"></text></g><g><title>Compile::Process_OopMap_Node (209 samples, 0.04%)</title><rect x="3.5971%" y="757" width="0.0394%" height="15" fill="rgb(245,58,50)" fg:x="19090" fg:w="209"/><text x="3.8471%" y="767.50"></text></g><g><title>Compile::fill_buffer (506 samples, 0.10%)</title><rect x="3.5674%" y="773" width="0.0953%" height="15" fill="rgb(244,68,36)" fg:x="18932" fg:w="506"/><text x="3.8174%" y="783.50"></text></g><g><title>Matcher::find_shared (344 samples, 0.06%)</title><rect x="3.6768%" y="757" width="0.0648%" height="15" fill="rgb(232,229,15)" fg:x="19513" fg:w="344"/><text x="3.9268%" y="767.50"></text></g><g><title>Arena::contains (488 samples, 0.09%)</title><rect x="3.8052%" y="741" width="0.0920%" height="15" fill="rgb(254,30,23)" fg:x="20194" fg:w="488"/><text x="4.0552%" y="751.50"></text></g><g><title>Matcher::match_tree (104 samples, 0.02%)</title><rect x="3.9097%" y="725" width="0.0196%" height="15" fill="rgb(235,160,14)" fg:x="20749" fg:w="104"/><text x="4.1597%" y="735.50"></text></g><g><title>Matcher::match_sfpt (145 samples, 0.03%)</title><rect x="3.9050%" y="741" width="0.0273%" height="15" fill="rgb(212,155,44)" fg:x="20724" fg:w="145"/><text x="4.1550%" y="751.50"></text></g><g><title>Matcher::Label_Root (109 samples, 0.02%)</title><rect x="3.9962%" y="693" width="0.0205%" height="15" fill="rgb(226,2,50)" fg:x="21208" fg:w="109"/><text x="4.2462%" y="703.50"></text></g><g><title>State::DFA (58 samples, 0.01%)</title><rect x="4.0171%" y="693" width="0.0109%" height="15" fill="rgb(234,177,6)" fg:x="21319" fg:w="58"/><text x="4.2671%" y="703.50"></text></g><g><title>Matcher::Label_Root (232 samples, 0.04%)</title><rect x="3.9857%" y="709" width="0.0437%" height="15" fill="rgb(217,24,9)" fg:x="21152" fg:w="232"/><text x="4.2357%" y="719.50"></text></g><g><title>Matcher::Label_Root (396 samples, 0.07%)</title><rect x="3.9710%" y="725" width="0.0746%" height="15" fill="rgb(220,13,46)" fg:x="21074" fg:w="396"/><text x="4.2210%" y="735.50"></text></g><g><title>Matcher::ReduceInst_Interior (55 samples, 0.01%)</title><rect x="4.0554%" y="677" width="0.0104%" height="15" fill="rgb(239,221,27)" fg:x="21522" fg:w="55"/><text x="4.3054%" y="687.50"></text></g><g><title>Matcher::ReduceInst (81 samples, 0.02%)</title><rect x="4.0543%" y="693" width="0.0153%" height="15" fill="rgb(222,198,25)" fg:x="21516" fg:w="81"/><text x="4.3043%" y="703.50"></text></g><g><title>Matcher::ReduceInst_Interior (150 samples, 0.03%)</title><rect x="4.0514%" y="709" width="0.0283%" height="15" fill="rgb(211,99,13)" fg:x="21501" fg:w="150"/><text x="4.3014%" y="719.50"></text></g><g><title>Matcher::ReduceInst (288 samples, 0.05%)</title><rect x="4.0456%" y="725" width="0.0543%" height="15" fill="rgb(232,111,31)" fg:x="21470" fg:w="288"/><text x="4.2956%" y="735.50"></text></g><g><title>Matcher::match_tree (900 samples, 0.17%)</title><rect x="3.9324%" y="741" width="0.1696%" height="15" fill="rgb(245,82,37)" fg:x="20869" fg:w="900"/><text x="4.1824%" y="751.50"></text></g><g><title>Node::clone (71 samples, 0.01%)</title><rect x="4.1034%" y="741" width="0.0134%" height="15" fill="rgb(227,149,46)" fg:x="21777" fg:w="71"/><text x="4.3534%" y="751.50"></text></g><g><title>Matcher::xform (2,028 samples, 0.38%)</title><rect x="3.7439%" y="757" width="0.3821%" height="15" fill="rgb(218,36,50)" fg:x="19869" fg:w="2028"/><text x="3.9939%" y="767.50"></text></g><g><title>Matcher::match (2,459 samples, 0.46%)</title><rect x="3.6653%" y="773" width="0.4634%" height="15" fill="rgb(226,80,48)" fg:x="19452" fg:w="2459"/><text x="3.9153%" y="783.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (145 samples, 0.03%)</title><rect x="4.1289%" y="773" width="0.0273%" height="15" fill="rgb(238,224,15)" fg:x="21912" fg:w="145"/><text x="4.3789%" y="783.50"></text></g><g><title>PhaseCFG::build_cfg (127 samples, 0.02%)</title><rect x="4.1568%" y="757" width="0.0239%" height="15" fill="rgb(241,136,10)" fg:x="22060" fg:w="127"/><text x="4.4068%" y="767.50"></text></g><g><title>PhaseCFG::PhaseCFG (131 samples, 0.02%)</title><rect x="4.1562%" y="773" width="0.0247%" height="15" fill="rgb(208,32,45)" fg:x="22057" fg:w="131"/><text x="4.4062%" y="783.50"></text></g><g><title>PhaseCFG::build_dominator_tree (99 samples, 0.02%)</title><rect x="4.1815%" y="757" width="0.0187%" height="15" fill="rgb(207,135,9)" fg:x="22191" fg:w="99"/><text x="4.4315%" y="767.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (58 samples, 0.01%)</title><rect x="4.2001%" y="757" width="0.0109%" height="15" fill="rgb(206,86,44)" fg:x="22290" fg:w="58"/><text x="4.4501%" y="767.50"></text></g><g><title>PhaseCFG::implicit_null_check (60 samples, 0.01%)</title><rect x="4.2755%" y="741" width="0.0113%" height="15" fill="rgb(245,177,15)" fg:x="22690" fg:w="60"/><text x="4.5255%" y="751.50"></text></g><g><title>Node_Backward_Iterator::next (229 samples, 0.04%)</title><rect x="4.3158%" y="725" width="0.0432%" height="15" fill="rgb(206,64,50)" fg:x="22904" fg:w="229"/><text x="4.5658%" y="735.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (127 samples, 0.02%)</title><rect x="4.3590%" y="725" width="0.0239%" height="15" fill="rgb(234,36,40)" fg:x="23133" fg:w="127"/><text x="4.6090%" y="735.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (149 samples, 0.03%)</title><rect x="4.3829%" y="725" width="0.0281%" height="15" fill="rgb(213,64,8)" fg:x="23260" fg:w="149"/><text x="4.6329%" y="735.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (65 samples, 0.01%)</title><rect x="4.4110%" y="725" width="0.0122%" height="15" fill="rgb(210,75,36)" fg:x="23409" fg:w="65"/><text x="4.6610%" y="735.50"></text></g><g><title>PhaseCFG::schedule_late (696 samples, 0.13%)</title><rect x="4.2930%" y="741" width="0.1311%" height="15" fill="rgb(229,88,21)" fg:x="22783" fg:w="696"/><text x="4.5430%" y="751.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (87 samples, 0.02%)</title><rect x="4.4654%" y="725" width="0.0164%" height="15" fill="rgb(252,204,47)" fg:x="23698" fg:w="87"/><text x="4.7154%" y="735.50"></text></g><g><title>PhaseCFG::select (123 samples, 0.02%)</title><rect x="4.4865%" y="725" width="0.0232%" height="15" fill="rgb(208,77,27)" fg:x="23810" fg:w="123"/><text x="4.7365%" y="735.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (58 samples, 0.01%)</title><rect x="4.5097%" y="725" width="0.0109%" height="15" fill="rgb(221,76,26)" fg:x="23933" fg:w="58"/><text x="4.7597%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (563 samples, 0.11%)</title><rect x="4.4242%" y="741" width="0.1061%" height="15" fill="rgb(225,139,18)" fg:x="23479" fg:w="563"/><text x="4.6742%" y="751.50"></text></g><g><title>RegMask::Size (78 samples, 0.01%)</title><rect x="4.5864%" y="725" width="0.0147%" height="15" fill="rgb(230,137,11)" fg:x="24340" fg:w="78"/><text x="4.8364%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (421 samples, 0.08%)</title><rect x="4.5363%" y="741" width="0.0793%" height="15" fill="rgb(212,28,1)" fg:x="24074" fg:w="421"/><text x="4.7863%" y="751.50"></text></g><g><title>PhaseChaitin::mark_ssa (92 samples, 0.02%)</title><rect x="4.6156%" y="741" width="0.0173%" height="15" fill="rgb(248,164,17)" fg:x="24495" fg:w="92"/><text x="4.8656%" y="751.50"></text></g><g><title>IndexSet::initialize (118 samples, 0.02%)</title><rect x="4.6431%" y="725" width="0.0222%" height="15" fill="rgb(222,171,42)" fg:x="24641" fg:w="118"/><text x="4.8931%" y="735.50"></text></g><g><title>PhaseIFG::init (208 samples, 0.04%)</title><rect x="4.6329%" y="741" width="0.0392%" height="15" fill="rgb(243,84,45)" fg:x="24587" fg:w="208"/><text x="4.8829%" y="751.50"></text></g><g><title>IndexSet::initialize (58 samples, 0.01%)</title><rect x="4.7136%" y="725" width="0.0109%" height="15" fill="rgb(252,49,23)" fg:x="25015" fg:w="58"/><text x="4.9636%" y="735.50"></text></g><g><title>PhaseLive::add_livein (166 samples, 0.03%)</title><rect x="4.7251%" y="725" width="0.0313%" height="15" fill="rgb(215,19,7)" fg:x="25076" fg:w="166"/><text x="4.9751%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (65 samples, 0.01%)</title><rect x="4.7441%" y="709" width="0.0122%" height="15" fill="rgb(238,81,41)" fg:x="25177" fg:w="65"/><text x="4.9941%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (55 samples, 0.01%)</title><rect x="4.7871%" y="709" width="0.0104%" height="15" fill="rgb(210,199,37)" fg:x="25405" fg:w="55"/><text x="5.0371%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (91 samples, 0.02%)</title><rect x="4.8016%" y="709" width="0.0171%" height="15" fill="rgb(244,192,49)" fg:x="25482" fg:w="91"/><text x="5.0516%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (334 samples, 0.06%)</title><rect x="4.7564%" y="725" width="0.0629%" height="15" fill="rgb(226,211,11)" fg:x="25242" fg:w="334"/><text x="5.0064%" y="735.50"></text></g><g><title>PhaseLive::compute (786 samples, 0.15%)</title><rect x="4.6721%" y="741" width="0.1481%" height="15" fill="rgb(236,162,54)" fg:x="24795" fg:w="786"/><text x="4.9221%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,422 samples, 0.64%)</title><rect x="4.1809%" y="773" width="0.6448%" height="15" fill="rgb(220,229,9)" fg:x="22188" fg:w="3422"/><text x="4.4309%" y="783.50"></text></g><g><title>PhaseCFG::global_code_motion (3,262 samples, 0.61%)</title><rect x="4.2110%" y="757" width="0.6147%" height="15" fill="rgb(250,87,22)" fg:x="22348" fg:w="3262"/><text x="4.4610%" y="767.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (61 samples, 0.01%)</title><rect x="4.8297%" y="773" width="0.0115%" height="15" fill="rgb(239,43,17)" fg:x="25631" fg:w="61"/><text x="5.0797%" y="783.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,012 samples, 0.19%)</title><rect x="4.8677%" y="757" width="0.1907%" height="15" fill="rgb(231,177,25)" fg:x="25833" fg:w="1012"/><text x="5.1177%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (299 samples, 0.06%)</title><rect x="5.1668%" y="741" width="0.0563%" height="15" fill="rgb(219,179,1)" fg:x="27420" fg:w="299"/><text x="5.4168%" y="751.50"></text></g><g><title>PhaseChaitin::bias_color (169 samples, 0.03%)</title><rect x="5.2231%" y="741" width="0.0318%" height="15" fill="rgb(238,219,53)" fg:x="27719" fg:w="169"/><text x="5.4731%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (83 samples, 0.02%)</title><rect x="5.3215%" y="725" width="0.0156%" height="15" fill="rgb(232,167,36)" fg:x="28241" fg:w="83"/><text x="5.5715%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (68 samples, 0.01%)</title><rect x="5.3371%" y="725" width="0.0128%" height="15" fill="rgb(244,19,51)" fg:x="28324" fg:w="68"/><text x="5.5871%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (405 samples, 0.08%)</title><rect x="5.3499%" y="725" width="0.0763%" height="15" fill="rgb(224,6,22)" fg:x="28392" fg:w="405"/><text x="5.5999%" y="735.50"></text></g><g><title>PhaseIFG::re_insert (910 samples, 0.17%)</title><rect x="5.2566%" y="741" width="0.1715%" height="15" fill="rgb(224,145,5)" fg:x="27897" fg:w="910"/><text x="5.5066%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (118 samples, 0.02%)</title><rect x="5.4281%" y="741" width="0.0222%" height="15" fill="rgb(234,130,49)" fg:x="28807" fg:w="118"/><text x="5.6781%" y="751.50"></text></g><g><title>PhaseChaitin::Select (2,084 samples, 0.39%)</title><rect x="5.0584%" y="757" width="0.3927%" height="15" fill="rgb(254,6,2)" fg:x="26845" fg:w="2084"/><text x="5.3084%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (343 samples, 0.06%)</title><rect x="5.5029%" y="741" width="0.0646%" height="15" fill="rgb(208,96,46)" fg:x="29204" fg:w="343"/><text x="5.7529%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (59 samples, 0.01%)</title><rect x="5.6491%" y="725" width="0.0111%" height="15" fill="rgb(239,3,39)" fg:x="29980" fg:w="59"/><text x="5.8991%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (464 samples, 0.09%)</title><rect x="5.6603%" y="725" width="0.0874%" height="15" fill="rgb(233,210,1)" fg:x="30039" fg:w="464"/><text x="5.9103%" y="735.50"></text></g><g><title>PhaseChaitin::Simplify (1,575 samples, 0.30%)</title><rect x="5.4511%" y="757" width="0.2968%" height="15" fill="rgb(244,137,37)" fg:x="28929" fg:w="1575"/><text x="5.7011%" y="767.50"></text></g><g><title>PhaseIFG::remove_node (957 samples, 0.18%)</title><rect x="5.5676%" y="741" width="0.1803%" height="15" fill="rgb(240,136,2)" fg:x="29547" fg:w="957"/><text x="5.8176%" y="751.50"></text></g><g><title>MachNode::rematerialize (160 samples, 0.03%)</title><rect x="6.2197%" y="741" width="0.0301%" height="15" fill="rgb(239,18,37)" fg:x="33008" fg:w="160"/><text x="6.4697%" y="751.50"></text></g><g><title>Node::rematerialize (130 samples, 0.02%)</title><rect x="6.2566%" y="741" width="0.0245%" height="15" fill="rgb(218,185,22)" fg:x="33204" fg:w="130"/><text x="6.5066%" y="751.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (90 samples, 0.02%)</title><rect x="6.3132%" y="725" width="0.0170%" height="15" fill="rgb(225,218,4)" fg:x="33504" fg:w="90"/><text x="6.5632%" y="735.50"></text></g><g><title>PhaseChaitin::split_USE (177 samples, 0.03%)</title><rect x="6.3015%" y="741" width="0.0334%" height="15" fill="rgb(230,182,32)" fg:x="33442" fg:w="177"/><text x="6.5515%" y="751.50"></text></g><g><title>PhaseChaitin::Split (3,181 samples, 0.60%)</title><rect x="5.7479%" y="757" width="0.5994%" height="15" fill="rgb(242,56,43)" fg:x="30504" fg:w="3181"/><text x="5.9979%" y="767.50"></text></g><g><title>IndexSet::IndexSet (234 samples, 0.04%)</title><rect x="6.5031%" y="741" width="0.0441%" height="15" fill="rgb(233,99,24)" fg:x="34512" fg:w="234"/><text x="6.7531%" y="751.50"></text></g><g><title>MachNode::rematerialize (70 samples, 0.01%)</title><rect x="6.5487%" y="741" width="0.0132%" height="15" fill="rgb(234,209,42)" fg:x="34754" fg:w="70"/><text x="6.7987%" y="751.50"></text></g><g><title>MachNode::rematerialize (91 samples, 0.02%)</title><rect x="6.6516%" y="725" width="0.0171%" height="15" fill="rgb(227,7,12)" fg:x="35300" fg:w="91"/><text x="6.9016%" y="735.50"></text></g><g><title>RegMask::is_UP (65 samples, 0.01%)</title><rect x="6.6859%" y="709" width="0.0122%" height="15" fill="rgb(245,203,43)" fg:x="35482" fg:w="65"/><text x="6.9359%" y="719.50"></text></g><g><title>PhaseChaitin::raise_pressure (144 samples, 0.03%)</title><rect x="6.6712%" y="725" width="0.0271%" height="15" fill="rgb(238,205,33)" fg:x="35404" fg:w="144"/><text x="6.9212%" y="735.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (713 samples, 0.13%)</title><rect x="6.5647%" y="741" width="0.1344%" height="15" fill="rgb(231,56,7)" fg:x="34839" fg:w="713"/><text x="6.8147%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (133 samples, 0.03%)</title><rect x="6.7537%" y="725" width="0.0251%" height="15" fill="rgb(244,186,29)" fg:x="35842" fg:w="133"/><text x="7.0037%" y="735.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (426 samples, 0.08%)</title><rect x="6.7140%" y="741" width="0.0803%" height="15" fill="rgb(234,111,31)" fg:x="35631" fg:w="426"/><text x="6.9640%" y="751.50"></text></g><g><title>RegMask::is_UP (82 samples, 0.02%)</title><rect x="6.7788%" y="725" width="0.0155%" height="15" fill="rgb(241,149,10)" fg:x="35975" fg:w="82"/><text x="7.0288%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (123 samples, 0.02%)</title><rect x="7.1686%" y="725" width="0.0232%" height="15" fill="rgb(249,206,44)" fg:x="38044" fg:w="123"/><text x="7.4186%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (841 samples, 0.16%)</title><rect x="7.1950%" y="725" width="0.1585%" height="15" fill="rgb(251,153,30)" fg:x="38184" fg:w="841"/><text x="7.4450%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,971 samples, 0.56%)</title><rect x="6.7942%" y="741" width="0.5598%" height="15" fill="rgb(239,152,38)" fg:x="36057" fg:w="2971"/><text x="7.0442%" y="751.50"></text></g><g><title>PhaseChaitin::lower_pressure (87 samples, 0.02%)</title><rect x="7.3541%" y="741" width="0.0164%" height="15" fill="rgb(249,139,47)" fg:x="39028" fg:w="87"/><text x="7.6041%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (204 samples, 0.04%)</title><rect x="7.4549%" y="725" width="0.0384%" height="15" fill="rgb(244,64,35)" fg:x="39563" fg:w="204"/><text x="7.7049%" y="735.50"></text></g><g><title>RegMask::Size (286 samples, 0.05%)</title><rect x="7.4933%" y="725" width="0.0539%" height="15" fill="rgb(216,46,15)" fg:x="39767" fg:w="286"/><text x="7.7433%" y="735.50"></text></g><g><title>RegMask::smear_to_sets (623 samples, 0.12%)</title><rect x="7.5472%" y="725" width="0.1174%" height="15" fill="rgb(250,74,19)" fg:x="40053" fg:w="623"/><text x="7.7972%" y="735.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,569 samples, 0.30%)</title><rect x="7.3705%" y="741" width="0.2956%" height="15" fill="rgb(249,42,33)" fg:x="39115" fg:w="1569"/><text x="7.6205%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,072 samples, 1.33%)</title><rect x="6.3478%" y="757" width="1.3326%" height="15" fill="rgb(242,149,17)" fg:x="33688" fg:w="7072"/><text x="6.5978%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (74 samples, 0.01%)</title><rect x="7.7528%" y="725" width="0.0139%" height="15" fill="rgb(244,29,21)" fg:x="41144" fg:w="74"/><text x="8.0028%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (326 samples, 0.06%)</title><rect x="7.7070%" y="741" width="0.0614%" height="15" fill="rgb(220,130,37)" fg:x="40901" fg:w="326"/><text x="7.9570%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (471 samples, 0.09%)</title><rect x="7.6804%" y="757" width="0.0888%" height="15" fill="rgb(211,67,2)" fg:x="40760" fg:w="471"/><text x="7.9304%" y="767.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (103 samples, 0.02%)</title><rect x="7.7692%" y="757" width="0.0194%" height="15" fill="rgb(235,68,52)" fg:x="41231" fg:w="103"/><text x="8.0192%" y="767.50"></text></g><g><title>PhaseChaitin::de_ssa (101 samples, 0.02%)</title><rect x="7.7952%" y="757" width="0.0190%" height="15" fill="rgb(246,142,3)" fg:x="41369" fg:w="101"/><text x="8.0452%" y="767.50"></text></g><g><title>PhaseChaitin::fixup_spills (60 samples, 0.01%)</title><rect x="7.8144%" y="757" width="0.0113%" height="15" fill="rgb(241,25,7)" fg:x="41471" fg:w="60"/><text x="8.0644%" y="767.50"></text></g><g><title>MachCallJavaNode::in_RegMask (65 samples, 0.01%)</title><rect x="8.1489%" y="741" width="0.0122%" height="15" fill="rgb(242,119,39)" fg:x="43246" fg:w="65"/><text x="8.3989%" y="751.50"></text></g><g><title>MachNode::ideal_reg (67 samples, 0.01%)</title><rect x="8.1617%" y="741" width="0.0126%" height="15" fill="rgb(241,98,45)" fg:x="43314" fg:w="67"/><text x="8.4117%" y="751.50"></text></g><g><title>RegMask::Size (1,066 samples, 0.20%)</title><rect x="8.2018%" y="741" width="0.2009%" height="15" fill="rgb(254,28,30)" fg:x="43527" fg:w="1066"/><text x="8.4518%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (167 samples, 0.03%)</title><rect x="8.4027%" y="741" width="0.0315%" height="15" fill="rgb(241,142,54)" fg:x="44593" fg:w="167"/><text x="8.6527%" y="751.50"></text></g><g><title>RegMask::is_aligned_pairs (86 samples, 0.02%)</title><rect x="8.4341%" y="741" width="0.0162%" height="15" fill="rgb(222,85,15)" fg:x="44760" fg:w="86"/><text x="8.6841%" y="751.50"></text></g><g><title>RegMask::is_bound1 (140 samples, 0.03%)</title><rect x="8.4503%" y="741" width="0.0264%" height="15" fill="rgb(210,85,47)" fg:x="44846" fg:w="140"/><text x="8.7003%" y="751.50"></text></g><g><title>RegMask::is_bound_pair (84 samples, 0.02%)</title><rect x="8.4767%" y="741" width="0.0158%" height="15" fill="rgb(224,206,25)" fg:x="44986" fg:w="84"/><text x="8.7267%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,675 samples, 0.69%)</title><rect x="7.8257%" y="757" width="0.6925%" height="15" fill="rgb(243,201,19)" fg:x="41531" fg:w="3675"/><text x="8.0757%" y="767.50"></text></g><g><title>PhaseChaitin::merge_multidefs (465 samples, 0.09%)</title><rect x="8.5184%" y="757" width="0.0876%" height="15" fill="rgb(236,59,4)" fg:x="45207" fg:w="465"/><text x="8.7684%" y="767.50"></text></g><g><title>PhaseChaitin::use_prior_register (89 samples, 0.02%)</title><rect x="9.2207%" y="725" width="0.0168%" height="15" fill="rgb(254,179,45)" fg:x="48934" fg:w="89"/><text x="9.4707%" y="735.50"></text></g><g><title>PhaseChaitin::elide_copy (1,780 samples, 0.34%)</title><rect x="8.9094%" y="741" width="0.3354%" height="15" fill="rgb(226,14,10)" fg:x="47282" fg:w="1780"/><text x="9.1594%" y="751.50"></text></g><g><title>[libc-2.31.so] (58 samples, 0.01%)</title><rect x="9.2523%" y="741" width="0.0109%" height="15" fill="rgb(244,27,41)" fg:x="49102" fg:w="58"/><text x="9.5023%" y="751.50"></text></g><g><title>find_lowest_bit (329 samples, 0.06%)</title><rect x="9.2638%" y="741" width="0.0620%" height="15" fill="rgb(235,35,32)" fg:x="49163" fg:w="329"/><text x="9.5138%" y="751.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (3,826 samples, 0.72%)</title><rect x="8.6060%" y="757" width="0.7209%" height="15" fill="rgb(218,68,31)" fg:x="45672" fg:w="3826"/><text x="8.8560%" y="767.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (189 samples, 0.04%)</title><rect x="9.3271%" y="757" width="0.0356%" height="15" fill="rgb(207,120,37)" fg:x="49499" fg:w="189"/><text x="9.5771%" y="767.50"></text></g><g><title>PhaseCoalesce::combine_these_two (58 samples, 0.01%)</title><rect x="9.3784%" y="725" width="0.0109%" height="15" fill="rgb(227,98,0)" fg:x="49771" fg:w="58"/><text x="9.6284%" y="735.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (140 samples, 0.03%)</title><rect x="9.3635%" y="741" width="0.0264%" height="15" fill="rgb(207,7,3)" fg:x="49692" fg:w="140"/><text x="9.6135%" y="751.50"></text></g><g><title>PhaseCFG::is_uncommon (131 samples, 0.02%)</title><rect x="9.3995%" y="725" width="0.0247%" height="15" fill="rgb(206,98,19)" fg:x="49883" fg:w="131"/><text x="9.6495%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (68 samples, 0.01%)</title><rect x="9.5709%" y="693" width="0.0128%" height="15" fill="rgb(217,5,26)" fg:x="50793" fg:w="68"/><text x="9.8209%" y="703.50"></text></g><g><title>IndexSet::lrg_union (810 samples, 0.15%)</title><rect x="9.4321%" y="709" width="0.1526%" height="15" fill="rgb(235,190,38)" fg:x="50056" fg:w="810"/><text x="9.6821%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (76 samples, 0.01%)</title><rect x="9.9425%" y="693" width="0.0143%" height="15" fill="rgb(247,86,24)" fg:x="52765" fg:w="76"/><text x="10.1925%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (1,961 samples, 0.37%)</title><rect x="9.5896%" y="709" width="0.3695%" height="15" fill="rgb(205,101,16)" fg:x="50892" fg:w="1961"/><text x="9.8396%" y="719.50"></text></g><g><title>PhaseIFG::effective_degree (327 samples, 0.06%)</title><rect x="9.9591%" y="709" width="0.0616%" height="15" fill="rgb(246,168,33)" fg:x="52853" fg:w="327"/><text x="10.2091%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (3,190 samples, 0.60%)</title><rect x="9.4242%" y="725" width="0.6011%" height="15" fill="rgb(231,114,1)" fg:x="50014" fg:w="3190"/><text x="9.6742%" y="735.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (3,518 samples, 0.66%)</title><rect x="9.3627%" y="757" width="0.6629%" height="15" fill="rgb(207,184,53)" fg:x="49688" fg:w="3518"/><text x="9.6127%" y="767.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (3,374 samples, 0.64%)</title><rect x="9.3899%" y="741" width="0.6358%" height="15" fill="rgb(224,95,51)" fg:x="49832" fg:w="3374"/><text x="9.6399%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (515 samples, 0.10%)</title><rect x="10.1166%" y="741" width="0.0970%" height="15" fill="rgb(212,188,45)" fg:x="53689" fg:w="515"/><text x="10.3666%" y="751.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (997 samples, 0.19%)</title><rect x="10.0260%" y="757" width="0.1879%" height="15" fill="rgb(223,154,38)" fg:x="53208" fg:w="997"/><text x="10.2760%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (78 samples, 0.01%)</title><rect x="10.2955%" y="741" width="0.0147%" height="15" fill="rgb(251,22,52)" fg:x="54638" fg:w="78"/><text x="10.5455%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (424 samples, 0.08%)</title><rect x="10.3102%" y="741" width="0.0799%" height="15" fill="rgb(229,209,22)" fg:x="54716" fg:w="424"/><text x="10.5602%" y="751.50"></text></g><g><title>PhaseIFG::SquareUp (936 samples, 0.18%)</title><rect x="10.2139%" y="757" width="0.1764%" height="15" fill="rgb(234,138,34)" fg:x="54205" fg:w="936"/><text x="10.4639%" y="767.50"></text></g><g><title>IndexSet::initialize (207 samples, 0.04%)</title><rect x="10.4112%" y="741" width="0.0390%" height="15" fill="rgb(212,95,11)" fg:x="55252" fg:w="207"/><text x="10.6612%" y="751.50"></text></g><g><title>[libc-2.31.so] (69 samples, 0.01%)</title><rect x="10.4502%" y="741" width="0.0130%" height="15" fill="rgb(240,179,47)" fg:x="55459" fg:w="69"/><text x="10.7002%" y="751.50"></text></g><g><title>PhaseIFG::init (388 samples, 0.07%)</title><rect x="10.3902%" y="757" width="0.0731%" height="15" fill="rgb(240,163,11)" fg:x="55141" fg:w="388"/><text x="10.6402%" y="767.50"></text></g><g><title>IndexSet::initialize (116 samples, 0.02%)</title><rect x="10.7059%" y="741" width="0.0219%" height="15" fill="rgb(236,37,12)" fg:x="56816" fg:w="116"/><text x="10.9559%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (178 samples, 0.03%)</title><rect x="10.8538%" y="725" width="0.0335%" height="15" fill="rgb(232,164,16)" fg:x="57601" fg:w="178"/><text x="11.1038%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (254 samples, 0.05%)</title><rect x="10.8958%" y="725" width="0.0479%" height="15" fill="rgb(244,205,15)" fg:x="57824" fg:w="254"/><text x="11.1458%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (1,162 samples, 0.22%)</title><rect x="10.7277%" y="741" width="0.2190%" height="15" fill="rgb(223,117,47)" fg:x="56932" fg:w="1162"/><text x="10.9777%" y="751.50"></text></g><g><title>PhaseLive::compute (2,573 samples, 0.48%)</title><rect x="10.4647%" y="757" width="0.4848%" height="15" fill="rgb(244,107,35)" fg:x="55536" fg:w="2573"/><text x="10.7147%" y="767.50"></text></g><g><title>PhaseChaitin::Register_Allocate (32,518 samples, 6.13%)</title><rect x="4.8445%" y="773" width="6.1274%" height="15" fill="rgb(205,140,8)" fg:x="25710" fg:w="32518"/><text x="5.0945%" y="783.50">PhaseCha..</text></g><g><title>Compile::Code_Gen (40,447 samples, 7.62%)</title><rect x="3.3603%" y="789" width="7.6214%" height="15" fill="rgb(228,84,46)" fg:x="17833" fg:w="40447"/><text x="3.6103%" y="799.50">Compile::C..</text></g><g><title>Parse::do_call (83 samples, 0.02%)</title><rect x="11.0245%" y="133" width="0.0156%" height="15" fill="rgb(254,188,9)" fg:x="58507" fg:w="83"/><text x="11.2745%" y="143.50"></text></g><g><title>Parse::do_one_block (153 samples, 0.03%)</title><rect x="11.0209%" y="165" width="0.0288%" height="15" fill="rgb(206,112,54)" fg:x="58488" fg:w="153"/><text x="11.2709%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (150 samples, 0.03%)</title><rect x="11.0215%" y="149" width="0.0283%" height="15" fill="rgb(216,84,49)" fg:x="58491" fg:w="150"/><text x="11.2715%" y="159.50"></text></g><g><title>Parse::do_all_blocks (157 samples, 0.03%)</title><rect x="11.0209%" y="181" width="0.0296%" height="15" fill="rgb(214,194,35)" fg:x="58488" fg:w="157"/><text x="11.2709%" y="191.50"></text></g><g><title>ParseGenerator::generate (180 samples, 0.03%)</title><rect x="11.0185%" y="213" width="0.0339%" height="15" fill="rgb(249,28,3)" fg:x="58475" fg:w="180"/><text x="11.2685%" y="223.50"></text></g><g><title>Parse::Parse (179 samples, 0.03%)</title><rect x="11.0187%" y="197" width="0.0337%" height="15" fill="rgb(222,56,52)" fg:x="58476" fg:w="179"/><text x="11.2687%" y="207.50"></text></g><g><title>Parse::do_call (238 samples, 0.04%)</title><rect x="11.0109%" y="229" width="0.0448%" height="15" fill="rgb(245,217,50)" fg:x="58435" fg:w="238"/><text x="11.2609%" y="239.50"></text></g><g><title>Parse::do_one_block (318 samples, 0.06%)</title><rect x="11.0094%" y="261" width="0.0599%" height="15" fill="rgb(213,201,24)" fg:x="58427" fg:w="318"/><text x="11.2594%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (316 samples, 0.06%)</title><rect x="11.0098%" y="245" width="0.0595%" height="15" fill="rgb(248,116,28)" fg:x="58429" fg:w="316"/><text x="11.2598%" y="255.50"></text></g><g><title>Parse::do_all_blocks (324 samples, 0.06%)</title><rect x="11.0089%" y="277" width="0.0611%" height="15" fill="rgb(219,72,43)" fg:x="58424" fg:w="324"/><text x="11.2589%" y="287.50"></text></g><g><title>ParseGenerator::generate (360 samples, 0.07%)</title><rect x="11.0058%" y="309" width="0.0678%" height="15" fill="rgb(209,138,14)" fg:x="58408" fg:w="360"/><text x="11.2558%" y="319.50"></text></g><g><title>Parse::Parse (360 samples, 0.07%)</title><rect x="11.0058%" y="293" width="0.0678%" height="15" fill="rgb(222,18,33)" fg:x="58408" fg:w="360"/><text x="11.2558%" y="303.50"></text></g><g><title>Parse::do_call (446 samples, 0.08%)</title><rect x="10.9974%" y="325" width="0.0840%" height="15" fill="rgb(213,199,7)" fg:x="58363" fg:w="446"/><text x="11.2474%" y="335.50"></text></g><g><title>ParseGenerator::generate (517 samples, 0.10%)</title><rect x="10.9951%" y="405" width="0.0974%" height="15" fill="rgb(250,110,10)" fg:x="58351" fg:w="517"/><text x="11.2451%" y="415.50"></text></g><g><title>Parse::Parse (517 samples, 0.10%)</title><rect x="10.9951%" y="389" width="0.0974%" height="15" fill="rgb(248,123,6)" fg:x="58351" fg:w="517"/><text x="11.2451%" y="399.50"></text></g><g><title>Parse::do_all_blocks (512 samples, 0.10%)</title><rect x="10.9960%" y="373" width="0.0965%" height="15" fill="rgb(206,91,31)" fg:x="58356" fg:w="512"/><text x="11.2460%" y="383.50"></text></g><g><title>Parse::do_one_block (512 samples, 0.10%)</title><rect x="10.9960%" y="357" width="0.0965%" height="15" fill="rgb(211,154,13)" fg:x="58356" fg:w="512"/><text x="11.2460%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (510 samples, 0.10%)</title><rect x="10.9964%" y="341" width="0.0961%" height="15" fill="rgb(225,148,7)" fg:x="58358" fg:w="510"/><text x="11.2464%" y="351.50"></text></g><g><title>Parse::do_call (603 samples, 0.11%)</title><rect x="10.9870%" y="421" width="0.1136%" height="15" fill="rgb(220,160,43)" fg:x="58308" fg:w="603"/><text x="11.2370%" y="431.50"></text></g><g><title>ParseGenerator::generate (614 samples, 0.12%)</title><rect x="10.9870%" y="501" width="0.1157%" height="15" fill="rgb(213,52,39)" fg:x="58308" fg:w="614"/><text x="11.2370%" y="511.50"></text></g><g><title>Parse::Parse (614 samples, 0.12%)</title><rect x="10.9870%" y="485" width="0.1157%" height="15" fill="rgb(243,137,7)" fg:x="58308" fg:w="614"/><text x="11.2370%" y="495.50"></text></g><g><title>Parse::do_all_blocks (614 samples, 0.12%)</title><rect x="10.9870%" y="469" width="0.1157%" height="15" fill="rgb(230,79,13)" fg:x="58308" fg:w="614"/><text x="11.2370%" y="479.50"></text></g><g><title>Parse::do_one_block (614 samples, 0.12%)</title><rect x="10.9870%" y="453" width="0.1157%" height="15" fill="rgb(247,105,23)" fg:x="58308" fg:w="614"/><text x="11.2370%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (614 samples, 0.12%)</title><rect x="10.9870%" y="437" width="0.1157%" height="15" fill="rgb(223,179,41)" fg:x="58308" fg:w="614"/><text x="11.2370%" y="447.50"></text></g><g><title>Parse::do_call (73 samples, 0.01%)</title><rect x="11.1048%" y="309" width="0.0138%" height="15" fill="rgb(218,9,34)" fg:x="58933" fg:w="73"/><text x="11.3548%" y="319.50"></text></g><g><title>ParseGenerator::generate (89 samples, 0.02%)</title><rect x="11.1040%" y="389" width="0.0168%" height="15" fill="rgb(222,106,8)" fg:x="58929" fg:w="89"/><text x="11.3540%" y="399.50"></text></g><g><title>Parse::Parse (89 samples, 0.02%)</title><rect x="11.1040%" y="373" width="0.0168%" height="15" fill="rgb(211,220,0)" fg:x="58929" fg:w="89"/><text x="11.3540%" y="383.50"></text></g><g><title>Parse::do_all_blocks (88 samples, 0.02%)</title><rect x="11.1042%" y="357" width="0.0166%" height="15" fill="rgb(229,52,16)" fg:x="58930" fg:w="88"/><text x="11.3542%" y="367.50"></text></g><g><title>Parse::do_one_block (88 samples, 0.02%)</title><rect x="11.1042%" y="341" width="0.0166%" height="15" fill="rgb(212,155,18)" fg:x="58930" fg:w="88"/><text x="11.3542%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.02%)</title><rect x="11.1044%" y="325" width="0.0164%" height="15" fill="rgb(242,21,14)" fg:x="58931" fg:w="87"/><text x="11.3544%" y="335.50"></text></g><g><title>Parse::do_call (108 samples, 0.02%)</title><rect x="11.1029%" y="405" width="0.0204%" height="15" fill="rgb(222,19,48)" fg:x="58923" fg:w="108"/><text x="11.3529%" y="415.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.02%)</title><rect x="11.1027%" y="485" width="0.0207%" height="15" fill="rgb(232,45,27)" fg:x="58922" fg:w="110"/><text x="11.3527%" y="495.50"></text></g><g><title>Parse::Parse (110 samples, 0.02%)</title><rect x="11.1027%" y="469" width="0.0207%" height="15" fill="rgb(249,103,42)" fg:x="58922" fg:w="110"/><text x="11.3527%" y="479.50"></text></g><g><title>Parse::do_all_blocks (109 samples, 0.02%)</title><rect x="11.1029%" y="453" width="0.0205%" height="15" fill="rgb(246,81,33)" fg:x="58923" fg:w="109"/><text x="11.3529%" y="463.50"></text></g><g><title>Parse::do_one_block (109 samples, 0.02%)</title><rect x="11.1029%" y="437" width="0.0205%" height="15" fill="rgb(252,33,42)" fg:x="58923" fg:w="109"/><text x="11.3529%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.02%)</title><rect x="11.1029%" y="421" width="0.0205%" height="15" fill="rgb(209,212,41)" fg:x="58923" fg:w="109"/><text x="11.3529%" y="431.50"></text></g><g><title>Parse::do_call (756 samples, 0.14%)</title><rect x="10.9827%" y="517" width="0.1425%" height="15" fill="rgb(207,154,6)" fg:x="58285" fg:w="756"/><text x="11.2327%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (119 samples, 0.02%)</title><rect x="11.1027%" y="501" width="0.0224%" height="15" fill="rgb(223,64,47)" fg:x="58922" fg:w="119"/><text x="11.3527%" y="511.50"></text></g><g><title>ParseGenerator::generate (757 samples, 0.14%)</title><rect x="10.9827%" y="597" width="0.1426%" height="15" fill="rgb(211,161,38)" fg:x="58285" fg:w="757"/><text x="11.2327%" y="607.50"></text></g><g><title>Parse::Parse (757 samples, 0.14%)</title><rect x="10.9827%" y="581" width="0.1426%" height="15" fill="rgb(219,138,40)" fg:x="58285" fg:w="757"/><text x="11.2327%" y="591.50"></text></g><g><title>Parse::do_all_blocks (757 samples, 0.14%)</title><rect x="10.9827%" y="565" width="0.1426%" height="15" fill="rgb(241,228,46)" fg:x="58285" fg:w="757"/><text x="11.2327%" y="575.50"></text></g><g><title>Parse::do_one_block (757 samples, 0.14%)</title><rect x="10.9827%" y="549" width="0.1426%" height="15" fill="rgb(223,209,38)" fg:x="58285" fg:w="757"/><text x="11.2327%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (757 samples, 0.14%)</title><rect x="10.9827%" y="533" width="0.1426%" height="15" fill="rgb(236,164,45)" fg:x="58285" fg:w="757"/><text x="11.2327%" y="543.50"></text></g><g><title>Parse::do_one_block (58 samples, 0.01%)</title><rect x="11.1279%" y="341" width="0.0109%" height="15" fill="rgb(231,15,5)" fg:x="59056" fg:w="58"/><text x="11.3779%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (58 samples, 0.01%)</title><rect x="11.1279%" y="325" width="0.0109%" height="15" fill="rgb(252,35,15)" fg:x="59056" fg:w="58"/><text x="11.3779%" y="335.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="11.1278%" y="389" width="0.0115%" height="15" fill="rgb(248,181,18)" fg:x="59055" fg:w="61"/><text x="11.3778%" y="399.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="11.1278%" y="373" width="0.0115%" height="15" fill="rgb(233,39,42)" fg:x="59055" fg:w="61"/><text x="11.3778%" y="383.50"></text></g><g><title>Parse::do_all_blocks (60 samples, 0.01%)</title><rect x="11.1279%" y="357" width="0.0113%" height="15" fill="rgb(238,110,33)" fg:x="59056" fg:w="60"/><text x="11.3779%" y="367.50"></text></g><g><title>Parse::do_call (89 samples, 0.02%)</title><rect x="11.1262%" y="405" width="0.0168%" height="15" fill="rgb(233,195,10)" fg:x="59047" fg:w="89"/><text x="11.3762%" y="415.50"></text></g><g><title>ParseGenerator::generate (92 samples, 0.02%)</title><rect x="11.1259%" y="485" width="0.0173%" height="15" fill="rgb(254,105,3)" fg:x="59045" fg:w="92"/><text x="11.3759%" y="495.50"></text></g><g><title>Parse::Parse (92 samples, 0.02%)</title><rect x="11.1259%" y="469" width="0.0173%" height="15" fill="rgb(221,225,9)" fg:x="59045" fg:w="92"/><text x="11.3759%" y="479.50"></text></g><g><title>Parse::do_all_blocks (91 samples, 0.02%)</title><rect x="11.1261%" y="453" width="0.0171%" height="15" fill="rgb(224,227,45)" fg:x="59046" fg:w="91"/><text x="11.3761%" y="463.50"></text></g><g><title>Parse::do_one_block (91 samples, 0.02%)</title><rect x="11.1261%" y="437" width="0.0171%" height="15" fill="rgb(229,198,43)" fg:x="59046" fg:w="91"/><text x="11.3761%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.02%)</title><rect x="11.1261%" y="421" width="0.0171%" height="15" fill="rgb(206,209,35)" fg:x="59046" fg:w="91"/><text x="11.3761%" y="431.50"></text></g><g><title>ParseGenerator::generate (110 samples, 0.02%)</title><rect x="11.1253%" y="581" width="0.0207%" height="15" fill="rgb(245,195,53)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="591.50"></text></g><g><title>Parse::Parse (110 samples, 0.02%)</title><rect x="11.1253%" y="565" width="0.0207%" height="15" fill="rgb(240,92,26)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="575.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.02%)</title><rect x="11.1253%" y="549" width="0.0207%" height="15" fill="rgb(207,40,23)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="559.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.02%)</title><rect x="11.1253%" y="533" width="0.0207%" height="15" fill="rgb(223,111,35)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (110 samples, 0.02%)</title><rect x="11.1253%" y="517" width="0.0207%" height="15" fill="rgb(229,147,28)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="527.50"></text></g><g><title>Parse::do_call (110 samples, 0.02%)</title><rect x="11.1253%" y="501" width="0.0207%" height="15" fill="rgb(211,29,28)" fg:x="59042" fg:w="110"/><text x="11.3753%" y="511.50"></text></g><g><title>ParseGenerator::generate (880 samples, 0.17%)</title><rect x="10.9821%" y="693" width="0.1658%" height="15" fill="rgb(228,72,33)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="703.50"></text></g><g><title>Parse::Parse (880 samples, 0.17%)</title><rect x="10.9821%" y="677" width="0.1658%" height="15" fill="rgb(205,214,31)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="687.50"></text></g><g><title>Parse::do_all_blocks (880 samples, 0.17%)</title><rect x="10.9821%" y="661" width="0.1658%" height="15" fill="rgb(224,111,15)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="671.50"></text></g><g><title>Parse::do_one_block (880 samples, 0.17%)</title><rect x="10.9821%" y="645" width="0.1658%" height="15" fill="rgb(253,21,26)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (880 samples, 0.17%)</title><rect x="10.9821%" y="629" width="0.1658%" height="15" fill="rgb(245,139,43)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="639.50"></text></g><g><title>Parse::do_call (880 samples, 0.17%)</title><rect x="10.9821%" y="613" width="0.1658%" height="15" fill="rgb(252,170,7)" fg:x="58282" fg:w="880"/><text x="11.2321%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (120 samples, 0.02%)</title><rect x="11.1253%" y="597" width="0.0226%" height="15" fill="rgb(231,118,14)" fg:x="59042" fg:w="120"/><text x="11.3753%" y="607.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.01%)</title><rect x="11.1579%" y="245" width="0.0102%" height="15" fill="rgb(238,83,0)" fg:x="59215" fg:w="54"/><text x="11.4079%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="11.1579%" y="229" width="0.0102%" height="15" fill="rgb(221,39,39)" fg:x="59215" fg:w="54"/><text x="11.4079%" y="239.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.01%)</title><rect x="11.1575%" y="261" width="0.0107%" height="15" fill="rgb(222,119,46)" fg:x="59213" fg:w="57"/><text x="11.4075%" y="271.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="11.1570%" y="293" width="0.0115%" height="15" fill="rgb(222,165,49)" fg:x="59210" fg:w="61"/><text x="11.4070%" y="303.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="11.1570%" y="277" width="0.0115%" height="15" fill="rgb(219,113,52)" fg:x="59210" fg:w="61"/><text x="11.4070%" y="287.50"></text></g><g><title>Parse::do_call (73 samples, 0.01%)</title><rect x="11.1558%" y="309" width="0.0138%" height="15" fill="rgb(214,7,15)" fg:x="59204" fg:w="73"/><text x="11.4058%" y="319.50"></text></g><g><title>ParseGenerator::generate (92 samples, 0.02%)</title><rect x="11.1549%" y="389" width="0.0173%" height="15" fill="rgb(235,32,4)" fg:x="59199" fg:w="92"/><text x="11.4049%" y="399.50"></text></g><g><title>Parse::Parse (92 samples, 0.02%)</title><rect x="11.1549%" y="373" width="0.0173%" height="15" fill="rgb(238,90,54)" fg:x="59199" fg:w="92"/><text x="11.4049%" y="383.50"></text></g><g><title>Parse::do_all_blocks (90 samples, 0.02%)</title><rect x="11.1553%" y="357" width="0.0170%" height="15" fill="rgb(213,208,19)" fg:x="59201" fg:w="90"/><text x="11.4053%" y="367.50"></text></g><g><title>Parse::do_one_block (90 samples, 0.02%)</title><rect x="11.1553%" y="341" width="0.0170%" height="15" fill="rgb(233,156,4)" fg:x="59201" fg:w="90"/><text x="11.4053%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (90 samples, 0.02%)</title><rect x="11.1553%" y="325" width="0.0170%" height="15" fill="rgb(207,194,5)" fg:x="59201" fg:w="90"/><text x="11.4053%" y="335.50"></text></g><g><title>Parse::do_call (130 samples, 0.02%)</title><rect x="11.1515%" y="405" width="0.0245%" height="15" fill="rgb(206,111,30)" fg:x="59181" fg:w="130"/><text x="11.4015%" y="415.50"></text></g><g><title>ParseGenerator::generate (137 samples, 0.03%)</title><rect x="11.1513%" y="485" width="0.0258%" height="15" fill="rgb(243,70,54)" fg:x="59180" fg:w="137"/><text x="11.4013%" y="495.50"></text></g><g><title>Parse::Parse (137 samples, 0.03%)</title><rect x="11.1513%" y="469" width="0.0258%" height="15" fill="rgb(242,28,8)" fg:x="59180" fg:w="137"/><text x="11.4013%" y="479.50"></text></g><g><title>Parse::do_all_blocks (136 samples, 0.03%)</title><rect x="11.1515%" y="453" width="0.0256%" height="15" fill="rgb(219,106,18)" fg:x="59181" fg:w="136"/><text x="11.4015%" y="463.50"></text></g><g><title>Parse::do_one_block (136 samples, 0.03%)</title><rect x="11.1515%" y="437" width="0.0256%" height="15" fill="rgb(244,222,10)" fg:x="59181" fg:w="136"/><text x="11.4015%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (136 samples, 0.03%)</title><rect x="11.1515%" y="421" width="0.0256%" height="15" fill="rgb(236,179,52)" fg:x="59181" fg:w="136"/><text x="11.4015%" y="431.50"></text></g><g><title>ParseGenerator::generate (156 samples, 0.03%)</title><rect x="11.1483%" y="581" width="0.0294%" height="15" fill="rgb(213,23,39)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="591.50"></text></g><g><title>Parse::Parse (156 samples, 0.03%)</title><rect x="11.1483%" y="565" width="0.0294%" height="15" fill="rgb(238,48,10)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="575.50"></text></g><g><title>Parse::do_all_blocks (156 samples, 0.03%)</title><rect x="11.1483%" y="549" width="0.0294%" height="15" fill="rgb(251,196,23)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="559.50"></text></g><g><title>Parse::do_one_block (156 samples, 0.03%)</title><rect x="11.1483%" y="533" width="0.0294%" height="15" fill="rgb(250,152,24)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.03%)</title><rect x="11.1483%" y="517" width="0.0294%" height="15" fill="rgb(209,150,17)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="527.50"></text></g><g><title>Parse::do_call (156 samples, 0.03%)</title><rect x="11.1483%" y="501" width="0.0294%" height="15" fill="rgb(234,202,34)" fg:x="59164" fg:w="156"/><text x="11.3983%" y="511.50"></text></g><g><title>ParseGenerator::generate (176 samples, 0.03%)</title><rect x="11.1479%" y="677" width="0.0332%" height="15" fill="rgb(253,148,53)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="687.50"></text></g><g><title>Parse::Parse (176 samples, 0.03%)</title><rect x="11.1479%" y="661" width="0.0332%" height="15" fill="rgb(218,129,16)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="671.50"></text></g><g><title>Parse::do_all_blocks (176 samples, 0.03%)</title><rect x="11.1479%" y="645" width="0.0332%" height="15" fill="rgb(216,85,19)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="655.50"></text></g><g><title>Parse::do_one_block (176 samples, 0.03%)</title><rect x="11.1479%" y="629" width="0.0332%" height="15" fill="rgb(235,228,7)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (176 samples, 0.03%)</title><rect x="11.1479%" y="613" width="0.0332%" height="15" fill="rgb(245,175,0)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="623.50"></text></g><g><title>Parse::do_call (176 samples, 0.03%)</title><rect x="11.1479%" y="597" width="0.0332%" height="15" fill="rgb(208,168,36)" fg:x="59162" fg:w="176"/><text x="11.3979%" y="607.50"></text></g><g><title>Parse::do_call (1,072 samples, 0.20%)</title><rect x="10.9821%" y="709" width="0.2020%" height="15" fill="rgb(246,171,24)" fg:x="58282" fg:w="1072"/><text x="11.2321%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (192 samples, 0.04%)</title><rect x="11.1479%" y="693" width="0.0362%" height="15" fill="rgb(215,142,24)" fg:x="59162" fg:w="192"/><text x="11.3979%" y="703.50"></text></g><g><title>ParseGenerator::generate (1,073 samples, 0.20%)</title><rect x="10.9821%" y="789" width="0.2022%" height="15" fill="rgb(250,187,7)" fg:x="58282" fg:w="1073"/><text x="11.2321%" y="799.50"></text></g><g><title>Parse::Parse (1,073 samples, 0.20%)</title><rect x="10.9821%" y="773" width="0.2022%" height="15" fill="rgb(228,66,33)" fg:x="58282" fg:w="1073"/><text x="11.2321%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,073 samples, 0.20%)</title><rect x="10.9821%" y="757" width="0.2022%" height="15" fill="rgb(234,215,21)" fg:x="58282" fg:w="1073"/><text x="11.2321%" y="767.50"></text></g><g><title>Parse::do_one_block (1,073 samples, 0.20%)</title><rect x="10.9821%" y="741" width="0.2022%" height="15" fill="rgb(222,191,20)" fg:x="58282" fg:w="1073"/><text x="11.2321%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (1,073 samples, 0.20%)</title><rect x="10.9821%" y="725" width="0.2022%" height="15" fill="rgb(245,79,54)" fg:x="58282" fg:w="1073"/><text x="11.2321%" y="735.50"></text></g><g><title>Compile::Compile (41,529 samples, 7.83%)</title><rect x="3.3603%" y="805" width="7.8253%" height="15" fill="rgb(240,10,37)" fg:x="17833" fg:w="41529"/><text x="3.6103%" y="815.50">Compile::Co..</text></g><g><title>Compile::final_graph_reshaping_impl (102 samples, 0.02%)</title><rect x="11.2280%" y="757" width="0.0192%" height="15" fill="rgb(214,192,32)" fg:x="59587" fg:w="102"/><text x="11.4780%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping (336 samples, 0.06%)</title><rect x="11.1865%" y="789" width="0.0633%" height="15" fill="rgb(209,36,54)" fg:x="59367" fg:w="336"/><text x="11.4365%" y="799.50"></text></g><g><title>Compile::final_graph_reshaping_walk (330 samples, 0.06%)</title><rect x="11.1877%" y="773" width="0.0622%" height="15" fill="rgb(220,10,11)" fg:x="59373" fg:w="330"/><text x="11.4377%" y="783.50"></text></g><g><title>Compile::remove_speculative_types (221 samples, 0.04%)</title><rect x="11.2568%" y="789" width="0.0416%" height="15" fill="rgb(221,106,17)" fg:x="59740" fg:w="221"/><text x="11.5068%" y="799.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (81 samples, 0.02%)</title><rect x="11.3279%" y="757" width="0.0153%" height="15" fill="rgb(251,142,44)" fg:x="60117" fg:w="81"/><text x="11.5779%" y="767.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (96 samples, 0.02%)</title><rect x="11.3435%" y="757" width="0.0181%" height="15" fill="rgb(238,13,15)" fg:x="60200" fg:w="96"/><text x="11.5935%" y="767.50"></text></g><g><title>ConnectionGraph::split_memory_phi (76 samples, 0.01%)</title><rect x="11.3689%" y="725" width="0.0143%" height="15" fill="rgb(208,107,27)" fg:x="60335" fg:w="76"/><text x="11.6189%" y="735.50"></text></g><g><title>ConnectionGraph::find_inst_mem (59 samples, 0.01%)</title><rect x="11.3721%" y="709" width="0.0111%" height="15" fill="rgb(205,136,37)" fg:x="60352" fg:w="59"/><text x="11.6221%" y="719.50"></text></g><g><title>ConnectionGraph::find_inst_mem (96 samples, 0.02%)</title><rect x="11.3661%" y="741" width="0.0181%" height="15" fill="rgb(250,205,27)" fg:x="60320" fg:w="96"/><text x="11.6161%" y="751.50"></text></g><g><title>ConnectionGraph::split_unique_types (132 samples, 0.02%)</title><rect x="11.3640%" y="757" width="0.0249%" height="15" fill="rgb(210,80,43)" fg:x="60309" fg:w="132"/><text x="11.6140%" y="767.50"></text></g><g><title>ConnectionGraph::compute_escape (482 samples, 0.09%)</title><rect x="11.2989%" y="773" width="0.0908%" height="15" fill="rgb(247,160,36)" fg:x="59963" fg:w="482"/><text x="11.5489%" y="783.50"></text></g><g><title>ConnectionGraph::do_analysis (485 samples, 0.09%)</title><rect x="11.2987%" y="789" width="0.0914%" height="15" fill="rgb(234,13,49)" fg:x="59962" fg:w="485"/><text x="11.5487%" y="799.50"></text></g><g><title>PhaseCCP::analyze (655 samples, 0.12%)</title><rect x="11.3912%" y="789" width="0.1234%" height="15" fill="rgb(234,122,0)" fg:x="60453" fg:w="655"/><text x="11.6412%" y="799.50"></text></g><g><title>PhaseCCP::transform_once (85 samples, 0.02%)</title><rect x="11.5361%" y="757" width="0.0160%" height="15" fill="rgb(207,146,38)" fg:x="61222" fg:w="85"/><text x="11.7861%" y="767.50"></text></g><g><title>PhaseCCP::do_transform (203 samples, 0.04%)</title><rect x="11.5146%" y="789" width="0.0383%" height="15" fill="rgb(207,177,25)" fg:x="61108" fg:w="203"/><text x="11.7646%" y="799.50"></text></g><g><title>PhaseCCP::transform (203 samples, 0.04%)</title><rect x="11.5146%" y="773" width="0.0383%" height="15" fill="rgb(211,178,42)" fg:x="61108" fg:w="203"/><text x="11.7646%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (59 samples, 0.01%)</title><rect x="11.5734%" y="709" width="0.0111%" height="15" fill="rgb(230,69,54)" fg:x="61420" fg:w="59"/><text x="11.8234%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (88 samples, 0.02%)</title><rect x="11.5726%" y="725" width="0.0166%" height="15" fill="rgb(214,135,41)" fg:x="61416" fg:w="88"/><text x="11.8226%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (134 samples, 0.03%)</title><rect x="11.5721%" y="741" width="0.0252%" height="15" fill="rgb(237,67,25)" fg:x="61413" fg:w="134"/><text x="11.8221%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (191 samples, 0.04%)</title><rect x="11.5708%" y="757" width="0.0360%" height="15" fill="rgb(222,189,50)" fg:x="61406" fg:w="191"/><text x="11.8208%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (215 samples, 0.04%)</title><rect x="11.5698%" y="773" width="0.0405%" height="15" fill="rgb(245,148,34)" fg:x="61401" fg:w="215"/><text x="11.8198%" y="783.50"></text></g><g><title>IdealLoopTree::loop_predication (64 samples, 0.01%)</title><rect x="11.6105%" y="757" width="0.0121%" height="15" fill="rgb(222,29,6)" fg:x="61617" fg:w="64"/><text x="11.8605%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (73 samples, 0.01%)</title><rect x="11.6305%" y="741" width="0.0138%" height="15" fill="rgb(221,189,43)" fg:x="61723" fg:w="73"/><text x="11.8805%" y="751.50"></text></g><g><title>IdealLoopTree::loop_predication (230 samples, 0.04%)</title><rect x="11.6103%" y="773" width="0.0433%" height="15" fill="rgb(207,36,27)" fg:x="61616" fg:w="230"/><text x="11.8603%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (165 samples, 0.03%)</title><rect x="11.6226%" y="757" width="0.0311%" height="15" fill="rgb(217,90,24)" fg:x="61681" fg:w="165"/><text x="11.8726%" y="767.50"></text></g><g><title>NTarjan::DFS (263 samples, 0.05%)</title><rect x="11.7916%" y="757" width="0.0496%" height="15" fill="rgb(224,66,35)" fg:x="62578" fg:w="263"/><text x="12.0416%" y="767.50"></text></g><g><title>PhaseIdealLoop::Dominators (991 samples, 0.19%)</title><rect x="11.6623%" y="773" width="0.1867%" height="15" fill="rgb(221,13,50)" fg:x="61892" fg:w="991"/><text x="11.9123%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (61 samples, 0.01%)</title><rect x="12.0690%" y="725" width="0.0115%" height="15" fill="rgb(236,68,49)" fg:x="64050" fg:w="61"/><text x="12.3190%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (139 samples, 0.03%)</title><rect x="12.0805%" y="725" width="0.0262%" height="15" fill="rgb(229,146,28)" fg:x="64111" fg:w="139"/><text x="12.3305%" y="735.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (375 samples, 0.07%)</title><rect x="12.0362%" y="757" width="0.0707%" height="15" fill="rgb(225,31,38)" fg:x="63876" fg:w="375"/><text x="12.2862%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (342 samples, 0.06%)</title><rect x="12.0424%" y="741" width="0.0644%" height="15" fill="rgb(250,208,3)" fg:x="63909" fg:w="342"/><text x="12.2924%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,445 samples, 0.27%)</title><rect x="11.8491%" y="773" width="0.2723%" height="15" fill="rgb(246,54,23)" fg:x="62883" fg:w="1445"/><text x="12.0991%" y="783.50"></text></g><g><title>Node::unique_ctrl_out (64 samples, 0.01%)</title><rect x="12.4289%" y="741" width="0.0121%" height="15" fill="rgb(243,76,11)" fg:x="65960" fg:w="64"/><text x="12.6789%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (66 samples, 0.01%)</title><rect x="12.4411%" y="741" width="0.0124%" height="15" fill="rgb(245,21,50)" fg:x="66025" fg:w="66"/><text x="12.6911%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (56 samples, 0.01%)</title><rect x="12.5485%" y="693" width="0.0106%" height="15" fill="rgb(228,9,43)" fg:x="66595" fg:w="56"/><text x="12.7985%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (256 samples, 0.05%)</title><rect x="12.5378%" y="709" width="0.0482%" height="15" fill="rgb(208,100,47)" fg:x="66538" fg:w="256"/><text x="12.7878%" y="719.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (143 samples, 0.03%)</title><rect x="12.5591%" y="693" width="0.0269%" height="15" fill="rgb(232,26,8)" fg:x="66651" fg:w="143"/><text x="12.8091%" y="703.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (361 samples, 0.07%)</title><rect x="12.5236%" y="725" width="0.0680%" height="15" fill="rgb(216,166,38)" fg:x="66463" fg:w="361"/><text x="12.7736%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (147 samples, 0.03%)</title><rect x="12.5920%" y="725" width="0.0277%" height="15" fill="rgb(251,202,51)" fg:x="66826" fg:w="147"/><text x="12.8420%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (568 samples, 0.11%)</title><rect x="13.0356%" y="709" width="0.1070%" height="15" fill="rgb(254,216,34)" fg:x="69180" fg:w="568"/><text x="13.2856%" y="719.50"></text></g><g><title>PhaseIdealLoop::is_dominator (2,771 samples, 0.52%)</title><rect x="12.6230%" y="725" width="0.5221%" height="15" fill="rgb(251,32,27)" fg:x="66990" fg:w="2771"/><text x="12.8730%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (3,686 samples, 0.69%)</title><rect x="12.4536%" y="741" width="0.6946%" height="15" fill="rgb(208,127,28)" fg:x="66091" fg:w="3686"/><text x="12.7036%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (4,428 samples, 0.83%)</title><rect x="12.3258%" y="757" width="0.8344%" height="15" fill="rgb(224,137,22)" fg:x="65413" fg:w="4428"/><text x="12.5758%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (5,533 samples, 1.04%)</title><rect x="12.1213%" y="773" width="1.0426%" height="15" fill="rgb(254,70,32)" fg:x="64328" fg:w="5533"/><text x="12.3713%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (197 samples, 0.04%)</title><rect x="13.2708%" y="757" width="0.0371%" height="15" fill="rgb(229,75,37)" fg:x="70428" fg:w="197"/><text x="13.5208%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (771 samples, 0.15%)</title><rect x="13.1639%" y="773" width="0.1453%" height="15" fill="rgb(252,64,23)" fg:x="69861" fg:w="771"/><text x="13.4139%" y="783.50"></text></g><g><title>PhaseIdealLoop::do_split_if (101 samples, 0.02%)</title><rect x="13.3901%" y="757" width="0.0190%" height="15" fill="rgb(232,162,48)" fg:x="71061" fg:w="101"/><text x="13.6401%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (209 samples, 0.04%)</title><rect x="13.4096%" y="757" width="0.0394%" height="15" fill="rgb(246,160,12)" fg:x="71165" fg:w="209"/><text x="13.6596%" y="767.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (60 samples, 0.01%)</title><rect x="13.4858%" y="741" width="0.0113%" height="15" fill="rgb(247,166,0)" fg:x="71569" fg:w="60"/><text x="13.7358%" y="751.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (132 samples, 0.02%)</title><rect x="13.4980%" y="741" width="0.0249%" height="15" fill="rgb(249,219,21)" fg:x="71634" fg:w="132"/><text x="13.7480%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (58 samples, 0.01%)</title><rect x="13.5432%" y="725" width="0.0109%" height="15" fill="rgb(205,209,3)" fg:x="71874" fg:w="58"/><text x="13.7932%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (179 samples, 0.03%)</title><rect x="13.5229%" y="741" width="0.0337%" height="15" fill="rgb(243,44,1)" fg:x="71766" fg:w="179"/><text x="13.7729%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (612 samples, 0.12%)</title><rect x="13.4490%" y="757" width="0.1153%" height="15" fill="rgb(206,159,16)" fg:x="71374" fg:w="612"/><text x="13.6990%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,311 samples, 0.25%)</title><rect x="13.3179%" y="773" width="0.2470%" height="15" fill="rgb(244,77,30)" fg:x="70678" fg:w="1311"/><text x="13.5679%" y="783.50"></text></g><g><title>LoadNode::Ideal (90 samples, 0.02%)</title><rect x="13.6401%" y="741" width="0.0170%" height="15" fill="rgb(218,69,12)" fg:x="72388" fg:w="90"/><text x="13.8901%" y="751.50"></text></g><g><title>NodeHash::hash_find_insert (100 samples, 0.02%)</title><rect x="13.6638%" y="741" width="0.0188%" height="15" fill="rgb(212,87,7)" fg:x="72514" fg:w="100"/><text x="13.9138%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (102 samples, 0.02%)</title><rect x="13.6927%" y="741" width="0.0192%" height="15" fill="rgb(245,114,25)" fg:x="72667" fg:w="102"/><text x="13.9427%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (132 samples, 0.02%)</title><rect x="13.7479%" y="725" width="0.0249%" height="15" fill="rgb(210,61,42)" fg:x="72960" fg:w="132"/><text x="13.9979%" y="735.50"></text></g><g><title>RegionNode::Ideal (222 samples, 0.04%)</title><rect x="13.7313%" y="741" width="0.0418%" height="15" fill="rgb(211,52,33)" fg:x="72872" fg:w="222"/><text x="13.9813%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (57 samples, 0.01%)</title><rect x="13.7744%" y="661" width="0.0107%" height="15" fill="rgb(234,58,33)" fg:x="73101" fg:w="57"/><text x="14.0244%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (61 samples, 0.01%)</title><rect x="13.7744%" y="677" width="0.0115%" height="15" fill="rgb(220,115,36)" fg:x="73101" fg:w="61"/><text x="14.0244%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (68 samples, 0.01%)</title><rect x="13.7744%" y="725" width="0.0128%" height="15" fill="rgb(243,153,54)" fg:x="73101" fg:w="68"/><text x="14.0244%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (68 samples, 0.01%)</title><rect x="13.7744%" y="709" width="0.0128%" height="15" fill="rgb(251,47,18)" fg:x="73101" fg:w="68"/><text x="14.0244%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (68 samples, 0.01%)</title><rect x="13.7744%" y="693" width="0.0128%" height="15" fill="rgb(242,102,42)" fg:x="73101" fg:w="68"/><text x="14.0244%" y="703.50"></text></g><g><title>StoreNode::Ideal (72 samples, 0.01%)</title><rect x="13.7744%" y="741" width="0.0136%" height="15" fill="rgb(234,31,38)" fg:x="73101" fg:w="72"/><text x="14.0244%" y="751.50"></text></g><g><title>PhaseIterGVN::transform_old (1,184 samples, 0.22%)</title><rect x="13.5732%" y="757" width="0.2231%" height="15" fill="rgb(221,117,51)" fg:x="72033" fg:w="1184"/><text x="13.8232%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (1,237 samples, 0.23%)</title><rect x="13.5653%" y="773" width="0.2331%" height="15" fill="rgb(212,20,18)" fg:x="71991" fg:w="1237"/><text x="13.8153%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (12,004 samples, 2.26%)</title><rect x="11.5551%" y="789" width="2.2619%" height="15" fill="rgb(245,133,36)" fg:x="61323" fg:w="12004"/><text x="11.8051%" y="799.50">P..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (116 samples, 0.02%)</title><rect x="13.8172%" y="789" width="0.0219%" height="15" fill="rgb(212,6,19)" fg:x="73328" fg:w="116"/><text x="14.0672%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (62 samples, 0.01%)</title><rect x="13.9194%" y="725" width="0.0117%" height="15" fill="rgb(218,1,36)" fg:x="73870" fg:w="62"/><text x="14.1694%" y="735.50"></text></g><g><title>Unique_Node_List::remove (55 samples, 0.01%)</title><rect x="13.9207%" y="709" width="0.0104%" height="15" fill="rgb(246,84,54)" fg:x="73877" fg:w="55"/><text x="14.1707%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (75 samples, 0.01%)</title><rect x="13.9177%" y="741" width="0.0141%" height="15" fill="rgb(242,110,6)" fg:x="73861" fg:w="75"/><text x="14.1677%" y="751.50"></text></g><g><title>IfNode::Ideal (239 samples, 0.05%)</title><rect x="13.8986%" y="757" width="0.0450%" height="15" fill="rgb(214,47,5)" fg:x="73760" fg:w="239"/><text x="14.1486%" y="767.50"></text></g><g><title>split_if (54 samples, 0.01%)</title><rect x="13.9335%" y="741" width="0.0102%" height="15" fill="rgb(218,159,25)" fg:x="73945" fg:w="54"/><text x="14.1835%" y="751.50"></text></g><g><title>MemNode::Ideal_common (63 samples, 0.01%)</title><rect x="13.9531%" y="741" width="0.0119%" height="15" fill="rgb(215,211,28)" fg:x="74049" fg:w="63"/><text x="14.2031%" y="751.50"></text></g><g><title>MemNode::find_previous_store (70 samples, 0.01%)</title><rect x="13.9657%" y="741" width="0.0132%" height="15" fill="rgb(238,59,32)" fg:x="74116" fg:w="70"/><text x="14.2157%" y="751.50"></text></g><g><title>LoadNode::Ideal (170 samples, 0.03%)</title><rect x="13.9472%" y="757" width="0.0320%" height="15" fill="rgb(226,82,3)" fg:x="74018" fg:w="170"/><text x="14.1972%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (158 samples, 0.03%)</title><rect x="14.0026%" y="757" width="0.0298%" height="15" fill="rgb(240,164,32)" fg:x="74312" fg:w="158"/><text x="14.2526%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (82 samples, 0.02%)</title><rect x="14.0612%" y="741" width="0.0155%" height="15" fill="rgb(232,46,7)" fg:x="74623" fg:w="82"/><text x="14.3112%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (211 samples, 0.04%)</title><rect x="14.0403%" y="757" width="0.0398%" height="15" fill="rgb(229,129,53)" fg:x="74512" fg:w="211"/><text x="14.2903%" y="767.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (56 samples, 0.01%)</title><rect x="14.0923%" y="741" width="0.0106%" height="15" fill="rgb(234,188,29)" fg:x="74788" fg:w="56"/><text x="14.3423%" y="751.50"></text></g><g><title>PhiNode::Ideal (141 samples, 0.03%)</title><rect x="14.0806%" y="757" width="0.0266%" height="15" fill="rgb(246,141,4)" fg:x="74726" fg:w="141"/><text x="14.3306%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (82 samples, 0.02%)</title><rect x="14.1425%" y="725" width="0.0155%" height="15" fill="rgb(229,23,39)" fg:x="75054" fg:w="82"/><text x="14.3925%" y="735.50"></text></g><g><title>Unique_Node_List::remove (74 samples, 0.01%)</title><rect x="14.1440%" y="709" width="0.0139%" height="15" fill="rgb(206,12,3)" fg:x="75062" fg:w="74"/><text x="14.3940%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (98 samples, 0.02%)</title><rect x="14.1400%" y="741" width="0.0185%" height="15" fill="rgb(252,226,20)" fg:x="75041" fg:w="98"/><text x="14.3900%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (87 samples, 0.02%)</title><rect x="14.1632%" y="741" width="0.0164%" height="15" fill="rgb(216,123,35)" fg:x="75164" fg:w="87"/><text x="14.4132%" y="751.50"></text></g><g><title>RegionNode::Ideal (311 samples, 0.06%)</title><rect x="14.1234%" y="757" width="0.0586%" height="15" fill="rgb(212,68,40)" fg:x="74953" fg:w="311"/><text x="14.3734%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (61 samples, 0.01%)</title><rect x="14.1852%" y="469" width="0.0115%" height="15" fill="rgb(254,125,32)" fg:x="75281" fg:w="61"/><text x="14.4352%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (82 samples, 0.02%)</title><rect x="14.1852%" y="485" width="0.0155%" height="15" fill="rgb(253,97,22)" fg:x="75281" fg:w="82"/><text x="14.4352%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (96 samples, 0.02%)</title><rect x="14.1852%" y="501" width="0.0181%" height="15" fill="rgb(241,101,14)" fg:x="75281" fg:w="96"/><text x="14.4352%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (113 samples, 0.02%)</title><rect x="14.1850%" y="517" width="0.0213%" height="15" fill="rgb(238,103,29)" fg:x="75280" fg:w="113"/><text x="14.4350%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (135 samples, 0.03%)</title><rect x="14.1850%" y="533" width="0.0254%" height="15" fill="rgb(233,195,47)" fg:x="75280" fg:w="135"/><text x="14.4350%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (149 samples, 0.03%)</title><rect x="14.1850%" y="549" width="0.0281%" height="15" fill="rgb(246,218,30)" fg:x="75280" fg:w="149"/><text x="14.4350%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (164 samples, 0.03%)</title><rect x="14.1850%" y="565" width="0.0309%" height="15" fill="rgb(219,145,47)" fg:x="75280" fg:w="164"/><text x="14.4350%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (176 samples, 0.03%)</title><rect x="14.1850%" y="581" width="0.0332%" height="15" fill="rgb(243,12,26)" fg:x="75280" fg:w="176"/><text x="14.4350%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (192 samples, 0.04%)</title><rect x="14.1850%" y="597" width="0.0362%" height="15" fill="rgb(214,87,16)" fg:x="75280" fg:w="192"/><text x="14.4350%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (209 samples, 0.04%)</title><rect x="14.1850%" y="613" width="0.0394%" height="15" fill="rgb(208,99,42)" fg:x="75280" fg:w="209"/><text x="14.4350%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (218 samples, 0.04%)</title><rect x="14.1850%" y="629" width="0.0411%" height="15" fill="rgb(253,99,2)" fg:x="75280" fg:w="218"/><text x="14.4350%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (240 samples, 0.05%)</title><rect x="14.1850%" y="645" width="0.0452%" height="15" fill="rgb(220,168,23)" fg:x="75280" fg:w="240"/><text x="14.4350%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (260 samples, 0.05%)</title><rect x="14.1850%" y="661" width="0.0490%" height="15" fill="rgb(242,38,24)" fg:x="75280" fg:w="260"/><text x="14.4350%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (279 samples, 0.05%)</title><rect x="14.1849%" y="677" width="0.0526%" height="15" fill="rgb(225,182,9)" fg:x="75279" fg:w="279"/><text x="14.4349%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (302 samples, 0.06%)</title><rect x="14.1849%" y="693" width="0.0569%" height="15" fill="rgb(243,178,37)" fg:x="75279" fg:w="302"/><text x="14.4349%" y="703.50"></text></g><g><title>InitializeNode::can_capture_store (335 samples, 0.06%)</title><rect x="14.1843%" y="741" width="0.0631%" height="15" fill="rgb(232,139,19)" fg:x="75276" fg:w="335"/><text x="14.4343%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (335 samples, 0.06%)</title><rect x="14.1843%" y="725" width="0.0631%" height="15" fill="rgb(225,201,24)" fg:x="75276" fg:w="335"/><text x="14.4343%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (333 samples, 0.06%)</title><rect x="14.1847%" y="709" width="0.0627%" height="15" fill="rgb(221,47,46)" fg:x="75278" fg:w="333"/><text x="14.4347%" y="719.50"></text></g><g><title>StoreNode::Ideal (372 samples, 0.07%)</title><rect x="14.1839%" y="757" width="0.0701%" height="15" fill="rgb(249,23,13)" fg:x="75274" fg:w="372"/><text x="14.4339%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (2,183 samples, 0.41%)</title><rect x="13.8508%" y="773" width="0.4113%" height="15" fill="rgb(219,9,5)" fg:x="73506" fg:w="2183"/><text x="14.1008%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (2,263 samples, 0.43%)</title><rect x="13.8391%" y="789" width="0.4264%" height="15" fill="rgb(254,171,16)" fg:x="73444" fg:w="2263"/><text x="14.0891%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (212 samples, 0.04%)</title><rect x="14.2761%" y="757" width="0.0399%" height="15" fill="rgb(230,171,20)" fg:x="75763" fg:w="212"/><text x="14.5261%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (220 samples, 0.04%)</title><rect x="14.2749%" y="773" width="0.0415%" height="15" fill="rgb(210,71,41)" fg:x="75757" fg:w="220"/><text x="14.5249%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (82 samples, 0.02%)</title><rect x="14.3173%" y="773" width="0.0155%" height="15" fill="rgb(206,173,20)" fg:x="75982" fg:w="82"/><text x="14.5673%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (360 samples, 0.07%)</title><rect x="14.2730%" y="789" width="0.0678%" height="15" fill="rgb(233,88,34)" fg:x="75747" fg:w="360"/><text x="14.5230%" y="799.50"></text></g><g><title>Compile::identify_useful_nodes (68 samples, 0.01%)</title><rect x="14.3452%" y="757" width="0.0128%" height="15" fill="rgb(223,209,46)" fg:x="76130" fg:w="68"/><text x="14.5952%" y="767.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (141 samples, 0.03%)</title><rect x="14.3424%" y="773" width="0.0266%" height="15" fill="rgb(250,43,18)" fg:x="76115" fg:w="141"/><text x="14.5924%" y="783.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (151 samples, 0.03%)</title><rect x="14.3409%" y="789" width="0.0285%" height="15" fill="rgb(208,13,10)" fg:x="76107" fg:w="151"/><text x="14.5909%" y="799.50"></text></g><g><title>Compile::Optimize (16,898 samples, 3.18%)</title><rect x="11.1856%" y="805" width="3.1841%" height="15" fill="rgb(212,200,36)" fg:x="59362" fg:w="16898"/><text x="11.4356%" y="815.50">Com..</text></g><g><title>Parse::do_one_block (166 samples, 0.03%)</title><rect x="14.3727%" y="693" width="0.0313%" height="15" fill="rgb(225,90,30)" fg:x="76276" fg:w="166"/><text x="14.6227%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (151 samples, 0.03%)</title><rect x="14.3755%" y="677" width="0.0285%" height="15" fill="rgb(236,182,39)" fg:x="76291" fg:w="151"/><text x="14.6255%" y="687.50"></text></g><g><title>Parse::do_all_blocks (170 samples, 0.03%)</title><rect x="14.3721%" y="709" width="0.0320%" height="15" fill="rgb(212,144,35)" fg:x="76273" fg:w="170"/><text x="14.6221%" y="719.50"></text></g><g><title>ParseGenerator::generate (173 samples, 0.03%)</title><rect x="14.3720%" y="741" width="0.0326%" height="15" fill="rgb(228,63,44)" fg:x="76272" fg:w="173"/><text x="14.6220%" y="751.50"></text></g><g><title>Parse::Parse (173 samples, 0.03%)</title><rect x="14.3720%" y="725" width="0.0326%" height="15" fill="rgb(228,109,6)" fg:x="76272" fg:w="173"/><text x="14.6220%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (206 samples, 0.04%)</title><rect x="14.3701%" y="805" width="0.0388%" height="15" fill="rgb(238,117,24)" fg:x="76262" fg:w="206"/><text x="14.6201%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (206 samples, 0.04%)</title><rect x="14.3701%" y="789" width="0.0388%" height="15" fill="rgb(242,26,26)" fg:x="76262" fg:w="206"/><text x="14.6201%" y="799.50"></text></g><g><title>C2Compiler::compile_method (206 samples, 0.04%)</title><rect x="14.3701%" y="773" width="0.0388%" height="15" fill="rgb(221,92,48)" fg:x="76262" fg:w="206"/><text x="14.6201%" y="783.50"></text></g><g><title>Compile::Compile (206 samples, 0.04%)</title><rect x="14.3701%" y="757" width="0.0388%" height="15" fill="rgb(209,209,32)" fg:x="76262" fg:w="206"/><text x="14.6201%" y="767.50"></text></g><g><title>ciTypeFlow::df_flow_types (82 samples, 0.02%)</title><rect x="14.4089%" y="677" width="0.0155%" height="15" fill="rgb(221,70,22)" fg:x="76468" fg:w="82"/><text x="14.6589%" y="687.50"></text></g><g><title>ciTypeFlow::flow_block (82 samples, 0.02%)</title><rect x="14.4089%" y="661" width="0.0155%" height="15" fill="rgb(248,145,5)" fg:x="76468" fg:w="82"/><text x="14.6589%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (82 samples, 0.02%)</title><rect x="14.4089%" y="645" width="0.0155%" height="15" fill="rgb(226,116,26)" fg:x="76468" fg:w="82"/><text x="14.6589%" y="655.50"></text></g><g><title>CallGenerator::for_inline (84 samples, 0.02%)</title><rect x="14.4089%" y="757" width="0.0158%" height="15" fill="rgb(244,5,17)" fg:x="76468" fg:w="84"/><text x="14.6589%" y="767.50"></text></g><g><title>InlineTree::check_can_parse (84 samples, 0.02%)</title><rect x="14.4089%" y="741" width="0.0158%" height="15" fill="rgb(252,159,33)" fg:x="76468" fg:w="84"/><text x="14.6589%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (84 samples, 0.02%)</title><rect x="14.4089%" y="725" width="0.0158%" height="15" fill="rgb(206,71,0)" fg:x="76468" fg:w="84"/><text x="14.6589%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (84 samples, 0.02%)</title><rect x="14.4089%" y="709" width="0.0158%" height="15" fill="rgb(233,118,54)" fg:x="76468" fg:w="84"/><text x="14.6589%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (84 samples, 0.02%)</title><rect x="14.4089%" y="693" width="0.0158%" height="15" fill="rgb(234,83,48)" fg:x="76468" fg:w="84"/><text x="14.6589%" y="703.50"></text></g><g><title>Compile::call_generator (58 samples, 0.01%)</title><rect x="14.4338%" y="661" width="0.0109%" height="15" fill="rgb(228,3,54)" fg:x="76600" fg:w="58"/><text x="14.6838%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.02%)</title><rect x="14.4647%" y="597" width="0.0171%" height="15" fill="rgb(226,155,13)" fg:x="76764" fg:w="91"/><text x="14.7147%" y="607.50"></text></g><g><title>Parse::do_one_block (99 samples, 0.02%)</title><rect x="14.4634%" y="613" width="0.0187%" height="15" fill="rgb(241,28,37)" fg:x="76757" fg:w="99"/><text x="14.7134%" y="623.50"></text></g><g><title>Parse::do_all_blocks (109 samples, 0.02%)</title><rect x="14.4630%" y="629" width="0.0205%" height="15" fill="rgb(233,93,10)" fg:x="76755" fg:w="109"/><text x="14.7130%" y="639.50"></text></g><g><title>ParseGenerator::generate (181 samples, 0.03%)</title><rect x="14.4554%" y="661" width="0.0341%" height="15" fill="rgb(225,113,19)" fg:x="76715" fg:w="181"/><text x="14.7054%" y="671.50"></text></g><g><title>Parse::Parse (181 samples, 0.03%)</title><rect x="14.4554%" y="645" width="0.0341%" height="15" fill="rgb(241,2,18)" fg:x="76715" fg:w="181"/><text x="14.7054%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (72 samples, 0.01%)</title><rect x="14.4895%" y="661" width="0.0136%" height="15" fill="rgb(228,207,21)" fg:x="76896" fg:w="72"/><text x="14.7395%" y="671.50"></text></g><g><title>Parse::do_call (394 samples, 0.07%)</title><rect x="14.4338%" y="677" width="0.0742%" height="15" fill="rgb(213,211,35)" fg:x="76600" fg:w="394"/><text x="14.6838%" y="687.50"></text></g><g><title>Parse::do_all_blocks (545 samples, 0.10%)</title><rect x="14.4266%" y="725" width="0.1027%" height="15" fill="rgb(209,83,10)" fg:x="76562" fg:w="545"/><text x="14.6766%" y="735.50"></text></g><g><title>Parse::do_one_block (544 samples, 0.10%)</title><rect x="14.4268%" y="709" width="0.1025%" height="15" fill="rgb(209,164,1)" fg:x="76563" fg:w="544"/><text x="14.6768%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (539 samples, 0.10%)</title><rect x="14.4277%" y="693" width="0.1016%" height="15" fill="rgb(213,184,43)" fg:x="76568" fg:w="539"/><text x="14.6777%" y="703.50"></text></g><g><title>ParseGenerator::generate (553 samples, 0.10%)</title><rect x="14.4266%" y="757" width="0.1042%" height="15" fill="rgb(231,61,34)" fg:x="76562" fg:w="553"/><text x="14.6766%" y="767.50"></text></g><g><title>Parse::Parse (553 samples, 0.10%)</title><rect x="14.4266%" y="741" width="0.1042%" height="15" fill="rgb(235,75,3)" fg:x="76562" fg:w="553"/><text x="14.6766%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (667 samples, 0.13%)</title><rect x="14.4089%" y="805" width="0.1257%" height="15" fill="rgb(220,106,47)" fg:x="76468" fg:w="667"/><text x="14.6589%" y="815.50"></text></g><g><title>C2Compiler::compile_method (667 samples, 0.13%)</title><rect x="14.4089%" y="789" width="0.1257%" height="15" fill="rgb(210,196,33)" fg:x="76468" fg:w="667"/><text x="14.6589%" y="799.50"></text></g><g><title>Compile::Compile (667 samples, 0.13%)</title><rect x="14.4089%" y="773" width="0.1257%" height="15" fill="rgb(229,154,42)" fg:x="76468" fg:w="667"/><text x="14.6589%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (67 samples, 0.01%)</title><rect x="14.5442%" y="805" width="0.0126%" height="15" fill="rgb(228,114,26)" fg:x="77186" fg:w="67"/><text x="14.7942%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (67 samples, 0.01%)</title><rect x="14.5442%" y="789" width="0.0126%" height="15" fill="rgb(208,144,1)" fg:x="77186" fg:w="67"/><text x="14.7942%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (67 samples, 0.01%)</title><rect x="14.5442%" y="773" width="0.0126%" height="15" fill="rgb(239,112,37)" fg:x="77186" fg:w="67"/><text x="14.7942%" y="783.50"></text></g><g><title>C2Compiler::compile_method (67 samples, 0.01%)</title><rect x="14.5442%" y="757" width="0.0126%" height="15" fill="rgb(210,96,50)" fg:x="77186" fg:w="67"/><text x="14.7942%" y="767.50"></text></g><g><title>Compile::Compile (67 samples, 0.01%)</title><rect x="14.5442%" y="741" width="0.0126%" height="15" fill="rgb(222,178,2)" fg:x="77186" fg:w="67"/><text x="14.7942%" y="751.50"></text></g><g><title>Parse::do_call (63 samples, 0.01%)</title><rect x="14.5745%" y="133" width="0.0119%" height="15" fill="rgb(226,74,18)" fg:x="77347" fg:w="63"/><text x="14.8245%" y="143.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.01%)</title><rect x="14.5740%" y="309" width="0.0128%" height="15" fill="rgb(225,67,54)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="319.50"></text></g><g><title>Parse::Parse (68 samples, 0.01%)</title><rect x="14.5740%" y="293" width="0.0128%" height="15" fill="rgb(251,92,32)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="303.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.01%)</title><rect x="14.5740%" y="277" width="0.0128%" height="15" fill="rgb(228,149,22)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="287.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.01%)</title><rect x="14.5740%" y="261" width="0.0128%" height="15" fill="rgb(243,54,13)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.01%)</title><rect x="14.5740%" y="245" width="0.0128%" height="15" fill="rgb(243,180,28)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="255.50"></text></g><g><title>Parse::do_call (68 samples, 0.01%)</title><rect x="14.5740%" y="229" width="0.0128%" height="15" fill="rgb(208,167,24)" fg:x="77344" fg:w="68"/><text x="14.8240%" y="239.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.01%)</title><rect x="14.5741%" y="213" width="0.0126%" height="15" fill="rgb(245,73,45)" fg:x="77345" fg:w="67"/><text x="14.8241%" y="223.50"></text></g><g><title>Parse::Parse (67 samples, 0.01%)</title><rect x="14.5741%" y="197" width="0.0126%" height="15" fill="rgb(237,203,48)" fg:x="77345" fg:w="67"/><text x="14.8241%" y="207.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.01%)</title><rect x="14.5741%" y="181" width="0.0126%" height="15" fill="rgb(211,197,16)" fg:x="77345" fg:w="67"/><text x="14.8241%" y="191.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.01%)</title><rect x="14.5741%" y="165" width="0.0126%" height="15" fill="rgb(243,99,51)" fg:x="77345" fg:w="67"/><text x="14.8241%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (67 samples, 0.01%)</title><rect x="14.5741%" y="149" width="0.0126%" height="15" fill="rgb(215,123,29)" fg:x="77345" fg:w="67"/><text x="14.8241%" y="159.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.01%)</title><rect x="14.5738%" y="405" width="0.0139%" height="15" fill="rgb(239,186,37)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="415.50"></text></g><g><title>Parse::Parse (74 samples, 0.01%)</title><rect x="14.5738%" y="389" width="0.0139%" height="15" fill="rgb(252,136,39)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="399.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.01%)</title><rect x="14.5738%" y="373" width="0.0139%" height="15" fill="rgb(223,213,32)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="383.50"></text></g><g><title>Parse::do_one_block (74 samples, 0.01%)</title><rect x="14.5738%" y="357" width="0.0139%" height="15" fill="rgb(233,115,5)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (74 samples, 0.01%)</title><rect x="14.5738%" y="341" width="0.0139%" height="15" fill="rgb(207,226,44)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="351.50"></text></g><g><title>Parse::do_call (74 samples, 0.01%)</title><rect x="14.5738%" y="325" width="0.0139%" height="15" fill="rgb(208,126,0)" fg:x="77343" fg:w="74"/><text x="14.8238%" y="335.50"></text></g><g><title>ParseGenerator::generate (82 samples, 0.02%)</title><rect x="14.5738%" y="501" width="0.0155%" height="15" fill="rgb(244,66,21)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="511.50"></text></g><g><title>Parse::Parse (82 samples, 0.02%)</title><rect x="14.5738%" y="485" width="0.0155%" height="15" fill="rgb(222,97,12)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="495.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.02%)</title><rect x="14.5738%" y="469" width="0.0155%" height="15" fill="rgb(219,213,19)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="479.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.02%)</title><rect x="14.5738%" y="453" width="0.0155%" height="15" fill="rgb(252,169,30)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.02%)</title><rect x="14.5738%" y="437" width="0.0155%" height="15" fill="rgb(206,32,51)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="447.50"></text></g><g><title>Parse::do_call (82 samples, 0.02%)</title><rect x="14.5738%" y="421" width="0.0155%" height="15" fill="rgb(250,172,42)" fg:x="77343" fg:w="82"/><text x="14.8238%" y="431.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.02%)</title><rect x="14.5738%" y="597" width="0.0164%" height="15" fill="rgb(209,34,43)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="607.50"></text></g><g><title>Parse::Parse (87 samples, 0.02%)</title><rect x="14.5738%" y="581" width="0.0164%" height="15" fill="rgb(223,11,35)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="591.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.02%)</title><rect x="14.5738%" y="565" width="0.0164%" height="15" fill="rgb(251,219,26)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="575.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.02%)</title><rect x="14.5738%" y="549" width="0.0164%" height="15" fill="rgb(231,119,3)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.02%)</title><rect x="14.5738%" y="533" width="0.0164%" height="15" fill="rgb(216,97,11)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="543.50"></text></g><g><title>Parse::do_call (87 samples, 0.02%)</title><rect x="14.5738%" y="517" width="0.0164%" height="15" fill="rgb(223,59,9)" fg:x="77343" fg:w="87"/><text x="14.8238%" y="527.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.02%)</title><rect x="14.5738%" y="693" width="0.0177%" height="15" fill="rgb(233,93,31)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="703.50"></text></g><g><title>Parse::Parse (94 samples, 0.02%)</title><rect x="14.5738%" y="677" width="0.0177%" height="15" fill="rgb(239,81,33)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="687.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.02%)</title><rect x="14.5738%" y="661" width="0.0177%" height="15" fill="rgb(213,120,34)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="671.50"></text></g><g><title>Parse::do_one_block (94 samples, 0.02%)</title><rect x="14.5738%" y="645" width="0.0177%" height="15" fill="rgb(243,49,53)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (94 samples, 0.02%)</title><rect x="14.5738%" y="629" width="0.0177%" height="15" fill="rgb(247,216,33)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="639.50"></text></g><g><title>Parse::do_call (94 samples, 0.02%)</title><rect x="14.5738%" y="613" width="0.0177%" height="15" fill="rgb(226,26,14)" fg:x="77343" fg:w="94"/><text x="14.8238%" y="623.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.02%)</title><rect x="14.5738%" y="789" width="0.0181%" height="15" fill="rgb(215,49,53)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="799.50"></text></g><g><title>Parse::Parse (96 samples, 0.02%)</title><rect x="14.5738%" y="773" width="0.0181%" height="15" fill="rgb(245,162,40)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="783.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.02%)</title><rect x="14.5738%" y="757" width="0.0181%" height="15" fill="rgb(229,68,17)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="767.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.02%)</title><rect x="14.5738%" y="741" width="0.0181%" height="15" fill="rgb(213,182,10)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.02%)</title><rect x="14.5738%" y="725" width="0.0181%" height="15" fill="rgb(245,125,30)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="735.50"></text></g><g><title>Parse::do_call (96 samples, 0.02%)</title><rect x="14.5738%" y="709" width="0.0181%" height="15" fill="rgb(232,202,2)" fg:x="77343" fg:w="96"/><text x="14.8238%" y="719.50"></text></g><g><title>Parse::do_call (101 samples, 0.02%)</title><rect x="14.5738%" y="805" width="0.0190%" height="15" fill="rgb(237,140,51)" fg:x="77343" fg:w="101"/><text x="14.8238%" y="815.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="14.6015%" y="773" width="0.0109%" height="15" fill="rgb(236,157,25)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="783.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="14.6015%" y="757" width="0.0109%" height="15" fill="rgb(219,209,0)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="767.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="14.6015%" y="741" width="0.0109%" height="15" fill="rgb(240,116,54)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="751.50"></text></g><g><title>Parse::do_one_block (58 samples, 0.01%)</title><rect x="14.6015%" y="725" width="0.0109%" height="15" fill="rgb(216,10,36)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (58 samples, 0.01%)</title><rect x="14.6015%" y="709" width="0.0109%" height="15" fill="rgb(222,72,44)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="719.50"></text></g><g><title>Parse::do_call (58 samples, 0.01%)</title><rect x="14.6015%" y="693" width="0.0109%" height="15" fill="rgb(232,159,9)" fg:x="77490" fg:w="58"/><text x="14.8515%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (60 samples, 0.01%)</title><rect x="14.6015%" y="805" width="0.0113%" height="15" fill="rgb(210,39,32)" fg:x="77490" fg:w="60"/><text x="14.8515%" y="815.50"></text></g><g><title>Parse::do_call (60 samples, 0.01%)</title><rect x="14.6015%" y="789" width="0.0113%" height="15" fill="rgb(216,194,45)" fg:x="77490" fg:w="60"/><text x="14.8515%" y="799.50"></text></g><g><title>Parse::do_call (73 samples, 0.01%)</title><rect x="14.6171%" y="53" width="0.0138%" height="15" fill="rgb(218,18,35)" fg:x="77573" fg:w="73"/><text x="14.8671%" y="63.50"></text></g><g><title>Parse::do_all_blocks (103 samples, 0.02%)</title><rect x="14.6160%" y="101" width="0.0194%" height="15" fill="rgb(207,83,51)" fg:x="77567" fg:w="103"/><text x="14.8660%" y="111.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.02%)</title><rect x="14.6160%" y="85" width="0.0194%" height="15" fill="rgb(225,63,43)" fg:x="77567" fg:w="103"/><text x="14.8660%" y="95.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.02%)</title><rect x="14.6160%" y="69" width="0.0194%" height="15" fill="rgb(207,57,36)" fg:x="77567" fg:w="103"/><text x="14.8660%" y="79.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.02%)</title><rect x="14.6156%" y="133" width="0.0200%" height="15" fill="rgb(216,99,33)" fg:x="77565" fg:w="106"/><text x="14.8656%" y="143.50"></text></g><g><title>Parse::Parse (106 samples, 0.02%)</title><rect x="14.6156%" y="117" width="0.0200%" height="15" fill="rgb(225,42,16)" fg:x="77565" fg:w="106"/><text x="14.8656%" y="127.50"></text></g><g><title>Parse::do_call (122 samples, 0.02%)</title><rect x="14.6135%" y="149" width="0.0230%" height="15" fill="rgb(220,201,45)" fg:x="77554" fg:w="122"/><text x="14.8635%" y="159.50"></text></g><g><title>ParseGenerator::generate (124 samples, 0.02%)</title><rect x="14.6135%" y="229" width="0.0234%" height="15" fill="rgb(225,33,4)" fg:x="77554" fg:w="124"/><text x="14.8635%" y="239.50"></text></g><g><title>Parse::Parse (124 samples, 0.02%)</title><rect x="14.6135%" y="213" width="0.0234%" height="15" fill="rgb(224,33,50)" fg:x="77554" fg:w="124"/><text x="14.8635%" y="223.50"></text></g><g><title>Parse::do_all_blocks (124 samples, 0.02%)</title><rect x="14.6135%" y="197" width="0.0234%" height="15" fill="rgb(246,198,51)" fg:x="77554" fg:w="124"/><text x="14.8635%" y="207.50"></text></g><g><title>Parse::do_one_block (124 samples, 0.02%)</title><rect x="14.6135%" y="181" width="0.0234%" height="15" fill="rgb(205,22,4)" fg:x="77554" fg:w="124"/><text x="14.8635%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (124 samples, 0.02%)</title><rect x="14.6135%" y="165" width="0.0234%" height="15" fill="rgb(206,3,8)" fg:x="77554" fg:w="124"/><text x="14.8635%" y="175.50"></text></g><g><title>Parse::do_call (133 samples, 0.03%)</title><rect x="14.6128%" y="245" width="0.0251%" height="15" fill="rgb(251,23,15)" fg:x="77550" fg:w="133"/><text x="14.8628%" y="255.50"></text></g><g><title>ParseGenerator::generate (134 samples, 0.03%)</title><rect x="14.6128%" y="325" width="0.0252%" height="15" fill="rgb(252,88,28)" fg:x="77550" fg:w="134"/><text x="14.8628%" y="335.50"></text></g><g><title>Parse::Parse (134 samples, 0.03%)</title><rect x="14.6128%" y="309" width="0.0252%" height="15" fill="rgb(212,127,14)" fg:x="77550" fg:w="134"/><text x="14.8628%" y="319.50"></text></g><g><title>Parse::do_all_blocks (134 samples, 0.03%)</title><rect x="14.6128%" y="293" width="0.0252%" height="15" fill="rgb(247,145,37)" fg:x="77550" fg:w="134"/><text x="14.8628%" y="303.50"></text></g><g><title>Parse::do_one_block (134 samples, 0.03%)</title><rect x="14.6128%" y="277" width="0.0252%" height="15" fill="rgb(209,117,53)" fg:x="77550" fg:w="134"/><text x="14.8628%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (134 samples, 0.03%)</title><rect x="14.6128%" y="261" width="0.0252%" height="15" fill="rgb(212,90,42)" fg:x="77550" fg:w="134"/><text x="14.8628%" y="271.50"></text></g><g><title>ParseGenerator::generate (143 samples, 0.03%)</title><rect x="14.6128%" y="421" width="0.0269%" height="15" fill="rgb(218,164,37)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="431.50"></text></g><g><title>Parse::Parse (143 samples, 0.03%)</title><rect x="14.6128%" y="405" width="0.0269%" height="15" fill="rgb(246,65,34)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="415.50"></text></g><g><title>Parse::do_all_blocks (143 samples, 0.03%)</title><rect x="14.6128%" y="389" width="0.0269%" height="15" fill="rgb(231,100,33)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="399.50"></text></g><g><title>Parse::do_one_block (143 samples, 0.03%)</title><rect x="14.6128%" y="373" width="0.0269%" height="15" fill="rgb(228,126,14)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (143 samples, 0.03%)</title><rect x="14.6128%" y="357" width="0.0269%" height="15" fill="rgb(215,173,21)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="367.50"></text></g><g><title>Parse::do_call (143 samples, 0.03%)</title><rect x="14.6128%" y="341" width="0.0269%" height="15" fill="rgb(210,6,40)" fg:x="77550" fg:w="143"/><text x="14.8628%" y="351.50"></text></g><g><title>ParseGenerator::generate (156 samples, 0.03%)</title><rect x="14.6128%" y="517" width="0.0294%" height="15" fill="rgb(212,48,18)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="527.50"></text></g><g><title>Parse::Parse (156 samples, 0.03%)</title><rect x="14.6128%" y="501" width="0.0294%" height="15" fill="rgb(230,214,11)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="511.50"></text></g><g><title>Parse::do_all_blocks (156 samples, 0.03%)</title><rect x="14.6128%" y="485" width="0.0294%" height="15" fill="rgb(254,105,39)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="495.50"></text></g><g><title>Parse::do_one_block (156 samples, 0.03%)</title><rect x="14.6128%" y="469" width="0.0294%" height="15" fill="rgb(245,158,5)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.03%)</title><rect x="14.6128%" y="453" width="0.0294%" height="15" fill="rgb(249,208,11)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="463.50"></text></g><g><title>Parse::do_call (156 samples, 0.03%)</title><rect x="14.6128%" y="437" width="0.0294%" height="15" fill="rgb(210,39,28)" fg:x="77550" fg:w="156"/><text x="14.8628%" y="447.50"></text></g><g><title>Parse::do_call (171 samples, 0.03%)</title><rect x="14.6128%" y="533" width="0.0322%" height="15" fill="rgb(211,56,53)" fg:x="77550" fg:w="171"/><text x="14.8628%" y="543.50"></text></g><g><title>ParseGenerator::generate (178 samples, 0.03%)</title><rect x="14.6128%" y="613" width="0.0335%" height="15" fill="rgb(226,201,30)" fg:x="77550" fg:w="178"/><text x="14.8628%" y="623.50"></text></g><g><title>Parse::Parse (178 samples, 0.03%)</title><rect x="14.6128%" y="597" width="0.0335%" height="15" fill="rgb(239,101,34)" fg:x="77550" fg:w="178"/><text x="14.8628%" y="607.50"></text></g><g><title>Parse::do_all_blocks (178 samples, 0.03%)</title><rect x="14.6128%" y="581" width="0.0335%" height="15" fill="rgb(226,209,5)" fg:x="77550" fg:w="178"/><text x="14.8628%" y="591.50"></text></g><g><title>Parse::do_one_block (178 samples, 0.03%)</title><rect x="14.6128%" y="565" width="0.0335%" height="15" fill="rgb(250,105,47)" fg:x="77550" fg:w="178"/><text x="14.8628%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (178 samples, 0.03%)</title><rect x="14.6128%" y="549" width="0.0335%" height="15" fill="rgb(230,72,3)" fg:x="77550" fg:w="178"/><text x="14.8628%" y="559.50"></text></g><g><title>ParseGenerator::generate (207 samples, 0.04%)</title><rect x="14.6128%" y="709" width="0.0390%" height="15" fill="rgb(232,218,39)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="719.50"></text></g><g><title>Parse::Parse (207 samples, 0.04%)</title><rect x="14.6128%" y="693" width="0.0390%" height="15" fill="rgb(248,166,6)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="703.50"></text></g><g><title>Parse::do_all_blocks (207 samples, 0.04%)</title><rect x="14.6128%" y="677" width="0.0390%" height="15" fill="rgb(247,89,20)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="687.50"></text></g><g><title>Parse::do_one_block (207 samples, 0.04%)</title><rect x="14.6128%" y="661" width="0.0390%" height="15" fill="rgb(248,130,54)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (207 samples, 0.04%)</title><rect x="14.6128%" y="645" width="0.0390%" height="15" fill="rgb(234,196,4)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="655.50"></text></g><g><title>Parse::do_call (207 samples, 0.04%)</title><rect x="14.6128%" y="629" width="0.0390%" height="15" fill="rgb(250,143,31)" fg:x="77550" fg:w="207"/><text x="14.8628%" y="639.50"></text></g><g><title>ParseGenerator::generate (223 samples, 0.04%)</title><rect x="14.6128%" y="805" width="0.0420%" height="15" fill="rgb(211,110,34)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="815.50"></text></g><g><title>Parse::Parse (223 samples, 0.04%)</title><rect x="14.6128%" y="789" width="0.0420%" height="15" fill="rgb(215,124,48)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="799.50"></text></g><g><title>Parse::do_all_blocks (223 samples, 0.04%)</title><rect x="14.6128%" y="773" width="0.0420%" height="15" fill="rgb(216,46,13)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="783.50"></text></g><g><title>Parse::do_one_block (223 samples, 0.04%)</title><rect x="14.6128%" y="757" width="0.0420%" height="15" fill="rgb(205,184,25)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (223 samples, 0.04%)</title><rect x="14.6128%" y="741" width="0.0420%" height="15" fill="rgb(228,1,10)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="751.50"></text></g><g><title>Parse::do_call (223 samples, 0.04%)</title><rect x="14.6128%" y="725" width="0.0420%" height="15" fill="rgb(213,116,27)" fg:x="77550" fg:w="223"/><text x="14.8628%" y="735.50"></text></g><g><title>Thread::call_run (72 samples, 0.01%)</title><rect x="14.6631%" y="805" width="0.0136%" height="15" fill="rgb(241,95,50)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="815.50"></text></g><g><title>JavaThread::thread_main_inner (72 samples, 0.01%)</title><rect x="14.6631%" y="789" width="0.0136%" height="15" fill="rgb(238,48,32)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (72 samples, 0.01%)</title><rect x="14.6631%" y="773" width="0.0136%" height="15" fill="rgb(235,113,49)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (72 samples, 0.01%)</title><rect x="14.6631%" y="757" width="0.0136%" height="15" fill="rgb(205,127,43)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="767.50"></text></g><g><title>C2Compiler::compile_method (72 samples, 0.01%)</title><rect x="14.6631%" y="741" width="0.0136%" height="15" fill="rgb(250,162,2)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="751.50"></text></g><g><title>Compile::Compile (72 samples, 0.01%)</title><rect x="14.6631%" y="725" width="0.0136%" height="15" fill="rgb(220,13,41)" fg:x="77817" fg:w="72"/><text x="14.9131%" y="735.50"></text></g><g><title>start_thread (81 samples, 0.02%)</title><rect x="14.6908%" y="805" width="0.0153%" height="15" fill="rgb(249,221,25)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="815.50"></text></g><g><title>thread_native_entry (81 samples, 0.02%)</title><rect x="14.6908%" y="789" width="0.0153%" height="15" fill="rgb(215,208,19)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="799.50"></text></g><g><title>Thread::call_run (81 samples, 0.02%)</title><rect x="14.6908%" y="773" width="0.0153%" height="15" fill="rgb(236,175,2)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (81 samples, 0.02%)</title><rect x="14.6908%" y="757" width="0.0153%" height="15" fill="rgb(241,52,2)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="767.50"></text></g><g><title>CompileBroker::compiler_thread_loop (81 samples, 0.02%)</title><rect x="14.6908%" y="741" width="0.0153%" height="15" fill="rgb(248,140,14)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (81 samples, 0.02%)</title><rect x="14.6908%" y="725" width="0.0153%" height="15" fill="rgb(253,22,42)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="735.50"></text></g><g><title>C2Compiler::compile_method (81 samples, 0.02%)</title><rect x="14.6908%" y="709" width="0.0153%" height="15" fill="rgb(234,61,47)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="719.50"></text></g><g><title>Compile::Compile (81 samples, 0.02%)</title><rect x="14.6908%" y="693" width="0.0153%" height="15" fill="rgb(208,226,15)" fg:x="77964" fg:w="81"/><text x="14.9408%" y="703.50"></text></g><g><title>[unknown] (62,472 samples, 11.77%)</title><rect x="2.9397%" y="821" width="11.7716%" height="15" fill="rgb(217,221,4)" fg:x="15601" fg:w="62472"/><text x="3.1897%" y="831.50">[unknown]</text></g><g><title>CompileWrapper::CompileWrapper (60 samples, 0.01%)</title><rect x="14.7360%" y="677" width="0.0113%" height="15" fill="rgb(212,174,34)" fg:x="78204" fg:w="60"/><text x="14.9860%" y="687.50"></text></g><g><title>Type::Initialize (58 samples, 0.01%)</title><rect x="14.7364%" y="661" width="0.0109%" height="15" fill="rgb(253,83,4)" fg:x="78206" fg:w="58"/><text x="14.9864%" y="671.50"></text></g><g><title>Compile::identify_useful_nodes (156 samples, 0.03%)</title><rect x="14.7573%" y="661" width="0.0294%" height="15" fill="rgb(250,195,49)" fg:x="78317" fg:w="156"/><text x="15.0073%" y="671.50"></text></g><g><title>Compile::remove_useless_nodes (173 samples, 0.03%)</title><rect x="14.7867%" y="661" width="0.0326%" height="15" fill="rgb(241,192,25)" fg:x="78473" fg:w="173"/><text x="15.0367%" y="671.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (407 samples, 0.08%)</title><rect x="14.7494%" y="677" width="0.0767%" height="15" fill="rgb(208,124,10)" fg:x="78275" fg:w="407"/><text x="14.9994%" y="687.50"></text></g><g><title>C2Compiler::compile_method (597 samples, 0.11%)</title><rect x="14.7213%" y="709" width="0.1125%" height="15" fill="rgb(222,33,0)" fg:x="78126" fg:w="597"/><text x="14.9713%" y="719.50"></text></g><g><title>Compile::Compile (585 samples, 0.11%)</title><rect x="14.7236%" y="693" width="0.1102%" height="15" fill="rgb(234,209,28)" fg:x="78138" fg:w="585"/><text x="14.9736%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (732 samples, 0.14%)</title><rect x="14.7204%" y="725" width="0.1379%" height="15" fill="rgb(224,11,23)" fg:x="78121" fg:w="732"/><text x="14.9704%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (140 samples, 0.03%)</title><rect x="14.8781%" y="469" width="0.0264%" height="15" fill="rgb(232,99,1)" fg:x="78958" fg:w="140"/><text x="15.1281%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (140 samples, 0.03%)</title><rect x="14.8781%" y="453" width="0.0264%" height="15" fill="rgb(237,95,45)" fg:x="78958" fg:w="140"/><text x="15.1281%" y="463.50"></text></g><g><title>native_write_msr (140 samples, 0.03%)</title><rect x="14.8781%" y="437" width="0.0264%" height="15" fill="rgb(208,109,11)" fg:x="78958" fg:w="140"/><text x="15.1281%" y="447.50"></text></g><g><title>finish_task_switch (145 samples, 0.03%)</title><rect x="14.8779%" y="485" width="0.0273%" height="15" fill="rgb(216,190,48)" fg:x="78957" fg:w="145"/><text x="15.1279%" y="495.50"></text></g><g><title>futex_wait_queue_me (185 samples, 0.03%)</title><rect x="14.8717%" y="533" width="0.0349%" height="15" fill="rgb(251,171,36)" fg:x="78924" fg:w="185"/><text x="15.1217%" y="543.50"></text></g><g><title>schedule (171 samples, 0.03%)</title><rect x="14.8743%" y="517" width="0.0322%" height="15" fill="rgb(230,62,22)" fg:x="78938" fg:w="171"/><text x="15.1243%" y="527.50"></text></g><g><title>__schedule (171 samples, 0.03%)</title><rect x="14.8743%" y="501" width="0.0322%" height="15" fill="rgb(225,114,35)" fg:x="78938" fg:w="171"/><text x="15.1243%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (198 samples, 0.04%)</title><rect x="14.8707%" y="613" width="0.0373%" height="15" fill="rgb(215,118,42)" fg:x="78919" fg:w="198"/><text x="15.1207%" y="623.50"></text></g><g><title>do_syscall_64 (198 samples, 0.04%)</title><rect x="14.8707%" y="597" width="0.0373%" height="15" fill="rgb(243,119,21)" fg:x="78919" fg:w="198"/><text x="15.1207%" y="607.50"></text></g><g><title>__x64_sys_futex (198 samples, 0.04%)</title><rect x="14.8707%" y="581" width="0.0373%" height="15" fill="rgb(252,177,53)" fg:x="78919" fg:w="198"/><text x="15.1207%" y="591.50"></text></g><g><title>do_futex (195 samples, 0.04%)</title><rect x="14.8713%" y="565" width="0.0367%" height="15" fill="rgb(237,209,29)" fg:x="78922" fg:w="195"/><text x="15.1213%" y="575.50"></text></g><g><title>futex_wait (195 samples, 0.04%)</title><rect x="14.8713%" y="549" width="0.0367%" height="15" fill="rgb(212,65,23)" fg:x="78922" fg:w="195"/><text x="15.1213%" y="559.50"></text></g><g><title>__pthread_cond_timedwait (211 samples, 0.04%)</title><rect x="14.8689%" y="661" width="0.0398%" height="15" fill="rgb(230,222,46)" fg:x="78909" fg:w="211"/><text x="15.1189%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (211 samples, 0.04%)</title><rect x="14.8689%" y="645" width="0.0398%" height="15" fill="rgb(215,135,32)" fg:x="78909" fg:w="211"/><text x="15.1189%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (208 samples, 0.04%)</title><rect x="14.8694%" y="629" width="0.0392%" height="15" fill="rgb(246,101,22)" fg:x="78912" fg:w="208"/><text x="15.1194%" y="639.50"></text></g><g><title>os::PlatformEvent::park (227 samples, 0.04%)</title><rect x="14.8683%" y="677" width="0.0428%" height="15" fill="rgb(206,107,13)" fg:x="78906" fg:w="227"/><text x="15.1183%" y="687.50"></text></g><g><title>Monitor::wait (263 samples, 0.05%)</title><rect x="14.8617%" y="709" width="0.0496%" height="15" fill="rgb(250,100,44)" fg:x="78871" fg:w="263"/><text x="15.1117%" y="719.50"></text></g><g><title>Monitor::IWait (258 samples, 0.05%)</title><rect x="14.8626%" y="693" width="0.0486%" height="15" fill="rgb(231,147,38)" fg:x="78876" fg:w="258"/><text x="15.1126%" y="703.50"></text></g><g><title>CompileQueue::get (309 samples, 0.06%)</title><rect x="14.8604%" y="725" width="0.0582%" height="15" fill="rgb(229,8,40)" fg:x="78864" fg:w="309"/><text x="15.1104%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,066 samples, 0.20%)</title><rect x="14.7181%" y="741" width="0.2009%" height="15" fill="rgb(221,135,30)" fg:x="78109" fg:w="1066"/><text x="14.9681%" y="751.50"></text></g><g><title>Thread::call_run (1,068 samples, 0.20%)</title><rect x="14.7179%" y="773" width="0.2012%" height="15" fill="rgb(249,193,18)" fg:x="78108" fg:w="1068"/><text x="14.9679%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (1,067 samples, 0.20%)</title><rect x="14.7181%" y="757" width="0.2011%" height="15" fill="rgb(209,133,39)" fg:x="78109" fg:w="1067"/><text x="14.9681%" y="767.50"></text></g><g><title>__GI___clone (1,099 samples, 0.21%)</title><rect x="14.7125%" y="821" width="0.2071%" height="15" fill="rgb(232,100,14)" fg:x="78079" fg:w="1099"/><text x="14.9625%" y="831.50"></text></g><g><title>start_thread (1,072 samples, 0.20%)</title><rect x="14.7175%" y="805" width="0.2020%" height="15" fill="rgb(224,185,1)" fg:x="78106" fg:w="1072"/><text x="14.9675%" y="815.50"></text></g><g><title>thread_native_entry (1,070 samples, 0.20%)</title><rect x="14.7179%" y="789" width="0.2016%" height="15" fill="rgb(223,139,8)" fg:x="78108" fg:w="1070"/><text x="14.9679%" y="799.50"></text></g><g><title>C2_CompilerThre (66,987 samples, 12.62%)</title><rect x="2.3162%" y="837" width="12.6224%" height="15" fill="rgb(232,213,38)" fg:x="12292" fg:w="66987"/><text x="2.5662%" y="847.50">C2_CompilerThre</text></g><g><title>[perf-925888.map] (89 samples, 0.02%)</title><rect x="14.9397%" y="821" width="0.0168%" height="15" fill="rgb(207,94,22)" fg:x="79285" fg:w="89"/><text x="15.1897%" y="831.50"></text></g><g><title>Command-Accumul (114 samples, 0.02%)</title><rect x="14.9386%" y="837" width="0.0215%" height="15" fill="rgb(219,183,54)" fg:x="79279" fg:w="114"/><text x="15.1886%" y="847.50"></text></g><g><title>update_curr (59 samples, 0.01%)</title><rect x="15.3940%" y="565" width="0.0111%" height="15" fill="rgb(216,185,54)" fg:x="81696" fg:w="59"/><text x="15.6440%" y="575.50"></text></g><g><title>dequeue_entity (133 samples, 0.03%)</title><rect x="15.3872%" y="581" width="0.0251%" height="15" fill="rgb(254,217,39)" fg:x="81660" fg:w="133"/><text x="15.6372%" y="591.50"></text></g><g><title>dequeue_task_fair (158 samples, 0.03%)</title><rect x="15.3831%" y="597" width="0.0298%" height="15" fill="rgb(240,178,23)" fg:x="81638" fg:w="158"/><text x="15.6331%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.01%)</title><rect x="15.4161%" y="581" width="0.0121%" height="15" fill="rgb(218,11,47)" fg:x="81813" fg:w="64"/><text x="15.6661%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (60 samples, 0.01%)</title><rect x="15.4168%" y="565" width="0.0113%" height="15" fill="rgb(218,51,51)" fg:x="81817" fg:w="60"/><text x="15.6668%" y="575.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="15.4170%" y="549" width="0.0111%" height="15" fill="rgb(238,126,27)" fg:x="81818" fg:w="59"/><text x="15.6670%" y="559.50"></text></g><g><title>finish_task_switch (87 samples, 0.02%)</title><rect x="15.4129%" y="597" width="0.0164%" height="15" fill="rgb(249,202,22)" fg:x="81796" fg:w="87"/><text x="15.6629%" y="607.50"></text></g><g><title>psi_task_change (96 samples, 0.02%)</title><rect x="15.4368%" y="597" width="0.0181%" height="15" fill="rgb(254,195,49)" fg:x="81923" fg:w="96"/><text x="15.6868%" y="607.50"></text></g><g><title>psi_group_change (75 samples, 0.01%)</title><rect x="15.4407%" y="581" width="0.0141%" height="15" fill="rgb(208,123,14)" fg:x="81944" fg:w="75"/><text x="15.6907%" y="591.50"></text></g><g><title>futex_wait_queue_me (526 samples, 0.10%)</title><rect x="15.3607%" y="645" width="0.0991%" height="15" fill="rgb(224,200,8)" fg:x="81519" fg:w="526"/><text x="15.6107%" y="655.50"></text></g><g><title>schedule (459 samples, 0.09%)</title><rect x="15.3733%" y="629" width="0.0865%" height="15" fill="rgb(217,61,36)" fg:x="81586" fg:w="459"/><text x="15.6233%" y="639.50"></text></g><g><title>__schedule (449 samples, 0.08%)</title><rect x="15.3752%" y="613" width="0.0846%" height="15" fill="rgb(206,35,45)" fg:x="81596" fg:w="449"/><text x="15.6252%" y="623.50"></text></g><g><title>do_futex (668 samples, 0.13%)</title><rect x="15.3510%" y="677" width="0.1259%" height="15" fill="rgb(217,65,33)" fg:x="81468" fg:w="668"/><text x="15.6010%" y="687.50"></text></g><g><title>futex_wait (655 samples, 0.12%)</title><rect x="15.3535%" y="661" width="0.1234%" height="15" fill="rgb(222,158,48)" fg:x="81481" fg:w="655"/><text x="15.6035%" y="671.50"></text></g><g><title>__x64_sys_futex (687 samples, 0.13%)</title><rect x="15.3503%" y="693" width="0.1295%" height="15" fill="rgb(254,2,54)" fg:x="81464" fg:w="687"/><text x="15.6003%" y="703.50"></text></g><g><title>do_syscall_64 (691 samples, 0.13%)</title><rect x="15.3499%" y="709" width="0.1302%" height="15" fill="rgb(250,143,38)" fg:x="81462" fg:w="691"/><text x="15.5999%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (724 samples, 0.14%)</title><rect x="15.3467%" y="725" width="0.1364%" height="15" fill="rgb(248,25,0)" fg:x="81445" fg:w="724"/><text x="15.5967%" y="735.50"></text></g><g><title>__pthread_cond_timedwait (845 samples, 0.16%)</title><rect x="15.3250%" y="773" width="0.1592%" height="15" fill="rgb(206,152,27)" fg:x="81330" fg:w="845"/><text x="15.5750%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (842 samples, 0.16%)</title><rect x="15.3256%" y="757" width="0.1587%" height="15" fill="rgb(240,77,30)" fg:x="81333" fg:w="842"/><text x="15.5756%" y="767.50"></text></g><g><title>futex_abstimed_wait_cancelable (778 samples, 0.15%)</title><rect x="15.3377%" y="741" width="0.1466%" height="15" fill="rgb(231,5,3)" fg:x="81397" fg:w="778"/><text x="15.5877%" y="751.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (87 samples, 0.02%)</title><rect x="15.4933%" y="773" width="0.0164%" height="15" fill="rgb(207,226,32)" fg:x="82223" fg:w="87"/><text x="15.7433%" y="783.50"></text></g><g><title>Parker::park (1,127 samples, 0.21%)</title><rect x="15.3041%" y="789" width="0.2124%" height="15" fill="rgb(222,207,47)" fg:x="81219" fg:w="1127"/><text x="15.5541%" y="799.50"></text></g><g><title>Unsafe_Park (1,183 samples, 0.22%)</title><rect x="15.2970%" y="805" width="0.2229%" height="15" fill="rgb(229,115,45)" fg:x="81181" fg:w="1183"/><text x="15.5470%" y="815.50"></text></g><g><title>[perf-925888.map] (2,904 samples, 0.55%)</title><rect x="14.9783%" y="821" width="0.5472%" height="15" fill="rgb(224,191,6)" fg:x="79490" fg:w="2904"/><text x="15.2283%" y="831.50"></text></g><g><title>ForkJoinPool.co (3,025 samples, 0.57%)</title><rect x="14.9687%" y="837" width="0.5700%" height="15" fill="rgb(230,227,24)" fg:x="79439" fg:w="3025"/><text x="15.2187%" y="847.50"></text></g><g><title>G1BlockOffsetTablePart::forward_to_block_containing_addr_slow (61 samples, 0.01%)</title><rect x="15.5694%" y="693" width="0.0115%" height="15" fill="rgb(228,80,19)" fg:x="82627" fg:w="61"/><text x="15.8194%" y="703.50"></text></g><g><title>OopOopIterateDispatch&lt;G1ConcurrentRefineOopClosure&gt;::Table::oop_oop_iterate&lt;InstanceKlass, unsigned int&gt; (76 samples, 0.01%)</title><rect x="15.5879%" y="693" width="0.0143%" height="15" fill="rgb(247,229,0)" fg:x="82725" fg:w="76"/><text x="15.8379%" y="703.50"></text></g><g><title>G1RemSet::refine_card_concurrently (245 samples, 0.05%)</title><rect x="15.5611%" y="709" width="0.0462%" height="15" fill="rgb(237,194,15)" fg:x="82583" fg:w="245"/><text x="15.8111%" y="719.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (249 samples, 0.05%)</title><rect x="15.5608%" y="725" width="0.0469%" height="15" fill="rgb(219,203,20)" fg:x="82581" fg:w="249"/><text x="15.8108%" y="735.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (268 samples, 0.05%)</title><rect x="15.5608%" y="741" width="0.0505%" height="15" fill="rgb(234,128,8)" fg:x="82581" fg:w="268"/><text x="15.8108%" y="751.50"></text></g><g><title>G1_Refine#0 (297 samples, 0.06%)</title><rect x="15.5583%" y="837" width="0.0560%" height="15" fill="rgb(248,202,8)" fg:x="82568" fg:w="297"/><text x="15.8083%" y="847.50"></text></g><g><title>__GI___clone (285 samples, 0.05%)</title><rect x="15.5606%" y="821" width="0.0537%" height="15" fill="rgb(206,104,37)" fg:x="82580" fg:w="285"/><text x="15.8106%" y="831.50"></text></g><g><title>start_thread (284 samples, 0.05%)</title><rect x="15.5608%" y="805" width="0.0535%" height="15" fill="rgb(223,8,27)" fg:x="82581" fg:w="284"/><text x="15.8108%" y="815.50"></text></g><g><title>thread_native_entry (284 samples, 0.05%)</title><rect x="15.5608%" y="789" width="0.0535%" height="15" fill="rgb(216,217,28)" fg:x="82581" fg:w="284"/><text x="15.8108%" y="799.50"></text></g><g><title>Thread::call_run (284 samples, 0.05%)</title><rect x="15.5608%" y="773" width="0.0535%" height="15" fill="rgb(249,199,1)" fg:x="82581" fg:w="284"/><text x="15.8108%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (284 samples, 0.05%)</title><rect x="15.5608%" y="757" width="0.0535%" height="15" fill="rgb(240,85,17)" fg:x="82581" fg:w="284"/><text x="15.8108%" y="767.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (101 samples, 0.02%)</title><rect x="15.6156%" y="725" width="0.0190%" height="15" fill="rgb(206,108,45)" fg:x="82872" fg:w="101"/><text x="15.8656%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (101 samples, 0.02%)</title><rect x="15.6156%" y="709" width="0.0190%" height="15" fill="rgb(245,210,41)" fg:x="82872" fg:w="101"/><text x="15.8656%" y="719.50"></text></g><g><title>G1_Refine#1 (117 samples, 0.02%)</title><rect x="15.6143%" y="837" width="0.0220%" height="15" fill="rgb(206,13,37)" fg:x="82865" fg:w="117"/><text x="15.8643%" y="847.50"></text></g><g><title>__GI___clone (111 samples, 0.02%)</title><rect x="15.6154%" y="821" width="0.0209%" height="15" fill="rgb(250,61,18)" fg:x="82871" fg:w="111"/><text x="15.8654%" y="831.50"></text></g><g><title>start_thread (110 samples, 0.02%)</title><rect x="15.6156%" y="805" width="0.0207%" height="15" fill="rgb(235,172,48)" fg:x="82872" fg:w="110"/><text x="15.8656%" y="815.50"></text></g><g><title>thread_native_entry (110 samples, 0.02%)</title><rect x="15.6156%" y="789" width="0.0207%" height="15" fill="rgb(249,201,17)" fg:x="82872" fg:w="110"/><text x="15.8656%" y="799.50"></text></g><g><title>Thread::call_run (110 samples, 0.02%)</title><rect x="15.6156%" y="773" width="0.0207%" height="15" fill="rgb(219,208,6)" fg:x="82872" fg:w="110"/><text x="15.8656%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (110 samples, 0.02%)</title><rect x="15.6156%" y="757" width="0.0207%" height="15" fill="rgb(248,31,23)" fg:x="82872" fg:w="110"/><text x="15.8656%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (110 samples, 0.02%)</title><rect x="15.6156%" y="741" width="0.0207%" height="15" fill="rgb(245,15,42)" fg:x="82872" fg:w="110"/><text x="15.8656%" y="751.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (82 samples, 0.02%)</title><rect x="15.6382%" y="725" width="0.0155%" height="15" fill="rgb(222,217,39)" fg:x="82992" fg:w="82"/><text x="15.8882%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (80 samples, 0.02%)</title><rect x="15.6386%" y="709" width="0.0151%" height="15" fill="rgb(210,219,27)" fg:x="82994" fg:w="80"/><text x="15.8886%" y="719.50"></text></g><g><title>Thread::call_run (90 samples, 0.02%)</title><rect x="15.6382%" y="773" width="0.0170%" height="15" fill="rgb(252,166,36)" fg:x="82992" fg:w="90"/><text x="15.8882%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (90 samples, 0.02%)</title><rect x="15.6382%" y="757" width="0.0170%" height="15" fill="rgb(245,132,34)" fg:x="82992" fg:w="90"/><text x="15.8882%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (90 samples, 0.02%)</title><rect x="15.6382%" y="741" width="0.0170%" height="15" fill="rgb(236,54,3)" fg:x="82992" fg:w="90"/><text x="15.8882%" y="751.50"></text></g><g><title>G1_Refine#2 (101 samples, 0.02%)</title><rect x="15.6363%" y="837" width="0.0190%" height="15" fill="rgb(241,173,43)" fg:x="82982" fg:w="101"/><text x="15.8863%" y="847.50"></text></g><g><title>__GI___clone (97 samples, 0.02%)</title><rect x="15.6371%" y="821" width="0.0183%" height="15" fill="rgb(215,190,9)" fg:x="82986" fg:w="97"/><text x="15.8871%" y="831.50"></text></g><g><title>start_thread (91 samples, 0.02%)</title><rect x="15.6382%" y="805" width="0.0171%" height="15" fill="rgb(242,101,16)" fg:x="82992" fg:w="91"/><text x="15.8882%" y="815.50"></text></g><g><title>thread_native_entry (91 samples, 0.02%)</title><rect x="15.6382%" y="789" width="0.0171%" height="15" fill="rgb(223,190,21)" fg:x="82992" fg:w="91"/><text x="15.8882%" y="799.50"></text></g><g><title>G1_Refine#3 (76 samples, 0.01%)</title><rect x="15.6554%" y="837" width="0.0143%" height="15" fill="rgb(215,228,25)" fg:x="83083" fg:w="76"/><text x="15.9054%" y="847.50"></text></g><g><title>__GI___clone (74 samples, 0.01%)</title><rect x="15.6557%" y="821" width="0.0139%" height="15" fill="rgb(225,36,22)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="831.50"></text></g><g><title>start_thread (74 samples, 0.01%)</title><rect x="15.6557%" y="805" width="0.0139%" height="15" fill="rgb(251,106,46)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="815.50"></text></g><g><title>thread_native_entry (74 samples, 0.01%)</title><rect x="15.6557%" y="789" width="0.0139%" height="15" fill="rgb(208,90,1)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="799.50"></text></g><g><title>Thread::call_run (74 samples, 0.01%)</title><rect x="15.6557%" y="773" width="0.0139%" height="15" fill="rgb(243,10,4)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (74 samples, 0.01%)</title><rect x="15.6557%" y="757" width="0.0139%" height="15" fill="rgb(212,137,27)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (74 samples, 0.01%)</title><rect x="15.6557%" y="741" width="0.0139%" height="15" fill="rgb(231,220,49)" fg:x="83085" fg:w="74"/><text x="15.9057%" y="751.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (92 samples, 0.02%)</title><rect x="15.6832%" y="709" width="0.0173%" height="15" fill="rgb(237,96,20)" fg:x="83231" fg:w="92"/><text x="15.9332%" y="719.50"></text></g><g><title>G1CollectionSet::iterate (95 samples, 0.02%)</title><rect x="15.6829%" y="725" width="0.0179%" height="15" fill="rgb(239,229,30)" fg:x="83229" fg:w="95"/><text x="15.9329%" y="735.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (128 samples, 0.02%)</title><rect x="15.6827%" y="741" width="0.0241%" height="15" fill="rgb(219,65,33)" fg:x="83228" fg:w="128"/><text x="15.9327%" y="751.50"></text></g><g><title>__GI___clone (136 samples, 0.03%)</title><rect x="15.6827%" y="821" width="0.0256%" height="15" fill="rgb(243,134,7)" fg:x="83228" fg:w="136"/><text x="15.9327%" y="831.50"></text></g><g><title>start_thread (136 samples, 0.03%)</title><rect x="15.6827%" y="805" width="0.0256%" height="15" fill="rgb(216,177,54)" fg:x="83228" fg:w="136"/><text x="15.9327%" y="815.50"></text></g><g><title>thread_native_entry (136 samples, 0.03%)</title><rect x="15.6827%" y="789" width="0.0256%" height="15" fill="rgb(211,160,20)" fg:x="83228" fg:w="136"/><text x="15.9327%" y="799.50"></text></g><g><title>Thread::call_run (136 samples, 0.03%)</title><rect x="15.6827%" y="773" width="0.0256%" height="15" fill="rgb(239,85,39)" fg:x="83228" fg:w="136"/><text x="15.9327%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (136 samples, 0.03%)</title><rect x="15.6827%" y="757" width="0.0256%" height="15" fill="rgb(232,125,22)" fg:x="83228" fg:w="136"/><text x="15.9327%" y="767.50"></text></g><g><title>G1_Young_RemSet (141 samples, 0.03%)</title><rect x="15.6821%" y="837" width="0.0266%" height="15" fill="rgb(244,57,34)" fg:x="83225" fg:w="141"/><text x="15.9321%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (102 samples, 0.02%)</title><rect x="15.7420%" y="693" width="0.0192%" height="15" fill="rgb(214,203,32)" fg:x="83543" fg:w="102"/><text x="15.9920%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (232 samples, 0.04%)</title><rect x="15.7185%" y="709" width="0.0437%" height="15" fill="rgb(207,58,43)" fg:x="83418" fg:w="232"/><text x="15.9685%" y="719.50"></text></g><g><title>SpinPause (69 samples, 0.01%)</title><rect x="15.7639%" y="709" width="0.0130%" height="15" fill="rgb(215,193,15)" fg:x="83659" fg:w="69"/><text x="16.0139%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (337 samples, 0.06%)</title><rect x="15.7145%" y="725" width="0.0635%" height="15" fill="rgb(232,15,44)" fg:x="83397" fg:w="337"/><text x="15.9645%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (138 samples, 0.03%)</title><rect x="15.7842%" y="629" width="0.0260%" height="15" fill="rgb(212,3,48)" fg:x="83767" fg:w="138"/><text x="16.0342%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (97 samples, 0.02%)</title><rect x="15.7920%" y="613" width="0.0183%" height="15" fill="rgb(218,128,7)" fg:x="83808" fg:w="97"/><text x="16.0420%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (177 samples, 0.03%)</title><rect x="15.7782%" y="645" width="0.0334%" height="15" fill="rgb(226,216,39)" fg:x="83735" fg:w="177"/><text x="16.0282%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (203 samples, 0.04%)</title><rect x="15.7782%" y="693" width="0.0383%" height="15" fill="rgb(243,47,51)" fg:x="83735" fg:w="203"/><text x="16.0282%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (203 samples, 0.04%)</title><rect x="15.7782%" y="677" width="0.0383%" height="15" fill="rgb(241,183,40)" fg:x="83735" fg:w="203"/><text x="16.0282%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (203 samples, 0.04%)</title><rect x="15.7782%" y="661" width="0.0383%" height="15" fill="rgb(231,217,32)" fg:x="83735" fg:w="203"/><text x="16.0282%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (254 samples, 0.05%)</title><rect x="15.7782%" y="725" width="0.0479%" height="15" fill="rgb(229,61,38)" fg:x="83735" fg:w="254"/><text x="16.0282%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (254 samples, 0.05%)</title><rect x="15.7782%" y="709" width="0.0479%" height="15" fill="rgb(225,210,5)" fg:x="83735" fg:w="254"/><text x="16.0282%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (99 samples, 0.02%)</title><rect x="15.8319%" y="629" width="0.0187%" height="15" fill="rgb(231,79,45)" fg:x="84020" fg:w="99"/><text x="16.0819%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (74 samples, 0.01%)</title><rect x="15.8366%" y="613" width="0.0139%" height="15" fill="rgb(224,100,7)" fg:x="84045" fg:w="74"/><text x="16.0866%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (135 samples, 0.03%)</title><rect x="15.8263%" y="645" width="0.0254%" height="15" fill="rgb(241,198,18)" fg:x="83990" fg:w="135"/><text x="16.0763%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (207 samples, 0.04%)</title><rect x="15.8263%" y="661" width="0.0390%" height="15" fill="rgb(252,97,53)" fg:x="83990" fg:w="207"/><text x="16.0763%" y="671.50"></text></g><g><title>HeapRegion::oops_on_card_seq_iterate_careful&lt;true, G1ScanObjsDuringScanRSClosure&gt; (72 samples, 0.01%)</title><rect x="15.8517%" y="645" width="0.0136%" height="15" fill="rgb(220,88,7)" fg:x="84125" fg:w="72"/><text x="16.1017%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (213 samples, 0.04%)</title><rect x="15.8261%" y="677" width="0.0401%" height="15" fill="rgb(213,176,14)" fg:x="83989" fg:w="213"/><text x="16.0761%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (233 samples, 0.04%)</title><rect x="15.8261%" y="725" width="0.0439%" height="15" fill="rgb(246,73,7)" fg:x="83989" fg:w="233"/><text x="16.0761%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (233 samples, 0.04%)</title><rect x="15.8261%" y="709" width="0.0439%" height="15" fill="rgb(245,64,36)" fg:x="83989" fg:w="233"/><text x="16.0761%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (233 samples, 0.04%)</title><rect x="15.8261%" y="693" width="0.0439%" height="15" fill="rgb(245,80,10)" fg:x="83989" fg:w="233"/><text x="16.0761%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (107 samples, 0.02%)</title><rect x="15.8700%" y="709" width="0.0202%" height="15" fill="rgb(232,107,50)" fg:x="84222" fg:w="107"/><text x="16.1200%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (103 samples, 0.02%)</title><rect x="15.8707%" y="693" width="0.0194%" height="15" fill="rgb(253,3,0)" fg:x="84226" fg:w="103"/><text x="16.1207%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (103 samples, 0.02%)</title><rect x="15.8707%" y="677" width="0.0194%" height="15" fill="rgb(212,99,53)" fg:x="84226" fg:w="103"/><text x="16.1207%" y="687.50"></text></g><g><title>JavaThread::oops_do (103 samples, 0.02%)</title><rect x="15.8707%" y="661" width="0.0194%" height="15" fill="rgb(249,111,54)" fg:x="84226" fg:w="103"/><text x="16.1207%" y="671.50"></text></g><g><title>G1ParTask::work (946 samples, 0.18%)</title><rect x="15.7145%" y="741" width="0.1783%" height="15" fill="rgb(249,55,30)" fg:x="83397" fg:w="946"/><text x="15.9645%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (121 samples, 0.02%)</title><rect x="15.8700%" y="725" width="0.0228%" height="15" fill="rgb(237,47,42)" fg:x="84222" fg:w="121"/><text x="16.1200%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (58 samples, 0.01%)</title><rect x="15.8949%" y="741" width="0.0109%" height="15" fill="rgb(211,20,18)" fg:x="84354" fg:w="58"/><text x="16.1449%" y="751.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="15.9129%" y="645" width="0.0106%" height="15" fill="rgb(231,203,46)" fg:x="84450" fg:w="56"/><text x="16.1629%" y="655.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="15.9129%" y="629" width="0.0106%" height="15" fill="rgb(237,142,3)" fg:x="84450" fg:w="56"/><text x="16.1629%" y="639.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="15.9129%" y="613" width="0.0106%" height="15" fill="rgb(241,107,1)" fg:x="84450" fg:w="56"/><text x="16.1629%" y="623.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="15.9129%" y="597" width="0.0106%" height="15" fill="rgb(229,83,13)" fg:x="84450" fg:w="56"/><text x="16.1629%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="15.9129%" y="661" width="0.0113%" height="15" fill="rgb(241,91,40)" fg:x="84450" fg:w="60"/><text x="16.1629%" y="671.50"></text></g><g><title>__GI___clone (1,116 samples, 0.21%)</title><rect x="15.7142%" y="821" width="0.2103%" height="15" fill="rgb(225,3,45)" fg:x="83395" fg:w="1116"/><text x="15.9642%" y="831.50"></text></g><g><title>start_thread (1,116 samples, 0.21%)</title><rect x="15.7142%" y="805" width="0.2103%" height="15" fill="rgb(244,223,14)" fg:x="83395" fg:w="1116"/><text x="15.9642%" y="815.50"></text></g><g><title>thread_native_entry (1,116 samples, 0.21%)</title><rect x="15.7142%" y="789" width="0.2103%" height="15" fill="rgb(224,124,37)" fg:x="83395" fg:w="1116"/><text x="15.9642%" y="799.50"></text></g><g><title>Thread::call_run (1,116 samples, 0.21%)</title><rect x="15.7142%" y="773" width="0.2103%" height="15" fill="rgb(251,171,30)" fg:x="83395" fg:w="1116"/><text x="15.9642%" y="783.50"></text></g><g><title>GangWorker::loop (1,116 samples, 0.21%)</title><rect x="15.7142%" y="757" width="0.2103%" height="15" fill="rgb(236,46,54)" fg:x="83395" fg:w="1116"/><text x="15.9642%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (62 samples, 0.01%)</title><rect x="15.9128%" y="741" width="0.0117%" height="15" fill="rgb(245,213,5)" fg:x="84449" fg:w="62"/><text x="16.1628%" y="751.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.01%)</title><rect x="15.9128%" y="725" width="0.0117%" height="15" fill="rgb(230,144,27)" fg:x="84449" fg:w="62"/><text x="16.1628%" y="735.50"></text></g><g><title>__new_sem_wait_slow (62 samples, 0.01%)</title><rect x="15.9128%" y="709" width="0.0117%" height="15" fill="rgb(220,86,6)" fg:x="84449" fg:w="62"/><text x="16.1628%" y="719.50"></text></g><g><title>do_futex_wait (61 samples, 0.01%)</title><rect x="15.9129%" y="693" width="0.0115%" height="15" fill="rgb(240,20,13)" fg:x="84450" fg:w="61"/><text x="16.1629%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (61 samples, 0.01%)</title><rect x="15.9129%" y="677" width="0.0115%" height="15" fill="rgb(217,89,34)" fg:x="84450" fg:w="61"/><text x="16.1629%" y="687.50"></text></g><g><title>GC_Thread#0 (1,147 samples, 0.22%)</title><rect x="15.7087%" y="837" width="0.2161%" height="15" fill="rgb(229,13,5)" fg:x="83366" fg:w="1147"/><text x="15.9587%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (107 samples, 0.02%)</title><rect x="15.9555%" y="693" width="0.0202%" height="15" fill="rgb(244,67,35)" fg:x="84676" fg:w="107"/><text x="16.2055%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (199 samples, 0.04%)</title><rect x="15.9386%" y="709" width="0.0375%" height="15" fill="rgb(221,40,2)" fg:x="84586" fg:w="199"/><text x="16.1886%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (270 samples, 0.05%)</title><rect x="15.9369%" y="725" width="0.0509%" height="15" fill="rgb(237,157,21)" fg:x="84577" fg:w="270"/><text x="16.1869%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (78 samples, 0.01%)</title><rect x="15.9981%" y="613" width="0.0147%" height="15" fill="rgb(222,94,11)" fg:x="84902" fg:w="78"/><text x="16.2481%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (115 samples, 0.02%)</title><rect x="15.9913%" y="629" width="0.0217%" height="15" fill="rgb(249,113,6)" fg:x="84866" fg:w="115"/><text x="16.2413%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (134 samples, 0.03%)</title><rect x="15.9883%" y="645" width="0.0252%" height="15" fill="rgb(238,137,36)" fg:x="84850" fg:w="134"/><text x="16.2383%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (173 samples, 0.03%)</title><rect x="15.9881%" y="693" width="0.0326%" height="15" fill="rgb(210,102,26)" fg:x="84849" fg:w="173"/><text x="16.2381%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (173 samples, 0.03%)</title><rect x="15.9881%" y="677" width="0.0326%" height="15" fill="rgb(218,30,30)" fg:x="84849" fg:w="173"/><text x="16.2381%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (172 samples, 0.03%)</title><rect x="15.9883%" y="661" width="0.0324%" height="15" fill="rgb(214,67,26)" fg:x="84850" fg:w="172"/><text x="16.2383%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (200 samples, 0.04%)</title><rect x="15.9879%" y="725" width="0.0377%" height="15" fill="rgb(251,9,53)" fg:x="84848" fg:w="200"/><text x="16.2379%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (200 samples, 0.04%)</title><rect x="15.9879%" y="709" width="0.0377%" height="15" fill="rgb(228,204,25)" fg:x="84848" fg:w="200"/><text x="16.2379%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (86 samples, 0.02%)</title><rect x="16.0362%" y="613" width="0.0162%" height="15" fill="rgb(207,153,8)" fg:x="85104" fg:w="86"/><text x="16.2862%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (112 samples, 0.02%)</title><rect x="16.0315%" y="629" width="0.0211%" height="15" fill="rgb(242,9,16)" fg:x="85079" fg:w="112"/><text x="16.2815%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (145 samples, 0.03%)</title><rect x="16.0266%" y="645" width="0.0273%" height="15" fill="rgb(217,211,10)" fg:x="85053" fg:w="145"/><text x="16.2766%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (218 samples, 0.04%)</title><rect x="16.0262%" y="661" width="0.0411%" height="15" fill="rgb(219,228,52)" fg:x="85051" fg:w="218"/><text x="16.2762%" y="671.50"></text></g><g><title>HeapRegion::oops_on_card_seq_iterate_careful&lt;true, G1ScanObjsDuringScanRSClosure&gt; (71 samples, 0.01%)</title><rect x="16.0539%" y="645" width="0.0134%" height="15" fill="rgb(231,92,29)" fg:x="85198" fg:w="71"/><text x="16.3039%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (232 samples, 0.04%)</title><rect x="16.0258%" y="677" width="0.0437%" height="15" fill="rgb(232,8,23)" fg:x="85049" fg:w="232"/><text x="16.2758%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (243 samples, 0.05%)</title><rect x="16.0256%" y="725" width="0.0458%" height="15" fill="rgb(216,211,34)" fg:x="85048" fg:w="243"/><text x="16.2756%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (243 samples, 0.05%)</title><rect x="16.0256%" y="709" width="0.0458%" height="15" fill="rgb(236,151,0)" fg:x="85048" fg:w="243"/><text x="16.2756%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (243 samples, 0.05%)</title><rect x="16.0256%" y="693" width="0.0458%" height="15" fill="rgb(209,168,3)" fg:x="85048" fg:w="243"/><text x="16.2756%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (63 samples, 0.01%)</title><rect x="16.0724%" y="693" width="0.0119%" height="15" fill="rgb(208,129,28)" fg:x="85296" fg:w="63"/><text x="16.3224%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (63 samples, 0.01%)</title><rect x="16.0724%" y="677" width="0.0119%" height="15" fill="rgb(229,78,22)" fg:x="85296" fg:w="63"/><text x="16.3224%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (63 samples, 0.01%)</title><rect x="16.0724%" y="661" width="0.0119%" height="15" fill="rgb(228,187,13)" fg:x="85296" fg:w="63"/><text x="16.3224%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (133 samples, 0.03%)</title><rect x="16.0724%" y="709" width="0.0251%" height="15" fill="rgb(240,119,24)" fg:x="85296" fg:w="133"/><text x="16.3224%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (70 samples, 0.01%)</title><rect x="16.0842%" y="693" width="0.0132%" height="15" fill="rgb(209,194,42)" fg:x="85359" fg:w="70"/><text x="16.3342%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (70 samples, 0.01%)</title><rect x="16.0842%" y="677" width="0.0132%" height="15" fill="rgb(247,200,46)" fg:x="85359" fg:w="70"/><text x="16.3342%" y="687.50"></text></g><g><title>JavaThread::oops_do (69 samples, 0.01%)</title><rect x="16.0844%" y="661" width="0.0130%" height="15" fill="rgb(218,76,16)" fg:x="85360" fg:w="69"/><text x="16.3344%" y="671.50"></text></g><g><title>G1ParTask::work (891 samples, 0.17%)</title><rect x="15.9369%" y="741" width="0.1679%" height="15" fill="rgb(225,21,48)" fg:x="84577" fg:w="891"/><text x="16.1869%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (177 samples, 0.03%)</title><rect x="16.0714%" y="725" width="0.0334%" height="15" fill="rgb(239,223,50)" fg:x="85291" fg:w="177"/><text x="16.3214%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (76 samples, 0.01%)</title><rect x="16.1070%" y="741" width="0.0143%" height="15" fill="rgb(244,45,21)" fg:x="85480" fg:w="76"/><text x="16.3570%" y="751.50"></text></g><g><title>do_syscall_64 (64 samples, 0.01%)</title><rect x="16.1289%" y="645" width="0.0121%" height="15" fill="rgb(232,33,43)" fg:x="85596" fg:w="64"/><text x="16.3789%" y="655.50"></text></g><g><title>__x64_sys_futex (63 samples, 0.01%)</title><rect x="16.1291%" y="629" width="0.0119%" height="15" fill="rgb(209,8,3)" fg:x="85597" fg:w="63"/><text x="16.3791%" y="639.50"></text></g><g><title>do_futex (63 samples, 0.01%)</title><rect x="16.1291%" y="613" width="0.0119%" height="15" fill="rgb(214,25,53)" fg:x="85597" fg:w="63"/><text x="16.3791%" y="623.50"></text></g><g><title>futex_wait (63 samples, 0.01%)</title><rect x="16.1291%" y="597" width="0.0119%" height="15" fill="rgb(254,186,54)" fg:x="85597" fg:w="63"/><text x="16.3791%" y="607.50"></text></g><g><title>futex_wait_queue_me (62 samples, 0.01%)</title><rect x="16.1293%" y="581" width="0.0117%" height="15" fill="rgb(208,174,49)" fg:x="85598" fg:w="62"/><text x="16.3793%" y="591.50"></text></g><g><title>schedule (61 samples, 0.01%)</title><rect x="16.1295%" y="565" width="0.0115%" height="15" fill="rgb(233,191,51)" fg:x="85599" fg:w="61"/><text x="16.3795%" y="575.50"></text></g><g><title>__schedule (61 samples, 0.01%)</title><rect x="16.1295%" y="549" width="0.0115%" height="15" fill="rgb(222,134,10)" fg:x="85599" fg:w="61"/><text x="16.3795%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="16.1289%" y="661" width="0.0122%" height="15" fill="rgb(230,226,20)" fg:x="85596" fg:w="65"/><text x="16.3789%" y="671.50"></text></g><g><title>__GI___clone (1,119 samples, 0.21%)</title><rect x="15.9305%" y="821" width="0.2109%" height="15" fill="rgb(251,111,25)" fg:x="84543" fg:w="1119"/><text x="16.1805%" y="831.50"></text></g><g><title>start_thread (1,119 samples, 0.21%)</title><rect x="15.9305%" y="805" width="0.2109%" height="15" fill="rgb(224,40,46)" fg:x="84543" fg:w="1119"/><text x="16.1805%" y="815.50"></text></g><g><title>thread_native_entry (1,119 samples, 0.21%)</title><rect x="15.9305%" y="789" width="0.2109%" height="15" fill="rgb(236,108,47)" fg:x="84543" fg:w="1119"/><text x="16.1805%" y="799.50"></text></g><g><title>Thread::call_run (1,119 samples, 0.21%)</title><rect x="15.9305%" y="773" width="0.2109%" height="15" fill="rgb(234,93,0)" fg:x="84543" fg:w="1119"/><text x="16.1805%" y="783.50"></text></g><g><title>GangWorker::loop (1,119 samples, 0.21%)</title><rect x="15.9305%" y="757" width="0.2109%" height="15" fill="rgb(224,213,32)" fg:x="84543" fg:w="1119"/><text x="16.1805%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (66 samples, 0.01%)</title><rect x="16.1289%" y="741" width="0.0124%" height="15" fill="rgb(251,11,48)" fg:x="85596" fg:w="66"/><text x="16.3789%" y="751.50"></text></g><g><title>PosixSemaphore::wait (66 samples, 0.01%)</title><rect x="16.1289%" y="725" width="0.0124%" height="15" fill="rgb(236,173,5)" fg:x="85596" fg:w="66"/><text x="16.3789%" y="735.50"></text></g><g><title>__new_sem_wait_slow (66 samples, 0.01%)</title><rect x="16.1289%" y="709" width="0.0124%" height="15" fill="rgb(230,95,12)" fg:x="85596" fg:w="66"/><text x="16.3789%" y="719.50"></text></g><g><title>do_futex_wait (66 samples, 0.01%)</title><rect x="16.1289%" y="693" width="0.0124%" height="15" fill="rgb(232,209,1)" fg:x="85596" fg:w="66"/><text x="16.3789%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (66 samples, 0.01%)</title><rect x="16.1289%" y="677" width="0.0124%" height="15" fill="rgb(232,6,1)" fg:x="85596" fg:w="66"/><text x="16.3789%" y="687.50"></text></g><g><title>GC_Thread#1 (1,152 samples, 0.22%)</title><rect x="15.9248%" y="837" width="0.2171%" height="15" fill="rgb(210,224,50)" fg:x="84513" fg:w="1152"/><text x="16.1748%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (89 samples, 0.02%)</title><rect x="16.1626%" y="693" width="0.0168%" height="15" fill="rgb(228,127,35)" fg:x="85775" fg:w="89"/><text x="16.4126%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (160 samples, 0.03%)</title><rect x="16.1500%" y="709" width="0.0301%" height="15" fill="rgb(245,102,45)" fg:x="85708" fg:w="160"/><text x="16.4000%" y="719.50"></text></g><g><title>SpinPause (56 samples, 0.01%)</title><rect x="16.1811%" y="709" width="0.0106%" height="15" fill="rgb(214,1,49)" fg:x="85873" fg:w="56"/><text x="16.4311%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (242 samples, 0.05%)</title><rect x="16.1477%" y="725" width="0.0456%" height="15" fill="rgb(226,163,40)" fg:x="85696" fg:w="242"/><text x="16.3977%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (105 samples, 0.02%)</title><rect x="16.2095%" y="613" width="0.0198%" height="15" fill="rgb(239,212,28)" fg:x="86024" fg:w="105"/><text x="16.4595%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (157 samples, 0.03%)</title><rect x="16.1999%" y="629" width="0.0296%" height="15" fill="rgb(220,20,13)" fg:x="85973" fg:w="157"/><text x="16.4499%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (194 samples, 0.04%)</title><rect x="16.1935%" y="645" width="0.0366%" height="15" fill="rgb(210,164,35)" fg:x="85939" fg:w="194"/><text x="16.4435%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (218 samples, 0.04%)</title><rect x="16.1935%" y="693" width="0.0411%" height="15" fill="rgb(248,109,41)" fg:x="85939" fg:w="218"/><text x="16.4435%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (218 samples, 0.04%)</title><rect x="16.1935%" y="677" width="0.0411%" height="15" fill="rgb(238,23,50)" fg:x="85939" fg:w="218"/><text x="16.4435%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (218 samples, 0.04%)</title><rect x="16.1935%" y="661" width="0.0411%" height="15" fill="rgb(211,48,49)" fg:x="85939" fg:w="218"/><text x="16.4435%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (240 samples, 0.05%)</title><rect x="16.1935%" y="725" width="0.0452%" height="15" fill="rgb(223,36,21)" fg:x="85939" fg:w="240"/><text x="16.4435%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (240 samples, 0.05%)</title><rect x="16.1935%" y="709" width="0.0452%" height="15" fill="rgb(207,123,46)" fg:x="85939" fg:w="240"/><text x="16.4435%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.01%)</title><rect x="16.2389%" y="645" width="0.0107%" height="15" fill="rgb(240,218,32)" fg:x="86180" fg:w="57"/><text x="16.4889%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (88 samples, 0.02%)</title><rect x="16.2389%" y="661" width="0.0166%" height="15" fill="rgb(252,5,43)" fg:x="86180" fg:w="88"/><text x="16.4889%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (93 samples, 0.02%)</title><rect x="16.2389%" y="677" width="0.0175%" height="15" fill="rgb(252,84,19)" fg:x="86180" fg:w="93"/><text x="16.4889%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (104 samples, 0.02%)</title><rect x="16.2387%" y="725" width="0.0196%" height="15" fill="rgb(243,152,39)" fg:x="86179" fg:w="104"/><text x="16.4887%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (104 samples, 0.02%)</title><rect x="16.2387%" y="709" width="0.0196%" height="15" fill="rgb(234,160,15)" fg:x="86179" fg:w="104"/><text x="16.4887%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (103 samples, 0.02%)</title><rect x="16.2389%" y="693" width="0.0194%" height="15" fill="rgb(237,34,20)" fg:x="86180" fg:w="103"/><text x="16.4889%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (136 samples, 0.03%)</title><rect x="16.2712%" y="629" width="0.0256%" height="15" fill="rgb(229,97,13)" fg:x="86351" fg:w="136"/><text x="16.5212%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (91 samples, 0.02%)</title><rect x="16.2796%" y="613" width="0.0171%" height="15" fill="rgb(234,71,50)" fg:x="86396" fg:w="91"/><text x="16.5296%" y="623.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (207 samples, 0.04%)</title><rect x="16.2585%" y="693" width="0.0390%" height="15" fill="rgb(253,155,4)" fg:x="86284" fg:w="207"/><text x="16.5085%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (202 samples, 0.04%)</title><rect x="16.2595%" y="677" width="0.0381%" height="15" fill="rgb(222,185,37)" fg:x="86289" fg:w="202"/><text x="16.5095%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (202 samples, 0.04%)</title><rect x="16.2595%" y="661" width="0.0381%" height="15" fill="rgb(251,177,13)" fg:x="86289" fg:w="202"/><text x="16.5095%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (179 samples, 0.03%)</title><rect x="16.2638%" y="645" width="0.0337%" height="15" fill="rgb(250,179,40)" fg:x="86312" fg:w="179"/><text x="16.5138%" y="655.50"></text></g><g><title>frame::oops_do_internal (76 samples, 0.01%)</title><rect x="16.3011%" y="645" width="0.0143%" height="15" fill="rgb(242,44,2)" fg:x="86510" fg:w="76"/><text x="16.5511%" y="655.50"></text></g><g><title>OopMapSet::oops_do (76 samples, 0.01%)</title><rect x="16.3011%" y="629" width="0.0143%" height="15" fill="rgb(216,177,13)" fg:x="86510" fg:w="76"/><text x="16.5511%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (68 samples, 0.01%)</title><rect x="16.3026%" y="613" width="0.0128%" height="15" fill="rgb(216,106,43)" fg:x="86518" fg:w="68"/><text x="16.5526%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (329 samples, 0.06%)</title><rect x="16.2585%" y="709" width="0.0620%" height="15" fill="rgb(216,183,2)" fg:x="86284" fg:w="329"/><text x="16.5085%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (122 samples, 0.02%)</title><rect x="16.2975%" y="693" width="0.0230%" height="15" fill="rgb(249,75,3)" fg:x="86491" fg:w="122"/><text x="16.5475%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (122 samples, 0.02%)</title><rect x="16.2975%" y="677" width="0.0230%" height="15" fill="rgb(219,67,39)" fg:x="86491" fg:w="122"/><text x="16.5475%" y="687.50"></text></g><g><title>JavaThread::oops_do (122 samples, 0.02%)</title><rect x="16.2975%" y="661" width="0.0230%" height="15" fill="rgb(253,228,2)" fg:x="86491" fg:w="122"/><text x="16.5475%" y="671.50"></text></g><g><title>G1RootProcessor::evacuate_roots (342 samples, 0.06%)</title><rect x="16.2583%" y="725" width="0.0644%" height="15" fill="rgb(235,138,27)" fg:x="86283" fg:w="342"/><text x="16.5083%" y="735.50"></text></g><g><title>G1ParTask::work (930 samples, 0.18%)</title><rect x="16.1477%" y="741" width="0.1752%" height="15" fill="rgb(236,97,51)" fg:x="85696" fg:w="930"/><text x="16.3977%" y="751.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (61 samples, 0.01%)</title><rect x="16.3249%" y="709" width="0.0115%" height="15" fill="rgb(240,80,30)" fg:x="86636" fg:w="61"/><text x="16.5749%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (72 samples, 0.01%)</title><rect x="16.3249%" y="725" width="0.0136%" height="15" fill="rgb(230,178,19)" fg:x="86636" fg:w="72"/><text x="16.5749%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (85 samples, 0.02%)</title><rect x="16.3249%" y="741" width="0.0160%" height="15" fill="rgb(210,190,27)" fg:x="86636" fg:w="85"/><text x="16.5749%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="16.3516%" y="517" width="0.0117%" height="15" fill="rgb(222,107,31)" fg:x="86778" fg:w="62"/><text x="16.6016%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="16.3516%" y="501" width="0.0117%" height="15" fill="rgb(216,127,34)" fg:x="86778" fg:w="62"/><text x="16.6016%" y="511.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="16.3516%" y="485" width="0.0117%" height="15" fill="rgb(234,116,52)" fg:x="86778" fg:w="62"/><text x="16.6016%" y="495.50"></text></g><g><title>finish_task_switch (65 samples, 0.01%)</title><rect x="16.3512%" y="533" width="0.0122%" height="15" fill="rgb(222,124,15)" fg:x="86776" fg:w="65"/><text x="16.6012%" y="543.50"></text></g><g><title>futex_wait_queue_me (77 samples, 0.01%)</title><rect x="16.3499%" y="581" width="0.0145%" height="15" fill="rgb(231,179,28)" fg:x="86769" fg:w="77"/><text x="16.5999%" y="591.50"></text></g><g><title>schedule (74 samples, 0.01%)</title><rect x="16.3505%" y="565" width="0.0139%" height="15" fill="rgb(226,93,45)" fg:x="86772" fg:w="74"/><text x="16.6005%" y="575.50"></text></g><g><title>__schedule (74 samples, 0.01%)</title><rect x="16.3505%" y="549" width="0.0139%" height="15" fill="rgb(215,8,51)" fg:x="86772" fg:w="74"/><text x="16.6005%" y="559.50"></text></g><g><title>do_syscall_64 (82 samples, 0.02%)</title><rect x="16.3492%" y="645" width="0.0155%" height="15" fill="rgb(223,106,5)" fg:x="86765" fg:w="82"/><text x="16.5992%" y="655.50"></text></g><g><title>__x64_sys_futex (81 samples, 0.02%)</title><rect x="16.3493%" y="629" width="0.0153%" height="15" fill="rgb(250,191,5)" fg:x="86766" fg:w="81"/><text x="16.5993%" y="639.50"></text></g><g><title>do_futex (81 samples, 0.02%)</title><rect x="16.3493%" y="613" width="0.0153%" height="15" fill="rgb(242,132,44)" fg:x="86766" fg:w="81"/><text x="16.5993%" y="623.50"></text></g><g><title>futex_wait (79 samples, 0.01%)</title><rect x="16.3497%" y="597" width="0.0149%" height="15" fill="rgb(251,152,29)" fg:x="86768" fg:w="79"/><text x="16.5997%" y="607.50"></text></g><g><title>__GI___clone (1,166 samples, 0.22%)</title><rect x="16.1453%" y="821" width="0.2197%" height="15" fill="rgb(218,179,5)" fg:x="85683" fg:w="1166"/><text x="16.3953%" y="831.50"></text></g><g><title>start_thread (1,166 samples, 0.22%)</title><rect x="16.1453%" y="805" width="0.2197%" height="15" fill="rgb(227,67,19)" fg:x="85683" fg:w="1166"/><text x="16.3953%" y="815.50"></text></g><g><title>thread_native_entry (1,166 samples, 0.22%)</title><rect x="16.1453%" y="789" width="0.2197%" height="15" fill="rgb(233,119,31)" fg:x="85683" fg:w="1166"/><text x="16.3953%" y="799.50"></text></g><g><title>Thread::call_run (1,166 samples, 0.22%)</title><rect x="16.1453%" y="773" width="0.2197%" height="15" fill="rgb(241,120,22)" fg:x="85683" fg:w="1166"/><text x="16.3953%" y="783.50"></text></g><g><title>GangWorker::loop (1,166 samples, 0.22%)</title><rect x="16.1453%" y="757" width="0.2197%" height="15" fill="rgb(224,102,30)" fg:x="85683" fg:w="1166"/><text x="16.3953%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (87 samples, 0.02%)</title><rect x="16.3486%" y="741" width="0.0164%" height="15" fill="rgb(210,164,37)" fg:x="86762" fg:w="87"/><text x="16.5986%" y="751.50"></text></g><g><title>PosixSemaphore::wait (87 samples, 0.02%)</title><rect x="16.3486%" y="725" width="0.0164%" height="15" fill="rgb(226,191,16)" fg:x="86762" fg:w="87"/><text x="16.5986%" y="735.50"></text></g><g><title>__new_sem_wait_slow (87 samples, 0.02%)</title><rect x="16.3486%" y="709" width="0.0164%" height="15" fill="rgb(214,40,45)" fg:x="86762" fg:w="87"/><text x="16.5986%" y="719.50"></text></g><g><title>do_futex_wait (86 samples, 0.02%)</title><rect x="16.3488%" y="693" width="0.0162%" height="15" fill="rgb(244,29,26)" fg:x="86763" fg:w="86"/><text x="16.5988%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (85 samples, 0.02%)</title><rect x="16.3490%" y="677" width="0.0160%" height="15" fill="rgb(216,16,5)" fg:x="86764" fg:w="85"/><text x="16.5990%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (84 samples, 0.02%)</title><rect x="16.3492%" y="661" width="0.0158%" height="15" fill="rgb(249,76,35)" fg:x="86765" fg:w="84"/><text x="16.5992%" y="671.50"></text></g><g><title>GC_Thread#2 (1,185 samples, 0.22%)</title><rect x="16.1419%" y="837" width="0.2233%" height="15" fill="rgb(207,11,44)" fg:x="85665" fg:w="1185"/><text x="16.3919%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (99 samples, 0.02%)</title><rect x="16.3946%" y="693" width="0.0187%" height="15" fill="rgb(228,190,49)" fg:x="87006" fg:w="99"/><text x="16.6446%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (193 samples, 0.04%)</title><rect x="16.3770%" y="709" width="0.0364%" height="15" fill="rgb(214,173,12)" fg:x="86913" fg:w="193"/><text x="16.6270%" y="719.50"></text></g><g><title>SpinPause (91 samples, 0.02%)</title><rect x="16.4144%" y="709" width="0.0171%" height="15" fill="rgb(218,26,35)" fg:x="87111" fg:w="91"/><text x="16.6644%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (308 samples, 0.06%)</title><rect x="16.3738%" y="725" width="0.0580%" height="15" fill="rgb(220,200,19)" fg:x="86896" fg:w="308"/><text x="16.6238%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (57 samples, 0.01%)</title><rect x="16.4336%" y="629" width="0.0107%" height="15" fill="rgb(239,95,49)" fg:x="87213" fg:w="57"/><text x="16.6836%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (69 samples, 0.01%)</title><rect x="16.4319%" y="645" width="0.0130%" height="15" fill="rgb(235,85,53)" fg:x="87204" fg:w="69"/><text x="16.6819%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (89 samples, 0.02%)</title><rect x="16.4319%" y="693" width="0.0168%" height="15" fill="rgb(233,133,31)" fg:x="87204" fg:w="89"/><text x="16.6819%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (89 samples, 0.02%)</title><rect x="16.4319%" y="677" width="0.0168%" height="15" fill="rgb(218,25,20)" fg:x="87204" fg:w="89"/><text x="16.6819%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (89 samples, 0.02%)</title><rect x="16.4319%" y="661" width="0.0168%" height="15" fill="rgb(252,210,38)" fg:x="87204" fg:w="89"/><text x="16.6819%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (70 samples, 0.01%)</title><rect x="16.4507%" y="645" width="0.0132%" height="15" fill="rgb(242,134,21)" fg:x="87304" fg:w="70"/><text x="16.7007%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (86 samples, 0.02%)</title><rect x="16.4487%" y="661" width="0.0162%" height="15" fill="rgb(213,28,48)" fg:x="87293" fg:w="86"/><text x="16.6987%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (177 samples, 0.03%)</title><rect x="16.4319%" y="725" width="0.0334%" height="15" fill="rgb(250,196,2)" fg:x="87204" fg:w="177"/><text x="16.6819%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (177 samples, 0.03%)</title><rect x="16.4319%" y="709" width="0.0334%" height="15" fill="rgb(227,5,17)" fg:x="87204" fg:w="177"/><text x="16.6819%" y="719.50"></text></g><g><title>G1HotCardCache::drain (88 samples, 0.02%)</title><rect x="16.4487%" y="693" width="0.0166%" height="15" fill="rgb(221,226,24)" fg:x="87293" fg:w="88"/><text x="16.6987%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (88 samples, 0.02%)</title><rect x="16.4487%" y="677" width="0.0166%" height="15" fill="rgb(211,5,48)" fg:x="87293" fg:w="88"/><text x="16.6987%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (93 samples, 0.02%)</title><rect x="16.4684%" y="629" width="0.0175%" height="15" fill="rgb(219,150,6)" fg:x="87398" fg:w="93"/><text x="16.7184%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (67 samples, 0.01%)</title><rect x="16.4733%" y="613" width="0.0126%" height="15" fill="rgb(251,46,16)" fg:x="87424" fg:w="67"/><text x="16.7233%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (110 samples, 0.02%)</title><rect x="16.4660%" y="645" width="0.0207%" height="15" fill="rgb(220,204,40)" fg:x="87385" fg:w="110"/><text x="16.7160%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (141 samples, 0.03%)</title><rect x="16.4660%" y="661" width="0.0266%" height="15" fill="rgb(211,85,2)" fg:x="87385" fg:w="141"/><text x="16.7160%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (146 samples, 0.03%)</title><rect x="16.4658%" y="677" width="0.0275%" height="15" fill="rgb(229,17,7)" fg:x="87384" fg:w="146"/><text x="16.7158%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (165 samples, 0.03%)</title><rect x="16.4652%" y="725" width="0.0311%" height="15" fill="rgb(239,72,28)" fg:x="87381" fg:w="165"/><text x="16.7152%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (165 samples, 0.03%)</title><rect x="16.4652%" y="709" width="0.0311%" height="15" fill="rgb(230,47,54)" fg:x="87381" fg:w="165"/><text x="16.7152%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (165 samples, 0.03%)</title><rect x="16.4652%" y="693" width="0.0311%" height="15" fill="rgb(214,50,8)" fg:x="87381" fg:w="165"/><text x="16.7152%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (62 samples, 0.01%)</title><rect x="16.5005%" y="629" width="0.0117%" height="15" fill="rgb(216,198,43)" fg:x="87568" fg:w="62"/><text x="16.7505%" y="639.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (88 samples, 0.02%)</title><rect x="16.4963%" y="693" width="0.0166%" height="15" fill="rgb(234,20,35)" fg:x="87546" fg:w="88"/><text x="16.7463%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (87 samples, 0.02%)</title><rect x="16.4965%" y="677" width="0.0164%" height="15" fill="rgb(254,45,19)" fg:x="87547" fg:w="87"/><text x="16.7465%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (87 samples, 0.02%)</title><rect x="16.4965%" y="661" width="0.0164%" height="15" fill="rgb(219,14,44)" fg:x="87547" fg:w="87"/><text x="16.7465%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (80 samples, 0.02%)</title><rect x="16.4978%" y="645" width="0.0151%" height="15" fill="rgb(217,220,26)" fg:x="87554" fg:w="80"/><text x="16.7478%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (166 samples, 0.03%)</title><rect x="16.4963%" y="709" width="0.0313%" height="15" fill="rgb(213,158,28)" fg:x="87546" fg:w="166"/><text x="16.7463%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (77 samples, 0.01%)</title><rect x="16.5131%" y="693" width="0.0145%" height="15" fill="rgb(252,51,52)" fg:x="87635" fg:w="77"/><text x="16.7631%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (77 samples, 0.01%)</title><rect x="16.5131%" y="677" width="0.0145%" height="15" fill="rgb(246,89,16)" fg:x="87635" fg:w="77"/><text x="16.7631%" y="687.50"></text></g><g><title>JavaThread::oops_do (76 samples, 0.01%)</title><rect x="16.5133%" y="661" width="0.0143%" height="15" fill="rgb(216,158,49)" fg:x="87636" fg:w="76"/><text x="16.7633%" y="671.50"></text></g><g><title>G1RootProcessor::evacuate_roots (198 samples, 0.04%)</title><rect x="16.4963%" y="725" width="0.0373%" height="15" fill="rgb(236,107,19)" fg:x="87546" fg:w="198"/><text x="16.7463%" y="735.50"></text></g><g><title>G1ParTask::work (849 samples, 0.16%)</title><rect x="16.3738%" y="741" width="0.1600%" height="15" fill="rgb(228,185,30)" fg:x="86896" fg:w="849"/><text x="16.6238%" y="751.50"></text></g><g><title>__GI___clone (1,016 samples, 0.19%)</title><rect x="16.3682%" y="821" width="0.1914%" height="15" fill="rgb(246,134,8)" fg:x="86866" fg:w="1016"/><text x="16.6182%" y="831.50"></text></g><g><title>start_thread (1,016 samples, 0.19%)</title><rect x="16.3682%" y="805" width="0.1914%" height="15" fill="rgb(214,143,50)" fg:x="86866" fg:w="1016"/><text x="16.6182%" y="815.50"></text></g><g><title>thread_native_entry (1,016 samples, 0.19%)</title><rect x="16.3682%" y="789" width="0.1914%" height="15" fill="rgb(228,75,8)" fg:x="86866" fg:w="1016"/><text x="16.6182%" y="799.50"></text></g><g><title>Thread::call_run (1,016 samples, 0.19%)</title><rect x="16.3682%" y="773" width="0.1914%" height="15" fill="rgb(207,175,4)" fg:x="86866" fg:w="1016"/><text x="16.6182%" y="783.50"></text></g><g><title>GangWorker::loop (1,016 samples, 0.19%)</title><rect x="16.3682%" y="757" width="0.1914%" height="15" fill="rgb(205,108,24)" fg:x="86866" fg:w="1016"/><text x="16.6182%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (57 samples, 0.01%)</title><rect x="16.5489%" y="741" width="0.0107%" height="15" fill="rgb(244,120,49)" fg:x="87825" fg:w="57"/><text x="16.7989%" y="751.50"></text></g><g><title>PosixSemaphore::wait (57 samples, 0.01%)</title><rect x="16.5489%" y="725" width="0.0107%" height="15" fill="rgb(223,47,38)" fg:x="87825" fg:w="57"/><text x="16.7989%" y="735.50"></text></g><g><title>__new_sem_wait_slow (56 samples, 0.01%)</title><rect x="16.5491%" y="709" width="0.0106%" height="15" fill="rgb(229,179,11)" fg:x="87826" fg:w="56"/><text x="16.7991%" y="719.50"></text></g><g><title>do_futex_wait (56 samples, 0.01%)</title><rect x="16.5491%" y="693" width="0.0106%" height="15" fill="rgb(231,122,1)" fg:x="87826" fg:w="56"/><text x="16.7991%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (56 samples, 0.01%)</title><rect x="16.5491%" y="677" width="0.0106%" height="15" fill="rgb(245,119,9)" fg:x="87826" fg:w="56"/><text x="16.7991%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.01%)</title><rect x="16.5493%" y="661" width="0.0104%" height="15" fill="rgb(241,163,25)" fg:x="87827" fg:w="55"/><text x="16.7993%" y="671.50"></text></g><g><title>GC_Thread#3 (1,034 samples, 0.19%)</title><rect x="16.3652%" y="837" width="0.1948%" height="15" fill="rgb(217,214,3)" fg:x="86850" fg:w="1034"/><text x="16.6152%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue (198 samples, 0.04%)</title><rect x="16.5683%" y="709" width="0.0373%" height="15" fill="rgb(240,86,28)" fg:x="87928" fg:w="198"/><text x="16.8183%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (109 samples, 0.02%)</title><rect x="16.5851%" y="693" width="0.0205%" height="15" fill="rgb(215,47,9)" fg:x="88017" fg:w="109"/><text x="16.8351%" y="703.50"></text></g><g><title>SpinPause (99 samples, 0.02%)</title><rect x="16.6071%" y="709" width="0.0187%" height="15" fill="rgb(252,25,45)" fg:x="88134" fg:w="99"/><text x="16.8571%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (324 samples, 0.06%)</title><rect x="16.5662%" y="725" width="0.0611%" height="15" fill="rgb(251,164,9)" fg:x="87917" fg:w="324"/><text x="16.8162%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (97 samples, 0.02%)</title><rect x="16.6312%" y="629" width="0.0183%" height="15" fill="rgb(233,194,0)" fg:x="88262" fg:w="97"/><text x="16.8812%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (78 samples, 0.01%)</title><rect x="16.6348%" y="613" width="0.0147%" height="15" fill="rgb(249,111,24)" fg:x="88281" fg:w="78"/><text x="16.8848%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (123 samples, 0.02%)</title><rect x="16.6277%" y="645" width="0.0232%" height="15" fill="rgb(250,223,3)" fg:x="88243" fg:w="123"/><text x="16.8777%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (147 samples, 0.03%)</title><rect x="16.6275%" y="693" width="0.0277%" height="15" fill="rgb(236,178,37)" fg:x="88242" fg:w="147"/><text x="16.8775%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (147 samples, 0.03%)</title><rect x="16.6275%" y="677" width="0.0277%" height="15" fill="rgb(241,158,50)" fg:x="88242" fg:w="147"/><text x="16.8775%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (147 samples, 0.03%)</title><rect x="16.6275%" y="661" width="0.0277%" height="15" fill="rgb(213,121,41)" fg:x="88242" fg:w="147"/><text x="16.8775%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (197 samples, 0.04%)</title><rect x="16.6275%" y="725" width="0.0371%" height="15" fill="rgb(240,92,3)" fg:x="88242" fg:w="197"/><text x="16.8775%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (197 samples, 0.04%)</title><rect x="16.6275%" y="709" width="0.0371%" height="15" fill="rgb(205,123,3)" fg:x="88242" fg:w="197"/><text x="16.8775%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (76 samples, 0.01%)</title><rect x="16.6706%" y="629" width="0.0143%" height="15" fill="rgb(205,97,47)" fg:x="88471" fg:w="76"/><text x="16.9206%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (60 samples, 0.01%)</title><rect x="16.6736%" y="613" width="0.0113%" height="15" fill="rgb(247,152,14)" fg:x="88487" fg:w="60"/><text x="16.9236%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (117 samples, 0.02%)</title><rect x="16.6648%" y="645" width="0.0220%" height="15" fill="rgb(248,195,53)" fg:x="88440" fg:w="117"/><text x="16.9148%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (173 samples, 0.03%)</title><rect x="16.6648%" y="661" width="0.0326%" height="15" fill="rgb(226,201,16)" fg:x="88440" fg:w="173"/><text x="16.9148%" y="671.50"></text></g><g><title>HeapRegion::oops_on_card_seq_iterate_careful&lt;true, G1ScanObjsDuringScanRSClosure&gt; (56 samples, 0.01%)</title><rect x="16.6868%" y="645" width="0.0106%" height="15" fill="rgb(205,98,0)" fg:x="88557" fg:w="56"/><text x="16.9368%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (183 samples, 0.03%)</title><rect x="16.6648%" y="677" width="0.0345%" height="15" fill="rgb(214,191,48)" fg:x="88440" fg:w="183"/><text x="16.9148%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (214 samples, 0.04%)</title><rect x="16.6646%" y="725" width="0.0403%" height="15" fill="rgb(237,112,39)" fg:x="88439" fg:w="214"/><text x="16.9146%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (214 samples, 0.04%)</title><rect x="16.6646%" y="709" width="0.0403%" height="15" fill="rgb(247,203,27)" fg:x="88439" fg:w="214"/><text x="16.9146%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (214 samples, 0.04%)</title><rect x="16.6646%" y="693" width="0.0403%" height="15" fill="rgb(235,124,28)" fg:x="88439" fg:w="214"/><text x="16.9146%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (79 samples, 0.01%)</title><rect x="16.7160%" y="629" width="0.0149%" height="15" fill="rgb(208,207,46)" fg:x="88712" fg:w="79"/><text x="16.9660%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (74 samples, 0.01%)</title><rect x="16.7170%" y="613" width="0.0139%" height="15" fill="rgb(234,176,4)" fg:x="88717" fg:w="74"/><text x="16.9670%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (56 samples, 0.01%)</title><rect x="16.7204%" y="597" width="0.0106%" height="15" fill="rgb(230,133,28)" fg:x="88735" fg:w="56"/><text x="16.9704%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (83 samples, 0.02%)</title><rect x="16.7158%" y="645" width="0.0156%" height="15" fill="rgb(211,137,40)" fg:x="88711" fg:w="83"/><text x="16.9658%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (140 samples, 0.03%)</title><rect x="16.7055%" y="709" width="0.0264%" height="15" fill="rgb(254,35,13)" fg:x="88656" fg:w="140"/><text x="16.9555%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (99 samples, 0.02%)</title><rect x="16.7132%" y="693" width="0.0187%" height="15" fill="rgb(225,49,51)" fg:x="88697" fg:w="99"/><text x="16.9632%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (99 samples, 0.02%)</title><rect x="16.7132%" y="677" width="0.0187%" height="15" fill="rgb(251,10,15)" fg:x="88697" fg:w="99"/><text x="16.9632%" y="687.50"></text></g><g><title>JavaThread::oops_do (99 samples, 0.02%)</title><rect x="16.7132%" y="661" width="0.0187%" height="15" fill="rgb(228,207,15)" fg:x="88697" fg:w="99"/><text x="16.9632%" y="671.50"></text></g><g><title>G1ParTask::work (886 samples, 0.17%)</title><rect x="16.5662%" y="741" width="0.1669%" height="15" fill="rgb(241,99,19)" fg:x="87917" fg:w="886"/><text x="16.8162%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (150 samples, 0.03%)</title><rect x="16.7049%" y="725" width="0.0283%" height="15" fill="rgb(207,104,49)" fg:x="88653" fg:w="150"/><text x="16.9549%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (57 samples, 0.01%)</title><rect x="16.7345%" y="725" width="0.0107%" height="15" fill="rgb(234,99,18)" fg:x="88810" fg:w="57"/><text x="16.9845%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (77 samples, 0.01%)</title><rect x="16.7345%" y="741" width="0.0145%" height="15" fill="rgb(213,191,49)" fg:x="88810" fg:w="77"/><text x="16.9845%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (113 samples, 0.02%)</title><rect x="16.7596%" y="517" width="0.0213%" height="15" fill="rgb(210,226,19)" fg:x="88943" fg:w="113"/><text x="17.0096%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.02%)</title><rect x="16.7598%" y="501" width="0.0211%" height="15" fill="rgb(229,97,18)" fg:x="88944" fg:w="112"/><text x="17.0098%" y="511.50"></text></g><g><title>native_write_msr (112 samples, 0.02%)</title><rect x="16.7598%" y="485" width="0.0211%" height="15" fill="rgb(211,167,15)" fg:x="88944" fg:w="112"/><text x="17.0098%" y="495.50"></text></g><g><title>finish_task_switch (118 samples, 0.02%)</title><rect x="16.7592%" y="533" width="0.0222%" height="15" fill="rgb(210,169,34)" fg:x="88941" fg:w="118"/><text x="17.0092%" y="543.50"></text></g><g><title>futex_wait_queue_me (138 samples, 0.03%)</title><rect x="16.7579%" y="581" width="0.0260%" height="15" fill="rgb(241,121,31)" fg:x="88934" fg:w="138"/><text x="17.0079%" y="591.50"></text></g><g><title>schedule (138 samples, 0.03%)</title><rect x="16.7579%" y="565" width="0.0260%" height="15" fill="rgb(232,40,11)" fg:x="88934" fg:w="138"/><text x="17.0079%" y="575.50"></text></g><g><title>__schedule (137 samples, 0.03%)</title><rect x="16.7581%" y="549" width="0.0258%" height="15" fill="rgb(205,86,26)" fg:x="88935" fg:w="137"/><text x="17.0081%" y="559.50"></text></g><g><title>__x64_sys_futex (145 samples, 0.03%)</title><rect x="16.7571%" y="629" width="0.0273%" height="15" fill="rgb(231,126,28)" fg:x="88930" fg:w="145"/><text x="17.0071%" y="639.50"></text></g><g><title>do_futex (145 samples, 0.03%)</title><rect x="16.7571%" y="613" width="0.0273%" height="15" fill="rgb(219,221,18)" fg:x="88930" fg:w="145"/><text x="17.0071%" y="623.50"></text></g><g><title>futex_wait (143 samples, 0.03%)</title><rect x="16.7575%" y="597" width="0.0269%" height="15" fill="rgb(211,40,0)" fg:x="88932" fg:w="143"/><text x="17.0075%" y="607.50"></text></g><g><title>do_syscall_64 (146 samples, 0.03%)</title><rect x="16.7571%" y="645" width="0.0275%" height="15" fill="rgb(239,85,43)" fg:x="88930" fg:w="146"/><text x="17.0071%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (153 samples, 0.03%)</title><rect x="16.7571%" y="661" width="0.0288%" height="15" fill="rgb(231,55,21)" fg:x="88930" fg:w="153"/><text x="17.0071%" y="671.50"></text></g><g><title>GC_Thread#4 (1,201 samples, 0.23%)</title><rect x="16.5600%" y="837" width="0.2263%" height="15" fill="rgb(225,184,43)" fg:x="87884" fg:w="1201"/><text x="16.8100%" y="847.50"></text></g><g><title>__GI___clone (1,184 samples, 0.22%)</title><rect x="16.5632%" y="821" width="0.2231%" height="15" fill="rgb(251,158,41)" fg:x="87901" fg:w="1184"/><text x="16.8132%" y="831.50"></text></g><g><title>start_thread (1,184 samples, 0.22%)</title><rect x="16.5632%" y="805" width="0.2231%" height="15" fill="rgb(234,159,37)" fg:x="87901" fg:w="1184"/><text x="16.8132%" y="815.50"></text></g><g><title>thread_native_entry (1,184 samples, 0.22%)</title><rect x="16.5632%" y="789" width="0.2231%" height="15" fill="rgb(216,204,22)" fg:x="87901" fg:w="1184"/><text x="16.8132%" y="799.50"></text></g><g><title>Thread::call_run (1,184 samples, 0.22%)</title><rect x="16.5632%" y="773" width="0.2231%" height="15" fill="rgb(214,17,3)" fg:x="87901" fg:w="1184"/><text x="16.8132%" y="783.50"></text></g><g><title>GangWorker::loop (1,184 samples, 0.22%)</title><rect x="16.5632%" y="757" width="0.2231%" height="15" fill="rgb(212,111,17)" fg:x="87901" fg:w="1184"/><text x="16.8132%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (156 samples, 0.03%)</title><rect x="16.7569%" y="741" width="0.0294%" height="15" fill="rgb(221,157,24)" fg:x="88929" fg:w="156"/><text x="17.0069%" y="751.50"></text></g><g><title>PosixSemaphore::wait (156 samples, 0.03%)</title><rect x="16.7569%" y="725" width="0.0294%" height="15" fill="rgb(252,16,13)" fg:x="88929" fg:w="156"/><text x="17.0069%" y="735.50"></text></g><g><title>__new_sem_wait_slow (155 samples, 0.03%)</title><rect x="16.7571%" y="709" width="0.0292%" height="15" fill="rgb(221,62,2)" fg:x="88930" fg:w="155"/><text x="17.0071%" y="719.50"></text></g><g><title>do_futex_wait (155 samples, 0.03%)</title><rect x="16.7571%" y="693" width="0.0292%" height="15" fill="rgb(247,87,22)" fg:x="88930" fg:w="155"/><text x="17.0071%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (155 samples, 0.03%)</title><rect x="16.7571%" y="677" width="0.0292%" height="15" fill="rgb(215,73,9)" fg:x="88930" fg:w="155"/><text x="17.0071%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (74 samples, 0.01%)</title><rect x="16.8127%" y="693" width="0.0139%" height="15" fill="rgb(207,175,33)" fg:x="89225" fg:w="74"/><text x="17.0627%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (143 samples, 0.03%)</title><rect x="16.8005%" y="709" width="0.0269%" height="15" fill="rgb(243,129,54)" fg:x="89160" fg:w="143"/><text x="17.0505%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (195 samples, 0.04%)</title><rect x="16.7971%" y="725" width="0.0367%" height="15" fill="rgb(227,119,45)" fg:x="89142" fg:w="195"/><text x="17.0471%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (190 samples, 0.04%)</title><rect x="16.8413%" y="629" width="0.0358%" height="15" fill="rgb(205,109,36)" fg:x="89377" fg:w="190"/><text x="17.0913%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (130 samples, 0.02%)</title><rect x="16.8526%" y="613" width="0.0245%" height="15" fill="rgb(205,6,39)" fg:x="89437" fg:w="130"/><text x="17.1026%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (245 samples, 0.05%)</title><rect x="16.8342%" y="645" width="0.0462%" height="15" fill="rgb(221,32,16)" fg:x="89339" fg:w="245"/><text x="17.0842%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (273 samples, 0.05%)</title><rect x="16.8340%" y="693" width="0.0514%" height="15" fill="rgb(228,144,50)" fg:x="89338" fg:w="273"/><text x="17.0840%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (273 samples, 0.05%)</title><rect x="16.8340%" y="677" width="0.0514%" height="15" fill="rgb(229,201,53)" fg:x="89338" fg:w="273"/><text x="17.0840%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (273 samples, 0.05%)</title><rect x="16.8340%" y="661" width="0.0514%" height="15" fill="rgb(249,153,27)" fg:x="89338" fg:w="273"/><text x="17.0840%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (304 samples, 0.06%)</title><rect x="16.8340%" y="725" width="0.0573%" height="15" fill="rgb(227,106,25)" fg:x="89338" fg:w="304"/><text x="17.0840%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (304 samples, 0.06%)</title><rect x="16.8340%" y="709" width="0.0573%" height="15" fill="rgb(230,65,29)" fg:x="89338" fg:w="304"/><text x="17.0840%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (92 samples, 0.02%)</title><rect x="16.8962%" y="629" width="0.0173%" height="15" fill="rgb(221,57,46)" fg:x="89668" fg:w="92"/><text x="17.1462%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (64 samples, 0.01%)</title><rect x="16.9015%" y="613" width="0.0121%" height="15" fill="rgb(229,161,17)" fg:x="89696" fg:w="64"/><text x="17.1515%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (121 samples, 0.02%)</title><rect x="16.8920%" y="645" width="0.0228%" height="15" fill="rgb(222,213,11)" fg:x="89646" fg:w="121"/><text x="17.1420%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (155 samples, 0.03%)</title><rect x="16.8920%" y="661" width="0.0292%" height="15" fill="rgb(235,35,13)" fg:x="89646" fg:w="155"/><text x="17.1420%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (167 samples, 0.03%)</title><rect x="16.8917%" y="677" width="0.0315%" height="15" fill="rgb(233,158,34)" fg:x="89644" fg:w="167"/><text x="17.1417%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (179 samples, 0.03%)</title><rect x="16.8913%" y="725" width="0.0337%" height="15" fill="rgb(215,151,48)" fg:x="89642" fg:w="179"/><text x="17.1413%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (179 samples, 0.03%)</title><rect x="16.8913%" y="709" width="0.0337%" height="15" fill="rgb(229,84,14)" fg:x="89642" fg:w="179"/><text x="17.1413%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (179 samples, 0.03%)</title><rect x="16.8913%" y="693" width="0.0337%" height="15" fill="rgb(229,68,14)" fg:x="89642" fg:w="179"/><text x="17.1413%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (59 samples, 0.01%)</title><rect x="16.9397%" y="597" width="0.0111%" height="15" fill="rgb(243,106,26)" fg:x="89899" fg:w="59"/><text x="17.1897%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (91 samples, 0.02%)</title><rect x="16.9348%" y="629" width="0.0171%" height="15" fill="rgb(206,45,38)" fg:x="89873" fg:w="91"/><text x="17.1848%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (78 samples, 0.01%)</title><rect x="16.9373%" y="613" width="0.0147%" height="15" fill="rgb(226,6,15)" fg:x="89886" fg:w="78"/><text x="17.1873%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (147 samples, 0.03%)</title><rect x="16.9252%" y="709" width="0.0277%" height="15" fill="rgb(232,22,54)" fg:x="89822" fg:w="147"/><text x="17.1752%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (139 samples, 0.03%)</title><rect x="16.9267%" y="693" width="0.0262%" height="15" fill="rgb(229,222,32)" fg:x="89830" fg:w="139"/><text x="17.1767%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (139 samples, 0.03%)</title><rect x="16.9267%" y="677" width="0.0262%" height="15" fill="rgb(228,62,29)" fg:x="89830" fg:w="139"/><text x="17.1767%" y="687.50"></text></g><g><title>JavaThread::oops_do (139 samples, 0.03%)</title><rect x="16.9267%" y="661" width="0.0262%" height="15" fill="rgb(251,103,34)" fg:x="89830" fg:w="139"/><text x="17.1767%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (98 samples, 0.02%)</title><rect x="16.9344%" y="645" width="0.0185%" height="15" fill="rgb(233,12,30)" fg:x="89871" fg:w="98"/><text x="17.1844%" y="655.50"></text></g><g><title>G1ParTask::work (858 samples, 0.16%)</title><rect x="16.7971%" y="741" width="0.1617%" height="15" fill="rgb(238,52,0)" fg:x="89142" fg:w="858"/><text x="17.0471%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (179 samples, 0.03%)</title><rect x="16.9250%" y="725" width="0.0337%" height="15" fill="rgb(223,98,5)" fg:x="89821" fg:w="179"/><text x="17.1750%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (56 samples, 0.01%)</title><rect x="16.9612%" y="709" width="0.0106%" height="15" fill="rgb(228,75,37)" fg:x="90013" fg:w="56"/><text x="17.2112%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (63 samples, 0.01%)</title><rect x="16.9612%" y="725" width="0.0119%" height="15" fill="rgb(205,115,49)" fg:x="90013" fg:w="63"/><text x="17.2112%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (79 samples, 0.01%)</title><rect x="16.9612%" y="741" width="0.0149%" height="15" fill="rgb(250,154,43)" fg:x="90013" fg:w="79"/><text x="17.2112%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.02%)</title><rect x="16.9829%" y="517" width="0.0183%" height="15" fill="rgb(226,43,29)" fg:x="90128" fg:w="97"/><text x="17.2329%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (97 samples, 0.02%)</title><rect x="16.9829%" y="501" width="0.0183%" height="15" fill="rgb(249,228,39)" fg:x="90128" fg:w="97"/><text x="17.2329%" y="511.50"></text></g><g><title>native_write_msr (97 samples, 0.02%)</title><rect x="16.9829%" y="485" width="0.0183%" height="15" fill="rgb(216,79,43)" fg:x="90128" fg:w="97"/><text x="17.2329%" y="495.50"></text></g><g><title>finish_task_switch (99 samples, 0.02%)</title><rect x="16.9829%" y="533" width="0.0187%" height="15" fill="rgb(228,95,12)" fg:x="90128" fg:w="99"/><text x="17.2329%" y="543.50"></text></g><g><title>futex_wait_queue_me (109 samples, 0.02%)</title><rect x="16.9823%" y="581" width="0.0205%" height="15" fill="rgb(249,221,15)" fg:x="90125" fg:w="109"/><text x="17.2323%" y="591.50"></text></g><g><title>schedule (108 samples, 0.02%)</title><rect x="16.9825%" y="565" width="0.0204%" height="15" fill="rgb(233,34,13)" fg:x="90126" fg:w="108"/><text x="17.2325%" y="575.50"></text></g><g><title>__schedule (108 samples, 0.02%)</title><rect x="16.9825%" y="549" width="0.0204%" height="15" fill="rgb(214,103,39)" fg:x="90126" fg:w="108"/><text x="17.2325%" y="559.50"></text></g><g><title>do_syscall_64 (111 samples, 0.02%)</title><rect x="16.9823%" y="645" width="0.0209%" height="15" fill="rgb(251,126,39)" fg:x="90125" fg:w="111"/><text x="17.2323%" y="655.50"></text></g><g><title>__x64_sys_futex (111 samples, 0.02%)</title><rect x="16.9823%" y="629" width="0.0209%" height="15" fill="rgb(214,216,36)" fg:x="90125" fg:w="111"/><text x="17.2323%" y="639.50"></text></g><g><title>do_futex (111 samples, 0.02%)</title><rect x="16.9823%" y="613" width="0.0209%" height="15" fill="rgb(220,221,8)" fg:x="90125" fg:w="111"/><text x="17.2323%" y="623.50"></text></g><g><title>futex_wait (111 samples, 0.02%)</title><rect x="16.9823%" y="597" width="0.0209%" height="15" fill="rgb(240,216,3)" fg:x="90125" fg:w="111"/><text x="17.2323%" y="607.50"></text></g><g><title>__GI___clone (1,133 samples, 0.21%)</title><rect x="16.7914%" y="821" width="0.2135%" height="15" fill="rgb(232,218,17)" fg:x="89112" fg:w="1133"/><text x="17.0414%" y="831.50"></text></g><g><title>start_thread (1,133 samples, 0.21%)</title><rect x="16.7914%" y="805" width="0.2135%" height="15" fill="rgb(229,163,45)" fg:x="89112" fg:w="1133"/><text x="17.0414%" y="815.50"></text></g><g><title>thread_native_entry (1,133 samples, 0.21%)</title><rect x="16.7914%" y="789" width="0.2135%" height="15" fill="rgb(231,110,42)" fg:x="89112" fg:w="1133"/><text x="17.0414%" y="799.50"></text></g><g><title>Thread::call_run (1,133 samples, 0.21%)</title><rect x="16.7914%" y="773" width="0.2135%" height="15" fill="rgb(208,170,48)" fg:x="89112" fg:w="1133"/><text x="17.0414%" y="783.50"></text></g><g><title>GangWorker::loop (1,133 samples, 0.21%)</title><rect x="16.7914%" y="757" width="0.2135%" height="15" fill="rgb(239,116,25)" fg:x="89112" fg:w="1133"/><text x="17.0414%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (120 samples, 0.02%)</title><rect x="16.9823%" y="741" width="0.0226%" height="15" fill="rgb(219,200,50)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="751.50"></text></g><g><title>PosixSemaphore::wait (120 samples, 0.02%)</title><rect x="16.9823%" y="725" width="0.0226%" height="15" fill="rgb(245,200,0)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="735.50"></text></g><g><title>__new_sem_wait_slow (120 samples, 0.02%)</title><rect x="16.9823%" y="709" width="0.0226%" height="15" fill="rgb(245,119,33)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="719.50"></text></g><g><title>do_futex_wait (120 samples, 0.02%)</title><rect x="16.9823%" y="693" width="0.0226%" height="15" fill="rgb(231,125,12)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (120 samples, 0.02%)</title><rect x="16.9823%" y="677" width="0.0226%" height="15" fill="rgb(216,96,41)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (120 samples, 0.02%)</title><rect x="16.9823%" y="661" width="0.0226%" height="15" fill="rgb(248,43,45)" fg:x="90125" fg:w="120"/><text x="17.2323%" y="671.50"></text></g><g><title>GC_Thread#5 (1,163 samples, 0.22%)</title><rect x="16.7863%" y="837" width="0.2191%" height="15" fill="rgb(217,222,7)" fg:x="89085" fg:w="1163"/><text x="17.0363%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (88 samples, 0.02%)</title><rect x="17.0339%" y="693" width="0.0166%" height="15" fill="rgb(233,28,6)" fg:x="90399" fg:w="88"/><text x="17.2839%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (164 samples, 0.03%)</title><rect x="17.0202%" y="709" width="0.0309%" height="15" fill="rgb(231,218,15)" fg:x="90326" fg:w="164"/><text x="17.2702%" y="719.50"></text></g><g><title>SpinPause (68 samples, 0.01%)</title><rect x="17.0524%" y="709" width="0.0128%" height="15" fill="rgb(226,171,48)" fg:x="90497" fg:w="68"/><text x="17.3024%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (264 samples, 0.05%)</title><rect x="17.0160%" y="725" width="0.0497%" height="15" fill="rgb(235,201,9)" fg:x="90304" fg:w="264"/><text x="17.2660%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (170 samples, 0.03%)</title><rect x="17.0708%" y="629" width="0.0320%" height="15" fill="rgb(217,80,15)" fg:x="90595" fg:w="170"/><text x="17.3208%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (117 samples, 0.02%)</title><rect x="17.0808%" y="613" width="0.0220%" height="15" fill="rgb(219,152,8)" fg:x="90648" fg:w="117"/><text x="17.3308%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (204 samples, 0.04%)</title><rect x="17.0658%" y="645" width="0.0384%" height="15" fill="rgb(243,107,38)" fg:x="90568" fg:w="204"/><text x="17.3158%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (219 samples, 0.04%)</title><rect x="17.0658%" y="693" width="0.0413%" height="15" fill="rgb(231,17,5)" fg:x="90568" fg:w="219"/><text x="17.3158%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (219 samples, 0.04%)</title><rect x="17.0658%" y="677" width="0.0413%" height="15" fill="rgb(209,25,54)" fg:x="90568" fg:w="219"/><text x="17.3158%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (219 samples, 0.04%)</title><rect x="17.0658%" y="661" width="0.0413%" height="15" fill="rgb(219,0,2)" fg:x="90568" fg:w="219"/><text x="17.3158%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (230 samples, 0.04%)</title><rect x="17.0658%" y="725" width="0.0433%" height="15" fill="rgb(246,9,5)" fg:x="90568" fg:w="230"/><text x="17.3158%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (230 samples, 0.04%)</title><rect x="17.0658%" y="709" width="0.0433%" height="15" fill="rgb(226,159,4)" fg:x="90568" fg:w="230"/><text x="17.3158%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (79 samples, 0.01%)</title><rect x="17.1091%" y="661" width="0.0149%" height="15" fill="rgb(219,175,34)" fg:x="90798" fg:w="79"/><text x="17.3591%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (83 samples, 0.02%)</title><rect x="17.1091%" y="677" width="0.0156%" height="15" fill="rgb(236,10,46)" fg:x="90798" fg:w="83"/><text x="17.3591%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (89 samples, 0.02%)</title><rect x="17.1091%" y="725" width="0.0168%" height="15" fill="rgb(240,211,16)" fg:x="90798" fg:w="89"/><text x="17.3591%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (89 samples, 0.02%)</title><rect x="17.1091%" y="709" width="0.0168%" height="15" fill="rgb(205,3,43)" fg:x="90798" fg:w="89"/><text x="17.3591%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (89 samples, 0.02%)</title><rect x="17.1091%" y="693" width="0.0168%" height="15" fill="rgb(245,7,22)" fg:x="90798" fg:w="89"/><text x="17.3591%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (75 samples, 0.01%)</title><rect x="17.1311%" y="629" width="0.0141%" height="15" fill="rgb(239,132,32)" fg:x="90915" fg:w="75"/><text x="17.3811%" y="639.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (105 samples, 0.02%)</title><rect x="17.1261%" y="693" width="0.0198%" height="15" fill="rgb(228,202,34)" fg:x="90888" fg:w="105"/><text x="17.3761%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (102 samples, 0.02%)</title><rect x="17.1266%" y="677" width="0.0192%" height="15" fill="rgb(254,200,22)" fg:x="90891" fg:w="102"/><text x="17.3766%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (102 samples, 0.02%)</title><rect x="17.1266%" y="661" width="0.0192%" height="15" fill="rgb(219,10,39)" fg:x="90891" fg:w="102"/><text x="17.3766%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (97 samples, 0.02%)</title><rect x="17.1276%" y="645" width="0.0183%" height="15" fill="rgb(226,210,39)" fg:x="90896" fg:w="97"/><text x="17.3776%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (266 samples, 0.05%)</title><rect x="17.1261%" y="709" width="0.0501%" height="15" fill="rgb(208,219,16)" fg:x="90888" fg:w="266"/><text x="17.3761%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (161 samples, 0.03%)</title><rect x="17.1458%" y="693" width="0.0303%" height="15" fill="rgb(216,158,51)" fg:x="90993" fg:w="161"/><text x="17.3958%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (161 samples, 0.03%)</title><rect x="17.1458%" y="677" width="0.0303%" height="15" fill="rgb(233,14,44)" fg:x="90993" fg:w="161"/><text x="17.3958%" y="687.50"></text></g><g><title>JavaThread::oops_do (161 samples, 0.03%)</title><rect x="17.1458%" y="661" width="0.0303%" height="15" fill="rgb(237,97,39)" fg:x="90993" fg:w="161"/><text x="17.3958%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (105 samples, 0.02%)</title><rect x="17.1564%" y="645" width="0.0198%" height="15" fill="rgb(218,198,43)" fg:x="91049" fg:w="105"/><text x="17.4064%" y="655.50"></text></g><g><title>G1ParTask::work (857 samples, 0.16%)</title><rect x="17.0160%" y="741" width="0.1615%" height="15" fill="rgb(231,104,20)" fg:x="90304" fg:w="857"/><text x="17.2660%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (274 samples, 0.05%)</title><rect x="17.1259%" y="725" width="0.0516%" height="15" fill="rgb(254,36,13)" fg:x="90887" fg:w="274"/><text x="17.3759%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (59 samples, 0.01%)</title><rect x="17.1807%" y="741" width="0.0111%" height="15" fill="rgb(248,14,50)" fg:x="91178" fg:w="59"/><text x="17.4307%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (76 samples, 0.01%)</title><rect x="17.2016%" y="517" width="0.0143%" height="15" fill="rgb(217,107,29)" fg:x="91289" fg:w="76"/><text x="17.4516%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.01%)</title><rect x="17.2018%" y="501" width="0.0141%" height="15" fill="rgb(251,169,33)" fg:x="91290" fg:w="75"/><text x="17.4518%" y="511.50"></text></g><g><title>native_write_msr (75 samples, 0.01%)</title><rect x="17.2018%" y="485" width="0.0141%" height="15" fill="rgb(217,108,32)" fg:x="91290" fg:w="75"/><text x="17.4518%" y="495.50"></text></g><g><title>finish_task_switch (81 samples, 0.02%)</title><rect x="17.2012%" y="533" width="0.0153%" height="15" fill="rgb(219,66,42)" fg:x="91287" fg:w="81"/><text x="17.4512%" y="543.50"></text></g><g><title>do_syscall_64 (101 samples, 0.02%)</title><rect x="17.1992%" y="645" width="0.0190%" height="15" fill="rgb(206,180,7)" fg:x="91276" fg:w="101"/><text x="17.4492%" y="655.50"></text></g><g><title>__x64_sys_futex (100 samples, 0.02%)</title><rect x="17.1994%" y="629" width="0.0188%" height="15" fill="rgb(208,226,31)" fg:x="91277" fg:w="100"/><text x="17.4494%" y="639.50"></text></g><g><title>do_futex (100 samples, 0.02%)</title><rect x="17.1994%" y="613" width="0.0188%" height="15" fill="rgb(218,26,49)" fg:x="91277" fg:w="100"/><text x="17.4494%" y="623.50"></text></g><g><title>futex_wait (100 samples, 0.02%)</title><rect x="17.1994%" y="597" width="0.0188%" height="15" fill="rgb(233,197,48)" fg:x="91277" fg:w="100"/><text x="17.4494%" y="607.50"></text></g><g><title>futex_wait_queue_me (99 samples, 0.02%)</title><rect x="17.1995%" y="581" width="0.0187%" height="15" fill="rgb(252,181,51)" fg:x="91278" fg:w="99"/><text x="17.4495%" y="591.50"></text></g><g><title>schedule (98 samples, 0.02%)</title><rect x="17.1997%" y="565" width="0.0185%" height="15" fill="rgb(253,90,19)" fg:x="91279" fg:w="98"/><text x="17.4497%" y="575.50"></text></g><g><title>__schedule (98 samples, 0.02%)</title><rect x="17.1997%" y="549" width="0.0185%" height="15" fill="rgb(215,171,30)" fg:x="91279" fg:w="98"/><text x="17.4497%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="17.1990%" y="661" width="0.0196%" height="15" fill="rgb(214,222,9)" fg:x="91275" fg:w="104"/><text x="17.4490%" y="671.50"></text></g><g><title>__GI___clone (1,108 samples, 0.21%)</title><rect x="17.0100%" y="821" width="0.2088%" height="15" fill="rgb(223,3,22)" fg:x="90272" fg:w="1108"/><text x="17.2600%" y="831.50"></text></g><g><title>start_thread (1,108 samples, 0.21%)</title><rect x="17.0100%" y="805" width="0.2088%" height="15" fill="rgb(225,196,46)" fg:x="90272" fg:w="1108"/><text x="17.2600%" y="815.50"></text></g><g><title>thread_native_entry (1,108 samples, 0.21%)</title><rect x="17.0100%" y="789" width="0.2088%" height="15" fill="rgb(209,110,37)" fg:x="90272" fg:w="1108"/><text x="17.2600%" y="799.50"></text></g><g><title>Thread::call_run (1,108 samples, 0.21%)</title><rect x="17.0100%" y="773" width="0.2088%" height="15" fill="rgb(249,89,12)" fg:x="90272" fg:w="1108"/><text x="17.2600%" y="783.50"></text></g><g><title>GangWorker::loop (1,108 samples, 0.21%)</title><rect x="17.0100%" y="757" width="0.2088%" height="15" fill="rgb(226,27,33)" fg:x="90272" fg:w="1108"/><text x="17.2600%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (106 samples, 0.02%)</title><rect x="17.1988%" y="741" width="0.0200%" height="15" fill="rgb(213,82,22)" fg:x="91274" fg:w="106"/><text x="17.4488%" y="751.50"></text></g><g><title>PosixSemaphore::wait (106 samples, 0.02%)</title><rect x="17.1988%" y="725" width="0.0200%" height="15" fill="rgb(248,140,0)" fg:x="91274" fg:w="106"/><text x="17.4488%" y="735.50"></text></g><g><title>__new_sem_wait_slow (106 samples, 0.02%)</title><rect x="17.1988%" y="709" width="0.0200%" height="15" fill="rgb(228,106,3)" fg:x="91274" fg:w="106"/><text x="17.4488%" y="719.50"></text></g><g><title>do_futex_wait (106 samples, 0.02%)</title><rect x="17.1988%" y="693" width="0.0200%" height="15" fill="rgb(209,23,37)" fg:x="91274" fg:w="106"/><text x="17.4488%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.02%)</title><rect x="17.1988%" y="677" width="0.0200%" height="15" fill="rgb(241,93,50)" fg:x="91274" fg:w="106"/><text x="17.4488%" y="687.50"></text></g><g><title>GC_Thread#6 (1,134 samples, 0.21%)</title><rect x="17.0055%" y="837" width="0.2137%" height="15" fill="rgb(253,46,43)" fg:x="90248" fg:w="1134"/><text x="17.2555%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (111 samples, 0.02%)</title><rect x="17.2525%" y="693" width="0.0209%" height="15" fill="rgb(226,206,43)" fg:x="91559" fg:w="111"/><text x="17.5025%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (223 samples, 0.04%)</title><rect x="17.2327%" y="709" width="0.0420%" height="15" fill="rgb(217,54,7)" fg:x="91454" fg:w="223"/><text x="17.4827%" y="719.50"></text></g><g><title>SpinPause (66 samples, 0.01%)</title><rect x="17.2755%" y="709" width="0.0124%" height="15" fill="rgb(223,5,52)" fg:x="91681" fg:w="66"/><text x="17.5255%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (319 samples, 0.06%)</title><rect x="17.2291%" y="725" width="0.0601%" height="15" fill="rgb(206,52,46)" fg:x="91435" fg:w="319"/><text x="17.4791%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (93 samples, 0.02%)</title><rect x="17.3032%" y="613" width="0.0175%" height="15" fill="rgb(253,136,11)" fg:x="91828" fg:w="93"/><text x="17.5532%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (141 samples, 0.03%)</title><rect x="17.2943%" y="629" width="0.0266%" height="15" fill="rgb(208,106,33)" fg:x="91781" fg:w="141"/><text x="17.5443%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (177 samples, 0.03%)</title><rect x="17.2904%" y="645" width="0.0334%" height="15" fill="rgb(206,54,4)" fg:x="91760" fg:w="177"/><text x="17.5404%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (210 samples, 0.04%)</title><rect x="17.2900%" y="693" width="0.0396%" height="15" fill="rgb(213,3,15)" fg:x="91758" fg:w="210"/><text x="17.5400%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (210 samples, 0.04%)</title><rect x="17.2900%" y="677" width="0.0396%" height="15" fill="rgb(252,211,39)" fg:x="91758" fg:w="210"/><text x="17.5400%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (210 samples, 0.04%)</title><rect x="17.2900%" y="661" width="0.0396%" height="15" fill="rgb(223,6,36)" fg:x="91758" fg:w="210"/><text x="17.5400%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (232 samples, 0.04%)</title><rect x="17.2900%" y="725" width="0.0437%" height="15" fill="rgb(252,169,45)" fg:x="91758" fg:w="232"/><text x="17.5400%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (232 samples, 0.04%)</title><rect x="17.2900%" y="709" width="0.0437%" height="15" fill="rgb(212,48,26)" fg:x="91758" fg:w="232"/><text x="17.5400%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (80 samples, 0.02%)</title><rect x="17.3392%" y="629" width="0.0151%" height="15" fill="rgb(251,102,48)" fg:x="92019" fg:w="80"/><text x="17.5892%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (62 samples, 0.01%)</title><rect x="17.3426%" y="613" width="0.0117%" height="15" fill="rgb(243,208,16)" fg:x="92037" fg:w="62"/><text x="17.5926%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (106 samples, 0.02%)</title><rect x="17.3352%" y="645" width="0.0200%" height="15" fill="rgb(219,96,24)" fg:x="91998" fg:w="106"/><text x="17.5852%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (170 samples, 0.03%)</title><rect x="17.3350%" y="661" width="0.0320%" height="15" fill="rgb(219,33,29)" fg:x="91997" fg:w="170"/><text x="17.5850%" y="671.50"></text></g><g><title>HeapRegion::oops_on_card_seq_iterate_careful&lt;true, G1ScanObjsDuringScanRSClosure&gt; (63 samples, 0.01%)</title><rect x="17.3552%" y="645" width="0.0119%" height="15" fill="rgb(223,176,5)" fg:x="92104" fg:w="63"/><text x="17.6052%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (180 samples, 0.03%)</title><rect x="17.3347%" y="677" width="0.0339%" height="15" fill="rgb(228,140,14)" fg:x="91995" fg:w="180"/><text x="17.5847%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (188 samples, 0.04%)</title><rect x="17.3337%" y="725" width="0.0354%" height="15" fill="rgb(217,179,31)" fg:x="91990" fg:w="188"/><text x="17.5837%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (188 samples, 0.04%)</title><rect x="17.3337%" y="709" width="0.0354%" height="15" fill="rgb(230,9,30)" fg:x="91990" fg:w="188"/><text x="17.5837%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (186 samples, 0.04%)</title><rect x="17.3341%" y="693" width="0.0350%" height="15" fill="rgb(230,136,20)" fg:x="91992" fg:w="186"/><text x="17.5841%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (65 samples, 0.01%)</title><rect x="17.3829%" y="629" width="0.0122%" height="15" fill="rgb(215,210,22)" fg:x="92251" fg:w="65"/><text x="17.6329%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (140 samples, 0.03%)</title><rect x="17.3701%" y="709" width="0.0264%" height="15" fill="rgb(218,43,5)" fg:x="92183" fg:w="140"/><text x="17.6201%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (95 samples, 0.02%)</title><rect x="17.3786%" y="693" width="0.0179%" height="15" fill="rgb(216,11,5)" fg:x="92228" fg:w="95"/><text x="17.6286%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (95 samples, 0.02%)</title><rect x="17.3786%" y="677" width="0.0179%" height="15" fill="rgb(209,82,29)" fg:x="92228" fg:w="95"/><text x="17.6286%" y="687.50"></text></g><g><title>JavaThread::oops_do (95 samples, 0.02%)</title><rect x="17.3786%" y="661" width="0.0179%" height="15" fill="rgb(244,115,12)" fg:x="92228" fg:w="95"/><text x="17.6286%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (73 samples, 0.01%)</title><rect x="17.3827%" y="645" width="0.0138%" height="15" fill="rgb(222,82,18)" fg:x="92250" fg:w="73"/><text x="17.6327%" y="655.50"></text></g><g><title>G1ParTask::work (919 samples, 0.17%)</title><rect x="17.2291%" y="741" width="0.1732%" height="15" fill="rgb(249,227,8)" fg:x="91435" fg:w="919"/><text x="17.4791%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (176 samples, 0.03%)</title><rect x="17.3691%" y="725" width="0.0332%" height="15" fill="rgb(253,141,45)" fg:x="92178" fg:w="176"/><text x="17.6191%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (66 samples, 0.01%)</title><rect x="17.4029%" y="741" width="0.0124%" height="15" fill="rgb(234,184,4)" fg:x="92357" fg:w="66"/><text x="17.6529%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.01%)</title><rect x="17.4221%" y="517" width="0.0122%" height="15" fill="rgb(218,194,23)" fg:x="92459" fg:w="65"/><text x="17.6721%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.01%)</title><rect x="17.4221%" y="501" width="0.0122%" height="15" fill="rgb(235,66,41)" fg:x="92459" fg:w="65"/><text x="17.6721%" y="511.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="17.4221%" y="485" width="0.0122%" height="15" fill="rgb(245,217,1)" fg:x="92459" fg:w="65"/><text x="17.6721%" y="495.50"></text></g><g><title>finish_task_switch (69 samples, 0.01%)</title><rect x="17.4221%" y="533" width="0.0130%" height="15" fill="rgb(229,91,1)" fg:x="92459" fg:w="69"/><text x="17.6721%" y="543.50"></text></g><g><title>do_syscall_64 (87 samples, 0.02%)</title><rect x="17.4208%" y="645" width="0.0164%" height="15" fill="rgb(207,101,30)" fg:x="92452" fg:w="87"/><text x="17.6708%" y="655.50"></text></g><g><title>__x64_sys_futex (86 samples, 0.02%)</title><rect x="17.4210%" y="629" width="0.0162%" height="15" fill="rgb(223,82,49)" fg:x="92453" fg:w="86"/><text x="17.6710%" y="639.50"></text></g><g><title>do_futex (86 samples, 0.02%)</title><rect x="17.4210%" y="613" width="0.0162%" height="15" fill="rgb(218,167,17)" fg:x="92453" fg:w="86"/><text x="17.6710%" y="623.50"></text></g><g><title>futex_wait (86 samples, 0.02%)</title><rect x="17.4210%" y="597" width="0.0162%" height="15" fill="rgb(208,103,14)" fg:x="92453" fg:w="86"/><text x="17.6710%" y="607.50"></text></g><g><title>futex_wait_queue_me (86 samples, 0.02%)</title><rect x="17.4210%" y="581" width="0.0162%" height="15" fill="rgb(238,20,8)" fg:x="92453" fg:w="86"/><text x="17.6710%" y="591.50"></text></g><g><title>schedule (86 samples, 0.02%)</title><rect x="17.4210%" y="565" width="0.0162%" height="15" fill="rgb(218,80,54)" fg:x="92453" fg:w="86"/><text x="17.6710%" y="575.50"></text></g><g><title>__schedule (85 samples, 0.02%)</title><rect x="17.4211%" y="549" width="0.0160%" height="15" fill="rgb(240,144,17)" fg:x="92454" fg:w="85"/><text x="17.6711%" y="559.50"></text></g><g><title>__GI___clone (1,135 samples, 0.21%)</title><rect x="17.2235%" y="821" width="0.2139%" height="15" fill="rgb(245,27,50)" fg:x="91405" fg:w="1135"/><text x="17.4735%" y="831.50"></text></g><g><title>start_thread (1,135 samples, 0.21%)</title><rect x="17.2235%" y="805" width="0.2139%" height="15" fill="rgb(251,51,7)" fg:x="91405" fg:w="1135"/><text x="17.4735%" y="815.50"></text></g><g><title>thread_native_entry (1,135 samples, 0.21%)</title><rect x="17.2235%" y="789" width="0.2139%" height="15" fill="rgb(245,217,29)" fg:x="91405" fg:w="1135"/><text x="17.4735%" y="799.50"></text></g><g><title>Thread::call_run (1,135 samples, 0.21%)</title><rect x="17.2235%" y="773" width="0.2139%" height="15" fill="rgb(221,176,29)" fg:x="91405" fg:w="1135"/><text x="17.4735%" y="783.50"></text></g><g><title>GangWorker::loop (1,135 samples, 0.21%)</title><rect x="17.2235%" y="757" width="0.2139%" height="15" fill="rgb(212,180,24)" fg:x="91405" fg:w="1135"/><text x="17.4735%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (90 samples, 0.02%)</title><rect x="17.4204%" y="741" width="0.0170%" height="15" fill="rgb(254,24,2)" fg:x="92450" fg:w="90"/><text x="17.6704%" y="751.50"></text></g><g><title>PosixSemaphore::wait (90 samples, 0.02%)</title><rect x="17.4204%" y="725" width="0.0170%" height="15" fill="rgb(230,100,2)" fg:x="92450" fg:w="90"/><text x="17.6704%" y="735.50"></text></g><g><title>__new_sem_wait_slow (90 samples, 0.02%)</title><rect x="17.4204%" y="709" width="0.0170%" height="15" fill="rgb(219,142,25)" fg:x="92450" fg:w="90"/><text x="17.6704%" y="719.50"></text></g><g><title>do_futex_wait (90 samples, 0.02%)</title><rect x="17.4204%" y="693" width="0.0170%" height="15" fill="rgb(240,73,43)" fg:x="92450" fg:w="90"/><text x="17.6704%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (90 samples, 0.02%)</title><rect x="17.4204%" y="677" width="0.0170%" height="15" fill="rgb(214,114,15)" fg:x="92450" fg:w="90"/><text x="17.6704%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.02%)</title><rect x="17.4208%" y="661" width="0.0166%" height="15" fill="rgb(207,130,4)" fg:x="92452" fg:w="88"/><text x="17.6708%" y="671.50"></text></g><g><title>GC_Thread#7 (1,159 samples, 0.22%)</title><rect x="17.2191%" y="837" width="0.2184%" height="15" fill="rgb(221,25,40)" fg:x="91382" fg:w="1159"/><text x="17.4691%" y="847.50"></text></g><g><title>[perf-925888.map] (112 samples, 0.02%)</title><rect x="17.4477%" y="821" width="0.0211%" height="15" fill="rgb(241,184,7)" fg:x="92595" fg:w="112"/><text x="17.6977%" y="831.50"></text></g><g><title>Service_Thread (138 samples, 0.03%)</title><rect x="17.4466%" y="837" width="0.0260%" height="15" fill="rgb(235,159,4)" fg:x="92589" fg:w="138"/><text x="17.6966%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (115 samples, 0.02%)</title><rect x="17.5078%" y="485" width="0.0217%" height="15" fill="rgb(214,87,48)" fg:x="92914" fg:w="115"/><text x="17.7578%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.02%)</title><rect x="17.5084%" y="469" width="0.0211%" height="15" fill="rgb(246,198,24)" fg:x="92917" fg:w="112"/><text x="17.7584%" y="479.50"></text></g><g><title>native_write_msr (111 samples, 0.02%)</title><rect x="17.5086%" y="453" width="0.0209%" height="15" fill="rgb(209,66,40)" fg:x="92918" fg:w="111"/><text x="17.7586%" y="463.50"></text></g><g><title>finish_task_switch (121 samples, 0.02%)</title><rect x="17.5069%" y="501" width="0.0228%" height="15" fill="rgb(233,147,39)" fg:x="92909" fg:w="121"/><text x="17.7569%" y="511.50"></text></g><g><title>futex_wait_queue_me (233 samples, 0.04%)</title><rect x="17.4943%" y="549" width="0.0439%" height="15" fill="rgb(231,145,52)" fg:x="92842" fg:w="233"/><text x="17.7443%" y="559.50"></text></g><g><title>schedule (202 samples, 0.04%)</title><rect x="17.5001%" y="533" width="0.0381%" height="15" fill="rgb(206,20,26)" fg:x="92873" fg:w="202"/><text x="17.7501%" y="543.50"></text></g><g><title>__schedule (198 samples, 0.04%)</title><rect x="17.5008%" y="517" width="0.0373%" height="15" fill="rgb(238,220,4)" fg:x="92877" fg:w="198"/><text x="17.7508%" y="527.50"></text></g><g><title>do_futex (263 samples, 0.05%)</title><rect x="17.4927%" y="581" width="0.0496%" height="15" fill="rgb(252,195,42)" fg:x="92834" fg:w="263"/><text x="17.7427%" y="591.50"></text></g><g><title>futex_wait (260 samples, 0.05%)</title><rect x="17.4933%" y="565" width="0.0490%" height="15" fill="rgb(209,10,6)" fg:x="92837" fg:w="260"/><text x="17.7433%" y="575.50"></text></g><g><title>do_syscall_64 (275 samples, 0.05%)</title><rect x="17.4914%" y="613" width="0.0518%" height="15" fill="rgb(229,3,52)" fg:x="92827" fg:w="275"/><text x="17.7414%" y="623.50"></text></g><g><title>__x64_sys_futex (273 samples, 0.05%)</title><rect x="17.4918%" y="597" width="0.0514%" height="15" fill="rgb(253,49,37)" fg:x="92829" fg:w="273"/><text x="17.7418%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (285 samples, 0.05%)</title><rect x="17.4909%" y="629" width="0.0537%" height="15" fill="rgb(240,103,49)" fg:x="92824" fg:w="285"/><text x="17.7409%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (301 samples, 0.06%)</title><rect x="17.4882%" y="677" width="0.0567%" height="15" fill="rgb(250,182,30)" fg:x="92810" fg:w="301"/><text x="17.7382%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (301 samples, 0.06%)</title><rect x="17.4882%" y="661" width="0.0567%" height="15" fill="rgb(248,8,30)" fg:x="92810" fg:w="301"/><text x="17.7382%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (294 samples, 0.06%)</title><rect x="17.4895%" y="645" width="0.0554%" height="15" fill="rgb(237,120,30)" fg:x="92817" fg:w="294"/><text x="17.7395%" y="655.50"></text></g><g><title>Monitor::wait (372 samples, 0.07%)</title><rect x="17.4816%" y="725" width="0.0701%" height="15" fill="rgb(221,146,34)" fg:x="92775" fg:w="372"/><text x="17.7316%" y="735.50"></text></g><g><title>Monitor::IWait (370 samples, 0.07%)</title><rect x="17.4820%" y="709" width="0.0697%" height="15" fill="rgb(242,55,13)" fg:x="92777" fg:w="370"/><text x="17.7320%" y="719.50"></text></g><g><title>os::PlatformEvent::park (345 samples, 0.07%)</title><rect x="17.4867%" y="693" width="0.0650%" height="15" fill="rgb(242,112,31)" fg:x="92802" fg:w="345"/><text x="17.7367%" y="703.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (95 samples, 0.02%)</title><rect x="17.5589%" y="677" width="0.0179%" height="15" fill="rgb(249,192,27)" fg:x="93185" fg:w="95"/><text x="17.8089%" y="687.50"></text></g><g><title>NMethodSweeper::possibly_sweep (159 samples, 0.03%)</title><rect x="17.5517%" y="725" width="0.0300%" height="15" fill="rgb(208,204,44)" fg:x="93147" fg:w="159"/><text x="17.8017%" y="735.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (142 samples, 0.03%)</title><rect x="17.5549%" y="709" width="0.0268%" height="15" fill="rgb(208,93,54)" fg:x="93164" fg:w="142"/><text x="17.8049%" y="719.50"></text></g><g><title>NMethodSweeper::process_compiled_method (122 samples, 0.02%)</title><rect x="17.5587%" y="693" width="0.0230%" height="15" fill="rgb(242,1,31)" fg:x="93184" fg:w="122"/><text x="17.8087%" y="703.50"></text></g><g><title>__GI___clone (554 samples, 0.10%)</title><rect x="17.4786%" y="821" width="0.1044%" height="15" fill="rgb(241,83,25)" fg:x="92759" fg:w="554"/><text x="17.7286%" y="831.50"></text></g><g><title>start_thread (554 samples, 0.10%)</title><rect x="17.4786%" y="805" width="0.1044%" height="15" fill="rgb(205,169,50)" fg:x="92759" fg:w="554"/><text x="17.7286%" y="815.50"></text></g><g><title>thread_native_entry (554 samples, 0.10%)</title><rect x="17.4786%" y="789" width="0.1044%" height="15" fill="rgb(239,186,37)" fg:x="92759" fg:w="554"/><text x="17.7286%" y="799.50"></text></g><g><title>Thread::call_run (554 samples, 0.10%)</title><rect x="17.4786%" y="773" width="0.1044%" height="15" fill="rgb(205,221,10)" fg:x="92759" fg:w="554"/><text x="17.7286%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (554 samples, 0.10%)</title><rect x="17.4786%" y="757" width="0.1044%" height="15" fill="rgb(218,196,15)" fg:x="92759" fg:w="554"/><text x="17.7286%" y="767.50"></text></g><g><title>NMethodSweeper::sweeper_loop (553 samples, 0.10%)</title><rect x="17.4788%" y="741" width="0.1042%" height="15" fill="rgb(218,196,35)" fg:x="92760" fg:w="553"/><text x="17.7288%" y="751.50"></text></g><g><title>Sweeper_thread (580 samples, 0.11%)</title><rect x="17.4754%" y="837" width="0.1093%" height="15" fill="rgb(233,63,24)" fg:x="92742" fg:w="580"/><text x="17.7254%" y="847.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.01%)</title><rect x="17.6444%" y="629" width="0.0106%" height="15" fill="rgb(225,8,4)" fg:x="93639" fg:w="56"/><text x="17.8944%" y="639.50"></text></g><g><title>do_syscall_64 (61 samples, 0.01%)</title><rect x="17.6437%" y="693" width="0.0115%" height="15" fill="rgb(234,105,35)" fg:x="93635" fg:w="61"/><text x="17.8937%" y="703.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.01%)</title><rect x="17.6437%" y="677" width="0.0115%" height="15" fill="rgb(236,21,32)" fg:x="93635" fg:w="61"/><text x="17.8937%" y="687.50"></text></g><g><title>do_futex (59 samples, 0.01%)</title><rect x="17.6441%" y="661" width="0.0111%" height="15" fill="rgb(228,109,6)" fg:x="93637" fg:w="59"/><text x="17.8941%" y="671.50"></text></g><g><title>futex_wait (59 samples, 0.01%)</title><rect x="17.6441%" y="645" width="0.0111%" height="15" fill="rgb(229,215,31)" fg:x="93637" fg:w="59"/><text x="17.8941%" y="655.50"></text></g><g><title>__pthread_cond_timedwait (65 samples, 0.01%)</title><rect x="17.6433%" y="757" width="0.0122%" height="15" fill="rgb(221,52,54)" fg:x="93633" fg:w="65"/><text x="17.8933%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (65 samples, 0.01%)</title><rect x="17.6433%" y="741" width="0.0122%" height="15" fill="rgb(252,129,43)" fg:x="93633" fg:w="65"/><text x="17.8933%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (64 samples, 0.01%)</title><rect x="17.6435%" y="725" width="0.0121%" height="15" fill="rgb(248,183,27)" fg:x="93634" fg:w="64"/><text x="17.8935%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="17.6437%" y="709" width="0.0119%" height="15" fill="rgb(250,0,22)" fg:x="93635" fg:w="63"/><text x="17.8937%" y="719.50"></text></g><g><title>JVM_Sleep (71 samples, 0.01%)</title><rect x="17.6424%" y="805" width="0.0134%" height="15" fill="rgb(213,166,10)" fg:x="93628" fg:w="71"/><text x="17.8924%" y="815.50"></text></g><g><title>os::sleep (69 samples, 0.01%)</title><rect x="17.6427%" y="789" width="0.0130%" height="15" fill="rgb(207,163,36)" fg:x="93630" fg:w="69"/><text x="17.8927%" y="799.50"></text></g><g><title>os::PlatformEvent::park (67 samples, 0.01%)</title><rect x="17.6431%" y="773" width="0.0126%" height="15" fill="rgb(208,122,22)" fg:x="93632" fg:w="67"/><text x="17.8931%" y="783.50"></text></g><g><title>get_cpu_load (76 samples, 0.01%)</title><rect x="17.6831%" y="805" width="0.0143%" height="15" fill="rgb(207,104,49)" fg:x="93844" fg:w="76"/><text x="17.9331%" y="815.50"></text></g><g><title>get_cpuload_internal (76 samples, 0.01%)</title><rect x="17.6831%" y="789" width="0.0143%" height="15" fill="rgb(248,211,50)" fg:x="93844" fg:w="76"/><text x="17.9331%" y="799.50"></text></g><g><title>get_totalticks (76 samples, 0.01%)</title><rect x="17.6831%" y="773" width="0.0143%" height="15" fill="rgb(217,13,45)" fg:x="93844" fg:w="76"/><text x="17.9331%" y="783.50"></text></g><g><title>[perf-925888.map] (579 samples, 0.11%)</title><rect x="17.5898%" y="821" width="0.1091%" height="15" fill="rgb(211,216,49)" fg:x="93349" fg:w="579"/><text x="17.8398%" y="831.50"></text></g><g><title>Thread-0 (648 samples, 0.12%)</title><rect x="17.5847%" y="837" width="0.1221%" height="15" fill="rgb(221,58,53)" fg:x="93322" fg:w="648"/><text x="17.8347%" y="847.50"></text></g><g><title>futex_wait_queue_me (75 samples, 0.01%)</title><rect x="17.7258%" y="549" width="0.0141%" height="15" fill="rgb(220,112,41)" fg:x="94071" fg:w="75"/><text x="17.9758%" y="559.50"></text></g><g><title>schedule (64 samples, 0.01%)</title><rect x="17.7279%" y="533" width="0.0121%" height="15" fill="rgb(236,38,28)" fg:x="94082" fg:w="64"/><text x="17.9779%" y="543.50"></text></g><g><title>__schedule (62 samples, 0.01%)</title><rect x="17.7283%" y="517" width="0.0117%" height="15" fill="rgb(227,195,22)" fg:x="94084" fg:w="62"/><text x="17.9783%" y="527.50"></text></g><g><title>do_futex (83 samples, 0.02%)</title><rect x="17.7247%" y="581" width="0.0156%" height="15" fill="rgb(214,55,33)" fg:x="94065" fg:w="83"/><text x="17.9747%" y="591.50"></text></g><g><title>futex_wait (82 samples, 0.02%)</title><rect x="17.7249%" y="565" width="0.0155%" height="15" fill="rgb(248,80,13)" fg:x="94066" fg:w="82"/><text x="17.9749%" y="575.50"></text></g><g><title>do_syscall_64 (86 samples, 0.02%)</title><rect x="17.7243%" y="613" width="0.0162%" height="15" fill="rgb(238,52,6)" fg:x="94063" fg:w="86"/><text x="17.9743%" y="623.50"></text></g><g><title>__x64_sys_futex (85 samples, 0.02%)</title><rect x="17.7245%" y="597" width="0.0160%" height="15" fill="rgb(224,198,47)" fg:x="94064" fg:w="85"/><text x="17.9745%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (111 samples, 0.02%)</title><rect x="17.7211%" y="677" width="0.0209%" height="15" fill="rgb(233,171,20)" fg:x="94046" fg:w="111"/><text x="17.9711%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (111 samples, 0.02%)</title><rect x="17.7211%" y="661" width="0.0209%" height="15" fill="rgb(241,30,25)" fg:x="94046" fg:w="111"/><text x="17.9711%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.02%)</title><rect x="17.7221%" y="645" width="0.0200%" height="15" fill="rgb(207,171,38)" fg:x="94051" fg:w="106"/><text x="17.9721%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (95 samples, 0.02%)</title><rect x="17.7241%" y="629" width="0.0179%" height="15" fill="rgb(234,70,1)" fg:x="94062" fg:w="95"/><text x="17.9741%" y="639.50"></text></g><g><title>Monitor::wait (143 samples, 0.03%)</title><rect x="17.7175%" y="725" width="0.0269%" height="15" fill="rgb(232,178,18)" fg:x="94027" fg:w="143"/><text x="17.9675%" y="735.50"></text></g><g><title>Monitor::IWait (142 samples, 0.03%)</title><rect x="17.7177%" y="709" width="0.0268%" height="15" fill="rgb(241,78,40)" fg:x="94028" fg:w="142"/><text x="17.9677%" y="719.50"></text></g><g><title>os::PlatformEvent::park (131 samples, 0.02%)</title><rect x="17.7198%" y="693" width="0.0247%" height="15" fill="rgb(222,35,25)" fg:x="94039" fg:w="131"/><text x="17.9698%" y="703.50"></text></g><g><title>__GI___clone (187 samples, 0.04%)</title><rect x="17.7100%" y="821" width="0.0352%" height="15" fill="rgb(207,92,16)" fg:x="93987" fg:w="187"/><text x="17.9600%" y="831.50"></text></g><g><title>start_thread (187 samples, 0.04%)</title><rect x="17.7100%" y="805" width="0.0352%" height="15" fill="rgb(216,59,51)" fg:x="93987" fg:w="187"/><text x="17.9600%" y="815.50"></text></g><g><title>thread_native_entry (187 samples, 0.04%)</title><rect x="17.7100%" y="789" width="0.0352%" height="15" fill="rgb(213,80,28)" fg:x="93987" fg:w="187"/><text x="17.9600%" y="799.50"></text></g><g><title>Thread::call_run (187 samples, 0.04%)</title><rect x="17.7100%" y="773" width="0.0352%" height="15" fill="rgb(220,93,7)" fg:x="93987" fg:w="187"/><text x="17.9600%" y="783.50"></text></g><g><title>WatcherThread::run (187 samples, 0.04%)</title><rect x="17.7100%" y="757" width="0.0352%" height="15" fill="rgb(225,24,44)" fg:x="93987" fg:w="187"/><text x="17.9600%" y="767.50"></text></g><g><title>WatcherThread::sleep (149 samples, 0.03%)</title><rect x="17.7172%" y="741" width="0.0281%" height="15" fill="rgb(243,74,40)" fg:x="94025" fg:w="149"/><text x="17.9672%" y="751.50"></text></g><g><title>VM_Periodic_Tas (207 samples, 0.04%)</title><rect x="17.7068%" y="837" width="0.0390%" height="15" fill="rgb(228,39,7)" fg:x="93970" fg:w="207"/><text x="17.9568%" y="847.50"></text></g><g><title>[unknown] (84 samples, 0.02%)</title><rect x="17.7494%" y="821" width="0.0158%" height="15" fill="rgb(227,79,8)" fg:x="94196" fg:w="84"/><text x="17.9994%" y="831.50"></text></g><g><title>vframe::sender (79 samples, 0.01%)</title><rect x="17.7503%" y="805" width="0.0149%" height="15" fill="rgb(236,58,11)" fg:x="94201" fg:w="79"/><text x="18.0003%" y="815.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.01%)</title><rect x="17.7748%" y="549" width="0.0104%" height="15" fill="rgb(249,63,35)" fg:x="94331" fg:w="55"/><text x="18.0248%" y="559.50"></text></g><g><title>do_futex (57 samples, 0.01%)</title><rect x="17.7748%" y="581" width="0.0107%" height="15" fill="rgb(252,114,16)" fg:x="94331" fg:w="57"/><text x="18.0248%" y="591.50"></text></g><g><title>futex_wait (57 samples, 0.01%)</title><rect x="17.7748%" y="565" width="0.0107%" height="15" fill="rgb(254,151,24)" fg:x="94331" fg:w="57"/><text x="18.0248%" y="575.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="17.7746%" y="613" width="0.0111%" height="15" fill="rgb(253,54,39)" fg:x="94330" fg:w="59"/><text x="18.0246%" y="623.50"></text></g><g><title>__x64_sys_futex (59 samples, 0.01%)</title><rect x="17.7746%" y="597" width="0.0111%" height="15" fill="rgb(243,25,45)" fg:x="94330" fg:w="59"/><text x="18.0246%" y="607.50"></text></g><g><title>Monitor::wait (68 samples, 0.01%)</title><rect x="17.7731%" y="725" width="0.0128%" height="15" fill="rgb(234,134,9)" fg:x="94322" fg:w="68"/><text x="18.0231%" y="735.50"></text></g><g><title>Monitor::IWait (68 samples, 0.01%)</title><rect x="17.7731%" y="709" width="0.0128%" height="15" fill="rgb(227,166,31)" fg:x="94322" fg:w="68"/><text x="18.0231%" y="719.50"></text></g><g><title>os::PlatformEvent::park (66 samples, 0.01%)</title><rect x="17.7735%" y="693" width="0.0124%" height="15" fill="rgb(245,143,41)" fg:x="94324" fg:w="66"/><text x="18.0235%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (66 samples, 0.01%)</title><rect x="17.7735%" y="677" width="0.0124%" height="15" fill="rgb(238,181,32)" fg:x="94324" fg:w="66"/><text x="18.0235%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (66 samples, 0.01%)</title><rect x="17.7735%" y="661" width="0.0124%" height="15" fill="rgb(224,113,18)" fg:x="94324" fg:w="66"/><text x="18.0235%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (65 samples, 0.01%)</title><rect x="17.7737%" y="645" width="0.0122%" height="15" fill="rgb(240,229,28)" fg:x="94325" fg:w="65"/><text x="18.0237%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="17.7746%" y="629" width="0.0113%" height="15" fill="rgb(250,185,3)" fg:x="94330" fg:w="60"/><text x="18.0246%" y="639.50"></text></g><g><title>do_syscall_64 (64 samples, 0.01%)</title><rect x="17.8076%" y="597" width="0.0121%" height="15" fill="rgb(212,59,25)" fg:x="94505" fg:w="64"/><text x="18.0576%" y="607.50"></text></g><g><title>__x64_sys_futex (64 samples, 0.01%)</title><rect x="17.8076%" y="581" width="0.0121%" height="15" fill="rgb(221,87,20)" fg:x="94505" fg:w="64"/><text x="18.0576%" y="591.50"></text></g><g><title>do_futex (64 samples, 0.01%)</title><rect x="17.8076%" y="565" width="0.0121%" height="15" fill="rgb(213,74,28)" fg:x="94505" fg:w="64"/><text x="18.0576%" y="575.50"></text></g><g><title>futex_wake (64 samples, 0.01%)</title><rect x="17.8076%" y="549" width="0.0121%" height="15" fill="rgb(224,132,34)" fg:x="94505" fg:w="64"/><text x="18.0576%" y="559.50"></text></g><g><title>wake_up_q (57 samples, 0.01%)</title><rect x="17.8089%" y="533" width="0.0107%" height="15" fill="rgb(222,101,24)" fg:x="94512" fg:w="57"/><text x="18.0589%" y="543.50"></text></g><g><title>try_to_wake_up (57 samples, 0.01%)</title><rect x="17.8089%" y="517" width="0.0107%" height="15" fill="rgb(254,142,4)" fg:x="94512" fg:w="57"/><text x="18.0589%" y="527.50"></text></g><g><title>PosixSemaphore::signal (68 samples, 0.01%)</title><rect x="17.8070%" y="661" width="0.0128%" height="15" fill="rgb(230,229,49)" fg:x="94502" fg:w="68"/><text x="18.0570%" y="671.50"></text></g><g><title>__new_sem_post (68 samples, 0.01%)</title><rect x="17.8070%" y="645" width="0.0128%" height="15" fill="rgb(238,70,47)" fg:x="94502" fg:w="68"/><text x="18.0570%" y="655.50"></text></g><g><title>futex_wake (66 samples, 0.01%)</title><rect x="17.8074%" y="629" width="0.0124%" height="15" fill="rgb(231,160,17)" fg:x="94504" fg:w="66"/><text x="18.0574%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="17.8076%" y="613" width="0.0122%" height="15" fill="rgb(218,68,53)" fg:x="94505" fg:w="65"/><text x="18.0576%" y="623.50"></text></g><g><title>WorkGang::run_task (108 samples, 0.02%)</title><rect x="17.8067%" y="693" width="0.0204%" height="15" fill="rgb(236,111,10)" fg:x="94500" fg:w="108"/><text x="18.0567%" y="703.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (106 samples, 0.02%)</title><rect x="17.8070%" y="677" width="0.0200%" height="15" fill="rgb(224,34,41)" fg:x="94502" fg:w="106"/><text x="18.0570%" y="687.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (117 samples, 0.02%)</title><rect x="17.8054%" y="709" width="0.0220%" height="15" fill="rgb(241,118,19)" fg:x="94493" fg:w="117"/><text x="18.0554%" y="719.50"></text></g><g><title>SafepointSynchronize::begin (254 samples, 0.05%)</title><rect x="17.7859%" y="725" width="0.0479%" height="15" fill="rgb(238,129,25)" fg:x="94390" fg:w="254"/><text x="18.0359%" y="735.50"></text></g><g><title>VM_Operation::evaluate (133 samples, 0.03%)</title><rect x="17.8400%" y="709" width="0.0251%" height="15" fill="rgb(238,22,31)" fg:x="94677" fg:w="133"/><text x="18.0900%" y="719.50"></text></g><g><title>VMThread::evaluate_operation (136 samples, 0.03%)</title><rect x="17.8396%" y="725" width="0.0256%" height="15" fill="rgb(222,174,48)" fg:x="94675" fg:w="136"/><text x="18.0896%" y="735.50"></text></g><g><title>Thread::call_run (510 samples, 0.10%)</title><rect x="17.7701%" y="773" width="0.0961%" height="15" fill="rgb(206,152,40)" fg:x="94306" fg:w="510"/><text x="18.0201%" y="783.50"></text></g><g><title>VMThread::run (510 samples, 0.10%)</title><rect x="17.7701%" y="757" width="0.0961%" height="15" fill="rgb(218,99,54)" fg:x="94306" fg:w="510"/><text x="18.0201%" y="767.50"></text></g><g><title>VMThread::loop (510 samples, 0.10%)</title><rect x="17.7701%" y="741" width="0.0961%" height="15" fill="rgb(220,174,26)" fg:x="94306" fg:w="510"/><text x="18.0201%" y="751.50"></text></g><g><title>__GI___clone (539 samples, 0.10%)</title><rect x="17.7652%" y="821" width="0.1016%" height="15" fill="rgb(245,116,9)" fg:x="94280" fg:w="539"/><text x="18.0152%" y="831.50"></text></g><g><title>start_thread (513 samples, 0.10%)</title><rect x="17.7701%" y="805" width="0.0967%" height="15" fill="rgb(209,72,35)" fg:x="94306" fg:w="513"/><text x="18.0201%" y="815.50"></text></g><g><title>thread_native_entry (513 samples, 0.10%)</title><rect x="17.7701%" y="789" width="0.0967%" height="15" fill="rgb(226,126,21)" fg:x="94306" fg:w="513"/><text x="18.0201%" y="799.50"></text></g><g><title>VM_Thread (648 samples, 0.12%)</title><rect x="17.7458%" y="837" width="0.1221%" height="15" fill="rgb(227,192,1)" fg:x="94177" fg:w="648"/><text x="17.9958%" y="847.50"></text></g><g><title>schedule_hrtimeout_range_clock (74 samples, 0.01%)</title><rect x="17.9459%" y="741" width="0.0139%" height="15" fill="rgb(237,180,29)" fg:x="95239" fg:w="74"/><text x="18.1959%" y="751.50"></text></g><g><title>schedule (66 samples, 0.01%)</title><rect x="17.9474%" y="725" width="0.0124%" height="15" fill="rgb(230,197,35)" fg:x="95247" fg:w="66"/><text x="18.1974%" y="735.50"></text></g><g><title>__schedule (66 samples, 0.01%)</title><rect x="17.9474%" y="709" width="0.0124%" height="15" fill="rgb(246,193,31)" fg:x="95247" fg:w="66"/><text x="18.1974%" y="719.50"></text></g><g><title>do_epoll_wait (84 samples, 0.02%)</title><rect x="17.9444%" y="757" width="0.0158%" height="15" fill="rgb(241,36,4)" fg:x="95231" fg:w="84"/><text x="18.1944%" y="767.50"></text></g><g><title>__x64_sys_epoll_pwait (85 samples, 0.02%)</title><rect x="17.9444%" y="773" width="0.0160%" height="15" fill="rgb(241,130,17)" fg:x="95231" fg:w="85"/><text x="18.1944%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (83 samples, 0.02%)</title><rect x="17.9657%" y="661" width="0.0156%" height="15" fill="rgb(206,137,32)" fg:x="95344" fg:w="83"/><text x="18.2157%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.02%)</title><rect x="17.9661%" y="645" width="0.0153%" height="15" fill="rgb(237,228,51)" fg:x="95346" fg:w="81"/><text x="18.2161%" y="655.50"></text></g><g><title>native_write_msr (80 samples, 0.02%)</title><rect x="17.9663%" y="629" width="0.0151%" height="15" fill="rgb(243,6,42)" fg:x="95347" fg:w="80"/><text x="18.2163%" y="639.50"></text></g><g><title>finish_task_switch (93 samples, 0.02%)</title><rect x="17.9650%" y="677" width="0.0175%" height="15" fill="rgb(251,74,28)" fg:x="95340" fg:w="93"/><text x="18.2150%" y="687.50"></text></g><g><title>futex_wait_queue_me (125 samples, 0.02%)</title><rect x="17.9617%" y="725" width="0.0236%" height="15" fill="rgb(218,20,49)" fg:x="95323" fg:w="125"/><text x="18.2117%" y="735.50"></text></g><g><title>schedule (122 samples, 0.02%)</title><rect x="17.9623%" y="709" width="0.0230%" height="15" fill="rgb(238,28,14)" fg:x="95326" fg:w="122"/><text x="18.2123%" y="719.50"></text></g><g><title>__schedule (119 samples, 0.02%)</title><rect x="17.9629%" y="693" width="0.0224%" height="15" fill="rgb(229,40,46)" fg:x="95329" fg:w="119"/><text x="18.2129%" y="703.50"></text></g><g><title>futex_wait (133 samples, 0.03%)</title><rect x="17.9610%" y="741" width="0.0251%" height="15" fill="rgb(244,195,20)" fg:x="95319" fg:w="133"/><text x="18.2110%" y="751.50"></text></g><g><title>do_futex (156 samples, 0.03%)</title><rect x="17.9606%" y="757" width="0.0294%" height="15" fill="rgb(253,56,35)" fg:x="95317" fg:w="156"/><text x="18.2106%" y="767.50"></text></g><g><title>__x64_sys_futex (157 samples, 0.03%)</title><rect x="17.9606%" y="773" width="0.0296%" height="15" fill="rgb(210,149,44)" fg:x="95317" fg:w="157"/><text x="18.2106%" y="783.50"></text></g><g><title>do_syscall_64 (345 samples, 0.07%)</title><rect x="17.9433%" y="789" width="0.0650%" height="15" fill="rgb(240,135,12)" fg:x="95225" fg:w="345"/><text x="18.1933%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (356 samples, 0.07%)</title><rect x="17.9427%" y="805" width="0.0671%" height="15" fill="rgb(251,24,50)" fg:x="95222" fg:w="356"/><text x="18.1927%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.01%)</title><rect x="18.0111%" y="757" width="0.0104%" height="15" fill="rgb(243,200,47)" fg:x="95585" fg:w="55"/><text x="18.2611%" y="767.50"></text></g><g><title>schedule_tail (61 samples, 0.01%)</title><rect x="18.0104%" y="789" width="0.0115%" height="15" fill="rgb(224,166,26)" fg:x="95581" fg:w="61"/><text x="18.2604%" y="799.50"></text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="18.0104%" y="773" width="0.0115%" height="15" fill="rgb(233,0,47)" fg:x="95581" fg:w="61"/><text x="18.2604%" y="783.50"></text></g><g><title>ret_from_fork (63 samples, 0.01%)</title><rect x="18.0102%" y="805" width="0.0119%" height="15" fill="rgb(253,80,5)" fg:x="95580" fg:w="63"/><text x="18.2602%" y="815.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (770 samples, 0.15%)</title><rect x="17.8771%" y="821" width="0.1451%" height="15" fill="rgb(214,133,25)" fg:x="94874" fg:w="770"/><text x="18.1271%" y="831.50"></text></g><g><title>bazel (835 samples, 0.16%)</title><rect x="17.8762%" y="837" width="0.1573%" height="15" fill="rgb(209,27,14)" fg:x="94869" fg:w="835"/><text x="18.1262%" y="847.50"></text></g><g><title>elf_machine_rela (73 samples, 0.01%)</title><rect x="18.0545%" y="709" width="0.0138%" height="15" fill="rgb(219,102,51)" fg:x="95815" fg:w="73"/><text x="18.3045%" y="719.50"></text></g><g><title>_dl_lookup_symbol_x (56 samples, 0.01%)</title><rect x="18.0577%" y="693" width="0.0106%" height="15" fill="rgb(237,18,16)" fg:x="95832" fg:w="56"/><text x="18.3077%" y="703.50"></text></g><g><title>_dl_relocate_object (92 samples, 0.02%)</title><rect x="18.0513%" y="741" width="0.0173%" height="15" fill="rgb(241,85,17)" fg:x="95798" fg:w="92"/><text x="18.3013%" y="751.50"></text></g><g><title>elf_dynamic_do_Rela (90 samples, 0.02%)</title><rect x="18.0516%" y="725" width="0.0170%" height="15" fill="rgb(236,90,42)" fg:x="95800" fg:w="90"/><text x="18.3016%" y="735.50"></text></g><g><title>_dl_start_final (141 samples, 0.03%)</title><rect x="18.0426%" y="789" width="0.0266%" height="15" fill="rgb(249,57,21)" fg:x="95752" fg:w="141"/><text x="18.2926%" y="799.50"></text></g><g><title>_dl_sysdep_start (140 samples, 0.03%)</title><rect x="18.0428%" y="773" width="0.0264%" height="15" fill="rgb(243,12,36)" fg:x="95753" fg:w="140"/><text x="18.2928%" y="783.50"></text></g><g><title>[ld-2.31.so] (140 samples, 0.03%)</title><rect x="18.0428%" y="757" width="0.0264%" height="15" fill="rgb(253,128,47)" fg:x="95753" fg:w="140"/><text x="18.2928%" y="767.50"></text></g><g><title>_dl_start (144 samples, 0.03%)</title><rect x="18.0426%" y="805" width="0.0271%" height="15" fill="rgb(207,33,20)" fg:x="95752" fg:w="144"/><text x="18.2926%" y="815.50"></text></g><g><title>_start (160 samples, 0.03%)</title><rect x="18.0399%" y="821" width="0.0301%" height="15" fill="rgb(233,215,35)" fg:x="95738" fg:w="160"/><text x="18.2899%" y="831.50"></text></g><g><title>build-runfiles (251 samples, 0.05%)</title><rect x="18.0343%" y="837" width="0.0473%" height="15" fill="rgb(249,188,52)" fg:x="95708" fg:w="251"/><text x="18.2843%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="18.0708%" y="821" width="0.0107%" height="15" fill="rgb(225,12,32)" fg:x="95902" fg:w="57"/><text x="18.3208%" y="831.50"></text></g><g><title>do_syscall_64 (57 samples, 0.01%)</title><rect x="18.0708%" y="805" width="0.0107%" height="15" fill="rgb(247,98,14)" fg:x="95902" fg:w="57"/><text x="18.3208%" y="815.50"></text></g><g><title>__GI___libc_malloc (62 samples, 0.01%)</title><rect x="18.1298%" y="453" width="0.0117%" height="15" fill="rgb(247,219,48)" fg:x="96215" fg:w="62"/><text x="18.3798%" y="463.50"></text></g><g><title>_int_malloc (62 samples, 0.01%)</title><rect x="18.1298%" y="437" width="0.0117%" height="15" fill="rgb(253,60,48)" fg:x="96215" fg:w="62"/><text x="18.3798%" y="447.50"></text></g><g><title>[dash] (63 samples, 0.01%)</title><rect x="18.1298%" y="469" width="0.0119%" height="15" fill="rgb(245,15,52)" fg:x="96215" fg:w="63"/><text x="18.3798%" y="479.50"></text></g><g><title>[dash] (69 samples, 0.01%)</title><rect x="18.1291%" y="485" width="0.0130%" height="15" fill="rgb(220,133,28)" fg:x="96211" fg:w="69"/><text x="18.3791%" y="495.50"></text></g><g><title>[dash] (84 samples, 0.02%)</title><rect x="18.1289%" y="501" width="0.0158%" height="15" fill="rgb(217,180,4)" fg:x="96210" fg:w="84"/><text x="18.3789%" y="511.50"></text></g><g><title>new_sync_write (54 samples, 0.01%)</title><rect x="18.1528%" y="421" width="0.0102%" height="15" fill="rgb(251,24,1)" fg:x="96337" fg:w="54"/><text x="18.4028%" y="431.50"></text></g><g><title>do_syscall_64 (89 samples, 0.02%)</title><rect x="18.1487%" y="469" width="0.0168%" height="15" fill="rgb(212,185,49)" fg:x="96315" fg:w="89"/><text x="18.3987%" y="479.50"></text></g><g><title>ksys_write (89 samples, 0.02%)</title><rect x="18.1487%" y="453" width="0.0168%" height="15" fill="rgb(215,175,22)" fg:x="96315" fg:w="89"/><text x="18.3987%" y="463.50"></text></g><g><title>vfs_write (85 samples, 0.02%)</title><rect x="18.1494%" y="437" width="0.0160%" height="15" fill="rgb(250,205,14)" fg:x="96319" fg:w="85"/><text x="18.3994%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.02%)</title><rect x="18.1487%" y="485" width="0.0170%" height="15" fill="rgb(225,211,22)" fg:x="96315" fg:w="90"/><text x="18.3987%" y="495.50"></text></g><g><title>__GI___libc_write (95 samples, 0.02%)</title><rect x="18.1479%" y="501" width="0.0179%" height="15" fill="rgb(251,179,42)" fg:x="96311" fg:w="95"/><text x="18.3979%" y="511.50"></text></g><g><title>alloc_bprm (87 samples, 0.02%)</title><rect x="18.1669%" y="421" width="0.0164%" height="15" fill="rgb(208,216,51)" fg:x="96412" fg:w="87"/><text x="18.4169%" y="431.50"></text></g><g><title>link_path_walk.part.0 (59 samples, 0.01%)</title><rect x="18.1980%" y="357" width="0.0111%" height="15" fill="rgb(235,36,11)" fg:x="96577" fg:w="59"/><text x="18.4480%" y="367.50"></text></g><g><title>do_open_execat (131 samples, 0.02%)</title><rect x="18.1884%" y="405" width="0.0247%" height="15" fill="rgb(213,189,28)" fg:x="96526" fg:w="131"/><text x="18.4384%" y="415.50"></text></g><g><title>do_filp_open (130 samples, 0.02%)</title><rect x="18.1886%" y="389" width="0.0245%" height="15" fill="rgb(227,203,42)" fg:x="96527" fg:w="130"/><text x="18.4386%" y="399.50"></text></g><g><title>path_openat (129 samples, 0.02%)</title><rect x="18.1888%" y="373" width="0.0243%" height="15" fill="rgb(244,72,36)" fg:x="96528" fg:w="129"/><text x="18.4388%" y="383.50"></text></g><g><title>btrfs_lookup_xattr (59 samples, 0.01%)</title><rect x="18.2188%" y="293" width="0.0111%" height="15" fill="rgb(213,53,17)" fg:x="96687" fg:w="59"/><text x="18.4688%" y="303.50"></text></g><g><title>btrfs_search_slot (58 samples, 0.01%)</title><rect x="18.2190%" y="277" width="0.0109%" height="15" fill="rgb(207,167,3)" fg:x="96688" fg:w="58"/><text x="18.4690%" y="287.50"></text></g><g><title>btrfs_getxattr (76 samples, 0.01%)</title><rect x="18.2169%" y="309" width="0.0143%" height="15" fill="rgb(216,98,30)" fg:x="96677" fg:w="76"/><text x="18.4669%" y="319.50"></text></g><g><title>get_vfs_caps_from_disk (78 samples, 0.01%)</title><rect x="18.2169%" y="341" width="0.0147%" height="15" fill="rgb(236,123,15)" fg:x="96677" fg:w="78"/><text x="18.4669%" y="351.50"></text></g><g><title>__vfs_getxattr (78 samples, 0.01%)</title><rect x="18.2169%" y="325" width="0.0147%" height="15" fill="rgb(248,81,50)" fg:x="96677" fg:w="78"/><text x="18.4669%" y="335.50"></text></g><g><title>security_bprm_creds_from_file (84 samples, 0.02%)</title><rect x="18.2159%" y="373" width="0.0158%" height="15" fill="rgb(214,120,4)" fg:x="96672" fg:w="84"/><text x="18.4659%" y="383.50"></text></g><g><title>cap_bprm_creds_from_file (83 samples, 0.02%)</title><rect x="18.2161%" y="357" width="0.0156%" height="15" fill="rgb(208,179,34)" fg:x="96673" fg:w="83"/><text x="18.4661%" y="367.50"></text></g><g><title>begin_new_exec (92 samples, 0.02%)</title><rect x="18.2146%" y="389" width="0.0173%" height="15" fill="rgb(227,140,7)" fg:x="96665" fg:w="92"/><text x="18.4646%" y="399.50"></text></g><g><title>load_elf_binary (166 samples, 0.03%)</title><rect x="18.2131%" y="405" width="0.0313%" height="15" fill="rgb(214,22,6)" fg:x="96657" fg:w="166"/><text x="18.4631%" y="415.50"></text></g><g><title>select_task_rq_fair (83 samples, 0.02%)</title><rect x="18.2546%" y="389" width="0.0156%" height="15" fill="rgb(207,137,27)" fg:x="96877" fg:w="83"/><text x="18.5046%" y="399.50"></text></g><g><title>find_idlest_group (69 samples, 0.01%)</title><rect x="18.2572%" y="373" width="0.0130%" height="15" fill="rgb(210,8,46)" fg:x="96891" fg:w="69"/><text x="18.5072%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (162 samples, 0.03%)</title><rect x="18.2713%" y="325" width="0.0305%" height="15" fill="rgb(240,16,54)" fg:x="96966" fg:w="162"/><text x="18.5213%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (159 samples, 0.03%)</title><rect x="18.2719%" y="309" width="0.0300%" height="15" fill="rgb(211,209,29)" fg:x="96969" fg:w="159"/><text x="18.5219%" y="319.50"></text></g><g><title>native_write_msr (158 samples, 0.03%)</title><rect x="18.2721%" y="293" width="0.0298%" height="15" fill="rgb(226,228,24)" fg:x="96970" fg:w="158"/><text x="18.5221%" y="303.50"></text></g><g><title>finish_task_switch (169 samples, 0.03%)</title><rect x="18.2706%" y="341" width="0.0318%" height="15" fill="rgb(222,84,9)" fg:x="96962" fg:w="169"/><text x="18.5206%" y="351.50"></text></g><g><title>_cond_resched (170 samples, 0.03%)</title><rect x="18.2706%" y="373" width="0.0320%" height="15" fill="rgb(234,203,30)" fg:x="96962" fg:w="170"/><text x="18.5206%" y="383.50"></text></g><g><title>__schedule (170 samples, 0.03%)</title><rect x="18.2706%" y="357" width="0.0320%" height="15" fill="rgb(238,109,14)" fg:x="96962" fg:w="170"/><text x="18.5206%" y="367.50"></text></g><g><title>sched_exec (258 samples, 0.05%)</title><rect x="18.2544%" y="405" width="0.0486%" height="15" fill="rgb(233,206,34)" fg:x="96876" fg:w="258"/><text x="18.5044%" y="415.50"></text></g><g><title>stop_one_cpu (174 samples, 0.03%)</title><rect x="18.2702%" y="389" width="0.0328%" height="15" fill="rgb(220,167,47)" fg:x="96960" fg:w="174"/><text x="18.5202%" y="399.50"></text></g><g><title>security_bprm_check (86 samples, 0.02%)</title><rect x="18.3030%" y="405" width="0.0162%" height="15" fill="rgb(238,105,10)" fg:x="97134" fg:w="86"/><text x="18.5530%" y="415.50"></text></g><g><title>tomoyo_bprm_check_security (86 samples, 0.02%)</title><rect x="18.3030%" y="389" width="0.0162%" height="15" fill="rgb(213,227,17)" fg:x="97134" fg:w="86"/><text x="18.5530%" y="399.50"></text></g><g><title>tomoyo_find_next_domain (84 samples, 0.02%)</title><rect x="18.3034%" y="373" width="0.0158%" height="15" fill="rgb(217,132,38)" fg:x="97136" fg:w="84"/><text x="18.5534%" y="383.50"></text></g><g><title>apparmor_bprm_creds_for_exec (112 samples, 0.02%)</title><rect x="18.3194%" y="389" width="0.0211%" height="15" fill="rgb(242,146,4)" fg:x="97221" fg:w="112"/><text x="18.5694%" y="399.50"></text></g><g><title>profile_transition (99 samples, 0.02%)</title><rect x="18.3218%" y="373" width="0.0187%" height="15" fill="rgb(212,61,9)" fg:x="97234" fg:w="99"/><text x="18.5718%" y="383.50"></text></g><g><title>find_attach (78 samples, 0.01%)</title><rect x="18.3258%" y="357" width="0.0147%" height="15" fill="rgb(247,126,22)" fg:x="97255" fg:w="78"/><text x="18.5758%" y="367.50"></text></g><g><title>security_bprm_creds_for_exec (115 samples, 0.02%)</title><rect x="18.3192%" y="405" width="0.0217%" height="15" fill="rgb(220,196,2)" fg:x="97220" fg:w="115"/><text x="18.5692%" y="415.50"></text></g><g><title>bprm_execve (841 samples, 0.16%)</title><rect x="18.1833%" y="421" width="0.1585%" height="15" fill="rgb(208,46,4)" fg:x="96499" fg:w="841"/><text x="18.4333%" y="431.50"></text></g><g><title>__get_user_pages_remote (158 samples, 0.03%)</title><rect x="18.3424%" y="389" width="0.0298%" height="15" fill="rgb(252,104,46)" fg:x="97343" fg:w="158"/><text x="18.5924%" y="399.50"></text></g><g><title>__get_user_pages (158 samples, 0.03%)</title><rect x="18.3424%" y="373" width="0.0298%" height="15" fill="rgb(237,152,48)" fg:x="97343" fg:w="158"/><text x="18.5924%" y="383.50"></text></g><g><title>handle_mm_fault (131 samples, 0.02%)</title><rect x="18.3475%" y="357" width="0.0247%" height="15" fill="rgb(221,59,37)" fg:x="97370" fg:w="131"/><text x="18.5975%" y="367.50"></text></g><g><title>copy_string_kernel (168 samples, 0.03%)</title><rect x="18.3418%" y="421" width="0.0317%" height="15" fill="rgb(209,202,51)" fg:x="97340" fg:w="168"/><text x="18.5918%" y="431.50"></text></g><g><title>get_arg_page (166 samples, 0.03%)</title><rect x="18.3422%" y="405" width="0.0313%" height="15" fill="rgb(228,81,30)" fg:x="97342" fg:w="166"/><text x="18.5922%" y="415.50"></text></g><g><title>copy_strings.isra.0 (81 samples, 0.02%)</title><rect x="18.3735%" y="421" width="0.0153%" height="15" fill="rgb(227,42,39)" fg:x="97508" fg:w="81"/><text x="18.6235%" y="431.50"></text></g><g><title>do_execveat_common (1,194 samples, 0.22%)</title><rect x="18.1668%" y="437" width="0.2250%" height="15" fill="rgb(221,26,2)" fg:x="96411" fg:w="1194"/><text x="18.4168%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,214 samples, 0.23%)</title><rect x="18.1666%" y="485" width="0.2288%" height="15" fill="rgb(254,61,31)" fg:x="96410" fg:w="1214"/><text x="18.4166%" y="495.50"></text></g><g><title>do_syscall_64 (1,214 samples, 0.23%)</title><rect x="18.1666%" y="469" width="0.2288%" height="15" fill="rgb(222,173,38)" fg:x="96410" fg:w="1214"/><text x="18.4166%" y="479.50"></text></g><g><title>__x64_sys_execve (1,214 samples, 0.23%)</title><rect x="18.1666%" y="453" width="0.2288%" height="15" fill="rgb(218,50,12)" fg:x="96410" fg:w="1214"/><text x="18.4166%" y="463.50"></text></g><g><title>__GI_execve (1,219 samples, 0.23%)</title><rect x="18.1658%" y="501" width="0.2297%" height="15" fill="rgb(223,88,40)" fg:x="96406" fg:w="1219"/><text x="18.4158%" y="511.50"></text></g><g><title>[dash] (1,462 samples, 0.28%)</title><rect x="18.1240%" y="517" width="0.2755%" height="15" fill="rgb(237,54,19)" fg:x="96184" fg:w="1462"/><text x="18.3740%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (1,180 samples, 0.22%)</title><rect x="18.4234%" y="389" width="0.2223%" height="15" fill="rgb(251,129,25)" fg:x="97773" fg:w="1180"/><text x="18.6734%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,110 samples, 0.21%)</title><rect x="18.4366%" y="373" width="0.2092%" height="15" fill="rgb(238,97,19)" fg:x="97843" fg:w="1110"/><text x="18.6866%" y="383.50"></text></g><g><title>native_write_msr (1,106 samples, 0.21%)</title><rect x="18.4373%" y="357" width="0.2084%" height="15" fill="rgb(240,169,18)" fg:x="97847" fg:w="1106"/><text x="18.6873%" y="367.50"></text></g><g><title>finish_task_switch (1,233 samples, 0.23%)</title><rect x="18.4161%" y="405" width="0.2323%" height="15" fill="rgb(230,187,49)" fg:x="97734" fg:w="1233"/><text x="18.6661%" y="415.50"></text></g><g><title>schedule (1,248 samples, 0.24%)</title><rect x="18.4149%" y="437" width="0.2352%" height="15" fill="rgb(209,44,26)" fg:x="97728" fg:w="1248"/><text x="18.6649%" y="447.50"></text></g><g><title>__schedule (1,248 samples, 0.24%)</title><rect x="18.4149%" y="421" width="0.2352%" height="15" fill="rgb(244,0,6)" fg:x="97728" fg:w="1248"/><text x="18.6649%" y="431.50"></text></g><g><title>release_task (119 samples, 0.02%)</title><rect x="18.6544%" y="421" width="0.0224%" height="15" fill="rgb(248,18,21)" fg:x="98999" fg:w="119"/><text x="18.9044%" y="431.50"></text></g><g><title>do_syscall_64 (1,411 samples, 0.27%)</title><rect x="18.4115%" y="485" width="0.2659%" height="15" fill="rgb(245,180,19)" fg:x="97710" fg:w="1411"/><text x="18.6615%" y="495.50"></text></g><g><title>kernel_wait4 (1,408 samples, 0.27%)</title><rect x="18.4121%" y="469" width="0.2653%" height="15" fill="rgb(252,118,36)" fg:x="97713" fg:w="1408"/><text x="18.6621%" y="479.50"></text></g><g><title>do_wait (1,407 samples, 0.27%)</title><rect x="18.4123%" y="453" width="0.2651%" height="15" fill="rgb(210,224,19)" fg:x="97714" fg:w="1407"/><text x="18.6623%" y="463.50"></text></g><g><title>wait_consider_task (145 samples, 0.03%)</title><rect x="18.6501%" y="437" width="0.0273%" height="15" fill="rgb(218,30,24)" fg:x="98976" fg:w="145"/><text x="18.9001%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,454 samples, 0.27%)</title><rect x="18.4115%" y="501" width="0.2740%" height="15" fill="rgb(219,75,50)" fg:x="97710" fg:w="1454"/><text x="18.6615%" y="511.50"></text></g><g><title>__GI___wait4 (1,468 samples, 0.28%)</title><rect x="18.4104%" y="517" width="0.2766%" height="15" fill="rgb(234,72,50)" fg:x="97704" fg:w="1468"/><text x="18.6604%" y="527.50"></text></g><g><title>[dash] (3,141 samples, 0.59%)</title><rect x="18.1189%" y="533" width="0.5919%" height="15" fill="rgb(219,100,48)" fg:x="96157" fg:w="3141"/><text x="18.3689%" y="543.50"></text></g><g><title>filemap_map_pages (59 samples, 0.01%)</title><rect x="18.7206%" y="453" width="0.0111%" height="15" fill="rgb(253,5,41)" fg:x="99350" fg:w="59"/><text x="18.9706%" y="463.50"></text></g><g><title>asm_exc_page_fault (69 samples, 0.01%)</title><rect x="18.7189%" y="517" width="0.0130%" height="15" fill="rgb(247,181,11)" fg:x="99341" fg:w="69"/><text x="18.9689%" y="527.50"></text></g><g><title>exc_page_fault (69 samples, 0.01%)</title><rect x="18.7189%" y="501" width="0.0130%" height="15" fill="rgb(222,223,25)" fg:x="99341" fg:w="69"/><text x="18.9689%" y="511.50"></text></g><g><title>do_user_addr_fault (69 samples, 0.01%)</title><rect x="18.7189%" y="485" width="0.0130%" height="15" fill="rgb(214,198,28)" fg:x="99341" fg:w="69"/><text x="18.9689%" y="495.50"></text></g><g><title>handle_mm_fault (67 samples, 0.01%)</title><rect x="18.7192%" y="469" width="0.0126%" height="15" fill="rgb(230,46,43)" fg:x="99343" fg:w="67"/><text x="18.9692%" y="479.50"></text></g><g><title>__longjmp_chk (89 samples, 0.02%)</title><rect x="18.7166%" y="533" width="0.0168%" height="15" fill="rgb(233,65,53)" fg:x="99329" fg:w="89"/><text x="18.9666%" y="543.50"></text></g><g><title>handle_mm_fault (85 samples, 0.02%)</title><rect x="18.7409%" y="485" width="0.0160%" height="15" fill="rgb(221,121,27)" fg:x="99458" fg:w="85"/><text x="18.9909%" y="495.50"></text></g><g><title>wp_page_copy (64 samples, 0.01%)</title><rect x="18.7449%" y="469" width="0.0121%" height="15" fill="rgb(247,70,47)" fg:x="99479" fg:w="64"/><text x="18.9949%" y="479.50"></text></g><g><title>exc_page_fault (111 samples, 0.02%)</title><rect x="18.7366%" y="517" width="0.0209%" height="15" fill="rgb(228,85,35)" fg:x="99435" fg:w="111"/><text x="18.9866%" y="527.50"></text></g><g><title>do_user_addr_fault (110 samples, 0.02%)</title><rect x="18.7368%" y="501" width="0.0207%" height="15" fill="rgb(209,50,18)" fg:x="99436" fg:w="110"/><text x="18.9868%" y="511.50"></text></g><g><title>asm_exc_page_fault (116 samples, 0.02%)</title><rect x="18.7358%" y="533" width="0.0219%" height="15" fill="rgb(250,19,35)" fg:x="99431" fg:w="116"/><text x="18.9858%" y="543.50"></text></g><g><title>[dash] (3,451 samples, 0.65%)</title><rect x="18.1095%" y="549" width="0.6503%" height="15" fill="rgb(253,107,29)" fg:x="96107" fg:w="3451"/><text x="18.3595%" y="559.50"></text></g><g><title>filename_lookup (59 samples, 0.01%)</title><rect x="18.7673%" y="469" width="0.0111%" height="15" fill="rgb(252,179,29)" fg:x="99598" fg:w="59"/><text x="19.0173%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.02%)</title><rect x="18.7665%" y="533" width="0.0181%" height="15" fill="rgb(238,194,6)" fg:x="99594" fg:w="96"/><text x="19.0165%" y="543.50"></text></g><g><title>do_syscall_64 (96 samples, 0.02%)</title><rect x="18.7665%" y="517" width="0.0181%" height="15" fill="rgb(238,164,29)" fg:x="99594" fg:w="96"/><text x="19.0165%" y="527.50"></text></g><g><title>__do_sys_newstat (96 samples, 0.02%)</title><rect x="18.7665%" y="501" width="0.0181%" height="15" fill="rgb(224,25,9)" fg:x="99594" fg:w="96"/><text x="19.0165%" y="511.50"></text></g><g><title>vfs_statx (96 samples, 0.02%)</title><rect x="18.7665%" y="485" width="0.0181%" height="15" fill="rgb(244,153,23)" fg:x="99594" fg:w="96"/><text x="19.0165%" y="495.50"></text></g><g><title>__GI___xstat (132 samples, 0.02%)</title><rect x="18.7603%" y="549" width="0.0249%" height="15" fill="rgb(212,203,14)" fg:x="99561" fg:w="132"/><text x="19.0103%" y="559.50"></text></g><g><title>filemap_map_pages (116 samples, 0.02%)</title><rect x="18.8029%" y="453" width="0.0219%" height="15" fill="rgb(220,164,20)" fg:x="99787" fg:w="116"/><text x="19.0529%" y="463.50"></text></g><g><title>handle_mm_fault (131 samples, 0.02%)</title><rect x="18.8014%" y="469" width="0.0247%" height="15" fill="rgb(222,203,48)" fg:x="99779" fg:w="131"/><text x="19.0514%" y="479.50"></text></g><g><title>asm_exc_page_fault (143 samples, 0.03%)</title><rect x="18.7995%" y="517" width="0.0269%" height="15" fill="rgb(215,159,22)" fg:x="99769" fg:w="143"/><text x="19.0495%" y="527.50"></text></g><g><title>exc_page_fault (143 samples, 0.03%)</title><rect x="18.7995%" y="501" width="0.0269%" height="15" fill="rgb(216,183,47)" fg:x="99769" fg:w="143"/><text x="19.0495%" y="511.50"></text></g><g><title>do_user_addr_fault (142 samples, 0.03%)</title><rect x="18.7997%" y="485" width="0.0268%" height="15" fill="rgb(229,195,25)" fg:x="99770" fg:w="142"/><text x="19.0497%" y="495.50"></text></g><g><title>__run_fork_handlers (167 samples, 0.03%)</title><rect x="18.7969%" y="533" width="0.0315%" height="15" fill="rgb(224,132,51)" fg:x="99755" fg:w="167"/><text x="19.0469%" y="543.50"></text></g><g><title>alloc_set_pte (73 samples, 0.01%)</title><rect x="18.9062%" y="437" width="0.0138%" height="15" fill="rgb(240,63,7)" fg:x="100335" fg:w="73"/><text x="19.1562%" y="447.50"></text></g><g><title>filemap_map_pages (332 samples, 0.06%)</title><rect x="18.8771%" y="453" width="0.0626%" height="15" fill="rgb(249,182,41)" fg:x="100181" fg:w="332"/><text x="19.1271%" y="463.50"></text></g><g><title>xas_find (73 samples, 0.01%)</title><rect x="18.9259%" y="437" width="0.0138%" height="15" fill="rgb(243,47,26)" fg:x="100440" fg:w="73"/><text x="19.1759%" y="447.50"></text></g><g><title>__alloc_pages_nodemask (135 samples, 0.03%)</title><rect x="18.9410%" y="437" width="0.0254%" height="15" fill="rgb(233,48,2)" fg:x="100520" fg:w="135"/><text x="19.1910%" y="447.50"></text></g><g><title>get_page_from_freelist (81 samples, 0.02%)</title><rect x="18.9512%" y="421" width="0.0153%" height="15" fill="rgb(244,165,34)" fg:x="100574" fg:w="81"/><text x="19.2012%" y="431.50"></text></g><g><title>pte_alloc_one (150 samples, 0.03%)</title><rect x="18.9403%" y="453" width="0.0283%" height="15" fill="rgb(207,89,7)" fg:x="100516" fg:w="150"/><text x="19.1903%" y="463.50"></text></g><g><title>handle_mm_fault (583 samples, 0.11%)</title><rect x="18.8592%" y="469" width="0.1099%" height="15" fill="rgb(244,117,36)" fg:x="100086" fg:w="583"/><text x="19.1092%" y="479.50"></text></g><g><title>do_user_addr_fault (656 samples, 0.12%)</title><rect x="18.8457%" y="485" width="0.1236%" height="15" fill="rgb(226,144,34)" fg:x="100014" fg:w="656"/><text x="19.0957%" y="495.50"></text></g><g><title>exc_page_fault (659 samples, 0.12%)</title><rect x="18.8453%" y="501" width="0.1242%" height="15" fill="rgb(213,23,19)" fg:x="100012" fg:w="659"/><text x="19.0953%" y="511.50"></text></g><g><title>asm_exc_page_fault (667 samples, 0.13%)</title><rect x="18.8442%" y="517" width="0.1257%" height="15" fill="rgb(217,75,12)" fg:x="100006" fg:w="667"/><text x="19.0942%" y="527.50"></text></g><g><title>__vmalloc_node_range (60 samples, 0.01%)</title><rect x="18.9840%" y="437" width="0.0113%" height="15" fill="rgb(224,159,17)" fg:x="100748" fg:w="60"/><text x="19.2340%" y="447.50"></text></g><g><title>copy_creds (55 samples, 0.01%)</title><rect x="19.0158%" y="437" width="0.0104%" height="15" fill="rgb(217,118,1)" fg:x="100917" fg:w="55"/><text x="19.2658%" y="447.50"></text></g><g><title>kmem_cache_alloc (71 samples, 0.01%)</title><rect x="19.0622%" y="389" width="0.0134%" height="15" fill="rgb(232,180,48)" fg:x="101163" fg:w="71"/><text x="19.3122%" y="399.50"></text></g><g><title>anon_vma_clone (129 samples, 0.02%)</title><rect x="19.0522%" y="405" width="0.0243%" height="15" fill="rgb(230,27,33)" fg:x="101110" fg:w="129"/><text x="19.3022%" y="415.50"></text></g><g><title>kmem_cache_alloc (74 samples, 0.01%)</title><rect x="19.0771%" y="405" width="0.0139%" height="15" fill="rgb(205,31,21)" fg:x="101242" fg:w="74"/><text x="19.3271%" y="415.50"></text></g><g><title>anon_vma_fork (219 samples, 0.04%)</title><rect x="19.0507%" y="421" width="0.0413%" height="15" fill="rgb(253,59,4)" fg:x="101102" fg:w="219"/><text x="19.3007%" y="431.50"></text></g><g><title>copy_page_range (200 samples, 0.04%)</title><rect x="19.0920%" y="421" width="0.0377%" height="15" fill="rgb(224,201,9)" fg:x="101321" fg:w="200"/><text x="19.3420%" y="431.50"></text></g><g><title>vm_area_dup (146 samples, 0.03%)</title><rect x="19.1406%" y="421" width="0.0275%" height="15" fill="rgb(229,206,30)" fg:x="101579" fg:w="146"/><text x="19.3906%" y="431.50"></text></g><g><title>kmem_cache_alloc (102 samples, 0.02%)</title><rect x="19.1489%" y="405" width="0.0192%" height="15" fill="rgb(212,67,47)" fg:x="101623" fg:w="102"/><text x="19.3989%" y="415.50"></text></g><g><title>dup_mm (703 samples, 0.13%)</title><rect x="19.0362%" y="437" width="0.1325%" height="15" fill="rgb(211,96,50)" fg:x="101025" fg:w="703"/><text x="19.2862%" y="447.50"></text></g><g><title>kmem_cache_alloc_node (56 samples, 0.01%)</title><rect x="19.1766%" y="437" width="0.0106%" height="15" fill="rgb(252,114,18)" fg:x="101770" fg:w="56"/><text x="19.4266%" y="447.50"></text></g><g><title>kmem_cache_alloc_trace (70 samples, 0.01%)</title><rect x="19.2239%" y="373" width="0.0132%" height="15" fill="rgb(223,58,37)" fg:x="102021" fg:w="70"/><text x="19.4739%" y="383.50"></text></g><g><title>allocate_fake_cpuc (73 samples, 0.01%)</title><rect x="19.2387%" y="341" width="0.0138%" height="15" fill="rgb(237,70,4)" fg:x="102100" fg:w="73"/><text x="19.4887%" y="351.50"></text></g><g><title>kmem_cache_alloc_trace (56 samples, 0.01%)</title><rect x="19.2419%" y="325" width="0.0106%" height="15" fill="rgb(244,85,46)" fg:x="102117" fg:w="56"/><text x="19.4919%" y="335.50"></text></g><g><title>perf_try_init_event (142 samples, 0.03%)</title><rect x="19.2370%" y="373" width="0.0268%" height="15" fill="rgb(223,39,52)" fg:x="102091" fg:w="142"/><text x="19.4870%" y="383.50"></text></g><g><title>x86_pmu_event_init (141 samples, 0.03%)</title><rect x="19.2372%" y="357" width="0.0266%" height="15" fill="rgb(218,200,14)" fg:x="102092" fg:w="141"/><text x="19.4872%" y="367.50"></text></g><g><title>perf_event_alloc (287 samples, 0.05%)</title><rect x="19.2099%" y="389" width="0.0541%" height="15" fill="rgb(208,171,16)" fg:x="101947" fg:w="287"/><text x="19.4599%" y="399.50"></text></g><g><title>inherit_task_group.isra.0 (352 samples, 0.07%)</title><rect x="19.1979%" y="421" width="0.0663%" height="15" fill="rgb(234,200,18)" fg:x="101883" fg:w="352"/><text x="19.4479%" y="431.50"></text></g><g><title>inherit_event.constprop.0 (340 samples, 0.06%)</title><rect x="19.2001%" y="405" width="0.0641%" height="15" fill="rgb(228,45,11)" fg:x="101895" fg:w="340"/><text x="19.4501%" y="415.50"></text></g><g><title>perf_event_init_task (377 samples, 0.07%)</title><rect x="19.1956%" y="437" width="0.0710%" height="15" fill="rgb(237,182,11)" fg:x="101871" fg:w="377"/><text x="19.4456%" y="447.50"></text></g><g><title>copy_process (1,617 samples, 0.30%)</title><rect x="18.9712%" y="453" width="0.3047%" height="15" fill="rgb(241,175,49)" fg:x="100680" fg:w="1617"/><text x="19.2212%" y="463.50"></text></g><g><title>__do_sys_clone (1,726 samples, 0.33%)</title><rect x="18.9704%" y="485" width="0.3252%" height="15" fill="rgb(247,38,35)" fg:x="100676" fg:w="1726"/><text x="19.2204%" y="495.50"></text></g><g><title>kernel_clone (1,722 samples, 0.32%)</title><rect x="18.9712%" y="469" width="0.3245%" height="15" fill="rgb(228,39,49)" fg:x="100680" fg:w="1722"/><text x="19.2212%" y="479.50"></text></g><g><title>wake_up_new_task (104 samples, 0.02%)</title><rect x="19.2761%" y="453" width="0.0196%" height="15" fill="rgb(226,101,26)" fg:x="102298" fg:w="104"/><text x="19.5261%" y="463.50"></text></g><g><title>do_syscall_64 (1,733 samples, 0.33%)</title><rect x="18.9699%" y="501" width="0.3265%" height="15" fill="rgb(206,141,19)" fg:x="100673" fg:w="1733"/><text x="19.2199%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,734 samples, 0.33%)</title><rect x="18.9699%" y="517" width="0.3267%" height="15" fill="rgb(211,200,13)" fg:x="100673" fg:w="1734"/><text x="19.2199%" y="527.50"></text></g><g><title>error_entry (54 samples, 0.01%)</title><rect x="19.2966%" y="517" width="0.0102%" height="15" fill="rgb(241,121,6)" fg:x="102407" fg:w="54"/><text x="19.5466%" y="527.50"></text></g><g><title>do_wp_page (55 samples, 0.01%)</title><rect x="19.3729%" y="405" width="0.0104%" height="15" fill="rgb(234,221,29)" fg:x="102812" fg:w="55"/><text x="19.6229%" y="415.50"></text></g><g><title>alloc_pages_vma (67 samples, 0.01%)</title><rect x="19.3848%" y="389" width="0.0126%" height="15" fill="rgb(229,136,5)" fg:x="102875" fg:w="67"/><text x="19.6348%" y="399.50"></text></g><g><title>__alloc_pages_nodemask (65 samples, 0.01%)</title><rect x="19.3852%" y="373" width="0.0122%" height="15" fill="rgb(238,36,11)" fg:x="102877" fg:w="65"/><text x="19.6352%" y="383.50"></text></g><g><title>handle_mm_fault (312 samples, 0.06%)</title><rect x="19.3586%" y="421" width="0.0588%" height="15" fill="rgb(251,55,41)" fg:x="102736" fg:w="312"/><text x="19.6086%" y="431.50"></text></g><g><title>wp_page_copy (178 samples, 0.03%)</title><rect x="19.3838%" y="405" width="0.0335%" height="15" fill="rgb(242,34,40)" fg:x="102870" fg:w="178"/><text x="19.6338%" y="415.50"></text></g><g><title>exc_page_fault (378 samples, 0.07%)</title><rect x="19.3471%" y="453" width="0.0712%" height="15" fill="rgb(215,42,17)" fg:x="102675" fg:w="378"/><text x="19.5971%" y="463.50"></text></g><g><title>do_user_addr_fault (375 samples, 0.07%)</title><rect x="19.3477%" y="437" width="0.0707%" height="15" fill="rgb(207,44,46)" fg:x="102678" fg:w="375"/><text x="19.5977%" y="447.50"></text></g><g><title>asm_exc_page_fault (480 samples, 0.09%)</title><rect x="19.3281%" y="469" width="0.0904%" height="15" fill="rgb(211,206,28)" fg:x="102574" fg:w="480"/><text x="19.5781%" y="479.50"></text></g><g><title>__put_user_nocheck_4 (519 samples, 0.10%)</title><rect x="19.3213%" y="485" width="0.0978%" height="15" fill="rgb(237,167,16)" fg:x="102538" fg:w="519"/><text x="19.5713%" y="495.50"></text></g><g><title>__free_pages_ok (59 samples, 0.01%)</title><rect x="19.5602%" y="453" width="0.0111%" height="15" fill="rgb(233,66,6)" fg:x="103806" fg:w="59"/><text x="19.8102%" y="463.50"></text></g><g><title>__mmdrop (217 samples, 0.04%)</title><rect x="19.5523%" y="469" width="0.0409%" height="15" fill="rgb(246,123,29)" fg:x="103764" fg:w="217"/><text x="19.8023%" y="479.50"></text></g><g><title>pgd_free (114 samples, 0.02%)</title><rect x="19.5717%" y="453" width="0.0215%" height="15" fill="rgb(209,62,40)" fg:x="103867" fg:w="114"/><text x="19.8217%" y="463.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="19.5828%" y="437" width="0.0104%" height="15" fill="rgb(218,4,25)" fg:x="103926" fg:w="55"/><text x="19.8328%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (13,728 samples, 2.59%)</title><rect x="19.5932%" y="469" width="2.5868%" height="15" fill="rgb(253,91,49)" fg:x="103981" fg:w="13728"/><text x="19.8432%" y="479.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (13,075 samples, 2.46%)</title><rect x="19.7162%" y="453" width="2.4637%" height="15" fill="rgb(228,155,29)" fg:x="104634" fg:w="13075"/><text x="19.9662%" y="463.50">__..</text></g><g><title>native_write_msr (12,931 samples, 2.44%)</title><rect x="19.7434%" y="437" width="2.4366%" height="15" fill="rgb(243,57,37)" fg:x="104778" fg:w="12931"/><text x="19.9934%" y="447.50">na..</text></g><g><title>asm_sysvec_irq_work (136 samples, 0.03%)</title><rect x="22.1830%" y="469" width="0.0256%" height="15" fill="rgb(244,167,17)" fg:x="117725" fg:w="136"/><text x="22.4330%" y="479.50"></text></g><g><title>sysvec_irq_work (59 samples, 0.01%)</title><rect x="22.1975%" y="453" width="0.0111%" height="15" fill="rgb(207,181,38)" fg:x="117802" fg:w="59"/><text x="22.4475%" y="463.50"></text></g><g><title>schedule_tail (15,365 samples, 2.90%)</title><rect x="19.3175%" y="501" width="2.8952%" height="15" fill="rgb(211,8,23)" fg:x="102518" fg:w="15365"/><text x="19.5675%" y="511.50">sc..</text></g><g><title>finish_task_switch (14,784 samples, 2.79%)</title><rect x="19.4270%" y="485" width="2.7858%" height="15" fill="rgb(235,11,44)" fg:x="103099" fg:w="14784"/><text x="19.6770%" y="495.50">fi..</text></g><g><title>ret_from_fork (15,485 samples, 2.92%)</title><rect x="19.3098%" y="517" width="2.9178%" height="15" fill="rgb(248,18,52)" fg:x="102477" fg:w="15485"/><text x="19.5598%" y="527.50">re..</text></g><g><title>syscall_exit_to_user_mode (79 samples, 0.01%)</title><rect x="22.2127%" y="501" width="0.0149%" height="15" fill="rgb(208,4,7)" fg:x="117883" fg:w="79"/><text x="22.4627%" y="511.50"></text></g><g><title>exit_to_user_mode_prepare (79 samples, 0.01%)</title><rect x="22.2127%" y="485" width="0.0149%" height="15" fill="rgb(240,17,39)" fg:x="117883" fg:w="79"/><text x="22.4627%" y="495.50"></text></g><g><title>switch_fpu_return (74 samples, 0.01%)</title><rect x="22.2137%" y="469" width="0.0139%" height="15" fill="rgb(207,170,3)" fg:x="117888" fg:w="74"/><text x="22.4637%" y="479.50"></text></g><g><title>arch_fork (18,041 samples, 3.40%)</title><rect x="18.8283%" y="533" width="3.3995%" height="15" fill="rgb(236,100,52)" fg:x="99922" fg:w="18041"/><text x="19.0783%" y="543.50">arc..</text></g><g><title>handle_mm_fault (182 samples, 0.03%)</title><rect x="22.2323%" y="485" width="0.0343%" height="15" fill="rgb(246,78,51)" fg:x="117987" fg:w="182"/><text x="22.4823%" y="495.50"></text></g><g><title>wp_page_copy (139 samples, 0.03%)</title><rect x="22.2404%" y="469" width="0.0262%" height="15" fill="rgb(211,17,15)" fg:x="118030" fg:w="139"/><text x="22.4904%" y="479.50"></text></g><g><title>asm_exc_page_fault (208 samples, 0.04%)</title><rect x="22.2278%" y="533" width="0.0392%" height="15" fill="rgb(209,59,46)" fg:x="117963" fg:w="208"/><text x="22.4778%" y="543.50"></text></g><g><title>exc_page_fault (206 samples, 0.04%)</title><rect x="22.2282%" y="517" width="0.0388%" height="15" fill="rgb(210,92,25)" fg:x="117965" fg:w="206"/><text x="22.4782%" y="527.50"></text></g><g><title>do_user_addr_fault (205 samples, 0.04%)</title><rect x="22.2284%" y="501" width="0.0386%" height="15" fill="rgb(238,174,52)" fg:x="117966" fg:w="205"/><text x="22.4784%" y="511.50"></text></g><g><title>__libc_fork (18,493 samples, 3.48%)</title><rect x="18.7861%" y="549" width="3.4846%" height="15" fill="rgb(230,73,7)" fg:x="99698" fg:w="18493"/><text x="19.0361%" y="559.50">__l..</text></g><g><title>filemap_map_pages (113 samples, 0.02%)</title><rect x="22.2806%" y="485" width="0.0213%" height="15" fill="rgb(243,124,40)" fg:x="118243" fg:w="113"/><text x="22.5306%" y="495.50"></text></g><g><title>handle_mm_fault (136 samples, 0.03%)</title><rect x="22.2768%" y="501" width="0.0256%" height="15" fill="rgb(244,170,11)" fg:x="118223" fg:w="136"/><text x="22.5268%" y="511.50"></text></g><g><title>asm_exc_page_fault (165 samples, 0.03%)</title><rect x="22.2715%" y="549" width="0.0311%" height="15" fill="rgb(207,114,54)" fg:x="118195" fg:w="165"/><text x="22.5215%" y="559.50"></text></g><g><title>exc_page_fault (162 samples, 0.03%)</title><rect x="22.2721%" y="533" width="0.0305%" height="15" fill="rgb(205,42,20)" fg:x="118198" fg:w="162"/><text x="22.5221%" y="543.50"></text></g><g><title>do_user_addr_fault (162 samples, 0.03%)</title><rect x="22.2721%" y="517" width="0.0305%" height="15" fill="rgb(230,30,28)" fg:x="118198" fg:w="162"/><text x="22.5221%" y="527.50"></text></g><g><title>[dash] (22,280 samples, 4.20%)</title><rect x="18.1057%" y="565" width="4.1982%" height="15" fill="rgb(205,73,54)" fg:x="96087" fg:w="22280"/><text x="18.3557%" y="575.50">[dash]</text></g><g><title>alloc_file_pseudo (65 samples, 0.01%)</title><rect x="22.3211%" y="469" width="0.0122%" height="15" fill="rgb(254,227,23)" fg:x="118458" fg:w="65"/><text x="22.5711%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (185 samples, 0.03%)</title><rect x="22.3124%" y="549" width="0.0349%" height="15" fill="rgb(228,202,34)" fg:x="118412" fg:w="185"/><text x="22.5624%" y="559.50"></text></g><g><title>do_syscall_64 (184 samples, 0.03%)</title><rect x="22.3126%" y="533" width="0.0347%" height="15" fill="rgb(222,225,37)" fg:x="118413" fg:w="184"/><text x="22.5626%" y="543.50"></text></g><g><title>__x64_sys_pipe (184 samples, 0.03%)</title><rect x="22.3126%" y="517" width="0.0347%" height="15" fill="rgb(221,14,54)" fg:x="118413" fg:w="184"/><text x="22.5626%" y="527.50"></text></g><g><title>do_pipe2 (184 samples, 0.03%)</title><rect x="22.3126%" y="501" width="0.0347%" height="15" fill="rgb(254,102,2)" fg:x="118413" fg:w="184"/><text x="22.5626%" y="511.50"></text></g><g><title>create_pipe_files (159 samples, 0.03%)</title><rect x="22.3173%" y="485" width="0.0300%" height="15" fill="rgb(232,104,17)" fg:x="118438" fg:w="159"/><text x="22.5673%" y="495.50"></text></g><g><title>__GI_pipe (189 samples, 0.04%)</title><rect x="22.3119%" y="565" width="0.0356%" height="15" fill="rgb(250,220,14)" fg:x="118409" fg:w="189"/><text x="22.5619%" y="575.50"></text></g><g><title>[dash] (22,514 samples, 4.24%)</title><rect x="18.1053%" y="581" width="4.2423%" height="15" fill="rgb(241,158,9)" fg:x="96085" fg:w="22514"/><text x="18.3553%" y="591.50">[dash]</text></g><g><title>[dash] (22,545 samples, 4.25%)</title><rect x="18.1044%" y="597" width="4.2482%" height="15" fill="rgb(246,9,43)" fg:x="96080" fg:w="22545"/><text x="18.3544%" y="607.50">[dash]</text></g><g><title>[dash] (22,637 samples, 4.27%)</title><rect x="18.1025%" y="613" width="4.2655%" height="15" fill="rgb(206,73,33)" fg:x="96070" fg:w="22637"/><text x="18.3525%" y="623.50">[dash]</text></g><g><title>[dash] (22,770 samples, 4.29%)</title><rect x="18.0993%" y="629" width="4.2906%" height="15" fill="rgb(222,79,8)" fg:x="96053" fg:w="22770"/><text x="18.3493%" y="639.50">[dash]</text></g><g><title>filemap_map_pages (87 samples, 0.02%)</title><rect x="22.4196%" y="533" width="0.0164%" height="15" fill="rgb(234,8,54)" fg:x="118981" fg:w="87"/><text x="22.6696%" y="543.50"></text></g><g><title>exc_page_fault (132 samples, 0.02%)</title><rect x="22.4140%" y="581" width="0.0249%" height="15" fill="rgb(209,134,38)" fg:x="118951" fg:w="132"/><text x="22.6640%" y="591.50"></text></g><g><title>do_user_addr_fault (132 samples, 0.02%)</title><rect x="22.4140%" y="565" width="0.0249%" height="15" fill="rgb(230,127,29)" fg:x="118951" fg:w="132"/><text x="22.6640%" y="575.50"></text></g><g><title>handle_mm_fault (121 samples, 0.02%)</title><rect x="22.4161%" y="549" width="0.0228%" height="15" fill="rgb(242,44,41)" fg:x="118962" fg:w="121"/><text x="22.6661%" y="559.50"></text></g><g><title>asm_exc_page_fault (135 samples, 0.03%)</title><rect x="22.4138%" y="597" width="0.0254%" height="15" fill="rgb(222,56,43)" fg:x="118950" fg:w="135"/><text x="22.6638%" y="607.50"></text></g><g><title>anon_vma_fork (55 samples, 0.01%)</title><rect x="22.4618%" y="501" width="0.0104%" height="15" fill="rgb(238,39,47)" fg:x="119205" fg:w="55"/><text x="22.7118%" y="511.50"></text></g><g><title>copy_page_range (85 samples, 0.02%)</title><rect x="22.4722%" y="501" width="0.0160%" height="15" fill="rgb(226,79,43)" fg:x="119260" fg:w="85"/><text x="22.7222%" y="511.50"></text></g><g><title>vm_area_dup (71 samples, 0.01%)</title><rect x="22.4918%" y="501" width="0.0134%" height="15" fill="rgb(242,105,53)" fg:x="119364" fg:w="71"/><text x="22.7418%" y="511.50"></text></g><g><title>kmem_cache_alloc (54 samples, 0.01%)</title><rect x="22.4950%" y="485" width="0.0102%" height="15" fill="rgb(251,132,46)" fg:x="119381" fg:w="54"/><text x="22.7450%" y="495.50"></text></g><g><title>dup_mm (255 samples, 0.05%)</title><rect x="22.4573%" y="517" width="0.0480%" height="15" fill="rgb(231,77,14)" fg:x="119181" fg:w="255"/><text x="22.7073%" y="527.50"></text></g><g><title>inherit_task_group.isra.0 (98 samples, 0.02%)</title><rect x="22.5122%" y="501" width="0.0185%" height="15" fill="rgb(240,135,9)" fg:x="119472" fg:w="98"/><text x="22.7622%" y="511.50"></text></g><g><title>inherit_event.constprop.0 (96 samples, 0.02%)</title><rect x="22.5125%" y="485" width="0.0181%" height="15" fill="rgb(248,109,14)" fg:x="119474" fg:w="96"/><text x="22.7625%" y="495.50"></text></g><g><title>perf_event_alloc (72 samples, 0.01%)</title><rect x="22.5171%" y="469" width="0.0136%" height="15" fill="rgb(227,146,52)" fg:x="119498" fg:w="72"/><text x="22.7671%" y="479.50"></text></g><g><title>perf_event_init_task (103 samples, 0.02%)</title><rect x="22.5120%" y="517" width="0.0194%" height="15" fill="rgb(232,54,3)" fg:x="119471" fg:w="103"/><text x="22.7620%" y="527.50"></text></g><g><title>copy_process (515 samples, 0.10%)</title><rect x="22.4394%" y="533" width="0.0970%" height="15" fill="rgb(229,201,43)" fg:x="119086" fg:w="515"/><text x="22.6894%" y="543.50"></text></g><g><title>do_syscall_64 (556 samples, 0.10%)</title><rect x="22.4392%" y="581" width="0.1048%" height="15" fill="rgb(252,161,33)" fg:x="119085" fg:w="556"/><text x="22.6892%" y="591.50"></text></g><g><title>__do_sys_clone (556 samples, 0.10%)</title><rect x="22.4392%" y="565" width="0.1048%" height="15" fill="rgb(226,146,40)" fg:x="119085" fg:w="556"/><text x="22.6892%" y="575.50"></text></g><g><title>kernel_clone (555 samples, 0.10%)</title><rect x="22.4394%" y="549" width="0.1046%" height="15" fill="rgb(219,47,25)" fg:x="119086" fg:w="555"/><text x="22.6894%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (557 samples, 0.10%)</title><rect x="22.4392%" y="597" width="0.1050%" height="15" fill="rgb(250,135,13)" fg:x="119085" fg:w="557"/><text x="22.6892%" y="607.50"></text></g><g><title>__alloc_pages_nodemask (64 samples, 0.01%)</title><rect x="22.5826%" y="453" width="0.0121%" height="15" fill="rgb(219,229,18)" fg:x="119846" fg:w="64"/><text x="22.8326%" y="463.50"></text></g><g><title>alloc_pages_vma (76 samples, 0.01%)</title><rect x="22.5809%" y="469" width="0.0143%" height="15" fill="rgb(217,152,27)" fg:x="119837" fg:w="76"/><text x="22.8309%" y="479.50"></text></g><g><title>handle_mm_fault (329 samples, 0.06%)</title><rect x="22.5700%" y="501" width="0.0620%" height="15" fill="rgb(225,71,47)" fg:x="119779" fg:w="329"/><text x="22.8200%" y="511.50"></text></g><g><title>wp_page_copy (297 samples, 0.06%)</title><rect x="22.5760%" y="485" width="0.0560%" height="15" fill="rgb(220,139,14)" fg:x="119811" fg:w="297"/><text x="22.8260%" y="495.50"></text></g><g><title>do_user_addr_fault (356 samples, 0.07%)</title><rect x="22.5655%" y="517" width="0.0671%" height="15" fill="rgb(247,54,32)" fg:x="119755" fg:w="356"/><text x="22.8155%" y="527.50"></text></g><g><title>asm_exc_page_fault (389 samples, 0.07%)</title><rect x="22.5596%" y="549" width="0.0733%" height="15" fill="rgb(252,131,39)" fg:x="119724" fg:w="389"/><text x="22.8096%" y="559.50"></text></g><g><title>exc_page_fault (360 samples, 0.07%)</title><rect x="22.5651%" y="533" width="0.0678%" height="15" fill="rgb(210,108,39)" fg:x="119753" fg:w="360"/><text x="22.8151%" y="543.50"></text></g><g><title>__put_user_nocheck_4 (419 samples, 0.08%)</title><rect x="22.5549%" y="565" width="0.0790%" height="15" fill="rgb(205,23,29)" fg:x="119699" fg:w="419"/><text x="22.8049%" y="575.50"></text></g><g><title>__free_pages_ok (100 samples, 0.02%)</title><rect x="22.7070%" y="533" width="0.0188%" height="15" fill="rgb(246,139,46)" fg:x="120506" fg:w="100"/><text x="22.9570%" y="543.50"></text></g><g><title>__mmdrop (253 samples, 0.05%)</title><rect x="22.6985%" y="549" width="0.0477%" height="15" fill="rgb(250,81,26)" fg:x="120461" fg:w="253"/><text x="22.9485%" y="559.50"></text></g><g><title>pgd_free (106 samples, 0.02%)</title><rect x="22.7262%" y="533" width="0.0200%" height="15" fill="rgb(214,104,7)" fg:x="120608" fg:w="106"/><text x="22.9762%" y="543.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="22.7360%" y="517" width="0.0102%" height="15" fill="rgb(233,189,8)" fg:x="120660" fg:w="54"/><text x="22.9860%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (6,059 samples, 1.14%)</title><rect x="22.7462%" y="549" width="1.1417%" height="15" fill="rgb(228,141,17)" fg:x="120714" fg:w="6059"/><text x="22.9962%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,875 samples, 1.11%)</title><rect x="22.7809%" y="533" width="1.1070%" height="15" fill="rgb(247,157,1)" fg:x="120898" fg:w="5875"/><text x="23.0309%" y="543.50"></text></g><g><title>native_write_msr (5,843 samples, 1.10%)</title><rect x="22.7869%" y="517" width="1.1010%" height="15" fill="rgb(249,225,5)" fg:x="120930" fg:w="5843"/><text x="23.0369%" y="527.50"></text></g><g><title>asm_sysvec_irq_work (99 samples, 0.02%)</title><rect x="23.8888%" y="549" width="0.0187%" height="15" fill="rgb(242,55,13)" fg:x="126778" fg:w="99"/><text x="24.1388%" y="559.50"></text></g><g><title>schedule_tail (7,200 samples, 1.36%)</title><rect x="22.5540%" y="581" width="1.3567%" height="15" fill="rgb(230,49,50)" fg:x="119694" fg:w="7200"/><text x="22.8040%" y="591.50"></text></g><g><title>finish_task_switch (6,765 samples, 1.27%)</title><rect x="22.6360%" y="565" width="1.2747%" height="15" fill="rgb(241,111,38)" fg:x="120129" fg:w="6765"/><text x="22.8860%" y="575.50"></text></g><g><title>ret_from_fork (7,257 samples, 1.37%)</title><rect x="22.5489%" y="597" width="1.3674%" height="15" fill="rgb(252,155,4)" fg:x="119667" fg:w="7257"/><text x="22.7989%" y="607.50"></text></g><g><title>arch_fork (8,011 samples, 1.51%)</title><rect x="22.4070%" y="613" width="1.5095%" height="15" fill="rgb(212,69,32)" fg:x="118914" fg:w="8011"/><text x="22.6570%" y="623.50"></text></g><g><title>exc_page_fault (72 samples, 0.01%)</title><rect x="23.9167%" y="597" width="0.0136%" height="15" fill="rgb(243,107,47)" fg:x="126926" fg:w="72"/><text x="24.1667%" y="607.50"></text></g><g><title>do_user_addr_fault (71 samples, 0.01%)</title><rect x="23.9169%" y="581" width="0.0134%" height="15" fill="rgb(247,130,12)" fg:x="126927" fg:w="71"/><text x="24.1669%" y="591.50"></text></g><g><title>handle_mm_fault (63 samples, 0.01%)</title><rect x="23.9184%" y="565" width="0.0119%" height="15" fill="rgb(233,74,16)" fg:x="126935" fg:w="63"/><text x="24.1684%" y="575.50"></text></g><g><title>asm_exc_page_fault (75 samples, 0.01%)</title><rect x="23.9165%" y="613" width="0.0141%" height="15" fill="rgb(208,58,18)" fg:x="126925" fg:w="75"/><text x="24.1665%" y="623.50"></text></g><g><title>__libc_fork (8,184 samples, 1.54%)</title><rect x="22.3901%" y="629" width="1.5421%" height="15" fill="rgb(242,225,1)" fg:x="118824" fg:w="8184"/><text x="22.6401%" y="639.50"></text></g><g><title>[dash] (31,011 samples, 5.84%)</title><rect x="18.0965%" y="645" width="5.8434%" height="15" fill="rgb(249,39,40)" fg:x="96038" fg:w="31011"/><text x="18.3465%" y="655.50">[dash]</text></g><g><title>[dash] (31,101 samples, 5.86%)</title><rect x="18.0944%" y="661" width="5.8604%" height="15" fill="rgb(207,72,44)" fg:x="96027" fg:w="31101"/><text x="18.3444%" y="671.50">[dash]</text></g><g><title>__perf_event_task_sched_in (565 samples, 0.11%)</title><rect x="23.9798%" y="501" width="0.1065%" height="15" fill="rgb(215,193,12)" fg:x="127261" fg:w="565"/><text x="24.2298%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (557 samples, 0.10%)</title><rect x="23.9813%" y="485" width="0.1050%" height="15" fill="rgb(248,41,39)" fg:x="127269" fg:w="557"/><text x="24.2313%" y="495.50"></text></g><g><title>native_write_msr (556 samples, 0.10%)</title><rect x="23.9815%" y="469" width="0.1048%" height="15" fill="rgb(253,85,4)" fg:x="127270" fg:w="556"/><text x="24.2315%" y="479.50"></text></g><g><title>finish_task_switch (604 samples, 0.11%)</title><rect x="23.9757%" y="517" width="0.1138%" height="15" fill="rgb(243,70,31)" fg:x="127239" fg:w="604"/><text x="24.2257%" y="527.50"></text></g><g><title>schedule (638 samples, 0.12%)</title><rect x="23.9729%" y="549" width="0.1202%" height="15" fill="rgb(253,195,26)" fg:x="127224" fg:w="638"/><text x="24.2229%" y="559.50"></text></g><g><title>__schedule (638 samples, 0.12%)</title><rect x="23.9729%" y="533" width="0.1202%" height="15" fill="rgb(243,42,11)" fg:x="127224" fg:w="638"/><text x="24.2229%" y="543.50"></text></g><g><title>new_sync_read (676 samples, 0.13%)</title><rect x="23.9672%" y="581" width="0.1274%" height="15" fill="rgb(239,66,17)" fg:x="127194" fg:w="676"/><text x="24.2172%" y="591.50"></text></g><g><title>pipe_read (671 samples, 0.13%)</title><rect x="23.9682%" y="565" width="0.1264%" height="15" fill="rgb(217,132,21)" fg:x="127199" fg:w="671"/><text x="24.2182%" y="575.50"></text></g><g><title>do_syscall_64 (695 samples, 0.13%)</title><rect x="23.9651%" y="629" width="0.1310%" height="15" fill="rgb(252,202,21)" fg:x="127183" fg:w="695"/><text x="24.2151%" y="639.50"></text></g><g><title>ksys_read (693 samples, 0.13%)</title><rect x="23.9655%" y="613" width="0.1306%" height="15" fill="rgb(233,98,36)" fg:x="127185" fg:w="693"/><text x="24.2155%" y="623.50"></text></g><g><title>vfs_read (690 samples, 0.13%)</title><rect x="23.9661%" y="597" width="0.1300%" height="15" fill="rgb(216,153,54)" fg:x="127188" fg:w="690"/><text x="24.2161%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (721 samples, 0.14%)</title><rect x="23.9650%" y="645" width="0.1359%" height="15" fill="rgb(250,99,7)" fg:x="127182" fg:w="721"/><text x="24.2150%" y="655.50"></text></g><g><title>__GI___libc_read (767 samples, 0.14%)</title><rect x="23.9627%" y="661" width="0.1445%" height="15" fill="rgb(207,56,50)" fg:x="127170" fg:w="767"/><text x="24.2127%" y="671.50"></text></g><g><title>[dash] (31,974 samples, 6.02%)</title><rect x="18.0920%" y="677" width="6.0249%" height="15" fill="rgb(244,61,34)" fg:x="96014" fg:w="31974"/><text x="18.3420%" y="687.50">[dash]</text></g><g><title>[dash] (31,988 samples, 6.03%)</title><rect x="18.0910%" y="693" width="6.0275%" height="15" fill="rgb(241,50,38)" fg:x="96009" fg:w="31988"/><text x="18.3410%" y="703.50">[dash]</text></g><g><title>[dash] (32,010 samples, 6.03%)</title><rect x="18.0884%" y="709" width="6.0317%" height="15" fill="rgb(212,166,30)" fg:x="95995" fg:w="32010"/><text x="18.3384%" y="719.50">[dash]</text></g><g><title>[dash] (32,013 samples, 6.03%)</title><rect x="18.0884%" y="725" width="6.0322%" height="15" fill="rgb(249,127,32)" fg:x="95995" fg:w="32013"/><text x="18.3384%" y="735.50">[dash]</text></g><g><title>[dash] (32,032 samples, 6.04%)</title><rect x="18.0882%" y="741" width="6.0358%" height="15" fill="rgb(209,103,0)" fg:x="95994" fg:w="32032"/><text x="18.3382%" y="751.50">[dash]</text></g><g><title>[dash] (32,036 samples, 6.04%)</title><rect x="18.0876%" y="757" width="6.0366%" height="15" fill="rgb(238,209,51)" fg:x="95991" fg:w="32036"/><text x="18.3376%" y="767.50">[dash]</text></g><g><title>__GI__exit (62 samples, 0.01%)</title><rect x="24.1253%" y="757" width="0.0117%" height="15" fill="rgb(237,56,23)" fg:x="128033" fg:w="62"/><text x="24.3753%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="24.1257%" y="741" width="0.0113%" height="15" fill="rgb(215,153,46)" fg:x="128035" fg:w="60"/><text x="24.3757%" y="751.50"></text></g><g><title>do_syscall_64 (60 samples, 0.01%)</title><rect x="24.1257%" y="725" width="0.0113%" height="15" fill="rgb(224,49,31)" fg:x="128035" fg:w="60"/><text x="24.3757%" y="735.50"></text></g><g><title>__x64_sys_exit_group (60 samples, 0.01%)</title><rect x="24.1257%" y="709" width="0.0113%" height="15" fill="rgb(250,18,42)" fg:x="128035" fg:w="60"/><text x="24.3757%" y="719.50"></text></g><g><title>do_group_exit (59 samples, 0.01%)</title><rect x="24.1259%" y="693" width="0.0111%" height="15" fill="rgb(215,176,39)" fg:x="128036" fg:w="59"/><text x="24.3759%" y="703.50"></text></g><g><title>do_exit (57 samples, 0.01%)</title><rect x="24.1262%" y="677" width="0.0107%" height="15" fill="rgb(223,77,29)" fg:x="128038" fg:w="57"/><text x="24.3762%" y="687.50"></text></g><g><title>[dash] (32,109 samples, 6.05%)</title><rect x="18.0869%" y="773" width="6.0503%" height="15" fill="rgb(234,94,52)" fg:x="95987" fg:w="32109"/><text x="18.3369%" y="783.50">[dash]</text></g><g><title>__libc_start_main (32,130 samples, 6.05%)</title><rect x="18.0861%" y="805" width="6.0543%" height="15" fill="rgb(220,154,50)" fg:x="95983" fg:w="32130"/><text x="18.3361%" y="815.50">__libc_s..</text></g><g><title>[dash] (32,130 samples, 6.05%)</title><rect x="18.0861%" y="789" width="6.0543%" height="15" fill="rgb(212,11,10)" fg:x="95983" fg:w="32130"/><text x="18.3361%" y="799.50">[dash]</text></g><g><title>[dash] (32,135 samples, 6.06%)</title><rect x="18.0854%" y="821" width="6.0552%" height="15" fill="rgb(205,166,19)" fg:x="95979" fg:w="32135"/><text x="18.3354%" y="831.50">[dash]</text></g><g><title>_dl_start_final (58 samples, 0.01%)</title><rect x="24.1492%" y="789" width="0.0109%" height="15" fill="rgb(244,198,16)" fg:x="128160" fg:w="58"/><text x="24.3992%" y="799.50"></text></g><g><title>_dl_sysdep_start (58 samples, 0.01%)</title><rect x="24.1492%" y="773" width="0.0109%" height="15" fill="rgb(219,69,12)" fg:x="128160" fg:w="58"/><text x="24.3992%" y="783.50"></text></g><g><title>_dl_start (69 samples, 0.01%)</title><rect x="24.1492%" y="805" width="0.0130%" height="15" fill="rgb(245,30,7)" fg:x="128160" fg:w="69"/><text x="24.3992%" y="815.50"></text></g><g><title>_start (80 samples, 0.02%)</title><rect x="24.1490%" y="821" width="0.0151%" height="15" fill="rgb(218,221,48)" fg:x="128159" fg:w="80"/><text x="24.3990%" y="831.50"></text></g><g><title>asm_exc_page_fault (474 samples, 0.09%)</title><rect x="24.1641%" y="821" width="0.0893%" height="15" fill="rgb(216,66,15)" fg:x="128239" fg:w="474"/><text x="24.4141%" y="831.50"></text></g><g><title>unlink_anon_vmas (125 samples, 0.02%)</title><rect x="24.2689%" y="661" width="0.0236%" height="15" fill="rgb(226,122,50)" fg:x="128795" fg:w="125"/><text x="24.5189%" y="671.50"></text></g><g><title>kmem_cache_free (59 samples, 0.01%)</title><rect x="24.2813%" y="645" width="0.0111%" height="15" fill="rgb(239,156,16)" fg:x="128861" fg:w="59"/><text x="24.5313%" y="655.50"></text></g><g><title>free_pgtables (180 samples, 0.03%)</title><rect x="24.2653%" y="677" width="0.0339%" height="15" fill="rgb(224,27,38)" fg:x="128776" fg:w="180"/><text x="24.5153%" y="687.50"></text></g><g><title>tlb_finish_mmu (66 samples, 0.01%)</title><rect x="24.3088%" y="677" width="0.0124%" height="15" fill="rgb(224,39,27)" fg:x="129007" fg:w="66"/><text x="24.5588%" y="687.50"></text></g><g><title>unmap_page_range (154 samples, 0.03%)</title><rect x="24.3222%" y="661" width="0.0290%" height="15" fill="rgb(215,92,29)" fg:x="129078" fg:w="154"/><text x="24.5722%" y="671.50"></text></g><g><title>mmput (474 samples, 0.09%)</title><rect x="24.2632%" y="709" width="0.0893%" height="15" fill="rgb(207,159,16)" fg:x="128765" fg:w="474"/><text x="24.5132%" y="719.50"></text></g><g><title>exit_mmap (472 samples, 0.09%)</title><rect x="24.2636%" y="693" width="0.0889%" height="15" fill="rgb(238,163,47)" fg:x="128767" fg:w="472"/><text x="24.5136%" y="703.50"></text></g><g><title>unmap_vmas (165 samples, 0.03%)</title><rect x="24.3215%" y="677" width="0.0311%" height="15" fill="rgb(219,91,49)" fg:x="129074" fg:w="165"/><text x="24.5715%" y="687.50"></text></g><g><title>begin_new_exec (525 samples, 0.10%)</title><rect x="24.2587%" y="725" width="0.0989%" height="15" fill="rgb(227,167,31)" fg:x="128741" fg:w="525"/><text x="24.5087%" y="735.50"></text></g><g><title>load_elf_binary (559 samples, 0.11%)</title><rect x="24.2578%" y="741" width="0.1053%" height="15" fill="rgb(234,80,54)" fg:x="128736" fg:w="559"/><text x="24.5078%" y="751.50"></text></g><g><title>bprm_execve (568 samples, 0.11%)</title><rect x="24.2566%" y="757" width="0.1070%" height="15" fill="rgb(212,114,2)" fg:x="128730" fg:w="568"/><text x="24.5066%" y="767.50"></text></g><g><title>__x64_sys_execve (570 samples, 0.11%)</title><rect x="24.2565%" y="789" width="0.1074%" height="15" fill="rgb(234,50,24)" fg:x="128729" fg:w="570"/><text x="24.5065%" y="799.50"></text></g><g><title>do_execveat_common (570 samples, 0.11%)</title><rect x="24.2565%" y="773" width="0.1074%" height="15" fill="rgb(221,68,8)" fg:x="128729" fg:w="570"/><text x="24.5065%" y="783.50"></text></g><g><title>kmem_cache_free (86 samples, 0.02%)</title><rect x="24.3959%" y="677" width="0.0162%" height="15" fill="rgb(254,180,31)" fg:x="129469" fg:w="86"/><text x="24.6459%" y="687.50"></text></g><g><title>unlink_anon_vmas (196 samples, 0.04%)</title><rect x="24.3761%" y="693" width="0.0369%" height="15" fill="rgb(247,130,50)" fg:x="129364" fg:w="196"/><text x="24.6261%" y="703.50"></text></g><g><title>free_pgtables (266 samples, 0.05%)</title><rect x="24.3721%" y="709" width="0.0501%" height="15" fill="rgb(211,109,4)" fg:x="129343" fg:w="266"/><text x="24.6221%" y="719.50"></text></g><g><title>lru_add_drain_cpu (62 samples, 0.01%)</title><rect x="24.4228%" y="693" width="0.0117%" height="15" fill="rgb(238,50,21)" fg:x="129612" fg:w="62"/><text x="24.6728%" y="703.50"></text></g><g><title>pagevec_lru_move_fn (55 samples, 0.01%)</title><rect x="24.4242%" y="677" width="0.0104%" height="15" fill="rgb(225,57,45)" fg:x="129619" fg:w="55"/><text x="24.6742%" y="687.50"></text></g><g><title>lru_add_drain (66 samples, 0.01%)</title><rect x="24.4228%" y="709" width="0.0124%" height="15" fill="rgb(209,196,50)" fg:x="129612" fg:w="66"/><text x="24.6728%" y="719.50"></text></g><g><title>remove_vma (99 samples, 0.02%)</title><rect x="24.4358%" y="709" width="0.0187%" height="15" fill="rgb(242,140,13)" fg:x="129681" fg:w="99"/><text x="24.6858%" y="719.50"></text></g><g><title>kmem_cache_free (83 samples, 0.02%)</title><rect x="24.4389%" y="693" width="0.0156%" height="15" fill="rgb(217,111,7)" fg:x="129697" fg:w="83"/><text x="24.6889%" y="703.50"></text></g><g><title>tlb_finish_mmu (191 samples, 0.04%)</title><rect x="24.4545%" y="709" width="0.0360%" height="15" fill="rgb(253,193,51)" fg:x="129780" fg:w="191"/><text x="24.7045%" y="719.50"></text></g><g><title>release_pages (158 samples, 0.03%)</title><rect x="24.4607%" y="693" width="0.0298%" height="15" fill="rgb(252,70,29)" fg:x="129813" fg:w="158"/><text x="24.7107%" y="703.50"></text></g><g><title>page_remove_rmap (126 samples, 0.02%)</title><rect x="24.5547%" y="677" width="0.0237%" height="15" fill="rgb(232,127,12)" fg:x="130312" fg:w="126"/><text x="24.8047%" y="687.50"></text></g><g><title>unmap_page_range (489 samples, 0.09%)</title><rect x="24.4918%" y="693" width="0.0921%" height="15" fill="rgb(211,180,21)" fg:x="129978" fg:w="489"/><text x="24.7418%" y="703.50"></text></g><g><title>exit_mmap (1,150 samples, 0.22%)</title><rect x="24.3705%" y="725" width="0.2167%" height="15" fill="rgb(229,72,13)" fg:x="129334" fg:w="1150"/><text x="24.6205%" y="735.50"></text></g><g><title>unmap_vmas (513 samples, 0.10%)</title><rect x="24.4905%" y="709" width="0.0967%" height="15" fill="rgb(240,211,49)" fg:x="129971" fg:w="513"/><text x="24.7405%" y="719.50"></text></g><g><title>mmput (1,159 samples, 0.22%)</title><rect x="24.3697%" y="741" width="0.2184%" height="15" fill="rgb(219,149,40)" fg:x="129330" fg:w="1159"/><text x="24.6197%" y="751.50"></text></g><g><title>task_work_run (77 samples, 0.01%)</title><rect x="24.5937%" y="741" width="0.0145%" height="15" fill="rgb(210,127,46)" fg:x="130519" fg:w="77"/><text x="24.8437%" y="751.50"></text></g><g><title>__fput (74 samples, 0.01%)</title><rect x="24.5943%" y="725" width="0.0139%" height="15" fill="rgb(220,106,7)" fg:x="130522" fg:w="74"/><text x="24.8443%" y="735.50"></text></g><g><title>__x64_sys_exit_group (1,298 samples, 0.24%)</title><rect x="24.3639%" y="789" width="0.2446%" height="15" fill="rgb(249,31,22)" fg:x="129299" fg:w="1298"/><text x="24.6139%" y="799.50"></text></g><g><title>do_group_exit (1,298 samples, 0.24%)</title><rect x="24.3639%" y="773" width="0.2446%" height="15" fill="rgb(253,1,49)" fg:x="129299" fg:w="1298"/><text x="24.6139%" y="783.50"></text></g><g><title>do_exit (1,298 samples, 0.24%)</title><rect x="24.3639%" y="757" width="0.2446%" height="15" fill="rgb(227,144,33)" fg:x="129299" fg:w="1298"/><text x="24.6139%" y="767.50"></text></g><g><title>do_syscall_64 (1,892 samples, 0.36%)</title><rect x="24.2540%" y="805" width="0.3565%" height="15" fill="rgb(249,163,44)" fg:x="128716" fg:w="1892"/><text x="24.5040%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,897 samples, 0.36%)</title><rect x="24.2534%" y="821" width="0.3575%" height="15" fill="rgb(234,15,39)" fg:x="128713" fg:w="1897"/><text x="24.5034%" y="831.50"></text></g><g><title>c++ (34,713 samples, 6.54%)</title><rect x="18.0816%" y="837" width="6.5410%" height="15" fill="rgb(207,66,16)" fg:x="95959" fg:w="34713"/><text x="18.3316%" y="847.50">c++</text></g><g><title>[perf-925888.map] (418 samples, 0.08%)</title><rect x="24.6265%" y="821" width="0.0788%" height="15" fill="rgb(233,112,24)" fg:x="130693" fg:w="418"/><text x="24.8765%" y="831.50"></text></g><g><title>find-action-loo (453 samples, 0.09%)</title><rect x="24.6262%" y="837" width="0.0854%" height="15" fill="rgb(230,90,22)" fg:x="130691" fg:w="453"/><text x="24.8762%" y="847.50"></text></g><g><title>[perf-925888.map] (68 samples, 0.01%)</title><rect x="24.7117%" y="821" width="0.0128%" height="15" fill="rgb(229,61,13)" fg:x="131145" fg:w="68"/><text x="24.9617%" y="831.50"></text></g><g><title>globbing_pool-0 (97 samples, 0.02%)</title><rect x="24.7115%" y="837" width="0.0183%" height="15" fill="rgb(225,57,24)" fg:x="131144" fg:w="97"/><text x="24.9615%" y="847.50"></text></g><g><title>JVM_StartThread (60 samples, 0.01%)</title><rect x="24.7596%" y="805" width="0.0113%" height="15" fill="rgb(208,169,48)" fg:x="131399" fg:w="60"/><text x="25.0096%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.01%)</title><rect x="24.7724%" y="581" width="0.0106%" height="15" fill="rgb(244,218,51)" fg:x="131467" fg:w="56"/><text x="25.0224%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.01%)</title><rect x="24.7726%" y="565" width="0.0104%" height="15" fill="rgb(214,148,10)" fg:x="131468" fg:w="55"/><text x="25.0226%" y="575.50"></text></g><g><title>native_write_msr (55 samples, 0.01%)</title><rect x="24.7726%" y="549" width="0.0104%" height="15" fill="rgb(225,174,27)" fg:x="131468" fg:w="55"/><text x="25.0226%" y="559.50"></text></g><g><title>finish_task_switch (62 samples, 0.01%)</title><rect x="24.7722%" y="597" width="0.0117%" height="15" fill="rgb(230,96,26)" fg:x="131466" fg:w="62"/><text x="25.0222%" y="607.50"></text></g><g><title>do_syscall_64 (66 samples, 0.01%)</title><rect x="24.7716%" y="709" width="0.0124%" height="15" fill="rgb(232,10,30)" fg:x="131463" fg:w="66"/><text x="25.0216%" y="719.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.01%)</title><rect x="24.7718%" y="693" width="0.0122%" height="15" fill="rgb(222,8,50)" fg:x="131464" fg:w="65"/><text x="25.0218%" y="703.50"></text></g><g><title>do_futex (65 samples, 0.01%)</title><rect x="24.7718%" y="677" width="0.0122%" height="15" fill="rgb(213,81,27)" fg:x="131464" fg:w="65"/><text x="25.0218%" y="687.50"></text></g><g><title>futex_wait (65 samples, 0.01%)</title><rect x="24.7718%" y="661" width="0.0122%" height="15" fill="rgb(245,50,10)" fg:x="131464" fg:w="65"/><text x="25.0218%" y="671.50"></text></g><g><title>futex_wait_queue_me (65 samples, 0.01%)</title><rect x="24.7718%" y="645" width="0.0122%" height="15" fill="rgb(216,100,18)" fg:x="131464" fg:w="65"/><text x="25.0218%" y="655.50"></text></g><g><title>schedule (63 samples, 0.01%)</title><rect x="24.7722%" y="629" width="0.0119%" height="15" fill="rgb(236,147,54)" fg:x="131466" fg:w="63"/><text x="25.0222%" y="639.50"></text></g><g><title>__schedule (63 samples, 0.01%)</title><rect x="24.7722%" y="613" width="0.0119%" height="15" fill="rgb(205,143,26)" fg:x="131466" fg:w="63"/><text x="25.0222%" y="623.50"></text></g><g><title>__pthread_cond_wait (68 samples, 0.01%)</title><rect x="24.7716%" y="773" width="0.0128%" height="15" fill="rgb(236,26,9)" fg:x="131463" fg:w="68"/><text x="25.0216%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (68 samples, 0.01%)</title><rect x="24.7716%" y="757" width="0.0128%" height="15" fill="rgb(221,165,53)" fg:x="131463" fg:w="68"/><text x="25.0216%" y="767.50"></text></g><g><title>futex_wait_cancelable (68 samples, 0.01%)</title><rect x="24.7716%" y="741" width="0.0128%" height="15" fill="rgb(214,110,17)" fg:x="131463" fg:w="68"/><text x="25.0216%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.01%)</title><rect x="24.7716%" y="725" width="0.0128%" height="15" fill="rgb(237,197,12)" fg:x="131463" fg:w="68"/><text x="25.0216%" y="735.50"></text></g><g><title>Unsafe_Park (70 samples, 0.01%)</title><rect x="24.7714%" y="805" width="0.0132%" height="15" fill="rgb(205,84,17)" fg:x="131462" fg:w="70"/><text x="25.0214%" y="815.50"></text></g><g><title>Parker::park (69 samples, 0.01%)</title><rect x="24.7716%" y="789" width="0.0130%" height="15" fill="rgb(237,18,45)" fg:x="131463" fg:w="69"/><text x="25.0216%" y="799.50"></text></g><g><title>[perf-925888.map] (264 samples, 0.05%)</title><rect x="24.7370%" y="821" width="0.0497%" height="15" fill="rgb(221,87,14)" fg:x="131279" fg:w="264"/><text x="24.9870%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.01%)</title><rect x="24.7895%" y="757" width="0.0141%" height="15" fill="rgb(238,186,15)" fg:x="131558" fg:w="75"/><text x="25.0395%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.01%)</title><rect x="24.7895%" y="741" width="0.0141%" height="15" fill="rgb(208,115,11)" fg:x="131558" fg:w="75"/><text x="25.0395%" y="751.50"></text></g><g><title>native_write_msr (74 samples, 0.01%)</title><rect x="24.7897%" y="725" width="0.0139%" height="15" fill="rgb(254,175,0)" fg:x="131559" fg:w="74"/><text x="25.0397%" y="735.50"></text></g><g><title>schedule_tail (78 samples, 0.01%)</title><rect x="24.7893%" y="789" width="0.0147%" height="15" fill="rgb(227,24,42)" fg:x="131557" fg:w="78"/><text x="25.0393%" y="799.50"></text></g><g><title>finish_task_switch (78 samples, 0.01%)</title><rect x="24.7893%" y="773" width="0.0147%" height="15" fill="rgb(223,211,37)" fg:x="131557" fg:w="78"/><text x="25.0393%" y="783.50"></text></g><g><title>ret_from_fork (81 samples, 0.02%)</title><rect x="24.7891%" y="805" width="0.0153%" height="15" fill="rgb(235,49,27)" fg:x="131556" fg:w="81"/><text x="25.0391%" y="815.50"></text></g><g><title>os::PlatformEvent::park (54 samples, 0.01%)</title><rect x="24.8044%" y="741" width="0.0102%" height="15" fill="rgb(254,97,51)" fg:x="131637" fg:w="54"/><text x="25.0544%" y="751.50"></text></g><g><title>__pthread_cond_wait (54 samples, 0.01%)</title><rect x="24.8044%" y="725" width="0.0102%" height="15" fill="rgb(249,51,40)" fg:x="131637" fg:w="54"/><text x="25.0544%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (54 samples, 0.01%)</title><rect x="24.8044%" y="709" width="0.0102%" height="15" fill="rgb(210,128,45)" fg:x="131637" fg:w="54"/><text x="25.0544%" y="719.50"></text></g><g><title>Monitor::wait (55 samples, 0.01%)</title><rect x="24.8044%" y="773" width="0.0104%" height="15" fill="rgb(224,137,50)" fg:x="131637" fg:w="55"/><text x="25.0544%" y="783.50"></text></g><g><title>Monitor::IWait (55 samples, 0.01%)</title><rect x="24.8044%" y="757" width="0.0104%" height="15" fill="rgb(242,15,9)" fg:x="131637" fg:w="55"/><text x="25.0544%" y="767.50"></text></g><g><title>__GI___clone (167 samples, 0.03%)</title><rect x="24.7873%" y="821" width="0.0315%" height="15" fill="rgb(233,187,41)" fg:x="131546" fg:w="167"/><text x="25.0373%" y="831.50"></text></g><g><title>start_thread (76 samples, 0.01%)</title><rect x="24.8044%" y="805" width="0.0143%" height="15" fill="rgb(227,2,29)" fg:x="131637" fg:w="76"/><text x="25.0544%" y="815.50"></text></g><g><title>thread_native_entry (76 samples, 0.01%)</title><rect x="24.8044%" y="789" width="0.0143%" height="15" fill="rgb(222,70,3)" fg:x="131637" fg:w="76"/><text x="25.0544%" y="799.50"></text></g><g><title>globbing_pool-1 (524 samples, 0.10%)</title><rect x="24.7298%" y="837" width="0.0987%" height="15" fill="rgb(213,11,42)" fg:x="131241" fg:w="524"/><text x="24.9798%" y="847.50"></text></g><g><title>__pthread_cond_wait (54 samples, 0.01%)</title><rect x="24.8647%" y="741" width="0.0102%" height="15" fill="rgb(225,150,9)" fg:x="131957" fg:w="54"/><text x="25.1147%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (54 samples, 0.01%)</title><rect x="24.8647%" y="725" width="0.0102%" height="15" fill="rgb(230,162,45)" fg:x="131957" fg:w="54"/><text x="25.1147%" y="735.50"></text></g><g><title>futex_wait_cancelable (54 samples, 0.01%)</title><rect x="24.8647%" y="709" width="0.0102%" height="15" fill="rgb(222,14,52)" fg:x="131957" fg:w="54"/><text x="25.1147%" y="719.50"></text></g><g><title>Monitor::lock (57 samples, 0.01%)</title><rect x="24.8643%" y="789" width="0.0107%" height="15" fill="rgb(254,198,14)" fg:x="131955" fg:w="57"/><text x="25.1143%" y="799.50"></text></g><g><title>Monitor::ILock (57 samples, 0.01%)</title><rect x="24.8643%" y="773" width="0.0107%" height="15" fill="rgb(220,217,30)" fg:x="131955" fg:w="57"/><text x="25.1143%" y="783.50"></text></g><g><title>os::PlatformEvent::park (56 samples, 0.01%)</title><rect x="24.8645%" y="757" width="0.0106%" height="15" fill="rgb(215,146,41)" fg:x="131956" fg:w="56"/><text x="25.1145%" y="767.50"></text></g><g><title>JVM_StartThread (74 samples, 0.01%)</title><rect x="24.8634%" y="805" width="0.0139%" height="15" fill="rgb(217,27,36)" fg:x="131950" fg:w="74"/><text x="25.1134%" y="815.50"></text></g><g><title>Unsafe_Park (56 samples, 0.01%)</title><rect x="24.8785%" y="805" width="0.0106%" height="15" fill="rgb(219,218,39)" fg:x="132030" fg:w="56"/><text x="25.1285%" y="815.50"></text></g><g><title>Parker::park (56 samples, 0.01%)</title><rect x="24.8785%" y="789" width="0.0106%" height="15" fill="rgb(219,4,42)" fg:x="132030" fg:w="56"/><text x="25.1285%" y="799.50"></text></g><g><title>__pthread_cond_wait (55 samples, 0.01%)</title><rect x="24.8787%" y="773" width="0.0104%" height="15" fill="rgb(249,119,36)" fg:x="132031" fg:w="55"/><text x="25.1287%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (55 samples, 0.01%)</title><rect x="24.8787%" y="757" width="0.0104%" height="15" fill="rgb(209,23,33)" fg:x="132031" fg:w="55"/><text x="25.1287%" y="767.50"></text></g><g><title>futex_wait_cancelable (55 samples, 0.01%)</title><rect x="24.8787%" y="741" width="0.0104%" height="15" fill="rgb(211,10,0)" fg:x="132031" fg:w="55"/><text x="25.1287%" y="751.50"></text></g><g><title>[perf-925888.map] (285 samples, 0.05%)</title><rect x="24.8378%" y="821" width="0.0537%" height="15" fill="rgb(208,99,37)" fg:x="131814" fg:w="285"/><text x="25.0878%" y="831.50"></text></g><g><title>ret_from_fork (55 samples, 0.01%)</title><rect x="24.8935%" y="805" width="0.0104%" height="15" fill="rgb(213,132,31)" fg:x="132110" fg:w="55"/><text x="25.1435%" y="815.50"></text></g><g><title>globbing_pool-2 (417 samples, 0.08%)</title><rect x="24.8285%" y="837" width="0.0786%" height="15" fill="rgb(243,129,40)" fg:x="131765" fg:w="417"/><text x="25.0785%" y="847.50"></text></g><g><title>__GI___clone (79 samples, 0.01%)</title><rect x="24.8922%" y="821" width="0.0149%" height="15" fill="rgb(210,66,33)" fg:x="132103" fg:w="79"/><text x="25.1422%" y="831.50"></text></g><g><title>JVM_StartThread (76 samples, 0.01%)</title><rect x="24.9348%" y="805" width="0.0143%" height="15" fill="rgb(209,189,4)" fg:x="132329" fg:w="76"/><text x="25.1848%" y="815.50"></text></g><g><title>[perf-925888.map] (245 samples, 0.05%)</title><rect x="24.9139%" y="821" width="0.0462%" height="15" fill="rgb(214,107,37)" fg:x="132218" fg:w="245"/><text x="25.1639%" y="831.50"></text></g><g><title>globbing_pool-3 (338 samples, 0.06%)</title><rect x="24.9071%" y="837" width="0.0637%" height="15" fill="rgb(245,88,54)" fg:x="132182" fg:w="338"/><text x="25.1571%" y="847.50"></text></g><g><title>JVM_StartThread (56 samples, 0.01%)</title><rect x="24.9968%" y="805" width="0.0106%" height="15" fill="rgb(205,146,20)" fg:x="132658" fg:w="56"/><text x="25.2468%" y="815.50"></text></g><g><title>Unsafe_Park (57 samples, 0.01%)</title><rect x="25.0077%" y="805" width="0.0107%" height="15" fill="rgb(220,161,25)" fg:x="132716" fg:w="57"/><text x="25.2577%" y="815.50"></text></g><g><title>Parker::park (57 samples, 0.01%)</title><rect x="25.0077%" y="789" width="0.0107%" height="15" fill="rgb(215,152,15)" fg:x="132716" fg:w="57"/><text x="25.2577%" y="799.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.01%)</title><rect x="25.0077%" y="773" width="0.0107%" height="15" fill="rgb(233,192,44)" fg:x="132716" fg:w="57"/><text x="25.2577%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.01%)</title><rect x="25.0077%" y="757" width="0.0107%" height="15" fill="rgb(240,170,46)" fg:x="132716" fg:w="57"/><text x="25.2577%" y="767.50"></text></g><g><title>futex_wait_cancelable (56 samples, 0.01%)</title><rect x="25.0079%" y="741" width="0.0106%" height="15" fill="rgb(207,104,33)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="25.0079%" y="725" width="0.0106%" height="15" fill="rgb(219,21,39)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="735.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="25.0079%" y="709" width="0.0106%" height="15" fill="rgb(214,133,29)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="719.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="25.0079%" y="693" width="0.0106%" height="15" fill="rgb(226,93,6)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="703.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="25.0079%" y="677" width="0.0106%" height="15" fill="rgb(252,222,34)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="687.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="25.0079%" y="661" width="0.0106%" height="15" fill="rgb(252,92,48)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="671.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.01%)</title><rect x="25.0079%" y="645" width="0.0106%" height="15" fill="rgb(245,223,24)" fg:x="132717" fg:w="56"/><text x="25.2579%" y="655.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="25.0081%" y="629" width="0.0104%" height="15" fill="rgb(205,176,3)" fg:x="132718" fg:w="55"/><text x="25.2581%" y="639.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="25.0083%" y="613" width="0.0102%" height="15" fill="rgb(235,151,15)" fg:x="132719" fg:w="54"/><text x="25.2583%" y="623.50"></text></g><g><title>[perf-925888.map] (231 samples, 0.04%)</title><rect x="24.9759%" y="821" width="0.0435%" height="15" fill="rgb(237,209,11)" fg:x="132547" fg:w="231"/><text x="25.2259%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (63 samples, 0.01%)</title><rect x="25.0211%" y="757" width="0.0119%" height="15" fill="rgb(243,227,24)" fg:x="132787" fg:w="63"/><text x="25.2711%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="25.0213%" y="741" width="0.0117%" height="15" fill="rgb(239,193,16)" fg:x="132788" fg:w="62"/><text x="25.2713%" y="751.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="25.0213%" y="725" width="0.0117%" height="15" fill="rgb(231,27,9)" fg:x="132788" fg:w="62"/><text x="25.2713%" y="735.50"></text></g><g><title>schedule_tail (65 samples, 0.01%)</title><rect x="25.0211%" y="789" width="0.0122%" height="15" fill="rgb(219,169,10)" fg:x="132787" fg:w="65"/><text x="25.2711%" y="799.50"></text></g><g><title>finish_task_switch (65 samples, 0.01%)</title><rect x="25.0211%" y="773" width="0.0122%" height="15" fill="rgb(244,229,43)" fg:x="132787" fg:w="65"/><text x="25.2711%" y="783.50"></text></g><g><title>ret_from_fork (67 samples, 0.01%)</title><rect x="25.0209%" y="805" width="0.0126%" height="15" fill="rgb(254,38,20)" fg:x="132786" fg:w="67"/><text x="25.2709%" y="815.50"></text></g><g><title>__GI___clone (113 samples, 0.02%)</title><rect x="25.0200%" y="821" width="0.0213%" height="15" fill="rgb(250,47,30)" fg:x="132781" fg:w="113"/><text x="25.2700%" y="831.50"></text></g><g><title>globbing_pool-4 (377 samples, 0.07%)</title><rect x="24.9708%" y="837" width="0.0710%" height="15" fill="rgb(224,124,36)" fg:x="132520" fg:w="377"/><text x="25.2208%" y="847.50"></text></g><g><title>[perf-925888.map] (101 samples, 0.02%)</title><rect x="25.0432%" y="821" width="0.0190%" height="15" fill="rgb(246,68,51)" fg:x="132904" fg:w="101"/><text x="25.2932%" y="831.50"></text></g><g><title>globbing_pool-5 (146 samples, 0.03%)</title><rect x="25.0418%" y="837" width="0.0275%" height="15" fill="rgb(253,43,49)" fg:x="132897" fg:w="146"/><text x="25.2918%" y="847.50"></text></g><g><title>[perf-925888.map] (136 samples, 0.03%)</title><rect x="25.0750%" y="821" width="0.0256%" height="15" fill="rgb(219,54,36)" fg:x="133073" fg:w="136"/><text x="25.3250%" y="831.50"></text></g><g><title>globbing_pool-6 (202 samples, 0.04%)</title><rect x="25.0693%" y="837" width="0.0381%" height="15" fill="rgb(227,133,34)" fg:x="133043" fg:w="202"/><text x="25.3193%" y="847.50"></text></g><g><title>[perf-925888.map] (180 samples, 0.03%)</title><rect x="25.1123%" y="821" width="0.0339%" height="15" fill="rgb(247,227,15)" fg:x="133271" fg:w="180"/><text x="25.3623%" y="831.50"></text></g><g><title>globbing_pool-7 (210 samples, 0.04%)</title><rect x="25.1074%" y="837" width="0.0396%" height="15" fill="rgb(229,96,14)" fg:x="133245" fg:w="210"/><text x="25.3574%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.01%)</title><rect x="25.2020%" y="581" width="0.0141%" height="15" fill="rgb(220,79,17)" fg:x="133747" fg:w="75"/><text x="25.4520%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (74 samples, 0.01%)</title><rect x="25.2022%" y="565" width="0.0139%" height="15" fill="rgb(205,131,53)" fg:x="133748" fg:w="74"/><text x="25.4522%" y="575.50"></text></g><g><title>native_write_msr (73 samples, 0.01%)</title><rect x="25.2024%" y="549" width="0.0138%" height="15" fill="rgb(209,50,29)" fg:x="133749" fg:w="73"/><text x="25.4524%" y="559.50"></text></g><g><title>do_syscall_64 (83 samples, 0.02%)</title><rect x="25.2007%" y="709" width="0.0156%" height="15" fill="rgb(245,86,46)" fg:x="133740" fg:w="83"/><text x="25.4507%" y="719.50"></text></g><g><title>__x64_sys_futex (83 samples, 0.02%)</title><rect x="25.2007%" y="693" width="0.0156%" height="15" fill="rgb(235,66,46)" fg:x="133740" fg:w="83"/><text x="25.4507%" y="703.50"></text></g><g><title>do_futex (81 samples, 0.02%)</title><rect x="25.2011%" y="677" width="0.0153%" height="15" fill="rgb(232,148,31)" fg:x="133742" fg:w="81"/><text x="25.4511%" y="687.50"></text></g><g><title>futex_wait (81 samples, 0.02%)</title><rect x="25.2011%" y="661" width="0.0153%" height="15" fill="rgb(217,149,8)" fg:x="133742" fg:w="81"/><text x="25.4511%" y="671.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.02%)</title><rect x="25.2011%" y="645" width="0.0153%" height="15" fill="rgb(209,183,11)" fg:x="133742" fg:w="81"/><text x="25.4511%" y="655.50"></text></g><g><title>schedule (79 samples, 0.01%)</title><rect x="25.2014%" y="629" width="0.0149%" height="15" fill="rgb(208,55,20)" fg:x="133744" fg:w="79"/><text x="25.4514%" y="639.50"></text></g><g><title>__schedule (79 samples, 0.01%)</title><rect x="25.2014%" y="613" width="0.0149%" height="15" fill="rgb(218,39,14)" fg:x="133744" fg:w="79"/><text x="25.4514%" y="623.50"></text></g><g><title>finish_task_switch (78 samples, 0.01%)</title><rect x="25.2016%" y="597" width="0.0147%" height="15" fill="rgb(216,169,33)" fg:x="133745" fg:w="78"/><text x="25.4516%" y="607.50"></text></g><g><title>__pthread_cond_wait (86 samples, 0.02%)</title><rect x="25.2005%" y="773" width="0.0162%" height="15" fill="rgb(233,80,24)" fg:x="133739" fg:w="86"/><text x="25.4505%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (86 samples, 0.02%)</title><rect x="25.2005%" y="757" width="0.0162%" height="15" fill="rgb(213,179,31)" fg:x="133739" fg:w="86"/><text x="25.4505%" y="767.50"></text></g><g><title>futex_wait_cancelable (85 samples, 0.02%)</title><rect x="25.2007%" y="741" width="0.0160%" height="15" fill="rgb(209,19,5)" fg:x="133740" fg:w="85"/><text x="25.4507%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.02%)</title><rect x="25.2007%" y="725" width="0.0160%" height="15" fill="rgb(219,18,35)" fg:x="133740" fg:w="85"/><text x="25.4507%" y="735.50"></text></g><g><title>Unsafe_Park (91 samples, 0.02%)</title><rect x="25.1999%" y="805" width="0.0171%" height="15" fill="rgb(209,169,16)" fg:x="133736" fg:w="91"/><text x="25.4499%" y="815.50"></text></g><g><title>Parker::park (91 samples, 0.02%)</title><rect x="25.1999%" y="789" width="0.0171%" height="15" fill="rgb(245,90,51)" fg:x="133736" fg:w="91"/><text x="25.4499%" y="799.50"></text></g><g><title>[perf-925888.map] (340 samples, 0.06%)</title><rect x="25.1555%" y="821" width="0.0641%" height="15" fill="rgb(220,99,45)" fg:x="133500" fg:w="340"/><text x="25.4055%" y="831.50"></text></g><g><title>globbing_pool-8 (420 samples, 0.08%)</title><rect x="25.1470%" y="837" width="0.0791%" height="15" fill="rgb(249,89,25)" fg:x="133455" fg:w="420"/><text x="25.3970%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.01%)</title><rect x="25.2467%" y="581" width="0.0115%" height="15" fill="rgb(239,193,0)" fg:x="133984" fg:w="61"/><text x="25.4967%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.01%)</title><rect x="25.2467%" y="565" width="0.0115%" height="15" fill="rgb(231,126,1)" fg:x="133984" fg:w="61"/><text x="25.4967%" y="575.50"></text></g><g><title>native_write_msr (61 samples, 0.01%)</title><rect x="25.2467%" y="549" width="0.0115%" height="15" fill="rgb(243,166,3)" fg:x="133984" fg:w="61"/><text x="25.4967%" y="559.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="25.2457%" y="709" width="0.0132%" height="15" fill="rgb(223,22,34)" fg:x="133979" fg:w="70"/><text x="25.4957%" y="719.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.01%)</title><rect x="25.2457%" y="693" width="0.0132%" height="15" fill="rgb(251,52,51)" fg:x="133979" fg:w="70"/><text x="25.4957%" y="703.50"></text></g><g><title>do_futex (70 samples, 0.01%)</title><rect x="25.2457%" y="677" width="0.0132%" height="15" fill="rgb(221,165,28)" fg:x="133979" fg:w="70"/><text x="25.4957%" y="687.50"></text></g><g><title>futex_wait (70 samples, 0.01%)</title><rect x="25.2457%" y="661" width="0.0132%" height="15" fill="rgb(218,121,47)" fg:x="133979" fg:w="70"/><text x="25.4957%" y="671.50"></text></g><g><title>futex_wait_queue_me (69 samples, 0.01%)</title><rect x="25.2459%" y="645" width="0.0130%" height="15" fill="rgb(209,120,9)" fg:x="133980" fg:w="69"/><text x="25.4959%" y="655.50"></text></g><g><title>schedule (69 samples, 0.01%)</title><rect x="25.2459%" y="629" width="0.0130%" height="15" fill="rgb(236,68,12)" fg:x="133980" fg:w="69"/><text x="25.4959%" y="639.50"></text></g><g><title>__schedule (68 samples, 0.01%)</title><rect x="25.2461%" y="613" width="0.0128%" height="15" fill="rgb(225,194,26)" fg:x="133981" fg:w="68"/><text x="25.4961%" y="623.50"></text></g><g><title>finish_task_switch (68 samples, 0.01%)</title><rect x="25.2461%" y="597" width="0.0128%" height="15" fill="rgb(231,84,39)" fg:x="133981" fg:w="68"/><text x="25.4961%" y="607.50"></text></g><g><title>Unsafe_Park (72 samples, 0.01%)</title><rect x="25.2457%" y="805" width="0.0136%" height="15" fill="rgb(210,11,45)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="815.50"></text></g><g><title>Parker::park (72 samples, 0.01%)</title><rect x="25.2457%" y="789" width="0.0136%" height="15" fill="rgb(224,54,52)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="799.50"></text></g><g><title>__pthread_cond_wait (72 samples, 0.01%)</title><rect x="25.2457%" y="773" width="0.0136%" height="15" fill="rgb(238,102,14)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (72 samples, 0.01%)</title><rect x="25.2457%" y="757" width="0.0136%" height="15" fill="rgb(243,160,52)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="767.50"></text></g><g><title>futex_wait_cancelable (72 samples, 0.01%)</title><rect x="25.2457%" y="741" width="0.0136%" height="15" fill="rgb(216,114,19)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="25.2457%" y="725" width="0.0136%" height="15" fill="rgb(244,166,37)" fg:x="133979" fg:w="72"/><text x="25.4957%" y="735.50"></text></g><g><title>[perf-925888.map] (177 samples, 0.03%)</title><rect x="25.2274%" y="821" width="0.0334%" height="15" fill="rgb(246,29,44)" fg:x="133882" fg:w="177"/><text x="25.4774%" y="831.50"></text></g><g><title>globbing_pool-9 (195 samples, 0.04%)</title><rect x="25.2261%" y="837" width="0.0367%" height="15" fill="rgb(215,56,53)" fg:x="133875" fg:w="195"/><text x="25.4761%" y="847.50"></text></g><g><title>[anon] (188 samples, 0.04%)</title><rect x="25.2655%" y="821" width="0.0354%" height="15" fill="rgb(217,60,2)" fg:x="134084" fg:w="188"/><text x="25.5155%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (70 samples, 0.01%)</title><rect x="25.6386%" y="693" width="0.0132%" height="15" fill="rgb(207,26,24)" fg:x="136064" fg:w="70"/><text x="25.8886%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (70 samples, 0.01%)</title><rect x="25.6386%" y="677" width="0.0132%" height="15" fill="rgb(252,210,15)" fg:x="136064" fg:w="70"/><text x="25.8886%" y="687.50"></text></g><g><title>ClassLoader::load_class (119 samples, 0.02%)</title><rect x="25.6365%" y="725" width="0.0224%" height="15" fill="rgb(253,209,26)" fg:x="136053" fg:w="119"/><text x="25.8865%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (108 samples, 0.02%)</title><rect x="25.6386%" y="709" width="0.0204%" height="15" fill="rgb(238,170,14)" fg:x="136064" fg:w="108"/><text x="25.8886%" y="719.50"></text></g><g><title>SystemDictionary::load_instance_class (133 samples, 0.03%)</title><rect x="25.6361%" y="741" width="0.0251%" height="15" fill="rgb(216,178,15)" fg:x="136051" fg:w="133"/><text x="25.8861%" y="751.50"></text></g><g><title>ConstantPool::klass_at_impl (142 samples, 0.03%)</title><rect x="25.6346%" y="789" width="0.0268%" height="15" fill="rgb(250,197,2)" fg:x="136043" fg:w="142"/><text x="25.8846%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_fail (139 samples, 0.03%)</title><rect x="25.6352%" y="773" width="0.0262%" height="15" fill="rgb(212,70,42)" fg:x="136046" fg:w="139"/><text x="25.8852%" y="783.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (138 samples, 0.03%)</title><rect x="25.6354%" y="757" width="0.0260%" height="15" fill="rgb(227,213,9)" fg:x="136047" fg:w="138"/><text x="25.8854%" y="767.50"></text></g><g><title>Rewriter::rewrite (57 samples, 0.01%)</title><rect x="25.6701%" y="757" width="0.0107%" height="15" fill="rgb(245,99,25)" fg:x="136231" fg:w="57"/><text x="25.9201%" y="767.50"></text></g><g><title>Rewriter::Rewriter (57 samples, 0.01%)</title><rect x="25.6701%" y="741" width="0.0107%" height="15" fill="rgb(250,82,29)" fg:x="136231" fg:w="57"/><text x="25.9201%" y="751.50"></text></g><g><title>InterpreterRuntime::_new (272 samples, 0.05%)</title><rect x="25.6346%" y="805" width="0.0513%" height="15" fill="rgb(241,226,54)" fg:x="136043" fg:w="272"/><text x="25.8846%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (129 samples, 0.02%)</title><rect x="25.6616%" y="789" width="0.0243%" height="15" fill="rgb(221,99,41)" fg:x="136186" fg:w="129"/><text x="25.9116%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (127 samples, 0.02%)</title><rect x="25.6620%" y="773" width="0.0239%" height="15" fill="rgb(213,90,21)" fg:x="136188" fg:w="127"/><text x="25.9120%" y="783.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (54 samples, 0.01%)</title><rect x="25.6972%" y="805" width="0.0102%" height="15" fill="rgb(205,208,24)" fg:x="136375" fg:w="54"/><text x="25.9472%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (54 samples, 0.01%)</title><rect x="25.6972%" y="789" width="0.0102%" height="15" fill="rgb(246,31,12)" fg:x="136375" fg:w="54"/><text x="25.9472%" y="799.50"></text></g><g><title>LinkResolver::resolve_field_access (75 samples, 0.01%)</title><rect x="25.7215%" y="773" width="0.0141%" height="15" fill="rgb(213,154,6)" fg:x="136504" fg:w="75"/><text x="25.9715%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (90 samples, 0.02%)</title><rect x="25.7192%" y="789" width="0.0170%" height="15" fill="rgb(222,163,29)" fg:x="136492" fg:w="90"/><text x="25.9692%" y="799.50"></text></g><g><title>ClassLoader::load_class (65 samples, 0.01%)</title><rect x="25.7441%" y="693" width="0.0122%" height="15" fill="rgb(227,201,8)" fg:x="136624" fg:w="65"/><text x="25.9941%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (60 samples, 0.01%)</title><rect x="25.7451%" y="677" width="0.0113%" height="15" fill="rgb(233,9,32)" fg:x="136629" fg:w="60"/><text x="25.9951%" y="687.50"></text></g><g><title>SystemDictionary::load_instance_class (67 samples, 0.01%)</title><rect x="25.7441%" y="709" width="0.0126%" height="15" fill="rgb(217,54,24)" fg:x="136624" fg:w="67"/><text x="25.9941%" y="719.50"></text></g><g><title>ConstantPool::klass_ref_at (88 samples, 0.02%)</title><rect x="25.7405%" y="757" width="0.0166%" height="15" fill="rgb(235,192,0)" fg:x="136605" fg:w="88"/><text x="25.9905%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (82 samples, 0.02%)</title><rect x="25.7417%" y="741" width="0.0155%" height="15" fill="rgb(235,45,9)" fg:x="136611" fg:w="82"/><text x="25.9917%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (82 samples, 0.02%)</title><rect x="25.7417%" y="725" width="0.0155%" height="15" fill="rgb(246,42,40)" fg:x="136611" fg:w="82"/><text x="25.9917%" y="735.50"></text></g><g><title>InstanceKlass::initialize_impl (93 samples, 0.02%)</title><rect x="25.7684%" y="741" width="0.0175%" height="15" fill="rgb(248,111,24)" fg:x="136753" fg:w="93"/><text x="26.0184%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (84 samples, 0.02%)</title><rect x="25.7701%" y="725" width="0.0158%" height="15" fill="rgb(249,65,22)" fg:x="136762" fg:w="84"/><text x="26.0201%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (111 samples, 0.02%)</title><rect x="25.7679%" y="757" width="0.0209%" height="15" fill="rgb(238,111,51)" fg:x="136750" fg:w="111"/><text x="26.0179%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (262 samples, 0.05%)</title><rect x="25.7403%" y="773" width="0.0494%" height="15" fill="rgb(250,118,22)" fg:x="136604" fg:w="262"/><text x="25.9903%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (297 samples, 0.06%)</title><rect x="25.7362%" y="789" width="0.0560%" height="15" fill="rgb(234,84,26)" fg:x="136582" fg:w="297"/><text x="25.9862%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (434 samples, 0.08%)</title><rect x="25.7177%" y="805" width="0.0818%" height="15" fill="rgb(243,172,12)" fg:x="136484" fg:w="434"/><text x="25.9677%" y="815.50"></text></g><g><title>SymbolTable::lookup_only (423 samples, 0.08%)</title><rect x="25.8656%" y="661" width="0.0797%" height="15" fill="rgb(236,150,49)" fg:x="137269" fg:w="423"/><text x="26.1156%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (490 samples, 0.09%)</title><rect x="25.8532%" y="677" width="0.0923%" height="15" fill="rgb(225,197,26)" fg:x="137203" fg:w="490"/><text x="26.1032%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool (508 samples, 0.10%)</title><rect x="25.8506%" y="693" width="0.0957%" height="15" fill="rgb(214,17,42)" fg:x="137189" fg:w="508"/><text x="26.1006%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (141 samples, 0.03%)</title><rect x="25.9508%" y="677" width="0.0266%" height="15" fill="rgb(224,165,40)" fg:x="137721" fg:w="141"/><text x="26.2008%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (143 samples, 0.03%)</title><rect x="25.9506%" y="693" width="0.0269%" height="15" fill="rgb(246,100,4)" fg:x="137720" fg:w="143"/><text x="26.2006%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (696 samples, 0.13%)</title><rect x="25.8493%" y="725" width="0.1311%" height="15" fill="rgb(222,103,0)" fg:x="137182" fg:w="696"/><text x="26.0993%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (696 samples, 0.13%)</title><rect x="25.8493%" y="709" width="0.1311%" height="15" fill="rgb(227,189,26)" fg:x="137182" fg:w="696"/><text x="26.0993%" y="719.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (86 samples, 0.02%)</title><rect x="25.9844%" y="677" width="0.0162%" height="15" fill="rgb(214,202,17)" fg:x="137899" fg:w="86"/><text x="26.2344%" y="687.50"></text></g><g><title>DefaultMethods::generate_default_methods (129 samples, 0.02%)</title><rect x="25.9813%" y="693" width="0.0243%" height="15" fill="rgb(229,111,3)" fg:x="137883" fg:w="129"/><text x="26.2313%" y="703.50"></text></g><g><title>ClassFileParser::fill_instance_klass (168 samples, 0.03%)</title><rect x="25.9804%" y="709" width="0.0317%" height="15" fill="rgb(229,172,15)" fg:x="137878" fg:w="168"/><text x="26.2304%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (178 samples, 0.03%)</title><rect x="25.9804%" y="725" width="0.0335%" height="15" fill="rgb(230,224,35)" fg:x="137878" fg:w="178"/><text x="26.2304%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (920 samples, 0.17%)</title><rect x="25.8493%" y="741" width="0.1734%" height="15" fill="rgb(251,141,6)" fg:x="137182" fg:w="920"/><text x="26.0993%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (964 samples, 0.18%)</title><rect x="25.8472%" y="789" width="0.1816%" height="15" fill="rgb(225,208,6)" fg:x="137171" fg:w="964"/><text x="26.0972%" y="799.50"></text></g><g><title>jvm_define_class_common (964 samples, 0.18%)</title><rect x="25.8472%" y="773" width="0.1816%" height="15" fill="rgb(246,181,16)" fg:x="137171" fg:w="964"/><text x="26.0972%" y="783.50"></text></g><g><title>SystemDictionary::resolve_from_stream (954 samples, 0.18%)</title><rect x="25.8491%" y="757" width="0.1798%" height="15" fill="rgb(227,129,36)" fg:x="137181" fg:w="954"/><text x="26.0991%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,003 samples, 0.19%)</title><rect x="25.8468%" y="805" width="0.1890%" height="15" fill="rgb(248,117,24)" fg:x="137169" fg:w="1003"/><text x="26.0968%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (69 samples, 0.01%)</title><rect x="26.0358%" y="805" width="0.0130%" height="15" fill="rgb(214,185,35)" fg:x="138172" fg:w="69"/><text x="26.2858%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (60 samples, 0.01%)</title><rect x="26.0669%" y="805" width="0.0113%" height="15" fill="rgb(236,150,34)" fg:x="138337" fg:w="60"/><text x="26.3169%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (59 samples, 0.01%)</title><rect x="26.0671%" y="789" width="0.0111%" height="15" fill="rgb(243,228,27)" fg:x="138338" fg:w="59"/><text x="26.3171%" y="799.50"></text></g><g><title>[perf-925888.map] (4,171 samples, 0.79%)</title><rect x="25.3030%" y="821" width="0.7859%" height="15" fill="rgb(245,77,44)" fg:x="134283" fg:w="4171"/><text x="25.5530%" y="831.50"></text></g><g><title>[unknown] (151 samples, 0.03%)</title><rect x="26.0889%" y="821" width="0.0285%" height="15" fill="rgb(235,214,42)" fg:x="138454" fg:w="151"/><text x="26.3389%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (274 samples, 0.05%)</title><rect x="26.1208%" y="757" width="0.0516%" height="15" fill="rgb(221,74,3)" fg:x="138623" fg:w="274"/><text x="26.3708%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (272 samples, 0.05%)</title><rect x="26.1212%" y="741" width="0.0513%" height="15" fill="rgb(206,121,29)" fg:x="138625" fg:w="272"/><text x="26.3712%" y="751.50"></text></g><g><title>native_write_msr (271 samples, 0.05%)</title><rect x="26.1213%" y="725" width="0.0511%" height="15" fill="rgb(249,131,53)" fg:x="138626" fg:w="271"/><text x="26.3713%" y="735.50"></text></g><g><title>schedule_tail (286 samples, 0.05%)</title><rect x="26.1198%" y="789" width="0.0539%" height="15" fill="rgb(236,170,29)" fg:x="138618" fg:w="286"/><text x="26.3698%" y="799.50"></text></g><g><title>finish_task_switch (286 samples, 0.05%)</title><rect x="26.1198%" y="773" width="0.0539%" height="15" fill="rgb(247,96,15)" fg:x="138618" fg:w="286"/><text x="26.3698%" y="783.50"></text></g><g><title>ret_from_fork (295 samples, 0.06%)</title><rect x="26.1187%" y="805" width="0.0556%" height="15" fill="rgb(211,210,7)" fg:x="138612" fg:w="295"/><text x="26.3687%" y="815.50"></text></g><g><title>JNI_CreateJavaVM (63 samples, 0.01%)</title><rect x="26.1743%" y="773" width="0.0119%" height="15" fill="rgb(240,88,50)" fg:x="138907" fg:w="63"/><text x="26.4243%" y="783.50"></text></g><g><title>Threads::create_vm (63 samples, 0.01%)</title><rect x="26.1743%" y="757" width="0.0119%" height="15" fill="rgb(209,229,26)" fg:x="138907" fg:w="63"/><text x="26.4243%" y="767.50"></text></g><g><title>JavaMain (65 samples, 0.01%)</title><rect x="26.1743%" y="789" width="0.0122%" height="15" fill="rgb(210,68,23)" fg:x="138907" fg:w="65"/><text x="26.4243%" y="799.50"></text></g><g><title>__GI___clone (468 samples, 0.09%)</title><rect x="26.1174%" y="821" width="0.0882%" height="15" fill="rgb(229,180,13)" fg:x="138605" fg:w="468"/><text x="26.3674%" y="831.50"></text></g><g><title>start_thread (166 samples, 0.03%)</title><rect x="26.1743%" y="805" width="0.0313%" height="15" fill="rgb(236,53,44)" fg:x="138907" fg:w="166"/><text x="26.4243%" y="815.50"></text></g><g><title>thread_native_entry (97 samples, 0.02%)</title><rect x="26.1873%" y="789" width="0.0183%" height="15" fill="rgb(244,214,29)" fg:x="138976" fg:w="97"/><text x="26.4373%" y="799.50"></text></g><g><title>java (5,030 samples, 0.95%)</title><rect x="25.2629%" y="837" width="0.9478%" height="15" fill="rgb(220,75,29)" fg:x="134070" fg:w="5030"/><text x="25.5129%" y="847.50"></text></g><g><title>[bash] (85 samples, 0.02%)</title><rect x="26.2333%" y="789" width="0.0160%" height="15" fill="rgb(214,183,37)" fg:x="139220" fg:w="85"/><text x="26.4833%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.01%)</title><rect x="26.2553%" y="69" width="0.0115%" height="15" fill="rgb(239,117,29)" fg:x="139337" fg:w="61"/><text x="26.5053%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.01%)</title><rect x="26.2553%" y="53" width="0.0115%" height="15" fill="rgb(237,171,35)" fg:x="139337" fg:w="61"/><text x="26.5053%" y="63.50"></text></g><g><title>native_write_msr (61 samples, 0.01%)</title><rect x="26.2553%" y="37" width="0.0115%" height="15" fill="rgb(229,178,53)" fg:x="139337" fg:w="61"/><text x="26.5053%" y="47.50"></text></g><g><title>arch_fork (82 samples, 0.02%)</title><rect x="26.2516%" y="133" width="0.0155%" height="15" fill="rgb(210,102,19)" fg:x="139317" fg:w="82"/><text x="26.5016%" y="143.50"></text></g><g><title>ret_from_fork (68 samples, 0.01%)</title><rect x="26.2542%" y="117" width="0.0128%" height="15" fill="rgb(235,127,22)" fg:x="139331" fg:w="68"/><text x="26.5042%" y="127.50"></text></g><g><title>schedule_tail (68 samples, 0.01%)</title><rect x="26.2542%" y="101" width="0.0128%" height="15" fill="rgb(244,31,31)" fg:x="139331" fg:w="68"/><text x="26.5042%" y="111.50"></text></g><g><title>finish_task_switch (63 samples, 0.01%)</title><rect x="26.2551%" y="85" width="0.0119%" height="15" fill="rgb(231,43,21)" fg:x="139336" fg:w="63"/><text x="26.5051%" y="95.50"></text></g><g><title>execute_command_internal (181 samples, 0.03%)</title><rect x="26.2333%" y="805" width="0.0341%" height="15" fill="rgb(217,131,35)" fg:x="139220" fg:w="181"/><text x="26.4833%" y="815.50"></text></g><g><title>execute_command_internal (95 samples, 0.02%)</title><rect x="26.2495%" y="789" width="0.0179%" height="15" fill="rgb(221,149,4)" fg:x="139306" fg:w="95"/><text x="26.4995%" y="799.50"></text></g><g><title>[bash] (95 samples, 0.02%)</title><rect x="26.2495%" y="773" width="0.0179%" height="15" fill="rgb(232,170,28)" fg:x="139306" fg:w="95"/><text x="26.4995%" y="783.50"></text></g><g><title>execute_command (95 samples, 0.02%)</title><rect x="26.2495%" y="757" width="0.0179%" height="15" fill="rgb(238,56,10)" fg:x="139306" fg:w="95"/><text x="26.4995%" y="767.50"></text></g><g><title>execute_command_internal (95 samples, 0.02%)</title><rect x="26.2495%" y="741" width="0.0179%" height="15" fill="rgb(235,196,14)" fg:x="139306" fg:w="95"/><text x="26.4995%" y="751.50"></text></g><g><title>[bash] (95 samples, 0.02%)</title><rect x="26.2495%" y="725" width="0.0179%" height="15" fill="rgb(216,45,48)" fg:x="139306" fg:w="95"/><text x="26.4995%" y="735.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="709" width="0.0171%" height="15" fill="rgb(238,213,17)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="719.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="693" width="0.0171%" height="15" fill="rgb(212,13,2)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="703.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="677" width="0.0171%" height="15" fill="rgb(240,114,20)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="687.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="661" width="0.0171%" height="15" fill="rgb(228,41,40)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="671.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="645" width="0.0171%" height="15" fill="rgb(244,132,35)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="655.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="629" width="0.0171%" height="15" fill="rgb(253,189,4)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="639.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="613" width="0.0171%" height="15" fill="rgb(224,37,19)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="623.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="597" width="0.0171%" height="15" fill="rgb(235,223,18)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="607.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="581" width="0.0171%" height="15" fill="rgb(235,163,25)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="591.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="565" width="0.0171%" height="15" fill="rgb(217,145,28)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="575.50"></text></g><g><title>execute_command (91 samples, 0.02%)</title><rect x="26.2502%" y="549" width="0.0171%" height="15" fill="rgb(223,223,32)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="559.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="533" width="0.0171%" height="15" fill="rgb(227,189,39)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="543.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="517" width="0.0171%" height="15" fill="rgb(248,10,22)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="527.50"></text></g><g><title>execute_command (91 samples, 0.02%)</title><rect x="26.2502%" y="501" width="0.0171%" height="15" fill="rgb(248,46,39)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="511.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="485" width="0.0171%" height="15" fill="rgb(248,113,48)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="495.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="469" width="0.0171%" height="15" fill="rgb(245,16,25)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="479.50"></text></g><g><title>execute_command (91 samples, 0.02%)</title><rect x="26.2502%" y="453" width="0.0171%" height="15" fill="rgb(249,152,16)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="463.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="437" width="0.0171%" height="15" fill="rgb(250,16,1)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="447.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="421" width="0.0171%" height="15" fill="rgb(249,138,3)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="431.50"></text></g><g><title>execute_command (91 samples, 0.02%)</title><rect x="26.2502%" y="405" width="0.0171%" height="15" fill="rgb(227,71,41)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="415.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="389" width="0.0171%" height="15" fill="rgb(209,184,23)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="399.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="373" width="0.0171%" height="15" fill="rgb(223,215,31)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="383.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="357" width="0.0171%" height="15" fill="rgb(210,146,28)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="367.50"></text></g><g><title>expand_words (91 samples, 0.02%)</title><rect x="26.2502%" y="341" width="0.0171%" height="15" fill="rgb(209,183,41)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="351.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="325" width="0.0171%" height="15" fill="rgb(209,224,45)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="335.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="309" width="0.0171%" height="15" fill="rgb(224,209,51)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="319.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="293" width="0.0171%" height="15" fill="rgb(223,17,39)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="303.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="277" width="0.0171%" height="15" fill="rgb(234,204,37)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="287.50"></text></g><g><title>command_substitute (91 samples, 0.02%)</title><rect x="26.2502%" y="261" width="0.0171%" height="15" fill="rgb(236,120,5)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="271.50"></text></g><g><title>parse_and_execute (91 samples, 0.02%)</title><rect x="26.2502%" y="245" width="0.0171%" height="15" fill="rgb(248,97,27)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="255.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="229" width="0.0171%" height="15" fill="rgb(240,66,17)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="239.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="213" width="0.0171%" height="15" fill="rgb(210,79,3)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="223.50"></text></g><g><title>[bash] (91 samples, 0.02%)</title><rect x="26.2502%" y="197" width="0.0171%" height="15" fill="rgb(214,176,27)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="207.50"></text></g><g><title>execute_command_internal (91 samples, 0.02%)</title><rect x="26.2502%" y="181" width="0.0171%" height="15" fill="rgb(235,185,3)" fg:x="139310" fg:w="91"/><text x="26.5002%" y="191.50"></text></g><g><title>make_child (85 samples, 0.02%)</title><rect x="26.2514%" y="165" width="0.0160%" height="15" fill="rgb(227,24,12)" fg:x="139316" fg:w="85"/><text x="26.5014%" y="175.50"></text></g><g><title>__libc_fork (85 samples, 0.02%)</title><rect x="26.2514%" y="149" width="0.0160%" height="15" fill="rgb(252,169,48)" fg:x="139316" fg:w="85"/><text x="26.5014%" y="159.50"></text></g><g><title>[unknown] (273 samples, 0.05%)</title><rect x="26.2222%" y="821" width="0.0514%" height="15" fill="rgb(212,65,1)" fg:x="139161" fg:w="273"/><text x="26.4722%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.01%)</title><rect x="26.2900%" y="581" width="0.0111%" height="15" fill="rgb(242,39,24)" fg:x="139521" fg:w="59"/><text x="26.5400%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.01%)</title><rect x="26.2900%" y="565" width="0.0111%" height="15" fill="rgb(249,32,23)" fg:x="139521" fg:w="59"/><text x="26.5400%" y="575.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="26.2900%" y="549" width="0.0111%" height="15" fill="rgb(251,195,23)" fg:x="139521" fg:w="59"/><text x="26.5400%" y="559.50"></text></g><g><title>arch_fork (73 samples, 0.01%)</title><rect x="26.2875%" y="645" width="0.0138%" height="15" fill="rgb(236,174,8)" fg:x="139508" fg:w="73"/><text x="26.5375%" y="655.50"></text></g><g><title>ret_from_fork (67 samples, 0.01%)</title><rect x="26.2887%" y="629" width="0.0126%" height="15" fill="rgb(220,197,8)" fg:x="139514" fg:w="67"/><text x="26.5387%" y="639.50"></text></g><g><title>schedule_tail (67 samples, 0.01%)</title><rect x="26.2887%" y="613" width="0.0126%" height="15" fill="rgb(240,108,37)" fg:x="139514" fg:w="67"/><text x="26.5387%" y="623.50"></text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="26.2898%" y="597" width="0.0115%" height="15" fill="rgb(232,176,24)" fg:x="139520" fg:w="61"/><text x="26.5398%" y="607.50"></text></g><g><title>__libc_fork (74 samples, 0.01%)</title><rect x="26.2875%" y="661" width="0.0139%" height="15" fill="rgb(243,35,29)" fg:x="139508" fg:w="74"/><text x="26.5375%" y="671.50"></text></g><g><title>make_child (79 samples, 0.01%)</title><rect x="26.2874%" y="677" width="0.0149%" height="15" fill="rgb(210,37,18)" fg:x="139507" fg:w="79"/><text x="26.5374%" y="687.50"></text></g><g><title>execute_command (145 samples, 0.03%)</title><rect x="26.2802%" y="709" width="0.0273%" height="15" fill="rgb(224,184,40)" fg:x="139469" fg:w="145"/><text x="26.5302%" y="719.50"></text></g><g><title>execute_command_internal (145 samples, 0.03%)</title><rect x="26.2802%" y="693" width="0.0273%" height="15" fill="rgb(236,39,29)" fg:x="139469" fg:w="145"/><text x="26.5302%" y="703.50"></text></g><g><title>[bash] (168 samples, 0.03%)</title><rect x="26.2794%" y="725" width="0.0317%" height="15" fill="rgb(232,48,39)" fg:x="139465" fg:w="168"/><text x="26.5294%" y="735.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="26.3117%" y="693" width="0.0107%" height="15" fill="rgb(236,34,42)" fg:x="139636" fg:w="57"/><text x="26.5617%" y="703.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="26.3119%" y="677" width="0.0106%" height="15" fill="rgb(243,106,37)" fg:x="139637" fg:w="56"/><text x="26.5619%" y="687.50"></text></g><g><title>bind_function (59 samples, 0.01%)</title><rect x="26.3115%" y="725" width="0.0111%" height="15" fill="rgb(218,96,6)" fg:x="139635" fg:w="59"/><text x="26.5615%" y="735.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="26.3117%" y="709" width="0.0109%" height="15" fill="rgb(235,130,12)" fg:x="139636" fg:w="58"/><text x="26.5617%" y="719.50"></text></g><g><title>copy_command (55 samples, 0.01%)</title><rect x="26.3232%" y="661" width="0.0104%" height="15" fill="rgb(231,95,0)" fg:x="139697" fg:w="55"/><text x="26.5732%" y="671.50"></text></g><g><title>copy_command (54 samples, 0.01%)</title><rect x="26.3233%" y="645" width="0.0102%" height="15" fill="rgb(228,12,23)" fg:x="139698" fg:w="54"/><text x="26.5733%" y="655.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="26.3230%" y="709" width="0.0109%" height="15" fill="rgb(216,12,1)" fg:x="139696" fg:w="58"/><text x="26.5730%" y="719.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="26.3230%" y="693" width="0.0109%" height="15" fill="rgb(219,59,3)" fg:x="139696" fg:w="58"/><text x="26.5730%" y="703.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="26.3232%" y="677" width="0.0107%" height="15" fill="rgb(215,208,46)" fg:x="139697" fg:w="57"/><text x="26.5732%" y="687.50"></text></g><g><title>copy_function_def_contents (60 samples, 0.01%)</title><rect x="26.3228%" y="725" width="0.0113%" height="15" fill="rgb(254,224,29)" fg:x="139695" fg:w="60"/><text x="26.5728%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.01%)</title><rect x="26.3416%" y="549" width="0.0124%" height="15" fill="rgb(232,14,29)" fg:x="139795" fg:w="66"/><text x="26.5916%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.01%)</title><rect x="26.3418%" y="533" width="0.0122%" height="15" fill="rgb(208,45,52)" fg:x="139796" fg:w="65"/><text x="26.5918%" y="543.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="26.3418%" y="517" width="0.0122%" height="15" fill="rgb(234,191,28)" fg:x="139796" fg:w="65"/><text x="26.5918%" y="527.50"></text></g><g><title>arch_fork (81 samples, 0.02%)</title><rect x="26.3390%" y="613" width="0.0153%" height="15" fill="rgb(244,67,43)" fg:x="139781" fg:w="81"/><text x="26.5890%" y="623.50"></text></g><g><title>ret_from_fork (72 samples, 0.01%)</title><rect x="26.3407%" y="597" width="0.0136%" height="15" fill="rgb(236,189,24)" fg:x="139790" fg:w="72"/><text x="26.5907%" y="607.50"></text></g><g><title>schedule_tail (72 samples, 0.01%)</title><rect x="26.3407%" y="581" width="0.0136%" height="15" fill="rgb(239,214,33)" fg:x="139790" fg:w="72"/><text x="26.5907%" y="591.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="26.3416%" y="565" width="0.0126%" height="15" fill="rgb(226,176,41)" fg:x="139795" fg:w="67"/><text x="26.5916%" y="575.50"></text></g><g><title>__libc_fork (84 samples, 0.02%)</title><rect x="26.3388%" y="629" width="0.0158%" height="15" fill="rgb(248,47,8)" fg:x="139780" fg:w="84"/><text x="26.5888%" y="639.50"></text></g><g><title>make_child (85 samples, 0.02%)</title><rect x="26.3388%" y="645" width="0.0160%" height="15" fill="rgb(218,81,44)" fg:x="139780" fg:w="85"/><text x="26.5888%" y="655.50"></text></g><g><title>execute_command_internal (75 samples, 0.01%)</title><rect x="26.3550%" y="629" width="0.0141%" height="15" fill="rgb(213,98,6)" fg:x="139866" fg:w="75"/><text x="26.6050%" y="639.50"></text></g><g><title>parse_and_execute (78 samples, 0.01%)</title><rect x="26.3548%" y="645" width="0.0147%" height="15" fill="rgb(222,85,22)" fg:x="139865" fg:w="78"/><text x="26.6048%" y="655.50"></text></g><g><title>command_substitute (217 samples, 0.04%)</title><rect x="26.3375%" y="661" width="0.0409%" height="15" fill="rgb(239,46,39)" fg:x="139773" fg:w="217"/><text x="26.5875%" y="671.50"></text></g><g><title>expand_word_leave_quoted (219 samples, 0.04%)</title><rect x="26.3373%" y="693" width="0.0413%" height="15" fill="rgb(237,12,29)" fg:x="139772" fg:w="219"/><text x="26.5873%" y="703.50"></text></g><g><title>[bash] (219 samples, 0.04%)</title><rect x="26.3373%" y="677" width="0.0413%" height="15" fill="rgb(214,77,8)" fg:x="139772" fg:w="219"/><text x="26.5873%" y="687.50"></text></g><g><title>execute_command (246 samples, 0.05%)</title><rect x="26.3341%" y="725" width="0.0464%" height="15" fill="rgb(217,168,37)" fg:x="139755" fg:w="246"/><text x="26.5841%" y="735.50"></text></g><g><title>execute_command_internal (246 samples, 0.05%)</title><rect x="26.3341%" y="709" width="0.0464%" height="15" fill="rgb(221,217,23)" fg:x="139755" fg:w="246"/><text x="26.5841%" y="719.50"></text></g><g><title>arch_fork (67 samples, 0.01%)</title><rect x="26.3844%" y="597" width="0.0126%" height="15" fill="rgb(243,229,36)" fg:x="140022" fg:w="67"/><text x="26.6344%" y="607.50"></text></g><g><title>ret_from_fork (61 samples, 0.01%)</title><rect x="26.3855%" y="581" width="0.0115%" height="15" fill="rgb(251,163,40)" fg:x="140028" fg:w="61"/><text x="26.6355%" y="591.50"></text></g><g><title>schedule_tail (61 samples, 0.01%)</title><rect x="26.3855%" y="565" width="0.0115%" height="15" fill="rgb(237,222,12)" fg:x="140028" fg:w="61"/><text x="26.6355%" y="575.50"></text></g><g><title>finish_task_switch (56 samples, 0.01%)</title><rect x="26.3865%" y="549" width="0.0106%" height="15" fill="rgb(248,132,6)" fg:x="140033" fg:w="56"/><text x="26.6365%" y="559.50"></text></g><g><title>__libc_fork (68 samples, 0.01%)</title><rect x="26.3844%" y="613" width="0.0128%" height="15" fill="rgb(227,167,50)" fg:x="140022" fg:w="68"/><text x="26.6344%" y="623.50"></text></g><g><title>make_child (71 samples, 0.01%)</title><rect x="26.3844%" y="629" width="0.0134%" height="15" fill="rgb(242,84,37)" fg:x="140022" fg:w="71"/><text x="26.6344%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (87 samples, 0.02%)</title><rect x="26.4144%" y="453" width="0.0164%" height="15" fill="rgb(212,4,50)" fg:x="140181" fg:w="87"/><text x="26.6644%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (86 samples, 0.02%)</title><rect x="26.4145%" y="437" width="0.0162%" height="15" fill="rgb(230,228,32)" fg:x="140182" fg:w="86"/><text x="26.6645%" y="447.50"></text></g><g><title>native_write_msr (86 samples, 0.02%)</title><rect x="26.4145%" y="421" width="0.0162%" height="15" fill="rgb(248,217,23)" fg:x="140182" fg:w="86"/><text x="26.6645%" y="431.50"></text></g><g><title>arch_fork (108 samples, 0.02%)</title><rect x="26.4106%" y="517" width="0.0204%" height="15" fill="rgb(238,197,32)" fg:x="140161" fg:w="108"/><text x="26.6606%" y="527.50"></text></g><g><title>ret_from_fork (95 samples, 0.02%)</title><rect x="26.4130%" y="501" width="0.0179%" height="15" fill="rgb(236,106,1)" fg:x="140174" fg:w="95"/><text x="26.6630%" y="511.50"></text></g><g><title>schedule_tail (95 samples, 0.02%)</title><rect x="26.4130%" y="485" width="0.0179%" height="15" fill="rgb(219,228,13)" fg:x="140174" fg:w="95"/><text x="26.6630%" y="495.50"></text></g><g><title>finish_task_switch (90 samples, 0.02%)</title><rect x="26.4140%" y="469" width="0.0170%" height="15" fill="rgb(238,30,35)" fg:x="140179" fg:w="90"/><text x="26.6640%" y="479.50"></text></g><g><title>__libc_fork (116 samples, 0.02%)</title><rect x="26.4098%" y="533" width="0.0219%" height="15" fill="rgb(236,70,23)" fg:x="140157" fg:w="116"/><text x="26.6598%" y="543.50"></text></g><g><title>make_child (119 samples, 0.02%)</title><rect x="26.4098%" y="549" width="0.0224%" height="15" fill="rgb(249,104,48)" fg:x="140157" fg:w="119"/><text x="26.6598%" y="559.50"></text></g><g><title>execute_command_internal (206 samples, 0.04%)</title><rect x="26.3980%" y="613" width="0.0388%" height="15" fill="rgb(254,117,50)" fg:x="140094" fg:w="206"/><text x="26.6480%" y="623.50"></text></g><g><title>[bash] (206 samples, 0.04%)</title><rect x="26.3980%" y="597" width="0.0388%" height="15" fill="rgb(223,152,4)" fg:x="140094" fg:w="206"/><text x="26.6480%" y="607.50"></text></g><g><title>[bash] (206 samples, 0.04%)</title><rect x="26.3980%" y="581" width="0.0388%" height="15" fill="rgb(245,6,2)" fg:x="140094" fg:w="206"/><text x="26.6480%" y="591.50"></text></g><g><title>execute_command_internal (201 samples, 0.04%)</title><rect x="26.3989%" y="565" width="0.0379%" height="15" fill="rgb(249,150,24)" fg:x="140099" fg:w="201"/><text x="26.6489%" y="575.50"></text></g><g><title>parse_and_execute (209 samples, 0.04%)</title><rect x="26.3978%" y="629" width="0.0394%" height="15" fill="rgb(228,185,42)" fg:x="140093" fg:w="209"/><text x="26.6478%" y="639.50"></text></g><g><title>command_substitute (301 samples, 0.06%)</title><rect x="26.3819%" y="645" width="0.0567%" height="15" fill="rgb(226,39,33)" fg:x="140009" fg:w="301"/><text x="26.6319%" y="655.50"></text></g><g><title>[bash] (308 samples, 0.06%)</title><rect x="26.3808%" y="661" width="0.0580%" height="15" fill="rgb(221,166,19)" fg:x="140003" fg:w="308"/><text x="26.6308%" y="671.50"></text></g><g><title>[bash] (310 samples, 0.06%)</title><rect x="26.3808%" y="677" width="0.0584%" height="15" fill="rgb(209,109,2)" fg:x="140003" fg:w="310"/><text x="26.6308%" y="687.50"></text></g><g><title>[bash] (315 samples, 0.06%)</title><rect x="26.3804%" y="693" width="0.0594%" height="15" fill="rgb(252,216,26)" fg:x="140001" fg:w="315"/><text x="26.6304%" y="703.50"></text></g><g><title>expand_words (319 samples, 0.06%)</title><rect x="26.3804%" y="725" width="0.0601%" height="15" fill="rgb(227,173,36)" fg:x="140001" fg:w="319"/><text x="26.6304%" y="735.50"></text></g><g><title>[bash] (319 samples, 0.06%)</title><rect x="26.3804%" y="709" width="0.0601%" height="15" fill="rgb(209,90,7)" fg:x="140001" fg:w="319"/><text x="26.6304%" y="719.50"></text></g><g><title>execute_command (864 samples, 0.16%)</title><rect x="26.2791%" y="757" width="0.1628%" height="15" fill="rgb(250,194,11)" fg:x="139463" fg:w="864"/><text x="26.5291%" y="767.50"></text></g><g><title>execute_command_internal (864 samples, 0.16%)</title><rect x="26.2791%" y="741" width="0.1628%" height="15" fill="rgb(220,72,50)" fg:x="139463" fg:w="864"/><text x="26.5291%" y="751.50"></text></g><g><title>[bash] (204 samples, 0.04%)</title><rect x="26.4677%" y="693" width="0.0384%" height="15" fill="rgb(222,106,48)" fg:x="140464" fg:w="204"/><text x="26.7177%" y="703.50"></text></g><g><title>[bash] (347 samples, 0.07%)</title><rect x="26.4522%" y="709" width="0.0654%" height="15" fill="rgb(216,220,45)" fg:x="140382" fg:w="347"/><text x="26.7022%" y="719.50"></text></g><g><title>reader_loop (1,316 samples, 0.25%)</title><rect x="26.2753%" y="773" width="0.2480%" height="15" fill="rgb(234,112,18)" fg:x="139443" fg:w="1316"/><text x="26.5253%" y="783.50"></text></g><g><title>read_command (432 samples, 0.08%)</title><rect x="26.4419%" y="757" width="0.0814%" height="15" fill="rgb(206,179,9)" fg:x="140327" fg:w="432"/><text x="26.6919%" y="767.50"></text></g><g><title>parse_command (431 samples, 0.08%)</title><rect x="26.4421%" y="741" width="0.0812%" height="15" fill="rgb(215,115,40)" fg:x="140328" fg:w="431"/><text x="26.6921%" y="751.50"></text></g><g><title>yyparse (431 samples, 0.08%)</title><rect x="26.4421%" y="725" width="0.0812%" height="15" fill="rgb(222,69,34)" fg:x="140328" fg:w="431"/><text x="26.6921%" y="735.50"></text></g><g><title>__libc_start_main (1,333 samples, 0.25%)</title><rect x="26.2744%" y="805" width="0.2512%" height="15" fill="rgb(209,161,10)" fg:x="139438" fg:w="1333"/><text x="26.5244%" y="815.50"></text></g><g><title>main (1,333 samples, 0.25%)</title><rect x="26.2744%" y="789" width="0.2512%" height="15" fill="rgb(217,6,38)" fg:x="139438" fg:w="1333"/><text x="26.5244%" y="799.50"></text></g><g><title>_start (1,360 samples, 0.26%)</title><rect x="26.2744%" y="821" width="0.2563%" height="15" fill="rgb(229,229,48)" fg:x="139438" fg:w="1360"/><text x="26.5244%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.01%)</title><rect x="26.5372%" y="821" width="0.0130%" height="15" fill="rgb(225,21,28)" fg:x="140833" fg:w="69"/><text x="26.7872%" y="831.50"></text></g><g><title>do_syscall_64 (69 samples, 0.01%)</title><rect x="26.5372%" y="805" width="0.0130%" height="15" fill="rgb(206,33,13)" fg:x="140833" fg:w="69"/><text x="26.7872%" y="815.50"></text></g><g><title>__x64_sys_exit_group (55 samples, 0.01%)</title><rect x="26.5399%" y="789" width="0.0104%" height="15" fill="rgb(242,178,17)" fg:x="140847" fg:w="55"/><text x="26.7899%" y="799.50"></text></g><g><title>do_group_exit (55 samples, 0.01%)</title><rect x="26.5399%" y="773" width="0.0104%" height="15" fill="rgb(220,162,5)" fg:x="140847" fg:w="55"/><text x="26.7899%" y="783.50"></text></g><g><title>do_exit (55 samples, 0.01%)</title><rect x="26.5399%" y="757" width="0.0104%" height="15" fill="rgb(210,33,43)" fg:x="140847" fg:w="55"/><text x="26.7899%" y="767.50"></text></g><g><title>libtool (1,806 samples, 0.34%)</title><rect x="26.2107%" y="837" width="0.3403%" height="15" fill="rgb(216,116,54)" fg:x="139100" fg:w="1806"/><text x="26.4607%" y="847.50"></text></g><g><title>copy_process (56 samples, 0.01%)</title><rect x="26.5561%" y="709" width="0.0106%" height="15" fill="rgb(249,92,24)" fg:x="140933" fg:w="56"/><text x="26.8061%" y="719.50"></text></g><g><title>__libc_start_main (59 samples, 0.01%)</title><rect x="26.5559%" y="805" width="0.0111%" height="15" fill="rgb(231,189,14)" fg:x="140932" fg:w="59"/><text x="26.8059%" y="815.50"></text></g><g><title>__GI___clone (59 samples, 0.01%)</title><rect x="26.5559%" y="789" width="0.0111%" height="15" fill="rgb(230,8,41)" fg:x="140932" fg:w="59"/><text x="26.8059%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="26.5561%" y="773" width="0.0109%" height="15" fill="rgb(249,7,27)" fg:x="140933" fg:w="58"/><text x="26.8061%" y="783.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="26.5561%" y="757" width="0.0109%" height="15" fill="rgb(232,86,5)" fg:x="140933" fg:w="58"/><text x="26.8061%" y="767.50"></text></g><g><title>__do_sys_clone (58 samples, 0.01%)</title><rect x="26.5561%" y="741" width="0.0109%" height="15" fill="rgb(224,175,18)" fg:x="140933" fg:w="58"/><text x="26.8061%" y="751.50"></text></g><g><title>kernel_clone (58 samples, 0.01%)</title><rect x="26.5561%" y="725" width="0.0109%" height="15" fill="rgb(220,129,12)" fg:x="140933" fg:w="58"/><text x="26.8061%" y="735.50"></text></g><g><title>[unknown] (70 samples, 0.01%)</title><rect x="26.5549%" y="821" width="0.0132%" height="15" fill="rgb(210,19,36)" fg:x="140927" fg:w="70"/><text x="26.8049%" y="831.50"></text></g><g><title>CreateTarget (61 samples, 0.01%)</title><rect x="26.5696%" y="789" width="0.0115%" height="15" fill="rgb(219,96,14)" fg:x="141005" fg:w="61"/><text x="26.8196%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (156 samples, 0.03%)</title><rect x="26.5981%" y="661" width="0.0294%" height="15" fill="rgb(249,106,1)" fg:x="141156" fg:w="156"/><text x="26.8481%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (153 samples, 0.03%)</title><rect x="26.5986%" y="645" width="0.0288%" height="15" fill="rgb(249,155,20)" fg:x="141159" fg:w="153"/><text x="26.8486%" y="655.50"></text></g><g><title>native_write_msr (152 samples, 0.03%)</title><rect x="26.5988%" y="629" width="0.0286%" height="15" fill="rgb(244,168,9)" fg:x="141160" fg:w="152"/><text x="26.8488%" y="639.50"></text></g><g><title>finish_task_switch (158 samples, 0.03%)</title><rect x="26.5981%" y="677" width="0.0298%" height="15" fill="rgb(216,23,50)" fg:x="141156" fg:w="158"/><text x="26.8481%" y="687.50"></text></g><g><title>schedule (159 samples, 0.03%)</title><rect x="26.5981%" y="709" width="0.0300%" height="15" fill="rgb(224,219,20)" fg:x="141156" fg:w="159"/><text x="26.8481%" y="719.50"></text></g><g><title>__schedule (159 samples, 0.03%)</title><rect x="26.5981%" y="693" width="0.0300%" height="15" fill="rgb(222,156,15)" fg:x="141156" fg:w="159"/><text x="26.8481%" y="703.50"></text></g><g><title>do_syscall_64 (186 samples, 0.04%)</title><rect x="26.5977%" y="757" width="0.0350%" height="15" fill="rgb(231,97,17)" fg:x="141154" fg:w="186"/><text x="26.8477%" y="767.50"></text></g><g><title>kernel_wait4 (186 samples, 0.04%)</title><rect x="26.5977%" y="741" width="0.0350%" height="15" fill="rgb(218,70,48)" fg:x="141154" fg:w="186"/><text x="26.8477%" y="751.50"></text></g><g><title>do_wait (186 samples, 0.04%)</title><rect x="26.5977%" y="725" width="0.0350%" height="15" fill="rgb(212,196,52)" fg:x="141154" fg:w="186"/><text x="26.8477%" y="735.50"></text></g><g><title>__GI___wait4 (188 samples, 0.04%)</title><rect x="26.5977%" y="789" width="0.0354%" height="15" fill="rgb(243,203,18)" fg:x="141154" fg:w="188"/><text x="26.8477%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (188 samples, 0.04%)</title><rect x="26.5977%" y="773" width="0.0354%" height="15" fill="rgb(252,125,41)" fg:x="141154" fg:w="188"/><text x="26.8477%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (440 samples, 0.08%)</title><rect x="26.6652%" y="709" width="0.0829%" height="15" fill="rgb(223,180,33)" fg:x="141512" fg:w="440"/><text x="26.9152%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (435 samples, 0.08%)</title><rect x="26.6661%" y="693" width="0.0820%" height="15" fill="rgb(254,159,46)" fg:x="141517" fg:w="435"/><text x="26.9161%" y="703.50"></text></g><g><title>native_write_msr (435 samples, 0.08%)</title><rect x="26.6661%" y="677" width="0.0820%" height="15" fill="rgb(254,38,10)" fg:x="141517" fg:w="435"/><text x="26.9161%" y="687.50"></text></g><g><title>schedule_tail (458 samples, 0.09%)</title><rect x="26.6625%" y="741" width="0.0863%" height="15" fill="rgb(208,217,32)" fg:x="141498" fg:w="458"/><text x="26.9125%" y="751.50"></text></g><g><title>finish_task_switch (445 samples, 0.08%)</title><rect x="26.6650%" y="725" width="0.0839%" height="15" fill="rgb(221,120,13)" fg:x="141511" fg:w="445"/><text x="26.9150%" y="735.50"></text></g><g><title>ret_from_fork (459 samples, 0.09%)</title><rect x="26.6625%" y="757" width="0.0865%" height="15" fill="rgb(246,54,52)" fg:x="141498" fg:w="459"/><text x="26.9125%" y="767.50"></text></g><g><title>arch_fork (516 samples, 0.10%)</title><rect x="26.6520%" y="773" width="0.0972%" height="15" fill="rgb(242,34,25)" fg:x="141442" fg:w="516"/><text x="26.9020%" y="783.50"></text></g><g><title>__libc_fork (558 samples, 0.11%)</title><rect x="26.6486%" y="789" width="0.1051%" height="15" fill="rgb(247,209,9)" fg:x="141424" fg:w="558"/><text x="26.8986%" y="799.50"></text></g><g><title>chroot_fs_refs (68 samples, 0.01%)</title><rect x="26.7822%" y="725" width="0.0128%" height="15" fill="rgb(228,71,26)" fg:x="142133" fg:w="68"/><text x="27.0322%" y="735.50"></text></g><g><title>syscall (72 samples, 0.01%)</title><rect x="26.7822%" y="789" width="0.0136%" height="15" fill="rgb(222,145,49)" fg:x="142133" fg:w="72"/><text x="27.0322%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="26.7822%" y="773" width="0.0136%" height="15" fill="rgb(218,121,17)" fg:x="142133" fg:w="72"/><text x="27.0322%" y="783.50"></text></g><g><title>do_syscall_64 (72 samples, 0.01%)</title><rect x="26.7822%" y="757" width="0.0136%" height="15" fill="rgb(244,50,7)" fg:x="142133" fg:w="72"/><text x="27.0322%" y="767.50"></text></g><g><title>__do_sys_pivot_root (72 samples, 0.01%)</title><rect x="26.7822%" y="741" width="0.0136%" height="15" fill="rgb(246,229,37)" fg:x="142133" fg:w="72"/><text x="27.0322%" y="751.50"></text></g><g><title>Pid1Main (1,204 samples, 0.23%)</title><rect x="26.5691%" y="805" width="0.2269%" height="15" fill="rgb(225,18,5)" fg:x="141002" fg:w="1204"/><text x="26.8191%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (447 samples, 0.08%)</title><rect x="26.8070%" y="757" width="0.0842%" height="15" fill="rgb(213,204,8)" fg:x="142265" fg:w="447"/><text x="27.0570%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (445 samples, 0.08%)</title><rect x="26.8074%" y="741" width="0.0839%" height="15" fill="rgb(238,103,6)" fg:x="142267" fg:w="445"/><text x="27.0574%" y="751.50"></text></g><g><title>native_write_msr (445 samples, 0.08%)</title><rect x="26.8074%" y="725" width="0.0839%" height="15" fill="rgb(222,25,35)" fg:x="142267" fg:w="445"/><text x="27.0574%" y="735.50"></text></g><g><title>schedule_tail (457 samples, 0.09%)</title><rect x="26.8063%" y="789" width="0.0861%" height="15" fill="rgb(213,203,35)" fg:x="142261" fg:w="457"/><text x="27.0563%" y="799.50"></text></g><g><title>finish_task_switch (457 samples, 0.09%)</title><rect x="26.8063%" y="773" width="0.0861%" height="15" fill="rgb(221,79,53)" fg:x="142261" fg:w="457"/><text x="27.0563%" y="783.50"></text></g><g><title>__GI___clone (1,725 samples, 0.33%)</title><rect x="26.5681%" y="821" width="0.3250%" height="15" fill="rgb(243,200,35)" fg:x="140997" fg:w="1725"/><text x="26.8181%" y="831.50"></text></g><g><title>ret_from_fork (479 samples, 0.09%)</title><rect x="26.8029%" y="805" width="0.0903%" height="15" fill="rgb(248,60,25)" fg:x="142243" fg:w="479"/><text x="27.0529%" y="815.50"></text></g><g><title>exc_page_fault (65 samples, 0.01%)</title><rect x="26.9148%" y="741" width="0.0122%" height="15" fill="rgb(227,53,46)" fg:x="142837" fg:w="65"/><text x="27.1648%" y="751.50"></text></g><g><title>do_user_addr_fault (63 samples, 0.01%)</title><rect x="26.9152%" y="725" width="0.0119%" height="15" fill="rgb(216,120,32)" fg:x="142839" fg:w="63"/><text x="27.1652%" y="735.50"></text></g><g><title>handle_mm_fault (59 samples, 0.01%)</title><rect x="26.9160%" y="709" width="0.0111%" height="15" fill="rgb(220,134,1)" fg:x="142843" fg:w="59"/><text x="27.1660%" y="719.50"></text></g><g><title>asm_exc_page_fault (69 samples, 0.01%)</title><rect x="26.9143%" y="757" width="0.0130%" height="15" fill="rgb(237,168,5)" fg:x="142834" fg:w="69"/><text x="27.1643%" y="767.50"></text></g><g><title>[libc-2.31.so] (89 samples, 0.02%)</title><rect x="26.9120%" y="773" width="0.0168%" height="15" fill="rgb(231,100,33)" fg:x="142822" fg:w="89"/><text x="27.1620%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (112 samples, 0.02%)</title><rect x="26.9301%" y="629" width="0.0211%" height="15" fill="rgb(236,177,47)" fg:x="142918" fg:w="112"/><text x="27.1801%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.02%)</title><rect x="26.9301%" y="613" width="0.0211%" height="15" fill="rgb(235,7,49)" fg:x="142918" fg:w="112"/><text x="27.1801%" y="623.50"></text></g><g><title>native_write_msr (108 samples, 0.02%)</title><rect x="26.9308%" y="597" width="0.0204%" height="15" fill="rgb(232,119,22)" fg:x="142922" fg:w="108"/><text x="27.1808%" y="607.50"></text></g><g><title>finish_task_switch (114 samples, 0.02%)</title><rect x="26.9301%" y="645" width="0.0215%" height="15" fill="rgb(254,73,53)" fg:x="142918" fg:w="114"/><text x="27.1801%" y="655.50"></text></g><g><title>schedule (118 samples, 0.02%)</title><rect x="26.9295%" y="677" width="0.0222%" height="15" fill="rgb(251,35,20)" fg:x="142915" fg:w="118"/><text x="27.1795%" y="687.50"></text></g><g><title>__schedule (118 samples, 0.02%)</title><rect x="26.9295%" y="661" width="0.0222%" height="15" fill="rgb(241,119,20)" fg:x="142915" fg:w="118"/><text x="27.1795%" y="671.50"></text></g><g><title>do_syscall_64 (138 samples, 0.03%)</title><rect x="26.9292%" y="741" width="0.0260%" height="15" fill="rgb(207,102,14)" fg:x="142913" fg:w="138"/><text x="27.1792%" y="751.50"></text></g><g><title>__do_sys_wait4 (138 samples, 0.03%)</title><rect x="26.9292%" y="725" width="0.0260%" height="15" fill="rgb(248,201,50)" fg:x="142913" fg:w="138"/><text x="27.1792%" y="735.50"></text></g><g><title>kernel_wait4 (138 samples, 0.03%)</title><rect x="26.9292%" y="709" width="0.0260%" height="15" fill="rgb(222,185,44)" fg:x="142913" fg:w="138"/><text x="27.1792%" y="719.50"></text></g><g><title>do_wait (138 samples, 0.03%)</title><rect x="26.9292%" y="693" width="0.0260%" height="15" fill="rgb(218,107,18)" fg:x="142913" fg:w="138"/><text x="27.1792%" y="703.50"></text></g><g><title>__GI___wait4 (140 samples, 0.03%)</title><rect x="26.9290%" y="773" width="0.0264%" height="15" fill="rgb(237,177,39)" fg:x="142912" fg:w="140"/><text x="27.1790%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (139 samples, 0.03%)</title><rect x="26.9292%" y="757" width="0.0262%" height="15" fill="rgb(246,69,6)" fg:x="142913" fg:w="139"/><text x="27.1792%" y="767.50"></text></g><g><title>__libc_start_main (350 samples, 0.07%)</title><rect x="26.9013%" y="805" width="0.0660%" height="15" fill="rgb(234,208,37)" fg:x="142765" fg:w="350"/><text x="27.1513%" y="815.50"></text></g><g><title>main (307 samples, 0.06%)</title><rect x="26.9094%" y="789" width="0.0578%" height="15" fill="rgb(225,4,6)" fg:x="142808" fg:w="307"/><text x="27.1594%" y="799.50"></text></g><g><title>_dl_catch_exception (68 samples, 0.01%)</title><rect x="26.9706%" y="725" width="0.0128%" height="15" fill="rgb(233,45,0)" fg:x="143133" fg:w="68"/><text x="27.2206%" y="735.50"></text></g><g><title>openaux (68 samples, 0.01%)</title><rect x="26.9706%" y="709" width="0.0128%" height="15" fill="rgb(226,136,5)" fg:x="143133" fg:w="68"/><text x="27.2206%" y="719.50"></text></g><g><title>_dl_map_object (68 samples, 0.01%)</title><rect x="26.9706%" y="693" width="0.0128%" height="15" fill="rgb(211,91,47)" fg:x="143133" fg:w="68"/><text x="27.2206%" y="703.50"></text></g><g><title>_dl_map_object_deps (78 samples, 0.01%)</title><rect x="26.9697%" y="741" width="0.0147%" height="15" fill="rgb(242,88,51)" fg:x="143128" fg:w="78"/><text x="27.2197%" y="751.50"></text></g><g><title>_dl_lookup_symbol_x (142 samples, 0.03%)</title><rect x="26.9992%" y="693" width="0.0268%" height="15" fill="rgb(230,91,28)" fg:x="143285" fg:w="142"/><text x="27.2492%" y="703.50"></text></g><g><title>do_lookup_x (98 samples, 0.02%)</title><rect x="27.0075%" y="677" width="0.0185%" height="15" fill="rgb(254,186,29)" fg:x="143329" fg:w="98"/><text x="27.2575%" y="687.50"></text></g><g><title>elf_machine_rela (177 samples, 0.03%)</title><rect x="26.9928%" y="709" width="0.0334%" height="15" fill="rgb(238,6,4)" fg:x="143251" fg:w="177"/><text x="27.2428%" y="719.50"></text></g><g><title>_dl_relocate_object (229 samples, 0.04%)</title><rect x="26.9853%" y="741" width="0.0432%" height="15" fill="rgb(221,151,16)" fg:x="143211" fg:w="229"/><text x="27.2353%" y="751.50"></text></g><g><title>elf_dynamic_do_Rela (212 samples, 0.04%)</title><rect x="26.9885%" y="725" width="0.0399%" height="15" fill="rgb(251,143,52)" fg:x="143228" fg:w="212"/><text x="27.2385%" y="735.50"></text></g><g><title>[ld-2.31.so] (329 samples, 0.06%)</title><rect x="26.9672%" y="757" width="0.0620%" height="15" fill="rgb(206,90,15)" fg:x="143115" fg:w="329"/><text x="27.2172%" y="767.50"></text></g><g><title>_dl_start_final (333 samples, 0.06%)</title><rect x="26.9672%" y="789" width="0.0627%" height="15" fill="rgb(218,35,8)" fg:x="143115" fg:w="333"/><text x="27.2172%" y="799.50"></text></g><g><title>_dl_sysdep_start (333 samples, 0.06%)</title><rect x="26.9672%" y="773" width="0.0627%" height="15" fill="rgb(239,215,6)" fg:x="143115" fg:w="333"/><text x="27.2172%" y="783.50"></text></g><g><title>_start (686 samples, 0.13%)</title><rect x="26.9011%" y="821" width="0.1293%" height="15" fill="rgb(245,116,39)" fg:x="142764" fg:w="686"/><text x="27.1511%" y="831.50"></text></g><g><title>_dl_start (335 samples, 0.06%)</title><rect x="26.9672%" y="805" width="0.0631%" height="15" fill="rgb(242,65,28)" fg:x="143115" fg:w="335"/><text x="27.2172%" y="815.50"></text></g><g><title>asm_exc_page_fault (93 samples, 0.02%)</title><rect x="27.0303%" y="821" width="0.0175%" height="15" fill="rgb(252,132,53)" fg:x="143450" fg:w="93"/><text x="27.2803%" y="831.50"></text></g><g><title>exit_mmap (66 samples, 0.01%)</title><rect x="27.0499%" y="693" width="0.0124%" height="15" fill="rgb(224,159,50)" fg:x="143554" fg:w="66"/><text x="27.2999%" y="703.50"></text></g><g><title>mmput (68 samples, 0.01%)</title><rect x="27.0497%" y="709" width="0.0128%" height="15" fill="rgb(224,93,4)" fg:x="143553" fg:w="68"/><text x="27.2997%" y="719.50"></text></g><g><title>begin_new_exec (72 samples, 0.01%)</title><rect x="27.0496%" y="725" width="0.0136%" height="15" fill="rgb(208,81,34)" fg:x="143552" fg:w="72"/><text x="27.2996%" y="735.50"></text></g><g><title>__x64_sys_execve (136 samples, 0.03%)</title><rect x="27.0486%" y="789" width="0.0256%" height="15" fill="rgb(233,92,54)" fg:x="143547" fg:w="136"/><text x="27.2986%" y="799.50"></text></g><g><title>do_execveat_common (136 samples, 0.03%)</title><rect x="27.0486%" y="773" width="0.0256%" height="15" fill="rgb(237,21,14)" fg:x="143547" fg:w="136"/><text x="27.2986%" y="783.50"></text></g><g><title>bprm_execve (136 samples, 0.03%)</title><rect x="27.0486%" y="757" width="0.0256%" height="15" fill="rgb(249,128,51)" fg:x="143547" fg:w="136"/><text x="27.2986%" y="767.50"></text></g><g><title>load_elf_binary (136 samples, 0.03%)</title><rect x="27.0486%" y="741" width="0.0256%" height="15" fill="rgb(223,129,24)" fg:x="143547" fg:w="136"/><text x="27.2986%" y="751.50"></text></g><g><title>mmput (72 samples, 0.01%)</title><rect x="27.0757%" y="757" width="0.0136%" height="15" fill="rgb(231,168,25)" fg:x="143691" fg:w="72"/><text x="27.3257%" y="767.50"></text></g><g><title>exit_mmap (72 samples, 0.01%)</title><rect x="27.0757%" y="741" width="0.0136%" height="15" fill="rgb(224,39,20)" fg:x="143691" fg:w="72"/><text x="27.3257%" y="751.50"></text></g><g><title>__x64_sys_exit (105 samples, 0.02%)</title><rect x="27.0742%" y="789" width="0.0198%" height="15" fill="rgb(225,152,53)" fg:x="143683" fg:w="105"/><text x="27.3242%" y="799.50"></text></g><g><title>do_exit (105 samples, 0.02%)</title><rect x="27.0742%" y="773" width="0.0198%" height="15" fill="rgb(252,17,24)" fg:x="143683" fg:w="105"/><text x="27.3242%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (282 samples, 0.05%)</title><rect x="27.0482%" y="821" width="0.0531%" height="15" fill="rgb(250,114,30)" fg:x="143545" fg:w="282"/><text x="27.2982%" y="831.50"></text></g><g><title>do_syscall_64 (281 samples, 0.05%)</title><rect x="27.0484%" y="805" width="0.0529%" height="15" fill="rgb(229,5,4)" fg:x="143546" fg:w="281"/><text x="27.2984%" y="815.50"></text></g><g><title>linux-sandbox (2,926 samples, 0.55%)</title><rect x="26.5510%" y="837" width="0.5513%" height="15" fill="rgb(225,176,49)" fg:x="140906" fg:w="2926"/><text x="26.8010%" y="847.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (72 samples, 0.01%)</title><rect x="27.1057%" y="773" width="0.0136%" height="15" fill="rgb(224,221,49)" fg:x="143850" fg:w="72"/><text x="27.3557%" y="783.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (72 samples, 0.01%)</title><rect x="27.1057%" y="757" width="0.0136%" height="15" fill="rgb(253,169,27)" fg:x="143850" fg:w="72"/><text x="27.3557%" y="767.50"></text></g><g><title>__libc_start_main (101 samples, 0.02%)</title><rect x="27.1050%" y="805" width="0.0190%" height="15" fill="rgb(211,206,16)" fg:x="143846" fg:w="101"/><text x="27.3550%" y="815.50"></text></g><g><title>main (97 samples, 0.02%)</title><rect x="27.1057%" y="789" width="0.0183%" height="15" fill="rgb(244,87,35)" fg:x="143850" fg:w="97"/><text x="27.3557%" y="799.50"></text></g><g><title>_start (155 samples, 0.03%)</title><rect x="27.1050%" y="821" width="0.0292%" height="15" fill="rgb(246,28,10)" fg:x="143846" fg:w="155"/><text x="27.3550%" y="831.50"></text></g><g><title>_dl_start (54 samples, 0.01%)</title><rect x="27.1240%" y="805" width="0.0102%" height="15" fill="rgb(229,12,44)" fg:x="143947" fg:w="54"/><text x="27.3740%" y="815.50"></text></g><g><title>process-wrapper (193 samples, 0.04%)</title><rect x="27.1034%" y="837" width="0.0364%" height="15" fill="rgb(210,145,37)" fg:x="143838" fg:w="193"/><text x="27.3534%" y="847.50"></text></g><g><title>do_wait (73 samples, 0.01%)</title><rect x="27.1539%" y="725" width="0.0138%" height="15" fill="rgb(227,112,52)" fg:x="144106" fg:w="73"/><text x="27.4039%" y="735.50"></text></g><g><title>do_syscall_64 (76 samples, 0.01%)</title><rect x="27.1536%" y="757" width="0.0143%" height="15" fill="rgb(238,155,34)" fg:x="144104" fg:w="76"/><text x="27.4036%" y="767.50"></text></g><g><title>kernel_wait4 (76 samples, 0.01%)</title><rect x="27.1536%" y="741" width="0.0143%" height="15" fill="rgb(239,226,36)" fg:x="144104" fg:w="76"/><text x="27.4036%" y="751.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (78 samples, 0.01%)</title><rect x="27.1534%" y="805" width="0.0147%" height="15" fill="rgb(230,16,23)" fg:x="144103" fg:w="78"/><text x="27.4034%" y="815.50"></text></g><g><title>__GI___wait4 (77 samples, 0.01%)</title><rect x="27.1536%" y="789" width="0.0145%" height="15" fill="rgb(236,171,36)" fg:x="144104" fg:w="77"/><text x="27.4036%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.01%)</title><rect x="27.1536%" y="773" width="0.0145%" height="15" fill="rgb(221,22,14)" fg:x="144104" fg:w="77"/><text x="27.4036%" y="783.50"></text></g><g><title>[perf-925888.map] (156 samples, 0.03%)</title><rect x="27.1409%" y="821" width="0.0294%" height="15" fill="rgb(242,43,11)" fg:x="144037" fg:w="156"/><text x="27.3909%" y="831.50"></text></g><g><title>process_reaper (167 samples, 0.03%)</title><rect x="27.1398%" y="837" width="0.0315%" height="15" fill="rgb(232,69,23)" fg:x="144031" fg:w="167"/><text x="27.3898%" y="847.50"></text></g><g><title>__pthread_cond_wait (56 samples, 0.01%)</title><rect x="27.2404%" y="773" width="0.0106%" height="15" fill="rgb(216,180,54)" fg:x="144565" fg:w="56"/><text x="27.4904%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (56 samples, 0.01%)</title><rect x="27.2404%" y="757" width="0.0106%" height="15" fill="rgb(216,5,24)" fg:x="144565" fg:w="56"/><text x="27.4904%" y="767.50"></text></g><g><title>Parker::park (77 samples, 0.01%)</title><rect x="27.2386%" y="789" width="0.0145%" height="15" fill="rgb(225,89,9)" fg:x="144555" fg:w="77"/><text x="27.4886%" y="799.50"></text></g><g><title>Unsafe_Park (83 samples, 0.02%)</title><rect x="27.2380%" y="805" width="0.0156%" height="15" fill="rgb(243,75,33)" fg:x="144552" fg:w="83"/><text x="27.4880%" y="815.50"></text></g><g><title>[perf-925888.map] (425 samples, 0.08%)</title><rect x="27.1737%" y="821" width="0.0801%" height="15" fill="rgb(247,141,45)" fg:x="144211" fg:w="425"/><text x="27.4237%" y="831.50"></text></g><g><title>profile-writer- (455 samples, 0.09%)</title><rect x="27.1713%" y="837" width="0.0857%" height="15" fill="rgb(232,177,36)" fg:x="144198" fg:w="455"/><text x="27.4213%" y="847.50"></text></g><g><title>[python3.9] (66 samples, 0.01%)</title><rect x="27.2708%" y="805" width="0.0124%" height="15" fill="rgb(219,125,36)" fg:x="144726" fg:w="66"/><text x="27.5208%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (74 samples, 0.01%)</title><rect x="27.2936%" y="789" width="0.0139%" height="15" fill="rgb(227,94,9)" fg:x="144847" fg:w="74"/><text x="27.5436%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (55 samples, 0.01%)</title><rect x="27.2972%" y="773" width="0.0104%" height="15" fill="rgb(240,34,52)" fg:x="144866" fg:w="55"/><text x="27.5472%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.01%)</title><rect x="27.2973%" y="757" width="0.0102%" height="15" fill="rgb(216,45,12)" fg:x="144867" fg:w="54"/><text x="27.5473%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (120 samples, 0.02%)</title><rect x="27.2851%" y="805" width="0.0226%" height="15" fill="rgb(246,21,19)" fg:x="144802" fg:w="120"/><text x="27.5351%" y="815.50"></text></g><g><title>[unknown] (319 samples, 0.06%)</title><rect x="27.2634%" y="821" width="0.0601%" height="15" fill="rgb(213,98,42)" fg:x="144687" fg:w="319"/><text x="27.5134%" y="831.50"></text></g><g><title>Py_RunMain (81 samples, 0.02%)</title><rect x="27.3237%" y="773" width="0.0153%" height="15" fill="rgb(250,136,47)" fg:x="145007" fg:w="81"/><text x="27.5737%" y="783.50"></text></g><g><title>Py_FinalizeEx (56 samples, 0.01%)</title><rect x="27.3284%" y="757" width="0.0106%" height="15" fill="rgb(251,124,27)" fg:x="145032" fg:w="56"/><text x="27.5784%" y="767.50"></text></g><g><title>Py_InitializeFromConfig (89 samples, 0.02%)</title><rect x="27.3390%" y="741" width="0.0168%" height="15" fill="rgb(229,180,14)" fg:x="145088" fg:w="89"/><text x="27.5890%" y="751.50"></text></g><g><title>[python3.9] (89 samples, 0.02%)</title><rect x="27.3390%" y="725" width="0.0168%" height="15" fill="rgb(245,216,25)" fg:x="145088" fg:w="89"/><text x="27.5890%" y="735.50"></text></g><g><title>[python3.9] (88 samples, 0.02%)</title><rect x="27.3392%" y="709" width="0.0166%" height="15" fill="rgb(251,43,5)" fg:x="145089" fg:w="88"/><text x="27.5892%" y="719.50"></text></g><g><title>Py_BytesMain (172 samples, 0.03%)</title><rect x="27.3237%" y="789" width="0.0324%" height="15" fill="rgb(250,128,24)" fg:x="145007" fg:w="172"/><text x="27.5737%" y="799.50"></text></g><g><title>[python3.9] (91 samples, 0.02%)</title><rect x="27.3390%" y="773" width="0.0171%" height="15" fill="rgb(217,117,27)" fg:x="145088" fg:w="91"/><text x="27.5890%" y="783.50"></text></g><g><title>[python3.9] (91 samples, 0.02%)</title><rect x="27.3390%" y="757" width="0.0171%" height="15" fill="rgb(245,147,4)" fg:x="145088" fg:w="91"/><text x="27.5890%" y="767.50"></text></g><g><title>__libc_start_main (173 samples, 0.03%)</title><rect x="27.3237%" y="805" width="0.0326%" height="15" fill="rgb(242,201,35)" fg:x="145007" fg:w="173"/><text x="27.5737%" y="815.50"></text></g><g><title>_start (182 samples, 0.03%)</title><rect x="27.3237%" y="821" width="0.0343%" height="15" fill="rgb(218,181,1)" fg:x="145007" fg:w="182"/><text x="27.5737%" y="831.50"></text></g><g><title>python3 (549 samples, 0.10%)</title><rect x="27.2572%" y="837" width="0.1034%" height="15" fill="rgb(222,6,29)" fg:x="144654" fg:w="549"/><text x="27.5072%" y="847.50"></text></g><g><title>[[stack]] (66 samples, 0.01%)</title><rect x="27.3612%" y="821" width="0.0124%" height="15" fill="rgb(208,186,3)" fg:x="145206" fg:w="66"/><text x="27.6112%" y="831.50"></text></g><g><title>[sed] (92 samples, 0.02%)</title><rect x="27.3878%" y="709" width="0.0173%" height="15" fill="rgb(216,36,26)" fg:x="145347" fg:w="92"/><text x="27.6378%" y="719.50"></text></g><g><title>[sed] (156 samples, 0.03%)</title><rect x="27.3876%" y="725" width="0.0294%" height="15" fill="rgb(248,201,23)" fg:x="145346" fg:w="156"/><text x="27.6376%" y="735.50"></text></g><g><title>[sed] (175 samples, 0.03%)</title><rect x="27.3850%" y="741" width="0.0330%" height="15" fill="rgb(251,170,31)" fg:x="145332" fg:w="175"/><text x="27.6350%" y="751.50"></text></g><g><title>[sed] (242 samples, 0.05%)</title><rect x="27.3831%" y="757" width="0.0456%" height="15" fill="rgb(207,110,25)" fg:x="145322" fg:w="242"/><text x="27.6331%" y="767.50"></text></g><g><title>[sed] (260 samples, 0.05%)</title><rect x="27.3821%" y="773" width="0.0490%" height="15" fill="rgb(250,54,15)" fg:x="145317" fg:w="260"/><text x="27.6321%" y="783.50"></text></g><g><title>[sed] (297 samples, 0.06%)</title><rect x="27.3819%" y="789" width="0.0560%" height="15" fill="rgb(227,68,33)" fg:x="145316" fg:w="297"/><text x="27.6319%" y="799.50"></text></g><g><title>__libc_start_main (338 samples, 0.06%)</title><rect x="27.3819%" y="805" width="0.0637%" height="15" fill="rgb(238,34,41)" fg:x="145316" fg:w="338"/><text x="27.6319%" y="815.50"></text></g><g><title>[sed] (342 samples, 0.06%)</title><rect x="27.3816%" y="821" width="0.0644%" height="15" fill="rgb(220,11,15)" fg:x="145314" fg:w="342"/><text x="27.6316%" y="831.50"></text></g><g><title>__GI__dl_addr (75 samples, 0.01%)</title><rect x="27.4703%" y="661" width="0.0141%" height="15" fill="rgb(246,111,35)" fg:x="145785" fg:w="75"/><text x="27.7203%" y="671.50"></text></g><g><title>determine_info (69 samples, 0.01%)</title><rect x="27.4715%" y="645" width="0.0130%" height="15" fill="rgb(209,88,53)" fg:x="145791" fg:w="69"/><text x="27.7215%" y="655.50"></text></g><g><title>__fopen_internal (95 samples, 0.02%)</title><rect x="27.4671%" y="725" width="0.0179%" height="15" fill="rgb(231,185,47)" fg:x="145768" fg:w="95"/><text x="27.7171%" y="735.50"></text></g><g><title>malloc_hook_ini (80 samples, 0.02%)</title><rect x="27.4699%" y="709" width="0.0151%" height="15" fill="rgb(233,154,1)" fg:x="145783" fg:w="80"/><text x="27.7199%" y="719.50"></text></g><g><title>ptmalloc_init (80 samples, 0.02%)</title><rect x="27.4699%" y="693" width="0.0151%" height="15" fill="rgb(225,15,46)" fg:x="145783" fg:w="80"/><text x="27.7199%" y="703.50"></text></g><g><title>ptmalloc_init (80 samples, 0.02%)</title><rect x="27.4699%" y="677" width="0.0151%" height="15" fill="rgb(211,135,41)" fg:x="145783" fg:w="80"/><text x="27.7199%" y="687.50"></text></g><g><title>selinuxfs_exists (123 samples, 0.02%)</title><rect x="27.4624%" y="741" width="0.0232%" height="15" fill="rgb(208,54,0)" fg:x="145743" fg:w="123"/><text x="27.7124%" y="751.50"></text></g><g><title>[libselinux.so.1] (160 samples, 0.03%)</title><rect x="27.4556%" y="757" width="0.0301%" height="15" fill="rgb(244,136,14)" fg:x="145707" fg:w="160"/><text x="27.7056%" y="767.50"></text></g><g><title>_dl_start_user (203 samples, 0.04%)</title><rect x="27.4551%" y="821" width="0.0383%" height="15" fill="rgb(241,56,14)" fg:x="145704" fg:w="203"/><text x="27.7051%" y="831.50"></text></g><g><title>_dl_init (203 samples, 0.04%)</title><rect x="27.4551%" y="805" width="0.0383%" height="15" fill="rgb(205,80,24)" fg:x="145704" fg:w="203"/><text x="27.7051%" y="815.50"></text></g><g><title>call_init (202 samples, 0.04%)</title><rect x="27.4552%" y="789" width="0.0381%" height="15" fill="rgb(220,57,4)" fg:x="145705" fg:w="202"/><text x="27.7052%" y="799.50"></text></g><g><title>call_init (201 samples, 0.04%)</title><rect x="27.4554%" y="773" width="0.0379%" height="15" fill="rgb(226,193,50)" fg:x="145706" fg:w="201"/><text x="27.7054%" y="783.50"></text></g><g><title>handle_mm_fault (59 samples, 0.01%)</title><rect x="27.5318%" y="581" width="0.0111%" height="15" fill="rgb(231,168,22)" fg:x="146111" fg:w="59"/><text x="27.7818%" y="591.50"></text></g><g><title>exc_page_fault (64 samples, 0.01%)</title><rect x="27.5314%" y="613" width="0.0121%" height="15" fill="rgb(254,215,14)" fg:x="146109" fg:w="64"/><text x="27.7814%" y="623.50"></text></g><g><title>do_user_addr_fault (64 samples, 0.01%)</title><rect x="27.5314%" y="597" width="0.0121%" height="15" fill="rgb(211,115,16)" fg:x="146109" fg:w="64"/><text x="27.7814%" y="607.50"></text></g><g><title>asm_exc_page_fault (66 samples, 0.01%)</title><rect x="27.5312%" y="629" width="0.0124%" height="15" fill="rgb(236,210,16)" fg:x="146108" fg:w="66"/><text x="27.7812%" y="639.50"></text></g><g><title>[ld-2.31.so] (79 samples, 0.01%)</title><rect x="27.5299%" y="645" width="0.0149%" height="15" fill="rgb(221,94,12)" fg:x="146101" fg:w="79"/><text x="27.7799%" y="655.50"></text></g><g><title>__vma_adjust (124 samples, 0.02%)</title><rect x="27.5549%" y="485" width="0.0234%" height="15" fill="rgb(235,218,49)" fg:x="146234" fg:w="124"/><text x="27.8049%" y="495.50"></text></g><g><title>__split_vma (191 samples, 0.04%)</title><rect x="27.5538%" y="501" width="0.0360%" height="15" fill="rgb(217,114,14)" fg:x="146228" fg:w="191"/><text x="27.8038%" y="511.50"></text></g><g><title>vm_area_dup (59 samples, 0.01%)</title><rect x="27.5787%" y="485" width="0.0111%" height="15" fill="rgb(216,145,22)" fg:x="146360" fg:w="59"/><text x="27.8287%" y="495.50"></text></g><g><title>unmap_region (58 samples, 0.01%)</title><rect x="27.5975%" y="501" width="0.0109%" height="15" fill="rgb(217,112,39)" fg:x="146460" fg:w="58"/><text x="27.8475%" y="511.50"></text></g><g><title>__do_munmap (301 samples, 0.06%)</title><rect x="27.5521%" y="517" width="0.0567%" height="15" fill="rgb(225,85,32)" fg:x="146219" fg:w="301"/><text x="27.8021%" y="527.50"></text></g><g><title>perf_iterate_sb (63 samples, 0.01%)</title><rect x="27.6213%" y="501" width="0.0119%" height="15" fill="rgb(245,209,47)" fg:x="146586" fg:w="63"/><text x="27.8713%" y="511.50"></text></g><g><title>perf_iterate_ctx (58 samples, 0.01%)</title><rect x="27.6222%" y="485" width="0.0109%" height="15" fill="rgb(218,220,15)" fg:x="146591" fg:w="58"/><text x="27.8722%" y="495.50"></text></g><g><title>perf_event_mmap (132 samples, 0.02%)</title><rect x="27.6099%" y="517" width="0.0249%" height="15" fill="rgb(222,202,31)" fg:x="146526" fg:w="132"/><text x="27.8599%" y="527.50"></text></g><g><title>vma_link (57 samples, 0.01%)</title><rect x="27.6407%" y="517" width="0.0107%" height="15" fill="rgb(243,203,4)" fg:x="146689" fg:w="57"/><text x="27.8907%" y="527.50"></text></g><g><title>mmap_region (578 samples, 0.11%)</title><rect x="27.5487%" y="533" width="0.1089%" height="15" fill="rgb(237,92,17)" fg:x="146201" fg:w="578"/><text x="27.7987%" y="543.50"></text></g><g><title>do_mmap (588 samples, 0.11%)</title><rect x="27.5470%" y="549" width="0.1108%" height="15" fill="rgb(231,119,7)" fg:x="146192" fg:w="588"/><text x="27.7970%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (606 samples, 0.11%)</title><rect x="27.5461%" y="581" width="0.1142%" height="15" fill="rgb(237,82,41)" fg:x="146187" fg:w="606"/><text x="27.7961%" y="591.50"></text></g><g><title>vm_mmap_pgoff (603 samples, 0.11%)</title><rect x="27.5466%" y="565" width="0.1136%" height="15" fill="rgb(226,81,48)" fg:x="146190" fg:w="603"/><text x="27.7966%" y="575.50"></text></g><g><title>do_syscall_64 (665 samples, 0.13%)</title><rect x="27.5461%" y="597" width="0.1253%" height="15" fill="rgb(234,70,51)" fg:x="146187" fg:w="665"/><text x="27.7961%" y="607.50"></text></g><g><title>vm_mmap_pgoff (58 samples, 0.01%)</title><rect x="27.6604%" y="581" width="0.0109%" height="15" fill="rgb(251,86,4)" fg:x="146794" fg:w="58"/><text x="27.9104%" y="591.50"></text></g><g><title>do_mmap (58 samples, 0.01%)</title><rect x="27.6604%" y="565" width="0.0109%" height="15" fill="rgb(244,144,28)" fg:x="146794" fg:w="58"/><text x="27.9104%" y="575.50"></text></g><g><title>mmap_region (58 samples, 0.01%)</title><rect x="27.6604%" y="549" width="0.0109%" height="15" fill="rgb(232,161,39)" fg:x="146794" fg:w="58"/><text x="27.9104%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (667 samples, 0.13%)</title><rect x="27.5461%" y="613" width="0.1257%" height="15" fill="rgb(247,34,51)" fg:x="146187" fg:w="667"/><text x="27.7961%" y="623.50"></text></g><g><title>_dl_map_segments (759 samples, 0.14%)</title><rect x="27.5291%" y="661" width="0.1430%" height="15" fill="rgb(225,132,2)" fg:x="146097" fg:w="759"/><text x="27.7791%" y="671.50"></text></g><g><title>__mmap64 (676 samples, 0.13%)</title><rect x="27.5448%" y="645" width="0.1274%" height="15" fill="rgb(209,159,44)" fg:x="146180" fg:w="676"/><text x="27.7948%" y="655.50"></text></g><g><title>__mmap64 (676 samples, 0.13%)</title><rect x="27.5448%" y="629" width="0.1274%" height="15" fill="rgb(251,214,1)" fg:x="146180" fg:w="676"/><text x="27.7948%" y="639.50"></text></g><g><title>handle_mm_fault (74 samples, 0.01%)</title><rect x="27.6912%" y="597" width="0.0139%" height="15" fill="rgb(247,84,47)" fg:x="146957" fg:w="74"/><text x="27.9412%" y="607.50"></text></g><g><title>exc_page_fault (85 samples, 0.02%)</title><rect x="27.6898%" y="629" width="0.0160%" height="15" fill="rgb(240,111,43)" fg:x="146950" fg:w="85"/><text x="27.9398%" y="639.50"></text></g><g><title>do_user_addr_fault (85 samples, 0.02%)</title><rect x="27.6898%" y="613" width="0.0160%" height="15" fill="rgb(215,214,35)" fg:x="146950" fg:w="85"/><text x="27.9398%" y="623.50"></text></g><g><title>asm_exc_page_fault (86 samples, 0.02%)</title><rect x="27.6898%" y="645" width="0.0162%" height="15" fill="rgb(248,207,23)" fg:x="146950" fg:w="86"/><text x="27.9398%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (989 samples, 0.19%)</title><rect x="27.5220%" y="677" width="0.1864%" height="15" fill="rgb(214,186,4)" fg:x="146059" fg:w="989"/><text x="27.7720%" y="687.50"></text></g><g><title>elf_get_dynamic_info (118 samples, 0.02%)</title><rect x="27.6861%" y="661" width="0.0222%" height="15" fill="rgb(220,133,22)" fg:x="146930" fg:w="118"/><text x="27.9361%" y="671.50"></text></g><g><title>do_filp_open (71 samples, 0.01%)</title><rect x="27.7138%" y="565" width="0.0134%" height="15" fill="rgb(239,134,19)" fg:x="147077" fg:w="71"/><text x="27.9638%" y="575.50"></text></g><g><title>path_openat (68 samples, 0.01%)</title><rect x="27.7143%" y="549" width="0.0128%" height="15" fill="rgb(250,140,9)" fg:x="147080" fg:w="68"/><text x="27.9643%" y="559.50"></text></g><g><title>do_syscall_64 (89 samples, 0.02%)</title><rect x="27.7128%" y="613" width="0.0168%" height="15" fill="rgb(225,59,14)" fg:x="147072" fg:w="89"/><text x="27.9628%" y="623.50"></text></g><g><title>__x64_sys_openat (89 samples, 0.02%)</title><rect x="27.7128%" y="597" width="0.0168%" height="15" fill="rgb(214,152,51)" fg:x="147072" fg:w="89"/><text x="27.9628%" y="607.50"></text></g><g><title>do_sys_openat2 (89 samples, 0.02%)</title><rect x="27.7128%" y="581" width="0.0168%" height="15" fill="rgb(251,227,43)" fg:x="147072" fg:w="89"/><text x="27.9628%" y="591.50"></text></g><g><title>__GI___open64_nocancel (96 samples, 0.02%)</title><rect x="27.7121%" y="645" width="0.0181%" height="15" fill="rgb(241,96,17)" fg:x="147068" fg:w="96"/><text x="27.9621%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.02%)</title><rect x="27.7128%" y="629" width="0.0173%" height="15" fill="rgb(234,198,43)" fg:x="147072" fg:w="92"/><text x="27.9628%" y="639.50"></text></g><g><title>open_path (136 samples, 0.03%)</title><rect x="27.7089%" y="677" width="0.0256%" height="15" fill="rgb(220,108,29)" fg:x="147051" fg:w="136"/><text x="27.9589%" y="687.50"></text></g><g><title>open_verify (122 samples, 0.02%)</title><rect x="27.7115%" y="661" width="0.0230%" height="15" fill="rgb(226,163,33)" fg:x="147065" fg:w="122"/><text x="27.9615%" y="671.50"></text></g><g><title>_dl_catch_exception (1,162 samples, 0.22%)</title><rect x="27.5178%" y="725" width="0.2190%" height="15" fill="rgb(205,194,45)" fg:x="146037" fg:w="1162"/><text x="27.7678%" y="735.50"></text></g><g><title>openaux (1,160 samples, 0.22%)</title><rect x="27.5182%" y="709" width="0.2186%" height="15" fill="rgb(206,143,44)" fg:x="146039" fg:w="1160"/><text x="27.7682%" y="719.50"></text></g><g><title>_dl_map_object (1,159 samples, 0.22%)</title><rect x="27.5184%" y="693" width="0.2184%" height="15" fill="rgb(236,136,36)" fg:x="146040" fg:w="1159"/><text x="27.7684%" y="703.50"></text></g><g><title>_dl_map_object_deps (1,192 samples, 0.22%)</title><rect x="27.5154%" y="741" width="0.2246%" height="15" fill="rgb(249,172,42)" fg:x="146024" fg:w="1192"/><text x="27.7654%" y="751.50"></text></g><g><title>__split_vma (64 samples, 0.01%)</title><rect x="27.7509%" y="613" width="0.0121%" height="15" fill="rgb(216,139,23)" fg:x="147274" fg:w="64"/><text x="28.0009%" y="623.50"></text></g><g><title>mprotect_fixup (130 samples, 0.02%)</title><rect x="27.7503%" y="629" width="0.0245%" height="15" fill="rgb(207,166,20)" fg:x="147271" fg:w="130"/><text x="28.0003%" y="639.50"></text></g><g><title>_dl_protect_relro (154 samples, 0.03%)</title><rect x="27.7469%" y="725" width="0.0290%" height="15" fill="rgb(210,209,22)" fg:x="147253" fg:w="154"/><text x="27.9969%" y="735.50"></text></g><g><title>__mprotect (153 samples, 0.03%)</title><rect x="27.7471%" y="709" width="0.0288%" height="15" fill="rgb(232,118,20)" fg:x="147254" fg:w="153"/><text x="27.9971%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (149 samples, 0.03%)</title><rect x="27.7479%" y="693" width="0.0281%" height="15" fill="rgb(238,113,42)" fg:x="147258" fg:w="149"/><text x="27.9979%" y="703.50"></text></g><g><title>do_syscall_64 (149 samples, 0.03%)</title><rect x="27.7479%" y="677" width="0.0281%" height="15" fill="rgb(231,42,5)" fg:x="147258" fg:w="149"/><text x="27.9979%" y="687.50"></text></g><g><title>__x64_sys_mprotect (148 samples, 0.03%)</title><rect x="27.7481%" y="661" width="0.0279%" height="15" fill="rgb(243,166,24)" fg:x="147259" fg:w="148"/><text x="27.9981%" y="671.50"></text></g><g><title>do_mprotect_pkey (148 samples, 0.03%)</title><rect x="27.7481%" y="645" width="0.0279%" height="15" fill="rgb(237,226,12)" fg:x="147259" fg:w="148"/><text x="27.9981%" y="655.50"></text></g><g><title>elf_machine_lazy_rel (67 samples, 0.01%)</title><rect x="27.7829%" y="709" width="0.0126%" height="15" fill="rgb(229,133,24)" fg:x="147444" fg:w="67"/><text x="28.0329%" y="719.50"></text></g><g><title>dl_new_hash (83 samples, 0.02%)</title><rect x="27.8182%" y="677" width="0.0156%" height="15" fill="rgb(238,33,43)" fg:x="147631" fg:w="83"/><text x="28.0682%" y="687.50"></text></g><g><title>check_match (123 samples, 0.02%)</title><rect x="27.8937%" y="661" width="0.0232%" height="15" fill="rgb(227,59,38)" fg:x="148032" fg:w="123"/><text x="28.1437%" y="671.50"></text></g><g><title>strcmp (90 samples, 0.02%)</title><rect x="27.8999%" y="645" width="0.0170%" height="15" fill="rgb(230,97,0)" fg:x="148065" fg:w="90"/><text x="28.1499%" y="655.50"></text></g><g><title>_dl_lookup_symbol_x (585 samples, 0.11%)</title><rect x="27.8084%" y="693" width="0.1102%" height="15" fill="rgb(250,173,50)" fg:x="147579" fg:w="585"/><text x="28.0584%" y="703.50"></text></g><g><title>do_lookup_x (450 samples, 0.08%)</title><rect x="27.8338%" y="677" width="0.0848%" height="15" fill="rgb(240,15,50)" fg:x="147714" fg:w="450"/><text x="28.0838%" y="687.50"></text></g><g><title>elf_machine_rela (661 samples, 0.12%)</title><rect x="27.7956%" y="709" width="0.1246%" height="15" fill="rgb(221,93,22)" fg:x="147511" fg:w="661"/><text x="28.0456%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (794 samples, 0.15%)</title><rect x="27.7760%" y="725" width="0.1496%" height="15" fill="rgb(245,180,53)" fg:x="147407" fg:w="794"/><text x="28.0260%" y="735.50"></text></g><g><title>_dl_relocate_object (972 samples, 0.18%)</title><rect x="27.7451%" y="741" width="0.1832%" height="15" fill="rgb(231,88,51)" fg:x="147243" fg:w="972"/><text x="27.9951%" y="751.50"></text></g><g><title>[ld-2.31.so] (2,319 samples, 0.44%)</title><rect x="27.5033%" y="757" width="0.4370%" height="15" fill="rgb(240,58,21)" fg:x="145960" fg:w="2319"/><text x="27.7533%" y="767.50"></text></g><g><title>_dl_start_final (2,380 samples, 0.45%)</title><rect x="27.5024%" y="789" width="0.4485%" height="15" fill="rgb(237,21,10)" fg:x="145955" fg:w="2380"/><text x="27.7524%" y="799.50"></text></g><g><title>_dl_sysdep_start (2,379 samples, 0.45%)</title><rect x="27.5025%" y="773" width="0.4483%" height="15" fill="rgb(218,43,11)" fg:x="145956" fg:w="2379"/><text x="27.7525%" y="783.50"></text></g><g><title>_dl_start (2,410 samples, 0.45%)</title><rect x="27.5020%" y="805" width="0.4541%" height="15" fill="rgb(218,221,29)" fg:x="145953" fg:w="2410"/><text x="27.7520%" y="815.50"></text></g><g><title>_start (2,454 samples, 0.46%)</title><rect x="27.5014%" y="821" width="0.4624%" height="15" fill="rgb(214,118,42)" fg:x="145950" fg:w="2454"/><text x="27.7514%" y="831.50"></text></g><g><title>asm_exc_page_fault (165 samples, 0.03%)</title><rect x="27.9638%" y="821" width="0.0311%" height="15" fill="rgb(251,200,26)" fg:x="148404" fg:w="165"/><text x="28.2138%" y="831.50"></text></g><g><title>setup_arg_pages (82 samples, 0.02%)</title><rect x="28.0254%" y="725" width="0.0155%" height="15" fill="rgb(237,101,39)" fg:x="148731" fg:w="82"/><text x="28.2754%" y="735.50"></text></g><g><title>__x64_sys_execve (309 samples, 0.06%)</title><rect x="27.9953%" y="789" width="0.0582%" height="15" fill="rgb(251,117,11)" fg:x="148571" fg:w="309"/><text x="28.2453%" y="799.50"></text></g><g><title>do_execveat_common (309 samples, 0.06%)</title><rect x="27.9953%" y="773" width="0.0582%" height="15" fill="rgb(216,223,23)" fg:x="148571" fg:w="309"/><text x="28.2453%" y="783.50"></text></g><g><title>bprm_execve (309 samples, 0.06%)</title><rect x="27.9953%" y="757" width="0.0582%" height="15" fill="rgb(251,54,12)" fg:x="148571" fg:w="309"/><text x="28.2453%" y="767.50"></text></g><g><title>load_elf_binary (309 samples, 0.06%)</title><rect x="27.9953%" y="741" width="0.0582%" height="15" fill="rgb(254,176,54)" fg:x="148571" fg:w="309"/><text x="28.2453%" y="751.50"></text></g><g><title>unmap_page_range (130 samples, 0.02%)</title><rect x="28.0675%" y="693" width="0.0245%" height="15" fill="rgb(210,32,8)" fg:x="148954" fg:w="130"/><text x="28.3175%" y="703.50"></text></g><g><title>mmput (203 samples, 0.04%)</title><rect x="28.0539%" y="741" width="0.0383%" height="15" fill="rgb(235,52,38)" fg:x="148882" fg:w="203"/><text x="28.3039%" y="751.50"></text></g><g><title>exit_mmap (202 samples, 0.04%)</title><rect x="28.0541%" y="725" width="0.0381%" height="15" fill="rgb(231,4,44)" fg:x="148883" fg:w="202"/><text x="28.3041%" y="735.50"></text></g><g><title>unmap_vmas (131 samples, 0.02%)</title><rect x="28.0675%" y="709" width="0.0247%" height="15" fill="rgb(249,2,32)" fg:x="148954" fg:w="131"/><text x="28.3175%" y="719.50"></text></g><g><title>__x64_sys_exit_group (209 samples, 0.04%)</title><rect x="28.0535%" y="789" width="0.0394%" height="15" fill="rgb(224,65,26)" fg:x="148880" fg:w="209"/><text x="28.3035%" y="799.50"></text></g><g><title>do_group_exit (209 samples, 0.04%)</title><rect x="28.0535%" y="773" width="0.0394%" height="15" fill="rgb(250,73,40)" fg:x="148880" fg:w="209"/><text x="28.3035%" y="783.50"></text></g><g><title>do_exit (209 samples, 0.04%)</title><rect x="28.0535%" y="757" width="0.0394%" height="15" fill="rgb(253,177,16)" fg:x="148880" fg:w="209"/><text x="28.3035%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (524 samples, 0.10%)</title><rect x="27.9951%" y="821" width="0.0987%" height="15" fill="rgb(217,32,34)" fg:x="148570" fg:w="524"/><text x="28.2451%" y="831.50"></text></g><g><title>do_syscall_64 (523 samples, 0.10%)</title><rect x="27.9953%" y="805" width="0.0985%" height="15" fill="rgb(212,7,10)" fg:x="148571" fg:w="523"/><text x="28.2453%" y="815.50"></text></g><g><title>sed (3,900 samples, 0.73%)</title><rect x="27.3607%" y="837" width="0.7349%" height="15" fill="rgb(245,89,8)" fg:x="145203" fg:w="3900"/><text x="27.6107%" y="847.50"></text></g><g><title>JavaThread::is_Java_thread (78 samples, 0.01%)</title><rect x="28.1901%" y="805" width="0.0147%" height="15" fill="rgb(237,16,53)" fg:x="149605" fg:w="78"/><text x="28.4401%" y="815.50"></text></g><g><title>__GI___xstat (55 samples, 0.01%)</title><rect x="28.2689%" y="805" width="0.0104%" height="15" fill="rgb(250,204,30)" fg:x="150023" fg:w="55"/><text x="28.5189%" y="815.50"></text></g><g><title>_int_free (89 samples, 0.02%)</title><rect x="28.2860%" y="805" width="0.0168%" height="15" fill="rgb(208,77,27)" fg:x="150114" fg:w="89"/><text x="28.5360%" y="815.50"></text></g><g><title>[anon] (1,327 samples, 0.25%)</title><rect x="28.1072%" y="821" width="0.2500%" height="15" fill="rgb(250,204,28)" fg:x="149165" fg:w="1327"/><text x="28.3572%" y="831.50"></text></g><g><title>[libc-2.31.so] (61 samples, 0.01%)</title><rect x="28.8321%" y="805" width="0.0115%" height="15" fill="rgb(244,63,21)" fg:x="153012" fg:w="61"/><text x="29.0821%" y="815.50"></text></g><g><title>__x64_sys_close (87 samples, 0.02%)</title><rect x="28.8489%" y="757" width="0.0164%" height="15" fill="rgb(236,85,44)" fg:x="153101" fg:w="87"/><text x="29.0989%" y="767.50"></text></g><g><title>filp_close (67 samples, 0.01%)</title><rect x="28.8526%" y="741" width="0.0126%" height="15" fill="rgb(215,98,4)" fg:x="153121" fg:w="67"/><text x="29.1026%" y="751.50"></text></g><g><title>do_syscall_64 (91 samples, 0.02%)</title><rect x="28.8485%" y="773" width="0.0171%" height="15" fill="rgb(235,38,11)" fg:x="153099" fg:w="91"/><text x="29.0985%" y="783.50"></text></g><g><title>btrfs_release_file (73 samples, 0.01%)</title><rect x="28.8762%" y="709" width="0.0138%" height="15" fill="rgb(254,186,25)" fg:x="153246" fg:w="73"/><text x="29.1262%" y="719.50"></text></g><g><title>kfree (66 samples, 0.01%)</title><rect x="28.8775%" y="693" width="0.0124%" height="15" fill="rgb(225,55,31)" fg:x="153253" fg:w="66"/><text x="29.1275%" y="703.50"></text></g><g><title>__fput (137 samples, 0.03%)</title><rect x="28.8719%" y="725" width="0.0258%" height="15" fill="rgb(211,15,21)" fg:x="153223" fg:w="137"/><text x="29.1219%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (304 samples, 0.06%)</title><rect x="28.8474%" y="789" width="0.0573%" height="15" fill="rgb(215,187,41)" fg:x="153093" fg:w="304"/><text x="29.0974%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (207 samples, 0.04%)</title><rect x="28.8656%" y="773" width="0.0390%" height="15" fill="rgb(248,69,32)" fg:x="153190" fg:w="207"/><text x="29.1156%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (206 samples, 0.04%)</title><rect x="28.8658%" y="757" width="0.0388%" height="15" fill="rgb(252,102,52)" fg:x="153191" fg:w="206"/><text x="29.1158%" y="767.50"></text></g><g><title>task_work_run (181 samples, 0.03%)</title><rect x="28.8705%" y="741" width="0.0341%" height="15" fill="rgb(253,140,32)" fg:x="153216" fg:w="181"/><text x="29.1205%" y="751.50"></text></g><g><title>__GI___close_nocancel (327 samples, 0.06%)</title><rect x="28.8436%" y="805" width="0.0616%" height="15" fill="rgb(216,56,42)" fg:x="153073" fg:w="327"/><text x="29.0936%" y="815.50"></text></g><g><title>__GI___libc_free (387 samples, 0.07%)</title><rect x="28.9052%" y="805" width="0.0729%" height="15" fill="rgb(216,184,14)" fg:x="153400" fg:w="387"/><text x="29.1552%" y="815.50"></text></g><g><title>entry_SYSCALL_64 (148 samples, 0.03%)</title><rect x="29.0026%" y="789" width="0.0279%" height="15" fill="rgb(237,187,27)" fg:x="153917" fg:w="148"/><text x="29.2526%" y="799.50"></text></g><g><title>btrfs_dentry_delete (58 samples, 0.01%)</title><rect x="29.1038%" y="709" width="0.0109%" height="15" fill="rgb(219,65,3)" fg:x="154454" fg:w="58"/><text x="29.3538%" y="719.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="29.1393%" y="693" width="0.0198%" height="15" fill="rgb(245,83,25)" fg:x="154642" fg:w="105"/><text x="29.3893%" y="703.50"></text></g><g><title>lockref_put_or_lock (236 samples, 0.04%)</title><rect x="29.1148%" y="709" width="0.0445%" height="15" fill="rgb(214,205,45)" fg:x="154512" fg:w="236"/><text x="29.3648%" y="719.50"></text></g><g><title>dput (498 samples, 0.09%)</title><rect x="29.0665%" y="725" width="0.0938%" height="15" fill="rgb(241,20,18)" fg:x="154256" fg:w="498"/><text x="29.3165%" y="735.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="29.1945%" y="645" width="0.0109%" height="15" fill="rgb(232,163,23)" fg:x="154935" fg:w="58"/><text x="29.4445%" y="655.50"></text></g><g><title>__lookup_hash (192 samples, 0.04%)</title><rect x="29.1705%" y="709" width="0.0362%" height="15" fill="rgb(214,5,46)" fg:x="154808" fg:w="192"/><text x="29.4205%" y="719.50"></text></g><g><title>lookup_dcache (172 samples, 0.03%)</title><rect x="29.1743%" y="693" width="0.0324%" height="15" fill="rgb(229,78,17)" fg:x="154828" fg:w="172"/><text x="29.4243%" y="703.50"></text></g><g><title>d_lookup (168 samples, 0.03%)</title><rect x="29.1751%" y="677" width="0.0317%" height="15" fill="rgb(248,89,10)" fg:x="154832" fg:w="168"/><text x="29.4251%" y="687.50"></text></g><g><title>__d_lookup (153 samples, 0.03%)</title><rect x="29.1779%" y="661" width="0.0288%" height="15" fill="rgb(248,54,15)" fg:x="154847" fg:w="153"/><text x="29.4279%" y="671.50"></text></g><g><title>down_write (74 samples, 0.01%)</title><rect x="29.2067%" y="709" width="0.0139%" height="15" fill="rgb(223,116,6)" fg:x="155000" fg:w="74"/><text x="29.4567%" y="719.50"></text></g><g><title>__legitimize_mnt (99 samples, 0.02%)</title><rect x="29.2474%" y="629" width="0.0187%" height="15" fill="rgb(205,125,38)" fg:x="155216" fg:w="99"/><text x="29.4974%" y="639.50"></text></g><g><title>__legitimize_path (185 samples, 0.03%)</title><rect x="29.2442%" y="645" width="0.0349%" height="15" fill="rgb(251,78,38)" fg:x="155199" fg:w="185"/><text x="29.4942%" y="655.50"></text></g><g><title>lockref_get_not_dead (69 samples, 0.01%)</title><rect x="29.2661%" y="629" width="0.0130%" height="15" fill="rgb(253,78,28)" fg:x="155315" fg:w="69"/><text x="29.5161%" y="639.50"></text></g><g><title>complete_walk (255 samples, 0.05%)</title><rect x="29.2357%" y="677" width="0.0480%" height="15" fill="rgb(209,120,3)" fg:x="155154" fg:w="255"/><text x="29.4857%" y="687.50"></text></g><g><title>try_to_unlazy (231 samples, 0.04%)</title><rect x="29.2402%" y="661" width="0.0435%" height="15" fill="rgb(238,229,9)" fg:x="155178" fg:w="231"/><text x="29.4902%" y="671.50"></text></g><g><title>btrfs_permission (78 samples, 0.01%)</title><rect x="29.6003%" y="645" width="0.0147%" height="15" fill="rgb(253,159,18)" fg:x="157089" fg:w="78"/><text x="29.8503%" y="655.50"></text></g><g><title>inode_permission.part.0 (1,072 samples, 0.20%)</title><rect x="29.4852%" y="661" width="0.2020%" height="15" fill="rgb(244,42,34)" fg:x="156478" fg:w="1072"/><text x="29.7352%" y="671.50"></text></g><g><title>generic_permission (383 samples, 0.07%)</title><rect x="29.6150%" y="645" width="0.0722%" height="15" fill="rgb(224,8,7)" fg:x="157167" fg:w="383"/><text x="29.8650%" y="655.50"></text></g><g><title>security_inode_permission (141 samples, 0.03%)</title><rect x="29.6872%" y="661" width="0.0266%" height="15" fill="rgb(210,201,45)" fg:x="157550" fg:w="141"/><text x="29.9372%" y="671.50"></text></g><g><title>lookup_fast (1,848 samples, 0.35%)</title><rect x="29.7916%" y="645" width="0.3482%" height="15" fill="rgb(252,185,21)" fg:x="158104" fg:w="1848"/><text x="30.0416%" y="655.50"></text></g><g><title>__d_lookup_rcu (1,336 samples, 0.25%)</title><rect x="29.8881%" y="629" width="0.2517%" height="15" fill="rgb(223,131,1)" fg:x="158616" fg:w="1336"/><text x="30.1381%" y="639.50"></text></g><g><title>link_path_walk.part.0 (5,073 samples, 0.96%)</title><rect x="29.2838%" y="677" width="0.9559%" height="15" fill="rgb(245,141,16)" fg:x="155409" fg:w="5073"/><text x="29.5338%" y="687.50"></text></g><g><title>walk_component (2,791 samples, 0.53%)</title><rect x="29.7138%" y="661" width="0.5259%" height="15" fill="rgb(229,55,45)" fg:x="157691" fg:w="2791"/><text x="29.9638%" y="671.50"></text></g><g><title>step_into (530 samples, 0.10%)</title><rect x="30.1398%" y="645" width="0.0999%" height="15" fill="rgb(208,92,15)" fg:x="159952" fg:w="530"/><text x="30.3898%" y="655.50"></text></g><g><title>path_init (105 samples, 0.02%)</title><rect x="30.2397%" y="677" width="0.0198%" height="15" fill="rgb(234,185,47)" fg:x="160482" fg:w="105"/><text x="30.4897%" y="687.50"></text></g><g><title>nd_jump_root (73 samples, 0.01%)</title><rect x="30.2457%" y="661" width="0.0138%" height="15" fill="rgb(253,104,50)" fg:x="160514" fg:w="73"/><text x="30.4957%" y="671.50"></text></g><g><title>filename_parentat (5,537 samples, 1.04%)</title><rect x="29.2207%" y="709" width="1.0433%" height="15" fill="rgb(205,70,7)" fg:x="155074" fg:w="5537"/><text x="29.4707%" y="719.50"></text></g><g><title>path_parentat (5,483 samples, 1.03%)</title><rect x="29.2308%" y="693" width="1.0332%" height="15" fill="rgb(240,178,43)" fg:x="155128" fg:w="5483"/><text x="29.4808%" y="703.50"></text></g><g><title>kmem_cache_free (181 samples, 0.03%)</title><rect x="30.2640%" y="709" width="0.0341%" height="15" fill="rgb(214,112,2)" fg:x="160611" fg:w="181"/><text x="30.5140%" y="719.50"></text></g><g><title>__mnt_want_write (78 samples, 0.01%)</title><rect x="30.3103%" y="693" width="0.0147%" height="15" fill="rgb(206,46,17)" fg:x="160857" fg:w="78"/><text x="30.5603%" y="703.50"></text></g><g><title>mnt_want_write (158 samples, 0.03%)</title><rect x="30.2981%" y="709" width="0.0298%" height="15" fill="rgb(225,220,16)" fg:x="160792" fg:w="158"/><text x="30.5481%" y="719.50"></text></g><g><title>filename_create (6,209 samples, 1.17%)</title><rect x="29.1604%" y="725" width="1.1700%" height="15" fill="rgb(238,65,40)" fg:x="154754" fg:w="6209"/><text x="29.4104%" y="735.50"></text></g><g><title>kmem_cache_free (145 samples, 0.03%)</title><rect x="30.3416%" y="709" width="0.0273%" height="15" fill="rgb(230,151,21)" fg:x="161023" fg:w="145"/><text x="30.5916%" y="719.50"></text></g><g><title>__legitimize_mnt (84 samples, 0.02%)</title><rect x="30.3867%" y="645" width="0.0158%" height="15" fill="rgb(218,58,49)" fg:x="161262" fg:w="84"/><text x="30.6367%" y="655.50"></text></g><g><title>__legitimize_path (161 samples, 0.03%)</title><rect x="30.3844%" y="661" width="0.0303%" height="15" fill="rgb(219,179,14)" fg:x="161250" fg:w="161"/><text x="30.6344%" y="671.50"></text></g><g><title>lockref_get_not_dead (65 samples, 0.01%)</title><rect x="30.4025%" y="645" width="0.0122%" height="15" fill="rgb(223,72,1)" fg:x="161346" fg:w="65"/><text x="30.6525%" y="655.50"></text></g><g><title>complete_walk (206 samples, 0.04%)</title><rect x="30.3786%" y="693" width="0.0388%" height="15" fill="rgb(238,126,10)" fg:x="161219" fg:w="206"/><text x="30.6286%" y="703.50"></text></g><g><title>try_to_unlazy (192 samples, 0.04%)</title><rect x="30.3812%" y="677" width="0.0362%" height="15" fill="rgb(224,206,38)" fg:x="161233" fg:w="192"/><text x="30.6312%" y="687.50"></text></g><g><title>btrfs_permission (93 samples, 0.02%)</title><rect x="30.8385%" y="661" width="0.0175%" height="15" fill="rgb(212,201,54)" fg:x="163660" fg:w="93"/><text x="31.0885%" y="671.50"></text></g><g><title>inode_permission.part.0 (1,376 samples, 0.26%)</title><rect x="30.6915%" y="677" width="0.2593%" height="15" fill="rgb(218,154,48)" fg:x="162880" fg:w="1376"/><text x="30.9415%" y="687.50"></text></g><g><title>generic_permission (503 samples, 0.09%)</title><rect x="30.8560%" y="661" width="0.0948%" height="15" fill="rgb(232,93,24)" fg:x="163753" fg:w="503"/><text x="31.1060%" y="671.50"></text></g><g><title>security_inode_permission (160 samples, 0.03%)</title><rect x="30.9508%" y="677" width="0.0301%" height="15" fill="rgb(245,30,21)" fg:x="164256" fg:w="160"/><text x="31.2008%" y="687.50"></text></g><g><title>lookup_fast (2,763 samples, 0.52%)</title><rect x="31.0756%" y="661" width="0.5206%" height="15" fill="rgb(242,148,29)" fg:x="164918" fg:w="2763"/><text x="31.3256%" y="671.50"></text></g><g><title>__d_lookup_rcu (2,118 samples, 0.40%)</title><rect x="31.1971%" y="645" width="0.3991%" height="15" fill="rgb(244,153,54)" fg:x="165563" fg:w="2118"/><text x="31.4471%" y="655.50"></text></g><g><title>atime_needs_update (56 samples, 0.01%)</title><rect x="31.7464%" y="645" width="0.0106%" height="15" fill="rgb(252,87,22)" fg:x="168478" fg:w="56"/><text x="31.9964%" y="655.50"></text></g><g><title>page_get_link (194 samples, 0.04%)</title><rect x="31.7601%" y="645" width="0.0366%" height="15" fill="rgb(210,51,29)" fg:x="168551" fg:w="194"/><text x="32.0101%" y="655.50"></text></g><g><title>pagecache_get_page (133 samples, 0.03%)</title><rect x="31.7716%" y="629" width="0.0251%" height="15" fill="rgb(242,136,47)" fg:x="168612" fg:w="133"/><text x="32.0216%" y="639.50"></text></g><g><title>find_get_entry (101 samples, 0.02%)</title><rect x="31.7777%" y="613" width="0.0190%" height="15" fill="rgb(238,68,4)" fg:x="168644" fg:w="101"/><text x="32.0277%" y="623.50"></text></g><g><title>link_path_walk.part.0 (7,327 samples, 1.38%)</title><rect x="30.4174%" y="693" width="1.3806%" height="15" fill="rgb(242,161,30)" fg:x="161425" fg:w="7327"/><text x="30.6674%" y="703.50"></text></g><g><title>walk_component (4,336 samples, 0.82%)</title><rect x="30.9810%" y="677" width="0.8170%" height="15" fill="rgb(218,58,44)" fg:x="164416" fg:w="4336"/><text x="31.2310%" y="687.50"></text></g><g><title>step_into (1,023 samples, 0.19%)</title><rect x="31.6052%" y="661" width="0.1928%" height="15" fill="rgb(252,125,32)" fg:x="167729" fg:w="1023"/><text x="31.8552%" y="671.50"></text></g><g><title>path_init (195 samples, 0.04%)</title><rect x="31.7980%" y="693" width="0.0367%" height="15" fill="rgb(219,178,0)" fg:x="168752" fg:w="195"/><text x="32.0480%" y="703.50"></text></g><g><title>nd_jump_root (147 samples, 0.03%)</title><rect x="31.8070%" y="677" width="0.0277%" height="15" fill="rgb(213,152,7)" fg:x="168800" fg:w="147"/><text x="32.0570%" y="687.50"></text></g><g><title>set_root (120 samples, 0.02%)</title><rect x="31.8121%" y="661" width="0.0226%" height="15" fill="rgb(249,109,34)" fg:x="168827" fg:w="120"/><text x="32.0621%" y="671.50"></text></g><g><title>lookup_fast (165 samples, 0.03%)</title><rect x="31.8421%" y="677" width="0.0311%" height="15" fill="rgb(232,96,21)" fg:x="168986" fg:w="165"/><text x="32.0921%" y="687.50"></text></g><g><title>__d_lookup_rcu (132 samples, 0.02%)</title><rect x="31.8483%" y="661" width="0.0249%" height="15" fill="rgb(228,27,39)" fg:x="169019" fg:w="132"/><text x="32.0983%" y="671.50"></text></g><g><title>path_lookupat (8,019 samples, 1.51%)</title><rect x="30.3689%" y="709" width="1.5110%" height="15" fill="rgb(211,182,52)" fg:x="161168" fg:w="8019"/><text x="30.6189%" y="719.50"></text></g><g><title>walk_component (217 samples, 0.04%)</title><rect x="31.8391%" y="693" width="0.0409%" height="15" fill="rgb(234,178,38)" fg:x="168970" fg:w="217"/><text x="32.0891%" y="703.50"></text></g><g><title>filename_lookup (8,236 samples, 1.55%)</title><rect x="30.3303%" y="725" width="1.5519%" height="15" fill="rgb(221,111,3)" fg:x="160963" fg:w="8236"/><text x="30.5803%" y="735.50"></text></g><g><title>getname_flags (58 samples, 0.01%)</title><rect x="31.8822%" y="725" width="0.0109%" height="15" fill="rgb(228,175,21)" fg:x="169199" fg:w="58"/><text x="32.1322%" y="735.50"></text></g><g><title>memset_erms (688 samples, 0.13%)</title><rect x="31.9565%" y="693" width="0.1296%" height="15" fill="rgb(228,174,43)" fg:x="169593" fg:w="688"/><text x="32.2065%" y="703.50"></text></g><g><title>kmem_cache_alloc (1,079 samples, 0.20%)</title><rect x="31.9116%" y="709" width="0.2033%" height="15" fill="rgb(211,191,0)" fg:x="169355" fg:w="1079"/><text x="32.1616%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (153 samples, 0.03%)</title><rect x="32.0861%" y="693" width="0.0288%" height="15" fill="rgb(253,117,3)" fg:x="170281" fg:w="153"/><text x="32.3361%" y="703.50"></text></g><g><title>__check_heap_object (138 samples, 0.03%)</title><rect x="32.2632%" y="677" width="0.0260%" height="15" fill="rgb(241,127,19)" fg:x="171221" fg:w="138"/><text x="32.5132%" y="687.50"></text></g><g><title>__virt_addr_valid (190 samples, 0.04%)</title><rect x="32.2892%" y="677" width="0.0358%" height="15" fill="rgb(218,103,12)" fg:x="171359" fg:w="190"/><text x="32.5392%" y="687.50"></text></g><g><title>getname_flags.part.0 (2,305 samples, 0.43%)</title><rect x="31.8932%" y="725" width="0.4343%" height="15" fill="rgb(236,214,43)" fg:x="169257" fg:w="2305"/><text x="32.1432%" y="735.50"></text></g><g><title>strncpy_from_user (1,128 samples, 0.21%)</title><rect x="32.1149%" y="709" width="0.2125%" height="15" fill="rgb(244,144,19)" fg:x="170434" fg:w="1128"/><text x="32.3649%" y="719.50"></text></g><g><title>__check_object_size (425 samples, 0.08%)</title><rect x="32.2474%" y="693" width="0.0801%" height="15" fill="rgb(246,188,10)" fg:x="171137" fg:w="425"/><text x="32.4974%" y="703.50"></text></g><g><title>inode_permission.part.0 (80 samples, 0.02%)</title><rect x="32.3446%" y="709" width="0.0151%" height="15" fill="rgb(212,193,33)" fg:x="171653" fg:w="80"/><text x="32.5946%" y="719.50"></text></g><g><title>may_linkat (178 samples, 0.03%)</title><rect x="32.3275%" y="725" width="0.0335%" height="15" fill="rgb(241,51,29)" fg:x="171562" fg:w="178"/><text x="32.5775%" y="735.50"></text></g><g><title>mntput_no_expire (58 samples, 0.01%)</title><rect x="32.3708%" y="725" width="0.0109%" height="15" fill="rgb(211,58,19)" fg:x="171792" fg:w="58"/><text x="32.6208%" y="735.50"></text></g><g><title>apparmor_path_link (171 samples, 0.03%)</title><rect x="32.4000%" y="709" width="0.0322%" height="15" fill="rgb(229,111,26)" fg:x="171947" fg:w="171"/><text x="32.6500%" y="719.50"></text></g><g><title>security_path_link (467 samples, 0.09%)</title><rect x="32.3818%" y="725" width="0.0880%" height="15" fill="rgb(213,115,40)" fg:x="171850" fg:w="467"/><text x="32.6318%" y="735.50"></text></g><g><title>tomoyo_path_link (199 samples, 0.04%)</title><rect x="32.4323%" y="709" width="0.0375%" height="15" fill="rgb(209,56,44)" fg:x="172118" fg:w="199"/><text x="32.6823%" y="719.50"></text></g><g><title>tomoyo_path2_perm (187 samples, 0.04%)</title><rect x="32.4345%" y="693" width="0.0352%" height="15" fill="rgb(230,108,32)" fg:x="172130" fg:w="187"/><text x="32.6845%" y="703.50"></text></g><g><title>tomoyo_init_request_info (98 samples, 0.02%)</title><rect x="32.4513%" y="677" width="0.0185%" height="15" fill="rgb(216,165,31)" fg:x="172219" fg:w="98"/><text x="32.7013%" y="687.50"></text></g><g><title>up_write (84 samples, 0.02%)</title><rect x="32.4698%" y="725" width="0.0158%" height="15" fill="rgb(218,122,21)" fg:x="172317" fg:w="84"/><text x="32.7198%" y="735.50"></text></g><g><title>btrfs_create_pending_block_groups (56 samples, 0.01%)</title><rect x="32.6314%" y="677" width="0.0106%" height="15" fill="rgb(223,224,47)" fg:x="173175" fg:w="56"/><text x="32.8814%" y="687.50"></text></g><g><title>btrfs_put_transaction (71 samples, 0.01%)</title><rect x="32.6420%" y="677" width="0.0134%" height="15" fill="rgb(238,102,44)" fg:x="173231" fg:w="71"/><text x="32.8920%" y="687.50"></text></g><g><title>_raw_spin_lock (142 samples, 0.03%)</title><rect x="32.6748%" y="645" width="0.0268%" height="15" fill="rgb(236,46,40)" fg:x="173405" fg:w="142"/><text x="32.9248%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (287 samples, 0.05%)</title><rect x="32.6582%" y="677" width="0.0541%" height="15" fill="rgb(247,202,50)" fg:x="173317" fg:w="287"/><text x="32.9082%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (270 samples, 0.05%)</title><rect x="32.6614%" y="661" width="0.0509%" height="15" fill="rgb(209,99,20)" fg:x="173334" fg:w="270"/><text x="32.9114%" y="671.50"></text></g><g><title>__btrfs_end_transaction (812 samples, 0.15%)</title><rect x="32.5868%" y="693" width="0.1530%" height="15" fill="rgb(252,27,34)" fg:x="172938" fg:w="812"/><text x="32.8368%" y="703.50"></text></g><g><title>kmem_cache_free (146 samples, 0.03%)</title><rect x="32.7123%" y="677" width="0.0275%" height="15" fill="rgb(215,206,23)" fg:x="173604" fg:w="146"/><text x="32.9623%" y="687.50"></text></g><g><title>btrfs_comp_cpu_keys (222 samples, 0.04%)</title><rect x="32.8543%" y="629" width="0.0418%" height="15" fill="rgb(212,135,36)" fg:x="174358" fg:w="222"/><text x="33.1043%" y="639.50"></text></g><g><title>__btrfs_add_delayed_item (580 samples, 0.11%)</title><rect x="32.8151%" y="645" width="0.1093%" height="15" fill="rgb(240,189,1)" fg:x="174150" fg:w="580"/><text x="33.0651%" y="655.50"></text></g><g><title>rb_insert_color (150 samples, 0.03%)</title><rect x="32.8962%" y="629" width="0.0283%" height="15" fill="rgb(242,56,20)" fg:x="174580" fg:w="150"/><text x="33.1462%" y="639.50"></text></g><g><title>mutex_lock (54 samples, 0.01%)</title><rect x="32.9527%" y="629" width="0.0102%" height="15" fill="rgb(247,132,33)" fg:x="174880" fg:w="54"/><text x="33.2027%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (259 samples, 0.05%)</title><rect x="32.9244%" y="645" width="0.0488%" height="15" fill="rgb(208,149,11)" fg:x="174730" fg:w="259"/><text x="33.1744%" y="655.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="32.9629%" y="629" width="0.0104%" height="15" fill="rgb(211,33,11)" fg:x="174934" fg:w="55"/><text x="33.2129%" y="639.50"></text></g><g><title>__slab_alloc (122 samples, 0.02%)</title><rect x="33.0077%" y="629" width="0.0230%" height="15" fill="rgb(221,29,38)" fg:x="175172" fg:w="122"/><text x="33.2577%" y="639.50"></text></g><g><title>___slab_alloc (115 samples, 0.02%)</title><rect x="33.0090%" y="613" width="0.0217%" height="15" fill="rgb(206,182,49)" fg:x="175179" fg:w="115"/><text x="33.2590%" y="623.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="33.0379%" y="629" width="0.0104%" height="15" fill="rgb(216,140,1)" fg:x="175332" fg:w="55"/><text x="33.2879%" y="639.50"></text></g><g><title>__kmalloc (436 samples, 0.08%)</title><rect x="32.9732%" y="645" width="0.0822%" height="15" fill="rgb(232,57,40)" fg:x="174989" fg:w="436"/><text x="33.2232%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (297 samples, 0.06%)</title><rect x="33.0554%" y="645" width="0.0560%" height="15" fill="rgb(224,186,18)" fg:x="175425" fg:w="297"/><text x="33.3054%" y="655.50"></text></g><g><title>mutex_spin_on_owner (294 samples, 0.06%)</title><rect x="33.0560%" y="629" width="0.0554%" height="15" fill="rgb(215,121,11)" fg:x="175428" fg:w="294"/><text x="33.3060%" y="639.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (384 samples, 0.07%)</title><rect x="33.1114%" y="645" width="0.0724%" height="15" fill="rgb(245,147,10)" fg:x="175722" fg:w="384"/><text x="33.3614%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (260 samples, 0.05%)</title><rect x="33.1347%" y="629" width="0.0490%" height="15" fill="rgb(238,153,13)" fg:x="175846" fg:w="260"/><text x="33.3847%" y="639.50"></text></g><g><title>_raw_spin_lock (203 samples, 0.04%)</title><rect x="33.1455%" y="613" width="0.0383%" height="15" fill="rgb(233,108,0)" fg:x="175903" fg:w="203"/><text x="33.3955%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (117 samples, 0.02%)</title><rect x="33.1837%" y="645" width="0.0220%" height="15" fill="rgb(212,157,17)" fg:x="176106" fg:w="117"/><text x="33.4337%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (102 samples, 0.02%)</title><rect x="33.1865%" y="629" width="0.0192%" height="15" fill="rgb(225,213,38)" fg:x="176121" fg:w="102"/><text x="33.4365%" y="639.50"></text></g><g><title>mutex_lock (77 samples, 0.01%)</title><rect x="33.2127%" y="645" width="0.0145%" height="15" fill="rgb(248,16,11)" fg:x="176260" fg:w="77"/><text x="33.4627%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,317 samples, 0.44%)</title><rect x="32.8029%" y="661" width="0.4366%" height="15" fill="rgb(241,33,4)" fg:x="174085" fg:w="2317"/><text x="33.0529%" y="671.50"></text></g><g><title>mutex_unlock (65 samples, 0.01%)</title><rect x="33.2272%" y="645" width="0.0122%" height="15" fill="rgb(222,26,43)" fg:x="176337" fg:w="65"/><text x="33.4772%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (159 samples, 0.03%)</title><rect x="33.2395%" y="661" width="0.0300%" height="15" fill="rgb(243,29,36)" fg:x="176402" fg:w="159"/><text x="33.4895%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (101 samples, 0.02%)</title><rect x="33.2504%" y="645" width="0.0190%" height="15" fill="rgb(241,9,27)" fg:x="176460" fg:w="101"/><text x="33.5004%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (223 samples, 0.04%)</title><rect x="33.2823%" y="645" width="0.0420%" height="15" fill="rgb(205,117,26)" fg:x="176629" fg:w="223"/><text x="33.5323%" y="655.50"></text></g><g><title>_raw_spin_lock (170 samples, 0.03%)</title><rect x="33.2923%" y="629" width="0.0320%" height="15" fill="rgb(209,80,39)" fg:x="176682" fg:w="170"/><text x="33.5423%" y="639.50"></text></g><g><title>btrfs_release_path (470 samples, 0.09%)</title><rect x="33.2695%" y="661" width="0.0886%" height="15" fill="rgb(239,155,6)" fg:x="176561" fg:w="470"/><text x="33.5195%" y="671.50"></text></g><g><title>release_extent_buffer (179 samples, 0.03%)</title><rect x="33.3243%" y="645" width="0.0337%" height="15" fill="rgb(212,104,12)" fg:x="176852" fg:w="179"/><text x="33.5743%" y="655.50"></text></g><g><title>btrfs_set_16 (71 samples, 0.01%)</title><rect x="33.3580%" y="661" width="0.0134%" height="15" fill="rgb(234,204,3)" fg:x="177031" fg:w="71"/><text x="33.6080%" y="671.50"></text></g><g><title>crc32c (130 samples, 0.02%)</title><rect x="33.3831%" y="661" width="0.0245%" height="15" fill="rgb(251,218,7)" fg:x="177164" fg:w="130"/><text x="33.6331%" y="671.50"></text></g><g><title>crypto_shash_update (110 samples, 0.02%)</title><rect x="33.3868%" y="645" width="0.0207%" height="15" fill="rgb(221,81,32)" fg:x="177184" fg:w="110"/><text x="33.6368%" y="655.50"></text></g><g><title>btrfs_get_32 (84 samples, 0.02%)</title><rect x="33.4155%" y="645" width="0.0158%" height="15" fill="rgb(214,152,26)" fg:x="177336" fg:w="84"/><text x="33.6655%" y="655.50"></text></g><g><title>_raw_read_lock (56 samples, 0.01%)</title><rect x="33.4993%" y="581" width="0.0106%" height="15" fill="rgb(223,22,3)" fg:x="177781" fg:w="56"/><text x="33.7493%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (83 samples, 0.02%)</title><rect x="33.4944%" y="597" width="0.0156%" height="15" fill="rgb(207,174,7)" fg:x="177755" fg:w="83"/><text x="33.7444%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (185 samples, 0.03%)</title><rect x="33.4909%" y="613" width="0.0349%" height="15" fill="rgb(224,19,52)" fg:x="177736" fg:w="185"/><text x="33.7409%" y="623.50"></text></g><g><title>btrfs_root_node (83 samples, 0.02%)</title><rect x="33.5101%" y="597" width="0.0156%" height="15" fill="rgb(228,24,14)" fg:x="177838" fg:w="83"/><text x="33.7601%" y="607.50"></text></g><g><title>__btrfs_tree_lock (137 samples, 0.03%)</title><rect x="33.5257%" y="613" width="0.0258%" height="15" fill="rgb(230,153,43)" fg:x="177921" fg:w="137"/><text x="33.7757%" y="623.50"></text></g><g><title>schedule (104 samples, 0.02%)</title><rect x="33.5319%" y="597" width="0.0196%" height="15" fill="rgb(231,106,12)" fg:x="177954" fg:w="104"/><text x="33.7819%" y="607.50"></text></g><g><title>__schedule (103 samples, 0.02%)</title><rect x="33.5321%" y="581" width="0.0194%" height="15" fill="rgb(215,92,2)" fg:x="177955" fg:w="103"/><text x="33.7821%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (187 samples, 0.04%)</title><rect x="33.5564%" y="613" width="0.0352%" height="15" fill="rgb(249,143,25)" fg:x="178084" fg:w="187"/><text x="33.8064%" y="623.50"></text></g><g><title>leaf_space_used (161 samples, 0.03%)</title><rect x="33.5613%" y="597" width="0.0303%" height="15" fill="rgb(252,7,35)" fg:x="178110" fg:w="161"/><text x="33.8113%" y="607.50"></text></g><g><title>btrfs_get_32 (111 samples, 0.02%)</title><rect x="33.5708%" y="581" width="0.0209%" height="15" fill="rgb(216,69,40)" fg:x="178160" fg:w="111"/><text x="33.8208%" y="591.50"></text></g><g><title>_raw_write_lock (106 samples, 0.02%)</title><rect x="33.6005%" y="597" width="0.0200%" height="15" fill="rgb(240,36,33)" fg:x="178318" fg:w="106"/><text x="33.8505%" y="607.50"></text></g><g><title>btrfs_try_tree_write_lock (179 samples, 0.03%)</title><rect x="33.5956%" y="613" width="0.0337%" height="15" fill="rgb(231,128,14)" fg:x="178292" fg:w="179"/><text x="33.8456%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (1,078 samples, 0.20%)</title><rect x="33.6294%" y="613" width="0.2031%" height="15" fill="rgb(245,143,14)" fg:x="178471" fg:w="1078"/><text x="33.8794%" y="623.50"></text></g><g><title>btrfs_buffer_uptodate (70 samples, 0.01%)</title><rect x="33.8560%" y="597" width="0.0132%" height="15" fill="rgb(222,130,28)" fg:x="179674" fg:w="70"/><text x="34.1060%" y="607.50"></text></g><g><title>btrfs_get_64 (126 samples, 0.02%)</title><rect x="33.8692%" y="597" width="0.0237%" height="15" fill="rgb(212,10,48)" fg:x="179744" fg:w="126"/><text x="34.1192%" y="607.50"></text></g><g><title>__radix_tree_lookup (627 samples, 0.12%)</title><rect x="33.9352%" y="581" width="0.1181%" height="15" fill="rgb(254,118,45)" fg:x="180094" fg:w="627"/><text x="34.1852%" y="591.50"></text></g><g><title>check_buffer_tree_ref (57 samples, 0.01%)</title><rect x="34.0633%" y="565" width="0.0107%" height="15" fill="rgb(228,6,45)" fg:x="180774" fg:w="57"/><text x="34.3133%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (315 samples, 0.06%)</title><rect x="34.0533%" y="581" width="0.0594%" height="15" fill="rgb(241,18,35)" fg:x="180721" fg:w="315"/><text x="34.3033%" y="591.50"></text></g><g><title>mark_page_accessed (205 samples, 0.04%)</title><rect x="34.0741%" y="565" width="0.0386%" height="15" fill="rgb(227,214,53)" fg:x="180831" fg:w="205"/><text x="34.3241%" y="575.50"></text></g><g><title>find_extent_buffer (1,138 samples, 0.21%)</title><rect x="33.8999%" y="597" width="0.2144%" height="15" fill="rgb(224,107,51)" fg:x="179907" fg:w="1138"/><text x="34.1499%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (1,664 samples, 0.31%)</title><rect x="33.8325%" y="613" width="0.3135%" height="15" fill="rgb(248,60,28)" fg:x="179549" fg:w="1664"/><text x="34.0825%" y="623.50"></text></g><g><title>read_extent_buffer (168 samples, 0.03%)</title><rect x="34.1144%" y="597" width="0.0317%" height="15" fill="rgb(249,101,23)" fg:x="181045" fg:w="168"/><text x="34.3644%" y="607.50"></text></g><g><title>alloc_extent_buffer (60 samples, 0.01%)</title><rect x="34.1500%" y="565" width="0.0113%" height="15" fill="rgb(228,51,19)" fg:x="181234" fg:w="60"/><text x="34.4000%" y="575.50"></text></g><g><title>alloc_tree_block_no_bg_flush (175 samples, 0.03%)</title><rect x="34.1490%" y="597" width="0.0330%" height="15" fill="rgb(213,20,6)" fg:x="181229" fg:w="175"/><text x="34.3990%" y="607.50"></text></g><g><title>btrfs_alloc_tree_block (174 samples, 0.03%)</title><rect x="34.1492%" y="581" width="0.0328%" height="15" fill="rgb(212,124,10)" fg:x="181230" fg:w="174"/><text x="34.3992%" y="591.50"></text></g><g><title>copy_for_split (144 samples, 0.03%)</title><rect x="34.1843%" y="597" width="0.0271%" height="15" fill="rgb(248,3,40)" fg:x="181416" fg:w="144"/><text x="34.4343%" y="607.50"></text></g><g><title>btrfs_get_token_32 (131 samples, 0.02%)</title><rect x="34.2257%" y="565" width="0.0247%" height="15" fill="rgb(223,178,23)" fg:x="181636" fg:w="131"/><text x="34.4757%" y="575.50"></text></g><g><title>btrfs_set_token_32 (142 samples, 0.03%)</title><rect x="34.2512%" y="565" width="0.0268%" height="15" fill="rgb(240,132,45)" fg:x="181771" fg:w="142"/><text x="34.5012%" y="575.50"></text></g><g><title>memmove_extent_buffer (55 samples, 0.01%)</title><rect x="34.2872%" y="565" width="0.0104%" height="15" fill="rgb(245,164,36)" fg:x="181962" fg:w="55"/><text x="34.5372%" y="575.50"></text></g><g><title>__push_leaf_left (454 samples, 0.09%)</title><rect x="34.2124%" y="581" width="0.0855%" height="15" fill="rgb(231,188,53)" fg:x="181565" fg:w="454"/><text x="34.4624%" y="591.50"></text></g><g><title>push_leaf_left (502 samples, 0.09%)</title><rect x="34.2114%" y="597" width="0.0946%" height="15" fill="rgb(237,198,39)" fg:x="181560" fg:w="502"/><text x="34.4614%" y="607.50"></text></g><g><title>btrfs_get_token_32 (98 samples, 0.02%)</title><rect x="34.3239%" y="565" width="0.0185%" height="15" fill="rgb(223,120,35)" fg:x="182157" fg:w="98"/><text x="34.5739%" y="575.50"></text></g><g><title>btrfs_set_token_32 (111 samples, 0.02%)</title><rect x="34.3433%" y="565" width="0.0209%" height="15" fill="rgb(253,107,49)" fg:x="182260" fg:w="111"/><text x="34.5933%" y="575.50"></text></g><g><title>__push_leaf_right (387 samples, 0.07%)</title><rect x="34.3086%" y="581" width="0.0729%" height="15" fill="rgb(216,44,31)" fg:x="182076" fg:w="387"/><text x="34.5586%" y="591.50"></text></g><g><title>btrfs_read_node_slot (63 samples, 0.01%)</title><rect x="34.3852%" y="581" width="0.0119%" height="15" fill="rgb(253,87,21)" fg:x="182482" fg:w="63"/><text x="34.6352%" y="591.50"></text></g><g><title>read_tree_block (57 samples, 0.01%)</title><rect x="34.3863%" y="565" width="0.0107%" height="15" fill="rgb(226,18,2)" fg:x="182488" fg:w="57"/><text x="34.6363%" y="575.50"></text></g><g><title>split_leaf (1,344 samples, 0.25%)</title><rect x="34.1460%" y="613" width="0.2533%" height="15" fill="rgb(216,8,46)" fg:x="181213" fg:w="1344"/><text x="34.3960%" y="623.50"></text></g><g><title>push_leaf_right (495 samples, 0.09%)</title><rect x="34.3060%" y="597" width="0.0933%" height="15" fill="rgb(226,140,39)" fg:x="182062" fg:w="495"/><text x="34.5560%" y="607.50"></text></g><g><title>btrfs_tree_read_unlock (65 samples, 0.01%)</title><rect x="34.4334%" y="597" width="0.0122%" height="15" fill="rgb(221,194,54)" fg:x="182738" fg:w="65"/><text x="34.6834%" y="607.50"></text></g><g><title>btrfs_search_slot (5,367 samples, 1.01%)</title><rect x="33.4377%" y="629" width="1.0113%" height="15" fill="rgb(213,92,11)" fg:x="177454" fg:w="5367"/><text x="33.6877%" y="639.50"></text></g><g><title>unlock_up (264 samples, 0.05%)</title><rect x="34.3993%" y="613" width="0.0497%" height="15" fill="rgb(229,162,46)" fg:x="182557" fg:w="264"/><text x="34.6493%" y="623.50"></text></g><g><title>btrfs_get_32 (134 samples, 0.03%)</title><rect x="34.6137%" y="613" width="0.0252%" height="15" fill="rgb(214,111,36)" fg:x="183695" fg:w="134"/><text x="34.8637%" y="623.50"></text></g><g><title>btrfs_get_token_32 (3,194 samples, 0.60%)</title><rect x="34.6390%" y="613" width="0.6018%" height="15" fill="rgb(207,6,21)" fg:x="183829" fg:w="3194"/><text x="34.8890%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (669 samples, 0.13%)</title><rect x="35.1148%" y="597" width="0.1261%" height="15" fill="rgb(213,127,38)" fg:x="186354" fg:w="669"/><text x="35.3648%" y="607.50"></text></g><g><title>btrfs_leaf_free_space (268 samples, 0.05%)</title><rect x="35.2408%" y="613" width="0.0505%" height="15" fill="rgb(238,118,32)" fg:x="187023" fg:w="268"/><text x="35.4908%" y="623.50"></text></g><g><title>leaf_space_used (228 samples, 0.04%)</title><rect x="35.2484%" y="597" width="0.0430%" height="15" fill="rgb(240,139,39)" fg:x="187063" fg:w="228"/><text x="35.4984%" y="607.50"></text></g><g><title>btrfs_get_32 (171 samples, 0.03%)</title><rect x="35.2591%" y="581" width="0.0322%" height="15" fill="rgb(235,10,37)" fg:x="187120" fg:w="171"/><text x="35.5091%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (128 samples, 0.02%)</title><rect x="35.2913%" y="613" width="0.0241%" height="15" fill="rgb(249,171,38)" fg:x="187291" fg:w="128"/><text x="35.5413%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (95 samples, 0.02%)</title><rect x="35.2975%" y="597" width="0.0179%" height="15" fill="rgb(242,144,32)" fg:x="187324" fg:w="95"/><text x="35.5475%" y="607.50"></text></g><g><title>btrfs_set_token_32 (2,815 samples, 0.53%)</title><rect x="35.3154%" y="613" width="0.5304%" height="15" fill="rgb(217,117,21)" fg:x="187419" fg:w="2815"/><text x="35.5654%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (531 samples, 0.10%)</title><rect x="35.7458%" y="597" width="0.1001%" height="15" fill="rgb(249,87,1)" fg:x="189703" fg:w="531"/><text x="35.9958%" y="607.50"></text></g><g><title>btrfs_unlock_up_safe (60 samples, 0.01%)</title><rect x="35.8459%" y="613" width="0.0113%" height="15" fill="rgb(248,196,48)" fg:x="190234" fg:w="60"/><text x="36.0959%" y="623.50"></text></g><g><title>copy_pages (134 samples, 0.03%)</title><rect x="35.8690%" y="597" width="0.0252%" height="15" fill="rgb(251,206,33)" fg:x="190357" fg:w="134"/><text x="36.1190%" y="607.50"></text></g><g><title>memcpy_extent_buffer (1,090 samples, 0.21%)</title><rect x="35.8574%" y="613" width="0.2054%" height="15" fill="rgb(232,141,28)" fg:x="190295" fg:w="1090"/><text x="36.1074%" y="623.50"></text></g><g><title>memmove (894 samples, 0.17%)</title><rect x="35.8943%" y="597" width="0.1685%" height="15" fill="rgb(209,167,14)" fg:x="190491" fg:w="894"/><text x="36.1443%" y="607.50"></text></g><g><title>copy_pages (119 samples, 0.02%)</title><rect x="36.0825%" y="597" width="0.0224%" height="15" fill="rgb(225,11,50)" fg:x="191490" fg:w="119"/><text x="36.3325%" y="607.50"></text></g><g><title>memmove_extent_buffer (903 samples, 0.17%)</title><rect x="36.0627%" y="613" width="0.1702%" height="15" fill="rgb(209,50,20)" fg:x="191385" fg:w="903"/><text x="36.3127%" y="623.50"></text></g><g><title>memmove (679 samples, 0.13%)</title><rect x="36.1050%" y="597" width="0.1279%" height="15" fill="rgb(212,17,46)" fg:x="191609" fg:w="679"/><text x="36.3550%" y="607.50"></text></g><g><title>insert_with_overflow (15,098 samples, 2.84%)</title><rect x="33.4076%" y="661" width="2.8449%" height="15" fill="rgb(216,101,39)" fg:x="177294" fg:w="15098"/><text x="33.6576%" y="671.50">in..</text></g><g><title>btrfs_insert_empty_items (14,972 samples, 2.82%)</title><rect x="33.4313%" y="645" width="2.8212%" height="15" fill="rgb(212,228,48)" fg:x="177420" fg:w="14972"/><text x="33.6813%" y="655.50">bt..</text></g><g><title>setup_items_for_insert (9,571 samples, 1.80%)</title><rect x="34.4490%" y="629" width="1.8035%" height="15" fill="rgb(250,6,50)" fg:x="182821" fg:w="9571"/><text x="34.6990%" y="639.50">s..</text></g><g><title>write_extent_buffer (104 samples, 0.02%)</title><rect x="36.2329%" y="613" width="0.0196%" height="15" fill="rgb(250,160,48)" fg:x="192288" fg:w="104"/><text x="36.4829%" y="623.50"></text></g><g><title>memset_erms (64 samples, 0.01%)</title><rect x="36.2672%" y="645" width="0.0121%" height="15" fill="rgb(244,216,33)" fg:x="192470" fg:w="64"/><text x="36.5172%" y="655.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.03%)</title><rect x="36.2525%" y="661" width="0.0318%" height="15" fill="rgb(207,157,5)" fg:x="192392" fg:w="169"/><text x="36.5025%" y="671.50"></text></g><g><title>kmem_cache_free (101 samples, 0.02%)</title><rect x="36.2843%" y="661" width="0.0190%" height="15" fill="rgb(228,199,8)" fg:x="192561" fg:w="101"/><text x="36.5343%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (18,983 samples, 3.58%)</title><rect x="32.7773%" y="677" width="3.5770%" height="15" fill="rgb(227,80,20)" fg:x="173949" fg:w="18983"/><text x="33.0273%" y="687.50">btrf..</text></g><g><title>write_extent_buffer (270 samples, 0.05%)</title><rect x="36.3034%" y="661" width="0.0509%" height="15" fill="rgb(222,9,33)" fg:x="192662" fg:w="270"/><text x="36.5534%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (223 samples, 0.04%)</title><rect x="36.3744%" y="629" width="0.0420%" height="15" fill="rgb(239,44,28)" fg:x="193039" fg:w="223"/><text x="36.6244%" y="639.50"></text></g><g><title>_raw_spin_lock (170 samples, 0.03%)</title><rect x="36.3844%" y="613" width="0.0320%" height="15" fill="rgb(249,187,43)" fg:x="193092" fg:w="170"/><text x="36.6344%" y="623.50"></text></g><g><title>btrfs_free_path (457 samples, 0.09%)</title><rect x="36.3654%" y="661" width="0.0861%" height="15" fill="rgb(216,141,28)" fg:x="192991" fg:w="457"/><text x="36.6154%" y="671.50"></text></g><g><title>btrfs_release_path (450 samples, 0.08%)</title><rect x="36.3667%" y="645" width="0.0848%" height="15" fill="rgb(230,154,53)" fg:x="192998" fg:w="450"/><text x="36.6167%" y="655.50"></text></g><g><title>release_extent_buffer (186 samples, 0.04%)</title><rect x="36.4164%" y="629" width="0.0350%" height="15" fill="rgb(227,82,4)" fg:x="193262" fg:w="186"/><text x="36.6664%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (73 samples, 0.01%)</title><rect x="36.5291%" y="613" width="0.0138%" height="15" fill="rgb(220,107,16)" fg:x="193860" fg:w="73"/><text x="36.7791%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (222 samples, 0.04%)</title><rect x="36.5255%" y="629" width="0.0418%" height="15" fill="rgb(207,187,2)" fg:x="193841" fg:w="222"/><text x="36.7755%" y="639.50"></text></g><g><title>btrfs_root_node (130 samples, 0.02%)</title><rect x="36.5429%" y="613" width="0.0245%" height="15" fill="rgb(210,162,52)" fg:x="193933" fg:w="130"/><text x="36.7929%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (192 samples, 0.04%)</title><rect x="36.5806%" y="629" width="0.0362%" height="15" fill="rgb(217,216,49)" fg:x="194133" fg:w="192"/><text x="36.8306%" y="639.50"></text></g><g><title>leaf_space_used (162 samples, 0.03%)</title><rect x="36.5862%" y="613" width="0.0305%" height="15" fill="rgb(218,146,49)" fg:x="194163" fg:w="162"/><text x="36.8362%" y="623.50"></text></g><g><title>btrfs_get_32 (118 samples, 0.02%)</title><rect x="36.5945%" y="597" width="0.0222%" height="15" fill="rgb(216,55,40)" fg:x="194207" fg:w="118"/><text x="36.8445%" y="607.50"></text></g><g><title>_raw_write_lock (108 samples, 0.02%)</title><rect x="36.6263%" y="613" width="0.0204%" height="15" fill="rgb(208,196,21)" fg:x="194376" fg:w="108"/><text x="36.8763%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (171 samples, 0.03%)</title><rect x="36.6171%" y="629" width="0.0322%" height="15" fill="rgb(242,117,42)" fg:x="194327" fg:w="171"/><text x="36.8671%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,460 samples, 0.28%)</title><rect x="36.6493%" y="629" width="0.2751%" height="15" fill="rgb(210,11,23)" fg:x="194498" fg:w="1460"/><text x="36.8993%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (183 samples, 0.03%)</title><rect x="36.9523%" y="613" width="0.0345%" height="15" fill="rgb(217,110,2)" fg:x="196106" fg:w="183"/><text x="37.2023%" y="623.50"></text></g><g><title>verify_parent_transid (145 samples, 0.03%)</title><rect x="36.9595%" y="597" width="0.0273%" height="15" fill="rgb(229,77,54)" fg:x="196144" fg:w="145"/><text x="37.2095%" y="607.50"></text></g><g><title>btrfs_get_64 (150 samples, 0.03%)</title><rect x="36.9868%" y="613" width="0.0283%" height="15" fill="rgb(218,53,16)" fg:x="196289" fg:w="150"/><text x="37.2368%" y="623.50"></text></g><g><title>__radix_tree_lookup (912 samples, 0.17%)</title><rect x="37.0822%" y="597" width="0.1718%" height="15" fill="rgb(215,38,13)" fg:x="196795" fg:w="912"/><text x="37.3322%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (335 samples, 0.06%)</title><rect x="37.2544%" y="597" width="0.0631%" height="15" fill="rgb(235,42,18)" fg:x="197709" fg:w="335"/><text x="37.5044%" y="607.50"></text></g><g><title>mark_page_accessed (247 samples, 0.05%)</title><rect x="37.2710%" y="581" width="0.0465%" height="15" fill="rgb(219,66,54)" fg:x="197797" fg:w="247"/><text x="37.5210%" y="591.50"></text></g><g><title>find_extent_buffer (1,566 samples, 0.30%)</title><rect x="37.0239%" y="613" width="0.2951%" height="15" fill="rgb(222,205,4)" fg:x="196486" fg:w="1566"/><text x="37.2739%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (2,276 samples, 0.43%)</title><rect x="36.9244%" y="629" width="0.4289%" height="15" fill="rgb(227,213,46)" fg:x="195958" fg:w="2276"/><text x="37.1744%" y="639.50"></text></g><g><title>read_extent_buffer (182 samples, 0.03%)</title><rect x="37.3190%" y="613" width="0.0343%" height="15" fill="rgb(250,145,42)" fg:x="198052" fg:w="182"/><text x="37.5690%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (70 samples, 0.01%)</title><rect x="37.3914%" y="613" width="0.0132%" height="15" fill="rgb(219,15,2)" fg:x="198436" fg:w="70"/><text x="37.6414%" y="623.50"></text></g><g><title>btrfs_search_slot (5,028 samples, 0.95%)</title><rect x="36.4603%" y="645" width="0.9474%" height="15" fill="rgb(231,181,52)" fg:x="193495" fg:w="5028"/><text x="36.7103%" y="655.50"></text></g><g><title>unlock_up (289 samples, 0.05%)</title><rect x="37.3533%" y="629" width="0.0545%" height="15" fill="rgb(235,1,42)" fg:x="198234" fg:w="289"/><text x="37.6033%" y="639.50"></text></g><g><title>btrfs_get_32 (114 samples, 0.02%)</title><rect x="37.5057%" y="629" width="0.0215%" height="15" fill="rgb(249,88,27)" fg:x="199043" fg:w="114"/><text x="37.7557%" y="639.50"></text></g><g><title>btrfs_get_token_32 (1,323 samples, 0.25%)</title><rect x="37.5272%" y="629" width="0.2493%" height="15" fill="rgb(235,145,16)" fg:x="199157" fg:w="1323"/><text x="37.7772%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (253 samples, 0.05%)</title><rect x="37.7288%" y="613" width="0.0477%" height="15" fill="rgb(237,114,19)" fg:x="200227" fg:w="253"/><text x="37.9788%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (265 samples, 0.05%)</title><rect x="37.7765%" y="629" width="0.0499%" height="15" fill="rgb(238,51,50)" fg:x="200480" fg:w="265"/><text x="38.0265%" y="639.50"></text></g><g><title>leaf_space_used (233 samples, 0.04%)</title><rect x="37.7826%" y="613" width="0.0439%" height="15" fill="rgb(205,194,25)" fg:x="200512" fg:w="233"/><text x="38.0326%" y="623.50"></text></g><g><title>btrfs_get_32 (161 samples, 0.03%)</title><rect x="37.7961%" y="597" width="0.0303%" height="15" fill="rgb(215,203,17)" fg:x="200584" fg:w="161"/><text x="38.0461%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (257 samples, 0.05%)</title><rect x="37.8265%" y="629" width="0.0484%" height="15" fill="rgb(233,112,49)" fg:x="200745" fg:w="257"/><text x="38.0765%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (103 samples, 0.02%)</title><rect x="37.8555%" y="613" width="0.0194%" height="15" fill="rgb(241,130,26)" fg:x="200899" fg:w="103"/><text x="38.1055%" y="623.50"></text></g><g><title>btrfs_set_token_32 (1,262 samples, 0.24%)</title><rect x="37.8749%" y="629" width="0.2378%" height="15" fill="rgb(252,223,19)" fg:x="201002" fg:w="1262"/><text x="38.1249%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (258 samples, 0.05%)</title><rect x="38.0641%" y="613" width="0.0486%" height="15" fill="rgb(211,95,25)" fg:x="202006" fg:w="258"/><text x="38.3141%" y="623.50"></text></g><g><title>copy_pages (140 samples, 0.03%)</title><rect x="38.1362%" y="613" width="0.0264%" height="15" fill="rgb(251,182,27)" fg:x="202389" fg:w="140"/><text x="38.3862%" y="623.50"></text></g><g><title>memcpy_extent_buffer (1,599 samples, 0.30%)</title><rect x="38.1215%" y="629" width="0.3013%" height="15" fill="rgb(238,24,4)" fg:x="202311" fg:w="1599"/><text x="38.3715%" y="639.50"></text></g><g><title>memmove (1,381 samples, 0.26%)</title><rect x="38.1626%" y="613" width="0.2602%" height="15" fill="rgb(224,220,25)" fg:x="202529" fg:w="1381"/><text x="38.4126%" y="623.50"></text></g><g><title>copy_pages (111 samples, 0.02%)</title><rect x="38.4358%" y="613" width="0.0209%" height="15" fill="rgb(239,133,26)" fg:x="203979" fg:w="111"/><text x="38.6858%" y="623.50"></text></g><g><title>memmove_extent_buffer (551 samples, 0.10%)</title><rect x="38.4228%" y="629" width="0.1038%" height="15" fill="rgb(211,94,48)" fg:x="203910" fg:w="551"/><text x="38.6728%" y="639.50"></text></g><g><title>memmove (371 samples, 0.07%)</title><rect x="38.4568%" y="613" width="0.0699%" height="15" fill="rgb(239,87,6)" fg:x="204090" fg:w="371"/><text x="38.7068%" y="623.50"></text></g><g><title>btrfs_insert_empty_items (11,125 samples, 2.10%)</title><rect x="36.4556%" y="661" width="2.0963%" height="15" fill="rgb(227,62,0)" fg:x="193470" fg:w="11125"/><text x="36.7056%" y="671.50">b..</text></g><g><title>setup_items_for_insert (6,072 samples, 1.14%)</title><rect x="37.4078%" y="645" width="1.1441%" height="15" fill="rgb(211,226,4)" fg:x="198523" fg:w="6072"/><text x="37.6578%" y="655.50"></text></g><g><title>write_extent_buffer (134 samples, 0.03%)</title><rect x="38.5267%" y="629" width="0.0252%" height="15" fill="rgb(253,38,52)" fg:x="204461" fg:w="134"/><text x="38.7767%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (170 samples, 0.03%)</title><rect x="38.5519%" y="661" width="0.0320%" height="15" fill="rgb(229,126,40)" fg:x="204595" fg:w="170"/><text x="38.8019%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (92 samples, 0.02%)</title><rect x="38.5666%" y="645" width="0.0173%" height="15" fill="rgb(229,165,44)" fg:x="204673" fg:w="92"/><text x="38.8166%" y="655.50"></text></g><g><title>btrfs_set_16 (66 samples, 0.01%)</title><rect x="38.5839%" y="661" width="0.0124%" height="15" fill="rgb(247,95,47)" fg:x="204765" fg:w="66"/><text x="38.8339%" y="671.50"></text></g><g><title>btrfs_set_64 (62 samples, 0.01%)</title><rect x="38.5964%" y="661" width="0.0117%" height="15" fill="rgb(216,140,30)" fg:x="204831" fg:w="62"/><text x="38.8464%" y="671.50"></text></g><g><title>memset_erms (58 samples, 0.01%)</title><rect x="38.6280%" y="645" width="0.0109%" height="15" fill="rgb(246,214,8)" fg:x="204999" fg:w="58"/><text x="38.8780%" y="655.50"></text></g><g><title>kmem_cache_alloc (199 samples, 0.04%)</title><rect x="38.6081%" y="661" width="0.0375%" height="15" fill="rgb(227,224,15)" fg:x="204893" fg:w="199"/><text x="38.8581%" y="671.50"></text></g><g><title>kmem_cache_free (111 samples, 0.02%)</title><rect x="38.6456%" y="661" width="0.0209%" height="15" fill="rgb(233,175,4)" fg:x="205092" fg:w="111"/><text x="38.8956%" y="671.50"></text></g><g><title>btrfs_insert_inode_ref (12,434 samples, 2.34%)</title><rect x="36.3542%" y="677" width="2.3429%" height="15" fill="rgb(221,66,45)" fg:x="192932" fg:w="12434"/><text x="36.6042%" y="687.50">b..</text></g><g><title>write_extent_buffer (163 samples, 0.03%)</title><rect x="38.6665%" y="661" width="0.0307%" height="15" fill="rgb(221,178,18)" fg:x="205203" fg:w="163"/><text x="38.9165%" y="671.50"></text></g><g><title>mutex_lock (65 samples, 0.01%)</title><rect x="38.7458%" y="629" width="0.0122%" height="15" fill="rgb(213,81,29)" fg:x="205624" fg:w="65"/><text x="38.9958%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (246 samples, 0.05%)</title><rect x="38.7204%" y="645" width="0.0464%" height="15" fill="rgb(220,89,49)" fg:x="205489" fg:w="246"/><text x="38.9704%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (115 samples, 0.02%)</title><rect x="38.7728%" y="645" width="0.0217%" height="15" fill="rgb(227,60,33)" fg:x="205767" fg:w="115"/><text x="39.0228%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (92 samples, 0.02%)</title><rect x="38.7771%" y="629" width="0.0173%" height="15" fill="rgb(205,113,12)" fg:x="205790" fg:w="92"/><text x="39.0271%" y="639.50"></text></g><g><title>inode_get_bytes (66 samples, 0.01%)</title><rect x="38.8055%" y="629" width="0.0124%" height="15" fill="rgb(211,32,1)" fg:x="205941" fg:w="66"/><text x="39.0555%" y="639.50"></text></g><g><title>fill_stack_inode_item (155 samples, 0.03%)</title><rect x="38.7944%" y="645" width="0.0292%" height="15" fill="rgb(246,2,12)" fg:x="205882" fg:w="155"/><text x="39.0444%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (699 samples, 0.13%)</title><rect x="38.7134%" y="661" width="0.1317%" height="15" fill="rgb(243,37,27)" fg:x="205452" fg:w="699"/><text x="38.9634%" y="671.50"></text></g><g><title>mutex_unlock (64 samples, 0.01%)</title><rect x="38.8331%" y="645" width="0.0121%" height="15" fill="rgb(248,211,31)" fg:x="206087" fg:w="64"/><text x="39.0831%" y="655.50"></text></g><g><title>_raw_spin_lock (81 samples, 0.02%)</title><rect x="38.8500%" y="645" width="0.0153%" height="15" fill="rgb(242,146,47)" fg:x="206177" fg:w="81"/><text x="39.1000%" y="655.50"></text></g><g><title>btrfs_update_inode (1,049 samples, 0.20%)</title><rect x="38.6972%" y="677" width="0.1977%" height="15" fill="rgb(206,70,20)" fg:x="205366" fg:w="1049"/><text x="38.9472%" y="687.50"></text></g><g><title>btrfs_update_root_times (264 samples, 0.05%)</title><rect x="38.8451%" y="661" width="0.0497%" height="15" fill="rgb(215,10,51)" fg:x="206151" fg:w="264"/><text x="39.0951%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (157 samples, 0.03%)</title><rect x="38.8653%" y="645" width="0.0296%" height="15" fill="rgb(243,178,53)" fg:x="206258" fg:w="157"/><text x="39.1153%" y="655.50"></text></g><g><title>read_tsc (83 samples, 0.02%)</title><rect x="38.8792%" y="629" width="0.0156%" height="15" fill="rgb(233,221,20)" fg:x="206332" fg:w="83"/><text x="39.1292%" y="639.50"></text></g><g><title>btrfs_add_link (32,736 samples, 6.17%)</title><rect x="32.7398%" y="693" width="6.1685%" height="15" fill="rgb(218,95,35)" fg:x="173750" fg:w="32736"/><text x="32.9898%" y="703.50">btrfs_ad..</text></g><g><title>btrfs_balance_delayed_items (62 samples, 0.01%)</title><rect x="38.9150%" y="677" width="0.0117%" height="15" fill="rgb(229,13,5)" fg:x="206522" fg:w="62"/><text x="39.1650%" y="687.50"></text></g><g><title>enqueue_task_fair (77 samples, 0.01%)</title><rect x="38.9520%" y="613" width="0.0145%" height="15" fill="rgb(252,164,30)" fg:x="206718" fg:w="77"/><text x="39.2020%" y="623.50"></text></g><g><title>enqueue_entity (62 samples, 0.01%)</title><rect x="38.9548%" y="597" width="0.0117%" height="15" fill="rgb(232,68,36)" fg:x="206733" fg:w="62"/><text x="39.2048%" y="607.50"></text></g><g><title>ttwu_do_activate (136 samples, 0.03%)</title><rect x="38.9499%" y="629" width="0.0256%" height="15" fill="rgb(219,59,54)" fg:x="206707" fg:w="136"/><text x="39.1999%" y="639.50"></text></g><g><title>btrfs_btree_balance_dirty (379 samples, 0.07%)</title><rect x="38.9082%" y="693" width="0.0714%" height="15" fill="rgb(250,92,33)" fg:x="206486" fg:w="379"/><text x="39.1582%" y="703.50"></text></g><g><title>queue_work_on (264 samples, 0.05%)</title><rect x="38.9299%" y="677" width="0.0497%" height="15" fill="rgb(229,162,54)" fg:x="206601" fg:w="264"/><text x="39.1799%" y="687.50"></text></g><g><title>__queue_work (254 samples, 0.05%)</title><rect x="38.9318%" y="661" width="0.0479%" height="15" fill="rgb(244,114,52)" fg:x="206611" fg:w="254"/><text x="39.1818%" y="671.50"></text></g><g><title>try_to_wake_up (216 samples, 0.04%)</title><rect x="38.9389%" y="645" width="0.0407%" height="15" fill="rgb(212,211,43)" fg:x="206649" fg:w="216"/><text x="39.1889%" y="655.50"></text></g><g><title>btrfs_iget (72 samples, 0.01%)</title><rect x="39.0021%" y="661" width="0.0136%" height="15" fill="rgb(226,147,8)" fg:x="206984" fg:w="72"/><text x="39.2521%" y="671.50"></text></g><g><title>iget5_locked (70 samples, 0.01%)</title><rect x="39.0024%" y="645" width="0.0132%" height="15" fill="rgb(226,23,13)" fg:x="206986" fg:w="70"/><text x="39.2524%" y="655.50"></text></g><g><title>ilookup5 (68 samples, 0.01%)</title><rect x="39.0028%" y="629" width="0.0128%" height="15" fill="rgb(240,63,4)" fg:x="206988" fg:w="68"/><text x="39.2528%" y="639.50"></text></g><g><title>ilookup5_nowait (56 samples, 0.01%)</title><rect x="39.0051%" y="613" width="0.0106%" height="15" fill="rgb(221,1,32)" fg:x="207000" fg:w="56"/><text x="39.2551%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (97 samples, 0.02%)</title><rect x="39.0349%" y="597" width="0.0183%" height="15" fill="rgb(242,117,10)" fg:x="207158" fg:w="97"/><text x="39.2849%" y="607.50"></text></g><g><title>btrfs_search_slot (179 samples, 0.03%)</title><rect x="39.0209%" y="613" width="0.0337%" height="15" fill="rgb(249,172,44)" fg:x="207084" fg:w="179"/><text x="39.2709%" y="623.50"></text></g><g><title>btrfs_lookup_dir_item (183 samples, 0.03%)</title><rect x="39.0209%" y="629" width="0.0345%" height="15" fill="rgb(244,46,45)" fg:x="207084" fg:w="183"/><text x="39.2709%" y="639.50"></text></g><g><title>btrfs_check_ref_name_override (280 samples, 0.05%)</title><rect x="39.0188%" y="645" width="0.0528%" height="15" fill="rgb(206,43,17)" fg:x="207073" fg:w="280"/><text x="39.2688%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (82 samples, 0.02%)</title><rect x="39.0936%" y="613" width="0.0155%" height="15" fill="rgb(239,218,39)" fg:x="207470" fg:w="82"/><text x="39.3436%" y="623.50"></text></g><g><title>btrfs_insert_delayed_items (95 samples, 0.02%)</title><rect x="39.0929%" y="629" width="0.0179%" height="15" fill="rgb(208,169,54)" fg:x="207466" fg:w="95"/><text x="39.3429%" y="639.50"></text></g><g><title>btrfs_commit_inode_delayed_items (160 samples, 0.03%)</title><rect x="39.0816%" y="645" width="0.0301%" height="15" fill="rgb(247,25,42)" fg:x="207406" fg:w="160"/><text x="39.3316%" y="655.50"></text></g><g><title>alloc_extent_buffer (74 samples, 0.01%)</title><rect x="39.1425%" y="597" width="0.0139%" height="15" fill="rgb(226,23,31)" fg:x="207729" fg:w="74"/><text x="39.3925%" y="607.50"></text></g><g><title>find_extent_buffer (70 samples, 0.01%)</title><rect x="39.1432%" y="581" width="0.0132%" height="15" fill="rgb(247,16,28)" fg:x="207733" fg:w="70"/><text x="39.3932%" y="591.50"></text></g><g><title>btrfs_read_node_slot (125 samples, 0.02%)</title><rect x="39.1364%" y="629" width="0.0236%" height="15" fill="rgb(231,147,38)" fg:x="207697" fg:w="125"/><text x="39.3864%" y="639.50"></text></g><g><title>read_tree_block (96 samples, 0.02%)</title><rect x="39.1419%" y="613" width="0.0181%" height="15" fill="rgb(253,81,48)" fg:x="207726" fg:w="96"/><text x="39.3919%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (86 samples, 0.02%)</title><rect x="39.1662%" y="629" width="0.0162%" height="15" fill="rgb(249,222,43)" fg:x="207855" fg:w="86"/><text x="39.4162%" y="639.50"></text></g><g><title>btrfs_search_forward (323 samples, 0.06%)</title><rect x="39.1270%" y="645" width="0.0609%" height="15" fill="rgb(221,3,27)" fg:x="207647" fg:w="323"/><text x="39.3770%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (55 samples, 0.01%)</title><rect x="39.2252%" y="597" width="0.0104%" height="15" fill="rgb(228,180,5)" fg:x="208168" fg:w="55"/><text x="39.4752%" y="607.50"></text></g><g><title>btrfs_search_slot (241 samples, 0.05%)</title><rect x="39.1994%" y="613" width="0.0454%" height="15" fill="rgb(227,131,42)" fg:x="208031" fg:w="241"/><text x="39.4494%" y="623.50"></text></g><g><title>btrfs_get_token_32 (96 samples, 0.02%)</title><rect x="39.2540%" y="597" width="0.0181%" height="15" fill="rgb(212,3,39)" fg:x="208321" fg:w="96"/><text x="39.5040%" y="607.50"></text></g><g><title>btrfs_set_token_32 (127 samples, 0.02%)</title><rect x="39.2766%" y="597" width="0.0239%" height="15" fill="rgb(226,45,5)" fg:x="208441" fg:w="127"/><text x="39.5266%" y="607.50"></text></g><g><title>memcpy_extent_buffer (65 samples, 0.01%)</title><rect x="39.3009%" y="597" width="0.0122%" height="15" fill="rgb(215,167,45)" fg:x="208570" fg:w="65"/><text x="39.5509%" y="607.50"></text></g><g><title>btrfs_insert_empty_items (662 samples, 0.12%)</title><rect x="39.1988%" y="629" width="0.1247%" height="15" fill="rgb(250,218,53)" fg:x="208028" fg:w="662"/><text x="39.4488%" y="639.50"></text></g><g><title>setup_items_for_insert (418 samples, 0.08%)</title><rect x="39.2448%" y="613" width="0.0788%" height="15" fill="rgb(207,140,0)" fg:x="208272" fg:w="418"/><text x="39.4948%" y="623.50"></text></g><g><title>fill_inode_item (60 samples, 0.01%)</title><rect x="39.3333%" y="629" width="0.0113%" height="15" fill="rgb(238,133,51)" fg:x="208742" fg:w="60"/><text x="39.5833%" y="639.50"></text></g><g><title>copy_items.isra.0 (840 samples, 0.16%)</title><rect x="39.1916%" y="645" width="0.1583%" height="15" fill="rgb(218,203,53)" fg:x="207990" fg:w="840"/><text x="39.4416%" y="655.50"></text></g><g><title>btrfs_get_token_32 (100 samples, 0.02%)</title><rect x="39.3599%" y="613" width="0.0188%" height="15" fill="rgb(226,184,25)" fg:x="208883" fg:w="100"/><text x="39.6099%" y="623.50"></text></g><g><title>btrfs_set_token_32 (102 samples, 0.02%)</title><rect x="39.3806%" y="613" width="0.0192%" height="15" fill="rgb(231,121,21)" fg:x="208993" fg:w="102"/><text x="39.6306%" y="623.50"></text></g><g><title>btrfs_del_items (365 samples, 0.07%)</title><rect x="39.3510%" y="629" width="0.0688%" height="15" fill="rgb(251,14,34)" fg:x="208836" fg:w="365"/><text x="39.6010%" y="639.50"></text></g><g><title>memmove_extent_buffer (88 samples, 0.02%)</title><rect x="39.4032%" y="613" width="0.0166%" height="15" fill="rgb(249,193,11)" fg:x="209113" fg:w="88"/><text x="39.6532%" y="623.50"></text></g><g><title>memmove (74 samples, 0.01%)</title><rect x="39.4059%" y="597" width="0.0139%" height="15" fill="rgb(220,172,37)" fg:x="209127" fg:w="74"/><text x="39.6559%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (65 samples, 0.01%)</title><rect x="39.4390%" y="613" width="0.0122%" height="15" fill="rgb(231,229,43)" fg:x="209303" fg:w="65"/><text x="39.6890%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (55 samples, 0.01%)</title><rect x="39.4513%" y="613" width="0.0104%" height="15" fill="rgb(250,161,5)" fg:x="209368" fg:w="55"/><text x="39.7013%" y="623.50"></text></g><g><title>btrfs_search_slot (198 samples, 0.04%)</title><rect x="39.4262%" y="629" width="0.0373%" height="15" fill="rgb(218,225,18)" fg:x="209235" fg:w="198"/><text x="39.6762%" y="639.50"></text></g><g><title>drop_objectid_items (632 samples, 0.12%)</title><rect x="39.3499%" y="645" width="0.1191%" height="15" fill="rgb(245,45,42)" fg:x="208830" fg:w="632"/><text x="39.5999%" y="655.50"></text></g><g><title>btrfs_search_forward (87 samples, 0.02%)</title><rect x="39.4995%" y="613" width="0.0164%" height="15" fill="rgb(211,115,1)" fg:x="209624" fg:w="87"/><text x="39.7495%" y="623.50"></text></g><g><title>btrfs_get_token_32 (60 samples, 0.01%)</title><rect x="39.5350%" y="565" width="0.0113%" height="15" fill="rgb(248,133,52)" fg:x="209812" fg:w="60"/><text x="39.7850%" y="575.50"></text></g><g><title>btrfs_set_token_32 (61 samples, 0.01%)</title><rect x="39.5470%" y="565" width="0.0115%" height="15" fill="rgb(238,100,21)" fg:x="209876" fg:w="61"/><text x="39.7970%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (223 samples, 0.04%)</title><rect x="39.5259%" y="597" width="0.0420%" height="15" fill="rgb(247,144,11)" fg:x="209764" fg:w="223"/><text x="39.7759%" y="607.50"></text></g><g><title>setup_items_for_insert (192 samples, 0.04%)</title><rect x="39.5318%" y="581" width="0.0362%" height="15" fill="rgb(206,164,16)" fg:x="209795" fg:w="192"/><text x="39.7818%" y="591.50"></text></g><g><title>insert_dir_log_key (229 samples, 0.04%)</title><rect x="39.5259%" y="613" width="0.0432%" height="15" fill="rgb(222,34,3)" fg:x="209764" fg:w="229"/><text x="39.7759%" y="623.50"></text></g><g><title>memset_erms (73 samples, 0.01%)</title><rect x="39.6241%" y="581" width="0.0138%" height="15" fill="rgb(248,82,4)" fg:x="210285" fg:w="73"/><text x="39.8741%" y="591.50"></text></g><g><title>__kmalloc (326 samples, 0.06%)</title><rect x="39.5862%" y="597" width="0.0614%" height="15" fill="rgb(228,81,46)" fg:x="210084" fg:w="326"/><text x="39.8362%" y="607.50"></text></g><g><title>btrfs_get_32 (78 samples, 0.01%)</title><rect x="39.6476%" y="597" width="0.0147%" height="15" fill="rgb(227,67,47)" fg:x="210410" fg:w="78"/><text x="39.8976%" y="607.50"></text></g><g><title>btrfs_insert_empty_items (133 samples, 0.03%)</title><rect x="39.6623%" y="597" width="0.0251%" height="15" fill="rgb(215,93,53)" fg:x="210488" fg:w="133"/><text x="39.9123%" y="607.50"></text></g><g><title>setup_items_for_insert (111 samples, 0.02%)</title><rect x="39.6665%" y="581" width="0.0209%" height="15" fill="rgb(248,194,39)" fg:x="210510" fg:w="111"/><text x="39.9165%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (80 samples, 0.02%)</title><rect x="39.6983%" y="581" width="0.0151%" height="15" fill="rgb(215,5,19)" fg:x="210679" fg:w="80"/><text x="39.9483%" y="591.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="39.7010%" y="565" width="0.0124%" height="15" fill="rgb(226,215,51)" fg:x="210693" fg:w="66"/><text x="39.9510%" y="575.50"></text></g><g><title>btrfs_release_path (218 samples, 0.04%)</title><rect x="39.6876%" y="597" width="0.0411%" height="15" fill="rgb(225,56,26)" fg:x="210622" fg:w="218"/><text x="39.9376%" y="607.50"></text></g><g><title>release_extent_buffer (81 samples, 0.02%)</title><rect x="39.7134%" y="581" width="0.0153%" height="15" fill="rgb(222,75,29)" fg:x="210759" fg:w="81"/><text x="39.9634%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (92 samples, 0.02%)</title><rect x="39.7488%" y="581" width="0.0173%" height="15" fill="rgb(236,139,6)" fg:x="210947" fg:w="92"/><text x="39.9988%" y="591.50"></text></g><g><title>btrfs_set_path_blocking (101 samples, 0.02%)</title><rect x="39.7667%" y="581" width="0.0190%" height="15" fill="rgb(223,137,36)" fg:x="211042" fg:w="101"/><text x="40.0167%" y="591.50"></text></g><g><title>btrfs_set_lock_blocking_read (65 samples, 0.01%)</title><rect x="39.7735%" y="565" width="0.0122%" height="15" fill="rgb(226,99,2)" fg:x="211078" fg:w="65"/><text x="40.0235%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (331 samples, 0.06%)</title><rect x="39.8003%" y="581" width="0.0624%" height="15" fill="rgb(206,133,23)" fg:x="211220" fg:w="331"/><text x="40.0503%" y="591.50"></text></g><g><title>__radix_tree_lookup (105 samples, 0.02%)</title><rect x="39.8907%" y="549" width="0.0198%" height="15" fill="rgb(243,173,15)" fg:x="211700" fg:w="105"/><text x="40.1407%" y="559.50"></text></g><g><title>mark_extent_buffer_accessed (79 samples, 0.01%)</title><rect x="39.9105%" y="549" width="0.0149%" height="15" fill="rgb(228,69,28)" fg:x="211805" fg:w="79"/><text x="40.1605%" y="559.50"></text></g><g><title>find_extent_buffer (225 samples, 0.04%)</title><rect x="39.8834%" y="565" width="0.0424%" height="15" fill="rgb(212,51,22)" fg:x="211661" fg:w="225"/><text x="40.1334%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (387 samples, 0.07%)</title><rect x="39.8626%" y="581" width="0.0729%" height="15" fill="rgb(227,113,0)" fg:x="211551" fg:w="387"/><text x="40.1126%" y="591.50"></text></g><g><title>btrfs_search_slot (1,145 samples, 0.22%)</title><rect x="39.7287%" y="597" width="0.2158%" height="15" fill="rgb(252,84,27)" fg:x="210840" fg:w="1145"/><text x="39.9787%" y="607.50"></text></g><g><title>kfree (236 samples, 0.04%)</title><rect x="39.9454%" y="597" width="0.0445%" height="15" fill="rgb(223,145,39)" fg:x="211990" fg:w="236"/><text x="40.1954%" y="607.50"></text></g><g><title>memcmp (140 samples, 0.03%)</title><rect x="39.9898%" y="597" width="0.0264%" height="15" fill="rgb(239,219,30)" fg:x="212226" fg:w="140"/><text x="40.2398%" y="607.50"></text></g><g><title>overwrite_item (2,518 samples, 0.47%)</title><rect x="39.5691%" y="613" width="0.4745%" height="15" fill="rgb(224,196,39)" fg:x="209993" fg:w="2518"/><text x="39.8191%" y="623.50"></text></g><g><title>read_extent_buffer (145 samples, 0.03%)</title><rect x="40.0162%" y="597" width="0.0273%" height="15" fill="rgb(205,35,43)" fg:x="212366" fg:w="145"/><text x="40.2662%" y="607.50"></text></g><g><title>log_directory_changes (3,101 samples, 0.58%)</title><rect x="39.4792%" y="645" width="0.5843%" height="15" fill="rgb(228,201,21)" fg:x="209516" fg:w="3101"/><text x="39.7292%" y="655.50"></text></g><g><title>log_dir_items (3,101 samples, 0.58%)</title><rect x="39.4792%" y="629" width="0.5843%" height="15" fill="rgb(237,118,16)" fg:x="209516" fg:w="3101"/><text x="39.7292%" y="639.50"></text></g><g><title>read_extent_buffer (106 samples, 0.02%)</title><rect x="40.0435%" y="613" width="0.0200%" height="15" fill="rgb(241,17,19)" fg:x="212511" fg:w="106"/><text x="40.2935%" y="623.50"></text></g><g><title>btrfs_log_inode (5,579 samples, 1.05%)</title><rect x="39.0156%" y="661" width="1.0513%" height="15" fill="rgb(214,10,25)" fg:x="207056" fg:w="5579"/><text x="39.2656%" y="671.50"></text></g><g><title>btrfs_release_path (103 samples, 0.02%)</title><rect x="40.0688%" y="661" width="0.0194%" height="15" fill="rgb(238,37,29)" fg:x="212645" fg:w="103"/><text x="40.3188%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (359 samples, 0.07%)</title><rect x="40.1281%" y="645" width="0.0676%" height="15" fill="rgb(253,83,25)" fg:x="212960" fg:w="359"/><text x="40.3781%" y="655.50"></text></g><g><title>__radix_tree_lookup (156 samples, 0.03%)</title><rect x="40.2333%" y="613" width="0.0294%" height="15" fill="rgb(234,192,12)" fg:x="213518" fg:w="156"/><text x="40.4833%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (80 samples, 0.02%)</title><rect x="40.2627%" y="613" width="0.0151%" height="15" fill="rgb(241,216,45)" fg:x="213674" fg:w="80"/><text x="40.5127%" y="623.50"></text></g><g><title>find_extent_buffer (298 samples, 0.06%)</title><rect x="40.2231%" y="629" width="0.0562%" height="15" fill="rgb(242,22,33)" fg:x="213464" fg:w="298"/><text x="40.4731%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (488 samples, 0.09%)</title><rect x="40.1958%" y="645" width="0.0920%" height="15" fill="rgb(231,105,49)" fg:x="213319" fg:w="488"/><text x="40.4458%" y="655.50"></text></g><g><title>btrfs_search_slot (1,096 samples, 0.21%)</title><rect x="40.0882%" y="661" width="0.2065%" height="15" fill="rgb(218,204,15)" fg:x="212748" fg:w="1096"/><text x="40.3382%" y="671.50"></text></g><g><title>btrfs_search_forward (66 samples, 0.01%)</title><rect x="40.3179%" y="629" width="0.0124%" height="15" fill="rgb(235,138,41)" fg:x="213967" fg:w="66"/><text x="40.5679%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (149 samples, 0.03%)</title><rect x="40.3314%" y="613" width="0.0281%" height="15" fill="rgb(246,0,9)" fg:x="214039" fg:w="149"/><text x="40.5814%" y="623.50"></text></g><g><title>setup_items_for_insert (124 samples, 0.02%)</title><rect x="40.3362%" y="597" width="0.0234%" height="15" fill="rgb(210,74,4)" fg:x="214064" fg:w="124"/><text x="40.5862%" y="607.50"></text></g><g><title>copy_items.isra.0 (174 samples, 0.03%)</title><rect x="40.3303%" y="629" width="0.0328%" height="15" fill="rgb(250,60,41)" fg:x="214033" fg:w="174"/><text x="40.5803%" y="639.50"></text></g><g><title>btrfs_del_items (126 samples, 0.02%)</title><rect x="40.3635%" y="613" width="0.0237%" height="15" fill="rgb(220,115,12)" fg:x="214209" fg:w="126"/><text x="40.6135%" y="623.50"></text></g><g><title>drop_objectid_items (184 samples, 0.03%)</title><rect x="40.3631%" y="629" width="0.0347%" height="15" fill="rgb(237,100,13)" fg:x="214207" fg:w="184"/><text x="40.6131%" y="639.50"></text></g><g><title>btrfs_search_forward (110 samples, 0.02%)</title><rect x="40.4083%" y="597" width="0.0207%" height="15" fill="rgb(213,55,26)" fg:x="214447" fg:w="110"/><text x="40.6583%" y="607.50"></text></g><g><title>btrfs_search_slot (79 samples, 0.01%)</title><rect x="40.4291%" y="597" width="0.0149%" height="15" fill="rgb(216,17,4)" fg:x="214557" fg:w="79"/><text x="40.6791%" y="607.50"></text></g><g><title>btrfs_search_slot (54 samples, 0.01%)</title><rect x="40.4439%" y="565" width="0.0102%" height="15" fill="rgb(220,153,47)" fg:x="214636" fg:w="54"/><text x="40.6939%" y="575.50"></text></g><g><title>btrfs_get_token_32 (89 samples, 0.02%)</title><rect x="40.4575%" y="549" width="0.0168%" height="15" fill="rgb(215,131,9)" fg:x="214708" fg:w="89"/><text x="40.7075%" y="559.50"></text></g><g><title>btrfs_set_token_32 (89 samples, 0.02%)</title><rect x="40.4765%" y="549" width="0.0168%" height="15" fill="rgb(233,46,42)" fg:x="214809" fg:w="89"/><text x="40.7265%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (319 samples, 0.06%)</title><rect x="40.4439%" y="581" width="0.0601%" height="15" fill="rgb(226,86,7)" fg:x="214636" fg:w="319"/><text x="40.6939%" y="591.50"></text></g><g><title>setup_items_for_insert (265 samples, 0.05%)</title><rect x="40.4541%" y="565" width="0.0499%" height="15" fill="rgb(239,226,21)" fg:x="214690" fg:w="265"/><text x="40.7041%" y="575.50"></text></g><g><title>insert_dir_log_key (334 samples, 0.06%)</title><rect x="40.4439%" y="597" width="0.0629%" height="15" fill="rgb(244,137,22)" fg:x="214636" fg:w="334"/><text x="40.6939%" y="607.50"></text></g><g><title>__kmalloc (77 samples, 0.01%)</title><rect x="40.5114%" y="581" width="0.0145%" height="15" fill="rgb(211,139,35)" fg:x="214994" fg:w="77"/><text x="40.7614%" y="591.50"></text></g><g><title>btrfs_insert_empty_items (139 samples, 0.03%)</title><rect x="40.5319%" y="581" width="0.0262%" height="15" fill="rgb(214,62,50)" fg:x="215103" fg:w="139"/><text x="40.7819%" y="591.50"></text></g><g><title>setup_items_for_insert (110 samples, 0.02%)</title><rect x="40.5374%" y="565" width="0.0207%" height="15" fill="rgb(212,113,44)" fg:x="215132" fg:w="110"/><text x="40.7874%" y="575.50"></text></g><g><title>btrfs_release_path (78 samples, 0.01%)</title><rect x="40.5585%" y="581" width="0.0147%" height="15" fill="rgb(226,150,43)" fg:x="215244" fg:w="78"/><text x="40.8085%" y="591.50"></text></g><g><title>generic_bin_search.constprop.0 (100 samples, 0.02%)</title><rect x="40.5958%" y="565" width="0.0188%" height="15" fill="rgb(250,71,37)" fg:x="215442" fg:w="100"/><text x="40.8458%" y="575.50"></text></g><g><title>find_extent_buffer (70 samples, 0.01%)</title><rect x="40.6213%" y="549" width="0.0132%" height="15" fill="rgb(219,76,19)" fg:x="215577" fg:w="70"/><text x="40.8713%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (128 samples, 0.02%)</title><rect x="40.6147%" y="565" width="0.0241%" height="15" fill="rgb(250,39,11)" fg:x="215542" fg:w="128"/><text x="40.8647%" y="575.50"></text></g><g><title>btrfs_search_slot (362 samples, 0.07%)</title><rect x="40.5732%" y="581" width="0.0682%" height="15" fill="rgb(230,64,31)" fg:x="215322" fg:w="362"/><text x="40.8232%" y="591.50"></text></g><g><title>kfree (66 samples, 0.01%)</title><rect x="40.6420%" y="581" width="0.0124%" height="15" fill="rgb(208,222,23)" fg:x="215687" fg:w="66"/><text x="40.8920%" y="591.50"></text></g><g><title>overwrite_item (862 samples, 0.16%)</title><rect x="40.5069%" y="597" width="0.1624%" height="15" fill="rgb(227,125,18)" fg:x="214970" fg:w="862"/><text x="40.7569%" y="607.50"></text></g><g><title>log_directory_changes (1,458 samples, 0.27%)</title><rect x="40.3987%" y="629" width="0.2747%" height="15" fill="rgb(234,210,9)" fg:x="214396" fg:w="1458"/><text x="40.6487%" y="639.50"></text></g><g><title>log_dir_items (1,456 samples, 0.27%)</title><rect x="40.3991%" y="613" width="0.2744%" height="15" fill="rgb(217,127,24)" fg:x="214398" fg:w="1456"/><text x="40.6491%" y="623.50"></text></g><g><title>btrfs_log_inode (1,916 samples, 0.36%)</title><rect x="40.3126%" y="645" width="0.3610%" height="15" fill="rgb(239,141,48)" fg:x="213939" fg:w="1916"/><text x="40.5626%" y="655.50"></text></g><g><title>log_new_dir_dentries (2,022 samples, 0.38%)</title><rect x="40.3056%" y="661" width="0.3810%" height="15" fill="rgb(227,109,8)" fg:x="213902" fg:w="2022"/><text x="40.5556%" y="671.50"></text></g><g><title>btrfs_log_new_name (9,089 samples, 1.71%)</title><rect x="38.9798%" y="693" width="1.7126%" height="15" fill="rgb(235,184,23)" fg:x="206866" fg:w="9089"/><text x="39.2298%" y="703.50"></text></g><g><title>btrfs_log_inode_parent (9,059 samples, 1.71%)</title><rect x="38.9855%" y="677" width="1.7070%" height="15" fill="rgb(227,226,48)" fg:x="206896" fg:w="9059"/><text x="39.2355%" y="687.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="40.7743%" y="645" width="0.0104%" height="15" fill="rgb(206,150,11)" fg:x="216389" fg:w="55"/><text x="41.0243%" y="655.50"></text></g><g><title>mutex_lock (71 samples, 0.01%)</title><rect x="40.7848%" y="645" width="0.0134%" height="15" fill="rgb(254,2,33)" fg:x="216445" fg:w="71"/><text x="41.0348%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (376 samples, 0.07%)</title><rect x="40.7375%" y="661" width="0.0708%" height="15" fill="rgb(243,160,20)" fg:x="216194" fg:w="376"/><text x="40.9875%" y="671.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="40.7982%" y="645" width="0.0102%" height="15" fill="rgb(218,208,30)" fg:x="216516" fg:w="54"/><text x="41.0482%" y="655.50"></text></g><g><title>_raw_spin_lock (137 samples, 0.03%)</title><rect x="40.8138%" y="645" width="0.0258%" height="15" fill="rgb(224,120,49)" fg:x="216599" fg:w="137"/><text x="41.0638%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (167 samples, 0.03%)</title><rect x="40.8084%" y="661" width="0.0315%" height="15" fill="rgb(246,12,2)" fg:x="216570" fg:w="167"/><text x="41.0584%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (501 samples, 0.09%)</title><rect x="40.8398%" y="661" width="0.0944%" height="15" fill="rgb(236,117,3)" fg:x="216737" fg:w="501"/><text x="41.0898%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (479 samples, 0.09%)</title><rect x="40.8440%" y="645" width="0.0903%" height="15" fill="rgb(216,128,52)" fg:x="216759" fg:w="479"/><text x="41.0940%" y="655.50"></text></g><g><title>inode_get_bytes (79 samples, 0.01%)</title><rect x="40.9401%" y="645" width="0.0149%" height="15" fill="rgb(246,145,19)" fg:x="217269" fg:w="79"/><text x="41.1901%" y="655.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="40.9423%" y="629" width="0.0126%" height="15" fill="rgb(222,11,46)" fg:x="217281" fg:w="67"/><text x="41.1923%" y="639.50"></text></g><g><title>fill_stack_inode_item (151 samples, 0.03%)</title><rect x="40.9342%" y="661" width="0.0285%" height="15" fill="rgb(245,82,36)" fg:x="217238" fg:w="151"/><text x="41.1842%" y="671.50"></text></g><g><title>mutex_lock (89 samples, 0.02%)</title><rect x="40.9627%" y="661" width="0.0168%" height="15" fill="rgb(250,73,51)" fg:x="217389" fg:w="89"/><text x="41.2127%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (1,494 samples, 0.28%)</title><rect x="40.7059%" y="677" width="0.2815%" height="15" fill="rgb(221,189,23)" fg:x="216026" fg:w="1494"/><text x="40.9559%" y="687.50"></text></g><g><title>btrfs_update_inode (1,728 samples, 0.33%)</title><rect x="40.6929%" y="693" width="0.3256%" height="15" fill="rgb(210,33,7)" fg:x="215957" fg:w="1728"/><text x="40.9429%" y="703.50"></text></g><g><title>btrfs_update_root_times (165 samples, 0.03%)</title><rect x="40.9874%" y="677" width="0.0311%" height="15" fill="rgb(210,107,22)" fg:x="217520" fg:w="165"/><text x="41.2374%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (110 samples, 0.02%)</title><rect x="40.9977%" y="661" width="0.0207%" height="15" fill="rgb(222,116,37)" fg:x="217575" fg:w="110"/><text x="41.2477%" y="671.50"></text></g><g><title>read_tsc (72 samples, 0.01%)</title><rect x="41.0049%" y="645" width="0.0136%" height="15" fill="rgb(254,17,48)" fg:x="217613" fg:w="72"/><text x="41.2549%" y="655.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="41.0362%" y="661" width="0.0115%" height="15" fill="rgb(224,36,32)" fg:x="217779" fg:w="61"/><text x="41.2862%" y="671.50"></text></g><g><title>__d_instantiate (140 samples, 0.03%)</title><rect x="41.0241%" y="677" width="0.0264%" height="15" fill="rgb(232,90,46)" fg:x="217715" fg:w="140"/><text x="41.2741%" y="687.50"></text></g><g><title>d_instantiate (189 samples, 0.04%)</title><rect x="41.0224%" y="693" width="0.0356%" height="15" fill="rgb(241,66,40)" fg:x="217706" fg:w="189"/><text x="41.2724%" y="703.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="41.1347%" y="661" width="0.0117%" height="15" fill="rgb(249,184,29)" fg:x="218302" fg:w="62"/><text x="41.3847%" y="671.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="41.1771%" y="629" width="0.0188%" height="15" fill="rgb(231,181,1)" fg:x="218527" fg:w="100"/><text x="41.4271%" y="639.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="41.2666%" y="597" width="0.0198%" height="15" fill="rgb(224,94,2)" fg:x="219002" fg:w="105"/><text x="41.5166%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (481 samples, 0.09%)</title><rect x="41.1960%" y="629" width="0.0906%" height="15" fill="rgb(229,170,15)" fg:x="218627" fg:w="481"/><text x="41.4460%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (263 samples, 0.05%)</title><rect x="41.2370%" y="613" width="0.0496%" height="15" fill="rgb(240,127,35)" fg:x="218845" fg:w="263"/><text x="41.4870%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (1,136 samples, 0.21%)</title><rect x="41.1313%" y="677" width="0.2141%" height="15" fill="rgb(248,196,34)" fg:x="218284" fg:w="1136"/><text x="41.3813%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,056 samples, 0.20%)</title><rect x="41.1464%" y="661" width="0.1990%" height="15" fill="rgb(236,137,7)" fg:x="218364" fg:w="1056"/><text x="41.3964%" y="671.50"></text></g><g><title>__reserve_bytes (1,005 samples, 0.19%)</title><rect x="41.1560%" y="645" width="0.1894%" height="15" fill="rgb(235,127,16)" fg:x="218415" fg:w="1005"/><text x="41.4060%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (312 samples, 0.06%)</title><rect x="41.2866%" y="629" width="0.0588%" height="15" fill="rgb(250,192,54)" fg:x="219108" fg:w="312"/><text x="41.5366%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (202 samples, 0.04%)</title><rect x="41.3073%" y="613" width="0.0381%" height="15" fill="rgb(218,98,20)" fg:x="219218" fg:w="202"/><text x="41.5573%" y="623.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="41.3326%" y="597" width="0.0128%" height="15" fill="rgb(230,176,47)" fg:x="219352" fg:w="68"/><text x="41.5826%" y="607.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="41.3765%" y="661" width="0.0124%" height="15" fill="rgb(244,2,33)" fg:x="219585" fg:w="66"/><text x="41.6265%" y="671.50"></text></g><g><title>join_transaction (220 samples, 0.04%)</title><rect x="41.3477%" y="677" width="0.0415%" height="15" fill="rgb(231,100,17)" fg:x="219432" fg:w="220"/><text x="41.5977%" y="687.50"></text></g><g><title>kmem_cache_alloc (217 samples, 0.04%)</title><rect x="41.3891%" y="677" width="0.0409%" height="15" fill="rgb(245,23,12)" fg:x="219652" fg:w="217"/><text x="41.6391%" y="687.50"></text></g><g><title>btrfs_link (47,383 samples, 8.93%)</title><rect x="32.5236%" y="709" width="8.9284%" height="15" fill="rgb(249,55,22)" fg:x="172603" fg:w="47383"/><text x="32.7736%" y="719.50">btrfs_link</text></g><g><title>start_transaction (2,037 samples, 0.38%)</title><rect x="41.0682%" y="693" width="0.3838%" height="15" fill="rgb(207,134,9)" fg:x="217949" fg:w="2037"/><text x="41.3182%" y="703.50"></text></g><g><title>wait_current_trans (117 samples, 0.02%)</title><rect x="41.4300%" y="677" width="0.0220%" height="15" fill="rgb(218,134,0)" fg:x="219869" fg:w="117"/><text x="41.6800%" y="687.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="41.4343%" y="661" width="0.0177%" height="15" fill="rgb(213,212,33)" fg:x="219892" fg:w="94"/><text x="41.6843%" y="671.50"></text></g><g><title>down_write (78 samples, 0.01%)</title><rect x="41.4520%" y="709" width="0.0147%" height="15" fill="rgb(252,106,18)" fg:x="219986" fg:w="78"/><text x="41.7020%" y="719.50"></text></g><g><title>fsnotify (159 samples, 0.03%)</title><rect x="41.4675%" y="709" width="0.0300%" height="15" fill="rgb(208,126,42)" fg:x="220068" fg:w="159"/><text x="41.7175%" y="719.50"></text></g><g><title>btrfs_permission (64 samples, 0.01%)</title><rect x="41.5005%" y="693" width="0.0121%" height="15" fill="rgb(246,175,29)" fg:x="220243" fg:w="64"/><text x="41.7505%" y="703.50"></text></g><g><title>inode_permission.part.0 (92 samples, 0.02%)</title><rect x="41.4975%" y="709" width="0.0173%" height="15" fill="rgb(215,13,50)" fg:x="220227" fg:w="92"/><text x="41.7475%" y="719.50"></text></g><g><title>__x64_sys_link (66,307 samples, 12.49%)</title><rect x="29.0462%" y="757" width="12.4943%" height="15" fill="rgb(216,172,15)" fg:x="154148" fg:w="66307"/><text x="29.2962%" y="767.50">__x64_sys_link</text></g><g><title>do_linkat (66,300 samples, 12.49%)</title><rect x="29.0475%" y="741" width="12.4929%" height="15" fill="rgb(212,103,13)" fg:x="154155" fg:w="66300"/><text x="29.2975%" y="751.50">do_linkat</text></g><g><title>vfs_link (48,054 samples, 9.05%)</title><rect x="32.4856%" y="725" width="9.0548%" height="15" fill="rgb(231,171,36)" fg:x="172401" fg:w="48054"/><text x="32.7356%" y="735.50">vfs_link</text></g><g><title>up_write (68 samples, 0.01%)</title><rect x="41.5276%" y="709" width="0.0128%" height="15" fill="rgb(250,123,20)" fg:x="220387" fg:w="68"/><text x="41.7776%" y="719.50"></text></g><g><title>do_syscall_64 (66,354 samples, 12.50%)</title><rect x="29.0396%" y="773" width="12.5031%" height="15" fill="rgb(212,53,50)" fg:x="154113" fg:w="66354"/><text x="29.2896%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (66,467 samples, 12.52%)</title><rect x="29.0305%" y="789" width="12.5244%" height="15" fill="rgb(243,54,12)" fg:x="154065" fg:w="66467"/><text x="29.2805%" y="799.50">entry_SYSCALL_64_af..</text></g><g><title>syscall_exit_to_user_mode (65 samples, 0.01%)</title><rect x="41.5427%" y="773" width="0.0122%" height="15" fill="rgb(234,101,34)" fg:x="220467" fg:w="65"/><text x="41.7927%" y="783.50"></text></g><g><title>__GI___link (66,802 samples, 12.59%)</title><rect x="28.9783%" y="805" width="12.5875%" height="15" fill="rgb(254,67,22)" fg:x="153788" fg:w="66802"/><text x="29.2283%" y="815.50">__GI___link</text></g><g><title>syscall_return_via_sysret (57 samples, 0.01%)</title><rect x="41.5551%" y="789" width="0.0107%" height="15" fill="rgb(250,35,47)" fg:x="220533" fg:w="57"/><text x="41.8051%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (298 samples, 0.06%)</title><rect x="41.6062%" y="789" width="0.0562%" height="15" fill="rgb(226,126,38)" fg:x="220804" fg:w="298"/><text x="41.8562%" y="799.50"></text></g><g><title>_copy_to_user (383 samples, 0.07%)</title><rect x="41.7166%" y="725" width="0.0722%" height="15" fill="rgb(216,138,53)" fg:x="221390" fg:w="383"/><text x="41.9666%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (331 samples, 0.06%)</title><rect x="41.7264%" y="709" width="0.0624%" height="15" fill="rgb(246,199,43)" fg:x="221442" fg:w="331"/><text x="41.9764%" y="719.50"></text></g><g><title>from_kgid_munged (61 samples, 0.01%)</title><rect x="41.7888%" y="725" width="0.0115%" height="15" fill="rgb(232,125,11)" fg:x="221773" fg:w="61"/><text x="42.0388%" y="735.50"></text></g><g><title>map_id_up (54 samples, 0.01%)</title><rect x="41.7901%" y="709" width="0.0102%" height="15" fill="rgb(218,219,45)" fg:x="221780" fg:w="54"/><text x="42.0401%" y="719.50"></text></g><g><title>cp_new_stat (624 samples, 0.12%)</title><rect x="41.6961%" y="741" width="0.1176%" height="15" fill="rgb(216,102,54)" fg:x="221281" fg:w="624"/><text x="41.9461%" y="751.50"></text></g><g><title>from_kuid_munged (71 samples, 0.01%)</title><rect x="41.8003%" y="725" width="0.0134%" height="15" fill="rgb(250,228,7)" fg:x="221834" fg:w="71"/><text x="42.0503%" y="735.50"></text></g><g><title>_raw_spin_lock (158 samples, 0.03%)</title><rect x="41.9258%" y="709" width="0.0298%" height="15" fill="rgb(226,125,25)" fg:x="222500" fg:w="158"/><text x="42.1758%" y="719.50"></text></g><g><title>generic_fillattr (110 samples, 0.02%)</title><rect x="41.9557%" y="709" width="0.0207%" height="15" fill="rgb(224,165,27)" fg:x="222659" fg:w="110"/><text x="42.2057%" y="719.50"></text></g><g><title>btrfs_getattr (904 samples, 0.17%)</title><rect x="41.8314%" y="725" width="0.1703%" height="15" fill="rgb(233,86,3)" fg:x="221999" fg:w="904"/><text x="42.0814%" y="735.50"></text></g><g><title>inode_get_bytes (134 samples, 0.03%)</title><rect x="41.9764%" y="709" width="0.0252%" height="15" fill="rgb(228,116,20)" fg:x="222769" fg:w="134"/><text x="42.2264%" y="719.50"></text></g><g><title>_raw_spin_lock (115 samples, 0.02%)</title><rect x="41.9800%" y="693" width="0.0217%" height="15" fill="rgb(209,192,17)" fg:x="222788" fg:w="115"/><text x="42.2300%" y="703.50"></text></g><g><title>kmem_cache_free (277 samples, 0.05%)</title><rect x="42.0237%" y="709" width="0.0522%" height="15" fill="rgb(224,88,34)" fg:x="223020" fg:w="277"/><text x="42.2737%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (62 samples, 0.01%)</title><rect x="42.0643%" y="693" width="0.0117%" height="15" fill="rgb(233,38,6)" fg:x="223235" fg:w="62"/><text x="42.3143%" y="703.50"></text></g><g><title>__legitimize_mnt (177 samples, 0.03%)</title><rect x="42.1097%" y="645" width="0.0334%" height="15" fill="rgb(212,59,30)" fg:x="223476" fg:w="177"/><text x="42.3597%" y="655.50"></text></g><g><title>__legitimize_path (341 samples, 0.06%)</title><rect x="42.1044%" y="661" width="0.0643%" height="15" fill="rgb(213,80,3)" fg:x="223448" fg:w="341"/><text x="42.3544%" y="671.50"></text></g><g><title>lockref_get_not_dead (136 samples, 0.03%)</title><rect x="42.1430%" y="645" width="0.0256%" height="15" fill="rgb(251,178,7)" fg:x="223653" fg:w="136"/><text x="42.3930%" y="655.50"></text></g><g><title>complete_walk (446 samples, 0.08%)</title><rect x="42.0923%" y="693" width="0.0840%" height="15" fill="rgb(213,154,26)" fg:x="223384" fg:w="446"/><text x="42.3423%" y="703.50"></text></g><g><title>try_to_unlazy (422 samples, 0.08%)</title><rect x="42.0969%" y="677" width="0.0795%" height="15" fill="rgb(238,165,49)" fg:x="223408" fg:w="422"/><text x="42.3469%" y="687.50"></text></g><g><title>btrfs_permission (223 samples, 0.04%)</title><rect x="43.0094%" y="661" width="0.0420%" height="15" fill="rgb(248,91,46)" fg:x="228251" fg:w="223"/><text x="43.2594%" y="671.50"></text></g><g><title>inode_permission.part.0 (2,735 samples, 0.52%)</title><rect x="42.7221%" y="677" width="0.5154%" height="15" fill="rgb(244,21,52)" fg:x="226726" fg:w="2735"/><text x="42.9721%" y="687.50"></text></g><g><title>generic_permission (987 samples, 0.19%)</title><rect x="43.0514%" y="661" width="0.1860%" height="15" fill="rgb(247,122,20)" fg:x="228474" fg:w="987"/><text x="43.3014%" y="671.50"></text></g><g><title>security_inode_permission (326 samples, 0.06%)</title><rect x="43.2374%" y="677" width="0.0614%" height="15" fill="rgb(218,27,9)" fg:x="229461" fg:w="326"/><text x="43.4874%" y="687.50"></text></g><g><title>lookup_fast (5,621 samples, 1.06%)</title><rect x="43.4971%" y="661" width="1.0592%" height="15" fill="rgb(246,7,6)" fg:x="230839" fg:w="5621"/><text x="43.7471%" y="671.50"></text></g><g><title>__d_lookup_rcu (4,416 samples, 0.83%)</title><rect x="43.7241%" y="645" width="0.8321%" height="15" fill="rgb(227,135,54)" fg:x="232044" fg:w="4416"/><text x="43.9741%" y="655.50"></text></g><g><title>page_put_link (91 samples, 0.02%)</title><rect x="44.5562%" y="661" width="0.0171%" height="15" fill="rgb(247,14,11)" fg:x="236460" fg:w="91"/><text x="44.8062%" y="671.50"></text></g><g><title>__lookup_mnt (67 samples, 0.01%)</title><rect x="44.8398%" y="645" width="0.0126%" height="15" fill="rgb(206,149,34)" fg:x="237965" fg:w="67"/><text x="45.0898%" y="655.50"></text></g><g><title>atime_needs_update (124 samples, 0.02%)</title><rect x="44.8526%" y="645" width="0.0234%" height="15" fill="rgb(227,228,4)" fg:x="238033" fg:w="124"/><text x="45.1026%" y="655.50"></text></g><g><title>current_time (71 samples, 0.01%)</title><rect x="44.8626%" y="629" width="0.0134%" height="15" fill="rgb(238,218,28)" fg:x="238086" fg:w="71"/><text x="45.1126%" y="639.50"></text></g><g><title>page_get_link (451 samples, 0.08%)</title><rect x="44.8817%" y="645" width="0.0850%" height="15" fill="rgb(252,86,40)" fg:x="238187" fg:w="451"/><text x="45.1317%" y="655.50"></text></g><g><title>pagecache_get_page (332 samples, 0.06%)</title><rect x="44.9041%" y="629" width="0.0626%" height="15" fill="rgb(251,225,11)" fg:x="238306" fg:w="332"/><text x="45.1541%" y="639.50"></text></g><g><title>find_get_entry (254 samples, 0.05%)</title><rect x="44.9188%" y="613" width="0.0479%" height="15" fill="rgb(206,46,49)" fg:x="238384" fg:w="254"/><text x="45.1688%" y="623.50"></text></g><g><title>link_path_walk.part.0 (14,824 samples, 2.79%)</title><rect x="42.1764%" y="693" width="2.7933%" height="15" fill="rgb(245,128,24)" fg:x="223830" fg:w="14824"/><text x="42.4264%" y="703.50">li..</text></g><g><title>walk_component (8,867 samples, 1.67%)</title><rect x="43.2989%" y="677" width="1.6708%" height="15" fill="rgb(219,177,34)" fg:x="229787" fg:w="8867"/><text x="43.5489%" y="687.50"></text></g><g><title>step_into (2,103 samples, 0.40%)</title><rect x="44.5734%" y="661" width="0.3963%" height="15" fill="rgb(218,60,48)" fg:x="236551" fg:w="2103"/><text x="44.8234%" y="671.50"></text></g><g><title>path_init (449 samples, 0.08%)</title><rect x="44.9697%" y="693" width="0.0846%" height="15" fill="rgb(221,11,5)" fg:x="238654" fg:w="449"/><text x="45.2197%" y="703.50"></text></g><g><title>nd_jump_root (363 samples, 0.07%)</title><rect x="44.9859%" y="677" width="0.0684%" height="15" fill="rgb(220,148,13)" fg:x="238740" fg:w="363"/><text x="45.2359%" y="687.50"></text></g><g><title>set_root (298 samples, 0.06%)</title><rect x="44.9981%" y="661" width="0.0562%" height="15" fill="rgb(210,16,3)" fg:x="238805" fg:w="298"/><text x="45.2481%" y="671.50"></text></g><g><title>lookup_fast (1,286 samples, 0.24%)</title><rect x="45.0703%" y="677" width="0.2423%" height="15" fill="rgb(236,80,2)" fg:x="239188" fg:w="1286"/><text x="45.3203%" y="687.50"></text></g><g><title>__d_lookup_rcu (1,238 samples, 0.23%)</title><rect x="45.0793%" y="661" width="0.2333%" height="15" fill="rgb(239,129,19)" fg:x="239236" fg:w="1238"/><text x="45.3293%" y="671.50"></text></g><g><title>path_lookupat (17,230 samples, 3.25%)</title><rect x="42.0759%" y="709" width="3.2467%" height="15" fill="rgb(220,106,35)" fg:x="223297" fg:w="17230"/><text x="42.3259%" y="719.50">pat..</text></g><g><title>walk_component (1,382 samples, 0.26%)</title><rect x="45.0622%" y="693" width="0.2604%" height="15" fill="rgb(252,139,45)" fg:x="239145" fg:w="1382"/><text x="45.3122%" y="703.50"></text></g><g><title>filename_lookup (17,632 samples, 3.32%)</title><rect x="42.0017%" y="725" width="3.3224%" height="15" fill="rgb(229,8,36)" fg:x="222903" fg:w="17632"/><text x="42.2517%" y="735.50">fil..</text></g><g><title>lockref_put_or_lock (150 samples, 0.03%)</title><rect x="45.3537%" y="693" width="0.0283%" height="15" fill="rgb(230,126,33)" fg:x="240692" fg:w="150"/><text x="45.6037%" y="703.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="45.3601%" y="677" width="0.0219%" height="15" fill="rgb(239,140,21)" fg:x="240726" fg:w="116"/><text x="45.6101%" y="687.50"></text></g><g><title>path_put (255 samples, 0.05%)</title><rect x="45.3347%" y="725" width="0.0480%" height="15" fill="rgb(254,104,9)" fg:x="240591" fg:w="255"/><text x="45.5847%" y="735.50"></text></g><g><title>dput (244 samples, 0.05%)</title><rect x="45.3367%" y="709" width="0.0460%" height="15" fill="rgb(239,52,14)" fg:x="240602" fg:w="244"/><text x="45.5867%" y="719.50"></text></g><g><title>apparmor_inode_getattr (110 samples, 0.02%)</title><rect x="45.4946%" y="709" width="0.0207%" height="15" fill="rgb(208,227,44)" fg:x="241440" fg:w="110"/><text x="45.7446%" y="719.50"></text></g><g><title>security_inode_getattr (1,121 samples, 0.21%)</title><rect x="45.3827%" y="725" width="0.2112%" height="15" fill="rgb(246,18,19)" fg:x="240846" fg:w="1121"/><text x="45.6327%" y="735.50"></text></g><g><title>tomoyo_path_perm (411 samples, 0.08%)</title><rect x="45.5165%" y="709" width="0.0774%" height="15" fill="rgb(235,228,25)" fg:x="241556" fg:w="411"/><text x="45.7665%" y="719.50"></text></g><g><title>tomoyo_init_request_info (243 samples, 0.05%)</title><rect x="45.5481%" y="693" width="0.0458%" height="15" fill="rgb(240,156,20)" fg:x="241724" fg:w="243"/><text x="45.7981%" y="703.50"></text></g><g><title>tomoyo_domain (72 samples, 0.01%)</title><rect x="45.5804%" y="677" width="0.0136%" height="15" fill="rgb(224,8,20)" fg:x="241895" fg:w="72"/><text x="45.8304%" y="687.50"></text></g><g><title>memcg_slab_post_alloc_hook (54 samples, 0.01%)</title><rect x="45.6829%" y="677" width="0.0102%" height="15" fill="rgb(214,12,52)" fg:x="242439" fg:w="54"/><text x="45.9329%" y="687.50"></text></g><g><title>memset_erms (731 samples, 0.14%)</title><rect x="45.6940%" y="677" width="0.1377%" height="15" fill="rgb(211,220,47)" fg:x="242498" fg:w="731"/><text x="45.9440%" y="687.50"></text></g><g><title>kmem_cache_alloc (1,335 samples, 0.25%)</title><rect x="45.6226%" y="693" width="0.2516%" height="15" fill="rgb(250,173,5)" fg:x="242119" fg:w="1335"/><text x="45.8726%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (225 samples, 0.04%)</title><rect x="45.8317%" y="677" width="0.0424%" height="15" fill="rgb(250,125,52)" fg:x="243229" fg:w="225"/><text x="46.0817%" y="687.50"></text></g><g><title>__check_heap_object (121 samples, 0.02%)</title><rect x="46.0324%" y="661" width="0.0228%" height="15" fill="rgb(209,133,18)" fg:x="244294" fg:w="121"/><text x="46.2824%" y="671.50"></text></g><g><title>__virt_addr_valid (374 samples, 0.07%)</title><rect x="46.0552%" y="661" width="0.0705%" height="15" fill="rgb(216,173,22)" fg:x="244415" fg:w="374"/><text x="46.3052%" y="671.50"></text></g><g><title>__check_object_size (598 samples, 0.11%)</title><rect x="46.0149%" y="677" width="0.1127%" height="15" fill="rgb(205,3,22)" fg:x="244201" fg:w="598"/><text x="46.2649%" y="687.50"></text></g><g><title>user_path_at_empty (2,833 samples, 0.53%)</title><rect x="45.5939%" y="725" width="0.5338%" height="15" fill="rgb(248,22,20)" fg:x="241967" fg:w="2833"/><text x="45.8439%" y="735.50"></text></g><g><title>getname_flags.part.0 (2,795 samples, 0.53%)</title><rect x="45.6011%" y="709" width="0.5267%" height="15" fill="rgb(233,6,29)" fg:x="242005" fg:w="2795"/><text x="45.8511%" y="719.50"></text></g><g><title>strncpy_from_user (1,346 samples, 0.25%)</title><rect x="45.8741%" y="693" width="0.2536%" height="15" fill="rgb(240,22,54)" fg:x="243454" fg:w="1346"/><text x="46.1241%" y="703.50"></text></g><g><title>__do_sys_newlstat (23,763 samples, 4.48%)</title><rect x="41.6851%" y="757" width="4.4777%" height="15" fill="rgb(231,133,32)" fg:x="221223" fg:w="23763"/><text x="41.9351%" y="767.50">__do_..</text></g><g><title>vfs_statx (23,081 samples, 4.35%)</title><rect x="41.8136%" y="741" width="4.3492%" height="15" fill="rgb(248,193,4)" fg:x="221905" fg:w="23081"/><text x="42.0636%" y="751.50">vfs_s..</text></g><g><title>vfs_getattr_nosec (186 samples, 0.04%)</title><rect x="46.1278%" y="725" width="0.0350%" height="15" fill="rgb(211,178,46)" fg:x="244800" fg:w="186"/><text x="46.3778%" y="735.50"></text></g><g><title>do_syscall_64 (23,855 samples, 4.50%)</title><rect x="41.6755%" y="773" width="4.4950%" height="15" fill="rgb(224,5,42)" fg:x="221172" fg:w="23855"/><text x="41.9255%" y="783.50">do_sy..</text></g><g><title>entry_SYSCALL_64_after_hwframe (24,004 samples, 4.52%)</title><rect x="41.6623%" y="789" width="4.5231%" height="15" fill="rgb(239,176,25)" fg:x="221102" fg:w="24004"/><text x="41.9123%" y="799.50">entry..</text></g><g><title>syscall_exit_to_user_mode (79 samples, 0.01%)</title><rect x="46.1705%" y="773" width="0.0149%" height="15" fill="rgb(245,187,50)" fg:x="245027" fg:w="79"/><text x="46.4205%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (56 samples, 0.01%)</title><rect x="46.1749%" y="757" width="0.0106%" height="15" fill="rgb(248,24,15)" fg:x="245050" fg:w="56"/><text x="46.4249%" y="767.50"></text></g><g><title>__GI___lxstat (24,655 samples, 4.65%)</title><rect x="41.5659%" y="805" width="4.6458%" height="15" fill="rgb(205,166,13)" fg:x="220590" fg:w="24655"/><text x="41.8159%" y="815.50">__GI_..</text></g><g><title>syscall_return_via_sysret (139 samples, 0.03%)</title><rect x="46.1854%" y="789" width="0.0262%" height="15" fill="rgb(208,114,23)" fg:x="245106" fg:w="139"/><text x="46.4354%" y="799.50"></text></g><g><title>generic_bin_search.constprop.0 (91 samples, 0.02%)</title><rect x="46.2683%" y="645" width="0.0171%" height="15" fill="rgb(239,127,18)" fg:x="245546" fg:w="91"/><text x="46.5183%" y="655.50"></text></g><g><title>__radix_tree_lookup (76 samples, 0.01%)</title><rect x="46.2958%" y="613" width="0.0143%" height="15" fill="rgb(219,154,28)" fg:x="245692" fg:w="76"/><text x="46.5458%" y="623.50"></text></g><g><title>find_extent_buffer (134 samples, 0.03%)</title><rect x="46.2911%" y="629" width="0.0252%" height="15" fill="rgb(225,157,23)" fg:x="245667" fg:w="134"/><text x="46.5411%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (180 samples, 0.03%)</title><rect x="46.2855%" y="645" width="0.0339%" height="15" fill="rgb(219,8,6)" fg:x="245637" fg:w="180"/><text x="46.5355%" y="655.50"></text></g><g><title>btrfs_search_slot (424 samples, 0.08%)</title><rect x="46.2404%" y="661" width="0.0799%" height="15" fill="rgb(212,47,6)" fg:x="245398" fg:w="424"/><text x="46.4904%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (436 samples, 0.08%)</title><rect x="46.2401%" y="677" width="0.0822%" height="15" fill="rgb(224,190,4)" fg:x="245396" fg:w="436"/><text x="46.4901%" y="687.50"></text></g><g><title>btrfs_lookup (520 samples, 0.10%)</title><rect x="46.2297%" y="709" width="0.0980%" height="15" fill="rgb(239,183,29)" fg:x="245341" fg:w="520"/><text x="46.4797%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (520 samples, 0.10%)</title><rect x="46.2297%" y="693" width="0.0980%" height="15" fill="rgb(213,57,7)" fg:x="245341" fg:w="520"/><text x="46.4797%" y="703.50"></text></g><g><title>kmem_cache_alloc (87 samples, 0.02%)</title><rect x="46.3299%" y="677" width="0.0164%" height="15" fill="rgb(216,148,1)" fg:x="245873" fg:w="87"/><text x="46.5799%" y="687.50"></text></g><g><title>__d_alloc (99 samples, 0.02%)</title><rect x="46.3282%" y="693" width="0.0187%" height="15" fill="rgb(236,182,29)" fg:x="245864" fg:w="99"/><text x="46.5782%" y="703.50"></text></g><g><title>d_alloc (109 samples, 0.02%)</title><rect x="46.3277%" y="709" width="0.0205%" height="15" fill="rgb(244,120,48)" fg:x="245861" fg:w="109"/><text x="46.5777%" y="719.50"></text></g><g><title>__lookup_hash (689 samples, 0.13%)</title><rect x="46.2295%" y="725" width="0.1298%" height="15" fill="rgb(206,71,34)" fg:x="245340" fg:w="689"/><text x="46.4795%" y="735.50"></text></g><g><title>inode_permission.part.0 (81 samples, 0.02%)</title><rect x="46.3891%" y="677" width="0.0153%" height="15" fill="rgb(242,32,6)" fg:x="246187" fg:w="81"/><text x="46.6391%" y="687.50"></text></g><g><title>lookup_fast (208 samples, 0.04%)</title><rect x="46.4125%" y="661" width="0.0392%" height="15" fill="rgb(241,35,3)" fg:x="246311" fg:w="208"/><text x="46.6625%" y="671.50"></text></g><g><title>__d_lookup_rcu (166 samples, 0.03%)</title><rect x="46.4204%" y="645" width="0.0313%" height="15" fill="rgb(222,62,19)" fg:x="246353" fg:w="166"/><text x="46.6704%" y="655.50"></text></g><g><title>link_path_walk.part.0 (481 samples, 0.09%)</title><rect x="46.3676%" y="693" width="0.0906%" height="15" fill="rgb(223,110,41)" fg:x="246073" fg:w="481"/><text x="46.6176%" y="703.50"></text></g><g><title>walk_component (276 samples, 0.05%)</title><rect x="46.4063%" y="677" width="0.0520%" height="15" fill="rgb(208,224,4)" fg:x="246278" fg:w="276"/><text x="46.6563%" y="687.50"></text></g><g><title>filename_parentat (544 samples, 0.10%)</title><rect x="46.3601%" y="725" width="0.1025%" height="15" fill="rgb(241,137,19)" fg:x="246033" fg:w="544"/><text x="46.6101%" y="735.50"></text></g><g><title>path_parentat (538 samples, 0.10%)</title><rect x="46.3612%" y="709" width="0.1014%" height="15" fill="rgb(244,24,17)" fg:x="246039" fg:w="538"/><text x="46.6112%" y="719.50"></text></g><g><title>filename_create (1,277 samples, 0.24%)</title><rect x="46.2284%" y="741" width="0.2406%" height="15" fill="rgb(245,178,49)" fg:x="245334" fg:w="1277"/><text x="46.4784%" y="751.50"></text></g><g><title>kmem_cache_alloc (54 samples, 0.01%)</title><rect x="46.4709%" y="725" width="0.0102%" height="15" fill="rgb(219,160,38)" fg:x="246621" fg:w="54"/><text x="46.7209%" y="735.50"></text></g><g><title>getname_flags.part.0 (116 samples, 0.02%)</title><rect x="46.4696%" y="741" width="0.0219%" height="15" fill="rgb(228,137,14)" fg:x="246614" fg:w="116"/><text x="46.7196%" y="751.50"></text></g><g><title>strncpy_from_user (55 samples, 0.01%)</title><rect x="46.4811%" y="725" width="0.0104%" height="15" fill="rgb(237,134,11)" fg:x="246675" fg:w="55"/><text x="46.7311%" y="735.50"></text></g><g><title>__btrfs_end_transaction (65 samples, 0.01%)</title><rect x="46.4995%" y="709" width="0.0122%" height="15" fill="rgb(211,126,44)" fg:x="246773" fg:w="65"/><text x="46.7495%" y="719.50"></text></g><g><title>btrfs_insert_delayed_dir_index (145 samples, 0.03%)</title><rect x="46.5155%" y="677" width="0.0273%" height="15" fill="rgb(226,171,33)" fg:x="246858" fg:w="145"/><text x="46.7655%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (73 samples, 0.01%)</title><rect x="46.5798%" y="629" width="0.0138%" height="15" fill="rgb(253,99,13)" fg:x="247199" fg:w="73"/><text x="46.8298%" y="639.50"></text></g><g><title>find_extent_buffer (72 samples, 0.01%)</title><rect x="46.5983%" y="613" width="0.0136%" height="15" fill="rgb(244,48,7)" fg:x="247297" fg:w="72"/><text x="46.8483%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (104 samples, 0.02%)</title><rect x="46.5936%" y="629" width="0.0196%" height="15" fill="rgb(244,217,54)" fg:x="247272" fg:w="104"/><text x="46.8436%" y="639.50"></text></g><g><title>btrfs_search_slot (368 samples, 0.07%)</title><rect x="46.5585%" y="645" width="0.0693%" height="15" fill="rgb(224,15,18)" fg:x="247086" fg:w="368"/><text x="46.8085%" y="655.50"></text></g><g><title>btrfs_get_token_32 (139 samples, 0.03%)</title><rect x="46.6407%" y="629" width="0.0262%" height="15" fill="rgb(244,99,12)" fg:x="247522" fg:w="139"/><text x="46.8907%" y="639.50"></text></g><g><title>btrfs_set_token_32 (145 samples, 0.03%)</title><rect x="46.6746%" y="629" width="0.0273%" height="15" fill="rgb(233,226,8)" fg:x="247702" fg:w="145"/><text x="46.9246%" y="639.50"></text></g><g><title>insert_with_overflow (874 samples, 0.16%)</title><rect x="46.5570%" y="677" width="0.1647%" height="15" fill="rgb(229,211,3)" fg:x="247078" fg:w="874"/><text x="46.8070%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (867 samples, 0.16%)</title><rect x="46.5583%" y="661" width="0.1634%" height="15" fill="rgb(216,140,21)" fg:x="247085" fg:w="867"/><text x="46.8083%" y="671.50"></text></g><g><title>setup_items_for_insert (498 samples, 0.09%)</title><rect x="46.6279%" y="645" width="0.0938%" height="15" fill="rgb(234,122,30)" fg:x="247454" fg:w="498"/><text x="46.8779%" y="655.50"></text></g><g><title>btrfs_insert_dir_item (1,145 samples, 0.22%)</title><rect x="46.5138%" y="693" width="0.2158%" height="15" fill="rgb(236,25,46)" fg:x="246849" fg:w="1145"/><text x="46.7638%" y="703.50"></text></g><g><title>btrfs_update_inode (78 samples, 0.01%)</title><rect x="46.7296%" y="693" width="0.0147%" height="15" fill="rgb(217,52,54)" fg:x="247994" fg:w="78"/><text x="46.9796%" y="703.50"></text></g><g><title>btrfs_add_link (1,235 samples, 0.23%)</title><rect x="46.5118%" y="709" width="0.2327%" height="15" fill="rgb(222,29,26)" fg:x="246838" fg:w="1235"/><text x="46.7618%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (60 samples, 0.01%)</title><rect x="46.7901%" y="661" width="0.0113%" height="15" fill="rgb(216,177,29)" fg:x="248315" fg:w="60"/><text x="47.0401%" y="671.50"></text></g><g><title>find_extent_buffer (82 samples, 0.02%)</title><rect x="46.8074%" y="645" width="0.0155%" height="15" fill="rgb(247,136,51)" fg:x="248407" fg:w="82"/><text x="47.0574%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (124 samples, 0.02%)</title><rect x="46.8014%" y="661" width="0.0234%" height="15" fill="rgb(231,47,47)" fg:x="248375" fg:w="124"/><text x="47.0514%" y="671.50"></text></g><g><title>__push_leaf_left (78 samples, 0.01%)</title><rect x="46.8355%" y="629" width="0.0147%" height="15" fill="rgb(211,192,36)" fg:x="248556" fg:w="78"/><text x="47.0855%" y="639.50"></text></g><g><title>push_leaf_left (93 samples, 0.02%)</title><rect x="46.8346%" y="645" width="0.0175%" height="15" fill="rgb(229,156,32)" fg:x="248551" fg:w="93"/><text x="47.0846%" y="655.50"></text></g><g><title>split_leaf (147 samples, 0.03%)</title><rect x="46.8248%" y="661" width="0.0277%" height="15" fill="rgb(248,213,20)" fg:x="248499" fg:w="147"/><text x="47.0748%" y="671.50"></text></g><g><title>btrfs_search_slot (464 samples, 0.09%)</title><rect x="46.7711%" y="677" width="0.0874%" height="15" fill="rgb(217,64,7)" fg:x="248214" fg:w="464"/><text x="47.0211%" y="687.50"></text></g><g><title>btrfs_get_token_32 (62 samples, 0.01%)</title><rect x="46.8677%" y="661" width="0.0117%" height="15" fill="rgb(232,142,8)" fg:x="248727" fg:w="62"/><text x="47.1177%" y="671.50"></text></g><g><title>btrfs_set_token_32 (75 samples, 0.01%)</title><rect x="46.8871%" y="661" width="0.0141%" height="15" fill="rgb(224,92,44)" fg:x="248830" fg:w="75"/><text x="47.1371%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (745 samples, 0.14%)</title><rect x="46.7703%" y="693" width="0.1404%" height="15" fill="rgb(214,169,17)" fg:x="248210" fg:w="745"/><text x="47.0203%" y="703.50"></text></g><g><title>setup_items_for_insert (277 samples, 0.05%)</title><rect x="46.8585%" y="677" width="0.0522%" height="15" fill="rgb(210,59,37)" fg:x="248678" fg:w="277"/><text x="47.1085%" y="687.50"></text></g><g><title>fill_inode_item (84 samples, 0.02%)</title><rect x="46.9194%" y="693" width="0.0158%" height="15" fill="rgb(214,116,48)" fg:x="249001" fg:w="84"/><text x="47.1694%" y="703.50"></text></g><g><title>inode_tree_add (92 samples, 0.02%)</title><rect x="46.9357%" y="693" width="0.0173%" height="15" fill="rgb(244,191,6)" fg:x="249088" fg:w="92"/><text x="47.1857%" y="703.50"></text></g><g><title>insert_inode_locked4 (59 samples, 0.01%)</title><rect x="46.9531%" y="693" width="0.0111%" height="15" fill="rgb(241,50,52)" fg:x="249180" fg:w="59"/><text x="47.2031%" y="703.50"></text></g><g><title>inode_insert5 (59 samples, 0.01%)</title><rect x="46.9531%" y="677" width="0.0111%" height="15" fill="rgb(236,75,39)" fg:x="249180" fg:w="59"/><text x="47.2031%" y="687.50"></text></g><g><title>btrfs_alloc_inode (120 samples, 0.02%)</title><rect x="46.9748%" y="661" width="0.0226%" height="15" fill="rgb(236,99,0)" fg:x="249295" fg:w="120"/><text x="47.2248%" y="671.50"></text></g><g><title>kmem_cache_alloc (90 samples, 0.02%)</title><rect x="46.9804%" y="645" width="0.0170%" height="15" fill="rgb(207,202,15)" fg:x="249325" fg:w="90"/><text x="47.2304%" y="655.50"></text></g><g><title>alloc_inode (168 samples, 0.03%)</title><rect x="46.9744%" y="677" width="0.0317%" height="15" fill="rgb(233,207,14)" fg:x="249293" fg:w="168"/><text x="47.2244%" y="687.50"></text></g><g><title>new_inode (206 samples, 0.04%)</title><rect x="46.9693%" y="693" width="0.0388%" height="15" fill="rgb(226,27,51)" fg:x="249266" fg:w="206"/><text x="47.2193%" y="703.50"></text></g><g><title>btrfs_new_inode (1,347 samples, 0.25%)</title><rect x="46.7562%" y="709" width="0.2538%" height="15" fill="rgb(206,104,42)" fg:x="248135" fg:w="1347"/><text x="47.0062%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (103 samples, 0.02%)</title><rect x="47.0241%" y="677" width="0.0194%" height="15" fill="rgb(212,225,4)" fg:x="249557" fg:w="103"/><text x="47.2741%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (192 samples, 0.04%)</title><rect x="47.0117%" y="693" width="0.0362%" height="15" fill="rgb(233,96,42)" fg:x="249491" fg:w="192"/><text x="47.2617%" y="703.50"></text></g><g><title>btrfs_update_inode (215 samples, 0.04%)</title><rect x="47.0102%" y="709" width="0.0405%" height="15" fill="rgb(229,21,32)" fg:x="249483" fg:w="215"/><text x="47.2602%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (83 samples, 0.02%)</title><rect x="47.0633%" y="693" width="0.0156%" height="15" fill="rgb(226,216,24)" fg:x="249765" fg:w="83"/><text x="47.3133%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (74 samples, 0.01%)</title><rect x="47.0650%" y="677" width="0.0139%" height="15" fill="rgb(221,163,17)" fg:x="249774" fg:w="74"/><text x="47.3150%" y="687.50"></text></g><g><title>__reserve_bytes (73 samples, 0.01%)</title><rect x="47.0652%" y="661" width="0.0138%" height="15" fill="rgb(216,216,42)" fg:x="249775" fg:w="73"/><text x="47.3152%" y="671.50"></text></g><g><title>btrfs_mkdir (3,127 samples, 0.59%)</title><rect x="46.4992%" y="725" width="0.5892%" height="15" fill="rgb(240,118,7)" fg:x="246771" fg:w="3127"/><text x="46.7492%" y="735.50"></text></g><g><title>start_transaction (155 samples, 0.03%)</title><rect x="47.0592%" y="709" width="0.0292%" height="15" fill="rgb(221,67,37)" fg:x="249743" fg:w="155"/><text x="47.3092%" y="719.50"></text></g><g><title>do_mkdirat (4,631 samples, 0.87%)</title><rect x="46.2178%" y="757" width="0.8726%" height="15" fill="rgb(241,32,44)" fg:x="245278" fg:w="4631"/><text x="46.4678%" y="767.50"></text></g><g><title>vfs_mkdir (3,147 samples, 0.59%)</title><rect x="46.4975%" y="741" width="0.5930%" height="15" fill="rgb(235,204,43)" fg:x="246762" fg:w="3147"/><text x="46.7475%" y="751.50"></text></g><g><title>do_syscall_64 (4,637 samples, 0.87%)</title><rect x="46.2173%" y="773" width="0.8738%" height="15" fill="rgb(213,116,10)" fg:x="245275" fg:w="4637"/><text x="46.4673%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,647 samples, 0.88%)</title><rect x="46.2167%" y="789" width="0.8756%" height="15" fill="rgb(239,15,48)" fg:x="245272" fg:w="4647"/><text x="46.4667%" y="799.50"></text></g><g><title>__GI___mkdir (4,683 samples, 0.88%)</title><rect x="46.2116%" y="805" width="0.8824%" height="15" fill="rgb(207,123,36)" fg:x="245245" fg:w="4683"/><text x="46.4616%" y="815.50"></text></g><g><title>btrfs_filldir (388 samples, 0.07%)</title><rect x="47.1809%" y="693" width="0.0731%" height="15" fill="rgb(209,103,30)" fg:x="250389" fg:w="388"/><text x="47.4309%" y="703.50"></text></g><g><title>filldir64 (351 samples, 0.07%)</title><rect x="47.1879%" y="677" width="0.0661%" height="15" fill="rgb(238,100,19)" fg:x="250426" fg:w="351"/><text x="47.4379%" y="687.50"></text></g><g><title>verify_dirent_name (120 samples, 0.02%)</title><rect x="47.2314%" y="661" width="0.0226%" height="15" fill="rgb(244,30,14)" fg:x="250657" fg:w="120"/><text x="47.4814%" y="671.50"></text></g><g><title>memchr (85 samples, 0.02%)</title><rect x="47.2380%" y="645" width="0.0160%" height="15" fill="rgb(249,174,6)" fg:x="250692" fg:w="85"/><text x="47.4880%" y="655.50"></text></g><g><title>btrfs_get_16 (62 samples, 0.01%)</title><rect x="47.2565%" y="693" width="0.0117%" height="15" fill="rgb(235,213,41)" fg:x="250790" fg:w="62"/><text x="47.5065%" y="703.50"></text></g><g><title>btrfs_next_old_leaf (78 samples, 0.01%)</title><rect x="47.2802%" y="693" width="0.0147%" height="15" fill="rgb(213,118,6)" fg:x="250916" fg:w="78"/><text x="47.5302%" y="703.50"></text></g><g><title>btrfs_readdir_get_delayed_items (95 samples, 0.02%)</title><rect x="47.2951%" y="693" width="0.0179%" height="15" fill="rgb(235,44,51)" fg:x="250995" fg:w="95"/><text x="47.5451%" y="703.50"></text></g><g><title>btrfs_release_path (87 samples, 0.02%)</title><rect x="47.3139%" y="693" width="0.0164%" height="15" fill="rgb(217,9,53)" fg:x="251095" fg:w="87"/><text x="47.5639%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (189 samples, 0.04%)</title><rect x="47.3618%" y="677" width="0.0356%" height="15" fill="rgb(237,172,34)" fg:x="251349" fg:w="189"/><text x="47.6118%" y="687.50"></text></g><g><title>__radix_tree_lookup (133 samples, 0.03%)</title><rect x="47.4166%" y="645" width="0.0251%" height="15" fill="rgb(206,206,11)" fg:x="251640" fg:w="133"/><text x="47.6666%" y="655.50"></text></g><g><title>find_extent_buffer (222 samples, 0.04%)</title><rect x="47.4106%" y="661" width="0.0418%" height="15" fill="rgb(214,149,29)" fg:x="251608" fg:w="222"/><text x="47.6606%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (55 samples, 0.01%)</title><rect x="47.4421%" y="645" width="0.0104%" height="15" fill="rgb(208,123,3)" fg:x="251775" fg:w="55"/><text x="47.6921%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (315 samples, 0.06%)</title><rect x="47.3974%" y="677" width="0.0594%" height="15" fill="rgb(229,126,4)" fg:x="251538" fg:w="315"/><text x="47.6474%" y="687.50"></text></g><g><title>btrfs_search_slot (691 samples, 0.13%)</title><rect x="47.3303%" y="693" width="0.1302%" height="15" fill="rgb(222,92,36)" fg:x="251182" fg:w="691"/><text x="47.5803%" y="703.50"></text></g><g><title>kmem_cache_alloc (57 samples, 0.01%)</title><rect x="47.4813%" y="693" width="0.0107%" height="15" fill="rgb(216,39,41)" fg:x="251983" fg:w="57"/><text x="47.7313%" y="703.50"></text></g><g><title>btrfs_real_readdir (2,182 samples, 0.41%)</title><rect x="47.1494%" y="709" width="0.4112%" height="15" fill="rgb(253,127,28)" fg:x="250222" fg:w="2182"/><text x="47.3994%" y="719.50"></text></g><g><title>read_extent_buffer (340 samples, 0.06%)</title><rect x="47.4965%" y="693" width="0.0641%" height="15" fill="rgb(249,152,51)" fg:x="252064" fg:w="340"/><text x="47.7465%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (65 samples, 0.01%)</title><rect x="47.5962%" y="645" width="0.0122%" height="15" fill="rgb(209,123,42)" fg:x="252593" fg:w="65"/><text x="47.8462%" y="655.50"></text></g><g><title>btrfs_reserve_metadata_bytes (62 samples, 0.01%)</title><rect x="47.5968%" y="629" width="0.0117%" height="15" fill="rgb(241,118,22)" fg:x="252596" fg:w="62"/><text x="47.8468%" y="639.50"></text></g><g><title>__reserve_bytes (61 samples, 0.01%)</title><rect x="47.5969%" y="613" width="0.0115%" height="15" fill="rgb(208,25,7)" fg:x="252597" fg:w="61"/><text x="47.8469%" y="623.50"></text></g><g><title>btrfs_delayed_update_inode (141 samples, 0.03%)</title><rect x="47.5871%" y="661" width="0.0266%" height="15" fill="rgb(243,144,39)" fg:x="252545" fg:w="141"/><text x="47.8371%" y="671.50"></text></g><g><title>btrfs_update_inode (161 samples, 0.03%)</title><rect x="47.5866%" y="677" width="0.0303%" height="15" fill="rgb(250,50,5)" fg:x="252542" fg:w="161"/><text x="47.8366%" y="687.50"></text></g><g><title>btrfs_dirty_inode (263 samples, 0.05%)</title><rect x="47.5821%" y="693" width="0.0496%" height="15" fill="rgb(207,67,11)" fg:x="252518" fg:w="263"/><text x="47.8321%" y="703.50"></text></g><g><title>start_transaction (71 samples, 0.01%)</title><rect x="47.6182%" y="677" width="0.0134%" height="15" fill="rgb(245,204,40)" fg:x="252710" fg:w="71"/><text x="47.8682%" y="687.50"></text></g><g><title>touch_atime (310 samples, 0.06%)</title><rect x="47.5740%" y="709" width="0.0584%" height="15" fill="rgb(238,228,24)" fg:x="252475" fg:w="310"/><text x="47.8240%" y="719.50"></text></g><g><title>iterate_dir (2,593 samples, 0.49%)</title><rect x="47.1464%" y="725" width="0.4886%" height="15" fill="rgb(217,116,22)" fg:x="250206" fg:w="2593"/><text x="47.3964%" y="735.50"></text></g><g><title>do_syscall_64 (2,661 samples, 0.50%)</title><rect x="47.1351%" y="757" width="0.5014%" height="15" fill="rgb(234,98,12)" fg:x="250146" fg:w="2661"/><text x="47.3851%" y="767.50"></text></g><g><title>__x64_sys_getdents64 (2,659 samples, 0.50%)</title><rect x="47.1355%" y="741" width="0.5010%" height="15" fill="rgb(242,170,50)" fg:x="250148" fg:w="2659"/><text x="47.3855%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,670 samples, 0.50%)</title><rect x="47.1342%" y="773" width="0.5031%" height="15" fill="rgb(235,7,5)" fg:x="250141" fg:w="2670"/><text x="47.3842%" y="783.50"></text></g><g><title>__GI___readdir64 (2,887 samples, 0.54%)</title><rect x="47.0940%" y="805" width="0.5440%" height="15" fill="rgb(241,114,28)" fg:x="249928" fg:w="2887"/><text x="47.3440%" y="815.50"></text></g><g><title>__GI___getdents64 (2,718 samples, 0.51%)</title><rect x="47.1259%" y="789" width="0.5122%" height="15" fill="rgb(246,112,42)" fg:x="250097" fg:w="2718"/><text x="47.3759%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (331 samples, 0.06%)</title><rect x="47.7187%" y="789" width="0.0624%" height="15" fill="rgb(248,228,14)" fg:x="253243" fg:w="331"/><text x="47.9687%" y="799.50"></text></g><g><title>_copy_to_user (343 samples, 0.06%)</title><rect x="47.8415%" y="725" width="0.0646%" height="15" fill="rgb(208,133,18)" fg:x="253895" fg:w="343"/><text x="48.0915%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (307 samples, 0.06%)</title><rect x="47.8483%" y="709" width="0.0578%" height="15" fill="rgb(207,35,49)" fg:x="253931" fg:w="307"/><text x="48.0983%" y="719.50"></text></g><g><title>cp_new_stat (528 samples, 0.10%)</title><rect x="47.8233%" y="741" width="0.0995%" height="15" fill="rgb(205,68,36)" fg:x="253798" fg:w="528"/><text x="48.0733%" y="751.50"></text></g><g><title>from_kuid_munged (58 samples, 0.01%)</title><rect x="47.9118%" y="725" width="0.0109%" height="15" fill="rgb(245,62,40)" fg:x="254268" fg:w="58"/><text x="48.1618%" y="735.50"></text></g><g><title>_raw_spin_lock (118 samples, 0.02%)</title><rect x="48.0285%" y="709" width="0.0222%" height="15" fill="rgb(228,27,24)" fg:x="254887" fg:w="118"/><text x="48.2785%" y="719.50"></text></g><g><title>generic_fillattr (150 samples, 0.03%)</title><rect x="48.0513%" y="709" width="0.0283%" height="15" fill="rgb(253,19,12)" fg:x="255008" fg:w="150"/><text x="48.3013%" y="719.50"></text></g><g><title>btrfs_getattr (823 samples, 0.16%)</title><rect x="47.9486%" y="725" width="0.1551%" height="15" fill="rgb(232,28,20)" fg:x="254463" fg:w="823"/><text x="48.1986%" y="735.50"></text></g><g><title>inode_get_bytes (128 samples, 0.02%)</title><rect x="48.0795%" y="709" width="0.0241%" height="15" fill="rgb(218,35,51)" fg:x="255158" fg:w="128"/><text x="48.3295%" y="719.50"></text></g><g><title>_raw_spin_lock (101 samples, 0.02%)</title><rect x="48.0846%" y="693" width="0.0190%" height="15" fill="rgb(212,90,40)" fg:x="255185" fg:w="101"/><text x="48.3346%" y="703.50"></text></g><g><title>kmem_cache_free (428 samples, 0.08%)</title><rect x="48.1281%" y="709" width="0.0806%" height="15" fill="rgb(220,172,12)" fg:x="255416" fg:w="428"/><text x="48.3781%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (101 samples, 0.02%)</title><rect x="48.1897%" y="693" width="0.0190%" height="15" fill="rgb(226,159,20)" fg:x="255743" fg:w="101"/><text x="48.4397%" y="703.50"></text></g><g><title>__legitimize_mnt (171 samples, 0.03%)</title><rect x="48.2440%" y="645" width="0.0322%" height="15" fill="rgb(234,205,16)" fg:x="256031" fg:w="171"/><text x="48.4940%" y="655.50"></text></g><g><title>__legitimize_path (324 samples, 0.06%)</title><rect x="48.2401%" y="661" width="0.0611%" height="15" fill="rgb(207,9,39)" fg:x="256010" fg:w="324"/><text x="48.4901%" y="671.50"></text></g><g><title>lockref_get_not_dead (132 samples, 0.02%)</title><rect x="48.2762%" y="645" width="0.0249%" height="15" fill="rgb(249,143,15)" fg:x="256202" fg:w="132"/><text x="48.5262%" y="655.50"></text></g><g><title>complete_walk (414 samples, 0.08%)</title><rect x="48.2301%" y="693" width="0.0780%" height="15" fill="rgb(253,133,29)" fg:x="255957" fg:w="414"/><text x="48.4801%" y="703.50"></text></g><g><title>try_to_unlazy (399 samples, 0.08%)</title><rect x="48.2329%" y="677" width="0.0752%" height="15" fill="rgb(221,187,0)" fg:x="255972" fg:w="399"/><text x="48.4829%" y="687.50"></text></g><g><title>btrfs_permission (280 samples, 0.05%)</title><rect x="49.4066%" y="661" width="0.0528%" height="15" fill="rgb(205,204,26)" fg:x="262201" fg:w="280"/><text x="49.6566%" y="671.50"></text></g><g><title>inode_permission.part.0 (3,604 samples, 0.68%)</title><rect x="49.0279%" y="677" width="0.6791%" height="15" fill="rgb(224,68,54)" fg:x="260191" fg:w="3604"/><text x="49.2779%" y="687.50"></text></g><g><title>generic_permission (1,314 samples, 0.25%)</title><rect x="49.4594%" y="661" width="0.2476%" height="15" fill="rgb(209,67,4)" fg:x="262481" fg:w="1314"/><text x="49.7094%" y="671.50"></text></g><g><title>security_inode_permission (465 samples, 0.09%)</title><rect x="49.7070%" y="677" width="0.0876%" height="15" fill="rgb(228,229,18)" fg:x="263795" fg:w="465"/><text x="49.9570%" y="687.50"></text></g><g><title>lookup_fast (7,024 samples, 1.32%)</title><rect x="50.0614%" y="661" width="1.3235%" height="15" fill="rgb(231,89,13)" fg:x="265676" fg:w="7024"/><text x="50.3114%" y="671.50"></text></g><g><title>__d_lookup_rcu (5,393 samples, 1.02%)</title><rect x="50.3688%" y="645" width="1.0162%" height="15" fill="rgb(210,182,18)" fg:x="267307" fg:w="5393"/><text x="50.6188%" y="655.50"></text></g><g><title>page_put_link (95 samples, 0.02%)</title><rect x="51.3850%" y="661" width="0.0179%" height="15" fill="rgb(240,105,2)" fg:x="272700" fg:w="95"/><text x="51.6350%" y="671.50"></text></g><g><title>__lookup_mnt (87 samples, 0.02%)</title><rect x="51.7564%" y="645" width="0.0164%" height="15" fill="rgb(207,170,50)" fg:x="274671" fg:w="87"/><text x="52.0064%" y="655.50"></text></g><g><title>atime_needs_update (126 samples, 0.02%)</title><rect x="51.7735%" y="645" width="0.0237%" height="15" fill="rgb(232,133,24)" fg:x="274762" fg:w="126"/><text x="52.0235%" y="655.50"></text></g><g><title>current_time (84 samples, 0.02%)</title><rect x="51.7814%" y="629" width="0.0158%" height="15" fill="rgb(235,166,27)" fg:x="274804" fg:w="84"/><text x="52.0314%" y="639.50"></text></g><g><title>page_get_link (315 samples, 0.06%)</title><rect x="51.8027%" y="645" width="0.0594%" height="15" fill="rgb(209,19,13)" fg:x="274917" fg:w="315"/><text x="52.0527%" y="655.50"></text></g><g><title>pagecache_get_page (262 samples, 0.05%)</title><rect x="51.8127%" y="629" width="0.0494%" height="15" fill="rgb(226,79,39)" fg:x="274970" fg:w="262"/><text x="52.0627%" y="639.50"></text></g><g><title>find_get_entry (195 samples, 0.04%)</title><rect x="51.8253%" y="613" width="0.0367%" height="15" fill="rgb(222,163,10)" fg:x="275037" fg:w="195"/><text x="52.0753%" y="623.50"></text></g><g><title>link_path_walk.part.0 (18,880 samples, 3.56%)</title><rect x="48.3081%" y="693" width="3.5576%" height="15" fill="rgb(214,44,19)" fg:x="256371" fg:w="18880"/><text x="48.5581%" y="703.50">link..</text></g><g><title>walk_component (10,991 samples, 2.07%)</title><rect x="49.7946%" y="677" width="2.0710%" height="15" fill="rgb(210,217,13)" fg:x="264260" fg:w="10991"/><text x="50.0446%" y="687.50">w..</text></g><g><title>step_into (2,456 samples, 0.46%)</title><rect x="51.4029%" y="661" width="0.4628%" height="15" fill="rgb(237,61,54)" fg:x="272795" fg:w="2456"/><text x="51.6529%" y="671.50"></text></g><g><title>path_init (471 samples, 0.09%)</title><rect x="51.8656%" y="693" width="0.0888%" height="15" fill="rgb(226,184,24)" fg:x="275251" fg:w="471"/><text x="52.1156%" y="703.50"></text></g><g><title>nd_jump_root (372 samples, 0.07%)</title><rect x="51.8843%" y="677" width="0.0701%" height="15" fill="rgb(223,226,4)" fg:x="275350" fg:w="372"/><text x="52.1343%" y="687.50"></text></g><g><title>set_root (297 samples, 0.06%)</title><rect x="51.8984%" y="661" width="0.0560%" height="15" fill="rgb(210,26,41)" fg:x="275425" fg:w="297"/><text x="52.1484%" y="671.50"></text></g><g><title>dput (182 samples, 0.03%)</title><rect x="51.9633%" y="677" width="0.0343%" height="15" fill="rgb(220,221,6)" fg:x="275769" fg:w="182"/><text x="52.2133%" y="687.50"></text></g><g><title>lockref_put_or_lock (122 samples, 0.02%)</title><rect x="51.9746%" y="661" width="0.0230%" height="15" fill="rgb(225,89,49)" fg:x="275829" fg:w="122"/><text x="52.2246%" y="671.50"></text></g><g><title>terminate_walk (303 samples, 0.06%)</title><rect x="51.9544%" y="693" width="0.0571%" height="15" fill="rgb(218,70,45)" fg:x="275722" fg:w="303"/><text x="52.2044%" y="703.50"></text></g><g><title>mntput_no_expire (57 samples, 0.01%)</title><rect x="52.0008%" y="677" width="0.0107%" height="15" fill="rgb(238,166,21)" fg:x="275968" fg:w="57"/><text x="52.2508%" y="687.50"></text></g><g><title>btrfs_alloc_path (73 samples, 0.01%)</title><rect x="52.0878%" y="629" width="0.0138%" height="15" fill="rgb(224,141,44)" fg:x="276430" fg:w="73"/><text x="52.3378%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (59 samples, 0.01%)</title><rect x="52.1204%" y="597" width="0.0111%" height="15" fill="rgb(230,12,49)" fg:x="276603" fg:w="59"/><text x="52.3704%" y="607.50"></text></g><g><title>free_extent_buffer.part.0 (226 samples, 0.04%)</title><rect x="52.1323%" y="597" width="0.0426%" height="15" fill="rgb(212,174,12)" fg:x="276666" fg:w="226"/><text x="52.3823%" y="607.50"></text></g><g><title>_raw_spin_lock (166 samples, 0.03%)</title><rect x="52.1436%" y="581" width="0.0313%" height="15" fill="rgb(246,67,9)" fg:x="276726" fg:w="166"/><text x="52.3936%" y="591.50"></text></g><g><title>btrfs_free_path (556 samples, 0.10%)</title><rect x="52.1016%" y="629" width="0.1048%" height="15" fill="rgb(239,35,23)" fg:x="276503" fg:w="556"/><text x="52.3516%" y="639.50"></text></g><g><title>btrfs_release_path (503 samples, 0.09%)</title><rect x="52.1116%" y="613" width="0.0948%" height="15" fill="rgb(211,167,0)" fg:x="276556" fg:w="503"/><text x="52.3616%" y="623.50"></text></g><g><title>release_extent_buffer (167 samples, 0.03%)</title><rect x="52.1749%" y="597" width="0.0315%" height="15" fill="rgb(225,119,45)" fg:x="276892" fg:w="167"/><text x="52.4249%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (72 samples, 0.01%)</title><rect x="52.2894%" y="581" width="0.0136%" height="15" fill="rgb(210,162,6)" fg:x="277500" fg:w="72"/><text x="52.5394%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (260 samples, 0.05%)</title><rect x="52.2858%" y="597" width="0.0490%" height="15" fill="rgb(208,118,35)" fg:x="277481" fg:w="260"/><text x="52.5358%" y="607.50"></text></g><g><title>btrfs_root_node (169 samples, 0.03%)</title><rect x="52.3030%" y="581" width="0.0318%" height="15" fill="rgb(239,4,53)" fg:x="277572" fg:w="169"/><text x="52.5530%" y="591.50"></text></g><g><title>dequeue_task_fair (57 samples, 0.01%)</title><rect x="52.3460%" y="549" width="0.0107%" height="15" fill="rgb(213,130,21)" fg:x="277800" fg:w="57"/><text x="52.5960%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (173 samples, 0.03%)</title><rect x="52.3348%" y="597" width="0.0326%" height="15" fill="rgb(235,148,0)" fg:x="277741" fg:w="173"/><text x="52.5848%" y="607.50"></text></g><g><title>schedule (142 samples, 0.03%)</title><rect x="52.3407%" y="581" width="0.0268%" height="15" fill="rgb(244,224,18)" fg:x="277772" fg:w="142"/><text x="52.5907%" y="591.50"></text></g><g><title>__schedule (137 samples, 0.03%)</title><rect x="52.3416%" y="565" width="0.0258%" height="15" fill="rgb(211,214,4)" fg:x="277777" fg:w="137"/><text x="52.5916%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (267 samples, 0.05%)</title><rect x="52.3772%" y="597" width="0.0503%" height="15" fill="rgb(206,119,25)" fg:x="277966" fg:w="267"/><text x="52.6272%" y="607.50"></text></g><g><title>btrfs_set_lock_blocking_read (161 samples, 0.03%)</title><rect x="52.3972%" y="581" width="0.0303%" height="15" fill="rgb(243,93,47)" fg:x="278072" fg:w="161"/><text x="52.6472%" y="591.50"></text></g><g><title>_raw_read_lock (112 samples, 0.02%)</title><rect x="52.4407%" y="581" width="0.0211%" height="15" fill="rgb(224,194,6)" fg:x="278303" fg:w="112"/><text x="52.6907%" y="591.50"></text></g><g><title>btrfs_tree_read_lock_atomic (261 samples, 0.05%)</title><rect x="52.4275%" y="597" width="0.0492%" height="15" fill="rgb(243,229,6)" fg:x="278233" fg:w="261"/><text x="52.6775%" y="607.50"></text></g><g><title>queued_read_lock_slowpath (79 samples, 0.01%)</title><rect x="52.4618%" y="581" width="0.0149%" height="15" fill="rgb(207,23,50)" fg:x="278415" fg:w="79"/><text x="52.7118%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock (140 samples, 0.03%)</title><rect x="52.4767%" y="597" width="0.0264%" height="15" fill="rgb(253,192,32)" fg:x="278494" fg:w="140"/><text x="52.7267%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,216 samples, 0.23%)</title><rect x="52.5052%" y="597" width="0.2291%" height="15" fill="rgb(213,21,6)" fg:x="278645" fg:w="1216"/><text x="52.7552%" y="607.50"></text></g><g><title>btrfs_buffer_uptodate (95 samples, 0.02%)</title><rect x="52.7680%" y="581" width="0.0179%" height="15" fill="rgb(243,151,13)" fg:x="280040" fg:w="95"/><text x="53.0180%" y="591.50"></text></g><g><title>verify_parent_transid (54 samples, 0.01%)</title><rect x="52.7758%" y="565" width="0.0102%" height="15" fill="rgb(233,165,41)" fg:x="280081" fg:w="54"/><text x="53.0258%" y="575.50"></text></g><g><title>btrfs_get_64 (144 samples, 0.03%)</title><rect x="52.7859%" y="581" width="0.0271%" height="15" fill="rgb(246,176,45)" fg:x="280135" fg:w="144"/><text x="53.0359%" y="591.50"></text></g><g><title>__radix_tree_lookup (962 samples, 0.18%)</title><rect x="52.8722%" y="565" width="0.1813%" height="15" fill="rgb(217,170,52)" fg:x="280593" fg:w="962"/><text x="53.1222%" y="575.50"></text></g><g><title>check_buffer_tree_ref (58 samples, 0.01%)</title><rect x="53.0624%" y="549" width="0.0109%" height="15" fill="rgb(214,203,54)" fg:x="281602" fg:w="58"/><text x="53.3124%" y="559.50"></text></g><g><title>mark_extent_buffer_accessed (310 samples, 0.06%)</title><rect x="53.0535%" y="565" width="0.0584%" height="15" fill="rgb(248,215,49)" fg:x="281555" fg:w="310"/><text x="53.3035%" y="575.50"></text></g><g><title>mark_page_accessed (205 samples, 0.04%)</title><rect x="53.0733%" y="549" width="0.0386%" height="15" fill="rgb(208,46,10)" fg:x="281660" fg:w="205"/><text x="53.3233%" y="559.50"></text></g><g><title>find_extent_buffer (1,537 samples, 0.29%)</title><rect x="52.8236%" y="581" width="0.2896%" height="15" fill="rgb(254,5,31)" fg:x="280335" fg:w="1537"/><text x="53.0736%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (2,200 samples, 0.41%)</title><rect x="52.7343%" y="597" width="0.4145%" height="15" fill="rgb(222,104,33)" fg:x="279861" fg:w="2200"/><text x="52.9843%" y="607.50"></text></g><g><title>read_extent_buffer (189 samples, 0.04%)</title><rect x="53.1132%" y="581" width="0.0356%" height="15" fill="rgb(248,49,16)" fg:x="281872" fg:w="189"/><text x="53.3632%" y="591.50"></text></g><g><title>btrfs_search_slot (5,083 samples, 0.96%)</title><rect x="52.2159%" y="613" width="0.9578%" height="15" fill="rgb(232,198,41)" fg:x="277110" fg:w="5083"/><text x="52.4659%" y="623.50"></text></g><g><title>unlock_up (132 samples, 0.02%)</title><rect x="53.1489%" y="597" width="0.0249%" height="15" fill="rgb(214,125,3)" fg:x="282061" fg:w="132"/><text x="53.3989%" y="607.50"></text></g><g><title>btrfs_lookup_dir_item (5,341 samples, 1.01%)</title><rect x="52.2063%" y="629" width="1.0064%" height="15" fill="rgb(229,220,28)" fg:x="277059" fg:w="5341"/><text x="52.4563%" y="639.50"></text></g><g><title>crc32c (207 samples, 0.04%)</title><rect x="53.1737%" y="613" width="0.0390%" height="15" fill="rgb(222,64,37)" fg:x="282193" fg:w="207"/><text x="53.4237%" y="623.50"></text></g><g><title>crypto_shash_update (167 samples, 0.03%)</title><rect x="53.1813%" y="597" width="0.0315%" height="15" fill="rgb(249,184,13)" fg:x="282233" fg:w="167"/><text x="53.4313%" y="607.50"></text></g><g><title>kmem_cache_alloc (302 samples, 0.06%)</title><rect x="53.2127%" y="629" width="0.0569%" height="15" fill="rgb(252,176,6)" fg:x="282400" fg:w="302"/><text x="53.4627%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (57 samples, 0.01%)</title><rect x="53.2589%" y="613" width="0.0107%" height="15" fill="rgb(228,153,7)" fg:x="282645" fg:w="57"/><text x="53.5089%" y="623.50"></text></g><g><title>btrfs_lookup (6,669 samples, 1.26%)</title><rect x="52.0324%" y="661" width="1.2566%" height="15" fill="rgb(242,193,5)" fg:x="276136" fg:w="6669"/><text x="52.2824%" y="671.50"></text></g><g><title>btrfs_lookup_dentry (6,661 samples, 1.26%)</title><rect x="52.0339%" y="645" width="1.2551%" height="15" fill="rgb(232,140,9)" fg:x="276144" fg:w="6661"/><text x="52.2839%" y="655.50"></text></g><g><title>kmem_cache_free (103 samples, 0.02%)</title><rect x="53.2696%" y="629" width="0.0194%" height="15" fill="rgb(213,222,16)" fg:x="282702" fg:w="103"/><text x="53.5196%" y="639.50"></text></g><g><title>___slab_alloc (129 samples, 0.02%)</title><rect x="53.4115%" y="581" width="0.0243%" height="15" fill="rgb(222,75,50)" fg:x="283455" fg:w="129"/><text x="53.6615%" y="591.50"></text></g><g><title>get_partial_node.part.0 (64 samples, 0.01%)</title><rect x="53.4238%" y="565" width="0.0121%" height="15" fill="rgb(205,180,2)" fg:x="283520" fg:w="64"/><text x="53.6738%" y="575.50"></text></g><g><title>__slab_alloc (138 samples, 0.03%)</title><rect x="53.4100%" y="597" width="0.0260%" height="15" fill="rgb(216,34,7)" fg:x="283447" fg:w="138"/><text x="53.6600%" y="607.50"></text></g><g><title>__mod_memcg_lruvec_state (147 samples, 0.03%)</title><rect x="53.5148%" y="581" width="0.0277%" height="15" fill="rgb(253,16,32)" fg:x="284003" fg:w="147"/><text x="53.7648%" y="591.50"></text></g><g><title>__mod_memcg_state.part.0 (91 samples, 0.02%)</title><rect x="53.5253%" y="565" width="0.0171%" height="15" fill="rgb(208,97,28)" fg:x="284059" fg:w="91"/><text x="53.7753%" y="575.50"></text></g><g><title>memcg_slab_post_alloc_hook (593 samples, 0.11%)</title><rect x="53.4360%" y="597" width="0.1117%" height="15" fill="rgb(225,92,11)" fg:x="283585" fg:w="593"/><text x="53.6860%" y="607.50"></text></g><g><title>memset_erms (62 samples, 0.01%)</title><rect x="53.5485%" y="597" width="0.0117%" height="15" fill="rgb(243,38,12)" fg:x="284182" fg:w="62"/><text x="53.7985%" y="607.50"></text></g><g><title>get_obj_cgroup_from_current (413 samples, 0.08%)</title><rect x="53.5749%" y="581" width="0.0778%" height="15" fill="rgb(208,139,16)" fg:x="284322" fg:w="413"/><text x="53.8249%" y="591.50"></text></g><g><title>obj_cgroup_charge (109 samples, 0.02%)</title><rect x="53.6527%" y="581" width="0.0205%" height="15" fill="rgb(227,24,9)" fg:x="284735" fg:w="109"/><text x="53.9027%" y="591.50"></text></g><g><title>kmem_cache_alloc (1,589 samples, 0.30%)</title><rect x="53.3748%" y="613" width="0.2994%" height="15" fill="rgb(206,62,11)" fg:x="283260" fg:w="1589"/><text x="53.6248%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (604 samples, 0.11%)</title><rect x="53.5604%" y="597" width="0.1138%" height="15" fill="rgb(228,134,27)" fg:x="284245" fg:w="604"/><text x="53.8104%" y="607.50"></text></g><g><title>__d_alloc (1,817 samples, 0.34%)</title><rect x="53.3401%" y="629" width="0.3424%" height="15" fill="rgb(205,55,33)" fg:x="283076" fg:w="1817"/><text x="53.5901%" y="639.50"></text></g><g><title>d_alloc (1,924 samples, 0.36%)</title><rect x="53.3339%" y="645" width="0.3625%" height="15" fill="rgb(243,75,43)" fg:x="283043" fg:w="1924"/><text x="53.5839%" y="655.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="53.6861%" y="629" width="0.0104%" height="15" fill="rgb(223,27,42)" fg:x="284912" fg:w="55"/><text x="53.9361%" y="639.50"></text></g><g><title>d_alloc_parallel (2,163 samples, 0.41%)</title><rect x="53.2891%" y="661" width="0.4076%" height="15" fill="rgb(232,189,33)" fg:x="282805" fg:w="2163"/><text x="53.5391%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (57 samples, 0.01%)</title><rect x="53.7554%" y="597" width="0.0107%" height="15" fill="rgb(210,9,39)" fg:x="285280" fg:w="57"/><text x="54.0054%" y="607.50"></text></g><g><title>__d_lookup_done (307 samples, 0.06%)</title><rect x="53.7134%" y="629" width="0.0578%" height="15" fill="rgb(242,85,26)" fg:x="285057" fg:w="307"/><text x="53.9634%" y="639.50"></text></g><g><title>__wake_up_common_lock (161 samples, 0.03%)</title><rect x="53.7409%" y="613" width="0.0303%" height="15" fill="rgb(248,44,4)" fg:x="285203" fg:w="161"/><text x="53.9909%" y="623.50"></text></g><g><title>__d_rehash (103 samples, 0.02%)</title><rect x="53.7712%" y="629" width="0.0194%" height="15" fill="rgb(250,96,46)" fg:x="285364" fg:w="103"/><text x="54.0212%" y="639.50"></text></g><g><title>__lookup_slow (9,435 samples, 1.78%)</title><rect x="52.0262%" y="677" width="1.7778%" height="15" fill="rgb(229,116,26)" fg:x="276103" fg:w="9435"/><text x="52.2762%" y="687.50">_..</text></g><g><title>d_splice_alias (570 samples, 0.11%)</title><rect x="53.6966%" y="661" width="0.1074%" height="15" fill="rgb(246,94,34)" fg:x="284968" fg:w="570"/><text x="53.9466%" y="671.50"></text></g><g><title>__d_add (546 samples, 0.10%)</title><rect x="53.7011%" y="645" width="0.1029%" height="15" fill="rgb(251,73,21)" fg:x="284992" fg:w="546"/><text x="53.9511%" y="655.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="53.7907%" y="629" width="0.0134%" height="15" fill="rgb(254,121,25)" fg:x="285467" fg:w="71"/><text x="54.0407%" y="639.50"></text></g><g><title>down_read (57 samples, 0.01%)</title><rect x="53.8042%" y="677" width="0.0107%" height="15" fill="rgb(215,161,49)" fg:x="285539" fg:w="57"/><text x="54.0542%" y="687.50"></text></g><g><title>__d_lookup_rcu (1,834 samples, 0.35%)</title><rect x="53.8274%" y="661" width="0.3456%" height="15" fill="rgb(221,43,13)" fg:x="285662" fg:w="1834"/><text x="54.0774%" y="671.50"></text></g><g><title>__legitimize_mnt (151 samples, 0.03%)</title><rect x="54.1820%" y="629" width="0.0285%" height="15" fill="rgb(249,5,37)" fg:x="287544" fg:w="151"/><text x="54.4320%" y="639.50"></text></g><g><title>__legitimize_path (311 samples, 0.06%)</title><rect x="54.1777%" y="645" width="0.0586%" height="15" fill="rgb(226,25,44)" fg:x="287521" fg:w="311"/><text x="54.4277%" y="655.50"></text></g><g><title>lockref_get_not_dead (137 samples, 0.03%)</title><rect x="54.2105%" y="629" width="0.0258%" height="15" fill="rgb(238,189,16)" fg:x="287695" fg:w="137"/><text x="54.4605%" y="639.50"></text></g><g><title>lookup_fast (2,272 samples, 0.43%)</title><rect x="53.8150%" y="677" width="0.4281%" height="15" fill="rgb(251,186,8)" fg:x="285596" fg:w="2272"/><text x="54.0650%" y="687.50"></text></g><g><title>try_to_unlazy (372 samples, 0.07%)</title><rect x="54.1730%" y="661" width="0.0701%" height="15" fill="rgb(254,34,31)" fg:x="287496" fg:w="372"/><text x="54.4230%" y="671.50"></text></g><g><title>_raw_spin_lock (141 samples, 0.03%)</title><rect x="54.2992%" y="613" width="0.0266%" height="15" fill="rgb(225,215,27)" fg:x="288166" fg:w="141"/><text x="54.5492%" y="623.50"></text></g><g><title>d_lru_add (320 samples, 0.06%)</title><rect x="54.2708%" y="645" width="0.0603%" height="15" fill="rgb(221,192,48)" fg:x="288015" fg:w="320"/><text x="54.5208%" y="655.50"></text></g><g><title>list_lru_add (306 samples, 0.06%)</title><rect x="54.2734%" y="629" width="0.0577%" height="15" fill="rgb(219,137,20)" fg:x="288029" fg:w="306"/><text x="54.5234%" y="639.50"></text></g><g><title>lockref_put_or_lock (64 samples, 0.01%)</title><rect x="54.3311%" y="645" width="0.0121%" height="15" fill="rgb(219,84,11)" fg:x="288335" fg:w="64"/><text x="54.5811%" y="655.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="54.3328%" y="629" width="0.0104%" height="15" fill="rgb(224,10,23)" fg:x="288344" fg:w="55"/><text x="54.5828%" y="639.50"></text></g><g><title>dput (434 samples, 0.08%)</title><rect x="54.2619%" y="661" width="0.0818%" height="15" fill="rgb(248,22,39)" fg:x="287968" fg:w="434"/><text x="54.5119%" y="671.50"></text></g><g><title>step_into (535 samples, 0.10%)</title><rect x="54.2431%" y="677" width="0.1008%" height="15" fill="rgb(212,154,20)" fg:x="287868" fg:w="535"/><text x="54.4931%" y="687.50"></text></g><g><title>path_lookupat (32,628 samples, 6.15%)</title><rect x="48.2088%" y="709" width="6.1481%" height="15" fill="rgb(236,199,50)" fg:x="255844" fg:w="32628"/><text x="48.4588%" y="719.50">path_loo..</text></g><g><title>walk_component (12,447 samples, 2.35%)</title><rect x="52.0115%" y="693" width="2.3454%" height="15" fill="rgb(211,9,17)" fg:x="276025" fg:w="12447"/><text x="52.2615%" y="703.50">w..</text></g><g><title>up_read (69 samples, 0.01%)</title><rect x="54.3439%" y="677" width="0.0130%" height="15" fill="rgb(243,216,36)" fg:x="288403" fg:w="69"/><text x="54.5939%" y="687.50"></text></g><g><title>filename_lookup (33,217 samples, 6.26%)</title><rect x="48.1036%" y="725" width="6.2591%" height="15" fill="rgb(250,2,10)" fg:x="255286" fg:w="33217"/><text x="48.3536%" y="735.50">filename..</text></g><g><title>lockref_put_or_lock (128 samples, 0.02%)</title><rect x="54.3906%" y="693" width="0.0241%" height="15" fill="rgb(226,50,48)" fg:x="288651" fg:w="128"/><text x="54.6406%" y="703.50"></text></g><g><title>_raw_spin_lock (97 samples, 0.02%)</title><rect x="54.3965%" y="677" width="0.0183%" height="15" fill="rgb(243,81,16)" fg:x="288682" fg:w="97"/><text x="54.6465%" y="687.50"></text></g><g><title>path_put (236 samples, 0.04%)</title><rect x="54.3710%" y="725" width="0.0445%" height="15" fill="rgb(250,14,2)" fg:x="288547" fg:w="236"/><text x="54.6210%" y="735.50"></text></g><g><title>dput (230 samples, 0.04%)</title><rect x="54.3721%" y="709" width="0.0433%" height="15" fill="rgb(233,135,29)" fg:x="288553" fg:w="230"/><text x="54.6221%" y="719.50"></text></g><g><title>apparmor_inode_getattr (79 samples, 0.01%)</title><rect x="54.5212%" y="709" width="0.0149%" height="15" fill="rgb(224,64,43)" fg:x="289344" fg:w="79"/><text x="54.7712%" y="719.50"></text></g><g><title>security_inode_getattr (975 samples, 0.18%)</title><rect x="54.4155%" y="725" width="0.1837%" height="15" fill="rgb(238,84,13)" fg:x="288783" fg:w="975"/><text x="54.6655%" y="735.50"></text></g><g><title>tomoyo_path_perm (326 samples, 0.06%)</title><rect x="54.5378%" y="709" width="0.0614%" height="15" fill="rgb(253,48,26)" fg:x="289432" fg:w="326"/><text x="54.7878%" y="719.50"></text></g><g><title>tomoyo_init_request_info (176 samples, 0.03%)</title><rect x="54.5660%" y="693" width="0.0332%" height="15" fill="rgb(205,223,31)" fg:x="289582" fg:w="176"/><text x="54.8160%" y="703.50"></text></g><g><title>memset_erms (969 samples, 0.18%)</title><rect x="54.7040%" y="677" width="0.1826%" height="15" fill="rgb(221,41,32)" fg:x="290314" fg:w="969"/><text x="54.9540%" y="687.50"></text></g><g><title>kmem_cache_alloc (1,639 samples, 0.31%)</title><rect x="54.6314%" y="693" width="0.3088%" height="15" fill="rgb(213,158,31)" fg:x="289929" fg:w="1639"/><text x="54.8814%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (285 samples, 0.05%)</title><rect x="54.8866%" y="677" width="0.0537%" height="15" fill="rgb(245,126,43)" fg:x="291283" fg:w="285"/><text x="55.1366%" y="687.50"></text></g><g><title>__check_heap_object (203 samples, 0.04%)</title><rect x="55.1709%" y="661" width="0.0383%" height="15" fill="rgb(227,7,22)" fg:x="292792" fg:w="203"/><text x="55.4209%" y="671.50"></text></g><g><title>__virt_addr_valid (305 samples, 0.06%)</title><rect x="55.2092%" y="661" width="0.0575%" height="15" fill="rgb(252,90,44)" fg:x="292995" fg:w="305"/><text x="55.4592%" y="671.50"></text></g><g><title>user_path_at_empty (3,563 samples, 0.67%)</title><rect x="54.5992%" y="725" width="0.6714%" height="15" fill="rgb(253,91,0)" fg:x="289758" fg:w="3563"/><text x="54.8492%" y="735.50"></text></g><g><title>getname_flags.part.0 (3,502 samples, 0.66%)</title><rect x="54.6107%" y="709" width="0.6599%" height="15" fill="rgb(252,175,49)" fg:x="289819" fg:w="3502"/><text x="54.8607%" y="719.50"></text></g><g><title>strncpy_from_user (1,753 samples, 0.33%)</title><rect x="54.9403%" y="693" width="0.3303%" height="15" fill="rgb(246,150,1)" fg:x="291568" fg:w="1753"/><text x="55.1903%" y="703.50"></text></g><g><title>__check_object_size (637 samples, 0.12%)</title><rect x="55.1506%" y="677" width="0.1200%" height="15" fill="rgb(241,192,25)" fg:x="292684" fg:w="637"/><text x="55.4006%" y="687.50"></text></g><g><title>__do_sys_newstat (39,836 samples, 7.51%)</title><rect x="47.8103%" y="757" width="7.5063%" height="15" fill="rgb(239,187,11)" fg:x="253729" fg:w="39836"/><text x="48.0603%" y="767.50">__do_sys_n..</text></g><g><title>vfs_statx (39,239 samples, 7.39%)</title><rect x="47.9227%" y="741" width="7.3938%" height="15" fill="rgb(218,202,51)" fg:x="254326" fg:w="39239"/><text x="48.1727%" y="751.50">vfs_statx</text></g><g><title>vfs_getattr_nosec (244 samples, 0.05%)</title><rect x="55.2706%" y="725" width="0.0460%" height="15" fill="rgb(225,176,8)" fg:x="293321" fg:w="244"/><text x="55.5206%" y="735.50"></text></g><g><title>do_syscall_64 (39,922 samples, 7.52%)</title><rect x="47.8021%" y="773" width="7.5225%" height="15" fill="rgb(219,122,41)" fg:x="253686" fg:w="39922"/><text x="48.0521%" y="783.50">do_syscall..</text></g><g><title>entry_SYSCALL_64_after_hwframe (40,158 samples, 7.57%)</title><rect x="47.7810%" y="789" width="7.5670%" height="15" fill="rgb(248,140,20)" fg:x="253574" fg:w="40158"/><text x="48.0310%" y="799.50">entry_SYSC..</text></g><g><title>syscall_exit_to_user_mode (124 samples, 0.02%)</title><rect x="55.3247%" y="773" width="0.0234%" height="15" fill="rgb(245,41,37)" fg:x="293608" fg:w="124"/><text x="55.5747%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (93 samples, 0.02%)</title><rect x="55.3305%" y="757" width="0.0175%" height="15" fill="rgb(235,82,39)" fg:x="293639" fg:w="93"/><text x="55.5805%" y="767.50"></text></g><g><title>syscall_return_via_sysret (210 samples, 0.04%)</title><rect x="55.3510%" y="789" width="0.0396%" height="15" fill="rgb(230,108,42)" fg:x="293748" fg:w="210"/><text x="55.6010%" y="799.50"></text></g><g><title>__GI___xstat (41,142 samples, 7.75%)</title><rect x="47.6384%" y="805" width="7.7524%" height="15" fill="rgb(215,150,50)" fg:x="252817" fg:w="41142"/><text x="47.8884%" y="815.50">__GI___xstat</text></g><g><title>crc32c_pcl_intel_update (122 samples, 0.02%)</title><rect x="55.4234%" y="789" width="0.0230%" height="15" fill="rgb(233,212,5)" fg:x="294132" fg:w="122"/><text x="55.6734%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (124 samples, 0.02%)</title><rect x="55.4464%" y="789" width="0.0234%" height="15" fill="rgb(245,80,22)" fg:x="294254" fg:w="124"/><text x="55.6964%" y="799.50"></text></g><g><title>memset_erms (591 samples, 0.11%)</title><rect x="55.5240%" y="709" width="0.1114%" height="15" fill="rgb(238,129,16)" fg:x="294666" fg:w="591"/><text x="55.7740%" y="719.50"></text></g><g><title>kmem_cache_alloc (760 samples, 0.14%)</title><rect x="55.5012%" y="725" width="0.1432%" height="15" fill="rgb(240,19,0)" fg:x="294545" fg:w="760"/><text x="55.7512%" y="735.50"></text></g><g><title>__virt_addr_valid (181 samples, 0.03%)</title><rect x="55.7117%" y="693" width="0.0341%" height="15" fill="rgb(232,42,35)" fg:x="295662" fg:w="181"/><text x="55.9617%" y="703.50"></text></g><g><title>__check_object_size (297 samples, 0.06%)</title><rect x="55.6929%" y="709" width="0.0560%" height="15" fill="rgb(223,130,24)" fg:x="295562" fg:w="297"/><text x="55.9429%" y="719.50"></text></g><g><title>__x64_sys_unlinkat (1,422 samples, 0.27%)</title><rect x="55.4811%" y="757" width="0.2679%" height="15" fill="rgb(237,16,22)" fg:x="294438" fg:w="1422"/><text x="55.7311%" y="767.50"></text></g><g><title>getname_flags.part.0 (1,387 samples, 0.26%)</title><rect x="55.4877%" y="741" width="0.2614%" height="15" fill="rgb(248,192,20)" fg:x="294473" fg:w="1387"/><text x="55.7377%" y="751.50"></text></g><g><title>strncpy_from_user (555 samples, 0.10%)</title><rect x="55.6444%" y="725" width="0.1046%" height="15" fill="rgb(233,167,2)" fg:x="295305" fg:w="555"/><text x="55.8944%" y="735.50"></text></g><g><title>filename_parentat (69 samples, 0.01%)</title><rect x="55.7662%" y="741" width="0.0130%" height="15" fill="rgb(252,71,44)" fg:x="295951" fg:w="69"/><text x="56.0162%" y="751.50"></text></g><g><title>path_parentat (68 samples, 0.01%)</title><rect x="55.7663%" y="725" width="0.0128%" height="15" fill="rgb(238,37,47)" fg:x="295952" fg:w="68"/><text x="56.0163%" y="735.50"></text></g><g><title>__btrfs_end_transaction (60 samples, 0.01%)</title><rect x="55.8033%" y="709" width="0.0113%" height="15" fill="rgb(214,202,54)" fg:x="296148" fg:w="60"/><text x="56.0533%" y="719.50"></text></g><g><title>read_block_for_search.isra.0 (54 samples, 0.01%)</title><rect x="55.8462%" y="645" width="0.0102%" height="15" fill="rgb(254,165,40)" fg:x="296376" fg:w="54"/><text x="56.0962%" y="655.50"></text></g><g><title>btrfs_lookup_dir_index_item (155 samples, 0.03%)</title><rect x="55.8282%" y="677" width="0.0292%" height="15" fill="rgb(246,173,38)" fg:x="296280" fg:w="155"/><text x="56.0782%" y="687.50"></text></g><g><title>btrfs_search_slot (154 samples, 0.03%)</title><rect x="55.8283%" y="661" width="0.0290%" height="15" fill="rgb(215,3,27)" fg:x="296281" fg:w="154"/><text x="56.0783%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (66 samples, 0.01%)</title><rect x="55.8777%" y="645" width="0.0124%" height="15" fill="rgb(239,169,51)" fg:x="296543" fg:w="66"/><text x="56.1277%" y="655.50"></text></g><g><title>btrfs_search_slot (181 samples, 0.03%)</title><rect x="55.8579%" y="661" width="0.0341%" height="15" fill="rgb(212,5,25)" fg:x="296438" fg:w="181"/><text x="56.1079%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (186 samples, 0.04%)</title><rect x="55.8574%" y="677" width="0.0350%" height="15" fill="rgb(243,45,17)" fg:x="296435" fg:w="186"/><text x="56.1074%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (479 samples, 0.09%)</title><rect x="55.8197%" y="693" width="0.0903%" height="15" fill="rgb(242,97,9)" fg:x="296235" fg:w="479"/><text x="56.0697%" y="703.50"></text></g><g><title>btrfs_free_path (71 samples, 0.01%)</title><rect x="55.9145%" y="661" width="0.0134%" height="15" fill="rgb(228,71,31)" fg:x="296738" fg:w="71"/><text x="56.1645%" y="671.50"></text></g><g><title>btrfs_release_path (69 samples, 0.01%)</title><rect x="55.9148%" y="645" width="0.0130%" height="15" fill="rgb(252,184,16)" fg:x="296740" fg:w="69"/><text x="56.1648%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (73 samples, 0.01%)</title><rect x="55.9568%" y="645" width="0.0138%" height="15" fill="rgb(236,169,46)" fg:x="296963" fg:w="73"/><text x="56.2068%" y="655.50"></text></g><g><title>find_extent_buffer (73 samples, 0.01%)</title><rect x="55.9768%" y="629" width="0.0138%" height="15" fill="rgb(207,17,47)" fg:x="297069" fg:w="73"/><text x="56.2268%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (122 samples, 0.02%)</title><rect x="55.9706%" y="645" width="0.0230%" height="15" fill="rgb(206,201,28)" fg:x="297036" fg:w="122"/><text x="56.2206%" y="655.50"></text></g><g><title>btrfs_search_slot (369 samples, 0.07%)</title><rect x="55.9278%" y="661" width="0.0695%" height="15" fill="rgb(224,184,23)" fg:x="296809" fg:w="369"/><text x="56.1778%" y="671.50"></text></g><g><title>btrfs_del_inode_ref (501 samples, 0.09%)</title><rect x="55.9114%" y="677" width="0.0944%" height="15" fill="rgb(208,139,48)" fg:x="296722" fg:w="501"/><text x="56.1614%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (528 samples, 0.10%)</title><rect x="55.9099%" y="693" width="0.0995%" height="15" fill="rgb(208,130,10)" fg:x="296714" fg:w="528"/><text x="56.1599%" y="703.50"></text></g><g><title>_find_next_bit.constprop.0 (82 samples, 0.02%)</title><rect x="56.0262%" y="613" width="0.0155%" height="15" fill="rgb(211,213,45)" fg:x="297331" fg:w="82"/><text x="56.2762%" y="623.50"></text></g><g><title>__btrfs_add_free_space (112 samples, 0.02%)</title><rect x="56.0226%" y="645" width="0.0211%" height="15" fill="rgb(235,100,30)" fg:x="297312" fg:w="112"/><text x="56.2726%" y="655.50"></text></g><g><title>steal_from_bitmap.part.0 (112 samples, 0.02%)</title><rect x="56.0226%" y="629" width="0.0211%" height="15" fill="rgb(206,144,31)" fg:x="297312" fg:w="112"/><text x="56.2726%" y="639.50"></text></g><g><title>btrfs_free_tree_block (127 samples, 0.02%)</title><rect x="56.0226%" y="661" width="0.0239%" height="15" fill="rgb(224,200,26)" fg:x="297312" fg:w="127"/><text x="56.2726%" y="671.50"></text></g><g><title>btrfs_del_leaf (129 samples, 0.02%)</title><rect x="56.0224%" y="677" width="0.0243%" height="15" fill="rgb(247,104,53)" fg:x="297311" fg:w="129"/><text x="56.2724%" y="687.50"></text></g><g><title>btrfs_get_token_32 (204 samples, 0.04%)</title><rect x="56.0479%" y="677" width="0.0384%" height="15" fill="rgb(220,14,17)" fg:x="297446" fg:w="204"/><text x="56.2979%" y="687.50"></text></g><g><title>btrfs_set_token_32 (163 samples, 0.03%)</title><rect x="56.0888%" y="677" width="0.0307%" height="15" fill="rgb(230,140,40)" fg:x="297663" fg:w="163"/><text x="56.3388%" y="687.50"></text></g><g><title>memmove_extent_buffer (115 samples, 0.02%)</title><rect x="56.1287%" y="677" width="0.0217%" height="15" fill="rgb(229,2,41)" fg:x="297875" fg:w="115"/><text x="56.3787%" y="687.50"></text></g><g><title>memmove (97 samples, 0.02%)</title><rect x="56.1321%" y="661" width="0.0183%" height="15" fill="rgb(232,89,16)" fg:x="297893" fg:w="97"/><text x="56.3821%" y="671.50"></text></g><g><title>__push_leaf_right (69 samples, 0.01%)</title><rect x="56.1538%" y="661" width="0.0130%" height="15" fill="rgb(247,59,52)" fg:x="298008" fg:w="69"/><text x="56.4038%" y="671.50"></text></g><g><title>push_leaf_right (72 samples, 0.01%)</title><rect x="56.1538%" y="677" width="0.0136%" height="15" fill="rgb(226,110,21)" fg:x="298008" fg:w="72"/><text x="56.4038%" y="687.50"></text></g><g><title>btrfs_del_items (839 samples, 0.16%)</title><rect x="56.0094%" y="693" width="0.1581%" height="15" fill="rgb(224,176,43)" fg:x="297242" fg:w="839"/><text x="56.2594%" y="703.50"></text></g><g><title>btrfs_delete_delayed_dir_index (182 samples, 0.03%)</title><rect x="56.1764%" y="693" width="0.0343%" height="15" fill="rgb(221,73,6)" fg:x="298128" fg:w="182"/><text x="56.4264%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (86 samples, 0.02%)</title><rect x="56.2450%" y="661" width="0.0162%" height="15" fill="rgb(232,78,19)" fg:x="298492" fg:w="86"/><text x="56.4950%" y="671.50"></text></g><g><title>find_extent_buffer (92 samples, 0.02%)</title><rect x="56.2674%" y="645" width="0.0173%" height="15" fill="rgb(233,112,48)" fg:x="298611" fg:w="92"/><text x="56.5174%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (139 samples, 0.03%)</title><rect x="56.2612%" y="661" width="0.0262%" height="15" fill="rgb(243,131,47)" fg:x="298578" fg:w="139"/><text x="56.5112%" y="671.50"></text></g><g><title>btrfs_search_slot (359 samples, 0.07%)</title><rect x="56.2240%" y="677" width="0.0676%" height="15" fill="rgb(226,51,1)" fg:x="298381" fg:w="359"/><text x="56.4740%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (429 samples, 0.08%)</title><rect x="56.2146%" y="693" width="0.0808%" height="15" fill="rgb(247,58,7)" fg:x="298331" fg:w="429"/><text x="56.4646%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (65 samples, 0.01%)</title><rect x="56.3041%" y="677" width="0.0122%" height="15" fill="rgb(209,7,32)" fg:x="298806" fg:w="65"/><text x="56.5541%" y="687.50"></text></g><g><title>btrfs_update_inode (90 samples, 0.02%)</title><rect x="56.3030%" y="693" width="0.0170%" height="15" fill="rgb(209,39,41)" fg:x="298800" fg:w="90"/><text x="56.5530%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (2,715 samples, 0.51%)</title><rect x="55.8146%" y="709" width="0.5116%" height="15" fill="rgb(226,182,46)" fg:x="296208" fg:w="2715"/><text x="56.0646%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (63 samples, 0.01%)</title><rect x="56.3610%" y="645" width="0.0119%" height="15" fill="rgb(230,219,10)" fg:x="299108" fg:w="63"/><text x="56.6110%" y="655.50"></text></g><g><title>__radix_tree_lookup (59 samples, 0.01%)</title><rect x="56.3825%" y="613" width="0.0111%" height="15" fill="rgb(227,175,30)" fg:x="299222" fg:w="59"/><text x="56.6325%" y="623.50"></text></g><g><title>find_extent_buffer (101 samples, 0.02%)</title><rect x="56.3784%" y="629" width="0.0190%" height="15" fill="rgb(217,2,50)" fg:x="299200" fg:w="101"/><text x="56.6284%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (142 samples, 0.03%)</title><rect x="56.3729%" y="645" width="0.0268%" height="15" fill="rgb(229,160,0)" fg:x="299171" fg:w="142"/><text x="56.6229%" y="655.50"></text></g><g><title>btrfs_search_slot (346 samples, 0.07%)</title><rect x="56.3407%" y="661" width="0.0652%" height="15" fill="rgb(207,78,37)" fg:x="299000" fg:w="346"/><text x="56.5907%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (442 samples, 0.08%)</title><rect x="56.3397%" y="677" width="0.0833%" height="15" fill="rgb(225,57,0)" fg:x="298995" fg:w="442"/><text x="56.5897%" y="687.50"></text></g><g><title>setup_items_for_insert (91 samples, 0.02%)</title><rect x="56.4059%" y="661" width="0.0171%" height="15" fill="rgb(232,154,2)" fg:x="299346" fg:w="91"/><text x="56.6559%" y="671.50"></text></g><g><title>btrfs_orphan_add (517 samples, 0.10%)</title><rect x="56.3298%" y="709" width="0.0974%" height="15" fill="rgb(241,212,25)" fg:x="298942" fg:w="517"/><text x="56.5798%" y="719.50"></text></g><g><title>btrfs_insert_orphan_item (516 samples, 0.10%)</title><rect x="56.3299%" y="693" width="0.0972%" height="15" fill="rgb(226,69,20)" fg:x="298943" fg:w="516"/><text x="56.5799%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (64 samples, 0.01%)</title><rect x="56.4283%" y="693" width="0.0121%" height="15" fill="rgb(247,184,54)" fg:x="299465" fg:w="64"/><text x="56.6783%" y="703.50"></text></g><g><title>btrfs_update_inode (81 samples, 0.02%)</title><rect x="56.4275%" y="709" width="0.0153%" height="15" fill="rgb(210,145,0)" fg:x="299461" fg:w="81"/><text x="56.6775%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (79 samples, 0.01%)</title><rect x="56.4487%" y="693" width="0.0149%" height="15" fill="rgb(253,82,12)" fg:x="299573" fg:w="79"/><text x="56.6987%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (63 samples, 0.01%)</title><rect x="56.4517%" y="677" width="0.0119%" height="15" fill="rgb(245,42,11)" fg:x="299589" fg:w="63"/><text x="56.7017%" y="687.50"></text></g><g><title>__reserve_bytes (62 samples, 0.01%)</title><rect x="56.4519%" y="661" width="0.0117%" height="15" fill="rgb(219,147,32)" fg:x="299590" fg:w="62"/><text x="56.7019%" y="671.50"></text></g><g><title>btrfs_rmdir (3,565 samples, 0.67%)</title><rect x="55.8001%" y="725" width="0.6718%" height="15" fill="rgb(246,12,7)" fg:x="296131" fg:w="3565"/><text x="56.0501%" y="735.50"></text></g><g><title>start_transaction (148 samples, 0.03%)</title><rect x="56.4439%" y="709" width="0.0279%" height="15" fill="rgb(243,50,9)" fg:x="299548" fg:w="148"/><text x="56.6939%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (72 samples, 0.01%)</title><rect x="56.4914%" y="693" width="0.0136%" height="15" fill="rgb(219,149,6)" fg:x="299800" fg:w="72"/><text x="56.7414%" y="703.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (58 samples, 0.01%)</title><rect x="56.5140%" y="693" width="0.0109%" height="15" fill="rgb(241,51,42)" fg:x="299920" fg:w="58"/><text x="56.7640%" y="703.50"></text></g><g><title>btrfs_destroy_inode (242 samples, 0.05%)</title><rect x="56.4884%" y="709" width="0.0456%" height="15" fill="rgb(226,128,27)" fg:x="299784" fg:w="242"/><text x="56.7384%" y="719.50"></text></g><g><title>destroy_inode (267 samples, 0.05%)</title><rect x="56.4846%" y="725" width="0.0503%" height="15" fill="rgb(244,144,4)" fg:x="299764" fg:w="267"/><text x="56.7346%" y="735.50"></text></g><g><title>__btrfs_end_transaction (82 samples, 0.02%)</title><rect x="56.5472%" y="693" width="0.0155%" height="15" fill="rgb(221,4,13)" fg:x="300096" fg:w="82"/><text x="56.7972%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (80 samples, 0.02%)</title><rect x="56.5627%" y="693" width="0.0151%" height="15" fill="rgb(208,170,28)" fg:x="300178" fg:w="80"/><text x="56.8127%" y="703.50"></text></g><g><title>radix_tree_delete_item (61 samples, 0.01%)</title><rect x="56.5662%" y="677" width="0.0115%" height="15" fill="rgb(226,131,13)" fg:x="300197" fg:w="61"/><text x="56.8162%" y="687.50"></text></g><g><title>btrfs_get_token_32 (294 samples, 0.06%)</title><rect x="56.6241%" y="645" width="0.0554%" height="15" fill="rgb(215,72,41)" fg:x="300504" fg:w="294"/><text x="56.8741%" y="655.50"></text></g><g><title>btrfs_set_token_32 (255 samples, 0.05%)</title><rect x="56.6821%" y="645" width="0.0480%" height="15" fill="rgb(243,108,20)" fg:x="300812" fg:w="255"/><text x="56.9321%" y="655.50"></text></g><g><title>memmove_extent_buffer (137 samples, 0.03%)</title><rect x="56.7392%" y="645" width="0.0258%" height="15" fill="rgb(230,189,17)" fg:x="301115" fg:w="137"/><text x="56.9892%" y="655.50"></text></g><g><title>memmove (110 samples, 0.02%)</title><rect x="56.7443%" y="629" width="0.0207%" height="15" fill="rgb(220,50,17)" fg:x="301142" fg:w="110"/><text x="56.9943%" y="639.50"></text></g><g><title>btrfs_del_items (909 samples, 0.17%)</title><rect x="56.5996%" y="661" width="0.1713%" height="15" fill="rgb(248,152,48)" fg:x="300374" fg:w="909"/><text x="56.8496%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (78 samples, 0.01%)</title><rect x="56.7920%" y="629" width="0.0147%" height="15" fill="rgb(244,91,11)" fg:x="301395" fg:w="78"/><text x="57.0420%" y="639.50"></text></g><g><title>find_extent_buffer (83 samples, 0.02%)</title><rect x="56.8136%" y="613" width="0.0156%" height="15" fill="rgb(220,157,5)" fg:x="301510" fg:w="83"/><text x="57.0636%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (131 samples, 0.02%)</title><rect x="56.8067%" y="629" width="0.0247%" height="15" fill="rgb(253,137,8)" fg:x="301473" fg:w="131"/><text x="57.0567%" y="639.50"></text></g><g><title>btrfs_lookup_inode (310 samples, 0.06%)</title><rect x="56.7760%" y="661" width="0.0584%" height="15" fill="rgb(217,137,51)" fg:x="301310" fg:w="310"/><text x="57.0260%" y="671.50"></text></g><g><title>btrfs_search_slot (305 samples, 0.06%)</title><rect x="56.7769%" y="645" width="0.0575%" height="15" fill="rgb(218,209,53)" fg:x="301315" fg:w="305"/><text x="57.0269%" y="655.50"></text></g><g><title>__btrfs_update_delayed_inode (1,359 samples, 0.26%)</title><rect x="56.5969%" y="677" width="0.2561%" height="15" fill="rgb(249,137,25)" fg:x="300360" fg:w="1359"/><text x="56.8469%" y="687.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,519 samples, 0.29%)</title><rect x="56.5862%" y="693" width="0.2862%" height="15" fill="rgb(239,155,26)" fg:x="300303" fg:w="1519"/><text x="56.8362%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (77 samples, 0.01%)</title><rect x="56.9077%" y="661" width="0.0145%" height="15" fill="rgb(227,85,46)" fg:x="302009" fg:w="77"/><text x="57.1577%" y="671.50"></text></g><g><title>find_extent_buffer (75 samples, 0.01%)</title><rect x="56.9271%" y="645" width="0.0141%" height="15" fill="rgb(251,107,43)" fg:x="302112" fg:w="75"/><text x="57.1771%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (116 samples, 0.02%)</title><rect x="56.9222%" y="661" width="0.0219%" height="15" fill="rgb(234,170,33)" fg:x="302086" fg:w="116"/><text x="57.1722%" y="671.50"></text></g><g><title>btrfs_search_slot (305 samples, 0.06%)</title><rect x="56.8901%" y="677" width="0.0575%" height="15" fill="rgb(206,29,35)" fg:x="301916" fg:w="305"/><text x="57.1401%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (419 samples, 0.08%)</title><rect x="56.8724%" y="693" width="0.0790%" height="15" fill="rgb(227,138,25)" fg:x="301822" fg:w="419"/><text x="57.1224%" y="703.50"></text></g><g><title>clear_state_bit (54 samples, 0.01%)</title><rect x="56.9795%" y="661" width="0.0102%" height="15" fill="rgb(249,131,35)" fg:x="302390" fg:w="54"/><text x="57.2295%" y="671.50"></text></g><g><title>__clear_extent_bit (108 samples, 0.02%)</title><rect x="56.9715%" y="677" width="0.0204%" height="15" fill="rgb(239,6,40)" fg:x="302348" fg:w="108"/><text x="57.2215%" y="687.50"></text></g><g><title>_find_next_bit.constprop.0 (466 samples, 0.09%)</title><rect x="57.0320%" y="597" width="0.0878%" height="15" fill="rgb(246,136,47)" fg:x="302669" fg:w="466"/><text x="57.2820%" y="607.50"></text></g><g><title>steal_from_bitmap.part.0 (563 samples, 0.11%)</title><rect x="57.0188%" y="613" width="0.1061%" height="15" fill="rgb(253,58,26)" fg:x="302599" fg:w="563"/><text x="57.2688%" y="623.50"></text></g><g><title>__btrfs_add_free_space (577 samples, 0.11%)</title><rect x="57.0171%" y="629" width="0.1087%" height="15" fill="rgb(237,141,10)" fg:x="302590" fg:w="577"/><text x="57.2671%" y="639.50"></text></g><g><title>btrfs_free_tree_block (625 samples, 0.12%)</title><rect x="57.0171%" y="645" width="0.1178%" height="15" fill="rgb(234,156,12)" fg:x="302590" fg:w="625"/><text x="57.2671%" y="655.50"></text></g><g><title>btrfs_del_leaf (631 samples, 0.12%)</title><rect x="57.0170%" y="661" width="0.1189%" height="15" fill="rgb(243,224,36)" fg:x="302589" fg:w="631"/><text x="57.2670%" y="671.50"></text></g><g><title>btrfs_get_token_32 (268 samples, 0.05%)</title><rect x="57.1423%" y="661" width="0.0505%" height="15" fill="rgb(205,229,51)" fg:x="303254" fg:w="268"/><text x="57.3923%" y="671.50"></text></g><g><title>btrfs_set_token_32 (270 samples, 0.05%)</title><rect x="57.1954%" y="661" width="0.0509%" height="15" fill="rgb(223,189,4)" fg:x="303536" fg:w="270"/><text x="57.4454%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (62 samples, 0.01%)</title><rect x="57.2346%" y="645" width="0.0117%" height="15" fill="rgb(249,167,54)" fg:x="303744" fg:w="62"/><text x="57.4846%" y="655.50"></text></g><g><title>memmove_extent_buffer (143 samples, 0.03%)</title><rect x="57.2606%" y="661" width="0.0269%" height="15" fill="rgb(218,34,28)" fg:x="303882" fg:w="143"/><text x="57.5106%" y="671.50"></text></g><g><title>memmove (106 samples, 0.02%)</title><rect x="57.2676%" y="645" width="0.0200%" height="15" fill="rgb(232,109,42)" fg:x="303919" fg:w="106"/><text x="57.5176%" y="655.50"></text></g><g><title>push_leaf_left (65 samples, 0.01%)</title><rect x="57.2875%" y="661" width="0.0122%" height="15" fill="rgb(248,214,46)" fg:x="304025" fg:w="65"/><text x="57.5375%" y="671.50"></text></g><g><title>btrfs_del_items (1,693 samples, 0.32%)</title><rect x="56.9919%" y="677" width="0.3190%" height="15" fill="rgb(244,216,40)" fg:x="302456" fg:w="1693"/><text x="57.2419%" y="687.50"></text></g><g><title>alloc_extent_map (66 samples, 0.01%)</title><rect x="57.3130%" y="661" width="0.0124%" height="15" fill="rgb(231,226,31)" fg:x="304160" fg:w="66"/><text x="57.5630%" y="671.50"></text></g><g><title>btrfs_drop_extent_cache (110 samples, 0.02%)</title><rect x="57.3109%" y="677" width="0.0207%" height="15" fill="rgb(238,38,43)" fg:x="304149" fg:w="110"/><text x="57.5609%" y="687.50"></text></g><g><title>btrfs_free_path (64 samples, 0.01%)</title><rect x="57.3316%" y="677" width="0.0121%" height="15" fill="rgb(208,88,43)" fg:x="304259" fg:w="64"/><text x="57.5816%" y="687.50"></text></g><g><title>btrfs_release_path (64 samples, 0.01%)</title><rect x="57.3316%" y="661" width="0.0121%" height="15" fill="rgb(205,136,37)" fg:x="304259" fg:w="64"/><text x="57.5816%" y="671.50"></text></g><g><title>_raw_spin_lock (75 samples, 0.01%)</title><rect x="57.3561%" y="629" width="0.0141%" height="15" fill="rgb(237,34,14)" fg:x="304389" fg:w="75"/><text x="57.6061%" y="639.50"></text></g><g><title>btrfs_block_rsv_release (115 samples, 0.02%)</title><rect x="57.3507%" y="645" width="0.0217%" height="15" fill="rgb(236,193,44)" fg:x="304360" fg:w="115"/><text x="57.6007%" y="655.50"></text></g><g><title>finish_one_item (77 samples, 0.01%)</title><rect x="57.3821%" y="629" width="0.0145%" height="15" fill="rgb(231,48,10)" fg:x="304527" fg:w="77"/><text x="57.6321%" y="639.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (188 samples, 0.04%)</title><rect x="57.3723%" y="645" width="0.0354%" height="15" fill="rgb(213,141,34)" fg:x="304475" fg:w="188"/><text x="57.6223%" y="655.50"></text></g><g><title>kfree (144 samples, 0.03%)</title><rect x="57.4078%" y="645" width="0.0271%" height="15" fill="rgb(249,130,34)" fg:x="304663" fg:w="144"/><text x="57.6578%" y="655.50"></text></g><g><title>__btrfs_kill_delayed_node (479 samples, 0.09%)</title><rect x="57.3475%" y="661" width="0.0903%" height="15" fill="rgb(219,42,41)" fg:x="304343" fg:w="479"/><text x="57.5975%" y="671.50"></text></g><g><title>btrfs_kill_delayed_inode_items (490 samples, 0.09%)</title><rect x="57.3473%" y="677" width="0.0923%" height="15" fill="rgb(224,100,54)" fg:x="304342" fg:w="490"/><text x="57.5973%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (84 samples, 0.02%)</title><rect x="57.4601%" y="661" width="0.0158%" height="15" fill="rgb(229,200,27)" fg:x="304941" fg:w="84"/><text x="57.7101%" y="671.50"></text></g><g><title>find_extent_buffer (76 samples, 0.01%)</title><rect x="57.4818%" y="645" width="0.0143%" height="15" fill="rgb(217,118,10)" fg:x="305056" fg:w="76"/><text x="57.7318%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (120 samples, 0.02%)</title><rect x="57.4760%" y="661" width="0.0226%" height="15" fill="rgb(206,22,3)" fg:x="305025" fg:w="120"/><text x="57.7260%" y="671.50"></text></g><g><title>btrfs_search_slot (334 samples, 0.06%)</title><rect x="57.4404%" y="677" width="0.0629%" height="15" fill="rgb(232,163,46)" fg:x="304836" fg:w="334"/><text x="57.6904%" y="687.50"></text></g><g><title>lock_extent_bits (88 samples, 0.02%)</title><rect x="57.5048%" y="677" width="0.0166%" height="15" fill="rgb(206,95,13)" fg:x="305178" fg:w="88"/><text x="57.7548%" y="687.50"></text></g><g><title>__set_extent_bit (86 samples, 0.02%)</title><rect x="57.5052%" y="661" width="0.0162%" height="15" fill="rgb(253,154,18)" fg:x="305180" fg:w="86"/><text x="57.7552%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (3,066 samples, 0.58%)</title><rect x="56.9561%" y="693" width="0.5777%" height="15" fill="rgb(219,32,23)" fg:x="302266" fg:w="3066"/><text x="57.2061%" y="703.50"></text></g><g><title>read_extent_buffer (66 samples, 0.01%)</title><rect x="57.5214%" y="677" width="0.0124%" height="15" fill="rgb(230,191,45)" fg:x="305266" fg:w="66"/><text x="57.7714%" y="687.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (72 samples, 0.01%)</title><rect x="57.5480%" y="629" width="0.0136%" height="15" fill="rgb(229,64,36)" fg:x="305407" fg:w="72"/><text x="57.7980%" y="639.50"></text></g><g><title>btrfs_block_rsv_refill (172 samples, 0.03%)</title><rect x="57.5374%" y="677" width="0.0324%" height="15" fill="rgb(205,129,25)" fg:x="305351" fg:w="172"/><text x="57.7874%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (141 samples, 0.03%)</title><rect x="57.5432%" y="661" width="0.0266%" height="15" fill="rgb(254,112,7)" fg:x="305382" fg:w="141"/><text x="57.7932%" y="671.50"></text></g><g><title>__reserve_bytes (140 samples, 0.03%)</title><rect x="57.5434%" y="645" width="0.0264%" height="15" fill="rgb(226,53,48)" fg:x="305383" fg:w="140"/><text x="57.7934%" y="655.50"></text></g><g><title>evict_refill_and_join (283 samples, 0.05%)</title><rect x="57.5338%" y="693" width="0.0533%" height="15" fill="rgb(214,153,38)" fg:x="305332" fg:w="283"/><text x="57.7838%" y="703.50"></text></g><g><title>start_transaction (92 samples, 0.02%)</title><rect x="57.5698%" y="677" width="0.0173%" height="15" fill="rgb(243,101,7)" fg:x="305523" fg:w="92"/><text x="57.8198%" y="687.50"></text></g><g><title>btrfs_evict_inode (5,595 samples, 1.05%)</title><rect x="56.5455%" y="709" width="1.0543%" height="15" fill="rgb(240,140,22)" fg:x="300087" fg:w="5595"/><text x="56.7955%" y="719.50"></text></g><g><title>evict (5,671 samples, 1.07%)</title><rect x="56.5363%" y="725" width="1.0686%" height="15" fill="rgb(235,114,2)" fg:x="300038" fg:w="5671"/><text x="56.7863%" y="735.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="57.6237%" y="693" width="0.0124%" height="15" fill="rgb(242,59,12)" fg:x="305809" fg:w="66"/><text x="57.8737%" y="703.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="57.6691%" y="645" width="0.0115%" height="15" fill="rgb(252,134,9)" fg:x="306050" fg:w="61"/><text x="57.9191%" y="655.50"></text></g><g><title>d_lru_del (374 samples, 0.07%)</title><rect x="57.6435%" y="677" width="0.0705%" height="15" fill="rgb(236,4,44)" fg:x="305914" fg:w="374"/><text x="57.8935%" y="687.50"></text></g><g><title>list_lru_del (365 samples, 0.07%)</title><rect x="57.6452%" y="661" width="0.0688%" height="15" fill="rgb(254,172,41)" fg:x="305923" fg:w="365"/><text x="57.8952%" y="671.50"></text></g><g><title>mem_cgroup_from_obj (177 samples, 0.03%)</title><rect x="57.6806%" y="645" width="0.0334%" height="15" fill="rgb(244,63,20)" fg:x="306111" fg:w="177"/><text x="57.9306%" y="655.50"></text></g><g><title>d_walk (538 samples, 0.10%)</title><rect x="57.6169%" y="709" width="0.1014%" height="15" fill="rgb(250,73,31)" fg:x="305773" fg:w="538"/><text x="57.8669%" y="719.50"></text></g><g><title>select_collect (436 samples, 0.08%)</title><rect x="57.6361%" y="693" width="0.0822%" height="15" fill="rgb(241,38,36)" fg:x="305875" fg:w="436"/><text x="57.8861%" y="703.50"></text></g><g><title>___d_drop (244 samples, 0.05%)</title><rect x="57.7294%" y="677" width="0.0460%" height="15" fill="rgb(245,211,2)" fg:x="306370" fg:w="244"/><text x="57.9794%" y="687.50"></text></g><g><title>call_rcu (281 samples, 0.05%)</title><rect x="57.7884%" y="677" width="0.0529%" height="15" fill="rgb(206,120,28)" fg:x="306683" fg:w="281"/><text x="58.0384%" y="687.50"></text></g><g><title>rcu_segcblist_enqueue (148 samples, 0.03%)</title><rect x="57.8135%" y="661" width="0.0279%" height="15" fill="rgb(211,59,34)" fg:x="306816" fg:w="148"/><text x="58.0635%" y="671.50"></text></g><g><title>__dentry_kill (648 samples, 0.12%)</title><rect x="57.7211%" y="693" width="0.1221%" height="15" fill="rgb(233,168,5)" fg:x="306326" fg:w="648"/><text x="57.9711%" y="703.50"></text></g><g><title>__dput_to_list (56 samples, 0.01%)</title><rect x="57.8432%" y="693" width="0.0106%" height="15" fill="rgb(234,33,13)" fg:x="306974" fg:w="56"/><text x="58.0932%" y="703.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="57.8555%" y="693" width="0.0115%" height="15" fill="rgb(231,150,26)" fg:x="307039" fg:w="61"/><text x="58.1055%" y="703.50"></text></g><g><title>shrink_dcache_parent (1,471 samples, 0.28%)</title><rect x="57.6154%" y="725" width="0.2772%" height="15" fill="rgb(217,191,4)" fg:x="305765" fg:w="1471"/><text x="57.8654%" y="735.50"></text></g><g><title>shrink_dentry_list (925 samples, 0.17%)</title><rect x="57.7183%" y="709" width="0.1743%" height="15" fill="rgb(246,198,38)" fg:x="306311" fg:w="925"/><text x="57.9683%" y="719.50"></text></g><g><title>shrink_lock_dentry.part.0 (92 samples, 0.02%)</title><rect x="57.8753%" y="693" width="0.0173%" height="15" fill="rgb(245,64,37)" fg:x="307144" fg:w="92"/><text x="58.1253%" y="703.50"></text></g><g><title>_raw_spin_trylock (73 samples, 0.01%)</title><rect x="57.8788%" y="677" width="0.0138%" height="15" fill="rgb(250,30,36)" fg:x="307163" fg:w="73"/><text x="58.1288%" y="687.50"></text></g><g><title>do_rmdir (11,381 samples, 2.14%)</title><rect x="55.7490%" y="757" width="2.1445%" height="15" fill="rgb(217,86,53)" fg:x="295860" fg:w="11381"/><text x="55.9990%" y="767.50">d..</text></g><g><title>vfs_rmdir.part.0 (11,118 samples, 2.09%)</title><rect x="55.7986%" y="741" width="2.0950%" height="15" fill="rgb(228,157,16)" fg:x="296123" fg:w="11118"/><text x="56.0486%" y="751.50">v..</text></g><g><title>_raw_spin_lock (145 samples, 0.03%)</title><rect x="58.0778%" y="677" width="0.0273%" height="15" fill="rgb(217,59,31)" fg:x="308219" fg:w="145"/><text x="58.3278%" y="687.50"></text></g><g><title>__lookup_hash (1,059 samples, 0.20%)</title><rect x="57.9065%" y="741" width="0.1995%" height="15" fill="rgb(237,138,41)" fg:x="307310" fg:w="1059"/><text x="58.1565%" y="751.50"></text></g><g><title>lookup_dcache (1,045 samples, 0.20%)</title><rect x="57.9092%" y="725" width="0.1969%" height="15" fill="rgb(227,91,49)" fg:x="307324" fg:w="1045"/><text x="58.1592%" y="735.50"></text></g><g><title>d_lookup (1,039 samples, 0.20%)</title><rect x="57.9103%" y="709" width="0.1958%" height="15" fill="rgb(247,21,44)" fg:x="307330" fg:w="1039"/><text x="58.1603%" y="719.50"></text></g><g><title>__d_lookup (1,031 samples, 0.19%)</title><rect x="57.9118%" y="693" width="0.1943%" height="15" fill="rgb(219,210,51)" fg:x="307338" fg:w="1031"/><text x="58.1618%" y="703.50"></text></g><g><title>down_write (60 samples, 0.01%)</title><rect x="58.1065%" y="741" width="0.0113%" height="15" fill="rgb(209,140,6)" fg:x="308371" fg:w="60"/><text x="58.3565%" y="751.50"></text></g><g><title>lockref_put_or_lock (119 samples, 0.02%)</title><rect x="58.1300%" y="725" width="0.0224%" height="15" fill="rgb(221,188,24)" fg:x="308496" fg:w="119"/><text x="58.3800%" y="735.50"></text></g><g><title>dput (186 samples, 0.04%)</title><rect x="58.1178%" y="741" width="0.0350%" height="15" fill="rgb(232,154,20)" fg:x="308431" fg:w="186"/><text x="58.3678%" y="751.50"></text></g><g><title>__legitimize_mnt (63 samples, 0.01%)</title><rect x="58.1767%" y="661" width="0.0119%" height="15" fill="rgb(244,137,50)" fg:x="308744" fg:w="63"/><text x="58.4267%" y="671.50"></text></g><g><title>__legitimize_path (133 samples, 0.03%)</title><rect x="58.1745%" y="677" width="0.0251%" height="15" fill="rgb(225,185,43)" fg:x="308732" fg:w="133"/><text x="58.4245%" y="687.50"></text></g><g><title>lockref_get_not_dead (58 samples, 0.01%)</title><rect x="58.1886%" y="661" width="0.0109%" height="15" fill="rgb(213,205,38)" fg:x="308807" fg:w="58"/><text x="58.4386%" y="671.50"></text></g><g><title>complete_walk (172 samples, 0.03%)</title><rect x="58.1702%" y="709" width="0.0324%" height="15" fill="rgb(236,73,12)" fg:x="308709" fg:w="172"/><text x="58.4202%" y="719.50"></text></g><g><title>try_to_unlazy (162 samples, 0.03%)</title><rect x="58.1720%" y="693" width="0.0305%" height="15" fill="rgb(235,219,13)" fg:x="308719" fg:w="162"/><text x="58.4220%" y="703.50"></text></g><g><title>link_path_walk.part.0 (114 samples, 0.02%)</title><rect x="58.2026%" y="709" width="0.0215%" height="15" fill="rgb(218,59,36)" fg:x="308881" fg:w="114"/><text x="58.4526%" y="719.50"></text></g><g><title>__fget_light (188 samples, 0.04%)</title><rect x="58.2318%" y="693" width="0.0354%" height="15" fill="rgb(205,110,39)" fg:x="309036" fg:w="188"/><text x="58.4818%" y="703.50"></text></g><g><title>__fget_files (136 samples, 0.03%)</title><rect x="58.2416%" y="677" width="0.0256%" height="15" fill="rgb(218,206,42)" fg:x="309088" fg:w="136"/><text x="58.4916%" y="687.50"></text></g><g><title>path_init (287 samples, 0.05%)</title><rect x="58.2240%" y="709" width="0.0541%" height="15" fill="rgb(248,125,24)" fg:x="308995" fg:w="287"/><text x="58.4740%" y="719.50"></text></g><g><title>fput_many (56 samples, 0.01%)</title><rect x="58.2676%" y="693" width="0.0106%" height="15" fill="rgb(242,28,27)" fg:x="309226" fg:w="56"/><text x="58.5176%" y="703.50"></text></g><g><title>filename_parentat (683 samples, 0.13%)</title><rect x="58.1560%" y="741" width="0.1287%" height="15" fill="rgb(216,228,15)" fg:x="308634" fg:w="683"/><text x="58.4060%" y="751.50"></text></g><g><title>path_parentat (635 samples, 0.12%)</title><rect x="58.1651%" y="725" width="0.1197%" height="15" fill="rgb(235,116,46)" fg:x="308682" fg:w="635"/><text x="58.4151%" y="735.50"></text></g><g><title>ihold (324 samples, 0.06%)</title><rect x="58.2847%" y="741" width="0.0611%" height="15" fill="rgb(224,18,32)" fg:x="309317" fg:w="324"/><text x="58.5347%" y="751.50"></text></g><g><title>iput.part.0 (65 samples, 0.01%)</title><rect x="58.3461%" y="741" width="0.0122%" height="15" fill="rgb(252,5,12)" fg:x="309643" fg:w="65"/><text x="58.5961%" y="751.50"></text></g><g><title>_atomic_dec_and_lock (56 samples, 0.01%)</title><rect x="58.3478%" y="725" width="0.0106%" height="15" fill="rgb(251,36,5)" fg:x="309652" fg:w="56"/><text x="58.5978%" y="735.50"></text></g><g><title>kmem_cache_free (132 samples, 0.02%)</title><rect x="58.3584%" y="741" width="0.0249%" height="15" fill="rgb(217,53,14)" fg:x="309708" fg:w="132"/><text x="58.6084%" y="751.50"></text></g><g><title>__mnt_want_write (58 samples, 0.01%)</title><rect x="58.3899%" y="725" width="0.0109%" height="15" fill="rgb(215,86,45)" fg:x="309875" fg:w="58"/><text x="58.6399%" y="735.50"></text></g><g><title>mnt_want_write (86 samples, 0.02%)</title><rect x="58.3863%" y="741" width="0.0162%" height="15" fill="rgb(242,169,11)" fg:x="309856" fg:w="86"/><text x="58.6363%" y="751.50"></text></g><g><title>apparmor_path_unlink (72 samples, 0.01%)</title><rect x="58.4136%" y="725" width="0.0136%" height="15" fill="rgb(211,213,45)" fg:x="310001" fg:w="72"/><text x="58.6636%" y="735.50"></text></g><g><title>security_path_unlink (288 samples, 0.05%)</title><rect x="58.4104%" y="741" width="0.0543%" height="15" fill="rgb(205,88,11)" fg:x="309984" fg:w="288"/><text x="58.6604%" y="751.50"></text></g><g><title>tomoyo_path_unlink (199 samples, 0.04%)</title><rect x="58.4272%" y="725" width="0.0375%" height="15" fill="rgb(252,69,26)" fg:x="310073" fg:w="199"/><text x="58.6772%" y="735.50"></text></g><g><title>tomoyo_path_perm (187 samples, 0.04%)</title><rect x="58.4294%" y="709" width="0.0352%" height="15" fill="rgb(246,123,37)" fg:x="310085" fg:w="187"/><text x="58.6794%" y="719.50"></text></g><g><title>tomoyo_init_request_info (101 samples, 0.02%)</title><rect x="58.4456%" y="693" width="0.0190%" height="15" fill="rgb(212,205,5)" fg:x="310171" fg:w="101"/><text x="58.6956%" y="703.50"></text></g><g><title>up_write (64 samples, 0.01%)</title><rect x="58.4647%" y="741" width="0.0121%" height="15" fill="rgb(253,148,0)" fg:x="310272" fg:w="64"/><text x="58.7147%" y="751.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="58.4973%" y="725" width="0.0113%" height="15" fill="rgb(239,22,4)" fg:x="310445" fg:w="60"/><text x="58.7473%" y="735.50"></text></g><g><title>btrfs_put_transaction (79 samples, 0.01%)</title><rect x="58.5519%" y="693" width="0.0149%" height="15" fill="rgb(226,26,53)" fg:x="310735" fg:w="79"/><text x="58.8019%" y="703.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="58.5787%" y="661" width="0.0219%" height="15" fill="rgb(225,229,45)" fg:x="310877" fg:w="116"/><text x="58.8287%" y="671.50"></text></g><g><title>btrfs_trans_release_metadata (199 samples, 0.04%)</title><rect x="58.5672%" y="693" width="0.0375%" height="15" fill="rgb(220,60,37)" fg:x="310816" fg:w="199"/><text x="58.8172%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (192 samples, 0.04%)</title><rect x="58.5685%" y="677" width="0.0362%" height="15" fill="rgb(217,180,35)" fg:x="310823" fg:w="192"/><text x="58.8185%" y="687.50"></text></g><g><title>__btrfs_end_transaction (596 samples, 0.11%)</title><rect x="58.5135%" y="709" width="0.1123%" height="15" fill="rgb(229,7,53)" fg:x="310531" fg:w="596"/><text x="58.7635%" y="719.50"></text></g><g><title>kmem_cache_free (112 samples, 0.02%)</title><rect x="58.6047%" y="693" width="0.0211%" height="15" fill="rgb(254,137,3)" fg:x="311015" fg:w="112"/><text x="58.8547%" y="703.50"></text></g><g><title>btrfs_tree_unlock (90 samples, 0.02%)</title><rect x="58.7518%" y="645" width="0.0170%" height="15" fill="rgb(215,140,41)" fg:x="311796" fg:w="90"/><text x="59.0018%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (123 samples, 0.02%)</title><rect x="58.7690%" y="645" width="0.0232%" height="15" fill="rgb(250,80,15)" fg:x="311887" fg:w="123"/><text x="59.0190%" y="655.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="58.7733%" y="629" width="0.0188%" height="15" fill="rgb(252,191,6)" fg:x="311910" fg:w="100"/><text x="59.0233%" y="639.50"></text></g><g><title>btrfs_free_path (381 samples, 0.07%)</title><rect x="58.7411%" y="677" width="0.0718%" height="15" fill="rgb(246,217,18)" fg:x="311739" fg:w="381"/><text x="58.9911%" y="687.50"></text></g><g><title>btrfs_release_path (376 samples, 0.07%)</title><rect x="58.7420%" y="661" width="0.0708%" height="15" fill="rgb(223,93,7)" fg:x="311744" fg:w="376"/><text x="58.9920%" y="671.50"></text></g><g><title>release_extent_buffer (110 samples, 0.02%)</title><rect x="58.7922%" y="645" width="0.0207%" height="15" fill="rgb(225,55,52)" fg:x="312010" fg:w="110"/><text x="59.0422%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (86 samples, 0.02%)</title><rect x="58.8517%" y="629" width="0.0162%" height="15" fill="rgb(240,31,24)" fg:x="312326" fg:w="86"/><text x="59.1017%" y="639.50"></text></g><g><title>_raw_read_lock (60 samples, 0.01%)</title><rect x="58.8566%" y="613" width="0.0113%" height="15" fill="rgb(205,56,52)" fg:x="312352" fg:w="60"/><text x="59.1066%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (165 samples, 0.03%)</title><rect x="58.8496%" y="645" width="0.0311%" height="15" fill="rgb(246,146,12)" fg:x="312315" fg:w="165"/><text x="59.0996%" y="655.50"></text></g><g><title>btrfs_root_node (68 samples, 0.01%)</title><rect x="58.8679%" y="629" width="0.0128%" height="15" fill="rgb(239,84,36)" fg:x="312412" fg:w="68"/><text x="59.1179%" y="639.50"></text></g><g><title>balance_level (73 samples, 0.01%)</title><rect x="58.8807%" y="645" width="0.0138%" height="15" fill="rgb(207,41,40)" fg:x="312480" fg:w="73"/><text x="59.1307%" y="655.50"></text></g><g><title>__btrfs_tree_lock (82 samples, 0.02%)</title><rect x="58.8990%" y="629" width="0.0155%" height="15" fill="rgb(241,179,25)" fg:x="312577" fg:w="82"/><text x="59.1490%" y="639.50"></text></g><g><title>btrfs_lock_root_node (146 samples, 0.03%)</title><rect x="58.8971%" y="645" width="0.0275%" height="15" fill="rgb(210,0,34)" fg:x="312567" fg:w="146"/><text x="59.1471%" y="655.50"></text></g><g><title>btrfs_root_node (54 samples, 0.01%)</title><rect x="58.9145%" y="629" width="0.0102%" height="15" fill="rgb(225,217,29)" fg:x="312659" fg:w="54"/><text x="59.1645%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (98 samples, 0.02%)</title><rect x="58.9246%" y="645" width="0.0185%" height="15" fill="rgb(216,191,38)" fg:x="312713" fg:w="98"/><text x="59.1746%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (58 samples, 0.01%)</title><rect x="58.9525%" y="645" width="0.0109%" height="15" fill="rgb(232,140,52)" fg:x="312861" fg:w="58"/><text x="59.2025%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (55 samples, 0.01%)</title><rect x="58.9636%" y="645" width="0.0104%" height="15" fill="rgb(223,158,51)" fg:x="312920" fg:w="55"/><text x="59.2136%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (293 samples, 0.06%)</title><rect x="58.9740%" y="645" width="0.0552%" height="15" fill="rgb(235,29,51)" fg:x="312975" fg:w="293"/><text x="59.2240%" y="655.50"></text></g><g><title>btrfs_get_64 (61 samples, 0.01%)</title><rect x="59.0516%" y="629" width="0.0115%" height="15" fill="rgb(215,181,18)" fg:x="313387" fg:w="61"/><text x="59.3016%" y="639.50"></text></g><g><title>__radix_tree_lookup (182 samples, 0.03%)</title><rect x="59.0801%" y="613" width="0.0343%" height="15" fill="rgb(227,125,34)" fg:x="313538" fg:w="182"/><text x="59.3301%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (101 samples, 0.02%)</title><rect x="59.1144%" y="613" width="0.0190%" height="15" fill="rgb(230,197,49)" fg:x="313720" fg:w="101"/><text x="59.3644%" y="623.50"></text></g><g><title>mark_page_accessed (60 samples, 0.01%)</title><rect x="59.1221%" y="597" width="0.0113%" height="15" fill="rgb(239,141,16)" fg:x="313761" fg:w="60"/><text x="59.3721%" y="607.50"></text></g><g><title>find_extent_buffer (348 samples, 0.07%)</title><rect x="59.0682%" y="629" width="0.0656%" height="15" fill="rgb(225,105,43)" fg:x="313475" fg:w="348"/><text x="59.3182%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (636 samples, 0.12%)</title><rect x="59.0292%" y="645" width="0.1198%" height="15" fill="rgb(214,131,14)" fg:x="313268" fg:w="636"/><text x="59.2792%" y="655.50"></text></g><g><title>read_extent_buffer (81 samples, 0.02%)</title><rect x="59.1338%" y="629" width="0.0153%" height="15" fill="rgb(229,177,11)" fg:x="313823" fg:w="81"/><text x="59.3838%" y="639.50"></text></g><g><title>btrfs_lookup_dir_index_item (1,899 samples, 0.36%)</title><rect x="58.8129%" y="677" width="0.3578%" height="15" fill="rgb(231,180,14)" fg:x="312120" fg:w="1899"/><text x="59.0629%" y="687.50"></text></g><g><title>btrfs_search_slot (1,888 samples, 0.36%)</title><rect x="58.8150%" y="661" width="0.3558%" height="15" fill="rgb(232,88,2)" fg:x="312131" fg:w="1888"/><text x="59.0650%" y="671.50"></text></g><g><title>unlock_up (55 samples, 0.01%)</title><rect x="59.1604%" y="645" width="0.0104%" height="15" fill="rgb(205,220,8)" fg:x="313964" fg:w="55"/><text x="59.4104%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (74 samples, 0.01%)</title><rect x="59.2235%" y="629" width="0.0139%" height="15" fill="rgb(225,23,53)" fg:x="314299" fg:w="74"/><text x="59.4735%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (162 samples, 0.03%)</title><rect x="59.2207%" y="645" width="0.0305%" height="15" fill="rgb(213,62,29)" fg:x="314284" fg:w="162"/><text x="59.4707%" y="655.50"></text></g><g><title>btrfs_root_node (73 samples, 0.01%)</title><rect x="59.2374%" y="629" width="0.0138%" height="15" fill="rgb(227,75,7)" fg:x="314373" fg:w="73"/><text x="59.4874%" y="639.50"></text></g><g><title>balance_level (94 samples, 0.02%)</title><rect x="59.2514%" y="645" width="0.0177%" height="15" fill="rgb(207,105,14)" fg:x="314447" fg:w="94"/><text x="59.5014%" y="655.50"></text></g><g><title>__btrfs_tree_lock (89 samples, 0.02%)</title><rect x="59.2727%" y="629" width="0.0168%" height="15" fill="rgb(245,62,29)" fg:x="314560" fg:w="89"/><text x="59.5227%" y="639.50"></text></g><g><title>_raw_write_lock (55 samples, 0.01%)</title><rect x="59.2791%" y="613" width="0.0104%" height="15" fill="rgb(236,202,4)" fg:x="314594" fg:w="55"/><text x="59.5291%" y="623.50"></text></g><g><title>btrfs_lock_root_node (153 samples, 0.03%)</title><rect x="59.2706%" y="645" width="0.0288%" height="15" fill="rgb(250,67,1)" fg:x="314549" fg:w="153"/><text x="59.5206%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (105 samples, 0.02%)</title><rect x="59.2994%" y="645" width="0.0198%" height="15" fill="rgb(253,115,44)" fg:x="314702" fg:w="105"/><text x="59.5494%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (335 samples, 0.06%)</title><rect x="59.3452%" y="645" width="0.0631%" height="15" fill="rgb(251,139,18)" fg:x="314945" fg:w="335"/><text x="59.5952%" y="655.50"></text></g><g><title>btrfs_get_64 (79 samples, 0.01%)</title><rect x="59.4270%" y="629" width="0.0149%" height="15" fill="rgb(218,22,32)" fg:x="315379" fg:w="79"/><text x="59.6770%" y="639.50"></text></g><g><title>__radix_tree_lookup (274 samples, 0.05%)</title><rect x="59.4643%" y="613" width="0.0516%" height="15" fill="rgb(243,53,5)" fg:x="315577" fg:w="274"/><text x="59.7143%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (126 samples, 0.02%)</title><rect x="59.5159%" y="613" width="0.0237%" height="15" fill="rgb(227,56,16)" fg:x="315851" fg:w="126"/><text x="59.7659%" y="623.50"></text></g><g><title>mark_page_accessed (71 samples, 0.01%)</title><rect x="59.5263%" y="597" width="0.0134%" height="15" fill="rgb(245,53,0)" fg:x="315906" fg:w="71"/><text x="59.7763%" y="607.50"></text></g><g><title>find_extent_buffer (499 samples, 0.09%)</title><rect x="59.4462%" y="629" width="0.0940%" height="15" fill="rgb(216,170,35)" fg:x="315481" fg:w="499"/><text x="59.6962%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (767 samples, 0.14%)</title><rect x="59.4083%" y="645" width="0.1445%" height="15" fill="rgb(211,200,8)" fg:x="315280" fg:w="767"/><text x="59.6583%" y="655.50"></text></g><g><title>read_extent_buffer (67 samples, 0.01%)</title><rect x="59.5402%" y="629" width="0.0126%" height="15" fill="rgb(228,204,44)" fg:x="315980" fg:w="67"/><text x="59.7902%" y="639.50"></text></g><g><title>btrfs_search_slot (2,119 samples, 0.40%)</title><rect x="59.1779%" y="661" width="0.3993%" height="15" fill="rgb(214,121,17)" fg:x="314057" fg:w="2119"/><text x="59.4279%" y="671.50"></text></g><g><title>unlock_up (68 samples, 0.01%)</title><rect x="59.5643%" y="645" width="0.0128%" height="15" fill="rgb(233,64,38)" fg:x="316108" fg:w="68"/><text x="59.8143%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (2,187 samples, 0.41%)</title><rect x="59.1707%" y="677" width="0.4121%" height="15" fill="rgb(253,54,19)" fg:x="314019" fg:w="2187"/><text x="59.4207%" y="687.50"></text></g><g><title>btrfs_tree_unlock (104 samples, 0.02%)</title><rect x="59.5962%" y="661" width="0.0196%" height="15" fill="rgb(253,94,18)" fg:x="316277" fg:w="104"/><text x="59.8462%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (137 samples, 0.03%)</title><rect x="59.6164%" y="661" width="0.0258%" height="15" fill="rgb(227,57,52)" fg:x="316384" fg:w="137"/><text x="59.8664%" y="671.50"></text></g><g><title>_raw_spin_lock (107 samples, 0.02%)</title><rect x="59.6220%" y="645" width="0.0202%" height="15" fill="rgb(230,228,50)" fg:x="316414" fg:w="107"/><text x="59.8720%" y="655.50"></text></g><g><title>btrfs_release_path (400 samples, 0.08%)</title><rect x="59.5828%" y="677" width="0.0754%" height="15" fill="rgb(217,205,27)" fg:x="316206" fg:w="400"/><text x="59.8328%" y="687.50"></text></g><g><title>release_extent_buffer (85 samples, 0.02%)</title><rect x="59.6422%" y="661" width="0.0160%" height="15" fill="rgb(252,71,50)" fg:x="316521" fg:w="85"/><text x="59.8922%" y="671.50"></text></g><g><title>kmem_cache_alloc (124 samples, 0.02%)</title><rect x="59.6582%" y="677" width="0.0234%" height="15" fill="rgb(209,86,4)" fg:x="316606" fg:w="124"/><text x="59.9082%" y="687.50"></text></g><g><title>kmem_cache_free (98 samples, 0.02%)</title><rect x="59.6816%" y="677" width="0.0185%" height="15" fill="rgb(229,94,0)" fg:x="316730" fg:w="98"/><text x="59.9316%" y="687.50"></text></g><g><title>mutex_lock (111 samples, 0.02%)</title><rect x="59.7000%" y="677" width="0.0209%" height="15" fill="rgb(252,223,21)" fg:x="316828" fg:w="111"/><text x="59.9500%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (5,482 samples, 1.03%)</title><rect x="58.7113%" y="693" width="1.0330%" height="15" fill="rgb(230,210,4)" fg:x="311581" fg:w="5482"/><text x="58.9613%" y="703.50"></text></g><g><title>mutex_unlock (124 samples, 0.02%)</title><rect x="59.7209%" y="677" width="0.0234%" height="15" fill="rgb(240,149,38)" fg:x="316939" fg:w="124"/><text x="59.9709%" y="687.50"></text></g><g><title>btrfs_get_32 (130 samples, 0.02%)</title><rect x="59.8564%" y="661" width="0.0245%" height="15" fill="rgb(254,105,20)" fg:x="317658" fg:w="130"/><text x="60.1064%" y="671.50"></text></g><g><title>btrfs_get_token_32 (1,149 samples, 0.22%)</title><rect x="59.8809%" y="661" width="0.2165%" height="15" fill="rgb(253,87,46)" fg:x="317788" fg:w="1149"/><text x="60.1309%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (154 samples, 0.03%)</title><rect x="60.0684%" y="645" width="0.0290%" height="15" fill="rgb(253,116,33)" fg:x="318783" fg:w="154"/><text x="60.3184%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (138 samples, 0.03%)</title><rect x="60.0974%" y="661" width="0.0260%" height="15" fill="rgb(229,198,5)" fg:x="318937" fg:w="138"/><text x="60.3474%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (94 samples, 0.02%)</title><rect x="60.1057%" y="645" width="0.0177%" height="15" fill="rgb(242,38,37)" fg:x="318981" fg:w="94"/><text x="60.3557%" y="655.50"></text></g><g><title>btrfs_set_token_32 (965 samples, 0.18%)</title><rect x="60.1234%" y="661" width="0.1818%" height="15" fill="rgb(242,69,53)" fg:x="319075" fg:w="965"/><text x="60.3734%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (186 samples, 0.04%)</title><rect x="60.2702%" y="645" width="0.0350%" height="15" fill="rgb(249,80,16)" fg:x="319854" fg:w="186"/><text x="60.5202%" y="655.50"></text></g><g><title>leaf_space_used (142 samples, 0.03%)</title><rect x="60.3053%" y="661" width="0.0268%" height="15" fill="rgb(206,128,11)" fg:x="320040" fg:w="142"/><text x="60.5553%" y="671.50"></text></g><g><title>btrfs_get_32 (104 samples, 0.02%)</title><rect x="60.3124%" y="645" width="0.0196%" height="15" fill="rgb(212,35,20)" fg:x="320078" fg:w="104"/><text x="60.5624%" y="655.50"></text></g><g><title>memcpy_extent_buffer (253 samples, 0.05%)</title><rect x="60.3320%" y="661" width="0.0477%" height="15" fill="rgb(236,79,13)" fg:x="320182" fg:w="253"/><text x="60.5820%" y="671.50"></text></g><g><title>memmove (195 samples, 0.04%)</title><rect x="60.3429%" y="645" width="0.0367%" height="15" fill="rgb(233,123,3)" fg:x="320240" fg:w="195"/><text x="60.5929%" y="655.50"></text></g><g><title>copy_pages (286 samples, 0.05%)</title><rect x="60.4025%" y="645" width="0.0539%" height="15" fill="rgb(214,93,52)" fg:x="320556" fg:w="286"/><text x="60.6525%" y="655.50"></text></g><g><title>btrfs_del_items (5,694 samples, 1.07%)</title><rect x="59.7603%" y="677" width="1.0729%" height="15" fill="rgb(251,37,40)" fg:x="317148" fg:w="5694"/><text x="60.0103%" y="687.50"></text></g><g><title>memmove_extent_buffer (2,407 samples, 0.45%)</title><rect x="60.3797%" y="661" width="0.4536%" height="15" fill="rgb(227,80,54)" fg:x="320435" fg:w="2407"/><text x="60.6297%" y="671.50"></text></g><g><title>memmove (2,000 samples, 0.38%)</title><rect x="60.4564%" y="645" width="0.3769%" height="15" fill="rgb(254,48,11)" fg:x="320842" fg:w="2000"/><text x="60.7064%" y="655.50"></text></g><g><title>btrfs_get_16 (200 samples, 0.04%)</title><rect x="60.8427%" y="661" width="0.0377%" height="15" fill="rgb(235,193,26)" fg:x="322892" fg:w="200"/><text x="61.0927%" y="671.50"></text></g><g><title>btrfs_get_32 (76 samples, 0.01%)</title><rect x="60.8803%" y="661" width="0.0143%" height="15" fill="rgb(229,99,21)" fg:x="323092" fg:w="76"/><text x="61.1303%" y="671.50"></text></g><g><title>btrfs_find_name_in_backref (435 samples, 0.08%)</title><rect x="60.8332%" y="677" width="0.0820%" height="15" fill="rgb(211,140,41)" fg:x="322842" fg:w="435"/><text x="61.0832%" y="687.50"></text></g><g><title>memcmp_extent_buffer (109 samples, 0.02%)</title><rect x="60.8947%" y="661" width="0.0205%" height="15" fill="rgb(240,227,30)" fg:x="323168" fg:w="109"/><text x="61.1447%" y="671.50"></text></g><g><title>memcmp (54 samples, 0.01%)</title><rect x="60.9050%" y="645" width="0.0102%" height="15" fill="rgb(215,224,45)" fg:x="323223" fg:w="54"/><text x="61.1550%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (233 samples, 0.04%)</title><rect x="60.9288%" y="645" width="0.0439%" height="15" fill="rgb(206,123,31)" fg:x="323349" fg:w="233"/><text x="61.1788%" y="655.50"></text></g><g><title>_raw_spin_lock (181 samples, 0.03%)</title><rect x="60.9386%" y="629" width="0.0341%" height="15" fill="rgb(210,138,16)" fg:x="323401" fg:w="181"/><text x="61.1886%" y="639.50"></text></g><g><title>btrfs_free_path (467 samples, 0.09%)</title><rect x="60.9152%" y="677" width="0.0880%" height="15" fill="rgb(228,57,28)" fg:x="323277" fg:w="467"/><text x="61.1652%" y="687.50"></text></g><g><title>btrfs_release_path (462 samples, 0.09%)</title><rect x="60.9161%" y="661" width="0.0871%" height="15" fill="rgb(242,170,10)" fg:x="323282" fg:w="462"/><text x="61.1661%" y="671.50"></text></g><g><title>release_extent_buffer (162 samples, 0.03%)</title><rect x="60.9727%" y="645" width="0.0305%" height="15" fill="rgb(228,214,39)" fg:x="323582" fg:w="162"/><text x="61.2227%" y="655.50"></text></g><g><title>_raw_read_lock (68 samples, 0.01%)</title><rect x="61.0776%" y="629" width="0.0128%" height="15" fill="rgb(218,179,33)" fg:x="324139" fg:w="68"/><text x="61.3276%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (97 samples, 0.02%)</title><rect x="61.0735%" y="645" width="0.0183%" height="15" fill="rgb(235,193,39)" fg:x="324117" fg:w="97"/><text x="61.3235%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (189 samples, 0.04%)</title><rect x="61.0712%" y="661" width="0.0356%" height="15" fill="rgb(219,221,36)" fg:x="324105" fg:w="189"/><text x="61.3212%" y="671.50"></text></g><g><title>btrfs_root_node (80 samples, 0.02%)</title><rect x="61.0918%" y="645" width="0.0151%" height="15" fill="rgb(248,218,19)" fg:x="324214" fg:w="80"/><text x="61.3418%" y="655.50"></text></g><g><title>_raw_write_lock (61 samples, 0.01%)</title><rect x="61.1396%" y="629" width="0.0115%" height="15" fill="rgb(205,50,9)" fg:x="324468" fg:w="61"/><text x="61.3896%" y="639.50"></text></g><g><title>__btrfs_tree_lock (181 samples, 0.03%)</title><rect x="61.1272%" y="645" width="0.0341%" height="15" fill="rgb(238,81,28)" fg:x="324402" fg:w="181"/><text x="61.3772%" y="655.50"></text></g><g><title>btrfs_lock_root_node (265 samples, 0.05%)</title><rect x="61.1236%" y="661" width="0.0499%" height="15" fill="rgb(235,110,19)" fg:x="324383" fg:w="265"/><text x="61.3736%" y="671.50"></text></g><g><title>btrfs_root_node (65 samples, 0.01%)</title><rect x="61.1613%" y="645" width="0.0122%" height="15" fill="rgb(214,7,14)" fg:x="324583" fg:w="65"/><text x="61.4113%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (69 samples, 0.01%)</title><rect x="61.1735%" y="661" width="0.0130%" height="15" fill="rgb(211,77,3)" fg:x="324648" fg:w="69"/><text x="61.4235%" y="671.50"></text></g><g><title>_raw_write_lock (107 samples, 0.02%)</title><rect x="61.1922%" y="645" width="0.0202%" height="15" fill="rgb(229,5,9)" fg:x="324747" fg:w="107"/><text x="61.4422%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (168 samples, 0.03%)</title><rect x="61.1865%" y="661" width="0.0317%" height="15" fill="rgb(225,90,11)" fg:x="324717" fg:w="168"/><text x="61.4365%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (63 samples, 0.01%)</title><rect x="61.2182%" y="661" width="0.0119%" height="15" fill="rgb(242,56,8)" fg:x="324885" fg:w="63"/><text x="61.4682%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (1,204 samples, 0.23%)</title><rect x="61.2301%" y="661" width="0.2269%" height="15" fill="rgb(249,212,39)" fg:x="324948" fg:w="1204"/><text x="61.4801%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (133 samples, 0.03%)</title><rect x="61.4850%" y="645" width="0.0251%" height="15" fill="rgb(236,90,9)" fg:x="326301" fg:w="133"/><text x="61.7350%" y="655.50"></text></g><g><title>verify_parent_transid (111 samples, 0.02%)</title><rect x="61.4892%" y="629" width="0.0209%" height="15" fill="rgb(206,88,35)" fg:x="326323" fg:w="111"/><text x="61.7392%" y="639.50"></text></g><g><title>btrfs_get_64 (142 samples, 0.03%)</title><rect x="61.5101%" y="645" width="0.0268%" height="15" fill="rgb(205,126,30)" fg:x="326434" fg:w="142"/><text x="61.7601%" y="655.50"></text></g><g><title>__radix_tree_lookup (619 samples, 0.12%)</title><rect x="61.6050%" y="629" width="0.1166%" height="15" fill="rgb(230,176,12)" fg:x="326938" fg:w="619"/><text x="61.8550%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (361 samples, 0.07%)</title><rect x="61.7219%" y="629" width="0.0680%" height="15" fill="rgb(243,19,9)" fg:x="327558" fg:w="361"/><text x="61.9719%" y="639.50"></text></g><g><title>mark_page_accessed (256 samples, 0.05%)</title><rect x="61.7417%" y="613" width="0.0482%" height="15" fill="rgb(245,171,17)" fg:x="327663" fg:w="256"/><text x="61.9917%" y="623.50"></text></g><g><title>find_extent_buffer (1,300 samples, 0.24%)</title><rect x="61.5461%" y="645" width="0.2450%" height="15" fill="rgb(227,52,21)" fg:x="326625" fg:w="1300"/><text x="61.7961%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,919 samples, 0.36%)</title><rect x="61.4569%" y="661" width="0.3616%" height="15" fill="rgb(238,69,14)" fg:x="326152" fg:w="1919"/><text x="61.7069%" y="671.50"></text></g><g><title>read_extent_buffer (146 samples, 0.03%)</title><rect x="61.7910%" y="645" width="0.0275%" height="15" fill="rgb(241,156,39)" fg:x="327925" fg:w="146"/><text x="62.0410%" y="655.50"></text></g><g><title>btrfs_search_slot (4,463 samples, 0.84%)</title><rect x="61.0171%" y="677" width="0.8410%" height="15" fill="rgb(212,227,28)" fg:x="323818" fg:w="4463"/><text x="61.2671%" y="687.50"></text></g><g><title>unlock_up (180 samples, 0.03%)</title><rect x="61.8242%" y="661" width="0.0339%" height="15" fill="rgb(209,118,27)" fg:x="328101" fg:w="180"/><text x="62.0742%" y="671.50"></text></g><g><title>memset_erms (56 samples, 0.01%)</title><rect x="61.8730%" y="661" width="0.0106%" height="15" fill="rgb(226,102,5)" fg:x="328360" fg:w="56"/><text x="62.1230%" y="671.50"></text></g><g><title>kmem_cache_alloc (165 samples, 0.03%)</title><rect x="61.8585%" y="677" width="0.0311%" height="15" fill="rgb(223,34,3)" fg:x="328283" fg:w="165"/><text x="62.1085%" y="687.50"></text></g><g><title>btrfs_del_inode_ref (11,512 samples, 2.17%)</title><rect x="59.7443%" y="693" width="2.1692%" height="15" fill="rgb(221,81,38)" fg:x="317063" fg:w="11512"/><text x="59.9943%" y="703.50">b..</text></g><g><title>kmem_cache_free (127 samples, 0.02%)</title><rect x="61.8896%" y="677" width="0.0239%" height="15" fill="rgb(236,219,28)" fg:x="328448" fg:w="127"/><text x="62.1396%" y="687.50"></text></g><g><title>btrfs_del_items (64 samples, 0.01%)</title><rect x="61.9322%" y="661" width="0.0121%" height="15" fill="rgb(213,200,14)" fg:x="328674" fg:w="64"/><text x="62.1822%" y="671.50"></text></g><g><title>btrfs_tree_unlock (108 samples, 0.02%)</title><rect x="61.9601%" y="629" width="0.0204%" height="15" fill="rgb(240,33,19)" fg:x="328822" fg:w="108"/><text x="62.2101%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (160 samples, 0.03%)</title><rect x="61.9817%" y="629" width="0.0301%" height="15" fill="rgb(233,113,27)" fg:x="328937" fg:w="160"/><text x="62.2317%" y="639.50"></text></g><g><title>_raw_spin_lock (125 samples, 0.02%)</title><rect x="61.9883%" y="613" width="0.0236%" height="15" fill="rgb(220,221,18)" fg:x="328972" fg:w="125"/><text x="62.2383%" y="623.50"></text></g><g><title>btrfs_free_path (499 samples, 0.09%)</title><rect x="61.9446%" y="661" width="0.0940%" height="15" fill="rgb(238,92,8)" fg:x="328740" fg:w="499"/><text x="62.1946%" y="671.50"></text></g><g><title>btrfs_release_path (488 samples, 0.09%)</title><rect x="61.9467%" y="645" width="0.0920%" height="15" fill="rgb(222,164,16)" fg:x="328751" fg:w="488"/><text x="62.1967%" y="655.50"></text></g><g><title>release_extent_buffer (142 samples, 0.03%)</title><rect x="62.0119%" y="629" width="0.0268%" height="15" fill="rgb(241,119,3)" fg:x="329097" fg:w="142"/><text x="62.2619%" y="639.50"></text></g><g><title>_raw_read_lock (61 samples, 0.01%)</title><rect x="62.1176%" y="613" width="0.0115%" height="15" fill="rgb(241,44,8)" fg:x="329658" fg:w="61"/><text x="62.3676%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (98 samples, 0.02%)</title><rect x="62.1108%" y="629" width="0.0185%" height="15" fill="rgb(230,36,40)" fg:x="329622" fg:w="98"/><text x="62.3608%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (237 samples, 0.04%)</title><rect x="62.1080%" y="645" width="0.0447%" height="15" fill="rgb(243,16,36)" fg:x="329607" fg:w="237"/><text x="62.3580%" y="655.50"></text></g><g><title>btrfs_root_node (124 samples, 0.02%)</title><rect x="62.1293%" y="629" width="0.0234%" height="15" fill="rgb(231,4,26)" fg:x="329720" fg:w="124"/><text x="62.3793%" y="639.50"></text></g><g><title>balance_level (152 samples, 0.03%)</title><rect x="62.1530%" y="645" width="0.0286%" height="15" fill="rgb(240,9,31)" fg:x="329846" fg:w="152"/><text x="62.4030%" y="655.50"></text></g><g><title>btrfs_get_64 (56 samples, 0.01%)</title><rect x="62.1711%" y="629" width="0.0106%" height="15" fill="rgb(207,173,15)" fg:x="329942" fg:w="56"/><text x="62.4211%" y="639.50"></text></g><g><title>__btrfs_tree_lock (134 samples, 0.03%)</title><rect x="62.1886%" y="629" width="0.0252%" height="15" fill="rgb(224,192,53)" fg:x="330035" fg:w="134"/><text x="62.4386%" y="639.50"></text></g><g><title>_raw_write_lock (63 samples, 0.01%)</title><rect x="62.2020%" y="613" width="0.0119%" height="15" fill="rgb(223,67,28)" fg:x="330106" fg:w="63"/><text x="62.4520%" y="623.50"></text></g><g><title>btrfs_lock_root_node (220 samples, 0.04%)</title><rect x="62.1864%" y="645" width="0.0415%" height="15" fill="rgb(211,20,47)" fg:x="330023" fg:w="220"/><text x="62.4364%" y="655.50"></text></g><g><title>btrfs_root_node (74 samples, 0.01%)</title><rect x="62.2139%" y="629" width="0.0139%" height="15" fill="rgb(240,228,2)" fg:x="330169" fg:w="74"/><text x="62.4639%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (85 samples, 0.02%)</title><rect x="62.2278%" y="645" width="0.0160%" height="15" fill="rgb(248,151,12)" fg:x="330243" fg:w="85"/><text x="62.4778%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (68 samples, 0.01%)</title><rect x="62.2438%" y="645" width="0.0128%" height="15" fill="rgb(244,8,39)" fg:x="330328" fg:w="68"/><text x="62.4938%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (81 samples, 0.02%)</title><rect x="62.2566%" y="645" width="0.0153%" height="15" fill="rgb(222,26,8)" fg:x="330396" fg:w="81"/><text x="62.5066%" y="655.50"></text></g><g><title>_raw_write_lock (63 samples, 0.01%)</title><rect x="62.2600%" y="629" width="0.0119%" height="15" fill="rgb(213,106,44)" fg:x="330414" fg:w="63"/><text x="62.5100%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (81 samples, 0.02%)</title><rect x="62.2721%" y="645" width="0.0153%" height="15" fill="rgb(214,129,20)" fg:x="330478" fg:w="81"/><text x="62.5221%" y="655.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="62.2751%" y="629" width="0.0122%" height="15" fill="rgb(212,32,13)" fg:x="330494" fg:w="65"/><text x="62.5251%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (825 samples, 0.16%)</title><rect x="62.2874%" y="645" width="0.1555%" height="15" fill="rgb(208,168,33)" fg:x="330559" fg:w="825"/><text x="62.5374%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (59 samples, 0.01%)</title><rect x="62.4624%" y="629" width="0.0111%" height="15" fill="rgb(231,207,8)" fg:x="331488" fg:w="59"/><text x="62.7124%" y="639.50"></text></g><g><title>btrfs_get_64 (99 samples, 0.02%)</title><rect x="62.4735%" y="629" width="0.0187%" height="15" fill="rgb(235,219,23)" fg:x="331547" fg:w="99"/><text x="62.7235%" y="639.50"></text></g><g><title>__radix_tree_lookup (346 samples, 0.07%)</title><rect x="62.5291%" y="613" width="0.0652%" height="15" fill="rgb(226,216,26)" fg:x="331842" fg:w="346"/><text x="62.7791%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (174 samples, 0.03%)</title><rect x="62.5943%" y="613" width="0.0328%" height="15" fill="rgb(239,137,16)" fg:x="332188" fg:w="174"/><text x="62.8443%" y="623.50"></text></g><g><title>mark_page_accessed (110 samples, 0.02%)</title><rect x="62.6064%" y="597" width="0.0207%" height="15" fill="rgb(207,12,36)" fg:x="332252" fg:w="110"/><text x="62.8564%" y="607.50"></text></g><g><title>find_extent_buffer (674 samples, 0.13%)</title><rect x="62.5010%" y="629" width="0.1270%" height="15" fill="rgb(210,214,24)" fg:x="331693" fg:w="674"/><text x="62.7510%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,085 samples, 0.20%)</title><rect x="62.4428%" y="645" width="0.2044%" height="15" fill="rgb(206,56,30)" fg:x="331384" fg:w="1085"/><text x="62.6928%" y="655.50"></text></g><g><title>read_extent_buffer (102 samples, 0.02%)</title><rect x="62.6280%" y="629" width="0.0192%" height="15" fill="rgb(228,143,26)" fg:x="332367" fg:w="102"/><text x="62.8780%" y="639.50"></text></g><g><title>release_extent_buffer (59 samples, 0.01%)</title><rect x="62.6512%" y="645" width="0.0111%" height="15" fill="rgb(216,218,46)" fg:x="332490" fg:w="59"/><text x="62.9012%" y="655.50"></text></g><g><title>btrfs_search_slot (3,417 samples, 0.64%)</title><rect x="62.0386%" y="661" width="0.6439%" height="15" fill="rgb(206,6,19)" fg:x="329239" fg:w="3417"/><text x="62.2886%" y="671.50"></text></g><g><title>unlock_up (107 samples, 0.02%)</title><rect x="62.6623%" y="645" width="0.0202%" height="15" fill="rgb(239,177,51)" fg:x="332549" fg:w="107"/><text x="62.9123%" y="655.50"></text></g><g><title>memset_erms (66 samples, 0.01%)</title><rect x="62.7128%" y="645" width="0.0124%" height="15" fill="rgb(216,55,25)" fg:x="332817" fg:w="66"/><text x="62.9628%" y="655.50"></text></g><g><title>kmem_cache_alloc (242 samples, 0.05%)</title><rect x="62.6893%" y="661" width="0.0456%" height="15" fill="rgb(231,163,29)" fg:x="332692" fg:w="242"/><text x="62.9393%" y="671.50"></text></g><g><title>btrfs_del_inode_ref (4,438 samples, 0.84%)</title><rect x="61.9261%" y="677" width="0.8363%" height="15" fill="rgb(232,149,50)" fg:x="328642" fg:w="4438"/><text x="62.1761%" y="687.50"></text></g><g><title>kmem_cache_free (146 samples, 0.03%)</title><rect x="62.7349%" y="661" width="0.0275%" height="15" fill="rgb(223,142,48)" fg:x="332934" fg:w="146"/><text x="62.9849%" y="671.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="62.7699%" y="677" width="0.0121%" height="15" fill="rgb(245,83,23)" fg:x="333120" fg:w="64"/><text x="63.0199%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (4,692 samples, 0.88%)</title><rect x="61.9135%" y="693" width="0.8841%" height="15" fill="rgb(224,63,2)" fg:x="328575" fg:w="4692"/><text x="62.1635%" y="703.50"></text></g><g><title>mutex_unlock (83 samples, 0.02%)</title><rect x="62.7820%" y="677" width="0.0156%" height="15" fill="rgb(218,65,53)" fg:x="333184" fg:w="83"/><text x="63.0320%" y="687.50"></text></g><g><title>_find_next_bit.constprop.0 (520 samples, 0.10%)</title><rect x="63.0405%" y="613" width="0.0980%" height="15" fill="rgb(221,84,29)" fg:x="334556" fg:w="520"/><text x="63.2905%" y="623.50"></text></g><g><title>steal_from_bitmap.part.0 (615 samples, 0.12%)</title><rect x="63.0285%" y="629" width="0.1159%" height="15" fill="rgb(234,0,32)" fg:x="334492" fg:w="615"/><text x="63.2785%" y="639.50"></text></g><g><title>__btrfs_add_free_space (629 samples, 0.12%)</title><rect x="63.0273%" y="645" width="0.1185%" height="15" fill="rgb(206,20,16)" fg:x="334486" fg:w="629"/><text x="63.2773%" y="655.50"></text></g><g><title>btrfs_free_tree_block (677 samples, 0.13%)</title><rect x="63.0271%" y="661" width="0.1276%" height="15" fill="rgb(244,172,18)" fg:x="334485" fg:w="677"/><text x="63.2771%" y="671.50"></text></g><g><title>btrfs_del_leaf (690 samples, 0.13%)</title><rect x="63.0269%" y="677" width="0.1300%" height="15" fill="rgb(254,133,1)" fg:x="334484" fg:w="690"/><text x="63.2769%" y="687.50"></text></g><g><title>btrfs_get_32 (144 samples, 0.03%)</title><rect x="63.1570%" y="677" width="0.0271%" height="15" fill="rgb(222,206,41)" fg:x="335174" fg:w="144"/><text x="63.4070%" y="687.50"></text></g><g><title>btrfs_get_token_32 (3,578 samples, 0.67%)</title><rect x="63.1841%" y="677" width="0.6742%" height="15" fill="rgb(212,3,42)" fg:x="335318" fg:w="3578"/><text x="63.4341%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (465 samples, 0.09%)</title><rect x="63.7707%" y="661" width="0.0876%" height="15" fill="rgb(241,11,4)" fg:x="338431" fg:w="465"/><text x="64.0207%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (177 samples, 0.03%)</title><rect x="63.8583%" y="677" width="0.0334%" height="15" fill="rgb(205,19,26)" fg:x="338896" fg:w="177"/><text x="64.1083%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (102 samples, 0.02%)</title><rect x="63.8724%" y="661" width="0.0192%" height="15" fill="rgb(210,179,32)" fg:x="338971" fg:w="102"/><text x="64.1224%" y="671.50"></text></g><g><title>btrfs_set_token_32 (3,033 samples, 0.57%)</title><rect x="63.8924%" y="677" width="0.5715%" height="15" fill="rgb(227,116,49)" fg:x="339077" fg:w="3033"/><text x="64.1424%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (619 samples, 0.12%)</title><rect x="64.3473%" y="661" width="0.1166%" height="15" fill="rgb(211,146,6)" fg:x="341491" fg:w="619"/><text x="64.5973%" y="671.50"></text></g><g><title>leaf_space_used (139 samples, 0.03%)</title><rect x="64.4645%" y="677" width="0.0262%" height="15" fill="rgb(219,44,39)" fg:x="342113" fg:w="139"/><text x="64.7145%" y="687.50"></text></g><g><title>btrfs_get_32 (84 samples, 0.02%)</title><rect x="64.4748%" y="661" width="0.0158%" height="15" fill="rgb(234,128,11)" fg:x="342168" fg:w="84"/><text x="64.7248%" y="671.50"></text></g><g><title>copy_pages (77 samples, 0.01%)</title><rect x="64.5042%" y="661" width="0.0145%" height="15" fill="rgb(220,183,53)" fg:x="342324" fg:w="77"/><text x="64.7542%" y="671.50"></text></g><g><title>memcpy_extent_buffer (618 samples, 0.12%)</title><rect x="64.4907%" y="677" width="0.1164%" height="15" fill="rgb(213,219,32)" fg:x="342252" fg:w="618"/><text x="64.7407%" y="687.50"></text></g><g><title>memmove (469 samples, 0.09%)</title><rect x="64.5187%" y="661" width="0.0884%" height="15" fill="rgb(232,156,16)" fg:x="342401" fg:w="469"/><text x="64.7687%" y="671.50"></text></g><g><title>copy_pages (154 samples, 0.03%)</title><rect x="64.6307%" y="661" width="0.0290%" height="15" fill="rgb(246,135,34)" fg:x="342995" fg:w="154"/><text x="64.8807%" y="671.50"></text></g><g><title>memmove_extent_buffer (1,741 samples, 0.33%)</title><rect x="64.6071%" y="677" width="0.3281%" height="15" fill="rgb(241,99,0)" fg:x="342870" fg:w="1741"/><text x="64.8571%" y="687.50"></text></g><g><title>memmove (1,462 samples, 0.28%)</title><rect x="64.6597%" y="661" width="0.2755%" height="15" fill="rgb(222,103,45)" fg:x="343149" fg:w="1462"/><text x="64.9097%" y="671.50"></text></g><g><title>__push_leaf_left (102 samples, 0.02%)</title><rect x="64.9365%" y="661" width="0.0192%" height="15" fill="rgb(212,57,4)" fg:x="344618" fg:w="102"/><text x="65.1865%" y="671.50"></text></g><g><title>push_leaf_left (162 samples, 0.03%)</title><rect x="64.9352%" y="677" width="0.0305%" height="15" fill="rgb(215,68,47)" fg:x="344611" fg:w="162"/><text x="65.1852%" y="687.50"></text></g><g><title>__push_leaf_right (116 samples, 0.02%)</title><rect x="64.9665%" y="661" width="0.0219%" height="15" fill="rgb(230,84,2)" fg:x="344777" fg:w="116"/><text x="65.2165%" y="671.50"></text></g><g><title>push_leaf_right (164 samples, 0.03%)</title><rect x="64.9657%" y="677" width="0.0309%" height="15" fill="rgb(220,102,14)" fg:x="344773" fg:w="164"/><text x="65.2157%" y="687.50"></text></g><g><title>btrfs_del_items (11,685 samples, 2.20%)</title><rect x="62.7976%" y="693" width="2.2018%" height="15" fill="rgb(240,10,32)" fg:x="333267" fg:w="11685"/><text x="63.0476%" y="703.50">b..</text></g><g><title>btrfs_comp_cpu_keys (81 samples, 0.02%)</title><rect x="65.0379%" y="661" width="0.0153%" height="15" fill="rgb(215,47,27)" fg:x="345156" fg:w="81"/><text x="65.2879%" y="671.50"></text></g><g><title>__btrfs_add_delayed_item (336 samples, 0.06%)</title><rect x="65.0075%" y="677" width="0.0633%" height="15" fill="rgb(233,188,43)" fg:x="344995" fg:w="336"/><text x="65.2575%" y="687.50"></text></g><g><title>rb_insert_color (94 samples, 0.02%)</title><rect x="65.0531%" y="661" width="0.0177%" height="15" fill="rgb(253,190,1)" fg:x="345237" fg:w="94"/><text x="65.3031%" y="671.50"></text></g><g><title>mutex_lock (59 samples, 0.01%)</title><rect x="65.0985%" y="661" width="0.0111%" height="15" fill="rgb(206,114,52)" fg:x="345478" fg:w="59"/><text x="65.3485%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (292 samples, 0.06%)</title><rect x="65.0708%" y="677" width="0.0550%" height="15" fill="rgb(233,120,37)" fg:x="345331" fg:w="292"/><text x="65.3208%" y="687.50"></text></g><g><title>mutex_unlock (86 samples, 0.02%)</title><rect x="65.1097%" y="661" width="0.0162%" height="15" fill="rgb(214,52,39)" fg:x="345537" fg:w="86"/><text x="65.3597%" y="671.50"></text></g><g><title>mutex_spin_on_owner (513 samples, 0.10%)</title><rect x="65.1262%" y="661" width="0.0967%" height="15" fill="rgb(223,80,29)" fg:x="345625" fg:w="513"/><text x="65.3762%" y="671.50"></text></g><g><title>__mutex_lock.constprop.0 (517 samples, 0.10%)</title><rect x="65.1259%" y="677" width="0.0974%" height="15" fill="rgb(230,101,40)" fg:x="345623" fg:w="517"/><text x="65.3759%" y="687.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (215 samples, 0.04%)</title><rect x="65.2233%" y="677" width="0.0405%" height="15" fill="rgb(219,211,8)" fg:x="346140" fg:w="215"/><text x="65.4733%" y="687.50"></text></g><g><title>btrfs_block_rsv_migrate (193 samples, 0.04%)</title><rect x="65.2274%" y="661" width="0.0364%" height="15" fill="rgb(252,126,28)" fg:x="346162" fg:w="193"/><text x="65.4774%" y="671.50"></text></g><g><title>_raw_spin_lock (163 samples, 0.03%)</title><rect x="65.2331%" y="645" width="0.0307%" height="15" fill="rgb(215,56,38)" fg:x="346192" fg:w="163"/><text x="65.4831%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (93 samples, 0.02%)</title><rect x="65.2638%" y="677" width="0.0175%" height="15" fill="rgb(249,55,44)" fg:x="346355" fg:w="93"/><text x="65.5138%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (73 samples, 0.01%)</title><rect x="65.2676%" y="661" width="0.0138%" height="15" fill="rgb(220,221,32)" fg:x="346375" fg:w="73"/><text x="65.5176%" y="671.50"></text></g><g><title>__slab_alloc (58 samples, 0.01%)</title><rect x="65.2964%" y="661" width="0.0109%" height="15" fill="rgb(212,216,41)" fg:x="346528" fg:w="58"/><text x="65.5464%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (239 samples, 0.05%)</title><rect x="65.2813%" y="677" width="0.0450%" height="15" fill="rgb(228,213,43)" fg:x="346448" fg:w="239"/><text x="65.5313%" y="687.50"></text></g><g><title>mutex_lock (112 samples, 0.02%)</title><rect x="65.3264%" y="677" width="0.0211%" height="15" fill="rgb(211,31,26)" fg:x="346687" fg:w="112"/><text x="65.5764%" y="687.50"></text></g><g><title>btrfs_delete_delayed_dir_index (1,969 samples, 0.37%)</title><rect x="64.9994%" y="693" width="0.3710%" height="15" fill="rgb(229,202,19)" fg:x="344952" fg:w="1969"/><text x="65.2494%" y="703.50"></text></g><g><title>mutex_unlock (122 samples, 0.02%)</title><rect x="65.3475%" y="677" width="0.0230%" height="15" fill="rgb(229,105,46)" fg:x="346799" fg:w="122"/><text x="65.5975%" y="687.50"></text></g><g><title>btrfs_get_16 (58 samples, 0.01%)</title><rect x="65.3799%" y="677" width="0.0109%" height="15" fill="rgb(235,108,1)" fg:x="346971" fg:w="58"/><text x="65.6299%" y="687.50"></text></g><g><title>btrfs_delete_one_dir_name (145 samples, 0.03%)</title><rect x="65.3705%" y="693" width="0.0273%" height="15" fill="rgb(245,111,35)" fg:x="346921" fg:w="145"/><text x="65.6205%" y="703.50"></text></g><g><title>btrfs_get_16 (110 samples, 0.02%)</title><rect x="65.4234%" y="661" width="0.0207%" height="15" fill="rgb(219,185,31)" fg:x="347202" fg:w="110"/><text x="65.6734%" y="671.50"></text></g><g><title>btrfs_get_32 (92 samples, 0.02%)</title><rect x="65.4441%" y="661" width="0.0173%" height="15" fill="rgb(214,4,43)" fg:x="347312" fg:w="92"/><text x="65.6941%" y="671.50"></text></g><g><title>btrfs_match_dir_item_name (430 samples, 0.08%)</title><rect x="65.4106%" y="677" width="0.0810%" height="15" fill="rgb(235,227,40)" fg:x="347134" fg:w="430"/><text x="65.6606%" y="687.50"></text></g><g><title>memcmp_extent_buffer (160 samples, 0.03%)</title><rect x="65.4615%" y="661" width="0.0301%" height="15" fill="rgb(230,88,30)" fg:x="347404" fg:w="160"/><text x="65.7115%" y="671.50"></text></g><g><title>memcmp (93 samples, 0.02%)</title><rect x="65.4741%" y="645" width="0.0175%" height="15" fill="rgb(216,217,1)" fg:x="347471" fg:w="93"/><text x="65.7241%" y="655.50"></text></g><g><title>_raw_read_lock (62 samples, 0.01%)</title><rect x="65.5474%" y="629" width="0.0117%" height="15" fill="rgb(248,139,50)" fg:x="347860" fg:w="62"/><text x="65.7974%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.02%)</title><rect x="65.5425%" y="645" width="0.0170%" height="15" fill="rgb(233,1,21)" fg:x="347834" fg:w="90"/><text x="65.7925%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (236 samples, 0.04%)</title><rect x="65.5391%" y="661" width="0.0445%" height="15" fill="rgb(215,183,12)" fg:x="347816" fg:w="236"/><text x="65.7891%" y="671.50"></text></g><g><title>btrfs_root_node (128 samples, 0.02%)</title><rect x="65.5594%" y="645" width="0.0241%" height="15" fill="rgb(229,104,42)" fg:x="347924" fg:w="128"/><text x="65.8094%" y="655.50"></text></g><g><title>_raw_write_lock (60 samples, 0.01%)</title><rect x="65.6039%" y="629" width="0.0113%" height="15" fill="rgb(243,34,48)" fg:x="348160" fg:w="60"/><text x="65.8539%" y="639.50"></text></g><g><title>__btrfs_tree_lock (153 samples, 0.03%)</title><rect x="65.5943%" y="645" width="0.0288%" height="15" fill="rgb(239,11,44)" fg:x="348109" fg:w="153"/><text x="65.8443%" y="655.50"></text></g><g><title>btrfs_lock_root_node (237 samples, 0.04%)</title><rect x="65.5920%" y="661" width="0.0447%" height="15" fill="rgb(231,98,35)" fg:x="348097" fg:w="237"/><text x="65.8420%" y="671.50"></text></g><g><title>btrfs_root_node (72 samples, 0.01%)</title><rect x="65.6231%" y="645" width="0.0136%" height="15" fill="rgb(233,28,25)" fg:x="348262" fg:w="72"/><text x="65.8731%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (54 samples, 0.01%)</title><rect x="65.6367%" y="661" width="0.0102%" height="15" fill="rgb(234,123,11)" fg:x="348334" fg:w="54"/><text x="65.8867%" y="671.50"></text></g><g><title>_raw_write_lock (87 samples, 0.02%)</title><rect x="65.6510%" y="645" width="0.0164%" height="15" fill="rgb(220,69,3)" fg:x="348410" fg:w="87"/><text x="65.9010%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (216 samples, 0.04%)</title><rect x="65.6469%" y="661" width="0.0407%" height="15" fill="rgb(214,64,36)" fg:x="348388" fg:w="216"/><text x="65.8969%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (107 samples, 0.02%)</title><rect x="65.6674%" y="645" width="0.0202%" height="15" fill="rgb(211,138,32)" fg:x="348497" fg:w="107"/><text x="65.9174%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (59 samples, 0.01%)</title><rect x="65.6880%" y="661" width="0.0111%" height="15" fill="rgb(213,118,47)" fg:x="348606" fg:w="59"/><text x="65.9380%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (1,070 samples, 0.20%)</title><rect x="65.6991%" y="661" width="0.2016%" height="15" fill="rgb(243,124,49)" fg:x="348665" fg:w="1070"/><text x="65.9491%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (71 samples, 0.01%)</title><rect x="65.9258%" y="645" width="0.0134%" height="15" fill="rgb(221,30,28)" fg:x="349868" fg:w="71"/><text x="66.1758%" y="655.50"></text></g><g><title>btrfs_get_64 (147 samples, 0.03%)</title><rect x="65.9391%" y="645" width="0.0277%" height="15" fill="rgb(246,37,13)" fg:x="349939" fg:w="147"/><text x="66.1891%" y="655.50"></text></g><g><title>__radix_tree_lookup (617 samples, 0.12%)</title><rect x="66.0147%" y="629" width="0.1163%" height="15" fill="rgb(249,66,14)" fg:x="350340" fg:w="617"/><text x="66.2647%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (284 samples, 0.05%)</title><rect x="66.1317%" y="629" width="0.0535%" height="15" fill="rgb(213,166,5)" fg:x="350961" fg:w="284"/><text x="66.3817%" y="639.50"></text></g><g><title>mark_page_accessed (180 samples, 0.03%)</title><rect x="66.1513%" y="613" width="0.0339%" height="15" fill="rgb(221,66,24)" fg:x="351065" fg:w="180"/><text x="66.4013%" y="623.50"></text></g><g><title>find_extent_buffer (1,112 samples, 0.21%)</title><rect x="65.9766%" y="645" width="0.2095%" height="15" fill="rgb(210,132,17)" fg:x="350138" fg:w="1112"/><text x="66.2266%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,681 samples, 0.32%)</title><rect x="65.9007%" y="661" width="0.3168%" height="15" fill="rgb(243,202,5)" fg:x="349735" fg:w="1681"/><text x="66.1507%" y="671.50"></text></g><g><title>read_extent_buffer (166 samples, 0.03%)</title><rect x="66.1862%" y="645" width="0.0313%" height="15" fill="rgb(233,70,48)" fg:x="351250" fg:w="166"/><text x="66.4362%" y="655.50"></text></g><g><title>btrfs_search_slot (4,075 samples, 0.77%)</title><rect x="65.4916%" y="677" width="0.7679%" height="15" fill="rgb(238,41,26)" fg:x="347564" fg:w="4075"/><text x="65.7416%" y="687.50"></text></g><g><title>unlock_up (196 samples, 0.04%)</title><rect x="66.2225%" y="661" width="0.0369%" height="15" fill="rgb(241,19,31)" fg:x="351443" fg:w="196"/><text x="66.4725%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (4,594 samples, 0.87%)</title><rect x="65.4032%" y="693" width="0.8656%" height="15" fill="rgb(214,76,10)" fg:x="347095" fg:w="4594"/><text x="65.6532%" y="703.50"></text></g><g><title>_raw_spin_lock (155 samples, 0.03%)</title><rect x="66.2941%" y="661" width="0.0292%" height="15" fill="rgb(254,202,22)" fg:x="351823" fg:w="155"/><text x="66.5441%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (218 samples, 0.04%)</title><rect x="66.2825%" y="677" width="0.0411%" height="15" fill="rgb(214,72,24)" fg:x="351761" fg:w="218"/><text x="66.5325%" y="687.50"></text></g><g><title>btrfs_release_path (444 samples, 0.08%)</title><rect x="66.2689%" y="693" width="0.0837%" height="15" fill="rgb(221,92,46)" fg:x="351689" fg:w="444"/><text x="66.5189%" y="703.50"></text></g><g><title>release_extent_buffer (154 samples, 0.03%)</title><rect x="66.3235%" y="677" width="0.0290%" height="15" fill="rgb(246,13,50)" fg:x="351979" fg:w="154"/><text x="66.5735%" y="687.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="66.4010%" y="645" width="0.0121%" height="15" fill="rgb(240,165,38)" fg:x="352390" fg:w="64"/><text x="66.6510%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (282 samples, 0.05%)</title><rect x="66.3714%" y="661" width="0.0531%" height="15" fill="rgb(241,24,51)" fg:x="352233" fg:w="282"/><text x="66.6214%" y="671.50"></text></g><g><title>mutex_unlock (61 samples, 0.01%)</title><rect x="66.4130%" y="645" width="0.0115%" height="15" fill="rgb(227,51,44)" fg:x="352454" fg:w="61"/><text x="66.6630%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (80 samples, 0.02%)</title><rect x="66.4245%" y="661" width="0.0151%" height="15" fill="rgb(231,121,3)" fg:x="352515" fg:w="80"/><text x="66.6745%" y="671.50"></text></g><g><title>mutex_spin_on_owner (79 samples, 0.01%)</title><rect x="66.4247%" y="645" width="0.0149%" height="15" fill="rgb(245,3,41)" fg:x="352516" fg:w="79"/><text x="66.6747%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (101 samples, 0.02%)</title><rect x="66.4396%" y="661" width="0.0190%" height="15" fill="rgb(214,13,26)" fg:x="352595" fg:w="101"/><text x="66.6896%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (84 samples, 0.02%)</title><rect x="66.4428%" y="645" width="0.0158%" height="15" fill="rgb(252,75,11)" fg:x="352612" fg:w="84"/><text x="66.6928%" y="655.50"></text></g><g><title>inode_get_bytes (84 samples, 0.02%)</title><rect x="66.4660%" y="645" width="0.0158%" height="15" fill="rgb(218,226,17)" fg:x="352735" fg:w="84"/><text x="66.7160%" y="655.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="66.4690%" y="629" width="0.0128%" height="15" fill="rgb(248,89,38)" fg:x="352751" fg:w="68"/><text x="66.7190%" y="639.50"></text></g><g><title>fill_stack_inode_item (155 samples, 0.03%)</title><rect x="66.4586%" y="661" width="0.0292%" height="15" fill="rgb(237,73,46)" fg:x="352696" fg:w="155"/><text x="66.7086%" y="671.50"></text></g><g><title>mutex_lock (60 samples, 0.01%)</title><rect x="66.4878%" y="661" width="0.0113%" height="15" fill="rgb(242,78,33)" fg:x="352851" fg:w="60"/><text x="66.7378%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (784 samples, 0.15%)</title><rect x="66.3671%" y="677" width="0.1477%" height="15" fill="rgb(235,60,3)" fg:x="352210" fg:w="784"/><text x="66.6171%" y="687.50"></text></g><g><title>mutex_unlock (83 samples, 0.02%)</title><rect x="66.4992%" y="661" width="0.0156%" height="15" fill="rgb(216,172,19)" fg:x="352911" fg:w="83"/><text x="66.7492%" y="671.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="66.5180%" y="661" width="0.0107%" height="15" fill="rgb(227,6,42)" fg:x="353011" fg:w="57"/><text x="66.7680%" y="671.50"></text></g><g><title>btrfs_update_inode (1,035 samples, 0.20%)</title><rect x="66.3526%" y="693" width="0.1950%" height="15" fill="rgb(223,207,42)" fg:x="352133" fg:w="1035"/><text x="66.6026%" y="703.50"></text></g><g><title>btrfs_update_root_times (174 samples, 0.03%)</title><rect x="66.5148%" y="677" width="0.0328%" height="15" fill="rgb(246,138,30)" fg:x="352994" fg:w="174"/><text x="66.7648%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (100 samples, 0.02%)</title><rect x="66.5287%" y="661" width="0.0188%" height="15" fill="rgb(251,199,47)" fg:x="353068" fg:w="100"/><text x="66.7787%" y="671.50"></text></g><g><title>read_tsc (69 samples, 0.01%)</title><rect x="66.5346%" y="645" width="0.0130%" height="15" fill="rgb(228,218,44)" fg:x="353099" fg:w="69"/><text x="66.7846%" y="655.50"></text></g><g><title>current_time (65 samples, 0.01%)</title><rect x="66.5476%" y="693" width="0.0122%" height="15" fill="rgb(220,68,6)" fg:x="353168" fg:w="65"/><text x="66.7976%" y="703.50"></text></g><g><title>kmem_cache_alloc (149 samples, 0.03%)</title><rect x="66.5598%" y="693" width="0.0281%" height="15" fill="rgb(240,60,26)" fg:x="353233" fg:w="149"/><text x="66.8098%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (42,394 samples, 7.99%)</title><rect x="58.6258%" y="709" width="7.9883%" height="15" fill="rgb(211,200,19)" fg:x="311127" fg:w="42394"/><text x="58.8758%" y="719.50">__btrfs_unl..</text></g><g><title>kmem_cache_free (139 samples, 0.03%)</title><rect x="66.5879%" y="693" width="0.0262%" height="15" fill="rgb(242,145,30)" fg:x="353382" fg:w="139"/><text x="66.8379%" y="703.50"></text></g><g><title>btrfs_balance_delayed_items (69 samples, 0.01%)</title><rect x="66.6186%" y="693" width="0.0130%" height="15" fill="rgb(225,64,13)" fg:x="353545" fg:w="69"/><text x="66.8686%" y="703.50"></text></g><g><title>ttwu_do_activate (71 samples, 0.01%)</title><rect x="66.6525%" y="645" width="0.0134%" height="15" fill="rgb(218,103,35)" fg:x="353725" fg:w="71"/><text x="66.9025%" y="655.50"></text></g><g><title>btrfs_btree_balance_dirty (299 samples, 0.06%)</title><rect x="66.6141%" y="709" width="0.0563%" height="15" fill="rgb(216,93,46)" fg:x="353521" fg:w="299"/><text x="66.8641%" y="719.50"></text></g><g><title>queue_work_on (197 samples, 0.04%)</title><rect x="66.6333%" y="693" width="0.0371%" height="15" fill="rgb(225,159,27)" fg:x="353623" fg:w="197"/><text x="66.8833%" y="703.50"></text></g><g><title>__queue_work (190 samples, 0.04%)</title><rect x="66.6346%" y="677" width="0.0358%" height="15" fill="rgb(225,204,11)" fg:x="353630" fg:w="190"/><text x="66.8846%" y="687.50"></text></g><g><title>try_to_wake_up (136 samples, 0.03%)</title><rect x="66.6448%" y="661" width="0.0256%" height="15" fill="rgb(205,56,4)" fg:x="353684" fg:w="136"/><text x="66.8948%" y="671.50"></text></g><g><title>mutex_lock (295 samples, 0.06%)</title><rect x="66.6750%" y="693" width="0.0556%" height="15" fill="rgb(206,6,35)" fg:x="353844" fg:w="295"/><text x="66.9250%" y="703.50"></text></g><g><title>btrfs_record_unlink_dir (452 samples, 0.09%)</title><rect x="66.6706%" y="709" width="0.0852%" height="15" fill="rgb(247,73,52)" fg:x="353821" fg:w="452"/><text x="66.9206%" y="719.50"></text></g><g><title>mutex_unlock (134 samples, 0.03%)</title><rect x="66.7305%" y="693" width="0.0252%" height="15" fill="rgb(246,97,4)" fg:x="354139" fg:w="134"/><text x="66.9805%" y="703.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="66.8459%" y="661" width="0.0132%" height="15" fill="rgb(212,37,15)" fg:x="354751" fg:w="70"/><text x="67.0959%" y="671.50"></text></g><g><title>mutex_lock (60 samples, 0.01%)</title><rect x="66.8591%" y="661" width="0.0113%" height="15" fill="rgb(208,130,40)" fg:x="354821" fg:w="60"/><text x="67.1091%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (426 samples, 0.08%)</title><rect x="66.8010%" y="677" width="0.0803%" height="15" fill="rgb(236,55,29)" fg:x="354513" fg:w="426"/><text x="67.0510%" y="687.50"></text></g><g><title>mutex_unlock (58 samples, 0.01%)</title><rect x="66.8704%" y="661" width="0.0109%" height="15" fill="rgb(209,156,45)" fg:x="354881" fg:w="58"/><text x="67.1204%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (168 samples, 0.03%)</title><rect x="66.8813%" y="677" width="0.0317%" height="15" fill="rgb(249,107,4)" fg:x="354939" fg:w="168"/><text x="67.1313%" y="687.50"></text></g><g><title>_raw_spin_lock (136 samples, 0.03%)</title><rect x="66.8873%" y="661" width="0.0256%" height="15" fill="rgb(227,7,13)" fg:x="354971" fg:w="136"/><text x="67.1373%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (488 samples, 0.09%)</title><rect x="66.9129%" y="677" width="0.0920%" height="15" fill="rgb(250,129,14)" fg:x="355107" fg:w="488"/><text x="67.1629%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (474 samples, 0.09%)</title><rect x="66.9156%" y="661" width="0.0893%" height="15" fill="rgb(229,92,13)" fg:x="355121" fg:w="474"/><text x="67.1656%" y="671.50"></text></g><g><title>inode_get_bytes (66 samples, 0.01%)</title><rect x="67.0122%" y="661" width="0.0124%" height="15" fill="rgb(245,98,39)" fg:x="355634" fg:w="66"/><text x="67.2622%" y="671.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="67.0138%" y="645" width="0.0109%" height="15" fill="rgb(234,135,48)" fg:x="355642" fg:w="58"/><text x="67.2638%" y="655.50"></text></g><g><title>fill_stack_inode_item (144 samples, 0.03%)</title><rect x="67.0049%" y="677" width="0.0271%" height="15" fill="rgb(230,98,28)" fg:x="355595" fg:w="144"/><text x="67.2549%" y="687.50"></text></g><g><title>mutex_lock (82 samples, 0.02%)</title><rect x="67.0320%" y="677" width="0.0155%" height="15" fill="rgb(223,121,0)" fg:x="355739" fg:w="82"/><text x="67.2820%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (1,515 samples, 0.29%)</title><rect x="66.7695%" y="693" width="0.2855%" height="15" fill="rgb(234,173,33)" fg:x="354346" fg:w="1515"/><text x="67.0195%" y="703.50"></text></g><g><title>btrfs_update_inode (1,758 samples, 0.33%)</title><rect x="66.7564%" y="709" width="0.3313%" height="15" fill="rgb(245,47,8)" fg:x="354276" fg:w="1758"/><text x="67.0064%" y="719.50"></text></g><g><title>btrfs_update_root_times (173 samples, 0.03%)</title><rect x="67.0550%" y="693" width="0.0326%" height="15" fill="rgb(205,17,20)" fg:x="355861" fg:w="173"/><text x="67.3050%" y="703.50"></text></g><g><title>ktime_get_real_ts64 (107 samples, 0.02%)</title><rect x="67.0675%" y="677" width="0.0202%" height="15" fill="rgb(232,151,16)" fg:x="355927" fg:w="107"/><text x="67.3175%" y="687.50"></text></g><g><title>read_tsc (65 samples, 0.01%)</title><rect x="67.0754%" y="661" width="0.0122%" height="15" fill="rgb(208,30,32)" fg:x="355969" fg:w="65"/><text x="67.3254%" y="671.50"></text></g><g><title>_raw_spin_lock (78 samples, 0.01%)</title><rect x="67.1259%" y="677" width="0.0147%" height="15" fill="rgb(254,26,3)" fg:x="356237" fg:w="78"/><text x="67.3759%" y="687.50"></text></g><g><title>_raw_spin_lock (114 samples, 0.02%)</title><rect x="67.1523%" y="645" width="0.0215%" height="15" fill="rgb(240,177,30)" fg:x="356377" fg:w="114"/><text x="67.4023%" y="655.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.02%)</title><rect x="67.2397%" y="613" width="0.0192%" height="15" fill="rgb(248,76,44)" fg:x="356841" fg:w="102"/><text x="67.4897%" y="623.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (453 samples, 0.09%)</title><rect x="67.1737%" y="645" width="0.0854%" height="15" fill="rgb(241,186,54)" fg:x="356491" fg:w="453"/><text x="67.4237%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (261 samples, 0.05%)</title><rect x="67.2099%" y="629" width="0.0492%" height="15" fill="rgb(249,171,29)" fg:x="356683" fg:w="261"/><text x="67.4599%" y="639.50"></text></g><g><title>btrfs_block_rsv_add (946 samples, 0.18%)</title><rect x="67.1230%" y="693" width="0.1783%" height="15" fill="rgb(237,151,44)" fg:x="356222" fg:w="946"/><text x="67.3730%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (853 samples, 0.16%)</title><rect x="67.1406%" y="677" width="0.1607%" height="15" fill="rgb(228,174,30)" fg:x="356315" fg:w="853"/><text x="67.3906%" y="687.50"></text></g><g><title>__reserve_bytes (846 samples, 0.16%)</title><rect x="67.1419%" y="661" width="0.1594%" height="15" fill="rgb(252,14,37)" fg:x="356322" fg:w="846"/><text x="67.3919%" y="671.50"></text></g><g><title>calc_available_free_space.isra.0 (224 samples, 0.04%)</title><rect x="67.2591%" y="645" width="0.0422%" height="15" fill="rgb(207,111,40)" fg:x="356944" fg:w="224"/><text x="67.5091%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (132 samples, 0.02%)</title><rect x="67.2764%" y="629" width="0.0249%" height="15" fill="rgb(248,171,54)" fg:x="357036" fg:w="132"/><text x="67.5264%" y="639.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="67.2894%" y="613" width="0.0119%" height="15" fill="rgb(211,127,2)" fg:x="357105" fg:w="63"/><text x="67.5394%" y="623.50"></text></g><g><title>join_transaction (279 samples, 0.05%)</title><rect x="67.3026%" y="693" width="0.0526%" height="15" fill="rgb(236,87,47)" fg:x="357175" fg:w="279"/><text x="67.5526%" y="703.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="67.3439%" y="677" width="0.0113%" height="15" fill="rgb(223,190,45)" fg:x="357394" fg:w="60"/><text x="67.5939%" y="687.50"></text></g><g><title>kmem_cache_alloc (159 samples, 0.03%)</title><rect x="67.3552%" y="693" width="0.0300%" height="15" fill="rgb(215,5,16)" fg:x="357454" fg:w="159"/><text x="67.6052%" y="703.50"></text></g><g><title>btrfs_unlink (47,197 samples, 8.89%)</title><rect x="58.5088%" y="725" width="8.8933%" height="15" fill="rgb(252,82,33)" fg:x="310506" fg:w="47197"/><text x="58.7588%" y="735.50">btrfs_unlink</text></g><g><title>start_transaction (1,666 samples, 0.31%)</title><rect x="67.0882%" y="709" width="0.3139%" height="15" fill="rgb(247,213,44)" fg:x="356037" fg:w="1666"/><text x="67.3382%" y="719.50"></text></g><g><title>wait_current_trans (90 samples, 0.02%)</title><rect x="67.3852%" y="693" width="0.0170%" height="15" fill="rgb(205,196,44)" fg:x="357613" fg:w="90"/><text x="67.6352%" y="703.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.01%)</title><rect x="67.3884%" y="677" width="0.0138%" height="15" fill="rgb(237,96,54)" fg:x="357630" fg:w="73"/><text x="67.6384%" y="687.50"></text></g><g><title>d_delete (105 samples, 0.02%)</title><rect x="67.4021%" y="725" width="0.0198%" height="15" fill="rgb(230,113,34)" fg:x="357703" fg:w="105"/><text x="67.6521%" y="735.50"></text></g><g><title>_raw_spin_lock (89 samples, 0.02%)</title><rect x="67.4051%" y="709" width="0.0168%" height="15" fill="rgb(221,224,12)" fg:x="357719" fg:w="89"/><text x="67.6551%" y="719.50"></text></g><g><title>down_write (497 samples, 0.09%)</title><rect x="67.4287%" y="725" width="0.0936%" height="15" fill="rgb(219,112,44)" fg:x="357844" fg:w="497"/><text x="67.6787%" y="735.50"></text></g><g><title>fsnotify (343 samples, 0.06%)</title><rect x="67.5223%" y="725" width="0.0646%" height="15" fill="rgb(210,31,13)" fg:x="358341" fg:w="343"/><text x="67.7723%" y="735.50"></text></g><g><title>_atomic_dec_and_lock (149 samples, 0.03%)</title><rect x="67.6011%" y="709" width="0.0281%" height="15" fill="rgb(230,25,16)" fg:x="358759" fg:w="149"/><text x="67.8511%" y="719.50"></text></g><g><title>iput.part.0 (176 samples, 0.03%)</title><rect x="67.5962%" y="725" width="0.0332%" height="15" fill="rgb(246,108,53)" fg:x="358733" fg:w="176"/><text x="67.8462%" y="735.50"></text></g><g><title>may_delete (101 samples, 0.02%)</title><rect x="67.6294%" y="725" width="0.0190%" height="15" fill="rgb(241,172,50)" fg:x="358909" fg:w="101"/><text x="67.8794%" y="735.50"></text></g><g><title>do_unlinkat (51,851 samples, 9.77%)</title><rect x="57.8935%" y="757" width="9.7703%" height="15" fill="rgb(235,141,10)" fg:x="307241" fg:w="51851"/><text x="58.1435%" y="767.50">do_unlinkat</text></g><g><title>vfs_unlink (48,756 samples, 9.19%)</title><rect x="58.4767%" y="741" width="9.1871%" height="15" fill="rgb(220,174,43)" fg:x="310336" fg:w="48756"/><text x="58.7267%" y="751.50">vfs_unlink</text></g><g><title>up_write (65 samples, 0.01%)</title><rect x="67.6516%" y="725" width="0.0122%" height="15" fill="rgb(215,181,40)" fg:x="359027" fg:w="65"/><text x="67.9016%" y="735.50"></text></g><g><title>do_syscall_64 (64,682 samples, 12.19%)</title><rect x="55.4782%" y="773" width="12.1881%" height="15" fill="rgb(230,97,2)" fg:x="294423" fg:w="64682"/><text x="55.7282%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (64,800 samples, 12.21%)</title><rect x="55.4698%" y="789" width="12.2103%" height="15" fill="rgb(211,25,27)" fg:x="294378" fg:w="64800"/><text x="55.7198%" y="799.50">entry_SYSCALL_64_a..</text></g><g><title>syscall_exit_to_user_mode (73 samples, 0.01%)</title><rect x="67.6663%" y="773" width="0.0138%" height="15" fill="rgb(230,87,26)" fg:x="359105" fg:w="73"/><text x="67.9163%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (60 samples, 0.01%)</title><rect x="67.6687%" y="757" width="0.0113%" height="15" fill="rgb(227,160,17)" fg:x="359118" fg:w="60"/><text x="67.9187%" y="767.50"></text></g><g><title>__GI_unlinkat (65,232 samples, 12.29%)</title><rect x="55.4004%" y="805" width="12.2917%" height="15" fill="rgb(244,85,34)" fg:x="294010" fg:w="65232"/><text x="55.6504%" y="815.50">__GI_unlinkat</text></g><g><title>syscall_return_via_sysret (61 samples, 0.01%)</title><rect x="67.6806%" y="789" width="0.0115%" height="15" fill="rgb(207,70,0)" fg:x="359181" fg:w="61"/><text x="67.9306%" y="799.50"></text></g><g><title>__closedir (72 samples, 0.01%)</title><rect x="67.6932%" y="805" width="0.0136%" height="15" fill="rgb(223,129,7)" fg:x="359248" fg:w="72"/><text x="67.9432%" y="815.50"></text></g><g><title>_int_free (59 samples, 0.01%)</title><rect x="67.6957%" y="789" width="0.0111%" height="15" fill="rgb(246,105,7)" fg:x="359261" fg:w="59"/><text x="67.9457%" y="799.50"></text></g><g><title>__errno_location (64 samples, 0.01%)</title><rect x="67.7081%" y="805" width="0.0121%" height="15" fill="rgb(215,154,42)" fg:x="359327" fg:w="64"/><text x="67.9581%" y="815.50"></text></g><g><title>__GI___fcntl64_nocancel (61 samples, 0.01%)</title><rect x="67.7207%" y="789" width="0.0115%" height="15" fill="rgb(220,215,30)" fg:x="359394" fg:w="61"/><text x="67.9707%" y="799.50"></text></g><g><title>__fcntl64_nocancel_adjusted (61 samples, 0.01%)</title><rect x="67.7207%" y="773" width="0.0115%" height="15" fill="rgb(228,81,51)" fg:x="359394" fg:w="61"/><text x="67.9707%" y="783.50"></text></g><g><title>__do_sys_newfstat (127 samples, 0.02%)</title><rect x="67.7370%" y="741" width="0.0239%" height="15" fill="rgb(247,71,54)" fg:x="359480" fg:w="127"/><text x="67.9870%" y="751.50"></text></g><g><title>vfs_fstat (93 samples, 0.02%)</title><rect x="67.7434%" y="725" width="0.0175%" height="15" fill="rgb(234,176,34)" fg:x="359514" fg:w="93"/><text x="67.9934%" y="735.50"></text></g><g><title>do_syscall_64 (133 samples, 0.03%)</title><rect x="67.7360%" y="757" width="0.0251%" height="15" fill="rgb(241,103,54)" fg:x="359475" fg:w="133"/><text x="67.9860%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (135 samples, 0.03%)</title><rect x="67.7360%" y="773" width="0.0254%" height="15" fill="rgb(228,22,34)" fg:x="359475" fg:w="135"/><text x="67.9860%" y="783.50"></text></g><g><title>__GI___fxstat (159 samples, 0.03%)</title><rect x="67.7322%" y="789" width="0.0300%" height="15" fill="rgb(241,179,48)" fg:x="359455" fg:w="159"/><text x="67.9822%" y="799.50"></text></g><g><title>__GI___fcntl64_nocancel (62 samples, 0.01%)</title><rect x="67.7628%" y="773" width="0.0117%" height="15" fill="rgb(235,167,37)" fg:x="359617" fg:w="62"/><text x="68.0128%" y="783.50"></text></g><g><title>__fcntl64_nocancel_adjusted (57 samples, 0.01%)</title><rect x="67.7637%" y="757" width="0.0107%" height="15" fill="rgb(213,109,30)" fg:x="359622" fg:w="57"/><text x="68.0137%" y="767.50"></text></g><g><title>__GI___libc_malloc (127 samples, 0.02%)</title><rect x="67.7744%" y="773" width="0.0239%" height="15" fill="rgb(222,172,16)" fg:x="359679" fg:w="127"/><text x="68.0244%" y="783.50"></text></g><g><title>_int_malloc (82 samples, 0.02%)</title><rect x="67.7829%" y="757" width="0.0155%" height="15" fill="rgb(233,192,5)" fg:x="359724" fg:w="82"/><text x="68.0329%" y="767.50"></text></g><g><title>__fdopendir (418 samples, 0.08%)</title><rect x="67.7202%" y="805" width="0.0788%" height="15" fill="rgb(247,189,41)" fg:x="359391" fg:w="418"/><text x="67.9702%" y="815.50"></text></g><g><title>__alloc_dir (195 samples, 0.04%)</title><rect x="67.7622%" y="789" width="0.0367%" height="15" fill="rgb(218,134,47)" fg:x="359614" fg:w="195"/><text x="68.0122%" y="799.50"></text></g><g><title>memcg_slab_post_alloc_hook (64 samples, 0.01%)</title><rect x="67.8381%" y="645" width="0.0121%" height="15" fill="rgb(216,29,3)" fg:x="360017" fg:w="64"/><text x="68.0881%" y="655.50"></text></g><g><title>kmem_cache_alloc (150 samples, 0.03%)</title><rect x="67.8321%" y="661" width="0.0283%" height="15" fill="rgb(246,140,12)" fg:x="359985" fg:w="150"/><text x="68.0821%" y="671.50"></text></g><g><title>__alloc_file (198 samples, 0.04%)</title><rect x="67.8300%" y="677" width="0.0373%" height="15" fill="rgb(230,136,11)" fg:x="359974" fg:w="198"/><text x="68.0800%" y="687.50"></text></g><g><title>alloc_empty_file (204 samples, 0.04%)</title><rect x="67.8291%" y="693" width="0.0384%" height="15" fill="rgb(247,22,47)" fg:x="359969" fg:w="204"/><text x="68.0791%" y="703.50"></text></g><g><title>btrfs_opendir (91 samples, 0.02%)</title><rect x="67.8781%" y="677" width="0.0171%" height="15" fill="rgb(218,84,22)" fg:x="360229" fg:w="91"/><text x="68.1281%" y="687.50"></text></g><g><title>kmem_cache_alloc_trace (88 samples, 0.02%)</title><rect x="67.8787%" y="661" width="0.0166%" height="15" fill="rgb(216,87,39)" fg:x="360232" fg:w="88"/><text x="68.1287%" y="671.50"></text></g><g><title>do_dentry_open (217 samples, 0.04%)</title><rect x="67.8707%" y="693" width="0.0409%" height="15" fill="rgb(221,178,8)" fg:x="360190" fg:w="217"/><text x="68.1207%" y="703.50"></text></g><g><title>security_file_open (55 samples, 0.01%)</title><rect x="67.9013%" y="677" width="0.0104%" height="15" fill="rgb(230,42,11)" fg:x="360352" fg:w="55"/><text x="68.1513%" y="687.50"></text></g><g><title>lookup_fast (88 samples, 0.02%)</title><rect x="67.9133%" y="693" width="0.0166%" height="15" fill="rgb(237,229,4)" fg:x="360416" fg:w="88"/><text x="68.1633%" y="703.50"></text></g><g><title>__d_lookup_rcu (81 samples, 0.02%)</title><rect x="67.9146%" y="677" width="0.0153%" height="15" fill="rgb(222,31,33)" fg:x="360423" fg:w="81"/><text x="68.1646%" y="687.50"></text></g><g><title>do_filp_open (614 samples, 0.12%)</title><rect x="67.8253%" y="725" width="0.1157%" height="15" fill="rgb(210,17,39)" fg:x="359949" fg:w="614"/><text x="68.0753%" y="735.50"></text></g><g><title>path_openat (606 samples, 0.11%)</title><rect x="67.8268%" y="709" width="0.1142%" height="15" fill="rgb(244,93,20)" fg:x="359957" fg:w="606"/><text x="68.0768%" y="719.50"></text></g><g><title>getname_flags.part.0 (96 samples, 0.02%)</title><rect x="67.9461%" y="725" width="0.0181%" height="15" fill="rgb(210,40,47)" fg:x="360590" fg:w="96"/><text x="68.1961%" y="735.50"></text></g><g><title>do_syscall_64 (831 samples, 0.16%)</title><rect x="67.8116%" y="773" width="0.1566%" height="15" fill="rgb(239,211,47)" fg:x="359876" fg:w="831"/><text x="68.0616%" y="783.50"></text></g><g><title>__x64_sys_openat (826 samples, 0.16%)</title><rect x="67.8125%" y="757" width="0.1556%" height="15" fill="rgb(251,223,49)" fg:x="359881" fg:w="826"/><text x="68.0625%" y="767.50"></text></g><g><title>do_sys_openat2 (815 samples, 0.15%)</title><rect x="67.8146%" y="741" width="0.1536%" height="15" fill="rgb(221,149,5)" fg:x="359892" fg:w="815"/><text x="68.0646%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (836 samples, 0.16%)</title><rect x="67.8108%" y="789" width="0.1575%" height="15" fill="rgb(219,224,51)" fg:x="359872" fg:w="836"/><text x="68.0608%" y="799.50"></text></g><g><title>__libc_openat64 (888 samples, 0.17%)</title><rect x="67.8023%" y="805" width="0.1673%" height="15" fill="rgb(223,7,8)" fg:x="359827" fg:w="888"/><text x="68.0523%" y="815.50"></text></g><g><title>_int_free (306 samples, 0.06%)</title><rect x="67.9802%" y="805" width="0.0577%" height="15" fill="rgb(241,217,22)" fg:x="360771" fg:w="306"/><text x="68.2302%" y="815.50"></text></g><g><title>free@plt (72 samples, 0.01%)</title><rect x="68.0435%" y="805" width="0.0136%" height="15" fill="rgb(248,209,0)" fg:x="361107" fg:w="72"/><text x="68.2935%" y="815.50"></text></g><g><title>jni_ExceptionOccurred (74 samples, 0.01%)</title><rect x="68.0571%" y="805" width="0.0139%" height="15" fill="rgb(217,205,4)" fg:x="361179" fg:w="74"/><text x="68.3071%" y="815.50"></text></g><g><title>HandleMark::pop_and_restore (93 samples, 0.02%)</title><rect x="68.1502%" y="789" width="0.0175%" height="15" fill="rgb(228,124,39)" fg:x="361673" fg:w="93"/><text x="68.4002%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (591 samples, 0.11%)</title><rect x="68.1707%" y="789" width="0.1114%" height="15" fill="rgb(250,116,42)" fg:x="361782" fg:w="591"/><text x="68.4207%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (513 samples, 0.10%)</title><rect x="68.2821%" y="789" width="0.0967%" height="15" fill="rgb(223,202,9)" fg:x="362373" fg:w="513"/><text x="68.5321%" y="799.50"></text></g><g><title>[libc-2.31.so] (176 samples, 0.03%)</title><rect x="68.3787%" y="789" width="0.0332%" height="15" fill="rgb(242,222,40)" fg:x="362886" fg:w="176"/><text x="68.6287%" y="799.50"></text></g><g><title>check_bounds (219 samples, 0.04%)</title><rect x="68.4119%" y="789" width="0.0413%" height="15" fill="rgb(229,99,46)" fg:x="363062" fg:w="219"/><text x="68.6619%" y="799.50"></text></g><g><title>jni_GetByteArrayRegion (2,046 samples, 0.39%)</title><rect x="68.0710%" y="805" width="0.3855%" height="15" fill="rgb(225,56,46)" fg:x="361253" fg:w="2046"/><text x="68.3210%" y="815.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (238 samples, 0.04%)</title><rect x="68.5380%" y="773" width="0.0448%" height="15" fill="rgb(227,94,5)" fg:x="363731" fg:w="238"/><text x="68.7880%" y="783.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (183 samples, 0.03%)</title><rect x="68.5483%" y="757" width="0.0345%" height="15" fill="rgb(205,112,38)" fg:x="363786" fg:w="183"/><text x="68.7983%" y="767.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (356 samples, 0.07%)</title><rect x="68.5167%" y="789" width="0.0671%" height="15" fill="rgb(231,133,46)" fg:x="363618" fg:w="356"/><text x="68.7667%" y="799.50"></text></g><g><title>HandleMark::pop_and_restore (187 samples, 0.04%)</title><rect x="68.5838%" y="789" width="0.0352%" height="15" fill="rgb(217,16,9)" fg:x="363974" fg:w="187"/><text x="68.8338%" y="799.50"></text></g><g><title>JNIHandles::make_local (202 samples, 0.04%)</title><rect x="68.6190%" y="789" width="0.0381%" height="15" fill="rgb(249,173,9)" fg:x="364161" fg:w="202"/><text x="68.8690%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (522 samples, 0.10%)</title><rect x="68.6597%" y="789" width="0.0984%" height="15" fill="rgb(205,163,53)" fg:x="364377" fg:w="522"/><text x="68.9097%" y="799.50"></text></g><g><title>jni_GetObjectField (2,106 samples, 0.40%)</title><rect x="68.4568%" y="805" width="0.3968%" height="15" fill="rgb(217,54,41)" fg:x="363300" fg:w="2106"/><text x="68.7068%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (507 samples, 0.10%)</title><rect x="68.7581%" y="789" width="0.0955%" height="15" fill="rgb(228,216,12)" fg:x="364899" fg:w="507"/><text x="69.0081%" y="799.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 573558ul&gt;::oop_access_barrier (77 samples, 0.01%)</title><rect x="68.9090%" y="789" width="0.0145%" height="15" fill="rgb(244,228,15)" fg:x="365700" fg:w="77"/><text x="69.1590%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (385 samples, 0.07%)</title><rect x="68.9267%" y="789" width="0.0725%" height="15" fill="rgb(221,176,53)" fg:x="365794" fg:w="385"/><text x="69.1767%" y="799.50"></text></g><g><title>jni_GetStringLength (1,461 samples, 0.28%)</title><rect x="68.8536%" y="805" width="0.2753%" height="15" fill="rgb(205,94,34)" fg:x="365406" fg:w="1461"/><text x="69.1036%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (688 samples, 0.13%)</title><rect x="68.9992%" y="789" width="0.1296%" height="15" fill="rgb(213,110,48)" fg:x="366179" fg:w="688"/><text x="69.2492%" y="799.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (100 samples, 0.02%)</title><rect x="69.3571%" y="741" width="0.0188%" height="15" fill="rgb(236,142,28)" fg:x="368078" fg:w="100"/><text x="69.6071%" y="751.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (95 samples, 0.02%)</title><rect x="69.3759%" y="741" width="0.0179%" height="15" fill="rgb(225,135,29)" fg:x="368178" fg:w="95"/><text x="69.6259%" y="751.50"></text></g><g><title>[libc-2.31.so] (112 samples, 0.02%)</title><rect x="69.4170%" y="725" width="0.0211%" height="15" fill="rgb(252,45,31)" fg:x="368396" fg:w="112"/><text x="69.6670%" y="735.50"></text></g><g><title>ObjAllocator::initialize (257 samples, 0.05%)</title><rect x="69.3953%" y="741" width="0.0484%" height="15" fill="rgb(211,187,50)" fg:x="368281" fg:w="257"/><text x="69.6453%" y="751.50"></text></g><g><title>__tls_get_addr (79 samples, 0.01%)</title><rect x="69.4441%" y="741" width="0.0149%" height="15" fill="rgb(229,109,7)" fg:x="368540" fg:w="79"/><text x="69.6941%" y="751.50"></text></g><g><title>CollectedHeap::obj_allocate (896 samples, 0.17%)</title><rect x="69.2947%" y="773" width="0.1688%" height="15" fill="rgb(251,131,51)" fg:x="367747" fg:w="896"/><text x="69.5447%" y="783.50"></text></g><g><title>MemAllocator::allocate (833 samples, 0.16%)</title><rect x="69.3066%" y="757" width="0.1570%" height="15" fill="rgb(251,180,35)" fg:x="367810" fg:w="833"/><text x="69.5566%" y="767.50"></text></g><g><title>InstanceKlass::allocate_instance (1,073 samples, 0.20%)</title><rect x="69.2615%" y="789" width="0.2022%" height="15" fill="rgb(211,46,32)" fg:x="367571" fg:w="1073"/><text x="69.5115%" y="799.50"></text></g><g><title>JNIHandles::make_local (255 samples, 0.05%)</title><rect x="69.4645%" y="789" width="0.0480%" height="15" fill="rgb(248,123,17)" fg:x="368648" fg:w="255"/><text x="69.7145%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (334 samples, 0.06%)</title><rect x="69.5246%" y="789" width="0.0629%" height="15" fill="rgb(227,141,18)" fg:x="368967" fg:w="334"/><text x="69.7746%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (495 samples, 0.09%)</title><rect x="69.5875%" y="789" width="0.0933%" height="15" fill="rgb(216,102,9)" fg:x="369301" fg:w="495"/><text x="69.8375%" y="799.50"></text></g><g><title>alloc_object (701 samples, 0.13%)</title><rect x="69.6808%" y="789" width="0.1321%" height="15" fill="rgb(253,47,13)" fg:x="369796" fg:w="701"/><text x="69.9308%" y="799.50"></text></g><g><title>oopDesc::metadata_field (59 samples, 0.01%)</title><rect x="69.8018%" y="773" width="0.0111%" height="15" fill="rgb(226,93,23)" fg:x="370438" fg:w="59"/><text x="70.0518%" y="783.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (961 samples, 0.18%)</title><rect x="69.9389%" y="773" width="0.1811%" height="15" fill="rgb(247,104,17)" fg:x="371166" fg:w="961"/><text x="70.1889%" y="783.50"></text></g><g><title>HandleMark::~HandleMark (76 samples, 0.01%)</title><rect x="70.2534%" y="757" width="0.0143%" height="15" fill="rgb(233,203,26)" fg:x="372835" fg:w="76"/><text x="70.5034%" y="767.50"></text></g><g><title>JNIHandleBlock::release_block (85 samples, 0.02%)</title><rect x="70.2681%" y="757" width="0.0160%" height="15" fill="rgb(244,98,49)" fg:x="372913" fg:w="85"/><text x="70.5181%" y="767.50"></text></g><g><title>JavaCallArguments::parameters (248 samples, 0.05%)</title><rect x="70.2842%" y="757" width="0.0467%" height="15" fill="rgb(235,134,22)" fg:x="372998" fg:w="248"/><text x="70.5342%" y="767.50"></text></g><g><title>JNIHandleBlock::allocate_block (76 samples, 0.01%)</title><rect x="70.4720%" y="741" width="0.0143%" height="15" fill="rgb(221,70,32)" fg:x="373995" fg:w="76"/><text x="70.7220%" y="751.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (950 samples, 0.18%)</title><rect x="70.3309%" y="757" width="0.1790%" height="15" fill="rgb(238,15,50)" fg:x="373246" fg:w="950"/><text x="70.5809%" y="767.50"></text></g><g><title>ThreadShadow::clear_pending_exception (121 samples, 0.02%)</title><rect x="70.4871%" y="741" width="0.0228%" height="15" fill="rgb(215,221,48)" fg:x="374075" fg:w="121"/><text x="70.7371%" y="751.50"></text></g><g><title>AbstractInterpreter::size_top_interpreter_activation (118 samples, 0.02%)</title><rect x="70.5704%" y="741" width="0.0222%" height="15" fill="rgb(236,73,3)" fg:x="374517" fg:w="118"/><text x="70.8204%" y="751.50"></text></g><g><title>JavaCalls::call_helper (2,496 samples, 0.47%)</title><rect x="70.1238%" y="773" width="0.4703%" height="15" fill="rgb(250,107,11)" fg:x="372147" fg:w="2496"/><text x="70.3738%" y="783.50"></text></g><g><title>os::stack_shadow_pages_available (416 samples, 0.08%)</title><rect x="70.5157%" y="757" width="0.0784%" height="15" fill="rgb(242,39,14)" fg:x="374227" fg:w="416"/><text x="70.7657%" y="767.50"></text></g><g><title>methodHandle::operator= (126 samples, 0.02%)</title><rect x="70.5983%" y="773" width="0.0237%" height="15" fill="rgb(248,164,37)" fg:x="374665" fg:w="126"/><text x="70.8483%" y="783.50"></text></g><g><title>methodHandle::~methodHandle (328 samples, 0.06%)</title><rect x="70.6220%" y="773" width="0.0618%" height="15" fill="rgb(217,60,12)" fg:x="374791" fg:w="328"/><text x="70.8720%" y="783.50"></text></g><g><title>jni_invoke_nonstatic (4,821 samples, 0.91%)</title><rect x="69.8131%" y="789" width="0.9084%" height="15" fill="rgb(240,125,29)" fg:x="370498" fg:w="4821"/><text x="70.0631%" y="799.50"></text></g><g><title>resource_allocate_bytes (175 samples, 0.03%)</title><rect x="70.6885%" y="773" width="0.0330%" height="15" fill="rgb(208,207,28)" fg:x="375144" fg:w="175"/><text x="70.9385%" y="783.50"></text></g><g><title>jni_NewObjectV (8,459 samples, 1.59%)</title><rect x="69.1296%" y="805" width="1.5939%" height="15" fill="rgb(209,159,27)" fg:x="366871" fg:w="8459"/><text x="69.3796%" y="815.50"></text></g><g><title>operator delete@plt (60 samples, 0.01%)</title><rect x="70.7385%" y="805" width="0.0113%" height="15" fill="rgb(251,176,53)" fg:x="375409" fg:w="60"/><text x="70.9885%" y="815.50"></text></g><g><title>__GI___libc_malloc (345 samples, 0.07%)</title><rect x="70.7618%" y="789" width="0.0650%" height="15" fill="rgb(211,85,7)" fg:x="375533" fg:w="345"/><text x="71.0118%" y="799.50"></text></g><g><title>tcache_get (181 samples, 0.03%)</title><rect x="70.7927%" y="773" width="0.0341%" height="15" fill="rgb(216,64,54)" fg:x="375697" fg:w="181"/><text x="71.0427%" y="783.50"></text></g><g><title>operator new (387 samples, 0.07%)</title><rect x="70.7575%" y="805" width="0.0729%" height="15" fill="rgb(217,54,24)" fg:x="375510" fg:w="387"/><text x="71.0075%" y="815.50"></text></g><g><title>_int_malloc (98 samples, 0.02%)</title><rect x="70.8615%" y="757" width="0.0185%" height="15" fill="rgb(208,206,53)" fg:x="376062" fg:w="98"/><text x="71.1115%" y="767.50"></text></g><g><title>__GI___libc_malloc (215 samples, 0.04%)</title><rect x="70.8455%" y="773" width="0.0405%" height="15" fill="rgb(251,74,39)" fg:x="375977" fg:w="215"/><text x="71.0955%" y="783.50"></text></g><g><title>operator new (225 samples, 0.04%)</title><rect x="70.8449%" y="789" width="0.0424%" height="15" fill="rgb(226,47,5)" fg:x="375974" fg:w="225"/><text x="71.0949%" y="799.50"></text></g><g><title>std::string::_Rep::_S_create (245 samples, 0.05%)</title><rect x="70.8428%" y="805" width="0.0462%" height="15" fill="rgb(234,111,33)" fg:x="375963" fg:w="245"/><text x="71.0928%" y="815.50"></text></g><g><title>[libunix_jni.so] (225,716 samples, 42.53%)</title><rect x="28.3575%" y="821" width="42.5318%" height="15" fill="rgb(251,14,10)" fg:x="150493" fg:w="225716"/><text x="28.6075%" y="831.50">[libunix_jni.so]</text></g><g><title>InstanceKlass::link_class_impl (64 samples, 0.01%)</title><rect x="83.2461%" y="773" width="0.0121%" height="15" fill="rgb(232,43,0)" fg:x="441787" fg:w="64"/><text x="83.4961%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (112 samples, 0.02%)</title><rect x="83.2374%" y="805" width="0.0211%" height="15" fill="rgb(222,68,43)" fg:x="441741" fg:w="112"/><text x="83.4874%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (67 samples, 0.01%)</title><rect x="83.2459%" y="789" width="0.0126%" height="15" fill="rgb(217,24,23)" fg:x="441786" fg:w="67"/><text x="83.4959%" y="799.50"></text></g><g><title>InstanceKlass::allocate_objArray (77 samples, 0.01%)</title><rect x="83.2640%" y="789" width="0.0145%" height="15" fill="rgb(229,209,14)" fg:x="441882" fg:w="77"/><text x="83.5140%" y="799.50"></text></g><g><title>InterpreterRuntime::anewarray (111 samples, 0.02%)</title><rect x="83.2585%" y="805" width="0.0209%" height="15" fill="rgb(250,149,48)" fg:x="441853" fg:w="111"/><text x="83.5085%" y="815.50"></text></g><g><title>CompileBroker::compile_method (54 samples, 0.01%)</title><rect x="83.3056%" y="709" width="0.0102%" height="15" fill="rgb(210,120,37)" fg:x="442103" fg:w="54"/><text x="83.5556%" y="719.50"></text></g><g><title>TieredThresholdPolicy::compile (60 samples, 0.01%)</title><rect x="83.3053%" y="741" width="0.0113%" height="15" fill="rgb(210,21,8)" fg:x="442101" fg:w="60"/><text x="83.5553%" y="751.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (59 samples, 0.01%)</title><rect x="83.3054%" y="725" width="0.0111%" height="15" fill="rgb(243,145,7)" fg:x="442102" fg:w="59"/><text x="83.5554%" y="735.50"></text></g><g><title>TieredThresholdPolicy::event (140 samples, 0.03%)</title><rect x="83.2904%" y="773" width="0.0264%" height="15" fill="rgb(238,178,32)" fg:x="442022" fg:w="140"/><text x="83.5404%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (125 samples, 0.02%)</title><rect x="83.2932%" y="757" width="0.0236%" height="15" fill="rgb(222,4,10)" fg:x="442037" fg:w="125"/><text x="83.5432%" y="767.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (165 samples, 0.03%)</title><rect x="83.2862%" y="805" width="0.0311%" height="15" fill="rgb(239,7,37)" fg:x="442000" fg:w="165"/><text x="83.5362%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (164 samples, 0.03%)</title><rect x="83.2864%" y="789" width="0.0309%" height="15" fill="rgb(215,31,37)" fg:x="442001" fg:w="164"/><text x="83.5364%" y="799.50"></text></g><g><title>InterpreterRuntime::ldc (78 samples, 0.01%)</title><rect x="83.3173%" y="805" width="0.0147%" height="15" fill="rgb(224,83,33)" fg:x="442165" fg:w="78"/><text x="83.5673%" y="815.50"></text></g><g><title>LinkResolver::resolve_static_call (62 samples, 0.01%)</title><rect x="83.3831%" y="757" width="0.0117%" height="15" fill="rgb(239,55,3)" fg:x="442514" fg:w="62"/><text x="83.6331%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (186 samples, 0.04%)</title><rect x="83.3614%" y="773" width="0.0350%" height="15" fill="rgb(247,92,11)" fg:x="442399" fg:w="186"/><text x="83.6114%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (248 samples, 0.05%)</title><rect x="83.3527%" y="789" width="0.0467%" height="15" fill="rgb(239,200,7)" fg:x="442353" fg:w="248"/><text x="83.6027%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (58 samples, 0.01%)</title><rect x="83.3995%" y="773" width="0.0109%" height="15" fill="rgb(227,115,8)" fg:x="442601" fg:w="58"/><text x="83.6495%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (58 samples, 0.01%)</title><rect x="83.3995%" y="757" width="0.0109%" height="15" fill="rgb(215,189,27)" fg:x="442601" fg:w="58"/><text x="83.6495%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (59 samples, 0.01%)</title><rect x="83.3995%" y="789" width="0.0111%" height="15" fill="rgb(251,216,39)" fg:x="442601" fg:w="59"/><text x="83.6495%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (371 samples, 0.07%)</title><rect x="83.3424%" y="805" width="0.0699%" height="15" fill="rgb(207,29,47)" fg:x="442298" fg:w="371"/><text x="83.5924%" y="815.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (66 samples, 0.01%)</title><rect x="83.4494%" y="789" width="0.0124%" height="15" fill="rgb(210,71,34)" fg:x="442866" fg:w="66"/><text x="83.6994%" y="799.50"></text></g><g><title>JVM_IHashCode (76 samples, 0.01%)</title><rect x="83.4488%" y="805" width="0.0143%" height="15" fill="rgb(253,217,51)" fg:x="442863" fg:w="76"/><text x="83.6988%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (338 samples, 0.06%)</title><rect x="83.4965%" y="677" width="0.0637%" height="15" fill="rgb(222,117,46)" fg:x="443116" fg:w="338"/><text x="83.7465%" y="687.50"></text></g><g><title>SymbolTable::lookup_only (305 samples, 0.06%)</title><rect x="83.5027%" y="661" width="0.0575%" height="15" fill="rgb(226,132,6)" fg:x="443149" fg:w="305"/><text x="83.7527%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (346 samples, 0.07%)</title><rect x="83.4952%" y="693" width="0.0652%" height="15" fill="rgb(254,145,51)" fg:x="443109" fg:w="346"/><text x="83.7452%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (62 samples, 0.01%)</title><rect x="83.5619%" y="677" width="0.0117%" height="15" fill="rgb(231,199,27)" fg:x="443463" fg:w="62"/><text x="83.8119%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (63 samples, 0.01%)</title><rect x="83.5619%" y="693" width="0.0119%" height="15" fill="rgb(245,158,14)" fg:x="443463" fg:w="63"/><text x="83.8119%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (433 samples, 0.08%)</title><rect x="83.4944%" y="725" width="0.0816%" height="15" fill="rgb(240,113,14)" fg:x="443105" fg:w="433"/><text x="83.7444%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (433 samples, 0.08%)</title><rect x="83.4944%" y="709" width="0.0816%" height="15" fill="rgb(210,20,13)" fg:x="443105" fg:w="433"/><text x="83.7444%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (61 samples, 0.01%)</title><rect x="83.5760%" y="709" width="0.0115%" height="15" fill="rgb(241,144,13)" fg:x="443538" fg:w="61"/><text x="83.8260%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (65 samples, 0.01%)</title><rect x="83.5760%" y="725" width="0.0122%" height="15" fill="rgb(235,43,34)" fg:x="443538" fg:w="65"/><text x="83.8260%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (515 samples, 0.10%)</title><rect x="83.4944%" y="741" width="0.0970%" height="15" fill="rgb(208,36,20)" fg:x="443105" fg:w="515"/><text x="83.7444%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (538 samples, 0.10%)</title><rect x="83.4931%" y="789" width="0.1014%" height="15" fill="rgb(239,204,10)" fg:x="443098" fg:w="538"/><text x="83.7431%" y="799.50"></text></g><g><title>jvm_define_class_common (536 samples, 0.10%)</title><rect x="83.4935%" y="773" width="0.1010%" height="15" fill="rgb(217,84,43)" fg:x="443100" fg:w="536"/><text x="83.7435%" y="783.50"></text></g><g><title>SystemDictionary::resolve_from_stream (532 samples, 0.10%)</title><rect x="83.4943%" y="757" width="0.1002%" height="15" fill="rgb(241,170,50)" fg:x="443104" fg:w="532"/><text x="83.7443%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (558 samples, 0.11%)</title><rect x="83.4931%" y="805" width="0.1051%" height="15" fill="rgb(226,205,29)" fg:x="443098" fg:w="558"/><text x="83.7431%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (779 samples, 0.15%)</title><rect x="83.6284%" y="709" width="0.1468%" height="15" fill="rgb(233,113,1)" fg:x="443816" fg:w="779"/><text x="83.8784%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (777 samples, 0.15%)</title><rect x="83.6288%" y="693" width="0.1464%" height="15" fill="rgb(253,98,13)" fg:x="443818" fg:w="777"/><text x="83.8788%" y="703.50"></text></g><g><title>native_write_msr (777 samples, 0.15%)</title><rect x="83.6288%" y="677" width="0.1464%" height="15" fill="rgb(211,115,12)" fg:x="443818" fg:w="777"/><text x="83.8788%" y="687.50"></text></g><g><title>schedule_tail (794 samples, 0.15%)</title><rect x="83.6275%" y="741" width="0.1496%" height="15" fill="rgb(208,12,16)" fg:x="443811" fg:w="794"/><text x="83.8775%" y="751.50"></text></g><g><title>finish_task_switch (793 samples, 0.15%)</title><rect x="83.6277%" y="725" width="0.1494%" height="15" fill="rgb(237,193,54)" fg:x="443812" fg:w="793"/><text x="83.8777%" y="735.50"></text></g><g><title>__libc_vfork (869 samples, 0.16%)</title><rect x="83.6135%" y="773" width="0.1637%" height="15" fill="rgb(243,22,42)" fg:x="443737" fg:w="869"/><text x="83.8635%" y="783.50"></text></g><g><title>ret_from_fork (826 samples, 0.16%)</title><rect x="83.6216%" y="757" width="0.1556%" height="15" fill="rgb(233,151,36)" fg:x="443780" fg:w="826"/><text x="83.8716%" y="767.50"></text></g><g><title>bprm_execve (117 samples, 0.02%)</title><rect x="83.7797%" y="661" width="0.0220%" height="15" fill="rgb(237,57,45)" fg:x="444619" fg:w="117"/><text x="84.0297%" y="671.50"></text></g><g><title>do_execveat_common (141 samples, 0.03%)</title><rect x="83.7773%" y="677" width="0.0266%" height="15" fill="rgb(221,88,17)" fg:x="444606" fg:w="141"/><text x="84.0273%" y="687.50"></text></g><g><title>JDK_execvpe (143 samples, 0.03%)</title><rect x="83.7773%" y="757" width="0.0269%" height="15" fill="rgb(230,79,15)" fg:x="444606" fg:w="143"/><text x="84.0273%" y="767.50"></text></g><g><title>__GI_execve (143 samples, 0.03%)</title><rect x="83.7773%" y="741" width="0.0269%" height="15" fill="rgb(213,57,13)" fg:x="444606" fg:w="143"/><text x="84.0273%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (143 samples, 0.03%)</title><rect x="83.7773%" y="725" width="0.0269%" height="15" fill="rgb(222,116,39)" fg:x="444606" fg:w="143"/><text x="84.0273%" y="735.50"></text></g><g><title>do_syscall_64 (143 samples, 0.03%)</title><rect x="83.7773%" y="709" width="0.0269%" height="15" fill="rgb(245,107,2)" fg:x="444606" fg:w="143"/><text x="84.0273%" y="719.50"></text></g><g><title>__x64_sys_execve (143 samples, 0.03%)</title><rect x="83.7773%" y="693" width="0.0269%" height="15" fill="rgb(238,1,10)" fg:x="444606" fg:w="143"/><text x="84.0273%" y="703.50"></text></g><g><title>do_filp_open (70 samples, 0.01%)</title><rect x="83.8148%" y="645" width="0.0132%" height="15" fill="rgb(249,4,48)" fg:x="444805" fg:w="70"/><text x="84.0648%" y="655.50"></text></g><g><title>path_openat (67 samples, 0.01%)</title><rect x="83.8153%" y="629" width="0.0126%" height="15" fill="rgb(223,151,18)" fg:x="444808" fg:w="67"/><text x="84.0653%" y="639.50"></text></g><g><title>__GI___open64_nocancel (109 samples, 0.02%)</title><rect x="83.8127%" y="725" width="0.0205%" height="15" fill="rgb(227,65,43)" fg:x="444794" fg:w="109"/><text x="84.0627%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (109 samples, 0.02%)</title><rect x="83.8127%" y="709" width="0.0205%" height="15" fill="rgb(218,40,45)" fg:x="444794" fg:w="109"/><text x="84.0627%" y="719.50"></text></g><g><title>do_syscall_64 (109 samples, 0.02%)</title><rect x="83.8127%" y="693" width="0.0205%" height="15" fill="rgb(252,121,31)" fg:x="444794" fg:w="109"/><text x="84.0627%" y="703.50"></text></g><g><title>__x64_sys_openat (109 samples, 0.02%)</title><rect x="83.8127%" y="677" width="0.0205%" height="15" fill="rgb(219,158,43)" fg:x="444794" fg:w="109"/><text x="84.0627%" y="687.50"></text></g><g><title>do_sys_openat2 (107 samples, 0.02%)</title><rect x="83.8131%" y="661" width="0.0202%" height="15" fill="rgb(231,162,42)" fg:x="444796" fg:w="107"/><text x="84.0631%" y="671.50"></text></g><g><title>__opendir (110 samples, 0.02%)</title><rect x="83.8127%" y="741" width="0.0207%" height="15" fill="rgb(217,179,25)" fg:x="444794" fg:w="110"/><text x="84.0627%" y="751.50"></text></g><g><title>closeDescriptors (141 samples, 0.03%)</title><rect x="83.8070%" y="757" width="0.0266%" height="15" fill="rgb(206,212,31)" fg:x="444764" fg:w="141"/><text x="84.0570%" y="767.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,208 samples, 0.23%)</title><rect x="83.6098%" y="805" width="0.2276%" height="15" fill="rgb(235,144,12)" fg:x="443717" fg:w="1208"/><text x="83.8598%" y="815.50"></text></g><g><title>vforkChild (1,188 samples, 0.22%)</title><rect x="83.6135%" y="789" width="0.2239%" height="15" fill="rgb(213,51,10)" fg:x="443737" fg:w="1188"/><text x="83.8635%" y="799.50"></text></g><g><title>childProcess (319 samples, 0.06%)</title><rect x="83.7773%" y="773" width="0.0601%" height="15" fill="rgb(231,145,14)" fg:x="444606" fg:w="319"/><text x="84.0273%" y="783.50"></text></g><g><title>OptoRuntime::new_array_C (119 samples, 0.02%)</title><rect x="83.8453%" y="805" width="0.0224%" height="15" fill="rgb(235,15,28)" fg:x="444967" fg:w="119"/><text x="84.0953%" y="815.50"></text></g><g><title>TypeArrayKlass::allocate_common (67 samples, 0.01%)</title><rect x="83.8551%" y="789" width="0.0126%" height="15" fill="rgb(237,206,10)" fg:x="445019" fg:w="67"/><text x="84.1051%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (67 samples, 0.01%)</title><rect x="83.8551%" y="773" width="0.0126%" height="15" fill="rgb(236,227,27)" fg:x="445019" fg:w="67"/><text x="84.1051%" y="783.50"></text></g><g><title>MemAllocator::allocate (67 samples, 0.01%)</title><rect x="83.8551%" y="757" width="0.0126%" height="15" fill="rgb(246,83,35)" fg:x="445019" fg:w="67"/><text x="84.1051%" y="767.50"></text></g><g><title>OptoRuntime::new_instance_C (105 samples, 0.02%)</title><rect x="83.8715%" y="805" width="0.0198%" height="15" fill="rgb(220,136,24)" fg:x="445106" fg:w="105"/><text x="84.1215%" y="815.50"></text></g><g><title>InstanceKlass::allocate_instance (101 samples, 0.02%)</title><rect x="83.8722%" y="789" width="0.0190%" height="15" fill="rgb(217,3,25)" fg:x="445110" fg:w="101"/><text x="84.1222%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (101 samples, 0.02%)</title><rect x="83.8722%" y="773" width="0.0190%" height="15" fill="rgb(239,24,14)" fg:x="445110" fg:w="101"/><text x="84.1222%" y="783.50"></text></g><g><title>MemAllocator::allocate (101 samples, 0.02%)</title><rect x="83.8722%" y="757" width="0.0190%" height="15" fill="rgb(244,16,53)" fg:x="445110" fg:w="101"/><text x="84.1222%" y="767.50"></text></g><g><title>ObjAllocator::initialize (84 samples, 0.02%)</title><rect x="83.8754%" y="741" width="0.0158%" height="15" fill="rgb(208,175,44)" fg:x="445127" fg:w="84"/><text x="84.1254%" y="751.50"></text></g><g><title>asm_exc_page_fault (83 samples, 0.02%)</title><rect x="83.8756%" y="725" width="0.0156%" height="15" fill="rgb(252,18,48)" fg:x="445128" fg:w="83"/><text x="84.1256%" y="735.50"></text></g><g><title>exc_page_fault (83 samples, 0.02%)</title><rect x="83.8756%" y="709" width="0.0156%" height="15" fill="rgb(234,199,32)" fg:x="445128" fg:w="83"/><text x="84.1256%" y="719.50"></text></g><g><title>do_user_addr_fault (83 samples, 0.02%)</title><rect x="83.8756%" y="693" width="0.0156%" height="15" fill="rgb(225,77,54)" fg:x="445128" fg:w="83"/><text x="84.1256%" y="703.50"></text></g><g><title>handle_mm_fault (82 samples, 0.02%)</title><rect x="83.8758%" y="677" width="0.0155%" height="15" fill="rgb(225,42,25)" fg:x="445129" fg:w="82"/><text x="84.1258%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (81 samples, 0.02%)</title><rect x="83.8760%" y="661" width="0.0153%" height="15" fill="rgb(242,227,46)" fg:x="445130" fg:w="81"/><text x="84.1260%" y="671.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (57 samples, 0.01%)</title><rect x="83.9007%" y="773" width="0.0107%" height="15" fill="rgb(246,197,35)" fg:x="445261" fg:w="57"/><text x="84.1507%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (84 samples, 0.02%)</title><rect x="83.8958%" y="789" width="0.0158%" height="15" fill="rgb(215,159,26)" fg:x="445235" fg:w="84"/><text x="84.1458%" y="799.50"></text></g><g><title>Runtime1::counter_overflow (142 samples, 0.03%)</title><rect x="83.8915%" y="805" width="0.0268%" height="15" fill="rgb(212,194,50)" fg:x="445212" fg:w="142"/><text x="84.1415%" y="815.50"></text></g><g><title>ObjectMonitor::enter (68 samples, 0.01%)</title><rect x="83.9233%" y="789" width="0.0128%" height="15" fill="rgb(246,132,1)" fg:x="445381" fg:w="68"/><text x="84.1733%" y="799.50"></text></g><g><title>Runtime1::monitorenter (117 samples, 0.02%)</title><rect x="83.9188%" y="805" width="0.0220%" height="15" fill="rgb(217,71,7)" fg:x="445357" fg:w="117"/><text x="84.1688%" y="815.50"></text></g><g><title>kernel_init_free_pages (78 samples, 0.01%)</title><rect x="83.9527%" y="581" width="0.0147%" height="15" fill="rgb(252,59,32)" fg:x="445537" fg:w="78"/><text x="84.2027%" y="591.50"></text></g><g><title>clear_page_erms (76 samples, 0.01%)</title><rect x="83.9531%" y="565" width="0.0143%" height="15" fill="rgb(253,204,25)" fg:x="445539" fg:w="76"/><text x="84.2031%" y="575.50"></text></g><g><title>alloc_pages_vma (83 samples, 0.02%)</title><rect x="83.9523%" y="645" width="0.0156%" height="15" fill="rgb(232,21,16)" fg:x="445535" fg:w="83"/><text x="84.2023%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (83 samples, 0.02%)</title><rect x="83.9523%" y="629" width="0.0156%" height="15" fill="rgb(248,90,29)" fg:x="445535" fg:w="83"/><text x="84.2023%" y="639.50"></text></g><g><title>get_page_from_freelist (83 samples, 0.02%)</title><rect x="83.9523%" y="613" width="0.0156%" height="15" fill="rgb(249,223,7)" fg:x="445535" fg:w="83"/><text x="84.2023%" y="623.50"></text></g><g><title>prep_new_page (81 samples, 0.02%)</title><rect x="83.9527%" y="597" width="0.0153%" height="15" fill="rgb(231,119,42)" fg:x="445537" fg:w="81"/><text x="84.2027%" y="607.50"></text></g><g><title>asm_exc_page_fault (123 samples, 0.02%)</title><rect x="83.9521%" y="725" width="0.0232%" height="15" fill="rgb(215,41,35)" fg:x="445534" fg:w="123"/><text x="84.2021%" y="735.50"></text></g><g><title>exc_page_fault (123 samples, 0.02%)</title><rect x="83.9521%" y="709" width="0.0232%" height="15" fill="rgb(220,44,45)" fg:x="445534" fg:w="123"/><text x="84.2021%" y="719.50"></text></g><g><title>do_user_addr_fault (123 samples, 0.02%)</title><rect x="83.9521%" y="693" width="0.0232%" height="15" fill="rgb(253,197,36)" fg:x="445534" fg:w="123"/><text x="84.2021%" y="703.50"></text></g><g><title>handle_mm_fault (122 samples, 0.02%)</title><rect x="83.9523%" y="677" width="0.0230%" height="15" fill="rgb(245,225,54)" fg:x="445535" fg:w="122"/><text x="84.2023%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (122 samples, 0.02%)</title><rect x="83.9523%" y="661" width="0.0230%" height="15" fill="rgb(239,94,37)" fg:x="445535" fg:w="122"/><text x="84.2023%" y="671.50"></text></g><g><title>InstanceKlass::allocate_instance (142 samples, 0.03%)</title><rect x="83.9487%" y="789" width="0.0268%" height="15" fill="rgb(242,217,10)" fg:x="445516" fg:w="142"/><text x="84.1987%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (141 samples, 0.03%)</title><rect x="83.9489%" y="773" width="0.0266%" height="15" fill="rgb(250,193,7)" fg:x="445517" fg:w="141"/><text x="84.1989%" y="783.50"></text></g><g><title>MemAllocator::allocate (141 samples, 0.03%)</title><rect x="83.9489%" y="757" width="0.0266%" height="15" fill="rgb(230,104,19)" fg:x="445517" fg:w="141"/><text x="84.1989%" y="767.50"></text></g><g><title>ObjAllocator::initialize (124 samples, 0.02%)</title><rect x="83.9521%" y="741" width="0.0234%" height="15" fill="rgb(230,181,4)" fg:x="445534" fg:w="124"/><text x="84.2021%" y="751.50"></text></g><g><title>Runtime1::new_instance (145 samples, 0.03%)</title><rect x="83.9484%" y="805" width="0.0273%" height="15" fill="rgb(216,219,49)" fg:x="445514" fg:w="145"/><text x="84.1984%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (72 samples, 0.01%)</title><rect x="84.0013%" y="805" width="0.0136%" height="15" fill="rgb(254,144,0)" fg:x="445795" fg:w="72"/><text x="84.2513%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (69 samples, 0.01%)</title><rect x="84.0019%" y="789" width="0.0130%" height="15" fill="rgb(205,209,38)" fg:x="445798" fg:w="69"/><text x="84.2519%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (238 samples, 0.04%)</title><rect x="84.0356%" y="581" width="0.0448%" height="15" fill="rgb(240,21,42)" fg:x="445977" fg:w="238"/><text x="84.2856%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (235 samples, 0.04%)</title><rect x="84.0362%" y="565" width="0.0443%" height="15" fill="rgb(241,132,3)" fg:x="445980" fg:w="235"/><text x="84.2862%" y="575.50"></text></g><g><title>native_write_msr (234 samples, 0.04%)</title><rect x="84.0364%" y="549" width="0.0441%" height="15" fill="rgb(225,14,2)" fg:x="445981" fg:w="234"/><text x="84.2864%" y="559.50"></text></g><g><title>finish_task_switch (253 samples, 0.05%)</title><rect x="84.0345%" y="597" width="0.0477%" height="15" fill="rgb(210,141,35)" fg:x="445971" fg:w="253"/><text x="84.2845%" y="607.50"></text></g><g><title>futex_wait_queue_me (288 samples, 0.05%)</title><rect x="84.0309%" y="645" width="0.0543%" height="15" fill="rgb(251,14,44)" fg:x="445952" fg:w="288"/><text x="84.2809%" y="655.50"></text></g><g><title>schedule (283 samples, 0.05%)</title><rect x="84.0318%" y="629" width="0.0533%" height="15" fill="rgb(247,48,18)" fg:x="445957" fg:w="283"/><text x="84.2818%" y="639.50"></text></g><g><title>__schedule (282 samples, 0.05%)</title><rect x="84.0320%" y="613" width="0.0531%" height="15" fill="rgb(225,0,40)" fg:x="445958" fg:w="282"/><text x="84.2820%" y="623.50"></text></g><g><title>do_syscall_64 (295 samples, 0.06%)</title><rect x="84.0300%" y="709" width="0.0556%" height="15" fill="rgb(221,31,33)" fg:x="445947" fg:w="295"/><text x="84.2800%" y="719.50"></text></g><g><title>__x64_sys_futex (295 samples, 0.06%)</title><rect x="84.0300%" y="693" width="0.0556%" height="15" fill="rgb(237,42,40)" fg:x="445947" fg:w="295"/><text x="84.2800%" y="703.50"></text></g><g><title>do_futex (293 samples, 0.06%)</title><rect x="84.0303%" y="677" width="0.0552%" height="15" fill="rgb(233,51,29)" fg:x="445949" fg:w="293"/><text x="84.2803%" y="687.50"></text></g><g><title>futex_wait (291 samples, 0.05%)</title><rect x="84.0307%" y="661" width="0.0548%" height="15" fill="rgb(226,58,20)" fg:x="445951" fg:w="291"/><text x="84.2807%" y="671.50"></text></g><g><title>__pthread_cond_wait (303 samples, 0.06%)</title><rect x="84.0292%" y="773" width="0.0571%" height="15" fill="rgb(208,98,7)" fg:x="445943" fg:w="303"/><text x="84.2792%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (303 samples, 0.06%)</title><rect x="84.0292%" y="757" width="0.0571%" height="15" fill="rgb(228,143,44)" fg:x="445943" fg:w="303"/><text x="84.2792%" y="767.50"></text></g><g><title>futex_wait_cancelable (299 samples, 0.06%)</title><rect x="84.0300%" y="741" width="0.0563%" height="15" fill="rgb(246,55,38)" fg:x="445947" fg:w="299"/><text x="84.2800%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (299 samples, 0.06%)</title><rect x="84.0300%" y="725" width="0.0563%" height="15" fill="rgb(247,87,16)" fg:x="445947" fg:w="299"/><text x="84.2800%" y="735.50"></text></g><g><title>Parker::park (353 samples, 0.07%)</title><rect x="84.0215%" y="789" width="0.0665%" height="15" fill="rgb(234,129,42)" fg:x="445902" fg:w="353"/><text x="84.2715%" y="799.50"></text></g><g><title>Unsafe_Park (360 samples, 0.07%)</title><rect x="84.0205%" y="805" width="0.0678%" height="15" fill="rgb(220,82,16)" fg:x="445897" fg:w="360"/><text x="84.2705%" y="815.50"></text></g><g><title>ttwu_do_activate (68 samples, 0.01%)</title><rect x="84.1100%" y="645" width="0.0128%" height="15" fill="rgb(211,88,4)" fg:x="446372" fg:w="68"/><text x="84.3600%" y="655.50"></text></g><g><title>do_syscall_64 (147 samples, 0.03%)</title><rect x="84.0976%" y="741" width="0.0277%" height="15" fill="rgb(248,151,21)" fg:x="446306" fg:w="147"/><text x="84.3476%" y="751.50"></text></g><g><title>__x64_sys_futex (147 samples, 0.03%)</title><rect x="84.0976%" y="725" width="0.0277%" height="15" fill="rgb(238,163,6)" fg:x="446306" fg:w="147"/><text x="84.3476%" y="735.50"></text></g><g><title>do_futex (146 samples, 0.03%)</title><rect x="84.0978%" y="709" width="0.0275%" height="15" fill="rgb(209,183,11)" fg:x="446307" fg:w="146"/><text x="84.3478%" y="719.50"></text></g><g><title>futex_wake (144 samples, 0.03%)</title><rect x="84.0982%" y="693" width="0.0271%" height="15" fill="rgb(219,37,20)" fg:x="446309" fg:w="144"/><text x="84.3482%" y="703.50"></text></g><g><title>wake_up_q (113 samples, 0.02%)</title><rect x="84.1040%" y="677" width="0.0213%" height="15" fill="rgb(210,158,4)" fg:x="446340" fg:w="113"/><text x="84.3540%" y="687.50"></text></g><g><title>try_to_wake_up (110 samples, 0.02%)</title><rect x="84.1046%" y="661" width="0.0207%" height="15" fill="rgb(221,167,53)" fg:x="446343" fg:w="110"/><text x="84.3546%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (154 samples, 0.03%)</title><rect x="84.0976%" y="757" width="0.0290%" height="15" fill="rgb(237,151,45)" fg:x="446306" fg:w="154"/><text x="84.3476%" y="767.50"></text></g><g><title>__pthread_cond_signal (163 samples, 0.03%)</title><rect x="84.0961%" y="789" width="0.0307%" height="15" fill="rgb(231,39,3)" fg:x="446298" fg:w="163"/><text x="84.3461%" y="799.50"></text></g><g><title>futex_wake (159 samples, 0.03%)</title><rect x="84.0969%" y="773" width="0.0300%" height="15" fill="rgb(212,167,28)" fg:x="446302" fg:w="159"/><text x="84.3469%" y="783.50"></text></g><g><title>Unsafe_Unpark (202 samples, 0.04%)</title><rect x="84.0893%" y="805" width="0.0381%" height="15" fill="rgb(232,178,8)" fg:x="446262" fg:w="202"/><text x="84.3393%" y="815.50"></text></g><g><title>__sysvec_apic_timer_interrupt (63 samples, 0.01%)</title><rect x="84.1449%" y="773" width="0.0119%" height="15" fill="rgb(225,151,20)" fg:x="446557" fg:w="63"/><text x="84.3949%" y="783.50"></text></g><g><title>hrtimer_interrupt (61 samples, 0.01%)</title><rect x="84.1453%" y="757" width="0.0115%" height="15" fill="rgb(238,3,37)" fg:x="446559" fg:w="61"/><text x="84.3953%" y="767.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (133 samples, 0.03%)</title><rect x="84.1430%" y="805" width="0.0251%" height="15" fill="rgb(251,147,42)" fg:x="446547" fg:w="133"/><text x="84.3930%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (123 samples, 0.02%)</title><rect x="84.1449%" y="789" width="0.0232%" height="15" fill="rgb(208,173,10)" fg:x="446557" fg:w="123"/><text x="84.3949%" y="799.50"></text></g><g><title>irq_exit_rcu (60 samples, 0.01%)</title><rect x="84.1568%" y="773" width="0.0113%" height="15" fill="rgb(246,225,4)" fg:x="446620" fg:w="60"/><text x="84.4068%" y="783.50"></text></g><g><title>do_softirq_own_stack (58 samples, 0.01%)</title><rect x="84.1572%" y="757" width="0.0109%" height="15" fill="rgb(248,102,6)" fg:x="446622" fg:w="58"/><text x="84.4072%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (58 samples, 0.01%)</title><rect x="84.1572%" y="741" width="0.0109%" height="15" fill="rgb(232,6,21)" fg:x="446622" fg:w="58"/><text x="84.4072%" y="751.50"></text></g><g><title>__softirqentry_text_start (58 samples, 0.01%)</title><rect x="84.1572%" y="725" width="0.0109%" height="15" fill="rgb(221,179,22)" fg:x="446622" fg:w="58"/><text x="84.4072%" y="735.50"></text></g><g><title>fileDescriptorClose (57 samples, 0.01%)</title><rect x="84.1756%" y="805" width="0.0107%" height="15" fill="rgb(252,50,20)" fg:x="446720" fg:w="57"/><text x="84.4256%" y="815.50"></text></g><g><title>do_filp_open (141 samples, 0.03%)</title><rect x="84.2050%" y="709" width="0.0266%" height="15" fill="rgb(222,56,38)" fg:x="446876" fg:w="141"/><text x="84.4550%" y="719.50"></text></g><g><title>path_openat (140 samples, 0.03%)</title><rect x="84.2052%" y="693" width="0.0264%" height="15" fill="rgb(206,193,29)" fg:x="446877" fg:w="140"/><text x="84.4552%" y="703.50"></text></g><g><title>__x64_sys_openat (184 samples, 0.03%)</title><rect x="84.2028%" y="741" width="0.0347%" height="15" fill="rgb(239,192,45)" fg:x="446864" fg:w="184"/><text x="84.4528%" y="751.50"></text></g><g><title>do_sys_openat2 (184 samples, 0.03%)</title><rect x="84.2028%" y="725" width="0.0347%" height="15" fill="rgb(254,18,36)" fg:x="446864" fg:w="184"/><text x="84.4528%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (186 samples, 0.04%)</title><rect x="84.2026%" y="773" width="0.0350%" height="15" fill="rgb(221,127,11)" fg:x="446863" fg:w="186"/><text x="84.4526%" y="783.50"></text></g><g><title>do_syscall_64 (185 samples, 0.03%)</title><rect x="84.2028%" y="757" width="0.0349%" height="15" fill="rgb(234,146,35)" fg:x="446864" fg:w="185"/><text x="84.4528%" y="767.50"></text></g><g><title>__libc_open64 (191 samples, 0.04%)</title><rect x="84.2020%" y="789" width="0.0360%" height="15" fill="rgb(254,201,37)" fg:x="446860" fg:w="191"/><text x="84.4520%" y="799.50"></text></g><g><title>fileOpen (295 samples, 0.06%)</title><rect x="84.1864%" y="805" width="0.0556%" height="15" fill="rgb(211,202,23)" fg:x="446777" fg:w="295"/><text x="84.4364%" y="815.50"></text></g><g><title>jni_IsAssignableFrom (102 samples, 0.02%)</title><rect x="84.2467%" y="805" width="0.0192%" height="15" fill="rgb(237,91,2)" fg:x="447097" fg:w="102"/><text x="84.4967%" y="815.50"></text></g><g><title>[perf-925888.map] (72,368 samples, 13.64%)</title><rect x="70.8892%" y="821" width="13.6363%" height="15" fill="rgb(226,228,36)" fg:x="376209" fg:w="72368"/><text x="71.1392%" y="831.50">[perf-925888.map]</text></g><g><title>os::javaTimeNanos (1,364 samples, 0.26%)</title><rect x="84.2685%" y="805" width="0.2570%" height="15" fill="rgb(213,63,50)" fg:x="447213" fg:w="1364"/><text x="84.5185%" y="815.50"></text></g><g><title>__GI___clock_gettime (1,283 samples, 0.24%)</title><rect x="84.2838%" y="789" width="0.2418%" height="15" fill="rgb(235,194,19)" fg:x="447294" fg:w="1283"/><text x="84.5338%" y="799.50"></text></g><g><title>__vdso_clock_gettime (1,148 samples, 0.22%)</title><rect x="84.3092%" y="773" width="0.2163%" height="15" fill="rgb(207,204,18)" fg:x="447429" fg:w="1148"/><text x="84.5592%" y="783.50"></text></g><g><title>[[vdso]] (745 samples, 0.14%)</title><rect x="84.3852%" y="757" width="0.1404%" height="15" fill="rgb(248,8,7)" fg:x="447832" fg:w="745"/><text x="84.6352%" y="767.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (147 samples, 0.03%)</title><rect x="84.5655%" y="789" width="0.0277%" height="15" fill="rgb(223,145,47)" fg:x="448789" fg:w="147"/><text x="84.8155%" y="799.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (229 samples, 0.04%)</title><rect x="84.5530%" y="805" width="0.0432%" height="15" fill="rgb(228,84,11)" fg:x="448723" fg:w="229"/><text x="84.8030%" y="815.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.01%)</title><rect x="84.5977%" y="597" width="0.0104%" height="15" fill="rgb(218,76,45)" fg:x="448960" fg:w="55"/><text x="84.8477%" y="607.50"></text></g><g><title>schedule (54 samples, 0.01%)</title><rect x="84.5979%" y="581" width="0.0102%" height="15" fill="rgb(223,80,15)" fg:x="448961" fg:w="54"/><text x="84.8479%" y="591.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="84.5979%" y="565" width="0.0102%" height="15" fill="rgb(219,218,33)" fg:x="448961" fg:w="54"/><text x="84.8479%" y="575.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="84.5977%" y="661" width="0.0106%" height="15" fill="rgb(208,51,11)" fg:x="448960" fg:w="56"/><text x="84.8477%" y="671.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="84.5977%" y="645" width="0.0106%" height="15" fill="rgb(229,165,39)" fg:x="448960" fg:w="56"/><text x="84.8477%" y="655.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="84.5977%" y="629" width="0.0106%" height="15" fill="rgb(241,100,24)" fg:x="448960" fg:w="56"/><text x="84.8477%" y="639.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="84.5977%" y="613" width="0.0106%" height="15" fill="rgb(228,14,23)" fg:x="448960" fg:w="56"/><text x="84.8477%" y="623.50"></text></g><g><title>__pthread_cond_wait (59 samples, 0.01%)</title><rect x="84.5973%" y="725" width="0.0111%" height="15" fill="rgb(247,116,52)" fg:x="448958" fg:w="59"/><text x="84.8473%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (59 samples, 0.01%)</title><rect x="84.5973%" y="709" width="0.0111%" height="15" fill="rgb(216,149,33)" fg:x="448958" fg:w="59"/><text x="84.8473%" y="719.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.01%)</title><rect x="84.5975%" y="693" width="0.0109%" height="15" fill="rgb(238,142,29)" fg:x="448959" fg:w="58"/><text x="84.8475%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="84.5977%" y="677" width="0.0107%" height="15" fill="rgb(224,83,40)" fg:x="448960" fg:w="57"/><text x="84.8477%" y="687.50"></text></g><g><title>Monitor::lock_without_safepoint_check (65 samples, 0.01%)</title><rect x="84.5966%" y="773" width="0.0122%" height="15" fill="rgb(234,165,11)" fg:x="448954" fg:w="65"/><text x="84.8466%" y="783.50"></text></g><g><title>Monitor::ILock (65 samples, 0.01%)</title><rect x="84.5966%" y="757" width="0.0122%" height="15" fill="rgb(215,96,23)" fg:x="448954" fg:w="65"/><text x="84.8466%" y="767.50"></text></g><g><title>os::PlatformEvent::park (61 samples, 0.01%)</title><rect x="84.5973%" y="741" width="0.0115%" height="15" fill="rgb(233,179,26)" fg:x="448958" fg:w="61"/><text x="84.8473%" y="751.50"></text></g><g><title>SafepointSynchronize::block (75 samples, 0.01%)</title><rect x="84.5964%" y="789" width="0.0141%" height="15" fill="rgb(225,129,33)" fg:x="448953" fg:w="75"/><text x="84.8464%" y="799.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (78 samples, 0.01%)</title><rect x="84.5962%" y="805" width="0.0147%" height="15" fill="rgb(237,49,13)" fg:x="448952" fg:w="78"/><text x="84.8462%" y="815.50"></text></g><g><title>__GI___clock_gettime (70 samples, 0.01%)</title><rect x="84.6128%" y="805" width="0.0132%" height="15" fill="rgb(211,3,31)" fg:x="449040" fg:w="70"/><text x="84.8628%" y="815.50"></text></g><g><title>copy_user_enhanced_fast_string (124 samples, 0.02%)</title><rect x="84.6635%" y="629" width="0.0234%" height="15" fill="rgb(216,152,19)" fg:x="449309" fg:w="124"/><text x="84.9135%" y="639.50"></text></g><g><title>copy_page_to_iter (136 samples, 0.03%)</title><rect x="84.6616%" y="645" width="0.0256%" height="15" fill="rgb(251,121,35)" fg:x="449299" fg:w="136"/><text x="84.9116%" y="655.50"></text></g><g><title>btrfs_dirty_inode (99 samples, 0.02%)</title><rect x="84.7049%" y="629" width="0.0187%" height="15" fill="rgb(210,217,47)" fg:x="449529" fg:w="99"/><text x="84.9549%" y="639.50"></text></g><g><title>touch_atime (111 samples, 0.02%)</title><rect x="84.7032%" y="645" width="0.0209%" height="15" fill="rgb(244,116,22)" fg:x="449520" fg:w="111"/><text x="84.9532%" y="655.50"></text></g><g><title>new_sync_read (368 samples, 0.07%)</title><rect x="84.6582%" y="677" width="0.0693%" height="15" fill="rgb(228,17,21)" fg:x="449281" fg:w="368"/><text x="84.9082%" y="687.50"></text></g><g><title>generic_file_buffered_read (364 samples, 0.07%)</title><rect x="84.6589%" y="661" width="0.0686%" height="15" fill="rgb(240,149,34)" fg:x="449285" fg:w="364"/><text x="84.9089%" y="671.50"></text></g><g><title>do_syscall_64 (408 samples, 0.08%)</title><rect x="84.6533%" y="725" width="0.0769%" height="15" fill="rgb(208,125,47)" fg:x="449255" fg:w="408"/><text x="84.9033%" y="735.50"></text></g><g><title>ksys_read (407 samples, 0.08%)</title><rect x="84.6535%" y="709" width="0.0767%" height="15" fill="rgb(249,186,39)" fg:x="449256" fg:w="407"/><text x="84.9035%" y="719.50"></text></g><g><title>vfs_read (395 samples, 0.07%)</title><rect x="84.6557%" y="693" width="0.0744%" height="15" fill="rgb(240,220,33)" fg:x="449268" fg:w="395"/><text x="84.9057%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (415 samples, 0.08%)</title><rect x="84.6527%" y="741" width="0.0782%" height="15" fill="rgb(243,110,23)" fg:x="449252" fg:w="415"/><text x="84.9027%" y="751.50"></text></g><g><title>__libc_read (428 samples, 0.08%)</title><rect x="84.6507%" y="773" width="0.0806%" height="15" fill="rgb(219,163,46)" fg:x="449241" fg:w="428"/><text x="84.9007%" y="783.50"></text></g><g><title>__libc_read (428 samples, 0.08%)</title><rect x="84.6507%" y="757" width="0.0806%" height="15" fill="rgb(216,126,30)" fg:x="449241" fg:w="428"/><text x="84.9007%" y="767.50"></text></g><g><title>handleRead (429 samples, 0.08%)</title><rect x="84.6507%" y="789" width="0.0808%" height="15" fill="rgb(208,139,11)" fg:x="449241" fg:w="429"/><text x="84.9007%" y="799.50"></text></g><g><title>readBytes (502 samples, 0.09%)</title><rect x="84.6495%" y="805" width="0.0946%" height="15" fill="rgb(213,118,36)" fg:x="449235" fg:w="502"/><text x="84.8995%" y="815.50"></text></g><g><title>[unknown] (1,180 samples, 0.22%)</title><rect x="84.5255%" y="821" width="0.2223%" height="15" fill="rgb(226,43,17)" fg:x="448577" fg:w="1180"/><text x="84.7755%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (126 samples, 0.02%)</title><rect x="84.7496%" y="757" width="0.0237%" height="15" fill="rgb(254,217,4)" fg:x="449766" fg:w="126"/><text x="84.9996%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (124 samples, 0.02%)</title><rect x="84.7500%" y="741" width="0.0234%" height="15" fill="rgb(210,134,47)" fg:x="449768" fg:w="124"/><text x="85.0000%" y="751.50"></text></g><g><title>native_write_msr (123 samples, 0.02%)</title><rect x="84.7501%" y="725" width="0.0232%" height="15" fill="rgb(237,24,49)" fg:x="449769" fg:w="123"/><text x="85.0001%" y="735.50"></text></g><g><title>schedule_tail (130 samples, 0.02%)</title><rect x="84.7496%" y="789" width="0.0245%" height="15" fill="rgb(251,39,46)" fg:x="449766" fg:w="130"/><text x="84.9996%" y="799.50"></text></g><g><title>finish_task_switch (130 samples, 0.02%)</title><rect x="84.7496%" y="773" width="0.0245%" height="15" fill="rgb(251,220,3)" fg:x="449766" fg:w="130"/><text x="84.9996%" y="783.50"></text></g><g><title>ret_from_fork (133 samples, 0.03%)</title><rect x="84.7496%" y="805" width="0.0251%" height="15" fill="rgb(228,105,12)" fg:x="449766" fg:w="133"/><text x="84.9996%" y="815.50"></text></g><g><title>__GI___clone (237 samples, 0.04%)</title><rect x="84.7479%" y="821" width="0.0447%" height="15" fill="rgb(215,196,1)" fg:x="449757" fg:w="237"/><text x="84.9979%" y="831.50"></text></g><g><title>start_thread (95 samples, 0.02%)</title><rect x="84.7746%" y="805" width="0.0179%" height="15" fill="rgb(214,33,39)" fg:x="449899" fg:w="95"/><text x="85.0246%" y="815.50"></text></g><g><title>thread_native_entry (68 samples, 0.01%)</title><rect x="84.7797%" y="789" width="0.0128%" height="15" fill="rgb(220,19,52)" fg:x="449926" fg:w="68"/><text x="85.0297%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (138 samples, 0.03%)</title><rect x="84.8020%" y="821" width="0.0260%" height="15" fill="rgb(221,78,38)" fg:x="450044" fg:w="138"/><text x="85.0520%" y="831.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (216 samples, 0.04%)</title><rect x="84.8280%" y="821" width="0.0407%" height="15" fill="rgb(253,30,16)" fg:x="450182" fg:w="216"/><text x="85.0780%" y="831.50"></text></g><g><title>skyframe-evalua (301,452 samples, 56.80%)</title><rect x="28.0955%" y="837" width="56.8027%" height="15" fill="rgb(242,65,0)" fg:x="149103" fg:w="301452"/><text x="28.3455%" y="847.50">skyframe-evalua</text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="84.9092%" y="709" width="0.0109%" height="15" fill="rgb(235,201,12)" fg:x="450613" fg:w="58"/><text x="85.1592%" y="719.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="84.9092%" y="693" width="0.0109%" height="15" fill="rgb(233,161,9)" fg:x="450613" fg:w="58"/><text x="85.1592%" y="703.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="84.9092%" y="677" width="0.0109%" height="15" fill="rgb(241,207,41)" fg:x="450613" fg:w="58"/><text x="85.1592%" y="687.50"></text></g><g><title>futex_wait (57 samples, 0.01%)</title><rect x="84.9094%" y="661" width="0.0107%" height="15" fill="rgb(212,69,46)" fg:x="450614" fg:w="57"/><text x="85.1594%" y="671.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.01%)</title><rect x="84.9094%" y="645" width="0.0107%" height="15" fill="rgb(239,69,45)" fg:x="450614" fg:w="57"/><text x="85.1594%" y="655.50"></text></g><g><title>schedule (57 samples, 0.01%)</title><rect x="84.9094%" y="629" width="0.0107%" height="15" fill="rgb(242,117,48)" fg:x="450614" fg:w="57"/><text x="85.1594%" y="639.50"></text></g><g><title>__schedule (57 samples, 0.01%)</title><rect x="84.9094%" y="613" width="0.0107%" height="15" fill="rgb(228,41,36)" fg:x="450614" fg:w="57"/><text x="85.1594%" y="623.50"></text></g><g><title>__pthread_cond_wait (60 samples, 0.01%)</title><rect x="84.9092%" y="773" width="0.0113%" height="15" fill="rgb(212,3,32)" fg:x="450613" fg:w="60"/><text x="85.1592%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (60 samples, 0.01%)</title><rect x="84.9092%" y="757" width="0.0113%" height="15" fill="rgb(233,41,49)" fg:x="450613" fg:w="60"/><text x="85.1592%" y="767.50"></text></g><g><title>futex_wait_cancelable (60 samples, 0.01%)</title><rect x="84.9092%" y="741" width="0.0113%" height="15" fill="rgb(252,170,49)" fg:x="450613" fg:w="60"/><text x="85.1592%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="84.9092%" y="725" width="0.0113%" height="15" fill="rgb(229,53,26)" fg:x="450613" fg:w="60"/><text x="85.1592%" y="735.50"></text></g><g><title>Unsafe_Park (64 samples, 0.01%)</title><rect x="84.9088%" y="805" width="0.0121%" height="15" fill="rgb(217,157,12)" fg:x="450611" fg:w="64"/><text x="85.1588%" y="815.50"></text></g><g><title>Parker::park (64 samples, 0.01%)</title><rect x="84.9088%" y="789" width="0.0121%" height="15" fill="rgb(227,17,9)" fg:x="450611" fg:w="64"/><text x="85.1588%" y="799.50"></text></g><g><title>[perf-925888.map] (123 samples, 0.02%)</title><rect x="84.8988%" y="821" width="0.0232%" height="15" fill="rgb(218,84,12)" fg:x="450558" fg:w="123"/><text x="85.1488%" y="831.50"></text></g><g><title>skyframe-invali (153 samples, 0.03%)</title><rect x="84.8982%" y="837" width="0.0288%" height="15" fill="rgb(212,79,24)" fg:x="450555" fg:w="153"/><text x="85.1482%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (105 samples, 0.02%)</title><rect x="89.9574%" y="629" width="0.0198%" height="15" fill="rgb(217,222,37)" fg:x="477404" fg:w="105"/><text x="90.2074%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (105 samples, 0.02%)</title><rect x="89.9574%" y="613" width="0.0198%" height="15" fill="rgb(246,208,8)" fg:x="477404" fg:w="105"/><text x="90.2074%" y="623.50"></text></g><g><title>native_write_msr (105 samples, 0.02%)</title><rect x="89.9574%" y="597" width="0.0198%" height="15" fill="rgb(244,133,10)" fg:x="477404" fg:w="105"/><text x="90.2074%" y="607.50"></text></g><g><title>finish_task_switch (112 samples, 0.02%)</title><rect x="89.9568%" y="645" width="0.0211%" height="15" fill="rgb(209,219,41)" fg:x="477401" fg:w="112"/><text x="90.2068%" y="655.50"></text></g><g><title>wait_on_page_bit_common (142 samples, 0.03%)</title><rect x="89.9535%" y="709" width="0.0268%" height="15" fill="rgb(253,175,45)" fg:x="477383" fg:w="142"/><text x="90.2035%" y="719.50"></text></g><g><title>io_schedule (138 samples, 0.03%)</title><rect x="89.9542%" y="693" width="0.0260%" height="15" fill="rgb(235,100,37)" fg:x="477387" fg:w="138"/><text x="90.2042%" y="703.50"></text></g><g><title>schedule (138 samples, 0.03%)</title><rect x="89.9542%" y="677" width="0.0260%" height="15" fill="rgb(225,87,19)" fg:x="477387" fg:w="138"/><text x="90.2042%" y="687.50"></text></g><g><title>__schedule (137 samples, 0.03%)</title><rect x="89.9544%" y="661" width="0.0258%" height="15" fill="rgb(217,152,17)" fg:x="477388" fg:w="137"/><text x="90.2044%" y="671.50"></text></g><g><title>__do_fault (188 samples, 0.04%)</title><rect x="89.9487%" y="741" width="0.0354%" height="15" fill="rgb(235,72,13)" fg:x="477358" fg:w="188"/><text x="90.1987%" y="751.50"></text></g><g><title>filemap_fault (188 samples, 0.04%)</title><rect x="89.9487%" y="725" width="0.0354%" height="15" fill="rgb(233,140,18)" fg:x="477358" fg:w="188"/><text x="90.1987%" y="735.50"></text></g><g><title>__list_del_entry_valid (74 samples, 0.01%)</title><rect x="90.0230%" y="693" width="0.0139%" height="15" fill="rgb(207,212,28)" fg:x="477752" fg:w="74"/><text x="90.2730%" y="703.50"></text></g><g><title>get_page_from_freelist (382 samples, 0.07%)</title><rect x="90.0102%" y="709" width="0.0720%" height="15" fill="rgb(220,130,25)" fg:x="477684" fg:w="382"/><text x="90.2602%" y="719.50"></text></g><g><title>prep_new_page (239 samples, 0.05%)</title><rect x="90.0371%" y="693" width="0.0450%" height="15" fill="rgb(205,55,34)" fg:x="477827" fg:w="239"/><text x="90.2871%" y="703.50"></text></g><g><title>kernel_init_free_pages (230 samples, 0.04%)</title><rect x="90.0388%" y="677" width="0.0433%" height="15" fill="rgb(237,54,35)" fg:x="477836" fg:w="230"/><text x="90.2888%" y="687.50"></text></g><g><title>clear_page_erms (221 samples, 0.04%)</title><rect x="90.0405%" y="661" width="0.0416%" height="15" fill="rgb(208,67,23)" fg:x="477845" fg:w="221"/><text x="90.2905%" y="671.50"></text></g><g><title>__alloc_pages_nodemask (432 samples, 0.08%)</title><rect x="90.0011%" y="725" width="0.0814%" height="15" fill="rgb(206,207,50)" fg:x="477636" fg:w="432"/><text x="90.2511%" y="735.50"></text></g><g><title>alloc_pages_vma (467 samples, 0.09%)</title><rect x="89.9964%" y="741" width="0.0880%" height="15" fill="rgb(213,211,42)" fg:x="477611" fg:w="467"/><text x="90.2464%" y="751.50"></text></g><g><title>do_huge_pmd_anonymous_page (58 samples, 0.01%)</title><rect x="90.0908%" y="741" width="0.0109%" height="15" fill="rgb(252,197,50)" fg:x="478112" fg:w="58"/><text x="90.3408%" y="751.50"></text></g><g><title>do_page_mkwrite (225 samples, 0.04%)</title><rect x="90.1018%" y="741" width="0.0424%" height="15" fill="rgb(251,211,41)" fg:x="478170" fg:w="225"/><text x="90.3518%" y="751.50"></text></g><g><title>btrfs_page_mkwrite (224 samples, 0.04%)</title><rect x="90.1019%" y="725" width="0.0422%" height="15" fill="rgb(229,211,5)" fg:x="478171" fg:w="224"/><text x="90.3519%" y="735.50"></text></g><g><title>page_add_file_rmap (172 samples, 0.03%)</title><rect x="90.2568%" y="709" width="0.0324%" height="15" fill="rgb(239,36,31)" fg:x="478993" fg:w="172"/><text x="90.5068%" y="719.50"></text></g><g><title>alloc_set_pte (243 samples, 0.05%)</title><rect x="90.2450%" y="725" width="0.0458%" height="15" fill="rgb(248,67,31)" fg:x="478930" fg:w="243"/><text x="90.4950%" y="735.50"></text></g><g><title>unlock_page (59 samples, 0.01%)</title><rect x="90.2907%" y="725" width="0.0111%" height="15" fill="rgb(249,55,44)" fg:x="479173" fg:w="59"/><text x="90.5407%" y="735.50"></text></g><g><title>filemap_map_pages (864 samples, 0.16%)</title><rect x="90.1519%" y="741" width="0.1628%" height="15" fill="rgb(216,82,12)" fg:x="478436" fg:w="864"/><text x="90.4019%" y="751.50"></text></g><g><title>xas_find (68 samples, 0.01%)</title><rect x="90.3019%" y="725" width="0.0128%" height="15" fill="rgb(242,174,1)" fg:x="479232" fg:w="68"/><text x="90.5519%" y="735.50"></text></g><g><title>__pagevec_lru_add_fn (67 samples, 0.01%)</title><rect x="90.3186%" y="709" width="0.0126%" height="15" fill="rgb(208,120,29)" fg:x="479321" fg:w="67"/><text x="90.5686%" y="719.50"></text></g><g><title>lru_cache_add (104 samples, 0.02%)</title><rect x="90.3149%" y="741" width="0.0196%" height="15" fill="rgb(221,105,43)" fg:x="479301" fg:w="104"/><text x="90.5649%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (93 samples, 0.02%)</title><rect x="90.3169%" y="725" width="0.0175%" height="15" fill="rgb(234,124,22)" fg:x="479312" fg:w="93"/><text x="90.5669%" y="735.50"></text></g><g><title>mem_cgroup_charge (124 samples, 0.02%)</title><rect x="90.3348%" y="741" width="0.0234%" height="15" fill="rgb(212,23,30)" fg:x="479407" fg:w="124"/><text x="90.5848%" y="751.50"></text></g><g><title>handle_mm_fault (2,538 samples, 0.48%)</title><rect x="89.9035%" y="757" width="0.4782%" height="15" fill="rgb(219,122,53)" fg:x="477118" fg:w="2538"/><text x="90.1535%" y="767.50"></text></g><g><title>do_user_addr_fault (2,701 samples, 0.51%)</title><rect x="89.8811%" y="773" width="0.5090%" height="15" fill="rgb(248,84,24)" fg:x="476999" fg:w="2701"/><text x="90.1311%" y="783.50"></text></g><g><title>exc_page_fault (2,728 samples, 0.51%)</title><rect x="89.8766%" y="789" width="0.5140%" height="15" fill="rgb(245,115,18)" fg:x="476975" fg:w="2728"/><text x="90.1266%" y="799.50"></text></g><g><title>asm_exc_page_fault (2,772 samples, 0.52%)</title><rect x="89.8709%" y="805" width="0.5223%" height="15" fill="rgb(227,176,51)" fg:x="476945" fg:w="2772"/><text x="90.1209%" y="815.50"></text></g><g><title>kmem_cache_free (60 samples, 0.01%)</title><rect x="90.4044%" y="693" width="0.0113%" height="15" fill="rgb(229,63,42)" fg:x="479776" fg:w="60"/><text x="90.6544%" y="703.50"></text></g><g><title>rcu_core (117 samples, 0.02%)</title><rect x="90.4006%" y="709" width="0.0220%" height="15" fill="rgb(247,202,24)" fg:x="479756" fg:w="117"/><text x="90.6506%" y="719.50"></text></g><g><title>do_softirq_own_stack (122 samples, 0.02%)</title><rect x="90.4006%" y="757" width="0.0230%" height="15" fill="rgb(244,173,20)" fg:x="479756" fg:w="122"/><text x="90.6506%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (122 samples, 0.02%)</title><rect x="90.4006%" y="741" width="0.0230%" height="15" fill="rgb(242,81,47)" fg:x="479756" fg:w="122"/><text x="90.6506%" y="751.50"></text></g><g><title>__softirqentry_text_start (122 samples, 0.02%)</title><rect x="90.4006%" y="725" width="0.0230%" height="15" fill="rgb(231,185,54)" fg:x="479756" fg:w="122"/><text x="90.6506%" y="735.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (162 samples, 0.03%)</title><rect x="90.3933%" y="805" width="0.0305%" height="15" fill="rgb(243,55,32)" fg:x="479717" fg:w="162"/><text x="90.6433%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (141 samples, 0.03%)</title><rect x="90.3972%" y="789" width="0.0266%" height="15" fill="rgb(208,167,19)" fg:x="479738" fg:w="141"/><text x="90.6472%" y="799.50"></text></g><g><title>irq_exit_rcu (123 samples, 0.02%)</title><rect x="90.4006%" y="773" width="0.0232%" height="15" fill="rgb(231,72,35)" fg:x="479756" fg:w="123"/><text x="90.6506%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (1,192 samples, 0.22%)</title><rect x="90.4272%" y="805" width="0.2246%" height="15" fill="rgb(250,173,51)" fg:x="479897" fg:w="1192"/><text x="90.6772%" y="815.50"></text></g><g><title>copy_process (104 samples, 0.02%)</title><rect x="90.7500%" y="741" width="0.0196%" height="15" fill="rgb(209,5,22)" fg:x="481610" fg:w="104"/><text x="91.0000%" y="751.50"></text></g><g><title>__do_sys_clone (118 samples, 0.02%)</title><rect x="90.7500%" y="773" width="0.0222%" height="15" fill="rgb(250,174,19)" fg:x="481610" fg:w="118"/><text x="91.0000%" y="783.50"></text></g><g><title>kernel_clone (118 samples, 0.02%)</title><rect x="90.7500%" y="757" width="0.0222%" height="15" fill="rgb(217,3,49)" fg:x="481610" fg:w="118"/><text x="91.0000%" y="767.50"></text></g><g><title>_copy_to_user (193 samples, 0.04%)</title><rect x="90.7850%" y="741" width="0.0364%" height="15" fill="rgb(218,225,5)" fg:x="481796" fg:w="193"/><text x="91.0350%" y="751.50"></text></g><g><title>copy_user_enhanced_fast_string (169 samples, 0.03%)</title><rect x="90.7895%" y="725" width="0.0318%" height="15" fill="rgb(236,89,11)" fg:x="481820" fg:w="169"/><text x="91.0395%" y="735.50"></text></g><g><title>cp_new_stat (292 samples, 0.06%)</title><rect x="90.7748%" y="757" width="0.0550%" height="15" fill="rgb(206,33,28)" fg:x="481742" fg:w="292"/><text x="91.0248%" y="767.50"></text></g><g><title>__fget_light (102 samples, 0.02%)</title><rect x="90.8344%" y="741" width="0.0192%" height="15" fill="rgb(241,56,42)" fg:x="482058" fg:w="102"/><text x="91.0844%" y="751.50"></text></g><g><title>__fget_files (95 samples, 0.02%)</title><rect x="90.8357%" y="725" width="0.0179%" height="15" fill="rgb(222,44,11)" fg:x="482065" fg:w="95"/><text x="91.0857%" y="735.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="90.9292%" y="725" width="0.0107%" height="15" fill="rgb(234,111,20)" fg:x="482561" fg:w="57"/><text x="91.1792%" y="735.50"></text></g><g><title>btrfs_getattr (574 samples, 0.11%)</title><rect x="90.8536%" y="741" width="0.1082%" height="15" fill="rgb(237,77,6)" fg:x="482160" fg:w="574"/><text x="91.1036%" y="751.50"></text></g><g><title>inode_get_bytes (73 samples, 0.01%)</title><rect x="90.9480%" y="725" width="0.0138%" height="15" fill="rgb(235,111,23)" fg:x="482661" fg:w="73"/><text x="91.1980%" y="735.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="90.9510%" y="709" width="0.0107%" height="15" fill="rgb(251,135,29)" fg:x="482677" fg:w="57"/><text x="91.2010%" y="719.50"></text></g><g><title>security_inode_getattr (202 samples, 0.04%)</title><rect x="90.9700%" y="741" width="0.0381%" height="15" fill="rgb(217,57,1)" fg:x="482778" fg:w="202"/><text x="91.2200%" y="751.50"></text></g><g><title>tomoyo_path_perm (149 samples, 0.03%)</title><rect x="90.9800%" y="725" width="0.0281%" height="15" fill="rgb(249,119,31)" fg:x="482831" fg:w="149"/><text x="91.2300%" y="735.50"></text></g><g><title>tomoyo_init_request_info (72 samples, 0.01%)</title><rect x="90.9945%" y="709" width="0.0136%" height="15" fill="rgb(233,164,33)" fg:x="482908" fg:w="72"/><text x="91.2445%" y="719.50"></text></g><g><title>__do_sys_newfstat (1,338 samples, 0.25%)</title><rect x="90.7722%" y="773" width="0.2521%" height="15" fill="rgb(250,217,43)" fg:x="481728" fg:w="1338"/><text x="91.0222%" y="783.50"></text></g><g><title>vfs_fstat (1,032 samples, 0.19%)</title><rect x="90.8298%" y="757" width="0.1945%" height="15" fill="rgb(232,154,50)" fg:x="482034" fg:w="1032"/><text x="91.0798%" y="767.50"></text></g><g><title>vfs_getattr_nosec (86 samples, 0.02%)</title><rect x="91.0081%" y="741" width="0.0162%" height="15" fill="rgb(227,190,8)" fg:x="482980" fg:w="86"/><text x="91.2581%" y="751.50"></text></g><g><title>__close_fd (93 samples, 0.02%)</title><rect x="91.0311%" y="757" width="0.0175%" height="15" fill="rgb(209,217,32)" fg:x="483102" fg:w="93"/><text x="91.2811%" y="767.50"></text></g><g><title>pick_file (89 samples, 0.02%)</title><rect x="91.0318%" y="741" width="0.0168%" height="15" fill="rgb(243,203,50)" fg:x="483106" fg:w="89"/><text x="91.2818%" y="751.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="91.0379%" y="725" width="0.0107%" height="15" fill="rgb(232,152,27)" fg:x="483138" fg:w="57"/><text x="91.2879%" y="735.50"></text></g><g><title>fput_many (201 samples, 0.04%)</title><rect x="91.0535%" y="741" width="0.0379%" height="15" fill="rgb(240,34,29)" fg:x="483221" fg:w="201"/><text x="91.3035%" y="751.50"></text></g><g><title>task_work_add (131 samples, 0.02%)</title><rect x="91.0667%" y="725" width="0.0247%" height="15" fill="rgb(215,185,52)" fg:x="483291" fg:w="131"/><text x="91.3167%" y="735.50"></text></g><g><title>__x64_sys_close (354 samples, 0.07%)</title><rect x="91.0292%" y="773" width="0.0667%" height="15" fill="rgb(240,89,49)" fg:x="483092" fg:w="354"/><text x="91.2792%" y="783.50"></text></g><g><title>filp_close (251 samples, 0.05%)</title><rect x="91.0486%" y="757" width="0.0473%" height="15" fill="rgb(225,12,52)" fg:x="483195" fg:w="251"/><text x="91.2986%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (140 samples, 0.03%)</title><rect x="91.0997%" y="645" width="0.0264%" height="15" fill="rgb(239,128,45)" fg:x="483466" fg:w="140"/><text x="91.3497%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (135 samples, 0.03%)</title><rect x="91.1006%" y="629" width="0.0254%" height="15" fill="rgb(211,78,47)" fg:x="483471" fg:w="135"/><text x="91.3506%" y="639.50"></text></g><g><title>native_write_msr (133 samples, 0.03%)</title><rect x="91.1010%" y="613" width="0.0251%" height="15" fill="rgb(232,31,21)" fg:x="483473" fg:w="133"/><text x="91.3510%" y="623.50"></text></g><g><title>finish_task_switch (144 samples, 0.03%)</title><rect x="91.0995%" y="661" width="0.0271%" height="15" fill="rgb(222,168,14)" fg:x="483465" fg:w="144"/><text x="91.3495%" y="671.50"></text></g><g><title>schedule (147 samples, 0.03%)</title><rect x="91.0993%" y="693" width="0.0277%" height="15" fill="rgb(209,128,24)" fg:x="483464" fg:w="147"/><text x="91.3493%" y="703.50"></text></g><g><title>__schedule (146 samples, 0.03%)</title><rect x="91.0995%" y="677" width="0.0275%" height="15" fill="rgb(249,35,13)" fg:x="483465" fg:w="146"/><text x="91.3495%" y="687.50"></text></g><g><title>begin_new_exec (169 samples, 0.03%)</title><rect x="91.0976%" y="709" width="0.0318%" height="15" fill="rgb(218,7,2)" fg:x="483455" fg:w="169"/><text x="91.3476%" y="719.50"></text></g><g><title>load_elf_binary (170 samples, 0.03%)</title><rect x="91.0976%" y="725" width="0.0320%" height="15" fill="rgb(238,107,27)" fg:x="483455" fg:w="170"/><text x="91.3476%" y="735.50"></text></g><g><title>bprm_execve (222 samples, 0.04%)</title><rect x="91.0969%" y="741" width="0.0418%" height="15" fill="rgb(217,88,38)" fg:x="483451" fg:w="222"/><text x="91.3469%" y="751.50"></text></g><g><title>do_execveat_common (262 samples, 0.05%)</title><rect x="91.0959%" y="757" width="0.0494%" height="15" fill="rgb(230,207,0)" fg:x="483446" fg:w="262"/><text x="91.3459%" y="767.50"></text></g><g><title>__x64_sys_execve (267 samples, 0.05%)</title><rect x="91.0959%" y="773" width="0.0503%" height="15" fill="rgb(249,64,54)" fg:x="483446" fg:w="267"/><text x="91.3459%" y="783.50"></text></g><g><title>__perf_event_task_sched_out (62 samples, 0.01%)</title><rect x="91.2500%" y="677" width="0.0117%" height="15" fill="rgb(231,7,11)" fg:x="484264" fg:w="62"/><text x="91.5000%" y="687.50"></text></g><g><title>update_curr (151 samples, 0.03%)</title><rect x="91.3053%" y="645" width="0.0285%" height="15" fill="rgb(205,149,21)" fg:x="484557" fg:w="151"/><text x="91.5553%" y="655.50"></text></g><g><title>__update_load_avg_se (56 samples, 0.01%)</title><rect x="91.3575%" y="629" width="0.0106%" height="15" fill="rgb(215,126,34)" fg:x="484834" fg:w="56"/><text x="91.6075%" y="639.50"></text></g><g><title>dequeue_entity (474 samples, 0.09%)</title><rect x="91.2802%" y="661" width="0.0893%" height="15" fill="rgb(241,132,45)" fg:x="484424" fg:w="474"/><text x="91.5302%" y="671.50"></text></g><g><title>update_load_avg (190 samples, 0.04%)</title><rect x="91.3337%" y="645" width="0.0358%" height="15" fill="rgb(252,69,32)" fg:x="484708" fg:w="190"/><text x="91.5837%" y="655.50"></text></g><g><title>dequeue_task_fair (544 samples, 0.10%)</title><rect x="91.2696%" y="677" width="0.1025%" height="15" fill="rgb(232,204,19)" fg:x="484368" fg:w="544"/><text x="91.5196%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (12,847 samples, 2.42%)</title><rect x="91.4326%" y="661" width="2.4208%" height="15" fill="rgb(249,15,47)" fg:x="485233" fg:w="12847"/><text x="91.6826%" y="671.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (12,669 samples, 2.39%)</title><rect x="91.4662%" y="645" width="2.3872%" height="15" fill="rgb(209,227,23)" fg:x="485411" fg:w="12669"/><text x="91.7162%" y="655.50">__..</text></g><g><title>native_write_msr (12,614 samples, 2.38%)</title><rect x="91.4765%" y="629" width="2.3769%" height="15" fill="rgb(248,92,24)" fg:x="485466" fg:w="12614"/><text x="91.7265%" y="639.50">na..</text></g><g><title>irq_work_run (80 samples, 0.02%)</title><rect x="93.8790%" y="597" width="0.0151%" height="15" fill="rgb(247,59,2)" fg:x="498216" fg:w="80"/><text x="94.1290%" y="607.50"></text></g><g><title>irq_work_run_list (79 samples, 0.01%)</title><rect x="93.8792%" y="581" width="0.0149%" height="15" fill="rgb(221,30,5)" fg:x="498217" fg:w="79"/><text x="94.1292%" y="591.50"></text></g><g><title>irq_work_single (77 samples, 0.01%)</title><rect x="93.8796%" y="565" width="0.0145%" height="15" fill="rgb(208,108,53)" fg:x="498219" fg:w="77"/><text x="94.1296%" y="575.50"></text></g><g><title>perf_pending_event (73 samples, 0.01%)</title><rect x="93.8803%" y="549" width="0.0138%" height="15" fill="rgb(211,183,26)" fg:x="498223" fg:w="73"/><text x="94.1303%" y="559.50"></text></g><g><title>perf_event_wakeup (63 samples, 0.01%)</title><rect x="93.8822%" y="533" width="0.0119%" height="15" fill="rgb(232,132,4)" fg:x="498233" fg:w="63"/><text x="94.1322%" y="543.50"></text></g><g><title>__wake_up_common_lock (61 samples, 0.01%)</title><rect x="93.8826%" y="517" width="0.0115%" height="15" fill="rgb(253,128,37)" fg:x="498235" fg:w="61"/><text x="94.1326%" y="527.50"></text></g><g><title>asm_call_sysvec_on_stack (90 samples, 0.02%)</title><rect x="93.8777%" y="629" width="0.0170%" height="15" fill="rgb(221,58,24)" fg:x="498209" fg:w="90"/><text x="94.1277%" y="639.50"></text></g><g><title>__sysvec_irq_work (85 samples, 0.02%)</title><rect x="93.8787%" y="613" width="0.0160%" height="15" fill="rgb(230,54,45)" fg:x="498214" fg:w="85"/><text x="94.1287%" y="623.50"></text></g><g><title>asm_sysvec_irq_work (169 samples, 0.03%)</title><rect x="93.8641%" y="661" width="0.0318%" height="15" fill="rgb(254,21,18)" fg:x="498137" fg:w="169"/><text x="94.1141%" y="671.50"></text></g><g><title>sysvec_irq_work (98 samples, 0.02%)</title><rect x="93.8775%" y="645" width="0.0185%" height="15" fill="rgb(221,108,0)" fg:x="498208" fg:w="98"/><text x="94.1275%" y="655.50"></text></g><g><title>finish_task_switch (13,459 samples, 2.54%)</title><rect x="91.3721%" y="677" width="2.5361%" height="15" fill="rgb(206,95,1)" fg:x="484912" fg:w="13459"/><text x="91.6221%" y="687.50">fi..</text></g><g><title>find_busiest_group (54 samples, 0.01%)</title><rect x="93.9275%" y="629" width="0.0102%" height="15" fill="rgb(237,52,5)" fg:x="498473" fg:w="54"/><text x="94.1775%" y="639.50"></text></g><g><title>load_balance (90 samples, 0.02%)</title><rect x="93.9210%" y="645" width="0.0170%" height="15" fill="rgb(218,150,34)" fg:x="498439" fg:w="90"/><text x="94.1710%" y="655.50"></text></g><g><title>newidle_balance (150 samples, 0.03%)</title><rect x="93.9120%" y="661" width="0.0283%" height="15" fill="rgb(235,194,28)" fg:x="498391" fg:w="150"/><text x="94.1620%" y="671.50"></text></g><g><title>pick_next_task_fair (177 samples, 0.03%)</title><rect x="93.9082%" y="677" width="0.0334%" height="15" fill="rgb(245,92,18)" fg:x="498371" fg:w="177"/><text x="94.1582%" y="687.50"></text></g><g><title>pick_next_task_idle (70 samples, 0.01%)</title><rect x="93.9416%" y="677" width="0.0132%" height="15" fill="rgb(253,203,53)" fg:x="498548" fg:w="70"/><text x="94.1916%" y="687.50"></text></g><g><title>__update_idle_core (59 samples, 0.01%)</title><rect x="93.9437%" y="661" width="0.0111%" height="15" fill="rgb(249,185,47)" fg:x="498559" fg:w="59"/><text x="94.1937%" y="671.50"></text></g><g><title>psi_task_change (349 samples, 0.07%)</title><rect x="93.9548%" y="677" width="0.0658%" height="15" fill="rgb(252,194,52)" fg:x="498618" fg:w="349"/><text x="94.2048%" y="687.50"></text></g><g><title>psi_group_change (286 samples, 0.05%)</title><rect x="93.9666%" y="661" width="0.0539%" height="15" fill="rgb(210,53,36)" fg:x="498681" fg:w="286"/><text x="94.2166%" y="671.50"></text></g><g><title>record_times (67 samples, 0.01%)</title><rect x="94.0079%" y="645" width="0.0126%" height="15" fill="rgb(237,37,25)" fg:x="498900" fg:w="67"/><text x="94.2579%" y="655.50"></text></g><g><title>futex_wait_queue_me (15,113 samples, 2.85%)</title><rect x="91.1907%" y="725" width="2.8477%" height="15" fill="rgb(242,116,27)" fg:x="483949" fg:w="15113"/><text x="91.4407%" y="735.50">fu..</text></g><g><title>schedule (14,983 samples, 2.82%)</title><rect x="91.2152%" y="709" width="2.8233%" height="15" fill="rgb(213,185,26)" fg:x="484079" fg:w="14983"/><text x="91.4652%" y="719.50">sc..</text></g><g><title>__schedule (14,925 samples, 2.81%)</title><rect x="91.2261%" y="693" width="2.8123%" height="15" fill="rgb(225,204,8)" fg:x="484137" fg:w="14925"/><text x="91.4761%" y="703.50">__..</text></g><g><title>futex_wait (15,398 samples, 2.90%)</title><rect x="91.1702%" y="741" width="2.9015%" height="15" fill="rgb(254,111,37)" fg:x="483840" fg:w="15398"/><text x="91.4202%" y="751.50">fu..</text></g><g><title>futex_wait_setup (176 samples, 0.03%)</title><rect x="94.0384%" y="725" width="0.0332%" height="15" fill="rgb(242,35,9)" fg:x="499062" fg:w="176"/><text x="94.2884%" y="735.50"></text></g><g><title>select_task_rq_fair (76 samples, 0.01%)</title><rect x="94.1029%" y="693" width="0.0143%" height="15" fill="rgb(232,138,49)" fg:x="499404" fg:w="76"/><text x="94.3529%" y="703.50"></text></g><g><title>enqueue_task_fair (65 samples, 0.01%)</title><rect x="94.1202%" y="677" width="0.0122%" height="15" fill="rgb(247,56,4)" fg:x="499496" fg:w="65"/><text x="94.3702%" y="687.50"></text></g><g><title>ttwu_do_activate (167 samples, 0.03%)</title><rect x="94.1181%" y="693" width="0.0315%" height="15" fill="rgb(226,179,17)" fg:x="499485" fg:w="167"/><text x="94.3681%" y="703.50"></text></g><g><title>psi_task_change (91 samples, 0.02%)</title><rect x="94.1325%" y="677" width="0.0171%" height="15" fill="rgb(216,163,45)" fg:x="499561" fg:w="91"/><text x="94.3825%" y="687.50"></text></g><g><title>psi_group_change (84 samples, 0.02%)</title><rect x="94.1338%" y="661" width="0.0158%" height="15" fill="rgb(211,157,3)" fg:x="499568" fg:w="84"/><text x="94.3838%" y="671.50"></text></g><g><title>__x64_sys_futex (15,935 samples, 3.00%)</title><rect x="91.1543%" y="773" width="3.0026%" height="15" fill="rgb(234,44,20)" fg:x="483756" fg:w="15935"/><text x="91.4043%" y="783.50">__x..</text></g><g><title>do_futex (15,894 samples, 2.99%)</title><rect x="91.1621%" y="757" width="2.9949%" height="15" fill="rgb(254,138,23)" fg:x="483797" fg:w="15894"/><text x="91.4121%" y="767.50">do_..</text></g><g><title>futex_wake (453 samples, 0.09%)</title><rect x="94.0716%" y="741" width="0.0854%" height="15" fill="rgb(206,119,39)" fg:x="499238" fg:w="453"/><text x="94.3216%" y="751.50"></text></g><g><title>wake_up_q (364 samples, 0.07%)</title><rect x="94.0884%" y="725" width="0.0686%" height="15" fill="rgb(231,105,52)" fg:x="499327" fg:w="364"/><text x="94.3384%" y="735.50"></text></g><g><title>try_to_wake_up (357 samples, 0.07%)</title><rect x="94.0897%" y="709" width="0.0673%" height="15" fill="rgb(250,20,5)" fg:x="499334" fg:w="357"/><text x="94.3397%" y="719.50"></text></g><g><title>__split_vma (81 samples, 0.02%)</title><rect x="94.1636%" y="725" width="0.0153%" height="15" fill="rgb(215,198,30)" fg:x="499726" fg:w="81"/><text x="94.4136%" y="735.50"></text></g><g><title>free_unref_page_list (89 samples, 0.02%)</title><rect x="94.2163%" y="677" width="0.0168%" height="15" fill="rgb(246,142,8)" fg:x="500006" fg:w="89"/><text x="94.4663%" y="687.50"></text></g><g><title>tlb_finish_mmu (225 samples, 0.04%)</title><rect x="94.1941%" y="709" width="0.0424%" height="15" fill="rgb(243,26,38)" fg:x="499888" fg:w="225"/><text x="94.4441%" y="719.50"></text></g><g><title>release_pages (163 samples, 0.03%)</title><rect x="94.2058%" y="693" width="0.0307%" height="15" fill="rgb(205,133,28)" fg:x="499950" fg:w="163"/><text x="94.4558%" y="703.50"></text></g><g><title>unmap_region (413 samples, 0.08%)</title><rect x="94.1833%" y="725" width="0.0778%" height="15" fill="rgb(212,34,0)" fg:x="499831" fg:w="413"/><text x="94.4333%" y="735.50"></text></g><g><title>unmap_vmas (129 samples, 0.02%)</title><rect x="94.2369%" y="709" width="0.0243%" height="15" fill="rgb(251,226,22)" fg:x="500115" fg:w="129"/><text x="94.4869%" y="719.50"></text></g><g><title>unmap_page_range (127 samples, 0.02%)</title><rect x="94.2372%" y="693" width="0.0239%" height="15" fill="rgb(252,119,9)" fg:x="500117" fg:w="127"/><text x="94.4872%" y="703.50"></text></g><g><title>__do_munmap (528 samples, 0.10%)</title><rect x="94.1619%" y="741" width="0.0995%" height="15" fill="rgb(213,150,50)" fg:x="499717" fg:w="528"/><text x="94.4119%" y="751.50"></text></g><g><title>__vm_munmap (535 samples, 0.10%)</title><rect x="94.1617%" y="757" width="0.1008%" height="15" fill="rgb(212,24,39)" fg:x="499716" fg:w="535"/><text x="94.4117%" y="767.50"></text></g><g><title>__x64_sys_munmap (538 samples, 0.10%)</title><rect x="94.1617%" y="773" width="0.1014%" height="15" fill="rgb(213,46,39)" fg:x="499716" fg:w="538"/><text x="94.4117%" y="783.50"></text></g><g><title>do_filp_open (73 samples, 0.01%)</title><rect x="94.2640%" y="741" width="0.0138%" height="15" fill="rgb(239,106,12)" fg:x="500259" fg:w="73"/><text x="94.5140%" y="751.50"></text></g><g><title>path_openat (69 samples, 0.01%)</title><rect x="94.2647%" y="725" width="0.0130%" height="15" fill="rgb(249,229,21)" fg:x="500263" fg:w="69"/><text x="94.5147%" y="735.50"></text></g><g><title>__x64_sys_open (78 samples, 0.01%)</title><rect x="94.2634%" y="773" width="0.0147%" height="15" fill="rgb(212,158,3)" fg:x="500256" fg:w="78"/><text x="94.5134%" y="783.50"></text></g><g><title>do_sys_openat2 (77 samples, 0.01%)</title><rect x="94.2636%" y="757" width="0.0145%" height="15" fill="rgb(253,26,48)" fg:x="500257" fg:w="77"/><text x="94.5136%" y="767.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="94.3032%" y="725" width="0.0109%" height="15" fill="rgb(238,178,20)" fg:x="500467" fg:w="58"/><text x="94.5532%" y="735.50"></text></g><g><title>__alloc_fd (169 samples, 0.03%)</title><rect x="94.2896%" y="741" width="0.0318%" height="15" fill="rgb(208,86,15)" fg:x="500395" fg:w="169"/><text x="94.5396%" y="751.50"></text></g><g><title>build_open_flags (60 samples, 0.01%)</title><rect x="94.3290%" y="741" width="0.0113%" height="15" fill="rgb(239,42,53)" fg:x="500604" fg:w="60"/><text x="94.5790%" y="751.50"></text></g><g><title>___slab_alloc (164 samples, 0.03%)</title><rect x="94.4243%" y="645" width="0.0309%" height="15" fill="rgb(245,226,8)" fg:x="501110" fg:w="164"/><text x="94.6743%" y="655.50"></text></g><g><title>__slab_alloc (173 samples, 0.03%)</title><rect x="94.4228%" y="661" width="0.0326%" height="15" fill="rgb(216,176,32)" fg:x="501102" fg:w="173"/><text x="94.6728%" y="671.50"></text></g><g><title>__mod_memcg_lruvec_state (69 samples, 0.01%)</title><rect x="94.5114%" y="645" width="0.0130%" height="15" fill="rgb(231,186,21)" fg:x="501572" fg:w="69"/><text x="94.7614%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (384 samples, 0.07%)</title><rect x="94.4556%" y="661" width="0.0724%" height="15" fill="rgb(205,95,49)" fg:x="501276" fg:w="384"/><text x="94.7056%" y="671.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="94.5282%" y="661" width="0.0115%" height="15" fill="rgb(217,145,8)" fg:x="501661" fg:w="61"/><text x="94.7782%" y="671.50"></text></g><g><title>get_obj_cgroup_from_current (178 samples, 0.03%)</title><rect x="94.5500%" y="645" width="0.0335%" height="15" fill="rgb(239,144,48)" fg:x="501777" fg:w="178"/><text x="94.8000%" y="655.50"></text></g><g><title>obj_cgroup_charge (128 samples, 0.02%)</title><rect x="94.5836%" y="645" width="0.0241%" height="15" fill="rgb(214,189,23)" fg:x="501955" fg:w="128"/><text x="94.8336%" y="655.50"></text></g><g><title>kmem_cache_alloc (1,139 samples, 0.21%)</title><rect x="94.3933%" y="677" width="0.2146%" height="15" fill="rgb(229,157,17)" fg:x="500945" fg:w="1139"/><text x="94.6433%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (361 samples, 0.07%)</title><rect x="94.5399%" y="661" width="0.0680%" height="15" fill="rgb(230,5,48)" fg:x="501723" fg:w="361"/><text x="94.7899%" y="671.50"></text></g><g><title>apparmor_file_alloc_security (143 samples, 0.03%)</title><rect x="94.6122%" y="661" width="0.0269%" height="15" fill="rgb(224,156,48)" fg:x="502107" fg:w="143"/><text x="94.8622%" y="671.50"></text></g><g><title>memset_erms (58 samples, 0.01%)</title><rect x="94.6569%" y="645" width="0.0109%" height="15" fill="rgb(223,14,29)" fg:x="502344" fg:w="58"/><text x="94.9069%" y="655.50"></text></g><g><title>__alloc_file (1,591 samples, 0.30%)</title><rect x="94.3735%" y="693" width="0.2998%" height="15" fill="rgb(229,96,36)" fg:x="500840" fg:w="1591"/><text x="94.6235%" y="703.50"></text></g><g><title>security_file_alloc (347 samples, 0.07%)</title><rect x="94.6079%" y="677" width="0.0654%" height="15" fill="rgb(231,102,53)" fg:x="502084" fg:w="347"/><text x="94.8579%" y="687.50"></text></g><g><title>kmem_cache_alloc (181 samples, 0.03%)</title><rect x="94.6392%" y="661" width="0.0341%" height="15" fill="rgb(210,77,38)" fg:x="502250" fg:w="181"/><text x="94.8892%" y="671.50"></text></g><g><title>alloc_empty_file (1,641 samples, 0.31%)</title><rect x="94.3671%" y="709" width="0.3092%" height="15" fill="rgb(235,131,6)" fg:x="500806" fg:w="1641"/><text x="94.6171%" y="719.50"></text></g><g><title>__legitimize_mnt (73 samples, 0.01%)</title><rect x="94.6836%" y="661" width="0.0138%" height="15" fill="rgb(252,55,38)" fg:x="502486" fg:w="73"/><text x="94.9336%" y="671.50"></text></g><g><title>__legitimize_path (169 samples, 0.03%)</title><rect x="94.6802%" y="677" width="0.0318%" height="15" fill="rgb(246,38,14)" fg:x="502468" fg:w="169"/><text x="94.9302%" y="687.50"></text></g><g><title>lockref_get_not_dead (78 samples, 0.01%)</title><rect x="94.6974%" y="661" width="0.0147%" height="15" fill="rgb(242,27,5)" fg:x="502559" fg:w="78"/><text x="94.9474%" y="671.50"></text></g><g><title>complete_walk (204 samples, 0.04%)</title><rect x="94.6763%" y="709" width="0.0384%" height="15" fill="rgb(228,65,35)" fg:x="502447" fg:w="204"/><text x="94.9263%" y="719.50"></text></g><g><title>try_to_unlazy (194 samples, 0.04%)</title><rect x="94.6782%" y="693" width="0.0366%" height="15" fill="rgb(245,93,11)" fg:x="502457" fg:w="194"/><text x="94.9282%" y="703.50"></text></g><g><title>errseq_sample (84 samples, 0.02%)</title><rect x="94.7620%" y="693" width="0.0158%" height="15" fill="rgb(213,1,31)" fg:x="502902" fg:w="84"/><text x="95.0120%" y="703.50"></text></g><g><title>lockref_get (75 samples, 0.01%)</title><rect x="94.7818%" y="693" width="0.0141%" height="15" fill="rgb(237,205,14)" fg:x="503007" fg:w="75"/><text x="95.0318%" y="703.50"></text></g><g><title>apparmor_file_open (131 samples, 0.02%)</title><rect x="94.8040%" y="677" width="0.0247%" height="15" fill="rgb(232,118,45)" fg:x="503125" fg:w="131"/><text x="95.0540%" y="687.50"></text></g><g><title>__srcu_read_lock (72 samples, 0.01%)</title><rect x="94.8453%" y="661" width="0.0136%" height="15" fill="rgb(218,5,6)" fg:x="503344" fg:w="72"/><text x="95.0953%" y="671.50"></text></g><g><title>__srcu_read_unlock (63 samples, 0.01%)</title><rect x="94.8589%" y="661" width="0.0119%" height="15" fill="rgb(251,87,51)" fg:x="503416" fg:w="63"/><text x="95.1089%" y="671.50"></text></g><g><title>tomoyo_check_open_permission (297 samples, 0.06%)</title><rect x="94.8289%" y="677" width="0.0560%" height="15" fill="rgb(207,225,20)" fg:x="503257" fg:w="297"/><text x="95.0789%" y="687.50"></text></g><g><title>security_file_open (467 samples, 0.09%)</title><rect x="94.7988%" y="693" width="0.0880%" height="15" fill="rgb(222,78,54)" fg:x="503097" fg:w="467"/><text x="95.0488%" y="703.50"></text></g><g><title>do_dentry_open (914 samples, 0.17%)</title><rect x="94.7151%" y="709" width="0.1722%" height="15" fill="rgb(232,85,16)" fg:x="502653" fg:w="914"/><text x="94.9651%" y="719.50"></text></g><g><title>inode_permission.part.0 (233 samples, 0.04%)</title><rect x="94.9463%" y="693" width="0.0439%" height="15" fill="rgb(244,25,33)" fg:x="503880" fg:w="233"/><text x="95.1963%" y="703.50"></text></g><g><title>generic_permission (84 samples, 0.02%)</title><rect x="94.9744%" y="677" width="0.0158%" height="15" fill="rgb(233,24,36)" fg:x="504029" fg:w="84"/><text x="95.2244%" y="687.50"></text></g><g><title>lookup_fast (378 samples, 0.07%)</title><rect x="95.0100%" y="677" width="0.0712%" height="15" fill="rgb(253,49,54)" fg:x="504218" fg:w="378"/><text x="95.2600%" y="687.50"></text></g><g><title>__d_lookup_rcu (300 samples, 0.06%)</title><rect x="95.0247%" y="661" width="0.0565%" height="15" fill="rgb(245,12,22)" fg:x="504296" fg:w="300"/><text x="95.2747%" y="671.50"></text></g><g><title>link_path_walk.part.0 (1,094 samples, 0.21%)</title><rect x="94.8920%" y="709" width="0.2061%" height="15" fill="rgb(253,141,28)" fg:x="503592" fg:w="1094"/><text x="95.1420%" y="719.50"></text></g><g><title>walk_component (536 samples, 0.10%)</title><rect x="94.9972%" y="693" width="0.1010%" height="15" fill="rgb(225,207,27)" fg:x="504150" fg:w="536"/><text x="95.2472%" y="703.50"></text></g><g><title>step_into (90 samples, 0.02%)</title><rect x="95.0812%" y="677" width="0.0170%" height="15" fill="rgb(220,84,2)" fg:x="504596" fg:w="90"/><text x="95.3312%" y="687.50"></text></g><g><title>lookup_fast (586 samples, 0.11%)</title><rect x="95.0982%" y="709" width="0.1104%" height="15" fill="rgb(224,37,37)" fg:x="504686" fg:w="586"/><text x="95.3482%" y="719.50"></text></g><g><title>__d_lookup_rcu (557 samples, 0.10%)</title><rect x="95.1036%" y="693" width="0.1050%" height="15" fill="rgb(220,143,18)" fg:x="504715" fg:w="557"/><text x="95.3536%" y="703.50"></text></g><g><title>inode_permission.part.0 (157 samples, 0.03%)</title><rect x="95.2344%" y="693" width="0.0296%" height="15" fill="rgb(210,88,33)" fg:x="505409" fg:w="157"/><text x="95.4844%" y="703.50"></text></g><g><title>may_open (305 samples, 0.06%)</title><rect x="95.2086%" y="709" width="0.0575%" height="15" fill="rgb(219,87,51)" fg:x="505272" fg:w="305"/><text x="95.4586%" y="719.50"></text></g><g><title>__fget_light (140 samples, 0.03%)</title><rect x="95.2762%" y="693" width="0.0264%" height="15" fill="rgb(211,7,35)" fg:x="505631" fg:w="140"/><text x="95.5262%" y="703.50"></text></g><g><title>__fget_files (130 samples, 0.02%)</title><rect x="95.2781%" y="677" width="0.0245%" height="15" fill="rgb(232,77,2)" fg:x="505641" fg:w="130"/><text x="95.5281%" y="687.50"></text></g><g><title>path_init (256 samples, 0.05%)</title><rect x="95.2661%" y="709" width="0.0482%" height="15" fill="rgb(249,94,25)" fg:x="505577" fg:w="256"/><text x="95.5161%" y="719.50"></text></g><g><title>fput_many (61 samples, 0.01%)</title><rect x="95.3028%" y="693" width="0.0115%" height="15" fill="rgb(215,112,2)" fg:x="505772" fg:w="61"/><text x="95.5528%" y="703.50"></text></g><g><title>dput (94 samples, 0.02%)</title><rect x="95.3232%" y="693" width="0.0177%" height="15" fill="rgb(226,115,48)" fg:x="505880" fg:w="94"/><text x="95.5732%" y="703.50"></text></g><g><title>lockref_put_or_lock (61 samples, 0.01%)</title><rect x="95.3294%" y="677" width="0.0115%" height="15" fill="rgb(249,196,10)" fg:x="505913" fg:w="61"/><text x="95.5794%" y="687.50"></text></g><g><title>terminate_walk (132 samples, 0.02%)</title><rect x="95.3200%" y="709" width="0.0249%" height="15" fill="rgb(237,109,14)" fg:x="505863" fg:w="132"/><text x="95.5700%" y="719.50"></text></g><g><title>do_filp_open (5,340 samples, 1.01%)</title><rect x="94.3403%" y="741" width="1.0062%" height="15" fill="rgb(217,103,53)" fg:x="500664" fg:w="5340"/><text x="94.5903%" y="751.50"></text></g><g><title>path_openat (5,283 samples, 1.00%)</title><rect x="94.3510%" y="725" width="0.9955%" height="15" fill="rgb(244,137,9)" fg:x="500721" fg:w="5283"/><text x="94.6010%" y="735.50"></text></g><g><title>memset_erms (508 samples, 0.10%)</title><rect x="95.3921%" y="709" width="0.0957%" height="15" fill="rgb(227,201,3)" fg:x="506246" fg:w="508"/><text x="95.6421%" y="719.50"></text></g><g><title>kmem_cache_alloc (709 samples, 0.13%)</title><rect x="95.3652%" y="725" width="0.1336%" height="15" fill="rgb(243,94,6)" fg:x="506103" fg:w="709"/><text x="95.6152%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (58 samples, 0.01%)</title><rect x="95.4878%" y="709" width="0.0109%" height="15" fill="rgb(235,118,5)" fg:x="506754" fg:w="58"/><text x="95.7378%" y="719.50"></text></g><g><title>__check_heap_object (87 samples, 0.02%)</title><rect x="95.5561%" y="693" width="0.0164%" height="15" fill="rgb(247,10,30)" fg:x="507116" fg:w="87"/><text x="95.8061%" y="703.50"></text></g><g><title>__virt_addr_valid (122 samples, 0.02%)</title><rect x="95.5725%" y="693" width="0.0230%" height="15" fill="rgb(205,26,28)" fg:x="507203" fg:w="122"/><text x="95.8225%" y="703.50"></text></g><g><title>getname_flags.part.0 (1,272 samples, 0.24%)</title><rect x="95.3569%" y="741" width="0.2397%" height="15" fill="rgb(206,99,35)" fg:x="506059" fg:w="1272"/><text x="95.6069%" y="751.50"></text></g><g><title>strncpy_from_user (519 samples, 0.10%)</title><rect x="95.4988%" y="725" width="0.0978%" height="15" fill="rgb(238,130,40)" fg:x="506812" fg:w="519"/><text x="95.7488%" y="735.50"></text></g><g><title>__check_object_size (256 samples, 0.05%)</title><rect x="95.5483%" y="709" width="0.0482%" height="15" fill="rgb(224,126,31)" fg:x="507075" fg:w="256"/><text x="95.7983%" y="719.50"></text></g><g><title>kmem_cache_free (132 samples, 0.02%)</title><rect x="95.5966%" y="741" width="0.0249%" height="15" fill="rgb(254,105,17)" fg:x="507331" fg:w="132"/><text x="95.8466%" y="751.50"></text></g><g><title>__x64_sys_openat (7,137 samples, 1.34%)</title><rect x="94.2781%" y="773" width="1.3448%" height="15" fill="rgb(216,87,36)" fg:x="500334" fg:w="7137"/><text x="94.5281%" y="783.50"></text></g><g><title>do_sys_openat2 (7,108 samples, 1.34%)</title><rect x="94.2836%" y="757" width="1.3394%" height="15" fill="rgb(240,21,12)" fg:x="500363" fg:w="7108"/><text x="94.5336%" y="767.50"></text></g><g><title>__fget_light (669 samples, 0.13%)</title><rect x="95.7424%" y="741" width="0.1261%" height="15" fill="rgb(245,192,34)" fg:x="508105" fg:w="669"/><text x="95.9924%" y="751.50"></text></g><g><title>__fget_files (616 samples, 0.12%)</title><rect x="95.7524%" y="725" width="0.1161%" height="15" fill="rgb(226,100,49)" fg:x="508158" fg:w="616"/><text x="96.0024%" y="735.50"></text></g><g><title>_cond_resched (87 samples, 0.02%)</title><rect x="95.9229%" y="725" width="0.0164%" height="15" fill="rgb(245,188,27)" fg:x="509063" fg:w="87"/><text x="96.1729%" y="735.50"></text></g><g><title>__fdget_pos (1,271 samples, 0.24%)</title><rect x="95.7011%" y="757" width="0.2395%" height="15" fill="rgb(212,170,8)" fg:x="507886" fg:w="1271"/><text x="95.9511%" y="767.50"></text></g><g><title>mutex_lock (383 samples, 0.07%)</title><rect x="95.8685%" y="741" width="0.0722%" height="15" fill="rgb(217,113,29)" fg:x="508774" fg:w="383"/><text x="96.1185%" y="751.50"></text></g><g><title>fput_many (284 samples, 0.05%)</title><rect x="95.9425%" y="757" width="0.0535%" height="15" fill="rgb(237,30,3)" fg:x="509167" fg:w="284"/><text x="96.1925%" y="767.50"></text></g><g><title>mutex_unlock (359 samples, 0.07%)</title><rect x="95.9960%" y="757" width="0.0676%" height="15" fill="rgb(227,19,28)" fg:x="509451" fg:w="359"/><text x="96.2460%" y="767.50"></text></g><g><title>__fsnotify_parent (451 samples, 0.08%)</title><rect x="96.1658%" y="741" width="0.0850%" height="15" fill="rgb(239,172,45)" fg:x="510352" fg:w="451"/><text x="96.4158%" y="751.50"></text></g><g><title>btrfs_file_read_iter (97 samples, 0.02%)</title><rect x="96.3168%" y="725" width="0.0183%" height="15" fill="rgb(254,55,39)" fg:x="511153" fg:w="97"/><text x="96.5668%" y="735.50"></text></g><g><title>_cond_resched (90 samples, 0.02%)</title><rect x="96.5448%" y="709" width="0.0170%" height="15" fill="rgb(249,208,12)" fg:x="512363" fg:w="90"/><text x="96.7948%" y="719.50"></text></g><g><title>handle_mm_fault (60 samples, 0.01%)</title><rect x="97.3561%" y="629" width="0.0113%" height="15" fill="rgb(240,52,13)" fg:x="516669" fg:w="60"/><text x="97.6061%" y="639.50"></text></g><g><title>asm_exc_page_fault (186 samples, 0.04%)</title><rect x="97.3326%" y="677" width="0.0350%" height="15" fill="rgb(252,149,13)" fg:x="516544" fg:w="186"/><text x="97.5826%" y="687.50"></text></g><g><title>exc_page_fault (65 samples, 0.01%)</title><rect x="97.3554%" y="661" width="0.0122%" height="15" fill="rgb(232,81,48)" fg:x="516665" fg:w="65"/><text x="97.6054%" y="671.50"></text></g><g><title>do_user_addr_fault (64 samples, 0.01%)</title><rect x="97.3556%" y="645" width="0.0121%" height="15" fill="rgb(222,144,2)" fg:x="516666" fg:w="64"/><text x="97.6056%" y="655.50"></text></g><g><title>copy_user_enhanced_fast_string (3,755 samples, 0.71%)</title><rect x="96.6631%" y="693" width="0.7076%" height="15" fill="rgb(216,81,32)" fg:x="512991" fg:w="3755"/><text x="96.9131%" y="703.50"></text></g><g><title>copy_page_to_iter (4,323 samples, 0.81%)</title><rect x="96.5627%" y="709" width="0.8146%" height="15" fill="rgb(244,78,51)" fg:x="512458" fg:w="4323"/><text x="96.8127%" y="719.50"></text></g><g><title>pagecache_get_page (1,758 samples, 0.33%)</title><rect x="97.3852%" y="709" width="0.3313%" height="15" fill="rgb(217,66,21)" fg:x="516823" fg:w="1758"/><text x="97.6352%" y="719.50"></text></g><g><title>find_get_entry (1,508 samples, 0.28%)</title><rect x="97.4323%" y="693" width="0.2842%" height="15" fill="rgb(247,101,42)" fg:x="517073" fg:w="1508"/><text x="97.6823%" y="703.50"></text></g><g><title>xas_load (383 samples, 0.07%)</title><rect x="97.6442%" y="677" width="0.0722%" height="15" fill="rgb(227,81,39)" fg:x="518198" fg:w="383"/><text x="97.8942%" y="687.50"></text></g><g><title>xas_start (230 samples, 0.04%)</title><rect x="97.6731%" y="661" width="0.0433%" height="15" fill="rgb(220,223,44)" fg:x="518351" fg:w="230"/><text x="97.9231%" y="671.50"></text></g><g><title>atime_needs_update (466 samples, 0.09%)</title><rect x="97.7360%" y="693" width="0.0878%" height="15" fill="rgb(205,218,2)" fg:x="518685" fg:w="466"/><text x="97.9860%" y="703.50"></text></g><g><title>current_time (267 samples, 0.05%)</title><rect x="97.7735%" y="677" width="0.0503%" height="15" fill="rgb(212,207,28)" fg:x="518884" fg:w="267"/><text x="98.0235%" y="687.50"></text></g><g><title>ktime_get_coarse_real_ts64 (77 samples, 0.01%)</title><rect x="97.8093%" y="661" width="0.0145%" height="15" fill="rgb(224,12,41)" fg:x="519074" fg:w="77"/><text x="98.0593%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (93 samples, 0.02%)</title><rect x="97.8297%" y="661" width="0.0175%" height="15" fill="rgb(216,118,12)" fg:x="519182" fg:w="93"/><text x="98.0797%" y="671.50"></text></g><g><title>btrfs_update_inode (110 samples, 0.02%)</title><rect x="97.8293%" y="677" width="0.0207%" height="15" fill="rgb(252,97,46)" fg:x="519180" fg:w="110"/><text x="98.0793%" y="687.50"></text></g><g><title>btrfs_dirty_inode (167 samples, 0.03%)</title><rect x="97.8238%" y="693" width="0.0315%" height="15" fill="rgb(244,206,19)" fg:x="519151" fg:w="167"/><text x="98.0738%" y="703.50"></text></g><g><title>generic_file_buffered_read (8,069 samples, 1.52%)</title><rect x="96.3350%" y="725" width="1.5204%" height="15" fill="rgb(231,84,31)" fg:x="511250" fg:w="8069"/><text x="96.5850%" y="735.50"></text></g><g><title>touch_atime (738 samples, 0.14%)</title><rect x="97.7164%" y="709" width="0.1391%" height="15" fill="rgb(244,133,0)" fg:x="518581" fg:w="738"/><text x="97.9664%" y="719.50"></text></g><g><title>new_sync_read (8,562 samples, 1.61%)</title><rect x="96.2525%" y="741" width="1.6133%" height="15" fill="rgb(223,15,50)" fg:x="510812" fg:w="8562"/><text x="96.5025%" y="751.50"></text></g><g><title>iov_iter_init (55 samples, 0.01%)</title><rect x="97.8555%" y="725" width="0.0104%" height="15" fill="rgb(250,118,49)" fg:x="519319" fg:w="55"/><text x="98.1055%" y="735.50"></text></g><g><title>rw_verify_area (100 samples, 0.02%)</title><rect x="97.8658%" y="741" width="0.0188%" height="15" fill="rgb(248,25,38)" fg:x="519374" fg:w="100"/><text x="98.1158%" y="751.50"></text></g><g><title>aa_file_perm (153 samples, 0.03%)</title><rect x="97.9478%" y="709" width="0.0288%" height="15" fill="rgb(215,70,14)" fg:x="519809" fg:w="153"/><text x="98.1978%" y="719.50"></text></g><g><title>security_file_permission (490 samples, 0.09%)</title><rect x="97.8847%" y="741" width="0.0923%" height="15" fill="rgb(215,28,15)" fg:x="519474" fg:w="490"/><text x="98.1347%" y="751.50"></text></g><g><title>apparmor_file_permission (318 samples, 0.06%)</title><rect x="97.9171%" y="725" width="0.0599%" height="15" fill="rgb(243,6,28)" fg:x="519646" fg:w="318"/><text x="98.1671%" y="735.50"></text></g><g><title>ksys_read (12,287 samples, 2.32%)</title><rect x="95.6621%" y="773" width="2.3152%" height="15" fill="rgb(222,130,1)" fg:x="507679" fg:w="12287"/><text x="95.9121%" y="783.50">k..</text></g><g><title>vfs_read (10,156 samples, 1.91%)</title><rect x="96.0637%" y="757" width="1.9137%" height="15" fill="rgb(236,166,44)" fg:x="509810" fg:w="10156"/><text x="96.3137%" y="767.50">v..</text></g><g><title>syscall_enter_from_user_mode (126 samples, 0.02%)</title><rect x="97.9783%" y="773" width="0.0237%" height="15" fill="rgb(221,108,14)" fg:x="519971" fg:w="126"/><text x="98.2283%" y="783.50"></text></g><g><title>perf_iterate_sb (60 samples, 0.01%)</title><rect x="98.0132%" y="709" width="0.0113%" height="15" fill="rgb(252,3,45)" fg:x="520156" fg:w="60"/><text x="98.2632%" y="719.50"></text></g><g><title>perf_event_mmap (72 samples, 0.01%)</title><rect x="98.0111%" y="725" width="0.0136%" height="15" fill="rgb(237,68,30)" fg:x="520145" fg:w="72"/><text x="98.2611%" y="735.50"></text></g><g><title>vma_merge (57 samples, 0.01%)</title><rect x="98.0275%" y="725" width="0.0107%" height="15" fill="rgb(211,79,22)" fg:x="520232" fg:w="57"/><text x="98.2775%" y="735.50"></text></g><g><title>do_mmap (191 samples, 0.04%)</title><rect x="98.0026%" y="757" width="0.0360%" height="15" fill="rgb(252,185,21)" fg:x="520100" fg:w="191"/><text x="98.2526%" y="767.50"></text></g><g><title>mmap_region (165 samples, 0.03%)</title><rect x="98.0075%" y="741" width="0.0311%" height="15" fill="rgb(225,189,26)" fg:x="520126" fg:w="165"/><text x="98.2575%" y="751.50"></text></g><g><title>do_syscall_64 (38,933 samples, 7.34%)</title><rect x="90.7155%" y="789" width="7.3362%" height="15" fill="rgb(241,30,40)" fg:x="481427" fg:w="38933"/><text x="90.9655%" y="799.50">do_syscall..</text></g><g><title>vm_mmap_pgoff (263 samples, 0.05%)</title><rect x="98.0021%" y="773" width="0.0496%" height="15" fill="rgb(235,215,44)" fg:x="520097" fg:w="263"/><text x="98.2521%" y="783.50"></text></g><g><title>do_group_exit (107 samples, 0.02%)</title><rect x="98.1274%" y="725" width="0.0202%" height="15" fill="rgb(205,8,29)" fg:x="520762" fg:w="107"/><text x="98.3774%" y="735.50"></text></g><g><title>do_exit (107 samples, 0.02%)</title><rect x="98.1274%" y="709" width="0.0202%" height="15" fill="rgb(241,137,42)" fg:x="520762" fg:w="107"/><text x="98.3774%" y="719.50"></text></g><g><title>arch_do_signal (151 samples, 0.03%)</title><rect x="98.1200%" y="757" width="0.0285%" height="15" fill="rgb(237,155,2)" fg:x="520723" fg:w="151"/><text x="98.3700%" y="767.50"></text></g><g><title>get_signal (151 samples, 0.03%)</title><rect x="98.1200%" y="741" width="0.0285%" height="15" fill="rgb(245,29,42)" fg:x="520723" fg:w="151"/><text x="98.3700%" y="751.50"></text></g><g><title>fpregs_assert_state_consistent (119 samples, 0.02%)</title><rect x="98.1523%" y="757" width="0.0224%" height="15" fill="rgb(234,101,35)" fg:x="520894" fg:w="119"/><text x="98.4023%" y="767.50"></text></g><g><title>switch_fpu_return (162 samples, 0.03%)</title><rect x="98.1862%" y="757" width="0.0305%" height="15" fill="rgb(228,64,37)" fg:x="521074" fg:w="162"/><text x="98.4362%" y="767.50"></text></g><g><title>copy_kernel_to_fpregs (112 samples, 0.02%)</title><rect x="98.1956%" y="741" width="0.0211%" height="15" fill="rgb(217,214,36)" fg:x="521124" fg:w="112"/><text x="98.4456%" y="751.50"></text></g><g><title>btrfs_release_file (146 samples, 0.03%)</title><rect x="98.2583%" y="725" width="0.0275%" height="15" fill="rgb(243,70,3)" fg:x="521457" fg:w="146"/><text x="98.5083%" y="735.50"></text></g><g><title>lockref_put_or_lock (74 samples, 0.01%)</title><rect x="98.2973%" y="709" width="0.0139%" height="15" fill="rgb(253,158,52)" fg:x="521664" fg:w="74"/><text x="98.5473%" y="719.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="98.3011%" y="693" width="0.0102%" height="15" fill="rgb(234,111,54)" fg:x="521684" fg:w="54"/><text x="98.5511%" y="703.50"></text></g><g><title>dput (140 samples, 0.03%)</title><rect x="98.2858%" y="725" width="0.0264%" height="15" fill="rgb(217,70,32)" fg:x="521603" fg:w="140"/><text x="98.5358%" y="735.50"></text></g><g><title>kmem_cache_free (144 samples, 0.03%)</title><rect x="98.3128%" y="725" width="0.0271%" height="15" fill="rgb(234,18,33)" fg:x="521746" fg:w="144"/><text x="98.5628%" y="735.50"></text></g><g><title>__fput (715 samples, 0.13%)</title><rect x="98.2310%" y="741" width="0.1347%" height="15" fill="rgb(234,12,49)" fg:x="521312" fg:w="715"/><text x="98.4810%" y="751.50"></text></g><g><title>security_file_free (65 samples, 0.01%)</title><rect x="98.3535%" y="725" width="0.0122%" height="15" fill="rgb(236,10,21)" fg:x="521962" fg:w="65"/><text x="98.6035%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41,222 samples, 7.77%)</title><rect x="90.6518%" y="805" width="7.7675%" height="15" fill="rgb(248,182,45)" fg:x="481089" fg:w="41222"/><text x="90.9018%" y="815.50">entry_SYSCA..</text></g><g><title>syscall_exit_to_user_mode (1,951 samples, 0.37%)</title><rect x="98.0516%" y="789" width="0.3676%" height="15" fill="rgb(217,95,36)" fg:x="520360" fg:w="1951"/><text x="98.3016%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (1,817 samples, 0.34%)</title><rect x="98.0769%" y="773" width="0.3424%" height="15" fill="rgb(212,110,31)" fg:x="520494" fg:w="1817"/><text x="98.3269%" y="783.50"></text></g><g><title>task_work_run (1,075 samples, 0.20%)</title><rect x="98.2167%" y="757" width="0.2026%" height="15" fill="rgb(206,32,53)" fg:x="521236" fg:w="1075"/><text x="98.4667%" y="767.50"></text></g><g><title>call_rcu (230 samples, 0.04%)</title><rect x="98.3759%" y="741" width="0.0433%" height="15" fill="rgb(246,141,37)" fg:x="522081" fg:w="230"/><text x="98.6259%" y="751.50"></text></g><g><title>rcu_segcblist_enqueue (133 samples, 0.03%)</title><rect x="98.3942%" y="725" width="0.0251%" height="15" fill="rgb(219,16,7)" fg:x="522178" fg:w="133"/><text x="98.6442%" y="735.50"></text></g><g><title>error_entry (209 samples, 0.04%)</title><rect x="98.4193%" y="805" width="0.0394%" height="15" fill="rgb(230,205,45)" fg:x="522311" fg:w="209"/><text x="98.6693%" y="815.50"></text></g><g><title>sync_regs (184 samples, 0.03%)</title><rect x="98.4240%" y="789" width="0.0347%" height="15" fill="rgb(231,43,49)" fg:x="522336" fg:w="184"/><text x="98.6740%" y="799.50"></text></g><g><title>calculate_sigpending (56 samples, 0.01%)</title><rect x="98.4650%" y="789" width="0.0106%" height="15" fill="rgb(212,106,34)" fg:x="522554" fg:w="56"/><text x="98.7150%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (5,004 samples, 0.94%)</title><rect x="98.5506%" y="757" width="0.9429%" height="15" fill="rgb(206,83,17)" fg:x="523008" fg:w="5004"/><text x="98.8006%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,932 samples, 0.93%)</title><rect x="98.5642%" y="741" width="0.9293%" height="15" fill="rgb(244,154,49)" fg:x="523080" fg:w="4932"/><text x="98.8142%" y="751.50"></text></g><g><title>native_write_msr (4,920 samples, 0.93%)</title><rect x="98.5664%" y="725" width="0.9271%" height="15" fill="rgb(244,149,49)" fg:x="523092" fg:w="4920"/><text x="98.8164%" y="735.50"></text></g><g><title>irq_work_run (54 samples, 0.01%)</title><rect x="99.5039%" y="693" width="0.0102%" height="15" fill="rgb(227,134,18)" fg:x="528067" fg:w="54"/><text x="99.7539%" y="703.50"></text></g><g><title>asm_call_sysvec_on_stack (59 samples, 0.01%)</title><rect x="99.5033%" y="725" width="0.0111%" height="15" fill="rgb(237,116,36)" fg:x="528064" fg:w="59"/><text x="99.7533%" y="735.50"></text></g><g><title>__sysvec_irq_work (56 samples, 0.01%)</title><rect x="99.5039%" y="709" width="0.0106%" height="15" fill="rgb(205,129,40)" fg:x="528067" fg:w="56"/><text x="99.7539%" y="719.50"></text></g><g><title>asm_sysvec_irq_work (108 samples, 0.02%)</title><rect x="99.4948%" y="757" width="0.0204%" height="15" fill="rgb(236,178,4)" fg:x="528019" fg:w="108"/><text x="99.7448%" y="767.50"></text></g><g><title>sysvec_irq_work (67 samples, 0.01%)</title><rect x="99.5025%" y="741" width="0.0126%" height="15" fill="rgb(251,76,53)" fg:x="528060" fg:w="67"/><text x="99.7525%" y="751.50"></text></g><g><title>schedule_tail (5,532 samples, 1.04%)</title><rect x="98.4756%" y="789" width="1.0424%" height="15" fill="rgb(242,92,40)" fg:x="522610" fg:w="5532"/><text x="98.7256%" y="799.50"></text></g><g><title>finish_task_switch (5,482 samples, 1.03%)</title><rect x="98.4850%" y="773" width="1.0330%" height="15" fill="rgb(209,45,30)" fg:x="522660" fg:w="5482"/><text x="98.7350%" y="783.50"></text></g><g><title>ret_from_fork (5,646 samples, 1.06%)</title><rect x="98.4649%" y="805" width="1.0639%" height="15" fill="rgb(218,157,36)" fg:x="522553" fg:w="5646"/><text x="98.7149%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (57 samples, 0.01%)</title><rect x="99.5180%" y="789" width="0.0107%" height="15" fill="rgb(222,186,16)" fg:x="528142" fg:w="57"/><text x="99.7680%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (55 samples, 0.01%)</title><rect x="99.5184%" y="773" width="0.0104%" height="15" fill="rgb(254,72,35)" fg:x="528144" fg:w="55"/><text x="99.7684%" y="783.50"></text></g><g><title>switch_fpu_return (54 samples, 0.01%)</title><rect x="99.5186%" y="757" width="0.0102%" height="15" fill="rgb(224,25,35)" fg:x="528145" fg:w="54"/><text x="99.7686%" y="767.50"></text></g><g><title>syscall_return_via_sysret (331 samples, 0.06%)</title><rect x="99.5287%" y="805" width="0.0624%" height="15" fill="rgb(206,135,52)" fg:x="528199" fg:w="331"/><text x="99.7787%" y="815.50"></text></g><g><title>[zig] (77,821 samples, 14.66%)</title><rect x="84.9275%" y="821" width="14.6638%" height="15" fill="rgb(229,174,47)" fg:x="450710" fg:w="77821"/><text x="85.1775%" y="831.50">[zig]</text></g><g><title>asm_exc_page_fault (530 samples, 0.10%)</title><rect x="99.5917%" y="821" width="0.0999%" height="15" fill="rgb(242,184,21)" fg:x="528533" fg:w="530"/><text x="99.8417%" y="831.50"></text></g><g><title>tlb_finish_mmu (54 samples, 0.01%)</title><rect x="99.7290%" y="677" width="0.0102%" height="15" fill="rgb(213,22,45)" fg:x="529262" fg:w="54"/><text x="99.9790%" y="687.50"></text></g><g><title>page_remove_rmap (55 samples, 0.01%)</title><rect x="99.7656%" y="645" width="0.0104%" height="15" fill="rgb(237,81,54)" fg:x="529456" fg:w="55"/><text x="100.0156%" y="655.50"></text></g><g><title>exit_mmap (272 samples, 0.05%)</title><rect x="99.7268%" y="693" width="0.0513%" height="15" fill="rgb(248,177,18)" fg:x="529250" fg:w="272"/><text x="99.9768%" y="703.50"></text></g><g><title>unmap_vmas (206 samples, 0.04%)</title><rect x="99.7392%" y="677" width="0.0388%" height="15" fill="rgb(254,31,16)" fg:x="529316" fg:w="206"/><text x="99.9892%" y="687.50"></text></g><g><title>unmap_page_range (206 samples, 0.04%)</title><rect x="99.7392%" y="661" width="0.0388%" height="15" fill="rgb(235,20,31)" fg:x="529316" fg:w="206"/><text x="99.9892%" y="671.50"></text></g><g><title>mmput (276 samples, 0.05%)</title><rect x="99.7262%" y="709" width="0.0520%" height="15" fill="rgb(240,56,43)" fg:x="529247" fg:w="276"/><text x="99.9762%" y="719.50"></text></g><g><title>begin_new_exec (283 samples, 0.05%)</title><rect x="99.7251%" y="725" width="0.0533%" height="15" fill="rgb(237,197,51)" fg:x="529241" fg:w="283"/><text x="99.9751%" y="735.50"></text></g><g><title>load_elf_binary (327 samples, 0.06%)</title><rect x="99.7232%" y="741" width="0.0616%" height="15" fill="rgb(241,162,44)" fg:x="529231" fg:w="327"/><text x="99.9732%" y="751.50"></text></g><g><title>bprm_execve (328 samples, 0.06%)</title><rect x="99.7232%" y="757" width="0.0618%" height="15" fill="rgb(224,23,20)" fg:x="529231" fg:w="328"/><text x="99.9732%" y="767.50"></text></g><g><title>__x64_sys_execve (331 samples, 0.06%)</title><rect x="99.7228%" y="789" width="0.0624%" height="15" fill="rgb(250,109,34)" fg:x="529229" fg:w="331"/><text x="99.9728%" y="799.50"></text></g><g><title>do_execveat_common (331 samples, 0.06%)</title><rect x="99.7228%" y="773" width="0.0624%" height="15" fill="rgb(214,175,50)" fg:x="529229" fg:w="331"/><text x="99.9728%" y="783.50"></text></g><g><title>tlb_finish_mmu (83 samples, 0.02%)</title><rect x="99.7899%" y="709" width="0.0156%" height="15" fill="rgb(213,182,5)" fg:x="529585" fg:w="83"/><text x="100.0399%" y="719.50"></text></g><g><title>release_pages (60 samples, 0.01%)</title><rect x="99.7942%" y="693" width="0.0113%" height="15" fill="rgb(209,199,19)" fg:x="529608" fg:w="60"/><text x="100.0442%" y="703.50"></text></g><g><title>page_remove_rmap (101 samples, 0.02%)</title><rect x="99.8451%" y="677" width="0.0190%" height="15" fill="rgb(236,224,42)" fg:x="529878" fg:w="101"/><text x="100.0951%" y="687.50"></text></g><g><title>unmap_page_range (342 samples, 0.06%)</title><rect x="99.8057%" y="693" width="0.0644%" height="15" fill="rgb(246,226,29)" fg:x="529669" fg:w="342"/><text x="100.0557%" y="703.50"></text></g><g><title>mmput (433 samples, 0.08%)</title><rect x="99.7888%" y="741" width="0.0816%" height="15" fill="rgb(227,223,11)" fg:x="529579" fg:w="433"/><text x="100.0388%" y="751.50"></text></g><g><title>exit_mmap (432 samples, 0.08%)</title><rect x="99.7890%" y="725" width="0.0814%" height="15" fill="rgb(219,7,51)" fg:x="529580" fg:w="432"/><text x="100.0390%" y="735.50"></text></g><g><title>unmap_vmas (344 samples, 0.06%)</title><rect x="99.8055%" y="709" width="0.0648%" height="15" fill="rgb(245,167,10)" fg:x="529668" fg:w="344"/><text x="100.0555%" y="719.50"></text></g><g><title>__x64_sys_exit_group (452 samples, 0.09%)</title><rect x="99.7856%" y="789" width="0.0852%" height="15" fill="rgb(237,224,16)" fg:x="529562" fg:w="452"/><text x="100.0356%" y="799.50"></text></g><g><title>do_group_exit (452 samples, 0.09%)</title><rect x="99.7856%" y="773" width="0.0852%" height="15" fill="rgb(226,132,13)" fg:x="529562" fg:w="452"/><text x="100.0356%" y="783.50"></text></g><g><title>do_exit (452 samples, 0.09%)</title><rect x="99.7856%" y="757" width="0.0852%" height="15" fill="rgb(214,140,3)" fg:x="529562" fg:w="452"/><text x="100.0356%" y="767.50"></text></g><g><title>do_syscall_64 (803 samples, 0.15%)</title><rect x="99.7226%" y="805" width="0.1513%" height="15" fill="rgb(221,177,4)" fg:x="529228" fg:w="803"/><text x="99.9726%" y="815.50"></text></g><g><title>page_remove_rmap (94 samples, 0.02%)</title><rect x="99.9226%" y="645" width="0.0177%" height="15" fill="rgb(238,139,3)" fg:x="530289" fg:w="94"/><text x="100.1726%" y="655.50"></text></g><g><title>mmput (290 samples, 0.05%)</title><rect x="99.8879%" y="709" width="0.0546%" height="15" fill="rgb(216,17,39)" fg:x="530105" fg:w="290"/><text x="100.1379%" y="719.50"></text></g><g><title>exit_mmap (290 samples, 0.05%)</title><rect x="99.8879%" y="693" width="0.0546%" height="15" fill="rgb(238,120,9)" fg:x="530105" fg:w="290"/><text x="100.1379%" y="703.50"></text></g><g><title>unmap_vmas (243 samples, 0.05%)</title><rect x="99.8967%" y="677" width="0.0458%" height="15" fill="rgb(244,92,53)" fg:x="530152" fg:w="243"/><text x="100.1467%" y="687.50"></text></g><g><title>unmap_page_range (243 samples, 0.05%)</title><rect x="99.8967%" y="661" width="0.0458%" height="15" fill="rgb(224,148,33)" fg:x="530152" fg:w="243"/><text x="100.1467%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,352 samples, 0.25%)</title><rect x="99.6919%" y="821" width="0.2548%" height="15" fill="rgb(243,6,36)" fg:x="529065" fg:w="1352"/><text x="99.9419%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (386 samples, 0.07%)</title><rect x="99.8739%" y="805" width="0.0727%" height="15" fill="rgb(230,102,11)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (386 samples, 0.07%)</title><rect x="99.8739%" y="789" width="0.0727%" height="15" fill="rgb(234,148,36)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="799.50"></text></g><g><title>arch_do_signal (386 samples, 0.07%)</title><rect x="99.8739%" y="773" width="0.0727%" height="15" fill="rgb(251,153,25)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="783.50"></text></g><g><title>get_signal (386 samples, 0.07%)</title><rect x="99.8739%" y="757" width="0.0727%" height="15" fill="rgb(215,129,8)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="767.50"></text></g><g><title>do_group_exit (386 samples, 0.07%)</title><rect x="99.8739%" y="741" width="0.0727%" height="15" fill="rgb(224,128,35)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="751.50"></text></g><g><title>do_exit (386 samples, 0.07%)</title><rect x="99.8739%" y="725" width="0.0727%" height="15" fill="rgb(237,56,52)" fg:x="530031" fg:w="386"/><text x="100.1239%" y="735.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (219 samples, 0.04%)</title><rect x="99.9467%" y="821" width="0.0413%" height="15" fill="rgb(234,213,19)" fg:x="530417" fg:w="219"/><text x="100.1967%" y="831.50"></text></g><g><title>all (530,700 samples, 100%)</title><rect x="0.0000%" y="853" width="100.0000%" height="15" fill="rgb(252,82,23)" fg:x="0" fg:w="530700"/><text x="0.2500%" y="863.50"></text></g><g><title>zig (79,990 samples, 15.07%)</title><rect x="84.9275%" y="837" width="15.0725%" height="15" fill="rgb(254,201,21)" fg:x="450710" fg:w="79990"/><text x="85.1775%" y="847.50">zig</text></g></svg></svg> +\ No newline at end of file diff --git a/results/zigcc-hermetic-j8.svg b/results/zigcc-hermetic-j8.svg @@ -0,0 +1,491 @@ +<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="790" onload="init(evt)" viewBox="0 0 1200 790" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css"> +text { font-family: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="790" 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="773.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="773.00"> </text><svg id="frames" x="10" width="1180" total_samples="1538847"><g><title>[anon] (1,330 samples, 0.09%)</title><rect x="0.0135%" y="709" width="0.0864%" height="15" fill="rgb(227,0,7)" fg:x="207" fg:w="1330"/><text x="0.2635%" y="719.50"></text></g><g><title>[perf-934749.map] (168 samples, 0.01%)</title><rect x="0.1003%" y="709" width="0.0109%" height="15" fill="rgb(217,0,24)" fg:x="1543" fg:w="168"/><text x="0.3503%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (206 samples, 0.01%)</title><rect x="0.1419%" y="501" width="0.0134%" height="15" fill="rgb(221,193,54)" fg:x="2184" fg:w="206"/><text x="0.3919%" y="511.50"></text></g><g><title>BlockBegin::iterate_preorder (206 samples, 0.01%)</title><rect x="0.1419%" y="485" width="0.0134%" height="15" fill="rgb(248,212,6)" fg:x="2184" fg:w="206"/><text x="0.3919%" y="495.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (379 samples, 0.02%)</title><rect x="0.1389%" y="517" width="0.0246%" height="15" fill="rgb(208,68,35)" fg:x="2137" fg:w="379"/><text x="0.3889%" y="527.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (164 samples, 0.01%)</title><rect x="0.1723%" y="485" width="0.0107%" height="15" fill="rgb(232,128,0)" fg:x="2652" fg:w="164"/><text x="0.4223%" y="495.50"></text></g><g><title>ciBytecodeStream::get_field (169 samples, 0.01%)</title><rect x="0.1959%" y="437" width="0.0110%" height="15" fill="rgb(207,160,47)" fg:x="3014" fg:w="169"/><text x="0.4459%" y="447.50"></text></g><g><title>GraphBuilder::access_field (220 samples, 0.01%)</title><rect x="0.1933%" y="453" width="0.0143%" height="15" fill="rgb(228,23,34)" fg:x="2975" fg:w="220"/><text x="0.4433%" y="463.50"></text></g><g><title>GraphBuilder::access_field (158 samples, 0.01%)</title><rect x="0.2319%" y="373" width="0.0103%" height="15" fill="rgb(218,30,26)" fg:x="3568" fg:w="158"/><text x="0.4819%" y="383.50"></text></g><g><title>GraphBuilder::try_inline_full (170 samples, 0.01%)</title><rect x="0.2677%" y="181" width="0.0110%" height="15" fill="rgb(220,122,19)" fg:x="4120" fg:w="170"/><text x="0.5177%" y="191.50"></text></g><g><title>GraphBuilder::try_inline (186 samples, 0.01%)</title><rect x="0.2675%" y="197" width="0.0121%" height="15" fill="rgb(250,228,42)" fg:x="4117" fg:w="186"/><text x="0.5175%" y="207.50"></text></g><g><title>GraphBuilder::invoke (249 samples, 0.02%)</title><rect x="0.2668%" y="213" width="0.0162%" height="15" fill="rgb(240,193,28)" fg:x="4106" fg:w="249"/><text x="0.5168%" y="223.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (345 samples, 0.02%)</title><rect x="0.2618%" y="245" width="0.0224%" height="15" fill="rgb(216,20,37)" fg:x="4028" fg:w="345"/><text x="0.5118%" y="255.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (340 samples, 0.02%)</title><rect x="0.2621%" y="229" width="0.0221%" height="15" fill="rgb(206,188,39)" fg:x="4033" fg:w="340"/><text x="0.5121%" y="239.50"></text></g><g><title>GraphBuilder::try_inline_full (447 samples, 0.03%)</title><rect x="0.2608%" y="261" width="0.0290%" height="15" fill="rgb(217,207,13)" fg:x="4013" fg:w="447"/><text x="0.5108%" y="271.50"></text></g><g><title>GraphBuilder::try_inline (490 samples, 0.03%)</title><rect x="0.2606%" y="277" width="0.0318%" height="15" fill="rgb(231,73,38)" fg:x="4010" fg:w="490"/><text x="0.5106%" y="287.50"></text></g><g><title>GraphBuilder::invoke (667 samples, 0.04%)</title><rect x="0.2590%" y="293" width="0.0433%" height="15" fill="rgb(225,20,46)" fg:x="3985" fg:w="667"/><text x="0.5090%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (868 samples, 0.06%)</title><rect x="0.2493%" y="325" width="0.0564%" height="15" fill="rgb(210,31,41)" fg:x="3836" fg:w="868"/><text x="0.4993%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (861 samples, 0.06%)</title><rect x="0.2497%" y="309" width="0.0560%" height="15" fill="rgb(221,200,47)" fg:x="3843" fg:w="861"/><text x="0.4997%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (1,059 samples, 0.07%)</title><rect x="0.2471%" y="341" width="0.0688%" height="15" fill="rgb(226,26,5)" fg:x="3803" fg:w="1059"/><text x="0.4971%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (1,099 samples, 0.07%)</title><rect x="0.2467%" y="357" width="0.0714%" height="15" fill="rgb(249,33,26)" fg:x="3796" fg:w="1099"/><text x="0.4967%" y="367.50"></text></g><g><title>ciBytecodeStream::get_method (200 samples, 0.01%)</title><rect x="0.3203%" y="357" width="0.0130%" height="15" fill="rgb(235,183,28)" fg:x="4929" fg:w="200"/><text x="0.5703%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (188 samples, 0.01%)</title><rect x="0.3211%" y="341" width="0.0122%" height="15" fill="rgb(221,5,38)" fg:x="4941" fg:w="188"/><text x="0.5711%" y="351.50"></text></g><g><title>GraphBuilder::invoke (1,401 samples, 0.09%)</title><rect x="0.2445%" y="373" width="0.0910%" height="15" fill="rgb(247,18,42)" fg:x="3763" fg:w="1401"/><text x="0.4945%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,777 samples, 0.12%)</title><rect x="0.2259%" y="405" width="0.1155%" height="15" fill="rgb(241,131,45)" fg:x="3476" fg:w="1777"/><text x="0.4759%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,763 samples, 0.11%)</title><rect x="0.2268%" y="389" width="0.1146%" height="15" fill="rgb(249,31,29)" fg:x="3490" fg:w="1763"/><text x="0.4768%" y="399.50"></text></g><g><title>GraphBuilder::push_scope (194 samples, 0.01%)</title><rect x="0.3424%" y="405" width="0.0126%" height="15" fill="rgb(225,111,53)" fg:x="5269" fg:w="194"/><text x="0.5924%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (2,247 samples, 0.15%)</title><rect x="0.2208%" y="421" width="0.1460%" height="15" fill="rgb(238,160,17)" fg:x="3398" fg:w="2247"/><text x="0.4708%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (2,269 samples, 0.15%)</title><rect x="0.2198%" y="437" width="0.1474%" height="15" fill="rgb(214,148,48)" fg:x="3383" fg:w="2269"/><text x="0.4698%" y="447.50"></text></g><g><title>ciMethod::ciMethod (177 samples, 0.01%)</title><rect x="0.3832%" y="373" width="0.0115%" height="15" fill="rgb(232,36,49)" fg:x="5897" fg:w="177"/><text x="0.6332%" y="383.50"></text></g><g><title>ciObjectFactory::get_metadata (221 samples, 0.01%)</title><rect x="0.3807%" y="405" width="0.0144%" height="15" fill="rgb(209,103,24)" fg:x="5858" fg:w="221"/><text x="0.6307%" y="415.50"></text></g><g><title>ciObjectFactory::create_new_metadata (196 samples, 0.01%)</title><rect x="0.3823%" y="389" width="0.0127%" height="15" fill="rgb(229,88,8)" fg:x="5883" fg:w="196"/><text x="0.6323%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (360 samples, 0.02%)</title><rect x="0.3721%" y="421" width="0.0234%" height="15" fill="rgb(213,181,19)" fg:x="5726" fg:w="360"/><text x="0.6221%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (391 samples, 0.03%)</title><rect x="0.3702%" y="437" width="0.0254%" height="15" fill="rgb(254,191,54)" fg:x="5697" fg:w="391"/><text x="0.6202%" y="447.50"></text></g><g><title>GraphBuilder::invoke (2,916 samples, 0.19%)</title><rect x="0.2127%" y="453" width="0.1895%" height="15" fill="rgb(241,83,37)" fg:x="3273" fg:w="2916"/><text x="0.4627%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,402 samples, 0.22%)</title><rect x="0.1859%" y="469" width="0.2211%" height="15" fill="rgb(233,36,39)" fg:x="2861" fg:w="3402"/><text x="0.4359%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,450 samples, 0.22%)</title><rect x="0.1836%" y="485" width="0.2242%" height="15" fill="rgb(226,3,54)" fg:x="2826" fg:w="3450"/><text x="0.4336%" y="495.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,809 samples, 0.25%)</title><rect x="0.1638%" y="501" width="0.2475%" height="15" fill="rgb(245,192,40)" fg:x="2520" fg:w="3809"/><text x="0.4138%" y="511.50"></text></g><g><title>IR::IR (3,824 samples, 0.25%)</title><rect x="0.1635%" y="517" width="0.2485%" height="15" fill="rgb(238,167,29)" fg:x="2516" fg:w="3824"/><text x="0.4135%" y="527.50"></text></g><g><title>NullCheckEliminator::iterate_one (160 samples, 0.01%)</title><rect x="0.4277%" y="485" width="0.0104%" height="15" fill="rgb(232,182,51)" fg:x="6581" fg:w="160"/><text x="0.6777%" y="495.50"></text></g><g><title>IR::eliminate_null_checks (190 samples, 0.01%)</title><rect x="0.4262%" y="517" width="0.0123%" height="15" fill="rgb(231,60,39)" fg:x="6559" fg:w="190"/><text x="0.6762%" y="527.50"></text></g><g><title>Optimizer::eliminate_null_checks (190 samples, 0.01%)</title><rect x="0.4262%" y="501" width="0.0123%" height="15" fill="rgb(208,69,12)" fg:x="6559" fg:w="190"/><text x="0.6762%" y="511.50"></text></g><g><title>Compilation::build_hir (4,763 samples, 0.31%)</title><rect x="0.1385%" y="533" width="0.3095%" height="15" fill="rgb(235,93,37)" fg:x="2132" fg:w="4763"/><text x="0.3885%" y="543.50"></text></g><g><title>LIR_Assembler::emit_call (178 samples, 0.01%)</title><rect x="0.4549%" y="501" width="0.0116%" height="15" fill="rgb(213,116,39)" fg:x="7000" fg:w="178"/><text x="0.7049%" y="511.50"></text></g><g><title>LIR_Assembler::emit_op1 (176 samples, 0.01%)</title><rect x="0.4687%" y="501" width="0.0114%" height="15" fill="rgb(222,207,29)" fg:x="7213" fg:w="176"/><text x="0.7187%" y="511.50"></text></g><g><title>LIR_Assembler::emit_code (736 samples, 0.05%)</title><rect x="0.4490%" y="517" width="0.0478%" height="15" fill="rgb(206,96,30)" fg:x="6910" fg:w="736"/><text x="0.6990%" y="527.50"></text></g><g><title>CounterOverflowStub::emit_code (179 samples, 0.01%)</title><rect x="0.5019%" y="501" width="0.0116%" height="15" fill="rgb(218,138,4)" fg:x="7723" fg:w="179"/><text x="0.7519%" y="511.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (375 samples, 0.02%)</title><rect x="0.5013%" y="517" width="0.0244%" height="15" fill="rgb(250,191,14)" fg:x="7714" fg:w="375"/><text x="0.7513%" y="527.50"></text></g><g><title>Compilation::emit_code_body (1,211 samples, 0.08%)</title><rect x="0.4481%" y="533" width="0.0787%" height="15" fill="rgb(239,60,40)" fg:x="6895" fg:w="1211"/><text x="0.6981%" y="543.50"></text></g><g><title>LIRGenerator::move_to_phi (251 samples, 0.02%)</title><rect x="0.5396%" y="469" width="0.0163%" height="15" fill="rgb(206,27,48)" fg:x="8304" fg:w="251"/><text x="0.7896%" y="479.50"></text></g><g><title>PhiResolverState::reset (166 samples, 0.01%)</title><rect x="0.5451%" y="453" width="0.0108%" height="15" fill="rgb(225,35,8)" fg:x="8389" fg:w="166"/><text x="0.7951%" y="463.50"></text></g><g><title>LIRGenerator::do_Goto (280 samples, 0.02%)</title><rect x="0.5387%" y="485" width="0.0182%" height="15" fill="rgb(250,213,24)" fg:x="8289" fg:w="280"/><text x="0.7887%" y="495.50"></text></g><g><title>LIRGenerator::block_do (972 samples, 0.06%)</title><rect x="0.5276%" y="501" width="0.0632%" height="15" fill="rgb(247,123,22)" fg:x="8119" fg:w="972"/><text x="0.7776%" y="511.50"></text></g><g><title>BlockList::iterate_forward (981 samples, 0.06%)</title><rect x="0.5271%" y="517" width="0.0637%" height="15" fill="rgb(231,138,38)" fg:x="8111" fg:w="981"/><text x="0.7771%" y="527.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (495 samples, 0.03%)</title><rect x="0.6116%" y="453" width="0.0322%" height="15" fill="rgb(231,145,46)" fg:x="9411" fg:w="495"/><text x="0.8616%" y="463.50"></text></g><g><title>LinearScanWalker::activate_current (746 samples, 0.05%)</title><rect x="0.6095%" y="469" width="0.0485%" height="15" fill="rgb(251,118,11)" fg:x="9380" fg:w="746"/><text x="0.8595%" y="479.50"></text></g><g><title>IntervalWalker::walk_to (940 samples, 0.06%)</title><rect x="0.5971%" y="485" width="0.0611%" height="15" fill="rgb(217,147,25)" fg:x="9188" fg:w="940"/><text x="0.8471%" y="495.50"></text></g><g><title>LinearScan::allocate_registers (1,027 samples, 0.07%)</title><rect x="0.5958%" y="501" width="0.0667%" height="15" fill="rgb(247,81,37)" fg:x="9169" fg:w="1027"/><text x="0.8458%" y="511.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (159 samples, 0.01%)</title><rect x="0.6854%" y="469" width="0.0103%" height="15" fill="rgb(209,12,38)" fg:x="10548" fg:w="159"/><text x="0.9354%" y="479.50"></text></g><g><title>LinearScan::compute_oop_map (179 samples, 0.01%)</title><rect x="0.6967%" y="453" width="0.0116%" height="15" fill="rgb(227,1,9)" fg:x="10721" fg:w="179"/><text x="0.9467%" y="463.50"></text></g><g><title>LinearScan::compute_oop_map (194 samples, 0.01%)</title><rect x="0.6958%" y="469" width="0.0126%" height="15" fill="rgb(248,47,43)" fg:x="10707" fg:w="194"/><text x="0.9458%" y="479.50"></text></g><g><title>LinearScan::assign_reg_num (699 samples, 0.05%)</title><rect x="0.6631%" y="485" width="0.0454%" height="15" fill="rgb(221,10,30)" fg:x="10204" fg:w="699"/><text x="0.9131%" y="495.50"></text></g><g><title>LinearScan::assign_reg_num (734 samples, 0.05%)</title><rect x="0.6626%" y="501" width="0.0477%" height="15" fill="rgb(210,229,1)" fg:x="10196" fg:w="734"/><text x="0.9126%" y="511.50"></text></g><g><title>LinearScan::add_use (208 samples, 0.01%)</title><rect x="0.7490%" y="485" width="0.0135%" height="15" fill="rgb(222,148,37)" fg:x="11526" fg:w="208"/><text x="0.9990%" y="495.50"></text></g><g><title>LinearScan::build_intervals (897 samples, 0.06%)</title><rect x="0.7103%" y="501" width="0.0583%" height="15" fill="rgb(234,67,33)" fg:x="10930" fg:w="897"/><text x="0.9603%" y="511.50"></text></g><g><title>LinearScan::compute_local_live_sets (292 samples, 0.02%)</title><rect x="0.7744%" y="501" width="0.0190%" height="15" fill="rgb(247,98,35)" fg:x="11917" fg:w="292"/><text x="1.0244%" y="511.50"></text></g><g><title>LinearScan::do_linear_scan (3,493 samples, 0.23%)</title><rect x="0.5938%" y="517" width="0.2270%" height="15" fill="rgb(247,138,52)" fg:x="9138" fg:w="3493"/><text x="0.8438%" y="527.50"></text></g><g><title>Compilation::emit_lir (4,531 samples, 0.29%)</title><rect x="0.5268%" y="533" width="0.2944%" height="15" fill="rgb(213,79,30)" fg:x="8106" fg:w="4531"/><text x="0.7768%" y="543.50"></text></g><g><title>Compilation::compile_java_method (10,683 samples, 0.69%)</title><rect x="0.1379%" y="549" width="0.6942%" height="15" fill="rgb(246,177,23)" fg:x="2122" fg:w="10683"/><text x="0.3879%" y="559.50"></text></g><g><title>CodeBuffer::copy_code_to (162 samples, 0.01%)</title><rect x="0.8566%" y="501" width="0.0105%" height="15" fill="rgb(230,62,27)" fg:x="13182" fg:w="162"/><text x="1.1066%" y="511.50"></text></g><g><title>nmethod::nmethod (323 samples, 0.02%)</title><rect x="0.8564%" y="517" width="0.0210%" height="15" fill="rgb(216,154,8)" fg:x="13178" fg:w="323"/><text x="1.1064%" y="527.50"></text></g><g><title>nmethod::new_nmethod (533 samples, 0.03%)</title><rect x="0.8428%" y="533" width="0.0346%" height="15" fill="rgb(244,35,45)" fg:x="12970" fg:w="533"/><text x="1.0928%" y="543.50"></text></g><g><title>ciEnv::register_method (644 samples, 0.04%)</title><rect x="0.8358%" y="549" width="0.0418%" height="15" fill="rgb(251,115,12)" fg:x="12862" fg:w="644"/><text x="1.0858%" y="559.50"></text></g><g><title>Compilation::compile_method (11,390 samples, 0.74%)</title><rect x="0.1376%" y="565" width="0.7402%" height="15" fill="rgb(240,54,50)" fg:x="2117" fg:w="11390"/><text x="0.3876%" y="575.50"></text></g><g><title>Compilation::Compilation (11,408 samples, 0.74%)</title><rect x="0.1371%" y="581" width="0.7413%" height="15" fill="rgb(233,84,52)" fg:x="2110" fg:w="11408"/><text x="0.3871%" y="591.50"></text></g><g><title>Compiler::compile_method (11,421 samples, 0.74%)</title><rect x="0.1363%" y="597" width="0.7422%" height="15" fill="rgb(207,117,47)" fg:x="2098" fg:w="11421"/><text x="0.3863%" y="607.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,922 samples, 0.77%)</title><rect x="0.1221%" y="613" width="0.7747%" height="15" fill="rgb(249,43,39)" fg:x="1879" fg:w="11922"/><text x="0.3721%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (212 samples, 0.01%)</title><rect x="0.9063%" y="357" width="0.0138%" height="15" fill="rgb(209,38,44)" fg:x="13946" fg:w="212"/><text x="1.1563%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (207 samples, 0.01%)</title><rect x="0.9066%" y="341" width="0.0135%" height="15" fill="rgb(236,212,23)" fg:x="13951" fg:w="207"/><text x="1.1566%" y="351.50"></text></g><g><title>native_write_msr (207 samples, 0.01%)</title><rect x="0.9066%" y="325" width="0.0135%" height="15" fill="rgb(242,79,21)" fg:x="13951" fg:w="207"/><text x="1.1566%" y="335.50"></text></g><g><title>finish_task_switch (220 samples, 0.01%)</title><rect x="0.9061%" y="373" width="0.0143%" height="15" fill="rgb(211,96,35)" fg:x="13944" fg:w="220"/><text x="1.1561%" y="383.50"></text></g><g><title>futex_wait_queue_me (259 samples, 0.02%)</title><rect x="0.9044%" y="421" width="0.0168%" height="15" fill="rgb(253,215,40)" fg:x="13917" fg:w="259"/><text x="1.1544%" y="431.50"></text></g><g><title>schedule (250 samples, 0.02%)</title><rect x="0.9050%" y="405" width="0.0162%" height="15" fill="rgb(211,81,21)" fg:x="13926" fg:w="250"/><text x="1.1550%" y="415.50"></text></g><g><title>__schedule (248 samples, 0.02%)</title><rect x="0.9051%" y="389" width="0.0161%" height="15" fill="rgb(208,190,38)" fg:x="13928" fg:w="248"/><text x="1.1551%" y="399.50"></text></g><g><title>do_syscall_64 (268 samples, 0.02%)</title><rect x="0.9041%" y="485" width="0.0174%" height="15" fill="rgb(235,213,38)" fg:x="13913" fg:w="268"/><text x="1.1541%" y="495.50"></text></g><g><title>__x64_sys_futex (268 samples, 0.02%)</title><rect x="0.9041%" y="469" width="0.0174%" height="15" fill="rgb(237,122,38)" fg:x="13913" fg:w="268"/><text x="1.1541%" y="479.50"></text></g><g><title>do_futex (266 samples, 0.02%)</title><rect x="0.9042%" y="453" width="0.0173%" height="15" fill="rgb(244,218,35)" fg:x="13915" fg:w="266"/><text x="1.1542%" y="463.50"></text></g><g><title>futex_wait (265 samples, 0.02%)</title><rect x="0.9043%" y="437" width="0.0172%" height="15" fill="rgb(240,68,47)" fg:x="13916" fg:w="265"/><text x="1.1543%" y="447.50"></text></g><g><title>__pthread_cond_timedwait (284 samples, 0.02%)</title><rect x="0.9034%" y="549" width="0.0185%" height="15" fill="rgb(210,16,53)" fg:x="13902" fg:w="284"/><text x="1.1534%" y="559.50"></text></g><g><title>__pthread_cond_wait_common (284 samples, 0.02%)</title><rect x="0.9034%" y="533" width="0.0185%" height="15" fill="rgb(235,124,12)" fg:x="13902" fg:w="284"/><text x="1.1534%" y="543.50"></text></g><g><title>futex_abstimed_wait_cancelable (282 samples, 0.02%)</title><rect x="0.9035%" y="517" width="0.0183%" height="15" fill="rgb(224,169,11)" fg:x="13904" fg:w="282"/><text x="1.1535%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (273 samples, 0.02%)</title><rect x="0.9041%" y="501" width="0.0177%" height="15" fill="rgb(250,166,2)" fg:x="13913" fg:w="273"/><text x="1.1541%" y="511.50"></text></g><g><title>Monitor::IWait (309 samples, 0.02%)</title><rect x="0.9026%" y="581" width="0.0201%" height="15" fill="rgb(242,216,29)" fg:x="13889" fg:w="309"/><text x="1.1526%" y="591.50"></text></g><g><title>os::PlatformEvent::park (300 samples, 0.02%)</title><rect x="0.9031%" y="565" width="0.0195%" height="15" fill="rgb(230,116,27)" fg:x="13898" fg:w="300"/><text x="1.1531%" y="575.50"></text></g><g><title>Monitor::wait (322 samples, 0.02%)</title><rect x="0.9022%" y="597" width="0.0209%" height="15" fill="rgb(228,99,48)" fg:x="13884" fg:w="322"/><text x="1.1522%" y="607.50"></text></g><g><title>CompileQueue::get (420 samples, 0.03%)</title><rect x="0.9000%" y="613" width="0.0273%" height="15" fill="rgb(253,11,6)" fg:x="13849" fg:w="420"/><text x="1.1500%" y="623.50"></text></g><g><title>Thread::call_run (12,404 samples, 0.81%)</title><rect x="0.1217%" y="661" width="0.8061%" height="15" fill="rgb(247,143,39)" fg:x="1873" fg:w="12404"/><text x="0.3717%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (12,404 samples, 0.81%)</title><rect x="0.1217%" y="645" width="0.8061%" height="15" fill="rgb(236,97,10)" fg:x="1873" fg:w="12404"/><text x="0.3717%" y="655.50"></text></g><g><title>CompileBroker::compiler_thread_loop (12,404 samples, 0.81%)</title><rect x="0.1217%" y="629" width="0.8061%" height="15" fill="rgb(233,208,19)" fg:x="1873" fg:w="12404"/><text x="0.3717%" y="639.50"></text></g><g><title>__GI___clone (12,418 samples, 0.81%)</title><rect x="0.1209%" y="709" width="0.8070%" height="15" fill="rgb(216,164,2)" fg:x="1860" fg:w="12418"/><text x="0.3709%" y="719.50"></text></g><g><title>start_thread (12,406 samples, 0.81%)</title><rect x="0.1216%" y="693" width="0.8062%" height="15" fill="rgb(220,129,5)" fg:x="1872" fg:w="12406"/><text x="0.3716%" y="703.50"></text></g><g><title>thread_native_entry (12,405 samples, 0.81%)</title><rect x="0.1217%" y="677" width="0.8061%" height="15" fill="rgb(242,17,10)" fg:x="1873" fg:w="12405"/><text x="0.3717%" y="687.50"></text></g><g><title>C1_CompilerThre (14,185 samples, 0.92%)</title><rect x="0.0093%" y="725" width="0.9218%" height="15" fill="rgb(242,107,0)" fg:x="143" fg:w="14185"/><text x="0.2593%" y="735.50"></text></g><g><title>_dl_update_slotinfo (177 samples, 0.01%)</title><rect x="1.1557%" y="693" width="0.0115%" height="15" fill="rgb(251,28,31)" fg:x="17784" fg:w="177"/><text x="1.4057%" y="703.50"></text></g><g><title>[anon] (4,016 samples, 0.26%)</title><rect x="0.9581%" y="709" width="0.2610%" height="15" fill="rgb(233,223,10)" fg:x="14744" fg:w="4016"/><text x="1.2081%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (161 samples, 0.01%)</title><rect x="1.2268%" y="549" width="0.0105%" height="15" fill="rgb(215,21,27)" fg:x="18878" fg:w="161"/><text x="1.4768%" y="559.50"></text></g><g><title>ciMethod::get_flow_analysis (158 samples, 0.01%)</title><rect x="1.2270%" y="533" width="0.0103%" height="15" fill="rgb(232,23,21)" fg:x="18881" fg:w="158"/><text x="1.4770%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (158 samples, 0.01%)</title><rect x="1.2270%" y="517" width="0.0103%" height="15" fill="rgb(244,5,23)" fg:x="18881" fg:w="158"/><text x="1.4770%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (158 samples, 0.01%)</title><rect x="1.2270%" y="501" width="0.0103%" height="15" fill="rgb(226,81,46)" fg:x="18881" fg:w="158"/><text x="1.4770%" y="511.50"></text></g><g><title>Compile::call_generator (218 samples, 0.01%)</title><rect x="1.2233%" y="565" width="0.0142%" height="15" fill="rgb(247,70,30)" fg:x="18825" fg:w="218"/><text x="1.4733%" y="575.50"></text></g><g><title>Compile::call_generator (171 samples, 0.01%)</title><rect x="1.2418%" y="469" width="0.0111%" height="15" fill="rgb(212,68,19)" fg:x="19109" fg:w="171"/><text x="1.4918%" y="479.50"></text></g><g><title>Parse::do_call (212 samples, 0.01%)</title><rect x="1.2800%" y="293" width="0.0138%" height="15" fill="rgb(240,187,13)" fg:x="19697" fg:w="212"/><text x="1.5300%" y="303.50"></text></g><g><title>Parse::do_one_block (394 samples, 0.03%)</title><rect x="1.2776%" y="325" width="0.0256%" height="15" fill="rgb(223,113,26)" fg:x="19661" fg:w="394"/><text x="1.5276%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (390 samples, 0.03%)</title><rect x="1.2779%" y="309" width="0.0253%" height="15" fill="rgb(206,192,2)" fg:x="19665" fg:w="390"/><text x="1.5279%" y="319.50"></text></g><g><title>Parse::do_all_blocks (402 samples, 0.03%)</title><rect x="1.2776%" y="341" width="0.0261%" height="15" fill="rgb(241,108,4)" fg:x="19661" fg:w="402"/><text x="1.5276%" y="351.50"></text></g><g><title>ParseGenerator::generate (470 samples, 0.03%)</title><rect x="1.2752%" y="373" width="0.0305%" height="15" fill="rgb(247,173,49)" fg:x="19624" fg:w="470"/><text x="1.5252%" y="383.50"></text></g><g><title>Parse::Parse (470 samples, 0.03%)</title><rect x="1.2752%" y="357" width="0.0305%" height="15" fill="rgb(224,114,35)" fg:x="19624" fg:w="470"/><text x="1.5252%" y="367.50"></text></g><g><title>Parse::do_call (715 samples, 0.05%)</title><rect x="1.2660%" y="389" width="0.0465%" height="15" fill="rgb(245,159,27)" fg:x="19482" fg:w="715"/><text x="1.5160%" y="399.50"></text></g><g><title>Parse::do_one_block (1,013 samples, 0.07%)</title><rect x="1.2617%" y="421" width="0.0658%" height="15" fill="rgb(245,172,44)" fg:x="19415" fg:w="1013"/><text x="1.5117%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (1,003 samples, 0.07%)</title><rect x="1.2623%" y="405" width="0.0652%" height="15" fill="rgb(236,23,11)" fg:x="19425" fg:w="1003"/><text x="1.5123%" y="415.50"></text></g><g><title>Parse::do_all_blocks (1,024 samples, 0.07%)</title><rect x="1.2615%" y="437" width="0.0665%" height="15" fill="rgb(205,117,38)" fg:x="19412" fg:w="1024"/><text x="1.5115%" y="447.50"></text></g><g><title>ParseGenerator::generate (1,113 samples, 0.07%)</title><rect x="1.2580%" y="469" width="0.0723%" height="15" fill="rgb(237,72,25)" fg:x="19358" fg:w="1113"/><text x="1.5080%" y="479.50"></text></g><g><title>Parse::Parse (1,113 samples, 0.07%)</title><rect x="1.2580%" y="453" width="0.0723%" height="15" fill="rgb(244,70,9)" fg:x="19358" fg:w="1113"/><text x="1.5080%" y="463.50"></text></g><g><title>ParseGenerator::generate (155 samples, 0.01%)</title><rect x="1.3316%" y="453" width="0.0101%" height="15" fill="rgb(217,125,39)" fg:x="20492" fg:w="155"/><text x="1.5816%" y="463.50"></text></g><g><title>Parse::Parse (155 samples, 0.01%)</title><rect x="1.3316%" y="437" width="0.0101%" height="15" fill="rgb(235,36,10)" fg:x="20492" fg:w="155"/><text x="1.5816%" y="447.50"></text></g><g><title>PredictedCallGenerator::generate (211 samples, 0.01%)</title><rect x="1.3303%" y="469" width="0.0137%" height="15" fill="rgb(251,123,47)" fg:x="20471" fg:w="211"/><text x="1.5803%" y="479.50"></text></g><g><title>Parse::do_call (1,599 samples, 0.10%)</title><rect x="1.2418%" y="485" width="0.1039%" height="15" fill="rgb(221,13,13)" fg:x="19109" fg:w="1599"/><text x="1.4918%" y="495.50"></text></g><g><title>Parse::do_one_block (1,873 samples, 0.12%)</title><rect x="1.2392%" y="517" width="0.1217%" height="15" fill="rgb(238,131,9)" fg:x="19070" fg:w="1873"/><text x="1.4892%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (1,864 samples, 0.12%)</title><rect x="1.2398%" y="501" width="0.1211%" height="15" fill="rgb(211,50,8)" fg:x="19079" fg:w="1864"/><text x="1.4898%" y="511.50"></text></g><g><title>Parse::do_all_blocks (1,875 samples, 0.12%)</title><rect x="1.2392%" y="533" width="0.1218%" height="15" fill="rgb(245,182,24)" fg:x="19069" fg:w="1875"/><text x="1.4892%" y="543.50"></text></g><g><title>ParseGenerator::generate (1,893 samples, 0.12%)</title><rect x="1.2381%" y="565" width="0.1230%" height="15" fill="rgb(242,14,37)" fg:x="19052" fg:w="1893"/><text x="1.4881%" y="575.50"></text></g><g><title>Parse::Parse (1,893 samples, 0.12%)</title><rect x="1.2381%" y="549" width="0.1230%" height="15" fill="rgb(246,228,12)" fg:x="19052" fg:w="1893"/><text x="1.4881%" y="559.50"></text></g><g><title>Parse::do_one_block (220 samples, 0.01%)</title><rect x="1.3683%" y="405" width="0.0143%" height="15" fill="rgb(213,55,15)" fg:x="21056" fg:w="220"/><text x="1.6183%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (216 samples, 0.01%)</title><rect x="1.3686%" y="389" width="0.0140%" height="15" fill="rgb(209,9,3)" fg:x="21060" fg:w="216"/><text x="1.6186%" y="399.50"></text></g><g><title>Parse::do_all_blocks (224 samples, 0.01%)</title><rect x="1.3682%" y="421" width="0.0146%" height="15" fill="rgb(230,59,30)" fg:x="21055" fg:w="224"/><text x="1.6182%" y="431.50"></text></g><g><title>ParseGenerator::generate (242 samples, 0.02%)</title><rect x="1.3676%" y="453" width="0.0157%" height="15" fill="rgb(209,121,21)" fg:x="21046" fg:w="242"/><text x="1.6176%" y="463.50"></text></g><g><title>Parse::Parse (242 samples, 0.02%)</title><rect x="1.3676%" y="437" width="0.0157%" height="15" fill="rgb(220,109,13)" fg:x="21046" fg:w="242"/><text x="1.6176%" y="447.50"></text></g><g><title>Parse::do_call (370 samples, 0.02%)</title><rect x="1.3628%" y="469" width="0.0240%" height="15" fill="rgb(232,18,1)" fg:x="20971" fg:w="370"/><text x="1.6128%" y="479.50"></text></g><g><title>Parse::do_one_block (455 samples, 0.03%)</title><rect x="1.3616%" y="501" width="0.0296%" height="15" fill="rgb(215,41,42)" fg:x="20953" fg:w="455"/><text x="1.6116%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (450 samples, 0.03%)</title><rect x="1.3619%" y="485" width="0.0292%" height="15" fill="rgb(224,123,36)" fg:x="20958" fg:w="450"/><text x="1.6119%" y="495.50"></text></g><g><title>Parse::do_all_blocks (459 samples, 0.03%)</title><rect x="1.3615%" y="517" width="0.0298%" height="15" fill="rgb(240,125,3)" fg:x="20952" fg:w="459"/><text x="1.6115%" y="527.50"></text></g><g><title>ParseGenerator::generate (463 samples, 0.03%)</title><rect x="1.3614%" y="549" width="0.0301%" height="15" fill="rgb(205,98,50)" fg:x="20950" fg:w="463"/><text x="1.6114%" y="559.50"></text></g><g><title>Parse::Parse (463 samples, 0.03%)</title><rect x="1.3614%" y="533" width="0.0301%" height="15" fill="rgb(205,185,37)" fg:x="20950" fg:w="463"/><text x="1.6114%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (550 samples, 0.04%)</title><rect x="1.3611%" y="565" width="0.0357%" height="15" fill="rgb(238,207,15)" fg:x="20945" fg:w="550"/><text x="1.6111%" y="575.50"></text></g><g><title>Parse::do_call (2,687 samples, 0.17%)</title><rect x="1.2233%" y="581" width="0.1746%" height="15" fill="rgb(213,199,42)" fg:x="18825" fg:w="2687"/><text x="1.4733%" y="591.50"></text></g><g><title>Parse::do_all_blocks (2,703 samples, 0.18%)</title><rect x="1.2233%" y="629" width="0.1757%" height="15" fill="rgb(235,201,11)" fg:x="18824" fg:w="2703"/><text x="1.4733%" y="639.50"></text></g><g><title>Parse::do_one_block (2,703 samples, 0.18%)</title><rect x="1.2233%" y="613" width="0.1757%" height="15" fill="rgb(207,46,11)" fg:x="18824" fg:w="2703"/><text x="1.4733%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (2,703 samples, 0.18%)</title><rect x="1.2233%" y="597" width="0.1757%" height="15" fill="rgb(241,35,35)" fg:x="18824" fg:w="2703"/><text x="1.4733%" y="607.50"></text></g><g><title>C2Compiler::compile_method (2,735 samples, 0.18%)</title><rect x="1.2212%" y="693" width="0.1777%" height="15" fill="rgb(243,32,47)" fg:x="18793" fg:w="2735"/><text x="1.4712%" y="703.50"></text></g><g><title>Compile::Compile (2,735 samples, 0.18%)</title><rect x="1.2212%" y="677" width="0.1777%" height="15" fill="rgb(247,202,23)" fg:x="18793" fg:w="2735"/><text x="1.4712%" y="687.50"></text></g><g><title>ParseGenerator::generate (2,704 samples, 0.18%)</title><rect x="1.2233%" y="661" width="0.1757%" height="15" fill="rgb(219,102,11)" fg:x="18824" fg:w="2704"/><text x="1.4733%" y="671.50"></text></g><g><title>Parse::Parse (2,704 samples, 0.18%)</title><rect x="1.2233%" y="645" width="0.1757%" height="15" fill="rgb(243,110,44)" fg:x="18824" fg:w="2704"/><text x="1.4733%" y="655.50"></text></g><g><title>PhaseCFG::sched_call (202 samples, 0.01%)</title><rect x="1.4100%" y="629" width="0.0131%" height="15" fill="rgb(222,74,54)" fg:x="21698" fg:w="202"/><text x="1.6600%" y="639.50"></text></g><g><title>PhaseCFG::schedule_local (204 samples, 0.01%)</title><rect x="1.4100%" y="645" width="0.0133%" height="15" fill="rgb(216,99,12)" fg:x="21698" fg:w="204"/><text x="1.6600%" y="655.50"></text></g><g><title>PhaseCFG::do_global_code_motion (284 samples, 0.02%)</title><rect x="1.4054%" y="677" width="0.0185%" height="15" fill="rgb(226,22,26)" fg:x="21627" fg:w="284"/><text x="1.6554%" y="687.50"></text></g><g><title>PhaseCFG::global_code_motion (284 samples, 0.02%)</title><rect x="1.4054%" y="661" width="0.0185%" height="15" fill="rgb(217,163,10)" fg:x="21627" fg:w="284"/><text x="1.6554%" y="671.50"></text></g><g><title>Compile::Code_Gen (456 samples, 0.03%)</title><rect x="1.3991%" y="693" width="0.0296%" height="15" fill="rgb(213,25,53)" fg:x="21530" fg:w="456"/><text x="1.6491%" y="703.50"></text></g><g><title>OopFlow::compute_reach (251 samples, 0.02%)</title><rect x="1.4691%" y="629" width="0.0163%" height="15" fill="rgb(252,105,26)" fg:x="22607" fg:w="251"/><text x="1.7191%" y="639.50"></text></g><g><title>Compile::BuildOopMaps (968 samples, 0.06%)</title><rect x="1.4299%" y="645" width="0.0629%" height="15" fill="rgb(220,39,43)" fg:x="22004" fg:w="968"/><text x="1.6799%" y="655.50"></text></g><g><title>Compile::scratch_emit_size (202 samples, 0.01%)</title><rect x="1.5081%" y="613" width="0.0131%" height="15" fill="rgb(229,68,48)" fg:x="23207" fg:w="202"/><text x="1.7581%" y="623.50"></text></g><g><title>Compile::shorten_branches (401 samples, 0.03%)</title><rect x="1.4975%" y="629" width="0.0261%" height="15" fill="rgb(252,8,32)" fg:x="23044" fg:w="401"/><text x="1.7475%" y="639.50"></text></g><g><title>Compile::init_buffer (479 samples, 0.03%)</title><rect x="1.4928%" y="645" width="0.0311%" height="15" fill="rgb(223,20,43)" fg:x="22972" fg:w="479"/><text x="1.7428%" y="655.50"></text></g><g><title>Compile::Output (1,464 samples, 0.10%)</title><rect x="1.4290%" y="661" width="0.0951%" height="15" fill="rgb(229,81,49)" fg:x="21990" fg:w="1464"/><text x="1.6790%" y="671.50"></text></g><g><title>Compile::Process_OopMap_Node (272 samples, 0.02%)</title><rect x="1.5372%" y="645" width="0.0177%" height="15" fill="rgb(236,28,36)" fg:x="23655" fg:w="272"/><text x="1.7872%" y="655.50"></text></g><g><title>Compile::fill_buffer (677 samples, 0.04%)</title><rect x="1.5242%" y="661" width="0.0440%" height="15" fill="rgb(249,185,26)" fg:x="23455" fg:w="677"/><text x="1.7742%" y="671.50"></text></g><g><title>Matcher::find_shared (428 samples, 0.03%)</title><rect x="1.5761%" y="645" width="0.0278%" height="15" fill="rgb(249,174,33)" fg:x="24253" fg:w="428"/><text x="1.8261%" y="655.50"></text></g><g><title>Arena::contains (576 samples, 0.04%)</title><rect x="1.6327%" y="629" width="0.0374%" height="15" fill="rgb(233,201,37)" fg:x="25125" fg:w="576"/><text x="1.8827%" y="639.50"></text></g><g><title>Matcher::match_sfpt (190 samples, 0.01%)</title><rect x="1.6737%" y="629" width="0.0123%" height="15" fill="rgb(221,78,26)" fg:x="25756" fg:w="190"/><text x="1.9237%" y="639.50"></text></g><g><title>Matcher::Label_Root (166 samples, 0.01%)</title><rect x="1.7143%" y="581" width="0.0108%" height="15" fill="rgb(250,127,30)" fg:x="26381" fg:w="166"/><text x="1.9643%" y="591.50"></text></g><g><title>Matcher::Label_Root (337 samples, 0.02%)</title><rect x="1.7082%" y="597" width="0.0219%" height="15" fill="rgb(230,49,44)" fg:x="26286" fg:w="337"/><text x="1.9582%" y="607.50"></text></g><g><title>Matcher::Label_Root (509 samples, 0.03%)</title><rect x="1.7024%" y="613" width="0.0331%" height="15" fill="rgb(229,67,23)" fg:x="26197" fg:w="509"/><text x="1.9524%" y="623.50"></text></g><g><title>Matcher::ReduceInst_Interior (222 samples, 0.01%)</title><rect x="1.7379%" y="597" width="0.0144%" height="15" fill="rgb(249,83,47)" fg:x="26744" fg:w="222"/><text x="1.9879%" y="607.50"></text></g><g><title>Matcher::ReduceInst (423 samples, 0.03%)</title><rect x="1.7355%" y="613" width="0.0275%" height="15" fill="rgb(215,43,3)" fg:x="26706" fg:w="423"/><text x="1.9855%" y="623.50"></text></g><g><title>Matcher::match_tree (1,201 samples, 0.08%)</title><rect x="1.6861%" y="629" width="0.0780%" height="15" fill="rgb(238,154,13)" fg:x="25946" fg:w="1201"/><text x="1.9361%" y="639.50"></text></g><g><title>Matcher::xform (2,615 samples, 0.17%)</title><rect x="1.6043%" y="645" width="0.1699%" height="15" fill="rgb(219,56,2)" fg:x="24688" fg:w="2615"/><text x="1.8543%" y="655.50"></text></g><g><title>Matcher::match (3,166 samples, 0.21%)</title><rect x="1.5690%" y="661" width="0.2057%" height="15" fill="rgb(233,0,4)" fg:x="24144" fg:w="3166"/><text x="1.8190%" y="671.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (190 samples, 0.01%)</title><rect x="1.7748%" y="661" width="0.0123%" height="15" fill="rgb(235,30,7)" fg:x="27311" fg:w="190"/><text x="2.0248%" y="671.50"></text></g><g><title>PhaseCFG::PhaseCFG (178 samples, 0.01%)</title><rect x="1.7871%" y="661" width="0.0116%" height="15" fill="rgb(250,79,13)" fg:x="27501" fg:w="178"/><text x="2.0371%" y="671.50"></text></g><g><title>PhaseCFG::build_cfg (172 samples, 0.01%)</title><rect x="1.7875%" y="645" width="0.0112%" height="15" fill="rgb(211,146,34)" fg:x="27507" fg:w="172"/><text x="2.0375%" y="655.50"></text></g><g><title>Node_Backward_Iterator::next (295 samples, 0.02%)</title><rect x="1.8570%" y="613" width="0.0192%" height="15" fill="rgb(228,22,38)" fg:x="28576" fg:w="295"/><text x="2.1070%" y="623.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (168 samples, 0.01%)</title><rect x="1.8847%" y="613" width="0.0109%" height="15" fill="rgb(235,168,5)" fg:x="29002" fg:w="168"/><text x="2.1347%" y="623.50"></text></g><g><title>PhaseCFG::schedule_late (814 samples, 0.05%)</title><rect x="1.8487%" y="629" width="0.0529%" height="15" fill="rgb(221,155,16)" fg:x="28448" fg:w="814"/><text x="2.0987%" y="639.50"></text></g><g><title>PhaseCFG::schedule_local (683 samples, 0.04%)</title><rect x="1.9016%" y="629" width="0.0444%" height="15" fill="rgb(215,215,53)" fg:x="29262" fg:w="683"/><text x="2.1516%" y="639.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (517 samples, 0.03%)</title><rect x="1.9494%" y="629" width="0.0336%" height="15" fill="rgb(223,4,10)" fg:x="29998" fg:w="517"/><text x="2.1994%" y="639.50"></text></g><g><title>PhaseIFG::init (211 samples, 0.01%)</title><rect x="1.9904%" y="629" width="0.0137%" height="15" fill="rgb(234,103,6)" fg:x="30629" fg:w="211"/><text x="2.2404%" y="639.50"></text></g><g><title>PhaseLive::add_livein (197 samples, 0.01%)</title><rect x="2.0272%" y="613" width="0.0128%" height="15" fill="rgb(227,97,0)" fg:x="31195" fg:w="197"/><text x="2.2772%" y="623.50"></text></g><g><title>PhaseLive::add_liveout (417 samples, 0.03%)</title><rect x="2.0400%" y="613" width="0.0271%" height="15" fill="rgb(234,150,53)" fg:x="31392" fg:w="417"/><text x="2.2900%" y="623.50"></text></g><g><title>PhaseLive::compute (972 samples, 0.06%)</title><rect x="2.0041%" y="629" width="0.0632%" height="15" fill="rgb(228,201,54)" fg:x="30840" fg:w="972"/><text x="2.2541%" y="639.50"></text></g><g><title>PhaseCFG::global_code_motion (3,957 samples, 0.26%)</title><rect x="1.8114%" y="645" width="0.2571%" height="15" fill="rgb(222,22,37)" fg:x="27875" fg:w="3957"/><text x="2.0614%" y="655.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,156 samples, 0.27%)</title><rect x="1.7987%" y="661" width="0.2701%" height="15" fill="rgb(237,53,32)" fg:x="27679" fg:w="4156"/><text x="2.0487%" y="671.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,230 samples, 0.08%)</title><rect x="2.0861%" y="645" width="0.0799%" height="15" fill="rgb(233,25,53)" fg:x="32102" fg:w="1230"/><text x="2.3361%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (274 samples, 0.02%)</title><rect x="2.2096%" y="629" width="0.0178%" height="15" fill="rgb(210,40,34)" fg:x="34003" fg:w="274"/><text x="2.4596%" y="639.50"></text></g><g><title>PhaseChaitin::bias_color (204 samples, 0.01%)</title><rect x="2.2274%" y="629" width="0.0133%" height="15" fill="rgb(241,220,44)" fg:x="34277" fg:w="204"/><text x="2.4774%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (388 samples, 0.03%)</title><rect x="2.2742%" y="613" width="0.0252%" height="15" fill="rgb(235,28,35)" fg:x="34996" fg:w="388"/><text x="2.5242%" y="623.50"></text></g><g><title>PhaseIFG::re_insert (900 samples, 0.06%)</title><rect x="2.2415%" y="629" width="0.0585%" height="15" fill="rgb(210,56,17)" fg:x="34493" fg:w="900"/><text x="2.4915%" y="639.50"></text></g><g><title>RegMask::clear_to_sets (185 samples, 0.01%)</title><rect x="2.3000%" y="629" width="0.0120%" height="15" fill="rgb(224,130,29)" fg:x="35393" fg:w="185"/><text x="2.5500%" y="639.50"></text></g><g><title>PhaseChaitin::Select (2,254 samples, 0.15%)</title><rect x="2.1660%" y="645" width="0.1465%" height="15" fill="rgb(235,212,8)" fg:x="33332" fg:w="2254"/><text x="2.4160%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (344 samples, 0.02%)</title><rect x="2.3330%" y="629" width="0.0224%" height="15" fill="rgb(223,33,50)" fg:x="35901" fg:w="344"/><text x="2.5830%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (410 samples, 0.03%)</title><rect x="2.3892%" y="613" width="0.0266%" height="15" fill="rgb(219,149,13)" fg:x="36766" fg:w="410"/><text x="2.6392%" y="623.50"></text></g><g><title>PhaseChaitin::Simplify (1,595 samples, 0.10%)</title><rect x="2.3125%" y="645" width="0.1036%" height="15" fill="rgb(250,156,29)" fg:x="35586" fg:w="1595"/><text x="2.5625%" y="655.50"></text></g><g><title>PhaseIFG::remove_node (936 samples, 0.06%)</title><rect x="2.3553%" y="629" width="0.0608%" height="15" fill="rgb(216,193,19)" fg:x="36245" fg:w="936"/><text x="2.6053%" y="639.50"></text></g><g><title>MachNode::rematerialize (182 samples, 0.01%)</title><rect x="2.6088%" y="629" width="0.0118%" height="15" fill="rgb(216,135,14)" fg:x="40145" fg:w="182"/><text x="2.8588%" y="639.50"></text></g><g><title>Node::rematerialize (173 samples, 0.01%)</title><rect x="2.6236%" y="629" width="0.0112%" height="15" fill="rgb(241,47,5)" fg:x="40373" fg:w="173"/><text x="2.8736%" y="639.50"></text></g><g><title>PhaseChaitin::split_USE (208 samples, 0.01%)</title><rect x="2.6441%" y="629" width="0.0135%" height="15" fill="rgb(233,42,35)" fg:x="40689" fg:w="208"/><text x="2.8941%" y="639.50"></text></g><g><title>PhaseChaitin::Split (3,826 samples, 0.25%)</title><rect x="2.4162%" y="645" width="0.2486%" height="15" fill="rgb(231,13,6)" fg:x="37181" fg:w="3826"/><text x="2.6662%" y="655.50"></text></g><g><title>IndexSet::IndexSet (314 samples, 0.02%)</title><rect x="2.7268%" y="629" width="0.0204%" height="15" fill="rgb(207,181,40)" fg:x="41962" fg:w="314"/><text x="2.9768%" y="639.50"></text></g><g><title>PhaseChaitin::raise_pressure (154 samples, 0.01%)</title><rect x="2.8016%" y="613" width="0.0100%" height="15" fill="rgb(254,173,49)" fg:x="43113" fg:w="154"/><text x="3.0516%" y="623.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (881 samples, 0.06%)</title><rect x="2.7546%" y="629" width="0.0573%" height="15" fill="rgb(221,1,38)" fg:x="42389" fg:w="881"/><text x="3.0046%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (169 samples, 0.01%)</title><rect x="2.8387%" y="613" width="0.0110%" height="15" fill="rgb(206,124,46)" fg:x="43684" fg:w="169"/><text x="3.0887%" y="623.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (563 samples, 0.04%)</title><rect x="2.8180%" y="629" width="0.0366%" height="15" fill="rgb(249,21,11)" fg:x="43365" fg:w="563"/><text x="3.0680%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (926 samples, 0.06%)</title><rect x="2.9962%" y="613" width="0.0602%" height="15" fill="rgb(222,201,40)" fg:x="46107" fg:w="926"/><text x="3.2462%" y="623.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,113 samples, 0.20%)</title><rect x="2.8546%" y="629" width="0.2023%" height="15" fill="rgb(235,61,29)" fg:x="43928" fg:w="3113"/><text x="3.1046%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (234 samples, 0.02%)</title><rect x="3.1017%" y="613" width="0.0152%" height="15" fill="rgb(219,207,3)" fg:x="47731" fg:w="234"/><text x="3.3517%" y="623.50"></text></g><g><title>RegMask::Size (386 samples, 0.03%)</title><rect x="3.1169%" y="613" width="0.0251%" height="15" fill="rgb(222,56,46)" fg:x="47965" fg:w="386"/><text x="3.3669%" y="623.50"></text></g><g><title>RegMask::smear_to_sets (822 samples, 0.05%)</title><rect x="3.1420%" y="613" width="0.0534%" height="15" fill="rgb(239,76,54)" fg:x="48351" fg:w="822"/><text x="3.3920%" y="623.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,041 samples, 0.13%)</title><rect x="3.0640%" y="629" width="0.1326%" height="15" fill="rgb(231,124,27)" fg:x="47151" fg:w="2041"/><text x="3.3140%" y="639.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (8,276 samples, 0.54%)</title><rect x="2.6651%" y="645" width="0.5378%" height="15" fill="rgb(249,195,6)" fg:x="41012" fg:w="8276"/><text x="2.9151%" y="655.50"></text></g><g><title>PhaseChaitin::interfere_with_live (390 samples, 0.03%)</title><rect x="3.2152%" y="629" width="0.0253%" height="15" fill="rgb(237,174,47)" fg:x="49477" fg:w="390"/><text x="3.4652%" y="639.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (584 samples, 0.04%)</title><rect x="3.2029%" y="645" width="0.0380%" height="15" fill="rgb(206,201,31)" fg:x="49288" fg:w="584"/><text x="3.4529%" y="655.50"></text></g><g><title>RegMask::Size (1,378 samples, 0.09%)</title><rect x="3.4215%" y="629" width="0.0895%" height="15" fill="rgb(231,57,52)" fg:x="52651" fg:w="1378"/><text x="3.6715%" y="639.50"></text></g><g><title>RegMask::clear_to_sets (222 samples, 0.01%)</title><rect x="3.5110%" y="629" width="0.0144%" height="15" fill="rgb(248,177,22)" fg:x="54029" fg:w="222"/><text x="3.7610%" y="639.50"></text></g><g><title>RegMask::is_bound1 (158 samples, 0.01%)</title><rect x="3.5325%" y="629" width="0.0103%" height="15" fill="rgb(215,211,37)" fg:x="54360" fg:w="158"/><text x="3.7825%" y="639.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,531 samples, 0.29%)</title><rect x="3.2678%" y="645" width="0.2944%" height="15" fill="rgb(241,128,51)" fg:x="50287" fg:w="4531"/><text x="3.5178%" y="655.50"></text></g><g><title>PhaseChaitin::merge_multidefs (632 samples, 0.04%)</title><rect x="3.5623%" y="645" width="0.0411%" height="15" fill="rgb(227,165,31)" fg:x="54819" fg:w="632"/><text x="3.8123%" y="655.50"></text></g><g><title>PhaseChaitin::elide_copy (2,401 samples, 0.16%)</title><rect x="3.7476%" y="629" width="0.1560%" height="15" fill="rgb(228,167,24)" fg:x="57670" fg:w="2401"/><text x="3.9976%" y="639.50"></text></g><g><title>find_lowest_bit (426 samples, 0.03%)</title><rect x="3.9128%" y="629" width="0.0277%" height="15" fill="rgb(228,143,12)" fg:x="60212" fg:w="426"/><text x="4.1628%" y="639.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,192 samples, 0.34%)</title><rect x="3.6034%" y="645" width="0.3374%" height="15" fill="rgb(249,149,8)" fg:x="55451" fg:w="5192"/><text x="3.8534%" y="655.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (228 samples, 0.01%)</title><rect x="3.9409%" y="645" width="0.0148%" height="15" fill="rgb(243,35,44)" fg:x="60644" fg:w="228"/><text x="4.1909%" y="655.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (196 samples, 0.01%)</title><rect x="3.9560%" y="629" width="0.0127%" height="15" fill="rgb(246,89,9)" fg:x="60877" fg:w="196"/><text x="4.2060%" y="639.50"></text></g><g><title>IndexSet::lrg_union (363 samples, 0.02%)</title><rect x="3.9860%" y="597" width="0.0236%" height="15" fill="rgb(233,213,13)" fg:x="61338" fg:w="363"/><text x="4.2360%" y="607.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (329 samples, 0.02%)</title><rect x="4.0110%" y="597" width="0.0214%" height="15" fill="rgb(233,141,41)" fg:x="61723" fg:w="329"/><text x="4.2610%" y="607.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (872 samples, 0.06%)</title><rect x="3.9825%" y="613" width="0.0567%" height="15" fill="rgb(239,167,4)" fg:x="61285" fg:w="872"/><text x="4.2325%" y="623.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,088 samples, 0.07%)</title><rect x="3.9688%" y="629" width="0.0707%" height="15" fill="rgb(209,217,16)" fg:x="61073" fg:w="1088"/><text x="4.2188%" y="639.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,290 samples, 0.08%)</title><rect x="3.9557%" y="645" width="0.0838%" height="15" fill="rgb(219,88,35)" fg:x="60872" fg:w="1290"/><text x="4.2057%" y="655.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (987 samples, 0.06%)</title><rect x="4.0396%" y="645" width="0.0641%" height="15" fill="rgb(220,193,23)" fg:x="62163" fg:w="987"/><text x="4.2896%" y="655.50"></text></g><g><title>IndexSetIterator::advance_and_next (523 samples, 0.03%)</title><rect x="4.0697%" y="629" width="0.0340%" height="15" fill="rgb(230,90,52)" fg:x="62627" fg:w="523"/><text x="4.3197%" y="639.50"></text></g><g><title>IndexSetIterator::advance_and_next (414 samples, 0.03%)</title><rect x="4.1369%" y="629" width="0.0269%" height="15" fill="rgb(252,106,19)" fg:x="63661" fg:w="414"/><text x="4.3869%" y="639.50"></text></g><g><title>PhaseIFG::SquareUp (926 samples, 0.06%)</title><rect x="4.1037%" y="645" width="0.0602%" height="15" fill="rgb(206,74,20)" fg:x="63150" fg:w="926"/><text x="4.3537%" y="655.50"></text></g><g><title>IndexSet::initialize (196 samples, 0.01%)</title><rect x="4.1727%" y="629" width="0.0127%" height="15" fill="rgb(230,138,44)" fg:x="64212" fg:w="196"/><text x="4.4227%" y="639.50"></text></g><g><title>PhaseIFG::init (397 samples, 0.03%)</title><rect x="4.1639%" y="645" width="0.0258%" height="15" fill="rgb(235,182,43)" fg:x="64076" fg:w="397"/><text x="4.4139%" y="655.50"></text></g><g><title>IndexSet::alloc_block_containing (216 samples, 0.01%)</title><rect x="4.3401%" y="613" width="0.0140%" height="15" fill="rgb(242,16,51)" fg:x="66787" fg:w="216"/><text x="4.5901%" y="623.50"></text></g><g><title>IndexSetIterator::advance_and_next (322 samples, 0.02%)</title><rect x="4.3566%" y="613" width="0.0209%" height="15" fill="rgb(248,9,4)" fg:x="67042" fg:w="322"/><text x="4.6066%" y="623.50"></text></g><g><title>PhaseLive::add_liveout (1,343 samples, 0.09%)</title><rect x="4.2914%" y="629" width="0.0873%" height="15" fill="rgb(210,31,22)" fg:x="66038" fg:w="1343"/><text x="4.5414%" y="639.50"></text></g><g><title>PhaseLive::compute (2,921 samples, 0.19%)</title><rect x="4.1900%" y="645" width="0.1898%" height="15" fill="rgb(239,54,39)" fg:x="64478" fg:w="2921"/><text x="4.4400%" y="655.50"></text></g><g><title>PhaseChaitin::Register_Allocate (35,615 samples, 2.31%)</title><rect x="2.0771%" y="661" width="2.3144%" height="15" fill="rgb(230,99,41)" fg:x="31964" fg:w="35615"/><text x="2.3271%" y="671.50">P..</text></g><g><title>Compile::Code_Gen (45,650 samples, 2.97%)</title><rect x="1.4287%" y="677" width="2.9665%" height="15" fill="rgb(253,106,12)" fg:x="21986" fg:w="45650"/><text x="1.6787%" y="687.50">Com..</text></g><g><title>Parse::do_one_block (164 samples, 0.01%)</title><rect x="4.4134%" y="53" width="0.0107%" height="15" fill="rgb(213,46,41)" fg:x="67915" fg:w="164"/><text x="4.6634%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (164 samples, 0.01%)</title><rect x="4.4134%" y="37" width="0.0107%" height="15" fill="rgb(215,133,35)" fg:x="67915" fg:w="164"/><text x="4.6634%" y="47.50"></text></g><g><title>Parse::do_all_blocks (167 samples, 0.01%)</title><rect x="4.4134%" y="69" width="0.0109%" height="15" fill="rgb(213,28,5)" fg:x="67915" fg:w="167"/><text x="4.6634%" y="79.50"></text></g><g><title>ParseGenerator::generate (189 samples, 0.01%)</title><rect x="4.4126%" y="101" width="0.0123%" height="15" fill="rgb(215,77,49)" fg:x="67903" fg:w="189"/><text x="4.6626%" y="111.50"></text></g><g><title>Parse::Parse (189 samples, 0.01%)</title><rect x="4.4126%" y="85" width="0.0123%" height="15" fill="rgb(248,100,22)" fg:x="67903" fg:w="189"/><text x="4.6626%" y="95.50"></text></g><g><title>Parse::do_call (230 samples, 0.01%)</title><rect x="4.4108%" y="117" width="0.0149%" height="15" fill="rgb(208,67,9)" fg:x="67875" fg:w="230"/><text x="4.6608%" y="127.50"></text></g><g><title>Parse::do_one_block (324 samples, 0.02%)</title><rect x="4.4088%" y="149" width="0.0211%" height="15" fill="rgb(219,133,21)" fg:x="67844" fg:w="324"/><text x="4.6588%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (319 samples, 0.02%)</title><rect x="4.4091%" y="133" width="0.0207%" height="15" fill="rgb(246,46,29)" fg:x="67849" fg:w="319"/><text x="4.6591%" y="143.50"></text></g><g><title>Parse::do_all_blocks (329 samples, 0.02%)</title><rect x="4.4088%" y="165" width="0.0214%" height="15" fill="rgb(246,185,52)" fg:x="67844" fg:w="329"/><text x="4.6588%" y="175.50"></text></g><g><title>ParseGenerator::generate (353 samples, 0.02%)</title><rect x="4.4078%" y="197" width="0.0229%" height="15" fill="rgb(252,136,11)" fg:x="67830" fg:w="353"/><text x="4.6578%" y="207.50"></text></g><g><title>Parse::Parse (352 samples, 0.02%)</title><rect x="4.4079%" y="181" width="0.0229%" height="15" fill="rgb(219,138,53)" fg:x="67831" fg:w="352"/><text x="4.6579%" y="191.50"></text></g><g><title>Parse::do_call (486 samples, 0.03%)</title><rect x="4.4026%" y="213" width="0.0316%" height="15" fill="rgb(211,51,23)" fg:x="67749" fg:w="486"/><text x="4.6526%" y="223.50"></text></g><g><title>Parse::do_one_block (568 samples, 0.04%)</title><rect x="4.4021%" y="245" width="0.0369%" height="15" fill="rgb(247,221,28)" fg:x="67741" fg:w="568"/><text x="4.6521%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (568 samples, 0.04%)</title><rect x="4.4021%" y="229" width="0.0369%" height="15" fill="rgb(251,222,45)" fg:x="67741" fg:w="568"/><text x="4.6521%" y="239.50"></text></g><g><title>Parse::do_all_blocks (569 samples, 0.04%)</title><rect x="4.4021%" y="261" width="0.0370%" height="15" fill="rgb(217,162,53)" fg:x="67741" fg:w="569"/><text x="4.6521%" y="271.50"></text></g><g><title>ParseGenerator::generate (577 samples, 0.04%)</title><rect x="4.4016%" y="293" width="0.0375%" height="15" fill="rgb(229,93,14)" fg:x="67734" fg:w="577"/><text x="4.6516%" y="303.50"></text></g><g><title>Parse::Parse (577 samples, 0.04%)</title><rect x="4.4016%" y="277" width="0.0375%" height="15" fill="rgb(209,67,49)" fg:x="67734" fg:w="577"/><text x="4.6516%" y="287.50"></text></g><g><title>Parse::do_call (685 samples, 0.04%)</title><rect x="4.3989%" y="309" width="0.0445%" height="15" fill="rgb(213,87,29)" fg:x="67693" fg:w="685"/><text x="4.6489%" y="319.50"></text></g><g><title>ParseGenerator::generate (705 samples, 0.05%)</title><rect x="4.3987%" y="389" width="0.0458%" height="15" fill="rgb(205,151,52)" fg:x="67690" fg:w="705"/><text x="4.6487%" y="399.50"></text></g><g><title>Parse::Parse (705 samples, 0.05%)</title><rect x="4.3987%" y="373" width="0.0458%" height="15" fill="rgb(253,215,39)" fg:x="67690" fg:w="705"/><text x="4.6487%" y="383.50"></text></g><g><title>Parse::do_all_blocks (704 samples, 0.05%)</title><rect x="4.3988%" y="357" width="0.0457%" height="15" fill="rgb(221,220,41)" fg:x="67691" fg:w="704"/><text x="4.6488%" y="367.50"></text></g><g><title>Parse::do_one_block (704 samples, 0.05%)</title><rect x="4.3988%" y="341" width="0.0457%" height="15" fill="rgb(218,133,21)" fg:x="67691" fg:w="704"/><text x="4.6488%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (704 samples, 0.05%)</title><rect x="4.3988%" y="325" width="0.0457%" height="15" fill="rgb(221,193,43)" fg:x="67691" fg:w="704"/><text x="4.6488%" y="335.50"></text></g><g><title>Parse::do_call (864 samples, 0.06%)</title><rect x="4.3964%" y="405" width="0.0561%" height="15" fill="rgb(240,128,52)" fg:x="67654" fg:w="864"/><text x="4.6464%" y="415.50"></text></g><g><title>ParseGenerator::generate (865 samples, 0.06%)</title><rect x="4.3964%" y="485" width="0.0562%" height="15" fill="rgb(253,114,12)" fg:x="67654" fg:w="865"/><text x="4.6464%" y="495.50"></text></g><g><title>Parse::Parse (865 samples, 0.06%)</title><rect x="4.3964%" y="469" width="0.0562%" height="15" fill="rgb(215,223,47)" fg:x="67654" fg:w="865"/><text x="4.6464%" y="479.50"></text></g><g><title>Parse::do_all_blocks (865 samples, 0.06%)</title><rect x="4.3964%" y="453" width="0.0562%" height="15" fill="rgb(248,225,23)" fg:x="67654" fg:w="865"/><text x="4.6464%" y="463.50"></text></g><g><title>Parse::do_one_block (865 samples, 0.06%)</title><rect x="4.3964%" y="437" width="0.0562%" height="15" fill="rgb(250,108,0)" fg:x="67654" fg:w="865"/><text x="4.6464%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (865 samples, 0.06%)</title><rect x="4.3964%" y="421" width="0.0562%" height="15" fill="rgb(228,208,7)" fg:x="67654" fg:w="865"/><text x="4.6464%" y="431.50"></text></g><g><title>ParseGenerator::generate (165 samples, 0.01%)</title><rect x="4.4526%" y="469" width="0.0107%" height="15" fill="rgb(244,45,10)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="479.50"></text></g><g><title>Parse::Parse (165 samples, 0.01%)</title><rect x="4.4526%" y="453" width="0.0107%" height="15" fill="rgb(207,125,25)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="463.50"></text></g><g><title>Parse::do_all_blocks (165 samples, 0.01%)</title><rect x="4.4526%" y="437" width="0.0107%" height="15" fill="rgb(210,195,18)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="447.50"></text></g><g><title>Parse::do_one_block (165 samples, 0.01%)</title><rect x="4.4526%" y="421" width="0.0107%" height="15" fill="rgb(249,80,12)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (165 samples, 0.01%)</title><rect x="4.4526%" y="405" width="0.0107%" height="15" fill="rgb(221,65,9)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="415.50"></text></g><g><title>Parse::do_call (165 samples, 0.01%)</title><rect x="4.4526%" y="389" width="0.0107%" height="15" fill="rgb(235,49,36)" fg:x="68519" fg:w="165"/><text x="4.7026%" y="399.50"></text></g><g><title>ParseGenerator::generate (1,062 samples, 0.07%)</title><rect x="4.3961%" y="581" width="0.0690%" height="15" fill="rgb(225,32,20)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="591.50"></text></g><g><title>Parse::Parse (1,062 samples, 0.07%)</title><rect x="4.3961%" y="565" width="0.0690%" height="15" fill="rgb(215,141,46)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,062 samples, 0.07%)</title><rect x="4.3961%" y="549" width="0.0690%" height="15" fill="rgb(250,160,47)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="559.50"></text></g><g><title>Parse::do_one_block (1,062 samples, 0.07%)</title><rect x="4.3961%" y="533" width="0.0690%" height="15" fill="rgb(216,222,40)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,062 samples, 0.07%)</title><rect x="4.3961%" y="517" width="0.0690%" height="15" fill="rgb(234,217,39)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="527.50"></text></g><g><title>Parse::do_call (1,062 samples, 0.07%)</title><rect x="4.3961%" y="501" width="0.0690%" height="15" fill="rgb(207,178,40)" fg:x="67650" fg:w="1062"/><text x="4.6461%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (193 samples, 0.01%)</title><rect x="4.4526%" y="485" width="0.0125%" height="15" fill="rgb(221,136,13)" fg:x="68519" fg:w="193"/><text x="4.7026%" y="495.50"></text></g><g><title>Parse::do_call (177 samples, 0.01%)</title><rect x="4.4661%" y="293" width="0.0115%" height="15" fill="rgb(249,199,10)" fg:x="68726" fg:w="177"/><text x="4.7161%" y="303.50"></text></g><g><title>ParseGenerator::generate (182 samples, 0.01%)</title><rect x="4.4660%" y="373" width="0.0118%" height="15" fill="rgb(249,222,13)" fg:x="68725" fg:w="182"/><text x="4.7160%" y="383.50"></text></g><g><title>Parse::Parse (182 samples, 0.01%)</title><rect x="4.4660%" y="357" width="0.0118%" height="15" fill="rgb(244,185,38)" fg:x="68725" fg:w="182"/><text x="4.7160%" y="367.50"></text></g><g><title>Parse::do_all_blocks (182 samples, 0.01%)</title><rect x="4.4660%" y="341" width="0.0118%" height="15" fill="rgb(236,202,9)" fg:x="68725" fg:w="182"/><text x="4.7160%" y="351.50"></text></g><g><title>Parse::do_one_block (182 samples, 0.01%)</title><rect x="4.4660%" y="325" width="0.0118%" height="15" fill="rgb(250,229,37)" fg:x="68725" fg:w="182"/><text x="4.7160%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (182 samples, 0.01%)</title><rect x="4.4660%" y="309" width="0.0118%" height="15" fill="rgb(206,174,23)" fg:x="68725" fg:w="182"/><text x="4.7160%" y="319.50"></text></g><g><title>Parse::do_call (212 samples, 0.01%)</title><rect x="4.4654%" y="389" width="0.0138%" height="15" fill="rgb(211,33,43)" fg:x="68715" fg:w="212"/><text x="4.7154%" y="399.50"></text></g><g><title>ParseGenerator::generate (213 samples, 0.01%)</title><rect x="4.4654%" y="469" width="0.0138%" height="15" fill="rgb(245,58,50)" fg:x="68715" fg:w="213"/><text x="4.7154%" y="479.50"></text></g><g><title>Parse::Parse (213 samples, 0.01%)</title><rect x="4.4654%" y="453" width="0.0138%" height="15" fill="rgb(244,68,36)" fg:x="68715" fg:w="213"/><text x="4.7154%" y="463.50"></text></g><g><title>Parse::do_all_blocks (213 samples, 0.01%)</title><rect x="4.4654%" y="437" width="0.0138%" height="15" fill="rgb(232,229,15)" fg:x="68715" fg:w="213"/><text x="4.7154%" y="447.50"></text></g><g><title>Parse::do_one_block (213 samples, 0.01%)</title><rect x="4.4654%" y="421" width="0.0138%" height="15" fill="rgb(254,30,23)" fg:x="68715" fg:w="213"/><text x="4.7154%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (213 samples, 0.01%)</title><rect x="4.4654%" y="405" width="0.0138%" height="15" fill="rgb(235,160,14)" fg:x="68715" fg:w="213"/><text x="4.7154%" y="415.50"></text></g><g><title>ParseGenerator::generate (254 samples, 0.02%)</title><rect x="4.4652%" y="565" width="0.0165%" height="15" fill="rgb(212,155,44)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="575.50"></text></g><g><title>Parse::Parse (254 samples, 0.02%)</title><rect x="4.4652%" y="549" width="0.0165%" height="15" fill="rgb(226,2,50)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="559.50"></text></g><g><title>Parse::do_all_blocks (254 samples, 0.02%)</title><rect x="4.4652%" y="533" width="0.0165%" height="15" fill="rgb(234,177,6)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="543.50"></text></g><g><title>Parse::do_one_block (254 samples, 0.02%)</title><rect x="4.4652%" y="517" width="0.0165%" height="15" fill="rgb(217,24,9)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (254 samples, 0.02%)</title><rect x="4.4652%" y="501" width="0.0165%" height="15" fill="rgb(220,13,46)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="511.50"></text></g><g><title>Parse::do_call (254 samples, 0.02%)</title><rect x="4.4652%" y="485" width="0.0165%" height="15" fill="rgb(239,221,27)" fg:x="68712" fg:w="254"/><text x="4.7152%" y="495.50"></text></g><g><title>Parse::do_call (1,383 samples, 0.09%)</title><rect x="4.3957%" y="597" width="0.0899%" height="15" fill="rgb(222,198,25)" fg:x="67643" fg:w="1383"/><text x="4.6457%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (314 samples, 0.02%)</title><rect x="4.4652%" y="581" width="0.0204%" height="15" fill="rgb(211,99,13)" fg:x="68712" fg:w="314"/><text x="4.7152%" y="591.50"></text></g><g><title>Compile::Compile (47,041 samples, 3.06%)</title><rect x="1.4287%" y="693" width="3.0569%" height="15" fill="rgb(232,111,31)" fg:x="21986" fg:w="47041"/><text x="1.6787%" y="703.50">Com..</text></g><g><title>ParseGenerator::generate (1,384 samples, 0.09%)</title><rect x="4.3957%" y="677" width="0.0899%" height="15" fill="rgb(245,82,37)" fg:x="67643" fg:w="1384"/><text x="4.6457%" y="687.50"></text></g><g><title>Parse::Parse (1,384 samples, 0.09%)</title><rect x="4.3957%" y="661" width="0.0899%" height="15" fill="rgb(227,149,46)" fg:x="67643" fg:w="1384"/><text x="4.6457%" y="671.50"></text></g><g><title>Parse::do_all_blocks (1,384 samples, 0.09%)</title><rect x="4.3957%" y="645" width="0.0899%" height="15" fill="rgb(218,36,50)" fg:x="67643" fg:w="1384"/><text x="4.6457%" y="655.50"></text></g><g><title>Parse::do_one_block (1,384 samples, 0.09%)</title><rect x="4.3957%" y="629" width="0.0899%" height="15" fill="rgb(226,80,48)" fg:x="67643" fg:w="1384"/><text x="4.6457%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (1,384 samples, 0.09%)</title><rect x="4.3957%" y="613" width="0.0899%" height="15" fill="rgb(238,224,15)" fg:x="67643" fg:w="1384"/><text x="4.6457%" y="623.50"></text></g><g><title>Compile::final_graph_reshaping (347 samples, 0.02%)</title><rect x="4.4858%" y="677" width="0.0225%" height="15" fill="rgb(241,136,10)" fg:x="69029" fg:w="347"/><text x="4.7358%" y="687.50"></text></g><g><title>Compile::final_graph_reshaping_walk (337 samples, 0.02%)</title><rect x="4.4864%" y="661" width="0.0219%" height="15" fill="rgb(208,32,45)" fg:x="69039" fg:w="337"/><text x="4.7364%" y="671.50"></text></g><g><title>Compile::remove_speculative_types (279 samples, 0.02%)</title><rect x="4.5111%" y="677" width="0.0181%" height="15" fill="rgb(207,135,9)" fg:x="69419" fg:w="279"/><text x="4.7611%" y="687.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (173 samples, 0.01%)</title><rect x="4.5494%" y="645" width="0.0112%" height="15" fill="rgb(206,86,44)" fg:x="70008" fg:w="173"/><text x="4.7994%" y="655.50"></text></g><g><title>ConnectionGraph::compute_escape (646 samples, 0.04%)</title><rect x="4.5294%" y="661" width="0.0420%" height="15" fill="rgb(245,177,15)" fg:x="69701" fg:w="646"/><text x="4.7794%" y="671.50"></text></g><g><title>ConnectionGraph::do_analysis (651 samples, 0.04%)</title><rect x="4.5292%" y="677" width="0.0423%" height="15" fill="rgb(206,64,50)" fg:x="69698" fg:w="651"/><text x="4.7792%" y="687.50"></text></g><g><title>PhaseCCP::analyze (879 samples, 0.06%)</title><rect x="4.5716%" y="677" width="0.0571%" height="15" fill="rgb(234,36,40)" fg:x="70350" fg:w="879"/><text x="4.8216%" y="687.50"></text></g><g><title>PhaseCCP::do_transform (249 samples, 0.02%)</title><rect x="4.6287%" y="677" width="0.0162%" height="15" fill="rgb(213,64,8)" fg:x="71229" fg:w="249"/><text x="4.8787%" y="687.50"></text></g><g><title>PhaseCCP::transform (249 samples, 0.02%)</title><rect x="4.6287%" y="661" width="0.0162%" height="15" fill="rgb(210,75,36)" fg:x="71229" fg:w="249"/><text x="4.8787%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (184 samples, 0.01%)</title><rect x="4.6557%" y="629" width="0.0120%" height="15" fill="rgb(229,88,21)" fg:x="71644" fg:w="184"/><text x="4.9057%" y="639.50"></text></g><g><title>IdealLoopTree::iteration_split (242 samples, 0.02%)</title><rect x="4.6555%" y="645" width="0.0157%" height="15" fill="rgb(252,204,47)" fg:x="71641" fg:w="242"/><text x="4.9055%" y="655.50"></text></g><g><title>IdealLoopTree::iteration_split (281 samples, 0.02%)</title><rect x="4.6546%" y="661" width="0.0183%" height="15" fill="rgb(208,77,27)" fg:x="71627" fg:w="281"/><text x="4.9046%" y="671.50"></text></g><g><title>IdealLoopTree::loop_predication (303 samples, 0.02%)</title><rect x="4.6728%" y="661" width="0.0197%" height="15" fill="rgb(221,76,26)" fg:x="71908" fg:w="303"/><text x="4.9228%" y="671.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (217 samples, 0.01%)</title><rect x="4.6784%" y="645" width="0.0141%" height="15" fill="rgb(225,139,18)" fg:x="71994" fg:w="217"/><text x="4.9284%" y="655.50"></text></g><g><title>NTarjan::DFS (392 samples, 0.03%)</title><rect x="4.7502%" y="645" width="0.0255%" height="15" fill="rgb(230,137,11)" fg:x="73099" fg:w="392"/><text x="5.0002%" y="655.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,300 samples, 0.08%)</title><rect x="4.6957%" y="661" width="0.0845%" height="15" fill="rgb(212,28,1)" fg:x="72259" fg:w="1300"/><text x="4.9457%" y="671.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (454 samples, 0.03%)</title><rect x="4.8684%" y="629" width="0.0295%" height="15" fill="rgb(248,164,17)" fg:x="74917" fg:w="454"/><text x="5.1184%" y="639.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (207 samples, 0.01%)</title><rect x="4.8844%" y="613" width="0.0135%" height="15" fill="rgb(222,171,42)" fg:x="75164" fg:w="207"/><text x="5.1344%" y="623.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (499 samples, 0.03%)</title><rect x="4.8655%" y="645" width="0.0324%" height="15" fill="rgb(243,84,45)" fg:x="74873" fg:w="499"/><text x="5.1155%" y="655.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,916 samples, 0.12%)</title><rect x="4.7801%" y="661" width="0.1245%" height="15" fill="rgb(252,49,23)" fg:x="73559" fg:w="1916"/><text x="5.0301%" y="671.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (286 samples, 0.02%)</title><rect x="5.0999%" y="597" width="0.0186%" height="15" fill="rgb(215,19,7)" fg:x="78479" fg:w="286"/><text x="5.3499%" y="607.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (423 samples, 0.03%)</title><rect x="5.0935%" y="613" width="0.0275%" height="15" fill="rgb(238,81,41)" fg:x="78381" fg:w="423"/><text x="5.3435%" y="623.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (154 samples, 0.01%)</title><rect x="5.1211%" y="613" width="0.0100%" height="15" fill="rgb(210,199,37)" fg:x="78806" fg:w="154"/><text x="5.3711%" y="623.50"></text></g><g><title>PhaseIdealLoop::dom_depth (674 samples, 0.04%)</title><rect x="5.2906%" y="597" width="0.0438%" height="15" fill="rgb(244,192,49)" fg:x="81414" fg:w="674"/><text x="5.5406%" y="607.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,094 samples, 0.20%)</title><rect x="5.1334%" y="613" width="0.2011%" height="15" fill="rgb(226,211,11)" fg:x="78995" fg:w="3094"/><text x="5.3834%" y="623.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,297 samples, 0.28%)</title><rect x="5.0566%" y="629" width="0.2792%" height="15" fill="rgb(236,162,54)" fg:x="77814" fg:w="4297"/><text x="5.3066%" y="639.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,320 samples, 0.35%)</title><rect x="4.9979%" y="645" width="0.3457%" height="15" fill="rgb(220,229,9)" fg:x="76910" fg:w="5320"/><text x="5.2479%" y="655.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (6,786 samples, 0.44%)</title><rect x="4.9046%" y="661" width="0.4410%" height="15" fill="rgb(250,87,22)" fg:x="75475" fg:w="6786"/><text x="5.1546%" y="671.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (256 samples, 0.02%)</title><rect x="5.3946%" y="645" width="0.0166%" height="15" fill="rgb(239,43,17)" fg:x="83014" fg:w="256"/><text x="5.6446%" y="655.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,023 samples, 0.07%)</title><rect x="5.3461%" y="661" width="0.0665%" height="15" fill="rgb(231,177,25)" fg:x="82268" fg:w="1023"/><text x="5.5961%" y="671.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (276 samples, 0.02%)</title><rect x="5.4617%" y="645" width="0.0179%" height="15" fill="rgb(219,179,1)" fg:x="84047" fg:w="276"/><text x="5.7117%" y="655.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (201 samples, 0.01%)</title><rect x="5.5051%" y="629" width="0.0131%" height="15" fill="rgb(238,219,53)" fg:x="84715" fg:w="201"/><text x="5.7551%" y="639.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (211 samples, 0.01%)</title><rect x="5.5182%" y="629" width="0.0137%" height="15" fill="rgb(232,167,36)" fg:x="84916" fg:w="211"/><text x="5.7682%" y="639.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (847 samples, 0.06%)</title><rect x="5.4796%" y="645" width="0.0550%" height="15" fill="rgb(244,19,51)" fg:x="84323" fg:w="847"/><text x="5.7296%" y="655.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,839 samples, 0.12%)</title><rect x="5.4159%" y="661" width="0.1195%" height="15" fill="rgb(224,6,22)" fg:x="83343" fg:w="1839"/><text x="5.6659%" y="671.50"></text></g><g><title>NodeHash::hash_find_insert (177 samples, 0.01%)</title><rect x="5.5797%" y="629" width="0.0115%" height="15" fill="rgb(224,145,5)" fg:x="85863" fg:w="177"/><text x="5.8297%" y="639.50"></text></g><g><title>RegionNode::Ideal (285 samples, 0.02%)</title><rect x="5.6115%" y="629" width="0.0185%" height="15" fill="rgb(234,130,49)" fg:x="86352" fg:w="285"/><text x="5.8615%" y="639.50"></text></g><g><title>PhaseIterGVN::transform_old (1,556 samples, 0.10%)</title><rect x="5.5391%" y="645" width="0.1011%" height="15" fill="rgb(254,6,2)" fg:x="85239" fg:w="1556"/><text x="5.7891%" y="655.50"></text></g><g><title>PhaseIterGVN::optimize (1,625 samples, 0.11%)</title><rect x="5.5355%" y="661" width="0.1056%" height="15" fill="rgb(208,96,46)" fg:x="85183" fg:w="1625"/><text x="5.7855%" y="671.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (15,450 samples, 1.00%)</title><rect x="4.6467%" y="677" width="1.0040%" height="15" fill="rgb(239,3,39)" fg:x="71506" fg:w="15450"/><text x="4.8967%" y="687.50"></text></g><g><title>IfNode::Ideal (362 samples, 0.02%)</title><rect x="5.6871%" y="645" width="0.0235%" height="15" fill="rgb(233,210,1)" fg:x="87515" fg:w="362"/><text x="5.9371%" y="655.50"></text></g><g><title>LoadNode::Ideal (208 samples, 0.01%)</title><rect x="5.7132%" y="645" width="0.0135%" height="15" fill="rgb(244,137,37)" fg:x="87917" fg:w="208"/><text x="5.9632%" y="655.50"></text></g><g><title>NodeHash::hash_find_insert (212 samples, 0.01%)</title><rect x="5.7393%" y="645" width="0.0138%" height="15" fill="rgb(240,136,2)" fg:x="88319" fg:w="212"/><text x="5.9893%" y="655.50"></text></g><g><title>PhaseIterGVN::subsume_node (234 samples, 0.02%)</title><rect x="5.7582%" y="645" width="0.0152%" height="15" fill="rgb(239,18,37)" fg:x="88610" fg:w="234"/><text x="6.0082%" y="655.50"></text></g><g><title>RegionNode::Ideal (374 samples, 0.02%)</title><rect x="5.7894%" y="645" width="0.0243%" height="15" fill="rgb(218,185,22)" fg:x="89090" fg:w="374"/><text x="6.0394%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (172 samples, 0.01%)</title><rect x="5.8153%" y="469" width="0.0112%" height="15" fill="rgb(225,218,4)" fg:x="89488" fg:w="172"/><text x="6.0653%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (183 samples, 0.01%)</title><rect x="5.8153%" y="485" width="0.0119%" height="15" fill="rgb(230,182,32)" fg:x="89488" fg:w="183"/><text x="6.0653%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (203 samples, 0.01%)</title><rect x="5.8153%" y="501" width="0.0132%" height="15" fill="rgb(242,56,43)" fg:x="89488" fg:w="203"/><text x="6.0653%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (220 samples, 0.01%)</title><rect x="5.8152%" y="517" width="0.0143%" height="15" fill="rgb(233,99,24)" fg:x="89487" fg:w="220"/><text x="6.0652%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (237 samples, 0.02%)</title><rect x="5.8152%" y="533" width="0.0154%" height="15" fill="rgb(234,209,42)" fg:x="89487" fg:w="237"/><text x="6.0652%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (253 samples, 0.02%)</title><rect x="5.8151%" y="549" width="0.0164%" height="15" fill="rgb(227,7,12)" fg:x="89486" fg:w="253"/><text x="6.0651%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (264 samples, 0.02%)</title><rect x="5.8151%" y="565" width="0.0172%" height="15" fill="rgb(245,203,43)" fg:x="89486" fg:w="264"/><text x="6.0651%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (290 samples, 0.02%)</title><rect x="5.8151%" y="581" width="0.0188%" height="15" fill="rgb(238,205,33)" fg:x="89486" fg:w="290"/><text x="6.0651%" y="591.50"></text></g><g><title>InitializeNode::can_capture_store (328 samples, 0.02%)</title><rect x="5.8151%" y="629" width="0.0213%" height="15" fill="rgb(231,56,7)" fg:x="89485" fg:w="328"/><text x="6.0651%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (327 samples, 0.02%)</title><rect x="5.8151%" y="613" width="0.0212%" height="15" fill="rgb(244,186,29)" fg:x="89486" fg:w="327"/><text x="6.0651%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (327 samples, 0.02%)</title><rect x="5.8151%" y="597" width="0.0212%" height="15" fill="rgb(234,111,31)" fg:x="89486" fg:w="327"/><text x="6.0651%" y="607.50"></text></g><g><title>StoreNode::Ideal (361 samples, 0.02%)</title><rect x="5.8149%" y="645" width="0.0235%" height="15" fill="rgb(241,149,10)" fg:x="89483" fg:w="361"/><text x="6.0649%" y="655.50"></text></g><g><title>PhaseIterGVN::transform_old (2,725 samples, 0.18%)</title><rect x="5.6648%" y="661" width="0.1771%" height="15" fill="rgb(249,206,44)" fg:x="87173" fg:w="2725"/><text x="5.9148%" y="671.50"></text></g><g><title>PhaseIterGVN::optimize (2,831 samples, 0.18%)</title><rect x="5.6598%" y="677" width="0.1840%" height="15" fill="rgb(251,153,30)" fg:x="87095" fg:w="2831"/><text x="5.9098%" y="687.50"></text></g><g><title>PhaseIterGVN::transform_old (288 samples, 0.02%)</title><rect x="5.8470%" y="645" width="0.0187%" height="15" fill="rgb(239,152,38)" fg:x="89977" fg:w="288"/><text x="6.0970%" y="655.50"></text></g><g><title>PhaseIterGVN::optimize (298 samples, 0.02%)</title><rect x="5.8465%" y="661" width="0.0194%" height="15" fill="rgb(249,139,47)" fg:x="89968" fg:w="298"/><text x="6.0965%" y="671.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (470 samples, 0.03%)</title><rect x="5.8459%" y="677" width="0.0305%" height="15" fill="rgb(244,64,35)" fg:x="89959" fg:w="470"/><text x="6.0959%" y="687.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (171 samples, 0.01%)</title><rect x="5.8764%" y="677" width="0.0111%" height="15" fill="rgb(216,46,15)" fg:x="90429" fg:w="171"/><text x="6.1264%" y="687.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (161 samples, 0.01%)</title><rect x="5.8771%" y="661" width="0.0105%" height="15" fill="rgb(250,74,19)" fg:x="90439" fg:w="161"/><text x="6.1271%" y="671.50"></text></g><g><title>Compile::Optimize (21,582 samples, 1.40%)</title><rect x="4.4856%" y="693" width="1.4025%" height="15" fill="rgb(249,42,33)" fg:x="69027" fg:w="21582"/><text x="4.7356%" y="703.50"></text></g><g><title>Parse::do_one_block (208 samples, 0.01%)</title><rect x="5.8898%" y="581" width="0.0135%" height="15" fill="rgb(242,149,17)" fg:x="90635" fg:w="208"/><text x="6.1398%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (184 samples, 0.01%)</title><rect x="5.8914%" y="565" width="0.0120%" height="15" fill="rgb(244,29,21)" fg:x="90659" fg:w="184"/><text x="6.1414%" y="575.50"></text></g><g><title>Parse::do_all_blocks (214 samples, 0.01%)</title><rect x="5.8897%" y="597" width="0.0139%" height="15" fill="rgb(220,130,37)" fg:x="90633" fg:w="214"/><text x="6.1397%" y="607.50"></text></g><g><title>ParseGenerator::generate (226 samples, 0.01%)</title><rect x="5.8897%" y="629" width="0.0147%" height="15" fill="rgb(211,67,2)" fg:x="90633" fg:w="226"/><text x="6.1397%" y="639.50"></text></g><g><title>Parse::Parse (226 samples, 0.01%)</title><rect x="5.8897%" y="613" width="0.0147%" height="15" fill="rgb(235,68,52)" fg:x="90633" fg:w="226"/><text x="6.1397%" y="623.50"></text></g><g><title>CompileBroker::compiler_thread_loop (269 samples, 0.02%)</title><rect x="5.8884%" y="693" width="0.0175%" height="15" fill="rgb(246,142,3)" fg:x="90614" fg:w="269"/><text x="6.1384%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (269 samples, 0.02%)</title><rect x="5.8884%" y="677" width="0.0175%" height="15" fill="rgb(241,25,7)" fg:x="90614" fg:w="269"/><text x="6.1384%" y="687.50"></text></g><g><title>C2Compiler::compile_method (269 samples, 0.02%)</title><rect x="5.8884%" y="661" width="0.0175%" height="15" fill="rgb(242,119,39)" fg:x="90614" fg:w="269"/><text x="6.1384%" y="671.50"></text></g><g><title>Compile::Compile (269 samples, 0.02%)</title><rect x="5.8884%" y="645" width="0.0175%" height="15" fill="rgb(241,98,45)" fg:x="90614" fg:w="269"/><text x="6.1384%" y="655.50"></text></g><g><title>Parse::do_all_blocks (161 samples, 0.01%)</title><rect x="5.9293%" y="517" width="0.0105%" height="15" fill="rgb(254,28,30)" fg:x="91243" fg:w="161"/><text x="6.1793%" y="527.50"></text></g><g><title>ParseGenerator::generate (248 samples, 0.02%)</title><rect x="5.9261%" y="549" width="0.0161%" height="15" fill="rgb(241,142,54)" fg:x="91193" fg:w="248"/><text x="6.1761%" y="559.50"></text></g><g><title>Parse::Parse (248 samples, 0.02%)</title><rect x="5.9261%" y="533" width="0.0161%" height="15" fill="rgb(222,85,15)" fg:x="91193" fg:w="248"/><text x="6.1761%" y="543.50"></text></g><g><title>Parse::do_call (536 samples, 0.03%)</title><rect x="5.9153%" y="565" width="0.0348%" height="15" fill="rgb(210,85,47)" fg:x="91028" fg:w="536"/><text x="6.1653%" y="575.50"></text></g><g><title>Parse::do_one_block (776 samples, 0.05%)</title><rect x="5.9127%" y="597" width="0.0504%" height="15" fill="rgb(224,206,25)" fg:x="90987" fg:w="776"/><text x="6.1627%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (772 samples, 0.05%)</title><rect x="5.9129%" y="581" width="0.0502%" height="15" fill="rgb(243,201,19)" fg:x="90991" fg:w="772"/><text x="6.1629%" y="591.50"></text></g><g><title>Parse::do_all_blocks (777 samples, 0.05%)</title><rect x="5.9127%" y="613" width="0.0505%" height="15" fill="rgb(236,59,4)" fg:x="90987" fg:w="777"/><text x="6.1627%" y="623.50"></text></g><g><title>ParseGenerator::generate (792 samples, 0.05%)</title><rect x="5.9127%" y="645" width="0.0515%" height="15" fill="rgb(254,179,45)" fg:x="90987" fg:w="792"/><text x="6.1627%" y="655.50"></text></g><g><title>Parse::Parse (792 samples, 0.05%)</title><rect x="5.9127%" y="629" width="0.0515%" height="15" fill="rgb(226,14,10)" fg:x="90987" fg:w="792"/><text x="6.1627%" y="639.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (925 samples, 0.06%)</title><rect x="5.9059%" y="693" width="0.0601%" height="15" fill="rgb(244,27,41)" fg:x="90883" fg:w="925"/><text x="6.1559%" y="703.50"></text></g><g><title>C2Compiler::compile_method (925 samples, 0.06%)</title><rect x="5.9059%" y="677" width="0.0601%" height="15" fill="rgb(235,35,32)" fg:x="90883" fg:w="925"/><text x="6.1559%" y="687.50"></text></g><g><title>Compile::Compile (925 samples, 0.06%)</title><rect x="5.9059%" y="661" width="0.0601%" height="15" fill="rgb(218,68,31)" fg:x="90883" fg:w="925"/><text x="6.1559%" y="671.50"></text></g><g><title>ParseGenerator::generate (204 samples, 0.01%)</title><rect x="5.9983%" y="597" width="0.0133%" height="15" fill="rgb(207,120,37)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="607.50"></text></g><g><title>Parse::Parse (204 samples, 0.01%)</title><rect x="5.9983%" y="581" width="0.0133%" height="15" fill="rgb(227,98,0)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="591.50"></text></g><g><title>Parse::do_all_blocks (204 samples, 0.01%)</title><rect x="5.9983%" y="565" width="0.0133%" height="15" fill="rgb(207,7,3)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="575.50"></text></g><g><title>Parse::do_one_block (204 samples, 0.01%)</title><rect x="5.9983%" y="549" width="0.0133%" height="15" fill="rgb(206,98,19)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (204 samples, 0.01%)</title><rect x="5.9983%" y="533" width="0.0133%" height="15" fill="rgb(217,5,26)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="543.50"></text></g><g><title>Parse::do_call (204 samples, 0.01%)</title><rect x="5.9983%" y="517" width="0.0133%" height="15" fill="rgb(235,190,38)" fg:x="92305" fg:w="204"/><text x="6.2483%" y="527.50"></text></g><g><title>ParseGenerator::generate (244 samples, 0.02%)</title><rect x="5.9983%" y="693" width="0.0159%" height="15" fill="rgb(247,86,24)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="703.50"></text></g><g><title>Parse::Parse (244 samples, 0.02%)</title><rect x="5.9983%" y="677" width="0.0159%" height="15" fill="rgb(205,101,16)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="687.50"></text></g><g><title>Parse::do_all_blocks (244 samples, 0.02%)</title><rect x="5.9983%" y="661" width="0.0159%" height="15" fill="rgb(246,168,33)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="671.50"></text></g><g><title>Parse::do_one_block (244 samples, 0.02%)</title><rect x="5.9983%" y="645" width="0.0159%" height="15" fill="rgb(231,114,1)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (244 samples, 0.02%)</title><rect x="5.9983%" y="629" width="0.0159%" height="15" fill="rgb(207,184,53)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="639.50"></text></g><g><title>Parse::do_call (244 samples, 0.02%)</title><rect x="5.9983%" y="613" width="0.0159%" height="15" fill="rgb(224,95,51)" fg:x="92305" fg:w="244"/><text x="6.2483%" y="623.50"></text></g><g><title>[unknown] (74,105 samples, 4.82%)</title><rect x="1.2208%" y="709" width="4.8156%" height="15" fill="rgb(212,188,45)" fg:x="18787" fg:w="74105"/><text x="1.4708%" y="719.50">[unkno..</text></g><g><title>Compile::identify_useful_nodes (201 samples, 0.01%)</title><rect x="6.0565%" y="549" width="0.0131%" height="15" fill="rgb(223,154,38)" fg:x="93201" fg:w="201"/><text x="6.3065%" y="559.50"></text></g><g><title>Compile::remove_useless_nodes (223 samples, 0.01%)</title><rect x="6.0696%" y="549" width="0.0145%" height="15" fill="rgb(251,22,52)" fg:x="93402" fg:w="223"/><text x="6.3196%" y="559.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (535 samples, 0.03%)</title><rect x="6.0533%" y="565" width="0.0348%" height="15" fill="rgb(229,209,22)" fg:x="93151" fg:w="535"/><text x="6.3033%" y="575.50"></text></g><g><title>C2Compiler::compile_method (800 samples, 0.05%)</title><rect x="6.0400%" y="597" width="0.0520%" height="15" fill="rgb(234,138,34)" fg:x="92946" fg:w="800"/><text x="6.2900%" y="607.50"></text></g><g><title>Compile::Compile (792 samples, 0.05%)</title><rect x="6.0405%" y="581" width="0.0515%" height="15" fill="rgb(212,95,11)" fg:x="92954" fg:w="792"/><text x="6.2905%" y="591.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,022 samples, 0.07%)</title><rect x="6.0397%" y="613" width="0.0664%" height="15" fill="rgb(240,179,47)" fg:x="92942" fg:w="1022"/><text x="6.2897%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (206 samples, 0.01%)</title><rect x="6.1139%" y="357" width="0.0134%" height="15" fill="rgb(240,163,11)" fg:x="94083" fg:w="206"/><text x="6.3639%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (205 samples, 0.01%)</title><rect x="6.1139%" y="341" width="0.0133%" height="15" fill="rgb(236,37,12)" fg:x="94084" fg:w="205"/><text x="6.3639%" y="351.50"></text></g><g><title>native_write_msr (204 samples, 0.01%)</title><rect x="6.1140%" y="325" width="0.0133%" height="15" fill="rgb(232,164,16)" fg:x="94085" fg:w="204"/><text x="6.3640%" y="335.50"></text></g><g><title>finish_task_switch (217 samples, 0.01%)</title><rect x="6.1133%" y="373" width="0.0141%" height="15" fill="rgb(244,205,15)" fg:x="94075" fg:w="217"/><text x="6.3633%" y="383.50"></text></g><g><title>futex_wait_queue_me (252 samples, 0.02%)</title><rect x="6.1117%" y="421" width="0.0164%" height="15" fill="rgb(223,117,47)" fg:x="94050" fg:w="252"/><text x="6.3617%" y="431.50"></text></g><g><title>schedule (244 samples, 0.02%)</title><rect x="6.1122%" y="405" width="0.0159%" height="15" fill="rgb(244,107,35)" fg:x="94058" fg:w="244"/><text x="6.3622%" y="415.50"></text></g><g><title>__schedule (242 samples, 0.02%)</title><rect x="6.1124%" y="389" width="0.0157%" height="15" fill="rgb(205,140,8)" fg:x="94060" fg:w="242"/><text x="6.3624%" y="399.50"></text></g><g><title>do_futex (271 samples, 0.02%)</title><rect x="6.1114%" y="453" width="0.0176%" height="15" fill="rgb(228,84,46)" fg:x="94045" fg:w="271"/><text x="6.3614%" y="463.50"></text></g><g><title>futex_wait (268 samples, 0.02%)</title><rect x="6.1116%" y="437" width="0.0174%" height="15" fill="rgb(254,188,9)" fg:x="94048" fg:w="268"/><text x="6.3616%" y="447.50"></text></g><g><title>do_syscall_64 (274 samples, 0.02%)</title><rect x="6.1113%" y="485" width="0.0178%" height="15" fill="rgb(206,112,54)" fg:x="94043" fg:w="274"/><text x="6.3613%" y="495.50"></text></g><g><title>__x64_sys_futex (274 samples, 0.02%)</title><rect x="6.1113%" y="469" width="0.0178%" height="15" fill="rgb(216,84,49)" fg:x="94043" fg:w="274"/><text x="6.3613%" y="479.50"></text></g><g><title>__pthread_cond_timedwait (288 samples, 0.02%)</title><rect x="6.1105%" y="549" width="0.0187%" height="15" fill="rgb(214,194,35)" fg:x="94031" fg:w="288"/><text x="6.3605%" y="559.50"></text></g><g><title>__pthread_cond_wait_common (288 samples, 0.02%)</title><rect x="6.1105%" y="533" width="0.0187%" height="15" fill="rgb(249,28,3)" fg:x="94031" fg:w="288"/><text x="6.3605%" y="543.50"></text></g><g><title>futex_abstimed_wait_cancelable (286 samples, 0.02%)</title><rect x="6.1106%" y="517" width="0.0186%" height="15" fill="rgb(222,56,52)" fg:x="94033" fg:w="286"/><text x="6.3606%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (280 samples, 0.02%)</title><rect x="6.1110%" y="501" width="0.0182%" height="15" fill="rgb(245,217,50)" fg:x="94039" fg:w="280"/><text x="6.3610%" y="511.50"></text></g><g><title>os::PlatformEvent::park (302 samples, 0.02%)</title><rect x="6.1102%" y="565" width="0.0196%" height="15" fill="rgb(213,201,24)" fg:x="94027" fg:w="302"/><text x="6.3602%" y="575.50"></text></g><g><title>Monitor::IWait (331 samples, 0.02%)</title><rect x="6.1084%" y="581" width="0.0215%" height="15" fill="rgb(248,116,28)" fg:x="93999" fg:w="331"/><text x="6.3584%" y="591.50"></text></g><g><title>Monitor::wait (344 samples, 0.02%)</title><rect x="6.1081%" y="597" width="0.0224%" height="15" fill="rgb(219,72,43)" fg:x="93994" fg:w="344"/><text x="6.3581%" y="607.50"></text></g><g><title>CompileQueue::get (401 samples, 0.03%)</title><rect x="6.1068%" y="613" width="0.0261%" height="15" fill="rgb(209,138,14)" fg:x="93975" fg:w="401"/><text x="6.3568%" y="623.50"></text></g><g><title>Thread::call_run (1,447 samples, 0.09%)</title><rect x="6.0391%" y="661" width="0.0940%" height="15" fill="rgb(222,18,33)" fg:x="92932" fg:w="1447"/><text x="6.2891%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (1,444 samples, 0.09%)</title><rect x="6.0393%" y="645" width="0.0938%" height="15" fill="rgb(213,199,7)" fg:x="92935" fg:w="1444"/><text x="6.2893%" y="655.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,444 samples, 0.09%)</title><rect x="6.0393%" y="629" width="0.0938%" height="15" fill="rgb(250,110,10)" fg:x="92935" fg:w="1444"/><text x="6.2893%" y="639.50"></text></g><g><title>__GI___clone (1,483 samples, 0.10%)</title><rect x="6.0369%" y="709" width="0.0964%" height="15" fill="rgb(248,123,6)" fg:x="92898" fg:w="1483"/><text x="6.2869%" y="719.50"></text></g><g><title>start_thread (1,463 samples, 0.10%)</title><rect x="6.0382%" y="693" width="0.0951%" height="15" fill="rgb(206,91,31)" fg:x="92918" fg:w="1463"/><text x="6.2882%" y="703.50"></text></g><g><title>thread_native_entry (1,463 samples, 0.10%)</title><rect x="6.0382%" y="677" width="0.0951%" height="15" fill="rgb(211,154,13)" fg:x="92918" fg:w="1463"/><text x="6.2882%" y="687.50"></text></g><g><title>C2_CompilerThre (80,189 samples, 5.21%)</title><rect x="0.9311%" y="725" width="5.2110%" height="15" fill="rgb(225,148,7)" fg:x="14328" fg:w="80189"/><text x="1.1811%" y="735.50">C2_Com..</text></g><g><title>[perf-934749.map] (183 samples, 0.01%)</title><rect x="6.1424%" y="709" width="0.0119%" height="15" fill="rgb(220,160,43)" fg:x="94522" fg:w="183"/><text x="6.3924%" y="719.50"></text></g><g><title>Command-Accumul (330 samples, 0.02%)</title><rect x="6.1421%" y="725" width="0.0214%" height="15" fill="rgb(213,52,39)" fg:x="94517" fg:w="330"/><text x="6.3921%" y="735.50"></text></g><g><title>futex_wait_queue_me (265 samples, 0.02%)</title><rect x="6.2082%" y="533" width="0.0172%" height="15" fill="rgb(243,137,7)" fg:x="95534" fg:w="265"/><text x="6.4582%" y="543.50"></text></g><g><title>schedule (245 samples, 0.02%)</title><rect x="6.2095%" y="517" width="0.0159%" height="15" fill="rgb(230,79,13)" fg:x="95554" fg:w="245"/><text x="6.4595%" y="527.50"></text></g><g><title>__schedule (243 samples, 0.02%)</title><rect x="6.2096%" y="501" width="0.0158%" height="15" fill="rgb(247,105,23)" fg:x="95556" fg:w="243"/><text x="6.4596%" y="511.50"></text></g><g><title>do_futex (289 samples, 0.02%)</title><rect x="6.2076%" y="565" width="0.0188%" height="15" fill="rgb(223,179,41)" fg:x="95526" fg:w="289"/><text x="6.4576%" y="575.50"></text></g><g><title>futex_wait (287 samples, 0.02%)</title><rect x="6.2078%" y="549" width="0.0187%" height="15" fill="rgb(218,9,34)" fg:x="95528" fg:w="287"/><text x="6.4578%" y="559.50"></text></g><g><title>__x64_sys_futex (298 samples, 0.02%)</title><rect x="6.2074%" y="581" width="0.0194%" height="15" fill="rgb(222,106,8)" fg:x="95523" fg:w="298"/><text x="6.4574%" y="591.50"></text></g><g><title>do_syscall_64 (299 samples, 0.02%)</title><rect x="6.2074%" y="597" width="0.0194%" height="15" fill="rgb(211,220,0)" fg:x="95523" fg:w="299"/><text x="6.4574%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (335 samples, 0.02%)</title><rect x="6.2058%" y="661" width="0.0218%" height="15" fill="rgb(229,52,16)" fg:x="95498" fg:w="335"/><text x="6.4558%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (335 samples, 0.02%)</title><rect x="6.2058%" y="645" width="0.0218%" height="15" fill="rgb(212,155,18)" fg:x="95498" fg:w="335"/><text x="6.4558%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (321 samples, 0.02%)</title><rect x="6.2067%" y="629" width="0.0209%" height="15" fill="rgb(242,21,14)" fg:x="95512" fg:w="321"/><text x="6.4567%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (311 samples, 0.02%)</title><rect x="6.2074%" y="613" width="0.0202%" height="15" fill="rgb(222,19,48)" fg:x="95522" fg:w="311"/><text x="6.4574%" y="623.50"></text></g><g><title>futex_wait_queue_me (157 samples, 0.01%)</title><rect x="6.2280%" y="533" width="0.0102%" height="15" fill="rgb(232,45,27)" fg:x="95839" fg:w="157"/><text x="6.4780%" y="543.50"></text></g><g><title>schedule (156 samples, 0.01%)</title><rect x="6.2280%" y="517" width="0.0101%" height="15" fill="rgb(249,103,42)" fg:x="95840" fg:w="156"/><text x="6.4780%" y="527.50"></text></g><g><title>__schedule (156 samples, 0.01%)</title><rect x="6.2280%" y="501" width="0.0101%" height="15" fill="rgb(246,81,33)" fg:x="95840" fg:w="156"/><text x="6.4780%" y="511.50"></text></g><g><title>do_syscall_64 (164 samples, 0.01%)</title><rect x="6.2278%" y="597" width="0.0107%" height="15" fill="rgb(252,33,42)" fg:x="95836" fg:w="164"/><text x="6.4778%" y="607.50"></text></g><g><title>__x64_sys_futex (164 samples, 0.01%)</title><rect x="6.2278%" y="581" width="0.0107%" height="15" fill="rgb(209,212,41)" fg:x="95836" fg:w="164"/><text x="6.4778%" y="591.50"></text></g><g><title>do_futex (163 samples, 0.01%)</title><rect x="6.2278%" y="565" width="0.0106%" height="15" fill="rgb(207,154,6)" fg:x="95837" fg:w="163"/><text x="6.4778%" y="575.50"></text></g><g><title>futex_wait (162 samples, 0.01%)</title><rect x="6.2279%" y="549" width="0.0105%" height="15" fill="rgb(223,64,47)" fg:x="95838" fg:w="162"/><text x="6.4779%" y="559.50"></text></g><g><title>__pthread_cond_wait (170 samples, 0.01%)</title><rect x="6.2276%" y="661" width="0.0110%" height="15" fill="rgb(211,161,38)" fg:x="95833" fg:w="170"/><text x="6.4776%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (170 samples, 0.01%)</title><rect x="6.2276%" y="645" width="0.0110%" height="15" fill="rgb(219,138,40)" fg:x="95833" fg:w="170"/><text x="6.4776%" y="655.50"></text></g><g><title>futex_wait_cancelable (169 samples, 0.01%)</title><rect x="6.2276%" y="629" width="0.0110%" height="15" fill="rgb(241,228,46)" fg:x="95834" fg:w="169"/><text x="6.4776%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (168 samples, 0.01%)</title><rect x="6.2277%" y="613" width="0.0109%" height="15" fill="rgb(223,209,38)" fg:x="95835" fg:w="168"/><text x="6.4777%" y="623.50"></text></g><g><title>Unsafe_Park (582 samples, 0.04%)</title><rect x="6.2034%" y="693" width="0.0378%" height="15" fill="rgb(236,164,45)" fg:x="95461" fg:w="582"/><text x="6.4534%" y="703.50"></text></g><g><title>Parker::park (572 samples, 0.04%)</title><rect x="6.2041%" y="677" width="0.0372%" height="15" fill="rgb(231,15,5)" fg:x="95471" fg:w="572"/><text x="6.4541%" y="687.50"></text></g><g><title>[perf-934749.map] (1,128 samples, 0.07%)</title><rect x="6.1684%" y="709" width="0.0733%" height="15" fill="rgb(252,35,15)" fg:x="94923" fg:w="1128"/><text x="6.4184%" y="719.50"></text></g><g><title>ForkJoinPool.co (1,175 samples, 0.08%)</title><rect x="6.1672%" y="725" width="0.0764%" height="15" fill="rgb(248,181,18)" fg:x="94904" fg:w="1175"/><text x="6.4172%" y="735.50"></text></g><g><title>G1_Refine#0 (164 samples, 0.01%)</title><rect x="6.2517%" y="725" width="0.0107%" height="15" fill="rgb(233,39,42)" fg:x="96204" fg:w="164"/><text x="6.5017%" y="735.50"></text></g><g><title>__GI___clone (157 samples, 0.01%)</title><rect x="6.2521%" y="709" width="0.0102%" height="15" fill="rgb(238,110,33)" fg:x="96211" fg:w="157"/><text x="6.5021%" y="719.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (189 samples, 0.01%)</title><rect x="6.2810%" y="629" width="0.0123%" height="15" fill="rgb(233,195,10)" fg:x="96655" fg:w="189"/><text x="6.5310%" y="639.50"></text></g><g><title>G1_Young_RemSet (213 samples, 0.01%)</title><rect x="6.2806%" y="725" width="0.0138%" height="15" fill="rgb(254,105,3)" fg:x="96649" fg:w="213"/><text x="6.5306%" y="735.50"></text></g><g><title>__GI___clone (207 samples, 0.01%)</title><rect x="6.2810%" y="709" width="0.0135%" height="15" fill="rgb(221,225,9)" fg:x="96655" fg:w="207"/><text x="6.5310%" y="719.50"></text></g><g><title>start_thread (207 samples, 0.01%)</title><rect x="6.2810%" y="693" width="0.0135%" height="15" fill="rgb(224,227,45)" fg:x="96655" fg:w="207"/><text x="6.5310%" y="703.50"></text></g><g><title>thread_native_entry (207 samples, 0.01%)</title><rect x="6.2810%" y="677" width="0.0135%" height="15" fill="rgb(229,198,43)" fg:x="96655" fg:w="207"/><text x="6.5310%" y="687.50"></text></g><g><title>Thread::call_run (207 samples, 0.01%)</title><rect x="6.2810%" y="661" width="0.0135%" height="15" fill="rgb(206,209,35)" fg:x="96655" fg:w="207"/><text x="6.5310%" y="671.50"></text></g><g><title>ConcurrentGCThread::run (207 samples, 0.01%)</title><rect x="6.2810%" y="645" width="0.0135%" height="15" fill="rgb(245,195,53)" fg:x="96655" fg:w="207"/><text x="6.5310%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (274 samples, 0.02%)</title><rect x="6.3078%" y="581" width="0.0178%" height="15" fill="rgb(240,92,26)" fg:x="97067" fg:w="274"/><text x="6.5578%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (442 samples, 0.03%)</title><rect x="6.2976%" y="597" width="0.0287%" height="15" fill="rgb(207,40,23)" fg:x="96911" fg:w="442"/><text x="6.5476%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (551 samples, 0.04%)</title><rect x="6.2969%" y="613" width="0.0358%" height="15" fill="rgb(223,111,35)" fg:x="96899" fg:w="551"/><text x="6.5469%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (233 samples, 0.02%)</title><rect x="6.3347%" y="517" width="0.0151%" height="15" fill="rgb(229,147,28)" fg:x="97482" fg:w="233"/><text x="6.5847%" y="527.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (181 samples, 0.01%)</title><rect x="6.3381%" y="501" width="0.0118%" height="15" fill="rgb(211,29,28)" fg:x="97534" fg:w="181"/><text x="6.5881%" y="511.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (316 samples, 0.02%)</title><rect x="6.3327%" y="533" width="0.0205%" height="15" fill="rgb(228,72,33)" fg:x="97450" fg:w="316"/><text x="6.5827%" y="543.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (363 samples, 0.02%)</title><rect x="6.3327%" y="581" width="0.0236%" height="15" fill="rgb(205,214,31)" fg:x="97450" fg:w="363"/><text x="6.5827%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (363 samples, 0.02%)</title><rect x="6.3327%" y="565" width="0.0236%" height="15" fill="rgb(224,111,15)" fg:x="97450" fg:w="363"/><text x="6.5827%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (363 samples, 0.02%)</title><rect x="6.3327%" y="549" width="0.0236%" height="15" fill="rgb(253,21,26)" fg:x="97450" fg:w="363"/><text x="6.5827%" y="559.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (364 samples, 0.02%)</title><rect x="6.3327%" y="613" width="0.0237%" height="15" fill="rgb(245,139,43)" fg:x="97450" fg:w="364"/><text x="6.5827%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (364 samples, 0.02%)</title><rect x="6.3327%" y="597" width="0.0237%" height="15" fill="rgb(252,170,7)" fg:x="97450" fg:w="364"/><text x="6.5827%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (264 samples, 0.02%)</title><rect x="6.3624%" y="597" width="0.0172%" height="15" fill="rgb(231,118,14)" fg:x="97907" fg:w="264"/><text x="6.6124%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (219 samples, 0.01%)</title><rect x="6.3653%" y="581" width="0.0142%" height="15" fill="rgb(238,83,0)" fg:x="97952" fg:w="219"/><text x="6.6153%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (219 samples, 0.01%)</title><rect x="6.3653%" y="565" width="0.0142%" height="15" fill="rgb(221,39,39)" fg:x="97952" fg:w="219"/><text x="6.6153%" y="575.50"></text></g><g><title>JavaThread::oops_do (219 samples, 0.01%)</title><rect x="6.3653%" y="549" width="0.0142%" height="15" fill="rgb(222,119,46)" fg:x="97952" fg:w="219"/><text x="6.6153%" y="559.50"></text></g><g><title>G1ParTask::work (1,309 samples, 0.09%)</title><rect x="6.2969%" y="629" width="0.0851%" height="15" fill="rgb(222,165,49)" fg:x="96899" fg:w="1309"/><text x="6.5469%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (302 samples, 0.02%)</title><rect x="6.3623%" y="613" width="0.0196%" height="15" fill="rgb(219,113,52)" fg:x="97906" fg:w="302"/><text x="6.6123%" y="623.50"></text></g><g><title>__GI___clone (1,578 samples, 0.10%)</title><rect x="6.2964%" y="709" width="0.1025%" height="15" fill="rgb(214,7,15)" fg:x="96892" fg:w="1578"/><text x="6.5464%" y="719.50"></text></g><g><title>start_thread (1,578 samples, 0.10%)</title><rect x="6.2964%" y="693" width="0.1025%" height="15" fill="rgb(235,32,4)" fg:x="96892" fg:w="1578"/><text x="6.5464%" y="703.50"></text></g><g><title>thread_native_entry (1,578 samples, 0.10%)</title><rect x="6.2964%" y="677" width="0.1025%" height="15" fill="rgb(238,90,54)" fg:x="96892" fg:w="1578"/><text x="6.5464%" y="687.50"></text></g><g><title>Thread::call_run (1,578 samples, 0.10%)</title><rect x="6.2964%" y="661" width="0.1025%" height="15" fill="rgb(213,208,19)" fg:x="96892" fg:w="1578"/><text x="6.5464%" y="671.50"></text></g><g><title>GangWorker::loop (1,578 samples, 0.10%)</title><rect x="6.2964%" y="645" width="0.1025%" height="15" fill="rgb(233,156,4)" fg:x="96892" fg:w="1578"/><text x="6.5464%" y="655.50"></text></g><g><title>GC_Thread#0 (1,609 samples, 0.10%)</title><rect x="6.2945%" y="725" width="0.1046%" height="15" fill="rgb(207,194,5)" fg:x="96862" fg:w="1609"/><text x="6.5445%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (307 samples, 0.02%)</title><rect x="6.4133%" y="581" width="0.0200%" height="15" fill="rgb(206,111,30)" fg:x="98691" fg:w="307"/><text x="6.6633%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (500 samples, 0.03%)</title><rect x="6.4021%" y="597" width="0.0325%" height="15" fill="rgb(243,70,54)" fg:x="98519" fg:w="500"/><text x="6.6521%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (593 samples, 0.04%)</title><rect x="6.4014%" y="613" width="0.0385%" height="15" fill="rgb(242,28,8)" fg:x="98508" fg:w="593"/><text x="6.6514%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (191 samples, 0.01%)</title><rect x="6.4401%" y="533" width="0.0124%" height="15" fill="rgb(219,106,18)" fg:x="99103" fg:w="191"/><text x="6.6901%" y="543.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (233 samples, 0.02%)</title><rect x="6.4400%" y="613" width="0.0151%" height="15" fill="rgb(244,222,10)" fg:x="99102" fg:w="233"/><text x="6.6900%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (233 samples, 0.02%)</title><rect x="6.4400%" y="597" width="0.0151%" height="15" fill="rgb(236,179,52)" fg:x="99102" fg:w="233"/><text x="6.6900%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (233 samples, 0.02%)</title><rect x="6.4400%" y="581" width="0.0151%" height="15" fill="rgb(213,23,39)" fg:x="99102" fg:w="233"/><text x="6.6900%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (233 samples, 0.02%)</title><rect x="6.4400%" y="565" width="0.0151%" height="15" fill="rgb(238,48,10)" fg:x="99102" fg:w="233"/><text x="6.6900%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (233 samples, 0.02%)</title><rect x="6.4400%" y="549" width="0.0151%" height="15" fill="rgb(251,196,23)" fg:x="99102" fg:w="233"/><text x="6.6900%" y="559.50"></text></g><g><title>frame::oops_interpreted_do (166 samples, 0.01%)</title><rect x="6.4723%" y="533" width="0.0108%" height="15" fill="rgb(250,152,24)" fg:x="99599" fg:w="166"/><text x="6.7223%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (329 samples, 0.02%)</title><rect x="6.4619%" y="597" width="0.0214%" height="15" fill="rgb(209,150,17)" fg:x="99438" fg:w="329"/><text x="6.7119%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (265 samples, 0.02%)</title><rect x="6.4660%" y="581" width="0.0172%" height="15" fill="rgb(234,202,34)" fg:x="99502" fg:w="265"/><text x="6.7160%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (265 samples, 0.02%)</title><rect x="6.4660%" y="565" width="0.0172%" height="15" fill="rgb(253,148,53)" fg:x="99502" fg:w="265"/><text x="6.7160%" y="575.50"></text></g><g><title>JavaThread::oops_do (265 samples, 0.02%)</title><rect x="6.4660%" y="549" width="0.0172%" height="15" fill="rgb(218,129,16)" fg:x="99502" fg:w="265"/><text x="6.7160%" y="559.50"></text></g><g><title>G1ParTask::work (1,273 samples, 0.08%)</title><rect x="6.4014%" y="629" width="0.0827%" height="15" fill="rgb(216,85,19)" fg:x="98508" fg:w="1273"/><text x="6.6514%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (343 samples, 0.02%)</title><rect x="6.4619%" y="613" width="0.0223%" height="15" fill="rgb(235,228,7)" fg:x="99438" fg:w="343"/><text x="6.7119%" y="623.50"></text></g><g><title>futex_wait_queue_me (169 samples, 0.01%)</title><rect x="6.4928%" y="469" width="0.0110%" height="15" fill="rgb(245,175,0)" fg:x="99914" fg:w="169"/><text x="6.7428%" y="479.50"></text></g><g><title>schedule (164 samples, 0.01%)</title><rect x="6.4931%" y="453" width="0.0107%" height="15" fill="rgb(208,168,36)" fg:x="99919" fg:w="164"/><text x="6.7431%" y="463.50"></text></g><g><title>__schedule (164 samples, 0.01%)</title><rect x="6.4931%" y="437" width="0.0107%" height="15" fill="rgb(246,171,24)" fg:x="99919" fg:w="164"/><text x="6.7431%" y="447.50"></text></g><g><title>do_syscall_64 (170 samples, 0.01%)</title><rect x="6.4928%" y="533" width="0.0110%" height="15" fill="rgb(215,142,24)" fg:x="99914" fg:w="170"/><text x="6.7428%" y="543.50"></text></g><g><title>__x64_sys_futex (170 samples, 0.01%)</title><rect x="6.4928%" y="517" width="0.0110%" height="15" fill="rgb(250,187,7)" fg:x="99914" fg:w="170"/><text x="6.7428%" y="527.50"></text></g><g><title>do_futex (170 samples, 0.01%)</title><rect x="6.4928%" y="501" width="0.0110%" height="15" fill="rgb(228,66,33)" fg:x="99914" fg:w="170"/><text x="6.7428%" y="511.50"></text></g><g><title>futex_wait (170 samples, 0.01%)</title><rect x="6.4928%" y="485" width="0.0110%" height="15" fill="rgb(234,215,21)" fg:x="99914" fg:w="170"/><text x="6.7428%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (173 samples, 0.01%)</title><rect x="6.4928%" y="549" width="0.0112%" height="15" fill="rgb(222,191,20)" fg:x="99914" fg:w="173"/><text x="6.7428%" y="559.50"></text></g><g><title>PosixSemaphore::wait (176 samples, 0.01%)</title><rect x="6.4927%" y="613" width="0.0114%" height="15" fill="rgb(245,79,54)" fg:x="99912" fg:w="176"/><text x="6.7427%" y="623.50"></text></g><g><title>__new_sem_wait_slow (176 samples, 0.01%)</title><rect x="6.4927%" y="597" width="0.0114%" height="15" fill="rgb(240,10,37)" fg:x="99912" fg:w="176"/><text x="6.7427%" y="607.50"></text></g><g><title>do_futex_wait (174 samples, 0.01%)</title><rect x="6.4928%" y="581" width="0.0113%" height="15" fill="rgb(214,192,32)" fg:x="99914" fg:w="174"/><text x="6.7428%" y="591.50"></text></g><g><title>futex_abstimed_wait_cancelable (174 samples, 0.01%)</title><rect x="6.4928%" y="565" width="0.0113%" height="15" fill="rgb(209,36,54)" fg:x="99914" fg:w="174"/><text x="6.7428%" y="575.50"></text></g><g><title>__GI___clone (1,589 samples, 0.10%)</title><rect x="6.4009%" y="709" width="0.1033%" height="15" fill="rgb(220,10,11)" fg:x="98500" fg:w="1589"/><text x="6.6509%" y="719.50"></text></g><g><title>start_thread (1,589 samples, 0.10%)</title><rect x="6.4009%" y="693" width="0.1033%" height="15" fill="rgb(221,106,17)" fg:x="98500" fg:w="1589"/><text x="6.6509%" y="703.50"></text></g><g><title>thread_native_entry (1,589 samples, 0.10%)</title><rect x="6.4009%" y="677" width="0.1033%" height="15" fill="rgb(251,142,44)" fg:x="98500" fg:w="1589"/><text x="6.6509%" y="687.50"></text></g><g><title>Thread::call_run (1,589 samples, 0.10%)</title><rect x="6.4009%" y="661" width="0.1033%" height="15" fill="rgb(238,13,15)" fg:x="98500" fg:w="1589"/><text x="6.6509%" y="671.50"></text></g><g><title>GangWorker::loop (1,589 samples, 0.10%)</title><rect x="6.4009%" y="645" width="0.1033%" height="15" fill="rgb(208,107,27)" fg:x="98500" fg:w="1589"/><text x="6.6509%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (177 samples, 0.01%)</title><rect x="6.4927%" y="629" width="0.0115%" height="15" fill="rgb(205,136,37)" fg:x="99912" fg:w="177"/><text x="6.7427%" y="639.50"></text></g><g><title>GC_Thread#1 (1,620 samples, 0.11%)</title><rect x="6.3990%" y="725" width="0.1053%" height="15" fill="rgb(250,205,27)" fg:x="98471" fg:w="1620"/><text x="6.6490%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (355 samples, 0.02%)</title><rect x="6.5168%" y="581" width="0.0231%" height="15" fill="rgb(210,80,43)" fg:x="100284" fg:w="355"/><text x="6.7668%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (549 samples, 0.04%)</title><rect x="6.5062%" y="597" width="0.0357%" height="15" fill="rgb(247,160,36)" fg:x="100121" fg:w="549"/><text x="6.7562%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (650 samples, 0.04%)</title><rect x="6.5057%" y="613" width="0.0422%" height="15" fill="rgb(234,13,49)" fg:x="100113" fg:w="650"/><text x="6.7557%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (158 samples, 0.01%)</title><rect x="6.5480%" y="533" width="0.0103%" height="15" fill="rgb(234,122,0)" fg:x="100764" fg:w="158"/><text x="6.7980%" y="543.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (185 samples, 0.01%)</title><rect x="6.5480%" y="549" width="0.0120%" height="15" fill="rgb(207,146,38)" fg:x="100763" fg:w="185"/><text x="6.7980%" y="559.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (186 samples, 0.01%)</title><rect x="6.5480%" y="581" width="0.0121%" height="15" fill="rgb(207,177,25)" fg:x="100763" fg:w="186"/><text x="6.7980%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (186 samples, 0.01%)</title><rect x="6.5480%" y="565" width="0.0121%" height="15" fill="rgb(211,178,42)" fg:x="100763" fg:w="186"/><text x="6.7980%" y="575.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (187 samples, 0.01%)</title><rect x="6.5480%" y="613" width="0.0122%" height="15" fill="rgb(230,69,54)" fg:x="100763" fg:w="187"/><text x="6.7980%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (187 samples, 0.01%)</title><rect x="6.5480%" y="597" width="0.0122%" height="15" fill="rgb(214,135,41)" fg:x="100763" fg:w="187"/><text x="6.7980%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (210 samples, 0.01%)</title><rect x="6.5674%" y="597" width="0.0136%" height="15" fill="rgb(237,67,25)" fg:x="101063" fg:w="210"/><text x="6.8174%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (208 samples, 0.01%)</title><rect x="6.5676%" y="581" width="0.0135%" height="15" fill="rgb(222,189,50)" fg:x="101065" fg:w="208"/><text x="6.8176%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (208 samples, 0.01%)</title><rect x="6.5676%" y="565" width="0.0135%" height="15" fill="rgb(245,148,34)" fg:x="101065" fg:w="208"/><text x="6.8176%" y="575.50"></text></g><g><title>JavaThread::oops_do (206 samples, 0.01%)</title><rect x="6.5677%" y="549" width="0.0134%" height="15" fill="rgb(222,29,6)" fg:x="101067" fg:w="206"/><text x="6.8177%" y="559.50"></text></g><g><title>G1ParTask::work (1,180 samples, 0.08%)</title><rect x="6.5057%" y="629" width="0.0767%" height="15" fill="rgb(221,189,43)" fg:x="100113" fg:w="1180"/><text x="6.7557%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (230 samples, 0.01%)</title><rect x="6.5674%" y="613" width="0.0149%" height="15" fill="rgb(207,36,27)" fg:x="101063" fg:w="230"/><text x="6.8174%" y="623.50"></text></g><g><title>__GI___clone (1,429 samples, 0.09%)</title><rect x="6.5056%" y="709" width="0.0929%" height="15" fill="rgb(217,90,24)" fg:x="100111" fg:w="1429"/><text x="6.7556%" y="719.50"></text></g><g><title>start_thread (1,429 samples, 0.09%)</title><rect x="6.5056%" y="693" width="0.0929%" height="15" fill="rgb(224,66,35)" fg:x="100111" fg:w="1429"/><text x="6.7556%" y="703.50"></text></g><g><title>thread_native_entry (1,429 samples, 0.09%)</title><rect x="6.5056%" y="677" width="0.0929%" height="15" fill="rgb(221,13,50)" fg:x="100111" fg:w="1429"/><text x="6.7556%" y="687.50"></text></g><g><title>Thread::call_run (1,429 samples, 0.09%)</title><rect x="6.5056%" y="661" width="0.0929%" height="15" fill="rgb(236,68,49)" fg:x="100111" fg:w="1429"/><text x="6.7556%" y="671.50"></text></g><g><title>GangWorker::loop (1,429 samples, 0.09%)</title><rect x="6.5056%" y="645" width="0.0929%" height="15" fill="rgb(229,146,28)" fg:x="100111" fg:w="1429"/><text x="6.7556%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (155 samples, 0.01%)</title><rect x="6.5884%" y="629" width="0.0101%" height="15" fill="rgb(225,31,38)" fg:x="101385" fg:w="155"/><text x="6.8384%" y="639.50"></text></g><g><title>PosixSemaphore::wait (154 samples, 0.01%)</title><rect x="6.5884%" y="613" width="0.0100%" height="15" fill="rgb(250,208,3)" fg:x="101386" fg:w="154"/><text x="6.8384%" y="623.50"></text></g><g><title>GC_Thread#2 (1,451 samples, 0.09%)</title><rect x="6.5043%" y="725" width="0.0943%" height="15" fill="rgb(246,54,23)" fg:x="100091" fg:w="1451"/><text x="6.7543%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (314 samples, 0.02%)</title><rect x="6.6112%" y="581" width="0.0204%" height="15" fill="rgb(243,76,11)" fg:x="101737" fg:w="314"/><text x="6.8612%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (486 samples, 0.03%)</title><rect x="6.6010%" y="597" width="0.0316%" height="15" fill="rgb(245,21,50)" fg:x="101579" fg:w="486"/><text x="6.8510%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (583 samples, 0.04%)</title><rect x="6.6005%" y="613" width="0.0379%" height="15" fill="rgb(228,9,43)" fg:x="101571" fg:w="583"/><text x="6.8505%" y="623.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (169 samples, 0.01%)</title><rect x="6.6385%" y="613" width="0.0110%" height="15" fill="rgb(208,100,47)" fg:x="102156" fg:w="169"/><text x="6.8885%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (169 samples, 0.01%)</title><rect x="6.6385%" y="597" width="0.0110%" height="15" fill="rgb(232,26,8)" fg:x="102156" fg:w="169"/><text x="6.8885%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (169 samples, 0.01%)</title><rect x="6.6385%" y="581" width="0.0110%" height="15" fill="rgb(216,166,38)" fg:x="102156" fg:w="169"/><text x="6.8885%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (169 samples, 0.01%)</title><rect x="6.6385%" y="565" width="0.0110%" height="15" fill="rgb(251,202,51)" fg:x="102156" fg:w="169"/><text x="6.8885%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (169 samples, 0.01%)</title><rect x="6.6385%" y="549" width="0.0110%" height="15" fill="rgb(254,216,34)" fg:x="102156" fg:w="169"/><text x="6.8885%" y="559.50"></text></g><g><title>InterpreterOopMap::iterate_oop (177 samples, 0.01%)</title><rect x="6.6615%" y="517" width="0.0115%" height="15" fill="rgb(251,32,27)" fg:x="102510" fg:w="177"/><text x="6.9115%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (173 samples, 0.01%)</title><rect x="6.6617%" y="501" width="0.0112%" height="15" fill="rgb(208,127,28)" fg:x="102514" fg:w="173"/><text x="6.9117%" y="511.50"></text></g><g><title>G1RootProcessor::process_java_roots (252 samples, 0.02%)</title><rect x="6.6568%" y="597" width="0.0164%" height="15" fill="rgb(224,137,22)" fg:x="102438" fg:w="252"/><text x="6.9068%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (223 samples, 0.01%)</title><rect x="6.6587%" y="581" width="0.0145%" height="15" fill="rgb(254,70,32)" fg:x="102467" fg:w="223"/><text x="6.9087%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (223 samples, 0.01%)</title><rect x="6.6587%" y="565" width="0.0145%" height="15" fill="rgb(229,75,37)" fg:x="102467" fg:w="223"/><text x="6.9087%" y="575.50"></text></g><g><title>JavaThread::oops_do (215 samples, 0.01%)</title><rect x="6.6592%" y="549" width="0.0140%" height="15" fill="rgb(252,64,23)" fg:x="102475" fg:w="215"/><text x="6.9092%" y="559.50"></text></g><g><title>frame::oops_interpreted_do (181 samples, 0.01%)</title><rect x="6.6614%" y="533" width="0.0118%" height="15" fill="rgb(232,162,48)" fg:x="102509" fg:w="181"/><text x="6.9114%" y="543.50"></text></g><g><title>G1ParTask::work (1,134 samples, 0.07%)</title><rect x="6.6005%" y="629" width="0.0737%" height="15" fill="rgb(246,160,12)" fg:x="101571" fg:w="1134"/><text x="6.8505%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (278 samples, 0.02%)</title><rect x="6.6561%" y="613" width="0.0181%" height="15" fill="rgb(247,166,0)" fg:x="102427" fg:w="278"/><text x="6.9061%" y="623.50"></text></g><g><title>__GI___clone (1,402 samples, 0.09%)</title><rect x="6.6001%" y="709" width="0.0911%" height="15" fill="rgb(249,219,21)" fg:x="101565" fg:w="1402"/><text x="6.8501%" y="719.50"></text></g><g><title>start_thread (1,402 samples, 0.09%)</title><rect x="6.6001%" y="693" width="0.0911%" height="15" fill="rgb(205,209,3)" fg:x="101565" fg:w="1402"/><text x="6.8501%" y="703.50"></text></g><g><title>thread_native_entry (1,402 samples, 0.09%)</title><rect x="6.6001%" y="677" width="0.0911%" height="15" fill="rgb(243,44,1)" fg:x="101565" fg:w="1402"/><text x="6.8501%" y="687.50"></text></g><g><title>Thread::call_run (1,402 samples, 0.09%)</title><rect x="6.6001%" y="661" width="0.0911%" height="15" fill="rgb(206,159,16)" fg:x="101565" fg:w="1402"/><text x="6.8501%" y="671.50"></text></g><g><title>GangWorker::loop (1,402 samples, 0.09%)</title><rect x="6.6001%" y="645" width="0.0911%" height="15" fill="rgb(244,77,30)" fg:x="101565" fg:w="1402"/><text x="6.8501%" y="655.50"></text></g><g><title>GC_Thread#3 (1,427 samples, 0.09%)</title><rect x="6.5986%" y="725" width="0.0927%" height="15" fill="rgb(218,69,12)" fg:x="101542" fg:w="1427"/><text x="6.8486%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (248 samples, 0.02%)</title><rect x="6.7022%" y="581" width="0.0161%" height="15" fill="rgb(212,87,7)" fg:x="103137" fg:w="248"/><text x="6.9522%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (403 samples, 0.03%)</title><rect x="6.6933%" y="597" width="0.0262%" height="15" fill="rgb(245,114,25)" fg:x="103000" fg:w="403"/><text x="6.9433%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (489 samples, 0.03%)</title><rect x="6.6928%" y="613" width="0.0318%" height="15" fill="rgb(210,61,42)" fg:x="102992" fg:w="489"/><text x="6.9428%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (165 samples, 0.01%)</title><rect x="6.7246%" y="533" width="0.0107%" height="15" fill="rgb(211,52,33)" fg:x="103482" fg:w="165"/><text x="6.9746%" y="543.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (186 samples, 0.01%)</title><rect x="6.7246%" y="549" width="0.0121%" height="15" fill="rgb(234,58,33)" fg:x="103482" fg:w="186"/><text x="6.9746%" y="559.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (187 samples, 0.01%)</title><rect x="6.7246%" y="613" width="0.0122%" height="15" fill="rgb(220,115,36)" fg:x="103482" fg:w="187"/><text x="6.9746%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (187 samples, 0.01%)</title><rect x="6.7246%" y="597" width="0.0122%" height="15" fill="rgb(243,153,54)" fg:x="103482" fg:w="187"/><text x="6.9746%" y="607.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (187 samples, 0.01%)</title><rect x="6.7246%" y="581" width="0.0122%" height="15" fill="rgb(251,47,18)" fg:x="103482" fg:w="187"/><text x="6.9746%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (187 samples, 0.01%)</title><rect x="6.7246%" y="565" width="0.0122%" height="15" fill="rgb(242,102,42)" fg:x="103482" fg:w="187"/><text x="6.9746%" y="575.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (185 samples, 0.01%)</title><rect x="6.7527%" y="485" width="0.0120%" height="15" fill="rgb(234,31,38)" fg:x="103914" fg:w="185"/><text x="7.0027%" y="495.50"></text></g><g><title>InterpreterOopMap::iterate_oop (253 samples, 0.02%)</title><rect x="6.7493%" y="517" width="0.0164%" height="15" fill="rgb(221,117,51)" fg:x="103862" fg:w="253"/><text x="6.9993%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (247 samples, 0.02%)</title><rect x="6.7497%" y="501" width="0.0161%" height="15" fill="rgb(212,20,18)" fg:x="103868" fg:w="247"/><text x="6.9997%" y="511.50"></text></g><g><title>frame::oops_interpreted_do (258 samples, 0.02%)</title><rect x="6.7492%" y="533" width="0.0168%" height="15" fill="rgb(245,133,36)" fg:x="103860" fg:w="258"/><text x="6.9992%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (348 samples, 0.02%)</title><rect x="6.7434%" y="597" width="0.0226%" height="15" fill="rgb(212,6,19)" fg:x="103771" fg:w="348"/><text x="6.9934%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (298 samples, 0.02%)</title><rect x="6.7467%" y="581" width="0.0194%" height="15" fill="rgb(218,1,36)" fg:x="103821" fg:w="298"/><text x="6.9967%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (298 samples, 0.02%)</title><rect x="6.7467%" y="565" width="0.0194%" height="15" fill="rgb(246,84,54)" fg:x="103821" fg:w="298"/><text x="6.9967%" y="575.50"></text></g><g><title>JavaThread::oops_do (298 samples, 0.02%)</title><rect x="6.7467%" y="549" width="0.0194%" height="15" fill="rgb(242,110,6)" fg:x="103821" fg:w="298"/><text x="6.9967%" y="559.50"></text></g><g><title>G1ParTask::work (1,157 samples, 0.08%)</title><rect x="6.6928%" y="629" width="0.0752%" height="15" fill="rgb(214,47,5)" fg:x="102992" fg:w="1157"/><text x="6.9428%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (379 samples, 0.02%)</title><rect x="6.7434%" y="613" width="0.0246%" height="15" fill="rgb(218,159,25)" fg:x="103770" fg:w="379"/><text x="6.9934%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (156 samples, 0.01%)</title><rect x="6.7766%" y="405" width="0.0101%" height="15" fill="rgb(215,211,28)" fg:x="104282" fg:w="156"/><text x="7.0266%" y="415.50"></text></g><g><title>finish_task_switch (163 samples, 0.01%)</title><rect x="6.7764%" y="421" width="0.0106%" height="15" fill="rgb(238,59,32)" fg:x="104279" fg:w="163"/><text x="7.0264%" y="431.50"></text></g><g><title>futex_wait_queue_me (176 samples, 0.01%)</title><rect x="6.7760%" y="469" width="0.0114%" height="15" fill="rgb(226,82,3)" fg:x="104273" fg:w="176"/><text x="7.0260%" y="479.50"></text></g><g><title>schedule (175 samples, 0.01%)</title><rect x="6.7761%" y="453" width="0.0114%" height="15" fill="rgb(240,164,32)" fg:x="104274" fg:w="175"/><text x="7.0261%" y="463.50"></text></g><g><title>__schedule (175 samples, 0.01%)</title><rect x="6.7761%" y="437" width="0.0114%" height="15" fill="rgb(232,46,7)" fg:x="104274" fg:w="175"/><text x="7.0261%" y="447.50"></text></g><g><title>__x64_sys_futex (183 samples, 0.01%)</title><rect x="6.7758%" y="517" width="0.0119%" height="15" fill="rgb(229,129,53)" fg:x="104269" fg:w="183"/><text x="7.0258%" y="527.50"></text></g><g><title>do_futex (182 samples, 0.01%)</title><rect x="6.7759%" y="501" width="0.0118%" height="15" fill="rgb(234,188,29)" fg:x="104270" fg:w="182"/><text x="7.0259%" y="511.50"></text></g><g><title>futex_wait (180 samples, 0.01%)</title><rect x="6.7760%" y="485" width="0.0117%" height="15" fill="rgb(246,141,4)" fg:x="104272" fg:w="180"/><text x="7.0260%" y="495.50"></text></g><g><title>do_syscall_64 (185 samples, 0.01%)</title><rect x="6.7757%" y="533" width="0.0120%" height="15" fill="rgb(229,23,39)" fg:x="104268" fg:w="185"/><text x="7.0257%" y="543.50"></text></g><g><title>__GI___clone (1,470 samples, 0.10%)</title><rect x="6.6925%" y="709" width="0.0955%" height="15" fill="rgb(206,12,3)" fg:x="102988" fg:w="1470"/><text x="6.9425%" y="719.50"></text></g><g><title>start_thread (1,470 samples, 0.10%)</title><rect x="6.6925%" y="693" width="0.0955%" height="15" fill="rgb(252,226,20)" fg:x="102988" fg:w="1470"/><text x="6.9425%" y="703.50"></text></g><g><title>thread_native_entry (1,470 samples, 0.10%)</title><rect x="6.6925%" y="677" width="0.0955%" height="15" fill="rgb(216,123,35)" fg:x="102988" fg:w="1470"/><text x="6.9425%" y="687.50"></text></g><g><title>Thread::call_run (1,470 samples, 0.10%)</title><rect x="6.6925%" y="661" width="0.0955%" height="15" fill="rgb(212,68,40)" fg:x="102988" fg:w="1470"/><text x="6.9425%" y="671.50"></text></g><g><title>GangWorker::loop (1,470 samples, 0.10%)</title><rect x="6.6925%" y="645" width="0.0955%" height="15" fill="rgb(254,125,32)" fg:x="102988" fg:w="1470"/><text x="6.9425%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (191 samples, 0.01%)</title><rect x="6.7757%" y="629" width="0.0124%" height="15" fill="rgb(253,97,22)" fg:x="104267" fg:w="191"/><text x="7.0257%" y="639.50"></text></g><g><title>PosixSemaphore::wait (191 samples, 0.01%)</title><rect x="6.7757%" y="613" width="0.0124%" height="15" fill="rgb(241,101,14)" fg:x="104267" fg:w="191"/><text x="7.0257%" y="623.50"></text></g><g><title>__new_sem_wait_slow (191 samples, 0.01%)</title><rect x="6.7757%" y="597" width="0.0124%" height="15" fill="rgb(238,103,29)" fg:x="104267" fg:w="191"/><text x="7.0257%" y="607.50"></text></g><g><title>do_futex_wait (191 samples, 0.01%)</title><rect x="6.7757%" y="581" width="0.0124%" height="15" fill="rgb(233,195,47)" fg:x="104267" fg:w="191"/><text x="7.0257%" y="591.50"></text></g><g><title>futex_abstimed_wait_cancelable (191 samples, 0.01%)</title><rect x="6.7757%" y="565" width="0.0124%" height="15" fill="rgb(246,218,30)" fg:x="104267" fg:w="191"/><text x="7.0257%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (190 samples, 0.01%)</title><rect x="6.7757%" y="549" width="0.0123%" height="15" fill="rgb(219,145,47)" fg:x="104268" fg:w="190"/><text x="7.0257%" y="559.50"></text></g><g><title>GC_Thread#4 (1,553 samples, 0.10%)</title><rect x="6.6913%" y="725" width="0.1009%" height="15" fill="rgb(243,12,26)" fg:x="102969" fg:w="1553"/><text x="6.9413%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (295 samples, 0.02%)</title><rect x="6.8054%" y="581" width="0.0192%" height="15" fill="rgb(214,87,16)" fg:x="104724" fg:w="295"/><text x="7.0554%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (473 samples, 0.03%)</title><rect x="6.7944%" y="597" width="0.0307%" height="15" fill="rgb(208,99,42)" fg:x="104556" fg:w="473"/><text x="7.0444%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (565 samples, 0.04%)</title><rect x="6.7940%" y="613" width="0.0367%" height="15" fill="rgb(253,99,2)" fg:x="104550" fg:w="565"/><text x="7.0440%" y="623.50"></text></g><g><title>InterpreterOopMap::iterate_oop (176 samples, 0.01%)</title><rect x="6.8557%" y="517" width="0.0114%" height="15" fill="rgb(220,168,23)" fg:x="105498" fg:w="176"/><text x="7.1057%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (175 samples, 0.01%)</title><rect x="6.8557%" y="501" width="0.0114%" height="15" fill="rgb(242,38,24)" fg:x="105499" fg:w="175"/><text x="7.1057%" y="511.50"></text></g><g><title>frame::oops_interpreted_do (188 samples, 0.01%)</title><rect x="6.8555%" y="533" width="0.0122%" height="15" fill="rgb(225,182,9)" fg:x="105495" fg:w="188"/><text x="7.1055%" y="543.50"></text></g><g><title>G1RootProcessor::process_java_roots (313 samples, 0.02%)</title><rect x="6.8476%" y="597" width="0.0203%" height="15" fill="rgb(243,178,37)" fg:x="105374" fg:w="313"/><text x="7.0976%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (313 samples, 0.02%)</title><rect x="6.8476%" y="581" width="0.0203%" height="15" fill="rgb(232,139,19)" fg:x="105374" fg:w="313"/><text x="7.0976%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (313 samples, 0.02%)</title><rect x="6.8476%" y="565" width="0.0203%" height="15" fill="rgb(225,201,24)" fg:x="105374" fg:w="313"/><text x="7.0976%" y="575.50"></text></g><g><title>JavaThread::oops_do (313 samples, 0.02%)</title><rect x="6.8476%" y="549" width="0.0203%" height="15" fill="rgb(221,47,46)" fg:x="105374" fg:w="313"/><text x="7.0976%" y="559.50"></text></g><g><title>G1ParTask::work (1,156 samples, 0.08%)</title><rect x="6.7940%" y="629" width="0.0751%" height="15" fill="rgb(249,23,13)" fg:x="104550" fg:w="1156"/><text x="7.0440%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (338 samples, 0.02%)</title><rect x="6.8472%" y="613" width="0.0220%" height="15" fill="rgb(219,9,5)" fg:x="105368" fg:w="338"/><text x="7.0972%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (178 samples, 0.01%)</title><rect x="6.8776%" y="405" width="0.0116%" height="15" fill="rgb(254,171,16)" fg:x="105836" fg:w="178"/><text x="7.1276%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (176 samples, 0.01%)</title><rect x="6.8777%" y="389" width="0.0114%" height="15" fill="rgb(230,171,20)" fg:x="105838" fg:w="176"/><text x="7.1277%" y="399.50"></text></g><g><title>native_write_msr (175 samples, 0.01%)</title><rect x="6.8778%" y="373" width="0.0114%" height="15" fill="rgb(210,71,41)" fg:x="105839" fg:w="175"/><text x="7.1278%" y="383.50"></text></g><g><title>finish_task_switch (185 samples, 0.01%)</title><rect x="6.8774%" y="421" width="0.0120%" height="15" fill="rgb(206,173,20)" fg:x="105832" fg:w="185"/><text x="7.1274%" y="431.50"></text></g><g><title>do_syscall_64 (208 samples, 0.01%)</title><rect x="6.8764%" y="533" width="0.0135%" height="15" fill="rgb(233,88,34)" fg:x="105818" fg:w="208"/><text x="7.1264%" y="543.50"></text></g><g><title>__x64_sys_futex (207 samples, 0.01%)</title><rect x="6.8765%" y="517" width="0.0135%" height="15" fill="rgb(223,209,46)" fg:x="105819" fg:w="207"/><text x="7.1265%" y="527.50"></text></g><g><title>do_futex (206 samples, 0.01%)</title><rect x="6.8766%" y="501" width="0.0134%" height="15" fill="rgb(250,43,18)" fg:x="105820" fg:w="206"/><text x="7.1266%" y="511.50"></text></g><g><title>futex_wait (204 samples, 0.01%)</title><rect x="6.8767%" y="485" width="0.0133%" height="15" fill="rgb(208,13,10)" fg:x="105822" fg:w="204"/><text x="7.1267%" y="495.50"></text></g><g><title>futex_wait_queue_me (201 samples, 0.01%)</title><rect x="6.8769%" y="469" width="0.0131%" height="15" fill="rgb(212,200,36)" fg:x="105825" fg:w="201"/><text x="7.1269%" y="479.50"></text></g><g><title>schedule (200 samples, 0.01%)</title><rect x="6.8770%" y="453" width="0.0130%" height="15" fill="rgb(225,90,30)" fg:x="105826" fg:w="200"/><text x="7.1270%" y="463.50"></text></g><g><title>__schedule (200 samples, 0.01%)</title><rect x="6.8770%" y="437" width="0.0130%" height="15" fill="rgb(236,182,39)" fg:x="105826" fg:w="200"/><text x="7.1270%" y="447.50"></text></g><g><title>__GI___clone (1,487 samples, 0.10%)</title><rect x="6.7936%" y="709" width="0.0966%" height="15" fill="rgb(212,144,35)" fg:x="104543" fg:w="1487"/><text x="7.0436%" y="719.50"></text></g><g><title>start_thread (1,487 samples, 0.10%)</title><rect x="6.7936%" y="693" width="0.0966%" height="15" fill="rgb(228,63,44)" fg:x="104543" fg:w="1487"/><text x="7.0436%" y="703.50"></text></g><g><title>thread_native_entry (1,487 samples, 0.10%)</title><rect x="6.7936%" y="677" width="0.0966%" height="15" fill="rgb(228,109,6)" fg:x="104543" fg:w="1487"/><text x="7.0436%" y="687.50"></text></g><g><title>Thread::call_run (1,487 samples, 0.10%)</title><rect x="6.7936%" y="661" width="0.0966%" height="15" fill="rgb(238,117,24)" fg:x="104543" fg:w="1487"/><text x="7.0436%" y="671.50"></text></g><g><title>GangWorker::loop (1,487 samples, 0.10%)</title><rect x="6.7936%" y="645" width="0.0966%" height="15" fill="rgb(242,26,26)" fg:x="104543" fg:w="1487"/><text x="7.0436%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (216 samples, 0.01%)</title><rect x="6.8762%" y="629" width="0.0140%" height="15" fill="rgb(221,92,48)" fg:x="105814" fg:w="216"/><text x="7.1262%" y="639.50"></text></g><g><title>PosixSemaphore::wait (215 samples, 0.01%)</title><rect x="6.8763%" y="613" width="0.0140%" height="15" fill="rgb(209,209,32)" fg:x="105815" fg:w="215"/><text x="7.1263%" y="623.50"></text></g><g><title>__new_sem_wait_slow (214 samples, 0.01%)</title><rect x="6.8763%" y="597" width="0.0139%" height="15" fill="rgb(221,70,22)" fg:x="105816" fg:w="214"/><text x="7.1263%" y="607.50"></text></g><g><title>do_futex_wait (214 samples, 0.01%)</title><rect x="6.8763%" y="581" width="0.0139%" height="15" fill="rgb(248,145,5)" fg:x="105816" fg:w="214"/><text x="7.1263%" y="591.50"></text></g><g><title>futex_abstimed_wait_cancelable (214 samples, 0.01%)</title><rect x="6.8763%" y="565" width="0.0139%" height="15" fill="rgb(226,116,26)" fg:x="105816" fg:w="214"/><text x="7.1263%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (212 samples, 0.01%)</title><rect x="6.8764%" y="549" width="0.0138%" height="15" fill="rgb(244,5,17)" fg:x="105818" fg:w="212"/><text x="7.1264%" y="559.50"></text></g><g><title>GC_Thread#5 (1,509 samples, 0.10%)</title><rect x="6.7922%" y="725" width="0.0981%" height="15" fill="rgb(252,159,33)" fg:x="104522" fg:w="1509"/><text x="7.0422%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (361 samples, 0.02%)</title><rect x="6.9059%" y="581" width="0.0235%" height="15" fill="rgb(206,71,0)" fg:x="106271" fg:w="361"/><text x="7.1559%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (559 samples, 0.04%)</title><rect x="6.8940%" y="597" width="0.0363%" height="15" fill="rgb(233,118,54)" fg:x="106088" fg:w="559"/><text x="7.1440%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (669 samples, 0.04%)</title><rect x="6.8928%" y="613" width="0.0435%" height="15" fill="rgb(234,83,48)" fg:x="106069" fg:w="669"/><text x="7.1428%" y="623.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (194 samples, 0.01%)</title><rect x="6.9362%" y="581" width="0.0126%" height="15" fill="rgb(228,3,54)" fg:x="106738" fg:w="194"/><text x="7.1862%" y="591.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (194 samples, 0.01%)</title><rect x="6.9362%" y="565" width="0.0126%" height="15" fill="rgb(226,155,13)" fg:x="106738" fg:w="194"/><text x="7.1862%" y="575.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (193 samples, 0.01%)</title><rect x="6.9363%" y="549" width="0.0125%" height="15" fill="rgb(241,28,37)" fg:x="106739" fg:w="193"/><text x="7.1863%" y="559.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (195 samples, 0.01%)</title><rect x="6.9362%" y="613" width="0.0127%" height="15" fill="rgb(233,93,10)" fg:x="106738" fg:w="195"/><text x="7.1862%" y="623.50"></text></g><g><title>G1RemSet::update_rem_set (195 samples, 0.01%)</title><rect x="6.9362%" y="597" width="0.0127%" height="15" fill="rgb(225,113,19)" fg:x="106738" fg:w="195"/><text x="7.1862%" y="607.50"></text></g><g><title>G1ParTask::work (1,177 samples, 0.08%)</title><rect x="6.8927%" y="629" width="0.0765%" height="15" fill="rgb(241,2,18)" fg:x="106068" fg:w="1177"/><text x="7.1427%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (169 samples, 0.01%)</title><rect x="6.9582%" y="613" width="0.0110%" height="15" fill="rgb(228,207,21)" fg:x="107076" fg:w="169"/><text x="7.2082%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (158 samples, 0.01%)</title><rect x="6.9782%" y="405" width="0.0103%" height="15" fill="rgb(213,211,35)" fg:x="107384" fg:w="158"/><text x="7.2282%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (155 samples, 0.01%)</title><rect x="6.9784%" y="389" width="0.0101%" height="15" fill="rgb(209,83,10)" fg:x="107387" fg:w="155"/><text x="7.2284%" y="399.50"></text></g><g><title>native_write_msr (155 samples, 0.01%)</title><rect x="6.9784%" y="373" width="0.0101%" height="15" fill="rgb(209,164,1)" fg:x="107387" fg:w="155"/><text x="7.2284%" y="383.50"></text></g><g><title>finish_task_switch (162 samples, 0.01%)</title><rect x="6.9781%" y="421" width="0.0105%" height="15" fill="rgb(213,184,43)" fg:x="107382" fg:w="162"/><text x="7.2281%" y="431.50"></text></g><g><title>futex_wait_queue_me (172 samples, 0.01%)</title><rect x="6.9778%" y="469" width="0.0112%" height="15" fill="rgb(231,61,34)" fg:x="107378" fg:w="172"/><text x="7.2278%" y="479.50"></text></g><g><title>schedule (171 samples, 0.01%)</title><rect x="6.9779%" y="453" width="0.0111%" height="15" fill="rgb(235,75,3)" fg:x="107379" fg:w="171"/><text x="7.2279%" y="463.50"></text></g><g><title>__schedule (171 samples, 0.01%)</title><rect x="6.9779%" y="437" width="0.0111%" height="15" fill="rgb(220,106,47)" fg:x="107379" fg:w="171"/><text x="7.2279%" y="447.50"></text></g><g><title>do_syscall_64 (179 samples, 0.01%)</title><rect x="6.9776%" y="533" width="0.0116%" height="15" fill="rgb(210,196,33)" fg:x="107375" fg:w="179"/><text x="7.2276%" y="543.50"></text></g><g><title>__x64_sys_futex (177 samples, 0.01%)</title><rect x="6.9778%" y="517" width="0.0115%" height="15" fill="rgb(229,154,42)" fg:x="107377" fg:w="177"/><text x="7.2278%" y="527.50"></text></g><g><title>do_futex (177 samples, 0.01%)</title><rect x="6.9778%" y="501" width="0.0115%" height="15" fill="rgb(228,114,26)" fg:x="107377" fg:w="177"/><text x="7.2278%" y="511.50"></text></g><g><title>futex_wait (176 samples, 0.01%)</title><rect x="6.9778%" y="485" width="0.0114%" height="15" fill="rgb(208,144,1)" fg:x="107378" fg:w="176"/><text x="7.2278%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (186 samples, 0.01%)</title><rect x="6.9776%" y="549" width="0.0121%" height="15" fill="rgb(239,112,37)" fg:x="107374" fg:w="186"/><text x="7.2276%" y="559.50"></text></g><g><title>__GI___clone (1,500 samples, 0.10%)</title><rect x="6.8922%" y="709" width="0.0975%" height="15" fill="rgb(210,96,50)" fg:x="106061" fg:w="1500"/><text x="7.1422%" y="719.50"></text></g><g><title>start_thread (1,500 samples, 0.10%)</title><rect x="6.8922%" y="693" width="0.0975%" height="15" fill="rgb(222,178,2)" fg:x="106061" fg:w="1500"/><text x="7.1422%" y="703.50"></text></g><g><title>thread_native_entry (1,500 samples, 0.10%)</title><rect x="6.8922%" y="677" width="0.0975%" height="15" fill="rgb(226,74,18)" fg:x="106061" fg:w="1500"/><text x="7.1422%" y="687.50"></text></g><g><title>Thread::call_run (1,500 samples, 0.10%)</title><rect x="6.8922%" y="661" width="0.0975%" height="15" fill="rgb(225,67,54)" fg:x="106061" fg:w="1500"/><text x="7.1422%" y="671.50"></text></g><g><title>GangWorker::loop (1,500 samples, 0.10%)</title><rect x="6.8922%" y="645" width="0.0975%" height="15" fill="rgb(251,92,32)" fg:x="106061" fg:w="1500"/><text x="7.1422%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (196 samples, 0.01%)</title><rect x="6.9770%" y="629" width="0.0127%" height="15" fill="rgb(228,149,22)" fg:x="107365" fg:w="196"/><text x="7.2270%" y="639.50"></text></g><g><title>PosixSemaphore::wait (193 samples, 0.01%)</title><rect x="6.9772%" y="613" width="0.0125%" height="15" fill="rgb(243,54,13)" fg:x="107368" fg:w="193"/><text x="7.2272%" y="623.50"></text></g><g><title>__new_sem_wait_slow (192 samples, 0.01%)</title><rect x="6.9772%" y="597" width="0.0125%" height="15" fill="rgb(243,180,28)" fg:x="107369" fg:w="192"/><text x="7.2272%" y="607.50"></text></g><g><title>do_futex_wait (189 samples, 0.01%)</title><rect x="6.9774%" y="581" width="0.0123%" height="15" fill="rgb(208,167,24)" fg:x="107372" fg:w="189"/><text x="7.2274%" y="591.50"></text></g><g><title>futex_abstimed_wait_cancelable (189 samples, 0.01%)</title><rect x="6.9774%" y="565" width="0.0123%" height="15" fill="rgb(245,73,45)" fg:x="107372" fg:w="189"/><text x="7.2274%" y="575.50"></text></g><g><title>GC_Thread#6 (1,534 samples, 0.10%)</title><rect x="6.8903%" y="725" width="0.0997%" height="15" fill="rgb(237,203,48)" fg:x="106031" fg:w="1534"/><text x="7.1403%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (332 samples, 0.02%)</title><rect x="7.0041%" y="581" width="0.0216%" height="15" fill="rgb(211,197,16)" fg:x="107783" fg:w="332"/><text x="7.2541%" y="591.50"></text></g><g><title>G1ParScanThreadState::trim_queue (515 samples, 0.03%)</title><rect x="6.9934%" y="597" width="0.0335%" height="15" fill="rgb(243,99,51)" fg:x="107617" fg:w="515"/><text x="7.2434%" y="607.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (622 samples, 0.04%)</title><rect x="6.9931%" y="613" width="0.0404%" height="15" fill="rgb(215,123,29)" fg:x="107613" fg:w="622"/><text x="7.2431%" y="623.50"></text></g><g><title>InterpreterOopMap::iterate_oop (182 samples, 0.01%)</title><rect x="7.0548%" y="517" width="0.0118%" height="15" fill="rgb(239,186,37)" fg:x="108562" fg:w="182"/><text x="7.3048%" y="527.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (178 samples, 0.01%)</title><rect x="7.0550%" y="501" width="0.0116%" height="15" fill="rgb(252,136,39)" fg:x="108566" fg:w="178"/><text x="7.3050%" y="511.50"></text></g><g><title>G1RootProcessor::process_java_roots (270 samples, 0.02%)</title><rect x="7.0492%" y="597" width="0.0175%" height="15" fill="rgb(223,213,32)" fg:x="108477" fg:w="270"/><text x="7.2992%" y="607.50"></text></g><g><title>Threads::possibly_parallel_oops_do (222 samples, 0.01%)</title><rect x="7.0524%" y="581" width="0.0144%" height="15" fill="rgb(233,115,5)" fg:x="108525" fg:w="222"/><text x="7.3024%" y="591.50"></text></g><g><title>Threads::possibly_parallel_threads_do (222 samples, 0.01%)</title><rect x="7.0524%" y="565" width="0.0144%" height="15" fill="rgb(207,226,44)" fg:x="108525" fg:w="222"/><text x="7.3024%" y="575.50"></text></g><g><title>JavaThread::oops_do (221 samples, 0.01%)</title><rect x="7.0524%" y="549" width="0.0144%" height="15" fill="rgb(208,126,0)" fg:x="108526" fg:w="221"/><text x="7.3024%" y="559.50"></text></g><g><title>frame::oops_interpreted_do (187 samples, 0.01%)</title><rect x="7.0546%" y="533" width="0.0122%" height="15" fill="rgb(244,66,21)" fg:x="108560" fg:w="187"/><text x="7.3046%" y="543.50"></text></g><g><title>G1ParTask::work (1,160 samples, 0.08%)</title><rect x="6.9931%" y="629" width="0.0754%" height="15" fill="rgb(222,97,12)" fg:x="107613" fg:w="1160"/><text x="7.2431%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (298 samples, 0.02%)</title><rect x="7.0491%" y="613" width="0.0194%" height="15" fill="rgb(219,213,19)" fg:x="108475" fg:w="298"/><text x="7.2991%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (174 samples, 0.01%)</title><rect x="7.0775%" y="405" width="0.0113%" height="15" fill="rgb(252,169,30)" fg:x="108912" fg:w="174"/><text x="7.3275%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (168 samples, 0.01%)</title><rect x="7.0779%" y="389" width="0.0109%" height="15" fill="rgb(206,32,51)" fg:x="108918" fg:w="168"/><text x="7.3279%" y="399.50"></text></g><g><title>native_write_msr (168 samples, 0.01%)</title><rect x="7.0779%" y="373" width="0.0109%" height="15" fill="rgb(250,172,42)" fg:x="108918" fg:w="168"/><text x="7.3279%" y="383.50"></text></g><g><title>finish_task_switch (186 samples, 0.01%)</title><rect x="7.0774%" y="421" width="0.0121%" height="15" fill="rgb(209,34,43)" fg:x="108911" fg:w="186"/><text x="7.3274%" y="431.50"></text></g><g><title>futex_wait_queue_me (200 samples, 0.01%)</title><rect x="7.0769%" y="469" width="0.0130%" height="15" fill="rgb(223,11,35)" fg:x="108903" fg:w="200"/><text x="7.3269%" y="479.50"></text></g><g><title>schedule (200 samples, 0.01%)</title><rect x="7.0769%" y="453" width="0.0130%" height="15" fill="rgb(251,219,26)" fg:x="108903" fg:w="200"/><text x="7.3269%" y="463.50"></text></g><g><title>__schedule (200 samples, 0.01%)</title><rect x="7.0769%" y="437" width="0.0130%" height="15" fill="rgb(231,119,3)" fg:x="108903" fg:w="200"/><text x="7.3269%" y="447.50"></text></g><g><title>do_syscall_64 (204 samples, 0.01%)</title><rect x="7.0767%" y="533" width="0.0133%" height="15" fill="rgb(216,97,11)" fg:x="108900" fg:w="204"/><text x="7.3267%" y="543.50"></text></g><g><title>__x64_sys_futex (204 samples, 0.01%)</title><rect x="7.0767%" y="517" width="0.0133%" height="15" fill="rgb(223,59,9)" fg:x="108900" fg:w="204"/><text x="7.3267%" y="527.50"></text></g><g><title>do_futex (204 samples, 0.01%)</title><rect x="7.0767%" y="501" width="0.0133%" height="15" fill="rgb(233,93,31)" fg:x="108900" fg:w="204"/><text x="7.3267%" y="511.50"></text></g><g><title>futex_wait (202 samples, 0.01%)</title><rect x="7.0769%" y="485" width="0.0131%" height="15" fill="rgb(239,81,33)" fg:x="108902" fg:w="202"/><text x="7.3269%" y="495.50"></text></g><g><title>__GI___clone (1,505 samples, 0.10%)</title><rect x="6.9924%" y="709" width="0.0978%" height="15" fill="rgb(213,120,34)" fg:x="107603" fg:w="1505"/><text x="7.2424%" y="719.50"></text></g><g><title>start_thread (1,505 samples, 0.10%)</title><rect x="6.9924%" y="693" width="0.0978%" height="15" fill="rgb(243,49,53)" fg:x="107603" fg:w="1505"/><text x="7.2424%" y="703.50"></text></g><g><title>thread_native_entry (1,505 samples, 0.10%)</title><rect x="6.9924%" y="677" width="0.0978%" height="15" fill="rgb(247,216,33)" fg:x="107603" fg:w="1505"/><text x="7.2424%" y="687.50"></text></g><g><title>Thread::call_run (1,505 samples, 0.10%)</title><rect x="6.9924%" y="661" width="0.0978%" height="15" fill="rgb(226,26,14)" fg:x="107603" fg:w="1505"/><text x="7.2424%" y="671.50"></text></g><g><title>GangWorker::loop (1,505 samples, 0.10%)</title><rect x="6.9924%" y="645" width="0.0978%" height="15" fill="rgb(215,49,53)" fg:x="107603" fg:w="1505"/><text x="7.2424%" y="655.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (211 samples, 0.01%)</title><rect x="7.0765%" y="629" width="0.0137%" height="15" fill="rgb(245,162,40)" fg:x="108897" fg:w="211"/><text x="7.3265%" y="639.50"></text></g><g><title>PosixSemaphore::wait (211 samples, 0.01%)</title><rect x="7.0765%" y="613" width="0.0137%" height="15" fill="rgb(229,68,17)" fg:x="108897" fg:w="211"/><text x="7.3265%" y="623.50"></text></g><g><title>__new_sem_wait_slow (211 samples, 0.01%)</title><rect x="7.0765%" y="597" width="0.0137%" height="15" fill="rgb(213,182,10)" fg:x="108897" fg:w="211"/><text x="7.3265%" y="607.50"></text></g><g><title>do_futex_wait (211 samples, 0.01%)</title><rect x="7.0765%" y="581" width="0.0137%" height="15" fill="rgb(245,125,30)" fg:x="108897" fg:w="211"/><text x="7.3265%" y="591.50"></text></g><g><title>futex_abstimed_wait_cancelable (211 samples, 0.01%)</title><rect x="7.0765%" y="565" width="0.0137%" height="15" fill="rgb(232,202,2)" fg:x="108897" fg:w="211"/><text x="7.3265%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (208 samples, 0.01%)</title><rect x="7.0767%" y="549" width="0.0135%" height="15" fill="rgb(237,140,51)" fg:x="108900" fg:w="208"/><text x="7.3267%" y="559.50"></text></g><g><title>GC_Thread#7 (1,545 samples, 0.10%)</title><rect x="6.9900%" y="725" width="0.1004%" height="15" fill="rgb(236,157,25)" fg:x="107565" fg:w="1545"/><text x="7.2400%" y="735.50"></text></g><g><title>Service_Thread (182 samples, 0.01%)</title><rect x="7.0921%" y="725" width="0.0118%" height="15" fill="rgb(219,209,0)" fg:x="109136" fg:w="182"/><text x="7.3421%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (443 samples, 0.03%)</title><rect x="7.1145%" y="373" width="0.0288%" height="15" fill="rgb(240,116,54)" fg:x="109481" fg:w="443"/><text x="7.3645%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (440 samples, 0.03%)</title><rect x="7.1147%" y="357" width="0.0286%" height="15" fill="rgb(216,10,36)" fg:x="109484" fg:w="440"/><text x="7.3647%" y="367.50"></text></g><g><title>native_write_msr (434 samples, 0.03%)</title><rect x="7.1151%" y="341" width="0.0282%" height="15" fill="rgb(222,72,44)" fg:x="109490" fg:w="434"/><text x="7.3651%" y="351.50"></text></g><g><title>finish_task_switch (473 samples, 0.03%)</title><rect x="7.1136%" y="389" width="0.0307%" height="15" fill="rgb(232,159,9)" fg:x="109467" fg:w="473"/><text x="7.3636%" y="399.50"></text></g><g><title>futex_wait_queue_me (555 samples, 0.04%)</title><rect x="7.1095%" y="437" width="0.0361%" height="15" fill="rgb(210,39,32)" fg:x="109405" fg:w="555"/><text x="7.3595%" y="447.50"></text></g><g><title>schedule (533 samples, 0.03%)</title><rect x="7.1110%" y="421" width="0.0346%" height="15" fill="rgb(216,194,45)" fg:x="109427" fg:w="533"/><text x="7.3610%" y="431.50"></text></g><g><title>__schedule (531 samples, 0.03%)</title><rect x="7.1111%" y="405" width="0.0345%" height="15" fill="rgb(218,18,35)" fg:x="109429" fg:w="531"/><text x="7.3611%" y="415.50"></text></g><g><title>do_futex (589 samples, 0.04%)</title><rect x="7.1090%" y="469" width="0.0383%" height="15" fill="rgb(207,83,51)" fg:x="109397" fg:w="589"/><text x="7.3590%" y="479.50"></text></g><g><title>futex_wait (586 samples, 0.04%)</title><rect x="7.1092%" y="453" width="0.0381%" height="15" fill="rgb(225,63,43)" fg:x="109400" fg:w="586"/><text x="7.3592%" y="463.50"></text></g><g><title>do_syscall_64 (597 samples, 0.04%)</title><rect x="7.1088%" y="501" width="0.0388%" height="15" fill="rgb(207,57,36)" fg:x="109393" fg:w="597"/><text x="7.3588%" y="511.50"></text></g><g><title>__x64_sys_futex (597 samples, 0.04%)</title><rect x="7.1088%" y="485" width="0.0388%" height="15" fill="rgb(216,99,33)" fg:x="109393" fg:w="597"/><text x="7.3588%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (610 samples, 0.04%)</title><rect x="7.1088%" y="517" width="0.0396%" height="15" fill="rgb(225,42,16)" fg:x="109393" fg:w="610"/><text x="7.3588%" y="527.50"></text></g><g><title>__pthread_cond_timedwait (643 samples, 0.04%)</title><rect x="7.1069%" y="565" width="0.0418%" height="15" fill="rgb(220,201,45)" fg:x="109365" fg:w="643"/><text x="7.3569%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (642 samples, 0.04%)</title><rect x="7.1070%" y="549" width="0.0417%" height="15" fill="rgb(225,33,4)" fg:x="109366" fg:w="642"/><text x="7.3570%" y="559.50"></text></g><g><title>futex_abstimed_wait_cancelable (633 samples, 0.04%)</title><rect x="7.1076%" y="533" width="0.0411%" height="15" fill="rgb(224,33,50)" fg:x="109375" fg:w="633"/><text x="7.3576%" y="543.50"></text></g><g><title>Monitor::wait (700 samples, 0.05%)</title><rect x="7.1056%" y="613" width="0.0455%" height="15" fill="rgb(246,198,51)" fg:x="109344" fg:w="700"/><text x="7.3556%" y="623.50"></text></g><g><title>Monitor::IWait (699 samples, 0.05%)</title><rect x="7.1056%" y="597" width="0.0454%" height="15" fill="rgb(205,22,4)" fg:x="109345" fg:w="699"/><text x="7.3556%" y="607.50"></text></g><g><title>os::PlatformEvent::park (688 samples, 0.04%)</title><rect x="7.1064%" y="581" width="0.0447%" height="15" fill="rgb(206,3,8)" fg:x="109356" fg:w="688"/><text x="7.3564%" y="591.50"></text></g><g><title>NMethodSweeper::possibly_sweep (170 samples, 0.01%)</title><rect x="7.1511%" y="613" width="0.0110%" height="15" fill="rgb(251,23,15)" fg:x="110044" fg:w="170"/><text x="7.4011%" y="623.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (156 samples, 0.01%)</title><rect x="7.1520%" y="597" width="0.0101%" height="15" fill="rgb(252,88,28)" fg:x="110058" fg:w="156"/><text x="7.4020%" y="607.50"></text></g><g><title>__GI___clone (926 samples, 0.06%)</title><rect x="7.1047%" y="709" width="0.0602%" height="15" fill="rgb(212,127,14)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="719.50"></text></g><g><title>start_thread (926 samples, 0.06%)</title><rect x="7.1047%" y="693" width="0.0602%" height="15" fill="rgb(247,145,37)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="703.50"></text></g><g><title>thread_native_entry (926 samples, 0.06%)</title><rect x="7.1047%" y="677" width="0.0602%" height="15" fill="rgb(209,117,53)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="687.50"></text></g><g><title>Thread::call_run (926 samples, 0.06%)</title><rect x="7.1047%" y="661" width="0.0602%" height="15" fill="rgb(212,90,42)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="671.50"></text></g><g><title>JavaThread::thread_main_inner (926 samples, 0.06%)</title><rect x="7.1047%" y="645" width="0.0602%" height="15" fill="rgb(218,164,37)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="655.50"></text></g><g><title>NMethodSweeper::sweeper_loop (926 samples, 0.06%)</title><rect x="7.1047%" y="629" width="0.0602%" height="15" fill="rgb(246,65,34)" fg:x="109331" fg:w="926"/><text x="7.3547%" y="639.50"></text></g><g><title>Sweeper_thread (945 samples, 0.06%)</title><rect x="7.1039%" y="725" width="0.0614%" height="15" fill="rgb(231,100,33)" fg:x="109318" fg:w="945"/><text x="7.3539%" y="735.50"></text></g><g><title>[perf-934749.map] (704 samples, 0.05%)</title><rect x="7.1670%" y="709" width="0.0457%" height="15" fill="rgb(228,126,14)" fg:x="110289" fg:w="704"/><text x="7.4170%" y="719.50"></text></g><g><title>Thread-0 (766 samples, 0.05%)</title><rect x="7.1653%" y="725" width="0.0498%" height="15" fill="rgb(215,173,21)" fg:x="110263" fg:w="766"/><text x="7.4153%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (191 samples, 0.01%)</title><rect x="7.2204%" y="373" width="0.0124%" height="15" fill="rgb(210,6,40)" fg:x="111111" fg:w="191"/><text x="7.4704%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (189 samples, 0.01%)</title><rect x="7.2205%" y="357" width="0.0123%" height="15" fill="rgb(212,48,18)" fg:x="111113" fg:w="189"/><text x="7.4705%" y="367.50"></text></g><g><title>native_write_msr (189 samples, 0.01%)</title><rect x="7.2205%" y="341" width="0.0123%" height="15" fill="rgb(230,214,11)" fg:x="111113" fg:w="189"/><text x="7.4705%" y="351.50"></text></g><g><title>finish_task_switch (202 samples, 0.01%)</title><rect x="7.2202%" y="389" width="0.0131%" height="15" fill="rgb(254,105,39)" fg:x="111108" fg:w="202"/><text x="7.4702%" y="399.50"></text></g><g><title>futex_wait_queue_me (226 samples, 0.01%)</title><rect x="7.2190%" y="437" width="0.0147%" height="15" fill="rgb(245,158,5)" fg:x="111089" fg:w="226"/><text x="7.4690%" y="447.50"></text></g><g><title>schedule (217 samples, 0.01%)</title><rect x="7.2196%" y="421" width="0.0141%" height="15" fill="rgb(249,208,11)" fg:x="111098" fg:w="217"/><text x="7.4696%" y="431.50"></text></g><g><title>__schedule (215 samples, 0.01%)</title><rect x="7.2197%" y="405" width="0.0140%" height="15" fill="rgb(210,39,28)" fg:x="111100" fg:w="215"/><text x="7.4697%" y="415.50"></text></g><g><title>do_futex (236 samples, 0.02%)</title><rect x="7.2185%" y="469" width="0.0153%" height="15" fill="rgb(211,56,53)" fg:x="111081" fg:w="236"/><text x="7.4685%" y="479.50"></text></g><g><title>futex_wait (234 samples, 0.02%)</title><rect x="7.2186%" y="453" width="0.0152%" height="15" fill="rgb(226,201,30)" fg:x="111083" fg:w="234"/><text x="7.4686%" y="463.50"></text></g><g><title>do_syscall_64 (239 samples, 0.02%)</title><rect x="7.2183%" y="501" width="0.0155%" height="15" fill="rgb(239,101,34)" fg:x="111079" fg:w="239"/><text x="7.4683%" y="511.50"></text></g><g><title>__x64_sys_futex (239 samples, 0.02%)</title><rect x="7.2183%" y="485" width="0.0155%" height="15" fill="rgb(226,209,5)" fg:x="111079" fg:w="239"/><text x="7.4683%" y="495.50"></text></g><g><title>__pthread_cond_timedwait (251 samples, 0.02%)</title><rect x="7.2178%" y="565" width="0.0163%" height="15" fill="rgb(250,105,47)" fg:x="111071" fg:w="251"/><text x="7.4678%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (251 samples, 0.02%)</title><rect x="7.2178%" y="549" width="0.0163%" height="15" fill="rgb(230,72,3)" fg:x="111071" fg:w="251"/><text x="7.4678%" y="559.50"></text></g><g><title>futex_abstimed_wait_cancelable (244 samples, 0.02%)</title><rect x="7.2183%" y="533" width="0.0159%" height="15" fill="rgb(232,218,39)" fg:x="111078" fg:w="244"/><text x="7.4683%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (243 samples, 0.02%)</title><rect x="7.2183%" y="517" width="0.0158%" height="15" fill="rgb(248,166,6)" fg:x="111079" fg:w="243"/><text x="7.4683%" y="527.50"></text></g><g><title>Monitor::wait (273 samples, 0.02%)</title><rect x="7.2173%" y="613" width="0.0177%" height="15" fill="rgb(247,89,20)" fg:x="111063" fg:w="273"/><text x="7.4673%" y="623.50"></text></g><g><title>Monitor::IWait (273 samples, 0.02%)</title><rect x="7.2173%" y="597" width="0.0177%" height="15" fill="rgb(248,130,54)" fg:x="111063" fg:w="273"/><text x="7.4673%" y="607.50"></text></g><g><title>os::PlatformEvent::park (267 samples, 0.02%)</title><rect x="7.2177%" y="581" width="0.0174%" height="15" fill="rgb(234,196,4)" fg:x="111069" fg:w="267"/><text x="7.4677%" y="591.50"></text></g><g><title>__GI___clone (298 samples, 0.02%)</title><rect x="7.2158%" y="709" width="0.0194%" height="15" fill="rgb(250,143,31)" fg:x="111040" fg:w="298"/><text x="7.4658%" y="719.50"></text></g><g><title>start_thread (298 samples, 0.02%)</title><rect x="7.2158%" y="693" width="0.0194%" height="15" fill="rgb(211,110,34)" fg:x="111040" fg:w="298"/><text x="7.4658%" y="703.50"></text></g><g><title>thread_native_entry (298 samples, 0.02%)</title><rect x="7.2158%" y="677" width="0.0194%" height="15" fill="rgb(215,124,48)" fg:x="111040" fg:w="298"/><text x="7.4658%" y="687.50"></text></g><g><title>Thread::call_run (298 samples, 0.02%)</title><rect x="7.2158%" y="661" width="0.0194%" height="15" fill="rgb(216,46,13)" fg:x="111040" fg:w="298"/><text x="7.4658%" y="671.50"></text></g><g><title>WatcherThread::run (298 samples, 0.02%)</title><rect x="7.2158%" y="645" width="0.0194%" height="15" fill="rgb(205,184,25)" fg:x="111040" fg:w="298"/><text x="7.4658%" y="655.50"></text></g><g><title>WatcherThread::sleep (278 samples, 0.02%)</title><rect x="7.2171%" y="629" width="0.0181%" height="15" fill="rgb(228,1,10)" fg:x="111060" fg:w="278"/><text x="7.4671%" y="639.50"></text></g><g><title>VM_Periodic_Tas (311 samples, 0.02%)</title><rect x="7.2151%" y="725" width="0.0202%" height="15" fill="rgb(213,116,27)" fg:x="111029" fg:w="311"/><text x="7.4651%" y="735.50"></text></g><g><title>WorkGang::run_task (212 samples, 0.01%)</title><rect x="7.2784%" y="581" width="0.0138%" height="15" fill="rgb(241,95,50)" fg:x="112003" fg:w="212"/><text x="7.5284%" y="591.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (211 samples, 0.01%)</title><rect x="7.2784%" y="565" width="0.0137%" height="15" fill="rgb(238,48,32)" fg:x="112004" fg:w="211"/><text x="7.5284%" y="575.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (218 samples, 0.01%)</title><rect x="7.2782%" y="597" width="0.0142%" height="15" fill="rgb(235,113,49)" fg:x="112000" fg:w="218"/><text x="7.5282%" y="607.50"></text></g><g><title>SafepointSynchronize::begin (625 samples, 0.04%)</title><rect x="7.2560%" y="613" width="0.0406%" height="15" fill="rgb(205,127,43)" fg:x="111659" fg:w="625"/><text x="7.5060%" y="623.50"></text></g><g><title>VM_Operation::evaluate (166 samples, 0.01%)</title><rect x="7.3002%" y="597" width="0.0108%" height="15" fill="rgb(250,162,2)" fg:x="112339" fg:w="166"/><text x="7.5502%" y="607.50"></text></g><g><title>VMThread::evaluate_operation (170 samples, 0.01%)</title><rect x="7.3000%" y="613" width="0.0110%" height="15" fill="rgb(220,13,41)" fg:x="112336" fg:w="170"/><text x="7.5500%" y="623.50"></text></g><g><title>Thread::call_run (987 samples, 0.06%)</title><rect x="7.2471%" y="661" width="0.0641%" height="15" fill="rgb(249,221,25)" fg:x="111522" fg:w="987"/><text x="7.4971%" y="671.50"></text></g><g><title>VMThread::run (986 samples, 0.06%)</title><rect x="7.2472%" y="645" width="0.0641%" height="15" fill="rgb(215,208,19)" fg:x="111523" fg:w="986"/><text x="7.4972%" y="655.50"></text></g><g><title>VMThread::loop (986 samples, 0.06%)</title><rect x="7.2472%" y="629" width="0.0641%" height="15" fill="rgb(236,175,2)" fg:x="111523" fg:w="986"/><text x="7.4972%" y="639.50"></text></g><g><title>__GI___clone (1,041 samples, 0.07%)</title><rect x="7.2440%" y="709" width="0.0676%" height="15" fill="rgb(241,52,2)" fg:x="111474" fg:w="1041"/><text x="7.4940%" y="719.50"></text></g><g><title>start_thread (997 samples, 0.06%)</title><rect x="7.2469%" y="693" width="0.0648%" height="15" fill="rgb(248,140,14)" fg:x="111518" fg:w="997"/><text x="7.4969%" y="703.50"></text></g><g><title>thread_native_entry (997 samples, 0.06%)</title><rect x="7.2469%" y="677" width="0.0648%" height="15" fill="rgb(253,22,42)" fg:x="111518" fg:w="997"/><text x="7.4969%" y="687.50"></text></g><g><title>VM_Thread (1,191 samples, 0.08%)</title><rect x="7.2353%" y="725" width="0.0774%" height="15" fill="rgb(234,61,47)" fg:x="111340" fg:w="1191"/><text x="7.4853%" y="735.50"></text></g><g><title>futex_wait (155 samples, 0.01%)</title><rect x="7.3348%" y="629" width="0.0101%" height="15" fill="rgb(208,226,15)" fg:x="112872" fg:w="155"/><text x="7.5848%" y="639.50"></text></g><g><title>__x64_sys_futex (179 samples, 0.01%)</title><rect x="7.3347%" y="661" width="0.0116%" height="15" fill="rgb(217,221,4)" fg:x="112870" fg:w="179"/><text x="7.5847%" y="671.50"></text></g><g><title>do_futex (178 samples, 0.01%)</title><rect x="7.3348%" y="645" width="0.0116%" height="15" fill="rgb(212,174,34)" fg:x="112871" fg:w="178"/><text x="7.5848%" y="655.50"></text></g><g><title>do_syscall_64 (348 samples, 0.02%)</title><rect x="7.3287%" y="677" width="0.0226%" height="15" fill="rgb(253,83,4)" fg:x="112778" fg:w="348"/><text x="7.5787%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (356 samples, 0.02%)</title><rect x="7.3287%" y="693" width="0.0231%" height="15" fill="rgb(250,195,49)" fg:x="112778" fg:w="356"/><text x="7.5787%" y="703.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (639 samples, 0.04%)</title><rect x="7.3143%" y="709" width="0.0415%" height="15" fill="rgb(241,192,25)" fg:x="112556" fg:w="639"/><text x="7.5643%" y="719.50"></text></g><g><title>bazel (706 samples, 0.05%)</title><rect x="7.3140%" y="725" width="0.0459%" height="15" fill="rgb(208,124,10)" fg:x="112551" fg:w="706"/><text x="7.5640%" y="735.50"></text></g><g><title>_dl_relocate_object (162 samples, 0.01%)</title><rect x="7.3701%" y="629" width="0.0105%" height="15" fill="rgb(222,33,0)" fg:x="113414" fg:w="162"/><text x="7.6201%" y="639.50"></text></g><g><title>[ld-2.31.so] (224 samples, 0.01%)</title><rect x="7.3662%" y="645" width="0.0146%" height="15" fill="rgb(234,209,28)" fg:x="113355" fg:w="224"/><text x="7.6162%" y="655.50"></text></g><g><title>_dl_start_final (227 samples, 0.01%)</title><rect x="7.3662%" y="677" width="0.0148%" height="15" fill="rgb(224,11,23)" fg:x="113355" fg:w="227"/><text x="7.6162%" y="687.50"></text></g><g><title>_dl_sysdep_start (227 samples, 0.01%)</title><rect x="7.3662%" y="661" width="0.0148%" height="15" fill="rgb(232,99,1)" fg:x="113355" fg:w="227"/><text x="7.6162%" y="671.50"></text></g><g><title>_dl_start (231 samples, 0.02%)</title><rect x="7.3662%" y="693" width="0.0150%" height="15" fill="rgb(237,95,45)" fg:x="113355" fg:w="231"/><text x="7.6162%" y="703.50"></text></g><g><title>_start (272 samples, 0.02%)</title><rect x="7.3636%" y="709" width="0.0177%" height="15" fill="rgb(208,109,11)" fg:x="113315" fg:w="272"/><text x="7.6136%" y="719.50"></text></g><g><title>build-runfiles (391 samples, 0.03%)</title><rect x="7.3599%" y="725" width="0.0254%" height="15" fill="rgb(216,190,48)" fg:x="113258" fg:w="391"/><text x="7.6099%" y="735.50"></text></g><g><title>begin_new_exec (161 samples, 0.01%)</title><rect x="7.4492%" y="277" width="0.0105%" height="15" fill="rgb(251,171,36)" fg:x="114632" fg:w="161"/><text x="7.6992%" y="287.50"></text></g><g><title>load_elf_binary (266 samples, 0.02%)</title><rect x="7.4483%" y="293" width="0.0173%" height="15" fill="rgb(230,62,22)" fg:x="114618" fg:w="266"/><text x="7.6983%" y="303.50"></text></g><g><title>__perf_event_task_sched_in (1,042 samples, 0.07%)</title><rect x="7.4720%" y="213" width="0.0677%" height="15" fill="rgb(225,114,35)" fg:x="114982" fg:w="1042"/><text x="7.7220%" y="223.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,032 samples, 0.07%)</title><rect x="7.4726%" y="197" width="0.0671%" height="15" fill="rgb(215,118,42)" fg:x="114992" fg:w="1032"/><text x="7.7226%" y="207.50"></text></g><g><title>native_write_msr (1,027 samples, 0.07%)</title><rect x="7.4729%" y="181" width="0.0667%" height="15" fill="rgb(243,119,21)" fg:x="114997" fg:w="1027"/><text x="7.7229%" y="191.50"></text></g><g><title>finish_task_switch (1,090 samples, 0.07%)</title><rect x="7.4704%" y="229" width="0.0708%" height="15" fill="rgb(252,177,53)" fg:x="114958" fg:w="1090"/><text x="7.7204%" y="239.50"></text></g><g><title>_cond_resched (1,102 samples, 0.07%)</title><rect x="7.4699%" y="261" width="0.0716%" height="15" fill="rgb(237,209,29)" fg:x="114951" fg:w="1102"/><text x="7.7199%" y="271.50"></text></g><g><title>__schedule (1,101 samples, 0.07%)</title><rect x="7.4700%" y="245" width="0.0715%" height="15" fill="rgb(212,65,23)" fg:x="114952" fg:w="1101"/><text x="7.7200%" y="255.50"></text></g><g><title>sched_exec (1,143 samples, 0.07%)</title><rect x="7.4679%" y="293" width="0.0743%" height="15" fill="rgb(230,222,46)" fg:x="114919" fg:w="1143"/><text x="7.7179%" y="303.50"></text></g><g><title>stop_one_cpu (1,126 samples, 0.07%)</title><rect x="7.4690%" y="277" width="0.0732%" height="15" fill="rgb(215,135,32)" fg:x="114936" fg:w="1126"/><text x="7.7190%" y="287.50"></text></g><g><title>apparmor_bprm_creds_for_exec (188 samples, 0.01%)</title><rect x="7.5485%" y="277" width="0.0122%" height="15" fill="rgb(246,101,22)" fg:x="116160" fg:w="188"/><text x="7.7985%" y="287.50"></text></g><g><title>profile_transition (163 samples, 0.01%)</title><rect x="7.5501%" y="261" width="0.0106%" height="15" fill="rgb(206,107,13)" fg:x="116185" fg:w="163"/><text x="7.8001%" y="271.50"></text></g><g><title>security_bprm_creds_for_exec (193 samples, 0.01%)</title><rect x="7.5484%" y="293" width="0.0125%" height="15" fill="rgb(250,100,44)" fg:x="116158" fg:w="193"/><text x="7.7984%" y="303.50"></text></g><g><title>bprm_execve (1,814 samples, 0.12%)</title><rect x="7.4435%" y="309" width="0.1179%" height="15" fill="rgb(231,147,38)" fg:x="114544" fg:w="1814"/><text x="7.6935%" y="319.50"></text></g><g><title>do_execveat_common (1,970 samples, 0.13%)</title><rect x="7.4397%" y="325" width="0.1280%" height="15" fill="rgb(229,8,40)" fg:x="114486" fg:w="1970"/><text x="7.6897%" y="335.50"></text></g><g><title>__GI_execve (1,982 samples, 0.13%)</title><rect x="7.4395%" y="389" width="0.1288%" height="15" fill="rgb(221,135,30)" fg:x="114482" fg:w="1982"/><text x="7.6895%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,980 samples, 0.13%)</title><rect x="7.4396%" y="373" width="0.1287%" height="15" fill="rgb(249,193,18)" fg:x="114484" fg:w="1980"/><text x="7.6896%" y="383.50"></text></g><g><title>do_syscall_64 (1,980 samples, 0.13%)</title><rect x="7.4396%" y="357" width="0.1287%" height="15" fill="rgb(209,133,39)" fg:x="114484" fg:w="1980"/><text x="7.6896%" y="367.50"></text></g><g><title>__x64_sys_execve (1,980 samples, 0.13%)</title><rect x="7.4396%" y="341" width="0.1287%" height="15" fill="rgb(232,100,14)" fg:x="114484" fg:w="1980"/><text x="7.6896%" y="351.50"></text></g><g><title>__strcspn_sse42 (155 samples, 0.01%)</title><rect x="7.5684%" y="389" width="0.0101%" height="15" fill="rgb(224,185,1)" fg:x="116466" fg:w="155"/><text x="7.8184%" y="399.50"></text></g><g><title>[dash] (2,428 samples, 0.16%)</title><rect x="7.4218%" y="405" width="0.1578%" height="15" fill="rgb(223,139,8)" fg:x="114210" fg:w="2428"/><text x="7.6718%" y="415.50"></text></g><g><title>__free_pages_ok (230 samples, 0.01%)</title><rect x="7.6173%" y="261" width="0.0149%" height="15" fill="rgb(232,213,38)" fg:x="117218" fg:w="230"/><text x="7.8673%" y="271.50"></text></g><g><title>__mmdrop (398 samples, 0.03%)</title><rect x="7.6139%" y="277" width="0.0259%" height="15" fill="rgb(207,94,22)" fg:x="117166" fg:w="398"/><text x="7.8639%" y="287.50"></text></g><g><title>__perf_event_task_sched_in (10,880 samples, 0.71%)</title><rect x="7.6397%" y="277" width="0.7070%" height="15" fill="rgb(219,183,54)" fg:x="117564" fg:w="10880"/><text x="7.8897%" y="287.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (10,797 samples, 0.70%)</title><rect x="7.6451%" y="261" width="0.7016%" height="15" fill="rgb(216,185,54)" fg:x="117647" fg:w="10797"/><text x="7.8951%" y="271.50"></text></g><g><title>native_write_msr (10,773 samples, 0.70%)</title><rect x="7.6467%" y="245" width="0.7001%" height="15" fill="rgb(254,217,39)" fg:x="117671" fg:w="10773"/><text x="7.8967%" y="255.50"></text></g><g><title>asm_sysvec_irq_work (202 samples, 0.01%)</title><rect x="8.3489%" y="277" width="0.0131%" height="15" fill="rgb(240,178,23)" fg:x="128477" fg:w="202"/><text x="8.5989%" y="287.50"></text></g><g><title>finish_task_switch (11,841 samples, 0.77%)</title><rect x="7.6059%" y="293" width="0.7695%" height="15" fill="rgb(218,11,47)" fg:x="117043" fg:w="11841"/><text x="7.8559%" y="303.50"></text></g><g><title>schedule (11,987 samples, 0.78%)</title><rect x="7.6010%" y="325" width="0.7790%" height="15" fill="rgb(218,51,51)" fg:x="116967" fg:w="11987"/><text x="7.8510%" y="335.50"></text></g><g><title>__schedule (11,977 samples, 0.78%)</title><rect x="7.6016%" y="309" width="0.7783%" height="15" fill="rgb(238,126,27)" fg:x="116977" fg:w="11977"/><text x="7.8516%" y="319.50"></text></g><g><title>release_task (590 samples, 0.04%)</title><rect x="8.3908%" y="309" width="0.0383%" height="15" fill="rgb(249,202,22)" fg:x="129121" fg:w="590"/><text x="8.6408%" y="319.50"></text></g><g><title>do_wait (12,868 samples, 0.84%)</title><rect x="7.5944%" y="341" width="0.8362%" height="15" fill="rgb(254,195,49)" fg:x="116866" fg:w="12868"/><text x="7.8444%" y="351.50"></text></g><g><title>wait_consider_task (780 samples, 0.05%)</title><rect x="8.3799%" y="325" width="0.0507%" height="15" fill="rgb(208,123,14)" fg:x="128954" fg:w="780"/><text x="8.6299%" y="335.50"></text></g><g><title>kernel_wait4 (12,889 samples, 0.84%)</title><rect x="7.5931%" y="357" width="0.8376%" height="15" fill="rgb(224,200,8)" fg:x="116846" fg:w="12889"/><text x="7.8431%" y="367.50"></text></g><g><title>do_syscall_64 (12,927 samples, 0.84%)</title><rect x="7.5907%" y="373" width="0.8400%" height="15" fill="rgb(217,61,36)" fg:x="116809" fg:w="12927"/><text x="7.8407%" y="383.50"></text></g><g><title>copy_fpstate_to_sigframe (182 samples, 0.01%)</title><rect x="8.4345%" y="309" width="0.0118%" height="15" fill="rgb(206,35,45)" fg:x="129794" fg:w="182"/><text x="8.6845%" y="319.50"></text></g><g><title>get_sigframe.constprop.0.isra.0 (209 samples, 0.01%)</title><rect x="8.4337%" y="325" width="0.0136%" height="15" fill="rgb(217,65,33)" fg:x="129782" fg:w="209"/><text x="8.6837%" y="335.50"></text></g><g><title>arch_do_signal (339 samples, 0.02%)</title><rect x="8.4315%" y="341" width="0.0220%" height="15" fill="rgb(222,158,48)" fg:x="129748" fg:w="339"/><text x="8.6815%" y="351.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (13,280 samples, 0.86%)</title><rect x="7.5907%" y="389" width="0.8630%" height="15" fill="rgb(254,2,54)" fg:x="116809" fg:w="13280"/><text x="7.8407%" y="399.50"></text></g><g><title>syscall_exit_to_user_mode (353 samples, 0.02%)</title><rect x="8.4307%" y="373" width="0.0229%" height="15" fill="rgb(250,143,38)" fg:x="129736" fg:w="353"/><text x="8.6807%" y="383.50"></text></g><g><title>exit_to_user_mode_prepare (353 samples, 0.02%)</title><rect x="8.4307%" y="357" width="0.0229%" height="15" fill="rgb(248,25,0)" fg:x="129736" fg:w="353"/><text x="8.6807%" y="367.50"></text></g><g><title>__GI___wait4 (13,475 samples, 0.88%)</title><rect x="7.5850%" y="405" width="0.8757%" height="15" fill="rgb(206,152,27)" fg:x="116721" fg:w="13475"/><text x="7.8350%" y="415.50"></text></g><g><title>[dash] (16,368 samples, 1.06%)</title><rect x="7.4172%" y="421" width="1.0637%" height="15" fill="rgb(240,77,30)" fg:x="114140" fg:w="16368"/><text x="7.6672%" y="431.50"></text></g><g><title>[dash] (16,667 samples, 1.08%)</title><rect x="7.4130%" y="437" width="1.0831%" height="15" fill="rgb(231,5,3)" fg:x="114074" fg:w="16667"/><text x="7.6630%" y="447.50"></text></g><g><title>__GI___xstat (163 samples, 0.01%)</title><rect x="8.4964%" y="437" width="0.0106%" height="15" fill="rgb(207,226,32)" fg:x="130746" fg:w="163"/><text x="8.7464%" y="447.50"></text></g><g><title>__run_fork_handlers (171 samples, 0.01%)</title><rect x="8.5146%" y="421" width="0.0111%" height="15" fill="rgb(222,207,47)" fg:x="131027" fg:w="171"/><text x="8.7646%" y="431.50"></text></g><g><title>filemap_map_pages (215 samples, 0.01%)</title><rect x="8.5338%" y="341" width="0.0140%" height="15" fill="rgb(229,115,45)" fg:x="131322" fg:w="215"/><text x="8.7838%" y="351.50"></text></g><g><title>handle_mm_fault (318 samples, 0.02%)</title><rect x="8.5315%" y="357" width="0.0207%" height="15" fill="rgb(224,191,6)" fg:x="131286" fg:w="318"/><text x="8.7815%" y="367.50"></text></g><g><title>exc_page_fault (347 samples, 0.02%)</title><rect x="8.5297%" y="389" width="0.0225%" height="15" fill="rgb(230,227,24)" fg:x="131259" fg:w="347"/><text x="8.7797%" y="399.50"></text></g><g><title>do_user_addr_fault (346 samples, 0.02%)</title><rect x="8.5298%" y="373" width="0.0225%" height="15" fill="rgb(228,80,19)" fg:x="131260" fg:w="346"/><text x="8.7798%" y="383.50"></text></g><g><title>asm_exc_page_fault (371 samples, 0.02%)</title><rect x="8.5294%" y="405" width="0.0241%" height="15" fill="rgb(247,229,0)" fg:x="131255" fg:w="371"/><text x="8.7794%" y="415.50"></text></g><g><title>anon_vma_fork (214 samples, 0.01%)</title><rect x="8.5782%" y="309" width="0.0139%" height="15" fill="rgb(237,194,15)" fg:x="132006" fg:w="214"/><text x="8.8282%" y="319.50"></text></g><g><title>copy_page_range (168 samples, 0.01%)</title><rect x="8.5921%" y="309" width="0.0109%" height="15" fill="rgb(219,203,20)" fg:x="132220" fg:w="168"/><text x="8.8421%" y="319.50"></text></g><g><title>dup_mm (705 samples, 0.05%)</title><rect x="8.5725%" y="325" width="0.0458%" height="15" fill="rgb(234,128,8)" fg:x="131918" fg:w="705"/><text x="8.8225%" y="335.50"></text></g><g><title>inherit_task_group.isra.0 (259 samples, 0.02%)</title><rect x="8.6246%" y="309" width="0.0168%" height="15" fill="rgb(248,202,8)" fg:x="132720" fg:w="259"/><text x="8.8746%" y="319.50"></text></g><g><title>inherit_event.constprop.0 (250 samples, 0.02%)</title><rect x="8.6252%" y="293" width="0.0162%" height="15" fill="rgb(206,104,37)" fg:x="132729" fg:w="250"/><text x="8.8752%" y="303.50"></text></g><g><title>perf_event_alloc (204 samples, 0.01%)</title><rect x="8.6282%" y="277" width="0.0133%" height="15" fill="rgb(223,8,27)" fg:x="132775" fg:w="204"/><text x="8.8782%" y="287.50"></text></g><g><title>perf_event_init_task (278 samples, 0.02%)</title><rect x="8.6241%" y="325" width="0.0181%" height="15" fill="rgb(216,217,28)" fg:x="132712" fg:w="278"/><text x="8.8741%" y="335.50"></text></g><g><title>copy_process (1,388 samples, 0.09%)</title><rect x="8.5538%" y="341" width="0.0902%" height="15" fill="rgb(249,199,1)" fg:x="131630" fg:w="1388"/><text x="8.8038%" y="351.50"></text></g><g><title>do_syscall_64 (1,453 samples, 0.09%)</title><rect x="8.5537%" y="389" width="0.0944%" height="15" fill="rgb(240,85,17)" fg:x="131628" fg:w="1453"/><text x="8.8037%" y="399.50"></text></g><g><title>__do_sys_clone (1,453 samples, 0.09%)</title><rect x="8.5537%" y="373" width="0.0944%" height="15" fill="rgb(206,108,45)" fg:x="131628" fg:w="1453"/><text x="8.8037%" y="383.50"></text></g><g><title>kernel_clone (1,452 samples, 0.09%)</title><rect x="8.5537%" y="357" width="0.0944%" height="15" fill="rgb(245,210,41)" fg:x="131629" fg:w="1452"/><text x="8.8037%" y="367.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,457 samples, 0.09%)</title><rect x="8.5535%" y="405" width="0.0947%" height="15" fill="rgb(206,13,37)" fg:x="131626" fg:w="1457"/><text x="8.8035%" y="415.50"></text></g><g><title>handle_mm_fault (364 samples, 0.02%)</title><rect x="8.6853%" y="309" width="0.0237%" height="15" fill="rgb(250,61,18)" fg:x="133653" fg:w="364"/><text x="8.9353%" y="319.50"></text></g><g><title>do_user_addr_fault (571 samples, 0.04%)</title><rect x="8.6725%" y="325" width="0.0371%" height="15" fill="rgb(235,172,48)" fg:x="133456" fg:w="571"/><text x="8.9225%" y="335.50"></text></g><g><title>exc_page_fault (586 samples, 0.04%)</title><rect x="8.6716%" y="341" width="0.0381%" height="15" fill="rgb(249,201,17)" fg:x="133443" fg:w="586"/><text x="8.9216%" y="351.50"></text></g><g><title>asm_exc_page_fault (828 samples, 0.05%)</title><rect x="8.6561%" y="357" width="0.0538%" height="15" fill="rgb(219,208,6)" fg:x="133204" fg:w="828"/><text x="8.9061%" y="367.50"></text></g><g><title>__put_user_nocheck_4 (857 samples, 0.06%)</title><rect x="8.6545%" y="373" width="0.0557%" height="15" fill="rgb(248,31,23)" fg:x="133179" fg:w="857"/><text x="8.9045%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (10,505 samples, 0.68%)</title><rect x="8.7276%" y="357" width="0.6827%" height="15" fill="rgb(245,15,42)" fg:x="134304" fg:w="10505"/><text x="8.9776%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (10,375 samples, 0.67%)</title><rect x="8.7360%" y="341" width="0.6742%" height="15" fill="rgb(222,217,39)" fg:x="134434" fg:w="10375"/><text x="8.9860%" y="351.50"></text></g><g><title>native_write_msr (10,317 samples, 0.67%)</title><rect x="8.7398%" y="325" width="0.6704%" height="15" fill="rgb(210,219,27)" fg:x="134492" fg:w="10317"/><text x="8.9898%" y="335.50"></text></g><g><title>asm_sysvec_irq_work (203 samples, 0.01%)</title><rect x="9.4120%" y="357" width="0.0132%" height="15" fill="rgb(252,166,36)" fg:x="144836" fg:w="203"/><text x="9.6620%" y="367.50"></text></g><g><title>schedule_tail (11,943 samples, 0.78%)</title><rect x="8.6529%" y="389" width="0.7761%" height="15" fill="rgb(245,132,34)" fg:x="133155" fg:w="11943"/><text x="8.9029%" y="399.50"></text></g><g><title>finish_task_switch (11,014 samples, 0.72%)</title><rect x="8.7133%" y="373" width="0.7157%" height="15" fill="rgb(236,54,3)" fg:x="134084" fg:w="11014"/><text x="8.9633%" y="383.50"></text></g><g><title>arch_fork (13,936 samples, 0.91%)</title><rect x="8.5257%" y="421" width="0.9056%" height="15" fill="rgb(241,173,43)" fg:x="131198" fg:w="13936"/><text x="8.7757%" y="431.50"></text></g><g><title>ret_from_fork (12,003 samples, 0.78%)</title><rect x="8.6513%" y="405" width="0.7800%" height="15" fill="rgb(215,190,9)" fg:x="133131" fg:w="12003"/><text x="8.9013%" y="415.50"></text></g><g><title>handle_mm_fault (225 samples, 0.01%)</title><rect x="9.4341%" y="373" width="0.0146%" height="15" fill="rgb(242,101,16)" fg:x="145177" fg:w="225"/><text x="9.6841%" y="383.50"></text></g><g><title>wp_page_copy (162 samples, 0.01%)</title><rect x="9.4382%" y="357" width="0.0105%" height="15" fill="rgb(223,190,21)" fg:x="145240" fg:w="162"/><text x="9.6882%" y="367.50"></text></g><g><title>exc_page_fault (274 samples, 0.02%)</title><rect x="9.4313%" y="405" width="0.0178%" height="15" fill="rgb(215,228,25)" fg:x="145134" fg:w="274"/><text x="9.6813%" y="415.50"></text></g><g><title>do_user_addr_fault (272 samples, 0.02%)</title><rect x="9.4315%" y="389" width="0.0177%" height="15" fill="rgb(225,36,22)" fg:x="145136" fg:w="272"/><text x="9.6815%" y="399.50"></text></g><g><title>asm_exc_page_fault (290 samples, 0.02%)</title><rect x="9.4313%" y="421" width="0.0188%" height="15" fill="rgb(251,106,46)" fg:x="145134" fg:w="290"/><text x="9.6813%" y="431.50"></text></g><g><title>__libc_fork (14,526 samples, 0.94%)</title><rect x="8.5081%" y="437" width="0.9440%" height="15" fill="rgb(208,90,1)" fg:x="130927" fg:w="14526"/><text x="8.7581%" y="447.50"></text></g><g><title>exc_page_fault (179 samples, 0.01%)</title><rect x="9.4526%" y="421" width="0.0116%" height="15" fill="rgb(243,10,4)" fg:x="145461" fg:w="179"/><text x="9.7026%" y="431.50"></text></g><g><title>do_user_addr_fault (178 samples, 0.01%)</title><rect x="9.4527%" y="405" width="0.0116%" height="15" fill="rgb(212,137,27)" fg:x="145462" fg:w="178"/><text x="9.7027%" y="415.50"></text></g><g><title>asm_exc_page_fault (189 samples, 0.01%)</title><rect x="9.4525%" y="437" width="0.0123%" height="15" fill="rgb(231,220,49)" fg:x="145460" fg:w="189"/><text x="9.7025%" y="447.50"></text></g><g><title>[dash] (31,621 samples, 2.05%)</title><rect x="7.4113%" y="453" width="2.0549%" height="15" fill="rgb(237,96,20)" fg:x="114048" fg:w="31621"/><text x="7.6613%" y="463.50">[..</text></g><g><title>[dash] (31,859 samples, 2.07%)</title><rect x="7.4096%" y="469" width="2.0703%" height="15" fill="rgb(239,229,30)" fg:x="114022" fg:w="31859"/><text x="7.6596%" y="479.50">[..</text></g><g><title>[dash] (32,009 samples, 2.08%)</title><rect x="7.4081%" y="485" width="2.0801%" height="15" fill="rgb(219,65,33)" fg:x="113999" fg:w="32009"/><text x="7.6581%" y="495.50">[..</text></g><g><title>[dash] (32,214 samples, 2.09%)</title><rect x="7.4061%" y="501" width="2.0934%" height="15" fill="rgb(243,134,7)" fg:x="113968" fg:w="32214"/><text x="7.6561%" y="511.50">[..</text></g><g><title>__perf_event_task_sched_in (427 samples, 0.03%)</title><rect x="9.5055%" y="373" width="0.0277%" height="15" fill="rgb(216,177,54)" fg:x="146275" fg:w="427"/><text x="9.7555%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (421 samples, 0.03%)</title><rect x="9.5059%" y="357" width="0.0274%" height="15" fill="rgb(211,160,20)" fg:x="146281" fg:w="421"/><text x="9.7559%" y="367.50"></text></g><g><title>native_write_msr (421 samples, 0.03%)</title><rect x="9.5059%" y="341" width="0.0274%" height="15" fill="rgb(239,85,39)" fg:x="146281" fg:w="421"/><text x="9.7559%" y="351.50"></text></g><g><title>finish_task_switch (472 samples, 0.03%)</title><rect x="9.5046%" y="389" width="0.0307%" height="15" fill="rgb(232,125,22)" fg:x="146261" fg:w="472"/><text x="9.7546%" y="399.50"></text></g><g><title>schedule (479 samples, 0.03%)</title><rect x="9.5044%" y="421" width="0.0311%" height="15" fill="rgb(244,57,34)" fg:x="146258" fg:w="479"/><text x="9.7544%" y="431.50"></text></g><g><title>__schedule (477 samples, 0.03%)</title><rect x="9.5045%" y="405" width="0.0310%" height="15" fill="rgb(214,203,32)" fg:x="146260" fg:w="477"/><text x="9.7545%" y="415.50"></text></g><g><title>do_syscall_64 (613 samples, 0.04%)</title><rect x="9.5029%" y="469" width="0.0398%" height="15" fill="rgb(207,58,43)" fg:x="146235" fg:w="613"/><text x="9.7529%" y="479.50"></text></g><g><title>kernel_wait4 (608 samples, 0.04%)</title><rect x="9.5032%" y="453" width="0.0395%" height="15" fill="rgb(215,193,15)" fg:x="146240" fg:w="608"/><text x="9.7532%" y="463.50"></text></g><g><title>do_wait (605 samples, 0.04%)</title><rect x="9.5034%" y="437" width="0.0393%" height="15" fill="rgb(232,15,44)" fg:x="146243" fg:w="605"/><text x="9.7534%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (632 samples, 0.04%)</title><rect x="9.5029%" y="485" width="0.0411%" height="15" fill="rgb(212,3,48)" fg:x="146235" fg:w="632"/><text x="9.7529%" y="495.50"></text></g><g><title>__GI___wait4 (695 samples, 0.05%)</title><rect x="9.4997%" y="501" width="0.0452%" height="15" fill="rgb(218,128,7)" fg:x="146186" fg:w="695"/><text x="9.7497%" y="511.50"></text></g><g><title>[dash] (33,126 samples, 2.15%)</title><rect x="7.4035%" y="517" width="2.1527%" height="15" fill="rgb(226,216,39)" fg:x="113928" fg:w="33126"/><text x="7.6535%" y="527.50">[..</text></g><g><title>exc_page_fault (167 samples, 0.01%)</title><rect x="9.5670%" y="469" width="0.0109%" height="15" fill="rgb(243,47,51)" fg:x="147221" fg:w="167"/><text x="9.8170%" y="479.50"></text></g><g><title>do_user_addr_fault (166 samples, 0.01%)</title><rect x="9.5670%" y="453" width="0.0108%" height="15" fill="rgb(241,183,40)" fg:x="147222" fg:w="166"/><text x="9.8170%" y="463.50"></text></g><g><title>asm_exc_page_fault (179 samples, 0.01%)</title><rect x="9.5668%" y="485" width="0.0116%" height="15" fill="rgb(231,217,32)" fg:x="147219" fg:w="179"/><text x="9.8168%" y="495.50"></text></g><g><title>dup_mm (427 samples, 0.03%)</title><rect x="9.5896%" y="405" width="0.0277%" height="15" fill="rgb(229,61,38)" fg:x="147569" fg:w="427"/><text x="9.8396%" y="415.50"></text></g><g><title>inherit_task_group.isra.0 (217 samples, 0.01%)</title><rect x="9.6227%" y="389" width="0.0141%" height="15" fill="rgb(225,210,5)" fg:x="148078" fg:w="217"/><text x="9.8727%" y="399.50"></text></g><g><title>inherit_event.constprop.0 (210 samples, 0.01%)</title><rect x="9.6231%" y="373" width="0.0136%" height="15" fill="rgb(231,79,45)" fg:x="148085" fg:w="210"/><text x="9.8731%" y="383.50"></text></g><g><title>perf_event_alloc (176 samples, 0.01%)</title><rect x="9.6253%" y="357" width="0.0114%" height="15" fill="rgb(224,100,7)" fg:x="148119" fg:w="176"/><text x="9.8753%" y="367.50"></text></g><g><title>perf_event_init_task (233 samples, 0.02%)</title><rect x="9.6221%" y="405" width="0.0151%" height="15" fill="rgb(241,198,18)" fg:x="148070" fg:w="233"/><text x="9.8721%" y="415.50"></text></g><g><title>copy_process (927 samples, 0.06%)</title><rect x="9.5787%" y="421" width="0.0602%" height="15" fill="rgb(252,97,53)" fg:x="147402" fg:w="927"/><text x="9.8287%" y="431.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (981 samples, 0.06%)</title><rect x="9.5785%" y="485" width="0.0637%" height="15" fill="rgb(220,88,7)" fg:x="147398" fg:w="981"/><text x="9.8285%" y="495.50"></text></g><g><title>do_syscall_64 (981 samples, 0.06%)</title><rect x="9.5785%" y="469" width="0.0637%" height="15" fill="rgb(213,176,14)" fg:x="147398" fg:w="981"/><text x="9.8285%" y="479.50"></text></g><g><title>__do_sys_clone (981 samples, 0.06%)</title><rect x="9.5785%" y="453" width="0.0637%" height="15" fill="rgb(246,73,7)" fg:x="147398" fg:w="981"/><text x="9.8285%" y="463.50"></text></g><g><title>kernel_clone (979 samples, 0.06%)</title><rect x="9.5786%" y="437" width="0.0636%" height="15" fill="rgb(245,64,36)" fg:x="147400" fg:w="979"/><text x="9.8286%" y="447.50"></text></g><g><title>do_user_addr_fault (430 samples, 0.03%)</title><rect x="9.6547%" y="405" width="0.0279%" height="15" fill="rgb(245,80,10)" fg:x="148571" fg:w="430"/><text x="9.9047%" y="415.50"></text></g><g><title>handle_mm_fault (329 samples, 0.02%)</title><rect x="9.6613%" y="389" width="0.0214%" height="15" fill="rgb(232,107,50)" fg:x="148672" fg:w="329"/><text x="9.9113%" y="399.50"></text></g><g><title>wp_page_copy (219 samples, 0.01%)</title><rect x="9.6684%" y="373" width="0.0142%" height="15" fill="rgb(253,3,0)" fg:x="148782" fg:w="219"/><text x="9.9184%" y="383.50"></text></g><g><title>exc_page_fault (435 samples, 0.03%)</title><rect x="9.6544%" y="421" width="0.0283%" height="15" fill="rgb(212,99,53)" fg:x="148567" fg:w="435"/><text x="9.9044%" y="431.50"></text></g><g><title>asm_exc_page_fault (558 samples, 0.04%)</title><rect x="9.6466%" y="437" width="0.0363%" height="15" fill="rgb(249,111,54)" fg:x="148446" fg:w="558"/><text x="9.8966%" y="447.50"></text></g><g><title>__put_user_nocheck_4 (570 samples, 0.04%)</title><rect x="9.6459%" y="453" width="0.0370%" height="15" fill="rgb(249,55,30)" fg:x="148435" fg:w="570"/><text x="9.8959%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (6,090 samples, 0.40%)</title><rect x="9.6977%" y="437" width="0.3958%" height="15" fill="rgb(237,47,42)" fg:x="149232" fg:w="6090"/><text x="9.9477%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,013 samples, 0.39%)</title><rect x="9.7027%" y="421" width="0.3907%" height="15" fill="rgb(211,20,18)" fg:x="149309" fg:w="6013"/><text x="9.9527%" y="431.50"></text></g><g><title>native_write_msr (5,980 samples, 0.39%)</title><rect x="9.7048%" y="405" width="0.3886%" height="15" fill="rgb(231,203,46)" fg:x="149342" fg:w="5980"/><text x="9.9548%" y="415.50"></text></g><g><title>schedule_tail (7,065 samples, 0.46%)</title><rect x="9.6452%" y="469" width="0.4591%" height="15" fill="rgb(237,142,3)" fg:x="148425" fg:w="7065"/><text x="9.8952%" y="479.50"></text></g><g><title>finish_task_switch (6,454 samples, 0.42%)</title><rect x="9.6849%" y="453" width="0.4194%" height="15" fill="rgb(241,107,1)" fg:x="149036" fg:w="6454"/><text x="9.9349%" y="463.50"></text></g><g><title>arch_fork (8,316 samples, 0.54%)</title><rect x="9.5652%" y="501" width="0.5404%" height="15" fill="rgb(229,83,13)" fg:x="147194" fg:w="8316"/><text x="9.8152%" y="511.50"></text></g><g><title>ret_from_fork (7,101 samples, 0.46%)</title><rect x="9.6442%" y="485" width="0.4614%" height="15" fill="rgb(241,91,40)" fg:x="148409" fg:w="7101"/><text x="9.8942%" y="495.50"></text></g><g><title>__libc_fork (8,616 samples, 0.56%)</title><rect x="9.5562%" y="517" width="0.5599%" height="15" fill="rgb(225,3,45)" fg:x="147056" fg:w="8616"/><text x="9.8062%" y="527.50"></text></g><g><title>[dash] (41,850 samples, 2.72%)</title><rect x="7.4013%" y="533" width="2.7196%" height="15" fill="rgb(244,223,14)" fg:x="113895" fg:w="41850"/><text x="7.6513%" y="543.50">[d..</text></g><g><title>[dash] (42,083 samples, 2.73%)</title><rect x="7.3990%" y="549" width="2.7347%" height="15" fill="rgb(224,124,37)" fg:x="113860" fg:w="42083"/><text x="7.6490%" y="559.50">[d..</text></g><g><title>entry_SYSCALL_64_after_hwframe (178 samples, 0.01%)</title><rect x="10.1343%" y="533" width="0.0116%" height="15" fill="rgb(251,171,30)" fg:x="155951" fg:w="178"/><text x="10.3843%" y="543.50"></text></g><g><title>syscall_exit_to_user_mode (159 samples, 0.01%)</title><rect x="10.1355%" y="517" width="0.0103%" height="15" fill="rgb(236,46,54)" fg:x="155970" fg:w="159"/><text x="10.3855%" y="527.50"></text></g><g><title>exit_to_user_mode_prepare (159 samples, 0.01%)</title><rect x="10.1355%" y="501" width="0.0103%" height="15" fill="rgb(245,213,5)" fg:x="155970" fg:w="159"/><text x="10.3855%" y="511.50"></text></g><g><title>__GI___close (190 samples, 0.01%)</title><rect x="10.1340%" y="549" width="0.0123%" height="15" fill="rgb(230,144,27)" fg:x="155947" fg:w="190"/><text x="10.3840%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (7,092 samples, 0.46%)</title><rect x="10.1908%" y="389" width="0.4609%" height="15" fill="rgb(220,86,6)" fg:x="156821" fg:w="7092"/><text x="10.4408%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (7,035 samples, 0.46%)</title><rect x="10.1945%" y="373" width="0.4572%" height="15" fill="rgb(240,20,13)" fg:x="156878" fg:w="7035"/><text x="10.4445%" y="383.50"></text></g><g><title>native_write_msr (7,010 samples, 0.46%)</title><rect x="10.1961%" y="357" width="0.4555%" height="15" fill="rgb(217,89,34)" fg:x="156903" fg:w="7010"/><text x="10.4461%" y="367.50"></text></g><g><title>finish_task_switch (7,744 samples, 0.50%)</title><rect x="10.1750%" y="405" width="0.5032%" height="15" fill="rgb(229,13,5)" fg:x="156578" fg:w="7744"/><text x="10.4250%" y="415.50"></text></g><g><title>schedule (7,905 samples, 0.51%)</title><rect x="10.1693%" y="437" width="0.5137%" height="15" fill="rgb(244,67,35)" fg:x="156490" fg:w="7905"/><text x="10.4193%" y="447.50"></text></g><g><title>__schedule (7,894 samples, 0.51%)</title><rect x="10.1700%" y="421" width="0.5130%" height="15" fill="rgb(221,40,2)" fg:x="156501" fg:w="7894"/><text x="10.4200%" y="431.50"></text></g><g><title>new_sync_read (8,174 samples, 0.53%)</title><rect x="10.1533%" y="469" width="0.5312%" height="15" fill="rgb(237,157,21)" fg:x="156243" fg:w="8174"/><text x="10.4033%" y="479.50"></text></g><g><title>pipe_read (8,160 samples, 0.53%)</title><rect x="10.1542%" y="453" width="0.5303%" height="15" fill="rgb(222,94,11)" fg:x="156257" fg:w="8160"/><text x="10.4042%" y="463.50"></text></g><g><title>do_syscall_64 (8,266 samples, 0.54%)</title><rect x="10.1484%" y="517" width="0.5372%" height="15" fill="rgb(249,113,6)" fg:x="156169" fg:w="8266"/><text x="10.3984%" y="527.50"></text></g><g><title>ksys_read (8,242 samples, 0.54%)</title><rect x="10.1500%" y="501" width="0.5356%" height="15" fill="rgb(238,137,36)" fg:x="156193" fg:w="8242"/><text x="10.4000%" y="511.50"></text></g><g><title>vfs_read (8,223 samples, 0.53%)</title><rect x="10.1512%" y="485" width="0.5344%" height="15" fill="rgb(210,102,26)" fg:x="156212" fg:w="8223"/><text x="10.4012%" y="495.50"></text></g><g><title>arch_do_signal (181 samples, 0.01%)</title><rect x="10.6864%" y="485" width="0.0118%" height="15" fill="rgb(218,30,30)" fg:x="164447" fg:w="181"/><text x="10.9364%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (8,487 samples, 0.55%)</title><rect x="10.1483%" y="533" width="0.5515%" height="15" fill="rgb(214,67,26)" fg:x="156167" fg:w="8487"/><text x="10.3983%" y="543.50"></text></g><g><title>syscall_exit_to_user_mode (219 samples, 0.01%)</title><rect x="10.6856%" y="517" width="0.0142%" height="15" fill="rgb(251,9,53)" fg:x="164435" fg:w="219"/><text x="10.9356%" y="527.50"></text></g><g><title>exit_to_user_mode_prepare (216 samples, 0.01%)</title><rect x="10.6858%" y="501" width="0.0140%" height="15" fill="rgb(228,204,25)" fg:x="164438" fg:w="216"/><text x="10.9358%" y="511.50"></text></g><g><title>__GI___libc_read (8,647 samples, 0.56%)</title><rect x="10.1466%" y="549" width="0.5619%" height="15" fill="rgb(207,153,8)" fg:x="156141" fg:w="8647"/><text x="10.3966%" y="559.50"></text></g><g><title>bprm_execve (155 samples, 0.01%)</title><rect x="10.7102%" y="469" width="0.0101%" height="15" fill="rgb(242,9,16)" fg:x="164813" fg:w="155"/><text x="10.9602%" y="479.50"></text></g><g><title>do_execveat_common (165 samples, 0.01%)</title><rect x="10.7101%" y="485" width="0.0107%" height="15" fill="rgb(217,211,10)" fg:x="164812" fg:w="165"/><text x="10.9601%" y="495.50"></text></g><g><title>__GI_execve (166 samples, 0.01%)</title><rect x="10.7101%" y="549" width="0.0108%" height="15" fill="rgb(219,228,52)" fg:x="164812" fg:w="166"/><text x="10.9601%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (166 samples, 0.01%)</title><rect x="10.7101%" y="533" width="0.0108%" height="15" fill="rgb(231,92,29)" fg:x="164812" fg:w="166"/><text x="10.9601%" y="543.50"></text></g><g><title>do_syscall_64 (166 samples, 0.01%)</title><rect x="10.7101%" y="517" width="0.0108%" height="15" fill="rgb(232,8,23)" fg:x="164812" fg:w="166"/><text x="10.9601%" y="527.50"></text></g><g><title>__x64_sys_execve (166 samples, 0.01%)</title><rect x="10.7101%" y="501" width="0.0108%" height="15" fill="rgb(216,211,34)" fg:x="164812" fg:w="166"/><text x="10.9601%" y="511.50"></text></g><g><title>[dash] (51,195 samples, 3.33%)</title><rect x="7.3954%" y="565" width="3.3268%" height="15" fill="rgb(236,151,0)" fg:x="113804" fg:w="51195"/><text x="7.6454%" y="575.50">[da..</text></g><g><title>[dash] (51,251 samples, 3.33%)</title><rect x="7.3937%" y="581" width="3.3305%" height="15" fill="rgb(209,168,3)" fg:x="113777" fg:w="51251"/><text x="7.6437%" y="591.50">[da..</text></g><g><title>[dash] (51,283 samples, 3.33%)</title><rect x="7.3923%" y="597" width="3.3326%" height="15" fill="rgb(208,129,28)" fg:x="113756" fg:w="51283"/><text x="7.6423%" y="607.50">[da..</text></g><g><title>[dash] (51,302 samples, 3.33%)</title><rect x="7.3917%" y="613" width="3.3338%" height="15" fill="rgb(229,78,22)" fg:x="113747" fg:w="51302"/><text x="7.6417%" y="623.50">[da..</text></g><g><title>[dash] (51,341 samples, 3.34%)</title><rect x="7.3916%" y="629" width="3.3363%" height="15" fill="rgb(228,187,13)" fg:x="113745" fg:w="51341"/><text x="7.6416%" y="639.50">[da..</text></g><g><title>[dash] (51,351 samples, 3.34%)</title><rect x="7.3912%" y="645" width="3.3370%" height="15" fill="rgb(240,119,24)" fg:x="113740" fg:w="51351"/><text x="7.6412%" y="655.50">[da..</text></g><g><title>[dash] (51,432 samples, 3.34%)</title><rect x="7.3912%" y="661" width="3.3422%" height="15" fill="rgb(209,194,42)" fg:x="113739" fg:w="51432"/><text x="7.6412%" y="671.50">[da..</text></g><g><title>[dash] (51,465 samples, 3.34%)</title><rect x="7.3909%" y="677" width="3.3444%" height="15" fill="rgb(247,200,46)" fg:x="113735" fg:w="51465"/><text x="7.6409%" y="687.50">[da..</text></g><g><title>__libc_start_main (51,468 samples, 3.34%)</title><rect x="7.3909%" y="693" width="3.3446%" height="15" fill="rgb(218,76,16)" fg:x="113735" fg:w="51468"/><text x="7.6409%" y="703.50">__l..</text></g><g><title>[dash] (51,496 samples, 3.35%)</title><rect x="7.3894%" y="709" width="3.3464%" height="15" fill="rgb(225,21,48)" fg:x="113711" fg:w="51496"/><text x="7.6394%" y="719.50">[da..</text></g><g><title>asm_exc_page_fault (597 samples, 0.04%)</title><rect x="10.7534%" y="709" width="0.0388%" height="15" fill="rgb(239,223,50)" fg:x="165479" fg:w="597"/><text x="11.0034%" y="719.50"></text></g><g><title>unmap_page_range (175 samples, 0.01%)</title><rect x="10.8132%" y="549" width="0.0114%" height="15" fill="rgb(244,45,21)" fg:x="166398" fg:w="175"/><text x="11.0632%" y="559.50"></text></g><g><title>exit_mmap (473 samples, 0.03%)</title><rect x="10.7943%" y="581" width="0.0307%" height="15" fill="rgb(232,33,43)" fg:x="166107" fg:w="473"/><text x="11.0443%" y="591.50"></text></g><g><title>unmap_vmas (187 samples, 0.01%)</title><rect x="10.8128%" y="565" width="0.0122%" height="15" fill="rgb(209,8,3)" fg:x="166393" fg:w="187"/><text x="11.0628%" y="575.50"></text></g><g><title>mmput (476 samples, 0.03%)</title><rect x="10.7941%" y="597" width="0.0309%" height="15" fill="rgb(214,25,53)" fg:x="166105" fg:w="476"/><text x="11.0441%" y="607.50"></text></g><g><title>begin_new_exec (512 samples, 0.03%)</title><rect x="10.7927%" y="613" width="0.0333%" height="15" fill="rgb(254,186,54)" fg:x="166083" fg:w="512"/><text x="11.0427%" y="623.50"></text></g><g><title>__x64_sys_execve (539 samples, 0.04%)</title><rect x="10.7926%" y="677" width="0.0350%" height="15" fill="rgb(208,174,49)" fg:x="166082" fg:w="539"/><text x="11.0426%" y="687.50"></text></g><g><title>do_execveat_common (539 samples, 0.04%)</title><rect x="10.7926%" y="661" width="0.0350%" height="15" fill="rgb(233,191,51)" fg:x="166082" fg:w="539"/><text x="11.0426%" y="671.50"></text></g><g><title>bprm_execve (539 samples, 0.04%)</title><rect x="10.7926%" y="645" width="0.0350%" height="15" fill="rgb(222,134,10)" fg:x="166082" fg:w="539"/><text x="11.0426%" y="655.50"></text></g><g><title>load_elf_binary (539 samples, 0.04%)</title><rect x="10.7926%" y="629" width="0.0350%" height="15" fill="rgb(230,226,20)" fg:x="166082" fg:w="539"/><text x="11.0426%" y="639.50"></text></g><g><title>unlink_anon_vmas (252 samples, 0.02%)</title><rect x="10.8333%" y="581" width="0.0164%" height="15" fill="rgb(251,111,25)" fg:x="166708" fg:w="252"/><text x="11.0833%" y="591.50"></text></g><g><title>free_pgtables (354 samples, 0.02%)</title><rect x="10.8315%" y="597" width="0.0230%" height="15" fill="rgb(224,40,46)" fg:x="166680" fg:w="354"/><text x="11.0815%" y="607.50"></text></g><g><title>tlb_finish_mmu (231 samples, 0.02%)</title><rect x="10.8663%" y="597" width="0.0150%" height="15" fill="rgb(236,108,47)" fg:x="167215" fg:w="231"/><text x="11.1163%" y="607.50"></text></g><g><title>release_pages (173 samples, 0.01%)</title><rect x="10.8700%" y="581" width="0.0112%" height="15" fill="rgb(234,93,0)" fg:x="167273" fg:w="173"/><text x="11.1200%" y="591.50"></text></g><g><title>unmap_page_range (579 samples, 0.04%)</title><rect x="10.8817%" y="581" width="0.0376%" height="15" fill="rgb(224,213,32)" fg:x="167453" fg:w="579"/><text x="11.1317%" y="591.50"></text></g><g><title>exit_mmap (1,387 samples, 0.09%)</title><rect x="10.8304%" y="613" width="0.0901%" height="15" fill="rgb(251,11,48)" fg:x="166664" fg:w="1387"/><text x="11.0804%" y="623.50"></text></g><g><title>unmap_vmas (605 samples, 0.04%)</title><rect x="10.8813%" y="597" width="0.0393%" height="15" fill="rgb(236,173,5)" fg:x="167446" fg:w="605"/><text x="11.1313%" y="607.50"></text></g><g><title>mmput (1,394 samples, 0.09%)</title><rect x="10.8302%" y="629" width="0.0906%" height="15" fill="rgb(230,95,12)" fg:x="166660" fg:w="1394"/><text x="11.0802%" y="639.50"></text></g><g><title>__x64_sys_exit_group (1,548 samples, 0.10%)</title><rect x="10.8277%" y="677" width="0.1006%" height="15" fill="rgb(232,209,1)" fg:x="166621" fg:w="1548"/><text x="11.0777%" y="687.50"></text></g><g><title>do_group_exit (1,548 samples, 0.10%)</title><rect x="10.8277%" y="661" width="0.1006%" height="15" fill="rgb(232,6,1)" fg:x="166621" fg:w="1548"/><text x="11.0777%" y="671.50"></text></g><g><title>do_exit (1,548 samples, 0.10%)</title><rect x="10.8277%" y="645" width="0.1006%" height="15" fill="rgb(210,224,50)" fg:x="166621" fg:w="1548"/><text x="11.0777%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,093 samples, 0.14%)</title><rect x="10.7924%" y="709" width="0.1360%" height="15" fill="rgb(228,127,35)" fg:x="166078" fg:w="2093"/><text x="11.0424%" y="719.50"></text></g><g><title>do_syscall_64 (2,089 samples, 0.14%)</title><rect x="10.7926%" y="693" width="0.1358%" height="15" fill="rgb(245,102,45)" fg:x="166082" fg:w="2089"/><text x="11.0426%" y="703.50"></text></g><g><title>c++ (54,539 samples, 3.54%)</title><rect x="7.3853%" y="725" width="3.5441%" height="15" fill="rgb(214,1,49)" fg:x="113649" fg:w="54539"/><text x="7.6353%" y="735.50">c++</text></g><g><title>[perf-934749.map] (650 samples, 0.04%)</title><rect x="10.9304%" y="709" width="0.0422%" height="15" fill="rgb(226,163,40)" fg:x="168202" fg:w="650"/><text x="11.1804%" y="719.50"></text></g><g><title>find-action-loo (683 samples, 0.04%)</title><rect x="10.9303%" y="725" width="0.0444%" height="15" fill="rgb(239,212,28)" fg:x="168201" fg:w="683"/><text x="11.1803%" y="735.50"></text></g><g><title>[perf-934749.map] (361 samples, 0.02%)</title><rect x="10.9843%" y="709" width="0.0235%" height="15" fill="rgb(220,20,13)" fg:x="169031" fg:w="361"/><text x="11.2343%" y="719.50"></text></g><g><title>__GI___clone (217 samples, 0.01%)</title><rect x="11.0079%" y="709" width="0.0141%" height="15" fill="rgb(210,164,35)" fg:x="169394" fg:w="217"/><text x="11.2579%" y="719.50"></text></g><g><title>globbing_pool-1 (618 samples, 0.04%)</title><rect x="10.9820%" y="725" width="0.0402%" height="15" fill="rgb(248,109,41)" fg:x="168996" fg:w="618"/><text x="11.2320%" y="735.50"></text></g><g><title>[perf-934749.map] (293 samples, 0.02%)</title><rect x="11.0238%" y="709" width="0.0190%" height="15" fill="rgb(238,23,50)" fg:x="169640" fg:w="293"/><text x="11.2738%" y="719.50"></text></g><g><title>globbing_pool-2 (523 samples, 0.03%)</title><rect x="11.0221%" y="725" width="0.0340%" height="15" fill="rgb(211,48,49)" fg:x="169614" fg:w="523"/><text x="11.2721%" y="735.50"></text></g><g><title>__GI___clone (201 samples, 0.01%)</title><rect x="11.0431%" y="709" width="0.0131%" height="15" fill="rgb(223,36,21)" fg:x="169936" fg:w="201"/><text x="11.2931%" y="719.50"></text></g><g><title>[perf-934749.map] (160 samples, 0.01%)</title><rect x="11.0572%" y="709" width="0.0104%" height="15" fill="rgb(207,123,46)" fg:x="170154" fg:w="160"/><text x="11.3072%" y="719.50"></text></g><g><title>globbing_pool-3 (205 samples, 0.01%)</title><rect x="11.0561%" y="725" width="0.0133%" height="15" fill="rgb(240,218,32)" fg:x="170137" fg:w="205"/><text x="11.3061%" y="735.50"></text></g><g><title>[perf-934749.map] (279 samples, 0.02%)</title><rect x="11.0715%" y="709" width="0.0181%" height="15" fill="rgb(252,5,43)" fg:x="170373" fg:w="279"/><text x="11.3215%" y="719.50"></text></g><g><title>globbing_pool-4 (371 samples, 0.02%)</title><rect x="11.0695%" y="725" width="0.0241%" height="15" fill="rgb(252,84,19)" fg:x="170342" fg:w="371"/><text x="11.3195%" y="735.50"></text></g><g><title>[perf-934749.map] (212 samples, 0.01%)</title><rect x="11.0955%" y="709" width="0.0138%" height="15" fill="rgb(243,152,39)" fg:x="170742" fg:w="212"/><text x="11.3455%" y="719.50"></text></g><g><title>globbing_pool-5 (341 samples, 0.02%)</title><rect x="11.0936%" y="725" width="0.0222%" height="15" fill="rgb(234,160,15)" fg:x="170713" fg:w="341"/><text x="11.3436%" y="735.50"></text></g><g><title>[perf-934749.map] (275 samples, 0.02%)</title><rect x="11.1174%" y="709" width="0.0179%" height="15" fill="rgb(237,34,20)" fg:x="171080" fg:w="275"/><text x="11.3674%" y="719.50"></text></g><g><title>globbing_pool-6 (367 samples, 0.02%)</title><rect x="11.1157%" y="725" width="0.0238%" height="15" fill="rgb(229,97,13)" fg:x="171054" fg:w="367"/><text x="11.3657%" y="735.50"></text></g><g><title>globbing_pool-7 (175 samples, 0.01%)</title><rect x="11.1396%" y="725" width="0.0114%" height="15" fill="rgb(234,71,50)" fg:x="171421" fg:w="175"/><text x="11.3896%" y="735.50"></text></g><g><title>[perf-934749.map] (176 samples, 0.01%)</title><rect x="11.1618%" y="709" width="0.0114%" height="15" fill="rgb(253,155,4)" fg:x="171763" fg:w="176"/><text x="11.4118%" y="719.50"></text></g><g><title>globbing_pool-9 (218 samples, 0.01%)</title><rect x="11.1602%" y="725" width="0.0142%" height="15" fill="rgb(222,185,37)" fg:x="171739" fg:w="218"/><text x="11.4102%" y="735.50"></text></g><g><title>[anon] (213 samples, 0.01%)</title><rect x="11.1754%" y="709" width="0.0138%" height="15" fill="rgb(251,177,13)" fg:x="171973" fg:w="213"/><text x="11.4254%" y="719.50"></text></g><g><title>InstanceKlass::link_class_impl (160 samples, 0.01%)</title><rect x="11.3222%" y="661" width="0.0104%" height="15" fill="rgb(250,179,40)" fg:x="174232" fg:w="160"/><text x="11.5722%" y="671.50"></text></g><g><title>InstanceKlass::initialize_impl (162 samples, 0.01%)</title><rect x="11.3222%" y="677" width="0.0105%" height="15" fill="rgb(242,44,2)" fg:x="174231" fg:w="162"/><text x="11.5722%" y="687.50"></text></g><g><title>InterpreterRuntime::_new (307 samples, 0.02%)</title><rect x="11.3128%" y="693" width="0.0200%" height="15" fill="rgb(216,177,13)" fg:x="174087" fg:w="307"/><text x="11.5628%" y="703.50"></text></g><g><title>LinkResolver::resolve_invoke (267 samples, 0.02%)</title><rect x="11.3527%" y="661" width="0.0174%" height="15" fill="rgb(216,106,43)" fg:x="174700" fg:w="267"/><text x="11.6027%" y="671.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (302 samples, 0.02%)</title><rect x="11.3508%" y="677" width="0.0196%" height="15" fill="rgb(216,183,2)" fg:x="174672" fg:w="302"/><text x="11.6008%" y="687.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (461 samples, 0.03%)</title><rect x="11.3436%" y="693" width="0.0300%" height="15" fill="rgb(249,75,3)" fg:x="174560" fg:w="461"/><text x="11.5936%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (439 samples, 0.03%)</title><rect x="11.3996%" y="549" width="0.0285%" height="15" fill="rgb(219,67,39)" fg:x="175423" fg:w="439"/><text x="11.6496%" y="559.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (517 samples, 0.03%)</title><rect x="11.3947%" y="565" width="0.0336%" height="15" fill="rgb(253,228,2)" fg:x="175347" fg:w="517"/><text x="11.6447%" y="575.50"></text></g><g><title>ClassFileParser::parse_constant_pool (534 samples, 0.03%)</title><rect x="11.3938%" y="581" width="0.0347%" height="15" fill="rgb(235,138,27)" fg:x="175333" fg:w="534"/><text x="11.6438%" y="591.50"></text></g><g><title>ClassFileParser::ClassFileParser (712 samples, 0.05%)</title><rect x="11.3929%" y="613" width="0.0463%" height="15" fill="rgb(236,97,51)" fg:x="175320" fg:w="712"/><text x="11.6429%" y="623.50"></text></g><g><title>ClassFileParser::parse_stream (711 samples, 0.05%)</title><rect x="11.3930%" y="597" width="0.0462%" height="15" fill="rgb(240,80,30)" fg:x="175321" fg:w="711"/><text x="11.6430%" y="607.50"></text></g><g><title>ClassFileParser::fill_instance_klass (162 samples, 0.01%)</title><rect x="11.4392%" y="597" width="0.0105%" height="15" fill="rgb(230,178,19)" fg:x="176032" fg:w="162"/><text x="11.6892%" y="607.50"></text></g><g><title>ClassFileParser::create_instance_klass (171 samples, 0.01%)</title><rect x="11.4392%" y="613" width="0.0111%" height="15" fill="rgb(210,190,27)" fg:x="176032" fg:w="171"/><text x="11.6892%" y="623.50"></text></g><g><title>KlassFactory::create_from_stream (939 samples, 0.06%)</title><rect x="11.3929%" y="629" width="0.0610%" height="15" fill="rgb(222,107,31)" fg:x="175320" fg:w="939"/><text x="11.6429%" y="639.50"></text></g><g><title>SystemDictionary::resolve_from_stream (966 samples, 0.06%)</title><rect x="11.3929%" y="645" width="0.0628%" height="15" fill="rgb(216,127,34)" fg:x="175320" fg:w="966"/><text x="11.6429%" y="655.50"></text></g><g><title>JVM_DefineClassWithSource (977 samples, 0.06%)</title><rect x="11.3923%" y="677" width="0.0635%" height="15" fill="rgb(234,116,52)" fg:x="175310" fg:w="977"/><text x="11.6423%" y="687.50"></text></g><g><title>jvm_define_class_common (977 samples, 0.06%)</title><rect x="11.3923%" y="661" width="0.0635%" height="15" fill="rgb(222,124,15)" fg:x="175310" fg:w="977"/><text x="11.6423%" y="671.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,018 samples, 0.07%)</title><rect x="11.3921%" y="693" width="0.0662%" height="15" fill="rgb(231,179,28)" fg:x="175307" fg:w="1018"/><text x="11.6421%" y="703.50"></text></g><g><title>[perf-934749.map] (4,462 samples, 0.29%)</title><rect x="11.1901%" y="709" width="0.2900%" height="15" fill="rgb(226,93,45)" fg:x="172198" fg:w="4462"/><text x="11.4401%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (391 samples, 0.03%)</title><rect x="11.4911%" y="645" width="0.0254%" height="15" fill="rgb(215,8,51)" fg:x="176830" fg:w="391"/><text x="11.7411%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (389 samples, 0.03%)</title><rect x="11.4912%" y="629" width="0.0253%" height="15" fill="rgb(223,106,5)" fg:x="176832" fg:w="389"/><text x="11.7412%" y="639.50"></text></g><g><title>native_write_msr (388 samples, 0.03%)</title><rect x="11.4913%" y="613" width="0.0252%" height="15" fill="rgb(250,191,5)" fg:x="176833" fg:w="388"/><text x="11.7413%" y="623.50"></text></g><g><title>schedule_tail (418 samples, 0.03%)</title><rect x="11.4904%" y="677" width="0.0272%" height="15" fill="rgb(242,132,44)" fg:x="176819" fg:w="418"/><text x="11.7404%" y="687.50"></text></g><g><title>finish_task_switch (416 samples, 0.03%)</title><rect x="11.4905%" y="661" width="0.0270%" height="15" fill="rgb(251,152,29)" fg:x="176821" fg:w="416"/><text x="11.7405%" y="671.50"></text></g><g><title>ret_from_fork (429 samples, 0.03%)</title><rect x="11.4900%" y="693" width="0.0279%" height="15" fill="rgb(218,179,5)" fg:x="176814" fg:w="429"/><text x="11.7400%" y="703.50"></text></g><g><title>__GI___clone (633 samples, 0.04%)</title><rect x="11.4887%" y="709" width="0.0411%" height="15" fill="rgb(227,67,19)" fg:x="176793" fg:w="633"/><text x="11.7387%" y="719.50"></text></g><g><title>start_thread (183 samples, 0.01%)</title><rect x="11.5179%" y="693" width="0.0119%" height="15" fill="rgb(233,119,31)" fg:x="177243" fg:w="183"/><text x="11.7679%" y="703.50"></text></g><g><title>java (5,513 samples, 0.36%)</title><rect x="11.1744%" y="725" width="0.3583%" height="15" fill="rgb(241,120,22)" fg:x="171957" fg:w="5513"/><text x="11.4244%" y="735.50"></text></g><g><title>execute_command_internal (246 samples, 0.02%)</title><rect x="11.5456%" y="693" width="0.0160%" height="15" fill="rgb(224,102,30)" fg:x="177669" fg:w="246"/><text x="11.7956%" y="703.50"></text></g><g><title>[unknown] (390 samples, 0.03%)</title><rect x="11.5384%" y="709" width="0.0253%" height="15" fill="rgb(210,164,37)" fg:x="177558" fg:w="390"/><text x="11.7884%" y="719.50"></text></g><g><title>execute_command (176 samples, 0.01%)</title><rect x="11.5667%" y="597" width="0.0114%" height="15" fill="rgb(226,191,16)" fg:x="177994" fg:w="176"/><text x="11.8167%" y="607.50"></text></g><g><title>execute_command_internal (176 samples, 0.01%)</title><rect x="11.5667%" y="581" width="0.0114%" height="15" fill="rgb(214,40,45)" fg:x="177994" fg:w="176"/><text x="11.8167%" y="591.50"></text></g><g><title>[bash] (202 samples, 0.01%)</title><rect x="11.5664%" y="613" width="0.0131%" height="15" fill="rgb(244,29,26)" fg:x="177989" fg:w="202"/><text x="11.8164%" y="623.50"></text></g><g><title>expand_word_leave_quoted (349 samples, 0.02%)</title><rect x="11.5898%" y="581" width="0.0227%" height="15" fill="rgb(216,16,5)" fg:x="178350" fg:w="349"/><text x="11.8398%" y="591.50"></text></g><g><title>[bash] (349 samples, 0.02%)</title><rect x="11.5898%" y="565" width="0.0227%" height="15" fill="rgb(249,76,35)" fg:x="178350" fg:w="349"/><text x="11.8398%" y="575.50"></text></g><g><title>command_substitute (349 samples, 0.02%)</title><rect x="11.5898%" y="549" width="0.0227%" height="15" fill="rgb(207,11,44)" fg:x="178350" fg:w="349"/><text x="11.8398%" y="559.50"></text></g><g><title>execute_command (374 samples, 0.02%)</title><rect x="11.5885%" y="613" width="0.0243%" height="15" fill="rgb(228,190,49)" fg:x="178329" fg:w="374"/><text x="11.8385%" y="623.50"></text></g><g><title>execute_command_internal (373 samples, 0.02%)</title><rect x="11.5885%" y="597" width="0.0242%" height="15" fill="rgb(214,173,12)" fg:x="178330" fg:w="373"/><text x="11.8385%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (158 samples, 0.01%)</title><rect x="11.6271%" y="341" width="0.0103%" height="15" fill="rgb(218,26,35)" fg:x="178923" fg:w="158"/><text x="11.8771%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (154 samples, 0.01%)</title><rect x="11.6273%" y="325" width="0.0100%" height="15" fill="rgb(220,200,19)" fg:x="178927" fg:w="154"/><text x="11.8773%" y="335.50"></text></g><g><title>arch_fork (198 samples, 0.01%)</title><rect x="11.6249%" y="405" width="0.0129%" height="15" fill="rgb(239,95,49)" fg:x="178890" fg:w="198"/><text x="11.8749%" y="415.50"></text></g><g><title>ret_from_fork (186 samples, 0.01%)</title><rect x="11.6257%" y="389" width="0.0121%" height="15" fill="rgb(235,85,53)" fg:x="178902" fg:w="186"/><text x="11.8757%" y="399.50"></text></g><g><title>schedule_tail (186 samples, 0.01%)</title><rect x="11.6257%" y="373" width="0.0121%" height="15" fill="rgb(233,133,31)" fg:x="178902" fg:w="186"/><text x="11.8757%" y="383.50"></text></g><g><title>finish_task_switch (170 samples, 0.01%)</title><rect x="11.6268%" y="357" width="0.0110%" height="15" fill="rgb(218,25,20)" fg:x="178918" fg:w="170"/><text x="11.8768%" y="367.50"></text></g><g><title>__libc_fork (203 samples, 0.01%)</title><rect x="11.6247%" y="421" width="0.0132%" height="15" fill="rgb(252,210,38)" fg:x="178887" fg:w="203"/><text x="11.8747%" y="431.50"></text></g><g><title>make_child (211 samples, 0.01%)</title><rect x="11.6246%" y="437" width="0.0137%" height="15" fill="rgb(242,134,21)" fg:x="178885" fg:w="211"/><text x="11.8746%" y="447.50"></text></g><g><title>parse_and_execute (295 samples, 0.02%)</title><rect x="11.6217%" y="517" width="0.0192%" height="15" fill="rgb(213,28,48)" fg:x="178840" fg:w="295"/><text x="11.8717%" y="527.50"></text></g><g><title>execute_command_internal (293 samples, 0.02%)</title><rect x="11.6218%" y="501" width="0.0190%" height="15" fill="rgb(250,196,2)" fg:x="178842" fg:w="293"/><text x="11.8718%" y="511.50"></text></g><g><title>[bash] (293 samples, 0.02%)</title><rect x="11.6218%" y="485" width="0.0190%" height="15" fill="rgb(227,5,17)" fg:x="178842" fg:w="293"/><text x="11.8718%" y="495.50"></text></g><g><title>[bash] (293 samples, 0.02%)</title><rect x="11.6218%" y="469" width="0.0190%" height="15" fill="rgb(221,226,24)" fg:x="178842" fg:w="293"/><text x="11.8718%" y="479.50"></text></g><g><title>execute_command_internal (292 samples, 0.02%)</title><rect x="11.6219%" y="453" width="0.0190%" height="15" fill="rgb(211,5,48)" fg:x="178843" fg:w="292"/><text x="11.8719%" y="463.50"></text></g><g><title>command_substitute (439 samples, 0.03%)</title><rect x="11.6133%" y="533" width="0.0285%" height="15" fill="rgb(219,150,6)" fg:x="178711" fg:w="439"/><text x="11.8633%" y="543.50"></text></g><g><title>[bash] (448 samples, 0.03%)</title><rect x="11.6129%" y="565" width="0.0291%" height="15" fill="rgb(251,46,16)" fg:x="178705" fg:w="448"/><text x="11.8629%" y="575.50"></text></g><g><title>[bash] (447 samples, 0.03%)</title><rect x="11.6130%" y="549" width="0.0290%" height="15" fill="rgb(220,204,40)" fg:x="178706" fg:w="447"/><text x="11.8630%" y="559.50"></text></g><g><title>[bash] (454 samples, 0.03%)</title><rect x="11.6128%" y="581" width="0.0295%" height="15" fill="rgb(211,85,2)" fg:x="178703" fg:w="454"/><text x="11.8628%" y="591.50"></text></g><g><title>[bash] (455 samples, 0.03%)</title><rect x="11.6128%" y="597" width="0.0296%" height="15" fill="rgb(229,17,7)" fg:x="178703" fg:w="455"/><text x="11.8628%" y="607.50"></text></g><g><title>expand_words (456 samples, 0.03%)</title><rect x="11.6128%" y="613" width="0.0296%" height="15" fill="rgb(239,72,28)" fg:x="178703" fg:w="456"/><text x="11.8628%" y="623.50"></text></g><g><title>execute_command (1,178 samples, 0.08%)</title><rect x="11.5661%" y="645" width="0.0766%" height="15" fill="rgb(230,47,54)" fg:x="177985" fg:w="1178"/><text x="11.8161%" y="655.50"></text></g><g><title>execute_command_internal (1,175 samples, 0.08%)</title><rect x="11.5663%" y="629" width="0.0764%" height="15" fill="rgb(214,50,8)" fg:x="177988" fg:w="1175"/><text x="11.8163%" y="639.50"></text></g><g><title>[bash] (199 samples, 0.01%)</title><rect x="11.6504%" y="581" width="0.0129%" height="15" fill="rgb(216,198,43)" fg:x="179282" fg:w="199"/><text x="11.9004%" y="591.50"></text></g><g><title>[bash] (343 samples, 0.02%)</title><rect x="11.6453%" y="597" width="0.0223%" height="15" fill="rgb(234,20,35)" fg:x="179203" fg:w="343"/><text x="11.8953%" y="607.50"></text></g><g><title>reader_loop (1,622 samples, 0.11%)</title><rect x="11.5642%" y="661" width="0.1054%" height="15" fill="rgb(254,45,19)" fg:x="177955" fg:w="1622"/><text x="11.8142%" y="671.50"></text></g><g><title>read_command (414 samples, 0.03%)</title><rect x="11.6427%" y="645" width="0.0269%" height="15" fill="rgb(219,14,44)" fg:x="179163" fg:w="414"/><text x="11.8927%" y="655.50"></text></g><g><title>parse_command (414 samples, 0.03%)</title><rect x="11.6427%" y="629" width="0.0269%" height="15" fill="rgb(217,220,26)" fg:x="179163" fg:w="414"/><text x="11.8927%" y="639.50"></text></g><g><title>yyparse (413 samples, 0.03%)</title><rect x="11.6427%" y="613" width="0.0268%" height="15" fill="rgb(213,158,28)" fg:x="179164" fg:w="413"/><text x="11.8927%" y="623.50"></text></g><g><title>__libc_start_main (1,632 samples, 0.11%)</title><rect x="11.5638%" y="693" width="0.1061%" height="15" fill="rgb(252,51,52)" fg:x="177949" fg:w="1632"/><text x="11.8138%" y="703.50"></text></g><g><title>main (1,632 samples, 0.11%)</title><rect x="11.5638%" y="677" width="0.1061%" height="15" fill="rgb(246,89,16)" fg:x="177949" fg:w="1632"/><text x="11.8138%" y="687.50"></text></g><g><title>_start (1,646 samples, 0.11%)</title><rect x="11.5638%" y="709" width="0.1070%" height="15" fill="rgb(216,158,49)" fg:x="177949" fg:w="1646"/><text x="11.8138%" y="719.50"></text></g><g><title>libtool (2,224 samples, 0.14%)</title><rect x="11.5327%" y="725" width="0.1445%" height="15" fill="rgb(236,107,19)" fg:x="177470" fg:w="2224"/><text x="11.7827%" y="735.50"></text></g><g><title>CreateTarget (167 samples, 0.01%)</title><rect x="11.6926%" y="677" width="0.0109%" height="15" fill="rgb(228,185,30)" fg:x="179931" fg:w="167"/><text x="11.9426%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (247 samples, 0.02%)</title><rect x="11.7186%" y="549" width="0.0161%" height="15" fill="rgb(246,134,8)" fg:x="180332" fg:w="247"/><text x="11.9686%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (246 samples, 0.02%)</title><rect x="11.7187%" y="533" width="0.0160%" height="15" fill="rgb(214,143,50)" fg:x="180333" fg:w="246"/><text x="11.9687%" y="543.50"></text></g><g><title>native_write_msr (246 samples, 0.02%)</title><rect x="11.7187%" y="517" width="0.0160%" height="15" fill="rgb(228,75,8)" fg:x="180333" fg:w="246"/><text x="11.9687%" y="527.50"></text></g><g><title>finish_task_switch (266 samples, 0.02%)</title><rect x="11.7182%" y="565" width="0.0173%" height="15" fill="rgb(207,175,4)" fg:x="180325" fg:w="266"/><text x="11.9682%" y="575.50"></text></g><g><title>schedule (271 samples, 0.02%)</title><rect x="11.7179%" y="597" width="0.0176%" height="15" fill="rgb(205,108,24)" fg:x="180321" fg:w="271"/><text x="11.9679%" y="607.50"></text></g><g><title>__schedule (270 samples, 0.02%)</title><rect x="11.7180%" y="581" width="0.0175%" height="15" fill="rgb(244,120,49)" fg:x="180322" fg:w="270"/><text x="11.9680%" y="591.50"></text></g><g><title>__GI___wait4 (316 samples, 0.02%)</title><rect x="11.7175%" y="677" width="0.0205%" height="15" fill="rgb(223,47,38)" fg:x="180315" fg:w="316"/><text x="11.9675%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (316 samples, 0.02%)</title><rect x="11.7175%" y="661" width="0.0205%" height="15" fill="rgb(229,179,11)" fg:x="180315" fg:w="316"/><text x="11.9675%" y="671.50"></text></g><g><title>do_syscall_64 (316 samples, 0.02%)</title><rect x="11.7175%" y="645" width="0.0205%" height="15" fill="rgb(231,122,1)" fg:x="180315" fg:w="316"/><text x="11.9675%" y="655.50"></text></g><g><title>kernel_wait4 (315 samples, 0.02%)</title><rect x="11.7176%" y="629" width="0.0205%" height="15" fill="rgb(245,119,9)" fg:x="180316" fg:w="315"/><text x="11.9676%" y="639.50"></text></g><g><title>do_wait (315 samples, 0.02%)</title><rect x="11.7176%" y="613" width="0.0205%" height="15" fill="rgb(241,163,25)" fg:x="180316" fg:w="315"/><text x="11.9676%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (293 samples, 0.02%)</title><rect x="11.7565%" y="597" width="0.0190%" height="15" fill="rgb(217,214,3)" fg:x="180914" fg:w="293"/><text x="12.0065%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (291 samples, 0.02%)</title><rect x="11.7566%" y="581" width="0.0189%" height="15" fill="rgb(240,86,28)" fg:x="180916" fg:w="291"/><text x="12.0066%" y="591.50"></text></g><g><title>native_write_msr (289 samples, 0.02%)</title><rect x="11.7567%" y="565" width="0.0188%" height="15" fill="rgb(215,47,9)" fg:x="180918" fg:w="289"/><text x="12.0067%" y="575.50"></text></g><g><title>arch_fork (445 samples, 0.03%)</title><rect x="11.7470%" y="661" width="0.0289%" height="15" fill="rgb(252,25,45)" fg:x="180769" fg:w="445"/><text x="11.9970%" y="671.50"></text></g><g><title>ret_from_fork (345 samples, 0.02%)</title><rect x="11.7535%" y="645" width="0.0224%" height="15" fill="rgb(251,164,9)" fg:x="180869" fg:w="345"/><text x="12.0035%" y="655.50"></text></g><g><title>schedule_tail (344 samples, 0.02%)</title><rect x="11.7536%" y="629" width="0.0224%" height="15" fill="rgb(233,194,0)" fg:x="180870" fg:w="344"/><text x="12.0036%" y="639.50"></text></g><g><title>finish_task_switch (304 samples, 0.02%)</title><rect x="11.7562%" y="613" width="0.0198%" height="15" fill="rgb(249,111,24)" fg:x="180910" fg:w="304"/><text x="12.0062%" y="623.50"></text></g><g><title>__libc_fork (466 samples, 0.03%)</title><rect x="11.7463%" y="677" width="0.0303%" height="15" fill="rgb(250,223,3)" fg:x="180758" fg:w="466"/><text x="11.9963%" y="687.50"></text></g><g><title>Pid1Main (1,701 samples, 0.11%)</title><rect x="11.6891%" y="693" width="0.1105%" height="15" fill="rgb(236,178,37)" fg:x="179877" fg:w="1701"/><text x="11.9391%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (349 samples, 0.02%)</title><rect x="11.8028%" y="645" width="0.0227%" height="15" fill="rgb(241,158,50)" fg:x="181627" fg:w="349"/><text x="12.0528%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (346 samples, 0.02%)</title><rect x="11.8030%" y="629" width="0.0225%" height="15" fill="rgb(213,121,41)" fg:x="181630" fg:w="346"/><text x="12.0530%" y="639.50"></text></g><g><title>native_write_msr (344 samples, 0.02%)</title><rect x="11.8031%" y="613" width="0.0224%" height="15" fill="rgb(240,92,3)" fg:x="181632" fg:w="344"/><text x="12.0531%" y="623.50"></text></g><g><title>schedule_tail (364 samples, 0.02%)</title><rect x="11.8025%" y="677" width="0.0237%" height="15" fill="rgb(205,123,3)" fg:x="181622" fg:w="364"/><text x="12.0525%" y="687.50"></text></g><g><title>finish_task_switch (364 samples, 0.02%)</title><rect x="11.8025%" y="661" width="0.0237%" height="15" fill="rgb(205,97,47)" fg:x="181622" fg:w="364"/><text x="12.0525%" y="671.50"></text></g><g><title>__GI___clone (2,117 samples, 0.14%)</title><rect x="11.6889%" y="709" width="0.1376%" height="15" fill="rgb(247,152,14)" fg:x="179874" fg:w="2117"/><text x="11.9389%" y="719.50"></text></g><g><title>ret_from_fork (380 samples, 0.02%)</title><rect x="11.8018%" y="693" width="0.0247%" height="15" fill="rgb(248,195,53)" fg:x="181611" fg:w="380"/><text x="12.0518%" y="703.50"></text></g><g><title>[libc-2.31.so] (168 samples, 0.01%)</title><rect x="11.8378%" y="661" width="0.0109%" height="15" fill="rgb(226,201,16)" fg:x="182165" fg:w="168"/><text x="12.0878%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (300 samples, 0.02%)</title><rect x="11.8500%" y="517" width="0.0195%" height="15" fill="rgb(205,98,0)" fg:x="182354" fg:w="300"/><text x="12.1000%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (294 samples, 0.02%)</title><rect x="11.8504%" y="501" width="0.0191%" height="15" fill="rgb(214,191,48)" fg:x="182360" fg:w="294"/><text x="12.1004%" y="511.50"></text></g><g><title>native_write_msr (292 samples, 0.02%)</title><rect x="11.8506%" y="485" width="0.0190%" height="15" fill="rgb(237,112,39)" fg:x="182362" fg:w="292"/><text x="12.1006%" y="495.50"></text></g><g><title>finish_task_switch (325 samples, 0.02%)</title><rect x="11.8496%" y="533" width="0.0211%" height="15" fill="rgb(247,203,27)" fg:x="182347" fg:w="325"/><text x="12.0996%" y="543.50"></text></g><g><title>schedule (331 samples, 0.02%)</title><rect x="11.8495%" y="565" width="0.0215%" height="15" fill="rgb(235,124,28)" fg:x="182345" fg:w="331"/><text x="12.0995%" y="575.50"></text></g><g><title>__schedule (331 samples, 0.02%)</title><rect x="11.8495%" y="549" width="0.0215%" height="15" fill="rgb(208,207,46)" fg:x="182345" fg:w="331"/><text x="12.0995%" y="559.50"></text></g><g><title>do_syscall_64 (379 samples, 0.02%)</title><rect x="11.8492%" y="629" width="0.0246%" height="15" fill="rgb(234,176,4)" fg:x="182341" fg:w="379"/><text x="12.0992%" y="639.50"></text></g><g><title>__do_sys_wait4 (379 samples, 0.02%)</title><rect x="11.8492%" y="613" width="0.0246%" height="15" fill="rgb(230,133,28)" fg:x="182341" fg:w="379"/><text x="12.0992%" y="623.50"></text></g><g><title>kernel_wait4 (379 samples, 0.02%)</title><rect x="11.8492%" y="597" width="0.0246%" height="15" fill="rgb(211,137,40)" fg:x="182341" fg:w="379"/><text x="12.0992%" y="607.50"></text></g><g><title>do_wait (379 samples, 0.02%)</title><rect x="11.8492%" y="581" width="0.0246%" height="15" fill="rgb(254,35,13)" fg:x="182341" fg:w="379"/><text x="12.0992%" y="591.50"></text></g><g><title>__GI___wait4 (382 samples, 0.02%)</title><rect x="11.8491%" y="661" width="0.0248%" height="15" fill="rgb(225,49,51)" fg:x="182339" fg:w="382"/><text x="12.0991%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (380 samples, 0.02%)</title><rect x="11.8492%" y="645" width="0.0247%" height="15" fill="rgb(251,10,15)" fg:x="182341" fg:w="380"/><text x="12.0992%" y="655.50"></text></g><g><title>__libc_start_main (847 samples, 0.06%)</title><rect x="11.8311%" y="693" width="0.0550%" height="15" fill="rgb(228,207,15)" fg:x="182062" fg:w="847"/><text x="12.0811%" y="703.50"></text></g><g><title>main (767 samples, 0.05%)</title><rect x="11.8363%" y="677" width="0.0498%" height="15" fill="rgb(241,99,19)" fg:x="182142" fg:w="767"/><text x="12.0863%" y="687.50"></text></g><g><title>_dl_catch_exception (157 samples, 0.01%)</title><rect x="11.8873%" y="613" width="0.0102%" height="15" fill="rgb(207,104,49)" fg:x="182928" fg:w="157"/><text x="12.1373%" y="623.50"></text></g><g><title>openaux (157 samples, 0.01%)</title><rect x="11.8873%" y="597" width="0.0102%" height="15" fill="rgb(234,99,18)" fg:x="182928" fg:w="157"/><text x="12.1373%" y="607.50"></text></g><g><title>_dl_map_object (157 samples, 0.01%)</title><rect x="11.8873%" y="581" width="0.0102%" height="15" fill="rgb(213,191,49)" fg:x="182928" fg:w="157"/><text x="12.1373%" y="591.50"></text></g><g><title>_dl_map_object_deps (165 samples, 0.01%)</title><rect x="11.8871%" y="629" width="0.0107%" height="15" fill="rgb(210,226,19)" fg:x="182925" fg:w="165"/><text x="12.1371%" y="639.50"></text></g><g><title>_dl_lookup_symbol_x (305 samples, 0.02%)</title><rect x="11.9059%" y="581" width="0.0198%" height="15" fill="rgb(229,97,18)" fg:x="183213" fg:w="305"/><text x="12.1559%" y="591.50"></text></g><g><title>do_lookup_x (194 samples, 0.01%)</title><rect x="11.9131%" y="565" width="0.0126%" height="15" fill="rgb(211,167,15)" fg:x="183324" fg:w="194"/><text x="12.1631%" y="575.50"></text></g><g><title>elf_machine_rela (361 samples, 0.02%)</title><rect x="11.9024%" y="597" width="0.0235%" height="15" fill="rgb(210,169,34)" fg:x="183159" fg:w="361"/><text x="12.1524%" y="607.50"></text></g><g><title>elf_dynamic_do_Rela (414 samples, 0.03%)</title><rect x="11.8999%" y="613" width="0.0269%" height="15" fill="rgb(241,121,31)" fg:x="183121" fg:w="414"/><text x="12.1499%" y="623.50"></text></g><g><title>_dl_relocate_object (440 samples, 0.03%)</title><rect x="11.8984%" y="629" width="0.0286%" height="15" fill="rgb(232,40,11)" fg:x="183098" fg:w="440"/><text x="12.1484%" y="639.50"></text></g><g><title>[ld-2.31.so] (644 samples, 0.04%)</title><rect x="11.8862%" y="645" width="0.0418%" height="15" fill="rgb(205,86,26)" fg:x="182910" fg:w="644"/><text x="12.1362%" y="655.50"></text></g><g><title>_dl_start_final (651 samples, 0.04%)</title><rect x="11.8862%" y="677" width="0.0423%" height="15" fill="rgb(231,126,28)" fg:x="182910" fg:w="651"/><text x="12.1362%" y="687.50"></text></g><g><title>_dl_sysdep_start (651 samples, 0.04%)</title><rect x="11.8862%" y="661" width="0.0423%" height="15" fill="rgb(219,221,18)" fg:x="182910" fg:w="651"/><text x="12.1362%" y="671.50"></text></g><g><title>_dl_start (655 samples, 0.04%)</title><rect x="11.8862%" y="693" width="0.0426%" height="15" fill="rgb(211,40,0)" fg:x="182910" fg:w="655"/><text x="12.1362%" y="703.50"></text></g><g><title>_start (1,507 samples, 0.10%)</title><rect x="11.8309%" y="709" width="0.0979%" height="15" fill="rgb(239,85,43)" fg:x="182060" fg:w="1507"/><text x="12.0809%" y="719.50"></text></g><g><title>__x64_sys_exit (334 samples, 0.02%)</title><rect x="11.9453%" y="677" width="0.0217%" height="15" fill="rgb(231,55,21)" fg:x="183820" fg:w="334"/><text x="12.1953%" y="687.50"></text></g><g><title>do_exit (334 samples, 0.02%)</title><rect x="11.9453%" y="661" width="0.0217%" height="15" fill="rgb(225,184,43)" fg:x="183820" fg:w="334"/><text x="12.1953%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (534 samples, 0.03%)</title><rect x="11.9386%" y="709" width="0.0347%" height="15" fill="rgb(251,158,41)" fg:x="183717" fg:w="534"/><text x="12.1886%" y="719.50"></text></g><g><title>do_syscall_64 (533 samples, 0.03%)</title><rect x="11.9387%" y="693" width="0.0346%" height="15" fill="rgb(234,159,37)" fg:x="183718" fg:w="533"/><text x="12.1887%" y="703.50"></text></g><g><title>linux-sandbox (4,561 samples, 0.30%)</title><rect x="11.6772%" y="725" width="0.2964%" height="15" fill="rgb(216,204,22)" fg:x="179694" fg:w="4561"/><text x="11.9272%" y="735.50"></text></g><g><title>__libc_start_main (212 samples, 0.01%)</title><rect x="11.9744%" y="693" width="0.0138%" height="15" fill="rgb(214,17,3)" fg:x="184268" fg:w="212"/><text x="12.2244%" y="703.50"></text></g><g><title>main (210 samples, 0.01%)</title><rect x="11.9745%" y="677" width="0.0136%" height="15" fill="rgb(212,111,17)" fg:x="184270" fg:w="210"/><text x="12.2245%" y="687.50"></text></g><g><title>_start (260 samples, 0.02%)</title><rect x="11.9744%" y="709" width="0.0169%" height="15" fill="rgb(221,157,24)" fg:x="184268" fg:w="260"/><text x="12.2244%" y="719.50"></text></g><g><title>process-wrapper (292 samples, 0.02%)</title><rect x="11.9740%" y="725" width="0.0190%" height="15" fill="rgb(252,16,13)" fg:x="184261" fg:w="292"/><text x="12.2240%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (252 samples, 0.02%)</title><rect x="12.0070%" y="549" width="0.0164%" height="15" fill="rgb(221,62,2)" fg:x="184770" fg:w="252"/><text x="12.2570%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (249 samples, 0.02%)</title><rect x="12.0072%" y="533" width="0.0162%" height="15" fill="rgb(247,87,22)" fg:x="184773" fg:w="249"/><text x="12.2572%" y="543.50"></text></g><g><title>native_write_msr (246 samples, 0.02%)</title><rect x="12.0074%" y="517" width="0.0160%" height="15" fill="rgb(215,73,9)" fg:x="184776" fg:w="246"/><text x="12.2574%" y="527.50"></text></g><g><title>finish_task_switch (276 samples, 0.02%)</title><rect x="12.0068%" y="565" width="0.0179%" height="15" fill="rgb(207,175,33)" fg:x="184766" fg:w="276"/><text x="12.2568%" y="575.50"></text></g><g><title>schedule (279 samples, 0.02%)</title><rect x="12.0068%" y="597" width="0.0181%" height="15" fill="rgb(243,129,54)" fg:x="184766" fg:w="279"/><text x="12.2568%" y="607.50"></text></g><g><title>__schedule (279 samples, 0.02%)</title><rect x="12.0068%" y="581" width="0.0181%" height="15" fill="rgb(227,119,45)" fg:x="184766" fg:w="279"/><text x="12.2568%" y="591.50"></text></g><g><title>do_wait (403 samples, 0.03%)</title><rect x="12.0016%" y="613" width="0.0262%" height="15" fill="rgb(205,109,36)" fg:x="184687" fg:w="403"/><text x="12.2516%" y="623.50"></text></g><g><title>do_syscall_64 (404 samples, 0.03%)</title><rect x="12.0016%" y="645" width="0.0263%" height="15" fill="rgb(205,6,39)" fg:x="184687" fg:w="404"/><text x="12.2516%" y="655.50"></text></g><g><title>kernel_wait4 (404 samples, 0.03%)</title><rect x="12.0016%" y="629" width="0.0263%" height="15" fill="rgb(221,32,16)" fg:x="184687" fg:w="404"/><text x="12.2516%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (405 samples, 0.03%)</title><rect x="12.0016%" y="661" width="0.0263%" height="15" fill="rgb(228,144,50)" fg:x="184687" fg:w="405"/><text x="12.2516%" y="671.50"></text></g><g><title>__GI___wait4 (407 samples, 0.03%)</title><rect x="12.0016%" y="677" width="0.0264%" height="15" fill="rgb(229,201,53)" fg:x="184686" fg:w="407"/><text x="12.2516%" y="687.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (408 samples, 0.03%)</title><rect x="12.0016%" y="693" width="0.0265%" height="15" fill="rgb(249,153,27)" fg:x="184686" fg:w="408"/><text x="12.2516%" y="703.50"></text></g><g><title>[perf-934749.map] (665 samples, 0.04%)</title><rect x="11.9932%" y="709" width="0.0432%" height="15" fill="rgb(227,106,25)" fg:x="184557" fg:w="665"/><text x="12.2432%" y="719.50"></text></g><g><title>process_reaper (671 samples, 0.04%)</title><rect x="11.9929%" y="725" width="0.0436%" height="15" fill="rgb(230,65,29)" fg:x="184553" fg:w="671"/><text x="12.2429%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (440 samples, 0.03%)</title><rect x="12.0706%" y="469" width="0.0286%" height="15" fill="rgb(221,57,46)" fg:x="185748" fg:w="440"/><text x="12.3206%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (436 samples, 0.03%)</title><rect x="12.0709%" y="453" width="0.0283%" height="15" fill="rgb(229,161,17)" fg:x="185752" fg:w="436"/><text x="12.3209%" y="463.50"></text></g><g><title>native_write_msr (435 samples, 0.03%)</title><rect x="12.0709%" y="437" width="0.0283%" height="15" fill="rgb(222,213,11)" fg:x="185753" fg:w="435"/><text x="12.3209%" y="447.50"></text></g><g><title>finish_task_switch (472 samples, 0.03%)</title><rect x="12.0698%" y="485" width="0.0307%" height="15" fill="rgb(235,35,13)" fg:x="185735" fg:w="472"/><text x="12.3198%" y="495.50"></text></g><g><title>futex_wait_queue_me (516 samples, 0.03%)</title><rect x="12.0679%" y="533" width="0.0335%" height="15" fill="rgb(233,158,34)" fg:x="185706" fg:w="516"/><text x="12.3179%" y="543.50"></text></g><g><title>schedule (512 samples, 0.03%)</title><rect x="12.0681%" y="517" width="0.0333%" height="15" fill="rgb(215,151,48)" fg:x="185710" fg:w="512"/><text x="12.3181%" y="527.50"></text></g><g><title>__schedule (510 samples, 0.03%)</title><rect x="12.0683%" y="501" width="0.0331%" height="15" fill="rgb(229,84,14)" fg:x="185712" fg:w="510"/><text x="12.3183%" y="511.50"></text></g><g><title>do_syscall_64 (536 samples, 0.03%)</title><rect x="12.0670%" y="597" width="0.0348%" height="15" fill="rgb(229,68,14)" fg:x="185692" fg:w="536"/><text x="12.3170%" y="607.50"></text></g><g><title>__x64_sys_futex (534 samples, 0.03%)</title><rect x="12.0671%" y="581" width="0.0347%" height="15" fill="rgb(243,106,26)" fg:x="185694" fg:w="534"/><text x="12.3171%" y="591.50"></text></g><g><title>do_futex (532 samples, 0.03%)</title><rect x="12.0672%" y="565" width="0.0346%" height="15" fill="rgb(206,45,38)" fg:x="185696" fg:w="532"/><text x="12.3172%" y="575.50"></text></g><g><title>futex_wait (526 samples, 0.03%)</title><rect x="12.0676%" y="549" width="0.0342%" height="15" fill="rgb(226,6,15)" fg:x="185702" fg:w="526"/><text x="12.3176%" y="559.50"></text></g><g><title>__pthread_cond_wait (551 samples, 0.04%)</title><rect x="12.0664%" y="661" width="0.0358%" height="15" fill="rgb(232,22,54)" fg:x="185684" fg:w="551"/><text x="12.3164%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (551 samples, 0.04%)</title><rect x="12.0664%" y="645" width="0.0358%" height="15" fill="rgb(229,222,32)" fg:x="185684" fg:w="551"/><text x="12.3164%" y="655.50"></text></g><g><title>futex_wait_cancelable (544 samples, 0.04%)</title><rect x="12.0669%" y="629" width="0.0354%" height="15" fill="rgb(228,62,29)" fg:x="185691" fg:w="544"/><text x="12.3169%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (543 samples, 0.04%)</title><rect x="12.0670%" y="613" width="0.0353%" height="15" fill="rgb(251,103,34)" fg:x="185692" fg:w="543"/><text x="12.3170%" y="623.50"></text></g><g><title>Unsafe_Park (591 samples, 0.04%)</title><rect x="12.0649%" y="693" width="0.0384%" height="15" fill="rgb(233,12,30)" fg:x="185660" fg:w="591"/><text x="12.3149%" y="703.50"></text></g><g><title>Parker::park (585 samples, 0.04%)</title><rect x="12.0653%" y="677" width="0.0380%" height="15" fill="rgb(238,52,0)" fg:x="185666" fg:w="585"/><text x="12.3153%" y="687.50"></text></g><g><title>[perf-934749.map] (1,014 samples, 0.07%)</title><rect x="12.0378%" y="709" width="0.0659%" height="15" fill="rgb(223,98,5)" fg:x="185244" fg:w="1014"/><text x="12.2878%" y="719.50"></text></g><g><title>profile-writer- (1,050 samples, 0.07%)</title><rect x="12.0365%" y="725" width="0.0682%" height="15" fill="rgb(228,75,37)" fg:x="185224" fg:w="1050"/><text x="12.2865%" y="735.50"></text></g><g><title>[unknown] (305 samples, 0.02%)</title><rect x="12.1074%" y="709" width="0.0198%" height="15" fill="rgb(205,115,49)" fg:x="186314" fg:w="305"/><text x="12.3574%" y="719.50"></text></g><g><title>_start (159 samples, 0.01%)</title><rect x="12.1272%" y="709" width="0.0103%" height="15" fill="rgb(250,154,43)" fg:x="186619" fg:w="159"/><text x="12.3772%" y="719.50"></text></g><g><title>python3 (513 samples, 0.03%)</title><rect x="12.1050%" y="725" width="0.0333%" height="15" fill="rgb(226,43,29)" fg:x="186277" fg:w="513"/><text x="12.3550%" y="735.50"></text></g><g><title>[sed] (220 samples, 0.01%)</title><rect x="12.1599%" y="597" width="0.0143%" height="15" fill="rgb(249,228,39)" fg:x="187122" fg:w="220"/><text x="12.4099%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (567 samples, 0.04%)</title><rect x="12.1792%" y="405" width="0.0368%" height="15" fill="rgb(216,79,43)" fg:x="187420" fg:w="567"/><text x="12.4292%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (563 samples, 0.04%)</title><rect x="12.1795%" y="389" width="0.0366%" height="15" fill="rgb(228,95,12)" fg:x="187424" fg:w="563"/><text x="12.4295%" y="399.50"></text></g><g><title>native_write_msr (559 samples, 0.04%)</title><rect x="12.1798%" y="373" width="0.0363%" height="15" fill="rgb(249,221,15)" fg:x="187428" fg:w="559"/><text x="12.4298%" y="383.50"></text></g><g><title>finish_task_switch (610 samples, 0.04%)</title><rect x="12.1781%" y="421" width="0.0396%" height="15" fill="rgb(233,34,13)" fg:x="187403" fg:w="610"/><text x="12.4281%" y="431.50"></text></g><g><title>schedule (616 samples, 0.04%)</title><rect x="12.1779%" y="453" width="0.0400%" height="15" fill="rgb(214,103,39)" fg:x="187399" fg:w="616"/><text x="12.4279%" y="463.50"></text></g><g><title>__schedule (616 samples, 0.04%)</title><rect x="12.1779%" y="437" width="0.0400%" height="15" fill="rgb(251,126,39)" fg:x="187399" fg:w="616"/><text x="12.4279%" y="447.50"></text></g><g><title>new_sync_read (654 samples, 0.04%)</title><rect x="12.1757%" y="485" width="0.0425%" height="15" fill="rgb(214,216,36)" fg:x="187366" fg:w="654"/><text x="12.4257%" y="495.50"></text></g><g><title>pipe_read (653 samples, 0.04%)</title><rect x="12.1758%" y="469" width="0.0424%" height="15" fill="rgb(220,221,8)" fg:x="187367" fg:w="653"/><text x="12.4258%" y="479.50"></text></g><g><title>do_syscall_64 (660 samples, 0.04%)</title><rect x="12.1754%" y="533" width="0.0429%" height="15" fill="rgb(240,216,3)" fg:x="187361" fg:w="660"/><text x="12.4254%" y="543.50"></text></g><g><title>ksys_read (659 samples, 0.04%)</title><rect x="12.1755%" y="517" width="0.0428%" height="15" fill="rgb(232,218,17)" fg:x="187362" fg:w="659"/><text x="12.4255%" y="527.50"></text></g><g><title>vfs_read (658 samples, 0.04%)</title><rect x="12.1755%" y="501" width="0.0428%" height="15" fill="rgb(229,163,45)" fg:x="187363" fg:w="658"/><text x="12.4255%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (662 samples, 0.04%)</title><rect x="12.1754%" y="549" width="0.0430%" height="15" fill="rgb(231,110,42)" fg:x="187361" fg:w="662"/><text x="12.4254%" y="559.50"></text></g><g><title>_IO_new_file_underflow (679 samples, 0.04%)</title><rect x="12.1744%" y="581" width="0.0441%" height="15" fill="rgb(208,170,48)" fg:x="187345" fg:w="679"/><text x="12.4244%" y="591.50"></text></g><g><title>__GI___libc_read (664 samples, 0.04%)</title><rect x="12.1753%" y="565" width="0.0431%" height="15" fill="rgb(239,116,25)" fg:x="187360" fg:w="664"/><text x="12.4253%" y="575.50"></text></g><g><title>_IO_getdelim (684 samples, 0.04%)</title><rect x="12.1742%" y="597" width="0.0444%" height="15" fill="rgb(219,200,50)" fg:x="187342" fg:w="684"/><text x="12.4242%" y="607.50"></text></g><g><title>[sed] (1,010 samples, 0.07%)</title><rect x="12.1595%" y="613" width="0.0656%" height="15" fill="rgb(245,200,0)" fg:x="187116" fg:w="1010"/><text x="12.4095%" y="623.50"></text></g><g><title>[sed] (1,068 samples, 0.07%)</title><rect x="12.1570%" y="629" width="0.0694%" height="15" fill="rgb(245,119,33)" fg:x="187077" fg:w="1068"/><text x="12.4070%" y="639.50"></text></g><g><title>[sed] (1,268 samples, 0.08%)</title><rect x="12.1554%" y="645" width="0.0824%" height="15" fill="rgb(231,125,12)" fg:x="187053" fg:w="1268"/><text x="12.4054%" y="655.50"></text></g><g><title>[sed] (1,322 samples, 0.09%)</title><rect x="12.1544%" y="661" width="0.0859%" height="15" fill="rgb(216,96,41)" fg:x="187038" fg:w="1322"/><text x="12.4044%" y="671.50"></text></g><g><title>[sed] (1,452 samples, 0.09%)</title><rect x="12.1544%" y="677" width="0.0944%" height="15" fill="rgb(248,43,45)" fg:x="187038" fg:w="1452"/><text x="12.4044%" y="687.50"></text></g><g><title>__libc_start_main (1,580 samples, 0.10%)</title><rect x="12.1542%" y="693" width="0.1027%" height="15" fill="rgb(217,222,7)" fg:x="187035" fg:w="1580"/><text x="12.4042%" y="703.50"></text></g><g><title>[sed] (1,628 samples, 0.11%)</title><rect x="12.1537%" y="709" width="0.1058%" height="15" fill="rgb(233,28,6)" fg:x="187027" fg:w="1628"/><text x="12.4037%" y="719.50"></text></g><g><title>_IO_getdelim (158 samples, 0.01%)</title><rect x="12.2772%" y="613" width="0.0103%" height="15" fill="rgb(231,218,15)" fg:x="188927" fg:w="158"/><text x="12.5272%" y="623.50"></text></g><g><title>determine_info (289 samples, 0.02%)</title><rect x="12.3007%" y="533" width="0.0188%" height="15" fill="rgb(226,171,48)" fg:x="189289" fg:w="289"/><text x="12.5507%" y="543.50"></text></g><g><title>__GI__dl_addr (318 samples, 0.02%)</title><rect x="12.2989%" y="549" width="0.0207%" height="15" fill="rgb(235,201,9)" fg:x="189261" fg:w="318"/><text x="12.5489%" y="559.50"></text></g><g><title>__fopen_internal (454 samples, 0.03%)</title><rect x="12.2909%" y="613" width="0.0295%" height="15" fill="rgb(217,80,15)" fg:x="189138" fg:w="454"/><text x="12.5409%" y="623.50"></text></g><g><title>malloc_hook_ini (337 samples, 0.02%)</title><rect x="12.2985%" y="597" width="0.0219%" height="15" fill="rgb(219,152,8)" fg:x="189255" fg:w="337"/><text x="12.5485%" y="607.50"></text></g><g><title>ptmalloc_init (336 samples, 0.02%)</title><rect x="12.2986%" y="581" width="0.0218%" height="15" fill="rgb(243,107,38)" fg:x="189256" fg:w="336"/><text x="12.5486%" y="591.50"></text></g><g><title>ptmalloc_init (336 samples, 0.02%)</title><rect x="12.2986%" y="565" width="0.0218%" height="15" fill="rgb(231,17,5)" fg:x="189256" fg:w="336"/><text x="12.5486%" y="575.50"></text></g><g><title>[libselinux.so.1] (803 samples, 0.05%)</title><rect x="12.2689%" y="645" width="0.0522%" height="15" fill="rgb(209,25,54)" fg:x="188799" fg:w="803"/><text x="12.5189%" y="655.50"></text></g><g><title>selinuxfs_exists (678 samples, 0.04%)</title><rect x="12.2770%" y="629" width="0.0441%" height="15" fill="rgb(219,0,2)" fg:x="188924" fg:w="678"/><text x="12.5270%" y="639.50"></text></g><g><title>_dl_start_user (907 samples, 0.06%)</title><rect x="12.2685%" y="709" width="0.0589%" height="15" fill="rgb(246,9,5)" fg:x="188794" fg:w="907"/><text x="12.5185%" y="719.50"></text></g><g><title>_dl_init (906 samples, 0.06%)</title><rect x="12.2686%" y="693" width="0.0589%" height="15" fill="rgb(226,159,4)" fg:x="188795" fg:w="906"/><text x="12.5186%" y="703.50"></text></g><g><title>call_init (906 samples, 0.06%)</title><rect x="12.2686%" y="677" width="0.0589%" height="15" fill="rgb(219,175,34)" fg:x="188795" fg:w="906"/><text x="12.5186%" y="687.50"></text></g><g><title>call_init (903 samples, 0.06%)</title><rect x="12.2688%" y="661" width="0.0587%" height="15" fill="rgb(236,10,46)" fg:x="188798" fg:w="903"/><text x="12.5188%" y="671.50"></text></g><g><title>__vma_adjust (231 samples, 0.02%)</title><rect x="12.3693%" y="373" width="0.0150%" height="15" fill="rgb(240,211,16)" fg:x="190344" fg:w="231"/><text x="12.6193%" y="383.50"></text></g><g><title>__split_vma (317 samples, 0.02%)</title><rect x="12.3687%" y="389" width="0.0206%" height="15" fill="rgb(205,3,43)" fg:x="190336" fg:w="317"/><text x="12.6187%" y="399.50"></text></g><g><title>__do_munmap (518 samples, 0.03%)</title><rect x="12.3676%" y="405" width="0.0337%" height="15" fill="rgb(245,7,22)" fg:x="190319" fg:w="518"/><text x="12.6176%" y="415.50"></text></g><g><title>perf_event_mmap (209 samples, 0.01%)</title><rect x="12.4021%" y="405" width="0.0136%" height="15" fill="rgb(239,132,32)" fg:x="190850" fg:w="209"/><text x="12.6521%" y="415.50"></text></g><g><title>mmap_region (958 samples, 0.06%)</title><rect x="12.3659%" y="421" width="0.0623%" height="15" fill="rgb(228,202,34)" fg:x="190292" fg:w="958"/><text x="12.6159%" y="431.50"></text></g><g><title>do_mmap (985 samples, 0.06%)</title><rect x="12.3642%" y="437" width="0.0640%" height="15" fill="rgb(254,200,22)" fg:x="190266" fg:w="985"/><text x="12.6142%" y="447.50"></text></g><g><title>ksys_mmap_pgoff (1,025 samples, 0.07%)</title><rect x="12.3633%" y="469" width="0.0666%" height="15" fill="rgb(219,10,39)" fg:x="190252" fg:w="1025"/><text x="12.6133%" y="479.50"></text></g><g><title>vm_mmap_pgoff (1,014 samples, 0.07%)</title><rect x="12.3640%" y="453" width="0.0659%" height="15" fill="rgb(226,210,39)" fg:x="190263" fg:w="1014"/><text x="12.6140%" y="463.50"></text></g><g><title>do_syscall_64 (1,109 samples, 0.07%)</title><rect x="12.3630%" y="485" width="0.0721%" height="15" fill="rgb(208,219,16)" fg:x="190248" fg:w="1109"/><text x="12.6130%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,127 samples, 0.07%)</title><rect x="12.3628%" y="501" width="0.0732%" height="15" fill="rgb(216,158,51)" fg:x="190245" fg:w="1127"/><text x="12.6128%" y="511.50"></text></g><g><title>__mmap64 (1,146 samples, 0.07%)</title><rect x="12.3619%" y="533" width="0.0745%" height="15" fill="rgb(233,14,44)" fg:x="190230" fg:w="1146"/><text x="12.6119%" y="543.50"></text></g><g><title>__mmap64 (1,146 samples, 0.07%)</title><rect x="12.3619%" y="517" width="0.0745%" height="15" fill="rgb(237,97,39)" fg:x="190230" fg:w="1146"/><text x="12.6119%" y="527.50"></text></g><g><title>_dl_map_segments (1,282 samples, 0.08%)</title><rect x="12.3532%" y="549" width="0.0833%" height="15" fill="rgb(218,198,43)" fg:x="190097" fg:w="1282"/><text x="12.6032%" y="559.50"></text></g><g><title>elf_get_dynamic_info (184 samples, 0.01%)</title><rect x="12.4470%" y="549" width="0.0120%" height="15" fill="rgb(231,104,20)" fg:x="191541" fg:w="184"/><text x="12.6970%" y="559.50"></text></g><g><title>_dl_map_object_from_fd (1,703 samples, 0.11%)</title><rect x="12.3484%" y="565" width="0.1107%" height="15" fill="rgb(254,36,13)" fg:x="190023" fg:w="1703"/><text x="12.5984%" y="575.50"></text></g><g><title>do_filp_open (190 samples, 0.01%)</title><rect x="12.4680%" y="453" width="0.0123%" height="15" fill="rgb(248,14,50)" fg:x="191863" fg:w="190"/><text x="12.7180%" y="463.50"></text></g><g><title>path_openat (184 samples, 0.01%)</title><rect x="12.4684%" y="437" width="0.0120%" height="15" fill="rgb(217,107,29)" fg:x="191869" fg:w="184"/><text x="12.7184%" y="447.50"></text></g><g><title>do_syscall_64 (239 samples, 0.02%)</title><rect x="12.4670%" y="501" width="0.0155%" height="15" fill="rgb(251,169,33)" fg:x="191848" fg:w="239"/><text x="12.7170%" y="511.50"></text></g><g><title>__x64_sys_openat (238 samples, 0.02%)</title><rect x="12.4671%" y="485" width="0.0155%" height="15" fill="rgb(217,108,32)" fg:x="191849" fg:w="238"/><text x="12.7171%" y="495.50"></text></g><g><title>do_sys_openat2 (238 samples, 0.02%)</title><rect x="12.4671%" y="469" width="0.0155%" height="15" fill="rgb(219,66,42)" fg:x="191849" fg:w="238"/><text x="12.7171%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (250 samples, 0.02%)</title><rect x="12.4670%" y="517" width="0.0162%" height="15" fill="rgb(206,180,7)" fg:x="191848" fg:w="250"/><text x="12.7170%" y="527.50"></text></g><g><title>__GI___open64_nocancel (262 samples, 0.02%)</title><rect x="12.4663%" y="533" width="0.0170%" height="15" fill="rgb(208,226,31)" fg:x="191838" fg:w="262"/><text x="12.7163%" y="543.50"></text></g><g><title>open_path (395 samples, 0.03%)</title><rect x="12.4609%" y="565" width="0.0257%" height="15" fill="rgb(218,26,49)" fg:x="191754" fg:w="395"/><text x="12.7109%" y="575.50"></text></g><g><title>open_verify (326 samples, 0.02%)</title><rect x="12.4654%" y="549" width="0.0212%" height="15" fill="rgb(233,197,48)" fg:x="191823" fg:w="326"/><text x="12.7154%" y="559.50"></text></g><g><title>_dl_catch_exception (2,206 samples, 0.14%)</title><rect x="12.3452%" y="613" width="0.1434%" height="15" fill="rgb(252,181,51)" fg:x="189973" fg:w="2206"/><text x="12.5952%" y="623.50"></text></g><g><title>openaux (2,203 samples, 0.14%)</title><rect x="12.3453%" y="597" width="0.1432%" height="15" fill="rgb(253,90,19)" fg:x="189976" fg:w="2203"/><text x="12.5953%" y="607.50"></text></g><g><title>_dl_map_object (2,202 samples, 0.14%)</title><rect x="12.3454%" y="581" width="0.1431%" height="15" fill="rgb(215,171,30)" fg:x="189977" fg:w="2202"/><text x="12.5954%" y="591.50"></text></g><g><title>_dl_map_object_deps (2,280 samples, 0.15%)</title><rect x="12.3437%" y="629" width="0.1482%" height="15" fill="rgb(214,222,9)" fg:x="189951" fg:w="2280"/><text x="12.5937%" y="639.50"></text></g><g><title>mprotect_fixup (244 samples, 0.02%)</title><rect x="12.4991%" y="517" width="0.0159%" height="15" fill="rgb(223,3,22)" fg:x="192342" fg:w="244"/><text x="12.7491%" y="527.50"></text></g><g><title>do_syscall_64 (269 samples, 0.02%)</title><rect x="12.4978%" y="565" width="0.0175%" height="15" fill="rgb(225,196,46)" fg:x="192322" fg:w="269"/><text x="12.7478%" y="575.50"></text></g><g><title>__x64_sys_mprotect (269 samples, 0.02%)</title><rect x="12.4978%" y="549" width="0.0175%" height="15" fill="rgb(209,110,37)" fg:x="192322" fg:w="269"/><text x="12.7478%" y="559.50"></text></g><g><title>do_mprotect_pkey (268 samples, 0.02%)</title><rect x="12.4979%" y="533" width="0.0174%" height="15" fill="rgb(249,89,12)" fg:x="192323" fg:w="268"/><text x="12.7479%" y="543.50"></text></g><g><title>_dl_protect_relro (276 samples, 0.02%)</title><rect x="12.4974%" y="613" width="0.0179%" height="15" fill="rgb(226,27,33)" fg:x="192316" fg:w="276"/><text x="12.7474%" y="623.50"></text></g><g><title>__mprotect (275 samples, 0.02%)</title><rect x="12.4975%" y="597" width="0.0179%" height="15" fill="rgb(213,82,22)" fg:x="192317" fg:w="275"/><text x="12.7475%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (271 samples, 0.02%)</title><rect x="12.4977%" y="581" width="0.0176%" height="15" fill="rgb(248,140,0)" fg:x="192321" fg:w="271"/><text x="12.7477%" y="591.50"></text></g><g><title>check_match (240 samples, 0.02%)</title><rect x="12.5653%" y="549" width="0.0156%" height="15" fill="rgb(228,106,3)" fg:x="193361" fg:w="240"/><text x="12.8153%" y="559.50"></text></g><g><title>_dl_lookup_symbol_x (752 samples, 0.05%)</title><rect x="12.5324%" y="581" width="0.0489%" height="15" fill="rgb(209,23,37)" fg:x="192855" fg:w="752"/><text x="12.7824%" y="591.50"></text></g><g><title>do_lookup_x (595 samples, 0.04%)</title><rect x="12.5426%" y="565" width="0.0387%" height="15" fill="rgb(241,93,50)" fg:x="193012" fg:w="595"/><text x="12.7926%" y="575.50"></text></g><g><title>elf_machine_rela (901 samples, 0.06%)</title><rect x="12.5235%" y="597" width="0.0586%" height="15" fill="rgb(253,46,43)" fg:x="192717" fg:w="901"/><text x="12.7735%" y="607.50"></text></g><g><title>elf_dynamic_do_Rela (1,113 samples, 0.07%)</title><rect x="12.5153%" y="613" width="0.0723%" height="15" fill="rgb(226,206,43)" fg:x="192592" fg:w="1113"/><text x="12.7653%" y="623.50"></text></g><g><title>_dl_relocate_object (1,430 samples, 0.09%)</title><rect x="12.4967%" y="629" width="0.0929%" height="15" fill="rgb(217,54,7)" fg:x="192305" fg:w="1430"/><text x="12.7467%" y="639.50"></text></g><g><title>[ld-2.31.so] (3,986 samples, 0.26%)</title><rect x="12.3360%" y="645" width="0.2590%" height="15" fill="rgb(223,5,52)" fg:x="189832" fg:w="3986"/><text x="12.5860%" y="655.50"></text></g><g><title>_dl_start_final (4,080 samples, 0.27%)</title><rect x="12.3351%" y="677" width="0.2651%" height="15" fill="rgb(206,52,46)" fg:x="189819" fg:w="4080"/><text x="12.5851%" y="687.50"></text></g><g><title>_dl_sysdep_start (4,077 samples, 0.26%)</title><rect x="12.3353%" y="661" width="0.2649%" height="15" fill="rgb(253,136,11)" fg:x="189822" fg:w="4077"/><text x="12.5853%" y="671.50"></text></g><g><title>_dl_start (4,148 samples, 0.27%)</title><rect x="12.3350%" y="693" width="0.2696%" height="15" fill="rgb(208,106,33)" fg:x="189817" fg:w="4148"/><text x="12.5850%" y="703.50"></text></g><g><title>_start (4,193 samples, 0.27%)</title><rect x="12.3348%" y="709" width="0.2725%" height="15" fill="rgb(206,54,4)" fg:x="189813" fg:w="4193"/><text x="12.5848%" y="719.50"></text></g><g><title>asm_exc_page_fault (255 samples, 0.02%)</title><rect x="12.6072%" y="709" width="0.0166%" height="15" fill="rgb(213,3,15)" fg:x="194006" fg:w="255"/><text x="12.8572%" y="719.50"></text></g><g><title>__x64_sys_execve (476 samples, 0.03%)</title><rect x="12.6241%" y="677" width="0.0309%" height="15" fill="rgb(252,211,39)" fg:x="194265" fg:w="476"/><text x="12.8741%" y="687.50"></text></g><g><title>do_execveat_common (476 samples, 0.03%)</title><rect x="12.6241%" y="661" width="0.0309%" height="15" fill="rgb(223,6,36)" fg:x="194265" fg:w="476"/><text x="12.8741%" y="671.50"></text></g><g><title>bprm_execve (476 samples, 0.03%)</title><rect x="12.6241%" y="645" width="0.0309%" height="15" fill="rgb(252,169,45)" fg:x="194265" fg:w="476"/><text x="12.8741%" y="655.50"></text></g><g><title>load_elf_binary (476 samples, 0.03%)</title><rect x="12.6241%" y="629" width="0.0309%" height="15" fill="rgb(212,48,26)" fg:x="194265" fg:w="476"/><text x="12.8741%" y="639.50"></text></g><g><title>unmap_page_range (331 samples, 0.02%)</title><rect x="12.6773%" y="581" width="0.0215%" height="15" fill="rgb(251,102,48)" fg:x="195084" fg:w="331"/><text x="12.9273%" y="591.50"></text></g><g><title>exit_mmap (666 samples, 0.04%)</title><rect x="12.6556%" y="613" width="0.0433%" height="15" fill="rgb(243,208,16)" fg:x="194751" fg:w="666"/><text x="12.9056%" y="623.50"></text></g><g><title>unmap_vmas (339 samples, 0.02%)</title><rect x="12.6769%" y="597" width="0.0220%" height="15" fill="rgb(219,96,24)" fg:x="195078" fg:w="339"/><text x="12.9269%" y="607.50"></text></g><g><title>mmput (671 samples, 0.04%)</title><rect x="12.6555%" y="629" width="0.0436%" height="15" fill="rgb(219,33,29)" fg:x="194749" fg:w="671"/><text x="12.9055%" y="639.50"></text></g><g><title>do_syscall_64 (1,228 samples, 0.08%)</title><rect x="12.6241%" y="693" width="0.0798%" height="15" fill="rgb(223,176,5)" fg:x="194265" fg:w="1228"/><text x="12.8741%" y="703.50"></text></g><g><title>__x64_sys_exit_group (752 samples, 0.05%)</title><rect x="12.6550%" y="677" width="0.0489%" height="15" fill="rgb(228,140,14)" fg:x="194741" fg:w="752"/><text x="12.9050%" y="687.50"></text></g><g><title>do_group_exit (752 samples, 0.05%)</title><rect x="12.6550%" y="661" width="0.0489%" height="15" fill="rgb(217,179,31)" fg:x="194741" fg:w="752"/><text x="12.9050%" y="671.50"></text></g><g><title>do_exit (752 samples, 0.05%)</title><rect x="12.6550%" y="645" width="0.0489%" height="15" fill="rgb(230,9,30)" fg:x="194741" fg:w="752"/><text x="12.9050%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,234 samples, 0.08%)</title><rect x="12.6239%" y="709" width="0.0802%" height="15" fill="rgb(230,136,20)" fg:x="194262" fg:w="1234"/><text x="12.8739%" y="719.50"></text></g><g><title>sed (8,724 samples, 0.57%)</title><rect x="12.1383%" y="725" width="0.5669%" height="15" fill="rgb(215,210,22)" fg:x="186790" fg:w="8724"/><text x="12.3883%" y="735.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (261 samples, 0.02%)</title><rect x="12.7258%" y="693" width="0.0170%" height="15" fill="rgb(218,43,5)" fg:x="195831" fg:w="261"/><text x="12.9758%" y="703.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;5292148ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)0, 5292148ul&gt;::oop_access_barrier (327 samples, 0.02%)</title><rect x="12.7429%" y="693" width="0.0212%" height="15" fill="rgb(216,11,5)" fg:x="196093" fg:w="327"/><text x="12.9929%" y="703.50"></text></g><g><title>CollectedHeap::obj_allocate (496 samples, 0.03%)</title><rect x="12.7801%" y="693" width="0.0322%" height="15" fill="rgb(209,82,29)" fg:x="196666" fg:w="496"/><text x="13.0301%" y="703.50"></text></g><g><title>HandleMark::pop_and_restore (285 samples, 0.02%)</title><rect x="12.8176%" y="693" width="0.0185%" height="15" fill="rgb(244,115,12)" fg:x="197243" fg:w="285"/><text x="13.0676%" y="703.50"></text></g><g><title>InstanceKlass::initialize (172 samples, 0.01%)</title><rect x="12.8488%" y="693" width="0.0112%" height="15" fill="rgb(222,82,18)" fg:x="197724" fg:w="172"/><text x="13.0988%" y="703.50"></text></g><g><title>JNIHandleBlock::allocate_block (435 samples, 0.03%)</title><rect x="12.8613%" y="693" width="0.0283%" height="15" fill="rgb(249,227,8)" fg:x="197915" fg:w="435"/><text x="13.1113%" y="703.50"></text></g><g><title>JNIHandles::make_local (186 samples, 0.01%)</title><rect x="12.8980%" y="693" width="0.0121%" height="15" fill="rgb(253,141,45)" fg:x="198480" fg:w="186"/><text x="13.1480%" y="703.50"></text></g><g><title>JavaCalls::call_helper (202 samples, 0.01%)</title><rect x="12.9270%" y="693" width="0.0131%" height="15" fill="rgb(234,184,4)" fg:x="198926" fg:w="202"/><text x="13.1770%" y="703.50"></text></g><g><title>JavaThread::can_call_java (442 samples, 0.03%)</title><rect x="12.9401%" y="693" width="0.0287%" height="15" fill="rgb(218,194,23)" fg:x="199128" fg:w="442"/><text x="13.1901%" y="703.50"></text></g><g><title>JavaThread::is_Java_thread (298 samples, 0.02%)</title><rect x="12.9706%" y="693" width="0.0194%" height="15" fill="rgb(235,66,41)" fg:x="199597" fg:w="298"/><text x="13.2206%" y="703.50"></text></g><g><title>MemAllocator::allocate (234 samples, 0.02%)</title><rect x="12.9985%" y="693" width="0.0152%" height="15" fill="rgb(245,217,1)" fg:x="200027" fg:w="234"/><text x="13.2485%" y="703.50"></text></g><g><title>ThreadHeapSampler::enabled (215 samples, 0.01%)</title><rect x="13.0222%" y="693" width="0.0140%" height="15" fill="rgb(229,91,1)" fg:x="200392" fg:w="215"/><text x="13.2722%" y="703.50"></text></g><g><title>ThreadShadow::clear_pending_exception (504 samples, 0.03%)</title><rect x="13.0364%" y="693" width="0.0328%" height="15" fill="rgb(207,101,30)" fg:x="200610" fg:w="504"/><text x="13.2864%" y="703.50"></text></g><g><title>ThreadStateTransition::transition_from_native (288 samples, 0.02%)</title><rect x="13.0770%" y="693" width="0.0187%" height="15" fill="rgb(223,82,49)" fg:x="201235" fg:w="288"/><text x="13.3270%" y="703.50"></text></g><g><title>__GI___xstat (197 samples, 0.01%)</title><rect x="13.1146%" y="693" width="0.0128%" height="15" fill="rgb(218,167,17)" fg:x="201814" fg:w="197"/><text x="13.3646%" y="703.50"></text></g><g><title>__GI_unlinkat (264 samples, 0.02%)</title><rect x="13.1274%" y="693" width="0.0172%" height="15" fill="rgb(208,103,14)" fg:x="202011" fg:w="264"/><text x="13.3774%" y="703.50"></text></g><g><title>_int_free (173 samples, 0.01%)</title><rect x="13.1491%" y="693" width="0.0112%" height="15" fill="rgb(238,20,8)" fg:x="202345" fg:w="173"/><text x="13.3991%" y="703.50"></text></g><g><title>alloc_object (324 samples, 0.02%)</title><rect x="13.1617%" y="693" width="0.0211%" height="15" fill="rgb(218,80,54)" fg:x="202538" fg:w="324"/><text x="13.4117%" y="703.50"></text></g><g><title>check_bounds (399 samples, 0.03%)</title><rect x="13.1827%" y="693" width="0.0259%" height="15" fill="rgb(240,144,17)" fg:x="202862" fg:w="399"/><text x="13.4327%" y="703.50"></text></g><g><title>jni_GetObjectField (237 samples, 0.02%)</title><rect x="13.2195%" y="693" width="0.0154%" height="15" fill="rgb(245,27,50)" fg:x="203428" fg:w="237"/><text x="13.4695%" y="703.50"></text></g><g><title>jni_NewObjectV (463 samples, 0.03%)</title><rect x="13.2418%" y="693" width="0.0301%" height="15" fill="rgb(251,51,7)" fg:x="203771" fg:w="463"/><text x="13.4918%" y="703.50"></text></g><g><title>oopDesc::metadata_field (184 samples, 0.01%)</title><rect x="13.2838%" y="693" width="0.0120%" height="15" fill="rgb(245,217,29)" fg:x="204417" fg:w="184"/><text x="13.5338%" y="703.50"></text></g><g><title>os::current_stack_pointer (170 samples, 0.01%)</title><rect x="13.2976%" y="693" width="0.0110%" height="15" fill="rgb(221,176,29)" fg:x="204629" fg:w="170"/><text x="13.5476%" y="703.50"></text></g><g><title>[anon] (9,423 samples, 0.61%)</title><rect x="12.7163%" y="709" width="0.6123%" height="15" fill="rgb(212,180,24)" fg:x="195685" fg:w="9423"/><text x="12.9663%" y="719.50"></text></g><g><title>[libc-2.31.so] (217 samples, 0.01%)</title><rect x="13.9953%" y="693" width="0.0141%" height="15" fill="rgb(254,24,2)" fg:x="215367" fg:w="217"/><text x="14.2453%" y="703.50"></text></g><g><title>__x64_sys_close (401 samples, 0.03%)</title><rect x="14.0152%" y="645" width="0.0261%" height="15" fill="rgb(230,100,2)" fg:x="215673" fg:w="401"/><text x="14.2652%" y="655.50"></text></g><g><title>filp_close (284 samples, 0.02%)</title><rect x="14.0228%" y="629" width="0.0185%" height="15" fill="rgb(219,142,25)" fg:x="215790" fg:w="284"/><text x="14.2728%" y="639.50"></text></g><g><title>do_syscall_64 (433 samples, 0.03%)</title><rect x="14.0137%" y="661" width="0.0281%" height="15" fill="rgb(240,73,43)" fg:x="215650" fg:w="433"/><text x="14.2637%" y="671.50"></text></g><g><title>btrfs_release_file (404 samples, 0.03%)</title><rect x="14.0560%" y="597" width="0.0263%" height="15" fill="rgb(214,114,15)" fg:x="216300" fg:w="404"/><text x="14.3060%" y="607.50"></text></g><g><title>kfree (335 samples, 0.02%)</title><rect x="14.0605%" y="581" width="0.0218%" height="15" fill="rgb(207,130,4)" fg:x="216369" fg:w="335"/><text x="14.3105%" y="591.50"></text></g><g><title>__fput (806 samples, 0.05%)</title><rect x="14.0495%" y="613" width="0.0524%" height="15" fill="rgb(221,25,40)" fg:x="216200" fg:w="806"/><text x="14.2995%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,463 samples, 0.10%)</title><rect x="14.0131%" y="677" width="0.0951%" height="15" fill="rgb(241,184,7)" fg:x="215640" fg:w="1463"/><text x="14.2631%" y="687.50"></text></g><g><title>syscall_exit_to_user_mode (1,020 samples, 0.07%)</title><rect x="14.0419%" y="661" width="0.0663%" height="15" fill="rgb(235,159,4)" fg:x="216083" fg:w="1020"/><text x="14.2919%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (1,016 samples, 0.07%)</title><rect x="14.0421%" y="645" width="0.0660%" height="15" fill="rgb(214,87,48)" fg:x="216087" fg:w="1016"/><text x="14.2921%" y="655.50"></text></g><g><title>task_work_run (930 samples, 0.06%)</title><rect x="14.0477%" y="629" width="0.0604%" height="15" fill="rgb(246,198,24)" fg:x="216173" fg:w="930"/><text x="14.2977%" y="639.50"></text></g><g><title>__GI___close_nocancel (1,530 samples, 0.10%)</title><rect x="14.0094%" y="693" width="0.0994%" height="15" fill="rgb(209,66,40)" fg:x="215584" fg:w="1530"/><text x="14.2594%" y="703.50"></text></g><g><title>__GI___libc_free (1,200 samples, 0.08%)</title><rect x="14.1090%" y="693" width="0.0780%" height="15" fill="rgb(233,147,39)" fg:x="217116" fg:w="1200"/><text x="14.3590%" y="703.50"></text></g><g><title>entry_SYSCALL_64 (308 samples, 0.02%)</title><rect x="14.2197%" y="677" width="0.0200%" height="15" fill="rgb(231,145,52)" fg:x="218819" fg:w="308"/><text x="14.4697%" y="687.50"></text></g><g><title>__schedule (218 samples, 0.01%)</title><rect x="14.3320%" y="581" width="0.0142%" height="15" fill="rgb(206,20,26)" fg:x="220547" fg:w="218"/><text x="14.5820%" y="591.50"></text></g><g><title>_cond_resched (299 samples, 0.02%)</title><rect x="14.3281%" y="597" width="0.0194%" height="15" fill="rgb(238,220,4)" fg:x="220488" fg:w="299"/><text x="14.5781%" y="607.50"></text></g><g><title>_raw_spin_lock (217 samples, 0.01%)</title><rect x="14.3754%" y="581" width="0.0141%" height="15" fill="rgb(252,195,42)" fg:x="221215" fg:w="217"/><text x="14.6254%" y="591.50"></text></g><g><title>lockref_put_or_lock (540 samples, 0.04%)</title><rect x="14.3545%" y="597" width="0.0351%" height="15" fill="rgb(209,10,6)" fg:x="220894" fg:w="540"/><text x="14.6045%" y="607.50"></text></g><g><title>dput (1,500 samples, 0.10%)</title><rect x="14.2935%" y="613" width="0.0975%" height="15" fill="rgb(229,3,52)" fg:x="219955" fg:w="1500"/><text x="14.5435%" y="623.50"></text></g><g><title>_raw_spin_lock (172 samples, 0.01%)</title><rect x="14.4432%" y="533" width="0.0112%" height="15" fill="rgb(253,49,37)" fg:x="222259" fg:w="172"/><text x="14.6932%" y="543.50"></text></g><g><title>__d_lookup (597 samples, 0.04%)</title><rect x="14.4167%" y="549" width="0.0388%" height="15" fill="rgb(240,103,49)" fg:x="221851" fg:w="597"/><text x="14.6667%" y="559.50"></text></g><g><title>__lookup_hash (740 samples, 0.05%)</title><rect x="14.4075%" y="597" width="0.0481%" height="15" fill="rgb(250,182,30)" fg:x="221709" fg:w="740"/><text x="14.6575%" y="607.50"></text></g><g><title>lookup_dcache (694 samples, 0.05%)</title><rect x="14.4105%" y="581" width="0.0451%" height="15" fill="rgb(248,8,30)" fg:x="221755" fg:w="694"/><text x="14.6605%" y="591.50"></text></g><g><title>d_lookup (669 samples, 0.04%)</title><rect x="14.4121%" y="565" width="0.0435%" height="15" fill="rgb(237,120,30)" fg:x="221780" fg:w="669"/><text x="14.6621%" y="575.50"></text></g><g><title>down_write (262 samples, 0.02%)</title><rect x="14.4556%" y="597" width="0.0170%" height="15" fill="rgb(221,146,34)" fg:x="222449" fg:w="262"/><text x="14.7056%" y="607.50"></text></g><g><title>__legitimize_mnt (236 samples, 0.02%)</title><rect x="14.5063%" y="517" width="0.0153%" height="15" fill="rgb(242,55,13)" fg:x="223230" fg:w="236"/><text x="14.7563%" y="527.50"></text></g><g><title>__legitimize_path (383 samples, 0.02%)</title><rect x="14.5041%" y="533" width="0.0249%" height="15" fill="rgb(242,112,31)" fg:x="223196" fg:w="383"/><text x="14.7541%" y="543.50"></text></g><g><title>complete_walk (527 samples, 0.03%)</title><rect x="14.4979%" y="565" width="0.0342%" height="15" fill="rgb(249,192,27)" fg:x="223100" fg:w="527"/><text x="14.7479%" y="575.50"></text></g><g><title>try_to_unlazy (481 samples, 0.03%)</title><rect x="14.5009%" y="549" width="0.0313%" height="15" fill="rgb(208,204,44)" fg:x="223146" fg:w="481"/><text x="14.7509%" y="559.50"></text></g><g><title>inode_permission.part.0 (3,241 samples, 0.21%)</title><rect x="14.7411%" y="549" width="0.2106%" height="15" fill="rgb(208,93,54)" fg:x="226843" fg:w="3241"/><text x="14.9911%" y="559.50"></text></g><g><title>generic_permission (694 samples, 0.05%)</title><rect x="14.9066%" y="533" width="0.0451%" height="15" fill="rgb(242,1,31)" fg:x="229390" fg:w="694"/><text x="15.1566%" y="543.50"></text></g><g><title>security_inode_permission (345 samples, 0.02%)</title><rect x="14.9517%" y="549" width="0.0224%" height="15" fill="rgb(241,83,25)" fg:x="230084" fg:w="345"/><text x="15.2017%" y="559.50"></text></g><g><title>__d_lookup_rcu (4,362 samples, 0.28%)</title><rect x="15.1141%" y="517" width="0.2835%" height="15" fill="rgb(205,169,50)" fg:x="232583" fg:w="4362"/><text x="15.3641%" y="527.50"></text></g><g><title>lookup_fast (5,351 samples, 0.35%)</title><rect x="15.0502%" y="533" width="0.3477%" height="15" fill="rgb(239,186,37)" fg:x="231600" fg:w="5351"/><text x="15.3002%" y="543.50"></text></g><g><title>link_path_walk.part.0 (14,643 samples, 0.95%)</title><rect x="14.5321%" y="565" width="0.9516%" height="15" fill="rgb(205,221,10)" fg:x="223627" fg:w="14643"/><text x="14.7821%" y="575.50"></text></g><g><title>walk_component (7,841 samples, 0.51%)</title><rect x="14.9741%" y="549" width="0.5095%" height="15" fill="rgb(218,196,15)" fg:x="230429" fg:w="7841"/><text x="15.2241%" y="559.50"></text></g><g><title>step_into (1,319 samples, 0.09%)</title><rect x="15.3980%" y="533" width="0.0857%" height="15" fill="rgb(218,196,35)" fg:x="236951" fg:w="1319"/><text x="15.6480%" y="543.50"></text></g><g><title>path_init (389 samples, 0.03%)</title><rect x="15.4837%" y="565" width="0.0253%" height="15" fill="rgb(233,63,24)" fg:x="238270" fg:w="389"/><text x="15.7337%" y="575.50"></text></g><g><title>nd_jump_root (222 samples, 0.01%)</title><rect x="15.4945%" y="549" width="0.0144%" height="15" fill="rgb(225,8,4)" fg:x="238437" fg:w="222"/><text x="15.7445%" y="559.50"></text></g><g><title>set_root (162 samples, 0.01%)</title><rect x="15.4984%" y="533" width="0.0105%" height="15" fill="rgb(234,105,35)" fg:x="238497" fg:w="162"/><text x="15.7484%" y="543.50"></text></g><g><title>filename_parentat (15,998 samples, 1.04%)</title><rect x="14.4726%" y="597" width="1.0396%" height="15" fill="rgb(236,21,32)" fg:x="222711" fg:w="15998"/><text x="14.7226%" y="607.50"></text></g><g><title>path_parentat (15,744 samples, 1.02%)</title><rect x="14.4891%" y="581" width="1.0231%" height="15" fill="rgb(228,109,6)" fg:x="222965" fg:w="15744"/><text x="14.7391%" y="591.50"></text></g><g><title>kmem_cache_free (429 samples, 0.03%)</title><rect x="15.5122%" y="597" width="0.0279%" height="15" fill="rgb(229,215,31)" fg:x="238709" fg:w="429"/><text x="15.7622%" y="607.50"></text></g><g><title>__mnt_want_write (176 samples, 0.01%)</title><rect x="15.5596%" y="581" width="0.0114%" height="15" fill="rgb(221,52,54)" fg:x="239439" fg:w="176"/><text x="15.8096%" y="591.50"></text></g><g><title>mnt_want_write (582 samples, 0.04%)</title><rect x="15.5401%" y="597" width="0.0378%" height="15" fill="rgb(252,129,43)" fg:x="239138" fg:w="582"/><text x="15.7901%" y="607.50"></text></g><g><title>filename_create (18,347 samples, 1.19%)</title><rect x="14.3910%" y="613" width="1.1923%" height="15" fill="rgb(248,183,27)" fg:x="221455" fg:w="18347"/><text x="14.6410%" y="623.50"></text></g><g><title>kmem_cache_free (436 samples, 0.03%)</title><rect x="15.5984%" y="597" width="0.0283%" height="15" fill="rgb(250,0,22)" fg:x="240036" fg:w="436"/><text x="15.8484%" y="607.50"></text></g><g><title>__legitimize_mnt (262 samples, 0.02%)</title><rect x="15.6476%" y="533" width="0.0170%" height="15" fill="rgb(213,166,10)" fg:x="240792" fg:w="262"/><text x="15.8976%" y="543.50"></text></g><g><title>__legitimize_path (433 samples, 0.03%)</title><rect x="15.6443%" y="549" width="0.0281%" height="15" fill="rgb(207,163,36)" fg:x="240742" fg:w="433"/><text x="15.8943%" y="559.50"></text></g><g><title>complete_walk (580 samples, 0.04%)</title><rect x="15.6385%" y="581" width="0.0377%" height="15" fill="rgb(208,122,22)" fg:x="240652" fg:w="580"/><text x="15.8885%" y="591.50"></text></g><g><title>try_to_unlazy (546 samples, 0.04%)</title><rect x="15.6407%" y="565" width="0.0355%" height="15" fill="rgb(207,104,49)" fg:x="240686" fg:w="546"/><text x="15.8907%" y="575.50"></text></g><g><title>btrfs_permission (161 samples, 0.01%)</title><rect x="16.1607%" y="549" width="0.0105%" height="15" fill="rgb(248,211,50)" fg:x="248688" fg:w="161"/><text x="16.4107%" y="559.50"></text></g><g><title>inode_permission.part.0 (4,296 samples, 0.28%)</title><rect x="15.9580%" y="565" width="0.2792%" height="15" fill="rgb(217,13,45)" fg:x="245569" fg:w="4296"/><text x="16.2080%" y="575.50"></text></g><g><title>generic_permission (1,016 samples, 0.07%)</title><rect x="16.1711%" y="549" width="0.0660%" height="15" fill="rgb(211,216,49)" fg:x="248849" fg:w="1016"/><text x="16.4211%" y="559.50"></text></g><g><title>security_inode_permission (477 samples, 0.03%)</title><rect x="16.2372%" y="565" width="0.0310%" height="15" fill="rgb(221,58,53)" fg:x="249865" fg:w="477"/><text x="16.4872%" y="575.50"></text></g><g><title>__d_lookup_rcu (5,855 samples, 0.38%)</title><rect x="16.4641%" y="533" width="0.3805%" height="15" fill="rgb(220,112,41)" fg:x="253357" fg:w="5855"/><text x="16.7141%" y="543.50"></text></g><g><title>lookup_fast (7,253 samples, 0.47%)</title><rect x="16.3735%" y="549" width="0.4713%" height="15" fill="rgb(236,38,28)" fg:x="251963" fg:w="7253"/><text x="16.6235%" y="559.50"></text></g><g><title>page_put_link (240 samples, 0.02%)</title><rect x="16.8448%" y="549" width="0.0156%" height="15" fill="rgb(227,195,22)" fg:x="259216" fg:w="240"/><text x="17.0948%" y="559.50"></text></g><g><title>__lookup_mnt (220 samples, 0.01%)</title><rect x="16.9839%" y="533" width="0.0143%" height="15" fill="rgb(214,55,33)" fg:x="261357" fg:w="220"/><text x="17.2339%" y="543.50"></text></g><g><title>atime_needs_update (265 samples, 0.02%)</title><rect x="16.9988%" y="533" width="0.0172%" height="15" fill="rgb(248,80,13)" fg:x="261585" fg:w="265"/><text x="17.2488%" y="543.50"></text></g><g><title>current_time (154 samples, 0.01%)</title><rect x="17.0060%" y="517" width="0.0100%" height="15" fill="rgb(238,52,6)" fg:x="261696" fg:w="154"/><text x="17.2560%" y="527.50"></text></g><g><title>page_get_link (1,243 samples, 0.08%)</title><rect x="17.0206%" y="533" width="0.0808%" height="15" fill="rgb(224,198,47)" fg:x="261921" fg:w="1243"/><text x="17.2706%" y="543.50"></text></g><g><title>pagecache_get_page (1,158 samples, 0.08%)</title><rect x="17.0261%" y="517" width="0.0753%" height="15" fill="rgb(233,171,20)" fg:x="262006" fg:w="1158"/><text x="17.2761%" y="527.50"></text></g><g><title>find_get_entry (1,036 samples, 0.07%)</title><rect x="17.0341%" y="501" width="0.0673%" height="15" fill="rgb(241,30,25)" fg:x="262128" fg:w="1036"/><text x="17.2841%" y="511.50"></text></g><g><title>xas_load (278 samples, 0.02%)</title><rect x="17.0833%" y="485" width="0.0181%" height="15" fill="rgb(207,171,38)" fg:x="262886" fg:w="278"/><text x="17.3333%" y="495.50"></text></g><g><title>xas_start (254 samples, 0.02%)</title><rect x="17.0849%" y="469" width="0.0165%" height="15" fill="rgb(234,70,1)" fg:x="262910" fg:w="254"/><text x="17.3349%" y="479.50"></text></g><g><title>link_path_walk.part.0 (21,981 samples, 1.43%)</title><rect x="15.6762%" y="581" width="1.4284%" height="15" fill="rgb(232,178,18)" fg:x="241232" fg:w="21981"/><text x="15.9262%" y="591.50"></text></g><g><title>walk_component (12,871 samples, 0.84%)</title><rect x="16.2682%" y="565" width="0.8364%" height="15" fill="rgb(241,78,40)" fg:x="250342" fg:w="12871"/><text x="16.5182%" y="575.50"></text></g><g><title>step_into (3,757 samples, 0.24%)</title><rect x="16.8604%" y="549" width="0.2441%" height="15" fill="rgb(222,35,25)" fg:x="259456" fg:w="3757"/><text x="17.1104%" y="559.50"></text></g><g><title>path_init (627 samples, 0.04%)</title><rect x="17.1046%" y="581" width="0.0407%" height="15" fill="rgb(207,92,16)" fg:x="263213" fg:w="627"/><text x="17.3546%" y="591.50"></text></g><g><title>nd_jump_root (381 samples, 0.02%)</title><rect x="17.1205%" y="565" width="0.0248%" height="15" fill="rgb(216,59,51)" fg:x="263459" fg:w="381"/><text x="17.3705%" y="575.50"></text></g><g><title>set_root (302 samples, 0.02%)</title><rect x="17.1257%" y="549" width="0.0196%" height="15" fill="rgb(213,80,28)" fg:x="263538" fg:w="302"/><text x="17.3757%" y="559.50"></text></g><g><title>lookup_fast (406 samples, 0.03%)</title><rect x="17.1586%" y="565" width="0.0264%" height="15" fill="rgb(220,93,7)" fg:x="264044" fg:w="406"/><text x="17.4086%" y="575.50"></text></g><g><title>__d_lookup_rcu (348 samples, 0.02%)</title><rect x="17.1623%" y="549" width="0.0226%" height="15" fill="rgb(225,24,44)" fg:x="264102" fg:w="348"/><text x="17.4123%" y="559.50"></text></g><g><title>path_lookupat (24,036 samples, 1.56%)</title><rect x="15.6268%" y="597" width="1.5619%" height="15" fill="rgb(243,74,40)" fg:x="240472" fg:w="24036"/><text x="15.8768%" y="607.50"></text></g><g><title>walk_component (515 samples, 0.03%)</title><rect x="17.1552%" y="581" width="0.0335%" height="15" fill="rgb(228,39,7)" fg:x="263993" fg:w="515"/><text x="17.4052%" y="591.50"></text></g><g><title>filename_lookup (24,745 samples, 1.61%)</title><rect x="15.5832%" y="613" width="1.6080%" height="15" fill="rgb(227,79,8)" fg:x="239802" fg:w="24745"/><text x="15.8332%" y="623.50"></text></g><g><title>getname_flags (259 samples, 0.02%)</title><rect x="17.1912%" y="613" width="0.0168%" height="15" fill="rgb(236,58,11)" fg:x="264547" fg:w="259"/><text x="17.4412%" y="623.50"></text></g><g><title>memset_erms (2,047 samples, 0.13%)</title><rect x="17.2675%" y="581" width="0.1330%" height="15" fill="rgb(249,63,35)" fg:x="265720" fg:w="2047"/><text x="17.5175%" y="591.50"></text></g><g><title>_cond_resched (170 samples, 0.01%)</title><rect x="17.4149%" y="565" width="0.0110%" height="15" fill="rgb(252,114,16)" fg:x="267988" fg:w="170"/><text x="17.6649%" y="575.50"></text></g><g><title>kmem_cache_alloc (3,107 samples, 0.20%)</title><rect x="17.2254%" y="597" width="0.2019%" height="15" fill="rgb(254,151,24)" fg:x="265072" fg:w="3107"/><text x="17.4754%" y="607.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (412 samples, 0.03%)</title><rect x="17.4005%" y="581" width="0.0268%" height="15" fill="rgb(253,54,39)" fg:x="267767" fg:w="412"/><text x="17.6505%" y="591.50"></text></g><g><title>__check_heap_object (260 samples, 0.02%)</title><rect x="17.5550%" y="565" width="0.0169%" height="15" fill="rgb(243,25,45)" fg:x="270145" fg:w="260"/><text x="17.8050%" y="575.50"></text></g><g><title>__virt_addr_valid (564 samples, 0.04%)</title><rect x="17.5719%" y="565" width="0.0367%" height="15" fill="rgb(234,134,9)" fg:x="270405" fg:w="564"/><text x="17.8219%" y="575.50"></text></g><g><title>__check_object_size (1,163 samples, 0.08%)</title><rect x="17.5380%" y="581" width="0.0756%" height="15" fill="rgb(227,166,31)" fg:x="269883" fg:w="1163"/><text x="17.7880%" y="591.50"></text></g><g><title>getname_flags.part.0 (6,245 samples, 0.41%)</title><rect x="17.2081%" y="613" width="0.4058%" height="15" fill="rgb(245,143,41)" fg:x="264806" fg:w="6245"/><text x="17.4581%" y="623.50"></text></g><g><title>strncpy_from_user (2,872 samples, 0.19%)</title><rect x="17.4273%" y="597" width="0.1866%" height="15" fill="rgb(238,181,32)" fg:x="268179" fg:w="2872"/><text x="17.6773%" y="607.50"></text></g><g><title>btrfs_permission (247 samples, 0.02%)</title><rect x="17.6410%" y="581" width="0.0161%" height="15" fill="rgb(224,113,18)" fg:x="271468" fg:w="247"/><text x="17.8910%" y="591.50"></text></g><g><title>inode_permission.part.0 (409 samples, 0.03%)</title><rect x="17.6328%" y="597" width="0.0266%" height="15" fill="rgb(240,229,28)" fg:x="271342" fg:w="409"/><text x="17.8828%" y="607.50"></text></g><g><title>may_linkat (716 samples, 0.05%)</title><rect x="17.6139%" y="613" width="0.0465%" height="15" fill="rgb(250,185,3)" fg:x="271051" fg:w="716"/><text x="17.8639%" y="623.50"></text></g><g><title>mnt_drop_write (224 samples, 0.01%)</title><rect x="17.6604%" y="613" width="0.0146%" height="15" fill="rgb(212,59,25)" fg:x="271767" fg:w="224"/><text x="17.9104%" y="623.50"></text></g><g><title>mntput_no_expire (170 samples, 0.01%)</title><rect x="17.6777%" y="613" width="0.0110%" height="15" fill="rgb(221,87,20)" fg:x="272033" fg:w="170"/><text x="17.9277%" y="623.50"></text></g><g><title>apparmor_path_link (413 samples, 0.03%)</title><rect x="17.7001%" y="597" width="0.0268%" height="15" fill="rgb(213,74,28)" fg:x="272378" fg:w="413"/><text x="17.9501%" y="607.50"></text></g><g><title>security_path_link (1,276 samples, 0.08%)</title><rect x="17.6888%" y="613" width="0.0829%" height="15" fill="rgb(224,132,34)" fg:x="272203" fg:w="1276"/><text x="17.9388%" y="623.50"></text></g><g><title>tomoyo_path_link (687 samples, 0.04%)</title><rect x="17.7270%" y="597" width="0.0446%" height="15" fill="rgb(222,101,24)" fg:x="272792" fg:w="687"/><text x="17.9770%" y="607.50"></text></g><g><title>tomoyo_path2_perm (634 samples, 0.04%)</title><rect x="17.7305%" y="581" width="0.0412%" height="15" fill="rgb(254,142,4)" fg:x="272845" fg:w="634"/><text x="17.9805%" y="591.50"></text></g><g><title>tomoyo_init_request_info (391 samples, 0.03%)</title><rect x="17.7463%" y="565" width="0.0254%" height="15" fill="rgb(230,229,49)" fg:x="273088" fg:w="391"/><text x="17.9963%" y="575.50"></text></g><g><title>tomoyo_domain (229 samples, 0.01%)</title><rect x="17.7568%" y="549" width="0.0149%" height="15" fill="rgb(238,70,47)" fg:x="273250" fg:w="229"/><text x="18.0068%" y="559.50"></text></g><g><title>up_write (158 samples, 0.01%)</title><rect x="17.7717%" y="613" width="0.0103%" height="15" fill="rgb(231,160,17)" fg:x="273479" fg:w="158"/><text x="18.0217%" y="623.50"></text></g><g><title>btrfs_create_pending_block_groups (238 samples, 0.02%)</title><rect x="17.9479%" y="565" width="0.0155%" height="15" fill="rgb(218,68,53)" fg:x="276191" fg:w="238"/><text x="18.1979%" y="575.50"></text></g><g><title>_raw_spin_lock (935 samples, 0.06%)</title><rect x="18.0133%" y="533" width="0.0608%" height="15" fill="rgb(236,111,10)" fg:x="277197" fg:w="935"/><text x="18.2633%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (271 samples, 0.02%)</title><rect x="18.0564%" y="517" width="0.0176%" height="15" fill="rgb(224,34,41)" fg:x="277861" fg:w="271"/><text x="18.3064%" y="527.50"></text></g><g><title>btrfs_trans_release_metadata (1,637 samples, 0.11%)</title><rect x="17.9788%" y="565" width="0.1064%" height="15" fill="rgb(241,118,19)" fg:x="276666" fg:w="1637"/><text x="18.2288%" y="575.50"></text></g><g><title>btrfs_block_rsv_release (1,433 samples, 0.09%)</title><rect x="17.9920%" y="549" width="0.0931%" height="15" fill="rgb(238,129,25)" fg:x="276870" fg:w="1433"/><text x="18.2420%" y="559.50"></text></g><g><title>__btrfs_end_transaction (3,593 samples, 0.23%)</title><rect x="17.8861%" y="581" width="0.2335%" height="15" fill="rgb(238,22,31)" fg:x="275239" fg:w="3593"/><text x="18.1361%" y="591.50"></text></g><g><title>kmem_cache_free (529 samples, 0.03%)</title><rect x="18.0852%" y="565" width="0.0344%" height="15" fill="rgb(222,174,48)" fg:x="278303" fg:w="529"/><text x="18.3352%" y="575.50"></text></g><g><title>__radix_tree_lookup (256 samples, 0.02%)</title><rect x="18.1492%" y="565" width="0.0166%" height="15" fill="rgb(206,152,40)" fg:x="279289" fg:w="256"/><text x="18.3992%" y="575.50"></text></g><g><title>balance_dirty_pages_ratelimited (715 samples, 0.05%)</title><rect x="18.1198%" y="581" width="0.0465%" height="15" fill="rgb(218,99,54)" fg:x="278836" fg:w="715"/><text x="18.3698%" y="591.50"></text></g><g><title>btrfs_comp_cpu_keys (492 samples, 0.03%)</title><rect x="18.3112%" y="517" width="0.0320%" height="15" fill="rgb(220,174,26)" fg:x="281781" fg:w="492"/><text x="18.5612%" y="527.50"></text></g><g><title>__btrfs_add_delayed_item (1,551 samples, 0.10%)</title><rect x="18.2602%" y="533" width="0.1008%" height="15" fill="rgb(245,116,9)" fg:x="280996" fg:w="1551"/><text x="18.5102%" y="543.50"></text></g><g><title>rb_insert_color (274 samples, 0.02%)</title><rect x="18.3431%" y="517" width="0.0178%" height="15" fill="rgb(209,72,35)" fg:x="282273" fg:w="274"/><text x="18.5931%" y="527.50"></text></g><g><title>__list_add_valid (339 samples, 0.02%)</title><rect x="18.3769%" y="517" width="0.0220%" height="15" fill="rgb(226,126,21)" fg:x="282793" fg:w="339"/><text x="18.6269%" y="527.50"></text></g><g><title>__list_del_entry_valid (155 samples, 0.01%)</title><rect x="18.3990%" y="517" width="0.0101%" height="15" fill="rgb(227,192,1)" fg:x="283132" fg:w="155"/><text x="18.6490%" y="527.50"></text></g><g><title>_raw_spin_lock (265 samples, 0.02%)</title><rect x="18.4103%" y="517" width="0.0172%" height="15" fill="rgb(237,180,29)" fg:x="283306" fg:w="265"/><text x="18.6603%" y="527.50"></text></g><g><title>mutex_lock (154 samples, 0.01%)</title><rect x="18.4276%" y="517" width="0.0100%" height="15" fill="rgb(230,197,35)" fg:x="283572" fg:w="154"/><text x="18.6776%" y="527.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,645 samples, 0.11%)</title><rect x="18.3610%" y="533" width="0.1069%" height="15" fill="rgb(246,193,31)" fg:x="282547" fg:w="1645"/><text x="18.6110%" y="543.50"></text></g><g><title>mutex_unlock (466 samples, 0.03%)</title><rect x="18.4376%" y="517" width="0.0303%" height="15" fill="rgb(241,36,4)" fg:x="283726" fg:w="466"/><text x="18.6876%" y="527.50"></text></g><g><title>__slab_alloc (216 samples, 0.01%)</title><rect x="18.4981%" y="517" width="0.0140%" height="15" fill="rgb(241,130,17)" fg:x="284658" fg:w="216"/><text x="18.7481%" y="527.50"></text></g><g><title>___slab_alloc (187 samples, 0.01%)</title><rect x="18.5000%" y="501" width="0.0122%" height="15" fill="rgb(206,137,32)" fg:x="284687" fg:w="187"/><text x="18.7500%" y="511.50"></text></g><g><title>kmalloc_slab (154 samples, 0.01%)</title><rect x="18.5122%" y="517" width="0.0100%" height="15" fill="rgb(237,228,51)" fg:x="284875" fg:w="154"/><text x="18.7622%" y="527.50"></text></g><g><title>__schedule (234 samples, 0.02%)</title><rect x="18.5446%" y="485" width="0.0152%" height="15" fill="rgb(243,6,42)" fg:x="285373" fg:w="234"/><text x="18.7946%" y="495.50"></text></g><g><title>_cond_resched (286 samples, 0.02%)</title><rect x="18.5429%" y="501" width="0.0186%" height="15" fill="rgb(251,74,28)" fg:x="285347" fg:w="286"/><text x="18.7929%" y="511.50"></text></g><g><title>__kmalloc (1,450 samples, 0.09%)</title><rect x="18.4679%" y="533" width="0.0942%" height="15" fill="rgb(218,20,49)" fg:x="284192" fg:w="1450"/><text x="18.7179%" y="543.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (437 samples, 0.03%)</title><rect x="18.5337%" y="517" width="0.0284%" height="15" fill="rgb(238,28,14)" fg:x="285205" fg:w="437"/><text x="18.7837%" y="527.50"></text></g><g><title>mutex_spin_on_owner (1,740 samples, 0.11%)</title><rect x="18.5645%" y="517" width="0.1131%" height="15" fill="rgb(229,40,46)" fg:x="285679" fg:w="1740"/><text x="18.8145%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (270 samples, 0.02%)</title><rect x="18.6811%" y="453" width="0.0175%" height="15" fill="rgb(244,195,20)" fg:x="287474" fg:w="270"/><text x="18.9311%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (256 samples, 0.02%)</title><rect x="18.6820%" y="437" width="0.0166%" height="15" fill="rgb(253,56,35)" fg:x="287488" fg:w="256"/><text x="18.9320%" y="447.50"></text></g><g><title>native_write_msr (255 samples, 0.02%)</title><rect x="18.6821%" y="421" width="0.0166%" height="15" fill="rgb(210,149,44)" fg:x="287489" fg:w="255"/><text x="18.9321%" y="431.50"></text></g><g><title>finish_task_switch (288 samples, 0.02%)</title><rect x="18.6807%" y="469" width="0.0187%" height="15" fill="rgb(240,135,12)" fg:x="287468" fg:w="288"/><text x="18.9307%" y="479.50"></text></g><g><title>__mutex_lock.constprop.0 (2,137 samples, 0.14%)</title><rect x="18.5621%" y="533" width="0.1389%" height="15" fill="rgb(251,24,50)" fg:x="285642" fg:w="2137"/><text x="18.8121%" y="543.50"></text></g><g><title>schedule_preempt_disabled (349 samples, 0.02%)</title><rect x="18.6783%" y="517" width="0.0227%" height="15" fill="rgb(243,200,47)" fg:x="287430" fg:w="349"/><text x="18.9283%" y="527.50"></text></g><g><title>schedule (348 samples, 0.02%)</title><rect x="18.6783%" y="501" width="0.0226%" height="15" fill="rgb(224,166,26)" fg:x="287431" fg:w="348"/><text x="18.9283%" y="511.50"></text></g><g><title>__schedule (348 samples, 0.02%)</title><rect x="18.6783%" y="485" width="0.0226%" height="15" fill="rgb(233,0,47)" fg:x="287431" fg:w="348"/><text x="18.9283%" y="495.50"></text></g><g><title>_raw_spin_lock (975 samples, 0.06%)</title><rect x="18.7202%" y="501" width="0.0634%" height="15" fill="rgb(253,80,5)" fg:x="288076" fg:w="975"/><text x="18.9702%" y="511.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,262 samples, 0.08%)</title><rect x="18.7017%" y="533" width="0.0820%" height="15" fill="rgb(214,133,25)" fg:x="287790" fg:w="1262"/><text x="18.9517%" y="543.50"></text></g><g><title>btrfs_block_rsv_migrate (1,103 samples, 0.07%)</title><rect x="18.7120%" y="517" width="0.0717%" height="15" fill="rgb(209,27,14)" fg:x="287949" fg:w="1103"/><text x="18.9620%" y="527.50"></text></g><g><title>btrfs_get_or_create_delayed_node (682 samples, 0.04%)</title><rect x="18.7837%" y="533" width="0.0443%" height="15" fill="rgb(219,102,51)" fg:x="289052" fg:w="682"/><text x="19.0337%" y="543.50"></text></g><g><title>btrfs_get_delayed_node (475 samples, 0.03%)</title><rect x="18.7971%" y="517" width="0.0309%" height="15" fill="rgb(237,18,16)" fg:x="289259" fg:w="475"/><text x="19.0471%" y="527.50"></text></g><g><title>memcpy_erms (214 samples, 0.01%)</title><rect x="18.8281%" y="533" width="0.0139%" height="15" fill="rgb(241,85,17)" fg:x="289735" fg:w="214"/><text x="19.0781%" y="543.50"></text></g><g><title>mutex_lock (183 samples, 0.01%)</title><rect x="18.8420%" y="533" width="0.0119%" height="15" fill="rgb(236,90,42)" fg:x="289949" fg:w="183"/><text x="19.0920%" y="543.50"></text></g><g><title>btrfs_insert_delayed_dir_index (9,518 samples, 0.62%)</title><rect x="18.2424%" y="549" width="0.6185%" height="15" fill="rgb(249,57,21)" fg:x="280723" fg:w="9518"/><text x="18.4924%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (297 samples, 0.02%)</title><rect x="18.8609%" y="549" width="0.0193%" height="15" fill="rgb(243,12,36)" fg:x="290241" fg:w="297"/><text x="19.1109%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (176 samples, 0.01%)</title><rect x="18.8688%" y="533" width="0.0114%" height="15" fill="rgb(253,128,47)" fg:x="290362" fg:w="176"/><text x="19.1188%" y="543.50"></text></g><g><title>_raw_spin_lock (373 samples, 0.02%)</title><rect x="18.9353%" y="517" width="0.0242%" height="15" fill="rgb(207,33,20)" fg:x="291386" fg:w="373"/><text x="19.1853%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (1,043 samples, 0.07%)</title><rect x="18.8921%" y="533" width="0.0678%" height="15" fill="rgb(233,215,35)" fg:x="290720" fg:w="1043"/><text x="19.1421%" y="543.50"></text></g><g><title>btrfs_release_path (1,493 samples, 0.10%)</title><rect x="18.8802%" y="549" width="0.0970%" height="15" fill="rgb(249,188,52)" fg:x="290538" fg:w="1493"/><text x="19.1302%" y="559.50"></text></g><g><title>release_extent_buffer (268 samples, 0.02%)</title><rect x="18.9598%" y="533" width="0.0174%" height="15" fill="rgb(225,12,32)" fg:x="291763" fg:w="268"/><text x="19.2098%" y="543.50"></text></g><g><title>btrfs_set_16 (276 samples, 0.02%)</title><rect x="18.9773%" y="549" width="0.0179%" height="15" fill="rgb(247,98,14)" fg:x="292031" fg:w="276"/><text x="19.2273%" y="559.50"></text></g><g><title>crc32c (530 samples, 0.03%)</title><rect x="19.0056%" y="549" width="0.0344%" height="15" fill="rgb(247,219,48)" fg:x="292467" fg:w="530"/><text x="19.2556%" y="559.50"></text></g><g><title>crypto_shash_update (295 samples, 0.02%)</title><rect x="19.0209%" y="533" width="0.0192%" height="15" fill="rgb(253,60,48)" fg:x="292702" fg:w="295"/><text x="19.2709%" y="543.50"></text></g><g><title>btrfs_get_32 (284 samples, 0.02%)</title><rect x="19.0541%" y="533" width="0.0185%" height="15" fill="rgb(245,15,52)" fg:x="293214" fg:w="284"/><text x="19.3041%" y="543.50"></text></g><g><title>_raw_read_lock (240 samples, 0.02%)</title><rect x="19.1698%" y="469" width="0.0156%" height="15" fill="rgb(220,133,28)" fg:x="294994" fg:w="240"/><text x="19.4198%" y="479.50"></text></g><g><title>finish_wait (345 samples, 0.02%)</title><rect x="19.1859%" y="469" width="0.0224%" height="15" fill="rgb(217,180,4)" fg:x="295242" fg:w="345"/><text x="19.4359%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (331 samples, 0.02%)</title><rect x="19.1868%" y="453" width="0.0215%" height="15" fill="rgb(251,24,1)" fg:x="295256" fg:w="331"/><text x="19.4368%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (314 samples, 0.02%)</title><rect x="19.1879%" y="437" width="0.0204%" height="15" fill="rgb(212,185,49)" fg:x="295273" fg:w="314"/><text x="19.4379%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (921 samples, 0.06%)</title><rect x="19.2150%" y="453" width="0.0599%" height="15" fill="rgb(215,175,22)" fg:x="295689" fg:w="921"/><text x="19.4650%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (842 samples, 0.05%)</title><rect x="19.2201%" y="437" width="0.0547%" height="15" fill="rgb(250,205,14)" fg:x="295768" fg:w="842"/><text x="19.4701%" y="447.50"></text></g><g><title>prepare_to_wait_event (1,050 samples, 0.07%)</title><rect x="19.2085%" y="469" width="0.0682%" height="15" fill="rgb(225,211,22)" fg:x="295589" fg:w="1050"/><text x="19.4585%" y="479.50"></text></g><g><title>queued_read_lock_slowpath (2,238 samples, 0.15%)</title><rect x="19.2767%" y="469" width="0.1454%" height="15" fill="rgb(251,179,42)" fg:x="296639" fg:w="2238"/><text x="19.5267%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,451 samples, 0.09%)</title><rect x="19.3278%" y="453" width="0.0943%" height="15" fill="rgb(208,216,51)" fg:x="297426" fg:w="1451"/><text x="19.5778%" y="463.50"></text></g><g><title>dequeue_entity (284 samples, 0.02%)</title><rect x="19.4342%" y="421" width="0.0185%" height="15" fill="rgb(235,36,11)" fg:x="299063" fg:w="284"/><text x="19.6842%" y="431.50"></text></g><g><title>dequeue_task_fair (336 samples, 0.02%)</title><rect x="19.4319%" y="437" width="0.0218%" height="15" fill="rgb(213,189,28)" fg:x="299027" fg:w="336"/><text x="19.6819%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (1,585 samples, 0.10%)</title><rect x="19.4580%" y="421" width="0.1030%" height="15" fill="rgb(227,203,42)" fg:x="299429" fg:w="1585"/><text x="19.7080%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,562 samples, 0.10%)</title><rect x="19.4595%" y="405" width="0.1015%" height="15" fill="rgb(244,72,36)" fg:x="299452" fg:w="1562"/><text x="19.7095%" y="415.50"></text></g><g><title>native_write_msr (1,541 samples, 0.10%)</title><rect x="19.4609%" y="389" width="0.1001%" height="15" fill="rgb(213,53,17)" fg:x="299473" fg:w="1541"/><text x="19.7109%" y="399.50"></text></g><g><title>finish_task_switch (1,734 samples, 0.11%)</title><rect x="19.4537%" y="437" width="0.1127%" height="15" fill="rgb(207,167,3)" fg:x="299363" fg:w="1734"/><text x="19.7037%" y="447.50"></text></g><g><title>psi_task_change (223 samples, 0.01%)</title><rect x="19.5756%" y="437" width="0.0145%" height="15" fill="rgb(216,98,30)" fg:x="301238" fg:w="223"/><text x="19.8256%" y="447.50"></text></g><g><title>psi_group_change (167 samples, 0.01%)</title><rect x="19.5792%" y="421" width="0.0109%" height="15" fill="rgb(236,123,15)" fg:x="301294" fg:w="167"/><text x="19.8292%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (6,723 samples, 0.44%)</title><rect x="19.1576%" y="485" width="0.4369%" height="15" fill="rgb(248,81,50)" fg:x="294806" fg:w="6723"/><text x="19.4076%" y="495.50"></text></g><g><title>schedule (2,652 samples, 0.17%)</title><rect x="19.4221%" y="469" width="0.1723%" height="15" fill="rgb(214,120,4)" fg:x="298877" fg:w="2652"/><text x="19.6721%" y="479.50"></text></g><g><title>__schedule (2,632 samples, 0.17%)</title><rect x="19.4234%" y="453" width="0.1710%" height="15" fill="rgb(208,179,34)" fg:x="298897" fg:w="2632"/><text x="19.6734%" y="463.50"></text></g><g><title>__btrfs_read_lock_root_node (7,192 samples, 0.47%)</title><rect x="19.1545%" y="501" width="0.4674%" height="15" fill="rgb(227,140,7)" fg:x="294758" fg:w="7192"/><text x="19.4045%" y="511.50"></text></g><g><title>btrfs_root_node (420 samples, 0.03%)</title><rect x="19.5945%" y="485" width="0.0273%" height="15" fill="rgb(214,22,6)" fg:x="301530" fg:w="420"/><text x="19.8445%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (438 samples, 0.03%)</title><rect x="19.6460%" y="469" width="0.0285%" height="15" fill="rgb(207,137,27)" fg:x="302322" fg:w="438"/><text x="19.8960%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (336 samples, 0.02%)</title><rect x="19.6526%" y="453" width="0.0218%" height="15" fill="rgb(210,8,46)" fg:x="302424" fg:w="336"/><text x="19.9026%" y="463.50"></text></g><g><title>prepare_to_wait_event (563 samples, 0.04%)</title><rect x="19.6395%" y="485" width="0.0366%" height="15" fill="rgb(240,16,54)" fg:x="302222" fg:w="563"/><text x="19.8895%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (409 samples, 0.03%)</title><rect x="19.6761%" y="485" width="0.0266%" height="15" fill="rgb(211,209,29)" fg:x="302785" fg:w="409"/><text x="19.9261%" y="495.50"></text></g><g><title>dequeue_entity (402 samples, 0.03%)</title><rect x="19.7224%" y="437" width="0.0261%" height="15" fill="rgb(226,228,24)" fg:x="303498" fg:w="402"/><text x="19.9724%" y="447.50"></text></g><g><title>dequeue_task_fair (489 samples, 0.03%)</title><rect x="19.7189%" y="453" width="0.0318%" height="15" fill="rgb(222,84,9)" fg:x="303443" fg:w="489"/><text x="19.9689%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (4,840 samples, 0.31%)</title><rect x="19.7590%" y="437" width="0.3145%" height="15" fill="rgb(234,203,30)" fg:x="304061" fg:w="4840"/><text x="20.0090%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,761 samples, 0.31%)</title><rect x="19.7641%" y="421" width="0.3094%" height="15" fill="rgb(238,109,14)" fg:x="304140" fg:w="4761"/><text x="20.0141%" y="431.50"></text></g><g><title>native_write_msr (4,721 samples, 0.31%)</title><rect x="19.7667%" y="405" width="0.3068%" height="15" fill="rgb(233,206,34)" fg:x="304180" fg:w="4721"/><text x="20.0167%" y="415.50"></text></g><g><title>finish_task_switch (5,169 samples, 0.34%)</title><rect x="19.7506%" y="453" width="0.3359%" height="15" fill="rgb(220,167,47)" fg:x="303932" fg:w="5169"/><text x="20.0006%" y="463.50"></text></g><g><title>psi_task_change (343 samples, 0.02%)</title><rect x="20.0999%" y="453" width="0.0223%" height="15" fill="rgb(238,105,10)" fg:x="309306" fg:w="343"/><text x="20.3499%" y="463.50"></text></g><g><title>psi_group_change (254 samples, 0.02%)</title><rect x="20.1056%" y="437" width="0.0165%" height="15" fill="rgb(213,227,17)" fg:x="309395" fg:w="254"/><text x="20.3556%" y="447.50"></text></g><g><title>__btrfs_tree_lock (7,807 samples, 0.51%)</title><rect x="19.6218%" y="501" width="0.5073%" height="15" fill="rgb(217,132,38)" fg:x="301950" fg:w="7807"/><text x="19.8718%" y="511.50"></text></g><g><title>schedule (6,563 samples, 0.43%)</title><rect x="19.7027%" y="485" width="0.4265%" height="15" fill="rgb(242,146,4)" fg:x="303194" fg:w="6563"/><text x="19.9527%" y="495.50"></text></g><g><title>__schedule (6,532 samples, 0.42%)</title><rect x="19.7047%" y="469" width="0.4245%" height="15" fill="rgb(212,61,9)" fg:x="303225" fg:w="6532"/><text x="19.9547%" y="479.50"></text></g><g><title>btrfs_leaf_free_space (587 samples, 0.04%)</title><rect x="20.1392%" y="501" width="0.0381%" height="15" fill="rgb(247,126,22)" fg:x="309911" fg:w="587"/><text x="20.3892%" y="511.50"></text></g><g><title>leaf_space_used (503 samples, 0.03%)</title><rect x="20.1446%" y="485" width="0.0327%" height="15" fill="rgb(220,196,2)" fg:x="309995" fg:w="503"/><text x="20.3946%" y="495.50"></text></g><g><title>btrfs_get_32 (407 samples, 0.03%)</title><rect x="20.1509%" y="469" width="0.0264%" height="15" fill="rgb(208,46,4)" fg:x="310091" fg:w="407"/><text x="20.4009%" y="479.50"></text></g><g><title>_raw_write_lock (287 samples, 0.02%)</title><rect x="20.1918%" y="485" width="0.0187%" height="15" fill="rgb(252,104,46)" fg:x="310721" fg:w="287"/><text x="20.4418%" y="495.50"></text></g><g><title>btrfs_try_tree_write_lock (2,074 samples, 0.13%)</title><rect x="20.1864%" y="501" width="0.1348%" height="15" fill="rgb(237,152,48)" fg:x="310638" fg:w="2074"/><text x="20.4364%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (1,703 samples, 0.11%)</title><rect x="20.2105%" y="485" width="0.1107%" height="15" fill="rgb(221,59,37)" fg:x="311009" fg:w="1703"/><text x="20.4605%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (313 samples, 0.02%)</title><rect x="20.3008%" y="469" width="0.0203%" height="15" fill="rgb(209,202,51)" fg:x="312399" fg:w="313"/><text x="20.5508%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (2,974 samples, 0.19%)</title><rect x="20.3212%" y="501" width="0.1933%" height="15" fill="rgb(228,81,30)" fg:x="312712" fg:w="2974"/><text x="20.5712%" y="511.50"></text></g><g><title>btrfs_buffer_uptodate (371 samples, 0.02%)</title><rect x="20.5379%" y="485" width="0.0241%" height="15" fill="rgb(227,42,39)" fg:x="316047" fg:w="371"/><text x="20.7879%" y="495.50"></text></g><g><title>verify_parent_transid (311 samples, 0.02%)</title><rect x="20.5418%" y="469" width="0.0202%" height="15" fill="rgb(221,26,2)" fg:x="316107" fg:w="311"/><text x="20.7918%" y="479.50"></text></g><g><title>btrfs_get_64 (462 samples, 0.03%)</title><rect x="20.5620%" y="485" width="0.0300%" height="15" fill="rgb(254,61,31)" fg:x="316418" fg:w="462"/><text x="20.8120%" y="495.50"></text></g><g><title>__radix_tree_lookup (1,440 samples, 0.09%)</title><rect x="20.6609%" y="469" width="0.0936%" height="15" fill="rgb(222,173,38)" fg:x="317939" fg:w="1440"/><text x="20.9109%" y="479.50"></text></g><g><title>mark_page_accessed (550 samples, 0.04%)</title><rect x="20.7691%" y="453" width="0.0357%" height="15" fill="rgb(218,50,12)" fg:x="319605" fg:w="550"/><text x="21.0191%" y="463.50"></text></g><g><title>mark_extent_buffer_accessed (774 samples, 0.05%)</title><rect x="20.7546%" y="469" width="0.0503%" height="15" fill="rgb(223,88,40)" fg:x="319382" fg:w="774"/><text x="21.0046%" y="479.50"></text></g><g><title>find_extent_buffer (3,150 samples, 0.20%)</title><rect x="20.6015%" y="485" width="0.2047%" height="15" fill="rgb(237,54,19)" fg:x="317025" fg:w="3150"/><text x="20.8515%" y="495.50"></text></g><g><title>read_block_for_search.isra.0 (4,924 samples, 0.32%)</title><rect x="20.5145%" y="501" width="0.3200%" height="15" fill="rgb(251,129,25)" fg:x="315686" fg:w="4924"/><text x="20.7645%" y="511.50"></text></g><g><title>read_extent_buffer (435 samples, 0.03%)</title><rect x="20.8062%" y="485" width="0.0283%" height="15" fill="rgb(238,97,19)" fg:x="320175" fg:w="435"/><text x="21.0562%" y="495.50"></text></g><g><title>alloc_tree_block_no_bg_flush (489 samples, 0.03%)</title><rect x="20.8371%" y="485" width="0.0318%" height="15" fill="rgb(240,169,18)" fg:x="320651" fg:w="489"/><text x="21.0871%" y="495.50"></text></g><g><title>btrfs_alloc_tree_block (485 samples, 0.03%)</title><rect x="20.8374%" y="469" width="0.0315%" height="15" fill="rgb(230,187,49)" fg:x="320655" fg:w="485"/><text x="21.0874%" y="479.50"></text></g><g><title>copy_for_split (274 samples, 0.02%)</title><rect x="20.8717%" y="485" width="0.0178%" height="15" fill="rgb(209,44,26)" fg:x="321183" fg:w="274"/><text x="21.1217%" y="495.50"></text></g><g><title>btrfs_get_token_32 (334 samples, 0.02%)</title><rect x="20.9055%" y="453" width="0.0217%" height="15" fill="rgb(244,0,6)" fg:x="321704" fg:w="334"/><text x="21.1555%" y="463.50"></text></g><g><title>btrfs_set_token_32 (310 samples, 0.02%)</title><rect x="20.9287%" y="453" width="0.0201%" height="15" fill="rgb(248,18,21)" fg:x="322061" fg:w="310"/><text x="21.1787%" y="463.50"></text></g><g><title>__push_leaf_left (1,136 samples, 0.07%)</title><rect x="20.8929%" y="469" width="0.0738%" height="15" fill="rgb(245,180,19)" fg:x="321509" fg:w="1136"/><text x="21.1429%" y="479.50"></text></g><g><title>push_leaf_left (1,303 samples, 0.08%)</title><rect x="20.8896%" y="485" width="0.0847%" height="15" fill="rgb(252,118,36)" fg:x="321459" fg:w="1303"/><text x="21.1396%" y="495.50"></text></g><g><title>btrfs_get_token_32 (349 samples, 0.02%)</title><rect x="20.9950%" y="453" width="0.0227%" height="15" fill="rgb(210,224,19)" fg:x="323081" fg:w="349"/><text x="21.2450%" y="463.50"></text></g><g><title>btrfs_set_token_32 (370 samples, 0.02%)</title><rect x="21.0200%" y="453" width="0.0240%" height="15" fill="rgb(218,30,24)" fg:x="323466" fg:w="370"/><text x="21.2700%" y="463.50"></text></g><g><title>__push_leaf_right (1,291 samples, 0.08%)</title><rect x="20.9797%" y="469" width="0.0839%" height="15" fill="rgb(219,75,50)" fg:x="322845" fg:w="1291"/><text x="21.2297%" y="479.50"></text></g><g><title>btrfs_read_node_slot (196 samples, 0.01%)</title><rect x="21.0718%" y="469" width="0.0127%" height="15" fill="rgb(234,72,50)" fg:x="324263" fg:w="196"/><text x="21.3218%" y="479.50"></text></g><g><title>read_tree_block (168 samples, 0.01%)</title><rect x="21.0736%" y="453" width="0.0109%" height="15" fill="rgb(219,100,48)" fg:x="324291" fg:w="168"/><text x="21.3236%" y="463.50"></text></g><g><title>push_leaf_right (1,735 samples, 0.11%)</title><rect x="20.9743%" y="485" width="0.1127%" height="15" fill="rgb(253,5,41)" fg:x="322762" fg:w="1735"/><text x="21.2243%" y="495.50"></text></g><g><title>split_leaf (3,889 samples, 0.25%)</title><rect x="20.8344%" y="501" width="0.2527%" height="15" fill="rgb(247,181,11)" fg:x="320610" fg:w="3889"/><text x="21.0844%" y="511.50"></text></g><g><title>select_task_rq_fair (455 samples, 0.03%)</title><rect x="21.1541%" y="421" width="0.0296%" height="15" fill="rgb(222,223,25)" fg:x="325530" fg:w="455"/><text x="21.4041%" y="431.50"></text></g><g><title>enqueue_entity (422 samples, 0.03%)</title><rect x="21.1940%" y="389" width="0.0274%" height="15" fill="rgb(214,198,28)" fg:x="326144" fg:w="422"/><text x="21.4440%" y="399.50"></text></g><g><title>update_load_avg (172 samples, 0.01%)</title><rect x="21.2103%" y="373" width="0.0112%" height="15" fill="rgb(230,46,43)" fg:x="326394" fg:w="172"/><text x="21.4603%" y="383.50"></text></g><g><title>enqueue_task_fair (538 samples, 0.03%)</title><rect x="21.1889%" y="405" width="0.0350%" height="15" fill="rgb(233,65,53)" fg:x="326065" fg:w="538"/><text x="21.4389%" y="415.50"></text></g><g><title>ttwu_do_activate (1,024 samples, 0.07%)</title><rect x="21.1868%" y="421" width="0.0665%" height="15" fill="rgb(221,121,27)" fg:x="326033" fg:w="1024"/><text x="21.4368%" y="431.50"></text></g><g><title>psi_task_change (453 samples, 0.03%)</title><rect x="21.2239%" y="405" width="0.0294%" height="15" fill="rgb(247,70,47)" fg:x="326604" fg:w="453"/><text x="21.4739%" y="415.50"></text></g><g><title>psi_group_change (371 samples, 0.02%)</title><rect x="21.2293%" y="389" width="0.0241%" height="15" fill="rgb(228,85,35)" fg:x="326686" fg:w="371"/><text x="21.4793%" y="399.50"></text></g><g><title>__wake_up_common (2,310 samples, 0.15%)</title><rect x="21.1173%" y="469" width="0.1501%" height="15" fill="rgb(209,50,18)" fg:x="324963" fg:w="2310"/><text x="21.3673%" y="479.50"></text></g><g><title>autoremove_wake_function (2,262 samples, 0.15%)</title><rect x="21.1204%" y="453" width="0.1470%" height="15" fill="rgb(250,19,35)" fg:x="325011" fg:w="2262"/><text x="21.3704%" y="463.50"></text></g><g><title>try_to_wake_up (2,190 samples, 0.14%)</title><rect x="21.1251%" y="437" width="0.1423%" height="15" fill="rgb(253,107,29)" fg:x="325083" fg:w="2190"/><text x="21.3751%" y="447.50"></text></g><g><title>__wake_up_common_lock (2,363 samples, 0.15%)</title><rect x="21.1165%" y="485" width="0.1536%" height="15" fill="rgb(252,179,29)" fg:x="324950" fg:w="2363"/><text x="21.3665%" y="495.50"></text></g><g><title>btrfs_tree_read_unlock (399 samples, 0.03%)</title><rect x="21.2702%" y="485" width="0.0259%" height="15" fill="rgb(238,194,6)" fg:x="327316" fg:w="399"/><text x="21.5202%" y="495.50"></text></g><g><title>btrfs_search_slot (34,267 samples, 2.23%)</title><rect x="19.0797%" y="517" width="2.2268%" height="15" fill="rgb(238,164,29)" fg:x="293608" fg:w="34267"/><text x="19.3297%" y="527.50">b..</text></g><g><title>unlock_up (3,375 samples, 0.22%)</title><rect x="21.0872%" y="501" width="0.2193%" height="15" fill="rgb(224,25,9)" fg:x="324500" fg:w="3375"/><text x="21.3372%" y="511.50"></text></g><g><title>btrfs_get_32 (295 samples, 0.02%)</title><rect x="21.4286%" y="501" width="0.0192%" height="15" fill="rgb(244,153,23)" fg:x="329754" fg:w="295"/><text x="21.6786%" y="511.50"></text></g><g><title>btrfs_get_token_32 (9,737 samples, 0.63%)</title><rect x="21.4478%" y="501" width="0.6327%" height="15" fill="rgb(212,203,14)" fg:x="330049" fg:w="9737"/><text x="21.6978%" y="511.50"></text></g><g><title>check_setget_bounds.isra.0 (1,355 samples, 0.09%)</title><rect x="21.9925%" y="485" width="0.0881%" height="15" fill="rgb(220,164,20)" fg:x="338431" fg:w="1355"/><text x="22.2425%" y="495.50"></text></g><g><title>btrfs_leaf_free_space (725 samples, 0.05%)</title><rect x="22.0806%" y="501" width="0.0471%" height="15" fill="rgb(222,203,48)" fg:x="339786" fg:w="725"/><text x="22.3306%" y="511.50"></text></g><g><title>leaf_space_used (625 samples, 0.04%)</title><rect x="22.0871%" y="485" width="0.0406%" height="15" fill="rgb(215,159,22)" fg:x="339886" fg:w="625"/><text x="22.3371%" y="495.50"></text></g><g><title>btrfs_get_32 (455 samples, 0.03%)</title><rect x="22.0981%" y="469" width="0.0296%" height="15" fill="rgb(216,183,47)" fg:x="340056" fg:w="455"/><text x="22.3481%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (392 samples, 0.03%)</title><rect x="22.1277%" y="501" width="0.0255%" height="15" fill="rgb(229,195,25)" fg:x="340511" fg:w="392"/><text x="22.3777%" y="511.50"></text></g><g><title>set_extent_buffer_dirty (188 samples, 0.01%)</title><rect x="22.1409%" y="485" width="0.0122%" height="15" fill="rgb(224,132,51)" fg:x="340715" fg:w="188"/><text x="22.3909%" y="495.50"></text></g><g><title>check_setget_bounds.isra.0 (1,176 samples, 0.08%)</title><rect x="22.5870%" y="485" width="0.0764%" height="15" fill="rgb(240,63,7)" fg:x="347579" fg:w="1176"/><text x="22.8370%" y="495.50"></text></g><g><title>btrfs_set_token_32 (7,853 samples, 0.51%)</title><rect x="22.1531%" y="501" width="0.5103%" height="15" fill="rgb(249,182,41)" fg:x="340903" fg:w="7853"/><text x="22.4031%" y="511.50"></text></g><g><title>btrfs_unlock_up_safe (260 samples, 0.02%)</title><rect x="22.6635%" y="501" width="0.0169%" height="15" fill="rgb(243,47,26)" fg:x="348756" fg:w="260"/><text x="22.9135%" y="511.50"></text></g><g><title>copy_pages (254 samples, 0.02%)</title><rect x="22.6900%" y="485" width="0.0165%" height="15" fill="rgb(233,48,2)" fg:x="349165" fg:w="254"/><text x="22.9400%" y="495.50"></text></g><g><title>memcpy_extent_buffer (2,494 samples, 0.16%)</title><rect x="22.6807%" y="501" width="0.1621%" height="15" fill="rgb(244,165,34)" fg:x="349021" fg:w="2494"/><text x="22.9307%" y="511.50"></text></g><g><title>memmove (2,096 samples, 0.14%)</title><rect x="22.7065%" y="485" width="0.1362%" height="15" fill="rgb(207,89,7)" fg:x="349419" fg:w="2096"/><text x="22.9565%" y="495.50"></text></g><g><title>copy_pages (257 samples, 0.02%)</title><rect x="22.8622%" y="485" width="0.0167%" height="15" fill="rgb(244,117,36)" fg:x="351815" fg:w="257"/><text x="23.1122%" y="495.50"></text></g><g><title>memmove_extent_buffer (2,425 samples, 0.16%)</title><rect x="22.8428%" y="501" width="0.1576%" height="15" fill="rgb(226,144,34)" fg:x="351515" fg:w="2425"/><text x="23.0928%" y="511.50"></text></g><g><title>memmove (1,868 samples, 0.12%)</title><rect x="22.8789%" y="485" width="0.1214%" height="15" fill="rgb(213,23,19)" fg:x="352072" fg:w="1868"/><text x="23.1289%" y="495.50"></text></g><g><title>insert_with_overflow (61,184 samples, 3.98%)</title><rect x="19.0400%" y="549" width="3.9760%" height="15" fill="rgb(217,75,12)" fg:x="292997" fg:w="61184"/><text x="19.2900%" y="559.50">inse..</text></g><g><title>btrfs_insert_empty_items (60,683 samples, 3.94%)</title><rect x="19.0726%" y="533" width="3.9434%" height="15" fill="rgb(224,159,17)" fg:x="293498" fg:w="60683"/><text x="19.3226%" y="543.50">btrf..</text></g><g><title>setup_items_for_insert (26,306 samples, 1.71%)</title><rect x="21.3065%" y="517" width="1.7095%" height="15" fill="rgb(217,118,1)" fg:x="327875" fg:w="26306"/><text x="21.5565%" y="527.50"></text></g><g><title>write_extent_buffer (241 samples, 0.02%)</title><rect x="23.0003%" y="501" width="0.0157%" height="15" fill="rgb(232,180,48)" fg:x="353940" fg:w="241"/><text x="23.2503%" y="511.50"></text></g><g><title>_cond_resched (198 samples, 0.01%)</title><rect x="23.0468%" y="517" width="0.0129%" height="15" fill="rgb(230,27,33)" fg:x="354655" fg:w="198"/><text x="23.2968%" y="527.50"></text></g><g><title>kmem_cache_alloc (678 samples, 0.04%)</title><rect x="23.0160%" y="549" width="0.0441%" height="15" fill="rgb(205,31,21)" fg:x="354181" fg:w="678"/><text x="23.2660%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (276 samples, 0.02%)</title><rect x="23.0421%" y="533" width="0.0179%" height="15" fill="rgb(253,59,4)" fg:x="354583" fg:w="276"/><text x="23.2921%" y="543.50"></text></g><g><title>kmem_cache_free (446 samples, 0.03%)</title><rect x="23.0601%" y="549" width="0.0290%" height="15" fill="rgb(224,201,9)" fg:x="354859" fg:w="446"/><text x="23.3101%" y="559.50"></text></g><g><title>btrfs_insert_dir_item (75,841 samples, 4.93%)</title><rect x="18.2064%" y="565" width="4.9284%" height="15" fill="rgb(229,206,30)" fg:x="280169" fg:w="75841"/><text x="18.4564%" y="575.50">btrfs_..</text></g><g><title>write_extent_buffer (705 samples, 0.05%)</title><rect x="23.0890%" y="549" width="0.0458%" height="15" fill="rgb(212,67,47)" fg:x="355305" fg:w="705"/><text x="23.3390%" y="559.50"></text></g><g><title>_raw_spin_lock (317 samples, 0.02%)</title><rect x="23.2236%" y="501" width="0.0206%" height="15" fill="rgb(211,96,50)" fg:x="357375" fg:w="317"/><text x="23.4736%" y="511.50"></text></g><g><title>free_extent_buffer.part.0 (1,013 samples, 0.07%)</title><rect x="23.1787%" y="517" width="0.0658%" height="15" fill="rgb(252,114,18)" fg:x="356684" fg:w="1013"/><text x="23.4287%" y="527.50"></text></g><g><title>btrfs_free_path (1,507 samples, 0.10%)</title><rect x="23.1646%" y="549" width="0.0979%" height="15" fill="rgb(223,58,37)" fg:x="356467" fg:w="1507"/><text x="23.4146%" y="559.50"></text></g><g><title>btrfs_release_path (1,488 samples, 0.10%)</title><rect x="23.1658%" y="533" width="0.0967%" height="15" fill="rgb(237,70,4)" fg:x="356486" fg:w="1488"/><text x="23.4158%" y="543.50"></text></g><g><title>release_extent_buffer (276 samples, 0.02%)</title><rect x="23.2445%" y="517" width="0.0179%" height="15" fill="rgb(244,85,46)" fg:x="357698" fg:w="276"/><text x="23.4945%" y="527.50"></text></g><g><title>_raw_read_lock (226 samples, 0.01%)</title><rect x="23.3986%" y="485" width="0.0147%" height="15" fill="rgb(223,39,52)" fg:x="360069" fg:w="226"/><text x="23.6486%" y="495.50"></text></g><g><title>finish_wait (524 samples, 0.03%)</title><rect x="23.4134%" y="485" width="0.0341%" height="15" fill="rgb(218,200,14)" fg:x="360297" fg:w="524"/><text x="23.6634%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (498 samples, 0.03%)</title><rect x="23.4151%" y="469" width="0.0324%" height="15" fill="rgb(208,171,16)" fg:x="360323" fg:w="498"/><text x="23.6651%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (464 samples, 0.03%)</title><rect x="23.4173%" y="453" width="0.0302%" height="15" fill="rgb(234,200,18)" fg:x="360357" fg:w="464"/><text x="23.6673%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (1,437 samples, 0.09%)</title><rect x="23.4581%" y="469" width="0.0934%" height="15" fill="rgb(228,45,11)" fg:x="360984" fg:w="1437"/><text x="23.7081%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,348 samples, 0.09%)</title><rect x="23.4639%" y="453" width="0.0876%" height="15" fill="rgb(237,182,11)" fg:x="361073" fg:w="1348"/><text x="23.7139%" y="463.50"></text></g><g><title>prepare_to_wait_event (1,641 samples, 0.11%)</title><rect x="23.4477%" y="485" width="0.1066%" height="15" fill="rgb(241,175,49)" fg:x="360824" fg:w="1641"/><text x="23.6977%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (2,476 samples, 0.16%)</title><rect x="23.5543%" y="485" width="0.1609%" height="15" fill="rgb(247,38,35)" fg:x="362465" fg:w="2476"/><text x="23.8043%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,619 samples, 0.11%)</title><rect x="23.6100%" y="469" width="0.1052%" height="15" fill="rgb(228,39,49)" fg:x="363322" fg:w="1619"/><text x="23.8600%" y="479.50"></text></g><g><title>dequeue_entity (348 samples, 0.02%)</title><rect x="23.7328%" y="437" width="0.0226%" height="15" fill="rgb(226,101,26)" fg:x="365211" fg:w="348"/><text x="23.9828%" y="447.50"></text></g><g><title>dequeue_task_fair (422 samples, 0.03%)</title><rect x="23.7293%" y="453" width="0.0274%" height="15" fill="rgb(206,141,19)" fg:x="365158" fg:w="422"/><text x="23.9793%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (2,348 samples, 0.15%)</title><rect x="23.7620%" y="437" width="0.1526%" height="15" fill="rgb(211,200,13)" fg:x="365661" fg:w="2348"/><text x="24.0120%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,305 samples, 0.15%)</title><rect x="23.7648%" y="421" width="0.1498%" height="15" fill="rgb(241,121,6)" fg:x="365704" fg:w="2305"/><text x="24.0148%" y="431.50"></text></g><g><title>native_write_msr (2,272 samples, 0.15%)</title><rect x="23.7670%" y="405" width="0.1476%" height="15" fill="rgb(234,221,29)" fg:x="365737" fg:w="2272"/><text x="24.0170%" y="415.50"></text></g><g><title>finish_task_switch (2,505 samples, 0.16%)</title><rect x="23.7567%" y="453" width="0.1628%" height="15" fill="rgb(229,136,5)" fg:x="365580" fg:w="2505"/><text x="24.0067%" y="463.50"></text></g><g><title>psi_task_change (298 samples, 0.02%)</title><rect x="23.9314%" y="453" width="0.0194%" height="15" fill="rgb(238,36,11)" fg:x="368268" fg:w="298"/><text x="24.1814%" y="463.50"></text></g><g><title>psi_group_change (221 samples, 0.01%)</title><rect x="23.9364%" y="437" width="0.0144%" height="15" fill="rgb(251,55,41)" fg:x="368345" fg:w="221"/><text x="24.1864%" y="447.50"></text></g><g><title>__btrfs_tree_read_lock (8,801 samples, 0.57%)</title><rect x="23.3858%" y="501" width="0.5719%" height="15" fill="rgb(242,34,40)" fg:x="359872" fg:w="8801"/><text x="23.6358%" y="511.50"></text></g><g><title>schedule (3,732 samples, 0.24%)</title><rect x="23.7152%" y="485" width="0.2425%" height="15" fill="rgb(215,42,17)" fg:x="364941" fg:w="3732"/><text x="23.9652%" y="495.50"></text></g><g><title>__schedule (3,711 samples, 0.24%)</title><rect x="23.7166%" y="469" width="0.2412%" height="15" fill="rgb(207,44,46)" fg:x="364962" fg:w="3711"/><text x="23.9666%" y="479.50"></text></g><g><title>btrfs_root_node (930 samples, 0.06%)</title><rect x="23.9578%" y="501" width="0.0604%" height="15" fill="rgb(211,206,28)" fg:x="368674" fg:w="930"/><text x="24.2078%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (9,917 samples, 0.64%)</title><rect x="23.3739%" y="517" width="0.6444%" height="15" fill="rgb(237,167,16)" fg:x="359688" fg:w="9917"/><text x="23.6239%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (220 samples, 0.01%)</title><rect x="24.0228%" y="453" width="0.0143%" height="15" fill="rgb(233,66,6)" fg:x="369674" fg:w="220"/><text x="24.2728%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (215 samples, 0.01%)</title><rect x="24.0231%" y="437" width="0.0140%" height="15" fill="rgb(246,123,29)" fg:x="369679" fg:w="215"/><text x="24.2731%" y="447.50"></text></g><g><title>native_write_msr (212 samples, 0.01%)</title><rect x="24.0233%" y="421" width="0.0138%" height="15" fill="rgb(209,62,40)" fg:x="369682" fg:w="212"/><text x="24.2733%" y="431.50"></text></g><g><title>finish_task_switch (239 samples, 0.02%)</title><rect x="24.0219%" y="469" width="0.0155%" height="15" fill="rgb(218,4,25)" fg:x="369661" fg:w="239"/><text x="24.2719%" y="479.50"></text></g><g><title>__btrfs_tree_lock (331 samples, 0.02%)</title><rect x="24.0183%" y="517" width="0.0215%" height="15" fill="rgb(253,91,49)" fg:x="369605" fg:w="331"/><text x="24.2683%" y="527.50"></text></g><g><title>schedule (303 samples, 0.02%)</title><rect x="24.0201%" y="501" width="0.0197%" height="15" fill="rgb(228,155,29)" fg:x="369633" fg:w="303"/><text x="24.2701%" y="511.50"></text></g><g><title>__schedule (302 samples, 0.02%)</title><rect x="24.0202%" y="485" width="0.0196%" height="15" fill="rgb(243,57,37)" fg:x="369634" fg:w="302"/><text x="24.2702%" y="495.50"></text></g><g><title>_raw_spin_lock (169 samples, 0.01%)</title><rect x="24.0783%" y="405" width="0.0110%" height="15" fill="rgb(244,167,17)" fg:x="370528" fg:w="169"/><text x="24.3283%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (160 samples, 0.01%)</title><rect x="24.0789%" y="389" width="0.0104%" height="15" fill="rgb(207,181,38)" fg:x="370537" fg:w="160"/><text x="24.3289%" y="399.50"></text></g><g><title>btrfs_alloc_from_cluster (237 samples, 0.02%)</title><rect x="24.0774%" y="421" width="0.0154%" height="15" fill="rgb(211,8,23)" fg:x="370514" fg:w="237"/><text x="24.3274%" y="431.50"></text></g><g><title>btrfs_reserve_extent (369 samples, 0.02%)</title><rect x="24.0695%" y="453" width="0.0240%" height="15" fill="rgb(235,11,44)" fg:x="370393" fg:w="369"/><text x="24.3195%" y="463.50"></text></g><g><title>find_free_extent (342 samples, 0.02%)</title><rect x="24.0713%" y="437" width="0.0222%" height="15" fill="rgb(248,18,52)" fg:x="370420" fg:w="342"/><text x="24.3213%" y="447.50"></text></g><g><title>alloc_tree_block_no_bg_flush (772 samples, 0.05%)</title><rect x="24.0513%" y="485" width="0.0502%" height="15" fill="rgb(208,4,7)" fg:x="370113" fg:w="772"/><text x="24.3013%" y="495.50"></text></g><g><title>btrfs_alloc_tree_block (771 samples, 0.05%)</title><rect x="24.0514%" y="469" width="0.0501%" height="15" fill="rgb(240,17,39)" fg:x="370114" fg:w="771"/><text x="24.3014%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (175 samples, 0.01%)</title><rect x="24.1075%" y="485" width="0.0114%" height="15" fill="rgb(207,170,3)" fg:x="370978" fg:w="175"/><text x="24.3575%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (166 samples, 0.01%)</title><rect x="24.1081%" y="469" width="0.0108%" height="15" fill="rgb(236,100,52)" fg:x="370987" fg:w="166"/><text x="24.3581%" y="479.50"></text></g><g><title>copy_extent_buffer_full (176 samples, 0.01%)</title><rect x="24.1191%" y="485" width="0.0114%" height="15" fill="rgb(246,78,51)" fg:x="371156" fg:w="176"/><text x="24.3691%" y="495.50"></text></g><g><title>copy_page (171 samples, 0.01%)</title><rect x="24.1194%" y="469" width="0.0111%" height="15" fill="rgb(211,17,15)" fg:x="371161" fg:w="171"/><text x="24.3694%" y="479.50"></text></g><g><title>__btrfs_cow_block (1,362 samples, 0.09%)</title><rect x="24.0500%" y="501" width="0.0885%" height="15" fill="rgb(209,59,46)" fg:x="370093" fg:w="1362"/><text x="24.3000%" y="511.50"></text></g><g><title>btrfs_cow_block (1,368 samples, 0.09%)</title><rect x="24.0498%" y="517" width="0.0889%" height="15" fill="rgb(210,92,25)" fg:x="370090" fg:w="1368"/><text x="24.2998%" y="527.50"></text></g><g><title>btrfs_leaf_free_space (792 samples, 0.05%)</title><rect x="24.1387%" y="517" width="0.0515%" height="15" fill="rgb(238,174,52)" fg:x="371458" fg:w="792"/><text x="24.3887%" y="527.50"></text></g><g><title>leaf_space_used (651 samples, 0.04%)</title><rect x="24.1479%" y="501" width="0.0423%" height="15" fill="rgb(230,73,7)" fg:x="371599" fg:w="651"/><text x="24.3979%" y="511.50"></text></g><g><title>btrfs_get_32 (484 samples, 0.03%)</title><rect x="24.1587%" y="485" width="0.0315%" height="15" fill="rgb(243,124,40)" fg:x="371766" fg:w="484"/><text x="24.4087%" y="495.50"></text></g><g><title>_raw_write_lock (330 samples, 0.02%)</title><rect x="24.2072%" y="501" width="0.0214%" height="15" fill="rgb(244,170,11)" fg:x="372512" fg:w="330"/><text x="24.4572%" y="511.50"></text></g><g><title>btrfs_try_tree_write_lock (1,660 samples, 0.11%)</title><rect x="24.2003%" y="517" width="0.1079%" height="15" fill="rgb(207,114,54)" fg:x="372405" fg:w="1660"/><text x="24.4503%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (1,223 samples, 0.08%)</title><rect x="24.2287%" y="501" width="0.0795%" height="15" fill="rgb(205,42,20)" fg:x="372842" fg:w="1223"/><text x="24.4787%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (3,868 samples, 0.25%)</title><rect x="24.3082%" y="517" width="0.2514%" height="15" fill="rgb(230,30,28)" fg:x="374066" fg:w="3868"/><text x="24.5582%" y="527.50"></text></g><g><title>btrfs_buffer_uptodate (604 samples, 0.04%)</title><rect x="24.5945%" y="501" width="0.0393%" height="15" fill="rgb(205,73,54)" fg:x="378472" fg:w="604"/><text x="24.8445%" y="511.50"></text></g><g><title>verify_parent_transid (534 samples, 0.03%)</title><rect x="24.5991%" y="485" width="0.0347%" height="15" fill="rgb(254,227,23)" fg:x="378542" fg:w="534"/><text x="24.8491%" y="495.50"></text></g><g><title>btrfs_get_64 (522 samples, 0.03%)</title><rect x="24.6338%" y="501" width="0.0339%" height="15" fill="rgb(228,202,34)" fg:x="379076" fg:w="522"/><text x="24.8838%" y="511.50"></text></g><g><title>__radix_tree_lookup (2,036 samples, 0.13%)</title><rect x="24.7520%" y="485" width="0.1323%" height="15" fill="rgb(222,225,37)" fg:x="380895" fg:w="2036"/><text x="25.0020%" y="495.50"></text></g><g><title>mark_page_accessed (975 samples, 0.06%)</title><rect x="24.8988%" y="469" width="0.0634%" height="15" fill="rgb(221,14,54)" fg:x="383155" fg:w="975"/><text x="25.1488%" y="479.50"></text></g><g><title>mark_extent_buffer_accessed (1,193 samples, 0.08%)</title><rect x="24.8847%" y="485" width="0.0775%" height="15" fill="rgb(254,102,2)" fg:x="382938" fg:w="1193"/><text x="25.1347%" y="495.50"></text></g><g><title>find_extent_buffer (4,386 samples, 0.29%)</title><rect x="24.6786%" y="501" width="0.2850%" height="15" fill="rgb(232,104,17)" fg:x="379766" fg:w="4386"/><text x="24.9286%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (6,759 samples, 0.44%)</title><rect x="24.5596%" y="517" width="0.4392%" height="15" fill="rgb(250,220,14)" fg:x="377934" fg:w="6759"/><text x="24.8096%" y="527.50"></text></g><g><title>read_extent_buffer (541 samples, 0.04%)</title><rect x="24.9636%" y="501" width="0.0352%" height="15" fill="rgb(241,158,9)" fg:x="384152" fg:w="541"/><text x="25.2136%" y="511.50"></text></g><g><title>__wake_up_common (166 samples, 0.01%)</title><rect x="25.0468%" y="485" width="0.0108%" height="15" fill="rgb(246,9,43)" fg:x="385432" fg:w="166"/><text x="25.2968%" y="495.50"></text></g><g><title>autoremove_wake_function (160 samples, 0.01%)</title><rect x="25.0472%" y="469" width="0.0104%" height="15" fill="rgb(206,73,33)" fg:x="385438" fg:w="160"/><text x="25.2972%" y="479.50"></text></g><g><title>try_to_wake_up (157 samples, 0.01%)</title><rect x="25.0474%" y="453" width="0.0102%" height="15" fill="rgb(222,79,8)" fg:x="385441" fg:w="157"/><text x="25.2974%" y="463.50"></text></g><g><title>__wake_up_common_lock (168 samples, 0.01%)</title><rect x="25.0467%" y="501" width="0.0109%" height="15" fill="rgb(234,8,54)" fg:x="385431" fg:w="168"/><text x="25.2967%" y="511.50"></text></g><g><title>btrfs_tree_read_unlock (441 samples, 0.03%)</title><rect x="25.0577%" y="501" width="0.0287%" height="15" fill="rgb(209,134,38)" fg:x="385600" fg:w="441"/><text x="25.3077%" y="511.50"></text></g><g><title>btrfs_search_slot (27,818 samples, 1.81%)</title><rect x="23.2869%" y="533" width="1.8077%" height="15" fill="rgb(230,127,29)" fg:x="358350" fg:w="27818"/><text x="23.5369%" y="543.50">b..</text></g><g><title>unlock_up (1,471 samples, 0.10%)</title><rect x="24.9990%" y="517" width="0.0956%" height="15" fill="rgb(242,44,41)" fg:x="384697" fg:w="1471"/><text x="25.2490%" y="527.50"></text></g><g><title>btrfs_get_32 (373 samples, 0.02%)</title><rect x="25.2002%" y="517" width="0.0242%" height="15" fill="rgb(222,56,43)" fg:x="387793" fg:w="373"/><text x="25.4502%" y="527.50"></text></g><g><title>check_setget_bounds.isra.0 (881 samples, 0.06%)</title><rect x="25.5990%" y="501" width="0.0573%" height="15" fill="rgb(238,39,47)" fg:x="393930" fg:w="881"/><text x="25.8490%" y="511.50"></text></g><g><title>btrfs_get_token_32 (6,646 samples, 0.43%)</title><rect x="25.2245%" y="517" width="0.4319%" height="15" fill="rgb(226,79,43)" fg:x="388166" fg:w="6646"/><text x="25.4745%" y="527.50"></text></g><g><title>btrfs_leaf_free_space (781 samples, 0.05%)</title><rect x="25.6564%" y="517" width="0.0508%" height="15" fill="rgb(242,105,53)" fg:x="394812" fg:w="781"/><text x="25.9064%" y="527.50"></text></g><g><title>leaf_space_used (651 samples, 0.04%)</title><rect x="25.6648%" y="501" width="0.0423%" height="15" fill="rgb(251,132,46)" fg:x="394942" fg:w="651"/><text x="25.9148%" y="511.50"></text></g><g><title>btrfs_get_32 (477 samples, 0.03%)</title><rect x="25.6761%" y="485" width="0.0310%" height="15" fill="rgb(231,77,14)" fg:x="395116" fg:w="477"/><text x="25.9261%" y="495.50"></text></g><g><title>btrfs_mark_buffer_dirty (537 samples, 0.03%)</title><rect x="25.7071%" y="517" width="0.0349%" height="15" fill="rgb(240,135,9)" fg:x="395593" fg:w="537"/><text x="25.9571%" y="527.50"></text></g><g><title>set_extent_buffer_dirty (195 samples, 0.01%)</title><rect x="25.7293%" y="501" width="0.0127%" height="15" fill="rgb(248,109,14)" fg:x="395935" fg:w="195"/><text x="25.9793%" y="511.50"></text></g><g><title>btrfs_set_token_32 (5,384 samples, 0.35%)</title><rect x="25.7420%" y="517" width="0.3499%" height="15" fill="rgb(227,146,52)" fg:x="396130" fg:w="5384"/><text x="25.9920%" y="527.50"></text></g><g><title>check_setget_bounds.isra.0 (800 samples, 0.05%)</title><rect x="26.0399%" y="501" width="0.0520%" height="15" fill="rgb(232,54,3)" fg:x="400714" fg:w="800"/><text x="26.2899%" y="511.50"></text></g><g><title>btrfs_unlock_up_safe (224 samples, 0.01%)</title><rect x="26.0919%" y="517" width="0.0146%" height="15" fill="rgb(229,201,43)" fg:x="401514" fg:w="224"/><text x="26.3419%" y="527.50"></text></g><g><title>copy_pages (429 samples, 0.03%)</title><rect x="26.1207%" y="501" width="0.0279%" height="15" fill="rgb(252,161,33)" fg:x="401957" fg:w="429"/><text x="26.3707%" y="511.50"></text></g><g><title>memcpy_extent_buffer (4,388 samples, 0.29%)</title><rect x="26.1064%" y="517" width="0.2851%" height="15" fill="rgb(226,146,40)" fg:x="401738" fg:w="4388"/><text x="26.3564%" y="527.50"></text></g><g><title>memmove (3,740 samples, 0.24%)</title><rect x="26.1485%" y="501" width="0.2430%" height="15" fill="rgb(219,47,25)" fg:x="402386" fg:w="3740"/><text x="26.3985%" y="511.50"></text></g><g><title>copy_pages (188 samples, 0.01%)</title><rect x="26.4094%" y="501" width="0.0122%" height="15" fill="rgb(250,135,13)" fg:x="406401" fg:w="188"/><text x="26.6594%" y="511.50"></text></g><g><title>memmove_extent_buffer (1,790 samples, 0.12%)</title><rect x="26.3916%" y="517" width="0.1163%" height="15" fill="rgb(219,229,18)" fg:x="406126" fg:w="1790"/><text x="26.6416%" y="527.50"></text></g><g><title>memmove (1,327 samples, 0.09%)</title><rect x="26.4217%" y="501" width="0.0862%" height="15" fill="rgb(217,152,27)" fg:x="406589" fg:w="1327"/><text x="26.6717%" y="511.50"></text></g><g><title>btrfs_insert_empty_items (50,171 samples, 3.26%)</title><rect x="23.2709%" y="549" width="3.2603%" height="15" fill="rgb(225,71,47)" fg:x="358104" fg:w="50171"/><text x="23.5209%" y="559.50">btr..</text></g><g><title>setup_items_for_insert (22,107 samples, 1.44%)</title><rect x="25.0946%" y="533" width="1.4366%" height="15" fill="rgb(220,139,14)" fg:x="386168" fg:w="22107"/><text x="25.3446%" y="543.50"></text></g><g><title>write_extent_buffer (359 samples, 0.02%)</title><rect x="26.5079%" y="517" width="0.0233%" height="15" fill="rgb(247,54,32)" fg:x="407916" fg:w="359"/><text x="26.7579%" y="527.50"></text></g><g><title>btrfs_mark_buffer_dirty (320 samples, 0.02%)</title><rect x="26.5312%" y="549" width="0.0208%" height="15" fill="rgb(252,131,39)" fg:x="408275" fg:w="320"/><text x="26.7812%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (184 samples, 0.01%)</title><rect x="26.5401%" y="533" width="0.0120%" height="15" fill="rgb(210,108,39)" fg:x="408411" fg:w="184"/><text x="26.7901%" y="543.50"></text></g><g><title>btrfs_set_16 (251 samples, 0.02%)</title><rect x="26.5520%" y="549" width="0.0163%" height="15" fill="rgb(205,23,29)" fg:x="408595" fg:w="251"/><text x="26.8020%" y="559.50"></text></g><g><title>btrfs_set_64 (239 samples, 0.02%)</title><rect x="26.5683%" y="549" width="0.0155%" height="15" fill="rgb(246,139,46)" fg:x="408846" fg:w="239"/><text x="26.8183%" y="559.50"></text></g><g><title>kmem_cache_alloc (680 samples, 0.04%)</title><rect x="26.5839%" y="549" width="0.0442%" height="15" fill="rgb(250,81,26)" fg:x="409085" fg:w="680"/><text x="26.8339%" y="559.50"></text></g><g><title>kmem_cache_free (399 samples, 0.03%)</title><rect x="26.6281%" y="549" width="0.0259%" height="15" fill="rgb(214,104,7)" fg:x="409765" fg:w="399"/><text x="26.8781%" y="559.50"></text></g><g><title>btrfs_insert_inode_ref (54,460 samples, 3.54%)</title><rect x="23.1349%" y="565" width="3.5390%" height="15" fill="rgb(233,189,8)" fg:x="356010" fg:w="54460"/><text x="23.3849%" y="575.50">btr..</text></g><g><title>write_extent_buffer (306 samples, 0.02%)</title><rect x="26.6540%" y="549" width="0.0199%" height="15" fill="rgb(228,141,17)" fg:x="410164" fg:w="306"/><text x="26.9040%" y="559.50"></text></g><g><title>_raw_spin_lock (262 samples, 0.02%)</title><rect x="26.7325%" y="517" width="0.0170%" height="15" fill="rgb(247,157,1)" fg:x="411372" fg:w="262"/><text x="26.9825%" y="527.50"></text></g><g><title>mutex_lock (169 samples, 0.01%)</title><rect x="26.7496%" y="517" width="0.0110%" height="15" fill="rgb(249,225,5)" fg:x="411636" fg:w="169"/><text x="26.9996%" y="527.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (982 samples, 0.06%)</title><rect x="26.7088%" y="533" width="0.0638%" height="15" fill="rgb(242,55,13)" fg:x="411008" fg:w="982"/><text x="26.9588%" y="543.50"></text></g><g><title>mutex_unlock (185 samples, 0.01%)</title><rect x="26.7606%" y="517" width="0.0120%" height="15" fill="rgb(230,49,50)" fg:x="411805" fg:w="185"/><text x="27.0106%" y="527.50"></text></g><g><title>btrfs_get_or_create_delayed_node (245 samples, 0.02%)</title><rect x="26.7862%" y="533" width="0.0159%" height="15" fill="rgb(241,111,38)" fg:x="412198" fg:w="245"/><text x="27.0362%" y="543.50"></text></g><g><title>btrfs_get_delayed_node (217 samples, 0.01%)</title><rect x="26.7880%" y="517" width="0.0141%" height="15" fill="rgb(252,155,4)" fg:x="412226" fg:w="217"/><text x="27.0380%" y="527.50"></text></g><g><title>inode_get_bytes (216 samples, 0.01%)</title><rect x="26.8135%" y="517" width="0.0140%" height="15" fill="rgb(212,69,32)" fg:x="412619" fg:w="216"/><text x="27.0635%" y="527.50"></text></g><g><title>fill_stack_inode_item (524 samples, 0.03%)</title><rect x="26.8021%" y="533" width="0.0341%" height="15" fill="rgb(243,107,47)" fg:x="412443" fg:w="524"/><text x="27.0521%" y="543.50"></text></g><g><title>btrfs_delayed_update_inode (2,351 samples, 0.15%)</title><rect x="26.7021%" y="549" width="0.1528%" height="15" fill="rgb(247,130,12)" fg:x="410904" fg:w="2351"/><text x="26.9521%" y="559.50"></text></g><g><title>_raw_spin_lock (473 samples, 0.03%)</title><rect x="26.8650%" y="533" width="0.0307%" height="15" fill="rgb(233,74,16)" fg:x="413412" fg:w="473"/><text x="27.1150%" y="543.50"></text></g><g><title>btrfs_update_inode (3,883 samples, 0.25%)</title><rect x="26.6739%" y="565" width="0.2523%" height="15" fill="rgb(208,58,18)" fg:x="410470" fg:w="3883"/><text x="26.9239%" y="575.50"></text></g><g><title>btrfs_update_root_times (1,098 samples, 0.07%)</title><rect x="26.8548%" y="549" width="0.0714%" height="15" fill="rgb(242,225,1)" fg:x="413255" fg:w="1098"/><text x="27.1048%" y="559.50"></text></g><g><title>ktime_get_real_ts64 (468 samples, 0.03%)</title><rect x="26.8958%" y="533" width="0.0304%" height="15" fill="rgb(249,39,40)" fg:x="413885" fg:w="468"/><text x="27.1458%" y="543.50"></text></g><g><title>read_tsc (163 samples, 0.01%)</title><rect x="26.9156%" y="517" width="0.0106%" height="15" fill="rgb(207,72,44)" fg:x="414190" fg:w="163"/><text x="27.1656%" y="527.50"></text></g><g><title>btrfs_add_link (135,095 samples, 8.78%)</title><rect x="18.1663%" y="581" width="8.7790%" height="15" fill="rgb(215,193,12)" fg:x="279551" fg:w="135095"/><text x="18.4163%" y="591.50">btrfs_add_li..</text></g><g><title>fs_umode_to_ftype (192 samples, 0.01%)</title><rect x="26.9328%" y="565" width="0.0125%" height="15" fill="rgb(248,41,39)" fg:x="414454" fg:w="192"/><text x="27.1828%" y="575.50"></text></g><g><title>btrfs_balance_delayed_items (687 samples, 0.04%)</title><rect x="26.9684%" y="565" width="0.0446%" height="15" fill="rgb(253,85,4)" fg:x="415003" fg:w="687"/><text x="27.2184%" y="575.50"></text></g><g><title>schedule (163 samples, 0.01%)</title><rect x="27.0025%" y="549" width="0.0106%" height="15" fill="rgb(243,70,31)" fg:x="415527" fg:w="163"/><text x="27.2525%" y="559.50"></text></g><g><title>__schedule (162 samples, 0.01%)</title><rect x="27.0026%" y="533" width="0.0105%" height="15" fill="rgb(253,195,26)" fg:x="415528" fg:w="162"/><text x="27.2526%" y="543.50"></text></g><g><title>_raw_spin_lock (464 samples, 0.03%)</title><rect x="27.0321%" y="533" width="0.0302%" height="15" fill="rgb(243,42,11)" fg:x="415982" fg:w="464"/><text x="27.2821%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (376 samples, 0.02%)</title><rect x="27.0378%" y="517" width="0.0244%" height="15" fill="rgb(239,66,17)" fg:x="416070" fg:w="376"/><text x="27.2878%" y="527.50"></text></g><g><title>select_task_rq_fair (367 samples, 0.02%)</title><rect x="27.0963%" y="517" width="0.0238%" height="15" fill="rgb(217,132,21)" fg:x="416970" fg:w="367"/><text x="27.3463%" y="527.50"></text></g><g><title>enqueue_task_fair (361 samples, 0.02%)</title><rect x="27.1246%" y="501" width="0.0235%" height="15" fill="rgb(252,202,21)" fg:x="417406" fg:w="361"/><text x="27.3746%" y="511.50"></text></g><g><title>enqueue_entity (284 samples, 0.02%)</title><rect x="27.1296%" y="485" width="0.0185%" height="15" fill="rgb(233,98,36)" fg:x="417483" fg:w="284"/><text x="27.3796%" y="495.50"></text></g><g><title>ttwu_do_activate (572 samples, 0.04%)</title><rect x="27.1217%" y="517" width="0.0372%" height="15" fill="rgb(216,153,54)" fg:x="417362" fg:w="572"/><text x="27.3717%" y="527.50"></text></g><g><title>psi_task_change (164 samples, 0.01%)</title><rect x="27.1482%" y="501" width="0.0107%" height="15" fill="rgb(250,99,7)" fg:x="417770" fg:w="164"/><text x="27.3982%" y="511.50"></text></g><g><title>ttwu_do_wakeup (205 samples, 0.01%)</title><rect x="27.1589%" y="517" width="0.0133%" height="15" fill="rgb(207,56,50)" fg:x="417934" fg:w="205"/><text x="27.4089%" y="527.50"></text></g><g><title>check_preempt_curr (187 samples, 0.01%)</title><rect x="27.1601%" y="501" width="0.0122%" height="15" fill="rgb(244,61,34)" fg:x="417952" fg:w="187"/><text x="27.4101%" y="511.50"></text></g><g><title>__queue_work (2,391 samples, 0.16%)</title><rect x="27.0222%" y="549" width="0.1554%" height="15" fill="rgb(241,50,38)" fg:x="415831" fg:w="2391"/><text x="27.2722%" y="559.50"></text></g><g><title>try_to_wake_up (1,632 samples, 0.11%)</title><rect x="27.0716%" y="533" width="0.1061%" height="15" fill="rgb(212,166,30)" fg:x="416590" fg:w="1632"/><text x="27.3216%" y="543.50"></text></g><g><title>btrfs_btree_balance_dirty (3,593 samples, 0.23%)</title><rect x="26.9452%" y="581" width="0.2335%" height="15" fill="rgb(249,127,32)" fg:x="414646" fg:w="3593"/><text x="27.1952%" y="591.50"></text></g><g><title>queue_work_on (2,442 samples, 0.16%)</title><rect x="27.0200%" y="565" width="0.1587%" height="15" fill="rgb(209,103,0)" fg:x="415797" fg:w="2442"/><text x="27.2700%" y="575.50"></text></g><g><title>_raw_spin_lock (183 samples, 0.01%)</title><rect x="27.2402%" y="485" width="0.0119%" height="15" fill="rgb(238,209,51)" fg:x="419185" fg:w="183"/><text x="27.4902%" y="495.50"></text></g><g><title>btrfs_iget (643 samples, 0.04%)</title><rect x="27.2314%" y="549" width="0.0418%" height="15" fill="rgb(237,56,23)" fg:x="419050" fg:w="643"/><text x="27.4814%" y="559.50"></text></g><g><title>iget5_locked (616 samples, 0.04%)</title><rect x="27.2332%" y="533" width="0.0400%" height="15" fill="rgb(215,153,46)" fg:x="419077" fg:w="616"/><text x="27.4832%" y="543.50"></text></g><g><title>ilookup5 (605 samples, 0.04%)</title><rect x="27.2339%" y="517" width="0.0393%" height="15" fill="rgb(224,49,31)" fg:x="419088" fg:w="605"/><text x="27.4839%" y="527.50"></text></g><g><title>ilookup5_nowait (561 samples, 0.04%)</title><rect x="27.2368%" y="501" width="0.0365%" height="15" fill="rgb(250,18,42)" fg:x="419132" fg:w="561"/><text x="27.4868%" y="511.50"></text></g><g><title>find_inode (325 samples, 0.02%)</title><rect x="27.2521%" y="485" width="0.0211%" height="15" fill="rgb(215,176,39)" fg:x="419368" fg:w="325"/><text x="27.5021%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (289 samples, 0.02%)</title><rect x="27.2968%" y="485" width="0.0188%" height="15" fill="rgb(223,77,29)" fg:x="420056" fg:w="289"/><text x="27.5468%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (308 samples, 0.02%)</title><rect x="27.2966%" y="501" width="0.0200%" height="15" fill="rgb(234,94,52)" fg:x="420053" fg:w="308"/><text x="27.5466%" y="511.50"></text></g><g><title>__btrfs_tree_lock (233 samples, 0.02%)</title><rect x="27.3202%" y="485" width="0.0151%" height="15" fill="rgb(220,154,50)" fg:x="420416" fg:w="233"/><text x="27.5702%" y="495.50"></text></g><g><title>btrfs_lock_root_node (241 samples, 0.02%)</title><rect x="27.3201%" y="501" width="0.0157%" height="15" fill="rgb(212,11,10)" fg:x="420415" fg:w="241"/><text x="27.5701%" y="511.50"></text></g><g><title>btrfs_search_slot (824 samples, 0.05%)</title><rect x="27.2951%" y="517" width="0.0535%" height="15" fill="rgb(205,166,19)" fg:x="420030" fg:w="824"/><text x="27.5451%" y="527.50"></text></g><g><title>btrfs_insert_empty_items (1,241 samples, 0.08%)</title><rect x="27.2950%" y="533" width="0.0806%" height="15" fill="rgb(244,198,16)" fg:x="420028" fg:w="1241"/><text x="27.5450%" y="543.50"></text></g><g><title>setup_items_for_insert (415 samples, 0.03%)</title><rect x="27.3487%" y="517" width="0.0270%" height="15" fill="rgb(219,69,12)" fg:x="420854" fg:w="415"/><text x="27.5987%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (164 samples, 0.01%)</title><rect x="27.3888%" y="517" width="0.0107%" height="15" fill="rgb(245,30,7)" fg:x="421471" fg:w="164"/><text x="27.6388%" y="527.50"></text></g><g><title>btrfs_read_node_slot (207 samples, 0.01%)</title><rect x="27.4120%" y="517" width="0.0135%" height="15" fill="rgb(218,221,48)" fg:x="421829" fg:w="207"/><text x="27.6620%" y="527.50"></text></g><g><title>read_tree_block (164 samples, 0.01%)</title><rect x="27.4148%" y="501" width="0.0107%" height="15" fill="rgb(216,66,15)" fg:x="421872" fg:w="164"/><text x="27.6648%" y="511.50"></text></g><g><title>btrfs_search_forward (883 samples, 0.06%)</title><rect x="27.3855%" y="533" width="0.0574%" height="15" fill="rgb(226,122,50)" fg:x="421421" fg:w="883"/><text x="27.6355%" y="543.50"></text></g><g><title>__btrfs_tree_read_lock (181 samples, 0.01%)</title><rect x="27.4547%" y="469" width="0.0118%" height="15" fill="rgb(239,156,16)" fg:x="422486" fg:w="181"/><text x="27.7047%" y="479.50"></text></g><g><title>__btrfs_read_lock_root_node (195 samples, 0.01%)</title><rect x="27.4547%" y="485" width="0.0127%" height="15" fill="rgb(224,27,38)" fg:x="422486" fg:w="195"/><text x="27.7047%" y="495.50"></text></g><g><title>__btrfs_tree_lock (160 samples, 0.01%)</title><rect x="27.4687%" y="469" width="0.0104%" height="15" fill="rgb(224,39,27)" fg:x="422702" fg:w="160"/><text x="27.7187%" y="479.50"></text></g><g><title>btrfs_lock_root_node (161 samples, 0.01%)</title><rect x="27.4687%" y="485" width="0.0105%" height="15" fill="rgb(215,92,29)" fg:x="422702" fg:w="161"/><text x="27.7187%" y="495.50"></text></g><g><title>btrfs_search_slot (604 samples, 0.04%)</title><rect x="27.4535%" y="501" width="0.0393%" height="15" fill="rgb(207,159,16)" fg:x="422468" fg:w="604"/><text x="27.7035%" y="511.50"></text></g><g><title>btrfs_insert_empty_items (953 samples, 0.06%)</title><rect x="27.4535%" y="517" width="0.0619%" height="15" fill="rgb(238,163,47)" fg:x="422467" fg:w="953"/><text x="27.7035%" y="527.50"></text></g><g><title>setup_items_for_insert (348 samples, 0.02%)</title><rect x="27.4928%" y="501" width="0.0226%" height="15" fill="rgb(219,91,49)" fg:x="423072" fg:w="348"/><text x="27.7428%" y="511.50"></text></g><g><title>copy_items.isra.0 (1,090 samples, 0.07%)</title><rect x="27.4509%" y="533" width="0.0708%" height="15" fill="rgb(227,167,31)" fg:x="422427" fg:w="1090"/><text x="27.7009%" y="543.50"></text></g><g><title>btrfs_get_token_32 (199 samples, 0.01%)</title><rect x="27.5260%" y="501" width="0.0129%" height="15" fill="rgb(234,80,54)" fg:x="423583" fg:w="199"/><text x="27.7760%" y="511.50"></text></g><g><title>btrfs_del_items (531 samples, 0.03%)</title><rect x="27.5221%" y="517" width="0.0345%" height="15" fill="rgb(212,114,2)" fg:x="423523" fg:w="531"/><text x="27.7721%" y="527.50"></text></g><g><title>enqueue_task_fair (189 samples, 0.01%)</title><rect x="27.5806%" y="421" width="0.0123%" height="15" fill="rgb(234,50,24)" fg:x="424424" fg:w="189"/><text x="27.8306%" y="431.50"></text></g><g><title>ttwu_do_activate (401 samples, 0.03%)</title><rect x="27.5797%" y="437" width="0.0261%" height="15" fill="rgb(221,68,8)" fg:x="424410" fg:w="401"/><text x="27.8297%" y="447.50"></text></g><g><title>psi_task_change (197 samples, 0.01%)</title><rect x="27.5930%" y="421" width="0.0128%" height="15" fill="rgb(254,180,31)" fg:x="424614" fg:w="197"/><text x="27.8430%" y="431.50"></text></g><g><title>psi_group_change (181 samples, 0.01%)</title><rect x="27.5940%" y="405" width="0.0118%" height="15" fill="rgb(247,130,50)" fg:x="424630" fg:w="181"/><text x="27.8440%" y="415.50"></text></g><g><title>__wake_up_common (852 samples, 0.06%)</title><rect x="27.5572%" y="485" width="0.0554%" height="15" fill="rgb(211,109,4)" fg:x="424063" fg:w="852"/><text x="27.8072%" y="495.50"></text></g><g><title>autoremove_wake_function (839 samples, 0.05%)</title><rect x="27.5580%" y="469" width="0.0545%" height="15" fill="rgb(238,50,21)" fg:x="424076" fg:w="839"/><text x="27.8080%" y="479.50"></text></g><g><title>try_to_wake_up (811 samples, 0.05%)</title><rect x="27.5599%" y="453" width="0.0527%" height="15" fill="rgb(225,57,45)" fg:x="424104" fg:w="811"/><text x="27.8099%" y="463.50"></text></g><g><title>__wake_up_common_lock (948 samples, 0.06%)</title><rect x="27.5570%" y="501" width="0.0616%" height="15" fill="rgb(209,196,50)" fg:x="424060" fg:w="948"/><text x="27.8070%" y="511.50"></text></g><g><title>btrfs_release_path (1,006 samples, 0.07%)</title><rect x="27.5566%" y="517" width="0.0654%" height="15" fill="rgb(242,140,13)" fg:x="424054" fg:w="1006"/><text x="27.8066%" y="527.50"></text></g><g><title>__btrfs_tree_read_lock (504 samples, 0.03%)</title><rect x="27.6257%" y="485" width="0.0328%" height="15" fill="rgb(217,111,7)" fg:x="425118" fg:w="504"/><text x="27.8757%" y="495.50"></text></g><g><title>schedule (198 samples, 0.01%)</title><rect x="27.6456%" y="469" width="0.0129%" height="15" fill="rgb(253,193,51)" fg:x="425424" fg:w="198"/><text x="27.8956%" y="479.50"></text></g><g><title>__schedule (197 samples, 0.01%)</title><rect x="27.6457%" y="453" width="0.0128%" height="15" fill="rgb(252,70,29)" fg:x="425425" fg:w="197"/><text x="27.8957%" y="463.50"></text></g><g><title>__btrfs_read_lock_root_node (538 samples, 0.03%)</title><rect x="27.6254%" y="501" width="0.0350%" height="15" fill="rgb(232,127,12)" fg:x="425113" fg:w="538"/><text x="27.8754%" y="511.50"></text></g><g><title>__btrfs_tree_lock (327 samples, 0.02%)</title><rect x="27.6630%" y="485" width="0.0212%" height="15" fill="rgb(211,180,21)" fg:x="425692" fg:w="327"/><text x="27.9130%" y="495.50"></text></g><g><title>btrfs_lock_root_node (335 samples, 0.02%)</title><rect x="27.6630%" y="501" width="0.0218%" height="15" fill="rgb(229,72,13)" fg:x="425691" fg:w="335"/><text x="27.9130%" y="511.50"></text></g><g><title>btrfs_search_slot (1,181 samples, 0.08%)</title><rect x="27.6220%" y="517" width="0.0767%" height="15" fill="rgb(240,211,49)" fg:x="425060" fg:w="1181"/><text x="27.8720%" y="527.50"></text></g><g><title>drop_objectid_items (2,750 samples, 0.18%)</title><rect x="27.5217%" y="533" width="0.1787%" height="15" fill="rgb(219,149,40)" fg:x="423517" fg:w="2750"/><text x="27.7717%" y="543.50"></text></g><g><title>__btrfs_read_lock_root_node (155 samples, 0.01%)</title><rect x="27.7380%" y="485" width="0.0101%" height="15" fill="rgb(210,127,46)" fg:x="426846" fg:w="155"/><text x="27.9880%" y="495.50"></text></g><g><title>btrfs_get_64 (242 samples, 0.02%)</title><rect x="27.7545%" y="485" width="0.0157%" height="15" fill="rgb(220,106,7)" fg:x="427099" fg:w="242"/><text x="28.0045%" y="495.50"></text></g><g><title>btrfs_read_node_slot (235 samples, 0.02%)</title><rect x="27.7703%" y="485" width="0.0153%" height="15" fill="rgb(249,31,22)" fg:x="427343" fg:w="235"/><text x="28.0203%" y="495.50"></text></g><g><title>read_tree_block (182 samples, 0.01%)</title><rect x="27.7738%" y="469" width="0.0118%" height="15" fill="rgb(253,1,49)" fg:x="427396" fg:w="182"/><text x="28.0238%" y="479.50"></text></g><g><title>btrfs_search_forward (1,246 samples, 0.08%)</title><rect x="27.7334%" y="501" width="0.0810%" height="15" fill="rgb(227,144,33)" fg:x="426774" fg:w="1246"/><text x="27.9834%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (229 samples, 0.01%)</title><rect x="27.8360%" y="485" width="0.0149%" height="15" fill="rgb(249,163,44)" fg:x="428354" fg:w="229"/><text x="28.0860%" y="495.50"></text></g><g><title>btrfs_search_slot (590 samples, 0.04%)</title><rect x="27.8143%" y="501" width="0.0383%" height="15" fill="rgb(234,15,39)" fg:x="428020" fg:w="590"/><text x="28.0643%" y="511.50"></text></g><g><title>prepare_to_wait_event (156 samples, 0.01%)</title><rect x="27.8650%" y="421" width="0.0101%" height="15" fill="rgb(207,66,16)" fg:x="428799" fg:w="156"/><text x="28.1150%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (643 samples, 0.04%)</title><rect x="27.8572%" y="437" width="0.0418%" height="15" fill="rgb(233,112,24)" fg:x="428679" fg:w="643"/><text x="28.1072%" y="447.50"></text></g><g><title>schedule (259 samples, 0.02%)</title><rect x="27.8821%" y="421" width="0.0168%" height="15" fill="rgb(230,90,22)" fg:x="429063" fg:w="259"/><text x="28.1321%" y="431.50"></text></g><g><title>__schedule (254 samples, 0.02%)</title><rect x="27.8824%" y="405" width="0.0165%" height="15" fill="rgb(229,61,13)" fg:x="429068" fg:w="254"/><text x="28.1324%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (687 samples, 0.04%)</title><rect x="27.8570%" y="453" width="0.0446%" height="15" fill="rgb(225,57,24)" fg:x="428676" fg:w="687"/><text x="28.1070%" y="463.50"></text></g><g><title>__btrfs_tree_lock (164 samples, 0.01%)</title><rect x="27.9016%" y="453" width="0.0107%" height="15" fill="rgb(208,169,48)" fg:x="429363" fg:w="164"/><text x="28.1516%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (194 samples, 0.01%)</title><rect x="27.9256%" y="421" width="0.0126%" height="15" fill="rgb(244,218,51)" fg:x="429732" fg:w="194"/><text x="28.1756%" y="431.50"></text></g><g><title>__btrfs_tree_lock (515 samples, 0.03%)</title><rect x="27.9140%" y="437" width="0.0335%" height="15" fill="rgb(214,148,10)" fg:x="429554" fg:w="515"/><text x="28.1640%" y="447.50"></text></g><g><title>btrfs_lock_root_node (537 samples, 0.03%)</title><rect x="27.9139%" y="453" width="0.0349%" height="15" fill="rgb(225,174,27)" fg:x="429552" fg:w="537"/><text x="28.1639%" y="463.50"></text></g><g><title>__wake_up_common (164 samples, 0.01%)</title><rect x="27.9687%" y="421" width="0.0107%" height="15" fill="rgb(230,96,26)" fg:x="430395" fg:w="164"/><text x="28.2187%" y="431.50"></text></g><g><title>autoremove_wake_function (163 samples, 0.01%)</title><rect x="27.9687%" y="405" width="0.0106%" height="15" fill="rgb(232,10,30)" fg:x="430396" fg:w="163"/><text x="28.2187%" y="415.50"></text></g><g><title>try_to_wake_up (154 samples, 0.01%)</title><rect x="27.9693%" y="389" width="0.0100%" height="15" fill="rgb(222,8,50)" fg:x="430405" fg:w="154"/><text x="28.2193%" y="399.50"></text></g><g><title>__wake_up_common_lock (166 samples, 0.01%)</title><rect x="27.9687%" y="437" width="0.0108%" height="15" fill="rgb(213,81,27)" fg:x="430395" fg:w="166"/><text x="28.2187%" y="447.50"></text></g><g><title>btrfs_search_slot (1,952 samples, 0.13%)</title><rect x="27.8537%" y="469" width="0.1268%" height="15" fill="rgb(245,50,10)" fg:x="428626" fg:w="1952"/><text x="28.1037%" y="479.50"></text></g><g><title>unlock_up (197 samples, 0.01%)</title><rect x="27.9678%" y="453" width="0.0128%" height="15" fill="rgb(216,100,18)" fg:x="430381" fg:w="197"/><text x="28.2178%" y="463.50"></text></g><g><title>btrfs_get_token_32 (365 samples, 0.02%)</title><rect x="27.9862%" y="453" width="0.0237%" height="15" fill="rgb(236,147,54)" fg:x="430665" fg:w="365"/><text x="28.2362%" y="463.50"></text></g><g><title>btrfs_set_token_32 (285 samples, 0.02%)</title><rect x="28.0123%" y="453" width="0.0185%" height="15" fill="rgb(205,143,26)" fg:x="431066" fg:w="285"/><text x="28.2623%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (2,968 samples, 0.19%)</title><rect x="27.8536%" y="485" width="0.1929%" height="15" fill="rgb(236,26,9)" fg:x="428624" fg:w="2968"/><text x="28.1036%" y="495.50"></text></g><g><title>setup_items_for_insert (1,014 samples, 0.07%)</title><rect x="27.9806%" y="469" width="0.0659%" height="15" fill="rgb(221,165,53)" fg:x="430578" fg:w="1014"/><text x="28.2306%" y="479.50"></text></g><g><title>insert_dir_log_key (3,121 samples, 0.20%)</title><rect x="27.8527%" y="501" width="0.2028%" height="15" fill="rgb(214,110,17)" fg:x="428610" fg:w="3121"/><text x="28.1027%" y="511.50"></text></g><g><title>__kmalloc (643 samples, 0.04%)</title><rect x="28.0670%" y="485" width="0.0418%" height="15" fill="rgb(237,197,12)" fg:x="431908" fg:w="643"/><text x="28.3170%" y="495.50"></text></g><g><title>btrfs_get_32 (203 samples, 0.01%)</title><rect x="28.1089%" y="485" width="0.0132%" height="15" fill="rgb(205,84,17)" fg:x="432553" fg:w="203"/><text x="28.3589%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (301 samples, 0.02%)</title><rect x="28.1233%" y="437" width="0.0196%" height="15" fill="rgb(237,18,45)" fg:x="432774" fg:w="301"/><text x="28.3733%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (314 samples, 0.02%)</title><rect x="28.1233%" y="453" width="0.0204%" height="15" fill="rgb(221,87,14)" fg:x="432774" fg:w="314"/><text x="28.3733%" y="463.50"></text></g><g><title>__btrfs_tree_lock (502 samples, 0.03%)</title><rect x="28.1464%" y="437" width="0.0326%" height="15" fill="rgb(238,186,15)" fg:x="433130" fg:w="502"/><text x="28.3964%" y="447.50"></text></g><g><title>schedule (181 samples, 0.01%)</title><rect x="28.1673%" y="421" width="0.0118%" height="15" fill="rgb(208,115,11)" fg:x="433451" fg:w="181"/><text x="28.4173%" y="431.50"></text></g><g><title>__schedule (179 samples, 0.01%)</title><rect x="28.1674%" y="405" width="0.0116%" height="15" fill="rgb(254,175,0)" fg:x="433453" fg:w="179"/><text x="28.4174%" y="415.50"></text></g><g><title>btrfs_lock_root_node (505 samples, 0.03%)</title><rect x="28.1463%" y="453" width="0.0328%" height="15" fill="rgb(227,24,42)" fg:x="433129" fg:w="505"/><text x="28.3963%" y="463.50"></text></g><g><title>btrfs_search_slot (1,090 samples, 0.07%)</title><rect x="28.1221%" y="469" width="0.0708%" height="15" fill="rgb(223,211,37)" fg:x="432756" fg:w="1090"/><text x="28.3721%" y="479.50"></text></g><g><title>btrfs_get_token_32 (166 samples, 0.01%)</title><rect x="28.1956%" y="453" width="0.0108%" height="15" fill="rgb(235,49,27)" fg:x="433887" fg:w="166"/><text x="28.4456%" y="463.50"></text></g><g><title>btrfs_set_token_32 (162 samples, 0.01%)</title><rect x="28.2074%" y="453" width="0.0105%" height="15" fill="rgb(254,97,51)" fg:x="434069" fg:w="162"/><text x="28.4574%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (1,601 samples, 0.10%)</title><rect x="28.1221%" y="485" width="0.1040%" height="15" fill="rgb(249,51,40)" fg:x="432756" fg:w="1601"/><text x="28.3721%" y="495.50"></text></g><g><title>setup_items_for_insert (511 samples, 0.03%)</title><rect x="28.1929%" y="469" width="0.0332%" height="15" fill="rgb(210,128,45)" fg:x="433846" fg:w="511"/><text x="28.4429%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (439 samples, 0.03%)</title><rect x="28.2419%" y="469" width="0.0285%" height="15" fill="rgb(224,137,50)" fg:x="434600" fg:w="439"/><text x="28.4919%" y="479.50"></text></g><g><title>btrfs_release_path (754 samples, 0.05%)</title><rect x="28.2265%" y="485" width="0.0490%" height="15" fill="rgb(242,15,9)" fg:x="434362" fg:w="754"/><text x="28.4765%" y="495.50"></text></g><g><title>_raw_read_lock (221 samples, 0.01%)</title><rect x="28.3144%" y="437" width="0.0144%" height="15" fill="rgb(233,187,41)" fg:x="435716" fg:w="221"/><text x="28.5644%" y="447.50"></text></g><g><title>finish_wait (387 samples, 0.03%)</title><rect x="28.3293%" y="437" width="0.0251%" height="15" fill="rgb(227,2,29)" fg:x="435944" fg:w="387"/><text x="28.5793%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (360 samples, 0.02%)</title><rect x="28.3310%" y="421" width="0.0234%" height="15" fill="rgb(222,70,3)" fg:x="435971" fg:w="360"/><text x="28.5810%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (330 samples, 0.02%)</title><rect x="28.3330%" y="405" width="0.0214%" height="15" fill="rgb(213,11,42)" fg:x="436001" fg:w="330"/><text x="28.5830%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (802 samples, 0.05%)</title><rect x="28.3641%" y="421" width="0.0521%" height="15" fill="rgb(225,150,9)" fg:x="436480" fg:w="802"/><text x="28.6141%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (721 samples, 0.05%)</title><rect x="28.3694%" y="405" width="0.0469%" height="15" fill="rgb(230,162,45)" fg:x="436561" fg:w="721"/><text x="28.6194%" y="415.50"></text></g><g><title>prepare_to_wait_event (966 samples, 0.06%)</title><rect x="28.3544%" y="437" width="0.0628%" height="15" fill="rgb(222,14,52)" fg:x="436331" fg:w="966"/><text x="28.6044%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (1,007 samples, 0.07%)</title><rect x="28.4172%" y="437" width="0.0654%" height="15" fill="rgb(254,198,14)" fg:x="437297" fg:w="1007"/><text x="28.6672%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (646 samples, 0.04%)</title><rect x="28.4406%" y="421" width="0.0420%" height="15" fill="rgb(220,217,30)" fg:x="437658" fg:w="646"/><text x="28.6906%" y="431.50"></text></g><g><title>dequeue_entity (256 samples, 0.02%)</title><rect x="28.4920%" y="389" width="0.0166%" height="15" fill="rgb(215,146,41)" fg:x="438448" fg:w="256"/><text x="28.7420%" y="399.50"></text></g><g><title>dequeue_task_fair (288 samples, 0.02%)</title><rect x="28.4904%" y="405" width="0.0187%" height="15" fill="rgb(217,27,36)" fg:x="438424" fg:w="288"/><text x="28.7404%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (652 samples, 0.04%)</title><rect x="28.5130%" y="389" width="0.0424%" height="15" fill="rgb(219,218,39)" fg:x="438771" fg:w="652"/><text x="28.7630%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (633 samples, 0.04%)</title><rect x="28.5142%" y="373" width="0.0411%" height="15" fill="rgb(219,4,42)" fg:x="438790" fg:w="633"/><text x="28.7642%" y="383.50"></text></g><g><title>native_write_msr (620 samples, 0.04%)</title><rect x="28.5151%" y="357" width="0.0403%" height="15" fill="rgb(249,119,36)" fg:x="438803" fg:w="620"/><text x="28.7651%" y="367.50"></text></g><g><title>finish_task_switch (726 samples, 0.05%)</title><rect x="28.5091%" y="405" width="0.0472%" height="15" fill="rgb(209,23,33)" fg:x="438712" fg:w="726"/><text x="28.7591%" y="415.50"></text></g><g><title>psi_task_change (226 samples, 0.01%)</title><rect x="28.5607%" y="405" width="0.0147%" height="15" fill="rgb(211,10,0)" fg:x="439506" fg:w="226"/><text x="28.8107%" y="415.50"></text></g><g><title>psi_group_change (190 samples, 0.01%)</title><rect x="28.5631%" y="389" width="0.0123%" height="15" fill="rgb(208,99,37)" fg:x="439542" fg:w="190"/><text x="28.8131%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (4,252 samples, 0.28%)</title><rect x="28.3015%" y="453" width="0.2763%" height="15" fill="rgb(213,132,31)" fg:x="435517" fg:w="4252"/><text x="28.5515%" y="463.50"></text></g><g><title>schedule (1,465 samples, 0.10%)</title><rect x="28.4826%" y="437" width="0.0952%" height="15" fill="rgb(243,129,40)" fg:x="438304" fg:w="1465"/><text x="28.7326%" y="447.50"></text></g><g><title>__schedule (1,444 samples, 0.09%)</title><rect x="28.4840%" y="421" width="0.0938%" height="15" fill="rgb(210,66,33)" fg:x="438325" fg:w="1444"/><text x="28.7340%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (4,560 samples, 0.30%)</title><rect x="28.2999%" y="469" width="0.2963%" height="15" fill="rgb(209,189,4)" fg:x="435492" fg:w="4560"/><text x="28.5499%" y="479.50"></text></g><g><title>btrfs_root_node (283 samples, 0.02%)</title><rect x="28.5778%" y="453" width="0.0184%" height="15" fill="rgb(214,107,37)" fg:x="439769" fg:w="283"/><text x="28.8278%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (186 samples, 0.01%)</title><rect x="28.6059%" y="469" width="0.0121%" height="15" fill="rgb(245,88,54)" fg:x="440201" fg:w="186"/><text x="28.8559%" y="479.50"></text></g><g><title>btrfs_tree_read_unlock (263 samples, 0.02%)</title><rect x="28.6227%" y="469" width="0.0171%" height="15" fill="rgb(205,146,20)" fg:x="440459" fg:w="263"/><text x="28.8727%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (695 samples, 0.05%)</title><rect x="28.6398%" y="469" width="0.0452%" height="15" fill="rgb(220,161,25)" fg:x="440723" fg:w="695"/><text x="28.8898%" y="479.50"></text></g><g><title>btrfs_get_64 (212 samples, 0.01%)</title><rect x="28.6963%" y="453" width="0.0138%" height="15" fill="rgb(215,152,15)" fg:x="441592" fg:w="212"/><text x="28.9463%" y="463.50"></text></g><g><title>__radix_tree_lookup (232 samples, 0.02%)</title><rect x="28.7183%" y="437" width="0.0151%" height="15" fill="rgb(233,192,44)" fg:x="441931" fg:w="232"/><text x="28.9683%" y="447.50"></text></g><g><title>find_extent_buffer (478 samples, 0.03%)</title><rect x="28.7127%" y="453" width="0.0311%" height="15" fill="rgb(240,170,46)" fg:x="441845" fg:w="478"/><text x="28.9627%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (1,047 samples, 0.07%)</title><rect x="28.6850%" y="469" width="0.0680%" height="15" fill="rgb(207,104,33)" fg:x="441418" fg:w="1047"/><text x="28.9350%" y="479.50"></text></g><g><title>btrfs_search_slot (7,477 samples, 0.49%)</title><rect x="28.2755%" y="485" width="0.4859%" height="15" fill="rgb(219,21,39)" fg:x="435116" fg:w="7477"/><text x="28.5255%" y="495.50"></text></g><g><title>kfree (440 samples, 0.03%)</title><rect x="28.7621%" y="485" width="0.0286%" height="15" fill="rgb(214,133,29)" fg:x="442605" fg:w="440"/><text x="29.0121%" y="495.50"></text></g><g><title>memcmp (286 samples, 0.02%)</title><rect x="28.7907%" y="485" width="0.0186%" height="15" fill="rgb(226,93,6)" fg:x="443045" fg:w="286"/><text x="29.0407%" y="495.50"></text></g><g><title>overwrite_item (11,885 samples, 0.77%)</title><rect x="28.0555%" y="501" width="0.7723%" height="15" fill="rgb(252,222,34)" fg:x="431731" fg:w="11885"/><text x="28.3055%" y="511.50"></text></g><g><title>read_extent_buffer (285 samples, 0.02%)</title><rect x="28.8093%" y="485" width="0.0185%" height="15" fill="rgb(252,92,48)" fg:x="443331" fg:w="285"/><text x="29.0593%" y="495.50"></text></g><g><title>log_directory_changes (17,467 samples, 1.14%)</title><rect x="27.7072%" y="533" width="1.1351%" height="15" fill="rgb(245,223,24)" fg:x="426372" fg:w="17467"/><text x="27.9572%" y="543.50"></text></g><g><title>log_dir_items (17,461 samples, 1.13%)</title><rect x="27.7076%" y="517" width="1.1347%" height="15" fill="rgb(205,176,3)" fg:x="426378" fg:w="17461"/><text x="27.9576%" y="527.50"></text></g><g><title>read_extent_buffer (223 samples, 0.01%)</title><rect x="28.8278%" y="501" width="0.0145%" height="15" fill="rgb(235,151,15)" fg:x="443616" fg:w="223"/><text x="29.0778%" y="511.50"></text></g><g><title>btrfs_log_inode (24,176 samples, 1.57%)</title><rect x="27.2733%" y="549" width="1.5710%" height="15" fill="rgb(237,209,11)" fg:x="419694" fg:w="24176"/><text x="27.5233%" y="559.50"></text></g><g><title>free_extent_buffer.part.0 (403 samples, 0.03%)</title><rect x="28.8537%" y="533" width="0.0262%" height="15" fill="rgb(243,227,24)" fg:x="444014" fg:w="403"/><text x="29.1037%" y="543.50"></text></g><g><title>btrfs_release_path (621 samples, 0.04%)</title><rect x="28.8467%" y="549" width="0.0404%" height="15" fill="rgb(239,193,16)" fg:x="443906" fg:w="621"/><text x="29.0967%" y="559.50"></text></g><g><title>queued_read_lock_slowpath (192 samples, 0.01%)</title><rect x="28.9352%" y="501" width="0.0125%" height="15" fill="rgb(231,27,9)" fg:x="445269" fg:w="192"/><text x="29.1852%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (200 samples, 0.01%)</title><rect x="28.9519%" y="453" width="0.0130%" height="15" fill="rgb(219,169,10)" fg:x="445525" fg:w="200"/><text x="29.2019%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (196 samples, 0.01%)</title><rect x="28.9521%" y="437" width="0.0127%" height="15" fill="rgb(244,229,43)" fg:x="445529" fg:w="196"/><text x="29.2021%" y="447.50"></text></g><g><title>native_write_msr (194 samples, 0.01%)</title><rect x="28.9523%" y="421" width="0.0126%" height="15" fill="rgb(254,38,20)" fg:x="445531" fg:w="194"/><text x="29.2023%" y="431.50"></text></g><g><title>finish_task_switch (218 samples, 0.01%)</title><rect x="28.9512%" y="469" width="0.0142%" height="15" fill="rgb(250,47,30)" fg:x="445514" fg:w="218"/><text x="29.2012%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (832 samples, 0.05%)</title><rect x="28.9150%" y="517" width="0.0541%" height="15" fill="rgb(224,124,36)" fg:x="444957" fg:w="832"/><text x="29.1650%" y="527.50"></text></g><g><title>schedule (328 samples, 0.02%)</title><rect x="28.9477%" y="501" width="0.0213%" height="15" fill="rgb(246,68,51)" fg:x="445461" fg:w="328"/><text x="29.1977%" y="511.50"></text></g><g><title>__schedule (325 samples, 0.02%)</title><rect x="28.9479%" y="485" width="0.0211%" height="15" fill="rgb(253,43,49)" fg:x="445464" fg:w="325"/><text x="29.1979%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (1,018 samples, 0.07%)</title><rect x="28.9142%" y="533" width="0.0662%" height="15" fill="rgb(219,54,36)" fg:x="444945" fg:w="1018"/><text x="29.1642%" y="543.50"></text></g><g><title>btrfs_root_node (174 samples, 0.01%)</title><rect x="28.9690%" y="517" width="0.0113%" height="15" fill="rgb(227,133,34)" fg:x="445789" fg:w="174"/><text x="29.2190%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (198 samples, 0.01%)</title><rect x="28.9940%" y="533" width="0.0129%" height="15" fill="rgb(247,227,15)" fg:x="446174" fg:w="198"/><text x="29.2440%" y="543.50"></text></g><g><title>btrfs_tree_read_lock_atomic (270 samples, 0.02%)</title><rect x="29.0069%" y="533" width="0.0175%" height="15" fill="rgb(229,96,14)" fg:x="446372" fg:w="270"/><text x="29.2569%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (256 samples, 0.02%)</title><rect x="29.0245%" y="533" width="0.0166%" height="15" fill="rgb(220,79,17)" fg:x="446642" fg:w="256"/><text x="29.2745%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (1,693 samples, 0.11%)</title><rect x="29.0415%" y="533" width="0.1100%" height="15" fill="rgb(205,131,53)" fg:x="446904" fg:w="1693"/><text x="29.2915%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (195 samples, 0.01%)</title><rect x="29.1626%" y="517" width="0.0127%" height="15" fill="rgb(209,50,29)" fg:x="448768" fg:w="195"/><text x="29.4126%" y="527.50"></text></g><g><title>btrfs_get_64 (245 samples, 0.02%)</title><rect x="29.1753%" y="517" width="0.0159%" height="15" fill="rgb(245,86,46)" fg:x="448963" fg:w="245"/><text x="29.4253%" y="527.50"></text></g><g><title>btrfs_verify_level_key (242 samples, 0.02%)</title><rect x="29.1921%" y="517" width="0.0157%" height="15" fill="rgb(235,66,46)" fg:x="449222" fg:w="242"/><text x="29.4421%" y="527.50"></text></g><g><title>__radix_tree_lookup (685 samples, 0.04%)</title><rect x="29.2324%" y="501" width="0.0445%" height="15" fill="rgb(232,148,31)" fg:x="449842" fg:w="685"/><text x="29.4824%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (422 samples, 0.03%)</title><rect x="29.2769%" y="501" width="0.0274%" height="15" fill="rgb(217,149,8)" fg:x="450527" fg:w="422"/><text x="29.5269%" y="511.50"></text></g><g><title>mark_page_accessed (308 samples, 0.02%)</title><rect x="29.2843%" y="485" width="0.0200%" height="15" fill="rgb(209,183,11)" fg:x="450641" fg:w="308"/><text x="29.5343%" y="495.50"></text></g><g><title>find_extent_buffer (1,493 samples, 0.10%)</title><rect x="29.2078%" y="517" width="0.0970%" height="15" fill="rgb(208,55,20)" fg:x="449464" fg:w="1493"/><text x="29.4578%" y="527.50"></text></g><g><title>read_extent_buffer (241 samples, 0.02%)</title><rect x="29.3049%" y="517" width="0.0157%" height="15" fill="rgb(218,39,14)" fg:x="450957" fg:w="241"/><text x="29.5549%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (2,620 samples, 0.17%)</title><rect x="29.1515%" y="533" width="0.1703%" height="15" fill="rgb(216,169,33)" fg:x="448597" fg:w="2620"/><text x="29.4015%" y="543.50"></text></g><g><title>btrfs_search_slot (6,864 samples, 0.45%)</title><rect x="28.8870%" y="549" width="0.4460%" height="15" fill="rgb(233,80,24)" fg:x="444527" fg:w="6864"/><text x="29.1370%" y="559.50"></text></g><g><title>unlock_up (174 samples, 0.01%)</title><rect x="29.3218%" y="533" width="0.0113%" height="15" fill="rgb(213,179,31)" fg:x="451217" fg:w="174"/><text x="29.5718%" y="543.50"></text></g><g><title>btrfs_search_forward (223 samples, 0.01%)</title><rect x="29.3596%" y="517" width="0.0145%" height="15" fill="rgb(209,19,5)" fg:x="451799" fg:w="223"/><text x="29.6096%" y="527.50"></text></g><g><title>btrfs_search_slot (250 samples, 0.02%)</title><rect x="29.3757%" y="485" width="0.0162%" height="15" fill="rgb(219,18,35)" fg:x="452047" fg:w="250"/><text x="29.6257%" y="495.50"></text></g><g><title>btrfs_insert_empty_items (495 samples, 0.03%)</title><rect x="29.3756%" y="501" width="0.0322%" height="15" fill="rgb(209,169,16)" fg:x="452046" fg:w="495"/><text x="29.6256%" y="511.50"></text></g><g><title>setup_items_for_insert (244 samples, 0.02%)</title><rect x="29.3919%" y="485" width="0.0159%" height="15" fill="rgb(245,90,51)" fg:x="452297" fg:w="244"/><text x="29.6419%" y="495.50"></text></g><g><title>copy_items.isra.0 (573 samples, 0.04%)</title><rect x="29.3741%" y="517" width="0.0372%" height="15" fill="rgb(220,99,45)" fg:x="452022" fg:w="573"/><text x="29.6241%" y="527.50"></text></g><g><title>btrfs_del_items (245 samples, 0.02%)</title><rect x="29.4115%" y="501" width="0.0159%" height="15" fill="rgb(249,89,25)" fg:x="452598" fg:w="245"/><text x="29.6615%" y="511.50"></text></g><g><title>ttwu_do_activate (165 samples, 0.01%)</title><rect x="29.4362%" y="421" width="0.0107%" height="15" fill="rgb(239,193,0)" fg:x="452978" fg:w="165"/><text x="29.6862%" y="431.50"></text></g><g><title>__wake_up_common (337 samples, 0.02%)</title><rect x="29.4278%" y="469" width="0.0219%" height="15" fill="rgb(231,126,1)" fg:x="452849" fg:w="337"/><text x="29.6778%" y="479.50"></text></g><g><title>autoremove_wake_function (329 samples, 0.02%)</title><rect x="29.4283%" y="453" width="0.0214%" height="15" fill="rgb(243,166,3)" fg:x="452857" fg:w="329"/><text x="29.6783%" y="463.50"></text></g><g><title>try_to_wake_up (318 samples, 0.02%)</title><rect x="29.4290%" y="437" width="0.0207%" height="15" fill="rgb(223,22,34)" fg:x="452868" fg:w="318"/><text x="29.6790%" y="447.50"></text></g><g><title>__wake_up_common_lock (354 samples, 0.02%)</title><rect x="29.4277%" y="485" width="0.0230%" height="15" fill="rgb(251,52,51)" fg:x="452848" fg:w="354"/><text x="29.6777%" y="495.50"></text></g><g><title>btrfs_release_path (370 samples, 0.02%)</title><rect x="29.4274%" y="501" width="0.0240%" height="15" fill="rgb(221,165,28)" fg:x="452843" fg:w="370"/><text x="29.6774%" y="511.50"></text></g><g><title>btrfs_search_slot (315 samples, 0.02%)</title><rect x="29.4515%" y="501" width="0.0205%" height="15" fill="rgb(218,121,47)" fg:x="453213" fg:w="315"/><text x="29.7015%" y="511.50"></text></g><g><title>drop_objectid_items (953 samples, 0.06%)</title><rect x="29.4113%" y="517" width="0.0619%" height="15" fill="rgb(209,120,9)" fg:x="452595" fg:w="953"/><text x="29.6613%" y="527.50"></text></g><g><title>btrfs_search_forward (429 samples, 0.03%)</title><rect x="29.4843%" y="485" width="0.0279%" height="15" fill="rgb(236,68,12)" fg:x="453718" fg:w="429"/><text x="29.7343%" y="495.50"></text></g><g><title>btrfs_search_slot (201 samples, 0.01%)</title><rect x="29.5122%" y="485" width="0.0131%" height="15" fill="rgb(225,194,26)" fg:x="454147" fg:w="201"/><text x="29.7622%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (199 samples, 0.01%)</title><rect x="29.5263%" y="421" width="0.0129%" height="15" fill="rgb(231,84,39)" fg:x="454365" fg:w="199"/><text x="29.7763%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (222 samples, 0.01%)</title><rect x="29.5262%" y="437" width="0.0144%" height="15" fill="rgb(210,11,45)" fg:x="454363" fg:w="222"/><text x="29.7762%" y="447.50"></text></g><g><title>__btrfs_tree_lock (192 samples, 0.01%)</title><rect x="29.5421%" y="421" width="0.0125%" height="15" fill="rgb(224,54,52)" fg:x="454607" fg:w="192"/><text x="29.7921%" y="431.50"></text></g><g><title>btrfs_lock_root_node (205 samples, 0.01%)</title><rect x="29.5419%" y="437" width="0.0133%" height="15" fill="rgb(238,102,14)" fg:x="454605" fg:w="205"/><text x="29.7919%" y="447.50"></text></g><g><title>btrfs_search_slot (576 samples, 0.04%)</title><rect x="29.5255%" y="453" width="0.0374%" height="15" fill="rgb(243,160,52)" fg:x="454352" fg:w="576"/><text x="29.7755%" y="463.50"></text></g><g><title>btrfs_get_token_32 (199 samples, 0.01%)</title><rect x="29.5653%" y="437" width="0.0129%" height="15" fill="rgb(216,114,19)" fg:x="454964" fg:w="199"/><text x="29.8153%" y="447.50"></text></g><g><title>btrfs_set_token_32 (165 samples, 0.01%)</title><rect x="29.5794%" y="437" width="0.0107%" height="15" fill="rgb(244,166,37)" fg:x="455182" fg:w="165"/><text x="29.8294%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (1,117 samples, 0.07%)</title><rect x="29.5254%" y="469" width="0.0726%" height="15" fill="rgb(246,29,44)" fg:x="454351" fg:w="1117"/><text x="29.7754%" y="479.50"></text></g><g><title>setup_items_for_insert (540 samples, 0.04%)</title><rect x="29.5629%" y="453" width="0.0351%" height="15" fill="rgb(215,56,53)" fg:x="454928" fg:w="540"/><text x="29.8129%" y="463.50"></text></g><g><title>insert_dir_log_key (1,153 samples, 0.07%)</title><rect x="29.5252%" y="485" width="0.0749%" height="15" fill="rgb(217,60,2)" fg:x="454348" fg:w="1153"/><text x="29.7752%" y="495.50"></text></g><g><title>__kmalloc (156 samples, 0.01%)</title><rect x="29.6027%" y="469" width="0.0101%" height="15" fill="rgb(207,26,24)" fg:x="455541" fg:w="156"/><text x="29.8527%" y="479.50"></text></g><g><title>btrfs_search_slot (296 samples, 0.02%)</title><rect x="29.6156%" y="453" width="0.0192%" height="15" fill="rgb(252,210,15)" fg:x="455739" fg:w="296"/><text x="29.8656%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (563 samples, 0.04%)</title><rect x="29.6156%" y="469" width="0.0366%" height="15" fill="rgb(253,209,26)" fg:x="455739" fg:w="563"/><text x="29.8656%" y="479.50"></text></g><g><title>setup_items_for_insert (267 samples, 0.02%)</title><rect x="29.6348%" y="453" width="0.0174%" height="15" fill="rgb(238,170,14)" fg:x="456035" fg:w="267"/><text x="29.8848%" y="463.50"></text></g><g><title>btrfs_release_path (190 samples, 0.01%)</title><rect x="29.6524%" y="469" width="0.0123%" height="15" fill="rgb(216,178,15)" fg:x="456305" fg:w="190"/><text x="29.9024%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (243 samples, 0.02%)</title><rect x="29.6874%" y="405" width="0.0158%" height="15" fill="rgb(250,197,2)" fg:x="456844" fg:w="243"/><text x="29.9374%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (220 samples, 0.01%)</title><rect x="29.6889%" y="389" width="0.0143%" height="15" fill="rgb(212,70,42)" fg:x="456867" fg:w="220"/><text x="29.9389%" y="399.50"></text></g><g><title>prepare_to_wait_event (288 samples, 0.02%)</title><rect x="29.6848%" y="421" width="0.0187%" height="15" fill="rgb(227,213,9)" fg:x="456803" fg:w="288"/><text x="29.9348%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (312 samples, 0.02%)</title><rect x="29.7035%" y="421" width="0.0203%" height="15" fill="rgb(245,99,25)" fg:x="457091" fg:w="312"/><text x="29.9535%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (207 samples, 0.01%)</title><rect x="29.7103%" y="405" width="0.0135%" height="15" fill="rgb(250,82,29)" fg:x="457196" fg:w="207"/><text x="29.9603%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (204 samples, 0.01%)</title><rect x="29.7332%" y="373" width="0.0133%" height="15" fill="rgb(241,226,54)" fg:x="457548" fg:w="204"/><text x="29.9832%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (201 samples, 0.01%)</title><rect x="29.7334%" y="357" width="0.0131%" height="15" fill="rgb(221,99,41)" fg:x="457551" fg:w="201"/><text x="29.9834%" y="367.50"></text></g><g><title>native_write_msr (197 samples, 0.01%)</title><rect x="29.7336%" y="341" width="0.0128%" height="15" fill="rgb(213,90,21)" fg:x="457555" fg:w="197"/><text x="29.9836%" y="351.50"></text></g><g><title>finish_task_switch (231 samples, 0.02%)</title><rect x="29.7319%" y="389" width="0.0150%" height="15" fill="rgb(205,208,24)" fg:x="457529" fg:w="231"/><text x="29.9819%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (1,280 samples, 0.08%)</title><rect x="29.6710%" y="437" width="0.0832%" height="15" fill="rgb(246,31,12)" fg:x="456591" fg:w="1280"/><text x="29.9210%" y="447.50"></text></g><g><title>schedule (468 samples, 0.03%)</title><rect x="29.7237%" y="421" width="0.0304%" height="15" fill="rgb(213,154,6)" fg:x="457403" fg:w="468"/><text x="29.9737%" y="431.50"></text></g><g><title>__schedule (458 samples, 0.03%)</title><rect x="29.7244%" y="405" width="0.0298%" height="15" fill="rgb(222,163,29)" fg:x="457413" fg:w="458"/><text x="29.9744%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (1,384 samples, 0.09%)</title><rect x="29.6704%" y="453" width="0.0899%" height="15" fill="rgb(227,201,8)" fg:x="456582" fg:w="1384"/><text x="29.9204%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (198 samples, 0.01%)</title><rect x="29.7718%" y="453" width="0.0129%" height="15" fill="rgb(233,9,32)" fg:x="458143" fg:w="198"/><text x="30.0218%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (273 samples, 0.02%)</title><rect x="29.7847%" y="453" width="0.0177%" height="15" fill="rgb(217,54,24)" fg:x="458341" fg:w="273"/><text x="30.0347%" y="463.50"></text></g><g><title>btrfs_search_slot (2,156 samples, 0.14%)</title><rect x="29.6647%" y="469" width="0.1401%" height="15" fill="rgb(235,192,0)" fg:x="456495" fg:w="2156"/><text x="29.9147%" y="479.50"></text></g><g><title>overwrite_item (3,392 samples, 0.22%)</title><rect x="29.6001%" y="485" width="0.2204%" height="15" fill="rgb(235,45,9)" fg:x="455501" fg:w="3392"/><text x="29.8501%" y="495.50"></text></g><g><title>log_directory_changes (5,376 samples, 0.35%)</title><rect x="29.4749%" y="517" width="0.3494%" height="15" fill="rgb(246,42,40)" fg:x="453573" fg:w="5376"/><text x="29.7249%" y="527.50"></text></g><g><title>log_dir_items (5,372 samples, 0.35%)</title><rect x="29.4751%" y="501" width="0.3491%" height="15" fill="rgb(248,111,24)" fg:x="453577" fg:w="5372"/><text x="29.7251%" y="511.50"></text></g><g><title>btrfs_log_inode (7,341 samples, 0.48%)</title><rect x="29.3475%" y="533" width="0.4770%" height="15" fill="rgb(249,65,22)" fg:x="451613" fg:w="7341"/><text x="29.5975%" y="543.50"></text></g><g><title>btrfs_search_forward (362 samples, 0.02%)</title><rect x="29.8274%" y="533" width="0.0235%" height="15" fill="rgb(238,111,51)" fg:x="458998" fg:w="362"/><text x="30.0774%" y="543.50"></text></g><g><title>log_new_dir_dentries (7,893 samples, 0.51%)</title><rect x="29.3409%" y="549" width="0.5129%" height="15" fill="rgb(250,118,22)" fg:x="451512" fg:w="7893"/><text x="29.5909%" y="559.50"></text></g><g><title>btrfs_log_new_name (41,249 samples, 2.68%)</title><rect x="27.1820%" y="581" width="2.6805%" height="15" fill="rgb(234,84,26)" fg:x="418289" fg:w="41249"/><text x="27.4320%" y="591.50">bt..</text></g><g><title>btrfs_log_inode_parent (41,044 samples, 2.67%)</title><rect x="27.1953%" y="565" width="2.6672%" height="15" fill="rgb(243,172,12)" fg:x="418494" fg:w="41044"/><text x="27.4453%" y="575.50">bt..</text></g><g><title>_raw_spin_lock (227 samples, 0.01%)</title><rect x="29.9427%" y="533" width="0.0148%" height="15" fill="rgb(236,150,49)" fg:x="460772" fg:w="227"/><text x="30.1927%" y="543.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,122 samples, 0.07%)</title><rect x="29.9013%" y="549" width="0.0729%" height="15" fill="rgb(225,197,26)" fg:x="460135" fg:w="1122"/><text x="30.1513%" y="559.50"></text></g><g><title>btrfs_block_rsv_migrate (455 samples, 0.03%)</title><rect x="29.9749%" y="549" width="0.0296%" height="15" fill="rgb(214,17,42)" fg:x="461268" fg:w="455"/><text x="30.2249%" y="559.50"></text></g><g><title>_raw_spin_lock (396 samples, 0.03%)</title><rect x="29.9787%" y="533" width="0.0257%" height="15" fill="rgb(224,165,40)" fg:x="461327" fg:w="396"/><text x="30.2287%" y="543.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,102 samples, 0.07%)</title><rect x="30.0045%" y="549" width="0.0716%" height="15" fill="rgb(246,100,4)" fg:x="461723" fg:w="1102"/><text x="30.2545%" y="559.50"></text></g><g><title>btrfs_get_delayed_node (1,081 samples, 0.07%)</title><rect x="30.0058%" y="533" width="0.0702%" height="15" fill="rgb(222,103,0)" fg:x="461744" fg:w="1081"/><text x="30.2558%" y="543.50"></text></g><g><title>inode_get_bytes (189 samples, 0.01%)</title><rect x="30.0840%" y="533" width="0.0123%" height="15" fill="rgb(227,189,26)" fg:x="462947" fg:w="189"/><text x="30.3340%" y="543.50"></text></g><g><title>_raw_spin_lock (175 samples, 0.01%)</title><rect x="30.0849%" y="517" width="0.0114%" height="15" fill="rgb(214,202,17)" fg:x="462961" fg:w="175"/><text x="30.3349%" y="527.50"></text></g><g><title>fill_stack_inode_item (385 samples, 0.03%)</title><rect x="30.0761%" y="549" width="0.0250%" height="15" fill="rgb(229,111,3)" fg:x="462825" fg:w="385"/><text x="30.3261%" y="559.50"></text></g><g><title>mutex_lock (289 samples, 0.02%)</title><rect x="30.1011%" y="549" width="0.0188%" height="15" fill="rgb(229,172,15)" fg:x="463210" fg:w="289"/><text x="30.3511%" y="559.50"></text></g><g><title>btrfs_delayed_update_inode (3,855 samples, 0.25%)</title><rect x="29.8774%" y="565" width="0.2505%" height="15" fill="rgb(230,224,35)" fg:x="459767" fg:w="3855"/><text x="30.1274%" y="575.50"></text></g><g><title>_raw_spin_lock (162 samples, 0.01%)</title><rect x="30.1299%" y="549" width="0.0105%" height="15" fill="rgb(251,141,6)" fg:x="463653" fg:w="162"/><text x="30.3799%" y="559.50"></text></g><g><title>btrfs_update_inode (4,427 samples, 0.29%)</title><rect x="29.8639%" y="581" width="0.2877%" height="15" fill="rgb(225,208,6)" fg:x="459559" fg:w="4427"/><text x="30.1139%" y="591.50"></text></g><g><title>btrfs_update_root_times (364 samples, 0.02%)</title><rect x="30.1279%" y="565" width="0.0237%" height="15" fill="rgb(246,181,16)" fg:x="463622" fg:w="364"/><text x="30.3779%" y="575.50"></text></g><g><title>ktime_get_real_ts64 (171 samples, 0.01%)</title><rect x="30.1404%" y="549" width="0.0111%" height="15" fill="rgb(227,129,36)" fg:x="463815" fg:w="171"/><text x="30.3904%" y="559.50"></text></g><g><title>_raw_spin_lock (176 samples, 0.01%)</title><rect x="30.1749%" y="549" width="0.0114%" height="15" fill="rgb(248,117,24)" fg:x="464345" fg:w="176"/><text x="30.4249%" y="559.50"></text></g><g><title>__d_instantiate (520 samples, 0.03%)</title><rect x="30.1574%" y="565" width="0.0338%" height="15" fill="rgb(214,185,35)" fg:x="464076" fg:w="520"/><text x="30.4074%" y="575.50"></text></g><g><title>d_instantiate (751 samples, 0.05%)</title><rect x="30.1551%" y="581" width="0.0488%" height="15" fill="rgb(236,150,34)" fg:x="464041" fg:w="751"/><text x="30.4051%" y="591.50"></text></g><g><title>_raw_spin_lock (431 samples, 0.03%)</title><rect x="30.3089%" y="549" width="0.0280%" height="15" fill="rgb(243,228,27)" fg:x="466408" fg:w="431"/><text x="30.5589%" y="559.50"></text></g><g><title>_raw_spin_lock (997 samples, 0.06%)</title><rect x="30.3835%" y="517" width="0.0648%" height="15" fill="rgb(245,77,44)" fg:x="467555" fg:w="997"/><text x="30.6335%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (443 samples, 0.03%)</title><rect x="30.4195%" y="501" width="0.0288%" height="15" fill="rgb(235,214,42)" fg:x="468109" fg:w="443"/><text x="30.6695%" y="511.50"></text></g><g><title>_raw_spin_lock (197 samples, 0.01%)</title><rect x="30.5136%" y="485" width="0.0128%" height="15" fill="rgb(221,74,3)" fg:x="469557" fg:w="197"/><text x="30.7636%" y="495.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,202 samples, 0.08%)</title><rect x="30.4483%" y="517" width="0.0781%" height="15" fill="rgb(206,121,29)" fg:x="468553" fg:w="1202"/><text x="30.6983%" y="527.50"></text></g><g><title>btrfs_reduce_alloc_profile (513 samples, 0.03%)</title><rect x="30.4931%" y="501" width="0.0333%" height="15" fill="rgb(249,131,53)" fg:x="469242" fg:w="513"/><text x="30.7431%" y="511.50"></text></g><g><title>btrfs_get_alloc_profile (169 samples, 0.01%)</title><rect x="30.5448%" y="501" width="0.0110%" height="15" fill="rgb(236,170,29)" fg:x="470038" fg:w="169"/><text x="30.7948%" y="511.50"></text></g><g><title>calc_available_free_space.isra.0 (903 samples, 0.06%)</title><rect x="30.5264%" y="517" width="0.0587%" height="15" fill="rgb(247,96,15)" fg:x="469755" fg:w="903"/><text x="30.7764%" y="527.50"></text></g><g><title>btrfs_reduce_alloc_profile (451 samples, 0.03%)</title><rect x="30.5558%" y="501" width="0.0293%" height="15" fill="rgb(211,210,7)" fg:x="470207" fg:w="451"/><text x="30.8058%" y="511.50"></text></g><g><title>_raw_spin_lock (264 samples, 0.02%)</title><rect x="30.5680%" y="485" width="0.0172%" height="15" fill="rgb(240,88,50)" fg:x="470394" fg:w="264"/><text x="30.8180%" y="495.50"></text></g><g><title>__reserve_bytes (3,457 samples, 0.22%)</title><rect x="30.3607%" y="533" width="0.2246%" height="15" fill="rgb(209,229,26)" fg:x="467204" fg:w="3457"/><text x="30.6107%" y="543.50"></text></g><g><title>btrfs_block_rsv_add (4,336 samples, 0.28%)</title><rect x="30.3036%" y="565" width="0.2818%" height="15" fill="rgb(210,68,23)" fg:x="466326" fg:w="4336"/><text x="30.5536%" y="575.50"></text></g><g><title>btrfs_reserve_metadata_bytes (3,823 samples, 0.25%)</title><rect x="30.3369%" y="549" width="0.2484%" height="15" fill="rgb(229,180,13)" fg:x="466839" fg:w="3823"/><text x="30.5869%" y="559.50"></text></g><g><title>_raw_spin_lock (296 samples, 0.02%)</title><rect x="30.6149%" y="549" width="0.0192%" height="15" fill="rgb(236,53,44)" fg:x="471116" fg:w="296"/><text x="30.8649%" y="559.50"></text></g><g><title>join_transaction (677 samples, 0.04%)</title><rect x="30.5902%" y="565" width="0.0440%" height="15" fill="rgb(244,214,29)" fg:x="470737" fg:w="677"/><text x="30.8402%" y="575.50"></text></g><g><title>kmem_cache_alloc (584 samples, 0.04%)</title><rect x="30.6342%" y="565" width="0.0380%" height="15" fill="rgb(220,75,29)" fg:x="471414" fg:w="584"/><text x="30.8842%" y="575.50"></text></g><g><title>_raw_spin_lock (381 samples, 0.02%)</title><rect x="30.6859%" y="549" width="0.0248%" height="15" fill="rgb(214,183,37)" fg:x="472209" fg:w="381"/><text x="30.9359%" y="559.50"></text></g><g><title>btrfs_link (198,215 samples, 12.88%)</title><rect x="17.8310%" y="597" width="12.8807%" height="15" fill="rgb(239,117,29)" fg:x="274392" fg:w="198215"/><text x="18.0810%" y="607.50">btrfs_link</text></g><g><title>start_transaction (7,650 samples, 0.50%)</title><rect x="30.2146%" y="581" width="0.4971%" height="15" fill="rgb(237,171,35)" fg:x="464957" fg:w="7650"/><text x="30.4646%" y="591.50"></text></g><g><title>wait_current_trans (609 samples, 0.04%)</title><rect x="30.6722%" y="565" width="0.0396%" height="15" fill="rgb(229,178,53)" fg:x="471998" fg:w="609"/><text x="30.9222%" y="575.50"></text></g><g><title>down_write (206 samples, 0.01%)</title><rect x="30.7118%" y="597" width="0.0134%" height="15" fill="rgb(210,102,19)" fg:x="472607" fg:w="206"/><text x="30.9618%" y="607.50"></text></g><g><title>fsnotify (518 samples, 0.03%)</title><rect x="30.7277%" y="597" width="0.0337%" height="15" fill="rgb(235,127,22)" fg:x="472852" fg:w="518"/><text x="30.9777%" y="607.50"></text></g><g><title>btrfs_permission (212 samples, 0.01%)</title><rect x="30.7668%" y="581" width="0.0138%" height="15" fill="rgb(244,31,31)" fg:x="473454" fg:w="212"/><text x="31.0168%" y="591.50"></text></g><g><title>inode_permission.part.0 (318 samples, 0.02%)</title><rect x="30.7613%" y="597" width="0.0207%" height="15" fill="rgb(231,43,21)" fg:x="473370" fg:w="318"/><text x="31.0113%" y="607.50"></text></g><g><title>map_id_up (231 samples, 0.02%)</title><rect x="30.7820%" y="597" width="0.0150%" height="15" fill="rgb(217,131,35)" fg:x="473688" fg:w="231"/><text x="31.0320%" y="607.50"></text></g><g><title>__x64_sys_link (254,734 samples, 16.55%)</title><rect x="14.2646%" y="645" width="16.5536%" height="15" fill="rgb(221,149,4)" fg:x="219511" fg:w="254734"/><text x="14.5146%" y="655.50">__x64_sys_link</text></g><g><title>do_linkat (254,706 samples, 16.55%)</title><rect x="14.2665%" y="629" width="16.5517%" height="15" fill="rgb(232,170,28)" fg:x="219539" fg:w="254706"/><text x="14.5165%" y="639.50">do_linkat</text></g><g><title>vfs_link (200,608 samples, 13.04%)</title><rect x="17.7819%" y="613" width="13.0363%" height="15" fill="rgb(238,56,10)" fg:x="273637" fg:w="200608"/><text x="18.0319%" y="623.50">vfs_link</text></g><g><title>up_write (175 samples, 0.01%)</title><rect x="30.8068%" y="597" width="0.0114%" height="15" fill="rgb(235,196,14)" fg:x="474070" fg:w="175"/><text x="31.0568%" y="607.50"></text></g><g><title>do_syscall_64 (254,972 samples, 16.57%)</title><rect x="14.2530%" y="661" width="16.5690%" height="15" fill="rgb(216,45,48)" fg:x="219332" fg:w="254972"/><text x="14.5030%" y="671.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (255,590 samples, 16.61%)</title><rect x="14.2397%" y="677" width="16.6092%" height="15" fill="rgb(238,213,17)" fg:x="219127" fg:w="255590"/><text x="14.4897%" y="687.50">entry_SYSCALL_64_after_hwf..</text></g><g><title>syscall_exit_to_user_mode (413 samples, 0.03%)</title><rect x="30.8220%" y="661" width="0.0268%" height="15" fill="rgb(212,13,2)" fg:x="474304" fg:w="413"/><text x="31.0720%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (344 samples, 0.02%)</title><rect x="30.8265%" y="645" width="0.0224%" height="15" fill="rgb(240,114,20)" fg:x="474373" fg:w="344"/><text x="31.0765%" y="655.50"></text></g><g><title>syscall_return_via_sysret (223 samples, 0.01%)</title><rect x="30.8502%" y="677" width="0.0145%" height="15" fill="rgb(228,41,40)" fg:x="474738" fg:w="223"/><text x="31.1002%" y="687.50"></text></g><g><title>__GI___link (256,646 samples, 16.68%)</title><rect x="14.1870%" y="693" width="16.6778%" height="15" fill="rgb(244,132,35)" fg:x="218316" fg:w="256646"/><text x="14.4370%" y="703.50">__GI___link</text></g><g><title>entry_SYSCALL_64 (565 samples, 0.04%)</title><rect x="30.9033%" y="677" width="0.0367%" height="15" fill="rgb(253,189,4)" fg:x="475555" fg:w="565"/><text x="31.1533%" y="687.50"></text></g><g><title>_copy_to_user (876 samples, 0.06%)</title><rect x="31.0082%" y="613" width="0.0569%" height="15" fill="rgb(224,37,19)" fg:x="477169" fg:w="876"/><text x="31.2582%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (702 samples, 0.05%)</title><rect x="31.0195%" y="597" width="0.0456%" height="15" fill="rgb(235,223,18)" fg:x="477343" fg:w="702"/><text x="31.2695%" y="607.50"></text></g><g><title>from_kgid_munged (172 samples, 0.01%)</title><rect x="31.0653%" y="613" width="0.0112%" height="15" fill="rgb(235,163,25)" fg:x="478047" fg:w="172"/><text x="31.3153%" y="623.50"></text></g><g><title>map_id_up (155 samples, 0.01%)</title><rect x="31.0664%" y="597" width="0.0101%" height="15" fill="rgb(217,145,28)" fg:x="478064" fg:w="155"/><text x="31.3164%" y="607.50"></text></g><g><title>cp_new_stat (1,829 samples, 0.12%)</title><rect x="30.9755%" y="629" width="0.1189%" height="15" fill="rgb(223,223,32)" fg:x="476666" fg:w="1829"/><text x="31.2255%" y="639.50"></text></g><g><title>from_kuid_munged (276 samples, 0.02%)</title><rect x="31.0764%" y="613" width="0.0179%" height="15" fill="rgb(227,189,39)" fg:x="478219" fg:w="276"/><text x="31.3264%" y="623.50"></text></g><g><title>map_id_up (171 samples, 0.01%)</title><rect x="31.0833%" y="597" width="0.0111%" height="15" fill="rgb(248,10,22)" fg:x="478324" fg:w="171"/><text x="31.3333%" y="607.50"></text></g><g><title>_raw_spin_lock (227 samples, 0.01%)</title><rect x="31.1986%" y="597" width="0.0148%" height="15" fill="rgb(248,46,39)" fg:x="480099" fg:w="227"/><text x="31.4486%" y="607.50"></text></g><g><title>generic_fillattr (182 samples, 0.01%)</title><rect x="31.2137%" y="597" width="0.0118%" height="15" fill="rgb(248,113,48)" fg:x="480331" fg:w="182"/><text x="31.4637%" y="607.50"></text></g><g><title>inode_get_bytes (255 samples, 0.02%)</title><rect x="31.2255%" y="597" width="0.0166%" height="15" fill="rgb(245,16,25)" fg:x="480513" fg:w="255"/><text x="31.4755%" y="607.50"></text></g><g><title>_raw_spin_lock (218 samples, 0.01%)</title><rect x="31.2279%" y="581" width="0.0142%" height="15" fill="rgb(249,152,16)" fg:x="480550" fg:w="218"/><text x="31.4779%" y="591.50"></text></g><g><title>btrfs_getattr (2,077 samples, 0.13%)</title><rect x="31.1072%" y="613" width="0.1350%" height="15" fill="rgb(250,16,1)" fg:x="478692" fg:w="2077"/><text x="31.3572%" y="623.50"></text></g><g><title>kmem_cache_free (978 samples, 0.06%)</title><rect x="31.2726%" y="597" width="0.0636%" height="15" fill="rgb(249,138,3)" fg:x="481238" fg:w="978"/><text x="31.5226%" y="607.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (186 samples, 0.01%)</title><rect x="31.3241%" y="581" width="0.0121%" height="15" fill="rgb(227,71,41)" fg:x="482030" fg:w="186"/><text x="31.5741%" y="591.50"></text></g><g><title>__legitimize_mnt (491 samples, 0.03%)</title><rect x="31.3772%" y="533" width="0.0319%" height="15" fill="rgb(209,184,23)" fg:x="482847" fg:w="491"/><text x="31.6272%" y="543.50"></text></g><g><title>__legitimize_path (890 samples, 0.06%)</title><rect x="31.3686%" y="549" width="0.0578%" height="15" fill="rgb(223,215,31)" fg:x="482714" fg:w="890"/><text x="31.6186%" y="559.50"></text></g><g><title>lockref_get_not_dead (264 samples, 0.02%)</title><rect x="31.4092%" y="533" width="0.0172%" height="15" fill="rgb(210,146,28)" fg:x="483340" fg:w="264"/><text x="31.6592%" y="543.50"></text></g><g><title>complete_walk (1,220 samples, 0.08%)</title><rect x="31.3565%" y="581" width="0.0793%" height="15" fill="rgb(209,183,41)" fg:x="482528" fg:w="1220"/><text x="31.6065%" y="591.50"></text></g><g><title>try_to_unlazy (1,150 samples, 0.07%)</title><rect x="31.3610%" y="565" width="0.0747%" height="15" fill="rgb(209,224,45)" fg:x="482598" fg:w="1150"/><text x="31.6110%" y="575.50"></text></g><g><title>btrfs_permission (402 samples, 0.03%)</title><rect x="32.4134%" y="549" width="0.0261%" height="15" fill="rgb(224,209,51)" fg:x="498792" fg:w="402"/><text x="32.6634%" y="559.50"></text></g><g><title>inode_permission.part.0 (8,721 samples, 0.57%)</title><rect x="32.0103%" y="565" width="0.5667%" height="15" fill="rgb(223,17,39)" fg:x="492590" fg:w="8721"/><text x="32.2603%" y="575.50"></text></g><g><title>generic_permission (2,117 samples, 0.14%)</title><rect x="32.4395%" y="549" width="0.1376%" height="15" fill="rgb(234,204,37)" fg:x="499194" fg:w="2117"/><text x="32.6895%" y="559.50"></text></g><g><title>security_inode_permission (981 samples, 0.06%)</title><rect x="32.5771%" y="565" width="0.0637%" height="15" fill="rgb(236,120,5)" fg:x="501312" fg:w="981"/><text x="32.8271%" y="575.50"></text></g><g><title>__d_lookup_rcu (11,526 samples, 0.75%)</title><rect x="33.0089%" y="533" width="0.7490%" height="15" fill="rgb(248,97,27)" fg:x="507957" fg:w="11526"/><text x="33.2589%" y="543.50"></text></g><g><title>lookup_fast (14,235 samples, 0.93%)</title><rect x="32.8333%" y="549" width="0.9250%" height="15" fill="rgb(240,66,17)" fg:x="505255" fg:w="14235"/><text x="33.0833%" y="559.50"></text></g><g><title>page_put_link (514 samples, 0.03%)</title><rect x="33.7584%" y="549" width="0.0334%" height="15" fill="rgb(210,79,3)" fg:x="519490" fg:w="514"/><text x="34.0084%" y="559.50"></text></g><g><title>__lookup_mnt (447 samples, 0.03%)</title><rect x="34.0252%" y="533" width="0.0290%" height="15" fill="rgb(214,176,27)" fg:x="523596" fg:w="447"/><text x="34.2752%" y="543.50"></text></g><g><title>atime_needs_update (550 samples, 0.04%)</title><rect x="34.0561%" y="533" width="0.0357%" height="15" fill="rgb(235,185,3)" fg:x="524072" fg:w="550"/><text x="34.3061%" y="543.50"></text></g><g><title>current_time (279 samples, 0.02%)</title><rect x="34.0738%" y="517" width="0.0181%" height="15" fill="rgb(227,24,12)" fg:x="524343" fg:w="279"/><text x="34.3238%" y="527.50"></text></g><g><title>pagecache_get_page (2,194 samples, 0.14%)</title><rect x="34.1135%" y="517" width="0.1426%" height="15" fill="rgb(252,169,48)" fg:x="524955" fg:w="2194"/><text x="34.3635%" y="527.50"></text></g><g><title>find_get_entry (1,924 samples, 0.13%)</title><rect x="34.1311%" y="501" width="0.1250%" height="15" fill="rgb(212,65,1)" fg:x="525225" fg:w="1924"/><text x="34.3811%" y="511.50"></text></g><g><title>xas_load (465 samples, 0.03%)</title><rect x="34.2259%" y="485" width="0.0302%" height="15" fill="rgb(242,39,24)" fg:x="526684" fg:w="465"/><text x="34.4759%" y="495.50"></text></g><g><title>xas_start (430 samples, 0.03%)</title><rect x="34.2282%" y="469" width="0.0279%" height="15" fill="rgb(249,32,23)" fg:x="526719" fg:w="430"/><text x="34.4782%" y="479.50"></text></g><g><title>page_get_link (2,415 samples, 0.16%)</title><rect x="34.0992%" y="533" width="0.1569%" height="15" fill="rgb(251,195,23)" fg:x="524735" fg:w="2415"/><text x="34.3492%" y="543.50"></text></g><g><title>link_path_walk.part.0 (43,492 samples, 2.83%)</title><rect x="31.4357%" y="581" width="2.8263%" height="15" fill="rgb(236,174,8)" fg:x="483748" fg:w="43492"/><text x="31.6857%" y="591.50">li..</text></g><g><title>walk_component (24,947 samples, 1.62%)</title><rect x="32.6409%" y="565" width="1.6211%" height="15" fill="rgb(220,197,8)" fg:x="502293" fg:w="24947"/><text x="32.8909%" y="575.50"></text></g><g><title>step_into (7,235 samples, 0.47%)</title><rect x="33.7919%" y="549" width="0.4702%" height="15" fill="rgb(240,108,37)" fg:x="520005" fg:w="7235"/><text x="34.0419%" y="559.50"></text></g><g><title>path_init (1,322 samples, 0.09%)</title><rect x="34.2620%" y="581" width="0.0859%" height="15" fill="rgb(232,176,24)" fg:x="527240" fg:w="1322"/><text x="34.5120%" y="591.50"></text></g><g><title>nd_jump_root (847 samples, 0.06%)</title><rect x="34.2929%" y="565" width="0.0550%" height="15" fill="rgb(243,35,29)" fg:x="527715" fg:w="847"/><text x="34.5429%" y="575.50"></text></g><g><title>set_root (673 samples, 0.04%)</title><rect x="34.3042%" y="549" width="0.0437%" height="15" fill="rgb(210,37,18)" fg:x="527889" fg:w="673"/><text x="34.5542%" y="559.50"></text></g><g><title>terminate_walk (358 samples, 0.02%)</title><rect x="34.3479%" y="581" width="0.0233%" height="15" fill="rgb(224,184,40)" fg:x="528562" fg:w="358"/><text x="34.5979%" y="591.50"></text></g><g><title>__d_lookup_rcu (2,030 samples, 0.13%)</title><rect x="34.3865%" y="549" width="0.1319%" height="15" fill="rgb(236,39,29)" fg:x="529155" fg:w="2030"/><text x="34.6365%" y="559.50"></text></g><g><title>lookup_fast (2,147 samples, 0.14%)</title><rect x="34.3790%" y="565" width="0.1395%" height="15" fill="rgb(232,48,39)" fg:x="529040" fg:w="2147"/><text x="34.6290%" y="575.50"></text></g><g><title>path_lookupat (49,095 samples, 3.19%)</title><rect x="31.3362%" y="597" width="3.1904%" height="15" fill="rgb(236,34,42)" fg:x="482216" fg:w="49095"/><text x="31.5862%" y="607.50">pat..</text></g><g><title>walk_component (2,391 samples, 0.16%)</title><rect x="34.3712%" y="581" width="0.1554%" height="15" fill="rgb(243,106,37)" fg:x="528920" fg:w="2391"/><text x="34.6212%" y="591.50"></text></g><g><title>filename_lookup (50,668 samples, 3.29%)</title><rect x="31.2422%" y="613" width="3.2926%" height="15" fill="rgb(218,96,6)" fg:x="480769" fg:w="50668"/><text x="31.4922%" y="623.50">fil..</text></g><g><title>mntput_no_expire (155 samples, 0.01%)</title><rect x="34.5364%" y="613" width="0.0101%" height="15" fill="rgb(235,130,12)" fg:x="531462" fg:w="155"/><text x="34.7864%" y="623.50"></text></g><g><title>__schedule (164 samples, 0.01%)</title><rect x="34.5576%" y="565" width="0.0107%" height="15" fill="rgb(231,95,0)" fg:x="531788" fg:w="164"/><text x="34.8076%" y="575.50"></text></g><g><title>_cond_resched (221 samples, 0.01%)</title><rect x="34.5562%" y="581" width="0.0144%" height="15" fill="rgb(228,12,23)" fg:x="531767" fg:w="221"/><text x="34.8062%" y="591.50"></text></g><g><title>btrfs_dentry_delete (183 samples, 0.01%)</title><rect x="34.5708%" y="581" width="0.0119%" height="15" fill="rgb(216,12,1)" fg:x="531992" fg:w="183"/><text x="34.8208%" y="591.50"></text></g><g><title>lockref_put_or_lock (279 samples, 0.02%)</title><rect x="34.5827%" y="581" width="0.0181%" height="15" fill="rgb(219,59,3)" fg:x="532175" fg:w="279"/><text x="34.8327%" y="591.50"></text></g><g><title>_raw_spin_lock (216 samples, 0.01%)</title><rect x="34.5868%" y="565" width="0.0140%" height="15" fill="rgb(215,208,46)" fg:x="532238" fg:w="216"/><text x="34.8368%" y="575.50"></text></g><g><title>path_put (843 samples, 0.05%)</title><rect x="34.5464%" y="613" width="0.0548%" height="15" fill="rgb(254,224,29)" fg:x="531617" fg:w="843"/><text x="34.7964%" y="623.50"></text></g><g><title>dput (822 samples, 0.05%)</title><rect x="34.5478%" y="597" width="0.0534%" height="15" fill="rgb(232,14,29)" fg:x="531638" fg:w="822"/><text x="34.7978%" y="607.50"></text></g><g><title>apparmor_inode_getattr (283 samples, 0.02%)</title><rect x="34.6726%" y="597" width="0.0184%" height="15" fill="rgb(208,45,52)" fg:x="533559" fg:w="283"/><text x="34.9226%" y="607.50"></text></g><g><title>security_inode_getattr (2,692 samples, 0.17%)</title><rect x="34.6012%" y="613" width="0.1749%" height="15" fill="rgb(234,191,28)" fg:x="532460" fg:w="2692"/><text x="34.8512%" y="623.50"></text></g><g><title>tomoyo_path_perm (1,294 samples, 0.08%)</title><rect x="34.6921%" y="597" width="0.0841%" height="15" fill="rgb(244,67,43)" fg:x="533858" fg:w="1294"/><text x="34.9421%" y="607.50"></text></g><g><title>tomoyo_init_request_info (839 samples, 0.05%)</title><rect x="34.7216%" y="581" width="0.0545%" height="15" fill="rgb(236,189,24)" fg:x="534313" fg:w="839"/><text x="34.9716%" y="591.50"></text></g><g><title>tomoyo_domain (476 samples, 0.03%)</title><rect x="34.7452%" y="565" width="0.0309%" height="15" fill="rgb(239,214,33)" fg:x="534676" fg:w="476"/><text x="34.9952%" y="575.50"></text></g><g><title>memset_erms (2,006 samples, 0.13%)</title><rect x="34.8661%" y="565" width="0.1304%" height="15" fill="rgb(226,176,41)" fg:x="536536" fg:w="2006"/><text x="35.1161%" y="575.50"></text></g><g><title>kmem_cache_alloc (3,280 samples, 0.21%)</title><rect x="34.8095%" y="581" width="0.2131%" height="15" fill="rgb(248,47,8)" fg:x="535665" fg:w="3280"/><text x="35.0595%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (403 samples, 0.03%)</title><rect x="34.9965%" y="565" width="0.0262%" height="15" fill="rgb(218,81,44)" fg:x="538542" fg:w="403"/><text x="35.2465%" y="575.50"></text></g><g><title>__check_heap_object (328 samples, 0.02%)</title><rect x="35.1608%" y="549" width="0.0213%" height="15" fill="rgb(213,98,6)" fg:x="541071" fg:w="328"/><text x="35.4108%" y="559.50"></text></g><g><title>__virt_addr_valid (846 samples, 0.05%)</title><rect x="35.1821%" y="549" width="0.0550%" height="15" fill="rgb(222,85,22)" fg:x="541399" fg:w="846"/><text x="35.4321%" y="559.50"></text></g><g><title>__check_object_size (1,677 samples, 0.11%)</title><rect x="35.1353%" y="565" width="0.1090%" height="15" fill="rgb(239,46,39)" fg:x="540678" fg:w="1677"/><text x="35.3853%" y="575.50"></text></g><g><title>user_path_at_empty (7,219 samples, 0.47%)</title><rect x="34.7762%" y="613" width="0.4691%" height="15" fill="rgb(237,12,29)" fg:x="535152" fg:w="7219"/><text x="35.0262%" y="623.50"></text></g><g><title>getname_flags.part.0 (7,039 samples, 0.46%)</title><rect x="34.7879%" y="597" width="0.4574%" height="15" fill="rgb(214,77,8)" fg:x="535332" fg:w="7039"/><text x="35.0379%" y="607.50"></text></g><g><title>strncpy_from_user (3,426 samples, 0.22%)</title><rect x="35.0227%" y="581" width="0.2226%" height="15" fill="rgb(217,168,37)" fg:x="538945" fg:w="3426"/><text x="35.2727%" y="591.50"></text></g><g><title>__do_sys_newlstat (66,350 samples, 4.31%)</title><rect x="30.9634%" y="645" width="4.3117%" height="15" fill="rgb(221,217,23)" fg:x="476480" fg:w="66350"/><text x="31.2134%" y="655.50">__do_..</text></g><g><title>vfs_statx (64,335 samples, 4.18%)</title><rect x="31.0944%" y="629" width="4.1807%" height="15" fill="rgb(243,229,36)" fg:x="478495" fg:w="64335"/><text x="31.3444%" y="639.50">vfs_s..</text></g><g><title>vfs_getattr_nosec (459 samples, 0.03%)</title><rect x="35.2453%" y="613" width="0.0298%" height="15" fill="rgb(251,163,40)" fg:x="542371" fg:w="459"/><text x="35.4953%" y="623.50"></text></g><g><title>do_syscall_64 (66,663 samples, 4.33%)</title><rect x="30.9534%" y="661" width="4.3320%" height="15" fill="rgb(237,222,12)" fg:x="476326" fg:w="66663"/><text x="31.2034%" y="671.50">do_sy..</text></g><g><title>entry_SYSCALL_64_after_hwframe (67,217 samples, 4.37%)</title><rect x="30.9400%" y="677" width="4.3680%" height="15" fill="rgb(248,132,6)" fg:x="476120" fg:w="67217"/><text x="31.1900%" y="687.50">entry..</text></g><g><title>syscall_exit_to_user_mode (348 samples, 0.02%)</title><rect x="35.2854%" y="661" width="0.0226%" height="15" fill="rgb(227,167,50)" fg:x="542989" fg:w="348"/><text x="35.5354%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (242 samples, 0.02%)</title><rect x="35.2923%" y="645" width="0.0157%" height="15" fill="rgb(242,84,37)" fg:x="543095" fg:w="242"/><text x="35.5423%" y="655.50"></text></g><g><title>__GI___lxstat (68,677 samples, 4.46%)</title><rect x="30.8648%" y="693" width="4.4629%" height="15" fill="rgb(212,4,50)" fg:x="474962" fg:w="68677"/><text x="31.1148%" y="703.50">__GI_..</text></g><g><title>syscall_return_via_sysret (297 samples, 0.02%)</title><rect x="35.3084%" y="677" width="0.0193%" height="15" fill="rgb(230,228,32)" fg:x="543342" fg:w="297"/><text x="35.5584%" y="687.50"></text></g><g><title>d_lru_add (157 samples, 0.01%)</title><rect x="35.3429%" y="613" width="0.0102%" height="15" fill="rgb(248,217,23)" fg:x="543873" fg:w="157"/><text x="35.5929%" y="623.50"></text></g><g><title>dput (244 samples, 0.02%)</title><rect x="35.3394%" y="629" width="0.0159%" height="15" fill="rgb(238,197,32)" fg:x="543819" fg:w="244"/><text x="35.5894%" y="639.50"></text></g><g><title>btrfs_free_path (167 samples, 0.01%)</title><rect x="35.3608%" y="565" width="0.0109%" height="15" fill="rgb(236,106,1)" fg:x="544148" fg:w="167"/><text x="35.6108%" y="575.50"></text></g><g><title>btrfs_release_path (162 samples, 0.01%)</title><rect x="35.3611%" y="549" width="0.0105%" height="15" fill="rgb(219,228,13)" fg:x="544153" fg:w="162"/><text x="35.6111%" y="559.50"></text></g><g><title>queued_read_lock_slowpath (300 samples, 0.02%)</title><rect x="35.3938%" y="501" width="0.0195%" height="15" fill="rgb(238,30,35)" fg:x="544657" fg:w="300"/><text x="35.6438%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (193 samples, 0.01%)</title><rect x="35.4008%" y="485" width="0.0125%" height="15" fill="rgb(236,70,23)" fg:x="544764" fg:w="193"/><text x="35.6508%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (756 samples, 0.05%)</title><rect x="35.3806%" y="517" width="0.0491%" height="15" fill="rgb(249,104,48)" fg:x="544453" fg:w="756"/><text x="35.6306%" y="527.50"></text></g><g><title>schedule (252 samples, 0.02%)</title><rect x="35.4133%" y="501" width="0.0164%" height="15" fill="rgb(254,117,50)" fg:x="544957" fg:w="252"/><text x="35.6633%" y="511.50"></text></g><g><title>__schedule (250 samples, 0.02%)</title><rect x="35.4135%" y="485" width="0.0162%" height="15" fill="rgb(223,152,4)" fg:x="544959" fg:w="250"/><text x="35.6635%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (836 samples, 0.05%)</title><rect x="35.3799%" y="533" width="0.0543%" height="15" fill="rgb(245,6,2)" fg:x="544442" fg:w="836"/><text x="35.6299%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (361 samples, 0.02%)</title><rect x="35.4558%" y="469" width="0.0235%" height="15" fill="rgb(249,150,24)" fg:x="545611" fg:w="361"/><text x="35.7058%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (354 samples, 0.02%)</title><rect x="35.4563%" y="453" width="0.0230%" height="15" fill="rgb(228,185,42)" fg:x="545618" fg:w="354"/><text x="35.7063%" y="463.50"></text></g><g><title>native_write_msr (349 samples, 0.02%)</title><rect x="35.4566%" y="437" width="0.0227%" height="15" fill="rgb(226,39,33)" fg:x="545623" fg:w="349"/><text x="35.7066%" y="447.50"></text></g><g><title>finish_task_switch (385 samples, 0.03%)</title><rect x="35.4549%" y="485" width="0.0250%" height="15" fill="rgb(221,166,19)" fg:x="545597" fg:w="385"/><text x="35.7049%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (768 samples, 0.05%)</title><rect x="35.4342%" y="533" width="0.0499%" height="15" fill="rgb(209,109,2)" fg:x="545278" fg:w="768"/><text x="35.6842%" y="543.50"></text></g><g><title>schedule (544 samples, 0.04%)</title><rect x="35.4487%" y="517" width="0.0354%" height="15" fill="rgb(252,216,26)" fg:x="545502" fg:w="544"/><text x="35.6987%" y="527.50"></text></g><g><title>__schedule (538 samples, 0.03%)</title><rect x="35.4491%" y="501" width="0.0350%" height="15" fill="rgb(227,173,36)" fg:x="545508" fg:w="538"/><text x="35.6991%" y="511.50"></text></g><g><title>__wake_up_common_lock (154 samples, 0.01%)</title><rect x="35.4841%" y="533" width="0.0100%" height="15" fill="rgb(209,90,7)" fg:x="546046" fg:w="154"/><text x="35.7341%" y="543.50"></text></g><g><title>btrfs_tree_read_lock_atomic (462 samples, 0.03%)</title><rect x="35.4994%" y="533" width="0.0300%" height="15" fill="rgb(250,194,11)" fg:x="546282" fg:w="462"/><text x="35.7494%" y="543.50"></text></g><g><title>queued_read_lock_slowpath (402 samples, 0.03%)</title><rect x="35.5033%" y="517" width="0.0261%" height="15" fill="rgb(220,72,50)" fg:x="546342" fg:w="402"/><text x="35.7533%" y="527.50"></text></g><g><title>generic_bin_search.constprop.0 (227 samples, 0.01%)</title><rect x="35.5332%" y="533" width="0.0148%" height="15" fill="rgb(222,106,48)" fg:x="546801" fg:w="227"/><text x="35.7832%" y="543.50"></text></g><g><title>find_extent_buffer (310 samples, 0.02%)</title><rect x="35.5570%" y="517" width="0.0201%" height="15" fill="rgb(216,220,45)" fg:x="547168" fg:w="310"/><text x="35.8070%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (505 samples, 0.03%)</title><rect x="35.5479%" y="533" width="0.0328%" height="15" fill="rgb(234,112,18)" fg:x="547028" fg:w="505"/><text x="35.7979%" y="543.50"></text></g><g><title>btrfs_search_slot (3,230 samples, 0.21%)</title><rect x="35.3728%" y="549" width="0.2099%" height="15" fill="rgb(206,179,9)" fg:x="544334" fg:w="3230"/><text x="35.6228%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (3,291 samples, 0.21%)</title><rect x="35.3716%" y="565" width="0.2139%" height="15" fill="rgb(215,115,40)" fg:x="544315" fg:w="3291"/><text x="35.6216%" y="575.50"></text></g><g><title>btrfs_lookup (3,610 samples, 0.23%)</title><rect x="35.3569%" y="597" width="0.2346%" height="15" fill="rgb(222,69,34)" fg:x="544089" fg:w="3610"/><text x="35.6069%" y="607.50"></text></g><g><title>btrfs_lookup_dentry (3,601 samples, 0.23%)</title><rect x="35.3575%" y="581" width="0.2340%" height="15" fill="rgb(209,161,10)" fg:x="544098" fg:w="3601"/><text x="35.6075%" y="591.50"></text></g><g><title>kmem_cache_alloc (259 samples, 0.02%)</title><rect x="35.5943%" y="565" width="0.0168%" height="15" fill="rgb(217,6,38)" fg:x="547742" fg:w="259"/><text x="35.8443%" y="575.50"></text></g><g><title>__d_alloc (306 samples, 0.02%)</title><rect x="35.5919%" y="581" width="0.0199%" height="15" fill="rgb(229,229,48)" fg:x="547705" fg:w="306"/><text x="35.8419%" y="591.50"></text></g><g><title>d_alloc (329 samples, 0.02%)</title><rect x="35.5915%" y="597" width="0.0214%" height="15" fill="rgb(225,21,28)" fg:x="547699" fg:w="329"/><text x="35.8415%" y="607.50"></text></g><g><title>__lookup_hash (4,087 samples, 0.27%)</title><rect x="35.3563%" y="613" width="0.2656%" height="15" fill="rgb(206,33,13)" fg:x="544080" fg:w="4087"/><text x="35.6063%" y="623.50"></text></g><g><title>inode_permission.part.0 (401 samples, 0.03%)</title><rect x="35.6491%" y="565" width="0.0261%" height="15" fill="rgb(242,178,17)" fg:x="548585" fg:w="401"/><text x="35.8991%" y="575.50"></text></g><g><title>lookup_fast (613 samples, 0.04%)</title><rect x="35.6835%" y="549" width="0.0398%" height="15" fill="rgb(220,162,5)" fg:x="549114" fg:w="613"/><text x="35.9335%" y="559.50"></text></g><g><title>__d_lookup_rcu (516 samples, 0.03%)</title><rect x="35.6898%" y="533" width="0.0335%" height="15" fill="rgb(210,33,43)" fg:x="549211" fg:w="516"/><text x="35.9398%" y="543.50"></text></g><g><title>link_path_walk.part.0 (1,530 samples, 0.10%)</title><rect x="35.6308%" y="581" width="0.0994%" height="15" fill="rgb(216,116,54)" fg:x="548304" fg:w="1530"/><text x="35.8808%" y="591.50"></text></g><g><title>walk_component (827 samples, 0.05%)</title><rect x="35.6765%" y="565" width="0.0537%" height="15" fill="rgb(249,92,24)" fg:x="549007" fg:w="827"/><text x="35.9265%" y="575.50"></text></g><g><title>filename_parentat (1,781 samples, 0.12%)</title><rect x="35.6231%" y="613" width="0.1157%" height="15" fill="rgb(231,189,14)" fg:x="548185" fg:w="1781"/><text x="35.8731%" y="623.50"></text></g><g><title>path_parentat (1,749 samples, 0.11%)</title><rect x="35.6252%" y="597" width="0.1137%" height="15" fill="rgb(230,8,41)" fg:x="548217" fg:w="1749"/><text x="35.8752%" y="607.50"></text></g><g><title>filename_create (6,024 samples, 0.39%)</title><rect x="35.3552%" y="629" width="0.3915%" height="15" fill="rgb(249,7,27)" fg:x="544063" fg:w="6024"/><text x="35.6052%" y="639.50"></text></g><g><title>kmem_cache_alloc (155 samples, 0.01%)</title><rect x="35.7481%" y="613" width="0.0101%" height="15" fill="rgb(232,86,5)" fg:x="550108" fg:w="155"/><text x="35.9981%" y="623.50"></text></g><g><title>getname_flags.part.0 (334 samples, 0.02%)</title><rect x="35.7471%" y="629" width="0.0217%" height="15" fill="rgb(224,175,18)" fg:x="550093" fg:w="334"/><text x="35.9971%" y="639.50"></text></g><g><title>strncpy_from_user (164 samples, 0.01%)</title><rect x="35.7581%" y="613" width="0.0107%" height="15" fill="rgb(220,129,12)" fg:x="550263" fg:w="164"/><text x="36.0081%" y="623.50"></text></g><g><title>__btrfs_end_transaction (253 samples, 0.02%)</title><rect x="35.7843%" y="597" width="0.0164%" height="15" fill="rgb(210,19,36)" fg:x="550665" fg:w="253"/><text x="36.0343%" y="607.50"></text></g><g><title>btrfs_insert_delayed_dir_index (599 samples, 0.04%)</title><rect x="35.8080%" y="565" width="0.0389%" height="15" fill="rgb(219,96,14)" fg:x="551030" fg:w="599"/><text x="36.0580%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (246 samples, 0.02%)</title><rect x="35.8806%" y="485" width="0.0160%" height="15" fill="rgb(249,106,1)" fg:x="552147" fg:w="246"/><text x="36.1306%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (547 samples, 0.04%)</title><rect x="35.8708%" y="501" width="0.0355%" height="15" fill="rgb(249,155,20)" fg:x="551997" fg:w="547"/><text x="36.1208%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (605 samples, 0.04%)</title><rect x="35.8707%" y="517" width="0.0393%" height="15" fill="rgb(244,168,9)" fg:x="551995" fg:w="605"/><text x="36.1207%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (313 samples, 0.02%)</title><rect x="35.9329%" y="453" width="0.0203%" height="15" fill="rgb(216,23,50)" fg:x="552953" fg:w="313"/><text x="36.1829%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (306 samples, 0.02%)</title><rect x="35.9334%" y="437" width="0.0199%" height="15" fill="rgb(224,219,20)" fg:x="552960" fg:w="306"/><text x="36.1834%" y="447.50"></text></g><g><title>native_write_msr (303 samples, 0.02%)</title><rect x="35.9336%" y="421" width="0.0197%" height="15" fill="rgb(222,156,15)" fg:x="552963" fg:w="303"/><text x="36.1836%" y="431.50"></text></g><g><title>finish_task_switch (338 samples, 0.02%)</title><rect x="35.9317%" y="469" width="0.0220%" height="15" fill="rgb(231,97,17)" fg:x="552934" fg:w="338"/><text x="36.1817%" y="479.50"></text></g><g><title>__btrfs_tree_lock (744 samples, 0.05%)</title><rect x="35.9100%" y="517" width="0.0483%" height="15" fill="rgb(218,70,48)" fg:x="552600" fg:w="744"/><text x="36.1600%" y="527.50"></text></g><g><title>schedule (481 samples, 0.03%)</title><rect x="35.9271%" y="501" width="0.0313%" height="15" fill="rgb(212,196,52)" fg:x="552863" fg:w="481"/><text x="36.1771%" y="511.50"></text></g><g><title>__schedule (480 samples, 0.03%)</title><rect x="35.9272%" y="485" width="0.0312%" height="15" fill="rgb(243,203,18)" fg:x="552864" fg:w="480"/><text x="36.1772%" y="495.50"></text></g><g><title>btrfs_try_tree_write_lock (590 samples, 0.04%)</title><rect x="35.9632%" y="517" width="0.0383%" height="15" fill="rgb(252,125,41)" fg:x="553419" fg:w="590"/><text x="36.2132%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (549 samples, 0.04%)</title><rect x="35.9659%" y="501" width="0.0357%" height="15" fill="rgb(223,180,33)" fg:x="553460" fg:w="549"/><text x="36.2159%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (218 samples, 0.01%)</title><rect x="36.0016%" y="517" width="0.0142%" height="15" fill="rgb(254,159,46)" fg:x="554009" fg:w="218"/><text x="36.2516%" y="527.50"></text></g><g><title>find_extent_buffer (233 samples, 0.02%)</title><rect x="36.0231%" y="501" width="0.0151%" height="15" fill="rgb(254,38,10)" fg:x="554341" fg:w="233"/><text x="36.2731%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (391 samples, 0.03%)</title><rect x="36.0157%" y="517" width="0.0254%" height="15" fill="rgb(208,217,32)" fg:x="554227" fg:w="391"/><text x="36.2657%" y="527.50"></text></g><g><title>split_leaf (233 samples, 0.02%)</title><rect x="36.0411%" y="517" width="0.0151%" height="15" fill="rgb(221,120,13)" fg:x="554618" fg:w="233"/><text x="36.2911%" y="527.50"></text></g><g><title>__wake_up_common (240 samples, 0.02%)</title><rect x="36.0592%" y="485" width="0.0156%" height="15" fill="rgb(246,54,52)" fg:x="554896" fg:w="240"/><text x="36.3092%" y="495.50"></text></g><g><title>autoremove_wake_function (233 samples, 0.02%)</title><rect x="36.0597%" y="469" width="0.0151%" height="15" fill="rgb(242,34,25)" fg:x="554903" fg:w="233"/><text x="36.3097%" y="479.50"></text></g><g><title>try_to_wake_up (225 samples, 0.01%)</title><rect x="36.0602%" y="453" width="0.0146%" height="15" fill="rgb(247,209,9)" fg:x="554911" fg:w="225"/><text x="36.3102%" y="463.50"></text></g><g><title>__wake_up_common_lock (247 samples, 0.02%)</title><rect x="36.0591%" y="501" width="0.0161%" height="15" fill="rgb(228,71,26)" fg:x="554894" fg:w="247"/><text x="36.3091%" y="511.50"></text></g><g><title>btrfs_search_slot (3,294 samples, 0.21%)</title><rect x="35.8640%" y="533" width="0.2141%" height="15" fill="rgb(222,145,49)" fg:x="551892" fg:w="3294"/><text x="36.1140%" y="543.50"></text></g><g><title>unlock_up (335 samples, 0.02%)</title><rect x="36.0563%" y="517" width="0.0218%" height="15" fill="rgb(218,121,17)" fg:x="554851" fg:w="335"/><text x="36.3063%" y="527.50"></text></g><g><title>btrfs_get_token_32 (499 samples, 0.03%)</title><rect x="36.0892%" y="517" width="0.0324%" height="15" fill="rgb(244,50,7)" fg:x="555357" fg:w="499"/><text x="36.3392%" y="527.50"></text></g><g><title>btrfs_set_token_32 (420 samples, 0.03%)</title><rect x="36.1285%" y="517" width="0.0273%" height="15" fill="rgb(246,229,37)" fg:x="555963" fg:w="420"/><text x="36.3785%" y="527.50"></text></g><g><title>memcpy_extent_buffer (160 samples, 0.01%)</title><rect x="36.1579%" y="517" width="0.0104%" height="15" fill="rgb(225,18,5)" fg:x="556414" fg:w="160"/><text x="36.4079%" y="527.50"></text></g><g><title>insert_with_overflow (4,917 samples, 0.32%)</title><rect x="35.8604%" y="565" width="0.3195%" height="15" fill="rgb(213,204,8)" fg:x="551837" fg:w="4917"/><text x="36.1104%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (4,872 samples, 0.32%)</title><rect x="35.8633%" y="549" width="0.3166%" height="15" fill="rgb(238,103,6)" fg:x="551882" fg:w="4872"/><text x="36.1133%" y="559.50"></text></g><g><title>setup_items_for_insert (1,568 samples, 0.10%)</title><rect x="36.0781%" y="533" width="0.1019%" height="15" fill="rgb(222,25,35)" fg:x="555186" fg:w="1568"/><text x="36.3281%" y="543.50"></text></g><g><title>btrfs_insert_dir_item (5,933 samples, 0.39%)</title><rect x="35.8052%" y="581" width="0.3855%" height="15" fill="rgb(213,203,35)" fg:x="550988" fg:w="5933"/><text x="36.0552%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (191 samples, 0.01%)</title><rect x="36.1932%" y="565" width="0.0124%" height="15" fill="rgb(221,79,53)" fg:x="556958" fg:w="191"/><text x="36.4432%" y="575.50"></text></g><g><title>btrfs_update_inode (294 samples, 0.02%)</title><rect x="36.1908%" y="581" width="0.0191%" height="15" fill="rgb(243,200,35)" fg:x="556921" fg:w="294"/><text x="36.4408%" y="591.50"></text></g><g><title>btrfs_add_link (6,281 samples, 0.41%)</title><rect x="35.8027%" y="597" width="0.4082%" height="15" fill="rgb(248,60,25)" fg:x="550949" fg:w="6281"/><text x="36.0527%" y="607.50"></text></g><g><title>__queue_work (245 samples, 0.02%)</title><rect x="36.2171%" y="565" width="0.0159%" height="15" fill="rgb(227,53,46)" fg:x="557325" fg:w="245"/><text x="36.4671%" y="575.50"></text></g><g><title>try_to_wake_up (177 samples, 0.01%)</title><rect x="36.2215%" y="549" width="0.0115%" height="15" fill="rgb(216,120,32)" fg:x="557393" fg:w="177"/><text x="36.4715%" y="559.50"></text></g><g><title>btrfs_btree_balance_dirty (342 samples, 0.02%)</title><rect x="36.2109%" y="597" width="0.0222%" height="15" fill="rgb(220,134,1)" fg:x="557230" fg:w="342"/><text x="36.4609%" y="607.50"></text></g><g><title>queue_work_on (250 samples, 0.02%)</title><rect x="36.2169%" y="581" width="0.0162%" height="15" fill="rgb(237,168,5)" fg:x="557322" fg:w="250"/><text x="36.4669%" y="591.50"></text></g><g><title>queued_read_lock_slowpath (268 samples, 0.02%)</title><rect x="36.2756%" y="517" width="0.0174%" height="15" fill="rgb(231,100,33)" fg:x="558226" fg:w="268"/><text x="36.5256%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (173 samples, 0.01%)</title><rect x="36.2818%" y="501" width="0.0112%" height="15" fill="rgb(236,177,47)" fg:x="558321" fg:w="173"/><text x="36.5318%" y="511.50"></text></g><g><title>__schedule (203 samples, 0.01%)</title><rect x="36.2931%" y="501" width="0.0132%" height="15" fill="rgb(235,7,49)" fg:x="558495" fg:w="203"/><text x="36.5431%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (611 samples, 0.04%)</title><rect x="36.2666%" y="533" width="0.0397%" height="15" fill="rgb(232,119,22)" fg:x="558088" fg:w="611"/><text x="36.5166%" y="543.50"></text></g><g><title>schedule (205 samples, 0.01%)</title><rect x="36.2930%" y="517" width="0.0133%" height="15" fill="rgb(254,73,53)" fg:x="558494" fg:w="205"/><text x="36.5430%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (662 samples, 0.04%)</title><rect x="36.2664%" y="549" width="0.0430%" height="15" fill="rgb(251,35,20)" fg:x="558085" fg:w="662"/><text x="36.5164%" y="559.50"></text></g><g><title>prepare_to_wait_event (155 samples, 0.01%)</title><rect x="36.3123%" y="533" width="0.0101%" height="15" fill="rgb(241,119,20)" fg:x="558791" fg:w="155"/><text x="36.5623%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (232 samples, 0.02%)</title><rect x="36.3321%" y="485" width="0.0151%" height="15" fill="rgb(207,102,14)" fg:x="559096" fg:w="232"/><text x="36.5821%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (226 samples, 0.01%)</title><rect x="36.3325%" y="469" width="0.0147%" height="15" fill="rgb(248,201,50)" fg:x="559102" fg:w="226"/><text x="36.5825%" y="479.50"></text></g><g><title>native_write_msr (223 samples, 0.01%)</title><rect x="36.3327%" y="453" width="0.0145%" height="15" fill="rgb(222,185,44)" fg:x="559105" fg:w="223"/><text x="36.5827%" y="463.50"></text></g><g><title>finish_task_switch (242 samples, 0.02%)</title><rect x="36.3319%" y="501" width="0.0157%" height="15" fill="rgb(218,107,18)" fg:x="559092" fg:w="242"/><text x="36.5819%" y="511.50"></text></g><g><title>__btrfs_tree_lock (639 samples, 0.04%)</title><rect x="36.3095%" y="549" width="0.0415%" height="15" fill="rgb(237,177,39)" fg:x="558747" fg:w="639"/><text x="36.5595%" y="559.50"></text></g><g><title>schedule (367 samples, 0.02%)</title><rect x="36.3271%" y="533" width="0.0238%" height="15" fill="rgb(246,69,6)" fg:x="559019" fg:w="367"/><text x="36.5771%" y="543.50"></text></g><g><title>__schedule (362 samples, 0.02%)</title><rect x="36.3275%" y="517" width="0.0235%" height="15" fill="rgb(234,208,37)" fg:x="559024" fg:w="362"/><text x="36.5775%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (596 samples, 0.04%)</title><rect x="36.3559%" y="549" width="0.0387%" height="15" fill="rgb(225,4,6)" fg:x="559461" fg:w="596"/><text x="36.6059%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (561 samples, 0.04%)</title><rect x="36.3581%" y="533" width="0.0365%" height="15" fill="rgb(233,45,0)" fg:x="559496" fg:w="561"/><text x="36.6081%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (192 samples, 0.01%)</title><rect x="36.3946%" y="549" width="0.0125%" height="15" fill="rgb(226,136,5)" fg:x="560057" fg:w="192"/><text x="36.6446%" y="559.50"></text></g><g><title>find_extent_buffer (246 samples, 0.02%)</title><rect x="36.4156%" y="533" width="0.0160%" height="15" fill="rgb(211,91,47)" fg:x="560381" fg:w="246"/><text x="36.6656%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (422 samples, 0.03%)</title><rect x="36.4071%" y="549" width="0.0274%" height="15" fill="rgb(242,88,51)" fg:x="560249" fg:w="422"/><text x="36.6571%" y="559.50"></text></g><g><title>__push_leaf_left (182 samples, 0.01%)</title><rect x="36.4503%" y="517" width="0.0118%" height="15" fill="rgb(230,91,28)" fg:x="560914" fg:w="182"/><text x="36.7003%" y="527.50"></text></g><g><title>push_leaf_left (228 samples, 0.01%)</title><rect x="36.4487%" y="533" width="0.0148%" height="15" fill="rgb(254,186,29)" fg:x="560890" fg:w="228"/><text x="36.6987%" y="543.50"></text></g><g><title>split_leaf (449 samples, 0.03%)</title><rect x="36.4345%" y="549" width="0.0292%" height="15" fill="rgb(238,6,4)" fg:x="560671" fg:w="449"/><text x="36.6845%" y="559.50"></text></g><g><title>__wake_up_common (298 samples, 0.02%)</title><rect x="36.4668%" y="517" width="0.0194%" height="15" fill="rgb(221,151,16)" fg:x="561169" fg:w="298"/><text x="36.7168%" y="527.50"></text></g><g><title>autoremove_wake_function (295 samples, 0.02%)</title><rect x="36.4670%" y="501" width="0.0192%" height="15" fill="rgb(251,143,52)" fg:x="561172" fg:w="295"/><text x="36.7170%" y="511.50"></text></g><g><title>try_to_wake_up (289 samples, 0.02%)</title><rect x="36.4674%" y="485" width="0.0188%" height="15" fill="rgb(206,90,15)" fg:x="561178" fg:w="289"/><text x="36.7174%" y="495.50"></text></g><g><title>__wake_up_common_lock (303 samples, 0.02%)</title><rect x="36.4668%" y="533" width="0.0197%" height="15" fill="rgb(218,35,8)" fg:x="561168" fg:w="303"/><text x="36.7168%" y="543.50"></text></g><g><title>btrfs_search_slot (3,525 samples, 0.23%)</title><rect x="36.2617%" y="565" width="0.2291%" height="15" fill="rgb(239,215,6)" fg:x="558012" fg:w="3525"/><text x="36.5117%" y="575.50"></text></g><g><title>unlock_up (417 samples, 0.03%)</title><rect x="36.4637%" y="549" width="0.0271%" height="15" fill="rgb(245,116,39)" fg:x="561120" fg:w="417"/><text x="36.7137%" y="559.50"></text></g><g><title>btrfs_get_token_32 (231 samples, 0.02%)</title><rect x="36.4994%" y="549" width="0.0150%" height="15" fill="rgb(242,65,28)" fg:x="561670" fg:w="231"/><text x="36.7494%" y="559.50"></text></g><g><title>btrfs_set_token_32 (217 samples, 0.01%)</title><rect x="36.5209%" y="549" width="0.0141%" height="15" fill="rgb(252,132,53)" fg:x="562001" fg:w="217"/><text x="36.7709%" y="559.50"></text></g><g><title>btrfs_insert_empty_items (4,394 samples, 0.29%)</title><rect x="36.2612%" y="581" width="0.2855%" height="15" fill="rgb(224,159,50)" fg:x="558004" fg:w="4394"/><text x="36.5112%" y="591.50"></text></g><g><title>setup_items_for_insert (861 samples, 0.06%)</title><rect x="36.4908%" y="565" width="0.0560%" height="15" fill="rgb(224,93,4)" fg:x="561537" fg:w="861"/><text x="36.7408%" y="575.50"></text></g><g><title>fill_inode_item (303 samples, 0.02%)</title><rect x="36.5551%" y="581" width="0.0197%" height="15" fill="rgb(208,81,34)" fg:x="562527" fg:w="303"/><text x="36.8051%" y="591.50"></text></g><g><title>inode_tree_add (452 samples, 0.03%)</title><rect x="36.5772%" y="581" width="0.0294%" height="15" fill="rgb(233,92,54)" fg:x="562867" fg:w="452"/><text x="36.8272%" y="591.50"></text></g><g><title>btrfs_alloc_inode (345 samples, 0.02%)</title><rect x="36.6241%" y="549" width="0.0224%" height="15" fill="rgb(237,21,14)" fg:x="563589" fg:w="345"/><text x="36.8741%" y="559.50"></text></g><g><title>kmem_cache_alloc (222 samples, 0.01%)</title><rect x="36.6321%" y="533" width="0.0144%" height="15" fill="rgb(249,128,51)" fg:x="563712" fg:w="222"/><text x="36.8821%" y="543.50"></text></g><g><title>alloc_inode (458 samples, 0.03%)</title><rect x="36.6230%" y="565" width="0.0298%" height="15" fill="rgb(223,129,24)" fg:x="563572" fg:w="458"/><text x="36.8730%" y="575.50"></text></g><g><title>new_inode (515 samples, 0.03%)</title><rect x="36.6216%" y="581" width="0.0335%" height="15" fill="rgb(231,168,25)" fg:x="563551" fg:w="515"/><text x="36.8716%" y="591.50"></text></g><g><title>btrfs_new_inode (6,368 samples, 0.41%)</title><rect x="36.2428%" y="597" width="0.4138%" height="15" fill="rgb(224,39,20)" fg:x="557721" fg:w="6368"/><text x="36.4928%" y="607.50"></text></g><g><title>btrfs_get_delayed_node (173 samples, 0.01%)</title><rect x="36.6854%" y="549" width="0.0112%" height="15" fill="rgb(225,152,53)" fg:x="564532" fg:w="173"/><text x="36.9354%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (421 samples, 0.03%)</title><rect x="36.6795%" y="565" width="0.0274%" height="15" fill="rgb(252,17,24)" fg:x="564442" fg:w="421"/><text x="36.9295%" y="575.50"></text></g><g><title>btrfs_delayed_update_inode (791 samples, 0.05%)</title><rect x="36.6598%" y="581" width="0.0514%" height="15" fill="rgb(250,114,30)" fg:x="564138" fg:w="791"/><text x="36.9098%" y="591.50"></text></g><g><title>btrfs_update_inode (857 samples, 0.06%)</title><rect x="36.6572%" y="597" width="0.0557%" height="15" fill="rgb(229,5,4)" fg:x="564098" fg:w="857"/><text x="36.9072%" y="607.50"></text></g><g><title>__reserve_bytes (270 samples, 0.02%)</title><rect x="36.7350%" y="549" width="0.0175%" height="15" fill="rgb(225,176,49)" fg:x="565296" fg:w="270"/><text x="36.9850%" y="559.50"></text></g><g><title>btrfs_block_rsv_add (345 samples, 0.02%)</title><rect x="36.7303%" y="581" width="0.0224%" height="15" fill="rgb(224,221,49)" fg:x="565223" fg:w="345"/><text x="36.9803%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (292 samples, 0.02%)</title><rect x="36.7337%" y="565" width="0.0190%" height="15" fill="rgb(253,169,27)" fg:x="565276" fg:w="292"/><text x="36.9837%" y="575.50"></text></g><g><title>btrfs_mkdir (15,120 samples, 0.98%)</title><rect x="35.7823%" y="613" width="0.9826%" height="15" fill="rgb(211,206,16)" fg:x="550635" fg:w="15120"/><text x="36.0323%" y="623.50"></text></g><g><title>start_transaction (655 samples, 0.04%)</title><rect x="36.7223%" y="597" width="0.0426%" height="15" fill="rgb(244,87,35)" fg:x="565100" fg:w="655"/><text x="36.9723%" y="607.50"></text></g><g><title>do_mkdirat (22,074 samples, 1.43%)</title><rect x="35.3365%" y="645" width="1.4345%" height="15" fill="rgb(246,28,10)" fg:x="543775" fg:w="22074"/><text x="35.5865%" y="655.50"></text></g><g><title>vfs_mkdir (15,249 samples, 0.99%)</title><rect x="35.7800%" y="629" width="0.9909%" height="15" fill="rgb(229,12,44)" fg:x="550600" fg:w="15249"/><text x="36.0300%" y="639.50"></text></g><g><title>do_syscall_64 (22,103 samples, 1.44%)</title><rect x="35.3353%" y="661" width="1.4363%" height="15" fill="rgb(210,145,37)" fg:x="543756" fg:w="22103"/><text x="35.5853%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (22,172 samples, 1.44%)</title><rect x="35.3337%" y="677" width="1.4408%" height="15" fill="rgb(227,112,52)" fg:x="543732" fg:w="22172"/><text x="35.5837%" y="687.50"></text></g><g><title>__GI___mkdir (22,297 samples, 1.45%)</title><rect x="35.3277%" y="693" width="1.4489%" height="15" fill="rgb(238,155,34)" fg:x="543639" fg:w="22297"/><text x="35.5777%" y="703.50"></text></g><g><title>btrfs_filldir (949 samples, 0.06%)</title><rect x="36.8668%" y="581" width="0.0617%" height="15" fill="rgb(239,226,36)" fg:x="567323" fg:w="949"/><text x="37.1168%" y="591.50"></text></g><g><title>filldir64 (882 samples, 0.06%)</title><rect x="36.8711%" y="565" width="0.0573%" height="15" fill="rgb(230,16,23)" fg:x="567390" fg:w="882"/><text x="37.1211%" y="575.50"></text></g><g><title>verify_dirent_name (257 samples, 0.02%)</title><rect x="36.9117%" y="549" width="0.0167%" height="15" fill="rgb(236,171,36)" fg:x="568015" fg:w="257"/><text x="37.1617%" y="559.50"></text></g><g><title>memchr (185 samples, 0.01%)</title><rect x="36.9164%" y="533" width="0.0120%" height="15" fill="rgb(221,22,14)" fg:x="568087" fg:w="185"/><text x="37.1664%" y="543.50"></text></g><g><title>btrfs_search_slot (286 samples, 0.02%)</title><rect x="36.9561%" y="565" width="0.0186%" height="15" fill="rgb(242,43,11)" fg:x="568698" fg:w="286"/><text x="37.2061%" y="575.50"></text></g><g><title>btrfs_next_old_leaf (406 samples, 0.03%)</title><rect x="36.9539%" y="581" width="0.0264%" height="15" fill="rgb(232,69,23)" fg:x="568664" fg:w="406"/><text x="37.2039%" y="591.50"></text></g><g><title>btrfs_readdir_get_delayed_items (317 samples, 0.02%)</title><rect x="36.9807%" y="581" width="0.0206%" height="15" fill="rgb(216,180,54)" fg:x="569077" fg:w="317"/><text x="37.2307%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (184 samples, 0.01%)</title><rect x="37.0127%" y="565" width="0.0120%" height="15" fill="rgb(216,5,24)" fg:x="569569" fg:w="184"/><text x="37.2627%" y="575.50"></text></g><g><title>btrfs_release_path (373 samples, 0.02%)</title><rect x="37.0040%" y="581" width="0.0242%" height="15" fill="rgb(225,89,9)" fg:x="569435" fg:w="373"/><text x="37.2540%" y="591.50"></text></g><g><title>finish_wait (250 samples, 0.02%)</title><rect x="37.0518%" y="533" width="0.0162%" height="15" fill="rgb(243,75,33)" fg:x="570170" fg:w="250"/><text x="37.3018%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (239 samples, 0.02%)</title><rect x="37.0525%" y="517" width="0.0155%" height="15" fill="rgb(247,141,45)" fg:x="570181" fg:w="239"/><text x="37.3025%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (223 samples, 0.01%)</title><rect x="37.0535%" y="501" width="0.0145%" height="15" fill="rgb(232,177,36)" fg:x="570197" fg:w="223"/><text x="37.3035%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (712 samples, 0.05%)</title><rect x="37.0722%" y="517" width="0.0463%" height="15" fill="rgb(219,125,36)" fg:x="570485" fg:w="712"/><text x="37.3222%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (674 samples, 0.04%)</title><rect x="37.0747%" y="501" width="0.0438%" height="15" fill="rgb(227,94,9)" fg:x="570523" fg:w="674"/><text x="37.3247%" y="511.50"></text></g><g><title>prepare_to_wait_event (794 samples, 0.05%)</title><rect x="37.0680%" y="533" width="0.0516%" height="15" fill="rgb(240,34,52)" fg:x="570420" fg:w="794"/><text x="37.3180%" y="543.50"></text></g><g><title>queued_read_lock_slowpath (1,042 samples, 0.07%)</title><rect x="37.1196%" y="533" width="0.0677%" height="15" fill="rgb(216,45,12)" fg:x="571214" fg:w="1042"/><text x="37.3696%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (698 samples, 0.05%)</title><rect x="37.1420%" y="517" width="0.0454%" height="15" fill="rgb(246,21,19)" fg:x="571558" fg:w="698"/><text x="37.3920%" y="527.50"></text></g><g><title>dequeue_task_fair (160 samples, 0.01%)</title><rect x="37.1930%" y="501" width="0.0104%" height="15" fill="rgb(213,98,42)" fg:x="572343" fg:w="160"/><text x="37.4430%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (473 samples, 0.03%)</title><rect x="37.2056%" y="485" width="0.0307%" height="15" fill="rgb(250,136,47)" fg:x="572537" fg:w="473"/><text x="37.4556%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (460 samples, 0.03%)</title><rect x="37.2064%" y="469" width="0.0299%" height="15" fill="rgb(251,124,27)" fg:x="572550" fg:w="460"/><text x="37.4564%" y="479.50"></text></g><g><title>native_write_msr (456 samples, 0.03%)</title><rect x="37.2067%" y="453" width="0.0296%" height="15" fill="rgb(229,180,14)" fg:x="572554" fg:w="456"/><text x="37.4567%" y="463.50"></text></g><g><title>finish_task_switch (524 samples, 0.03%)</title><rect x="37.2034%" y="501" width="0.0341%" height="15" fill="rgb(245,216,25)" fg:x="572503" fg:w="524"/><text x="37.4534%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (3,200 samples, 0.21%)</title><rect x="37.0442%" y="549" width="0.2079%" height="15" fill="rgb(251,43,5)" fg:x="570053" fg:w="3200"/><text x="37.2942%" y="559.50"></text></g><g><title>schedule (997 samples, 0.06%)</title><rect x="37.1873%" y="533" width="0.0648%" height="15" fill="rgb(250,128,24)" fg:x="572256" fg:w="997"/><text x="37.4373%" y="543.50"></text></g><g><title>__schedule (986 samples, 0.06%)</title><rect x="37.1880%" y="517" width="0.0641%" height="15" fill="rgb(217,117,27)" fg:x="572267" fg:w="986"/><text x="37.4380%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (3,394 samples, 0.22%)</title><rect x="37.0433%" y="565" width="0.2206%" height="15" fill="rgb(245,147,4)" fg:x="570040" fg:w="3394"/><text x="37.2933%" y="575.50"></text></g><g><title>btrfs_root_node (181 samples, 0.01%)</title><rect x="37.2521%" y="549" width="0.0118%" height="15" fill="rgb(242,201,35)" fg:x="573253" fg:w="181"/><text x="37.5021%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (447 samples, 0.03%)</title><rect x="37.2824%" y="501" width="0.0290%" height="15" fill="rgb(218,181,1)" fg:x="573719" fg:w="447"/><text x="37.5324%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (434 samples, 0.03%)</title><rect x="37.2832%" y="485" width="0.0282%" height="15" fill="rgb(222,6,29)" fg:x="573732" fg:w="434"/><text x="37.5332%" y="495.50"></text></g><g><title>native_write_msr (431 samples, 0.03%)</title><rect x="37.2834%" y="469" width="0.0280%" height="15" fill="rgb(208,186,3)" fg:x="573735" fg:w="431"/><text x="37.5334%" y="479.50"></text></g><g><title>finish_task_switch (493 samples, 0.03%)</title><rect x="37.2803%" y="517" width="0.0320%" height="15" fill="rgb(216,36,26)" fg:x="573687" fg:w="493"/><text x="37.5303%" y="527.50"></text></g><g><title>__btrfs_tree_read_lock (880 samples, 0.06%)</title><rect x="37.2639%" y="565" width="0.0572%" height="15" fill="rgb(248,201,23)" fg:x="573434" fg:w="880"/><text x="37.5139%" y="575.50"></text></g><g><title>schedule (782 samples, 0.05%)</title><rect x="37.2702%" y="549" width="0.0508%" height="15" fill="rgb(251,170,31)" fg:x="573532" fg:w="782"/><text x="37.5202%" y="559.50"></text></g><g><title>__schedule (775 samples, 0.05%)</title><rect x="37.2707%" y="533" width="0.0504%" height="15" fill="rgb(207,110,25)" fg:x="573539" fg:w="775"/><text x="37.5207%" y="543.50"></text></g><g><title>select_task_rq_fair (163 samples, 0.01%)</title><rect x="37.3320%" y="501" width="0.0106%" height="15" fill="rgb(250,54,15)" fg:x="574483" fg:w="163"/><text x="37.5820%" y="511.50"></text></g><g><title>enqueue_task_fair (191 samples, 0.01%)</title><rect x="37.3446%" y="485" width="0.0124%" height="15" fill="rgb(227,68,33)" fg:x="574677" fg:w="191"/><text x="37.5946%" y="495.50"></text></g><g><title>ttwu_do_activate (390 samples, 0.03%)</title><rect x="37.3435%" y="501" width="0.0253%" height="15" fill="rgb(238,34,41)" fg:x="574660" fg:w="390"/><text x="37.5935%" y="511.50"></text></g><g><title>psi_task_change (182 samples, 0.01%)</title><rect x="37.3571%" y="485" width="0.0118%" height="15" fill="rgb(220,11,15)" fg:x="574868" fg:w="182"/><text x="37.6071%" y="495.50"></text></g><g><title>psi_group_change (165 samples, 0.01%)</title><rect x="37.3582%" y="469" width="0.0107%" height="15" fill="rgb(246,111,35)" fg:x="574885" fg:w="165"/><text x="37.6082%" y="479.50"></text></g><g><title>__wake_up_common (802 samples, 0.05%)</title><rect x="37.3212%" y="549" width="0.0521%" height="15" fill="rgb(209,88,53)" fg:x="574316" fg:w="802"/><text x="37.5712%" y="559.50"></text></g><g><title>autoremove_wake_function (784 samples, 0.05%)</title><rect x="37.3224%" y="533" width="0.0509%" height="15" fill="rgb(231,185,47)" fg:x="574334" fg:w="784"/><text x="37.5724%" y="543.50"></text></g><g><title>try_to_wake_up (770 samples, 0.05%)</title><rect x="37.3233%" y="517" width="0.0500%" height="15" fill="rgb(233,154,1)" fg:x="574348" fg:w="770"/><text x="37.5733%" y="527.50"></text></g><g><title>__wake_up_common_lock (813 samples, 0.05%)</title><rect x="37.3211%" y="565" width="0.0528%" height="15" fill="rgb(225,15,46)" fg:x="574314" fg:w="813"/><text x="37.5711%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (167 samples, 0.01%)</title><rect x="37.3753%" y="565" width="0.0109%" height="15" fill="rgb(211,135,41)" fg:x="575148" fg:w="167"/><text x="37.6253%" y="575.50"></text></g><g><title>btrfs_tree_read_lock_atomic (656 samples, 0.04%)</title><rect x="37.3861%" y="565" width="0.0426%" height="15" fill="rgb(208,54,0)" fg:x="575315" fg:w="656"/><text x="37.6361%" y="575.50"></text></g><g><title>queued_read_lock_slowpath (533 samples, 0.03%)</title><rect x="37.3941%" y="549" width="0.0346%" height="15" fill="rgb(244,136,14)" fg:x="575438" fg:w="533"/><text x="37.6441%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (696 samples, 0.05%)</title><rect x="37.4373%" y="565" width="0.0452%" height="15" fill="rgb(241,56,14)" fg:x="576103" fg:w="696"/><text x="37.6873%" y="575.50"></text></g><g><title>__radix_tree_lookup (333 samples, 0.02%)</title><rect x="37.5174%" y="533" width="0.0216%" height="15" fill="rgb(205,80,24)" fg:x="577336" fg:w="333"/><text x="37.7674%" y="543.50"></text></g><g><title>mark_extent_buffer_accessed (167 samples, 0.01%)</title><rect x="37.5391%" y="533" width="0.0109%" height="15" fill="rgb(220,57,4)" fg:x="577670" fg:w="167"/><text x="37.7891%" y="543.50"></text></g><g><title>find_extent_buffer (692 samples, 0.04%)</title><rect x="37.5056%" y="549" width="0.0450%" height="15" fill="rgb(226,193,50)" fg:x="577154" fg:w="692"/><text x="37.7556%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (1,147 samples, 0.07%)</title><rect x="37.4825%" y="565" width="0.0745%" height="15" fill="rgb(231,168,22)" fg:x="576799" fg:w="1147"/><text x="37.7325%" y="575.50"></text></g><g><title>btrfs_search_slot (8,235 samples, 0.54%)</title><rect x="37.0282%" y="581" width="0.5351%" height="15" fill="rgb(254,215,14)" fg:x="569808" fg:w="8235"/><text x="37.2782%" y="591.50"></text></g><g><title>filldir64 (175 samples, 0.01%)</title><rect x="37.5680%" y="581" width="0.0114%" height="15" fill="rgb(211,115,16)" fg:x="578114" fg:w="175"/><text x="37.8180%" y="591.50"></text></g><g><title>btrfs_real_readdir (12,765 samples, 0.83%)</title><rect x="36.8336%" y="597" width="0.8295%" height="15" fill="rgb(236,210,16)" fg:x="566812" fg:w="12765"/><text x="37.0836%" y="607.50"></text></g><g><title>read_extent_buffer (963 samples, 0.06%)</title><rect x="37.6005%" y="581" width="0.0626%" height="15" fill="rgb(221,94,12)" fg:x="578614" fg:w="963"/><text x="37.8505%" y="591.50"></text></g><g><title>security_file_permission (212 samples, 0.01%)</title><rect x="37.6698%" y="597" width="0.0138%" height="15" fill="rgb(235,218,49)" fg:x="579681" fg:w="212"/><text x="37.9198%" y="607.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (164 samples, 0.01%)</title><rect x="37.7199%" y="533" width="0.0107%" height="15" fill="rgb(217,114,14)" fg:x="580452" fg:w="164"/><text x="37.9699%" y="543.50"></text></g><g><title>__reserve_bytes (320 samples, 0.02%)</title><rect x="37.7362%" y="501" width="0.0208%" height="15" fill="rgb(216,145,22)" fg:x="580703" fg:w="320"/><text x="37.9862%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (408 samples, 0.03%)</title><rect x="37.7306%" y="533" width="0.0265%" height="15" fill="rgb(217,112,39)" fg:x="580616" fg:w="408"/><text x="37.9806%" y="543.50"></text></g><g><title>btrfs_reserve_metadata_bytes (363 samples, 0.02%)</title><rect x="37.7335%" y="517" width="0.0236%" height="15" fill="rgb(225,85,32)" fg:x="580661" fg:w="363"/><text x="37.9835%" y="527.50"></text></g><g><title>btrfs_delayed_update_inode (782 samples, 0.05%)</title><rect x="37.7145%" y="549" width="0.0508%" height="15" fill="rgb(245,209,47)" fg:x="580368" fg:w="782"/><text x="37.9645%" y="559.50"></text></g><g><title>btrfs_update_inode (887 samples, 0.06%)</title><rect x="37.7134%" y="565" width="0.0576%" height="15" fill="rgb(218,220,15)" fg:x="580352" fg:w="887"/><text x="37.9634%" y="575.50"></text></g><g><title>__queue_work (160 samples, 0.01%)</title><rect x="37.7713%" y="549" width="0.0104%" height="15" fill="rgb(222,202,31)" fg:x="581242" fg:w="160"/><text x="38.0213%" y="559.50"></text></g><g><title>queue_work_on (165 samples, 0.01%)</title><rect x="37.7711%" y="565" width="0.0107%" height="15" fill="rgb(243,203,4)" fg:x="581239" fg:w="165"/><text x="38.0211%" y="575.50"></text></g><g><title>btrfs_dirty_inode (1,544 samples, 0.10%)</title><rect x="37.6995%" y="581" width="0.1003%" height="15" fill="rgb(237,92,17)" fg:x="580137" fg:w="1544"/><text x="37.9495%" y="591.50"></text></g><g><title>start_transaction (277 samples, 0.02%)</title><rect x="37.7818%" y="565" width="0.0180%" height="15" fill="rgb(231,119,7)" fg:x="581404" fg:w="277"/><text x="38.0318%" y="575.50"></text></g><g><title>touch_atime (1,835 samples, 0.12%)</title><rect x="37.6836%" y="597" width="0.1192%" height="15" fill="rgb(237,82,41)" fg:x="579893" fg:w="1835"/><text x="37.9336%" y="607.50"></text></g><g><title>iterate_dir (15,035 samples, 0.98%)</title><rect x="36.8281%" y="613" width="0.9770%" height="15" fill="rgb(226,81,48)" fg:x="566728" fg:w="15035"/><text x="37.0781%" y="623.50"></text></g><g><title>__x64_sys_getdents64 (15,278 samples, 0.99%)</title><rect x="36.8142%" y="629" width="0.9928%" height="15" fill="rgb(234,70,51)" fg:x="566514" fg:w="15278"/><text x="37.0642%" y="639.50"></text></g><g><title>do_syscall_64 (15,330 samples, 1.00%)</title><rect x="36.8118%" y="645" width="0.9962%" height="15" fill="rgb(251,86,4)" fg:x="566477" fg:w="15330"/><text x="37.0618%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15,467 samples, 1.01%)</title><rect x="36.8103%" y="661" width="1.0051%" height="15" fill="rgb(244,144,28)" fg:x="566454" fg:w="15467"/><text x="37.0603%" y="671.50"></text></g><g><title>__GI___getdents64 (15,610 samples, 1.01%)</title><rect x="36.8032%" y="677" width="1.0144%" height="15" fill="rgb(232,161,39)" fg:x="566345" fg:w="15610"/><text x="37.0532%" y="687.50"></text></g><g><title>__GI___readdir64 (16,024 samples, 1.04%)</title><rect x="36.7766%" y="693" width="1.0413%" height="15" fill="rgb(247,34,51)" fg:x="565936" fg:w="16024"/><text x="37.0266%" y="703.50"></text></g><g><title>crc32c_pcl_intel_update (169 samples, 0.01%)</title><rect x="37.8755%" y="677" width="0.0110%" height="15" fill="rgb(225,132,2)" fg:x="582846" fg:w="169"/><text x="38.1255%" y="687.50"></text></g><g><title>entry_SYSCALL_64 (624 samples, 0.04%)</title><rect x="37.8865%" y="677" width="0.0405%" height="15" fill="rgb(209,159,44)" fg:x="583015" fg:w="624"/><text x="38.1365%" y="687.50"></text></g><g><title>_copy_to_user (730 samples, 0.05%)</title><rect x="37.9925%" y="613" width="0.0474%" height="15" fill="rgb(251,214,1)" fg:x="584646" fg:w="730"/><text x="38.2425%" y="623.50"></text></g><g><title>copy_user_enhanced_fast_string (639 samples, 0.04%)</title><rect x="37.9984%" y="597" width="0.0415%" height="15" fill="rgb(247,84,47)" fg:x="584737" fg:w="639"/><text x="38.2484%" y="607.50"></text></g><g><title>cp_new_stat (1,375 samples, 0.09%)</title><rect x="37.9704%" y="629" width="0.0894%" height="15" fill="rgb(240,111,43)" fg:x="584306" fg:w="1375"/><text x="38.2204%" y="639.50"></text></g><g><title>from_kuid_munged (175 samples, 0.01%)</title><rect x="38.0484%" y="613" width="0.0114%" height="15" fill="rgb(215,214,35)" fg:x="585506" fg:w="175"/><text x="38.2984%" y="623.50"></text></g><g><title>_raw_spin_lock (230 samples, 0.01%)</title><rect x="38.1472%" y="597" width="0.0149%" height="15" fill="rgb(248,207,23)" fg:x="587027" fg:w="230"/><text x="38.3972%" y="607.50"></text></g><g><title>generic_fillattr (166 samples, 0.01%)</title><rect x="38.1621%" y="597" width="0.0108%" height="15" fill="rgb(214,186,4)" fg:x="587257" fg:w="166"/><text x="38.4121%" y="607.50"></text></g><g><title>_raw_spin_lock (214 samples, 0.01%)</title><rect x="38.1750%" y="581" width="0.0139%" height="15" fill="rgb(220,133,22)" fg:x="587455" fg:w="214"/><text x="38.4250%" y="591.50"></text></g><g><title>btrfs_getattr (1,625 samples, 0.11%)</title><rect x="38.0834%" y="613" width="0.1056%" height="15" fill="rgb(239,134,19)" fg:x="586045" fg:w="1625"/><text x="38.3334%" y="623.50"></text></g><g><title>inode_get_bytes (247 samples, 0.02%)</title><rect x="38.1729%" y="597" width="0.0161%" height="15" fill="rgb(250,140,9)" fg:x="587423" fg:w="247"/><text x="38.4229%" y="607.50"></text></g><g><title>kmem_cache_free (1,242 samples, 0.08%)</title><rect x="38.2258%" y="597" width="0.0807%" height="15" fill="rgb(225,59,14)" fg:x="588236" fg:w="1242"/><text x="38.4758%" y="607.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (268 samples, 0.02%)</title><rect x="38.2891%" y="581" width="0.0174%" height="15" fill="rgb(214,152,51)" fg:x="589210" fg:w="268"/><text x="38.5391%" y="591.50"></text></g><g><title>__legitimize_mnt (416 samples, 0.03%)</title><rect x="38.3423%" y="533" width="0.0270%" height="15" fill="rgb(251,227,43)" fg:x="590029" fg:w="416"/><text x="38.5923%" y="543.50"></text></g><g><title>__legitimize_path (713 samples, 0.05%)</title><rect x="38.3381%" y="549" width="0.0463%" height="15" fill="rgb(241,96,17)" fg:x="589965" fg:w="713"/><text x="38.5881%" y="559.50"></text></g><g><title>lockref_get_not_dead (233 samples, 0.02%)</title><rect x="38.3693%" y="533" width="0.0151%" height="15" fill="rgb(234,198,43)" fg:x="590445" fg:w="233"/><text x="38.6193%" y="543.50"></text></g><g><title>complete_walk (932 samples, 0.06%)</title><rect x="38.3299%" y="581" width="0.0606%" height="15" fill="rgb(220,108,29)" fg:x="589838" fg:w="932"/><text x="38.5799%" y="591.50"></text></g><g><title>try_to_unlazy (884 samples, 0.06%)</title><rect x="38.3330%" y="565" width="0.0574%" height="15" fill="rgb(226,163,33)" fg:x="589886" fg:w="884"/><text x="38.5830%" y="575.50"></text></g><g><title>btrfs_permission (459 samples, 0.03%)</title><rect x="39.6097%" y="549" width="0.0298%" height="15" fill="rgb(205,194,45)" fg:x="609532" fg:w="459"/><text x="39.8597%" y="559.50"></text></g><g><title>inode_permission.part.0 (10,718 samples, 0.70%)</title><rect x="39.1100%" y="565" width="0.6965%" height="15" fill="rgb(206,143,44)" fg:x="601843" fg:w="10718"/><text x="39.3600%" y="575.50"></text></g><g><title>generic_permission (2,570 samples, 0.17%)</title><rect x="39.6395%" y="549" width="0.1670%" height="15" fill="rgb(236,136,36)" fg:x="609991" fg:w="2570"/><text x="39.8895%" y="559.50"></text></g><g><title>security_inode_permission (1,321 samples, 0.09%)</title><rect x="39.8065%" y="565" width="0.0858%" height="15" fill="rgb(249,172,42)" fg:x="612561" fg:w="1321"/><text x="40.0565%" y="575.50"></text></g><g><title>__d_lookup_rcu (14,502 samples, 0.94%)</title><rect x="40.3551%" y="533" width="0.9424%" height="15" fill="rgb(216,139,23)" fg:x="621004" fg:w="14502"/><text x="40.6051%" y="543.50"></text></g><g><title>lookup_fast (17,787 samples, 1.16%)</title><rect x="40.1425%" y="549" width="1.1559%" height="15" fill="rgb(207,166,20)" fg:x="617731" fg:w="17787"/><text x="40.3925%" y="559.50"></text></g><g><title>page_put_link (473 samples, 0.03%)</title><rect x="41.2983%" y="549" width="0.0307%" height="15" fill="rgb(210,209,22)" fg:x="635518" fg:w="473"/><text x="41.5483%" y="559.50"></text></g><g><title>__lookup_mnt (424 samples, 0.03%)</title><rect x="41.6123%" y="533" width="0.0276%" height="15" fill="rgb(232,118,20)" fg:x="640350" fg:w="424"/><text x="41.8623%" y="543.50"></text></g><g><title>atime_needs_update (414 samples, 0.03%)</title><rect x="41.6414%" y="533" width="0.0269%" height="15" fill="rgb(238,113,42)" fg:x="640798" fg:w="414"/><text x="41.8914%" y="543.50"></text></g><g><title>current_time (248 samples, 0.02%)</title><rect x="41.6522%" y="517" width="0.0161%" height="15" fill="rgb(231,42,5)" fg:x="640964" fg:w="248"/><text x="41.9022%" y="527.50"></text></g><g><title>page_get_link (1,721 samples, 0.11%)</title><rect x="41.6762%" y="533" width="0.1118%" height="15" fill="rgb(243,166,24)" fg:x="641333" fg:w="1721"/><text x="41.9262%" y="543.50"></text></g><g><title>pagecache_get_page (1,576 samples, 0.10%)</title><rect x="41.6856%" y="517" width="0.1024%" height="15" fill="rgb(237,226,12)" fg:x="641478" fg:w="1576"/><text x="41.9356%" y="527.50"></text></g><g><title>find_get_entry (1,376 samples, 0.09%)</title><rect x="41.6986%" y="501" width="0.0894%" height="15" fill="rgb(229,133,24)" fg:x="641678" fg:w="1376"/><text x="41.9486%" y="511.50"></text></g><g><title>xas_load (266 samples, 0.02%)</title><rect x="41.7708%" y="485" width="0.0173%" height="15" fill="rgb(238,33,43)" fg:x="642788" fg:w="266"/><text x="42.0208%" y="495.50"></text></g><g><title>xas_start (238 samples, 0.02%)</title><rect x="41.7726%" y="469" width="0.0155%" height="15" fill="rgb(227,59,38)" fg:x="642816" fg:w="238"/><text x="42.0226%" y="479.50"></text></g><g><title>link_path_walk.part.0 (52,353 samples, 3.40%)</title><rect x="38.3904%" y="581" width="3.4021%" height="15" fill="rgb(230,97,0)" fg:x="590770" fg:w="52353"/><text x="38.6404%" y="591.50">lin..</text></g><g><title>walk_component (29,241 samples, 1.90%)</title><rect x="39.8923%" y="565" width="1.9002%" height="15" fill="rgb(250,173,50)" fg:x="613882" fg:w="29241"/><text x="40.1423%" y="575.50">w..</text></g><g><title>step_into (7,132 samples, 0.46%)</title><rect x="41.3291%" y="549" width="0.4635%" height="15" fill="rgb(240,15,50)" fg:x="635991" fg:w="7132"/><text x="41.5791%" y="559.50"></text></g><g><title>path_init (1,263 samples, 0.08%)</title><rect x="41.7925%" y="581" width="0.0821%" height="15" fill="rgb(221,93,22)" fg:x="643123" fg:w="1263"/><text x="42.0425%" y="591.50"></text></g><g><title>nd_jump_root (885 samples, 0.06%)</title><rect x="41.8171%" y="565" width="0.0575%" height="15" fill="rgb(245,180,53)" fg:x="643501" fg:w="885"/><text x="42.0671%" y="575.50"></text></g><g><title>set_root (719 samples, 0.05%)</title><rect x="41.8279%" y="549" width="0.0467%" height="15" fill="rgb(231,88,51)" fg:x="643667" fg:w="719"/><text x="42.0779%" y="559.50"></text></g><g><title>dput (929 samples, 0.06%)</title><rect x="41.8851%" y="565" width="0.0604%" height="15" fill="rgb(240,58,21)" fg:x="644548" fg:w="929"/><text x="42.1351%" y="575.50"></text></g><g><title>lockref_put_or_lock (786 samples, 0.05%)</title><rect x="41.8944%" y="549" width="0.0511%" height="15" fill="rgb(237,21,10)" fg:x="644691" fg:w="786"/><text x="42.1444%" y="559.50"></text></g><g><title>terminate_walk (1,283 samples, 0.08%)</title><rect x="41.8746%" y="581" width="0.0834%" height="15" fill="rgb(218,43,11)" fg:x="644386" fg:w="1283"/><text x="42.1246%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (272 samples, 0.02%)</title><rect x="42.0465%" y="485" width="0.0177%" height="15" fill="rgb(218,221,29)" fg:x="647032" fg:w="272"/><text x="42.2965%" y="495.50"></text></g><g><title>_raw_spin_lock (339 samples, 0.02%)</title><rect x="42.1174%" y="469" width="0.0220%" height="15" fill="rgb(214,118,42)" fg:x="648123" fg:w="339"/><text x="42.3674%" y="479.50"></text></g><g><title>free_extent_buffer.part.0 (1,073 samples, 0.07%)</title><rect x="42.0699%" y="485" width="0.0697%" height="15" fill="rgb(251,200,26)" fg:x="647392" fg:w="1073"/><text x="42.3199%" y="495.50"></text></g><g><title>btrfs_free_path (1,991 samples, 0.13%)</title><rect x="42.0263%" y="517" width="0.1294%" height="15" fill="rgb(237,101,39)" fg:x="646721" fg:w="1991"/><text x="42.2763%" y="527.50"></text></g><g><title>btrfs_release_path (1,885 samples, 0.12%)</title><rect x="42.0332%" y="501" width="0.1225%" height="15" fill="rgb(251,117,11)" fg:x="646827" fg:w="1885"/><text x="42.2832%" y="511.50"></text></g><g><title>release_extent_buffer (247 samples, 0.02%)</title><rect x="42.1397%" y="485" width="0.0161%" height="15" fill="rgb(216,223,23)" fg:x="648465" fg:w="247"/><text x="42.3897%" y="495.50"></text></g><g><title>_raw_read_lock (245 samples, 0.02%)</title><rect x="42.2946%" y="453" width="0.0159%" height="15" fill="rgb(251,54,12)" fg:x="650849" fg:w="245"/><text x="42.5446%" y="463.50"></text></g><g><title>finish_wait (544 samples, 0.04%)</title><rect x="42.3114%" y="453" width="0.0354%" height="15" fill="rgb(254,176,54)" fg:x="651107" fg:w="544"/><text x="42.5614%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (512 samples, 0.03%)</title><rect x="42.3134%" y="437" width="0.0333%" height="15" fill="rgb(210,32,8)" fg:x="651139" fg:w="512"/><text x="42.5634%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (491 samples, 0.03%)</title><rect x="42.3148%" y="421" width="0.0319%" height="15" fill="rgb(235,52,38)" fg:x="651160" fg:w="491"/><text x="42.5648%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (1,658 samples, 0.11%)</title><rect x="42.3585%" y="437" width="0.1077%" height="15" fill="rgb(231,4,44)" fg:x="651833" fg:w="1658"/><text x="42.6085%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,566 samples, 0.10%)</title><rect x="42.3645%" y="421" width="0.1018%" height="15" fill="rgb(249,2,32)" fg:x="651925" fg:w="1566"/><text x="42.6145%" y="431.50"></text></g><g><title>prepare_to_wait_event (1,903 samples, 0.12%)</title><rect x="42.3470%" y="453" width="0.1237%" height="15" fill="rgb(224,65,26)" fg:x="651656" fg:w="1903"/><text x="42.5970%" y="463.50"></text></g><g><title>queued_read_lock_slowpath (2,581 samples, 0.17%)</title><rect x="42.4707%" y="453" width="0.1677%" height="15" fill="rgb(250,73,40)" fg:x="653559" fg:w="2581"/><text x="42.7207%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,711 samples, 0.11%)</title><rect x="42.5272%" y="437" width="0.1112%" height="15" fill="rgb(253,177,16)" fg:x="654429" fg:w="1711"/><text x="42.7772%" y="447.50"></text></g><g><title>dequeue_entity (381 samples, 0.02%)</title><rect x="42.6570%" y="405" width="0.0248%" height="15" fill="rgb(217,32,34)" fg:x="656426" fg:w="381"/><text x="42.9070%" y="415.50"></text></g><g><title>dequeue_task_fair (445 samples, 0.03%)</title><rect x="42.6538%" y="421" width="0.0289%" height="15" fill="rgb(212,7,10)" fg:x="656377" fg:w="445"/><text x="42.9038%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (2,818 samples, 0.18%)</title><rect x="42.6894%" y="405" width="0.1831%" height="15" fill="rgb(245,89,8)" fg:x="656925" fg:w="2818"/><text x="42.9394%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,765 samples, 0.18%)</title><rect x="42.6929%" y="389" width="0.1797%" height="15" fill="rgb(237,16,53)" fg:x="656978" fg:w="2765"/><text x="42.9429%" y="399.50"></text></g><g><title>native_write_msr (2,730 samples, 0.18%)</title><rect x="42.6951%" y="373" width="0.1774%" height="15" fill="rgb(250,204,30)" fg:x="657013" fg:w="2730"/><text x="42.9451%" y="383.50"></text></g><g><title>finish_task_switch (3,012 samples, 0.20%)</title><rect x="42.6827%" y="421" width="0.1957%" height="15" fill="rgb(208,77,27)" fg:x="656822" fg:w="3012"/><text x="42.9327%" y="431.50"></text></g><g><title>psi_task_change (298 samples, 0.02%)</title><rect x="42.8913%" y="421" width="0.0194%" height="15" fill="rgb(250,204,28)" fg:x="660031" fg:w="298"/><text x="43.1413%" y="431.50"></text></g><g><title>psi_group_change (245 samples, 0.02%)</title><rect x="42.8947%" y="405" width="0.0159%" height="15" fill="rgb(244,63,21)" fg:x="660084" fg:w="245"/><text x="43.1447%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (9,784 samples, 0.64%)</title><rect x="42.2806%" y="469" width="0.6358%" height="15" fill="rgb(236,85,44)" fg:x="650634" fg:w="9784"/><text x="42.5306%" y="479.50"></text></g><g><title>schedule (4,278 samples, 0.28%)</title><rect x="42.6384%" y="453" width="0.2780%" height="15" fill="rgb(215,98,4)" fg:x="656140" fg:w="4278"/><text x="42.8884%" y="463.50"></text></g><g><title>__schedule (4,245 samples, 0.28%)</title><rect x="42.6406%" y="437" width="0.2759%" height="15" fill="rgb(235,38,11)" fg:x="656173" fg:w="4245"/><text x="42.8906%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (11,101 samples, 0.72%)</title><rect x="42.2654%" y="485" width="0.7214%" height="15" fill="rgb(254,186,25)" fg:x="650400" fg:w="11101"/><text x="42.5154%" y="495.50"></text></g><g><title>btrfs_root_node (1,082 samples, 0.07%)</title><rect x="42.9165%" y="469" width="0.0703%" height="15" fill="rgb(225,55,31)" fg:x="660419" fg:w="1082"/><text x="43.1665%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (391 samples, 0.03%)</title><rect x="43.0047%" y="453" width="0.0254%" height="15" fill="rgb(211,15,21)" fg:x="661776" fg:w="391"/><text x="43.2547%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (308 samples, 0.02%)</title><rect x="43.0101%" y="437" width="0.0200%" height="15" fill="rgb(215,187,41)" fg:x="661859" fg:w="308"/><text x="43.2601%" y="447.50"></text></g><g><title>prepare_to_wait_event (510 samples, 0.03%)</title><rect x="42.9983%" y="469" width="0.0331%" height="15" fill="rgb(248,69,32)" fg:x="661678" fg:w="510"/><text x="43.2483%" y="479.50"></text></g><g><title>dequeue_entity (341 samples, 0.02%)</title><rect x="43.0572%" y="421" width="0.0222%" height="15" fill="rgb(252,102,52)" fg:x="662584" fg:w="341"/><text x="43.3072%" y="431.50"></text></g><g><title>dequeue_task_fair (406 samples, 0.03%)</title><rect x="43.0547%" y="437" width="0.0264%" height="15" fill="rgb(253,140,32)" fg:x="662546" fg:w="406"/><text x="43.3047%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (3,553 samples, 0.23%)</title><rect x="43.0885%" y="421" width="0.2309%" height="15" fill="rgb(216,56,42)" fg:x="663066" fg:w="3553"/><text x="43.3385%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,471 samples, 0.23%)</title><rect x="43.0938%" y="405" width="0.2256%" height="15" fill="rgb(216,184,14)" fg:x="663148" fg:w="3471"/><text x="43.3438%" y="415.50"></text></g><g><title>native_write_msr (3,438 samples, 0.22%)</title><rect x="43.0960%" y="389" width="0.2234%" height="15" fill="rgb(237,187,27)" fg:x="663181" fg:w="3438"/><text x="43.3460%" y="399.50"></text></g><g><title>finish_task_switch (3,815 samples, 0.25%)</title><rect x="43.0811%" y="437" width="0.2479%" height="15" fill="rgb(219,65,3)" fg:x="662952" fg:w="3815"/><text x="43.3311%" y="447.50"></text></g><g><title>psi_task_change (293 samples, 0.02%)</title><rect x="43.3405%" y="437" width="0.0190%" height="15" fill="rgb(245,83,25)" fg:x="666944" fg:w="293"/><text x="43.5905%" y="447.50"></text></g><g><title>psi_group_change (235 samples, 0.02%)</title><rect x="43.3443%" y="421" width="0.0153%" height="15" fill="rgb(214,205,45)" fg:x="667002" fg:w="235"/><text x="43.5943%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (5,828 samples, 0.38%)</title><rect x="42.9868%" y="485" width="0.3787%" height="15" fill="rgb(241,20,18)" fg:x="661501" fg:w="5828"/><text x="43.2368%" y="495.50"></text></g><g><title>schedule (4,988 samples, 0.32%)</title><rect x="43.0414%" y="469" width="0.3241%" height="15" fill="rgb(232,163,23)" fg:x="662341" fg:w="4988"/><text x="43.2914%" y="479.50"></text></g><g><title>__schedule (4,966 samples, 0.32%)</title><rect x="43.0428%" y="453" width="0.3227%" height="15" fill="rgb(214,5,46)" fg:x="662363" fg:w="4966"/><text x="43.2928%" y="463.50"></text></g><g><title>select_task_rq_fair (207 samples, 0.01%)</title><rect x="43.3785%" y="421" width="0.0135%" height="15" fill="rgb(229,78,17)" fg:x="667529" fg:w="207"/><text x="43.6285%" y="431.50"></text></g><g><title>enqueue_task_fair (174 samples, 0.01%)</title><rect x="43.3940%" y="405" width="0.0113%" height="15" fill="rgb(248,89,10)" fg:x="667768" fg:w="174"/><text x="43.6440%" y="415.50"></text></g><g><title>ttwu_do_activate (341 samples, 0.02%)</title><rect x="43.3929%" y="421" width="0.0222%" height="15" fill="rgb(248,54,15)" fg:x="667751" fg:w="341"/><text x="43.6429%" y="431.50"></text></g><g><title>__wake_up_common (846 samples, 0.05%)</title><rect x="43.3660%" y="469" width="0.0550%" height="15" fill="rgb(223,116,6)" fg:x="667337" fg:w="846"/><text x="43.6160%" y="479.50"></text></g><g><title>autoremove_wake_function (824 samples, 0.05%)</title><rect x="43.3675%" y="453" width="0.0535%" height="15" fill="rgb(205,125,38)" fg:x="667359" fg:w="824"/><text x="43.6175%" y="463.50"></text></g><g><title>try_to_wake_up (805 samples, 0.05%)</title><rect x="43.3687%" y="437" width="0.0523%" height="15" fill="rgb(251,78,38)" fg:x="667378" fg:w="805"/><text x="43.6187%" y="447.50"></text></g><g><title>__wake_up_common_lock (874 samples, 0.06%)</title><rect x="43.3656%" y="485" width="0.0568%" height="15" fill="rgb(253,78,28)" fg:x="667331" fg:w="874"/><text x="43.6156%" y="495.50"></text></g><g><title>btrfs_set_path_blocking (851 samples, 0.06%)</title><rect x="43.4305%" y="485" width="0.0553%" height="15" fill="rgb(209,120,3)" fg:x="668329" fg:w="851"/><text x="43.6805%" y="495.50"></text></g><g><title>btrfs_set_lock_blocking_read (413 samples, 0.03%)</title><rect x="43.4590%" y="469" width="0.0268%" height="15" fill="rgb(238,229,9)" fg:x="668767" fg:w="413"/><text x="43.7090%" y="479.50"></text></g><g><title>_raw_read_lock (350 samples, 0.02%)</title><rect x="43.5018%" y="469" width="0.0227%" height="15" fill="rgb(253,159,18)" fg:x="669426" fg:w="350"/><text x="43.7518%" y="479.50"></text></g><g><title>btrfs_tree_read_lock_atomic (1,881 samples, 0.12%)</title><rect x="43.4858%" y="485" width="0.1222%" height="15" fill="rgb(244,42,34)" fg:x="669180" fg:w="1881"/><text x="43.7358%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (1,284 samples, 0.08%)</title><rect x="43.5246%" y="469" width="0.0834%" height="15" fill="rgb(224,8,7)" fg:x="669777" fg:w="1284"/><text x="43.7746%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (335 samples, 0.02%)</title><rect x="43.5863%" y="453" width="0.0218%" height="15" fill="rgb(210,201,45)" fg:x="670726" fg:w="335"/><text x="43.8363%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (592 samples, 0.04%)</title><rect x="43.6080%" y="485" width="0.0385%" height="15" fill="rgb(252,185,21)" fg:x="671061" fg:w="592"/><text x="43.8580%" y="495.50"></text></g><g><title>generic_bin_search.constprop.0 (3,088 samples, 0.20%)</title><rect x="43.6526%" y="485" width="0.2007%" height="15" fill="rgb(223,131,1)" fg:x="671746" fg:w="3088"/><text x="43.9026%" y="495.50"></text></g><g><title>btrfs_buffer_uptodate (418 samples, 0.03%)</title><rect x="43.8898%" y="469" width="0.0272%" height="15" fill="rgb(245,141,16)" fg:x="675397" fg:w="418"/><text x="44.1398%" y="479.50"></text></g><g><title>verify_parent_transid (304 samples, 0.02%)</title><rect x="43.8972%" y="453" width="0.0198%" height="15" fill="rgb(229,55,45)" fg:x="675511" fg:w="304"/><text x="44.1472%" y="463.50"></text></g><g><title>btrfs_get_64 (680 samples, 0.04%)</title><rect x="43.9170%" y="469" width="0.0442%" height="15" fill="rgb(208,92,15)" fg:x="675815" fg:w="680"/><text x="44.1670%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (221 samples, 0.01%)</title><rect x="43.9468%" y="453" width="0.0144%" height="15" fill="rgb(234,185,47)" fg:x="676274" fg:w="221"/><text x="44.1968%" y="463.50"></text></g><g><title>btrfs_verify_level_key (160 samples, 0.01%)</title><rect x="43.9649%" y="469" width="0.0104%" height="15" fill="rgb(253,104,50)" fg:x="676552" fg:w="160"/><text x="44.2149%" y="479.50"></text></g><g><title>__radix_tree_lookup (2,068 samples, 0.13%)</title><rect x="44.0450%" y="453" width="0.1344%" height="15" fill="rgb(205,70,7)" fg:x="677785" fg:w="2068"/><text x="44.2950%" y="463.50"></text></g><g><title>mark_page_accessed (686 samples, 0.04%)</title><rect x="44.1926%" y="437" width="0.0446%" height="15" fill="rgb(240,178,43)" fg:x="680057" fg:w="686"/><text x="44.4426%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (885 samples, 0.06%)</title><rect x="44.1798%" y="453" width="0.0575%" height="15" fill="rgb(214,112,2)" fg:x="679859" fg:w="885"/><text x="44.4298%" y="463.50"></text></g><g><title>find_extent_buffer (4,065 samples, 0.26%)</title><rect x="43.9753%" y="469" width="0.2642%" height="15" fill="rgb(206,46,17)" fg:x="676712" fg:w="4065"/><text x="44.2253%" y="479.50"></text></g><g><title>read_block_for_search.isra.0 (6,583 samples, 0.43%)</title><rect x="43.8532%" y="485" width="0.4278%" height="15" fill="rgb(225,220,16)" fg:x="674834" fg:w="6583"/><text x="44.1032%" y="495.50"></text></g><g><title>read_extent_buffer (640 samples, 0.04%)</title><rect x="44.2394%" y="469" width="0.0416%" height="15" fill="rgb(238,65,40)" fg:x="680777" fg:w="640"/><text x="44.4894%" y="479.50"></text></g><g><title>btrfs_search_slot (33,017 samples, 2.15%)</title><rect x="42.1715%" y="501" width="2.1456%" height="15" fill="rgb(230,151,21)" fg:x="648955" fg:w="33017"/><text x="42.4215%" y="511.50">b..</text></g><g><title>unlock_up (555 samples, 0.04%)</title><rect x="44.2810%" y="485" width="0.0361%" height="15" fill="rgb(218,58,49)" fg:x="681417" fg:w="555"/><text x="44.5310%" y="495.50"></text></g><g><title>btrfs_lookup_dir_item (33,994 samples, 2.21%)</title><rect x="42.1557%" y="517" width="2.2091%" height="15" fill="rgb(219,179,14)" fg:x="648712" fg:w="33994"/><text x="42.4057%" y="527.50">b..</text></g><g><title>crc32c (734 samples, 0.05%)</title><rect x="44.3171%" y="501" width="0.0477%" height="15" fill="rgb(223,72,1)" fg:x="681972" fg:w="734"/><text x="44.5671%" y="511.50"></text></g><g><title>crypto_shash_update (373 samples, 0.02%)</title><rect x="44.3405%" y="485" width="0.0242%" height="15" fill="rgb(238,126,10)" fg:x="682333" fg:w="373"/><text x="44.5905%" y="495.50"></text></g><g><title>kmem_cache_alloc (752 samples, 0.05%)</title><rect x="44.3648%" y="517" width="0.0489%" height="15" fill="rgb(224,206,38)" fg:x="682706" fg:w="752"/><text x="44.6148%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (164 samples, 0.01%)</title><rect x="44.4030%" y="501" width="0.0107%" height="15" fill="rgb(212,201,54)" fg:x="683294" fg:w="164"/><text x="44.6530%" y="511.50"></text></g><g><title>btrfs_lookup (37,972 samples, 2.47%)</title><rect x="41.9758%" y="549" width="2.4676%" height="15" fill="rgb(218,154,48)" fg:x="645944" fg:w="37972"/><text x="42.2258%" y="559.50">bt..</text></g><g><title>btrfs_lookup_dentry (37,910 samples, 2.46%)</title><rect x="41.9799%" y="533" width="2.4635%" height="15" fill="rgb(232,93,24)" fg:x="646006" fg:w="37910"/><text x="42.2299%" y="543.50">bt..</text></g><g><title>kmem_cache_free (458 samples, 0.03%)</title><rect x="44.4136%" y="517" width="0.0298%" height="15" fill="rgb(245,30,21)" fg:x="683458" fg:w="458"/><text x="44.6636%" y="527.50"></text></g><g><title>d_set_d_op (184 samples, 0.01%)</title><rect x="44.5272%" y="501" width="0.0120%" height="15" fill="rgb(242,148,29)" fg:x="685205" fg:w="184"/><text x="44.7772%" y="511.50"></text></g><g><title>__alloc_pages_nodemask (186 samples, 0.01%)</title><rect x="44.5838%" y="437" width="0.0121%" height="15" fill="rgb(244,153,54)" fg:x="686077" fg:w="186"/><text x="44.8338%" y="447.50"></text></g><g><title>allocate_slab (288 samples, 0.02%)</title><rect x="44.5809%" y="453" width="0.0187%" height="15" fill="rgb(252,87,22)" fg:x="686032" fg:w="288"/><text x="44.8309%" y="463.50"></text></g><g><title>___slab_alloc (539 samples, 0.04%)</title><rect x="44.5677%" y="469" width="0.0350%" height="15" fill="rgb(210,51,29)" fg:x="685829" fg:w="539"/><text x="44.8177%" y="479.50"></text></g><g><title>__slab_alloc (569 samples, 0.04%)</title><rect x="44.5658%" y="485" width="0.0370%" height="15" fill="rgb(242,136,47)" fg:x="685800" fg:w="569"/><text x="44.8158%" y="495.50"></text></g><g><title>__mod_memcg_lruvec_state (298 samples, 0.02%)</title><rect x="44.6658%" y="469" width="0.0194%" height="15" fill="rgb(238,68,4)" fg:x="687338" fg:w="298"/><text x="44.9158%" y="479.50"></text></g><g><title>__mod_memcg_state.part.0 (229 samples, 0.01%)</title><rect x="44.6703%" y="453" width="0.0149%" height="15" fill="rgb(242,161,30)" fg:x="687407" fg:w="229"/><text x="44.9203%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,341 samples, 0.09%)</title><rect x="44.6029%" y="485" width="0.0871%" height="15" fill="rgb(218,58,44)" fg:x="686370" fg:w="1341"/><text x="44.8529%" y="495.50"></text></g><g><title>get_obj_cgroup_from_current (926 samples, 0.06%)</title><rect x="44.7143%" y="469" width="0.0602%" height="15" fill="rgb(252,125,32)" fg:x="688085" fg:w="926"/><text x="44.9643%" y="479.50"></text></g><g><title>obj_cgroup_charge (407 samples, 0.03%)</title><rect x="44.7745%" y="469" width="0.0264%" height="15" fill="rgb(219,178,0)" fg:x="689011" fg:w="407"/><text x="45.0245%" y="479.50"></text></g><g><title>kmem_cache_alloc (4,033 samples, 0.26%)</title><rect x="44.5391%" y="501" width="0.2621%" height="15" fill="rgb(213,152,7)" fg:x="685389" fg:w="4033"/><text x="44.7891%" y="511.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,574 samples, 0.10%)</title><rect x="44.6989%" y="485" width="0.1023%" height="15" fill="rgb(249,109,34)" fg:x="687848" fg:w="1574"/><text x="44.9489%" y="495.50"></text></g><g><title>__d_alloc (4,704 samples, 0.31%)</title><rect x="44.5024%" y="517" width="0.3057%" height="15" fill="rgb(232,96,21)" fg:x="684824" fg:w="4704"/><text x="44.7524%" y="527.50"></text></g><g><title>d_alloc (5,056 samples, 0.33%)</title><rect x="44.4964%" y="533" width="0.3286%" height="15" fill="rgb(228,27,39)" fg:x="684731" fg:w="5056"/><text x="44.7464%" y="543.50"></text></g><g><title>d_alloc_parallel (5,875 samples, 0.38%)</title><rect x="44.4434%" y="549" width="0.3818%" height="15" fill="rgb(211,182,52)" fg:x="683916" fg:w="5875"/><text x="44.6934%" y="559.50"></text></g><g><title>__wake_up_common_lock (566 samples, 0.04%)</title><rect x="44.8740%" y="501" width="0.0368%" height="15" fill="rgb(234,178,38)" fg:x="690542" fg:w="566"/><text x="45.1240%" y="511.50"></text></g><g><title>_raw_spin_unlock_irqrestore (161 samples, 0.01%)</title><rect x="44.9003%" y="485" width="0.0105%" height="15" fill="rgb(221,111,3)" fg:x="690947" fg:w="161"/><text x="45.1503%" y="495.50"></text></g><g><title>__d_lookup_done (792 samples, 0.05%)</title><rect x="44.8594%" y="517" width="0.0515%" height="15" fill="rgb(228,175,21)" fg:x="690317" fg:w="792"/><text x="45.1094%" y="527.50"></text></g><g><title>__d_rehash (295 samples, 0.02%)</title><rect x="44.9108%" y="517" width="0.0192%" height="15" fill="rgb(228,174,43)" fg:x="691109" fg:w="295"/><text x="45.1608%" y="527.50"></text></g><g><title>__d_add (1,534 samples, 0.10%)</title><rect x="44.8377%" y="533" width="0.0997%" height="15" fill="rgb(211,191,0)" fg:x="689984" fg:w="1534"/><text x="45.0877%" y="543.50"></text></g><g><title>__lookup_slow (45,653 samples, 2.97%)</title><rect x="41.9708%" y="565" width="2.9667%" height="15" fill="rgb(253,117,3)" fg:x="645866" fg:w="45653"/><text x="42.2208%" y="575.50">__l..</text></g><g><title>d_splice_alias (1,728 samples, 0.11%)</title><rect x="44.8252%" y="549" width="0.1123%" height="15" fill="rgb(241,127,19)" fg:x="689791" fg:w="1728"/><text x="45.0752%" y="559.50"></text></g><g><title>down_read (158 samples, 0.01%)</title><rect x="44.9377%" y="565" width="0.0103%" height="15" fill="rgb(218,103,12)" fg:x="691522" fg:w="158"/><text x="45.1877%" y="575.50"></text></g><g><title>__d_lookup_rcu (2,756 samples, 0.18%)</title><rect x="44.9589%" y="549" width="0.1791%" height="15" fill="rgb(236,214,43)" fg:x="691848" fg:w="2756"/><text x="45.2089%" y="559.50"></text></g><g><title>__legitimize_mnt (442 samples, 0.03%)</title><rect x="45.1467%" y="517" width="0.0287%" height="15" fill="rgb(244,144,19)" fg:x="694738" fg:w="442"/><text x="45.3967%" y="527.50"></text></g><g><title>__legitimize_path (965 samples, 0.06%)</title><rect x="45.1422%" y="533" width="0.0627%" height="15" fill="rgb(246,188,10)" fg:x="694670" fg:w="965"/><text x="45.3922%" y="543.50"></text></g><g><title>lockref_get_not_dead (454 samples, 0.03%)</title><rect x="45.1754%" y="517" width="0.0295%" height="15" fill="rgb(212,193,33)" fg:x="695181" fg:w="454"/><text x="45.4254%" y="527.50"></text></g><g><title>lookup_fast (4,013 samples, 0.26%)</title><rect x="44.9479%" y="565" width="0.2608%" height="15" fill="rgb(241,51,29)" fg:x="691680" fg:w="4013"/><text x="45.1979%" y="575.50"></text></g><g><title>try_to_unlazy (1,087 samples, 0.07%)</title><rect x="45.1381%" y="549" width="0.0706%" height="15" fill="rgb(211,58,19)" fg:x="694606" fg:w="1087"/><text x="45.3881%" y="559.50"></text></g><g><title>_cond_resched (187 samples, 0.01%)</title><rect x="45.2376%" y="533" width="0.0122%" height="15" fill="rgb(229,111,26)" fg:x="696138" fg:w="187"/><text x="45.4876%" y="543.50"></text></g><g><title>btrfs_dentry_delete (250 samples, 0.02%)</title><rect x="45.2500%" y="533" width="0.0162%" height="15" fill="rgb(213,115,40)" fg:x="696328" fg:w="250"/><text x="45.5000%" y="543.50"></text></g><g><title>__list_add_valid (411 samples, 0.03%)</title><rect x="45.3152%" y="501" width="0.0267%" height="15" fill="rgb(209,56,44)" fg:x="697332" fg:w="411"/><text x="45.5652%" y="511.50"></text></g><g><title>_raw_spin_lock (565 samples, 0.04%)</title><rect x="45.3419%" y="501" width="0.0367%" height="15" fill="rgb(230,108,32)" fg:x="697743" fg:w="565"/><text x="45.5919%" y="511.50"></text></g><g><title>d_lru_add (1,841 samples, 0.12%)</title><rect x="45.2662%" y="533" width="0.1196%" height="15" fill="rgb(216,165,31)" fg:x="696578" fg:w="1841"/><text x="45.5162%" y="543.50"></text></g><g><title>list_lru_add (1,732 samples, 0.11%)</title><rect x="45.2733%" y="517" width="0.1126%" height="15" fill="rgb(218,122,21)" fg:x="696687" fg:w="1732"/><text x="45.5233%" y="527.50"></text></g><g><title>lockref_put_or_lock (213 samples, 0.01%)</title><rect x="45.3859%" y="533" width="0.0138%" height="15" fill="rgb(223,224,47)" fg:x="698419" fg:w="213"/><text x="45.6359%" y="543.50"></text></g><g><title>step_into (2,954 samples, 0.19%)</title><rect x="45.2087%" y="565" width="0.1920%" height="15" fill="rgb(238,102,44)" fg:x="695693" fg:w="2954"/><text x="45.4587%" y="575.50"></text></g><g><title>dput (2,651 samples, 0.17%)</title><rect x="45.2284%" y="549" width="0.1723%" height="15" fill="rgb(236,46,40)" fg:x="695996" fg:w="2651"/><text x="45.4784%" y="559.50"></text></g><g><title>path_lookupat (109,382 samples, 7.11%)</title><rect x="38.3065%" y="597" width="7.1080%" height="15" fill="rgb(247,202,50)" fg:x="589478" fg:w="109382"/><text x="38.5565%" y="607.50">path_looku..</text></g><g><title>walk_component (53,191 samples, 3.46%)</title><rect x="41.9580%" y="581" width="3.4565%" height="15" fill="rgb(209,99,20)" fg:x="645669" fg:w="53191"/><text x="42.2080%" y="591.50">wal..</text></g><g><title>up_read (213 samples, 0.01%)</title><rect x="45.4007%" y="565" width="0.0138%" height="15" fill="rgb(252,27,34)" fg:x="698647" fg:w="213"/><text x="45.6507%" y="575.50"></text></g><g><title>filename_lookup (111,293 samples, 7.23%)</title><rect x="38.1890%" y="613" width="7.2322%" height="15" fill="rgb(215,206,23)" fg:x="587670" fg:w="111293"/><text x="38.4390%" y="623.50">filename_l..</text></g><g><title>mntput_no_expire (175 samples, 0.01%)</title><rect x="45.4223%" y="613" width="0.0114%" height="15" fill="rgb(212,135,36)" fg:x="698979" fg:w="175"/><text x="45.6723%" y="623.50"></text></g><g><title>__schedule (186 samples, 0.01%)</title><rect x="45.4441%" y="565" width="0.0121%" height="15" fill="rgb(240,189,1)" fg:x="699315" fg:w="186"/><text x="45.6941%" y="575.50"></text></g><g><title>_cond_resched (221 samples, 0.01%)</title><rect x="45.4429%" y="581" width="0.0144%" height="15" fill="rgb(242,56,20)" fg:x="699296" fg:w="221"/><text x="45.6929%" y="591.50"></text></g><g><title>lockref_put_or_lock (234 samples, 0.02%)</title><rect x="45.4664%" y="581" width="0.0152%" height="15" fill="rgb(247,132,33)" fg:x="699659" fg:w="234"/><text x="45.7164%" y="591.50"></text></g><g><title>_raw_spin_lock (174 samples, 0.01%)</title><rect x="45.4703%" y="565" width="0.0113%" height="15" fill="rgb(208,149,11)" fg:x="699719" fg:w="174"/><text x="45.7203%" y="575.50"></text></g><g><title>path_put (748 samples, 0.05%)</title><rect x="45.4336%" y="613" width="0.0486%" height="15" fill="rgb(211,33,11)" fg:x="699154" fg:w="748"/><text x="45.6836%" y="623.50"></text></g><g><title>dput (736 samples, 0.05%)</title><rect x="45.4344%" y="597" width="0.0478%" height="15" fill="rgb(221,29,38)" fg:x="699166" fg:w="736"/><text x="45.6844%" y="607.50"></text></g><g><title>apparmor_inode_getattr (227 samples, 0.01%)</title><rect x="45.5375%" y="597" width="0.0148%" height="15" fill="rgb(206,182,49)" fg:x="700753" fg:w="227"/><text x="45.7875%" y="607.50"></text></g><g><title>security_inode_getattr (2,020 samples, 0.13%)</title><rect x="45.4822%" y="613" width="0.1313%" height="15" fill="rgb(216,140,1)" fg:x="699902" fg:w="2020"/><text x="45.7322%" y="623.50"></text></g><g><title>tomoyo_path_perm (925 samples, 0.06%)</title><rect x="45.5534%" y="597" width="0.0601%" height="15" fill="rgb(232,57,40)" fg:x="700997" fg:w="925"/><text x="45.8034%" y="607.50"></text></g><g><title>tomoyo_init_request_info (577 samples, 0.04%)</title><rect x="45.5760%" y="581" width="0.0375%" height="15" fill="rgb(224,186,18)" fg:x="701345" fg:w="577"/><text x="45.8260%" y="591.50"></text></g><g><title>tomoyo_domain (272 samples, 0.02%)</title><rect x="45.5958%" y="565" width="0.0177%" height="15" fill="rgb(215,121,11)" fg:x="701650" fg:w="272"/><text x="45.8458%" y="575.50"></text></g><g><title>memcg_slab_post_alloc_hook (168 samples, 0.01%)</title><rect x="45.7036%" y="565" width="0.0109%" height="15" fill="rgb(245,147,10)" fg:x="703309" fg:w="168"/><text x="45.9536%" y="575.50"></text></g><g><title>memset_erms (2,629 samples, 0.17%)</title><rect x="45.7150%" y="565" width="0.1708%" height="15" fill="rgb(238,153,13)" fg:x="703484" fg:w="2629"/><text x="45.9650%" y="575.50"></text></g><g><title>kmem_cache_alloc (4,145 samples, 0.27%)</title><rect x="45.6471%" y="581" width="0.2694%" height="15" fill="rgb(233,108,0)" fg:x="702439" fg:w="4145"/><text x="45.8971%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (471 samples, 0.03%)</title><rect x="45.8858%" y="565" width="0.0306%" height="15" fill="rgb(212,157,17)" fg:x="706113" fg:w="471"/><text x="46.1358%" y="575.50"></text></g><g><title>__check_heap_object (438 samples, 0.03%)</title><rect x="46.0945%" y="549" width="0.0285%" height="15" fill="rgb(225,213,38)" fg:x="709324" fg:w="438"/><text x="46.3445%" y="559.50"></text></g><g><title>__virt_addr_valid (776 samples, 0.05%)</title><rect x="46.1230%" y="549" width="0.0504%" height="15" fill="rgb(248,16,11)" fg:x="709762" fg:w="776"/><text x="46.3730%" y="559.50"></text></g><g><title>__check_object_size (1,642 samples, 0.11%)</title><rect x="46.0717%" y="565" width="0.1067%" height="15" fill="rgb(241,33,4)" fg:x="708973" fg:w="1642"/><text x="46.3217%" y="575.50"></text></g><g><title>user_path_at_empty (8,700 samples, 0.57%)</title><rect x="45.6135%" y="613" width="0.5654%" height="15" fill="rgb(222,26,43)" fg:x="701922" fg:w="8700"/><text x="45.8635%" y="623.50"></text></g><g><title>getname_flags.part.0 (8,493 samples, 0.55%)</title><rect x="45.6270%" y="597" width="0.5519%" height="15" fill="rgb(243,29,36)" fg:x="702129" fg:w="8493"/><text x="45.8770%" y="607.50"></text></g><g><title>strncpy_from_user (4,038 samples, 0.26%)</title><rect x="45.9165%" y="581" width="0.2624%" height="15" fill="rgb(241,9,27)" fg:x="706584" fg:w="4038"/><text x="46.1665%" y="591.50"></text></g><g><title>__do_sys_newstat (126,959 samples, 8.25%)</title><rect x="37.9564%" y="645" width="8.2503%" height="15" fill="rgb(205,117,26)" fg:x="584091" fg:w="126959"/><text x="38.2064%" y="655.50">__do_sys_ne..</text></g><g><title>vfs_statx (125,369 samples, 8.15%)</title><rect x="38.0597%" y="629" width="8.1469%" height="15" fill="rgb(209,80,39)" fg:x="585681" fg:w="125369"/><text x="38.3097%" y="639.50">vfs_statx</text></g><g><title>vfs_getattr_nosec (428 samples, 0.03%)</title><rect x="46.1789%" y="613" width="0.0278%" height="15" fill="rgb(239,155,6)" fg:x="710622" fg:w="428"/><text x="46.4289%" y="623.50"></text></g><g><title>do_syscall_64 (127,193 samples, 8.27%)</title><rect x="37.9480%" y="661" width="8.2655%" height="15" fill="rgb(212,104,12)" fg:x="583962" fg:w="127193"/><text x="38.1980%" y="671.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (128,140 samples, 8.33%)</title><rect x="37.9270%" y="677" width="8.3270%" height="15" fill="rgb(234,204,3)" fg:x="583639" fg:w="128140"/><text x="38.1770%" y="687.50">entry_SYSCAL..</text></g><g><title>syscall_exit_to_user_mode (624 samples, 0.04%)</title><rect x="46.2135%" y="661" width="0.0405%" height="15" fill="rgb(251,218,7)" fg:x="711155" fg:w="624"/><text x="46.4635%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (472 samples, 0.03%)</title><rect x="46.2234%" y="645" width="0.0307%" height="15" fill="rgb(221,81,32)" fg:x="711307" fg:w="472"/><text x="46.4734%" y="655.50"></text></g><g><title>syscall_return_via_sysret (449 samples, 0.03%)</title><rect x="46.2571%" y="677" width="0.0292%" height="15" fill="rgb(214,152,26)" fg:x="711826" fg:w="449"/><text x="46.5071%" y="687.50"></text></g><g><title>__GI___xstat (130,316 samples, 8.47%)</title><rect x="37.8180%" y="693" width="8.4684%" height="15" fill="rgb(223,22,3)" fg:x="581961" fg:w="130316"/><text x="38.0680%" y="703.50">__GI___xstat</text></g><g><title>crc32c_pcl_intel_update (340 samples, 0.02%)</title><rect x="46.3420%" y="677" width="0.0221%" height="15" fill="rgb(207,174,7)" fg:x="713133" fg:w="340"/><text x="46.5920%" y="687.50"></text></g><g><title>entry_SYSCALL_64 (369 samples, 0.02%)</title><rect x="46.3641%" y="677" width="0.0240%" height="15" fill="rgb(224,19,52)" fg:x="713473" fg:w="369"/><text x="46.6141%" y="687.50"></text></g><g><title>getname_flags (246 samples, 0.02%)</title><rect x="46.4348%" y="629" width="0.0160%" height="15" fill="rgb(228,24,14)" fg:x="714561" fg:w="246"/><text x="46.6848%" y="639.50"></text></g><g><title>memset_erms (1,556 samples, 0.10%)</title><rect x="46.4973%" y="597" width="0.1011%" height="15" fill="rgb(230,153,43)" fg:x="715522" fg:w="1556"/><text x="46.7473%" y="607.50"></text></g><g><title>kmem_cache_alloc (2,328 samples, 0.15%)</title><rect x="46.4619%" y="613" width="0.1513%" height="15" fill="rgb(231,106,12)" fg:x="714978" fg:w="2328"/><text x="46.7119%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (228 samples, 0.01%)</title><rect x="46.5984%" y="597" width="0.0148%" height="15" fill="rgb(215,92,2)" fg:x="717078" fg:w="228"/><text x="46.8484%" y="607.50"></text></g><g><title>__check_heap_object (169 samples, 0.01%)</title><rect x="46.6794%" y="581" width="0.0110%" height="15" fill="rgb(249,143,25)" fg:x="718324" fg:w="169"/><text x="46.9294%" y="591.50"></text></g><g><title>__virt_addr_valid (668 samples, 0.04%)</title><rect x="46.6903%" y="581" width="0.0434%" height="15" fill="rgb(252,7,35)" fg:x="718493" fg:w="668"/><text x="46.9403%" y="591.50"></text></g><g><title>__check_object_size (1,198 samples, 0.08%)</title><rect x="46.6642%" y="597" width="0.0779%" height="15" fill="rgb(216,69,40)" fg:x="718091" fg:w="1198"/><text x="46.9142%" y="607.50"></text></g><g><title>getname_flags.part.0 (4,489 samples, 0.29%)</title><rect x="46.4508%" y="629" width="0.2917%" height="15" fill="rgb(240,36,33)" fg:x="714807" fg:w="4489"/><text x="46.7008%" y="639.50"></text></g><g><title>strncpy_from_user (1,990 samples, 0.13%)</title><rect x="46.6132%" y="613" width="0.1293%" height="15" fill="rgb(231,128,14)" fg:x="717306" fg:w="1990"/><text x="46.8632%" y="623.50"></text></g><g><title>__x64_sys_unlinkat (4,773 samples, 0.31%)</title><rect x="46.4325%" y="645" width="0.3102%" height="15" fill="rgb(245,143,14)" fg:x="714525" fg:w="4773"/><text x="46.6825%" y="655.50"></text></g><g><title>d_lru_add (236 samples, 0.02%)</title><rect x="46.7664%" y="613" width="0.0153%" height="15" fill="rgb(222,130,28)" fg:x="719663" fg:w="236"/><text x="47.0164%" y="623.50"></text></g><g><title>list_lru_add (231 samples, 0.02%)</title><rect x="46.7667%" y="597" width="0.0150%" height="15" fill="rgb(212,10,48)" fg:x="719668" fg:w="231"/><text x="47.0167%" y="607.50"></text></g><g><title>dput (399 samples, 0.03%)</title><rect x="46.7581%" y="629" width="0.0259%" height="15" fill="rgb(254,118,45)" fg:x="719536" fg:w="399"/><text x="47.0081%" y="639.50"></text></g><g><title>path_init (166 samples, 0.01%)</title><rect x="46.8002%" y="597" width="0.0108%" height="15" fill="rgb(228,6,45)" fg:x="720183" fg:w="166"/><text x="47.0502%" y="607.50"></text></g><g><title>filename_parentat (465 samples, 0.03%)</title><rect x="46.7841%" y="629" width="0.0302%" height="15" fill="rgb(241,18,35)" fg:x="719935" fg:w="465"/><text x="47.0341%" y="639.50"></text></g><g><title>path_parentat (430 samples, 0.03%)</title><rect x="46.7863%" y="613" width="0.0279%" height="15" fill="rgb(227,214,53)" fg:x="719970" fg:w="430"/><text x="47.0363%" y="623.50"></text></g><g><title>security_path_rmdir (178 samples, 0.01%)</title><rect x="46.8298%" y="629" width="0.0116%" height="15" fill="rgb(224,107,51)" fg:x="720639" fg:w="178"/><text x="47.0798%" y="639.50"></text></g><g><title>__btrfs_end_transaction (331 samples, 0.02%)</title><rect x="46.8542%" y="597" width="0.0215%" height="15" fill="rgb(248,60,28)" fg:x="721015" fg:w="331"/><text x="47.1042%" y="607.50"></text></g><g><title>__wake_up_common (387 samples, 0.03%)</title><rect x="46.8904%" y="517" width="0.0251%" height="15" fill="rgb(249,101,23)" fg:x="721571" fg:w="387"/><text x="47.1404%" y="527.50"></text></g><g><title>autoremove_wake_function (379 samples, 0.02%)</title><rect x="46.8909%" y="501" width="0.0246%" height="15" fill="rgb(228,51,19)" fg:x="721579" fg:w="379"/><text x="47.1409%" y="511.50"></text></g><g><title>try_to_wake_up (374 samples, 0.02%)</title><rect x="46.8912%" y="485" width="0.0243%" height="15" fill="rgb(213,20,6)" fg:x="721584" fg:w="374"/><text x="47.1412%" y="495.50"></text></g><g><title>__wake_up_common_lock (469 samples, 0.03%)</title><rect x="46.8899%" y="533" width="0.0305%" height="15" fill="rgb(212,124,10)" fg:x="721564" fg:w="469"/><text x="47.1399%" y="543.50"></text></g><g><title>btrfs_free_path (572 samples, 0.04%)</title><rect x="46.8888%" y="565" width="0.0372%" height="15" fill="rgb(248,3,40)" fg:x="721547" fg:w="572"/><text x="47.1388%" y="575.50"></text></g><g><title>btrfs_release_path (564 samples, 0.04%)</title><rect x="46.8893%" y="549" width="0.0367%" height="15" fill="rgb(223,178,23)" fg:x="721555" fg:w="564"/><text x="47.1393%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (228 samples, 0.01%)</title><rect x="46.9307%" y="517" width="0.0148%" height="15" fill="rgb(240,132,45)" fg:x="722191" fg:w="228"/><text x="47.1807%" y="527.50"></text></g><g><title>__btrfs_read_lock_root_node (246 samples, 0.02%)</title><rect x="46.9306%" y="533" width="0.0160%" height="15" fill="rgb(245,164,36)" fg:x="722190" fg:w="246"/><text x="47.1806%" y="543.50"></text></g><g><title>__btrfs_tree_lock (382 samples, 0.02%)</title><rect x="46.9492%" y="517" width="0.0248%" height="15" fill="rgb(231,188,53)" fg:x="722477" fg:w="382"/><text x="47.1992%" y="527.50"></text></g><g><title>btrfs_lock_root_node (396 samples, 0.03%)</title><rect x="46.9491%" y="533" width="0.0257%" height="15" fill="rgb(237,198,39)" fg:x="722475" fg:w="396"/><text x="47.1991%" y="543.50"></text></g><g><title>btrfs_lookup_dir_index_item (1,098 samples, 0.07%)</title><rect x="46.9260%" y="565" width="0.0714%" height="15" fill="rgb(223,120,35)" fg:x="722119" fg:w="1098"/><text x="47.1760%" y="575.50"></text></g><g><title>btrfs_search_slot (1,086 samples, 0.07%)</title><rect x="46.9268%" y="549" width="0.0706%" height="15" fill="rgb(253,107,49)" fg:x="722131" fg:w="1086"/><text x="47.1768%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (279 samples, 0.02%)</title><rect x="47.0147%" y="485" width="0.0181%" height="15" fill="rgb(216,44,31)" fg:x="723485" fg:w="279"/><text x="47.2647%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (267 samples, 0.02%)</title><rect x="47.0155%" y="469" width="0.0174%" height="15" fill="rgb(253,87,21)" fg:x="723497" fg:w="267"/><text x="47.2655%" y="479.50"></text></g><g><title>prepare_to_wait_event (321 samples, 0.02%)</title><rect x="47.0125%" y="501" width="0.0209%" height="15" fill="rgb(226,18,2)" fg:x="723451" fg:w="321"/><text x="47.2625%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (741 samples, 0.05%)</title><rect x="47.0029%" y="517" width="0.0482%" height="15" fill="rgb(216,8,46)" fg:x="723303" fg:w="741"/><text x="47.2529%" y="527.50"></text></g><g><title>schedule (244 samples, 0.02%)</title><rect x="47.0352%" y="501" width="0.0159%" height="15" fill="rgb(226,140,39)" fg:x="723800" fg:w="244"/><text x="47.2852%" y="511.50"></text></g><g><title>__schedule (241 samples, 0.02%)</title><rect x="47.0354%" y="485" width="0.0157%" height="15" fill="rgb(221,194,54)" fg:x="723803" fg:w="241"/><text x="47.2854%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (774 samples, 0.05%)</title><rect x="47.0026%" y="533" width="0.0503%" height="15" fill="rgb(213,92,11)" fg:x="723298" fg:w="774"/><text x="47.2526%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (168 samples, 0.01%)</title><rect x="47.0615%" y="485" width="0.0109%" height="15" fill="rgb(229,162,46)" fg:x="724205" fg:w="168"/><text x="47.3115%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (160 samples, 0.01%)</title><rect x="47.0621%" y="469" width="0.0104%" height="15" fill="rgb(214,111,36)" fg:x="724213" fg:w="160"/><text x="47.3121%" y="479.50"></text></g><g><title>prepare_to_wait_event (181 samples, 0.01%)</title><rect x="47.0609%" y="501" width="0.0118%" height="15" fill="rgb(207,6,21)" fg:x="724195" fg:w="181"/><text x="47.3109%" y="511.50"></text></g><g><title>__btrfs_tree_lock (391 samples, 0.03%)</title><rect x="47.0551%" y="517" width="0.0254%" height="15" fill="rgb(213,127,38)" fg:x="724106" fg:w="391"/><text x="47.3051%" y="527.50"></text></g><g><title>btrfs_lock_root_node (408 samples, 0.03%)</title><rect x="47.0550%" y="533" width="0.0265%" height="15" fill="rgb(238,118,32)" fg:x="724105" fg:w="408"/><text x="47.3050%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (169 samples, 0.01%)</title><rect x="47.0928%" y="533" width="0.0110%" height="15" fill="rgb(240,139,39)" fg:x="724686" fg:w="169"/><text x="47.3428%" y="543.50"></text></g><g><title>btrfs_search_slot (1,656 samples, 0.11%)</title><rect x="46.9983%" y="549" width="0.1076%" height="15" fill="rgb(235,10,37)" fg:x="723232" fg:w="1656"/><text x="47.2483%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (1,685 samples, 0.11%)</title><rect x="46.9973%" y="565" width="0.1095%" height="15" fill="rgb(249,171,38)" fg:x="723217" fg:w="1685"/><text x="47.2473%" y="575.50"></text></g><g><title>__wake_up_common (362 samples, 0.02%)</title><rect x="47.1081%" y="533" width="0.0235%" height="15" fill="rgb(242,144,32)" fg:x="724922" fg:w="362"/><text x="47.3581%" y="543.50"></text></g><g><title>autoremove_wake_function (349 samples, 0.02%)</title><rect x="47.1090%" y="517" width="0.0227%" height="15" fill="rgb(217,117,21)" fg:x="724935" fg:w="349"/><text x="47.3590%" y="527.50"></text></g><g><title>try_to_wake_up (341 samples, 0.02%)</title><rect x="47.1095%" y="501" width="0.0222%" height="15" fill="rgb(249,87,1)" fg:x="724943" fg:w="341"/><text x="47.3595%" y="511.50"></text></g><g><title>__wake_up_common_lock (466 samples, 0.03%)</title><rect x="47.1081%" y="549" width="0.0303%" height="15" fill="rgb(248,196,48)" fg:x="724922" fg:w="466"/><text x="47.3581%" y="559.50"></text></g><g><title>btrfs_release_path (557 samples, 0.04%)</title><rect x="47.1068%" y="565" width="0.0362%" height="15" fill="rgb(251,206,33)" fg:x="724902" fg:w="557"/><text x="47.3568%" y="575.50"></text></g><g><title>btrfs_del_dir_entries_in_log (4,139 samples, 0.27%)</title><rect x="46.8832%" y="581" width="0.2690%" height="15" fill="rgb(232,141,28)" fg:x="721460" fg:w="4139"/><text x="47.1332%" y="591.50"></text></g><g><title>ttwu_do_activate (211 samples, 0.01%)</title><rect x="47.1916%" y="453" width="0.0137%" height="15" fill="rgb(209,167,14)" fg:x="726206" fg:w="211"/><text x="47.4416%" y="463.50"></text></g><g><title>__wake_up_common (760 samples, 0.05%)</title><rect x="47.1596%" y="501" width="0.0494%" height="15" fill="rgb(225,11,50)" fg:x="725714" fg:w="760"/><text x="47.4096%" y="511.50"></text></g><g><title>autoremove_wake_function (739 samples, 0.05%)</title><rect x="47.1610%" y="485" width="0.0480%" height="15" fill="rgb(209,50,20)" fg:x="725735" fg:w="739"/><text x="47.4110%" y="495.50"></text></g><g><title>try_to_wake_up (733 samples, 0.05%)</title><rect x="47.1613%" y="469" width="0.0476%" height="15" fill="rgb(212,17,46)" fg:x="725741" fg:w="733"/><text x="47.4113%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (326 samples, 0.02%)</title><rect x="47.2090%" y="501" width="0.0212%" height="15" fill="rgb(216,101,39)" fg:x="726474" fg:w="326"/><text x="47.4590%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (318 samples, 0.02%)</title><rect x="47.2095%" y="485" width="0.0207%" height="15" fill="rgb(212,228,48)" fg:x="726482" fg:w="318"/><text x="47.4595%" y="495.50"></text></g><g><title>__wake_up_common_lock (1,099 samples, 0.07%)</title><rect x="47.1593%" y="517" width="0.0714%" height="15" fill="rgb(250,6,50)" fg:x="725710" fg:w="1099"/><text x="47.4093%" y="527.50"></text></g><g><title>btrfs_free_path (1,309 samples, 0.09%)</title><rect x="47.1558%" y="549" width="0.0851%" height="15" fill="rgb(250,160,48)" fg:x="725656" fg:w="1309"/><text x="47.4058%" y="559.50"></text></g><g><title>btrfs_release_path (1,294 samples, 0.08%)</title><rect x="47.1568%" y="533" width="0.0841%" height="15" fill="rgb(244,216,33)" fg:x="725671" fg:w="1294"/><text x="47.4068%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (387 samples, 0.03%)</title><rect x="47.2697%" y="485" width="0.0251%" height="15" fill="rgb(207,157,5)" fg:x="727409" fg:w="387"/><text x="47.5197%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (356 samples, 0.02%)</title><rect x="47.2718%" y="469" width="0.0231%" height="15" fill="rgb(228,199,8)" fg:x="727440" fg:w="356"/><text x="47.5218%" y="479.50"></text></g><g><title>prepare_to_wait_event (433 samples, 0.03%)</title><rect x="47.2671%" y="501" width="0.0281%" height="15" fill="rgb(227,80,20)" fg:x="727369" fg:w="433"/><text x="47.5171%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (171 samples, 0.01%)</title><rect x="47.3092%" y="453" width="0.0111%" height="15" fill="rgb(222,9,33)" fg:x="728016" fg:w="171"/><text x="47.5592%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (168 samples, 0.01%)</title><rect x="47.3094%" y="437" width="0.0109%" height="15" fill="rgb(239,44,28)" fg:x="728019" fg:w="168"/><text x="47.5594%" y="447.50"></text></g><g><title>native_write_msr (167 samples, 0.01%)</title><rect x="47.3094%" y="421" width="0.0109%" height="15" fill="rgb(249,187,43)" fg:x="728020" fg:w="167"/><text x="47.5594%" y="431.50"></text></g><g><title>finish_task_switch (194 samples, 0.01%)</title><rect x="47.3084%" y="469" width="0.0126%" height="15" fill="rgb(216,141,28)" fg:x="728004" fg:w="194"/><text x="47.5584%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (1,165 samples, 0.08%)</title><rect x="47.2524%" y="517" width="0.0757%" height="15" fill="rgb(230,154,53)" fg:x="727142" fg:w="1165"/><text x="47.5024%" y="527.50"></text></g><g><title>schedule (454 samples, 0.03%)</title><rect x="47.2986%" y="501" width="0.0295%" height="15" fill="rgb(227,82,4)" fg:x="727853" fg:w="454"/><text x="47.5486%" y="511.50"></text></g><g><title>__schedule (449 samples, 0.03%)</title><rect x="47.2989%" y="485" width="0.0292%" height="15" fill="rgb(220,107,16)" fg:x="727858" fg:w="449"/><text x="47.5489%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (1,288 samples, 0.08%)</title><rect x="47.2514%" y="533" width="0.0837%" height="15" fill="rgb(207,187,2)" fg:x="727126" fg:w="1288"/><text x="47.5014%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (248 samples, 0.02%)</title><rect x="47.3525%" y="485" width="0.0161%" height="15" fill="rgb(210,162,52)" fg:x="728683" fg:w="248"/><text x="47.6025%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (238 samples, 0.02%)</title><rect x="47.3532%" y="469" width="0.0155%" height="15" fill="rgb(217,216,49)" fg:x="728693" fg:w="238"/><text x="47.6032%" y="479.50"></text></g><g><title>prepare_to_wait_event (269 samples, 0.02%)</title><rect x="47.3517%" y="501" width="0.0175%" height="15" fill="rgb(218,146,49)" fg:x="728670" fg:w="269"/><text x="47.6017%" y="511.50"></text></g><g><title>__btrfs_tree_lock (703 samples, 0.05%)</title><rect x="47.3400%" y="517" width="0.0457%" height="15" fill="rgb(216,55,40)" fg:x="728490" fg:w="703"/><text x="47.5900%" y="527.50"></text></g><g><title>schedule (192 samples, 0.01%)</title><rect x="47.3732%" y="501" width="0.0125%" height="15" fill="rgb(208,196,21)" fg:x="729001" fg:w="192"/><text x="47.6232%" y="511.50"></text></g><g><title>__schedule (185 samples, 0.01%)</title><rect x="47.3737%" y="485" width="0.0120%" height="15" fill="rgb(242,117,42)" fg:x="729008" fg:w="185"/><text x="47.6237%" y="495.50"></text></g><g><title>btrfs_lock_root_node (740 samples, 0.05%)</title><rect x="47.3398%" y="533" width="0.0481%" height="15" fill="rgb(210,11,23)" fg:x="728487" fg:w="740"/><text x="47.5898%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (160 samples, 0.01%)</title><rect x="47.3974%" y="533" width="0.0104%" height="15" fill="rgb(217,110,2)" fg:x="729373" fg:w="160"/><text x="47.6474%" y="543.50"></text></g><g><title>find_extent_buffer (220 samples, 0.01%)</title><rect x="47.4158%" y="517" width="0.0143%" height="15" fill="rgb(229,77,54)" fg:x="729657" fg:w="220"/><text x="47.6658%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (384 samples, 0.02%)</title><rect x="47.4078%" y="533" width="0.0250%" height="15" fill="rgb(218,53,16)" fg:x="729533" fg:w="384"/><text x="47.6578%" y="543.50"></text></g><g><title>btrfs_search_slot (3,027 samples, 0.20%)</title><rect x="47.2410%" y="549" width="0.1967%" height="15" fill="rgb(215,38,13)" fg:x="726966" fg:w="3027"/><text x="47.4910%" y="559.50"></text></g><g><title>btrfs_del_inode_ref (4,578 samples, 0.30%)</title><rect x="47.1542%" y="565" width="0.2975%" height="15" fill="rgb(235,42,18)" fg:x="725631" fg:w="4578"/><text x="47.4042%" y="575.50"></text></g><g><title>btrfs_del_inode_ref_in_log (4,730 samples, 0.31%)</title><rect x="47.1521%" y="581" width="0.3074%" height="15" fill="rgb(219,66,54)" fg:x="725599" fg:w="4730"/><text x="47.4021%" y="591.50"></text></g><g><title>btrfs_del_leaf (154 samples, 0.01%)</title><rect x="47.4726%" y="565" width="0.0100%" height="15" fill="rgb(222,205,4)" fg:x="730530" fg:w="154"/><text x="47.7226%" y="575.50"></text></g><g><title>btrfs_get_token_32 (728 samples, 0.05%)</title><rect x="47.4851%" y="565" width="0.0473%" height="15" fill="rgb(227,213,46)" fg:x="730723" fg:w="728"/><text x="47.7351%" y="575.50"></text></g><g><title>btrfs_set_token_32 (493 samples, 0.03%)</title><rect x="47.5356%" y="565" width="0.0320%" height="15" fill="rgb(250,145,42)" fg:x="731500" fg:w="493"/><text x="47.7856%" y="575.50"></text></g><g><title>memmove_extent_buffer (420 samples, 0.03%)</title><rect x="47.5762%" y="565" width="0.0273%" height="15" fill="rgb(219,15,2)" fg:x="732125" fg:w="420"/><text x="47.8262%" y="575.50"></text></g><g><title>memmove (345 samples, 0.02%)</title><rect x="47.5811%" y="549" width="0.0224%" height="15" fill="rgb(231,181,52)" fg:x="732200" fg:w="345"/><text x="47.8311%" y="559.50"></text></g><g><title>__push_leaf_right (156 samples, 0.01%)</title><rect x="47.6069%" y="549" width="0.0101%" height="15" fill="rgb(235,1,42)" fg:x="732598" fg:w="156"/><text x="47.8569%" y="559.50"></text></g><g><title>push_leaf_right (198 samples, 0.01%)</title><rect x="47.6065%" y="565" width="0.0129%" height="15" fill="rgb(249,88,27)" fg:x="732591" fg:w="198"/><text x="47.8565%" y="575.50"></text></g><g><title>btrfs_del_items (2,463 samples, 0.16%)</title><rect x="47.4595%" y="581" width="0.1601%" height="15" fill="rgb(235,145,16)" fg:x="730329" fg:w="2463"/><text x="47.7095%" y="591.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (355 samples, 0.02%)</title><rect x="47.6195%" y="581" width="0.0231%" height="15" fill="rgb(237,114,19)" fg:x="732792" fg:w="355"/><text x="47.8695%" y="591.50"></text></g><g><title>__mutex_lock.constprop.0 (155 samples, 0.01%)</title><rect x="47.6565%" y="565" width="0.0101%" height="15" fill="rgb(238,51,50)" fg:x="733361" fg:w="155"/><text x="47.9065%" y="575.50"></text></g><g><title>btrfs_delete_delayed_dir_index (659 samples, 0.04%)</title><rect x="47.6426%" y="581" width="0.0428%" height="15" fill="rgb(205,194,25)" fg:x="733147" fg:w="659"/><text x="47.8926%" y="591.50"></text></g><g><title>btrfs_match_dir_item_name (167 samples, 0.01%)</title><rect x="47.6915%" y="565" width="0.0109%" height="15" fill="rgb(215,203,17)" fg:x="733899" fg:w="167"/><text x="47.9415%" y="575.50"></text></g><g><title>_raw_spin_lock_irqsave (222 samples, 0.01%)</title><rect x="47.7237%" y="501" width="0.0144%" height="15" fill="rgb(233,112,49)" fg:x="734395" fg:w="222"/><text x="47.9737%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (204 samples, 0.01%)</title><rect x="47.7249%" y="485" width="0.0133%" height="15" fill="rgb(241,130,26)" fg:x="734413" fg:w="204"/><text x="47.9749%" y="495.50"></text></g><g><title>prepare_to_wait_event (242 samples, 0.02%)</title><rect x="47.7225%" y="517" width="0.0157%" height="15" fill="rgb(252,223,19)" fg:x="734376" fg:w="242"/><text x="47.9725%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (515 samples, 0.03%)</title><rect x="47.7382%" y="517" width="0.0335%" height="15" fill="rgb(211,95,25)" fg:x="734618" fg:w="515"/><text x="47.9882%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (339 samples, 0.02%)</title><rect x="47.7496%" y="501" width="0.0220%" height="15" fill="rgb(251,182,27)" fg:x="734794" fg:w="339"/><text x="47.9996%" y="511.50"></text></g><g><title>__btrfs_tree_read_lock (1,226 samples, 0.08%)</title><rect x="47.7123%" y="533" width="0.0797%" height="15" fill="rgb(238,24,4)" fg:x="734219" fg:w="1226"/><text x="47.9623%" y="543.50"></text></g><g><title>schedule (312 samples, 0.02%)</title><rect x="47.7717%" y="517" width="0.0203%" height="15" fill="rgb(224,220,25)" fg:x="735133" fg:w="312"/><text x="48.0217%" y="527.50"></text></g><g><title>__schedule (306 samples, 0.02%)</title><rect x="47.7721%" y="501" width="0.0199%" height="15" fill="rgb(239,133,26)" fg:x="735139" fg:w="306"/><text x="48.0221%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (1,270 samples, 0.08%)</title><rect x="47.7120%" y="549" width="0.0825%" height="15" fill="rgb(211,94,48)" fg:x="734215" fg:w="1270"/><text x="47.9620%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (257 samples, 0.02%)</title><rect x="47.8005%" y="485" width="0.0167%" height="15" fill="rgb(239,87,6)" fg:x="735576" fg:w="257"/><text x="48.0505%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (252 samples, 0.02%)</title><rect x="47.8008%" y="469" width="0.0164%" height="15" fill="rgb(227,62,0)" fg:x="735581" fg:w="252"/><text x="48.0508%" y="479.50"></text></g><g><title>native_write_msr (251 samples, 0.02%)</title><rect x="47.8009%" y="453" width="0.0163%" height="15" fill="rgb(211,226,4)" fg:x="735582" fg:w="251"/><text x="48.0509%" y="463.50"></text></g><g><title>finish_task_switch (271 samples, 0.02%)</title><rect x="47.7999%" y="501" width="0.0176%" height="15" fill="rgb(253,38,52)" fg:x="735568" fg:w="271"/><text x="48.0499%" y="511.50"></text></g><g><title>__schedule (406 samples, 0.03%)</title><rect x="47.7961%" y="517" width="0.0264%" height="15" fill="rgb(229,126,40)" fg:x="735509" fg:w="406"/><text x="48.0461%" y="527.50"></text></g><g><title>__btrfs_tree_lock (431 samples, 0.03%)</title><rect x="47.7946%" y="549" width="0.0280%" height="15" fill="rgb(229,165,44)" fg:x="735485" fg:w="431"/><text x="48.0446%" y="559.50"></text></g><g><title>schedule (410 samples, 0.03%)</title><rect x="47.7959%" y="533" width="0.0266%" height="15" fill="rgb(247,95,47)" fg:x="735506" fg:w="410"/><text x="48.0459%" y="543.50"></text></g><g><title>_raw_spin_lock_irqsave (339 samples, 0.02%)</title><rect x="47.8393%" y="501" width="0.0220%" height="15" fill="rgb(216,140,30)" fg:x="736173" fg:w="339"/><text x="48.0893%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (315 samples, 0.02%)</title><rect x="47.8408%" y="485" width="0.0205%" height="15" fill="rgb(246,214,8)" fg:x="736197" fg:w="315"/><text x="48.0908%" y="495.50"></text></g><g><title>prepare_to_wait_event (391 samples, 0.03%)</title><rect x="47.8363%" y="517" width="0.0254%" height="15" fill="rgb(227,224,15)" fg:x="736127" fg:w="391"/><text x="48.0863%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (642 samples, 0.04%)</title><rect x="47.8617%" y="517" width="0.0417%" height="15" fill="rgb(233,175,4)" fg:x="736518" fg:w="642"/><text x="48.1117%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (238 samples, 0.02%)</title><rect x="47.8879%" y="501" width="0.0155%" height="15" fill="rgb(221,66,45)" fg:x="736922" fg:w="238"/><text x="48.1379%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (487 samples, 0.03%)</title><rect x="47.9134%" y="469" width="0.0316%" height="15" fill="rgb(221,178,18)" fg:x="737314" fg:w="487"/><text x="48.1634%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (470 samples, 0.03%)</title><rect x="47.9145%" y="453" width="0.0305%" height="15" fill="rgb(213,81,29)" fg:x="737331" fg:w="470"/><text x="48.1645%" y="463.50"></text></g><g><title>native_write_msr (463 samples, 0.03%)</title><rect x="47.9150%" y="437" width="0.0301%" height="15" fill="rgb(220,89,49)" fg:x="737338" fg:w="463"/><text x="48.1650%" y="447.50"></text></g><g><title>finish_task_switch (529 samples, 0.03%)</title><rect x="47.9119%" y="485" width="0.0344%" height="15" fill="rgb(227,60,33)" fg:x="737291" fg:w="529"/><text x="48.1619%" y="495.50"></text></g><g><title>__btrfs_tree_lock (1,985 samples, 0.13%)</title><rect x="47.8249%" y="533" width="0.1290%" height="15" fill="rgb(205,113,12)" fg:x="735952" fg:w="1985"/><text x="48.0749%" y="543.50"></text></g><g><title>schedule (777 samples, 0.05%)</title><rect x="47.9034%" y="517" width="0.0505%" height="15" fill="rgb(211,32,1)" fg:x="737160" fg:w="777"/><text x="48.1534%" y="527.50"></text></g><g><title>__schedule (770 samples, 0.05%)</title><rect x="47.9039%" y="501" width="0.0500%" height="15" fill="rgb(246,2,12)" fg:x="737167" fg:w="770"/><text x="48.1539%" y="511.50"></text></g><g><title>btrfs_lock_root_node (2,007 samples, 0.13%)</title><rect x="47.8247%" y="549" width="0.1304%" height="15" fill="rgb(243,37,27)" fg:x="735949" fg:w="2007"/><text x="48.0747%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (313 samples, 0.02%)</title><rect x="47.9584%" y="549" width="0.0203%" height="15" fill="rgb(248,211,31)" fg:x="738007" fg:w="313"/><text x="48.2084%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (283 samples, 0.02%)</title><rect x="47.9604%" y="533" width="0.0184%" height="15" fill="rgb(242,146,47)" fg:x="738037" fg:w="283"/><text x="48.2104%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (322 samples, 0.02%)</title><rect x="47.9817%" y="549" width="0.0209%" height="15" fill="rgb(206,70,20)" fg:x="738365" fg:w="322"/><text x="48.2317%" y="559.50"></text></g><g><title>__radix_tree_lookup (159 samples, 0.01%)</title><rect x="48.0186%" y="517" width="0.0103%" height="15" fill="rgb(215,10,51)" fg:x="738933" fg:w="159"/><text x="48.2686%" y="527.50"></text></g><g><title>find_extent_buffer (369 samples, 0.02%)</title><rect x="48.0119%" y="533" width="0.0240%" height="15" fill="rgb(243,178,53)" fg:x="738830" fg:w="369"/><text x="48.2619%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (559 samples, 0.04%)</title><rect x="48.0026%" y="549" width="0.0363%" height="15" fill="rgb(233,221,20)" fg:x="738687" fg:w="559"/><text x="48.2526%" y="559.50"></text></g><g><title>reada_for_balance (186 samples, 0.01%)</title><rect x="48.0390%" y="549" width="0.0121%" height="15" fill="rgb(218,95,35)" fg:x="739246" fg:w="186"/><text x="48.2890%" y="559.50"></text></g><g><title>select_task_rq_fair (172 samples, 0.01%)</title><rect x="48.0867%" y="469" width="0.0112%" height="15" fill="rgb(229,13,5)" fg:x="739981" fg:w="172"/><text x="48.3367%" y="479.50"></text></g><g><title>enqueue_task_fair (192 samples, 0.01%)</title><rect x="48.1000%" y="453" width="0.0125%" height="15" fill="rgb(252,164,30)" fg:x="740185" fg:w="192"/><text x="48.3500%" y="463.50"></text></g><g><title>ttwu_do_activate (376 samples, 0.02%)</title><rect x="48.0989%" y="469" width="0.0244%" height="15" fill="rgb(232,68,36)" fg:x="740169" fg:w="376"/><text x="48.3489%" y="479.50"></text></g><g><title>psi_task_change (168 samples, 0.01%)</title><rect x="48.1125%" y="453" width="0.0109%" height="15" fill="rgb(219,59,54)" fg:x="740377" fg:w="168"/><text x="48.3625%" y="463.50"></text></g><g><title>__wake_up_common (1,156 samples, 0.08%)</title><rect x="48.0546%" y="517" width="0.0751%" height="15" fill="rgb(250,92,33)" fg:x="739487" fg:w="1156"/><text x="48.3046%" y="527.50"></text></g><g><title>autoremove_wake_function (1,133 samples, 0.07%)</title><rect x="48.0561%" y="501" width="0.0736%" height="15" fill="rgb(229,162,54)" fg:x="739510" fg:w="1133"/><text x="48.3061%" y="511.50"></text></g><g><title>try_to_wake_up (1,097 samples, 0.07%)</title><rect x="48.0584%" y="485" width="0.0713%" height="15" fill="rgb(244,114,52)" fg:x="739546" fg:w="1097"/><text x="48.3084%" y="495.50"></text></g><g><title>__wake_up_common_lock (1,244 samples, 0.08%)</title><rect x="48.0544%" y="533" width="0.0808%" height="15" fill="rgb(212,211,43)" fg:x="739484" fg:w="1244"/><text x="48.3044%" y="543.50"></text></g><g><title>btrfs_search_slot (6,685 samples, 0.43%)</title><rect x="47.7023%" y="565" width="0.4344%" height="15" fill="rgb(226,147,8)" fg:x="734066" fg:w="6685"/><text x="47.9523%" y="575.50"></text></g><g><title>unlock_up (1,316 samples, 0.09%)</title><rect x="48.0512%" y="549" width="0.0855%" height="15" fill="rgb(226,23,13)" fg:x="739435" fg:w="1316"/><text x="48.3012%" y="559.50"></text></g><g><title>btrfs_lookup_dir_item (6,954 samples, 0.45%)</title><rect x="47.6895%" y="581" width="0.4519%" height="15" fill="rgb(240,63,4)" fg:x="733869" fg:w="6954"/><text x="47.9395%" y="591.50"></text></g><g><title>__wake_up_common (385 samples, 0.03%)</title><rect x="48.1427%" y="549" width="0.0250%" height="15" fill="rgb(221,1,32)" fg:x="740842" fg:w="385"/><text x="48.3927%" y="559.50"></text></g><g><title>autoremove_wake_function (374 samples, 0.02%)</title><rect x="48.1434%" y="533" width="0.0243%" height="15" fill="rgb(242,117,10)" fg:x="740853" fg:w="374"/><text x="48.3934%" y="543.50"></text></g><g><title>try_to_wake_up (367 samples, 0.02%)</title><rect x="48.1438%" y="517" width="0.0238%" height="15" fill="rgb(249,172,44)" fg:x="740860" fg:w="367"/><text x="48.3938%" y="527.50"></text></g><g><title>__wake_up_common_lock (393 samples, 0.03%)</title><rect x="48.1427%" y="565" width="0.0255%" height="15" fill="rgb(244,46,45)" fg:x="740842" fg:w="393"/><text x="48.3927%" y="575.50"></text></g><g><title>btrfs_release_path (545 samples, 0.04%)</title><rect x="48.1414%" y="581" width="0.0354%" height="15" fill="rgb(206,43,17)" fg:x="740823" fg:w="545"/><text x="48.3914%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (315 samples, 0.02%)</title><rect x="48.1790%" y="565" width="0.0205%" height="15" fill="rgb(239,218,39)" fg:x="741401" fg:w="315"/><text x="48.4290%" y="575.50"></text></g><g><title>btrfs_update_inode (433 samples, 0.03%)</title><rect x="48.1768%" y="581" width="0.0281%" height="15" fill="rgb(208,169,54)" fg:x="741368" fg:w="433"/><text x="48.4268%" y="591.50"></text></g><g><title>__btrfs_unlink_inode (20,581 samples, 1.34%)</title><rect x="46.8757%" y="597" width="1.3374%" height="15" fill="rgb(247,25,42)" fg:x="721346" fg:w="20581"/><text x="47.1257%" y="607.50"></text></g><g><title>__queue_work (222 samples, 0.01%)</title><rect x="48.2221%" y="565" width="0.0144%" height="15" fill="rgb(226,23,31)" fg:x="742064" fg:w="222"/><text x="48.4721%" y="575.50"></text></g><g><title>try_to_wake_up (157 samples, 0.01%)</title><rect x="48.2263%" y="549" width="0.0102%" height="15" fill="rgb(247,16,28)" fg:x="742129" fg:w="157"/><text x="48.4763%" y="559.50"></text></g><g><title>btrfs_btree_balance_dirty (308 samples, 0.02%)</title><rect x="48.2166%" y="597" width="0.0200%" height="15" fill="rgb(231,147,38)" fg:x="741979" fg:w="308"/><text x="48.4666%" y="607.50"></text></g><g><title>queue_work_on (228 samples, 0.01%)</title><rect x="48.2218%" y="581" width="0.0148%" height="15" fill="rgb(253,81,48)" fg:x="742059" fg:w="228"/><text x="48.4718%" y="591.50"></text></g><g><title>btrfs_free_path (183 samples, 0.01%)</title><rect x="48.2389%" y="565" width="0.0119%" height="15" fill="rgb(249,222,43)" fg:x="742323" fg:w="183"/><text x="48.4889%" y="575.50"></text></g><g><title>btrfs_release_path (168 samples, 0.01%)</title><rect x="48.2399%" y="549" width="0.0109%" height="15" fill="rgb(221,3,27)" fg:x="742338" fg:w="168"/><text x="48.4899%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (372 samples, 0.02%)</title><rect x="48.2773%" y="485" width="0.0242%" height="15" fill="rgb(228,180,5)" fg:x="742914" fg:w="372"/><text x="48.5273%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (358 samples, 0.02%)</title><rect x="48.2782%" y="469" width="0.0233%" height="15" fill="rgb(227,131,42)" fg:x="742928" fg:w="358"/><text x="48.5282%" y="479.50"></text></g><g><title>prepare_to_wait_event (398 samples, 0.03%)</title><rect x="48.2765%" y="501" width="0.0259%" height="15" fill="rgb(212,3,39)" fg:x="742901" fg:w="398"/><text x="48.5265%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (507 samples, 0.03%)</title><rect x="48.3023%" y="501" width="0.0329%" height="15" fill="rgb(226,45,5)" fg:x="743299" fg:w="507"/><text x="48.5523%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (351 samples, 0.02%)</title><rect x="48.3125%" y="485" width="0.0228%" height="15" fill="rgb(215,167,45)" fg:x="743455" fg:w="351"/><text x="48.5625%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (222 samples, 0.01%)</title><rect x="48.3448%" y="453" width="0.0144%" height="15" fill="rgb(250,218,53)" fg:x="743953" fg:w="222"/><text x="48.5948%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (216 samples, 0.01%)</title><rect x="48.3452%" y="437" width="0.0140%" height="15" fill="rgb(207,140,0)" fg:x="743959" fg:w="216"/><text x="48.5952%" y="447.50"></text></g><g><title>native_write_msr (213 samples, 0.01%)</title><rect x="48.3454%" y="421" width="0.0138%" height="15" fill="rgb(238,133,51)" fg:x="743962" fg:w="213"/><text x="48.5954%" y="431.50"></text></g><g><title>finish_task_switch (254 samples, 0.02%)</title><rect x="48.3433%" y="469" width="0.0165%" height="15" fill="rgb(218,203,53)" fg:x="743930" fg:w="254"/><text x="48.5933%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (1,593 samples, 0.10%)</title><rect x="48.2639%" y="517" width="0.1035%" height="15" fill="rgb(226,184,25)" fg:x="742707" fg:w="1593"/><text x="48.5139%" y="527.50"></text></g><g><title>schedule (494 samples, 0.03%)</title><rect x="48.3353%" y="501" width="0.0321%" height="15" fill="rgb(231,121,21)" fg:x="743806" fg:w="494"/><text x="48.5853%" y="511.50"></text></g><g><title>__schedule (488 samples, 0.03%)</title><rect x="48.3357%" y="485" width="0.0317%" height="15" fill="rgb(251,14,34)" fg:x="743812" fg:w="488"/><text x="48.5857%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (1,707 samples, 0.11%)</title><rect x="48.2630%" y="533" width="0.1109%" height="15" fill="rgb(249,193,11)" fg:x="742693" fg:w="1707"/><text x="48.5130%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (300 samples, 0.02%)</title><rect x="48.3810%" y="469" width="0.0195%" height="15" fill="rgb(220,172,37)" fg:x="744509" fg:w="300"/><text x="48.6310%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (294 samples, 0.02%)</title><rect x="48.3814%" y="453" width="0.0191%" height="15" fill="rgb(231,229,43)" fg:x="744515" fg:w="294"/><text x="48.6314%" y="463.50"></text></g><g><title>native_write_msr (286 samples, 0.02%)</title><rect x="48.3819%" y="437" width="0.0186%" height="15" fill="rgb(250,161,5)" fg:x="744523" fg:w="286"/><text x="48.6319%" y="447.50"></text></g><g><title>finish_task_switch (324 samples, 0.02%)</title><rect x="48.3805%" y="485" width="0.0211%" height="15" fill="rgb(218,225,18)" fg:x="744502" fg:w="324"/><text x="48.6305%" y="495.50"></text></g><g><title>__btrfs_tree_lock (472 samples, 0.03%)</title><rect x="48.3739%" y="533" width="0.0307%" height="15" fill="rgb(245,45,42)" fg:x="744400" fg:w="472"/><text x="48.6239%" y="543.50"></text></g><g><title>schedule (406 samples, 0.03%)</title><rect x="48.3782%" y="517" width="0.0264%" height="15" fill="rgb(211,115,1)" fg:x="744466" fg:w="406"/><text x="48.6282%" y="527.50"></text></g><g><title>__schedule (406 samples, 0.03%)</title><rect x="48.3782%" y="501" width="0.0264%" height="15" fill="rgb(248,133,52)" fg:x="744466" fg:w="406"/><text x="48.6282%" y="511.50"></text></g><g><title>btrfs_try_tree_write_lock (282 samples, 0.02%)</title><rect x="48.4166%" y="533" width="0.0183%" height="15" fill="rgb(238,100,21)" fg:x="745057" fg:w="282"/><text x="48.6666%" y="543.50"></text></g><g><title>queued_write_lock_slowpath (239 samples, 0.02%)</title><rect x="48.4194%" y="517" width="0.0155%" height="15" fill="rgb(247,144,11)" fg:x="745100" fg:w="239"/><text x="48.6694%" y="527.50"></text></g><g><title>generic_bin_search.constprop.0 (297 samples, 0.02%)</title><rect x="48.4349%" y="533" width="0.0193%" height="15" fill="rgb(206,164,16)" fg:x="745339" fg:w="297"/><text x="48.6849%" y="543.50"></text></g><g><title>__radix_tree_lookup (186 samples, 0.01%)</title><rect x="48.4719%" y="501" width="0.0121%" height="15" fill="rgb(222,34,3)" fg:x="745909" fg:w="186"/><text x="48.7219%" y="511.50"></text></g><g><title>find_extent_buffer (385 samples, 0.03%)</title><rect x="48.4649%" y="517" width="0.0250%" height="15" fill="rgb(248,82,4)" fg:x="745801" fg:w="385"/><text x="48.7149%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (604 samples, 0.04%)</title><rect x="48.4542%" y="533" width="0.0393%" height="15" fill="rgb(228,81,46)" fg:x="745636" fg:w="604"/><text x="48.7042%" y="543.50"></text></g><g><title>btrfs_search_slot (4,006 samples, 0.26%)</title><rect x="48.2522%" y="549" width="0.2603%" height="15" fill="rgb(227,67,47)" fg:x="742528" fg:w="4006"/><text x="48.5022%" y="559.50"></text></g><g><title>unlock_up (281 samples, 0.02%)</title><rect x="48.4943%" y="533" width="0.0183%" height="15" fill="rgb(215,93,53)" fg:x="746253" fg:w="281"/><text x="48.7443%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (4,433 samples, 0.29%)</title><rect x="48.2508%" y="565" width="0.2881%" height="15" fill="rgb(248,194,39)" fg:x="742506" fg:w="4433"/><text x="48.5008%" y="575.50"></text></g><g><title>setup_items_for_insert (405 samples, 0.03%)</title><rect x="48.5126%" y="549" width="0.0263%" height="15" fill="rgb(215,5,19)" fg:x="746534" fg:w="405"/><text x="48.7626%" y="559.50"></text></g><g><title>btrfs_orphan_add (4,746 samples, 0.31%)</title><rect x="48.2369%" y="597" width="0.3084%" height="15" fill="rgb(226,215,51)" fg:x="742292" fg:w="4746"/><text x="48.4869%" y="607.50"></text></g><g><title>btrfs_insert_orphan_item (4,735 samples, 0.31%)</title><rect x="48.2376%" y="581" width="0.3077%" height="15" fill="rgb(225,56,26)" fg:x="742303" fg:w="4735"/><text x="48.4876%" y="591.50"></text></g><g><title>btrfs_delayed_update_inode (210 samples, 0.01%)</title><rect x="48.5476%" y="581" width="0.0136%" height="15" fill="rgb(222,75,29)" fg:x="747073" fg:w="210"/><text x="48.7976%" y="591.50"></text></g><g><title>btrfs_update_inode (262 samples, 0.02%)</title><rect x="48.5465%" y="597" width="0.0170%" height="15" fill="rgb(236,139,6)" fg:x="747056" fg:w="262"/><text x="48.7965%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (386 samples, 0.03%)</title><rect x="48.5734%" y="581" width="0.0251%" height="15" fill="rgb(223,137,36)" fg:x="747471" fg:w="386"/><text x="48.8234%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (342 samples, 0.02%)</title><rect x="48.5763%" y="565" width="0.0222%" height="15" fill="rgb(226,99,2)" fg:x="747515" fg:w="342"/><text x="48.8263%" y="575.50"></text></g><g><title>__reserve_bytes (297 samples, 0.02%)</title><rect x="48.5792%" y="549" width="0.0193%" height="15" fill="rgb(206,133,23)" fg:x="747560" fg:w="297"/><text x="48.8292%" y="559.50"></text></g><g><title>btrfs_rmdir (27,103 samples, 1.76%)</title><rect x="46.8490%" y="613" width="1.7613%" height="15" fill="rgb(243,173,15)" fg:x="720934" fg:w="27103"/><text x="47.0990%" y="623.50"></text></g><g><title>start_transaction (670 samples, 0.04%)</title><rect x="48.5667%" y="597" width="0.0435%" height="15" fill="rgb(228,69,28)" fg:x="747367" fg:w="670"/><text x="48.8167%" y="607.50"></text></g><g><title>dentry_unlink_inode (201 samples, 0.01%)</title><rect x="48.6174%" y="613" width="0.0131%" height="15" fill="rgb(212,51,22)" fg:x="748147" fg:w="201"/><text x="48.8674%" y="623.50"></text></g><g><title>__destroy_inode (179 samples, 0.01%)</title><rect x="48.6306%" y="597" width="0.0116%" height="15" fill="rgb(227,113,0)" fg:x="748351" fg:w="179"/><text x="48.8806%" y="607.50"></text></g><g><title>alloc_extent_map (187 samples, 0.01%)</title><rect x="48.6485%" y="565" width="0.0122%" height="15" fill="rgb(252,84,27)" fg:x="748626" fg:w="187"/><text x="48.8985%" y="575.50"></text></g><g><title>kmem_cache_alloc (170 samples, 0.01%)</title><rect x="48.6496%" y="549" width="0.0110%" height="15" fill="rgb(223,145,39)" fg:x="748643" fg:w="170"/><text x="48.8996%" y="559.50"></text></g><g><title>btrfs_drop_extent_cache (322 samples, 0.02%)</title><rect x="48.6465%" y="581" width="0.0209%" height="15" fill="rgb(239,219,30)" fg:x="748595" fg:w="322"/><text x="48.8965%" y="591.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (177 samples, 0.01%)</title><rect x="48.6674%" y="581" width="0.0115%" height="15" fill="rgb(224,196,39)" fg:x="748917" fg:w="177"/><text x="48.9174%" y="591.50"></text></g><g><title>clear_record_extent_bits (199 samples, 0.01%)</title><rect x="48.6846%" y="565" width="0.0129%" height="15" fill="rgb(205,35,43)" fg:x="749181" fg:w="199"/><text x="48.9346%" y="575.50"></text></g><g><title>__clear_extent_bit (181 samples, 0.01%)</title><rect x="48.6857%" y="549" width="0.0118%" height="15" fill="rgb(228,201,21)" fg:x="749199" fg:w="181"/><text x="48.9357%" y="559.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (276 samples, 0.02%)</title><rect x="48.6822%" y="581" width="0.0179%" height="15" fill="rgb(237,118,16)" fg:x="749145" fg:w="276"/><text x="48.9322%" y="591.50"></text></g><g><title>btrfs_destroy_inode (1,123 samples, 0.07%)</title><rect x="48.6423%" y="597" width="0.0730%" height="15" fill="rgb(241,17,19)" fg:x="748530" fg:w="1123"/><text x="48.8923%" y="607.50"></text></g><g><title>rb_erase (232 samples, 0.02%)</title><rect x="48.7002%" y="581" width="0.0151%" height="15" fill="rgb(214,10,25)" fg:x="749421" fg:w="232"/><text x="48.9502%" y="591.50"></text></g><g><title>destroy_inode (1,332 samples, 0.09%)</title><rect x="48.6304%" y="613" width="0.0866%" height="15" fill="rgb(238,37,29)" fg:x="748348" fg:w="1332"/><text x="48.8804%" y="623.50"></text></g><g><title>_raw_spin_lock (163 samples, 0.01%)</title><rect x="48.7630%" y="533" width="0.0106%" height="15" fill="rgb(253,83,25)" fg:x="750388" fg:w="163"/><text x="49.0130%" y="543.50"></text></g><g><title>btrfs_trans_release_metadata (281 samples, 0.02%)</title><rect x="48.7562%" y="565" width="0.0183%" height="15" fill="rgb(234,192,12)" fg:x="750283" fg:w="281"/><text x="49.0062%" y="575.50"></text></g><g><title>btrfs_block_rsv_release (262 samples, 0.02%)</title><rect x="48.7574%" y="549" width="0.0170%" height="15" fill="rgb(241,216,45)" fg:x="750302" fg:w="262"/><text x="49.0074%" y="559.50"></text></g><g><title>__btrfs_end_transaction (631 samples, 0.04%)</title><rect x="48.7403%" y="581" width="0.0410%" height="15" fill="rgb(242,22,33)" fg:x="750039" fg:w="631"/><text x="48.9903%" y="591.50"></text></g><g><title>__radix_tree_lookup (211 samples, 0.01%)</title><rect x="48.7992%" y="549" width="0.0137%" height="15" fill="rgb(231,105,49)" fg:x="750945" fg:w="211"/><text x="49.0492%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (506 samples, 0.03%)</title><rect x="48.7813%" y="581" width="0.0329%" height="15" fill="rgb(218,204,15)" fg:x="750670" fg:w="506"/><text x="49.0313%" y="591.50"></text></g><g><title>radix_tree_delete_item (293 samples, 0.02%)</title><rect x="48.7952%" y="565" width="0.0190%" height="15" fill="rgb(235,138,41)" fg:x="750883" fg:w="293"/><text x="49.0452%" y="575.50"></text></g><g><title>btrfs_alloc_block_rsv (158 samples, 0.01%)</title><rect x="48.8191%" y="581" width="0.0103%" height="15" fill="rgb(246,0,9)" fg:x="751252" fg:w="158"/><text x="49.0691%" y="591.50"></text></g><g><title>btrfs_btree_balance_dirty (176 samples, 0.01%)</title><rect x="48.8294%" y="581" width="0.0114%" height="15" fill="rgb(210,74,4)" fg:x="751410" fg:w="176"/><text x="49.0794%" y="591.50"></text></g><g><title>__btrfs_end_transaction (214 samples, 0.01%)</title><rect x="48.8429%" y="565" width="0.0139%" height="15" fill="rgb(250,60,41)" fg:x="751618" fg:w="214"/><text x="49.0929%" y="575.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (215 samples, 0.01%)</title><rect x="48.8568%" y="565" width="0.0140%" height="15" fill="rgb(220,115,12)" fg:x="751832" fg:w="215"/><text x="49.1068%" y="575.50"></text></g><g><title>btrfs_get_token_32 (959 samples, 0.06%)</title><rect x="48.8974%" y="533" width="0.0623%" height="15" fill="rgb(237,100,13)" fg:x="752456" fg:w="959"/><text x="49.1474%" y="543.50"></text></g><g><title>btrfs_set_token_32 (683 samples, 0.04%)</title><rect x="48.9629%" y="533" width="0.0444%" height="15" fill="rgb(213,55,26)" fg:x="753464" fg:w="683"/><text x="49.2129%" y="543.50"></text></g><g><title>memmove_extent_buffer (477 samples, 0.03%)</title><rect x="49.0171%" y="533" width="0.0310%" height="15" fill="rgb(216,17,4)" fg:x="754298" fg:w="477"/><text x="49.2671%" y="543.50"></text></g><g><title>memmove (361 samples, 0.02%)</title><rect x="49.0246%" y="517" width="0.0235%" height="15" fill="rgb(220,153,47)" fg:x="754414" fg:w="361"/><text x="49.2746%" y="527.50"></text></g><g><title>btrfs_del_items (2,728 samples, 0.18%)</title><rect x="48.8765%" y="549" width="0.1773%" height="15" fill="rgb(215,131,9)" fg:x="752134" fg:w="2728"/><text x="49.1265%" y="559.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (154 samples, 0.01%)</title><rect x="49.0537%" y="549" width="0.0100%" height="15" fill="rgb(233,46,42)" fg:x="754862" fg:w="154"/><text x="49.3037%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (368 samples, 0.02%)</title><rect x="49.0894%" y="469" width="0.0239%" height="15" fill="rgb(226,86,7)" fg:x="755411" fg:w="368"/><text x="49.3394%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (347 samples, 0.02%)</title><rect x="49.0908%" y="453" width="0.0225%" height="15" fill="rgb(239,226,21)" fg:x="755432" fg:w="347"/><text x="49.3408%" y="463.50"></text></g><g><title>prepare_to_wait_event (406 samples, 0.03%)</title><rect x="49.0875%" y="485" width="0.0264%" height="15" fill="rgb(244,137,22)" fg:x="755382" fg:w="406"/><text x="49.3375%" y="495.50"></text></g><g><title>queued_read_lock_slowpath (550 samples, 0.04%)</title><rect x="49.1139%" y="485" width="0.0357%" height="15" fill="rgb(211,139,35)" fg:x="755788" fg:w="550"/><text x="49.3639%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (364 samples, 0.02%)</title><rect x="49.1260%" y="469" width="0.0237%" height="15" fill="rgb(214,62,50)" fg:x="755974" fg:w="364"/><text x="49.3760%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (337 samples, 0.02%)</title><rect x="49.1586%" y="437" width="0.0219%" height="15" fill="rgb(212,113,44)" fg:x="756475" fg:w="337"/><text x="49.4086%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (328 samples, 0.02%)</title><rect x="49.1591%" y="421" width="0.0213%" height="15" fill="rgb(226,150,43)" fg:x="756484" fg:w="328"/><text x="49.4091%" y="431.50"></text></g><g><title>native_write_msr (327 samples, 0.02%)</title><rect x="49.1592%" y="405" width="0.0212%" height="15" fill="rgb(250,71,37)" fg:x="756485" fg:w="327"/><text x="49.4092%" y="415.50"></text></g><g><title>finish_task_switch (366 samples, 0.02%)</title><rect x="49.1569%" y="453" width="0.0238%" height="15" fill="rgb(219,76,19)" fg:x="756450" fg:w="366"/><text x="49.4069%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (1,706 samples, 0.11%)</title><rect x="49.0759%" y="501" width="0.1109%" height="15" fill="rgb(250,39,11)" fg:x="755203" fg:w="1706"/><text x="49.3259%" y="511.50"></text></g><g><title>schedule (571 samples, 0.04%)</title><rect x="49.1497%" y="485" width="0.0371%" height="15" fill="rgb(230,64,31)" fg:x="756338" fg:w="571"/><text x="49.3997%" y="495.50"></text></g><g><title>__schedule (569 samples, 0.04%)</title><rect x="49.1498%" y="469" width="0.0370%" height="15" fill="rgb(208,222,23)" fg:x="756340" fg:w="569"/><text x="49.3998%" y="479.50"></text></g><g><title>__btrfs_read_lock_root_node (1,790 samples, 0.12%)</title><rect x="49.0752%" y="517" width="0.1163%" height="15" fill="rgb(227,125,18)" fg:x="755193" fg:w="1790"/><text x="49.3252%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (356 samples, 0.02%)</title><rect x="49.2009%" y="453" width="0.0231%" height="15" fill="rgb(234,210,9)" fg:x="757126" fg:w="356"/><text x="49.4509%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (352 samples, 0.02%)</title><rect x="49.2011%" y="437" width="0.0229%" height="15" fill="rgb(217,127,24)" fg:x="757130" fg:w="352"/><text x="49.4511%" y="447.50"></text></g><g><title>native_write_msr (349 samples, 0.02%)</title><rect x="49.2013%" y="421" width="0.0227%" height="15" fill="rgb(239,141,48)" fg:x="757133" fg:w="349"/><text x="49.4513%" y="431.50"></text></g><g><title>finish_task_switch (380 samples, 0.02%)</title><rect x="49.2001%" y="469" width="0.0247%" height="15" fill="rgb(227,109,8)" fg:x="757114" fg:w="380"/><text x="49.4501%" y="479.50"></text></g><g><title>__btrfs_tree_lock (575 samples, 0.04%)</title><rect x="49.1916%" y="517" width="0.0374%" height="15" fill="rgb(235,184,23)" fg:x="756983" fg:w="575"/><text x="49.4416%" y="527.50"></text></g><g><title>schedule (524 samples, 0.03%)</title><rect x="49.1949%" y="501" width="0.0341%" height="15" fill="rgb(227,226,48)" fg:x="757034" fg:w="524"/><text x="49.4449%" y="511.50"></text></g><g><title>__schedule (523 samples, 0.03%)</title><rect x="49.1949%" y="485" width="0.0340%" height="15" fill="rgb(206,150,11)" fg:x="757035" fg:w="523"/><text x="49.4449%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (255 samples, 0.02%)</title><rect x="49.2453%" y="469" width="0.0166%" height="15" fill="rgb(254,2,33)" fg:x="757810" fg:w="255"/><text x="49.4953%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (235 samples, 0.02%)</title><rect x="49.2466%" y="453" width="0.0153%" height="15" fill="rgb(243,160,20)" fg:x="757830" fg:w="235"/><text x="49.4966%" y="463.50"></text></g><g><title>prepare_to_wait_event (301 samples, 0.02%)</title><rect x="49.2428%" y="485" width="0.0196%" height="15" fill="rgb(218,208,30)" fg:x="757771" fg:w="301"/><text x="49.4928%" y="495.50"></text></g><g><title>queued_write_lock_slowpath (608 samples, 0.04%)</title><rect x="49.2623%" y="485" width="0.0395%" height="15" fill="rgb(224,120,49)" fg:x="758072" fg:w="608"/><text x="49.5123%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (259 samples, 0.02%)</title><rect x="49.2850%" y="469" width="0.0168%" height="15" fill="rgb(246,12,2)" fg:x="758421" fg:w="259"/><text x="49.5350%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (571 samples, 0.04%)</title><rect x="49.3116%" y="437" width="0.0371%" height="15" fill="rgb(236,117,3)" fg:x="758830" fg:w="571"/><text x="49.5616%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (556 samples, 0.04%)</title><rect x="49.3126%" y="421" width="0.0361%" height="15" fill="rgb(216,128,52)" fg:x="758845" fg:w="556"/><text x="49.5626%" y="431.50"></text></g><g><title>native_write_msr (550 samples, 0.04%)</title><rect x="49.3130%" y="405" width="0.0357%" height="15" fill="rgb(246,145,19)" fg:x="758851" fg:w="550"/><text x="49.5630%" y="415.50"></text></g><g><title>finish_task_switch (620 samples, 0.04%)</title><rect x="49.3100%" y="453" width="0.0403%" height="15" fill="rgb(222,11,46)" fg:x="758806" fg:w="620"/><text x="49.5600%" y="463.50"></text></g><g><title>__btrfs_tree_lock (1,944 samples, 0.13%)</title><rect x="49.2313%" y="501" width="0.1263%" height="15" fill="rgb(245,82,36)" fg:x="757595" fg:w="1944"/><text x="49.4813%" y="511.50"></text></g><g><title>schedule (859 samples, 0.06%)</title><rect x="49.3018%" y="485" width="0.0558%" height="15" fill="rgb(250,73,51)" fg:x="758680" fg:w="859"/><text x="49.5518%" y="495.50"></text></g><g><title>__schedule (850 samples, 0.06%)</title><rect x="49.3024%" y="469" width="0.0552%" height="15" fill="rgb(221,189,23)" fg:x="758689" fg:w="850"/><text x="49.5524%" y="479.50"></text></g><g><title>btrfs_lock_root_node (1,973 samples, 0.13%)</title><rect x="49.2310%" y="517" width="0.1282%" height="15" fill="rgb(210,33,7)" fg:x="757590" fg:w="1973"/><text x="49.4810%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (302 samples, 0.02%)</title><rect x="49.3631%" y="517" width="0.0196%" height="15" fill="rgb(210,107,22)" fg:x="759622" fg:w="302"/><text x="49.6131%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (261 samples, 0.02%)</title><rect x="49.3657%" y="501" width="0.0170%" height="15" fill="rgb(222,116,37)" fg:x="759663" fg:w="261"/><text x="49.6157%" y="511.50"></text></g><g><title>generic_bin_search.constprop.0 (274 samples, 0.02%)</title><rect x="49.3847%" y="517" width="0.0178%" height="15" fill="rgb(254,17,48)" fg:x="759955" fg:w="274"/><text x="49.6347%" y="527.50"></text></g><g><title>__radix_tree_lookup (177 samples, 0.01%)</title><rect x="49.4194%" y="485" width="0.0115%" height="15" fill="rgb(224,36,32)" fg:x="760489" fg:w="177"/><text x="49.6694%" y="495.50"></text></g><g><title>find_extent_buffer (359 samples, 0.02%)</title><rect x="49.4133%" y="501" width="0.0233%" height="15" fill="rgb(232,90,46)" fg:x="760395" fg:w="359"/><text x="49.6633%" y="511.50"></text></g><g><title>read_block_for_search.isra.0 (585 samples, 0.04%)</title><rect x="49.4025%" y="517" width="0.0380%" height="15" fill="rgb(241,66,40)" fg:x="760229" fg:w="585"/><text x="49.6525%" y="527.50"></text></g><g><title>reada_for_balance (198 samples, 0.01%)</title><rect x="49.4405%" y="517" width="0.0129%" height="15" fill="rgb(249,184,29)" fg:x="760814" fg:w="198"/><text x="49.6905%" y="527.50"></text></g><g><title>select_task_rq_fair (240 samples, 0.02%)</title><rect x="49.4911%" y="437" width="0.0156%" height="15" fill="rgb(231,181,1)" fg:x="761592" fg:w="240"/><text x="49.7411%" y="447.50"></text></g><g><title>enqueue_entity (196 samples, 0.01%)</title><rect x="49.5123%" y="405" width="0.0127%" height="15" fill="rgb(224,94,2)" fg:x="761918" fg:w="196"/><text x="49.7623%" y="415.50"></text></g><g><title>enqueue_task_fair (255 samples, 0.02%)</title><rect x="49.5094%" y="421" width="0.0166%" height="15" fill="rgb(229,170,15)" fg:x="761874" fg:w="255"/><text x="49.7594%" y="431.50"></text></g><g><title>ttwu_do_activate (521 samples, 0.03%)</title><rect x="49.5080%" y="437" width="0.0339%" height="15" fill="rgb(240,127,35)" fg:x="761853" fg:w="521"/><text x="49.7580%" y="447.50"></text></g><g><title>psi_task_change (244 samples, 0.02%)</title><rect x="49.5260%" y="421" width="0.0159%" height="15" fill="rgb(248,196,34)" fg:x="762130" fg:w="244"/><text x="49.7760%" y="431.50"></text></g><g><title>psi_group_change (219 samples, 0.01%)</title><rect x="49.5277%" y="405" width="0.0142%" height="15" fill="rgb(236,137,7)" fg:x="762155" fg:w="219"/><text x="49.7777%" y="415.50"></text></g><g><title>__wake_up_common (1,412 samples, 0.09%)</title><rect x="49.4585%" y="485" width="0.0918%" height="15" fill="rgb(235,127,16)" fg:x="761090" fg:w="1412"/><text x="49.7085%" y="495.50"></text></g><g><title>autoremove_wake_function (1,394 samples, 0.09%)</title><rect x="49.4596%" y="469" width="0.0906%" height="15" fill="rgb(250,192,54)" fg:x="761108" fg:w="1394"/><text x="49.7096%" y="479.50"></text></g><g><title>try_to_wake_up (1,365 samples, 0.09%)</title><rect x="49.4615%" y="453" width="0.0887%" height="15" fill="rgb(218,98,20)" fg:x="761137" fg:w="1365"/><text x="49.7115%" y="463.50"></text></g><g><title>__wake_up_common_lock (1,539 samples, 0.10%)</title><rect x="49.4583%" y="501" width="0.1000%" height="15" fill="rgb(230,176,47)" fg:x="761088" fg:w="1539"/><text x="49.7083%" y="511.50"></text></g><g><title>btrfs_lookup_inode (7,607 samples, 0.49%)</title><rect x="49.0653%" y="549" width="0.4943%" height="15" fill="rgb(244,2,33)" fg:x="755040" fg:w="7607"/><text x="49.3153%" y="559.50"></text></g><g><title>btrfs_search_slot (7,582 samples, 0.49%)</title><rect x="49.0669%" y="533" width="0.4927%" height="15" fill="rgb(231,100,17)" fg:x="755065" fg:w="7582"/><text x="49.3169%" y="543.50"></text></g><g><title>unlock_up (1,629 samples, 0.11%)</title><rect x="49.4538%" y="517" width="0.1059%" height="15" fill="rgb(245,23,12)" fg:x="761018" fg:w="1629"/><text x="49.7038%" y="527.50"></text></g><g><title>__wake_up_common (323 samples, 0.02%)</title><rect x="49.5656%" y="517" width="0.0210%" height="15" fill="rgb(249,55,22)" fg:x="762738" fg:w="323"/><text x="49.8156%" y="527.50"></text></g><g><title>autoremove_wake_function (317 samples, 0.02%)</title><rect x="49.5659%" y="501" width="0.0206%" height="15" fill="rgb(207,134,9)" fg:x="762744" fg:w="317"/><text x="49.8159%" y="511.50"></text></g><g><title>try_to_wake_up (307 samples, 0.02%)</title><rect x="49.5666%" y="485" width="0.0200%" height="15" fill="rgb(218,134,0)" fg:x="762754" fg:w="307"/><text x="49.8166%" y="495.50"></text></g><g><title>__wake_up_common_lock (337 samples, 0.02%)</title><rect x="49.5654%" y="533" width="0.0219%" height="15" fill="rgb(213,212,33)" fg:x="762735" fg:w="337"/><text x="49.8154%" y="543.50"></text></g><g><title>btrfs_release_path (496 samples, 0.03%)</title><rect x="49.5642%" y="549" width="0.0322%" height="15" fill="rgb(252,106,18)" fg:x="762717" fg:w="496"/><text x="49.8142%" y="559.50"></text></g><g><title>__btrfs_update_delayed_inode (11,369 samples, 0.74%)</title><rect x="48.8708%" y="565" width="0.7388%" height="15" fill="rgb(208,126,42)" fg:x="752047" fg:w="11369"/><text x="49.1208%" y="575.50"></text></g><g><title>btrfs_btree_balance_dirty (246 samples, 0.02%)</title><rect x="49.6151%" y="565" width="0.0160%" height="15" fill="rgb(246,175,29)" fg:x="763500" fg:w="246"/><text x="49.8651%" y="575.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (12,602 samples, 0.82%)</title><rect x="48.8409%" y="581" width="0.8189%" height="15" fill="rgb(215,13,50)" fg:x="751586" fg:w="12602"/><text x="49.0909%" y="591.50"></text></g><g><title>start_transaction (213 samples, 0.01%)</title><rect x="49.6459%" y="565" width="0.0138%" height="15" fill="rgb(216,172,15)" fg:x="763975" fg:w="213"/><text x="49.8959%" y="575.50"></text></g><g><title>btrfs_del_items (203 samples, 0.01%)</title><rect x="49.6610%" y="565" width="0.0132%" height="15" fill="rgb(212,103,13)" fg:x="764207" fg:w="203"/><text x="49.9110%" y="575.50"></text></g><g><title>__wake_up_common (197 samples, 0.01%)</title><rect x="49.6755%" y="517" width="0.0128%" height="15" fill="rgb(231,171,36)" fg:x="764430" fg:w="197"/><text x="49.9255%" y="527.50"></text></g><g><title>autoremove_wake_function (194 samples, 0.01%)</title><rect x="49.6757%" y="501" width="0.0126%" height="15" fill="rgb(250,123,20)" fg:x="764433" fg:w="194"/><text x="49.9257%" y="511.50"></text></g><g><title>try_to_wake_up (192 samples, 0.01%)</title><rect x="49.6758%" y="485" width="0.0125%" height="15" fill="rgb(212,53,50)" fg:x="764435" fg:w="192"/><text x="49.9258%" y="495.50"></text></g><g><title>__wake_up_common_lock (205 samples, 0.01%)</title><rect x="49.6754%" y="533" width="0.0133%" height="15" fill="rgb(243,54,12)" fg:x="764429" fg:w="205"/><text x="49.9254%" y="543.50"></text></g><g><title>btrfs_free_path (382 samples, 0.02%)</title><rect x="49.6742%" y="565" width="0.0248%" height="15" fill="rgb(234,101,34)" fg:x="764410" fg:w="382"/><text x="49.9242%" y="575.50"></text></g><g><title>btrfs_release_path (379 samples, 0.02%)</title><rect x="49.6744%" y="549" width="0.0246%" height="15" fill="rgb(254,67,22)" fg:x="764413" fg:w="379"/><text x="49.9244%" y="559.50"></text></g><g><title>_raw_spin_lock_irqsave (211 samples, 0.01%)</title><rect x="49.7167%" y="501" width="0.0137%" height="15" fill="rgb(250,35,47)" fg:x="765064" fg:w="211"/><text x="49.9667%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (198 samples, 0.01%)</title><rect x="49.7175%" y="485" width="0.0129%" height="15" fill="rgb(226,126,38)" fg:x="765077" fg:w="198"/><text x="49.9675%" y="495.50"></text></g><g><title>finish_wait (218 samples, 0.01%)</title><rect x="49.7163%" y="517" width="0.0142%" height="15" fill="rgb(216,138,53)" fg:x="765058" fg:w="218"/><text x="49.9663%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (742 samples, 0.05%)</title><rect x="49.7348%" y="501" width="0.0482%" height="15" fill="rgb(246,199,43)" fg:x="765342" fg:w="742"/><text x="49.9848%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (713 samples, 0.05%)</title><rect x="49.7367%" y="485" width="0.0463%" height="15" fill="rgb(232,125,11)" fg:x="765371" fg:w="713"/><text x="49.9867%" y="495.50"></text></g><g><title>prepare_to_wait_event (829 samples, 0.05%)</title><rect x="49.7305%" y="517" width="0.0539%" height="15" fill="rgb(218,219,45)" fg:x="765277" fg:w="829"/><text x="49.9805%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (527 samples, 0.03%)</title><rect x="49.7844%" y="517" width="0.0342%" height="15" fill="rgb(216,102,54)" fg:x="766106" fg:w="527"/><text x="50.0344%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (348 samples, 0.02%)</title><rect x="49.7960%" y="501" width="0.0226%" height="15" fill="rgb(250,228,7)" fg:x="766285" fg:w="348"/><text x="50.0460%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (958 samples, 0.06%)</title><rect x="49.8363%" y="469" width="0.0623%" height="15" fill="rgb(226,125,25)" fg:x="766905" fg:w="958"/><text x="50.0863%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (920 samples, 0.06%)</title><rect x="49.8388%" y="453" width="0.0598%" height="15" fill="rgb(224,165,27)" fg:x="766943" fg:w="920"/><text x="50.0888%" y="463.50"></text></g><g><title>native_write_msr (904 samples, 0.06%)</title><rect x="49.8398%" y="437" width="0.0587%" height="15" fill="rgb(233,86,3)" fg:x="766959" fg:w="904"/><text x="50.0898%" y="447.50"></text></g><g><title>finish_task_switch (1,031 samples, 0.07%)</title><rect x="49.8334%" y="485" width="0.0670%" height="15" fill="rgb(228,116,20)" fg:x="766860" fg:w="1031"/><text x="50.0834%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (3,129 samples, 0.20%)</title><rect x="49.7099%" y="533" width="0.2033%" height="15" fill="rgb(209,192,17)" fg:x="764960" fg:w="3129"/><text x="49.9599%" y="543.50"></text></g><g><title>schedule (1,456 samples, 0.09%)</title><rect x="49.8187%" y="517" width="0.0946%" height="15" fill="rgb(224,88,34)" fg:x="766633" fg:w="1456"/><text x="50.0687%" y="527.50"></text></g><g><title>__schedule (1,443 samples, 0.09%)</title><rect x="49.8195%" y="501" width="0.0938%" height="15" fill="rgb(233,38,6)" fg:x="766646" fg:w="1443"/><text x="50.0695%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (3,192 samples, 0.21%)</title><rect x="49.7093%" y="549" width="0.2074%" height="15" fill="rgb(212,59,30)" fg:x="764950" fg:w="3192"/><text x="49.9593%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (205 samples, 0.01%)</title><rect x="49.9202%" y="485" width="0.0133%" height="15" fill="rgb(213,80,3)" fg:x="768196" fg:w="205"/><text x="50.1702%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (202 samples, 0.01%)</title><rect x="49.9204%" y="469" width="0.0131%" height="15" fill="rgb(251,178,7)" fg:x="768199" fg:w="202"/><text x="50.1704%" y="479.50"></text></g><g><title>native_write_msr (201 samples, 0.01%)</title><rect x="49.9205%" y="453" width="0.0131%" height="15" fill="rgb(213,154,26)" fg:x="768200" fg:w="201"/><text x="50.1705%" y="463.50"></text></g><g><title>finish_task_switch (225 samples, 0.01%)</title><rect x="49.9196%" y="501" width="0.0146%" height="15" fill="rgb(238,165,49)" fg:x="768186" fg:w="225"/><text x="50.1696%" y="511.50"></text></g><g><title>__btrfs_tree_lock (283 samples, 0.02%)</title><rect x="49.9167%" y="549" width="0.0184%" height="15" fill="rgb(248,91,46)" fg:x="768142" fg:w="283"/><text x="50.1667%" y="559.50"></text></g><g><title>schedule (272 samples, 0.02%)</title><rect x="49.9174%" y="533" width="0.0177%" height="15" fill="rgb(244,21,52)" fg:x="768153" fg:w="272"/><text x="50.1674%" y="543.50"></text></g><g><title>__schedule (270 samples, 0.02%)</title><rect x="49.9176%" y="517" width="0.0175%" height="15" fill="rgb(247,122,20)" fg:x="768155" fg:w="270"/><text x="50.1676%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (382 samples, 0.02%)</title><rect x="49.9562%" y="501" width="0.0248%" height="15" fill="rgb(218,27,9)" fg:x="768749" fg:w="382"/><text x="50.2062%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (357 samples, 0.02%)</title><rect x="49.9578%" y="485" width="0.0232%" height="15" fill="rgb(246,7,6)" fg:x="768774" fg:w="357"/><text x="50.2078%" y="495.50"></text></g><g><title>prepare_to_wait_event (435 samples, 0.03%)</title><rect x="49.9536%" y="517" width="0.0283%" height="15" fill="rgb(227,135,54)" fg:x="768710" fg:w="435"/><text x="50.2036%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (767 samples, 0.05%)</title><rect x="49.9819%" y="517" width="0.0498%" height="15" fill="rgb(247,14,11)" fg:x="769145" fg:w="767"/><text x="50.2319%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (317 samples, 0.02%)</title><rect x="50.0111%" y="501" width="0.0206%" height="15" fill="rgb(206,149,34)" fg:x="769595" fg:w="317"/><text x="50.2611%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (818 samples, 0.05%)</title><rect x="50.0479%" y="469" width="0.0532%" height="15" fill="rgb(227,228,4)" fg:x="770161" fg:w="818"/><text x="50.2979%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (789 samples, 0.05%)</title><rect x="50.0498%" y="453" width="0.0513%" height="15" fill="rgb(238,218,28)" fg:x="770190" fg:w="789"/><text x="50.2998%" y="463.50"></text></g><g><title>native_write_msr (781 samples, 0.05%)</title><rect x="50.0503%" y="437" width="0.0508%" height="15" fill="rgb(252,86,40)" fg:x="770198" fg:w="781"/><text x="50.3003%" y="447.50"></text></g><g><title>finish_task_switch (881 samples, 0.06%)</title><rect x="50.0451%" y="485" width="0.0573%" height="15" fill="rgb(251,225,11)" fg:x="770117" fg:w="881"/><text x="50.2951%" y="495.50"></text></g><g><title>__btrfs_tree_lock (2,751 samples, 0.18%)</title><rect x="49.9370%" y="533" width="0.1788%" height="15" fill="rgb(206,46,49)" fg:x="768454" fg:w="2751"/><text x="50.1870%" y="543.50"></text></g><g><title>schedule (1,293 samples, 0.08%)</title><rect x="50.0317%" y="517" width="0.0840%" height="15" fill="rgb(245,128,24)" fg:x="769912" fg:w="1293"/><text x="50.2817%" y="527.50"></text></g><g><title>__schedule (1,282 samples, 0.08%)</title><rect x="50.0325%" y="501" width="0.0833%" height="15" fill="rgb(219,177,34)" fg:x="769923" fg:w="1282"/><text x="50.2825%" y="511.50"></text></g><g><title>btrfs_lock_root_node (2,789 samples, 0.18%)</title><rect x="49.9369%" y="549" width="0.1812%" height="15" fill="rgb(218,60,48)" fg:x="768452" fg:w="2789"/><text x="50.1869%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (208 samples, 0.01%)</title><rect x="50.1251%" y="549" width="0.0135%" height="15" fill="rgb(221,11,5)" fg:x="771349" fg:w="208"/><text x="50.3751%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (171 samples, 0.01%)</title><rect x="50.1275%" y="533" width="0.0111%" height="15" fill="rgb(220,148,13)" fg:x="771386" fg:w="171"/><text x="50.3775%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (341 samples, 0.02%)</title><rect x="50.1403%" y="549" width="0.0222%" height="15" fill="rgb(210,16,3)" fg:x="771583" fg:w="341"/><text x="50.3903%" y="559.50"></text></g><g><title>__radix_tree_lookup (179 samples, 0.01%)</title><rect x="50.1829%" y="517" width="0.0116%" height="15" fill="rgb(236,80,2)" fg:x="772238" fg:w="179"/><text x="50.4329%" y="527.50"></text></g><g><title>find_extent_buffer (380 samples, 0.02%)</title><rect x="50.1752%" y="533" width="0.0247%" height="15" fill="rgb(239,129,19)" fg:x="772119" fg:w="380"/><text x="50.4252%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (637 samples, 0.04%)</title><rect x="50.1625%" y="549" width="0.0414%" height="15" fill="rgb(220,106,35)" fg:x="771924" fg:w="637"/><text x="50.4125%" y="559.50"></text></g><g><title>__wake_up_common (384 samples, 0.02%)</title><rect x="50.2095%" y="517" width="0.0250%" height="15" fill="rgb(252,139,45)" fg:x="772647" fg:w="384"/><text x="50.4595%" y="527.50"></text></g><g><title>autoremove_wake_function (373 samples, 0.02%)</title><rect x="50.2102%" y="501" width="0.0242%" height="15" fill="rgb(229,8,36)" fg:x="772658" fg:w="373"/><text x="50.4602%" y="511.50"></text></g><g><title>try_to_wake_up (366 samples, 0.02%)</title><rect x="50.2106%" y="485" width="0.0238%" height="15" fill="rgb(230,126,33)" fg:x="772665" fg:w="366"/><text x="50.4606%" y="495.50"></text></g><g><title>__wake_up_common_lock (414 samples, 0.03%)</title><rect x="50.2093%" y="533" width="0.0269%" height="15" fill="rgb(239,140,21)" fg:x="772645" fg:w="414"/><text x="50.4593%" y="543.50"></text></g><g><title>btrfs_search_slot (8,291 samples, 0.54%)</title><rect x="49.6990%" y="565" width="0.5388%" height="15" fill="rgb(254,104,9)" fg:x="764792" fg:w="8291"/><text x="49.9490%" y="575.50"></text></g><g><title>unlock_up (502 samples, 0.03%)</title><rect x="50.2052%" y="549" width="0.0326%" height="15" fill="rgb(239,52,14)" fg:x="772581" fg:w="502"/><text x="50.4552%" y="559.50"></text></g><g><title>btrfs_del_orphan_item (8,991 samples, 0.58%)</title><rect x="49.6598%" y="581" width="0.5843%" height="15" fill="rgb(208,227,44)" fg:x="764188" fg:w="8991"/><text x="49.9098%" y="591.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (176 samples, 0.01%)</title><rect x="50.2641%" y="565" width="0.0114%" height="15" fill="rgb(246,18,19)" fg:x="773487" fg:w="176"/><text x="50.5141%" y="575.50"></text></g><g><title>clear_state_bit (224 samples, 0.01%)</title><rect x="50.2901%" y="549" width="0.0146%" height="15" fill="rgb(235,228,25)" fg:x="773888" fg:w="224"/><text x="50.5401%" y="559.50"></text></g><g><title>__clear_extent_bit (500 samples, 0.03%)</title><rect x="50.2755%" y="565" width="0.0325%" height="15" fill="rgb(240,156,20)" fg:x="773663" fg:w="500"/><text x="50.5255%" y="575.50"></text></g><g><title>_find_next_bit.constprop.0 (160 samples, 0.01%)</title><rect x="50.3318%" y="485" width="0.0104%" height="15" fill="rgb(224,8,20)" fg:x="774530" fg:w="160"/><text x="50.5818%" y="495.50"></text></g><g><title>steal_from_bitmap.part.0 (193 samples, 0.01%)</title><rect x="50.3302%" y="501" width="0.0125%" height="15" fill="rgb(214,12,52)" fg:x="774505" fg:w="193"/><text x="50.5802%" y="511.50"></text></g><g><title>__btrfs_add_free_space (260 samples, 0.02%)</title><rect x="50.3283%" y="517" width="0.0169%" height="15" fill="rgb(211,220,47)" fg:x="774475" fg:w="260"/><text x="50.5783%" y="527.50"></text></g><g><title>btrfs_free_tree_block (366 samples, 0.02%)</title><rect x="50.3280%" y="533" width="0.0238%" height="15" fill="rgb(250,173,5)" fg:x="774471" fg:w="366"/><text x="50.5780%" y="543.50"></text></g><g><title>btrfs_del_leaf (425 samples, 0.03%)</title><rect x="50.3278%" y="549" width="0.0276%" height="15" fill="rgb(250,125,52)" fg:x="774468" fg:w="425"/><text x="50.5778%" y="559.50"></text></g><g><title>btrfs_get_token_32 (982 samples, 0.06%)</title><rect x="50.3626%" y="549" width="0.0638%" height="15" fill="rgb(209,133,18)" fg:x="775003" fg:w="982"/><text x="50.6126%" y="559.50"></text></g><g><title>btrfs_set_token_32 (784 samples, 0.05%)</title><rect x="50.4300%" y="549" width="0.0509%" height="15" fill="rgb(216,173,22)" fg:x="776040" fg:w="784"/><text x="50.6800%" y="559.50"></text></g><g><title>memmove_extent_buffer (464 samples, 0.03%)</title><rect x="50.4940%" y="549" width="0.0302%" height="15" fill="rgb(205,3,22)" fg:x="777025" fg:w="464"/><text x="50.7440%" y="559.50"></text></g><g><title>memmove (381 samples, 0.02%)</title><rect x="50.4994%" y="533" width="0.0248%" height="15" fill="rgb(248,22,20)" fg:x="777108" fg:w="381"/><text x="50.7494%" y="543.50"></text></g><g><title>push_leaf_left (199 samples, 0.01%)</title><rect x="50.5241%" y="549" width="0.0129%" height="15" fill="rgb(233,6,29)" fg:x="777489" fg:w="199"/><text x="50.7741%" y="559.50"></text></g><g><title>push_leaf_right (189 samples, 0.01%)</title><rect x="50.5371%" y="549" width="0.0123%" height="15" fill="rgb(240,22,54)" fg:x="777688" fg:w="189"/><text x="50.7871%" y="559.50"></text></g><g><title>btrfs_del_items (3,733 samples, 0.24%)</title><rect x="50.3081%" y="565" width="0.2426%" height="15" fill="rgb(231,133,32)" fg:x="774165" fg:w="3733"/><text x="50.5581%" y="575.50"></text></g><g><title>alloc_extent_map (246 samples, 0.02%)</title><rect x="50.5558%" y="549" width="0.0160%" height="15" fill="rgb(248,193,4)" fg:x="777976" fg:w="246"/><text x="50.8058%" y="559.50"></text></g><g><title>kmem_cache_alloc (186 samples, 0.01%)</title><rect x="50.5597%" y="533" width="0.0121%" height="15" fill="rgb(211,178,46)" fg:x="778036" fg:w="186"/><text x="50.8097%" y="543.50"></text></g><g><title>btrfs_drop_extent_cache (459 samples, 0.03%)</title><rect x="50.5507%" y="565" width="0.0298%" height="15" fill="rgb(224,5,42)" fg:x="777898" fg:w="459"/><text x="50.8007%" y="575.50"></text></g><g><title>enqueue_task_fair (164 samples, 0.01%)</title><rect x="50.6130%" y="453" width="0.0107%" height="15" fill="rgb(239,176,25)" fg:x="778856" fg:w="164"/><text x="50.8630%" y="463.50"></text></g><g><title>ttwu_do_activate (327 samples, 0.02%)</title><rect x="50.6121%" y="469" width="0.0212%" height="15" fill="rgb(245,187,50)" fg:x="778843" fg:w="327"/><text x="50.8621%" y="479.50"></text></g><g><title>__wake_up_common (904 samples, 0.06%)</title><rect x="50.5823%" y="517" width="0.0587%" height="15" fill="rgb(248,24,15)" fg:x="778384" fg:w="904"/><text x="50.8323%" y="527.50"></text></g><g><title>autoremove_wake_function (877 samples, 0.06%)</title><rect x="50.5840%" y="501" width="0.0570%" height="15" fill="rgb(205,166,13)" fg:x="778411" fg:w="877"/><text x="50.8340%" y="511.50"></text></g><g><title>try_to_wake_up (865 samples, 0.06%)</title><rect x="50.5848%" y="485" width="0.0562%" height="15" fill="rgb(208,114,23)" fg:x="778423" fg:w="865"/><text x="50.8348%" y="495.50"></text></g><g><title>__wake_up_common_lock (924 samples, 0.06%)</title><rect x="50.5823%" y="533" width="0.0600%" height="15" fill="rgb(239,127,18)" fg:x="778384" fg:w="924"/><text x="50.8323%" y="543.50"></text></g><g><title>btrfs_free_path (1,092 samples, 0.07%)</title><rect x="50.5805%" y="565" width="0.0710%" height="15" fill="rgb(219,154,28)" fg:x="778357" fg:w="1092"/><text x="50.8305%" y="575.50"></text></g><g><title>btrfs_release_path (1,088 samples, 0.07%)</title><rect x="50.5808%" y="549" width="0.0707%" height="15" fill="rgb(225,157,23)" fg:x="778361" fg:w="1088"/><text x="50.8308%" y="559.50"></text></g><g><title>_raw_spin_lock (199 samples, 0.01%)</title><rect x="50.6680%" y="517" width="0.0129%" height="15" fill="rgb(219,8,6)" fg:x="779703" fg:w="199"/><text x="50.9180%" y="527.50"></text></g><g><title>btrfs_block_rsv_release (298 samples, 0.02%)</title><rect x="50.6638%" y="533" width="0.0194%" height="15" fill="rgb(212,47,6)" fg:x="779639" fg:w="298"/><text x="50.9138%" y="543.50"></text></g><g><title>finish_one_item (162 samples, 0.01%)</title><rect x="50.6906%" y="517" width="0.0105%" height="15" fill="rgb(224,190,4)" fg:x="780051" fg:w="162"/><text x="50.9406%" y="527.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (413 samples, 0.03%)</title><rect x="50.6832%" y="533" width="0.0268%" height="15" fill="rgb(239,183,29)" fg:x="779937" fg:w="413"/><text x="50.9332%" y="543.50"></text></g><g><title>kfree (252 samples, 0.02%)</title><rect x="50.7100%" y="533" width="0.0164%" height="15" fill="rgb(213,57,7)" fg:x="780350" fg:w="252"/><text x="50.9600%" y="543.50"></text></g><g><title>__btrfs_kill_delayed_node (1,091 samples, 0.07%)</title><rect x="50.6596%" y="549" width="0.0709%" height="15" fill="rgb(216,148,1)" fg:x="779573" fg:w="1091"/><text x="50.9096%" y="559.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,152 samples, 0.07%)</title><rect x="50.6587%" y="565" width="0.0749%" height="15" fill="rgb(236,182,29)" fg:x="779560" fg:w="1152"/><text x="50.9087%" y="575.50"></text></g><g><title>finish_wait (175 samples, 0.01%)</title><rect x="50.7525%" y="517" width="0.0114%" height="15" fill="rgb(244,120,48)" fg:x="781004" fg:w="175"/><text x="51.0025%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (166 samples, 0.01%)</title><rect x="50.7531%" y="501" width="0.0108%" height="15" fill="rgb(206,71,34)" fg:x="781013" fg:w="166"/><text x="51.0031%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (159 samples, 0.01%)</title><rect x="50.7536%" y="485" width="0.0103%" height="15" fill="rgb(242,32,6)" fg:x="781020" fg:w="159"/><text x="51.0036%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (490 samples, 0.03%)</title><rect x="50.7666%" y="501" width="0.0318%" height="15" fill="rgb(241,35,3)" fg:x="781220" fg:w="490"/><text x="51.0166%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (467 samples, 0.03%)</title><rect x="50.7681%" y="485" width="0.0303%" height="15" fill="rgb(222,62,19)" fg:x="781243" fg:w="467"/><text x="51.0181%" y="495.50"></text></g><g><title>prepare_to_wait_event (539 samples, 0.04%)</title><rect x="50.7639%" y="517" width="0.0350%" height="15" fill="rgb(223,110,41)" fg:x="781179" fg:w="539"/><text x="51.0139%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (609 samples, 0.04%)</title><rect x="50.7989%" y="517" width="0.0396%" height="15" fill="rgb(208,224,4)" fg:x="781718" fg:w="609"/><text x="51.0489%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (403 samples, 0.03%)</title><rect x="50.8123%" y="501" width="0.0262%" height="15" fill="rgb(241,137,19)" fg:x="781924" fg:w="403"/><text x="51.0623%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (587 samples, 0.04%)</title><rect x="50.8487%" y="469" width="0.0381%" height="15" fill="rgb(244,24,17)" fg:x="782483" fg:w="587"/><text x="51.0987%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (572 samples, 0.04%)</title><rect x="50.8496%" y="453" width="0.0372%" height="15" fill="rgb(245,178,49)" fg:x="782498" fg:w="572"/><text x="51.0996%" y="463.50"></text></g><g><title>native_write_msr (560 samples, 0.04%)</title><rect x="50.8504%" y="437" width="0.0364%" height="15" fill="rgb(219,160,38)" fg:x="782510" fg:w="560"/><text x="51.1004%" y="447.50"></text></g><g><title>finish_task_switch (635 samples, 0.04%)</title><rect x="50.8468%" y="485" width="0.0413%" height="15" fill="rgb(228,137,14)" fg:x="782455" fg:w="635"/><text x="51.0968%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (2,242 samples, 0.15%)</title><rect x="50.7486%" y="533" width="0.1457%" height="15" fill="rgb(237,134,11)" fg:x="780943" fg:w="2242"/><text x="50.9986%" y="543.50"></text></g><g><title>schedule (858 samples, 0.06%)</title><rect x="50.8385%" y="517" width="0.0558%" height="15" fill="rgb(211,126,44)" fg:x="782327" fg:w="858"/><text x="51.0885%" y="527.50"></text></g><g><title>__schedule (857 samples, 0.06%)</title><rect x="50.8386%" y="501" width="0.0557%" height="15" fill="rgb(226,171,33)" fg:x="782328" fg:w="857"/><text x="51.0886%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (2,330 samples, 0.15%)</title><rect x="50.7479%" y="549" width="0.1514%" height="15" fill="rgb(253,99,13)" fg:x="780932" fg:w="2330"/><text x="50.9979%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (376 samples, 0.02%)</title><rect x="50.9080%" y="485" width="0.0244%" height="15" fill="rgb(244,48,7)" fg:x="783397" fg:w="376"/><text x="51.1580%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (372 samples, 0.02%)</title><rect x="50.9083%" y="469" width="0.0242%" height="15" fill="rgb(244,217,54)" fg:x="783401" fg:w="372"/><text x="51.1583%" y="479.50"></text></g><g><title>native_write_msr (368 samples, 0.02%)</title><rect x="50.9086%" y="453" width="0.0239%" height="15" fill="rgb(224,15,18)" fg:x="783405" fg:w="368"/><text x="51.1586%" y="463.50"></text></g><g><title>finish_task_switch (400 samples, 0.03%)</title><rect x="50.9071%" y="501" width="0.0260%" height="15" fill="rgb(244,99,12)" fg:x="783382" fg:w="400"/><text x="51.1571%" y="511.50"></text></g><g><title>__btrfs_tree_lock (586 samples, 0.04%)</title><rect x="50.8993%" y="549" width="0.0381%" height="15" fill="rgb(233,226,8)" fg:x="783262" fg:w="586"/><text x="51.1493%" y="559.50"></text></g><g><title>schedule (547 samples, 0.04%)</title><rect x="50.9018%" y="533" width="0.0355%" height="15" fill="rgb(229,211,3)" fg:x="783301" fg:w="547"/><text x="51.1518%" y="543.50"></text></g><g><title>__schedule (545 samples, 0.04%)</title><rect x="50.9019%" y="517" width="0.0354%" height="15" fill="rgb(216,140,21)" fg:x="783303" fg:w="545"/><text x="51.1519%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (290 samples, 0.02%)</title><rect x="50.9567%" y="501" width="0.0188%" height="15" fill="rgb(234,122,30)" fg:x="784145" fg:w="290"/><text x="51.2067%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (269 samples, 0.02%)</title><rect x="50.9580%" y="485" width="0.0175%" height="15" fill="rgb(236,25,46)" fg:x="784166" fg:w="269"/><text x="51.2080%" y="495.50"></text></g><g><title>prepare_to_wait_event (327 samples, 0.02%)</title><rect x="50.9548%" y="517" width="0.0212%" height="15" fill="rgb(217,52,54)" fg:x="784116" fg:w="327"/><text x="51.2048%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (658 samples, 0.04%)</title><rect x="50.9760%" y="517" width="0.0428%" height="15" fill="rgb(222,29,26)" fg:x="784443" fg:w="658"/><text x="51.2260%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (251 samples, 0.02%)</title><rect x="51.0025%" y="501" width="0.0163%" height="15" fill="rgb(216,177,29)" fg:x="784850" fg:w="251"/><text x="51.2525%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (554 samples, 0.04%)</title><rect x="51.0290%" y="469" width="0.0360%" height="15" fill="rgb(247,136,51)" fg:x="785258" fg:w="554"/><text x="51.2790%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (531 samples, 0.03%)</title><rect x="51.0305%" y="453" width="0.0345%" height="15" fill="rgb(231,47,47)" fg:x="785281" fg:w="531"/><text x="51.2805%" y="463.50"></text></g><g><title>native_write_msr (525 samples, 0.03%)</title><rect x="51.0309%" y="437" width="0.0341%" height="15" fill="rgb(211,192,36)" fg:x="785287" fg:w="525"/><text x="51.2809%" y="447.50"></text></g><g><title>finish_task_switch (595 samples, 0.04%)</title><rect x="51.0274%" y="485" width="0.0387%" height="15" fill="rgb(229,156,32)" fg:x="785234" fg:w="595"/><text x="51.2774%" y="495.50"></text></g><g><title>__btrfs_tree_lock (2,029 samples, 0.13%)</title><rect x="50.9428%" y="533" width="0.1319%" height="15" fill="rgb(248,213,20)" fg:x="783932" fg:w="2029"/><text x="51.1928%" y="543.50"></text></g><g><title>schedule (860 samples, 0.06%)</title><rect x="51.0188%" y="517" width="0.0559%" height="15" fill="rgb(217,64,7)" fg:x="785101" fg:w="860"/><text x="51.2688%" y="527.50"></text></g><g><title>__schedule (856 samples, 0.06%)</title><rect x="51.0190%" y="501" width="0.0556%" height="15" fill="rgb(232,142,8)" fg:x="785105" fg:w="856"/><text x="51.2690%" y="511.50"></text></g><g><title>btrfs_lock_root_node (2,065 samples, 0.13%)</title><rect x="50.9428%" y="549" width="0.1342%" height="15" fill="rgb(224,92,44)" fg:x="783931" fg:w="2065"/><text x="51.1928%" y="559.50"></text></g><g><title>btrfs_try_tree_write_lock (383 samples, 0.02%)</title><rect x="51.0849%" y="549" width="0.0249%" height="15" fill="rgb(214,169,17)" fg:x="786119" fg:w="383"/><text x="51.3349%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (343 samples, 0.02%)</title><rect x="51.0875%" y="533" width="0.0223%" height="15" fill="rgb(210,59,37)" fg:x="786159" fg:w="343"/><text x="51.3375%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (313 samples, 0.02%)</title><rect x="51.1119%" y="549" width="0.0203%" height="15" fill="rgb(214,116,48)" fg:x="786534" fg:w="313"/><text x="51.3619%" y="559.50"></text></g><g><title>__radix_tree_lookup (168 samples, 0.01%)</title><rect x="51.1484%" y="517" width="0.0109%" height="15" fill="rgb(244,191,6)" fg:x="787096" fg:w="168"/><text x="51.3984%" y="527.50"></text></g><g><title>find_extent_buffer (318 samples, 0.02%)</title><rect x="51.1439%" y="533" width="0.0207%" height="15" fill="rgb(241,50,52)" fg:x="787026" fg:w="318"/><text x="51.3939%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (564 samples, 0.04%)</title><rect x="51.1322%" y="549" width="0.0367%" height="15" fill="rgb(236,75,39)" fg:x="786847" fg:w="564"/><text x="51.3822%" y="559.50"></text></g><g><title>reada_for_balance (209 samples, 0.01%)</title><rect x="51.1689%" y="549" width="0.0136%" height="15" fill="rgb(236,99,0)" fg:x="787411" fg:w="209"/><text x="51.4189%" y="559.50"></text></g><g><title>select_task_rq_fair (213 samples, 0.01%)</title><rect x="51.2219%" y="469" width="0.0138%" height="15" fill="rgb(207,202,15)" fg:x="788226" fg:w="213"/><text x="51.4719%" y="479.50"></text></g><g><title>enqueue_entity (198 samples, 0.01%)</title><rect x="51.2403%" y="437" width="0.0129%" height="15" fill="rgb(233,207,14)" fg:x="788510" fg:w="198"/><text x="51.4903%" y="447.50"></text></g><g><title>enqueue_task_fair (243 samples, 0.02%)</title><rect x="51.2384%" y="453" width="0.0158%" height="15" fill="rgb(226,27,51)" fg:x="788481" fg:w="243"/><text x="51.4884%" y="463.50"></text></g><g><title>ttwu_do_activate (493 samples, 0.03%)</title><rect x="51.2373%" y="469" width="0.0320%" height="15" fill="rgb(206,104,42)" fg:x="788463" fg:w="493"/><text x="51.4873%" y="479.50"></text></g><g><title>psi_task_change (232 samples, 0.02%)</title><rect x="51.2542%" y="453" width="0.0151%" height="15" fill="rgb(212,225,4)" fg:x="788724" fg:w="232"/><text x="51.5042%" y="463.50"></text></g><g><title>psi_group_change (203 samples, 0.01%)</title><rect x="51.2561%" y="437" width="0.0132%" height="15" fill="rgb(233,96,42)" fg:x="788753" fg:w="203"/><text x="51.5061%" y="447.50"></text></g><g><title>__wake_up_common (1,369 samples, 0.09%)</title><rect x="51.1880%" y="517" width="0.0890%" height="15" fill="rgb(229,21,32)" fg:x="787705" fg:w="1369"/><text x="51.4380%" y="527.50"></text></g><g><title>autoremove_wake_function (1,345 samples, 0.09%)</title><rect x="51.1896%" y="501" width="0.0874%" height="15" fill="rgb(226,216,24)" fg:x="787729" fg:w="1345"/><text x="51.4396%" y="511.50"></text></g><g><title>try_to_wake_up (1,322 samples, 0.09%)</title><rect x="51.1911%" y="485" width="0.0859%" height="15" fill="rgb(221,163,17)" fg:x="787752" fg:w="1322"/><text x="51.4411%" y="495.50"></text></g><g><title>__wake_up_common_lock (1,467 samples, 0.10%)</title><rect x="51.1879%" y="533" width="0.0953%" height="15" fill="rgb(216,216,42)" fg:x="787703" fg:w="1467"/><text x="51.4379%" y="543.50"></text></g><g><title>btrfs_search_slot (8,440 samples, 0.55%)</title><rect x="50.7371%" y="565" width="0.5485%" height="15" fill="rgb(240,118,7)" fg:x="780766" fg:w="8440"/><text x="50.9871%" y="575.50"></text></g><g><title>unlock_up (1,576 samples, 0.10%)</title><rect x="51.1831%" y="549" width="0.1024%" height="15" fill="rgb(221,67,37)" fg:x="787630" fg:w="1576"/><text x="51.4331%" y="559.50"></text></g><g><title>alloc_extent_state (155 samples, 0.01%)</title><rect x="51.3003%" y="533" width="0.0101%" height="15" fill="rgb(241,32,44)" fg:x="789433" fg:w="155"/><text x="51.5503%" y="543.50"></text></g><g><title>lock_extent_bits (436 samples, 0.03%)</title><rect x="51.2915%" y="565" width="0.0283%" height="15" fill="rgb(235,204,43)" fg:x="789298" fg:w="436"/><text x="51.5415%" y="575.50"></text></g><g><title>__set_extent_bit (408 samples, 0.03%)</title><rect x="51.2933%" y="549" width="0.0265%" height="15" fill="rgb(213,116,10)" fg:x="789326" fg:w="408"/><text x="51.5433%" y="559.50"></text></g><g><title>btrfs_truncate_inode_items (16,579 samples, 1.08%)</title><rect x="50.2520%" y="581" width="1.0774%" height="15" fill="rgb(239,15,48)" fg:x="773302" fg:w="16579"/><text x="50.5020%" y="591.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (263 samples, 0.02%)</title><rect x="51.3578%" y="517" width="0.0171%" height="15" fill="rgb(207,123,36)" fg:x="790318" fg:w="263"/><text x="51.6078%" y="527.50"></text></g><g><title>btrfs_block_rsv_refill (757 samples, 0.05%)</title><rect x="51.3376%" y="565" width="0.0492%" height="15" fill="rgb(209,103,30)" fg:x="790007" fg:w="757"/><text x="51.5876%" y="575.50"></text></g><g><title>btrfs_reserve_metadata_bytes (648 samples, 0.04%)</title><rect x="51.3447%" y="549" width="0.0421%" height="15" fill="rgb(238,100,19)" fg:x="790116" fg:w="648"/><text x="51.5947%" y="559.50"></text></g><g><title>__reserve_bytes (623 samples, 0.04%)</title><rect x="51.3463%" y="533" width="0.0405%" height="15" fill="rgb(244,30,14)" fg:x="790141" fg:w="623"/><text x="51.5963%" y="543.50"></text></g><g><title>calc_available_free_space.isra.0 (183 samples, 0.01%)</title><rect x="51.3749%" y="517" width="0.0119%" height="15" fill="rgb(249,174,6)" fg:x="790581" fg:w="183"/><text x="51.6249%" y="527.50"></text></g><g><title>evict_refill_and_join (1,253 samples, 0.08%)</title><rect x="51.3294%" y="581" width="0.0814%" height="15" fill="rgb(235,213,41)" fg:x="789881" fg:w="1253"/><text x="51.5794%" y="591.50"></text></g><g><title>start_transaction (356 samples, 0.02%)</title><rect x="51.3877%" y="565" width="0.0231%" height="15" fill="rgb(213,118,6)" fg:x="790778" fg:w="356"/><text x="51.6377%" y="575.50"></text></g><g><title>btrfs_evict_inode (41,486 samples, 2.70%)</title><rect x="48.7338%" y="597" width="2.6959%" height="15" fill="rgb(235,44,51)" fg:x="749938" fg:w="41486"/><text x="48.9838%" y="607.50">bt..</text></g><g><title>evict (41,799 samples, 2.72%)</title><rect x="48.7193%" y="613" width="2.7163%" height="15" fill="rgb(217,9,53)" fg:x="749716" fg:w="41799"/><text x="48.9693%" y="623.50">ev..</text></g><g><title>iput.part.0 (158 samples, 0.01%)</title><rect x="51.4386%" y="613" width="0.0103%" height="15" fill="rgb(237,172,34)" fg:x="791562" fg:w="158"/><text x="51.6886%" y="623.50"></text></g><g><title>_raw_spin_lock (283 samples, 0.02%)</title><rect x="51.4764%" y="581" width="0.0184%" height="15" fill="rgb(206,206,11)" fg:x="792143" fg:w="283"/><text x="51.7264%" y="591.50"></text></g><g><title>__list_del_entry_valid (580 samples, 0.04%)</title><rect x="51.5228%" y="533" width="0.0377%" height="15" fill="rgb(214,149,29)" fg:x="792857" fg:w="580"/><text x="51.7728%" y="543.50"></text></g><g><title>_raw_spin_lock (213 samples, 0.01%)</title><rect x="51.5605%" y="533" width="0.0138%" height="15" fill="rgb(208,123,3)" fg:x="793437" fg:w="213"/><text x="51.8105%" y="543.50"></text></g><g><title>d_lru_del (1,584 samples, 0.10%)</title><rect x="51.4997%" y="565" width="0.1029%" height="15" fill="rgb(229,126,4)" fg:x="792501" fg:w="1584"/><text x="51.7497%" y="575.50"></text></g><g><title>list_lru_del (1,542 samples, 0.10%)</title><rect x="51.5024%" y="549" width="0.1002%" height="15" fill="rgb(222,92,36)" fg:x="792543" fg:w="1542"/><text x="51.7524%" y="559.50"></text></g><g><title>mem_cgroup_from_obj (435 samples, 0.03%)</title><rect x="51.5743%" y="533" width="0.0283%" height="15" fill="rgb(216,39,41)" fg:x="793650" fg:w="435"/><text x="51.8243%" y="543.50"></text></g><g><title>d_walk (2,336 samples, 0.15%)</title><rect x="51.4531%" y="597" width="0.1518%" height="15" fill="rgb(253,127,28)" fg:x="791785" fg:w="2336"/><text x="51.7031%" y="607.50"></text></g><g><title>select_collect (1,690 samples, 0.11%)</title><rect x="51.4951%" y="581" width="0.1098%" height="15" fill="rgb(249,152,51)" fg:x="792431" fg:w="1690"/><text x="51.7451%" y="591.50"></text></g><g><title>___d_drop (1,000 samples, 0.06%)</title><rect x="51.6159%" y="565" width="0.0650%" height="15" fill="rgb(209,123,42)" fg:x="794290" fg:w="1000"/><text x="51.8659%" y="575.50"></text></g><g><title>call_rcu (653 samples, 0.04%)</title><rect x="51.6893%" y="565" width="0.0424%" height="15" fill="rgb(241,118,22)" fg:x="795420" fg:w="653"/><text x="51.9393%" y="575.50"></text></g><g><title>rcu_segcblist_enqueue (337 samples, 0.02%)</title><rect x="51.7099%" y="549" width="0.0219%" height="15" fill="rgb(208,25,7)" fg:x="795736" fg:w="337"/><text x="51.9599%" y="559.50"></text></g><g><title>__dentry_kill (1,922 samples, 0.12%)</title><rect x="51.6093%" y="581" width="0.1249%" height="15" fill="rgb(243,144,39)" fg:x="794188" fg:w="1922"/><text x="51.8593%" y="591.50"></text></g><g><title>__dput_to_list (194 samples, 0.01%)</title><rect x="51.7342%" y="581" width="0.0126%" height="15" fill="rgb(250,50,5)" fg:x="796110" fg:w="194"/><text x="51.9842%" y="591.50"></text></g><g><title>d_lru_del (155 samples, 0.01%)</title><rect x="51.7367%" y="565" width="0.0101%" height="15" fill="rgb(207,67,11)" fg:x="796149" fg:w="155"/><text x="51.9867%" y="575.50"></text></g><g><title>_raw_spin_lock (177 samples, 0.01%)</title><rect x="51.7518%" y="581" width="0.0115%" height="15" fill="rgb(245,204,40)" fg:x="796381" fg:w="177"/><text x="52.0018%" y="591.50"></text></g><g><title>shrink_dcache_parent (5,103 samples, 0.33%)</title><rect x="51.4504%" y="613" width="0.3316%" height="15" fill="rgb(238,228,24)" fg:x="791743" fg:w="5103"/><text x="51.7004%" y="623.50"></text></g><g><title>shrink_dentry_list (2,725 samples, 0.18%)</title><rect x="51.6049%" y="597" width="0.1771%" height="15" fill="rgb(217,116,22)" fg:x="794121" fg:w="2725"/><text x="51.8549%" y="607.50"></text></g><g><title>shrink_lock_dentry.part.0 (180 samples, 0.01%)</title><rect x="51.7703%" y="581" width="0.0117%" height="15" fill="rgb(234,98,12)" fg:x="796666" fg:w="180"/><text x="52.0203%" y="591.50"></text></g><g><title>do_rmdir (77,562 samples, 5.04%)</title><rect x="46.7430%" y="645" width="5.0403%" height="15" fill="rgb(242,170,50)" fg:x="719304" fg:w="77562"/><text x="46.9930%" y="655.50">do_rmd..</text></g><g><title>vfs_rmdir.part.0 (76,006 samples, 4.94%)</title><rect x="46.8442%" y="629" width="4.9392%" height="15" fill="rgb(235,7,5)" fg:x="720860" fg:w="76006"/><text x="47.0942%" y="639.50">vfs_rm..</text></g><g><title>_raw_spin_lock (249 samples, 0.02%)</title><rect x="51.9653%" y="565" width="0.0162%" height="15" fill="rgb(241,114,28)" fg:x="799667" fg:w="249"/><text x="52.2153%" y="575.50"></text></g><g><title>__d_lookup (2,294 samples, 0.15%)</title><rect x="51.8337%" y="581" width="0.1491%" height="15" fill="rgb(246,112,42)" fg:x="797642" fg:w="2294"/><text x="52.0837%" y="591.50"></text></g><g><title>__lookup_hash (2,551 samples, 0.17%)</title><rect x="51.8171%" y="629" width="0.1658%" height="15" fill="rgb(248,228,14)" fg:x="797386" fg:w="2551"/><text x="52.0671%" y="639.50"></text></g><g><title>lookup_dcache (2,462 samples, 0.16%)</title><rect x="51.8229%" y="613" width="0.1600%" height="15" fill="rgb(208,133,18)" fg:x="797475" fg:w="2462"/><text x="52.0729%" y="623.50"></text></g><g><title>d_lookup (2,416 samples, 0.16%)</title><rect x="51.8259%" y="597" width="0.1570%" height="15" fill="rgb(207,35,49)" fg:x="797521" fg:w="2416"/><text x="52.0759%" y="607.50"></text></g><g><title>down_write (246 samples, 0.02%)</title><rect x="51.9835%" y="629" width="0.0160%" height="15" fill="rgb(205,68,36)" fg:x="799946" fg:w="246"/><text x="52.2335%" y="639.50"></text></g><g><title>pick_next_task_fair (165 samples, 0.01%)</title><rect x="52.0284%" y="581" width="0.0107%" height="15" fill="rgb(245,62,40)" fg:x="800637" fg:w="165"/><text x="52.2784%" y="591.50"></text></g><g><title>__schedule (354 samples, 0.02%)</title><rect x="52.0216%" y="597" width="0.0230%" height="15" fill="rgb(228,27,24)" fg:x="800533" fg:w="354"/><text x="52.2716%" y="607.50"></text></g><g><title>_cond_resched (428 samples, 0.03%)</title><rect x="52.0184%" y="613" width="0.0278%" height="15" fill="rgb(253,19,12)" fg:x="800483" fg:w="428"/><text x="52.2684%" y="623.50"></text></g><g><title>btrfs_dentry_delete (459 samples, 0.03%)</title><rect x="52.0463%" y="613" width="0.0298%" height="15" fill="rgb(232,28,20)" fg:x="800913" fg:w="459"/><text x="52.2963%" y="623.50"></text></g><g><title>lockref_put_or_lock (462 samples, 0.03%)</title><rect x="52.0761%" y="613" width="0.0300%" height="15" fill="rgb(218,35,51)" fg:x="801372" fg:w="462"/><text x="52.3261%" y="623.50"></text></g><g><title>dput (1,668 samples, 0.11%)</title><rect x="51.9995%" y="629" width="0.1084%" height="15" fill="rgb(212,90,40)" fg:x="800192" fg:w="1668"/><text x="52.2495%" y="639.50"></text></g><g><title>__legitimize_mnt (305 samples, 0.02%)</title><rect x="52.1814%" y="549" width="0.0198%" height="15" fill="rgb(220,172,12)" fg:x="802992" fg:w="305"/><text x="52.4314%" y="559.50"></text></g><g><title>__legitimize_path (599 samples, 0.04%)</title><rect x="52.1722%" y="565" width="0.0389%" height="15" fill="rgb(226,159,20)" fg:x="802850" fg:w="599"/><text x="52.4222%" y="575.50"></text></g><g><title>legitimize_links (182 samples, 0.01%)</title><rect x="52.2111%" y="565" width="0.0118%" height="15" fill="rgb(234,205,16)" fg:x="803449" fg:w="182"/><text x="52.4611%" y="575.50"></text></g><g><title>complete_walk (1,109 samples, 0.07%)</title><rect x="52.1520%" y="597" width="0.0721%" height="15" fill="rgb(207,9,39)" fg:x="802540" fg:w="1109"/><text x="52.4020%" y="607.50"></text></g><g><title>try_to_unlazy (985 samples, 0.06%)</title><rect x="52.1601%" y="581" width="0.0640%" height="15" fill="rgb(249,143,15)" fg:x="802664" fg:w="985"/><text x="52.4101%" y="591.50"></text></g><g><title>inode_permission.part.0 (521 samples, 0.03%)</title><rect x="52.2467%" y="581" width="0.0339%" height="15" fill="rgb(253,133,29)" fg:x="803997" fg:w="521"/><text x="52.4967%" y="591.50"></text></g><g><title>generic_permission (314 samples, 0.02%)</title><rect x="52.2602%" y="565" width="0.0204%" height="15" fill="rgb(221,187,0)" fg:x="804204" fg:w="314"/><text x="52.5102%" y="575.50"></text></g><g><title>link_path_walk.part.0 (913 samples, 0.06%)</title><rect x="52.2241%" y="597" width="0.0593%" height="15" fill="rgb(205,204,26)" fg:x="803649" fg:w="913"/><text x="52.4741%" y="607.50"></text></g><g><title>__fget_files (808 samples, 0.05%)</title><rect x="52.3355%" y="565" width="0.0525%" height="15" fill="rgb(224,68,54)" fg:x="805364" fg:w="808"/><text x="52.5855%" y="575.50"></text></g><g><title>__fget_light (1,189 samples, 0.08%)</title><rect x="52.3109%" y="581" width="0.0773%" height="15" fill="rgb(209,67,4)" fg:x="804985" fg:w="1189"/><text x="52.5609%" y="591.50"></text></g><g><title>path_init (1,731 samples, 0.11%)</title><rect x="52.2834%" y="597" width="0.1125%" height="15" fill="rgb(228,229,18)" fg:x="804562" fg:w="1731"/><text x="52.5334%" y="607.50"></text></g><g><title>filename_parentat (4,816 samples, 0.31%)</title><rect x="52.1143%" y="629" width="0.3130%" height="15" fill="rgb(231,89,13)" fg:x="801960" fg:w="4816"/><text x="52.3643%" y="639.50"></text></g><g><title>path_parentat (4,363 samples, 0.28%)</title><rect x="52.1438%" y="613" width="0.2835%" height="15" fill="rgb(210,182,18)" fg:x="802413" fg:w="4363"/><text x="52.3938%" y="623.50"></text></g><g><title>terminate_walk (483 samples, 0.03%)</title><rect x="52.3959%" y="597" width="0.0314%" height="15" fill="rgb(240,105,2)" fg:x="806293" fg:w="483"/><text x="52.6459%" y="607.50"></text></g><g><title>ihold (1,070 samples, 0.07%)</title><rect x="52.4273%" y="629" width="0.0695%" height="15" fill="rgb(207,170,50)" fg:x="806776" fg:w="1070"/><text x="52.6773%" y="639.50"></text></g><g><title>iput.part.0 (178 samples, 0.01%)</title><rect x="52.4971%" y="629" width="0.0116%" height="15" fill="rgb(232,133,24)" fg:x="807850" fg:w="178"/><text x="52.7471%" y="639.50"></text></g><g><title>_atomic_dec_and_lock (156 samples, 0.01%)</title><rect x="52.4985%" y="613" width="0.0101%" height="15" fill="rgb(235,166,27)" fg:x="807872" fg:w="156"/><text x="52.7485%" y="623.50"></text></g><g><title>kmem_cache_free (759 samples, 0.05%)</title><rect x="52.5087%" y="629" width="0.0493%" height="15" fill="rgb(209,19,13)" fg:x="808028" fg:w="759"/><text x="52.7587%" y="639.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (247 samples, 0.02%)</title><rect x="52.5419%" y="613" width="0.0161%" height="15" fill="rgb(226,79,39)" fg:x="808540" fg:w="247"/><text x="52.7919%" y="623.50"></text></g><g><title>mnt_drop_write (283 samples, 0.02%)</title><rect x="52.5580%" y="629" width="0.0184%" height="15" fill="rgb(222,163,10)" fg:x="808787" fg:w="283"/><text x="52.8080%" y="639.50"></text></g><g><title>__mnt_want_write (293 samples, 0.02%)</title><rect x="52.5883%" y="613" width="0.0190%" height="15" fill="rgb(214,44,19)" fg:x="809254" fg:w="293"/><text x="52.8383%" y="623.50"></text></g><g><title>mnt_want_write (592 samples, 0.04%)</title><rect x="52.5764%" y="629" width="0.0385%" height="15" fill="rgb(210,217,13)" fg:x="809070" fg:w="592"/><text x="52.8264%" y="639.50"></text></g><g><title>putname (400 samples, 0.03%)</title><rect x="52.6252%" y="629" width="0.0260%" height="15" fill="rgb(237,61,54)" fg:x="809822" fg:w="400"/><text x="52.8752%" y="639.50"></text></g><g><title>apparmor_path_unlink (199 samples, 0.01%)</title><rect x="52.6547%" y="613" width="0.0129%" height="15" fill="rgb(226,184,24)" fg:x="810276" fg:w="199"/><text x="52.9047%" y="623.50"></text></g><g><title>security_path_unlink (1,239 samples, 0.08%)</title><rect x="52.6512%" y="629" width="0.0805%" height="15" fill="rgb(223,226,4)" fg:x="810222" fg:w="1239"/><text x="52.9012%" y="639.50"></text></g><g><title>tomoyo_path_unlink (986 samples, 0.06%)</title><rect x="52.6677%" y="613" width="0.0641%" height="15" fill="rgb(210,26,41)" fg:x="810475" fg:w="986"/><text x="52.9177%" y="623.50"></text></g><g><title>tomoyo_path_perm (955 samples, 0.06%)</title><rect x="52.6697%" y="597" width="0.0621%" height="15" fill="rgb(220,221,6)" fg:x="810506" fg:w="955"/><text x="52.9197%" y="607.50"></text></g><g><title>tomoyo_init_request_info (682 samples, 0.04%)</title><rect x="52.6874%" y="581" width="0.0443%" height="15" fill="rgb(225,89,49)" fg:x="810779" fg:w="682"/><text x="52.9374%" y="591.50"></text></g><g><title>tomoyo_domain (393 samples, 0.03%)</title><rect x="52.7062%" y="565" width="0.0255%" height="15" fill="rgb(218,70,45)" fg:x="811068" fg:w="393"/><text x="52.9562%" y="575.50"></text></g><g><title>up_write (156 samples, 0.01%)</title><rect x="52.7318%" y="629" width="0.0101%" height="15" fill="rgb(238,166,21)" fg:x="811461" fg:w="156"/><text x="52.9818%" y="639.50"></text></g><g><title>_raw_spin_lock (189 samples, 0.01%)</title><rect x="52.7659%" y="613" width="0.0123%" height="15" fill="rgb(224,141,44)" fg:x="811987" fg:w="189"/><text x="53.0159%" y="623.50"></text></g><g><title>btrfs_create_pending_block_groups (218 samples, 0.01%)</title><rect x="52.8620%" y="581" width="0.0142%" height="15" fill="rgb(230,12,49)" fg:x="813465" fg:w="218"/><text x="53.1120%" y="591.50"></text></g><g><title>btrfs_put_transaction (160 samples, 0.01%)</title><rect x="52.8761%" y="581" width="0.0104%" height="15" fill="rgb(212,174,12)" fg:x="813683" fg:w="160"/><text x="53.1261%" y="591.50"></text></g><g><title>_raw_spin_lock (1,028 samples, 0.07%)</title><rect x="52.9136%" y="549" width="0.0668%" height="15" fill="rgb(246,67,9)" fg:x="814259" fg:w="1028"/><text x="53.1636%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (329 samples, 0.02%)</title><rect x="52.9590%" y="533" width="0.0214%" height="15" fill="rgb(239,35,23)" fg:x="814958" fg:w="329"/><text x="53.2090%" y="543.50"></text></g><g><title>btrfs_trans_release_metadata (1,495 samples, 0.10%)</title><rect x="52.8938%" y="581" width="0.0972%" height="15" fill="rgb(211,167,0)" fg:x="813954" fg:w="1495"/><text x="53.1438%" y="591.50"></text></g><g><title>btrfs_block_rsv_release (1,429 samples, 0.09%)</title><rect x="52.8980%" y="565" width="0.0929%" height="15" fill="rgb(225,119,45)" fg:x="814020" fg:w="1429"/><text x="53.1480%" y="575.50"></text></g><g><title>__btrfs_end_transaction (3,695 samples, 0.24%)</title><rect x="52.7943%" y="597" width="0.2401%" height="15" fill="rgb(210,162,6)" fg:x="812423" fg:w="3695"/><text x="53.0443%" y="607.50"></text></g><g><title>kmem_cache_free (669 samples, 0.04%)</title><rect x="52.9909%" y="581" width="0.0435%" height="15" fill="rgb(208,118,35)" fg:x="815449" fg:w="669"/><text x="53.2409%" y="591.50"></text></g><g><title>btrfs_end_log_trans (281 samples, 0.02%)</title><rect x="53.1684%" y="565" width="0.0183%" height="15" fill="rgb(239,4,53)" fg:x="818180" fg:w="281"/><text x="53.4184%" y="575.50"></text></g><g><title>select_task_rq_fair (416 samples, 0.03%)</title><rect x="53.4013%" y="469" width="0.0270%" height="15" fill="rgb(213,130,21)" fg:x="821765" fg:w="416"/><text x="53.6513%" y="479.50"></text></g><g><title>enqueue_entity (503 samples, 0.03%)</title><rect x="53.4381%" y="437" width="0.0327%" height="15" fill="rgb(235,148,0)" fg:x="822331" fg:w="503"/><text x="53.6881%" y="447.50"></text></g><g><title>update_load_avg (160 samples, 0.01%)</title><rect x="53.4604%" y="421" width="0.0104%" height="15" fill="rgb(244,224,18)" fg:x="822674" fg:w="160"/><text x="53.7104%" y="431.50"></text></g><g><title>enqueue_task_fair (626 samples, 0.04%)</title><rect x="53.4314%" y="453" width="0.0407%" height="15" fill="rgb(211,214,4)" fg:x="822228" fg:w="626"/><text x="53.6814%" y="463.50"></text></g><g><title>ttwu_do_activate (1,405 samples, 0.09%)</title><rect x="53.4290%" y="469" width="0.0913%" height="15" fill="rgb(206,119,25)" fg:x="822191" fg:w="1405"/><text x="53.6790%" y="479.50"></text></g><g><title>psi_task_change (741 samples, 0.05%)</title><rect x="53.4722%" y="453" width="0.0482%" height="15" fill="rgb(243,93,47)" fg:x="822855" fg:w="741"/><text x="53.7222%" y="463.50"></text></g><g><title>psi_group_change (681 samples, 0.04%)</title><rect x="53.4761%" y="437" width="0.0443%" height="15" fill="rgb(224,194,6)" fg:x="822915" fg:w="681"/><text x="53.7261%" y="447.50"></text></g><g><title>__wake_up_common (5,301 samples, 0.34%)</title><rect x="53.2032%" y="517" width="0.3445%" height="15" fill="rgb(243,229,6)" fg:x="818716" fg:w="5301"/><text x="53.4532%" y="527.50"></text></g><g><title>autoremove_wake_function (5,156 samples, 0.34%)</title><rect x="53.2126%" y="501" width="0.3351%" height="15" fill="rgb(207,23,50)" fg:x="818861" fg:w="5156"/><text x="53.4626%" y="511.50"></text></g><g><title>try_to_wake_up (5,068 samples, 0.33%)</title><rect x="53.2184%" y="485" width="0.3293%" height="15" fill="rgb(253,192,32)" fg:x="818949" fg:w="5068"/><text x="53.4684%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (1,000 samples, 0.06%)</title><rect x="53.5477%" y="517" width="0.0650%" height="15" fill="rgb(213,21,6)" fg:x="824017" fg:w="1000"/><text x="53.7977%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (923 samples, 0.06%)</title><rect x="53.5527%" y="501" width="0.0600%" height="15" fill="rgb(243,151,13)" fg:x="824094" fg:w="923"/><text x="53.8027%" y="511.50"></text></g><g><title>__wake_up_common_lock (6,361 samples, 0.41%)</title><rect x="53.2018%" y="533" width="0.4134%" height="15" fill="rgb(233,165,41)" fg:x="818694" fg:w="6361"/><text x="53.4518%" y="543.50"></text></g><g><title>btrfs_tree_unlock (465 samples, 0.03%)</title><rect x="53.6152%" y="533" width="0.0302%" height="15" fill="rgb(246,176,45)" fg:x="825056" fg:w="465"/><text x="53.8652%" y="543.50"></text></g><g><title>_raw_spin_lock (163 samples, 0.01%)</title><rect x="53.6565%" y="517" width="0.0106%" height="15" fill="rgb(217,170,52)" fg:x="825692" fg:w="163"/><text x="53.9065%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (328 samples, 0.02%)</title><rect x="53.6459%" y="533" width="0.0213%" height="15" fill="rgb(214,203,54)" fg:x="825528" fg:w="328"/><text x="53.8959%" y="543.50"></text></g><g><title>btrfs_free_path (7,577 samples, 0.49%)</title><rect x="53.1866%" y="565" width="0.4924%" height="15" fill="rgb(248,215,49)" fg:x="818461" fg:w="7577"/><text x="53.4366%" y="575.50"></text></g><g><title>btrfs_release_path (7,510 samples, 0.49%)</title><rect x="53.1910%" y="549" width="0.4880%" height="15" fill="rgb(208,46,10)" fg:x="818528" fg:w="7510"/><text x="53.4410%" y="559.50"></text></g><g><title>release_extent_buffer (182 samples, 0.01%)</title><rect x="53.6672%" y="533" width="0.0118%" height="15" fill="rgb(254,5,31)" fg:x="825856" fg:w="182"/><text x="53.9172%" y="543.50"></text></g><g><title>_raw_read_lock (234 samples, 0.02%)</title><rect x="53.7567%" y="501" width="0.0152%" height="15" fill="rgb(222,104,33)" fg:x="827234" fg:w="234"/><text x="54.0067%" y="511.50"></text></g><g><title>finish_wait (641 samples, 0.04%)</title><rect x="53.7721%" y="501" width="0.0417%" height="15" fill="rgb(248,49,16)" fg:x="827471" fg:w="641"/><text x="54.0221%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (614 samples, 0.04%)</title><rect x="53.7739%" y="485" width="0.0399%" height="15" fill="rgb(232,198,41)" fg:x="827498" fg:w="614"/><text x="54.0239%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (584 samples, 0.04%)</title><rect x="53.7758%" y="469" width="0.0380%" height="15" fill="rgb(214,125,3)" fg:x="827528" fg:w="584"/><text x="54.0258%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,136 samples, 0.07%)</title><rect x="53.8204%" y="485" width="0.0738%" height="15" fill="rgb(229,220,28)" fg:x="828214" fg:w="1136"/><text x="54.0704%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,079 samples, 0.07%)</title><rect x="53.8241%" y="469" width="0.0701%" height="15" fill="rgb(222,64,37)" fg:x="828271" fg:w="1079"/><text x="54.0741%" y="479.50"></text></g><g><title>prepare_to_wait_event (1,255 samples, 0.08%)</title><rect x="53.8139%" y="501" width="0.0816%" height="15" fill="rgb(249,184,13)" fg:x="828114" fg:w="1255"/><text x="54.0639%" y="511.50"></text></g><g><title>dequeue_task_fair (170 samples, 0.01%)</title><rect x="53.9111%" y="469" width="0.0110%" height="15" fill="rgb(252,176,6)" fg:x="829610" fg:w="170"/><text x="54.1611%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (218 samples, 0.01%)</title><rect x="53.9245%" y="453" width="0.0142%" height="15" fill="rgb(228,153,7)" fg:x="829815" fg:w="218"/><text x="54.1745%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (207 samples, 0.01%)</title><rect x="53.9252%" y="437" width="0.0135%" height="15" fill="rgb(242,193,5)" fg:x="829826" fg:w="207"/><text x="54.1752%" y="447.50"></text></g><g><title>native_write_msr (205 samples, 0.01%)</title><rect x="53.9253%" y="421" width="0.0133%" height="15" fill="rgb(232,140,9)" fg:x="829828" fg:w="205"/><text x="54.1753%" y="431.50"></text></g><g><title>finish_task_switch (261 samples, 0.02%)</title><rect x="53.9222%" y="469" width="0.0170%" height="15" fill="rgb(213,222,16)" fg:x="829780" fg:w="261"/><text x="54.1722%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (3,248 samples, 0.21%)</title><rect x="53.7435%" y="517" width="0.2111%" height="15" fill="rgb(222,75,50)" fg:x="827030" fg:w="3248"/><text x="53.9935%" y="527.50"></text></g><g><title>schedule (764 samples, 0.05%)</title><rect x="53.9049%" y="501" width="0.0496%" height="15" fill="rgb(205,180,2)" fg:x="829514" fg:w="764"/><text x="54.1549%" y="511.50"></text></g><g><title>__schedule (739 samples, 0.05%)</title><rect x="53.9065%" y="485" width="0.0480%" height="15" fill="rgb(216,34,7)" fg:x="829539" fg:w="739"/><text x="54.1565%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (3,546 samples, 0.23%)</title><rect x="53.7410%" y="533" width="0.2304%" height="15" fill="rgb(253,16,32)" fg:x="826991" fg:w="3546"/><text x="53.9910%" y="543.50"></text></g><g><title>btrfs_root_node (259 samples, 0.02%)</title><rect x="53.9546%" y="517" width="0.0168%" height="15" fill="rgb(208,97,28)" fg:x="830278" fg:w="259"/><text x="54.2046%" y="527.50"></text></g><g><title>balance_level (336 samples, 0.02%)</title><rect x="53.9748%" y="533" width="0.0218%" height="15" fill="rgb(225,92,11)" fg:x="830589" fg:w="336"/><text x="54.2248%" y="543.50"></text></g><g><title>_raw_write_lock (235 samples, 0.02%)</title><rect x="54.0293%" y="501" width="0.0153%" height="15" fill="rgb(243,38,12)" fg:x="831428" fg:w="235"/><text x="54.2793%" y="511.50"></text></g><g><title>finish_wait (688 samples, 0.04%)</title><rect x="54.0447%" y="501" width="0.0447%" height="15" fill="rgb(208,139,16)" fg:x="831666" fg:w="688"/><text x="54.2947%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (662 samples, 0.04%)</title><rect x="54.0464%" y="485" width="0.0430%" height="15" fill="rgb(227,24,9)" fg:x="831692" fg:w="662"/><text x="54.2964%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (621 samples, 0.04%)</title><rect x="54.0491%" y="469" width="0.0404%" height="15" fill="rgb(206,62,11)" fg:x="831733" fg:w="621"/><text x="54.2991%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,843 samples, 0.12%)</title><rect x="54.1001%" y="485" width="0.1198%" height="15" fill="rgb(228,134,27)" fg:x="832518" fg:w="1843"/><text x="54.3501%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,725 samples, 0.11%)</title><rect x="54.1078%" y="469" width="0.1121%" height="15" fill="rgb(205,55,33)" fg:x="832636" fg:w="1725"/><text x="54.3578%" y="479.50"></text></g><g><title>prepare_to_wait_event (2,030 samples, 0.13%)</title><rect x="54.0899%" y="501" width="0.1319%" height="15" fill="rgb(243,75,43)" fg:x="832361" fg:w="2030"/><text x="54.3399%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (415 samples, 0.03%)</title><rect x="54.2218%" y="501" width="0.0270%" height="15" fill="rgb(223,27,42)" fg:x="834391" fg:w="415"/><text x="54.4718%" y="511.50"></text></g><g><title>dequeue_entity (288 samples, 0.02%)</title><rect x="54.2620%" y="453" width="0.0187%" height="15" fill="rgb(232,189,33)" fg:x="835009" fg:w="288"/><text x="54.5120%" y="463.50"></text></g><g><title>dequeue_task_fair (330 samples, 0.02%)</title><rect x="54.2598%" y="469" width="0.0214%" height="15" fill="rgb(210,9,39)" fg:x="834975" fg:w="330"/><text x="54.5098%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (296 samples, 0.02%)</title><rect x="54.2847%" y="453" width="0.0192%" height="15" fill="rgb(242,85,26)" fg:x="835359" fg:w="296"/><text x="54.5347%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (286 samples, 0.02%)</title><rect x="54.2854%" y="437" width="0.0186%" height="15" fill="rgb(248,44,4)" fg:x="835369" fg:w="286"/><text x="54.5354%" y="447.50"></text></g><g><title>native_write_msr (282 samples, 0.02%)</title><rect x="54.2856%" y="421" width="0.0183%" height="15" fill="rgb(250,96,46)" fg:x="835373" fg:w="282"/><text x="54.5356%" y="431.50"></text></g><g><title>finish_task_switch (359 samples, 0.02%)</title><rect x="54.2812%" y="469" width="0.0233%" height="15" fill="rgb(229,116,26)" fg:x="835305" fg:w="359"/><text x="54.5312%" y="479.50"></text></g><g><title>psi_task_change (248 samples, 0.02%)</title><rect x="54.3115%" y="469" width="0.0161%" height="15" fill="rgb(246,94,34)" fg:x="835771" fg:w="248"/><text x="54.5615%" y="479.50"></text></g><g><title>psi_group_change (218 samples, 0.01%)</title><rect x="54.3135%" y="453" width="0.0142%" height="15" fill="rgb(251,73,21)" fg:x="835801" fg:w="218"/><text x="54.5635%" y="463.50"></text></g><g><title>__btrfs_tree_lock (5,022 samples, 0.33%)</title><rect x="54.0043%" y="517" width="0.3263%" height="15" fill="rgb(254,121,25)" fg:x="831043" fg:w="5022"/><text x="54.2543%" y="527.50"></text></g><g><title>schedule (1,259 samples, 0.08%)</title><rect x="54.2488%" y="501" width="0.0818%" height="15" fill="rgb(215,161,49)" fg:x="834806" fg:w="1259"/><text x="54.4988%" y="511.50"></text></g><g><title>__schedule (1,243 samples, 0.08%)</title><rect x="54.2498%" y="485" width="0.0808%" height="15" fill="rgb(221,43,13)" fg:x="834822" fg:w="1243"/><text x="54.4998%" y="495.50"></text></g><g><title>btrfs_lock_root_node (5,260 samples, 0.34%)</title><rect x="54.0026%" y="533" width="0.3418%" height="15" fill="rgb(249,5,37)" fg:x="831018" fg:w="5260"/><text x="54.2526%" y="543.50"></text></g><g><title>btrfs_root_node (213 samples, 0.01%)</title><rect x="54.3306%" y="517" width="0.0138%" height="15" fill="rgb(226,25,44)" fg:x="836065" fg:w="213"/><text x="54.5806%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (518 samples, 0.03%)</title><rect x="54.3445%" y="533" width="0.0337%" height="15" fill="rgb(238,189,16)" fg:x="836278" fg:w="518"/><text x="54.5945%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (184 samples, 0.01%)</title><rect x="54.3781%" y="533" width="0.0120%" height="15" fill="rgb(251,186,8)" fg:x="836796" fg:w="184"/><text x="54.6281%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (223 samples, 0.01%)</title><rect x="54.3993%" y="533" width="0.0145%" height="15" fill="rgb(254,34,31)" fg:x="837122" fg:w="223"/><text x="54.6493%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (871 samples, 0.06%)</title><rect x="54.4138%" y="533" width="0.0566%" height="15" fill="rgb(225,215,27)" fg:x="837345" fg:w="871"/><text x="54.6638%" y="543.50"></text></g><g><title>btrfs_get_64 (237 samples, 0.02%)</title><rect x="54.4939%" y="517" width="0.0154%" height="15" fill="rgb(221,192,48)" fg:x="838577" fg:w="237"/><text x="54.7439%" y="527.50"></text></g><g><title>__radix_tree_lookup (437 samples, 0.03%)</title><rect x="54.5299%" y="501" width="0.0284%" height="15" fill="rgb(219,137,20)" fg:x="839132" fg:w="437"/><text x="54.7799%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (345 samples, 0.02%)</title><rect x="54.5584%" y="501" width="0.0224%" height="15" fill="rgb(219,84,11)" fg:x="839570" fg:w="345"/><text x="54.8084%" y="511.50"></text></g><g><title>mark_page_accessed (235 samples, 0.02%)</title><rect x="54.5655%" y="485" width="0.0153%" height="15" fill="rgb(224,10,23)" fg:x="839680" fg:w="235"/><text x="54.8155%" y="495.50"></text></g><g><title>find_extent_buffer (974 samples, 0.06%)</title><rect x="54.5183%" y="517" width="0.0633%" height="15" fill="rgb(248,22,39)" fg:x="838953" fg:w="974"/><text x="54.7683%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (1,967 samples, 0.13%)</title><rect x="54.4704%" y="533" width="0.1278%" height="15" fill="rgb(212,154,20)" fg:x="838216" fg:w="1967"/><text x="54.7204%" y="543.50"></text></g><g><title>read_extent_buffer (256 samples, 0.02%)</title><rect x="54.5816%" y="517" width="0.0166%" height="15" fill="rgb(236,199,50)" fg:x="839927" fg:w="256"/><text x="54.8316%" y="527.50"></text></g><g><title>btrfs_lookup_dir_index_item (14,540 samples, 0.94%)</title><rect x="53.6791%" y="565" width="0.9449%" height="15" fill="rgb(211,9,17)" fg:x="826039" fg:w="14540"/><text x="53.9291%" y="575.50"></text></g><g><title>btrfs_search_slot (14,424 samples, 0.94%)</title><rect x="53.6866%" y="549" width="0.9373%" height="15" fill="rgb(243,216,36)" fg:x="826155" fg:w="14424"/><text x="53.9366%" y="559.50"></text></g><g><title>unlock_up (266 samples, 0.02%)</title><rect x="54.6067%" y="533" width="0.0173%" height="15" fill="rgb(250,2,10)" fg:x="840313" fg:w="266"/><text x="54.8567%" y="543.50"></text></g><g><title>_raw_read_lock (276 samples, 0.02%)</title><rect x="54.7251%" y="501" width="0.0179%" height="15" fill="rgb(226,50,48)" fg:x="842135" fg:w="276"/><text x="54.9751%" y="511.50"></text></g><g><title>finish_wait (1,159 samples, 0.08%)</title><rect x="54.7440%" y="501" width="0.0753%" height="15" fill="rgb(243,81,16)" fg:x="842426" fg:w="1159"/><text x="54.9940%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,098 samples, 0.07%)</title><rect x="54.7479%" y="485" width="0.0714%" height="15" fill="rgb(250,14,2)" fg:x="842487" fg:w="1098"/><text x="54.9979%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,041 samples, 0.07%)</title><rect x="54.7516%" y="469" width="0.0676%" height="15" fill="rgb(233,135,29)" fg:x="842544" fg:w="1041"/><text x="55.0016%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (3,108 samples, 0.20%)</title><rect x="54.8387%" y="485" width="0.2020%" height="15" fill="rgb(224,64,43)" fg:x="843884" fg:w="3108"/><text x="55.0887%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,929 samples, 0.19%)</title><rect x="54.8504%" y="469" width="0.1903%" height="15" fill="rgb(238,84,13)" fg:x="844063" fg:w="2929"/><text x="55.1004%" y="479.50"></text></g><g><title>prepare_to_wait_event (3,457 samples, 0.22%)</title><rect x="54.8197%" y="501" width="0.2246%" height="15" fill="rgb(253,48,26)" fg:x="843591" fg:w="3457"/><text x="55.0697%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (384 samples, 0.02%)</title><rect x="55.0443%" y="501" width="0.0250%" height="15" fill="rgb(205,223,31)" fg:x="847048" fg:w="384"/><text x="55.2943%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (169 samples, 0.01%)</title><rect x="55.0583%" y="485" width="0.0110%" height="15" fill="rgb(221,41,32)" fg:x="847263" fg:w="169"/><text x="55.3083%" y="495.50"></text></g><g><title>update_curr (226 samples, 0.01%)</title><rect x="55.1094%" y="437" width="0.0147%" height="15" fill="rgb(213,158,31)" fg:x="848049" fg:w="226"/><text x="55.3594%" y="447.50"></text></g><g><title>dequeue_entity (580 samples, 0.04%)</title><rect x="55.0977%" y="453" width="0.0377%" height="15" fill="rgb(245,126,43)" fg:x="847869" fg:w="580"/><text x="55.3477%" y="463.50"></text></g><g><title>update_load_avg (174 samples, 0.01%)</title><rect x="55.1241%" y="437" width="0.0113%" height="15" fill="rgb(227,7,22)" fg:x="848275" fg:w="174"/><text x="55.3741%" y="447.50"></text></g><g><title>dequeue_task_fair (706 samples, 0.05%)</title><rect x="55.0925%" y="469" width="0.0459%" height="15" fill="rgb(252,90,44)" fg:x="847790" fg:w="706"/><text x="55.3425%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (1,194 samples, 0.08%)</title><rect x="55.1462%" y="453" width="0.0776%" height="15" fill="rgb(253,91,0)" fg:x="848616" fg:w="1194"/><text x="55.3962%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,152 samples, 0.07%)</title><rect x="55.1490%" y="437" width="0.0749%" height="15" fill="rgb(252,175,49)" fg:x="848658" fg:w="1152"/><text x="55.3990%" y="447.50"></text></g><g><title>native_write_msr (1,136 samples, 0.07%)</title><rect x="55.1500%" y="421" width="0.0738%" height="15" fill="rgb(246,150,1)" fg:x="848674" fg:w="1136"/><text x="55.4000%" y="431.50"></text></g><g><title>finish_task_switch (1,365 samples, 0.09%)</title><rect x="55.1384%" y="469" width="0.0887%" height="15" fill="rgb(241,192,25)" fg:x="848496" fg:w="1365"/><text x="55.3884%" y="479.50"></text></g><g><title>psi_task_change (529 samples, 0.03%)</title><rect x="55.2424%" y="469" width="0.0344%" height="15" fill="rgb(239,187,11)" fg:x="850096" fg:w="529"/><text x="55.4924%" y="479.50"></text></g><g><title>psi_group_change (439 samples, 0.03%)</title><rect x="55.2482%" y="453" width="0.0285%" height="15" fill="rgb(218,202,51)" fg:x="850186" fg:w="439"/><text x="55.4982%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (8,991 samples, 0.58%)</title><rect x="54.7024%" y="517" width="0.5843%" height="15" fill="rgb(225,176,8)" fg:x="841787" fg:w="8991"/><text x="54.9524%" y="527.50"></text></g><g><title>schedule (3,346 samples, 0.22%)</title><rect x="55.0693%" y="501" width="0.2174%" height="15" fill="rgb(219,122,41)" fg:x="847432" fg:w="3346"/><text x="55.3193%" y="511.50"></text></g><g><title>__schedule (3,294 samples, 0.21%)</title><rect x="55.0727%" y="485" width="0.2141%" height="15" fill="rgb(248,140,20)" fg:x="847484" fg:w="3294"/><text x="55.3227%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (9,571 samples, 0.62%)</title><rect x="54.6987%" y="533" width="0.6220%" height="15" fill="rgb(245,41,37)" fg:x="841729" fg:w="9571"/><text x="54.9487%" y="543.50"></text></g><g><title>btrfs_root_node (521 samples, 0.03%)</title><rect x="55.2868%" y="517" width="0.0339%" height="15" fill="rgb(235,82,39)" fg:x="850779" fg:w="521"/><text x="55.5368%" y="527.50"></text></g><g><title>balance_level (397 samples, 0.03%)</title><rect x="55.3254%" y="533" width="0.0258%" height="15" fill="rgb(230,108,42)" fg:x="851374" fg:w="397"/><text x="55.5754%" y="543.50"></text></g><g><title>_raw_write_lock (199 samples, 0.01%)</title><rect x="55.3785%" y="501" width="0.0129%" height="15" fill="rgb(215,150,50)" fg:x="852191" fg:w="199"/><text x="55.6285%" y="511.50"></text></g><g><title>finish_wait (719 samples, 0.05%)</title><rect x="55.3917%" y="501" width="0.0467%" height="15" fill="rgb(233,212,5)" fg:x="852394" fg:w="719"/><text x="55.6417%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (689 samples, 0.04%)</title><rect x="55.3937%" y="485" width="0.0448%" height="15" fill="rgb(245,80,22)" fg:x="852424" fg:w="689"/><text x="55.6437%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (663 samples, 0.04%)</title><rect x="55.3954%" y="469" width="0.0431%" height="15" fill="rgb(238,129,16)" fg:x="852450" fg:w="663"/><text x="55.6454%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,767 samples, 0.11%)</title><rect x="55.4486%" y="485" width="0.1148%" height="15" fill="rgb(240,19,0)" fg:x="853269" fg:w="1767"/><text x="55.6986%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,670 samples, 0.11%)</title><rect x="55.4549%" y="469" width="0.1085%" height="15" fill="rgb(232,42,35)" fg:x="853366" fg:w="1670"/><text x="55.7049%" y="479.50"></text></g><g><title>prepare_to_wait_event (1,942 samples, 0.13%)</title><rect x="55.4388%" y="501" width="0.1262%" height="15" fill="rgb(223,130,24)" fg:x="853118" fg:w="1942"/><text x="55.6888%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (368 samples, 0.02%)</title><rect x="55.5650%" y="501" width="0.0239%" height="15" fill="rgb(237,16,22)" fg:x="855060" fg:w="368"/><text x="55.8150%" y="511.50"></text></g><g><title>dequeue_entity (256 samples, 0.02%)</title><rect x="55.6007%" y="453" width="0.0166%" height="15" fill="rgb(248,192,20)" fg:x="855609" fg:w="256"/><text x="55.8507%" y="463.50"></text></g><g><title>dequeue_task_fair (296 samples, 0.02%)</title><rect x="55.5988%" y="469" width="0.0192%" height="15" fill="rgb(233,167,2)" fg:x="855580" fg:w="296"/><text x="55.8488%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (382 samples, 0.02%)</title><rect x="55.6213%" y="453" width="0.0248%" height="15" fill="rgb(252,71,44)" fg:x="855926" fg:w="382"/><text x="55.8713%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (373 samples, 0.02%)</title><rect x="55.6218%" y="437" width="0.0242%" height="15" fill="rgb(238,37,47)" fg:x="855935" fg:w="373"/><text x="55.8718%" y="447.50"></text></g><g><title>native_write_msr (364 samples, 0.02%)</title><rect x="55.6224%" y="421" width="0.0237%" height="15" fill="rgb(214,202,54)" fg:x="855944" fg:w="364"/><text x="55.8724%" y="431.50"></text></g><g><title>finish_task_switch (450 samples, 0.03%)</title><rect x="55.6180%" y="469" width="0.0292%" height="15" fill="rgb(254,165,40)" fg:x="855876" fg:w="450"/><text x="55.8680%" y="479.50"></text></g><g><title>psi_task_change (239 samples, 0.02%)</title><rect x="55.6538%" y="469" width="0.0155%" height="15" fill="rgb(246,173,38)" fg:x="856427" fg:w="239"/><text x="55.9038%" y="479.50"></text></g><g><title>psi_group_change (196 samples, 0.01%)</title><rect x="55.6566%" y="453" width="0.0127%" height="15" fill="rgb(215,3,27)" fg:x="856470" fg:w="196"/><text x="55.9066%" y="463.50"></text></g><g><title>__btrfs_tree_lock (4,850 samples, 0.32%)</title><rect x="55.3577%" y="517" width="0.3152%" height="15" fill="rgb(239,169,51)" fg:x="851870" fg:w="4850"/><text x="55.6077%" y="527.50"></text></g><g><title>schedule (1,292 samples, 0.08%)</title><rect x="55.5889%" y="501" width="0.0840%" height="15" fill="rgb(212,5,25)" fg:x="855428" fg:w="1292"/><text x="55.8389%" y="511.50"></text></g><g><title>__schedule (1,249 samples, 0.08%)</title><rect x="55.5917%" y="485" width="0.0812%" height="15" fill="rgb(243,45,17)" fg:x="855471" fg:w="1249"/><text x="55.8417%" y="495.50"></text></g><g><title>btrfs_lock_root_node (5,088 samples, 0.33%)</title><rect x="55.3560%" y="533" width="0.3306%" height="15" fill="rgb(242,97,9)" fg:x="851844" fg:w="5088"/><text x="55.6060%" y="543.50"></text></g><g><title>btrfs_root_node (211 samples, 0.01%)</title><rect x="55.6729%" y="517" width="0.0137%" height="15" fill="rgb(228,71,31)" fg:x="856721" fg:w="211"/><text x="55.9229%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (585 samples, 0.04%)</title><rect x="55.6866%" y="533" width="0.0380%" height="15" fill="rgb(252,184,16)" fg:x="856932" fg:w="585"/><text x="55.9366%" y="543.50"></text></g><g><title>btrfs_set_lock_blocking_write (167 samples, 0.01%)</title><rect x="55.7138%" y="517" width="0.0109%" height="15" fill="rgb(236,169,46)" fg:x="857350" fg:w="167"/><text x="55.9638%" y="527.50"></text></g><g><title>btrfs_tree_read_unlock (217 samples, 0.01%)</title><rect x="55.7246%" y="533" width="0.0141%" height="15" fill="rgb(207,17,47)" fg:x="857517" fg:w="217"/><text x="55.9746%" y="543.50"></text></g><g><title>_raw_write_lock (193 samples, 0.01%)</title><rect x="55.7421%" y="517" width="0.0125%" height="15" fill="rgb(206,201,28)" fg:x="857785" fg:w="193"/><text x="55.9921%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (250 samples, 0.02%)</title><rect x="55.7387%" y="533" width="0.0162%" height="15" fill="rgb(224,184,23)" fg:x="857734" fg:w="250"/><text x="55.9887%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (257 samples, 0.02%)</title><rect x="55.7556%" y="533" width="0.0167%" height="15" fill="rgb(208,139,48)" fg:x="857993" fg:w="257"/><text x="56.0056%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (1,169 samples, 0.08%)</title><rect x="55.7723%" y="533" width="0.0760%" height="15" fill="rgb(208,130,10)" fg:x="858250" fg:w="1169"/><text x="56.0223%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (219 samples, 0.01%)</title><rect x="55.8627%" y="517" width="0.0142%" height="15" fill="rgb(211,213,45)" fg:x="859641" fg:w="219"/><text x="56.1127%" y="527.50"></text></g><g><title>verify_parent_transid (185 samples, 0.01%)</title><rect x="55.8649%" y="501" width="0.0120%" height="15" fill="rgb(235,100,30)" fg:x="859675" fg:w="185"/><text x="56.1149%" y="511.50"></text></g><g><title>btrfs_get_64 (219 samples, 0.01%)</title><rect x="55.8769%" y="517" width="0.0142%" height="15" fill="rgb(206,144,31)" fg:x="859860" fg:w="219"/><text x="56.1269%" y="527.50"></text></g><g><title>__radix_tree_lookup (657 samples, 0.04%)</title><rect x="55.9350%" y="501" width="0.0427%" height="15" fill="rgb(224,200,26)" fg:x="860754" fg:w="657"/><text x="56.1850%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (400 samples, 0.03%)</title><rect x="55.9778%" y="501" width="0.0260%" height="15" fill="rgb(247,104,53)" fg:x="861412" fg:w="400"/><text x="56.2278%" y="511.50"></text></g><g><title>mark_page_accessed (280 samples, 0.02%)</title><rect x="55.9856%" y="485" width="0.0182%" height="15" fill="rgb(220,14,17)" fg:x="861532" fg:w="280"/><text x="56.2356%" y="495.50"></text></g><g><title>find_extent_buffer (1,643 samples, 0.11%)</title><rect x="55.8980%" y="517" width="0.1068%" height="15" fill="rgb(230,140,40)" fg:x="860184" fg:w="1643"/><text x="56.1480%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (2,678 samples, 0.17%)</title><rect x="55.8482%" y="533" width="0.1740%" height="15" fill="rgb(229,2,41)" fg:x="859419" fg:w="2678"/><text x="56.0982%" y="543.50"></text></g><g><title>read_extent_buffer (270 samples, 0.02%)</title><rect x="56.0047%" y="517" width="0.0175%" height="15" fill="rgb(232,89,16)" fg:x="861827" fg:w="270"/><text x="56.2547%" y="527.50"></text></g><g><title>btrfs_search_slot (21,675 samples, 1.41%)</title><rect x="54.6391%" y="549" width="1.4085%" height="15" fill="rgb(247,59,52)" fg:x="840812" fg:w="21675"/><text x="54.8891%" y="559.50"></text></g><g><title>unlock_up (240 samples, 0.02%)</title><rect x="56.0320%" y="533" width="0.0156%" height="15" fill="rgb(226,110,21)" fg:x="862247" fg:w="240"/><text x="56.2820%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (22,242 samples, 1.45%)</title><rect x="54.6239%" y="565" width="1.4454%" height="15" fill="rgb(224,176,43)" fg:x="840579" fg:w="22242"/><text x="54.8739%" y="575.50"></text></g><g><title>crc32c (334 samples, 0.02%)</title><rect x="56.0476%" y="549" width="0.0217%" height="15" fill="rgb(221,73,6)" fg:x="862487" fg:w="334"/><text x="56.2976%" y="559.50"></text></g><g><title>crypto_shash_update (168 samples, 0.01%)</title><rect x="56.0584%" y="533" width="0.0109%" height="15" fill="rgb(232,78,19)" fg:x="862653" fg:w="168"/><text x="56.3084%" y="543.50"></text></g><g><title>select_task_rq_fair (424 samples, 0.03%)</title><rect x="56.2651%" y="485" width="0.0276%" height="15" fill="rgb(233,112,48)" fg:x="865834" fg:w="424"/><text x="56.5151%" y="495.50"></text></g><g><title>enqueue_entity (526 samples, 0.03%)</title><rect x="56.3043%" y="453" width="0.0342%" height="15" fill="rgb(243,131,47)" fg:x="866437" fg:w="526"/><text x="56.5543%" y="463.50"></text></g><g><title>update_load_avg (186 samples, 0.01%)</title><rect x="56.3264%" y="437" width="0.0121%" height="15" fill="rgb(226,51,1)" fg:x="866777" fg:w="186"/><text x="56.5764%" y="447.50"></text></g><g><title>enqueue_task_fair (681 samples, 0.04%)</title><rect x="56.2963%" y="469" width="0.0443%" height="15" fill="rgb(247,58,7)" fg:x="866314" fg:w="681"/><text x="56.5463%" y="479.50"></text></g><g><title>ttwu_do_activate (1,439 samples, 0.09%)</title><rect x="56.2935%" y="485" width="0.0935%" height="15" fill="rgb(209,7,32)" fg:x="866271" fg:w="1439"/><text x="56.5435%" y="495.50"></text></g><g><title>psi_task_change (710 samples, 0.05%)</title><rect x="56.3409%" y="469" width="0.0461%" height="15" fill="rgb(209,39,41)" fg:x="867000" fg:w="710"/><text x="56.5909%" y="479.50"></text></g><g><title>psi_group_change (632 samples, 0.04%)</title><rect x="56.3460%" y="453" width="0.0411%" height="15" fill="rgb(226,182,46)" fg:x="867078" fg:w="632"/><text x="56.5960%" y="463.50"></text></g><g><title>ttwu_queue_wakelist (168 samples, 0.01%)</title><rect x="56.3966%" y="485" width="0.0109%" height="15" fill="rgb(230,219,10)" fg:x="867858" fg:w="168"/><text x="56.6466%" y="495.50"></text></g><g><title>__wake_up_common (5,076 samples, 0.33%)</title><rect x="56.0858%" y="533" width="0.3299%" height="15" fill="rgb(227,175,30)" fg:x="863074" fg:w="5076"/><text x="56.3358%" y="543.50"></text></g><g><title>autoremove_wake_function (4,934 samples, 0.32%)</title><rect x="56.0950%" y="517" width="0.3206%" height="15" fill="rgb(217,2,50)" fg:x="863216" fg:w="4934"/><text x="56.3450%" y="527.50"></text></g><g><title>try_to_wake_up (4,846 samples, 0.31%)</title><rect x="56.1007%" y="501" width="0.3149%" height="15" fill="rgb(229,160,0)" fg:x="863304" fg:w="4846"/><text x="56.3507%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,831 samples, 0.12%)</title><rect x="56.4156%" y="533" width="0.1190%" height="15" fill="rgb(207,78,37)" fg:x="868150" fg:w="1831"/><text x="56.6656%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,767 samples, 0.11%)</title><rect x="56.4198%" y="517" width="0.1148%" height="15" fill="rgb(225,57,0)" fg:x="868214" fg:w="1767"/><text x="56.6698%" y="527.50"></text></g><g><title>__wake_up_common_lock (6,990 samples, 0.45%)</title><rect x="56.0836%" y="549" width="0.4542%" height="15" fill="rgb(232,154,2)" fg:x="863041" fg:w="6990"/><text x="56.3336%" y="559.50"></text></g><g><title>btrfs_tree_unlock (469 samples, 0.03%)</title><rect x="56.5380%" y="549" width="0.0305%" height="15" fill="rgb(241,212,25)" fg:x="870033" fg:w="469"/><text x="56.7880%" y="559.50"></text></g><g><title>free_extent_buffer.part.0 (343 samples, 0.02%)</title><rect x="56.5689%" y="549" width="0.0223%" height="15" fill="rgb(226,69,20)" fg:x="870509" fg:w="343"/><text x="56.8189%" y="559.50"></text></g><g><title>_raw_spin_lock (170 samples, 0.01%)</title><rect x="56.5802%" y="533" width="0.0110%" height="15" fill="rgb(247,184,54)" fg:x="870682" fg:w="170"/><text x="56.8302%" y="543.50"></text></g><g><title>btrfs_release_path (8,214 samples, 0.53%)</title><rect x="56.0693%" y="565" width="0.5338%" height="15" fill="rgb(210,145,0)" fg:x="862821" fg:w="8214"/><text x="56.3193%" y="575.50"></text></g><g><title>release_extent_buffer (183 samples, 0.01%)</title><rect x="56.5912%" y="549" width="0.0119%" height="15" fill="rgb(253,82,12)" fg:x="870852" fg:w="183"/><text x="56.8412%" y="559.50"></text></g><g><title>kmem_cache_alloc (404 samples, 0.03%)</title><rect x="56.6036%" y="565" width="0.0263%" height="15" fill="rgb(245,42,11)" fg:x="871043" fg:w="404"/><text x="56.8536%" y="575.50"></text></g><g><title>kmem_cache_free (477 samples, 0.03%)</title><rect x="56.6299%" y="565" width="0.0310%" height="15" fill="rgb(219,147,32)" fg:x="871447" fg:w="477"/><text x="56.8799%" y="575.50"></text></g><g><title>mutex_lock (509 samples, 0.03%)</title><rect x="56.6609%" y="565" width="0.0331%" height="15" fill="rgb(246,12,7)" fg:x="871924" fg:w="509"/><text x="56.9109%" y="575.50"></text></g><g><title>btrfs_del_dir_entries_in_log (55,348 samples, 3.60%)</title><rect x="53.1176%" y="581" width="3.5967%" height="15" fill="rgb(243,50,9)" fg:x="817399" fg:w="55348"/><text x="53.3676%" y="591.50">btrf..</text></g><g><title>mutex_unlock (314 samples, 0.02%)</title><rect x="56.6939%" y="565" width="0.0204%" height="15" fill="rgb(219,149,6)" fg:x="872433" fg:w="314"/><text x="56.9439%" y="575.50"></text></g><g><title>btrfs_get_32 (475 samples, 0.03%)</title><rect x="56.8690%" y="549" width="0.0309%" height="15" fill="rgb(241,51,42)" fg:x="875127" fg:w="475"/><text x="57.1190%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (1,077 samples, 0.07%)</title><rect x="57.3502%" y="533" width="0.0700%" height="15" fill="rgb(226,128,27)" fg:x="882532" fg:w="1077"/><text x="57.6002%" y="543.50"></text></g><g><title>btrfs_get_token_32 (8,009 samples, 0.52%)</title><rect x="56.8999%" y="549" width="0.5205%" height="15" fill="rgb(244,144,4)" fg:x="875602" fg:w="8009"/><text x="57.1499%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (533 samples, 0.03%)</title><rect x="57.4203%" y="549" width="0.0346%" height="15" fill="rgb(221,4,13)" fg:x="883611" fg:w="533"/><text x="57.6703%" y="559.50"></text></g><g><title>set_extent_buffer_dirty (218 samples, 0.01%)</title><rect x="57.4408%" y="533" width="0.0142%" height="15" fill="rgb(208,170,28)" fg:x="883926" fg:w="218"/><text x="57.6908%" y="543.50"></text></g><g><title>btrfs_set_token_32 (5,503 samples, 0.36%)</title><rect x="57.4550%" y="549" width="0.3576%" height="15" fill="rgb(226,131,13)" fg:x="884144" fg:w="5503"/><text x="57.7050%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (828 samples, 0.05%)</title><rect x="57.7588%" y="533" width="0.0538%" height="15" fill="rgb(215,72,41)" fg:x="888819" fg:w="828"/><text x="58.0088%" y="543.50"></text></g><g><title>leaf_space_used (429 samples, 0.03%)</title><rect x="57.8126%" y="549" width="0.0279%" height="15" fill="rgb(243,108,20)" fg:x="889648" fg:w="429"/><text x="58.0626%" y="559.50"></text></g><g><title>btrfs_get_32 (324 samples, 0.02%)</title><rect x="57.8195%" y="533" width="0.0211%" height="15" fill="rgb(230,189,17)" fg:x="889753" fg:w="324"/><text x="58.0695%" y="543.50"></text></g><g><title>memcpy_extent_buffer (1,015 samples, 0.07%)</title><rect x="57.8405%" y="549" width="0.0660%" height="15" fill="rgb(220,50,17)" fg:x="890077" fg:w="1015"/><text x="58.0905%" y="559.50"></text></g><g><title>memmove (772 samples, 0.05%)</title><rect x="57.8563%" y="533" width="0.0502%" height="15" fill="rgb(248,152,48)" fg:x="890320" fg:w="772"/><text x="58.1063%" y="543.50"></text></g><g><title>copy_pages (948 samples, 0.06%)</title><rect x="57.9345%" y="533" width="0.0616%" height="15" fill="rgb(244,91,11)" fg:x="891524" fg:w="948"/><text x="58.1845%" y="543.50"></text></g><g><title>memmove (7,313 samples, 0.48%)</title><rect x="57.9961%" y="533" width="0.4752%" height="15" fill="rgb(220,157,5)" fg:x="892472" fg:w="7313"/><text x="58.2461%" y="543.50"></text></g><g><title>btrfs_del_items (26,658 samples, 1.73%)</title><rect x="56.7391%" y="565" width="1.7323%" height="15" fill="rgb(253,137,8)" fg:x="873128" fg:w="26658"/><text x="56.9891%" y="575.50"></text></g><g><title>memmove_extent_buffer (8,694 samples, 0.56%)</title><rect x="57.9065%" y="549" width="0.5650%" height="15" fill="rgb(217,137,51)" fg:x="891092" fg:w="8694"/><text x="58.1565%" y="559.50"></text></g><g><title>btrfs_get_16 (780 samples, 0.05%)</title><rect x="58.4874%" y="549" width="0.0507%" height="15" fill="rgb(218,209,53)" fg:x="900031" fg:w="780"/><text x="58.7374%" y="559.50"></text></g><g><title>btrfs_get_32 (316 samples, 0.02%)</title><rect x="58.5380%" y="549" width="0.0205%" height="15" fill="rgb(249,137,25)" fg:x="900811" fg:w="316"/><text x="58.7880%" y="559.50"></text></g><g><title>btrfs_find_name_in_backref (1,707 samples, 0.11%)</title><rect x="58.4714%" y="565" width="0.1109%" height="15" fill="rgb(239,155,26)" fg:x="899786" fg:w="1707"/><text x="58.7214%" y="575.50"></text></g><g><title>memcmp_extent_buffer (366 samples, 0.02%)</title><rect x="58.5586%" y="549" width="0.0238%" height="15" fill="rgb(227,85,46)" fg:x="901127" fg:w="366"/><text x="58.8086%" y="559.50"></text></g><g><title>memcmp (233 samples, 0.02%)</title><rect x="58.5672%" y="533" width="0.0151%" height="15" fill="rgb(251,107,43)" fg:x="901260" fg:w="233"/><text x="58.8172%" y="543.50"></text></g><g><title>_raw_spin_lock (402 samples, 0.03%)</title><rect x="58.6494%" y="517" width="0.0261%" height="15" fill="rgb(234,170,33)" fg:x="902525" fg:w="402"/><text x="58.8994%" y="527.50"></text></g><g><title>free_extent_buffer.part.0 (1,052 samples, 0.07%)</title><rect x="58.6073%" y="533" width="0.0684%" height="15" fill="rgb(206,29,35)" fg:x="901876" fg:w="1052"/><text x="58.8573%" y="543.50"></text></g><g><title>btrfs_free_path (1,762 samples, 0.11%)</title><rect x="58.5824%" y="565" width="0.1145%" height="15" fill="rgb(227,138,25)" fg:x="901493" fg:w="1762"/><text x="58.8324%" y="575.50"></text></g><g><title>btrfs_release_path (1,743 samples, 0.11%)</title><rect x="58.5836%" y="549" width="0.1133%" height="15" fill="rgb(249,131,35)" fg:x="901512" fg:w="1743"/><text x="58.8336%" y="559.50"></text></g><g><title>release_extent_buffer (327 samples, 0.02%)</title><rect x="58.6756%" y="533" width="0.0212%" height="15" fill="rgb(239,6,40)" fg:x="902928" fg:w="327"/><text x="58.9256%" y="543.50"></text></g><g><title>btrfs_get_64 (184 samples, 0.01%)</title><rect x="58.7051%" y="565" width="0.0120%" height="15" fill="rgb(246,136,47)" fg:x="903381" fg:w="184"/><text x="58.9551%" y="575.50"></text></g><g><title>_raw_read_lock (396 samples, 0.03%)</title><rect x="58.8582%" y="517" width="0.0257%" height="15" fill="rgb(253,58,26)" fg:x="905738" fg:w="396"/><text x="59.1082%" y="527.50"></text></g><g><title>finish_wait (1,807 samples, 0.12%)</title><rect x="58.8857%" y="517" width="0.1174%" height="15" fill="rgb(237,141,10)" fg:x="906161" fg:w="1807"/><text x="59.1357%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (1,724 samples, 0.11%)</title><rect x="58.8911%" y="501" width="0.1120%" height="15" fill="rgb(234,156,12)" fg:x="906244" fg:w="1724"/><text x="59.1411%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,648 samples, 0.11%)</title><rect x="58.8960%" y="485" width="0.1071%" height="15" fill="rgb(243,224,36)" fg:x="906320" fg:w="1648"/><text x="59.1460%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (5,857 samples, 0.38%)</title><rect x="59.0349%" y="501" width="0.3806%" height="15" fill="rgb(205,229,51)" fg:x="908457" fg:w="5857"/><text x="59.2849%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,604 samples, 0.36%)</title><rect x="59.0514%" y="485" width="0.3642%" height="15" fill="rgb(223,189,4)" fg:x="908710" fg:w="5604"/><text x="59.3014%" y="495.50"></text></g><g><title>prepare_to_wait_event (6,469 samples, 0.42%)</title><rect x="59.0043%" y="517" width="0.4204%" height="15" fill="rgb(249,167,54)" fg:x="907986" fg:w="6469"/><text x="59.2543%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (7,198 samples, 0.47%)</title><rect x="59.4247%" y="517" width="0.4678%" height="15" fill="rgb(218,34,28)" fg:x="914455" fg:w="7198"/><text x="59.6747%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,978 samples, 0.32%)</title><rect x="59.5689%" y="501" width="0.3235%" height="15" fill="rgb(232,109,42)" fg:x="916675" fg:w="4978"/><text x="59.8189%" y="511.50"></text></g><g><title>__perf_event_task_sched_out (188 samples, 0.01%)</title><rect x="59.9139%" y="485" width="0.0122%" height="15" fill="rgb(248,214,46)" fg:x="921983" fg:w="188"/><text x="60.1639%" y="495.50"></text></g><g><title>update_curr (306 samples, 0.02%)</title><rect x="59.9535%" y="453" width="0.0199%" height="15" fill="rgb(244,216,40)" fg:x="922593" fg:w="306"/><text x="60.2035%" y="463.50"></text></g><g><title>dequeue_entity (829 samples, 0.05%)</title><rect x="59.9370%" y="469" width="0.0539%" height="15" fill="rgb(231,226,31)" fg:x="922339" fg:w="829"/><text x="60.1870%" y="479.50"></text></g><g><title>update_load_avg (269 samples, 0.02%)</title><rect x="59.9734%" y="453" width="0.0175%" height="15" fill="rgb(238,38,43)" fg:x="922899" fg:w="269"/><text x="60.2234%" y="463.50"></text></g><g><title>dequeue_task_fair (1,020 samples, 0.07%)</title><rect x="59.9296%" y="485" width="0.0663%" height="15" fill="rgb(208,88,43)" fg:x="922225" fg:w="1020"/><text x="60.1796%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (4,988 samples, 0.32%)</title><rect x="60.0164%" y="469" width="0.3241%" height="15" fill="rgb(205,136,37)" fg:x="923561" fg:w="4988"/><text x="60.2664%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,833 samples, 0.31%)</title><rect x="60.0265%" y="453" width="0.3141%" height="15" fill="rgb(237,34,14)" fg:x="923716" fg:w="4833"/><text x="60.2765%" y="463.50"></text></g><g><title>native_write_msr (4,770 samples, 0.31%)</title><rect x="60.0306%" y="437" width="0.3100%" height="15" fill="rgb(236,193,44)" fg:x="923779" fg:w="4770"/><text x="60.2806%" y="447.50"></text></g><g><title>finish_task_switch (5,474 samples, 0.36%)</title><rect x="59.9959%" y="485" width="0.3557%" height="15" fill="rgb(231,48,10)" fg:x="923245" fg:w="5474"/><text x="60.2459%" y="495.50"></text></g><g><title>pick_next_task_fair (249 samples, 0.02%)</title><rect x="60.3516%" y="485" width="0.0162%" height="15" fill="rgb(213,141,34)" fg:x="928719" fg:w="249"/><text x="60.6016%" y="495.50"></text></g><g><title>pick_next_task_idle (185 samples, 0.01%)</title><rect x="60.3678%" y="485" width="0.0120%" height="15" fill="rgb(249,130,34)" fg:x="928968" fg:w="185"/><text x="60.6178%" y="495.50"></text></g><g><title>psi_task_change (767 samples, 0.05%)</title><rect x="60.3798%" y="485" width="0.0498%" height="15" fill="rgb(219,42,41)" fg:x="929153" fg:w="767"/><text x="60.6298%" y="495.50"></text></g><g><title>psi_group_change (660 samples, 0.04%)</title><rect x="60.3868%" y="469" width="0.0429%" height="15" fill="rgb(224,100,54)" fg:x="929260" fg:w="660"/><text x="60.6368%" y="479.50"></text></g><g><title>record_times (161 samples, 0.01%)</title><rect x="60.4192%" y="453" width="0.0105%" height="15" fill="rgb(229,200,27)" fg:x="929759" fg:w="161"/><text x="60.6692%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (24,888 samples, 1.62%)</title><rect x="58.8290%" y="533" width="1.6173%" height="15" fill="rgb(217,118,10)" fg:x="905288" fg:w="24888"/><text x="59.0790%" y="543.50"></text></g><g><title>schedule (8,523 samples, 0.55%)</title><rect x="59.8924%" y="517" width="0.5539%" height="15" fill="rgb(206,22,3)" fg:x="921653" fg:w="8523"/><text x="60.1424%" y="527.50"></text></g><g><title>__schedule (8,435 samples, 0.55%)</title><rect x="59.8982%" y="501" width="0.5481%" height="15" fill="rgb(232,163,46)" fg:x="921741" fg:w="8435"/><text x="60.1482%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (25,501 samples, 1.66%)</title><rect x="58.8227%" y="549" width="1.6571%" height="15" fill="rgb(206,95,13)" fg:x="905192" fg:w="25501"/><text x="59.0727%" y="559.50"></text></g><g><title>btrfs_root_node (513 samples, 0.03%)</title><rect x="60.4466%" y="533" width="0.0333%" height="15" fill="rgb(253,154,18)" fg:x="930180" fg:w="513"/><text x="60.6966%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (168 samples, 0.01%)</title><rect x="60.4844%" y="485" width="0.0109%" height="15" fill="rgb(219,32,23)" fg:x="930763" fg:w="168"/><text x="60.7344%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (166 samples, 0.01%)</title><rect x="60.4846%" y="469" width="0.0108%" height="15" fill="rgb(230,191,45)" fg:x="930765" fg:w="166"/><text x="60.7346%" y="479.50"></text></g><g><title>native_write_msr (166 samples, 0.01%)</title><rect x="60.4846%" y="453" width="0.0108%" height="15" fill="rgb(229,64,36)" fg:x="930765" fg:w="166"/><text x="60.7346%" y="463.50"></text></g><g><title>finish_task_switch (185 samples, 0.01%)</title><rect x="60.4841%" y="501" width="0.0120%" height="15" fill="rgb(205,129,25)" fg:x="930757" fg:w="185"/><text x="60.7341%" y="511.50"></text></g><g><title>__btrfs_tree_lock (274 samples, 0.02%)</title><rect x="60.4799%" y="549" width="0.0178%" height="15" fill="rgb(254,112,7)" fg:x="930693" fg:w="274"/><text x="60.7299%" y="559.50"></text></g><g><title>schedule (258 samples, 0.02%)</title><rect x="60.4809%" y="533" width="0.0168%" height="15" fill="rgb(226,53,48)" fg:x="930709" fg:w="258"/><text x="60.7309%" y="543.50"></text></g><g><title>__schedule (255 samples, 0.02%)</title><rect x="60.4811%" y="517" width="0.0166%" height="15" fill="rgb(214,153,38)" fg:x="930712" fg:w="255"/><text x="60.7311%" y="527.50"></text></g><g><title>btrfs_alloc_from_cluster (183 samples, 0.01%)</title><rect x="60.5341%" y="453" width="0.0119%" height="15" fill="rgb(243,101,7)" fg:x="931527" fg:w="183"/><text x="60.7841%" y="463.50"></text></g><g><title>btrfs_reserve_extent (309 samples, 0.02%)</title><rect x="60.5268%" y="485" width="0.0201%" height="15" fill="rgb(240,140,22)" fg:x="931415" fg:w="309"/><text x="60.7768%" y="495.50"></text></g><g><title>find_free_extent (284 samples, 0.02%)</title><rect x="60.5284%" y="469" width="0.0185%" height="15" fill="rgb(235,114,2)" fg:x="931440" fg:w="284"/><text x="60.7784%" y="479.50"></text></g><g><title>alloc_tree_block_no_bg_flush (726 samples, 0.05%)</title><rect x="60.5085%" y="517" width="0.0472%" height="15" fill="rgb(242,59,12)" fg:x="931134" fg:w="726"/><text x="60.7585%" y="527.50"></text></g><g><title>btrfs_alloc_tree_block (726 samples, 0.05%)</title><rect x="60.5085%" y="501" width="0.0472%" height="15" fill="rgb(252,134,9)" fg:x="931134" fg:w="726"/><text x="60.7585%" y="511.50"></text></g><g><title>btrfs_free_tree_block (195 samples, 0.01%)</title><rect x="60.5557%" y="517" width="0.0127%" height="15" fill="rgb(236,4,44)" fg:x="931860" fg:w="195"/><text x="60.8057%" y="527.50"></text></g><g><title>copy_extent_buffer_full (173 samples, 0.01%)</title><rect x="60.5786%" y="517" width="0.0112%" height="15" fill="rgb(254,172,41)" fg:x="932212" fg:w="173"/><text x="60.8286%" y="527.50"></text></g><g><title>copy_page (167 samples, 0.01%)</title><rect x="60.5790%" y="501" width="0.0109%" height="15" fill="rgb(244,63,20)" fg:x="932218" fg:w="167"/><text x="60.8290%" y="511.50"></text></g><g><title>__btrfs_cow_block (1,361 samples, 0.09%)</title><rect x="60.5071%" y="533" width="0.0884%" height="15" fill="rgb(250,73,31)" fg:x="931112" fg:w="1361"/><text x="60.7571%" y="543.50"></text></g><g><title>btrfs_cow_block (1,373 samples, 0.09%)</title><rect x="60.5067%" y="549" width="0.0892%" height="15" fill="rgb(241,38,36)" fg:x="931106" fg:w="1373"/><text x="60.7567%" y="559.50"></text></g><g><title>__schedule (170 samples, 0.01%)</title><rect x="60.6343%" y="501" width="0.0110%" height="15" fill="rgb(245,211,2)" fg:x="933069" fg:w="170"/><text x="60.8843%" y="511.50"></text></g><g><title>_cond_resched (232 samples, 0.02%)</title><rect x="60.6314%" y="517" width="0.0151%" height="15" fill="rgb(206,120,28)" fg:x="933024" fg:w="232"/><text x="60.8814%" y="527.50"></text></g><g><title>_raw_write_lock (356 samples, 0.02%)</title><rect x="60.6477%" y="517" width="0.0231%" height="15" fill="rgb(211,59,34)" fg:x="933275" fg:w="356"/><text x="60.8977%" y="527.50"></text></g><g><title>finish_wait (1,234 samples, 0.08%)</title><rect x="60.6709%" y="517" width="0.0802%" height="15" fill="rgb(233,168,5)" fg:x="933632" fg:w="1234"/><text x="60.9209%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (1,164 samples, 0.08%)</title><rect x="60.6754%" y="501" width="0.0756%" height="15" fill="rgb(234,33,13)" fg:x="933702" fg:w="1164"/><text x="60.9254%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,087 samples, 0.07%)</title><rect x="60.6804%" y="485" width="0.0706%" height="15" fill="rgb(231,150,26)" fg:x="933779" fg:w="1087"/><text x="60.9304%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (3,647 samples, 0.24%)</title><rect x="60.7782%" y="501" width="0.2370%" height="15" fill="rgb(217,191,4)" fg:x="935284" fg:w="3647"/><text x="61.0282%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,417 samples, 0.22%)</title><rect x="60.7932%" y="485" width="0.2220%" height="15" fill="rgb(246,198,38)" fg:x="935514" fg:w="3417"/><text x="61.0432%" y="495.50"></text></g><g><title>prepare_to_wait_event (4,141 samples, 0.27%)</title><rect x="60.7522%" y="517" width="0.2691%" height="15" fill="rgb(245,64,37)" fg:x="934883" fg:w="4141"/><text x="61.0022%" y="527.50"></text></g><g><title>queued_write_lock_slowpath (9,439 samples, 0.61%)</title><rect x="61.0213%" y="517" width="0.6134%" height="15" fill="rgb(250,30,36)" fg:x="939024" fg:w="9439"/><text x="61.2713%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,647 samples, 0.24%)</title><rect x="61.3977%" y="501" width="0.2370%" height="15" fill="rgb(217,86,53)" fg:x="944816" fg:w="3647"/><text x="61.6477%" y="511.50"></text></g><g><title>__perf_event_task_sched_out (164 samples, 0.01%)</title><rect x="61.6552%" y="485" width="0.0107%" height="15" fill="rgb(228,157,16)" fg:x="948779" fg:w="164"/><text x="61.9052%" y="495.50"></text></g><g><title>update_curr (279 samples, 0.02%)</title><rect x="61.6944%" y="453" width="0.0181%" height="15" fill="rgb(217,59,31)" fg:x="949383" fg:w="279"/><text x="61.9444%" y="463.50"></text></g><g><title>dequeue_entity (812 samples, 0.05%)</title><rect x="61.6764%" y="469" width="0.0528%" height="15" fill="rgb(237,138,41)" fg:x="949106" fg:w="812"/><text x="61.9264%" y="479.50"></text></g><g><title>update_load_avg (256 samples, 0.02%)</title><rect x="61.7126%" y="453" width="0.0166%" height="15" fill="rgb(227,91,49)" fg:x="949662" fg:w="256"/><text x="61.9626%" y="463.50"></text></g><g><title>dequeue_task_fair (999 samples, 0.06%)</title><rect x="61.6697%" y="485" width="0.0649%" height="15" fill="rgb(247,21,44)" fg:x="949002" fg:w="999"/><text x="61.9197%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (6,089 samples, 0.40%)</title><rect x="61.7538%" y="469" width="0.3957%" height="15" fill="rgb(219,210,51)" fg:x="950297" fg:w="6089"/><text x="62.0038%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,915 samples, 0.38%)</title><rect x="61.7651%" y="453" width="0.3844%" height="15" fill="rgb(209,140,6)" fg:x="950471" fg:w="5915"/><text x="62.0151%" y="463.50"></text></g><g><title>native_write_msr (5,820 samples, 0.38%)</title><rect x="61.7713%" y="437" width="0.3782%" height="15" fill="rgb(221,188,24)" fg:x="950566" fg:w="5820"/><text x="62.0213%" y="447.50"></text></g><g><title>finish_task_switch (6,602 samples, 0.43%)</title><rect x="61.7346%" y="485" width="0.4290%" height="15" fill="rgb(232,154,20)" fg:x="950001" fg:w="6602"/><text x="61.9846%" y="495.50"></text></g><g><title>pick_next_task_fair (202 samples, 0.01%)</title><rect x="62.1637%" y="485" width="0.0131%" height="15" fill="rgb(244,137,50)" fg:x="956605" fg:w="202"/><text x="62.4137%" y="495.50"></text></g><g><title>pick_next_task_idle (202 samples, 0.01%)</title><rect x="62.1769%" y="485" width="0.0131%" height="15" fill="rgb(225,185,43)" fg:x="956807" fg:w="202"/><text x="62.4269%" y="495.50"></text></g><g><title>__update_idle_core (176 samples, 0.01%)</title><rect x="62.1786%" y="469" width="0.0114%" height="15" fill="rgb(213,205,38)" fg:x="956833" fg:w="176"/><text x="62.4286%" y="479.50"></text></g><g><title>psi_task_change (829 samples, 0.05%)</title><rect x="62.1900%" y="485" width="0.0539%" height="15" fill="rgb(236,73,12)" fg:x="957009" fg:w="829"/><text x="62.4400%" y="495.50"></text></g><g><title>psi_group_change (716 samples, 0.05%)</title><rect x="62.1973%" y="469" width="0.0465%" height="15" fill="rgb(235,219,13)" fg:x="957122" fg:w="716"/><text x="62.4473%" y="479.50"></text></g><g><title>record_times (183 samples, 0.01%)</title><rect x="62.2320%" y="453" width="0.0119%" height="15" fill="rgb(218,59,36)" fg:x="957655" fg:w="183"/><text x="62.4820%" y="463.50"></text></g><g><title>__btrfs_tree_lock (25,568 samples, 1.66%)</title><rect x="60.5982%" y="533" width="1.6615%" height="15" fill="rgb(205,110,39)" fg:x="932514" fg:w="25568"/><text x="60.8482%" y="543.50"></text></g><g><title>schedule (9,618 samples, 0.63%)</title><rect x="61.6347%" y="517" width="0.6250%" height="15" fill="rgb(218,206,42)" fg:x="948464" fg:w="9618"/><text x="61.8847%" y="527.50"></text></g><g><title>__schedule (9,563 samples, 0.62%)</title><rect x="61.6383%" y="501" width="0.6214%" height="15" fill="rgb(248,125,24)" fg:x="948519" fg:w="9563"/><text x="61.8883%" y="511.50"></text></g><g><title>btrfs_lock_root_node (25,941 samples, 1.69%)</title><rect x="60.5960%" y="549" width="1.6857%" height="15" fill="rgb(242,28,27)" fg:x="932479" fg:w="25941"/><text x="60.8460%" y="559.50"></text></g><g><title>btrfs_root_node (338 samples, 0.02%)</title><rect x="62.2597%" y="533" width="0.0220%" height="15" fill="rgb(216,228,15)" fg:x="958082" fg:w="338"/><text x="62.5097%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (321 samples, 0.02%)</title><rect x="62.2825%" y="549" width="0.0209%" height="15" fill="rgb(235,116,46)" fg:x="958432" fg:w="321"/><text x="62.5325%" y="559.50"></text></g><g><title>_raw_write_lock (328 samples, 0.02%)</title><rect x="62.3089%" y="533" width="0.0213%" height="15" fill="rgb(224,18,32)" fg:x="958839" fg:w="328"/><text x="62.5589%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (3,018 samples, 0.20%)</title><rect x="62.3033%" y="549" width="0.1961%" height="15" fill="rgb(252,5,12)" fg:x="958753" fg:w="3018"/><text x="62.5533%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (2,604 samples, 0.17%)</title><rect x="62.3302%" y="533" width="0.1692%" height="15" fill="rgb(251,36,5)" fg:x="959167" fg:w="2604"/><text x="62.5802%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (352 samples, 0.02%)</title><rect x="62.5000%" y="549" width="0.0229%" height="15" fill="rgb(217,53,14)" fg:x="961779" fg:w="352"/><text x="62.7500%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (4,647 samples, 0.30%)</title><rect x="62.5228%" y="549" width="0.3020%" height="15" fill="rgb(215,86,45)" fg:x="962131" fg:w="4647"/><text x="62.7728%" y="559.50"></text></g><g><title>btrfs_buffer_uptodate (734 samples, 0.05%)</title><rect x="62.8554%" y="533" width="0.0477%" height="15" fill="rgb(242,169,11)" fg:x="967249" fg:w="734"/><text x="63.1054%" y="543.50"></text></g><g><title>verify_parent_transid (667 samples, 0.04%)</title><rect x="62.8598%" y="517" width="0.0433%" height="15" fill="rgb(211,213,45)" fg:x="967316" fg:w="667"/><text x="63.1098%" y="527.50"></text></g><g><title>btrfs_get_64 (630 samples, 0.04%)</title><rect x="62.9031%" y="533" width="0.0409%" height="15" fill="rgb(205,88,11)" fg:x="967983" fg:w="630"/><text x="63.1531%" y="543.50"></text></g><g><title>check_setget_bounds.isra.0 (188 samples, 0.01%)</title><rect x="62.9319%" y="517" width="0.0122%" height="15" fill="rgb(252,69,26)" fg:x="968425" fg:w="188"/><text x="63.1819%" y="527.50"></text></g><g><title>btrfs_verify_level_key (162 samples, 0.01%)</title><rect x="62.9477%" y="533" width="0.0105%" height="15" fill="rgb(246,123,37)" fg:x="968669" fg:w="162"/><text x="63.1977%" y="543.50"></text></g><g><title>__radix_tree_lookup (2,117 samples, 0.14%)</title><rect x="63.0476%" y="517" width="0.1376%" height="15" fill="rgb(212,205,5)" fg:x="970206" fg:w="2117"/><text x="63.2976%" y="527.50"></text></g><g><title>mark_extent_buffer_accessed (1,237 samples, 0.08%)</title><rect x="63.1856%" y="517" width="0.0804%" height="15" fill="rgb(253,148,0)" fg:x="972329" fg:w="1237"/><text x="63.4356%" y="527.50"></text></g><g><title>mark_page_accessed (991 samples, 0.06%)</title><rect x="63.2015%" y="501" width="0.0644%" height="15" fill="rgb(239,22,4)" fg:x="972575" fg:w="991"/><text x="63.4515%" y="511.50"></text></g><g><title>find_extent_buffer (4,772 samples, 0.31%)</title><rect x="62.9582%" y="533" width="0.3101%" height="15" fill="rgb(226,26,53)" fg:x="968831" fg:w="4772"/><text x="63.2082%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (7,456 samples, 0.48%)</title><rect x="62.8248%" y="549" width="0.4845%" height="15" fill="rgb(225,229,45)" fg:x="966778" fg:w="7456"/><text x="63.0748%" y="559.50"></text></g><g><title>read_extent_buffer (631 samples, 0.04%)</title><rect x="63.2683%" y="533" width="0.0410%" height="15" fill="rgb(220,60,37)" fg:x="973603" fg:w="631"/><text x="63.5183%" y="543.50"></text></g><g><title>__wake_up_common (298 samples, 0.02%)</title><rect x="63.3544%" y="517" width="0.0194%" height="15" fill="rgb(217,180,35)" fg:x="974927" fg:w="298"/><text x="63.6044%" y="527.50"></text></g><g><title>autoremove_wake_function (295 samples, 0.02%)</title><rect x="63.3546%" y="501" width="0.0192%" height="15" fill="rgb(229,7,53)" fg:x="974930" fg:w="295"/><text x="63.6046%" y="511.50"></text></g><g><title>try_to_wake_up (286 samples, 0.02%)</title><rect x="63.3552%" y="485" width="0.0186%" height="15" fill="rgb(254,137,3)" fg:x="974939" fg:w="286"/><text x="63.6052%" y="495.50"></text></g><g><title>__wake_up_common_lock (304 samples, 0.02%)</title><rect x="63.3544%" y="533" width="0.0198%" height="15" fill="rgb(215,140,41)" fg:x="974927" fg:w="304"/><text x="63.6044%" y="543.50"></text></g><g><title>btrfs_search_slot (71,850 samples, 4.67%)</title><rect x="58.7170%" y="565" width="4.6691%" height="15" fill="rgb(250,80,15)" fg:x="903565" fg:w="71850"/><text x="58.9670%" y="575.50">btrfs..</text></g><g><title>unlock_up (1,173 samples, 0.08%)</title><rect x="63.3099%" y="549" width="0.0762%" height="15" fill="rgb(252,191,6)" fg:x="974242" fg:w="1173"/><text x="63.5599%" y="559.50"></text></g><g><title>btrfs_tree_unlock (183 samples, 0.01%)</title><rect x="63.3742%" y="533" width="0.0119%" height="15" fill="rgb(246,217,18)" fg:x="975232" fg:w="183"/><text x="63.6242%" y="543.50"></text></g><g><title>pick_next_task_fair (171 samples, 0.01%)</title><rect x="63.4459%" y="501" width="0.0111%" height="15" fill="rgb(223,93,7)" fg:x="976336" fg:w="171"/><text x="63.6959%" y="511.50"></text></g><g><title>__schedule (470 samples, 0.03%)</title><rect x="63.4317%" y="517" width="0.0305%" height="15" fill="rgb(225,55,52)" fg:x="976117" fg:w="470"/><text x="63.6817%" y="527.50"></text></g><g><title>_cond_resched (559 samples, 0.04%)</title><rect x="63.4287%" y="533" width="0.0363%" height="15" fill="rgb(240,31,24)" fg:x="976070" fg:w="559"/><text x="63.6787%" y="543.50"></text></g><g><title>kmem_cache_alloc (1,215 samples, 0.08%)</title><rect x="63.3864%" y="565" width="0.0790%" height="15" fill="rgb(205,56,52)" fg:x="975420" fg:w="1215"/><text x="63.6364%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (693 samples, 0.05%)</title><rect x="63.4203%" y="549" width="0.0450%" height="15" fill="rgb(246,146,12)" fg:x="975942" fg:w="693"/><text x="63.6703%" y="559.50"></text></g><g><title>btrfs_del_inode_ref (104,466 samples, 6.79%)</title><rect x="56.7143%" y="581" width="6.7886%" height="15" fill="rgb(239,84,36)" fg:x="872747" fg:w="104466"/><text x="56.9643%" y="591.50">btrfs_del..</text></g><g><title>kmem_cache_free (578 samples, 0.04%)</title><rect x="63.4654%" y="565" width="0.0376%" height="15" fill="rgb(207,41,40)" fg:x="976635" fg:w="578"/><text x="63.7154%" y="575.50"></text></g><g><title>select_task_rq_fair (552 samples, 0.04%)</title><rect x="63.8306%" y="453" width="0.0359%" height="15" fill="rgb(241,179,25)" fg:x="982256" fg:w="552"/><text x="64.0806%" y="463.50"></text></g><g><title>update_cfs_rq_h_load (170 samples, 0.01%)</title><rect x="63.8555%" y="437" width="0.0110%" height="15" fill="rgb(210,0,34)" fg:x="982638" fg:w="170"/><text x="64.1055%" y="447.50"></text></g><g><title>enqueue_entity (724 samples, 0.05%)</title><rect x="63.8809%" y="421" width="0.0470%" height="15" fill="rgb(225,217,29)" fg:x="983029" fg:w="724"/><text x="64.1309%" y="431.50"></text></g><g><title>update_load_avg (261 samples, 0.02%)</title><rect x="63.9110%" y="405" width="0.0170%" height="15" fill="rgb(216,191,38)" fg:x="983492" fg:w="261"/><text x="64.1610%" y="415.50"></text></g><g><title>enqueue_task_fair (904 samples, 0.06%)</title><rect x="63.8716%" y="437" width="0.0587%" height="15" fill="rgb(232,140,52)" fg:x="982886" fg:w="904"/><text x="64.1216%" y="447.50"></text></g><g><title>ttwu_do_activate (1,881 samples, 0.12%)</title><rect x="63.8683%" y="453" width="0.1222%" height="15" fill="rgb(223,158,51)" fg:x="982835" fg:w="1881"/><text x="64.1183%" y="463.50"></text></g><g><title>psi_task_change (924 samples, 0.06%)</title><rect x="63.9305%" y="437" width="0.0600%" height="15" fill="rgb(235,29,51)" fg:x="983792" fg:w="924"/><text x="64.1805%" y="447.50"></text></g><g><title>psi_group_change (831 samples, 0.05%)</title><rect x="63.9365%" y="421" width="0.0540%" height="15" fill="rgb(215,181,18)" fg:x="983885" fg:w="831"/><text x="64.1865%" y="431.50"></text></g><g><title>ttwu_do_wakeup (202 samples, 0.01%)</title><rect x="63.9905%" y="453" width="0.0131%" height="15" fill="rgb(227,125,34)" fg:x="984716" fg:w="202"/><text x="64.2405%" y="463.50"></text></g><g><title>check_preempt_curr (178 samples, 0.01%)</title><rect x="63.9921%" y="437" width="0.0116%" height="15" fill="rgb(230,197,49)" fg:x="984740" fg:w="178"/><text x="64.2421%" y="447.50"></text></g><g><title>ttwu_queue_wakelist (203 samples, 0.01%)</title><rect x="64.0036%" y="453" width="0.0132%" height="15" fill="rgb(239,141,16)" fg:x="984918" fg:w="203"/><text x="64.2536%" y="463.50"></text></g><g><title>__wake_up_common (7,163 samples, 0.47%)</title><rect x="63.5621%" y="501" width="0.4655%" height="15" fill="rgb(225,105,43)" fg:x="978124" fg:w="7163"/><text x="63.8121%" y="511.50"></text></g><g><title>autoremove_wake_function (6,951 samples, 0.45%)</title><rect x="63.5759%" y="485" width="0.4517%" height="15" fill="rgb(214,131,14)" fg:x="978336" fg:w="6951"/><text x="63.8259%" y="495.50"></text></g><g><title>try_to_wake_up (6,866 samples, 0.45%)</title><rect x="63.5814%" y="469" width="0.4462%" height="15" fill="rgb(229,177,11)" fg:x="978421" fg:w="6866"/><text x="63.8314%" y="479.50"></text></g><g><title>update_rq_clock (166 samples, 0.01%)</title><rect x="64.0168%" y="453" width="0.0108%" height="15" fill="rgb(231,180,14)" fg:x="985121" fg:w="166"/><text x="64.2668%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (3,118 samples, 0.20%)</title><rect x="64.0276%" y="501" width="0.2026%" height="15" fill="rgb(232,88,2)" fg:x="985287" fg:w="3118"/><text x="64.2776%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,031 samples, 0.20%)</title><rect x="64.0333%" y="485" width="0.1970%" height="15" fill="rgb(205,220,8)" fg:x="985374" fg:w="3031"/><text x="64.2833%" y="495.50"></text></g><g><title>__wake_up_common_lock (10,411 samples, 0.68%)</title><rect x="63.5589%" y="517" width="0.6765%" height="15" fill="rgb(225,23,53)" fg:x="978074" fg:w="10411"/><text x="63.8089%" y="527.50"></text></g><g><title>btrfs_tree_unlock (506 samples, 0.03%)</title><rect x="64.2355%" y="517" width="0.0329%" height="15" fill="rgb(213,62,29)" fg:x="988486" fg:w="506"/><text x="64.4855%" y="527.50"></text></g><g><title>_raw_spin_lock (238 samples, 0.02%)</title><rect x="64.2893%" y="501" width="0.0155%" height="15" fill="rgb(227,75,7)" fg:x="989314" fg:w="238"/><text x="64.5393%" y="511.50"></text></g><g><title>free_extent_buffer.part.0 (540 samples, 0.04%)</title><rect x="64.2698%" y="517" width="0.0351%" height="15" fill="rgb(207,105,14)" fg:x="989014" fg:w="540"/><text x="64.5198%" y="527.50"></text></g><g><title>btrfs_free_path (12,121 samples, 0.79%)</title><rect x="63.5354%" y="549" width="0.7877%" height="15" fill="rgb(245,62,29)" fg:x="977713" fg:w="12121"/><text x="63.7854%" y="559.50"></text></g><g><title>btrfs_release_path (12,030 samples, 0.78%)</title><rect x="63.5413%" y="533" width="0.7818%" height="15" fill="rgb(236,202,4)" fg:x="977804" fg:w="12030"/><text x="63.7913%" y="543.50"></text></g><g><title>release_extent_buffer (280 samples, 0.02%)</title><rect x="64.3049%" y="517" width="0.0182%" height="15" fill="rgb(250,67,1)" fg:x="989554" fg:w="280"/><text x="64.5549%" y="527.50"></text></g><g><title>_raw_read_lock (432 samples, 0.03%)</title><rect x="64.4373%" y="501" width="0.0281%" height="15" fill="rgb(253,115,44)" fg:x="991591" fg:w="432"/><text x="64.6873%" y="511.50"></text></g><g><title>finish_wait (1,403 samples, 0.09%)</title><rect x="64.4668%" y="501" width="0.0912%" height="15" fill="rgb(251,139,18)" fg:x="992045" fg:w="1403"/><text x="64.7168%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (1,322 samples, 0.09%)</title><rect x="64.4720%" y="485" width="0.0859%" height="15" fill="rgb(218,22,32)" fg:x="992126" fg:w="1322"/><text x="64.7220%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,256 samples, 0.08%)</title><rect x="64.4763%" y="469" width="0.0816%" height="15" fill="rgb(243,53,5)" fg:x="992192" fg:w="1256"/><text x="64.7263%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (3,607 samples, 0.23%)</title><rect x="64.5792%" y="485" width="0.2344%" height="15" fill="rgb(227,56,16)" fg:x="993775" fg:w="3607"/><text x="64.8292%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,396 samples, 0.22%)</title><rect x="64.5929%" y="469" width="0.2207%" height="15" fill="rgb(245,53,0)" fg:x="993986" fg:w="3396"/><text x="64.8429%" y="479.50"></text></g><g><title>prepare_to_wait_event (4,012 samples, 0.26%)</title><rect x="64.5579%" y="501" width="0.2607%" height="15" fill="rgb(216,170,35)" fg:x="993448" fg:w="4012"/><text x="64.8079%" y="511.50"></text></g><g><title>queued_read_lock_slowpath (418 samples, 0.03%)</title><rect x="64.8187%" y="501" width="0.0272%" height="15" fill="rgb(211,200,8)" fg:x="997460" fg:w="418"/><text x="65.0687%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (182 samples, 0.01%)</title><rect x="64.8340%" y="485" width="0.0118%" height="15" fill="rgb(228,204,44)" fg:x="997696" fg:w="182"/><text x="65.0840%" y="495.50"></text></g><g><title>update_curr (260 samples, 0.02%)</title><rect x="64.9012%" y="437" width="0.0169%" height="15" fill="rgb(214,121,17)" fg:x="998730" fg:w="260"/><text x="65.1512%" y="447.50"></text></g><g><title>dequeue_entity (719 samples, 0.05%)</title><rect x="64.8855%" y="453" width="0.0467%" height="15" fill="rgb(233,64,38)" fg:x="998488" fg:w="719"/><text x="65.1355%" y="463.50"></text></g><g><title>update_load_avg (217 samples, 0.01%)</title><rect x="64.9181%" y="437" width="0.0141%" height="15" fill="rgb(253,54,19)" fg:x="998990" fg:w="217"/><text x="65.1681%" y="447.50"></text></g><g><title>dequeue_task_fair (873 samples, 0.06%)</title><rect x="64.8787%" y="469" width="0.0567%" height="15" fill="rgb(253,94,18)" fg:x="998384" fg:w="873"/><text x="65.1287%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (1,496 samples, 0.10%)</title><rect x="64.9437%" y="453" width="0.0972%" height="15" fill="rgb(227,57,52)" fg:x="999384" fg:w="1496"/><text x="65.1937%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,445 samples, 0.09%)</title><rect x="64.9470%" y="437" width="0.0939%" height="15" fill="rgb(230,228,50)" fg:x="999435" fg:w="1445"/><text x="65.1970%" y="447.50"></text></g><g><title>native_write_msr (1,423 samples, 0.09%)</title><rect x="64.9484%" y="421" width="0.0925%" height="15" fill="rgb(217,205,27)" fg:x="999457" fg:w="1423"/><text x="65.1984%" y="431.50"></text></g><g><title>finish_task_switch (1,701 samples, 0.11%)</title><rect x="64.9354%" y="469" width="0.1105%" height="15" fill="rgb(252,71,50)" fg:x="999257" fg:w="1701"/><text x="65.1854%" y="479.50"></text></g><g><title>psi_task_change (648 samples, 0.04%)</title><rect x="65.0655%" y="469" width="0.0421%" height="15" fill="rgb(209,86,4)" fg:x="1001259" fg:w="648"/><text x="65.3155%" y="479.50"></text></g><g><title>psi_group_change (547 samples, 0.04%)</title><rect x="65.0721%" y="453" width="0.0355%" height="15" fill="rgb(229,94,0)" fg:x="1001360" fg:w="547"/><text x="65.3221%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (10,942 samples, 0.71%)</title><rect x="64.4104%" y="517" width="0.7111%" height="15" fill="rgb(252,223,21)" fg:x="991177" fg:w="10942"/><text x="64.6604%" y="527.50"></text></g><g><title>schedule (4,241 samples, 0.28%)</title><rect x="64.8458%" y="501" width="0.2756%" height="15" fill="rgb(230,210,4)" fg:x="997878" fg:w="4241"/><text x="65.0958%" y="511.50"></text></g><g><title>__schedule (4,167 samples, 0.27%)</title><rect x="64.8506%" y="485" width="0.2708%" height="15" fill="rgb(240,149,38)" fg:x="997952" fg:w="4167"/><text x="65.1006%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (11,818 samples, 0.77%)</title><rect x="64.4041%" y="533" width="0.7680%" height="15" fill="rgb(254,105,20)" fg:x="991080" fg:w="11818"/><text x="64.6541%" y="543.50"></text></g><g><title>btrfs_root_node (779 samples, 0.05%)</title><rect x="65.1214%" y="517" width="0.0506%" height="15" fill="rgb(253,87,46)" fg:x="1002119" fg:w="779"/><text x="65.3714%" y="527.50"></text></g><g><title>btrfs_get_64 (223 samples, 0.01%)</title><rect x="65.1993%" y="517" width="0.0145%" height="15" fill="rgb(253,116,33)" fg:x="1003318" fg:w="223"/><text x="65.4493%" y="527.50"></text></g><g><title>balance_level (615 samples, 0.04%)</title><rect x="65.1739%" y="533" width="0.0400%" height="15" fill="rgb(229,198,5)" fg:x="1002927" fg:w="615"/><text x="65.4239%" y="543.50"></text></g><g><title>_raw_write_lock (324 samples, 0.02%)</title><rect x="65.2518%" y="501" width="0.0211%" height="15" fill="rgb(242,38,37)" fg:x="1004125" fg:w="324"/><text x="65.5018%" y="511.50"></text></g><g><title>finish_wait (1,025 samples, 0.07%)</title><rect x="65.2730%" y="501" width="0.0666%" height="15" fill="rgb(242,69,53)" fg:x="1004451" fg:w="1025"/><text x="65.5230%" y="511.50"></text></g><g><title>_raw_spin_lock_irqsave (967 samples, 0.06%)</title><rect x="65.2767%" y="485" width="0.0628%" height="15" fill="rgb(249,80,16)" fg:x="1004509" fg:w="967"/><text x="65.5267%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (914 samples, 0.06%)</title><rect x="65.2802%" y="469" width="0.0594%" height="15" fill="rgb(206,128,11)" fg:x="1004562" fg:w="914"/><text x="65.5302%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (2,543 samples, 0.17%)</title><rect x="65.3547%" y="485" width="0.1653%" height="15" fill="rgb(212,35,20)" fg:x="1005709" fg:w="2543"/><text x="65.6047%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,395 samples, 0.16%)</title><rect x="65.3643%" y="469" width="0.1556%" height="15" fill="rgb(236,79,13)" fg:x="1005857" fg:w="2395"/><text x="65.6143%" y="479.50"></text></g><g><title>prepare_to_wait_event (2,807 samples, 0.18%)</title><rect x="65.3402%" y="501" width="0.1824%" height="15" fill="rgb(233,123,3)" fg:x="1005485" fg:w="2807"/><text x="65.5902%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (538 samples, 0.03%)</title><rect x="65.5226%" y="501" width="0.0350%" height="15" fill="rgb(214,93,52)" fg:x="1008292" fg:w="538"/><text x="65.7726%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (163 samples, 0.01%)</title><rect x="65.5469%" y="485" width="0.0106%" height="15" fill="rgb(251,37,40)" fg:x="1008667" fg:w="163"/><text x="65.7969%" y="495.50"></text></g><g><title>dequeue_entity (395 samples, 0.03%)</title><rect x="65.5743%" y="453" width="0.0257%" height="15" fill="rgb(227,80,54)" fg:x="1009088" fg:w="395"/><text x="65.8243%" y="463.50"></text></g><g><title>dequeue_task_fair (450 samples, 0.03%)</title><rect x="65.5718%" y="469" width="0.0292%" height="15" fill="rgb(254,48,11)" fg:x="1009049" fg:w="450"/><text x="65.8218%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (586 samples, 0.04%)</title><rect x="65.6057%" y="453" width="0.0381%" height="15" fill="rgb(235,193,26)" fg:x="1009572" fg:w="586"/><text x="65.8557%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (553 samples, 0.04%)</title><rect x="65.6079%" y="437" width="0.0359%" height="15" fill="rgb(229,99,21)" fg:x="1009605" fg:w="553"/><text x="65.8579%" y="447.50"></text></g><g><title>native_write_msr (542 samples, 0.04%)</title><rect x="65.6086%" y="421" width="0.0352%" height="15" fill="rgb(211,140,41)" fg:x="1009616" fg:w="542"/><text x="65.8586%" y="431.50"></text></g><g><title>finish_task_switch (683 samples, 0.04%)</title><rect x="65.6010%" y="469" width="0.0444%" height="15" fill="rgb(240,227,30)" fg:x="1009499" fg:w="683"/><text x="65.8510%" y="479.50"></text></g><g><title>psi_task_change (360 samples, 0.02%)</title><rect x="65.6549%" y="469" width="0.0234%" height="15" fill="rgb(215,224,45)" fg:x="1010328" fg:w="360"/><text x="65.9049%" y="479.50"></text></g><g><title>psi_group_change (314 samples, 0.02%)</title><rect x="65.6579%" y="453" width="0.0204%" height="15" fill="rgb(206,123,31)" fg:x="1010374" fg:w="314"/><text x="65.9079%" y="463.50"></text></g><g><title>__schedule (1,913 samples, 0.12%)</title><rect x="65.5600%" y="485" width="0.1243%" height="15" fill="rgb(210,138,16)" fg:x="1008868" fg:w="1913"/><text x="65.8100%" y="495.50"></text></g><g><title>__btrfs_tree_lock (7,090 samples, 0.46%)</title><rect x="65.2236%" y="517" width="0.4607%" height="15" fill="rgb(228,57,28)" fg:x="1003692" fg:w="7090"/><text x="65.4736%" y="527.50"></text></g><g><title>schedule (1,952 samples, 0.13%)</title><rect x="65.5575%" y="501" width="0.1268%" height="15" fill="rgb(242,170,10)" fg:x="1008830" fg:w="1952"/><text x="65.8075%" y="511.50"></text></g><g><title>btrfs_lock_root_node (7,476 samples, 0.49%)</title><rect x="65.2214%" y="533" width="0.4858%" height="15" fill="rgb(228,214,39)" fg:x="1003657" fg:w="7476"/><text x="65.4714%" y="543.50"></text></g><g><title>btrfs_root_node (351 samples, 0.02%)</title><rect x="65.6844%" y="517" width="0.0228%" height="15" fill="rgb(218,179,33)" fg:x="1010782" fg:w="351"/><text x="65.9344%" y="527.50"></text></g><g><title>btrfs_set_path_blocking (487 samples, 0.03%)</title><rect x="65.7072%" y="533" width="0.0316%" height="15" fill="rgb(235,193,39)" fg:x="1011133" fg:w="487"/><text x="65.9572%" y="543.50"></text></g><g><title>btrfs_set_lock_blocking_write (177 samples, 0.01%)</title><rect x="65.7273%" y="517" width="0.0115%" height="15" fill="rgb(219,221,36)" fg:x="1011443" fg:w="177"/><text x="65.9773%" y="527.50"></text></g><g><title>btrfs_tree_read_unlock (260 samples, 0.02%)</title><rect x="65.7388%" y="533" width="0.0169%" height="15" fill="rgb(248,218,19)" fg:x="1011620" fg:w="260"/><text x="65.9888%" y="543.50"></text></g><g><title>_raw_write_lock (205 samples, 0.01%)</title><rect x="65.7585%" y="517" width="0.0133%" height="15" fill="rgb(205,50,9)" fg:x="1011923" fg:w="205"/><text x="66.0085%" y="527.50"></text></g><g><title>btrfs_try_tree_write_lock (249 samples, 0.02%)</title><rect x="65.7557%" y="533" width="0.0162%" height="15" fill="rgb(238,81,28)" fg:x="1011880" fg:w="249"/><text x="66.0057%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (358 samples, 0.02%)</title><rect x="65.7723%" y="533" width="0.0233%" height="15" fill="rgb(235,110,19)" fg:x="1012135" fg:w="358"/><text x="66.0223%" y="543.50"></text></g><g><title>generic_bin_search.constprop.0 (1,669 samples, 0.11%)</title><rect x="65.7956%" y="533" width="0.1085%" height="15" fill="rgb(214,7,14)" fg:x="1012493" fg:w="1669"/><text x="66.0456%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (241 samples, 0.02%)</title><rect x="65.9246%" y="517" width="0.0157%" height="15" fill="rgb(211,77,3)" fg:x="1014478" fg:w="241"/><text x="66.1746%" y="527.50"></text></g><g><title>verify_parent_transid (185 samples, 0.01%)</title><rect x="65.9282%" y="501" width="0.0120%" height="15" fill="rgb(229,5,9)" fg:x="1014534" fg:w="185"/><text x="66.1782%" y="511.50"></text></g><g><title>btrfs_get_64 (329 samples, 0.02%)</title><rect x="65.9402%" y="517" width="0.0214%" height="15" fill="rgb(225,90,11)" fg:x="1014719" fg:w="329"/><text x="66.1902%" y="527.50"></text></g><g><title>__radix_tree_lookup (928 samples, 0.06%)</title><rect x="66.0051%" y="501" width="0.0603%" height="15" fill="rgb(242,56,8)" fg:x="1015718" fg:w="928"/><text x="66.2551%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (596 samples, 0.04%)</title><rect x="66.0659%" y="501" width="0.0387%" height="15" fill="rgb(249,212,39)" fg:x="1016653" fg:w="596"/><text x="66.3159%" y="511.50"></text></g><g><title>mark_page_accessed (425 samples, 0.03%)</title><rect x="66.0770%" y="485" width="0.0276%" height="15" fill="rgb(236,90,9)" fg:x="1016824" fg:w="425"/><text x="66.3270%" y="495.50"></text></g><g><title>find_extent_buffer (2,059 samples, 0.13%)</title><rect x="65.9723%" y="517" width="0.1338%" height="15" fill="rgb(206,88,35)" fg:x="1015212" fg:w="2059"/><text x="66.2223%" y="527.50"></text></g><g><title>read_block_for_search.isra.0 (3,447 samples, 0.22%)</title><rect x="65.9040%" y="533" width="0.2240%" height="15" fill="rgb(205,126,30)" fg:x="1014162" fg:w="3447"/><text x="66.1540%" y="543.50"></text></g><g><title>read_extent_buffer (338 samples, 0.02%)</title><rect x="66.1061%" y="517" width="0.0220%" height="15" fill="rgb(230,176,12)" fg:x="1017271" fg:w="338"/><text x="66.3561%" y="527.50"></text></g><g><title>btrfs_search_slot (28,335 samples, 1.84%)</title><rect x="64.3232%" y="549" width="1.8413%" height="15" fill="rgb(243,19,9)" fg:x="989836" fg:w="28335"/><text x="64.5732%" y="559.50">b..</text></g><g><title>unlock_up (342 samples, 0.02%)</title><rect x="66.1423%" y="533" width="0.0222%" height="15" fill="rgb(245,171,17)" fg:x="1017829" fg:w="342"/><text x="66.3923%" y="543.50"></text></g><g><title>crc32c (359 samples, 0.02%)</title><rect x="66.1645%" y="549" width="0.0233%" height="15" fill="rgb(227,52,21)" fg:x="1018171" fg:w="359"/><text x="66.4145%" y="559.50"></text></g><g><title>crypto_shash_update (204 samples, 0.01%)</title><rect x="66.1746%" y="533" width="0.0133%" height="15" fill="rgb(238,69,14)" fg:x="1018326" fg:w="204"/><text x="66.4246%" y="543.50"></text></g><g><title>memset_erms (177 samples, 0.01%)</title><rect x="66.2157%" y="533" width="0.0115%" height="15" fill="rgb(241,156,39)" fg:x="1018959" fg:w="177"/><text x="66.4657%" y="543.50"></text></g><g><title>kmem_cache_alloc (852 samples, 0.06%)</title><rect x="66.1879%" y="549" width="0.0554%" height="15" fill="rgb(212,227,28)" fg:x="1018530" fg:w="852"/><text x="66.4379%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (246 samples, 0.02%)</title><rect x="66.2272%" y="533" width="0.0160%" height="15" fill="rgb(209,118,27)" fg:x="1019136" fg:w="246"/><text x="66.4772%" y="543.50"></text></g><g><title>btrfs_del_inode_ref (42,490 samples, 2.76%)</title><rect x="63.5213%" y="565" width="2.7612%" height="15" fill="rgb(226,102,5)" fg:x="977496" fg:w="42490"/><text x="63.7713%" y="575.50">bt..</text></g><g><title>kmem_cache_free (604 samples, 0.04%)</title><rect x="66.2432%" y="549" width="0.0393%" height="15" fill="rgb(223,34,3)" fg:x="1019382" fg:w="604"/><text x="66.4932%" y="559.50"></text></g><g><title>btrfs_end_log_trans (259 samples, 0.02%)</title><rect x="66.2825%" y="565" width="0.0168%" height="15" fill="rgb(221,81,38)" fg:x="1019986" fg:w="259"/><text x="66.5325%" y="575.50"></text></g><g><title>mutex_lock (394 samples, 0.03%)</title><rect x="66.2993%" y="565" width="0.0256%" height="15" fill="rgb(236,219,28)" fg:x="1020245" fg:w="394"/><text x="66.5493%" y="575.50"></text></g><g><title>btrfs_del_inode_ref_in_log (43,664 samples, 2.84%)</title><rect x="63.5029%" y="581" width="2.8374%" height="15" fill="rgb(213,200,14)" fg:x="977213" fg:w="43664"/><text x="63.7529%" y="591.50">bt..</text></g><g><title>mutex_unlock (238 samples, 0.02%)</title><rect x="66.3249%" y="565" width="0.0155%" height="15" fill="rgb(240,33,19)" fg:x="1020639" fg:w="238"/><text x="66.5749%" y="575.50"></text></g><g><title>_find_next_bit.constprop.0 (298 samples, 0.02%)</title><rect x="66.5565%" y="501" width="0.0194%" height="15" fill="rgb(233,113,27)" fg:x="1024203" fg:w="298"/><text x="66.8065%" y="511.50"></text></g><g><title>steal_from_bitmap.part.0 (355 samples, 0.02%)</title><rect x="66.5542%" y="517" width="0.0231%" height="15" fill="rgb(220,221,18)" fg:x="1024167" fg:w="355"/><text x="66.8042%" y="527.50"></text></g><g><title>__btrfs_add_free_space (486 samples, 0.03%)</title><rect x="66.5496%" y="533" width="0.0316%" height="15" fill="rgb(238,92,8)" fg:x="1024096" fg:w="486"/><text x="66.7996%" y="543.50"></text></g><g><title>btrfs_free_tree_block (693 samples, 0.05%)</title><rect x="66.5494%" y="549" width="0.0450%" height="15" fill="rgb(222,164,16)" fg:x="1024093" fg:w="693"/><text x="66.7994%" y="559.50"></text></g><g><title>btrfs_del_leaf (801 samples, 0.05%)</title><rect x="66.5487%" y="565" width="0.0521%" height="15" fill="rgb(241,119,3)" fg:x="1024082" fg:w="801"/><text x="66.7987%" y="575.50"></text></g><g><title>btrfs_get_32 (499 samples, 0.03%)</title><rect x="66.6007%" y="565" width="0.0324%" height="15" fill="rgb(241,44,8)" fg:x="1024883" fg:w="499"/><text x="66.8507%" y="575.50"></text></g><g><title>btrfs_get_token_32 (12,666 samples, 0.82%)</title><rect x="66.6331%" y="565" width="0.8231%" height="15" fill="rgb(230,36,40)" fg:x="1025382" fg:w="12666"/><text x="66.8831%" y="575.50"></text></g><g><title>check_setget_bounds.isra.0 (1,747 samples, 0.11%)</title><rect x="67.3427%" y="549" width="0.1135%" height="15" fill="rgb(243,16,36)" fg:x="1036301" fg:w="1747"/><text x="67.5927%" y="559.50"></text></g><g><title>btrfs_mark_buffer_dirty (719 samples, 0.05%)</title><rect x="67.4562%" y="565" width="0.0467%" height="15" fill="rgb(231,4,26)" fg:x="1038048" fg:w="719"/><text x="67.7062%" y="575.50"></text></g><g><title>set_extent_buffer_dirty (221 samples, 0.01%)</title><rect x="67.4886%" y="549" width="0.0144%" height="15" fill="rgb(240,9,31)" fg:x="1038546" fg:w="221"/><text x="67.7386%" y="559.50"></text></g><g><title>btrfs_set_token_32 (9,289 samples, 0.60%)</title><rect x="67.5041%" y="565" width="0.6036%" height="15" fill="rgb(207,173,15)" fg:x="1038785" fg:w="9289"/><text x="67.7541%" y="575.50"></text></g><g><title>check_setget_bounds.isra.0 (1,433 samples, 0.09%)</title><rect x="68.0146%" y="549" width="0.0931%" height="15" fill="rgb(224,192,53)" fg:x="1046641" fg:w="1433"/><text x="68.2646%" y="559.50"></text></g><g><title>leaf_space_used (450 samples, 0.03%)</title><rect x="68.1094%" y="565" width="0.0292%" height="15" fill="rgb(223,67,28)" fg:x="1048099" fg:w="450"/><text x="68.3594%" y="575.50"></text></g><g><title>btrfs_get_32 (318 samples, 0.02%)</title><rect x="68.1179%" y="549" width="0.0207%" height="15" fill="rgb(211,20,47)" fg:x="1048231" fg:w="318"/><text x="68.3679%" y="559.50"></text></g><g><title>copy_pages (172 samples, 0.01%)</title><rect x="68.1541%" y="549" width="0.0112%" height="15" fill="rgb(240,228,2)" fg:x="1048787" fg:w="172"/><text x="68.4041%" y="559.50"></text></g><g><title>memcpy_extent_buffer (1,531 samples, 0.10%)</title><rect x="68.1386%" y="565" width="0.0995%" height="15" fill="rgb(248,151,12)" fg:x="1048549" fg:w="1531"/><text x="68.3886%" y="575.50"></text></g><g><title>memmove (1,121 samples, 0.07%)</title><rect x="68.1653%" y="549" width="0.0728%" height="15" fill="rgb(244,8,39)" fg:x="1048959" fg:w="1121"/><text x="68.4153%" y="559.50"></text></g><g><title>copy_pages (565 samples, 0.04%)</title><rect x="68.2669%" y="549" width="0.0367%" height="15" fill="rgb(222,26,8)" fg:x="1050523" fg:w="565"/><text x="68.5169%" y="559.50"></text></g><g><title>memmove_extent_buffer (5,592 samples, 0.36%)</title><rect x="68.2381%" y="565" width="0.3634%" height="15" fill="rgb(213,106,44)" fg:x="1050080" fg:w="5592"/><text x="68.4881%" y="575.50"></text></g><g><title>memmove (4,584 samples, 0.30%)</title><rect x="68.3036%" y="549" width="0.2979%" height="15" fill="rgb(214,129,20)" fg:x="1051088" fg:w="4584"/><text x="68.5536%" y="559.50"></text></g><g><title>__push_leaf_left (370 samples, 0.02%)</title><rect x="68.6036%" y="549" width="0.0240%" height="15" fill="rgb(212,32,13)" fg:x="1055705" fg:w="370"/><text x="68.8536%" y="559.50"></text></g><g><title>push_leaf_left (601 samples, 0.04%)</title><rect x="68.6015%" y="565" width="0.0391%" height="15" fill="rgb(208,168,33)" fg:x="1055672" fg:w="601"/><text x="68.8515%" y="575.50"></text></g><g><title>__push_leaf_right (384 samples, 0.02%)</title><rect x="68.6423%" y="549" width="0.0250%" height="15" fill="rgb(231,207,8)" fg:x="1056300" fg:w="384"/><text x="68.8923%" y="559.50"></text></g><g><title>push_leaf_right (629 samples, 0.04%)</title><rect x="68.6405%" y="565" width="0.0409%" height="15" fill="rgb(235,219,23)" fg:x="1056273" fg:w="629"/><text x="68.8905%" y="575.50"></text></g><g><title>btrfs_del_items (36,068 samples, 2.34%)</title><rect x="66.3404%" y="581" width="2.3438%" height="15" fill="rgb(226,216,26)" fg:x="1020877" fg:w="36068"/><text x="66.5904%" y="591.50">b..</text></g><g><title>btrfs_comp_cpu_keys (501 samples, 0.03%)</title><rect x="68.7515%" y="549" width="0.0326%" height="15" fill="rgb(239,137,16)" fg:x="1057980" fg:w="501"/><text x="69.0015%" y="559.50"></text></g><g><title>__btrfs_add_delayed_item (1,642 samples, 0.11%)</title><rect x="68.7020%" y="565" width="0.1067%" height="15" fill="rgb(207,12,36)" fg:x="1057219" fg:w="1642"/><text x="68.9520%" y="575.50"></text></g><g><title>rb_insert_color (380 samples, 0.02%)</title><rect x="68.7840%" y="549" width="0.0247%" height="15" fill="rgb(210,214,24)" fg:x="1058481" fg:w="380"/><text x="69.0340%" y="559.50"></text></g><g><title>__list_add_valid (248 samples, 0.02%)</title><rect x="68.8231%" y="549" width="0.0161%" height="15" fill="rgb(206,56,30)" fg:x="1059082" fg:w="248"/><text x="69.0731%" y="559.50"></text></g><g><title>__list_del_entry_valid (207 samples, 0.01%)</title><rect x="68.8392%" y="549" width="0.0135%" height="15" fill="rgb(228,143,26)" fg:x="1059330" fg:w="207"/><text x="69.0892%" y="559.50"></text></g><g><title>_raw_spin_lock (267 samples, 0.02%)</title><rect x="68.8527%" y="549" width="0.0174%" height="15" fill="rgb(216,218,46)" fg:x="1059538" fg:w="267"/><text x="69.1027%" y="559.50"></text></g><g><title>mutex_lock (189 samples, 0.01%)</title><rect x="68.8702%" y="549" width="0.0123%" height="15" fill="rgb(206,6,19)" fg:x="1059807" fg:w="189"/><text x="69.1202%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,736 samples, 0.11%)</title><rect x="68.8087%" y="565" width="0.1128%" height="15" fill="rgb(239,177,51)" fg:x="1058861" fg:w="1736"/><text x="69.0587%" y="575.50"></text></g><g><title>mutex_unlock (601 samples, 0.04%)</title><rect x="68.8825%" y="549" width="0.0391%" height="15" fill="rgb(216,55,25)" fg:x="1059996" fg:w="601"/><text x="69.1325%" y="559.50"></text></g><g><title>mutex_spin_on_owner (812 samples, 0.05%)</title><rect x="68.9245%" y="549" width="0.0528%" height="15" fill="rgb(231,163,29)" fg:x="1060642" fg:w="812"/><text x="69.1745%" y="559.50"></text></g><g><title>finish_task_switch (156 samples, 0.01%)</title><rect x="68.9799%" y="501" width="0.0101%" height="15" fill="rgb(232,149,50)" fg:x="1061495" fg:w="156"/><text x="69.2299%" y="511.50"></text></g><g><title>__schedule (235 samples, 0.02%)</title><rect x="68.9778%" y="517" width="0.0153%" height="15" fill="rgb(223,142,48)" fg:x="1061463" fg:w="235"/><text x="69.2278%" y="527.50"></text></g><g><title>__mutex_lock.constprop.0 (1,102 samples, 0.07%)</title><rect x="68.9215%" y="565" width="0.0716%" height="15" fill="rgb(245,83,23)" fg:x="1060597" fg:w="1102"/><text x="69.1715%" y="575.50"></text></g><g><title>schedule_preempt_disabled (238 samples, 0.02%)</title><rect x="68.9777%" y="549" width="0.0155%" height="15" fill="rgb(224,63,2)" fg:x="1061461" fg:w="238"/><text x="69.2277%" y="559.50"></text></g><g><title>schedule (238 samples, 0.02%)</title><rect x="68.9777%" y="533" width="0.0155%" height="15" fill="rgb(218,65,53)" fg:x="1061461" fg:w="238"/><text x="69.2277%" y="543.50"></text></g><g><title>_raw_spin_lock (1,118 samples, 0.07%)</title><rect x="69.0175%" y="533" width="0.0727%" height="15" fill="rgb(221,84,29)" fg:x="1062073" fg:w="1118"/><text x="69.2675%" y="543.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,469 samples, 0.10%)</title><rect x="68.9949%" y="565" width="0.0955%" height="15" fill="rgb(234,0,32)" fg:x="1061726" fg:w="1469"/><text x="69.2449%" y="575.50"></text></g><g><title>btrfs_block_rsv_migrate (1,253 samples, 0.08%)</title><rect x="69.0089%" y="549" width="0.0814%" height="15" fill="rgb(206,20,16)" fg:x="1061942" fg:w="1253"/><text x="69.2589%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (661 samples, 0.04%)</title><rect x="69.0904%" y="565" width="0.0430%" height="15" fill="rgb(244,172,18)" fg:x="1063195" fg:w="661"/><text x="69.3404%" y="575.50"></text></g><g><title>btrfs_get_delayed_node (416 samples, 0.03%)</title><rect x="69.1063%" y="549" width="0.0270%" height="15" fill="rgb(254,133,1)" fg:x="1063440" fg:w="416"/><text x="69.3563%" y="559.50"></text></g><g><title>kmem_cache_alloc_trace (957 samples, 0.06%)</title><rect x="69.1333%" y="565" width="0.0622%" height="15" fill="rgb(222,206,41)" fg:x="1063856" fg:w="957"/><text x="69.3833%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (163 samples, 0.01%)</title><rect x="69.1849%" y="549" width="0.0106%" height="15" fill="rgb(212,3,42)" fg:x="1064650" fg:w="163"/><text x="69.4349%" y="559.50"></text></g><g><title>__schedule (319 samples, 0.02%)</title><rect x="69.2209%" y="533" width="0.0207%" height="15" fill="rgb(241,11,4)" fg:x="1065204" fg:w="319"/><text x="69.4709%" y="543.50"></text></g><g><title>_cond_resched (385 samples, 0.03%)</title><rect x="69.2183%" y="549" width="0.0250%" height="15" fill="rgb(205,19,26)" fg:x="1065164" fg:w="385"/><text x="69.4683%" y="559.50"></text></g><g><title>mutex_lock (740 samples, 0.05%)</title><rect x="69.1955%" y="565" width="0.0481%" height="15" fill="rgb(210,179,32)" fg:x="1064813" fg:w="740"/><text x="69.4455%" y="575.50"></text></g><g><title>btrfs_delete_delayed_dir_index (8,860 samples, 0.58%)</title><rect x="68.6843%" y="581" width="0.5758%" height="15" fill="rgb(227,116,49)" fg:x="1056946" fg:w="8860"/><text x="68.9343%" y="591.50"></text></g><g><title>mutex_unlock (253 samples, 0.02%)</title><rect x="69.2436%" y="565" width="0.0164%" height="15" fill="rgb(211,146,6)" fg:x="1065553" fg:w="253"/><text x="69.4936%" y="575.50"></text></g><g><title>btrfs_get_16 (200 samples, 0.01%)</title><rect x="69.2791%" y="565" width="0.0130%" height="15" fill="rgb(219,44,39)" fg:x="1066100" fg:w="200"/><text x="69.5291%" y="575.50"></text></g><g><title>btrfs_delete_one_dir_name (639 samples, 0.04%)</title><rect x="69.2600%" y="581" width="0.0415%" height="15" fill="rgb(234,128,11)" fg:x="1065806" fg:w="639"/><text x="69.5100%" y="591.50"></text></g><g><title>btrfs_free_path (160 samples, 0.01%)</title><rect x="69.3016%" y="581" width="0.0104%" height="15" fill="rgb(220,183,53)" fg:x="1066445" fg:w="160"/><text x="69.5516%" y="591.50"></text></g><g><title>btrfs_get_16 (503 samples, 0.03%)</title><rect x="69.3573%" y="549" width="0.0327%" height="15" fill="rgb(213,219,32)" fg:x="1067302" fg:w="503"/><text x="69.6073%" y="559.50"></text></g><g><title>btrfs_get_32 (284 samples, 0.02%)</title><rect x="69.3899%" y="549" width="0.0185%" height="15" fill="rgb(232,156,16)" fg:x="1067805" fg:w="284"/><text x="69.6399%" y="559.50"></text></g><g><title>memcmp (445 samples, 0.03%)</title><rect x="69.4293%" y="533" width="0.0289%" height="15" fill="rgb(246,135,34)" fg:x="1068411" fg:w="445"/><text x="69.6793%" y="543.50"></text></g><g><title>btrfs_match_dir_item_name (1,943 samples, 0.13%)</title><rect x="69.3320%" y="565" width="0.1263%" height="15" fill="rgb(241,99,0)" fg:x="1066914" fg:w="1943"/><text x="69.5820%" y="575.50"></text></g><g><title>memcmp_extent_buffer (768 samples, 0.05%)</title><rect x="69.4084%" y="549" width="0.0499%" height="15" fill="rgb(222,103,45)" fg:x="1068089" fg:w="768"/><text x="69.6584%" y="559.50"></text></g><g><title>_raw_read_lock (365 samples, 0.02%)</title><rect x="69.5840%" y="517" width="0.0237%" height="15" fill="rgb(212,57,4)" fg:x="1070792" fg:w="365"/><text x="69.8340%" y="527.50"></text></g><g><title>finish_wait (1,403 samples, 0.09%)</title><rect x="69.6087%" y="517" width="0.0912%" height="15" fill="rgb(215,68,47)" fg:x="1071171" fg:w="1403"/><text x="69.8587%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (1,332 samples, 0.09%)</title><rect x="69.6133%" y="501" width="0.0866%" height="15" fill="rgb(230,84,2)" fg:x="1071242" fg:w="1332"/><text x="69.8633%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,267 samples, 0.08%)</title><rect x="69.6175%" y="485" width="0.0823%" height="15" fill="rgb(220,102,14)" fg:x="1071307" fg:w="1267"/><text x="69.8675%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (4,412 samples, 0.29%)</title><rect x="69.7269%" y="501" width="0.2867%" height="15" fill="rgb(240,10,32)" fg:x="1072991" fg:w="4412"/><text x="69.9769%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,212 samples, 0.27%)</title><rect x="69.7399%" y="485" width="0.2737%" height="15" fill="rgb(215,47,27)" fg:x="1073191" fg:w="4212"/><text x="69.9899%" y="495.50"></text></g><g><title>prepare_to_wait_event (4,920 samples, 0.32%)</title><rect x="69.7008%" y="517" width="0.3197%" height="15" fill="rgb(233,188,43)" fg:x="1072589" fg:w="4920"/><text x="69.9508%" y="527.50"></text></g><g><title>queued_read_lock_slowpath (6,189 samples, 0.40%)</title><rect x="70.0205%" y="517" width="0.4022%" height="15" fill="rgb(253,190,1)" fg:x="1077509" fg:w="6189"/><text x="70.2705%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,201 samples, 0.27%)</title><rect x="70.1497%" y="501" width="0.2730%" height="15" fill="rgb(206,114,52)" fg:x="1079497" fg:w="4201"/><text x="70.3997%" y="511.50"></text></g><g><title>update_curr (236 samples, 0.02%)</title><rect x="70.4753%" y="453" width="0.0153%" height="15" fill="rgb(233,120,37)" fg:x="1084507" fg:w="236"/><text x="70.7253%" y="463.50"></text></g><g><title>dequeue_entity (721 samples, 0.05%)</title><rect x="70.4598%" y="469" width="0.0469%" height="15" fill="rgb(214,52,39)" fg:x="1084269" fg:w="721"/><text x="70.7098%" y="479.50"></text></g><g><title>update_load_avg (247 samples, 0.02%)</title><rect x="70.4906%" y="453" width="0.0161%" height="15" fill="rgb(223,80,29)" fg:x="1084743" fg:w="247"/><text x="70.7406%" y="463.50"></text></g><g><title>dequeue_task_fair (865 samples, 0.06%)</title><rect x="70.4536%" y="485" width="0.0562%" height="15" fill="rgb(230,101,40)" fg:x="1084173" fg:w="865"/><text x="70.7036%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (3,293 samples, 0.21%)</title><rect x="70.5244%" y="469" width="0.2140%" height="15" fill="rgb(219,211,8)" fg:x="1085262" fg:w="3293"/><text x="70.7744%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,185 samples, 0.21%)</title><rect x="70.5314%" y="453" width="0.2070%" height="15" fill="rgb(252,126,28)" fg:x="1085370" fg:w="3185"/><text x="70.7814%" y="463.50"></text></g><g><title>native_write_msr (3,141 samples, 0.20%)</title><rect x="70.5342%" y="437" width="0.2041%" height="15" fill="rgb(215,56,38)" fg:x="1085414" fg:w="3141"/><text x="70.7842%" y="447.50"></text></g><g><title>finish_task_switch (3,613 samples, 0.23%)</title><rect x="70.5098%" y="485" width="0.2348%" height="15" fill="rgb(249,55,44)" fg:x="1085038" fg:w="3613"/><text x="70.7598%" y="495.50"></text></g><g><title>pick_next_task_fair (162 samples, 0.01%)</title><rect x="70.7446%" y="485" width="0.0105%" height="15" fill="rgb(220,221,32)" fg:x="1088651" fg:w="162"/><text x="70.9946%" y="495.50"></text></g><g><title>pick_next_task_idle (165 samples, 0.01%)</title><rect x="70.7551%" y="485" width="0.0107%" height="15" fill="rgb(212,216,41)" fg:x="1088813" fg:w="165"/><text x="71.0051%" y="495.50"></text></g><g><title>psi_task_change (675 samples, 0.04%)</title><rect x="70.7658%" y="485" width="0.0439%" height="15" fill="rgb(228,213,43)" fg:x="1088978" fg:w="675"/><text x="71.0158%" y="495.50"></text></g><g><title>psi_group_change (541 samples, 0.04%)</title><rect x="70.7745%" y="469" width="0.0352%" height="15" fill="rgb(211,31,26)" fg:x="1089112" fg:w="541"/><text x="71.0245%" y="479.50"></text></g><g><title>__btrfs_tree_read_lock (19,401 samples, 1.26%)</title><rect x="69.5636%" y="533" width="1.2607%" height="15" fill="rgb(229,202,19)" fg:x="1070477" fg:w="19401"/><text x="69.8136%" y="543.50"></text></g><g><title>schedule (6,180 samples, 0.40%)</title><rect x="70.4227%" y="517" width="0.4016%" height="15" fill="rgb(229,105,46)" fg:x="1083698" fg:w="6180"/><text x="70.6727%" y="527.50"></text></g><g><title>__schedule (6,142 samples, 0.40%)</title><rect x="70.4252%" y="501" width="0.3991%" height="15" fill="rgb(235,108,1)" fg:x="1083736" fg:w="6142"/><text x="70.6752%" y="511.50"></text></g><g><title>__btrfs_read_lock_root_node (20,426 samples, 1.33%)</title><rect x="69.5584%" y="549" width="1.3274%" height="15" fill="rgb(245,111,35)" fg:x="1070397" fg:w="20426"/><text x="69.8084%" y="559.50"></text></g><g><title>btrfs_root_node (945 samples, 0.06%)</title><rect x="70.8243%" y="533" width="0.0614%" height="15" fill="rgb(219,185,31)" fg:x="1089878" fg:w="945"/><text x="71.0743%" y="543.50"></text></g><g><title>prepare_to_wait_event (235 samples, 0.02%)</title><rect x="70.8986%" y="533" width="0.0153%" height="15" fill="rgb(214,4,43)" fg:x="1091021" fg:w="235"/><text x="71.1486%" y="543.50"></text></g><g><title>update_curr (157 samples, 0.01%)</title><rect x="70.9485%" y="469" width="0.0102%" height="15" fill="rgb(235,227,40)" fg:x="1091789" fg:w="157"/><text x="71.1985%" y="479.50"></text></g><g><title>dequeue_entity (476 samples, 0.03%)</title><rect x="70.9378%" y="485" width="0.0309%" height="15" fill="rgb(230,88,30)" fg:x="1091624" fg:w="476"/><text x="71.1878%" y="495.50"></text></g><g><title>update_load_avg (154 samples, 0.01%)</title><rect x="70.9587%" y="469" width="0.0100%" height="15" fill="rgb(216,217,1)" fg:x="1091946" fg:w="154"/><text x="71.2087%" y="479.50"></text></g><g><title>dequeue_task_fair (593 samples, 0.04%)</title><rect x="70.9333%" y="501" width="0.0385%" height="15" fill="rgb(248,139,50)" fg:x="1091555" fg:w="593"/><text x="71.1833%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (2,939 samples, 0.19%)</title><rect x="70.9800%" y="485" width="0.1910%" height="15" fill="rgb(233,1,21)" fg:x="1092274" fg:w="2939"/><text x="71.2300%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,891 samples, 0.19%)</title><rect x="70.9831%" y="469" width="0.1879%" height="15" fill="rgb(215,183,12)" fg:x="1092322" fg:w="2891"/><text x="71.2331%" y="479.50"></text></g><g><title>native_write_msr (2,871 samples, 0.19%)</title><rect x="70.9844%" y="453" width="0.1866%" height="15" fill="rgb(229,104,42)" fg:x="1092342" fg:w="2871"/><text x="71.2344%" y="463.50"></text></g><g><title>finish_task_switch (3,158 samples, 0.21%)</title><rect x="70.9718%" y="501" width="0.2052%" height="15" fill="rgb(243,34,48)" fg:x="1092148" fg:w="3158"/><text x="71.2218%" y="511.50"></text></g><g><title>psi_task_change (415 samples, 0.03%)</title><rect x="71.1940%" y="501" width="0.0270%" height="15" fill="rgb(239,11,44)" fg:x="1095567" fg:w="415"/><text x="71.4440%" y="511.50"></text></g><g><title>psi_group_change (342 samples, 0.02%)</title><rect x="71.1988%" y="485" width="0.0222%" height="15" fill="rgb(231,98,35)" fg:x="1095640" fg:w="342"/><text x="71.4488%" y="495.50"></text></g><g><title>__btrfs_tree_lock (5,306 samples, 0.34%)</title><rect x="70.8857%" y="549" width="0.3448%" height="15" fill="rgb(233,28,25)" fg:x="1090823" fg:w="5306"/><text x="71.1357%" y="559.50"></text></g><g><title>schedule (4,873 samples, 0.32%)</title><rect x="70.9139%" y="533" width="0.3167%" height="15" fill="rgb(234,123,11)" fg:x="1091256" fg:w="4873"/><text x="71.1639%" y="543.50"></text></g><g><title>__schedule (4,854 samples, 0.32%)</title><rect x="70.9151%" y="517" width="0.3154%" height="15" fill="rgb(220,69,3)" fg:x="1091275" fg:w="4854"/><text x="71.1651%" y="527.50"></text></g><g><title>alloc_tree_block_no_bg_flush (214 samples, 0.01%)</title><rect x="71.2475%" y="517" width="0.0139%" height="15" fill="rgb(214,64,36)" fg:x="1096390" fg:w="214"/><text x="71.4975%" y="527.50"></text></g><g><title>btrfs_alloc_tree_block (214 samples, 0.01%)</title><rect x="71.2475%" y="501" width="0.0139%" height="15" fill="rgb(211,138,32)" fg:x="1096390" fg:w="214"/><text x="71.4975%" y="511.50"></text></g><g><title>__btrfs_cow_block (423 samples, 0.03%)</title><rect x="71.2471%" y="533" width="0.0275%" height="15" fill="rgb(213,118,47)" fg:x="1096384" fg:w="423"/><text x="71.4971%" y="543.50"></text></g><g><title>btrfs_cow_block (428 samples, 0.03%)</title><rect x="71.2469%" y="549" width="0.0278%" height="15" fill="rgb(243,124,49)" fg:x="1096381" fg:w="428"/><text x="71.4969%" y="559.50"></text></g><g><title>_cond_resched (209 samples, 0.01%)</title><rect x="71.3038%" y="517" width="0.0136%" height="15" fill="rgb(221,30,28)" fg:x="1097256" fg:w="209"/><text x="71.5538%" y="527.50"></text></g><g><title>_raw_write_lock (325 samples, 0.02%)</title><rect x="71.3182%" y="517" width="0.0211%" height="15" fill="rgb(246,37,13)" fg:x="1097478" fg:w="325"/><text x="71.5682%" y="527.50"></text></g><g><title>finish_wait (1,045 samples, 0.07%)</title><rect x="71.3396%" y="517" width="0.0679%" height="15" fill="rgb(249,66,14)" fg:x="1097807" fg:w="1045"/><text x="71.5896%" y="527.50"></text></g><g><title>_raw_spin_lock_irqsave (981 samples, 0.06%)</title><rect x="71.3437%" y="501" width="0.0637%" height="15" fill="rgb(213,166,5)" fg:x="1097871" fg:w="981"/><text x="71.5937%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (925 samples, 0.06%)</title><rect x="71.3474%" y="485" width="0.0601%" height="15" fill="rgb(221,66,24)" fg:x="1097927" fg:w="925"/><text x="71.5974%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (2,991 samples, 0.19%)</title><rect x="71.4318%" y="501" width="0.1944%" height="15" fill="rgb(210,132,17)" fg:x="1099226" fg:w="2991"/><text x="71.6818%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,785 samples, 0.18%)</title><rect x="71.4452%" y="485" width="0.1810%" height="15" fill="rgb(243,202,5)" fg:x="1099432" fg:w="2785"/><text x="71.6952%" y="495.50"></text></g><g><title>prepare_to_wait_event (3,446 samples, 0.22%)</title><rect x="71.4092%" y="517" width="0.2239%" height="15" fill="rgb(233,70,48)" fg:x="1098878" fg:w="3446"/><text x="71.6592%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,805 samples, 0.18%)</title><rect x="71.9597%" y="501" width="0.1823%" height="15" fill="rgb(238,41,26)" fg:x="1107349" fg:w="2805"/><text x="72.2097%" y="511.50"></text></g><g><title>queued_write_lock_slowpath (7,831 samples, 0.51%)</title><rect x="71.6331%" y="517" width="0.5089%" height="15" fill="rgb(241,19,31)" fg:x="1102324" fg:w="7831"/><text x="71.8831%" y="527.50"></text></g><g><title>update_curr (282 samples, 0.02%)</title><rect x="72.1948%" y="453" width="0.0183%" height="15" fill="rgb(214,76,10)" fg:x="1110967" fg:w="282"/><text x="72.4448%" y="463.50"></text></g><g><title>dequeue_entity (773 samples, 0.05%)</title><rect x="72.1809%" y="469" width="0.0502%" height="15" fill="rgb(254,202,22)" fg:x="1110753" fg:w="773"/><text x="72.4309%" y="479.50"></text></g><g><title>update_load_avg (277 samples, 0.02%)</title><rect x="72.2131%" y="453" width="0.0180%" height="15" fill="rgb(214,72,24)" fg:x="1111249" fg:w="277"/><text x="72.4631%" y="463.50"></text></g><g><title>dequeue_task_fair (930 samples, 0.06%)</title><rect x="72.1755%" y="485" width="0.0604%" height="15" fill="rgb(221,92,46)" fg:x="1110670" fg:w="930"/><text x="72.4255%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (5,687 samples, 0.37%)</title><rect x="72.2539%" y="469" width="0.3696%" height="15" fill="rgb(246,13,50)" fg:x="1111877" fg:w="5687"/><text x="72.5039%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,532 samples, 0.36%)</title><rect x="72.2640%" y="453" width="0.3595%" height="15" fill="rgb(240,165,38)" fg:x="1112032" fg:w="5532"/><text x="72.5140%" y="463.50"></text></g><g><title>native_write_msr (5,452 samples, 0.35%)</title><rect x="72.2692%" y="437" width="0.3543%" height="15" fill="rgb(241,24,51)" fg:x="1112112" fg:w="5452"/><text x="72.5192%" y="447.50"></text></g><g><title>finish_task_switch (6,196 samples, 0.40%)</title><rect x="72.2359%" y="485" width="0.4026%" height="15" fill="rgb(227,51,44)" fg:x="1111600" fg:w="6196"/><text x="72.4859%" y="495.50"></text></g><g><title>pick_next_task_fair (163 samples, 0.01%)</title><rect x="72.6385%" y="485" width="0.0106%" height="15" fill="rgb(231,121,3)" fg:x="1117796" fg:w="163"/><text x="72.8885%" y="495.50"></text></g><g><title>pick_next_task_idle (183 samples, 0.01%)</title><rect x="72.6491%" y="485" width="0.0119%" height="15" fill="rgb(245,3,41)" fg:x="1117959" fg:w="183"/><text x="72.8991%" y="495.50"></text></g><g><title>__update_idle_core (154 samples, 0.01%)</title><rect x="72.6510%" y="469" width="0.0100%" height="15" fill="rgb(214,13,26)" fg:x="1117988" fg:w="154"/><text x="72.9010%" y="479.50"></text></g><g><title>psi_task_change (687 samples, 0.04%)</title><rect x="72.6610%" y="485" width="0.0446%" height="15" fill="rgb(252,75,11)" fg:x="1118142" fg:w="687"/><text x="72.9110%" y="495.50"></text></g><g><title>psi_group_change (573 samples, 0.04%)</title><rect x="72.6684%" y="469" width="0.0372%" height="15" fill="rgb(218,226,17)" fg:x="1118256" fg:w="573"/><text x="72.9184%" y="479.50"></text></g><g><title>__schedule (8,832 samples, 0.57%)</title><rect x="72.1467%" y="501" width="0.5739%" height="15" fill="rgb(248,89,38)" fg:x="1110228" fg:w="8832"/><text x="72.3967%" y="511.50"></text></g><g><title>__btrfs_tree_lock (22,209 samples, 1.44%)</title><rect x="71.2775%" y="533" width="1.4432%" height="15" fill="rgb(237,73,46)" fg:x="1096852" fg:w="22209"/><text x="71.5275%" y="543.50"></text></g><g><title>schedule (8,906 samples, 0.58%)</title><rect x="72.1420%" y="517" width="0.5787%" height="15" fill="rgb(242,78,33)" fg:x="1110155" fg:w="8906"/><text x="72.3920%" y="527.50"></text></g><g><title>btrfs_lock_root_node (22,595 samples, 1.47%)</title><rect x="71.2747%" y="549" width="1.4683%" height="15" fill="rgb(235,60,3)" fg:x="1096809" fg:w="22595"/><text x="71.5247%" y="559.50"></text></g><g><title>btrfs_root_node (343 samples, 0.02%)</title><rect x="72.7207%" y="533" width="0.0223%" height="15" fill="rgb(216,172,19)" fg:x="1119061" fg:w="343"/><text x="72.9707%" y="543.50"></text></g><g><title>btrfs_set_path_blocking (390 samples, 0.03%)</title><rect x="72.7430%" y="549" width="0.0253%" height="15" fill="rgb(227,6,42)" fg:x="1119404" fg:w="390"/><text x="72.9930%" y="559.50"></text></g><g><title>btrfs_set_lock_blocking_write (179 samples, 0.01%)</title><rect x="72.7567%" y="533" width="0.0116%" height="15" fill="rgb(223,207,42)" fg:x="1119615" fg:w="179"/><text x="73.0067%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock (265 samples, 0.02%)</title><rect x="72.7688%" y="549" width="0.0172%" height="15" fill="rgb(246,138,30)" fg:x="1119800" fg:w="265"/><text x="73.0188%" y="559.50"></text></g><g><title>_raw_write_lock (345 samples, 0.02%)</title><rect x="72.7928%" y="533" width="0.0224%" height="15" fill="rgb(251,199,47)" fg:x="1120170" fg:w="345"/><text x="73.0428%" y="543.50"></text></g><g><title>btrfs_try_tree_write_lock (3,751 samples, 0.24%)</title><rect x="72.7860%" y="549" width="0.2438%" height="15" fill="rgb(228,218,44)" fg:x="1120065" fg:w="3751"/><text x="73.0360%" y="559.50"></text></g><g><title>queued_write_lock_slowpath (3,300 samples, 0.21%)</title><rect x="72.8153%" y="533" width="0.2144%" height="15" fill="rgb(220,68,6)" fg:x="1120516" fg:w="3300"/><text x="73.0653%" y="543.50"></text></g><g><title>free_extent_buffer.part.0 (410 samples, 0.03%)</title><rect x="73.0303%" y="549" width="0.0266%" height="15" fill="rgb(240,60,26)" fg:x="1123824" fg:w="410"/><text x="73.2803%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (3,995 samples, 0.26%)</title><rect x="73.0569%" y="549" width="0.2596%" height="15" fill="rgb(211,200,19)" fg:x="1124234" fg:w="3995"/><text x="73.3069%" y="559.50"></text></g><g><title>btrfs_buffer_uptodate (506 samples, 0.03%)</title><rect x="73.3528%" y="533" width="0.0329%" height="15" fill="rgb(242,145,30)" fg:x="1128787" fg:w="506"/><text x="73.6028%" y="543.50"></text></g><g><title>verify_parent_transid (394 samples, 0.03%)</title><rect x="73.3601%" y="517" width="0.0256%" height="15" fill="rgb(225,64,13)" fg:x="1128899" fg:w="394"/><text x="73.6101%" y="527.50"></text></g><g><title>btrfs_get_64 (654 samples, 0.04%)</title><rect x="73.3857%" y="533" width="0.0425%" height="15" fill="rgb(218,103,35)" fg:x="1129293" fg:w="654"/><text x="73.6357%" y="543.50"></text></g><g><title>check_setget_bounds.isra.0 (178 samples, 0.01%)</title><rect x="73.4166%" y="517" width="0.0116%" height="15" fill="rgb(216,93,46)" fg:x="1129769" fg:w="178"/><text x="73.6666%" y="527.50"></text></g><g><title>btrfs_verify_level_key (183 samples, 0.01%)</title><rect x="73.4337%" y="533" width="0.0119%" height="15" fill="rgb(225,159,27)" fg:x="1130033" fg:w="183"/><text x="73.6837%" y="543.50"></text></g><g><title>__radix_tree_lookup (2,028 samples, 0.13%)</title><rect x="73.5208%" y="517" width="0.1318%" height="15" fill="rgb(225,204,11)" fg:x="1131373" fg:w="2028"/><text x="73.7708%" y="527.50"></text></g><g><title>mark_page_accessed (759 samples, 0.05%)</title><rect x="73.6689%" y="501" width="0.0493%" height="15" fill="rgb(205,56,4)" fg:x="1133651" fg:w="759"/><text x="73.9189%" y="511.50"></text></g><g><title>mark_extent_buffer_accessed (1,000 samples, 0.06%)</title><rect x="73.6533%" y="517" width="0.0650%" height="15" fill="rgb(206,6,35)" fg:x="1133411" fg:w="1000"/><text x="73.9033%" y="527.50"></text></g><g><title>find_extent_buffer (4,231 samples, 0.27%)</title><rect x="73.4456%" y="533" width="0.2749%" height="15" fill="rgb(247,73,52)" fg:x="1130216" fg:w="4231"/><text x="73.6956%" y="543.50"></text></g><g><title>read_block_for_search.isra.0 (6,859 samples, 0.45%)</title><rect x="73.3165%" y="549" width="0.4457%" height="15" fill="rgb(246,97,4)" fg:x="1128229" fg:w="6859"/><text x="73.5665%" y="559.50"></text></g><g><title>read_extent_buffer (641 samples, 0.04%)</title><rect x="73.7206%" y="533" width="0.0417%" height="15" fill="rgb(212,37,15)" fg:x="1134447" fg:w="641"/><text x="73.9706%" y="543.50"></text></g><g><title>btrfs_buffer_uptodate (195 samples, 0.01%)</title><rect x="73.7709%" y="533" width="0.0127%" height="15" fill="rgb(208,130,40)" fg:x="1135221" fg:w="195"/><text x="74.0209%" y="543.50"></text></g><g><title>verify_parent_transid (164 samples, 0.01%)</title><rect x="73.7729%" y="517" width="0.0107%" height="15" fill="rgb(236,55,29)" fg:x="1135252" fg:w="164"/><text x="74.0229%" y="527.50"></text></g><g><title>btrfs_get_64 (267 samples, 0.02%)</title><rect x="73.7836%" y="533" width="0.0174%" height="15" fill="rgb(209,156,45)" fg:x="1135416" fg:w="267"/><text x="74.0336%" y="543.50"></text></g><g><title>__radix_tree_lookup (734 samples, 0.05%)</title><rect x="73.8422%" y="517" width="0.0477%" height="15" fill="rgb(249,107,4)" fg:x="1136318" fg:w="734"/><text x="74.0922%" y="527.50"></text></g><g><title>mark_extent_buffer_accessed (393 samples, 0.03%)</title><rect x="73.8899%" y="517" width="0.0255%" height="15" fill="rgb(227,7,13)" fg:x="1137052" fg:w="393"/><text x="74.1399%" y="527.50"></text></g><g><title>mark_page_accessed (317 samples, 0.02%)</title><rect x="73.8948%" y="501" width="0.0206%" height="15" fill="rgb(250,129,14)" fg:x="1137128" fg:w="317"/><text x="74.1448%" y="511.50"></text></g><g><title>find_extent_buffer (1,778 samples, 0.12%)</title><rect x="73.8009%" y="533" width="0.1155%" height="15" fill="rgb(229,92,13)" fg:x="1135683" fg:w="1778"/><text x="74.0509%" y="543.50"></text></g><g><title>reada_for_balance (2,519 samples, 0.16%)</title><rect x="73.7622%" y="549" width="0.1637%" height="15" fill="rgb(245,98,39)" fg:x="1135088" fg:w="2519"/><text x="74.0122%" y="559.50"></text></g><g><title>__list_del_entry_valid (318 samples, 0.02%)</title><rect x="74.0045%" y="485" width="0.0207%" height="15" fill="rgb(234,135,48)" fg:x="1138816" fg:w="318"/><text x="74.2545%" y="495.50"></text></g><g><title>__task_rq_lock (181 samples, 0.01%)</title><rect x="74.3186%" y="469" width="0.0118%" height="15" fill="rgb(230,98,28)" fg:x="1143649" fg:w="181"/><text x="74.5686%" y="479.50"></text></g><g><title>_raw_spin_lock (172 samples, 0.01%)</title><rect x="74.3191%" y="453" width="0.0112%" height="15" fill="rgb(223,121,0)" fg:x="1143658" fg:w="172"/><text x="74.5691%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (169 samples, 0.01%)</title><rect x="74.3193%" y="437" width="0.0110%" height="15" fill="rgb(234,173,33)" fg:x="1143661" fg:w="169"/><text x="74.5693%" y="447.50"></text></g><g><title>_raw_spin_lock (692 samples, 0.04%)</title><rect x="74.3303%" y="469" width="0.0450%" height="15" fill="rgb(245,47,8)" fg:x="1143830" fg:w="692"/><text x="74.5803%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (489 samples, 0.03%)</title><rect x="74.3435%" y="453" width="0.0318%" height="15" fill="rgb(205,17,20)" fg:x="1144033" fg:w="489"/><text x="74.5935%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (543 samples, 0.04%)</title><rect x="74.3753%" y="469" width="0.0353%" height="15" fill="rgb(232,151,16)" fg:x="1144522" fg:w="543"/><text x="74.6253%" y="479.50"></text></g><g><title>available_idle_cpu (545 samples, 0.04%)</title><rect x="74.4817%" y="453" width="0.0354%" height="15" fill="rgb(208,30,32)" fg:x="1146160" fg:w="545"/><text x="74.7317%" y="463.50"></text></g><g><title>cpumask_next_wrap (182 samples, 0.01%)</title><rect x="74.5240%" y="453" width="0.0118%" height="15" fill="rgb(254,26,3)" fg:x="1146811" fg:w="182"/><text x="74.7740%" y="463.50"></text></g><g><title>select_task_rq_fair (2,444 samples, 0.16%)</title><rect x="74.4143%" y="469" width="0.1588%" height="15" fill="rgb(240,177,30)" fg:x="1145122" fg:w="2444"/><text x="74.6643%" y="479.50"></text></g><g><title>update_cfs_rq_h_load (463 samples, 0.03%)</title><rect x="74.5430%" y="453" width="0.0301%" height="15" fill="rgb(248,76,44)" fg:x="1147103" fg:w="463"/><text x="74.7930%" y="463.50"></text></g><g><title>set_task_cpu (234 samples, 0.02%)</title><rect x="74.5731%" y="469" width="0.0152%" height="15" fill="rgb(241,186,54)" fg:x="1147566" fg:w="234"/><text x="74.8231%" y="479.50"></text></g><g><title>update_cfs_group (188 samples, 0.01%)</title><rect x="74.6846%" y="421" width="0.0122%" height="15" fill="rgb(249,171,29)" fg:x="1149281" fg:w="188"/><text x="74.9346%" y="431.50"></text></g><g><title>update_curr (291 samples, 0.02%)</title><rect x="74.6968%" y="421" width="0.0189%" height="15" fill="rgb(237,151,44)" fg:x="1149469" fg:w="291"/><text x="74.9468%" y="431.50"></text></g><g><title>__update_load_avg_cfs_rq (162 samples, 0.01%)</title><rect x="74.7410%" y="405" width="0.0105%" height="15" fill="rgb(228,174,30)" fg:x="1150149" fg:w="162"/><text x="74.9910%" y="415.50"></text></g><g><title>enqueue_entity (2,102 samples, 0.14%)</title><rect x="74.6269%" y="437" width="0.1366%" height="15" fill="rgb(252,14,37)" fg:x="1148394" fg:w="2102"/><text x="74.8769%" y="447.50"></text></g><g><title>update_load_avg (736 samples, 0.05%)</title><rect x="74.7157%" y="421" width="0.0478%" height="15" fill="rgb(207,111,40)" fg:x="1149760" fg:w="736"/><text x="74.9657%" y="431.50"></text></g><g><title>enqueue_task_fair (2,708 samples, 0.18%)</title><rect x="74.6000%" y="453" width="0.1760%" height="15" fill="rgb(248,171,54)" fg:x="1147980" fg:w="2708"/><text x="74.8500%" y="463.50"></text></g><g><title>ttwu_do_activate (5,232 samples, 0.34%)</title><rect x="74.5883%" y="469" width="0.3400%" height="15" fill="rgb(211,127,2)" fg:x="1147800" fg:w="5232"/><text x="74.8383%" y="479.50"></text></g><g><title>psi_task_change (2,340 samples, 0.15%)</title><rect x="74.7762%" y="453" width="0.1521%" height="15" fill="rgb(236,87,47)" fg:x="1150692" fg:w="2340"/><text x="75.0262%" y="463.50"></text></g><g><title>psi_group_change (2,088 samples, 0.14%)</title><rect x="74.7926%" y="437" width="0.1357%" height="15" fill="rgb(223,190,45)" fg:x="1150944" fg:w="2088"/><text x="75.0426%" y="447.50"></text></g><g><title>record_times (323 samples, 0.02%)</title><rect x="74.9073%" y="421" width="0.0210%" height="15" fill="rgb(215,5,16)" fg:x="1152709" fg:w="323"/><text x="75.1573%" y="431.50"></text></g><g><title>sched_clock_cpu (212 samples, 0.01%)</title><rect x="74.9145%" y="405" width="0.0138%" height="15" fill="rgb(252,82,33)" fg:x="1152820" fg:w="212"/><text x="75.1645%" y="415.50"></text></g><g><title>sched_clock (170 samples, 0.01%)</title><rect x="74.9173%" y="389" width="0.0110%" height="15" fill="rgb(247,213,44)" fg:x="1152862" fg:w="170"/><text x="75.1673%" y="399.50"></text></g><g><title>check_preempt_wakeup (186 samples, 0.01%)</title><rect x="74.9425%" y="437" width="0.0121%" height="15" fill="rgb(205,196,44)" fg:x="1153251" fg:w="186"/><text x="75.1925%" y="447.50"></text></g><g><title>resched_curr (210 samples, 0.01%)</title><rect x="74.9548%" y="437" width="0.0136%" height="15" fill="rgb(237,96,54)" fg:x="1153439" fg:w="210"/><text x="75.2048%" y="447.50"></text></g><g><title>ttwu_do_wakeup (626 samples, 0.04%)</title><rect x="74.9283%" y="469" width="0.0407%" height="15" fill="rgb(230,113,34)" fg:x="1153032" fg:w="626"/><text x="75.1783%" y="479.50"></text></g><g><title>check_preempt_curr (567 samples, 0.04%)</title><rect x="74.9321%" y="453" width="0.0368%" height="15" fill="rgb(221,224,12)" fg:x="1153091" fg:w="567"/><text x="75.1821%" y="463.50"></text></g><g><title>ttwu_queue_wakelist (371 samples, 0.02%)</title><rect x="74.9690%" y="469" width="0.0241%" height="15" fill="rgb(219,112,44)" fg:x="1153658" fg:w="371"/><text x="75.2190%" y="479.50"></text></g><g><title>__wake_up_common (15,993 samples, 1.04%)</title><rect x="73.9850%" y="517" width="1.0393%" height="15" fill="rgb(210,31,13)" fg:x="1138516" fg:w="15993"/><text x="74.2350%" y="527.50"></text></g><g><title>autoremove_wake_function (15,739 samples, 1.02%)</title><rect x="74.0015%" y="501" width="1.0228%" height="15" fill="rgb(230,25,16)" fg:x="1138770" fg:w="15739"/><text x="74.2515%" y="511.50"></text></g><g><title>try_to_wake_up (15,365 samples, 1.00%)</title><rect x="74.0258%" y="485" width="0.9985%" height="15" fill="rgb(246,108,53)" fg:x="1139144" fg:w="15365"/><text x="74.2758%" y="495.50"></text></g><g><title>update_rq_clock (480 samples, 0.03%)</title><rect x="74.9931%" y="469" width="0.0312%" height="15" fill="rgb(241,172,50)" fg:x="1154029" fg:w="480"/><text x="75.2431%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (1,067 samples, 0.07%)</title><rect x="75.0243%" y="517" width="0.0693%" height="15" fill="rgb(235,141,10)" fg:x="1154509" fg:w="1067"/><text x="75.2743%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (983 samples, 0.06%)</title><rect x="75.0297%" y="501" width="0.0639%" height="15" fill="rgb(220,174,43)" fg:x="1154593" fg:w="983"/><text x="75.2797%" y="511.50"></text></g><g><title>__wake_up_common_lock (17,246 samples, 1.12%)</title><rect x="73.9813%" y="533" width="1.1207%" height="15" fill="rgb(215,181,40)" fg:x="1138459" fg:w="17246"/><text x="74.2313%" y="543.50"></text></g><g><title>btrfs_search_slot (87,221 samples, 5.67%)</title><rect x="69.4583%" y="565" width="5.6679%" height="15" fill="rgb(230,97,2)" fg:x="1068857" fg:w="87221"/><text x="69.7083%" y="575.50">btrfs_s..</text></g><g><title>unlock_up (18,401 samples, 1.20%)</title><rect x="73.9305%" y="549" width="1.1958%" height="15" fill="rgb(211,25,27)" fg:x="1137677" fg:w="18401"/><text x="74.1805%" y="559.50"></text></g><g><title>btrfs_tree_unlock (369 samples, 0.02%)</title><rect x="75.1023%" y="533" width="0.0240%" height="15" fill="rgb(230,87,26)" fg:x="1155709" fg:w="369"/><text x="75.3523%" y="543.50"></text></g><g><title>btrfs_lookup_dir_item (90,034 samples, 5.85%)</title><rect x="69.3120%" y="581" width="5.8507%" height="15" fill="rgb(227,160,17)" fg:x="1066605" fg:w="90034"/><text x="69.5620%" y="591.50">btrfs_l..</text></g><g><title>crc32c (561 samples, 0.04%)</title><rect x="75.1262%" y="565" width="0.0365%" height="15" fill="rgb(244,85,34)" fg:x="1156078" fg:w="561"/><text x="75.3762%" y="575.50"></text></g><g><title>crypto_shash_update (318 samples, 0.02%)</title><rect x="75.1420%" y="549" width="0.0207%" height="15" fill="rgb(207,70,0)" fg:x="1156321" fg:w="318"/><text x="75.3920%" y="559.50"></text></g><g><title>_raw_spin_lock (253 samples, 0.02%)</title><rect x="75.2384%" y="501" width="0.0164%" height="15" fill="rgb(223,129,7)" fg:x="1157804" fg:w="253"/><text x="75.4884%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (186 samples, 0.01%)</title><rect x="75.2428%" y="485" width="0.0121%" height="15" fill="rgb(246,105,7)" fg:x="1157871" fg:w="186"/><text x="75.4928%" y="495.50"></text></g><g><title>select_task_rq_fair (561 samples, 0.04%)</title><rect x="75.2653%" y="501" width="0.0365%" height="15" fill="rgb(215,154,42)" fg:x="1158218" fg:w="561"/><text x="75.5153%" y="511.50"></text></g><g><title>enqueue_entity (616 samples, 0.04%)</title><rect x="75.3162%" y="469" width="0.0400%" height="15" fill="rgb(220,215,30)" fg:x="1159001" fg:w="616"/><text x="75.5662%" y="479.50"></text></g><g><title>update_load_avg (188 samples, 0.01%)</title><rect x="75.3440%" y="453" width="0.0122%" height="15" fill="rgb(228,81,51)" fg:x="1159429" fg:w="188"/><text x="75.5940%" y="463.50"></text></g><g><title>enqueue_task_fair (764 samples, 0.05%)</title><rect x="75.3088%" y="485" width="0.0496%" height="15" fill="rgb(247,71,54)" fg:x="1158887" fg:w="764"/><text x="75.5588%" y="495.50"></text></g><g><title>ttwu_do_activate (1,569 samples, 0.10%)</title><rect x="75.3054%" y="501" width="0.1020%" height="15" fill="rgb(234,176,34)" fg:x="1158835" fg:w="1569"/><text x="75.5554%" y="511.50"></text></g><g><title>psi_task_change (750 samples, 0.05%)</title><rect x="75.3586%" y="485" width="0.0487%" height="15" fill="rgb(241,103,54)" fg:x="1159654" fg:w="750"/><text x="75.6086%" y="495.50"></text></g><g><title>psi_group_change (666 samples, 0.04%)</title><rect x="75.3641%" y="469" width="0.0433%" height="15" fill="rgb(228,22,34)" fg:x="1159738" fg:w="666"/><text x="75.6141%" y="479.50"></text></g><g><title>__wake_up_common (3,975 samples, 0.26%)</title><rect x="75.1742%" y="549" width="0.2583%" height="15" fill="rgb(241,179,48)" fg:x="1156816" fg:w="3975"/><text x="75.4242%" y="559.50"></text></g><g><title>autoremove_wake_function (3,874 samples, 0.25%)</title><rect x="75.1808%" y="533" width="0.2517%" height="15" fill="rgb(235,167,37)" fg:x="1156917" fg:w="3874"/><text x="75.4308%" y="543.50"></text></g><g><title>try_to_wake_up (3,792 samples, 0.25%)</title><rect x="75.1861%" y="517" width="0.2464%" height="15" fill="rgb(213,109,30)" fg:x="1156999" fg:w="3792"/><text x="75.4361%" y="527.50"></text></g><g><title>__wake_up_common_lock (4,102 samples, 0.27%)</title><rect x="75.1731%" y="565" width="0.2666%" height="15" fill="rgb(222,172,16)" fg:x="1156799" fg:w="4102"/><text x="75.4231%" y="575.50"></text></g><g><title>btrfs_tree_unlock (283 samples, 0.02%)</title><rect x="75.4397%" y="565" width="0.0184%" height="15" fill="rgb(233,192,5)" fg:x="1160901" fg:w="283"/><text x="75.6897%" y="575.50"></text></g><g><title>_raw_spin_lock (401 samples, 0.03%)</title><rect x="75.5073%" y="549" width="0.0261%" height="15" fill="rgb(247,189,41)" fg:x="1161942" fg:w="401"/><text x="75.7573%" y="559.50"></text></g><g><title>free_extent_buffer.part.0 (1,144 samples, 0.07%)</title><rect x="75.4591%" y="565" width="0.0743%" height="15" fill="rgb(218,134,47)" fg:x="1161200" fg:w="1144"/><text x="75.7091%" y="575.50"></text></g><g><title>btrfs_release_path (5,992 samples, 0.39%)</title><rect x="75.1627%" y="581" width="0.3894%" height="15" fill="rgb(216,29,3)" fg:x="1156639" fg:w="5992"/><text x="75.4127%" y="591.50"></text></g><g><title>release_extent_buffer (287 samples, 0.02%)</title><rect x="75.5334%" y="565" width="0.0187%" height="15" fill="rgb(246,140,12)" fg:x="1162344" fg:w="287"/><text x="75.7834%" y="575.50"></text></g><g><title>__list_add_valid (189 samples, 0.01%)</title><rect x="75.6059%" y="533" width="0.0123%" height="15" fill="rgb(230,136,11)" fg:x="1163459" fg:w="189"/><text x="75.8559%" y="543.50"></text></g><g><title>_raw_spin_lock (309 samples, 0.02%)</title><rect x="75.6256%" y="533" width="0.0201%" height="15" fill="rgb(247,22,47)" fg:x="1163762" fg:w="309"/><text x="75.8756%" y="543.50"></text></g><g><title>mutex_lock (283 samples, 0.02%)</title><rect x="75.6458%" y="533" width="0.0184%" height="15" fill="rgb(218,84,22)" fg:x="1164073" fg:w="283"/><text x="75.8958%" y="543.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,614 samples, 0.10%)</title><rect x="75.5861%" y="549" width="0.1049%" height="15" fill="rgb(216,87,39)" fg:x="1163155" fg:w="1614"/><text x="75.8361%" y="559.50"></text></g><g><title>mutex_unlock (413 samples, 0.03%)</title><rect x="75.6642%" y="533" width="0.0268%" height="15" fill="rgb(221,178,8)" fg:x="1164356" fg:w="413"/><text x="75.9142%" y="543.50"></text></g><g><title>mutex_spin_on_owner (269 samples, 0.02%)</title><rect x="75.6921%" y="533" width="0.0175%" height="15" fill="rgb(230,42,11)" fg:x="1164786" fg:w="269"/><text x="75.9421%" y="543.50"></text></g><g><title>__mutex_lock.constprop.0 (375 samples, 0.02%)</title><rect x="75.6910%" y="549" width="0.0244%" height="15" fill="rgb(237,229,4)" fg:x="1164769" fg:w="375"/><text x="75.9410%" y="559.50"></text></g><g><title>btrfs_get_or_create_delayed_node (409 samples, 0.03%)</title><rect x="75.7181%" y="549" width="0.0266%" height="15" fill="rgb(222,31,33)" fg:x="1165185" fg:w="409"/><text x="75.9681%" y="559.50"></text></g><g><title>btrfs_get_delayed_node (369 samples, 0.02%)</title><rect x="75.7207%" y="533" width="0.0240%" height="15" fill="rgb(210,17,39)" fg:x="1165225" fg:w="369"/><text x="75.9707%" y="543.50"></text></g><g><title>inode_get_bytes (219 samples, 0.01%)</title><rect x="75.7555%" y="533" width="0.0142%" height="15" fill="rgb(244,93,20)" fg:x="1165761" fg:w="219"/><text x="76.0055%" y="543.50"></text></g><g><title>_raw_spin_lock (171 samples, 0.01%)</title><rect x="75.7586%" y="517" width="0.0111%" height="15" fill="rgb(210,40,47)" fg:x="1165809" fg:w="171"/><text x="76.0086%" y="527.50"></text></g><g><title>fill_stack_inode_item (553 samples, 0.04%)</title><rect x="75.7446%" y="549" width="0.0359%" height="15" fill="rgb(239,211,47)" fg:x="1165594" fg:w="553"/><text x="75.9946%" y="559.50"></text></g><g><title>map_id_up (167 samples, 0.01%)</title><rect x="75.7697%" y="533" width="0.0109%" height="15" fill="rgb(251,223,49)" fg:x="1165980" fg:w="167"/><text x="76.0197%" y="543.50"></text></g><g><title>mutex_lock (216 samples, 0.01%)</title><rect x="75.7806%" y="549" width="0.0140%" height="15" fill="rgb(221,149,5)" fg:x="1166147" fg:w="216"/><text x="76.0306%" y="559.50"></text></g><g><title>btrfs_delayed_update_inode (3,493 samples, 0.23%)</title><rect x="75.5807%" y="565" width="0.2270%" height="15" fill="rgb(219,224,51)" fg:x="1163071" fg:w="3493"/><text x="75.8307%" y="575.50"></text></g><g><title>mutex_unlock (201 samples, 0.01%)</title><rect x="75.7946%" y="549" width="0.0131%" height="15" fill="rgb(223,7,8)" fg:x="1166363" fg:w="201"/><text x="76.0446%" y="559.50"></text></g><g><title>_raw_spin_lock (488 samples, 0.03%)</title><rect x="75.8136%" y="549" width="0.0317%" height="15" fill="rgb(241,217,22)" fg:x="1166656" fg:w="488"/><text x="76.0636%" y="559.50"></text></g><g><title>btrfs_update_inode (4,913 samples, 0.32%)</title><rect x="75.5521%" y="581" width="0.3193%" height="15" fill="rgb(248,209,0)" fg:x="1162631" fg:w="4913"/><text x="75.8021%" y="591.50"></text></g><g><title>btrfs_update_root_times (980 samples, 0.06%)</title><rect x="75.8077%" y="565" width="0.0637%" height="15" fill="rgb(217,205,4)" fg:x="1166564" fg:w="980"/><text x="76.0577%" y="575.50"></text></g><g><title>ktime_get_real_ts64 (400 samples, 0.03%)</title><rect x="75.8454%" y="549" width="0.0260%" height="15" fill="rgb(228,124,39)" fg:x="1167144" fg:w="400"/><text x="76.0954%" y="559.50"></text></g><g><title>read_tsc (166 samples, 0.01%)</title><rect x="75.8606%" y="533" width="0.0108%" height="15" fill="rgb(250,116,42)" fg:x="1167378" fg:w="166"/><text x="76.1106%" y="543.50"></text></g><g><title>kmem_cache_alloc (579 samples, 0.04%)</title><rect x="75.8801%" y="581" width="0.0376%" height="15" fill="rgb(223,202,9)" fg:x="1167679" fg:w="579"/><text x="76.1301%" y="591.50"></text></g><g><title>__btrfs_unlink_inode (352,682 samples, 22.92%)</title><rect x="53.0344%" y="597" width="22.9186%" height="15" fill="rgb(242,222,40)" fg:x="816118" fg:w="352682"/><text x="53.2844%" y="607.50">__btrfs_unlink_inode</text></g><g><title>kmem_cache_free (542 samples, 0.04%)</title><rect x="75.9177%" y="581" width="0.0352%" height="15" fill="rgb(229,99,46)" fg:x="1168258" fg:w="542"/><text x="76.1677%" y="591.50"></text></g><g><title>__radix_tree_lookup (236 samples, 0.02%)</title><rect x="75.9851%" y="581" width="0.0153%" height="15" fill="rgb(225,56,46)" fg:x="1169295" fg:w="236"/><text x="76.2351%" y="591.50"></text></g><g><title>balance_dirty_pages_ratelimited (736 samples, 0.05%)</title><rect x="75.9531%" y="597" width="0.0478%" height="15" fill="rgb(227,94,5)" fg:x="1168802" fg:w="736"/><text x="76.2031%" y="607.50"></text></g><g><title>__percpu_counter_compare (188 samples, 0.01%)</title><rect x="76.0143%" y="581" width="0.0122%" height="15" fill="rgb(205,112,38)" fg:x="1169744" fg:w="188"/><text x="76.2643%" y="591.50"></text></g><g><title>btrfs_balance_delayed_items (527 samples, 0.03%)</title><rect x="76.0266%" y="581" width="0.0342%" height="15" fill="rgb(231,133,46)" fg:x="1169933" fg:w="527"/><text x="76.2766%" y="591.50"></text></g><g><title>_raw_spin_lock (531 samples, 0.03%)</title><rect x="76.0837%" y="549" width="0.0345%" height="15" fill="rgb(217,16,9)" fg:x="1170812" fg:w="531"/><text x="76.3337%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (416 samples, 0.03%)</title><rect x="76.0912%" y="533" width="0.0270%" height="15" fill="rgb(249,173,9)" fg:x="1170927" fg:w="416"/><text x="76.3412%" y="543.50"></text></g><g><title>insert_work (167 samples, 0.01%)</title><rect x="76.1182%" y="549" width="0.0109%" height="15" fill="rgb(205,163,53)" fg:x="1171343" fg:w="167"/><text x="76.3682%" y="559.50"></text></g><g><title>_raw_spin_lock (182 samples, 0.01%)</title><rect x="76.1513%" y="533" width="0.0118%" height="15" fill="rgb(217,54,41)" fg:x="1171852" fg:w="182"/><text x="76.4013%" y="543.50"></text></g><g><title>select_task_rq_fair (550 samples, 0.04%)</title><rect x="76.1714%" y="533" width="0.0357%" height="15" fill="rgb(228,216,12)" fg:x="1172162" fg:w="550"/><text x="76.4214%" y="543.50"></text></g><g><title>enqueue_task_fair (415 samples, 0.03%)</title><rect x="76.2134%" y="517" width="0.0270%" height="15" fill="rgb(244,228,15)" fg:x="1172808" fg:w="415"/><text x="76.4634%" y="527.50"></text></g><g><title>enqueue_entity (341 samples, 0.02%)</title><rect x="76.2182%" y="501" width="0.0222%" height="15" fill="rgb(221,176,53)" fg:x="1172882" fg:w="341"/><text x="76.4682%" y="511.50"></text></g><g><title>ttwu_do_activate (660 samples, 0.04%)</title><rect x="76.2102%" y="533" width="0.0429%" height="15" fill="rgb(205,94,34)" fg:x="1172758" fg:w="660"/><text x="76.4602%" y="543.50"></text></g><g><title>psi_task_change (193 samples, 0.01%)</title><rect x="76.2405%" y="517" width="0.0125%" height="15" fill="rgb(213,110,48)" fg:x="1173225" fg:w="193"/><text x="76.4905%" y="527.50"></text></g><g><title>check_preempt_wakeup (178 samples, 0.01%)</title><rect x="76.2551%" y="501" width="0.0116%" height="15" fill="rgb(236,142,28)" fg:x="1173449" fg:w="178"/><text x="76.5051%" y="511.50"></text></g><g><title>ttwu_do_wakeup (225 samples, 0.01%)</title><rect x="76.2531%" y="533" width="0.0146%" height="15" fill="rgb(225,135,29)" fg:x="1173418" fg:w="225"/><text x="76.5031%" y="543.50"></text></g><g><title>check_preempt_curr (215 samples, 0.01%)</title><rect x="76.2537%" y="517" width="0.0140%" height="15" fill="rgb(252,45,31)" fg:x="1173428" fg:w="215"/><text x="76.5037%" y="527.50"></text></g><g><title>try_to_wake_up (2,246 samples, 0.15%)</title><rect x="76.1291%" y="549" width="0.1460%" height="15" fill="rgb(211,187,50)" fg:x="1171510" fg:w="2246"/><text x="76.3791%" y="559.50"></text></g><g><title>__queue_work (3,114 samples, 0.20%)</title><rect x="76.0727%" y="565" width="0.2024%" height="15" fill="rgb(229,109,7)" fg:x="1170643" fg:w="3114"/><text x="76.3227%" y="575.50"></text></g><g><title>btrfs_btree_balance_dirty (4,258 samples, 0.28%)</title><rect x="76.0009%" y="597" width="0.2767%" height="15" fill="rgb(251,131,51)" fg:x="1169538" fg:w="4258"/><text x="76.2509%" y="607.50"></text></g><g><title>queue_work_on (3,208 samples, 0.21%)</title><rect x="76.0692%" y="581" width="0.2085%" height="15" fill="rgb(251,180,35)" fg:x="1170588" fg:w="3208"/><text x="76.3192%" y="591.50"></text></g><g><title>mutex_lock (861 samples, 0.06%)</title><rect x="76.2841%" y="581" width="0.0560%" height="15" fill="rgb(211,46,32)" fg:x="1173896" fg:w="861"/><text x="76.5341%" y="591.50"></text></g><g><title>btrfs_record_unlink_dir (1,100 samples, 0.07%)</title><rect x="76.2798%" y="597" width="0.0715%" height="15" fill="rgb(248,123,17)" fg:x="1173829" fg:w="1100"/><text x="76.5298%" y="607.50"></text></g><g><title>mutex_unlock (172 samples, 0.01%)</title><rect x="76.3401%" y="581" width="0.0112%" height="15" fill="rgb(227,141,18)" fg:x="1174757" fg:w="172"/><text x="76.5901%" y="591.50"></text></g><g><title>_raw_spin_lock (231 samples, 0.02%)</title><rect x="76.4476%" y="549" width="0.0150%" height="15" fill="rgb(216,102,9)" fg:x="1176412" fg:w="231"/><text x="76.6976%" y="559.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,222 samples, 0.08%)</title><rect x="76.4012%" y="565" width="0.0794%" height="15" fill="rgb(253,47,13)" fg:x="1175698" fg:w="1222"/><text x="76.6512%" y="575.50"></text></g><g><title>_raw_spin_lock (605 samples, 0.04%)</title><rect x="76.4853%" y="549" width="0.0393%" height="15" fill="rgb(226,93,23)" fg:x="1176992" fg:w="605"/><text x="76.7353%" y="559.50"></text></g><g><title>btrfs_block_rsv_migrate (675 samples, 0.04%)</title><rect x="76.4809%" y="565" width="0.0439%" height="15" fill="rgb(247,104,17)" fg:x="1176924" fg:w="675"/><text x="76.7309%" y="575.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,212 samples, 0.08%)</title><rect x="76.5248%" y="565" width="0.0788%" height="15" fill="rgb(233,203,26)" fg:x="1177599" fg:w="1212"/><text x="76.7748%" y="575.50"></text></g><g><title>btrfs_get_delayed_node (1,176 samples, 0.08%)</title><rect x="76.5271%" y="549" width="0.0764%" height="15" fill="rgb(244,98,49)" fg:x="1177635" fg:w="1176"/><text x="76.7771%" y="559.50"></text></g><g><title>inode_get_bytes (222 samples, 0.01%)</title><rect x="76.6114%" y="549" width="0.0144%" height="15" fill="rgb(235,134,22)" fg:x="1178932" fg:w="222"/><text x="76.8614%" y="559.50"></text></g><g><title>_raw_spin_lock (189 samples, 0.01%)</title><rect x="76.6135%" y="533" width="0.0123%" height="15" fill="rgb(221,70,32)" fg:x="1178965" fg:w="189"/><text x="76.8635%" y="543.50"></text></g><g><title>fill_stack_inode_item (429 samples, 0.03%)</title><rect x="76.6035%" y="565" width="0.0279%" height="15" fill="rgb(238,15,50)" fg:x="1178811" fg:w="429"/><text x="76.8535%" y="575.50"></text></g><g><title>mutex_lock (440 samples, 0.03%)</title><rect x="76.6314%" y="565" width="0.0286%" height="15" fill="rgb(215,221,48)" fg:x="1179240" fg:w="440"/><text x="76.8814%" y="575.50"></text></g><g><title>btrfs_delayed_update_inode (4,563 samples, 0.30%)</title><rect x="76.3718%" y="581" width="0.2965%" height="15" fill="rgb(236,73,3)" fg:x="1175245" fg:w="4563"/><text x="76.6218%" y="591.50"></text></g><g><title>_raw_spin_lock (182 samples, 0.01%)</title><rect x="76.6714%" y="565" width="0.0118%" height="15" fill="rgb(250,107,11)" fg:x="1179855" fg:w="182"/><text x="76.9214%" y="575.50"></text></g><g><title>btrfs_update_inode (5,326 samples, 0.35%)</title><rect x="76.3520%" y="597" width="0.3461%" height="15" fill="rgb(242,39,14)" fg:x="1174940" fg:w="5326"/><text x="76.6020%" y="607.50"></text></g><g><title>btrfs_update_root_times (458 samples, 0.03%)</title><rect x="76.6683%" y="581" width="0.0298%" height="15" fill="rgb(248,164,37)" fg:x="1179808" fg:w="458"/><text x="76.9183%" y="591.50"></text></g><g><title>ktime_get_real_ts64 (229 samples, 0.01%)</title><rect x="76.6832%" y="565" width="0.0149%" height="15" fill="rgb(217,60,12)" fg:x="1180037" fg:w="229"/><text x="76.9332%" y="575.50"></text></g><g><title>read_tsc (160 samples, 0.01%)</title><rect x="76.6877%" y="549" width="0.0104%" height="15" fill="rgb(240,125,29)" fg:x="1180106" fg:w="160"/><text x="76.9377%" y="559.50"></text></g><g><title>_raw_spin_lock (371 samples, 0.02%)</title><rect x="76.7690%" y="565" width="0.0241%" height="15" fill="rgb(208,207,28)" fg:x="1181358" fg:w="371"/><text x="77.0190%" y="575.50"></text></g><g><title>_raw_spin_lock (676 samples, 0.04%)</title><rect x="76.8386%" y="533" width="0.0439%" height="15" fill="rgb(209,159,27)" fg:x="1182429" fg:w="676"/><text x="77.0886%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (192 samples, 0.01%)</title><rect x="76.8701%" y="517" width="0.0125%" height="15" fill="rgb(251,176,53)" fg:x="1182913" fg:w="192"/><text x="77.1201%" y="527.50"></text></g><g><title>_raw_spin_lock (259 samples, 0.02%)</title><rect x="76.9659%" y="501" width="0.0168%" height="15" fill="rgb(211,85,7)" fg:x="1184388" fg:w="259"/><text x="77.2159%" y="511.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,542 samples, 0.10%)</title><rect x="76.8828%" y="533" width="0.1002%" height="15" fill="rgb(216,64,54)" fg:x="1183108" fg:w="1542"/><text x="77.1328%" y="543.50"></text></g><g><title>btrfs_reduce_alloc_profile (706 samples, 0.05%)</title><rect x="76.9371%" y="517" width="0.0459%" height="15" fill="rgb(217,54,24)" fg:x="1183944" fg:w="706"/><text x="77.1871%" y="527.50"></text></g><g><title>btrfs_get_alloc_profile (221 samples, 0.01%)</title><rect x="77.0035%" y="517" width="0.0144%" height="15" fill="rgb(208,206,53)" fg:x="1184966" fg:w="221"/><text x="77.2535%" y="527.50"></text></g><g><title>_raw_spin_lock (235 samples, 0.02%)</title><rect x="77.0334%" y="501" width="0.0153%" height="15" fill="rgb(251,74,39)" fg:x="1185426" fg:w="235"/><text x="77.2834%" y="511.50"></text></g><g><title>__reserve_bytes (3,620 samples, 0.24%)</title><rect x="76.8135%" y="549" width="0.2352%" height="15" fill="rgb(226,47,5)" fg:x="1182042" fg:w="3620"/><text x="77.0635%" y="559.50"></text></g><g><title>calc_available_free_space.isra.0 (1,012 samples, 0.07%)</title><rect x="76.9830%" y="533" width="0.0658%" height="15" fill="rgb(234,111,33)" fg:x="1184650" fg:w="1012"/><text x="77.2330%" y="543.50"></text></g><g><title>btrfs_reduce_alloc_profile (475 samples, 0.03%)</title><rect x="77.0179%" y="517" width="0.0309%" height="15" fill="rgb(251,14,10)" fg:x="1185187" fg:w="475"/><text x="77.2679%" y="527.50"></text></g><g><title>btrfs_block_rsv_add (4,397 samples, 0.29%)</title><rect x="76.7632%" y="581" width="0.2857%" height="15" fill="rgb(232,43,0)" fg:x="1181268" fg:w="4397"/><text x="77.0132%" y="591.50"></text></g><g><title>btrfs_reserve_metadata_bytes (3,936 samples, 0.26%)</title><rect x="76.7931%" y="565" width="0.2558%" height="15" fill="rgb(222,68,43)" fg:x="1181729" fg:w="3936"/><text x="77.0431%" y="575.50"></text></g><g><title>_raw_spin_lock (318 samples, 0.02%)</title><rect x="77.0821%" y="565" width="0.0207%" height="15" fill="rgb(217,24,23)" fg:x="1186175" fg:w="318"/><text x="77.3321%" y="575.50"></text></g><g><title>join_transaction (776 samples, 0.05%)</title><rect x="77.0529%" y="581" width="0.0504%" height="15" fill="rgb(229,209,14)" fg:x="1185727" fg:w="776"/><text x="77.3029%" y="591.50"></text></g><g><title>kmem_cache_alloc (620 samples, 0.04%)</title><rect x="77.1034%" y="581" width="0.0403%" height="15" fill="rgb(250,149,48)" fg:x="1186503" fg:w="620"/><text x="77.3534%" y="591.50"></text></g><g><title>_raw_spin_lock (471 samples, 0.03%)</title><rect x="77.1567%" y="565" width="0.0306%" height="15" fill="rgb(210,120,37)" fg:x="1187324" fg:w="471"/><text x="77.4067%" y="575.50"></text></g><g><title>btrfs_unlink (375,638 samples, 24.41%)</title><rect x="52.7782%" y="613" width="24.4104%" height="15" fill="rgb(210,21,8)" fg:x="812176" fg:w="375638"/><text x="53.0282%" y="623.50">btrfs_unlink</text></g><g><title>start_transaction (7,449 samples, 0.48%)</title><rect x="76.7045%" y="597" width="0.4841%" height="15" fill="rgb(243,145,7)" fg:x="1180365" fg:w="7449"/><text x="76.9545%" y="607.50"></text></g><g><title>wait_current_trans (691 samples, 0.04%)</title><rect x="77.1437%" y="581" width="0.0449%" height="15" fill="rgb(238,178,32)" fg:x="1187123" fg:w="691"/><text x="77.3937%" y="591.50"></text></g><g><title>_raw_spin_lock (230 samples, 0.01%)</title><rect x="77.1961%" y="597" width="0.0149%" height="15" fill="rgb(222,4,10)" fg:x="1187930" fg:w="230"/><text x="77.4461%" y="607.50"></text></g><g><title>d_delete (347 samples, 0.02%)</title><rect x="77.1886%" y="613" width="0.0225%" height="15" fill="rgb(239,7,37)" fg:x="1187814" fg:w="347"/><text x="77.4386%" y="623.50"></text></g><g><title>dentry_unlink_inode (382 samples, 0.02%)</title><rect x="77.2111%" y="613" width="0.0248%" height="15" fill="rgb(215,31,37)" fg:x="1188161" fg:w="382"/><text x="77.4611%" y="623.50"></text></g><g><title>down_write (940 samples, 0.06%)</title><rect x="77.2359%" y="613" width="0.0611%" height="15" fill="rgb(224,83,33)" fg:x="1188543" fg:w="940"/><text x="77.4859%" y="623.50"></text></g><g><title>fsnotify (684 samples, 0.04%)</title><rect x="77.2970%" y="613" width="0.0444%" height="15" fill="rgb(239,55,3)" fg:x="1189483" fg:w="684"/><text x="77.5470%" y="623.50"></text></g><g><title>ihold (225 samples, 0.01%)</title><rect x="77.3415%" y="613" width="0.0146%" height="15" fill="rgb(247,92,11)" fg:x="1190167" fg:w="225"/><text x="77.5915%" y="623.50"></text></g><g><title>iput.part.0 (491 samples, 0.03%)</title><rect x="77.3587%" y="613" width="0.0319%" height="15" fill="rgb(239,200,7)" fg:x="1190432" fg:w="491"/><text x="77.6087%" y="623.50"></text></g><g><title>_atomic_dec_and_lock (425 samples, 0.03%)</title><rect x="77.3630%" y="597" width="0.0276%" height="15" fill="rgb(227,115,8)" fg:x="1190498" fg:w="425"/><text x="77.6130%" y="607.50"></text></g><g><title>btrfs_permission (199 samples, 0.01%)</title><rect x="77.4106%" y="581" width="0.0129%" height="15" fill="rgb(215,189,27)" fg:x="1191230" fg:w="199"/><text x="77.6606%" y="591.50"></text></g><g><title>inode_permission.part.0 (361 samples, 0.02%)</title><rect x="77.4024%" y="597" width="0.0235%" height="15" fill="rgb(251,216,39)" fg:x="1191104" fg:w="361"/><text x="77.6524%" y="607.50"></text></g><g><title>may_delete (560 samples, 0.04%)</title><rect x="77.3906%" y="613" width="0.0364%" height="15" fill="rgb(207,29,47)" fg:x="1190923" fg:w="560"/><text x="77.6406%" y="623.50"></text></g><g><title>do_unlinkat (395,033 samples, 25.67%)</title><rect x="51.7833%" y="645" width="25.6707%" height="15" fill="rgb(210,71,34)" fg:x="796866" fg:w="395033"/><text x="52.0333%" y="655.50">do_unlinkat</text></g><g><title>vfs_unlink (380,282 samples, 24.71%)</title><rect x="52.7419%" y="629" width="24.7121%" height="15" fill="rgb(253,217,51)" fg:x="811617" fg:w="380282"/><text x="52.9919%" y="639.50">vfs_unlink</text></g><g><title>up_write (273 samples, 0.02%)</title><rect x="77.4363%" y="613" width="0.0177%" height="15" fill="rgb(222,117,46)" fg:x="1191626" fg:w="273"/><text x="77.6863%" y="623.50"></text></g><g><title>do_syscall_64 (477,912 samples, 31.06%)</title><rect x="46.4061%" y="661" width="31.0565%" height="15" fill="rgb(226,132,6)" fg:x="714119" fg:w="477912"/><text x="46.6561%" y="671.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (479,194 samples, 31.14%)</title><rect x="46.3881%" y="677" width="31.1398%" height="15" fill="rgb(254,145,51)" fg:x="713842" fg:w="479194"/><text x="46.6381%" y="687.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (1,005 samples, 0.07%)</title><rect x="77.4626%" y="661" width="0.0653%" height="15" fill="rgb(231,199,27)" fg:x="1192031" fg:w="1005"/><text x="77.7126%" y="671.50"></text></g><g><title>exit_to_user_mode_prepare (905 samples, 0.06%)</title><rect x="77.4691%" y="645" width="0.0588%" height="15" fill="rgb(245,158,14)" fg:x="1192131" fg:w="905"/><text x="77.7191%" y="655.50"></text></g><g><title>switch_fpu_return (620 samples, 0.04%)</title><rect x="77.4876%" y="629" width="0.0403%" height="15" fill="rgb(240,113,14)" fg:x="1192416" fg:w="620"/><text x="77.7376%" y="639.50"></text></g><g><title>copy_kernel_to_fpregs (251 samples, 0.02%)</title><rect x="77.5116%" y="613" width="0.0163%" height="15" fill="rgb(210,20,13)" fg:x="1192785" fg:w="251"/><text x="77.7616%" y="623.50"></text></g><g><title>syscall_return_via_sysret (271 samples, 0.02%)</title><rect x="77.5312%" y="677" width="0.0176%" height="15" fill="rgb(241,144,13)" fg:x="1193086" fg:w="271"/><text x="77.7812%" y="687.50"></text></g><g><title>__GI_unlinkat (480,973 samples, 31.26%)</title><rect x="46.2934%" y="693" width="31.2554%" height="15" fill="rgb(235,43,34)" fg:x="712385" fg:w="480973"/><text x="46.5434%" y="703.50">__GI_unlinkat</text></g><g><title>_int_free (230 samples, 0.01%)</title><rect x="77.5562%" y="677" width="0.0149%" height="15" fill="rgb(208,36,20)" fg:x="1193472" fg:w="230"/><text x="77.8062%" y="687.50"></text></g><g><title>__closedir (325 samples, 0.02%)</title><rect x="77.5501%" y="693" width="0.0211%" height="15" fill="rgb(239,204,10)" fg:x="1193378" fg:w="325"/><text x="77.8001%" y="703.50"></text></g><g><title>__dirfd (227 samples, 0.01%)</title><rect x="77.5714%" y="693" width="0.0148%" height="15" fill="rgb(217,84,43)" fg:x="1193705" fg:w="227"/><text x="77.8214%" y="703.50"></text></g><g><title>__errno_location (249 samples, 0.02%)</title><rect x="77.5861%" y="693" width="0.0162%" height="15" fill="rgb(241,170,50)" fg:x="1193932" fg:w="249"/><text x="77.8361%" y="703.50"></text></g><g><title>__x64_sys_fcntl (168 samples, 0.01%)</title><rect x="77.6064%" y="613" width="0.0109%" height="15" fill="rgb(226,205,29)" fg:x="1194244" fg:w="168"/><text x="77.8564%" y="623.50"></text></g><g><title>do_syscall_64 (177 samples, 0.01%)</title><rect x="77.6059%" y="629" width="0.0115%" height="15" fill="rgb(233,113,1)" fg:x="1194236" fg:w="177"/><text x="77.8559%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (201 samples, 0.01%)</title><rect x="77.6053%" y="645" width="0.0131%" height="15" fill="rgb(253,98,13)" fg:x="1194227" fg:w="201"/><text x="77.8553%" y="655.50"></text></g><g><title>__GI___fcntl64_nocancel (246 samples, 0.02%)</title><rect x="77.6027%" y="677" width="0.0160%" height="15" fill="rgb(211,115,12)" fg:x="1194187" fg:w="246"/><text x="77.8527%" y="687.50"></text></g><g><title>__fcntl64_nocancel_adjusted (240 samples, 0.02%)</title><rect x="77.6031%" y="661" width="0.0156%" height="15" fill="rgb(208,12,16)" fg:x="1194193" fg:w="240"/><text x="77.8531%" y="671.50"></text></g><g><title>btrfs_getattr (171 samples, 0.01%)</title><rect x="77.6347%" y="597" width="0.0111%" height="15" fill="rgb(237,193,54)" fg:x="1194679" fg:w="171"/><text x="77.8847%" y="607.50"></text></g><g><title>__do_sys_newfstat (485 samples, 0.03%)</title><rect x="77.6240%" y="629" width="0.0315%" height="15" fill="rgb(243,22,42)" fg:x="1194514" fg:w="485"/><text x="77.8740%" y="639.50"></text></g><g><title>vfs_fstat (365 samples, 0.02%)</title><rect x="77.6318%" y="613" width="0.0237%" height="15" fill="rgb(233,151,36)" fg:x="1194634" fg:w="365"/><text x="77.8818%" y="623.50"></text></g><g><title>do_syscall_64 (499 samples, 0.03%)</title><rect x="77.6234%" y="645" width="0.0324%" height="15" fill="rgb(237,57,45)" fg:x="1194506" fg:w="499"/><text x="77.8734%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (520 samples, 0.03%)</title><rect x="77.6230%" y="661" width="0.0338%" height="15" fill="rgb(221,88,17)" fg:x="1194499" fg:w="520"/><text x="77.8730%" y="671.50"></text></g><g><title>__GI___fxstat (604 samples, 0.04%)</title><rect x="77.6187%" y="677" width="0.0393%" height="15" fill="rgb(230,79,15)" fg:x="1194433" fg:w="604"/><text x="77.8687%" y="687.50"></text></g><g><title>__GI___fcntl64_nocancel (186 samples, 0.01%)</title><rect x="77.6592%" y="661" width="0.0121%" height="15" fill="rgb(213,57,13)" fg:x="1195056" fg:w="186"/><text x="77.9092%" y="671.50"></text></g><g><title>__fcntl64_nocancel_adjusted (181 samples, 0.01%)</title><rect x="77.6595%" y="645" width="0.0118%" height="15" fill="rgb(222,116,39)" fg:x="1195061" fg:w="181"/><text x="77.9095%" y="655.50"></text></g><g><title>malloc_consolidate (199 samples, 0.01%)</title><rect x="77.6986%" y="629" width="0.0129%" height="15" fill="rgb(245,107,2)" fg:x="1195663" fg:w="199"/><text x="77.9486%" y="639.50"></text></g><g><title>_int_malloc (487 samples, 0.03%)</title><rect x="77.6824%" y="645" width="0.0316%" height="15" fill="rgb(238,1,10)" fg:x="1195413" fg:w="487"/><text x="77.9324%" y="655.50"></text></g><g><title>__GI___libc_malloc (659 samples, 0.04%)</title><rect x="77.6713%" y="661" width="0.0428%" height="15" fill="rgb(249,4,48)" fg:x="1195242" fg:w="659"/><text x="77.9213%" y="671.50"></text></g><g><title>__fdopendir (1,759 samples, 0.11%)</title><rect x="77.6023%" y="693" width="0.1143%" height="15" fill="rgb(223,151,18)" fg:x="1194181" fg:w="1759"/><text x="77.8523%" y="703.50"></text></g><g><title>__alloc_dir (903 samples, 0.06%)</title><rect x="77.6579%" y="677" width="0.0587%" height="15" fill="rgb(227,65,43)" fg:x="1195037" fg:w="903"/><text x="77.9079%" y="687.50"></text></g><g><title>__alloc_fd (171 samples, 0.01%)</title><rect x="77.7371%" y="613" width="0.0111%" height="15" fill="rgb(218,40,45)" fg:x="1196255" fg:w="171"/><text x="77.9871%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (197 samples, 0.01%)</title><rect x="77.7758%" y="533" width="0.0128%" height="15" fill="rgb(252,121,31)" fg:x="1196850" fg:w="197"/><text x="78.0258%" y="543.50"></text></g><g><title>kmem_cache_alloc (591 samples, 0.04%)</title><rect x="77.7683%" y="549" width="0.0384%" height="15" fill="rgb(219,158,43)" fg:x="1196735" fg:w="591"/><text x="78.0183%" y="559.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (273 samples, 0.02%)</title><rect x="77.7890%" y="533" width="0.0177%" height="15" fill="rgb(231,162,42)" fg:x="1197053" fg:w="273"/><text x="78.0390%" y="543.50"></text></g><g><title>__alloc_file (842 samples, 0.05%)</title><rect x="77.7641%" y="565" width="0.0547%" height="15" fill="rgb(217,179,25)" fg:x="1196670" fg:w="842"/><text x="78.0141%" y="575.50"></text></g><g><title>security_file_alloc (186 samples, 0.01%)</title><rect x="77.8067%" y="549" width="0.0121%" height="15" fill="rgb(206,212,31)" fg:x="1197326" fg:w="186"/><text x="78.0567%" y="559.50"></text></g><g><title>alloc_empty_file (889 samples, 0.06%)</title><rect x="77.7621%" y="581" width="0.0578%" height="15" fill="rgb(235,144,12)" fg:x="1196640" fg:w="889"/><text x="78.0121%" y="591.50"></text></g><g><title>memset_erms (155 samples, 0.01%)</title><rect x="77.8497%" y="533" width="0.0101%" height="15" fill="rgb(213,51,10)" fg:x="1197988" fg:w="155"/><text x="78.0997%" y="543.50"></text></g><g><title>btrfs_opendir (438 samples, 0.03%)</title><rect x="77.8340%" y="565" width="0.0285%" height="15" fill="rgb(231,145,14)" fg:x="1197746" fg:w="438"/><text x="78.0840%" y="575.50"></text></g><g><title>kmem_cache_alloc_trace (384 samples, 0.02%)</title><rect x="77.8375%" y="549" width="0.0250%" height="15" fill="rgb(235,15,28)" fg:x="1197800" fg:w="384"/><text x="78.0875%" y="559.50"></text></g><g><title>do_dentry_open (1,050 samples, 0.07%)</title><rect x="77.8257%" y="581" width="0.0682%" height="15" fill="rgb(237,206,10)" fg:x="1197618" fg:w="1050"/><text x="78.0757%" y="591.50"></text></g><g><title>security_file_open (328 samples, 0.02%)</title><rect x="77.8726%" y="565" width="0.0213%" height="15" fill="rgb(236,227,27)" fg:x="1198340" fg:w="328"/><text x="78.1226%" y="575.50"></text></g><g><title>lookup_fast (168 samples, 0.01%)</title><rect x="77.9016%" y="581" width="0.0109%" height="15" fill="rgb(246,83,35)" fg:x="1198786" fg:w="168"/><text x="78.1516%" y="591.50"></text></g><g><title>do_filp_open (2,785 samples, 0.18%)</title><rect x="77.7524%" y="613" width="0.1810%" height="15" fill="rgb(220,136,24)" fg:x="1196491" fg:w="2785"/><text x="78.0024%" y="623.50"></text></g><g><title>path_openat (2,743 samples, 0.18%)</title><rect x="77.7552%" y="597" width="0.1783%" height="15" fill="rgb(217,3,25)" fg:x="1196533" fg:w="2743"/><text x="78.0052%" y="607.50"></text></g><g><title>kmem_cache_alloc (174 samples, 0.01%)</title><rect x="77.9428%" y="597" width="0.0113%" height="15" fill="rgb(239,24,14)" fg:x="1199421" fg:w="174"/><text x="78.1928%" y="607.50"></text></g><g><title>getname_flags.part.0 (380 samples, 0.02%)</title><rect x="77.9420%" y="613" width="0.0247%" height="15" fill="rgb(244,16,53)" fg:x="1199408" fg:w="380"/><text x="78.1920%" y="623.50"></text></g><g><title>strncpy_from_user (193 samples, 0.01%)</title><rect x="77.9541%" y="597" width="0.0125%" height="15" fill="rgb(208,175,44)" fg:x="1199595" fg:w="193"/><text x="78.2041%" y="607.50"></text></g><g><title>__x64_sys_openat (3,690 samples, 0.24%)</title><rect x="77.7309%" y="645" width="0.2398%" height="15" fill="rgb(252,18,48)" fg:x="1196159" fg:w="3690"/><text x="77.9809%" y="655.50"></text></g><g><title>do_sys_openat2 (3,648 samples, 0.24%)</title><rect x="77.7336%" y="629" width="0.2371%" height="15" fill="rgb(234,199,32)" fg:x="1196201" fg:w="3648"/><text x="77.9836%" y="639.50"></text></g><g><title>do_syscall_64 (3,729 samples, 0.24%)</title><rect x="77.7289%" y="661" width="0.2423%" height="15" fill="rgb(225,77,54)" fg:x="1196129" fg:w="3729"/><text x="77.9789%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,761 samples, 0.24%)</title><rect x="77.7283%" y="677" width="0.2444%" height="15" fill="rgb(225,42,25)" fg:x="1196119" fg:w="3761"/><text x="77.9783%" y="687.50"></text></g><g><title>__libc_openat64 (3,927 samples, 0.26%)</title><rect x="77.7188%" y="693" width="0.2552%" height="15" fill="rgb(242,227,46)" fg:x="1195974" fg:w="3927"/><text x="77.9688%" y="703.50"></text></g><g><title>_int_free (916 samples, 0.06%)</title><rect x="77.9788%" y="693" width="0.0595%" height="15" fill="rgb(246,197,35)" fg:x="1199975" fg:w="916"/><text x="78.2288%" y="703.50"></text></g><g><title>free@plt (296 samples, 0.02%)</title><rect x="78.0438%" y="693" width="0.0192%" height="15" fill="rgb(215,159,26)" fg:x="1200975" fg:w="296"/><text x="78.2938%" y="703.50"></text></g><g><title>ThreadStateTransition::transition_from_native (232 samples, 0.02%)</title><rect x="78.0801%" y="677" width="0.0151%" height="15" fill="rgb(212,194,50)" fg:x="1201533" fg:w="232"/><text x="78.3301%" y="687.50"></text></g><g><title>jni_ExceptionOccurred (496 samples, 0.03%)</title><rect x="78.0631%" y="693" width="0.0322%" height="15" fill="rgb(246,132,1)" fg:x="1201271" fg:w="496"/><text x="78.3131%" y="703.50"></text></g><g><title>HandleMark::pop_and_restore (209 samples, 0.01%)</title><rect x="78.1543%" y="677" width="0.0136%" height="15" fill="rgb(217,71,7)" fg:x="1202675" fg:w="209"/><text x="78.4043%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (1,261 samples, 0.08%)</title><rect x="78.1693%" y="677" width="0.0819%" height="15" fill="rgb(252,59,32)" fg:x="1202906" fg:w="1261"/><text x="78.4193%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,001 samples, 0.07%)</title><rect x="78.2512%" y="677" width="0.0650%" height="15" fill="rgb(253,204,25)" fg:x="1204167" fg:w="1001"/><text x="78.5012%" y="687.50"></text></g><g><title>[libc-2.31.so] (729 samples, 0.05%)</title><rect x="78.3163%" y="677" width="0.0474%" height="15" fill="rgb(232,21,16)" fg:x="1205168" fg:w="729"/><text x="78.5663%" y="687.50"></text></g><g><title>check_bounds (874 samples, 0.06%)</title><rect x="78.3646%" y="677" width="0.0568%" height="15" fill="rgb(248,90,29)" fg:x="1205912" fg:w="874"/><text x="78.6146%" y="687.50"></text></g><g><title>jni_GetByteArrayRegion (5,580 samples, 0.36%)</title><rect x="78.0954%" y="693" width="0.3626%" height="15" fill="rgb(249,223,7)" fg:x="1201768" fg:w="5580"/><text x="78.3454%" y="703.50"></text></g><g><title>memmove@plt (562 samples, 0.04%)</title><rect x="78.4214%" y="677" width="0.0365%" height="15" fill="rgb(231,119,42)" fg:x="1206786" fg:w="562"/><text x="78.6714%" y="687.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (1,737 samples, 0.11%)</title><rect x="78.5321%" y="661" width="0.1129%" height="15" fill="rgb(215,41,35)" fg:x="1208489" fg:w="1737"/><text x="78.7821%" y="671.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (1,586 samples, 0.10%)</title><rect x="78.5419%" y="645" width="0.1031%" height="15" fill="rgb(220,44,45)" fg:x="1208640" fg:w="1586"/><text x="78.7919%" y="655.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (1,963 samples, 0.13%)</title><rect x="78.5176%" y="677" width="0.1276%" height="15" fill="rgb(253,197,36)" fg:x="1208266" fg:w="1963"/><text x="78.7676%" y="687.50"></text></g><g><title>HandleMark::pop_and_restore (715 samples, 0.05%)</title><rect x="78.6452%" y="677" width="0.0465%" height="15" fill="rgb(245,225,54)" fg:x="1210229" fg:w="715"/><text x="78.8952%" y="687.50"></text></g><g><title>JNIHandles::make_local (845 samples, 0.05%)</title><rect x="78.6916%" y="677" width="0.0549%" height="15" fill="rgb(239,94,37)" fg:x="1210944" fg:w="845"/><text x="78.9416%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (926 samples, 0.06%)</title><rect x="78.7484%" y="677" width="0.0602%" height="15" fill="rgb(242,217,10)" fg:x="1211818" fg:w="926"/><text x="78.9984%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,071 samples, 0.07%)</title><rect x="78.8086%" y="677" width="0.0696%" height="15" fill="rgb(250,193,7)" fg:x="1212744" fg:w="1071"/><text x="79.0586%" y="687.50"></text></g><g><title>jni_GetObjectField (6,479 samples, 0.42%)</title><rect x="78.4580%" y="693" width="0.4210%" height="15" fill="rgb(230,104,19)" fg:x="1207349" fg:w="6479"/><text x="78.7080%" y="703.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 573558ul&gt;::oop_access_barrier (376 samples, 0.02%)</title><rect x="78.9602%" y="677" width="0.0244%" height="15" fill="rgb(230,181,4)" fg:x="1215076" fg:w="376"/><text x="79.2102%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (901 samples, 0.06%)</title><rect x="78.9864%" y="677" width="0.0586%" height="15" fill="rgb(216,219,49)" fg:x="1215480" fg:w="901"/><text x="79.2364%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,179 samples, 0.08%)</title><rect x="79.0450%" y="677" width="0.0766%" height="15" fill="rgb(254,144,0)" fg:x="1216381" fg:w="1179"/><text x="79.2950%" y="687.50"></text></g><g><title>jni_GetStringLength (3,744 samples, 0.24%)</title><rect x="78.8791%" y="693" width="0.2433%" height="15" fill="rgb(205,209,38)" fg:x="1213828" fg:w="3744"/><text x="79.1291%" y="703.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (539 samples, 0.04%)</title><rect x="79.4148%" y="629" width="0.0350%" height="15" fill="rgb(240,21,42)" fg:x="1222072" fg:w="539"/><text x="79.6648%" y="639.50"></text></g><g><title>ThreadHeapSampler::enabled (211 samples, 0.01%)</title><rect x="79.4774%" y="613" width="0.0137%" height="15" fill="rgb(241,132,3)" fg:x="1223035" fg:w="211"/><text x="79.7274%" y="623.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (642 samples, 0.04%)</title><rect x="79.4498%" y="629" width="0.0417%" height="15" fill="rgb(225,14,2)" fg:x="1222611" fg:w="642"/><text x="79.6998%" y="639.50"></text></g><g><title>[libc-2.31.so] (313 samples, 0.02%)</title><rect x="79.5186%" y="613" width="0.0203%" height="15" fill="rgb(210,141,35)" fg:x="1223670" fg:w="313"/><text x="79.7686%" y="623.50"></text></g><g><title>ObjAllocator::initialize (823 samples, 0.05%)</title><rect x="79.4921%" y="629" width="0.0535%" height="15" fill="rgb(251,14,44)" fg:x="1223262" fg:w="823"/><text x="79.7421%" y="639.50"></text></g><g><title>__tls_get_addr (842 samples, 0.05%)</title><rect x="79.5457%" y="629" width="0.0547%" height="15" fill="rgb(247,48,18)" fg:x="1224086" fg:w="842"/><text x="79.7957%" y="639.50"></text></g><g><title>MemAllocator::allocate (3,775 samples, 0.25%)</title><rect x="79.3647%" y="645" width="0.2453%" height="15" fill="rgb(225,0,40)" fg:x="1221302" fg:w="3775"/><text x="79.6147%" y="655.50"></text></g><g><title>CollectedHeap::obj_allocate (3,943 samples, 0.26%)</title><rect x="79.3548%" y="661" width="0.2562%" height="15" fill="rgb(221,31,33)" fg:x="1221149" fg:w="3943"/><text x="79.6048%" y="671.50"></text></g><g><title>InstanceKlass::allocate_instance (4,960 samples, 0.32%)</title><rect x="79.2890%" y="677" width="0.3223%" height="15" fill="rgb(237,42,40)" fg:x="1220136" fg:w="4960"/><text x="79.5390%" y="687.50"></text></g><g><title>JNIHandles::make_local (831 samples, 0.05%)</title><rect x="79.6117%" y="677" width="0.0540%" height="15" fill="rgb(233,51,29)" fg:x="1225103" fg:w="831"/><text x="79.8617%" y="687.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (645 samples, 0.04%)</title><rect x="79.6718%" y="677" width="0.0419%" height="15" fill="rgb(226,58,20)" fg:x="1226027" fg:w="645"/><text x="79.9218%" y="687.50"></text></g><g><title>ThreadStateTransition::transition_from_native (1,255 samples, 0.08%)</title><rect x="79.7137%" y="677" width="0.0816%" height="15" fill="rgb(208,98,7)" fg:x="1226672" fg:w="1255"/><text x="79.9637%" y="687.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (282 samples, 0.02%)</title><rect x="79.8767%" y="661" width="0.0183%" height="15" fill="rgb(228,143,44)" fg:x="1229180" fg:w="282"/><text x="80.1267%" y="671.50"></text></g><g><title>InstanceKlass::check_valid_for_instantiation (256 samples, 0.02%)</title><rect x="79.8950%" y="661" width="0.0166%" height="15" fill="rgb(246,55,38)" fg:x="1229462" fg:w="256"/><text x="80.1450%" y="671.50"></text></g><g><title>InstanceKlass::initialize (178 samples, 0.01%)</title><rect x="79.9116%" y="661" width="0.0116%" height="15" fill="rgb(247,87,16)" fg:x="1229718" fg:w="178"/><text x="80.1616%" y="671.50"></text></g><g><title>alloc_object (2,850 samples, 0.19%)</title><rect x="79.7953%" y="677" width="0.1852%" height="15" fill="rgb(234,129,42)" fg:x="1227928" fg:w="2850"/><text x="80.0453%" y="687.50"></text></g><g><title>oopDesc::metadata_field (748 samples, 0.05%)</title><rect x="79.9319%" y="661" width="0.0486%" height="15" fill="rgb(220,82,16)" fg:x="1230030" fg:w="748"/><text x="80.1819%" y="671.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (3,245 samples, 0.21%)</title><rect x="80.1414%" y="661" width="0.2109%" height="15" fill="rgb(211,88,4)" fg:x="1233253" fg:w="3245"/><text x="80.3914%" y="671.50"></text></g><g><title>CompilationPolicy::compile_if_required (176 samples, 0.01%)</title><rect x="80.5191%" y="645" width="0.0114%" height="15" fill="rgb(248,151,21)" fg:x="1239066" fg:w="176"/><text x="80.7691%" y="655.50"></text></g><g><title>HandleMark::initialize (203 samples, 0.01%)</title><rect x="80.5306%" y="645" width="0.0132%" height="15" fill="rgb(238,163,6)" fg:x="1239242" fg:w="203"/><text x="80.7806%" y="655.50"></text></g><g><title>HandleMark::~HandleMark (181 samples, 0.01%)</title><rect x="80.5437%" y="645" width="0.0118%" height="15" fill="rgb(209,183,11)" fg:x="1239445" fg:w="181"/><text x="80.7937%" y="655.50"></text></g><g><title>JNIHandleBlock::release_block (436 samples, 0.03%)</title><rect x="80.5561%" y="645" width="0.0283%" height="15" fill="rgb(219,37,20)" fg:x="1239635" fg:w="436"/><text x="80.8061%" y="655.50"></text></g><g><title>JavaCallArguments::parameters (770 samples, 0.05%)</title><rect x="80.5844%" y="645" width="0.0500%" height="15" fill="rgb(210,158,4)" fg:x="1240071" fg:w="770"/><text x="80.8344%" y="655.50"></text></g><g><title>JNIHandleBlock::allocate_block (545 samples, 0.04%)</title><rect x="80.7282%" y="629" width="0.0354%" height="15" fill="rgb(221,167,53)" fg:x="1242284" fg:w="545"/><text x="80.9782%" y="639.50"></text></g><g><title>ThreadShadow::clear_pending_exception (411 samples, 0.03%)</title><rect x="80.7654%" y="629" width="0.0267%" height="15" fill="rgb(237,151,45)" fg:x="1242856" fg:w="411"/><text x="81.0154%" y="639.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (2,443 samples, 0.16%)</title><rect x="80.6345%" y="645" width="0.1588%" height="15" fill="rgb(231,39,3)" fg:x="1240841" fg:w="2443"/><text x="80.8845%" y="655.50"></text></g><g><title>AbstractInterpreter::size_top_interpreter_activation (184 samples, 0.01%)</title><rect x="80.8519%" y="629" width="0.0120%" height="15" fill="rgb(212,167,28)" fg:x="1244187" fg:w="184"/><text x="81.1019%" y="639.50"></text></g><g><title>JavaCalls::call_helper (7,863 samples, 0.51%)</title><rect x="80.3552%" y="661" width="0.5110%" height="15" fill="rgb(232,178,8)" fg:x="1236543" fg:w="7863"/><text x="80.6052%" y="671.50"></text></g><g><title>os::stack_shadow_pages_available (1,036 samples, 0.07%)</title><rect x="80.7988%" y="645" width="0.0673%" height="15" fill="rgb(225,151,20)" fg:x="1243370" fg:w="1036"/><text x="81.0488%" y="655.50"></text></g><g><title>methodHandle::operator= (336 samples, 0.02%)</title><rect x="80.8693%" y="661" width="0.0218%" height="15" fill="rgb(238,3,37)" fg:x="1244455" fg:w="336"/><text x="81.1193%" y="671.50"></text></g><g><title>methodHandle::~methodHandle (676 samples, 0.04%)</title><rect x="80.8911%" y="661" width="0.0439%" height="15" fill="rgb(251,147,42)" fg:x="1244791" fg:w="676"/><text x="81.1411%" y="671.50"></text></g><g><title>jni_invoke_nonstatic (15,268 samples, 0.99%)</title><rect x="79.9823%" y="677" width="0.9922%" height="15" fill="rgb(208,173,10)" fg:x="1230805" fg:w="15268"/><text x="80.2323%" y="687.50"></text></g><g><title>resource_allocate_bytes (575 samples, 0.04%)</title><rect x="80.9371%" y="661" width="0.0374%" height="15" fill="rgb(246,225,4)" fg:x="1245498" fg:w="575"/><text x="81.1871%" y="671.50"></text></g><g><title>jni_NewObjectV (28,520 samples, 1.85%)</title><rect x="79.1226%" y="693" width="1.8533%" height="15" fill="rgb(248,102,6)" fg:x="1217576" fg:w="28520"/><text x="79.3726%" y="703.50">j..</text></g><g><title>operator delete@plt (627 samples, 0.04%)</title><rect x="80.9891%" y="693" width="0.0407%" height="15" fill="rgb(232,6,21)" fg:x="1246298" fg:w="627"/><text x="81.2391%" y="703.50"></text></g><g><title>operator delete[] (209 samples, 0.01%)</title><rect x="81.0298%" y="693" width="0.0136%" height="15" fill="rgb(221,179,22)" fg:x="1246925" fg:w="209"/><text x="81.2798%" y="703.50"></text></g><g><title>__GI___libc_malloc (1,836 samples, 0.12%)</title><rect x="81.0452%" y="677" width="0.1193%" height="15" fill="rgb(252,50,20)" fg:x="1247162" fg:w="1836"/><text x="81.2952%" y="687.50"></text></g><g><title>tcache_get (765 samples, 0.05%)</title><rect x="81.1148%" y="661" width="0.0497%" height="15" fill="rgb(222,56,38)" fg:x="1248233" fg:w="765"/><text x="81.3648%" y="671.50"></text></g><g><title>operator new (2,252 samples, 0.15%)</title><rect x="81.0434%" y="693" width="0.1463%" height="15" fill="rgb(206,193,29)" fg:x="1247134" fg:w="2252"/><text x="81.2934%" y="703.50"></text></g><g><title>malloc@plt (387 samples, 0.03%)</title><rect x="81.1646%" y="677" width="0.0251%" height="15" fill="rgb(239,192,45)" fg:x="1248999" fg:w="387"/><text x="81.4146%" y="687.50"></text></g><g><title>operator new@plt (505 samples, 0.03%)</title><rect x="81.1897%" y="693" width="0.0328%" height="15" fill="rgb(254,18,36)" fg:x="1249386" fg:w="505"/><text x="81.4397%" y="703.50"></text></g><g><title>operator new[] (186 samples, 0.01%)</title><rect x="81.2226%" y="693" width="0.0121%" height="15" fill="rgb(221,127,11)" fg:x="1249891" fg:w="186"/><text x="81.4726%" y="703.50"></text></g><g><title>_int_malloc (367 samples, 0.02%)</title><rect x="81.2684%" y="645" width="0.0238%" height="15" fill="rgb(234,146,35)" fg:x="1250597" fg:w="367"/><text x="81.5184%" y="655.50"></text></g><g><title>__GI___libc_malloc (752 samples, 0.05%)</title><rect x="81.2484%" y="661" width="0.0489%" height="15" fill="rgb(254,201,37)" fg:x="1250288" fg:w="752"/><text x="81.4984%" y="671.50"></text></g><g><title>operator new (785 samples, 0.05%)</title><rect x="81.2479%" y="677" width="0.0510%" height="15" fill="rgb(211,202,23)" fg:x="1250281" fg:w="785"/><text x="81.4979%" y="687.50"></text></g><g><title>std::string::_Rep::_S_create (890 samples, 0.06%)</title><rect x="81.2441%" y="693" width="0.0578%" height="15" fill="rgb(237,91,2)" fg:x="1250222" fg:w="890"/><text x="81.4941%" y="703.50"></text></g><g><title>[libunix_jni.so] (1,046,001 samples, 67.97%)</title><rect x="13.3289%" y="709" width="67.9730%" height="15" fill="rgb(226,228,36)" fg:x="205112" fg:w="1046001"/><text x="13.5789%" y="719.50">[libunix_jni.so]</text></g><g><title>TieredThresholdPolicy::event (198 samples, 0.01%)</title><rect x="89.9351%" y="661" width="0.0129%" height="15" fill="rgb(213,63,50)" fg:x="1383963" fg:w="198"/><text x="90.1851%" y="671.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (180 samples, 0.01%)</title><rect x="89.9362%" y="645" width="0.0117%" height="15" fill="rgb(235,194,19)" fg:x="1383981" fg:w="180"/><text x="90.1862%" y="655.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (252 samples, 0.02%)</title><rect x="89.9317%" y="693" width="0.0164%" height="15" fill="rgb(207,204,18)" fg:x="1383911" fg:w="252"/><text x="90.1817%" y="703.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (252 samples, 0.02%)</title><rect x="89.9317%" y="677" width="0.0164%" height="15" fill="rgb(248,8,7)" fg:x="1383911" fg:w="252"/><text x="90.1817%" y="687.50"></text></g><g><title>LinkResolver::resolve_invoke (239 samples, 0.02%)</title><rect x="89.9695%" y="661" width="0.0155%" height="15" fill="rgb(223,145,47)" fg:x="1384493" fg:w="239"/><text x="90.2195%" y="671.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (327 samples, 0.02%)</title><rect x="89.9654%" y="677" width="0.0212%" height="15" fill="rgb(228,84,11)" fg:x="1384430" fg:w="327"/><text x="90.2154%" y="687.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (487 samples, 0.03%)</title><rect x="89.9623%" y="693" width="0.0316%" height="15" fill="rgb(218,76,45)" fg:x="1384382" fg:w="487"/><text x="90.2123%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (190 samples, 0.01%)</title><rect x="90.0325%" y="437" width="0.0123%" height="15" fill="rgb(223,80,15)" fg:x="1385463" fg:w="190"/><text x="90.2825%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (188 samples, 0.01%)</title><rect x="90.0327%" y="421" width="0.0122%" height="15" fill="rgb(219,218,33)" fg:x="1385465" fg:w="188"/><text x="90.2827%" y="431.50"></text></g><g><title>native_write_msr (188 samples, 0.01%)</title><rect x="90.0327%" y="405" width="0.0122%" height="15" fill="rgb(208,51,11)" fg:x="1385465" fg:w="188"/><text x="90.2827%" y="415.50"></text></g><g><title>finish_task_switch (205 samples, 0.01%)</title><rect x="90.0321%" y="453" width="0.0133%" height="15" fill="rgb(229,165,39)" fg:x="1385456" fg:w="205"/><text x="90.2821%" y="463.50"></text></g><g><title>futex_wait_queue_me (212 samples, 0.01%)</title><rect x="90.0318%" y="501" width="0.0138%" height="15" fill="rgb(241,100,24)" fg:x="1385452" fg:w="212"/><text x="90.2818%" y="511.50"></text></g><g><title>schedule (210 samples, 0.01%)</title><rect x="90.0320%" y="485" width="0.0136%" height="15" fill="rgb(228,14,23)" fg:x="1385454" fg:w="210"/><text x="90.2820%" y="495.50"></text></g><g><title>__schedule (210 samples, 0.01%)</title><rect x="90.0320%" y="469" width="0.0136%" height="15" fill="rgb(247,116,52)" fg:x="1385454" fg:w="210"/><text x="90.2820%" y="479.50"></text></g><g><title>do_syscall_64 (217 samples, 0.01%)</title><rect x="90.0316%" y="565" width="0.0141%" height="15" fill="rgb(216,149,33)" fg:x="1385448" fg:w="217"/><text x="90.2816%" y="575.50"></text></g><g><title>__x64_sys_futex (217 samples, 0.01%)</title><rect x="90.0316%" y="549" width="0.0141%" height="15" fill="rgb(238,142,29)" fg:x="1385448" fg:w="217"/><text x="90.2816%" y="559.50"></text></g><g><title>do_futex (215 samples, 0.01%)</title><rect x="90.0317%" y="533" width="0.0140%" height="15" fill="rgb(224,83,40)" fg:x="1385450" fg:w="215"/><text x="90.2817%" y="543.50"></text></g><g><title>futex_wait (214 samples, 0.01%)</title><rect x="90.0318%" y="517" width="0.0139%" height="15" fill="rgb(234,165,11)" fg:x="1385451" fg:w="214"/><text x="90.2818%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (222 samples, 0.01%)</title><rect x="90.0316%" y="581" width="0.0144%" height="15" fill="rgb(215,96,23)" fg:x="1385448" fg:w="222"/><text x="90.2816%" y="591.50"></text></g><g><title>__pthread_cond_wait (226 samples, 0.01%)</title><rect x="90.0314%" y="629" width="0.0147%" height="15" fill="rgb(233,179,26)" fg:x="1385445" fg:w="226"/><text x="90.2814%" y="639.50"></text></g><g><title>__pthread_cond_wait_common (226 samples, 0.01%)</title><rect x="90.0314%" y="613" width="0.0147%" height="15" fill="rgb(225,129,33)" fg:x="1385445" fg:w="226"/><text x="90.2814%" y="623.50"></text></g><g><title>futex_wait_cancelable (225 samples, 0.01%)</title><rect x="90.0314%" y="597" width="0.0146%" height="15" fill="rgb(237,49,13)" fg:x="1385446" fg:w="225"/><text x="90.2814%" y="607.50"></text></g><g><title>ObjectMonitor::wait (261 samples, 0.02%)</title><rect x="90.0292%" y="661" width="0.0170%" height="15" fill="rgb(211,3,31)" fg:x="1385411" fg:w="261"/><text x="90.2792%" y="671.50"></text></g><g><title>os::PlatformEvent::park (248 samples, 0.02%)</title><rect x="90.0300%" y="645" width="0.0161%" height="15" fill="rgb(216,152,19)" fg:x="1385424" fg:w="248"/><text x="90.2800%" y="655.50"></text></g><g><title>JVM_MonitorWait (264 samples, 0.02%)</title><rect x="90.0291%" y="693" width="0.0172%" height="15" fill="rgb(251,121,35)" fg:x="1385410" fg:w="264"/><text x="90.2791%" y="703.50"></text></g><g><title>ObjectSynchronizer::wait (263 samples, 0.02%)</title><rect x="90.0292%" y="677" width="0.0171%" height="15" fill="rgb(210,217,47)" fg:x="1385411" fg:w="263"/><text x="90.2792%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (337 samples, 0.02%)</title><rect x="90.0572%" y="565" width="0.0219%" height="15" fill="rgb(244,116,22)" fg:x="1385842" fg:w="337"/><text x="90.3072%" y="575.50"></text></g><g><title>SymbolTable::lookup_only (308 samples, 0.02%)</title><rect x="90.0591%" y="549" width="0.0200%" height="15" fill="rgb(228,17,21)" fg:x="1385871" fg:w="308"/><text x="90.3091%" y="559.50"></text></g><g><title>ClassFileParser::parse_constant_pool (345 samples, 0.02%)</title><rect x="90.0568%" y="581" width="0.0224%" height="15" fill="rgb(240,149,34)" fg:x="1385836" fg:w="345"/><text x="90.3068%" y="591.50"></text></g><g><title>ClassFileParser::ClassFileParser (447 samples, 0.03%)</title><rect x="90.0566%" y="613" width="0.0290%" height="15" fill="rgb(208,125,47)" fg:x="1385833" fg:w="447"/><text x="90.3066%" y="623.50"></text></g><g><title>ClassFileParser::parse_stream (447 samples, 0.03%)</title><rect x="90.0566%" y="597" width="0.0290%" height="15" fill="rgb(249,186,39)" fg:x="1385833" fg:w="447"/><text x="90.3066%" y="607.50"></text></g><g><title>KlassFactory::create_from_stream (552 samples, 0.04%)</title><rect x="90.0565%" y="629" width="0.0359%" height="15" fill="rgb(240,220,33)" fg:x="1385832" fg:w="552"/><text x="90.3065%" y="639.50"></text></g><g><title>JVM_DefineClassWithSource (580 samples, 0.04%)</title><rect x="90.0561%" y="677" width="0.0377%" height="15" fill="rgb(243,110,23)" fg:x="1385826" fg:w="580"/><text x="90.3061%" y="687.50"></text></g><g><title>jvm_define_class_common (580 samples, 0.04%)</title><rect x="90.0561%" y="661" width="0.0377%" height="15" fill="rgb(219,163,46)" fg:x="1385826" fg:w="580"/><text x="90.3061%" y="671.50"></text></g><g><title>SystemDictionary::resolve_from_stream (575 samples, 0.04%)</title><rect x="90.0565%" y="645" width="0.0374%" height="15" fill="rgb(216,126,30)" fg:x="1385831" fg:w="575"/><text x="90.3065%" y="655.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (601 samples, 0.04%)</title><rect x="90.0560%" y="693" width="0.0391%" height="15" fill="rgb(208,139,11)" fg:x="1385824" fg:w="601"/><text x="90.3060%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (187 samples, 0.01%)</title><rect x="90.1089%" y="645" width="0.0122%" height="15" fill="rgb(213,118,36)" fg:x="1386638" fg:w="187"/><text x="90.3589%" y="655.50"></text></g><g><title>do_syscall_64 (187 samples, 0.01%)</title><rect x="90.1089%" y="629" width="0.0122%" height="15" fill="rgb(226,43,17)" fg:x="1386638" fg:w="187"/><text x="90.3589%" y="639.50"></text></g><g><title>__x64_sys_vfork (187 samples, 0.01%)</title><rect x="90.1089%" y="613" width="0.0122%" height="15" fill="rgb(254,217,4)" fg:x="1386638" fg:w="187"/><text x="90.3589%" y="623.50"></text></g><g><title>kernel_clone (187 samples, 0.01%)</title><rect x="90.1089%" y="597" width="0.0122%" height="15" fill="rgb(210,134,47)" fg:x="1386638" fg:w="187"/><text x="90.3589%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (526 samples, 0.03%)</title><rect x="90.1225%" y="597" width="0.0342%" height="15" fill="rgb(237,24,49)" fg:x="1386848" fg:w="526"/><text x="90.3725%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (520 samples, 0.03%)</title><rect x="90.1229%" y="581" width="0.0338%" height="15" fill="rgb(251,39,46)" fg:x="1386854" fg:w="520"/><text x="90.3729%" y="591.50"></text></g><g><title>native_write_msr (519 samples, 0.03%)</title><rect x="90.1230%" y="565" width="0.0337%" height="15" fill="rgb(251,220,3)" fg:x="1386855" fg:w="519"/><text x="90.3730%" y="575.50"></text></g><g><title>schedule_tail (549 samples, 0.04%)</title><rect x="90.1220%" y="629" width="0.0357%" height="15" fill="rgb(228,105,12)" fg:x="1386839" fg:w="549"/><text x="90.3720%" y="639.50"></text></g><g><title>finish_task_switch (547 samples, 0.04%)</title><rect x="90.1221%" y="613" width="0.0355%" height="15" fill="rgb(215,196,1)" fg:x="1386841" fg:w="547"/><text x="90.3721%" y="623.50"></text></g><g><title>__libc_vfork (760 samples, 0.05%)</title><rect x="90.1088%" y="661" width="0.0494%" height="15" fill="rgb(214,33,39)" fg:x="1386636" fg:w="760"/><text x="90.3588%" y="671.50"></text></g><g><title>ret_from_fork (571 samples, 0.04%)</title><rect x="90.1210%" y="645" width="0.0371%" height="15" fill="rgb(220,19,52)" fg:x="1386825" fg:w="571"/><text x="90.3710%" y="655.50"></text></g><g><title>closeDescriptors (155 samples, 0.01%)</title><rect x="90.1691%" y="645" width="0.0101%" height="15" fill="rgb(221,78,38)" fg:x="1387565" fg:w="155"/><text x="90.4191%" y="655.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,204 samples, 0.08%)</title><rect x="90.1023%" y="693" width="0.0782%" height="15" fill="rgb(253,30,16)" fg:x="1386537" fg:w="1204"/><text x="90.3523%" y="703.50"></text></g><g><title>vforkChild (1,109 samples, 0.07%)</title><rect x="90.1085%" y="677" width="0.0721%" height="15" fill="rgb(242,65,0)" fg:x="1386632" fg:w="1109"/><text x="90.3585%" y="687.50"></text></g><g><title>childProcess (345 samples, 0.02%)</title><rect x="90.1582%" y="661" width="0.0224%" height="15" fill="rgb(235,201,12)" fg:x="1387396" fg:w="345"/><text x="90.4082%" y="671.50"></text></g><g><title>OptoRuntime::new_array_C (294 samples, 0.02%)</title><rect x="90.1847%" y="693" width="0.0191%" height="15" fill="rgb(233,161,9)" fg:x="1387805" fg:w="294"/><text x="90.4347%" y="703.50"></text></g><g><title>TypeArrayKlass::allocate_common (185 samples, 0.01%)</title><rect x="90.1918%" y="677" width="0.0120%" height="15" fill="rgb(241,207,41)" fg:x="1387914" fg:w="185"/><text x="90.4418%" y="687.50"></text></g><g><title>CollectedHeap::array_allocate (182 samples, 0.01%)</title><rect x="90.1920%" y="661" width="0.0118%" height="15" fill="rgb(212,69,46)" fg:x="1387917" fg:w="182"/><text x="90.4420%" y="671.50"></text></g><g><title>MemAllocator::allocate (182 samples, 0.01%)</title><rect x="90.1920%" y="645" width="0.0118%" height="15" fill="rgb(239,69,45)" fg:x="1387917" fg:w="182"/><text x="90.4420%" y="655.50"></text></g><g><title>ObjAllocator::initialize (263 samples, 0.02%)</title><rect x="90.2107%" y="629" width="0.0171%" height="15" fill="rgb(242,117,48)" fg:x="1388205" fg:w="263"/><text x="90.4607%" y="639.50"></text></g><g><title>asm_exc_page_fault (262 samples, 0.02%)</title><rect x="90.2108%" y="613" width="0.0170%" height="15" fill="rgb(228,41,36)" fg:x="1388206" fg:w="262"/><text x="90.4608%" y="623.50"></text></g><g><title>exc_page_fault (262 samples, 0.02%)</title><rect x="90.2108%" y="597" width="0.0170%" height="15" fill="rgb(212,3,32)" fg:x="1388206" fg:w="262"/><text x="90.4608%" y="607.50"></text></g><g><title>do_user_addr_fault (262 samples, 0.02%)</title><rect x="90.2108%" y="581" width="0.0170%" height="15" fill="rgb(233,41,49)" fg:x="1388206" fg:w="262"/><text x="90.4608%" y="591.50"></text></g><g><title>handle_mm_fault (259 samples, 0.02%)</title><rect x="90.2110%" y="565" width="0.0168%" height="15" fill="rgb(252,170,49)" fg:x="1388209" fg:w="259"/><text x="90.4610%" y="575.50"></text></g><g><title>do_huge_pmd_anonymous_page (258 samples, 0.02%)</title><rect x="90.2110%" y="549" width="0.0168%" height="15" fill="rgb(229,53,26)" fg:x="1388210" fg:w="258"/><text x="90.4610%" y="559.50"></text></g><g><title>InstanceKlass::allocate_instance (316 samples, 0.02%)</title><rect x="90.2074%" y="677" width="0.0205%" height="15" fill="rgb(217,157,12)" fg:x="1388154" fg:w="316"/><text x="90.4574%" y="687.50"></text></g><g><title>CollectedHeap::obj_allocate (315 samples, 0.02%)</title><rect x="90.2075%" y="661" width="0.0205%" height="15" fill="rgb(227,17,9)" fg:x="1388155" fg:w="315"/><text x="90.4575%" y="671.50"></text></g><g><title>MemAllocator::allocate (314 samples, 0.02%)</title><rect x="90.2075%" y="645" width="0.0204%" height="15" fill="rgb(218,84,12)" fg:x="1388156" fg:w="314"/><text x="90.4575%" y="655.50"></text></g><g><title>OptoRuntime::new_instance_C (328 samples, 0.02%)</title><rect x="90.2068%" y="693" width="0.0213%" height="15" fill="rgb(212,79,24)" fg:x="1388145" fg:w="328"/><text x="90.4568%" y="703.50"></text></g><g><title>Runtime1::counter_overflow (168 samples, 0.01%)</title><rect x="90.2281%" y="693" width="0.0109%" height="15" fill="rgb(217,222,37)" fg:x="1388473" fg:w="168"/><text x="90.4781%" y="703.50"></text></g><g><title>ObjectMonitor::enter (169 samples, 0.01%)</title><rect x="90.2555%" y="677" width="0.0110%" height="15" fill="rgb(246,208,8)" fg:x="1388894" fg:w="169"/><text x="90.5055%" y="687.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (187 samples, 0.01%)</title><rect x="90.2550%" y="693" width="0.0122%" height="15" fill="rgb(244,133,10)" fg:x="1388886" fg:w="187"/><text x="90.5050%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (532 samples, 0.03%)</title><rect x="90.2919%" y="469" width="0.0346%" height="15" fill="rgb(209,219,41)" fg:x="1389454" fg:w="532"/><text x="90.5419%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (524 samples, 0.03%)</title><rect x="90.2924%" y="453" width="0.0341%" height="15" fill="rgb(253,175,45)" fg:x="1389462" fg:w="524"/><text x="90.5424%" y="463.50"></text></g><g><title>native_write_msr (520 samples, 0.03%)</title><rect x="90.2927%" y="437" width="0.0338%" height="15" fill="rgb(235,100,37)" fg:x="1389466" fg:w="520"/><text x="90.5427%" y="447.50"></text></g><g><title>finish_task_switch (557 samples, 0.04%)</title><rect x="90.2914%" y="485" width="0.0362%" height="15" fill="rgb(225,87,19)" fg:x="1389446" fg:w="557"/><text x="90.5414%" y="495.50"></text></g><g><title>futex_wait_queue_me (642 samples, 0.04%)</title><rect x="90.2884%" y="533" width="0.0417%" height="15" fill="rgb(217,152,17)" fg:x="1389401" fg:w="642"/><text x="90.5384%" y="543.50"></text></g><g><title>schedule (637 samples, 0.04%)</title><rect x="90.2888%" y="517" width="0.0414%" height="15" fill="rgb(235,72,13)" fg:x="1389406" fg:w="637"/><text x="90.5388%" y="527.50"></text></g><g><title>__schedule (635 samples, 0.04%)</title><rect x="90.2889%" y="501" width="0.0413%" height="15" fill="rgb(233,140,18)" fg:x="1389408" fg:w="635"/><text x="90.5389%" y="511.50"></text></g><g><title>__x64_sys_futex (657 samples, 0.04%)</title><rect x="90.2877%" y="581" width="0.0427%" height="15" fill="rgb(207,212,28)" fg:x="1389390" fg:w="657"/><text x="90.5377%" y="591.50"></text></g><g><title>do_futex (653 samples, 0.04%)</title><rect x="90.2880%" y="565" width="0.0424%" height="15" fill="rgb(220,130,25)" fg:x="1389394" fg:w="653"/><text x="90.5380%" y="575.50"></text></g><g><title>futex_wait (649 samples, 0.04%)</title><rect x="90.2882%" y="549" width="0.0422%" height="15" fill="rgb(205,55,34)" fg:x="1389398" fg:w="649"/><text x="90.5382%" y="559.50"></text></g><g><title>do_syscall_64 (663 samples, 0.04%)</title><rect x="90.2875%" y="597" width="0.0431%" height="15" fill="rgb(237,54,35)" fg:x="1389386" fg:w="663"/><text x="90.5375%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (679 samples, 0.04%)</title><rect x="90.2874%" y="613" width="0.0441%" height="15" fill="rgb(208,67,23)" fg:x="1389385" fg:w="679"/><text x="90.5374%" y="623.50"></text></g><g><title>__pthread_cond_wait (701 samples, 0.05%)</title><rect x="90.2862%" y="661" width="0.0456%" height="15" fill="rgb(206,207,50)" fg:x="1389366" fg:w="701"/><text x="90.5362%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (701 samples, 0.05%)</title><rect x="90.2862%" y="645" width="0.0456%" height="15" fill="rgb(213,211,42)" fg:x="1389366" fg:w="701"/><text x="90.5362%" y="655.50"></text></g><g><title>futex_wait_cancelable (690 samples, 0.04%)</title><rect x="90.2869%" y="629" width="0.0448%" height="15" fill="rgb(252,197,50)" fg:x="1389377" fg:w="690"/><text x="90.5369%" y="639.50"></text></g><g><title>Parker::park (773 samples, 0.05%)</title><rect x="90.2832%" y="677" width="0.0502%" height="15" fill="rgb(251,211,41)" fg:x="1389320" fg:w="773"/><text x="90.5332%" y="687.50"></text></g><g><title>Unsafe_Park (779 samples, 0.05%)</title><rect x="90.2830%" y="693" width="0.0506%" height="15" fill="rgb(229,211,5)" fg:x="1389317" fg:w="779"/><text x="90.5330%" y="703.50"></text></g><g><title>__x64_sys_futex (261 samples, 0.02%)</title><rect x="90.3403%" y="613" width="0.0170%" height="15" fill="rgb(239,36,31)" fg:x="1390199" fg:w="261"/><text x="90.5903%" y="623.50"></text></g><g><title>do_futex (256 samples, 0.02%)</title><rect x="90.3406%" y="597" width="0.0166%" height="15" fill="rgb(248,67,31)" fg:x="1390204" fg:w="256"/><text x="90.5906%" y="607.50"></text></g><g><title>futex_wake (252 samples, 0.02%)</title><rect x="90.3409%" y="581" width="0.0164%" height="15" fill="rgb(249,55,44)" fg:x="1390208" fg:w="252"/><text x="90.5909%" y="591.50"></text></g><g><title>wake_up_q (205 samples, 0.01%)</title><rect x="90.3439%" y="565" width="0.0133%" height="15" fill="rgb(216,82,12)" fg:x="1390255" fg:w="205"/><text x="90.5939%" y="575.50"></text></g><g><title>try_to_wake_up (204 samples, 0.01%)</title><rect x="90.3440%" y="549" width="0.0133%" height="15" fill="rgb(242,174,1)" fg:x="1390256" fg:w="204"/><text x="90.5940%" y="559.50"></text></g><g><title>do_syscall_64 (265 samples, 0.02%)</title><rect x="90.3402%" y="629" width="0.0172%" height="15" fill="rgb(208,120,29)" fg:x="1390198" fg:w="265"/><text x="90.5902%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (304 samples, 0.02%)</title><rect x="90.3402%" y="645" width="0.0198%" height="15" fill="rgb(221,105,43)" fg:x="1390197" fg:w="304"/><text x="90.5902%" y="655.50"></text></g><g><title>__pthread_cond_signal (325 samples, 0.02%)</title><rect x="90.3389%" y="677" width="0.0211%" height="15" fill="rgb(234,124,22)" fg:x="1390178" fg:w="325"/><text x="90.5889%" y="687.50"></text></g><g><title>futex_wake (314 samples, 0.02%)</title><rect x="90.3397%" y="661" width="0.0204%" height="15" fill="rgb(212,23,30)" fg:x="1390189" fg:w="314"/><text x="90.5897%" y="671.50"></text></g><g><title>Unsafe_Unpark (413 samples, 0.03%)</title><rect x="90.3337%" y="693" width="0.0268%" height="15" fill="rgb(219,122,53)" fg:x="1390098" fg:w="413"/><text x="90.5837%" y="703.50"></text></g><g><title>blk_mq_end_request (160 samples, 0.01%)</title><rect x="90.3700%" y="581" width="0.0104%" height="15" fill="rgb(248,84,24)" fg:x="1390656" fg:w="160"/><text x="90.6200%" y="591.50"></text></g><g><title>blk_update_request (160 samples, 0.01%)</title><rect x="90.3700%" y="565" width="0.0104%" height="15" fill="rgb(245,115,18)" fg:x="1390656" fg:w="160"/><text x="90.6200%" y="575.50"></text></g><g><title>handle_irq_event (171 samples, 0.01%)</title><rect x="90.3699%" y="645" width="0.0111%" height="15" fill="rgb(227,176,51)" fg:x="1390655" fg:w="171"/><text x="90.6199%" y="655.50"></text></g><g><title>__handle_irq_event_percpu (171 samples, 0.01%)</title><rect x="90.3699%" y="629" width="0.0111%" height="15" fill="rgb(229,63,42)" fg:x="1390655" fg:w="171"/><text x="90.6199%" y="639.50"></text></g><g><title>nvme_irq (170 samples, 0.01%)</title><rect x="90.3700%" y="613" width="0.0110%" height="15" fill="rgb(247,202,24)" fg:x="1390656" fg:w="170"/><text x="90.6200%" y="623.50"></text></g><g><title>nvme_process_cq (170 samples, 0.01%)</title><rect x="90.3700%" y="597" width="0.0110%" height="15" fill="rgb(244,173,20)" fg:x="1390656" fg:w="170"/><text x="90.6200%" y="607.50"></text></g><g><title>handle_edge_irq (175 samples, 0.01%)</title><rect x="90.3698%" y="661" width="0.0114%" height="15" fill="rgb(242,81,47)" fg:x="1390653" fg:w="175"/><text x="90.6198%" y="671.50"></text></g><g><title>common_interrupt (206 samples, 0.01%)</title><rect x="90.3697%" y="677" width="0.0134%" height="15" fill="rgb(231,185,54)" fg:x="1390652" fg:w="206"/><text x="90.6197%" y="687.50"></text></g><g><title>asm_common_interrupt (209 samples, 0.01%)</title><rect x="90.3697%" y="693" width="0.0136%" height="15" fill="rgb(243,55,32)" fg:x="1390652" fg:w="209"/><text x="90.6197%" y="703.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (318 samples, 0.02%)</title><rect x="90.3844%" y="693" width="0.0207%" height="15" fill="rgb(208,167,19)" fg:x="1390877" fg:w="318"/><text x="90.6344%" y="703.50"></text></g><g><title>sysvec_apic_timer_interrupt (287 samples, 0.02%)</title><rect x="90.3864%" y="677" width="0.0187%" height="15" fill="rgb(231,72,35)" fg:x="1390908" fg:w="287"/><text x="90.6364%" y="687.50"></text></g><g><title>schedule (216 samples, 0.01%)</title><rect x="90.4063%" y="645" width="0.0140%" height="15" fill="rgb(250,173,51)" fg:x="1391214" fg:w="216"/><text x="90.6563%" y="655.50"></text></g><g><title>__schedule (205 samples, 0.01%)</title><rect x="90.4070%" y="629" width="0.0133%" height="15" fill="rgb(209,5,22)" fg:x="1391225" fg:w="205"/><text x="90.6570%" y="639.50"></text></g><g><title>irqentry_exit_to_user_mode (237 samples, 0.02%)</title><rect x="90.4056%" y="677" width="0.0154%" height="15" fill="rgb(250,174,19)" fg:x="1391204" fg:w="237"/><text x="90.6556%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (235 samples, 0.02%)</title><rect x="90.4057%" y="661" width="0.0153%" height="15" fill="rgb(217,3,49)" fg:x="1391206" fg:w="235"/><text x="90.6557%" y="671.50"></text></g><g><title>asm_sysvec_reschedule_ipi (250 samples, 0.02%)</title><rect x="90.4056%" y="693" width="0.0162%" height="15" fill="rgb(218,225,5)" fg:x="1391204" fg:w="250"/><text x="90.6556%" y="703.50"></text></g><g><title>do_filp_open (259 samples, 0.02%)</title><rect x="90.4434%" y="597" width="0.0168%" height="15" fill="rgb(236,89,11)" fg:x="1391786" fg:w="259"/><text x="90.6934%" y="607.50"></text></g><g><title>path_openat (257 samples, 0.02%)</title><rect x="90.4436%" y="581" width="0.0167%" height="15" fill="rgb(206,33,28)" fg:x="1391788" fg:w="257"/><text x="90.6936%" y="591.50"></text></g><g><title>do_syscall_64 (317 samples, 0.02%)</title><rect x="90.4421%" y="645" width="0.0206%" height="15" fill="rgb(241,56,42)" fg:x="1391765" fg:w="317"/><text x="90.6921%" y="655.50"></text></g><g><title>__x64_sys_openat (316 samples, 0.02%)</title><rect x="90.4421%" y="629" width="0.0205%" height="15" fill="rgb(222,44,11)" fg:x="1391766" fg:w="316"/><text x="90.6921%" y="639.50"></text></g><g><title>do_sys_openat2 (313 samples, 0.02%)</title><rect x="90.4423%" y="613" width="0.0203%" height="15" fill="rgb(234,111,20)" fg:x="1391769" fg:w="313"/><text x="90.6923%" y="623.50"></text></g><g><title>__libc_open64 (328 samples, 0.02%)</title><rect x="90.4415%" y="677" width="0.0213%" height="15" fill="rgb(237,77,6)" fg:x="1391756" fg:w="328"/><text x="90.6915%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (320 samples, 0.02%)</title><rect x="90.4420%" y="661" width="0.0208%" height="15" fill="rgb(235,111,23)" fg:x="1391764" fg:w="320"/><text x="90.6920%" y="671.50"></text></g><g><title>fileOpen (478 samples, 0.03%)</title><rect x="90.4334%" y="693" width="0.0311%" height="15" fill="rgb(251,135,29)" fg:x="1391632" fg:w="478"/><text x="90.6834%" y="703.50"></text></g><g><title>[[vdso]] (1,257 samples, 0.08%)</title><rect x="90.6010%" y="645" width="0.0817%" height="15" fill="rgb(217,57,1)" fg:x="1394211" fg:w="1257"/><text x="90.8510%" y="655.50"></text></g><g><title>__vdso_clock_gettime (2,169 samples, 0.14%)</title><rect x="90.5425%" y="661" width="0.1409%" height="15" fill="rgb(249,119,31)" fg:x="1393311" fg:w="2169"/><text x="90.7925%" y="671.50"></text></g><g><title>__GI___clock_gettime (2,875 samples, 0.19%)</title><rect x="90.4978%" y="677" width="0.1868%" height="15" fill="rgb(233,164,33)" fg:x="1392622" fg:w="2875"/><text x="90.7478%" y="687.50"></text></g><g><title>os::javaTimeNanos (3,302 samples, 0.21%)</title><rect x="90.4705%" y="693" width="0.2146%" height="15" fill="rgb(250,217,43)" fg:x="1392202" fg:w="3302"/><text x="90.7205%" y="703.50"></text></g><g><title>[perf-934749.map] (144,393 samples, 9.38%)</title><rect x="81.3020%" y="709" width="9.3832%" height="15" fill="rgb(232,154,50)" fg:x="1251113" fg:w="144393"/><text x="81.5520%" y="719.50">[perf-934749...</text></g><g><title>SharedRuntime::find_callee_info_helper (204 samples, 0.01%)</title><rect x="90.7045%" y="677" width="0.0133%" height="15" fill="rgb(227,190,8)" fg:x="1395803" fg:w="204"/><text x="90.9545%" y="687.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (315 samples, 0.02%)</title><rect x="90.6989%" y="693" width="0.0205%" height="15" fill="rgb(209,217,32)" fg:x="1395717" fg:w="315"/><text x="90.9489%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (183 samples, 0.01%)</title><rect x="90.7219%" y="421" width="0.0119%" height="15" fill="rgb(243,203,50)" fg:x="1396072" fg:w="183"/><text x="90.9719%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (179 samples, 0.01%)</title><rect x="90.7222%" y="405" width="0.0116%" height="15" fill="rgb(232,152,27)" fg:x="1396076" fg:w="179"/><text x="90.9722%" y="415.50"></text></g><g><title>native_write_msr (179 samples, 0.01%)</title><rect x="90.7222%" y="389" width="0.0116%" height="15" fill="rgb(240,34,29)" fg:x="1396076" fg:w="179"/><text x="90.9722%" y="399.50"></text></g><g><title>finish_task_switch (198 samples, 0.01%)</title><rect x="90.7213%" y="437" width="0.0129%" height="15" fill="rgb(215,185,52)" fg:x="1396062" fg:w="198"/><text x="90.9713%" y="447.50"></text></g><g><title>futex_wait_queue_me (212 samples, 0.01%)</title><rect x="90.7208%" y="485" width="0.0138%" height="15" fill="rgb(240,89,49)" fg:x="1396055" fg:w="212"/><text x="90.9708%" y="495.50"></text></g><g><title>schedule (211 samples, 0.01%)</title><rect x="90.7209%" y="469" width="0.0137%" height="15" fill="rgb(225,12,52)" fg:x="1396056" fg:w="211"/><text x="90.9709%" y="479.50"></text></g><g><title>__schedule (210 samples, 0.01%)</title><rect x="90.7210%" y="453" width="0.0136%" height="15" fill="rgb(239,128,45)" fg:x="1396057" fg:w="210"/><text x="90.9710%" y="463.50"></text></g><g><title>do_syscall_64 (218 samples, 0.01%)</title><rect x="90.7205%" y="549" width="0.0142%" height="15" fill="rgb(211,78,47)" fg:x="1396050" fg:w="218"/><text x="90.9705%" y="559.50"></text></g><g><title>__x64_sys_futex (218 samples, 0.01%)</title><rect x="90.7205%" y="533" width="0.0142%" height="15" fill="rgb(232,31,21)" fg:x="1396050" fg:w="218"/><text x="90.9705%" y="543.50"></text></g><g><title>do_futex (218 samples, 0.01%)</title><rect x="90.7205%" y="517" width="0.0142%" height="15" fill="rgb(222,168,14)" fg:x="1396050" fg:w="218"/><text x="90.9705%" y="527.50"></text></g><g><title>futex_wait (216 samples, 0.01%)</title><rect x="90.7206%" y="501" width="0.0140%" height="15" fill="rgb(209,128,24)" fg:x="1396052" fg:w="216"/><text x="90.9706%" y="511.50"></text></g><g><title>__pthread_cond_wait (226 samples, 0.01%)</title><rect x="90.7203%" y="613" width="0.0147%" height="15" fill="rgb(249,35,13)" fg:x="1396046" fg:w="226"/><text x="90.9703%" y="623.50"></text></g><g><title>__pthread_cond_wait_common (226 samples, 0.01%)</title><rect x="90.7203%" y="597" width="0.0147%" height="15" fill="rgb(218,7,2)" fg:x="1396046" fg:w="226"/><text x="90.9703%" y="607.50"></text></g><g><title>futex_wait_cancelable (224 samples, 0.01%)</title><rect x="90.7204%" y="581" width="0.0146%" height="15" fill="rgb(238,107,27)" fg:x="1396048" fg:w="224"/><text x="90.9704%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (222 samples, 0.01%)</title><rect x="90.7205%" y="565" width="0.0144%" height="15" fill="rgb(217,88,38)" fg:x="1396050" fg:w="222"/><text x="90.9705%" y="575.50"></text></g><g><title>Monitor::lock_without_safepoint_check (238 samples, 0.02%)</title><rect x="90.7196%" y="661" width="0.0155%" height="15" fill="rgb(230,207,0)" fg:x="1396036" fg:w="238"/><text x="90.9696%" y="671.50"></text></g><g><title>Monitor::ILock (237 samples, 0.02%)</title><rect x="90.7197%" y="645" width="0.0154%" height="15" fill="rgb(249,64,54)" fg:x="1396037" fg:w="237"/><text x="90.9697%" y="655.50"></text></g><g><title>os::PlatformEvent::park (230 samples, 0.01%)</title><rect x="90.7201%" y="629" width="0.0149%" height="15" fill="rgb(231,7,11)" fg:x="1396044" fg:w="230"/><text x="90.9701%" y="639.50"></text></g><g><title>SafepointSynchronize::block (267 samples, 0.02%)</title><rect x="90.7196%" y="677" width="0.0174%" height="15" fill="rgb(205,149,21)" fg:x="1396036" fg:w="267"/><text x="90.9696%" y="687.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (271 samples, 0.02%)</title><rect x="90.7194%" y="693" width="0.0176%" height="15" fill="rgb(215,126,34)" fg:x="1396033" fg:w="271"/><text x="90.9694%" y="703.50"></text></g><g><title>__GI___clock_gettime (364 samples, 0.02%)</title><rect x="90.7382%" y="693" width="0.0237%" height="15" fill="rgb(241,132,45)" fg:x="1396322" fg:w="364"/><text x="90.9882%" y="703.50"></text></g><g><title>touch_atime (188 samples, 0.01%)</title><rect x="90.8267%" y="533" width="0.0122%" height="15" fill="rgb(252,69,32)" fg:x="1397684" fg:w="188"/><text x="91.0767%" y="543.50"></text></g><g><title>generic_file_buffered_read (447 samples, 0.03%)</title><rect x="90.8099%" y="549" width="0.0290%" height="15" fill="rgb(232,204,19)" fg:x="1397426" fg:w="447"/><text x="91.0599%" y="559.50"></text></g><g><title>new_sync_read (462 samples, 0.03%)</title><rect x="90.8090%" y="565" width="0.0300%" height="15" fill="rgb(249,15,47)" fg:x="1397412" fg:w="462"/><text x="91.0590%" y="575.50"></text></g><g><title>ksys_read (553 samples, 0.04%)</title><rect x="90.8050%" y="597" width="0.0359%" height="15" fill="rgb(209,227,23)" fg:x="1397350" fg:w="553"/><text x="91.0550%" y="607.50"></text></g><g><title>vfs_read (515 samples, 0.03%)</title><rect x="90.8075%" y="581" width="0.0335%" height="15" fill="rgb(248,92,24)" fg:x="1397388" fg:w="515"/><text x="91.0575%" y="591.50"></text></g><g><title>do_syscall_64 (560 samples, 0.04%)</title><rect x="90.8048%" y="613" width="0.0364%" height="15" fill="rgb(247,59,2)" fg:x="1397347" fg:w="560"/><text x="91.0548%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (567 samples, 0.04%)</title><rect x="90.8047%" y="629" width="0.0368%" height="15" fill="rgb(221,30,5)" fg:x="1397345" fg:w="567"/><text x="91.0547%" y="639.50"></text></g><g><title>__libc_read (595 samples, 0.04%)</title><rect x="90.8030%" y="661" width="0.0387%" height="15" fill="rgb(208,108,53)" fg:x="1397319" fg:w="595"/><text x="91.0530%" y="671.50"></text></g><g><title>__libc_read (594 samples, 0.04%)</title><rect x="90.8030%" y="645" width="0.0386%" height="15" fill="rgb(211,183,26)" fg:x="1397320" fg:w="594"/><text x="91.0530%" y="655.50"></text></g><g><title>handleRead (597 samples, 0.04%)</title><rect x="90.8030%" y="677" width="0.0388%" height="15" fill="rgb(232,132,4)" fg:x="1397319" fg:w="597"/><text x="91.0530%" y="687.50"></text></g><g><title>readBytes (774 samples, 0.05%)</title><rect x="90.8018%" y="693" width="0.0503%" height="15" fill="rgb(253,128,37)" fg:x="1397301" fg:w="774"/><text x="91.0518%" y="703.50"></text></g><g><title>[unknown] (2,594 samples, 0.17%)</title><rect x="90.6852%" y="709" width="0.1686%" height="15" fill="rgb(221,58,24)" fg:x="1395506" fg:w="2594"/><text x="90.9352%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (206 samples, 0.01%)</title><rect x="90.8551%" y="645" width="0.0134%" height="15" fill="rgb(230,54,45)" fg:x="1398121" fg:w="206"/><text x="91.1051%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (206 samples, 0.01%)</title><rect x="90.8551%" y="629" width="0.0134%" height="15" fill="rgb(254,21,18)" fg:x="1398121" fg:w="206"/><text x="91.1051%" y="639.50"></text></g><g><title>native_write_msr (205 samples, 0.01%)</title><rect x="90.8552%" y="613" width="0.0133%" height="15" fill="rgb(221,108,0)" fg:x="1398122" fg:w="205"/><text x="91.1052%" y="623.50"></text></g><g><title>schedule_tail (219 samples, 0.01%)</title><rect x="90.8547%" y="677" width="0.0142%" height="15" fill="rgb(206,95,1)" fg:x="1398115" fg:w="219"/><text x="91.1047%" y="687.50"></text></g><g><title>finish_task_switch (215 samples, 0.01%)</title><rect x="90.8550%" y="661" width="0.0140%" height="15" fill="rgb(237,52,5)" fg:x="1398119" fg:w="215"/><text x="91.1050%" y="671.50"></text></g><g><title>ret_from_fork (226 samples, 0.01%)</title><rect x="90.8544%" y="693" width="0.0147%" height="15" fill="rgb(218,150,34)" fg:x="1398110" fg:w="226"/><text x="91.1044%" y="703.50"></text></g><g><title>__GI___clone (337 samples, 0.02%)</title><rect x="90.8537%" y="709" width="0.0219%" height="15" fill="rgb(235,194,28)" fg:x="1398100" fg:w="337"/><text x="91.1037%" y="719.50"></text></g><g><title>__vdso_clock_gettime (298 samples, 0.02%)</title><rect x="90.8765%" y="709" width="0.0194%" height="15" fill="rgb(245,92,18)" fg:x="1398450" fg:w="298"/><text x="91.1265%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (251 samples, 0.02%)</title><rect x="90.9027%" y="709" width="0.0163%" height="15" fill="rgb(253,203,53)" fg:x="1398854" fg:w="251"/><text x="91.1527%" y="719.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (684 samples, 0.04%)</title><rect x="90.9190%" y="709" width="0.0444%" height="15" fill="rgb(249,185,47)" fg:x="1399105" fg:w="684"/><text x="91.1690%" y="719.50"></text></g><g><title>jni_GetStringLength (240 samples, 0.02%)</title><rect x="90.9638%" y="709" width="0.0156%" height="15" fill="rgb(252,194,52)" fg:x="1399794" fg:w="240"/><text x="91.2138%" y="719.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 573558ul&gt;::oop_access_barrier (190 samples, 0.01%)</title><rect x="90.9671%" y="693" width="0.0123%" height="15" fill="rgb(210,53,36)" fg:x="1399844" fg:w="190"/><text x="91.2171%" y="703.50"></text></g><g><title>skyframe-evalua (1,204,688 samples, 78.29%)</title><rect x="12.7052%" y="725" width="78.2851%" height="15" fill="rgb(237,37,25)" fg:x="195514" fg:w="1204688"/><text x="12.9552%" y="735.50">skyframe-evalua</text></g><g><title>[perf-934749.map] (213 samples, 0.01%)</title><rect x="90.9905%" y="709" width="0.0138%" height="15" fill="rgb(242,116,27)" fg:x="1400205" fg:w="213"/><text x="91.2405%" y="719.50"></text></g><g><title>skyframe-invali (235 samples, 0.02%)</title><rect x="90.9903%" y="725" width="0.0153%" height="15" fill="rgb(213,185,26)" fg:x="1400202" fg:w="235"/><text x="91.2403%" y="735.50"></text></g><g><title>kernel_init_free_pages (445 samples, 0.03%)</title><rect x="94.5240%" y="565" width="0.0289%" height="15" fill="rgb(225,204,8)" fg:x="1454579" fg:w="445"/><text x="94.7740%" y="575.50"></text></g><g><title>clear_page_erms (418 samples, 0.03%)</title><rect x="94.5257%" y="549" width="0.0272%" height="15" fill="rgb(254,111,37)" fg:x="1454606" fg:w="418"/><text x="94.7757%" y="559.50"></text></g><g><title>get_page_from_freelist (773 samples, 0.05%)</title><rect x="94.5032%" y="597" width="0.0502%" height="15" fill="rgb(242,35,9)" fg:x="1454260" fg:w="773"/><text x="94.7532%" y="607.50"></text></g><g><title>prep_new_page (478 samples, 0.03%)</title><rect x="94.5224%" y="581" width="0.0311%" height="15" fill="rgb(232,138,49)" fg:x="1454555" fg:w="478"/><text x="94.7724%" y="591.50"></text></g><g><title>__alloc_pages_nodemask (917 samples, 0.06%)</title><rect x="94.4942%" y="613" width="0.0596%" height="15" fill="rgb(247,56,4)" fg:x="1454121" fg:w="917"/><text x="94.7442%" y="623.50"></text></g><g><title>alloc_pages_vma (994 samples, 0.06%)</title><rect x="94.4906%" y="629" width="0.0646%" height="15" fill="rgb(226,179,17)" fg:x="1454065" fg:w="994"/><text x="94.7406%" y="639.50"></text></g><g><title>do_page_mkwrite (157 samples, 0.01%)</title><rect x="94.5692%" y="629" width="0.0102%" height="15" fill="rgb(216,163,45)" fg:x="1455275" fg:w="157"/><text x="94.8192%" y="639.50"></text></g><g><title>btrfs_page_mkwrite (157 samples, 0.01%)</title><rect x="94.5692%" y="613" width="0.0102%" height="15" fill="rgb(211,157,3)" fg:x="1455275" fg:w="157"/><text x="94.8192%" y="623.50"></text></g><g><title>page_add_file_rmap (316 samples, 0.02%)</title><rect x="94.6459%" y="597" width="0.0205%" height="15" fill="rgb(234,44,20)" fg:x="1456455" fg:w="316"/><text x="94.8959%" y="607.50"></text></g><g><title>alloc_set_pte (496 samples, 0.03%)</title><rect x="94.6353%" y="613" width="0.0322%" height="15" fill="rgb(254,138,23)" fg:x="1456293" fg:w="496"/><text x="94.8853%" y="623.50"></text></g><g><title>filemap_map_pages (1,525 samples, 0.10%)</title><rect x="94.5813%" y="629" width="0.0991%" height="15" fill="rgb(206,119,39)" fg:x="1455462" fg:w="1525"/><text x="94.8313%" y="639.50"></text></g><g><title>__pagevec_lru_add_fn (171 samples, 0.01%)</title><rect x="94.6839%" y="597" width="0.0111%" height="15" fill="rgb(231,105,52)" fg:x="1457041" fg:w="171"/><text x="94.9339%" y="607.50"></text></g><g><title>lru_cache_add (252 samples, 0.02%)</title><rect x="94.6807%" y="629" width="0.0164%" height="15" fill="rgb(250,20,5)" fg:x="1456991" fg:w="252"/><text x="94.9307%" y="639.50"></text></g><g><title>pagevec_lru_move_fn (222 samples, 0.01%)</title><rect x="94.6826%" y="613" width="0.0144%" height="15" fill="rgb(215,198,30)" fg:x="1457021" fg:w="222"/><text x="94.9326%" y="623.50"></text></g><g><title>mem_cgroup_charge (277 samples, 0.02%)</title><rect x="94.6974%" y="629" width="0.0180%" height="15" fill="rgb(246,142,8)" fg:x="1457248" fg:w="277"/><text x="94.9474%" y="639.50"></text></g><g><title>handle_mm_fault (4,401 samples, 0.29%)</title><rect x="94.4474%" y="645" width="0.2860%" height="15" fill="rgb(243,26,38)" fg:x="1453401" fg:w="4401"/><text x="94.6974%" y="655.50"></text></g><g><title>do_user_addr_fault (4,745 samples, 0.31%)</title><rect x="94.4313%" y="661" width="0.3083%" height="15" fill="rgb(205,133,28)" fg:x="1453153" fg:w="4745"/><text x="94.6813%" y="671.50"></text></g><g><title>exc_page_fault (4,778 samples, 0.31%)</title><rect x="94.4295%" y="677" width="0.3105%" height="15" fill="rgb(212,34,0)" fg:x="1453126" fg:w="4778"/><text x="94.6795%" y="687.50"></text></g><g><title>asm_exc_page_fault (4,856 samples, 0.32%)</title><rect x="94.4272%" y="693" width="0.3156%" height="15" fill="rgb(251,226,22)" fg:x="1453090" fg:w="4856"/><text x="94.6772%" y="703.50"></text></g><g><title>do_softirq_own_stack (159 samples, 0.01%)</title><rect x="94.7493%" y="645" width="0.0103%" height="15" fill="rgb(252,119,9)" fg:x="1458047" fg:w="159"/><text x="94.9993%" y="655.50"></text></g><g><title>asm_call_sysvec_on_stack (159 samples, 0.01%)</title><rect x="94.7493%" y="629" width="0.0103%" height="15" fill="rgb(213,150,50)" fg:x="1458047" fg:w="159"/><text x="94.9993%" y="639.50"></text></g><g><title>__softirqentry_text_start (159 samples, 0.01%)</title><rect x="94.7493%" y="613" width="0.0103%" height="15" fill="rgb(212,24,39)" fg:x="1458047" fg:w="159"/><text x="94.9993%" y="623.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (261 samples, 0.02%)</title><rect x="94.7428%" y="693" width="0.0170%" height="15" fill="rgb(213,46,39)" fg:x="1457946" fg:w="261"/><text x="94.9928%" y="703.50"></text></g><g><title>sysvec_apic_timer_interrupt (220 samples, 0.01%)</title><rect x="94.7454%" y="677" width="0.0143%" height="15" fill="rgb(239,106,12)" fg:x="1457987" fg:w="220"/><text x="94.9954%" y="687.50"></text></g><g><title>irq_exit_rcu (161 samples, 0.01%)</title><rect x="94.7493%" y="661" width="0.0105%" height="15" fill="rgb(249,229,21)" fg:x="1458046" fg:w="161"/><text x="94.9993%" y="671.50"></text></g><g><title>entry_SYSCALL_64 (2,186 samples, 0.14%)</title><rect x="94.7676%" y="693" width="0.1421%" height="15" fill="rgb(212,158,3)" fg:x="1458329" fg:w="2186"/><text x="95.0176%" y="703.50"></text></g><g><title>copy_process (160 samples, 0.01%)</title><rect x="94.9749%" y="629" width="0.0104%" height="15" fill="rgb(253,26,48)" fg:x="1461518" fg:w="160"/><text x="95.2249%" y="639.50"></text></g><g><title>__do_sys_clone (188 samples, 0.01%)</title><rect x="94.9748%" y="661" width="0.0122%" height="15" fill="rgb(238,178,20)" fg:x="1461517" fg:w="188"/><text x="95.2248%" y="671.50"></text></g><g><title>kernel_clone (188 samples, 0.01%)</title><rect x="94.9748%" y="645" width="0.0122%" height="15" fill="rgb(208,86,15)" fg:x="1461517" fg:w="188"/><text x="95.2248%" y="655.50"></text></g><g><title>_copy_to_user (381 samples, 0.02%)</title><rect x="94.9957%" y="629" width="0.0248%" height="15" fill="rgb(239,42,53)" fg:x="1461839" fg:w="381"/><text x="95.2457%" y="639.50"></text></g><g><title>copy_user_enhanced_fast_string (332 samples, 0.02%)</title><rect x="94.9989%" y="613" width="0.0216%" height="15" fill="rgb(245,226,8)" fg:x="1461888" fg:w="332"/><text x="95.2489%" y="623.50"></text></g><g><title>cp_new_stat (619 samples, 0.04%)</title><rect x="94.9887%" y="645" width="0.0402%" height="15" fill="rgb(216,176,32)" fg:x="1461731" fg:w="619"/><text x="95.2387%" y="655.50"></text></g><g><title>__fget_light (191 samples, 0.01%)</title><rect x="95.0318%" y="629" width="0.0124%" height="15" fill="rgb(231,186,21)" fg:x="1462394" fg:w="191"/><text x="95.2818%" y="639.50"></text></g><g><title>__fget_files (166 samples, 0.01%)</title><rect x="95.0334%" y="613" width="0.0108%" height="15" fill="rgb(205,95,49)" fg:x="1462419" fg:w="166"/><text x="95.2834%" y="623.50"></text></g><g><title>btrfs_getattr (1,203 samples, 0.08%)</title><rect x="95.0442%" y="629" width="0.0782%" height="15" fill="rgb(217,145,8)" fg:x="1462585" fg:w="1203"/><text x="95.2942%" y="639.50"></text></g><g><title>security_inode_getattr (567 samples, 0.04%)</title><rect x="95.1287%" y="629" width="0.0368%" height="15" fill="rgb(239,144,48)" fg:x="1463885" fg:w="567"/><text x="95.3787%" y="639.50"></text></g><g><title>tomoyo_path_perm (362 samples, 0.02%)</title><rect x="95.1420%" y="613" width="0.0235%" height="15" fill="rgb(214,189,23)" fg:x="1464090" fg:w="362"/><text x="95.3920%" y="623.50"></text></g><g><title>tomoyo_init_request_info (172 samples, 0.01%)</title><rect x="95.1544%" y="597" width="0.0112%" height="15" fill="rgb(229,157,17)" fg:x="1464280" fg:w="172"/><text x="95.4044%" y="607.50"></text></g><g><title>__do_sys_newfstat (2,970 samples, 0.19%)</title><rect x="94.9870%" y="661" width="0.1930%" height="15" fill="rgb(230,5,48)" fg:x="1461705" fg:w="2970"/><text x="95.2370%" y="671.50"></text></g><g><title>vfs_fstat (2,325 samples, 0.15%)</title><rect x="95.0289%" y="645" width="0.1511%" height="15" fill="rgb(224,156,48)" fg:x="1462350" fg:w="2325"/><text x="95.2789%" y="655.50"></text></g><g><title>vfs_getattr_nosec (223 samples, 0.01%)</title><rect x="95.1655%" y="629" width="0.0145%" height="15" fill="rgb(223,14,29)" fg:x="1464452" fg:w="223"/><text x="95.4155%" y="639.50"></text></g><g><title>__close_fd (213 samples, 0.01%)</title><rect x="95.1874%" y="645" width="0.0138%" height="15" fill="rgb(229,96,36)" fg:x="1464788" fg:w="213"/><text x="95.4374%" y="655.50"></text></g><g><title>pick_file (199 samples, 0.01%)</title><rect x="95.1883%" y="629" width="0.0129%" height="15" fill="rgb(231,102,53)" fg:x="1464802" fg:w="199"/><text x="95.4383%" y="639.50"></text></g><g><title>fput_many (351 samples, 0.02%)</title><rect x="95.2062%" y="629" width="0.0228%" height="15" fill="rgb(210,77,38)" fg:x="1465078" fg:w="351"/><text x="95.4562%" y="639.50"></text></g><g><title>task_work_add (249 samples, 0.02%)</title><rect x="95.2128%" y="613" width="0.0162%" height="15" fill="rgb(235,131,6)" fg:x="1465180" fg:w="249"/><text x="95.4628%" y="623.50"></text></g><g><title>__x64_sys_close (741 samples, 0.05%)</title><rect x="95.1859%" y="661" width="0.0482%" height="15" fill="rgb(252,55,38)" fg:x="1464766" fg:w="741"/><text x="95.4359%" y="671.50"></text></g><g><title>filp_close (506 samples, 0.03%)</title><rect x="95.2012%" y="645" width="0.0329%" height="15" fill="rgb(246,38,14)" fg:x="1465001" fg:w="506"/><text x="95.4512%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (240 samples, 0.02%)</title><rect x="95.2370%" y="533" width="0.0156%" height="15" fill="rgb(242,27,5)" fg:x="1465551" fg:w="240"/><text x="95.4870%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (238 samples, 0.02%)</title><rect x="95.2371%" y="517" width="0.0155%" height="15" fill="rgb(228,65,35)" fg:x="1465553" fg:w="238"/><text x="95.4871%" y="527.50"></text></g><g><title>native_write_msr (236 samples, 0.02%)</title><rect x="95.2372%" y="501" width="0.0153%" height="15" fill="rgb(245,93,11)" fg:x="1465555" fg:w="236"/><text x="95.4872%" y="511.50"></text></g><g><title>finish_task_switch (252 samples, 0.02%)</title><rect x="95.2367%" y="549" width="0.0164%" height="15" fill="rgb(213,1,31)" fg:x="1465547" fg:w="252"/><text x="95.4867%" y="559.50"></text></g><g><title>schedule (256 samples, 0.02%)</title><rect x="95.2366%" y="581" width="0.0166%" height="15" fill="rgb(237,205,14)" fg:x="1465546" fg:w="256"/><text x="95.4866%" y="591.50"></text></g><g><title>__schedule (256 samples, 0.02%)</title><rect x="95.2366%" y="565" width="0.0166%" height="15" fill="rgb(232,118,45)" fg:x="1465546" fg:w="256"/><text x="95.4866%" y="575.50"></text></g><g><title>begin_new_exec (292 samples, 0.02%)</title><rect x="95.2353%" y="597" width="0.0190%" height="15" fill="rgb(218,5,6)" fg:x="1465526" fg:w="292"/><text x="95.4853%" y="607.50"></text></g><g><title>load_elf_binary (294 samples, 0.02%)</title><rect x="95.2353%" y="613" width="0.0191%" height="15" fill="rgb(251,87,51)" fg:x="1465526" fg:w="294"/><text x="95.4853%" y="623.50"></text></g><g><title>bprm_execve (399 samples, 0.03%)</title><rect x="95.2347%" y="629" width="0.0259%" height="15" fill="rgb(207,225,20)" fg:x="1465516" fg:w="399"/><text x="95.4847%" y="639.50"></text></g><g><title>__x64_sys_execve (444 samples, 0.03%)</title><rect x="95.2342%" y="661" width="0.0289%" height="15" fill="rgb(222,78,54)" fg:x="1465509" fg:w="444"/><text x="95.4842%" y="671.50"></text></g><g><title>do_execveat_common (444 samples, 0.03%)</title><rect x="95.2342%" y="645" width="0.0289%" height="15" fill="rgb(232,85,16)" fg:x="1465509" fg:w="444"/><text x="95.4842%" y="655.50"></text></g><g><title>dequeue_task_fair (193 samples, 0.01%)</title><rect x="95.3021%" y="565" width="0.0125%" height="15" fill="rgb(244,25,33)" fg:x="1466554" fg:w="193"/><text x="95.5521%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (7,970 samples, 0.52%)</title><rect x="95.3230%" y="549" width="0.5179%" height="15" fill="rgb(233,24,36)" fg:x="1466875" fg:w="7970"/><text x="95.5730%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (7,884 samples, 0.51%)</title><rect x="95.3286%" y="533" width="0.5123%" height="15" fill="rgb(253,49,54)" fg:x="1466961" fg:w="7884"/><text x="95.5786%" y="543.50"></text></g><g><title>native_write_msr (7,855 samples, 0.51%)</title><rect x="95.3305%" y="517" width="0.5104%" height="15" fill="rgb(245,12,22)" fg:x="1466990" fg:w="7855"/><text x="95.5805%" y="527.50"></text></g><g><title>asm_sysvec_irq_work (175 samples, 0.01%)</title><rect x="95.8449%" y="549" width="0.0114%" height="15" fill="rgb(253,141,28)" fg:x="1474907" fg:w="175"/><text x="96.0949%" y="559.50"></text></g><g><title>finish_task_switch (8,483 samples, 0.55%)</title><rect x="95.3147%" y="565" width="0.5513%" height="15" fill="rgb(225,207,27)" fg:x="1466747" fg:w="8483"/><text x="95.5647%" y="575.50"></text></g><g><title>psi_task_change (182 samples, 0.01%)</title><rect x="95.8719%" y="565" width="0.0118%" height="15" fill="rgb(220,84,2)" fg:x="1475322" fg:w="182"/><text x="96.1219%" y="575.50"></text></g><g><title>psi_group_change (157 samples, 0.01%)</title><rect x="95.8735%" y="549" width="0.0102%" height="15" fill="rgb(224,37,37)" fg:x="1475347" fg:w="157"/><text x="96.1235%" y="559.50"></text></g><g><title>futex_wait_queue_me (9,318 samples, 0.61%)</title><rect x="95.2833%" y="613" width="0.6055%" height="15" fill="rgb(220,143,18)" fg:x="1466264" fg:w="9318"/><text x="95.5333%" y="623.50"></text></g><g><title>schedule (9,222 samples, 0.60%)</title><rect x="95.2895%" y="597" width="0.5993%" height="15" fill="rgb(210,88,33)" fg:x="1466360" fg:w="9222"/><text x="95.5395%" y="607.50"></text></g><g><title>__schedule (9,198 samples, 0.60%)</title><rect x="95.2911%" y="581" width="0.5977%" height="15" fill="rgb(219,87,51)" fg:x="1466384" fg:w="9198"/><text x="95.5411%" y="591.50"></text></g><g><title>futex_wait (9,456 samples, 0.61%)</title><rect x="95.2785%" y="629" width="0.6145%" height="15" fill="rgb(211,7,35)" fg:x="1466190" fg:w="9456"/><text x="95.5285%" y="639.50"></text></g><g><title>__x64_sys_futex (10,027 samples, 0.65%)</title><rect x="95.2741%" y="661" width="0.6516%" height="15" fill="rgb(232,77,2)" fg:x="1466122" fg:w="10027"/><text x="95.5241%" y="671.50"></text></g><g><title>do_futex (9,997 samples, 0.65%)</title><rect x="95.2760%" y="645" width="0.6496%" height="15" fill="rgb(249,94,25)" fg:x="1466152" fg:w="9997"/><text x="95.5260%" y="655.50"></text></g><g><title>futex_wake (503 samples, 0.03%)</title><rect x="95.8930%" y="629" width="0.0327%" height="15" fill="rgb(215,112,2)" fg:x="1475646" fg:w="503"/><text x="96.1430%" y="639.50"></text></g><g><title>wake_up_q (438 samples, 0.03%)</title><rect x="95.8972%" y="613" width="0.0285%" height="15" fill="rgb(226,115,48)" fg:x="1475711" fg:w="438"/><text x="96.1472%" y="623.50"></text></g><g><title>try_to_wake_up (433 samples, 0.03%)</title><rect x="95.8975%" y="597" width="0.0281%" height="15" fill="rgb(249,196,10)" fg:x="1475716" fg:w="433"/><text x="96.1475%" y="607.50"></text></g><g><title>__split_vma (175 samples, 0.01%)</title><rect x="95.9321%" y="613" width="0.0114%" height="15" fill="rgb(237,109,14)" fg:x="1476248" fg:w="175"/><text x="96.1821%" y="623.50"></text></g><g><title>tlb_finish_mmu (474 samples, 0.03%)</title><rect x="95.9540%" y="597" width="0.0308%" height="15" fill="rgb(217,103,53)" fg:x="1476586" fg:w="474"/><text x="96.2040%" y="607.50"></text></g><g><title>release_pages (365 samples, 0.02%)</title><rect x="95.9611%" y="581" width="0.0237%" height="15" fill="rgb(244,137,9)" fg:x="1476695" fg:w="365"/><text x="96.2111%" y="591.50"></text></g><g><title>unmap_page_range (264 samples, 0.02%)</title><rect x="95.9852%" y="581" width="0.0172%" height="15" fill="rgb(227,201,3)" fg:x="1477065" fg:w="264"/><text x="96.2352%" y="591.50"></text></g><g><title>unmap_region (860 samples, 0.06%)</title><rect x="95.9466%" y="613" width="0.0559%" height="15" fill="rgb(243,94,6)" fg:x="1476471" fg:w="860"/><text x="96.1966%" y="623.50"></text></g><g><title>unmap_vmas (269 samples, 0.02%)</title><rect x="95.9850%" y="597" width="0.0175%" height="15" fill="rgb(235,118,5)" fg:x="1477062" fg:w="269"/><text x="96.2350%" y="607.50"></text></g><g><title>__do_munmap (1,115 samples, 0.07%)</title><rect x="95.9307%" y="629" width="0.0725%" height="15" fill="rgb(247,10,30)" fg:x="1476226" fg:w="1115"/><text x="96.1807%" y="639.50"></text></g><g><title>__vm_munmap (1,136 samples, 0.07%)</title><rect x="95.9305%" y="645" width="0.0738%" height="15" fill="rgb(205,26,28)" fg:x="1476223" fg:w="1136"/><text x="96.1805%" y="655.50"></text></g><g><title>__x64_sys_munmap (1,139 samples, 0.07%)</title><rect x="95.9304%" y="661" width="0.0740%" height="15" fill="rgb(206,99,35)" fg:x="1476222" fg:w="1139"/><text x="96.1804%" y="671.50"></text></g><g><title>do_filp_open (259 samples, 0.02%)</title><rect x="96.0051%" y="629" width="0.0168%" height="15" fill="rgb(238,130,40)" fg:x="1477372" fg:w="259"/><text x="96.2551%" y="639.50"></text></g><g><title>path_openat (256 samples, 0.02%)</title><rect x="96.0053%" y="613" width="0.0166%" height="15" fill="rgb(224,126,31)" fg:x="1477375" fg:w="256"/><text x="96.2553%" y="623.50"></text></g><g><title>__x64_sys_open (283 samples, 0.02%)</title><rect x="96.0047%" y="661" width="0.0184%" height="15" fill="rgb(254,105,17)" fg:x="1477365" fg:w="283"/><text x="96.2547%" y="671.50"></text></g><g><title>do_sys_openat2 (283 samples, 0.02%)</title><rect x="96.0047%" y="645" width="0.0184%" height="15" fill="rgb(216,87,36)" fg:x="1477365" fg:w="283"/><text x="96.2547%" y="655.50"></text></g><g><title>__alloc_fd (482 samples, 0.03%)</title><rect x="96.0359%" y="629" width="0.0313%" height="15" fill="rgb(240,21,12)" fg:x="1477846" fg:w="482"/><text x="96.2859%" y="639.50"></text></g><g><title>___slab_alloc (331 samples, 0.02%)</title><rect x="96.1569%" y="533" width="0.0215%" height="15" fill="rgb(245,192,34)" fg:x="1479708" fg:w="331"/><text x="96.4069%" y="543.50"></text></g><g><title>__slab_alloc (349 samples, 0.02%)</title><rect x="96.1559%" y="549" width="0.0227%" height="15" fill="rgb(226,100,49)" fg:x="1479692" fg:w="349"/><text x="96.4059%" y="559.50"></text></g><g><title>__mod_memcg_lruvec_state (160 samples, 0.01%)</title><rect x="96.2176%" y="533" width="0.0104%" height="15" fill="rgb(245,188,27)" fg:x="1480641" fg:w="160"/><text x="96.4676%" y="543.50"></text></g><g><title>memcg_slab_post_alloc_hook (810 samples, 0.05%)</title><rect x="96.1787%" y="549" width="0.0526%" height="15" fill="rgb(212,170,8)" fg:x="1480043" fg:w="810"/><text x="96.4287%" y="559.50"></text></g><g><title>get_obj_cgroup_from_current (521 samples, 0.03%)</title><rect x="96.2489%" y="533" width="0.0339%" height="15" fill="rgb(217,113,29)" fg:x="1481123" fg:w="521"/><text x="96.4989%" y="543.50"></text></g><g><title>obj_cgroup_charge (237 samples, 0.02%)</title><rect x="96.2827%" y="533" width="0.0154%" height="15" fill="rgb(237,30,3)" fg:x="1481644" fg:w="237"/><text x="96.5327%" y="543.50"></text></g><g><title>kmem_cache_alloc (2,532 samples, 0.16%)</title><rect x="96.1342%" y="565" width="0.1645%" height="15" fill="rgb(227,19,28)" fg:x="1479358" fg:w="2532"/><text x="96.3842%" y="575.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (915 samples, 0.06%)</title><rect x="96.2393%" y="549" width="0.0595%" height="15" fill="rgb(239,172,45)" fg:x="1480975" fg:w="915"/><text x="96.4893%" y="559.50"></text></g><g><title>apparmor_file_alloc_security (472 samples, 0.03%)</title><rect x="96.3041%" y="549" width="0.0307%" height="15" fill="rgb(254,55,39)" fg:x="1481972" fg:w="472"/><text x="96.5541%" y="559.50"></text></g><g><title>__alloc_file (3,695 samples, 0.24%)</title><rect x="96.1190%" y="581" width="0.2401%" height="15" fill="rgb(249,208,12)" fg:x="1479124" fg:w="3695"/><text x="96.3690%" y="591.50"></text></g><g><title>security_file_alloc (929 samples, 0.06%)</title><rect x="96.2987%" y="565" width="0.0604%" height="15" fill="rgb(240,52,13)" fg:x="1481890" fg:w="929"/><text x="96.5487%" y="575.50"></text></g><g><title>kmem_cache_alloc (374 samples, 0.02%)</title><rect x="96.3348%" y="549" width="0.0243%" height="15" fill="rgb(252,149,13)" fg:x="1482445" fg:w="374"/><text x="96.5848%" y="559.50"></text></g><g><title>alloc_empty_file (3,775 samples, 0.25%)</title><rect x="96.1155%" y="597" width="0.2453%" height="15" fill="rgb(232,81,48)" fg:x="1479071" fg:w="3775"/><text x="96.3655%" y="607.50"></text></g><g><title>__legitimize_mnt (240 samples, 0.02%)</title><rect x="96.3666%" y="549" width="0.0156%" height="15" fill="rgb(222,144,2)" fg:x="1482935" fg:w="240"/><text x="96.6166%" y="559.50"></text></g><g><title>__legitimize_path (410 samples, 0.03%)</title><rect x="96.3645%" y="565" width="0.0266%" height="15" fill="rgb(216,81,32)" fg:x="1482902" fg:w="410"/><text x="96.6145%" y="575.50"></text></g><g><title>complete_walk (511 samples, 0.03%)</title><rect x="96.3609%" y="597" width="0.0332%" height="15" fill="rgb(244,78,51)" fg:x="1482847" fg:w="511"/><text x="96.6109%" y="607.50"></text></g><g><title>try_to_unlazy (492 samples, 0.03%)</title><rect x="96.3621%" y="581" width="0.0320%" height="15" fill="rgb(217,66,21)" fg:x="1482866" fg:w="492"/><text x="96.6121%" y="591.50"></text></g><g><title>errseq_sample (398 samples, 0.03%)</title><rect x="96.4265%" y="581" width="0.0259%" height="15" fill="rgb(247,101,42)" fg:x="1483856" fg:w="398"/><text x="96.6765%" y="591.50"></text></g><g><title>apparmor_file_open (323 samples, 0.02%)</title><rect x="96.4758%" y="565" width="0.0210%" height="15" fill="rgb(227,81,39)" fg:x="1484615" fg:w="323"/><text x="96.7258%" y="575.50"></text></g><g><title>__srcu_read_lock (173 samples, 0.01%)</title><rect x="96.5086%" y="549" width="0.0112%" height="15" fill="rgb(220,223,44)" fg:x="1485119" fg:w="173"/><text x="96.7586%" y="559.50"></text></g><g><title>tomoyo_check_open_permission (668 samples, 0.04%)</title><rect x="96.4969%" y="565" width="0.0434%" height="15" fill="rgb(205,218,2)" fg:x="1484939" fg:w="668"/><text x="96.7469%" y="575.50"></text></g><g><title>tomoyo_init_request_info (161 samples, 0.01%)</title><rect x="96.5298%" y="549" width="0.0105%" height="15" fill="rgb(212,207,28)" fg:x="1485446" fg:w="161"/><text x="96.7798%" y="559.50"></text></g><g><title>security_file_open (1,101 samples, 0.07%)</title><rect x="96.4707%" y="581" width="0.0715%" height="15" fill="rgb(224,12,41)" fg:x="1484536" fg:w="1101"/><text x="96.7207%" y="591.50"></text></g><g><title>do_dentry_open (2,282 samples, 0.15%)</title><rect x="96.3942%" y="597" width="0.1483%" height="15" fill="rgb(216,118,12)" fg:x="1483360" fg:w="2282"/><text x="96.6442%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (157 samples, 0.01%)</title><rect x="96.5536%" y="437" width="0.0102%" height="15" fill="rgb(252,97,46)" fg:x="1485812" fg:w="157"/><text x="96.8036%" y="447.50"></text></g><g><title>finish_task_switch (164 samples, 0.01%)</title><rect x="96.5535%" y="453" width="0.0107%" height="15" fill="rgb(244,206,19)" fg:x="1485810" fg:w="164"/><text x="96.8035%" y="463.50"></text></g><g><title>__btrfs_tree_lock (175 samples, 0.01%)</title><rect x="96.5529%" y="501" width="0.0114%" height="15" fill="rgb(231,84,31)" fg:x="1485801" fg:w="175"/><text x="96.8029%" y="511.50"></text></g><g><title>schedule (167 samples, 0.01%)</title><rect x="96.5534%" y="485" width="0.0109%" height="15" fill="rgb(244,133,0)" fg:x="1485809" fg:w="167"/><text x="96.8034%" y="495.50"></text></g><g><title>__schedule (167 samples, 0.01%)</title><rect x="96.5534%" y="469" width="0.0109%" height="15" fill="rgb(223,15,50)" fg:x="1485809" fg:w="167"/><text x="96.8034%" y="479.50"></text></g><g><title>btrfs_lock_root_node (176 samples, 0.01%)</title><rect x="96.5529%" y="517" width="0.0114%" height="15" fill="rgb(250,118,49)" fg:x="1485801" fg:w="176"/><text x="96.8029%" y="527.50"></text></g><g><title>btrfs_truncate_inode_items (253 samples, 0.02%)</title><rect x="96.5488%" y="549" width="0.0164%" height="15" fill="rgb(248,25,38)" fg:x="1485739" fg:w="253"/><text x="96.7988%" y="559.50"></text></g><g><title>btrfs_search_slot (249 samples, 0.02%)</title><rect x="96.5491%" y="533" width="0.0162%" height="15" fill="rgb(215,70,14)" fg:x="1485743" fg:w="249"/><text x="96.7991%" y="543.50"></text></g><g><title>notify_change (279 samples, 0.02%)</title><rect x="96.5476%" y="581" width="0.0181%" height="15" fill="rgb(215,28,15)" fg:x="1485720" fg:w="279"/><text x="96.7976%" y="591.50"></text></g><g><title>btrfs_setattr (279 samples, 0.02%)</title><rect x="96.5476%" y="565" width="0.0181%" height="15" fill="rgb(243,6,28)" fg:x="1485720" fg:w="279"/><text x="96.7976%" y="575.50"></text></g><g><title>do_truncate (365 samples, 0.02%)</title><rect x="96.5425%" y="597" width="0.0237%" height="15" fill="rgb(222,130,1)" fg:x="1485642" fg:w="365"/><text x="96.7925%" y="607.50"></text></g><g><title>inode_permission.part.0 (686 samples, 0.04%)</title><rect x="96.6164%" y="581" width="0.0446%" height="15" fill="rgb(236,166,44)" fg:x="1486779" fg:w="686"/><text x="96.8664%" y="591.50"></text></g><g><title>lookup_fast (1,070 samples, 0.07%)</title><rect x="96.6803%" y="565" width="0.0695%" height="15" fill="rgb(221,108,14)" fg:x="1487762" fg:w="1070"/><text x="96.9303%" y="575.50"></text></g><g><title>__d_lookup_rcu (905 samples, 0.06%)</title><rect x="96.6910%" y="549" width="0.0588%" height="15" fill="rgb(252,3,45)" fg:x="1487927" fg:w="905"/><text x="96.9410%" y="559.50"></text></g><g><title>link_path_walk.part.0 (2,984 samples, 0.19%)</title><rect x="96.5663%" y="597" width="0.1939%" height="15" fill="rgb(237,68,30)" fg:x="1486007" fg:w="2984"/><text x="96.8163%" y="607.50"></text></g><g><title>walk_component (1,450 samples, 0.09%)</title><rect x="96.6659%" y="581" width="0.0942%" height="15" fill="rgb(211,79,22)" fg:x="1487541" fg:w="1450"/><text x="96.9159%" y="591.50"></text></g><g><title>step_into (159 samples, 0.01%)</title><rect x="96.7498%" y="565" width="0.0103%" height="15" fill="rgb(252,185,21)" fg:x="1488832" fg:w="159"/><text x="96.9998%" y="575.50"></text></g><g><title>lookup_fast (1,742 samples, 0.11%)</title><rect x="96.7602%" y="597" width="0.1132%" height="15" fill="rgb(225,189,26)" fg:x="1488991" fg:w="1742"/><text x="97.0102%" y="607.50"></text></g><g><title>__d_lookup_rcu (1,670 samples, 0.11%)</title><rect x="96.7649%" y="581" width="0.1085%" height="15" fill="rgb(241,30,40)" fg:x="1489063" fg:w="1670"/><text x="97.0149%" y="591.50"></text></g><g><title>inode_permission.part.0 (199 samples, 0.01%)</title><rect x="96.9113%" y="581" width="0.0129%" height="15" fill="rgb(235,215,44)" fg:x="1491316" fg:w="199"/><text x="97.1613%" y="591.50"></text></g><g><title>may_open (793 samples, 0.05%)</title><rect x="96.8734%" y="597" width="0.0515%" height="15" fill="rgb(205,8,29)" fg:x="1490733" fg:w="793"/><text x="97.1234%" y="607.50"></text></g><g><title>__fget_light (289 samples, 0.02%)</title><rect x="96.9365%" y="581" width="0.0188%" height="15" fill="rgb(241,137,42)" fg:x="1491705" fg:w="289"/><text x="97.1865%" y="591.50"></text></g><g><title>__fget_files (253 samples, 0.02%)</title><rect x="96.9389%" y="565" width="0.0164%" height="15" fill="rgb(237,155,2)" fg:x="1491741" fg:w="253"/><text x="97.1889%" y="575.50"></text></g><g><title>path_init (573 samples, 0.04%)</title><rect x="96.9250%" y="597" width="0.0372%" height="15" fill="rgb(245,29,42)" fg:x="1491527" fg:w="573"/><text x="97.1750%" y="607.50"></text></g><g><title>dput (244 samples, 0.02%)</title><rect x="96.9695%" y="581" width="0.0159%" height="15" fill="rgb(234,101,35)" fg:x="1492213" fg:w="244"/><text x="97.2195%" y="591.50"></text></g><g><title>terminate_walk (402 samples, 0.03%)</title><rect x="96.9661%" y="597" width="0.0261%" height="15" fill="rgb(228,64,37)" fg:x="1492160" fg:w="402"/><text x="97.2161%" y="607.50"></text></g><g><title>do_filp_open (13,950 samples, 0.91%)</title><rect x="96.0870%" y="629" width="0.9065%" height="15" fill="rgb(217,214,36)" fg:x="1478632" fg:w="13950"/><text x="96.3370%" y="639.50"></text></g><g><title>path_openat (13,747 samples, 0.89%)</title><rect x="96.1002%" y="613" width="0.8933%" height="15" fill="rgb(243,70,3)" fg:x="1478835" fg:w="13747"/><text x="96.3502%" y="623.50"></text></g><g><title>memset_erms (1,025 samples, 0.07%)</title><rect x="97.0403%" y="597" width="0.0666%" height="15" fill="rgb(253,158,52)" fg:x="1493302" fg:w="1025"/><text x="97.2903%" y="607.50"></text></g><g><title>kmem_cache_alloc (1,597 samples, 0.10%)</title><rect x="97.0184%" y="613" width="0.1038%" height="15" fill="rgb(234,111,54)" fg:x="1492964" fg:w="1597"/><text x="97.2684%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (234 samples, 0.02%)</title><rect x="97.1069%" y="597" width="0.0152%" height="15" fill="rgb(217,70,32)" fg:x="1494327" fg:w="234"/><text x="97.3569%" y="607.50"></text></g><g><title>__virt_addr_valid (286 samples, 0.02%)</title><rect x="97.1664%" y="581" width="0.0186%" height="15" fill="rgb(234,18,33)" fg:x="1495242" fg:w="286"/><text x="97.4164%" y="591.50"></text></g><g><title>__check_object_size (563 samples, 0.04%)</title><rect x="97.1502%" y="597" width="0.0366%" height="15" fill="rgb(234,12,49)" fg:x="1494993" fg:w="563"/><text x="97.4002%" y="607.50"></text></g><g><title>getname_flags.part.0 (2,692 samples, 0.17%)</title><rect x="97.0120%" y="629" width="0.1749%" height="15" fill="rgb(236,10,21)" fg:x="1492866" fg:w="2692"/><text x="97.2620%" y="639.50"></text></g><g><title>strncpy_from_user (997 samples, 0.06%)</title><rect x="97.1221%" y="613" width="0.0648%" height="15" fill="rgb(248,182,45)" fg:x="1494561" fg:w="997"/><text x="97.3721%" y="623.50"></text></g><g><title>kmem_cache_free (430 samples, 0.03%)</title><rect x="97.1869%" y="629" width="0.0279%" height="15" fill="rgb(217,95,36)" fg:x="1495558" fg:w="430"/><text x="97.4369%" y="639.50"></text></g><g><title>__x64_sys_openat (18,394 samples, 1.20%)</title><rect x="96.0231%" y="661" width="1.1953%" height="15" fill="rgb(212,110,31)" fg:x="1477648" fg:w="18394"/><text x="96.2731%" y="671.50"></text></g><g><title>do_sys_openat2 (18,321 samples, 1.19%)</title><rect x="96.0278%" y="645" width="1.1906%" height="15" fill="rgb(206,32,53)" fg:x="1477721" fg:w="18321"/><text x="96.2778%" y="655.50"></text></g><g><title>__fget_files (1,066 samples, 0.07%)</title><rect x="97.3125%" y="613" width="0.0693%" height="15" fill="rgb(246,141,37)" fg:x="1497490" fg:w="1066"/><text x="97.5625%" y="623.50"></text></g><g><title>__fget_light (1,293 samples, 0.08%)</title><rect x="97.2978%" y="629" width="0.0840%" height="15" fill="rgb(219,16,7)" fg:x="1497265" fg:w="1293"/><text x="97.5478%" y="639.50"></text></g><g><title>__fdget_pos (2,339 samples, 0.15%)</title><rect x="97.2764%" y="645" width="0.1520%" height="15" fill="rgb(230,205,45)" fg:x="1496935" fg:w="2339"/><text x="97.5264%" y="655.50"></text></g><g><title>mutex_lock (716 samples, 0.05%)</title><rect x="97.3819%" y="629" width="0.0465%" height="15" fill="rgb(231,43,49)" fg:x="1498558" fg:w="716"/><text x="97.6319%" y="639.50"></text></g><g><title>fput_many (549 samples, 0.04%)</title><rect x="97.4296%" y="645" width="0.0357%" height="15" fill="rgb(212,106,34)" fg:x="1499292" fg:w="549"/><text x="97.6796%" y="655.50"></text></g><g><title>mutex_unlock (578 samples, 0.04%)</title><rect x="97.4652%" y="645" width="0.0376%" height="15" fill="rgb(206,83,17)" fg:x="1499841" fg:w="578"/><text x="97.7152%" y="655.50"></text></g><g><title>__fsnotify_parent (1,155 samples, 0.08%)</title><rect x="97.5824%" y="629" width="0.0751%" height="15" fill="rgb(244,154,49)" fg:x="1501644" fg:w="1155"/><text x="97.8324%" y="639.50"></text></g><g><title>btrfs_file_read_iter (209 samples, 0.01%)</title><rect x="97.7254%" y="613" width="0.0136%" height="15" fill="rgb(244,149,49)" fg:x="1503844" fg:w="209"/><text x="97.9754%" y="623.50"></text></g><g><title>_cond_resched (217 samples, 0.01%)</title><rect x="97.9092%" y="597" width="0.0141%" height="15" fill="rgb(227,134,18)" fg:x="1506673" fg:w="217"/><text x="98.1592%" y="607.50"></text></g><g><title>_cond_resched (173 samples, 0.01%)</title><rect x="97.9968%" y="581" width="0.0112%" height="15" fill="rgb(237,116,36)" fg:x="1508021" fg:w="173"/><text x="98.2468%" y="591.50"></text></g><g><title>asm_exc_page_fault (350 samples, 0.02%)</title><rect x="98.4107%" y="565" width="0.0227%" height="15" fill="rgb(205,129,40)" fg:x="1514390" fg:w="350"/><text x="98.6607%" y="575.50"></text></g><g><title>exc_page_fault (158 samples, 0.01%)</title><rect x="98.4232%" y="549" width="0.0103%" height="15" fill="rgb(236,178,4)" fg:x="1514582" fg:w="158"/><text x="98.6732%" y="559.50"></text></g><g><title>do_user_addr_fault (157 samples, 0.01%)</title><rect x="98.4232%" y="533" width="0.0102%" height="15" fill="rgb(251,76,53)" fg:x="1514583" fg:w="157"/><text x="98.6732%" y="543.50"></text></g><g><title>copy_user_enhanced_fast_string (6,563 samples, 0.43%)</title><rect x="98.0086%" y="581" width="0.4265%" height="15" fill="rgb(242,92,40)" fg:x="1508202" fg:w="6563"/><text x="98.2586%" y="591.50"></text></g><g><title>copy_page_to_iter (7,924 samples, 0.51%)</title><rect x="97.9240%" y="597" width="0.5149%" height="15" fill="rgb(209,45,30)" fg:x="1506900" fg:w="7924"/><text x="98.1740%" y="607.50"></text></g><g><title>pagecache_get_page (4,201 samples, 0.27%)</title><rect x="98.4458%" y="597" width="0.2730%" height="15" fill="rgb(218,157,36)" fg:x="1514930" fg:w="4201"/><text x="98.6958%" y="607.50"></text></g><g><title>find_get_entry (3,548 samples, 0.23%)</title><rect x="98.4882%" y="581" width="0.2306%" height="15" fill="rgb(222,186,16)" fg:x="1515583" fg:w="3548"/><text x="98.7382%" y="591.50"></text></g><g><title>xas_load (923 samples, 0.06%)</title><rect x="98.6588%" y="565" width="0.0600%" height="15" fill="rgb(254,72,35)" fg:x="1518208" fg:w="923"/><text x="98.9088%" y="575.50"></text></g><g><title>xas_start (645 samples, 0.04%)</title><rect x="98.6769%" y="549" width="0.0419%" height="15" fill="rgb(224,25,35)" fg:x="1518486" fg:w="645"/><text x="98.9269%" y="559.50"></text></g><g><title>atime_needs_update (1,187 samples, 0.08%)</title><rect x="98.7362%" y="581" width="0.0771%" height="15" fill="rgb(206,135,52)" fg:x="1519399" fg:w="1187"/><text x="98.9862%" y="591.50"></text></g><g><title>current_time (674 samples, 0.04%)</title><rect x="98.7695%" y="565" width="0.0438%" height="15" fill="rgb(229,174,47)" fg:x="1519912" fg:w="674"/><text x="99.0195%" y="575.50"></text></g><g><title>ktime_get_coarse_real_ts64 (272 samples, 0.02%)</title><rect x="98.7957%" y="549" width="0.0177%" height="15" fill="rgb(242,184,21)" fg:x="1520314" fg:w="272"/><text x="99.0457%" y="559.50"></text></g><g><title>btrfs_block_rsv_add (172 samples, 0.01%)</title><rect x="98.8308%" y="533" width="0.0112%" height="15" fill="rgb(213,22,45)" fg:x="1520855" fg:w="172"/><text x="99.0808%" y="543.50"></text></g><g><title>btrfs_delayed_update_inode (375 samples, 0.02%)</title><rect x="98.8223%" y="549" width="0.0244%" height="15" fill="rgb(237,81,54)" fg:x="1520724" fg:w="375"/><text x="99.0723%" y="559.50"></text></g><g><title>btrfs_update_inode (414 samples, 0.03%)</title><rect x="98.8219%" y="565" width="0.0269%" height="15" fill="rgb(248,177,18)" fg:x="1520718" fg:w="414"/><text x="99.0719%" y="575.50"></text></g><g><title>btrfs_dirty_inode (761 samples, 0.05%)</title><rect x="98.8133%" y="581" width="0.0495%" height="15" fill="rgb(254,31,16)" fg:x="1520586" fg:w="761"/><text x="99.0633%" y="591.50"></text></g><g><title>generic_file_buffered_read (17,297 samples, 1.12%)</title><rect x="97.7390%" y="613" width="1.1240%" height="15" fill="rgb(235,20,31)" fg:x="1504053" fg:w="17297"/><text x="97.9890%" y="623.50"></text></g><g><title>touch_atime (2,219 samples, 0.14%)</title><rect x="98.7188%" y="597" width="0.1442%" height="15" fill="rgb(240,56,43)" fg:x="1519131" fg:w="2219"/><text x="98.9688%" y="607.50"></text></g><g><title>new_sync_read (18,692 samples, 1.21%)</title><rect x="97.6579%" y="629" width="1.2147%" height="15" fill="rgb(237,197,51)" fg:x="1502806" fg:w="18692"/><text x="97.9079%" y="639.50"></text></g><g><title>rw_verify_area (246 samples, 0.02%)</title><rect x="98.8726%" y="629" width="0.0160%" height="15" fill="rgb(241,162,44)" fg:x="1521498" fg:w="246"/><text x="99.1226%" y="639.50"></text></g><g><title>aa_file_perm (274 samples, 0.02%)</title><rect x="98.9850%" y="597" width="0.0178%" height="15" fill="rgb(224,23,20)" fg:x="1523228" fg:w="274"/><text x="99.2350%" y="607.50"></text></g><g><title>apparmor_file_permission (1,296 samples, 0.08%)</title><rect x="98.9189%" y="613" width="0.0842%" height="15" fill="rgb(250,109,34)" fg:x="1522211" fg:w="1296"/><text x="99.1689%" y="623.50"></text></g><g><title>security_file_permission (1,768 samples, 0.11%)</title><rect x="98.8886%" y="629" width="0.1149%" height="15" fill="rgb(214,175,50)" fg:x="1521744" fg:w="1768"/><text x="99.1386%" y="639.50"></text></g><g><title>ksys_read (26,970 samples, 1.75%)</title><rect x="97.2510%" y="661" width="1.7526%" height="15" fill="rgb(213,182,5)" fg:x="1496544" fg:w="26970"/><text x="97.5010%" y="671.50"></text></g><g><title>vfs_read (23,095 samples, 1.50%)</title><rect x="97.5028%" y="645" width="1.5008%" height="15" fill="rgb(209,199,19)" fg:x="1500419" fg:w="23095"/><text x="97.7528%" y="655.50"></text></g><g><title>syscall_enter_from_user_mode (235 samples, 0.02%)</title><rect x="99.0045%" y="661" width="0.0153%" height="15" fill="rgb(236,224,42)" fg:x="1523528" fg:w="235"/><text x="99.2545%" y="671.50"></text></g><g><title>perf_iterate_sb (178 samples, 0.01%)</title><rect x="99.0313%" y="597" width="0.0116%" height="15" fill="rgb(246,226,29)" fg:x="1523940" fg:w="178"/><text x="99.2813%" y="607.50"></text></g><g><title>perf_event_mmap (221 samples, 0.01%)</title><rect x="99.0288%" y="613" width="0.0144%" height="15" fill="rgb(227,223,11)" fg:x="1523901" fg:w="221"/><text x="99.2788%" y="623.50"></text></g><g><title>do_mmap (484 samples, 0.03%)</title><rect x="99.0200%" y="645" width="0.0315%" height="15" fill="rgb(219,7,51)" fg:x="1523767" fg:w="484"/><text x="99.2700%" y="655.50"></text></g><g><title>mmap_region (382 samples, 0.02%)</title><rect x="99.0267%" y="629" width="0.0248%" height="15" fill="rgb(245,167,10)" fg:x="1523869" fg:w="382"/><text x="99.2767%" y="639.50"></text></g><g><title>do_syscall_64 (63,194 samples, 4.11%)</title><rect x="94.9501%" y="677" width="4.1066%" height="15" fill="rgb(237,224,16)" fg:x="1461137" fg:w="63194"/><text x="95.2001%" y="687.50">do_s..</text></g><g><title>vm_mmap_pgoff (568 samples, 0.04%)</title><rect x="99.0198%" y="661" width="0.0369%" height="15" fill="rgb(226,132,13)" fg:x="1523763" fg:w="568"/><text x="99.2698%" y="671.50"></text></g><g><title>arch_do_signal (171 samples, 0.01%)</title><rect x="99.1100%" y="645" width="0.0111%" height="15" fill="rgb(214,140,3)" fg:x="1525152" fg:w="171"/><text x="99.3600%" y="655.50"></text></g><g><title>get_signal (168 samples, 0.01%)</title><rect x="99.1102%" y="629" width="0.0109%" height="15" fill="rgb(221,177,4)" fg:x="1525155" fg:w="168"/><text x="99.3602%" y="639.50"></text></g><g><title>fpregs_assert_state_consistent (253 samples, 0.02%)</title><rect x="99.1232%" y="645" width="0.0164%" height="15" fill="rgb(238,139,3)" fg:x="1525355" fg:w="253"/><text x="99.3732%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (156 samples, 0.01%)</title><rect x="99.1458%" y="597" width="0.0101%" height="15" fill="rgb(216,17,39)" fg:x="1525702" fg:w="156"/><text x="99.3958%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (154 samples, 0.01%)</title><rect x="99.1459%" y="581" width="0.0100%" height="15" fill="rgb(238,120,9)" fg:x="1525704" fg:w="154"/><text x="99.3959%" y="591.50"></text></g><g><title>finish_task_switch (170 samples, 0.01%)</title><rect x="99.1456%" y="613" width="0.0110%" height="15" fill="rgb(244,92,53)" fg:x="1525699" fg:w="170"/><text x="99.3956%" y="623.50"></text></g><g><title>schedule (205 samples, 0.01%)</title><rect x="99.1445%" y="645" width="0.0133%" height="15" fill="rgb(224,148,33)" fg:x="1525682" fg:w="205"/><text x="99.3945%" y="655.50"></text></g><g><title>__schedule (203 samples, 0.01%)</title><rect x="99.1446%" y="629" width="0.0132%" height="15" fill="rgb(243,6,36)" fg:x="1525684" fg:w="203"/><text x="99.3946%" y="639.50"></text></g><g><title>btrfs_release_file (485 samples, 0.03%)</title><rect x="99.1982%" y="613" width="0.0315%" height="15" fill="rgb(230,102,11)" fg:x="1526509" fg:w="485"/><text x="99.4482%" y="623.50"></text></g><g><title>lockref_put_or_lock (161 samples, 0.01%)</title><rect x="99.2430%" y="597" width="0.0105%" height="15" fill="rgb(234,148,36)" fg:x="1527198" fg:w="161"/><text x="99.4930%" y="607.50"></text></g><g><title>dput (376 samples, 0.02%)</title><rect x="99.2297%" y="613" width="0.0244%" height="15" fill="rgb(251,153,25)" fg:x="1526994" fg:w="376"/><text x="99.4797%" y="623.50"></text></g><g><title>kmem_cache_free (305 samples, 0.02%)</title><rect x="99.2542%" y="613" width="0.0198%" height="15" fill="rgb(215,129,8)" fg:x="1527370" fg:w="305"/><text x="99.5042%" y="623.50"></text></g><g><title>security_file_free (443 samples, 0.03%)</title><rect x="99.2925%" y="613" width="0.0288%" height="15" fill="rgb(224,128,35)" fg:x="1527960" fg:w="443"/><text x="99.5425%" y="623.50"></text></g><g><title>apparmor_file_free_security (375 samples, 0.02%)</title><rect x="99.2969%" y="597" width="0.0244%" height="15" fill="rgb(237,56,52)" fg:x="1528028" fg:w="375"/><text x="99.5469%" y="607.50"></text></g><g><title>__fput (2,253 samples, 0.15%)</title><rect x="99.1750%" y="629" width="0.1464%" height="15" fill="rgb(234,213,19)" fg:x="1526151" fg:w="2253"/><text x="99.4250%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68,550 samples, 4.45%)</title><rect x="94.9097%" y="693" width="4.4546%" height="15" fill="rgb(252,82,23)" fg:x="1460515" fg:w="68550"/><text x="95.1597%" y="703.50">entry..</text></g><g><title>syscall_exit_to_user_mode (4,734 samples, 0.31%)</title><rect x="99.0567%" y="677" width="0.3076%" height="15" fill="rgb(254,201,21)" fg:x="1524331" fg:w="4734"/><text x="99.3067%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (4,521 samples, 0.29%)</title><rect x="99.0705%" y="661" width="0.2938%" height="15" fill="rgb(250,186,11)" fg:x="1524544" fg:w="4521"/><text x="99.3205%" y="671.50"></text></g><g><title>task_work_run (3,056 samples, 0.20%)</title><rect x="99.1657%" y="645" width="0.1986%" height="15" fill="rgb(211,174,5)" fg:x="1526009" fg:w="3056"/><text x="99.4157%" y="655.50"></text></g><g><title>call_rcu (525 samples, 0.03%)</title><rect x="99.3302%" y="629" width="0.0341%" height="15" fill="rgb(214,121,10)" fg:x="1528540" fg:w="525"/><text x="99.5802%" y="639.50"></text></g><g><title>rcu_segcblist_enqueue (253 samples, 0.02%)</title><rect x="99.3479%" y="613" width="0.0164%" height="15" fill="rgb(241,66,2)" fg:x="1528812" fg:w="253"/><text x="99.5979%" y="623.50"></text></g><g><title>error_entry (370 samples, 0.02%)</title><rect x="99.3643%" y="693" width="0.0240%" height="15" fill="rgb(220,167,19)" fg:x="1529065" fg:w="370"/><text x="99.6143%" y="703.50"></text></g><g><title>sync_regs (328 samples, 0.02%)</title><rect x="99.3671%" y="677" width="0.0213%" height="15" fill="rgb(231,54,50)" fg:x="1529107" fg:w="328"/><text x="99.6171%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (4,306 samples, 0.28%)</title><rect x="99.4055%" y="645" width="0.2798%" height="15" fill="rgb(239,217,53)" fg:x="1529699" fg:w="4306"/><text x="99.6555%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,203 samples, 0.27%)</title><rect x="99.4122%" y="629" width="0.2731%" height="15" fill="rgb(248,8,0)" fg:x="1529802" fg:w="4203"/><text x="99.6622%" y="639.50"></text></g><g><title>native_write_msr (4,167 samples, 0.27%)</title><rect x="99.4146%" y="613" width="0.2708%" height="15" fill="rgb(229,118,37)" fg:x="1529838" fg:w="4167"/><text x="99.6646%" y="623.50"></text></g><g><title>schedule_tail (4,593 samples, 0.30%)</title><rect x="99.3968%" y="677" width="0.2985%" height="15" fill="rgb(253,223,43)" fg:x="1529564" fg:w="4593"/><text x="99.6468%" y="687.50"></text></g><g><title>finish_task_switch (4,568 samples, 0.30%)</title><rect x="99.3984%" y="661" width="0.2968%" height="15" fill="rgb(211,77,36)" fg:x="1529589" fg:w="4568"/><text x="99.6484%" y="671.50"></text></g><g><title>ret_from_fork (4,775 samples, 0.31%)</title><rect x="99.3925%" y="693" width="0.3103%" height="15" fill="rgb(219,3,53)" fg:x="1529498" fg:w="4775"/><text x="99.6425%" y="703.50"></text></g><g><title>syscall_return_via_sysret (865 samples, 0.06%)</title><rect x="99.7028%" y="693" width="0.0562%" height="15" fill="rgb(244,45,42)" fg:x="1534273" fg:w="865"/><text x="99.9528%" y="703.50"></text></g><g><title>[zig] (134,704 samples, 8.75%)</title><rect x="91.0057%" y="709" width="8.7536%" height="15" fill="rgb(225,95,27)" fg:x="1400438" fg:w="134704"/><text x="91.2557%" y="719.50">[zig]</text></g><g><title>asm_exc_page_fault (921 samples, 0.06%)</title><rect x="99.7598%" y="709" width="0.0599%" height="15" fill="rgb(207,74,8)" fg:x="1535151" fg:w="921"/><text x="100.0098%" y="719.50"></text></g><g><title>unmap_page_range (325 samples, 0.02%)</title><rect x="99.8457%" y="549" width="0.0211%" height="15" fill="rgb(243,63,36)" fg:x="1536473" fg:w="325"/><text x="100.0957%" y="559.50"></text></g><g><title>exit_mmap (424 samples, 0.03%)</title><rect x="99.8394%" y="581" width="0.0276%" height="15" fill="rgb(211,180,12)" fg:x="1536375" fg:w="424"/><text x="100.0894%" y="591.50"></text></g><g><title>unmap_vmas (327 samples, 0.02%)</title><rect x="99.8457%" y="565" width="0.0212%" height="15" fill="rgb(254,166,49)" fg:x="1536472" fg:w="327"/><text x="100.0957%" y="575.50"></text></g><g><title>mmput (428 samples, 0.03%)</title><rect x="99.8392%" y="597" width="0.0278%" height="15" fill="rgb(205,19,0)" fg:x="1536372" fg:w="428"/><text x="100.0892%" y="607.50"></text></g><g><title>begin_new_exec (436 samples, 0.03%)</title><rect x="99.8390%" y="613" width="0.0283%" height="15" fill="rgb(224,172,32)" fg:x="1536370" fg:w="436"/><text x="100.0890%" y="623.50"></text></g><g><title>__x64_sys_execve (495 samples, 0.03%)</title><rect x="99.8377%" y="677" width="0.0322%" height="15" fill="rgb(254,136,30)" fg:x="1536350" fg:w="495"/><text x="100.0877%" y="687.50"></text></g><g><title>do_execveat_common (495 samples, 0.03%)</title><rect x="99.8377%" y="661" width="0.0322%" height="15" fill="rgb(246,19,35)" fg:x="1536350" fg:w="495"/><text x="100.0877%" y="671.50"></text></g><g><title>bprm_execve (495 samples, 0.03%)</title><rect x="99.8377%" y="645" width="0.0322%" height="15" fill="rgb(219,24,36)" fg:x="1536350" fg:w="495"/><text x="100.0877%" y="655.50"></text></g><g><title>load_elf_binary (495 samples, 0.03%)</title><rect x="99.8377%" y="629" width="0.0322%" height="15" fill="rgb(251,55,1)" fg:x="1536350" fg:w="495"/><text x="100.0877%" y="639.50"></text></g><g><title>tlb_finish_mmu (172 samples, 0.01%)</title><rect x="99.8746%" y="597" width="0.0112%" height="15" fill="rgb(218,117,39)" fg:x="1536917" fg:w="172"/><text x="100.1246%" y="607.50"></text></g><g><title>page_remove_rmap (170 samples, 0.01%)</title><rect x="99.9114%" y="565" width="0.0110%" height="15" fill="rgb(248,169,11)" fg:x="1537483" fg:w="170"/><text x="100.1614%" y="575.50"></text></g><g><title>mmput (842 samples, 0.05%)</title><rect x="99.8739%" y="629" width="0.0547%" height="15" fill="rgb(244,40,44)" fg:x="1536907" fg:w="842"/><text x="100.1239%" y="639.50"></text></g><g><title>exit_mmap (842 samples, 0.05%)</title><rect x="99.8739%" y="613" width="0.0547%" height="15" fill="rgb(234,62,37)" fg:x="1536907" fg:w="842"/><text x="100.1239%" y="623.50"></text></g><g><title>unmap_vmas (660 samples, 0.04%)</title><rect x="99.8858%" y="597" width="0.0429%" height="15" fill="rgb(207,117,42)" fg:x="1537089" fg:w="660"/><text x="100.1358%" y="607.50"></text></g><g><title>unmap_page_range (659 samples, 0.04%)</title><rect x="99.8858%" y="581" width="0.0428%" height="15" fill="rgb(213,43,2)" fg:x="1537090" fg:w="659"/><text x="100.1358%" y="591.50"></text></g><g><title>__x64_sys_exit_group (854 samples, 0.06%)</title><rect x="99.8733%" y="677" width="0.0555%" height="15" fill="rgb(244,202,51)" fg:x="1536897" fg:w="854"/><text x="100.1233%" y="687.50"></text></g><g><title>do_group_exit (854 samples, 0.06%)</title><rect x="99.8733%" y="661" width="0.0555%" height="15" fill="rgb(253,174,46)" fg:x="1536897" fg:w="854"/><text x="100.1233%" y="671.50"></text></g><g><title>do_exit (854 samples, 0.06%)</title><rect x="99.8733%" y="645" width="0.0555%" height="15" fill="rgb(251,23,1)" fg:x="1536897" fg:w="854"/><text x="100.1233%" y="655.50"></text></g><g><title>do_syscall_64 (1,405 samples, 0.09%)</title><rect x="99.8377%" y="693" width="0.0913%" height="15" fill="rgb(253,26,1)" fg:x="1536350" fg:w="1405"/><text x="100.0877%" y="703.50"></text></g><g><title>unmap_page_range (311 samples, 0.02%)</title><rect x="99.9392%" y="549" width="0.0202%" height="15" fill="rgb(216,89,31)" fg:x="1537912" fg:w="311"/><text x="100.1892%" y="559.50"></text></g><g><title>exit_mmap (396 samples, 0.03%)</title><rect x="99.9338%" y="581" width="0.0257%" height="15" fill="rgb(209,109,5)" fg:x="1537829" fg:w="396"/><text x="100.1838%" y="591.50"></text></g><g><title>unmap_vmas (313 samples, 0.02%)</title><rect x="99.9392%" y="565" width="0.0203%" height="15" fill="rgb(229,63,13)" fg:x="1537912" fg:w="313"/><text x="100.1892%" y="575.50"></text></g><g><title>mmput (399 samples, 0.03%)</title><rect x="99.9338%" y="597" width="0.0259%" height="15" fill="rgb(238,137,54)" fg:x="1537828" fg:w="399"/><text x="100.1838%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,154 samples, 0.14%)</title><rect x="99.8204%" y="709" width="0.1400%" height="15" fill="rgb(228,1,9)" fg:x="1536084" fg:w="2154"/><text x="100.0704%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (483 samples, 0.03%)</title><rect x="99.9290%" y="693" width="0.0314%" height="15" fill="rgb(249,120,48)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (483 samples, 0.03%)</title><rect x="99.9290%" y="677" width="0.0314%" height="15" fill="rgb(209,72,36)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="687.50"></text></g><g><title>arch_do_signal (483 samples, 0.03%)</title><rect x="99.9290%" y="661" width="0.0314%" height="15" fill="rgb(247,98,49)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="671.50"></text></g><g><title>get_signal (483 samples, 0.03%)</title><rect x="99.9290%" y="645" width="0.0314%" height="15" fill="rgb(233,75,36)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="655.50"></text></g><g><title>do_group_exit (483 samples, 0.03%)</title><rect x="99.9290%" y="629" width="0.0314%" height="15" fill="rgb(225,14,24)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="639.50"></text></g><g><title>do_exit (483 samples, 0.03%)</title><rect x="99.9290%" y="613" width="0.0314%" height="15" fill="rgb(237,193,20)" fg:x="1537755" fg:w="483"/><text x="100.1790%" y="623.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (422 samples, 0.03%)</title><rect x="99.9604%" y="709" width="0.0274%" height="15" fill="rgb(239,122,19)" fg:x="1538238" fg:w="422"/><text x="100.2104%" y="719.50"></text></g><g><title>syscall_return_via_sysret (158 samples, 0.01%)</title><rect x="99.9897%" y="709" width="0.0103%" height="15" fill="rgb(231,220,10)" fg:x="1538688" fg:w="158"/><text x="100.2397%" y="719.50"></text></g><g><title>all (1,538,847 samples, 100%)</title><rect x="0.0000%" y="741" width="100.0000%" height="15" fill="rgb(220,66,15)" fg:x="0" fg:w="1538847"/><text x="0.2500%" y="751.50"></text></g><g><title>zig (138,409 samples, 8.99%)</title><rect x="91.0057%" y="725" width="8.9943%" height="15" fill="rgb(215,171,52)" fg:x="1400438" fg:w="138409"/><text x="91.2557%" y="735.50">zig</text></g></svg></svg> +\ No newline at end of file diff --git a/results/zigcc-j1.svg b/results/zigcc-j1.svg @@ -1,4 +1,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="902" onload="init(evt)" viewBox="0 0 1200 902" 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"> +<?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="886" onload="init(evt)" viewBox="0 0 1200 886" 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; } @@ -488,4 +488,4 @@ function search(term) { function format_percent(n) { return n.toFixed(4) + "%"; } -]]></script><rect x="0" y="0" width="100%" height="902" 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="885.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="885.00"> </text><svg id="frames" x="10" width="1180" total_samples="520381"><g><title>_dl_update_slotinfo (101 samples, 0.02%)</title><rect x="0.1647%" y="805" width="0.0194%" height="15" fill="rgb(227,0,7)" fg:x="857" fg:w="101"/><text x="0.4147%" y="815.50"></text></g><g><title>[anon] (1,057 samples, 0.20%)</title><rect x="0.0142%" y="821" width="0.2031%" height="15" fill="rgb(217,0,24)" fg:x="74" fg:w="1057"/><text x="0.2642%" y="831.50"></text></g><g><title>[perf-261576.map] (153 samples, 0.03%)</title><rect x="0.2173%" y="821" width="0.0294%" height="15" fill="rgb(221,193,54)" fg:x="1131" fg:w="153"/><text x="0.4673%" y="831.50"></text></g><g><title>[unknown] (94 samples, 0.02%)</title><rect x="0.2467%" y="821" width="0.0181%" height="15" fill="rgb(248,212,6)" fg:x="1284" fg:w="94"/><text x="0.4967%" y="831.50"></text></g><g><title>CompileTask::print (110 samples, 0.02%)</title><rect x="0.2896%" y="709" width="0.0211%" height="15" fill="rgb(208,68,35)" fg:x="1507" fg:w="110"/><text x="0.5396%" y="719.50"></text></g><g><title>outputStream::print (63 samples, 0.01%)</title><rect x="0.2986%" y="693" width="0.0121%" height="15" fill="rgb(232,128,0)" fg:x="1554" fg:w="63"/><text x="0.5486%" y="703.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (61 samples, 0.01%)</title><rect x="0.2990%" y="677" width="0.0117%" height="15" fill="rgb(207,160,47)" fg:x="1556" fg:w="61"/><text x="0.5490%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (92 samples, 0.02%)</title><rect x="0.3288%" y="581" width="0.0177%" height="15" fill="rgb(228,23,34)" fg:x="1711" fg:w="92"/><text x="0.5788%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (140 samples, 0.03%)</title><rect x="0.3275%" y="613" width="0.0269%" height="15" fill="rgb(218,30,26)" fg:x="1704" fg:w="140"/><text x="0.5775%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (138 samples, 0.03%)</title><rect x="0.3278%" y="597" width="0.0265%" height="15" fill="rgb(220,122,19)" fg:x="1706" fg:w="138"/><text x="0.5778%" y="607.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (296 samples, 0.06%)</title><rect x="0.3177%" y="629" width="0.0569%" height="15" fill="rgb(250,228,42)" fg:x="1653" fg:w="296"/><text x="0.5677%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (75 samples, 0.01%)</title><rect x="0.3753%" y="597" width="0.0144%" height="15" fill="rgb(240,193,28)" fg:x="1953" fg:w="75"/><text x="0.6253%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (71 samples, 0.01%)</title><rect x="0.3761%" y="581" width="0.0136%" height="15" fill="rgb(216,20,37)" fg:x="1957" fg:w="71"/><text x="0.6261%" y="591.50"></text></g><g><title>BlockListBuilder::set_leaders (104 samples, 0.02%)</title><rect x="0.3936%" y="581" width="0.0200%" height="15" fill="rgb(206,188,39)" fg:x="2048" fg:w="104"/><text x="0.6436%" y="591.50"></text></g><g><title>ciMethod::bci_block_start (76 samples, 0.01%)</title><rect x="0.3989%" y="565" width="0.0146%" height="15" fill="rgb(217,207,13)" fg:x="2076" fg:w="76"/><text x="0.6489%" y="575.50"></text></g><g><title>MethodLiveness::compute_liveness (73 samples, 0.01%)</title><rect x="0.3995%" y="549" width="0.0140%" height="15" fill="rgb(231,73,38)" fg:x="2079" fg:w="73"/><text x="0.6495%" y="559.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (116 samples, 0.02%)</title><rect x="0.3914%" y="597" width="0.0223%" height="15" fill="rgb(225,20,46)" fg:x="2037" fg:w="116"/><text x="0.6414%" y="607.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (61 samples, 0.01%)</title><rect x="0.4512%" y="501" width="0.0117%" height="15" fill="rgb(210,31,41)" fg:x="2348" fg:w="61"/><text x="0.7012%" y="511.50"></text></g><g><title>ciField::ciField (91 samples, 0.02%)</title><rect x="0.4487%" y="517" width="0.0175%" height="15" fill="rgb(221,200,47)" fg:x="2335" fg:w="91"/><text x="0.6987%" y="527.50"></text></g><g><title>ciEnv::get_field_by_index (103 samples, 0.02%)</title><rect x="0.4472%" y="533" width="0.0198%" height="15" fill="rgb(226,26,5)" fg:x="2327" fg:w="103"/><text x="0.6972%" y="543.50"></text></g><g><title>ciBytecodeStream::get_field (115 samples, 0.02%)</title><rect x="0.4466%" y="549" width="0.0221%" height="15" fill="rgb(249,33,26)" fg:x="2324" fg:w="115"/><text x="0.6966%" y="559.50"></text></g><g><title>GraphBuilder::access_field (166 samples, 0.03%)</title><rect x="0.4385%" y="565" width="0.0319%" height="15" fill="rgb(235,183,28)" fg:x="2282" fg:w="166"/><text x="0.6885%" y="575.50"></text></g><g><title>ciField::ciField (66 samples, 0.01%)</title><rect x="0.5267%" y="437" width="0.0127%" height="15" fill="rgb(221,5,38)" fg:x="2741" fg:w="66"/><text x="0.7767%" y="447.50"></text></g><g><title>ciEnv::get_field_by_index (71 samples, 0.01%)</title><rect x="0.5260%" y="453" width="0.0136%" height="15" fill="rgb(247,18,42)" fg:x="2737" fg:w="71"/><text x="0.7760%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (79 samples, 0.02%)</title><rect x="0.5260%" y="469" width="0.0152%" height="15" fill="rgb(241,131,45)" fg:x="2737" fg:w="79"/><text x="0.7760%" y="479.50"></text></g><g><title>GraphBuilder::access_field (108 samples, 0.02%)</title><rect x="0.5217%" y="485" width="0.0208%" height="15" fill="rgb(249,31,29)" fg:x="2715" fg:w="108"/><text x="0.7717%" y="495.50"></text></g><g><title>GraphBuilder::access_field (63 samples, 0.01%)</title><rect x="0.5715%" y="405" width="0.0121%" height="15" fill="rgb(225,111,53)" fg:x="2974" fg:w="63"/><text x="0.8215%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (72 samples, 0.01%)</title><rect x="0.6074%" y="277" width="0.0138%" height="15" fill="rgb(238,160,17)" fg:x="3161" fg:w="72"/><text x="0.8574%" y="287.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (71 samples, 0.01%)</title><rect x="0.6076%" y="261" width="0.0136%" height="15" fill="rgb(214,148,48)" fg:x="3162" fg:w="71"/><text x="0.8576%" y="271.50"></text></g><g><title>GraphBuilder::try_inline_full (112 samples, 0.02%)</title><rect x="0.6063%" y="293" width="0.0215%" height="15" fill="rgb(232,36,49)" fg:x="3155" fg:w="112"/><text x="0.8563%" y="303.50"></text></g><g><title>GraphBuilder::try_inline (121 samples, 0.02%)</title><rect x="0.6063%" y="309" width="0.0233%" height="15" fill="rgb(209,103,24)" fg:x="3155" fg:w="121"/><text x="0.8563%" y="319.50"></text></g><g><title>GraphBuilder::invoke (168 samples, 0.03%)</title><rect x="0.6055%" y="325" width="0.0323%" height="15" fill="rgb(229,88,8)" fg:x="3151" fg:w="168"/><text x="0.8555%" y="335.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (245 samples, 0.05%)</title><rect x="0.5940%" y="357" width="0.0471%" height="15" fill="rgb(213,181,19)" fg:x="3091" fg:w="245"/><text x="0.8440%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (242 samples, 0.05%)</title><rect x="0.5946%" y="341" width="0.0465%" height="15" fill="rgb(254,191,54)" fg:x="3094" fg:w="242"/><text x="0.8446%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (321 samples, 0.06%)</title><rect x="0.5925%" y="373" width="0.0617%" height="15" fill="rgb(241,83,37)" fg:x="3083" fg:w="321"/><text x="0.8425%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (360 samples, 0.07%)</title><rect x="0.5911%" y="389" width="0.0692%" height="15" fill="rgb(233,36,39)" fg:x="3076" fg:w="360"/><text x="0.8411%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (89 samples, 0.02%)</title><rect x="0.6626%" y="389" width="0.0171%" height="15" fill="rgb(226,3,54)" fg:x="3448" fg:w="89"/><text x="0.9126%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (81 samples, 0.02%)</title><rect x="0.6641%" y="373" width="0.0156%" height="15" fill="rgb(245,192,40)" fg:x="3456" fg:w="81"/><text x="0.9141%" y="383.50"></text></g><g><title>GraphBuilder::invoke (497 samples, 0.10%)</title><rect x="0.5869%" y="405" width="0.0955%" height="15" fill="rgb(238,167,29)" fg:x="3054" fg:w="497"/><text x="0.8369%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (655 samples, 0.13%)</title><rect x="0.5630%" y="437" width="0.1259%" height="15" fill="rgb(232,182,51)" fg:x="2930" fg:w="655"/><text x="0.8130%" y="447.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (650 samples, 0.12%)</title><rect x="0.5640%" y="421" width="0.1249%" height="15" fill="rgb(231,60,39)" fg:x="2935" fg:w="650"/><text x="0.8140%" y="431.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (58 samples, 0.01%)</title><rect x="0.6903%" y="421" width="0.0111%" height="15" fill="rgb(208,69,12)" fg:x="3592" fg:w="58"/><text x="0.9403%" y="431.50"></text></g><g><title>GraphBuilder::push_scope (86 samples, 0.02%)</title><rect x="0.6899%" y="437" width="0.0165%" height="15" fill="rgb(235,93,37)" fg:x="3590" fg:w="86"/><text x="0.9399%" y="447.50"></text></g><g><title>ciMethod::ensure_method_data (53 samples, 0.01%)</title><rect x="0.7079%" y="437" width="0.0102%" height="15" fill="rgb(213,116,39)" fg:x="3684" fg:w="53"/><text x="0.9579%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (832 samples, 0.16%)</title><rect x="0.5584%" y="453" width="0.1599%" height="15" fill="rgb(222,207,29)" fg:x="2906" fg:w="832"/><text x="0.8084%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (868 samples, 0.17%)</title><rect x="0.5579%" y="469" width="0.1668%" height="15" fill="rgb(206,96,30)" fg:x="2903" fg:w="868"/><text x="0.8079%" y="479.50"></text></g><g><title>ciMethod::ciMethod (64 samples, 0.01%)</title><rect x="0.7498%" y="405" width="0.0123%" height="15" fill="rgb(218,138,4)" fg:x="3902" fg:w="64"/><text x="0.9998%" y="415.50"></text></g><g><title>ciObjectFactory::get_metadata (80 samples, 0.02%)</title><rect x="0.7470%" y="437" width="0.0154%" height="15" fill="rgb(250,191,14)" fg:x="3887" fg:w="80"/><text x="0.9970%" y="447.50"></text></g><g><title>ciObjectFactory::create_new_metadata (69 samples, 0.01%)</title><rect x="0.7491%" y="421" width="0.0133%" height="15" fill="rgb(239,60,40)" fg:x="3898" fg:w="69"/><text x="0.9991%" y="431.50"></text></g><g><title>ciEnv::get_method_by_index_impl (162 samples, 0.03%)</title><rect x="0.7327%" y="453" width="0.0311%" height="15" fill="rgb(206,27,48)" fg:x="3813" fg:w="162"/><text x="0.9827%" y="463.50"></text></g><g><title>ciBytecodeStream::get_method (181 samples, 0.03%)</title><rect x="0.7293%" y="469" width="0.0348%" height="15" fill="rgb(225,35,8)" fg:x="3795" fg:w="181"/><text x="0.9793%" y="479.50"></text></g><g><title>GraphBuilder::invoke (1,154 samples, 0.22%)</title><rect x="0.5486%" y="485" width="0.2218%" height="15" fill="rgb(250,213,24)" fg:x="2855" fg:w="1154"/><text x="0.7986%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,430 samples, 0.27%)</title><rect x="0.5069%" y="517" width="0.2748%" height="15" fill="rgb(247,123,22)" fg:x="2638" fg:w="1430"/><text x="0.7569%" y="527.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,421 samples, 0.27%)</title><rect x="0.5087%" y="501" width="0.2731%" height="15" fill="rgb(231,138,38)" fg:x="2647" fg:w="1421"/><text x="0.7587%" y="511.50"></text></g><g><title>BlockListBuilder::set_leaders (59 samples, 0.01%)</title><rect x="0.7879%" y="485" width="0.0113%" height="15" fill="rgb(231,145,46)" fg:x="4100" fg:w="59"/><text x="1.0379%" y="495.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (78 samples, 0.01%)</title><rect x="0.7850%" y="501" width="0.0150%" height="15" fill="rgb(251,118,11)" fg:x="4085" fg:w="78"/><text x="1.0350%" y="511.50"></text></g><g><title>GraphBuilder::push_scope (130 samples, 0.02%)</title><rect x="0.7842%" y="517" width="0.0250%" height="15" fill="rgb(217,147,25)" fg:x="4081" fg:w="130"/><text x="1.0342%" y="527.50"></text></g><g><title>ciMethod::ensure_method_data (124 samples, 0.02%)</title><rect x="0.8111%" y="517" width="0.0238%" height="15" fill="rgb(247,81,37)" fg:x="4221" fg:w="124"/><text x="1.0611%" y="527.50"></text></g><g><title>ciMethod::ensure_method_data (111 samples, 0.02%)</title><rect x="0.8136%" y="501" width="0.0213%" height="15" fill="rgb(209,12,38)" fg:x="4234" fg:w="111"/><text x="1.0636%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (1,765 samples, 0.34%)</title><rect x="0.4979%" y="533" width="0.3392%" height="15" fill="rgb(227,1,9)" fg:x="2591" fg:w="1765"/><text x="0.7479%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (1,787 samples, 0.34%)</title><rect x="0.4952%" y="549" width="0.3434%" height="15" fill="rgb(248,47,43)" fg:x="2577" fg:w="1787"/><text x="0.7452%" y="559.50"></text></g><g><title>ciEnv::lookup_method (63 samples, 0.01%)</title><rect x="0.8553%" y="517" width="0.0121%" height="15" fill="rgb(221,10,30)" fg:x="4451" fg:w="63"/><text x="1.1053%" y="527.50"></text></g><g><title>ciSignature::ciSignature (92 samples, 0.02%)</title><rect x="0.8753%" y="469" width="0.0177%" height="15" fill="rgb(210,229,1)" fg:x="4555" fg:w="92"/><text x="1.1253%" y="479.50"></text></g><g><title>ciMethod::ciMethod (112 samples, 0.02%)</title><rect x="0.8717%" y="485" width="0.0215%" height="15" fill="rgb(222,148,37)" fg:x="4536" fg:w="112"/><text x="1.1217%" y="495.50"></text></g><g><title>ciObjectFactory::get_metadata (138 samples, 0.03%)</title><rect x="0.8674%" y="517" width="0.0265%" height="15" fill="rgb(234,67,33)" fg:x="4514" fg:w="138"/><text x="1.1174%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (123 samples, 0.02%)</title><rect x="0.8703%" y="501" width="0.0236%" height="15" fill="rgb(247,98,35)" fg:x="4529" fg:w="123"/><text x="1.1203%" y="511.50"></text></g><g><title>ciEnv::get_method_by_index_impl (226 samples, 0.04%)</title><rect x="0.8517%" y="533" width="0.0434%" height="15" fill="rgb(247,138,52)" fg:x="4432" fg:w="226"/><text x="1.1017%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (251 samples, 0.05%)</title><rect x="0.8475%" y="549" width="0.0482%" height="15" fill="rgb(213,79,30)" fg:x="4410" fg:w="251"/><text x="1.0975%" y="559.50"></text></g><g><title>GraphBuilder::invoke (2,210 samples, 0.42%)</title><rect x="0.4821%" y="565" width="0.4247%" height="15" fill="rgb(246,177,23)" fg:x="2509" fg:w="2210"/><text x="0.7321%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,593 samples, 0.50%)</title><rect x="0.4216%" y="581" width="0.4983%" height="15" fill="rgb(230,62,27)" fg:x="2194" fg:w="2593"/><text x="0.6716%" y="591.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,632 samples, 0.51%)</title><rect x="0.4166%" y="597" width="0.5058%" height="15" fill="rgb(216,154,8)" fg:x="2168" fg:w="2632"/><text x="0.6666%" y="607.50"></text></g><g><title>GraphBuilder::GraphBuilder (2,880 samples, 0.55%)</title><rect x="0.3747%" y="613" width="0.5534%" height="15" fill="rgb(244,35,45)" fg:x="1950" fg:w="2880"/><text x="0.6247%" y="623.50"></text></g><g><title>IR::IR (2,893 samples, 0.56%)</title><rect x="0.3745%" y="629" width="0.5559%" height="15" fill="rgb(251,115,12)" fg:x="1949" fg:w="2893"/><text x="0.6245%" y="639.50"></text></g><g><title>IR::compute_code (57 samples, 0.01%)</title><rect x="0.9305%" y="629" width="0.0110%" height="15" fill="rgb(240,54,50)" fg:x="4842" fg:w="57"/><text x="1.1805%" y="639.50"></text></g><g><title>UseCountComputer::block_do (64 samples, 0.01%)</title><rect x="0.9418%" y="597" width="0.0123%" height="15" fill="rgb(233,84,52)" fg:x="4901" fg:w="64"/><text x="1.1918%" y="607.50"></text></g><g><title>BlockList::iterate_backward (66 samples, 0.01%)</title><rect x="0.9416%" y="613" width="0.0127%" height="15" fill="rgb(207,117,47)" fg:x="4900" fg:w="66"/><text x="1.1916%" y="623.50"></text></g><g><title>IR::compute_use_counts (92 samples, 0.02%)</title><rect x="0.9414%" y="629" width="0.0177%" height="15" fill="rgb(249,43,39)" fg:x="4899" fg:w="92"/><text x="1.1914%" y="639.50"></text></g><g><title>NullCheckEliminator::iterate_one (129 samples, 0.02%)</title><rect x="0.9637%" y="597" width="0.0248%" height="15" fill="rgb(209,38,44)" fg:x="5015" fg:w="129"/><text x="1.2137%" y="607.50"></text></g><g><title>IR::eliminate_null_checks (157 samples, 0.03%)</title><rect x="0.9591%" y="629" width="0.0302%" height="15" fill="rgb(236,212,23)" fg:x="4991" fg:w="157"/><text x="1.2091%" y="639.50"></text></g><g><title>Optimizer::eliminate_null_checks (156 samples, 0.03%)</title><rect x="0.9593%" y="613" width="0.0300%" height="15" fill="rgb(242,79,21)" fg:x="4992" fg:w="156"/><text x="1.2093%" y="623.50"></text></g><g><title>Compilation::build_hir (3,616 samples, 0.69%)</title><rect x="0.3167%" y="645" width="0.6949%" height="15" fill="rgb(211,96,35)" fg:x="1648" fg:w="3616"/><text x="0.5667%" y="655.50"></text></g><g><title>LIR_Assembler::add_call_info (64 samples, 0.01%)</title><rect x="1.0360%" y="581" width="0.0123%" height="15" fill="rgb(253,215,40)" fg:x="5391" fg:w="64"/><text x="1.2860%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (64 samples, 0.01%)</title><rect x="1.0360%" y="565" width="0.0123%" height="15" fill="rgb(211,81,21)" fg:x="5391" fg:w="64"/><text x="1.2860%" y="575.50"></text></g><g><title>LIR_Assembler::call (71 samples, 0.01%)</title><rect x="1.0356%" y="597" width="0.0136%" height="15" fill="rgb(208,190,38)" fg:x="5389" fg:w="71"/><text x="1.2856%" y="607.50"></text></g><g><title>LIR_Assembler::emit_call (118 samples, 0.02%)</title><rect x="1.0298%" y="613" width="0.0227%" height="15" fill="rgb(235,213,38)" fg:x="5359" fg:w="118"/><text x="1.2798%" y="623.50"></text></g><g><title>LIR_Assembler::emit_op1 (121 samples, 0.02%)</title><rect x="1.0588%" y="613" width="0.0233%" height="15" fill="rgb(237,122,38)" fg:x="5510" fg:w="121"/><text x="1.3088%" y="623.50"></text></g><g><title>LIR_Assembler::emit_profile_call (59 samples, 0.01%)</title><rect x="1.0857%" y="613" width="0.0113%" height="15" fill="rgb(244,218,35)" fg:x="5650" fg:w="59"/><text x="1.3357%" y="623.50"></text></g><g><title>LIR_Assembler::emit_code (550 samples, 0.11%)</title><rect x="1.0148%" y="629" width="0.1057%" height="15" fill="rgb(240,68,47)" fg:x="5281" fg:w="550"/><text x="1.2648%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (99 samples, 0.02%)</title><rect x="1.1326%" y="597" width="0.0190%" height="15" fill="rgb(210,16,53)" fg:x="5894" fg:w="99"/><text x="1.3826%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (96 samples, 0.02%)</title><rect x="1.1332%" y="581" width="0.0184%" height="15" fill="rgb(235,124,12)" fg:x="5897" fg:w="96"/><text x="1.3832%" y="591.50"></text></g><g><title>CounterOverflowStub::emit_code (126 samples, 0.02%)</title><rect x="1.1315%" y="613" width="0.0242%" height="15" fill="rgb(224,169,11)" fg:x="5888" fg:w="126"/><text x="1.3815%" y="623.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (280 samples, 0.05%)</title><rect x="1.1290%" y="629" width="0.0538%" height="15" fill="rgb(250,166,2)" fg:x="5875" fg:w="280"/><text x="1.3790%" y="639.50"></text></g><g><title>Compilation::emit_code_body (904 samples, 0.17%)</title><rect x="1.0116%" y="645" width="0.1737%" height="15" fill="rgb(242,216,29)" fg:x="5264" fg:w="904"/><text x="1.2616%" y="655.50"></text></g><g><title>LIRGenerator::do_Base (72 samples, 0.01%)</title><rect x="1.1970%" y="597" width="0.0138%" height="15" fill="rgb(230,116,27)" fg:x="6229" fg:w="72"/><text x="1.4470%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (173 samples, 0.03%)</title><rect x="1.2143%" y="581" width="0.0332%" height="15" fill="rgb(228,99,48)" fg:x="6319" fg:w="173"/><text x="1.4643%" y="591.50"></text></g><g><title>PhiResolverState::reset (118 samples, 0.02%)</title><rect x="1.2249%" y="565" width="0.0227%" height="15" fill="rgb(253,11,6)" fg:x="6374" fg:w="118"/><text x="1.4749%" y="575.50"></text></g><g><title>LIRGenerator::do_Goto (194 samples, 0.04%)</title><rect x="1.2120%" y="597" width="0.0373%" height="15" fill="rgb(247,143,39)" fg:x="6307" fg:w="194"/><text x="1.4620%" y="607.50"></text></g><g><title>LIRGenerator::do_Invoke (83 samples, 0.02%)</title><rect x="1.2598%" y="597" width="0.0159%" height="15" fill="rgb(236,97,10)" fg:x="6556" fg:w="83"/><text x="1.5098%" y="607.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (82 samples, 0.02%)</title><rect x="1.2929%" y="597" width="0.0158%" height="15" fill="rgb(233,208,19)" fg:x="6728" fg:w="82"/><text x="1.5429%" y="607.50"></text></g><g><title>LIRGenerator::block_do (689 samples, 0.13%)</title><rect x="1.1870%" y="613" width="0.1324%" height="15" fill="rgb(216,164,2)" fg:x="6177" fg:w="689"/><text x="1.4370%" y="623.50"></text></g><g><title>BlockList::iterate_forward (699 samples, 0.13%)</title><rect x="1.1857%" y="629" width="0.1343%" height="15" fill="rgb(220,129,5)" fg:x="6170" fg:w="699"/><text x="1.4357%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (133 samples, 0.03%)</title><rect x="1.3417%" y="581" width="0.0256%" height="15" fill="rgb(242,17,10)" fg:x="6982" fg:w="133"/><text x="1.5917%" y="591.50"></text></g><g><title>LinearScanWalker::find_free_reg (80 samples, 0.02%)</title><rect x="1.3876%" y="549" width="0.0154%" height="15" fill="rgb(242,107,0)" fg:x="7221" fg:w="80"/><text x="1.6376%" y="559.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (109 samples, 0.02%)</title><rect x="1.4063%" y="549" width="0.0209%" height="15" fill="rgb(251,28,31)" fg:x="7318" fg:w="109"/><text x="1.6563%" y="559.50"></text></g><g><title>LinearScanWalker::split_before_usage (71 samples, 0.01%)</title><rect x="1.4272%" y="549" width="0.0136%" height="15" fill="rgb(233,223,10)" fg:x="7427" fg:w="71"/><text x="1.6772%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (358 samples, 0.07%)</title><rect x="1.3730%" y="565" width="0.0688%" height="15" fill="rgb(215,21,27)" fg:x="7145" fg:w="358"/><text x="1.6230%" y="575.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (53 samples, 0.01%)</title><rect x="1.4495%" y="549" width="0.0102%" height="15" fill="rgb(232,23,21)" fg:x="7543" fg:w="53"/><text x="1.6995%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (117 samples, 0.02%)</title><rect x="1.4418%" y="565" width="0.0225%" height="15" fill="rgb(244,5,23)" fg:x="7503" fg:w="117"/><text x="1.6918%" y="575.50"></text></g><g><title>LinearScanWalker::activate_current (579 samples, 0.11%)</title><rect x="1.3673%" y="581" width="0.1113%" height="15" fill="rgb(226,81,46)" fg:x="7115" fg:w="579"/><text x="1.6173%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (749 samples, 0.14%)</title><rect x="1.3348%" y="597" width="0.1439%" height="15" fill="rgb(247,70,30)" fg:x="6946" fg:w="749"/><text x="1.5848%" y="607.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (53 samples, 0.01%)</title><rect x="1.4787%" y="597" width="0.0102%" height="15" fill="rgb(212,68,19)" fg:x="7695" fg:w="53"/><text x="1.7287%" y="607.50"></text></g><g><title>LinearScan::allocate_registers (825 samples, 0.16%)</title><rect x="1.3309%" y="613" width="0.1585%" height="15" fill="rgb(240,187,13)" fg:x="6926" fg:w="825"/><text x="1.5809%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (66 samples, 0.01%)</title><rect x="1.5104%" y="581" width="0.0127%" height="15" fill="rgb(223,113,26)" fg:x="7860" fg:w="66"/><text x="1.7604%" y="591.50"></text></g><g><title>LinearScan::color_lir_opr (57 samples, 0.01%)</title><rect x="1.5233%" y="581" width="0.0110%" height="15" fill="rgb(206,192,2)" fg:x="7927" fg:w="57"/><text x="1.7733%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (63 samples, 0.01%)</title><rect x="1.5416%" y="565" width="0.0121%" height="15" fill="rgb(241,108,4)" fg:x="8022" fg:w="63"/><text x="1.7916%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (121 samples, 0.02%)</title><rect x="1.5343%" y="581" width="0.0233%" height="15" fill="rgb(247,173,49)" fg:x="7984" fg:w="121"/><text x="1.7843%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (82 samples, 0.02%)</title><rect x="1.5656%" y="549" width="0.0158%" height="15" fill="rgb(224,114,35)" fg:x="8147" fg:w="82"/><text x="1.8156%" y="559.50"></text></g><g><title>LinearScan::compute_oop_map (145 samples, 0.03%)</title><rect x="1.5608%" y="565" width="0.0279%" height="15" fill="rgb(245,159,27)" fg:x="8122" fg:w="145"/><text x="1.8108%" y="575.50"></text></g><g><title>LinearScan::assign_reg_num (516 samples, 0.10%)</title><rect x="1.4897%" y="597" width="0.0992%" height="15" fill="rgb(245,172,44)" fg:x="7752" fg:w="516"/><text x="1.7397%" y="607.50"></text></g><g><title>LinearScan::compute_oop_map (163 samples, 0.03%)</title><rect x="1.5575%" y="581" width="0.0313%" height="15" fill="rgb(236,23,11)" fg:x="8105" fg:w="163"/><text x="1.8075%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (537 samples, 0.10%)</title><rect x="1.4895%" y="613" width="0.1032%" height="15" fill="rgb(205,117,38)" fg:x="7751" fg:w="537"/><text x="1.7395%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (67 samples, 0.01%)</title><rect x="1.6348%" y="597" width="0.0129%" height="15" fill="rgb(237,72,25)" fg:x="8507" fg:w="67"/><text x="1.8848%" y="607.50"></text></g><g><title>LinearScan::add_temp (88 samples, 0.02%)</title><rect x="1.6596%" y="597" width="0.0169%" height="15" fill="rgb(244,70,9)" fg:x="8636" fg:w="88"/><text x="1.9096%" y="607.50"></text></g><g><title>Interval::Interval (61 samples, 0.01%)</title><rect x="1.6941%" y="565" width="0.0117%" height="15" fill="rgb(217,125,39)" fg:x="8816" fg:w="61"/><text x="1.9441%" y="575.50"></text></g><g><title>LinearScan::create_interval (81 samples, 0.02%)</title><rect x="1.6913%" y="581" width="0.0156%" height="15" fill="rgb(235,36,10)" fg:x="8801" fg:w="81"/><text x="1.9413%" y="591.50"></text></g><g><title>LinearScan::add_use (159 samples, 0.03%)</title><rect x="1.6765%" y="597" width="0.0306%" height="15" fill="rgb(251,123,47)" fg:x="8724" fg:w="159"/><text x="1.9265%" y="607.50"></text></g><g><title>LinearScan::build_intervals (649 samples, 0.12%)</title><rect x="1.5927%" y="613" width="0.1247%" height="15" fill="rgb(221,13,13)" fg:x="8288" fg:w="649"/><text x="1.8427%" y="623.50"></text></g><g><title>LinearScan::compute_global_live_sets (56 samples, 0.01%)</title><rect x="1.7174%" y="613" width="0.0108%" height="15" fill="rgb(238,131,9)" fg:x="8937" fg:w="56"/><text x="1.9674%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (82 samples, 0.02%)</title><rect x="1.7499%" y="597" width="0.0158%" height="15" fill="rgb(211,50,8)" fg:x="9106" fg:w="82"/><text x="1.9999%" y="607.50"></text></g><g><title>LinearScan::compute_local_live_sets (248 samples, 0.05%)</title><rect x="1.7282%" y="613" width="0.0477%" height="15" fill="rgb(245,182,24)" fg:x="8993" fg:w="248"/><text x="1.9782%" y="623.50"></text></g><g><title>LinearScan::eliminate_spill_moves (55 samples, 0.01%)</title><rect x="1.7758%" y="613" width="0.0106%" height="15" fill="rgb(242,14,37)" fg:x="9241" fg:w="55"/><text x="2.0258%" y="623.50"></text></g><g><title>LinearScan::resolve_collect_mappings (69 samples, 0.01%)</title><rect x="1.7995%" y="597" width="0.0133%" height="15" fill="rgb(246,228,12)" fg:x="9364" fg:w="69"/><text x="2.0495%" y="607.50"></text></g><g><title>LinearScan::resolve_data_flow (116 samples, 0.02%)</title><rect x="1.7931%" y="613" width="0.0223%" height="15" fill="rgb(213,55,15)" fg:x="9331" fg:w="116"/><text x="2.0431%" y="623.50"></text></g><g><title>LinearScan::do_linear_scan (2,668 samples, 0.51%)</title><rect x="1.3252%" y="629" width="0.5127%" height="15" fill="rgb(209,9,3)" fg:x="6896" fg:w="2668"/><text x="1.5752%" y="639.50"></text></g><g><title>Compilation::emit_lir (3,398 samples, 0.65%)</title><rect x="1.1853%" y="645" width="0.6530%" height="15" fill="rgb(230,59,30)" fg:x="6168" fg:w="3398"/><text x="1.4353%" y="655.50"></text></g><g><title>Compilation::compile_java_method (8,038 samples, 1.54%)</title><rect x="0.3157%" y="661" width="1.5446%" height="15" fill="rgb(209,121,21)" fg:x="1643" fg:w="8038"/><text x="0.5657%" y="671.50"></text></g><g><title>ciMethod::ensure_method_data (89 samples, 0.02%)</title><rect x="1.8433%" y="645" width="0.0171%" height="15" fill="rgb(220,109,13)" fg:x="9592" fg:w="89"/><text x="2.0933%" y="655.50"></text></g><g><title>ciMethod::ensure_method_data (86 samples, 0.02%)</title><rect x="1.8438%" y="629" width="0.0165%" height="15" fill="rgb(232,18,1)" fg:x="9595" fg:w="86"/><text x="2.0938%" y="639.50"></text></g><g><title>CodeBuffer::finalize_oop_references (68 samples, 0.01%)</title><rect x="1.8809%" y="629" width="0.0131%" height="15" fill="rgb(215,41,42)" fg:x="9788" fg:w="68"/><text x="2.1309%" y="639.50"></text></g><g><title>CodeBuffer::relocate_code_to (123 samples, 0.02%)</title><rect x="1.9130%" y="597" width="0.0236%" height="15" fill="rgb(224,123,36)" fg:x="9955" fg:w="123"/><text x="2.1630%" y="607.50"></text></g><g><title>CodeBuffer::copy_code_to (136 samples, 0.03%)</title><rect x="1.9124%" y="613" width="0.0261%" height="15" fill="rgb(240,125,3)" fg:x="9952" fg:w="136"/><text x="2.1624%" y="623.50"></text></g><g><title>nmethod::nmethod (282 samples, 0.05%)</title><rect x="1.9113%" y="629" width="0.0542%" height="15" fill="rgb(205,98,50)" fg:x="9946" fg:w="282"/><text x="2.1613%" y="639.50"></text></g><g><title>nmethod::new_nmethod (448 samples, 0.09%)</title><rect x="1.8796%" y="645" width="0.0861%" height="15" fill="rgb(205,185,37)" fg:x="9781" fg:w="448"/><text x="2.1296%" y="655.50"></text></g><g><title>ciEnv::register_method (510 samples, 0.10%)</title><rect x="1.8681%" y="661" width="0.0980%" height="15" fill="rgb(238,207,15)" fg:x="9721" fg:w="510"/><text x="2.1181%" y="671.50"></text></g><g><title>Compilation::compile_method (8,596 samples, 1.65%)</title><rect x="0.3148%" y="677" width="1.6519%" height="15" fill="rgb(213,199,42)" fg:x="1638" fg:w="8596"/><text x="0.5648%" y="687.50"></text></g><g><title>Compilation::Compilation (8,606 samples, 1.65%)</title><rect x="0.3138%" y="693" width="1.6538%" height="15" fill="rgb(235,201,11)" fg:x="1633" fg:w="8606"/><text x="0.5638%" y="703.50"></text></g><g><title>Compiler::compile_method (8,622 samples, 1.66%)</title><rect x="0.3109%" y="709" width="1.6569%" height="15" fill="rgb(207,46,11)" fg:x="1618" fg:w="8622"/><text x="0.5609%" y="719.50"></text></g><g><title>ciEnv::ciEnv (93 samples, 0.02%)</title><rect x="1.9737%" y="709" width="0.0179%" height="15" fill="rgb(241,35,35)" fg:x="10271" fg:w="93"/><text x="2.2237%" y="719.50"></text></g><g><title>ciSignature::ciSignature (72 samples, 0.01%)</title><rect x="1.9953%" y="645" width="0.0138%" height="15" fill="rgb(243,32,47)" fg:x="10383" fg:w="72"/><text x="2.2453%" y="655.50"></text></g><g><title>ciMethod::ciMethod (83 samples, 0.02%)</title><rect x="1.9933%" y="661" width="0.0159%" height="15" fill="rgb(247,202,23)" fg:x="10373" fg:w="83"/><text x="2.2433%" y="671.50"></text></g><g><title>ciEnv::get_method_from_handle (104 samples, 0.02%)</title><rect x="1.9916%" y="709" width="0.0200%" height="15" fill="rgb(219,102,11)" fg:x="10364" fg:w="104"/><text x="2.2416%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (102 samples, 0.02%)</title><rect x="1.9920%" y="693" width="0.0196%" height="15" fill="rgb(243,110,44)" fg:x="10366" fg:w="102"/><text x="2.2420%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (98 samples, 0.02%)</title><rect x="1.9928%" y="677" width="0.0188%" height="15" fill="rgb(222,74,54)" fg:x="10370" fg:w="98"/><text x="2.2428%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (9,107 samples, 1.75%)</title><rect x="0.2679%" y="725" width="1.7501%" height="15" fill="rgb(216,99,12)" fg:x="1394" fg:w="9107"/><text x="0.5179%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="2.0349%" y="469" width="0.0119%" height="15" fill="rgb(226,22,26)" fg:x="10589" fg:w="62"/><text x="2.2849%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="2.0349%" y="453" width="0.0119%" height="15" fill="rgb(217,163,10)" fg:x="10589" fg:w="62"/><text x="2.2849%" y="463.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="2.0349%" y="437" width="0.0119%" height="15" fill="rgb(213,25,53)" fg:x="10589" fg:w="62"/><text x="2.2849%" y="447.50"></text></g><g><title>finish_task_switch (66 samples, 0.01%)</title><rect x="2.0347%" y="485" width="0.0127%" height="15" fill="rgb(252,105,26)" fg:x="10588" fg:w="66"/><text x="2.2847%" y="495.50"></text></g><g><title>futex_wait_queue_me (92 samples, 0.02%)</title><rect x="2.0314%" y="533" width="0.0177%" height="15" fill="rgb(220,39,43)" fg:x="10571" fg:w="92"/><text x="2.2814%" y="543.50"></text></g><g><title>schedule (86 samples, 0.02%)</title><rect x="2.0325%" y="517" width="0.0165%" height="15" fill="rgb(229,68,48)" fg:x="10577" fg:w="86"/><text x="2.2825%" y="527.50"></text></g><g><title>__schedule (86 samples, 0.02%)</title><rect x="2.0325%" y="501" width="0.0165%" height="15" fill="rgb(252,8,32)" fg:x="10577" fg:w="86"/><text x="2.2825%" y="511.50"></text></g><g><title>do_futex (104 samples, 0.02%)</title><rect x="2.0306%" y="565" width="0.0200%" height="15" fill="rgb(223,20,43)" fg:x="10567" fg:w="104"/><text x="2.2806%" y="575.50"></text></g><g><title>futex_wait (104 samples, 0.02%)</title><rect x="2.0306%" y="549" width="0.0200%" height="15" fill="rgb(229,81,49)" fg:x="10567" fg:w="104"/><text x="2.2806%" y="559.50"></text></g><g><title>do_syscall_64 (106 samples, 0.02%)</title><rect x="2.0304%" y="597" width="0.0204%" height="15" fill="rgb(236,28,36)" fg:x="10566" fg:w="106"/><text x="2.2804%" y="607.50"></text></g><g><title>__x64_sys_futex (105 samples, 0.02%)</title><rect x="2.0306%" y="581" width="0.0202%" height="15" fill="rgb(249,185,26)" fg:x="10567" fg:w="105"/><text x="2.2806%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (118 samples, 0.02%)</title><rect x="2.0285%" y="661" width="0.0227%" height="15" fill="rgb(249,174,33)" fg:x="10556" fg:w="118"/><text x="2.2785%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (117 samples, 0.02%)</title><rect x="2.0287%" y="645" width="0.0225%" height="15" fill="rgb(233,201,37)" fg:x="10557" fg:w="117"/><text x="2.2787%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (114 samples, 0.02%)</title><rect x="2.0293%" y="629" width="0.0219%" height="15" fill="rgb(221,78,26)" fg:x="10560" fg:w="114"/><text x="2.2793%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (108 samples, 0.02%)</title><rect x="2.0304%" y="613" width="0.0208%" height="15" fill="rgb(250,127,30)" fg:x="10566" fg:w="108"/><text x="2.2804%" y="623.50"></text></g><g><title>Monitor::IWait (126 samples, 0.02%)</title><rect x="2.0276%" y="693" width="0.0242%" height="15" fill="rgb(230,49,44)" fg:x="10551" fg:w="126"/><text x="2.2776%" y="703.50"></text></g><g><title>os::PlatformEvent::park (122 samples, 0.02%)</title><rect x="2.0283%" y="677" width="0.0234%" height="15" fill="rgb(229,67,23)" fg:x="10555" fg:w="122"/><text x="2.2783%" y="687.50"></text></g><g><title>Monitor::wait (133 samples, 0.03%)</title><rect x="2.0268%" y="709" width="0.0256%" height="15" fill="rgb(249,83,47)" fg:x="10547" fg:w="133"/><text x="2.2768%" y="719.50"></text></g><g><title>CompileQueue::get (211 samples, 0.04%)</title><rect x="2.0233%" y="725" width="0.0405%" height="15" fill="rgb(215,43,3)" fg:x="10529" fg:w="211"/><text x="2.2733%" y="735.50"></text></g><g><title>Thread::call_run (9,358 samples, 1.80%)</title><rect x="0.2677%" y="773" width="1.7983%" height="15" fill="rgb(238,154,13)" fg:x="1393" fg:w="9358"/><text x="0.5177%" y="783.50">T..</text></g><g><title>JavaThread::thread_main_inner (9,358 samples, 1.80%)</title><rect x="0.2677%" y="757" width="1.7983%" height="15" fill="rgb(219,56,2)" fg:x="1393" fg:w="9358"/><text x="0.5177%" y="767.50">J..</text></g><g><title>CompileBroker::compiler_thread_loop (9,358 samples, 1.80%)</title><rect x="0.2677%" y="741" width="1.7983%" height="15" fill="rgb(233,0,4)" fg:x="1393" fg:w="9358"/><text x="0.5177%" y="751.50">C..</text></g><g><title>__GI___clone (9,372 samples, 1.80%)</title><rect x="0.2654%" y="821" width="1.8010%" height="15" fill="rgb(235,30,7)" fg:x="1381" fg:w="9372"/><text x="0.5154%" y="831.50">_..</text></g><g><title>start_thread (9,360 samples, 1.80%)</title><rect x="0.2677%" y="805" width="1.7987%" height="15" fill="rgb(250,79,13)" fg:x="1393" fg:w="9360"/><text x="0.5177%" y="815.50">s..</text></g><g><title>thread_native_entry (9,360 samples, 1.80%)</title><rect x="0.2677%" y="789" width="1.7987%" height="15" fill="rgb(211,146,34)" fg:x="1393" fg:w="9360"/><text x="0.5177%" y="799.50">t..</text></g><g><title>C1_CompilerThre (10,761 samples, 2.07%)</title><rect x="0.0056%" y="837" width="2.0679%" height="15" fill="rgb(228,22,38)" fg:x="29" fg:w="10761"/><text x="0.2556%" y="847.50">C..</text></g><g><title>PhaseIdealLoop::build_loop_early (69 samples, 0.01%)</title><rect x="2.1121%" y="821" width="0.0133%" height="15" fill="rgb(235,168,5)" fg:x="10991" fg:w="69"/><text x="2.3621%" y="831.50"></text></g><g><title>ProjNode::pinned (67 samples, 0.01%)</title><rect x="2.1125%" y="805" width="0.0129%" height="15" fill="rgb(221,155,16)" fg:x="10993" fg:w="67"/><text x="2.3625%" y="815.50"></text></g><g><title>MultiNode::is_CFG (66 samples, 0.01%)</title><rect x="2.3392%" y="805" width="0.0127%" height="15" fill="rgb(215,215,53)" fg:x="12173" fg:w="66"/><text x="2.5892%" y="815.50"></text></g><g><title>Node::is_CFG (60 samples, 0.01%)</title><rect x="2.3638%" y="805" width="0.0115%" height="15" fill="rgb(223,4,10)" fg:x="12301" fg:w="60"/><text x="2.6138%" y="815.50"></text></g><g><title>_dl_update_slotinfo (232 samples, 0.04%)</title><rect x="2.5614%" y="805" width="0.0446%" height="15" fill="rgb(234,103,6)" fg:x="13329" fg:w="232"/><text x="2.8114%" y="815.50"></text></g><g><title>update_get_addr (73 samples, 0.01%)</title><rect x="2.6967%" y="805" width="0.0140%" height="15" fill="rgb(227,97,0)" fg:x="14033" fg:w="73"/><text x="2.9467%" y="815.50"></text></g><g><title>[anon] (3,024 samples, 0.58%)</title><rect x="2.1304%" y="821" width="0.5811%" height="15" fill="rgb(234,150,53)" fg:x="11086" fg:w="3024"/><text x="2.3804%" y="831.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (58 samples, 0.01%)</title><rect x="2.7391%" y="549" width="0.0111%" height="15" fill="rgb(228,201,54)" fg:x="14254" fg:w="58"/><text x="2.9891%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (57 samples, 0.01%)</title><rect x="2.7393%" y="533" width="0.0110%" height="15" fill="rgb(222,22,37)" fg:x="14255" fg:w="57"/><text x="2.9893%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (56 samples, 0.01%)</title><rect x="2.7395%" y="517" width="0.0108%" height="15" fill="rgb(237,53,32)" fg:x="14256" fg:w="56"/><text x="2.9895%" y="527.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (110 samples, 0.02%)</title><rect x="2.7305%" y="565" width="0.0211%" height="15" fill="rgb(233,25,53)" fg:x="14209" fg:w="110"/><text x="2.9805%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (120 samples, 0.02%)</title><rect x="2.7288%" y="597" width="0.0231%" height="15" fill="rgb(210,40,34)" fg:x="14200" fg:w="120"/><text x="2.9788%" y="607.50"></text></g><g><title>ciTypeFlow::flow_block (120 samples, 0.02%)</title><rect x="2.7288%" y="581" width="0.0231%" height="15" fill="rgb(241,220,44)" fg:x="14200" fg:w="120"/><text x="2.9788%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (124 samples, 0.02%)</title><rect x="2.7286%" y="661" width="0.0238%" height="15" fill="rgb(235,28,35)" fg:x="14199" fg:w="124"/><text x="2.9786%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (123 samples, 0.02%)</title><rect x="2.7288%" y="645" width="0.0236%" height="15" fill="rgb(210,56,17)" fg:x="14200" fg:w="123"/><text x="2.9788%" y="655.50"></text></g><g><title>ciTypeFlow::do_flow (123 samples, 0.02%)</title><rect x="2.7288%" y="629" width="0.0236%" height="15" fill="rgb(224,130,29)" fg:x="14200" fg:w="123"/><text x="2.9788%" y="639.50"></text></g><g><title>ciTypeFlow::flow_types (123 samples, 0.02%)</title><rect x="2.7288%" y="613" width="0.0236%" height="15" fill="rgb(235,212,8)" fg:x="14200" fg:w="123"/><text x="2.9788%" y="623.50"></text></g><g><title>Compile::call_generator (155 samples, 0.03%)</title><rect x="2.7232%" y="677" width="0.0298%" height="15" fill="rgb(223,33,50)" fg:x="14171" fg:w="155"/><text x="2.9732%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (69 samples, 0.01%)</title><rect x="2.7745%" y="469" width="0.0133%" height="15" fill="rgb(219,149,13)" fg:x="14438" fg:w="69"/><text x="3.0245%" y="479.50"></text></g><g><title>ciTypeFlow::df_flow_types (83 samples, 0.02%)</title><rect x="2.7720%" y="501" width="0.0159%" height="15" fill="rgb(250,156,29)" fg:x="14425" fg:w="83"/><text x="3.0220%" y="511.50"></text></g><g><title>ciTypeFlow::flow_block (78 samples, 0.01%)</title><rect x="2.7730%" y="485" width="0.0150%" height="15" fill="rgb(216,193,19)" fg:x="14430" fg:w="78"/><text x="3.0230%" y="495.50"></text></g><g><title>ciTypeFlow::do_flow (94 samples, 0.02%)</title><rect x="2.7716%" y="533" width="0.0181%" height="15" fill="rgb(216,135,14)" fg:x="14423" fg:w="94"/><text x="3.0216%" y="543.50"></text></g><g><title>ciTypeFlow::flow_types (94 samples, 0.02%)</title><rect x="2.7716%" y="517" width="0.0181%" height="15" fill="rgb(241,47,5)" fg:x="14423" fg:w="94"/><text x="3.0216%" y="527.50"></text></g><g><title>ciMethod::get_flow_analysis (98 samples, 0.02%)</title><rect x="2.7710%" y="549" width="0.0188%" height="15" fill="rgb(233,42,35)" fg:x="14420" fg:w="98"/><text x="3.0210%" y="559.50"></text></g><g><title>InlineTree::ok_to_inline (118 samples, 0.02%)</title><rect x="2.7676%" y="565" width="0.0227%" height="15" fill="rgb(231,13,6)" fg:x="14402" fg:w="118"/><text x="3.0176%" y="575.50"></text></g><g><title>Compile::call_generator (142 samples, 0.03%)</title><rect x="2.7649%" y="581" width="0.0273%" height="15" fill="rgb(207,181,40)" fg:x="14388" fg:w="142"/><text x="3.0149%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (53 samples, 0.01%)</title><rect x="2.8256%" y="469" width="0.0102%" height="15" fill="rgb(254,173,49)" fg:x="14704" fg:w="53"/><text x="3.0756%" y="479.50"></text></g><g><title>Compile::call_generator (67 samples, 0.01%)</title><rect x="2.8233%" y="485" width="0.0129%" height="15" fill="rgb(221,1,38)" fg:x="14692" fg:w="67"/><text x="3.0733%" y="495.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.01%)</title><rect x="2.8691%" y="389" width="0.0131%" height="15" fill="rgb(206,124,46)" fg:x="14930" fg:w="68"/><text x="3.1191%" y="399.50"></text></g><g><title>Parse::Parse (68 samples, 0.01%)</title><rect x="2.8691%" y="373" width="0.0131%" height="15" fill="rgb(249,21,11)" fg:x="14930" fg:w="68"/><text x="3.1191%" y="383.50"></text></g><g><title>Parse::do_call (164 samples, 0.03%)</title><rect x="2.8566%" y="405" width="0.0315%" height="15" fill="rgb(222,201,40)" fg:x="14865" fg:w="164"/><text x="3.1066%" y="415.50"></text></g><g><title>Parse::do_one_block (306 samples, 0.06%)</title><rect x="2.8506%" y="437" width="0.0588%" height="15" fill="rgb(235,61,29)" fg:x="14834" fg:w="306"/><text x="3.1006%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (299 samples, 0.06%)</title><rect x="2.8519%" y="421" width="0.0575%" height="15" fill="rgb(219,207,3)" fg:x="14841" fg:w="299"/><text x="3.1019%" y="431.50"></text></g><g><title>Parse::do_all_blocks (316 samples, 0.06%)</title><rect x="2.8502%" y="453" width="0.0607%" height="15" fill="rgb(222,56,46)" fg:x="14832" fg:w="316"/><text x="3.1002%" y="463.50"></text></g><g><title>ParseGenerator::generate (366 samples, 0.07%)</title><rect x="2.8446%" y="485" width="0.0703%" height="15" fill="rgb(239,76,54)" fg:x="14803" fg:w="366"/><text x="3.0946%" y="495.50"></text></g><g><title>Parse::Parse (364 samples, 0.07%)</title><rect x="2.8450%" y="469" width="0.0699%" height="15" fill="rgb(231,124,27)" fg:x="14805" fg:w="364"/><text x="3.0950%" y="479.50"></text></g><g><title>Parse::do_call (556 samples, 0.11%)</title><rect x="2.8225%" y="501" width="0.1068%" height="15" fill="rgb(249,195,6)" fg:x="14688" fg:w="556"/><text x="3.0725%" y="511.50"></text></g><g><title>Parse::do_field_access (100 samples, 0.02%)</title><rect x="2.9307%" y="501" width="0.0192%" height="15" fill="rgb(237,174,47)" fg:x="15251" fg:w="100"/><text x="3.1807%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (776 samples, 0.15%)</title><rect x="2.8143%" y="517" width="0.1491%" height="15" fill="rgb(206,201,31)" fg:x="14645" fg:w="776"/><text x="3.0643%" y="527.50"></text></g><g><title>Parse::do_one_block (788 samples, 0.15%)</title><rect x="2.8122%" y="533" width="0.1514%" height="15" fill="rgb(231,57,52)" fg:x="14634" fg:w="788"/><text x="3.0622%" y="543.50"></text></g><g><title>Parse::do_all_blocks (804 samples, 0.15%)</title><rect x="2.8114%" y="549" width="0.1545%" height="15" fill="rgb(248,177,22)" fg:x="14630" fg:w="804"/><text x="3.0614%" y="559.50"></text></g><g><title>ParseGenerator::generate (876 samples, 0.17%)</title><rect x="2.8051%" y="581" width="0.1683%" height="15" fill="rgb(215,211,37)" fg:x="14597" fg:w="876"/><text x="3.0551%" y="591.50"></text></g><g><title>Parse::Parse (875 samples, 0.17%)</title><rect x="2.8053%" y="565" width="0.1681%" height="15" fill="rgb(241,128,51)" fg:x="14598" fg:w="875"/><text x="3.0553%" y="575.50"></text></g><g><title>Parse::do_call (62 samples, 0.01%)</title><rect x="2.9782%" y="485" width="0.0119%" height="15" fill="rgb(227,165,31)" fg:x="15498" fg:w="62"/><text x="3.2282%" y="495.50"></text></g><g><title>Parse::do_one_block (85 samples, 0.02%)</title><rect x="2.9767%" y="517" width="0.0163%" height="15" fill="rgb(228,167,24)" fg:x="15490" fg:w="85"/><text x="3.2267%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.02%)</title><rect x="2.9772%" y="501" width="0.0158%" height="15" fill="rgb(228,143,12)" fg:x="15493" fg:w="82"/><text x="3.2272%" y="511.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.02%)</title><rect x="2.9765%" y="533" width="0.0167%" height="15" fill="rgb(249,149,8)" fg:x="15489" fg:w="87"/><text x="3.2265%" y="543.50"></text></g><g><title>ParseGenerator::generate (95 samples, 0.02%)</title><rect x="2.9759%" y="565" width="0.0183%" height="15" fill="rgb(243,35,44)" fg:x="15486" fg:w="95"/><text x="3.2259%" y="575.50"></text></g><g><title>Parse::Parse (95 samples, 0.02%)</title><rect x="2.9759%" y="549" width="0.0183%" height="15" fill="rgb(246,89,9)" fg:x="15486" fg:w="95"/><text x="3.2259%" y="559.50"></text></g><g><title>PredictedCallGenerator::generate (124 samples, 0.02%)</title><rect x="2.9734%" y="581" width="0.0238%" height="15" fill="rgb(233,213,13)" fg:x="15473" fg:w="124"/><text x="3.2234%" y="591.50"></text></g><g><title>Parse::do_call (1,237 samples, 0.24%)</title><rect x="2.7649%" y="597" width="0.2377%" height="15" fill="rgb(233,141,41)" fg:x="14388" fg:w="1237"/><text x="3.0149%" y="607.50"></text></g><g><title>Parse::do_put_xxx (55 samples, 0.01%)</title><rect x="3.0139%" y="581" width="0.0106%" height="15" fill="rgb(239,167,4)" fg:x="15684" fg:w="55"/><text x="3.2639%" y="591.50"></text></g><g><title>Parse::do_field_access (103 samples, 0.02%)</title><rect x="3.0051%" y="597" width="0.0198%" height="15" fill="rgb(209,217,16)" fg:x="15638" fg:w="103"/><text x="3.2551%" y="607.50"></text></g><g><title>Parse::do_all_blocks (1,448 samples, 0.28%)</title><rect x="2.7562%" y="645" width="0.2783%" height="15" fill="rgb(219,88,35)" fg:x="14343" fg:w="1448"/><text x="3.0062%" y="655.50"></text></g><g><title>Parse::do_one_block (1,448 samples, 0.28%)</title><rect x="2.7562%" y="629" width="0.2783%" height="15" fill="rgb(220,193,23)" fg:x="14343" fg:w="1448"/><text x="3.0062%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (1,438 samples, 0.28%)</title><rect x="2.7582%" y="613" width="0.2763%" height="15" fill="rgb(230,90,52)" fg:x="14353" fg:w="1438"/><text x="3.0082%" y="623.50"></text></g><g><title>ParseGenerator::generate (1,466 samples, 0.28%)</title><rect x="2.7536%" y="677" width="0.2817%" height="15" fill="rgb(252,106,19)" fg:x="14329" fg:w="1466"/><text x="3.0036%" y="687.50"></text></g><g><title>Parse::Parse (1,466 samples, 0.28%)</title><rect x="2.7536%" y="661" width="0.2817%" height="15" fill="rgb(206,74,20)" fg:x="14329" fg:w="1466"/><text x="3.0036%" y="671.50"></text></g><g><title>Parse::do_one_block (75 samples, 0.01%)</title><rect x="3.0551%" y="421" width="0.0144%" height="15" fill="rgb(230,138,44)" fg:x="15898" fg:w="75"/><text x="3.3051%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (73 samples, 0.01%)</title><rect x="3.0555%" y="405" width="0.0140%" height="15" fill="rgb(235,182,43)" fg:x="15900" fg:w="73"/><text x="3.3055%" y="415.50"></text></g><g><title>Parse::do_all_blocks (77 samples, 0.01%)</title><rect x="3.0551%" y="437" width="0.0148%" height="15" fill="rgb(242,16,51)" fg:x="15898" fg:w="77"/><text x="3.3051%" y="447.50"></text></g><g><title>ParseGenerator::generate (84 samples, 0.02%)</title><rect x="3.0547%" y="469" width="0.0161%" height="15" fill="rgb(248,9,4)" fg:x="15896" fg:w="84"/><text x="3.3047%" y="479.50"></text></g><g><title>Parse::Parse (84 samples, 0.02%)</title><rect x="3.0547%" y="453" width="0.0161%" height="15" fill="rgb(210,31,22)" fg:x="15896" fg:w="84"/><text x="3.3047%" y="463.50"></text></g><g><title>Parse::do_call (120 samples, 0.02%)</title><rect x="3.0503%" y="485" width="0.0231%" height="15" fill="rgb(239,54,39)" fg:x="15873" fg:w="120"/><text x="3.3003%" y="495.50"></text></g><g><title>Parse::do_one_block (170 samples, 0.03%)</title><rect x="3.0476%" y="517" width="0.0327%" height="15" fill="rgb(230,99,41)" fg:x="15859" fg:w="170"/><text x="3.2976%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (169 samples, 0.03%)</title><rect x="3.0478%" y="501" width="0.0325%" height="15" fill="rgb(253,106,12)" fg:x="15860" fg:w="169"/><text x="3.2978%" y="511.50"></text></g><g><title>Parse::do_all_blocks (173 samples, 0.03%)</title><rect x="3.0472%" y="533" width="0.0332%" height="15" fill="rgb(213,46,41)" fg:x="15857" fg:w="173"/><text x="3.2972%" y="543.50"></text></g><g><title>ParseGenerator::generate (186 samples, 0.04%)</title><rect x="3.0462%" y="565" width="0.0357%" height="15" fill="rgb(215,133,35)" fg:x="15852" fg:w="186"/><text x="3.2962%" y="575.50"></text></g><g><title>Parse::Parse (186 samples, 0.04%)</title><rect x="3.0462%" y="549" width="0.0357%" height="15" fill="rgb(213,28,5)" fg:x="15852" fg:w="186"/><text x="3.2962%" y="559.50"></text></g><g><title>Parse::do_call (256 samples, 0.05%)</title><rect x="3.0378%" y="581" width="0.0492%" height="15" fill="rgb(215,77,49)" fg:x="15808" fg:w="256"/><text x="3.2878%" y="591.50"></text></g><g><title>Parse::do_one_block (301 samples, 0.06%)</title><rect x="3.0360%" y="613" width="0.0578%" height="15" fill="rgb(248,100,22)" fg:x="15799" fg:w="301"/><text x="3.2860%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (298 samples, 0.06%)</title><rect x="3.0366%" y="597" width="0.0573%" height="15" fill="rgb(208,67,9)" fg:x="15802" fg:w="298"/><text x="3.2866%" y="607.50"></text></g><g><title>Parse::do_all_blocks (302 samples, 0.06%)</title><rect x="3.0360%" y="629" width="0.0580%" height="15" fill="rgb(219,133,21)" fg:x="15799" fg:w="302"/><text x="3.2860%" y="639.50"></text></g><g><title>ParseGenerator::generate (306 samples, 0.06%)</title><rect x="3.0357%" y="661" width="0.0588%" height="15" fill="rgb(246,46,29)" fg:x="15797" fg:w="306"/><text x="3.2857%" y="671.50"></text></g><g><title>Parse::Parse (306 samples, 0.06%)</title><rect x="3.0357%" y="645" width="0.0588%" height="15" fill="rgb(246,185,52)" fg:x="15797" fg:w="306"/><text x="3.2857%" y="655.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.01%)</title><rect x="3.0947%" y="645" width="0.0110%" height="15" fill="rgb(252,136,11)" fg:x="16104" fg:w="57"/><text x="3.3447%" y="655.50"></text></g><g><title>Parse::Parse (57 samples, 0.01%)</title><rect x="3.0947%" y="629" width="0.0110%" height="15" fill="rgb(219,138,53)" fg:x="16104" fg:w="57"/><text x="3.3447%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (59 samples, 0.01%)</title><rect x="3.0945%" y="661" width="0.0113%" height="15" fill="rgb(211,51,23)" fg:x="16103" fg:w="59"/><text x="3.3445%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (368 samples, 0.07%)</title><rect x="3.0353%" y="677" width="0.0707%" height="15" fill="rgb(247,221,28)" fg:x="15795" fg:w="368"/><text x="3.2853%" y="687.50"></text></g><g><title>Parse::do_call (2,008 samples, 0.39%)</title><rect x="2.7232%" y="693" width="0.3859%" height="15" fill="rgb(251,222,45)" fg:x="14171" fg:w="2008"/><text x="2.9732%" y="703.50"></text></g><g><title>C2Compiler::compile_method (2,047 samples, 0.39%)</title><rect x="2.7174%" y="805" width="0.3934%" height="15" fill="rgb(217,162,53)" fg:x="14141" fg:w="2047"/><text x="2.9674%" y="815.50"></text></g><g><title>Compile::Compile (2,047 samples, 0.39%)</title><rect x="2.7174%" y="789" width="0.3934%" height="15" fill="rgb(229,93,14)" fg:x="14141" fg:w="2047"/><text x="2.9674%" y="799.50"></text></g><g><title>ParseGenerator::generate (2,017 samples, 0.39%)</title><rect x="2.7232%" y="773" width="0.3876%" height="15" fill="rgb(209,67,49)" fg:x="14171" fg:w="2017"/><text x="2.9732%" y="783.50"></text></g><g><title>Parse::Parse (2,017 samples, 0.39%)</title><rect x="2.7232%" y="757" width="0.3876%" height="15" fill="rgb(213,87,29)" fg:x="14171" fg:w="2017"/><text x="2.9732%" y="767.50"></text></g><g><title>Parse::do_all_blocks (2,017 samples, 0.39%)</title><rect x="2.7232%" y="741" width="0.3876%" height="15" fill="rgb(205,151,52)" fg:x="14171" fg:w="2017"/><text x="2.9732%" y="751.50"></text></g><g><title>Parse::do_one_block (2,017 samples, 0.39%)</title><rect x="2.7232%" y="725" width="0.3876%" height="15" fill="rgb(253,215,39)" fg:x="14171" fg:w="2017"/><text x="2.9732%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (2,017 samples, 0.39%)</title><rect x="2.7232%" y="709" width="0.3876%" height="15" fill="rgb(221,220,41)" fg:x="14171" fg:w="2017"/><text x="2.9732%" y="719.50"></text></g><g><title>Compile::Output (53 samples, 0.01%)</title><rect x="3.1114%" y="789" width="0.0102%" height="15" fill="rgb(218,133,21)" fg:x="16191" fg:w="53"/><text x="3.3614%" y="799.50"></text></g><g><title>Compile::init_buffer (53 samples, 0.01%)</title><rect x="3.1114%" y="773" width="0.0102%" height="15" fill="rgb(221,193,43)" fg:x="16191" fg:w="53"/><text x="3.3614%" y="783.50"></text></g><g><title>PhaseCFG::schedule_late (57 samples, 0.01%)</title><rect x="3.1256%" y="757" width="0.0110%" height="15" fill="rgb(240,128,52)" fg:x="16265" fg:w="57"/><text x="3.3756%" y="767.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (57 samples, 0.01%)</title><rect x="3.1256%" y="741" width="0.0110%" height="15" fill="rgb(253,114,12)" fg:x="16265" fg:w="57"/><text x="3.3756%" y="751.50"></text></g><g><title>PhaseCFG::schedule_local (167 samples, 0.03%)</title><rect x="3.1365%" y="757" width="0.0321%" height="15" fill="rgb(215,223,47)" fg:x="16322" fg:w="167"/><text x="3.3865%" y="767.50"></text></g><g><title>PhaseCFG::sched_call (167 samples, 0.03%)</title><rect x="3.1365%" y="741" width="0.0321%" height="15" fill="rgb(248,225,23)" fg:x="16322" fg:w="167"/><text x="3.3865%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (228 samples, 0.04%)</title><rect x="3.1252%" y="789" width="0.0438%" height="15" fill="rgb(250,108,0)" fg:x="16263" fg:w="228"/><text x="3.3752%" y="799.50"></text></g><g><title>PhaseCFG::global_code_motion (228 samples, 0.04%)</title><rect x="3.1252%" y="773" width="0.0438%" height="15" fill="rgb(228,208,7)" fg:x="16263" fg:w="228"/><text x="3.3752%" y="783.50"></text></g><g><title>PhaseChaitin::Split (61 samples, 0.01%)</title><rect x="3.1690%" y="773" width="0.0117%" height="15" fill="rgb(244,45,10)" fg:x="16491" fg:w="61"/><text x="3.4190%" y="783.50"></text></g><g><title>Compile::Code_Gen (375 samples, 0.07%)</title><rect x="3.1114%" y="805" width="0.0721%" height="15" fill="rgb(207,125,25)" fg:x="16191" fg:w="375"/><text x="3.3614%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (75 samples, 0.01%)</title><rect x="3.1690%" y="789" width="0.0144%" height="15" fill="rgb(210,195,18)" fg:x="16491" fg:w="75"/><text x="3.4190%" y="799.50"></text></g><g><title>OopFlow::build_oop_map (118 samples, 0.02%)</title><rect x="3.2836%" y="725" width="0.0227%" height="15" fill="rgb(249,80,12)" fg:x="17087" fg:w="118"/><text x="3.5336%" y="735.50"></text></g><g><title>OopFlow::compute_reach (197 samples, 0.04%)</title><rect x="3.2686%" y="741" width="0.0379%" height="15" fill="rgb(221,65,9)" fg:x="17009" fg:w="197"/><text x="3.5186%" y="751.50"></text></g><g><title>Compile::BuildOopMaps (719 samples, 0.14%)</title><rect x="3.1863%" y="757" width="0.1382%" height="15" fill="rgb(235,49,36)" fg:x="16581" fg:w="719"/><text x="3.4363%" y="767.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (78 samples, 0.01%)</title><rect x="3.3095%" y="741" width="0.0150%" height="15" fill="rgb(225,32,20)" fg:x="17222" fg:w="78"/><text x="3.5595%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (178 samples, 0.03%)</title><rect x="3.3572%" y="725" width="0.0342%" height="15" fill="rgb(215,141,46)" fg:x="17470" fg:w="178"/><text x="3.6072%" y="735.50"></text></g><g><title>Compile::shorten_branches (328 samples, 0.06%)</title><rect x="3.3328%" y="741" width="0.0630%" height="15" fill="rgb(250,160,47)" fg:x="17343" fg:w="328"/><text x="3.5828%" y="751.50"></text></g><g><title>Compile::init_buffer (374 samples, 0.07%)</title><rect x="3.3245%" y="757" width="0.0719%" height="15" fill="rgb(216,222,40)" fg:x="17300" fg:w="374"/><text x="3.5745%" y="767.50"></text></g><g><title>Compile::Output (1,106 samples, 0.21%)</title><rect x="3.1840%" y="773" width="0.2125%" height="15" fill="rgb(234,217,39)" fg:x="16569" fg:w="1106"/><text x="3.4340%" y="783.50"></text></g><g><title>Compile::Process_OopMap_Node (208 samples, 0.04%)</title><rect x="3.4252%" y="757" width="0.0400%" height="15" fill="rgb(207,178,40)" fg:x="17824" fg:w="208"/><text x="3.6752%" y="767.50"></text></g><g><title>Compile::valid_bundle_info (56 samples, 0.01%)</title><rect x="3.4659%" y="757" width="0.0108%" height="15" fill="rgb(221,136,13)" fg:x="18036" fg:w="56"/><text x="3.7159%" y="767.50"></text></g><g><title>Compile::fill_buffer (528 samples, 0.10%)</title><rect x="3.3965%" y="773" width="0.1015%" height="15" fill="rgb(249,199,10)" fg:x="17675" fg:w="528"/><text x="3.6465%" y="783.50"></text></g><g><title>Matcher::find_shared (336 samples, 0.06%)</title><rect x="3.5132%" y="757" width="0.0646%" height="15" fill="rgb(249,222,13)" fg:x="18282" fg:w="336"/><text x="3.7632%" y="767.50"></text></g><g><title>Arena::contains (464 samples, 0.09%)</title><rect x="3.6469%" y="741" width="0.0892%" height="15" fill="rgb(244,185,38)" fg:x="18978" fg:w="464"/><text x="3.8969%" y="751.50"></text></g><g><title>Matcher::match_tree (102 samples, 0.02%)</title><rect x="3.7503%" y="725" width="0.0196%" height="15" fill="rgb(236,202,9)" fg:x="19516" fg:w="102"/><text x="4.0003%" y="735.50"></text></g><g><title>Matcher::match_sfpt (151 samples, 0.03%)</title><rect x="3.7446%" y="741" width="0.0290%" height="15" fill="rgb(250,229,37)" fg:x="19486" fg:w="151"/><text x="3.9946%" y="751.50"></text></g><g><title>Matcher::Label_Root (94 samples, 0.02%)</title><rect x="3.8397%" y="693" width="0.0181%" height="15" fill="rgb(206,174,23)" fg:x="19981" fg:w="94"/><text x="4.0897%" y="703.50"></text></g><g><title>State::DFA (65 samples, 0.01%)</title><rect x="3.8585%" y="693" width="0.0125%" height="15" fill="rgb(211,33,43)" fg:x="20079" fg:w="65"/><text x="4.1085%" y="703.50"></text></g><g><title>Matcher::Label_Root (238 samples, 0.05%)</title><rect x="3.8266%" y="709" width="0.0457%" height="15" fill="rgb(245,58,50)" fg:x="19913" fg:w="238"/><text x="4.0766%" y="719.50"></text></g><g><title>Matcher::Label_Root (381 samples, 0.07%)</title><rect x="3.8118%" y="725" width="0.0732%" height="15" fill="rgb(244,68,36)" fg:x="19836" fg:w="381"/><text x="4.0618%" y="735.50"></text></g><g><title>Matcher::ReduceInst (81 samples, 0.02%)</title><rect x="3.8921%" y="693" width="0.0156%" height="15" fill="rgb(232,229,15)" fg:x="20254" fg:w="81"/><text x="4.1421%" y="703.50"></text></g><g><title>Matcher::ReduceInst_Interior (148 samples, 0.03%)</title><rect x="3.8897%" y="709" width="0.0284%" height="15" fill="rgb(254,30,23)" fg:x="20241" fg:w="148"/><text x="4.1397%" y="719.50"></text></g><g><title>Matcher::ReduceInst (280 samples, 0.05%)</title><rect x="3.8850%" y="725" width="0.0538%" height="15" fill="rgb(235,160,14)" fg:x="20217" fg:w="280"/><text x="4.1350%" y="735.50"></text></g><g><title>Matcher::match_tree (867 samples, 0.17%)</title><rect x="3.7736%" y="741" width="0.1666%" height="15" fill="rgb(212,155,44)" fg:x="19637" fg:w="867"/><text x="4.0236%" y="751.50"></text></g><g><title>Node::clone (84 samples, 0.02%)</title><rect x="3.9412%" y="741" width="0.0161%" height="15" fill="rgb(226,2,50)" fg:x="20509" fg:w="84"/><text x="4.1912%" y="751.50"></text></g><g><title>Matcher::xform (2,002 samples, 0.38%)</title><rect x="3.5801%" y="757" width="0.3847%" height="15" fill="rgb(234,177,6)" fg:x="18630" fg:w="2002"/><text x="3.8301%" y="767.50"></text></g><g><title>Matcher::match (2,432 samples, 0.47%)</title><rect x="3.4992%" y="773" width="0.4673%" height="15" fill="rgb(217,24,9)" fg:x="18209" fg:w="2432"/><text x="3.7492%" y="783.50"></text></g><g><title>PhaseBlockLayout::find_edges (64 samples, 0.01%)</title><rect x="3.9669%" y="757" width="0.0123%" height="15" fill="rgb(220,13,46)" fg:x="20643" fg:w="64"/><text x="4.2169%" y="767.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (148 samples, 0.03%)</title><rect x="3.9665%" y="773" width="0.0284%" height="15" fill="rgb(239,221,27)" fg:x="20641" fg:w="148"/><text x="4.2165%" y="783.50"></text></g><g><title>PhaseCFG::build_cfg (136 samples, 0.03%)</title><rect x="3.9953%" y="757" width="0.0261%" height="15" fill="rgb(222,198,25)" fg:x="20791" fg:w="136"/><text x="4.2453%" y="767.50"></text></g><g><title>PhaseCFG::PhaseCFG (139 samples, 0.03%)</title><rect x="3.9950%" y="773" width="0.0267%" height="15" fill="rgb(211,99,13)" fg:x="20789" fg:w="139"/><text x="4.2450%" y="783.50"></text></g><g><title>PhaseCFG::build_dominator_tree (87 samples, 0.02%)</title><rect x="4.0217%" y="757" width="0.0167%" height="15" fill="rgb(232,111,31)" fg:x="20928" fg:w="87"/><text x="4.2717%" y="767.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (56 samples, 0.01%)</title><rect x="4.0384%" y="757" width="0.0108%" height="15" fill="rgb(245,82,37)" fg:x="21015" fg:w="56"/><text x="4.2884%" y="767.50"></text></g><g><title>PhaseCFG::implicit_null_check (53 samples, 0.01%)</title><rect x="4.1156%" y="741" width="0.0102%" height="15" fill="rgb(227,149,46)" fg:x="21417" fg:w="53"/><text x="4.3656%" y="751.50"></text></g><g><title>Node_Backward_Iterator::next (230 samples, 0.04%)</title><rect x="4.1535%" y="725" width="0.0442%" height="15" fill="rgb(218,36,50)" fg:x="21614" fg:w="230"/><text x="4.4035%" y="735.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (117 samples, 0.02%)</title><rect x="4.1977%" y="725" width="0.0225%" height="15" fill="rgb(226,80,48)" fg:x="21844" fg:w="117"/><text x="4.4477%" y="735.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (136 samples, 0.03%)</title><rect x="4.2202%" y="725" width="0.0261%" height="15" fill="rgb(238,224,15)" fg:x="21961" fg:w="136"/><text x="4.4702%" y="735.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (67 samples, 0.01%)</title><rect x="4.2463%" y="725" width="0.0129%" height="15" fill="rgb(241,136,10)" fg:x="22097" fg:w="67"/><text x="4.4963%" y="735.50"></text></g><g><title>PhaseCFG::schedule_late (663 samples, 0.13%)</title><rect x="4.1333%" y="741" width="0.1274%" height="15" fill="rgb(208,32,45)" fg:x="21509" fg:w="663"/><text x="4.3833%" y="751.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (55 samples, 0.01%)</title><rect x="4.3111%" y="725" width="0.0106%" height="15" fill="rgb(207,135,9)" fg:x="22434" fg:w="55"/><text x="4.5611%" y="735.50"></text></g><g><title>PhaseCFG::select (106 samples, 0.02%)</title><rect x="4.3278%" y="725" width="0.0204%" height="15" fill="rgb(206,86,44)" fg:x="22521" fg:w="106"/><text x="4.5778%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (549 samples, 0.11%)</title><rect x="4.2607%" y="741" width="0.1055%" height="15" fill="rgb(245,177,15)" fg:x="22172" fg:w="549"/><text x="4.5107%" y="751.50"></text></g><g><title>RegMask::Size (91 samples, 0.02%)</title><rect x="4.4210%" y="725" width="0.0175%" height="15" fill="rgb(206,64,50)" fg:x="23006" fg:w="91"/><text x="4.6710%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (403 samples, 0.08%)</title><rect x="4.3724%" y="741" width="0.0774%" height="15" fill="rgb(234,36,40)" fg:x="22753" fg:w="403"/><text x="4.6224%" y="751.50"></text></g><g><title>PhaseChaitin::mark_ssa (88 samples, 0.02%)</title><rect x="4.4498%" y="741" width="0.0169%" height="15" fill="rgb(213,64,8)" fg:x="23156" fg:w="88"/><text x="4.6998%" y="751.50"></text></g><g><title>IndexSet::initialize (105 samples, 0.02%)</title><rect x="4.4777%" y="725" width="0.0202%" height="15" fill="rgb(210,75,36)" fg:x="23301" fg:w="105"/><text x="4.7277%" y="735.50"></text></g><g><title>PhaseIFG::init (202 samples, 0.04%)</title><rect x="4.4667%" y="741" width="0.0388%" height="15" fill="rgb(229,88,21)" fg:x="23244" fg:w="202"/><text x="4.7167%" y="751.50"></text></g><g><title>IndexSet::initialize (62 samples, 0.01%)</title><rect x="4.5501%" y="725" width="0.0119%" height="15" fill="rgb(252,204,47)" fg:x="23678" fg:w="62"/><text x="4.8001%" y="735.50"></text></g><g><title>PhaseLive::add_livein (161 samples, 0.03%)</title><rect x="4.5620%" y="725" width="0.0309%" height="15" fill="rgb(208,77,27)" fg:x="23740" fg:w="161"/><text x="4.8120%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (61 samples, 0.01%)</title><rect x="4.5813%" y="709" width="0.0117%" height="15" fill="rgb(221,76,26)" fg:x="23840" fg:w="61"/><text x="4.8313%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (53 samples, 0.01%)</title><rect x="4.6272%" y="709" width="0.0102%" height="15" fill="rgb(225,139,18)" fg:x="24079" fg:w="53"/><text x="4.8772%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (86 samples, 0.02%)</title><rect x="4.6414%" y="709" width="0.0165%" height="15" fill="rgb(230,137,11)" fg:x="24153" fg:w="86"/><text x="4.8914%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (340 samples, 0.07%)</title><rect x="4.5930%" y="725" width="0.0653%" height="15" fill="rgb(212,28,1)" fg:x="23901" fg:w="340"/><text x="4.8430%" y="735.50"></text></g><g><title>PhaseLive::compute (799 samples, 0.15%)</title><rect x="4.5055%" y="741" width="0.1535%" height="15" fill="rgb(248,164,17)" fg:x="23446" fg:w="799"/><text x="4.7555%" y="751.50"></text></g><g><title>PhaseCFG::global_code_motion (3,200 samples, 0.61%)</title><rect x="4.0491%" y="757" width="0.6149%" height="15" fill="rgb(222,171,42)" fg:x="21071" fg:w="3200"/><text x="4.2991%" y="767.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,344 samples, 0.64%)</title><rect x="4.0217%" y="773" width="0.6426%" height="15" fill="rgb(243,84,45)" fg:x="20928" fg:w="3344"/><text x="4.2717%" y="783.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (67 samples, 0.01%)</title><rect x="4.6673%" y="773" width="0.0129%" height="15" fill="rgb(252,49,23)" fg:x="24288" fg:w="67"/><text x="4.9173%" y="783.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (936 samples, 0.18%)</title><rect x="4.7077%" y="757" width="0.1799%" height="15" fill="rgb(215,19,7)" fg:x="24498" fg:w="936"/><text x="4.9577%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (274 samples, 0.05%)</title><rect x="5.0002%" y="741" width="0.0527%" height="15" fill="rgb(238,81,41)" fg:x="26020" fg:w="274"/><text x="5.2502%" y="751.50"></text></g><g><title>PhaseChaitin::bias_color (158 samples, 0.03%)</title><rect x="5.0528%" y="741" width="0.0304%" height="15" fill="rgb(210,199,37)" fg:x="26294" fg:w="158"/><text x="5.3028%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (75 samples, 0.01%)</title><rect x="5.1541%" y="725" width="0.0144%" height="15" fill="rgb(244,192,49)" fg:x="26821" fg:w="75"/><text x="5.4041%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (356 samples, 0.07%)</title><rect x="5.1685%" y="725" width="0.0684%" height="15" fill="rgb(226,211,11)" fg:x="26896" fg:w="356"/><text x="5.4185%" y="735.50"></text></g><g><title>PhaseIFG::re_insert (809 samples, 0.16%)</title><rect x="5.0855%" y="741" width="0.1555%" height="15" fill="rgb(236,162,54)" fg:x="26464" fg:w="809"/><text x="5.3355%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (132 samples, 0.03%)</title><rect x="5.2410%" y="741" width="0.0254%" height="15" fill="rgb(220,229,9)" fg:x="27273" fg:w="132"/><text x="5.4910%" y="751.50"></text></g><g><title>PhaseChaitin::Select (1,981 samples, 0.38%)</title><rect x="4.8876%" y="757" width="0.3807%" height="15" fill="rgb(250,87,22)" fg:x="25434" fg:w="1981"/><text x="5.1376%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (325 samples, 0.06%)</title><rect x="5.3186%" y="741" width="0.0625%" height="15" fill="rgb(239,43,17)" fg:x="27677" fg:w="325"/><text x="5.5686%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (64 samples, 0.01%)</title><rect x="5.4622%" y="725" width="0.0123%" height="15" fill="rgb(231,177,25)" fg:x="28424" fg:w="64"/><text x="5.7122%" y="735.50"></text></g><g><title>PhaseChaitin::Simplify (1,465 samples, 0.28%)</title><rect x="5.2683%" y="757" width="0.2815%" height="15" fill="rgb(219,179,1)" fg:x="27415" fg:w="1465"/><text x="5.5183%" y="767.50"></text></g><g><title>PhaseIFG::remove_node (878 samples, 0.17%)</title><rect x="5.3811%" y="741" width="0.1687%" height="15" fill="rgb(238,219,53)" fg:x="28002" fg:w="878"/><text x="5.6311%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (392 samples, 0.08%)</title><rect x="5.4745%" y="725" width="0.0753%" height="15" fill="rgb(232,167,36)" fg:x="28488" fg:w="392"/><text x="5.7245%" y="735.50"></text></g><g><title>MachNode::rematerialize (142 samples, 0.03%)</title><rect x="5.9822%" y="741" width="0.0273%" height="15" fill="rgb(244,19,51)" fg:x="31130" fg:w="142"/><text x="6.2322%" y="751.50"></text></g><g><title>Node::rematerialize (114 samples, 0.02%)</title><rect x="6.0154%" y="741" width="0.0219%" height="15" fill="rgb(224,6,22)" fg:x="31303" fg:w="114"/><text x="6.2654%" y="751.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (76 samples, 0.01%)</title><rect x="6.0713%" y="725" width="0.0146%" height="15" fill="rgb(224,145,5)" fg:x="31594" fg:w="76"/><text x="6.3213%" y="735.50"></text></g><g><title>PhaseChaitin::split_USE (145 samples, 0.03%)</title><rect x="6.0621%" y="741" width="0.0279%" height="15" fill="rgb(234,130,49)" fg:x="31546" fg:w="145"/><text x="6.3121%" y="751.50"></text></g><g><title>PhaseChaitin::Split (2,888 samples, 0.55%)</title><rect x="5.5498%" y="757" width="0.5550%" height="15" fill="rgb(254,6,2)" fg:x="28880" fg:w="2888"/><text x="5.7998%" y="767.50"></text></g><g><title>IndexSet::IndexSet (281 samples, 0.05%)</title><rect x="6.2685%" y="741" width="0.0540%" height="15" fill="rgb(208,96,46)" fg:x="32620" fg:w="281"/><text x="6.5185%" y="751.50"></text></g><g><title>MachNode::rematerialize (73 samples, 0.01%)</title><rect x="6.3244%" y="741" width="0.0140%" height="15" fill="rgb(239,3,39)" fg:x="32911" fg:w="73"/><text x="6.5744%" y="751.50"></text></g><g><title>MachNode::rematerialize (101 samples, 0.02%)</title><rect x="6.4328%" y="725" width="0.0194%" height="15" fill="rgb(233,210,1)" fg:x="33475" fg:w="101"/><text x="6.6828%" y="735.50"></text></g><g><title>RegMask::is_UP (62 samples, 0.01%)</title><rect x="6.4678%" y="709" width="0.0119%" height="15" fill="rgb(244,137,37)" fg:x="33657" fg:w="62"/><text x="6.7178%" y="719.50"></text></g><g><title>PhaseChaitin::raise_pressure (132 samples, 0.03%)</title><rect x="6.4545%" y="725" width="0.0254%" height="15" fill="rgb(240,136,2)" fg:x="33588" fg:w="132"/><text x="6.7045%" y="735.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (730 samples, 0.14%)</title><rect x="6.3415%" y="741" width="0.1403%" height="15" fill="rgb(239,18,37)" fg:x="33000" fg:w="730"/><text x="6.5915%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (136 samples, 0.03%)</title><rect x="6.5435%" y="725" width="0.0261%" height="15" fill="rgb(218,185,22)" fg:x="34051" fg:w="136"/><text x="6.7935%" y="735.50"></text></g><g><title>RegMask::is_UP (79 samples, 0.02%)</title><rect x="6.5696%" y="725" width="0.0152%" height="15" fill="rgb(225,218,4)" fg:x="34187" fg:w="79"/><text x="6.8196%" y="735.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (460 samples, 0.09%)</title><rect x="6.4968%" y="741" width="0.0884%" height="15" fill="rgb(230,182,32)" fg:x="33808" fg:w="460"/><text x="6.7468%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (129 samples, 0.02%)</title><rect x="6.9403%" y="725" width="0.0248%" height="15" fill="rgb(242,56,43)" fg:x="36116" fg:w="129"/><text x="7.1903%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (717 samples, 0.14%)</title><rect x="6.9659%" y="725" width="0.1378%" height="15" fill="rgb(233,99,24)" fg:x="36249" fg:w="717"/><text x="7.2159%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,702 samples, 0.52%)</title><rect x="6.5852%" y="741" width="0.5192%" height="15" fill="rgb(234,209,42)" fg:x="34268" fg:w="2702"/><text x="6.8352%" y="751.50"></text></g><g><title>PhaseChaitin::lower_pressure (95 samples, 0.02%)</title><rect x="7.1044%" y="741" width="0.0183%" height="15" fill="rgb(227,7,12)" fg:x="36970" fg:w="95"/><text x="7.3544%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (173 samples, 0.03%)</title><rect x="7.2099%" y="725" width="0.0332%" height="15" fill="rgb(245,203,43)" fg:x="37519" fg:w="173"/><text x="7.4599%" y="735.50"></text></g><g><title>RegMask::Size (303 samples, 0.06%)</title><rect x="7.2432%" y="725" width="0.0582%" height="15" fill="rgb(238,205,33)" fg:x="37692" fg:w="303"/><text x="7.4932%" y="735.50"></text></g><g><title>RegMask::smear_to_sets (594 samples, 0.11%)</title><rect x="7.3014%" y="725" width="0.1141%" height="15" fill="rgb(231,56,7)" fg:x="37995" fg:w="594"/><text x="7.5514%" y="735.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,535 samples, 0.29%)</title><rect x="7.1227%" y="741" width="0.2950%" height="15" fill="rgb(244,186,29)" fg:x="37065" fg:w="1535"/><text x="7.3727%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (6,915 samples, 1.33%)</title><rect x="6.1048%" y="757" width="1.3288%" height="15" fill="rgb(234,111,31)" fg:x="31768" fg:w="6915"/><text x="6.3548%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (58 samples, 0.01%)</title><rect x="7.5064%" y="725" width="0.0111%" height="15" fill="rgb(241,149,10)" fg:x="39062" fg:w="58"/><text x="7.7564%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (308 samples, 0.06%)</title><rect x="7.4586%" y="741" width="0.0592%" height="15" fill="rgb(249,206,44)" fg:x="38813" fg:w="308"/><text x="7.7086%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (441 samples, 0.08%)</title><rect x="7.4336%" y="757" width="0.0847%" height="15" fill="rgb(251,153,30)" fg:x="38683" fg:w="441"/><text x="7.6836%" y="767.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (125 samples, 0.02%)</title><rect x="7.5183%" y="757" width="0.0240%" height="15" fill="rgb(239,152,38)" fg:x="39124" fg:w="125"/><text x="7.7683%" y="767.50"></text></g><g><title>PhaseChaitin::de_ssa (83 samples, 0.02%)</title><rect x="7.5485%" y="757" width="0.0159%" height="15" fill="rgb(249,139,47)" fg:x="39281" fg:w="83"/><text x="7.7985%" y="767.50"></text></g><g><title>PhaseChaitin::fixup_spills (59 samples, 0.01%)</title><rect x="7.5645%" y="757" width="0.0113%" height="15" fill="rgb(244,64,35)" fg:x="39364" fg:w="59"/><text x="7.8145%" y="767.50"></text></g><g><title>MachCallJavaNode::in_RegMask (77 samples, 0.01%)</title><rect x="7.9040%" y="741" width="0.0148%" height="15" fill="rgb(216,46,15)" fg:x="41131" fg:w="77"/><text x="8.1540%" y="751.50"></text></g><g><title>MachNode::ideal_reg (74 samples, 0.01%)</title><rect x="7.9196%" y="741" width="0.0142%" height="15" fill="rgb(250,74,19)" fg:x="41212" fg:w="74"/><text x="8.1696%" y="751.50"></text></g><g><title>MachNode::in_RegMask (59 samples, 0.01%)</title><rect x="7.9338%" y="741" width="0.0113%" height="15" fill="rgb(249,42,33)" fg:x="41286" fg:w="59"/><text x="8.1838%" y="751.50"></text></g><g><title>RegMask::Size (1,056 samples, 0.20%)</title><rect x="7.9651%" y="741" width="0.2029%" height="15" fill="rgb(242,149,17)" fg:x="41449" fg:w="1056"/><text x="8.2151%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (172 samples, 0.03%)</title><rect x="8.1681%" y="741" width="0.0331%" height="15" fill="rgb(244,29,21)" fg:x="42505" fg:w="172"/><text x="8.4181%" y="751.50"></text></g><g><title>RegMask::is_aligned_pairs (108 samples, 0.02%)</title><rect x="8.2011%" y="741" width="0.0208%" height="15" fill="rgb(220,130,37)" fg:x="42677" fg:w="108"/><text x="8.4511%" y="751.50"></text></g><g><title>RegMask::is_bound1 (135 samples, 0.03%)</title><rect x="8.2219%" y="741" width="0.0259%" height="15" fill="rgb(211,67,2)" fg:x="42785" fg:w="135"/><text x="8.4719%" y="751.50"></text></g><g><title>RegMask::is_bound_pair (73 samples, 0.01%)</title><rect x="8.2478%" y="741" width="0.0140%" height="15" fill="rgb(235,68,52)" fg:x="42920" fg:w="73"/><text x="8.4978%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,696 samples, 0.71%)</title><rect x="7.5758%" y="757" width="0.7102%" height="15" fill="rgb(246,142,3)" fg:x="39423" fg:w="3696"/><text x="7.8258%" y="767.50"></text></g><g><title>PhaseChaitin::merge_multidefs (472 samples, 0.09%)</title><rect x="8.2860%" y="757" width="0.0907%" height="15" fill="rgb(241,25,7)" fg:x="43119" fg:w="472"/><text x="8.5360%" y="767.50"></text></g><g><title>PhaseChaitin::use_prior_register (88 samples, 0.02%)</title><rect x="9.0122%" y="725" width="0.0169%" height="15" fill="rgb(242,119,39)" fg:x="46898" fg:w="88"/><text x="9.2622%" y="735.50"></text></g><g><title>PhaseChaitin::elide_copy (1,812 samples, 0.35%)</title><rect x="8.6890%" y="741" width="0.3482%" height="15" fill="rgb(241,98,45)" fg:x="45216" fg:w="1812"/><text x="8.9390%" y="751.50"></text></g><g><title>[libc-2.31.so] (65 samples, 0.01%)</title><rect x="9.0472%" y="741" width="0.0125%" height="15" fill="rgb(254,28,30)" fg:x="47080" fg:w="65"/><text x="9.2972%" y="751.50"></text></g><g><title>find_lowest_bit (312 samples, 0.06%)</title><rect x="9.0620%" y="741" width="0.0600%" height="15" fill="rgb(241,142,54)" fg:x="47157" fg:w="312"/><text x="9.3120%" y="751.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (3,885 samples, 0.75%)</title><rect x="8.3767%" y="757" width="0.7466%" height="15" fill="rgb(222,85,15)" fg:x="43591" fg:w="3885"/><text x="8.6267%" y="767.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (171 samples, 0.03%)</title><rect x="9.1233%" y="757" width="0.0329%" height="15" fill="rgb(210,85,47)" fg:x="47476" fg:w="171"/><text x="9.3733%" y="767.50"></text></g><g><title>PhaseCoalesce::combine_these_two (74 samples, 0.01%)</title><rect x="9.1752%" y="725" width="0.0142%" height="15" fill="rgb(224,206,25)" fg:x="47746" fg:w="74"/><text x="9.4252%" y="735.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (166 samples, 0.03%)</title><rect x="9.1579%" y="741" width="0.0319%" height="15" fill="rgb(243,201,19)" fg:x="47656" fg:w="166"/><text x="9.4079%" y="751.50"></text></g><g><title>PhaseCFG::is_uncommon (117 samples, 0.02%)</title><rect x="9.2004%" y="725" width="0.0225%" height="15" fill="rgb(236,59,4)" fg:x="47877" fg:w="117"/><text x="9.4504%" y="735.50"></text></g><g><title>IndexSet::lrg_union (357 samples, 0.07%)</title><rect x="9.2304%" y="709" width="0.0686%" height="15" fill="rgb(254,179,45)" fg:x="48033" fg:w="357"/><text x="9.4804%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (428 samples, 0.08%)</title><rect x="9.3016%" y="709" width="0.0822%" height="15" fill="rgb(226,14,10)" fg:x="48404" fg:w="428"/><text x="9.5516%" y="719.50"></text></g><g><title>PhaseIFG::effective_degree (110 samples, 0.02%)</title><rect x="9.3839%" y="709" width="0.0211%" height="15" fill="rgb(244,27,41)" fg:x="48832" fg:w="110"/><text x="9.6339%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (967 samples, 0.19%)</title><rect x="9.2229%" y="725" width="0.1858%" height="15" fill="rgb(235,35,32)" fg:x="47994" fg:w="967"/><text x="9.4729%" y="735.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,315 samples, 0.25%)</title><rect x="9.1562%" y="757" width="0.2527%" height="15" fill="rgb(218,68,31)" fg:x="47647" fg:w="1315"/><text x="9.4062%" y="767.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,140 samples, 0.22%)</title><rect x="9.1898%" y="741" width="0.2191%" height="15" fill="rgb(207,120,37)" fg:x="47822" fg:w="1140"/><text x="9.4398%" y="751.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (913 samples, 0.18%)</title><rect x="9.4089%" y="757" width="0.1754%" height="15" fill="rgb(227,98,0)" fg:x="48962" fg:w="913"/><text x="9.6589%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (474 samples, 0.09%)</title><rect x="9.4932%" y="741" width="0.0911%" height="15" fill="rgb(207,7,3)" fg:x="49401" fg:w="474"/><text x="9.7432%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (79 samples, 0.02%)</title><rect x="9.6531%" y="741" width="0.0152%" height="15" fill="rgb(206,98,19)" fg:x="50233" fg:w="79"/><text x="9.9031%" y="751.50"></text></g><g><title>PhaseIFG::SquareUp (846 samples, 0.16%)</title><rect x="9.5843%" y="757" width="0.1626%" height="15" fill="rgb(217,5,26)" fg:x="49875" fg:w="846"/><text x="9.8343%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (409 samples, 0.08%)</title><rect x="9.6683%" y="741" width="0.0786%" height="15" fill="rgb(235,190,38)" fg:x="50312" fg:w="409"/><text x="9.9183%" y="751.50"></text></g><g><title>IndexSet::initialize (187 samples, 0.04%)</title><rect x="9.7684%" y="741" width="0.0359%" height="15" fill="rgb(247,86,24)" fg:x="50833" fg:w="187"/><text x="10.0184%" y="751.50"></text></g><g><title>PhaseIFG::init (365 samples, 0.07%)</title><rect x="9.7469%" y="757" width="0.0701%" height="15" fill="rgb(205,101,16)" fg:x="50721" fg:w="365"/><text x="9.9969%" y="767.50"></text></g><g><title>[libc-2.31.so] (66 samples, 0.01%)</title><rect x="9.8044%" y="741" width="0.0127%" height="15" fill="rgb(246,168,33)" fg:x="51020" fg:w="66"/><text x="10.0544%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (64 samples, 0.01%)</title><rect x="10.0417%" y="741" width="0.0123%" height="15" fill="rgb(231,114,1)" fg:x="52255" fg:w="64"/><text x="10.2917%" y="751.50"></text></g><g><title>IndexSet::free_block (54 samples, 0.01%)</title><rect x="10.0540%" y="741" width="0.0104%" height="15" fill="rgb(207,184,53)" fg:x="52319" fg:w="54"/><text x="10.3040%" y="751.50"></text></g><g><title>IndexSet::initialize (99 samples, 0.02%)</title><rect x="10.0644%" y="741" width="0.0190%" height="15" fill="rgb(224,95,51)" fg:x="52373" fg:w="99"/><text x="10.3144%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (191 samples, 0.04%)</title><rect x="10.2093%" y="725" width="0.0367%" height="15" fill="rgb(212,188,45)" fg:x="53127" fg:w="191"/><text x="10.4593%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (279 samples, 0.05%)</title><rect x="10.2548%" y="725" width="0.0536%" height="15" fill="rgb(223,154,38)" fg:x="53364" fg:w="279"/><text x="10.5048%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (1,195 samples, 0.23%)</title><rect x="10.0836%" y="741" width="0.2296%" height="15" fill="rgb(251,22,52)" fg:x="52473" fg:w="1195"/><text x="10.3336%" y="751.50"></text></g><g><title>PhaseLive::compute (2,593 samples, 0.50%)</title><rect x="9.8172%" y="757" width="0.4983%" height="15" fill="rgb(229,209,22)" fg:x="51087" fg:w="2593"/><text x="10.0672%" y="767.50"></text></g><g><title>PhaseChaitin::Register_Allocate (29,417 samples, 5.65%)</title><rect x="4.6845%" y="773" width="5.6530%" height="15" fill="rgb(234,138,34)" fg:x="24377" fg:w="29417"/><text x="4.9345%" y="783.50">PhaseCh..</text></g><g><title>Compile::Code_Gen (37,291 samples, 7.17%)</title><rect x="3.1834%" y="789" width="7.1661%" height="15" fill="rgb(212,95,11)" fg:x="16566" fg:w="37291"/><text x="3.4334%" y="799.50">Compile::C..</text></g><g><title>PhasePeephole::do_transform (59 samples, 0.01%)</title><rect x="10.3382%" y="773" width="0.0113%" height="15" fill="rgb(240,179,47)" fg:x="53798" fg:w="59"/><text x="10.5882%" y="783.50"></text></g><g><title>Parse::do_call (70 samples, 0.01%)</title><rect x="10.3866%" y="133" width="0.0135%" height="15" fill="rgb(240,163,11)" fg:x="54050" fg:w="70"/><text x="10.6366%" y="143.50"></text></g><g><title>Parse::do_one_block (127 samples, 0.02%)</title><rect x="10.3849%" y="165" width="0.0244%" height="15" fill="rgb(236,37,12)" fg:x="54041" fg:w="127"/><text x="10.6349%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (125 samples, 0.02%)</title><rect x="10.3853%" y="149" width="0.0240%" height="15" fill="rgb(232,164,16)" fg:x="54043" fg:w="125"/><text x="10.6353%" y="159.50"></text></g><g><title>Parse::do_all_blocks (129 samples, 0.02%)</title><rect x="10.3849%" y="181" width="0.0248%" height="15" fill="rgb(244,205,15)" fg:x="54041" fg:w="129"/><text x="10.6349%" y="191.50"></text></g><g><title>ParseGenerator::generate (151 samples, 0.03%)</title><rect x="10.3820%" y="213" width="0.0290%" height="15" fill="rgb(223,117,47)" fg:x="54026" fg:w="151"/><text x="10.6320%" y="223.50"></text></g><g><title>Parse::Parse (151 samples, 0.03%)</title><rect x="10.3820%" y="197" width="0.0290%" height="15" fill="rgb(244,107,35)" fg:x="54026" fg:w="151"/><text x="10.6320%" y="207.50"></text></g><g><title>Parse::do_call (214 samples, 0.04%)</title><rect x="10.3757%" y="229" width="0.0411%" height="15" fill="rgb(205,140,8)" fg:x="53993" fg:w="214"/><text x="10.6257%" y="239.50"></text></g><g><title>Parse::do_all_blocks (280 samples, 0.05%)</title><rect x="10.3737%" y="277" width="0.0538%" height="15" fill="rgb(228,84,46)" fg:x="53983" fg:w="280"/><text x="10.6237%" y="287.50"></text></g><g><title>Parse::do_one_block (280 samples, 0.05%)</title><rect x="10.3737%" y="261" width="0.0538%" height="15" fill="rgb(254,188,9)" fg:x="53983" fg:w="280"/><text x="10.6237%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (278 samples, 0.05%)</title><rect x="10.3741%" y="245" width="0.0534%" height="15" fill="rgb(206,112,54)" fg:x="53985" fg:w="278"/><text x="10.6241%" y="255.50"></text></g><g><title>ParseGenerator::generate (301 samples, 0.06%)</title><rect x="10.3712%" y="309" width="0.0578%" height="15" fill="rgb(216,84,49)" fg:x="53970" fg:w="301"/><text x="10.6212%" y="319.50"></text></g><g><title>Parse::Parse (300 samples, 0.06%)</title><rect x="10.3714%" y="293" width="0.0577%" height="15" fill="rgb(214,194,35)" fg:x="53971" fg:w="300"/><text x="10.6214%" y="303.50"></text></g><g><title>Parse::do_call (385 samples, 0.07%)</title><rect x="10.3622%" y="325" width="0.0740%" height="15" fill="rgb(249,28,3)" fg:x="53923" fg:w="385"/><text x="10.6122%" y="335.50"></text></g><g><title>Parse::do_all_blocks (452 samples, 0.09%)</title><rect x="10.3611%" y="373" width="0.0869%" height="15" fill="rgb(222,56,52)" fg:x="53917" fg:w="452"/><text x="10.6111%" y="383.50"></text></g><g><title>Parse::do_one_block (452 samples, 0.09%)</title><rect x="10.3611%" y="357" width="0.0869%" height="15" fill="rgb(245,217,50)" fg:x="53917" fg:w="452"/><text x="10.6111%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (452 samples, 0.09%)</title><rect x="10.3611%" y="341" width="0.0869%" height="15" fill="rgb(213,201,24)" fg:x="53917" fg:w="452"/><text x="10.6111%" y="351.50"></text></g><g><title>ParseGenerator::generate (459 samples, 0.09%)</title><rect x="10.3599%" y="405" width="0.0882%" height="15" fill="rgb(248,116,28)" fg:x="53911" fg:w="459"/><text x="10.6099%" y="415.50"></text></g><g><title>Parse::Parse (459 samples, 0.09%)</title><rect x="10.3599%" y="389" width="0.0882%" height="15" fill="rgb(219,72,43)" fg:x="53911" fg:w="459"/><text x="10.6099%" y="399.50"></text></g><g><title>PredictedCallGenerator::generate (60 samples, 0.01%)</title><rect x="10.4481%" y="405" width="0.0115%" height="15" fill="rgb(209,138,14)" fg:x="54370" fg:w="60"/><text x="10.6981%" y="415.50"></text></g><g><title>Parse::do_call (548 samples, 0.11%)</title><rect x="10.3547%" y="421" width="0.1053%" height="15" fill="rgb(222,18,33)" fg:x="53884" fg:w="548"/><text x="10.6047%" y="431.50"></text></g><g><title>ParseGenerator::generate (555 samples, 0.11%)</title><rect x="10.3545%" y="501" width="0.1067%" height="15" fill="rgb(213,199,7)" fg:x="53883" fg:w="555"/><text x="10.6045%" y="511.50"></text></g><g><title>Parse::Parse (555 samples, 0.11%)</title><rect x="10.3545%" y="485" width="0.1067%" height="15" fill="rgb(250,110,10)" fg:x="53883" fg:w="555"/><text x="10.6045%" y="495.50"></text></g><g><title>Parse::do_all_blocks (554 samples, 0.11%)</title><rect x="10.3547%" y="469" width="0.1065%" height="15" fill="rgb(248,123,6)" fg:x="53884" fg:w="554"/><text x="10.6047%" y="479.50"></text></g><g><title>Parse::do_one_block (554 samples, 0.11%)</title><rect x="10.3547%" y="453" width="0.1065%" height="15" fill="rgb(206,91,31)" fg:x="53884" fg:w="554"/><text x="10.6047%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (554 samples, 0.11%)</title><rect x="10.3547%" y="437" width="0.1065%" height="15" fill="rgb(211,154,13)" fg:x="53884" fg:w="554"/><text x="10.6047%" y="447.50"></text></g><g><title>Parse::do_call (63 samples, 0.01%)</title><rect x="10.4631%" y="309" width="0.0121%" height="15" fill="rgb(225,148,7)" fg:x="54448" fg:w="63"/><text x="10.7131%" y="319.50"></text></g><g><title>Parse::do_one_block (81 samples, 0.02%)</title><rect x="10.4625%" y="341" width="0.0156%" height="15" fill="rgb(220,160,43)" fg:x="54445" fg:w="81"/><text x="10.7125%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.02%)</title><rect x="10.4627%" y="325" width="0.0154%" height="15" fill="rgb(213,52,39)" fg:x="54446" fg:w="80"/><text x="10.7127%" y="335.50"></text></g><g><title>ParseGenerator::generate (83 samples, 0.02%)</title><rect x="10.4623%" y="389" width="0.0159%" height="15" fill="rgb(243,137,7)" fg:x="54444" fg:w="83"/><text x="10.7123%" y="399.50"></text></g><g><title>Parse::Parse (83 samples, 0.02%)</title><rect x="10.4623%" y="373" width="0.0159%" height="15" fill="rgb(230,79,13)" fg:x="54444" fg:w="83"/><text x="10.7123%" y="383.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.02%)</title><rect x="10.4625%" y="357" width="0.0158%" height="15" fill="rgb(247,105,23)" fg:x="54445" fg:w="82"/><text x="10.7125%" y="367.50"></text></g><g><title>Parse::do_call (93 samples, 0.02%)</title><rect x="10.4612%" y="405" width="0.0179%" height="15" fill="rgb(223,179,41)" fg:x="54438" fg:w="93"/><text x="10.7112%" y="415.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.02%)</title><rect x="10.4612%" y="485" width="0.0181%" height="15" fill="rgb(218,9,34)" fg:x="54438" fg:w="94"/><text x="10.7112%" y="495.50"></text></g><g><title>Parse::Parse (94 samples, 0.02%)</title><rect x="10.4612%" y="469" width="0.0181%" height="15" fill="rgb(222,106,8)" fg:x="54438" fg:w="94"/><text x="10.7112%" y="479.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.02%)</title><rect x="10.4612%" y="453" width="0.0181%" height="15" fill="rgb(211,220,0)" fg:x="54438" fg:w="94"/><text x="10.7112%" y="463.50"></text></g><g><title>Parse::do_one_block (94 samples, 0.02%)</title><rect x="10.4612%" y="437" width="0.0181%" height="15" fill="rgb(229,52,16)" fg:x="54438" fg:w="94"/><text x="10.7112%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (94 samples, 0.02%)</title><rect x="10.4612%" y="421" width="0.0181%" height="15" fill="rgb(212,155,18)" fg:x="54438" fg:w="94"/><text x="10.7112%" y="431.50"></text></g><g><title>Parse::do_call (678 samples, 0.13%)</title><rect x="10.3511%" y="517" width="0.1303%" height="15" fill="rgb(242,21,14)" fg:x="53865" fg:w="678"/><text x="10.6011%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (105 samples, 0.02%)</title><rect x="10.4612%" y="501" width="0.0202%" height="15" fill="rgb(222,19,48)" fg:x="54438" fg:w="105"/><text x="10.7112%" y="511.50"></text></g><g><title>ParseGenerator::generate (680 samples, 0.13%)</title><rect x="10.3509%" y="597" width="0.1307%" height="15" fill="rgb(232,45,27)" fg:x="53864" fg:w="680"/><text x="10.6009%" y="607.50"></text></g><g><title>Parse::Parse (680 samples, 0.13%)</title><rect x="10.3509%" y="581" width="0.1307%" height="15" fill="rgb(249,103,42)" fg:x="53864" fg:w="680"/><text x="10.6009%" y="591.50"></text></g><g><title>Parse::do_all_blocks (679 samples, 0.13%)</title><rect x="10.3511%" y="565" width="0.1305%" height="15" fill="rgb(246,81,33)" fg:x="53865" fg:w="679"/><text x="10.6011%" y="575.50"></text></g><g><title>Parse::do_one_block (679 samples, 0.13%)</title><rect x="10.3511%" y="549" width="0.1305%" height="15" fill="rgb(252,33,42)" fg:x="53865" fg:w="679"/><text x="10.6011%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (679 samples, 0.13%)</title><rect x="10.3511%" y="533" width="0.1305%" height="15" fill="rgb(209,212,41)" fg:x="53865" fg:w="679"/><text x="10.6011%" y="543.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.01%)</title><rect x="10.4837%" y="389" width="0.0125%" height="15" fill="rgb(207,154,6)" fg:x="54555" fg:w="65"/><text x="10.7337%" y="399.50"></text></g><g><title>Parse::Parse (65 samples, 0.01%)</title><rect x="10.4837%" y="373" width="0.0125%" height="15" fill="rgb(223,64,47)" fg:x="54555" fg:w="65"/><text x="10.7337%" y="383.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.01%)</title><rect x="10.4840%" y="357" width="0.0121%" height="15" fill="rgb(211,161,38)" fg:x="54557" fg:w="63"/><text x="10.7340%" y="367.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.01%)</title><rect x="10.4840%" y="341" width="0.0121%" height="15" fill="rgb(219,138,40)" fg:x="54557" fg:w="63"/><text x="10.7340%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.01%)</title><rect x="10.4840%" y="325" width="0.0121%" height="15" fill="rgb(241,228,46)" fg:x="54557" fg:w="63"/><text x="10.7340%" y="335.50"></text></g><g><title>Parse::do_call (98 samples, 0.02%)</title><rect x="10.4821%" y="405" width="0.0188%" height="15" fill="rgb(223,209,38)" fg:x="54547" fg:w="98"/><text x="10.7321%" y="415.50"></text></g><g><title>ParseGenerator::generate (103 samples, 0.02%)</title><rect x="10.4821%" y="485" width="0.0198%" height="15" fill="rgb(236,164,45)" fg:x="54547" fg:w="103"/><text x="10.7321%" y="495.50"></text></g><g><title>Parse::Parse (103 samples, 0.02%)</title><rect x="10.4821%" y="469" width="0.0198%" height="15" fill="rgb(231,15,5)" fg:x="54547" fg:w="103"/><text x="10.7321%" y="479.50"></text></g><g><title>Parse::do_all_blocks (103 samples, 0.02%)</title><rect x="10.4821%" y="453" width="0.0198%" height="15" fill="rgb(252,35,15)" fg:x="54547" fg:w="103"/><text x="10.7321%" y="463.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.02%)</title><rect x="10.4821%" y="437" width="0.0198%" height="15" fill="rgb(248,181,18)" fg:x="54547" fg:w="103"/><text x="10.7321%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.02%)</title><rect x="10.4821%" y="421" width="0.0198%" height="15" fill="rgb(233,39,42)" fg:x="54547" fg:w="103"/><text x="10.7321%" y="431.50"></text></g><g><title>ParseGenerator::generate (114 samples, 0.02%)</title><rect x="10.4816%" y="581" width="0.0219%" height="15" fill="rgb(238,110,33)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="591.50"></text></g><g><title>Parse::Parse (114 samples, 0.02%)</title><rect x="10.4816%" y="565" width="0.0219%" height="15" fill="rgb(233,195,10)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="575.50"></text></g><g><title>Parse::do_all_blocks (114 samples, 0.02%)</title><rect x="10.4816%" y="549" width="0.0219%" height="15" fill="rgb(254,105,3)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="559.50"></text></g><g><title>Parse::do_one_block (114 samples, 0.02%)</title><rect x="10.4816%" y="533" width="0.0219%" height="15" fill="rgb(221,225,9)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (114 samples, 0.02%)</title><rect x="10.4816%" y="517" width="0.0219%" height="15" fill="rgb(224,227,45)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="527.50"></text></g><g><title>Parse::do_call (114 samples, 0.02%)</title><rect x="10.4816%" y="501" width="0.0219%" height="15" fill="rgb(229,198,43)" fg:x="54544" fg:w="114"/><text x="10.7316%" y="511.50"></text></g><g><title>ParseGenerator::generate (820 samples, 0.16%)</title><rect x="10.3505%" y="693" width="0.1576%" height="15" fill="rgb(206,209,35)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="703.50"></text></g><g><title>Parse::Parse (820 samples, 0.16%)</title><rect x="10.3505%" y="677" width="0.1576%" height="15" fill="rgb(245,195,53)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="687.50"></text></g><g><title>Parse::do_all_blocks (820 samples, 0.16%)</title><rect x="10.3505%" y="661" width="0.1576%" height="15" fill="rgb(240,92,26)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="671.50"></text></g><g><title>Parse::do_one_block (820 samples, 0.16%)</title><rect x="10.3505%" y="645" width="0.1576%" height="15" fill="rgb(207,40,23)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (820 samples, 0.16%)</title><rect x="10.3505%" y="629" width="0.1576%" height="15" fill="rgb(223,111,35)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="639.50"></text></g><g><title>Parse::do_call (820 samples, 0.16%)</title><rect x="10.3505%" y="613" width="0.1576%" height="15" fill="rgb(229,147,28)" fg:x="53862" fg:w="820"/><text x="10.6005%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (138 samples, 0.03%)</title><rect x="10.4816%" y="597" width="0.0265%" height="15" fill="rgb(211,29,28)" fg:x="54544" fg:w="138"/><text x="10.7316%" y="607.50"></text></g><g><title>Parse::do_call (67 samples, 0.01%)</title><rect x="10.5150%" y="309" width="0.0129%" height="15" fill="rgb(228,72,33)" fg:x="54718" fg:w="67"/><text x="10.7650%" y="319.50"></text></g><g><title>ParseGenerator::generate (98 samples, 0.02%)</title><rect x="10.5129%" y="389" width="0.0188%" height="15" fill="rgb(205,214,31)" fg:x="54707" fg:w="98"/><text x="10.7629%" y="399.50"></text></g><g><title>Parse::Parse (98 samples, 0.02%)</title><rect x="10.5129%" y="373" width="0.0188%" height="15" fill="rgb(224,111,15)" fg:x="54707" fg:w="98"/><text x="10.7629%" y="383.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.02%)</title><rect x="10.5133%" y="357" width="0.0184%" height="15" fill="rgb(253,21,26)" fg:x="54709" fg:w="96"/><text x="10.7633%" y="367.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.02%)</title><rect x="10.5133%" y="341" width="0.0184%" height="15" fill="rgb(245,139,43)" fg:x="54709" fg:w="96"/><text x="10.7633%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.02%)</title><rect x="10.5133%" y="325" width="0.0184%" height="15" fill="rgb(252,170,7)" fg:x="54709" fg:w="96"/><text x="10.7633%" y="335.50"></text></g><g><title>Parse::do_call (135 samples, 0.03%)</title><rect x="10.5111%" y="405" width="0.0259%" height="15" fill="rgb(231,118,14)" fg:x="54698" fg:w="135"/><text x="10.7611%" y="415.50"></text></g><g><title>ParseGenerator::generate (143 samples, 0.03%)</title><rect x="10.5110%" y="485" width="0.0275%" height="15" fill="rgb(238,83,0)" fg:x="54697" fg:w="143"/><text x="10.7610%" y="495.50"></text></g><g><title>Parse::Parse (143 samples, 0.03%)</title><rect x="10.5110%" y="469" width="0.0275%" height="15" fill="rgb(221,39,39)" fg:x="54697" fg:w="143"/><text x="10.7610%" y="479.50"></text></g><g><title>Parse::do_all_blocks (142 samples, 0.03%)</title><rect x="10.5111%" y="453" width="0.0273%" height="15" fill="rgb(222,119,46)" fg:x="54698" fg:w="142"/><text x="10.7611%" y="463.50"></text></g><g><title>Parse::do_one_block (142 samples, 0.03%)</title><rect x="10.5111%" y="437" width="0.0273%" height="15" fill="rgb(222,165,49)" fg:x="54698" fg:w="142"/><text x="10.7611%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (142 samples, 0.03%)</title><rect x="10.5111%" y="421" width="0.0273%" height="15" fill="rgb(219,113,52)" fg:x="54698" fg:w="142"/><text x="10.7611%" y="431.50"></text></g><g><title>ParseGenerator::generate (160 samples, 0.03%)</title><rect x="10.5083%" y="581" width="0.0307%" height="15" fill="rgb(214,7,15)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="591.50"></text></g><g><title>Parse::Parse (160 samples, 0.03%)</title><rect x="10.5083%" y="565" width="0.0307%" height="15" fill="rgb(235,32,4)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="575.50"></text></g><g><title>Parse::do_all_blocks (160 samples, 0.03%)</title><rect x="10.5083%" y="549" width="0.0307%" height="15" fill="rgb(238,90,54)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="559.50"></text></g><g><title>Parse::do_one_block (160 samples, 0.03%)</title><rect x="10.5083%" y="533" width="0.0307%" height="15" fill="rgb(213,208,19)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (160 samples, 0.03%)</title><rect x="10.5083%" y="517" width="0.0307%" height="15" fill="rgb(233,156,4)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="527.50"></text></g><g><title>Parse::do_call (160 samples, 0.03%)</title><rect x="10.5083%" y="501" width="0.0307%" height="15" fill="rgb(207,194,5)" fg:x="54683" fg:w="160"/><text x="10.7583%" y="511.50"></text></g><g><title>ParseGenerator::generate (203 samples, 0.04%)</title><rect x="10.5081%" y="677" width="0.0390%" height="15" fill="rgb(206,111,30)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="687.50"></text></g><g><title>Parse::Parse (203 samples, 0.04%)</title><rect x="10.5081%" y="661" width="0.0390%" height="15" fill="rgb(243,70,54)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="671.50"></text></g><g><title>Parse::do_all_blocks (203 samples, 0.04%)</title><rect x="10.5081%" y="645" width="0.0390%" height="15" fill="rgb(242,28,8)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="655.50"></text></g><g><title>Parse::do_one_block (203 samples, 0.04%)</title><rect x="10.5081%" y="629" width="0.0390%" height="15" fill="rgb(219,106,18)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (203 samples, 0.04%)</title><rect x="10.5081%" y="613" width="0.0390%" height="15" fill="rgb(244,222,10)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="623.50"></text></g><g><title>Parse::do_call (203 samples, 0.04%)</title><rect x="10.5081%" y="597" width="0.0390%" height="15" fill="rgb(236,179,52)" fg:x="54682" fg:w="203"/><text x="10.7581%" y="607.50"></text></g><g><title>ParseGenerator::generate (1,065 samples, 0.20%)</title><rect x="10.3505%" y="789" width="0.2047%" height="15" fill="rgb(213,23,39)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="799.50"></text></g><g><title>Parse::Parse (1,065 samples, 0.20%)</title><rect x="10.3505%" y="773" width="0.2047%" height="15" fill="rgb(238,48,10)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,065 samples, 0.20%)</title><rect x="10.3505%" y="757" width="0.2047%" height="15" fill="rgb(251,196,23)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="767.50"></text></g><g><title>Parse::do_one_block (1,065 samples, 0.20%)</title><rect x="10.3505%" y="741" width="0.2047%" height="15" fill="rgb(250,152,24)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (1,065 samples, 0.20%)</title><rect x="10.3505%" y="725" width="0.2047%" height="15" fill="rgb(209,150,17)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="735.50"></text></g><g><title>Parse::do_call (1,065 samples, 0.20%)</title><rect x="10.3505%" y="709" width="0.2047%" height="15" fill="rgb(234,202,34)" fg:x="53862" fg:w="1065"/><text x="10.6005%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (245 samples, 0.05%)</title><rect x="10.5081%" y="693" width="0.0471%" height="15" fill="rgb(253,148,53)" fg:x="54682" fg:w="245"/><text x="10.7581%" y="703.50"></text></g><g><title>Compile::Compile (38,362 samples, 7.37%)</title><rect x="3.1834%" y="805" width="7.3719%" height="15" fill="rgb(218,129,16)" fg:x="16566" fg:w="38362"/><text x="3.4334%" y="815.50">Compile::C..</text></g><g><title>Compile::final_graph_reshaping_impl (99 samples, 0.02%)</title><rect x="10.5836%" y="757" width="0.0190%" height="15" fill="rgb(216,85,19)" fg:x="55075" fg:w="99"/><text x="10.8336%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping (267 samples, 0.05%)</title><rect x="10.5557%" y="789" width="0.0513%" height="15" fill="rgb(235,228,7)" fg:x="54930" fg:w="267"/><text x="10.8057%" y="799.50"></text></g><g><title>Compile::final_graph_reshaping_walk (260 samples, 0.05%)</title><rect x="10.5571%" y="773" width="0.0500%" height="15" fill="rgb(245,175,0)" fg:x="54937" fg:w="260"/><text x="10.8071%" y="783.50"></text></g><g><title>Compile::inline_incrementally_one (88 samples, 0.02%)</title><rect x="10.6070%" y="773" width="0.0169%" height="15" fill="rgb(208,168,36)" fg:x="55197" fg:w="88"/><text x="10.8570%" y="783.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (76 samples, 0.01%)</title><rect x="10.6093%" y="757" width="0.0146%" height="15" fill="rgb(246,171,24)" fg:x="55209" fg:w="76"/><text x="10.8593%" y="767.50"></text></g><g><title>Compile::inline_incrementally (89 samples, 0.02%)</title><rect x="10.6070%" y="789" width="0.0171%" height="15" fill="rgb(215,142,24)" fg:x="55197" fg:w="89"/><text x="10.8570%" y="799.50"></text></g><g><title>Compile::remove_speculative_types (218 samples, 0.04%)</title><rect x="10.6263%" y="789" width="0.0419%" height="15" fill="rgb(250,187,7)" fg:x="55297" fg:w="218"/><text x="10.8763%" y="799.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (92 samples, 0.02%)</title><rect x="10.6962%" y="757" width="0.0177%" height="15" fill="rgb(228,66,33)" fg:x="55661" fg:w="92"/><text x="10.9462%" y="767.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (87 samples, 0.02%)</title><rect x="10.7143%" y="757" width="0.0167%" height="15" fill="rgb(234,215,21)" fg:x="55755" fg:w="87"/><text x="10.9643%" y="767.50"></text></g><g><title>ConnectionGraph::find_inst_mem (59 samples, 0.01%)</title><rect x="10.7358%" y="741" width="0.0113%" height="15" fill="rgb(222,191,20)" fg:x="55867" fg:w="59"/><text x="10.9858%" y="751.50"></text></g><g><title>ConnectionGraph::split_unique_types (86 samples, 0.02%)</title><rect x="10.7339%" y="757" width="0.0165%" height="15" fill="rgb(245,79,54)" fg:x="55857" fg:w="86"/><text x="10.9839%" y="767.50"></text></g><g><title>ConnectionGraph::compute_escape (432 samples, 0.08%)</title><rect x="10.6683%" y="773" width="0.0830%" height="15" fill="rgb(240,10,37)" fg:x="55516" fg:w="432"/><text x="10.9183%" y="783.50"></text></g><g><title>ConnectionGraph::do_analysis (434 samples, 0.08%)</title><rect x="10.6681%" y="789" width="0.0834%" height="15" fill="rgb(214,192,32)" fg:x="55515" fg:w="434"/><text x="10.9181%" y="799.50"></text></g><g><title>PhaseCCP::analyze (670 samples, 0.13%)</title><rect x="10.7517%" y="789" width="0.1288%" height="15" fill="rgb(209,36,54)" fg:x="55950" fg:w="670"/><text x="11.0017%" y="799.50"></text></g><g><title>PhaseCCP::transform_once (106 samples, 0.02%)</title><rect x="10.8989%" y="757" width="0.0204%" height="15" fill="rgb(220,10,11)" fg:x="56716" fg:w="106"/><text x="11.1489%" y="767.50"></text></g><g><title>PhaseCCP::do_transform (203 samples, 0.04%)</title><rect x="10.8805%" y="789" width="0.0390%" height="15" fill="rgb(221,106,17)" fg:x="56620" fg:w="203"/><text x="11.1305%" y="799.50"></text></g><g><title>PhaseCCP::transform (203 samples, 0.04%)</title><rect x="10.8805%" y="773" width="0.0390%" height="15" fill="rgb(251,142,44)" fg:x="56620" fg:w="203"/><text x="11.1305%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (53 samples, 0.01%)</title><rect x="10.9429%" y="693" width="0.0102%" height="15" fill="rgb(238,13,15)" fg:x="56945" fg:w="53"/><text x="11.1929%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (64 samples, 0.01%)</title><rect x="10.9424%" y="709" width="0.0123%" height="15" fill="rgb(208,107,27)" fg:x="56942" fg:w="64"/><text x="11.1924%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (86 samples, 0.02%)</title><rect x="10.9424%" y="725" width="0.0165%" height="15" fill="rgb(205,136,37)" fg:x="56942" fg:w="86"/><text x="11.1924%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (135 samples, 0.03%)</title><rect x="10.9424%" y="741" width="0.0259%" height="15" fill="rgb(250,205,27)" fg:x="56942" fg:w="135"/><text x="11.1924%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (176 samples, 0.03%)</title><rect x="10.9416%" y="757" width="0.0338%" height="15" fill="rgb(210,80,43)" fg:x="56938" fg:w="176"/><text x="11.1916%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (194 samples, 0.04%)</title><rect x="10.9406%" y="773" width="0.0373%" height="15" fill="rgb(247,160,36)" fg:x="56933" fg:w="194"/><text x="11.1906%" y="783.50"></text></g><g><title>IdealLoopTree::loop_predication (54 samples, 0.01%)</title><rect x="10.9783%" y="757" width="0.0104%" height="15" fill="rgb(234,13,49)" fg:x="57129" fg:w="54"/><text x="11.2283%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (188 samples, 0.04%)</title><rect x="10.9779%" y="773" width="0.0361%" height="15" fill="rgb(234,122,0)" fg:x="57127" fg:w="188"/><text x="11.2279%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (132 samples, 0.03%)</title><rect x="10.9887%" y="757" width="0.0254%" height="15" fill="rgb(207,146,38)" fg:x="57183" fg:w="132"/><text x="11.2387%" y="767.50"></text></g><g><title>NTarjan::DFS (277 samples, 0.05%)</title><rect x="11.1489%" y="757" width="0.0532%" height="15" fill="rgb(207,177,25)" fg:x="58017" fg:w="277"/><text x="11.3989%" y="767.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,002 samples, 0.19%)</title><rect x="11.0219%" y="773" width="0.1926%" height="15" fill="rgb(211,178,42)" fg:x="57356" fg:w="1002"/><text x="11.2719%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (144 samples, 0.03%)</title><rect x="11.4443%" y="725" width="0.0277%" height="15" fill="rgb(230,69,54)" fg:x="59554" fg:w="144"/><text x="11.6943%" y="735.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (369 samples, 0.07%)</title><rect x="11.4015%" y="757" width="0.0709%" height="15" fill="rgb(214,135,41)" fg:x="59331" fg:w="369"/><text x="11.6515%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (326 samples, 0.06%)</title><rect x="11.4097%" y="741" width="0.0626%" height="15" fill="rgb(237,67,25)" fg:x="59374" fg:w="326"/><text x="11.6597%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,412 samples, 0.27%)</title><rect x="11.2145%" y="773" width="0.2713%" height="15" fill="rgb(222,189,50)" fg:x="58358" fg:w="1412"/><text x="11.4645%" y="783.50"></text></g><g><title>Node::unique_ctrl_out (62 samples, 0.01%)</title><rect x="11.7985%" y="741" width="0.0119%" height="15" fill="rgb(245,148,34)" fg:x="61397" fg:w="62"/><text x="12.0485%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (54 samples, 0.01%)</title><rect x="11.8104%" y="741" width="0.0104%" height="15" fill="rgb(222,29,6)" fg:x="61459" fg:w="54"/><text x="12.0604%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (59 samples, 0.01%)</title><rect x="11.9059%" y="693" width="0.0113%" height="15" fill="rgb(221,189,43)" fg:x="61956" fg:w="59"/><text x="12.1559%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (213 samples, 0.04%)</title><rect x="11.8944%" y="709" width="0.0409%" height="15" fill="rgb(207,36,27)" fg:x="61896" fg:w="213"/><text x="12.1444%" y="719.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (94 samples, 0.02%)</title><rect x="11.9172%" y="693" width="0.0181%" height="15" fill="rgb(217,90,24)" fg:x="62015" fg:w="94"/><text x="12.1672%" y="703.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (324 samples, 0.06%)</title><rect x="11.8792%" y="725" width="0.0623%" height="15" fill="rgb(224,66,35)" fg:x="61817" fg:w="324"/><text x="12.1292%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (116 samples, 0.02%)</title><rect x="11.9418%" y="725" width="0.0223%" height="15" fill="rgb(221,13,50)" fg:x="62143" fg:w="116"/><text x="12.1918%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (338 samples, 0.06%)</title><rect x="12.1480%" y="709" width="0.0650%" height="15" fill="rgb(236,68,49)" fg:x="63216" fg:w="338"/><text x="12.3980%" y="719.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,278 samples, 0.25%)</title><rect x="11.9680%" y="725" width="0.2456%" height="15" fill="rgb(229,146,28)" fg:x="62279" fg:w="1278"/><text x="12.2180%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,060 samples, 0.40%)</title><rect x="11.8208%" y="741" width="0.3959%" height="15" fill="rgb(225,31,38)" fg:x="61513" fg:w="2060"/><text x="12.0708%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (2,807 samples, 0.54%)</title><rect x="11.6916%" y="757" width="0.5394%" height="15" fill="rgb(250,208,3)" fg:x="60841" fg:w="2807"/><text x="11.9416%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (3,896 samples, 0.75%)</title><rect x="11.4858%" y="773" width="0.7487%" height="15" fill="rgb(246,54,23)" fg:x="59770" fg:w="3896"/><text x="11.7358%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (185 samples, 0.04%)</title><rect x="12.3346%" y="757" width="0.0356%" height="15" fill="rgb(243,76,11)" fg:x="64187" fg:w="185"/><text x="12.5846%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (714 samples, 0.14%)</title><rect x="12.2353%" y="773" width="0.1372%" height="15" fill="rgb(245,21,50)" fg:x="63670" fg:w="714"/><text x="12.4853%" y="783.50"></text></g><g><title>PhaseIdealLoop::do_split_if (88 samples, 0.02%)</title><rect x="12.4559%" y="757" width="0.0169%" height="15" fill="rgb(228,9,43)" fg:x="64818" fg:w="88"/><text x="12.7059%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (219 samples, 0.04%)</title><rect x="12.4737%" y="757" width="0.0421%" height="15" fill="rgb(208,100,47)" fg:x="64911" fg:w="219"/><text x="12.7237%" y="767.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (74 samples, 0.01%)</title><rect x="12.5598%" y="741" width="0.0142%" height="15" fill="rgb(232,26,8)" fg:x="65359" fg:w="74"/><text x="12.8098%" y="751.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (135 samples, 0.03%)</title><rect x="12.5748%" y="741" width="0.0259%" height="15" fill="rgb(216,166,38)" fg:x="65437" fg:w="135"/><text x="12.8248%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (136 samples, 0.03%)</title><rect x="12.6008%" y="741" width="0.0261%" height="15" fill="rgb(251,202,51)" fg:x="65572" fg:w="136"/><text x="12.8508%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (614 samples, 0.12%)</title><rect x="12.5158%" y="757" width="0.1180%" height="15" fill="rgb(254,216,34)" fg:x="65130" fg:w="614"/><text x="12.7658%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,323 samples, 0.25%)</title><rect x="12.3800%" y="773" width="0.2542%" height="15" fill="rgb(251,32,27)" fg:x="64423" fg:w="1323"/><text x="12.6300%" y="783.50"></text></g><g><title>LoadNode::Ideal (76 samples, 0.01%)</title><rect x="12.7093%" y="741" width="0.0146%" height="15" fill="rgb(208,127,28)" fg:x="66137" fg:w="76"/><text x="12.9593%" y="751.50"></text></g><g><title>NodeHash::hash_find_insert (101 samples, 0.02%)</title><rect x="12.7357%" y="741" width="0.0194%" height="15" fill="rgb(224,137,22)" fg:x="66274" fg:w="101"/><text x="12.9857%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (92 samples, 0.02%)</title><rect x="12.7653%" y="741" width="0.0177%" height="15" fill="rgb(254,70,32)" fg:x="66428" fg:w="92"/><text x="13.0153%" y="751.50"></text></g><g><title>PhiNode::Ideal (54 samples, 0.01%)</title><rect x="12.7831%" y="741" width="0.0104%" height="15" fill="rgb(229,75,37)" fg:x="66521" fg:w="54"/><text x="13.0331%" y="751.50"></text></g><g><title>RegionNode::Ideal (168 samples, 0.03%)</title><rect x="12.8035%" y="741" width="0.0323%" height="15" fill="rgb(252,64,23)" fg:x="66627" fg:w="168"/><text x="13.0535%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (81 samples, 0.02%)</title><rect x="12.8202%" y="725" width="0.0156%" height="15" fill="rgb(232,162,48)" fg:x="66714" fg:w="81"/><text x="13.0702%" y="735.50"></text></g><g><title>PhaseIterGVN::transform_old (1,106 samples, 0.21%)</title><rect x="12.6407%" y="757" width="0.2125%" height="15" fill="rgb(246,160,12)" fg:x="65780" fg:w="1106"/><text x="12.8907%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (1,143 samples, 0.22%)</title><rect x="12.6344%" y="773" width="0.2196%" height="15" fill="rgb(247,166,0)" fg:x="65747" fg:w="1143"/><text x="12.8844%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (10,143 samples, 1.95%)</title><rect x="10.9228%" y="789" width="1.9491%" height="15" fill="rgb(249,219,21)" fg:x="56840" fg:w="10143"/><text x="11.1728%" y="799.50">P..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (108 samples, 0.02%)</title><rect x="12.8719%" y="789" width="0.0208%" height="15" fill="rgb(205,209,3)" fg:x="66983" fg:w="108"/><text x="13.1219%" y="799.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (58 samples, 0.01%)</title><rect x="12.8815%" y="773" width="0.0111%" height="15" fill="rgb(243,44,1)" fg:x="67033" fg:w="58"/><text x="13.1315%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (75 samples, 0.01%)</title><rect x="12.9832%" y="725" width="0.0144%" height="15" fill="rgb(206,159,16)" fg:x="67562" fg:w="75"/><text x="13.2332%" y="735.50"></text></g><g><title>Unique_Node_List::remove (65 samples, 0.01%)</title><rect x="12.9851%" y="709" width="0.0125%" height="15" fill="rgb(244,77,30)" fg:x="67572" fg:w="65"/><text x="13.2351%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (92 samples, 0.02%)</title><rect x="12.9805%" y="741" width="0.0177%" height="15" fill="rgb(218,69,12)" fg:x="67548" fg:w="92"/><text x="13.2305%" y="751.50"></text></g><g><title>IfNode::Ideal (298 samples, 0.06%)</title><rect x="12.9565%" y="757" width="0.0573%" height="15" fill="rgb(212,87,7)" fg:x="67423" fg:w="298"/><text x="13.2065%" y="767.50"></text></g><g><title>split_if (74 samples, 0.01%)</title><rect x="12.9995%" y="741" width="0.0142%" height="15" fill="rgb(245,114,25)" fg:x="67647" fg:w="74"/><text x="13.2495%" y="751.50"></text></g><g><title>MemNode::find_previous_store (61 samples, 0.01%)</title><rect x="13.0378%" y="741" width="0.0117%" height="15" fill="rgb(210,61,42)" fg:x="67846" fg:w="61"/><text x="13.2878%" y="751.50"></text></g><g><title>LoadNode::Ideal (152 samples, 0.03%)</title><rect x="13.0205%" y="757" width="0.0292%" height="15" fill="rgb(211,52,33)" fg:x="67756" fg:w="152"/><text x="13.2705%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (157 samples, 0.03%)</title><rect x="13.0710%" y="757" width="0.0302%" height="15" fill="rgb(234,58,33)" fg:x="68019" fg:w="157"/><text x="13.3210%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (60 samples, 0.01%)</title><rect x="13.1267%" y="741" width="0.0115%" height="15" fill="rgb(220,115,36)" fg:x="68309" fg:w="60"/><text x="13.3767%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (170 samples, 0.03%)</title><rect x="13.1108%" y="757" width="0.0327%" height="15" fill="rgb(243,153,54)" fg:x="68226" fg:w="170"/><text x="13.3608%" y="767.50"></text></g><g><title>PhiNode::Ideal (103 samples, 0.02%)</title><rect x="13.1436%" y="757" width="0.0198%" height="15" fill="rgb(251,47,18)" fg:x="68397" fg:w="103"/><text x="13.3936%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (99 samples, 0.02%)</title><rect x="13.1974%" y="725" width="0.0190%" height="15" fill="rgb(242,102,42)" fg:x="68677" fg:w="99"/><text x="13.4474%" y="735.50"></text></g><g><title>Unique_Node_List::remove (86 samples, 0.02%)</title><rect x="13.1999%" y="709" width="0.0165%" height="15" fill="rgb(234,31,38)" fg:x="68690" fg:w="86"/><text x="13.4499%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (120 samples, 0.02%)</title><rect x="13.1946%" y="741" width="0.0231%" height="15" fill="rgb(221,117,51)" fg:x="68662" fg:w="120"/><text x="13.4446%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (81 samples, 0.02%)</title><rect x="13.2232%" y="741" width="0.0156%" height="15" fill="rgb(212,20,18)" fg:x="68811" fg:w="81"/><text x="13.4732%" y="751.50"></text></g><g><title>RegionNode::Ideal (308 samples, 0.06%)</title><rect x="13.1807%" y="757" width="0.0592%" height="15" fill="rgb(245,133,36)" fg:x="68590" fg:w="308"/><text x="13.4307%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (61 samples, 0.01%)</title><rect x="13.2430%" y="517" width="0.0117%" height="15" fill="rgb(212,6,19)" fg:x="68914" fg:w="61"/><text x="13.4930%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (68 samples, 0.01%)</title><rect x="13.2430%" y="533" width="0.0131%" height="15" fill="rgb(218,1,36)" fg:x="68914" fg:w="68"/><text x="13.4930%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (73 samples, 0.01%)</title><rect x="13.2430%" y="549" width="0.0140%" height="15" fill="rgb(246,84,54)" fg:x="68914" fg:w="73"/><text x="13.4930%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (82 samples, 0.02%)</title><rect x="13.2430%" y="565" width="0.0158%" height="15" fill="rgb(242,110,6)" fg:x="68914" fg:w="82"/><text x="13.4930%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (91 samples, 0.02%)</title><rect x="13.2430%" y="581" width="0.0175%" height="15" fill="rgb(214,47,5)" fg:x="68914" fg:w="91"/><text x="13.4930%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (100 samples, 0.02%)</title><rect x="13.2430%" y="597" width="0.0192%" height="15" fill="rgb(218,159,25)" fg:x="68914" fg:w="100"/><text x="13.4930%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (110 samples, 0.02%)</title><rect x="13.2430%" y="613" width="0.0211%" height="15" fill="rgb(215,211,28)" fg:x="68914" fg:w="110"/><text x="13.4930%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (119 samples, 0.02%)</title><rect x="13.2430%" y="629" width="0.0229%" height="15" fill="rgb(238,59,32)" fg:x="68914" fg:w="119"/><text x="13.4930%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (130 samples, 0.02%)</title><rect x="13.2428%" y="645" width="0.0250%" height="15" fill="rgb(226,82,3)" fg:x="68913" fg:w="130"/><text x="13.4928%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (141 samples, 0.03%)</title><rect x="13.2428%" y="661" width="0.0271%" height="15" fill="rgb(240,164,32)" fg:x="68913" fg:w="141"/><text x="13.4928%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (150 samples, 0.03%)</title><rect x="13.2428%" y="677" width="0.0288%" height="15" fill="rgb(232,46,7)" fg:x="68913" fg:w="150"/><text x="13.4928%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (159 samples, 0.03%)</title><rect x="13.2428%" y="693" width="0.0306%" height="15" fill="rgb(229,129,53)" fg:x="68913" fg:w="159"/><text x="13.4928%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (175 samples, 0.03%)</title><rect x="13.2428%" y="709" width="0.0336%" height="15" fill="rgb(234,188,29)" fg:x="68913" fg:w="175"/><text x="13.4928%" y="719.50"></text></g><g><title>InitializeNode::can_capture_store (178 samples, 0.03%)</title><rect x="13.2428%" y="741" width="0.0342%" height="15" fill="rgb(246,141,4)" fg:x="68913" fg:w="178"/><text x="13.4928%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (178 samples, 0.03%)</title><rect x="13.2428%" y="725" width="0.0342%" height="15" fill="rgb(229,23,39)" fg:x="68913" fg:w="178"/><text x="13.4928%" y="735.50"></text></g><g><title>StoreNode::Ideal (207 samples, 0.04%)</title><rect x="13.2426%" y="757" width="0.0398%" height="15" fill="rgb(206,12,3)" fg:x="68912" fg:w="207"/><text x="13.4926%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (1,997 samples, 0.38%)</title><rect x="12.9071%" y="773" width="0.3838%" height="15" fill="rgb(252,226,20)" fg:x="67166" fg:w="1997"/><text x="13.1571%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (2,087 samples, 0.40%)</title><rect x="12.8927%" y="789" width="0.4011%" height="15" fill="rgb(216,123,35)" fg:x="67091" fg:w="2087"/><text x="13.1427%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (221 samples, 0.04%)</title><rect x="13.3008%" y="757" width="0.0425%" height="15" fill="rgb(212,68,40)" fg:x="69215" fg:w="221"/><text x="13.5508%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (233 samples, 0.04%)</title><rect x="13.2989%" y="773" width="0.0448%" height="15" fill="rgb(254,125,32)" fg:x="69205" fg:w="233"/><text x="13.5489%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (75 samples, 0.01%)</title><rect x="13.3450%" y="773" width="0.0144%" height="15" fill="rgb(253,97,22)" fg:x="69445" fg:w="75"/><text x="13.5950%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (348 samples, 0.07%)</title><rect x="13.2983%" y="789" width="0.0669%" height="15" fill="rgb(241,101,14)" fg:x="69202" fg:w="348"/><text x="13.5483%" y="799.50"></text></g><g><title>Compile::identify_useful_nodes (64 samples, 0.01%)</title><rect x="13.3692%" y="757" width="0.0123%" height="15" fill="rgb(238,103,29)" fg:x="69571" fg:w="64"/><text x="13.6192%" y="767.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (135 samples, 0.03%)</title><rect x="13.3669%" y="773" width="0.0259%" height="15" fill="rgb(233,195,47)" fg:x="69559" fg:w="135"/><text x="13.6169%" y="783.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (146 samples, 0.03%)</title><rect x="13.3652%" y="789" width="0.0281%" height="15" fill="rgb(246,218,30)" fg:x="69550" fg:w="146"/><text x="13.6152%" y="799.50"></text></g><g><title>Compile::Optimize (14,777 samples, 2.84%)</title><rect x="10.5553%" y="805" width="2.8397%" height="15" fill="rgb(219,145,47)" fg:x="54928" fg:w="14777"/><text x="10.8053%" y="815.50">Co..</text></g><g><title>Parse::do_one_block (134 samples, 0.03%)</title><rect x="13.3985%" y="693" width="0.0258%" height="15" fill="rgb(243,12,26)" fg:x="69723" fg:w="134"/><text x="13.6485%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (123 samples, 0.02%)</title><rect x="13.4006%" y="677" width="0.0236%" height="15" fill="rgb(214,87,16)" fg:x="69734" fg:w="123"/><text x="13.6506%" y="687.50"></text></g><g><title>Parse::do_all_blocks (139 samples, 0.03%)</title><rect x="13.3985%" y="709" width="0.0267%" height="15" fill="rgb(208,99,42)" fg:x="69723" fg:w="139"/><text x="13.6485%" y="719.50"></text></g><g><title>ParseGenerator::generate (141 samples, 0.03%)</title><rect x="13.3985%" y="741" width="0.0271%" height="15" fill="rgb(253,99,2)" fg:x="69723" fg:w="141"/><text x="13.6485%" y="751.50"></text></g><g><title>Parse::Parse (141 samples, 0.03%)</title><rect x="13.3985%" y="725" width="0.0271%" height="15" fill="rgb(220,168,23)" fg:x="69723" fg:w="141"/><text x="13.6485%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (167 samples, 0.03%)</title><rect x="13.3963%" y="805" width="0.0321%" height="15" fill="rgb(242,38,24)" fg:x="69712" fg:w="167"/><text x="13.6463%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (167 samples, 0.03%)</title><rect x="13.3963%" y="789" width="0.0321%" height="15" fill="rgb(225,182,9)" fg:x="69712" fg:w="167"/><text x="13.6463%" y="799.50"></text></g><g><title>C2Compiler::compile_method (167 samples, 0.03%)</title><rect x="13.3963%" y="773" width="0.0321%" height="15" fill="rgb(243,178,37)" fg:x="69712" fg:w="167"/><text x="13.6463%" y="783.50"></text></g><g><title>Compile::Compile (167 samples, 0.03%)</title><rect x="13.3963%" y="757" width="0.0321%" height="15" fill="rgb(232,139,19)" fg:x="69712" fg:w="167"/><text x="13.6463%" y="767.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (53 samples, 0.01%)</title><rect x="13.4348%" y="629" width="0.0102%" height="15" fill="rgb(225,201,24)" fg:x="69912" fg:w="53"/><text x="13.6848%" y="639.50"></text></g><g><title>ciBytecodeStream::get_method (53 samples, 0.01%)</title><rect x="13.4348%" y="613" width="0.0102%" height="15" fill="rgb(221,47,46)" fg:x="69912" fg:w="53"/><text x="13.6848%" y="623.50"></text></g><g><title>ciTypeFlow::df_flow_types (89 samples, 0.02%)</title><rect x="13.4284%" y="677" width="0.0171%" height="15" fill="rgb(249,23,13)" fg:x="69879" fg:w="89"/><text x="13.6784%" y="687.50"></text></g><g><title>ciTypeFlow::flow_block (89 samples, 0.02%)</title><rect x="13.4284%" y="661" width="0.0171%" height="15" fill="rgb(219,9,5)" fg:x="69879" fg:w="89"/><text x="13.6784%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (89 samples, 0.02%)</title><rect x="13.4284%" y="645" width="0.0171%" height="15" fill="rgb(254,171,16)" fg:x="69879" fg:w="89"/><text x="13.6784%" y="655.50"></text></g><g><title>CallGenerator::for_inline (92 samples, 0.02%)</title><rect x="13.4284%" y="757" width="0.0177%" height="15" fill="rgb(230,171,20)" fg:x="69879" fg:w="92"/><text x="13.6784%" y="767.50"></text></g><g><title>InlineTree::check_can_parse (92 samples, 0.02%)</title><rect x="13.4284%" y="741" width="0.0177%" height="15" fill="rgb(210,71,41)" fg:x="69879" fg:w="92"/><text x="13.6784%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (92 samples, 0.02%)</title><rect x="13.4284%" y="725" width="0.0177%" height="15" fill="rgb(206,173,20)" fg:x="69879" fg:w="92"/><text x="13.6784%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (92 samples, 0.02%)</title><rect x="13.4284%" y="709" width="0.0177%" height="15" fill="rgb(233,88,34)" fg:x="69879" fg:w="92"/><text x="13.6784%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (92 samples, 0.02%)</title><rect x="13.4284%" y="693" width="0.0177%" height="15" fill="rgb(223,209,46)" fg:x="69879" fg:w="92"/><text x="13.6784%" y="703.50"></text></g><g><title>Compile::call_generator (55 samples, 0.01%)</title><rect x="13.4536%" y="661" width="0.0106%" height="15" fill="rgb(250,43,18)" fg:x="70010" fg:w="55"/><text x="13.7036%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (99 samples, 0.02%)</title><rect x="13.4859%" y="597" width="0.0190%" height="15" fill="rgb(208,13,10)" fg:x="70178" fg:w="99"/><text x="13.7359%" y="607.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.02%)</title><rect x="13.4840%" y="613" width="0.0211%" height="15" fill="rgb(212,200,36)" fg:x="70168" fg:w="110"/><text x="13.7340%" y="623.50"></text></g><g><title>Parse::do_all_blocks (119 samples, 0.02%)</title><rect x="13.4834%" y="629" width="0.0229%" height="15" fill="rgb(225,90,30)" fg:x="70165" fg:w="119"/><text x="13.7334%" y="639.50"></text></g><g><title>ParseGenerator::generate (178 samples, 0.03%)</title><rect x="13.4770%" y="661" width="0.0342%" height="15" fill="rgb(236,182,39)" fg:x="70132" fg:w="178"/><text x="13.7270%" y="671.50"></text></g><g><title>Parse::Parse (177 samples, 0.03%)</title><rect x="13.4772%" y="645" width="0.0340%" height="15" fill="rgb(212,144,35)" fg:x="70133" fg:w="177"/><text x="13.7272%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (61 samples, 0.01%)</title><rect x="13.5113%" y="661" width="0.0117%" height="15" fill="rgb(228,63,44)" fg:x="70310" fg:w="61"/><text x="13.7613%" y="671.50"></text></g><g><title>Parse::do_call (389 samples, 0.07%)</title><rect x="13.4536%" y="677" width="0.0748%" height="15" fill="rgb(228,109,6)" fg:x="70010" fg:w="389"/><text x="13.7036%" y="687.50"></text></g><g><title>Parse::do_field_access (88 samples, 0.02%)</title><rect x="13.5305%" y="677" width="0.0169%" height="15" fill="rgb(238,117,24)" fg:x="70410" fg:w="88"/><text x="13.7805%" y="687.50"></text></g><g><title>Parse::do_one_block (569 samples, 0.11%)</title><rect x="13.4476%" y="709" width="0.1093%" height="15" fill="rgb(242,26,26)" fg:x="69979" fg:w="569"/><text x="13.6976%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (564 samples, 0.11%)</title><rect x="13.4486%" y="693" width="0.1084%" height="15" fill="rgb(221,92,48)" fg:x="69984" fg:w="564"/><text x="13.6986%" y="703.50"></text></g><g><title>Parse::do_all_blocks (572 samples, 0.11%)</title><rect x="13.4475%" y="725" width="0.1099%" height="15" fill="rgb(209,209,32)" fg:x="69978" fg:w="572"/><text x="13.6975%" y="735.50"></text></g><g><title>ParseGenerator::generate (580 samples, 0.11%)</title><rect x="13.4475%" y="757" width="0.1115%" height="15" fill="rgb(221,70,22)" fg:x="69978" fg:w="580"/><text x="13.6975%" y="767.50"></text></g><g><title>Parse::Parse (580 samples, 0.11%)</title><rect x="13.4475%" y="741" width="0.1115%" height="15" fill="rgb(248,145,5)" fg:x="69978" fg:w="580"/><text x="13.6975%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (704 samples, 0.14%)</title><rect x="13.4284%" y="805" width="0.1353%" height="15" fill="rgb(226,116,26)" fg:x="69879" fg:w="704"/><text x="13.6784%" y="815.50"></text></g><g><title>C2Compiler::compile_method (704 samples, 0.14%)</title><rect x="13.4284%" y="789" width="0.1353%" height="15" fill="rgb(244,5,17)" fg:x="69879" fg:w="704"/><text x="13.6784%" y="799.50"></text></g><g><title>Compile::Compile (704 samples, 0.14%)</title><rect x="13.4284%" y="773" width="0.1353%" height="15" fill="rgb(252,159,33)" fg:x="69879" fg:w="704"/><text x="13.6784%" y="783.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.01%)</title><rect x="13.5739%" y="677" width="0.0104%" height="15" fill="rgb(206,71,0)" fg:x="70636" fg:w="54"/><text x="13.8239%" y="687.50"></text></g><g><title>Parse::do_all_blocks (62 samples, 0.01%)</title><rect x="13.5735%" y="693" width="0.0119%" height="15" fill="rgb(233,118,54)" fg:x="70634" fg:w="62"/><text x="13.8235%" y="703.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.01%)</title><rect x="13.5731%" y="725" width="0.0136%" height="15" fill="rgb(234,83,48)" fg:x="70632" fg:w="71"/><text x="13.8231%" y="735.50"></text></g><g><title>Parse::Parse (71 samples, 0.01%)</title><rect x="13.5731%" y="709" width="0.0136%" height="15" fill="rgb(228,3,54)" fg:x="70632" fg:w="71"/><text x="13.8231%" y="719.50"></text></g><g><title>JavaThread::thread_main_inner (95 samples, 0.02%)</title><rect x="13.5706%" y="805" width="0.0183%" height="15" fill="rgb(226,155,13)" fg:x="70619" fg:w="95"/><text x="13.8206%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (95 samples, 0.02%)</title><rect x="13.5706%" y="789" width="0.0183%" height="15" fill="rgb(241,28,37)" fg:x="70619" fg:w="95"/><text x="13.8206%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (95 samples, 0.02%)</title><rect x="13.5706%" y="773" width="0.0183%" height="15" fill="rgb(233,93,10)" fg:x="70619" fg:w="95"/><text x="13.8206%" y="783.50"></text></g><g><title>C2Compiler::compile_method (95 samples, 0.02%)</title><rect x="13.5706%" y="757" width="0.0183%" height="15" fill="rgb(225,113,19)" fg:x="70619" fg:w="95"/><text x="13.8206%" y="767.50"></text></g><g><title>Compile::Compile (95 samples, 0.02%)</title><rect x="13.5706%" y="741" width="0.0183%" height="15" fill="rgb(241,2,18)" fg:x="70619" fg:w="95"/><text x="13.8206%" y="751.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.01%)</title><rect x="13.6085%" y="693" width="0.0110%" height="15" fill="rgb(228,207,21)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="703.50"></text></g><g><title>Parse::Parse (57 samples, 0.01%)</title><rect x="13.6085%" y="677" width="0.0110%" height="15" fill="rgb(213,211,35)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="687.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.01%)</title><rect x="13.6085%" y="661" width="0.0110%" height="15" fill="rgb(209,83,10)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="671.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.01%)</title><rect x="13.6085%" y="645" width="0.0110%" height="15" fill="rgb(209,164,1)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.01%)</title><rect x="13.6085%" y="629" width="0.0110%" height="15" fill="rgb(213,184,43)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="639.50"></text></g><g><title>Parse::do_call (57 samples, 0.01%)</title><rect x="13.6085%" y="613" width="0.0110%" height="15" fill="rgb(231,61,34)" fg:x="70816" fg:w="57"/><text x="13.8585%" y="623.50"></text></g><g><title>ParseGenerator::generate (70 samples, 0.01%)</title><rect x="13.6085%" y="789" width="0.0135%" height="15" fill="rgb(235,75,3)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="799.50"></text></g><g><title>Parse::Parse (70 samples, 0.01%)</title><rect x="13.6085%" y="773" width="0.0135%" height="15" fill="rgb(220,106,47)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="783.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.01%)</title><rect x="13.6085%" y="757" width="0.0135%" height="15" fill="rgb(210,196,33)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="767.50"></text></g><g><title>Parse::do_one_block (70 samples, 0.01%)</title><rect x="13.6085%" y="741" width="0.0135%" height="15" fill="rgb(229,154,42)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.01%)</title><rect x="13.6085%" y="725" width="0.0135%" height="15" fill="rgb(228,114,26)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="735.50"></text></g><g><title>Parse::do_call (70 samples, 0.01%)</title><rect x="13.6085%" y="709" width="0.0135%" height="15" fill="rgb(208,144,1)" fg:x="70816" fg:w="70"/><text x="13.8585%" y="719.50"></text></g><g><title>Parse::do_call (82 samples, 0.02%)</title><rect x="13.6085%" y="805" width="0.0158%" height="15" fill="rgb(239,112,37)" fg:x="70816" fg:w="82"/><text x="13.8585%" y="815.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.01%)</title><rect x="13.6396%" y="229" width="0.0102%" height="15" fill="rgb(210,96,50)" fg:x="70978" fg:w="53"/><text x="13.8896%" y="239.50"></text></g><g><title>Parse::Parse (53 samples, 0.01%)</title><rect x="13.6396%" y="213" width="0.0102%" height="15" fill="rgb(222,178,2)" fg:x="70978" fg:w="53"/><text x="13.8896%" y="223.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.01%)</title><rect x="13.6396%" y="197" width="0.0102%" height="15" fill="rgb(226,74,18)" fg:x="70978" fg:w="53"/><text x="13.8896%" y="207.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="13.6396%" y="181" width="0.0102%" height="15" fill="rgb(225,67,54)" fg:x="70978" fg:w="53"/><text x="13.8896%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.01%)</title><rect x="13.6396%" y="165" width="0.0102%" height="15" fill="rgb(251,92,32)" fg:x="70978" fg:w="53"/><text x="13.8896%" y="175.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.01%)</title><rect x="13.6389%" y="325" width="0.0129%" height="15" fill="rgb(228,149,22)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="335.50"></text></g><g><title>Parse::Parse (67 samples, 0.01%)</title><rect x="13.6389%" y="309" width="0.0129%" height="15" fill="rgb(243,54,13)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="319.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.01%)</title><rect x="13.6389%" y="293" width="0.0129%" height="15" fill="rgb(243,180,28)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="303.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.01%)</title><rect x="13.6389%" y="277" width="0.0129%" height="15" fill="rgb(208,167,24)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (67 samples, 0.01%)</title><rect x="13.6389%" y="261" width="0.0129%" height="15" fill="rgb(245,73,45)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="271.50"></text></g><g><title>Parse::do_call (67 samples, 0.01%)</title><rect x="13.6389%" y="245" width="0.0129%" height="15" fill="rgb(237,203,48)" fg:x="70974" fg:w="67"/><text x="13.8889%" y="255.50"></text></g><g><title>ParseGenerator::generate (78 samples, 0.01%)</title><rect x="13.6381%" y="421" width="0.0150%" height="15" fill="rgb(211,197,16)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="431.50"></text></g><g><title>Parse::Parse (78 samples, 0.01%)</title><rect x="13.6381%" y="405" width="0.0150%" height="15" fill="rgb(243,99,51)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="415.50"></text></g><g><title>Parse::do_all_blocks (78 samples, 0.01%)</title><rect x="13.6381%" y="389" width="0.0150%" height="15" fill="rgb(215,123,29)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="399.50"></text></g><g><title>Parse::do_one_block (78 samples, 0.01%)</title><rect x="13.6381%" y="373" width="0.0150%" height="15" fill="rgb(239,186,37)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (78 samples, 0.01%)</title><rect x="13.6381%" y="357" width="0.0150%" height="15" fill="rgb(252,136,39)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="367.50"></text></g><g><title>Parse::do_call (78 samples, 0.01%)</title><rect x="13.6381%" y="341" width="0.0150%" height="15" fill="rgb(223,213,32)" fg:x="70970" fg:w="78"/><text x="13.8881%" y="351.50"></text></g><g><title>ParseGenerator::generate (103 samples, 0.02%)</title><rect x="13.6381%" y="517" width="0.0198%" height="15" fill="rgb(233,115,5)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="527.50"></text></g><g><title>Parse::Parse (103 samples, 0.02%)</title><rect x="13.6381%" y="501" width="0.0198%" height="15" fill="rgb(207,226,44)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="511.50"></text></g><g><title>Parse::do_all_blocks (103 samples, 0.02%)</title><rect x="13.6381%" y="485" width="0.0198%" height="15" fill="rgb(208,126,0)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="495.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.02%)</title><rect x="13.6381%" y="469" width="0.0198%" height="15" fill="rgb(244,66,21)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.02%)</title><rect x="13.6381%" y="453" width="0.0198%" height="15" fill="rgb(222,97,12)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="463.50"></text></g><g><title>Parse::do_call (103 samples, 0.02%)</title><rect x="13.6381%" y="437" width="0.0198%" height="15" fill="rgb(219,213,19)" fg:x="70970" fg:w="103"/><text x="13.8881%" y="447.50"></text></g><g><title>ParseGenerator::generate (121 samples, 0.02%)</title><rect x="13.6381%" y="613" width="0.0233%" height="15" fill="rgb(252,169,30)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="623.50"></text></g><g><title>Parse::Parse (121 samples, 0.02%)</title><rect x="13.6381%" y="597" width="0.0233%" height="15" fill="rgb(206,32,51)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="607.50"></text></g><g><title>Parse::do_all_blocks (121 samples, 0.02%)</title><rect x="13.6381%" y="581" width="0.0233%" height="15" fill="rgb(250,172,42)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="591.50"></text></g><g><title>Parse::do_one_block (121 samples, 0.02%)</title><rect x="13.6381%" y="565" width="0.0233%" height="15" fill="rgb(209,34,43)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (121 samples, 0.02%)</title><rect x="13.6381%" y="549" width="0.0233%" height="15" fill="rgb(223,11,35)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="559.50"></text></g><g><title>Parse::do_call (121 samples, 0.02%)</title><rect x="13.6381%" y="533" width="0.0233%" height="15" fill="rgb(251,219,26)" fg:x="70970" fg:w="121"/><text x="13.8881%" y="543.50"></text></g><g><title>ParseGenerator::generate (150 samples, 0.03%)</title><rect x="13.6381%" y="709" width="0.0288%" height="15" fill="rgb(231,119,3)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="719.50"></text></g><g><title>Parse::Parse (150 samples, 0.03%)</title><rect x="13.6381%" y="693" width="0.0288%" height="15" fill="rgb(216,97,11)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="703.50"></text></g><g><title>Parse::do_all_blocks (150 samples, 0.03%)</title><rect x="13.6381%" y="677" width="0.0288%" height="15" fill="rgb(223,59,9)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="687.50"></text></g><g><title>Parse::do_one_block (150 samples, 0.03%)</title><rect x="13.6381%" y="661" width="0.0288%" height="15" fill="rgb(233,93,31)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (150 samples, 0.03%)</title><rect x="13.6381%" y="645" width="0.0288%" height="15" fill="rgb(239,81,33)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="655.50"></text></g><g><title>Parse::do_call (150 samples, 0.03%)</title><rect x="13.6381%" y="629" width="0.0288%" height="15" fill="rgb(213,120,34)" fg:x="70970" fg:w="150"/><text x="13.8881%" y="639.50"></text></g><g><title>ParseGenerator::generate (196 samples, 0.04%)</title><rect x="13.6379%" y="805" width="0.0377%" height="15" fill="rgb(243,49,53)" fg:x="70969" fg:w="196"/><text x="13.8879%" y="815.50"></text></g><g><title>Parse::Parse (195 samples, 0.04%)</title><rect x="13.6381%" y="789" width="0.0375%" height="15" fill="rgb(247,216,33)" fg:x="70970" fg:w="195"/><text x="13.8881%" y="799.50"></text></g><g><title>Parse::do_all_blocks (195 samples, 0.04%)</title><rect x="13.6381%" y="773" width="0.0375%" height="15" fill="rgb(226,26,14)" fg:x="70970" fg:w="195"/><text x="13.8881%" y="783.50"></text></g><g><title>Parse::do_one_block (195 samples, 0.04%)</title><rect x="13.6381%" y="757" width="0.0375%" height="15" fill="rgb(215,49,53)" fg:x="70970" fg:w="195"/><text x="13.8881%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (195 samples, 0.04%)</title><rect x="13.6381%" y="741" width="0.0375%" height="15" fill="rgb(245,162,40)" fg:x="70970" fg:w="195"/><text x="13.8881%" y="751.50"></text></g><g><title>Parse::do_call (195 samples, 0.04%)</title><rect x="13.6381%" y="725" width="0.0375%" height="15" fill="rgb(229,68,17)" fg:x="70970" fg:w="195"/><text x="13.8881%" y="735.50"></text></g><g><title>Thread::call_run (75 samples, 0.01%)</title><rect x="13.6840%" y="805" width="0.0144%" height="15" fill="rgb(213,182,10)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="815.50"></text></g><g><title>JavaThread::thread_main_inner (75 samples, 0.01%)</title><rect x="13.6840%" y="789" width="0.0144%" height="15" fill="rgb(245,125,30)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (75 samples, 0.01%)</title><rect x="13.6840%" y="773" width="0.0144%" height="15" fill="rgb(232,202,2)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (75 samples, 0.01%)</title><rect x="13.6840%" y="757" width="0.0144%" height="15" fill="rgb(237,140,51)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="767.50"></text></g><g><title>C2Compiler::compile_method (75 samples, 0.01%)</title><rect x="13.6840%" y="741" width="0.0144%" height="15" fill="rgb(236,157,25)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="751.50"></text></g><g><title>Compile::Compile (75 samples, 0.01%)</title><rect x="13.6840%" y="725" width="0.0144%" height="15" fill="rgb(219,209,0)" fg:x="71209" fg:w="75"/><text x="13.9340%" y="735.50"></text></g><g><title>start_thread (64 samples, 0.01%)</title><rect x="13.7130%" y="805" width="0.0123%" height="15" fill="rgb(240,116,54)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="815.50"></text></g><g><title>thread_native_entry (64 samples, 0.01%)</title><rect x="13.7130%" y="789" width="0.0123%" height="15" fill="rgb(216,10,36)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="799.50"></text></g><g><title>Thread::call_run (64 samples, 0.01%)</title><rect x="13.7130%" y="773" width="0.0123%" height="15" fill="rgb(222,72,44)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (64 samples, 0.01%)</title><rect x="13.7130%" y="757" width="0.0123%" height="15" fill="rgb(232,159,9)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="767.50"></text></g><g><title>CompileBroker::compiler_thread_loop (64 samples, 0.01%)</title><rect x="13.7130%" y="741" width="0.0123%" height="15" fill="rgb(210,39,32)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (64 samples, 0.01%)</title><rect x="13.7130%" y="725" width="0.0123%" height="15" fill="rgb(216,194,45)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="735.50"></text></g><g><title>C2Compiler::compile_method (64 samples, 0.01%)</title><rect x="13.7130%" y="709" width="0.0123%" height="15" fill="rgb(218,18,35)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="719.50"></text></g><g><title>Compile::Compile (64 samples, 0.01%)</title><rect x="13.7130%" y="693" width="0.0123%" height="15" fill="rgb(207,83,51)" fg:x="71360" fg:w="64"/><text x="13.9630%" y="703.50"></text></g><g><title>[unknown] (57,305 samples, 11.01%)</title><rect x="2.7172%" y="821" width="11.0121%" height="15" fill="rgb(225,63,43)" fg:x="14140" fg:w="57305"/><text x="2.9672%" y="831.50">[unknown]</text></g><g><title>Dict::Insert (59 samples, 0.01%)</title><rect x="13.7501%" y="645" width="0.0113%" height="15" fill="rgb(207,57,36)" fg:x="71553" fg:w="59"/><text x="14.0001%" y="655.50"></text></g><g><title>CompileWrapper::CompileWrapper (76 samples, 0.01%)</title><rect x="13.7497%" y="677" width="0.0146%" height="15" fill="rgb(216,99,33)" fg:x="71551" fg:w="76"/><text x="13.9997%" y="687.50"></text></g><g><title>Type::Initialize (76 samples, 0.01%)</title><rect x="13.7497%" y="661" width="0.0146%" height="15" fill="rgb(225,42,16)" fg:x="71551" fg:w="76"/><text x="13.9997%" y="671.50"></text></g><g><title>Compile::identify_useful_nodes (175 samples, 0.03%)</title><rect x="13.7724%" y="661" width="0.0336%" height="15" fill="rgb(220,201,45)" fg:x="71669" fg:w="175"/><text x="14.0224%" y="671.50"></text></g><g><title>Compile::remove_useless_nodes (177 samples, 0.03%)</title><rect x="13.8060%" y="661" width="0.0340%" height="15" fill="rgb(225,33,4)" fg:x="71844" fg:w="177"/><text x="14.0560%" y="671.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (433 samples, 0.08%)</title><rect x="13.7661%" y="677" width="0.0832%" height="15" fill="rgb(224,33,50)" fg:x="71636" fg:w="433"/><text x="14.0161%" y="687.50"></text></g><g><title>C2Compiler::compile_method (645 samples, 0.12%)</title><rect x="13.7369%" y="709" width="0.1239%" height="15" fill="rgb(246,198,51)" fg:x="71484" fg:w="645"/><text x="13.9869%" y="719.50"></text></g><g><title>Compile::Compile (641 samples, 0.12%)</title><rect x="13.7376%" y="693" width="0.1232%" height="15" fill="rgb(205,22,4)" fg:x="71488" fg:w="641"/><text x="13.9876%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (775 samples, 0.15%)</title><rect x="13.7357%" y="725" width="0.1489%" height="15" fill="rgb(206,3,8)" fg:x="71478" fg:w="775"/><text x="13.9857%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (109 samples, 0.02%)</title><rect x="13.9021%" y="469" width="0.0209%" height="15" fill="rgb(251,23,15)" fg:x="72344" fg:w="109"/><text x="14.1521%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (108 samples, 0.02%)</title><rect x="13.9023%" y="453" width="0.0208%" height="15" fill="rgb(252,88,28)" fg:x="72345" fg:w="108"/><text x="14.1523%" y="463.50"></text></g><g><title>native_write_msr (108 samples, 0.02%)</title><rect x="13.9023%" y="437" width="0.0208%" height="15" fill="rgb(212,127,14)" fg:x="72345" fg:w="108"/><text x="14.1523%" y="447.50"></text></g><g><title>finish_task_switch (116 samples, 0.02%)</title><rect x="13.9015%" y="485" width="0.0223%" height="15" fill="rgb(247,145,37)" fg:x="72341" fg:w="116"/><text x="14.1515%" y="495.50"></text></g><g><title>futex_wait_queue_me (150 samples, 0.03%)</title><rect x="13.8975%" y="533" width="0.0288%" height="15" fill="rgb(209,117,53)" fg:x="72320" fg:w="150"/><text x="14.1475%" y="543.50"></text></g><g><title>schedule (146 samples, 0.03%)</title><rect x="13.8983%" y="517" width="0.0281%" height="15" fill="rgb(212,90,42)" fg:x="72324" fg:w="146"/><text x="14.1483%" y="527.50"></text></g><g><title>__schedule (144 samples, 0.03%)</title><rect x="13.8987%" y="501" width="0.0277%" height="15" fill="rgb(218,164,37)" fg:x="72326" fg:w="144"/><text x="14.1487%" y="511.50"></text></g><g><title>do_syscall_64 (166 samples, 0.03%)</title><rect x="13.8969%" y="597" width="0.0319%" height="15" fill="rgb(246,65,34)" fg:x="72317" fg:w="166"/><text x="14.1469%" y="607.50"></text></g><g><title>__x64_sys_futex (166 samples, 0.03%)</title><rect x="13.8969%" y="581" width="0.0319%" height="15" fill="rgb(231,100,33)" fg:x="72317" fg:w="166"/><text x="14.1469%" y="591.50"></text></g><g><title>do_futex (164 samples, 0.03%)</title><rect x="13.8973%" y="565" width="0.0315%" height="15" fill="rgb(228,126,14)" fg:x="72319" fg:w="164"/><text x="14.1473%" y="575.50"></text></g><g><title>futex_wait (164 samples, 0.03%)</title><rect x="13.8973%" y="549" width="0.0315%" height="15" fill="rgb(215,173,21)" fg:x="72319" fg:w="164"/><text x="14.1473%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (170 samples, 0.03%)</title><rect x="13.8967%" y="613" width="0.0327%" height="15" fill="rgb(210,6,40)" fg:x="72316" fg:w="170"/><text x="14.1467%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (177 samples, 0.03%)</title><rect x="13.8958%" y="661" width="0.0340%" height="15" fill="rgb(212,48,18)" fg:x="72311" fg:w="177"/><text x="14.1458%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (177 samples, 0.03%)</title><rect x="13.8958%" y="645" width="0.0340%" height="15" fill="rgb(230,214,11)" fg:x="72311" fg:w="177"/><text x="14.1458%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (174 samples, 0.03%)</title><rect x="13.8964%" y="629" width="0.0334%" height="15" fill="rgb(254,105,39)" fg:x="72314" fg:w="174"/><text x="14.1464%" y="639.50"></text></g><g><title>Monitor::wait (228 samples, 0.04%)</title><rect x="13.8891%" y="709" width="0.0438%" height="15" fill="rgb(245,158,5)" fg:x="72276" fg:w="228"/><text x="14.1391%" y="719.50"></text></g><g><title>Monitor::IWait (222 samples, 0.04%)</title><rect x="13.8902%" y="693" width="0.0427%" height="15" fill="rgb(249,208,11)" fg:x="72282" fg:w="222"/><text x="14.1402%" y="703.50"></text></g><g><title>os::PlatformEvent::park (198 samples, 0.04%)</title><rect x="13.8948%" y="677" width="0.0380%" height="15" fill="rgb(210,39,28)" fg:x="72306" fg:w="198"/><text x="14.1448%" y="687.50"></text></g><g><title>CompileQueue::get (265 samples, 0.05%)</title><rect x="13.8869%" y="725" width="0.0509%" height="15" fill="rgb(211,56,53)" fg:x="72265" fg:w="265"/><text x="14.1369%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,059 samples, 0.20%)</title><rect x="13.7351%" y="741" width="0.2035%" height="15" fill="rgb(226,201,30)" fg:x="71475" fg:w="1059"/><text x="13.9851%" y="751.50"></text></g><g><title>__GI___clone (1,079 samples, 0.21%)</title><rect x="13.7319%" y="821" width="0.2073%" height="15" fill="rgb(239,101,34)" fg:x="71458" fg:w="1079"/><text x="13.9819%" y="831.50"></text></g><g><title>start_thread (1,065 samples, 0.20%)</title><rect x="13.7346%" y="805" width="0.2047%" height="15" fill="rgb(226,209,5)" fg:x="71472" fg:w="1065"/><text x="13.9846%" y="815.50"></text></g><g><title>thread_native_entry (1,064 samples, 0.20%)</title><rect x="13.7347%" y="789" width="0.2045%" height="15" fill="rgb(250,105,47)" fg:x="71473" fg:w="1064"/><text x="13.9847%" y="799.50"></text></g><g><title>Thread::call_run (1,064 samples, 0.20%)</title><rect x="13.7347%" y="773" width="0.2045%" height="15" fill="rgb(230,72,3)" fg:x="71473" fg:w="1064"/><text x="13.9847%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (1,062 samples, 0.20%)</title><rect x="13.7351%" y="757" width="0.2041%" height="15" fill="rgb(232,218,39)" fg:x="71475" fg:w="1062"/><text x="13.9851%" y="767.50"></text></g><g><title>C2_CompilerThre (61,860 samples, 11.89%)</title><rect x="2.0735%" y="837" width="11.8874%" height="15" fill="rgb(248,166,6)" fg:x="10790" fg:w="61860"/><text x="2.3235%" y="847.50">C2_CompilerThre</text></g><g><title>[perf-261576.map] (88 samples, 0.02%)</title><rect x="13.9615%" y="821" width="0.0169%" height="15" fill="rgb(247,89,20)" fg:x="72653" fg:w="88"/><text x="14.2115%" y="831.50"></text></g><g><title>Command-Accumul (128 samples, 0.02%)</title><rect x="13.9609%" y="837" width="0.0246%" height="15" fill="rgb(248,130,54)" fg:x="72650" fg:w="128"/><text x="14.2109%" y="847.50"></text></g><g><title>update_curr (53 samples, 0.01%)</title><rect x="14.3768%" y="565" width="0.0102%" height="15" fill="rgb(234,196,4)" fg:x="74814" fg:w="53"/><text x="14.6268%" y="575.50"></text></g><g><title>dequeue_entity (121 samples, 0.02%)</title><rect x="14.3695%" y="581" width="0.0233%" height="15" fill="rgb(250,143,31)" fg:x="74776" fg:w="121"/><text x="14.6195%" y="591.50"></text></g><g><title>dequeue_task_fair (137 samples, 0.03%)</title><rect x="14.3666%" y="597" width="0.0263%" height="15" fill="rgb(211,110,34)" fg:x="74761" fg:w="137"/><text x="14.6166%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.01%)</title><rect x="14.3945%" y="581" width="0.0148%" height="15" fill="rgb(215,124,48)" fg:x="74906" fg:w="77"/><text x="14.6445%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.01%)</title><rect x="14.3954%" y="565" width="0.0138%" height="15" fill="rgb(216,46,13)" fg:x="74911" fg:w="72"/><text x="14.6454%" y="575.50"></text></g><g><title>native_write_msr (71 samples, 0.01%)</title><rect x="14.3956%" y="549" width="0.0136%" height="15" fill="rgb(205,184,25)" fg:x="74912" fg:w="71"/><text x="14.6456%" y="559.50"></text></g><g><title>finish_task_switch (90 samples, 0.02%)</title><rect x="14.3929%" y="597" width="0.0173%" height="15" fill="rgb(228,1,10)" fg:x="74898" fg:w="90"/><text x="14.6429%" y="607.50"></text></g><g><title>psi_task_change (81 samples, 0.02%)</title><rect x="14.4215%" y="597" width="0.0156%" height="15" fill="rgb(213,116,27)" fg:x="75047" fg:w="81"/><text x="14.6715%" y="607.50"></text></g><g><title>psi_group_change (59 samples, 0.01%)</title><rect x="14.4258%" y="581" width="0.0113%" height="15" fill="rgb(241,95,50)" fg:x="75069" fg:w="59"/><text x="14.6758%" y="591.50"></text></g><g><title>futex_wait_queue_me (550 samples, 0.11%)</title><rect x="14.3366%" y="645" width="0.1057%" height="15" fill="rgb(238,48,32)" fg:x="74605" fg:w="550"/><text x="14.5866%" y="655.50"></text></g><g><title>schedule (467 samples, 0.09%)</title><rect x="14.3526%" y="629" width="0.0897%" height="15" fill="rgb(235,113,49)" fg:x="74688" fg:w="467"/><text x="14.6026%" y="639.50"></text></g><g><title>__schedule (453 samples, 0.09%)</title><rect x="14.3553%" y="613" width="0.0871%" height="15" fill="rgb(205,127,43)" fg:x="74702" fg:w="453"/><text x="14.6053%" y="623.50"></text></g><g><title>do_futex (687 samples, 0.13%)</title><rect x="14.3295%" y="677" width="0.1320%" height="15" fill="rgb(250,162,2)" fg:x="74568" fg:w="687"/><text x="14.5795%" y="687.50"></text></g><g><title>futex_wait (673 samples, 0.13%)</title><rect x="14.3322%" y="661" width="0.1293%" height="15" fill="rgb(220,13,41)" fg:x="74582" fg:w="673"/><text x="14.5822%" y="671.50"></text></g><g><title>do_syscall_64 (712 samples, 0.14%)</title><rect x="14.3274%" y="709" width="0.1368%" height="15" fill="rgb(249,221,25)" fg:x="74557" fg:w="712"/><text x="14.5774%" y="719.50"></text></g><g><title>__x64_sys_futex (709 samples, 0.14%)</title><rect x="14.3280%" y="693" width="0.1362%" height="15" fill="rgb(215,208,19)" fg:x="74560" fg:w="709"/><text x="14.5780%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (736 samples, 0.14%)</title><rect x="14.3253%" y="725" width="0.1414%" height="15" fill="rgb(236,175,2)" fg:x="74546" fg:w="736"/><text x="14.5753%" y="735.50"></text></g><g><title>__pthread_cond_timedwait (815 samples, 0.16%)</title><rect x="14.3111%" y="773" width="0.1566%" height="15" fill="rgb(241,52,2)" fg:x="74472" fg:w="815"/><text x="14.5611%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (813 samples, 0.16%)</title><rect x="14.3114%" y="757" width="0.1562%" height="15" fill="rgb(248,140,14)" fg:x="74474" fg:w="813"/><text x="14.5614%" y="767.50"></text></g><g><title>futex_abstimed_wait_cancelable (779 samples, 0.15%)</title><rect x="14.3180%" y="741" width="0.1497%" height="15" fill="rgb(253,22,42)" fg:x="74508" fg:w="779"/><text x="14.5680%" y="751.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="14.4740%" y="741" width="0.0113%" height="15" fill="rgb(234,61,47)" fg:x="75320" fg:w="59"/><text x="14.7240%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="14.4740%" y="757" width="0.0121%" height="15" fill="rgb(208,226,15)" fg:x="75320" fg:w="63"/><text x="14.7240%" y="767.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (87 samples, 0.02%)</title><rect x="14.4706%" y="773" width="0.0167%" height="15" fill="rgb(217,221,4)" fg:x="75302" fg:w="87"/><text x="14.7206%" y="783.50"></text></g><g><title>Parker::park (1,031 samples, 0.20%)</title><rect x="14.2959%" y="789" width="0.1981%" height="15" fill="rgb(212,174,34)" fg:x="74393" fg:w="1031"/><text x="14.5459%" y="799.50"></text></g><g><title>Unsafe_Park (1,069 samples, 0.21%)</title><rect x="14.2915%" y="805" width="0.2054%" height="15" fill="rgb(253,83,4)" fg:x="74370" fg:w="1069"/><text x="14.5415%" y="815.50"></text></g><g><title>[perf-261576.map] (2,631 samples, 0.51%)</title><rect x="13.9967%" y="821" width="0.5056%" height="15" fill="rgb(250,195,49)" fg:x="72836" fg:w="2631"/><text x="14.2467%" y="831.50"></text></g><g><title>ForkJoinPool.co (2,713 samples, 0.52%)</title><rect x="13.9897%" y="837" width="0.5213%" height="15" fill="rgb(241,192,25)" fg:x="72800" fg:w="2713"/><text x="14.2397%" y="847.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (115 samples, 0.02%)</title><rect x="14.5307%" y="725" width="0.0221%" height="15" fill="rgb(208,124,10)" fg:x="75615" fg:w="115"/><text x="14.7807%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (114 samples, 0.02%)</title><rect x="14.5309%" y="709" width="0.0219%" height="15" fill="rgb(222,33,0)" fg:x="75616" fg:w="114"/><text x="14.7809%" y="719.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (124 samples, 0.02%)</title><rect x="14.5307%" y="741" width="0.0238%" height="15" fill="rgb(234,209,28)" fg:x="75615" fg:w="124"/><text x="14.7807%" y="751.50"></text></g><g><title>G1_Refine#0 (139 samples, 0.03%)</title><rect x="14.5292%" y="837" width="0.0267%" height="15" fill="rgb(224,11,23)" fg:x="75607" fg:w="139"/><text x="14.7792%" y="847.50"></text></g><g><title>__GI___clone (131 samples, 0.03%)</title><rect x="14.5307%" y="821" width="0.0252%" height="15" fill="rgb(232,99,1)" fg:x="75615" fg:w="131"/><text x="14.7807%" y="831.50"></text></g><g><title>start_thread (131 samples, 0.03%)</title><rect x="14.5307%" y="805" width="0.0252%" height="15" fill="rgb(237,95,45)" fg:x="75615" fg:w="131"/><text x="14.7807%" y="815.50"></text></g><g><title>thread_native_entry (131 samples, 0.03%)</title><rect x="14.5307%" y="789" width="0.0252%" height="15" fill="rgb(208,109,11)" fg:x="75615" fg:w="131"/><text x="14.7807%" y="799.50"></text></g><g><title>Thread::call_run (131 samples, 0.03%)</title><rect x="14.5307%" y="773" width="0.0252%" height="15" fill="rgb(216,190,48)" fg:x="75615" fg:w="131"/><text x="14.7807%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (131 samples, 0.03%)</title><rect x="14.5307%" y="757" width="0.0252%" height="15" fill="rgb(251,171,36)" fg:x="75615" fg:w="131"/><text x="14.7807%" y="767.50"></text></g><g><title>G1CollectionSet::iterate (65 samples, 0.01%)</title><rect x="14.5588%" y="725" width="0.0125%" height="15" fill="rgb(230,62,22)" fg:x="75761" fg:w="65"/><text x="14.8088%" y="735.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (65 samples, 0.01%)</title><rect x="14.5588%" y="709" width="0.0125%" height="15" fill="rgb(225,114,35)" fg:x="75761" fg:w="65"/><text x="14.8088%" y="719.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (101 samples, 0.02%)</title><rect x="14.5588%" y="741" width="0.0194%" height="15" fill="rgb(215,118,42)" fg:x="75761" fg:w="101"/><text x="14.8088%" y="751.50"></text></g><g><title>G1_Young_RemSet (111 samples, 0.02%)</title><rect x="14.5588%" y="837" width="0.0213%" height="15" fill="rgb(243,119,21)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="847.50"></text></g><g><title>__GI___clone (111 samples, 0.02%)</title><rect x="14.5588%" y="821" width="0.0213%" height="15" fill="rgb(252,177,53)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="831.50"></text></g><g><title>start_thread (111 samples, 0.02%)</title><rect x="14.5588%" y="805" width="0.0213%" height="15" fill="rgb(237,209,29)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="815.50"></text></g><g><title>thread_native_entry (111 samples, 0.02%)</title><rect x="14.5588%" y="789" width="0.0213%" height="15" fill="rgb(212,65,23)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="799.50"></text></g><g><title>Thread::call_run (111 samples, 0.02%)</title><rect x="14.5588%" y="773" width="0.0213%" height="15" fill="rgb(230,222,46)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (111 samples, 0.02%)</title><rect x="14.5588%" y="757" width="0.0213%" height="15" fill="rgb(215,135,32)" fg:x="75761" fg:w="111"/><text x="14.8088%" y="767.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (69 samples, 0.01%)</title><rect x="14.6366%" y="677" width="0.0133%" height="15" fill="rgb(246,101,22)" fg:x="76166" fg:w="69"/><text x="14.8866%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (197 samples, 0.04%)</title><rect x="14.6179%" y="693" width="0.0379%" height="15" fill="rgb(206,107,13)" fg:x="76069" fg:w="197"/><text x="14.8679%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (350 samples, 0.07%)</title><rect x="14.5901%" y="709" width="0.0673%" height="15" fill="rgb(250,100,44)" fg:x="75924" fg:w="350"/><text x="14.8401%" y="719.50"></text></g><g><title>SpinPause (89 samples, 0.02%)</title><rect x="14.6587%" y="709" width="0.0171%" height="15" fill="rgb(231,147,38)" fg:x="76281" fg:w="89"/><text x="14.9087%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (468 samples, 0.09%)</title><rect x="14.5870%" y="725" width="0.0899%" height="15" fill="rgb(229,8,40)" fg:x="75908" fg:w="468"/><text x="14.8370%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (150 samples, 0.03%)</title><rect x="14.6848%" y="629" width="0.0288%" height="15" fill="rgb(221,135,30)" fg:x="76417" fg:w="150"/><text x="14.9348%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (122 samples, 0.02%)</title><rect x="14.6902%" y="613" width="0.0234%" height="15" fill="rgb(249,193,18)" fg:x="76445" fg:w="122"/><text x="14.9402%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (202 samples, 0.04%)</title><rect x="14.6769%" y="645" width="0.0388%" height="15" fill="rgb(209,133,39)" fg:x="76376" fg:w="202"/><text x="14.9269%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (228 samples, 0.04%)</title><rect x="14.6769%" y="693" width="0.0438%" height="15" fill="rgb(232,100,14)" fg:x="76376" fg:w="228"/><text x="14.9269%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (228 samples, 0.04%)</title><rect x="14.6769%" y="677" width="0.0438%" height="15" fill="rgb(224,185,1)" fg:x="76376" fg:w="228"/><text x="14.9269%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (228 samples, 0.04%)</title><rect x="14.6769%" y="661" width="0.0438%" height="15" fill="rgb(223,139,8)" fg:x="76376" fg:w="228"/><text x="14.9269%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (231 samples, 0.04%)</title><rect x="14.6769%" y="725" width="0.0444%" height="15" fill="rgb(232,213,38)" fg:x="76376" fg:w="231"/><text x="14.9269%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (231 samples, 0.04%)</title><rect x="14.6769%" y="709" width="0.0444%" height="15" fill="rgb(207,94,22)" fg:x="76376" fg:w="231"/><text x="14.9269%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (53 samples, 0.01%)</title><rect x="14.7213%" y="725" width="0.0102%" height="15" fill="rgb(219,183,54)" fg:x="76607" fg:w="53"/><text x="14.9713%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (53 samples, 0.01%)</title><rect x="14.7213%" y="709" width="0.0102%" height="15" fill="rgb(216,185,54)" fg:x="76607" fg:w="53"/><text x="14.9713%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (53 samples, 0.01%)</title><rect x="14.7213%" y="693" width="0.0102%" height="15" fill="rgb(254,217,39)" fg:x="76607" fg:w="53"/><text x="14.9713%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (58 samples, 0.01%)</title><rect x="14.7567%" y="629" width="0.0111%" height="15" fill="rgb(240,178,23)" fg:x="76791" fg:w="58"/><text x="15.0067%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.01%)</title><rect x="14.7569%" y="613" width="0.0110%" height="15" fill="rgb(218,11,47)" fg:x="76792" fg:w="57"/><text x="15.0069%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (195 samples, 0.04%)</title><rect x="14.7315%" y="709" width="0.0375%" height="15" fill="rgb(218,51,51)" fg:x="76660" fg:w="195"/><text x="14.9815%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (145 samples, 0.03%)</title><rect x="14.7411%" y="693" width="0.0279%" height="15" fill="rgb(238,126,27)" fg:x="76710" fg:w="145"/><text x="14.9911%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (145 samples, 0.03%)</title><rect x="14.7411%" y="677" width="0.0279%" height="15" fill="rgb(249,202,22)" fg:x="76710" fg:w="145"/><text x="14.9911%" y="687.50"></text></g><g><title>JavaThread::oops_do (145 samples, 0.03%)</title><rect x="14.7411%" y="661" width="0.0279%" height="15" fill="rgb(254,195,49)" fg:x="76710" fg:w="145"/><text x="14.9911%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (65 samples, 0.01%)</title><rect x="14.7565%" y="645" width="0.0125%" height="15" fill="rgb(208,123,14)" fg:x="76790" fg:w="65"/><text x="15.0065%" y="655.50"></text></g><g><title>G1ParTask::work (967 samples, 0.19%)</title><rect x="14.5870%" y="741" width="0.1858%" height="15" fill="rgb(224,200,8)" fg:x="75908" fg:w="967"/><text x="14.8370%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (215 samples, 0.04%)</title><rect x="14.7315%" y="725" width="0.0413%" height="15" fill="rgb(217,61,36)" fg:x="76660" fg:w="215"/><text x="14.9815%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (54 samples, 0.01%)</title><rect x="14.7736%" y="741" width="0.0104%" height="15" fill="rgb(206,35,45)" fg:x="76879" fg:w="54"/><text x="15.0236%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (72 samples, 0.01%)</title><rect x="14.7905%" y="517" width="0.0138%" height="15" fill="rgb(217,65,33)" fg:x="76967" fg:w="72"/><text x="15.0405%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.01%)</title><rect x="14.7907%" y="501" width="0.0136%" height="15" fill="rgb(222,158,48)" fg:x="76968" fg:w="71"/><text x="15.0407%" y="511.50"></text></g><g><title>native_write_msr (71 samples, 0.01%)</title><rect x="14.7907%" y="485" width="0.0136%" height="15" fill="rgb(254,2,54)" fg:x="76968" fg:w="71"/><text x="15.0407%" y="495.50"></text></g><g><title>finish_task_switch (78 samples, 0.01%)</title><rect x="14.7897%" y="533" width="0.0150%" height="15" fill="rgb(250,143,38)" fg:x="76963" fg:w="78"/><text x="15.0397%" y="543.50"></text></g><g><title>do_syscall_64 (94 samples, 0.02%)</title><rect x="14.7884%" y="645" width="0.0181%" height="15" fill="rgb(248,25,0)" fg:x="76956" fg:w="94"/><text x="15.0384%" y="655.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.02%)</title><rect x="14.7884%" y="629" width="0.0181%" height="15" fill="rgb(206,152,27)" fg:x="76956" fg:w="94"/><text x="15.0384%" y="639.50"></text></g><g><title>do_futex (93 samples, 0.02%)</title><rect x="14.7886%" y="613" width="0.0179%" height="15" fill="rgb(240,77,30)" fg:x="76957" fg:w="93"/><text x="15.0386%" y="623.50"></text></g><g><title>futex_wait (93 samples, 0.02%)</title><rect x="14.7886%" y="597" width="0.0179%" height="15" fill="rgb(231,5,3)" fg:x="76957" fg:w="93"/><text x="15.0386%" y="607.50"></text></g><g><title>futex_wait_queue_me (92 samples, 0.02%)</title><rect x="14.7888%" y="581" width="0.0177%" height="15" fill="rgb(207,226,32)" fg:x="76958" fg:w="92"/><text x="15.0388%" y="591.50"></text></g><g><title>schedule (92 samples, 0.02%)</title><rect x="14.7888%" y="565" width="0.0177%" height="15" fill="rgb(222,207,47)" fg:x="76958" fg:w="92"/><text x="15.0388%" y="575.50"></text></g><g><title>__schedule (92 samples, 0.02%)</title><rect x="14.7888%" y="549" width="0.0177%" height="15" fill="rgb(229,115,45)" fg:x="76958" fg:w="92"/><text x="15.0388%" y="559.50"></text></g><g><title>GC_Thread#0 (1,180 samples, 0.23%)</title><rect x="14.5801%" y="837" width="0.2268%" height="15" fill="rgb(224,191,6)" fg:x="75872" fg:w="1180"/><text x="14.8301%" y="847.50"></text></g><g><title>__GI___clone (1,153 samples, 0.22%)</title><rect x="14.5853%" y="821" width="0.2216%" height="15" fill="rgb(230,227,24)" fg:x="75899" fg:w="1153"/><text x="14.8353%" y="831.50"></text></g><g><title>start_thread (1,153 samples, 0.22%)</title><rect x="14.5853%" y="805" width="0.2216%" height="15" fill="rgb(228,80,19)" fg:x="75899" fg:w="1153"/><text x="14.8353%" y="815.50"></text></g><g><title>thread_native_entry (1,153 samples, 0.22%)</title><rect x="14.5853%" y="789" width="0.2216%" height="15" fill="rgb(247,229,0)" fg:x="75899" fg:w="1153"/><text x="14.8353%" y="799.50"></text></g><g><title>Thread::call_run (1,153 samples, 0.22%)</title><rect x="14.5853%" y="773" width="0.2216%" height="15" fill="rgb(237,194,15)" fg:x="75899" fg:w="1153"/><text x="14.8353%" y="783.50"></text></g><g><title>GangWorker::loop (1,153 samples, 0.22%)</title><rect x="14.5853%" y="757" width="0.2216%" height="15" fill="rgb(219,203,20)" fg:x="75899" fg:w="1153"/><text x="14.8353%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (98 samples, 0.02%)</title><rect x="14.7880%" y="741" width="0.0188%" height="15" fill="rgb(234,128,8)" fg:x="76954" fg:w="98"/><text x="15.0380%" y="751.50"></text></g><g><title>PosixSemaphore::wait (98 samples, 0.02%)</title><rect x="14.7880%" y="725" width="0.0188%" height="15" fill="rgb(248,202,8)" fg:x="76954" fg:w="98"/><text x="15.0380%" y="735.50"></text></g><g><title>__new_sem_wait_slow (97 samples, 0.02%)</title><rect x="14.7882%" y="709" width="0.0186%" height="15" fill="rgb(206,104,37)" fg:x="76955" fg:w="97"/><text x="15.0382%" y="719.50"></text></g><g><title>do_futex_wait (97 samples, 0.02%)</title><rect x="14.7882%" y="693" width="0.0186%" height="15" fill="rgb(223,8,27)" fg:x="76955" fg:w="97"/><text x="15.0382%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (97 samples, 0.02%)</title><rect x="14.7882%" y="677" width="0.0186%" height="15" fill="rgb(216,217,28)" fg:x="76955" fg:w="97"/><text x="15.0382%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.02%)</title><rect x="14.7884%" y="661" width="0.0184%" height="15" fill="rgb(249,199,1)" fg:x="76956" fg:w="96"/><text x="15.0384%" y="671.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (55 samples, 0.01%)</title><rect x="14.8651%" y="677" width="0.0106%" height="15" fill="rgb(240,85,17)" fg:x="77355" fg:w="55"/><text x="15.1151%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (184 samples, 0.04%)</title><rect x="14.8457%" y="693" width="0.0354%" height="15" fill="rgb(206,108,45)" fg:x="77254" fg:w="184"/><text x="15.0957%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (349 samples, 0.07%)</title><rect x="14.8155%" y="709" width="0.0671%" height="15" fill="rgb(245,210,41)" fg:x="77097" fg:w="349"/><text x="15.0655%" y="719.50"></text></g><g><title>SpinPause (67 samples, 0.01%)</title><rect x="14.8841%" y="709" width="0.0129%" height="15" fill="rgb(206,13,37)" fg:x="77454" fg:w="67"/><text x="15.1341%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (452 samples, 0.09%)</title><rect x="14.8116%" y="725" width="0.0869%" height="15" fill="rgb(250,61,18)" fg:x="77077" fg:w="452"/><text x="15.0616%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (189 samples, 0.04%)</title><rect x="14.9070%" y="629" width="0.0363%" height="15" fill="rgb(235,172,48)" fg:x="77573" fg:w="189"/><text x="15.1570%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (148 samples, 0.03%)</title><rect x="14.9148%" y="613" width="0.0284%" height="15" fill="rgb(249,201,17)" fg:x="77614" fg:w="148"/><text x="15.1648%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (238 samples, 0.05%)</title><rect x="14.8993%" y="645" width="0.0457%" height="15" fill="rgb(219,208,6)" fg:x="77533" fg:w="238"/><text x="15.1493%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (263 samples, 0.05%)</title><rect x="14.8987%" y="693" width="0.0505%" height="15" fill="rgb(248,31,23)" fg:x="77530" fg:w="263"/><text x="15.1487%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (263 samples, 0.05%)</title><rect x="14.8987%" y="677" width="0.0505%" height="15" fill="rgb(245,15,42)" fg:x="77530" fg:w="263"/><text x="15.1487%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (263 samples, 0.05%)</title><rect x="14.8987%" y="661" width="0.0505%" height="15" fill="rgb(222,217,39)" fg:x="77530" fg:w="263"/><text x="15.1487%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (265 samples, 0.05%)</title><rect x="14.8987%" y="725" width="0.0509%" height="15" fill="rgb(210,219,27)" fg:x="77530" fg:w="265"/><text x="15.1487%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (265 samples, 0.05%)</title><rect x="14.8987%" y="709" width="0.0509%" height="15" fill="rgb(252,166,36)" fg:x="77530" fg:w="265"/><text x="15.1487%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (68 samples, 0.01%)</title><rect x="14.9496%" y="725" width="0.0131%" height="15" fill="rgb(245,132,34)" fg:x="77795" fg:w="68"/><text x="15.1996%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (68 samples, 0.01%)</title><rect x="14.9496%" y="709" width="0.0131%" height="15" fill="rgb(236,54,3)" fg:x="77795" fg:w="68"/><text x="15.1996%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (68 samples, 0.01%)</title><rect x="14.9496%" y="693" width="0.0131%" height="15" fill="rgb(241,173,43)" fg:x="77795" fg:w="68"/><text x="15.1996%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (65 samples, 0.01%)</title><rect x="14.9811%" y="629" width="0.0125%" height="15" fill="rgb(215,190,9)" fg:x="77959" fg:w="65"/><text x="15.2311%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.01%)</title><rect x="14.9834%" y="613" width="0.0102%" height="15" fill="rgb(242,101,16)" fg:x="77971" fg:w="53"/><text x="15.2334%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (69 samples, 0.01%)</title><rect x="14.9809%" y="645" width="0.0133%" height="15" fill="rgb(223,190,21)" fg:x="77958" fg:w="69"/><text x="15.2309%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (164 samples, 0.03%)</title><rect x="14.9631%" y="709" width="0.0315%" height="15" fill="rgb(215,228,25)" fg:x="77865" fg:w="164"/><text x="15.2131%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (117 samples, 0.02%)</title><rect x="14.9721%" y="693" width="0.0225%" height="15" fill="rgb(225,36,22)" fg:x="77912" fg:w="117"/><text x="15.2221%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (117 samples, 0.02%)</title><rect x="14.9721%" y="677" width="0.0225%" height="15" fill="rgb(251,106,46)" fg:x="77912" fg:w="117"/><text x="15.2221%" y="687.50"></text></g><g><title>JavaThread::oops_do (116 samples, 0.02%)</title><rect x="14.9723%" y="661" width="0.0223%" height="15" fill="rgb(208,90,1)" fg:x="77913" fg:w="116"/><text x="15.2223%" y="671.50"></text></g><g><title>G1ParTask::work (962 samples, 0.18%)</title><rect x="14.8116%" y="741" width="0.1849%" height="15" fill="rgb(243,10,4)" fg:x="77077" fg:w="962"/><text x="15.0616%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (176 samples, 0.03%)</title><rect x="14.9627%" y="725" width="0.0338%" height="15" fill="rgb(212,137,27)" fg:x="77863" fg:w="176"/><text x="15.2127%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (59 samples, 0.01%)</title><rect x="14.9990%" y="741" width="0.0113%" height="15" fill="rgb(231,220,49)" fg:x="78052" fg:w="59"/><text x="15.2490%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.01%)</title><rect x="15.0184%" y="517" width="0.0133%" height="15" fill="rgb(237,96,20)" fg:x="78153" fg:w="69"/><text x="15.2684%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.01%)</title><rect x="15.0184%" y="501" width="0.0133%" height="15" fill="rgb(239,229,30)" fg:x="78153" fg:w="69"/><text x="15.2684%" y="511.50"></text></g><g><title>native_write_msr (69 samples, 0.01%)</title><rect x="15.0184%" y="485" width="0.0133%" height="15" fill="rgb(219,65,33)" fg:x="78153" fg:w="69"/><text x="15.2684%" y="495.50"></text></g><g><title>finish_task_switch (76 samples, 0.01%)</title><rect x="15.0178%" y="533" width="0.0146%" height="15" fill="rgb(243,134,7)" fg:x="78150" fg:w="76"/><text x="15.2678%" y="543.50"></text></g><g><title>futex_wait_queue_me (86 samples, 0.02%)</title><rect x="15.0165%" y="581" width="0.0165%" height="15" fill="rgb(216,177,54)" fg:x="78143" fg:w="86"/><text x="15.2665%" y="591.50"></text></g><g><title>schedule (84 samples, 0.02%)</title><rect x="15.0169%" y="565" width="0.0161%" height="15" fill="rgb(211,160,20)" fg:x="78145" fg:w="84"/><text x="15.2669%" y="575.50"></text></g><g><title>__schedule (83 samples, 0.02%)</title><rect x="15.0171%" y="549" width="0.0159%" height="15" fill="rgb(239,85,39)" fg:x="78146" fg:w="83"/><text x="15.2671%" y="559.50"></text></g><g><title>do_syscall_64 (87 samples, 0.02%)</title><rect x="15.0165%" y="645" width="0.0167%" height="15" fill="rgb(232,125,22)" fg:x="78143" fg:w="87"/><text x="15.2665%" y="655.50"></text></g><g><title>__x64_sys_futex (87 samples, 0.02%)</title><rect x="15.0165%" y="629" width="0.0167%" height="15" fill="rgb(244,57,34)" fg:x="78143" fg:w="87"/><text x="15.2665%" y="639.50"></text></g><g><title>do_futex (87 samples, 0.02%)</title><rect x="15.0165%" y="613" width="0.0167%" height="15" fill="rgb(214,203,32)" fg:x="78143" fg:w="87"/><text x="15.2665%" y="623.50"></text></g><g><title>futex_wait (87 samples, 0.02%)</title><rect x="15.0165%" y="597" width="0.0167%" height="15" fill="rgb(207,58,43)" fg:x="78143" fg:w="87"/><text x="15.2665%" y="607.50"></text></g><g><title>__new_sem_wait_slow (89 samples, 0.02%)</title><rect x="15.0163%" y="709" width="0.0171%" height="15" fill="rgb(215,193,15)" fg:x="78142" fg:w="89"/><text x="15.2663%" y="719.50"></text></g><g><title>do_futex_wait (89 samples, 0.02%)</title><rect x="15.0163%" y="693" width="0.0171%" height="15" fill="rgb(232,15,44)" fg:x="78142" fg:w="89"/><text x="15.2663%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (89 samples, 0.02%)</title><rect x="15.0163%" y="677" width="0.0171%" height="15" fill="rgb(212,3,48)" fg:x="78142" fg:w="89"/><text x="15.2663%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.02%)</title><rect x="15.0165%" y="661" width="0.0169%" height="15" fill="rgb(218,128,7)" fg:x="78143" fg:w="88"/><text x="15.2665%" y="671.50"></text></g><g><title>__GI___clone (1,164 samples, 0.22%)</title><rect x="14.8099%" y="821" width="0.2237%" height="15" fill="rgb(226,216,39)" fg:x="77068" fg:w="1164"/><text x="15.0599%" y="831.50"></text></g><g><title>start_thread (1,164 samples, 0.22%)</title><rect x="14.8099%" y="805" width="0.2237%" height="15" fill="rgb(243,47,51)" fg:x="77068" fg:w="1164"/><text x="15.0599%" y="815.50"></text></g><g><title>thread_native_entry (1,164 samples, 0.22%)</title><rect x="14.8099%" y="789" width="0.2237%" height="15" fill="rgb(241,183,40)" fg:x="77068" fg:w="1164"/><text x="15.0599%" y="799.50"></text></g><g><title>Thread::call_run (1,164 samples, 0.22%)</title><rect x="14.8099%" y="773" width="0.2237%" height="15" fill="rgb(231,217,32)" fg:x="77068" fg:w="1164"/><text x="15.0599%" y="783.50"></text></g><g><title>GangWorker::loop (1,164 samples, 0.22%)</title><rect x="14.8099%" y="757" width="0.2237%" height="15" fill="rgb(229,61,38)" fg:x="77068" fg:w="1164"/><text x="15.0599%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (90 samples, 0.02%)</title><rect x="15.0163%" y="741" width="0.0173%" height="15" fill="rgb(225,210,5)" fg:x="78142" fg:w="90"/><text x="15.2663%" y="751.50"></text></g><g><title>PosixSemaphore::wait (90 samples, 0.02%)</title><rect x="15.0163%" y="725" width="0.0173%" height="15" fill="rgb(231,79,45)" fg:x="78142" fg:w="90"/><text x="15.2663%" y="735.50"></text></g><g><title>GC_Thread#1 (1,181 samples, 0.23%)</title><rect x="14.8068%" y="837" width="0.2269%" height="15" fill="rgb(224,100,7)" fg:x="77052" fg:w="1181"/><text x="15.0568%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (155 samples, 0.03%)</title><rect x="15.0722%" y="693" width="0.0298%" height="15" fill="rgb(241,198,18)" fg:x="78433" fg:w="155"/><text x="15.3222%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (318 samples, 0.06%)</title><rect x="15.0419%" y="709" width="0.0611%" height="15" fill="rgb(252,97,53)" fg:x="78275" fg:w="318"/><text x="15.2919%" y="719.50"></text></g><g><title>SpinPause (87 samples, 0.02%)</title><rect x="15.1032%" y="709" width="0.0167%" height="15" fill="rgb(220,88,7)" fg:x="78594" fg:w="87"/><text x="15.3532%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (430 samples, 0.08%)</title><rect x="15.0390%" y="725" width="0.0826%" height="15" fill="rgb(213,176,14)" fg:x="78260" fg:w="430"/><text x="15.2890%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (176 samples, 0.03%)</title><rect x="15.1280%" y="629" width="0.0338%" height="15" fill="rgb(246,73,7)" fg:x="78723" fg:w="176"/><text x="15.3780%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (131 samples, 0.03%)</title><rect x="15.1366%" y="613" width="0.0252%" height="15" fill="rgb(245,64,36)" fg:x="78768" fg:w="131"/><text x="15.3866%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (231 samples, 0.04%)</title><rect x="15.1216%" y="645" width="0.0444%" height="15" fill="rgb(245,80,10)" fg:x="78690" fg:w="231"/><text x="15.3716%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (265 samples, 0.05%)</title><rect x="15.1216%" y="661" width="0.0509%" height="15" fill="rgb(232,107,50)" fg:x="78690" fg:w="265"/><text x="15.3716%" y="671.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (266 samples, 0.05%)</title><rect x="15.1216%" y="693" width="0.0511%" height="15" fill="rgb(253,3,0)" fg:x="78690" fg:w="266"/><text x="15.3716%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (266 samples, 0.05%)</title><rect x="15.1216%" y="677" width="0.0511%" height="15" fill="rgb(212,99,53)" fg:x="78690" fg:w="266"/><text x="15.3716%" y="687.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (287 samples, 0.06%)</title><rect x="15.1216%" y="725" width="0.0552%" height="15" fill="rgb(249,111,54)" fg:x="78690" fg:w="287"/><text x="15.3716%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (287 samples, 0.06%)</title><rect x="15.1216%" y="709" width="0.0552%" height="15" fill="rgb(249,55,30)" fg:x="78690" fg:w="287"/><text x="15.3716%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (53 samples, 0.01%)</title><rect x="15.1768%" y="661" width="0.0102%" height="15" fill="rgb(237,47,42)" fg:x="78977" fg:w="53"/><text x="15.4268%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (54 samples, 0.01%)</title><rect x="15.1768%" y="677" width="0.0104%" height="15" fill="rgb(211,20,18)" fg:x="78977" fg:w="54"/><text x="15.4268%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (75 samples, 0.01%)</title><rect x="15.1768%" y="725" width="0.0144%" height="15" fill="rgb(231,203,46)" fg:x="78977" fg:w="75"/><text x="15.4268%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (75 samples, 0.01%)</title><rect x="15.1768%" y="709" width="0.0144%" height="15" fill="rgb(237,142,3)" fg:x="78977" fg:w="75"/><text x="15.4268%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (75 samples, 0.01%)</title><rect x="15.1768%" y="693" width="0.0144%" height="15" fill="rgb(241,107,1)" fg:x="78977" fg:w="75"/><text x="15.4268%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (65 samples, 0.01%)</title><rect x="15.1912%" y="693" width="0.0125%" height="15" fill="rgb(229,83,13)" fg:x="79052" fg:w="65"/><text x="15.4412%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (64 samples, 0.01%)</title><rect x="15.1914%" y="677" width="0.0123%" height="15" fill="rgb(241,91,40)" fg:x="79053" fg:w="64"/><text x="15.4414%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (64 samples, 0.01%)</title><rect x="15.1914%" y="661" width="0.0123%" height="15" fill="rgb(225,3,45)" fg:x="79053" fg:w="64"/><text x="15.4414%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (110 samples, 0.02%)</title><rect x="15.1912%" y="709" width="0.0211%" height="15" fill="rgb(244,223,14)" fg:x="79052" fg:w="110"/><text x="15.4412%" y="719.50"></text></g><g><title>G1ParTask::work (931 samples, 0.18%)</title><rect x="15.0388%" y="741" width="0.1789%" height="15" fill="rgb(224,124,37)" fg:x="78259" fg:w="931"/><text x="15.2888%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (138 samples, 0.03%)</title><rect x="15.1912%" y="725" width="0.0265%" height="15" fill="rgb(251,171,30)" fg:x="79052" fg:w="138"/><text x="15.4412%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (63 samples, 0.01%)</title><rect x="15.2204%" y="741" width="0.0121%" height="15" fill="rgb(236,46,54)" fg:x="79204" fg:w="63"/><text x="15.4704%" y="751.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="15.2381%" y="645" width="0.0104%" height="15" fill="rgb(245,213,5)" fg:x="79296" fg:w="54"/><text x="15.4881%" y="655.50"></text></g><g><title>__x64_sys_futex (53 samples, 0.01%)</title><rect x="15.2383%" y="629" width="0.0102%" height="15" fill="rgb(230,144,27)" fg:x="79297" fg:w="53"/><text x="15.4883%" y="639.50"></text></g><g><title>do_futex (53 samples, 0.01%)</title><rect x="15.2383%" y="613" width="0.0102%" height="15" fill="rgb(220,86,6)" fg:x="79297" fg:w="53"/><text x="15.4883%" y="623.50"></text></g><g><title>futex_wait (53 samples, 0.01%)</title><rect x="15.2383%" y="597" width="0.0102%" height="15" fill="rgb(240,20,13)" fg:x="79297" fg:w="53"/><text x="15.4883%" y="607.50"></text></g><g><title>futex_wait_queue_me (53 samples, 0.01%)</title><rect x="15.2383%" y="581" width="0.0102%" height="15" fill="rgb(217,89,34)" fg:x="79297" fg:w="53"/><text x="15.4883%" y="591.50"></text></g><g><title>GC_Thread#2 (1,118 samples, 0.21%)</title><rect x="15.0338%" y="837" width="0.2148%" height="15" fill="rgb(229,13,5)" fg:x="78233" fg:w="1118"/><text x="15.2838%" y="847.50"></text></g><g><title>__GI___clone (1,100 samples, 0.21%)</title><rect x="15.0373%" y="821" width="0.2114%" height="15" fill="rgb(244,67,35)" fg:x="78251" fg:w="1100"/><text x="15.2873%" y="831.50"></text></g><g><title>start_thread (1,100 samples, 0.21%)</title><rect x="15.0373%" y="805" width="0.2114%" height="15" fill="rgb(221,40,2)" fg:x="78251" fg:w="1100"/><text x="15.2873%" y="815.50"></text></g><g><title>thread_native_entry (1,100 samples, 0.21%)</title><rect x="15.0373%" y="789" width="0.2114%" height="15" fill="rgb(237,157,21)" fg:x="78251" fg:w="1100"/><text x="15.2873%" y="799.50"></text></g><g><title>Thread::call_run (1,100 samples, 0.21%)</title><rect x="15.0373%" y="773" width="0.2114%" height="15" fill="rgb(222,94,11)" fg:x="78251" fg:w="1100"/><text x="15.2873%" y="783.50"></text></g><g><title>GangWorker::loop (1,100 samples, 0.21%)</title><rect x="15.0373%" y="757" width="0.2114%" height="15" fill="rgb(249,113,6)" fg:x="78251" fg:w="1100"/><text x="15.2873%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (58 samples, 0.01%)</title><rect x="15.2375%" y="741" width="0.0111%" height="15" fill="rgb(238,137,36)" fg:x="79293" fg:w="58"/><text x="15.4875%" y="751.50"></text></g><g><title>PosixSemaphore::wait (58 samples, 0.01%)</title><rect x="15.2375%" y="725" width="0.0111%" height="15" fill="rgb(210,102,26)" fg:x="79293" fg:w="58"/><text x="15.4875%" y="735.50"></text></g><g><title>__new_sem_wait_slow (58 samples, 0.01%)</title><rect x="15.2375%" y="709" width="0.0111%" height="15" fill="rgb(218,30,30)" fg:x="79293" fg:w="58"/><text x="15.4875%" y="719.50"></text></g><g><title>do_futex_wait (57 samples, 0.01%)</title><rect x="15.2377%" y="693" width="0.0110%" height="15" fill="rgb(214,67,26)" fg:x="79294" fg:w="57"/><text x="15.4877%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (57 samples, 0.01%)</title><rect x="15.2377%" y="677" width="0.0110%" height="15" fill="rgb(251,9,53)" fg:x="79294" fg:w="57"/><text x="15.4877%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.01%)</title><rect x="15.2381%" y="661" width="0.0106%" height="15" fill="rgb(228,204,25)" fg:x="79296" fg:w="55"/><text x="15.4881%" y="671.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (57 samples, 0.01%)</title><rect x="15.3063%" y="677" width="0.0110%" height="15" fill="rgb(207,153,8)" fg:x="79651" fg:w="57"/><text x="15.5563%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (195 samples, 0.04%)</title><rect x="15.2867%" y="693" width="0.0375%" height="15" fill="rgb(242,9,16)" fg:x="79549" fg:w="195"/><text x="15.5367%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (351 samples, 0.07%)</title><rect x="15.2573%" y="709" width="0.0675%" height="15" fill="rgb(217,211,10)" fg:x="79396" fg:w="351"/><text x="15.5073%" y="719.50"></text></g><g><title>SpinPause (85 samples, 0.02%)</title><rect x="15.3263%" y="709" width="0.0163%" height="15" fill="rgb(219,228,52)" fg:x="79755" fg:w="85"/><text x="15.5763%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (473 samples, 0.09%)</title><rect x="15.2542%" y="725" width="0.0909%" height="15" fill="rgb(231,92,29)" fg:x="79380" fg:w="473"/><text x="15.5042%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (181 samples, 0.03%)</title><rect x="15.3543%" y="629" width="0.0348%" height="15" fill="rgb(232,8,23)" fg:x="79901" fg:w="181"/><text x="15.6043%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (143 samples, 0.03%)</title><rect x="15.3616%" y="613" width="0.0275%" height="15" fill="rgb(216,211,34)" fg:x="79939" fg:w="143"/><text x="15.6116%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (249 samples, 0.05%)</title><rect x="15.3453%" y="645" width="0.0478%" height="15" fill="rgb(236,151,0)" fg:x="79854" fg:w="249"/><text x="15.5953%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (278 samples, 0.05%)</title><rect x="15.3451%" y="693" width="0.0534%" height="15" fill="rgb(209,168,3)" fg:x="79853" fg:w="278"/><text x="15.5951%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (278 samples, 0.05%)</title><rect x="15.3451%" y="677" width="0.0534%" height="15" fill="rgb(208,129,28)" fg:x="79853" fg:w="278"/><text x="15.5951%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (277 samples, 0.05%)</title><rect x="15.3453%" y="661" width="0.0532%" height="15" fill="rgb(229,78,22)" fg:x="79854" fg:w="277"/><text x="15.5953%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (289 samples, 0.06%)</title><rect x="15.3451%" y="725" width="0.0555%" height="15" fill="rgb(228,187,13)" fg:x="79853" fg:w="289"/><text x="15.5951%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (289 samples, 0.06%)</title><rect x="15.3451%" y="709" width="0.0555%" height="15" fill="rgb(240,119,24)" fg:x="79853" fg:w="289"/><text x="15.5951%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (71 samples, 0.01%)</title><rect x="15.4006%" y="725" width="0.0136%" height="15" fill="rgb(209,194,42)" fg:x="80142" fg:w="71"/><text x="15.6506%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (71 samples, 0.01%)</title><rect x="15.4006%" y="709" width="0.0136%" height="15" fill="rgb(247,200,46)" fg:x="80142" fg:w="71"/><text x="15.6506%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (71 samples, 0.01%)</title><rect x="15.4006%" y="693" width="0.0136%" height="15" fill="rgb(218,76,16)" fg:x="80142" fg:w="71"/><text x="15.6506%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (88 samples, 0.02%)</title><rect x="15.4208%" y="597" width="0.0169%" height="15" fill="rgb(225,21,48)" fg:x="80247" fg:w="88"/><text x="15.6708%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (63 samples, 0.01%)</title><rect x="15.4256%" y="581" width="0.0121%" height="15" fill="rgb(239,223,50)" fg:x="80272" fg:w="63"/><text x="15.6756%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (112 samples, 0.02%)</title><rect x="15.4172%" y="629" width="0.0215%" height="15" fill="rgb(244,45,21)" fg:x="80228" fg:w="112"/><text x="15.6672%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (107 samples, 0.02%)</title><rect x="15.4181%" y="613" width="0.0206%" height="15" fill="rgb(232,33,43)" fg:x="80233" fg:w="107"/><text x="15.6681%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (116 samples, 0.02%)</title><rect x="15.4172%" y="645" width="0.0223%" height="15" fill="rgb(209,8,3)" fg:x="80228" fg:w="116"/><text x="15.6672%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (129 samples, 0.02%)</title><rect x="15.4149%" y="709" width="0.0248%" height="15" fill="rgb(214,25,53)" fg:x="80216" fg:w="129"/><text x="15.6649%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (129 samples, 0.02%)</title><rect x="15.4149%" y="693" width="0.0248%" height="15" fill="rgb(254,186,54)" fg:x="80216" fg:w="129"/><text x="15.6649%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (129 samples, 0.02%)</title><rect x="15.4149%" y="677" width="0.0248%" height="15" fill="rgb(208,174,49)" fg:x="80216" fg:w="129"/><text x="15.6649%" y="687.50"></text></g><g><title>JavaThread::oops_do (128 samples, 0.02%)</title><rect x="15.4151%" y="661" width="0.0246%" height="15" fill="rgb(233,191,51)" fg:x="80217" fg:w="128"/><text x="15.6651%" y="671.50"></text></g><g><title>G1ParTask::work (999 samples, 0.19%)</title><rect x="15.2542%" y="741" width="0.1920%" height="15" fill="rgb(222,134,10)" fg:x="79380" fg:w="999"/><text x="15.5042%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (166 samples, 0.03%)</title><rect x="15.4143%" y="725" width="0.0319%" height="15" fill="rgb(230,226,20)" fg:x="80213" fg:w="166"/><text x="15.6643%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (55 samples, 0.01%)</title><rect x="15.4481%" y="741" width="0.0106%" height="15" fill="rgb(251,111,25)" fg:x="80389" fg:w="55"/><text x="15.6981%" y="751.50"></text></g><g><title>__GI___clone (1,147 samples, 0.22%)</title><rect x="15.2536%" y="821" width="0.2204%" height="15" fill="rgb(224,40,46)" fg:x="79377" fg:w="1147"/><text x="15.5036%" y="831.50"></text></g><g><title>start_thread (1,147 samples, 0.22%)</title><rect x="15.2536%" y="805" width="0.2204%" height="15" fill="rgb(236,108,47)" fg:x="79377" fg:w="1147"/><text x="15.5036%" y="815.50"></text></g><g><title>thread_native_entry (1,147 samples, 0.22%)</title><rect x="15.2536%" y="789" width="0.2204%" height="15" fill="rgb(234,93,0)" fg:x="79377" fg:w="1147"/><text x="15.5036%" y="799.50"></text></g><g><title>Thread::call_run (1,147 samples, 0.22%)</title><rect x="15.2536%" y="773" width="0.2204%" height="15" fill="rgb(224,213,32)" fg:x="79377" fg:w="1147"/><text x="15.5036%" y="783.50"></text></g><g><title>GangWorker::loop (1,147 samples, 0.22%)</title><rect x="15.2536%" y="757" width="0.2204%" height="15" fill="rgb(251,11,48)" fg:x="79377" fg:w="1147"/><text x="15.5036%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (53 samples, 0.01%)</title><rect x="15.4639%" y="741" width="0.0102%" height="15" fill="rgb(236,173,5)" fg:x="80471" fg:w="53"/><text x="15.7139%" y="751.50"></text></g><g><title>GC_Thread#3 (1,175 samples, 0.23%)</title><rect x="15.2486%" y="837" width="0.2258%" height="15" fill="rgb(230,95,12)" fg:x="79351" fg:w="1175"/><text x="15.4986%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (64 samples, 0.01%)</title><rect x="15.5344%" y="677" width="0.0123%" height="15" fill="rgb(232,209,1)" fg:x="80838" fg:w="64"/><text x="15.7844%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (192 samples, 0.04%)</title><rect x="15.5157%" y="693" width="0.0369%" height="15" fill="rgb(232,6,1)" fg:x="80741" fg:w="192"/><text x="15.7657%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (363 samples, 0.07%)</title><rect x="15.4844%" y="709" width="0.0698%" height="15" fill="rgb(210,224,50)" fg:x="80578" fg:w="363"/><text x="15.7344%" y="719.50"></text></g><g><title>SpinPause (77 samples, 0.01%)</title><rect x="15.5563%" y="709" width="0.0148%" height="15" fill="rgb(228,127,35)" fg:x="80952" fg:w="77"/><text x="15.8063%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (473 samples, 0.09%)</title><rect x="15.4817%" y="725" width="0.0909%" height="15" fill="rgb(245,102,45)" fg:x="80564" fg:w="473"/><text x="15.7317%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (114 samples, 0.02%)</title><rect x="15.5867%" y="613" width="0.0219%" height="15" fill="rgb(214,1,49)" fg:x="81110" fg:w="114"/><text x="15.8367%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (158 samples, 0.03%)</title><rect x="15.5784%" y="629" width="0.0304%" height="15" fill="rgb(226,163,40)" fg:x="81067" fg:w="158"/><text x="15.8284%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (201 samples, 0.04%)</title><rect x="15.5732%" y="645" width="0.0386%" height="15" fill="rgb(239,212,28)" fg:x="81040" fg:w="201"/><text x="15.8232%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (223 samples, 0.04%)</title><rect x="15.5728%" y="693" width="0.0429%" height="15" fill="rgb(220,20,13)" fg:x="81038" fg:w="223"/><text x="15.8228%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (223 samples, 0.04%)</title><rect x="15.5728%" y="677" width="0.0429%" height="15" fill="rgb(210,164,35)" fg:x="81038" fg:w="223"/><text x="15.8228%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (223 samples, 0.04%)</title><rect x="15.5728%" y="661" width="0.0429%" height="15" fill="rgb(248,109,41)" fg:x="81038" fg:w="223"/><text x="15.8228%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (229 samples, 0.04%)</title><rect x="15.5728%" y="725" width="0.0440%" height="15" fill="rgb(238,23,50)" fg:x="81038" fg:w="229"/><text x="15.8228%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (229 samples, 0.04%)</title><rect x="15.5728%" y="709" width="0.0440%" height="15" fill="rgb(211,48,49)" fg:x="81038" fg:w="229"/><text x="15.8228%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (55 samples, 0.01%)</title><rect x="15.6170%" y="677" width="0.0106%" height="15" fill="rgb(223,36,21)" fg:x="81268" fg:w="55"/><text x="15.8670%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (61 samples, 0.01%)</title><rect x="15.6168%" y="725" width="0.0117%" height="15" fill="rgb(207,123,46)" fg:x="81267" fg:w="61"/><text x="15.8668%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (61 samples, 0.01%)</title><rect x="15.6168%" y="709" width="0.0117%" height="15" fill="rgb(240,218,32)" fg:x="81267" fg:w="61"/><text x="15.8668%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (61 samples, 0.01%)</title><rect x="15.6168%" y="693" width="0.0117%" height="15" fill="rgb(252,5,43)" fg:x="81267" fg:w="61"/><text x="15.8668%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (156 samples, 0.03%)</title><rect x="15.6416%" y="629" width="0.0300%" height="15" fill="rgb(252,84,19)" fg:x="81396" fg:w="156"/><text x="15.8916%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (121 samples, 0.02%)</title><rect x="15.6483%" y="613" width="0.0233%" height="15" fill="rgb(243,152,39)" fg:x="81431" fg:w="121"/><text x="15.8983%" y="623.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (223 samples, 0.04%)</title><rect x="15.6291%" y="693" width="0.0429%" height="15" fill="rgb(234,160,15)" fg:x="81331" fg:w="223"/><text x="15.8791%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (215 samples, 0.04%)</title><rect x="15.6307%" y="677" width="0.0413%" height="15" fill="rgb(237,34,20)" fg:x="81339" fg:w="215"/><text x="15.8807%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (215 samples, 0.04%)</title><rect x="15.6307%" y="661" width="0.0413%" height="15" fill="rgb(229,97,13)" fg:x="81339" fg:w="215"/><text x="15.8807%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (190 samples, 0.04%)</title><rect x="15.6355%" y="645" width="0.0365%" height="15" fill="rgb(234,71,50)" fg:x="81364" fg:w="190"/><text x="15.8855%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (267 samples, 0.05%)</title><rect x="15.6291%" y="709" width="0.0513%" height="15" fill="rgb(253,155,4)" fg:x="81331" fg:w="267"/><text x="15.8791%" y="719.50"></text></g><g><title>G1ParTask::work (1,037 samples, 0.20%)</title><rect x="15.4817%" y="741" width="0.1993%" height="15" fill="rgb(222,185,37)" fg:x="80564" fg:w="1037"/><text x="15.7317%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (273 samples, 0.05%)</title><rect x="15.6285%" y="725" width="0.0525%" height="15" fill="rgb(251,177,13)" fg:x="81328" fg:w="273"/><text x="15.8785%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (61 samples, 0.01%)</title><rect x="15.6835%" y="741" width="0.0117%" height="15" fill="rgb(250,179,40)" fg:x="81614" fg:w="61"/><text x="15.9335%" y="751.50"></text></g><g><title>do_syscall_64 (57 samples, 0.01%)</title><rect x="15.7012%" y="645" width="0.0110%" height="15" fill="rgb(242,44,2)" fg:x="81706" fg:w="57"/><text x="15.9512%" y="655.50"></text></g><g><title>__x64_sys_futex (57 samples, 0.01%)</title><rect x="15.7012%" y="629" width="0.0110%" height="15" fill="rgb(216,177,13)" fg:x="81706" fg:w="57"/><text x="15.9512%" y="639.50"></text></g><g><title>do_futex (57 samples, 0.01%)</title><rect x="15.7012%" y="613" width="0.0110%" height="15" fill="rgb(216,106,43)" fg:x="81706" fg:w="57"/><text x="15.9512%" y="623.50"></text></g><g><title>futex_wait (55 samples, 0.01%)</title><rect x="15.7016%" y="597" width="0.0106%" height="15" fill="rgb(216,183,2)" fg:x="81708" fg:w="55"/><text x="15.9516%" y="607.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.01%)</title><rect x="15.7018%" y="581" width="0.0104%" height="15" fill="rgb(249,75,3)" fg:x="81709" fg:w="54"/><text x="15.9518%" y="591.50"></text></g><g><title>schedule (54 samples, 0.01%)</title><rect x="15.7018%" y="565" width="0.0104%" height="15" fill="rgb(219,67,39)" fg:x="81709" fg:w="54"/><text x="15.9518%" y="575.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="15.7018%" y="549" width="0.0104%" height="15" fill="rgb(253,228,2)" fg:x="81709" fg:w="54"/><text x="15.9518%" y="559.50"></text></g><g><title>GC_Thread#4 (1,238 samples, 0.24%)</title><rect x="15.4744%" y="837" width="0.2379%" height="15" fill="rgb(235,138,27)" fg:x="80526" fg:w="1238"/><text x="15.7244%" y="847.50"></text></g><g><title>__GI___clone (1,212 samples, 0.23%)</title><rect x="15.4794%" y="821" width="0.2329%" height="15" fill="rgb(236,97,51)" fg:x="80552" fg:w="1212"/><text x="15.7294%" y="831.50"></text></g><g><title>start_thread (1,212 samples, 0.23%)</title><rect x="15.4794%" y="805" width="0.2329%" height="15" fill="rgb(240,80,30)" fg:x="80552" fg:w="1212"/><text x="15.7294%" y="815.50"></text></g><g><title>thread_native_entry (1,212 samples, 0.23%)</title><rect x="15.4794%" y="789" width="0.2329%" height="15" fill="rgb(230,178,19)" fg:x="80552" fg:w="1212"/><text x="15.7294%" y="799.50"></text></g><g><title>Thread::call_run (1,212 samples, 0.23%)</title><rect x="15.4794%" y="773" width="0.2329%" height="15" fill="rgb(210,190,27)" fg:x="80552" fg:w="1212"/><text x="15.7294%" y="783.50"></text></g><g><title>GangWorker::loop (1,212 samples, 0.23%)</title><rect x="15.4794%" y="757" width="0.2329%" height="15" fill="rgb(222,107,31)" fg:x="80552" fg:w="1212"/><text x="15.7294%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (60 samples, 0.01%)</title><rect x="15.7008%" y="741" width="0.0115%" height="15" fill="rgb(216,127,34)" fg:x="81704" fg:w="60"/><text x="15.9508%" y="751.50"></text></g><g><title>PosixSemaphore::wait (60 samples, 0.01%)</title><rect x="15.7008%" y="725" width="0.0115%" height="15" fill="rgb(234,116,52)" fg:x="81704" fg:w="60"/><text x="15.9508%" y="735.50"></text></g><g><title>__new_sem_wait_slow (60 samples, 0.01%)</title><rect x="15.7008%" y="709" width="0.0115%" height="15" fill="rgb(222,124,15)" fg:x="81704" fg:w="60"/><text x="15.9508%" y="719.50"></text></g><g><title>do_futex_wait (60 samples, 0.01%)</title><rect x="15.7008%" y="693" width="0.0115%" height="15" fill="rgb(231,179,28)" fg:x="81704" fg:w="60"/><text x="15.9508%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (60 samples, 0.01%)</title><rect x="15.7008%" y="677" width="0.0115%" height="15" fill="rgb(226,93,45)" fg:x="81704" fg:w="60"/><text x="15.9508%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="15.7012%" y="661" width="0.0111%" height="15" fill="rgb(215,8,51)" fg:x="81706" fg:w="58"/><text x="15.9512%" y="671.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (72 samples, 0.01%)</title><rect x="15.7661%" y="677" width="0.0138%" height="15" fill="rgb(223,106,5)" fg:x="82044" fg:w="72"/><text x="16.0161%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (196 samples, 0.04%)</title><rect x="15.7500%" y="693" width="0.0377%" height="15" fill="rgb(250,191,5)" fg:x="81960" fg:w="196"/><text x="16.0000%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (337 samples, 0.06%)</title><rect x="15.7237%" y="709" width="0.0648%" height="15" fill="rgb(242,132,44)" fg:x="81823" fg:w="337"/><text x="15.9737%" y="719.50"></text></g><g><title>SpinPause (108 samples, 0.02%)</title><rect x="15.7900%" y="709" width="0.0208%" height="15" fill="rgb(251,152,29)" fg:x="82168" fg:w="108"/><text x="16.0400%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (483 samples, 0.09%)</title><rect x="15.7196%" y="725" width="0.0928%" height="15" fill="rgb(218,179,5)" fg:x="81802" fg:w="483"/><text x="15.9696%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (195 samples, 0.04%)</title><rect x="15.8196%" y="629" width="0.0375%" height="15" fill="rgb(227,67,19)" fg:x="82322" fg:w="195"/><text x="16.0696%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (151 samples, 0.03%)</title><rect x="15.8280%" y="613" width="0.0290%" height="15" fill="rgb(233,119,31)" fg:x="82366" fg:w="151"/><text x="16.0780%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (247 samples, 0.05%)</title><rect x="15.8128%" y="645" width="0.0475%" height="15" fill="rgb(241,120,22)" fg:x="82287" fg:w="247"/><text x="16.0628%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (292 samples, 0.06%)</title><rect x="15.8126%" y="693" width="0.0561%" height="15" fill="rgb(224,102,30)" fg:x="82286" fg:w="292"/><text x="16.0626%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (292 samples, 0.06%)</title><rect x="15.8126%" y="677" width="0.0561%" height="15" fill="rgb(210,164,37)" fg:x="82286" fg:w="292"/><text x="16.0626%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (292 samples, 0.06%)</title><rect x="15.8126%" y="661" width="0.0561%" height="15" fill="rgb(226,191,16)" fg:x="82286" fg:w="292"/><text x="16.0626%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (298 samples, 0.06%)</title><rect x="15.8126%" y="725" width="0.0573%" height="15" fill="rgb(214,40,45)" fg:x="82286" fg:w="298"/><text x="16.0626%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (298 samples, 0.06%)</title><rect x="15.8126%" y="709" width="0.0573%" height="15" fill="rgb(244,29,26)" fg:x="82286" fg:w="298"/><text x="16.0626%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (57 samples, 0.01%)</title><rect x="15.8699%" y="725" width="0.0110%" height="15" fill="rgb(216,16,5)" fg:x="82584" fg:w="57"/><text x="16.1199%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (57 samples, 0.01%)</title><rect x="15.8699%" y="709" width="0.0110%" height="15" fill="rgb(249,76,35)" fg:x="82584" fg:w="57"/><text x="16.1199%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (57 samples, 0.01%)</title><rect x="15.8699%" y="693" width="0.0110%" height="15" fill="rgb(207,11,44)" fg:x="82584" fg:w="57"/><text x="16.1199%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (56 samples, 0.01%)</title><rect x="15.8841%" y="629" width="0.0108%" height="15" fill="rgb(228,190,49)" fg:x="82658" fg:w="56"/><text x="16.1341%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (68 samples, 0.01%)</title><rect x="15.8824%" y="709" width="0.0131%" height="15" fill="rgb(214,173,12)" fg:x="82649" fg:w="68"/><text x="16.1324%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (68 samples, 0.01%)</title><rect x="15.8824%" y="693" width="0.0131%" height="15" fill="rgb(218,26,35)" fg:x="82649" fg:w="68"/><text x="16.1324%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (68 samples, 0.01%)</title><rect x="15.8824%" y="677" width="0.0131%" height="15" fill="rgb(220,200,19)" fg:x="82649" fg:w="68"/><text x="16.1324%" y="687.50"></text></g><g><title>JavaThread::oops_do (68 samples, 0.01%)</title><rect x="15.8824%" y="661" width="0.0131%" height="15" fill="rgb(239,95,49)" fg:x="82649" fg:w="68"/><text x="16.1324%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (59 samples, 0.01%)</title><rect x="15.8841%" y="645" width="0.0113%" height="15" fill="rgb(235,85,53)" fg:x="82658" fg:w="59"/><text x="16.1341%" y="655.50"></text></g><g><title>G1ParTask::work (952 samples, 0.18%)</title><rect x="15.7196%" y="741" width="0.1829%" height="15" fill="rgb(233,133,31)" fg:x="81802" fg:w="952"/><text x="15.9696%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (113 samples, 0.02%)</title><rect x="15.8809%" y="725" width="0.0217%" height="15" fill="rgb(218,25,20)" fg:x="82641" fg:w="113"/><text x="16.1309%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (61 samples, 0.01%)</title><rect x="15.9033%" y="741" width="0.0117%" height="15" fill="rgb(252,210,38)" fg:x="82758" fg:w="61"/><text x="16.1533%" y="751.50"></text></g><g><title>__GI___clone (1,104 samples, 0.21%)</title><rect x="15.7173%" y="821" width="0.2122%" height="15" fill="rgb(242,134,21)" fg:x="81790" fg:w="1104"/><text x="15.9673%" y="831.50"></text></g><g><title>start_thread (1,104 samples, 0.21%)</title><rect x="15.7173%" y="805" width="0.2122%" height="15" fill="rgb(213,28,48)" fg:x="81790" fg:w="1104"/><text x="15.9673%" y="815.50"></text></g><g><title>thread_native_entry (1,104 samples, 0.21%)</title><rect x="15.7173%" y="789" width="0.2122%" height="15" fill="rgb(250,196,2)" fg:x="81790" fg:w="1104"/><text x="15.9673%" y="799.50"></text></g><g><title>Thread::call_run (1,104 samples, 0.21%)</title><rect x="15.7173%" y="773" width="0.2122%" height="15" fill="rgb(227,5,17)" fg:x="81790" fg:w="1104"/><text x="15.9673%" y="783.50"></text></g><g><title>GangWorker::loop (1,104 samples, 0.21%)</title><rect x="15.7173%" y="757" width="0.2122%" height="15" fill="rgb(221,226,24)" fg:x="81790" fg:w="1104"/><text x="15.9673%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (54 samples, 0.01%)</title><rect x="15.9191%" y="741" width="0.0104%" height="15" fill="rgb(211,5,48)" fg:x="82840" fg:w="54"/><text x="16.1691%" y="751.50"></text></g><g><title>PosixSemaphore::wait (54 samples, 0.01%)</title><rect x="15.9191%" y="725" width="0.0104%" height="15" fill="rgb(219,150,6)" fg:x="82840" fg:w="54"/><text x="16.1691%" y="735.50"></text></g><g><title>__new_sem_wait_slow (54 samples, 0.01%)</title><rect x="15.9191%" y="709" width="0.0104%" height="15" fill="rgb(251,46,16)" fg:x="82840" fg:w="54"/><text x="16.1691%" y="719.50"></text></g><g><title>do_futex_wait (54 samples, 0.01%)</title><rect x="15.9191%" y="693" width="0.0104%" height="15" fill="rgb(220,204,40)" fg:x="82840" fg:w="54"/><text x="16.1691%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (54 samples, 0.01%)</title><rect x="15.9191%" y="677" width="0.0104%" height="15" fill="rgb(211,85,2)" fg:x="82840" fg:w="54"/><text x="16.1691%" y="687.50"></text></g><g><title>GC_Thread#5 (1,131 samples, 0.22%)</title><rect x="15.7123%" y="837" width="0.2173%" height="15" fill="rgb(229,17,7)" fg:x="81764" fg:w="1131"/><text x="15.9623%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (163 samples, 0.03%)</title><rect x="15.9641%" y="693" width="0.0313%" height="15" fill="rgb(239,72,28)" fg:x="83074" fg:w="163"/><text x="16.2141%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (306 samples, 0.06%)</title><rect x="15.9377%" y="709" width="0.0588%" height="15" fill="rgb(230,47,54)" fg:x="82937" fg:w="306"/><text x="16.1877%" y="719.50"></text></g><g><title>SpinPause (71 samples, 0.01%)</title><rect x="15.9985%" y="709" width="0.0136%" height="15" fill="rgb(214,50,8)" fg:x="83253" fg:w="71"/><text x="16.2485%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (408 samples, 0.08%)</title><rect x="15.9339%" y="725" width="0.0784%" height="15" fill="rgb(216,198,43)" fg:x="82917" fg:w="408"/><text x="16.1839%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (138 samples, 0.03%)</title><rect x="16.0177%" y="629" width="0.0265%" height="15" fill="rgb(234,20,35)" fg:x="83353" fg:w="138"/><text x="16.2677%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (97 samples, 0.02%)</title><rect x="16.0256%" y="613" width="0.0186%" height="15" fill="rgb(254,45,19)" fg:x="83394" fg:w="97"/><text x="16.2756%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (173 samples, 0.03%)</title><rect x="16.0125%" y="645" width="0.0332%" height="15" fill="rgb(219,14,44)" fg:x="83326" fg:w="173"/><text x="16.2625%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (200 samples, 0.04%)</title><rect x="16.0123%" y="693" width="0.0384%" height="15" fill="rgb(217,220,26)" fg:x="83325" fg:w="200"/><text x="16.2623%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (200 samples, 0.04%)</title><rect x="16.0123%" y="677" width="0.0384%" height="15" fill="rgb(213,158,28)" fg:x="83325" fg:w="200"/><text x="16.2623%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (200 samples, 0.04%)</title><rect x="16.0123%" y="661" width="0.0384%" height="15" fill="rgb(252,51,52)" fg:x="83325" fg:w="200"/><text x="16.2623%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (204 samples, 0.04%)</title><rect x="16.0123%" y="725" width="0.0392%" height="15" fill="rgb(246,89,16)" fg:x="83325" fg:w="204"/><text x="16.2623%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (204 samples, 0.04%)</title><rect x="16.0123%" y="709" width="0.0392%" height="15" fill="rgb(216,158,49)" fg:x="83325" fg:w="204"/><text x="16.2623%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (64 samples, 0.01%)</title><rect x="16.0515%" y="725" width="0.0123%" height="15" fill="rgb(236,107,19)" fg:x="83529" fg:w="64"/><text x="16.3015%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (64 samples, 0.01%)</title><rect x="16.0515%" y="709" width="0.0123%" height="15" fill="rgb(228,185,30)" fg:x="83529" fg:w="64"/><text x="16.3015%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (64 samples, 0.01%)</title><rect x="16.0515%" y="693" width="0.0123%" height="15" fill="rgb(246,134,8)" fg:x="83529" fg:w="64"/><text x="16.3015%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (64 samples, 0.01%)</title><rect x="16.0638%" y="693" width="0.0123%" height="15" fill="rgb(214,143,50)" fg:x="83593" fg:w="64"/><text x="16.3138%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (63 samples, 0.01%)</title><rect x="16.0640%" y="677" width="0.0121%" height="15" fill="rgb(228,75,8)" fg:x="83594" fg:w="63"/><text x="16.3140%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (63 samples, 0.01%)</title><rect x="16.0640%" y="661" width="0.0121%" height="15" fill="rgb(207,175,4)" fg:x="83594" fg:w="63"/><text x="16.3140%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (61 samples, 0.01%)</title><rect x="16.0644%" y="645" width="0.0117%" height="15" fill="rgb(205,108,24)" fg:x="83596" fg:w="61"/><text x="16.3144%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (194 samples, 0.04%)</title><rect x="16.0638%" y="709" width="0.0373%" height="15" fill="rgb(244,120,49)" fg:x="83593" fg:w="194"/><text x="16.3138%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (130 samples, 0.02%)</title><rect x="16.0761%" y="693" width="0.0250%" height="15" fill="rgb(223,47,38)" fg:x="83657" fg:w="130"/><text x="16.3261%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (130 samples, 0.02%)</title><rect x="16.0761%" y="677" width="0.0250%" height="15" fill="rgb(229,179,11)" fg:x="83657" fg:w="130"/><text x="16.3261%" y="687.50"></text></g><g><title>JavaThread::oops_do (125 samples, 0.02%)</title><rect x="16.0771%" y="661" width="0.0240%" height="15" fill="rgb(231,122,1)" fg:x="83662" fg:w="125"/><text x="16.3271%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (74 samples, 0.01%)</title><rect x="16.0869%" y="645" width="0.0142%" height="15" fill="rgb(245,119,9)" fg:x="83713" fg:w="74"/><text x="16.3369%" y="655.50"></text></g><g><title>InterpreterOopMap::iterate_oop (73 samples, 0.01%)</title><rect x="16.0871%" y="629" width="0.0140%" height="15" fill="rgb(241,163,25)" fg:x="83714" fg:w="73"/><text x="16.3371%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (64 samples, 0.01%)</title><rect x="16.0888%" y="613" width="0.0123%" height="15" fill="rgb(217,214,3)" fg:x="83723" fg:w="64"/><text x="16.3388%" y="623.50"></text></g><g><title>G1ParTask::work (893 samples, 0.17%)</title><rect x="15.9337%" y="741" width="0.1716%" height="15" fill="rgb(240,86,28)" fg:x="82916" fg:w="893"/><text x="16.1837%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (216 samples, 0.04%)</title><rect x="16.0638%" y="725" width="0.0415%" height="15" fill="rgb(215,47,9)" fg:x="83593" fg:w="216"/><text x="16.3138%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (61 samples, 0.01%)</title><rect x="16.1055%" y="741" width="0.0117%" height="15" fill="rgb(252,25,45)" fg:x="83810" fg:w="61"/><text x="16.3555%" y="751.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="16.1220%" y="645" width="0.0104%" height="15" fill="rgb(251,164,9)" fg:x="83896" fg:w="54"/><text x="16.3720%" y="655.50"></text></g><g><title>__x64_sys_futex (54 samples, 0.01%)</title><rect x="16.1220%" y="629" width="0.0104%" height="15" fill="rgb(233,194,0)" fg:x="83896" fg:w="54"/><text x="16.3720%" y="639.50"></text></g><g><title>do_futex (53 samples, 0.01%)</title><rect x="16.1222%" y="613" width="0.0102%" height="15" fill="rgb(249,111,24)" fg:x="83897" fg:w="53"/><text x="16.3722%" y="623.50"></text></g><g><title>futex_wait (53 samples, 0.01%)</title><rect x="16.1222%" y="597" width="0.0102%" height="15" fill="rgb(250,223,3)" fg:x="83897" fg:w="53"/><text x="16.3722%" y="607.50"></text></g><g><title>__GI___clone (1,043 samples, 0.20%)</title><rect x="15.9324%" y="821" width="0.2004%" height="15" fill="rgb(236,178,37)" fg:x="82909" fg:w="1043"/><text x="16.1824%" y="831.50"></text></g><g><title>start_thread (1,043 samples, 0.20%)</title><rect x="15.9324%" y="805" width="0.2004%" height="15" fill="rgb(241,158,50)" fg:x="82909" fg:w="1043"/><text x="16.1824%" y="815.50"></text></g><g><title>thread_native_entry (1,043 samples, 0.20%)</title><rect x="15.9324%" y="789" width="0.2004%" height="15" fill="rgb(213,121,41)" fg:x="82909" fg:w="1043"/><text x="16.1824%" y="799.50"></text></g><g><title>Thread::call_run (1,043 samples, 0.20%)</title><rect x="15.9324%" y="773" width="0.2004%" height="15" fill="rgb(240,92,3)" fg:x="82909" fg:w="1043"/><text x="16.1824%" y="783.50"></text></g><g><title>GangWorker::loop (1,043 samples, 0.20%)</title><rect x="15.9324%" y="757" width="0.2004%" height="15" fill="rgb(205,123,3)" fg:x="82909" fg:w="1043"/><text x="16.1824%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (59 samples, 0.01%)</title><rect x="16.1215%" y="741" width="0.0113%" height="15" fill="rgb(205,97,47)" fg:x="83893" fg:w="59"/><text x="16.3715%" y="751.50"></text></g><g><title>PosixSemaphore::wait (59 samples, 0.01%)</title><rect x="16.1215%" y="725" width="0.0113%" height="15" fill="rgb(247,152,14)" fg:x="83893" fg:w="59"/><text x="16.3715%" y="735.50"></text></g><g><title>__new_sem_wait_slow (58 samples, 0.01%)</title><rect x="16.1216%" y="709" width="0.0111%" height="15" fill="rgb(248,195,53)" fg:x="83894" fg:w="58"/><text x="16.3716%" y="719.50"></text></g><g><title>do_futex_wait (58 samples, 0.01%)</title><rect x="16.1216%" y="693" width="0.0111%" height="15" fill="rgb(226,201,16)" fg:x="83894" fg:w="58"/><text x="16.3716%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (58 samples, 0.01%)</title><rect x="16.1216%" y="677" width="0.0111%" height="15" fill="rgb(205,98,0)" fg:x="83894" fg:w="58"/><text x="16.3716%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="16.1220%" y="661" width="0.0108%" height="15" fill="rgb(214,191,48)" fg:x="83896" fg:w="56"/><text x="16.3720%" y="671.50"></text></g><g><title>GC_Thread#6 (1,104 samples, 0.21%)</title><rect x="15.9297%" y="837" width="0.2122%" height="15" fill="rgb(237,112,39)" fg:x="82895" fg:w="1104"/><text x="16.1797%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (61 samples, 0.01%)</title><rect x="16.1985%" y="677" width="0.0117%" height="15" fill="rgb(247,203,27)" fg:x="84294" fg:w="61"/><text x="16.4485%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (172 samples, 0.03%)</title><rect x="16.1833%" y="693" width="0.0331%" height="15" fill="rgb(235,124,28)" fg:x="84215" fg:w="172"/><text x="16.4333%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (340 samples, 0.07%)</title><rect x="16.1524%" y="709" width="0.0653%" height="15" fill="rgb(208,207,46)" fg:x="84054" fg:w="340"/><text x="16.4024%" y="719.50"></text></g><g><title>SpinPause (106 samples, 0.02%)</title><rect x="16.2197%" y="709" width="0.0204%" height="15" fill="rgb(234,176,4)" fg:x="84404" fg:w="106"/><text x="16.4697%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (479 samples, 0.09%)</title><rect x="16.1489%" y="725" width="0.0920%" height="15" fill="rgb(230,133,28)" fg:x="84036" fg:w="479"/><text x="16.3989%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (192 samples, 0.04%)</title><rect x="16.2498%" y="629" width="0.0369%" height="15" fill="rgb(211,137,40)" fg:x="84561" fg:w="192"/><text x="16.4998%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (150 samples, 0.03%)</title><rect x="16.2579%" y="613" width="0.0288%" height="15" fill="rgb(254,35,13)" fg:x="84603" fg:w="150"/><text x="16.5079%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (250 samples, 0.05%)</title><rect x="16.2416%" y="645" width="0.0480%" height="15" fill="rgb(225,49,51)" fg:x="84518" fg:w="250"/><text x="16.4916%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (284 samples, 0.05%)</title><rect x="16.2412%" y="693" width="0.0546%" height="15" fill="rgb(251,10,15)" fg:x="84516" fg:w="284"/><text x="16.4912%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (284 samples, 0.05%)</title><rect x="16.2412%" y="677" width="0.0546%" height="15" fill="rgb(228,207,15)" fg:x="84516" fg:w="284"/><text x="16.4912%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (283 samples, 0.05%)</title><rect x="16.2414%" y="661" width="0.0544%" height="15" fill="rgb(241,99,19)" fg:x="84517" fg:w="283"/><text x="16.4914%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (293 samples, 0.06%)</title><rect x="16.2412%" y="725" width="0.0563%" height="15" fill="rgb(207,104,49)" fg:x="84516" fg:w="293"/><text x="16.4912%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (293 samples, 0.06%)</title><rect x="16.2412%" y="709" width="0.0563%" height="15" fill="rgb(234,99,18)" fg:x="84516" fg:w="293"/><text x="16.4912%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (56 samples, 0.01%)</title><rect x="16.2977%" y="677" width="0.0108%" height="15" fill="rgb(213,191,49)" fg:x="84810" fg:w="56"/><text x="16.5477%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (54 samples, 0.01%)</title><rect x="16.2981%" y="661" width="0.0104%" height="15" fill="rgb(210,226,19)" fg:x="84812" fg:w="54"/><text x="16.5481%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (66 samples, 0.01%)</title><rect x="16.2975%" y="725" width="0.0127%" height="15" fill="rgb(229,97,18)" fg:x="84809" fg:w="66"/><text x="16.5475%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (66 samples, 0.01%)</title><rect x="16.2975%" y="709" width="0.0127%" height="15" fill="rgb(211,167,15)" fg:x="84809" fg:w="66"/><text x="16.5475%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (66 samples, 0.01%)</title><rect x="16.2975%" y="693" width="0.0127%" height="15" fill="rgb(210,169,34)" fg:x="84809" fg:w="66"/><text x="16.5475%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (58 samples, 0.01%)</title><rect x="16.3104%" y="693" width="0.0111%" height="15" fill="rgb(241,121,31)" fg:x="84876" fg:w="58"/><text x="16.5604%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (57 samples, 0.01%)</title><rect x="16.3105%" y="677" width="0.0110%" height="15" fill="rgb(232,40,11)" fg:x="84877" fg:w="57"/><text x="16.5605%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (57 samples, 0.01%)</title><rect x="16.3105%" y="661" width="0.0110%" height="15" fill="rgb(205,86,26)" fg:x="84877" fg:w="57"/><text x="16.5605%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (110 samples, 0.02%)</title><rect x="16.3104%" y="709" width="0.0211%" height="15" fill="rgb(231,126,28)" fg:x="84876" fg:w="110"/><text x="16.5604%" y="719.50"></text></g><g><title>G1RootProcessor::evacuate_roots (125 samples, 0.02%)</title><rect x="16.3102%" y="725" width="0.0240%" height="15" fill="rgb(219,221,18)" fg:x="84875" fg:w="125"/><text x="16.5602%" y="735.50"></text></g><g><title>G1ParTask::work (965 samples, 0.19%)</title><rect x="16.1489%" y="741" width="0.1854%" height="15" fill="rgb(211,40,0)" fg:x="84036" fg:w="965"/><text x="16.3989%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (53 samples, 0.01%)</title><rect x="16.3355%" y="741" width="0.0102%" height="15" fill="rgb(239,85,43)" fg:x="85007" fg:w="53"/><text x="16.5855%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.01%)</title><rect x="16.3528%" y="517" width="0.0110%" height="15" fill="rgb(231,55,21)" fg:x="85097" fg:w="57"/><text x="16.6028%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.01%)</title><rect x="16.3530%" y="501" width="0.0108%" height="15" fill="rgb(225,184,43)" fg:x="85098" fg:w="56"/><text x="16.6030%" y="511.50"></text></g><g><title>native_write_msr (56 samples, 0.01%)</title><rect x="16.3530%" y="485" width="0.0108%" height="15" fill="rgb(251,158,41)" fg:x="85098" fg:w="56"/><text x="16.6030%" y="495.50"></text></g><g><title>finish_task_switch (60 samples, 0.01%)</title><rect x="16.3524%" y="533" width="0.0115%" height="15" fill="rgb(234,159,37)" fg:x="85095" fg:w="60"/><text x="16.6024%" y="543.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="16.3513%" y="645" width="0.0135%" height="15" fill="rgb(216,204,22)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="655.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.01%)</title><rect x="16.3513%" y="629" width="0.0135%" height="15" fill="rgb(214,17,3)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="639.50"></text></g><g><title>do_futex (70 samples, 0.01%)</title><rect x="16.3513%" y="613" width="0.0135%" height="15" fill="rgb(212,111,17)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="623.50"></text></g><g><title>futex_wait (70 samples, 0.01%)</title><rect x="16.3513%" y="597" width="0.0135%" height="15" fill="rgb(221,157,24)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="607.50"></text></g><g><title>futex_wait_queue_me (70 samples, 0.01%)</title><rect x="16.3513%" y="581" width="0.0135%" height="15" fill="rgb(252,16,13)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="591.50"></text></g><g><title>schedule (70 samples, 0.01%)</title><rect x="16.3513%" y="565" width="0.0135%" height="15" fill="rgb(221,62,2)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="575.50"></text></g><g><title>__schedule (70 samples, 0.01%)</title><rect x="16.3513%" y="549" width="0.0135%" height="15" fill="rgb(247,87,22)" fg:x="85089" fg:w="70"/><text x="16.6013%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="16.3513%" y="661" width="0.0138%" height="15" fill="rgb(215,73,9)" fg:x="85089" fg:w="72"/><text x="16.6013%" y="671.50"></text></g><g><title>GC_Thread#7 (1,163 samples, 0.22%)</title><rect x="16.1418%" y="837" width="0.2235%" height="15" fill="rgb(207,175,33)" fg:x="83999" fg:w="1163"/><text x="16.3918%" y="847.50"></text></g><g><title>__GI___clone (1,141 samples, 0.22%)</title><rect x="16.1461%" y="821" width="0.2193%" height="15" fill="rgb(243,129,54)" fg:x="84021" fg:w="1141"/><text x="16.3961%" y="831.50"></text></g><g><title>start_thread (1,141 samples, 0.22%)</title><rect x="16.1461%" y="805" width="0.2193%" height="15" fill="rgb(227,119,45)" fg:x="84021" fg:w="1141"/><text x="16.3961%" y="815.50"></text></g><g><title>thread_native_entry (1,141 samples, 0.22%)</title><rect x="16.1461%" y="789" width="0.2193%" height="15" fill="rgb(205,109,36)" fg:x="84021" fg:w="1141"/><text x="16.3961%" y="799.50"></text></g><g><title>Thread::call_run (1,141 samples, 0.22%)</title><rect x="16.1461%" y="773" width="0.2193%" height="15" fill="rgb(205,6,39)" fg:x="84021" fg:w="1141"/><text x="16.3961%" y="783.50"></text></g><g><title>GangWorker::loop (1,141 samples, 0.22%)</title><rect x="16.1461%" y="757" width="0.2193%" height="15" fill="rgb(221,32,16)" fg:x="84021" fg:w="1141"/><text x="16.3961%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (77 samples, 0.01%)</title><rect x="16.3505%" y="741" width="0.0148%" height="15" fill="rgb(228,144,50)" fg:x="85085" fg:w="77"/><text x="16.6005%" y="751.50"></text></g><g><title>PosixSemaphore::wait (77 samples, 0.01%)</title><rect x="16.3505%" y="725" width="0.0148%" height="15" fill="rgb(229,201,53)" fg:x="85085" fg:w="77"/><text x="16.6005%" y="735.50"></text></g><g><title>__new_sem_wait_slow (76 samples, 0.01%)</title><rect x="16.3507%" y="709" width="0.0146%" height="15" fill="rgb(249,153,27)" fg:x="85086" fg:w="76"/><text x="16.6007%" y="719.50"></text></g><g><title>do_futex_wait (74 samples, 0.01%)</title><rect x="16.3511%" y="693" width="0.0142%" height="15" fill="rgb(227,106,25)" fg:x="85088" fg:w="74"/><text x="16.6011%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (74 samples, 0.01%)</title><rect x="16.3511%" y="677" width="0.0142%" height="15" fill="rgb(230,65,29)" fg:x="85088" fg:w="74"/><text x="16.6011%" y="687.50"></text></g><g><title>[perf-261576.map] (115 samples, 0.02%)</title><rect x="16.3740%" y="821" width="0.0221%" height="15" fill="rgb(221,57,46)" fg:x="85207" fg:w="115"/><text x="16.6240%" y="831.50"></text></g><g><title>Service_Thread (137 samples, 0.03%)</title><rect x="16.3738%" y="837" width="0.0263%" height="15" fill="rgb(229,161,17)" fg:x="85206" fg:w="137"/><text x="16.6238%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (164 samples, 0.03%)</title><rect x="16.4422%" y="485" width="0.0315%" height="15" fill="rgb(222,213,11)" fg:x="85562" fg:w="164"/><text x="16.6922%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (160 samples, 0.03%)</title><rect x="16.4430%" y="469" width="0.0307%" height="15" fill="rgb(235,35,13)" fg:x="85566" fg:w="160"/><text x="16.6930%" y="479.50"></text></g><g><title>native_write_msr (159 samples, 0.03%)</title><rect x="16.4431%" y="453" width="0.0306%" height="15" fill="rgb(233,158,34)" fg:x="85567" fg:w="159"/><text x="16.6931%" y="463.50"></text></g><g><title>finish_task_switch (174 samples, 0.03%)</title><rect x="16.4405%" y="501" width="0.0334%" height="15" fill="rgb(215,151,48)" fg:x="85553" fg:w="174"/><text x="16.6905%" y="511.50"></text></g><g><title>futex_wait_queue_me (293 samples, 0.06%)</title><rect x="16.4251%" y="549" width="0.0563%" height="15" fill="rgb(229,84,14)" fg:x="85473" fg:w="293"/><text x="16.6751%" y="559.50"></text></g><g><title>schedule (268 samples, 0.05%)</title><rect x="16.4299%" y="533" width="0.0515%" height="15" fill="rgb(229,68,14)" fg:x="85498" fg:w="268"/><text x="16.6799%" y="543.50"></text></g><g><title>__schedule (266 samples, 0.05%)</title><rect x="16.4303%" y="517" width="0.0511%" height="15" fill="rgb(243,106,26)" fg:x="85500" fg:w="266"/><text x="16.6803%" y="527.50"></text></g><g><title>do_futex (322 samples, 0.06%)</title><rect x="16.4241%" y="581" width="0.0619%" height="15" fill="rgb(206,45,38)" fg:x="85468" fg:w="322"/><text x="16.6741%" y="591.50"></text></g><g><title>futex_wait (322 samples, 0.06%)</title><rect x="16.4241%" y="565" width="0.0619%" height="15" fill="rgb(226,6,15)" fg:x="85468" fg:w="322"/><text x="16.6741%" y="575.50"></text></g><g><title>do_syscall_64 (334 samples, 0.06%)</title><rect x="16.4226%" y="613" width="0.0642%" height="15" fill="rgb(232,22,54)" fg:x="85460" fg:w="334"/><text x="16.6726%" y="623.50"></text></g><g><title>__x64_sys_futex (333 samples, 0.06%)</title><rect x="16.4228%" y="597" width="0.0640%" height="15" fill="rgb(229,222,32)" fg:x="85461" fg:w="333"/><text x="16.6728%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (343 samples, 0.07%)</title><rect x="16.4226%" y="629" width="0.0659%" height="15" fill="rgb(228,62,29)" fg:x="85460" fg:w="343"/><text x="16.6726%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (368 samples, 0.07%)</title><rect x="16.4182%" y="677" width="0.0707%" height="15" fill="rgb(251,103,34)" fg:x="85437" fg:w="368"/><text x="16.6682%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (367 samples, 0.07%)</title><rect x="16.4184%" y="661" width="0.0705%" height="15" fill="rgb(233,12,30)" fg:x="85438" fg:w="367"/><text x="16.6684%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (357 samples, 0.07%)</title><rect x="16.4203%" y="645" width="0.0686%" height="15" fill="rgb(238,52,0)" fg:x="85448" fg:w="357"/><text x="16.6703%" y="655.50"></text></g><g><title>Monitor::wait (441 samples, 0.08%)</title><rect x="16.4122%" y="725" width="0.0847%" height="15" fill="rgb(223,98,5)" fg:x="85406" fg:w="441"/><text x="16.6622%" y="735.50"></text></g><g><title>Monitor::IWait (436 samples, 0.08%)</title><rect x="16.4132%" y="709" width="0.0838%" height="15" fill="rgb(228,75,37)" fg:x="85411" fg:w="436"/><text x="16.6632%" y="719.50"></text></g><g><title>os::PlatformEvent::park (422 samples, 0.08%)</title><rect x="16.4159%" y="693" width="0.0811%" height="15" fill="rgb(205,115,49)" fg:x="85425" fg:w="422"/><text x="16.6659%" y="703.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (56 samples, 0.01%)</title><rect x="16.5023%" y="677" width="0.0108%" height="15" fill="rgb(250,154,43)" fg:x="85875" fg:w="56"/><text x="16.7523%" y="687.50"></text></g><g><title>NMethodSweeper::process_compiled_method (67 samples, 0.01%)</title><rect x="16.5021%" y="693" width="0.0129%" height="15" fill="rgb(226,43,29)" fg:x="85874" fg:w="67"/><text x="16.7521%" y="703.50"></text></g><g><title>NMethodSweeper::possibly_sweep (95 samples, 0.02%)</title><rect x="16.4970%" y="725" width="0.0183%" height="15" fill="rgb(249,228,39)" fg:x="85847" fg:w="95"/><text x="16.7470%" y="735.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (78 samples, 0.01%)</title><rect x="16.5002%" y="709" width="0.0150%" height="15" fill="rgb(216,79,43)" fg:x="85864" fg:w="78"/><text x="16.7502%" y="719.50"></text></g><g><title>__GI___clone (579 samples, 0.11%)</title><rect x="16.4066%" y="821" width="0.1113%" height="15" fill="rgb(228,95,12)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="831.50"></text></g><g><title>start_thread (579 samples, 0.11%)</title><rect x="16.4066%" y="805" width="0.1113%" height="15" fill="rgb(249,221,15)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="815.50"></text></g><g><title>thread_native_entry (579 samples, 0.11%)</title><rect x="16.4066%" y="789" width="0.1113%" height="15" fill="rgb(233,34,13)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="799.50"></text></g><g><title>Thread::call_run (579 samples, 0.11%)</title><rect x="16.4066%" y="773" width="0.1113%" height="15" fill="rgb(214,103,39)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (579 samples, 0.11%)</title><rect x="16.4066%" y="757" width="0.1113%" height="15" fill="rgb(251,126,39)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="767.50"></text></g><g><title>NMethodSweeper::sweeper_loop (579 samples, 0.11%)</title><rect x="16.4066%" y="741" width="0.1113%" height="15" fill="rgb(214,216,36)" fg:x="85377" fg:w="579"/><text x="16.6566%" y="751.50"></text></g><g><title>Sweeper_thread (620 samples, 0.12%)</title><rect x="16.4018%" y="837" width="0.1191%" height="15" fill="rgb(220,221,8)" fg:x="85352" fg:w="620"/><text x="16.6518%" y="847.50"></text></g><g><title>get_cpu_load (62 samples, 0.01%)</title><rect x="16.6057%" y="805" width="0.0119%" height="15" fill="rgb(240,216,3)" fg:x="86413" fg:w="62"/><text x="16.8557%" y="815.50"></text></g><g><title>get_cpuload_internal (62 samples, 0.01%)</title><rect x="16.6057%" y="789" width="0.0119%" height="15" fill="rgb(232,218,17)" fg:x="86413" fg:w="62"/><text x="16.8557%" y="799.50"></text></g><g><title>get_totalticks (60 samples, 0.01%)</title><rect x="16.6061%" y="773" width="0.0115%" height="15" fill="rgb(229,163,45)" fg:x="86415" fg:w="60"/><text x="16.8561%" y="783.50"></text></g><g><title>[perf-261576.map] (494 samples, 0.09%)</title><rect x="16.5254%" y="821" width="0.0949%" height="15" fill="rgb(231,110,42)" fg:x="85995" fg:w="494"/><text x="16.7754%" y="831.50"></text></g><g><title>Thread-0 (550 samples, 0.11%)</title><rect x="16.5210%" y="837" width="0.1057%" height="15" fill="rgb(208,170,48)" fg:x="85972" fg:w="550"/><text x="16.7710%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.01%)</title><rect x="16.6409%" y="485" width="0.0111%" height="15" fill="rgb(239,116,25)" fg:x="86596" fg:w="58"/><text x="16.8909%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.01%)</title><rect x="16.6411%" y="469" width="0.0110%" height="15" fill="rgb(219,200,50)" fg:x="86597" fg:w="57"/><text x="16.8911%" y="479.50"></text></g><g><title>native_write_msr (57 samples, 0.01%)</title><rect x="16.6411%" y="453" width="0.0110%" height="15" fill="rgb(245,200,0)" fg:x="86597" fg:w="57"/><text x="16.8911%" y="463.50"></text></g><g><title>finish_task_switch (63 samples, 0.01%)</title><rect x="16.6403%" y="501" width="0.0121%" height="15" fill="rgb(245,119,33)" fg:x="86593" fg:w="63"/><text x="16.8903%" y="511.50"></text></g><g><title>do_syscall_64 (85 samples, 0.02%)</title><rect x="16.6376%" y="613" width="0.0163%" height="15" fill="rgb(231,125,12)" fg:x="86579" fg:w="85"/><text x="16.8876%" y="623.50"></text></g><g><title>__x64_sys_futex (85 samples, 0.02%)</title><rect x="16.6376%" y="597" width="0.0163%" height="15" fill="rgb(216,96,41)" fg:x="86579" fg:w="85"/><text x="16.8876%" y="607.50"></text></g><g><title>do_futex (85 samples, 0.02%)</title><rect x="16.6376%" y="581" width="0.0163%" height="15" fill="rgb(248,43,45)" fg:x="86579" fg:w="85"/><text x="16.8876%" y="591.50"></text></g><g><title>futex_wait (83 samples, 0.02%)</title><rect x="16.6380%" y="565" width="0.0159%" height="15" fill="rgb(217,222,7)" fg:x="86581" fg:w="83"/><text x="16.8880%" y="575.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.02%)</title><rect x="16.6384%" y="549" width="0.0156%" height="15" fill="rgb(233,28,6)" fg:x="86583" fg:w="81"/><text x="16.8884%" y="559.50"></text></g><g><title>schedule (76 samples, 0.01%)</title><rect x="16.6393%" y="533" width="0.0146%" height="15" fill="rgb(231,218,15)" fg:x="86588" fg:w="76"/><text x="16.8893%" y="543.50"></text></g><g><title>__schedule (76 samples, 0.01%)</title><rect x="16.6393%" y="517" width="0.0146%" height="15" fill="rgb(226,171,48)" fg:x="86588" fg:w="76"/><text x="16.8893%" y="527.50"></text></g><g><title>__pthread_cond_timedwait (101 samples, 0.02%)</title><rect x="16.6353%" y="677" width="0.0194%" height="15" fill="rgb(235,201,9)" fg:x="86567" fg:w="101"/><text x="16.8853%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (101 samples, 0.02%)</title><rect x="16.6353%" y="661" width="0.0194%" height="15" fill="rgb(217,80,15)" fg:x="86567" fg:w="101"/><text x="16.8853%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (95 samples, 0.02%)</title><rect x="16.6365%" y="645" width="0.0183%" height="15" fill="rgb(219,152,8)" fg:x="86573" fg:w="95"/><text x="16.8865%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.02%)</title><rect x="16.6376%" y="629" width="0.0171%" height="15" fill="rgb(243,107,38)" fg:x="86579" fg:w="89"/><text x="16.8876%" y="639.50"></text></g><g><title>Monitor::wait (113 samples, 0.02%)</title><rect x="16.6340%" y="725" width="0.0217%" height="15" fill="rgb(231,17,5)" fg:x="86560" fg:w="113"/><text x="16.8840%" y="735.50"></text></g><g><title>Monitor::IWait (111 samples, 0.02%)</title><rect x="16.6344%" y="709" width="0.0213%" height="15" fill="rgb(209,25,54)" fg:x="86562" fg:w="111"/><text x="16.8844%" y="719.50"></text></g><g><title>os::PlatformEvent::park (108 samples, 0.02%)</title><rect x="16.6349%" y="693" width="0.0208%" height="15" fill="rgb(219,0,2)" fg:x="86565" fg:w="108"/><text x="16.8849%" y="703.50"></text></g><g><title>__GI___clone (143 samples, 0.03%)</title><rect x="16.6292%" y="821" width="0.0275%" height="15" fill="rgb(246,9,5)" fg:x="86535" fg:w="143"/><text x="16.8792%" y="831.50"></text></g><g><title>start_thread (143 samples, 0.03%)</title><rect x="16.6292%" y="805" width="0.0275%" height="15" fill="rgb(226,159,4)" fg:x="86535" fg:w="143"/><text x="16.8792%" y="815.50"></text></g><g><title>thread_native_entry (143 samples, 0.03%)</title><rect x="16.6292%" y="789" width="0.0275%" height="15" fill="rgb(219,175,34)" fg:x="86535" fg:w="143"/><text x="16.8792%" y="799.50"></text></g><g><title>Thread::call_run (143 samples, 0.03%)</title><rect x="16.6292%" y="773" width="0.0275%" height="15" fill="rgb(236,10,46)" fg:x="86535" fg:w="143"/><text x="16.8792%" y="783.50"></text></g><g><title>WatcherThread::run (143 samples, 0.03%)</title><rect x="16.6292%" y="757" width="0.0275%" height="15" fill="rgb(240,211,16)" fg:x="86535" fg:w="143"/><text x="16.8792%" y="767.50"></text></g><g><title>WatcherThread::sleep (118 samples, 0.02%)</title><rect x="16.6340%" y="741" width="0.0227%" height="15" fill="rgb(205,3,43)" fg:x="86560" fg:w="118"/><text x="16.8840%" y="751.50"></text></g><g><title>VM_Periodic_Tas (157 samples, 0.03%)</title><rect x="16.6267%" y="837" width="0.0302%" height="15" fill="rgb(245,7,22)" fg:x="86522" fg:w="157"/><text x="16.8767%" y="847.50"></text></g><g><title>[unknown] (53 samples, 0.01%)</title><rect x="16.6609%" y="821" width="0.0102%" height="15" fill="rgb(239,132,32)" fg:x="86700" fg:w="53"/><text x="16.9109%" y="831.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.01%)</title><rect x="16.6814%" y="549" width="0.0110%" height="15" fill="rgb(228,202,34)" fg:x="86807" fg:w="57"/><text x="16.9314%" y="559.50"></text></g><g><title>schedule (54 samples, 0.01%)</title><rect x="16.6820%" y="533" width="0.0104%" height="15" fill="rgb(254,200,22)" fg:x="86810" fg:w="54"/><text x="16.9320%" y="543.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="16.6820%" y="517" width="0.0104%" height="15" fill="rgb(219,10,39)" fg:x="86810" fg:w="54"/><text x="16.9320%" y="527.50"></text></g><g><title>do_syscall_64 (60 samples, 0.01%)</title><rect x="16.6812%" y="613" width="0.0115%" height="15" fill="rgb(226,210,39)" fg:x="86806" fg:w="60"/><text x="16.9312%" y="623.50"></text></g><g><title>__x64_sys_futex (60 samples, 0.01%)</title><rect x="16.6812%" y="597" width="0.0115%" height="15" fill="rgb(208,219,16)" fg:x="86806" fg:w="60"/><text x="16.9312%" y="607.50"></text></g><g><title>do_futex (60 samples, 0.01%)</title><rect x="16.6812%" y="581" width="0.0115%" height="15" fill="rgb(216,158,51)" fg:x="86806" fg:w="60"/><text x="16.9312%" y="591.50"></text></g><g><title>futex_wait (60 samples, 0.01%)</title><rect x="16.6812%" y="565" width="0.0115%" height="15" fill="rgb(233,14,44)" fg:x="86806" fg:w="60"/><text x="16.9312%" y="575.50"></text></g><g><title>__pthread_cond_timedwait (62 samples, 0.01%)</title><rect x="16.6810%" y="677" width="0.0119%" height="15" fill="rgb(237,97,39)" fg:x="86805" fg:w="62"/><text x="16.9310%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (62 samples, 0.01%)</title><rect x="16.6810%" y="661" width="0.0119%" height="15" fill="rgb(218,198,43)" fg:x="86805" fg:w="62"/><text x="16.9310%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (62 samples, 0.01%)</title><rect x="16.6810%" y="645" width="0.0119%" height="15" fill="rgb(231,104,20)" fg:x="86805" fg:w="62"/><text x="16.9310%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.01%)</title><rect x="16.6812%" y="629" width="0.0117%" height="15" fill="rgb(254,36,13)" fg:x="86806" fg:w="61"/><text x="16.9312%" y="639.50"></text></g><g><title>Monitor::wait (69 samples, 0.01%)</title><rect x="16.6807%" y="725" width="0.0133%" height="15" fill="rgb(248,14,50)" fg:x="86803" fg:w="69"/><text x="16.9307%" y="735.50"></text></g><g><title>Monitor::IWait (68 samples, 0.01%)</title><rect x="16.6809%" y="709" width="0.0131%" height="15" fill="rgb(217,107,29)" fg:x="86804" fg:w="68"/><text x="16.9309%" y="719.50"></text></g><g><title>os::PlatformEvent::park (67 samples, 0.01%)</title><rect x="16.6810%" y="693" width="0.0129%" height="15" fill="rgb(251,169,33)" fg:x="86805" fg:w="67"/><text x="16.9310%" y="703.50"></text></g><g><title>WorkGang::run_task (59 samples, 0.01%)</title><rect x="16.7154%" y="693" width="0.0113%" height="15" fill="rgb(217,108,32)" fg:x="86984" fg:w="59"/><text x="16.9654%" y="703.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (59 samples, 0.01%)</title><rect x="16.7154%" y="677" width="0.0113%" height="15" fill="rgb(219,66,42)" fg:x="86984" fg:w="59"/><text x="16.9654%" y="687.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (62 samples, 0.01%)</title><rect x="16.7151%" y="709" width="0.0119%" height="15" fill="rgb(206,180,7)" fg:x="86982" fg:w="62"/><text x="16.9651%" y="719.50"></text></g><g><title>SafepointSynchronize::begin (204 samples, 0.04%)</title><rect x="16.6939%" y="725" width="0.0392%" height="15" fill="rgb(208,226,31)" fg:x="86872" fg:w="204"/><text x="16.9439%" y="735.50"></text></g><g><title>VMThread::evaluate_operation (133 samples, 0.03%)</title><rect x="16.7360%" y="725" width="0.0256%" height="15" fill="rgb(218,26,49)" fg:x="87091" fg:w="133"/><text x="16.9860%" y="735.50"></text></g><g><title>VM_Operation::evaluate (132 samples, 0.03%)</title><rect x="16.7362%" y="709" width="0.0254%" height="15" fill="rgb(233,197,48)" fg:x="87092" fg:w="132"/><text x="16.9862%" y="719.50"></text></g><g><title>Thread::call_run (437 samples, 0.08%)</title><rect x="16.6791%" y="773" width="0.0840%" height="15" fill="rgb(252,181,51)" fg:x="86795" fg:w="437"/><text x="16.9291%" y="783.50"></text></g><g><title>VMThread::run (437 samples, 0.08%)</title><rect x="16.6791%" y="757" width="0.0840%" height="15" fill="rgb(253,90,19)" fg:x="86795" fg:w="437"/><text x="16.9291%" y="767.50"></text></g><g><title>VMThread::loop (437 samples, 0.08%)</title><rect x="16.6791%" y="741" width="0.0840%" height="15" fill="rgb(215,171,30)" fg:x="86795" fg:w="437"/><text x="16.9291%" y="751.50"></text></g><g><title>__GI___clone (486 samples, 0.09%)</title><rect x="16.6711%" y="821" width="0.0934%" height="15" fill="rgb(214,222,9)" fg:x="86753" fg:w="486"/><text x="16.9211%" y="831.50"></text></g><g><title>start_thread (444 samples, 0.09%)</title><rect x="16.6791%" y="805" width="0.0853%" height="15" fill="rgb(223,3,22)" fg:x="86795" fg:w="444"/><text x="16.9291%" y="815.50"></text></g><g><title>thread_native_entry (444 samples, 0.09%)</title><rect x="16.6791%" y="789" width="0.0853%" height="15" fill="rgb(225,196,46)" fg:x="86795" fg:w="444"/><text x="16.9291%" y="799.50"></text></g><g><title>VM_Thread (564 samples, 0.11%)</title><rect x="16.6568%" y="837" width="0.1084%" height="15" fill="rgb(209,110,37)" fg:x="86679" fg:w="564"/><text x="16.9068%" y="847.50"></text></g><g><title>schedule_hrtimeout_range_clock (64 samples, 0.01%)</title><rect x="16.8300%" y="741" width="0.0123%" height="15" fill="rgb(249,89,12)" fg:x="87580" fg:w="64"/><text x="17.0800%" y="751.50"></text></g><g><title>schedule (58 samples, 0.01%)</title><rect x="16.8311%" y="725" width="0.0111%" height="15" fill="rgb(226,27,33)" fg:x="87586" fg:w="58"/><text x="17.0811%" y="735.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="16.8311%" y="709" width="0.0111%" height="15" fill="rgb(213,82,22)" fg:x="87586" fg:w="58"/><text x="17.0811%" y="719.50"></text></g><g><title>__x64_sys_epoll_pwait (79 samples, 0.02%)</title><rect x="16.8273%" y="773" width="0.0152%" height="15" fill="rgb(248,140,0)" fg:x="87566" fg:w="79"/><text x="17.0773%" y="783.50"></text></g><g><title>do_epoll_wait (78 samples, 0.01%)</title><rect x="16.8275%" y="757" width="0.0150%" height="15" fill="rgb(228,106,3)" fg:x="87567" fg:w="78"/><text x="17.0775%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (107 samples, 0.02%)</title><rect x="16.8488%" y="661" width="0.0206%" height="15" fill="rgb(209,23,37)" fg:x="87678" fg:w="107"/><text x="17.0988%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (104 samples, 0.02%)</title><rect x="16.8494%" y="645" width="0.0200%" height="15" fill="rgb(241,93,50)" fg:x="87681" fg:w="104"/><text x="17.0994%" y="655.50"></text></g><g><title>native_write_msr (104 samples, 0.02%)</title><rect x="16.8494%" y="629" width="0.0200%" height="15" fill="rgb(253,46,43)" fg:x="87681" fg:w="104"/><text x="17.0994%" y="639.50"></text></g><g><title>finish_task_switch (112 samples, 0.02%)</title><rect x="16.8482%" y="677" width="0.0215%" height="15" fill="rgb(226,206,43)" fg:x="87675" fg:w="112"/><text x="17.0982%" y="687.50"></text></g><g><title>futex_wait_queue_me (146 samples, 0.03%)</title><rect x="16.8444%" y="725" width="0.0281%" height="15" fill="rgb(217,54,7)" fg:x="87655" fg:w="146"/><text x="17.0944%" y="735.50"></text></g><g><title>schedule (142 samples, 0.03%)</title><rect x="16.8452%" y="709" width="0.0273%" height="15" fill="rgb(223,5,52)" fg:x="87659" fg:w="142"/><text x="17.0952%" y="719.50"></text></g><g><title>__schedule (142 samples, 0.03%)</title><rect x="16.8452%" y="693" width="0.0273%" height="15" fill="rgb(206,52,46)" fg:x="87659" fg:w="142"/><text x="17.0952%" y="703.50"></text></g><g><title>futex_wait (152 samples, 0.03%)</title><rect x="16.8438%" y="741" width="0.0292%" height="15" fill="rgb(253,136,11)" fg:x="87652" fg:w="152"/><text x="17.0938%" y="751.50"></text></g><g><title>__x64_sys_futex (182 samples, 0.03%)</title><rect x="16.8427%" y="773" width="0.0350%" height="15" fill="rgb(208,106,33)" fg:x="87646" fg:w="182"/><text x="17.0927%" y="783.50"></text></g><g><title>do_futex (179 samples, 0.03%)</title><rect x="16.8432%" y="757" width="0.0344%" height="15" fill="rgb(206,54,4)" fg:x="87649" fg:w="179"/><text x="17.0932%" y="767.50"></text></g><g><title>do_syscall_64 (375 samples, 0.07%)</title><rect x="16.8248%" y="789" width="0.0721%" height="15" fill="rgb(213,3,15)" fg:x="87553" fg:w="375"/><text x="17.0748%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (384 samples, 0.07%)</title><rect x="16.8248%" y="805" width="0.0738%" height="15" fill="rgb(252,211,39)" fg:x="87553" fg:w="384"/><text x="17.0748%" y="815.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (694 samples, 0.13%)</title><rect x="16.7723%" y="821" width="0.1334%" height="15" fill="rgb(223,6,36)" fg:x="87280" fg:w="694"/><text x="17.0223%" y="831.50"></text></g><g><title>bazel (730 samples, 0.14%)</title><rect x="16.7706%" y="837" width="0.1403%" height="15" fill="rgb(252,169,45)" fg:x="87271" fg:w="730"/><text x="17.0206%" y="847.50"></text></g><g><title>elf_machine_rela (63 samples, 0.01%)</title><rect x="16.9213%" y="709" width="0.0121%" height="15" fill="rgb(212,48,26)" fg:x="88055" fg:w="63"/><text x="17.1713%" y="719.50"></text></g><g><title>_dl_relocate_object (67 samples, 0.01%)</title><rect x="16.9207%" y="741" width="0.0129%" height="15" fill="rgb(251,102,48)" fg:x="88052" fg:w="67"/><text x="17.1707%" y="751.50"></text></g><g><title>elf_dynamic_do_Rela (65 samples, 0.01%)</title><rect x="16.9211%" y="725" width="0.0125%" height="15" fill="rgb(243,208,16)" fg:x="88054" fg:w="65"/><text x="17.1711%" y="735.50"></text></g><g><title>[ld-2.31.so] (84 samples, 0.02%)</title><rect x="16.9176%" y="757" width="0.0161%" height="15" fill="rgb(219,96,24)" fg:x="88036" fg:w="84"/><text x="17.1676%" y="767.50"></text></g><g><title>_start (99 samples, 0.02%)</title><rect x="16.9149%" y="821" width="0.0190%" height="15" fill="rgb(219,33,29)" fg:x="88022" fg:w="99"/><text x="17.1649%" y="831.50"></text></g><g><title>_dl_start (85 samples, 0.02%)</title><rect x="16.9176%" y="805" width="0.0163%" height="15" fill="rgb(223,176,5)" fg:x="88036" fg:w="85"/><text x="17.1676%" y="815.50"></text></g><g><title>_dl_start_final (85 samples, 0.02%)</title><rect x="16.9176%" y="789" width="0.0163%" height="15" fill="rgb(228,140,14)" fg:x="88036" fg:w="85"/><text x="17.1676%" y="799.50"></text></g><g><title>_dl_sysdep_start (85 samples, 0.02%)</title><rect x="16.9176%" y="773" width="0.0163%" height="15" fill="rgb(217,179,31)" fg:x="88036" fg:w="85"/><text x="17.1676%" y="783.50"></text></g><g><title>build-runfiles (146 samples, 0.03%)</title><rect x="16.9109%" y="837" width="0.0281%" height="15" fill="rgb(230,9,30)" fg:x="88001" fg:w="146"/><text x="17.1609%" y="847.50"></text></g><g><title>[dash] (120 samples, 0.02%)</title><rect x="16.9783%" y="501" width="0.0231%" height="15" fill="rgb(230,136,20)" fg:x="88352" fg:w="120"/><text x="17.2283%" y="511.50"></text></g><g><title>alloc_bprm (72 samples, 0.01%)</title><rect x="17.0220%" y="421" width="0.0138%" height="15" fill="rgb(215,210,22)" fg:x="88579" fg:w="72"/><text x="17.2720%" y="431.50"></text></g><g><title>do_open_execat (75 samples, 0.01%)</title><rect x="17.0381%" y="405" width="0.0144%" height="15" fill="rgb(218,43,5)" fg:x="88663" fg:w="75"/><text x="17.2881%" y="415.50"></text></g><g><title>do_filp_open (75 samples, 0.01%)</title><rect x="17.0381%" y="389" width="0.0144%" height="15" fill="rgb(216,11,5)" fg:x="88663" fg:w="75"/><text x="17.2881%" y="399.50"></text></g><g><title>path_openat (73 samples, 0.01%)</title><rect x="17.0385%" y="373" width="0.0140%" height="15" fill="rgb(209,82,29)" fg:x="88665" fg:w="73"/><text x="17.2885%" y="383.50"></text></g><g><title>load_elf_binary (63 samples, 0.01%)</title><rect x="17.0533%" y="405" width="0.0121%" height="15" fill="rgb(244,115,12)" fg:x="88742" fg:w="63"/><text x="17.3033%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (208 samples, 0.04%)</title><rect x="17.0767%" y="325" width="0.0400%" height="15" fill="rgb(222,82,18)" fg:x="88864" fg:w="208"/><text x="17.3267%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (206 samples, 0.04%)</title><rect x="17.0771%" y="309" width="0.0396%" height="15" fill="rgb(249,227,8)" fg:x="88866" fg:w="206"/><text x="17.3271%" y="319.50"></text></g><g><title>native_write_msr (205 samples, 0.04%)</title><rect x="17.0773%" y="293" width="0.0394%" height="15" fill="rgb(253,141,45)" fg:x="88867" fg:w="205"/><text x="17.3273%" y="303.50"></text></g><g><title>_cond_resched (219 samples, 0.04%)</title><rect x="17.0756%" y="373" width="0.0421%" height="15" fill="rgb(234,184,4)" fg:x="88858" fg:w="219"/><text x="17.3256%" y="383.50"></text></g><g><title>__schedule (219 samples, 0.04%)</title><rect x="17.0756%" y="357" width="0.0421%" height="15" fill="rgb(218,194,23)" fg:x="88858" fg:w="219"/><text x="17.3256%" y="367.50"></text></g><g><title>finish_task_switch (219 samples, 0.04%)</title><rect x="17.0756%" y="341" width="0.0421%" height="15" fill="rgb(235,66,41)" fg:x="88858" fg:w="219"/><text x="17.3256%" y="351.50"></text></g><g><title>sched_exec (250 samples, 0.05%)</title><rect x="17.0700%" y="405" width="0.0480%" height="15" fill="rgb(245,217,1)" fg:x="88829" fg:w="250"/><text x="17.3200%" y="415.50"></text></g><g><title>stop_one_cpu (221 samples, 0.04%)</title><rect x="17.0756%" y="389" width="0.0425%" height="15" fill="rgb(229,91,1)" fg:x="88858" fg:w="221"/><text x="17.3256%" y="399.50"></text></g><g><title>security_bprm_check (71 samples, 0.01%)</title><rect x="17.1180%" y="405" width="0.0136%" height="15" fill="rgb(207,101,30)" fg:x="89079" fg:w="71"/><text x="17.3680%" y="415.50"></text></g><g><title>tomoyo_bprm_check_security (71 samples, 0.01%)</title><rect x="17.1180%" y="389" width="0.0136%" height="15" fill="rgb(223,82,49)" fg:x="89079" fg:w="71"/><text x="17.3680%" y="399.50"></text></g><g><title>tomoyo_find_next_domain (70 samples, 0.01%)</title><rect x="17.1182%" y="373" width="0.0135%" height="15" fill="rgb(218,167,17)" fg:x="89080" fg:w="70"/><text x="17.3682%" y="383.50"></text></g><g><title>security_bprm_creds_for_exec (75 samples, 0.01%)</title><rect x="17.1317%" y="405" width="0.0144%" height="15" fill="rgb(208,103,14)" fg:x="89150" fg:w="75"/><text x="17.3817%" y="415.50"></text></g><g><title>apparmor_bprm_creds_for_exec (73 samples, 0.01%)</title><rect x="17.1321%" y="389" width="0.0140%" height="15" fill="rgb(238,20,8)" fg:x="89152" fg:w="73"/><text x="17.3821%" y="399.50"></text></g><g><title>profile_transition (69 samples, 0.01%)</title><rect x="17.1328%" y="373" width="0.0133%" height="15" fill="rgb(218,80,54)" fg:x="89156" fg:w="69"/><text x="17.3828%" y="383.50"></text></g><g><title>find_attach (61 samples, 0.01%)</title><rect x="17.1344%" y="357" width="0.0117%" height="15" fill="rgb(240,144,17)" fg:x="89164" fg:w="61"/><text x="17.3844%" y="367.50"></text></g><g><title>bprm_execve (575 samples, 0.11%)</title><rect x="17.0358%" y="421" width="0.1105%" height="15" fill="rgb(245,27,50)" fg:x="88651" fg:w="575"/><text x="17.2858%" y="431.50"></text></g><g><title>__get_user_pages_remote (91 samples, 0.02%)</title><rect x="17.1471%" y="389" width="0.0175%" height="15" fill="rgb(251,51,7)" fg:x="89230" fg:w="91"/><text x="17.3971%" y="399.50"></text></g><g><title>__get_user_pages (90 samples, 0.02%)</title><rect x="17.1472%" y="373" width="0.0173%" height="15" fill="rgb(245,217,29)" fg:x="89231" fg:w="90"/><text x="17.3972%" y="383.50"></text></g><g><title>handle_mm_fault (75 samples, 0.01%)</title><rect x="17.1501%" y="357" width="0.0144%" height="15" fill="rgb(221,176,29)" fg:x="89246" fg:w="75"/><text x="17.4001%" y="367.50"></text></g><g><title>copy_string_kernel (96 samples, 0.02%)</title><rect x="17.1463%" y="421" width="0.0184%" height="15" fill="rgb(212,180,24)" fg:x="89226" fg:w="96"/><text x="17.3963%" y="431.50"></text></g><g><title>get_arg_page (92 samples, 0.02%)</title><rect x="17.1471%" y="405" width="0.0177%" height="15" fill="rgb(254,24,2)" fg:x="89230" fg:w="92"/><text x="17.3971%" y="415.50"></text></g><g><title>do_execveat_common (806 samples, 0.15%)</title><rect x="17.0218%" y="437" width="0.1549%" height="15" fill="rgb(230,100,2)" fg:x="88578" fg:w="806"/><text x="17.2718%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (822 samples, 0.16%)</title><rect x="17.0218%" y="485" width="0.1580%" height="15" fill="rgb(219,142,25)" fg:x="88578" fg:w="822"/><text x="17.2718%" y="495.50"></text></g><g><title>do_syscall_64 (822 samples, 0.16%)</title><rect x="17.0218%" y="469" width="0.1580%" height="15" fill="rgb(240,73,43)" fg:x="88578" fg:w="822"/><text x="17.2718%" y="479.50"></text></g><g><title>__x64_sys_execve (822 samples, 0.16%)</title><rect x="17.0218%" y="453" width="0.1580%" height="15" fill="rgb(214,114,15)" fg:x="88578" fg:w="822"/><text x="17.2718%" y="463.50"></text></g><g><title>__GI_execve (824 samples, 0.16%)</title><rect x="17.0216%" y="501" width="0.1583%" height="15" fill="rgb(207,130,4)" fg:x="88577" fg:w="824"/><text x="17.2716%" y="511.50"></text></g><g><title>[dash] (1,128 samples, 0.22%)</title><rect x="16.9733%" y="517" width="0.2168%" height="15" fill="rgb(221,25,40)" fg:x="88326" fg:w="1128"/><text x="17.2233%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (1,285 samples, 0.25%)</title><rect x="17.2103%" y="389" width="0.2469%" height="15" fill="rgb(241,184,7)" fg:x="89559" fg:w="1285"/><text x="17.4603%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,252 samples, 0.24%)</title><rect x="17.2166%" y="373" width="0.2406%" height="15" fill="rgb(235,159,4)" fg:x="89592" fg:w="1252"/><text x="17.4666%" y="383.50"></text></g><g><title>native_write_msr (1,241 samples, 0.24%)</title><rect x="17.2187%" y="357" width="0.2385%" height="15" fill="rgb(214,87,48)" fg:x="89603" fg:w="1241"/><text x="17.4687%" y="367.50"></text></g><g><title>finish_task_switch (1,345 samples, 0.26%)</title><rect x="17.2057%" y="405" width="0.2585%" height="15" fill="rgb(246,198,24)" fg:x="89535" fg:w="1345"/><text x="17.4557%" y="415.50"></text></g><g><title>schedule (1,365 samples, 0.26%)</title><rect x="17.2032%" y="437" width="0.2623%" height="15" fill="rgb(209,66,40)" fg:x="89522" fg:w="1365"/><text x="17.4532%" y="447.50"></text></g><g><title>__schedule (1,364 samples, 0.26%)</title><rect x="17.2034%" y="421" width="0.2621%" height="15" fill="rgb(233,147,39)" fg:x="89523" fg:w="1364"/><text x="17.4534%" y="431.50"></text></g><g><title>release_task (99 samples, 0.02%)</title><rect x="17.4680%" y="421" width="0.0190%" height="15" fill="rgb(231,145,52)" fg:x="90900" fg:w="99"/><text x="17.7180%" y="431.50"></text></g><g><title>do_wait (1,488 samples, 0.29%)</title><rect x="17.2018%" y="453" width="0.2859%" height="15" fill="rgb(206,20,26)" fg:x="89515" fg:w="1488"/><text x="17.4518%" y="463.50"></text></g><g><title>wait_consider_task (116 samples, 0.02%)</title><rect x="17.4655%" y="437" width="0.0223%" height="15" fill="rgb(238,220,4)" fg:x="90887" fg:w="116"/><text x="17.7155%" y="447.50"></text></g><g><title>do_syscall_64 (1,500 samples, 0.29%)</title><rect x="17.1997%" y="485" width="0.2883%" height="15" fill="rgb(252,195,42)" fg:x="89504" fg:w="1500"/><text x="17.4497%" y="495.50"></text></g><g><title>kernel_wait4 (1,491 samples, 0.29%)</title><rect x="17.2014%" y="469" width="0.2865%" height="15" fill="rgb(209,10,6)" fg:x="89513" fg:w="1491"/><text x="17.4514%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,539 samples, 0.30%)</title><rect x="17.1995%" y="501" width="0.2957%" height="15" fill="rgb(229,3,52)" fg:x="89503" fg:w="1539"/><text x="17.4495%" y="511.50"></text></g><g><title>__GI___wait4 (1,559 samples, 0.30%)</title><rect x="17.1980%" y="517" width="0.2996%" height="15" fill="rgb(253,49,37)" fg:x="89495" fg:w="1559"/><text x="17.4480%" y="527.50"></text></g><g><title>[dash] (2,848 samples, 0.55%)</title><rect x="16.9697%" y="533" width="0.5473%" height="15" fill="rgb(240,103,49)" fg:x="88307" fg:w="2848"/><text x="17.2197%" y="543.50"></text></g><g><title>[dash] (2,980 samples, 0.57%)</title><rect x="16.9639%" y="549" width="0.5727%" height="15" fill="rgb(250,182,30)" fg:x="88277" fg:w="2980"/><text x="17.2139%" y="559.50"></text></g><g><title>filemap_map_pages (76 samples, 0.01%)</title><rect x="17.5642%" y="453" width="0.0146%" height="15" fill="rgb(248,8,30)" fg:x="91401" fg:w="76"/><text x="17.8142%" y="463.50"></text></g><g><title>asm_exc_page_fault (106 samples, 0.02%)</title><rect x="17.5614%" y="517" width="0.0204%" height="15" fill="rgb(237,120,30)" fg:x="91386" fg:w="106"/><text x="17.8114%" y="527.50"></text></g><g><title>exc_page_fault (106 samples, 0.02%)</title><rect x="17.5614%" y="501" width="0.0204%" height="15" fill="rgb(221,146,34)" fg:x="91386" fg:w="106"/><text x="17.8114%" y="511.50"></text></g><g><title>do_user_addr_fault (105 samples, 0.02%)</title><rect x="17.5616%" y="485" width="0.0202%" height="15" fill="rgb(242,55,13)" fg:x="91387" fg:w="105"/><text x="17.8116%" y="495.50"></text></g><g><title>handle_mm_fault (97 samples, 0.02%)</title><rect x="17.5631%" y="469" width="0.0186%" height="15" fill="rgb(242,112,31)" fg:x="91395" fg:w="97"/><text x="17.8131%" y="479.50"></text></g><g><title>__run_fork_handlers (123 samples, 0.02%)</title><rect x="17.5604%" y="533" width="0.0236%" height="15" fill="rgb(249,192,27)" fg:x="91381" fg:w="123"/><text x="17.8104%" y="543.50"></text></g><g><title>alloc_set_pte (66 samples, 0.01%)</title><rect x="17.6509%" y="437" width="0.0127%" height="15" fill="rgb(208,204,44)" fg:x="91852" fg:w="66"/><text x="17.9009%" y="447.50"></text></g><g><title>filemap_map_pages (286 samples, 0.05%)</title><rect x="17.6236%" y="453" width="0.0550%" height="15" fill="rgb(208,93,54)" fg:x="91710" fg:w="286"/><text x="17.8736%" y="463.50"></text></g><g><title>__alloc_pages_nodemask (88 samples, 0.02%)</title><rect x="17.6801%" y="437" width="0.0169%" height="15" fill="rgb(242,1,31)" fg:x="92004" fg:w="88"/><text x="17.9301%" y="447.50"></text></g><g><title>handle_mm_fault (457 samples, 0.09%)</title><rect x="17.6125%" y="469" width="0.0878%" height="15" fill="rgb(241,83,25)" fg:x="91652" fg:w="457"/><text x="17.8625%" y="479.50"></text></g><g><title>pte_alloc_one (111 samples, 0.02%)</title><rect x="17.6790%" y="453" width="0.0213%" height="15" fill="rgb(205,169,50)" fg:x="91998" fg:w="111"/><text x="17.9290%" y="463.50"></text></g><g><title>exc_page_fault (527 samples, 0.10%)</title><rect x="17.5994%" y="501" width="0.1013%" height="15" fill="rgb(239,186,37)" fg:x="91584" fg:w="527"/><text x="17.8494%" y="511.50"></text></g><g><title>do_user_addr_fault (525 samples, 0.10%)</title><rect x="17.5998%" y="485" width="0.1009%" height="15" fill="rgb(205,221,10)" fg:x="91586" fg:w="525"/><text x="17.8498%" y="495.50"></text></g><g><title>asm_exc_page_fault (537 samples, 0.10%)</title><rect x="17.5981%" y="517" width="0.1032%" height="15" fill="rgb(218,196,15)" fg:x="91577" fg:w="537"/><text x="17.8481%" y="527.50"></text></g><g><title>anon_vma_fork (59 samples, 0.01%)</title><rect x="17.7284%" y="421" width="0.0113%" height="15" fill="rgb(218,196,35)" fg:x="92255" fg:w="59"/><text x="17.9784%" y="431.50"></text></g><g><title>dup_mm (197 samples, 0.04%)</title><rect x="17.7234%" y="437" width="0.0379%" height="15" fill="rgb(233,63,24)" fg:x="92229" fg:w="197"/><text x="17.9734%" y="447.50"></text></g><g><title>perf_try_init_event (65 samples, 0.01%)</title><rect x="17.7916%" y="373" width="0.0125%" height="15" fill="rgb(225,8,4)" fg:x="92584" fg:w="65"/><text x="18.0416%" y="383.50"></text></g><g><title>x86_pmu_event_init (64 samples, 0.01%)</title><rect x="17.7918%" y="357" width="0.0123%" height="15" fill="rgb(234,105,35)" fg:x="92585" fg:w="64"/><text x="18.0418%" y="367.50"></text></g><g><title>perf_event_alloc (134 samples, 0.03%)</title><rect x="17.7787%" y="389" width="0.0258%" height="15" fill="rgb(236,21,32)" fg:x="92517" fg:w="134"/><text x="18.0287%" y="399.50"></text></g><g><title>inherit_task_group.isra.0 (168 samples, 0.03%)</title><rect x="17.7724%" y="421" width="0.0323%" height="15" fill="rgb(228,109,6)" fg:x="92484" fg:w="168"/><text x="18.0224%" y="431.50"></text></g><g><title>inherit_event.constprop.0 (162 samples, 0.03%)</title><rect x="17.7735%" y="405" width="0.0311%" height="15" fill="rgb(229,215,31)" fg:x="92490" fg:w="162"/><text x="18.0235%" y="415.50"></text></g><g><title>perf_event_init_task (188 samples, 0.04%)</title><rect x="17.7710%" y="437" width="0.0361%" height="15" fill="rgb(221,52,54)" fg:x="92477" fg:w="188"/><text x="18.0210%" y="447.50"></text></g><g><title>copy_process (563 samples, 0.11%)</title><rect x="17.7015%" y="453" width="0.1082%" height="15" fill="rgb(252,129,43)" fg:x="92115" fg:w="563"/><text x="17.9515%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (570 samples, 0.11%)</title><rect x="17.7013%" y="517" width="0.1095%" height="15" fill="rgb(248,183,27)" fg:x="92114" fg:w="570"/><text x="17.9513%" y="527.50"></text></g><g><title>do_syscall_64 (570 samples, 0.11%)</title><rect x="17.7013%" y="501" width="0.1095%" height="15" fill="rgb(250,0,22)" fg:x="92114" fg:w="570"/><text x="17.9513%" y="511.50"></text></g><g><title>__do_sys_clone (569 samples, 0.11%)</title><rect x="17.7015%" y="485" width="0.1093%" height="15" fill="rgb(213,166,10)" fg:x="92115" fg:w="569"/><text x="17.9515%" y="495.50"></text></g><g><title>kernel_clone (569 samples, 0.11%)</title><rect x="17.7015%" y="469" width="0.1093%" height="15" fill="rgb(207,163,36)" fg:x="92115" fg:w="569"/><text x="17.9515%" y="479.50"></text></g><g><title>find_vma (62 samples, 0.01%)</title><rect x="17.8583%" y="421" width="0.0119%" height="15" fill="rgb(208,122,22)" fg:x="92931" fg:w="62"/><text x="18.1083%" y="431.50"></text></g><g><title>do_wp_page (83 samples, 0.02%)</title><rect x="17.8948%" y="405" width="0.0159%" height="15" fill="rgb(207,104,49)" fg:x="93121" fg:w="83"/><text x="18.1448%" y="415.50"></text></g><g><title>handle_mm_fault (352 samples, 0.07%)</title><rect x="17.8702%" y="421" width="0.0676%" height="15" fill="rgb(248,211,50)" fg:x="92993" fg:w="352"/><text x="18.1202%" y="431.50"></text></g><g><title>wp_page_copy (132 samples, 0.03%)</title><rect x="17.9125%" y="405" width="0.0254%" height="15" fill="rgb(217,13,45)" fg:x="93213" fg:w="132"/><text x="18.1625%" y="415.50"></text></g><g><title>exc_page_fault (450 samples, 0.09%)</title><rect x="17.8533%" y="453" width="0.0865%" height="15" fill="rgb(211,216,49)" fg:x="92905" fg:w="450"/><text x="18.1033%" y="463.50"></text></g><g><title>do_user_addr_fault (449 samples, 0.09%)</title><rect x="17.8535%" y="437" width="0.0863%" height="15" fill="rgb(221,58,53)" fg:x="92906" fg:w="449"/><text x="18.1035%" y="447.50"></text></g><g><title>asm_exc_page_fault (532 samples, 0.10%)</title><rect x="17.8379%" y="469" width="0.1022%" height="15" fill="rgb(220,112,41)" fg:x="92825" fg:w="532"/><text x="18.0879%" y="479.50"></text></g><g><title>__put_user_nocheck_4 (579 samples, 0.11%)</title><rect x="17.8294%" y="485" width="0.1113%" height="15" fill="rgb(236,38,28)" fg:x="92781" fg:w="579"/><text x="18.0794%" y="495.50"></text></g><g><title>__mmdrop (101 samples, 0.02%)</title><rect x="18.0162%" y="469" width="0.0194%" height="15" fill="rgb(227,195,22)" fg:x="93753" fg:w="101"/><text x="18.2662%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (13,786 samples, 2.65%)</title><rect x="18.0356%" y="469" width="2.6492%" height="15" fill="rgb(214,55,33)" fg:x="93854" fg:w="13786"/><text x="18.2856%" y="479.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (13,372 samples, 2.57%)</title><rect x="18.1152%" y="453" width="2.5697%" height="15" fill="rgb(248,80,13)" fg:x="94268" fg:w="13372"/><text x="18.3652%" y="463.50">__..</text></g><g><title>native_write_msr (13,277 samples, 2.55%)</title><rect x="18.1334%" y="437" width="2.5514%" height="15" fill="rgb(238,52,6)" fg:x="94363" fg:w="13277"/><text x="18.3834%" y="447.50">na..</text></g><g><title>enqueue_task_fair (110 samples, 0.02%)</title><rect x="20.7102%" y="245" width="0.0211%" height="15" fill="rgb(224,198,47)" fg:x="107772" fg:w="110"/><text x="20.9602%" y="255.50"></text></g><g><title>enqueue_entity (87 samples, 0.02%)</title><rect x="20.7146%" y="229" width="0.0167%" height="15" fill="rgb(233,171,20)" fg:x="107795" fg:w="87"/><text x="20.9646%" y="239.50"></text></g><g><title>ttwu_do_activate (134 samples, 0.03%)</title><rect x="20.7098%" y="261" width="0.0258%" height="15" fill="rgb(241,30,25)" fg:x="107770" fg:w="134"/><text x="20.9598%" y="271.50"></text></g><g><title>__wake_up_common (166 samples, 0.03%)</title><rect x="20.7075%" y="309" width="0.0319%" height="15" fill="rgb(207,171,38)" fg:x="107758" fg:w="166"/><text x="20.9575%" y="319.50"></text></g><g><title>pollwake (163 samples, 0.03%)</title><rect x="20.7081%" y="293" width="0.0313%" height="15" fill="rgb(234,70,1)" fg:x="107761" fg:w="163"/><text x="20.9581%" y="303.50"></text></g><g><title>try_to_wake_up (163 samples, 0.03%)</title><rect x="20.7081%" y="277" width="0.0313%" height="15" fill="rgb(232,178,18)" fg:x="107761" fg:w="163"/><text x="20.9581%" y="287.50"></text></g><g><title>irq_work_run (178 samples, 0.03%)</title><rect x="20.7056%" y="405" width="0.0342%" height="15" fill="rgb(241,78,40)" fg:x="107748" fg:w="178"/><text x="20.9556%" y="415.50"></text></g><g><title>irq_work_run_list (178 samples, 0.03%)</title><rect x="20.7056%" y="389" width="0.0342%" height="15" fill="rgb(222,35,25)" fg:x="107748" fg:w="178"/><text x="20.9556%" y="399.50"></text></g><g><title>irq_work_single (178 samples, 0.03%)</title><rect x="20.7056%" y="373" width="0.0342%" height="15" fill="rgb(207,92,16)" fg:x="107748" fg:w="178"/><text x="20.9556%" y="383.50"></text></g><g><title>perf_pending_event (176 samples, 0.03%)</title><rect x="20.7060%" y="357" width="0.0338%" height="15" fill="rgb(216,59,51)" fg:x="107750" fg:w="176"/><text x="20.9560%" y="367.50"></text></g><g><title>perf_event_wakeup (173 samples, 0.03%)</title><rect x="20.7066%" y="341" width="0.0332%" height="15" fill="rgb(213,80,28)" fg:x="107753" fg:w="173"/><text x="20.9566%" y="351.50"></text></g><g><title>__wake_up_common_lock (171 samples, 0.03%)</title><rect x="20.7069%" y="325" width="0.0329%" height="15" fill="rgb(220,93,7)" fg:x="107755" fg:w="171"/><text x="20.9569%" y="335.50"></text></g><g><title>asm_call_sysvec_on_stack (187 samples, 0.04%)</title><rect x="20.7041%" y="437" width="0.0359%" height="15" fill="rgb(225,24,44)" fg:x="107740" fg:w="187"/><text x="20.9541%" y="447.50"></text></g><g><title>__sysvec_irq_work (180 samples, 0.03%)</title><rect x="20.7054%" y="421" width="0.0346%" height="15" fill="rgb(243,74,40)" fg:x="107747" fg:w="180"/><text x="20.9554%" y="431.50"></text></g><g><title>asm_sysvec_irq_work (287 samples, 0.06%)</title><rect x="20.6868%" y="469" width="0.0552%" height="15" fill="rgb(228,39,7)" fg:x="107650" fg:w="287"/><text x="20.9368%" y="479.50"></text></g><g><title>sysvec_irq_work (200 samples, 0.04%)</title><rect x="20.7035%" y="453" width="0.0384%" height="15" fill="rgb(227,79,8)" fg:x="107737" fg:w="200"/><text x="20.9535%" y="463.50"></text></g><g><title>schedule_tail (15,198 samples, 2.92%)</title><rect x="17.8260%" y="501" width="2.9206%" height="15" fill="rgb(236,58,11)" fg:x="92763" fg:w="15198"/><text x="18.0760%" y="511.50">sc..</text></g><g><title>finish_task_switch (14,560 samples, 2.80%)</title><rect x="17.9486%" y="485" width="2.7979%" height="15" fill="rgb(249,63,35)" fg:x="93401" fg:w="14560"/><text x="18.1986%" y="495.50">fi..</text></g><g><title>arch_fork (16,521 samples, 3.17%)</title><rect x="17.5840%" y="533" width="3.1748%" height="15" fill="rgb(252,114,16)" fg:x="91504" fg:w="16521"/><text x="17.8340%" y="543.50">arc..</text></g><g><title>ret_from_fork (15,305 samples, 2.94%)</title><rect x="17.8177%" y="517" width="2.9411%" height="15" fill="rgb(254,151,24)" fg:x="92720" fg:w="15305"/><text x="18.0677%" y="527.50">re..</text></g><g><title>syscall_exit_to_user_mode (64 samples, 0.01%)</title><rect x="20.7465%" y="501" width="0.0123%" height="15" fill="rgb(253,54,39)" fg:x="107961" fg:w="64"/><text x="20.9965%" y="511.50"></text></g><g><title>exit_to_user_mode_prepare (63 samples, 0.01%)</title><rect x="20.7467%" y="485" width="0.0121%" height="15" fill="rgb(243,25,45)" fg:x="107962" fg:w="63"/><text x="20.9967%" y="495.50"></text></g><g><title>switch_fpu_return (58 samples, 0.01%)</title><rect x="20.7477%" y="469" width="0.0111%" height="15" fill="rgb(234,134,9)" fg:x="107967" fg:w="58"/><text x="20.9977%" y="479.50"></text></g><g><title>__alloc_pages_nodemask (62 samples, 0.01%)</title><rect x="20.7796%" y="437" width="0.0119%" height="15" fill="rgb(227,166,31)" fg:x="108133" fg:w="62"/><text x="21.0296%" y="447.50"></text></g><g><title>alloc_pages_vma (67 samples, 0.01%)</title><rect x="20.7790%" y="453" width="0.0129%" height="15" fill="rgb(245,143,41)" fg:x="108130" fg:w="67"/><text x="21.0290%" y="463.50"></text></g><g><title>handle_mm_fault (243 samples, 0.05%)</title><rect x="20.7669%" y="485" width="0.0467%" height="15" fill="rgb(238,181,32)" fg:x="108067" fg:w="243"/><text x="21.0169%" y="495.50"></text></g><g><title>wp_page_copy (185 samples, 0.04%)</title><rect x="20.7780%" y="469" width="0.0356%" height="15" fill="rgb(224,113,18)" fg:x="108125" fg:w="185"/><text x="21.0280%" y="479.50"></text></g><g><title>do_user_addr_fault (282 samples, 0.05%)</title><rect x="20.7600%" y="501" width="0.0542%" height="15" fill="rgb(240,229,28)" fg:x="108031" fg:w="282"/><text x="21.0100%" y="511.50"></text></g><g><title>exc_page_fault (288 samples, 0.06%)</title><rect x="20.7590%" y="517" width="0.0553%" height="15" fill="rgb(250,185,3)" fg:x="108026" fg:w="288"/><text x="21.0090%" y="527.50"></text></g><g><title>asm_exc_page_fault (290 samples, 0.06%)</title><rect x="20.7588%" y="533" width="0.0557%" height="15" fill="rgb(212,59,25)" fg:x="108025" fg:w="290"/><text x="21.0088%" y="543.50"></text></g><g><title>__libc_fork (17,062 samples, 3.28%)</title><rect x="17.5406%" y="549" width="3.2788%" height="15" fill="rgb(221,87,20)" fg:x="91278" fg:w="17062"/><text x="17.7906%" y="559.50">__l..</text></g><g><title>filemap_map_pages (76 samples, 0.01%)</title><rect x="20.8242%" y="485" width="0.0146%" height="15" fill="rgb(213,74,28)" fg:x="108365" fg:w="76"/><text x="21.0742%" y="495.50"></text></g><g><title>handle_mm_fault (85 samples, 0.02%)</title><rect x="20.8226%" y="501" width="0.0163%" height="15" fill="rgb(224,132,34)" fg:x="108357" fg:w="85"/><text x="21.0726%" y="511.50"></text></g><g><title>asm_exc_page_fault (97 samples, 0.02%)</title><rect x="20.8205%" y="549" width="0.0186%" height="15" fill="rgb(222,101,24)" fg:x="108346" fg:w="97"/><text x="21.0705%" y="559.50"></text></g><g><title>exc_page_fault (97 samples, 0.02%)</title><rect x="20.8205%" y="533" width="0.0186%" height="15" fill="rgb(254,142,4)" fg:x="108346" fg:w="97"/><text x="21.0705%" y="543.50"></text></g><g><title>do_user_addr_fault (97 samples, 0.02%)</title><rect x="20.8205%" y="517" width="0.0186%" height="15" fill="rgb(230,229,49)" fg:x="108346" fg:w="97"/><text x="21.0705%" y="527.50"></text></g><g><title>[dash] (20,199 samples, 3.88%)</title><rect x="16.9597%" y="565" width="3.8816%" height="15" fill="rgb(238,70,47)" fg:x="88255" fg:w="20199"/><text x="17.2097%" y="575.50">[das..</text></g><g><title>do_syscall_64 (109 samples, 0.02%)</title><rect x="20.8472%" y="533" width="0.0209%" height="15" fill="rgb(231,160,17)" fg:x="108485" fg:w="109"/><text x="21.0972%" y="543.50"></text></g><g><title>__x64_sys_pipe (109 samples, 0.02%)</title><rect x="20.8472%" y="517" width="0.0209%" height="15" fill="rgb(218,68,53)" fg:x="108485" fg:w="109"/><text x="21.0972%" y="527.50"></text></g><g><title>do_pipe2 (108 samples, 0.02%)</title><rect x="20.8474%" y="501" width="0.0208%" height="15" fill="rgb(236,111,10)" fg:x="108486" fg:w="108"/><text x="21.0974%" y="511.50"></text></g><g><title>create_pipe_files (95 samples, 0.02%)</title><rect x="20.8499%" y="485" width="0.0183%" height="15" fill="rgb(224,34,41)" fg:x="108499" fg:w="95"/><text x="21.0999%" y="495.50"></text></g><g><title>__GI_pipe (114 samples, 0.02%)</title><rect x="20.8465%" y="565" width="0.0219%" height="15" fill="rgb(241,118,19)" fg:x="108481" fg:w="114"/><text x="21.0965%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.02%)</title><rect x="20.8472%" y="549" width="0.0211%" height="15" fill="rgb(238,129,25)" fg:x="108485" fg:w="110"/><text x="21.0972%" y="559.50"></text></g><g><title>[dash] (20,345 samples, 3.91%)</title><rect x="16.9591%" y="581" width="3.9096%" height="15" fill="rgb(238,22,31)" fg:x="88252" fg:w="20345"/><text x="17.2091%" y="591.50">[das..</text></g><g><title>[dash] (20,422 samples, 3.92%)</title><rect x="16.9558%" y="597" width="3.9244%" height="15" fill="rgb(222,174,48)" fg:x="88235" fg:w="20422"/><text x="17.2058%" y="607.50">[das..</text></g><g><title>[dash] (20,508 samples, 3.94%)</title><rect x="16.9539%" y="613" width="3.9410%" height="15" fill="rgb(206,152,40)" fg:x="88225" fg:w="20508"/><text x="17.2039%" y="623.50">[das..</text></g><g><title>[dash] (20,605 samples, 3.96%)</title><rect x="16.9522%" y="629" width="3.9596%" height="15" fill="rgb(218,99,54)" fg:x="88216" fg:w="20605"/><text x="17.2022%" y="639.50">[das..</text></g><g><title>filemap_map_pages (68 samples, 0.01%)</title><rect x="20.9325%" y="533" width="0.0131%" height="15" fill="rgb(220,174,26)" fg:x="108929" fg:w="68"/><text x="21.1825%" y="543.50"></text></g><g><title>do_user_addr_fault (118 samples, 0.02%)</title><rect x="20.9266%" y="565" width="0.0227%" height="15" fill="rgb(245,116,9)" fg:x="108898" fg:w="118"/><text x="21.1766%" y="575.50"></text></g><g><title>handle_mm_fault (100 samples, 0.02%)</title><rect x="20.9300%" y="549" width="0.0192%" height="15" fill="rgb(209,72,35)" fg:x="108916" fg:w="100"/><text x="21.1800%" y="559.50"></text></g><g><title>exc_page_fault (120 samples, 0.02%)</title><rect x="20.9266%" y="581" width="0.0231%" height="15" fill="rgb(226,126,21)" fg:x="108898" fg:w="120"/><text x="21.1766%" y="591.50"></text></g><g><title>asm_exc_page_fault (125 samples, 0.02%)</title><rect x="20.9262%" y="597" width="0.0240%" height="15" fill="rgb(227,192,1)" fg:x="108896" fg:w="125"/><text x="21.1762%" y="607.50"></text></g><g><title>dup_mm (120 samples, 0.02%)</title><rect x="20.9612%" y="517" width="0.0231%" height="15" fill="rgb(237,180,29)" fg:x="109078" fg:w="120"/><text x="21.2112%" y="527.50"></text></g><g><title>inherit_task_group.isra.0 (54 samples, 0.01%)</title><rect x="20.9906%" y="501" width="0.0104%" height="15" fill="rgb(230,197,35)" fg:x="109231" fg:w="54"/><text x="21.2406%" y="511.50"></text></g><g><title>perf_event_init_task (59 samples, 0.01%)</title><rect x="20.9902%" y="517" width="0.0113%" height="15" fill="rgb(246,193,31)" fg:x="109229" fg:w="59"/><text x="21.2402%" y="527.50"></text></g><g><title>copy_process (276 samples, 0.05%)</title><rect x="20.9502%" y="533" width="0.0530%" height="15" fill="rgb(241,36,4)" fg:x="109021" fg:w="276"/><text x="21.2002%" y="543.50"></text></g><g><title>do_syscall_64 (289 samples, 0.06%)</title><rect x="20.9502%" y="581" width="0.0555%" height="15" fill="rgb(241,130,17)" fg:x="109021" fg:w="289"/><text x="21.2002%" y="591.50"></text></g><g><title>__do_sys_clone (289 samples, 0.06%)</title><rect x="20.9502%" y="565" width="0.0555%" height="15" fill="rgb(206,137,32)" fg:x="109021" fg:w="289"/><text x="21.2002%" y="575.50"></text></g><g><title>kernel_clone (289 samples, 0.06%)</title><rect x="20.9502%" y="549" width="0.0555%" height="15" fill="rgb(237,228,51)" fg:x="109021" fg:w="289"/><text x="21.2002%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (290 samples, 0.06%)</title><rect x="20.9502%" y="597" width="0.0557%" height="15" fill="rgb(243,6,42)" fg:x="109021" fg:w="290"/><text x="21.2002%" y="607.50"></text></g><g><title>alloc_pages_vma (141 samples, 0.03%)</title><rect x="21.0530%" y="469" width="0.0271%" height="15" fill="rgb(251,74,28)" fg:x="109556" fg:w="141"/><text x="21.3030%" y="479.50"></text></g><g><title>__alloc_pages_nodemask (126 samples, 0.02%)</title><rect x="21.0559%" y="453" width="0.0242%" height="15" fill="rgb(218,20,49)" fg:x="109571" fg:w="126"/><text x="21.3059%" y="463.50"></text></g><g><title>get_page_from_freelist (94 samples, 0.02%)</title><rect x="21.0621%" y="437" width="0.0181%" height="15" fill="rgb(238,28,14)" fg:x="109603" fg:w="94"/><text x="21.3121%" y="447.50"></text></g><g><title>handle_mm_fault (449 samples, 0.09%)</title><rect x="21.0315%" y="501" width="0.0863%" height="15" fill="rgb(229,40,46)" fg:x="109444" fg:w="449"/><text x="21.2815%" y="511.50"></text></g><g><title>wp_page_copy (364 samples, 0.07%)</title><rect x="21.0478%" y="485" width="0.0699%" height="15" fill="rgb(244,195,20)" fg:x="109529" fg:w="364"/><text x="21.2978%" y="495.50"></text></g><g><title>do_user_addr_fault (486 samples, 0.09%)</title><rect x="21.0248%" y="517" width="0.0934%" height="15" fill="rgb(253,56,35)" fg:x="109409" fg:w="486"/><text x="21.2748%" y="527.50"></text></g><g><title>exc_page_fault (487 samples, 0.09%)</title><rect x="21.0248%" y="533" width="0.0936%" height="15" fill="rgb(210,149,44)" fg:x="109409" fg:w="487"/><text x="21.2748%" y="543.50"></text></g><g><title>asm_exc_page_fault (526 samples, 0.10%)</title><rect x="21.0177%" y="549" width="0.1011%" height="15" fill="rgb(240,135,12)" fg:x="109372" fg:w="526"/><text x="21.2677%" y="559.50"></text></g><g><title>__put_user_nocheck_4 (550 samples, 0.11%)</title><rect x="21.0142%" y="565" width="0.1057%" height="15" fill="rgb(251,24,50)" fg:x="109354" fg:w="550"/><text x="21.2642%" y="575.50"></text></g><g><title>__mmdrop (126 samples, 0.02%)</title><rect x="21.1637%" y="549" width="0.0242%" height="15" fill="rgb(243,200,47)" fg:x="110132" fg:w="126"/><text x="21.4137%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (6,656 samples, 1.28%)</title><rect x="21.1879%" y="549" width="1.2791%" height="15" fill="rgb(224,166,26)" fg:x="110258" fg:w="6656"/><text x="21.4379%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,408 samples, 1.23%)</title><rect x="21.2356%" y="533" width="1.2314%" height="15" fill="rgb(233,0,47)" fg:x="110506" fg:w="6408"/><text x="21.4856%" y="543.50"></text></g><g><title>native_write_msr (6,358 samples, 1.22%)</title><rect x="21.2452%" y="517" width="1.2218%" height="15" fill="rgb(253,80,5)" fg:x="110556" fg:w="6358"/><text x="21.4952%" y="527.50"></text></g><g><title>enqueue_task_fair (86 samples, 0.02%)</title><rect x="22.4887%" y="325" width="0.0165%" height="15" fill="rgb(214,133,25)" fg:x="117027" fg:w="86"/><text x="22.7387%" y="335.50"></text></g><g><title>enqueue_entity (57 samples, 0.01%)</title><rect x="22.4943%" y="309" width="0.0110%" height="15" fill="rgb(209,27,14)" fg:x="117056" fg:w="57"/><text x="22.7443%" y="319.50"></text></g><g><title>ttwu_do_activate (92 samples, 0.02%)</title><rect x="22.4887%" y="341" width="0.0177%" height="15" fill="rgb(219,102,51)" fg:x="117027" fg:w="92"/><text x="22.7387%" y="351.50"></text></g><g><title>__wake_up_common_lock (117 samples, 0.02%)</title><rect x="22.4872%" y="405" width="0.0225%" height="15" fill="rgb(237,18,16)" fg:x="117019" fg:w="117"/><text x="22.7372%" y="415.50"></text></g><g><title>__wake_up_common (116 samples, 0.02%)</title><rect x="22.4874%" y="389" width="0.0223%" height="15" fill="rgb(241,85,17)" fg:x="117020" fg:w="116"/><text x="22.7374%" y="399.50"></text></g><g><title>pollwake (111 samples, 0.02%)</title><rect x="22.4883%" y="373" width="0.0213%" height="15" fill="rgb(236,90,42)" fg:x="117025" fg:w="111"/><text x="22.7383%" y="383.50"></text></g><g><title>try_to_wake_up (110 samples, 0.02%)</title><rect x="22.4885%" y="357" width="0.0211%" height="15" fill="rgb(249,57,21)" fg:x="117026" fg:w="110"/><text x="22.7385%" y="367.50"></text></g><g><title>irq_work_run (122 samples, 0.02%)</title><rect x="22.4864%" y="485" width="0.0234%" height="15" fill="rgb(243,12,36)" fg:x="117015" fg:w="122"/><text x="22.7364%" y="495.50"></text></g><g><title>irq_work_run_list (122 samples, 0.02%)</title><rect x="22.4864%" y="469" width="0.0234%" height="15" fill="rgb(253,128,47)" fg:x="117015" fg:w="122"/><text x="22.7364%" y="479.50"></text></g><g><title>irq_work_single (122 samples, 0.02%)</title><rect x="22.4864%" y="453" width="0.0234%" height="15" fill="rgb(207,33,20)" fg:x="117015" fg:w="122"/><text x="22.7364%" y="463.50"></text></g><g><title>perf_pending_event (121 samples, 0.02%)</title><rect x="22.4866%" y="437" width="0.0233%" height="15" fill="rgb(233,215,35)" fg:x="117016" fg:w="121"/><text x="22.7366%" y="447.50"></text></g><g><title>perf_event_wakeup (118 samples, 0.02%)</title><rect x="22.4872%" y="421" width="0.0227%" height="15" fill="rgb(249,188,52)" fg:x="117019" fg:w="118"/><text x="22.7372%" y="431.50"></text></g><g><title>asm_call_sysvec_on_stack (127 samples, 0.02%)</title><rect x="22.4862%" y="517" width="0.0244%" height="15" fill="rgb(225,12,32)" fg:x="117014" fg:w="127"/><text x="22.7362%" y="527.50"></text></g><g><title>__sysvec_irq_work (127 samples, 0.02%)</title><rect x="22.4862%" y="501" width="0.0244%" height="15" fill="rgb(247,98,14)" fg:x="117014" fg:w="127"/><text x="22.7362%" y="511.50"></text></g><g><title>asm_sysvec_irq_work (223 samples, 0.04%)</title><rect x="22.4687%" y="549" width="0.0429%" height="15" fill="rgb(247,219,48)" fg:x="116923" fg:w="223"/><text x="22.7187%" y="559.50"></text></g><g><title>sysvec_irq_work (133 samples, 0.03%)</title><rect x="22.4860%" y="533" width="0.0256%" height="15" fill="rgb(253,60,48)" fg:x="117013" fg:w="133"/><text x="22.7360%" y="543.50"></text></g><g><title>schedule_tail (7,836 samples, 1.51%)</title><rect x="21.0127%" y="581" width="1.5058%" height="15" fill="rgb(245,15,52)" fg:x="109346" fg:w="7836"/><text x="21.2627%" y="591.50"></text></g><g><title>finish_task_switch (7,265 samples, 1.40%)</title><rect x="21.1224%" y="565" width="1.3961%" height="15" fill="rgb(220,133,28)" fg:x="109917" fg:w="7265"/><text x="21.3724%" y="575.50"></text></g><g><title>ret_from_fork (7,878 samples, 1.51%)</title><rect x="21.0094%" y="597" width="1.5139%" height="15" fill="rgb(217,180,4)" fg:x="109329" fg:w="7878"/><text x="21.2594%" y="607.50"></text></g><g><title>arch_fork (8,340 samples, 1.60%)</title><rect x="20.9210%" y="613" width="1.6027%" height="15" fill="rgb(251,24,1)" fg:x="108869" fg:w="8340"/><text x="21.1710%" y="623.50"></text></g><g><title>__libc_fork (8,440 samples, 1.62%)</title><rect x="20.9120%" y="629" width="1.6219%" height="15" fill="rgb(212,185,49)" fg:x="108822" fg:w="8440"/><text x="21.1620%" y="639.50"></text></g><g><title>[dash] (29,069 samples, 5.59%)</title><rect x="16.9508%" y="645" width="5.5861%" height="15" fill="rgb(215,175,22)" fg:x="88209" fg:w="29069"/><text x="17.2008%" y="655.50">[dash]</text></g><g><title>[dash] (29,127 samples, 5.60%)</title><rect x="16.9501%" y="661" width="5.5972%" height="15" fill="rgb(250,205,14)" fg:x="88205" fg:w="29127"/><text x="17.2001%" y="671.50">[dash]</text></g><g><title>__perf_event_task_sched_in (732 samples, 0.14%)</title><rect x="22.5681%" y="501" width="0.1407%" height="15" fill="rgb(225,211,22)" fg:x="117440" fg:w="732"/><text x="22.8181%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (720 samples, 0.14%)</title><rect x="22.5704%" y="485" width="0.1384%" height="15" fill="rgb(251,179,42)" fg:x="117452" fg:w="720"/><text x="22.8204%" y="495.50"></text></g><g><title>native_write_msr (716 samples, 0.14%)</title><rect x="22.5712%" y="469" width="0.1376%" height="15" fill="rgb(208,216,51)" fg:x="117456" fg:w="716"/><text x="22.8212%" y="479.50"></text></g><g><title>finish_task_switch (778 samples, 0.15%)</title><rect x="22.5650%" y="517" width="0.1495%" height="15" fill="rgb(235,36,11)" fg:x="117424" fg:w="778"/><text x="22.8150%" y="527.50"></text></g><g><title>schedule (796 samples, 0.15%)</title><rect x="22.5631%" y="549" width="0.1530%" height="15" fill="rgb(213,189,28)" fg:x="117414" fg:w="796"/><text x="22.8131%" y="559.50"></text></g><g><title>__schedule (795 samples, 0.15%)</title><rect x="22.5633%" y="533" width="0.1528%" height="15" fill="rgb(227,203,42)" fg:x="117415" fg:w="795"/><text x="22.8133%" y="543.50"></text></g><g><title>new_sync_read (833 samples, 0.16%)</title><rect x="22.5590%" y="581" width="0.1601%" height="15" fill="rgb(244,72,36)" fg:x="117393" fg:w="833"/><text x="22.8090%" y="591.50"></text></g><g><title>pipe_read (832 samples, 0.16%)</title><rect x="22.5592%" y="565" width="0.1599%" height="15" fill="rgb(213,53,17)" fg:x="117394" fg:w="832"/><text x="22.8092%" y="575.50"></text></g><g><title>do_syscall_64 (851 samples, 0.16%)</title><rect x="22.5565%" y="629" width="0.1635%" height="15" fill="rgb(207,167,3)" fg:x="117380" fg:w="851"/><text x="22.8065%" y="639.50"></text></g><g><title>ksys_read (849 samples, 0.16%)</title><rect x="22.5569%" y="613" width="0.1631%" height="15" fill="rgb(216,98,30)" fg:x="117382" fg:w="849"/><text x="22.8069%" y="623.50"></text></g><g><title>vfs_read (844 samples, 0.16%)</title><rect x="22.5579%" y="597" width="0.1622%" height="15" fill="rgb(236,123,15)" fg:x="117387" fg:w="844"/><text x="22.8079%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (884 samples, 0.17%)</title><rect x="22.5565%" y="645" width="0.1699%" height="15" fill="rgb(248,81,50)" fg:x="117380" fg:w="884"/><text x="22.8065%" y="655.50"></text></g><g><title>__GI___libc_read (903 samples, 0.17%)</title><rect x="22.5558%" y="661" width="0.1735%" height="15" fill="rgb(214,120,4)" fg:x="117376" fg:w="903"/><text x="22.8058%" y="671.50"></text></g><g><title>[dash] (30,124 samples, 5.79%)</title><rect x="16.9466%" y="677" width="5.7888%" height="15" fill="rgb(208,179,34)" fg:x="88187" fg:w="30124"/><text x="17.1966%" y="687.50">[dash]</text></g><g><title>[dash] (30,133 samples, 5.79%)</title><rect x="16.9464%" y="693" width="5.7906%" height="15" fill="rgb(227,140,7)" fg:x="88186" fg:w="30133"/><text x="17.1964%" y="703.50">[dash]</text></g><g><title>[dash] (30,147 samples, 5.79%)</title><rect x="16.9451%" y="709" width="5.7933%" height="15" fill="rgb(214,22,6)" fg:x="88179" fg:w="30147"/><text x="17.1951%" y="719.50">[dash]</text></g><g><title>[dash] (30,152 samples, 5.79%)</title><rect x="16.9445%" y="725" width="5.7942%" height="15" fill="rgb(207,137,27)" fg:x="88176" fg:w="30152"/><text x="17.1945%" y="735.50">[dash]</text></g><g><title>[dash] (30,162 samples, 5.80%)</title><rect x="16.9443%" y="741" width="5.7961%" height="15" fill="rgb(210,8,46)" fg:x="88175" fg:w="30162"/><text x="17.1943%" y="751.50">[dash]</text></g><g><title>[dash] (30,165 samples, 5.80%)</title><rect x="16.9441%" y="757" width="5.7967%" height="15" fill="rgb(240,16,54)" fg:x="88174" fg:w="30165"/><text x="17.1941%" y="767.50">[dash]</text></g><g><title>[dash] (30,198 samples, 5.80%)</title><rect x="16.9441%" y="773" width="5.8031%" height="15" fill="rgb(211,209,29)" fg:x="88174" fg:w="30198"/><text x="17.1941%" y="783.50">[dash]</text></g><g><title>[dash] (30,212 samples, 5.81%)</title><rect x="16.9428%" y="821" width="5.8057%" height="15" fill="rgb(226,228,24)" fg:x="88167" fg:w="30212"/><text x="17.1928%" y="831.50">[dash]</text></g><g><title>__libc_start_main (30,206 samples, 5.80%)</title><rect x="16.9439%" y="805" width="5.8046%" height="15" fill="rgb(222,84,9)" fg:x="88173" fg:w="30206"/><text x="17.1939%" y="815.50">__libc_..</text></g><g><title>[dash] (30,206 samples, 5.80%)</title><rect x="16.9439%" y="789" width="5.8046%" height="15" fill="rgb(234,203,30)" fg:x="88173" fg:w="30206"/><text x="17.1939%" y="799.50">[dash]</text></g><g><title>asm_exc_page_fault (408 samples, 0.08%)</title><rect x="22.7610%" y="821" width="0.0784%" height="15" fill="rgb(238,109,14)" fg:x="118444" fg:w="408"/><text x="23.0110%" y="831.50"></text></g><g><title>mmput (88 samples, 0.02%)</title><rect x="22.8404%" y="709" width="0.0169%" height="15" fill="rgb(233,206,34)" fg:x="118857" fg:w="88"/><text x="23.0904%" y="719.50"></text></g><g><title>exit_mmap (87 samples, 0.02%)</title><rect x="22.8406%" y="693" width="0.0167%" height="15" fill="rgb(220,167,47)" fg:x="118858" fg:w="87"/><text x="23.0906%" y="703.50"></text></g><g><title>begin_new_exec (96 samples, 0.02%)</title><rect x="22.8398%" y="725" width="0.0184%" height="15" fill="rgb(238,105,10)" fg:x="118854" fg:w="96"/><text x="23.0898%" y="735.50"></text></g><g><title>__x64_sys_execve (101 samples, 0.02%)</title><rect x="22.8398%" y="789" width="0.0194%" height="15" fill="rgb(213,227,17)" fg:x="118854" fg:w="101"/><text x="23.0898%" y="799.50"></text></g><g><title>do_execveat_common (101 samples, 0.02%)</title><rect x="22.8398%" y="773" width="0.0194%" height="15" fill="rgb(217,132,38)" fg:x="118854" fg:w="101"/><text x="23.0898%" y="783.50"></text></g><g><title>bprm_execve (101 samples, 0.02%)</title><rect x="22.8398%" y="757" width="0.0194%" height="15" fill="rgb(242,146,4)" fg:x="118854" fg:w="101"/><text x="23.0898%" y="767.50"></text></g><g><title>load_elf_binary (101 samples, 0.02%)</title><rect x="22.8398%" y="741" width="0.0194%" height="15" fill="rgb(212,61,9)" fg:x="118854" fg:w="101"/><text x="23.0898%" y="751.50"></text></g><g><title>unlink_anon_vmas (94 samples, 0.02%)</title><rect x="22.8640%" y="693" width="0.0181%" height="15" fill="rgb(247,126,22)" fg:x="118980" fg:w="94"/><text x="23.1140%" y="703.50"></text></g><g><title>free_pgtables (127 samples, 0.02%)</title><rect x="22.8615%" y="709" width="0.0244%" height="15" fill="rgb(220,196,2)" fg:x="118967" fg:w="127"/><text x="23.1115%" y="719.50"></text></g><g><title>tlb_finish_mmu (63 samples, 0.01%)</title><rect x="22.8957%" y="709" width="0.0121%" height="15" fill="rgb(208,46,4)" fg:x="119145" fg:w="63"/><text x="23.1457%" y="719.50"></text></g><g><title>page_remove_rmap (59 samples, 0.01%)</title><rect x="22.9342%" y="677" width="0.0113%" height="15" fill="rgb(252,104,46)" fg:x="119345" fg:w="59"/><text x="23.1842%" y="687.50"></text></g><g><title>unmap_page_range (203 samples, 0.04%)</title><rect x="22.9082%" y="693" width="0.0390%" height="15" fill="rgb(237,152,48)" fg:x="119210" fg:w="203"/><text x="23.1582%" y="703.50"></text></g><g><title>exit_mmap (460 samples, 0.09%)</title><rect x="22.8609%" y="725" width="0.0884%" height="15" fill="rgb(221,59,37)" fg:x="118964" fg:w="460"/><text x="23.1109%" y="735.50"></text></g><g><title>unmap_vmas (216 samples, 0.04%)</title><rect x="22.9078%" y="709" width="0.0415%" height="15" fill="rgb(209,202,51)" fg:x="119208" fg:w="216"/><text x="23.1578%" y="719.50"></text></g><g><title>mmput (462 samples, 0.09%)</title><rect x="22.8609%" y="741" width="0.0888%" height="15" fill="rgb(228,81,30)" fg:x="118964" fg:w="462"/><text x="23.1109%" y="751.50"></text></g><g><title>__x64_sys_exit_group (492 samples, 0.09%)</title><rect x="22.8592%" y="789" width="0.0945%" height="15" fill="rgb(227,42,39)" fg:x="118955" fg:w="492"/><text x="23.1092%" y="799.50"></text></g><g><title>do_group_exit (492 samples, 0.09%)</title><rect x="22.8592%" y="773" width="0.0945%" height="15" fill="rgb(221,26,2)" fg:x="118955" fg:w="492"/><text x="23.1092%" y="783.50"></text></g><g><title>do_exit (492 samples, 0.09%)</title><rect x="22.8592%" y="757" width="0.0945%" height="15" fill="rgb(254,61,31)" fg:x="118955" fg:w="492"/><text x="23.1092%" y="767.50"></text></g><g><title>do_syscall_64 (602 samples, 0.12%)</title><rect x="22.8396%" y="805" width="0.1157%" height="15" fill="rgb(222,173,38)" fg:x="118853" fg:w="602"/><text x="23.0896%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (605 samples, 0.12%)</title><rect x="22.8394%" y="821" width="0.1163%" height="15" fill="rgb(218,50,12)" fg:x="118852" fg:w="605"/><text x="23.0894%" y="831.50"></text></g><g><title>c++ (31,381 samples, 6.03%)</title><rect x="16.9389%" y="837" width="6.0304%" height="15" fill="rgb(223,88,40)" fg:x="88147" fg:w="31381"/><text x="17.1889%" y="847.50">c++</text></g><g><title>ret_from_fork (67 samples, 0.01%)</title><rect x="22.9564%" y="821" width="0.0129%" height="15" fill="rgb(237,54,19)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="831.50"></text></g><g><title>schedule_tail (67 samples, 0.01%)</title><rect x="22.9564%" y="805" width="0.0129%" height="15" fill="rgb(251,129,25)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="815.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="22.9564%" y="789" width="0.0129%" height="15" fill="rgb(238,97,19)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="22.9564%" y="773" width="0.0129%" height="15" fill="rgb(240,169,18)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.01%)</title><rect x="22.9564%" y="757" width="0.0129%" height="15" fill="rgb(230,187,49)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="767.50"></text></g><g><title>native_write_msr (67 samples, 0.01%)</title><rect x="22.9564%" y="741" width="0.0129%" height="15" fill="rgb(209,44,26)" fg:x="119461" fg:w="67"/><text x="23.2064%" y="751.50"></text></g><g><title>[perf-261576.map] (81 samples, 0.02%)</title><rect x="22.9711%" y="821" width="0.0156%" height="15" fill="rgb(244,0,6)" fg:x="119537" fg:w="81"/><text x="23.2211%" y="831.50"></text></g><g><title>cli-update-thre (95 samples, 0.02%)</title><rect x="22.9693%" y="837" width="0.0183%" height="15" fill="rgb(248,18,21)" fg:x="119528" fg:w="95"/><text x="23.2193%" y="847.50"></text></g><g><title>[perf-261576.map] (460 samples, 0.09%)</title><rect x="22.9887%" y="821" width="0.0884%" height="15" fill="rgb(245,180,19)" fg:x="119629" fg:w="460"/><text x="23.2387%" y="831.50"></text></g><g><title>find-action-loo (541 samples, 0.10%)</title><rect x="22.9876%" y="837" width="0.1040%" height="15" fill="rgb(252,118,36)" fg:x="119623" fg:w="541"/><text x="23.2376%" y="847.50"></text></g><g><title>[perf-261576.map] (54 samples, 0.01%)</title><rect x="23.0925%" y="821" width="0.0104%" height="15" fill="rgb(210,224,19)" fg:x="120169" fg:w="54"/><text x="23.3425%" y="831.50"></text></g><g><title>globbing_pool-0 (77 samples, 0.01%)</title><rect x="23.0915%" y="837" width="0.0148%" height="15" fill="rgb(218,30,24)" fg:x="120164" fg:w="77"/><text x="23.3415%" y="847.50"></text></g><g><title>JVM_StartThread (78 samples, 0.01%)</title><rect x="23.1450%" y="805" width="0.0150%" height="15" fill="rgb(219,75,50)" fg:x="120442" fg:w="78"/><text x="23.3950%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.02%)</title><rect x="23.1634%" y="581" width="0.0192%" height="15" fill="rgb(234,72,50)" fg:x="120538" fg:w="100"/><text x="23.4134%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.02%)</title><rect x="23.1634%" y="565" width="0.0192%" height="15" fill="rgb(219,100,48)" fg:x="120538" fg:w="100"/><text x="23.4134%" y="575.50"></text></g><g><title>native_write_msr (99 samples, 0.02%)</title><rect x="23.1636%" y="549" width="0.0190%" height="15" fill="rgb(253,5,41)" fg:x="120539" fg:w="99"/><text x="23.4136%" y="559.50"></text></g><g><title>do_syscall_64 (115 samples, 0.02%)</title><rect x="23.1619%" y="709" width="0.0221%" height="15" fill="rgb(247,181,11)" fg:x="120530" fg:w="115"/><text x="23.4119%" y="719.50"></text></g><g><title>__x64_sys_futex (114 samples, 0.02%)</title><rect x="23.1621%" y="693" width="0.0219%" height="15" fill="rgb(222,223,25)" fg:x="120531" fg:w="114"/><text x="23.4121%" y="703.50"></text></g><g><title>do_futex (114 samples, 0.02%)</title><rect x="23.1621%" y="677" width="0.0219%" height="15" fill="rgb(214,198,28)" fg:x="120531" fg:w="114"/><text x="23.4121%" y="687.50"></text></g><g><title>futex_wait (114 samples, 0.02%)</title><rect x="23.1621%" y="661" width="0.0219%" height="15" fill="rgb(230,46,43)" fg:x="120531" fg:w="114"/><text x="23.4121%" y="671.50"></text></g><g><title>futex_wait_queue_me (113 samples, 0.02%)</title><rect x="23.1623%" y="645" width="0.0217%" height="15" fill="rgb(233,65,53)" fg:x="120532" fg:w="113"/><text x="23.4123%" y="655.50"></text></g><g><title>schedule (110 samples, 0.02%)</title><rect x="23.1628%" y="629" width="0.0211%" height="15" fill="rgb(221,121,27)" fg:x="120535" fg:w="110"/><text x="23.4128%" y="639.50"></text></g><g><title>__schedule (110 samples, 0.02%)</title><rect x="23.1628%" y="613" width="0.0211%" height="15" fill="rgb(247,70,47)" fg:x="120535" fg:w="110"/><text x="23.4128%" y="623.50"></text></g><g><title>finish_task_switch (109 samples, 0.02%)</title><rect x="23.1630%" y="597" width="0.0209%" height="15" fill="rgb(228,85,35)" fg:x="120536" fg:w="109"/><text x="23.4130%" y="607.50"></text></g><g><title>Unsafe_Park (128 samples, 0.02%)</title><rect x="23.1601%" y="805" width="0.0246%" height="15" fill="rgb(209,50,18)" fg:x="120521" fg:w="128"/><text x="23.4101%" y="815.50"></text></g><g><title>Parker::park (128 samples, 0.02%)</title><rect x="23.1601%" y="789" width="0.0246%" height="15" fill="rgb(250,19,35)" fg:x="120521" fg:w="128"/><text x="23.4101%" y="799.50"></text></g><g><title>__pthread_cond_wait (119 samples, 0.02%)</title><rect x="23.1619%" y="773" width="0.0229%" height="15" fill="rgb(253,107,29)" fg:x="120530" fg:w="119"/><text x="23.4119%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (119 samples, 0.02%)</title><rect x="23.1619%" y="757" width="0.0229%" height="15" fill="rgb(252,179,29)" fg:x="120530" fg:w="119"/><text x="23.4119%" y="767.50"></text></g><g><title>futex_wait_cancelable (119 samples, 0.02%)</title><rect x="23.1619%" y="741" width="0.0229%" height="15" fill="rgb(238,194,6)" fg:x="120530" fg:w="119"/><text x="23.4119%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (119 samples, 0.02%)</title><rect x="23.1619%" y="725" width="0.0229%" height="15" fill="rgb(238,164,29)" fg:x="120530" fg:w="119"/><text x="23.4119%" y="735.50"></text></g><g><title>[perf-261576.map] (388 samples, 0.07%)</title><rect x="23.1117%" y="821" width="0.0746%" height="15" fill="rgb(224,25,9)" fg:x="120269" fg:w="388"/><text x="23.3617%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.02%)</title><rect x="23.1874%" y="757" width="0.0161%" height="15" fill="rgb(244,153,23)" fg:x="120663" fg:w="84"/><text x="23.4374%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (82 samples, 0.02%)</title><rect x="23.1878%" y="741" width="0.0158%" height="15" fill="rgb(212,203,14)" fg:x="120665" fg:w="82"/><text x="23.4378%" y="751.50"></text></g><g><title>native_write_msr (82 samples, 0.02%)</title><rect x="23.1878%" y="725" width="0.0158%" height="15" fill="rgb(220,164,20)" fg:x="120665" fg:w="82"/><text x="23.4378%" y="735.50"></text></g><g><title>schedule_tail (86 samples, 0.02%)</title><rect x="23.1872%" y="789" width="0.0165%" height="15" fill="rgb(222,203,48)" fg:x="120662" fg:w="86"/><text x="23.4372%" y="799.50"></text></g><g><title>finish_task_switch (85 samples, 0.02%)</title><rect x="23.1874%" y="773" width="0.0163%" height="15" fill="rgb(215,159,22)" fg:x="120663" fg:w="85"/><text x="23.4374%" y="783.50"></text></g><g><title>ret_from_fork (87 samples, 0.02%)</title><rect x="23.1872%" y="805" width="0.0167%" height="15" fill="rgb(216,183,47)" fg:x="120662" fg:w="87"/><text x="23.4372%" y="815.50"></text></g><g><title>__GI___clone (131 samples, 0.03%)</title><rect x="23.1870%" y="821" width="0.0252%" height="15" fill="rgb(229,195,25)" fg:x="120661" fg:w="131"/><text x="23.4370%" y="831.50"></text></g><g><title>globbing_pool-1 (553 samples, 0.11%)</title><rect x="23.1063%" y="837" width="0.1063%" height="15" fill="rgb(224,132,51)" fg:x="120241" fg:w="553"/><text x="23.3563%" y="847.50"></text></g><g><title>JVM_StartThread (64 samples, 0.01%)</title><rect x="23.2464%" y="805" width="0.0123%" height="15" fill="rgb(240,63,7)" fg:x="120970" fg:w="64"/><text x="23.4964%" y="815.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="23.2593%" y="709" width="0.0108%" height="15" fill="rgb(249,182,41)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="719.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="23.2593%" y="693" width="0.0108%" height="15" fill="rgb(243,47,26)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="703.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="23.2593%" y="677" width="0.0108%" height="15" fill="rgb(233,48,2)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="687.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="23.2593%" y="661" width="0.0108%" height="15" fill="rgb(244,165,34)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="671.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.01%)</title><rect x="23.2593%" y="645" width="0.0108%" height="15" fill="rgb(207,89,7)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="655.50"></text></g><g><title>schedule (56 samples, 0.01%)</title><rect x="23.2593%" y="629" width="0.0108%" height="15" fill="rgb(244,117,36)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="639.50"></text></g><g><title>__schedule (56 samples, 0.01%)</title><rect x="23.2593%" y="613" width="0.0108%" height="15" fill="rgb(226,144,34)" fg:x="121037" fg:w="56"/><text x="23.5093%" y="623.50"></text></g><g><title>finish_task_switch (54 samples, 0.01%)</title><rect x="23.2597%" y="597" width="0.0104%" height="15" fill="rgb(213,23,19)" fg:x="121039" fg:w="54"/><text x="23.5097%" y="607.50"></text></g><g><title>Unsafe_Park (59 samples, 0.01%)</title><rect x="23.2589%" y="805" width="0.0113%" height="15" fill="rgb(217,75,12)" fg:x="121035" fg:w="59"/><text x="23.5089%" y="815.50"></text></g><g><title>Parker::park (59 samples, 0.01%)</title><rect x="23.2589%" y="789" width="0.0113%" height="15" fill="rgb(224,159,17)" fg:x="121035" fg:w="59"/><text x="23.5089%" y="799.50"></text></g><g><title>__pthread_cond_wait (58 samples, 0.01%)</title><rect x="23.2591%" y="773" width="0.0111%" height="15" fill="rgb(217,118,1)" fg:x="121036" fg:w="58"/><text x="23.5091%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (58 samples, 0.01%)</title><rect x="23.2591%" y="757" width="0.0111%" height="15" fill="rgb(232,180,48)" fg:x="121036" fg:w="58"/><text x="23.5091%" y="767.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.01%)</title><rect x="23.2591%" y="741" width="0.0111%" height="15" fill="rgb(230,27,33)" fg:x="121036" fg:w="58"/><text x="23.5091%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="23.2593%" y="725" width="0.0110%" height="15" fill="rgb(205,31,21)" fg:x="121037" fg:w="57"/><text x="23.5093%" y="735.50"></text></g><g><title>[perf-261576.map] (267 samples, 0.05%)</title><rect x="23.2197%" y="821" width="0.0513%" height="15" fill="rgb(253,59,4)" fg:x="120831" fg:w="267"/><text x="23.4697%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.01%)</title><rect x="23.2728%" y="757" width="0.0113%" height="15" fill="rgb(224,201,9)" fg:x="121107" fg:w="59"/><text x="23.5228%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.01%)</title><rect x="23.2728%" y="741" width="0.0113%" height="15" fill="rgb(229,206,30)" fg:x="121107" fg:w="59"/><text x="23.5228%" y="751.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="23.2728%" y="725" width="0.0113%" height="15" fill="rgb(212,67,47)" fg:x="121107" fg:w="59"/><text x="23.5228%" y="735.50"></text></g><g><title>schedule_tail (61 samples, 0.01%)</title><rect x="23.2726%" y="789" width="0.0117%" height="15" fill="rgb(211,96,50)" fg:x="121106" fg:w="61"/><text x="23.5226%" y="799.50"></text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="23.2726%" y="773" width="0.0117%" height="15" fill="rgb(252,114,18)" fg:x="121106" fg:w="61"/><text x="23.5226%" y="783.50"></text></g><g><title>ret_from_fork (62 samples, 0.01%)</title><rect x="23.2726%" y="805" width="0.0119%" height="15" fill="rgb(223,58,37)" fg:x="121106" fg:w="62"/><text x="23.5226%" y="815.50"></text></g><g><title>__GI___clone (113 samples, 0.02%)</title><rect x="23.2712%" y="821" width="0.0217%" height="15" fill="rgb(237,70,4)" fg:x="121099" fg:w="113"/><text x="23.5212%" y="831.50"></text></g><g><title>globbing_pool-2 (419 samples, 0.08%)</title><rect x="23.2126%" y="837" width="0.0805%" height="15" fill="rgb(244,85,46)" fg:x="120794" fg:w="419"/><text x="23.4626%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.01%)</title><rect x="23.3120%" y="549" width="0.0108%" height="15" fill="rgb(223,39,52)" fg:x="121311" fg:w="56"/><text x="23.5620%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.01%)</title><rect x="23.3122%" y="533" width="0.0106%" height="15" fill="rgb(218,200,14)" fg:x="121312" fg:w="55"/><text x="23.5622%" y="543.50"></text></g><g><title>native_write_msr (55 samples, 0.01%)</title><rect x="23.3122%" y="517" width="0.0106%" height="15" fill="rgb(208,171,16)" fg:x="121312" fg:w="55"/><text x="23.5622%" y="527.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="23.3118%" y="677" width="0.0111%" height="15" fill="rgb(234,200,18)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="687.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="23.3118%" y="661" width="0.0111%" height="15" fill="rgb(228,45,11)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="671.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="23.3118%" y="645" width="0.0111%" height="15" fill="rgb(237,182,11)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="655.50"></text></g><g><title>futex_wait (58 samples, 0.01%)</title><rect x="23.3118%" y="629" width="0.0111%" height="15" fill="rgb(241,175,49)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="639.50"></text></g><g><title>futex_wait_queue_me (58 samples, 0.01%)</title><rect x="23.3118%" y="613" width="0.0111%" height="15" fill="rgb(247,38,35)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="623.50"></text></g><g><title>schedule (58 samples, 0.01%)</title><rect x="23.3118%" y="597" width="0.0111%" height="15" fill="rgb(228,39,49)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="607.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="23.3118%" y="581" width="0.0111%" height="15" fill="rgb(226,101,26)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="591.50"></text></g><g><title>finish_task_switch (58 samples, 0.01%)</title><rect x="23.3118%" y="565" width="0.0111%" height="15" fill="rgb(206,141,19)" fg:x="121310" fg:w="58"/><text x="23.5618%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="23.3118%" y="693" width="0.0113%" height="15" fill="rgb(211,200,13)" fg:x="121310" fg:w="59"/><text x="23.5618%" y="703.50"></text></g><g><title>__pthread_cond_wait (61 samples, 0.01%)</title><rect x="23.3116%" y="741" width="0.0117%" height="15" fill="rgb(241,121,6)" fg:x="121309" fg:w="61"/><text x="23.5616%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (61 samples, 0.01%)</title><rect x="23.3116%" y="725" width="0.0117%" height="15" fill="rgb(234,221,29)" fg:x="121309" fg:w="61"/><text x="23.5616%" y="735.50"></text></g><g><title>futex_wait_cancelable (61 samples, 0.01%)</title><rect x="23.3116%" y="709" width="0.0117%" height="15" fill="rgb(229,136,5)" fg:x="121309" fg:w="61"/><text x="23.5616%" y="719.50"></text></g><g><title>Monitor::lock (64 samples, 0.01%)</title><rect x="23.3116%" y="789" width="0.0123%" height="15" fill="rgb(238,36,11)" fg:x="121309" fg:w="64"/><text x="23.5616%" y="799.50"></text></g><g><title>Monitor::ILock (64 samples, 0.01%)</title><rect x="23.3116%" y="773" width="0.0123%" height="15" fill="rgb(251,55,41)" fg:x="121309" fg:w="64"/><text x="23.5616%" y="783.50"></text></g><g><title>os::PlatformEvent::park (64 samples, 0.01%)</title><rect x="23.3116%" y="757" width="0.0123%" height="15" fill="rgb(242,34,40)" fg:x="121309" fg:w="64"/><text x="23.5616%" y="767.50"></text></g><g><title>JVM_StartThread (75 samples, 0.01%)</title><rect x="23.3112%" y="805" width="0.0144%" height="15" fill="rgb(215,42,17)" fg:x="121307" fg:w="75"/><text x="23.5612%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (88 samples, 0.02%)</title><rect x="23.3266%" y="581" width="0.0169%" height="15" fill="rgb(207,44,46)" fg:x="121387" fg:w="88"/><text x="23.5766%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (88 samples, 0.02%)</title><rect x="23.3266%" y="565" width="0.0169%" height="15" fill="rgb(211,206,28)" fg:x="121387" fg:w="88"/><text x="23.5766%" y="575.50"></text></g><g><title>native_write_msr (88 samples, 0.02%)</title><rect x="23.3266%" y="549" width="0.0169%" height="15" fill="rgb(237,167,16)" fg:x="121387" fg:w="88"/><text x="23.5766%" y="559.50"></text></g><g><title>do_syscall_64 (98 samples, 0.02%)</title><rect x="23.3258%" y="709" width="0.0188%" height="15" fill="rgb(233,66,6)" fg:x="121383" fg:w="98"/><text x="23.5758%" y="719.50"></text></g><g><title>__x64_sys_futex (97 samples, 0.02%)</title><rect x="23.3260%" y="693" width="0.0186%" height="15" fill="rgb(246,123,29)" fg:x="121384" fg:w="97"/><text x="23.5760%" y="703.50"></text></g><g><title>do_futex (97 samples, 0.02%)</title><rect x="23.3260%" y="677" width="0.0186%" height="15" fill="rgb(209,62,40)" fg:x="121384" fg:w="97"/><text x="23.5760%" y="687.50"></text></g><g><title>futex_wait (97 samples, 0.02%)</title><rect x="23.3260%" y="661" width="0.0186%" height="15" fill="rgb(218,4,25)" fg:x="121384" fg:w="97"/><text x="23.5760%" y="671.50"></text></g><g><title>futex_wait_queue_me (96 samples, 0.02%)</title><rect x="23.3262%" y="645" width="0.0184%" height="15" fill="rgb(253,91,49)" fg:x="121385" fg:w="96"/><text x="23.5762%" y="655.50"></text></g><g><title>schedule (96 samples, 0.02%)</title><rect x="23.3262%" y="629" width="0.0184%" height="15" fill="rgb(228,155,29)" fg:x="121385" fg:w="96"/><text x="23.5762%" y="639.50"></text></g><g><title>__schedule (96 samples, 0.02%)</title><rect x="23.3262%" y="613" width="0.0184%" height="15" fill="rgb(243,57,37)" fg:x="121385" fg:w="96"/><text x="23.5762%" y="623.50"></text></g><g><title>finish_task_switch (94 samples, 0.02%)</title><rect x="23.3266%" y="597" width="0.0181%" height="15" fill="rgb(244,167,17)" fg:x="121387" fg:w="94"/><text x="23.5766%" y="607.50"></text></g><g><title>__pthread_cond_wait (105 samples, 0.02%)</title><rect x="23.3256%" y="773" width="0.0202%" height="15" fill="rgb(207,181,38)" fg:x="121382" fg:w="105"/><text x="23.5756%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (105 samples, 0.02%)</title><rect x="23.3256%" y="757" width="0.0202%" height="15" fill="rgb(211,8,23)" fg:x="121382" fg:w="105"/><text x="23.5756%" y="767.50"></text></g><g><title>futex_wait_cancelable (105 samples, 0.02%)</title><rect x="23.3256%" y="741" width="0.0202%" height="15" fill="rgb(235,11,44)" fg:x="121382" fg:w="105"/><text x="23.5756%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="23.3258%" y="725" width="0.0200%" height="15" fill="rgb(248,18,52)" fg:x="121383" fg:w="104"/><text x="23.5758%" y="735.50"></text></g><g><title>Unsafe_Park (107 samples, 0.02%)</title><rect x="23.3256%" y="805" width="0.0206%" height="15" fill="rgb(208,4,7)" fg:x="121382" fg:w="107"/><text x="23.5756%" y="815.50"></text></g><g><title>Parker::park (107 samples, 0.02%)</title><rect x="23.3256%" y="789" width="0.0206%" height="15" fill="rgb(240,17,39)" fg:x="121382" fg:w="107"/><text x="23.5756%" y="799.50"></text></g><g><title>[perf-261576.map] (257 samples, 0.05%)</title><rect x="23.2972%" y="821" width="0.0494%" height="15" fill="rgb(207,170,3)" fg:x="121234" fg:w="257"/><text x="23.5472%" y="831.50"></text></g><g><title>globbing_pool-3 (358 samples, 0.07%)</title><rect x="23.2931%" y="837" width="0.0688%" height="15" fill="rgb(236,100,52)" fg:x="121213" fg:w="358"/><text x="23.5431%" y="847.50"></text></g><g><title>__GI___clone (72 samples, 0.01%)</title><rect x="23.3481%" y="821" width="0.0138%" height="15" fill="rgb(246,78,51)" fg:x="121499" fg:w="72"/><text x="23.5981%" y="831.50"></text></g><g><title>[perf-261576.map] (167 samples, 0.03%)</title><rect x="23.3660%" y="821" width="0.0321%" height="15" fill="rgb(211,17,15)" fg:x="121592" fg:w="167"/><text x="23.6160%" y="831.50"></text></g><g><title>globbing_pool-4 (224 samples, 0.04%)</title><rect x="23.3619%" y="837" width="0.0430%" height="15" fill="rgb(209,59,46)" fg:x="121571" fg:w="224"/><text x="23.6119%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.01%)</title><rect x="23.4296%" y="581" width="0.0133%" height="15" fill="rgb(210,92,25)" fg:x="121923" fg:w="69"/><text x="23.6796%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.01%)</title><rect x="23.4296%" y="565" width="0.0133%" height="15" fill="rgb(238,174,52)" fg:x="121923" fg:w="69"/><text x="23.6796%" y="575.50"></text></g><g><title>native_write_msr (69 samples, 0.01%)</title><rect x="23.4296%" y="549" width="0.0133%" height="15" fill="rgb(230,73,7)" fg:x="121923" fg:w="69"/><text x="23.6796%" y="559.50"></text></g><g><title>finish_task_switch (75 samples, 0.01%)</title><rect x="23.4294%" y="597" width="0.0144%" height="15" fill="rgb(243,124,40)" fg:x="121922" fg:w="75"/><text x="23.6794%" y="607.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="23.4288%" y="709" width="0.0154%" height="15" fill="rgb(244,170,11)" fg:x="121919" fg:w="80"/><text x="23.6788%" y="719.50"></text></g><g><title>__x64_sys_futex (80 samples, 0.02%)</title><rect x="23.4288%" y="693" width="0.0154%" height="15" fill="rgb(207,114,54)" fg:x="121919" fg:w="80"/><text x="23.6788%" y="703.50"></text></g><g><title>do_futex (80 samples, 0.02%)</title><rect x="23.4288%" y="677" width="0.0154%" height="15" fill="rgb(205,42,20)" fg:x="121919" fg:w="80"/><text x="23.6788%" y="687.50"></text></g><g><title>futex_wait (80 samples, 0.02%)</title><rect x="23.4288%" y="661" width="0.0154%" height="15" fill="rgb(230,30,28)" fg:x="121919" fg:w="80"/><text x="23.6788%" y="671.50"></text></g><g><title>futex_wait_queue_me (78 samples, 0.01%)</title><rect x="23.4292%" y="645" width="0.0150%" height="15" fill="rgb(205,73,54)" fg:x="121921" fg:w="78"/><text x="23.6792%" y="655.50"></text></g><g><title>schedule (77 samples, 0.01%)</title><rect x="23.4294%" y="629" width="0.0148%" height="15" fill="rgb(254,227,23)" fg:x="121922" fg:w="77"/><text x="23.6794%" y="639.50"></text></g><g><title>__schedule (77 samples, 0.01%)</title><rect x="23.4294%" y="613" width="0.0148%" height="15" fill="rgb(228,202,34)" fg:x="121922" fg:w="77"/><text x="23.6794%" y="623.50"></text></g><g><title>__pthread_cond_wait (82 samples, 0.02%)</title><rect x="23.4286%" y="773" width="0.0158%" height="15" fill="rgb(222,225,37)" fg:x="121918" fg:w="82"/><text x="23.6786%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (82 samples, 0.02%)</title><rect x="23.4286%" y="757" width="0.0158%" height="15" fill="rgb(221,14,54)" fg:x="121918" fg:w="82"/><text x="23.6786%" y="767.50"></text></g><g><title>futex_wait_cancelable (82 samples, 0.02%)</title><rect x="23.4286%" y="741" width="0.0158%" height="15" fill="rgb(254,102,2)" fg:x="121918" fg:w="82"/><text x="23.6786%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.02%)</title><rect x="23.4288%" y="725" width="0.0156%" height="15" fill="rgb(232,104,17)" fg:x="121919" fg:w="81"/><text x="23.6788%" y="735.50"></text></g><g><title>Parker::park (83 samples, 0.02%)</title><rect x="23.4286%" y="789" width="0.0159%" height="15" fill="rgb(250,220,14)" fg:x="121918" fg:w="83"/><text x="23.6786%" y="799.50"></text></g><g><title>Unsafe_Park (84 samples, 0.02%)</title><rect x="23.4286%" y="805" width="0.0161%" height="15" fill="rgb(241,158,9)" fg:x="121918" fg:w="84"/><text x="23.6786%" y="815.50"></text></g><g><title>[perf-261576.map] (189 samples, 0.04%)</title><rect x="23.4090%" y="821" width="0.0363%" height="15" fill="rgb(246,9,43)" fg:x="121816" fg:w="189"/><text x="23.6590%" y="831.50"></text></g><g><title>globbing_pool-5 (256 samples, 0.05%)</title><rect x="23.4050%" y="837" width="0.0492%" height="15" fill="rgb(206,73,33)" fg:x="121795" fg:w="256"/><text x="23.6550%" y="847.50"></text></g><g><title>Unsafe_Park (57 samples, 0.01%)</title><rect x="23.4868%" y="805" width="0.0110%" height="15" fill="rgb(222,79,8)" fg:x="122221" fg:w="57"/><text x="23.7368%" y="815.50"></text></g><g><title>Parker::park (57 samples, 0.01%)</title><rect x="23.4868%" y="789" width="0.0110%" height="15" fill="rgb(234,8,54)" fg:x="122221" fg:w="57"/><text x="23.7368%" y="799.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.01%)</title><rect x="23.4868%" y="773" width="0.0110%" height="15" fill="rgb(209,134,38)" fg:x="122221" fg:w="57"/><text x="23.7368%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.01%)</title><rect x="23.4868%" y="757" width="0.0110%" height="15" fill="rgb(230,127,29)" fg:x="122221" fg:w="57"/><text x="23.7368%" y="767.50"></text></g><g><title>futex_wait_cancelable (56 samples, 0.01%)</title><rect x="23.4870%" y="741" width="0.0108%" height="15" fill="rgb(242,44,41)" fg:x="122222" fg:w="56"/><text x="23.7370%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="23.4870%" y="725" width="0.0108%" height="15" fill="rgb(222,56,43)" fg:x="122222" fg:w="56"/><text x="23.7370%" y="735.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="23.4870%" y="709" width="0.0108%" height="15" fill="rgb(238,39,47)" fg:x="122222" fg:w="56"/><text x="23.7370%" y="719.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="23.4870%" y="693" width="0.0108%" height="15" fill="rgb(226,79,43)" fg:x="122222" fg:w="56"/><text x="23.7370%" y="703.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="23.4870%" y="677" width="0.0108%" height="15" fill="rgb(242,105,53)" fg:x="122222" fg:w="56"/><text x="23.7370%" y="687.50"></text></g><g><title>futex_wait (54 samples, 0.01%)</title><rect x="23.4874%" y="661" width="0.0104%" height="15" fill="rgb(251,132,46)" fg:x="122224" fg:w="54"/><text x="23.7374%" y="671.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.01%)</title><rect x="23.4874%" y="645" width="0.0104%" height="15" fill="rgb(231,77,14)" fg:x="122224" fg:w="54"/><text x="23.7374%" y="655.50"></text></g><g><title>schedule (53 samples, 0.01%)</title><rect x="23.4876%" y="629" width="0.0102%" height="15" fill="rgb(240,135,9)" fg:x="122225" fg:w="53"/><text x="23.7376%" y="639.50"></text></g><g><title>__schedule (53 samples, 0.01%)</title><rect x="23.4876%" y="613" width="0.0102%" height="15" fill="rgb(248,109,14)" fg:x="122225" fg:w="53"/><text x="23.7376%" y="623.50"></text></g><g><title>[perf-261576.map] (193 samples, 0.04%)</title><rect x="23.4630%" y="821" width="0.0371%" height="15" fill="rgb(227,146,52)" fg:x="122097" fg:w="193"/><text x="23.7130%" y="831.50"></text></g><g><title>globbing_pool-6 (272 samples, 0.05%)</title><rect x="23.4542%" y="837" width="0.0523%" height="15" fill="rgb(232,54,3)" fg:x="122051" fg:w="272"/><text x="23.7042%" y="847.50"></text></g><g><title>[perf-261576.map] (142 samples, 0.03%)</title><rect x="23.5084%" y="821" width="0.0273%" height="15" fill="rgb(229,201,43)" fg:x="122333" fg:w="142"/><text x="23.7584%" y="831.50"></text></g><g><title>globbing_pool-7 (195 samples, 0.04%)</title><rect x="23.5064%" y="837" width="0.0375%" height="15" fill="rgb(252,161,33)" fg:x="122323" fg:w="195"/><text x="23.7564%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.01%)</title><rect x="23.5550%" y="581" width="0.0135%" height="15" fill="rgb(226,146,40)" fg:x="122576" fg:w="70"/><text x="23.8050%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.01%)</title><rect x="23.5552%" y="565" width="0.0133%" height="15" fill="rgb(219,47,25)" fg:x="122577" fg:w="69"/><text x="23.8052%" y="575.50"></text></g><g><title>native_write_msr (69 samples, 0.01%)</title><rect x="23.5552%" y="549" width="0.0133%" height="15" fill="rgb(250,135,13)" fg:x="122577" fg:w="69"/><text x="23.8052%" y="559.50"></text></g><g><title>finish_task_switch (75 samples, 0.01%)</title><rect x="23.5549%" y="597" width="0.0144%" height="15" fill="rgb(219,229,18)" fg:x="122575" fg:w="75"/><text x="23.8049%" y="607.50"></text></g><g><title>do_syscall_64 (77 samples, 0.01%)</title><rect x="23.5547%" y="709" width="0.0148%" height="15" fill="rgb(217,152,27)" fg:x="122574" fg:w="77"/><text x="23.8047%" y="719.50"></text></g><g><title>__x64_sys_futex (77 samples, 0.01%)</title><rect x="23.5547%" y="693" width="0.0148%" height="15" fill="rgb(225,71,47)" fg:x="122574" fg:w="77"/><text x="23.8047%" y="703.50"></text></g><g><title>do_futex (77 samples, 0.01%)</title><rect x="23.5547%" y="677" width="0.0148%" height="15" fill="rgb(220,139,14)" fg:x="122574" fg:w="77"/><text x="23.8047%" y="687.50"></text></g><g><title>futex_wait (77 samples, 0.01%)</title><rect x="23.5547%" y="661" width="0.0148%" height="15" fill="rgb(247,54,32)" fg:x="122574" fg:w="77"/><text x="23.8047%" y="671.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.01%)</title><rect x="23.5549%" y="645" width="0.0146%" height="15" fill="rgb(252,131,39)" fg:x="122575" fg:w="76"/><text x="23.8049%" y="655.50"></text></g><g><title>schedule (76 samples, 0.01%)</title><rect x="23.5549%" y="629" width="0.0146%" height="15" fill="rgb(210,108,39)" fg:x="122575" fg:w="76"/><text x="23.8049%" y="639.50"></text></g><g><title>__schedule (76 samples, 0.01%)</title><rect x="23.5549%" y="613" width="0.0146%" height="15" fill="rgb(205,23,29)" fg:x="122575" fg:w="76"/><text x="23.8049%" y="623.50"></text></g><g><title>Unsafe_Park (80 samples, 0.02%)</title><rect x="23.5547%" y="805" width="0.0154%" height="15" fill="rgb(246,139,46)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="815.50"></text></g><g><title>Parker::park (80 samples, 0.02%)</title><rect x="23.5547%" y="789" width="0.0154%" height="15" fill="rgb(250,81,26)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="799.50"></text></g><g><title>__pthread_cond_wait (80 samples, 0.02%)</title><rect x="23.5547%" y="773" width="0.0154%" height="15" fill="rgb(214,104,7)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (80 samples, 0.02%)</title><rect x="23.5547%" y="757" width="0.0154%" height="15" fill="rgb(233,189,8)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="767.50"></text></g><g><title>futex_wait_cancelable (80 samples, 0.02%)</title><rect x="23.5547%" y="741" width="0.0154%" height="15" fill="rgb(228,141,17)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.02%)</title><rect x="23.5547%" y="725" width="0.0154%" height="15" fill="rgb(247,157,1)" fg:x="122574" fg:w="80"/><text x="23.8047%" y="735.50"></text></g><g><title>[perf-261576.map] (132 samples, 0.03%)</title><rect x="23.5451%" y="821" width="0.0254%" height="15" fill="rgb(249,225,5)" fg:x="122524" fg:w="132"/><text x="23.7951%" y="831.50"></text></g><g><title>globbing_pool-8 (175 samples, 0.03%)</title><rect x="23.5439%" y="837" width="0.0336%" height="15" fill="rgb(242,55,13)" fg:x="122518" fg:w="175"/><text x="23.7939%" y="847.50"></text></g><g><title>[perf-261576.map] (57 samples, 0.01%)</title><rect x="23.5777%" y="821" width="0.0110%" height="15" fill="rgb(230,49,50)" fg:x="122694" fg:w="57"/><text x="23.8277%" y="831.50"></text></g><g><title>globbing_pool-9 (73 samples, 0.01%)</title><rect x="23.5775%" y="837" width="0.0140%" height="15" fill="rgb(241,111,38)" fg:x="122693" fg:w="73"/><text x="23.8275%" y="847.50"></text></g><g><title>[anon] (180 samples, 0.03%)</title><rect x="23.5946%" y="821" width="0.0346%" height="15" fill="rgb(252,155,4)" fg:x="122782" fg:w="180"/><text x="23.8446%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (64 samples, 0.01%)</title><rect x="23.9788%" y="693" width="0.0123%" height="15" fill="rgb(212,69,32)" fg:x="124781" fg:w="64"/><text x="24.2288%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (64 samples, 0.01%)</title><rect x="23.9788%" y="677" width="0.0123%" height="15" fill="rgb(243,107,47)" fg:x="124781" fg:w="64"/><text x="24.2288%" y="687.50"></text></g><g><title>KlassFactory::create_from_stream (103 samples, 0.02%)</title><rect x="23.9788%" y="709" width="0.0198%" height="15" fill="rgb(247,130,12)" fg:x="124781" fg:w="103"/><text x="24.2288%" y="719.50"></text></g><g><title>ClassLoader::load_class (118 samples, 0.02%)</title><rect x="23.9761%" y="725" width="0.0227%" height="15" fill="rgb(233,74,16)" fg:x="124767" fg:w="118"/><text x="24.2261%" y="735.50"></text></g><g><title>ConstantPool::klass_at_impl (140 samples, 0.03%)</title><rect x="23.9747%" y="789" width="0.0269%" height="15" fill="rgb(208,58,18)" fg:x="124760" fg:w="140"/><text x="24.2247%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_fail (140 samples, 0.03%)</title><rect x="23.9747%" y="773" width="0.0269%" height="15" fill="rgb(242,225,1)" fg:x="124760" fg:w="140"/><text x="24.2247%" y="783.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (139 samples, 0.03%)</title><rect x="23.9749%" y="757" width="0.0267%" height="15" fill="rgb(249,39,40)" fg:x="124761" fg:w="139"/><text x="24.2249%" y="767.50"></text></g><g><title>SystemDictionary::load_instance_class (133 samples, 0.03%)</title><rect x="23.9761%" y="741" width="0.0256%" height="15" fill="rgb(207,72,44)" fg:x="124767" fg:w="133"/><text x="24.2261%" y="751.50"></text></g><g><title>Rewriter::rewrite (56 samples, 0.01%)</title><rect x="24.0101%" y="757" width="0.0108%" height="15" fill="rgb(215,193,12)" fg:x="124944" fg:w="56"/><text x="24.2601%" y="767.50"></text></g><g><title>Rewriter::Rewriter (56 samples, 0.01%)</title><rect x="24.0101%" y="741" width="0.0108%" height="15" fill="rgb(248,41,39)" fg:x="124944" fg:w="56"/><text x="24.2601%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (114 samples, 0.02%)</title><rect x="24.0024%" y="773" width="0.0219%" height="15" fill="rgb(253,85,4)" fg:x="124904" fg:w="114"/><text x="24.2524%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (261 samples, 0.05%)</title><rect x="23.9745%" y="805" width="0.0502%" height="15" fill="rgb(243,70,31)" fg:x="124759" fg:w="261"/><text x="24.2245%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (116 samples, 0.02%)</title><rect x="24.0024%" y="789" width="0.0223%" height="15" fill="rgb(253,195,26)" fg:x="124904" fg:w="116"/><text x="24.2524%" y="799.50"></text></g><g><title>LinkResolver::resolve_field_access (80 samples, 0.02%)</title><rect x="24.0528%" y="773" width="0.0154%" height="15" fill="rgb(243,42,11)" fg:x="125166" fg:w="80"/><text x="24.3028%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (92 samples, 0.02%)</title><rect x="24.0510%" y="789" width="0.0177%" height="15" fill="rgb(239,66,17)" fg:x="125157" fg:w="92"/><text x="24.3010%" y="799.50"></text></g><g><title>SystemDictionary::load_instance_class (53 samples, 0.01%)</title><rect x="24.0785%" y="709" width="0.0102%" height="15" fill="rgb(217,132,21)" fg:x="125300" fg:w="53"/><text x="24.3285%" y="719.50"></text></g><g><title>ConstantPool::klass_ref_at (67 samples, 0.01%)</title><rect x="24.0760%" y="757" width="0.0129%" height="15" fill="rgb(252,202,21)" fg:x="125287" fg:w="67"/><text x="24.3260%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (65 samples, 0.01%)</title><rect x="24.0764%" y="741" width="0.0125%" height="15" fill="rgb(233,98,36)" fg:x="125289" fg:w="65"/><text x="24.3264%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (64 samples, 0.01%)</title><rect x="24.0766%" y="725" width="0.0123%" height="15" fill="rgb(216,153,54)" fg:x="125290" fg:w="64"/><text x="24.3266%" y="735.50"></text></g><g><title>InstanceKlass::initialize_impl (74 samples, 0.01%)</title><rect x="24.1010%" y="741" width="0.0142%" height="15" fill="rgb(250,99,7)" fg:x="125417" fg:w="74"/><text x="24.3510%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (70 samples, 0.01%)</title><rect x="24.1018%" y="725" width="0.0135%" height="15" fill="rgb(207,56,50)" fg:x="125421" fg:w="70"/><text x="24.3518%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (90 samples, 0.02%)</title><rect x="24.1006%" y="757" width="0.0173%" height="15" fill="rgb(244,61,34)" fg:x="125415" fg:w="90"/><text x="24.3506%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (230 samples, 0.04%)</title><rect x="24.0749%" y="773" width="0.0442%" height="15" fill="rgb(241,50,38)" fg:x="125281" fg:w="230"/><text x="24.3249%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (274 samples, 0.05%)</title><rect x="24.0687%" y="789" width="0.0527%" height="15" fill="rgb(212,166,30)" fg:x="125249" fg:w="274"/><text x="24.3187%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (420 samples, 0.08%)</title><rect x="24.0501%" y="805" width="0.0807%" height="15" fill="rgb(249,127,32)" fg:x="125152" fg:w="420"/><text x="24.3001%" y="815.50"></text></g><g><title>SymbolTable::add (54 samples, 0.01%)</title><rect x="24.1944%" y="661" width="0.0104%" height="15" fill="rgb(209,103,0)" fg:x="125903" fg:w="54"/><text x="24.4444%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (462 samples, 0.09%)</title><rect x="24.1890%" y="677" width="0.0888%" height="15" fill="rgb(238,209,51)" fg:x="125875" fg:w="462"/><text x="24.4390%" y="687.50"></text></g><g><title>SymbolTable::lookup_only (380 samples, 0.07%)</title><rect x="24.2048%" y="661" width="0.0730%" height="15" fill="rgb(237,56,23)" fg:x="125957" fg:w="380"/><text x="24.4548%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (481 samples, 0.09%)</title><rect x="24.1863%" y="693" width="0.0924%" height="15" fill="rgb(215,153,46)" fg:x="125861" fg:w="481"/><text x="24.4363%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (121 samples, 0.02%)</title><rect x="24.2824%" y="677" width="0.0233%" height="15" fill="rgb(224,49,31)" fg:x="126361" fg:w="121"/><text x="24.5324%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (125 samples, 0.02%)</title><rect x="24.2820%" y="693" width="0.0240%" height="15" fill="rgb(250,18,42)" fg:x="126359" fg:w="125"/><text x="24.5320%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (651 samples, 0.13%)</title><rect x="24.1844%" y="709" width="0.1251%" height="15" fill="rgb(215,176,39)" fg:x="125851" fg:w="651"/><text x="24.4344%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (653 samples, 0.13%)</title><rect x="24.1842%" y="725" width="0.1255%" height="15" fill="rgb(223,77,29)" fg:x="125850" fg:w="653"/><text x="24.4342%" y="735.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (60 samples, 0.01%)</title><rect x="24.3145%" y="677" width="0.0115%" height="15" fill="rgb(234,94,52)" fg:x="126528" fg:w="60"/><text x="24.5645%" y="687.50"></text></g><g><title>DefaultMethods::generate_default_methods (96 samples, 0.02%)</title><rect x="24.3103%" y="693" width="0.0184%" height="15" fill="rgb(220,154,50)" fg:x="126506" fg:w="96"/><text x="24.5603%" y="703.50"></text></g><g><title>ClassFileParser::fill_instance_klass (118 samples, 0.02%)</title><rect x="24.3097%" y="709" width="0.0227%" height="15" fill="rgb(212,11,10)" fg:x="126503" fg:w="118"/><text x="24.5597%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (125 samples, 0.02%)</title><rect x="24.3097%" y="725" width="0.0240%" height="15" fill="rgb(205,166,19)" fg:x="126503" fg:w="125"/><text x="24.5597%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (817 samples, 0.16%)</title><rect x="24.1842%" y="741" width="0.1570%" height="15" fill="rgb(244,198,16)" fg:x="125850" fg:w="817"/><text x="24.4342%" y="751.50"></text></g><g><title>SystemDictionary::resolve_from_stream (854 samples, 0.16%)</title><rect x="24.1840%" y="757" width="0.1641%" height="15" fill="rgb(219,69,12)" fg:x="125849" fg:w="854"/><text x="24.4340%" y="767.50"></text></g><g><title>JVM_DefineClassWithSource (861 samples, 0.17%)</title><rect x="24.1829%" y="789" width="0.1655%" height="15" fill="rgb(245,30,7)" fg:x="125843" fg:w="861"/><text x="24.4329%" y="799.50"></text></g><g><title>jvm_define_class_common (861 samples, 0.17%)</title><rect x="24.1829%" y="773" width="0.1655%" height="15" fill="rgb(218,221,48)" fg:x="125843" fg:w="861"/><text x="24.4329%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (886 samples, 0.17%)</title><rect x="24.1827%" y="805" width="0.1703%" height="15" fill="rgb(216,66,15)" fg:x="125842" fg:w="886"/><text x="24.4327%" y="815.50"></text></g><g><title>JVM_FindClassFromBootLoader (53 samples, 0.01%)</title><rect x="24.3529%" y="789" width="0.0102%" height="15" fill="rgb(226,122,50)" fg:x="126728" fg:w="53"/><text x="24.6029%" y="799.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (62 samples, 0.01%)</title><rect x="24.3529%" y="805" width="0.0119%" height="15" fill="rgb(239,156,16)" fg:x="126728" fg:w="62"/><text x="24.6029%" y="815.50"></text></g><g><title>[perf-261576.map] (3,993 samples, 0.77%)</title><rect x="23.6336%" y="821" width="0.7673%" height="15" fill="rgb(224,27,38)" fg:x="122985" fg:w="3993"/><text x="23.8836%" y="831.50"></text></g><g><title>[unknown] (145 samples, 0.03%)</title><rect x="24.4010%" y="821" width="0.0279%" height="15" fill="rgb(224,39,27)" fg:x="126978" fg:w="145"/><text x="24.6510%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (280 samples, 0.05%)</title><rect x="24.4327%" y="757" width="0.0538%" height="15" fill="rgb(215,92,29)" fg:x="127143" fg:w="280"/><text x="24.6827%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (277 samples, 0.05%)</title><rect x="24.4333%" y="741" width="0.0532%" height="15" fill="rgb(207,159,16)" fg:x="127146" fg:w="277"/><text x="24.6833%" y="751.50"></text></g><g><title>native_write_msr (276 samples, 0.05%)</title><rect x="24.4334%" y="725" width="0.0530%" height="15" fill="rgb(238,163,47)" fg:x="127147" fg:w="276"/><text x="24.6834%" y="735.50"></text></g><g><title>schedule_tail (284 samples, 0.05%)</title><rect x="24.4323%" y="789" width="0.0546%" height="15" fill="rgb(219,91,49)" fg:x="127141" fg:w="284"/><text x="24.6823%" y="799.50"></text></g><g><title>finish_task_switch (284 samples, 0.05%)</title><rect x="24.4323%" y="773" width="0.0546%" height="15" fill="rgb(227,167,31)" fg:x="127141" fg:w="284"/><text x="24.6823%" y="783.50"></text></g><g><title>ret_from_fork (291 samples, 0.06%)</title><rect x="24.4313%" y="805" width="0.0559%" height="15" fill="rgb(234,80,54)" fg:x="127136" fg:w="291"/><text x="24.6813%" y="815.50"></text></g><g><title>JavaMain (54 samples, 0.01%)</title><rect x="24.4876%" y="789" width="0.0104%" height="15" fill="rgb(212,114,2)" fg:x="127429" fg:w="54"/><text x="24.7376%" y="799.50"></text></g><g><title>__GI___clone (443 samples, 0.09%)</title><rect x="24.4292%" y="821" width="0.0851%" height="15" fill="rgb(234,50,24)" fg:x="127125" fg:w="443"/><text x="24.6792%" y="831.50"></text></g><g><title>start_thread (141 samples, 0.03%)</title><rect x="24.4873%" y="805" width="0.0271%" height="15" fill="rgb(221,68,8)" fg:x="127427" fg:w="141"/><text x="24.7373%" y="815.50"></text></g><g><title>thread_native_entry (78 samples, 0.01%)</title><rect x="24.4994%" y="789" width="0.0150%" height="15" fill="rgb(254,180,31)" fg:x="127490" fg:w="78"/><text x="24.7494%" y="799.50"></text></g><g><title>java (4,828 samples, 0.93%)</title><rect x="23.5916%" y="837" width="0.9278%" height="15" fill="rgb(247,130,50)" fg:x="122766" fg:w="4828"/><text x="23.8416%" y="847.50"></text></g><g><title>[bash] (75 samples, 0.01%)</title><rect x="24.5284%" y="805" width="0.0144%" height="15" fill="rgb(211,109,4)" fg:x="127641" fg:w="75"/><text x="24.7784%" y="815.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="24.5318%" y="789" width="0.0110%" height="15" fill="rgb(238,50,21)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="799.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="24.5318%" y="773" width="0.0110%" height="15" fill="rgb(225,57,45)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="783.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="24.5318%" y="757" width="0.0110%" height="15" fill="rgb(209,196,50)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="767.50"></text></g><g><title>execute_command (57 samples, 0.01%)</title><rect x="24.5318%" y="741" width="0.0110%" height="15" fill="rgb(242,140,13)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="751.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="24.5318%" y="725" width="0.0110%" height="15" fill="rgb(217,111,7)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="735.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="24.5318%" y="709" width="0.0110%" height="15" fill="rgb(253,193,51)" fg:x="127659" fg:w="57"/><text x="24.7818%" y="719.50"></text></g><g><title>execute_command (54 samples, 0.01%)</title><rect x="24.5461%" y="773" width="0.0104%" height="15" fill="rgb(252,70,29)" fg:x="127733" fg:w="54"/><text x="24.7961%" y="783.50"></text></g><g><title>execute_command_internal (54 samples, 0.01%)</title><rect x="24.5461%" y="757" width="0.0104%" height="15" fill="rgb(232,127,12)" fg:x="127733" fg:w="54"/><text x="24.7961%" y="767.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="24.5461%" y="789" width="0.0123%" height="15" fill="rgb(211,180,21)" fg:x="127733" fg:w="64"/><text x="24.7961%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (74 samples, 0.01%)</title><rect x="24.5620%" y="69" width="0.0142%" height="15" fill="rgb(229,72,13)" fg:x="127816" fg:w="74"/><text x="24.8120%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (73 samples, 0.01%)</title><rect x="24.5622%" y="53" width="0.0140%" height="15" fill="rgb(240,211,49)" fg:x="127817" fg:w="73"/><text x="24.8122%" y="63.50"></text></g><g><title>native_write_msr (73 samples, 0.01%)</title><rect x="24.5622%" y="37" width="0.0140%" height="15" fill="rgb(219,149,40)" fg:x="127817" fg:w="73"/><text x="24.8122%" y="47.50"></text></g><g><title>ret_from_fork (78 samples, 0.01%)</title><rect x="24.5614%" y="117" width="0.0150%" height="15" fill="rgb(210,127,46)" fg:x="127813" fg:w="78"/><text x="24.8114%" y="127.50"></text></g><g><title>schedule_tail (78 samples, 0.01%)</title><rect x="24.5614%" y="101" width="0.0150%" height="15" fill="rgb(220,106,7)" fg:x="127813" fg:w="78"/><text x="24.8114%" y="111.50"></text></g><g><title>finish_task_switch (75 samples, 0.01%)</title><rect x="24.5620%" y="85" width="0.0144%" height="15" fill="rgb(249,31,22)" fg:x="127816" fg:w="75"/><text x="24.8120%" y="95.50"></text></g><g><title>arch_fork (86 samples, 0.02%)</title><rect x="24.5601%" y="133" width="0.0165%" height="15" fill="rgb(253,1,49)" fg:x="127806" fg:w="86"/><text x="24.8101%" y="143.50"></text></g><g><title>make_child (92 samples, 0.02%)</title><rect x="24.5599%" y="165" width="0.0177%" height="15" fill="rgb(227,144,33)" fg:x="127805" fg:w="92"/><text x="24.8099%" y="175.50"></text></g><g><title>__libc_fork (92 samples, 0.02%)</title><rect x="24.5599%" y="149" width="0.0177%" height="15" fill="rgb(249,163,44)" fg:x="127805" fg:w="92"/><text x="24.8099%" y="159.50"></text></g><g><title>parse_and_execute (100 samples, 0.02%)</title><rect x="24.5589%" y="245" width="0.0192%" height="15" fill="rgb(234,15,39)" fg:x="127800" fg:w="100"/><text x="24.8089%" y="255.50"></text></g><g><title>execute_command_internal (100 samples, 0.02%)</title><rect x="24.5589%" y="229" width="0.0192%" height="15" fill="rgb(207,66,16)" fg:x="127800" fg:w="100"/><text x="24.8089%" y="239.50"></text></g><g><title>[bash] (100 samples, 0.02%)</title><rect x="24.5589%" y="213" width="0.0192%" height="15" fill="rgb(233,112,24)" fg:x="127800" fg:w="100"/><text x="24.8089%" y="223.50"></text></g><g><title>[bash] (100 samples, 0.02%)</title><rect x="24.5589%" y="197" width="0.0192%" height="15" fill="rgb(230,90,22)" fg:x="127800" fg:w="100"/><text x="24.8089%" y="207.50"></text></g><g><title>execute_command_internal (100 samples, 0.02%)</title><rect x="24.5589%" y="181" width="0.0192%" height="15" fill="rgb(229,61,13)" fg:x="127800" fg:w="100"/><text x="24.8089%" y="191.50"></text></g><g><title>execute_command_internal (168 samples, 0.03%)</title><rect x="24.5461%" y="805" width="0.0323%" height="15" fill="rgb(225,57,24)" fg:x="127733" fg:w="168"/><text x="24.7961%" y="815.50"></text></g><g><title>execute_command_internal (104 samples, 0.02%)</title><rect x="24.5584%" y="789" width="0.0200%" height="15" fill="rgb(208,169,48)" fg:x="127797" fg:w="104"/><text x="24.8084%" y="799.50"></text></g><g><title>[bash] (104 samples, 0.02%)</title><rect x="24.5584%" y="773" width="0.0200%" height="15" fill="rgb(244,218,51)" fg:x="127797" fg:w="104"/><text x="24.8084%" y="783.50"></text></g><g><title>execute_command (104 samples, 0.02%)</title><rect x="24.5584%" y="757" width="0.0200%" height="15" fill="rgb(214,148,10)" fg:x="127797" fg:w="104"/><text x="24.8084%" y="767.50"></text></g><g><title>execute_command_internal (104 samples, 0.02%)</title><rect x="24.5584%" y="741" width="0.0200%" height="15" fill="rgb(225,174,27)" fg:x="127797" fg:w="104"/><text x="24.8084%" y="751.50"></text></g><g><title>[bash] (104 samples, 0.02%)</title><rect x="24.5584%" y="725" width="0.0200%" height="15" fill="rgb(230,96,26)" fg:x="127797" fg:w="104"/><text x="24.8084%" y="735.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="709" width="0.0194%" height="15" fill="rgb(232,10,30)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="719.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="693" width="0.0194%" height="15" fill="rgb(222,8,50)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="703.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="677" width="0.0194%" height="15" fill="rgb(213,81,27)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="687.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="661" width="0.0194%" height="15" fill="rgb(245,50,10)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="671.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="645" width="0.0194%" height="15" fill="rgb(216,100,18)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="655.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="629" width="0.0194%" height="15" fill="rgb(236,147,54)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="639.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="613" width="0.0194%" height="15" fill="rgb(205,143,26)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="623.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="597" width="0.0194%" height="15" fill="rgb(236,26,9)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="607.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="581" width="0.0194%" height="15" fill="rgb(221,165,53)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="591.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="565" width="0.0194%" height="15" fill="rgb(214,110,17)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="575.50"></text></g><g><title>execute_command (101 samples, 0.02%)</title><rect x="24.5589%" y="549" width="0.0194%" height="15" fill="rgb(237,197,12)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="559.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="533" width="0.0194%" height="15" fill="rgb(205,84,17)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="543.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="517" width="0.0194%" height="15" fill="rgb(237,18,45)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="527.50"></text></g><g><title>execute_command (101 samples, 0.02%)</title><rect x="24.5589%" y="501" width="0.0194%" height="15" fill="rgb(221,87,14)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="511.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="485" width="0.0194%" height="15" fill="rgb(238,186,15)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="495.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="469" width="0.0194%" height="15" fill="rgb(208,115,11)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="479.50"></text></g><g><title>execute_command (101 samples, 0.02%)</title><rect x="24.5589%" y="453" width="0.0194%" height="15" fill="rgb(254,175,0)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="463.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="437" width="0.0194%" height="15" fill="rgb(227,24,42)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="447.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="421" width="0.0194%" height="15" fill="rgb(223,211,37)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="431.50"></text></g><g><title>execute_command (101 samples, 0.02%)</title><rect x="24.5589%" y="405" width="0.0194%" height="15" fill="rgb(235,49,27)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="415.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="389" width="0.0194%" height="15" fill="rgb(254,97,51)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="399.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="373" width="0.0194%" height="15" fill="rgb(249,51,40)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="383.50"></text></g><g><title>execute_command_internal (101 samples, 0.02%)</title><rect x="24.5589%" y="357" width="0.0194%" height="15" fill="rgb(210,128,45)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="367.50"></text></g><g><title>expand_words (101 samples, 0.02%)</title><rect x="24.5589%" y="341" width="0.0194%" height="15" fill="rgb(224,137,50)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="351.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="325" width="0.0194%" height="15" fill="rgb(242,15,9)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="335.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="309" width="0.0194%" height="15" fill="rgb(233,187,41)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="319.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="293" width="0.0194%" height="15" fill="rgb(227,2,29)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="303.50"></text></g><g><title>[bash] (101 samples, 0.02%)</title><rect x="24.5589%" y="277" width="0.0194%" height="15" fill="rgb(222,70,3)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="287.50"></text></g><g><title>command_substitute (101 samples, 0.02%)</title><rect x="24.5589%" y="261" width="0.0194%" height="15" fill="rgb(213,11,42)" fg:x="127800" fg:w="101"/><text x="24.8089%" y="271.50"></text></g><g><title>[unknown] (296 samples, 0.06%)</title><rect x="24.5284%" y="821" width="0.0569%" height="15" fill="rgb(225,150,9)" fg:x="127641" fg:w="296"/><text x="24.7784%" y="831.50"></text></g><g><title>arch_fork (54 samples, 0.01%)</title><rect x="24.5939%" y="645" width="0.0104%" height="15" fill="rgb(230,162,45)" fg:x="127982" fg:w="54"/><text x="24.8439%" y="655.50"></text></g><g><title>__libc_fork (57 samples, 0.01%)</title><rect x="24.5939%" y="661" width="0.0110%" height="15" fill="rgb(222,14,52)" fg:x="127982" fg:w="57"/><text x="24.8439%" y="671.50"></text></g><g><title>make_child (59 samples, 0.01%)</title><rect x="24.5939%" y="677" width="0.0113%" height="15" fill="rgb(254,198,14)" fg:x="127982" fg:w="59"/><text x="24.8439%" y="687.50"></text></g><g><title>execute_command (87 samples, 0.02%)</title><rect x="24.5903%" y="709" width="0.0167%" height="15" fill="rgb(220,217,30)" fg:x="127963" fg:w="87"/><text x="24.8403%" y="719.50"></text></g><g><title>execute_command_internal (87 samples, 0.02%)</title><rect x="24.5903%" y="693" width="0.0167%" height="15" fill="rgb(215,146,41)" fg:x="127963" fg:w="87"/><text x="24.8403%" y="703.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="24.5897%" y="725" width="0.0213%" height="15" fill="rgb(217,27,36)" fg:x="127960" fg:w="111"/><text x="24.8397%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.01%)</title><rect x="24.6360%" y="549" width="0.0123%" height="15" fill="rgb(219,218,39)" fg:x="128201" fg:w="64"/><text x="24.8860%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.01%)</title><rect x="24.6360%" y="533" width="0.0123%" height="15" fill="rgb(219,4,42)" fg:x="128201" fg:w="64"/><text x="24.8860%" y="543.50"></text></g><g><title>native_write_msr (63 samples, 0.01%)</title><rect x="24.6362%" y="517" width="0.0121%" height="15" fill="rgb(249,119,36)" fg:x="128202" fg:w="63"/><text x="24.8862%" y="527.50"></text></g><g><title>arch_fork (81 samples, 0.02%)</title><rect x="24.6331%" y="613" width="0.0156%" height="15" fill="rgb(209,23,33)" fg:x="128186" fg:w="81"/><text x="24.8831%" y="623.50"></text></g><g><title>ret_from_fork (74 samples, 0.01%)</title><rect x="24.6345%" y="597" width="0.0142%" height="15" fill="rgb(211,10,0)" fg:x="128193" fg:w="74"/><text x="24.8845%" y="607.50"></text></g><g><title>schedule_tail (74 samples, 0.01%)</title><rect x="24.6345%" y="581" width="0.0142%" height="15" fill="rgb(208,99,37)" fg:x="128193" fg:w="74"/><text x="24.8845%" y="591.50"></text></g><g><title>finish_task_switch (66 samples, 0.01%)</title><rect x="24.6360%" y="565" width="0.0127%" height="15" fill="rgb(213,132,31)" fg:x="128201" fg:w="66"/><text x="24.8860%" y="575.50"></text></g><g><title>__libc_fork (82 samples, 0.02%)</title><rect x="24.6331%" y="629" width="0.0158%" height="15" fill="rgb(243,129,40)" fg:x="128186" fg:w="82"/><text x="24.8831%" y="639.50"></text></g><g><title>make_child (85 samples, 0.02%)</title><rect x="24.6331%" y="645" width="0.0163%" height="15" fill="rgb(210,66,33)" fg:x="128186" fg:w="85"/><text x="24.8831%" y="655.50"></text></g><g><title>parse_and_execute (69 samples, 0.01%)</title><rect x="24.6494%" y="645" width="0.0133%" height="15" fill="rgb(209,189,4)" fg:x="128271" fg:w="69"/><text x="24.8994%" y="655.50"></text></g><g><title>execute_command_internal (68 samples, 0.01%)</title><rect x="24.6496%" y="629" width="0.0131%" height="15" fill="rgb(214,107,37)" fg:x="128272" fg:w="68"/><text x="24.8996%" y="639.50"></text></g><g><title>expand_word_leave_quoted (188 samples, 0.04%)</title><rect x="24.6325%" y="693" width="0.0361%" height="15" fill="rgb(245,88,54)" fg:x="128183" fg:w="188"/><text x="24.8825%" y="703.50"></text></g><g><title>[bash] (188 samples, 0.04%)</title><rect x="24.6325%" y="677" width="0.0361%" height="15" fill="rgb(205,146,20)" fg:x="128183" fg:w="188"/><text x="24.8825%" y="687.50"></text></g><g><title>command_substitute (188 samples, 0.04%)</title><rect x="24.6325%" y="661" width="0.0361%" height="15" fill="rgb(220,161,25)" fg:x="128183" fg:w="188"/><text x="24.8825%" y="671.50"></text></g><g><title>execute_command (208 samples, 0.04%)</title><rect x="24.6296%" y="725" width="0.0400%" height="15" fill="rgb(215,152,15)" fg:x="128168" fg:w="208"/><text x="24.8796%" y="735.50"></text></g><g><title>execute_command_internal (207 samples, 0.04%)</title><rect x="24.6298%" y="709" width="0.0398%" height="15" fill="rgb(233,192,44)" fg:x="128169" fg:w="207"/><text x="24.8798%" y="719.50"></text></g><g><title>arch_fork (56 samples, 0.01%)</title><rect x="24.6723%" y="597" width="0.0108%" height="15" fill="rgb(240,170,46)" fg:x="128390" fg:w="56"/><text x="24.9223%" y="607.50"></text></g><g><title>__libc_fork (59 samples, 0.01%)</title><rect x="24.6721%" y="613" width="0.0113%" height="15" fill="rgb(207,104,33)" fg:x="128389" fg:w="59"/><text x="24.9221%" y="623.50"></text></g><g><title>make_child (60 samples, 0.01%)</title><rect x="24.6721%" y="629" width="0.0115%" height="15" fill="rgb(219,21,39)" fg:x="128389" fg:w="60"/><text x="24.9221%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (111 samples, 0.02%)</title><rect x="24.6896%" y="453" width="0.0213%" height="15" fill="rgb(214,133,29)" fg:x="128480" fg:w="111"/><text x="24.9396%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (110 samples, 0.02%)</title><rect x="24.6898%" y="437" width="0.0211%" height="15" fill="rgb(226,93,6)" fg:x="128481" fg:w="110"/><text x="24.9398%" y="447.50"></text></g><g><title>native_write_msr (108 samples, 0.02%)</title><rect x="24.6902%" y="421" width="0.0208%" height="15" fill="rgb(252,222,34)" fg:x="128483" fg:w="108"/><text x="24.9402%" y="431.50"></text></g><g><title>schedule_tail (120 samples, 0.02%)</title><rect x="24.6883%" y="485" width="0.0231%" height="15" fill="rgb(252,92,48)" fg:x="128473" fg:w="120"/><text x="24.9383%" y="495.50"></text></g><g><title>finish_task_switch (116 samples, 0.02%)</title><rect x="24.6890%" y="469" width="0.0223%" height="15" fill="rgb(245,223,24)" fg:x="128477" fg:w="116"/><text x="24.9390%" y="479.50"></text></g><g><title>arch_fork (127 samples, 0.02%)</title><rect x="24.6871%" y="517" width="0.0244%" height="15" fill="rgb(205,176,3)" fg:x="128467" fg:w="127"/><text x="24.9371%" y="527.50"></text></g><g><title>ret_from_fork (121 samples, 0.02%)</title><rect x="24.6883%" y="501" width="0.0233%" height="15" fill="rgb(235,151,15)" fg:x="128473" fg:w="121"/><text x="24.9383%" y="511.50"></text></g><g><title>__libc_fork (135 samples, 0.03%)</title><rect x="24.6867%" y="533" width="0.0259%" height="15" fill="rgb(237,209,11)" fg:x="128465" fg:w="135"/><text x="24.9367%" y="543.50"></text></g><g><title>make_child (138 samples, 0.03%)</title><rect x="24.6867%" y="549" width="0.0265%" height="15" fill="rgb(243,227,24)" fg:x="128465" fg:w="138"/><text x="24.9367%" y="559.50"></text></g><g><title>parse_and_execute (176 samples, 0.03%)</title><rect x="24.6836%" y="629" width="0.0338%" height="15" fill="rgb(239,193,16)" fg:x="128449" fg:w="176"/><text x="24.9336%" y="639.50"></text></g><g><title>execute_command_internal (176 samples, 0.03%)</title><rect x="24.6836%" y="613" width="0.0338%" height="15" fill="rgb(231,27,9)" fg:x="128449" fg:w="176"/><text x="24.9336%" y="623.50"></text></g><g><title>[bash] (176 samples, 0.03%)</title><rect x="24.6836%" y="597" width="0.0338%" height="15" fill="rgb(219,169,10)" fg:x="128449" fg:w="176"/><text x="24.9336%" y="607.50"></text></g><g><title>[bash] (176 samples, 0.03%)</title><rect x="24.6836%" y="581" width="0.0338%" height="15" fill="rgb(244,229,43)" fg:x="128449" fg:w="176"/><text x="24.9336%" y="591.50"></text></g><g><title>execute_command_internal (176 samples, 0.03%)</title><rect x="24.6836%" y="565" width="0.0338%" height="15" fill="rgb(254,38,20)" fg:x="128449" fg:w="176"/><text x="24.9336%" y="575.50"></text></g><g><title>[bash] (255 samples, 0.05%)</title><rect x="24.6702%" y="661" width="0.0490%" height="15" fill="rgb(250,47,30)" fg:x="128379" fg:w="255"/><text x="24.9202%" y="671.50"></text></g><g><title>command_substitute (251 samples, 0.05%)</title><rect x="24.6710%" y="645" width="0.0482%" height="15" fill="rgb(224,124,36)" fg:x="128383" fg:w="251"/><text x="24.9210%" y="655.50"></text></g><g><title>[bash] (260 samples, 0.05%)</title><rect x="24.6698%" y="693" width="0.0500%" height="15" fill="rgb(246,68,51)" fg:x="128377" fg:w="260"/><text x="24.9198%" y="703.50"></text></g><g><title>[bash] (258 samples, 0.05%)</title><rect x="24.6702%" y="677" width="0.0496%" height="15" fill="rgb(253,43,49)" fg:x="128379" fg:w="258"/><text x="24.9202%" y="687.50"></text></g><g><title>expand_words (263 samples, 0.05%)</title><rect x="24.6696%" y="725" width="0.0505%" height="15" fill="rgb(219,54,36)" fg:x="128376" fg:w="263"/><text x="24.9196%" y="735.50"></text></g><g><title>[bash] (263 samples, 0.05%)</title><rect x="24.6696%" y="709" width="0.0505%" height="15" fill="rgb(227,133,34)" fg:x="128376" fg:w="263"/><text x="24.9196%" y="719.50"></text></g><g><title>execute_command (681 samples, 0.13%)</title><rect x="24.5897%" y="757" width="0.1309%" height="15" fill="rgb(247,227,15)" fg:x="127960" fg:w="681"/><text x="24.8397%" y="767.50"></text></g><g><title>execute_command_internal (681 samples, 0.13%)</title><rect x="24.5897%" y="741" width="0.1309%" height="15" fill="rgb(229,96,14)" fg:x="127960" fg:w="681"/><text x="24.8397%" y="751.50"></text></g><g><title>[bash] (162 samples, 0.03%)</title><rect x="24.7409%" y="693" width="0.0311%" height="15" fill="rgb(220,79,17)" fg:x="128747" fg:w="162"/><text x="24.9909%" y="703.50"></text></g><g><title>[bash] (280 samples, 0.05%)</title><rect x="24.7288%" y="709" width="0.0538%" height="15" fill="rgb(205,131,53)" fg:x="128684" fg:w="280"/><text x="24.9788%" y="719.50"></text></g><g><title>parse_command (343 samples, 0.07%)</title><rect x="24.7207%" y="741" width="0.0659%" height="15" fill="rgb(209,50,29)" fg:x="128642" fg:w="343"/><text x="24.9707%" y="751.50"></text></g><g><title>yyparse (343 samples, 0.07%)</title><rect x="24.7207%" y="725" width="0.0659%" height="15" fill="rgb(245,86,46)" fg:x="128642" fg:w="343"/><text x="24.9707%" y="735.50"></text></g><g><title>reader_loop (1,042 samples, 0.20%)</title><rect x="24.5866%" y="773" width="0.2002%" height="15" fill="rgb(235,66,46)" fg:x="127944" fg:w="1042"/><text x="24.8366%" y="783.50"></text></g><g><title>read_command (345 samples, 0.07%)</title><rect x="24.7205%" y="757" width="0.0663%" height="15" fill="rgb(232,148,31)" fg:x="128641" fg:w="345"/><text x="24.9705%" y="767.50"></text></g><g><title>__libc_start_main (1,053 samples, 0.20%)</title><rect x="24.5854%" y="805" width="0.2024%" height="15" fill="rgb(217,149,8)" fg:x="127938" fg:w="1053"/><text x="24.8354%" y="815.50"></text></g><g><title>main (1,053 samples, 0.20%)</title><rect x="24.5854%" y="789" width="0.2024%" height="15" fill="rgb(209,183,11)" fg:x="127938" fg:w="1053"/><text x="24.8354%" y="799.50"></text></g><g><title>_start (1,067 samples, 0.21%)</title><rect x="24.5854%" y="821" width="0.2050%" height="15" fill="rgb(208,55,20)" fg:x="127938" fg:w="1067"/><text x="24.8354%" y="831.50"></text></g><g><title>libtool (1,467 samples, 0.28%)</title><rect x="24.5193%" y="837" width="0.2819%" height="15" fill="rgb(218,39,14)" fg:x="127594" fg:w="1467"/><text x="24.7693%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (88 samples, 0.02%)</title><rect x="24.8355%" y="661" width="0.0169%" height="15" fill="rgb(216,169,33)" fg:x="129239" fg:w="88"/><text x="25.0855%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (88 samples, 0.02%)</title><rect x="24.8355%" y="645" width="0.0169%" height="15" fill="rgb(233,80,24)" fg:x="129239" fg:w="88"/><text x="25.0855%" y="655.50"></text></g><g><title>native_write_msr (88 samples, 0.02%)</title><rect x="24.8355%" y="629" width="0.0169%" height="15" fill="rgb(213,179,31)" fg:x="129239" fg:w="88"/><text x="25.0855%" y="639.50"></text></g><g><title>finish_task_switch (92 samples, 0.02%)</title><rect x="24.8353%" y="677" width="0.0177%" height="15" fill="rgb(209,19,5)" fg:x="129238" fg:w="92"/><text x="25.0853%" y="687.50"></text></g><g><title>schedule (93 samples, 0.02%)</title><rect x="24.8353%" y="709" width="0.0179%" height="15" fill="rgb(219,18,35)" fg:x="129238" fg:w="93"/><text x="25.0853%" y="719.50"></text></g><g><title>__schedule (93 samples, 0.02%)</title><rect x="24.8353%" y="693" width="0.0179%" height="15" fill="rgb(209,169,16)" fg:x="129238" fg:w="93"/><text x="25.0853%" y="703.50"></text></g><g><title>__GI___wait4 (115 samples, 0.02%)</title><rect x="24.8343%" y="789" width="0.0221%" height="15" fill="rgb(245,90,51)" fg:x="129233" fg:w="115"/><text x="25.0843%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.02%)</title><rect x="24.8343%" y="773" width="0.0221%" height="15" fill="rgb(220,99,45)" fg:x="129233" fg:w="115"/><text x="25.0843%" y="783.50"></text></g><g><title>do_syscall_64 (115 samples, 0.02%)</title><rect x="24.8343%" y="757" width="0.0221%" height="15" fill="rgb(249,89,25)" fg:x="129233" fg:w="115"/><text x="25.0843%" y="767.50"></text></g><g><title>kernel_wait4 (115 samples, 0.02%)</title><rect x="24.8343%" y="741" width="0.0221%" height="15" fill="rgb(239,193,0)" fg:x="129233" fg:w="115"/><text x="25.0843%" y="751.50"></text></g><g><title>do_wait (114 samples, 0.02%)</title><rect x="24.8345%" y="725" width="0.0219%" height="15" fill="rgb(231,126,1)" fg:x="129234" fg:w="114"/><text x="25.0845%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (426 samples, 0.08%)</title><rect x="24.8823%" y="709" width="0.0819%" height="15" fill="rgb(243,166,3)" fg:x="129483" fg:w="426"/><text x="25.1323%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (425 samples, 0.08%)</title><rect x="24.8825%" y="693" width="0.0817%" height="15" fill="rgb(223,22,34)" fg:x="129484" fg:w="425"/><text x="25.1325%" y="703.50"></text></g><g><title>native_write_msr (425 samples, 0.08%)</title><rect x="24.8825%" y="677" width="0.0817%" height="15" fill="rgb(251,52,51)" fg:x="129484" fg:w="425"/><text x="25.1325%" y="687.50"></text></g><g><title>arch_fork (535 samples, 0.10%)</title><rect x="24.8649%" y="773" width="0.1028%" height="15" fill="rgb(221,165,28)" fg:x="129392" fg:w="535"/><text x="25.1149%" y="783.50"></text></g><g><title>ret_from_fork (485 samples, 0.09%)</title><rect x="24.8745%" y="757" width="0.0932%" height="15" fill="rgb(218,121,47)" fg:x="129442" fg:w="485"/><text x="25.1245%" y="767.50"></text></g><g><title>schedule_tail (484 samples, 0.09%)</title><rect x="24.8747%" y="741" width="0.0930%" height="15" fill="rgb(209,120,9)" fg:x="129443" fg:w="484"/><text x="25.1247%" y="751.50"></text></g><g><title>finish_task_switch (446 samples, 0.09%)</title><rect x="24.8820%" y="725" width="0.0857%" height="15" fill="rgb(236,68,12)" fg:x="129481" fg:w="446"/><text x="25.1320%" y="735.50"></text></g><g><title>__libc_fork (552 samples, 0.11%)</title><rect x="24.8635%" y="789" width="0.1061%" height="15" fill="rgb(225,194,26)" fg:x="129385" fg:w="552"/><text x="25.1135%" y="799.50"></text></g><g><title>Pid1Main (918 samples, 0.18%)</title><rect x="24.8134%" y="805" width="0.1764%" height="15" fill="rgb(231,84,39)" fg:x="129124" fg:w="918"/><text x="25.0634%" y="815.50"></text></g><g><title>asm_exc_page_fault (56 samples, 0.01%)</title><rect x="24.9898%" y="805" width="0.0108%" height="15" fill="rgb(210,11,45)" fg:x="130042" fg:w="56"/><text x="25.2398%" y="815.50"></text></g><g><title>exc_page_fault (56 samples, 0.01%)</title><rect x="24.9898%" y="789" width="0.0108%" height="15" fill="rgb(224,54,52)" fg:x="130042" fg:w="56"/><text x="25.2398%" y="799.50"></text></g><g><title>do_user_addr_fault (56 samples, 0.01%)</title><rect x="24.9898%" y="773" width="0.0108%" height="15" fill="rgb(238,102,14)" fg:x="130042" fg:w="56"/><text x="25.2398%" y="783.50"></text></g><g><title>handle_mm_fault (53 samples, 0.01%)</title><rect x="24.9903%" y="757" width="0.0102%" height="15" fill="rgb(243,160,52)" fg:x="130045" fg:w="53"/><text x="25.2403%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (453 samples, 0.09%)</title><rect x="25.0063%" y="757" width="0.0871%" height="15" fill="rgb(216,114,19)" fg:x="130128" fg:w="453"/><text x="25.2563%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (453 samples, 0.09%)</title><rect x="25.0063%" y="741" width="0.0871%" height="15" fill="rgb(244,166,37)" fg:x="130128" fg:w="453"/><text x="25.2563%" y="751.50"></text></g><g><title>native_write_msr (453 samples, 0.09%)</title><rect x="25.0063%" y="725" width="0.0871%" height="15" fill="rgb(246,29,44)" fg:x="130128" fg:w="453"/><text x="25.2563%" y="735.50"></text></g><g><title>schedule_tail (478 samples, 0.09%)</title><rect x="25.0055%" y="789" width="0.0919%" height="15" fill="rgb(215,56,53)" fg:x="130124" fg:w="478"/><text x="25.2555%" y="799.50"></text></g><g><title>finish_task_switch (478 samples, 0.09%)</title><rect x="25.0055%" y="773" width="0.0919%" height="15" fill="rgb(217,60,2)" fg:x="130124" fg:w="478"/><text x="25.2555%" y="783.50"></text></g><g><title>__GI___clone (1,484 samples, 0.29%)</title><rect x="24.8132%" y="821" width="0.2852%" height="15" fill="rgb(207,26,24)" fg:x="129123" fg:w="1484"/><text x="25.0632%" y="831.50"></text></g><g><title>ret_from_fork (509 samples, 0.10%)</title><rect x="25.0005%" y="805" width="0.0978%" height="15" fill="rgb(252,210,15)" fg:x="130098" fg:w="509"/><text x="25.2505%" y="815.50"></text></g><g><title>[libc-2.31.so] (66 samples, 0.01%)</title><rect x="25.1072%" y="773" width="0.0127%" height="15" fill="rgb(253,209,26)" fg:x="130653" fg:w="66"/><text x="25.3572%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (63 samples, 0.01%)</title><rect x="25.1208%" y="629" width="0.0121%" height="15" fill="rgb(238,170,14)" fg:x="130724" fg:w="63"/><text x="25.3708%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.01%)</title><rect x="25.1208%" y="613" width="0.0121%" height="15" fill="rgb(216,178,15)" fg:x="130724" fg:w="63"/><text x="25.3708%" y="623.50"></text></g><g><title>native_write_msr (63 samples, 0.01%)</title><rect x="25.1208%" y="597" width="0.0121%" height="15" fill="rgb(250,197,2)" fg:x="130724" fg:w="63"/><text x="25.3708%" y="607.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="25.1208%" y="645" width="0.0129%" height="15" fill="rgb(212,70,42)" fg:x="130724" fg:w="67"/><text x="25.3708%" y="655.50"></text></g><g><title>schedule (69 samples, 0.01%)</title><rect x="25.1206%" y="677" width="0.0133%" height="15" fill="rgb(227,213,9)" fg:x="130723" fg:w="69"/><text x="25.3706%" y="687.50"></text></g><g><title>__schedule (68 samples, 0.01%)</title><rect x="25.1208%" y="661" width="0.0131%" height="15" fill="rgb(245,99,25)" fg:x="130724" fg:w="68"/><text x="25.3708%" y="671.50"></text></g><g><title>do_wait (82 samples, 0.02%)</title><rect x="25.1202%" y="693" width="0.0158%" height="15" fill="rgb(250,82,29)" fg:x="130721" fg:w="82"/><text x="25.3702%" y="703.50"></text></g><g><title>__GI___wait4 (84 samples, 0.02%)</title><rect x="25.1201%" y="773" width="0.0161%" height="15" fill="rgb(241,226,54)" fg:x="130720" fg:w="84"/><text x="25.3701%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.02%)</title><rect x="25.1202%" y="757" width="0.0159%" height="15" fill="rgb(221,99,41)" fg:x="130721" fg:w="83"/><text x="25.3702%" y="767.50"></text></g><g><title>do_syscall_64 (83 samples, 0.02%)</title><rect x="25.1202%" y="741" width="0.0159%" height="15" fill="rgb(213,90,21)" fg:x="130721" fg:w="83"/><text x="25.3702%" y="751.50"></text></g><g><title>__do_sys_wait4 (83 samples, 0.02%)</title><rect x="25.1202%" y="725" width="0.0159%" height="15" fill="rgb(205,208,24)" fg:x="130721" fg:w="83"/><text x="25.3702%" y="735.50"></text></g><g><title>kernel_wait4 (83 samples, 0.02%)</title><rect x="25.1202%" y="709" width="0.0159%" height="15" fill="rgb(246,31,12)" fg:x="130721" fg:w="83"/><text x="25.3702%" y="719.50"></text></g><g><title>__libc_start_main (225 samples, 0.04%)</title><rect x="25.1016%" y="805" width="0.0432%" height="15" fill="rgb(213,154,6)" fg:x="130624" fg:w="225"/><text x="25.3516%" y="815.50"></text></g><g><title>main (201 samples, 0.04%)</title><rect x="25.1062%" y="789" width="0.0386%" height="15" fill="rgb(222,163,29)" fg:x="130648" fg:w="201"/><text x="25.3562%" y="799.50"></text></g><g><title>_dl_lookup_symbol_x (124 samples, 0.02%)</title><rect x="25.1623%" y="693" width="0.0238%" height="15" fill="rgb(227,201,8)" fg:x="130940" fg:w="124"/><text x="25.4123%" y="703.50"></text></g><g><title>do_lookup_x (79 samples, 0.02%)</title><rect x="25.1710%" y="677" width="0.0152%" height="15" fill="rgb(233,9,32)" fg:x="130985" fg:w="79"/><text x="25.4210%" y="687.50"></text></g><g><title>elf_machine_rela (156 samples, 0.03%)</title><rect x="25.1564%" y="709" width="0.0300%" height="15" fill="rgb(217,54,24)" fg:x="130909" fg:w="156"/><text x="25.4064%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (170 samples, 0.03%)</title><rect x="25.1548%" y="725" width="0.0327%" height="15" fill="rgb(235,192,0)" fg:x="130901" fg:w="170"/><text x="25.4048%" y="735.50"></text></g><g><title>_dl_relocate_object (174 samples, 0.03%)</title><rect x="25.1543%" y="741" width="0.0334%" height="15" fill="rgb(235,45,9)" fg:x="130898" fg:w="174"/><text x="25.4043%" y="751.50"></text></g><g><title>[ld-2.31.so] (228 samples, 0.04%)</title><rect x="25.1448%" y="757" width="0.0438%" height="15" fill="rgb(246,42,40)" fg:x="130849" fg:w="228"/><text x="25.3948%" y="767.50"></text></g><g><title>_start (455 samples, 0.09%)</title><rect x="25.1016%" y="821" width="0.0874%" height="15" fill="rgb(248,111,24)" fg:x="130624" fg:w="455"/><text x="25.3516%" y="831.50"></text></g><g><title>_dl_start (230 samples, 0.04%)</title><rect x="25.1448%" y="805" width="0.0442%" height="15" fill="rgb(249,65,22)" fg:x="130849" fg:w="230"/><text x="25.3948%" y="815.50"></text></g><g><title>_dl_start_final (230 samples, 0.04%)</title><rect x="25.1448%" y="789" width="0.0442%" height="15" fill="rgb(238,111,51)" fg:x="130849" fg:w="230"/><text x="25.3948%" y="799.50"></text></g><g><title>_dl_sysdep_start (230 samples, 0.04%)</title><rect x="25.1448%" y="773" width="0.0442%" height="15" fill="rgb(250,118,22)" fg:x="130849" fg:w="230"/><text x="25.3948%" y="783.50"></text></g><g><title>asm_exc_page_fault (94 samples, 0.02%)</title><rect x="25.1890%" y="821" width="0.0181%" height="15" fill="rgb(234,84,26)" fg:x="131079" fg:w="94"/><text x="25.4390%" y="831.50"></text></g><g><title>__x64_sys_exit (65 samples, 0.01%)</title><rect x="25.2156%" y="789" width="0.0125%" height="15" fill="rgb(243,172,12)" fg:x="131217" fg:w="65"/><text x="25.4656%" y="799.50"></text></g><g><title>do_exit (65 samples, 0.01%)</title><rect x="25.2156%" y="773" width="0.0125%" height="15" fill="rgb(236,150,49)" fg:x="131217" fg:w="65"/><text x="25.4656%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (143 samples, 0.03%)</title><rect x="25.2071%" y="821" width="0.0275%" height="15" fill="rgb(225,197,26)" fg:x="131173" fg:w="143"/><text x="25.4571%" y="831.50"></text></g><g><title>do_syscall_64 (142 samples, 0.03%)</title><rect x="25.2073%" y="805" width="0.0273%" height="15" fill="rgb(214,17,42)" fg:x="131174" fg:w="142"/><text x="25.4573%" y="815.50"></text></g><g><title>linux-sandbox (2,262 samples, 0.43%)</title><rect x="24.8013%" y="837" width="0.4347%" height="15" fill="rgb(224,165,40)" fg:x="129061" fg:w="2262"/><text x="25.0513%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (90 samples, 0.02%)</title><rect x="25.2457%" y="661" width="0.0173%" height="15" fill="rgb(246,100,4)" fg:x="131374" fg:w="90"/><text x="25.4957%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (89 samples, 0.02%)</title><rect x="25.2459%" y="645" width="0.0171%" height="15" fill="rgb(222,103,0)" fg:x="131375" fg:w="89"/><text x="25.4959%" y="655.50"></text></g><g><title>native_write_msr (89 samples, 0.02%)</title><rect x="25.2459%" y="629" width="0.0171%" height="15" fill="rgb(227,189,26)" fg:x="131375" fg:w="89"/><text x="25.4959%" y="639.50"></text></g><g><title>schedule_tail (107 samples, 0.02%)</title><rect x="25.2429%" y="693" width="0.0206%" height="15" fill="rgb(214,202,17)" fg:x="131359" fg:w="107"/><text x="25.4929%" y="703.50"></text></g><g><title>finish_task_switch (95 samples, 0.02%)</title><rect x="25.2452%" y="677" width="0.0183%" height="15" fill="rgb(229,111,3)" fg:x="131371" fg:w="95"/><text x="25.4952%" y="687.50"></text></g><g><title>arch_fork (115 samples, 0.02%)</title><rect x="25.2415%" y="725" width="0.0221%" height="15" fill="rgb(229,172,15)" fg:x="131352" fg:w="115"/><text x="25.4915%" y="735.50"></text></g><g><title>ret_from_fork (108 samples, 0.02%)</title><rect x="25.2429%" y="709" width="0.0208%" height="15" fill="rgb(230,224,35)" fg:x="131359" fg:w="108"/><text x="25.4929%" y="719.50"></text></g><g><title>__libc_fork (118 samples, 0.02%)</title><rect x="25.2411%" y="741" width="0.0227%" height="15" fill="rgb(251,141,6)" fg:x="131350" fg:w="118"/><text x="25.4911%" y="751.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (130 samples, 0.02%)</title><rect x="25.2390%" y="773" width="0.0250%" height="15" fill="rgb(225,208,6)" fg:x="131339" fg:w="130"/><text x="25.4890%" y="783.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (130 samples, 0.02%)</title><rect x="25.2390%" y="757" width="0.0250%" height="15" fill="rgb(246,181,16)" fg:x="131339" fg:w="130"/><text x="25.4890%" y="767.50"></text></g><g><title>__libc_start_main (160 samples, 0.03%)</title><rect x="25.2386%" y="805" width="0.0307%" height="15" fill="rgb(227,129,36)" fg:x="131337" fg:w="160"/><text x="25.4886%" y="815.50"></text></g><g><title>main (158 samples, 0.03%)</title><rect x="25.2390%" y="789" width="0.0304%" height="15" fill="rgb(248,117,24)" fg:x="131339" fg:w="158"/><text x="25.4890%" y="799.50"></text></g><g><title>_start (193 samples, 0.04%)</title><rect x="25.2386%" y="821" width="0.0371%" height="15" fill="rgb(214,185,35)" fg:x="131337" fg:w="193"/><text x="25.4886%" y="831.50"></text></g><g><title>process-wrapper (220 samples, 0.04%)</title><rect x="25.2371%" y="837" width="0.0423%" height="15" fill="rgb(236,150,34)" fg:x="131329" fg:w="220"/><text x="25.4871%" y="847.50"></text></g><g><title>do_syscall_64 (60 samples, 0.01%)</title><rect x="25.2899%" y="757" width="0.0115%" height="15" fill="rgb(243,228,27)" fg:x="131604" fg:w="60"/><text x="25.5399%" y="767.50"></text></g><g><title>kernel_wait4 (60 samples, 0.01%)</title><rect x="25.2899%" y="741" width="0.0115%" height="15" fill="rgb(245,77,44)" fg:x="131604" fg:w="60"/><text x="25.5399%" y="751.50"></text></g><g><title>do_wait (60 samples, 0.01%)</title><rect x="25.2899%" y="725" width="0.0115%" height="15" fill="rgb(235,214,42)" fg:x="131604" fg:w="60"/><text x="25.5399%" y="735.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (63 samples, 0.01%)</title><rect x="25.2895%" y="805" width="0.0121%" height="15" fill="rgb(221,74,3)" fg:x="131602" fg:w="63"/><text x="25.5395%" y="815.50"></text></g><g><title>__GI___wait4 (62 samples, 0.01%)</title><rect x="25.2897%" y="789" width="0.0119%" height="15" fill="rgb(206,121,29)" fg:x="131603" fg:w="62"/><text x="25.5397%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.01%)</title><rect x="25.2899%" y="773" width="0.0117%" height="15" fill="rgb(249,131,53)" fg:x="131604" fg:w="61"/><text x="25.5399%" y="783.50"></text></g><g><title>[perf-261576.map] (123 samples, 0.02%)</title><rect x="25.2801%" y="821" width="0.0236%" height="15" fill="rgb(236,170,29)" fg:x="131553" fg:w="123"/><text x="25.5301%" y="831.50"></text></g><g><title>process_reaper (129 samples, 0.02%)</title><rect x="25.2794%" y="837" width="0.0248%" height="15" fill="rgb(247,96,15)" fg:x="131549" fg:w="129"/><text x="25.5294%" y="847.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="25.3572%" y="709" width="0.0102%" height="15" fill="rgb(211,210,7)" fg:x="131954" fg:w="53"/><text x="25.6072%" y="719.50"></text></g><g><title>__pthread_cond_wait (60 samples, 0.01%)</title><rect x="25.3568%" y="773" width="0.0115%" height="15" fill="rgb(240,88,50)" fg:x="131952" fg:w="60"/><text x="25.6068%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (60 samples, 0.01%)</title><rect x="25.3568%" y="757" width="0.0115%" height="15" fill="rgb(209,229,26)" fg:x="131952" fg:w="60"/><text x="25.6068%" y="767.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.01%)</title><rect x="25.3572%" y="741" width="0.0111%" height="15" fill="rgb(210,68,23)" fg:x="131954" fg:w="58"/><text x="25.6072%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="25.3572%" y="725" width="0.0111%" height="15" fill="rgb(229,180,13)" fg:x="131954" fg:w="58"/><text x="25.6072%" y="735.50"></text></g><g><title>Parker::park (69 samples, 0.01%)</title><rect x="25.3558%" y="789" width="0.0133%" height="15" fill="rgb(236,53,44)" fg:x="131947" fg:w="69"/><text x="25.6058%" y="799.50"></text></g><g><title>[perf-261576.map] (329 samples, 0.06%)</title><rect x="25.3061%" y="821" width="0.0632%" height="15" fill="rgb(244,214,29)" fg:x="131688" fg:w="329"/><text x="25.5561%" y="831.50"></text></g><g><title>Unsafe_Park (72 samples, 0.01%)</title><rect x="25.3555%" y="805" width="0.0138%" height="15" fill="rgb(220,75,29)" fg:x="131945" fg:w="72"/><text x="25.6055%" y="815.50"></text></g><g><title>profile-writer- (346 samples, 0.07%)</title><rect x="25.3042%" y="837" width="0.0665%" height="15" fill="rgb(214,183,37)" fg:x="131678" fg:w="346"/><text x="25.5542%" y="847.50"></text></g><g><title>[python3.9] (59 samples, 0.01%)</title><rect x="25.3829%" y="805" width="0.0113%" height="15" fill="rgb(239,117,29)" fg:x="132088" fg:w="59"/><text x="25.6329%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (104 samples, 0.02%)</title><rect x="25.3958%" y="805" width="0.0200%" height="15" fill="rgb(237,171,35)" fg:x="132155" fg:w="104"/><text x="25.6458%" y="815.50"></text></g><g><title>[unknown] (267 samples, 0.05%)</title><rect x="25.3753%" y="821" width="0.0513%" height="15" fill="rgb(229,178,53)" fg:x="132048" fg:w="267"/><text x="25.6253%" y="831.50"></text></g><g><title>Py_RunMain (55 samples, 0.01%)</title><rect x="25.4268%" y="773" width="0.0106%" height="15" fill="rgb(210,102,19)" fg:x="132316" fg:w="55"/><text x="25.6768%" y="783.50"></text></g><g><title>Py_InitializeFromConfig (65 samples, 0.01%)</title><rect x="25.4373%" y="741" width="0.0125%" height="15" fill="rgb(235,127,22)" fg:x="132371" fg:w="65"/><text x="25.6873%" y="751.50"></text></g><g><title>[python3.9] (65 samples, 0.01%)</title><rect x="25.4373%" y="725" width="0.0125%" height="15" fill="rgb(244,31,31)" fg:x="132371" fg:w="65"/><text x="25.6873%" y="735.50"></text></g><g><title>[python3.9] (65 samples, 0.01%)</title><rect x="25.4373%" y="709" width="0.0125%" height="15" fill="rgb(231,43,21)" fg:x="132371" fg:w="65"/><text x="25.6873%" y="719.50"></text></g><g><title>__libc_start_main (122 samples, 0.02%)</title><rect x="25.4268%" y="805" width="0.0234%" height="15" fill="rgb(217,131,35)" fg:x="132316" fg:w="122"/><text x="25.6768%" y="815.50"></text></g><g><title>Py_BytesMain (122 samples, 0.02%)</title><rect x="25.4268%" y="789" width="0.0234%" height="15" fill="rgb(221,149,4)" fg:x="132316" fg:w="122"/><text x="25.6768%" y="799.50"></text></g><g><title>[python3.9] (67 samples, 0.01%)</title><rect x="25.4373%" y="773" width="0.0129%" height="15" fill="rgb(232,170,28)" fg:x="132371" fg:w="67"/><text x="25.6873%" y="783.50"></text></g><g><title>[python3.9] (67 samples, 0.01%)</title><rect x="25.4373%" y="757" width="0.0129%" height="15" fill="rgb(238,56,10)" fg:x="132371" fg:w="67"/><text x="25.6873%" y="767.50"></text></g><g><title>_start (130 samples, 0.02%)</title><rect x="25.4268%" y="821" width="0.0250%" height="15" fill="rgb(235,196,14)" fg:x="132316" fg:w="130"/><text x="25.6768%" y="831.50"></text></g><g><title>python3 (432 samples, 0.08%)</title><rect x="25.3712%" y="837" width="0.0830%" height="15" fill="rgb(216,45,48)" fg:x="132027" fg:w="432"/><text x="25.6212%" y="847.50"></text></g><g><title>[sed] (54 samples, 0.01%)</title><rect x="25.4623%" y="741" width="0.0104%" height="15" fill="rgb(238,213,17)" fg:x="132501" fg:w="54"/><text x="25.7123%" y="751.50"></text></g><g><title>[sed] (68 samples, 0.01%)</title><rect x="25.4617%" y="757" width="0.0131%" height="15" fill="rgb(212,13,2)" fg:x="132498" fg:w="68"/><text x="25.7117%" y="767.50"></text></g><g><title>[sed] (69 samples, 0.01%)</title><rect x="25.4617%" y="773" width="0.0133%" height="15" fill="rgb(240,114,20)" fg:x="132498" fg:w="69"/><text x="25.7117%" y="783.50"></text></g><g><title>[sed] (77 samples, 0.01%)</title><rect x="25.4617%" y="789" width="0.0148%" height="15" fill="rgb(228,41,40)" fg:x="132498" fg:w="77"/><text x="25.7117%" y="799.50"></text></g><g><title>__libc_start_main (89 samples, 0.02%)</title><rect x="25.4617%" y="805" width="0.0171%" height="15" fill="rgb(244,132,35)" fg:x="132498" fg:w="89"/><text x="25.7117%" y="815.50"></text></g><g><title>[sed] (92 samples, 0.02%)</title><rect x="25.4615%" y="821" width="0.0177%" height="15" fill="rgb(253,189,4)" fg:x="132497" fg:w="92"/><text x="25.7115%" y="831.50"></text></g><g><title>_dl_start_user (58 samples, 0.01%)</title><rect x="25.4834%" y="821" width="0.0111%" height="15" fill="rgb(224,37,19)" fg:x="132611" fg:w="58"/><text x="25.7334%" y="831.50"></text></g><g><title>_dl_init (58 samples, 0.01%)</title><rect x="25.4834%" y="805" width="0.0111%" height="15" fill="rgb(235,223,18)" fg:x="132611" fg:w="58"/><text x="25.7334%" y="815.50"></text></g><g><title>call_init (58 samples, 0.01%)</title><rect x="25.4834%" y="789" width="0.0111%" height="15" fill="rgb(235,163,25)" fg:x="132611" fg:w="58"/><text x="25.7334%" y="799.50"></text></g><g><title>call_init (58 samples, 0.01%)</title><rect x="25.4834%" y="773" width="0.0111%" height="15" fill="rgb(217,145,28)" fg:x="132611" fg:w="58"/><text x="25.7334%" y="783.50"></text></g><g><title>__split_vma (79 samples, 0.02%)</title><rect x="25.5280%" y="501" width="0.0152%" height="15" fill="rgb(223,223,32)" fg:x="132843" fg:w="79"/><text x="25.7780%" y="511.50"></text></g><g><title>__do_munmap (134 samples, 0.03%)</title><rect x="25.5271%" y="517" width="0.0258%" height="15" fill="rgb(227,189,39)" fg:x="132838" fg:w="134"/><text x="25.7771%" y="527.50"></text></g><g><title>perf_event_mmap (73 samples, 0.01%)</title><rect x="25.5528%" y="517" width="0.0140%" height="15" fill="rgb(248,10,22)" fg:x="132972" fg:w="73"/><text x="25.8028%" y="527.50"></text></g><g><title>mmap_region (261 samples, 0.05%)</title><rect x="25.5257%" y="533" width="0.0502%" height="15" fill="rgb(248,46,39)" fg:x="132831" fg:w="261"/><text x="25.7757%" y="543.50"></text></g><g><title>do_mmap (270 samples, 0.05%)</title><rect x="25.5244%" y="549" width="0.0519%" height="15" fill="rgb(248,113,48)" fg:x="132824" fg:w="270"/><text x="25.7744%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (286 samples, 0.05%)</title><rect x="25.5219%" y="581" width="0.0550%" height="15" fill="rgb(245,16,25)" fg:x="132811" fg:w="286"/><text x="25.7719%" y="591.50"></text></g><g><title>vm_mmap_pgoff (274 samples, 0.05%)</title><rect x="25.5242%" y="565" width="0.0527%" height="15" fill="rgb(249,152,16)" fg:x="132823" fg:w="274"/><text x="25.7742%" y="575.50"></text></g><g><title>do_syscall_64 (308 samples, 0.06%)</title><rect x="25.5219%" y="597" width="0.0592%" height="15" fill="rgb(250,16,1)" fg:x="132811" fg:w="308"/><text x="25.7719%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (310 samples, 0.06%)</title><rect x="25.5219%" y="613" width="0.0596%" height="15" fill="rgb(249,138,3)" fg:x="132811" fg:w="310"/><text x="25.7719%" y="623.50"></text></g><g><title>__mmap64 (317 samples, 0.06%)</title><rect x="25.5207%" y="645" width="0.0609%" height="15" fill="rgb(227,71,41)" fg:x="132805" fg:w="317"/><text x="25.7707%" y="655.50"></text></g><g><title>__mmap64 (317 samples, 0.06%)</title><rect x="25.5207%" y="629" width="0.0609%" height="15" fill="rgb(209,184,23)" fg:x="132805" fg:w="317"/><text x="25.7707%" y="639.50"></text></g><g><title>_dl_map_segments (360 samples, 0.07%)</title><rect x="25.5127%" y="661" width="0.0692%" height="15" fill="rgb(223,215,31)" fg:x="132763" fg:w="360"/><text x="25.7627%" y="671.50"></text></g><g><title>_dl_map_object_from_fd (465 samples, 0.09%)</title><rect x="25.5090%" y="677" width="0.0894%" height="15" fill="rgb(210,146,28)" fg:x="132744" fg:w="465"/><text x="25.7590%" y="687.50"></text></g><g><title>do_syscall_64 (77 samples, 0.01%)</title><rect x="25.6041%" y="613" width="0.0148%" height="15" fill="rgb(209,183,41)" fg:x="133239" fg:w="77"/><text x="25.8541%" y="623.50"></text></g><g><title>__x64_sys_openat (77 samples, 0.01%)</title><rect x="25.6041%" y="597" width="0.0148%" height="15" fill="rgb(209,224,45)" fg:x="133239" fg:w="77"/><text x="25.8541%" y="607.50"></text></g><g><title>do_sys_openat2 (76 samples, 0.01%)</title><rect x="25.6043%" y="581" width="0.0146%" height="15" fill="rgb(224,209,51)" fg:x="133240" fg:w="76"/><text x="25.8543%" y="591.50"></text></g><g><title>__GI___open64_nocancel (84 samples, 0.02%)</title><rect x="25.6037%" y="645" width="0.0161%" height="15" fill="rgb(223,17,39)" fg:x="133237" fg:w="84"/><text x="25.8537%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.02%)</title><rect x="25.6041%" y="629" width="0.0158%" height="15" fill="rgb(234,204,37)" fg:x="133239" fg:w="82"/><text x="25.8541%" y="639.50"></text></g><g><title>open_path (115 samples, 0.02%)</title><rect x="25.5991%" y="677" width="0.0221%" height="15" fill="rgb(236,120,5)" fg:x="133213" fg:w="115"/><text x="25.8491%" y="687.50"></text></g><g><title>open_verify (94 samples, 0.02%)</title><rect x="25.6032%" y="661" width="0.0181%" height="15" fill="rgb(248,97,27)" fg:x="133234" fg:w="94"/><text x="25.8532%" y="671.50"></text></g><g><title>_dl_catch_exception (606 samples, 0.12%)</title><rect x="25.5067%" y="725" width="0.1165%" height="15" fill="rgb(240,66,17)" fg:x="132732" fg:w="606"/><text x="25.7567%" y="735.50"></text></g><g><title>openaux (605 samples, 0.12%)</title><rect x="25.5069%" y="709" width="0.1163%" height="15" fill="rgb(210,79,3)" fg:x="132733" fg:w="605"/><text x="25.7569%" y="719.50"></text></g><g><title>_dl_map_object (605 samples, 0.12%)</title><rect x="25.5069%" y="693" width="0.1163%" height="15" fill="rgb(214,176,27)" fg:x="132733" fg:w="605"/><text x="25.7569%" y="703.50"></text></g><g><title>_dl_map_object_deps (640 samples, 0.12%)</title><rect x="25.5052%" y="741" width="0.1230%" height="15" fill="rgb(235,185,3)" fg:x="132724" fg:w="640"/><text x="25.7552%" y="751.50"></text></g><g><title>_dl_check_map_versions (53 samples, 0.01%)</title><rect x="25.6285%" y="693" width="0.0102%" height="15" fill="rgb(227,24,12)" fg:x="133366" fg:w="53"/><text x="25.8785%" y="703.50"></text></g><g><title>_dl_receive_error (54 samples, 0.01%)</title><rect x="25.6285%" y="741" width="0.0104%" height="15" fill="rgb(252,169,48)" fg:x="133366" fg:w="54"/><text x="25.8785%" y="751.50"></text></g><g><title>version_check_doit (54 samples, 0.01%)</title><rect x="25.6285%" y="725" width="0.0104%" height="15" fill="rgb(212,65,1)" fg:x="133366" fg:w="54"/><text x="25.8785%" y="735.50"></text></g><g><title>_dl_check_all_versions (54 samples, 0.01%)</title><rect x="25.6285%" y="709" width="0.0104%" height="15" fill="rgb(242,39,24)" fg:x="133366" fg:w="54"/><text x="25.8785%" y="719.50"></text></g><g><title>__split_vma (61 samples, 0.01%)</title><rect x="25.6408%" y="613" width="0.0117%" height="15" fill="rgb(249,32,23)" fg:x="133430" fg:w="61"/><text x="25.8908%" y="623.50"></text></g><g><title>mprotect_fixup (106 samples, 0.02%)</title><rect x="25.6408%" y="629" width="0.0204%" height="15" fill="rgb(251,195,23)" fg:x="133430" fg:w="106"/><text x="25.8908%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.02%)</title><rect x="25.6397%" y="693" width="0.0221%" height="15" fill="rgb(236,174,8)" fg:x="133424" fg:w="115"/><text x="25.8897%" y="703.50"></text></g><g><title>do_syscall_64 (115 samples, 0.02%)</title><rect x="25.6397%" y="677" width="0.0221%" height="15" fill="rgb(220,197,8)" fg:x="133424" fg:w="115"/><text x="25.8897%" y="687.50"></text></g><g><title>__x64_sys_mprotect (115 samples, 0.02%)</title><rect x="25.6397%" y="661" width="0.0221%" height="15" fill="rgb(240,108,37)" fg:x="133424" fg:w="115"/><text x="25.8897%" y="671.50"></text></g><g><title>do_mprotect_pkey (114 samples, 0.02%)</title><rect x="25.6399%" y="645" width="0.0219%" height="15" fill="rgb(232,176,24)" fg:x="133425" fg:w="114"/><text x="25.8899%" y="655.50"></text></g><g><title>_dl_protect_relro (117 samples, 0.02%)</title><rect x="25.6395%" y="725" width="0.0225%" height="15" fill="rgb(243,35,29)" fg:x="133423" fg:w="117"/><text x="25.8895%" y="735.50"></text></g><g><title>__mprotect (116 samples, 0.02%)</title><rect x="25.6397%" y="709" width="0.0223%" height="15" fill="rgb(210,37,18)" fg:x="133424" fg:w="116"/><text x="25.8897%" y="719.50"></text></g><g><title>dl_new_hash (66 samples, 0.01%)</title><rect x="25.6877%" y="677" width="0.0127%" height="15" fill="rgb(224,184,40)" fg:x="133674" fg:w="66"/><text x="25.9377%" y="687.50"></text></g><g><title>check_match (79 samples, 0.02%)</title><rect x="25.7323%" y="661" width="0.0152%" height="15" fill="rgb(236,39,29)" fg:x="133906" fg:w="79"/><text x="25.9823%" y="671.50"></text></g><g><title>strcmp (59 samples, 0.01%)</title><rect x="25.7361%" y="645" width="0.0113%" height="15" fill="rgb(232,48,39)" fg:x="133926" fg:w="59"/><text x="25.9861%" y="655.50"></text></g><g><title>_dl_lookup_symbol_x (335 samples, 0.06%)</title><rect x="25.6841%" y="693" width="0.0644%" height="15" fill="rgb(236,34,42)" fg:x="133655" fg:w="335"/><text x="25.9341%" y="703.50"></text></g><g><title>do_lookup_x (250 samples, 0.05%)</title><rect x="25.7004%" y="677" width="0.0480%" height="15" fill="rgb(243,106,37)" fg:x="133740" fg:w="250"/><text x="25.9504%" y="687.50"></text></g><g><title>elf_machine_rela (390 samples, 0.07%)</title><rect x="25.6752%" y="709" width="0.0749%" height="15" fill="rgb(218,96,6)" fg:x="133609" fg:w="390"/><text x="25.9252%" y="719.50"></text></g><g><title>elf_machine_rela_relative (75 samples, 0.01%)</title><rect x="25.7502%" y="709" width="0.0144%" height="15" fill="rgb(235,130,12)" fg:x="133999" fg:w="75"/><text x="26.0002%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (535 samples, 0.10%)</title><rect x="25.6620%" y="725" width="0.1028%" height="15" fill="rgb(231,95,0)" fg:x="133540" fg:w="535"/><text x="25.9120%" y="735.50"></text></g><g><title>_dl_relocate_object (667 samples, 0.13%)</title><rect x="25.6389%" y="741" width="0.1282%" height="15" fill="rgb(228,12,23)" fg:x="133420" fg:w="667"/><text x="25.8889%" y="751.50"></text></g><g><title>[ld-2.31.so] (1,437 samples, 0.28%)</title><rect x="25.4992%" y="757" width="0.2761%" height="15" fill="rgb(216,12,1)" fg:x="132693" fg:w="1437"/><text x="25.7492%" y="767.50"></text></g><g><title>_dl_start_final (1,462 samples, 0.28%)</title><rect x="25.4982%" y="789" width="0.2809%" height="15" fill="rgb(219,59,3)" fg:x="132688" fg:w="1462"/><text x="25.7482%" y="799.50"></text></g><g><title>_dl_sysdep_start (1,461 samples, 0.28%)</title><rect x="25.4984%" y="773" width="0.2808%" height="15" fill="rgb(215,208,46)" fg:x="132689" fg:w="1461"/><text x="25.7484%" y="783.50"></text></g><g><title>_dl_start (1,482 samples, 0.28%)</title><rect x="25.4980%" y="805" width="0.2848%" height="15" fill="rgb(254,224,29)" fg:x="132687" fg:w="1482"/><text x="25.7480%" y="815.50"></text></g><g><title>_start (1,494 samples, 0.29%)</title><rect x="25.4979%" y="821" width="0.2871%" height="15" fill="rgb(232,14,29)" fg:x="132686" fg:w="1494"/><text x="25.7479%" y="831.50"></text></g><g><title>asm_exc_page_fault (71 samples, 0.01%)</title><rect x="25.7850%" y="821" width="0.0136%" height="15" fill="rgb(208,45,52)" fg:x="134180" fg:w="71"/><text x="26.0350%" y="831.50"></text></g><g><title>__x64_sys_execve (69 samples, 0.01%)</title><rect x="25.7992%" y="789" width="0.0133%" height="15" fill="rgb(234,191,28)" fg:x="134254" fg:w="69"/><text x="26.0492%" y="799.50"></text></g><g><title>do_execveat_common (69 samples, 0.01%)</title><rect x="25.7992%" y="773" width="0.0133%" height="15" fill="rgb(244,67,43)" fg:x="134254" fg:w="69"/><text x="26.0492%" y="783.50"></text></g><g><title>bprm_execve (69 samples, 0.01%)</title><rect x="25.7992%" y="757" width="0.0133%" height="15" fill="rgb(236,189,24)" fg:x="134254" fg:w="69"/><text x="26.0492%" y="767.50"></text></g><g><title>load_elf_binary (69 samples, 0.01%)</title><rect x="25.7992%" y="741" width="0.0133%" height="15" fill="rgb(239,214,33)" fg:x="134254" fg:w="69"/><text x="26.0492%" y="751.50"></text></g><g><title>remove_vma (60 samples, 0.01%)</title><rect x="25.8245%" y="709" width="0.0115%" height="15" fill="rgb(226,176,41)" fg:x="134386" fg:w="60"/><text x="26.0745%" y="719.50"></text></g><g><title>kmem_cache_free (53 samples, 0.01%)</title><rect x="25.8259%" y="693" width="0.0102%" height="15" fill="rgb(248,47,8)" fg:x="134393" fg:w="53"/><text x="26.0759%" y="703.50"></text></g><g><title>tlb_finish_mmu (61 samples, 0.01%)</title><rect x="25.8361%" y="709" width="0.0117%" height="15" fill="rgb(218,81,44)" fg:x="134446" fg:w="61"/><text x="26.0861%" y="719.50"></text></g><g><title>release_pages (53 samples, 0.01%)</title><rect x="25.8376%" y="693" width="0.0102%" height="15" fill="rgb(213,98,6)" fg:x="134454" fg:w="53"/><text x="26.0876%" y="703.50"></text></g><g><title>mmput (208 samples, 0.04%)</title><rect x="25.8159%" y="741" width="0.0400%" height="15" fill="rgb(222,85,22)" fg:x="134341" fg:w="208"/><text x="26.0659%" y="751.50"></text></g><g><title>exit_mmap (208 samples, 0.04%)</title><rect x="25.8159%" y="725" width="0.0400%" height="15" fill="rgb(239,46,39)" fg:x="134341" fg:w="208"/><text x="26.0659%" y="735.50"></text></g><g><title>__x64_sys_exit_group (285 samples, 0.05%)</title><rect x="25.8124%" y="789" width="0.0548%" height="15" fill="rgb(237,12,29)" fg:x="134323" fg:w="285"/><text x="26.0624%" y="799.50"></text></g><g><title>do_group_exit (285 samples, 0.05%)</title><rect x="25.8124%" y="773" width="0.0548%" height="15" fill="rgb(214,77,8)" fg:x="134323" fg:w="285"/><text x="26.0624%" y="783.50"></text></g><g><title>do_exit (285 samples, 0.05%)</title><rect x="25.8124%" y="757" width="0.0548%" height="15" fill="rgb(217,168,37)" fg:x="134323" fg:w="285"/><text x="26.0624%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (358 samples, 0.07%)</title><rect x="25.7986%" y="821" width="0.0688%" height="15" fill="rgb(221,217,23)" fg:x="134251" fg:w="358"/><text x="26.0486%" y="831.50"></text></g><g><title>do_syscall_64 (355 samples, 0.07%)</title><rect x="25.7992%" y="805" width="0.0682%" height="15" fill="rgb(243,229,36)" fg:x="134254" fg:w="355"/><text x="26.0492%" y="815.50"></text></g><g><title>sed (2,156 samples, 0.41%)</title><rect x="25.4542%" y="837" width="0.4143%" height="15" fill="rgb(251,163,40)" fg:x="132459" fg:w="2156"/><text x="25.7042%" y="847.50"></text></g><g><title>CollectedHeap::obj_allocate (129 samples, 0.02%)</title><rect x="25.9076%" y="805" width="0.0248%" height="15" fill="rgb(237,222,12)" fg:x="134818" fg:w="129"/><text x="26.1576%" y="815.50"></text></g><g><title>HandleMark::pop_and_restore (57 samples, 0.01%)</title><rect x="25.9398%" y="805" width="0.0110%" height="15" fill="rgb(248,132,6)" fg:x="134986" fg:w="57"/><text x="26.1898%" y="815.50"></text></g><g><title>InstanceKlass::initialize (101 samples, 0.02%)</title><rect x="25.9537%" y="805" width="0.0194%" height="15" fill="rgb(227,167,50)" fg:x="135058" fg:w="101"/><text x="26.2037%" y="815.50"></text></g><g><title>JavaThread::can_call_java (89 samples, 0.02%)</title><rect x="26.0050%" y="805" width="0.0171%" height="15" fill="rgb(242,84,37)" fg:x="135325" fg:w="89"/><text x="26.2550%" y="815.50"></text></g><g><title>JavaThread::is_Java_thread (91 samples, 0.02%)</title><rect x="26.0232%" y="805" width="0.0175%" height="15" fill="rgb(212,4,50)" fg:x="135420" fg:w="91"/><text x="26.2732%" y="815.50"></text></g><g><title>_int_free (86 samples, 0.02%)</title><rect x="26.1209%" y="805" width="0.0165%" height="15" fill="rgb(230,228,32)" fg:x="135928" fg:w="86"/><text x="26.3709%" y="815.50"></text></g><g><title>[anon] (1,666 samples, 0.32%)</title><rect x="25.8793%" y="821" width="0.3202%" height="15" fill="rgb(248,217,23)" fg:x="134671" fg:w="1666"/><text x="26.1293%" y="831.50"></text></g><g><title>[libc-2.31.so] (72 samples, 0.01%)</title><rect x="26.7164%" y="805" width="0.0138%" height="15" fill="rgb(238,197,32)" fg:x="139027" fg:w="72"/><text x="26.9664%" y="815.50"></text></g><g><title>__x64_sys_close (66 samples, 0.01%)</title><rect x="26.7345%" y="757" width="0.0127%" height="15" fill="rgb(236,106,1)" fg:x="139121" fg:w="66"/><text x="26.9845%" y="767.50"></text></g><g><title>do_syscall_64 (68 samples, 0.01%)</title><rect x="26.7343%" y="773" width="0.0131%" height="15" fill="rgb(219,228,13)" fg:x="139120" fg:w="68"/><text x="26.9843%" y="783.50"></text></g><g><title>btrfs_release_file (60 samples, 0.01%)</title><rect x="26.7575%" y="709" width="0.0115%" height="15" fill="rgb(238,30,35)" fg:x="139241" fg:w="60"/><text x="27.0075%" y="719.50"></text></g><g><title>kfree (56 samples, 0.01%)</title><rect x="26.7583%" y="693" width="0.0108%" height="15" fill="rgb(236,70,23)" fg:x="139245" fg:w="56"/><text x="27.0083%" y="703.50"></text></g><g><title>__fput (120 samples, 0.02%)</title><rect x="26.7544%" y="725" width="0.0231%" height="15" fill="rgb(249,104,48)" fg:x="139225" fg:w="120"/><text x="27.0044%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (255 samples, 0.05%)</title><rect x="26.7343%" y="789" width="0.0490%" height="15" fill="rgb(254,117,50)" fg:x="139120" fg:w="255"/><text x="26.9843%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (187 samples, 0.04%)</title><rect x="26.7473%" y="773" width="0.0359%" height="15" fill="rgb(223,152,4)" fg:x="139188" fg:w="187"/><text x="26.9973%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (186 samples, 0.04%)</title><rect x="26.7475%" y="757" width="0.0357%" height="15" fill="rgb(245,6,2)" fg:x="139189" fg:w="186"/><text x="26.9975%" y="767.50"></text></g><g><title>task_work_run (163 samples, 0.03%)</title><rect x="26.7519%" y="741" width="0.0313%" height="15" fill="rgb(249,150,24)" fg:x="139212" fg:w="163"/><text x="27.0019%" y="751.50"></text></g><g><title>__GI___close_nocancel (279 samples, 0.05%)</title><rect x="26.7302%" y="805" width="0.0536%" height="15" fill="rgb(228,185,42)" fg:x="139099" fg:w="279"/><text x="26.9802%" y="815.50"></text></g><g><title>__GI___libc_free (520 samples, 0.10%)</title><rect x="26.7838%" y="805" width="0.0999%" height="15" fill="rgb(226,39,33)" fg:x="139378" fg:w="520"/><text x="27.0338%" y="815.50"></text></g><g><title>entry_SYSCALL_64 (167 samples, 0.03%)</title><rect x="26.9072%" y="789" width="0.0321%" height="15" fill="rgb(221,166,19)" fg:x="140020" fg:w="167"/><text x="27.1572%" y="799.50"></text></g><g><title>lockref_put_or_lock (216 samples, 0.04%)</title><rect x="27.0289%" y="709" width="0.0415%" height="15" fill="rgb(209,109,2)" fg:x="140653" fg:w="216"/><text x="27.2789%" y="719.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.02%)</title><rect x="27.0508%" y="693" width="0.0196%" height="15" fill="rgb(252,216,26)" fg:x="140767" fg:w="102"/><text x="27.3008%" y="703.50"></text></g><g><title>dput (418 samples, 0.08%)</title><rect x="26.9935%" y="725" width="0.0803%" height="15" fill="rgb(227,173,36)" fg:x="140469" fg:w="418"/><text x="27.2435%" y="735.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="27.1336%" y="645" width="0.0131%" height="15" fill="rgb(209,90,7)" fg:x="141198" fg:w="68"/><text x="27.3836%" y="655.50"></text></g><g><title>__lookup_hash (294 samples, 0.06%)</title><rect x="27.0903%" y="709" width="0.0565%" height="15" fill="rgb(250,194,11)" fg:x="140973" fg:w="294"/><text x="27.3403%" y="719.50"></text></g><g><title>lookup_dcache (284 samples, 0.05%)</title><rect x="27.0923%" y="693" width="0.0546%" height="15" fill="rgb(220,72,50)" fg:x="140983" fg:w="284"/><text x="27.3423%" y="703.50"></text></g><g><title>d_lookup (261 samples, 0.05%)</title><rect x="27.0967%" y="677" width="0.0502%" height="15" fill="rgb(222,106,48)" fg:x="141006" fg:w="261"/><text x="27.3467%" y="687.50"></text></g><g><title>__d_lookup (211 samples, 0.04%)</title><rect x="27.1063%" y="661" width="0.0405%" height="15" fill="rgb(216,220,45)" fg:x="141056" fg:w="211"/><text x="27.3563%" y="671.50"></text></g><g><title>down_write (66 samples, 0.01%)</title><rect x="27.1468%" y="709" width="0.0127%" height="15" fill="rgb(234,112,18)" fg:x="141267" fg:w="66"/><text x="27.3968%" y="719.50"></text></g><g><title>__legitimize_mnt (96 samples, 0.02%)</title><rect x="27.1782%" y="629" width="0.0184%" height="15" fill="rgb(206,179,9)" fg:x="141430" fg:w="96"/><text x="27.4282%" y="639.50"></text></g><g><title>__legitimize_path (153 samples, 0.03%)</title><rect x="27.1764%" y="645" width="0.0294%" height="15" fill="rgb(215,115,40)" fg:x="141421" fg:w="153"/><text x="27.4264%" y="655.50"></text></g><g><title>complete_walk (207 samples, 0.04%)</title><rect x="27.1707%" y="677" width="0.0398%" height="15" fill="rgb(222,69,34)" fg:x="141391" fg:w="207"/><text x="27.4207%" y="687.50"></text></g><g><title>try_to_unlazy (190 samples, 0.04%)</title><rect x="27.1739%" y="661" width="0.0365%" height="15" fill="rgb(209,161,10)" fg:x="141408" fg:w="190"/><text x="27.4239%" y="671.50"></text></g><g><title>btrfs_permission (92 samples, 0.02%)</title><rect x="27.5081%" y="645" width="0.0177%" height="15" fill="rgb(217,6,38)" fg:x="143147" fg:w="92"/><text x="27.7581%" y="655.50"></text></g><g><title>inode_permission.part.0 (982 samples, 0.19%)</title><rect x="27.4009%" y="661" width="0.1887%" height="15" fill="rgb(229,229,48)" fg:x="142589" fg:w="982"/><text x="27.6509%" y="671.50"></text></g><g><title>generic_permission (332 samples, 0.06%)</title><rect x="27.5258%" y="645" width="0.0638%" height="15" fill="rgb(225,21,28)" fg:x="143239" fg:w="332"/><text x="27.7758%" y="655.50"></text></g><g><title>security_inode_permission (129 samples, 0.02%)</title><rect x="27.5896%" y="661" width="0.0248%" height="15" fill="rgb(206,33,13)" fg:x="143571" fg:w="129"/><text x="27.8396%" y="671.50"></text></g><g><title>lookup_fast (1,850 samples, 0.36%)</title><rect x="27.6924%" y="645" width="0.3555%" height="15" fill="rgb(242,178,17)" fg:x="144106" fg:w="1850"/><text x="27.9424%" y="655.50"></text></g><g><title>__d_lookup_rcu (1,383 samples, 0.27%)</title><rect x="27.7821%" y="629" width="0.2658%" height="15" fill="rgb(220,162,5)" fg:x="144573" fg:w="1383"/><text x="28.0321%" y="639.50"></text></g><g><title>link_path_walk.part.0 (4,853 samples, 0.93%)</title><rect x="27.2104%" y="677" width="0.9326%" height="15" fill="rgb(210,33,43)" fg:x="141598" fg:w="4853"/><text x="27.4604%" y="687.50"></text></g><g><title>walk_component (2,751 samples, 0.53%)</title><rect x="27.6144%" y="661" width="0.5287%" height="15" fill="rgb(216,116,54)" fg:x="143700" fg:w="2751"/><text x="27.8644%" y="671.50"></text></g><g><title>step_into (495 samples, 0.10%)</title><rect x="28.0479%" y="645" width="0.0951%" height="15" fill="rgb(249,92,24)" fg:x="145956" fg:w="495"/><text x="28.2979%" y="655.50"></text></g><g><title>path_init (126 samples, 0.02%)</title><rect x="28.1430%" y="677" width="0.0242%" height="15" fill="rgb(231,189,14)" fg:x="146451" fg:w="126"/><text x="28.3930%" y="687.50"></text></g><g><title>nd_jump_root (90 samples, 0.02%)</title><rect x="28.1500%" y="661" width="0.0173%" height="15" fill="rgb(230,8,41)" fg:x="146487" fg:w="90"/><text x="28.4000%" y="671.50"></text></g><g><title>set_root (57 samples, 0.01%)</title><rect x="28.1563%" y="645" width="0.0110%" height="15" fill="rgb(249,7,27)" fg:x="146520" fg:w="57"/><text x="28.4063%" y="655.50"></text></g><g><title>filename_parentat (5,271 samples, 1.01%)</title><rect x="27.1595%" y="709" width="1.0129%" height="15" fill="rgb(232,86,5)" fg:x="141333" fg:w="5271"/><text x="27.4095%" y="719.50"></text></g><g><title>path_parentat (5,225 samples, 1.00%)</title><rect x="27.1684%" y="693" width="1.0041%" height="15" fill="rgb(224,175,18)" fg:x="141379" fg:w="5225"/><text x="27.4184%" y="703.50"></text></g><g><title>kmem_cache_free (194 samples, 0.04%)</title><rect x="28.1724%" y="709" width="0.0373%" height="15" fill="rgb(220,129,12)" fg:x="146604" fg:w="194"/><text x="28.4224%" y="719.50"></text></g><g><title>__mnt_want_write (75 samples, 0.01%)</title><rect x="28.2168%" y="693" width="0.0144%" height="15" fill="rgb(210,19,36)" fg:x="146835" fg:w="75"/><text x="28.4668%" y="703.50"></text></g><g><title>mnt_want_write (128 samples, 0.02%)</title><rect x="28.2097%" y="709" width="0.0246%" height="15" fill="rgb(219,96,14)" fg:x="146798" fg:w="128"/><text x="28.4597%" y="719.50"></text></g><g><title>filename_create (6,049 samples, 1.16%)</title><rect x="27.0738%" y="725" width="1.1624%" height="15" fill="rgb(249,106,1)" fg:x="140887" fg:w="6049"/><text x="27.3238%" y="735.50"></text></g><g><title>kmem_cache_free (143 samples, 0.03%)</title><rect x="28.2458%" y="709" width="0.0275%" height="15" fill="rgb(249,155,20)" fg:x="146986" fg:w="143"/><text x="28.4958%" y="719.50"></text></g><g><title>__legitimize_mnt (68 samples, 0.01%)</title><rect x="28.2916%" y="645" width="0.0131%" height="15" fill="rgb(244,168,9)" fg:x="147224" fg:w="68"/><text x="28.5416%" y="655.50"></text></g><g><title>__legitimize_path (140 samples, 0.03%)</title><rect x="28.2893%" y="661" width="0.0269%" height="15" fill="rgb(216,23,50)" fg:x="147212" fg:w="140"/><text x="28.5393%" y="671.50"></text></g><g><title>lockref_get_not_dead (60 samples, 0.01%)</title><rect x="28.3046%" y="645" width="0.0115%" height="15" fill="rgb(224,219,20)" fg:x="147292" fg:w="60"/><text x="28.5546%" y="655.50"></text></g><g><title>complete_walk (180 samples, 0.03%)</title><rect x="28.2847%" y="693" width="0.0346%" height="15" fill="rgb(222,156,15)" fg:x="147188" fg:w="180"/><text x="28.5347%" y="703.50"></text></g><g><title>try_to_unlazy (171 samples, 0.03%)</title><rect x="28.2864%" y="677" width="0.0329%" height="15" fill="rgb(231,97,17)" fg:x="147197" fg:w="171"/><text x="28.5364%" y="687.50"></text></g><g><title>btrfs_permission (110 samples, 0.02%)</title><rect x="28.7199%" y="661" width="0.0211%" height="15" fill="rgb(218,70,48)" fg:x="149453" fg:w="110"/><text x="28.9699%" y="671.50"></text></g><g><title>inode_permission.part.0 (1,315 samples, 0.25%)</title><rect x="28.5831%" y="677" width="0.2527%" height="15" fill="rgb(212,196,52)" fg:x="148741" fg:w="1315"/><text x="28.8331%" y="687.50"></text></g><g><title>generic_permission (493 samples, 0.09%)</title><rect x="28.7411%" y="661" width="0.0947%" height="15" fill="rgb(243,203,18)" fg:x="149563" fg:w="493"/><text x="28.9911%" y="671.50"></text></g><g><title>security_inode_permission (159 samples, 0.03%)</title><rect x="28.8358%" y="677" width="0.0306%" height="15" fill="rgb(252,125,41)" fg:x="150056" fg:w="159"/><text x="29.0858%" y="687.50"></text></g><g><title>lookup_fast (2,704 samples, 0.52%)</title><rect x="28.9653%" y="661" width="0.5196%" height="15" fill="rgb(223,180,33)" fg:x="150730" fg:w="2704"/><text x="29.2153%" y="671.50"></text></g><g><title>__d_lookup_rcu (2,106 samples, 0.40%)</title><rect x="29.0802%" y="645" width="0.4047%" height="15" fill="rgb(254,159,46)" fg:x="151328" fg:w="2106"/><text x="29.3302%" y="655.50"></text></g><g><title>__lookup_mnt (57 samples, 0.01%)</title><rect x="29.6273%" y="645" width="0.0110%" height="15" fill="rgb(254,38,10)" fg:x="154175" fg:w="57"/><text x="29.8773%" y="655.50"></text></g><g><title>atime_needs_update (113 samples, 0.02%)</title><rect x="29.6387%" y="645" width="0.0217%" height="15" fill="rgb(208,217,32)" fg:x="154234" fg:w="113"/><text x="29.8887%" y="655.50"></text></g><g><title>current_time (92 samples, 0.02%)</title><rect x="29.6427%" y="629" width="0.0177%" height="15" fill="rgb(221,120,13)" fg:x="154255" fg:w="92"/><text x="29.8927%" y="639.50"></text></g><g><title>ktime_get_coarse_real_ts64 (64 samples, 0.01%)</title><rect x="29.6481%" y="613" width="0.0123%" height="15" fill="rgb(246,54,52)" fg:x="154283" fg:w="64"/><text x="29.8981%" y="623.50"></text></g><g><title>page_get_link (235 samples, 0.05%)</title><rect x="29.6663%" y="645" width="0.0452%" height="15" fill="rgb(242,34,25)" fg:x="154378" fg:w="235"/><text x="29.9163%" y="655.50"></text></g><g><title>pagecache_get_page (203 samples, 0.04%)</title><rect x="29.6725%" y="629" width="0.0390%" height="15" fill="rgb(247,209,9)" fg:x="154410" fg:w="203"/><text x="29.9225%" y="639.50"></text></g><g><title>find_get_entry (176 samples, 0.03%)</title><rect x="29.6777%" y="613" width="0.0338%" height="15" fill="rgb(228,71,26)" fg:x="154437" fg:w="176"/><text x="29.9277%" y="623.50"></text></g><g><title>xas_load (81 samples, 0.02%)</title><rect x="29.6959%" y="597" width="0.0156%" height="15" fill="rgb(222,145,49)" fg:x="154532" fg:w="81"/><text x="29.9459%" y="607.50"></text></g><g><title>xas_start (74 samples, 0.01%)</title><rect x="29.6973%" y="581" width="0.0142%" height="15" fill="rgb(218,121,17)" fg:x="154539" fg:w="74"/><text x="29.9473%" y="591.50"></text></g><g><title>link_path_walk.part.0 (7,252 samples, 1.39%)</title><rect x="28.3193%" y="693" width="1.3936%" height="15" fill="rgb(244,50,7)" fg:x="147368" fg:w="7252"/><text x="28.5693%" y="703.50"></text></g><g><title>walk_component (4,405 samples, 0.85%)</title><rect x="28.8663%" y="677" width="0.8465%" height="15" fill="rgb(246,229,37)" fg:x="150215" fg:w="4405"/><text x="29.1163%" y="687.50"></text></g><g><title>step_into (1,145 samples, 0.22%)</title><rect x="29.4928%" y="661" width="0.2200%" height="15" fill="rgb(225,18,5)" fg:x="153475" fg:w="1145"/><text x="29.7428%" y="671.50"></text></g><g><title>path_init (182 samples, 0.03%)</title><rect x="29.7128%" y="693" width="0.0350%" height="15" fill="rgb(213,204,8)" fg:x="154620" fg:w="182"/><text x="29.9628%" y="703.50"></text></g><g><title>nd_jump_root (147 samples, 0.03%)</title><rect x="29.7196%" y="677" width="0.0282%" height="15" fill="rgb(238,103,6)" fg:x="154655" fg:w="147"/><text x="29.9696%" y="687.50"></text></g><g><title>set_root (122 samples, 0.02%)</title><rect x="29.7244%" y="661" width="0.0234%" height="15" fill="rgb(222,25,35)" fg:x="154680" fg:w="122"/><text x="29.9744%" y="671.50"></text></g><g><title>lookup_fast (160 samples, 0.03%)</title><rect x="29.7553%" y="677" width="0.0307%" height="15" fill="rgb(213,203,35)" fg:x="154841" fg:w="160"/><text x="30.0053%" y="687.50"></text></g><g><title>__d_lookup_rcu (127 samples, 0.02%)</title><rect x="29.7617%" y="661" width="0.0244%" height="15" fill="rgb(221,79,53)" fg:x="154874" fg:w="127"/><text x="30.0117%" y="671.50"></text></g><g><title>path_lookupat (7,892 samples, 1.52%)</title><rect x="28.2733%" y="709" width="1.5166%" height="15" fill="rgb(243,200,35)" fg:x="147129" fg:w="7892"/><text x="28.5233%" y="719.50"></text></g><g><title>walk_component (200 samples, 0.04%)</title><rect x="29.7515%" y="693" width="0.0384%" height="15" fill="rgb(248,60,25)" fg:x="154821" fg:w="200"/><text x="30.0015%" y="703.50"></text></g><g><title>filename_lookup (8,090 samples, 1.55%)</title><rect x="28.2362%" y="725" width="1.5546%" height="15" fill="rgb(227,53,46)" fg:x="146936" fg:w="8090"/><text x="28.4862%" y="735.50"></text></g><g><title>getname_flags (58 samples, 0.01%)</title><rect x="29.7909%" y="725" width="0.0111%" height="15" fill="rgb(216,120,32)" fg:x="155026" fg:w="58"/><text x="30.0409%" y="735.50"></text></g><g><title>memset_erms (691 samples, 0.13%)</title><rect x="29.8645%" y="693" width="0.1328%" height="15" fill="rgb(220,134,1)" fg:x="155409" fg:w="691"/><text x="30.1145%" y="703.50"></text></g><g><title>_cond_resched (56 samples, 0.01%)</title><rect x="30.0184%" y="677" width="0.0108%" height="15" fill="rgb(237,168,5)" fg:x="156210" fg:w="56"/><text x="30.2684%" y="687.50"></text></g><g><title>kmem_cache_alloc (1,115 samples, 0.21%)</title><rect x="29.8160%" y="709" width="0.2143%" height="15" fill="rgb(231,100,33)" fg:x="155157" fg:w="1115"/><text x="30.0660%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (172 samples, 0.03%)</title><rect x="29.9973%" y="693" width="0.0331%" height="15" fill="rgb(236,177,47)" fg:x="156100" fg:w="172"/><text x="30.2473%" y="703.50"></text></g><g><title>__check_heap_object (127 samples, 0.02%)</title><rect x="30.1913%" y="677" width="0.0244%" height="15" fill="rgb(235,7,49)" fg:x="157110" fg:w="127"/><text x="30.4413%" y="687.50"></text></g><g><title>__virt_addr_valid (174 samples, 0.03%)</title><rect x="30.2157%" y="677" width="0.0334%" height="15" fill="rgb(232,119,22)" fg:x="157237" fg:w="174"/><text x="30.4657%" y="687.50"></text></g><g><title>__check_object_size (377 samples, 0.07%)</title><rect x="30.1775%" y="693" width="0.0724%" height="15" fill="rgb(254,73,53)" fg:x="157038" fg:w="377"/><text x="30.4275%" y="703.50"></text></g><g><title>getname_flags.part.0 (2,335 samples, 0.45%)</title><rect x="29.8020%" y="725" width="0.4487%" height="15" fill="rgb(251,35,20)" fg:x="155084" fg:w="2335"/><text x="30.0520%" y="735.50"></text></g><g><title>strncpy_from_user (1,147 samples, 0.22%)</title><rect x="30.0303%" y="709" width="0.2204%" height="15" fill="rgb(241,119,20)" fg:x="156272" fg:w="1147"/><text x="30.2803%" y="719.50"></text></g><g><title>btrfs_permission (55 samples, 0.01%)</title><rect x="30.2753%" y="693" width="0.0106%" height="15" fill="rgb(207,102,14)" fg:x="157547" fg:w="55"/><text x="30.5253%" y="703.50"></text></g><g><title>inode_permission.part.0 (107 samples, 0.02%)</title><rect x="30.2694%" y="709" width="0.0206%" height="15" fill="rgb(248,201,50)" fg:x="157516" fg:w="107"/><text x="30.5194%" y="719.50"></text></g><g><title>may_linkat (210 samples, 0.04%)</title><rect x="30.2507%" y="725" width="0.0404%" height="15" fill="rgb(222,185,44)" fg:x="157419" fg:w="210"/><text x="30.5007%" y="735.50"></text></g><g><title>mnt_drop_write (57 samples, 0.01%)</title><rect x="30.2911%" y="725" width="0.0110%" height="15" fill="rgb(218,107,18)" fg:x="157629" fg:w="57"/><text x="30.5411%" y="735.50"></text></g><g><title>mntput_no_expire (58 samples, 0.01%)</title><rect x="30.3030%" y="725" width="0.0111%" height="15" fill="rgb(237,177,39)" fg:x="157691" fg:w="58"/><text x="30.5530%" y="735.50"></text></g><g><title>apparmor_path_link (64 samples, 0.01%)</title><rect x="30.3335%" y="709" width="0.0123%" height="15" fill="rgb(246,69,6)" fg:x="157850" fg:w="64"/><text x="30.5835%" y="719.50"></text></g><g><title>security_path_link (359 samples, 0.07%)</title><rect x="30.3141%" y="725" width="0.0690%" height="15" fill="rgb(234,208,37)" fg:x="157749" fg:w="359"/><text x="30.5641%" y="735.50"></text></g><g><title>tomoyo_path_link (193 samples, 0.04%)</title><rect x="30.3460%" y="709" width="0.0371%" height="15" fill="rgb(225,4,6)" fg:x="157915" fg:w="193"/><text x="30.5960%" y="719.50"></text></g><g><title>tomoyo_path2_perm (181 samples, 0.03%)</title><rect x="30.3483%" y="693" width="0.0348%" height="15" fill="rgb(233,45,0)" fg:x="157927" fg:w="181"/><text x="30.5983%" y="703.50"></text></g><g><title>tomoyo_init_request_info (100 samples, 0.02%)</title><rect x="30.3639%" y="677" width="0.0192%" height="15" fill="rgb(226,136,5)" fg:x="158008" fg:w="100"/><text x="30.6139%" y="687.50"></text></g><g><title>up_write (71 samples, 0.01%)</title><rect x="30.3831%" y="725" width="0.0136%" height="15" fill="rgb(211,91,47)" fg:x="158108" fg:w="71"/><text x="30.6331%" y="735.50"></text></g><g><title>btrfs_put_transaction (57 samples, 0.01%)</title><rect x="30.5636%" y="677" width="0.0110%" height="15" fill="rgb(242,88,51)" fg:x="159047" fg:w="57"/><text x="30.8136%" y="687.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="30.5947%" y="645" width="0.0215%" height="15" fill="rgb(230,91,28)" fg:x="159209" fg:w="112"/><text x="30.8447%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (239 samples, 0.05%)</title><rect x="30.5799%" y="677" width="0.0459%" height="15" fill="rgb(254,186,29)" fg:x="159132" fg:w="239"/><text x="30.8299%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (222 samples, 0.04%)</title><rect x="30.5832%" y="661" width="0.0427%" height="15" fill="rgb(238,6,4)" fg:x="159149" fg:w="222"/><text x="30.8332%" y="671.50"></text></g><g><title>__btrfs_end_transaction (771 samples, 0.15%)</title><rect x="30.5046%" y="693" width="0.1482%" height="15" fill="rgb(221,151,16)" fg:x="158740" fg:w="771"/><text x="30.7546%" y="703.50"></text></g><g><title>kmem_cache_free (140 samples, 0.03%)</title><rect x="30.6258%" y="677" width="0.0269%" height="15" fill="rgb(251,143,52)" fg:x="159371" fg:w="140"/><text x="30.8758%" y="687.50"></text></g><g><title>btrfs_comp_cpu_keys (243 samples, 0.05%)</title><rect x="30.7661%" y="629" width="0.0467%" height="15" fill="rgb(206,90,15)" fg:x="160101" fg:w="243"/><text x="31.0161%" y="639.50"></text></g><g><title>__btrfs_add_delayed_item (605 samples, 0.12%)</title><rect x="30.7240%" y="645" width="0.1163%" height="15" fill="rgb(218,35,8)" fg:x="159882" fg:w="605"/><text x="30.9740%" y="655.50"></text></g><g><title>rb_insert_color (143 samples, 0.03%)</title><rect x="30.8128%" y="629" width="0.0275%" height="15" fill="rgb(239,215,6)" fg:x="160344" fg:w="143"/><text x="31.0628%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (259 samples, 0.05%)</title><rect x="30.8403%" y="645" width="0.0498%" height="15" fill="rgb(245,116,39)" fg:x="160487" fg:w="259"/><text x="31.0903%" y="655.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="30.8797%" y="629" width="0.0104%" height="15" fill="rgb(242,65,28)" fg:x="160692" fg:w="54"/><text x="31.1297%" y="639.50"></text></g><g><title>__slab_alloc (223 samples, 0.04%)</title><rect x="30.9364%" y="629" width="0.0429%" height="15" fill="rgb(252,132,53)" fg:x="160987" fg:w="223"/><text x="31.1864%" y="639.50"></text></g><g><title>___slab_alloc (211 samples, 0.04%)</title><rect x="30.9387%" y="613" width="0.0405%" height="15" fill="rgb(224,159,50)" fg:x="160999" fg:w="211"/><text x="31.1887%" y="623.50"></text></g><g><title>get_partial_node.part.0 (70 samples, 0.01%)</title><rect x="30.9658%" y="597" width="0.0135%" height="15" fill="rgb(224,93,4)" fg:x="161140" fg:w="70"/><text x="31.2158%" y="607.50"></text></g><g><title>memset_erms (78 samples, 0.01%)</title><rect x="30.9921%" y="629" width="0.0150%" height="15" fill="rgb(208,81,34)" fg:x="161277" fg:w="78"/><text x="31.2421%" y="639.50"></text></g><g><title>__kmalloc (652 samples, 0.13%)</title><rect x="30.8901%" y="645" width="0.1253%" height="15" fill="rgb(233,92,54)" fg:x="160746" fg:w="652"/><text x="31.1401%" y="655.50"></text></g><g><title>mutex_spin_on_owner (335 samples, 0.06%)</title><rect x="31.0167%" y="629" width="0.0644%" height="15" fill="rgb(237,21,14)" fg:x="161405" fg:w="335"/><text x="31.2667%" y="639.50"></text></g><g><title>__mutex_lock.constprop.0 (348 samples, 0.07%)</title><rect x="31.0154%" y="645" width="0.0669%" height="15" fill="rgb(249,128,51)" fg:x="161398" fg:w="348"/><text x="31.2654%" y="655.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (358 samples, 0.07%)</title><rect x="31.0822%" y="645" width="0.0688%" height="15" fill="rgb(223,129,24)" fg:x="161746" fg:w="358"/><text x="31.3322%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (191 samples, 0.04%)</title><rect x="31.1143%" y="629" width="0.0367%" height="15" fill="rgb(231,168,25)" fg:x="161913" fg:w="191"/><text x="31.3643%" y="639.50"></text></g><g><title>_raw_spin_lock (144 samples, 0.03%)</title><rect x="31.1234%" y="613" width="0.0277%" height="15" fill="rgb(224,39,20)" fg:x="161960" fg:w="144"/><text x="31.3734%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (161 samples, 0.03%)</title><rect x="31.1510%" y="645" width="0.0309%" height="15" fill="rgb(225,152,53)" fg:x="162104" fg:w="161"/><text x="31.4010%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (148 samples, 0.03%)</title><rect x="31.1535%" y="629" width="0.0284%" height="15" fill="rgb(252,17,24)" fg:x="162117" fg:w="148"/><text x="31.4035%" y="639.50"></text></g><g><title>mutex_lock (79 samples, 0.02%)</title><rect x="31.1900%" y="645" width="0.0152%" height="15" fill="rgb(250,114,30)" fg:x="162307" fg:w="79"/><text x="31.4400%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,629 samples, 0.51%)</title><rect x="30.7090%" y="661" width="0.5052%" height="15" fill="rgb(229,5,4)" fg:x="159804" fg:w="2629"/><text x="30.9590%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (164 samples, 0.03%)</title><rect x="31.2142%" y="661" width="0.0315%" height="15" fill="rgb(225,176,49)" fg:x="162433" fg:w="164"/><text x="31.4642%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (109 samples, 0.02%)</title><rect x="31.2248%" y="645" width="0.0209%" height="15" fill="rgb(224,221,49)" fg:x="162488" fg:w="109"/><text x="31.4748%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (222 samples, 0.04%)</title><rect x="31.2583%" y="645" width="0.0427%" height="15" fill="rgb(253,169,27)" fg:x="162662" fg:w="222"/><text x="31.5083%" y="655.50"></text></g><g><title>_raw_spin_lock (174 samples, 0.03%)</title><rect x="31.2675%" y="629" width="0.0334%" height="15" fill="rgb(211,206,16)" fg:x="162710" fg:w="174"/><text x="31.5175%" y="639.50"></text></g><g><title>btrfs_release_path (462 samples, 0.09%)</title><rect x="31.2458%" y="661" width="0.0888%" height="15" fill="rgb(244,87,35)" fg:x="162597" fg:w="462"/><text x="31.4958%" y="671.50"></text></g><g><title>release_extent_buffer (175 samples, 0.03%)</title><rect x="31.3009%" y="645" width="0.0336%" height="15" fill="rgb(246,28,10)" fg:x="162884" fg:w="175"/><text x="31.5509%" y="655.50"></text></g><g><title>btrfs_set_16 (64 samples, 0.01%)</title><rect x="31.3345%" y="661" width="0.0123%" height="15" fill="rgb(229,12,44)" fg:x="163059" fg:w="64"/><text x="31.5845%" y="671.50"></text></g><g><title>crc32c (141 samples, 0.03%)</title><rect x="31.3578%" y="661" width="0.0271%" height="15" fill="rgb(210,145,37)" fg:x="163180" fg:w="141"/><text x="31.6078%" y="671.50"></text></g><g><title>crypto_shash_update (124 samples, 0.02%)</title><rect x="31.3611%" y="645" width="0.0238%" height="15" fill="rgb(227,112,52)" fg:x="163197" fg:w="124"/><text x="31.6111%" y="655.50"></text></g><g><title>btrfs_get_32 (91 samples, 0.02%)</title><rect x="31.3924%" y="645" width="0.0175%" height="15" fill="rgb(238,155,34)" fg:x="163360" fg:w="91"/><text x="31.6424%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (77 samples, 0.01%)</title><rect x="31.4758%" y="597" width="0.0148%" height="15" fill="rgb(239,226,36)" fg:x="163794" fg:w="77"/><text x="31.7258%" y="607.50"></text></g><g><title>_raw_read_lock (55 samples, 0.01%)</title><rect x="31.4800%" y="581" width="0.0106%" height="15" fill="rgb(230,16,23)" fg:x="163816" fg:w="55"/><text x="31.7300%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (166 samples, 0.03%)</title><rect x="31.4733%" y="613" width="0.0319%" height="15" fill="rgb(236,171,36)" fg:x="163781" fg:w="166"/><text x="31.7233%" y="623.50"></text></g><g><title>btrfs_root_node (76 samples, 0.01%)</title><rect x="31.4906%" y="597" width="0.0146%" height="15" fill="rgb(221,22,14)" fg:x="163871" fg:w="76"/><text x="31.7406%" y="607.50"></text></g><g><title>__btrfs_tree_lock (132 samples, 0.03%)</title><rect x="31.5052%" y="613" width="0.0254%" height="15" fill="rgb(242,43,11)" fg:x="163947" fg:w="132"/><text x="31.7552%" y="623.50"></text></g><g><title>schedule (110 samples, 0.02%)</title><rect x="31.5094%" y="597" width="0.0211%" height="15" fill="rgb(232,69,23)" fg:x="163969" fg:w="110"/><text x="31.7594%" y="607.50"></text></g><g><title>__schedule (105 samples, 0.02%)</title><rect x="31.5104%" y="581" width="0.0202%" height="15" fill="rgb(216,180,54)" fg:x="163974" fg:w="105"/><text x="31.7604%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (176 samples, 0.03%)</title><rect x="31.5357%" y="613" width="0.0338%" height="15" fill="rgb(216,5,24)" fg:x="164106" fg:w="176"/><text x="31.7857%" y="623.50"></text></g><g><title>leaf_space_used (163 samples, 0.03%)</title><rect x="31.5382%" y="597" width="0.0313%" height="15" fill="rgb(225,89,9)" fg:x="164119" fg:w="163"/><text x="31.7882%" y="607.50"></text></g><g><title>btrfs_get_32 (114 samples, 0.02%)</title><rect x="31.5477%" y="581" width="0.0219%" height="15" fill="rgb(243,75,33)" fg:x="164168" fg:w="114"/><text x="31.7977%" y="591.50"></text></g><g><title>_raw_write_lock (87 samples, 0.02%)</title><rect x="31.5778%" y="597" width="0.0167%" height="15" fill="rgb(247,141,45)" fg:x="164325" fg:w="87"/><text x="31.8278%" y="607.50"></text></g><g><title>btrfs_try_tree_write_lock (181 samples, 0.03%)</title><rect x="31.5723%" y="613" width="0.0348%" height="15" fill="rgb(232,177,36)" fg:x="164296" fg:w="181"/><text x="31.8223%" y="623.50"></text></g><g><title>queued_write_lock_slowpath (65 samples, 0.01%)</title><rect x="31.5945%" y="597" width="0.0125%" height="15" fill="rgb(219,125,36)" fg:x="164412" fg:w="65"/><text x="31.8445%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,136 samples, 0.22%)</title><rect x="31.6070%" y="613" width="0.2183%" height="15" fill="rgb(227,94,9)" fg:x="164477" fg:w="1136"/><text x="31.8570%" y="623.50"></text></g><g><title>btrfs_buffer_uptodate (71 samples, 0.01%)</title><rect x="31.8459%" y="597" width="0.0136%" height="15" fill="rgb(240,34,52)" fg:x="165720" fg:w="71"/><text x="32.0959%" y="607.50"></text></g><g><title>btrfs_get_64 (148 samples, 0.03%)</title><rect x="31.8595%" y="597" width="0.0284%" height="15" fill="rgb(216,45,12)" fg:x="165791" fg:w="148"/><text x="32.1095%" y="607.50"></text></g><g><title>__radix_tree_lookup (552 samples, 0.11%)</title><rect x="31.9406%" y="581" width="0.1061%" height="15" fill="rgb(246,21,19)" fg:x="166213" fg:w="552"/><text x="32.1906%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (291 samples, 0.06%)</title><rect x="32.0469%" y="581" width="0.0559%" height="15" fill="rgb(213,98,42)" fg:x="166766" fg:w="291"/><text x="32.2969%" y="591.50"></text></g><g><title>mark_page_accessed (196 samples, 0.04%)</title><rect x="32.0652%" y="565" width="0.0377%" height="15" fill="rgb(250,136,47)" fg:x="166861" fg:w="196"/><text x="32.3152%" y="575.50"></text></g><g><title>find_extent_buffer (1,064 samples, 0.20%)</title><rect x="31.8997%" y="597" width="0.2045%" height="15" fill="rgb(251,124,27)" fg:x="166000" fg:w="1064"/><text x="32.1497%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (1,578 samples, 0.30%)</title><rect x="31.8253%" y="613" width="0.3032%" height="15" fill="rgb(229,180,14)" fg:x="165613" fg:w="1578"/><text x="32.0753%" y="623.50"></text></g><g><title>read_extent_buffer (127 samples, 0.02%)</title><rect x="32.1042%" y="597" width="0.0244%" height="15" fill="rgb(245,216,25)" fg:x="167064" fg:w="127"/><text x="32.3542%" y="607.50"></text></g><g><title>alloc_tree_block_no_bg_flush (166 samples, 0.03%)</title><rect x="32.1299%" y="597" width="0.0319%" height="15" fill="rgb(251,43,5)" fg:x="167198" fg:w="166"/><text x="32.3799%" y="607.50"></text></g><g><title>btrfs_alloc_tree_block (165 samples, 0.03%)</title><rect x="32.1301%" y="581" width="0.0317%" height="15" fill="rgb(250,128,24)" fg:x="167199" fg:w="165"/><text x="32.3801%" y="591.50"></text></g><g><title>copy_for_split (121 samples, 0.02%)</title><rect x="32.1647%" y="597" width="0.0233%" height="15" fill="rgb(217,117,27)" fg:x="167379" fg:w="121"/><text x="32.4147%" y="607.50"></text></g><g><title>btrfs_get_token_32 (108 samples, 0.02%)</title><rect x="32.2049%" y="565" width="0.0208%" height="15" fill="rgb(245,147,4)" fg:x="167588" fg:w="108"/><text x="32.4549%" y="575.50"></text></g><g><title>btrfs_set_token_32 (142 samples, 0.03%)</title><rect x="32.2266%" y="565" width="0.0273%" height="15" fill="rgb(242,201,35)" fg:x="167701" fg:w="142"/><text x="32.4766%" y="575.50"></text></g><g><title>memmove_extent_buffer (79 samples, 0.02%)</title><rect x="32.2641%" y="565" width="0.0152%" height="15" fill="rgb(218,181,1)" fg:x="167896" fg:w="79"/><text x="32.5141%" y="575.50"></text></g><g><title>__push_leaf_left (464 samples, 0.09%)</title><rect x="32.1908%" y="581" width="0.0892%" height="15" fill="rgb(222,6,29)" fg:x="167515" fg:w="464"/><text x="32.4408%" y="591.50"></text></g><g><title>push_leaf_left (521 samples, 0.10%)</title><rect x="32.1881%" y="597" width="0.1001%" height="15" fill="rgb(208,186,3)" fg:x="167501" fg:w="521"/><text x="32.4381%" y="607.50"></text></g><g><title>btrfs_get_token_32 (95 samples, 0.02%)</title><rect x="32.3063%" y="565" width="0.0183%" height="15" fill="rgb(216,36,26)" fg:x="168116" fg:w="95"/><text x="32.5563%" y="575.50"></text></g><g><title>btrfs_set_token_32 (112 samples, 0.02%)</title><rect x="32.3255%" y="565" width="0.0215%" height="15" fill="rgb(248,201,23)" fg:x="168216" fg:w="112"/><text x="32.5755%" y="575.50"></text></g><g><title>__push_leaf_right (389 samples, 0.07%)</title><rect x="32.2923%" y="581" width="0.0748%" height="15" fill="rgb(251,170,31)" fg:x="168043" fg:w="389"/><text x="32.5423%" y="591.50"></text></g><g><title>btrfs_read_node_slot (55 samples, 0.01%)</title><rect x="32.3715%" y="581" width="0.0106%" height="15" fill="rgb(207,110,25)" fg:x="168455" fg:w="55"/><text x="32.6215%" y="591.50"></text></g><g><title>push_leaf_right (496 samples, 0.10%)</title><rect x="32.2883%" y="597" width="0.0953%" height="15" fill="rgb(250,54,15)" fg:x="168022" fg:w="496"/><text x="32.5383%" y="607.50"></text></g><g><title>split_leaf (1,330 samples, 0.26%)</title><rect x="32.1286%" y="613" width="0.2556%" height="15" fill="rgb(227,68,33)" fg:x="167191" fg:w="1330"/><text x="32.3786%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (61 samples, 0.01%)</title><rect x="32.4220%" y="597" width="0.0117%" height="15" fill="rgb(238,34,41)" fg:x="168718" fg:w="61"/><text x="32.6720%" y="607.50"></text></g><g><title>btrfs_search_slot (5,314 samples, 1.02%)</title><rect x="31.4158%" y="629" width="1.0212%" height="15" fill="rgb(220,11,15)" fg:x="163482" fg:w="5314"/><text x="31.6658%" y="639.50"></text></g><g><title>unlock_up (275 samples, 0.05%)</title><rect x="32.3842%" y="613" width="0.0528%" height="15" fill="rgb(246,111,35)" fg:x="168521" fg:w="275"/><text x="32.6342%" y="623.50"></text></g><g><title>btrfs_get_32 (105 samples, 0.02%)</title><rect x="32.5919%" y="613" width="0.0202%" height="15" fill="rgb(209,88,53)" fg:x="169602" fg:w="105"/><text x="32.8419%" y="623.50"></text></g><g><title>btrfs_get_token_32 (3,055 samples, 0.59%)</title><rect x="32.6121%" y="613" width="0.5871%" height="15" fill="rgb(231,185,47)" fg:x="169707" fg:w="3055"/><text x="32.8621%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (615 samples, 0.12%)</title><rect x="33.0810%" y="597" width="0.1182%" height="15" fill="rgb(233,154,1)" fg:x="172147" fg:w="615"/><text x="33.3310%" y="607.50"></text></g><g><title>btrfs_leaf_free_space (241 samples, 0.05%)</title><rect x="33.1991%" y="613" width="0.0463%" height="15" fill="rgb(225,15,46)" fg:x="172762" fg:w="241"/><text x="33.4491%" y="623.50"></text></g><g><title>leaf_space_used (223 samples, 0.04%)</title><rect x="33.2026%" y="597" width="0.0429%" height="15" fill="rgb(211,135,41)" fg:x="172780" fg:w="223"/><text x="33.4526%" y="607.50"></text></g><g><title>btrfs_get_32 (158 samples, 0.03%)</title><rect x="33.2151%" y="581" width="0.0304%" height="15" fill="rgb(208,54,0)" fg:x="172845" fg:w="158"/><text x="33.4651%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (135 samples, 0.03%)</title><rect x="33.2454%" y="613" width="0.0259%" height="15" fill="rgb(244,136,14)" fg:x="173003" fg:w="135"/><text x="33.4954%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (94 samples, 0.02%)</title><rect x="33.2533%" y="597" width="0.0181%" height="15" fill="rgb(241,56,14)" fg:x="173044" fg:w="94"/><text x="33.5033%" y="607.50"></text></g><g><title>btrfs_set_token_32 (2,711 samples, 0.52%)</title><rect x="33.2714%" y="613" width="0.5210%" height="15" fill="rgb(205,80,24)" fg:x="173138" fg:w="2711"/><text x="33.5214%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (541 samples, 0.10%)</title><rect x="33.6884%" y="597" width="0.1040%" height="15" fill="rgb(220,57,4)" fg:x="175308" fg:w="541"/><text x="33.9384%" y="607.50"></text></g><g><title>copy_pages (135 samples, 0.03%)</title><rect x="33.8114%" y="597" width="0.0259%" height="15" fill="rgb(226,193,50)" fg:x="175948" fg:w="135"/><text x="34.0614%" y="607.50"></text></g><g><title>memcpy_extent_buffer (1,063 samples, 0.20%)</title><rect x="33.7999%" y="613" width="0.2043%" height="15" fill="rgb(231,168,22)" fg:x="175888" fg:w="1063"/><text x="34.0499%" y="623.50"></text></g><g><title>memmove (868 samples, 0.17%)</title><rect x="33.8373%" y="597" width="0.1668%" height="15" fill="rgb(254,215,14)" fg:x="176083" fg:w="868"/><text x="34.0873%" y="607.50"></text></g><g><title>copy_pages (109 samples, 0.02%)</title><rect x="34.0268%" y="597" width="0.0209%" height="15" fill="rgb(211,115,16)" fg:x="177069" fg:w="109"/><text x="34.2768%" y="607.50"></text></g><g><title>memmove_extent_buffer (904 samples, 0.17%)</title><rect x="34.0041%" y="613" width="0.1737%" height="15" fill="rgb(236,210,16)" fg:x="176951" fg:w="904"/><text x="34.2541%" y="623.50"></text></g><g><title>memmove (677 samples, 0.13%)</title><rect x="34.0477%" y="597" width="0.1301%" height="15" fill="rgb(221,94,12)" fg:x="177178" fg:w="677"/><text x="34.2977%" y="607.50"></text></g><g><title>insert_with_overflow (14,632 samples, 2.81%)</title><rect x="31.3849%" y="661" width="2.8118%" height="15" fill="rgb(235,218,49)" fg:x="163321" fg:w="14632"/><text x="31.6349%" y="671.50">in..</text></g><g><title>btrfs_insert_empty_items (14,502 samples, 2.79%)</title><rect x="31.4099%" y="645" width="2.7868%" height="15" fill="rgb(217,114,14)" fg:x="163451" fg:w="14502"/><text x="31.6599%" y="655.50">bt..</text></g><g><title>setup_items_for_insert (9,157 samples, 1.76%)</title><rect x="32.4370%" y="629" width="1.7597%" height="15" fill="rgb(216,145,22)" fg:x="168796" fg:w="9157"/><text x="32.6870%" y="639.50"></text></g><g><title>write_extent_buffer (98 samples, 0.02%)</title><rect x="34.1778%" y="613" width="0.0188%" height="15" fill="rgb(217,112,39)" fg:x="177855" fg:w="98"/><text x="34.4278%" y="623.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="34.2117%" y="645" width="0.0104%" height="15" fill="rgb(225,85,32)" fg:x="178031" fg:w="54"/><text x="34.4617%" y="655.50"></text></g><g><title>kmem_cache_alloc (161 samples, 0.03%)</title><rect x="34.1967%" y="661" width="0.0309%" height="15" fill="rgb(245,209,47)" fg:x="177953" fg:w="161"/><text x="34.4467%" y="671.50"></text></g><g><title>kmem_cache_free (86 samples, 0.02%)</title><rect x="34.2276%" y="661" width="0.0165%" height="15" fill="rgb(218,220,15)" fg:x="178114" fg:w="86"/><text x="34.4776%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (18,756 samples, 3.60%)</title><rect x="30.6856%" y="677" width="3.6043%" height="15" fill="rgb(222,202,31)" fg:x="159682" fg:w="18756"/><text x="30.9356%" y="687.50">btrf..</text></g><g><title>write_extent_buffer (238 samples, 0.05%)</title><rect x="34.2441%" y="661" width="0.0457%" height="15" fill="rgb(243,203,4)" fg:x="178200" fg:w="238"/><text x="34.4941%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (203 samples, 0.04%)</title><rect x="34.3122%" y="629" width="0.0390%" height="15" fill="rgb(237,92,17)" fg:x="178554" fg:w="203"/><text x="34.5622%" y="639.50"></text></g><g><title>_raw_spin_lock (152 samples, 0.03%)</title><rect x="34.3220%" y="613" width="0.0292%" height="15" fill="rgb(231,119,7)" fg:x="178605" fg:w="152"/><text x="34.5720%" y="623.50"></text></g><g><title>btrfs_free_path (417 samples, 0.08%)</title><rect x="34.2995%" y="661" width="0.0801%" height="15" fill="rgb(237,82,41)" fg:x="178488" fg:w="417"/><text x="34.5495%" y="671.50"></text></g><g><title>btrfs_release_path (410 samples, 0.08%)</title><rect x="34.3008%" y="645" width="0.0788%" height="15" fill="rgb(226,81,48)" fg:x="178495" fg:w="410"/><text x="34.5508%" y="655.50"></text></g><g><title>release_extent_buffer (148 samples, 0.03%)</title><rect x="34.3512%" y="629" width="0.0284%" height="15" fill="rgb(234,70,51)" fg:x="178757" fg:w="148"/><text x="34.6012%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (116 samples, 0.02%)</title><rect x="34.4651%" y="613" width="0.0223%" height="15" fill="rgb(251,86,4)" fg:x="179350" fg:w="116"/><text x="34.7151%" y="623.50"></text></g><g><title>_raw_read_lock (70 samples, 0.01%)</title><rect x="34.4740%" y="597" width="0.0135%" height="15" fill="rgb(244,144,28)" fg:x="179396" fg:w="70"/><text x="34.7240%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (236 samples, 0.05%)</title><rect x="34.4626%" y="629" width="0.0454%" height="15" fill="rgb(232,161,39)" fg:x="179337" fg:w="236"/><text x="34.7126%" y="639.50"></text></g><g><title>btrfs_root_node (107 samples, 0.02%)</title><rect x="34.4874%" y="613" width="0.0206%" height="15" fill="rgb(247,34,51)" fg:x="179466" fg:w="107"/><text x="34.7374%" y="623.50"></text></g><g><title>btrfs_bin_search (60 samples, 0.01%)</title><rect x="34.5082%" y="629" width="0.0115%" height="15" fill="rgb(225,132,2)" fg:x="179574" fg:w="60"/><text x="34.7582%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (187 samples, 0.04%)</title><rect x="34.5287%" y="629" width="0.0359%" height="15" fill="rgb(209,159,44)" fg:x="179681" fg:w="187"/><text x="34.7787%" y="639.50"></text></g><g><title>leaf_space_used (152 samples, 0.03%)</title><rect x="34.5355%" y="613" width="0.0292%" height="15" fill="rgb(251,214,1)" fg:x="179716" fg:w="152"/><text x="34.7855%" y="623.50"></text></g><g><title>btrfs_get_32 (103 samples, 0.02%)</title><rect x="34.5449%" y="597" width="0.0198%" height="15" fill="rgb(247,84,47)" fg:x="179765" fg:w="103"/><text x="34.7949%" y="607.50"></text></g><g><title>_raw_write_lock (86 samples, 0.02%)</title><rect x="34.5720%" y="613" width="0.0165%" height="15" fill="rgb(240,111,43)" fg:x="179906" fg:w="86"/><text x="34.8220%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (128 samples, 0.02%)</title><rect x="34.5656%" y="629" width="0.0246%" height="15" fill="rgb(215,214,35)" fg:x="179873" fg:w="128"/><text x="34.8156%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,464 samples, 0.28%)</title><rect x="34.5906%" y="629" width="0.2813%" height="15" fill="rgb(248,207,23)" fg:x="180003" fg:w="1464"/><text x="34.8406%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (180 samples, 0.03%)</title><rect x="34.9037%" y="613" width="0.0346%" height="15" fill="rgb(214,186,4)" fg:x="181632" fg:w="180"/><text x="35.1537%" y="623.50"></text></g><g><title>verify_parent_transid (137 samples, 0.03%)</title><rect x="34.9119%" y="597" width="0.0263%" height="15" fill="rgb(220,133,22)" fg:x="181675" fg:w="137"/><text x="35.1619%" y="607.50"></text></g><g><title>btrfs_get_64 (160 samples, 0.03%)</title><rect x="34.9382%" y="613" width="0.0307%" height="15" fill="rgb(239,134,19)" fg:x="181812" fg:w="160"/><text x="35.1882%" y="623.50"></text></g><g><title>__radix_tree_lookup (821 samples, 0.16%)</title><rect x="35.0566%" y="597" width="0.1578%" height="15" fill="rgb(250,140,9)" fg:x="182428" fg:w="821"/><text x="35.3066%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (362 samples, 0.07%)</title><rect x="35.2144%" y="597" width="0.0696%" height="15" fill="rgb(225,59,14)" fg:x="183249" fg:w="362"/><text x="35.4644%" y="607.50"></text></g><g><title>mark_page_accessed (259 samples, 0.05%)</title><rect x="35.2342%" y="581" width="0.0498%" height="15" fill="rgb(214,152,51)" fg:x="183352" fg:w="259"/><text x="35.4842%" y="591.50"></text></g><g><title>find_extent_buffer (1,590 samples, 0.31%)</title><rect x="34.9799%" y="613" width="0.3055%" height="15" fill="rgb(251,227,43)" fg:x="182029" fg:w="1590"/><text x="35.2299%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (2,345 samples, 0.45%)</title><rect x="34.8719%" y="629" width="0.4506%" height="15" fill="rgb(241,96,17)" fg:x="181467" fg:w="2345"/><text x="35.1219%" y="639.50"></text></g><g><title>read_extent_buffer (193 samples, 0.04%)</title><rect x="35.2855%" y="613" width="0.0371%" height="15" fill="rgb(234,198,43)" fg:x="183619" fg:w="193"/><text x="35.5355%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (64 samples, 0.01%)</title><rect x="35.3606%" y="613" width="0.0123%" height="15" fill="rgb(220,108,29)" fg:x="184010" fg:w="64"/><text x="35.6106%" y="623.50"></text></g><g><title>btrfs_search_slot (5,150 samples, 0.99%)</title><rect x="34.3898%" y="645" width="0.9897%" height="15" fill="rgb(226,163,33)" fg:x="178958" fg:w="5150"/><text x="34.6398%" y="655.50"></text></g><g><title>unlock_up (294 samples, 0.06%)</title><rect x="35.3230%" y="629" width="0.0565%" height="15" fill="rgb(205,194,45)" fg:x="183814" fg:w="294"/><text x="35.5730%" y="639.50"></text></g><g><title>btrfs_get_32 (117 samples, 0.02%)</title><rect x="35.4903%" y="629" width="0.0225%" height="15" fill="rgb(206,143,44)" fg:x="184685" fg:w="117"/><text x="35.7403%" y="639.50"></text></g><g><title>btrfs_get_token_32 (1,235 samples, 0.24%)</title><rect x="35.5128%" y="629" width="0.2373%" height="15" fill="rgb(236,136,36)" fg:x="184802" fg:w="1235"/><text x="35.7628%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (229 samples, 0.04%)</title><rect x="35.7061%" y="613" width="0.0440%" height="15" fill="rgb(249,172,42)" fg:x="185808" fg:w="229"/><text x="35.9561%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (242 samples, 0.05%)</title><rect x="35.7502%" y="629" width="0.0465%" height="15" fill="rgb(216,139,23)" fg:x="186037" fg:w="242"/><text x="36.0002%" y="639.50"></text></g><g><title>leaf_space_used (202 samples, 0.04%)</title><rect x="35.7578%" y="613" width="0.0388%" height="15" fill="rgb(207,166,20)" fg:x="186077" fg:w="202"/><text x="36.0078%" y="623.50"></text></g><g><title>btrfs_get_32 (143 samples, 0.03%)</title><rect x="35.7692%" y="597" width="0.0275%" height="15" fill="rgb(210,209,22)" fg:x="186136" fg:w="143"/><text x="36.0192%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (254 samples, 0.05%)</title><rect x="35.7967%" y="629" width="0.0488%" height="15" fill="rgb(232,118,20)" fg:x="186279" fg:w="254"/><text x="36.0467%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (95 samples, 0.02%)</title><rect x="35.8272%" y="613" width="0.0183%" height="15" fill="rgb(238,113,42)" fg:x="186438" fg:w="95"/><text x="36.0772%" y="623.50"></text></g><g><title>btrfs_set_token_32 (1,103 samples, 0.21%)</title><rect x="35.8455%" y="629" width="0.2120%" height="15" fill="rgb(231,42,5)" fg:x="186533" fg:w="1103"/><text x="36.0955%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (240 samples, 0.05%)</title><rect x="36.0113%" y="613" width="0.0461%" height="15" fill="rgb(243,166,24)" fg:x="187396" fg:w="240"/><text x="36.2613%" y="623.50"></text></g><g><title>copy_pages (143 samples, 0.03%)</title><rect x="36.0818%" y="613" width="0.0275%" height="15" fill="rgb(237,226,12)" fg:x="187763" fg:w="143"/><text x="36.3318%" y="623.50"></text></g><g><title>memcpy_extent_buffer (1,518 samples, 0.29%)</title><rect x="36.0663%" y="629" width="0.2917%" height="15" fill="rgb(229,133,24)" fg:x="187682" fg:w="1518"/><text x="36.3163%" y="639.50"></text></g><g><title>memmove (1,294 samples, 0.25%)</title><rect x="36.1093%" y="613" width="0.2487%" height="15" fill="rgb(238,33,43)" fg:x="187906" fg:w="1294"/><text x="36.3593%" y="623.50"></text></g><g><title>copy_pages (58 samples, 0.01%)</title><rect x="36.3849%" y="613" width="0.0111%" height="15" fill="rgb(227,59,38)" fg:x="189340" fg:w="58"/><text x="36.6349%" y="623.50"></text></g><g><title>memmove_extent_buffer (561 samples, 0.11%)</title><rect x="36.3580%" y="629" width="0.1078%" height="15" fill="rgb(230,97,0)" fg:x="189200" fg:w="561"/><text x="36.6080%" y="639.50"></text></g><g><title>memmove (363 samples, 0.07%)</title><rect x="36.3960%" y="613" width="0.0698%" height="15" fill="rgb(250,173,50)" fg:x="189398" fg:w="363"/><text x="36.6460%" y="623.50"></text></g><g><title>btrfs_insert_empty_items (10,949 samples, 2.10%)</title><rect x="34.3837%" y="661" width="2.1040%" height="15" fill="rgb(240,15,50)" fg:x="178926" fg:w="10949"/><text x="34.6337%" y="671.50">b..</text></g><g><title>setup_items_for_insert (5,767 samples, 1.11%)</title><rect x="35.3795%" y="645" width="1.1082%" height="15" fill="rgb(221,93,22)" fg:x="184108" fg:w="5767"/><text x="35.6295%" y="655.50"></text></g><g><title>write_extent_buffer (114 samples, 0.02%)</title><rect x="36.4658%" y="629" width="0.0219%" height="15" fill="rgb(245,180,53)" fg:x="189761" fg:w="114"/><text x="36.7158%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (162 samples, 0.03%)</title><rect x="36.4877%" y="661" width="0.0311%" height="15" fill="rgb(231,88,51)" fg:x="189875" fg:w="162"/><text x="36.7377%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (103 samples, 0.02%)</title><rect x="36.4990%" y="645" width="0.0198%" height="15" fill="rgb(240,58,21)" fg:x="189934" fg:w="103"/><text x="36.7490%" y="655.50"></text></g><g><title>btrfs_set_64 (62 samples, 0.01%)</title><rect x="36.5288%" y="661" width="0.0119%" height="15" fill="rgb(237,21,10)" fg:x="190089" fg:w="62"/><text x="36.7788%" y="671.50"></text></g><g><title>memset_erms (66 samples, 0.01%)</title><rect x="36.5592%" y="645" width="0.0127%" height="15" fill="rgb(218,43,11)" fg:x="190247" fg:w="66"/><text x="36.8092%" y="655.50"></text></g><g><title>kmem_cache_alloc (193 samples, 0.04%)</title><rect x="36.5407%" y="661" width="0.0371%" height="15" fill="rgb(218,221,29)" fg:x="190151" fg:w="193"/><text x="36.7907%" y="671.50"></text></g><g><title>kmem_cache_free (119 samples, 0.02%)</title><rect x="36.5778%" y="661" width="0.0229%" height="15" fill="rgb(214,118,42)" fg:x="190344" fg:w="119"/><text x="36.8278%" y="671.50"></text></g><g><title>btrfs_insert_inode_ref (12,186 samples, 2.34%)</title><rect x="34.2899%" y="677" width="2.3417%" height="15" fill="rgb(251,200,26)" fg:x="178438" fg:w="12186"/><text x="34.5399%" y="687.50">b..</text></g><g><title>write_extent_buffer (161 samples, 0.03%)</title><rect x="36.6007%" y="661" width="0.0309%" height="15" fill="rgb(237,101,39)" fg:x="190463" fg:w="161"/><text x="36.8507%" y="671.50"></text></g><g><title>mutex_lock (57 samples, 0.01%)</title><rect x="36.6810%" y="629" width="0.0110%" height="15" fill="rgb(251,117,11)" fg:x="190881" fg:w="57"/><text x="36.9310%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (240 samples, 0.05%)</title><rect x="36.6551%" y="645" width="0.0461%" height="15" fill="rgb(216,223,23)" fg:x="190746" fg:w="240"/><text x="36.9051%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (86 samples, 0.02%)</title><rect x="36.7062%" y="645" width="0.0165%" height="15" fill="rgb(251,54,12)" fg:x="191012" fg:w="86"/><text x="36.9562%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (73 samples, 0.01%)</title><rect x="36.7087%" y="629" width="0.0140%" height="15" fill="rgb(254,176,54)" fg:x="191025" fg:w="73"/><text x="36.9587%" y="639.50"></text></g><g><title>inode_get_bytes (80 samples, 0.02%)</title><rect x="36.7310%" y="629" width="0.0154%" height="15" fill="rgb(210,32,8)" fg:x="191141" fg:w="80"/><text x="36.9810%" y="639.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="36.7354%" y="613" width="0.0110%" height="15" fill="rgb(235,52,38)" fg:x="191164" fg:w="57"/><text x="36.9854%" y="623.50"></text></g><g><title>fill_stack_inode_item (156 samples, 0.03%)</title><rect x="36.7227%" y="645" width="0.0300%" height="15" fill="rgb(231,4,44)" fg:x="191098" fg:w="156"/><text x="36.9727%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (657 samples, 0.13%)</title><rect x="36.6466%" y="661" width="0.1263%" height="15" fill="rgb(249,2,32)" fg:x="190702" fg:w="657"/><text x="36.8966%" y="671.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="36.7623%" y="645" width="0.0106%" height="15" fill="rgb(224,65,26)" fg:x="191304" fg:w="55"/><text x="37.0123%" y="655.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="36.7781%" y="645" width="0.0113%" height="15" fill="rgb(250,73,40)" fg:x="191386" fg:w="59"/><text x="37.0281%" y="655.50"></text></g><g><title>btrfs_update_inode (941 samples, 0.18%)</title><rect x="36.6316%" y="677" width="0.1808%" height="15" fill="rgb(253,177,16)" fg:x="190624" fg:w="941"/><text x="36.8816%" y="687.50"></text></g><g><title>btrfs_update_root_times (206 samples, 0.04%)</title><rect x="36.7729%" y="661" width="0.0396%" height="15" fill="rgb(217,32,34)" fg:x="191359" fg:w="206"/><text x="37.0229%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (120 samples, 0.02%)</title><rect x="36.7894%" y="645" width="0.0231%" height="15" fill="rgb(212,7,10)" fg:x="191445" fg:w="120"/><text x="37.0394%" y="655.50"></text></g><g><title>read_tsc (63 samples, 0.01%)</title><rect x="36.8003%" y="629" width="0.0121%" height="15" fill="rgb(245,89,8)" fg:x="191502" fg:w="63"/><text x="37.0503%" y="639.50"></text></g><g><title>btrfs_add_link (32,117 samples, 6.17%)</title><rect x="30.6527%" y="693" width="6.1718%" height="15" fill="rgb(237,16,53)" fg:x="159511" fg:w="32117"/><text x="30.9027%" y="703.50">btrfs_ad..</text></g><g><title>btrfs_balance_delayed_items (62 samples, 0.01%)</title><rect x="36.8290%" y="677" width="0.0119%" height="15" fill="rgb(250,204,30)" fg:x="191651" fg:w="62"/><text x="37.0790%" y="687.50"></text></g><g><title>enqueue_task_fair (59 samples, 0.01%)</title><rect x="36.8682%" y="613" width="0.0113%" height="15" fill="rgb(208,77,27)" fg:x="191855" fg:w="59"/><text x="37.1182%" y="623.50"></text></g><g><title>ttwu_do_activate (101 samples, 0.02%)</title><rect x="36.8668%" y="629" width="0.0194%" height="15" fill="rgb(250,204,28)" fg:x="191848" fg:w="101"/><text x="37.1168%" y="639.50"></text></g><g><title>btrfs_btree_balance_dirty (349 samples, 0.07%)</title><rect x="36.8246%" y="693" width="0.0671%" height="15" fill="rgb(244,63,21)" fg:x="191628" fg:w="349"/><text x="37.0746%" y="703.50"></text></g><g><title>queue_work_on (253 samples, 0.05%)</title><rect x="36.8430%" y="677" width="0.0486%" height="15" fill="rgb(236,85,44)" fg:x="191724" fg:w="253"/><text x="37.0930%" y="687.50"></text></g><g><title>__queue_work (242 samples, 0.05%)</title><rect x="36.8451%" y="661" width="0.0465%" height="15" fill="rgb(215,98,4)" fg:x="191735" fg:w="242"/><text x="37.0951%" y="671.50"></text></g><g><title>try_to_wake_up (186 samples, 0.04%)</title><rect x="36.8559%" y="645" width="0.0357%" height="15" fill="rgb(235,38,11)" fg:x="191791" fg:w="186"/><text x="37.1059%" y="655.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="36.9456%" y="597" width="0.0115%" height="15" fill="rgb(254,186,25)" fg:x="192258" fg:w="60"/><text x="37.1956%" y="607.50"></text></g><g><title>btrfs_iget (188 samples, 0.04%)</title><rect x="36.9372%" y="661" width="0.0361%" height="15" fill="rgb(225,55,31)" fg:x="192214" fg:w="188"/><text x="37.1872%" y="671.50"></text></g><g><title>iget5_locked (180 samples, 0.03%)</title><rect x="36.9387%" y="645" width="0.0346%" height="15" fill="rgb(211,15,21)" fg:x="192222" fg:w="180"/><text x="37.1887%" y="655.50"></text></g><g><title>ilookup5 (178 samples, 0.03%)</title><rect x="36.9391%" y="629" width="0.0342%" height="15" fill="rgb(215,187,41)" fg:x="192224" fg:w="178"/><text x="37.1891%" y="639.50"></text></g><g><title>ilookup5_nowait (163 samples, 0.03%)</title><rect x="36.9420%" y="613" width="0.0313%" height="15" fill="rgb(248,69,32)" fg:x="192239" fg:w="163"/><text x="37.1920%" y="623.50"></text></g><g><title>find_inode (84 samples, 0.02%)</title><rect x="36.9572%" y="597" width="0.0161%" height="15" fill="rgb(252,102,52)" fg:x="192318" fg:w="84"/><text x="37.2072%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (86 samples, 0.02%)</title><rect x="36.9948%" y="597" width="0.0165%" height="15" fill="rgb(253,140,32)" fg:x="192514" fg:w="86"/><text x="37.2448%" y="607.50"></text></g><g><title>__radix_tree_lookup (71 samples, 0.01%)</title><rect x="37.0254%" y="565" width="0.0136%" height="15" fill="rgb(216,56,42)" fg:x="192673" fg:w="71"/><text x="37.2754%" y="575.50"></text></g><g><title>find_extent_buffer (118 samples, 0.02%)</title><rect x="37.0217%" y="581" width="0.0227%" height="15" fill="rgb(216,184,14)" fg:x="192654" fg:w="118"/><text x="37.2717%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (183 samples, 0.04%)</title><rect x="37.0113%" y="597" width="0.0352%" height="15" fill="rgb(237,187,27)" fg:x="192600" fg:w="183"/><text x="37.2613%" y="607.50"></text></g><g><title>btrfs_search_slot (315 samples, 0.06%)</title><rect x="36.9879%" y="613" width="0.0605%" height="15" fill="rgb(219,65,3)" fg:x="192478" fg:w="315"/><text x="37.2379%" y="623.50"></text></g><g><title>btrfs_lookup_dir_item (329 samples, 0.06%)</title><rect x="36.9875%" y="629" width="0.0632%" height="15" fill="rgb(245,83,25)" fg:x="192476" fg:w="329"/><text x="37.2375%" y="639.50"></text></g><g><title>btrfs_release_path (57 samples, 0.01%)</title><rect x="37.0507%" y="629" width="0.0110%" height="15" fill="rgb(214,205,45)" fg:x="192805" fg:w="57"/><text x="37.3007%" y="639.50"></text></g><g><title>btrfs_check_ref_name_override (515 samples, 0.10%)</title><rect x="36.9821%" y="645" width="0.0990%" height="15" fill="rgb(241,20,18)" fg:x="192448" fg:w="515"/><text x="37.2321%" y="655.50"></text></g><g><title>btrfs_lookup_inode (71 samples, 0.01%)</title><rect x="37.0874%" y="613" width="0.0136%" height="15" fill="rgb(232,163,23)" fg:x="192996" fg:w="71"/><text x="37.3374%" y="623.50"></text></g><g><title>btrfs_search_slot (70 samples, 0.01%)</title><rect x="37.0876%" y="597" width="0.0135%" height="15" fill="rgb(214,5,46)" fg:x="192997" fg:w="70"/><text x="37.3376%" y="607.50"></text></g><g><title>__btrfs_update_delayed_inode (102 samples, 0.02%)</title><rect x="37.0849%" y="629" width="0.0196%" height="15" fill="rgb(229,78,17)" fg:x="192983" fg:w="102"/><text x="37.3349%" y="639.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (137 samples, 0.03%)</title><rect x="37.0811%" y="645" width="0.0263%" height="15" fill="rgb(248,89,10)" fg:x="192963" fg:w="137"/><text x="37.3311%" y="655.50"></text></g><g><title>btrfs_lookup_inode (56 samples, 0.01%)</title><rect x="37.1159%" y="613" width="0.0108%" height="15" fill="rgb(248,54,15)" fg:x="193144" fg:w="56"/><text x="37.3659%" y="623.50"></text></g><g><title>btrfs_search_slot (55 samples, 0.01%)</title><rect x="37.1161%" y="597" width="0.0106%" height="15" fill="rgb(223,116,6)" fg:x="193145" fg:w="55"/><text x="37.3661%" y="607.50"></text></g><g><title>__btrfs_update_delayed_inode (71 samples, 0.01%)</title><rect x="37.1151%" y="629" width="0.0136%" height="15" fill="rgb(205,125,38)" fg:x="193140" fg:w="71"/><text x="37.3651%" y="639.50"></text></g><g><title>btrfs_search_slot (82 samples, 0.02%)</title><rect x="37.1347%" y="597" width="0.0158%" height="15" fill="rgb(251,78,38)" fg:x="193242" fg:w="82"/><text x="37.3847%" y="607.50"></text></g><g><title>btrfs_insert_empty_items (187 samples, 0.04%)</title><rect x="37.1345%" y="613" width="0.0359%" height="15" fill="rgb(253,78,28)" fg:x="193241" fg:w="187"/><text x="37.3845%" y="623.50"></text></g><g><title>setup_items_for_insert (104 samples, 0.02%)</title><rect x="37.1505%" y="597" width="0.0200%" height="15" fill="rgb(209,120,3)" fg:x="193324" fg:w="104"/><text x="37.4005%" y="607.50"></text></g><g><title>btrfs_insert_delayed_items (212 samples, 0.04%)</title><rect x="37.1326%" y="629" width="0.0407%" height="15" fill="rgb(238,229,9)" fg:x="193231" fg:w="212"/><text x="37.3826%" y="639.50"></text></g><g><title>btrfs_commit_inode_delayed_items (365 samples, 0.07%)</title><rect x="37.1074%" y="645" width="0.0701%" height="15" fill="rgb(253,159,18)" fg:x="193100" fg:w="365"/><text x="37.3574%" y="655.50"></text></g><g><title>btrfs_release_path (86 samples, 0.02%)</title><rect x="37.1904%" y="645" width="0.0165%" height="15" fill="rgb(244,42,34)" fg:x="193532" fg:w="86"/><text x="37.4404%" y="655.50"></text></g><g><title>__radix_tree_lookup (80 samples, 0.02%)</title><rect x="37.2410%" y="565" width="0.0154%" height="15" fill="rgb(224,8,7)" fg:x="193795" fg:w="80"/><text x="37.4910%" y="575.50"></text></g><g><title>alloc_extent_buffer (163 samples, 0.03%)</title><rect x="37.2343%" y="597" width="0.0313%" height="15" fill="rgb(210,201,45)" fg:x="193760" fg:w="163"/><text x="37.4843%" y="607.50"></text></g><g><title>find_extent_buffer (155 samples, 0.03%)</title><rect x="37.2358%" y="581" width="0.0298%" height="15" fill="rgb(252,185,21)" fg:x="193768" fg:w="155"/><text x="37.4858%" y="591.50"></text></g><g><title>btrfs_read_node_slot (287 samples, 0.06%)</title><rect x="37.2212%" y="629" width="0.0552%" height="15" fill="rgb(223,131,1)" fg:x="193692" fg:w="287"/><text x="37.4712%" y="639.50"></text></g><g><title>read_tree_block (224 samples, 0.04%)</title><rect x="37.2333%" y="613" width="0.0430%" height="15" fill="rgb(245,141,16)" fg:x="193755" fg:w="224"/><text x="37.4833%" y="623.50"></text></g><g><title>btree_read_extent_buffer_pages (56 samples, 0.01%)</title><rect x="37.2656%" y="597" width="0.0108%" height="15" fill="rgb(229,55,45)" fg:x="193923" fg:w="56"/><text x="37.5156%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (76 samples, 0.01%)</title><rect x="37.2765%" y="629" width="0.0146%" height="15" fill="rgb(208,92,15)" fg:x="193980" fg:w="76"/><text x="37.5265%" y="639.50"></text></g><g><title>btrfs_set_lock_blocking_read (54 samples, 0.01%)</title><rect x="37.2808%" y="613" width="0.0104%" height="15" fill="rgb(234,185,47)" fg:x="194002" fg:w="54"/><text x="37.5308%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (196 samples, 0.04%)</title><rect x="37.2946%" y="629" width="0.0377%" height="15" fill="rgb(253,104,50)" fg:x="194074" fg:w="196"/><text x="37.5446%" y="639.50"></text></g><g><title>btrfs_search_forward (723 samples, 0.14%)</title><rect x="37.2070%" y="645" width="0.1389%" height="15" fill="rgb(205,70,7)" fg:x="193618" fg:w="723"/><text x="37.4570%" y="655.50"></text></g><g><title>btrfs_search_slot (66 samples, 0.01%)</title><rect x="37.3459%" y="645" width="0.0127%" height="15" fill="rgb(240,178,43)" fg:x="194341" fg:w="66"/><text x="37.5959%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (92 samples, 0.02%)</title><rect x="37.4045%" y="597" width="0.0177%" height="15" fill="rgb(214,112,2)" fg:x="194646" fg:w="92"/><text x="37.6545%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (75 samples, 0.01%)</title><rect x="37.4222%" y="597" width="0.0144%" height="15" fill="rgb(206,46,17)" fg:x="194738" fg:w="75"/><text x="37.6722%" y="607.50"></text></g><g><title>split_leaf (86 samples, 0.02%)</title><rect x="37.4378%" y="597" width="0.0165%" height="15" fill="rgb(225,220,16)" fg:x="194819" fg:w="86"/><text x="37.6878%" y="607.50"></text></g><g><title>btrfs_search_slot (412 samples, 0.08%)</title><rect x="37.3778%" y="613" width="0.0792%" height="15" fill="rgb(238,65,40)" fg:x="194507" fg:w="412"/><text x="37.6278%" y="623.50"></text></g><g><title>btrfs_get_token_32 (365 samples, 0.07%)</title><rect x="37.4860%" y="597" width="0.0701%" height="15" fill="rgb(230,151,21)" fg:x="195070" fg:w="365"/><text x="37.7360%" y="607.50"></text></g><g><title>check_setget_bounds.isra.0 (95 samples, 0.02%)</title><rect x="37.5379%" y="581" width="0.0183%" height="15" fill="rgb(218,58,49)" fg:x="195340" fg:w="95"/><text x="37.7879%" y="591.50"></text></g><g><title>btrfs_set_token_32 (412 samples, 0.08%)</title><rect x="37.5669%" y="597" width="0.0792%" height="15" fill="rgb(219,179,14)" fg:x="195491" fg:w="412"/><text x="37.8169%" y="607.50"></text></g><g><title>check_setget_bounds.isra.0 (73 samples, 0.01%)</title><rect x="37.6320%" y="581" width="0.0140%" height="15" fill="rgb(223,72,1)" fg:x="195830" fg:w="73"/><text x="37.8820%" y="591.50"></text></g><g><title>memcpy_extent_buffer (142 samples, 0.03%)</title><rect x="37.6491%" y="597" width="0.0273%" height="15" fill="rgb(238,126,10)" fg:x="195919" fg:w="142"/><text x="37.8991%" y="607.50"></text></g><g><title>memmove (89 samples, 0.02%)</title><rect x="37.6593%" y="581" width="0.0171%" height="15" fill="rgb(224,206,38)" fg:x="195972" fg:w="89"/><text x="37.9093%" y="591.50"></text></g><g><title>memmove_extent_buffer (106 samples, 0.02%)</title><rect x="37.6764%" y="597" width="0.0204%" height="15" fill="rgb(212,201,54)" fg:x="196061" fg:w="106"/><text x="37.9264%" y="607.50"></text></g><g><title>memmove (86 samples, 0.02%)</title><rect x="37.6803%" y="581" width="0.0165%" height="15" fill="rgb(218,154,48)" fg:x="196081" fg:w="86"/><text x="37.9303%" y="591.50"></text></g><g><title>btrfs_insert_empty_items (1,690 samples, 0.32%)</title><rect x="37.3772%" y="629" width="0.3248%" height="15" fill="rgb(232,93,24)" fg:x="194504" fg:w="1690"/><text x="37.6272%" y="639.50"></text></g><g><title>setup_items_for_insert (1,275 samples, 0.25%)</title><rect x="37.4570%" y="613" width="0.2450%" height="15" fill="rgb(245,30,21)" fg:x="194919" fg:w="1275"/><text x="37.7070%" y="623.50"></text></g><g><title>btrfs_set_token_64 (56 samples, 0.01%)</title><rect x="37.7299%" y="613" width="0.0108%" height="15" fill="rgb(242,148,29)" fg:x="196339" fg:w="56"/><text x="37.9799%" y="623.50"></text></g><g><title>fill_inode_item (124 samples, 0.02%)</title><rect x="37.7193%" y="629" width="0.0238%" height="15" fill="rgb(244,153,54)" fg:x="196284" fg:w="124"/><text x="37.9693%" y="639.50"></text></g><g><title>copy_items.isra.0 (2,047 samples, 0.39%)</title><rect x="37.3586%" y="645" width="0.3934%" height="15" fill="rgb(252,87,22)" fg:x="194407" fg:w="2047"/><text x="37.6086%" y="655.50"></text></g><g><title>btrfs_get_token_32 (339 samples, 0.07%)</title><rect x="37.7858%" y="613" width="0.0651%" height="15" fill="rgb(210,51,29)" fg:x="196630" fg:w="339"/><text x="38.0358%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (56 samples, 0.01%)</title><rect x="37.8402%" y="597" width="0.0108%" height="15" fill="rgb(242,136,47)" fg:x="196913" fg:w="56"/><text x="38.0902%" y="607.50"></text></g><g><title>btrfs_set_token_32 (324 samples, 0.06%)</title><rect x="37.8538%" y="613" width="0.0623%" height="15" fill="rgb(238,68,4)" fg:x="196984" fg:w="324"/><text x="38.1038%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (63 samples, 0.01%)</title><rect x="37.9040%" y="597" width="0.0121%" height="15" fill="rgb(242,161,30)" fg:x="197245" fg:w="63"/><text x="38.1540%" y="607.50"></text></g><g><title>memmove_extent_buffer (304 samples, 0.06%)</title><rect x="37.9289%" y="613" width="0.0584%" height="15" fill="rgb(218,58,44)" fg:x="197375" fg:w="304"/><text x="38.1789%" y="623.50"></text></g><g><title>memmove (244 samples, 0.05%)</title><rect x="37.9405%" y="597" width="0.0469%" height="15" fill="rgb(252,125,32)" fg:x="197435" fg:w="244"/><text x="38.1905%" y="607.50"></text></g><g><title>btrfs_del_items (1,214 samples, 0.23%)</title><rect x="37.7545%" y="629" width="0.2333%" height="15" fill="rgb(219,178,0)" fg:x="196467" fg:w="1214"/><text x="38.0045%" y="639.50"></text></g><g><title>btrfs_release_path (64 samples, 0.01%)</title><rect x="37.9877%" y="629" width="0.0123%" height="15" fill="rgb(213,152,7)" fg:x="197681" fg:w="64"/><text x="38.2377%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (126 samples, 0.02%)</title><rect x="38.0258%" y="613" width="0.0242%" height="15" fill="rgb(249,109,34)" fg:x="197879" fg:w="126"/><text x="38.2758%" y="623.50"></text></g><g><title>find_extent_buffer (64 samples, 0.01%)</title><rect x="38.0558%" y="597" width="0.0123%" height="15" fill="rgb(232,96,21)" fg:x="198035" fg:w="64"/><text x="38.3058%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (99 samples, 0.02%)</title><rect x="38.0500%" y="613" width="0.0190%" height="15" fill="rgb(228,27,39)" fg:x="198005" fg:w="99"/><text x="38.3000%" y="623.50"></text></g><g><title>btrfs_search_slot (385 samples, 0.07%)</title><rect x="38.0000%" y="629" width="0.0740%" height="15" fill="rgb(211,182,52)" fg:x="197745" fg:w="385"/><text x="38.2500%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (78 samples, 0.01%)</title><rect x="38.0740%" y="629" width="0.0150%" height="15" fill="rgb(234,178,38)" fg:x="198130" fg:w="78"/><text x="38.3240%" y="639.50"></text></g><g><title>drop_objectid_items (1,776 samples, 0.34%)</title><rect x="37.7520%" y="645" width="0.3413%" height="15" fill="rgb(221,111,3)" fg:x="196454" fg:w="1776"/><text x="38.0020%" y="655.50"></text></g><g><title>btrfs_read_node_slot (61 samples, 0.01%)</title><rect x="38.1716%" y="597" width="0.0117%" height="15" fill="rgb(228,175,21)" fg:x="198638" fg:w="61"/><text x="38.4216%" y="607.50"></text></g><g><title>btrfs_search_forward (159 samples, 0.03%)</title><rect x="38.1676%" y="613" width="0.0306%" height="15" fill="rgb(228,174,43)" fg:x="198617" fg:w="159"/><text x="38.4176%" y="623.50"></text></g><g><title>btrfs_search_slot (120 samples, 0.02%)</title><rect x="38.1982%" y="613" width="0.0231%" height="15" fill="rgb(211,191,0)" fg:x="198776" fg:w="120"/><text x="38.4482%" y="623.50"></text></g><g><title>btrfs_search_slot (85 samples, 0.02%)</title><rect x="38.2228%" y="581" width="0.0163%" height="15" fill="rgb(253,117,3)" fg:x="198904" fg:w="85"/><text x="38.4728%" y="591.50"></text></g><g><title>btrfs_get_token_32 (131 samples, 0.03%)</title><rect x="38.2476%" y="565" width="0.0252%" height="15" fill="rgb(241,127,19)" fg:x="199033" fg:w="131"/><text x="38.4976%" y="575.50"></text></g><g><title>btrfs_set_token_32 (110 samples, 0.02%)</title><rect x="38.2750%" y="565" width="0.0211%" height="15" fill="rgb(218,103,12)" fg:x="199176" fg:w="110"/><text x="38.5250%" y="575.50"></text></g><g><title>btrfs_insert_empty_items (447 samples, 0.09%)</title><rect x="38.2228%" y="597" width="0.0859%" height="15" fill="rgb(236,214,43)" fg:x="198904" fg:w="447"/><text x="38.4728%" y="607.50"></text></g><g><title>setup_items_for_insert (362 samples, 0.07%)</title><rect x="38.2391%" y="581" width="0.0696%" height="15" fill="rgb(244,144,19)" fg:x="198989" fg:w="362"/><text x="38.4891%" y="591.50"></text></g><g><title>insert_dir_log_key (471 samples, 0.09%)</title><rect x="38.2212%" y="613" width="0.0905%" height="15" fill="rgb(246,188,10)" fg:x="198896" fg:w="471"/><text x="38.4712%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (94 samples, 0.02%)</title><rect x="38.4049%" y="581" width="0.0181%" height="15" fill="rgb(212,193,33)" fg:x="199852" fg:w="94"/><text x="38.6549%" y="591.50"></text></g><g><title>memset_erms (144 samples, 0.03%)</title><rect x="38.4249%" y="581" width="0.0277%" height="15" fill="rgb(241,51,29)" fg:x="199956" fg:w="144"/><text x="38.6749%" y="591.50"></text></g><g><title>__kmalloc (685 samples, 0.13%)</title><rect x="38.3448%" y="597" width="0.1316%" height="15" fill="rgb(211,58,19)" fg:x="199539" fg:w="685"/><text x="38.5948%" y="607.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (124 samples, 0.02%)</title><rect x="38.4526%" y="581" width="0.0238%" height="15" fill="rgb(229,111,26)" fg:x="200100" fg:w="124"/><text x="38.7026%" y="591.50"></text></g><g><title>btrfs_get_32 (203 samples, 0.04%)</title><rect x="38.4764%" y="597" width="0.0390%" height="15" fill="rgb(213,115,40)" fg:x="200224" fg:w="203"/><text x="38.7264%" y="607.50"></text></g><g><title>btrfs_insert_empty_items (167 samples, 0.03%)</title><rect x="38.5154%" y="597" width="0.0321%" height="15" fill="rgb(209,56,44)" fg:x="200427" fg:w="167"/><text x="38.7654%" y="607.50"></text></g><g><title>setup_items_for_insert (120 samples, 0.02%)</title><rect x="38.5245%" y="581" width="0.0231%" height="15" fill="rgb(230,108,32)" fg:x="200474" fg:w="120"/><text x="38.7745%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (79 samples, 0.02%)</title><rect x="38.5610%" y="581" width="0.0152%" height="15" fill="rgb(216,165,31)" fg:x="200664" fg:w="79"/><text x="38.8110%" y="591.50"></text></g><g><title>free_extent_buffer.part.0 (196 samples, 0.04%)</title><rect x="38.5773%" y="581" width="0.0377%" height="15" fill="rgb(218,122,21)" fg:x="200749" fg:w="196"/><text x="38.8273%" y="591.50"></text></g><g><title>_raw_spin_lock (153 samples, 0.03%)</title><rect x="38.5856%" y="565" width="0.0294%" height="15" fill="rgb(223,224,47)" fg:x="200792" fg:w="153"/><text x="38.8356%" y="575.50"></text></g><g><title>btrfs_release_path (530 samples, 0.10%)</title><rect x="38.5477%" y="597" width="0.1018%" height="15" fill="rgb(238,102,44)" fg:x="200595" fg:w="530"/><text x="38.7977%" y="607.50"></text></g><g><title>release_extent_buffer (180 samples, 0.03%)</title><rect x="38.6150%" y="581" width="0.0346%" height="15" fill="rgb(236,46,40)" fg:x="200945" fg:w="180"/><text x="38.8650%" y="591.50"></text></g><g><title>_raw_read_lock (79 samples, 0.02%)</title><rect x="38.7030%" y="549" width="0.0152%" height="15" fill="rgb(247,202,50)" fg:x="201403" fg:w="79"/><text x="38.9530%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (107 samples, 0.02%)</title><rect x="38.6978%" y="565" width="0.0206%" height="15" fill="rgb(209,99,20)" fg:x="201376" fg:w="107"/><text x="38.9478%" y="575.50"></text></g><g><title>__btrfs_read_lock_root_node (229 samples, 0.04%)</title><rect x="38.6940%" y="581" width="0.0440%" height="15" fill="rgb(252,27,34)" fg:x="201356" fg:w="229"/><text x="38.9440%" y="591.50"></text></g><g><title>btrfs_root_node (102 samples, 0.02%)</title><rect x="38.7184%" y="565" width="0.0196%" height="15" fill="rgb(215,206,23)" fg:x="201483" fg:w="102"/><text x="38.9684%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (226 samples, 0.04%)</title><rect x="38.7407%" y="581" width="0.0434%" height="15" fill="rgb(212,135,36)" fg:x="201599" fg:w="226"/><text x="38.9907%" y="591.50"></text></g><g><title>btrfs_set_lock_blocking_read (155 samples, 0.03%)</title><rect x="38.7543%" y="565" width="0.0298%" height="15" fill="rgb(240,189,1)" fg:x="201670" fg:w="155"/><text x="39.0043%" y="575.50"></text></g><g><title>btrfs_tree_read_lock_atomic (94 samples, 0.02%)</title><rect x="38.7841%" y="581" width="0.0181%" height="15" fill="rgb(242,56,20)" fg:x="201825" fg:w="94"/><text x="39.0341%" y="591.50"></text></g><g><title>_raw_read_lock (70 samples, 0.01%)</title><rect x="38.7887%" y="565" width="0.0135%" height="15" fill="rgb(247,132,33)" fg:x="201849" fg:w="70"/><text x="39.0387%" y="575.50"></text></g><g><title>btrfs_tree_read_unlock (76 samples, 0.01%)</title><rect x="38.8021%" y="581" width="0.0146%" height="15" fill="rgb(208,149,11)" fg:x="201919" fg:w="76"/><text x="39.0521%" y="591.50"></text></g><g><title>generic_bin_search.constprop.0 (771 samples, 0.15%)</title><rect x="38.8168%" y="581" width="0.1482%" height="15" fill="rgb(211,33,11)" fg:x="201995" fg:w="771"/><text x="39.0668%" y="591.50"></text></g><g><title>btrfs_get_64 (92 samples, 0.02%)</title><rect x="38.9914%" y="565" width="0.0177%" height="15" fill="rgb(221,29,38)" fg:x="202904" fg:w="92"/><text x="39.2414%" y="575.50"></text></g><g><title>__radix_tree_lookup (254 samples, 0.05%)</title><rect x="39.0308%" y="549" width="0.0488%" height="15" fill="rgb(206,182,49)" fg:x="203109" fg:w="254"/><text x="39.2808%" y="559.50"></text></g><g><title>mark_extent_buffer_accessed (184 samples, 0.04%)</title><rect x="39.0796%" y="549" width="0.0354%" height="15" fill="rgb(216,140,1)" fg:x="203363" fg:w="184"/><text x="39.3296%" y="559.50"></text></g><g><title>mark_page_accessed (94 samples, 0.02%)</title><rect x="39.0969%" y="533" width="0.0181%" height="15" fill="rgb(232,57,40)" fg:x="203453" fg:w="94"/><text x="39.3469%" y="543.50"></text></g><g><title>find_extent_buffer (526 samples, 0.10%)</title><rect x="39.0156%" y="565" width="0.1011%" height="15" fill="rgb(224,186,18)" fg:x="203030" fg:w="526"/><text x="39.2656%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (902 samples, 0.17%)</title><rect x="38.9649%" y="581" width="0.1733%" height="15" fill="rgb(215,121,11)" fg:x="202766" fg:w="902"/><text x="39.2149%" y="591.50"></text></g><g><title>read_extent_buffer (112 samples, 0.02%)</title><rect x="39.1167%" y="565" width="0.0215%" height="15" fill="rgb(245,147,10)" fg:x="203556" fg:w="112"/><text x="39.3667%" y="575.50"></text></g><g><title>btrfs_search_slot (2,630 samples, 0.51%)</title><rect x="38.6496%" y="597" width="0.5054%" height="15" fill="rgb(238,153,13)" fg:x="201125" fg:w="2630"/><text x="38.8996%" y="607.50"></text></g><g><title>unlock_up (87 samples, 0.02%)</title><rect x="39.1382%" y="581" width="0.0167%" height="15" fill="rgb(233,108,0)" fg:x="203668" fg:w="87"/><text x="39.3882%" y="591.50"></text></g><g><title>kfree (552 samples, 0.11%)</title><rect x="39.1553%" y="597" width="0.1061%" height="15" fill="rgb(212,157,17)" fg:x="203757" fg:w="552"/><text x="39.4053%" y="607.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (104 samples, 0.02%)</title><rect x="39.2414%" y="581" width="0.0200%" height="15" fill="rgb(225,213,38)" fg:x="204205" fg:w="104"/><text x="39.4914%" y="591.50"></text></g><g><title>memcmp (335 samples, 0.06%)</title><rect x="39.2614%" y="597" width="0.0644%" height="15" fill="rgb(248,16,11)" fg:x="204309" fg:w="335"/><text x="39.5114%" y="607.50"></text></g><g><title>overwrite_item (5,630 samples, 1.08%)</title><rect x="38.3117%" y="613" width="1.0819%" height="15" fill="rgb(241,33,4)" fg:x="199367" fg:w="5630"/><text x="38.5617%" y="623.50"></text></g><g><title>read_extent_buffer (353 samples, 0.07%)</title><rect x="39.3258%" y="597" width="0.0678%" height="15" fill="rgb(222,26,43)" fg:x="204644" fg:w="353"/><text x="39.5758%" y="607.50"></text></g><g><title>log_directory_changes (6,899 samples, 1.33%)</title><rect x="38.1121%" y="645" width="1.3258%" height="15" fill="rgb(243,29,36)" fg:x="198328" fg:w="6899"/><text x="38.3621%" y="655.50"></text></g><g><title>log_dir_items (6,895 samples, 1.32%)</title><rect x="38.1128%" y="629" width="1.3250%" height="15" fill="rgb(241,9,27)" fg:x="198332" fg:w="6895"/><text x="38.3628%" y="639.50"></text></g><g><title>read_extent_buffer (230 samples, 0.04%)</title><rect x="39.3936%" y="613" width="0.0442%" height="15" fill="rgb(205,117,26)" fg:x="204997" fg:w="230"/><text x="39.6436%" y="623.50"></text></g><g><title>btrfs_log_inode (12,865 samples, 2.47%)</title><rect x="36.9733%" y="661" width="2.4722%" height="15" fill="rgb(209,80,39)" fg:x="192402" fg:w="12865"/><text x="37.2233%" y="671.50">bt..</text></g><g><title>free_extent_buffer.part.0 (93 samples, 0.02%)</title><rect x="39.4607%" y="645" width="0.0179%" height="15" fill="rgb(239,155,6)" fg:x="205346" fg:w="93"/><text x="39.7107%" y="655.50"></text></g><g><title>_raw_spin_lock (76 samples, 0.01%)</title><rect x="39.4640%" y="629" width="0.0146%" height="15" fill="rgb(212,104,12)" fg:x="205363" fg:w="76"/><text x="39.7140%" y="639.50"></text></g><g><title>btrfs_release_path (245 samples, 0.05%)</title><rect x="39.4497%" y="661" width="0.0471%" height="15" fill="rgb(234,204,3)" fg:x="205289" fg:w="245"/><text x="39.6997%" y="671.50"></text></g><g><title>release_extent_buffer (95 samples, 0.02%)</title><rect x="39.4786%" y="645" width="0.0183%" height="15" fill="rgb(251,218,7)" fg:x="205439" fg:w="95"/><text x="39.7286%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (90 samples, 0.02%)</title><rect x="39.5280%" y="645" width="0.0173%" height="15" fill="rgb(221,81,32)" fg:x="205696" fg:w="90"/><text x="39.7780%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (91 samples, 0.02%)</title><rect x="39.5478%" y="645" width="0.0175%" height="15" fill="rgb(214,152,26)" fg:x="205799" fg:w="91"/><text x="39.7978%" y="655.50"></text></g><g><title>btrfs_set_lock_blocking_read (58 samples, 0.01%)</title><rect x="39.5541%" y="629" width="0.0111%" height="15" fill="rgb(223,22,3)" fg:x="205832" fg:w="58"/><text x="39.8041%" y="639.50"></text></g><g><title>_raw_read_lock (57 samples, 0.01%)</title><rect x="39.5668%" y="629" width="0.0110%" height="15" fill="rgb(207,174,7)" fg:x="205898" fg:w="57"/><text x="39.8168%" y="639.50"></text></g><g><title>btrfs_tree_read_lock_atomic (66 samples, 0.01%)</title><rect x="39.5652%" y="645" width="0.0127%" height="15" fill="rgb(224,19,52)" fg:x="205890" fg:w="66"/><text x="39.8152%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (62 samples, 0.01%)</title><rect x="39.5779%" y="645" width="0.0119%" height="15" fill="rgb(228,24,14)" fg:x="205956" fg:w="62"/><text x="39.8279%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (842 samples, 0.16%)</title><rect x="39.5898%" y="645" width="0.1618%" height="15" fill="rgb(230,153,43)" fg:x="206018" fg:w="842"/><text x="39.8398%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (55 samples, 0.01%)</title><rect x="39.7689%" y="629" width="0.0106%" height="15" fill="rgb(231,106,12)" fg:x="206950" fg:w="55"/><text x="40.0189%" y="639.50"></text></g><g><title>btrfs_get_64 (79 samples, 0.02%)</title><rect x="39.7795%" y="629" width="0.0152%" height="15" fill="rgb(215,92,2)" fg:x="207005" fg:w="79"/><text x="40.0295%" y="639.50"></text></g><g><title>btrfs_verify_level_key (91 samples, 0.02%)</title><rect x="39.7964%" y="629" width="0.0175%" height="15" fill="rgb(249,143,25)" fg:x="207093" fg:w="91"/><text x="40.0464%" y="639.50"></text></g><g><title>__radix_tree_lookup (344 samples, 0.07%)</title><rect x="39.8393%" y="613" width="0.0661%" height="15" fill="rgb(252,7,35)" fg:x="207316" fg:w="344"/><text x="40.0893%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (200 samples, 0.04%)</title><rect x="39.9054%" y="613" width="0.0384%" height="15" fill="rgb(216,69,40)" fg:x="207660" fg:w="200"/><text x="40.1554%" y="623.50"></text></g><g><title>mark_page_accessed (128 samples, 0.02%)</title><rect x="39.9192%" y="597" width="0.0246%" height="15" fill="rgb(240,36,33)" fg:x="207732" fg:w="128"/><text x="40.1692%" y="607.50"></text></g><g><title>find_extent_buffer (679 samples, 0.13%)</title><rect x="39.8139%" y="629" width="0.1305%" height="15" fill="rgb(231,128,14)" fg:x="207184" fg:w="679"/><text x="40.0639%" y="639.50"></text></g><g><title>read_extent_buffer (85 samples, 0.02%)</title><rect x="39.9444%" y="629" width="0.0163%" height="15" fill="rgb(245,143,14)" fg:x="207863" fg:w="85"/><text x="40.1944%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,093 samples, 0.21%)</title><rect x="39.7516%" y="645" width="0.2100%" height="15" fill="rgb(222,130,28)" fg:x="206860" fg:w="1093"/><text x="40.0016%" y="655.50"></text></g><g><title>btrfs_search_slot (2,501 samples, 0.48%)</title><rect x="39.4968%" y="661" width="0.4806%" height="15" fill="rgb(212,10,48)" fg:x="205534" fg:w="2501"/><text x="39.7468%" y="671.50"></text></g><g><title>unlock_up (82 samples, 0.02%)</title><rect x="39.9617%" y="645" width="0.0158%" height="15" fill="rgb(254,118,45)" fg:x="207953" fg:w="82"/><text x="40.2117%" y="655.50"></text></g><g><title>check_parent_dirs_for_sync (112 samples, 0.02%)</title><rect x="39.9774%" y="661" width="0.0215%" height="15" fill="rgb(228,6,45)" fg:x="208035" fg:w="112"/><text x="40.2274%" y="671.50"></text></g><g><title>alloc_extent_buffer (70 samples, 0.01%)</title><rect x="40.0568%" y="581" width="0.0135%" height="15" fill="rgb(241,18,35)" fg:x="208448" fg:w="70"/><text x="40.3068%" y="591.50"></text></g><g><title>find_extent_buffer (69 samples, 0.01%)</title><rect x="40.0570%" y="565" width="0.0133%" height="15" fill="rgb(227,214,53)" fg:x="208449" fg:w="69"/><text x="40.3070%" y="575.50"></text></g><g><title>btrfs_read_node_slot (106 samples, 0.02%)</title><rect x="40.0533%" y="613" width="0.0204%" height="15" fill="rgb(224,107,51)" fg:x="208430" fg:w="106"/><text x="40.3033%" y="623.50"></text></g><g><title>read_tree_block (90 samples, 0.02%)</title><rect x="40.0564%" y="597" width="0.0173%" height="15" fill="rgb(248,60,28)" fg:x="208446" fg:w="90"/><text x="40.3064%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (64 samples, 0.01%)</title><rect x="40.0781%" y="613" width="0.0123%" height="15" fill="rgb(249,101,23)" fg:x="208559" fg:w="64"/><text x="40.3281%" y="623.50"></text></g><g><title>btrfs_search_forward (246 samples, 0.05%)</title><rect x="40.0466%" y="629" width="0.0473%" height="15" fill="rgb(228,51,19)" fg:x="208395" fg:w="246"/><text x="40.2966%" y="639.50"></text></g><g><title>btrfs_search_slot (131 samples, 0.03%)</title><rect x="40.0987%" y="597" width="0.0252%" height="15" fill="rgb(213,20,6)" fg:x="208666" fg:w="131"/><text x="40.3487%" y="607.50"></text></g><g><title>btrfs_get_token_32 (128 samples, 0.02%)</title><rect x="40.1333%" y="581" width="0.0246%" height="15" fill="rgb(212,124,10)" fg:x="208846" fg:w="128"/><text x="40.3833%" y="591.50"></text></g><g><title>btrfs_set_token_32 (138 samples, 0.03%)</title><rect x="40.1608%" y="581" width="0.0265%" height="15" fill="rgb(248,3,40)" fg:x="208989" fg:w="138"/><text x="40.4108%" y="591.50"></text></g><g><title>btrfs_insert_empty_items (546 samples, 0.10%)</title><rect x="40.0985%" y="613" width="0.1049%" height="15" fill="rgb(223,178,23)" fg:x="208665" fg:w="546"/><text x="40.3485%" y="623.50"></text></g><g><title>setup_items_for_insert (414 samples, 0.08%)</title><rect x="40.1239%" y="597" width="0.0796%" height="15" fill="rgb(240,132,45)" fg:x="208797" fg:w="414"/><text x="40.3739%" y="607.50"></text></g><g><title>copy_items.isra.0 (647 samples, 0.12%)</title><rect x="40.0939%" y="629" width="0.1243%" height="15" fill="rgb(245,164,36)" fg:x="208641" fg:w="647"/><text x="40.3439%" y="639.50"></text></g><g><title>btrfs_get_token_32 (153 samples, 0.03%)</title><rect x="40.2294%" y="597" width="0.0294%" height="15" fill="rgb(231,188,53)" fg:x="209346" fg:w="153"/><text x="40.4794%" y="607.50"></text></g><g><title>btrfs_set_token_32 (117 samples, 0.02%)</title><rect x="40.2597%" y="597" width="0.0225%" height="15" fill="rgb(237,198,39)" fg:x="209504" fg:w="117"/><text x="40.5097%" y="607.50"></text></g><g><title>btrfs_del_items (439 samples, 0.08%)</title><rect x="40.2194%" y="613" width="0.0844%" height="15" fill="rgb(223,120,35)" fg:x="209294" fg:w="439"/><text x="40.4694%" y="623.50"></text></g><g><title>memmove_extent_buffer (81 samples, 0.02%)</title><rect x="40.2882%" y="597" width="0.0156%" height="15" fill="rgb(253,107,49)" fg:x="209652" fg:w="81"/><text x="40.5382%" y="607.50"></text></g><g><title>memmove (65 samples, 0.01%)</title><rect x="40.2912%" y="581" width="0.0125%" height="15" fill="rgb(216,44,31)" fg:x="209668" fg:w="65"/><text x="40.5412%" y="591.50"></text></g><g><title>btrfs_search_slot (121 samples, 0.02%)</title><rect x="40.3074%" y="613" width="0.0233%" height="15" fill="rgb(253,87,21)" fg:x="209752" fg:w="121"/><text x="40.5574%" y="623.50"></text></g><g><title>drop_objectid_items (614 samples, 0.12%)</title><rect x="40.2182%" y="629" width="0.1180%" height="15" fill="rgb(226,18,2)" fg:x="209288" fg:w="614"/><text x="40.4682%" y="639.50"></text></g><g><title>btrfs_release_path (85 samples, 0.02%)</title><rect x="40.3672%" y="597" width="0.0163%" height="15" fill="rgb(216,8,46)" fg:x="210063" fg:w="85"/><text x="40.6172%" y="607.50"></text></g><g><title>alloc_extent_buffer (59 samples, 0.01%)</title><rect x="40.4021%" y="549" width="0.0113%" height="15" fill="rgb(226,140,39)" fg:x="210245" fg:w="59"/><text x="40.6521%" y="559.50"></text></g><g><title>find_extent_buffer (54 samples, 0.01%)</title><rect x="40.4031%" y="533" width="0.0104%" height="15" fill="rgb(221,194,54)" fg:x="210250" fg:w="54"/><text x="40.6531%" y="543.50"></text></g><g><title>btrfs_read_node_slot (131 samples, 0.03%)</title><rect x="40.3948%" y="581" width="0.0252%" height="15" fill="rgb(213,92,11)" fg:x="210207" fg:w="131"/><text x="40.6448%" y="591.50"></text></g><g><title>read_tree_block (97 samples, 0.02%)</title><rect x="40.4014%" y="565" width="0.0186%" height="15" fill="rgb(229,162,46)" fg:x="210241" fg:w="97"/><text x="40.6514%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (90 samples, 0.02%)</title><rect x="40.4310%" y="581" width="0.0173%" height="15" fill="rgb(214,111,36)" fg:x="210395" fg:w="90"/><text x="40.6810%" y="591.50"></text></g><g><title>btrfs_search_forward (378 samples, 0.07%)</title><rect x="40.3835%" y="597" width="0.0726%" height="15" fill="rgb(207,6,21)" fg:x="210148" fg:w="378"/><text x="40.6335%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (87 samples, 0.02%)</title><rect x="40.4711%" y="581" width="0.0167%" height="15" fill="rgb(213,127,38)" fg:x="210604" fg:w="87"/><text x="40.7211%" y="591.50"></text></g><g><title>find_extent_buffer (57 samples, 0.01%)</title><rect x="40.4953%" y="565" width="0.0110%" height="15" fill="rgb(238,118,32)" fg:x="210730" fg:w="57"/><text x="40.7453%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (107 samples, 0.02%)</title><rect x="40.4878%" y="581" width="0.0206%" height="15" fill="rgb(240,139,39)" fg:x="210691" fg:w="107"/><text x="40.7378%" y="591.50"></text></g><g><title>btrfs_search_slot (288 samples, 0.06%)</title><rect x="40.4561%" y="597" width="0.0553%" height="15" fill="rgb(235,10,37)" fg:x="210526" fg:w="288"/><text x="40.7061%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (58 samples, 0.01%)</title><rect x="40.5386%" y="549" width="0.0111%" height="15" fill="rgb(249,171,38)" fg:x="210955" fg:w="58"/><text x="40.7886%" y="559.50"></text></g><g><title>btrfs_search_slot (199 samples, 0.04%)</title><rect x="40.5130%" y="565" width="0.0382%" height="15" fill="rgb(242,144,32)" fg:x="210822" fg:w="199"/><text x="40.7630%" y="575.50"></text></g><g><title>btrfs_get_token_32 (252 samples, 0.05%)</title><rect x="40.5664%" y="549" width="0.0484%" height="15" fill="rgb(217,117,21)" fg:x="211100" fg:w="252"/><text x="40.8164%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (78 samples, 0.01%)</title><rect x="40.5999%" y="533" width="0.0150%" height="15" fill="rgb(249,87,1)" fg:x="211274" fg:w="78"/><text x="40.8499%" y="543.50"></text></g><g><title>btrfs_set_token_32 (285 samples, 0.05%)</title><rect x="40.6208%" y="549" width="0.0548%" height="15" fill="rgb(248,196,48)" fg:x="211383" fg:w="285"/><text x="40.8708%" y="559.50"></text></g><g><title>check_setget_bounds.isra.0 (62 samples, 0.01%)</title><rect x="40.6637%" y="533" width="0.0119%" height="15" fill="rgb(251,206,33)" fg:x="211606" fg:w="62"/><text x="40.9137%" y="543.50"></text></g><g><title>memcpy_extent_buffer (67 samples, 0.01%)</title><rect x="40.6760%" y="549" width="0.0129%" height="15" fill="rgb(232,141,28)" fg:x="211670" fg:w="67"/><text x="40.9260%" y="559.50"></text></g><g><title>memmove_extent_buffer (75 samples, 0.01%)</title><rect x="40.6888%" y="549" width="0.0144%" height="15" fill="rgb(209,167,14)" fg:x="211737" fg:w="75"/><text x="40.9388%" y="559.50"></text></g><g><title>memmove (56 samples, 0.01%)</title><rect x="40.6925%" y="533" width="0.0108%" height="15" fill="rgb(225,11,50)" fg:x="211756" fg:w="56"/><text x="40.9425%" y="543.50"></text></g><g><title>btrfs_insert_empty_items (999 samples, 0.19%)</title><rect x="40.5126%" y="581" width="0.1920%" height="15" fill="rgb(209,50,20)" fg:x="210820" fg:w="999"/><text x="40.7626%" y="591.50"></text></g><g><title>setup_items_for_insert (798 samples, 0.15%)</title><rect x="40.5512%" y="565" width="0.1533%" height="15" fill="rgb(212,17,46)" fg:x="211021" fg:w="798"/><text x="40.8012%" y="575.50"></text></g><g><title>insert_dir_log_key (1,047 samples, 0.20%)</title><rect x="40.5115%" y="597" width="0.2012%" height="15" fill="rgb(216,101,39)" fg:x="210814" fg:w="1047"/><text x="40.7615%" y="607.50"></text></g><g><title>memcg_slab_post_alloc_hook (56 samples, 0.01%)</title><rect x="40.7576%" y="565" width="0.0108%" height="15" fill="rgb(212,228,48)" fg:x="212095" fg:w="56"/><text x="41.0076%" y="575.50"></text></g><g><title>memset_erms (77 samples, 0.01%)</title><rect x="40.7688%" y="565" width="0.0148%" height="15" fill="rgb(250,6,50)" fg:x="212153" fg:w="77"/><text x="41.0188%" y="575.50"></text></g><g><title>__kmalloc (342 samples, 0.07%)</title><rect x="40.7286%" y="581" width="0.0657%" height="15" fill="rgb(250,160,48)" fg:x="211944" fg:w="342"/><text x="40.9786%" y="591.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (56 samples, 0.01%)</title><rect x="40.7836%" y="565" width="0.0108%" height="15" fill="rgb(244,216,33)" fg:x="212230" fg:w="56"/><text x="41.0336%" y="575.50"></text></g><g><title>btrfs_get_32 (106 samples, 0.02%)</title><rect x="40.7943%" y="581" width="0.0204%" height="15" fill="rgb(207,157,5)" fg:x="212286" fg:w="106"/><text x="41.0443%" y="591.50"></text></g><g><title>btrfs_insert_empty_items (153 samples, 0.03%)</title><rect x="40.8147%" y="581" width="0.0294%" height="15" fill="rgb(228,199,8)" fg:x="212392" fg:w="153"/><text x="41.0647%" y="591.50"></text></g><g><title>setup_items_for_insert (117 samples, 0.02%)</title><rect x="40.8216%" y="565" width="0.0225%" height="15" fill="rgb(227,80,20)" fg:x="212428" fg:w="117"/><text x="41.0716%" y="575.50"></text></g><g><title>free_extent_buffer.part.0 (102 samples, 0.02%)</title><rect x="40.8593%" y="565" width="0.0196%" height="15" fill="rgb(222,9,33)" fg:x="212624" fg:w="102"/><text x="41.1093%" y="575.50"></text></g><g><title>_raw_spin_lock (83 samples, 0.02%)</title><rect x="40.8629%" y="549" width="0.0159%" height="15" fill="rgb(239,44,28)" fg:x="212643" fg:w="83"/><text x="41.1129%" y="559.50"></text></g><g><title>btrfs_release_path (274 samples, 0.05%)</title><rect x="40.8447%" y="581" width="0.0527%" height="15" fill="rgb(249,187,43)" fg:x="212548" fg:w="274"/><text x="41.0947%" y="591.50"></text></g><g><title>release_extent_buffer (96 samples, 0.02%)</title><rect x="40.8789%" y="565" width="0.0184%" height="15" fill="rgb(216,141,28)" fg:x="212726" fg:w="96"/><text x="41.1289%" y="575.50"></text></g><g><title>__btrfs_read_lock_root_node (104 samples, 0.02%)</title><rect x="40.9246%" y="565" width="0.0200%" height="15" fill="rgb(230,154,53)" fg:x="212964" fg:w="104"/><text x="41.1746%" y="575.50"></text></g><g><title>btrfs_root_node (55 samples, 0.01%)</title><rect x="40.9340%" y="549" width="0.0106%" height="15" fill="rgb(227,82,4)" fg:x="213013" fg:w="55"/><text x="41.1840%" y="559.50"></text></g><g><title>btrfs_set_path_blocking (108 samples, 0.02%)</title><rect x="40.9471%" y="565" width="0.0208%" height="15" fill="rgb(220,107,16)" fg:x="213081" fg:w="108"/><text x="41.1971%" y="575.50"></text></g><g><title>btrfs_set_lock_blocking_read (69 samples, 0.01%)</title><rect x="40.9546%" y="549" width="0.0133%" height="15" fill="rgb(207,187,2)" fg:x="213120" fg:w="69"/><text x="41.2046%" y="559.50"></text></g><g><title>generic_bin_search.constprop.0 (458 samples, 0.09%)</title><rect x="40.9840%" y="565" width="0.0880%" height="15" fill="rgb(210,162,52)" fg:x="213273" fg:w="458"/><text x="41.2340%" y="575.50"></text></g><g><title>__radix_tree_lookup (133 samples, 0.03%)</title><rect x="41.1033%" y="533" width="0.0256%" height="15" fill="rgb(217,216,49)" fg:x="213894" fg:w="133"/><text x="41.3533%" y="543.50"></text></g><g><title>mark_extent_buffer_accessed (103 samples, 0.02%)</title><rect x="41.1289%" y="533" width="0.0198%" height="15" fill="rgb(218,146,49)" fg:x="214027" fg:w="103"/><text x="41.3789%" y="543.50"></text></g><g><title>mark_page_accessed (61 samples, 0.01%)</title><rect x="41.1370%" y="517" width="0.0117%" height="15" fill="rgb(216,55,40)" fg:x="214069" fg:w="61"/><text x="41.3870%" y="527.50"></text></g><g><title>find_extent_buffer (301 samples, 0.06%)</title><rect x="41.0914%" y="549" width="0.0578%" height="15" fill="rgb(208,196,21)" fg:x="213832" fg:w="301"/><text x="41.3414%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (454 samples, 0.09%)</title><rect x="41.0720%" y="565" width="0.0872%" height="15" fill="rgb(242,117,42)" fg:x="213731" fg:w="454"/><text x="41.3220%" y="575.50"></text></g><g><title>btrfs_search_slot (1,430 samples, 0.27%)</title><rect x="40.8973%" y="581" width="0.2748%" height="15" fill="rgb(210,11,23)" fg:x="212822" fg:w="1430"/><text x="41.1473%" y="591.50"></text></g><g><title>unlock_up (67 samples, 0.01%)</title><rect x="41.1593%" y="565" width="0.0129%" height="15" fill="rgb(217,110,2)" fg:x="214185" fg:w="67"/><text x="41.4093%" y="575.50"></text></g><g><title>kfree (284 samples, 0.05%)</title><rect x="41.1725%" y="581" width="0.0546%" height="15" fill="rgb(229,77,54)" fg:x="214254" fg:w="284"/><text x="41.4225%" y="591.50"></text></g><g><title>memcmp (165 samples, 0.03%)</title><rect x="41.2271%" y="581" width="0.0317%" height="15" fill="rgb(218,53,16)" fg:x="214538" fg:w="165"/><text x="41.4771%" y="591.50"></text></g><g><title>overwrite_item (3,037 samples, 0.58%)</title><rect x="40.7127%" y="597" width="0.5836%" height="15" fill="rgb(215,38,13)" fg:x="211861" fg:w="3037"/><text x="40.9627%" y="607.50"></text></g><g><title>read_extent_buffer (195 samples, 0.04%)</title><rect x="41.2588%" y="581" width="0.0375%" height="15" fill="rgb(235,42,18)" fg:x="214703" fg:w="195"/><text x="41.5088%" y="591.50"></text></g><g><title>log_directory_changes (5,103 samples, 0.98%)</title><rect x="40.3414%" y="629" width="0.9806%" height="15" fill="rgb(219,66,54)" fg:x="209929" fg:w="5103"/><text x="40.5914%" y="639.50"></text></g><g><title>log_dir_items (5,099 samples, 0.98%)</title><rect x="40.3422%" y="613" width="0.9799%" height="15" fill="rgb(222,205,4)" fg:x="209933" fg:w="5099"/><text x="40.5922%" y="623.50"></text></g><g><title>read_extent_buffer (134 samples, 0.03%)</title><rect x="41.2963%" y="597" width="0.0258%" height="15" fill="rgb(227,213,46)" fg:x="214898" fg:w="134"/><text x="41.5463%" y="607.50"></text></g><g><title>btrfs_log_inode (6,779 samples, 1.30%)</title><rect x="40.0224%" y="645" width="1.3027%" height="15" fill="rgb(250,145,42)" fg:x="208269" fg:w="6779"/><text x="40.2724%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (66 samples, 0.01%)</title><rect x="41.3455%" y="629" width="0.0127%" height="15" fill="rgb(219,15,2)" fg:x="215154" fg:w="66"/><text x="41.5955%" y="639.50"></text></g><g><title>btrfs_search_forward (164 samples, 0.03%)</title><rect x="41.3293%" y="645" width="0.0315%" height="15" fill="rgb(231,181,52)" fg:x="215070" fg:w="164"/><text x="41.5793%" y="655.50"></text></g><g><title>log_new_dir_dentries (7,124 samples, 1.37%)</title><rect x="40.0017%" y="661" width="1.3690%" height="15" fill="rgb(235,1,42)" fg:x="208161" fg:w="7124"/><text x="40.2517%" y="671.50"></text></g><g><title>btrfs_log_new_name (23,370 samples, 4.49%)</title><rect x="36.8926%" y="693" width="4.4909%" height="15" fill="rgb(249,88,27)" fg:x="191982" fg:w="23370"/><text x="37.1426%" y="703.50">btrfs..</text></g><g><title>btrfs_log_inode_parent (23,306 samples, 4.48%)</title><rect x="36.9049%" y="677" width="4.4786%" height="15" fill="rgb(235,145,16)" fg:x="192046" fg:w="23306"/><text x="37.1549%" y="687.50">btrfs..</text></g><g><title>read_extent_buffer (60 samples, 0.01%)</title><rect x="41.3720%" y="661" width="0.0115%" height="15" fill="rgb(237,114,19)" fg:x="215292" fg:w="60"/><text x="41.6220%" y="671.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="41.4756%" y="645" width="0.0110%" height="15" fill="rgb(238,51,50)" fg:x="215831" fg:w="57"/><text x="41.7256%" y="655.50"></text></g><g><title>mutex_lock (61 samples, 0.01%)</title><rect x="41.4865%" y="645" width="0.0117%" height="15" fill="rgb(205,194,25)" fg:x="215888" fg:w="61"/><text x="41.7365%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (392 samples, 0.08%)</title><rect x="41.4300%" y="661" width="0.0753%" height="15" fill="rgb(215,203,17)" fg:x="215594" fg:w="392"/><text x="41.6800%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (141 samples, 0.03%)</title><rect x="41.5054%" y="661" width="0.0271%" height="15" fill="rgb(233,112,49)" fg:x="215986" fg:w="141"/><text x="41.7554%" y="671.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="41.5102%" y="645" width="0.0223%" height="15" fill="rgb(241,130,26)" fg:x="216011" fg:w="116"/><text x="41.7602%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (476 samples, 0.09%)</title><rect x="41.5325%" y="661" width="0.0915%" height="15" fill="rgb(252,223,19)" fg:x="216127" fg:w="476"/><text x="41.7825%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (465 samples, 0.09%)</title><rect x="41.5346%" y="645" width="0.0894%" height="15" fill="rgb(211,95,25)" fg:x="216138" fg:w="465"/><text x="41.7846%" y="655.50"></text></g><g><title>inode_get_bytes (71 samples, 0.01%)</title><rect x="41.6297%" y="645" width="0.0136%" height="15" fill="rgb(251,182,27)" fg:x="216633" fg:w="71"/><text x="41.8797%" y="655.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="41.6316%" y="629" width="0.0117%" height="15" fill="rgb(238,24,4)" fg:x="216643" fg:w="61"/><text x="41.8816%" y="639.50"></text></g><g><title>fill_stack_inode_item (160 samples, 0.03%)</title><rect x="41.6239%" y="661" width="0.0307%" height="15" fill="rgb(224,220,25)" fg:x="216603" fg:w="160"/><text x="41.8739%" y="671.50"></text></g><g><title>map_id_up (59 samples, 0.01%)</title><rect x="41.6433%" y="645" width="0.0113%" height="15" fill="rgb(239,133,26)" fg:x="216704" fg:w="59"/><text x="41.8933%" y="655.50"></text></g><g><title>mutex_lock (93 samples, 0.02%)</title><rect x="41.6547%" y="661" width="0.0179%" height="15" fill="rgb(211,94,48)" fg:x="216763" fg:w="93"/><text x="41.9047%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (1,480 samples, 0.28%)</title><rect x="41.3972%" y="677" width="0.2844%" height="15" fill="rgb(239,87,6)" fg:x="215423" fg:w="1480"/><text x="41.6472%" y="687.50"></text></g><g><title>btrfs_update_inode (1,717 samples, 0.33%)</title><rect x="41.3839%" y="693" width="0.3300%" height="15" fill="rgb(227,62,0)" fg:x="215354" fg:w="1717"/><text x="41.6339%" y="703.50"></text></g><g><title>btrfs_update_root_times (168 samples, 0.03%)</title><rect x="41.6816%" y="677" width="0.0323%" height="15" fill="rgb(211,226,4)" fg:x="216903" fg:w="168"/><text x="41.9316%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (108 samples, 0.02%)</title><rect x="41.6931%" y="661" width="0.0208%" height="15" fill="rgb(253,38,52)" fg:x="216963" fg:w="108"/><text x="41.9431%" y="671.50"></text></g><g><title>read_tsc (64 samples, 0.01%)</title><rect x="41.7016%" y="645" width="0.0123%" height="15" fill="rgb(229,126,40)" fg:x="217007" fg:w="64"/><text x="41.9516%" y="655.50"></text></g><g><title>__d_instantiate (137 samples, 0.03%)</title><rect x="41.7227%" y="677" width="0.0263%" height="15" fill="rgb(229,165,44)" fg:x="217117" fg:w="137"/><text x="41.9727%" y="687.50"></text></g><g><title>d_instantiate (212 samples, 0.04%)</title><rect x="41.7194%" y="693" width="0.0407%" height="15" fill="rgb(247,95,47)" fg:x="217100" fg:w="212"/><text x="41.9694%" y="703.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="41.8453%" y="661" width="0.0117%" height="15" fill="rgb(216,140,30)" fg:x="217755" fg:w="61"/><text x="42.0953%" y="671.50"></text></g><g><title>_raw_spin_lock (107 samples, 0.02%)</title><rect x="41.8893%" y="629" width="0.0206%" height="15" fill="rgb(246,214,8)" fg:x="217984" fg:w="107"/><text x="42.1393%" y="639.50"></text></g><g><title>_raw_spin_lock (93 samples, 0.02%)</title><rect x="41.9929%" y="597" width="0.0179%" height="15" fill="rgb(227,224,15)" fg:x="218523" fg:w="93"/><text x="42.2429%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (526 samples, 0.10%)</title><rect x="41.9099%" y="629" width="0.1011%" height="15" fill="rgb(233,175,4)" fg:x="218091" fg:w="526"/><text x="42.1599%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (235 samples, 0.05%)</title><rect x="41.9658%" y="613" width="0.0452%" height="15" fill="rgb(221,66,45)" fg:x="218382" fg:w="235"/><text x="42.2158%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (1,179 samples, 0.23%)</title><rect x="41.8382%" y="677" width="0.2266%" height="15" fill="rgb(221,178,18)" fg:x="217718" fg:w="1179"/><text x="42.0882%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,081 samples, 0.21%)</title><rect x="41.8570%" y="661" width="0.2077%" height="15" fill="rgb(213,81,29)" fg:x="217816" fg:w="1081"/><text x="42.1070%" y="671.50"></text></g><g><title>__reserve_bytes (1,021 samples, 0.20%)</title><rect x="41.8686%" y="645" width="0.1962%" height="15" fill="rgb(220,89,49)" fg:x="217876" fg:w="1021"/><text x="42.1186%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (280 samples, 0.05%)</title><rect x="42.0109%" y="629" width="0.0538%" height="15" fill="rgb(227,60,33)" fg:x="218617" fg:w="280"/><text x="42.2609%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (171 samples, 0.03%)</title><rect x="42.0319%" y="613" width="0.0329%" height="15" fill="rgb(205,113,12)" fg:x="218726" fg:w="171"/><text x="42.2819%" y="623.50"></text></g><g><title>join_transaction (248 samples, 0.05%)</title><rect x="42.0669%" y="677" width="0.0477%" height="15" fill="rgb(211,32,1)" fg:x="218908" fg:w="248"/><text x="42.3169%" y="687.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="42.1009%" y="661" width="0.0136%" height="15" fill="rgb(246,2,12)" fg:x="219085" fg:w="71"/><text x="42.3509%" y="671.50"></text></g><g><title>kmem_cache_alloc (213 samples, 0.04%)</title><rect x="42.1145%" y="677" width="0.0409%" height="15" fill="rgb(243,37,27)" fg:x="219156" fg:w="213"/><text x="42.3645%" y="687.50"></text></g><g><title>btrfs_link (61,109 samples, 11.74%)</title><rect x="30.4381%" y="709" width="11.7431%" height="15" fill="rgb(248,211,31)" fg:x="158394" fg:w="61109"/><text x="30.6881%" y="719.50">btrfs_link</text></g><g><title>start_transaction (2,140 samples, 0.41%)</title><rect x="41.7700%" y="693" width="0.4112%" height="15" fill="rgb(242,146,47)" fg:x="217363" fg:w="2140"/><text x="42.0200%" y="703.50"></text></g><g><title>wait_current_trans (134 samples, 0.03%)</title><rect x="42.1555%" y="677" width="0.0258%" height="15" fill="rgb(206,70,20)" fg:x="219369" fg:w="134"/><text x="42.4055%" y="687.50"></text></g><g><title>_raw_spin_lock (98 samples, 0.02%)</title><rect x="42.1624%" y="661" width="0.0188%" height="15" fill="rgb(215,10,51)" fg:x="219405" fg:w="98"/><text x="42.4124%" y="671.50"></text></g><g><title>down_write (78 samples, 0.01%)</title><rect x="42.1812%" y="709" width="0.0150%" height="15" fill="rgb(243,178,53)" fg:x="219503" fg:w="78"/><text x="42.4312%" y="719.50"></text></g><g><title>fsnotify (126 samples, 0.02%)</title><rect x="42.1975%" y="709" width="0.0242%" height="15" fill="rgb(233,221,20)" fg:x="219588" fg:w="126"/><text x="42.4475%" y="719.50"></text></g><g><title>btrfs_permission (87 samples, 0.02%)</title><rect x="42.2258%" y="693" width="0.0167%" height="15" fill="rgb(218,95,35)" fg:x="219735" fg:w="87"/><text x="42.4758%" y="703.50"></text></g><g><title>inode_permission.part.0 (123 samples, 0.02%)</title><rect x="42.2218%" y="709" width="0.0236%" height="15" fill="rgb(229,13,5)" fg:x="219714" fg:w="123"/><text x="42.4718%" y="719.50"></text></g><g><title>__x64_sys_link (79,616 samples, 15.30%)</title><rect x="26.9708%" y="757" width="15.2996%" height="15" fill="rgb(252,164,30)" fg:x="140351" fg:w="79616"/><text x="27.2208%" y="767.50">__x64_sys_link</text></g><g><title>do_linkat (79,602 samples, 15.30%)</title><rect x="26.9735%" y="741" width="15.2969%" height="15" fill="rgb(232,68,36)" fg:x="140365" fg:w="79602"/><text x="27.2235%" y="751.50">do_linkat</text></g><g><title>vfs_link (61,788 samples, 11.87%)</title><rect x="30.3968%" y="725" width="11.8736%" height="15" fill="rgb(219,59,54)" fg:x="158179" fg:w="61788"/><text x="30.6468%" y="735.50">vfs_link</text></g><g><title>up_write (55 samples, 0.01%)</title><rect x="42.2598%" y="709" width="0.0106%" height="15" fill="rgb(250,92,33)" fg:x="219912" fg:w="55"/><text x="42.5098%" y="719.50"></text></g><g><title>do_syscall_64 (79,690 samples, 15.31%)</title><rect x="26.9591%" y="773" width="15.3138%" height="15" fill="rgb(229,162,54)" fg:x="140290" fg:w="79690"/><text x="27.2091%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (79,881 samples, 15.35%)</title><rect x="26.9393%" y="789" width="15.3505%" height="15" fill="rgb(244,114,52)" fg:x="140187" fg:w="79881"/><text x="27.1893%" y="799.50">entry_SYSCALL_64_after_h..</text></g><g><title>syscall_exit_to_user_mode (88 samples, 0.02%)</title><rect x="42.2729%" y="773" width="0.0169%" height="15" fill="rgb(212,211,43)" fg:x="219980" fg:w="88"/><text x="42.5229%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (75 samples, 0.01%)</title><rect x="42.2754%" y="757" width="0.0144%" height="15" fill="rgb(226,147,8)" fg:x="219993" fg:w="75"/><text x="42.5254%" y="767.50"></text></g><g><title>__GI___link (80,239 samples, 15.42%)</title><rect x="26.8838%" y="805" width="15.4193%" height="15" fill="rgb(226,23,13)" fg:x="139898" fg:w="80239"/><text x="27.1338%" y="815.50">__GI___link</text></g><g><title>syscall_return_via_sysret (69 samples, 0.01%)</title><rect x="42.2898%" y="789" width="0.0133%" height="15" fill="rgb(240,63,4)" fg:x="220068" fg:w="69"/><text x="42.5398%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (280 samples, 0.05%)</title><rect x="42.3463%" y="789" width="0.0538%" height="15" fill="rgb(221,1,32)" fg:x="220362" fg:w="280"/><text x="42.5963%" y="799.50"></text></g><g><title>_copy_to_user (403 samples, 0.08%)</title><rect x="42.4570%" y="725" width="0.0774%" height="15" fill="rgb(242,117,10)" fg:x="220938" fg:w="403"/><text x="42.7070%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (359 samples, 0.07%)</title><rect x="42.4654%" y="709" width="0.0690%" height="15" fill="rgb(249,172,44)" fg:x="220982" fg:w="359"/><text x="42.7154%" y="719.50"></text></g><g><title>from_kgid_munged (89 samples, 0.02%)</title><rect x="42.5344%" y="725" width="0.0171%" height="15" fill="rgb(244,46,45)" fg:x="221341" fg:w="89"/><text x="42.7844%" y="735.50"></text></g><g><title>map_id_up (80 samples, 0.02%)</title><rect x="42.5361%" y="709" width="0.0154%" height="15" fill="rgb(206,43,17)" fg:x="221350" fg:w="80"/><text x="42.7861%" y="719.50"></text></g><g><title>cp_new_stat (711 samples, 0.14%)</title><rect x="42.4322%" y="741" width="0.1366%" height="15" fill="rgb(239,218,39)" fg:x="220809" fg:w="711"/><text x="42.6822%" y="751.50"></text></g><g><title>from_kuid_munged (90 samples, 0.02%)</title><rect x="42.5515%" y="725" width="0.0173%" height="15" fill="rgb(208,169,54)" fg:x="221430" fg:w="90"/><text x="42.8015%" y="735.50"></text></g><g><title>map_id_up (78 samples, 0.01%)</title><rect x="42.5538%" y="709" width="0.0150%" height="15" fill="rgb(247,25,42)" fg:x="221442" fg:w="78"/><text x="42.8038%" y="719.50"></text></g><g><title>_raw_spin_lock (138 samples, 0.03%)</title><rect x="42.6897%" y="709" width="0.0265%" height="15" fill="rgb(226,23,31)" fg:x="222149" fg:w="138"/><text x="42.9397%" y="719.50"></text></g><g><title>generic_fillattr (79 samples, 0.02%)</title><rect x="42.7164%" y="709" width="0.0152%" height="15" fill="rgb(247,16,28)" fg:x="222288" fg:w="79"/><text x="42.9664%" y="719.50"></text></g><g><title>btrfs_getattr (890 samples, 0.17%)</title><rect x="42.5863%" y="725" width="0.1710%" height="15" fill="rgb(231,147,38)" fg:x="221611" fg:w="890"/><text x="42.8363%" y="735.50"></text></g><g><title>inode_get_bytes (134 samples, 0.03%)</title><rect x="42.7316%" y="709" width="0.0258%" height="15" fill="rgb(253,81,48)" fg:x="222367" fg:w="134"/><text x="42.9816%" y="719.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="42.7358%" y="693" width="0.0215%" height="15" fill="rgb(249,222,43)" fg:x="222389" fg:w="112"/><text x="42.9858%" y="703.50"></text></g><g><title>kmem_cache_free (301 samples, 0.06%)</title><rect x="42.7777%" y="709" width="0.0578%" height="15" fill="rgb(221,3,27)" fg:x="222607" fg:w="301"/><text x="43.0277%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (53 samples, 0.01%)</title><rect x="42.8254%" y="693" width="0.0102%" height="15" fill="rgb(228,180,5)" fg:x="222855" fg:w="53"/><text x="43.0754%" y="703.50"></text></g><g><title>__legitimize_mnt (152 samples, 0.03%)</title><rect x="42.8665%" y="645" width="0.0292%" height="15" fill="rgb(227,131,42)" fg:x="223069" fg:w="152"/><text x="43.1165%" y="655.50"></text></g><g><title>__legitimize_path (305 samples, 0.06%)</title><rect x="42.8622%" y="661" width="0.0586%" height="15" fill="rgb(212,3,39)" fg:x="223047" fg:w="305"/><text x="43.1122%" y="671.50"></text></g><g><title>lockref_get_not_dead (131 samples, 0.03%)</title><rect x="42.8957%" y="645" width="0.0252%" height="15" fill="rgb(226,45,5)" fg:x="223221" fg:w="131"/><text x="43.1457%" y="655.50"></text></g><g><title>complete_walk (389 samples, 0.07%)</title><rect x="42.8530%" y="693" width="0.0748%" height="15" fill="rgb(215,167,45)" fg:x="222999" fg:w="389"/><text x="43.1030%" y="703.50"></text></g><g><title>try_to_unlazy (374 samples, 0.07%)</title><rect x="42.8559%" y="677" width="0.0719%" height="15" fill="rgb(250,218,53)" fg:x="223014" fg:w="374"/><text x="43.1059%" y="687.50"></text></g><g><title>btrfs_permission (214 samples, 0.04%)</title><rect x="43.7766%" y="661" width="0.0411%" height="15" fill="rgb(207,140,0)" fg:x="227805" fg:w="214"/><text x="44.0266%" y="671.50"></text></g><g><title>inode_permission.part.0 (2,691 samples, 0.52%)</title><rect x="43.4730%" y="677" width="0.5171%" height="15" fill="rgb(238,133,51)" fg:x="226225" fg:w="2691"/><text x="43.7230%" y="687.50"></text></g><g><title>generic_permission (897 samples, 0.17%)</title><rect x="43.8177%" y="661" width="0.1724%" height="15" fill="rgb(218,203,53)" fg:x="228019" fg:w="897"/><text x="44.0677%" y="671.50"></text></g><g><title>security_inode_permission (326 samples, 0.06%)</title><rect x="43.9901%" y="677" width="0.0626%" height="15" fill="rgb(226,184,25)" fg:x="228916" fg:w="326"/><text x="44.2401%" y="687.50"></text></g><g><title>__d_lookup_rcu (4,508 samples, 0.87%)</title><rect x="44.4941%" y="645" width="0.8663%" height="15" fill="rgb(231,121,21)" fg:x="231539" fg:w="4508"/><text x="44.7441%" y="655.50"></text></g><g><title>lookup_fast (5,704 samples, 1.10%)</title><rect x="44.2645%" y="661" width="1.0961%" height="15" fill="rgb(251,14,34)" fg:x="230344" fg:w="5704"/><text x="44.5145%" y="671.50"></text></g><g><title>page_put_link (99 samples, 0.02%)</title><rect x="45.3606%" y="661" width="0.0190%" height="15" fill="rgb(249,193,11)" fg:x="236048" fg:w="99"/><text x="45.6106%" y="671.50"></text></g><g><title>__lookup_mnt (84 samples, 0.02%)</title><rect x="45.6567%" y="645" width="0.0161%" height="15" fill="rgb(220,172,37)" fg:x="237589" fg:w="84"/><text x="45.9067%" y="655.50"></text></g><g><title>atime_needs_update (199 samples, 0.04%)</title><rect x="45.6731%" y="645" width="0.0382%" height="15" fill="rgb(231,229,43)" fg:x="237674" fg:w="199"/><text x="45.9231%" y="655.50"></text></g><g><title>current_time (124 samples, 0.02%)</title><rect x="45.6875%" y="629" width="0.0238%" height="15" fill="rgb(250,161,5)" fg:x="237749" fg:w="124"/><text x="45.9375%" y="639.50"></text></g><g><title>nd_jump_root (79 samples, 0.02%)</title><rect x="45.7113%" y="645" width="0.0152%" height="15" fill="rgb(218,225,18)" fg:x="237873" fg:w="79"/><text x="45.9613%" y="655.50"></text></g><g><title>page_get_link (486 samples, 0.09%)</title><rect x="45.7265%" y="645" width="0.0934%" height="15" fill="rgb(245,45,42)" fg:x="237952" fg:w="486"/><text x="45.9765%" y="655.50"></text></g><g><title>pagecache_get_page (377 samples, 0.07%)</title><rect x="45.7474%" y="629" width="0.0724%" height="15" fill="rgb(211,115,1)" fg:x="238061" fg:w="377"/><text x="45.9974%" y="639.50"></text></g><g><title>find_get_entry (300 samples, 0.06%)</title><rect x="45.7622%" y="613" width="0.0577%" height="15" fill="rgb(248,133,52)" fg:x="238138" fg:w="300"/><text x="46.0122%" y="623.50"></text></g><g><title>xas_load (65 samples, 0.01%)</title><rect x="45.8074%" y="597" width="0.0125%" height="15" fill="rgb(238,100,21)" fg:x="238373" fg:w="65"/><text x="46.0574%" y="607.50"></text></g><g><title>xas_start (55 samples, 0.01%)</title><rect x="45.8093%" y="581" width="0.0106%" height="15" fill="rgb(247,144,11)" fg:x="238383" fg:w="55"/><text x="46.0593%" y="591.50"></text></g><g><title>link_path_walk.part.0 (15,068 samples, 2.90%)</title><rect x="42.9278%" y="693" width="2.8956%" height="15" fill="rgb(206,164,16)" fg:x="223388" fg:w="15068"/><text x="43.1778%" y="703.50">li..</text></g><g><title>walk_component (9,214 samples, 1.77%)</title><rect x="44.0527%" y="677" width="1.7706%" height="15" fill="rgb(222,34,3)" fg:x="229242" fg:w="9214"/><text x="44.3027%" y="687.50">w..</text></g><g><title>step_into (2,309 samples, 0.44%)</title><rect x="45.3796%" y="661" width="0.4437%" height="15" fill="rgb(248,82,4)" fg:x="236147" fg:w="2309"/><text x="45.6296%" y="671.50"></text></g><g><title>path_init (384 samples, 0.07%)</title><rect x="45.8233%" y="693" width="0.0738%" height="15" fill="rgb(228,81,46)" fg:x="238456" fg:w="384"/><text x="46.0733%" y="703.50"></text></g><g><title>nd_jump_root (319 samples, 0.06%)</title><rect x="45.8358%" y="677" width="0.0613%" height="15" fill="rgb(227,67,47)" fg:x="238521" fg:w="319"/><text x="46.0858%" y="687.50"></text></g><g><title>set_root (268 samples, 0.05%)</title><rect x="45.8456%" y="661" width="0.0515%" height="15" fill="rgb(215,93,53)" fg:x="238572" fg:w="268"/><text x="46.0956%" y="671.50"></text></g><g><title>lookup_fast (1,179 samples, 0.23%)</title><rect x="45.9133%" y="677" width="0.2266%" height="15" fill="rgb(248,194,39)" fg:x="238924" fg:w="1179"/><text x="46.1633%" y="687.50"></text></g><g><title>__d_lookup_rcu (1,124 samples, 0.22%)</title><rect x="45.9239%" y="661" width="0.2160%" height="15" fill="rgb(215,5,19)" fg:x="238979" fg:w="1124"/><text x="46.1739%" y="671.50"></text></g><g><title>path_lookupat (17,256 samples, 3.32%)</title><rect x="42.8355%" y="709" width="3.3160%" height="15" fill="rgb(226,215,51)" fg:x="222908" fg:w="17256"/><text x="43.0855%" y="719.50">pat..</text></g><g><title>walk_component (1,276 samples, 0.25%)</title><rect x="45.9064%" y="693" width="0.2452%" height="15" fill="rgb(225,56,26)" fg:x="238888" fg:w="1276"/><text x="46.1564%" y="703.50"></text></g><g><title>step_into (61 samples, 0.01%)</title><rect x="46.1398%" y="677" width="0.0117%" height="15" fill="rgb(222,75,29)" fg:x="240103" fg:w="61"/><text x="46.3898%" y="687.50"></text></g><g><title>filename_lookup (17,675 samples, 3.40%)</title><rect x="42.7573%" y="725" width="3.3965%" height="15" fill="rgb(236,139,6)" fg:x="222501" fg:w="17675"/><text x="43.0073%" y="735.50">fil..</text></g><g><title>lockref_put_or_lock (122 samples, 0.02%)</title><rect x="46.1848%" y="693" width="0.0234%" height="15" fill="rgb(223,137,36)" fg:x="240337" fg:w="122"/><text x="46.4348%" y="703.50"></text></g><g><title>_raw_spin_lock (96 samples, 0.02%)</title><rect x="46.1898%" y="677" width="0.0184%" height="15" fill="rgb(226,99,2)" fg:x="240363" fg:w="96"/><text x="46.4398%" y="687.50"></text></g><g><title>path_put (236 samples, 0.05%)</title><rect x="46.1637%" y="725" width="0.0454%" height="15" fill="rgb(206,133,23)" fg:x="240227" fg:w="236"/><text x="46.4137%" y="735.50"></text></g><g><title>dput (230 samples, 0.04%)</title><rect x="46.1648%" y="709" width="0.0442%" height="15" fill="rgb(243,173,15)" fg:x="240233" fg:w="230"/><text x="46.4148%" y="719.50"></text></g><g><title>apparmor_inode_getattr (127 samples, 0.02%)</title><rect x="46.3088%" y="709" width="0.0244%" height="15" fill="rgb(228,69,28)" fg:x="240982" fg:w="127"/><text x="46.5588%" y="719.50"></text></g><g><title>security_inode_getattr (1,116 samples, 0.21%)</title><rect x="46.2090%" y="725" width="0.2145%" height="15" fill="rgb(212,51,22)" fg:x="240463" fg:w="1116"/><text x="46.4590%" y="735.50"></text></g><g><title>tomoyo_path_perm (466 samples, 0.09%)</title><rect x="46.3339%" y="709" width="0.0895%" height="15" fill="rgb(227,113,0)" fg:x="241113" fg:w="466"/><text x="46.5839%" y="719.50"></text></g><g><title>tomoyo_init_request_info (292 samples, 0.06%)</title><rect x="46.3674%" y="693" width="0.0561%" height="15" fill="rgb(252,84,27)" fg:x="241287" fg:w="292"/><text x="46.6174%" y="703.50"></text></g><g><title>tomoyo_domain (100 samples, 0.02%)</title><rect x="46.4043%" y="677" width="0.0192%" height="15" fill="rgb(223,145,39)" fg:x="241479" fg:w="100"/><text x="46.6543%" y="687.50"></text></g><g><title>memset_erms (671 samples, 0.13%)</title><rect x="46.5190%" y="677" width="0.1289%" height="15" fill="rgb(239,219,30)" fg:x="242076" fg:w="671"/><text x="46.7690%" y="687.50"></text></g><g><title>kmem_cache_alloc (1,235 samples, 0.24%)</title><rect x="46.4521%" y="693" width="0.2373%" height="15" fill="rgb(224,196,39)" fg:x="241728" fg:w="1235"/><text x="46.7021%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (216 samples, 0.04%)</title><rect x="46.6479%" y="677" width="0.0415%" height="15" fill="rgb(205,35,43)" fg:x="242747" fg:w="216"/><text x="46.8979%" y="687.50"></text></g><g><title>__check_heap_object (137 samples, 0.03%)</title><rect x="46.8459%" y="661" width="0.0263%" height="15" fill="rgb(228,201,21)" fg:x="243777" fg:w="137"/><text x="47.0959%" y="671.50"></text></g><g><title>__virt_addr_valid (360 samples, 0.07%)</title><rect x="46.8722%" y="661" width="0.0692%" height="15" fill="rgb(237,118,16)" fg:x="243914" fg:w="360"/><text x="47.1222%" y="671.50"></text></g><g><title>__check_object_size (616 samples, 0.12%)</title><rect x="46.8265%" y="677" width="0.1184%" height="15" fill="rgb(241,17,19)" fg:x="243676" fg:w="616"/><text x="47.0765%" y="687.50"></text></g><g><title>user_path_at_empty (2,716 samples, 0.52%)</title><rect x="46.4235%" y="725" width="0.5219%" height="15" fill="rgb(214,10,25)" fg:x="241579" fg:w="2716"/><text x="46.6735%" y="735.50"></text></g><g><title>getname_flags.part.0 (2,682 samples, 0.52%)</title><rect x="46.4300%" y="709" width="0.5154%" height="15" fill="rgb(238,37,29)" fg:x="241613" fg:w="2682"/><text x="46.6800%" y="719.50"></text></g><g><title>strncpy_from_user (1,332 samples, 0.26%)</title><rect x="46.6894%" y="693" width="0.2560%" height="15" fill="rgb(253,83,25)" fg:x="242963" fg:w="1332"/><text x="46.9394%" y="703.50"></text></g><g><title>__do_sys_newlstat (23,690 samples, 4.55%)</title><rect x="42.4230%" y="757" width="4.5524%" height="15" fill="rgb(234,192,12)" fg:x="220761" fg:w="23690"/><text x="42.6730%" y="767.50">__do_..</text></g><g><title>vfs_statx (22,931 samples, 4.41%)</title><rect x="42.5688%" y="741" width="4.4066%" height="15" fill="rgb(241,216,45)" fg:x="221520" fg:w="22931"/><text x="42.8188%" y="751.50">vfs_s..</text></g><g><title>vfs_getattr_nosec (156 samples, 0.03%)</title><rect x="46.9454%" y="725" width="0.0300%" height="15" fill="rgb(242,22,33)" fg:x="244295" fg:w="156"/><text x="47.1954%" y="735.50"></text></g><g><title>do_syscall_64 (23,781 samples, 4.57%)</title><rect x="42.4137%" y="773" width="4.5699%" height="15" fill="rgb(231,105,49)" fg:x="220713" fg:w="23781"/><text x="42.6637%" y="783.50">do_sy..</text></g><g><title>entry_SYSCALL_64_after_hwframe (23,933 samples, 4.60%)</title><rect x="42.4001%" y="789" width="4.5991%" height="15" fill="rgb(218,204,15)" fg:x="220642" fg:w="23933"/><text x="42.6501%" y="799.50">entry..</text></g><g><title>syscall_exit_to_user_mode (81 samples, 0.02%)</title><rect x="46.9837%" y="773" width="0.0156%" height="15" fill="rgb(235,138,41)" fg:x="244494" fg:w="81"/><text x="47.2337%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (62 samples, 0.01%)</title><rect x="46.9873%" y="757" width="0.0119%" height="15" fill="rgb(246,0,9)" fg:x="244513" fg:w="62"/><text x="47.2373%" y="767.50"></text></g><g><title>__GI___lxstat (24,560 samples, 4.72%)</title><rect x="42.3030%" y="805" width="4.7196%" height="15" fill="rgb(210,74,4)" fg:x="220137" fg:w="24560"/><text x="42.5530%" y="815.50">__GI_..</text></g><g><title>syscall_return_via_sysret (122 samples, 0.02%)</title><rect x="46.9992%" y="789" width="0.0234%" height="15" fill="rgb(250,60,41)" fg:x="244575" fg:w="122"/><text x="47.2492%" y="799.50"></text></g><g><title>dput (53 samples, 0.01%)</title><rect x="47.0303%" y="741" width="0.0102%" height="15" fill="rgb(220,115,12)" fg:x="244737" fg:w="53"/><text x="47.2803%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (101 samples, 0.02%)</title><rect x="47.0851%" y="645" width="0.0194%" height="15" fill="rgb(237,100,13)" fg:x="245022" fg:w="101"/><text x="47.3351%" y="655.50"></text></g><g><title>__radix_tree_lookup (63 samples, 0.01%)</title><rect x="47.1170%" y="613" width="0.0121%" height="15" fill="rgb(213,55,26)" fg:x="245188" fg:w="63"/><text x="47.3670%" y="623.50"></text></g><g><title>find_extent_buffer (118 samples, 0.02%)</title><rect x="47.1114%" y="629" width="0.0227%" height="15" fill="rgb(216,17,4)" fg:x="245159" fg:w="118"/><text x="47.3614%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (171 samples, 0.03%)</title><rect x="47.1045%" y="645" width="0.0329%" height="15" fill="rgb(220,153,47)" fg:x="245123" fg:w="171"/><text x="47.3545%" y="655.50"></text></g><g><title>btrfs_search_slot (451 samples, 0.09%)</title><rect x="47.0519%" y="661" width="0.0867%" height="15" fill="rgb(215,131,9)" fg:x="244849" fg:w="451"/><text x="47.3019%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (466 samples, 0.09%)</title><rect x="47.0513%" y="677" width="0.0895%" height="15" fill="rgb(233,46,42)" fg:x="244846" fg:w="466"/><text x="47.3013%" y="687.50"></text></g><g><title>btrfs_lookup (542 samples, 0.10%)</title><rect x="47.0409%" y="709" width="0.1042%" height="15" fill="rgb(226,86,7)" fg:x="244792" fg:w="542"/><text x="47.2909%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (538 samples, 0.10%)</title><rect x="47.0417%" y="693" width="0.1034%" height="15" fill="rgb(239,226,21)" fg:x="244796" fg:w="538"/><text x="47.2917%" y="703.50"></text></g><g><title>kmem_cache_alloc (121 samples, 0.02%)</title><rect x="47.1480%" y="677" width="0.0233%" height="15" fill="rgb(244,137,22)" fg:x="245349" fg:w="121"/><text x="47.3980%" y="687.50"></text></g><g><title>__d_alloc (136 samples, 0.03%)</title><rect x="47.1455%" y="693" width="0.0261%" height="15" fill="rgb(211,139,35)" fg:x="245336" fg:w="136"/><text x="47.3955%" y="703.50"></text></g><g><title>d_alloc (144 samples, 0.03%)</title><rect x="47.1451%" y="709" width="0.0277%" height="15" fill="rgb(214,62,50)" fg:x="245334" fg:w="144"/><text x="47.3951%" y="719.50"></text></g><g><title>__lookup_hash (754 samples, 0.14%)</title><rect x="47.0409%" y="725" width="0.1449%" height="15" fill="rgb(212,113,44)" fg:x="244792" fg:w="754"/><text x="47.2909%" y="735.50"></text></g><g><title>lookup_dcache (55 samples, 0.01%)</title><rect x="47.1752%" y="709" width="0.0106%" height="15" fill="rgb(226,150,43)" fg:x="245491" fg:w="55"/><text x="47.4252%" y="719.50"></text></g><g><title>d_lookup (53 samples, 0.01%)</title><rect x="47.1756%" y="693" width="0.0102%" height="15" fill="rgb(250,71,37)" fg:x="245493" fg:w="53"/><text x="47.4256%" y="703.50"></text></g><g><title>inode_permission.part.0 (94 samples, 0.02%)</title><rect x="47.2091%" y="677" width="0.0181%" height="15" fill="rgb(219,76,19)" fg:x="245667" fg:w="94"/><text x="47.4591%" y="687.50"></text></g><g><title>lookup_fast (185 samples, 0.04%)</title><rect x="47.2333%" y="661" width="0.0356%" height="15" fill="rgb(250,39,11)" fg:x="245793" fg:w="185"/><text x="47.4833%" y="671.50"></text></g><g><title>__d_lookup_rcu (153 samples, 0.03%)</title><rect x="47.2394%" y="645" width="0.0294%" height="15" fill="rgb(230,64,31)" fg:x="245825" fg:w="153"/><text x="47.4894%" y="655.50"></text></g><g><title>link_path_walk.part.0 (439 samples, 0.08%)</title><rect x="47.1956%" y="693" width="0.0844%" height="15" fill="rgb(208,222,23)" fg:x="245597" fg:w="439"/><text x="47.4456%" y="703.50"></text></g><g><title>walk_component (269 samples, 0.05%)</title><rect x="47.2283%" y="677" width="0.0517%" height="15" fill="rgb(227,125,18)" fg:x="245767" fg:w="269"/><text x="47.4783%" y="687.50"></text></g><g><title>step_into (58 samples, 0.01%)</title><rect x="47.2688%" y="661" width="0.0111%" height="15" fill="rgb(234,210,9)" fg:x="245978" fg:w="58"/><text x="47.5188%" y="671.50"></text></g><g><title>filename_parentat (504 samples, 0.10%)</title><rect x="47.1866%" y="725" width="0.0969%" height="15" fill="rgb(217,127,24)" fg:x="245550" fg:w="504"/><text x="47.4366%" y="735.50"></text></g><g><title>path_parentat (493 samples, 0.09%)</title><rect x="47.1887%" y="709" width="0.0947%" height="15" fill="rgb(239,141,48)" fg:x="245561" fg:w="493"/><text x="47.4387%" y="719.50"></text></g><g><title>filename_create (1,285 samples, 0.25%)</title><rect x="47.0405%" y="741" width="0.2469%" height="15" fill="rgb(227,109,8)" fg:x="244790" fg:w="1285"/><text x="47.2905%" y="751.50"></text></g><g><title>getname_flags.part.0 (117 samples, 0.02%)</title><rect x="47.2877%" y="741" width="0.0225%" height="15" fill="rgb(235,184,23)" fg:x="246076" fg:w="117"/><text x="47.5377%" y="751.50"></text></g><g><title>strncpy_from_user (57 samples, 0.01%)</title><rect x="47.2992%" y="725" width="0.0110%" height="15" fill="rgb(227,226,48)" fg:x="246136" fg:w="57"/><text x="47.5492%" y="735.50"></text></g><g><title>btrfs_insert_delayed_dir_index (156 samples, 0.03%)</title><rect x="47.3332%" y="677" width="0.0300%" height="15" fill="rgb(206,150,11)" fg:x="246313" fg:w="156"/><text x="47.5832%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (84 samples, 0.02%)</title><rect x="47.3966%" y="629" width="0.0161%" height="15" fill="rgb(254,2,33)" fg:x="246643" fg:w="84"/><text x="47.6466%" y="639.50"></text></g><g><title>find_extent_buffer (83 samples, 0.02%)</title><rect x="47.4195%" y="613" width="0.0159%" height="15" fill="rgb(243,160,20)" fg:x="246762" fg:w="83"/><text x="47.6695%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (132 samples, 0.03%)</title><rect x="47.4128%" y="629" width="0.0254%" height="15" fill="rgb(218,208,30)" fg:x="246727" fg:w="132"/><text x="47.6628%" y="639.50"></text></g><g><title>split_leaf (64 samples, 0.01%)</title><rect x="47.4381%" y="629" width="0.0123%" height="15" fill="rgb(224,120,49)" fg:x="246859" fg:w="64"/><text x="47.6881%" y="639.50"></text></g><g><title>btrfs_search_slot (416 samples, 0.08%)</title><rect x="47.3755%" y="645" width="0.0799%" height="15" fill="rgb(246,12,2)" fg:x="246533" fg:w="416"/><text x="47.6255%" y="655.50"></text></g><g><title>btrfs_get_token_32 (138 samples, 0.03%)</title><rect x="47.4671%" y="629" width="0.0265%" height="15" fill="rgb(236,117,3)" fg:x="247010" fg:w="138"/><text x="47.7171%" y="639.50"></text></g><g><title>btrfs_set_token_32 (150 samples, 0.03%)</title><rect x="47.4990%" y="629" width="0.0288%" height="15" fill="rgb(216,128,52)" fg:x="247176" fg:w="150"/><text x="47.7490%" y="639.50"></text></g><g><title>memmove_extent_buffer (66 samples, 0.01%)</title><rect x="47.5357%" y="629" width="0.0127%" height="15" fill="rgb(246,145,19)" fg:x="247367" fg:w="66"/><text x="47.7857%" y="639.50"></text></g><g><title>memmove (55 samples, 0.01%)</title><rect x="47.5379%" y="613" width="0.0106%" height="15" fill="rgb(222,11,46)" fg:x="247378" fg:w="55"/><text x="47.7879%" y="623.50"></text></g><g><title>insert_with_overflow (916 samples, 0.18%)</title><rect x="47.3736%" y="677" width="0.1760%" height="15" fill="rgb(245,82,36)" fg:x="246523" fg:w="916"/><text x="47.6236%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (907 samples, 0.17%)</title><rect x="47.3753%" y="661" width="0.1743%" height="15" fill="rgb(250,73,51)" fg:x="246532" fg:w="907"/><text x="47.6253%" y="671.50"></text></g><g><title>setup_items_for_insert (490 samples, 0.09%)</title><rect x="47.4554%" y="645" width="0.0942%" height="15" fill="rgb(221,189,23)" fg:x="246949" fg:w="490"/><text x="47.7054%" y="655.50"></text></g><g><title>btrfs_insert_dir_item (1,178 samples, 0.23%)</title><rect x="47.3309%" y="693" width="0.2264%" height="15" fill="rgb(210,33,7)" fg:x="246301" fg:w="1178"/><text x="47.5809%" y="703.50"></text></g><g><title>btrfs_update_inode (59 samples, 0.01%)</title><rect x="47.5573%" y="693" width="0.0113%" height="15" fill="rgb(210,107,22)" fg:x="247479" fg:w="59"/><text x="47.8073%" y="703.50"></text></g><g><title>btrfs_add_link (1,254 samples, 0.24%)</title><rect x="47.3284%" y="709" width="0.2410%" height="15" fill="rgb(222,116,37)" fg:x="246288" fg:w="1254"/><text x="47.5784%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (62 samples, 0.01%)</title><rect x="47.6199%" y="661" width="0.0119%" height="15" fill="rgb(254,17,48)" fg:x="247805" fg:w="62"/><text x="47.8699%" y="671.50"></text></g><g><title>find_extent_buffer (69 samples, 0.01%)</title><rect x="47.6395%" y="645" width="0.0133%" height="15" fill="rgb(224,36,32)" fg:x="247907" fg:w="69"/><text x="47.8895%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (114 samples, 0.02%)</title><rect x="47.6318%" y="661" width="0.0219%" height="15" fill="rgb(232,90,46)" fg:x="247867" fg:w="114"/><text x="47.8818%" y="671.50"></text></g><g><title>__push_leaf_left (71 samples, 0.01%)</title><rect x="47.6678%" y="629" width="0.0136%" height="15" fill="rgb(241,66,40)" fg:x="248054" fg:w="71"/><text x="47.9178%" y="639.50"></text></g><g><title>split_leaf (155 samples, 0.03%)</title><rect x="47.6537%" y="661" width="0.0298%" height="15" fill="rgb(249,184,29)" fg:x="247981" fg:w="155"/><text x="47.9037%" y="671.50"></text></g><g><title>push_leaf_left (85 samples, 0.02%)</title><rect x="47.6672%" y="645" width="0.0163%" height="15" fill="rgb(231,181,1)" fg:x="248051" fg:w="85"/><text x="47.9172%" y="655.50"></text></g><g><title>btrfs_search_slot (487 samples, 0.09%)</title><rect x="47.5972%" y="677" width="0.0936%" height="15" fill="rgb(224,94,2)" fg:x="247687" fg:w="487"/><text x="47.8472%" y="687.50"></text></g><g><title>btrfs_get_token_32 (53 samples, 0.01%)</title><rect x="47.7001%" y="661" width="0.0102%" height="15" fill="rgb(229,170,15)" fg:x="248222" fg:w="53"/><text x="47.9501%" y="671.50"></text></g><g><title>btrfs_set_token_32 (73 samples, 0.01%)</title><rect x="47.7175%" y="661" width="0.0140%" height="15" fill="rgb(240,127,35)" fg:x="248313" fg:w="73"/><text x="47.9675%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (764 samples, 0.15%)</title><rect x="47.5970%" y="693" width="0.1468%" height="15" fill="rgb(248,196,34)" fg:x="247686" fg:w="764"/><text x="47.8470%" y="703.50"></text></g><g><title>setup_items_for_insert (276 samples, 0.05%)</title><rect x="47.6908%" y="677" width="0.0530%" height="15" fill="rgb(236,137,7)" fg:x="248174" fg:w="276"/><text x="47.9408%" y="687.50"></text></g><g><title>fill_inode_item (108 samples, 0.02%)</title><rect x="47.7540%" y="693" width="0.0208%" height="15" fill="rgb(235,127,16)" fg:x="248503" fg:w="108"/><text x="48.0040%" y="703.50"></text></g><g><title>inode_tree_add (150 samples, 0.03%)</title><rect x="47.7767%" y="693" width="0.0288%" height="15" fill="rgb(250,192,54)" fg:x="248621" fg:w="150"/><text x="48.0267%" y="703.50"></text></g><g><title>insert_inode_locked4 (80 samples, 0.02%)</title><rect x="47.8056%" y="693" width="0.0154%" height="15" fill="rgb(218,98,20)" fg:x="248771" fg:w="80"/><text x="48.0556%" y="703.50"></text></g><g><title>inode_insert5 (80 samples, 0.02%)</title><rect x="47.8056%" y="677" width="0.0154%" height="15" fill="rgb(230,176,47)" fg:x="248771" fg:w="80"/><text x="48.0556%" y="687.50"></text></g><g><title>find_inode (66 samples, 0.01%)</title><rect x="47.8082%" y="661" width="0.0127%" height="15" fill="rgb(244,2,33)" fg:x="248785" fg:w="66"/><text x="48.0582%" y="671.50"></text></g><g><title>btrfs_alloc_inode (93 samples, 0.02%)</title><rect x="47.8309%" y="661" width="0.0179%" height="15" fill="rgb(231,100,17)" fg:x="248903" fg:w="93"/><text x="48.0809%" y="671.50"></text></g><g><title>kmem_cache_alloc (66 samples, 0.01%)</title><rect x="47.8361%" y="645" width="0.0127%" height="15" fill="rgb(245,23,12)" fg:x="248930" fg:w="66"/><text x="48.0861%" y="655.50"></text></g><g><title>alloc_inode (132 samples, 0.03%)</title><rect x="47.8305%" y="677" width="0.0254%" height="15" fill="rgb(249,55,22)" fg:x="248901" fg:w="132"/><text x="48.0805%" y="687.50"></text></g><g><title>new_inode (165 samples, 0.03%)</title><rect x="47.8255%" y="693" width="0.0317%" height="15" fill="rgb(207,134,9)" fg:x="248875" fg:w="165"/><text x="48.0755%" y="703.50"></text></g><g><title>btrfs_new_inode (1,431 samples, 0.27%)</title><rect x="47.5826%" y="709" width="0.2750%" height="15" fill="rgb(218,134,0)" fg:x="247611" fg:w="1431"/><text x="47.8326%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (117 samples, 0.02%)</title><rect x="47.8724%" y="677" width="0.0225%" height="15" fill="rgb(213,212,33)" fg:x="249119" fg:w="117"/><text x="48.1224%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (209 samples, 0.04%)</title><rect x="47.8594%" y="693" width="0.0402%" height="15" fill="rgb(252,106,18)" fg:x="249051" fg:w="209"/><text x="48.1094%" y="703.50"></text></g><g><title>btrfs_update_inode (232 samples, 0.04%)</title><rect x="47.8578%" y="709" width="0.0446%" height="15" fill="rgb(208,126,42)" fg:x="249043" fg:w="232"/><text x="48.1078%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (76 samples, 0.01%)</title><rect x="47.9143%" y="693" width="0.0146%" height="15" fill="rgb(246,175,29)" fg:x="249337" fg:w="76"/><text x="48.1643%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (71 samples, 0.01%)</title><rect x="47.9153%" y="677" width="0.0136%" height="15" fill="rgb(215,13,50)" fg:x="249342" fg:w="71"/><text x="48.1653%" y="687.50"></text></g><g><title>__reserve_bytes (70 samples, 0.01%)</title><rect x="47.9155%" y="661" width="0.0135%" height="15" fill="rgb(216,172,15)" fg:x="249343" fg:w="70"/><text x="48.1655%" y="671.50"></text></g><g><title>btrfs_mkdir (3,221 samples, 0.62%)</title><rect x="47.3186%" y="725" width="0.6190%" height="15" fill="rgb(212,103,13)" fg:x="246237" fg:w="3221"/><text x="47.5686%" y="735.50"></text></g><g><title>start_transaction (144 samples, 0.03%)</title><rect x="47.9099%" y="709" width="0.0277%" height="15" fill="rgb(231,171,36)" fg:x="249314" fg:w="144"/><text x="48.1599%" y="719.50"></text></g><g><title>do_mkdirat (4,738 samples, 0.91%)</title><rect x="47.0294%" y="757" width="0.9105%" height="15" fill="rgb(250,123,20)" fg:x="244732" fg:w="4738"/><text x="47.2794%" y="767.50"></text></g><g><title>vfs_mkdir (3,241 samples, 0.62%)</title><rect x="47.3171%" y="741" width="0.6228%" height="15" fill="rgb(212,53,50)" fg:x="246229" fg:w="3241"/><text x="47.5671%" y="751.50"></text></g><g><title>do_syscall_64 (4,744 samples, 0.91%)</title><rect x="47.0288%" y="773" width="0.9116%" height="15" fill="rgb(243,54,12)" fg:x="244729" fg:w="4744"/><text x="47.2788%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,750 samples, 0.91%)</title><rect x="47.0282%" y="789" width="0.9128%" height="15" fill="rgb(234,101,34)" fg:x="244726" fg:w="4750"/><text x="47.2782%" y="799.50"></text></g><g><title>__GI___mkdir (4,796 samples, 0.92%)</title><rect x="47.0227%" y="805" width="0.9216%" height="15" fill="rgb(254,67,22)" fg:x="244697" fg:w="4796"/><text x="47.2727%" y="815.50"></text></g><g><title>btrfs_filldir (355 samples, 0.07%)</title><rect x="48.0265%" y="693" width="0.0682%" height="15" fill="rgb(250,35,47)" fg:x="249921" fg:w="355"/><text x="48.2765%" y="703.50"></text></g><g><title>filldir64 (323 samples, 0.06%)</title><rect x="48.0327%" y="677" width="0.0621%" height="15" fill="rgb(226,126,38)" fg:x="249953" fg:w="323"/><text x="48.2827%" y="687.50"></text></g><g><title>verify_dirent_name (101 samples, 0.02%)</title><rect x="48.0754%" y="661" width="0.0194%" height="15" fill="rgb(216,138,53)" fg:x="250175" fg:w="101"/><text x="48.3254%" y="671.50"></text></g><g><title>memchr (76 samples, 0.01%)</title><rect x="48.0802%" y="645" width="0.0146%" height="15" fill="rgb(246,199,43)" fg:x="250200" fg:w="76"/><text x="48.3302%" y="655.50"></text></g><g><title>btrfs_get_16 (64 samples, 0.01%)</title><rect x="48.0957%" y="693" width="0.0123%" height="15" fill="rgb(232,125,11)" fg:x="250281" fg:w="64"/><text x="48.3457%" y="703.50"></text></g><g><title>btrfs_next_old_leaf (62 samples, 0.01%)</title><rect x="48.1194%" y="693" width="0.0119%" height="15" fill="rgb(218,219,45)" fg:x="250404" fg:w="62"/><text x="48.3694%" y="703.50"></text></g><g><title>btrfs_get_delayed_node (57 samples, 0.01%)</title><rect x="48.1328%" y="677" width="0.0110%" height="15" fill="rgb(216,102,54)" fg:x="250474" fg:w="57"/><text x="48.3828%" y="687.50"></text></g><g><title>btrfs_readdir_get_delayed_items (109 samples, 0.02%)</title><rect x="48.1313%" y="693" width="0.0209%" height="15" fill="rgb(250,228,7)" fg:x="250466" fg:w="109"/><text x="48.3813%" y="703.50"></text></g><g><title>btrfs_release_path (106 samples, 0.02%)</title><rect x="48.1539%" y="693" width="0.0204%" height="15" fill="rgb(226,125,25)" fg:x="250584" fg:w="106"/><text x="48.4039%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (179 samples, 0.03%)</title><rect x="48.2056%" y="677" width="0.0344%" height="15" fill="rgb(224,165,27)" fg:x="250853" fg:w="179"/><text x="48.4556%" y="687.50"></text></g><g><title>__radix_tree_lookup (119 samples, 0.02%)</title><rect x="48.2581%" y="645" width="0.0229%" height="15" fill="rgb(233,86,3)" fg:x="251126" fg:w="119"/><text x="48.5081%" y="655.50"></text></g><g><title>find_extent_buffer (207 samples, 0.04%)</title><rect x="48.2506%" y="661" width="0.0398%" height="15" fill="rgb(228,116,20)" fg:x="251087" fg:w="207"/><text x="48.5006%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (300 samples, 0.06%)</title><rect x="48.2400%" y="677" width="0.0577%" height="15" fill="rgb(209,192,17)" fg:x="251032" fg:w="300"/><text x="48.4900%" y="687.50"></text></g><g><title>btrfs_search_slot (672 samples, 0.13%)</title><rect x="48.1743%" y="693" width="0.1291%" height="15" fill="rgb(224,88,34)" fg:x="250690" fg:w="672"/><text x="48.4243%" y="703.50"></text></g><g><title>btrfs_real_readdir (2,058 samples, 0.40%)</title><rect x="47.9975%" y="709" width="0.3955%" height="15" fill="rgb(233,38,6)" fg:x="249770" fg:w="2058"/><text x="48.2475%" y="719.50"></text></g><g><title>read_extent_buffer (320 samples, 0.06%)</title><rect x="48.3315%" y="693" width="0.0615%" height="15" fill="rgb(212,59,30)" fg:x="251508" fg:w="320"/><text x="48.5815%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (82 samples, 0.02%)</title><rect x="48.4318%" y="645" width="0.0158%" height="15" fill="rgb(213,80,3)" fg:x="252030" fg:w="82"/><text x="48.6818%" y="655.50"></text></g><g><title>btrfs_reserve_metadata_bytes (78 samples, 0.01%)</title><rect x="48.4326%" y="629" width="0.0150%" height="15" fill="rgb(251,178,7)" fg:x="252034" fg:w="78"/><text x="48.6826%" y="639.50"></text></g><g><title>__reserve_bytes (75 samples, 0.01%)</title><rect x="48.4332%" y="613" width="0.0144%" height="15" fill="rgb(213,154,26)" fg:x="252037" fg:w="75"/><text x="48.6832%" y="623.50"></text></g><g><title>btrfs_delayed_update_inode (148 samples, 0.03%)</title><rect x="48.4230%" y="661" width="0.0284%" height="15" fill="rgb(238,165,49)" fg:x="251984" fg:w="148"/><text x="48.6730%" y="671.50"></text></g><g><title>btrfs_update_inode (162 samples, 0.03%)</title><rect x="48.4218%" y="677" width="0.0311%" height="15" fill="rgb(248,91,46)" fg:x="251978" fg:w="162"/><text x="48.6718%" y="687.50"></text></g><g><title>btrfs_dirty_inode (254 samples, 0.05%)</title><rect x="48.4161%" y="693" width="0.0488%" height="15" fill="rgb(244,21,52)" fg:x="251948" fg:w="254"/><text x="48.6661%" y="703.50"></text></g><g><title>start_transaction (62 samples, 0.01%)</title><rect x="48.4530%" y="677" width="0.0119%" height="15" fill="rgb(247,122,20)" fg:x="252140" fg:w="62"/><text x="48.7030%" y="687.50"></text></g><g><title>touch_atime (311 samples, 0.06%)</title><rect x="48.4057%" y="709" width="0.0598%" height="15" fill="rgb(218,27,9)" fg:x="251894" fg:w="311"/><text x="48.6557%" y="719.50"></text></g><g><title>iterate_dir (2,458 samples, 0.47%)</title><rect x="47.9948%" y="725" width="0.4723%" height="15" fill="rgb(246,7,6)" fg:x="249756" fg:w="2458"/><text x="48.2448%" y="735.50"></text></g><g><title>__x64_sys_getdents64 (2,539 samples, 0.49%)</title><rect x="47.9810%" y="741" width="0.4879%" height="15" fill="rgb(227,135,54)" fg:x="249684" fg:w="2539"/><text x="48.2310%" y="751.50"></text></g><g><title>do_syscall_64 (2,543 samples, 0.49%)</title><rect x="47.9810%" y="757" width="0.4887%" height="15" fill="rgb(247,14,11)" fg:x="249684" fg:w="2543"/><text x="48.2310%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,559 samples, 0.49%)</title><rect x="47.9795%" y="773" width="0.4918%" height="15" fill="rgb(206,149,34)" fg:x="249676" fg:w="2559"/><text x="48.2295%" y="783.50"></text></g><g><title>__GI___getdents64 (2,603 samples, 0.50%)</title><rect x="47.9725%" y="789" width="0.5002%" height="15" fill="rgb(227,228,4)" fg:x="249640" fg:w="2603"/><text x="48.2225%" y="799.50"></text></g><g><title>__GI___readdir64 (2,751 samples, 0.53%)</title><rect x="47.9443%" y="805" width="0.5287%" height="15" fill="rgb(238,218,28)" fg:x="249493" fg:w="2751"/><text x="48.1943%" y="815.50"></text></g><g><title>entry_SYSCALL_64 (319 samples, 0.06%)</title><rect x="48.5531%" y="789" width="0.0613%" height="15" fill="rgb(252,86,40)" fg:x="252661" fg:w="319"/><text x="48.8031%" y="799.50"></text></g><g><title>_copy_to_user (345 samples, 0.07%)</title><rect x="48.6809%" y="725" width="0.0663%" height="15" fill="rgb(251,225,11)" fg:x="253326" fg:w="345"/><text x="48.9309%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (297 samples, 0.06%)</title><rect x="48.6901%" y="709" width="0.0571%" height="15" fill="rgb(206,46,49)" fg:x="253374" fg:w="297"/><text x="48.9401%" y="719.50"></text></g><g><title>from_kgid_munged (65 samples, 0.01%)</title><rect x="48.7472%" y="725" width="0.0125%" height="15" fill="rgb(245,128,24)" fg:x="253671" fg:w="65"/><text x="48.9972%" y="735.50"></text></g><g><title>map_id_up (57 samples, 0.01%)</title><rect x="48.7487%" y="709" width="0.0110%" height="15" fill="rgb(219,177,34)" fg:x="253679" fg:w="57"/><text x="48.9987%" y="719.50"></text></g><g><title>cp_new_stat (569 samples, 0.11%)</title><rect x="48.6609%" y="741" width="0.1093%" height="15" fill="rgb(218,60,48)" fg:x="253222" fg:w="569"/><text x="48.9109%" y="751.50"></text></g><g><title>from_kuid_munged (55 samples, 0.01%)</title><rect x="48.7597%" y="725" width="0.0106%" height="15" fill="rgb(221,11,5)" fg:x="253736" fg:w="55"/><text x="49.0097%" y="735.50"></text></g><g><title>_raw_spin_lock (121 samples, 0.02%)</title><rect x="48.9017%" y="709" width="0.0233%" height="15" fill="rgb(220,148,13)" fg:x="254475" fg:w="121"/><text x="49.1517%" y="719.50"></text></g><g><title>generic_fillattr (121 samples, 0.02%)</title><rect x="48.9253%" y="709" width="0.0233%" height="15" fill="rgb(210,16,3)" fg:x="254598" fg:w="121"/><text x="49.1753%" y="719.50"></text></g><g><title>btrfs_getattr (939 samples, 0.18%)</title><rect x="48.7946%" y="725" width="0.1804%" height="15" fill="rgb(236,80,2)" fg:x="253918" fg:w="939"/><text x="49.0446%" y="735.50"></text></g><g><title>inode_get_bytes (138 samples, 0.03%)</title><rect x="48.9486%" y="709" width="0.0265%" height="15" fill="rgb(239,129,19)" fg:x="254719" fg:w="138"/><text x="49.1986%" y="719.50"></text></g><g><title>_raw_spin_lock (117 samples, 0.02%)</title><rect x="48.9526%" y="693" width="0.0225%" height="15" fill="rgb(220,106,35)" fg:x="254740" fg:w="117"/><text x="49.2026%" y="703.50"></text></g><g><title>kmem_cache_free (378 samples, 0.07%)</title><rect x="49.0035%" y="709" width="0.0726%" height="15" fill="rgb(252,139,45)" fg:x="255005" fg:w="378"/><text x="49.2535%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (80 samples, 0.02%)</title><rect x="49.0608%" y="693" width="0.0154%" height="15" fill="rgb(229,8,36)" fg:x="255303" fg:w="80"/><text x="49.3108%" y="703.50"></text></g><g><title>__legitimize_mnt (164 samples, 0.03%)</title><rect x="49.1113%" y="645" width="0.0315%" height="15" fill="rgb(230,126,33)" fg:x="255566" fg:w="164"/><text x="49.3613%" y="655.50"></text></g><g><title>__legitimize_path (309 samples, 0.06%)</title><rect x="49.1088%" y="661" width="0.0594%" height="15" fill="rgb(239,140,21)" fg:x="255553" fg:w="309"/><text x="49.3588%" y="671.50"></text></g><g><title>lockref_get_not_dead (132 samples, 0.03%)</title><rect x="49.1428%" y="645" width="0.0254%" height="15" fill="rgb(254,104,9)" fg:x="255730" fg:w="132"/><text x="49.3928%" y="655.50"></text></g><g><title>complete_walk (397 samples, 0.08%)</title><rect x="49.0996%" y="693" width="0.0763%" height="15" fill="rgb(239,52,14)" fg:x="255505" fg:w="397"/><text x="49.3496%" y="703.50"></text></g><g><title>try_to_unlazy (379 samples, 0.07%)</title><rect x="49.1031%" y="677" width="0.0728%" height="15" fill="rgb(208,227,44)" fg:x="255523" fg:w="379"/><text x="49.3531%" y="687.50"></text></g><g><title>btrfs_permission (274 samples, 0.05%)</title><rect x="50.2809%" y="661" width="0.0527%" height="15" fill="rgb(246,18,19)" fg:x="261652" fg:w="274"/><text x="50.5309%" y="671.50"></text></g><g><title>inode_permission.part.0 (3,510 samples, 0.67%)</title><rect x="49.9021%" y="677" width="0.6745%" height="15" fill="rgb(235,228,25)" fg:x="259681" fg:w="3510"/><text x="50.1521%" y="687.50"></text></g><g><title>generic_permission (1,265 samples, 0.24%)</title><rect x="50.3335%" y="661" width="0.2431%" height="15" fill="rgb(240,156,20)" fg:x="261926" fg:w="1265"/><text x="50.5835%" y="671.50"></text></g><g><title>security_inode_permission (453 samples, 0.09%)</title><rect x="50.5766%" y="677" width="0.0871%" height="15" fill="rgb(224,8,20)" fg:x="263191" fg:w="453"/><text x="50.8266%" y="687.50"></text></g><g><title>__d_lookup_rcu (5,304 samples, 1.02%)</title><rect x="51.2334%" y="645" width="1.0193%" height="15" fill="rgb(214,12,52)" fg:x="266609" fg:w="5304"/><text x="51.4834%" y="655.50"></text></g><g><title>lookup_fast (6,881 samples, 1.32%)</title><rect x="50.9308%" y="661" width="1.3223%" height="15" fill="rgb(211,220,47)" fg:x="265034" fg:w="6881"/><text x="51.1808%" y="671.50"></text></g><g><title>page_put_link (99 samples, 0.02%)</title><rect x="52.2531%" y="661" width="0.0190%" height="15" fill="rgb(250,173,5)" fg:x="271915" fg:w="99"/><text x="52.5031%" y="671.50"></text></g><g><title>__lookup_mnt (135 samples, 0.03%)</title><rect x="52.6097%" y="645" width="0.0259%" height="15" fill="rgb(250,125,52)" fg:x="273771" fg:w="135"/><text x="52.8597%" y="655.50"></text></g><g><title>atime_needs_update (158 samples, 0.03%)</title><rect x="52.6368%" y="645" width="0.0304%" height="15" fill="rgb(209,133,18)" fg:x="273912" fg:w="158"/><text x="52.8868%" y="655.50"></text></g><g><title>current_time (105 samples, 0.02%)</title><rect x="52.6470%" y="629" width="0.0202%" height="15" fill="rgb(216,173,22)" fg:x="273965" fg:w="105"/><text x="52.8970%" y="639.50"></text></g><g><title>nd_jump_root (88 samples, 0.02%)</title><rect x="52.6672%" y="645" width="0.0169%" height="15" fill="rgb(205,3,22)" fg:x="274070" fg:w="88"/><text x="52.9172%" y="655.50"></text></g><g><title>page_get_link (359 samples, 0.07%)</title><rect x="52.6841%" y="645" width="0.0690%" height="15" fill="rgb(248,22,20)" fg:x="274158" fg:w="359"/><text x="52.9341%" y="655.50"></text></g><g><title>pagecache_get_page (290 samples, 0.06%)</title><rect x="52.6974%" y="629" width="0.0557%" height="15" fill="rgb(233,6,29)" fg:x="274227" fg:w="290"/><text x="52.9474%" y="639.50"></text></g><g><title>find_get_entry (209 samples, 0.04%)</title><rect x="52.7129%" y="613" width="0.0402%" height="15" fill="rgb(240,22,54)" fg:x="274308" fg:w="209"/><text x="52.9629%" y="623.50"></text></g><g><title>link_path_walk.part.0 (18,632 samples, 3.58%)</title><rect x="49.1759%" y="693" width="3.5805%" height="15" fill="rgb(231,133,32)" fg:x="255902" fg:w="18632"/><text x="49.4259%" y="703.50">link..</text></g><g><title>walk_component (10,890 samples, 2.09%)</title><rect x="50.6636%" y="677" width="2.0927%" height="15" fill="rgb(248,193,4)" fg:x="263644" fg:w="10890"/><text x="50.9136%" y="687.50">w..</text></g><g><title>step_into (2,519 samples, 0.48%)</title><rect x="52.2723%" y="661" width="0.4841%" height="15" fill="rgb(211,178,46)" fg:x="272015" fg:w="2519"/><text x="52.5223%" y="671.50"></text></g><g><title>path_init (443 samples, 0.09%)</title><rect x="52.7563%" y="693" width="0.0851%" height="15" fill="rgb(224,5,42)" fg:x="274534" fg:w="443"/><text x="53.0063%" y="703.50"></text></g><g><title>nd_jump_root (342 samples, 0.07%)</title><rect x="52.7758%" y="677" width="0.0657%" height="15" fill="rgb(239,176,25)" fg:x="274635" fg:w="342"/><text x="53.0258%" y="687.50"></text></g><g><title>set_root (281 samples, 0.05%)</title><rect x="52.7875%" y="661" width="0.0540%" height="15" fill="rgb(245,187,50)" fg:x="274696" fg:w="281"/><text x="53.0375%" y="671.50"></text></g><g><title>dput (156 samples, 0.03%)</title><rect x="52.8503%" y="677" width="0.0300%" height="15" fill="rgb(248,24,15)" fg:x="275023" fg:w="156"/><text x="53.1003%" y="687.50"></text></g><g><title>lockref_put_or_lock (98 samples, 0.02%)</title><rect x="52.8615%" y="661" width="0.0188%" height="15" fill="rgb(205,166,13)" fg:x="275081" fg:w="98"/><text x="53.1115%" y="671.50"></text></g><g><title>terminate_walk (275 samples, 0.05%)</title><rect x="52.8415%" y="693" width="0.0528%" height="15" fill="rgb(208,114,23)" fg:x="274977" fg:w="275"/><text x="53.0915%" y="703.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (90 samples, 0.02%)</title><rect x="52.9416%" y="597" width="0.0173%" height="15" fill="rgb(239,127,18)" fg:x="275498" fg:w="90"/><text x="53.1916%" y="607.50"></text></g><g><title>free_extent_buffer.part.0 (235 samples, 0.05%)</title><rect x="52.9600%" y="597" width="0.0452%" height="15" fill="rgb(219,154,28)" fg:x="275594" fg:w="235"/><text x="53.2100%" y="607.50"></text></g><g><title>_raw_spin_lock (151 samples, 0.03%)</title><rect x="52.9762%" y="581" width="0.0290%" height="15" fill="rgb(225,157,23)" fg:x="275678" fg:w="151"/><text x="53.2262%" y="591.50"></text></g><g><title>btrfs_free_path (550 samples, 0.11%)</title><rect x="52.9301%" y="629" width="0.1057%" height="15" fill="rgb(219,8,6)" fg:x="275438" fg:w="550"/><text x="53.1801%" y="639.50"></text></g><g><title>btrfs_release_path (533 samples, 0.10%)</title><rect x="52.9333%" y="613" width="0.1024%" height="15" fill="rgb(212,47,6)" fg:x="275455" fg:w="533"/><text x="53.1833%" y="623.50"></text></g><g><title>release_extent_buffer (159 samples, 0.03%)</title><rect x="53.0052%" y="597" width="0.0306%" height="15" fill="rgb(224,190,4)" fg:x="275829" fg:w="159"/><text x="53.2552%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (88 samples, 0.02%)</title><rect x="53.1295%" y="581" width="0.0169%" height="15" fill="rgb(239,183,29)" fg:x="276476" fg:w="88"/><text x="53.3795%" y="591.50"></text></g><g><title>_raw_read_lock (58 samples, 0.01%)</title><rect x="53.1353%" y="565" width="0.0111%" height="15" fill="rgb(213,57,7)" fg:x="276506" fg:w="58"/><text x="53.3853%" y="575.50"></text></g><g><title>__btrfs_read_lock_root_node (232 samples, 0.04%)</title><rect x="53.1278%" y="597" width="0.0446%" height="15" fill="rgb(216,148,1)" fg:x="276467" fg:w="232"/><text x="53.3778%" y="607.50"></text></g><g><title>btrfs_root_node (135 samples, 0.03%)</title><rect x="53.1464%" y="581" width="0.0259%" height="15" fill="rgb(236,182,29)" fg:x="276564" fg:w="135"/><text x="53.3964%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (152 samples, 0.03%)</title><rect x="53.1724%" y="597" width="0.0292%" height="15" fill="rgb(244,120,48)" fg:x="276699" fg:w="152"/><text x="53.4224%" y="607.50"></text></g><g><title>schedule (118 samples, 0.02%)</title><rect x="53.1789%" y="581" width="0.0227%" height="15" fill="rgb(206,71,34)" fg:x="276733" fg:w="118"/><text x="53.4289%" y="591.50"></text></g><g><title>__schedule (112 samples, 0.02%)</title><rect x="53.1801%" y="565" width="0.0215%" height="15" fill="rgb(242,32,6)" fg:x="276739" fg:w="112"/><text x="53.4301%" y="575.50"></text></g><g><title>btrfs_set_path_blocking (220 samples, 0.04%)</title><rect x="53.2106%" y="597" width="0.0423%" height="15" fill="rgb(241,35,3)" fg:x="276898" fg:w="220"/><text x="53.4606%" y="607.50"></text></g><g><title>btrfs_set_lock_blocking_read (169 samples, 0.03%)</title><rect x="53.2204%" y="581" width="0.0325%" height="15" fill="rgb(222,62,19)" fg:x="276949" fg:w="169"/><text x="53.4704%" y="591.50"></text></g><g><title>_raw_read_lock (103 samples, 0.02%)</title><rect x="53.2602%" y="581" width="0.0198%" height="15" fill="rgb(223,110,41)" fg:x="277156" fg:w="103"/><text x="53.5102%" y="591.50"></text></g><g><title>btrfs_tree_read_lock_atomic (213 samples, 0.04%)</title><rect x="53.2529%" y="597" width="0.0409%" height="15" fill="rgb(208,224,4)" fg:x="277118" fg:w="213"/><text x="53.5029%" y="607.50"></text></g><g><title>queued_read_lock_slowpath (72 samples, 0.01%)</title><rect x="53.2800%" y="581" width="0.0138%" height="15" fill="rgb(241,137,19)" fg:x="277259" fg:w="72"/><text x="53.5300%" y="591.50"></text></g><g><title>btrfs_tree_read_unlock (112 samples, 0.02%)</title><rect x="53.2938%" y="597" width="0.0215%" height="15" fill="rgb(244,24,17)" fg:x="277331" fg:w="112"/><text x="53.5438%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,185 samples, 0.23%)</title><rect x="53.3163%" y="597" width="0.2277%" height="15" fill="rgb(245,178,49)" fg:x="277448" fg:w="1185"/><text x="53.5663%" y="607.50"></text></g><g><title>btrfs_buffer_uptodate (109 samples, 0.02%)</title><rect x="53.5746%" y="581" width="0.0209%" height="15" fill="rgb(219,160,38)" fg:x="278792" fg:w="109"/><text x="53.8246%" y="591.50"></text></g><g><title>verify_parent_transid (67 samples, 0.01%)</title><rect x="53.5827%" y="565" width="0.0129%" height="15" fill="rgb(228,137,14)" fg:x="278834" fg:w="67"/><text x="53.8327%" y="575.50"></text></g><g><title>btrfs_get_64 (115 samples, 0.02%)</title><rect x="53.5955%" y="581" width="0.0221%" height="15" fill="rgb(237,134,11)" fg:x="278901" fg:w="115"/><text x="53.8455%" y="591.50"></text></g><g><title>__radix_tree_lookup (888 samples, 0.17%)</title><rect x="53.6762%" y="565" width="0.1706%" height="15" fill="rgb(211,126,44)" fg:x="279321" fg:w="888"/><text x="53.9262%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (281 samples, 0.05%)</title><rect x="53.8469%" y="565" width="0.0540%" height="15" fill="rgb(226,171,33)" fg:x="280209" fg:w="281"/><text x="54.0969%" y="575.50"></text></g><g><title>mark_page_accessed (198 samples, 0.04%)</title><rect x="53.8628%" y="549" width="0.0380%" height="15" fill="rgb(253,99,13)" fg:x="280292" fg:w="198"/><text x="54.1128%" y="559.50"></text></g><g><title>find_extent_buffer (1,427 samples, 0.27%)</title><rect x="53.6286%" y="581" width="0.2742%" height="15" fill="rgb(244,48,7)" fg:x="279073" fg:w="1427"/><text x="53.8786%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (2,027 samples, 0.39%)</title><rect x="53.5440%" y="597" width="0.3895%" height="15" fill="rgb(244,217,54)" fg:x="278633" fg:w="2027"/><text x="53.7940%" y="607.50"></text></g><g><title>read_extent_buffer (160 samples, 0.03%)</title><rect x="53.9028%" y="581" width="0.0307%" height="15" fill="rgb(224,15,18)" fg:x="280500" fg:w="160"/><text x="54.1528%" y="591.50"></text></g><g><title>btrfs_search_slot (4,687 samples, 0.90%)</title><rect x="53.0550%" y="613" width="0.9007%" height="15" fill="rgb(244,99,12)" fg:x="276088" fg:w="4687"/><text x="53.3050%" y="623.50"></text></g><g><title>unlock_up (115 samples, 0.02%)</title><rect x="53.9336%" y="597" width="0.0221%" height="15" fill="rgb(233,226,8)" fg:x="280660" fg:w="115"/><text x="54.1836%" y="607.50"></text></g><g><title>btrfs_lookup_dir_item (5,070 samples, 0.97%)</title><rect x="53.0358%" y="629" width="0.9743%" height="15" fill="rgb(229,211,3)" fg:x="275988" fg:w="5070"/><text x="53.2858%" y="639.50"></text></g><g><title>crc32c (283 samples, 0.05%)</title><rect x="53.9557%" y="613" width="0.0544%" height="15" fill="rgb(216,140,21)" fg:x="280775" fg:w="283"/><text x="54.2057%" y="623.50"></text></g><g><title>crypto_shash_update (174 samples, 0.03%)</title><rect x="53.9766%" y="597" width="0.0334%" height="15" fill="rgb(234,122,30)" fg:x="280884" fg:w="174"/><text x="54.2266%" y="607.50"></text></g><g><title>kmem_cache_alloc (239 samples, 0.05%)</title><rect x="54.0100%" y="629" width="0.0459%" height="15" fill="rgb(236,25,46)" fg:x="281058" fg:w="239"/><text x="54.2600%" y="639.50"></text></g><g><title>btrfs_lookup (6,050 samples, 1.16%)</title><rect x="52.9149%" y="661" width="1.1626%" height="15" fill="rgb(217,52,54)" fg:x="275359" fg:w="6050"/><text x="53.1649%" y="671.50"></text></g><g><title>btrfs_lookup_dentry (6,041 samples, 1.16%)</title><rect x="52.9166%" y="645" width="1.1609%" height="15" fill="rgb(222,29,26)" fg:x="275368" fg:w="6041"/><text x="53.1666%" y="655.50"></text></g><g><title>kmem_cache_free (112 samples, 0.02%)</title><rect x="54.0560%" y="629" width="0.0215%" height="15" fill="rgb(216,177,29)" fg:x="281297" fg:w="112"/><text x="54.3060%" y="639.50"></text></g><g><title>__list_del_entry_valid (73 samples, 0.01%)</title><rect x="54.2285%" y="549" width="0.0140%" height="15" fill="rgb(247,136,51)" fg:x="282195" fg:w="73"/><text x="54.4785%" y="559.50"></text></g><g><title>__slab_alloc (292 samples, 0.06%)</title><rect x="54.1876%" y="597" width="0.0561%" height="15" fill="rgb(231,47,47)" fg:x="281982" fg:w="292"/><text x="54.4376%" y="607.50"></text></g><g><title>___slab_alloc (272 samples, 0.05%)</title><rect x="54.1914%" y="581" width="0.0523%" height="15" fill="rgb(211,192,36)" fg:x="282002" fg:w="272"/><text x="54.4414%" y="591.50"></text></g><g><title>get_partial_node.part.0 (115 samples, 0.02%)</title><rect x="54.2216%" y="565" width="0.0221%" height="15" fill="rgb(229,156,32)" fg:x="282159" fg:w="115"/><text x="54.4716%" y="575.50"></text></g><g><title>__mod_memcg_lruvec_state (142 samples, 0.03%)</title><rect x="54.3250%" y="581" width="0.0273%" height="15" fill="rgb(248,213,20)" fg:x="282697" fg:w="142"/><text x="54.5750%" y="591.50"></text></g><g><title>__mod_memcg_state.part.0 (87 samples, 0.02%)</title><rect x="54.3356%" y="565" width="0.0167%" height="15" fill="rgb(217,64,7)" fg:x="282752" fg:w="87"/><text x="54.5856%" y="575.50"></text></g><g><title>memcg_slab_post_alloc_hook (585 samples, 0.11%)</title><rect x="54.2437%" y="597" width="0.1124%" height="15" fill="rgb(232,142,8)" fg:x="282274" fg:w="585"/><text x="54.4937%" y="607.50"></text></g><g><title>memset_erms (63 samples, 0.01%)</title><rect x="54.3565%" y="597" width="0.0121%" height="15" fill="rgb(224,92,44)" fg:x="282861" fg:w="63"/><text x="54.6065%" y="607.50"></text></g><g><title>get_obj_cgroup_from_current (313 samples, 0.06%)</title><rect x="54.3900%" y="581" width="0.0601%" height="15" fill="rgb(214,169,17)" fg:x="283035" fg:w="313"/><text x="54.6400%" y="591.50"></text></g><g><title>obj_cgroup_charge (135 samples, 0.03%)</title><rect x="54.4501%" y="581" width="0.0259%" height="15" fill="rgb(210,59,37)" fg:x="283348" fg:w="135"/><text x="54.7001%" y="591.50"></text></g><g><title>kmem_cache_alloc (1,720 samples, 0.33%)</title><rect x="54.1463%" y="613" width="0.3305%" height="15" fill="rgb(214,116,48)" fg:x="281767" fg:w="1720"/><text x="54.3963%" y="623.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (562 samples, 0.11%)</title><rect x="54.3688%" y="597" width="0.1080%" height="15" fill="rgb(244,191,6)" fg:x="282925" fg:w="562"/><text x="54.6188%" y="607.50"></text></g><g><title>__d_alloc (1,915 samples, 0.37%)</title><rect x="54.1171%" y="629" width="0.3680%" height="15" fill="rgb(241,50,52)" fg:x="281615" fg:w="1915"/><text x="54.3671%" y="639.50"></text></g><g><title>d_alloc (2,039 samples, 0.39%)</title><rect x="54.1121%" y="645" width="0.3918%" height="15" fill="rgb(236,75,39)" fg:x="281589" fg:w="2039"/><text x="54.3621%" y="655.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="54.4907%" y="629" width="0.0133%" height="15" fill="rgb(236,99,0)" fg:x="283559" fg:w="69"/><text x="54.7407%" y="639.50"></text></g><g><title>d_alloc_parallel (2,220 samples, 0.43%)</title><rect x="54.0775%" y="661" width="0.4266%" height="15" fill="rgb(207,202,15)" fg:x="281409" fg:w="2220"/><text x="54.3275%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (62 samples, 0.01%)</title><rect x="54.5541%" y="597" width="0.0119%" height="15" fill="rgb(233,207,14)" fg:x="283889" fg:w="62"/><text x="54.8041%" y="607.50"></text></g><g><title>__d_lookup_done (285 samples, 0.05%)</title><rect x="54.5174%" y="629" width="0.0548%" height="15" fill="rgb(226,27,51)" fg:x="283698" fg:w="285"/><text x="54.7674%" y="639.50"></text></g><g><title>__wake_up_common_lock (156 samples, 0.03%)</title><rect x="54.5422%" y="613" width="0.0300%" height="15" fill="rgb(206,104,42)" fg:x="283827" fg:w="156"/><text x="54.7922%" y="623.50"></text></g><g><title>__d_rehash (103 samples, 0.02%)</title><rect x="54.5721%" y="629" width="0.0198%" height="15" fill="rgb(212,225,4)" fg:x="283983" fg:w="103"/><text x="54.8221%" y="639.50"></text></g><g><title>__lookup_slow (8,830 samples, 1.70%)</title><rect x="52.9085%" y="677" width="1.6968%" height="15" fill="rgb(233,96,42)" fg:x="275326" fg:w="8830"/><text x="53.1585%" y="687.50"></text></g><g><title>d_splice_alias (527 samples, 0.10%)</title><rect x="54.5041%" y="661" width="0.1013%" height="15" fill="rgb(229,21,32)" fg:x="283629" fg:w="527"/><text x="54.7541%" y="671.50"></text></g><g><title>__d_add (512 samples, 0.10%)</title><rect x="54.5070%" y="645" width="0.0984%" height="15" fill="rgb(226,216,24)" fg:x="283644" fg:w="512"/><text x="54.7570%" y="655.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="54.5919%" y="629" width="0.0135%" height="15" fill="rgb(221,163,17)" fg:x="284086" fg:w="70"/><text x="54.8419%" y="639.50"></text></g><g><title>__d_lookup_rcu (1,865 samples, 0.36%)</title><rect x="54.6275%" y="661" width="0.3584%" height="15" fill="rgb(216,216,42)" fg:x="284271" fg:w="1865"/><text x="54.8775%" y="671.50"></text></g><g><title>__legitimize_mnt (175 samples, 0.03%)</title><rect x="54.9976%" y="629" width="0.0336%" height="15" fill="rgb(240,118,7)" fg:x="286197" fg:w="175"/><text x="55.2476%" y="639.50"></text></g><g><title>__legitimize_path (323 samples, 0.06%)</title><rect x="54.9939%" y="645" width="0.0621%" height="15" fill="rgb(221,67,37)" fg:x="286178" fg:w="323"/><text x="55.2439%" y="655.50"></text></g><g><title>lockref_get_not_dead (129 samples, 0.02%)</title><rect x="55.0312%" y="629" width="0.0248%" height="15" fill="rgb(241,32,44)" fg:x="286372" fg:w="129"/><text x="55.2812%" y="639.50"></text></g><g><title>lookup_fast (2,324 samples, 0.45%)</title><rect x="54.6146%" y="677" width="0.4466%" height="15" fill="rgb(235,204,43)" fg:x="284204" fg:w="2324"/><text x="54.8646%" y="687.50"></text></g><g><title>try_to_unlazy (392 samples, 0.08%)</title><rect x="54.9859%" y="661" width="0.0753%" height="15" fill="rgb(213,116,10)" fg:x="286136" fg:w="392"/><text x="55.2359%" y="671.50"></text></g><g><title>_raw_spin_lock (167 samples, 0.03%)</title><rect x="55.1238%" y="613" width="0.0321%" height="15" fill="rgb(239,15,48)" fg:x="286854" fg:w="167"/><text x="55.3738%" y="623.50"></text></g><g><title>d_lru_add (361 samples, 0.07%)</title><rect x="55.0902%" y="645" width="0.0694%" height="15" fill="rgb(207,123,36)" fg:x="286679" fg:w="361"/><text x="55.3402%" y="655.50"></text></g><g><title>list_lru_add (338 samples, 0.06%)</title><rect x="55.0946%" y="629" width="0.0650%" height="15" fill="rgb(209,103,30)" fg:x="286702" fg:w="338"/><text x="55.3446%" y="639.50"></text></g><g><title>lockref_put_or_lock (71 samples, 0.01%)</title><rect x="55.1596%" y="645" width="0.0136%" height="15" fill="rgb(238,100,19)" fg:x="287040" fg:w="71"/><text x="55.4096%" y="655.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="55.1629%" y="629" width="0.0104%" height="15" fill="rgb(244,30,14)" fg:x="287057" fg:w="54"/><text x="55.4129%" y="639.50"></text></g><g><title>step_into (584 samples, 0.11%)</title><rect x="55.0612%" y="677" width="0.1122%" height="15" fill="rgb(249,174,6)" fg:x="286528" fg:w="584"/><text x="55.3112%" y="687.50"></text></g><g><title>dput (485 samples, 0.09%)</title><rect x="55.0802%" y="661" width="0.0932%" height="15" fill="rgb(235,213,41)" fg:x="286627" fg:w="485"/><text x="55.3302%" y="671.50"></text></g><g><title>path_lookupat (31,788 samples, 6.11%)</title><rect x="49.0762%" y="709" width="6.1086%" height="15" fill="rgb(213,118,6)" fg:x="255383" fg:w="31788"/><text x="49.3262%" y="719.50">path_loo..</text></g><g><title>walk_component (11,919 samples, 2.29%)</title><rect x="52.8943%" y="693" width="2.2904%" height="15" fill="rgb(235,44,51)" fg:x="275252" fg:w="11919"/><text x="53.1443%" y="703.50">w..</text></g><g><title>up_read (59 samples, 0.01%)</title><rect x="55.1734%" y="677" width="0.0113%" height="15" fill="rgb(217,9,53)" fg:x="287112" fg:w="59"/><text x="55.4234%" y="687.50"></text></g><g><title>filename_lookup (32,329 samples, 6.21%)</title><rect x="48.9751%" y="725" width="6.2126%" height="15" fill="rgb(237,172,34)" fg:x="254857" fg:w="32329"/><text x="49.2251%" y="735.50">filename..</text></g><g><title>lockref_put_or_lock (124 samples, 0.02%)</title><rect x="55.2159%" y="693" width="0.0238%" height="15" fill="rgb(206,206,11)" fg:x="287333" fg:w="124"/><text x="55.4659%" y="703.50"></text></g><g><title>_raw_spin_lock (91 samples, 0.02%)</title><rect x="55.2222%" y="677" width="0.0175%" height="15" fill="rgb(214,149,29)" fg:x="287366" fg:w="91"/><text x="55.4722%" y="687.50"></text></g><g><title>path_put (221 samples, 0.04%)</title><rect x="55.1974%" y="725" width="0.0425%" height="15" fill="rgb(208,123,3)" fg:x="287237" fg:w="221"/><text x="55.4474%" y="735.50"></text></g><g><title>dput (216 samples, 0.04%)</title><rect x="55.1984%" y="709" width="0.0415%" height="15" fill="rgb(229,126,4)" fg:x="287242" fg:w="216"/><text x="55.4484%" y="719.50"></text></g><g><title>apparmor_inode_getattr (82 samples, 0.02%)</title><rect x="55.3396%" y="709" width="0.0158%" height="15" fill="rgb(222,92,36)" fg:x="287977" fg:w="82"/><text x="55.5896%" y="719.50"></text></g><g><title>security_inode_getattr (1,006 samples, 0.19%)</title><rect x="55.2401%" y="725" width="0.1933%" height="15" fill="rgb(216,39,41)" fg:x="287459" fg:w="1006"/><text x="55.4901%" y="735.50"></text></g><g><title>tomoyo_path_perm (395 samples, 0.08%)</title><rect x="55.3575%" y="709" width="0.0759%" height="15" fill="rgb(253,127,28)" fg:x="288070" fg:w="395"/><text x="55.6075%" y="719.50"></text></g><g><title>tomoyo_init_request_info (242 samples, 0.05%)</title><rect x="55.3869%" y="693" width="0.0465%" height="15" fill="rgb(249,152,51)" fg:x="288223" fg:w="242"/><text x="55.6369%" y="703.50"></text></g><g><title>tomoyo_domain (62 samples, 0.01%)</title><rect x="55.4215%" y="677" width="0.0119%" height="15" fill="rgb(209,123,42)" fg:x="288403" fg:w="62"/><text x="55.6715%" y="687.50"></text></g><g><title>memset_erms (975 samples, 0.19%)</title><rect x="55.5437%" y="677" width="0.1874%" height="15" fill="rgb(241,118,22)" fg:x="289039" fg:w="975"/><text x="55.7937%" y="687.50"></text></g><g><title>_cond_resched (58 samples, 0.01%)</title><rect x="55.7780%" y="661" width="0.0111%" height="15" fill="rgb(208,25,7)" fg:x="290258" fg:w="58"/><text x="56.0280%" y="671.50"></text></g><g><title>kmem_cache_alloc (1,693 samples, 0.33%)</title><rect x="55.4657%" y="693" width="0.3253%" height="15" fill="rgb(243,144,39)" fg:x="288633" fg:w="1693"/><text x="55.7157%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (312 samples, 0.06%)</title><rect x="55.7311%" y="677" width="0.0600%" height="15" fill="rgb(250,50,5)" fg:x="290014" fg:w="312"/><text x="55.9811%" y="687.50"></text></g><g><title>__check_heap_object (187 samples, 0.04%)</title><rect x="56.0201%" y="661" width="0.0359%" height="15" fill="rgb(207,67,11)" fg:x="291518" fg:w="187"/><text x="56.2701%" y="671.50"></text></g><g><title>__virt_addr_valid (274 samples, 0.05%)</title><rect x="56.0560%" y="661" width="0.0527%" height="15" fill="rgb(245,204,40)" fg:x="291705" fg:w="274"/><text x="56.3060%" y="671.50"></text></g><g><title>user_path_at_empty (3,528 samples, 0.68%)</title><rect x="55.4334%" y="725" width="0.6780%" height="15" fill="rgb(238,228,24)" fg:x="288465" fg:w="3528"/><text x="55.6834%" y="735.50"></text></g><g><title>getname_flags.part.0 (3,482 samples, 0.67%)</title><rect x="55.4423%" y="709" width="0.6691%" height="15" fill="rgb(217,116,22)" fg:x="288511" fg:w="3482"/><text x="55.6923%" y="719.50"></text></g><g><title>strncpy_from_user (1,667 samples, 0.32%)</title><rect x="55.7910%" y="693" width="0.3203%" height="15" fill="rgb(234,98,12)" fg:x="290326" fg:w="1667"/><text x="56.0410%" y="703.50"></text></g><g><title>__check_object_size (594 samples, 0.11%)</title><rect x="55.9972%" y="677" width="0.1141%" height="15" fill="rgb(242,170,50)" fg:x="291399" fg:w="594"/><text x="56.2472%" y="687.50"></text></g><g><title>__do_sys_newstat (39,060 samples, 7.51%)</title><rect x="48.6469%" y="757" width="7.5060%" height="15" fill="rgb(235,7,5)" fg:x="253149" fg:w="39060"/><text x="48.8969%" y="767.50">__do_sys_n..</text></g><g><title>vfs_statx (38,418 samples, 7.38%)</title><rect x="48.7702%" y="741" width="7.3827%" height="15" fill="rgb(241,114,28)" fg:x="253791" fg:w="38418"/><text x="49.0202%" y="751.50">vfs_statx</text></g><g><title>vfs_getattr_nosec (216 samples, 0.04%)</title><rect x="56.1114%" y="725" width="0.0415%" height="15" fill="rgb(246,112,42)" fg:x="291993" fg:w="216"/><text x="56.3614%" y="735.50"></text></g><g><title>do_syscall_64 (39,150 samples, 7.52%)</title><rect x="48.6372%" y="773" width="7.5233%" height="15" fill="rgb(248,228,14)" fg:x="253099" fg:w="39150"/><text x="48.8872%" y="783.50">do_syscall..</text></g><g><title>fpregs_assert_state_consistent (58 samples, 0.01%)</title><rect x="56.1786%" y="741" width="0.0111%" height="15" fill="rgb(208,133,18)" fg:x="292343" fg:w="58"/><text x="56.4286%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39,425 samples, 7.58%)</title><rect x="48.6144%" y="789" width="7.5762%" height="15" fill="rgb(207,35,49)" fg:x="252980" fg:w="39425"/><text x="48.8644%" y="799.50">entry_SYSC..</text></g><g><title>syscall_exit_to_user_mode (156 samples, 0.03%)</title><rect x="56.1606%" y="773" width="0.0300%" height="15" fill="rgb(205,68,36)" fg:x="292249" fg:w="156"/><text x="56.4106%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (129 samples, 0.02%)</title><rect x="56.1658%" y="757" width="0.0248%" height="15" fill="rgb(245,62,40)" fg:x="292276" fg:w="129"/><text x="56.4158%" y="767.50"></text></g><g><title>syscall_return_via_sysret (195 samples, 0.04%)</title><rect x="56.1931%" y="789" width="0.0375%" height="15" fill="rgb(228,27,24)" fg:x="292418" fg:w="195"/><text x="56.4431%" y="799.50"></text></g><g><title>__GI___xstat (40,370 samples, 7.76%)</title><rect x="48.4729%" y="805" width="7.7578%" height="15" fill="rgb(253,19,12)" fg:x="252244" fg:w="40370"/><text x="48.7229%" y="815.50">__GI___xstat</text></g><g><title>crc32c_pcl_intel_update (129 samples, 0.02%)</title><rect x="56.2620%" y="789" width="0.0248%" height="15" fill="rgb(232,28,20)" fg:x="292777" fg:w="129"/><text x="56.5120%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (129 samples, 0.02%)</title><rect x="56.2868%" y="789" width="0.0248%" height="15" fill="rgb(218,35,51)" fg:x="292906" fg:w="129"/><text x="56.5368%" y="799.50"></text></g><g><title>memset_erms (560 samples, 0.11%)</title><rect x="56.3658%" y="709" width="0.1076%" height="15" fill="rgb(212,90,40)" fg:x="293317" fg:w="560"/><text x="56.6158%" y="719.50"></text></g><g><title>kmem_cache_alloc (759 samples, 0.15%)</title><rect x="56.3395%" y="725" width="0.1459%" height="15" fill="rgb(220,172,12)" fg:x="293180" fg:w="759"/><text x="56.5895%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (62 samples, 0.01%)</title><rect x="56.4734%" y="709" width="0.0119%" height="15" fill="rgb(226,159,20)" fg:x="293877" fg:w="62"/><text x="56.7234%" y="719.50"></text></g><g><title>__check_heap_object (60 samples, 0.01%)</title><rect x="56.5340%" y="693" width="0.0115%" height="15" fill="rgb(234,205,16)" fg:x="294192" fg:w="60"/><text x="56.7840%" y="703.50"></text></g><g><title>__virt_addr_valid (158 samples, 0.03%)</title><rect x="56.5455%" y="693" width="0.0304%" height="15" fill="rgb(207,9,39)" fg:x="294252" fg:w="158"/><text x="56.7955%" y="703.50"></text></g><g><title>__x64_sys_unlinkat (1,316 samples, 0.25%)</title><rect x="56.3247%" y="757" width="0.2529%" height="15" fill="rgb(249,143,15)" fg:x="293103" fg:w="1316"/><text x="56.5747%" y="767.50"></text></g><g><title>getname_flags.part.0 (1,285 samples, 0.25%)</title><rect x="56.3307%" y="741" width="0.2469%" height="15" fill="rgb(253,133,29)" fg:x="293134" fg:w="1285"/><text x="56.5807%" y="751.50"></text></g><g><title>strncpy_from_user (480 samples, 0.09%)</title><rect x="56.4853%" y="725" width="0.0922%" height="15" fill="rgb(221,187,0)" fg:x="293939" fg:w="480"/><text x="56.7353%" y="735.50"></text></g><g><title>__check_object_size (276 samples, 0.05%)</title><rect x="56.5245%" y="709" width="0.0530%" height="15" fill="rgb(205,204,26)" fg:x="294143" fg:w="276"/><text x="56.7745%" y="719.50"></text></g><g><title>filename_parentat (61 samples, 0.01%)</title><rect x="56.5933%" y="741" width="0.0117%" height="15" fill="rgb(224,68,54)" fg:x="294501" fg:w="61"/><text x="56.8433%" y="751.50"></text></g><g><title>path_parentat (56 samples, 0.01%)</title><rect x="56.5943%" y="725" width="0.0108%" height="15" fill="rgb(209,67,4)" fg:x="294506" fg:w="56"/><text x="56.8443%" y="735.50"></text></g><g><title>btrfs_lookup_dir_index_item (124 samples, 0.02%)</title><rect x="56.6523%" y="677" width="0.0238%" height="15" fill="rgb(228,229,18)" fg:x="294808" fg:w="124"/><text x="56.9023%" y="687.50"></text></g><g><title>btrfs_search_slot (124 samples, 0.02%)</title><rect x="56.6523%" y="661" width="0.0238%" height="15" fill="rgb(231,89,13)" fg:x="294808" fg:w="124"/><text x="56.9023%" y="671.50"></text></g><g><title>btrfs_search_slot (120 samples, 0.02%)</title><rect x="56.6766%" y="661" width="0.0231%" height="15" fill="rgb(210,182,18)" fg:x="294934" fg:w="120"/><text x="56.9266%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (127 samples, 0.02%)</title><rect x="56.6762%" y="677" width="0.0244%" height="15" fill="rgb(240,105,2)" fg:x="294932" fg:w="127"/><text x="56.9262%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (364 samples, 0.07%)</title><rect x="56.6447%" y="693" width="0.0699%" height="15" fill="rgb(207,170,50)" fg:x="294768" fg:w="364"/><text x="56.8947%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (77 samples, 0.01%)</title><rect x="56.7505%" y="645" width="0.0148%" height="15" fill="rgb(232,133,24)" fg:x="295319" fg:w="77"/><text x="57.0005%" y="655.50"></text></g><g><title>find_extent_buffer (54 samples, 0.01%)</title><rect x="56.7692%" y="629" width="0.0104%" height="15" fill="rgb(235,166,27)" fg:x="295416" fg:w="54"/><text x="57.0192%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (82 samples, 0.02%)</title><rect x="56.7653%" y="645" width="0.0158%" height="15" fill="rgb(209,19,13)" fg:x="295396" fg:w="82"/><text x="57.0153%" y="655.50"></text></g><g><title>btrfs_search_slot (289 samples, 0.06%)</title><rect x="56.7286%" y="661" width="0.0555%" height="15" fill="rgb(226,79,39)" fg:x="295205" fg:w="289"/><text x="56.9786%" y="671.50"></text></g><g><title>btrfs_del_inode_ref (409 samples, 0.08%)</title><rect x="56.7165%" y="677" width="0.0786%" height="15" fill="rgb(222,163,10)" fg:x="295142" fg:w="409"/><text x="56.9665%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (436 samples, 0.08%)</title><rect x="56.7146%" y="693" width="0.0838%" height="15" fill="rgb(214,44,19)" fg:x="295132" fg:w="436"/><text x="56.9646%" y="703.50"></text></g><g><title>btrfs_get_token_32 (203 samples, 0.04%)</title><rect x="56.8205%" y="677" width="0.0390%" height="15" fill="rgb(210,217,13)" fg:x="295683" fg:w="203"/><text x="57.0705%" y="687.50"></text></g><g><title>btrfs_set_token_32 (186 samples, 0.04%)</title><rect x="56.8620%" y="677" width="0.0357%" height="15" fill="rgb(237,61,54)" fg:x="295899" fg:w="186"/><text x="57.1120%" y="687.50"></text></g><g><title>memmove_extent_buffer (103 samples, 0.02%)</title><rect x="56.9070%" y="677" width="0.0198%" height="15" fill="rgb(226,184,24)" fg:x="296133" fg:w="103"/><text x="57.1570%" y="687.50"></text></g><g><title>memmove (85 samples, 0.02%)</title><rect x="56.9104%" y="661" width="0.0163%" height="15" fill="rgb(223,226,4)" fg:x="296151" fg:w="85"/><text x="57.1604%" y="671.50"></text></g><g><title>__push_leaf_right (55 samples, 0.01%)</title><rect x="56.9287%" y="661" width="0.0106%" height="15" fill="rgb(210,26,41)" fg:x="296246" fg:w="55"/><text x="57.1787%" y="671.50"></text></g><g><title>push_leaf_right (58 samples, 0.01%)</title><rect x="56.9287%" y="677" width="0.0111%" height="15" fill="rgb(220,221,6)" fg:x="296246" fg:w="58"/><text x="57.1787%" y="687.50"></text></g><g><title>btrfs_del_items (738 samples, 0.14%)</title><rect x="56.7984%" y="693" width="0.1418%" height="15" fill="rgb(225,89,49)" fg:x="295568" fg:w="738"/><text x="57.0484%" y="703.50"></text></g><g><title>btrfs_delete_delayed_dir_index (115 samples, 0.02%)</title><rect x="56.9487%" y="693" width="0.0221%" height="15" fill="rgb(218,70,45)" fg:x="296350" fg:w="115"/><text x="57.1987%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (114 samples, 0.02%)</title><rect x="56.9961%" y="661" width="0.0219%" height="15" fill="rgb(238,166,21)" fg:x="296597" fg:w="114"/><text x="57.2461%" y="671.50"></text></g><g><title>find_extent_buffer (74 samples, 0.01%)</title><rect x="57.0236%" y="645" width="0.0142%" height="15" fill="rgb(224,141,44)" fg:x="296740" fg:w="74"/><text x="57.2736%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (112 samples, 0.02%)</title><rect x="57.0180%" y="661" width="0.0215%" height="15" fill="rgb(230,12,49)" fg:x="296711" fg:w="112"/><text x="57.2680%" y="671.50"></text></g><g><title>btrfs_search_slot (312 samples, 0.06%)</title><rect x="56.9829%" y="677" width="0.0600%" height="15" fill="rgb(212,174,12)" fg:x="296528" fg:w="312"/><text x="57.2329%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (357 samples, 0.07%)</title><rect x="56.9763%" y="693" width="0.0686%" height="15" fill="rgb(246,67,9)" fg:x="296494" fg:w="357"/><text x="57.2263%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (55 samples, 0.01%)</title><rect x="57.0524%" y="677" width="0.0106%" height="15" fill="rgb(239,35,23)" fg:x="296890" fg:w="55"/><text x="57.3024%" y="687.50"></text></g><g><title>btrfs_update_inode (75 samples, 0.01%)</title><rect x="57.0517%" y="693" width="0.0144%" height="15" fill="rgb(211,167,0)" fg:x="296886" fg:w="75"/><text x="57.3017%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (2,237 samples, 0.43%)</title><rect x="56.6404%" y="709" width="0.4299%" height="15" fill="rgb(225,119,45)" fg:x="294746" fg:w="2237"/><text x="56.8904%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (79 samples, 0.02%)</title><rect x="57.1020%" y="645" width="0.0152%" height="15" fill="rgb(210,162,6)" fg:x="297148" fg:w="79"/><text x="57.3520%" y="655.50"></text></g><g><title>__radix_tree_lookup (68 samples, 0.01%)</title><rect x="57.1266%" y="613" width="0.0131%" height="15" fill="rgb(208,118,35)" fg:x="297276" fg:w="68"/><text x="57.3766%" y="623.50"></text></g><g><title>find_extent_buffer (112 samples, 0.02%)</title><rect x="57.1230%" y="629" width="0.0215%" height="15" fill="rgb(239,4,53)" fg:x="297257" fg:w="112"/><text x="57.3730%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (155 samples, 0.03%)</title><rect x="57.1172%" y="645" width="0.0298%" height="15" fill="rgb(213,130,21)" fg:x="297227" fg:w="155"/><text x="57.3672%" y="655.50"></text></g><g><title>btrfs_search_slot (362 samples, 0.07%)</title><rect x="57.0832%" y="661" width="0.0696%" height="15" fill="rgb(235,148,0)" fg:x="297050" fg:w="362"/><text x="57.3332%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (477 samples, 0.09%)</title><rect x="57.0824%" y="677" width="0.0917%" height="15" fill="rgb(244,224,18)" fg:x="297046" fg:w="477"/><text x="57.3324%" y="687.50"></text></g><g><title>setup_items_for_insert (111 samples, 0.02%)</title><rect x="57.1527%" y="661" width="0.0213%" height="15" fill="rgb(211,214,4)" fg:x="297412" fg:w="111"/><text x="57.4027%" y="671.50"></text></g><g><title>btrfs_orphan_add (545 samples, 0.10%)</title><rect x="57.0741%" y="709" width="0.1047%" height="15" fill="rgb(206,119,25)" fg:x="297003" fg:w="545"/><text x="57.3241%" y="719.50"></text></g><g><title>btrfs_insert_orphan_item (543 samples, 0.10%)</title><rect x="57.0745%" y="693" width="0.1043%" height="15" fill="rgb(243,93,47)" fg:x="297005" fg:w="543"/><text x="57.3245%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (59 samples, 0.01%)</title><rect x="57.1808%" y="693" width="0.0113%" height="15" fill="rgb(224,194,6)" fg:x="297558" fg:w="59"/><text x="57.4308%" y="703.50"></text></g><g><title>btrfs_update_inode (77 samples, 0.01%)</title><rect x="57.1796%" y="709" width="0.0148%" height="15" fill="rgb(243,229,6)" fg:x="297552" fg:w="77"/><text x="57.4296%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (79 samples, 0.02%)</title><rect x="57.2021%" y="693" width="0.0152%" height="15" fill="rgb(207,23,50)" fg:x="297669" fg:w="79"/><text x="57.4521%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (74 samples, 0.01%)</title><rect x="57.2031%" y="677" width="0.0142%" height="15" fill="rgb(253,192,32)" fg:x="297674" fg:w="74"/><text x="57.4531%" y="687.50"></text></g><g><title>__reserve_bytes (71 samples, 0.01%)</title><rect x="57.2037%" y="661" width="0.0136%" height="15" fill="rgb(213,21,6)" fg:x="297677" fg:w="71"/><text x="57.4537%" y="671.50"></text></g><g><title>btrfs_rmdir (3,113 samples, 0.60%)</title><rect x="56.6275%" y="725" width="0.5982%" height="15" fill="rgb(243,151,13)" fg:x="294679" fg:w="3113"/><text x="56.8775%" y="735.50"></text></g><g><title>start_transaction (158 samples, 0.03%)</title><rect x="57.1954%" y="709" width="0.0304%" height="15" fill="rgb(233,165,41)" fg:x="297634" fg:w="158"/><text x="57.4454%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (68 samples, 0.01%)</title><rect x="57.2473%" y="693" width="0.0131%" height="15" fill="rgb(246,176,45)" fg:x="297904" fg:w="68"/><text x="57.4973%" y="703.50"></text></g><g><title>clear_record_extent_bits (55 samples, 0.01%)</title><rect x="57.2703%" y="677" width="0.0106%" height="15" fill="rgb(217,170,52)" fg:x="298024" fg:w="55"/><text x="57.5203%" y="687.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (76 samples, 0.01%)</title><rect x="57.2698%" y="693" width="0.0146%" height="15" fill="rgb(214,203,54)" fg:x="298021" fg:w="76"/><text x="57.5198%" y="703.50"></text></g><g><title>btrfs_destroy_inode (273 samples, 0.05%)</title><rect x="57.2448%" y="709" width="0.0525%" height="15" fill="rgb(248,215,49)" fg:x="297891" fg:w="273"/><text x="57.4948%" y="719.50"></text></g><g><title>rb_erase (67 samples, 0.01%)</title><rect x="57.2844%" y="693" width="0.0129%" height="15" fill="rgb(208,46,10)" fg:x="298097" fg:w="67"/><text x="57.5344%" y="703.50"></text></g><g><title>destroy_inode (298 samples, 0.06%)</title><rect x="57.2404%" y="725" width="0.0573%" height="15" fill="rgb(254,5,31)" fg:x="297868" fg:w="298"/><text x="57.4904%" y="735.50"></text></g><g><title>__btrfs_end_transaction (79 samples, 0.02%)</title><rect x="57.3142%" y="693" width="0.0152%" height="15" fill="rgb(222,104,33)" fg:x="298252" fg:w="79"/><text x="57.5642%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (74 samples, 0.01%)</title><rect x="57.3293%" y="693" width="0.0142%" height="15" fill="rgb(248,49,16)" fg:x="298331" fg:w="74"/><text x="57.5793%" y="703.50"></text></g><g><title>btrfs_get_token_32 (232 samples, 0.04%)</title><rect x="57.3880%" y="645" width="0.0446%" height="15" fill="rgb(232,198,41)" fg:x="298636" fg:w="232"/><text x="57.6380%" y="655.50"></text></g><g><title>btrfs_set_token_32 (242 samples, 0.05%)</title><rect x="57.4335%" y="645" width="0.0465%" height="15" fill="rgb(214,125,3)" fg:x="298873" fg:w="242"/><text x="57.6835%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (54 samples, 0.01%)</title><rect x="57.4696%" y="629" width="0.0104%" height="15" fill="rgb(229,220,28)" fg:x="299061" fg:w="54"/><text x="57.7196%" y="639.50"></text></g><g><title>memmove_extent_buffer (148 samples, 0.03%)</title><rect x="57.4911%" y="645" width="0.0284%" height="15" fill="rgb(222,64,37)" fg:x="299173" fg:w="148"/><text x="57.7411%" y="655.50"></text></g><g><title>memmove (123 samples, 0.02%)</title><rect x="57.4960%" y="629" width="0.0236%" height="15" fill="rgb(249,184,13)" fg:x="299198" fg:w="123"/><text x="57.7460%" y="639.50"></text></g><g><title>btrfs_del_items (809 samples, 0.16%)</title><rect x="57.3684%" y="661" width="0.1555%" height="15" fill="rgb(252,176,6)" fg:x="298534" fg:w="809"/><text x="57.6184%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (63 samples, 0.01%)</title><rect x="57.5467%" y="629" width="0.0121%" height="15" fill="rgb(228,153,7)" fg:x="299462" fg:w="63"/><text x="57.7967%" y="639.50"></text></g><g><title>find_extent_buffer (65 samples, 0.01%)</title><rect x="57.5655%" y="613" width="0.0125%" height="15" fill="rgb(242,193,5)" fg:x="299560" fg:w="65"/><text x="57.8155%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (119 samples, 0.02%)</title><rect x="57.5588%" y="629" width="0.0229%" height="15" fill="rgb(232,140,9)" fg:x="299525" fg:w="119"/><text x="57.8088%" y="639.50"></text></g><g><title>btrfs_lookup_inode (285 samples, 0.05%)</title><rect x="57.5294%" y="661" width="0.0548%" height="15" fill="rgb(213,222,16)" fg:x="299372" fg:w="285"/><text x="57.7794%" y="671.50"></text></g><g><title>btrfs_search_slot (274 samples, 0.05%)</title><rect x="57.5315%" y="645" width="0.0527%" height="15" fill="rgb(222,75,50)" fg:x="299383" fg:w="274"/><text x="57.7815%" y="655.50"></text></g><g><title>__btrfs_update_delayed_inode (1,235 samples, 0.24%)</title><rect x="57.3660%" y="677" width="0.2373%" height="15" fill="rgb(205,180,2)" fg:x="298522" fg:w="1235"/><text x="57.6160%" y="687.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,411 samples, 0.27%)</title><rect x="57.3528%" y="693" width="0.2711%" height="15" fill="rgb(216,34,7)" fg:x="298453" fg:w="1411"/><text x="57.6028%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (101 samples, 0.02%)</title><rect x="57.6570%" y="661" width="0.0194%" height="15" fill="rgb(253,16,32)" fg:x="300036" fg:w="101"/><text x="57.9070%" y="671.50"></text></g><g><title>find_extent_buffer (71 samples, 0.01%)</title><rect x="57.6831%" y="645" width="0.0136%" height="15" fill="rgb(208,97,28)" fg:x="300172" fg:w="71"/><text x="57.9331%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (116 samples, 0.02%)</title><rect x="57.6764%" y="661" width="0.0223%" height="15" fill="rgb(225,92,11)" fg:x="300137" fg:w="116"/><text x="57.9264%" y="671.50"></text></g><g><title>btrfs_search_slot (328 samples, 0.06%)</title><rect x="57.6389%" y="677" width="0.0630%" height="15" fill="rgb(243,38,12)" fg:x="299942" fg:w="328"/><text x="57.8889%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (427 samples, 0.08%)</title><rect x="57.6239%" y="693" width="0.0821%" height="15" fill="rgb(208,139,16)" fg:x="299864" fg:w="427"/><text x="57.8739%" y="703.50"></text></g><g><title>clear_state_bit (69 samples, 0.01%)</title><rect x="57.7302%" y="661" width="0.0133%" height="15" fill="rgb(227,24,9)" fg:x="300417" fg:w="69"/><text x="57.9802%" y="671.50"></text></g><g><title>__clear_extent_bit (114 samples, 0.02%)</title><rect x="57.7239%" y="677" width="0.0219%" height="15" fill="rgb(206,62,11)" fg:x="300384" fg:w="114"/><text x="57.9739%" y="687.50"></text></g><g><title>btrfs_free_tree_block (59 samples, 0.01%)</title><rect x="57.7665%" y="645" width="0.0113%" height="15" fill="rgb(228,134,27)" fg:x="300606" fg:w="59"/><text x="58.0165%" y="655.50"></text></g><g><title>btrfs_del_leaf (69 samples, 0.01%)</title><rect x="57.7659%" y="661" width="0.0133%" height="15" fill="rgb(205,55,33)" fg:x="300603" fg:w="69"/><text x="58.0159%" y="671.50"></text></g><g><title>btrfs_get_token_32 (285 samples, 0.05%)</title><rect x="57.7888%" y="661" width="0.0548%" height="15" fill="rgb(243,75,43)" fg:x="300722" fg:w="285"/><text x="58.0388%" y="671.50"></text></g><g><title>btrfs_set_token_32 (264 samples, 0.05%)</title><rect x="57.8463%" y="661" width="0.0507%" height="15" fill="rgb(223,27,42)" fg:x="301021" fg:w="264"/><text x="58.0963%" y="671.50"></text></g><g><title>memmove_extent_buffer (138 samples, 0.03%)</title><rect x="57.9097%" y="661" width="0.0265%" height="15" fill="rgb(232,189,33)" fg:x="301351" fg:w="138"/><text x="58.1597%" y="671.50"></text></g><g><title>memmove (105 samples, 0.02%)</title><rect x="57.9160%" y="645" width="0.0202%" height="15" fill="rgb(210,9,39)" fg:x="301384" fg:w="105"/><text x="58.1660%" y="655.50"></text></g><g><title>__push_leaf_left (60 samples, 0.01%)</title><rect x="57.9368%" y="645" width="0.0115%" height="15" fill="rgb(242,85,26)" fg:x="301492" fg:w="60"/><text x="58.1868%" y="655.50"></text></g><g><title>push_leaf_left (84 samples, 0.02%)</title><rect x="57.9362%" y="661" width="0.0161%" height="15" fill="rgb(248,44,4)" fg:x="301489" fg:w="84"/><text x="58.1862%" y="671.50"></text></g><g><title>btrfs_del_items (1,134 samples, 0.22%)</title><rect x="57.7460%" y="677" width="0.2179%" height="15" fill="rgb(250,96,46)" fg:x="300499" fg:w="1134"/><text x="57.9960%" y="687.50"></text></g><g><title>alloc_extent_map (54 samples, 0.01%)</title><rect x="57.9662%" y="661" width="0.0104%" height="15" fill="rgb(229,116,26)" fg:x="301645" fg:w="54"/><text x="58.2162%" y="671.50"></text></g><g><title>btrfs_drop_extent_cache (95 samples, 0.02%)</title><rect x="57.9639%" y="677" width="0.0183%" height="15" fill="rgb(246,94,34)" fg:x="301633" fg:w="95"/><text x="58.2139%" y="687.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.01%)</title><rect x="58.0056%" y="629" width="0.0140%" height="15" fill="rgb(251,73,21)" fg:x="301850" fg:w="73"/><text x="58.2556%" y="639.50"></text></g><g><title>btrfs_block_rsv_release (119 samples, 0.02%)</title><rect x="57.9996%" y="645" width="0.0229%" height="15" fill="rgb(254,121,25)" fg:x="301819" fg:w="119"/><text x="58.2496%" y="655.50"></text></g><g><title>finish_one_item (70 samples, 0.01%)</title><rect x="58.0308%" y="629" width="0.0135%" height="15" fill="rgb(215,161,49)" fg:x="301981" fg:w="70"/><text x="58.2808%" y="639.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (161 samples, 0.03%)</title><rect x="58.0225%" y="645" width="0.0309%" height="15" fill="rgb(221,43,13)" fg:x="301938" fg:w="161"/><text x="58.2725%" y="655.50"></text></g><g><title>kfree (124 samples, 0.02%)</title><rect x="58.0534%" y="645" width="0.0238%" height="15" fill="rgb(249,5,37)" fg:x="302099" fg:w="124"/><text x="58.3034%" y="655.50"></text></g><g><title>__btrfs_kill_delayed_node (438 samples, 0.08%)</title><rect x="57.9952%" y="661" width="0.0842%" height="15" fill="rgb(226,25,44)" fg:x="301796" fg:w="438"/><text x="58.2452%" y="671.50"></text></g><g><title>btrfs_kill_delayed_inode_items (452 samples, 0.09%)</title><rect x="57.9950%" y="677" width="0.0869%" height="15" fill="rgb(238,189,16)" fg:x="301795" fg:w="452"/><text x="58.2450%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (94 samples, 0.02%)</title><rect x="58.1026%" y="661" width="0.0181%" height="15" fill="rgb(251,186,8)" fg:x="302355" fg:w="94"/><text x="58.3526%" y="671.50"></text></g><g><title>find_extent_buffer (71 samples, 0.01%)</title><rect x="58.1268%" y="645" width="0.0136%" height="15" fill="rgb(254,34,31)" fg:x="302481" fg:w="71"/><text x="58.3768%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (109 samples, 0.02%)</title><rect x="58.1207%" y="661" width="0.0209%" height="15" fill="rgb(225,215,27)" fg:x="302449" fg:w="109"/><text x="58.3707%" y="671.50"></text></g><g><title>btrfs_search_slot (319 samples, 0.06%)</title><rect x="58.0838%" y="677" width="0.0613%" height="15" fill="rgb(221,192,48)" fg:x="302257" fg:w="319"/><text x="58.3338%" y="687.50"></text></g><g><title>lock_extent_bits (92 samples, 0.02%)</title><rect x="58.1501%" y="677" width="0.0177%" height="15" fill="rgb(219,137,20)" fg:x="302602" fg:w="92"/><text x="58.4001%" y="687.50"></text></g><g><title>__set_extent_bit (90 samples, 0.02%)</title><rect x="58.1505%" y="661" width="0.0173%" height="15" fill="rgb(219,84,11)" fg:x="302604" fg:w="90"/><text x="58.4005%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (2,450 samples, 0.47%)</title><rect x="57.7089%" y="693" width="0.4708%" height="15" fill="rgb(224,10,23)" fg:x="300306" fg:w="2450"/><text x="57.9589%" y="703.50"></text></g><g><title>read_extent_buffer (62 samples, 0.01%)</title><rect x="58.1678%" y="677" width="0.0119%" height="15" fill="rgb(248,22,39)" fg:x="302694" fg:w="62"/><text x="58.4178%" y="687.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (73 samples, 0.01%)</title><rect x="58.1962%" y="629" width="0.0140%" height="15" fill="rgb(212,154,20)" fg:x="302842" fg:w="73"/><text x="58.4462%" y="639.50"></text></g><g><title>btrfs_block_rsv_refill (166 samples, 0.03%)</title><rect x="58.1841%" y="677" width="0.0319%" height="15" fill="rgb(236,199,50)" fg:x="302779" fg:w="166"/><text x="58.4341%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (129 samples, 0.02%)</title><rect x="58.1912%" y="661" width="0.0248%" height="15" fill="rgb(211,9,17)" fg:x="302816" fg:w="129"/><text x="58.4412%" y="671.50"></text></g><g><title>__reserve_bytes (128 samples, 0.02%)</title><rect x="58.1914%" y="645" width="0.0246%" height="15" fill="rgb(243,216,36)" fg:x="302817" fg:w="128"/><text x="58.4414%" y="655.50"></text></g><g><title>evict_refill_and_join (267 samples, 0.05%)</title><rect x="58.1797%" y="693" width="0.0513%" height="15" fill="rgb(250,2,10)" fg:x="302756" fg:w="267"/><text x="58.4297%" y="703.50"></text></g><g><title>start_transaction (77 samples, 0.01%)</title><rect x="58.2162%" y="677" width="0.0148%" height="15" fill="rgb(226,50,48)" fg:x="302946" fg:w="77"/><text x="58.4662%" y="687.50"></text></g><g><title>btrfs_evict_inode (4,839 samples, 0.93%)</title><rect x="57.3119%" y="709" width="0.9299%" height="15" fill="rgb(243,81,16)" fg:x="298240" fg:w="4839"/><text x="57.5619%" y="719.50"></text></g><g><title>evict (4,923 samples, 0.95%)</title><rect x="57.3009%" y="725" width="0.9460%" height="15" fill="rgb(250,14,2)" fg:x="298183" fg:w="4923"/><text x="57.5509%" y="735.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="58.2642%" y="693" width="0.0129%" height="15" fill="rgb(233,135,29)" fg:x="303196" fg:w="67"/><text x="58.5142%" y="703.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="58.3175%" y="645" width="0.0129%" height="15" fill="rgb(224,64,43)" fg:x="303473" fg:w="67"/><text x="58.5675%" y="655.50"></text></g><g><title>d_lru_del (422 samples, 0.08%)</title><rect x="58.2848%" y="677" width="0.0811%" height="15" fill="rgb(238,84,13)" fg:x="303303" fg:w="422"/><text x="58.5348%" y="687.50"></text></g><g><title>list_lru_del (410 samples, 0.08%)</title><rect x="58.2871%" y="661" width="0.0788%" height="15" fill="rgb(253,48,26)" fg:x="303315" fg:w="410"/><text x="58.5371%" y="671.50"></text></g><g><title>mem_cgroup_from_obj (183 samples, 0.04%)</title><rect x="58.3307%" y="645" width="0.0352%" height="15" fill="rgb(205,223,31)" fg:x="303542" fg:w="183"/><text x="58.5807%" y="655.50"></text></g><g><title>d_walk (607 samples, 0.12%)</title><rect x="58.2558%" y="709" width="0.1166%" height="15" fill="rgb(221,41,32)" fg:x="303152" fg:w="607"/><text x="58.5058%" y="719.50"></text></g><g><title>select_collect (495 samples, 0.10%)</title><rect x="58.2773%" y="693" width="0.0951%" height="15" fill="rgb(213,158,31)" fg:x="303264" fg:w="495"/><text x="58.5273%" y="703.50"></text></g><g><title>___d_drop (214 samples, 0.04%)</title><rect x="58.3841%" y="677" width="0.0411%" height="15" fill="rgb(245,126,43)" fg:x="303820" fg:w="214"/><text x="58.6341%" y="687.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.01%)</title><rect x="58.4274%" y="677" width="0.0138%" height="15" fill="rgb(227,7,22)" fg:x="304045" fg:w="72"/><text x="58.6774%" y="687.50"></text></g><g><title>call_rcu (247 samples, 0.05%)</title><rect x="58.4412%" y="677" width="0.0475%" height="15" fill="rgb(252,90,44)" fg:x="304117" fg:w="247"/><text x="58.6912%" y="687.50"></text></g><g><title>rcu_segcblist_enqueue (137 samples, 0.03%)</title><rect x="58.4624%" y="661" width="0.0263%" height="15" fill="rgb(253,91,0)" fg:x="304227" fg:w="137"/><text x="58.7124%" y="671.50"></text></g><g><title>__dentry_kill (604 samples, 0.12%)</title><rect x="58.3749%" y="693" width="0.1161%" height="15" fill="rgb(252,175,49)" fg:x="303772" fg:w="604"/><text x="58.6249%" y="703.50"></text></g><g><title>__dput_to_list (76 samples, 0.01%)</title><rect x="58.4910%" y="693" width="0.0146%" height="15" fill="rgb(246,150,1)" fg:x="304376" fg:w="76"/><text x="58.7410%" y="703.50"></text></g><g><title>d_lru_del (61 samples, 0.01%)</title><rect x="58.4939%" y="677" width="0.0117%" height="15" fill="rgb(241,192,25)" fg:x="304391" fg:w="61"/><text x="58.7439%" y="687.50"></text></g><g><title>list_lru_del (58 samples, 0.01%)</title><rect x="58.4944%" y="661" width="0.0111%" height="15" fill="rgb(239,187,11)" fg:x="304394" fg:w="58"/><text x="58.7444%" y="671.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="58.5081%" y="693" width="0.0127%" height="15" fill="rgb(218,202,51)" fg:x="304465" fg:w="66"/><text x="58.7581%" y="703.50"></text></g><g><title>shrink_dcache_parent (1,481 samples, 0.28%)</title><rect x="58.2552%" y="725" width="0.2846%" height="15" fill="rgb(225,176,8)" fg:x="303149" fg:w="1481"/><text x="58.5052%" y="735.50"></text></g><g><title>shrink_dentry_list (871 samples, 0.17%)</title><rect x="58.3724%" y="709" width="0.1674%" height="15" fill="rgb(219,122,41)" fg:x="303759" fg:w="871"/><text x="58.6224%" y="719.50"></text></g><g><title>shrink_lock_dentry.part.0 (69 samples, 0.01%)</title><rect x="58.5265%" y="693" width="0.0133%" height="15" fill="rgb(248,140,20)" fg:x="304561" fg:w="69"/><text x="58.7765%" y="703.50"></text></g><g><title>_raw_spin_trylock (54 samples, 0.01%)</title><rect x="58.5294%" y="677" width="0.0104%" height="15" fill="rgb(245,41,37)" fg:x="304576" fg:w="54"/><text x="58.7794%" y="687.50"></text></g><g><title>do_rmdir (10,216 samples, 1.96%)</title><rect x="56.5776%" y="757" width="1.9632%" height="15" fill="rgb(235,82,39)" fg:x="294419" fg:w="10216"/><text x="56.8276%" y="767.50">d..</text></g><g><title>vfs_rmdir.part.0 (9,964 samples, 1.91%)</title><rect x="56.6260%" y="741" width="1.9148%" height="15" fill="rgb(230,108,42)" fg:x="294671" fg:w="9964"/><text x="56.8760%" y="751.50">v..</text></g><g><title>_raw_spin_lock (150 samples, 0.03%)</title><rect x="58.7481%" y="677" width="0.0288%" height="15" fill="rgb(215,150,50)" fg:x="305714" fg:w="150"/><text x="58.9981%" y="687.50"></text></g><g><title>__lookup_hash (1,167 samples, 0.22%)</title><rect x="58.5536%" y="741" width="0.2243%" height="15" fill="rgb(233,212,5)" fg:x="304702" fg:w="1167"/><text x="58.8036%" y="751.50"></text></g><g><title>lookup_dcache (1,149 samples, 0.22%)</title><rect x="58.5571%" y="725" width="0.2208%" height="15" fill="rgb(245,80,22)" fg:x="304720" fg:w="1149"/><text x="58.8071%" y="735.50"></text></g><g><title>d_lookup (1,133 samples, 0.22%)</title><rect x="58.5602%" y="709" width="0.2177%" height="15" fill="rgb(238,129,16)" fg:x="304736" fg:w="1133"/><text x="58.8102%" y="719.50"></text></g><g><title>__d_lookup (1,122 samples, 0.22%)</title><rect x="58.5623%" y="693" width="0.2156%" height="15" fill="rgb(240,19,0)" fg:x="304747" fg:w="1122"/><text x="58.8123%" y="703.50"></text></g><g><title>down_write (65 samples, 0.01%)</title><rect x="58.7783%" y="741" width="0.0125%" height="15" fill="rgb(232,42,35)" fg:x="305871" fg:w="65"/><text x="59.0283%" y="751.50"></text></g><g><title>lockref_put_or_lock (117 samples, 0.02%)</title><rect x="58.8054%" y="725" width="0.0225%" height="15" fill="rgb(223,130,24)" fg:x="306012" fg:w="117"/><text x="59.0554%" y="735.50"></text></g><g><title>dput (195 samples, 0.04%)</title><rect x="58.7908%" y="741" width="0.0375%" height="15" fill="rgb(237,16,22)" fg:x="305936" fg:w="195"/><text x="59.0408%" y="751.50"></text></g><g><title>__legitimize_mnt (72 samples, 0.01%)</title><rect x="58.8511%" y="661" width="0.0138%" height="15" fill="rgb(248,192,20)" fg:x="306250" fg:w="72"/><text x="59.1011%" y="671.50"></text></g><g><title>__legitimize_path (142 samples, 0.03%)</title><rect x="58.8492%" y="677" width="0.0273%" height="15" fill="rgb(233,167,2)" fg:x="306240" fg:w="142"/><text x="59.0992%" y="687.50"></text></g><g><title>lockref_get_not_dead (60 samples, 0.01%)</title><rect x="58.8649%" y="661" width="0.0115%" height="15" fill="rgb(252,71,44)" fg:x="306322" fg:w="60"/><text x="59.1149%" y="671.50"></text></g><g><title>complete_walk (197 samples, 0.04%)</title><rect x="58.8430%" y="709" width="0.0379%" height="15" fill="rgb(238,37,47)" fg:x="306208" fg:w="197"/><text x="59.0930%" y="719.50"></text></g><g><title>try_to_unlazy (185 samples, 0.04%)</title><rect x="58.8453%" y="693" width="0.0356%" height="15" fill="rgb(214,202,54)" fg:x="306220" fg:w="185"/><text x="59.0953%" y="703.50"></text></g><g><title>inode_permission.part.0 (60 samples, 0.01%)</title><rect x="58.8936%" y="693" width="0.0115%" height="15" fill="rgb(254,165,40)" fg:x="306471" fg:w="60"/><text x="59.1436%" y="703.50"></text></g><g><title>link_path_walk.part.0 (132 samples, 0.03%)</title><rect x="58.8809%" y="709" width="0.0254%" height="15" fill="rgb(246,173,38)" fg:x="306405" fg:w="132"/><text x="59.1309%" y="719.50"></text></g><g><title>__fget_light (209 samples, 0.04%)</title><rect x="58.9172%" y="693" width="0.0402%" height="15" fill="rgb(215,3,27)" fg:x="306594" fg:w="209"/><text x="59.1672%" y="703.50"></text></g><g><title>__fget_files (182 samples, 0.03%)</title><rect x="58.9224%" y="677" width="0.0350%" height="15" fill="rgb(239,169,51)" fg:x="306621" fg:w="182"/><text x="59.1724%" y="687.50"></text></g><g><title>path_init (311 samples, 0.06%)</title><rect x="58.9063%" y="709" width="0.0598%" height="15" fill="rgb(212,5,25)" fg:x="306537" fg:w="311"/><text x="59.1563%" y="719.50"></text></g><g><title>filename_parentat (740 samples, 0.14%)</title><rect x="58.8304%" y="741" width="0.1422%" height="15" fill="rgb(243,45,17)" fg:x="306142" fg:w="740"/><text x="59.0804%" y="751.50"></text></g><g><title>path_parentat (694 samples, 0.13%)</title><rect x="58.8392%" y="725" width="0.1334%" height="15" fill="rgb(242,97,9)" fg:x="306188" fg:w="694"/><text x="59.0892%" y="735.50"></text></g><g><title>ihold (297 samples, 0.06%)</title><rect x="58.9726%" y="741" width="0.0571%" height="15" fill="rgb(228,71,31)" fg:x="306882" fg:w="297"/><text x="59.2226%" y="751.50"></text></g><g><title>iput.part.0 (67 samples, 0.01%)</title><rect x="59.0296%" y="741" width="0.0129%" height="15" fill="rgb(252,184,16)" fg:x="307179" fg:w="67"/><text x="59.2796%" y="751.50"></text></g><g><title>_atomic_dec_and_lock (53 samples, 0.01%)</title><rect x="59.0323%" y="725" width="0.0102%" height="15" fill="rgb(236,169,46)" fg:x="307193" fg:w="53"/><text x="59.2823%" y="735.50"></text></g><g><title>kmem_cache_free (118 samples, 0.02%)</title><rect x="59.0425%" y="741" width="0.0227%" height="15" fill="rgb(207,17,47)" fg:x="307246" fg:w="118"/><text x="59.2925%" y="751.50"></text></g><g><title>__mnt_want_write (58 samples, 0.01%)</title><rect x="59.0729%" y="725" width="0.0111%" height="15" fill="rgb(206,201,28)" fg:x="307404" fg:w="58"/><text x="59.3229%" y="735.50"></text></g><g><title>mnt_want_write (90 samples, 0.02%)</title><rect x="59.0694%" y="741" width="0.0173%" height="15" fill="rgb(224,184,23)" fg:x="307386" fg:w="90"/><text x="59.3194%" y="751.50"></text></g><g><title>apparmor_path_unlink (77 samples, 0.01%)</title><rect x="59.0973%" y="725" width="0.0148%" height="15" fill="rgb(208,139,48)" fg:x="307531" fg:w="77"/><text x="59.3473%" y="735.50"></text></g><g><title>security_path_unlink (284 samples, 0.05%)</title><rect x="59.0946%" y="741" width="0.0546%" height="15" fill="rgb(208,130,10)" fg:x="307517" fg:w="284"/><text x="59.3446%" y="751.50"></text></g><g><title>tomoyo_path_unlink (193 samples, 0.04%)</title><rect x="59.1121%" y="725" width="0.0371%" height="15" fill="rgb(211,213,45)" fg:x="307608" fg:w="193"/><text x="59.3621%" y="735.50"></text></g><g><title>tomoyo_path_perm (186 samples, 0.04%)</title><rect x="59.1134%" y="709" width="0.0357%" height="15" fill="rgb(235,100,30)" fg:x="307615" fg:w="186"/><text x="59.3634%" y="719.50"></text></g><g><title>tomoyo_init_request_info (94 samples, 0.02%)</title><rect x="59.1311%" y="693" width="0.0181%" height="15" fill="rgb(206,144,31)" fg:x="307707" fg:w="94"/><text x="59.3811%" y="703.50"></text></g><g><title>up_write (57 samples, 0.01%)</title><rect x="59.1492%" y="741" width="0.0110%" height="15" fill="rgb(224,200,26)" fg:x="307801" fg:w="57"/><text x="59.3992%" y="751.50"></text></g><g><title>btrfs_put_transaction (72 samples, 0.01%)</title><rect x="59.2337%" y="693" width="0.0138%" height="15" fill="rgb(247,104,53)" fg:x="308241" fg:w="72"/><text x="59.4837%" y="703.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="59.2606%" y="661" width="0.0223%" height="15" fill="rgb(220,14,17)" fg:x="308381" fg:w="116"/><text x="59.5106%" y="671.50"></text></g><g><title>btrfs_trans_release_metadata (203 samples, 0.04%)</title><rect x="59.2497%" y="693" width="0.0390%" height="15" fill="rgb(230,140,40)" fg:x="308324" fg:w="203"/><text x="59.4997%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (196 samples, 0.04%)</title><rect x="59.2510%" y="677" width="0.0377%" height="15" fill="rgb(229,2,41)" fg:x="308331" fg:w="196"/><text x="59.5010%" y="687.50"></text></g><g><title>__btrfs_end_transaction (567 samples, 0.11%)</title><rect x="59.2012%" y="709" width="0.1090%" height="15" fill="rgb(232,89,16)" fg:x="308072" fg:w="567"/><text x="59.4512%" y="719.50"></text></g><g><title>kmem_cache_free (112 samples, 0.02%)</title><rect x="59.2887%" y="693" width="0.0215%" height="15" fill="rgb(247,59,52)" fg:x="308527" fg:w="112"/><text x="59.5387%" y="703.50"></text></g><g><title>btrfs_tree_unlock (103 samples, 0.02%)</title><rect x="59.4328%" y="645" width="0.0198%" height="15" fill="rgb(226,110,21)" fg:x="309277" fg:w="103"/><text x="59.6828%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (116 samples, 0.02%)</title><rect x="59.4536%" y="645" width="0.0223%" height="15" fill="rgb(224,176,43)" fg:x="309385" fg:w="116"/><text x="59.7036%" y="655.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="59.4578%" y="629" width="0.0181%" height="15" fill="rgb(221,73,6)" fg:x="309407" fg:w="94"/><text x="59.7078%" y="639.50"></text></g><g><title>btrfs_free_path (367 samples, 0.07%)</title><rect x="59.4224%" y="677" width="0.0705%" height="15" fill="rgb(232,78,19)" fg:x="309223" fg:w="367"/><text x="59.6724%" y="687.50"></text></g><g><title>btrfs_release_path (356 samples, 0.07%)</title><rect x="59.4245%" y="661" width="0.0684%" height="15" fill="rgb(233,112,48)" fg:x="309234" fg:w="356"/><text x="59.6745%" y="671.50"></text></g><g><title>release_extent_buffer (89 samples, 0.02%)</title><rect x="59.4758%" y="645" width="0.0171%" height="15" fill="rgb(243,131,47)" fg:x="309501" fg:w="89"/><text x="59.7258%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (59 samples, 0.01%)</title><rect x="59.5377%" y="629" width="0.0113%" height="15" fill="rgb(226,51,1)" fg:x="309823" fg:w="59"/><text x="59.7877%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (140 samples, 0.03%)</title><rect x="59.5356%" y="645" width="0.0269%" height="15" fill="rgb(247,58,7)" fg:x="309812" fg:w="140"/><text x="59.7856%" y="655.50"></text></g><g><title>btrfs_root_node (70 samples, 0.01%)</title><rect x="59.5491%" y="629" width="0.0135%" height="15" fill="rgb(209,7,32)" fg:x="309882" fg:w="70"/><text x="59.7991%" y="639.50"></text></g><g><title>__btrfs_tree_lock (82 samples, 0.02%)</title><rect x="59.5690%" y="629" width="0.0158%" height="15" fill="rgb(209,39,41)" fg:x="309986" fg:w="82"/><text x="59.8190%" y="639.50"></text></g><g><title>btrfs_lock_root_node (146 samples, 0.03%)</title><rect x="59.5669%" y="645" width="0.0281%" height="15" fill="rgb(226,182,46)" fg:x="309975" fg:w="146"/><text x="59.8169%" y="655.50"></text></g><g><title>btrfs_root_node (53 samples, 0.01%)</title><rect x="59.5848%" y="629" width="0.0102%" height="15" fill="rgb(230,219,10)" fg:x="310068" fg:w="53"/><text x="59.8348%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (74 samples, 0.01%)</title><rect x="59.5950%" y="645" width="0.0142%" height="15" fill="rgb(227,175,30)" fg:x="310121" fg:w="74"/><text x="59.8450%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (287 samples, 0.06%)</title><rect x="59.6377%" y="645" width="0.0552%" height="15" fill="rgb(217,2,50)" fg:x="310343" fg:w="287"/><text x="59.8877%" y="655.50"></text></g><g><title>__radix_tree_lookup (145 samples, 0.03%)</title><rect x="59.7247%" y="613" width="0.0279%" height="15" fill="rgb(229,160,0)" fg:x="310796" fg:w="145"/><text x="59.9747%" y="623.50"></text></g><g><title>find_extent_buffer (283 samples, 0.05%)</title><rect x="59.7149%" y="629" width="0.0544%" height="15" fill="rgb(207,78,37)" fg:x="310745" fg:w="283"/><text x="59.9649%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (87 samples, 0.02%)</title><rect x="59.7526%" y="613" width="0.0167%" height="15" fill="rgb(225,57,0)" fg:x="310941" fg:w="87"/><text x="60.0026%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (443 samples, 0.09%)</title><rect x="59.6928%" y="645" width="0.0851%" height="15" fill="rgb(232,154,2)" fg:x="310630" fg:w="443"/><text x="59.9428%" y="655.50"></text></g><g><title>btrfs_lookup_dir_index_item (1,588 samples, 0.31%)</title><rect x="59.4929%" y="677" width="0.3052%" height="15" fill="rgb(241,212,25)" fg:x="309590" fg:w="1588"/><text x="59.7429%" y="687.50"></text></g><g><title>btrfs_search_slot (1,572 samples, 0.30%)</title><rect x="59.4960%" y="661" width="0.3021%" height="15" fill="rgb(226,69,20)" fg:x="309606" fg:w="1572"/><text x="59.7460%" y="671.50"></text></g><g><title>unlock_up (63 samples, 0.01%)</title><rect x="59.7860%" y="645" width="0.0121%" height="15" fill="rgb(247,184,54)" fg:x="311115" fg:w="63"/><text x="60.0360%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (76 samples, 0.01%)</title><rect x="59.8369%" y="629" width="0.0146%" height="15" fill="rgb(210,145,0)" fg:x="311380" fg:w="76"/><text x="60.0869%" y="639.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="59.8413%" y="613" width="0.0102%" height="15" fill="rgb(253,82,12)" fg:x="311403" fg:w="53"/><text x="60.0913%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (151 samples, 0.03%)</title><rect x="59.8348%" y="645" width="0.0290%" height="15" fill="rgb(245,42,11)" fg:x="311369" fg:w="151"/><text x="60.0848%" y="655.50"></text></g><g><title>btrfs_root_node (64 samples, 0.01%)</title><rect x="59.8515%" y="629" width="0.0123%" height="15" fill="rgb(219,147,32)" fg:x="311456" fg:w="64"/><text x="60.1015%" y="639.50"></text></g><g><title>__btrfs_tree_lock (89 samples, 0.02%)</title><rect x="59.8696%" y="629" width="0.0171%" height="15" fill="rgb(246,12,7)" fg:x="311550" fg:w="89"/><text x="60.1196%" y="639.50"></text></g><g><title>btrfs_lock_root_node (155 samples, 0.03%)</title><rect x="59.8679%" y="645" width="0.0298%" height="15" fill="rgb(243,50,9)" fg:x="311541" fg:w="155"/><text x="60.1179%" y="655.50"></text></g><g><title>btrfs_root_node (57 samples, 0.01%)</title><rect x="59.8867%" y="629" width="0.0110%" height="15" fill="rgb(219,149,6)" fg:x="311639" fg:w="57"/><text x="60.1367%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (76 samples, 0.01%)</title><rect x="59.8977%" y="645" width="0.0146%" height="15" fill="rgb(241,51,42)" fg:x="311696" fg:w="76"/><text x="60.1477%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (60 samples, 0.01%)</title><rect x="59.9297%" y="645" width="0.0115%" height="15" fill="rgb(226,128,27)" fg:x="311863" fg:w="60"/><text x="60.1797%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (332 samples, 0.06%)</title><rect x="59.9413%" y="645" width="0.0638%" height="15" fill="rgb(244,144,4)" fg:x="311923" fg:w="332"/><text x="60.1913%" y="655.50"></text></g><g><title>btrfs_get_64 (61 samples, 0.01%)</title><rect x="60.0189%" y="629" width="0.0117%" height="15" fill="rgb(221,4,13)" fg:x="312327" fg:w="61"/><text x="60.2689%" y="639.50"></text></g><g><title>__radix_tree_lookup (235 samples, 0.05%)</title><rect x="60.0498%" y="613" width="0.0452%" height="15" fill="rgb(208,170,28)" fg:x="312488" fg:w="235"/><text x="60.2998%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (108 samples, 0.02%)</title><rect x="60.0950%" y="613" width="0.0208%" height="15" fill="rgb(226,131,13)" fg:x="312723" fg:w="108"/><text x="60.3450%" y="623.50"></text></g><g><title>mark_page_accessed (60 samples, 0.01%)</title><rect x="60.1042%" y="597" width="0.0115%" height="15" fill="rgb(215,72,41)" fg:x="312771" fg:w="60"/><text x="60.3542%" y="607.50"></text></g><g><title>find_extent_buffer (420 samples, 0.08%)</title><rect x="60.0354%" y="629" width="0.0807%" height="15" fill="rgb(243,108,20)" fg:x="312413" fg:w="420"/><text x="60.2854%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (630 samples, 0.12%)</title><rect x="60.0051%" y="645" width="0.1211%" height="15" fill="rgb(230,189,17)" fg:x="312255" fg:w="630"/><text x="60.2551%" y="655.50"></text></g><g><title>btrfs_search_slot (1,775 samples, 0.34%)</title><rect x="59.8050%" y="661" width="0.3411%" height="15" fill="rgb(220,50,17)" fg:x="311214" fg:w="1775"/><text x="60.0550%" y="671.50"></text></g><g><title>unlock_up (57 samples, 0.01%)</title><rect x="60.1352%" y="645" width="0.0110%" height="15" fill="rgb(248,152,48)" fg:x="312932" fg:w="57"/><text x="60.3852%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (1,841 samples, 0.35%)</title><rect x="59.7981%" y="677" width="0.3538%" height="15" fill="rgb(244,91,11)" fg:x="311178" fg:w="1841"/><text x="60.0481%" y="687.50"></text></g><g><title>btrfs_tree_unlock (121 samples, 0.02%)</title><rect x="60.1594%" y="661" width="0.0233%" height="15" fill="rgb(220,157,5)" fg:x="313058" fg:w="121"/><text x="60.4094%" y="671.50"></text></g><g><title>_raw_spin_lock (96 samples, 0.02%)</title><rect x="60.1888%" y="645" width="0.0184%" height="15" fill="rgb(253,137,8)" fg:x="313211" fg:w="96"/><text x="60.4388%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (126 samples, 0.02%)</title><rect x="60.1832%" y="661" width="0.0242%" height="15" fill="rgb(217,137,51)" fg:x="313182" fg:w="126"/><text x="60.4332%" y="671.50"></text></g><g><title>release_extent_buffer (79 samples, 0.02%)</title><rect x="60.2074%" y="661" width="0.0152%" height="15" fill="rgb(218,209,53)" fg:x="313308" fg:w="79"/><text x="60.4574%" y="671.50"></text></g><g><title>btrfs_release_path (369 samples, 0.07%)</title><rect x="60.1519%" y="677" width="0.0709%" height="15" fill="rgb(249,137,25)" fg:x="313019" fg:w="369"/><text x="60.4019%" y="687.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="60.2391%" y="661" width="0.0106%" height="15" fill="rgb(239,155,26)" fg:x="313473" fg:w="55"/><text x="60.4891%" y="671.50"></text></g><g><title>kmem_cache_alloc (148 samples, 0.03%)</title><rect x="60.2228%" y="677" width="0.0284%" height="15" fill="rgb(227,85,46)" fg:x="313388" fg:w="148"/><text x="60.4728%" y="687.50"></text></g><g><title>kmem_cache_free (93 samples, 0.02%)</title><rect x="60.2512%" y="677" width="0.0179%" height="15" fill="rgb(251,107,43)" fg:x="313536" fg:w="93"/><text x="60.5012%" y="687.50"></text></g><g><title>mutex_lock (106 samples, 0.02%)</title><rect x="60.2691%" y="677" width="0.0204%" height="15" fill="rgb(234,170,33)" fg:x="313629" fg:w="106"/><text x="60.5191%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (4,803 samples, 0.92%)</title><rect x="59.3899%" y="693" width="0.9230%" height="15" fill="rgb(206,29,35)" fg:x="309054" fg:w="4803"/><text x="59.6399%" y="703.50"></text></g><g><title>mutex_unlock (122 samples, 0.02%)</title><rect x="60.2895%" y="677" width="0.0234%" height="15" fill="rgb(227,138,25)" fg:x="313735" fg:w="122"/><text x="60.5395%" y="687.50"></text></g><g><title>btrfs_get_32 (113 samples, 0.02%)</title><rect x="60.4205%" y="661" width="0.0217%" height="15" fill="rgb(249,131,35)" fg:x="314417" fg:w="113"/><text x="60.6705%" y="671.50"></text></g><g><title>btrfs_get_token_32 (1,117 samples, 0.21%)</title><rect x="60.4423%" y="661" width="0.2147%" height="15" fill="rgb(239,6,40)" fg:x="314530" fg:w="1117"/><text x="60.6923%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (152 samples, 0.03%)</title><rect x="60.6277%" y="645" width="0.0292%" height="15" fill="rgb(246,136,47)" fg:x="315495" fg:w="152"/><text x="60.8777%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (149 samples, 0.03%)</title><rect x="60.6569%" y="661" width="0.0286%" height="15" fill="rgb(253,58,26)" fg:x="315647" fg:w="149"/><text x="60.9069%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (106 samples, 0.02%)</title><rect x="60.6652%" y="645" width="0.0204%" height="15" fill="rgb(237,141,10)" fg:x="315690" fg:w="106"/><text x="60.9152%" y="655.50"></text></g><g><title>btrfs_set_token_32 (957 samples, 0.18%)</title><rect x="60.6855%" y="661" width="0.1839%" height="15" fill="rgb(234,156,12)" fg:x="315796" fg:w="957"/><text x="60.9355%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (182 samples, 0.03%)</title><rect x="60.8345%" y="645" width="0.0350%" height="15" fill="rgb(243,224,36)" fg:x="316571" fg:w="182"/><text x="61.0845%" y="655.50"></text></g><g><title>leaf_space_used (146 samples, 0.03%)</title><rect x="60.8696%" y="661" width="0.0281%" height="15" fill="rgb(205,229,51)" fg:x="316754" fg:w="146"/><text x="61.1196%" y="671.50"></text></g><g><title>btrfs_get_32 (112 samples, 0.02%)</title><rect x="60.8762%" y="645" width="0.0215%" height="15" fill="rgb(223,189,4)" fg:x="316788" fg:w="112"/><text x="61.1262%" y="655.50"></text></g><g><title>memcpy_extent_buffer (225 samples, 0.04%)</title><rect x="60.8977%" y="661" width="0.0432%" height="15" fill="rgb(249,167,54)" fg:x="316900" fg:w="225"/><text x="61.1477%" y="671.50"></text></g><g><title>memmove (174 samples, 0.03%)</title><rect x="60.9075%" y="645" width="0.0334%" height="15" fill="rgb(218,34,28)" fg:x="316951" fg:w="174"/><text x="61.1575%" y="655.50"></text></g><g><title>copy_pages (246 samples, 0.05%)</title><rect x="60.9655%" y="645" width="0.0473%" height="15" fill="rgb(232,109,42)" fg:x="317253" fg:w="246"/><text x="61.2155%" y="655.50"></text></g><g><title>btrfs_del_items (5,487 samples, 1.05%)</title><rect x="60.3268%" y="677" width="1.0544%" height="15" fill="rgb(248,214,46)" fg:x="313929" fg:w="5487"/><text x="60.5768%" y="687.50"></text></g><g><title>memmove_extent_buffer (2,291 samples, 0.44%)</title><rect x="60.9409%" y="661" width="0.4403%" height="15" fill="rgb(244,216,40)" fg:x="317125" fg:w="2291"/><text x="61.1909%" y="671.50"></text></g><g><title>memmove (1,917 samples, 0.37%)</title><rect x="61.0128%" y="645" width="0.3684%" height="15" fill="rgb(231,226,31)" fg:x="317499" fg:w="1917"/><text x="61.2628%" y="655.50"></text></g><g><title>btrfs_get_16 (187 samples, 0.04%)</title><rect x="61.3904%" y="661" width="0.0359%" height="15" fill="rgb(238,38,43)" fg:x="319464" fg:w="187"/><text x="61.6404%" y="671.50"></text></g><g><title>btrfs_get_32 (92 samples, 0.02%)</title><rect x="61.4263%" y="661" width="0.0177%" height="15" fill="rgb(208,88,43)" fg:x="319651" fg:w="92"/><text x="61.6763%" y="671.50"></text></g><g><title>btrfs_find_name_in_backref (434 samples, 0.08%)</title><rect x="61.3812%" y="677" width="0.0834%" height="15" fill="rgb(205,136,37)" fg:x="319416" fg:w="434"/><text x="61.6312%" y="687.50"></text></g><g><title>memcmp_extent_buffer (107 samples, 0.02%)</title><rect x="61.4440%" y="661" width="0.0206%" height="15" fill="rgb(237,34,14)" fg:x="319743" fg:w="107"/><text x="61.6940%" y="671.50"></text></g><g><title>memcmp (64 samples, 0.01%)</title><rect x="61.4523%" y="645" width="0.0123%" height="15" fill="rgb(236,193,44)" fg:x="319786" fg:w="64"/><text x="61.7023%" y="655.50"></text></g><g><title>__wake_up_common (59 samples, 0.01%)</title><rect x="61.4730%" y="629" width="0.0113%" height="15" fill="rgb(231,48,10)" fg:x="319894" fg:w="59"/><text x="61.7230%" y="639.50"></text></g><g><title>autoremove_wake_function (57 samples, 0.01%)</title><rect x="61.4734%" y="613" width="0.0110%" height="15" fill="rgb(213,141,34)" fg:x="319896" fg:w="57"/><text x="61.7234%" y="623.50"></text></g><g><title>try_to_wake_up (56 samples, 0.01%)</title><rect x="61.4736%" y="597" width="0.0108%" height="15" fill="rgb(249,130,34)" fg:x="319897" fg:w="56"/><text x="61.7236%" y="607.50"></text></g><g><title>__wake_up_common_lock (63 samples, 0.01%)</title><rect x="61.4728%" y="645" width="0.0121%" height="15" fill="rgb(219,42,41)" fg:x="319893" fg:w="63"/><text x="61.7228%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (204 samples, 0.04%)</title><rect x="61.4917%" y="645" width="0.0392%" height="15" fill="rgb(224,100,54)" fg:x="319991" fg:w="204"/><text x="61.7417%" y="655.50"></text></g><g><title>_raw_spin_lock (155 samples, 0.03%)</title><rect x="61.5011%" y="629" width="0.0298%" height="15" fill="rgb(229,200,27)" fg:x="320040" fg:w="155"/><text x="61.7511%" y="639.50"></text></g><g><title>btrfs_free_path (487 samples, 0.09%)</title><rect x="61.4646%" y="677" width="0.0936%" height="15" fill="rgb(217,118,10)" fg:x="319850" fg:w="487"/><text x="61.7146%" y="687.50"></text></g><g><title>btrfs_release_path (481 samples, 0.09%)</title><rect x="61.4657%" y="661" width="0.0924%" height="15" fill="rgb(206,22,3)" fg:x="319856" fg:w="481"/><text x="61.7157%" y="671.50"></text></g><g><title>release_extent_buffer (142 samples, 0.03%)</title><rect x="61.5309%" y="645" width="0.0273%" height="15" fill="rgb(232,163,46)" fg:x="320195" fg:w="142"/><text x="61.7809%" y="655.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="61.6402%" y="629" width="0.0102%" height="15" fill="rgb(206,95,13)" fg:x="320764" fg:w="53"/><text x="61.8902%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (87 samples, 0.02%)</title><rect x="61.6358%" y="645" width="0.0167%" height="15" fill="rgb(253,154,18)" fg:x="320741" fg:w="87"/><text x="61.8858%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (167 samples, 0.03%)</title><rect x="61.6341%" y="661" width="0.0321%" height="15" fill="rgb(219,32,23)" fg:x="320732" fg:w="167"/><text x="61.8841%" y="671.50"></text></g><g><title>btrfs_root_node (71 samples, 0.01%)</title><rect x="61.6525%" y="645" width="0.0136%" height="15" fill="rgb(230,191,45)" fg:x="320828" fg:w="71"/><text x="61.9025%" y="655.50"></text></g><g><title>_raw_write_lock (69 samples, 0.01%)</title><rect x="61.6888%" y="629" width="0.0133%" height="15" fill="rgb(229,64,36)" fg:x="321017" fg:w="69"/><text x="61.9388%" y="639.50"></text></g><g><title>queued_write_lock_slowpath (62 samples, 0.01%)</title><rect x="61.7021%" y="629" width="0.0119%" height="15" fill="rgb(205,129,25)" fg:x="321086" fg:w="62"/><text x="61.9521%" y="639.50"></text></g><g><title>__btrfs_tree_lock (173 samples, 0.03%)</title><rect x="61.6810%" y="645" width="0.0332%" height="15" fill="rgb(254,112,7)" fg:x="320976" fg:w="173"/><text x="61.9310%" y="655.50"></text></g><g><title>btrfs_lock_root_node (249 samples, 0.05%)</title><rect x="61.6779%" y="661" width="0.0478%" height="15" fill="rgb(226,53,48)" fg:x="320960" fg:w="249"/><text x="61.9279%" y="671.50"></text></g><g><title>btrfs_root_node (60 samples, 0.01%)</title><rect x="61.7142%" y="645" width="0.0115%" height="15" fill="rgb(214,153,38)" fg:x="321149" fg:w="60"/><text x="61.9642%" y="655.50"></text></g><g><title>_raw_write_lock (114 samples, 0.02%)</title><rect x="61.7453%" y="645" width="0.0219%" height="15" fill="rgb(243,101,7)" fg:x="321311" fg:w="114"/><text x="61.9953%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (157 samples, 0.03%)</title><rect x="61.7392%" y="661" width="0.0302%" height="15" fill="rgb(240,140,22)" fg:x="321279" fg:w="157"/><text x="61.9892%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (69 samples, 0.01%)</title><rect x="61.7701%" y="661" width="0.0133%" height="15" fill="rgb(235,114,2)" fg:x="321440" fg:w="69"/><text x="62.0201%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (1,193 samples, 0.23%)</title><rect x="61.7834%" y="661" width="0.2293%" height="15" fill="rgb(242,59,12)" fg:x="321509" fg:w="1193"/><text x="62.0334%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (124 samples, 0.02%)</title><rect x="62.0363%" y="645" width="0.0238%" height="15" fill="rgb(252,134,9)" fg:x="322825" fg:w="124"/><text x="62.2863%" y="655.50"></text></g><g><title>verify_parent_transid (105 samples, 0.02%)</title><rect x="62.0399%" y="629" width="0.0202%" height="15" fill="rgb(236,4,44)" fg:x="322844" fg:w="105"/><text x="62.2899%" y="639.50"></text></g><g><title>btrfs_get_64 (128 samples, 0.02%)</title><rect x="62.0601%" y="645" width="0.0246%" height="15" fill="rgb(254,172,41)" fg:x="322949" fg:w="128"/><text x="62.3101%" y="655.50"></text></g><g><title>__radix_tree_lookup (563 samples, 0.11%)</title><rect x="62.1527%" y="629" width="0.1082%" height="15" fill="rgb(244,63,20)" fg:x="323431" fg:w="563"/><text x="62.4027%" y="639.50"></text></g><g><title>check_buffer_tree_ref (67 samples, 0.01%)</title><rect x="62.2703%" y="613" width="0.0129%" height="15" fill="rgb(250,73,31)" fg:x="324043" fg:w="67"/><text x="62.5203%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (322 samples, 0.06%)</title><rect x="62.2611%" y="629" width="0.0619%" height="15" fill="rgb(241,38,36)" fg:x="323995" fg:w="322"/><text x="62.5111%" y="639.50"></text></g><g><title>mark_page_accessed (207 samples, 0.04%)</title><rect x="62.2832%" y="613" width="0.0398%" height="15" fill="rgb(245,211,2)" fg:x="324110" fg:w="207"/><text x="62.5332%" y="623.50"></text></g><g><title>find_extent_buffer (1,202 samples, 0.23%)</title><rect x="62.0928%" y="645" width="0.2310%" height="15" fill="rgb(206,120,28)" fg:x="323119" fg:w="1202"/><text x="62.3428%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,784 samples, 0.34%)</title><rect x="62.0126%" y="661" width="0.3428%" height="15" fill="rgb(211,59,34)" fg:x="322702" fg:w="1784"/><text x="62.2626%" y="671.50"></text></g><g><title>read_extent_buffer (165 samples, 0.03%)</title><rect x="62.3238%" y="645" width="0.0317%" height="15" fill="rgb(233,168,5)" fg:x="324321" fg:w="165"/><text x="62.5738%" y="655.50"></text></g><g><title>find_extent_buffer (127 samples, 0.02%)</title><rect x="62.3639%" y="645" width="0.0244%" height="15" fill="rgb(234,33,13)" fg:x="324530" fg:w="127"/><text x="62.6139%" y="655.50"></text></g><g><title>reada_for_balance (191 samples, 0.04%)</title><rect x="62.3555%" y="661" width="0.0367%" height="15" fill="rgb(231,150,26)" fg:x="324486" fg:w="191"/><text x="62.6055%" y="671.50"></text></g><g><title>btrfs_search_slot (4,572 samples, 0.88%)</title><rect x="61.5741%" y="677" width="0.8786%" height="15" fill="rgb(217,191,4)" fg:x="320420" fg:w="4572"/><text x="61.8241%" y="687.50"></text></g><g><title>unlock_up (266 samples, 0.05%)</title><rect x="62.4016%" y="661" width="0.0511%" height="15" fill="rgb(246,198,38)" fg:x="324726" fg:w="266"/><text x="62.6516%" y="671.50"></text></g><g><title>kmem_cache_alloc (137 samples, 0.03%)</title><rect x="62.4529%" y="677" width="0.0263%" height="15" fill="rgb(245,64,37)" fg:x="324993" fg:w="137"/><text x="62.7029%" y="687.50"></text></g><g><title>btrfs_del_inode_ref (11,361 samples, 2.18%)</title><rect x="60.3129%" y="693" width="2.1832%" height="15" fill="rgb(250,30,36)" fg:x="313857" fg:w="11361"/><text x="60.5629%" y="703.50">b..</text></g><g><title>kmem_cache_free (88 samples, 0.02%)</title><rect x="62.4792%" y="677" width="0.0169%" height="15" fill="rgb(217,86,53)" fg:x="325130" fg:w="88"/><text x="62.7292%" y="687.50"></text></g><g><title>btrfs_get_token_32 (63 samples, 0.01%)</title><rect x="62.5271%" y="645" width="0.0121%" height="15" fill="rgb(228,157,16)" fg:x="325379" fg:w="63"/><text x="62.7771%" y="655.50"></text></g><g><title>btrfs_del_items (179 samples, 0.03%)</title><rect x="62.5232%" y="661" width="0.0344%" height="15" fill="rgb(217,59,31)" fg:x="325359" fg:w="179"/><text x="62.7732%" y="671.50"></text></g><g><title>btrfs_tree_unlock (53 samples, 0.01%)</title><rect x="62.5818%" y="629" width="0.0102%" height="15" fill="rgb(237,138,41)" fg:x="325664" fg:w="53"/><text x="62.8318%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (202 samples, 0.04%)</title><rect x="62.5947%" y="629" width="0.0388%" height="15" fill="rgb(227,91,49)" fg:x="325731" fg:w="202"/><text x="62.8447%" y="639.50"></text></g><g><title>_raw_spin_lock (162 samples, 0.03%)</title><rect x="62.6024%" y="613" width="0.0311%" height="15" fill="rgb(247,21,44)" fg:x="325771" fg:w="162"/><text x="62.8524%" y="623.50"></text></g><g><title>btrfs_free_path (580 samples, 0.11%)</title><rect x="62.5588%" y="661" width="0.1115%" height="15" fill="rgb(219,210,51)" fg:x="325544" fg:w="580"/><text x="62.8088%" y="671.50"></text></g><g><title>btrfs_release_path (561 samples, 0.11%)</title><rect x="62.5624%" y="645" width="0.1078%" height="15" fill="rgb(209,140,6)" fg:x="325563" fg:w="561"/><text x="62.8124%" y="655.50"></text></g><g><title>release_extent_buffer (191 samples, 0.04%)</title><rect x="62.6335%" y="629" width="0.0367%" height="15" fill="rgb(221,188,24)" fg:x="325933" fg:w="191"/><text x="62.8835%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (131 samples, 0.03%)</title><rect x="62.7442%" y="629" width="0.0252%" height="15" fill="rgb(232,154,20)" fg:x="326509" fg:w="131"/><text x="62.9942%" y="639.50"></text></g><g><title>_raw_read_lock (95 samples, 0.02%)</title><rect x="62.7511%" y="613" width="0.0183%" height="15" fill="rgb(244,137,50)" fg:x="326545" fg:w="95"/><text x="63.0011%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (317 samples, 0.06%)</title><rect x="62.7394%" y="645" width="0.0609%" height="15" fill="rgb(225,185,43)" fg:x="326484" fg:w="317"/><text x="62.9894%" y="655.50"></text></g><g><title>btrfs_root_node (160 samples, 0.03%)</title><rect x="62.7696%" y="629" width="0.0307%" height="15" fill="rgb(213,205,38)" fg:x="326641" fg:w="160"/><text x="63.0196%" y="639.50"></text></g><g><title>__btrfs_tree_lock (182 samples, 0.03%)</title><rect x="62.8121%" y="629" width="0.0350%" height="15" fill="rgb(236,73,12)" fg:x="326862" fg:w="182"/><text x="63.0621%" y="639.50"></text></g><g><title>_raw_write_lock (106 samples, 0.02%)</title><rect x="62.8267%" y="613" width="0.0204%" height="15" fill="rgb(235,219,13)" fg:x="326938" fg:w="106"/><text x="63.0767%" y="623.50"></text></g><g><title>btrfs_lock_root_node (321 samples, 0.06%)</title><rect x="62.8090%" y="645" width="0.0617%" height="15" fill="rgb(218,59,36)" fg:x="326846" fg:w="321"/><text x="63.0590%" y="655.50"></text></g><g><title>btrfs_root_node (123 samples, 0.02%)</title><rect x="62.8470%" y="629" width="0.0236%" height="15" fill="rgb(205,110,39)" fg:x="327044" fg:w="123"/><text x="63.0970%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (90 samples, 0.02%)</title><rect x="62.8722%" y="645" width="0.0173%" height="15" fill="rgb(218,206,42)" fg:x="327175" fg:w="90"/><text x="63.1222%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (93 samples, 0.02%)</title><rect x="62.8895%" y="645" width="0.0179%" height="15" fill="rgb(248,125,24)" fg:x="327265" fg:w="93"/><text x="63.1395%" y="655.50"></text></g><g><title>_raw_write_lock (75 samples, 0.01%)</title><rect x="62.8930%" y="629" width="0.0144%" height="15" fill="rgb(242,28,27)" fg:x="327283" fg:w="75"/><text x="63.1430%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (107 samples, 0.02%)</title><rect x="62.9091%" y="645" width="0.0206%" height="15" fill="rgb(216,228,15)" fg:x="327367" fg:w="107"/><text x="63.1591%" y="655.50"></text></g><g><title>_raw_spin_lock (87 samples, 0.02%)</title><rect x="62.9129%" y="629" width="0.0167%" height="15" fill="rgb(235,116,46)" fg:x="327387" fg:w="87"/><text x="63.1629%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,222 samples, 0.23%)</title><rect x="62.9297%" y="645" width="0.2348%" height="15" fill="rgb(224,18,32)" fg:x="327474" fg:w="1222"/><text x="63.1797%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (72 samples, 0.01%)</title><rect x="63.1875%" y="629" width="0.0138%" height="15" fill="rgb(252,5,12)" fg:x="328816" fg:w="72"/><text x="63.4375%" y="639.50"></text></g><g><title>btrfs_get_64 (97 samples, 0.02%)</title><rect x="63.2014%" y="629" width="0.0186%" height="15" fill="rgb(251,36,5)" fg:x="328888" fg:w="97"/><text x="63.4514%" y="639.50"></text></g><g><title>__radix_tree_lookup (377 samples, 0.07%)</title><rect x="63.2577%" y="613" width="0.0724%" height="15" fill="rgb(217,53,14)" fg:x="329181" fg:w="377"/><text x="63.5077%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (221 samples, 0.04%)</title><rect x="63.3303%" y="613" width="0.0425%" height="15" fill="rgb(215,86,45)" fg:x="329559" fg:w="221"/><text x="63.5803%" y="623.50"></text></g><g><title>mark_page_accessed (137 samples, 0.03%)</title><rect x="63.3465%" y="597" width="0.0263%" height="15" fill="rgb(242,169,11)" fg:x="329643" fg:w="137"/><text x="63.5965%" y="607.50"></text></g><g><title>find_extent_buffer (757 samples, 0.15%)</title><rect x="63.2283%" y="629" width="0.1455%" height="15" fill="rgb(211,213,45)" fg:x="329028" fg:w="757"/><text x="63.4783%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,205 samples, 0.23%)</title><rect x="63.1645%" y="645" width="0.2316%" height="15" fill="rgb(205,88,11)" fg:x="328696" fg:w="1205"/><text x="63.4145%" y="655.50"></text></g><g><title>read_extent_buffer (116 samples, 0.02%)</title><rect x="63.3738%" y="629" width="0.0223%" height="15" fill="rgb(252,69,26)" fg:x="329785" fg:w="116"/><text x="63.6238%" y="639.50"></text></g><g><title>release_extent_buffer (91 samples, 0.02%)</title><rect x="63.3968%" y="645" width="0.0175%" height="15" fill="rgb(246,123,37)" fg:x="329905" fg:w="91"/><text x="63.6468%" y="655.50"></text></g><g><title>btrfs_search_slot (4,030 samples, 0.77%)</title><rect x="62.6704%" y="661" width="0.7744%" height="15" fill="rgb(212,205,5)" fg:x="326125" fg:w="4030"/><text x="62.9204%" y="671.50"></text></g><g><title>unlock_up (159 samples, 0.03%)</title><rect x="63.4143%" y="645" width="0.0306%" height="15" fill="rgb(253,148,0)" fg:x="329996" fg:w="159"/><text x="63.6643%" y="655.50"></text></g><g><title>crc32c (84 samples, 0.02%)</title><rect x="63.4449%" y="661" width="0.0161%" height="15" fill="rgb(239,22,4)" fg:x="330155" fg:w="84"/><text x="63.6949%" y="671.50"></text></g><g><title>crypto_shash_update (57 samples, 0.01%)</title><rect x="63.4500%" y="645" width="0.0110%" height="15" fill="rgb(226,26,53)" fg:x="330182" fg:w="57"/><text x="63.7000%" y="655.50"></text></g><g><title>memset_erms (95 samples, 0.02%)</title><rect x="63.4935%" y="645" width="0.0183%" height="15" fill="rgb(225,229,45)" fg:x="330408" fg:w="95"/><text x="63.7435%" y="655.50"></text></g><g><title>kmem_cache_alloc (316 samples, 0.06%)</title><rect x="63.4610%" y="661" width="0.0607%" height="15" fill="rgb(220,60,37)" fg:x="330239" fg:w="316"/><text x="63.7110%" y="671.50"></text></g><g><title>btrfs_del_inode_ref (5,444 samples, 1.05%)</title><rect x="62.5134%" y="677" width="1.0462%" height="15" fill="rgb(217,180,35)" fg:x="325308" fg:w="5444"/><text x="62.7634%" y="687.50"></text></g><g><title>kmem_cache_free (197 samples, 0.04%)</title><rect x="63.5217%" y="661" width="0.0379%" height="15" fill="rgb(229,7,53)" fg:x="330555" fg:w="197"/><text x="63.7717%" y="671.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (55 samples, 0.01%)</title><rect x="63.5490%" y="645" width="0.0106%" height="15" fill="rgb(254,137,3)" fg:x="330697" fg:w="55"/><text x="63.7990%" y="655.50"></text></g><g><title>mutex_lock (105 samples, 0.02%)</title><rect x="63.5682%" y="677" width="0.0202%" height="15" fill="rgb(215,140,41)" fg:x="330797" fg:w="105"/><text x="63.8182%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (5,794 samples, 1.11%)</title><rect x="62.4961%" y="693" width="1.1134%" height="15" fill="rgb(250,80,15)" fg:x="325218" fg:w="5794"/><text x="62.7461%" y="703.50"></text></g><g><title>mutex_unlock (110 samples, 0.02%)</title><rect x="63.5884%" y="677" width="0.0211%" height="15" fill="rgb(252,191,6)" fg:x="330902" fg:w="110"/><text x="63.8384%" y="687.50"></text></g><g><title>btrfs_free_tree_block (81 samples, 0.02%)</title><rect x="63.8265%" y="661" width="0.0156%" height="15" fill="rgb(246,217,18)" fg:x="332141" fg:w="81"/><text x="64.0765%" y="671.50"></text></g><g><title>btrfs_del_leaf (94 samples, 0.02%)</title><rect x="63.8263%" y="677" width="0.0181%" height="15" fill="rgb(223,93,7)" fg:x="332140" fg:w="94"/><text x="64.0763%" y="687.50"></text></g><g><title>btrfs_get_32 (147 samples, 0.03%)</title><rect x="63.8444%" y="677" width="0.0282%" height="15" fill="rgb(225,55,52)" fg:x="332234" fg:w="147"/><text x="64.0944%" y="687.50"></text></g><g><title>btrfs_get_token_32 (3,444 samples, 0.66%)</title><rect x="63.8726%" y="677" width="0.6618%" height="15" fill="rgb(240,31,24)" fg:x="332381" fg:w="3444"/><text x="64.1226%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (481 samples, 0.09%)</title><rect x="64.4420%" y="661" width="0.0924%" height="15" fill="rgb(205,56,52)" fg:x="335344" fg:w="481"/><text x="64.6920%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (186 samples, 0.04%)</title><rect x="64.5344%" y="677" width="0.0357%" height="15" fill="rgb(246,146,12)" fg:x="335825" fg:w="186"/><text x="64.7844%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (104 samples, 0.02%)</title><rect x="64.5502%" y="661" width="0.0200%" height="15" fill="rgb(239,84,36)" fg:x="335907" fg:w="104"/><text x="64.8002%" y="671.50"></text></g><g><title>btrfs_set_token_32 (3,049 samples, 0.59%)</title><rect x="64.5710%" y="677" width="0.5859%" height="15" fill="rgb(207,41,40)" fg:x="336015" fg:w="3049"/><text x="64.8210%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (600 samples, 0.12%)</title><rect x="65.0416%" y="661" width="0.1153%" height="15" fill="rgb(241,179,25)" fg:x="338464" fg:w="600"/><text x="65.2916%" y="671.50"></text></g><g><title>leaf_space_used (135 samples, 0.03%)</title><rect x="65.1578%" y="677" width="0.0259%" height="15" fill="rgb(210,0,34)" fg:x="339069" fg:w="135"/><text x="65.4078%" y="687.50"></text></g><g><title>btrfs_get_32 (90 samples, 0.02%)</title><rect x="65.1665%" y="661" width="0.0173%" height="15" fill="rgb(225,217,29)" fg:x="339114" fg:w="90"/><text x="65.4165%" y="671.50"></text></g><g><title>copy_pages (60 samples, 0.01%)</title><rect x="65.1955%" y="661" width="0.0115%" height="15" fill="rgb(216,191,38)" fg:x="339265" fg:w="60"/><text x="65.4455%" y="671.50"></text></g><g><title>memcpy_extent_buffer (580 samples, 0.11%)</title><rect x="65.1838%" y="677" width="0.1115%" height="15" fill="rgb(232,140,52)" fg:x="339204" fg:w="580"/><text x="65.4338%" y="687.50"></text></g><g><title>memmove (459 samples, 0.09%)</title><rect x="65.2070%" y="661" width="0.0882%" height="15" fill="rgb(223,158,51)" fg:x="339325" fg:w="459"/><text x="65.4570%" y="671.50"></text></g><g><title>copy_pages (180 samples, 0.03%)</title><rect x="65.3141%" y="661" width="0.0346%" height="15" fill="rgb(235,29,51)" fg:x="339882" fg:w="180"/><text x="65.5641%" y="671.50"></text></g><g><title>memmove_extent_buffer (1,676 samples, 0.32%)</title><rect x="65.2952%" y="677" width="0.3221%" height="15" fill="rgb(215,181,18)" fg:x="339784" fg:w="1676"/><text x="65.5452%" y="687.50"></text></g><g><title>memmove (1,398 samples, 0.27%)</title><rect x="65.3487%" y="661" width="0.2686%" height="15" fill="rgb(227,125,34)" fg:x="340062" fg:w="1398"/><text x="65.5987%" y="671.50"></text></g><g><title>__push_leaf_left (116 samples, 0.02%)</title><rect x="65.6188%" y="661" width="0.0223%" height="15" fill="rgb(230,197,49)" fg:x="341468" fg:w="116"/><text x="65.8688%" y="671.50"></text></g><g><title>push_leaf_left (164 samples, 0.03%)</title><rect x="65.6173%" y="677" width="0.0315%" height="15" fill="rgb(239,141,16)" fg:x="341460" fg:w="164"/><text x="65.8673%" y="687.50"></text></g><g><title>__push_leaf_right (103 samples, 0.02%)</title><rect x="65.6496%" y="661" width="0.0198%" height="15" fill="rgb(225,105,43)" fg:x="341628" fg:w="103"/><text x="65.8996%" y="671.50"></text></g><g><title>push_leaf_right (144 samples, 0.03%)</title><rect x="65.6488%" y="677" width="0.0277%" height="15" fill="rgb(214,131,14)" fg:x="341624" fg:w="144"/><text x="65.8988%" y="687.50"></text></g><g><title>btrfs_del_items (10,767 samples, 2.07%)</title><rect x="63.6095%" y="693" width="2.0691%" height="15" fill="rgb(229,177,11)" fg:x="331012" fg:w="10767"/><text x="63.8595%" y="703.50">b..</text></g><g><title>btrfs_comp_cpu_keys (77 samples, 0.01%)</title><rect x="65.7276%" y="661" width="0.0148%" height="15" fill="rgb(231,180,14)" fg:x="342034" fg:w="77"/><text x="65.9776%" y="671.50"></text></g><g><title>__btrfs_add_delayed_item (381 samples, 0.07%)</title><rect x="65.6903%" y="677" width="0.0732%" height="15" fill="rgb(232,88,2)" fg:x="341840" fg:w="381"/><text x="65.9403%" y="687.50"></text></g><g><title>rb_insert_color (110 samples, 0.02%)</title><rect x="65.7424%" y="661" width="0.0211%" height="15" fill="rgb(205,220,8)" fg:x="342111" fg:w="110"/><text x="65.9924%" y="671.50"></text></g><g><title>mutex_lock (65 samples, 0.01%)</title><rect x="65.7914%" y="661" width="0.0125%" height="15" fill="rgb(225,23,53)" fg:x="342366" fg:w="65"/><text x="66.0414%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (264 samples, 0.05%)</title><rect x="65.7635%" y="677" width="0.0507%" height="15" fill="rgb(213,62,29)" fg:x="342221" fg:w="264"/><text x="66.0135%" y="687.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="65.8039%" y="661" width="0.0104%" height="15" fill="rgb(227,75,7)" fg:x="342431" fg:w="54"/><text x="66.0539%" y="671.50"></text></g><g><title>mutex_spin_on_owner (303 samples, 0.06%)</title><rect x="65.8154%" y="661" width="0.0582%" height="15" fill="rgb(207,105,14)" fg:x="342491" fg:w="303"/><text x="66.0654%" y="671.50"></text></g><g><title>__mutex_lock.constprop.0 (310 samples, 0.06%)</title><rect x="65.8143%" y="677" width="0.0596%" height="15" fill="rgb(245,62,29)" fg:x="342485" fg:w="310"/><text x="66.0643%" y="687.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (228 samples, 0.04%)</title><rect x="65.8739%" y="677" width="0.0438%" height="15" fill="rgb(236,202,4)" fg:x="342795" fg:w="228"/><text x="66.1239%" y="687.50"></text></g><g><title>btrfs_block_rsv_migrate (206 samples, 0.04%)</title><rect x="65.8781%" y="661" width="0.0396%" height="15" fill="rgb(250,67,1)" fg:x="342817" fg:w="206"/><text x="66.1281%" y="671.50"></text></g><g><title>_raw_spin_lock (175 samples, 0.03%)</title><rect x="65.8840%" y="645" width="0.0336%" height="15" fill="rgb(253,115,44)" fg:x="342848" fg:w="175"/><text x="66.1340%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (132 samples, 0.03%)</title><rect x="65.9177%" y="677" width="0.0254%" height="15" fill="rgb(251,139,18)" fg:x="343023" fg:w="132"/><text x="66.1677%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (114 samples, 0.02%)</title><rect x="65.9211%" y="661" width="0.0219%" height="15" fill="rgb(218,22,32)" fg:x="343041" fg:w="114"/><text x="66.1711%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (229 samples, 0.04%)</title><rect x="65.9430%" y="677" width="0.0440%" height="15" fill="rgb(243,53,5)" fg:x="343155" fg:w="229"/><text x="66.1930%" y="687.50"></text></g><g><title>mutex_lock (123 samples, 0.02%)</title><rect x="65.9870%" y="677" width="0.0236%" height="15" fill="rgb(227,56,16)" fg:x="343384" fg:w="123"/><text x="66.2370%" y="687.50"></text></g><g><title>btrfs_delete_delayed_dir_index (1,828 samples, 0.35%)</title><rect x="65.6786%" y="693" width="0.3513%" height="15" fill="rgb(245,53,0)" fg:x="341779" fg:w="1828"/><text x="65.9286%" y="703.50"></text></g><g><title>mutex_unlock (100 samples, 0.02%)</title><rect x="66.0107%" y="677" width="0.0192%" height="15" fill="rgb(216,170,35)" fg:x="343507" fg:w="100"/><text x="66.2607%" y="687.50"></text></g><g><title>btrfs_get_16 (73 samples, 0.01%)</title><rect x="66.0380%" y="677" width="0.0140%" height="15" fill="rgb(211,200,8)" fg:x="343649" fg:w="73"/><text x="66.2880%" y="687.50"></text></g><g><title>btrfs_delete_one_dir_name (142 samples, 0.03%)</title><rect x="66.0299%" y="693" width="0.0273%" height="15" fill="rgb(228,204,44)" fg:x="343607" fg:w="142"/><text x="66.2799%" y="703.50"></text></g><g><title>btrfs_get_16 (111 samples, 0.02%)</title><rect x="66.0814%" y="661" width="0.0213%" height="15" fill="rgb(214,121,17)" fg:x="343875" fg:w="111"/><text x="66.3314%" y="671.50"></text></g><g><title>btrfs_get_32 (98 samples, 0.02%)</title><rect x="66.1027%" y="661" width="0.0188%" height="15" fill="rgb(233,64,38)" fg:x="343986" fg:w="98"/><text x="66.3527%" y="671.50"></text></g><g><title>btrfs_match_dir_item_name (451 samples, 0.09%)</title><rect x="66.0687%" y="677" width="0.0867%" height="15" fill="rgb(253,54,19)" fg:x="343809" fg:w="451"/><text x="66.3187%" y="687.50"></text></g><g><title>memcmp_extent_buffer (176 samples, 0.03%)</title><rect x="66.1216%" y="661" width="0.0338%" height="15" fill="rgb(253,94,18)" fg:x="344084" fg:w="176"/><text x="66.3716%" y="671.50"></text></g><g><title>memcmp (113 samples, 0.02%)</title><rect x="66.1337%" y="645" width="0.0217%" height="15" fill="rgb(227,57,52)" fg:x="344147" fg:w="113"/><text x="66.3837%" y="655.50"></text></g><g><title>_raw_read_lock (67 samples, 0.01%)</title><rect x="66.2126%" y="629" width="0.0129%" height="15" fill="rgb(230,228,50)" fg:x="344558" fg:w="67"/><text x="66.4626%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.02%)</title><rect x="66.2092%" y="645" width="0.0173%" height="15" fill="rgb(217,205,27)" fg:x="344540" fg:w="90"/><text x="66.4592%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (206 samples, 0.04%)</title><rect x="66.2071%" y="661" width="0.0396%" height="15" fill="rgb(252,71,50)" fg:x="344529" fg:w="206"/><text x="66.4571%" y="671.50"></text></g><g><title>btrfs_root_node (105 samples, 0.02%)</title><rect x="66.2265%" y="645" width="0.0202%" height="15" fill="rgb(209,86,4)" fg:x="344630" fg:w="105"/><text x="66.4765%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (63 samples, 0.01%)</title><rect x="66.2718%" y="629" width="0.0121%" height="15" fill="rgb(229,94,0)" fg:x="344866" fg:w="63"/><text x="66.5218%" y="639.50"></text></g><g><title>__btrfs_tree_lock (141 samples, 0.03%)</title><rect x="66.2578%" y="645" width="0.0271%" height="15" fill="rgb(252,223,21)" fg:x="344793" fg:w="141"/><text x="66.5078%" y="655.50"></text></g><g><title>btrfs_lock_root_node (216 samples, 0.04%)</title><rect x="66.2549%" y="661" width="0.0415%" height="15" fill="rgb(230,210,4)" fg:x="344778" fg:w="216"/><text x="66.5049%" y="671.50"></text></g><g><title>btrfs_root_node (60 samples, 0.01%)</title><rect x="66.2849%" y="645" width="0.0115%" height="15" fill="rgb(240,149,38)" fg:x="344934" fg:w="60"/><text x="66.5349%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (57 samples, 0.01%)</title><rect x="66.2964%" y="661" width="0.0110%" height="15" fill="rgb(254,105,20)" fg:x="344994" fg:w="57"/><text x="66.5464%" y="671.50"></text></g><g><title>_raw_write_lock (80 samples, 0.02%)</title><rect x="66.3106%" y="645" width="0.0154%" height="15" fill="rgb(253,87,46)" fg:x="345068" fg:w="80"/><text x="66.5606%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (219 samples, 0.04%)</title><rect x="66.3074%" y="661" width="0.0421%" height="15" fill="rgb(253,116,33)" fg:x="345051" fg:w="219"/><text x="66.5574%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (122 samples, 0.02%)</title><rect x="66.3260%" y="645" width="0.0234%" height="15" fill="rgb(229,198,5)" fg:x="345148" fg:w="122"/><text x="66.5760%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (69 samples, 0.01%)</title><rect x="66.3497%" y="661" width="0.0133%" height="15" fill="rgb(242,38,37)" fg:x="345271" fg:w="69"/><text x="66.5997%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (1,084 samples, 0.21%)</title><rect x="66.3629%" y="661" width="0.2083%" height="15" fill="rgb(242,69,53)" fg:x="345340" fg:w="1084"/><text x="66.6129%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (57 samples, 0.01%)</title><rect x="66.5989%" y="645" width="0.0110%" height="15" fill="rgb(249,80,16)" fg:x="346568" fg:w="57"/><text x="66.8489%" y="655.50"></text></g><g><title>btrfs_get_64 (138 samples, 0.03%)</title><rect x="66.6098%" y="645" width="0.0265%" height="15" fill="rgb(206,128,11)" fg:x="346625" fg:w="138"/><text x="66.8598%" y="655.50"></text></g><g><title>__radix_tree_lookup (494 samples, 0.09%)</title><rect x="66.6788%" y="629" width="0.0949%" height="15" fill="rgb(212,35,20)" fg:x="346984" fg:w="494"/><text x="66.9288%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (243 samples, 0.05%)</title><rect x="66.7738%" y="629" width="0.0467%" height="15" fill="rgb(236,79,13)" fg:x="347478" fg:w="243"/><text x="67.0238%" y="639.50"></text></g><g><title>mark_page_accessed (154 samples, 0.03%)</title><rect x="66.7909%" y="613" width="0.0296%" height="15" fill="rgb(233,123,3)" fg:x="347567" fg:w="154"/><text x="67.0409%" y="623.50"></text></g><g><title>find_extent_buffer (906 samples, 0.17%)</title><rect x="66.6469%" y="645" width="0.1741%" height="15" fill="rgb(214,93,52)" fg:x="346818" fg:w="906"/><text x="66.8969%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,463 samples, 0.28%)</title><rect x="66.5712%" y="661" width="0.2811%" height="15" fill="rgb(251,37,40)" fg:x="346424" fg:w="1463"/><text x="66.8212%" y="671.50"></text></g><g><title>read_extent_buffer (163 samples, 0.03%)</title><rect x="66.8210%" y="645" width="0.0313%" height="15" fill="rgb(227,80,54)" fg:x="347724" fg:w="163"/><text x="67.0710%" y="655.50"></text></g><g><title>btrfs_search_slot (3,854 samples, 0.74%)</title><rect x="66.1554%" y="677" width="0.7406%" height="15" fill="rgb(254,48,11)" fg:x="344260" fg:w="3854"/><text x="66.4054%" y="687.50"></text></g><g><title>unlock_up (200 samples, 0.04%)</title><rect x="66.8576%" y="661" width="0.0384%" height="15" fill="rgb(235,193,26)" fg:x="347914" fg:w="200"/><text x="67.1076%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (4,393 samples, 0.84%)</title><rect x="66.0610%" y="693" width="0.8442%" height="15" fill="rgb(229,99,21)" fg:x="343769" fg:w="4393"/><text x="66.3110%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (184 samples, 0.04%)</title><rect x="66.9179%" y="677" width="0.0354%" height="15" fill="rgb(211,140,41)" fg:x="348228" fg:w="184"/><text x="67.1679%" y="687.50"></text></g><g><title>_raw_spin_lock (136 samples, 0.03%)</title><rect x="66.9271%" y="661" width="0.0261%" height="15" fill="rgb(240,227,30)" fg:x="348276" fg:w="136"/><text x="67.1771%" y="671.50"></text></g><g><title>btrfs_release_path (417 samples, 0.08%)</title><rect x="66.9052%" y="693" width="0.0801%" height="15" fill="rgb(215,224,45)" fg:x="348162" fg:w="417"/><text x="67.1552%" y="703.50"></text></g><g><title>release_extent_buffer (167 samples, 0.03%)</title><rect x="66.9533%" y="677" width="0.0321%" height="15" fill="rgb(206,123,31)" fg:x="348412" fg:w="167"/><text x="67.2033%" y="687.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="67.0247%" y="645" width="0.0104%" height="15" fill="rgb(210,138,16)" fg:x="348784" fg:w="54"/><text x="67.2747%" y="655.50"></text></g><g><title>mutex_lock (60 samples, 0.01%)</title><rect x="67.0353%" y="645" width="0.0115%" height="15" fill="rgb(228,57,28)" fg:x="348839" fg:w="60"/><text x="67.2853%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (280 samples, 0.05%)</title><rect x="67.0040%" y="661" width="0.0538%" height="15" fill="rgb(242,170,10)" fg:x="348676" fg:w="280"/><text x="67.2540%" y="671.50"></text></g><g><title>mutex_unlock (57 samples, 0.01%)</title><rect x="67.0468%" y="645" width="0.0110%" height="15" fill="rgb(228,214,39)" fg:x="348899" fg:w="57"/><text x="67.2968%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (62 samples, 0.01%)</title><rect x="67.0578%" y="661" width="0.0119%" height="15" fill="rgb(218,179,33)" fg:x="348956" fg:w="62"/><text x="67.3078%" y="671.50"></text></g><g><title>mutex_spin_on_owner (62 samples, 0.01%)</title><rect x="67.0578%" y="645" width="0.0119%" height="15" fill="rgb(235,193,39)" fg:x="348956" fg:w="62"/><text x="67.3078%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (101 samples, 0.02%)</title><rect x="67.0701%" y="661" width="0.0194%" height="15" fill="rgb(219,221,36)" fg:x="349020" fg:w="101"/><text x="67.3201%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (89 samples, 0.02%)</title><rect x="67.0724%" y="645" width="0.0171%" height="15" fill="rgb(248,218,19)" fg:x="349032" fg:w="89"/><text x="67.3224%" y="655.50"></text></g><g><title>inode_get_bytes (77 samples, 0.01%)</title><rect x="67.0989%" y="645" width="0.0148%" height="15" fill="rgb(205,50,9)" fg:x="349170" fg:w="77"/><text x="67.3489%" y="655.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="67.1016%" y="629" width="0.0121%" height="15" fill="rgb(238,81,28)" fg:x="349184" fg:w="63"/><text x="67.3516%" y="639.50"></text></g><g><title>fill_stack_inode_item (167 samples, 0.03%)</title><rect x="67.0895%" y="661" width="0.0321%" height="15" fill="rgb(235,110,19)" fg:x="349121" fg:w="167"/><text x="67.3395%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (746 samples, 0.14%)</title><rect x="66.9998%" y="677" width="0.1434%" height="15" fill="rgb(214,7,14)" fg:x="348654" fg:w="746"/><text x="67.2498%" y="687.50"></text></g><g><title>mutex_unlock (66 samples, 0.01%)</title><rect x="67.1304%" y="661" width="0.0127%" height="15" fill="rgb(211,77,3)" fg:x="349334" fg:w="66"/><text x="67.3804%" y="671.50"></text></g><g><title>btrfs_update_inode (984 samples, 0.19%)</title><rect x="66.9853%" y="693" width="0.1891%" height="15" fill="rgb(229,5,9)" fg:x="348579" fg:w="984"/><text x="67.2353%" y="703.50"></text></g><g><title>btrfs_update_root_times (163 samples, 0.03%)</title><rect x="67.1431%" y="677" width="0.0313%" height="15" fill="rgb(225,90,11)" fg:x="349400" fg:w="163"/><text x="67.3931%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (95 samples, 0.02%)</title><rect x="67.1562%" y="661" width="0.0183%" height="15" fill="rgb(242,56,8)" fg:x="349468" fg:w="95"/><text x="67.4062%" y="671.50"></text></g><g><title>read_tsc (55 samples, 0.01%)</title><rect x="67.1639%" y="645" width="0.0106%" height="15" fill="rgb(249,212,39)" fg:x="349508" fg:w="55"/><text x="67.4139%" y="655.50"></text></g><g><title>kmem_cache_alloc (151 samples, 0.03%)</title><rect x="67.1817%" y="693" width="0.0290%" height="15" fill="rgb(236,90,9)" fg:x="349601" fg:w="151"/><text x="67.4317%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (41,251 samples, 7.93%)</title><rect x="59.3102%" y="709" width="7.9271%" height="15" fill="rgb(206,88,35)" fg:x="308639" fg:w="41251"/><text x="59.5602%" y="719.50">__btrfs_unl..</text></g><g><title>kmem_cache_free (138 samples, 0.03%)</title><rect x="67.2108%" y="693" width="0.0265%" height="15" fill="rgb(205,126,30)" fg:x="349752" fg:w="138"/><text x="67.4608%" y="703.50"></text></g><g><title>ttwu_do_activate (63 samples, 0.01%)</title><rect x="67.2759%" y="645" width="0.0121%" height="15" fill="rgb(230,176,12)" fg:x="350091" fg:w="63"/><text x="67.5259%" y="655.50"></text></g><g><title>btrfs_btree_balance_dirty (290 samples, 0.06%)</title><rect x="67.2373%" y="709" width="0.0557%" height="15" fill="rgb(243,19,9)" fg:x="349890" fg:w="290"/><text x="67.4873%" y="719.50"></text></g><g><title>queue_work_on (199 samples, 0.04%)</title><rect x="67.2548%" y="693" width="0.0382%" height="15" fill="rgb(245,171,17)" fg:x="349981" fg:w="199"/><text x="67.5048%" y="703.50"></text></g><g><title>__queue_work (190 samples, 0.04%)</title><rect x="67.2565%" y="677" width="0.0365%" height="15" fill="rgb(227,52,21)" fg:x="349990" fg:w="190"/><text x="67.5065%" y="687.50"></text></g><g><title>try_to_wake_up (132 samples, 0.03%)</title><rect x="67.2676%" y="661" width="0.0254%" height="15" fill="rgb(238,69,14)" fg:x="350048" fg:w="132"/><text x="67.5176%" y="671.50"></text></g><g><title>mutex_lock (271 samples, 0.05%)</title><rect x="67.2990%" y="693" width="0.0521%" height="15" fill="rgb(241,156,39)" fg:x="350211" fg:w="271"/><text x="67.5490%" y="703.50"></text></g><g><title>btrfs_record_unlink_dir (427 samples, 0.08%)</title><rect x="67.2936%" y="709" width="0.0821%" height="15" fill="rgb(212,227,28)" fg:x="350183" fg:w="427"/><text x="67.5436%" y="719.50"></text></g><g><title>mutex_unlock (128 samples, 0.02%)</title><rect x="67.3510%" y="693" width="0.0246%" height="15" fill="rgb(209,118,27)" fg:x="350482" fg:w="128"/><text x="67.6010%" y="703.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="67.4663%" y="661" width="0.0119%" height="15" fill="rgb(226,102,5)" fg:x="351082" fg:w="62"/><text x="67.7163%" y="671.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="67.4788%" y="661" width="0.0123%" height="15" fill="rgb(223,34,3)" fg:x="351147" fg:w="64"/><text x="67.7288%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (406 samples, 0.08%)</title><rect x="67.4233%" y="677" width="0.0780%" height="15" fill="rgb(221,81,38)" fg:x="350858" fg:w="406"/><text x="67.6733%" y="687.50"></text></g><g><title>mutex_unlock (53 samples, 0.01%)</title><rect x="67.4911%" y="661" width="0.0102%" height="15" fill="rgb(236,219,28)" fg:x="351211" fg:w="53"/><text x="67.7411%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (163 samples, 0.03%)</title><rect x="67.5013%" y="677" width="0.0313%" height="15" fill="rgb(213,200,14)" fg:x="351264" fg:w="163"/><text x="67.7513%" y="687.50"></text></g><g><title>_raw_spin_lock (134 samples, 0.03%)</title><rect x="67.5069%" y="661" width="0.0258%" height="15" fill="rgb(240,33,19)" fg:x="351293" fg:w="134"/><text x="67.7569%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (434 samples, 0.08%)</title><rect x="67.5326%" y="677" width="0.0834%" height="15" fill="rgb(233,113,27)" fg:x="351427" fg:w="434"/><text x="67.7826%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (411 samples, 0.08%)</title><rect x="67.5371%" y="661" width="0.0790%" height="15" fill="rgb(220,221,18)" fg:x="351450" fg:w="411"/><text x="67.7871%" y="671.50"></text></g><g><title>inode_get_bytes (81 samples, 0.02%)</title><rect x="67.6258%" y="661" width="0.0156%" height="15" fill="rgb(238,92,8)" fg:x="351912" fg:w="81"/><text x="67.8758%" y="671.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="67.6287%" y="645" width="0.0127%" height="15" fill="rgb(222,164,16)" fg:x="351927" fg:w="66"/><text x="67.8787%" y="655.50"></text></g><g><title>fill_stack_inode_item (170 samples, 0.03%)</title><rect x="67.6160%" y="677" width="0.0327%" height="15" fill="rgb(241,119,3)" fg:x="351861" fg:w="170"/><text x="67.8660%" y="687.50"></text></g><g><title>mutex_lock (97 samples, 0.02%)</title><rect x="67.6487%" y="677" width="0.0186%" height="15" fill="rgb(241,44,8)" fg:x="352031" fg:w="97"/><text x="67.8987%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (1,482 samples, 0.28%)</title><rect x="67.3900%" y="693" width="0.2848%" height="15" fill="rgb(230,36,40)" fg:x="350685" fg:w="1482"/><text x="67.6400%" y="703.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="67.6781%" y="677" width="0.0102%" height="15" fill="rgb(243,16,36)" fg:x="352184" fg:w="53"/><text x="67.9281%" y="687.50"></text></g><g><title>btrfs_update_inode (1,726 samples, 0.33%)</title><rect x="67.3762%" y="709" width="0.3317%" height="15" fill="rgb(231,4,26)" fg:x="350613" fg:w="1726"/><text x="67.6262%" y="719.50"></text></g><g><title>btrfs_update_root_times (172 samples, 0.03%)</title><rect x="67.6748%" y="693" width="0.0331%" height="15" fill="rgb(240,9,31)" fg:x="352167" fg:w="172"/><text x="67.9248%" y="703.50"></text></g><g><title>ktime_get_real_ts64 (102 samples, 0.02%)</title><rect x="67.6883%" y="677" width="0.0196%" height="15" fill="rgb(207,173,15)" fg:x="352237" fg:w="102"/><text x="67.9383%" y="687.50"></text></g><g><title>read_tsc (66 samples, 0.01%)</title><rect x="67.6952%" y="661" width="0.0127%" height="15" fill="rgb(224,192,53)" fg:x="352273" fg:w="66"/><text x="67.9452%" y="671.50"></text></g><g><title>_raw_spin_lock (86 samples, 0.02%)</title><rect x="67.7765%" y="645" width="0.0165%" height="15" fill="rgb(223,67,28)" fg:x="352696" fg:w="86"/><text x="68.0265%" y="655.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (446 samples, 0.09%)</title><rect x="67.7930%" y="645" width="0.0857%" height="15" fill="rgb(211,20,47)" fg:x="352782" fg:w="446"/><text x="68.0430%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (247 samples, 0.05%)</title><rect x="67.8313%" y="629" width="0.0475%" height="15" fill="rgb(240,228,2)" fg:x="352981" fg:w="247"/><text x="68.0813%" y="639.50"></text></g><g><title>_raw_spin_lock (128 samples, 0.02%)</title><rect x="67.8541%" y="613" width="0.0246%" height="15" fill="rgb(248,151,12)" fg:x="353100" fg:w="128"/><text x="68.1041%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (883 samples, 0.17%)</title><rect x="67.7488%" y="693" width="0.1697%" height="15" fill="rgb(244,8,39)" fg:x="352552" fg:w="883"/><text x="67.9988%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (828 samples, 0.16%)</title><rect x="67.7594%" y="677" width="0.1591%" height="15" fill="rgb(222,26,8)" fg:x="352607" fg:w="828"/><text x="68.0094%" y="687.50"></text></g><g><title>__reserve_bytes (808 samples, 0.16%)</title><rect x="67.7632%" y="661" width="0.1553%" height="15" fill="rgb(213,106,44)" fg:x="352627" fg:w="808"/><text x="68.0132%" y="671.50"></text></g><g><title>calc_available_free_space.isra.0 (207 samples, 0.04%)</title><rect x="67.8787%" y="645" width="0.0398%" height="15" fill="rgb(214,129,20)" fg:x="353228" fg:w="207"/><text x="68.1287%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (124 samples, 0.02%)</title><rect x="67.8947%" y="629" width="0.0238%" height="15" fill="rgb(212,32,13)" fg:x="353311" fg:w="124"/><text x="68.1447%" y="639.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="67.9076%" y="613" width="0.0110%" height="15" fill="rgb(208,168,33)" fg:x="353378" fg:w="57"/><text x="68.1576%" y="623.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="67.9591%" y="677" width="0.0131%" height="15" fill="rgb(231,207,8)" fg:x="353646" fg:w="68"/><text x="68.2091%" y="687.50"></text></g><g><title>join_transaction (271 samples, 0.05%)</title><rect x="67.9206%" y="693" width="0.0521%" height="15" fill="rgb(235,219,23)" fg:x="353446" fg:w="271"/><text x="68.1706%" y="703.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="67.9873%" y="677" width="0.0106%" height="15" fill="rgb(226,216,26)" fg:x="353793" fg:w="55"/><text x="68.2373%" y="687.50"></text></g><g><title>kmem_cache_alloc (158 samples, 0.03%)</title><rect x="67.9727%" y="693" width="0.0304%" height="15" fill="rgb(239,137,16)" fg:x="353717" fg:w="158"/><text x="68.2227%" y="703.50"></text></g><g><title>btrfs_unlink (45,930 samples, 8.83%)</title><rect x="59.1955%" y="725" width="8.8262%" height="15" fill="rgb(207,12,36)" fg:x="308042" fg:w="45930"/><text x="59.4455%" y="735.50">btrfs_unlink</text></g><g><title>start_transaction (1,631 samples, 0.31%)</title><rect x="67.7083%" y="709" width="0.3134%" height="15" fill="rgb(210,214,24)" fg:x="352341" fg:w="1631"/><text x="67.9583%" y="719.50"></text></g><g><title>wait_current_trans (97 samples, 0.02%)</title><rect x="68.0031%" y="693" width="0.0186%" height="15" fill="rgb(206,56,30)" fg:x="353875" fg:w="97"/><text x="68.2531%" y="703.50"></text></g><g><title>_raw_spin_lock (79 samples, 0.02%)</title><rect x="68.0065%" y="677" width="0.0152%" height="15" fill="rgb(228,143,26)" fg:x="353893" fg:w="79"/><text x="68.2565%" y="687.50"></text></g><g><title>d_delete (110 samples, 0.02%)</title><rect x="68.0217%" y="725" width="0.0211%" height="15" fill="rgb(216,218,46)" fg:x="353972" fg:w="110"/><text x="68.2717%" y="735.50"></text></g><g><title>_raw_spin_lock (98 samples, 0.02%)</title><rect x="68.0240%" y="709" width="0.0188%" height="15" fill="rgb(206,6,19)" fg:x="353984" fg:w="98"/><text x="68.2740%" y="719.50"></text></g><g><title>down_write (468 samples, 0.09%)</title><rect x="68.0474%" y="725" width="0.0899%" height="15" fill="rgb(239,177,51)" fg:x="354106" fg:w="468"/><text x="68.2974%" y="735.50"></text></g><g><title>fsnotify (303 samples, 0.06%)</title><rect x="68.1374%" y="725" width="0.0582%" height="15" fill="rgb(216,55,25)" fg:x="354574" fg:w="303"/><text x="68.3874%" y="735.50"></text></g><g><title>ihold (53 samples, 0.01%)</title><rect x="68.1956%" y="725" width="0.0102%" height="15" fill="rgb(231,163,29)" fg:x="354877" fg:w="53"/><text x="68.4456%" y="735.50"></text></g><g><title>iput.part.0 (212 samples, 0.04%)</title><rect x="68.2077%" y="725" width="0.0407%" height="15" fill="rgb(232,149,50)" fg:x="354940" fg:w="212"/><text x="68.4577%" y="735.50"></text></g><g><title>_atomic_dec_and_lock (194 samples, 0.04%)</title><rect x="68.2112%" y="709" width="0.0373%" height="15" fill="rgb(223,142,48)" fg:x="354958" fg:w="194"/><text x="68.4612%" y="719.50"></text></g><g><title>inode_permission.part.0 (64 samples, 0.01%)</title><rect x="68.2552%" y="709" width="0.0123%" height="15" fill="rgb(245,83,23)" fg:x="355187" fg:w="64"/><text x="68.5052%" y="719.50"></text></g><g><title>may_delete (105 samples, 0.02%)</title><rect x="68.2485%" y="725" width="0.0202%" height="15" fill="rgb(224,63,2)" fg:x="355152" fg:w="105"/><text x="68.4985%" y="735.50"></text></g><g><title>do_unlinkat (50,707 samples, 9.74%)</title><rect x="58.5408%" y="757" width="9.7442%" height="15" fill="rgb(218,65,53)" fg:x="304635" fg:w="50707"/><text x="58.7908%" y="767.50">do_unlinkat</text></g><g><title>vfs_unlink (47,484 samples, 9.12%)</title><rect x="59.1601%" y="741" width="9.1249%" height="15" fill="rgb(221,84,29)" fg:x="307858" fg:w="47484"/><text x="59.4101%" y="751.50">vfs_unlink</text></g><g><title>up_write (73 samples, 0.01%)</title><rect x="68.2709%" y="725" width="0.0140%" height="15" fill="rgb(234,0,32)" fg:x="355269" fg:w="73"/><text x="68.5209%" y="735.50"></text></g><g><title>do_syscall_64 (62,273 samples, 11.97%)</title><rect x="56.3212%" y="773" width="11.9668%" height="15" fill="rgb(206,20,16)" fg:x="293085" fg:w="62273"/><text x="56.5712%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (62,365 samples, 11.98%)</title><rect x="56.3116%" y="789" width="11.9845%" height="15" fill="rgb(244,172,18)" fg:x="293035" fg:w="62365"/><text x="56.5616%" y="799.50">entry_SYSCALL_64_a..</text></g><g><title>__GI_unlinkat (62,811 samples, 12.07%)</title><rect x="56.2396%" y="805" width="12.0702%" height="15" fill="rgb(254,133,1)" fg:x="292660" fg:w="62811"/><text x="56.4896%" y="815.50">__GI_unlinkat</text></g><g><title>syscall_return_via_sysret (67 samples, 0.01%)</title><rect x="68.2969%" y="789" width="0.0129%" height="15" fill="rgb(222,206,41)" fg:x="355404" fg:w="67"/><text x="68.5469%" y="799.50"></text></g><g><title>__closedir (71 samples, 0.01%)</title><rect x="68.3105%" y="805" width="0.0136%" height="15" fill="rgb(212,3,42)" fg:x="355475" fg:w="71"/><text x="68.5605%" y="815.50"></text></g><g><title>_int_free (63 samples, 0.01%)</title><rect x="68.3121%" y="789" width="0.0121%" height="15" fill="rgb(241,11,4)" fg:x="355483" fg:w="63"/><text x="68.5621%" y="799.50"></text></g><g><title>__errno_location (68 samples, 0.01%)</title><rect x="68.3265%" y="805" width="0.0131%" height="15" fill="rgb(205,19,26)" fg:x="355558" fg:w="68"/><text x="68.5765%" y="815.50"></text></g><g><title>__GI___fcntl64_nocancel (58 samples, 0.01%)</title><rect x="68.3397%" y="789" width="0.0111%" height="15" fill="rgb(210,179,32)" fg:x="355627" fg:w="58"/><text x="68.5897%" y="799.50"></text></g><g><title>__fcntl64_nocancel_adjusted (56 samples, 0.01%)</title><rect x="68.3401%" y="773" width="0.0108%" height="15" fill="rgb(227,116,49)" fg:x="355629" fg:w="56"/><text x="68.5901%" y="783.50"></text></g><g><title>btrfs_getattr (53 samples, 0.01%)</title><rect x="68.3630%" y="709" width="0.0102%" height="15" fill="rgb(211,146,6)" fg:x="355748" fg:w="53"/><text x="68.6130%" y="719.50"></text></g><g><title>__do_sys_newfstat (119 samples, 0.02%)</title><rect x="68.3561%" y="741" width="0.0229%" height="15" fill="rgb(219,44,39)" fg:x="355712" fg:w="119"/><text x="68.6061%" y="751.50"></text></g><g><title>vfs_fstat (94 samples, 0.02%)</title><rect x="68.3609%" y="725" width="0.0181%" height="15" fill="rgb(234,128,11)" fg:x="355737" fg:w="94"/><text x="68.6109%" y="735.50"></text></g><g><title>do_syscall_64 (126 samples, 0.02%)</title><rect x="68.3551%" y="757" width="0.0242%" height="15" fill="rgb(220,183,53)" fg:x="355707" fg:w="126"/><text x="68.6051%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (135 samples, 0.03%)</title><rect x="68.3545%" y="773" width="0.0259%" height="15" fill="rgb(213,219,32)" fg:x="355704" fg:w="135"/><text x="68.6045%" y="783.50"></text></g><g><title>__GI___fxstat (156 samples, 0.03%)</title><rect x="68.3509%" y="789" width="0.0300%" height="15" fill="rgb(232,156,16)" fg:x="355685" fg:w="156"/><text x="68.6009%" y="799.50"></text></g><g><title>malloc_consolidate (57 samples, 0.01%)</title><rect x="68.4033%" y="741" width="0.0110%" height="15" fill="rgb(246,135,34)" fg:x="355958" fg:w="57"/><text x="68.6533%" y="751.50"></text></g><g><title>__GI___libc_malloc (131 samples, 0.03%)</title><rect x="68.3893%" y="773" width="0.0252%" height="15" fill="rgb(241,99,0)" fg:x="355885" fg:w="131"/><text x="68.6393%" y="783.50"></text></g><g><title>_int_malloc (99 samples, 0.02%)</title><rect x="68.3955%" y="757" width="0.0190%" height="15" fill="rgb(222,103,45)" fg:x="355917" fg:w="99"/><text x="68.6455%" y="767.50"></text></g><g><title>__fdopendir (392 samples, 0.08%)</title><rect x="68.3395%" y="805" width="0.0753%" height="15" fill="rgb(212,57,4)" fg:x="355626" fg:w="392"/><text x="68.5895%" y="815.50"></text></g><g><title>__alloc_dir (177 samples, 0.03%)</title><rect x="68.3809%" y="789" width="0.0340%" height="15" fill="rgb(215,68,47)" fg:x="355841" fg:w="177"/><text x="68.6309%" y="799.50"></text></g><g><title>memcg_slab_post_alloc_hook (53 samples, 0.01%)</title><rect x="68.4560%" y="645" width="0.0102%" height="15" fill="rgb(230,84,2)" fg:x="356232" fg:w="53"/><text x="68.7060%" y="655.50"></text></g><g><title>kmem_cache_alloc (147 samples, 0.03%)</title><rect x="68.4464%" y="661" width="0.0282%" height="15" fill="rgb(220,102,14)" fg:x="356182" fg:w="147"/><text x="68.6964%" y="671.50"></text></g><g><title>alloc_empty_file (206 samples, 0.04%)</title><rect x="68.4422%" y="693" width="0.0396%" height="15" fill="rgb(240,10,32)" fg:x="356160" fg:w="206"/><text x="68.6922%" y="703.50"></text></g><g><title>__alloc_file (203 samples, 0.04%)</title><rect x="68.4427%" y="677" width="0.0390%" height="15" fill="rgb(215,47,27)" fg:x="356163" fg:w="203"/><text x="68.6927%" y="687.50"></text></g><g><title>btrfs_opendir (98 samples, 0.02%)</title><rect x="68.4942%" y="677" width="0.0188%" height="15" fill="rgb(233,188,43)" fg:x="356431" fg:w="98"/><text x="68.7442%" y="687.50"></text></g><g><title>kmem_cache_alloc_trace (82 samples, 0.02%)</title><rect x="68.4973%" y="661" width="0.0158%" height="15" fill="rgb(253,190,1)" fg:x="356447" fg:w="82"/><text x="68.7473%" y="671.50"></text></g><g><title>do_dentry_open (214 samples, 0.04%)</title><rect x="68.4852%" y="693" width="0.0411%" height="15" fill="rgb(206,114,52)" fg:x="356384" fg:w="214"/><text x="68.7352%" y="703.50"></text></g><g><title>lookup_fast (68 samples, 0.01%)</title><rect x="68.5288%" y="693" width="0.0131%" height="15" fill="rgb(233,120,37)" fg:x="356611" fg:w="68"/><text x="68.7788%" y="703.50"></text></g><g><title>__d_lookup_rcu (62 samples, 0.01%)</title><rect x="68.5300%" y="677" width="0.0119%" height="15" fill="rgb(214,52,39)" fg:x="356617" fg:w="62"/><text x="68.7800%" y="687.50"></text></g><g><title>do_filp_open (614 samples, 0.12%)</title><rect x="68.4374%" y="725" width="0.1180%" height="15" fill="rgb(223,80,29)" fg:x="356135" fg:w="614"/><text x="68.6874%" y="735.50"></text></g><g><title>path_openat (606 samples, 0.12%)</title><rect x="68.4389%" y="709" width="0.1165%" height="15" fill="rgb(230,101,40)" fg:x="356143" fg:w="606"/><text x="68.6889%" y="719.50"></text></g><g><title>kmem_cache_alloc (58 samples, 0.01%)</title><rect x="68.5598%" y="709" width="0.0111%" height="15" fill="rgb(219,211,8)" fg:x="356772" fg:w="58"/><text x="68.8098%" y="719.50"></text></g><g><title>getname_flags.part.0 (103 samples, 0.02%)</title><rect x="68.5592%" y="725" width="0.0198%" height="15" fill="rgb(252,126,28)" fg:x="356769" fg:w="103"/><text x="68.8092%" y="735.50"></text></g><g><title>__x64_sys_openat (810 samples, 0.16%)</title><rect x="68.4274%" y="757" width="0.1557%" height="15" fill="rgb(215,56,38)" fg:x="356083" fg:w="810"/><text x="68.6774%" y="767.50"></text></g><g><title>do_sys_openat2 (803 samples, 0.15%)</title><rect x="68.4287%" y="741" width="0.1543%" height="15" fill="rgb(249,55,44)" fg:x="356090" fg:w="803"/><text x="68.6787%" y="751.50"></text></g><g><title>do_syscall_64 (817 samples, 0.16%)</title><rect x="68.4264%" y="773" width="0.1570%" height="15" fill="rgb(220,221,32)" fg:x="356078" fg:w="817"/><text x="68.6764%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (820 samples, 0.16%)</title><rect x="68.4264%" y="789" width="0.1576%" height="15" fill="rgb(212,216,41)" fg:x="356078" fg:w="820"/><text x="68.6764%" y="799.50"></text></g><g><title>__libc_openat64 (865 samples, 0.17%)</title><rect x="68.4189%" y="805" width="0.1662%" height="15" fill="rgb(228,213,43)" fg:x="356039" fg:w="865"/><text x="68.6689%" y="815.50"></text></g><g><title>_int_free (293 samples, 0.06%)</title><rect x="68.5967%" y="805" width="0.0563%" height="15" fill="rgb(211,31,26)" fg:x="356964" fg:w="293"/><text x="68.8467%" y="815.50"></text></g><g><title>free@plt (144 samples, 0.03%)</title><rect x="68.6555%" y="805" width="0.0277%" height="15" fill="rgb(229,202,19)" fg:x="357270" fg:w="144"/><text x="68.9055%" y="815.50"></text></g><g><title>jni_ExceptionOccurred (95 samples, 0.02%)</title><rect x="68.6831%" y="805" width="0.0183%" height="15" fill="rgb(229,105,46)" fg:x="357414" fg:w="95"/><text x="68.9331%" y="815.50"></text></g><g><title>HandleMark::pop_and_restore (103 samples, 0.02%)</title><rect x="68.7783%" y="789" width="0.0198%" height="15" fill="rgb(235,108,1)" fg:x="357909" fg:w="103"/><text x="69.0283%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (629 samples, 0.12%)</title><rect x="68.8002%" y="789" width="0.1209%" height="15" fill="rgb(245,111,35)" fg:x="358023" fg:w="629"/><text x="69.0502%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (494 samples, 0.09%)</title><rect x="68.9210%" y="789" width="0.0949%" height="15" fill="rgb(219,185,31)" fg:x="358652" fg:w="494"/><text x="69.1710%" y="799.50"></text></g><g><title>[libc-2.31.so] (236 samples, 0.05%)</title><rect x="69.0160%" y="789" width="0.0454%" height="15" fill="rgb(214,4,43)" fg:x="359146" fg:w="236"/><text x="69.2660%" y="799.50"></text></g><g><title>check_bounds (277 samples, 0.05%)</title><rect x="69.0615%" y="789" width="0.0532%" height="15" fill="rgb(235,227,40)" fg:x="359383" fg:w="277"/><text x="69.3115%" y="799.50"></text></g><g><title>jni_GetByteArrayRegion (2,209 samples, 0.42%)</title><rect x="68.7014%" y="805" width="0.4245%" height="15" fill="rgb(230,88,30)" fg:x="357509" fg:w="2209"/><text x="68.9514%" y="815.50"></text></g><g><title>memmove@plt (58 samples, 0.01%)</title><rect x="69.1147%" y="789" width="0.0111%" height="15" fill="rgb(216,217,1)" fg:x="359660" fg:w="58"/><text x="69.3647%" y="799.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (305 samples, 0.06%)</title><rect x="69.2152%" y="773" width="0.0586%" height="15" fill="rgb(248,139,50)" fg:x="360183" fg:w="305"/><text x="69.4652%" y="783.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (255 samples, 0.05%)</title><rect x="69.2249%" y="757" width="0.0490%" height="15" fill="rgb(233,1,21)" fg:x="360233" fg:w="255"/><text x="69.4749%" y="767.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (410 samples, 0.08%)</title><rect x="69.1962%" y="789" width="0.0788%" height="15" fill="rgb(215,183,12)" fg:x="360084" fg:w="410"/><text x="69.4462%" y="799.50"></text></g><g><title>HandleMark::pop_and_restore (170 samples, 0.03%)</title><rect x="69.2750%" y="789" width="0.0327%" height="15" fill="rgb(229,104,42)" fg:x="360494" fg:w="170"/><text x="69.5250%" y="799.50"></text></g><g><title>JNIHandles::make_local (310 samples, 0.06%)</title><rect x="69.3077%" y="789" width="0.0596%" height="15" fill="rgb(243,34,48)" fg:x="360664" fg:w="310"/><text x="69.5577%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (449 samples, 0.09%)</title><rect x="69.3701%" y="789" width="0.0863%" height="15" fill="rgb(239,11,44)" fg:x="360989" fg:w="449"/><text x="69.6201%" y="799.50"></text></g><g><title>jni_GetObjectField (2,239 samples, 0.43%)</title><rect x="69.1263%" y="805" width="0.4303%" height="15" fill="rgb(231,98,35)" fg:x="359720" fg:w="2239"/><text x="69.3763%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (521 samples, 0.10%)</title><rect x="69.4564%" y="789" width="0.1001%" height="15" fill="rgb(233,28,25)" fg:x="361438" fg:w="521"/><text x="69.7064%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (403 samples, 0.08%)</title><rect x="69.6340%" y="789" width="0.0774%" height="15" fill="rgb(234,123,11)" fg:x="362362" fg:w="403"/><text x="69.8840%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (667 samples, 0.13%)</title><rect x="69.7114%" y="789" width="0.1282%" height="15" fill="rgb(220,69,3)" fg:x="362765" fg:w="667"/><text x="69.9614%" y="799.50"></text></g><g><title>jni_GetStringLength (1,474 samples, 0.28%)</title><rect x="69.5565%" y="805" width="0.2833%" height="15" fill="rgb(214,64,36)" fg:x="361959" fg:w="1474"/><text x="69.8065%" y="815.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (193 samples, 0.04%)</title><rect x="70.1273%" y="741" width="0.0371%" height="15" fill="rgb(211,138,32)" fg:x="364929" fg:w="193"/><text x="70.3773%" y="751.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (164 samples, 0.03%)</title><rect x="70.1644%" y="741" width="0.0315%" height="15" fill="rgb(213,118,47)" fg:x="365122" fg:w="164"/><text x="70.4144%" y="751.50"></text></g><g><title>[libc-2.31.so] (120 samples, 0.02%)</title><rect x="70.2230%" y="725" width="0.0231%" height="15" fill="rgb(243,124,49)" fg:x="365427" fg:w="120"/><text x="70.4730%" y="735.50"></text></g><g><title>ObjAllocator::initialize (291 samples, 0.06%)</title><rect x="70.1963%" y="741" width="0.0559%" height="15" fill="rgb(221,30,28)" fg:x="365288" fg:w="291"/><text x="70.4463%" y="751.50"></text></g><g><title>__tls_get_addr (77 samples, 0.01%)</title><rect x="70.2524%" y="741" width="0.0148%" height="15" fill="rgb(246,37,13)" fg:x="365580" fg:w="77"/><text x="70.5024%" y="751.50"></text></g><g><title>CollectedHeap::obj_allocate (1,053 samples, 0.20%)</title><rect x="70.0773%" y="773" width="0.2024%" height="15" fill="rgb(249,66,14)" fg:x="364669" fg:w="1053"/><text x="70.3273%" y="783.50"></text></g><g><title>MemAllocator::allocate (1,003 samples, 0.19%)</title><rect x="70.0869%" y="757" width="0.1927%" height="15" fill="rgb(213,166,5)" fg:x="364719" fg:w="1003"/><text x="70.3369%" y="767.50"></text></g><g><title>__tls_get_addr@plt (65 samples, 0.01%)</title><rect x="70.2672%" y="741" width="0.0125%" height="15" fill="rgb(221,66,24)" fg:x="365657" fg:w="65"/><text x="70.5172%" y="751.50"></text></g><g><title>InstanceKlass::allocate_instance (1,279 samples, 0.25%)</title><rect x="70.0341%" y="789" width="0.2458%" height="15" fill="rgb(210,132,17)" fg:x="364444" fg:w="1279"/><text x="70.2841%" y="799.50"></text></g><g><title>JNIHandles::make_local (337 samples, 0.06%)</title><rect x="70.2810%" y="789" width="0.0648%" height="15" fill="rgb(243,202,5)" fg:x="365729" fg:w="337"/><text x="70.5310%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (334 samples, 0.06%)</title><rect x="70.3561%" y="789" width="0.0642%" height="15" fill="rgb(233,70,48)" fg:x="366120" fg:w="334"/><text x="70.6061%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (507 samples, 0.10%)</title><rect x="70.4203%" y="789" width="0.0974%" height="15" fill="rgb(238,41,26)" fg:x="366454" fg:w="507"/><text x="70.6703%" y="799.50"></text></g><g><title>InstanceKlass::check_valid_for_instantiation (74 samples, 0.01%)</title><rect x="70.5998%" y="773" width="0.0142%" height="15" fill="rgb(241,19,31)" fg:x="367388" fg:w="74"/><text x="70.8498%" y="783.50"></text></g><g><title>InstanceKlass::initialize (63 samples, 0.01%)</title><rect x="70.6140%" y="773" width="0.0121%" height="15" fill="rgb(214,76,10)" fg:x="367462" fg:w="63"/><text x="70.8640%" y="783.50"></text></g><g><title>alloc_object (673 samples, 0.13%)</title><rect x="70.5178%" y="789" width="0.1293%" height="15" fill="rgb(254,202,22)" fg:x="366961" fg:w="673"/><text x="70.7678%" y="799.50"></text></g><g><title>oopDesc::metadata_field (94 samples, 0.02%)</title><rect x="70.6290%" y="773" width="0.0181%" height="15" fill="rgb(214,72,24)" fg:x="367540" fg:w="94"/><text x="70.8790%" y="783.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (883 samples, 0.17%)</title><rect x="70.7947%" y="773" width="0.1697%" height="15" fill="rgb(221,92,46)" fg:x="368402" fg:w="883"/><text x="71.0447%" y="783.50"></text></g><g><title>JNIHandleBlock::release_block (129 samples, 0.02%)</title><rect x="71.1098%" y="757" width="0.0248%" height="15" fill="rgb(246,13,50)" fg:x="370042" fg:w="129"/><text x="71.3598%" y="767.50"></text></g><g><title>JavaCallArguments::parameters (281 samples, 0.05%)</title><rect x="71.1346%" y="757" width="0.0540%" height="15" fill="rgb(240,165,38)" fg:x="370171" fg:w="281"/><text x="71.3846%" y="767.50"></text></g><g><title>JNIHandleBlock::allocate_block (187 samples, 0.04%)</title><rect x="71.3014%" y="741" width="0.0359%" height="15" fill="rgb(241,24,51)" fg:x="371039" fg:w="187"/><text x="71.5514%" y="751.50"></text></g><g><title>ThreadShadow::clear_pending_exception (96 samples, 0.02%)</title><rect x="71.3379%" y="741" width="0.0184%" height="15" fill="rgb(227,51,44)" fg:x="371229" fg:w="96"/><text x="71.5879%" y="751.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (874 samples, 0.17%)</title><rect x="71.1886%" y="757" width="0.1680%" height="15" fill="rgb(231,121,3)" fg:x="370452" fg:w="874"/><text x="71.4386%" y="767.50"></text></g><g><title>JavaCalls::call_helper (2,327 samples, 0.45%)</title><rect x="70.9674%" y="773" width="0.4472%" height="15" fill="rgb(245,3,41)" fg:x="369301" fg:w="2327"/><text x="71.2174%" y="783.50"></text></g><g><title>os::stack_shadow_pages_available (274 samples, 0.05%)</title><rect x="71.3619%" y="757" width="0.0527%" height="15" fill="rgb(214,13,26)" fg:x="371354" fg:w="274"/><text x="71.6119%" y="767.50"></text></g><g><title>methodHandle::operator= (73 samples, 0.01%)</title><rect x="71.4169%" y="773" width="0.0140%" height="15" fill="rgb(252,75,11)" fg:x="371640" fg:w="73"/><text x="71.6669%" y="783.50"></text></g><g><title>methodHandle::~methodHandle (280 samples, 0.05%)</title><rect x="71.4309%" y="773" width="0.0538%" height="15" fill="rgb(218,226,17)" fg:x="371713" fg:w="280"/><text x="71.6809%" y="783.50"></text></g><g><title>jni_invoke_nonstatic (4,564 samples, 0.88%)</title><rect x="70.6475%" y="789" width="0.8770%" height="15" fill="rgb(248,89,38)" fg:x="367636" fg:w="4564"/><text x="70.8975%" y="799.50"></text></g><g><title>resource_allocate_bytes (186 samples, 0.04%)</title><rect x="71.4888%" y="773" width="0.0357%" height="15" fill="rgb(237,73,46)" fg:x="372014" fg:w="186"/><text x="71.7388%" y="783.50"></text></g><g><title>jni_NewObjectV (8,779 samples, 1.69%)</title><rect x="69.8404%" y="805" width="1.6870%" height="15" fill="rgb(242,78,33)" fg:x="363436" fg:w="8779"/><text x="70.0904%" y="815.50"></text></g><g><title>operator delete (91 samples, 0.02%)</title><rect x="71.5353%" y="805" width="0.0175%" height="15" fill="rgb(235,60,3)" fg:x="372256" fg:w="91"/><text x="71.7853%" y="815.50"></text></g><g><title>operator delete@plt (107 samples, 0.02%)</title><rect x="71.5528%" y="805" width="0.0206%" height="15" fill="rgb(216,172,19)" fg:x="372347" fg:w="107"/><text x="71.8028%" y="815.50"></text></g><g><title>operator delete[] (131 samples, 0.03%)</title><rect x="71.5733%" y="805" width="0.0252%" height="15" fill="rgb(227,6,42)" fg:x="372454" fg:w="131"/><text x="71.8233%" y="815.50"></text></g><g><title>__GI___libc_malloc (326 samples, 0.06%)</title><rect x="71.6016%" y="789" width="0.0626%" height="15" fill="rgb(223,207,42)" fg:x="372601" fg:w="326"/><text x="71.8516%" y="799.50"></text></g><g><title>tcache_get (196 samples, 0.04%)</title><rect x="71.6266%" y="773" width="0.0377%" height="15" fill="rgb(246,138,30)" fg:x="372731" fg:w="196"/><text x="71.8766%" y="783.50"></text></g><g><title>operator new (374 samples, 0.07%)</title><rect x="71.5985%" y="805" width="0.0719%" height="15" fill="rgb(251,199,47)" fg:x="372585" fg:w="374"/><text x="71.8485%" y="815.50"></text></g><g><title>_int_malloc (101 samples, 0.02%)</title><rect x="71.7109%" y="757" width="0.0194%" height="15" fill="rgb(228,218,44)" fg:x="373170" fg:w="101"/><text x="71.9609%" y="767.50"></text></g><g><title>__GI___libc_malloc (215 samples, 0.04%)</title><rect x="71.6921%" y="773" width="0.0413%" height="15" fill="rgb(220,68,6)" fg:x="373072" fg:w="215"/><text x="71.9421%" y="783.50"></text></g><g><title>operator new (230 samples, 0.04%)</title><rect x="71.6913%" y="789" width="0.0442%" height="15" fill="rgb(240,60,26)" fg:x="373068" fg:w="230"/><text x="71.9413%" y="799.50"></text></g><g><title>[libunix_jni.so] (236,965 samples, 45.54%)</title><rect x="26.1998%" y="821" width="45.5368%" height="15" fill="rgb(211,200,19)" fg:x="136339" fg:w="236965"/><text x="26.4498%" y="831.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (247 samples, 0.05%)</title><rect x="71.6892%" y="805" width="0.0475%" height="15" fill="rgb(242,145,30)" fg:x="373057" fg:w="247"/><text x="71.9392%" y="815.50"></text></g><g><title>InterpreterRuntime::_new (84 samples, 0.02%)</title><rect x="83.7836%" y="805" width="0.0161%" height="15" fill="rgb(225,64,13)" fg:x="435994" fg:w="84"/><text x="84.0336%" y="815.50"></text></g><g><title>InterpreterRuntime::anewarray (81 samples, 0.02%)</title><rect x="83.7998%" y="805" width="0.0156%" height="15" fill="rgb(218,103,35)" fg:x="436078" fg:w="81"/><text x="84.0498%" y="815.50"></text></g><g><title>TieredThresholdPolicy::event (136 samples, 0.03%)</title><rect x="83.8255%" y="773" width="0.0261%" height="15" fill="rgb(216,93,46)" fg:x="436212" fg:w="136"/><text x="84.0755%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (122 samples, 0.02%)</title><rect x="83.8282%" y="757" width="0.0234%" height="15" fill="rgb(225,159,27)" fg:x="436226" fg:w="122"/><text x="84.0782%" y="767.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (159 samples, 0.03%)</title><rect x="83.8215%" y="805" width="0.0306%" height="15" fill="rgb(225,204,11)" fg:x="436191" fg:w="159"/><text x="84.0715%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (159 samples, 0.03%)</title><rect x="83.8215%" y="789" width="0.0306%" height="15" fill="rgb(205,56,4)" fg:x="436191" fg:w="159"/><text x="84.0715%" y="799.50"></text></g><g><title>InterpreterRuntime::ldc (79 samples, 0.02%)</title><rect x="83.8520%" y="805" width="0.0152%" height="15" fill="rgb(206,6,35)" fg:x="436350" fg:w="79"/><text x="84.1020%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (159 samples, 0.03%)</title><rect x="83.8951%" y="773" width="0.0306%" height="15" fill="rgb(247,73,52)" fg:x="436574" fg:w="159"/><text x="84.1451%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (226 samples, 0.04%)</title><rect x="83.8855%" y="789" width="0.0434%" height="15" fill="rgb(246,97,4)" fg:x="436524" fg:w="226"/><text x="84.1355%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (55 samples, 0.01%)</title><rect x="83.9289%" y="789" width="0.0106%" height="15" fill="rgb(212,37,15)" fg:x="436750" fg:w="55"/><text x="84.1789%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (54 samples, 0.01%)</title><rect x="83.9291%" y="773" width="0.0104%" height="15" fill="rgb(208,130,40)" fg:x="436751" fg:w="54"/><text x="84.1791%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (54 samples, 0.01%)</title><rect x="83.9291%" y="757" width="0.0104%" height="15" fill="rgb(236,55,29)" fg:x="436751" fg:w="54"/><text x="84.1791%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (313 samples, 0.06%)</title><rect x="83.8797%" y="805" width="0.0601%" height="15" fill="rgb(209,156,45)" fg:x="436494" fg:w="313"/><text x="84.1297%" y="815.50"></text></g><g><title>JVM_Clone (59 samples, 0.01%)</title><rect x="83.9439%" y="805" width="0.0113%" height="15" fill="rgb(249,107,4)" fg:x="436828" fg:w="59"/><text x="84.1939%" y="815.50"></text></g><g><title>JVM_IHashCode (57 samples, 0.01%)</title><rect x="83.9758%" y="805" width="0.0110%" height="15" fill="rgb(227,7,13)" fg:x="436994" fg:w="57"/><text x="84.2258%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (280 samples, 0.05%)</title><rect x="84.0192%" y="677" width="0.0538%" height="15" fill="rgb(250,129,14)" fg:x="437220" fg:w="280"/><text x="84.2692%" y="687.50"></text></g><g><title>SymbolTable::lookup_only (245 samples, 0.05%)</title><rect x="84.0259%" y="661" width="0.0471%" height="15" fill="rgb(229,92,13)" fg:x="437255" fg:w="245"/><text x="84.2759%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (289 samples, 0.06%)</title><rect x="84.0181%" y="693" width="0.0555%" height="15" fill="rgb(245,98,39)" fg:x="437214" fg:w="289"/><text x="84.2681%" y="703.50"></text></g><g><title>ClassFileParser::parse_methods (54 samples, 0.01%)</title><rect x="84.0751%" y="693" width="0.0104%" height="15" fill="rgb(234,135,48)" fg:x="437511" fg:w="54"/><text x="84.3251%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (54 samples, 0.01%)</title><rect x="84.0751%" y="677" width="0.0104%" height="15" fill="rgb(230,98,28)" fg:x="437511" fg:w="54"/><text x="84.3251%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (360 samples, 0.07%)</title><rect x="84.0177%" y="725" width="0.0692%" height="15" fill="rgb(223,121,0)" fg:x="437212" fg:w="360"/><text x="84.2677%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (360 samples, 0.07%)</title><rect x="84.0177%" y="709" width="0.0692%" height="15" fill="rgb(234,173,33)" fg:x="437212" fg:w="360"/><text x="84.2677%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (59 samples, 0.01%)</title><rect x="84.0870%" y="709" width="0.0113%" height="15" fill="rgb(245,47,8)" fg:x="437573" fg:w="59"/><text x="84.3370%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (67 samples, 0.01%)</title><rect x="84.0869%" y="725" width="0.0129%" height="15" fill="rgb(205,17,20)" fg:x="437572" fg:w="67"/><text x="84.3369%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (449 samples, 0.09%)</title><rect x="84.0175%" y="741" width="0.0863%" height="15" fill="rgb(232,151,16)" fg:x="437211" fg:w="449"/><text x="84.2675%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (461 samples, 0.09%)</title><rect x="84.0165%" y="789" width="0.0886%" height="15" fill="rgb(208,30,32)" fg:x="437206" fg:w="461"/><text x="84.2665%" y="799.50"></text></g><g><title>jvm_define_class_common (461 samples, 0.09%)</title><rect x="84.0165%" y="773" width="0.0886%" height="15" fill="rgb(254,26,3)" fg:x="437206" fg:w="461"/><text x="84.2665%" y="783.50"></text></g><g><title>SystemDictionary::resolve_from_stream (457 samples, 0.09%)</title><rect x="84.0173%" y="757" width="0.0878%" height="15" fill="rgb(240,177,30)" fg:x="437210" fg:w="457"/><text x="84.2673%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (474 samples, 0.09%)</title><rect x="84.0163%" y="805" width="0.0911%" height="15" fill="rgb(248,76,44)" fg:x="437205" fg:w="474"/><text x="84.2663%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (632 samples, 0.12%)</title><rect x="84.1405%" y="709" width="0.1214%" height="15" fill="rgb(241,186,54)" fg:x="437851" fg:w="632"/><text x="84.3905%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (631 samples, 0.12%)</title><rect x="84.1407%" y="693" width="0.1213%" height="15" fill="rgb(249,171,29)" fg:x="437852" fg:w="631"/><text x="84.3907%" y="703.50"></text></g><g><title>native_write_msr (630 samples, 0.12%)</title><rect x="84.1409%" y="677" width="0.1211%" height="15" fill="rgb(237,151,44)" fg:x="437853" fg:w="630"/><text x="84.3909%" y="687.50"></text></g><g><title>__libc_vfork (743 samples, 0.14%)</title><rect x="84.1236%" y="773" width="0.1428%" height="15" fill="rgb(228,174,30)" fg:x="437763" fg:w="743"/><text x="84.3736%" y="783.50"></text></g><g><title>ret_from_fork (705 samples, 0.14%)</title><rect x="84.1309%" y="757" width="0.1355%" height="15" fill="rgb(252,14,37)" fg:x="437801" fg:w="705"/><text x="84.3809%" y="767.50"></text></g><g><title>schedule_tail (671 samples, 0.13%)</title><rect x="84.1374%" y="741" width="0.1289%" height="15" fill="rgb(207,111,40)" fg:x="437835" fg:w="671"/><text x="84.3874%" y="751.50"></text></g><g><title>finish_task_switch (667 samples, 0.13%)</title><rect x="84.1382%" y="725" width="0.1282%" height="15" fill="rgb(248,171,54)" fg:x="437839" fg:w="667"/><text x="84.3882%" y="735.50"></text></g><g><title>bprm_execve (63 samples, 0.01%)</title><rect x="84.2665%" y="661" width="0.0121%" height="15" fill="rgb(211,127,2)" fg:x="438507" fg:w="63"/><text x="84.5165%" y="671.50"></text></g><g><title>JDK_execvpe (82 samples, 0.02%)</title><rect x="84.2663%" y="757" width="0.0158%" height="15" fill="rgb(236,87,47)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="767.50"></text></g><g><title>__GI_execve (82 samples, 0.02%)</title><rect x="84.2663%" y="741" width="0.0158%" height="15" fill="rgb(223,190,45)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.02%)</title><rect x="84.2663%" y="725" width="0.0158%" height="15" fill="rgb(215,5,16)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="735.50"></text></g><g><title>do_syscall_64 (82 samples, 0.02%)</title><rect x="84.2663%" y="709" width="0.0158%" height="15" fill="rgb(252,82,33)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="719.50"></text></g><g><title>__x64_sys_execve (82 samples, 0.02%)</title><rect x="84.2663%" y="693" width="0.0158%" height="15" fill="rgb(247,213,44)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="703.50"></text></g><g><title>do_execveat_common (82 samples, 0.02%)</title><rect x="84.2663%" y="677" width="0.0158%" height="15" fill="rgb(205,196,44)" fg:x="438506" fg:w="82"/><text x="84.5163%" y="687.50"></text></g><g><title>__GI___open64_nocancel (71 samples, 0.01%)</title><rect x="84.2869%" y="725" width="0.0136%" height="15" fill="rgb(237,96,54)" fg:x="438613" fg:w="71"/><text x="84.5369%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (71 samples, 0.01%)</title><rect x="84.2869%" y="709" width="0.0136%" height="15" fill="rgb(230,113,34)" fg:x="438613" fg:w="71"/><text x="84.5369%" y="719.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="84.2871%" y="693" width="0.0135%" height="15" fill="rgb(221,224,12)" fg:x="438614" fg:w="70"/><text x="84.5371%" y="703.50"></text></g><g><title>__x64_sys_openat (69 samples, 0.01%)</title><rect x="84.2873%" y="677" width="0.0133%" height="15" fill="rgb(219,112,44)" fg:x="438615" fg:w="69"/><text x="84.5373%" y="687.50"></text></g><g><title>do_sys_openat2 (68 samples, 0.01%)</title><rect x="84.2875%" y="661" width="0.0131%" height="15" fill="rgb(210,31,13)" fg:x="438616" fg:w="68"/><text x="84.5375%" y="671.50"></text></g><g><title>__opendir (75 samples, 0.01%)</title><rect x="84.2869%" y="741" width="0.0144%" height="15" fill="rgb(230,25,16)" fg:x="438613" fg:w="75"/><text x="84.5369%" y="751.50"></text></g><g><title>closeDescriptors (87 samples, 0.02%)</title><rect x="84.2848%" y="757" width="0.0167%" height="15" fill="rgb(246,108,53)" fg:x="438602" fg:w="87"/><text x="84.5348%" y="767.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (949 samples, 0.18%)</title><rect x="84.1222%" y="805" width="0.1824%" height="15" fill="rgb(241,172,50)" fg:x="437756" fg:w="949"/><text x="84.3722%" y="815.50"></text></g><g><title>vforkChild (942 samples, 0.18%)</title><rect x="84.1236%" y="789" width="0.1810%" height="15" fill="rgb(235,141,10)" fg:x="437763" fg:w="942"/><text x="84.3736%" y="799.50"></text></g><g><title>childProcess (199 samples, 0.04%)</title><rect x="84.2663%" y="773" width="0.0382%" height="15" fill="rgb(220,174,43)" fg:x="438506" fg:w="199"/><text x="84.5163%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (54 samples, 0.01%)</title><rect x="84.3098%" y="789" width="0.0104%" height="15" fill="rgb(215,181,40)" fg:x="438732" fg:w="54"/><text x="84.5598%" y="799.50"></text></g><g><title>ObjArrayAllocator::initialize (56 samples, 0.01%)</title><rect x="84.3232%" y="741" width="0.0108%" height="15" fill="rgb(230,97,2)" fg:x="438802" fg:w="56"/><text x="84.5732%" y="751.50"></text></g><g><title>asm_exc_page_fault (53 samples, 0.01%)</title><rect x="84.3238%" y="725" width="0.0102%" height="15" fill="rgb(211,25,27)" fg:x="438805" fg:w="53"/><text x="84.5738%" y="735.50"></text></g><g><title>exc_page_fault (53 samples, 0.01%)</title><rect x="84.3238%" y="709" width="0.0102%" height="15" fill="rgb(230,87,26)" fg:x="438805" fg:w="53"/><text x="84.5738%" y="719.50"></text></g><g><title>OptoRuntime::new_array_C (130 samples, 0.02%)</title><rect x="84.3092%" y="805" width="0.0250%" height="15" fill="rgb(227,160,17)" fg:x="438729" fg:w="130"/><text x="84.5592%" y="815.50"></text></g><g><title>TypeArrayKlass::allocate_common (73 samples, 0.01%)</title><rect x="84.3201%" y="789" width="0.0140%" height="15" fill="rgb(244,85,34)" fg:x="438786" fg:w="73"/><text x="84.5701%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (73 samples, 0.01%)</title><rect x="84.3201%" y="773" width="0.0140%" height="15" fill="rgb(207,70,0)" fg:x="438786" fg:w="73"/><text x="84.5701%" y="783.50"></text></g><g><title>MemAllocator::allocate (73 samples, 0.01%)</title><rect x="84.3201%" y="757" width="0.0140%" height="15" fill="rgb(223,129,7)" fg:x="438786" fg:w="73"/><text x="84.5701%" y="767.50"></text></g><g><title>kernel_init_free_pages (54 samples, 0.01%)</title><rect x="84.3474%" y="581" width="0.0104%" height="15" fill="rgb(246,105,7)" fg:x="438928" fg:w="54"/><text x="84.5974%" y="591.50"></text></g><g><title>clear_page_erms (54 samples, 0.01%)</title><rect x="84.3474%" y="565" width="0.0104%" height="15" fill="rgb(215,154,42)" fg:x="438928" fg:w="54"/><text x="84.5974%" y="575.50"></text></g><g><title>alloc_pages_vma (60 samples, 0.01%)</title><rect x="84.3465%" y="645" width="0.0115%" height="15" fill="rgb(220,215,30)" fg:x="438923" fg:w="60"/><text x="84.5965%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (59 samples, 0.01%)</title><rect x="84.3467%" y="629" width="0.0113%" height="15" fill="rgb(228,81,51)" fg:x="438924" fg:w="59"/><text x="84.5967%" y="639.50"></text></g><g><title>get_page_from_freelist (59 samples, 0.01%)</title><rect x="84.3467%" y="613" width="0.0113%" height="15" fill="rgb(247,71,54)" fg:x="438924" fg:w="59"/><text x="84.5967%" y="623.50"></text></g><g><title>prep_new_page (55 samples, 0.01%)</title><rect x="84.3474%" y="597" width="0.0106%" height="15" fill="rgb(234,176,34)" fg:x="438928" fg:w="55"/><text x="84.5974%" y="607.50"></text></g><g><title>InstanceKlass::allocate_instance (133 samples, 0.03%)</title><rect x="84.3413%" y="789" width="0.0256%" height="15" fill="rgb(241,103,54)" fg:x="438896" fg:w="133"/><text x="84.5913%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (131 samples, 0.03%)</title><rect x="84.3417%" y="773" width="0.0252%" height="15" fill="rgb(228,22,34)" fg:x="438898" fg:w="131"/><text x="84.5917%" y="783.50"></text></g><g><title>MemAllocator::allocate (131 samples, 0.03%)</title><rect x="84.3417%" y="757" width="0.0252%" height="15" fill="rgb(241,179,48)" fg:x="438898" fg:w="131"/><text x="84.5917%" y="767.50"></text></g><g><title>ObjAllocator::initialize (108 samples, 0.02%)</title><rect x="84.3461%" y="741" width="0.0208%" height="15" fill="rgb(235,167,37)" fg:x="438921" fg:w="108"/><text x="84.5961%" y="751.50"></text></g><g><title>asm_exc_page_fault (107 samples, 0.02%)</title><rect x="84.3463%" y="725" width="0.0206%" height="15" fill="rgb(213,109,30)" fg:x="438922" fg:w="107"/><text x="84.5963%" y="735.50"></text></g><g><title>exc_page_fault (107 samples, 0.02%)</title><rect x="84.3463%" y="709" width="0.0206%" height="15" fill="rgb(222,172,16)" fg:x="438922" fg:w="107"/><text x="84.5963%" y="719.50"></text></g><g><title>do_user_addr_fault (107 samples, 0.02%)</title><rect x="84.3463%" y="693" width="0.0206%" height="15" fill="rgb(233,192,5)" fg:x="438922" fg:w="107"/><text x="84.5963%" y="703.50"></text></g><g><title>handle_mm_fault (107 samples, 0.02%)</title><rect x="84.3463%" y="677" width="0.0206%" height="15" fill="rgb(247,189,41)" fg:x="438922" fg:w="107"/><text x="84.5963%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (107 samples, 0.02%)</title><rect x="84.3463%" y="661" width="0.0206%" height="15" fill="rgb(218,134,47)" fg:x="438922" fg:w="107"/><text x="84.5963%" y="671.50"></text></g><g><title>OptoRuntime::new_instance_C (142 samples, 0.03%)</title><rect x="84.3403%" y="805" width="0.0273%" height="15" fill="rgb(216,29,3)" fg:x="438891" fg:w="142"/><text x="84.5903%" y="815.50"></text></g><g><title>TieredThresholdPolicy::event (68 samples, 0.01%)</title><rect x="84.3724%" y="789" width="0.0131%" height="15" fill="rgb(246,140,12)" fg:x="439058" fg:w="68"/><text x="84.6224%" y="799.50"></text></g><g><title>Runtime1::counter_overflow (114 samples, 0.02%)</title><rect x="84.3676%" y="805" width="0.0219%" height="15" fill="rgb(230,136,11)" fg:x="439033" fg:w="114"/><text x="84.6176%" y="815.50"></text></g><g><title>handle_mm_fault (78 samples, 0.01%)</title><rect x="84.4012%" y="677" width="0.0150%" height="15" fill="rgb(247,22,47)" fg:x="439208" fg:w="78"/><text x="84.6512%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (78 samples, 0.01%)</title><rect x="84.4012%" y="661" width="0.0150%" height="15" fill="rgb(218,84,22)" fg:x="439208" fg:w="78"/><text x="84.6512%" y="671.50"></text></g><g><title>InstanceKlass::allocate_instance (93 samples, 0.02%)</title><rect x="84.3997%" y="789" width="0.0179%" height="15" fill="rgb(216,87,39)" fg:x="439200" fg:w="93"/><text x="84.6497%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (93 samples, 0.02%)</title><rect x="84.3997%" y="773" width="0.0179%" height="15" fill="rgb(221,178,8)" fg:x="439200" fg:w="93"/><text x="84.6497%" y="783.50"></text></g><g><title>MemAllocator::allocate (93 samples, 0.02%)</title><rect x="84.3997%" y="757" width="0.0179%" height="15" fill="rgb(230,42,11)" fg:x="439200" fg:w="93"/><text x="84.6497%" y="767.50"></text></g><g><title>ObjAllocator::initialize (86 samples, 0.02%)</title><rect x="84.4010%" y="741" width="0.0165%" height="15" fill="rgb(237,229,4)" fg:x="439207" fg:w="86"/><text x="84.6510%" y="751.50"></text></g><g><title>asm_exc_page_fault (86 samples, 0.02%)</title><rect x="84.4010%" y="725" width="0.0165%" height="15" fill="rgb(222,31,33)" fg:x="439207" fg:w="86"/><text x="84.6510%" y="735.50"></text></g><g><title>exc_page_fault (86 samples, 0.02%)</title><rect x="84.4010%" y="709" width="0.0165%" height="15" fill="rgb(210,17,39)" fg:x="439207" fg:w="86"/><text x="84.6510%" y="719.50"></text></g><g><title>do_user_addr_fault (86 samples, 0.02%)</title><rect x="84.4010%" y="693" width="0.0165%" height="15" fill="rgb(244,93,20)" fg:x="439207" fg:w="86"/><text x="84.6510%" y="703.50"></text></g><g><title>Runtime1::new_instance (103 samples, 0.02%)</title><rect x="84.3991%" y="805" width="0.0198%" height="15" fill="rgb(210,40,47)" fg:x="439197" fg:w="103"/><text x="84.6491%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (64 samples, 0.01%)</title><rect x="84.4426%" y="805" width="0.0123%" height="15" fill="rgb(239,211,47)" fg:x="439423" fg:w="64"/><text x="84.6926%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (61 samples, 0.01%)</title><rect x="84.4431%" y="789" width="0.0117%" height="15" fill="rgb(251,223,49)" fg:x="439426" fg:w="61"/><text x="84.6931%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (263 samples, 0.05%)</title><rect x="84.4750%" y="581" width="0.0505%" height="15" fill="rgb(221,149,5)" fg:x="439592" fg:w="263"/><text x="84.7250%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (257 samples, 0.05%)</title><rect x="84.4762%" y="565" width="0.0494%" height="15" fill="rgb(219,224,51)" fg:x="439598" fg:w="257"/><text x="84.7262%" y="575.50"></text></g><g><title>native_write_msr (256 samples, 0.05%)</title><rect x="84.4764%" y="549" width="0.0492%" height="15" fill="rgb(223,7,8)" fg:x="439599" fg:w="256"/><text x="84.7264%" y="559.50"></text></g><g><title>finish_task_switch (277 samples, 0.05%)</title><rect x="84.4741%" y="597" width="0.0532%" height="15" fill="rgb(241,217,22)" fg:x="439587" fg:w="277"/><text x="84.7241%" y="607.50"></text></g><g><title>futex_wait_queue_me (302 samples, 0.06%)</title><rect x="84.4716%" y="645" width="0.0580%" height="15" fill="rgb(248,209,0)" fg:x="439574" fg:w="302"/><text x="84.7216%" y="655.50"></text></g><g><title>schedule (301 samples, 0.06%)</title><rect x="84.4718%" y="629" width="0.0578%" height="15" fill="rgb(217,205,4)" fg:x="439575" fg:w="301"/><text x="84.7218%" y="639.50"></text></g><g><title>__schedule (298 samples, 0.06%)</title><rect x="84.4723%" y="613" width="0.0573%" height="15" fill="rgb(228,124,39)" fg:x="439578" fg:w="298"/><text x="84.7223%" y="623.50"></text></g><g><title>do_syscall_64 (309 samples, 0.06%)</title><rect x="84.4708%" y="709" width="0.0594%" height="15" fill="rgb(250,116,42)" fg:x="439570" fg:w="309"/><text x="84.7208%" y="719.50"></text></g><g><title>__x64_sys_futex (309 samples, 0.06%)</title><rect x="84.4708%" y="693" width="0.0594%" height="15" fill="rgb(223,202,9)" fg:x="439570" fg:w="309"/><text x="84.7208%" y="703.50"></text></g><g><title>do_futex (307 samples, 0.06%)</title><rect x="84.4712%" y="677" width="0.0590%" height="15" fill="rgb(242,222,40)" fg:x="439572" fg:w="307"/><text x="84.7212%" y="687.50"></text></g><g><title>futex_wait (307 samples, 0.06%)</title><rect x="84.4712%" y="661" width="0.0590%" height="15" fill="rgb(229,99,46)" fg:x="439572" fg:w="307"/><text x="84.7212%" y="671.50"></text></g><g><title>__pthread_cond_wait (326 samples, 0.06%)</title><rect x="84.4696%" y="773" width="0.0626%" height="15" fill="rgb(225,56,46)" fg:x="439564" fg:w="326"/><text x="84.7196%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (326 samples, 0.06%)</title><rect x="84.4696%" y="757" width="0.0626%" height="15" fill="rgb(227,94,5)" fg:x="439564" fg:w="326"/><text x="84.7196%" y="767.50"></text></g><g><title>futex_wait_cancelable (324 samples, 0.06%)</title><rect x="84.4700%" y="741" width="0.0623%" height="15" fill="rgb(205,112,38)" fg:x="439566" fg:w="324"/><text x="84.7200%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (320 samples, 0.06%)</title><rect x="84.4708%" y="725" width="0.0615%" height="15" fill="rgb(231,133,46)" fg:x="439570" fg:w="320"/><text x="84.7208%" y="735.50"></text></g><g><title>Parker::park (383 samples, 0.07%)</title><rect x="84.4602%" y="789" width="0.0736%" height="15" fill="rgb(217,16,9)" fg:x="439515" fg:w="383"/><text x="84.7102%" y="799.50"></text></g><g><title>Unsafe_Park (387 samples, 0.07%)</title><rect x="84.4597%" y="805" width="0.0744%" height="15" fill="rgb(249,173,9)" fg:x="439512" fg:w="387"/><text x="84.7097%" y="815.50"></text></g><g><title>ttwu_do_activate (68 samples, 0.01%)</title><rect x="84.5544%" y="645" width="0.0131%" height="15" fill="rgb(205,163,53)" fg:x="440005" fg:w="68"/><text x="84.8044%" y="655.50"></text></g><g><title>do_syscall_64 (146 samples, 0.03%)</title><rect x="84.5413%" y="741" width="0.0281%" height="15" fill="rgb(217,54,41)" fg:x="439937" fg:w="146"/><text x="84.7913%" y="751.50"></text></g><g><title>__x64_sys_futex (145 samples, 0.03%)</title><rect x="84.5415%" y="725" width="0.0279%" height="15" fill="rgb(228,216,12)" fg:x="439938" fg:w="145"/><text x="84.7915%" y="735.50"></text></g><g><title>do_futex (145 samples, 0.03%)</title><rect x="84.5415%" y="709" width="0.0279%" height="15" fill="rgb(244,228,15)" fg:x="439938" fg:w="145"/><text x="84.7915%" y="719.50"></text></g><g><title>futex_wake (143 samples, 0.03%)</title><rect x="84.5419%" y="693" width="0.0275%" height="15" fill="rgb(221,176,53)" fg:x="439940" fg:w="143"/><text x="84.7919%" y="703.50"></text></g><g><title>wake_up_q (116 samples, 0.02%)</title><rect x="84.5471%" y="677" width="0.0223%" height="15" fill="rgb(205,94,34)" fg:x="439967" fg:w="116"/><text x="84.7971%" y="687.50"></text></g><g><title>try_to_wake_up (115 samples, 0.02%)</title><rect x="84.5473%" y="661" width="0.0221%" height="15" fill="rgb(213,110,48)" fg:x="439968" fg:w="115"/><text x="84.7973%" y="671.50"></text></g><g><title>__pthread_cond_signal (158 samples, 0.03%)</title><rect x="84.5398%" y="789" width="0.0304%" height="15" fill="rgb(236,142,28)" fg:x="439929" fg:w="158"/><text x="84.7898%" y="799.50"></text></g><g><title>futex_wake (155 samples, 0.03%)</title><rect x="84.5404%" y="773" width="0.0298%" height="15" fill="rgb(225,135,29)" fg:x="439932" fg:w="155"/><text x="84.7904%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (151 samples, 0.03%)</title><rect x="84.5411%" y="757" width="0.0290%" height="15" fill="rgb(252,45,31)" fg:x="439936" fg:w="151"/><text x="84.7911%" y="767.50"></text></g><g><title>Unsafe_Unpark (191 samples, 0.04%)</title><rect x="84.5340%" y="805" width="0.0367%" height="15" fill="rgb(211,187,50)" fg:x="439899" fg:w="191"/><text x="84.7840%" y="815.50"></text></g><g><title>__hrtimer_run_queues (63 samples, 0.01%)</title><rect x="84.5882%" y="741" width="0.0121%" height="15" fill="rgb(229,109,7)" fg:x="440181" fg:w="63"/><text x="84.8382%" y="751.50"></text></g><g><title>__sysvec_apic_timer_interrupt (68 samples, 0.01%)</title><rect x="84.5878%" y="773" width="0.0131%" height="15" fill="rgb(251,131,51)" fg:x="440179" fg:w="68"/><text x="84.8378%" y="783.50"></text></g><g><title>hrtimer_interrupt (67 samples, 0.01%)</title><rect x="84.5880%" y="757" width="0.0129%" height="15" fill="rgb(251,180,35)" fg:x="440180" fg:w="67"/><text x="84.8380%" y="767.50"></text></g><g><title>rcu_core (56 samples, 0.01%)</title><rect x="84.6011%" y="709" width="0.0108%" height="15" fill="rgb(211,46,32)" fg:x="440248" fg:w="56"/><text x="84.8511%" y="719.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (141 samples, 0.03%)</title><rect x="84.5867%" y="805" width="0.0271%" height="15" fill="rgb(248,123,17)" fg:x="440173" fg:w="141"/><text x="84.8367%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (135 samples, 0.03%)</title><rect x="84.5878%" y="789" width="0.0259%" height="15" fill="rgb(227,141,18)" fg:x="440179" fg:w="135"/><text x="84.8378%" y="799.50"></text></g><g><title>irq_exit_rcu (67 samples, 0.01%)</title><rect x="84.6009%" y="773" width="0.0129%" height="15" fill="rgb(216,102,9)" fg:x="440247" fg:w="67"/><text x="84.8509%" y="783.50"></text></g><g><title>do_softirq_own_stack (67 samples, 0.01%)</title><rect x="84.6009%" y="757" width="0.0129%" height="15" fill="rgb(253,47,13)" fg:x="440247" fg:w="67"/><text x="84.8509%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (67 samples, 0.01%)</title><rect x="84.6009%" y="741" width="0.0129%" height="15" fill="rgb(226,93,23)" fg:x="440247" fg:w="67"/><text x="84.8509%" y="751.50"></text></g><g><title>__softirqentry_text_start (67 samples, 0.01%)</title><rect x="84.6009%" y="725" width="0.0129%" height="15" fill="rgb(247,104,17)" fg:x="440247" fg:w="67"/><text x="84.8509%" y="735.50"></text></g><g><title>fileDescriptorClose (62 samples, 0.01%)</title><rect x="84.6178%" y="805" width="0.0119%" height="15" fill="rgb(233,203,26)" fg:x="440335" fg:w="62"/><text x="84.8678%" y="815.50"></text></g><g><title>do_filp_open (119 samples, 0.02%)</title><rect x="84.6455%" y="709" width="0.0229%" height="15" fill="rgb(244,98,49)" fg:x="440479" fg:w="119"/><text x="84.8955%" y="719.50"></text></g><g><title>path_openat (114 samples, 0.02%)</title><rect x="84.6464%" y="693" width="0.0219%" height="15" fill="rgb(235,134,22)" fg:x="440484" fg:w="114"/><text x="84.8964%" y="703.50"></text></g><g><title>do_syscall_64 (141 samples, 0.03%)</title><rect x="84.6430%" y="757" width="0.0271%" height="15" fill="rgb(221,70,32)" fg:x="440466" fg:w="141"/><text x="84.8930%" y="767.50"></text></g><g><title>__x64_sys_openat (141 samples, 0.03%)</title><rect x="84.6430%" y="741" width="0.0271%" height="15" fill="rgb(238,15,50)" fg:x="440466" fg:w="141"/><text x="84.8930%" y="751.50"></text></g><g><title>do_sys_openat2 (140 samples, 0.03%)</title><rect x="84.6432%" y="725" width="0.0269%" height="15" fill="rgb(215,221,48)" fg:x="440467" fg:w="140"/><text x="84.8932%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (143 samples, 0.03%)</title><rect x="84.6428%" y="773" width="0.0275%" height="15" fill="rgb(236,73,3)" fg:x="440465" fg:w="143"/><text x="84.8928%" y="783.50"></text></g><g><title>__libc_open64 (149 samples, 0.03%)</title><rect x="84.6418%" y="789" width="0.0286%" height="15" fill="rgb(250,107,11)" fg:x="440460" fg:w="149"/><text x="84.8918%" y="799.50"></text></g><g><title>fileOpen (229 samples, 0.04%)</title><rect x="84.6297%" y="805" width="0.0440%" height="15" fill="rgb(242,39,14)" fg:x="440397" fg:w="229"/><text x="84.8797%" y="815.50"></text></g><g><title>jni_IsAssignableFrom (53 samples, 0.01%)</title><rect x="84.6758%" y="805" width="0.0102%" height="15" fill="rgb(248,164,37)" fg:x="440637" fg:w="53"/><text x="84.9258%" y="815.50"></text></g><g><title>os::javaTimeNanos (1,359 samples, 0.26%)</title><rect x="84.6874%" y="805" width="0.2612%" height="15" fill="rgb(217,60,12)" fg:x="440697" fg:w="1359"/><text x="84.9374%" y="815.50"></text></g><g><title>__GI___clock_gettime (1,283 samples, 0.25%)</title><rect x="84.7020%" y="789" width="0.2466%" height="15" fill="rgb(240,125,29)" fg:x="440773" fg:w="1283"/><text x="84.9520%" y="799.50"></text></g><g><title>__vdso_clock_gettime (1,128 samples, 0.22%)</title><rect x="84.7318%" y="773" width="0.2168%" height="15" fill="rgb(208,207,28)" fg:x="440928" fg:w="1128"/><text x="84.9818%" y="783.50"></text></g><g><title>[[vdso]] (718 samples, 0.14%)</title><rect x="84.8106%" y="757" width="0.1380%" height="15" fill="rgb(209,159,27)" fg:x="441338" fg:w="718"/><text x="85.0606%" y="767.50"></text></g><g><title>[perf-261576.map] (68,753 samples, 13.21%)</title><rect x="71.7367%" y="821" width="13.2121%" height="15" fill="rgb(251,176,53)" fg:x="373304" fg:w="68753"/><text x="71.9867%" y="831.50">[perf-261576.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (145 samples, 0.03%)</title><rect x="84.9883%" y="789" width="0.0279%" height="15" fill="rgb(211,85,7)" fg:x="442263" fg:w="145"/><text x="85.2383%" y="799.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (215 samples, 0.04%)</title><rect x="84.9777%" y="805" width="0.0413%" height="15" fill="rgb(216,64,54)" fg:x="442208" fg:w="215"/><text x="85.2277%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.01%)</title><rect x="85.0212%" y="533" width="0.0102%" height="15" fill="rgb(217,54,24)" fg:x="442434" fg:w="53"/><text x="85.2712%" y="543.50"></text></g><g><title>finish_task_switch (59 samples, 0.01%)</title><rect x="85.0210%" y="549" width="0.0113%" height="15" fill="rgb(208,206,53)" fg:x="442433" fg:w="59"/><text x="85.2710%" y="559.50"></text></g><g><title>do_syscall_64 (62 samples, 0.01%)</title><rect x="85.0206%" y="661" width="0.0119%" height="15" fill="rgb(251,74,39)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="671.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="85.0206%" y="645" width="0.0119%" height="15" fill="rgb(226,47,5)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="655.50"></text></g><g><title>do_futex (62 samples, 0.01%)</title><rect x="85.0206%" y="629" width="0.0119%" height="15" fill="rgb(234,111,33)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="639.50"></text></g><g><title>futex_wait (62 samples, 0.01%)</title><rect x="85.0206%" y="613" width="0.0119%" height="15" fill="rgb(251,14,10)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="623.50"></text></g><g><title>futex_wait_queue_me (62 samples, 0.01%)</title><rect x="85.0206%" y="597" width="0.0119%" height="15" fill="rgb(232,43,0)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="607.50"></text></g><g><title>schedule (62 samples, 0.01%)</title><rect x="85.0206%" y="581" width="0.0119%" height="15" fill="rgb(222,68,43)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="591.50"></text></g><g><title>__schedule (62 samples, 0.01%)</title><rect x="85.0206%" y="565" width="0.0119%" height="15" fill="rgb(217,24,23)" fg:x="442431" fg:w="62"/><text x="85.2706%" y="575.50"></text></g><g><title>__pthread_cond_wait (65 samples, 0.01%)</title><rect x="85.0202%" y="725" width="0.0125%" height="15" fill="rgb(229,209,14)" fg:x="442429" fg:w="65"/><text x="85.2702%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (65 samples, 0.01%)</title><rect x="85.0202%" y="709" width="0.0125%" height="15" fill="rgb(250,149,48)" fg:x="442429" fg:w="65"/><text x="85.2702%" y="719.50"></text></g><g><title>futex_wait_cancelable (64 samples, 0.01%)</title><rect x="85.0204%" y="693" width="0.0123%" height="15" fill="rgb(210,120,37)" fg:x="442430" fg:w="64"/><text x="85.2704%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="85.0206%" y="677" width="0.0121%" height="15" fill="rgb(210,21,8)" fg:x="442431" fg:w="63"/><text x="85.2706%" y="687.50"></text></g><g><title>Monitor::lock_without_safepoint_check (69 samples, 0.01%)</title><rect x="85.0196%" y="773" width="0.0133%" height="15" fill="rgb(243,145,7)" fg:x="442426" fg:w="69"/><text x="85.2696%" y="783.50"></text></g><g><title>Monitor::ILock (68 samples, 0.01%)</title><rect x="85.0198%" y="757" width="0.0131%" height="15" fill="rgb(238,178,32)" fg:x="442427" fg:w="68"/><text x="85.2698%" y="767.50"></text></g><g><title>os::PlatformEvent::park (66 samples, 0.01%)</title><rect x="85.0202%" y="741" width="0.0127%" height="15" fill="rgb(222,4,10)" fg:x="442429" fg:w="66"/><text x="85.2702%" y="751.50"></text></g><g><title>SafepointSynchronize::block (79 samples, 0.02%)</title><rect x="85.0194%" y="789" width="0.0152%" height="15" fill="rgb(239,7,37)" fg:x="442425" fg:w="79"/><text x="85.2694%" y="799.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (82 samples, 0.02%)</title><rect x="85.0192%" y="805" width="0.0158%" height="15" fill="rgb(215,31,37)" fg:x="442424" fg:w="82"/><text x="85.2692%" y="815.50"></text></g><g><title>__GI___clock_gettime (184 samples, 0.04%)</title><rect x="85.0367%" y="805" width="0.0354%" height="15" fill="rgb(224,83,33)" fg:x="442515" fg:w="184"/><text x="85.2867%" y="815.50"></text></g><g><title>copy_user_enhanced_fast_string (107 samples, 0.02%)</title><rect x="85.1190%" y="629" width="0.0206%" height="15" fill="rgb(239,55,3)" fg:x="442943" fg:w="107"/><text x="85.3690%" y="639.50"></text></g><g><title>copy_page_to_iter (116 samples, 0.02%)</title><rect x="85.1176%" y="645" width="0.0223%" height="15" fill="rgb(247,92,11)" fg:x="442936" fg:w="116"/><text x="85.3676%" y="655.50"></text></g><g><title>touch_atime (96 samples, 0.02%)</title><rect x="85.1468%" y="645" width="0.0184%" height="15" fill="rgb(239,200,7)" fg:x="443088" fg:w="96"/><text x="85.3968%" y="655.50"></text></g><g><title>btrfs_dirty_inode (86 samples, 0.02%)</title><rect x="85.1488%" y="629" width="0.0165%" height="15" fill="rgb(227,115,8)" fg:x="443098" fg:w="86"/><text x="85.3988%" y="639.50"></text></g><g><title>generic_file_buffered_read (260 samples, 0.05%)</title><rect x="85.1155%" y="661" width="0.0500%" height="15" fill="rgb(215,189,27)" fg:x="442925" fg:w="260"/><text x="85.3655%" y="671.50"></text></g><g><title>new_sync_read (269 samples, 0.05%)</title><rect x="85.1140%" y="677" width="0.0517%" height="15" fill="rgb(251,216,39)" fg:x="442917" fg:w="269"/><text x="85.3640%" y="687.50"></text></g><g><title>do_syscall_64 (310 samples, 0.06%)</title><rect x="85.1082%" y="725" width="0.0596%" height="15" fill="rgb(207,29,47)" fg:x="442887" fg:w="310"/><text x="85.3582%" y="735.50"></text></g><g><title>ksys_read (309 samples, 0.06%)</title><rect x="85.1084%" y="709" width="0.0594%" height="15" fill="rgb(210,71,34)" fg:x="442888" fg:w="309"/><text x="85.3584%" y="719.50"></text></g><g><title>vfs_read (291 samples, 0.06%)</title><rect x="85.1119%" y="693" width="0.0559%" height="15" fill="rgb(253,217,51)" fg:x="442906" fg:w="291"/><text x="85.3619%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (312 samples, 0.06%)</title><rect x="85.1080%" y="741" width="0.0600%" height="15" fill="rgb(222,117,46)" fg:x="442886" fg:w="312"/><text x="85.3580%" y="751.50"></text></g><g><title>__libc_read (330 samples, 0.06%)</title><rect x="85.1050%" y="773" width="0.0634%" height="15" fill="rgb(226,132,6)" fg:x="442870" fg:w="330"/><text x="85.3550%" y="783.50"></text></g><g><title>__libc_read (330 samples, 0.06%)</title><rect x="85.1050%" y="757" width="0.0634%" height="15" fill="rgb(254,145,51)" fg:x="442870" fg:w="330"/><text x="85.3550%" y="767.50"></text></g><g><title>handleRead (332 samples, 0.06%)</title><rect x="85.1048%" y="789" width="0.0638%" height="15" fill="rgb(231,199,27)" fg:x="442869" fg:w="332"/><text x="85.3548%" y="799.50"></text></g><g><title>readBytes (407 samples, 0.08%)</title><rect x="85.1026%" y="805" width="0.0782%" height="15" fill="rgb(245,158,14)" fg:x="442858" fg:w="407"/><text x="85.3526%" y="815.50"></text></g><g><title>[unknown] (1,227 samples, 0.24%)</title><rect x="84.9487%" y="821" width="0.2358%" height="15" fill="rgb(240,113,14)" fg:x="442057" fg:w="1227"/><text x="85.1987%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (123 samples, 0.02%)</title><rect x="85.1859%" y="757" width="0.0236%" height="15" fill="rgb(210,20,13)" fg:x="443291" fg:w="123"/><text x="85.4359%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (122 samples, 0.02%)</title><rect x="85.1860%" y="741" width="0.0234%" height="15" fill="rgb(241,144,13)" fg:x="443292" fg:w="122"/><text x="85.4360%" y="751.50"></text></g><g><title>native_write_msr (121 samples, 0.02%)</title><rect x="85.1862%" y="725" width="0.0233%" height="15" fill="rgb(235,43,34)" fg:x="443293" fg:w="121"/><text x="85.4362%" y="735.50"></text></g><g><title>schedule_tail (128 samples, 0.02%)</title><rect x="85.1859%" y="789" width="0.0246%" height="15" fill="rgb(208,36,20)" fg:x="443291" fg:w="128"/><text x="85.4359%" y="799.50"></text></g><g><title>finish_task_switch (128 samples, 0.02%)</title><rect x="85.1859%" y="773" width="0.0246%" height="15" fill="rgb(239,204,10)" fg:x="443291" fg:w="128"/><text x="85.4359%" y="783.50"></text></g><g><title>ret_from_fork (130 samples, 0.02%)</title><rect x="85.1859%" y="805" width="0.0250%" height="15" fill="rgb(217,84,43)" fg:x="443291" fg:w="130"/><text x="85.4359%" y="815.50"></text></g><g><title>__GI___clone (216 samples, 0.04%)</title><rect x="85.1845%" y="821" width="0.0415%" height="15" fill="rgb(241,170,50)" fg:x="443284" fg:w="216"/><text x="85.4345%" y="831.50"></text></g><g><title>start_thread (79 samples, 0.02%)</title><rect x="85.2108%" y="805" width="0.0152%" height="15" fill="rgb(226,205,29)" fg:x="443421" fg:w="79"/><text x="85.4608%" y="815.50"></text></g><g><title>thread_native_entry (71 samples, 0.01%)</title><rect x="85.2124%" y="789" width="0.0136%" height="15" fill="rgb(233,113,1)" fg:x="443429" fg:w="71"/><text x="85.4624%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (118 samples, 0.02%)</title><rect x="85.2391%" y="821" width="0.0227%" height="15" fill="rgb(253,98,13)" fg:x="443568" fg:w="118"/><text x="85.4891%" y="831.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (353 samples, 0.07%)</title><rect x="85.2618%" y="821" width="0.0678%" height="15" fill="rgb(211,115,12)" fg:x="443686" fg:w="353"/><text x="85.5118%" y="831.50"></text></g><g><title>jni_GetStringLength (80 samples, 0.02%)</title><rect x="85.3300%" y="821" width="0.0154%" height="15" fill="rgb(208,12,16)" fg:x="444041" fg:w="80"/><text x="85.5800%" y="831.50"></text></g><g><title>skyframe-evalua (309,593 samples, 59.49%)</title><rect x="25.8685%" y="837" width="59.4935%" height="15" fill="rgb(237,193,54)" fg:x="134615" fg:w="309593"/><text x="26.1185%" y="847.50">skyframe-evalua</text></g><g><title>[perf-261576.map] (68 samples, 0.01%)</title><rect x="85.3625%" y="821" width="0.0131%" height="15" fill="rgb(243,22,42)" fg:x="444210" fg:w="68"/><text x="85.6125%" y="831.50"></text></g><g><title>skyframe-invali (99 samples, 0.02%)</title><rect x="85.3621%" y="837" width="0.0190%" height="15" fill="rgb(233,151,36)" fg:x="444208" fg:w="99"/><text x="85.6121%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (132 samples, 0.03%)</title><rect x="90.2735%" y="629" width="0.0254%" height="15" fill="rgb(237,57,45)" fg:x="469766" fg:w="132"/><text x="90.5235%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (132 samples, 0.03%)</title><rect x="90.2735%" y="613" width="0.0254%" height="15" fill="rgb(221,88,17)" fg:x="469766" fg:w="132"/><text x="90.5235%" y="623.50"></text></g><g><title>native_write_msr (130 samples, 0.02%)</title><rect x="90.2739%" y="597" width="0.0250%" height="15" fill="rgb(230,79,15)" fg:x="469768" fg:w="130"/><text x="90.5239%" y="607.50"></text></g><g><title>finish_task_switch (139 samples, 0.03%)</title><rect x="90.2731%" y="645" width="0.0267%" height="15" fill="rgb(213,57,13)" fg:x="469764" fg:w="139"/><text x="90.5231%" y="655.50"></text></g><g><title>wait_on_page_bit_common (151 samples, 0.03%)</title><rect x="90.2721%" y="709" width="0.0290%" height="15" fill="rgb(222,116,39)" fg:x="469759" fg:w="151"/><text x="90.5221%" y="719.50"></text></g><g><title>io_schedule (150 samples, 0.03%)</title><rect x="90.2723%" y="693" width="0.0288%" height="15" fill="rgb(245,107,2)" fg:x="469760" fg:w="150"/><text x="90.5223%" y="703.50"></text></g><g><title>schedule (150 samples, 0.03%)</title><rect x="90.2723%" y="677" width="0.0288%" height="15" fill="rgb(238,1,10)" fg:x="469760" fg:w="150"/><text x="90.5223%" y="687.50"></text></g><g><title>__schedule (150 samples, 0.03%)</title><rect x="90.2723%" y="661" width="0.0288%" height="15" fill="rgb(249,4,48)" fg:x="469760" fg:w="150"/><text x="90.5223%" y="671.50"></text></g><g><title>filemap_fault (183 samples, 0.04%)</title><rect x="90.2687%" y="725" width="0.0352%" height="15" fill="rgb(223,151,18)" fg:x="469741" fg:w="183"/><text x="90.5187%" y="735.50"></text></g><g><title>__do_fault (184 samples, 0.04%)</title><rect x="90.2687%" y="741" width="0.0354%" height="15" fill="rgb(227,65,43)" fg:x="469741" fg:w="184"/><text x="90.5187%" y="751.50"></text></g><g><title>__alloc_pages_nodemask (327 samples, 0.06%)</title><rect x="90.3134%" y="725" width="0.0628%" height="15" fill="rgb(218,40,45)" fg:x="469974" fg:w="327"/><text x="90.5634%" y="735.50"></text></g><g><title>get_page_from_freelist (294 samples, 0.06%)</title><rect x="90.3198%" y="709" width="0.0565%" height="15" fill="rgb(252,121,31)" fg:x="470007" fg:w="294"/><text x="90.5698%" y="719.50"></text></g><g><title>prep_new_page (191 samples, 0.04%)</title><rect x="90.3396%" y="693" width="0.0367%" height="15" fill="rgb(219,158,43)" fg:x="470110" fg:w="191"/><text x="90.5896%" y="703.50"></text></g><g><title>kernel_init_free_pages (176 samples, 0.03%)</title><rect x="90.3425%" y="677" width="0.0338%" height="15" fill="rgb(231,162,42)" fg:x="470125" fg:w="176"/><text x="90.5925%" y="687.50"></text></g><g><title>clear_page_erms (168 samples, 0.03%)</title><rect x="90.3440%" y="661" width="0.0323%" height="15" fill="rgb(217,179,25)" fg:x="470133" fg:w="168"/><text x="90.5940%" y="671.50"></text></g><g><title>alloc_pages_vma (346 samples, 0.07%)</title><rect x="90.3109%" y="741" width="0.0665%" height="15" fill="rgb(206,212,31)" fg:x="469961" fg:w="346"/><text x="90.5609%" y="751.50"></text></g><g><title>do_page_mkwrite (161 samples, 0.03%)</title><rect x="90.3932%" y="741" width="0.0309%" height="15" fill="rgb(235,144,12)" fg:x="470389" fg:w="161"/><text x="90.6432%" y="751.50"></text></g><g><title>btrfs_page_mkwrite (161 samples, 0.03%)</title><rect x="90.3932%" y="725" width="0.0309%" height="15" fill="rgb(213,51,10)" fg:x="470389" fg:w="161"/><text x="90.6432%" y="735.50"></text></g><g><title>wait_on_page_bit_common (56 samples, 0.01%)</title><rect x="90.4134%" y="709" width="0.0108%" height="15" fill="rgb(231,145,14)" fg:x="470494" fg:w="56"/><text x="90.6634%" y="719.50"></text></g><g><title>io_schedule (53 samples, 0.01%)</title><rect x="90.4139%" y="693" width="0.0102%" height="15" fill="rgb(235,15,28)" fg:x="470497" fg:w="53"/><text x="90.6639%" y="703.50"></text></g><g><title>__mod_memcg_lruvec_state (53 samples, 0.01%)</title><rect x="90.5231%" y="693" width="0.0102%" height="15" fill="rgb(237,206,10)" fg:x="471065" fg:w="53"/><text x="90.7731%" y="703.50"></text></g><g><title>page_add_file_rmap (131 samples, 0.03%)</title><rect x="90.5096%" y="709" width="0.0252%" height="15" fill="rgb(236,227,27)" fg:x="470995" fg:w="131"/><text x="90.7596%" y="719.50"></text></g><g><title>alloc_set_pte (198 samples, 0.04%)</title><rect x="90.4975%" y="725" width="0.0380%" height="15" fill="rgb(246,83,35)" fg:x="470932" fg:w="198"/><text x="90.7475%" y="735.50"></text></g><g><title>filemap_map_pages (657 samples, 0.13%)</title><rect x="90.4278%" y="741" width="0.1263%" height="15" fill="rgb(220,136,24)" fg:x="470569" fg:w="657"/><text x="90.6778%" y="751.50"></text></g><g><title>__pagevec_lru_add_fn (70 samples, 0.01%)</title><rect x="90.5575%" y="709" width="0.0135%" height="15" fill="rgb(217,3,25)" fg:x="471244" fg:w="70"/><text x="90.8075%" y="719.50"></text></g><g><title>lru_cache_add (102 samples, 0.02%)</title><rect x="90.5546%" y="741" width="0.0196%" height="15" fill="rgb(239,24,14)" fg:x="471229" fg:w="102"/><text x="90.8046%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (91 samples, 0.02%)</title><rect x="90.5567%" y="725" width="0.0175%" height="15" fill="rgb(244,16,53)" fg:x="471240" fg:w="91"/><text x="90.8067%" y="735.50"></text></g><g><title>mem_cgroup_charge (115 samples, 0.02%)</title><rect x="90.5748%" y="741" width="0.0221%" height="15" fill="rgb(208,175,44)" fg:x="471334" fg:w="115"/><text x="90.8248%" y="751.50"></text></g><g><title>handle_mm_fault (2,003 samples, 0.38%)</title><rect x="90.2316%" y="757" width="0.3849%" height="15" fill="rgb(252,18,48)" fg:x="469548" fg:w="2003"/><text x="90.4816%" y="767.50"></text></g><g><title>exc_page_fault (2,160 samples, 0.42%)</title><rect x="90.2079%" y="789" width="0.4151%" height="15" fill="rgb(234,199,32)" fg:x="469425" fg:w="2160"/><text x="90.4579%" y="799.50"></text></g><g><title>do_user_addr_fault (2,142 samples, 0.41%)</title><rect x="90.2114%" y="773" width="0.4116%" height="15" fill="rgb(225,77,54)" fg:x="469443" fg:w="2142"/><text x="90.4614%" y="783.50"></text></g><g><title>asm_exc_page_fault (2,202 samples, 0.42%)</title><rect x="90.2035%" y="805" width="0.4232%" height="15" fill="rgb(225,42,25)" fg:x="469402" fg:w="2202"/><text x="90.4535%" y="815.50"></text></g><g><title>kmem_cache_free (64 samples, 0.01%)</title><rect x="90.6384%" y="693" width="0.0123%" height="15" fill="rgb(242,227,46)" fg:x="471665" fg:w="64"/><text x="90.8884%" y="703.50"></text></g><g><title>rcu_core (113 samples, 0.02%)</title><rect x="90.6355%" y="709" width="0.0217%" height="15" fill="rgb(246,197,35)" fg:x="471650" fg:w="113"/><text x="90.8855%" y="719.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (162 samples, 0.03%)</title><rect x="90.6267%" y="805" width="0.0311%" height="15" fill="rgb(215,159,26)" fg:x="471604" fg:w="162"/><text x="90.8767%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (134 samples, 0.03%)</title><rect x="90.6321%" y="789" width="0.0258%" height="15" fill="rgb(212,194,50)" fg:x="471632" fg:w="134"/><text x="90.8821%" y="799.50"></text></g><g><title>irq_exit_rcu (117 samples, 0.02%)</title><rect x="90.6353%" y="773" width="0.0225%" height="15" fill="rgb(246,132,1)" fg:x="471649" fg:w="117"/><text x="90.8853%" y="783.50"></text></g><g><title>do_softirq_own_stack (116 samples, 0.02%)</title><rect x="90.6355%" y="757" width="0.0223%" height="15" fill="rgb(217,71,7)" fg:x="471650" fg:w="116"/><text x="90.8855%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (116 samples, 0.02%)</title><rect x="90.6355%" y="741" width="0.0223%" height="15" fill="rgb(252,59,32)" fg:x="471650" fg:w="116"/><text x="90.8855%" y="751.50"></text></g><g><title>__softirqentry_text_start (116 samples, 0.02%)</title><rect x="90.6355%" y="725" width="0.0223%" height="15" fill="rgb(253,204,25)" fg:x="471650" fg:w="116"/><text x="90.8855%" y="735.50"></text></g><g><title>entry_SYSCALL_64 (1,114 samples, 0.21%)</title><rect x="90.6588%" y="805" width="0.2141%" height="15" fill="rgb(232,21,16)" fg:x="471771" fg:w="1114"/><text x="90.9088%" y="815.50"></text></g><g><title>copy_process (81 samples, 0.02%)</title><rect x="90.9607%" y="741" width="0.0156%" height="15" fill="rgb(248,90,29)" fg:x="473342" fg:w="81"/><text x="91.2107%" y="751.50"></text></g><g><title>__do_sys_clone (89 samples, 0.02%)</title><rect x="90.9607%" y="773" width="0.0171%" height="15" fill="rgb(249,223,7)" fg:x="473342" fg:w="89"/><text x="91.2107%" y="783.50"></text></g><g><title>kernel_clone (89 samples, 0.02%)</title><rect x="90.9607%" y="757" width="0.0171%" height="15" fill="rgb(231,119,42)" fg:x="473342" fg:w="89"/><text x="91.2107%" y="767.50"></text></g><g><title>_copy_to_user (188 samples, 0.04%)</title><rect x="90.9878%" y="741" width="0.0361%" height="15" fill="rgb(215,41,35)" fg:x="473483" fg:w="188"/><text x="91.2378%" y="751.50"></text></g><g><title>copy_user_enhanced_fast_string (170 samples, 0.03%)</title><rect x="90.9912%" y="725" width="0.0327%" height="15" fill="rgb(220,44,45)" fg:x="473501" fg:w="170"/><text x="91.2412%" y="735.50"></text></g><g><title>cp_new_stat (287 samples, 0.06%)</title><rect x="90.9797%" y="757" width="0.0552%" height="15" fill="rgb(253,197,36)" fg:x="473441" fg:w="287"/><text x="91.2297%" y="767.50"></text></g><g><title>__fget_light (72 samples, 0.01%)</title><rect x="91.0404%" y="741" width="0.0138%" height="15" fill="rgb(245,225,54)" fg:x="473757" fg:w="72"/><text x="91.2904%" y="751.50"></text></g><g><title>__fget_files (63 samples, 0.01%)</title><rect x="91.0421%" y="725" width="0.0121%" height="15" fill="rgb(239,94,37)" fg:x="473766" fg:w="63"/><text x="91.2921%" y="735.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="91.1225%" y="725" width="0.0119%" height="15" fill="rgb(242,217,10)" fg:x="474184" fg:w="62"/><text x="91.3725%" y="735.50"></text></g><g><title>btrfs_getattr (531 samples, 0.10%)</title><rect x="91.0542%" y="741" width="0.1020%" height="15" fill="rgb(250,193,7)" fg:x="473829" fg:w="531"/><text x="91.3042%" y="751.50"></text></g><g><title>inode_get_bytes (82 samples, 0.02%)</title><rect x="91.1405%" y="725" width="0.0158%" height="15" fill="rgb(230,104,19)" fg:x="474278" fg:w="82"/><text x="91.3905%" y="735.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="91.1432%" y="709" width="0.0131%" height="15" fill="rgb(230,181,4)" fg:x="474292" fg:w="68"/><text x="91.3932%" y="719.50"></text></g><g><title>security_inode_getattr (191 samples, 0.04%)</title><rect x="91.1644%" y="741" width="0.0367%" height="15" fill="rgb(216,219,49)" fg:x="474402" fg:w="191"/><text x="91.4144%" y="751.50"></text></g><g><title>tomoyo_path_perm (138 samples, 0.03%)</title><rect x="91.1745%" y="725" width="0.0265%" height="15" fill="rgb(254,144,0)" fg:x="474455" fg:w="138"/><text x="91.4245%" y="735.50"></text></g><g><title>tomoyo_init_request_info (53 samples, 0.01%)</title><rect x="91.1909%" y="709" width="0.0102%" height="15" fill="rgb(205,209,38)" fg:x="474540" fg:w="53"/><text x="91.4409%" y="719.50"></text></g><g><title>__do_sys_newfstat (1,243 samples, 0.24%)</title><rect x="90.9778%" y="773" width="0.2389%" height="15" fill="rgb(240,21,42)" fg:x="473431" fg:w="1243"/><text x="91.2278%" y="783.50"></text></g><g><title>vfs_fstat (946 samples, 0.18%)</title><rect x="91.0348%" y="757" width="0.1818%" height="15" fill="rgb(241,132,3)" fg:x="473728" fg:w="946"/><text x="91.2848%" y="767.50"></text></g><g><title>vfs_getattr_nosec (81 samples, 0.02%)</title><rect x="91.2011%" y="741" width="0.0156%" height="15" fill="rgb(225,14,2)" fg:x="474593" fg:w="81"/><text x="91.4511%" y="751.50"></text></g><g><title>__close_fd (90 samples, 0.02%)</title><rect x="91.2232%" y="757" width="0.0173%" height="15" fill="rgb(210,141,35)" fg:x="474708" fg:w="90"/><text x="91.4732%" y="767.50"></text></g><g><title>pick_file (88 samples, 0.02%)</title><rect x="91.2235%" y="741" width="0.0169%" height="15" fill="rgb(251,14,44)" fg:x="474710" fg:w="88"/><text x="91.4735%" y="751.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="91.2295%" y="725" width="0.0110%" height="15" fill="rgb(247,48,18)" fg:x="474741" fg:w="57"/><text x="91.4795%" y="735.50"></text></g><g><title>fput_many (185 samples, 0.04%)</title><rect x="91.2464%" y="741" width="0.0356%" height="15" fill="rgb(225,0,40)" fg:x="474829" fg:w="185"/><text x="91.4964%" y="751.50"></text></g><g><title>task_work_add (128 samples, 0.02%)</title><rect x="91.2574%" y="725" width="0.0246%" height="15" fill="rgb(221,31,33)" fg:x="474886" fg:w="128"/><text x="91.5074%" y="735.50"></text></g><g><title>__x64_sys_close (330 samples, 0.06%)</title><rect x="91.2224%" y="773" width="0.0634%" height="15" fill="rgb(237,42,40)" fg:x="474704" fg:w="330"/><text x="91.4724%" y="783.50"></text></g><g><title>filp_close (236 samples, 0.05%)</title><rect x="91.2405%" y="757" width="0.0454%" height="15" fill="rgb(233,51,29)" fg:x="474798" fg:w="236"/><text x="91.4905%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (94 samples, 0.02%)</title><rect x="91.2893%" y="645" width="0.0181%" height="15" fill="rgb(226,58,20)" fg:x="475052" fg:w="94"/><text x="91.5393%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (94 samples, 0.02%)</title><rect x="91.2893%" y="629" width="0.0181%" height="15" fill="rgb(208,98,7)" fg:x="475052" fg:w="94"/><text x="91.5393%" y="639.50"></text></g><g><title>native_write_msr (93 samples, 0.02%)</title><rect x="91.2895%" y="613" width="0.0179%" height="15" fill="rgb(228,143,44)" fg:x="475053" fg:w="93"/><text x="91.5395%" y="623.50"></text></g><g><title>schedule (97 samples, 0.02%)</title><rect x="91.2893%" y="693" width="0.0186%" height="15" fill="rgb(246,55,38)" fg:x="475052" fg:w="97"/><text x="91.5393%" y="703.50"></text></g><g><title>__schedule (97 samples, 0.02%)</title><rect x="91.2893%" y="677" width="0.0186%" height="15" fill="rgb(247,87,16)" fg:x="475052" fg:w="97"/><text x="91.5393%" y="687.50"></text></g><g><title>finish_task_switch (97 samples, 0.02%)</title><rect x="91.2893%" y="661" width="0.0186%" height="15" fill="rgb(234,129,42)" fg:x="475052" fg:w="97"/><text x="91.5393%" y="671.50"></text></g><g><title>load_elf_binary (113 samples, 0.02%)</title><rect x="91.2873%" y="725" width="0.0217%" height="15" fill="rgb(220,82,16)" fg:x="475042" fg:w="113"/><text x="91.5373%" y="735.50"></text></g><g><title>begin_new_exec (113 samples, 0.02%)</title><rect x="91.2873%" y="709" width="0.0217%" height="15" fill="rgb(211,88,4)" fg:x="475042" fg:w="113"/><text x="91.5373%" y="719.50"></text></g><g><title>bprm_execve (145 samples, 0.03%)</title><rect x="91.2864%" y="741" width="0.0279%" height="15" fill="rgb(248,151,21)" fg:x="475037" fg:w="145"/><text x="91.5364%" y="751.50"></text></g><g><title>__x64_sys_execve (152 samples, 0.03%)</title><rect x="91.2860%" y="773" width="0.0292%" height="15" fill="rgb(238,163,6)" fg:x="475035" fg:w="152"/><text x="91.5360%" y="783.50"></text></g><g><title>do_execveat_common (152 samples, 0.03%)</title><rect x="91.2860%" y="757" width="0.0292%" height="15" fill="rgb(209,183,11)" fg:x="475035" fg:w="152"/><text x="91.5360%" y="767.50"></text></g><g><title>update_curr (132 samples, 0.03%)</title><rect x="91.4417%" y="645" width="0.0254%" height="15" fill="rgb(219,37,20)" fg:x="475845" fg:w="132"/><text x="91.6917%" y="655.50"></text></g><g><title>dequeue_entity (400 samples, 0.08%)</title><rect x="91.4207%" y="661" width="0.0769%" height="15" fill="rgb(210,158,4)" fg:x="475736" fg:w="400"/><text x="91.6707%" y="671.50"></text></g><g><title>update_load_avg (159 samples, 0.03%)</title><rect x="91.4670%" y="645" width="0.0306%" height="15" fill="rgb(221,167,53)" fg:x="475977" fg:w="159"/><text x="91.7170%" y="655.50"></text></g><g><title>dequeue_task_fair (450 samples, 0.09%)</title><rect x="91.4142%" y="677" width="0.0865%" height="15" fill="rgb(237,151,45)" fg:x="475702" fg:w="450"/><text x="91.6642%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (13,750 samples, 2.64%)</title><rect x="91.5652%" y="661" width="2.6423%" height="15" fill="rgb(231,39,3)" fg:x="476488" fg:w="13750"/><text x="91.8152%" y="671.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (13,569 samples, 2.61%)</title><rect x="91.6000%" y="645" width="2.6075%" height="15" fill="rgb(212,167,28)" fg:x="476669" fg:w="13569"/><text x="91.8500%" y="655.50">__..</text></g><g><title>native_write_msr (13,505 samples, 2.60%)</title><rect x="91.6123%" y="629" width="2.5952%" height="15" fill="rgb(232,178,8)" fg:x="476733" fg:w="13505"/><text x="91.8623%" y="639.50">na..</text></g><g><title>__wake_up_common (116 samples, 0.02%)</title><rect x="94.2542%" y="501" width="0.0223%" height="15" fill="rgb(225,151,20)" fg:x="490481" fg:w="116"/><text x="94.5042%" y="511.50"></text></g><g><title>pollwake (110 samples, 0.02%)</title><rect x="94.2554%" y="485" width="0.0211%" height="15" fill="rgb(238,3,37)" fg:x="490487" fg:w="110"/><text x="94.5054%" y="495.50"></text></g><g><title>try_to_wake_up (110 samples, 0.02%)</title><rect x="94.2554%" y="469" width="0.0211%" height="15" fill="rgb(251,147,42)" fg:x="490487" fg:w="110"/><text x="94.5054%" y="479.50"></text></g><g><title>irq_work_run (168 samples, 0.03%)</title><rect x="94.2459%" y="597" width="0.0323%" height="15" fill="rgb(208,173,10)" fg:x="490438" fg:w="168"/><text x="94.4959%" y="607.50"></text></g><g><title>irq_work_run_list (167 samples, 0.03%)</title><rect x="94.2461%" y="581" width="0.0321%" height="15" fill="rgb(246,225,4)" fg:x="490439" fg:w="167"/><text x="94.4961%" y="591.50"></text></g><g><title>irq_work_single (161 samples, 0.03%)</title><rect x="94.2473%" y="565" width="0.0309%" height="15" fill="rgb(248,102,6)" fg:x="490445" fg:w="161"/><text x="94.4973%" y="575.50"></text></g><g><title>perf_pending_event (155 samples, 0.03%)</title><rect x="94.2484%" y="549" width="0.0298%" height="15" fill="rgb(232,6,21)" fg:x="490451" fg:w="155"/><text x="94.4984%" y="559.50"></text></g><g><title>perf_event_wakeup (135 samples, 0.03%)</title><rect x="94.2523%" y="533" width="0.0259%" height="15" fill="rgb(221,179,22)" fg:x="490471" fg:w="135"/><text x="94.5023%" y="543.50"></text></g><g><title>__wake_up_common_lock (132 samples, 0.03%)</title><rect x="94.2529%" y="517" width="0.0254%" height="15" fill="rgb(252,50,20)" fg:x="490474" fg:w="132"/><text x="94.5029%" y="527.50"></text></g><g><title>asm_call_sysvec_on_stack (201 samples, 0.04%)</title><rect x="94.2421%" y="629" width="0.0386%" height="15" fill="rgb(222,56,38)" fg:x="490418" fg:w="201"/><text x="94.4921%" y="639.50"></text></g><g><title>__sysvec_irq_work (182 samples, 0.03%)</title><rect x="94.2458%" y="613" width="0.0350%" height="15" fill="rgb(206,193,29)" fg:x="490437" fg:w="182"/><text x="94.4958%" y="623.50"></text></g><g><title>asm_sysvec_irq_work (333 samples, 0.06%)</title><rect x="94.2202%" y="661" width="0.0640%" height="15" fill="rgb(239,192,45)" fg:x="490304" fg:w="333"/><text x="94.4702%" y="671.50"></text></g><g><title>sysvec_irq_work (222 samples, 0.04%)</title><rect x="94.2415%" y="645" width="0.0427%" height="15" fill="rgb(254,18,36)" fg:x="490415" fg:w="222"/><text x="94.4915%" y="655.50"></text></g><g><title>finish_task_switch (14,539 samples, 2.79%)</title><rect x="91.5007%" y="677" width="2.7939%" height="15" fill="rgb(221,127,11)" fg:x="476152" fg:w="14539"/><text x="91.7507%" y="687.50">fi..</text></g><g><title>newidle_balance (99 samples, 0.02%)</title><rect x="94.2961%" y="661" width="0.0190%" height="15" fill="rgb(234,146,35)" fg:x="490699" fg:w="99"/><text x="94.5461%" y="671.50"></text></g><g><title>pick_next_task_fair (117 samples, 0.02%)</title><rect x="94.2949%" y="677" width="0.0225%" height="15" fill="rgb(254,201,37)" fg:x="490693" fg:w="117"/><text x="94.5449%" y="687.50"></text></g><g><title>psi_task_change (283 samples, 0.05%)</title><rect x="94.3274%" y="677" width="0.0544%" height="15" fill="rgb(211,202,23)" fg:x="490862" fg:w="283"/><text x="94.5774%" y="687.50"></text></g><g><title>psi_group_change (242 samples, 0.05%)</title><rect x="94.3353%" y="661" width="0.0465%" height="15" fill="rgb(237,91,2)" fg:x="490903" fg:w="242"/><text x="94.5853%" y="671.50"></text></g><g><title>record_times (62 samples, 0.01%)</title><rect x="94.3699%" y="645" width="0.0119%" height="15" fill="rgb(226,228,36)" fg:x="491083" fg:w="62"/><text x="94.6199%" y="655.50"></text></g><g><title>futex_wait_queue_me (15,861 samples, 3.05%)</title><rect x="91.3521%" y="725" width="3.0480%" height="15" fill="rgb(213,63,50)" fg:x="475379" fg:w="15861"/><text x="91.6021%" y="735.50">fut..</text></g><g><title>schedule (15,765 samples, 3.03%)</title><rect x="91.3706%" y="709" width="3.0295%" height="15" fill="rgb(235,194,19)" fg:x="475475" fg:w="15765"/><text x="91.6206%" y="719.50">sch..</text></g><g><title>__schedule (15,732 samples, 3.02%)</title><rect x="91.3769%" y="693" width="3.0232%" height="15" fill="rgb(207,204,18)" fg:x="475508" fg:w="15732"/><text x="91.6269%" y="703.50">__s..</text></g><g><title>futex_wait (16,102 samples, 3.09%)</title><rect x="91.3346%" y="741" width="3.0943%" height="15" fill="rgb(248,8,7)" fg:x="475288" fg:w="16102"/><text x="91.5846%" y="751.50">fut..</text></g><g><title>futex_wait_setup (150 samples, 0.03%)</title><rect x="94.4001%" y="725" width="0.0288%" height="15" fill="rgb(223,145,47)" fg:x="491240" fg:w="150"/><text x="94.6501%" y="735.50"></text></g><g><title>select_task_rq_fair (53 samples, 0.01%)</title><rect x="94.4543%" y="693" width="0.0102%" height="15" fill="rgb(228,84,11)" fg:x="491522" fg:w="53"/><text x="94.7043%" y="703.50"></text></g><g><title>enqueue_task_fair (58 samples, 0.01%)</title><rect x="94.4660%" y="677" width="0.0111%" height="15" fill="rgb(218,76,45)" fg:x="491583" fg:w="58"/><text x="94.7160%" y="687.50"></text></g><g><title>ttwu_do_activate (120 samples, 0.02%)</title><rect x="94.4648%" y="693" width="0.0231%" height="15" fill="rgb(223,80,15)" fg:x="491577" fg:w="120"/><text x="94.7148%" y="703.50"></text></g><g><title>psi_task_change (56 samples, 0.01%)</title><rect x="94.4771%" y="677" width="0.0108%" height="15" fill="rgb(219,218,33)" fg:x="491641" fg:w="56"/><text x="94.7271%" y="687.50"></text></g><g><title>__x64_sys_futex (16,500 samples, 3.17%)</title><rect x="91.3217%" y="773" width="3.1708%" height="15" fill="rgb(208,51,11)" fg:x="475221" fg:w="16500"/><text x="91.5717%" y="783.50">__x..</text></g><g><title>do_futex (16,473 samples, 3.17%)</title><rect x="91.3269%" y="757" width="3.1656%" height="15" fill="rgb(229,165,39)" fg:x="475248" fg:w="16473"/><text x="91.5769%" y="767.50">do_..</text></g><g><title>futex_wake (331 samples, 0.06%)</title><rect x="94.4289%" y="741" width="0.0636%" height="15" fill="rgb(241,100,24)" fg:x="491390" fg:w="331"/><text x="94.6789%" y="751.50"></text></g><g><title>wake_up_q (257 samples, 0.05%)</title><rect x="94.4431%" y="725" width="0.0494%" height="15" fill="rgb(228,14,23)" fg:x="491464" fg:w="257"/><text x="94.6931%" y="735.50"></text></g><g><title>try_to_wake_up (252 samples, 0.05%)</title><rect x="94.4441%" y="709" width="0.0484%" height="15" fill="rgb(247,116,52)" fg:x="491469" fg:w="252"/><text x="94.6941%" y="719.50"></text></g><g><title>__split_vma (63 samples, 0.01%)</title><rect x="94.5023%" y="725" width="0.0121%" height="15" fill="rgb(216,149,33)" fg:x="491772" fg:w="63"/><text x="94.7523%" y="735.50"></text></g><g><title>tlb_finish_mmu (181 samples, 0.03%)</title><rect x="94.5282%" y="709" width="0.0348%" height="15" fill="rgb(238,142,29)" fg:x="491907" fg:w="181"/><text x="94.7782%" y="719.50"></text></g><g><title>release_pages (136 samples, 0.03%)</title><rect x="94.5369%" y="693" width="0.0261%" height="15" fill="rgb(224,83,40)" fg:x="491952" fg:w="136"/><text x="94.7869%" y="703.50"></text></g><g><title>unmap_region (332 samples, 0.06%)</title><rect x="94.5200%" y="725" width="0.0638%" height="15" fill="rgb(234,165,11)" fg:x="491864" fg:w="332"/><text x="94.7700%" y="735.50"></text></g><g><title>unmap_vmas (107 samples, 0.02%)</title><rect x="94.5632%" y="709" width="0.0206%" height="15" fill="rgb(215,96,23)" fg:x="492089" fg:w="107"/><text x="94.8132%" y="719.50"></text></g><g><title>unmap_page_range (105 samples, 0.02%)</title><rect x="94.5636%" y="693" width="0.0202%" height="15" fill="rgb(233,179,26)" fg:x="492091" fg:w="105"/><text x="94.8136%" y="703.50"></text></g><g><title>__do_munmap (436 samples, 0.08%)</title><rect x="94.5004%" y="741" width="0.0838%" height="15" fill="rgb(225,129,33)" fg:x="491762" fg:w="436"/><text x="94.7504%" y="751.50"></text></g><g><title>__vm_munmap (441 samples, 0.08%)</title><rect x="94.5000%" y="757" width="0.0847%" height="15" fill="rgb(237,49,13)" fg:x="491760" fg:w="441"/><text x="94.7500%" y="767.50"></text></g><g><title>__x64_sys_munmap (443 samples, 0.09%)</title><rect x="94.5000%" y="773" width="0.0851%" height="15" fill="rgb(211,3,31)" fg:x="491760" fg:w="443"/><text x="94.7500%" y="783.50"></text></g><g><title>do_filp_open (72 samples, 0.01%)</title><rect x="94.5867%" y="741" width="0.0138%" height="15" fill="rgb(216,152,19)" fg:x="492211" fg:w="72"/><text x="94.8367%" y="751.50"></text></g><g><title>path_openat (72 samples, 0.01%)</title><rect x="94.5867%" y="725" width="0.0138%" height="15" fill="rgb(251,121,35)" fg:x="492211" fg:w="72"/><text x="94.8367%" y="735.50"></text></g><g><title>__x64_sys_open (81 samples, 0.02%)</title><rect x="94.5861%" y="773" width="0.0156%" height="15" fill="rgb(210,217,47)" fg:x="492208" fg:w="81"/><text x="94.8361%" y="783.50"></text></g><g><title>do_sys_openat2 (81 samples, 0.02%)</title><rect x="94.5861%" y="757" width="0.0156%" height="15" fill="rgb(244,116,22)" fg:x="492208" fg:w="81"/><text x="94.8361%" y="767.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="94.6272%" y="725" width="0.0110%" height="15" fill="rgb(228,17,21)" fg:x="492422" fg:w="57"/><text x="94.8772%" y="735.50"></text></g><g><title>__alloc_fd (159 samples, 0.03%)</title><rect x="94.6118%" y="741" width="0.0306%" height="15" fill="rgb(240,149,34)" fg:x="492342" fg:w="159"/><text x="94.8618%" y="751.50"></text></g><g><title>__alloc_pages_nodemask (61 samples, 0.01%)</title><rect x="94.7531%" y="613" width="0.0117%" height="15" fill="rgb(208,125,47)" fg:x="493077" fg:w="61"/><text x="95.0031%" y="623.50"></text></g><g><title>get_page_from_freelist (58 samples, 0.01%)</title><rect x="94.7537%" y="597" width="0.0111%" height="15" fill="rgb(249,186,39)" fg:x="493080" fg:w="58"/><text x="95.0037%" y="607.50"></text></g><g><title>allocate_slab (83 samples, 0.02%)</title><rect x="94.7512%" y="629" width="0.0159%" height="15" fill="rgb(240,220,33)" fg:x="493067" fg:w="83"/><text x="95.0012%" y="639.50"></text></g><g><title>___slab_alloc (178 samples, 0.03%)</title><rect x="94.7396%" y="645" width="0.0342%" height="15" fill="rgb(243,110,23)" fg:x="493007" fg:w="178"/><text x="94.9896%" y="655.50"></text></g><g><title>__slab_alloc (183 samples, 0.04%)</title><rect x="94.7389%" y="661" width="0.0352%" height="15" fill="rgb(219,163,46)" fg:x="493003" fg:w="183"/><text x="94.9889%" y="671.50"></text></g><g><title>__mod_memcg_lruvec_state (75 samples, 0.01%)</title><rect x="94.8276%" y="645" width="0.0144%" height="15" fill="rgb(216,126,30)" fg:x="493465" fg:w="75"/><text x="95.0776%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (385 samples, 0.07%)</title><rect x="94.7744%" y="661" width="0.0740%" height="15" fill="rgb(208,139,11)" fg:x="493188" fg:w="385"/><text x="95.0244%" y="671.50"></text></g><g><title>memset_erms (69 samples, 0.01%)</title><rect x="94.8495%" y="661" width="0.0133%" height="15" fill="rgb(213,118,36)" fg:x="493579" fg:w="69"/><text x="95.0995%" y="671.50"></text></g><g><title>get_obj_cgroup_from_current (179 samples, 0.03%)</title><rect x="94.8713%" y="645" width="0.0344%" height="15" fill="rgb(226,43,17)" fg:x="493692" fg:w="179"/><text x="95.1213%" y="655.50"></text></g><g><title>obj_cgroup_charge (117 samples, 0.02%)</title><rect x="94.9057%" y="645" width="0.0225%" height="15" fill="rgb(254,217,4)" fg:x="493871" fg:w="117"/><text x="95.1557%" y="655.50"></text></g><g><title>kmem_cache_alloc (1,120 samples, 0.22%)</title><rect x="94.7131%" y="677" width="0.2152%" height="15" fill="rgb(210,134,47)" fg:x="492869" fg:w="1120"/><text x="94.9631%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (338 samples, 0.06%)</title><rect x="94.8634%" y="661" width="0.0650%" height="15" fill="rgb(237,24,49)" fg:x="493651" fg:w="338"/><text x="95.1134%" y="671.50"></text></g><g><title>apparmor_file_alloc_security (118 samples, 0.02%)</title><rect x="94.9339%" y="661" width="0.0227%" height="15" fill="rgb(251,39,46)" fg:x="494018" fg:w="118"/><text x="95.1839%" y="671.50"></text></g><g><title>memset_erms (59 samples, 0.01%)</title><rect x="94.9716%" y="645" width="0.0113%" height="15" fill="rgb(251,220,3)" fg:x="494214" fg:w="59"/><text x="95.2216%" y="655.50"></text></g><g><title>__alloc_file (1,545 samples, 0.30%)</title><rect x="94.6918%" y="693" width="0.2969%" height="15" fill="rgb(228,105,12)" fg:x="492758" fg:w="1545"/><text x="94.9418%" y="703.50"></text></g><g><title>security_file_alloc (314 samples, 0.06%)</title><rect x="94.9283%" y="677" width="0.0603%" height="15" fill="rgb(215,196,1)" fg:x="493989" fg:w="314"/><text x="95.1783%" y="687.50"></text></g><g><title>kmem_cache_alloc (167 samples, 0.03%)</title><rect x="94.9566%" y="661" width="0.0321%" height="15" fill="rgb(214,33,39)" fg:x="494136" fg:w="167"/><text x="95.2066%" y="671.50"></text></g><g><title>alloc_empty_file (1,584 samples, 0.30%)</title><rect x="94.6866%" y="709" width="0.3044%" height="15" fill="rgb(220,19,52)" fg:x="492731" fg:w="1584"/><text x="94.9366%" y="719.50"></text></g><g><title>__legitimize_mnt (57 samples, 0.01%)</title><rect x="95.0002%" y="661" width="0.0110%" height="15" fill="rgb(221,78,38)" fg:x="494363" fg:w="57"/><text x="95.2502%" y="671.50"></text></g><g><title>__legitimize_path (139 samples, 0.03%)</title><rect x="94.9983%" y="677" width="0.0267%" height="15" fill="rgb(253,30,16)" fg:x="494353" fg:w="139"/><text x="95.2483%" y="687.50"></text></g><g><title>lockref_get_not_dead (72 samples, 0.01%)</title><rect x="95.0112%" y="661" width="0.0138%" height="15" fill="rgb(242,65,0)" fg:x="494420" fg:w="72"/><text x="95.2612%" y="671.50"></text></g><g><title>complete_walk (195 samples, 0.04%)</title><rect x="94.9910%" y="709" width="0.0375%" height="15" fill="rgb(235,201,12)" fg:x="494315" fg:w="195"/><text x="95.2410%" y="719.50"></text></g><g><title>try_to_unlazy (179 samples, 0.03%)</title><rect x="94.9941%" y="693" width="0.0344%" height="15" fill="rgb(233,161,9)" fg:x="494331" fg:w="179"/><text x="95.2441%" y="703.50"></text></g><g><title>errseq_sample (61 samples, 0.01%)</title><rect x="95.0690%" y="693" width="0.0117%" height="15" fill="rgb(241,207,41)" fg:x="494721" fg:w="61"/><text x="95.3190%" y="703.50"></text></g><g><title>lockref_get (67 samples, 0.01%)</title><rect x="95.0836%" y="693" width="0.0129%" height="15" fill="rgb(212,69,46)" fg:x="494797" fg:w="67"/><text x="95.3336%" y="703.50"></text></g><g><title>apparmor_file_open (110 samples, 0.02%)</title><rect x="95.1034%" y="677" width="0.0211%" height="15" fill="rgb(239,69,45)" fg:x="494900" fg:w="110"/><text x="95.3534%" y="687.50"></text></g><g><title>__srcu_read_lock (64 samples, 0.01%)</title><rect x="95.1438%" y="661" width="0.0123%" height="15" fill="rgb(242,117,48)" fg:x="495110" fg:w="64"/><text x="95.3938%" y="671.50"></text></g><g><title>__srcu_read_unlock (68 samples, 0.01%)</title><rect x="95.1560%" y="661" width="0.0131%" height="15" fill="rgb(228,41,36)" fg:x="495174" fg:w="68"/><text x="95.4060%" y="671.50"></text></g><g><title>tomoyo_check_open_permission (297 samples, 0.06%)</title><rect x="95.1245%" y="677" width="0.0571%" height="15" fill="rgb(212,3,32)" fg:x="495010" fg:w="297"/><text x="95.3745%" y="687.50"></text></g><g><title>tomoyo_init_request_info (53 samples, 0.01%)</title><rect x="95.1714%" y="661" width="0.0102%" height="15" fill="rgb(233,41,49)" fg:x="495254" fg:w="53"/><text x="95.4214%" y="671.50"></text></g><g><title>security_file_open (442 samples, 0.08%)</title><rect x="95.0986%" y="693" width="0.0849%" height="15" fill="rgb(252,170,49)" fg:x="494875" fg:w="442"/><text x="95.3486%" y="703.50"></text></g><g><title>do_dentry_open (808 samples, 0.16%)</title><rect x="95.0285%" y="709" width="0.1553%" height="15" fill="rgb(229,53,26)" fg:x="494510" fg:w="808"/><text x="95.2785%" y="719.50"></text></g><g><title>inode_permission.part.0 (249 samples, 0.05%)</title><rect x="95.2418%" y="693" width="0.0478%" height="15" fill="rgb(217,157,12)" fg:x="495620" fg:w="249"/><text x="95.4918%" y="703.50"></text></g><g><title>generic_permission (92 samples, 0.02%)</title><rect x="95.2719%" y="677" width="0.0177%" height="15" fill="rgb(227,17,9)" fg:x="495777" fg:w="92"/><text x="95.5219%" y="687.50"></text></g><g><title>lookup_fast (326 samples, 0.06%)</title><rect x="95.3094%" y="677" width="0.0626%" height="15" fill="rgb(218,84,12)" fg:x="495972" fg:w="326"/><text x="95.5594%" y="687.50"></text></g><g><title>__d_lookup_rcu (250 samples, 0.05%)</title><rect x="95.3240%" y="661" width="0.0480%" height="15" fill="rgb(212,79,24)" fg:x="496048" fg:w="250"/><text x="95.5740%" y="671.50"></text></g><g><title>link_path_walk.part.0 (1,035 samples, 0.20%)</title><rect x="95.1874%" y="709" width="0.1989%" height="15" fill="rgb(217,222,37)" fg:x="495337" fg:w="1035"/><text x="95.4374%" y="719.50"></text></g><g><title>walk_component (471 samples, 0.09%)</title><rect x="95.2958%" y="693" width="0.0905%" height="15" fill="rgb(246,208,8)" fg:x="495901" fg:w="471"/><text x="95.5458%" y="703.50"></text></g><g><title>step_into (74 samples, 0.01%)</title><rect x="95.3720%" y="677" width="0.0142%" height="15" fill="rgb(244,133,10)" fg:x="496298" fg:w="74"/><text x="95.6220%" y="687.50"></text></g><g><title>lookup_fast (531 samples, 0.10%)</title><rect x="95.3863%" y="709" width="0.1020%" height="15" fill="rgb(209,219,41)" fg:x="496372" fg:w="531"/><text x="95.6363%" y="719.50"></text></g><g><title>__d_lookup_rcu (499 samples, 0.10%)</title><rect x="95.3924%" y="693" width="0.0959%" height="15" fill="rgb(253,175,45)" fg:x="496404" fg:w="499"/><text x="95.6424%" y="703.50"></text></g><g><title>inode_permission.part.0 (145 samples, 0.03%)</title><rect x="95.5112%" y="693" width="0.0279%" height="15" fill="rgb(235,100,37)" fg:x="497022" fg:w="145"/><text x="95.7612%" y="703.50"></text></g><g><title>may_open (270 samples, 0.05%)</title><rect x="95.4883%" y="709" width="0.0519%" height="15" fill="rgb(225,87,19)" fg:x="496903" fg:w="270"/><text x="95.7383%" y="719.50"></text></g><g><title>__fget_light (125 samples, 0.02%)</title><rect x="95.5510%" y="693" width="0.0240%" height="15" fill="rgb(217,152,17)" fg:x="497229" fg:w="125"/><text x="95.8010%" y="703.50"></text></g><g><title>__fget_files (121 samples, 0.02%)</title><rect x="95.5517%" y="677" width="0.0233%" height="15" fill="rgb(235,72,13)" fg:x="497233" fg:w="121"/><text x="95.8017%" y="687.50"></text></g><g><title>path_init (252 samples, 0.05%)</title><rect x="95.5402%" y="709" width="0.0484%" height="15" fill="rgb(233,140,18)" fg:x="497173" fg:w="252"/><text x="95.7902%" y="719.50"></text></g><g><title>fput_many (67 samples, 0.01%)</title><rect x="95.5757%" y="693" width="0.0129%" height="15" fill="rgb(207,212,28)" fg:x="497358" fg:w="67"/><text x="95.8257%" y="703.50"></text></g><g><title>dput (97 samples, 0.02%)</title><rect x="95.5955%" y="693" width="0.0186%" height="15" fill="rgb(220,130,25)" fg:x="497461" fg:w="97"/><text x="95.8455%" y="703.50"></text></g><g><title>lockref_put_or_lock (64 samples, 0.01%)</title><rect x="95.6019%" y="677" width="0.0123%" height="15" fill="rgb(205,55,34)" fg:x="497494" fg:w="64"/><text x="95.8519%" y="687.50"></text></g><g><title>terminate_walk (139 samples, 0.03%)</title><rect x="95.5938%" y="709" width="0.0267%" height="15" fill="rgb(237,54,35)" fg:x="497452" fg:w="139"/><text x="95.8438%" y="719.50"></text></g><g><title>do_filp_open (5,023 samples, 0.97%)</title><rect x="94.6576%" y="741" width="0.9653%" height="15" fill="rgb(208,67,23)" fg:x="492580" fg:w="5023"/><text x="94.9076%" y="751.50"></text></g><g><title>path_openat (4,972 samples, 0.96%)</title><rect x="94.6674%" y="725" width="0.9555%" height="15" fill="rgb(206,207,50)" fg:x="492631" fg:w="4972"/><text x="94.9174%" y="735.50"></text></g><g><title>memset_erms (494 samples, 0.09%)</title><rect x="95.6645%" y="709" width="0.0949%" height="15" fill="rgb(213,211,42)" fg:x="497820" fg:w="494"/><text x="95.9145%" y="719.50"></text></g><g><title>kmem_cache_alloc (686 samples, 0.13%)</title><rect x="95.6405%" y="725" width="0.1318%" height="15" fill="rgb(252,197,50)" fg:x="497695" fg:w="686"/><text x="95.8905%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (67 samples, 0.01%)</title><rect x="95.7595%" y="709" width="0.0129%" height="15" fill="rgb(251,211,41)" fg:x="498314" fg:w="67"/><text x="96.0095%" y="719.50"></text></g><g><title>__check_heap_object (77 samples, 0.01%)</title><rect x="95.8190%" y="693" width="0.0148%" height="15" fill="rgb(229,211,5)" fg:x="498624" fg:w="77"/><text x="96.0690%" y="703.50"></text></g><g><title>__virt_addr_valid (106 samples, 0.02%)</title><rect x="95.8338%" y="693" width="0.0204%" height="15" fill="rgb(239,36,31)" fg:x="498701" fg:w="106"/><text x="96.0838%" y="703.50"></text></g><g><title>__check_object_size (231 samples, 0.04%)</title><rect x="95.8110%" y="709" width="0.0444%" height="15" fill="rgb(248,67,31)" fg:x="498582" fg:w="231"/><text x="96.0610%" y="719.50"></text></g><g><title>getname_flags.part.0 (1,155 samples, 0.22%)</title><rect x="95.6345%" y="741" width="0.2220%" height="15" fill="rgb(249,55,44)" fg:x="497664" fg:w="1155"/><text x="95.8845%" y="751.50"></text></g><g><title>strncpy_from_user (438 samples, 0.08%)</title><rect x="95.7723%" y="725" width="0.0842%" height="15" fill="rgb(216,82,12)" fg:x="498381" fg:w="438"/><text x="96.0223%" y="735.50"></text></g><g><title>kmem_cache_free (129 samples, 0.02%)</title><rect x="95.8565%" y="741" width="0.0248%" height="15" fill="rgb(242,174,1)" fg:x="498819" fg:w="129"/><text x="96.1065%" y="751.50"></text></g><g><title>__x64_sys_openat (6,668 samples, 1.28%)</title><rect x="94.6016%" y="773" width="1.2814%" height="15" fill="rgb(208,120,29)" fg:x="492289" fg:w="6668"/><text x="94.8516%" y="783.50"></text></g><g><title>do_sys_openat2 (6,653 samples, 1.28%)</title><rect x="94.6045%" y="757" width="1.2785%" height="15" fill="rgb(221,105,43)" fg:x="492304" fg:w="6653"/><text x="94.8545%" y="767.50"></text></g><g><title>__fget_light (607 samples, 0.12%)</title><rect x="96.0006%" y="741" width="0.1166%" height="15" fill="rgb(234,124,22)" fg:x="499569" fg:w="607"/><text x="96.2506%" y="751.50"></text></g><g><title>__fget_files (546 samples, 0.10%)</title><rect x="96.0123%" y="725" width="0.1049%" height="15" fill="rgb(212,23,30)" fg:x="499630" fg:w="546"/><text x="96.2623%" y="735.50"></text></g><g><title>_cond_resched (78 samples, 0.01%)</title><rect x="96.1836%" y="725" width="0.0150%" height="15" fill="rgb(219,122,53)" fg:x="500521" fg:w="78"/><text x="96.4336%" y="735.50"></text></g><g><title>__fdget_pos (1,252 samples, 0.24%)</title><rect x="95.9585%" y="757" width="0.2406%" height="15" fill="rgb(248,84,24)" fg:x="499350" fg:w="1252"/><text x="96.2085%" y="767.50"></text></g><g><title>mutex_lock (425 samples, 0.08%)</title><rect x="96.1175%" y="741" width="0.0817%" height="15" fill="rgb(245,115,18)" fg:x="500177" fg:w="425"/><text x="96.3675%" y="751.50"></text></g><g><title>fput_many (314 samples, 0.06%)</title><rect x="96.2026%" y="757" width="0.0603%" height="15" fill="rgb(227,176,51)" fg:x="500620" fg:w="314"/><text x="96.4526%" y="767.50"></text></g><g><title>mutex_unlock (350 samples, 0.07%)</title><rect x="96.2629%" y="757" width="0.0673%" height="15" fill="rgb(229,63,42)" fg:x="500934" fg:w="350"/><text x="96.5129%" y="767.50"></text></g><g><title>__fsnotify_parent (411 samples, 0.08%)</title><rect x="96.4288%" y="741" width="0.0790%" height="15" fill="rgb(247,202,24)" fg:x="501797" fg:w="411"/><text x="96.6788%" y="751.50"></text></g><g><title>btrfs_file_read_iter (73 samples, 0.01%)</title><rect x="96.5737%" y="725" width="0.0140%" height="15" fill="rgb(244,173,20)" fg:x="502551" fg:w="73"/><text x="96.8237%" y="735.50"></text></g><g><title>_cond_resched (82 samples, 0.02%)</title><rect x="96.8008%" y="709" width="0.0158%" height="15" fill="rgb(242,81,47)" fg:x="503733" fg:w="82"/><text x="97.0508%" y="719.50"></text></g><g><title>_cond_resched (59 samples, 0.01%)</title><rect x="96.9050%" y="693" width="0.0113%" height="15" fill="rgb(231,185,54)" fg:x="504275" fg:w="59"/><text x="97.1550%" y="703.50"></text></g><g><title>exc_page_fault (55 samples, 0.01%)</title><rect x="97.5022%" y="661" width="0.0106%" height="15" fill="rgb(243,55,32)" fg:x="507383" fg:w="55"/><text x="97.7522%" y="671.50"></text></g><g><title>do_user_addr_fault (53 samples, 0.01%)</title><rect x="97.5026%" y="645" width="0.0102%" height="15" fill="rgb(208,167,19)" fg:x="507385" fg:w="53"/><text x="97.7526%" y="655.50"></text></g><g><title>asm_exc_page_fault (162 samples, 0.03%)</title><rect x="97.4818%" y="677" width="0.0311%" height="15" fill="rgb(231,72,35)" fg:x="507277" fg:w="162"/><text x="97.7318%" y="687.50"></text></g><g><title>copy_user_enhanced_fast_string (3,114 samples, 0.60%)</title><rect x="96.9178%" y="693" width="0.5984%" height="15" fill="rgb(250,173,51)" fg:x="504342" fg:w="3114"/><text x="97.1678%" y="703.50"></text></g><g><title>copy_page_to_iter (3,662 samples, 0.70%)</title><rect x="96.8177%" y="709" width="0.7037%" height="15" fill="rgb(209,5,22)" fg:x="503821" fg:w="3662"/><text x="97.0677%" y="719.50"></text></g><g><title>mark_page_accessed (64 samples, 0.01%)</title><rect x="97.5214%" y="709" width="0.0123%" height="15" fill="rgb(250,174,19)" fg:x="507483" fg:w="64"/><text x="97.7714%" y="719.50"></text></g><g><title>pagecache_get_page (1,425 samples, 0.27%)</title><rect x="97.5337%" y="709" width="0.2738%" height="15" fill="rgb(217,3,49)" fg:x="507547" fg:w="1425"/><text x="97.7837%" y="719.50"></text></g><g><title>find_get_entry (1,199 samples, 0.23%)</title><rect x="97.5772%" y="693" width="0.2304%" height="15" fill="rgb(218,225,5)" fg:x="507773" fg:w="1199"/><text x="97.8272%" y="703.50"></text></g><g><title>xas_load (357 samples, 0.07%)</title><rect x="97.7390%" y="677" width="0.0686%" height="15" fill="rgb(236,89,11)" fg:x="508615" fg:w="357"/><text x="97.9890%" y="687.50"></text></g><g><title>xas_start (221 samples, 0.04%)</title><rect x="97.7651%" y="661" width="0.0425%" height="15" fill="rgb(206,33,28)" fg:x="508751" fg:w="221"/><text x="98.0151%" y="671.50"></text></g><g><title>atime_needs_update (440 samples, 0.08%)</title><rect x="97.8279%" y="693" width="0.0846%" height="15" fill="rgb(241,56,42)" fg:x="509078" fg:w="440"/><text x="98.0779%" y="703.50"></text></g><g><title>current_time (242 samples, 0.05%)</title><rect x="97.8660%" y="677" width="0.0465%" height="15" fill="rgb(222,44,11)" fg:x="509276" fg:w="242"/><text x="98.1160%" y="687.50"></text></g><g><title>ktime_get_coarse_real_ts64 (80 samples, 0.02%)</title><rect x="97.8971%" y="661" width="0.0154%" height="15" fill="rgb(234,111,20)" fg:x="509438" fg:w="80"/><text x="98.1471%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (102 samples, 0.02%)</title><rect x="97.9175%" y="661" width="0.0196%" height="15" fill="rgb(237,77,6)" fg:x="509544" fg:w="102"/><text x="98.1675%" y="671.50"></text></g><g><title>btrfs_update_inode (112 samples, 0.02%)</title><rect x="97.9169%" y="677" width="0.0215%" height="15" fill="rgb(235,111,23)" fg:x="509541" fg:w="112"/><text x="98.1669%" y="687.50"></text></g><g><title>btrfs_dirty_inode (163 samples, 0.03%)</title><rect x="97.9125%" y="693" width="0.0313%" height="15" fill="rgb(251,135,29)" fg:x="509518" fg:w="163"/><text x="98.1625%" y="703.50"></text></g><g><title>generic_file_buffered_read (7,062 samples, 1.36%)</title><rect x="96.5877%" y="725" width="1.3571%" height="15" fill="rgb(217,57,1)" fg:x="502624" fg:w="7062"/><text x="96.8377%" y="735.50"></text></g><g><title>touch_atime (714 samples, 0.14%)</title><rect x="97.8076%" y="709" width="0.1372%" height="15" fill="rgb(249,119,31)" fg:x="508972" fg:w="714"/><text x="98.0576%" y="719.50"></text></g><g><title>new_sync_read (7,514 samples, 1.44%)</title><rect x="96.5081%" y="741" width="1.4439%" height="15" fill="rgb(233,164,33)" fg:x="502210" fg:w="7514"/><text x="96.7581%" y="751.50"></text></g><g><title>rw_verify_area (101 samples, 0.02%)</title><rect x="97.9521%" y="741" width="0.0194%" height="15" fill="rgb(250,217,43)" fg:x="509724" fg:w="101"/><text x="98.2021%" y="751.50"></text></g><g><title>aa_file_perm (135 samples, 0.03%)</title><rect x="98.0257%" y="709" width="0.0259%" height="15" fill="rgb(232,154,50)" fg:x="510107" fg:w="135"/><text x="98.2757%" y="719.50"></text></g><g><title>security_file_permission (420 samples, 0.08%)</title><rect x="97.9715%" y="741" width="0.0807%" height="15" fill="rgb(227,190,8)" fg:x="509825" fg:w="420"/><text x="98.2215%" y="751.50"></text></g><g><title>apparmor_file_permission (257 samples, 0.05%)</title><rect x="98.0028%" y="725" width="0.0494%" height="15" fill="rgb(209,217,32)" fg:x="509988" fg:w="257"/><text x="98.2528%" y="735.50"></text></g><g><title>ksys_read (11,102 samples, 2.13%)</title><rect x="95.9190%" y="773" width="2.1334%" height="15" fill="rgb(243,203,50)" fg:x="499144" fg:w="11102"/><text x="96.1690%" y="783.50">k..</text></g><g><title>vfs_read (8,962 samples, 1.72%)</title><rect x="96.3302%" y="757" width="1.7222%" height="15" fill="rgb(232,152,27)" fg:x="501284" fg:w="8962"/><text x="96.5802%" y="767.50"></text></g><g><title>syscall_enter_from_user_mode (123 samples, 0.02%)</title><rect x="98.0532%" y="773" width="0.0236%" height="15" fill="rgb(240,34,29)" fg:x="510250" fg:w="123"/><text x="98.3032%" y="783.50"></text></g><g><title>perf_iterate_sb (98 samples, 0.02%)</title><rect x="98.0904%" y="709" width="0.0188%" height="15" fill="rgb(215,185,52)" fg:x="510444" fg:w="98"/><text x="98.3404%" y="719.50"></text></g><g><title>perf_iterate_ctx (87 samples, 0.02%)</title><rect x="98.0926%" y="693" width="0.0167%" height="15" fill="rgb(240,89,49)" fg:x="510455" fg:w="87"/><text x="98.3426%" y="703.50"></text></g><g><title>perf_event_mmap_output (63 samples, 0.01%)</title><rect x="98.0972%" y="677" width="0.0121%" height="15" fill="rgb(225,12,52)" fg:x="510479" fg:w="63"/><text x="98.3472%" y="687.50"></text></g><g><title>perf_event_mmap (115 samples, 0.02%)</title><rect x="98.0877%" y="725" width="0.0221%" height="15" fill="rgb(239,128,45)" fg:x="510430" fg:w="115"/><text x="98.3377%" y="735.50"></text></g><g><title>do_mmap (214 samples, 0.04%)</title><rect x="98.0778%" y="757" width="0.0411%" height="15" fill="rgb(211,78,47)" fg:x="510378" fg:w="214"/><text x="98.3278%" y="767.50"></text></g><g><title>mmap_region (177 samples, 0.03%)</title><rect x="98.0849%" y="741" width="0.0340%" height="15" fill="rgb(232,31,21)" fg:x="510415" fg:w="177"/><text x="98.3349%" y="751.50"></text></g><g><title>do_syscall_64 (37,479 samples, 7.20%)</title><rect x="90.9224%" y="789" width="7.2022%" height="15" fill="rgb(222,168,14)" fg:x="473143" fg:w="37479"/><text x="91.1724%" y="799.50">do_syscall..</text></g><g><title>vm_mmap_pgoff (249 samples, 0.05%)</title><rect x="98.0768%" y="773" width="0.0478%" height="15" fill="rgb(209,128,24)" fg:x="510373" fg:w="249"/><text x="98.3268%" y="783.50"></text></g><g><title>do_group_exit (107 samples, 0.02%)</title><rect x="98.1971%" y="725" width="0.0206%" height="15" fill="rgb(249,35,13)" fg:x="510999" fg:w="107"/><text x="98.4471%" y="735.50"></text></g><g><title>do_exit (106 samples, 0.02%)</title><rect x="98.1973%" y="709" width="0.0204%" height="15" fill="rgb(218,7,2)" fg:x="511000" fg:w="106"/><text x="98.4473%" y="719.50"></text></g><g><title>arch_do_signal (156 samples, 0.03%)</title><rect x="98.1886%" y="757" width="0.0300%" height="15" fill="rgb(238,107,27)" fg:x="510955" fg:w="156"/><text x="98.4386%" y="767.50"></text></g><g><title>get_signal (154 samples, 0.03%)</title><rect x="98.1890%" y="741" width="0.0296%" height="15" fill="rgb(217,88,38)" fg:x="510957" fg:w="154"/><text x="98.4390%" y="751.50"></text></g><g><title>fpregs_assert_state_consistent (107 samples, 0.02%)</title><rect x="98.2226%" y="757" width="0.0206%" height="15" fill="rgb(230,207,0)" fg:x="511132" fg:w="107"/><text x="98.4726%" y="767.50"></text></g><g><title>switch_fpu_return (130 samples, 0.02%)</title><rect x="98.2503%" y="757" width="0.0250%" height="15" fill="rgb(249,64,54)" fg:x="511276" fg:w="130"/><text x="98.5003%" y="767.50"></text></g><g><title>copy_kernel_to_fpregs (93 samples, 0.02%)</title><rect x="98.2574%" y="741" width="0.0179%" height="15" fill="rgb(231,7,11)" fg:x="511313" fg:w="93"/><text x="98.5074%" y="751.50"></text></g><g><title>btrfs_release_file (105 samples, 0.02%)</title><rect x="98.3195%" y="725" width="0.0202%" height="15" fill="rgb(205,149,21)" fg:x="511636" fg:w="105"/><text x="98.5695%" y="735.50"></text></g><g><title>dput (89 samples, 0.02%)</title><rect x="98.3397%" y="725" width="0.0171%" height="15" fill="rgb(215,126,34)" fg:x="511741" fg:w="89"/><text x="98.5897%" y="735.50"></text></g><g><title>kmem_cache_free (142 samples, 0.03%)</title><rect x="98.3574%" y="725" width="0.0273%" height="15" fill="rgb(241,132,45)" fg:x="511833" fg:w="142"/><text x="98.6074%" y="735.50"></text></g><g><title>__fput (626 samples, 0.12%)</title><rect x="98.2897%" y="741" width="0.1203%" height="15" fill="rgb(252,69,32)" fg:x="511481" fg:w="626"/><text x="98.5397%" y="751.50"></text></g><g><title>security_file_free (75 samples, 0.01%)</title><rect x="98.3956%" y="725" width="0.0144%" height="15" fill="rgb(232,204,19)" fg:x="512032" fg:w="75"/><text x="98.6456%" y="735.50"></text></g><g><title>apparmor_file_free_security (57 samples, 0.01%)</title><rect x="98.3991%" y="709" width="0.0110%" height="15" fill="rgb(249,15,47)" fg:x="512050" fg:w="57"/><text x="98.6491%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39,536 samples, 7.60%)</title><rect x="90.8728%" y="805" width="7.5975%" height="15" fill="rgb(209,227,23)" fg:x="472885" fg:w="39536"/><text x="91.1228%" y="815.50">entry_SYSC..</text></g><g><title>syscall_exit_to_user_mode (1,799 samples, 0.35%)</title><rect x="98.1246%" y="789" width="0.3457%" height="15" fill="rgb(248,92,24)" fg:x="510622" fg:w="1799"/><text x="98.3746%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (1,678 samples, 0.32%)</title><rect x="98.1479%" y="773" width="0.3225%" height="15" fill="rgb(247,59,2)" fg:x="510743" fg:w="1678"/><text x="98.3979%" y="783.50"></text></g><g><title>task_work_run (1,015 samples, 0.20%)</title><rect x="98.2753%" y="757" width="0.1950%" height="15" fill="rgb(221,30,5)" fg:x="511406" fg:w="1015"/><text x="98.5253%" y="767.50"></text></g><g><title>call_rcu (254 samples, 0.05%)</title><rect x="98.4215%" y="741" width="0.0488%" height="15" fill="rgb(208,108,53)" fg:x="512167" fg:w="254"/><text x="98.6715%" y="751.50"></text></g><g><title>rcu_segcblist_enqueue (131 samples, 0.03%)</title><rect x="98.4452%" y="725" width="0.0252%" height="15" fill="rgb(211,183,26)" fg:x="512290" fg:w="131"/><text x="98.6952%" y="735.50"></text></g><g><title>error_entry (210 samples, 0.04%)</title><rect x="98.4704%" y="805" width="0.0404%" height="15" fill="rgb(232,132,4)" fg:x="512421" fg:w="210"/><text x="98.7204%" y="815.50"></text></g><g><title>sync_regs (184 samples, 0.04%)</title><rect x="98.4753%" y="789" width="0.0354%" height="15" fill="rgb(253,128,37)" fg:x="512447" fg:w="184"/><text x="98.7253%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (5,029 samples, 0.97%)</title><rect x="98.5849%" y="757" width="0.9664%" height="15" fill="rgb(221,58,24)" fg:x="513017" fg:w="5029"/><text x="98.8349%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,894 samples, 0.94%)</title><rect x="98.6108%" y="741" width="0.9405%" height="15" fill="rgb(230,54,45)" fg:x="513152" fg:w="4894"/><text x="98.8608%" y="751.50"></text></g><g><title>native_write_msr (4,881 samples, 0.94%)</title><rect x="98.6133%" y="725" width="0.9380%" height="15" fill="rgb(254,21,18)" fg:x="513165" fg:w="4881"/><text x="98.8633%" y="735.50"></text></g><g><title>__wake_up_common (66 samples, 0.01%)</title><rect x="99.5711%" y="597" width="0.0127%" height="15" fill="rgb(221,108,0)" fg:x="518149" fg:w="66"/><text x="99.8211%" y="607.50"></text></g><g><title>pollwake (62 samples, 0.01%)</title><rect x="99.5719%" y="581" width="0.0119%" height="15" fill="rgb(206,95,1)" fg:x="518153" fg:w="62"/><text x="99.8219%" y="591.50"></text></g><g><title>try_to_wake_up (62 samples, 0.01%)</title><rect x="99.5719%" y="565" width="0.0119%" height="15" fill="rgb(237,52,5)" fg:x="518153" fg:w="62"/><text x="99.8219%" y="575.50"></text></g><g><title>irq_work_run (82 samples, 0.02%)</title><rect x="99.5690%" y="693" width="0.0158%" height="15" fill="rgb(218,150,34)" fg:x="518138" fg:w="82"/><text x="99.8190%" y="703.50"></text></g><g><title>irq_work_run_list (80 samples, 0.02%)</title><rect x="99.5694%" y="677" width="0.0154%" height="15" fill="rgb(235,194,28)" fg:x="518140" fg:w="80"/><text x="99.8194%" y="687.50"></text></g><g><title>irq_work_single (79 samples, 0.02%)</title><rect x="99.5695%" y="661" width="0.0152%" height="15" fill="rgb(245,92,18)" fg:x="518141" fg:w="79"/><text x="99.8195%" y="671.50"></text></g><g><title>perf_pending_event (77 samples, 0.01%)</title><rect x="99.5699%" y="645" width="0.0148%" height="15" fill="rgb(253,203,53)" fg:x="518143" fg:w="77"/><text x="99.8199%" y="655.50"></text></g><g><title>perf_event_wakeup (73 samples, 0.01%)</title><rect x="99.5707%" y="629" width="0.0140%" height="15" fill="rgb(249,185,47)" fg:x="518147" fg:w="73"/><text x="99.8207%" y="639.50"></text></g><g><title>__wake_up_common_lock (71 samples, 0.01%)</title><rect x="99.5711%" y="613" width="0.0136%" height="15" fill="rgb(252,194,52)" fg:x="518149" fg:w="71"/><text x="99.8211%" y="623.50"></text></g><g><title>asm_call_sysvec_on_stack (98 samples, 0.02%)</title><rect x="99.5669%" y="725" width="0.0188%" height="15" fill="rgb(210,53,36)" fg:x="518127" fg:w="98"/><text x="99.8169%" y="735.50"></text></g><g><title>__sysvec_irq_work (90 samples, 0.02%)</title><rect x="99.5684%" y="709" width="0.0173%" height="15" fill="rgb(237,37,25)" fg:x="518135" fg:w="90"/><text x="99.8184%" y="719.50"></text></g><g><title>asm_sysvec_irq_work (178 samples, 0.03%)</title><rect x="99.5519%" y="757" width="0.0342%" height="15" fill="rgb(242,116,27)" fg:x="518049" fg:w="178"/><text x="99.8019%" y="767.50"></text></g><g><title>sysvec_irq_work (103 samples, 0.02%)</title><rect x="99.5663%" y="741" width="0.0198%" height="15" fill="rgb(213,185,26)" fg:x="518124" fg:w="103"/><text x="99.8163%" y="751.50"></text></g><g><title>schedule_tail (5,537 samples, 1.06%)</title><rect x="98.5255%" y="789" width="1.0640%" height="15" fill="rgb(225,204,8)" fg:x="512708" fg:w="5537"/><text x="98.7755%" y="799.50"></text></g><g><title>finish_task_switch (5,510 samples, 1.06%)</title><rect x="98.5307%" y="773" width="1.0588%" height="15" fill="rgb(254,111,37)" fg:x="512735" fg:w="5510"/><text x="98.7807%" y="783.50"></text></g><g><title>ret_from_fork (5,637 samples, 1.08%)</title><rect x="98.5176%" y="805" width="1.0832%" height="15" fill="rgb(242,35,9)" fg:x="512667" fg:w="5637"/><text x="98.7676%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (59 samples, 0.01%)</title><rect x="99.5895%" y="789" width="0.0113%" height="15" fill="rgb(232,138,49)" fg:x="518245" fg:w="59"/><text x="99.8395%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (57 samples, 0.01%)</title><rect x="99.5899%" y="773" width="0.0110%" height="15" fill="rgb(247,56,4)" fg:x="518247" fg:w="57"/><text x="99.8399%" y="783.50"></text></g><g><title>syscall_return_via_sysret (333 samples, 0.06%)</title><rect x="99.6009%" y="805" width="0.0640%" height="15" fill="rgb(226,179,17)" fg:x="518304" fg:w="333"/><text x="99.8509%" y="815.50"></text></g><g><title>[zig] (74,333 samples, 14.28%)</title><rect x="85.3811%" y="821" width="14.2843%" height="15" fill="rgb(216,163,45)" fg:x="444307" fg:w="74333"/><text x="85.6311%" y="831.50">[zig]</text></g><g><title>asm_exc_page_fault (507 samples, 0.10%)</title><rect x="99.6666%" y="821" width="0.0974%" height="15" fill="rgb(211,157,3)" fg:x="518646" fg:w="507"/><text x="99.9166%" y="831.50"></text></g><g><title>exit_mmap (141 samples, 0.03%)</title><rect x="99.7919%" y="693" width="0.0271%" height="15" fill="rgb(234,44,20)" fg:x="519298" fg:w="141"/><text x="100.0419%" y="703.50"></text></g><g><title>unmap_vmas (87 samples, 0.02%)</title><rect x="99.8023%" y="677" width="0.0167%" height="15" fill="rgb(254,138,23)" fg:x="519352" fg:w="87"/><text x="100.0523%" y="687.50"></text></g><g><title>unmap_page_range (86 samples, 0.02%)</title><rect x="99.8025%" y="661" width="0.0165%" height="15" fill="rgb(206,119,39)" fg:x="519353" fg:w="86"/><text x="100.0525%" y="671.50"></text></g><g><title>begin_new_exec (144 samples, 0.03%)</title><rect x="99.7915%" y="725" width="0.0277%" height="15" fill="rgb(231,105,52)" fg:x="519296" fg:w="144"/><text x="100.0415%" y="735.50"></text></g><g><title>mmput (143 samples, 0.03%)</title><rect x="99.7917%" y="709" width="0.0275%" height="15" fill="rgb(250,20,5)" fg:x="519297" fg:w="143"/><text x="100.0417%" y="719.50"></text></g><g><title>__x64_sys_execve (171 samples, 0.03%)</title><rect x="99.7907%" y="789" width="0.0329%" height="15" fill="rgb(215,198,30)" fg:x="519292" fg:w="171"/><text x="100.0407%" y="799.50"></text></g><g><title>do_execveat_common (171 samples, 0.03%)</title><rect x="99.7907%" y="773" width="0.0329%" height="15" fill="rgb(246,142,8)" fg:x="519292" fg:w="171"/><text x="100.0407%" y="783.50"></text></g><g><title>bprm_execve (171 samples, 0.03%)</title><rect x="99.7907%" y="757" width="0.0329%" height="15" fill="rgb(243,26,38)" fg:x="519292" fg:w="171"/><text x="100.0407%" y="767.50"></text></g><g><title>load_elf_binary (171 samples, 0.03%)</title><rect x="99.7907%" y="741" width="0.0329%" height="15" fill="rgb(205,133,28)" fg:x="519292" fg:w="171"/><text x="100.0407%" y="751.50"></text></g><g><title>tlb_finish_mmu (75 samples, 0.01%)</title><rect x="99.8265%" y="709" width="0.0144%" height="15" fill="rgb(212,34,0)" fg:x="519478" fg:w="75"/><text x="100.0765%" y="719.50"></text></g><g><title>page_remove_rmap (87 samples, 0.02%)</title><rect x="99.8668%" y="677" width="0.0167%" height="15" fill="rgb(251,226,22)" fg:x="519688" fg:w="87"/><text x="100.1168%" y="687.50"></text></g><g><title>mmput (349 samples, 0.07%)</title><rect x="99.8255%" y="741" width="0.0671%" height="15" fill="rgb(252,119,9)" fg:x="519473" fg:w="349"/><text x="100.0755%" y="751.50"></text></g><g><title>exit_mmap (349 samples, 0.07%)</title><rect x="99.8255%" y="725" width="0.0671%" height="15" fill="rgb(213,150,50)" fg:x="519473" fg:w="349"/><text x="100.0755%" y="735.50"></text></g><g><title>unmap_vmas (269 samples, 0.05%)</title><rect x="99.8409%" y="709" width="0.0517%" height="15" fill="rgb(212,24,39)" fg:x="519553" fg:w="269"/><text x="100.0909%" y="719.50"></text></g><g><title>unmap_page_range (269 samples, 0.05%)</title><rect x="99.8409%" y="693" width="0.0517%" height="15" fill="rgb(213,46,39)" fg:x="519553" fg:w="269"/><text x="100.0909%" y="703.50"></text></g><g><title>__x64_sys_exit_group (361 samples, 0.07%)</title><rect x="99.8240%" y="789" width="0.0694%" height="15" fill="rgb(239,106,12)" fg:x="519465" fg:w="361"/><text x="100.0740%" y="799.50"></text></g><g><title>do_group_exit (361 samples, 0.07%)</title><rect x="99.8240%" y="773" width="0.0694%" height="15" fill="rgb(249,229,21)" fg:x="519465" fg:w="361"/><text x="100.0740%" y="783.50"></text></g><g><title>do_exit (361 samples, 0.07%)</title><rect x="99.8240%" y="757" width="0.0694%" height="15" fill="rgb(212,158,3)" fg:x="519465" fg:w="361"/><text x="100.0740%" y="767.50"></text></g><g><title>do_syscall_64 (554 samples, 0.11%)</title><rect x="99.7907%" y="805" width="0.1065%" height="15" fill="rgb(253,26,48)" fg:x="519292" fg:w="554"/><text x="100.0407%" y="815.50"></text></g><g><title>page_remove_rmap (62 samples, 0.01%)</title><rect x="99.9297%" y="645" width="0.0119%" height="15" fill="rgb(238,178,20)" fg:x="520015" fg:w="62"/><text x="100.1797%" y="655.50"></text></g><g><title>mmput (179 samples, 0.03%)</title><rect x="99.9085%" y="709" width="0.0344%" height="15" fill="rgb(208,86,15)" fg:x="519905" fg:w="179"/><text x="100.1585%" y="719.50"></text></g><g><title>exit_mmap (179 samples, 0.03%)</title><rect x="99.9085%" y="693" width="0.0344%" height="15" fill="rgb(239,42,53)" fg:x="519905" fg:w="179"/><text x="100.1585%" y="703.50"></text></g><g><title>unmap_vmas (132 samples, 0.03%)</title><rect x="99.9176%" y="677" width="0.0254%" height="15" fill="rgb(245,226,8)" fg:x="519952" fg:w="132"/><text x="100.1676%" y="687.50"></text></g><g><title>unmap_page_range (132 samples, 0.03%)</title><rect x="99.9176%" y="661" width="0.0254%" height="15" fill="rgb(216,176,32)" fg:x="519952" fg:w="132"/><text x="100.1676%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (945 samples, 0.18%)</title><rect x="99.7646%" y="821" width="0.1816%" height="15" fill="rgb(231,186,21)" fg:x="519156" fg:w="945"/><text x="100.0146%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (255 samples, 0.05%)</title><rect x="99.8972%" y="805" width="0.0490%" height="15" fill="rgb(205,95,49)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (255 samples, 0.05%)</title><rect x="99.8972%" y="789" width="0.0490%" height="15" fill="rgb(217,145,8)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="799.50"></text></g><g><title>arch_do_signal (255 samples, 0.05%)</title><rect x="99.8972%" y="773" width="0.0490%" height="15" fill="rgb(239,144,48)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="783.50"></text></g><g><title>get_signal (255 samples, 0.05%)</title><rect x="99.8972%" y="757" width="0.0490%" height="15" fill="rgb(214,189,23)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="767.50"></text></g><g><title>do_group_exit (255 samples, 0.05%)</title><rect x="99.8972%" y="741" width="0.0490%" height="15" fill="rgb(229,157,17)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="751.50"></text></g><g><title>do_exit (255 samples, 0.05%)</title><rect x="99.8972%" y="725" width="0.0490%" height="15" fill="rgb(230,5,48)" fg:x="519846" fg:w="255"/><text x="100.1472%" y="735.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (222 samples, 0.04%)</title><rect x="99.9462%" y="821" width="0.0427%" height="15" fill="rgb(224,156,48)" fg:x="520101" fg:w="222"/><text x="100.1962%" y="831.50"></text></g><g><title>all (520,381 samples, 100%)</title><rect x="0.0000%" y="853" width="100.0000%" height="15" fill="rgb(223,14,29)" fg:x="0" fg:w="520381"/><text x="0.2500%" y="863.50"></text></g><g><title>zig (76,074 samples, 14.62%)</title><rect x="85.3811%" y="837" width="14.6189%" height="15" fill="rgb(229,96,36)" fg:x="444307" fg:w="76074"/><text x="85.6311%" y="847.50">zig</text></g></svg></svg> -\ No newline at end of file +]]></script><rect x="0" y="0" width="100%" height="886" 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="869.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="869.00"> </text><svg id="frames" x="10" width="1180" total_samples="517577"><g><title>_dl_update_slotinfo (144 samples, 0.03%)</title><rect x="0.1847%" y="789" width="0.0278%" height="15" fill="rgb(227,0,7)" fg:x="956" fg:w="144"/><text x="0.4347%" y="799.50"></text></g><g><title>[anon] (1,215 samples, 0.23%)</title><rect x="0.0176%" y="805" width="0.2347%" height="15" fill="rgb(217,0,24)" fg:x="91" fg:w="1215"/><text x="0.2676%" y="815.50"></text></g><g><title>[perf-965379.map] (172 samples, 0.03%)</title><rect x="0.2531%" y="805" width="0.0332%" height="15" fill="rgb(221,193,54)" fg:x="1310" fg:w="172"/><text x="0.5031%" y="815.50"></text></g><g><title>[unknown] (132 samples, 0.03%)</title><rect x="0.2863%" y="805" width="0.0255%" height="15" fill="rgb(248,212,6)" fg:x="1482" fg:w="132"/><text x="0.5363%" y="815.50"></text></g><g><title>CompileBroker::post_compile (72 samples, 0.01%)</title><rect x="0.3314%" y="693" width="0.0139%" height="15" fill="rgb(208,68,35)" fg:x="1715" fg:w="72"/><text x="0.5814%" y="703.50"></text></g><g><title>StringEventLog::log (69 samples, 0.01%)</title><rect x="0.3319%" y="677" width="0.0133%" height="15" fill="rgb(232,128,0)" fg:x="1718" fg:w="69"/><text x="0.5819%" y="687.50"></text></g><g><title>jio_vsnprintf (62 samples, 0.01%)</title><rect x="0.3333%" y="661" width="0.0120%" height="15" fill="rgb(207,160,47)" fg:x="1725" fg:w="62"/><text x="0.5833%" y="671.50"></text></g><g><title>os::vsnprintf (62 samples, 0.01%)</title><rect x="0.3333%" y="645" width="0.0120%" height="15" fill="rgb(228,23,34)" fg:x="1725" fg:w="62"/><text x="0.5833%" y="655.50"></text></g><g><title>__vsnprintf_internal (60 samples, 0.01%)</title><rect x="0.3337%" y="629" width="0.0116%" height="15" fill="rgb(218,30,26)" fg:x="1727" fg:w="60"/><text x="0.5837%" y="639.50"></text></g><g><title>__vfprintf_internal (58 samples, 0.01%)</title><rect x="0.3341%" y="613" width="0.0112%" height="15" fill="rgb(220,122,19)" fg:x="1729" fg:w="58"/><text x="0.5841%" y="623.50"></text></g><g><title>CompileTask::print (83 samples, 0.02%)</title><rect x="0.3485%" y="693" width="0.0160%" height="15" fill="rgb(250,228,42)" fg:x="1804" fg:w="83"/><text x="0.5985%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (54 samples, 0.01%)</title><rect x="0.3882%" y="533" width="0.0104%" height="15" fill="rgb(240,193,28)" fg:x="2009" fg:w="54"/><text x="0.6382%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (73 samples, 0.01%)</title><rect x="0.3882%" y="549" width="0.0141%" height="15" fill="rgb(216,20,37)" fg:x="2009" fg:w="73"/><text x="0.6382%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (123 samples, 0.02%)</title><rect x="0.3876%" y="565" width="0.0238%" height="15" fill="rgb(206,188,39)" fg:x="2006" fg:w="123"/><text x="0.6376%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (195 samples, 0.04%)</title><rect x="0.3862%" y="581" width="0.0377%" height="15" fill="rgb(217,207,13)" fg:x="1999" fg:w="195"/><text x="0.6362%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (65 samples, 0.01%)</title><rect x="0.4113%" y="565" width="0.0126%" height="15" fill="rgb(231,73,38)" fg:x="2129" fg:w="65"/><text x="0.6613%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (196 samples, 0.04%)</title><rect x="0.3862%" y="597" width="0.0379%" height="15" fill="rgb(225,20,46)" fg:x="1999" fg:w="196"/><text x="0.6362%" y="607.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (363 samples, 0.07%)</title><rect x="0.3744%" y="613" width="0.0701%" height="15" fill="rgb(210,31,41)" fg:x="1938" fg:w="363"/><text x="0.6244%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (69 samples, 0.01%)</title><rect x="0.4484%" y="549" width="0.0133%" height="15" fill="rgb(221,200,47)" fg:x="2321" fg:w="69"/><text x="0.6984%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (93 samples, 0.02%)</title><rect x="0.4459%" y="565" width="0.0180%" height="15" fill="rgb(226,26,5)" fg:x="2308" fg:w="93"/><text x="0.6959%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (95 samples, 0.02%)</title><rect x="0.4457%" y="581" width="0.0184%" height="15" fill="rgb(249,33,26)" fg:x="2307" fg:w="95"/><text x="0.6957%" y="591.50"></text></g><g><title>MethodLiveness::init_basic_blocks (71 samples, 0.01%)</title><rect x="0.4821%" y="517" width="0.0137%" height="15" fill="rgb(235,183,28)" fg:x="2495" fg:w="71"/><text x="0.7321%" y="527.50"></text></g><g><title>BlockListBuilder::set_leaders (136 samples, 0.03%)</title><rect x="0.4697%" y="565" width="0.0263%" height="15" fill="rgb(221,5,38)" fg:x="2431" fg:w="136"/><text x="0.7197%" y="575.50"></text></g><g><title>ciMethod::bci_block_start (97 samples, 0.02%)</title><rect x="0.4772%" y="549" width="0.0187%" height="15" fill="rgb(247,18,42)" fg:x="2470" fg:w="97"/><text x="0.7272%" y="559.50"></text></g><g><title>MethodLiveness::compute_liveness (95 samples, 0.02%)</title><rect x="0.4776%" y="533" width="0.0184%" height="15" fill="rgb(241,131,45)" fg:x="2472" fg:w="95"/><text x="0.7276%" y="543.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (155 samples, 0.03%)</title><rect x="0.4664%" y="581" width="0.0299%" height="15" fill="rgb(249,31,29)" fg:x="2414" fg:w="155"/><text x="0.7164%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (65 samples, 0.01%)</title><rect x="0.5414%" y="485" width="0.0126%" height="15" fill="rgb(225,111,53)" fg:x="2802" fg:w="65"/><text x="0.7914%" y="495.50"></text></g><g><title>ciField::ciField (106 samples, 0.02%)</title><rect x="0.5377%" y="501" width="0.0205%" height="15" fill="rgb(238,160,17)" fg:x="2783" fg:w="106"/><text x="0.7877%" y="511.50"></text></g><g><title>ciEnv::get_field_by_index (121 samples, 0.02%)</title><rect x="0.5352%" y="517" width="0.0234%" height="15" fill="rgb(214,148,48)" fg:x="2770" fg:w="121"/><text x="0.7852%" y="527.50"></text></g><g><title>ciBytecodeStream::get_field (137 samples, 0.03%)</title><rect x="0.5350%" y="533" width="0.0265%" height="15" fill="rgb(232,36,49)" fg:x="2769" fg:w="137"/><text x="0.7850%" y="543.50"></text></g><g><title>GraphBuilder::access_field (188 samples, 0.04%)</title><rect x="0.5280%" y="549" width="0.0363%" height="15" fill="rgb(209,103,24)" fg:x="2733" fg:w="188"/><text x="0.7780%" y="559.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (53 samples, 0.01%)</title><rect x="0.6407%" y="405" width="0.0102%" height="15" fill="rgb(229,88,8)" fg:x="3316" fg:w="53"/><text x="0.8907%" y="415.50"></text></g><g><title>ciField::ciField (79 samples, 0.02%)</title><rect x="0.6378%" y="421" width="0.0153%" height="15" fill="rgb(213,181,19)" fg:x="3301" fg:w="79"/><text x="0.8878%" y="431.50"></text></g><g><title>ciEnv::get_field_by_index (86 samples, 0.02%)</title><rect x="0.6366%" y="437" width="0.0166%" height="15" fill="rgb(254,191,54)" fg:x="3295" fg:w="86"/><text x="0.8866%" y="447.50"></text></g><g><title>ciBytecodeStream::get_field (102 samples, 0.02%)</title><rect x="0.6364%" y="453" width="0.0197%" height="15" fill="rgb(241,83,37)" fg:x="3294" fg:w="102"/><text x="0.8864%" y="463.50"></text></g><g><title>GraphBuilder::access_field (151 samples, 0.03%)</title><rect x="0.6285%" y="469" width="0.0292%" height="15" fill="rgb(233,36,39)" fg:x="3253" fg:w="151"/><text x="0.8785%" y="479.50"></text></g><g><title>GraphBuilder::invoke (53 samples, 0.01%)</title><rect x="0.7299%" y="229" width="0.0102%" height="15" fill="rgb(226,3,54)" fg:x="3778" fg:w="53"/><text x="0.9799%" y="239.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (87 samples, 0.02%)</title><rect x="0.7259%" y="261" width="0.0168%" height="15" fill="rgb(245,192,40)" fg:x="3757" fg:w="87"/><text x="0.9759%" y="271.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (87 samples, 0.02%)</title><rect x="0.7259%" y="245" width="0.0168%" height="15" fill="rgb(238,167,29)" fg:x="3757" fg:w="87"/><text x="0.9759%" y="255.50"></text></g><g><title>GraphBuilder::try_inline_full (123 samples, 0.02%)</title><rect x="0.7247%" y="277" width="0.0238%" height="15" fill="rgb(232,182,51)" fg:x="3751" fg:w="123"/><text x="0.9747%" y="287.50"></text></g><g><title>GraphBuilder::try_inline (129 samples, 0.02%)</title><rect x="0.7241%" y="293" width="0.0249%" height="15" fill="rgb(231,60,39)" fg:x="3748" fg:w="129"/><text x="0.9741%" y="303.50"></text></g><g><title>GraphBuilder::invoke (192 samples, 0.04%)</title><rect x="0.7222%" y="309" width="0.0371%" height="15" fill="rgb(208,69,12)" fg:x="3738" fg:w="192"/><text x="0.9722%" y="319.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (280 samples, 0.05%)</title><rect x="0.7085%" y="341" width="0.0541%" height="15" fill="rgb(235,93,37)" fg:x="3667" fg:w="280"/><text x="0.9585%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (280 samples, 0.05%)</title><rect x="0.7085%" y="325" width="0.0541%" height="15" fill="rgb(213,116,39)" fg:x="3667" fg:w="280"/><text x="0.9585%" y="335.50"></text></g><g><title>GraphBuilder::try_inline_full (367 samples, 0.07%)</title><rect x="0.7069%" y="357" width="0.0709%" height="15" fill="rgb(222,207,29)" fg:x="3659" fg:w="367"/><text x="0.9569%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (402 samples, 0.08%)</title><rect x="0.7056%" y="373" width="0.0777%" height="15" fill="rgb(206,96,30)" fg:x="3652" fg:w="402"/><text x="0.9556%" y="383.50"></text></g><g><title>ciBytecodeStream::get_method (102 samples, 0.02%)</title><rect x="0.7867%" y="373" width="0.0197%" height="15" fill="rgb(218,138,4)" fg:x="4072" fg:w="102"/><text x="1.0367%" y="383.50"></text></g><g><title>ciEnv::get_method_by_index_impl (93 samples, 0.02%)</title><rect x="0.7885%" y="357" width="0.0180%" height="15" fill="rgb(250,191,14)" fg:x="4081" fg:w="93"/><text x="1.0385%" y="367.50"></text></g><g><title>GraphBuilder::invoke (568 samples, 0.11%)</title><rect x="0.7021%" y="389" width="0.1097%" height="15" fill="rgb(239,60,40)" fg:x="3634" fg:w="568"/><text x="0.9521%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (732 samples, 0.14%)</title><rect x="0.6778%" y="421" width="0.1414%" height="15" fill="rgb(206,27,48)" fg:x="3508" fg:w="732"/><text x="0.9278%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (725 samples, 0.14%)</title><rect x="0.6791%" y="405" width="0.1401%" height="15" fill="rgb(225,35,8)" fg:x="3515" fg:w="725"/><text x="0.9291%" y="415.50"></text></g><g><title>GraphBuilder::push_scope (73 samples, 0.01%)</title><rect x="0.8196%" y="421" width="0.0141%" height="15" fill="rgb(250,213,24)" fg:x="4242" fg:w="73"/><text x="1.0696%" y="431.50"></text></g><g><title>ciMethod::ensure_method_data (73 samples, 0.01%)</title><rect x="0.8352%" y="421" width="0.0141%" height="15" fill="rgb(247,123,22)" fg:x="4323" fg:w="73"/><text x="1.0852%" y="431.50"></text></g><g><title>ciMethod::ensure_method_data (69 samples, 0.01%)</title><rect x="0.8360%" y="405" width="0.0133%" height="15" fill="rgb(231,138,38)" fg:x="4327" fg:w="69"/><text x="1.0860%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (921 samples, 0.18%)</title><rect x="0.6720%" y="437" width="0.1779%" height="15" fill="rgb(231,145,46)" fg:x="3478" fg:w="921"/><text x="0.9220%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (964 samples, 0.19%)</title><rect x="0.6700%" y="453" width="0.1863%" height="15" fill="rgb(251,118,11)" fg:x="3468" fg:w="964"/><text x="0.9200%" y="463.50"></text></g><g><title>ciSignature::ciSignature (64 samples, 0.01%)</title><rect x="0.8816%" y="373" width="0.0124%" height="15" fill="rgb(217,147,25)" fg:x="4563" fg:w="64"/><text x="1.1316%" y="383.50"></text></g><g><title>ciMethod::ciMethod (83 samples, 0.02%)</title><rect x="0.8781%" y="389" width="0.0160%" height="15" fill="rgb(247,81,37)" fg:x="4545" fg:w="83"/><text x="1.1281%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (97 samples, 0.02%)</title><rect x="0.8760%" y="421" width="0.0187%" height="15" fill="rgb(209,12,38)" fg:x="4534" fg:w="97"/><text x="1.1260%" y="431.50"></text></g><g><title>ciObjectFactory::create_new_metadata (90 samples, 0.02%)</title><rect x="0.8774%" y="405" width="0.0174%" height="15" fill="rgb(227,1,9)" fg:x="4541" fg:w="90"/><text x="1.1274%" y="415.50"></text></g><g><title>ciBytecodeStream::get_method (182 samples, 0.04%)</title><rect x="0.8605%" y="453" width="0.0352%" height="15" fill="rgb(248,47,43)" fg:x="4454" fg:w="182"/><text x="1.1105%" y="463.50"></text></g><g><title>ciEnv::get_method_by_index_impl (170 samples, 0.03%)</title><rect x="0.8629%" y="437" width="0.0328%" height="15" fill="rgb(221,10,30)" fg:x="4466" fg:w="170"/><text x="1.1129%" y="447.50"></text></g><g><title>GraphBuilder::invoke (1,247 samples, 0.24%)</title><rect x="0.6614%" y="469" width="0.2409%" height="15" fill="rgb(210,229,1)" fg:x="3423" fg:w="1247"/><text x="0.9114%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,594 samples, 0.31%)</title><rect x="0.6100%" y="501" width="0.3080%" height="15" fill="rgb(222,148,37)" fg:x="3157" fg:w="1594"/><text x="0.8600%" y="511.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,579 samples, 0.31%)</title><rect x="0.6129%" y="485" width="0.3051%" height="15" fill="rgb(234,67,33)" fg:x="3172" fg:w="1579"/><text x="0.8629%" y="495.50"></text></g><g><title>MethodLiveness::init_basic_blocks (53 samples, 0.01%)</title><rect x="0.9307%" y="421" width="0.0102%" height="15" fill="rgb(247,98,35)" fg:x="4817" fg:w="53"/><text x="1.1807%" y="431.50"></text></g><g><title>BlockListBuilder::set_leaders (81 samples, 0.02%)</title><rect x="0.9255%" y="469" width="0.0156%" height="15" fill="rgb(247,138,52)" fg:x="4790" fg:w="81"/><text x="1.1755%" y="479.50"></text></g><g><title>ciMethod::bci_block_start (70 samples, 0.01%)</title><rect x="0.9276%" y="453" width="0.0135%" height="15" fill="rgb(213,79,30)" fg:x="4801" fg:w="70"/><text x="1.1776%" y="463.50"></text></g><g><title>MethodLiveness::compute_liveness (69 samples, 0.01%)</title><rect x="0.9278%" y="437" width="0.0133%" height="15" fill="rgb(246,177,23)" fg:x="4802" fg:w="69"/><text x="1.1778%" y="447.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (98 samples, 0.02%)</title><rect x="0.9224%" y="485" width="0.0189%" height="15" fill="rgb(230,62,27)" fg:x="4774" fg:w="98"/><text x="1.1724%" y="495.50"></text></g><g><title>GraphBuilder::push_scope (156 samples, 0.03%)</title><rect x="0.9212%" y="501" width="0.0301%" height="15" fill="rgb(216,154,8)" fg:x="4768" fg:w="156"/><text x="1.1712%" y="511.50"></text></g><g><title>MethodData::allocate (54 samples, 0.01%)</title><rect x="0.9554%" y="453" width="0.0104%" height="15" fill="rgb(244,35,45)" fg:x="4945" fg:w="54"/><text x="1.2054%" y="463.50"></text></g><g><title>Method::build_interpreter_method_data (57 samples, 0.01%)</title><rect x="0.9552%" y="469" width="0.0110%" height="15" fill="rgb(251,115,12)" fg:x="4944" fg:w="57"/><text x="1.2052%" y="479.50"></text></g><g><title>ciMethodData::load_data (58 samples, 0.01%)</title><rect x="0.9664%" y="469" width="0.0112%" height="15" fill="rgb(240,54,50)" fg:x="5002" fg:w="58"/><text x="1.2164%" y="479.50"></text></g><g><title>ciMethod::ensure_method_data (136 samples, 0.03%)</title><rect x="0.9550%" y="485" width="0.0263%" height="15" fill="rgb(233,84,52)" fg:x="4943" fg:w="136"/><text x="1.2050%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (141 samples, 0.03%)</title><rect x="0.9543%" y="501" width="0.0272%" height="15" fill="rgb(207,117,47)" fg:x="4939" fg:w="141"/><text x="1.2043%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (1,988 samples, 0.38%)</title><rect x="0.5997%" y="517" width="0.3841%" height="15" fill="rgb(249,43,39)" fg:x="3104" fg:w="1988"/><text x="0.8497%" y="527.50"></text></g><g><title>GraphBuilder::try_inline (2,015 samples, 0.39%)</title><rect x="0.5970%" y="533" width="0.3893%" height="15" fill="rgb(209,38,44)" fg:x="3090" fg:w="2015"/><text x="0.8470%" y="543.50"></text></g><g><title>ciEnv::lookup_method (90 samples, 0.02%)</title><rect x="1.0068%" y="501" width="0.0174%" height="15" fill="rgb(236,212,23)" fg:x="5211" fg:w="90"/><text x="1.2568%" y="511.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (65 samples, 0.01%)</title><rect x="1.0451%" y="437" width="0.0126%" height="15" fill="rgb(242,79,21)" fg:x="5409" fg:w="65"/><text x="1.2951%" y="447.50"></text></g><g><title>ciMethod::ciMethod (161 samples, 0.03%)</title><rect x="1.0296%" y="469" width="0.0311%" height="15" fill="rgb(211,96,35)" fg:x="5329" fg:w="161"/><text x="1.2796%" y="479.50"></text></g><g><title>ciSignature::ciSignature (136 samples, 0.03%)</title><rect x="1.0344%" y="453" width="0.0263%" height="15" fill="rgb(253,215,40)" fg:x="5354" fg:w="136"/><text x="1.2844%" y="463.50"></text></g><g><title>ciObjectFactory::get_metadata (194 samples, 0.04%)</title><rect x="1.0242%" y="501" width="0.0375%" height="15" fill="rgb(211,81,21)" fg:x="5301" fg:w="194"/><text x="1.2742%" y="511.50"></text></g><g><title>ciObjectFactory::create_new_metadata (176 samples, 0.03%)</title><rect x="1.0277%" y="485" width="0.0340%" height="15" fill="rgb(208,190,38)" fg:x="5319" fg:w="176"/><text x="1.2777%" y="495.50"></text></g><g><title>ciEnv::get_method_by_index_impl (322 samples, 0.06%)</title><rect x="1.0004%" y="517" width="0.0622%" height="15" fill="rgb(235,213,38)" fg:x="5178" fg:w="322"/><text x="1.2504%" y="527.50"></text></g><g><title>ciBytecodeStream::get_method (345 samples, 0.07%)</title><rect x="0.9962%" y="533" width="0.0667%" height="15" fill="rgb(237,122,38)" fg:x="5156" fg:w="345"/><text x="1.2462%" y="543.50"></text></g><g><title>GraphBuilder::invoke (2,555 samples, 0.49%)</title><rect x="0.5816%" y="549" width="0.4936%" height="15" fill="rgb(244,218,35)" fg:x="3010" fg:w="2555"/><text x="0.8316%" y="559.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,022 samples, 0.58%)</title><rect x="0.5074%" y="565" width="0.5839%" height="15" fill="rgb(240,68,47)" fg:x="2626" fg:w="3022"/><text x="0.7574%" y="575.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,077 samples, 0.59%)</title><rect x="0.4998%" y="581" width="0.5945%" height="15" fill="rgb(210,16,53)" fg:x="2587" fg:w="3077"/><text x="0.7498%" y="591.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,406 samples, 0.66%)</title><rect x="0.4453%" y="597" width="0.6581%" height="15" fill="rgb(235,124,12)" fg:x="2305" fg:w="3406"/><text x="0.6953%" y="607.50"></text></g><g><title>IR::IR (3,426 samples, 0.66%)</title><rect x="0.4446%" y="613" width="0.6619%" height="15" fill="rgb(224,169,11)" fg:x="2301" fg:w="3426"/><text x="0.6946%" y="623.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (69 samples, 0.01%)</title><rect x="1.1065%" y="597" width="0.0133%" height="15" fill="rgb(250,166,2)" fg:x="5727" fg:w="69"/><text x="1.3565%" y="607.50"></text></g><g><title>IR::compute_code (78 samples, 0.02%)</title><rect x="1.1065%" y="613" width="0.0151%" height="15" fill="rgb(242,216,29)" fg:x="5727" fg:w="78"/><text x="1.3565%" y="623.50"></text></g><g><title>BlockList::iterate_backward (60 samples, 0.01%)</title><rect x="1.1223%" y="597" width="0.0116%" height="15" fill="rgb(230,116,27)" fg:x="5809" fg:w="60"/><text x="1.3723%" y="607.50"></text></g><g><title>UseCountComputer::block_do (57 samples, 0.01%)</title><rect x="1.1229%" y="581" width="0.0110%" height="15" fill="rgb(228,99,48)" fg:x="5812" fg:w="57"/><text x="1.3729%" y="591.50"></text></g><g><title>IR::compute_use_counts (100 samples, 0.02%)</title><rect x="1.1216%" y="613" width="0.0193%" height="15" fill="rgb(253,11,6)" fg:x="5805" fg:w="100"/><text x="1.3716%" y="623.50"></text></g><g><title>NullCheckEliminator::iterate_one (141 samples, 0.03%)</title><rect x="1.1421%" y="581" width="0.0272%" height="15" fill="rgb(247,143,39)" fg:x="5911" fg:w="141"/><text x="1.3921%" y="591.50"></text></g><g><title>IR::eliminate_null_checks (159 samples, 0.03%)</title><rect x="1.1409%" y="613" width="0.0307%" height="15" fill="rgb(236,97,10)" fg:x="5905" fg:w="159"/><text x="1.3909%" y="623.50"></text></g><g><title>Optimizer::eliminate_null_checks (159 samples, 0.03%)</title><rect x="1.1409%" y="597" width="0.0307%" height="15" fill="rgb(233,208,19)" fg:x="5905" fg:w="159"/><text x="1.3909%" y="607.50"></text></g><g><title>IR::optimize_blocks (62 samples, 0.01%)</title><rect x="1.1716%" y="613" width="0.0120%" height="15" fill="rgb(216,164,2)" fg:x="6064" fg:w="62"/><text x="1.4216%" y="623.50"></text></g><g><title>IR::split_critical_edges (56 samples, 0.01%)</title><rect x="1.1836%" y="613" width="0.0108%" height="15" fill="rgb(220,129,5)" fg:x="6126" fg:w="56"/><text x="1.4336%" y="623.50"></text></g><g><title>Compilation::build_hir (4,300 samples, 0.83%)</title><rect x="0.3721%" y="629" width="0.8308%" height="15" fill="rgb(242,17,10)" fg:x="1926" fg:w="4300"/><text x="0.6221%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (105 samples, 0.02%)</title><rect x="1.2313%" y="565" width="0.0203%" height="15" fill="rgb(242,107,0)" fg:x="6373" fg:w="105"/><text x="1.4813%" y="575.50"></text></g><g><title>CodeEmitInfo::record_debug_info (105 samples, 0.02%)</title><rect x="1.2313%" y="549" width="0.0203%" height="15" fill="rgb(251,28,31)" fg:x="6373" fg:w="105"/><text x="1.4813%" y="559.50"></text></g><g><title>LIR_Assembler::call (115 samples, 0.02%)</title><rect x="1.2303%" y="581" width="0.0222%" height="15" fill="rgb(233,223,10)" fg:x="6368" fg:w="115"/><text x="1.4803%" y="591.50"></text></g><g><title>LIR_Assembler::emit_call (182 samples, 0.04%)</title><rect x="1.2236%" y="597" width="0.0352%" height="15" fill="rgb(215,21,27)" fg:x="6333" fg:w="182"/><text x="1.4736%" y="607.50"></text></g><g><title>LIR_Assembler::emit_op1 (151 samples, 0.03%)</title><rect x="1.2655%" y="597" width="0.0292%" height="15" fill="rgb(232,23,21)" fg:x="6550" fg:w="151"/><text x="1.5155%" y="607.50"></text></g><g><title>LIR_Assembler::emit_profile_call (74 samples, 0.01%)</title><rect x="1.2989%" y="597" width="0.0143%" height="15" fill="rgb(244,5,23)" fg:x="6723" fg:w="74"/><text x="1.5489%" y="607.50"></text></g><g><title>LIR_Assembler::emit_code (679 samples, 0.13%)</title><rect x="1.2060%" y="613" width="0.1312%" height="15" fill="rgb(226,81,46)" fg:x="6242" fg:w="679"/><text x="1.4560%" y="623.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (52 samples, 0.01%)</title><rect x="1.3565%" y="549" width="0.0100%" height="15" fill="rgb(247,70,30)" fg:x="7021" fg:w="52"/><text x="1.6065%" y="559.50"></text></g><g><title>LIR_Assembler::add_call_info (132 samples, 0.03%)</title><rect x="1.3526%" y="581" width="0.0255%" height="15" fill="rgb(212,68,19)" fg:x="7001" fg:w="132"/><text x="1.6026%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (132 samples, 0.03%)</title><rect x="1.3526%" y="565" width="0.0255%" height="15" fill="rgb(240,187,13)" fg:x="7001" fg:w="132"/><text x="1.6026%" y="575.50"></text></g><g><title>CounterOverflowStub::emit_code (162 samples, 0.03%)</title><rect x="1.3515%" y="597" width="0.0313%" height="15" fill="rgb(223,113,26)" fg:x="6995" fg:w="162"/><text x="1.6015%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (52 samples, 0.01%)</title><rect x="1.3896%" y="565" width="0.0100%" height="15" fill="rgb(206,192,2)" fg:x="7192" fg:w="52"/><text x="1.6396%" y="575.50"></text></g><g><title>LIR_Assembler::add_call_info (53 samples, 0.01%)</title><rect x="1.3896%" y="581" width="0.0102%" height="15" fill="rgb(241,108,4)" fg:x="7192" fg:w="53"/><text x="1.6396%" y="591.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (69 samples, 0.01%)</title><rect x="1.3872%" y="597" width="0.0133%" height="15" fill="rgb(247,173,49)" fg:x="7180" fg:w="69"/><text x="1.6372%" y="607.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (374 samples, 0.07%)</title><rect x="1.3496%" y="613" width="0.0723%" height="15" fill="rgb(224,114,35)" fg:x="6985" fg:w="374"/><text x="1.5996%" y="623.50"></text></g><g><title>Compilation::emit_code_body (1,145 samples, 0.22%)</title><rect x="1.2029%" y="629" width="0.2212%" height="15" fill="rgb(245,159,27)" fg:x="6226" fg:w="1145"/><text x="1.4529%" y="639.50"></text></g><g><title>LIRGenerator::do_Base (75 samples, 0.01%)</title><rect x="1.4373%" y="581" width="0.0145%" height="15" fill="rgb(245,172,44)" fg:x="7439" fg:w="75"/><text x="1.6873%" y="591.50"></text></g><g><title>LIRGenerator::move_to_phi (224 samples, 0.04%)</title><rect x="1.4558%" y="565" width="0.0433%" height="15" fill="rgb(236,23,11)" fg:x="7535" fg:w="224"/><text x="1.7058%" y="575.50"></text></g><g><title>PhiResolverState::reset (154 samples, 0.03%)</title><rect x="1.4693%" y="549" width="0.0298%" height="15" fill="rgb(205,117,38)" fg:x="7605" fg:w="154"/><text x="1.7193%" y="559.50"></text></g><g><title>LIRGenerator::do_Goto (245 samples, 0.05%)</title><rect x="1.4531%" y="581" width="0.0473%" height="15" fill="rgb(237,72,25)" fg:x="7521" fg:w="245"/><text x="1.7031%" y="591.50"></text></g><g><title>LIRGenerator::do_If (59 samples, 0.01%)</title><rect x="1.5005%" y="581" width="0.0114%" height="15" fill="rgb(244,70,9)" fg:x="7766" fg:w="59"/><text x="1.7505%" y="591.50"></text></g><g><title>LIRGenerator::state_for (60 samples, 0.01%)</title><rect x="1.5269%" y="565" width="0.0116%" height="15" fill="rgb(217,125,39)" fg:x="7903" fg:w="60"/><text x="1.7769%" y="575.50"></text></g><g><title>LIRGenerator::do_Invoke (141 samples, 0.03%)</title><rect x="1.5128%" y="581" width="0.0272%" height="15" fill="rgb(235,36,10)" fg:x="7830" fg:w="141"/><text x="1.7628%" y="591.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (99 samples, 0.02%)</title><rect x="1.5665%" y="581" width="0.0191%" height="15" fill="rgb(251,123,47)" fg:x="8108" fg:w="99"/><text x="1.8165%" y="591.50"></text></g><g><title>LIRGenerator::block_do (892 samples, 0.17%)</title><rect x="1.4255%" y="597" width="0.1723%" height="15" fill="rgb(221,13,13)" fg:x="7378" fg:w="892"/><text x="1.6755%" y="607.50"></text></g><g><title>BlockList::iterate_forward (898 samples, 0.17%)</title><rect x="1.4247%" y="613" width="0.1735%" height="15" fill="rgb(238,131,9)" fg:x="7374" fg:w="898"/><text x="1.6747%" y="623.50"></text></g><g><title>IntervalWalker::walk_to (126 samples, 0.02%)</title><rect x="1.6251%" y="565" width="0.0243%" height="15" fill="rgb(211,50,8)" fg:x="8411" fg:w="126"/><text x="1.8751%" y="575.50"></text></g><g><title>LinearScanWalker::find_free_reg (107 samples, 0.02%)</title><rect x="1.6697%" y="533" width="0.0207%" height="15" fill="rgb(245,182,24)" fg:x="8642" fg:w="107"/><text x="1.9197%" y="543.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (140 samples, 0.03%)</title><rect x="1.6948%" y="533" width="0.0270%" height="15" fill="rgb(242,14,37)" fg:x="8772" fg:w="140"/><text x="1.9448%" y="543.50"></text></g><g><title>LinearScanWalker::split_before_usage (69 samples, 0.01%)</title><rect x="1.7219%" y="533" width="0.0133%" height="15" fill="rgb(246,228,12)" fg:x="8912" fg:w="69"/><text x="1.9719%" y="543.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (425 samples, 0.08%)</title><rect x="1.6541%" y="549" width="0.0821%" height="15" fill="rgb(213,55,15)" fg:x="8561" fg:w="425"/><text x="1.9041%" y="559.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (72 samples, 0.01%)</title><rect x="1.7423%" y="533" width="0.0139%" height="15" fill="rgb(209,9,3)" fg:x="9018" fg:w="72"/><text x="1.9923%" y="543.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (123 samples, 0.02%)</title><rect x="1.7362%" y="549" width="0.0238%" height="15" fill="rgb(230,59,30)" fg:x="8986" fg:w="123"/><text x="1.9862%" y="559.50"></text></g><g><title>LinearScanWalker::activate_current (652 samples, 0.13%)</title><rect x="1.6494%" y="565" width="0.1260%" height="15" fill="rgb(209,121,21)" fg:x="8537" fg:w="652"/><text x="1.8994%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (831 samples, 0.16%)</title><rect x="1.6150%" y="581" width="0.1606%" height="15" fill="rgb(220,109,13)" fg:x="8359" fg:w="831"/><text x="1.8650%" y="591.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (65 samples, 0.01%)</title><rect x="1.7765%" y="581" width="0.0126%" height="15" fill="rgb(232,18,1)" fg:x="9195" fg:w="65"/><text x="2.0265%" y="591.50"></text></g><g><title>LinearScan::allocate_registers (927 samples, 0.18%)</title><rect x="1.6104%" y="597" width="0.1791%" height="15" fill="rgb(215,41,42)" fg:x="8335" fg:w="927"/><text x="1.8604%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (84 samples, 0.02%)</title><rect x="1.8225%" y="565" width="0.0162%" height="15" fill="rgb(224,123,36)" fg:x="9433" fg:w="84"/><text x="2.0725%" y="575.50"></text></g><g><title>LinearScan::color_lir_opr (67 samples, 0.01%)</title><rect x="1.8390%" y="565" width="0.0129%" height="15" fill="rgb(240,125,3)" fg:x="9518" fg:w="67"/><text x="2.0890%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (93 samples, 0.02%)</title><rect x="1.8616%" y="549" width="0.0180%" height="15" fill="rgb(205,98,50)" fg:x="9635" fg:w="93"/><text x="2.1116%" y="559.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (161 samples, 0.03%)</title><rect x="1.8519%" y="565" width="0.0311%" height="15" fill="rgb(205,185,37)" fg:x="9585" fg:w="161"/><text x="2.1019%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (86 samples, 0.02%)</title><rect x="1.8917%" y="533" width="0.0166%" height="15" fill="rgb(238,207,15)" fg:x="9791" fg:w="86"/><text x="2.1417%" y="543.50"></text></g><g><title>LinearScan::assign_reg_num (665 samples, 0.13%)</title><rect x="1.7903%" y="581" width="0.1285%" height="15" fill="rgb(213,199,42)" fg:x="9266" fg:w="665"/><text x="2.0403%" y="591.50"></text></g><g><title>LinearScan::compute_oop_map (185 samples, 0.04%)</title><rect x="1.8830%" y="565" width="0.0357%" height="15" fill="rgb(235,201,11)" fg:x="9746" fg:w="185"/><text x="2.1330%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (172 samples, 0.03%)</title><rect x="1.8855%" y="549" width="0.0332%" height="15" fill="rgb(207,46,11)" fg:x="9759" fg:w="172"/><text x="2.1355%" y="559.50"></text></g><g><title>LinearScan::assign_reg_num (696 samples, 0.13%)</title><rect x="1.7895%" y="597" width="0.1345%" height="15" fill="rgb(241,35,35)" fg:x="9262" fg:w="696"/><text x="2.0395%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (84 samples, 0.02%)</title><rect x="1.9848%" y="581" width="0.0162%" height="15" fill="rgb(243,32,47)" fg:x="10273" fg:w="84"/><text x="2.2348%" y="591.50"></text></g><g><title>LinearScan::add_def (66 samples, 0.01%)</title><rect x="2.0011%" y="581" width="0.0128%" height="15" fill="rgb(247,202,23)" fg:x="10357" fg:w="66"/><text x="2.2511%" y="591.50"></text></g><g><title>LinearScan::create_interval (73 samples, 0.01%)</title><rect x="2.0304%" y="565" width="0.0141%" height="15" fill="rgb(219,102,11)" fg:x="10509" fg:w="73"/><text x="2.2804%" y="575.50"></text></g><g><title>LinearScan::add_temp (132 samples, 0.03%)</title><rect x="2.0194%" y="581" width="0.0255%" height="15" fill="rgb(243,110,44)" fg:x="10452" fg:w="132"/><text x="2.2694%" y="591.50"></text></g><g><title>Interval::Interval (70 samples, 0.01%)</title><rect x="2.0714%" y="549" width="0.0135%" height="15" fill="rgb(222,74,54)" fg:x="10721" fg:w="70"/><text x="2.3214%" y="559.50"></text></g><g><title>LinearScan::create_interval (116 samples, 0.02%)</title><rect x="2.0638%" y="565" width="0.0224%" height="15" fill="rgb(216,99,12)" fg:x="10682" fg:w="116"/><text x="2.3138%" y="575.50"></text></g><g><title>LinearScan::add_use (217 samples, 0.04%)</title><rect x="2.0449%" y="581" width="0.0419%" height="15" fill="rgb(226,22,26)" fg:x="10584" fg:w="217"/><text x="2.2949%" y="591.50"></text></g><g><title>LinearScan::build_intervals (920 samples, 0.18%)</title><rect x="1.9240%" y="597" width="0.1778%" height="15" fill="rgb(217,163,10)" fg:x="9958" fg:w="920"/><text x="2.1740%" y="607.50"></text></g><g><title>LinearScan::compute_global_live_sets (56 samples, 0.01%)</title><rect x="2.1017%" y="597" width="0.0108%" height="15" fill="rgb(213,25,53)" fg:x="10878" fg:w="56"/><text x="2.3517%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (71 samples, 0.01%)</title><rect x="2.1357%" y="581" width="0.0137%" height="15" fill="rgb(252,105,26)" fg:x="11054" fg:w="71"/><text x="2.3857%" y="591.50"></text></g><g><title>LinearScan::compute_local_live_sets (258 samples, 0.05%)</title><rect x="2.1125%" y="597" width="0.0498%" height="15" fill="rgb(220,39,43)" fg:x="10934" fg:w="258"/><text x="2.3625%" y="607.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (52 samples, 0.01%)</title><rect x="2.1523%" y="581" width="0.0100%" height="15" fill="rgb(229,68,48)" fg:x="11140" fg:w="52"/><text x="2.4023%" y="591.50"></text></g><g><title>LinearScan::eliminate_spill_moves (75 samples, 0.01%)</title><rect x="2.1624%" y="597" width="0.0145%" height="15" fill="rgb(252,8,32)" fg:x="11192" fg:w="75"/><text x="2.4124%" y="607.50"></text></g><g><title>LinearScan::number_instructions (53 samples, 0.01%)</title><rect x="2.1769%" y="597" width="0.0102%" height="15" fill="rgb(223,20,43)" fg:x="11267" fg:w="53"/><text x="2.4269%" y="607.50"></text></g><g><title>Interval::split_child_at_op_id (54 samples, 0.01%)</title><rect x="2.2035%" y="565" width="0.0104%" height="15" fill="rgb(229,81,49)" fg:x="11405" fg:w="54"/><text x="2.4535%" y="575.50"></text></g><g><title>LinearScan::resolve_collect_mappings (110 samples, 0.02%)</title><rect x="2.1929%" y="581" width="0.0213%" height="15" fill="rgb(236,28,36)" fg:x="11350" fg:w="110"/><text x="2.4429%" y="591.50"></text></g><g><title>LinearScan::resolve_data_flow (154 samples, 0.03%)</title><rect x="2.1875%" y="597" width="0.0298%" height="15" fill="rgb(249,185,26)" fg:x="11322" fg:w="154"/><text x="2.4375%" y="607.50"></text></g><g><title>LinearScan::do_linear_scan (3,319 samples, 0.64%)</title><rect x="1.6040%" y="613" width="0.6413%" height="15" fill="rgb(249,174,33)" fg:x="8302" fg:w="3319"/><text x="1.8540%" y="623.50"></text></g><g><title>Compilation::emit_lir (4,255 samples, 0.82%)</title><rect x="1.4241%" y="629" width="0.8221%" height="15" fill="rgb(233,201,37)" fg:x="7371" fg:w="4255"/><text x="1.6741%" y="639.50"></text></g><g><title>Compilation::compile_java_method (9,849 samples, 1.90%)</title><rect x="0.3706%" y="645" width="1.9029%" height="15" fill="rgb(221,78,26)" fg:x="1918" fg:w="9849"/><text x="0.6206%" y="655.50">C..</text></g><g><title>ciMethod::ensure_method_data (110 samples, 0.02%)</title><rect x="2.2522%" y="629" width="0.0213%" height="15" fill="rgb(250,127,30)" fg:x="11657" fg:w="110"/><text x="2.5022%" y="639.50"></text></g><g><title>ciMethod::ensure_method_data (107 samples, 0.02%)</title><rect x="2.2528%" y="613" width="0.0207%" height="15" fill="rgb(230,49,44)" fg:x="11660" fg:w="107"/><text x="2.5028%" y="623.50"></text></g><g><title>CodeBuffer::finalize_oop_references (80 samples, 0.02%)</title><rect x="2.2980%" y="613" width="0.0155%" height="15" fill="rgb(229,67,23)" fg:x="11894" fg:w="80"/><text x="2.5480%" y="623.50"></text></g><g><title>CodeBuffer::relocate_code_to (119 samples, 0.02%)</title><rect x="2.3361%" y="581" width="0.0230%" height="15" fill="rgb(249,83,47)" fg:x="12091" fg:w="119"/><text x="2.5861%" y="591.50"></text></g><g><title>CodeBuffer::copy_code_to (129 samples, 0.02%)</title><rect x="2.3357%" y="597" width="0.0249%" height="15" fill="rgb(215,43,3)" fg:x="12089" fg:w="129"/><text x="2.5857%" y="607.50"></text></g><g><title>nmethod::new_nmethod (464 samples, 0.09%)</title><rect x="2.2967%" y="629" width="0.0896%" height="15" fill="rgb(238,154,13)" fg:x="11887" fg:w="464"/><text x="2.5467%" y="639.50"></text></g><g><title>nmethod::nmethod (265 samples, 0.05%)</title><rect x="2.3351%" y="613" width="0.0512%" height="15" fill="rgb(219,56,2)" fg:x="12086" fg:w="265"/><text x="2.5851%" y="623.50"></text></g><g><title>Compilation::compile_method (10,440 samples, 2.02%)</title><rect x="0.3694%" y="661" width="2.0171%" height="15" fill="rgb(233,0,4)" fg:x="1912" fg:w="10440"/><text x="0.6194%" y="671.50">C..</text></g><g><title>ciEnv::register_method (536 samples, 0.10%)</title><rect x="2.2829%" y="645" width="0.1036%" height="15" fill="rgb(235,30,7)" fg:x="11816" fg:w="536"/><text x="2.5329%" y="655.50"></text></g><g><title>Compilation::Compilation (10,453 samples, 2.02%)</title><rect x="0.3686%" y="677" width="2.0196%" height="15" fill="rgb(250,79,13)" fg:x="1908" fg:w="10453"/><text x="0.6186%" y="687.50">C..</text></g><g><title>Compiler::compile_method (10,476 samples, 2.02%)</title><rect x="0.3646%" y="693" width="2.0240%" height="15" fill="rgb(211,146,34)" fg:x="1887" fg:w="10476"/><text x="0.6146%" y="703.50">C..</text></g><g><title>ciObjectFactory::get (62 samples, 0.01%)</title><rect x="2.4002%" y="677" width="0.0120%" height="15" fill="rgb(228,22,38)" fg:x="12423" fg:w="62"/><text x="2.6502%" y="687.50"></text></g><g><title>ciEnv::ciEnv (96 samples, 0.02%)</title><rect x="2.3940%" y="693" width="0.0185%" height="15" fill="rgb(235,168,5)" fg:x="12391" fg:w="96"/><text x="2.6440%" y="703.50"></text></g><g><title>ciSignature::ciSignature (88 samples, 0.02%)</title><rect x="2.4174%" y="629" width="0.0170%" height="15" fill="rgb(221,155,16)" fg:x="12512" fg:w="88"/><text x="2.6674%" y="639.50"></text></g><g><title>ciMethod::ciMethod (100 samples, 0.02%)</title><rect x="2.4153%" y="645" width="0.0193%" height="15" fill="rgb(215,215,53)" fg:x="12501" fg:w="100"/><text x="2.6653%" y="655.50"></text></g><g><title>ciEnv::get_method_from_handle (124 samples, 0.02%)</title><rect x="2.4126%" y="693" width="0.0240%" height="15" fill="rgb(223,4,10)" fg:x="12487" fg:w="124"/><text x="2.6626%" y="703.50"></text></g><g><title>ciObjectFactory::get_metadata (120 samples, 0.02%)</title><rect x="2.4134%" y="677" width="0.0232%" height="15" fill="rgb(234,103,6)" fg:x="12491" fg:w="120"/><text x="2.6634%" y="687.50"></text></g><g><title>ciObjectFactory::create_new_metadata (116 samples, 0.02%)</title><rect x="2.4141%" y="661" width="0.0224%" height="15" fill="rgb(227,97,0)" fg:x="12495" fg:w="116"/><text x="2.6641%" y="671.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (10,976 samples, 2.12%)</title><rect x="0.3223%" y="709" width="2.1207%" height="15" fill="rgb(234,150,53)" fg:x="1668" fg:w="10976"/><text x="0.5723%" y="719.50">C..</text></g><g><title>futex_wait_queue_me (53 samples, 0.01%)</title><rect x="2.4601%" y="517" width="0.0102%" height="15" fill="rgb(228,201,54)" fg:x="12733" fg:w="53"/><text x="2.7101%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="2.4595%" y="597" width="0.0112%" height="15" fill="rgb(222,22,37)" fg:x="12730" fg:w="58"/><text x="2.7095%" y="607.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="2.4595%" y="581" width="0.0112%" height="15" fill="rgb(237,53,32)" fg:x="12730" fg:w="58"/><text x="2.7095%" y="591.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="2.4595%" y="565" width="0.0112%" height="15" fill="rgb(233,25,53)" fg:x="12730" fg:w="58"/><text x="2.7095%" y="575.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="2.4595%" y="549" width="0.0112%" height="15" fill="rgb(210,40,34)" fg:x="12730" fg:w="58"/><text x="2.7095%" y="559.50"></text></g><g><title>futex_wait (56 samples, 0.01%)</title><rect x="2.4599%" y="533" width="0.0108%" height="15" fill="rgb(241,220,44)" fg:x="12732" fg:w="56"/><text x="2.7099%" y="543.50"></text></g><g><title>__pthread_cond_timedwait (64 samples, 0.01%)</title><rect x="2.4588%" y="645" width="0.0124%" height="15" fill="rgb(235,28,35)" fg:x="12726" fg:w="64"/><text x="2.7088%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (64 samples, 0.01%)</title><rect x="2.4588%" y="629" width="0.0124%" height="15" fill="rgb(210,56,17)" fg:x="12726" fg:w="64"/><text x="2.7088%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (63 samples, 0.01%)</title><rect x="2.4590%" y="613" width="0.0122%" height="15" fill="rgb(224,130,29)" fg:x="12727" fg:w="63"/><text x="2.7090%" y="623.50"></text></g><g><title>Monitor::wait (74 samples, 0.01%)</title><rect x="2.4572%" y="693" width="0.0143%" height="15" fill="rgb(235,212,8)" fg:x="12718" fg:w="74"/><text x="2.7072%" y="703.50"></text></g><g><title>Monitor::IWait (71 samples, 0.01%)</title><rect x="2.4578%" y="677" width="0.0137%" height="15" fill="rgb(223,33,50)" fg:x="12721" fg:w="71"/><text x="2.7078%" y="687.50"></text></g><g><title>os::PlatformEvent::park (67 samples, 0.01%)</title><rect x="2.4586%" y="661" width="0.0129%" height="15" fill="rgb(219,149,13)" fg:x="12725" fg:w="67"/><text x="2.7086%" y="671.50"></text></g><g><title>TieredThresholdPolicy::select_task (61 samples, 0.01%)</title><rect x="2.4715%" y="693" width="0.0118%" height="15" fill="rgb(250,156,29)" fg:x="12792" fg:w="61"/><text x="2.7215%" y="703.50"></text></g><g><title>CompileQueue::get (167 samples, 0.03%)</title><rect x="2.4524%" y="709" width="0.0323%" height="15" fill="rgb(216,193,19)" fg:x="12693" fg:w="167"/><text x="2.7024%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (11,218 samples, 2.17%)</title><rect x="0.3209%" y="725" width="2.1674%" height="15" fill="rgb(216,135,14)" fg:x="1661" fg:w="11218"/><text x="0.5709%" y="735.50">C..</text></g><g><title>__GI___clone (11,259 samples, 2.18%)</title><rect x="0.3132%" y="805" width="2.1753%" height="15" fill="rgb(241,47,5)" fg:x="1621" fg:w="11259"/><text x="0.5632%" y="815.50">_..</text></g><g><title>start_thread (11,225 samples, 2.17%)</title><rect x="0.3198%" y="789" width="2.1688%" height="15" fill="rgb(233,42,35)" fg:x="1655" fg:w="11225"/><text x="0.5698%" y="799.50">s..</text></g><g><title>thread_native_entry (11,223 samples, 2.17%)</title><rect x="0.3201%" y="773" width="2.1684%" height="15" fill="rgb(231,13,6)" fg:x="1657" fg:w="11223"/><text x="0.5701%" y="783.50">t..</text></g><g><title>Thread::call_run (11,221 samples, 2.17%)</title><rect x="0.3205%" y="757" width="2.1680%" height="15" fill="rgb(207,181,40)" fg:x="1659" fg:w="11221"/><text x="0.5705%" y="767.50">T..</text></g><g><title>JavaThread::thread_main_inner (11,219 samples, 2.17%)</title><rect x="0.3209%" y="741" width="2.1676%" height="15" fill="rgb(254,173,49)" fg:x="1661" fg:w="11219"/><text x="0.5709%" y="751.50">J..</text></g><g><title>C1_CompilerThre (12,872 samples, 2.49%)</title><rect x="0.0085%" y="821" width="2.4870%" height="15" fill="rgb(221,1,38)" fg:x="44" fg:w="12872"/><text x="0.2585%" y="831.50">C1..</text></g><g><title>ProjNode::pinned (71 samples, 0.01%)</title><rect x="2.5440%" y="789" width="0.0137%" height="15" fill="rgb(206,124,46)" fg:x="13167" fg:w="71"/><text x="2.7940%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (75 samples, 0.01%)</title><rect x="2.5434%" y="805" width="0.0145%" height="15" fill="rgb(249,21,11)" fg:x="13164" fg:w="75"/><text x="2.7934%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (52 samples, 0.01%)</title><rect x="2.7180%" y="789" width="0.0100%" height="15" fill="rgb(222,201,40)" fg:x="14068" fg:w="52"/><text x="2.9680%" y="799.50"></text></g><g><title>MultiNode::is_CFG (66 samples, 0.01%)</title><rect x="2.8135%" y="789" width="0.0128%" height="15" fill="rgb(235,61,29)" fg:x="14562" fg:w="66"/><text x="3.0635%" y="799.50"></text></g><g><title>Node::is_CFG (83 samples, 0.02%)</title><rect x="2.8425%" y="789" width="0.0160%" height="15" fill="rgb(219,207,3)" fg:x="14712" fg:w="83"/><text x="3.0925%" y="799.50"></text></g><g><title>_dl_update_slotinfo (237 samples, 0.05%)</title><rect x="3.1035%" y="789" width="0.0458%" height="15" fill="rgb(222,56,46)" fg:x="16063" fg:w="237"/><text x="3.3535%" y="799.50"></text></g><g><title>update_get_addr (78 samples, 0.02%)</title><rect x="3.2635%" y="789" width="0.0151%" height="15" fill="rgb(239,76,54)" fg:x="16891" fg:w="78"/><text x="3.5135%" y="799.50"></text></g><g><title>[anon] (3,696 samples, 0.71%)</title><rect x="2.5650%" y="805" width="0.7141%" height="15" fill="rgb(231,124,27)" fg:x="13276" fg:w="3696"/><text x="2.8150%" y="815.50"></text></g><g><title>ciBytecodeStream::get_method (65 samples, 0.01%)</title><rect x="3.3139%" y="517" width="0.0126%" height="15" fill="rgb(249,195,6)" fg:x="17152" fg:w="65"/><text x="3.5639%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (62 samples, 0.01%)</title><rect x="3.3145%" y="501" width="0.0120%" height="15" fill="rgb(237,174,47)" fg:x="17155" fg:w="62"/><text x="3.5645%" y="511.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (66 samples, 0.01%)</title><rect x="3.3139%" y="533" width="0.0128%" height="15" fill="rgb(206,201,31)" fg:x="17152" fg:w="66"/><text x="3.5639%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (119 samples, 0.02%)</title><rect x="3.3058%" y="549" width="0.0230%" height="15" fill="rgb(231,57,52)" fg:x="17110" fg:w="119"/><text x="3.5558%" y="559.50"></text></g><g><title>ciTypeFlow::flow_block (144 samples, 0.03%)</title><rect x="3.3015%" y="565" width="0.0278%" height="15" fill="rgb(248,177,22)" fg:x="17088" fg:w="144"/><text x="3.5515%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (145 samples, 0.03%)</title><rect x="3.3015%" y="581" width="0.0280%" height="15" fill="rgb(215,211,37)" fg:x="17088" fg:w="145"/><text x="3.5515%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (156 samples, 0.03%)</title><rect x="3.3004%" y="645" width="0.0301%" height="15" fill="rgb(241,128,51)" fg:x="17082" fg:w="156"/><text x="3.5504%" y="655.50"></text></g><g><title>ciMethod::get_flow_analysis (153 samples, 0.03%)</title><rect x="3.3010%" y="629" width="0.0296%" height="15" fill="rgb(227,165,31)" fg:x="17085" fg:w="153"/><text x="3.5510%" y="639.50"></text></g><g><title>ciTypeFlow::do_flow (153 samples, 0.03%)</title><rect x="3.3010%" y="613" width="0.0296%" height="15" fill="rgb(228,167,24)" fg:x="17085" fg:w="153"/><text x="3.5510%" y="623.50"></text></g><g><title>ciTypeFlow::flow_types (153 samples, 0.03%)</title><rect x="3.3010%" y="597" width="0.0296%" height="15" fill="rgb(228,143,12)" fg:x="17085" fg:w="153"/><text x="3.5510%" y="607.50"></text></g><g><title>Compile::call_generator (192 samples, 0.04%)</title><rect x="3.2940%" y="661" width="0.0371%" height="15" fill="rgb(249,149,8)" fg:x="17049" fg:w="192"/><text x="3.5440%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (53 samples, 0.01%)</title><rect x="3.3616%" y="437" width="0.0102%" height="15" fill="rgb(243,35,44)" fg:x="17399" fg:w="53"/><text x="3.6116%" y="447.50"></text></g><g><title>ciBytecodeStream::get_method (53 samples, 0.01%)</title><rect x="3.3616%" y="421" width="0.0102%" height="15" fill="rgb(246,89,9)" fg:x="17399" fg:w="53"/><text x="3.6116%" y="431.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (78 samples, 0.02%)</title><rect x="3.3587%" y="453" width="0.0151%" height="15" fill="rgb(233,213,13)" fg:x="17384" fg:w="78"/><text x="3.6087%" y="463.50"></text></g><g><title>ciTypeFlow::df_flow_types (102 samples, 0.02%)</title><rect x="3.3547%" y="485" width="0.0197%" height="15" fill="rgb(233,141,41)" fg:x="17363" fg:w="102"/><text x="3.6047%" y="495.50"></text></g><g><title>ciTypeFlow::flow_block (91 samples, 0.02%)</title><rect x="3.3568%" y="469" width="0.0176%" height="15" fill="rgb(239,167,4)" fg:x="17374" fg:w="91"/><text x="3.6068%" y="479.50"></text></g><g><title>InlineTree::ok_to_inline (148 samples, 0.03%)</title><rect x="3.3469%" y="549" width="0.0286%" height="15" fill="rgb(209,217,16)" fg:x="17323" fg:w="148"/><text x="3.5969%" y="559.50"></text></g><g><title>ciMethod::get_flow_analysis (120 samples, 0.02%)</title><rect x="3.3524%" y="533" width="0.0232%" height="15" fill="rgb(219,88,35)" fg:x="17351" fg:w="120"/><text x="3.6024%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (110 samples, 0.02%)</title><rect x="3.3543%" y="517" width="0.0213%" height="15" fill="rgb(220,193,23)" fg:x="17361" fg:w="110"/><text x="3.6043%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (110 samples, 0.02%)</title><rect x="3.3543%" y="501" width="0.0213%" height="15" fill="rgb(230,90,52)" fg:x="17361" fg:w="110"/><text x="3.6043%" y="511.50"></text></g><g><title>Compile::call_generator (183 samples, 0.04%)</title><rect x="3.3415%" y="565" width="0.0354%" height="15" fill="rgb(252,106,19)" fg:x="17295" fg:w="183"/><text x="3.5915%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (68 samples, 0.01%)</title><rect x="3.4161%" y="453" width="0.0131%" height="15" fill="rgb(206,74,20)" fg:x="17681" fg:w="68"/><text x="3.6661%" y="463.50"></text></g><g><title>ciMethod::get_flow_analysis (56 samples, 0.01%)</title><rect x="3.4184%" y="437" width="0.0108%" height="15" fill="rgb(230,138,44)" fg:x="17693" fg:w="56"/><text x="3.6684%" y="447.50"></text></g><g><title>Compile::call_generator (86 samples, 0.02%)</title><rect x="3.4138%" y="469" width="0.0166%" height="15" fill="rgb(235,182,43)" fg:x="17669" fg:w="86"/><text x="3.6638%" y="479.50"></text></g><g><title>ParseGenerator::generate (89 samples, 0.02%)</title><rect x="3.4665%" y="373" width="0.0172%" height="15" fill="rgb(242,16,51)" fg:x="17942" fg:w="89"/><text x="3.7165%" y="383.50"></text></g><g><title>Parse::Parse (89 samples, 0.02%)</title><rect x="3.4665%" y="357" width="0.0172%" height="15" fill="rgb(248,9,4)" fg:x="17942" fg:w="89"/><text x="3.7165%" y="367.50"></text></g><g><title>Parse::do_call (182 samples, 0.04%)</title><rect x="3.4559%" y="389" width="0.0352%" height="15" fill="rgb(210,31,22)" fg:x="17887" fg:w="182"/><text x="3.7059%" y="399.50"></text></g><g><title>Parse::do_field_access (57 samples, 0.01%)</title><rect x="3.4920%" y="389" width="0.0110%" height="15" fill="rgb(239,54,39)" fg:x="18074" fg:w="57"/><text x="3.7420%" y="399.50"></text></g><g><title>Parse::do_one_block (340 samples, 0.07%)</title><rect x="3.4484%" y="421" width="0.0657%" height="15" fill="rgb(230,99,41)" fg:x="17848" fg:w="340"/><text x="3.6984%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (333 samples, 0.06%)</title><rect x="3.4497%" y="405" width="0.0643%" height="15" fill="rgb(253,106,12)" fg:x="17855" fg:w="333"/><text x="3.6997%" y="415.50"></text></g><g><title>Parse::do_all_blocks (352 samples, 0.07%)</title><rect x="3.4484%" y="437" width="0.0680%" height="15" fill="rgb(213,46,41)" fg:x="17848" fg:w="352"/><text x="3.6984%" y="447.50"></text></g><g><title>ParseGenerator::generate (412 samples, 0.08%)</title><rect x="3.4408%" y="469" width="0.0796%" height="15" fill="rgb(215,133,35)" fg:x="17809" fg:w="412"/><text x="3.6908%" y="479.50"></text></g><g><title>Parse::Parse (412 samples, 0.08%)</title><rect x="3.4408%" y="453" width="0.0796%" height="15" fill="rgb(213,28,5)" fg:x="17809" fg:w="412"/><text x="3.6908%" y="463.50"></text></g><g><title>Parse::do_call (628 samples, 0.12%)</title><rect x="3.4130%" y="485" width="0.1213%" height="15" fill="rgb(215,77,49)" fg:x="17665" fg:w="628"/><text x="3.6630%" y="495.50"></text></g><g><title>Parse::do_put_xxx (55 samples, 0.01%)</title><rect x="3.5471%" y="469" width="0.0106%" height="15" fill="rgb(248,100,22)" fg:x="18359" fg:w="55"/><text x="3.7971%" y="479.50"></text></g><g><title>Parse::do_field_access (124 samples, 0.02%)</title><rect x="3.5359%" y="485" width="0.0240%" height="15" fill="rgb(208,67,9)" fg:x="18301" fg:w="124"/><text x="3.7859%" y="495.50"></text></g><g><title>Parse::do_one_block (912 samples, 0.18%)</title><rect x="3.4028%" y="517" width="0.1762%" height="15" fill="rgb(219,133,21)" fg:x="17612" fg:w="912"/><text x="3.6528%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (898 samples, 0.17%)</title><rect x="3.4055%" y="501" width="0.1735%" height="15" fill="rgb(246,46,29)" fg:x="17626" fg:w="898"/><text x="3.6555%" y="511.50"></text></g><g><title>Parse::do_all_blocks (928 samples, 0.18%)</title><rect x="3.4012%" y="533" width="0.1793%" height="15" fill="rgb(246,185,52)" fg:x="17604" fg:w="928"/><text x="3.6512%" y="543.50"></text></g><g><title>ParseGenerator::generate (1,004 samples, 0.19%)</title><rect x="3.3920%" y="565" width="0.1940%" height="15" fill="rgb(252,136,11)" fg:x="17556" fg:w="1004"/><text x="3.6420%" y="575.50"></text></g><g><title>Parse::Parse (1,004 samples, 0.19%)</title><rect x="3.3920%" y="549" width="0.1940%" height="15" fill="rgb(219,138,53)" fg:x="17556" fg:w="1004"/><text x="3.6420%" y="559.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.01%)</title><rect x="3.5970%" y="453" width="0.0110%" height="15" fill="rgb(211,51,23)" fg:x="18617" fg:w="57"/><text x="3.8470%" y="463.50"></text></g><g><title>Parse::Parse (57 samples, 0.01%)</title><rect x="3.5970%" y="437" width="0.0110%" height="15" fill="rgb(247,221,28)" fg:x="18617" fg:w="57"/><text x="3.8470%" y="447.50"></text></g><g><title>Parse::do_call (103 samples, 0.02%)</title><rect x="3.5917%" y="469" width="0.0199%" height="15" fill="rgb(251,222,45)" fg:x="18590" fg:w="103"/><text x="3.8417%" y="479.50"></text></g><g><title>Parse::do_one_block (132 samples, 0.03%)</title><rect x="3.5912%" y="501" width="0.0255%" height="15" fill="rgb(217,162,53)" fg:x="18587" fg:w="132"/><text x="3.8412%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (131 samples, 0.03%)</title><rect x="3.5913%" y="485" width="0.0253%" height="15" fill="rgb(229,93,14)" fg:x="18588" fg:w="131"/><text x="3.8413%" y="495.50"></text></g><g><title>Parse::do_all_blocks (135 samples, 0.03%)</title><rect x="3.5912%" y="517" width="0.0261%" height="15" fill="rgb(209,67,49)" fg:x="18587" fg:w="135"/><text x="3.8412%" y="527.50"></text></g><g><title>ParseGenerator::generate (149 samples, 0.03%)</title><rect x="3.5900%" y="549" width="0.0288%" height="15" fill="rgb(213,87,29)" fg:x="18581" fg:w="149"/><text x="3.8400%" y="559.50"></text></g><g><title>Parse::Parse (149 samples, 0.03%)</title><rect x="3.5900%" y="533" width="0.0288%" height="15" fill="rgb(205,151,52)" fg:x="18581" fg:w="149"/><text x="3.8400%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (210 samples, 0.04%)</title><rect x="3.5859%" y="565" width="0.0406%" height="15" fill="rgb(253,215,39)" fg:x="18560" fg:w="210"/><text x="3.8359%" y="575.50"></text></g><g><title>Parse::do_call (1,505 samples, 0.29%)</title><rect x="3.3415%" y="581" width="0.2908%" height="15" fill="rgb(221,220,41)" fg:x="17295" fg:w="1505"/><text x="3.5915%" y="591.50"></text></g><g><title>Parse::do_get_xxx (56 samples, 0.01%)</title><rect x="3.6352%" y="565" width="0.0108%" height="15" fill="rgb(218,133,21)" fg:x="18815" fg:w="56"/><text x="3.8852%" y="575.50"></text></g><g><title>GraphKit::access_store_at (61 samples, 0.01%)</title><rect x="3.6460%" y="549" width="0.0118%" height="15" fill="rgb(221,193,43)" fg:x="18871" fg:w="61"/><text x="3.8960%" y="559.50"></text></g><g><title>BarrierSetC2::store_at (61 samples, 0.01%)</title><rect x="3.6460%" y="533" width="0.0118%" height="15" fill="rgb(240,128,52)" fg:x="18871" fg:w="61"/><text x="3.8960%" y="543.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (56 samples, 0.01%)</title><rect x="3.6470%" y="517" width="0.0108%" height="15" fill="rgb(253,114,12)" fg:x="18876" fg:w="56"/><text x="3.8970%" y="527.50"></text></g><g><title>Parse::do_put_xxx (64 samples, 0.01%)</title><rect x="3.6460%" y="565" width="0.0124%" height="15" fill="rgb(215,223,47)" fg:x="18871" fg:w="64"/><text x="3.8960%" y="575.50"></text></g><g><title>Parse::do_field_access (130 samples, 0.03%)</title><rect x="3.6340%" y="581" width="0.0251%" height="15" fill="rgb(248,225,23)" fg:x="18809" fg:w="130"/><text x="3.8840%" y="591.50"></text></g><g><title>Parse::do_one_block (1,736 samples, 0.34%)</title><rect x="3.3350%" y="613" width="0.3354%" height="15" fill="rgb(250,108,0)" fg:x="17261" fg:w="1736"/><text x="3.5850%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (1,733 samples, 0.33%)</title><rect x="3.3355%" y="597" width="0.3348%" height="15" fill="rgb(228,208,7)" fg:x="17264" fg:w="1733"/><text x="3.5855%" y="607.50"></text></g><g><title>ParseGenerator::generate (1,751 samples, 0.34%)</title><rect x="3.3325%" y="661" width="0.3383%" height="15" fill="rgb(244,45,10)" fg:x="17248" fg:w="1751"/><text x="3.5825%" y="671.50"></text></g><g><title>Parse::Parse (1,751 samples, 0.34%)</title><rect x="3.3325%" y="645" width="0.3383%" height="15" fill="rgb(207,125,25)" fg:x="17248" fg:w="1751"/><text x="3.5825%" y="655.50"></text></g><g><title>Parse::do_all_blocks (1,740 samples, 0.34%)</title><rect x="3.3346%" y="629" width="0.3362%" height="15" fill="rgb(210,195,18)" fg:x="17259" fg:w="1740"/><text x="3.5846%" y="639.50"></text></g><g><title>ParseGenerator::generate (77 samples, 0.01%)</title><rect x="3.6903%" y="453" width="0.0149%" height="15" fill="rgb(249,80,12)" fg:x="19100" fg:w="77"/><text x="3.9403%" y="463.50"></text></g><g><title>Parse::Parse (76 samples, 0.01%)</title><rect x="3.6905%" y="437" width="0.0147%" height="15" fill="rgb(221,65,9)" fg:x="19101" fg:w="76"/><text x="3.9405%" y="447.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.01%)</title><rect x="3.6914%" y="421" width="0.0137%" height="15" fill="rgb(235,49,36)" fg:x="19106" fg:w="71"/><text x="3.9414%" y="431.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.01%)</title><rect x="3.6914%" y="405" width="0.0137%" height="15" fill="rgb(225,32,20)" fg:x="19106" fg:w="71"/><text x="3.9414%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.01%)</title><rect x="3.6918%" y="389" width="0.0133%" height="15" fill="rgb(215,141,46)" fg:x="19108" fg:w="69"/><text x="3.9418%" y="399.50"></text></g><g><title>Parse::do_call (109 samples, 0.02%)</title><rect x="3.6864%" y="469" width="0.0211%" height="15" fill="rgb(250,160,47)" fg:x="19080" fg:w="109"/><text x="3.9364%" y="479.50"></text></g><g><title>Parse::do_one_block (158 samples, 0.03%)</title><rect x="3.6843%" y="501" width="0.0305%" height="15" fill="rgb(216,222,40)" fg:x="19069" fg:w="158"/><text x="3.9343%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.03%)</title><rect x="3.6847%" y="485" width="0.0301%" height="15" fill="rgb(234,217,39)" fg:x="19071" fg:w="156"/><text x="3.9347%" y="495.50"></text></g><g><title>Parse::do_all_blocks (160 samples, 0.03%)</title><rect x="3.6843%" y="517" width="0.0309%" height="15" fill="rgb(207,178,40)" fg:x="19069" fg:w="160"/><text x="3.9343%" y="527.50"></text></g><g><title>ParseGenerator::generate (186 samples, 0.04%)</title><rect x="3.6810%" y="549" width="0.0359%" height="15" fill="rgb(221,136,13)" fg:x="19052" fg:w="186"/><text x="3.9310%" y="559.50"></text></g><g><title>Parse::Parse (185 samples, 0.04%)</title><rect x="3.6812%" y="533" width="0.0357%" height="15" fill="rgb(249,199,10)" fg:x="19053" fg:w="185"/><text x="3.9312%" y="543.50"></text></g><g><title>Parse::do_call (265 samples, 0.05%)</title><rect x="3.6737%" y="565" width="0.0512%" height="15" fill="rgb(249,222,13)" fg:x="19014" fg:w="265"/><text x="3.9237%" y="575.50"></text></g><g><title>Parse::do_all_blocks (315 samples, 0.06%)</title><rect x="3.6723%" y="613" width="0.0609%" height="15" fill="rgb(244,185,38)" fg:x="19007" fg:w="315"/><text x="3.9223%" y="623.50"></text></g><g><title>Parse::do_one_block (315 samples, 0.06%)</title><rect x="3.6723%" y="597" width="0.0609%" height="15" fill="rgb(236,202,9)" fg:x="19007" fg:w="315"/><text x="3.9223%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (312 samples, 0.06%)</title><rect x="3.6729%" y="581" width="0.0603%" height="15" fill="rgb(250,229,37)" fg:x="19010" fg:w="312"/><text x="3.9229%" y="591.50"></text></g><g><title>ParseGenerator::generate (325 samples, 0.06%)</title><rect x="3.6713%" y="645" width="0.0628%" height="15" fill="rgb(206,174,23)" fg:x="19002" fg:w="325"/><text x="3.9213%" y="655.50"></text></g><g><title>Parse::Parse (325 samples, 0.06%)</title><rect x="3.6713%" y="629" width="0.0628%" height="15" fill="rgb(211,33,43)" fg:x="19002" fg:w="325"/><text x="3.9213%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (379 samples, 0.07%)</title><rect x="3.6708%" y="661" width="0.0732%" height="15" fill="rgb(245,58,50)" fg:x="18999" fg:w="379"/><text x="3.9208%" y="671.50"></text></g><g><title>Parse::do_call (2,343 samples, 0.45%)</title><rect x="3.2940%" y="677" width="0.4527%" height="15" fill="rgb(244,68,36)" fg:x="17049" fg:w="2343"/><text x="3.5440%" y="687.50"></text></g><g><title>C2Compiler::compile_method (2,398 samples, 0.46%)</title><rect x="3.2859%" y="789" width="0.4633%" height="15" fill="rgb(232,229,15)" fg:x="17007" fg:w="2398"/><text x="3.5359%" y="799.50"></text></g><g><title>Compile::Compile (2,398 samples, 0.46%)</title><rect x="3.2859%" y="773" width="0.4633%" height="15" fill="rgb(254,30,23)" fg:x="17007" fg:w="2398"/><text x="3.5359%" y="783.50"></text></g><g><title>ParseGenerator::generate (2,356 samples, 0.46%)</title><rect x="3.2940%" y="757" width="0.4552%" height="15" fill="rgb(235,160,14)" fg:x="17049" fg:w="2356"/><text x="3.5440%" y="767.50"></text></g><g><title>Parse::Parse (2,356 samples, 0.46%)</title><rect x="3.2940%" y="741" width="0.4552%" height="15" fill="rgb(212,155,44)" fg:x="17049" fg:w="2356"/><text x="3.5440%" y="751.50"></text></g><g><title>Parse::do_all_blocks (2,356 samples, 0.46%)</title><rect x="3.2940%" y="725" width="0.4552%" height="15" fill="rgb(226,2,50)" fg:x="17049" fg:w="2356"/><text x="3.5440%" y="735.50"></text></g><g><title>Parse::do_one_block (2,356 samples, 0.46%)</title><rect x="3.2940%" y="709" width="0.4552%" height="15" fill="rgb(234,177,6)" fg:x="17049" fg:w="2356"/><text x="3.5440%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (2,356 samples, 0.46%)</title><rect x="3.2940%" y="693" width="0.4552%" height="15" fill="rgb(217,24,9)" fg:x="17049" fg:w="2356"/><text x="3.5440%" y="703.50"></text></g><g><title>PhaseCFG::sched_call (203 samples, 0.04%)</title><rect x="3.7705%" y="725" width="0.0392%" height="15" fill="rgb(220,13,46)" fg:x="19515" fg:w="203"/><text x="4.0205%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (204 samples, 0.04%)</title><rect x="3.7705%" y="741" width="0.0394%" height="15" fill="rgb(239,221,27)" fg:x="19515" fg:w="204"/><text x="4.0205%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (254 samples, 0.05%)</title><rect x="3.7621%" y="773" width="0.0491%" height="15" fill="rgb(222,198,25)" fg:x="19472" fg:w="254"/><text x="4.0121%" y="783.50"></text></g><g><title>PhaseCFG::global_code_motion (254 samples, 0.05%)</title><rect x="3.7621%" y="757" width="0.0491%" height="15" fill="rgb(211,99,13)" fg:x="19472" fg:w="254"/><text x="4.0121%" y="767.50"></text></g><g><title>Compile::Code_Gen (367 samples, 0.07%)</title><rect x="3.7500%" y="789" width="0.0709%" height="15" fill="rgb(232,111,31)" fg:x="19409" fg:w="367"/><text x="4.0000%" y="799.50"></text></g><g><title>OopFlow::compute_reach (206 samples, 0.04%)</title><rect x="3.9316%" y="725" width="0.0398%" height="15" fill="rgb(245,82,37)" fg:x="20349" fg:w="206"/><text x="4.1816%" y="735.50"></text></g><g><title>OopFlow::build_oop_map (112 samples, 0.02%)</title><rect x="3.9498%" y="709" width="0.0216%" height="15" fill="rgb(227,149,46)" fg:x="20443" fg:w="112"/><text x="4.1998%" y="719.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (103 samples, 0.02%)</title><rect x="3.9727%" y="725" width="0.0199%" height="15" fill="rgb(218,36,50)" fg:x="20562" fg:w="103"/><text x="4.2227%" y="735.50"></text></g><g><title>Compile::BuildOopMaps (882 samples, 0.17%)</title><rect x="3.8228%" y="741" width="0.1704%" height="15" fill="rgb(226,80,48)" fg:x="19786" fg:w="882"/><text x="4.0728%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (162 samples, 0.03%)</title><rect x="4.0357%" y="709" width="0.0313%" height="15" fill="rgb(238,224,15)" fg:x="20888" fg:w="162"/><text x="4.2857%" y="719.50"></text></g><g><title>Compile::shorten_branches (360 samples, 0.07%)</title><rect x="4.0037%" y="725" width="0.0696%" height="15" fill="rgb(241,136,10)" fg:x="20722" fg:w="360"/><text x="4.2537%" y="735.50"></text></g><g><title>Compile::init_buffer (416 samples, 0.08%)</title><rect x="3.9932%" y="741" width="0.0804%" height="15" fill="rgb(208,32,45)" fg:x="20668" fg:w="416"/><text x="4.2432%" y="751.50"></text></g><g><title>Compile::Output (1,308 samples, 0.25%)</title><rect x="3.8215%" y="757" width="0.2527%" height="15" fill="rgb(207,135,9)" fg:x="19779" fg:w="1308"/><text x="4.0715%" y="767.50"></text></g><g><title>Compile::FillLocArray (58 samples, 0.01%)</title><rect x="4.1101%" y="725" width="0.0112%" height="15" fill="rgb(206,86,44)" fg:x="21273" fg:w="58"/><text x="4.3601%" y="735.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (72 samples, 0.01%)</title><rect x="4.1219%" y="725" width="0.0139%" height="15" fill="rgb(245,177,15)" fg:x="21334" fg:w="72"/><text x="4.3719%" y="735.50"></text></g><g><title>Compile::Process_OopMap_Node (257 samples, 0.05%)</title><rect x="4.1051%" y="741" width="0.0497%" height="15" fill="rgb(206,64,50)" fg:x="21247" fg:w="257"/><text x="4.3551%" y="751.50"></text></g><g><title>Compile::valid_bundle_info (70 samples, 0.01%)</title><rect x="4.1561%" y="741" width="0.0135%" height="15" fill="rgb(234,36,40)" fg:x="21511" fg:w="70"/><text x="4.4061%" y="751.50"></text></g><g><title>Compile::fill_buffer (611 samples, 0.12%)</title><rect x="4.0744%" y="757" width="0.1181%" height="15" fill="rgb(213,64,8)" fg:x="21088" fg:w="611"/><text x="4.3244%" y="767.50"></text></g><g><title>Matcher::find_shared (396 samples, 0.08%)</title><rect x="4.2090%" y="741" width="0.0765%" height="15" fill="rgb(210,75,36)" fg:x="21785" fg:w="396"/><text x="4.4590%" y="751.50"></text></g><g><title>Arena::contains (645 samples, 0.12%)</title><rect x="4.3582%" y="725" width="0.1246%" height="15" fill="rgb(229,88,21)" fg:x="22557" fg:w="645"/><text x="4.6082%" y="735.50"></text></g><g><title>Matcher::match_tree (102 samples, 0.02%)</title><rect x="4.4940%" y="709" width="0.0197%" height="15" fill="rgb(252,204,47)" fg:x="23260" fg:w="102"/><text x="4.7440%" y="719.50"></text></g><g><title>Matcher::match_sfpt (138 samples, 0.03%)</title><rect x="4.4888%" y="725" width="0.0267%" height="15" fill="rgb(208,77,27)" fg:x="23233" fg:w="138"/><text x="4.7388%" y="735.50"></text></g><g><title>Matcher::Label_Root (62 samples, 0.01%)</title><rect x="4.6005%" y="661" width="0.0120%" height="15" fill="rgb(221,76,26)" fg:x="23811" fg:w="62"/><text x="4.8505%" y="671.50"></text></g><g><title>State::DFA (59 samples, 0.01%)</title><rect x="4.6125%" y="661" width="0.0114%" height="15" fill="rgb(225,139,18)" fg:x="23873" fg:w="59"/><text x="4.8625%" y="671.50"></text></g><g><title>Matcher::Label_Root (160 samples, 0.03%)</title><rect x="4.5939%" y="677" width="0.0309%" height="15" fill="rgb(230,137,11)" fg:x="23777" fg:w="160"/><text x="4.8439%" y="687.50"></text></g><g><title>State::DFA (88 samples, 0.02%)</title><rect x="4.6268%" y="677" width="0.0170%" height="15" fill="rgb(212,28,1)" fg:x="23947" fg:w="88"/><text x="4.8768%" y="687.50"></text></g><g><title>Matcher::Label_Root (358 samples, 0.07%)</title><rect x="4.5771%" y="693" width="0.0692%" height="15" fill="rgb(248,164,17)" fg:x="23690" fg:w="358"/><text x="4.8271%" y="703.50"></text></g><g><title>State::DFA (59 samples, 0.01%)</title><rect x="4.6472%" y="693" width="0.0114%" height="15" fill="rgb(222,171,42)" fg:x="24053" fg:w="59"/><text x="4.8972%" y="703.50"></text></g><g><title>Matcher::Label_Root (545 samples, 0.11%)</title><rect x="4.5589%" y="709" width="0.1053%" height="15" fill="rgb(243,84,45)" fg:x="23596" fg:w="545"/><text x="4.8089%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (79 samples, 0.02%)</title><rect x="4.6733%" y="661" width="0.0153%" height="15" fill="rgb(252,49,23)" fg:x="24188" fg:w="79"/><text x="4.9233%" y="671.50"></text></g><g><title>Matcher::ReduceInst (124 samples, 0.02%)</title><rect x="4.6716%" y="677" width="0.0240%" height="15" fill="rgb(215,19,7)" fg:x="24179" fg:w="124"/><text x="4.9216%" y="687.50"></text></g><g><title>Matcher::ReduceInst_Interior (199 samples, 0.04%)</title><rect x="4.6696%" y="693" width="0.0384%" height="15" fill="rgb(238,81,41)" fg:x="24169" fg:w="199"/><text x="4.9196%" y="703.50"></text></g><g><title>State::MachNodeGenerator (65 samples, 0.01%)</title><rect x="4.7133%" y="693" width="0.0126%" height="15" fill="rgb(210,199,37)" fg:x="24395" fg:w="65"/><text x="4.9633%" y="703.50"></text></g><g><title>Matcher::ReduceInst (343 samples, 0.07%)</title><rect x="4.6642%" y="709" width="0.0663%" height="15" fill="rgb(244,192,49)" fg:x="24141" fg:w="343"/><text x="4.9142%" y="719.50"></text></g><g><title>Matcher::match_tree (1,129 samples, 0.22%)</title><rect x="4.5155%" y="725" width="0.2181%" height="15" fill="rgb(226,211,11)" fg:x="23371" fg:w="1129"/><text x="4.7655%" y="735.50"></text></g><g><title>Node::clone (93 samples, 0.02%)</title><rect x="4.7351%" y="725" width="0.0180%" height="15" fill="rgb(236,162,54)" fg:x="24508" fg:w="93"/><text x="4.9851%" y="735.50"></text></g><g><title>Node::out_grow (52 samples, 0.01%)</title><rect x="4.7531%" y="725" width="0.0100%" height="15" fill="rgb(220,229,9)" fg:x="24601" fg:w="52"/><text x="5.0031%" y="735.50"></text></g><g><title>Matcher::xform (2,465 samples, 0.48%)</title><rect x="4.2875%" y="741" width="0.4763%" height="15" fill="rgb(250,87,22)" fg:x="22191" fg:w="2465"/><text x="4.5375%" y="751.50"></text></g><g><title>Matcher::match (2,960 samples, 0.57%)</title><rect x="4.1942%" y="757" width="0.5719%" height="15" fill="rgb(239,43,17)" fg:x="21708" fg:w="2960"/><text x="4.4442%" y="767.50"></text></g><g><title>PhaseBlockLayout::find_edges (75 samples, 0.01%)</title><rect x="4.7664%" y="741" width="0.0145%" height="15" fill="rgb(231,177,25)" fg:x="24670" fg:w="75"/><text x="5.0164%" y="751.50"></text></g><g><title>PhaseBlockLayout::grow_traces (70 samples, 0.01%)</title><rect x="4.7809%" y="741" width="0.0135%" height="15" fill="rgb(219,179,1)" fg:x="24745" fg:w="70"/><text x="5.0309%" y="751.50"></text></g><g><title>__GI___qsort_r (54 samples, 0.01%)</title><rect x="4.7840%" y="725" width="0.0104%" height="15" fill="rgb(238,219,53)" fg:x="24761" fg:w="54"/><text x="5.0340%" y="735.50"></text></g><g><title>msort_with_tmp (52 samples, 0.01%)</title><rect x="4.7844%" y="709" width="0.0100%" height="15" fill="rgb(232,167,36)" fg:x="24763" fg:w="52"/><text x="5.0344%" y="719.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (184 samples, 0.04%)</title><rect x="4.7661%" y="757" width="0.0356%" height="15" fill="rgb(244,19,51)" fg:x="24668" fg:w="184"/><text x="5.0161%" y="767.50"></text></g><g><title>PhaseCFG::PhaseCFG (142 samples, 0.03%)</title><rect x="4.8016%" y="757" width="0.0274%" height="15" fill="rgb(224,6,22)" fg:x="24852" fg:w="142"/><text x="5.0516%" y="767.50"></text></g><g><title>PhaseCFG::build_cfg (137 samples, 0.03%)</title><rect x="4.8026%" y="741" width="0.0265%" height="15" fill="rgb(224,145,5)" fg:x="24857" fg:w="137"/><text x="5.0526%" y="751.50"></text></g><g><title>PhaseCFG::build_dominator_tree (90 samples, 0.02%)</title><rect x="4.8294%" y="741" width="0.0174%" height="15" fill="rgb(234,130,49)" fg:x="24996" fg:w="90"/><text x="5.0794%" y="751.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (74 samples, 0.01%)</title><rect x="4.8468%" y="741" width="0.0143%" height="15" fill="rgb(254,6,2)" fg:x="25086" fg:w="74"/><text x="5.0968%" y="751.50"></text></g><g><title>PhaseCFG::implicit_null_check (57 samples, 0.01%)</title><rect x="4.9380%" y="725" width="0.0110%" height="15" fill="rgb(208,96,46)" fg:x="25558" fg:w="57"/><text x="5.1880%" y="735.50"></text></g><g><title>Node_Backward_Iterator::next (294 samples, 0.06%)</title><rect x="4.9819%" y="709" width="0.0568%" height="15" fill="rgb(239,3,39)" fg:x="25785" fg:w="294"/><text x="5.2319%" y="719.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (110 samples, 0.02%)</title><rect x="5.0387%" y="709" width="0.0213%" height="15" fill="rgb(233,210,1)" fg:x="26079" fg:w="110"/><text x="5.2887%" y="719.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (173 samples, 0.03%)</title><rect x="5.0599%" y="709" width="0.0334%" height="15" fill="rgb(244,137,37)" fg:x="26189" fg:w="173"/><text x="5.3099%" y="719.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (54 samples, 0.01%)</title><rect x="5.0933%" y="709" width="0.0104%" height="15" fill="rgb(240,136,2)" fg:x="26362" fg:w="54"/><text x="5.3433%" y="719.50"></text></g><g><title>PhaseCFG::schedule_late (762 samples, 0.15%)</title><rect x="4.9575%" y="725" width="0.1472%" height="15" fill="rgb(239,18,37)" fg:x="25659" fg:w="762"/><text x="5.2075%" y="735.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (52 samples, 0.01%)</title><rect x="5.1635%" y="709" width="0.0100%" height="15" fill="rgb(218,185,22)" fg:x="26725" fg:w="52"/><text x="5.4135%" y="719.50"></text></g><g><title>PhaseCFG::select (97 samples, 0.02%)</title><rect x="5.1786%" y="709" width="0.0187%" height="15" fill="rgb(225,218,4)" fg:x="26803" fg:w="97"/><text x="5.4286%" y="719.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (72 samples, 0.01%)</title><rect x="5.1973%" y="709" width="0.0139%" height="15" fill="rgb(230,182,32)" fg:x="26900" fg:w="72"/><text x="5.4473%" y="719.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (59 samples, 0.01%)</title><rect x="5.2112%" y="709" width="0.0114%" height="15" fill="rgb(242,56,43)" fg:x="26972" fg:w="59"/><text x="5.4612%" y="719.50"></text></g><g><title>PhaseCFG::schedule_local (622 samples, 0.12%)</title><rect x="5.1047%" y="725" width="0.1202%" height="15" fill="rgb(233,99,24)" fg:x="26421" fg:w="622"/><text x="5.3547%" y="735.50"></text></g><g><title>RegMask::Size (99 samples, 0.02%)</title><rect x="5.2883%" y="709" width="0.0191%" height="15" fill="rgb(234,209,42)" fg:x="27371" fg:w="99"/><text x="5.5383%" y="719.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (463 samples, 0.09%)</title><rect x="5.2317%" y="725" width="0.0895%" height="15" fill="rgb(227,7,12)" fg:x="27078" fg:w="463"/><text x="5.4817%" y="735.50"></text></g><g><title>PhaseChaitin::mark_ssa (107 samples, 0.02%)</title><rect x="5.3211%" y="725" width="0.0207%" height="15" fill="rgb(245,203,43)" fg:x="27541" fg:w="107"/><text x="5.5711%" y="735.50"></text></g><g><title>IndexSet::initialize (112 samples, 0.02%)</title><rect x="5.3538%" y="709" width="0.0216%" height="15" fill="rgb(238,205,33)" fg:x="27710" fg:w="112"/><text x="5.6038%" y="719.50"></text></g><g><title>PhaseIFG::init (212 samples, 0.04%)</title><rect x="5.3418%" y="725" width="0.0410%" height="15" fill="rgb(231,56,7)" fg:x="27648" fg:w="212"/><text x="5.5918%" y="735.50"></text></g><g><title>IndexSet::initialize (68 samples, 0.01%)</title><rect x="5.4363%" y="709" width="0.0131%" height="15" fill="rgb(244,186,29)" fg:x="28137" fg:w="68"/><text x="5.6863%" y="719.50"></text></g><g><title>PhaseLive::add_livein (180 samples, 0.03%)</title><rect x="5.4502%" y="709" width="0.0348%" height="15" fill="rgb(234,111,31)" fg:x="28209" fg:w="180"/><text x="5.7002%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (59 samples, 0.01%)</title><rect x="5.4736%" y="693" width="0.0114%" height="15" fill="rgb(241,149,10)" fg:x="28330" fg:w="59"/><text x="5.7236%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (78 samples, 0.02%)</title><rect x="5.5188%" y="693" width="0.0151%" height="15" fill="rgb(249,206,44)" fg:x="28564" fg:w="78"/><text x="5.7688%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (96 samples, 0.02%)</title><rect x="5.5399%" y="693" width="0.0185%" height="15" fill="rgb(251,153,30)" fg:x="28673" fg:w="96"/><text x="5.7899%" y="703.50"></text></g><g><title>PhaseLive::add_liveout (389 samples, 0.08%)</title><rect x="5.4850%" y="709" width="0.0752%" height="15" fill="rgb(239,152,38)" fg:x="28389" fg:w="389"/><text x="5.7350%" y="719.50"></text></g><g><title>PhaseLive::compute (925 samples, 0.18%)</title><rect x="5.3828%" y="725" width="0.1787%" height="15" fill="rgb(249,139,47)" fg:x="27860" fg:w="925"/><text x="5.6328%" y="735.50"></text></g><g><title>PhaseCFG::global_code_motion (3,650 samples, 0.71%)</title><rect x="4.8611%" y="741" width="0.7052%" height="15" fill="rgb(244,64,35)" fg:x="25160" fg:w="3650"/><text x="5.1111%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,817 samples, 0.74%)</title><rect x="4.8290%" y="757" width="0.7375%" height="15" fill="rgb(216,46,15)" fg:x="24994" fg:w="3817"/><text x="5.0790%" y="767.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (75 samples, 0.01%)</title><rect x="5.5717%" y="757" width="0.0145%" height="15" fill="rgb(250,74,19)" fg:x="28838" fg:w="75"/><text x="5.8217%" y="767.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,053 samples, 0.20%)</title><rect x="5.6140%" y="741" width="0.2034%" height="15" fill="rgb(249,42,33)" fg:x="29057" fg:w="1053"/><text x="5.8640%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (357 samples, 0.07%)</title><rect x="5.9437%" y="725" width="0.0690%" height="15" fill="rgb(242,149,17)" fg:x="30763" fg:w="357"/><text x="6.1937%" y="735.50"></text></g><g><title>PhaseChaitin::bias_color (174 samples, 0.03%)</title><rect x="6.0126%" y="725" width="0.0336%" height="15" fill="rgb(244,29,21)" fg:x="31120" fg:w="174"/><text x="6.2626%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (58 samples, 0.01%)</title><rect x="6.1174%" y="709" width="0.0112%" height="15" fill="rgb(220,130,37)" fg:x="31662" fg:w="58"/><text x="6.3674%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (69 samples, 0.01%)</title><rect x="6.1286%" y="709" width="0.0133%" height="15" fill="rgb(211,67,2)" fg:x="31720" fg:w="69"/><text x="6.3786%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (437 samples, 0.08%)</title><rect x="6.1419%" y="709" width="0.0844%" height="15" fill="rgb(235,68,52)" fg:x="31789" fg:w="437"/><text x="6.3919%" y="719.50"></text></g><g><title>PhaseIFG::re_insert (939 samples, 0.18%)</title><rect x="6.0482%" y="725" width="0.1814%" height="15" fill="rgb(246,142,3)" fg:x="31304" fg:w="939"/><text x="6.2982%" y="735.50"></text></g><g><title>RegMask::clear_to_sets (174 samples, 0.03%)</title><rect x="6.2296%" y="725" width="0.0336%" height="15" fill="rgb(241,25,7)" fg:x="32243" fg:w="174"/><text x="6.4796%" y="735.50"></text></g><g><title>PhaseChaitin::Select (2,315 samples, 0.45%)</title><rect x="5.8175%" y="741" width="0.4473%" height="15" fill="rgb(242,119,39)" fg:x="30110" fg:w="2315"/><text x="6.0675%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (338 samples, 0.07%)</title><rect x="6.3229%" y="725" width="0.0653%" height="15" fill="rgb(241,98,45)" fg:x="32726" fg:w="338"/><text x="6.5729%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (58 samples, 0.01%)</title><rect x="6.4817%" y="709" width="0.0112%" height="15" fill="rgb(254,28,30)" fg:x="33548" fg:w="58"/><text x="6.7317%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (464 samples, 0.09%)</title><rect x="6.4929%" y="709" width="0.0896%" height="15" fill="rgb(241,142,54)" fg:x="33606" fg:w="464"/><text x="6.7429%" y="719.50"></text></g><g><title>PhaseIFG::remove_node (1,007 samples, 0.19%)</title><rect x="6.3882%" y="725" width="0.1946%" height="15" fill="rgb(222,85,15)" fg:x="33064" fg:w="1007"/><text x="6.6382%" y="735.50"></text></g><g><title>PhaseChaitin::Simplify (1,647 samples, 0.32%)</title><rect x="6.2648%" y="741" width="0.3182%" height="15" fill="rgb(210,85,47)" fg:x="32425" fg:w="1647"/><text x="6.5148%" y="751.50"></text></g><g><title>MachNode::rematerialize (169 samples, 0.03%)</title><rect x="7.0961%" y="725" width="0.0327%" height="15" fill="rgb(224,206,25)" fg:x="36728" fg:w="169"/><text x="7.3461%" y="735.50"></text></g><g><title>Node::rematerialize (122 samples, 0.02%)</title><rect x="7.1357%" y="725" width="0.0236%" height="15" fill="rgb(243,201,19)" fg:x="36933" fg:w="122"/><text x="7.3857%" y="735.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (100 samples, 0.02%)</title><rect x="7.1991%" y="709" width="0.0193%" height="15" fill="rgb(236,59,4)" fg:x="37261" fg:w="100"/><text x="7.4491%" y="719.50"></text></g><g><title>PhaseChaitin::split_USE (180 samples, 0.03%)</title><rect x="7.1869%" y="725" width="0.0348%" height="15" fill="rgb(254,179,45)" fg:x="37198" fg:w="180"/><text x="7.4369%" y="735.50"></text></g><g><title>PhaseChaitin::Split (3,395 samples, 0.66%)</title><rect x="6.5830%" y="741" width="0.6559%" height="15" fill="rgb(226,14,10)" fg:x="34072" fg:w="3395"/><text x="6.8330%" y="751.50"></text></g><g><title>IndexSet::IndexSet (309 samples, 0.06%)</title><rect x="7.4271%" y="725" width="0.0597%" height="15" fill="rgb(244,27,41)" fg:x="38441" fg:w="309"/><text x="7.6771%" y="735.50"></text></g><g><title>MachNode::rematerialize (69 samples, 0.01%)</title><rect x="7.4893%" y="725" width="0.0133%" height="15" fill="rgb(235,35,32)" fg:x="38763" fg:w="69"/><text x="7.7393%" y="735.50"></text></g><g><title>MachNode::rematerialize (115 samples, 0.02%)</title><rect x="7.6054%" y="709" width="0.0222%" height="15" fill="rgb(218,68,31)" fg:x="39364" fg:w="115"/><text x="7.8554%" y="719.50"></text></g><g><title>PhaseChaitin::raise_pressure (136 samples, 0.03%)</title><rect x="7.6317%" y="709" width="0.0263%" height="15" fill="rgb(207,120,37)" fg:x="39500" fg:w="136"/><text x="7.8817%" y="719.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (798 samples, 0.15%)</title><rect x="7.5048%" y="725" width="0.1542%" height="15" fill="rgb(227,98,0)" fg:x="38843" fg:w="798"/><text x="7.7548%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (180 samples, 0.03%)</title><rect x="7.7281%" y="709" width="0.0348%" height="15" fill="rgb(207,7,3)" fg:x="39999" fg:w="180"/><text x="7.9781%" y="719.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (534 samples, 0.10%)</title><rect x="7.6758%" y="725" width="0.1032%" height="15" fill="rgb(206,98,19)" fg:x="39728" fg:w="534"/><text x="7.9258%" y="735.50"></text></g><g><title>RegMask::is_UP (83 samples, 0.02%)</title><rect x="7.7629%" y="709" width="0.0160%" height="15" fill="rgb(217,5,26)" fg:x="40179" fg:w="83"/><text x="8.0129%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (130 samples, 0.03%)</title><rect x="8.1827%" y="709" width="0.0251%" height="15" fill="rgb(235,190,38)" fg:x="42352" fg:w="130"/><text x="8.4327%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (931 samples, 0.18%)</title><rect x="8.2110%" y="709" width="0.1799%" height="15" fill="rgb(247,86,24)" fg:x="42498" fg:w="931"/><text x="8.4610%" y="719.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,175 samples, 0.61%)</title><rect x="7.7789%" y="725" width="0.6134%" height="15" fill="rgb(205,101,16)" fg:x="40262" fg:w="3175"/><text x="8.0289%" y="735.50"></text></g><g><title>PhaseChaitin::lower_pressure (101 samples, 0.02%)</title><rect x="8.3924%" y="725" width="0.0195%" height="15" fill="rgb(246,168,33)" fg:x="43437" fg:w="101"/><text x="8.6424%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (207 samples, 0.04%)</title><rect x="8.5131%" y="709" width="0.0400%" height="15" fill="rgb(231,114,1)" fg:x="44062" fg:w="207"/><text x="8.7631%" y="719.50"></text></g><g><title>RegMask::Size (338 samples, 0.07%)</title><rect x="8.5531%" y="709" width="0.0653%" height="15" fill="rgb(207,184,53)" fg:x="44269" fg:w="338"/><text x="8.8031%" y="719.50"></text></g><g><title>RegMask::smear_to_sets (650 samples, 0.13%)</title><rect x="8.6184%" y="709" width="0.1256%" height="15" fill="rgb(224,95,51)" fg:x="44607" fg:w="650"/><text x="8.8684%" y="719.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,733 samples, 0.33%)</title><rect x="8.4119%" y="725" width="0.3348%" height="15" fill="rgb(212,188,45)" fg:x="43538" fg:w="1733"/><text x="8.6619%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (7,914 samples, 1.53%)</title><rect x="7.2393%" y="741" width="1.5290%" height="15" fill="rgb(223,154,38)" fg:x="37469" fg:w="7914"/><text x="7.4893%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (59 samples, 0.01%)</title><rect x="8.8547%" y="709" width="0.0114%" height="15" fill="rgb(251,22,52)" fg:x="45830" fg:w="59"/><text x="9.1047%" y="719.50"></text></g><g><title>PhaseChaitin::interfere_with_live (354 samples, 0.07%)</title><rect x="8.7979%" y="725" width="0.0684%" height="15" fill="rgb(229,209,22)" fg:x="45536" fg:w="354"/><text x="9.0479%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (513 samples, 0.10%)</title><rect x="8.7684%" y="741" width="0.0991%" height="15" fill="rgb(234,138,34)" fg:x="45383" fg:w="513"/><text x="9.0184%" y="751.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (135 samples, 0.03%)</title><rect x="8.8675%" y="741" width="0.0261%" height="15" fill="rgb(212,95,11)" fg:x="45896" fg:w="135"/><text x="9.1175%" y="751.50"></text></g><g><title>PhaseChaitin::de_ssa (82 samples, 0.02%)</title><rect x="8.9009%" y="741" width="0.0158%" height="15" fill="rgb(240,179,47)" fg:x="46069" fg:w="82"/><text x="9.1509%" y="751.50"></text></g><g><title>PhaseChaitin::fixup_spills (66 samples, 0.01%)</title><rect x="8.9171%" y="741" width="0.0128%" height="15" fill="rgb(240,163,11)" fg:x="46153" fg:w="66"/><text x="9.1671%" y="751.50"></text></g><g><title>MachCallJavaNode::in_RegMask (79 samples, 0.02%)</title><rect x="9.2900%" y="725" width="0.0153%" height="15" fill="rgb(236,37,12)" fg:x="48083" fg:w="79"/><text x="9.5400%" y="735.50"></text></g><g><title>MachNode::ideal_reg (72 samples, 0.01%)</title><rect x="9.3061%" y="725" width="0.0139%" height="15" fill="rgb(232,164,16)" fg:x="48166" fg:w="72"/><text x="9.5561%" y="735.50"></text></g><g><title>MachNode::in_RegMask (62 samples, 0.01%)</title><rect x="9.3200%" y="725" width="0.0120%" height="15" fill="rgb(244,205,15)" fg:x="48238" fg:w="62"/><text x="9.5700%" y="735.50"></text></g><g><title>RegMask::Size (1,160 samples, 0.22%)</title><rect x="9.3553%" y="725" width="0.2241%" height="15" fill="rgb(223,117,47)" fg:x="48421" fg:w="1160"/><text x="9.6053%" y="735.50"></text></g><g><title>RegMask::clear_to_sets (216 samples, 0.04%)</title><rect x="9.5794%" y="725" width="0.0417%" height="15" fill="rgb(244,107,35)" fg:x="49581" fg:w="216"/><text x="9.8294%" y="735.50"></text></g><g><title>RegMask::is_aligned_pairs (92 samples, 0.02%)</title><rect x="9.6212%" y="725" width="0.0178%" height="15" fill="rgb(205,140,8)" fg:x="49797" fg:w="92"/><text x="9.8712%" y="735.50"></text></g><g><title>RegMask::is_bound1 (171 samples, 0.03%)</title><rect x="9.6390%" y="725" width="0.0330%" height="15" fill="rgb(228,84,46)" fg:x="49889" fg:w="171"/><text x="9.8890%" y="735.50"></text></g><g><title>RegMask::is_bound_pair (96 samples, 0.02%)</title><rect x="9.6720%" y="725" width="0.0185%" height="15" fill="rgb(254,188,9)" fg:x="50060" fg:w="96"/><text x="9.9220%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,105 samples, 0.79%)</title><rect x="8.9299%" y="741" width="0.7931%" height="15" fill="rgb(206,112,54)" fg:x="46219" fg:w="4105"/><text x="9.1799%" y="751.50"></text></g><g><title>PhaseChaitin::merge_multidefs (535 samples, 0.10%)</title><rect x="9.7234%" y="741" width="0.1034%" height="15" fill="rgb(216,84,49)" fg:x="50326" fg:w="535"/><text x="9.9734%" y="751.50"></text></g><g><title>PhaseChaitin::use_prior_register (104 samples, 0.02%)</title><rect x="10.6009%" y="709" width="0.0201%" height="15" fill="rgb(214,194,35)" fg:x="54868" fg:w="104"/><text x="10.8509%" y="719.50"></text></g><g><title>PhaseChaitin::elide_copy (2,198 samples, 0.42%)</title><rect x="10.2060%" y="725" width="0.4247%" height="15" fill="rgb(249,28,3)" fg:x="52824" fg:w="2198"/><text x="10.4560%" y="735.50"></text></g><g><title>[libc-2.31.so] (68 samples, 0.01%)</title><rect x="10.6411%" y="725" width="0.0131%" height="15" fill="rgb(222,56,52)" fg:x="55076" fg:w="68"/><text x="10.8911%" y="735.50"></text></g><g><title>find_lowest_bit (366 samples, 0.07%)</title><rect x="10.6558%" y="725" width="0.0707%" height="15" fill="rgb(245,217,50)" fg:x="55152" fg:w="366"/><text x="10.9058%" y="735.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,660 samples, 0.90%)</title><rect x="9.8268%" y="741" width="0.9003%" height="15" fill="rgb(213,201,24)" fg:x="50861" fg:w="4660"/><text x="10.0768%" y="751.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (200 samples, 0.04%)</title><rect x="10.7271%" y="741" width="0.0386%" height="15" fill="rgb(248,116,28)" fg:x="55521" fg:w="200"/><text x="10.9771%" y="751.50"></text></g><g><title>PhaseIFG::Union (54 samples, 0.01%)</title><rect x="10.7889%" y="693" width="0.0104%" height="15" fill="rgb(219,72,43)" fg:x="55841" fg:w="54"/><text x="11.0389%" y="703.50"></text></g><g><title>PhaseCoalesce::combine_these_two (77 samples, 0.01%)</title><rect x="10.7851%" y="709" width="0.0149%" height="15" fill="rgb(209,138,14)" fg:x="55821" fg:w="77"/><text x="11.0351%" y="719.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (171 samples, 0.03%)</title><rect x="10.7671%" y="725" width="0.0330%" height="15" fill="rgb(222,18,33)" fg:x="55728" fg:w="171"/><text x="11.0171%" y="735.50"></text></g><g><title>PhaseCFG::is_uncommon (139 samples, 0.03%)</title><rect x="10.8110%" y="709" width="0.0269%" height="15" fill="rgb(213,199,7)" fg:x="55955" fg:w="139"/><text x="11.0610%" y="719.50"></text></g><g><title>IndexSet::lrg_union (419 samples, 0.08%)</title><rect x="10.8480%" y="693" width="0.0810%" height="15" fill="rgb(250,110,10)" fg:x="56147" fg:w="419"/><text x="11.0980%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (482 samples, 0.09%)</title><rect x="10.9333%" y="693" width="0.0931%" height="15" fill="rgb(248,123,6)" fg:x="56588" fg:w="482"/><text x="11.1833%" y="703.50"></text></g><g><title>PhaseIFG::effective_degree (118 samples, 0.02%)</title><rect x="11.0264%" y="693" width="0.0228%" height="15" fill="rgb(206,91,31)" fg:x="57070" fg:w="118"/><text x="11.2764%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (1,124 samples, 0.22%)</title><rect x="10.8378%" y="709" width="0.2172%" height="15" fill="rgb(211,154,13)" fg:x="56094" fg:w="1124"/><text x="11.0878%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,322 samples, 0.26%)</title><rect x="10.8001%" y="725" width="0.2554%" height="15" fill="rgb(225,148,7)" fg:x="55899" fg:w="1322"/><text x="11.0501%" y="735.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,501 samples, 0.29%)</title><rect x="10.7657%" y="741" width="0.2900%" height="15" fill="rgb(220,160,43)" fg:x="55721" fg:w="1501"/><text x="11.0157%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (521 samples, 0.10%)</title><rect x="11.1599%" y="725" width="0.1007%" height="15" fill="rgb(213,52,39)" fg:x="57761" fg:w="521"/><text x="11.4099%" y="735.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,060 samples, 0.20%)</title><rect x="11.0561%" y="741" width="0.2048%" height="15" fill="rgb(243,137,7)" fg:x="57224" fg:w="1060"/><text x="11.3061%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (59 samples, 0.01%)</title><rect x="11.3299%" y="725" width="0.0114%" height="15" fill="rgb(230,79,13)" fg:x="58641" fg:w="59"/><text x="11.5799%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (83 samples, 0.02%)</title><rect x="11.3413%" y="725" width="0.0160%" height="15" fill="rgb(247,105,23)" fg:x="58700" fg:w="83"/><text x="11.5913%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (458 samples, 0.09%)</title><rect x="11.3573%" y="725" width="0.0885%" height="15" fill="rgb(223,179,41)" fg:x="58783" fg:w="458"/><text x="11.6073%" y="735.50"></text></g><g><title>PhaseIFG::SquareUp (958 samples, 0.19%)</title><rect x="11.2611%" y="741" width="0.1851%" height="15" fill="rgb(218,9,34)" fg:x="58285" fg:w="958"/><text x="11.5111%" y="751.50"></text></g><g><title>IndexSet::initialize (221 samples, 0.04%)</title><rect x="11.4681%" y="725" width="0.0427%" height="15" fill="rgb(222,106,8)" fg:x="59356" fg:w="221"/><text x="11.7181%" y="735.50"></text></g><g><title>PhaseIFG::init (393 samples, 0.08%)</title><rect x="11.4462%" y="741" width="0.0759%" height="15" fill="rgb(211,220,0)" fg:x="59243" fg:w="393"/><text x="11.6962%" y="751.50"></text></g><g><title>[libc-2.31.so] (59 samples, 0.01%)</title><rect x="11.5108%" y="725" width="0.0114%" height="15" fill="rgb(229,52,16)" fg:x="59577" fg:w="59"/><text x="11.7608%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (86 samples, 0.02%)</title><rect x="11.7625%" y="725" width="0.0166%" height="15" fill="rgb(212,155,18)" fg:x="60880" fg:w="86"/><text x="12.0125%" y="735.50"></text></g><g><title>IndexSet::free_block (61 samples, 0.01%)</title><rect x="11.7791%" y="725" width="0.0118%" height="15" fill="rgb(242,21,14)" fg:x="60966" fg:w="61"/><text x="12.0291%" y="735.50"></text></g><g><title>IndexSet::initialize (120 samples, 0.02%)</title><rect x="11.7909%" y="725" width="0.0232%" height="15" fill="rgb(222,19,48)" fg:x="61027" fg:w="120"/><text x="12.0409%" y="735.50"></text></g><g><title>__tls_get_addr (78 samples, 0.02%)</title><rect x="11.9775%" y="693" width="0.0151%" height="15" fill="rgb(232,45,27)" fg:x="61993" fg:w="78"/><text x="12.2275%" y="703.50"></text></g><g><title>update_get_addr (53 samples, 0.01%)</title><rect x="11.9824%" y="677" width="0.0102%" height="15" fill="rgb(249,103,42)" fg:x="62018" fg:w="53"/><text x="12.2324%" y="687.50"></text></g><g><title>IndexSet::alloc_block_containing (209 samples, 0.04%)</title><rect x="11.9532%" y="709" width="0.0404%" height="15" fill="rgb(246,81,33)" fg:x="61867" fg:w="209"/><text x="12.2032%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (285 samples, 0.06%)</title><rect x="12.0009%" y="709" width="0.0551%" height="15" fill="rgb(252,33,42)" fg:x="62114" fg:w="285"/><text x="12.2509%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (1,275 samples, 0.25%)</title><rect x="11.8147%" y="725" width="0.2463%" height="15" fill="rgb(209,212,41)" fg:x="61150" fg:w="1275"/><text x="12.0647%" y="735.50"></text></g><g><title>PhaseLive::compute (2,795 samples, 0.54%)</title><rect x="11.5231%" y="741" width="0.5400%" height="15" fill="rgb(207,154,6)" fg:x="59641" fg:w="2795"/><text x="11.7731%" y="751.50"></text></g><g><title>RegMask::Size (70 samples, 0.01%)</title><rect x="12.0639%" y="741" width="0.0135%" height="15" fill="rgb(223,64,47)" fg:x="62440" fg:w="70"/><text x="12.3139%" y="751.50"></text></g><g><title>PhaseChaitin::Register_Allocate (33,679 samples, 6.51%)</title><rect x="5.5891%" y="757" width="6.5071%" height="15" fill="rgb(211,161,38)" fg:x="28928" fg:w="33679"/><text x="5.8391%" y="767.50">PhaseChai..</text></g><g><title>Compile::Code_Gen (42,892 samples, 8.29%)</title><rect x="3.8209%" y="773" width="8.2871%" height="15" fill="rgb(219,138,40)" fg:x="19776" fg:w="42892"/><text x="4.0709%" y="783.50">Compile::Cod..</text></g><g><title>PhasePeephole::do_transform (57 samples, 0.01%)</title><rect x="12.0969%" y="757" width="0.0110%" height="15" fill="rgb(241,228,46)" fg:x="62611" fg:w="57"/><text x="12.3469%" y="767.50"></text></g><g><title>Parse::do_call (60 samples, 0.01%)</title><rect x="12.1520%" y="117" width="0.0116%" height="15" fill="rgb(223,209,38)" fg:x="62896" fg:w="60"/><text x="12.4020%" y="127.50"></text></g><g><title>Parse::do_one_block (114 samples, 0.02%)</title><rect x="12.1495%" y="149" width="0.0220%" height="15" fill="rgb(236,164,45)" fg:x="62883" fg:w="114"/><text x="12.3995%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.02%)</title><rect x="12.1505%" y="133" width="0.0211%" height="15" fill="rgb(231,15,5)" fg:x="62888" fg:w="109"/><text x="12.4005%" y="143.50"></text></g><g><title>Parse::do_all_blocks (115 samples, 0.02%)</title><rect x="12.1495%" y="165" width="0.0222%" height="15" fill="rgb(252,35,15)" fg:x="62883" fg:w="115"/><text x="12.3995%" y="175.50"></text></g><g><title>ParseGenerator::generate (129 samples, 0.02%)</title><rect x="12.1481%" y="197" width="0.0249%" height="15" fill="rgb(248,181,18)" fg:x="62876" fg:w="129"/><text x="12.3981%" y="207.50"></text></g><g><title>Parse::Parse (129 samples, 0.02%)</title><rect x="12.1481%" y="181" width="0.0249%" height="15" fill="rgb(233,39,42)" fg:x="62876" fg:w="129"/><text x="12.3981%" y="191.50"></text></g><g><title>Parse::do_call (188 samples, 0.04%)</title><rect x="12.1406%" y="213" width="0.0363%" height="15" fill="rgb(238,110,33)" fg:x="62837" fg:w="188"/><text x="12.3906%" y="223.50"></text></g><g><title>Parse::do_one_block (258 samples, 0.05%)</title><rect x="12.1391%" y="245" width="0.0498%" height="15" fill="rgb(233,195,10)" fg:x="62829" fg:w="258"/><text x="12.3891%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (255 samples, 0.05%)</title><rect x="12.1396%" y="229" width="0.0493%" height="15" fill="rgb(254,105,3)" fg:x="62832" fg:w="255"/><text x="12.3896%" y="239.50"></text></g><g><title>Parse::do_all_blocks (263 samples, 0.05%)</title><rect x="12.1387%" y="261" width="0.0508%" height="15" fill="rgb(221,225,9)" fg:x="62827" fg:w="263"/><text x="12.3887%" y="271.50"></text></g><g><title>ParseGenerator::generate (276 samples, 0.05%)</title><rect x="12.1377%" y="293" width="0.0533%" height="15" fill="rgb(224,227,45)" fg:x="62822" fg:w="276"/><text x="12.3877%" y="303.50"></text></g><g><title>Parse::Parse (276 samples, 0.05%)</title><rect x="12.1377%" y="277" width="0.0533%" height="15" fill="rgb(229,198,43)" fg:x="62822" fg:w="276"/><text x="12.3877%" y="287.50"></text></g><g><title>Parse::do_call (373 samples, 0.07%)</title><rect x="12.1246%" y="309" width="0.0721%" height="15" fill="rgb(206,209,35)" fg:x="62754" fg:w="373"/><text x="12.3746%" y="319.50"></text></g><g><title>ParseGenerator::generate (438 samples, 0.08%)</title><rect x="12.1221%" y="389" width="0.0846%" height="15" fill="rgb(245,195,53)" fg:x="62741" fg:w="438"/><text x="12.3721%" y="399.50"></text></g><g><title>Parse::Parse (438 samples, 0.08%)</title><rect x="12.1221%" y="373" width="0.0846%" height="15" fill="rgb(240,92,26)" fg:x="62741" fg:w="438"/><text x="12.3721%" y="383.50"></text></g><g><title>Parse::do_all_blocks (433 samples, 0.08%)</title><rect x="12.1230%" y="357" width="0.0837%" height="15" fill="rgb(207,40,23)" fg:x="62746" fg:w="433"/><text x="12.3730%" y="367.50"></text></g><g><title>Parse::do_one_block (433 samples, 0.08%)</title><rect x="12.1230%" y="341" width="0.0837%" height="15" fill="rgb(223,111,35)" fg:x="62746" fg:w="433"/><text x="12.3730%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (432 samples, 0.08%)</title><rect x="12.1232%" y="325" width="0.0835%" height="15" fill="rgb(229,147,28)" fg:x="62747" fg:w="432"/><text x="12.3732%" y="335.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.01%)</title><rect x="12.2067%" y="373" width="0.0106%" height="15" fill="rgb(211,29,28)" fg:x="63179" fg:w="55"/><text x="12.4567%" y="383.50"></text></g><g><title>Parse::Parse (55 samples, 0.01%)</title><rect x="12.2067%" y="357" width="0.0106%" height="15" fill="rgb(228,72,33)" fg:x="63179" fg:w="55"/><text x="12.4567%" y="367.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="12.2067%" y="341" width="0.0106%" height="15" fill="rgb(205,214,31)" fg:x="63179" fg:w="55"/><text x="12.4567%" y="351.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="12.2067%" y="325" width="0.0106%" height="15" fill="rgb(224,111,15)" fg:x="63179" fg:w="55"/><text x="12.4567%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="12.2067%" y="309" width="0.0106%" height="15" fill="rgb(253,21,26)" fg:x="63179" fg:w="55"/><text x="12.4567%" y="319.50"></text></g><g><title>PredictedCallGenerator::generate (62 samples, 0.01%)</title><rect x="12.2067%" y="389" width="0.0120%" height="15" fill="rgb(245,139,43)" fg:x="63179" fg:w="62"/><text x="12.4567%" y="399.50"></text></g><g><title>Parse::do_call (533 samples, 0.10%)</title><rect x="12.1168%" y="405" width="0.1030%" height="15" fill="rgb(252,170,7)" fg:x="62714" fg:w="533"/><text x="12.3668%" y="415.50"></text></g><g><title>Parse::do_all_blocks (548 samples, 0.11%)</title><rect x="12.1167%" y="453" width="0.1059%" height="15" fill="rgb(231,118,14)" fg:x="62713" fg:w="548"/><text x="12.3667%" y="463.50"></text></g><g><title>Parse::do_one_block (548 samples, 0.11%)</title><rect x="12.1167%" y="437" width="0.1059%" height="15" fill="rgb(238,83,0)" fg:x="62713" fg:w="548"/><text x="12.3667%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (548 samples, 0.11%)</title><rect x="12.1167%" y="421" width="0.1059%" height="15" fill="rgb(221,39,39)" fg:x="62713" fg:w="548"/><text x="12.3667%" y="431.50"></text></g><g><title>ParseGenerator::generate (550 samples, 0.11%)</title><rect x="12.1165%" y="485" width="0.1063%" height="15" fill="rgb(222,119,46)" fg:x="62712" fg:w="550"/><text x="12.3665%" y="495.50"></text></g><g><title>Parse::Parse (550 samples, 0.11%)</title><rect x="12.1165%" y="469" width="0.1063%" height="15" fill="rgb(222,165,49)" fg:x="62712" fg:w="550"/><text x="12.3665%" y="479.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="12.2279%" y="229" width="0.0108%" height="15" fill="rgb(219,113,52)" fg:x="63289" fg:w="56"/><text x="12.4779%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="12.2281%" y="213" width="0.0106%" height="15" fill="rgb(214,7,15)" fg:x="63290" fg:w="55"/><text x="12.4781%" y="223.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="12.2279%" y="245" width="0.0112%" height="15" fill="rgb(235,32,4)" fg:x="63289" fg:w="58"/><text x="12.4779%" y="255.50"></text></g><g><title>ParseGenerator::generate (63 samples, 0.01%)</title><rect x="12.2272%" y="277" width="0.0122%" height="15" fill="rgb(238,90,54)" fg:x="63285" fg:w="63"/><text x="12.4772%" y="287.50"></text></g><g><title>Parse::Parse (63 samples, 0.01%)</title><rect x="12.2272%" y="261" width="0.0122%" height="15" fill="rgb(213,208,19)" fg:x="63285" fg:w="63"/><text x="12.4772%" y="271.50"></text></g><g><title>Parse::do_call (82 samples, 0.02%)</title><rect x="12.2252%" y="293" width="0.0158%" height="15" fill="rgb(233,156,4)" fg:x="63275" fg:w="82"/><text x="12.4752%" y="303.50"></text></g><g><title>ParseGenerator::generate (112 samples, 0.02%)</title><rect x="12.2239%" y="373" width="0.0216%" height="15" fill="rgb(207,194,5)" fg:x="63268" fg:w="112"/><text x="12.4739%" y="383.50"></text></g><g><title>Parse::Parse (112 samples, 0.02%)</title><rect x="12.2239%" y="357" width="0.0216%" height="15" fill="rgb(206,111,30)" fg:x="63268" fg:w="112"/><text x="12.4739%" y="367.50"></text></g><g><title>Parse::do_all_blocks (109 samples, 0.02%)</title><rect x="12.2245%" y="341" width="0.0211%" height="15" fill="rgb(243,70,54)" fg:x="63271" fg:w="109"/><text x="12.4745%" y="351.50"></text></g><g><title>Parse::do_one_block (109 samples, 0.02%)</title><rect x="12.2245%" y="325" width="0.0211%" height="15" fill="rgb(242,28,8)" fg:x="63271" fg:w="109"/><text x="12.4745%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.02%)</title><rect x="12.2245%" y="309" width="0.0211%" height="15" fill="rgb(219,106,18)" fg:x="63271" fg:w="109"/><text x="12.4745%" y="319.50"></text></g><g><title>Parse::do_call (124 samples, 0.02%)</title><rect x="12.2227%" y="389" width="0.0240%" height="15" fill="rgb(244,222,10)" fg:x="63262" fg:w="124"/><text x="12.4727%" y="399.50"></text></g><g><title>ParseGenerator::generate (126 samples, 0.02%)</title><rect x="12.2227%" y="469" width="0.0243%" height="15" fill="rgb(236,179,52)" fg:x="63262" fg:w="126"/><text x="12.4727%" y="479.50"></text></g><g><title>Parse::Parse (126 samples, 0.02%)</title><rect x="12.2227%" y="453" width="0.0243%" height="15" fill="rgb(213,23,39)" fg:x="63262" fg:w="126"/><text x="12.4727%" y="463.50"></text></g><g><title>Parse::do_all_blocks (126 samples, 0.02%)</title><rect x="12.2227%" y="437" width="0.0243%" height="15" fill="rgb(238,48,10)" fg:x="63262" fg:w="126"/><text x="12.4727%" y="447.50"></text></g><g><title>Parse::do_one_block (126 samples, 0.02%)</title><rect x="12.2227%" y="421" width="0.0243%" height="15" fill="rgb(251,196,23)" fg:x="63262" fg:w="126"/><text x="12.4727%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (126 samples, 0.02%)</title><rect x="12.2227%" y="405" width="0.0243%" height="15" fill="rgb(250,152,24)" fg:x="63262" fg:w="126"/><text x="12.4727%" y="415.50"></text></g><g><title>Parse::do_call (728 samples, 0.14%)</title><rect x="12.1105%" y="501" width="0.1407%" height="15" fill="rgb(209,150,17)" fg:x="62681" fg:w="728"/><text x="12.3605%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (147 samples, 0.03%)</title><rect x="12.2227%" y="485" width="0.0284%" height="15" fill="rgb(234,202,34)" fg:x="63262" fg:w="147"/><text x="12.4727%" y="495.50"></text></g><g><title>ParseGenerator::generate (730 samples, 0.14%)</title><rect x="12.1105%" y="581" width="0.1410%" height="15" fill="rgb(253,148,53)" fg:x="62681" fg:w="730"/><text x="12.3605%" y="591.50"></text></g><g><title>Parse::Parse (730 samples, 0.14%)</title><rect x="12.1105%" y="565" width="0.1410%" height="15" fill="rgb(218,129,16)" fg:x="62681" fg:w="730"/><text x="12.3605%" y="575.50"></text></g><g><title>Parse::do_all_blocks (730 samples, 0.14%)</title><rect x="12.1105%" y="549" width="0.1410%" height="15" fill="rgb(216,85,19)" fg:x="62681" fg:w="730"/><text x="12.3605%" y="559.50"></text></g><g><title>Parse::do_one_block (730 samples, 0.14%)</title><rect x="12.1105%" y="533" width="0.1410%" height="15" fill="rgb(235,228,7)" fg:x="62681" fg:w="730"/><text x="12.3605%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (730 samples, 0.14%)</title><rect x="12.1105%" y="517" width="0.1410%" height="15" fill="rgb(245,175,0)" fg:x="62681" fg:w="730"/><text x="12.3605%" y="527.50"></text></g><g><title>Parse::do_call (72 samples, 0.01%)</title><rect x="12.2577%" y="293" width="0.0139%" height="15" fill="rgb(208,168,36)" fg:x="63443" fg:w="72"/><text x="12.5077%" y="303.50"></text></g><g><title>Parse::do_one_block (100 samples, 0.02%)</title><rect x="12.2565%" y="325" width="0.0193%" height="15" fill="rgb(246,171,24)" fg:x="63437" fg:w="100"/><text x="12.5065%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (99 samples, 0.02%)</title><rect x="12.2567%" y="309" width="0.0191%" height="15" fill="rgb(215,142,24)" fg:x="63438" fg:w="99"/><text x="12.5067%" y="319.50"></text></g><g><title>Parse::do_all_blocks (101 samples, 0.02%)</title><rect x="12.2565%" y="341" width="0.0195%" height="15" fill="rgb(250,187,7)" fg:x="63437" fg:w="101"/><text x="12.5065%" y="351.50"></text></g><g><title>ParseGenerator::generate (102 samples, 0.02%)</title><rect x="12.2565%" y="373" width="0.0197%" height="15" fill="rgb(228,66,33)" fg:x="63437" fg:w="102"/><text x="12.5065%" y="383.50"></text></g><g><title>Parse::Parse (102 samples, 0.02%)</title><rect x="12.2565%" y="357" width="0.0197%" height="15" fill="rgb(234,215,21)" fg:x="63437" fg:w="102"/><text x="12.5065%" y="367.50"></text></g><g><title>Parse::do_call (134 samples, 0.03%)</title><rect x="12.2542%" y="389" width="0.0259%" height="15" fill="rgb(222,191,20)" fg:x="63425" fg:w="134"/><text x="12.5042%" y="399.50"></text></g><g><title>ParseGenerator::generate (141 samples, 0.03%)</title><rect x="12.2540%" y="469" width="0.0272%" height="15" fill="rgb(245,79,54)" fg:x="63424" fg:w="141"/><text x="12.5040%" y="479.50"></text></g><g><title>Parse::Parse (141 samples, 0.03%)</title><rect x="12.2540%" y="453" width="0.0272%" height="15" fill="rgb(240,10,37)" fg:x="63424" fg:w="141"/><text x="12.5040%" y="463.50"></text></g><g><title>Parse::do_all_blocks (140 samples, 0.03%)</title><rect x="12.2542%" y="437" width="0.0270%" height="15" fill="rgb(214,192,32)" fg:x="63425" fg:w="140"/><text x="12.5042%" y="447.50"></text></g><g><title>Parse::do_one_block (140 samples, 0.03%)</title><rect x="12.2542%" y="421" width="0.0270%" height="15" fill="rgb(209,36,54)" fg:x="63425" fg:w="140"/><text x="12.5042%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (140 samples, 0.03%)</title><rect x="12.2542%" y="405" width="0.0270%" height="15" fill="rgb(220,10,11)" fg:x="63425" fg:w="140"/><text x="12.5042%" y="415.50"></text></g><g><title>ParseGenerator::generate (167 samples, 0.03%)</title><rect x="12.2515%" y="565" width="0.0323%" height="15" fill="rgb(221,106,17)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="575.50"></text></g><g><title>Parse::Parse (167 samples, 0.03%)</title><rect x="12.2515%" y="549" width="0.0323%" height="15" fill="rgb(251,142,44)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="559.50"></text></g><g><title>Parse::do_all_blocks (167 samples, 0.03%)</title><rect x="12.2515%" y="533" width="0.0323%" height="15" fill="rgb(238,13,15)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="543.50"></text></g><g><title>Parse::do_one_block (167 samples, 0.03%)</title><rect x="12.2515%" y="517" width="0.0323%" height="15" fill="rgb(208,107,27)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (167 samples, 0.03%)</title><rect x="12.2515%" y="501" width="0.0323%" height="15" fill="rgb(205,136,37)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="511.50"></text></g><g><title>Parse::do_call (167 samples, 0.03%)</title><rect x="12.2515%" y="485" width="0.0323%" height="15" fill="rgb(250,205,27)" fg:x="63411" fg:w="167"/><text x="12.5015%" y="495.50"></text></g><g><title>Parse::do_call (919 samples, 0.18%)</title><rect x="12.1095%" y="597" width="0.1776%" height="15" fill="rgb(210,80,43)" fg:x="62676" fg:w="919"/><text x="12.3595%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (184 samples, 0.04%)</title><rect x="12.2515%" y="581" width="0.0356%" height="15" fill="rgb(247,160,36)" fg:x="63411" fg:w="184"/><text x="12.5015%" y="591.50"></text></g><g><title>ParseGenerator::generate (920 samples, 0.18%)</title><rect x="12.1095%" y="677" width="0.1778%" height="15" fill="rgb(234,13,49)" fg:x="62676" fg:w="920"/><text x="12.3595%" y="687.50"></text></g><g><title>Parse::Parse (920 samples, 0.18%)</title><rect x="12.1095%" y="661" width="0.1778%" height="15" fill="rgb(234,122,0)" fg:x="62676" fg:w="920"/><text x="12.3595%" y="671.50"></text></g><g><title>Parse::do_all_blocks (920 samples, 0.18%)</title><rect x="12.1095%" y="645" width="0.1778%" height="15" fill="rgb(207,146,38)" fg:x="62676" fg:w="920"/><text x="12.3595%" y="655.50"></text></g><g><title>Parse::do_one_block (920 samples, 0.18%)</title><rect x="12.1095%" y="629" width="0.1778%" height="15" fill="rgb(207,177,25)" fg:x="62676" fg:w="920"/><text x="12.3595%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (920 samples, 0.18%)</title><rect x="12.1095%" y="613" width="0.1778%" height="15" fill="rgb(211,178,42)" fg:x="62676" fg:w="920"/><text x="12.3595%" y="623.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.01%)</title><rect x="12.2948%" y="277" width="0.0114%" height="15" fill="rgb(230,69,54)" fg:x="63635" fg:w="59"/><text x="12.5448%" y="287.50"></text></g><g><title>Parse::Parse (59 samples, 0.01%)</title><rect x="12.2948%" y="261" width="0.0114%" height="15" fill="rgb(214,135,41)" fg:x="63635" fg:w="59"/><text x="12.5448%" y="271.50"></text></g><g><title>Parse::do_call (84 samples, 0.02%)</title><rect x="12.2915%" y="293" width="0.0162%" height="15" fill="rgb(237,67,25)" fg:x="63618" fg:w="84"/><text x="12.5415%" y="303.50"></text></g><g><title>ParseGenerator::generate (112 samples, 0.02%)</title><rect x="12.2905%" y="373" width="0.0216%" height="15" fill="rgb(222,189,50)" fg:x="63613" fg:w="112"/><text x="12.5405%" y="383.50"></text></g><g><title>Parse::Parse (112 samples, 0.02%)</title><rect x="12.2905%" y="357" width="0.0216%" height="15" fill="rgb(245,148,34)" fg:x="63613" fg:w="112"/><text x="12.5405%" y="367.50"></text></g><g><title>Parse::do_all_blocks (108 samples, 0.02%)</title><rect x="12.2913%" y="341" width="0.0209%" height="15" fill="rgb(222,29,6)" fg:x="63617" fg:w="108"/><text x="12.5413%" y="351.50"></text></g><g><title>Parse::do_one_block (108 samples, 0.02%)</title><rect x="12.2913%" y="325" width="0.0209%" height="15" fill="rgb(221,189,43)" fg:x="63617" fg:w="108"/><text x="12.5413%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (108 samples, 0.02%)</title><rect x="12.2913%" y="309" width="0.0209%" height="15" fill="rgb(207,36,27)" fg:x="63617" fg:w="108"/><text x="12.5413%" y="319.50"></text></g><g><title>Parse::do_call (138 samples, 0.03%)</title><rect x="12.2894%" y="389" width="0.0267%" height="15" fill="rgb(217,90,24)" fg:x="63607" fg:w="138"/><text x="12.5394%" y="399.50"></text></g><g><title>ParseGenerator::generate (146 samples, 0.03%)</title><rect x="12.2894%" y="469" width="0.0282%" height="15" fill="rgb(224,66,35)" fg:x="63607" fg:w="146"/><text x="12.5394%" y="479.50"></text></g><g><title>Parse::Parse (146 samples, 0.03%)</title><rect x="12.2894%" y="453" width="0.0282%" height="15" fill="rgb(221,13,50)" fg:x="63607" fg:w="146"/><text x="12.5394%" y="463.50"></text></g><g><title>Parse::do_all_blocks (146 samples, 0.03%)</title><rect x="12.2894%" y="437" width="0.0282%" height="15" fill="rgb(236,68,49)" fg:x="63607" fg:w="146"/><text x="12.5394%" y="447.50"></text></g><g><title>Parse::do_one_block (146 samples, 0.03%)</title><rect x="12.2894%" y="421" width="0.0282%" height="15" fill="rgb(229,146,28)" fg:x="63607" fg:w="146"/><text x="12.5394%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (146 samples, 0.03%)</title><rect x="12.2894%" y="405" width="0.0282%" height="15" fill="rgb(225,31,38)" fg:x="63607" fg:w="146"/><text x="12.5394%" y="415.50"></text></g><g><title>Parse::do_call (170 samples, 0.03%)</title><rect x="12.2874%" y="485" width="0.0328%" height="15" fill="rgb(250,208,3)" fg:x="63597" fg:w="170"/><text x="12.5374%" y="495.50"></text></g><g><title>ParseGenerator::generate (171 samples, 0.03%)</title><rect x="12.2874%" y="565" width="0.0330%" height="15" fill="rgb(246,54,23)" fg:x="63597" fg:w="171"/><text x="12.5374%" y="575.50"></text></g><g><title>Parse::Parse (171 samples, 0.03%)</title><rect x="12.2874%" y="549" width="0.0330%" height="15" fill="rgb(243,76,11)" fg:x="63597" fg:w="171"/><text x="12.5374%" y="559.50"></text></g><g><title>Parse::do_all_blocks (171 samples, 0.03%)</title><rect x="12.2874%" y="533" width="0.0330%" height="15" fill="rgb(245,21,50)" fg:x="63597" fg:w="171"/><text x="12.5374%" y="543.50"></text></g><g><title>Parse::do_one_block (171 samples, 0.03%)</title><rect x="12.2874%" y="517" width="0.0330%" height="15" fill="rgb(228,9,43)" fg:x="63597" fg:w="171"/><text x="12.5374%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (171 samples, 0.03%)</title><rect x="12.2874%" y="501" width="0.0330%" height="15" fill="rgb(208,100,47)" fg:x="63597" fg:w="171"/><text x="12.5374%" y="511.50"></text></g><g><title>ParseGenerator::generate (220 samples, 0.04%)</title><rect x="12.2873%" y="661" width="0.0425%" height="15" fill="rgb(232,26,8)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="671.50"></text></g><g><title>Parse::Parse (220 samples, 0.04%)</title><rect x="12.2873%" y="645" width="0.0425%" height="15" fill="rgb(216,166,38)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="655.50"></text></g><g><title>Parse::do_all_blocks (220 samples, 0.04%)</title><rect x="12.2873%" y="629" width="0.0425%" height="15" fill="rgb(251,202,51)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="639.50"></text></g><g><title>Parse::do_one_block (220 samples, 0.04%)</title><rect x="12.2873%" y="613" width="0.0425%" height="15" fill="rgb(254,216,34)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (220 samples, 0.04%)</title><rect x="12.2873%" y="597" width="0.0425%" height="15" fill="rgb(251,32,27)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="607.50"></text></g><g><title>Parse::do_call (220 samples, 0.04%)</title><rect x="12.2873%" y="581" width="0.0425%" height="15" fill="rgb(208,127,28)" fg:x="63596" fg:w="220"/><text x="12.5373%" y="591.50"></text></g><g><title>Compile::Compile (44,081 samples, 8.52%)</title><rect x="3.8209%" y="789" width="8.5168%" height="15" fill="rgb(224,137,22)" fg:x="19776" fg:w="44081"/><text x="4.0709%" y="799.50">Compile::Com..</text></g><g><title>ParseGenerator::generate (1,181 samples, 0.23%)</title><rect x="12.1095%" y="773" width="0.2282%" height="15" fill="rgb(254,70,32)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="783.50"></text></g><g><title>Parse::Parse (1,181 samples, 0.23%)</title><rect x="12.1095%" y="757" width="0.2282%" height="15" fill="rgb(229,75,37)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="767.50"></text></g><g><title>Parse::do_all_blocks (1,181 samples, 0.23%)</title><rect x="12.1095%" y="741" width="0.2282%" height="15" fill="rgb(252,64,23)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="751.50"></text></g><g><title>Parse::do_one_block (1,181 samples, 0.23%)</title><rect x="12.1095%" y="725" width="0.2282%" height="15" fill="rgb(232,162,48)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (1,181 samples, 0.23%)</title><rect x="12.1095%" y="709" width="0.2282%" height="15" fill="rgb(246,160,12)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="719.50"></text></g><g><title>Parse::do_call (1,181 samples, 0.23%)</title><rect x="12.1095%" y="693" width="0.2282%" height="15" fill="rgb(247,166,0)" fg:x="62676" fg:w="1181"/><text x="12.3595%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (261 samples, 0.05%)</title><rect x="12.2873%" y="677" width="0.0504%" height="15" fill="rgb(249,219,21)" fg:x="63596" fg:w="261"/><text x="12.5373%" y="687.50"></text></g><g><title>Compile::final_graph_reshaping_impl (127 samples, 0.02%)</title><rect x="12.3705%" y="741" width="0.0245%" height="15" fill="rgb(205,209,3)" fg:x="64027" fg:w="127"/><text x="12.6205%" y="751.50"></text></g><g><title>Compile::final_graph_reshaping (311 samples, 0.06%)</title><rect x="12.3390%" y="773" width="0.0601%" height="15" fill="rgb(243,44,1)" fg:x="63864" fg:w="311"/><text x="12.5890%" y="783.50"></text></g><g><title>Compile::final_graph_reshaping_walk (303 samples, 0.06%)</title><rect x="12.3406%" y="757" width="0.0585%" height="15" fill="rgb(206,159,16)" fg:x="63872" fg:w="303"/><text x="12.5906%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (55 samples, 0.01%)</title><rect x="12.4495%" y="757" width="0.0106%" height="15" fill="rgb(244,77,30)" fg:x="64436" fg:w="55"/><text x="12.6995%" y="767.50"></text></g><g><title>Compile::remove_speculative_types (272 samples, 0.05%)</title><rect x="12.4084%" y="773" width="0.0526%" height="15" fill="rgb(218,69,12)" fg:x="64223" fg:w="272"/><text x="12.6584%" y="783.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (79 samples, 0.02%)</title><rect x="12.4948%" y="741" width="0.0153%" height="15" fill="rgb(212,87,7)" fg:x="64670" fg:w="79"/><text x="12.7448%" y="751.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (90 samples, 0.02%)</title><rect x="12.5176%" y="725" width="0.0174%" height="15" fill="rgb(245,114,25)" fg:x="64788" fg:w="90"/><text x="12.7676%" y="735.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (188 samples, 0.04%)</title><rect x="12.5104%" y="741" width="0.0363%" height="15" fill="rgb(210,61,42)" fg:x="64751" fg:w="188"/><text x="12.7604%" y="751.50"></text></g><g><title>ConnectionGraph::split_memory_phi (67 samples, 0.01%)</title><rect x="12.5541%" y="709" width="0.0129%" height="15" fill="rgb(211,52,33)" fg:x="64977" fg:w="67"/><text x="12.8041%" y="719.50"></text></g><g><title>ConnectionGraph::find_inst_mem (52 samples, 0.01%)</title><rect x="12.5570%" y="693" width="0.0100%" height="15" fill="rgb(234,58,33)" fg:x="64992" fg:w="52"/><text x="12.8070%" y="703.50"></text></g><g><title>ConnectionGraph::find_inst_mem (84 samples, 0.02%)</title><rect x="12.5512%" y="725" width="0.0162%" height="15" fill="rgb(220,115,36)" fg:x="64962" fg:w="84"/><text x="12.8012%" y="735.50"></text></g><g><title>ConnectionGraph::split_unique_types (120 samples, 0.02%)</title><rect x="12.5492%" y="741" width="0.0232%" height="15" fill="rgb(243,153,54)" fg:x="64952" fg:w="120"/><text x="12.7992%" y="751.50"></text></g><g><title>ConnectionGraph::do_analysis (582 samples, 0.11%)</title><rect x="12.4613%" y="773" width="0.1124%" height="15" fill="rgb(251,47,18)" fg:x="64497" fg:w="582"/><text x="12.7113%" y="783.50"></text></g><g><title>ConnectionGraph::compute_escape (577 samples, 0.11%)</title><rect x="12.4623%" y="757" width="0.1115%" height="15" fill="rgb(242,102,42)" fg:x="64502" fg:w="577"/><text x="12.7123%" y="767.50"></text></g><g><title>PhaseCCP::analyze (720 samples, 0.14%)</title><rect x="12.5747%" y="773" width="0.1391%" height="15" fill="rgb(234,31,38)" fg:x="65084" fg:w="720"/><text x="12.8247%" y="783.50"></text></g><g><title>PhaseCCP::transform_once (109 samples, 0.02%)</title><rect x="12.7374%" y="741" width="0.0211%" height="15" fill="rgb(221,117,51)" fg:x="65926" fg:w="109"/><text x="12.9874%" y="751.50"></text></g><g><title>PhaseCCP::do_transform (234 samples, 0.05%)</title><rect x="12.7139%" y="773" width="0.0452%" height="15" fill="rgb(212,20,18)" fg:x="65804" fg:w="234"/><text x="12.9639%" y="783.50"></text></g><g><title>PhaseCCP::transform (234 samples, 0.05%)</title><rect x="12.7139%" y="757" width="0.0452%" height="15" fill="rgb(245,133,36)" fg:x="65804" fg:w="234"/><text x="12.9639%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (53 samples, 0.01%)</title><rect x="12.7850%" y="677" width="0.0102%" height="15" fill="rgb(212,6,19)" fg:x="66172" fg:w="53"/><text x="13.0350%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (66 samples, 0.01%)</title><rect x="12.7848%" y="693" width="0.0128%" height="15" fill="rgb(218,1,36)" fg:x="66171" fg:w="66"/><text x="13.0348%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (89 samples, 0.02%)</title><rect x="12.7846%" y="709" width="0.0172%" height="15" fill="rgb(246,84,54)" fg:x="66170" fg:w="89"/><text x="13.0346%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (144 samples, 0.03%)</title><rect x="12.7832%" y="725" width="0.0278%" height="15" fill="rgb(242,110,6)" fg:x="66163" fg:w="144"/><text x="13.0332%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (206 samples, 0.04%)</title><rect x="12.7823%" y="741" width="0.0398%" height="15" fill="rgb(214,47,5)" fg:x="66158" fg:w="206"/><text x="13.0323%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (229 samples, 0.04%)</title><rect x="12.7815%" y="757" width="0.0442%" height="15" fill="rgb(218,159,25)" fg:x="66154" fg:w="229"/><text x="13.0315%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (74 samples, 0.01%)</title><rect x="12.8259%" y="741" width="0.0143%" height="15" fill="rgb(215,211,28)" fg:x="66384" fg:w="74"/><text x="13.0759%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (83 samples, 0.02%)</title><rect x="12.8470%" y="725" width="0.0160%" height="15" fill="rgb(238,59,32)" fg:x="66493" fg:w="83"/><text x="13.0970%" y="735.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (52 samples, 0.01%)</title><rect x="12.8630%" y="725" width="0.0100%" height="15" fill="rgb(226,82,3)" fg:x="66576" fg:w="52"/><text x="13.1130%" y="735.50"></text></g><g><title>IdealLoopTree::loop_predication (267 samples, 0.05%)</title><rect x="12.8257%" y="757" width="0.0516%" height="15" fill="rgb(240,164,32)" fg:x="66383" fg:w="267"/><text x="13.0757%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (192 samples, 0.04%)</title><rect x="12.8402%" y="741" width="0.0371%" height="15" fill="rgb(232,46,7)" fg:x="66458" fg:w="192"/><text x="13.0902%" y="751.50"></text></g><g><title>NTarjan::DFS (322 samples, 0.06%)</title><rect x="13.0218%" y="741" width="0.0622%" height="15" fill="rgb(229,129,53)" fg:x="67398" fg:w="322"/><text x="13.2718%" y="751.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,095 samples, 0.21%)</title><rect x="12.8847%" y="757" width="0.2116%" height="15" fill="rgb(234,188,29)" fg:x="66688" fg:w="1095"/><text x="13.1347%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_depth (63 samples, 0.01%)</title><rect x="13.3659%" y="709" width="0.0122%" height="15" fill="rgb(246,141,4)" fg:x="69179" fg:w="63"/><text x="13.6159%" y="719.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (437 samples, 0.08%)</title><rect x="13.3288%" y="741" width="0.0844%" height="15" fill="rgb(229,23,39)" fg:x="68987" fg:w="437"/><text x="13.5788%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (389 samples, 0.08%)</title><rect x="13.3381%" y="725" width="0.0752%" height="15" fill="rgb(206,12,3)" fg:x="69035" fg:w="389"/><text x="13.5881%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (182 samples, 0.04%)</title><rect x="13.3781%" y="709" width="0.0352%" height="15" fill="rgb(252,226,20)" fg:x="69242" fg:w="182"/><text x="13.6281%" y="719.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,734 samples, 0.34%)</title><rect x="13.0962%" y="757" width="0.3350%" height="15" fill="rgb(216,123,35)" fg:x="67783" fg:w="1734"/><text x="13.3462%" y="767.50"></text></g><g><title>Node::unique_ctrl_out (62 samples, 0.01%)</title><rect x="13.8028%" y="725" width="0.0120%" height="15" fill="rgb(212,68,40)" fg:x="71440" fg:w="62"/><text x="14.0528%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (79 samples, 0.02%)</title><rect x="13.8148%" y="725" width="0.0153%" height="15" fill="rgb(254,125,32)" fg:x="71502" fg:w="79"/><text x="14.0648%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (53 samples, 0.01%)</title><rect x="13.9572%" y="677" width="0.0102%" height="15" fill="rgb(253,97,22)" fg:x="72239" fg:w="53"/><text x="14.2072%" y="687.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (255 samples, 0.05%)</title><rect x="13.9425%" y="693" width="0.0493%" height="15" fill="rgb(241,101,14)" fg:x="72163" fg:w="255"/><text x="14.1925%" y="703.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (126 samples, 0.02%)</title><rect x="13.9674%" y="677" width="0.0243%" height="15" fill="rgb(238,103,29)" fg:x="72292" fg:w="126"/><text x="14.2174%" y="687.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (397 samples, 0.08%)</title><rect x="13.9216%" y="709" width="0.0767%" height="15" fill="rgb(233,195,47)" fg:x="72055" fg:w="397"/><text x="14.1716%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (149 samples, 0.03%)</title><rect x="13.9989%" y="709" width="0.0288%" height="15" fill="rgb(246,218,30)" fg:x="72455" fg:w="149"/><text x="14.2489%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_depth (736 samples, 0.14%)</title><rect x="14.5746%" y="693" width="0.1422%" height="15" fill="rgb(219,145,47)" fg:x="75435" fg:w="736"/><text x="14.8246%" y="703.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,550 samples, 0.69%)</title><rect x="14.0317%" y="709" width="0.6859%" height="15" fill="rgb(243,12,26)" fg:x="72625" fg:w="3550"/><text x="14.2817%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,615 samples, 0.89%)</title><rect x="13.8300%" y="725" width="0.8917%" height="15" fill="rgb(214,87,16)" fg:x="71581" fg:w="4615"/><text x="14.0800%" y="735.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,466 samples, 1.06%)</title><rect x="13.6814%" y="741" width="1.0561%" height="15" fill="rgb(208,99,42)" fg:x="70812" fg:w="5466"/><text x="13.9314%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (6,781 samples, 1.31%)</title><rect x="13.4312%" y="757" width="1.3101%" height="15" fill="rgb(253,99,2)" fg:x="69517" fg:w="6781"/><text x="13.6812%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (241 samples, 0.05%)</title><rect x="14.8660%" y="741" width="0.0466%" height="15" fill="rgb(220,168,23)" fg:x="76943" fg:w="241"/><text x="15.1160%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (897 samples, 0.17%)</title><rect x="14.7418%" y="757" width="0.1733%" height="15" fill="rgb(242,38,24)" fg:x="76300" fg:w="897"/><text x="14.9918%" y="767.50"></text></g><g><title>PhaseIdealLoop::do_split_if (115 samples, 0.02%)</title><rect x="15.0192%" y="741" width="0.0222%" height="15" fill="rgb(225,182,9)" fg:x="77736" fg:w="115"/><text x="15.2692%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (277 samples, 0.05%)</title><rect x="15.0426%" y="741" width="0.0535%" height="15" fill="rgb(243,178,37)" fg:x="77857" fg:w="277"/><text x="15.2926%" y="751.50"></text></g><g><title>ConstraintCastNode::dominating_cast (54 samples, 0.01%)</title><rect x="15.1181%" y="725" width="0.0104%" height="15" fill="rgb(232,139,19)" fg:x="78248" fg:w="54"/><text x="15.3681%" y="735.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (87 samples, 0.02%)</title><rect x="15.1440%" y="725" width="0.0168%" height="15" fill="rgb(225,201,24)" fg:x="78382" fg:w="87"/><text x="15.3940%" y="735.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (165 samples, 0.03%)</title><rect x="15.1610%" y="725" width="0.0319%" height="15" fill="rgb(221,47,46)" fg:x="78470" fg:w="165"/><text x="15.4110%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (64 samples, 0.01%)</title><rect x="15.2176%" y="709" width="0.0124%" height="15" fill="rgb(249,23,13)" fg:x="78763" fg:w="64"/><text x="15.4676%" y="719.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (218 samples, 0.04%)</title><rect x="15.1929%" y="725" width="0.0421%" height="15" fill="rgb(219,9,5)" fg:x="78635" fg:w="218"/><text x="15.4429%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (778 samples, 0.15%)</title><rect x="15.0961%" y="741" width="0.1503%" height="15" fill="rgb(254,171,16)" fg:x="78134" fg:w="778"/><text x="15.3461%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,661 samples, 0.32%)</title><rect x="14.9267%" y="757" width="0.3209%" height="15" fill="rgb(230,171,20)" fg:x="77257" fg:w="1661"/><text x="15.1767%" y="767.50"></text></g><g><title>LoadNode::Ideal (98 samples, 0.02%)</title><rect x="15.3328%" y="725" width="0.0189%" height="15" fill="rgb(210,71,41)" fg:x="79359" fg:w="98"/><text x="15.5828%" y="735.50"></text></g><g><title>NodeHash::hash_find_insert (115 samples, 0.02%)</title><rect x="15.3602%" y="725" width="0.0222%" height="15" fill="rgb(206,173,20)" fg:x="79501" fg:w="115"/><text x="15.6102%" y="735.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (61 samples, 0.01%)</title><rect x="15.3826%" y="725" width="0.0118%" height="15" fill="rgb(233,88,34)" fg:x="79617" fg:w="61"/><text x="15.6326%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (58 samples, 0.01%)</title><rect x="15.4045%" y="709" width="0.0112%" height="15" fill="rgb(223,209,46)" fg:x="79730" fg:w="58"/><text x="15.6545%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (121 samples, 0.02%)</title><rect x="15.3946%" y="725" width="0.0234%" height="15" fill="rgb(250,43,18)" fg:x="79679" fg:w="121"/><text x="15.6446%" y="735.50"></text></g><g><title>RegionNode::is_unreachable_region (111 samples, 0.02%)</title><rect x="15.4557%" y="709" width="0.0214%" height="15" fill="rgb(208,13,10)" fg:x="79995" fg:w="111"/><text x="15.7057%" y="719.50"></text></g><g><title>RegionNode::Ideal (219 samples, 0.04%)</title><rect x="15.4352%" y="725" width="0.0423%" height="15" fill="rgb(212,200,36)" fg:x="79889" fg:w="219"/><text x="15.6852%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (55 samples, 0.01%)</title><rect x="15.4819%" y="629" width="0.0106%" height="15" fill="rgb(225,90,30)" fg:x="80131" fg:w="55"/><text x="15.7319%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (59 samples, 0.01%)</title><rect x="15.4819%" y="645" width="0.0114%" height="15" fill="rgb(236,182,39)" fg:x="80131" fg:w="59"/><text x="15.7319%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (63 samples, 0.01%)</title><rect x="15.4819%" y="661" width="0.0122%" height="15" fill="rgb(212,144,35)" fg:x="80131" fg:w="63"/><text x="15.7319%" y="671.50"></text></g><g><title>InitializeNode::can_capture_store (69 samples, 0.01%)</title><rect x="15.4819%" y="709" width="0.0133%" height="15" fill="rgb(228,63,44)" fg:x="80131" fg:w="69"/><text x="15.7319%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.01%)</title><rect x="15.4819%" y="693" width="0.0133%" height="15" fill="rgb(228,109,6)" fg:x="80131" fg:w="69"/><text x="15.7319%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.01%)</title><rect x="15.4819%" y="677" width="0.0133%" height="15" fill="rgb(238,117,24)" fg:x="80131" fg:w="69"/><text x="15.7319%" y="687.50"></text></g><g><title>StoreNode::Ideal (77 samples, 0.01%)</title><rect x="15.4818%" y="725" width="0.0149%" height="15" fill="rgb(242,26,26)" fg:x="80130" fg:w="77"/><text x="15.7318%" y="735.50"></text></g><g><title>PhaseIterGVN::transform_old (1,279 samples, 0.25%)</title><rect x="15.2580%" y="741" width="0.2471%" height="15" fill="rgb(221,92,48)" fg:x="78972" fg:w="1279"/><text x="15.5080%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (1,344 samples, 0.26%)</title><rect x="15.2478%" y="757" width="0.2597%" height="15" fill="rgb(209,209,32)" fg:x="78919" fg:w="1344"/><text x="15.4978%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (14,331 samples, 2.77%)</title><rect x="12.7629%" y="773" width="2.7689%" height="15" fill="rgb(221,70,22)" fg:x="66058" fg:w="14331"/><text x="13.0129%" y="783.50">Ph..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (137 samples, 0.03%)</title><rect x="15.5318%" y="773" width="0.0265%" height="15" fill="rgb(248,145,5)" fg:x="80389" fg:w="137"/><text x="15.7818%" y="783.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (62 samples, 0.01%)</title><rect x="15.5463%" y="757" width="0.0120%" height="15" fill="rgb(226,116,26)" fg:x="80464" fg:w="62"/><text x="15.7963%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (90 samples, 0.02%)</title><rect x="15.6626%" y="709" width="0.0174%" height="15" fill="rgb(244,5,17)" fg:x="81066" fg:w="90"/><text x="15.9126%" y="719.50"></text></g><g><title>Unique_Node_List::remove (77 samples, 0.01%)</title><rect x="15.6651%" y="693" width="0.0149%" height="15" fill="rgb(252,159,33)" fg:x="81079" fg:w="77"/><text x="15.9151%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (98 samples, 0.02%)</title><rect x="15.6620%" y="725" width="0.0189%" height="15" fill="rgb(206,71,0)" fg:x="81063" fg:w="98"/><text x="15.9120%" y="735.50"></text></g><g><title>IfNode::Ideal (303 samples, 0.06%)</title><rect x="15.6400%" y="741" width="0.0585%" height="15" fill="rgb(233,118,54)" fg:x="80949" fg:w="303"/><text x="15.8900%" y="751.50"></text></g><g><title>split_if (70 samples, 0.01%)</title><rect x="15.6850%" y="725" width="0.0135%" height="15" fill="rgb(234,83,48)" fg:x="81182" fg:w="70"/><text x="15.9350%" y="735.50"></text></g><g><title>MemNode::Ideal_common (54 samples, 0.01%)</title><rect x="15.7126%" y="725" width="0.0104%" height="15" fill="rgb(228,3,54)" fg:x="81325" fg:w="54"/><text x="15.9626%" y="735.50"></text></g><g><title>MemNode::find_previous_store (80 samples, 0.02%)</title><rect x="15.7244%" y="725" width="0.0155%" height="15" fill="rgb(226,155,13)" fg:x="81386" fg:w="80"/><text x="15.9744%" y="735.50"></text></g><g><title>LoadNode::Ideal (194 samples, 0.04%)</title><rect x="15.7038%" y="741" width="0.0375%" height="15" fill="rgb(241,28,37)" fg:x="81279" fg:w="194"/><text x="15.9538%" y="751.50"></text></g><g><title>NodeHash::grow (58 samples, 0.01%)</title><rect x="15.8004%" y="725" width="0.0112%" height="15" fill="rgb(233,93,10)" fg:x="81779" fg:w="58"/><text x="16.0504%" y="735.50"></text></g><g><title>NodeHash::hash_find_insert (204 samples, 0.04%)</title><rect x="15.7731%" y="741" width="0.0394%" height="15" fill="rgb(225,113,19)" fg:x="81638" fg:w="204"/><text x="16.0231%" y="751.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (63 samples, 0.01%)</title><rect x="15.8127%" y="741" width="0.0122%" height="15" fill="rgb(241,2,18)" fg:x="81843" fg:w="63"/><text x="16.0627%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (92 samples, 0.02%)</title><rect x="15.8475%" y="725" width="0.0178%" height="15" fill="rgb(228,207,21)" fg:x="82023" fg:w="92"/><text x="16.0975%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (230 samples, 0.04%)</title><rect x="15.8249%" y="741" width="0.0444%" height="15" fill="rgb(213,211,35)" fg:x="81906" fg:w="230"/><text x="16.0749%" y="751.50"></text></g><g><title>PhiNode::Ideal (134 samples, 0.03%)</title><rect x="15.8697%" y="741" width="0.0259%" height="15" fill="rgb(209,83,10)" fg:x="82138" fg:w="134"/><text x="16.1197%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (111 samples, 0.02%)</title><rect x="15.9381%" y="709" width="0.0214%" height="15" fill="rgb(209,164,1)" fg:x="82492" fg:w="111"/><text x="16.1881%" y="719.50"></text></g><g><title>Unique_Node_List::remove (98 samples, 0.02%)</title><rect x="15.9406%" y="693" width="0.0189%" height="15" fill="rgb(213,184,43)" fg:x="82505" fg:w="98"/><text x="16.1906%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (135 samples, 0.03%)</title><rect x="15.9342%" y="725" width="0.0261%" height="15" fill="rgb(231,61,34)" fg:x="82472" fg:w="135"/><text x="16.1842%" y="735.50"></text></g><g><title>RegionNode::is_unreachable_region (91 samples, 0.02%)</title><rect x="15.9659%" y="725" width="0.0176%" height="15" fill="rgb(235,75,3)" fg:x="82636" fg:w="91"/><text x="16.2159%" y="735.50"></text></g><g><title>RegionNode::Ideal (347 samples, 0.07%)</title><rect x="15.9172%" y="741" width="0.0670%" height="15" fill="rgb(220,106,47)" fg:x="82384" fg:w="347"/><text x="16.1672%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (53 samples, 0.01%)</title><rect x="15.9858%" y="421" width="0.0102%" height="15" fill="rgb(210,196,33)" fg:x="82739" fg:w="53"/><text x="16.2358%" y="431.50"></text></g><g><title>InitializeNode::detect_init_independence (72 samples, 0.01%)</title><rect x="15.9858%" y="437" width="0.0139%" height="15" fill="rgb(229,154,42)" fg:x="82739" fg:w="72"/><text x="16.2358%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (93 samples, 0.02%)</title><rect x="15.9858%" y="453" width="0.0180%" height="15" fill="rgb(228,114,26)" fg:x="82739" fg:w="93"/><text x="16.2358%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (112 samples, 0.02%)</title><rect x="15.9858%" y="469" width="0.0216%" height="15" fill="rgb(208,144,1)" fg:x="82739" fg:w="112"/><text x="16.2358%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (129 samples, 0.02%)</title><rect x="15.9858%" y="485" width="0.0249%" height="15" fill="rgb(239,112,37)" fg:x="82739" fg:w="129"/><text x="16.2358%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (154 samples, 0.03%)</title><rect x="15.9858%" y="501" width="0.0298%" height="15" fill="rgb(210,96,50)" fg:x="82739" fg:w="154"/><text x="16.2358%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (176 samples, 0.03%)</title><rect x="15.9856%" y="517" width="0.0340%" height="15" fill="rgb(222,178,2)" fg:x="82738" fg:w="176"/><text x="16.2356%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (201 samples, 0.04%)</title><rect x="15.9856%" y="533" width="0.0388%" height="15" fill="rgb(226,74,18)" fg:x="82738" fg:w="201"/><text x="16.2356%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (220 samples, 0.04%)</title><rect x="15.9856%" y="549" width="0.0425%" height="15" fill="rgb(225,67,54)" fg:x="82738" fg:w="220"/><text x="16.2356%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (238 samples, 0.05%)</title><rect x="15.9856%" y="565" width="0.0460%" height="15" fill="rgb(251,92,32)" fg:x="82738" fg:w="238"/><text x="16.2356%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (264 samples, 0.05%)</title><rect x="15.9856%" y="581" width="0.0510%" height="15" fill="rgb(228,149,22)" fg:x="82738" fg:w="264"/><text x="16.2356%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (287 samples, 0.06%)</title><rect x="15.9856%" y="597" width="0.0555%" height="15" fill="rgb(243,54,13)" fg:x="82738" fg:w="287"/><text x="16.2356%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (311 samples, 0.06%)</title><rect x="15.9856%" y="613" width="0.0601%" height="15" fill="rgb(243,180,28)" fg:x="82738" fg:w="311"/><text x="16.2356%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (333 samples, 0.06%)</title><rect x="15.9856%" y="629" width="0.0643%" height="15" fill="rgb(208,167,24)" fg:x="82738" fg:w="333"/><text x="16.2356%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (355 samples, 0.07%)</title><rect x="15.9856%" y="645" width="0.0686%" height="15" fill="rgb(245,73,45)" fg:x="82738" fg:w="355"/><text x="16.2356%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (376 samples, 0.07%)</title><rect x="15.9854%" y="661" width="0.0726%" height="15" fill="rgb(237,203,48)" fg:x="82737" fg:w="376"/><text x="16.2354%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (416 samples, 0.08%)</title><rect x="15.9854%" y="677" width="0.0804%" height="15" fill="rgb(211,197,16)" fg:x="82737" fg:w="416"/><text x="16.2354%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (448 samples, 0.09%)</title><rect x="15.9853%" y="725" width="0.0866%" height="15" fill="rgb(243,99,51)" fg:x="82736" fg:w="448"/><text x="16.2353%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (447 samples, 0.09%)</title><rect x="15.9854%" y="709" width="0.0864%" height="15" fill="rgb(215,123,29)" fg:x="82737" fg:w="447"/><text x="16.2354%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (447 samples, 0.09%)</title><rect x="15.9854%" y="693" width="0.0864%" height="15" fill="rgb(239,186,37)" fg:x="82737" fg:w="447"/><text x="16.2354%" y="703.50"></text></g><g><title>StoreNode::Ideal (474 samples, 0.09%)</title><rect x="15.9853%" y="741" width="0.0916%" height="15" fill="rgb(252,136,39)" fg:x="82736" fg:w="474"/><text x="16.2353%" y="751.50"></text></g><g><title>PhaseIterGVN::transform_old (2,657 samples, 0.51%)</title><rect x="15.5753%" y="757" width="0.5134%" height="15" fill="rgb(223,213,32)" fg:x="80614" fg:w="2657"/><text x="15.8253%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (2,762 samples, 0.53%)</title><rect x="15.5583%" y="773" width="0.5336%" height="15" fill="rgb(233,115,5)" fg:x="80526" fg:w="2762"/><text x="15.8083%" y="783.50"></text></g><g><title>PhaseIterGVN::transform_old (253 samples, 0.05%)</title><rect x="16.1047%" y="741" width="0.0489%" height="15" fill="rgb(207,226,44)" fg:x="83354" fg:w="253"/><text x="16.3547%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (272 samples, 0.05%)</title><rect x="16.1025%" y="757" width="0.0526%" height="15" fill="rgb(208,126,0)" fg:x="83343" fg:w="272"/><text x="16.3525%" y="767.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (75 samples, 0.01%)</title><rect x="16.1562%" y="757" width="0.0145%" height="15" fill="rgb(244,66,21)" fg:x="83621" fg:w="75"/><text x="16.4062%" y="767.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (397 samples, 0.08%)</title><rect x="16.1016%" y="773" width="0.0767%" height="15" fill="rgb(222,97,12)" fg:x="83338" fg:w="397"/><text x="16.3516%" y="783.50"></text></g><g><title>Compile::identify_useful_nodes (73 samples, 0.01%)</title><rect x="16.1839%" y="741" width="0.0141%" height="15" fill="rgb(219,213,19)" fg:x="83764" fg:w="73"/><text x="16.4339%" y="751.50"></text></g><g><title>Compile::remove_useless_nodes (52 samples, 0.01%)</title><rect x="16.1980%" y="741" width="0.0100%" height="15" fill="rgb(252,169,30)" fg:x="83837" fg:w="52"/><text x="16.4480%" y="751.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (153 samples, 0.03%)</title><rect x="16.1810%" y="757" width="0.0296%" height="15" fill="rgb(206,32,51)" fg:x="83749" fg:w="153"/><text x="16.4310%" y="767.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (168 samples, 0.03%)</title><rect x="16.1783%" y="773" width="0.0325%" height="15" fill="rgb(250,172,42)" fg:x="83735" fg:w="168"/><text x="16.4283%" y="783.50"></text></g><g><title>Compile::Optimize (20,054 samples, 3.87%)</title><rect x="12.3379%" y="789" width="3.8746%" height="15" fill="rgb(209,34,43)" fg:x="63858" fg:w="20054"/><text x="12.5879%" y="799.50">Comp..</text></g><g><title>Parse::do_call (53 samples, 0.01%)</title><rect x="16.2262%" y="645" width="0.0102%" height="15" fill="rgb(223,11,35)" fg:x="83983" fg:w="53"/><text x="16.4762%" y="655.50"></text></g><g><title>Parse::do_one_block (201 samples, 0.04%)</title><rect x="16.2179%" y="677" width="0.0388%" height="15" fill="rgb(251,219,26)" fg:x="83940" fg:w="201"/><text x="16.4679%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (187 samples, 0.04%)</title><rect x="16.2206%" y="661" width="0.0361%" height="15" fill="rgb(231,119,3)" fg:x="83954" fg:w="187"/><text x="16.4706%" y="671.50"></text></g><g><title>Parse::do_all_blocks (205 samples, 0.04%)</title><rect x="16.2177%" y="693" width="0.0396%" height="15" fill="rgb(216,97,11)" fg:x="83939" fg:w="205"/><text x="16.4677%" y="703.50"></text></g><g><title>ParseGenerator::generate (213 samples, 0.04%)</title><rect x="16.2177%" y="725" width="0.0412%" height="15" fill="rgb(223,59,9)" fg:x="83939" fg:w="213"/><text x="16.4677%" y="735.50"></text></g><g><title>Parse::Parse (213 samples, 0.04%)</title><rect x="16.2177%" y="709" width="0.0412%" height="15" fill="rgb(233,93,31)" fg:x="83939" fg:w="213"/><text x="16.4677%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (251 samples, 0.05%)</title><rect x="16.2132%" y="789" width="0.0485%" height="15" fill="rgb(239,81,33)" fg:x="83916" fg:w="251"/><text x="16.4632%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (251 samples, 0.05%)</title><rect x="16.2132%" y="773" width="0.0485%" height="15" fill="rgb(213,120,34)" fg:x="83916" fg:w="251"/><text x="16.4632%" y="783.50"></text></g><g><title>C2Compiler::compile_method (251 samples, 0.05%)</title><rect x="16.2132%" y="757" width="0.0485%" height="15" fill="rgb(243,49,53)" fg:x="83916" fg:w="251"/><text x="16.4632%" y="767.50"></text></g><g><title>Compile::Compile (251 samples, 0.05%)</title><rect x="16.2132%" y="741" width="0.0485%" height="15" fill="rgb(247,216,33)" fg:x="83916" fg:w="251"/><text x="16.4632%" y="751.50"></text></g><g><title>ciTypeFlow::df_flow_types (73 samples, 0.01%)</title><rect x="16.2617%" y="661" width="0.0141%" height="15" fill="rgb(226,26,14)" fg:x="84167" fg:w="73"/><text x="16.5117%" y="671.50"></text></g><g><title>ciTypeFlow::flow_block (73 samples, 0.01%)</title><rect x="16.2617%" y="645" width="0.0141%" height="15" fill="rgb(215,49,53)" fg:x="84167" fg:w="73"/><text x="16.5117%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (73 samples, 0.01%)</title><rect x="16.2617%" y="629" width="0.0141%" height="15" fill="rgb(245,162,40)" fg:x="84167" fg:w="73"/><text x="16.5117%" y="639.50"></text></g><g><title>CallGenerator::for_inline (74 samples, 0.01%)</title><rect x="16.2617%" y="741" width="0.0143%" height="15" fill="rgb(229,68,17)" fg:x="84167" fg:w="74"/><text x="16.5117%" y="751.50"></text></g><g><title>InlineTree::check_can_parse (74 samples, 0.01%)</title><rect x="16.2617%" y="725" width="0.0143%" height="15" fill="rgb(213,182,10)" fg:x="84167" fg:w="74"/><text x="16.5117%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (74 samples, 0.01%)</title><rect x="16.2617%" y="709" width="0.0143%" height="15" fill="rgb(245,125,30)" fg:x="84167" fg:w="74"/><text x="16.5117%" y="719.50"></text></g><g><title>ciTypeFlow::do_flow (74 samples, 0.01%)</title><rect x="16.2617%" y="693" width="0.0143%" height="15" fill="rgb(232,202,2)" fg:x="84167" fg:w="74"/><text x="16.5117%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (74 samples, 0.01%)</title><rect x="16.2617%" y="677" width="0.0143%" height="15" fill="rgb(237,140,51)" fg:x="84167" fg:w="74"/><text x="16.5117%" y="687.50"></text></g><g><title>Compile::call_generator (71 samples, 0.01%)</title><rect x="16.2867%" y="645" width="0.0137%" height="15" fill="rgb(236,157,25)" fg:x="84296" fg:w="71"/><text x="16.5367%" y="655.50"></text></g><g><title>Parse::do_one_block (129 samples, 0.02%)</title><rect x="16.3226%" y="597" width="0.0249%" height="15" fill="rgb(219,209,0)" fg:x="84482" fg:w="129"/><text x="16.5726%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (122 samples, 0.02%)</title><rect x="16.3239%" y="581" width="0.0236%" height="15" fill="rgb(240,116,54)" fg:x="84489" fg:w="122"/><text x="16.5739%" y="591.50"></text></g><g><title>Parse::do_all_blocks (137 samples, 0.03%)</title><rect x="16.3226%" y="613" width="0.0265%" height="15" fill="rgb(216,10,36)" fg:x="84482" fg:w="137"/><text x="16.5726%" y="623.50"></text></g><g><title>Parse::Parse (230 samples, 0.04%)</title><rect x="16.3124%" y="629" width="0.0444%" height="15" fill="rgb(222,72,44)" fg:x="84429" fg:w="230"/><text x="16.5624%" y="639.50"></text></g><g><title>ParseGenerator::generate (231 samples, 0.04%)</title><rect x="16.3124%" y="645" width="0.0446%" height="15" fill="rgb(232,159,9)" fg:x="84429" fg:w="231"/><text x="16.5624%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (75 samples, 0.01%)</title><rect x="16.3570%" y="645" width="0.0145%" height="15" fill="rgb(210,39,32)" fg:x="84660" fg:w="75"/><text x="16.6070%" y="655.50"></text></g><g><title>Parse::do_call (464 samples, 0.09%)</title><rect x="16.2867%" y="661" width="0.0896%" height="15" fill="rgb(216,194,45)" fg:x="84296" fg:w="464"/><text x="16.5367%" y="671.50"></text></g><g><title>Parse::do_field_access (94 samples, 0.02%)</title><rect x="16.3798%" y="661" width="0.0182%" height="15" fill="rgb(218,18,35)" fg:x="84778" fg:w="94"/><text x="16.6298%" y="671.50"></text></g><g><title>Parse::do_all_blocks (668 samples, 0.13%)</title><rect x="16.2776%" y="709" width="0.1291%" height="15" fill="rgb(207,83,51)" fg:x="84249" fg:w="668"/><text x="16.5276%" y="719.50"></text></g><g><title>Parse::do_one_block (668 samples, 0.13%)</title><rect x="16.2776%" y="693" width="0.1291%" height="15" fill="rgb(225,63,43)" fg:x="84249" fg:w="668"/><text x="16.5276%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (663 samples, 0.13%)</title><rect x="16.2785%" y="677" width="0.1281%" height="15" fill="rgb(207,57,36)" fg:x="84254" fg:w="663"/><text x="16.5285%" y="687.50"></text></g><g><title>ParseGenerator::generate (684 samples, 0.13%)</title><rect x="16.2776%" y="741" width="0.1322%" height="15" fill="rgb(216,99,33)" fg:x="84249" fg:w="684"/><text x="16.5276%" y="751.50"></text></g><g><title>Parse::Parse (684 samples, 0.13%)</title><rect x="16.2776%" y="725" width="0.1322%" height="15" fill="rgb(225,42,16)" fg:x="84249" fg:w="684"/><text x="16.5276%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (790 samples, 0.15%)</title><rect x="16.2617%" y="789" width="0.1526%" height="15" fill="rgb(220,201,45)" fg:x="84167" fg:w="790"/><text x="16.5117%" y="799.50"></text></g><g><title>C2Compiler::compile_method (790 samples, 0.15%)</title><rect x="16.2617%" y="773" width="0.1526%" height="15" fill="rgb(225,33,4)" fg:x="84167" fg:w="790"/><text x="16.5117%" y="783.50"></text></g><g><title>Compile::Compile (790 samples, 0.15%)</title><rect x="16.2617%" y="757" width="0.1526%" height="15" fill="rgb(224,33,50)" fg:x="84167" fg:w="790"/><text x="16.5117%" y="767.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="16.4291%" y="661" width="0.0102%" height="15" fill="rgb(246,198,51)" fg:x="85033" fg:w="53"/><text x="16.6791%" y="671.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="16.4287%" y="677" width="0.0112%" height="15" fill="rgb(205,22,4)" fg:x="85031" fg:w="58"/><text x="16.6787%" y="687.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.01%)</title><rect x="16.4287%" y="709" width="0.0133%" height="15" fill="rgb(206,3,8)" fg:x="85031" fg:w="69"/><text x="16.6787%" y="719.50"></text></g><g><title>Parse::Parse (69 samples, 0.01%)</title><rect x="16.4287%" y="693" width="0.0133%" height="15" fill="rgb(251,23,15)" fg:x="85031" fg:w="69"/><text x="16.6787%" y="703.50"></text></g><g><title>JavaThread::thread_main_inner (88 samples, 0.02%)</title><rect x="16.4263%" y="789" width="0.0170%" height="15" fill="rgb(252,88,28)" fg:x="85019" fg:w="88"/><text x="16.6763%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (88 samples, 0.02%)</title><rect x="16.4263%" y="773" width="0.0170%" height="15" fill="rgb(212,127,14)" fg:x="85019" fg:w="88"/><text x="16.6763%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (88 samples, 0.02%)</title><rect x="16.4263%" y="757" width="0.0170%" height="15" fill="rgb(247,145,37)" fg:x="85019" fg:w="88"/><text x="16.6763%" y="767.50"></text></g><g><title>C2Compiler::compile_method (88 samples, 0.02%)</title><rect x="16.4263%" y="741" width="0.0170%" height="15" fill="rgb(209,117,53)" fg:x="85019" fg:w="88"/><text x="16.6763%" y="751.50"></text></g><g><title>Compile::Compile (88 samples, 0.02%)</title><rect x="16.4263%" y="725" width="0.0170%" height="15" fill="rgb(212,90,42)" fg:x="85019" fg:w="88"/><text x="16.6763%" y="735.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="16.4534%" y="789" width="0.0106%" height="15" fill="rgb(218,164,37)" fg:x="85159" fg:w="55"/><text x="16.7034%" y="799.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="16.4534%" y="773" width="0.0106%" height="15" fill="rgb(246,65,34)" fg:x="85159" fg:w="55"/><text x="16.7034%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="16.4534%" y="757" width="0.0106%" height="15" fill="rgb(231,100,33)" fg:x="85159" fg:w="55"/><text x="16.7034%" y="767.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="16.4534%" y="741" width="0.0106%" height="15" fill="rgb(228,126,14)" fg:x="85159" fg:w="55"/><text x="16.7034%" y="751.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.01%)</title><rect x="16.4640%" y="485" width="0.0100%" height="15" fill="rgb(215,173,21)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="495.50"></text></g><g><title>Parse::Parse (52 samples, 0.01%)</title><rect x="16.4640%" y="469" width="0.0100%" height="15" fill="rgb(210,6,40)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="479.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="16.4640%" y="453" width="0.0100%" height="15" fill="rgb(212,48,18)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="463.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.01%)</title><rect x="16.4640%" y="437" width="0.0100%" height="15" fill="rgb(230,214,11)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="16.4640%" y="421" width="0.0100%" height="15" fill="rgb(254,105,39)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="431.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="16.4640%" y="405" width="0.0100%" height="15" fill="rgb(245,158,5)" fg:x="85214" fg:w="52"/><text x="16.7140%" y="415.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.01%)</title><rect x="16.4640%" y="581" width="0.0108%" height="15" fill="rgb(249,208,11)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="591.50"></text></g><g><title>Parse::Parse (56 samples, 0.01%)</title><rect x="16.4640%" y="565" width="0.0108%" height="15" fill="rgb(210,39,28)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="575.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.01%)</title><rect x="16.4640%" y="549" width="0.0108%" height="15" fill="rgb(211,56,53)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="559.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="16.4640%" y="533" width="0.0108%" height="15" fill="rgb(226,201,30)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (56 samples, 0.01%)</title><rect x="16.4640%" y="517" width="0.0108%" height="15" fill="rgb(239,101,34)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="527.50"></text></g><g><title>Parse::do_call (56 samples, 0.01%)</title><rect x="16.4640%" y="501" width="0.0108%" height="15" fill="rgb(226,209,5)" fg:x="85214" fg:w="56"/><text x="16.7140%" y="511.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.01%)</title><rect x="16.4640%" y="677" width="0.0137%" height="15" fill="rgb(250,105,47)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="687.50"></text></g><g><title>Parse::Parse (71 samples, 0.01%)</title><rect x="16.4640%" y="661" width="0.0137%" height="15" fill="rgb(230,72,3)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="671.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.01%)</title><rect x="16.4640%" y="645" width="0.0137%" height="15" fill="rgb(232,218,39)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="655.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.01%)</title><rect x="16.4640%" y="629" width="0.0137%" height="15" fill="rgb(248,166,6)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (71 samples, 0.01%)</title><rect x="16.4640%" y="613" width="0.0137%" height="15" fill="rgb(247,89,20)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="623.50"></text></g><g><title>Parse::do_call (71 samples, 0.01%)</title><rect x="16.4640%" y="597" width="0.0137%" height="15" fill="rgb(248,130,54)" fg:x="85214" fg:w="71"/><text x="16.7140%" y="607.50"></text></g><g><title>ParseGenerator::generate (80 samples, 0.02%)</title><rect x="16.4640%" y="773" width="0.0155%" height="15" fill="rgb(234,196,4)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="783.50"></text></g><g><title>Parse::Parse (80 samples, 0.02%)</title><rect x="16.4640%" y="757" width="0.0155%" height="15" fill="rgb(250,143,31)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="767.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.02%)</title><rect x="16.4640%" y="741" width="0.0155%" height="15" fill="rgb(211,110,34)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="751.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.02%)</title><rect x="16.4640%" y="725" width="0.0155%" height="15" fill="rgb(215,124,48)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.02%)</title><rect x="16.4640%" y="709" width="0.0155%" height="15" fill="rgb(216,46,13)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="719.50"></text></g><g><title>Parse::do_call (80 samples, 0.02%)</title><rect x="16.4640%" y="693" width="0.0155%" height="15" fill="rgb(205,184,25)" fg:x="85214" fg:w="80"/><text x="16.7140%" y="703.50"></text></g><g><title>Parse::do_call (103 samples, 0.02%)</title><rect x="16.4640%" y="789" width="0.0199%" height="15" fill="rgb(228,1,10)" fg:x="85214" fg:w="103"/><text x="16.7140%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.01%)</title><rect x="16.4938%" y="789" width="0.0122%" height="15" fill="rgb(213,116,27)" fg:x="85368" fg:w="63"/><text x="16.7438%" y="799.50"></text></g><g><title>Parse::do_call (63 samples, 0.01%)</title><rect x="16.4938%" y="773" width="0.0122%" height="15" fill="rgb(241,95,50)" fg:x="85368" fg:w="63"/><text x="16.7438%" y="783.50"></text></g><g><title>ParseGenerator::generate (78 samples, 0.02%)</title><rect x="16.5087%" y="117" width="0.0151%" height="15" fill="rgb(238,48,32)" fg:x="85445" fg:w="78"/><text x="16.7587%" y="127.50"></text></g><g><title>Parse::Parse (78 samples, 0.02%)</title><rect x="16.5087%" y="101" width="0.0151%" height="15" fill="rgb(235,113,49)" fg:x="85445" fg:w="78"/><text x="16.7587%" y="111.50"></text></g><g><title>Parse::do_all_blocks (77 samples, 0.01%)</title><rect x="16.5088%" y="85" width="0.0149%" height="15" fill="rgb(205,127,43)" fg:x="85446" fg:w="77"/><text x="16.7588%" y="95.50"></text></g><g><title>Parse::do_one_block (77 samples, 0.01%)</title><rect x="16.5088%" y="69" width="0.0149%" height="15" fill="rgb(250,162,2)" fg:x="85446" fg:w="77"/><text x="16.7588%" y="79.50"></text></g><g><title>Parse::do_one_bytecode (76 samples, 0.01%)</title><rect x="16.5090%" y="53" width="0.0147%" height="15" fill="rgb(220,13,41)" fg:x="85447" fg:w="76"/><text x="16.7590%" y="63.50"></text></g><g><title>Parse::do_call (90 samples, 0.02%)</title><rect x="16.5071%" y="133" width="0.0174%" height="15" fill="rgb(249,221,25)" fg:x="85437" fg:w="90"/><text x="16.7571%" y="143.50"></text></g><g><title>ParseGenerator::generate (93 samples, 0.02%)</title><rect x="16.5071%" y="213" width="0.0180%" height="15" fill="rgb(215,208,19)" fg:x="85437" fg:w="93"/><text x="16.7571%" y="223.50"></text></g><g><title>Parse::Parse (93 samples, 0.02%)</title><rect x="16.5071%" y="197" width="0.0180%" height="15" fill="rgb(236,175,2)" fg:x="85437" fg:w="93"/><text x="16.7571%" y="207.50"></text></g><g><title>Parse::do_all_blocks (93 samples, 0.02%)</title><rect x="16.5071%" y="181" width="0.0180%" height="15" fill="rgb(241,52,2)" fg:x="85437" fg:w="93"/><text x="16.7571%" y="191.50"></text></g><g><title>Parse::do_one_block (93 samples, 0.02%)</title><rect x="16.5071%" y="165" width="0.0180%" height="15" fill="rgb(248,140,14)" fg:x="85437" fg:w="93"/><text x="16.7571%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.02%)</title><rect x="16.5071%" y="149" width="0.0180%" height="15" fill="rgb(253,22,42)" fg:x="85437" fg:w="93"/><text x="16.7571%" y="159.50"></text></g><g><title>Parse::do_all_blocks (106 samples, 0.02%)</title><rect x="16.5059%" y="277" width="0.0205%" height="15" fill="rgb(234,61,47)" fg:x="85431" fg:w="106"/><text x="16.7559%" y="287.50"></text></g><g><title>Parse::do_one_block (106 samples, 0.02%)</title><rect x="16.5059%" y="261" width="0.0205%" height="15" fill="rgb(208,226,15)" fg:x="85431" fg:w="106"/><text x="16.7559%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (106 samples, 0.02%)</title><rect x="16.5059%" y="245" width="0.0205%" height="15" fill="rgb(217,221,4)" fg:x="85431" fg:w="106"/><text x="16.7559%" y="255.50"></text></g><g><title>Parse::do_call (106 samples, 0.02%)</title><rect x="16.5059%" y="229" width="0.0205%" height="15" fill="rgb(212,174,34)" fg:x="85431" fg:w="106"/><text x="16.7559%" y="239.50"></text></g><g><title>ParseGenerator::generate (107 samples, 0.02%)</title><rect x="16.5059%" y="309" width="0.0207%" height="15" fill="rgb(253,83,4)" fg:x="85431" fg:w="107"/><text x="16.7559%" y="319.50"></text></g><g><title>Parse::Parse (107 samples, 0.02%)</title><rect x="16.5059%" y="293" width="0.0207%" height="15" fill="rgb(250,195,49)" fg:x="85431" fg:w="107"/><text x="16.7559%" y="303.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.02%)</title><rect x="16.5059%" y="405" width="0.0232%" height="15" fill="rgb(241,192,25)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="415.50"></text></g><g><title>Parse::Parse (120 samples, 0.02%)</title><rect x="16.5059%" y="389" width="0.0232%" height="15" fill="rgb(208,124,10)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="399.50"></text></g><g><title>Parse::do_all_blocks (120 samples, 0.02%)</title><rect x="16.5059%" y="373" width="0.0232%" height="15" fill="rgb(222,33,0)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="383.50"></text></g><g><title>Parse::do_one_block (120 samples, 0.02%)</title><rect x="16.5059%" y="357" width="0.0232%" height="15" fill="rgb(234,209,28)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (120 samples, 0.02%)</title><rect x="16.5059%" y="341" width="0.0232%" height="15" fill="rgb(224,11,23)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="351.50"></text></g><g><title>Parse::do_call (120 samples, 0.02%)</title><rect x="16.5059%" y="325" width="0.0232%" height="15" fill="rgb(232,99,1)" fg:x="85431" fg:w="120"/><text x="16.7559%" y="335.50"></text></g><g><title>ParseGenerator::generate (138 samples, 0.03%)</title><rect x="16.5059%" y="501" width="0.0267%" height="15" fill="rgb(237,95,45)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="511.50"></text></g><g><title>Parse::Parse (138 samples, 0.03%)</title><rect x="16.5059%" y="485" width="0.0267%" height="15" fill="rgb(208,109,11)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="495.50"></text></g><g><title>Parse::do_all_blocks (138 samples, 0.03%)</title><rect x="16.5059%" y="469" width="0.0267%" height="15" fill="rgb(216,190,48)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="479.50"></text></g><g><title>Parse::do_one_block (138 samples, 0.03%)</title><rect x="16.5059%" y="453" width="0.0267%" height="15" fill="rgb(251,171,36)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (138 samples, 0.03%)</title><rect x="16.5059%" y="437" width="0.0267%" height="15" fill="rgb(230,62,22)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="447.50"></text></g><g><title>Parse::do_call (138 samples, 0.03%)</title><rect x="16.5059%" y="421" width="0.0267%" height="15" fill="rgb(225,114,35)" fg:x="85431" fg:w="138"/><text x="16.7559%" y="431.50"></text></g><g><title>ParseGenerator::generate (156 samples, 0.03%)</title><rect x="16.5059%" y="597" width="0.0301%" height="15" fill="rgb(215,118,42)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="607.50"></text></g><g><title>Parse::Parse (156 samples, 0.03%)</title><rect x="16.5059%" y="581" width="0.0301%" height="15" fill="rgb(243,119,21)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="591.50"></text></g><g><title>Parse::do_all_blocks (156 samples, 0.03%)</title><rect x="16.5059%" y="565" width="0.0301%" height="15" fill="rgb(252,177,53)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="575.50"></text></g><g><title>Parse::do_one_block (156 samples, 0.03%)</title><rect x="16.5059%" y="549" width="0.0301%" height="15" fill="rgb(237,209,29)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.03%)</title><rect x="16.5059%" y="533" width="0.0301%" height="15" fill="rgb(212,65,23)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="543.50"></text></g><g><title>Parse::do_call (156 samples, 0.03%)</title><rect x="16.5059%" y="517" width="0.0301%" height="15" fill="rgb(230,222,46)" fg:x="85431" fg:w="156"/><text x="16.7559%" y="527.50"></text></g><g><title>ParseGenerator::generate (195 samples, 0.04%)</title><rect x="16.5059%" y="693" width="0.0377%" height="15" fill="rgb(215,135,32)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="703.50"></text></g><g><title>Parse::Parse (195 samples, 0.04%)</title><rect x="16.5059%" y="677" width="0.0377%" height="15" fill="rgb(246,101,22)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="687.50"></text></g><g><title>Parse::do_all_blocks (195 samples, 0.04%)</title><rect x="16.5059%" y="661" width="0.0377%" height="15" fill="rgb(206,107,13)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="671.50"></text></g><g><title>Parse::do_one_block (195 samples, 0.04%)</title><rect x="16.5059%" y="645" width="0.0377%" height="15" fill="rgb(250,100,44)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (195 samples, 0.04%)</title><rect x="16.5059%" y="629" width="0.0377%" height="15" fill="rgb(231,147,38)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="639.50"></text></g><g><title>Parse::do_call (195 samples, 0.04%)</title><rect x="16.5059%" y="613" width="0.0377%" height="15" fill="rgb(229,8,40)" fg:x="85431" fg:w="195"/><text x="16.7559%" y="623.50"></text></g><g><title>ParseGenerator::generate (232 samples, 0.04%)</title><rect x="16.5059%" y="789" width="0.0448%" height="15" fill="rgb(221,135,30)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="799.50"></text></g><g><title>Parse::Parse (232 samples, 0.04%)</title><rect x="16.5059%" y="773" width="0.0448%" height="15" fill="rgb(249,193,18)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="783.50"></text></g><g><title>Parse::do_all_blocks (232 samples, 0.04%)</title><rect x="16.5059%" y="757" width="0.0448%" height="15" fill="rgb(209,133,39)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="767.50"></text></g><g><title>Parse::do_one_block (232 samples, 0.04%)</title><rect x="16.5059%" y="741" width="0.0448%" height="15" fill="rgb(232,100,14)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (232 samples, 0.04%)</title><rect x="16.5059%" y="725" width="0.0448%" height="15" fill="rgb(224,185,1)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="735.50"></text></g><g><title>Parse::do_call (232 samples, 0.04%)</title><rect x="16.5059%" y="709" width="0.0448%" height="15" fill="rgb(223,139,8)" fg:x="85431" fg:w="232"/><text x="16.7559%" y="719.50"></text></g><g><title>Thread::call_run (69 samples, 0.01%)</title><rect x="16.5641%" y="789" width="0.0133%" height="15" fill="rgb(232,213,38)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (69 samples, 0.01%)</title><rect x="16.5641%" y="773" width="0.0133%" height="15" fill="rgb(207,94,22)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (69 samples, 0.01%)</title><rect x="16.5641%" y="757" width="0.0133%" height="15" fill="rgb(219,183,54)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (69 samples, 0.01%)</title><rect x="16.5641%" y="741" width="0.0133%" height="15" fill="rgb(216,185,54)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="751.50"></text></g><g><title>C2Compiler::compile_method (69 samples, 0.01%)</title><rect x="16.5641%" y="725" width="0.0133%" height="15" fill="rgb(254,217,39)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="735.50"></text></g><g><title>Compile::Compile (69 samples, 0.01%)</title><rect x="16.5641%" y="709" width="0.0133%" height="15" fill="rgb(240,178,23)" fg:x="85732" fg:w="69"/><text x="16.8141%" y="719.50"></text></g><g><title>_dl_update_slotinfo (56 samples, 0.01%)</title><rect x="16.5825%" y="789" width="0.0108%" height="15" fill="rgb(218,11,47)" fg:x="85827" fg:w="56"/><text x="16.8325%" y="799.50"></text></g><g><title>start_thread (89 samples, 0.02%)</title><rect x="16.5964%" y="789" width="0.0172%" height="15" fill="rgb(218,51,51)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="799.50"></text></g><g><title>thread_native_entry (89 samples, 0.02%)</title><rect x="16.5964%" y="773" width="0.0172%" height="15" fill="rgb(238,126,27)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="783.50"></text></g><g><title>Thread::call_run (89 samples, 0.02%)</title><rect x="16.5964%" y="757" width="0.0172%" height="15" fill="rgb(249,202,22)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (89 samples, 0.02%)</title><rect x="16.5964%" y="741" width="0.0172%" height="15" fill="rgb(254,195,49)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (89 samples, 0.02%)</title><rect x="16.5964%" y="725" width="0.0172%" height="15" fill="rgb(208,123,14)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (89 samples, 0.02%)</title><rect x="16.5964%" y="709" width="0.0172%" height="15" fill="rgb(224,200,8)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="719.50"></text></g><g><title>C2Compiler::compile_method (89 samples, 0.02%)</title><rect x="16.5964%" y="693" width="0.0172%" height="15" fill="rgb(217,61,36)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="703.50"></text></g><g><title>Compile::Compile (89 samples, 0.02%)</title><rect x="16.5964%" y="677" width="0.0172%" height="15" fill="rgb(206,35,45)" fg:x="85899" fg:w="89"/><text x="16.8464%" y="687.50"></text></g><g><title>[unknown] (69,004 samples, 13.33%)</title><rect x="3.2851%" y="805" width="13.3321%" height="15" fill="rgb(217,65,33)" fg:x="17003" fg:w="69004"/><text x="3.5351%" y="815.50">[unknown]</text></g><g><title>Dict::Insert (65 samples, 0.01%)</title><rect x="16.6441%" y="629" width="0.0126%" height="15" fill="rgb(222,158,48)" fg:x="86146" fg:w="65"/><text x="16.8941%" y="639.50"></text></g><g><title>Type::Initialize (76 samples, 0.01%)</title><rect x="16.6439%" y="645" width="0.0147%" height="15" fill="rgb(254,2,54)" fg:x="86145" fg:w="76"/><text x="16.8939%" y="655.50"></text></g><g><title>CompileWrapper::CompileWrapper (80 samples, 0.02%)</title><rect x="16.6433%" y="661" width="0.0155%" height="15" fill="rgb(250,143,38)" fg:x="86142" fg:w="80"/><text x="16.8933%" y="671.50"></text></g><g><title>Compile::identify_useful_nodes (182 samples, 0.04%)</title><rect x="16.6679%" y="645" width="0.0352%" height="15" fill="rgb(248,25,0)" fg:x="86269" fg:w="182"/><text x="16.9179%" y="655.50"></text></g><g><title>Compile::remove_useless_nodes (200 samples, 0.04%)</title><rect x="16.7030%" y="645" width="0.0386%" height="15" fill="rgb(206,152,27)" fg:x="86451" fg:w="200"/><text x="16.9530%" y="655.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (472 samples, 0.09%)</title><rect x="16.6599%" y="661" width="0.0912%" height="15" fill="rgb(240,77,30)" fg:x="86228" fg:w="472"/><text x="16.9099%" y="671.50"></text></g><g><title>C2Compiler::compile_method (696 samples, 0.13%)</title><rect x="16.6259%" y="693" width="0.1345%" height="15" fill="rgb(231,5,3)" fg:x="86052" fg:w="696"/><text x="16.8759%" y="703.50"></text></g><g><title>Compile::Compile (688 samples, 0.13%)</title><rect x="16.6275%" y="677" width="0.1329%" height="15" fill="rgb(207,226,32)" fg:x="86060" fg:w="688"/><text x="16.8775%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (841 samples, 0.16%)</title><rect x="16.6254%" y="709" width="0.1625%" height="15" fill="rgb(222,207,47)" fg:x="86049" fg:w="841"/><text x="16.8754%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (108 samples, 0.02%)</title><rect x="16.8106%" y="453" width="0.0209%" height="15" fill="rgb(229,115,45)" fg:x="87008" fg:w="108"/><text x="17.0606%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (107 samples, 0.02%)</title><rect x="16.8108%" y="437" width="0.0207%" height="15" fill="rgb(224,191,6)" fg:x="87009" fg:w="107"/><text x="17.0608%" y="447.50"></text></g><g><title>native_write_msr (107 samples, 0.02%)</title><rect x="16.8108%" y="421" width="0.0207%" height="15" fill="rgb(230,227,24)" fg:x="87009" fg:w="107"/><text x="17.0608%" y="431.50"></text></g><g><title>finish_task_switch (117 samples, 0.02%)</title><rect x="16.8097%" y="469" width="0.0226%" height="15" fill="rgb(228,80,19)" fg:x="87003" fg:w="117"/><text x="17.0597%" y="479.50"></text></g><g><title>futex_wait_queue_me (165 samples, 0.03%)</title><rect x="16.8035%" y="517" width="0.0319%" height="15" fill="rgb(247,229,0)" fg:x="86971" fg:w="165"/><text x="17.0535%" y="527.50"></text></g><g><title>schedule (156 samples, 0.03%)</title><rect x="16.8052%" y="501" width="0.0301%" height="15" fill="rgb(237,194,15)" fg:x="86980" fg:w="156"/><text x="17.0552%" y="511.50"></text></g><g><title>__schedule (154 samples, 0.03%)</title><rect x="16.8056%" y="485" width="0.0298%" height="15" fill="rgb(219,203,20)" fg:x="86982" fg:w="154"/><text x="17.0556%" y="495.50"></text></g><g><title>do_futex (176 samples, 0.03%)</title><rect x="16.8027%" y="549" width="0.0340%" height="15" fill="rgb(234,128,8)" fg:x="86967" fg:w="176"/><text x="17.0527%" y="559.50"></text></g><g><title>futex_wait (175 samples, 0.03%)</title><rect x="16.8029%" y="533" width="0.0338%" height="15" fill="rgb(248,202,8)" fg:x="86968" fg:w="175"/><text x="17.0529%" y="543.50"></text></g><g><title>do_syscall_64 (180 samples, 0.03%)</title><rect x="16.8027%" y="581" width="0.0348%" height="15" fill="rgb(206,104,37)" fg:x="86967" fg:w="180"/><text x="17.0527%" y="591.50"></text></g><g><title>__x64_sys_futex (180 samples, 0.03%)</title><rect x="16.8027%" y="565" width="0.0348%" height="15" fill="rgb(223,8,27)" fg:x="86967" fg:w="180"/><text x="17.0527%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (186 samples, 0.04%)</title><rect x="16.8025%" y="597" width="0.0359%" height="15" fill="rgb(216,217,28)" fg:x="86966" fg:w="186"/><text x="17.0525%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (196 samples, 0.04%)</title><rect x="16.8008%" y="645" width="0.0379%" height="15" fill="rgb(249,199,1)" fg:x="86957" fg:w="196"/><text x="17.0508%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (196 samples, 0.04%)</title><rect x="16.8008%" y="629" width="0.0379%" height="15" fill="rgb(240,85,17)" fg:x="86957" fg:w="196"/><text x="17.0508%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (194 samples, 0.04%)</title><rect x="16.8012%" y="613" width="0.0375%" height="15" fill="rgb(206,108,45)" fg:x="86959" fg:w="194"/><text x="17.0512%" y="623.50"></text></g><g><title>os::PlatformEvent::park (211 samples, 0.04%)</title><rect x="16.8004%" y="661" width="0.0408%" height="15" fill="rgb(245,210,41)" fg:x="86955" fg:w="211"/><text x="17.0504%" y="671.50"></text></g><g><title>Monitor::IWait (244 samples, 0.05%)</title><rect x="16.7942%" y="677" width="0.0471%" height="15" fill="rgb(206,13,37)" fg:x="86923" fg:w="244"/><text x="17.0442%" y="687.50"></text></g><g><title>Monitor::wait (256 samples, 0.05%)</title><rect x="16.7934%" y="693" width="0.0495%" height="15" fill="rgb(250,61,18)" fg:x="86919" fg:w="256"/><text x="17.0434%" y="703.50"></text></g><g><title>CompileQueue::get (307 samples, 0.06%)</title><rect x="16.7907%" y="709" width="0.0593%" height="15" fill="rgb(235,172,48)" fg:x="86905" fg:w="307"/><text x="17.0407%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,169 samples, 0.23%)</title><rect x="16.6246%" y="725" width="0.2259%" height="15" fill="rgb(249,201,17)" fg:x="86045" fg:w="1169"/><text x="16.8746%" y="735.50"></text></g><g><title>Thread::call_run (1,175 samples, 0.23%)</title><rect x="16.6244%" y="757" width="0.2270%" height="15" fill="rgb(219,208,6)" fg:x="86044" fg:w="1175"/><text x="16.8744%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (1,174 samples, 0.23%)</title><rect x="16.6246%" y="741" width="0.2268%" height="15" fill="rgb(248,31,23)" fg:x="86045" fg:w="1174"/><text x="16.8746%" y="751.50"></text></g><g><title>__GI___clone (1,203 samples, 0.23%)</title><rect x="16.6196%" y="805" width="0.2324%" height="15" fill="rgb(245,15,42)" fg:x="86019" fg:w="1203"/><text x="16.8696%" y="815.50"></text></g><g><title>start_thread (1,179 samples, 0.23%)</title><rect x="16.6242%" y="789" width="0.2278%" height="15" fill="rgb(222,217,39)" fg:x="86043" fg:w="1179"/><text x="16.8742%" y="799.50"></text></g><g><title>thread_native_entry (1,178 samples, 0.23%)</title><rect x="16.6244%" y="773" width="0.2276%" height="15" fill="rgb(210,219,27)" fg:x="86044" fg:w="1178"/><text x="16.8744%" y="783.50"></text></g><g><title>asm_exc_page_fault (57 samples, 0.01%)</title><rect x="16.8551%" y="805" width="0.0110%" height="15" fill="rgb(252,166,36)" fg:x="87238" fg:w="57"/><text x="17.1051%" y="815.50"></text></g><g><title>C2_CompilerThre (74,446 samples, 14.38%)</title><rect x="2.4955%" y="821" width="14.3836%" height="15" fill="rgb(245,132,34)" fg:x="12916" fg:w="74446"/><text x="2.7455%" y="831.50">C2_CompilerThre</text></g><g><title>[perf-965379.map] (100 samples, 0.02%)</title><rect x="16.8798%" y="805" width="0.0193%" height="15" fill="rgb(236,54,3)" fg:x="87366" fg:w="100"/><text x="17.1298%" y="815.50"></text></g><g><title>Command-Accumul (124 samples, 0.02%)</title><rect x="16.8790%" y="821" width="0.0240%" height="15" fill="rgb(241,173,43)" fg:x="87362" fg:w="124"/><text x="17.1290%" y="831.50"></text></g><g><title>[anon] (108 samples, 0.02%)</title><rect x="16.9127%" y="805" width="0.0209%" height="15" fill="rgb(215,190,9)" fg:x="87536" fg:w="108"/><text x="17.1627%" y="815.50"></text></g><g><title>JVM_IsInterrupted (95 samples, 0.02%)</title><rect x="17.3174%" y="789" width="0.0184%" height="15" fill="rgb(242,101,16)" fg:x="89631" fg:w="95"/><text x="17.5674%" y="799.50"></text></g><g><title>hrtimer_start_range_ns (67 samples, 0.01%)</title><rect x="17.4440%" y="613" width="0.0129%" height="15" fill="rgb(223,190,21)" fg:x="90286" fg:w="67"/><text x="17.6940%" y="623.50"></text></g><g><title>update_curr (91 samples, 0.02%)</title><rect x="17.5000%" y="549" width="0.0176%" height="15" fill="rgb(215,228,25)" fg:x="90576" fg:w="91"/><text x="17.7500%" y="559.50"></text></g><g><title>dequeue_entity (206 samples, 0.04%)</title><rect x="17.4874%" y="565" width="0.0398%" height="15" fill="rgb(225,36,22)" fg:x="90511" fg:w="206"/><text x="17.7374%" y="575.50"></text></g><g><title>dequeue_task_fair (234 samples, 0.05%)</title><rect x="17.4824%" y="581" width="0.0452%" height="15" fill="rgb(251,106,46)" fg:x="90485" fg:w="234"/><text x="17.7324%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.01%)</title><rect x="17.5309%" y="565" width="0.0141%" height="15" fill="rgb(208,90,1)" fg:x="90736" fg:w="73"/><text x="17.7809%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.01%)</title><rect x="17.5327%" y="549" width="0.0124%" height="15" fill="rgb(243,10,4)" fg:x="90745" fg:w="64"/><text x="17.7827%" y="559.50"></text></g><g><title>native_write_msr (60 samples, 0.01%)</title><rect x="17.5334%" y="533" width="0.0116%" height="15" fill="rgb(212,137,27)" fg:x="90749" fg:w="60"/><text x="17.7834%" y="543.50"></text></g><g><title>finish_task_switch (91 samples, 0.02%)</title><rect x="17.5276%" y="581" width="0.0176%" height="15" fill="rgb(231,220,49)" fg:x="90719" fg:w="91"/><text x="17.7776%" y="591.50"></text></g><g><title>psi_task_change (160 samples, 0.03%)</title><rect x="17.5616%" y="581" width="0.0309%" height="15" fill="rgb(237,96,20)" fg:x="90895" fg:w="160"/><text x="17.8116%" y="591.50"></text></g><g><title>psi_group_change (120 samples, 0.02%)</title><rect x="17.5694%" y="565" width="0.0232%" height="15" fill="rgb(239,229,30)" fg:x="90935" fg:w="120"/><text x="17.8194%" y="575.50"></text></g><g><title>futex_wait_queue_me (862 samples, 0.17%)</title><rect x="17.4343%" y="629" width="0.1665%" height="15" fill="rgb(219,65,33)" fg:x="90236" fg:w="862"/><text x="17.6843%" y="639.50"></text></g><g><title>schedule (731 samples, 0.14%)</title><rect x="17.4596%" y="613" width="0.1412%" height="15" fill="rgb(243,134,7)" fg:x="90367" fg:w="731"/><text x="17.7096%" y="623.50"></text></g><g><title>__schedule (711 samples, 0.14%)</title><rect x="17.4635%" y="597" width="0.1374%" height="15" fill="rgb(216,177,54)" fg:x="90387" fg:w="711"/><text x="17.7135%" y="607.50"></text></g><g><title>futex_wait_setup (59 samples, 0.01%)</title><rect x="17.6009%" y="629" width="0.0114%" height="15" fill="rgb(211,160,20)" fg:x="91098" fg:w="59"/><text x="17.8509%" y="639.50"></text></g><g><title>hrtimer_cancel (71 samples, 0.01%)</title><rect x="17.6123%" y="629" width="0.0137%" height="15" fill="rgb(239,85,39)" fg:x="91157" fg:w="71"/><text x="17.8623%" y="639.50"></text></g><g><title>hrtimer_try_to_cancel.part.0 (53 samples, 0.01%)</title><rect x="17.6157%" y="613" width="0.0102%" height="15" fill="rgb(232,125,22)" fg:x="91175" fg:w="53"/><text x="17.8657%" y="623.50"></text></g><g><title>do_futex (1,067 samples, 0.21%)</title><rect x="17.4237%" y="661" width="0.2062%" height="15" fill="rgb(244,57,34)" fg:x="90181" fg:w="1067"/><text x="17.6737%" y="671.50"></text></g><g><title>futex_wait (1,055 samples, 0.20%)</title><rect x="17.4260%" y="645" width="0.2038%" height="15" fill="rgb(214,203,32)" fg:x="90193" fg:w="1055"/><text x="17.6760%" y="655.50"></text></g><g><title>__x64_sys_futex (1,099 samples, 0.21%)</title><rect x="17.4219%" y="677" width="0.2123%" height="15" fill="rgb(207,58,43)" fg:x="90172" fg:w="1099"/><text x="17.6719%" y="687.50"></text></g><g><title>do_syscall_64 (1,108 samples, 0.21%)</title><rect x="17.4212%" y="693" width="0.2141%" height="15" fill="rgb(215,193,15)" fg:x="90168" fg:w="1108"/><text x="17.6712%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,155 samples, 0.22%)</title><rect x="17.4175%" y="709" width="0.2232%" height="15" fill="rgb(232,15,44)" fg:x="90149" fg:w="1155"/><text x="17.6675%" y="719.50"></text></g><g><title>__pthread_cond_timedwait (1,304 samples, 0.25%)</title><rect x="17.3899%" y="757" width="0.2519%" height="15" fill="rgb(212,3,48)" fg:x="90006" fg:w="1304"/><text x="17.6399%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (1,300 samples, 0.25%)</title><rect x="17.3906%" y="741" width="0.2512%" height="15" fill="rgb(218,128,7)" fg:x="90010" fg:w="1300"/><text x="17.6406%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (1,228 samples, 0.24%)</title><rect x="17.4046%" y="725" width="0.2373%" height="15" fill="rgb(226,216,39)" fg:x="90082" fg:w="1228"/><text x="17.6546%" y="735.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.01%)</title><rect x="17.6613%" y="709" width="0.0139%" height="15" fill="rgb(243,47,51)" fg:x="91411" fg:w="72"/><text x="17.9113%" y="719.50"></text></g><g><title>do_futex (66 samples, 0.01%)</title><rect x="17.6625%" y="693" width="0.0128%" height="15" fill="rgb(241,183,40)" fg:x="91417" fg:w="66"/><text x="17.9125%" y="703.50"></text></g><g><title>futex_wake (55 samples, 0.01%)</title><rect x="17.6646%" y="677" width="0.0106%" height="15" fill="rgb(231,217,32)" fg:x="91428" fg:w="55"/><text x="17.9146%" y="687.50"></text></g><g><title>do_syscall_64 (84 samples, 0.02%)</title><rect x="17.6596%" y="725" width="0.0162%" height="15" fill="rgb(229,61,38)" fg:x="91402" fg:w="84"/><text x="17.9096%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.02%)</title><rect x="17.6586%" y="741" width="0.0178%" height="15" fill="rgb(225,210,5)" fg:x="91397" fg:w="92"/><text x="17.9086%" y="751.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (138 samples, 0.03%)</title><rect x="17.6505%" y="757" width="0.0267%" height="15" fill="rgb(231,79,45)" fg:x="91355" fg:w="138"/><text x="17.9005%" y="767.50"></text></g><g><title>Parker::park (1,713 samples, 0.33%)</title><rect x="17.3563%" y="773" width="0.3310%" height="15" fill="rgb(224,100,7)" fg:x="89832" fg:w="1713"/><text x="17.6063%" y="783.50"></text></g><g><title>Unsafe_Park (1,806 samples, 0.35%)</title><rect x="17.3447%" y="789" width="0.3489%" height="15" fill="rgb(241,198,18)" fg:x="89772" fg:w="1806"/><text x="17.5947%" y="799.50"></text></g><g><title>[perf-965379.map] (3,964 samples, 0.77%)</title><rect x="16.9335%" y="805" width="0.7659%" height="15" fill="rgb(252,97,53)" fg:x="87644" fg:w="3964"/><text x="17.1835%" y="815.50"></text></g><g><title>[unknown] (60 samples, 0.01%)</title><rect x="17.6994%" y="805" width="0.0116%" height="15" fill="rgb(220,88,7)" fg:x="91608" fg:w="60"/><text x="17.9494%" y="815.50"></text></g><g><title>ForkJoinPool.co (4,169 samples, 0.81%)</title><rect x="16.9125%" y="821" width="0.8055%" height="15" fill="rgb(213,176,14)" fg:x="87535" fg:w="4169"/><text x="17.1625%" y="831.50"></text></g><g><title>OopOopIterateDispatch&lt;G1ConcurrentRefineOopClosure&gt;::Table::oop_oop_iterate&lt;InstanceKlass, unsigned int&gt; (57 samples, 0.01%)</title><rect x="17.7622%" y="677" width="0.0110%" height="15" fill="rgb(246,73,7)" fg:x="91933" fg:w="57"/><text x="18.0122%" y="687.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (169 samples, 0.03%)</title><rect x="17.7456%" y="709" width="0.0327%" height="15" fill="rgb(245,64,36)" fg:x="91847" fg:w="169"/><text x="17.9956%" y="719.50"></text></g><g><title>G1RemSet::refine_card_concurrently (168 samples, 0.03%)</title><rect x="17.7458%" y="693" width="0.0325%" height="15" fill="rgb(245,80,10)" fg:x="91848" fg:w="168"/><text x="17.9958%" y="703.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (201 samples, 0.04%)</title><rect x="17.7456%" y="725" width="0.0388%" height="15" fill="rgb(232,107,50)" fg:x="91847" fg:w="201"/><text x="17.9956%" y="735.50"></text></g><g><title>G1_Refine#0 (223 samples, 0.04%)</title><rect x="17.7433%" y="821" width="0.0431%" height="15" fill="rgb(253,3,0)" fg:x="91835" fg:w="223"/><text x="17.9933%" y="831.50"></text></g><g><title>__GI___clone (211 samples, 0.04%)</title><rect x="17.7456%" y="805" width="0.0408%" height="15" fill="rgb(212,99,53)" fg:x="91847" fg:w="211"/><text x="17.9956%" y="815.50"></text></g><g><title>start_thread (211 samples, 0.04%)</title><rect x="17.7456%" y="789" width="0.0408%" height="15" fill="rgb(249,111,54)" fg:x="91847" fg:w="211"/><text x="17.9956%" y="799.50"></text></g><g><title>thread_native_entry (211 samples, 0.04%)</title><rect x="17.7456%" y="773" width="0.0408%" height="15" fill="rgb(249,55,30)" fg:x="91847" fg:w="211"/><text x="17.9956%" y="783.50"></text></g><g><title>Thread::call_run (211 samples, 0.04%)</title><rect x="17.7456%" y="757" width="0.0408%" height="15" fill="rgb(237,47,42)" fg:x="91847" fg:w="211"/><text x="17.9956%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (211 samples, 0.04%)</title><rect x="17.7456%" y="741" width="0.0408%" height="15" fill="rgb(211,20,18)" fg:x="91847" fg:w="211"/><text x="17.9956%" y="751.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (53 samples, 0.01%)</title><rect x="17.7871%" y="709" width="0.0102%" height="15" fill="rgb(231,203,46)" fg:x="92062" fg:w="53"/><text x="18.0371%" y="719.50"></text></g><g><title>G1RemSet::refine_card_concurrently (53 samples, 0.01%)</title><rect x="17.7871%" y="693" width="0.0102%" height="15" fill="rgb(237,142,3)" fg:x="92062" fg:w="53"/><text x="18.0371%" y="703.50"></text></g><g><title>G1_Refine#1 (85 samples, 0.02%)</title><rect x="17.7863%" y="821" width="0.0164%" height="15" fill="rgb(241,107,1)" fg:x="92058" fg:w="85"/><text x="18.0363%" y="831.50"></text></g><g><title>__GI___clone (81 samples, 0.02%)</title><rect x="17.7871%" y="805" width="0.0156%" height="15" fill="rgb(229,83,13)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="815.50"></text></g><g><title>start_thread (81 samples, 0.02%)</title><rect x="17.7871%" y="789" width="0.0156%" height="15" fill="rgb(241,91,40)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="799.50"></text></g><g><title>thread_native_entry (81 samples, 0.02%)</title><rect x="17.7871%" y="773" width="0.0156%" height="15" fill="rgb(225,3,45)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="783.50"></text></g><g><title>Thread::call_run (81 samples, 0.02%)</title><rect x="17.7871%" y="757" width="0.0156%" height="15" fill="rgb(244,223,14)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (81 samples, 0.02%)</title><rect x="17.7871%" y="741" width="0.0156%" height="15" fill="rgb(224,124,37)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="751.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (81 samples, 0.02%)</title><rect x="17.7871%" y="725" width="0.0156%" height="15" fill="rgb(251,171,30)" fg:x="92062" fg:w="81"/><text x="18.0371%" y="735.50"></text></g><g><title>__GI___clone (74 samples, 0.01%)</title><rect x="17.8031%" y="805" width="0.0143%" height="15" fill="rgb(236,46,54)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="815.50"></text></g><g><title>start_thread (74 samples, 0.01%)</title><rect x="17.8031%" y="789" width="0.0143%" height="15" fill="rgb(245,213,5)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="799.50"></text></g><g><title>thread_native_entry (74 samples, 0.01%)</title><rect x="17.8031%" y="773" width="0.0143%" height="15" fill="rgb(230,144,27)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="783.50"></text></g><g><title>Thread::call_run (74 samples, 0.01%)</title><rect x="17.8031%" y="757" width="0.0143%" height="15" fill="rgb(220,86,6)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (74 samples, 0.01%)</title><rect x="17.8031%" y="741" width="0.0143%" height="15" fill="rgb(240,20,13)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="751.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (74 samples, 0.01%)</title><rect x="17.8031%" y="725" width="0.0143%" height="15" fill="rgb(217,89,34)" fg:x="92145" fg:w="74"/><text x="18.0531%" y="735.50"></text></g><g><title>G1_Refine#2 (77 samples, 0.01%)</title><rect x="17.8028%" y="821" width="0.0149%" height="15" fill="rgb(229,13,5)" fg:x="92143" fg:w="77"/><text x="18.0528%" y="831.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (84 samples, 0.02%)</title><rect x="17.8310%" y="693" width="0.0162%" height="15" fill="rgb(244,67,35)" fg:x="92289" fg:w="84"/><text x="18.0810%" y="703.50"></text></g><g><title>G1CollectionSet::iterate (86 samples, 0.02%)</title><rect x="17.8308%" y="709" width="0.0166%" height="15" fill="rgb(221,40,2)" fg:x="92288" fg:w="86"/><text x="18.0808%" y="719.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (113 samples, 0.02%)</title><rect x="17.8308%" y="725" width="0.0218%" height="15" fill="rgb(237,157,21)" fg:x="92288" fg:w="113"/><text x="18.0808%" y="735.50"></text></g><g><title>G1_Young_RemSet (124 samples, 0.02%)</title><rect x="17.8304%" y="821" width="0.0240%" height="15" fill="rgb(222,94,11)" fg:x="92286" fg:w="124"/><text x="18.0804%" y="831.50"></text></g><g><title>__GI___clone (122 samples, 0.02%)</title><rect x="17.8308%" y="805" width="0.0236%" height="15" fill="rgb(249,113,6)" fg:x="92288" fg:w="122"/><text x="18.0808%" y="815.50"></text></g><g><title>start_thread (122 samples, 0.02%)</title><rect x="17.8308%" y="789" width="0.0236%" height="15" fill="rgb(238,137,36)" fg:x="92288" fg:w="122"/><text x="18.0808%" y="799.50"></text></g><g><title>thread_native_entry (122 samples, 0.02%)</title><rect x="17.8308%" y="773" width="0.0236%" height="15" fill="rgb(210,102,26)" fg:x="92288" fg:w="122"/><text x="18.0808%" y="783.50"></text></g><g><title>Thread::call_run (122 samples, 0.02%)</title><rect x="17.8308%" y="757" width="0.0236%" height="15" fill="rgb(218,30,30)" fg:x="92288" fg:w="122"/><text x="18.0808%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (122 samples, 0.02%)</title><rect x="17.8308%" y="741" width="0.0236%" height="15" fill="rgb(214,67,26)" fg:x="92288" fg:w="122"/><text x="18.0808%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (64 samples, 0.01%)</title><rect x="17.8673%" y="677" width="0.0124%" height="15" fill="rgb(251,9,53)" fg:x="92477" fg:w="64"/><text x="18.1173%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (117 samples, 0.02%)</title><rect x="17.8578%" y="693" width="0.0226%" height="15" fill="rgb(228,204,25)" fg:x="92428" fg:w="117"/><text x="18.1078%" y="703.50"></text></g><g><title>SpinPause (127 samples, 0.02%)</title><rect x="17.8814%" y="693" width="0.0245%" height="15" fill="rgb(207,153,8)" fg:x="92550" fg:w="127"/><text x="18.1314%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (256 samples, 0.05%)</title><rect x="17.8567%" y="709" width="0.0495%" height="15" fill="rgb(242,9,16)" fg:x="92422" fg:w="256"/><text x="18.1067%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (120 samples, 0.02%)</title><rect x="17.9106%" y="613" width="0.0232%" height="15" fill="rgb(217,211,10)" fg:x="92701" fg:w="120"/><text x="18.1606%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (86 samples, 0.02%)</title><rect x="17.9171%" y="597" width="0.0166%" height="15" fill="rgb(219,228,52)" fg:x="92735" fg:w="86"/><text x="18.1671%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (145 samples, 0.03%)</title><rect x="17.9063%" y="629" width="0.0280%" height="15" fill="rgb(231,92,29)" fg:x="92679" fg:w="145"/><text x="18.1563%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (162 samples, 0.03%)</title><rect x="17.9063%" y="677" width="0.0313%" height="15" fill="rgb(232,8,23)" fg:x="92679" fg:w="162"/><text x="18.1563%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (162 samples, 0.03%)</title><rect x="17.9063%" y="661" width="0.0313%" height="15" fill="rgb(216,211,34)" fg:x="92679" fg:w="162"/><text x="18.1563%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (162 samples, 0.03%)</title><rect x="17.9063%" y="645" width="0.0313%" height="15" fill="rgb(236,151,0)" fg:x="92679" fg:w="162"/><text x="18.1563%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (194 samples, 0.04%)</title><rect x="17.9063%" y="709" width="0.0375%" height="15" fill="rgb(209,168,3)" fg:x="92679" fg:w="194"/><text x="18.1563%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (194 samples, 0.04%)</title><rect x="17.9063%" y="693" width="0.0375%" height="15" fill="rgb(208,129,28)" fg:x="92679" fg:w="194"/><text x="18.1563%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (70 samples, 0.01%)</title><rect x="17.9442%" y="629" width="0.0135%" height="15" fill="rgb(229,78,22)" fg:x="92875" fg:w="70"/><text x="18.1942%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (92 samples, 0.02%)</title><rect x="17.9442%" y="645" width="0.0178%" height="15" fill="rgb(228,187,13)" fg:x="92875" fg:w="92"/><text x="18.1942%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (96 samples, 0.02%)</title><rect x="17.9440%" y="661" width="0.0185%" height="15" fill="rgb(240,119,24)" fg:x="92874" fg:w="96"/><text x="18.1940%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (100 samples, 0.02%)</title><rect x="17.9438%" y="709" width="0.0193%" height="15" fill="rgb(209,194,42)" fg:x="92873" fg:w="100"/><text x="18.1938%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (100 samples, 0.02%)</title><rect x="17.9438%" y="693" width="0.0193%" height="15" fill="rgb(247,200,46)" fg:x="92873" fg:w="100"/><text x="18.1938%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (100 samples, 0.02%)</title><rect x="17.9438%" y="677" width="0.0193%" height="15" fill="rgb(218,76,16)" fg:x="92873" fg:w="100"/><text x="18.1938%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (52 samples, 0.01%)</title><rect x="17.9707%" y="613" width="0.0100%" height="15" fill="rgb(225,21,48)" fg:x="93012" fg:w="52"/><text x="18.2207%" y="623.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (89 samples, 0.02%)</title><rect x="17.9639%" y="677" width="0.0172%" height="15" fill="rgb(239,223,50)" fg:x="92977" fg:w="89"/><text x="18.2139%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (88 samples, 0.02%)</title><rect x="17.9641%" y="661" width="0.0170%" height="15" fill="rgb(244,45,21)" fg:x="92978" fg:w="88"/><text x="18.2141%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (88 samples, 0.02%)</title><rect x="17.9641%" y="645" width="0.0170%" height="15" fill="rgb(232,33,43)" fg:x="92978" fg:w="88"/><text x="18.2141%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (73 samples, 0.01%)</title><rect x="17.9670%" y="629" width="0.0141%" height="15" fill="rgb(209,8,3)" fg:x="92993" fg:w="73"/><text x="18.2170%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (163 samples, 0.03%)</title><rect x="17.9639%" y="693" width="0.0315%" height="15" fill="rgb(214,25,53)" fg:x="92977" fg:w="163"/><text x="18.2139%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (74 samples, 0.01%)</title><rect x="17.9811%" y="677" width="0.0143%" height="15" fill="rgb(254,186,54)" fg:x="93066" fg:w="74"/><text x="18.2311%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (74 samples, 0.01%)</title><rect x="17.9811%" y="661" width="0.0143%" height="15" fill="rgb(208,174,49)" fg:x="93066" fg:w="74"/><text x="18.2311%" y="671.50"></text></g><g><title>JavaThread::oops_do (74 samples, 0.01%)</title><rect x="17.9811%" y="645" width="0.0143%" height="15" fill="rgb(233,191,51)" fg:x="93066" fg:w="74"/><text x="18.2311%" y="655.50"></text></g><g><title>G1ParTask::work (767 samples, 0.15%)</title><rect x="17.8567%" y="725" width="0.1482%" height="15" fill="rgb(222,134,10)" fg:x="92422" fg:w="767"/><text x="18.1067%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (216 samples, 0.04%)</title><rect x="17.9631%" y="709" width="0.0417%" height="15" fill="rgb(230,226,20)" fg:x="92973" fg:w="216"/><text x="18.2131%" y="719.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.01%)</title><rect x="18.0263%" y="565" width="0.0108%" height="15" fill="rgb(251,111,25)" fg:x="93300" fg:w="56"/><text x="18.2763%" y="575.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="18.0265%" y="549" width="0.0106%" height="15" fill="rgb(224,40,46)" fg:x="93301" fg:w="55"/><text x="18.2765%" y="559.50"></text></g><g><title>__schedule (55 samples, 0.01%)</title><rect x="18.0265%" y="533" width="0.0106%" height="15" fill="rgb(236,108,47)" fg:x="93301" fg:w="55"/><text x="18.2765%" y="543.50"></text></g><g><title>do_syscall_64 (62 samples, 0.01%)</title><rect x="18.0253%" y="629" width="0.0120%" height="15" fill="rgb(234,93,0)" fg:x="93295" fg:w="62"/><text x="18.2753%" y="639.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="18.0253%" y="613" width="0.0120%" height="15" fill="rgb(224,213,32)" fg:x="93295" fg:w="62"/><text x="18.2753%" y="623.50"></text></g><g><title>do_futex (59 samples, 0.01%)</title><rect x="18.0259%" y="597" width="0.0114%" height="15" fill="rgb(251,11,48)" fg:x="93298" fg:w="59"/><text x="18.2759%" y="607.50"></text></g><g><title>futex_wait (59 samples, 0.01%)</title><rect x="18.0259%" y="581" width="0.0114%" height="15" fill="rgb(236,173,5)" fg:x="93298" fg:w="59"/><text x="18.2759%" y="591.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (66 samples, 0.01%)</title><rect x="18.0253%" y="725" width="0.0128%" height="15" fill="rgb(230,95,12)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="735.50"></text></g><g><title>PosixSemaphore::wait (66 samples, 0.01%)</title><rect x="18.0253%" y="709" width="0.0128%" height="15" fill="rgb(232,209,1)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="719.50"></text></g><g><title>__new_sem_wait_slow (66 samples, 0.01%)</title><rect x="18.0253%" y="693" width="0.0128%" height="15" fill="rgb(232,6,1)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="703.50"></text></g><g><title>do_futex_wait (66 samples, 0.01%)</title><rect x="18.0253%" y="677" width="0.0128%" height="15" fill="rgb(210,224,50)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (66 samples, 0.01%)</title><rect x="18.0253%" y="661" width="0.0128%" height="15" fill="rgb(228,127,35)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.01%)</title><rect x="18.0253%" y="645" width="0.0128%" height="15" fill="rgb(245,102,45)" fg:x="93295" fg:w="66"/><text x="18.2753%" y="655.50"></text></g><g><title>GC_Thread#0 (952 samples, 0.18%)</title><rect x="17.8543%" y="821" width="0.1839%" height="15" fill="rgb(214,1,49)" fg:x="92410" fg:w="952"/><text x="18.1043%" y="831.50"></text></g><g><title>__GI___clone (943 samples, 0.18%)</title><rect x="17.8561%" y="805" width="0.1822%" height="15" fill="rgb(226,163,40)" fg:x="92419" fg:w="943"/><text x="18.1061%" y="815.50"></text></g><g><title>start_thread (943 samples, 0.18%)</title><rect x="17.8561%" y="789" width="0.1822%" height="15" fill="rgb(239,212,28)" fg:x="92419" fg:w="943"/><text x="18.1061%" y="799.50"></text></g><g><title>thread_native_entry (943 samples, 0.18%)</title><rect x="17.8561%" y="773" width="0.1822%" height="15" fill="rgb(220,20,13)" fg:x="92419" fg:w="943"/><text x="18.1061%" y="783.50"></text></g><g><title>Thread::call_run (943 samples, 0.18%)</title><rect x="17.8561%" y="757" width="0.1822%" height="15" fill="rgb(210,164,35)" fg:x="92419" fg:w="943"/><text x="18.1061%" y="767.50"></text></g><g><title>GangWorker::loop (943 samples, 0.18%)</title><rect x="17.8561%" y="741" width="0.1822%" height="15" fill="rgb(248,109,41)" fg:x="92419" fg:w="943"/><text x="18.1061%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (76 samples, 0.01%)</title><rect x="18.0605%" y="677" width="0.0147%" height="15" fill="rgb(238,23,50)" fg:x="93477" fg:w="76"/><text x="18.3105%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (157 samples, 0.03%)</title><rect x="18.0456%" y="693" width="0.0303%" height="15" fill="rgb(211,48,49)" fg:x="93400" fg:w="157"/><text x="18.2956%" y="703.50"></text></g><g><title>SpinPause (87 samples, 0.02%)</title><rect x="18.0773%" y="693" width="0.0168%" height="15" fill="rgb(223,36,21)" fg:x="93564" fg:w="87"/><text x="18.3273%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (269 samples, 0.05%)</title><rect x="18.0435%" y="709" width="0.0520%" height="15" fill="rgb(207,123,46)" fg:x="93389" fg:w="269"/><text x="18.2935%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (62 samples, 0.01%)</title><rect x="18.0982%" y="613" width="0.0120%" height="15" fill="rgb(240,218,32)" fg:x="93672" fg:w="62"/><text x="18.3482%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (56 samples, 0.01%)</title><rect x="18.0993%" y="597" width="0.0108%" height="15" fill="rgb(252,5,43)" fg:x="93678" fg:w="56"/><text x="18.3493%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (84 samples, 0.02%)</title><rect x="18.0955%" y="629" width="0.0162%" height="15" fill="rgb(252,84,19)" fg:x="93658" fg:w="84"/><text x="18.3455%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (91 samples, 0.02%)</title><rect x="18.0955%" y="709" width="0.0176%" height="15" fill="rgb(243,152,39)" fg:x="93658" fg:w="91"/><text x="18.3455%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (91 samples, 0.02%)</title><rect x="18.0955%" y="693" width="0.0176%" height="15" fill="rgb(234,160,15)" fg:x="93658" fg:w="91"/><text x="18.3455%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (91 samples, 0.02%)</title><rect x="18.0955%" y="677" width="0.0176%" height="15" fill="rgb(237,34,20)" fg:x="93658" fg:w="91"/><text x="18.3455%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (91 samples, 0.02%)</title><rect x="18.0955%" y="661" width="0.0176%" height="15" fill="rgb(229,97,13)" fg:x="93658" fg:w="91"/><text x="18.3455%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (91 samples, 0.02%)</title><rect x="18.0955%" y="645" width="0.0176%" height="15" fill="rgb(234,71,50)" fg:x="93658" fg:w="91"/><text x="18.3455%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (52 samples, 0.01%)</title><rect x="18.1134%" y="629" width="0.0100%" height="15" fill="rgb(253,155,4)" fg:x="93751" fg:w="52"/><text x="18.3634%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (68 samples, 0.01%)</title><rect x="18.1134%" y="645" width="0.0131%" height="15" fill="rgb(222,185,37)" fg:x="93751" fg:w="68"/><text x="18.3634%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (74 samples, 0.01%)</title><rect x="18.1132%" y="661" width="0.0143%" height="15" fill="rgb(251,177,13)" fg:x="93750" fg:w="74"/><text x="18.3632%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (79 samples, 0.02%)</title><rect x="18.1131%" y="709" width="0.0153%" height="15" fill="rgb(250,179,40)" fg:x="93749" fg:w="79"/><text x="18.3631%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (79 samples, 0.02%)</title><rect x="18.1131%" y="693" width="0.0153%" height="15" fill="rgb(242,44,2)" fg:x="93749" fg:w="79"/><text x="18.3631%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (79 samples, 0.02%)</title><rect x="18.1131%" y="677" width="0.0153%" height="15" fill="rgb(216,177,13)" fg:x="93749" fg:w="79"/><text x="18.3631%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (94 samples, 0.02%)</title><rect x="18.1347%" y="613" width="0.0182%" height="15" fill="rgb(216,106,43)" fg:x="93861" fg:w="94"/><text x="18.3847%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (69 samples, 0.01%)</title><rect x="18.1395%" y="597" width="0.0133%" height="15" fill="rgb(216,183,2)" fg:x="93886" fg:w="69"/><text x="18.3895%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (129 samples, 0.02%)</title><rect x="18.1285%" y="677" width="0.0249%" height="15" fill="rgb(249,75,3)" fg:x="93829" fg:w="129"/><text x="18.3785%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (126 samples, 0.02%)</title><rect x="18.1291%" y="661" width="0.0243%" height="15" fill="rgb(219,67,39)" fg:x="93832" fg:w="126"/><text x="18.3791%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (126 samples, 0.02%)</title><rect x="18.1291%" y="645" width="0.0243%" height="15" fill="rgb(253,228,2)" fg:x="93832" fg:w="126"/><text x="18.3791%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (120 samples, 0.02%)</title><rect x="18.1302%" y="629" width="0.0232%" height="15" fill="rgb(235,138,27)" fg:x="93838" fg:w="120"/><text x="18.3802%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (226 samples, 0.04%)</title><rect x="18.1285%" y="693" width="0.0437%" height="15" fill="rgb(236,97,51)" fg:x="93829" fg:w="226"/><text x="18.3785%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (97 samples, 0.02%)</title><rect x="18.1534%" y="677" width="0.0187%" height="15" fill="rgb(240,80,30)" fg:x="93958" fg:w="97"/><text x="18.4034%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (97 samples, 0.02%)</title><rect x="18.1534%" y="661" width="0.0187%" height="15" fill="rgb(230,178,19)" fg:x="93958" fg:w="97"/><text x="18.4034%" y="671.50"></text></g><g><title>JavaThread::oops_do (97 samples, 0.02%)</title><rect x="18.1534%" y="645" width="0.0187%" height="15" fill="rgb(210,190,27)" fg:x="93958" fg:w="97"/><text x="18.4034%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (79 samples, 0.02%)</title><rect x="18.1569%" y="629" width="0.0153%" height="15" fill="rgb(222,107,31)" fg:x="93976" fg:w="79"/><text x="18.4069%" y="639.50"></text></g><g><title>G1ParTask::work (686 samples, 0.13%)</title><rect x="18.0435%" y="725" width="0.1325%" height="15" fill="rgb(216,127,34)" fg:x="93389" fg:w="686"/><text x="18.2935%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (247 samples, 0.05%)</title><rect x="18.1283%" y="709" width="0.0477%" height="15" fill="rgb(234,116,52)" fg:x="93828" fg:w="247"/><text x="18.3783%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="18.1979%" y="501" width="0.0120%" height="15" fill="rgb(222,124,15)" fg:x="94188" fg:w="62"/><text x="18.4479%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.01%)</title><rect x="18.1981%" y="485" width="0.0118%" height="15" fill="rgb(231,179,28)" fg:x="94189" fg:w="61"/><text x="18.4481%" y="495.50"></text></g><g><title>native_write_msr (60 samples, 0.01%)</title><rect x="18.1983%" y="469" width="0.0116%" height="15" fill="rgb(226,93,45)" fg:x="94190" fg:w="60"/><text x="18.4483%" y="479.50"></text></g><g><title>finish_task_switch (65 samples, 0.01%)</title><rect x="18.1979%" y="517" width="0.0126%" height="15" fill="rgb(215,8,51)" fg:x="94188" fg:w="65"/><text x="18.4479%" y="527.50"></text></g><g><title>futex_wait_queue_me (73 samples, 0.01%)</title><rect x="18.1971%" y="565" width="0.0141%" height="15" fill="rgb(223,106,5)" fg:x="94184" fg:w="73"/><text x="18.4471%" y="575.50"></text></g><g><title>schedule (72 samples, 0.01%)</title><rect x="18.1973%" y="549" width="0.0139%" height="15" fill="rgb(250,191,5)" fg:x="94185" fg:w="72"/><text x="18.4473%" y="559.50"></text></g><g><title>__schedule (72 samples, 0.01%)</title><rect x="18.1973%" y="533" width="0.0139%" height="15" fill="rgb(242,132,44)" fg:x="94185" fg:w="72"/><text x="18.4473%" y="543.50"></text></g><g><title>do_syscall_64 (75 samples, 0.01%)</title><rect x="18.1969%" y="629" width="0.0145%" height="15" fill="rgb(251,152,29)" fg:x="94183" fg:w="75"/><text x="18.4469%" y="639.50"></text></g><g><title>__x64_sys_futex (75 samples, 0.01%)</title><rect x="18.1969%" y="613" width="0.0145%" height="15" fill="rgb(218,179,5)" fg:x="94183" fg:w="75"/><text x="18.4469%" y="623.50"></text></g><g><title>do_futex (75 samples, 0.01%)</title><rect x="18.1969%" y="597" width="0.0145%" height="15" fill="rgb(227,67,19)" fg:x="94183" fg:w="75"/><text x="18.4469%" y="607.50"></text></g><g><title>futex_wait (75 samples, 0.01%)</title><rect x="18.1969%" y="581" width="0.0145%" height="15" fill="rgb(233,119,31)" fg:x="94183" fg:w="75"/><text x="18.4469%" y="591.50"></text></g><g><title>__new_sem_wait_slow (77 samples, 0.01%)</title><rect x="18.1967%" y="693" width="0.0149%" height="15" fill="rgb(241,120,22)" fg:x="94182" fg:w="77"/><text x="18.4467%" y="703.50"></text></g><g><title>do_futex_wait (77 samples, 0.01%)</title><rect x="18.1967%" y="677" width="0.0149%" height="15" fill="rgb(224,102,30)" fg:x="94182" fg:w="77"/><text x="18.4467%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (77 samples, 0.01%)</title><rect x="18.1967%" y="661" width="0.0149%" height="15" fill="rgb(210,164,37)" fg:x="94182" fg:w="77"/><text x="18.4467%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.01%)</title><rect x="18.1969%" y="645" width="0.0147%" height="15" fill="rgb(226,191,16)" fg:x="94183" fg:w="76"/><text x="18.4469%" y="655.50"></text></g><g><title>__GI___clone (881 samples, 0.17%)</title><rect x="18.0416%" y="805" width="0.1702%" height="15" fill="rgb(214,40,45)" fg:x="93379" fg:w="881"/><text x="18.2916%" y="815.50"></text></g><g><title>start_thread (881 samples, 0.17%)</title><rect x="18.0416%" y="789" width="0.1702%" height="15" fill="rgb(244,29,26)" fg:x="93379" fg:w="881"/><text x="18.2916%" y="799.50"></text></g><g><title>thread_native_entry (881 samples, 0.17%)</title><rect x="18.0416%" y="773" width="0.1702%" height="15" fill="rgb(216,16,5)" fg:x="93379" fg:w="881"/><text x="18.2916%" y="783.50"></text></g><g><title>Thread::call_run (881 samples, 0.17%)</title><rect x="18.0416%" y="757" width="0.1702%" height="15" fill="rgb(249,76,35)" fg:x="93379" fg:w="881"/><text x="18.2916%" y="767.50"></text></g><g><title>GangWorker::loop (881 samples, 0.17%)</title><rect x="18.0416%" y="741" width="0.1702%" height="15" fill="rgb(207,11,44)" fg:x="93379" fg:w="881"/><text x="18.2916%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (80 samples, 0.02%)</title><rect x="18.1963%" y="725" width="0.0155%" height="15" fill="rgb(228,190,49)" fg:x="94180" fg:w="80"/><text x="18.4463%" y="735.50"></text></g><g><title>PosixSemaphore::wait (80 samples, 0.02%)</title><rect x="18.1963%" y="709" width="0.0155%" height="15" fill="rgb(214,173,12)" fg:x="94180" fg:w="80"/><text x="18.4463%" y="719.50"></text></g><g><title>GC_Thread#1 (903 samples, 0.17%)</title><rect x="18.0383%" y="821" width="0.1745%" height="15" fill="rgb(218,26,35)" fg:x="93362" fg:w="903"/><text x="18.2883%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (65 samples, 0.01%)</title><rect x="18.2344%" y="677" width="0.0126%" height="15" fill="rgb(220,200,19)" fg:x="94377" fg:w="65"/><text x="18.4844%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (148 samples, 0.03%)</title><rect x="18.2187%" y="693" width="0.0286%" height="15" fill="rgb(239,95,49)" fg:x="94296" fg:w="148"/><text x="18.4687%" y="703.50"></text></g><g><title>SpinPause (100 samples, 0.02%)</title><rect x="18.2477%" y="693" width="0.0193%" height="15" fill="rgb(235,85,53)" fg:x="94446" fg:w="100"/><text x="18.4977%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (265 samples, 0.05%)</title><rect x="18.2168%" y="709" width="0.0512%" height="15" fill="rgb(233,133,31)" fg:x="94286" fg:w="265"/><text x="18.4668%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (116 samples, 0.02%)</title><rect x="18.2725%" y="613" width="0.0224%" height="15" fill="rgb(218,25,20)" fg:x="94574" fg:w="116"/><text x="18.5225%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (92 samples, 0.02%)</title><rect x="18.2771%" y="597" width="0.0178%" height="15" fill="rgb(252,210,38)" fg:x="94598" fg:w="92"/><text x="18.5271%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (141 samples, 0.03%)</title><rect x="18.2682%" y="629" width="0.0272%" height="15" fill="rgb(242,134,21)" fg:x="94552" fg:w="141"/><text x="18.5182%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (165 samples, 0.03%)</title><rect x="18.2680%" y="677" width="0.0319%" height="15" fill="rgb(213,28,48)" fg:x="94551" fg:w="165"/><text x="18.5180%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (165 samples, 0.03%)</title><rect x="18.2680%" y="661" width="0.0319%" height="15" fill="rgb(250,196,2)" fg:x="94551" fg:w="165"/><text x="18.5180%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (165 samples, 0.03%)</title><rect x="18.2680%" y="645" width="0.0319%" height="15" fill="rgb(227,5,17)" fg:x="94551" fg:w="165"/><text x="18.5180%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (166 samples, 0.03%)</title><rect x="18.2680%" y="709" width="0.0321%" height="15" fill="rgb(221,226,24)" fg:x="94551" fg:w="166"/><text x="18.5180%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (166 samples, 0.03%)</title><rect x="18.2680%" y="693" width="0.0321%" height="15" fill="rgb(211,5,48)" fg:x="94551" fg:w="166"/><text x="18.5180%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (63 samples, 0.01%)</title><rect x="18.3022%" y="613" width="0.0122%" height="15" fill="rgb(219,150,6)" fg:x="94728" fg:w="63"/><text x="18.5522%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (79 samples, 0.02%)</title><rect x="18.3003%" y="629" width="0.0153%" height="15" fill="rgb(251,46,16)" fg:x="94718" fg:w="79"/><text x="18.5503%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (101 samples, 0.02%)</title><rect x="18.3003%" y="645" width="0.0195%" height="15" fill="rgb(220,204,40)" fg:x="94718" fg:w="101"/><text x="18.5503%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (105 samples, 0.02%)</title><rect x="18.3001%" y="661" width="0.0203%" height="15" fill="rgb(211,85,2)" fg:x="94717" fg:w="105"/><text x="18.5501%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (119 samples, 0.02%)</title><rect x="18.3001%" y="709" width="0.0230%" height="15" fill="rgb(229,17,7)" fg:x="94717" fg:w="119"/><text x="18.5501%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (119 samples, 0.02%)</title><rect x="18.3001%" y="693" width="0.0230%" height="15" fill="rgb(239,72,28)" fg:x="94717" fg:w="119"/><text x="18.5501%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (119 samples, 0.02%)</title><rect x="18.3001%" y="677" width="0.0230%" height="15" fill="rgb(230,47,54)" fg:x="94717" fg:w="119"/><text x="18.5501%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (59 samples, 0.01%)</title><rect x="18.3399%" y="581" width="0.0114%" height="15" fill="rgb(214,50,8)" fg:x="94923" fg:w="59"/><text x="18.5899%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (82 samples, 0.02%)</title><rect x="18.3370%" y="613" width="0.0158%" height="15" fill="rgb(216,198,43)" fg:x="94908" fg:w="82"/><text x="18.5870%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (79 samples, 0.02%)</title><rect x="18.3376%" y="597" width="0.0153%" height="15" fill="rgb(234,20,35)" fg:x="94911" fg:w="79"/><text x="18.5876%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (93 samples, 0.02%)</title><rect x="18.3368%" y="629" width="0.0180%" height="15" fill="rgb(254,45,19)" fg:x="94907" fg:w="93"/><text x="18.5868%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (166 samples, 0.03%)</title><rect x="18.3231%" y="693" width="0.0321%" height="15" fill="rgb(219,14,44)" fg:x="94836" fg:w="166"/><text x="18.5731%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (149 samples, 0.03%)</title><rect x="18.3264%" y="677" width="0.0288%" height="15" fill="rgb(217,220,26)" fg:x="94853" fg:w="149"/><text x="18.5764%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (149 samples, 0.03%)</title><rect x="18.3264%" y="661" width="0.0288%" height="15" fill="rgb(213,158,28)" fg:x="94853" fg:w="149"/><text x="18.5764%" y="671.50"></text></g><g><title>JavaThread::oops_do (149 samples, 0.03%)</title><rect x="18.3264%" y="645" width="0.0288%" height="15" fill="rgb(252,51,52)" fg:x="94853" fg:w="149"/><text x="18.5764%" y="655.50"></text></g><g><title>G1RootProcessor::evacuate_roots (175 samples, 0.03%)</title><rect x="18.3231%" y="709" width="0.0338%" height="15" fill="rgb(246,89,16)" fg:x="94836" fg:w="175"/><text x="18.5731%" y="719.50"></text></g><g><title>G1ParTask::work (726 samples, 0.14%)</title><rect x="18.2168%" y="725" width="0.1403%" height="15" fill="rgb(216,158,49)" fg:x="94286" fg:w="726"/><text x="18.4668%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.02%)</title><rect x="18.3758%" y="501" width="0.0155%" height="15" fill="rgb(236,107,19)" fg:x="95109" fg:w="80"/><text x="18.6258%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (79 samples, 0.02%)</title><rect x="18.3760%" y="485" width="0.0153%" height="15" fill="rgb(228,185,30)" fg:x="95110" fg:w="79"/><text x="18.6260%" y="495.50"></text></g><g><title>native_write_msr (78 samples, 0.02%)</title><rect x="18.3762%" y="469" width="0.0151%" height="15" fill="rgb(246,134,8)" fg:x="95111" fg:w="78"/><text x="18.6262%" y="479.50"></text></g><g><title>finish_task_switch (83 samples, 0.02%)</title><rect x="18.3758%" y="517" width="0.0160%" height="15" fill="rgb(214,143,50)" fg:x="95109" fg:w="83"/><text x="18.6258%" y="527.50"></text></g><g><title>do_syscall_64 (96 samples, 0.02%)</title><rect x="18.3747%" y="629" width="0.0185%" height="15" fill="rgb(228,75,8)" fg:x="95103" fg:w="96"/><text x="18.6247%" y="639.50"></text></g><g><title>__x64_sys_futex (96 samples, 0.02%)</title><rect x="18.3747%" y="613" width="0.0185%" height="15" fill="rgb(207,175,4)" fg:x="95103" fg:w="96"/><text x="18.6247%" y="623.50"></text></g><g><title>do_futex (96 samples, 0.02%)</title><rect x="18.3747%" y="597" width="0.0185%" height="15" fill="rgb(205,108,24)" fg:x="95103" fg:w="96"/><text x="18.6247%" y="607.50"></text></g><g><title>futex_wait (95 samples, 0.02%)</title><rect x="18.3749%" y="581" width="0.0184%" height="15" fill="rgb(244,120,49)" fg:x="95104" fg:w="95"/><text x="18.6249%" y="591.50"></text></g><g><title>futex_wait_queue_me (95 samples, 0.02%)</title><rect x="18.3749%" y="565" width="0.0184%" height="15" fill="rgb(223,47,38)" fg:x="95104" fg:w="95"/><text x="18.6249%" y="575.50"></text></g><g><title>schedule (94 samples, 0.02%)</title><rect x="18.3750%" y="549" width="0.0182%" height="15" fill="rgb(229,179,11)" fg:x="95105" fg:w="94"/><text x="18.6250%" y="559.50"></text></g><g><title>__schedule (94 samples, 0.02%)</title><rect x="18.3750%" y="533" width="0.0182%" height="15" fill="rgb(231,122,1)" fg:x="95105" fg:w="94"/><text x="18.6250%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.02%)</title><rect x="18.3747%" y="645" width="0.0189%" height="15" fill="rgb(245,119,9)" fg:x="95103" fg:w="98"/><text x="18.6247%" y="655.50"></text></g><g><title>GC_Thread#2 (938 samples, 0.18%)</title><rect x="18.2127%" y="821" width="0.1812%" height="15" fill="rgb(241,163,25)" fg:x="94265" fg:w="938"/><text x="18.4627%" y="831.50"></text></g><g><title>__GI___clone (921 samples, 0.18%)</title><rect x="18.2160%" y="805" width="0.1779%" height="15" fill="rgb(217,214,3)" fg:x="94282" fg:w="921"/><text x="18.4660%" y="815.50"></text></g><g><title>start_thread (921 samples, 0.18%)</title><rect x="18.2160%" y="789" width="0.1779%" height="15" fill="rgb(240,86,28)" fg:x="94282" fg:w="921"/><text x="18.4660%" y="799.50"></text></g><g><title>thread_native_entry (921 samples, 0.18%)</title><rect x="18.2160%" y="773" width="0.1779%" height="15" fill="rgb(215,47,9)" fg:x="94282" fg:w="921"/><text x="18.4660%" y="783.50"></text></g><g><title>Thread::call_run (921 samples, 0.18%)</title><rect x="18.2160%" y="757" width="0.1779%" height="15" fill="rgb(252,25,45)" fg:x="94282" fg:w="921"/><text x="18.4660%" y="767.50"></text></g><g><title>GangWorker::loop (921 samples, 0.18%)</title><rect x="18.2160%" y="741" width="0.1779%" height="15" fill="rgb(251,164,9)" fg:x="94282" fg:w="921"/><text x="18.4660%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (102 samples, 0.02%)</title><rect x="18.3743%" y="725" width="0.0197%" height="15" fill="rgb(233,194,0)" fg:x="95101" fg:w="102"/><text x="18.6243%" y="735.50"></text></g><g><title>PosixSemaphore::wait (102 samples, 0.02%)</title><rect x="18.3743%" y="709" width="0.0197%" height="15" fill="rgb(249,111,24)" fg:x="95101" fg:w="102"/><text x="18.6243%" y="719.50"></text></g><g><title>__new_sem_wait_slow (102 samples, 0.02%)</title><rect x="18.3743%" y="693" width="0.0197%" height="15" fill="rgb(250,223,3)" fg:x="95101" fg:w="102"/><text x="18.6243%" y="703.50"></text></g><g><title>do_futex_wait (101 samples, 0.02%)</title><rect x="18.3745%" y="677" width="0.0195%" height="15" fill="rgb(236,178,37)" fg:x="95102" fg:w="101"/><text x="18.6245%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (101 samples, 0.02%)</title><rect x="18.3745%" y="661" width="0.0195%" height="15" fill="rgb(241,158,50)" fg:x="95102" fg:w="101"/><text x="18.6245%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (69 samples, 0.01%)</title><rect x="18.4166%" y="677" width="0.0133%" height="15" fill="rgb(213,121,41)" fg:x="95320" fg:w="69"/><text x="18.6666%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (156 samples, 0.03%)</title><rect x="18.4000%" y="693" width="0.0301%" height="15" fill="rgb(240,92,3)" fg:x="95234" fg:w="156"/><text x="18.6500%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (221 samples, 0.04%)</title><rect x="18.3980%" y="709" width="0.0427%" height="15" fill="rgb(205,123,3)" fg:x="95224" fg:w="221"/><text x="18.6480%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (87 samples, 0.02%)</title><rect x="18.4454%" y="613" width="0.0168%" height="15" fill="rgb(205,97,47)" fg:x="95469" fg:w="87"/><text x="18.6954%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (57 samples, 0.01%)</title><rect x="18.4512%" y="597" width="0.0110%" height="15" fill="rgb(247,152,14)" fg:x="95499" fg:w="57"/><text x="18.7012%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (113 samples, 0.02%)</title><rect x="18.4409%" y="629" width="0.0218%" height="15" fill="rgb(248,195,53)" fg:x="95446" fg:w="113"/><text x="18.6909%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (139 samples, 0.03%)</title><rect x="18.4407%" y="677" width="0.0269%" height="15" fill="rgb(226,201,16)" fg:x="95445" fg:w="139"/><text x="18.6907%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (139 samples, 0.03%)</title><rect x="18.4407%" y="661" width="0.0269%" height="15" fill="rgb(205,98,0)" fg:x="95445" fg:w="139"/><text x="18.6907%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (139 samples, 0.03%)</title><rect x="18.4407%" y="645" width="0.0269%" height="15" fill="rgb(214,191,48)" fg:x="95445" fg:w="139"/><text x="18.6907%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (156 samples, 0.03%)</title><rect x="18.4407%" y="709" width="0.0301%" height="15" fill="rgb(237,112,39)" fg:x="95445" fg:w="156"/><text x="18.6907%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (156 samples, 0.03%)</title><rect x="18.4407%" y="693" width="0.0301%" height="15" fill="rgb(247,203,27)" fg:x="95445" fg:w="156"/><text x="18.6907%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (69 samples, 0.01%)</title><rect x="18.4753%" y="613" width="0.0133%" height="15" fill="rgb(235,124,28)" fg:x="95624" fg:w="69"/><text x="18.7253%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (93 samples, 0.02%)</title><rect x="18.4718%" y="629" width="0.0180%" height="15" fill="rgb(208,207,46)" fg:x="95606" fg:w="93"/><text x="18.7218%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (123 samples, 0.02%)</title><rect x="18.4713%" y="645" width="0.0238%" height="15" fill="rgb(234,176,4)" fg:x="95603" fg:w="123"/><text x="18.7213%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (129 samples, 0.02%)</title><rect x="18.4709%" y="661" width="0.0249%" height="15" fill="rgb(230,133,28)" fg:x="95601" fg:w="129"/><text x="18.7209%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (146 samples, 0.03%)</title><rect x="18.4709%" y="709" width="0.0282%" height="15" fill="rgb(211,137,40)" fg:x="95601" fg:w="146"/><text x="18.7209%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (146 samples, 0.03%)</title><rect x="18.4709%" y="693" width="0.0282%" height="15" fill="rgb(254,35,13)" fg:x="95601" fg:w="146"/><text x="18.7209%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (146 samples, 0.03%)</title><rect x="18.4709%" y="677" width="0.0282%" height="15" fill="rgb(225,49,51)" fg:x="95601" fg:w="146"/><text x="18.7209%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (87 samples, 0.02%)</title><rect x="18.4991%" y="693" width="0.0168%" height="15" fill="rgb(251,10,15)" fg:x="95747" fg:w="87"/><text x="18.7491%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (58 samples, 0.01%)</title><rect x="18.5047%" y="677" width="0.0112%" height="15" fill="rgb(228,207,15)" fg:x="95776" fg:w="58"/><text x="18.7547%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (58 samples, 0.01%)</title><rect x="18.5047%" y="661" width="0.0112%" height="15" fill="rgb(241,99,19)" fg:x="95776" fg:w="58"/><text x="18.7547%" y="671.50"></text></g><g><title>JavaThread::oops_do (58 samples, 0.01%)</title><rect x="18.5047%" y="645" width="0.0112%" height="15" fill="rgb(207,104,49)" fg:x="95776" fg:w="58"/><text x="18.7547%" y="655.50"></text></g><g><title>G1ParTask::work (627 samples, 0.12%)</title><rect x="18.3980%" y="725" width="0.1211%" height="15" fill="rgb(234,99,18)" fg:x="95224" fg:w="627"/><text x="18.6480%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (104 samples, 0.02%)</title><rect x="18.4991%" y="709" width="0.0201%" height="15" fill="rgb(213,191,49)" fg:x="95747" fg:w="104"/><text x="18.7491%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="18.5350%" y="501" width="0.0120%" height="15" fill="rgb(210,226,19)" fg:x="95933" fg:w="62"/><text x="18.7850%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="18.5350%" y="485" width="0.0120%" height="15" fill="rgb(229,97,18)" fg:x="95933" fg:w="62"/><text x="18.7850%" y="495.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="18.5350%" y="469" width="0.0120%" height="15" fill="rgb(211,167,15)" fg:x="95933" fg:w="62"/><text x="18.7850%" y="479.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="18.5346%" y="517" width="0.0129%" height="15" fill="rgb(210,169,34)" fg:x="95931" fg:w="67"/><text x="18.7846%" y="527.50"></text></g><g><title>futex_wait_queue_me (79 samples, 0.02%)</title><rect x="18.5337%" y="565" width="0.0153%" height="15" fill="rgb(241,121,31)" fg:x="95926" fg:w="79"/><text x="18.7837%" y="575.50"></text></g><g><title>schedule (78 samples, 0.02%)</title><rect x="18.5339%" y="549" width="0.0151%" height="15" fill="rgb(232,40,11)" fg:x="95927" fg:w="78"/><text x="18.7839%" y="559.50"></text></g><g><title>__schedule (78 samples, 0.02%)</title><rect x="18.5339%" y="533" width="0.0151%" height="15" fill="rgb(205,86,26)" fg:x="95927" fg:w="78"/><text x="18.7839%" y="543.50"></text></g><g><title>__GI___clone (783 samples, 0.15%)</title><rect x="18.3978%" y="805" width="0.1513%" height="15" fill="rgb(231,126,28)" fg:x="95223" fg:w="783"/><text x="18.6478%" y="815.50"></text></g><g><title>start_thread (783 samples, 0.15%)</title><rect x="18.3978%" y="789" width="0.1513%" height="15" fill="rgb(219,221,18)" fg:x="95223" fg:w="783"/><text x="18.6478%" y="799.50"></text></g><g><title>thread_native_entry (783 samples, 0.15%)</title><rect x="18.3978%" y="773" width="0.1513%" height="15" fill="rgb(211,40,0)" fg:x="95223" fg:w="783"/><text x="18.6478%" y="783.50"></text></g><g><title>Thread::call_run (783 samples, 0.15%)</title><rect x="18.3978%" y="757" width="0.1513%" height="15" fill="rgb(239,85,43)" fg:x="95223" fg:w="783"/><text x="18.6478%" y="767.50"></text></g><g><title>GangWorker::loop (783 samples, 0.15%)</title><rect x="18.3978%" y="741" width="0.1513%" height="15" fill="rgb(231,55,21)" fg:x="95223" fg:w="783"/><text x="18.6478%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (84 samples, 0.02%)</title><rect x="18.5329%" y="725" width="0.0162%" height="15" fill="rgb(225,184,43)" fg:x="95922" fg:w="84"/><text x="18.7829%" y="735.50"></text></g><g><title>PosixSemaphore::wait (83 samples, 0.02%)</title><rect x="18.5331%" y="709" width="0.0160%" height="15" fill="rgb(251,158,41)" fg:x="95923" fg:w="83"/><text x="18.7831%" y="719.50"></text></g><g><title>__new_sem_wait_slow (83 samples, 0.02%)</title><rect x="18.5331%" y="693" width="0.0160%" height="15" fill="rgb(234,159,37)" fg:x="95923" fg:w="83"/><text x="18.7831%" y="703.50"></text></g><g><title>do_futex_wait (83 samples, 0.02%)</title><rect x="18.5331%" y="677" width="0.0160%" height="15" fill="rgb(216,204,22)" fg:x="95923" fg:w="83"/><text x="18.7831%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (83 samples, 0.02%)</title><rect x="18.5331%" y="661" width="0.0160%" height="15" fill="rgb(214,17,3)" fg:x="95923" fg:w="83"/><text x="18.7831%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.02%)</title><rect x="18.5331%" y="645" width="0.0160%" height="15" fill="rgb(212,111,17)" fg:x="95923" fg:w="83"/><text x="18.7831%" y="655.50"></text></g><g><title>do_syscall_64 (82 samples, 0.02%)</title><rect x="18.5333%" y="629" width="0.0158%" height="15" fill="rgb(221,157,24)" fg:x="95924" fg:w="82"/><text x="18.7833%" y="639.50"></text></g><g><title>__x64_sys_futex (81 samples, 0.02%)</title><rect x="18.5335%" y="613" width="0.0156%" height="15" fill="rgb(252,16,13)" fg:x="95925" fg:w="81"/><text x="18.7835%" y="623.50"></text></g><g><title>do_futex (81 samples, 0.02%)</title><rect x="18.5335%" y="597" width="0.0156%" height="15" fill="rgb(221,62,2)" fg:x="95925" fg:w="81"/><text x="18.7835%" y="607.50"></text></g><g><title>futex_wait (80 samples, 0.02%)</title><rect x="18.5337%" y="581" width="0.0155%" height="15" fill="rgb(247,87,22)" fg:x="95926" fg:w="80"/><text x="18.7837%" y="591.50"></text></g><g><title>GC_Thread#3 (807 samples, 0.16%)</title><rect x="18.3940%" y="821" width="0.1559%" height="15" fill="rgb(215,73,9)" fg:x="95203" fg:w="807"/><text x="18.6440%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (68 samples, 0.01%)</title><rect x="18.5694%" y="677" width="0.0131%" height="15" fill="rgb(207,175,33)" fg:x="96111" fg:w="68"/><text x="18.8194%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (141 samples, 0.03%)</title><rect x="18.5565%" y="693" width="0.0272%" height="15" fill="rgb(243,129,54)" fg:x="96044" fg:w="141"/><text x="18.8065%" y="703.50"></text></g><g><title>SpinPause (137 samples, 0.03%)</title><rect x="18.5851%" y="693" width="0.0265%" height="15" fill="rgb(227,119,45)" fg:x="96192" fg:w="137"/><text x="18.8351%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (303 samples, 0.06%)</title><rect x="18.5543%" y="709" width="0.0585%" height="15" fill="rgb(205,109,36)" fg:x="96033" fg:w="303"/><text x="18.8043%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (86 samples, 0.02%)</title><rect x="18.6204%" y="597" width="0.0166%" height="15" fill="rgb(205,6,39)" fg:x="96375" fg:w="86"/><text x="18.8704%" y="607.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (110 samples, 0.02%)</title><rect x="18.6162%" y="613" width="0.0213%" height="15" fill="rgb(221,32,16)" fg:x="96353" fg:w="110"/><text x="18.8662%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (135 samples, 0.03%)</title><rect x="18.6129%" y="629" width="0.0261%" height="15" fill="rgb(228,144,50)" fg:x="96336" fg:w="135"/><text x="18.8629%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (145 samples, 0.03%)</title><rect x="18.6129%" y="677" width="0.0280%" height="15" fill="rgb(229,201,53)" fg:x="96336" fg:w="145"/><text x="18.8629%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (145 samples, 0.03%)</title><rect x="18.6129%" y="661" width="0.0280%" height="15" fill="rgb(249,153,27)" fg:x="96336" fg:w="145"/><text x="18.8629%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (145 samples, 0.03%)</title><rect x="18.6129%" y="645" width="0.0280%" height="15" fill="rgb(227,106,25)" fg:x="96336" fg:w="145"/><text x="18.8629%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (172 samples, 0.03%)</title><rect x="18.6129%" y="709" width="0.0332%" height="15" fill="rgb(230,65,29)" fg:x="96336" fg:w="172"/><text x="18.8629%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (172 samples, 0.03%)</title><rect x="18.6129%" y="693" width="0.0332%" height="15" fill="rgb(221,57,46)" fg:x="96336" fg:w="172"/><text x="18.8629%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (62 samples, 0.01%)</title><rect x="18.6467%" y="629" width="0.0120%" height="15" fill="rgb(229,161,17)" fg:x="96511" fg:w="62"/><text x="18.8967%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (83 samples, 0.02%)</title><rect x="18.6467%" y="645" width="0.0160%" height="15" fill="rgb(222,213,11)" fg:x="96511" fg:w="83"/><text x="18.8967%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (87 samples, 0.02%)</title><rect x="18.6465%" y="661" width="0.0168%" height="15" fill="rgb(235,35,13)" fg:x="96510" fg:w="87"/><text x="18.8965%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (93 samples, 0.02%)</title><rect x="18.6461%" y="709" width="0.0180%" height="15" fill="rgb(233,158,34)" fg:x="96508" fg:w="93"/><text x="18.8961%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (93 samples, 0.02%)</title><rect x="18.6461%" y="693" width="0.0180%" height="15" fill="rgb(215,151,48)" fg:x="96508" fg:w="93"/><text x="18.8961%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (93 samples, 0.02%)</title><rect x="18.6461%" y="677" width="0.0180%" height="15" fill="rgb(229,84,14)" fg:x="96508" fg:w="93"/><text x="18.8961%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (68 samples, 0.01%)</title><rect x="18.6643%" y="677" width="0.0131%" height="15" fill="rgb(229,68,14)" fg:x="96602" fg:w="68"/><text x="18.9143%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (67 samples, 0.01%)</title><rect x="18.6645%" y="661" width="0.0129%" height="15" fill="rgb(243,106,26)" fg:x="96603" fg:w="67"/><text x="18.9145%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (67 samples, 0.01%)</title><rect x="18.6645%" y="645" width="0.0129%" height="15" fill="rgb(206,45,38)" fg:x="96603" fg:w="67"/><text x="18.9145%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.01%)</title><rect x="18.6664%" y="629" width="0.0110%" height="15" fill="rgb(226,6,15)" fg:x="96613" fg:w="57"/><text x="18.9164%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (162 samples, 0.03%)</title><rect x="18.6643%" y="693" width="0.0313%" height="15" fill="rgb(232,22,54)" fg:x="96602" fg:w="162"/><text x="18.9143%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (94 samples, 0.02%)</title><rect x="18.6774%" y="677" width="0.0182%" height="15" fill="rgb(229,222,32)" fg:x="96670" fg:w="94"/><text x="18.9274%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (94 samples, 0.02%)</title><rect x="18.6774%" y="661" width="0.0182%" height="15" fill="rgb(228,62,29)" fg:x="96670" fg:w="94"/><text x="18.9274%" y="671.50"></text></g><g><title>JavaThread::oops_do (94 samples, 0.02%)</title><rect x="18.6774%" y="645" width="0.0182%" height="15" fill="rgb(251,103,34)" fg:x="96670" fg:w="94"/><text x="18.9274%" y="655.50"></text></g><g><title>G1ParTask::work (745 samples, 0.14%)</title><rect x="18.5543%" y="725" width="0.1439%" height="15" fill="rgb(233,12,30)" fg:x="96033" fg:w="745"/><text x="18.8043%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (177 samples, 0.03%)</title><rect x="18.6641%" y="709" width="0.0342%" height="15" fill="rgb(238,52,0)" fg:x="96601" fg:w="177"/><text x="18.9141%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (89 samples, 0.02%)</title><rect x="18.7170%" y="501" width="0.0172%" height="15" fill="rgb(223,98,5)" fg:x="96875" fg:w="89"/><text x="18.9670%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (87 samples, 0.02%)</title><rect x="18.7174%" y="485" width="0.0168%" height="15" fill="rgb(228,75,37)" fg:x="96877" fg:w="87"/><text x="18.9674%" y="495.50"></text></g><g><title>native_write_msr (87 samples, 0.02%)</title><rect x="18.7174%" y="469" width="0.0168%" height="15" fill="rgb(205,115,49)" fg:x="96877" fg:w="87"/><text x="18.9674%" y="479.50"></text></g><g><title>finish_task_switch (93 samples, 0.02%)</title><rect x="18.7164%" y="517" width="0.0180%" height="15" fill="rgb(250,154,43)" fg:x="96872" fg:w="93"/><text x="18.9664%" y="527.50"></text></g><g><title>futex_wait_queue_me (106 samples, 0.02%)</title><rect x="18.7153%" y="565" width="0.0205%" height="15" fill="rgb(226,43,29)" fg:x="96866" fg:w="106"/><text x="18.9653%" y="575.50"></text></g><g><title>schedule (106 samples, 0.02%)</title><rect x="18.7153%" y="549" width="0.0205%" height="15" fill="rgb(249,228,39)" fg:x="96866" fg:w="106"/><text x="18.9653%" y="559.50"></text></g><g><title>__schedule (106 samples, 0.02%)</title><rect x="18.7153%" y="533" width="0.0205%" height="15" fill="rgb(216,79,43)" fg:x="96866" fg:w="106"/><text x="18.9653%" y="543.50"></text></g><g><title>do_syscall_64 (111 samples, 0.02%)</title><rect x="18.7151%" y="629" width="0.0214%" height="15" fill="rgb(228,95,12)" fg:x="96865" fg:w="111"/><text x="18.9651%" y="639.50"></text></g><g><title>__x64_sys_futex (110 samples, 0.02%)</title><rect x="18.7153%" y="613" width="0.0213%" height="15" fill="rgb(249,221,15)" fg:x="96866" fg:w="110"/><text x="18.9653%" y="623.50"></text></g><g><title>do_futex (110 samples, 0.02%)</title><rect x="18.7153%" y="597" width="0.0213%" height="15" fill="rgb(233,34,13)" fg:x="96866" fg:w="110"/><text x="18.9653%" y="607.50"></text></g><g><title>futex_wait (110 samples, 0.02%)</title><rect x="18.7153%" y="581" width="0.0213%" height="15" fill="rgb(214,103,39)" fg:x="96866" fg:w="110"/><text x="18.9653%" y="591.50"></text></g><g><title>__GI___clone (951 samples, 0.18%)</title><rect x="18.5536%" y="805" width="0.1837%" height="15" fill="rgb(251,126,39)" fg:x="96029" fg:w="951"/><text x="18.8036%" y="815.50"></text></g><g><title>start_thread (951 samples, 0.18%)</title><rect x="18.5536%" y="789" width="0.1837%" height="15" fill="rgb(214,216,36)" fg:x="96029" fg:w="951"/><text x="18.8036%" y="799.50"></text></g><g><title>thread_native_entry (951 samples, 0.18%)</title><rect x="18.5536%" y="773" width="0.1837%" height="15" fill="rgb(220,221,8)" fg:x="96029" fg:w="951"/><text x="18.8036%" y="783.50"></text></g><g><title>Thread::call_run (951 samples, 0.18%)</title><rect x="18.5536%" y="757" width="0.1837%" height="15" fill="rgb(240,216,3)" fg:x="96029" fg:w="951"/><text x="18.8036%" y="767.50"></text></g><g><title>GangWorker::loop (951 samples, 0.18%)</title><rect x="18.5536%" y="741" width="0.1837%" height="15" fill="rgb(232,218,17)" fg:x="96029" fg:w="951"/><text x="18.8036%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (119 samples, 0.02%)</title><rect x="18.7143%" y="725" width="0.0230%" height="15" fill="rgb(229,163,45)" fg:x="96861" fg:w="119"/><text x="18.9643%" y="735.50"></text></g><g><title>PosixSemaphore::wait (119 samples, 0.02%)</title><rect x="18.7143%" y="709" width="0.0230%" height="15" fill="rgb(231,110,42)" fg:x="96861" fg:w="119"/><text x="18.9643%" y="719.50"></text></g><g><title>__new_sem_wait_slow (118 samples, 0.02%)</title><rect x="18.7145%" y="693" width="0.0228%" height="15" fill="rgb(208,170,48)" fg:x="96862" fg:w="118"/><text x="18.9645%" y="703.50"></text></g><g><title>do_futex_wait (118 samples, 0.02%)</title><rect x="18.7145%" y="677" width="0.0228%" height="15" fill="rgb(239,116,25)" fg:x="96862" fg:w="118"/><text x="18.9645%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (118 samples, 0.02%)</title><rect x="18.7145%" y="661" width="0.0228%" height="15" fill="rgb(219,200,50)" fg:x="96862" fg:w="118"/><text x="18.9645%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (115 samples, 0.02%)</title><rect x="18.7151%" y="645" width="0.0222%" height="15" fill="rgb(245,200,0)" fg:x="96865" fg:w="115"/><text x="18.9651%" y="655.50"></text></g><g><title>GC_Thread#4 (971 samples, 0.19%)</title><rect x="18.5499%" y="821" width="0.1876%" height="15" fill="rgb(245,119,33)" fg:x="96010" fg:w="971"/><text x="18.7999%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (88 samples, 0.02%)</title><rect x="18.7624%" y="677" width="0.0170%" height="15" fill="rgb(231,125,12)" fg:x="97110" fg:w="88"/><text x="19.0124%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (174 samples, 0.03%)</title><rect x="18.7472%" y="693" width="0.0336%" height="15" fill="rgb(216,96,41)" fg:x="97031" fg:w="174"/><text x="18.9972%" y="703.50"></text></g><g><title>SpinPause (137 samples, 0.03%)</title><rect x="18.7831%" y="693" width="0.0265%" height="15" fill="rgb(248,43,45)" fg:x="97217" fg:w="137"/><text x="19.0331%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (339 samples, 0.07%)</title><rect x="18.7448%" y="709" width="0.0655%" height="15" fill="rgb(217,222,7)" fg:x="97019" fg:w="339"/><text x="18.9948%" y="719.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (78 samples, 0.02%)</title><rect x="18.8190%" y="597" width="0.0151%" height="15" fill="rgb(233,28,6)" fg:x="97403" fg:w="78"/><text x="19.0690%" y="607.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (104 samples, 0.02%)</title><rect x="18.8142%" y="613" width="0.0201%" height="15" fill="rgb(231,218,15)" fg:x="97378" fg:w="104"/><text x="19.0642%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (130 samples, 0.03%)</title><rect x="18.8105%" y="629" width="0.0251%" height="15" fill="rgb(226,171,48)" fg:x="97359" fg:w="130"/><text x="19.0605%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (153 samples, 0.03%)</title><rect x="18.8105%" y="677" width="0.0296%" height="15" fill="rgb(235,201,9)" fg:x="97359" fg:w="153"/><text x="19.0605%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (153 samples, 0.03%)</title><rect x="18.8105%" y="661" width="0.0296%" height="15" fill="rgb(217,80,15)" fg:x="97359" fg:w="153"/><text x="19.0605%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (153 samples, 0.03%)</title><rect x="18.8105%" y="645" width="0.0296%" height="15" fill="rgb(219,152,8)" fg:x="97359" fg:w="153"/><text x="19.0605%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (160 samples, 0.03%)</title><rect x="18.8105%" y="709" width="0.0309%" height="15" fill="rgb(243,107,38)" fg:x="97359" fg:w="160"/><text x="19.0605%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (160 samples, 0.03%)</title><rect x="18.8105%" y="693" width="0.0309%" height="15" fill="rgb(231,17,5)" fg:x="97359" fg:w="160"/><text x="19.0605%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (84 samples, 0.02%)</title><rect x="18.8416%" y="629" width="0.0162%" height="15" fill="rgb(209,25,54)" fg:x="97520" fg:w="84"/><text x="19.0916%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (66 samples, 0.01%)</title><rect x="18.8451%" y="613" width="0.0128%" height="15" fill="rgb(219,0,2)" fg:x="97538" fg:w="66"/><text x="19.0951%" y="623.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (112 samples, 0.02%)</title><rect x="18.8416%" y="645" width="0.0216%" height="15" fill="rgb(246,9,5)" fg:x="97520" fg:w="112"/><text x="19.0916%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (118 samples, 0.02%)</title><rect x="18.8414%" y="661" width="0.0228%" height="15" fill="rgb(226,159,4)" fg:x="97519" fg:w="118"/><text x="19.0914%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (128 samples, 0.02%)</title><rect x="18.8414%" y="709" width="0.0247%" height="15" fill="rgb(219,175,34)" fg:x="97519" fg:w="128"/><text x="19.0914%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (128 samples, 0.02%)</title><rect x="18.8414%" y="693" width="0.0247%" height="15" fill="rgb(236,10,46)" fg:x="97519" fg:w="128"/><text x="19.0914%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (128 samples, 0.02%)</title><rect x="18.8414%" y="677" width="0.0247%" height="15" fill="rgb(240,211,16)" fg:x="97519" fg:w="128"/><text x="19.0914%" y="687.50"></text></g><g><title>G1RootProcessor::process_java_roots (125 samples, 0.02%)</title><rect x="18.8666%" y="693" width="0.0242%" height="15" fill="rgb(205,3,43)" fg:x="97649" fg:w="125"/><text x="19.1166%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (125 samples, 0.02%)</title><rect x="18.8666%" y="677" width="0.0242%" height="15" fill="rgb(245,7,22)" fg:x="97649" fg:w="125"/><text x="19.1166%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (125 samples, 0.02%)</title><rect x="18.8666%" y="661" width="0.0242%" height="15" fill="rgb(239,132,32)" fg:x="97649" fg:w="125"/><text x="19.1166%" y="671.50"></text></g><g><title>JavaThread::oops_do (125 samples, 0.02%)</title><rect x="18.8666%" y="645" width="0.0242%" height="15" fill="rgb(228,202,34)" fg:x="97649" fg:w="125"/><text x="19.1166%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (90 samples, 0.02%)</title><rect x="18.8733%" y="629" width="0.0174%" height="15" fill="rgb(254,200,22)" fg:x="97684" fg:w="90"/><text x="19.1233%" y="639.50"></text></g><g><title>G1RootProcessor::evacuate_roots (140 samples, 0.03%)</title><rect x="18.8662%" y="709" width="0.0270%" height="15" fill="rgb(219,10,39)" fg:x="97647" fg:w="140"/><text x="19.1162%" y="719.50"></text></g><g><title>G1ParTask::work (769 samples, 0.15%)</title><rect x="18.7448%" y="725" width="0.1486%" height="15" fill="rgb(226,210,39)" fg:x="97019" fg:w="769"/><text x="18.9948%" y="735.50"></text></g><g><title>__GI___clone (934 samples, 0.18%)</title><rect x="18.7429%" y="805" width="0.1805%" height="15" fill="rgb(208,219,16)" fg:x="97009" fg:w="934"/><text x="18.9929%" y="815.50"></text></g><g><title>start_thread (934 samples, 0.18%)</title><rect x="18.7429%" y="789" width="0.1805%" height="15" fill="rgb(216,158,51)" fg:x="97009" fg:w="934"/><text x="18.9929%" y="799.50"></text></g><g><title>thread_native_entry (934 samples, 0.18%)</title><rect x="18.7429%" y="773" width="0.1805%" height="15" fill="rgb(233,14,44)" fg:x="97009" fg:w="934"/><text x="18.9929%" y="783.50"></text></g><g><title>Thread::call_run (934 samples, 0.18%)</title><rect x="18.7429%" y="757" width="0.1805%" height="15" fill="rgb(237,97,39)" fg:x="97009" fg:w="934"/><text x="18.9929%" y="767.50"></text></g><g><title>GangWorker::loop (934 samples, 0.18%)</title><rect x="18.7429%" y="741" width="0.1805%" height="15" fill="rgb(218,198,43)" fg:x="97009" fg:w="934"/><text x="18.9929%" y="751.50"></text></g><g><title>GC_Thread#5 (963 samples, 0.19%)</title><rect x="18.7375%" y="821" width="0.1861%" height="15" fill="rgb(231,104,20)" fg:x="96981" fg:w="963"/><text x="18.9875%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (100 samples, 0.02%)</title><rect x="18.9431%" y="677" width="0.0193%" height="15" fill="rgb(254,36,13)" fg:x="98045" fg:w="100"/><text x="19.1931%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (176 samples, 0.03%)</title><rect x="18.9290%" y="693" width="0.0340%" height="15" fill="rgb(248,14,50)" fg:x="97972" fg:w="176"/><text x="19.1790%" y="703.50"></text></g><g><title>SpinPause (136 samples, 0.03%)</title><rect x="18.9647%" y="693" width="0.0263%" height="15" fill="rgb(217,107,29)" fg:x="98157" fg:w="136"/><text x="19.2147%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (335 samples, 0.06%)</title><rect x="18.9267%" y="709" width="0.0647%" height="15" fill="rgb(251,169,33)" fg:x="97960" fg:w="335"/><text x="19.1767%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (128 samples, 0.02%)</title><rect x="18.9972%" y="613" width="0.0247%" height="15" fill="rgb(217,108,32)" fg:x="98325" fg:w="128"/><text x="19.2472%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (93 samples, 0.02%)</title><rect x="19.0039%" y="597" width="0.0180%" height="15" fill="rgb(219,66,42)" fg:x="98360" fg:w="93"/><text x="19.2539%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (165 samples, 0.03%)</title><rect x="18.9914%" y="629" width="0.0319%" height="15" fill="rgb(206,180,7)" fg:x="98295" fg:w="165"/><text x="19.2414%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (176 samples, 0.03%)</title><rect x="18.9914%" y="677" width="0.0340%" height="15" fill="rgb(208,226,31)" fg:x="98295" fg:w="176"/><text x="19.2414%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (176 samples, 0.03%)</title><rect x="18.9914%" y="661" width="0.0340%" height="15" fill="rgb(218,26,49)" fg:x="98295" fg:w="176"/><text x="19.2414%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (176 samples, 0.03%)</title><rect x="18.9914%" y="645" width="0.0340%" height="15" fill="rgb(233,197,48)" fg:x="98295" fg:w="176"/><text x="19.2414%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (223 samples, 0.04%)</title><rect x="18.9914%" y="709" width="0.0431%" height="15" fill="rgb(252,181,51)" fg:x="98295" fg:w="223"/><text x="19.2414%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (223 samples, 0.04%)</title><rect x="18.9914%" y="693" width="0.0431%" height="15" fill="rgb(253,90,19)" fg:x="98295" fg:w="223"/><text x="19.2414%" y="703.50"></text></g><g><title>G1RemSet::scan_rem_set (57 samples, 0.01%)</title><rect x="19.0345%" y="709" width="0.0110%" height="15" fill="rgb(215,171,30)" fg:x="98518" fg:w="57"/><text x="19.2845%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (57 samples, 0.01%)</title><rect x="19.0345%" y="693" width="0.0110%" height="15" fill="rgb(214,222,9)" fg:x="98518" fg:w="57"/><text x="19.2845%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (57 samples, 0.01%)</title><rect x="19.0345%" y="677" width="0.0110%" height="15" fill="rgb(223,3,22)" fg:x="98518" fg:w="57"/><text x="19.2845%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (75 samples, 0.01%)</title><rect x="19.0515%" y="613" width="0.0145%" height="15" fill="rgb(225,196,46)" fg:x="98606" fg:w="75"/><text x="19.3015%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (65 samples, 0.01%)</title><rect x="19.0534%" y="597" width="0.0126%" height="15" fill="rgb(209,110,37)" fg:x="98616" fg:w="65"/><text x="19.3034%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (106 samples, 0.02%)</title><rect x="19.0457%" y="677" width="0.0205%" height="15" fill="rgb(249,89,12)" fg:x="98576" fg:w="106"/><text x="19.2957%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (103 samples, 0.02%)</title><rect x="19.0462%" y="661" width="0.0199%" height="15" fill="rgb(226,27,33)" fg:x="98579" fg:w="103"/><text x="19.2962%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (103 samples, 0.02%)</title><rect x="19.0462%" y="645" width="0.0199%" height="15" fill="rgb(213,82,22)" fg:x="98579" fg:w="103"/><text x="19.2962%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (95 samples, 0.02%)</title><rect x="19.0478%" y="629" width="0.0184%" height="15" fill="rgb(248,140,0)" fg:x="98587" fg:w="95"/><text x="19.2978%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (118 samples, 0.02%)</title><rect x="19.0457%" y="693" width="0.0228%" height="15" fill="rgb(228,106,3)" fg:x="98576" fg:w="118"/><text x="19.2957%" y="703.50"></text></g><g><title>G1ParTask::work (772 samples, 0.15%)</title><rect x="18.9267%" y="725" width="0.1492%" height="15" fill="rgb(209,23,37)" fg:x="97960" fg:w="772"/><text x="19.1767%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (157 samples, 0.03%)</title><rect x="19.0455%" y="709" width="0.0303%" height="15" fill="rgb(241,93,50)" fg:x="98575" fg:w="157"/><text x="19.2955%" y="719.50"></text></g><g><title>finish_task_switch (73 samples, 0.01%)</title><rect x="19.0957%" y="517" width="0.0141%" height="15" fill="rgb(253,46,43)" fg:x="98835" fg:w="73"/><text x="19.3457%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (72 samples, 0.01%)</title><rect x="19.0959%" y="501" width="0.0139%" height="15" fill="rgb(226,206,43)" fg:x="98836" fg:w="72"/><text x="19.3459%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (70 samples, 0.01%)</title><rect x="19.0963%" y="485" width="0.0135%" height="15" fill="rgb(217,54,7)" fg:x="98838" fg:w="70"/><text x="19.3463%" y="495.50"></text></g><g><title>native_write_msr (69 samples, 0.01%)</title><rect x="19.0965%" y="469" width="0.0133%" height="15" fill="rgb(223,5,52)" fg:x="98839" fg:w="69"/><text x="19.3465%" y="479.50"></text></g><g><title>futex_wait_queue_me (90 samples, 0.02%)</title><rect x="19.0940%" y="565" width="0.0174%" height="15" fill="rgb(206,52,46)" fg:x="98826" fg:w="90"/><text x="19.3440%" y="575.50"></text></g><g><title>schedule (87 samples, 0.02%)</title><rect x="19.0946%" y="549" width="0.0168%" height="15" fill="rgb(253,136,11)" fg:x="98829" fg:w="87"/><text x="19.3446%" y="559.50"></text></g><g><title>__schedule (86 samples, 0.02%)</title><rect x="19.0947%" y="533" width="0.0166%" height="15" fill="rgb(208,106,33)" fg:x="98830" fg:w="86"/><text x="19.3447%" y="543.50"></text></g><g><title>do_syscall_64 (95 samples, 0.02%)</title><rect x="19.0938%" y="629" width="0.0184%" height="15" fill="rgb(206,54,4)" fg:x="98825" fg:w="95"/><text x="19.3438%" y="639.50"></text></g><g><title>__x64_sys_futex (95 samples, 0.02%)</title><rect x="19.0938%" y="613" width="0.0184%" height="15" fill="rgb(213,3,15)" fg:x="98825" fg:w="95"/><text x="19.3438%" y="623.50"></text></g><g><title>do_futex (95 samples, 0.02%)</title><rect x="19.0938%" y="597" width="0.0184%" height="15" fill="rgb(252,211,39)" fg:x="98825" fg:w="95"/><text x="19.3438%" y="607.50"></text></g><g><title>futex_wait (95 samples, 0.02%)</title><rect x="19.0938%" y="581" width="0.0184%" height="15" fill="rgb(223,6,36)" fg:x="98825" fg:w="95"/><text x="19.3438%" y="591.50"></text></g><g><title>__GI___clone (962 samples, 0.19%)</title><rect x="18.9267%" y="805" width="0.1859%" height="15" fill="rgb(252,169,45)" fg:x="97960" fg:w="962"/><text x="19.1767%" y="815.50"></text></g><g><title>start_thread (962 samples, 0.19%)</title><rect x="18.9267%" y="789" width="0.1859%" height="15" fill="rgb(212,48,26)" fg:x="97960" fg:w="962"/><text x="19.1767%" y="799.50"></text></g><g><title>thread_native_entry (962 samples, 0.19%)</title><rect x="18.9267%" y="773" width="0.1859%" height="15" fill="rgb(251,102,48)" fg:x="97960" fg:w="962"/><text x="19.1767%" y="783.50"></text></g><g><title>Thread::call_run (962 samples, 0.19%)</title><rect x="18.9267%" y="757" width="0.1859%" height="15" fill="rgb(243,208,16)" fg:x="97960" fg:w="962"/><text x="19.1767%" y="767.50"></text></g><g><title>GangWorker::loop (962 samples, 0.19%)</title><rect x="18.9267%" y="741" width="0.1859%" height="15" fill="rgb(219,96,24)" fg:x="97960" fg:w="962"/><text x="19.1767%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (98 samples, 0.02%)</title><rect x="19.0936%" y="725" width="0.0189%" height="15" fill="rgb(219,33,29)" fg:x="98824" fg:w="98"/><text x="19.3436%" y="735.50"></text></g><g><title>PosixSemaphore::wait (98 samples, 0.02%)</title><rect x="19.0936%" y="709" width="0.0189%" height="15" fill="rgb(223,176,5)" fg:x="98824" fg:w="98"/><text x="19.3436%" y="719.50"></text></g><g><title>__new_sem_wait_slow (97 samples, 0.02%)</title><rect x="19.0938%" y="693" width="0.0187%" height="15" fill="rgb(228,140,14)" fg:x="98825" fg:w="97"/><text x="19.3438%" y="703.50"></text></g><g><title>do_futex_wait (97 samples, 0.02%)</title><rect x="19.0938%" y="677" width="0.0187%" height="15" fill="rgb(217,179,31)" fg:x="98825" fg:w="97"/><text x="19.3438%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (97 samples, 0.02%)</title><rect x="19.0938%" y="661" width="0.0187%" height="15" fill="rgb(230,9,30)" fg:x="98825" fg:w="97"/><text x="19.3438%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (97 samples, 0.02%)</title><rect x="19.0938%" y="645" width="0.0187%" height="15" fill="rgb(230,136,20)" fg:x="98825" fg:w="97"/><text x="19.3438%" y="655.50"></text></g><g><title>GC_Thread#6 (981 samples, 0.19%)</title><rect x="18.9236%" y="821" width="0.1895%" height="15" fill="rgb(215,210,22)" fg:x="97944" fg:w="981"/><text x="19.1736%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (70 samples, 0.01%)</title><rect x="19.1338%" y="677" width="0.0135%" height="15" fill="rgb(218,43,5)" fg:x="99032" fg:w="70"/><text x="19.3838%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (134 samples, 0.03%)</title><rect x="19.1220%" y="693" width="0.0259%" height="15" fill="rgb(216,11,5)" fg:x="98971" fg:w="134"/><text x="19.3720%" y="703.50"></text></g><g><title>SpinPause (131 samples, 0.03%)</title><rect x="19.1488%" y="693" width="0.0253%" height="15" fill="rgb(209,82,29)" fg:x="99110" fg:w="131"/><text x="19.3988%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (283 samples, 0.05%)</title><rect x="19.1201%" y="709" width="0.0547%" height="15" fill="rgb(244,115,12)" fg:x="98961" fg:w="283"/><text x="19.3701%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (131 samples, 0.03%)</title><rect x="19.1799%" y="613" width="0.0253%" height="15" fill="rgb(222,82,18)" fg:x="99271" fg:w="131"/><text x="19.4299%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (92 samples, 0.02%)</title><rect x="19.1875%" y="597" width="0.0178%" height="15" fill="rgb(249,227,8)" fg:x="99310" fg:w="92"/><text x="19.4375%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (160 samples, 0.03%)</title><rect x="19.1755%" y="629" width="0.0309%" height="15" fill="rgb(253,141,45)" fg:x="99248" fg:w="160"/><text x="19.4255%" y="639.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (189 samples, 0.04%)</title><rect x="19.1751%" y="677" width="0.0365%" height="15" fill="rgb(234,184,4)" fg:x="99246" fg:w="189"/><text x="19.4251%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (189 samples, 0.04%)</title><rect x="19.1751%" y="661" width="0.0365%" height="15" fill="rgb(218,194,23)" fg:x="99246" fg:w="189"/><text x="19.4251%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (188 samples, 0.04%)</title><rect x="19.1753%" y="645" width="0.0363%" height="15" fill="rgb(235,66,41)" fg:x="99247" fg:w="188"/><text x="19.4253%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (207 samples, 0.04%)</title><rect x="19.1751%" y="709" width="0.0400%" height="15" fill="rgb(245,217,1)" fg:x="99246" fg:w="207"/><text x="19.4251%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (207 samples, 0.04%)</title><rect x="19.1751%" y="693" width="0.0400%" height="15" fill="rgb(229,91,1)" fg:x="99246" fg:w="207"/><text x="19.4251%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (59 samples, 0.01%)</title><rect x="19.2186%" y="613" width="0.0114%" height="15" fill="rgb(207,101,30)" fg:x="99471" fg:w="59"/><text x="19.4686%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (83 samples, 0.02%)</title><rect x="19.2151%" y="629" width="0.0160%" height="15" fill="rgb(223,82,49)" fg:x="99453" fg:w="83"/><text x="19.4651%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (108 samples, 0.02%)</title><rect x="19.2151%" y="645" width="0.0209%" height="15" fill="rgb(218,167,17)" fg:x="99453" fg:w="108"/><text x="19.4651%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (110 samples, 0.02%)</title><rect x="19.2151%" y="661" width="0.0213%" height="15" fill="rgb(208,103,14)" fg:x="99453" fg:w="110"/><text x="19.4651%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (130 samples, 0.03%)</title><rect x="19.2151%" y="709" width="0.0251%" height="15" fill="rgb(238,20,8)" fg:x="99453" fg:w="130"/><text x="19.4651%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (130 samples, 0.03%)</title><rect x="19.2151%" y="693" width="0.0251%" height="15" fill="rgb(218,80,54)" fg:x="99453" fg:w="130"/><text x="19.4651%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (130 samples, 0.03%)</title><rect x="19.2151%" y="677" width="0.0251%" height="15" fill="rgb(240,144,17)" fg:x="99453" fg:w="130"/><text x="19.4651%" y="687.50"></text></g><g><title>InterpreterOopMap::iterate_oop (53 samples, 0.01%)</title><rect x="19.2453%" y="613" width="0.0102%" height="15" fill="rgb(245,27,50)" fg:x="99609" fg:w="53"/><text x="19.4953%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.01%)</title><rect x="19.2453%" y="597" width="0.0102%" height="15" fill="rgb(251,51,7)" fg:x="99609" fg:w="53"/><text x="19.4953%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (60 samples, 0.01%)</title><rect x="19.2447%" y="629" width="0.0116%" height="15" fill="rgb(245,217,29)" fg:x="99606" fg:w="60"/><text x="19.4947%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (77 samples, 0.01%)</title><rect x="19.2416%" y="693" width="0.0149%" height="15" fill="rgb(221,176,29)" fg:x="99590" fg:w="77"/><text x="19.4916%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (76 samples, 0.01%)</title><rect x="19.2418%" y="677" width="0.0147%" height="15" fill="rgb(212,180,24)" fg:x="99591" fg:w="76"/><text x="19.4918%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (76 samples, 0.01%)</title><rect x="19.2418%" y="661" width="0.0147%" height="15" fill="rgb(254,24,2)" fg:x="99591" fg:w="76"/><text x="19.4918%" y="671.50"></text></g><g><title>JavaThread::oops_do (76 samples, 0.01%)</title><rect x="19.2418%" y="645" width="0.0147%" height="15" fill="rgb(230,100,2)" fg:x="99591" fg:w="76"/><text x="19.4918%" y="655.50"></text></g><g><title>G1ParTask::work (719 samples, 0.14%)</title><rect x="19.1201%" y="725" width="0.1389%" height="15" fill="rgb(219,142,25)" fg:x="98961" fg:w="719"/><text x="19.3701%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (97 samples, 0.02%)</title><rect x="19.2402%" y="709" width="0.0187%" height="15" fill="rgb(240,73,43)" fg:x="99583" fg:w="97"/><text x="19.4902%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (103 samples, 0.02%)</title><rect x="19.2812%" y="501" width="0.0199%" height="15" fill="rgb(214,114,15)" fg:x="99795" fg:w="103"/><text x="19.5312%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (103 samples, 0.02%)</title><rect x="19.2812%" y="485" width="0.0199%" height="15" fill="rgb(207,130,4)" fg:x="99795" fg:w="103"/><text x="19.5312%" y="495.50"></text></g><g><title>native_write_msr (103 samples, 0.02%)</title><rect x="19.2812%" y="469" width="0.0199%" height="15" fill="rgb(221,25,40)" fg:x="99795" fg:w="103"/><text x="19.5312%" y="479.50"></text></g><g><title>finish_task_switch (111 samples, 0.02%)</title><rect x="19.2806%" y="517" width="0.0214%" height="15" fill="rgb(241,184,7)" fg:x="99792" fg:w="111"/><text x="19.5306%" y="527.50"></text></g><g><title>do_syscall_64 (129 samples, 0.02%)</title><rect x="19.2791%" y="629" width="0.0249%" height="15" fill="rgb(235,159,4)" fg:x="99784" fg:w="129"/><text x="19.5291%" y="639.50"></text></g><g><title>__x64_sys_futex (129 samples, 0.02%)</title><rect x="19.2791%" y="613" width="0.0249%" height="15" fill="rgb(214,87,48)" fg:x="99784" fg:w="129"/><text x="19.5291%" y="623.50"></text></g><g><title>do_futex (129 samples, 0.02%)</title><rect x="19.2791%" y="597" width="0.0249%" height="15" fill="rgb(246,198,24)" fg:x="99784" fg:w="129"/><text x="19.5291%" y="607.50"></text></g><g><title>futex_wait (128 samples, 0.02%)</title><rect x="19.2793%" y="581" width="0.0247%" height="15" fill="rgb(209,66,40)" fg:x="99785" fg:w="128"/><text x="19.5293%" y="591.50"></text></g><g><title>futex_wait_queue_me (128 samples, 0.02%)</title><rect x="19.2793%" y="565" width="0.0247%" height="15" fill="rgb(233,147,39)" fg:x="99785" fg:w="128"/><text x="19.5293%" y="575.50"></text></g><g><title>schedule (127 samples, 0.02%)</title><rect x="19.2795%" y="549" width="0.0245%" height="15" fill="rgb(231,145,52)" fg:x="99786" fg:w="127"/><text x="19.5295%" y="559.50"></text></g><g><title>__schedule (126 samples, 0.02%)</title><rect x="19.2796%" y="533" width="0.0243%" height="15" fill="rgb(206,20,26)" fg:x="99787" fg:w="126"/><text x="19.5296%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (130 samples, 0.03%)</title><rect x="19.2791%" y="645" width="0.0251%" height="15" fill="rgb(238,220,4)" fg:x="99784" fg:w="130"/><text x="19.5291%" y="655.50"></text></g><g><title>__GI___clone (964 samples, 0.19%)</title><rect x="19.1181%" y="805" width="0.1863%" height="15" fill="rgb(252,195,42)" fg:x="98951" fg:w="964"/><text x="19.3681%" y="815.50"></text></g><g><title>start_thread (964 samples, 0.19%)</title><rect x="19.1181%" y="789" width="0.1863%" height="15" fill="rgb(209,10,6)" fg:x="98951" fg:w="964"/><text x="19.3681%" y="799.50"></text></g><g><title>thread_native_entry (964 samples, 0.19%)</title><rect x="19.1181%" y="773" width="0.1863%" height="15" fill="rgb(229,3,52)" fg:x="98951" fg:w="964"/><text x="19.3681%" y="783.50"></text></g><g><title>Thread::call_run (964 samples, 0.19%)</title><rect x="19.1181%" y="757" width="0.1863%" height="15" fill="rgb(253,49,37)" fg:x="98951" fg:w="964"/><text x="19.3681%" y="767.50"></text></g><g><title>GangWorker::loop (964 samples, 0.19%)</title><rect x="19.1181%" y="741" width="0.1863%" height="15" fill="rgb(240,103,49)" fg:x="98951" fg:w="964"/><text x="19.3681%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (133 samples, 0.03%)</title><rect x="19.2787%" y="725" width="0.0257%" height="15" fill="rgb(250,182,30)" fg:x="99782" fg:w="133"/><text x="19.5287%" y="735.50"></text></g><g><title>PosixSemaphore::wait (133 samples, 0.03%)</title><rect x="19.2787%" y="709" width="0.0257%" height="15" fill="rgb(248,8,30)" fg:x="99782" fg:w="133"/><text x="19.5287%" y="719.50"></text></g><g><title>__new_sem_wait_slow (132 samples, 0.03%)</title><rect x="19.2789%" y="693" width="0.0255%" height="15" fill="rgb(237,120,30)" fg:x="99783" fg:w="132"/><text x="19.5289%" y="703.50"></text></g><g><title>do_futex_wait (132 samples, 0.03%)</title><rect x="19.2789%" y="677" width="0.0255%" height="15" fill="rgb(221,146,34)" fg:x="99783" fg:w="132"/><text x="19.5289%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (132 samples, 0.03%)</title><rect x="19.2789%" y="661" width="0.0255%" height="15" fill="rgb(242,55,13)" fg:x="99783" fg:w="132"/><text x="19.5289%" y="671.50"></text></g><g><title>GC_Thread#7 (993 samples, 0.19%)</title><rect x="19.1131%" y="821" width="0.1919%" height="15" fill="rgb(242,112,31)" fg:x="98925" fg:w="993"/><text x="19.3631%" y="831.50"></text></g><g><title>[perf-965379.map] (141 samples, 0.03%)</title><rect x="19.3142%" y="805" width="0.0272%" height="15" fill="rgb(249,192,27)" fg:x="99966" fg:w="141"/><text x="19.5642%" y="815.50"></text></g><g><title>Service_Thread (161 samples, 0.03%)</title><rect x="19.3129%" y="821" width="0.0311%" height="15" fill="rgb(208,204,44)" fg:x="99959" fg:w="161"/><text x="19.5629%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.02%)</title><rect x="19.3811%" y="469" width="0.0156%" height="15" fill="rgb(208,93,54)" fg:x="100312" fg:w="81"/><text x="19.6311%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (79 samples, 0.02%)</title><rect x="19.3815%" y="453" width="0.0153%" height="15" fill="rgb(242,1,31)" fg:x="100314" fg:w="79"/><text x="19.6315%" y="463.50"></text></g><g><title>native_write_msr (78 samples, 0.02%)</title><rect x="19.3817%" y="437" width="0.0151%" height="15" fill="rgb(241,83,25)" fg:x="100315" fg:w="78"/><text x="19.6317%" y="447.50"></text></g><g><title>finish_task_switch (88 samples, 0.02%)</title><rect x="19.3803%" y="485" width="0.0170%" height="15" fill="rgb(205,169,50)" fg:x="100308" fg:w="88"/><text x="19.6303%" y="495.50"></text></g><g><title>futex_wait_queue_me (202 samples, 0.04%)</title><rect x="19.3662%" y="533" width="0.0390%" height="15" fill="rgb(239,186,37)" fg:x="100235" fg:w="202"/><text x="19.6162%" y="543.50"></text></g><g><title>schedule (179 samples, 0.03%)</title><rect x="19.3706%" y="517" width="0.0346%" height="15" fill="rgb(205,221,10)" fg:x="100258" fg:w="179"/><text x="19.6206%" y="527.50"></text></g><g><title>__schedule (177 samples, 0.03%)</title><rect x="19.3710%" y="501" width="0.0342%" height="15" fill="rgb(218,196,15)" fg:x="100260" fg:w="177"/><text x="19.6210%" y="511.50"></text></g><g><title>do_futex (237 samples, 0.05%)</title><rect x="19.3645%" y="565" width="0.0458%" height="15" fill="rgb(218,196,35)" fg:x="100226" fg:w="237"/><text x="19.6145%" y="575.50"></text></g><g><title>futex_wait (232 samples, 0.04%)</title><rect x="19.3654%" y="549" width="0.0448%" height="15" fill="rgb(233,63,24)" fg:x="100231" fg:w="232"/><text x="19.6154%" y="559.50"></text></g><g><title>do_syscall_64 (247 samples, 0.05%)</title><rect x="19.3635%" y="597" width="0.0477%" height="15" fill="rgb(225,8,4)" fg:x="100221" fg:w="247"/><text x="19.6135%" y="607.50"></text></g><g><title>__x64_sys_futex (246 samples, 0.05%)</title><rect x="19.3637%" y="581" width="0.0475%" height="15" fill="rgb(234,105,35)" fg:x="100222" fg:w="246"/><text x="19.6137%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (262 samples, 0.05%)</title><rect x="19.3631%" y="613" width="0.0506%" height="15" fill="rgb(236,21,32)" fg:x="100219" fg:w="262"/><text x="19.6131%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (286 samples, 0.06%)</title><rect x="19.3589%" y="661" width="0.0553%" height="15" fill="rgb(228,109,6)" fg:x="100197" fg:w="286"/><text x="19.6089%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (286 samples, 0.06%)</title><rect x="19.3589%" y="645" width="0.0553%" height="15" fill="rgb(229,215,31)" fg:x="100197" fg:w="286"/><text x="19.6089%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (277 samples, 0.05%)</title><rect x="19.3606%" y="629" width="0.0535%" height="15" fill="rgb(221,52,54)" fg:x="100206" fg:w="277"/><text x="19.6106%" y="639.50"></text></g><g><title>Monitor::wait (383 samples, 0.07%)</title><rect x="19.3527%" y="709" width="0.0740%" height="15" fill="rgb(252,129,43)" fg:x="100165" fg:w="383"/><text x="19.6027%" y="719.50"></text></g><g><title>Monitor::IWait (381 samples, 0.07%)</title><rect x="19.3531%" y="693" width="0.0736%" height="15" fill="rgb(248,183,27)" fg:x="100167" fg:w="381"/><text x="19.6031%" y="703.50"></text></g><g><title>os::PlatformEvent::park (368 samples, 0.07%)</title><rect x="19.3556%" y="677" width="0.0711%" height="15" fill="rgb(250,0,22)" fg:x="100180" fg:w="368"/><text x="19.6056%" y="687.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (149 samples, 0.03%)</title><rect x="19.4348%" y="661" width="0.0288%" height="15" fill="rgb(213,166,10)" fg:x="100590" fg:w="149"/><text x="19.6848%" y="671.50"></text></g><g><title>NMethodSweeper::process_compiled_method (205 samples, 0.04%)</title><rect x="19.4342%" y="677" width="0.0396%" height="15" fill="rgb(207,163,36)" fg:x="100587" fg:w="205"/><text x="19.6842%" y="687.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (241 samples, 0.05%)</title><rect x="19.4288%" y="693" width="0.0466%" height="15" fill="rgb(208,122,22)" fg:x="100559" fg:w="241"/><text x="19.6788%" y="703.50"></text></g><g><title>NMethodSweeper::possibly_sweep (253 samples, 0.05%)</title><rect x="19.4267%" y="709" width="0.0489%" height="15" fill="rgb(207,104,49)" fg:x="100548" fg:w="253"/><text x="19.6767%" y="719.50"></text></g><g><title>__GI___clone (663 samples, 0.13%)</title><rect x="19.3494%" y="805" width="0.1281%" height="15" fill="rgb(248,211,50)" fg:x="100148" fg:w="663"/><text x="19.5994%" y="815.50"></text></g><g><title>start_thread (663 samples, 0.13%)</title><rect x="19.3494%" y="789" width="0.1281%" height="15" fill="rgb(217,13,45)" fg:x="100148" fg:w="663"/><text x="19.5994%" y="799.50"></text></g><g><title>thread_native_entry (663 samples, 0.13%)</title><rect x="19.3494%" y="773" width="0.1281%" height="15" fill="rgb(211,216,49)" fg:x="100148" fg:w="663"/><text x="19.5994%" y="783.50"></text></g><g><title>Thread::call_run (663 samples, 0.13%)</title><rect x="19.3494%" y="757" width="0.1281%" height="15" fill="rgb(221,58,53)" fg:x="100148" fg:w="663"/><text x="19.5994%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (663 samples, 0.13%)</title><rect x="19.3494%" y="741" width="0.1281%" height="15" fill="rgb(220,112,41)" fg:x="100148" fg:w="663"/><text x="19.5994%" y="751.50"></text></g><g><title>NMethodSweeper::sweeper_loop (662 samples, 0.13%)</title><rect x="19.3496%" y="725" width="0.1279%" height="15" fill="rgb(236,38,28)" fg:x="100149" fg:w="662"/><text x="19.5996%" y="735.50"></text></g><g><title>Sweeper_thread (689 samples, 0.13%)</title><rect x="19.3455%" y="821" width="0.1331%" height="15" fill="rgb(227,195,22)" fg:x="100128" fg:w="689"/><text x="19.5955%" y="831.50"></text></g><g><title>get_cpu_load (77 samples, 0.01%)</title><rect x="19.5733%" y="789" width="0.0149%" height="15" fill="rgb(214,55,33)" fg:x="101307" fg:w="77"/><text x="19.8233%" y="799.50"></text></g><g><title>get_cpuload_internal (77 samples, 0.01%)</title><rect x="19.5733%" y="773" width="0.0149%" height="15" fill="rgb(248,80,13)" fg:x="101307" fg:w="77"/><text x="19.8233%" y="783.50"></text></g><g><title>get_totalticks (77 samples, 0.01%)</title><rect x="19.5733%" y="757" width="0.0149%" height="15" fill="rgb(238,52,6)" fg:x="101307" fg:w="77"/><text x="19.8233%" y="767.50"></text></g><g><title>[perf-965379.map] (547 samples, 0.11%)</title><rect x="19.4843%" y="805" width="0.1057%" height="15" fill="rgb(224,198,47)" fg:x="100846" fg:w="547"/><text x="19.7343%" y="815.50"></text></g><g><title>Thread-0 (619 samples, 0.12%)</title><rect x="19.4786%" y="821" width="0.1196%" height="15" fill="rgb(233,171,20)" fg:x="100817" fg:w="619"/><text x="19.7286%" y="831.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.02%)</title><rect x="19.6164%" y="533" width="0.0156%" height="15" fill="rgb(241,30,25)" fg:x="101530" fg:w="81"/><text x="19.8664%" y="543.50"></text></g><g><title>schedule (73 samples, 0.01%)</title><rect x="19.6180%" y="517" width="0.0141%" height="15" fill="rgb(207,171,38)" fg:x="101538" fg:w="73"/><text x="19.8680%" y="527.50"></text></g><g><title>__schedule (69 samples, 0.01%)</title><rect x="19.6187%" y="501" width="0.0133%" height="15" fill="rgb(234,70,1)" fg:x="101542" fg:w="69"/><text x="19.8687%" y="511.50"></text></g><g><title>do_futex (87 samples, 0.02%)</title><rect x="19.6154%" y="565" width="0.0168%" height="15" fill="rgb(232,178,18)" fg:x="101525" fg:w="87"/><text x="19.8654%" y="575.50"></text></g><g><title>futex_wait (86 samples, 0.02%)</title><rect x="19.6156%" y="549" width="0.0166%" height="15" fill="rgb(241,78,40)" fg:x="101526" fg:w="86"/><text x="19.8656%" y="559.50"></text></g><g><title>do_syscall_64 (94 samples, 0.02%)</title><rect x="19.6151%" y="597" width="0.0182%" height="15" fill="rgb(222,35,25)" fg:x="101523" fg:w="94"/><text x="19.8651%" y="607.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.02%)</title><rect x="19.6151%" y="581" width="0.0182%" height="15" fill="rgb(207,92,16)" fg:x="101523" fg:w="94"/><text x="19.8651%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (101 samples, 0.02%)</title><rect x="19.6149%" y="613" width="0.0195%" height="15" fill="rgb(216,59,51)" fg:x="101522" fg:w="101"/><text x="19.8649%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (113 samples, 0.02%)</title><rect x="19.6127%" y="661" width="0.0218%" height="15" fill="rgb(213,80,28)" fg:x="101511" fg:w="113"/><text x="19.8627%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (113 samples, 0.02%)</title><rect x="19.6127%" y="645" width="0.0218%" height="15" fill="rgb(220,93,7)" fg:x="101511" fg:w="113"/><text x="19.8627%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.02%)</title><rect x="19.6141%" y="629" width="0.0205%" height="15" fill="rgb(225,24,44)" fg:x="101518" fg:w="106"/><text x="19.8641%" y="639.50"></text></g><g><title>Monitor::wait (142 samples, 0.03%)</title><rect x="19.6093%" y="709" width="0.0274%" height="15" fill="rgb(243,74,40)" fg:x="101493" fg:w="142"/><text x="19.8593%" y="719.50"></text></g><g><title>Monitor::IWait (141 samples, 0.03%)</title><rect x="19.6094%" y="693" width="0.0272%" height="15" fill="rgb(228,39,7)" fg:x="101494" fg:w="141"/><text x="19.8594%" y="703.50"></text></g><g><title>os::PlatformEvent::park (131 samples, 0.03%)</title><rect x="19.6114%" y="677" width="0.0253%" height="15" fill="rgb(227,79,8)" fg:x="101504" fg:w="131"/><text x="19.8614%" y="687.50"></text></g><g><title>__GI___clone (186 samples, 0.04%)</title><rect x="19.6013%" y="805" width="0.0359%" height="15" fill="rgb(236,58,11)" fg:x="101452" fg:w="186"/><text x="19.8513%" y="815.50"></text></g><g><title>start_thread (186 samples, 0.04%)</title><rect x="19.6013%" y="789" width="0.0359%" height="15" fill="rgb(249,63,35)" fg:x="101452" fg:w="186"/><text x="19.8513%" y="799.50"></text></g><g><title>thread_native_entry (185 samples, 0.04%)</title><rect x="19.6015%" y="773" width="0.0357%" height="15" fill="rgb(252,114,16)" fg:x="101453" fg:w="185"/><text x="19.8515%" y="783.50"></text></g><g><title>Thread::call_run (185 samples, 0.04%)</title><rect x="19.6015%" y="757" width="0.0357%" height="15" fill="rgb(254,151,24)" fg:x="101453" fg:w="185"/><text x="19.8515%" y="767.50"></text></g><g><title>WatcherThread::run (185 samples, 0.04%)</title><rect x="19.6015%" y="741" width="0.0357%" height="15" fill="rgb(253,54,39)" fg:x="101453" fg:w="185"/><text x="19.8515%" y="751.50"></text></g><g><title>WatcherThread::sleep (148 samples, 0.03%)</title><rect x="19.6087%" y="725" width="0.0286%" height="15" fill="rgb(243,25,45)" fg:x="101490" fg:w="148"/><text x="19.8587%" y="735.50"></text></g><g><title>VM_Periodic_Tas (206 samples, 0.04%)</title><rect x="19.5982%" y="821" width="0.0398%" height="15" fill="rgb(234,134,9)" fg:x="101436" fg:w="206"/><text x="19.8482%" y="831.50"></text></g><g><title>[unknown] (83 samples, 0.02%)</title><rect x="19.6413%" y="805" width="0.0160%" height="15" fill="rgb(227,166,31)" fg:x="101659" fg:w="83"/><text x="19.8913%" y="815.50"></text></g><g><title>vframe::sender (76 samples, 0.01%)</title><rect x="19.6427%" y="789" width="0.0147%" height="15" fill="rgb(245,143,41)" fg:x="101666" fg:w="76"/><text x="19.8927%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.02%)</title><rect x="19.6678%" y="469" width="0.0164%" height="15" fill="rgb(238,181,32)" fg:x="101796" fg:w="85"/><text x="19.9178%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (83 samples, 0.02%)</title><rect x="19.6682%" y="453" width="0.0160%" height="15" fill="rgb(224,113,18)" fg:x="101798" fg:w="83"/><text x="19.9182%" y="463.50"></text></g><g><title>native_write_msr (83 samples, 0.02%)</title><rect x="19.6682%" y="437" width="0.0160%" height="15" fill="rgb(240,229,28)" fg:x="101798" fg:w="83"/><text x="19.9182%" y="447.50"></text></g><g><title>finish_task_switch (89 samples, 0.02%)</title><rect x="19.6672%" y="485" width="0.0172%" height="15" fill="rgb(250,185,3)" fg:x="101793" fg:w="89"/><text x="19.9172%" y="495.50"></text></g><g><title>futex_wait_queue_me (98 samples, 0.02%)</title><rect x="19.6663%" y="533" width="0.0189%" height="15" fill="rgb(212,59,25)" fg:x="101788" fg:w="98"/><text x="19.9163%" y="543.50"></text></g><g><title>schedule (95 samples, 0.02%)</title><rect x="19.6668%" y="517" width="0.0184%" height="15" fill="rgb(221,87,20)" fg:x="101791" fg:w="95"/><text x="19.9168%" y="527.50"></text></g><g><title>__schedule (95 samples, 0.02%)</title><rect x="19.6668%" y="501" width="0.0184%" height="15" fill="rgb(213,74,28)" fg:x="101791" fg:w="95"/><text x="19.9168%" y="511.50"></text></g><g><title>do_futex (100 samples, 0.02%)</title><rect x="19.6661%" y="565" width="0.0193%" height="15" fill="rgb(224,132,34)" fg:x="101787" fg:w="100"/><text x="19.9161%" y="575.50"></text></g><g><title>futex_wait (100 samples, 0.02%)</title><rect x="19.6661%" y="549" width="0.0193%" height="15" fill="rgb(222,101,24)" fg:x="101787" fg:w="100"/><text x="19.9161%" y="559.50"></text></g><g><title>do_syscall_64 (101 samples, 0.02%)</title><rect x="19.6661%" y="597" width="0.0195%" height="15" fill="rgb(254,142,4)" fg:x="101787" fg:w="101"/><text x="19.9161%" y="607.50"></text></g><g><title>__x64_sys_futex (101 samples, 0.02%)</title><rect x="19.6661%" y="581" width="0.0195%" height="15" fill="rgb(230,229,49)" fg:x="101787" fg:w="101"/><text x="19.9161%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (106 samples, 0.02%)</title><rect x="19.6653%" y="661" width="0.0205%" height="15" fill="rgb(238,70,47)" fg:x="101783" fg:w="106"/><text x="19.9153%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (105 samples, 0.02%)</title><rect x="19.6655%" y="645" width="0.0203%" height="15" fill="rgb(231,160,17)" fg:x="101784" fg:w="105"/><text x="19.9155%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (102 samples, 0.02%)</title><rect x="19.6661%" y="629" width="0.0197%" height="15" fill="rgb(218,68,53)" fg:x="101787" fg:w="102"/><text x="19.9161%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.02%)</title><rect x="19.6661%" y="613" width="0.0197%" height="15" fill="rgb(236,111,10)" fg:x="101787" fg:w="102"/><text x="19.9161%" y="623.50"></text></g><g><title>Monitor::wait (113 samples, 0.02%)</title><rect x="19.6647%" y="709" width="0.0218%" height="15" fill="rgb(224,34,41)" fg:x="101780" fg:w="113"/><text x="19.9147%" y="719.50"></text></g><g><title>Monitor::IWait (112 samples, 0.02%)</title><rect x="19.6649%" y="693" width="0.0216%" height="15" fill="rgb(241,118,19)" fg:x="101781" fg:w="112"/><text x="19.9149%" y="703.50"></text></g><g><title>os::PlatformEvent::park (111 samples, 0.02%)</title><rect x="19.6651%" y="677" width="0.0214%" height="15" fill="rgb(238,129,25)" fg:x="101782" fg:w="111"/><text x="19.9151%" y="687.50"></text></g><g><title>Monitor::wait (54 samples, 0.01%)</title><rect x="19.7053%" y="693" width="0.0104%" height="15" fill="rgb(238,22,31)" fg:x="101990" fg:w="54"/><text x="19.9553%" y="703.50"></text></g><g><title>Monitor::IWait (53 samples, 0.01%)</title><rect x="19.7055%" y="677" width="0.0102%" height="15" fill="rgb(222,174,48)" fg:x="101991" fg:w="53"/><text x="19.9555%" y="687.50"></text></g><g><title>PosixSemaphore::signal (60 samples, 0.01%)</title><rect x="19.7192%" y="645" width="0.0116%" height="15" fill="rgb(206,152,40)" fg:x="102062" fg:w="60"/><text x="19.9692%" y="655.50"></text></g><g><title>__new_sem_post (59 samples, 0.01%)</title><rect x="19.7194%" y="629" width="0.0114%" height="15" fill="rgb(218,99,54)" fg:x="102063" fg:w="59"/><text x="19.9694%" y="639.50"></text></g><g><title>futex_wake (59 samples, 0.01%)</title><rect x="19.7194%" y="613" width="0.0114%" height="15" fill="rgb(220,174,26)" fg:x="102063" fg:w="59"/><text x="19.9694%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="19.7200%" y="597" width="0.0108%" height="15" fill="rgb(245,116,9)" fg:x="102066" fg:w="56"/><text x="19.9700%" y="607.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="19.7200%" y="581" width="0.0108%" height="15" fill="rgb(209,72,35)" fg:x="102066" fg:w="56"/><text x="19.9700%" y="591.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="19.7200%" y="565" width="0.0108%" height="15" fill="rgb(226,126,21)" fg:x="102066" fg:w="56"/><text x="19.9700%" y="575.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="19.7200%" y="549" width="0.0108%" height="15" fill="rgb(227,192,1)" fg:x="102066" fg:w="56"/><text x="19.9700%" y="559.50"></text></g><g><title>futex_wake (56 samples, 0.01%)</title><rect x="19.7200%" y="533" width="0.0108%" height="15" fill="rgb(237,180,29)" fg:x="102066" fg:w="56"/><text x="19.9700%" y="543.50"></text></g><g><title>finish_task_switch (71 samples, 0.01%)</title><rect x="19.7319%" y="453" width="0.0137%" height="15" fill="rgb(230,197,35)" fg:x="102128" fg:w="71"/><text x="19.9819%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.01%)</title><rect x="19.7325%" y="437" width="0.0131%" height="15" fill="rgb(246,193,31)" fg:x="102131" fg:w="68"/><text x="19.9825%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.01%)</title><rect x="19.7331%" y="421" width="0.0126%" height="15" fill="rgb(241,36,4)" fg:x="102134" fg:w="65"/><text x="19.9831%" y="431.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="19.7331%" y="405" width="0.0126%" height="15" fill="rgb(241,130,17)" fg:x="102134" fg:w="65"/><text x="19.9831%" y="415.50"></text></g><g><title>do_syscall_64 (85 samples, 0.02%)</title><rect x="19.7308%" y="565" width="0.0164%" height="15" fill="rgb(206,137,32)" fg:x="102122" fg:w="85"/><text x="19.9808%" y="575.50"></text></g><g><title>__x64_sys_futex (85 samples, 0.02%)</title><rect x="19.7308%" y="549" width="0.0164%" height="15" fill="rgb(237,228,51)" fg:x="102122" fg:w="85"/><text x="19.9808%" y="559.50"></text></g><g><title>do_futex (85 samples, 0.02%)</title><rect x="19.7308%" y="533" width="0.0164%" height="15" fill="rgb(243,6,42)" fg:x="102122" fg:w="85"/><text x="19.9808%" y="543.50"></text></g><g><title>futex_wait (85 samples, 0.02%)</title><rect x="19.7308%" y="517" width="0.0164%" height="15" fill="rgb(251,74,28)" fg:x="102122" fg:w="85"/><text x="19.9808%" y="527.50"></text></g><g><title>futex_wait_queue_me (85 samples, 0.02%)</title><rect x="19.7308%" y="501" width="0.0164%" height="15" fill="rgb(218,20,49)" fg:x="102122" fg:w="85"/><text x="19.9808%" y="511.50"></text></g><g><title>schedule (84 samples, 0.02%)</title><rect x="19.7310%" y="485" width="0.0162%" height="15" fill="rgb(238,28,14)" fg:x="102123" fg:w="84"/><text x="19.9810%" y="495.50"></text></g><g><title>__schedule (84 samples, 0.02%)</title><rect x="19.7310%" y="469" width="0.0162%" height="15" fill="rgb(229,40,46)" fg:x="102123" fg:w="84"/><text x="19.9810%" y="479.50"></text></g><g><title>WorkGang::run_task (146 samples, 0.03%)</title><rect x="19.7192%" y="677" width="0.0282%" height="15" fill="rgb(244,195,20)" fg:x="102062" fg:w="146"/><text x="19.9692%" y="687.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (146 samples, 0.03%)</title><rect x="19.7192%" y="661" width="0.0282%" height="15" fill="rgb(253,56,35)" fg:x="102062" fg:w="146"/><text x="19.9692%" y="671.50"></text></g><g><title>PosixSemaphore::wait (86 samples, 0.02%)</title><rect x="19.7308%" y="645" width="0.0166%" height="15" fill="rgb(210,149,44)" fg:x="102122" fg:w="86"/><text x="19.9808%" y="655.50"></text></g><g><title>__new_sem_wait_slow (86 samples, 0.02%)</title><rect x="19.7308%" y="629" width="0.0166%" height="15" fill="rgb(240,135,12)" fg:x="102122" fg:w="86"/><text x="19.9808%" y="639.50"></text></g><g><title>do_futex_wait (86 samples, 0.02%)</title><rect x="19.7308%" y="613" width="0.0166%" height="15" fill="rgb(251,24,50)" fg:x="102122" fg:w="86"/><text x="19.9808%" y="623.50"></text></g><g><title>futex_abstimed_wait_cancelable (86 samples, 0.02%)</title><rect x="19.7308%" y="597" width="0.0166%" height="15" fill="rgb(243,200,47)" fg:x="102122" fg:w="86"/><text x="19.9808%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.02%)</title><rect x="19.7308%" y="581" width="0.0166%" height="15" fill="rgb(224,166,26)" fg:x="102122" fg:w="86"/><text x="19.9808%" y="591.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (156 samples, 0.03%)</title><rect x="19.7176%" y="693" width="0.0301%" height="15" fill="rgb(233,0,47)" fg:x="102054" fg:w="156"/><text x="19.9676%" y="703.50"></text></g><g><title>SafepointSynchronize::begin (358 samples, 0.07%)</title><rect x="19.6865%" y="709" width="0.0692%" height="15" fill="rgb(253,80,5)" fg:x="101893" fg:w="358"/><text x="19.9365%" y="719.50"></text></g><g><title>VM_Deoptimize::doit (54 samples, 0.01%)</title><rect x="19.7669%" y="677" width="0.0104%" height="15" fill="rgb(214,133,25)" fg:x="102309" fg:w="54"/><text x="20.0169%" y="687.50"></text></g><g><title>VM_G1CollectForAllocation::doit (53 samples, 0.01%)</title><rect x="19.7775%" y="677" width="0.0102%" height="15" fill="rgb(209,27,14)" fg:x="102364" fg:w="53"/><text x="20.0275%" y="687.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (53 samples, 0.01%)</title><rect x="19.7775%" y="661" width="0.0102%" height="15" fill="rgb(219,102,51)" fg:x="102364" fg:w="53"/><text x="20.0275%" y="671.50"></text></g><g><title>VM_Operation::evaluate (163 samples, 0.03%)</title><rect x="19.7605%" y="693" width="0.0315%" height="15" fill="rgb(237,18,16)" fg:x="102276" fg:w="163"/><text x="20.0105%" y="703.50"></text></g><g><title>VMThread::evaluate_operation (171 samples, 0.03%)</title><rect x="19.7600%" y="709" width="0.0330%" height="15" fill="rgb(241,85,17)" fg:x="102273" fg:w="171"/><text x="20.0100%" y="719.50"></text></g><g><title>Thread::call_run (685 samples, 0.13%)</title><rect x="19.6614%" y="757" width="0.1323%" height="15" fill="rgb(236,90,42)" fg:x="101763" fg:w="685"/><text x="19.9114%" y="767.50"></text></g><g><title>VMThread::run (684 samples, 0.13%)</title><rect x="19.6616%" y="741" width="0.1322%" height="15" fill="rgb(249,57,21)" fg:x="101764" fg:w="684"/><text x="19.9116%" y="751.50"></text></g><g><title>VMThread::loop (684 samples, 0.13%)</title><rect x="19.6616%" y="725" width="0.1322%" height="15" fill="rgb(243,12,36)" fg:x="101764" fg:w="684"/><text x="19.9116%" y="735.50"></text></g><g><title>__GI___clone (707 samples, 0.14%)</title><rect x="19.6574%" y="805" width="0.1366%" height="15" fill="rgb(253,128,47)" fg:x="101742" fg:w="707"/><text x="19.9074%" y="815.50"></text></g><g><title>start_thread (688 samples, 0.13%)</title><rect x="19.6610%" y="789" width="0.1329%" height="15" fill="rgb(207,33,20)" fg:x="101761" fg:w="688"/><text x="19.9110%" y="799.50"></text></g><g><title>thread_native_entry (687 samples, 0.13%)</title><rect x="19.6612%" y="773" width="0.1327%" height="15" fill="rgb(233,215,35)" fg:x="101762" fg:w="687"/><text x="19.9112%" y="783.50"></text></g><g><title>VM_Thread (814 samples, 0.16%)</title><rect x="19.6380%" y="821" width="0.1573%" height="15" fill="rgb(249,188,52)" fg:x="101642" fg:w="814"/><text x="19.8880%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.02%)</title><rect x="19.8579%" y="645" width="0.0187%" height="15" fill="rgb(225,12,32)" fg:x="102780" fg:w="97"/><text x="20.1079%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (96 samples, 0.02%)</title><rect x="19.8581%" y="629" width="0.0185%" height="15" fill="rgb(247,98,14)" fg:x="102781" fg:w="96"/><text x="20.1081%" y="639.50"></text></g><g><title>native_write_msr (96 samples, 0.02%)</title><rect x="19.8581%" y="613" width="0.0185%" height="15" fill="rgb(247,219,48)" fg:x="102781" fg:w="96"/><text x="20.1081%" y="623.50"></text></g><g><title>finish_task_switch (110 samples, 0.02%)</title><rect x="19.8573%" y="661" width="0.0213%" height="15" fill="rgb(253,60,48)" fg:x="102777" fg:w="110"/><text x="20.1073%" y="671.50"></text></g><g><title>futex_wait_queue_me (131 samples, 0.03%)</title><rect x="19.8552%" y="709" width="0.0253%" height="15" fill="rgb(245,15,52)" fg:x="102766" fg:w="131"/><text x="20.1052%" y="719.50"></text></g><g><title>schedule (128 samples, 0.02%)</title><rect x="19.8558%" y="693" width="0.0247%" height="15" fill="rgb(220,133,28)" fg:x="102769" fg:w="128"/><text x="20.1058%" y="703.50"></text></g><g><title>__schedule (128 samples, 0.02%)</title><rect x="19.8558%" y="677" width="0.0247%" height="15" fill="rgb(217,180,4)" fg:x="102769" fg:w="128"/><text x="20.1058%" y="687.50"></text></g><g><title>futex_wait (134 samples, 0.03%)</title><rect x="19.8548%" y="725" width="0.0259%" height="15" fill="rgb(251,24,1)" fg:x="102764" fg:w="134"/><text x="20.1048%" y="735.50"></text></g><g><title>__x64_sys_futex (146 samples, 0.03%)</title><rect x="19.8544%" y="757" width="0.0282%" height="15" fill="rgb(212,185,49)" fg:x="102762" fg:w="146"/><text x="20.1044%" y="767.50"></text></g><g><title>do_futex (144 samples, 0.03%)</title><rect x="19.8548%" y="741" width="0.0278%" height="15" fill="rgb(215,175,22)" fg:x="102764" fg:w="144"/><text x="20.1048%" y="751.50"></text></g><g><title>do_syscall_64 (249 samples, 0.05%)</title><rect x="19.8477%" y="773" width="0.0481%" height="15" fill="rgb(250,205,14)" fg:x="102727" fg:w="249"/><text x="20.0977%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (254 samples, 0.05%)</title><rect x="19.8475%" y="789" width="0.0491%" height="15" fill="rgb(225,211,22)" fg:x="102726" fg:w="254"/><text x="20.0975%" y="799.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (558 samples, 0.11%)</title><rect x="19.7988%" y="805" width="0.1078%" height="15" fill="rgb(251,179,42)" fg:x="102474" fg:w="558"/><text x="20.0488%" y="815.50"></text></g><g><title>bazel (619 samples, 0.12%)</title><rect x="19.7984%" y="821" width="0.1196%" height="15" fill="rgb(208,216,51)" fg:x="102472" fg:w="619"/><text x="20.0484%" y="831.50"></text></g><g><title>elf_machine_rela (79 samples, 0.02%)</title><rect x="19.9354%" y="693" width="0.0153%" height="15" fill="rgb(235,36,11)" fg:x="103181" fg:w="79"/><text x="20.1854%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (56 samples, 0.01%)</title><rect x="19.9398%" y="677" width="0.0108%" height="15" fill="rgb(213,189,28)" fg:x="103204" fg:w="56"/><text x="20.1898%" y="687.50"></text></g><g><title>elf_dynamic_do_Rela (105 samples, 0.02%)</title><rect x="19.9331%" y="709" width="0.0203%" height="15" fill="rgb(227,203,42)" fg:x="103169" fg:w="105"/><text x="20.1831%" y="719.50"></text></g><g><title>_dl_relocate_object (113 samples, 0.02%)</title><rect x="19.9319%" y="725" width="0.0218%" height="15" fill="rgb(244,72,36)" fg:x="103163" fg:w="113"/><text x="20.1819%" y="735.50"></text></g><g><title>[ld-2.31.so] (148 samples, 0.03%)</title><rect x="19.9261%" y="741" width="0.0286%" height="15" fill="rgb(213,53,17)" fg:x="103133" fg:w="148"/><text x="20.1761%" y="751.50"></text></g><g><title>_dl_start_final (151 samples, 0.03%)</title><rect x="19.9261%" y="773" width="0.0292%" height="15" fill="rgb(207,167,3)" fg:x="103133" fg:w="151"/><text x="20.1761%" y="783.50"></text></g><g><title>_dl_sysdep_start (151 samples, 0.03%)</title><rect x="19.9261%" y="757" width="0.0292%" height="15" fill="rgb(216,98,30)" fg:x="103133" fg:w="151"/><text x="20.1761%" y="767.50"></text></g><g><title>_start (166 samples, 0.03%)</title><rect x="19.9238%" y="805" width="0.0321%" height="15" fill="rgb(236,123,15)" fg:x="103121" fg:w="166"/><text x="20.1738%" y="815.50"></text></g><g><title>_dl_start (154 samples, 0.03%)</title><rect x="19.9261%" y="789" width="0.0298%" height="15" fill="rgb(248,81,50)" fg:x="103133" fg:w="154"/><text x="20.1761%" y="799.50"></text></g><g><title>build-runfiles (219 samples, 0.04%)</title><rect x="19.9180%" y="821" width="0.0423%" height="15" fill="rgb(214,120,4)" fg:x="103091" fg:w="219"/><text x="20.1680%" y="831.50"></text></g><g><title>[dash] (56 samples, 0.01%)</title><rect x="20.0165%" y="469" width="0.0108%" height="15" fill="rgb(208,179,34)" fg:x="103601" fg:w="56"/><text x="20.2665%" y="479.50"></text></g><g><title>[dash] (110 samples, 0.02%)</title><rect x="20.0160%" y="485" width="0.0213%" height="15" fill="rgb(227,140,7)" fg:x="103598" fg:w="110"/><text x="20.2660%" y="495.50"></text></g><g><title>__GI___libc_write (54 samples, 0.01%)</title><rect x="20.0486%" y="485" width="0.0104%" height="15" fill="rgb(214,22,6)" fg:x="103767" fg:w="54"/><text x="20.2986%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="20.0490%" y="469" width="0.0100%" height="15" fill="rgb(207,137,27)" fg:x="103769" fg:w="52"/><text x="20.2990%" y="479.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="20.0490%" y="453" width="0.0100%" height="15" fill="rgb(210,8,46)" fg:x="103769" fg:w="52"/><text x="20.2990%" y="463.50"></text></g><g><title>alloc_bprm (78 samples, 0.02%)</title><rect x="20.0602%" y="405" width="0.0151%" height="15" fill="rgb(240,16,54)" fg:x="103827" fg:w="78"/><text x="20.3102%" y="415.50"></text></g><g><title>btrfs_getxattr (57 samples, 0.01%)</title><rect x="20.0905%" y="293" width="0.0110%" height="15" fill="rgb(211,209,29)" fg:x="103984" fg:w="57"/><text x="20.3405%" y="303.50"></text></g><g><title>get_vfs_caps_from_disk (59 samples, 0.01%)</title><rect x="20.0905%" y="325" width="0.0114%" height="15" fill="rgb(226,228,24)" fg:x="103984" fg:w="59"/><text x="20.3405%" y="335.50"></text></g><g><title>__vfs_getxattr (59 samples, 0.01%)</title><rect x="20.0905%" y="309" width="0.0114%" height="15" fill="rgb(222,84,9)" fg:x="103984" fg:w="59"/><text x="20.3405%" y="319.50"></text></g><g><title>security_bprm_creds_from_file (62 samples, 0.01%)</title><rect x="20.0902%" y="357" width="0.0120%" height="15" fill="rgb(234,203,30)" fg:x="103982" fg:w="62"/><text x="20.3402%" y="367.50"></text></g><g><title>cap_bprm_creds_from_file (62 samples, 0.01%)</title><rect x="20.0902%" y="341" width="0.0120%" height="15" fill="rgb(238,109,14)" fg:x="103982" fg:w="62"/><text x="20.3402%" y="351.50"></text></g><g><title>begin_new_exec (71 samples, 0.01%)</title><rect x="20.0890%" y="373" width="0.0137%" height="15" fill="rgb(233,206,34)" fg:x="103976" fg:w="71"/><text x="20.3390%" y="383.50"></text></g><g><title>load_elf_binary (124 samples, 0.02%)</title><rect x="20.0874%" y="389" width="0.0240%" height="15" fill="rgb(220,167,47)" fg:x="103968" fg:w="124"/><text x="20.3374%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (220 samples, 0.04%)</title><rect x="20.1228%" y="309" width="0.0425%" height="15" fill="rgb(238,105,10)" fg:x="104151" fg:w="220"/><text x="20.3728%" y="319.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (215 samples, 0.04%)</title><rect x="20.1238%" y="293" width="0.0415%" height="15" fill="rgb(213,227,17)" fg:x="104156" fg:w="215"/><text x="20.3738%" y="303.50"></text></g><g><title>native_write_msr (214 samples, 0.04%)</title><rect x="20.1240%" y="277" width="0.0413%" height="15" fill="rgb(217,132,38)" fg:x="104157" fg:w="214"/><text x="20.3740%" y="287.50"></text></g><g><title>_cond_resched (229 samples, 0.04%)</title><rect x="20.1216%" y="357" width="0.0442%" height="15" fill="rgb(242,146,4)" fg:x="104145" fg:w="229"/><text x="20.3716%" y="367.50"></text></g><g><title>__schedule (229 samples, 0.04%)</title><rect x="20.1216%" y="341" width="0.0442%" height="15" fill="rgb(212,61,9)" fg:x="104145" fg:w="229"/><text x="20.3716%" y="351.50"></text></g><g><title>finish_task_switch (228 samples, 0.04%)</title><rect x="20.1218%" y="325" width="0.0441%" height="15" fill="rgb(247,126,22)" fg:x="104146" fg:w="228"/><text x="20.3718%" y="335.50"></text></g><g><title>sched_exec (262 samples, 0.05%)</title><rect x="20.1157%" y="389" width="0.0506%" height="15" fill="rgb(220,196,2)" fg:x="104114" fg:w="262"/><text x="20.3657%" y="399.50"></text></g><g><title>stop_one_cpu (237 samples, 0.05%)</title><rect x="20.1205%" y="373" width="0.0458%" height="15" fill="rgb(208,46,4)" fg:x="104139" fg:w="237"/><text x="20.3705%" y="383.50"></text></g><g><title>apparmor_bprm_creds_for_exec (81 samples, 0.02%)</title><rect x="20.1746%" y="373" width="0.0156%" height="15" fill="rgb(252,104,46)" fg:x="104419" fg:w="81"/><text x="20.4246%" y="383.50"></text></g><g><title>profile_transition (66 samples, 0.01%)</title><rect x="20.1775%" y="357" width="0.0128%" height="15" fill="rgb(237,152,48)" fg:x="104434" fg:w="66"/><text x="20.4275%" y="367.50"></text></g><g><title>security_bprm_creds_for_exec (85 samples, 0.02%)</title><rect x="20.1744%" y="389" width="0.0164%" height="15" fill="rgb(221,59,37)" fg:x="104418" fg:w="85"/><text x="20.4244%" y="399.50"></text></g><g><title>bprm_execve (602 samples, 0.12%)</title><rect x="20.0753%" y="405" width="0.1163%" height="15" fill="rgb(209,202,51)" fg:x="103905" fg:w="602"/><text x="20.3253%" y="415.50"></text></g><g><title>__get_user_pages_remote (82 samples, 0.02%)</title><rect x="20.1918%" y="373" width="0.0158%" height="15" fill="rgb(228,81,30)" fg:x="104508" fg:w="82"/><text x="20.4418%" y="383.50"></text></g><g><title>__get_user_pages (79 samples, 0.02%)</title><rect x="20.1924%" y="357" width="0.0153%" height="15" fill="rgb(227,42,39)" fg:x="104511" fg:w="79"/><text x="20.4424%" y="367.50"></text></g><g><title>handle_mm_fault (67 samples, 0.01%)</title><rect x="20.1947%" y="341" width="0.0129%" height="15" fill="rgb(221,26,2)" fg:x="104523" fg:w="67"/><text x="20.4447%" y="351.50"></text></g><g><title>get_arg_page (86 samples, 0.02%)</title><rect x="20.1916%" y="389" width="0.0166%" height="15" fill="rgb(254,61,31)" fg:x="104507" fg:w="86"/><text x="20.4416%" y="399.50"></text></g><g><title>copy_string_kernel (87 samples, 0.02%)</title><rect x="20.1916%" y="405" width="0.0168%" height="15" fill="rgb(222,173,38)" fg:x="104507" fg:w="87"/><text x="20.4416%" y="415.50"></text></g><g><title>copy_strings.isra.0 (57 samples, 0.01%)</title><rect x="20.2084%" y="405" width="0.0110%" height="15" fill="rgb(218,50,12)" fg:x="104594" fg:w="57"/><text x="20.4584%" y="415.50"></text></g><g><title>do_execveat_common (832 samples, 0.16%)</title><rect x="20.0598%" y="421" width="0.1607%" height="15" fill="rgb(223,88,40)" fg:x="103825" fg:w="832"/><text x="20.3098%" y="431.50"></text></g><g><title>__GI_execve (853 samples, 0.16%)</title><rect x="20.0590%" y="485" width="0.1648%" height="15" fill="rgb(237,54,19)" fg:x="103821" fg:w="853"/><text x="20.3090%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (852 samples, 0.16%)</title><rect x="20.0592%" y="469" width="0.1646%" height="15" fill="rgb(251,129,25)" fg:x="103822" fg:w="852"/><text x="20.3092%" y="479.50"></text></g><g><title>do_syscall_64 (852 samples, 0.16%)</title><rect x="20.0592%" y="453" width="0.1646%" height="15" fill="rgb(238,97,19)" fg:x="103822" fg:w="852"/><text x="20.3092%" y="463.50"></text></g><g><title>__x64_sys_execve (851 samples, 0.16%)</title><rect x="20.0594%" y="437" width="0.1644%" height="15" fill="rgb(240,169,18)" fg:x="103823" fg:w="851"/><text x="20.3094%" y="447.50"></text></g><g><title>__strcspn_sse42 (85 samples, 0.02%)</title><rect x="20.2244%" y="485" width="0.0164%" height="15" fill="rgb(230,187,49)" fg:x="104677" fg:w="85"/><text x="20.4744%" y="495.50"></text></g><g><title>[dash] (1,221 samples, 0.24%)</title><rect x="20.0069%" y="501" width="0.2359%" height="15" fill="rgb(209,44,26)" fg:x="103551" fg:w="1221"/><text x="20.2569%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (1,051 samples, 0.20%)</title><rect x="20.2638%" y="373" width="0.2031%" height="15" fill="rgb(244,0,6)" fg:x="104881" fg:w="1051"/><text x="20.5138%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,022 samples, 0.20%)</title><rect x="20.2694%" y="357" width="0.1975%" height="15" fill="rgb(248,18,21)" fg:x="104910" fg:w="1022"/><text x="20.5194%" y="367.50"></text></g><g><title>native_write_msr (1,013 samples, 0.20%)</title><rect x="20.2712%" y="341" width="0.1957%" height="15" fill="rgb(245,180,19)" fg:x="104919" fg:w="1013"/><text x="20.5212%" y="351.50"></text></g><g><title>finish_task_switch (1,092 samples, 0.21%)</title><rect x="20.2606%" y="389" width="0.2110%" height="15" fill="rgb(252,118,36)" fg:x="104864" fg:w="1092"/><text x="20.5106%" y="399.50"></text></g><g><title>schedule (1,137 samples, 0.22%)</title><rect x="20.2550%" y="421" width="0.2197%" height="15" fill="rgb(210,224,19)" fg:x="104835" fg:w="1137"/><text x="20.5050%" y="431.50"></text></g><g><title>__schedule (1,136 samples, 0.22%)</title><rect x="20.2552%" y="405" width="0.2195%" height="15" fill="rgb(218,30,24)" fg:x="104836" fg:w="1136"/><text x="20.5052%" y="415.50"></text></g><g><title>release_task (131 samples, 0.03%)</title><rect x="20.4779%" y="405" width="0.0253%" height="15" fill="rgb(219,75,50)" fg:x="105989" fg:w="131"/><text x="20.7279%" y="415.50"></text></g><g><title>do_wait (1,302 samples, 0.25%)</title><rect x="20.2528%" y="437" width="0.2516%" height="15" fill="rgb(234,72,50)" fg:x="104824" fg:w="1302"/><text x="20.5028%" y="447.50"></text></g><g><title>wait_consider_task (154 samples, 0.03%)</title><rect x="20.4746%" y="421" width="0.0298%" height="15" fill="rgb(219,100,48)" fg:x="105972" fg:w="154"/><text x="20.7246%" y="431.50"></text></g><g><title>do_syscall_64 (1,313 samples, 0.25%)</title><rect x="20.2509%" y="469" width="0.2537%" height="15" fill="rgb(253,5,41)" fg:x="104814" fg:w="1313"/><text x="20.5009%" y="479.50"></text></g><g><title>kernel_wait4 (1,305 samples, 0.25%)</title><rect x="20.2524%" y="453" width="0.2521%" height="15" fill="rgb(247,181,11)" fg:x="104822" fg:w="1305"/><text x="20.5024%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,367 samples, 0.26%)</title><rect x="20.2509%" y="485" width="0.2641%" height="15" fill="rgb(222,223,25)" fg:x="104814" fg:w="1367"/><text x="20.5009%" y="495.50"></text></g><g><title>syscall_exit_to_user_mode (54 samples, 0.01%)</title><rect x="20.5046%" y="469" width="0.0104%" height="15" fill="rgb(214,198,28)" fg:x="106127" fg:w="54"/><text x="20.7546%" y="479.50"></text></g><g><title>exit_to_user_mode_prepare (53 samples, 0.01%)</title><rect x="20.5048%" y="453" width="0.0102%" height="15" fill="rgb(230,46,43)" fg:x="106128" fg:w="53"/><text x="20.7548%" y="463.50"></text></g><g><title>arch_do_signal (53 samples, 0.01%)</title><rect x="20.5048%" y="437" width="0.0102%" height="15" fill="rgb(233,65,53)" fg:x="106128" fg:w="53"/><text x="20.7548%" y="447.50"></text></g><g><title>__GI___wait4 (1,393 samples, 0.27%)</title><rect x="20.2486%" y="501" width="0.2691%" height="15" fill="rgb(221,121,27)" fg:x="104802" fg:w="1393"/><text x="20.4986%" y="511.50"></text></g><g><title>[dash] (2,801 samples, 0.54%)</title><rect x="20.0022%" y="517" width="0.5412%" height="15" fill="rgb(247,70,47)" fg:x="103527" fg:w="2801"/><text x="20.2522%" y="527.50"></text></g><g><title>asm_exc_page_fault (58 samples, 0.01%)</title><rect x="20.5595%" y="517" width="0.0112%" height="15" fill="rgb(228,85,35)" fg:x="106411" fg:w="58"/><text x="20.8095%" y="527.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="20.5595%" y="501" width="0.0112%" height="15" fill="rgb(209,50,18)" fg:x="106411" fg:w="58"/><text x="20.8095%" y="511.50"></text></g><g><title>do_user_addr_fault (58 samples, 0.01%)</title><rect x="20.5595%" y="485" width="0.0112%" height="15" fill="rgb(250,19,35)" fg:x="106411" fg:w="58"/><text x="20.8095%" y="495.50"></text></g><g><title>[dash] (2,988 samples, 0.58%)</title><rect x="19.9945%" y="533" width="0.5773%" height="15" fill="rgb(253,107,29)" fg:x="103487" fg:w="2988"/><text x="20.2445%" y="543.50"></text></g><g><title>asm_exc_page_fault (54 samples, 0.01%)</title><rect x="20.6018%" y="501" width="0.0104%" height="15" fill="rgb(252,179,29)" fg:x="106630" fg:w="54"/><text x="20.8518%" y="511.50"></text></g><g><title>exc_page_fault (54 samples, 0.01%)</title><rect x="20.6018%" y="485" width="0.0104%" height="15" fill="rgb(238,194,6)" fg:x="106630" fg:w="54"/><text x="20.8518%" y="495.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.01%)</title><rect x="20.6018%" y="469" width="0.0104%" height="15" fill="rgb(238,164,29)" fg:x="106630" fg:w="54"/><text x="20.8518%" y="479.50"></text></g><g><title>__run_fork_handlers (66 samples, 0.01%)</title><rect x="20.6010%" y="517" width="0.0128%" height="15" fill="rgb(224,25,9)" fg:x="106626" fg:w="66"/><text x="20.8510%" y="527.50"></text></g><g><title>find_vma (54 samples, 0.01%)</title><rect x="20.6387%" y="453" width="0.0104%" height="15" fill="rgb(244,153,23)" fg:x="106821" fg:w="54"/><text x="20.8887%" y="463.50"></text></g><g><title>alloc_set_pte (78 samples, 0.02%)</title><rect x="20.6901%" y="421" width="0.0151%" height="15" fill="rgb(212,203,14)" fg:x="107087" fg:w="78"/><text x="20.9401%" y="431.50"></text></g><g><title>filemap_map_pages (301 samples, 0.06%)</title><rect x="20.6648%" y="437" width="0.0582%" height="15" fill="rgb(220,164,20)" fg:x="106956" fg:w="301"/><text x="20.9148%" y="447.50"></text></g><g><title>xas_find (61 samples, 0.01%)</title><rect x="20.7111%" y="421" width="0.0118%" height="15" fill="rgb(222,203,48)" fg:x="107196" fg:w="61"/><text x="20.9611%" y="431.50"></text></g><g><title>__alloc_pages_nodemask (66 samples, 0.01%)</title><rect x="20.7239%" y="421" width="0.0128%" height="15" fill="rgb(215,159,22)" fg:x="107262" fg:w="66"/><text x="20.9739%" y="431.50"></text></g><g><title>handle_mm_fault (464 samples, 0.09%)</title><rect x="20.6491%" y="453" width="0.0896%" height="15" fill="rgb(216,183,47)" fg:x="106875" fg:w="464"/><text x="20.8991%" y="463.50"></text></g><g><title>pte_alloc_one (82 samples, 0.02%)</title><rect x="20.7229%" y="437" width="0.0158%" height="15" fill="rgb(229,195,25)" fg:x="107257" fg:w="82"/><text x="20.9729%" y="447.50"></text></g><g><title>do_user_addr_fault (548 samples, 0.11%)</title><rect x="20.6333%" y="469" width="0.1059%" height="15" fill="rgb(224,132,51)" fg:x="106793" fg:w="548"/><text x="20.8833%" y="479.50"></text></g><g><title>exc_page_fault (551 samples, 0.11%)</title><rect x="20.6329%" y="485" width="0.1065%" height="15" fill="rgb(240,63,7)" fg:x="106791" fg:w="551"/><text x="20.8829%" y="495.50"></text></g><g><title>asm_exc_page_fault (561 samples, 0.11%)</title><rect x="20.6319%" y="501" width="0.1084%" height="15" fill="rgb(249,182,41)" fg:x="106786" fg:w="561"/><text x="20.8819%" y="511.50"></text></g><g><title>kmem_cache_alloc (79 samples, 0.02%)</title><rect x="20.8037%" y="373" width="0.0153%" height="15" fill="rgb(243,47,26)" fg:x="107675" fg:w="79"/><text x="21.0537%" y="383.50"></text></g><g><title>anon_vma_clone (136 samples, 0.03%)</title><rect x="20.7932%" y="389" width="0.0263%" height="15" fill="rgb(233,48,2)" fg:x="107621" fg:w="136"/><text x="21.0432%" y="399.50"></text></g><g><title>kmem_cache_alloc (65 samples, 0.01%)</title><rect x="20.8207%" y="389" width="0.0126%" height="15" fill="rgb(244,165,34)" fg:x="107763" fg:w="65"/><text x="21.0707%" y="399.50"></text></g><g><title>anon_vma_fork (221 samples, 0.04%)</title><rect x="20.7911%" y="405" width="0.0427%" height="15" fill="rgb(207,89,7)" fg:x="107610" fg:w="221"/><text x="21.0411%" y="415.50"></text></g><g><title>copy_page_range (185 samples, 0.04%)</title><rect x="20.8338%" y="405" width="0.0357%" height="15" fill="rgb(244,117,36)" fg:x="107831" fg:w="185"/><text x="21.0838%" y="415.50"></text></g><g><title>vm_area_dup (152 samples, 0.03%)</title><rect x="20.8800%" y="405" width="0.0294%" height="15" fill="rgb(226,144,34)" fg:x="108070" fg:w="152"/><text x="21.1300%" y="415.50"></text></g><g><title>kmem_cache_alloc (100 samples, 0.02%)</title><rect x="20.8900%" y="389" width="0.0193%" height="15" fill="rgb(213,23,19)" fg:x="108122" fg:w="100"/><text x="21.1400%" y="399.50"></text></g><g><title>dup_mm (697 samples, 0.13%)</title><rect x="20.7755%" y="421" width="0.1347%" height="15" fill="rgb(217,75,12)" fg:x="107529" fg:w="697"/><text x="21.0255%" y="431.50"></text></g><g><title>perf_try_init_event (67 samples, 0.01%)</title><rect x="20.9480%" y="357" width="0.0129%" height="15" fill="rgb(224,159,17)" fg:x="108422" fg:w="67"/><text x="21.1980%" y="367.50"></text></g><g><title>x86_pmu_event_init (67 samples, 0.01%)</title><rect x="20.9480%" y="341" width="0.0129%" height="15" fill="rgb(217,118,1)" fg:x="108422" fg:w="67"/><text x="21.1980%" y="351.50"></text></g><g><title>inherit_task_group.isra.0 (179 samples, 0.03%)</title><rect x="20.9265%" y="405" width="0.0346%" height="15" fill="rgb(232,180,48)" fg:x="108311" fg:w="179"/><text x="21.1765%" y="415.50"></text></g><g><title>inherit_event.constprop.0 (171 samples, 0.03%)</title><rect x="20.9281%" y="389" width="0.0330%" height="15" fill="rgb(230,27,33)" fg:x="108319" fg:w="171"/><text x="21.1781%" y="399.50"></text></g><g><title>perf_event_alloc (141 samples, 0.03%)</title><rect x="20.9339%" y="373" width="0.0272%" height="15" fill="rgb(205,31,21)" fg:x="108349" fg:w="141"/><text x="21.1839%" y="383.50"></text></g><g><title>perf_event_init_task (192 samples, 0.04%)</title><rect x="20.9254%" y="421" width="0.0371%" height="15" fill="rgb(253,59,4)" fg:x="108305" fg:w="192"/><text x="21.1754%" y="431.50"></text></g><g><title>copy_process (1,175 samples, 0.23%)</title><rect x="20.7411%" y="437" width="0.2270%" height="15" fill="rgb(224,201,9)" fg:x="107351" fg:w="1175"/><text x="20.9911%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,259 samples, 0.24%)</title><rect x="20.7405%" y="501" width="0.2432%" height="15" fill="rgb(229,206,30)" fg:x="107348" fg:w="1259"/><text x="20.9905%" y="511.50"></text></g><g><title>do_syscall_64 (1,259 samples, 0.24%)</title><rect x="20.7405%" y="485" width="0.2432%" height="15" fill="rgb(212,67,47)" fg:x="107348" fg:w="1259"/><text x="20.9905%" y="495.50"></text></g><g><title>__do_sys_clone (1,259 samples, 0.24%)</title><rect x="20.7405%" y="469" width="0.2432%" height="15" fill="rgb(211,96,50)" fg:x="107348" fg:w="1259"/><text x="20.9905%" y="479.50"></text></g><g><title>kernel_clone (1,258 samples, 0.24%)</title><rect x="20.7407%" y="453" width="0.2431%" height="15" fill="rgb(252,114,18)" fg:x="107349" fg:w="1258"/><text x="20.9907%" y="463.50"></text></g><g><title>wake_up_new_task (81 samples, 0.02%)</title><rect x="20.9681%" y="437" width="0.0156%" height="15" fill="rgb(223,58,37)" fg:x="108526" fg:w="81"/><text x="21.2181%" y="447.50"></text></g><g><title>calculate_sigpending (54 samples, 0.01%)</title><rect x="20.9955%" y="485" width="0.0104%" height="15" fill="rgb(237,70,4)" fg:x="108668" fg:w="54"/><text x="21.2455%" y="495.50"></text></g><g><title>find_vma (79 samples, 0.02%)</title><rect x="21.0436%" y="405" width="0.0153%" height="15" fill="rgb(244,85,46)" fg:x="108917" fg:w="79"/><text x="21.2936%" y="415.50"></text></g><g><title>do_wp_page (118 samples, 0.02%)</title><rect x="21.0906%" y="389" width="0.0228%" height="15" fill="rgb(223,39,52)" fg:x="109160" fg:w="118"/><text x="21.3406%" y="399.50"></text></g><g><title>__alloc_pages_nodemask (60 samples, 0.01%)</title><rect x="21.1178%" y="357" width="0.0116%" height="15" fill="rgb(218,200,14)" fg:x="109301" fg:w="60"/><text x="21.3678%" y="367.50"></text></g><g><title>alloc_pages_vma (69 samples, 0.01%)</title><rect x="21.1167%" y="373" width="0.0133%" height="15" fill="rgb(208,171,16)" fg:x="109295" fg:w="69"/><text x="21.3667%" y="383.50"></text></g><g><title>handle_mm_fault (432 samples, 0.08%)</title><rect x="21.0589%" y="405" width="0.0835%" height="15" fill="rgb(234,200,18)" fg:x="108996" fg:w="432"/><text x="21.3089%" y="415.50"></text></g><g><title>wp_page_copy (142 samples, 0.03%)</title><rect x="21.1149%" y="389" width="0.0274%" height="15" fill="rgb(228,45,11)" fg:x="109286" fg:w="142"/><text x="21.3649%" y="399.50"></text></g><g><title>exc_page_fault (548 samples, 0.11%)</title><rect x="21.0382%" y="437" width="0.1059%" height="15" fill="rgb(237,182,11)" fg:x="108889" fg:w="548"/><text x="21.2882%" y="447.50"></text></g><g><title>do_user_addr_fault (546 samples, 0.11%)</title><rect x="21.0386%" y="421" width="0.1055%" height="15" fill="rgb(241,175,49)" fg:x="108891" fg:w="546"/><text x="21.2886%" y="431.50"></text></g><g><title>asm_exc_page_fault (635 samples, 0.12%)</title><rect x="21.0220%" y="453" width="0.1227%" height="15" fill="rgb(247,38,35)" fg:x="108805" fg:w="635"/><text x="21.2720%" y="463.50"></text></g><g><title>__put_user_nocheck_4 (705 samples, 0.14%)</title><rect x="21.0092%" y="469" width="0.1362%" height="15" fill="rgb(228,39,49)" fg:x="108739" fg:w="705"/><text x="21.2592%" y="479.50"></text></g><g><title>__task_pid_nr_ns (71 samples, 0.01%)</title><rect x="21.1455%" y="469" width="0.0137%" height="15" fill="rgb(226,101,26)" fg:x="109444" fg:w="71"/><text x="21.3955%" y="479.50"></text></g><g><title>__mmdrop (133 samples, 0.03%)</title><rect x="21.2272%" y="453" width="0.0257%" height="15" fill="rgb(206,141,19)" fg:x="109867" fg:w="133"/><text x="21.4772%" y="463.50"></text></g><g><title>pgd_free (67 samples, 0.01%)</title><rect x="21.2399%" y="437" width="0.0129%" height="15" fill="rgb(211,200,13)" fg:x="109933" fg:w="67"/><text x="21.4899%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (13,173 samples, 2.55%)</title><rect x="21.2529%" y="453" width="2.5451%" height="15" fill="rgb(241,121,6)" fg:x="110000" fg:w="13173"/><text x="21.5029%" y="463.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (12,823 samples, 2.48%)</title><rect x="21.3205%" y="437" width="2.4775%" height="15" fill="rgb(234,221,29)" fg:x="110350" fg:w="12823"/><text x="21.5705%" y="447.50">__..</text></g><g><title>native_write_msr (12,709 samples, 2.46%)</title><rect x="21.3425%" y="421" width="2.4555%" height="15" fill="rgb(229,136,5)" fg:x="110464" fg:w="12709"/><text x="21.5925%" y="431.50">na..</text></g><g><title>ttwu_do_activate (60 samples, 0.01%)</title><rect x="23.8195%" y="245" width="0.0116%" height="15" fill="rgb(238,36,11)" fg:x="123284" fg:w="60"/><text x="24.0695%" y="255.50"></text></g><g><title>__wake_up_common (86 samples, 0.02%)</title><rect x="23.8167%" y="293" width="0.0166%" height="15" fill="rgb(251,55,41)" fg:x="123270" fg:w="86"/><text x="24.0667%" y="303.50"></text></g><g><title>pollwake (85 samples, 0.02%)</title><rect x="23.8169%" y="277" width="0.0164%" height="15" fill="rgb(242,34,40)" fg:x="123271" fg:w="85"/><text x="24.0669%" y="287.50"></text></g><g><title>try_to_wake_up (84 samples, 0.02%)</title><rect x="23.8171%" y="261" width="0.0162%" height="15" fill="rgb(215,42,17)" fg:x="123272" fg:w="84"/><text x="24.0671%" y="271.50"></text></g><g><title>irq_work_run (92 samples, 0.02%)</title><rect x="23.8158%" y="389" width="0.0178%" height="15" fill="rgb(207,44,46)" fg:x="123265" fg:w="92"/><text x="24.0658%" y="399.50"></text></g><g><title>irq_work_run_list (92 samples, 0.02%)</title><rect x="23.8158%" y="373" width="0.0178%" height="15" fill="rgb(211,206,28)" fg:x="123265" fg:w="92"/><text x="24.0658%" y="383.50"></text></g><g><title>irq_work_single (92 samples, 0.02%)</title><rect x="23.8158%" y="357" width="0.0178%" height="15" fill="rgb(237,167,16)" fg:x="123265" fg:w="92"/><text x="24.0658%" y="367.50"></text></g><g><title>perf_pending_event (91 samples, 0.02%)</title><rect x="23.8160%" y="341" width="0.0176%" height="15" fill="rgb(233,66,6)" fg:x="123266" fg:w="91"/><text x="24.0660%" y="351.50"></text></g><g><title>perf_event_wakeup (88 samples, 0.02%)</title><rect x="23.8166%" y="325" width="0.0170%" height="15" fill="rgb(246,123,29)" fg:x="123269" fg:w="88"/><text x="24.0666%" y="335.50"></text></g><g><title>__wake_up_common_lock (87 samples, 0.02%)</title><rect x="23.8167%" y="309" width="0.0168%" height="15" fill="rgb(209,62,40)" fg:x="123270" fg:w="87"/><text x="24.0667%" y="319.50"></text></g><g><title>asm_call_sysvec_on_stack (97 samples, 0.02%)</title><rect x="23.8150%" y="421" width="0.0187%" height="15" fill="rgb(218,4,25)" fg:x="123261" fg:w="97"/><text x="24.0650%" y="431.50"></text></g><g><title>__sysvec_irq_work (94 samples, 0.02%)</title><rect x="23.8156%" y="405" width="0.0182%" height="15" fill="rgb(253,91,49)" fg:x="123264" fg:w="94"/><text x="24.0656%" y="415.50"></text></g><g><title>asm_sysvec_irq_work (177 samples, 0.03%)</title><rect x="23.8003%" y="453" width="0.0342%" height="15" fill="rgb(228,155,29)" fg:x="123185" fg:w="177"/><text x="24.0503%" y="463.50"></text></g><g><title>sysvec_irq_work (108 samples, 0.02%)</title><rect x="23.8137%" y="437" width="0.0209%" height="15" fill="rgb(243,57,37)" fg:x="123254" fg:w="108"/><text x="24.0637%" y="447.50"></text></g><g><title>schedule_tail (14,677 samples, 2.84%)</title><rect x="21.0060%" y="485" width="2.8357%" height="15" fill="rgb(244,167,17)" fg:x="108722" fg:w="14677"/><text x="21.2560%" y="495.50">sc..</text></g><g><title>finish_task_switch (13,884 samples, 2.68%)</title><rect x="21.1592%" y="469" width="2.6825%" height="15" fill="rgb(207,181,38)" fg:x="109515" fg:w="13884"/><text x="21.4092%" y="479.50">fi..</text></g><g><title>ret_from_fork (14,823 samples, 2.86%)</title><rect x="20.9946%" y="501" width="2.8639%" height="15" fill="rgb(211,8,23)" fg:x="108663" fg:w="14823"/><text x="21.2446%" y="511.50">re..</text></g><g><title>syscall_exit_to_user_mode (87 samples, 0.02%)</title><rect x="23.8417%" y="485" width="0.0168%" height="15" fill="rgb(235,11,44)" fg:x="123399" fg:w="87"/><text x="24.0917%" y="495.50"></text></g><g><title>exit_to_user_mode_prepare (87 samples, 0.02%)</title><rect x="23.8417%" y="469" width="0.0168%" height="15" fill="rgb(248,18,52)" fg:x="123399" fg:w="87"/><text x="24.0917%" y="479.50"></text></g><g><title>switch_fpu_return (84 samples, 0.02%)</title><rect x="23.8422%" y="453" width="0.0162%" height="15" fill="rgb(208,4,7)" fg:x="123402" fg:w="84"/><text x="24.0922%" y="463.50"></text></g><g><title>copy_kernel_to_fpregs (58 samples, 0.01%)</title><rect x="23.8473%" y="437" width="0.0112%" height="15" fill="rgb(240,17,39)" fg:x="123428" fg:w="58"/><text x="24.0973%" y="447.50"></text></g><g><title>arch_fork (16,798 samples, 3.25%)</title><rect x="20.6137%" y="517" width="3.2455%" height="15" fill="rgb(207,170,3)" fg:x="106692" fg:w="16798"/><text x="20.8637%" y="527.50">arc..</text></g><g><title>asm_exc_page_fault (198 samples, 0.04%)</title><rect x="23.8593%" y="517" width="0.0383%" height="15" fill="rgb(236,100,52)" fg:x="123490" fg:w="198"/><text x="24.1093%" y="527.50"></text></g><g><title>exc_page_fault (195 samples, 0.04%)</title><rect x="23.8598%" y="501" width="0.0377%" height="15" fill="rgb(246,78,51)" fg:x="123493" fg:w="195"/><text x="24.1098%" y="511.50"></text></g><g><title>do_user_addr_fault (193 samples, 0.04%)</title><rect x="23.8602%" y="485" width="0.0373%" height="15" fill="rgb(211,17,15)" fg:x="123495" fg:w="193"/><text x="24.1102%" y="495.50"></text></g><g><title>handle_mm_fault (172 samples, 0.03%)</title><rect x="23.8643%" y="469" width="0.0332%" height="15" fill="rgb(209,59,46)" fg:x="123516" fg:w="172"/><text x="24.1143%" y="479.50"></text></g><g><title>wp_page_copy (122 samples, 0.02%)</title><rect x="23.8739%" y="453" width="0.0236%" height="15" fill="rgb(210,92,25)" fg:x="123566" fg:w="122"/><text x="24.1239%" y="463.50"></text></g><g><title>__libc_fork (17,178 samples, 3.32%)</title><rect x="20.5815%" y="533" width="3.3189%" height="15" fill="rgb(238,174,52)" fg:x="106525" fg:w="17178"/><text x="20.8315%" y="543.50">__l..</text></g><g><title>handle_mm_fault (69 samples, 0.01%)</title><rect x="23.9037%" y="485" width="0.0133%" height="15" fill="rgb(230,73,7)" fg:x="123720" fg:w="69"/><text x="24.1537%" y="495.50"></text></g><g><title>filemap_map_pages (61 samples, 0.01%)</title><rect x="23.9052%" y="469" width="0.0118%" height="15" fill="rgb(243,124,40)" fg:x="123728" fg:w="61"/><text x="24.1552%" y="479.50"></text></g><g><title>exc_page_fault (82 samples, 0.02%)</title><rect x="23.9016%" y="517" width="0.0158%" height="15" fill="rgb(244,170,11)" fg:x="123709" fg:w="82"/><text x="24.1516%" y="527.50"></text></g><g><title>do_user_addr_fault (81 samples, 0.02%)</title><rect x="23.9018%" y="501" width="0.0156%" height="15" fill="rgb(207,114,54)" fg:x="123710" fg:w="81"/><text x="24.1518%" y="511.50"></text></g><g><title>asm_exc_page_fault (83 samples, 0.02%)</title><rect x="23.9016%" y="533" width="0.0160%" height="15" fill="rgb(205,42,20)" fg:x="123709" fg:w="83"/><text x="24.1516%" y="543.50"></text></g><g><title>[dash] (20,330 samples, 3.93%)</title><rect x="19.9912%" y="549" width="3.9279%" height="15" fill="rgb(230,30,28)" fg:x="103470" fg:w="20330"/><text x="20.2412%" y="559.50">[das..</text></g><g><title>create_pipe_files (72 samples, 0.01%)</title><rect x="23.9323%" y="469" width="0.0139%" height="15" fill="rgb(205,73,54)" fg:x="123868" fg:w="72"/><text x="24.1823%" y="479.50"></text></g><g><title>__GI_pipe (86 samples, 0.02%)</title><rect x="23.9298%" y="549" width="0.0166%" height="15" fill="rgb(254,227,23)" fg:x="123855" fg:w="86"/><text x="24.1798%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.02%)</title><rect x="23.9300%" y="533" width="0.0164%" height="15" fill="rgb(228,202,34)" fg:x="123856" fg:w="85"/><text x="24.1800%" y="543.50"></text></g><g><title>do_syscall_64 (85 samples, 0.02%)</title><rect x="23.9300%" y="517" width="0.0164%" height="15" fill="rgb(222,225,37)" fg:x="123856" fg:w="85"/><text x="24.1800%" y="527.50"></text></g><g><title>__x64_sys_pipe (85 samples, 0.02%)</title><rect x="23.9300%" y="501" width="0.0164%" height="15" fill="rgb(221,14,54)" fg:x="123856" fg:w="85"/><text x="24.1800%" y="511.50"></text></g><g><title>do_pipe2 (85 samples, 0.02%)</title><rect x="23.9300%" y="485" width="0.0164%" height="15" fill="rgb(254,102,2)" fg:x="123856" fg:w="85"/><text x="24.1800%" y="495.50"></text></g><g><title>[dash] (20,484 samples, 3.96%)</title><rect x="19.9895%" y="565" width="3.9577%" height="15" fill="rgb(232,104,17)" fg:x="103461" fg:w="20484"/><text x="20.2395%" y="575.50">[das..</text></g><g><title>[dash] (20,558 samples, 3.97%)</title><rect x="19.9874%" y="581" width="3.9720%" height="15" fill="rgb(250,220,14)" fg:x="103450" fg:w="20558"/><text x="20.2374%" y="591.50">[das..</text></g><g><title>[dash] (20,631 samples, 3.99%)</title><rect x="19.9847%" y="597" width="3.9861%" height="15" fill="rgb(241,158,9)" fg:x="103436" fg:w="20631"/><text x="20.2347%" y="607.50">[das..</text></g><g><title>[dash] (20,754 samples, 4.01%)</title><rect x="19.9820%" y="613" width="4.0098%" height="15" fill="rgb(246,9,43)" fg:x="103422" fg:w="20754"/><text x="20.2320%" y="623.50">[das..</text></g><g><title>filemap_map_pages (122 samples, 0.02%)</title><rect x="24.0188%" y="517" width="0.0236%" height="15" fill="rgb(206,73,33)" fg:x="124316" fg:w="122"/><text x="24.2688%" y="527.50"></text></g><g><title>exc_page_fault (192 samples, 0.04%)</title><rect x="24.0105%" y="565" width="0.0371%" height="15" fill="rgb(222,79,8)" fg:x="124273" fg:w="192"/><text x="24.2605%" y="575.50"></text></g><g><title>do_user_addr_fault (191 samples, 0.04%)</title><rect x="24.0107%" y="549" width="0.0369%" height="15" fill="rgb(234,8,54)" fg:x="124274" fg:w="191"/><text x="24.2607%" y="559.50"></text></g><g><title>handle_mm_fault (174 samples, 0.03%)</title><rect x="24.0140%" y="533" width="0.0336%" height="15" fill="rgb(209,134,38)" fg:x="124291" fg:w="174"/><text x="24.2640%" y="543.50"></text></g><g><title>asm_exc_page_fault (197 samples, 0.04%)</title><rect x="24.0100%" y="581" width="0.0381%" height="15" fill="rgb(230,127,29)" fg:x="124270" fg:w="197"/><text x="24.2600%" y="591.50"></text></g><g><title>copy_page_range (67 samples, 0.01%)</title><rect x="24.0811%" y="485" width="0.0129%" height="15" fill="rgb(242,44,41)" fg:x="124638" fg:w="67"/><text x="24.3311%" y="495.50"></text></g><g><title>dup_mm (200 samples, 0.04%)</title><rect x="24.0675%" y="501" width="0.0386%" height="15" fill="rgb(222,56,43)" fg:x="124568" fg:w="200"/><text x="24.3175%" y="511.50"></text></g><g><title>inherit_task_group.isra.0 (88 samples, 0.02%)</title><rect x="24.1131%" y="485" width="0.0170%" height="15" fill="rgb(238,39,47)" fg:x="124804" fg:w="88"/><text x="24.3631%" y="495.50"></text></g><g><title>inherit_event.constprop.0 (85 samples, 0.02%)</title><rect x="24.1137%" y="469" width="0.0164%" height="15" fill="rgb(226,79,43)" fg:x="124807" fg:w="85"/><text x="24.3637%" y="479.50"></text></g><g><title>perf_event_alloc (73 samples, 0.01%)</title><rect x="24.1160%" y="453" width="0.0141%" height="15" fill="rgb(242,105,53)" fg:x="124819" fg:w="73"/><text x="24.3660%" y="463.50"></text></g><g><title>perf_event_init_task (94 samples, 0.02%)</title><rect x="24.1124%" y="501" width="0.0182%" height="15" fill="rgb(251,132,46)" fg:x="124800" fg:w="94"/><text x="24.3624%" y="511.50"></text></g><g><title>copy_process (436 samples, 0.08%)</title><rect x="24.0482%" y="517" width="0.0842%" height="15" fill="rgb(231,77,14)" fg:x="124468" fg:w="436"/><text x="24.2982%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (462 samples, 0.09%)</title><rect x="24.0480%" y="581" width="0.0893%" height="15" fill="rgb(240,135,9)" fg:x="124467" fg:w="462"/><text x="24.2980%" y="591.50"></text></g><g><title>do_syscall_64 (462 samples, 0.09%)</title><rect x="24.0480%" y="565" width="0.0893%" height="15" fill="rgb(248,109,14)" fg:x="124467" fg:w="462"/><text x="24.2980%" y="575.50"></text></g><g><title>__do_sys_clone (462 samples, 0.09%)</title><rect x="24.0480%" y="549" width="0.0893%" height="15" fill="rgb(227,146,52)" fg:x="124467" fg:w="462"/><text x="24.2980%" y="559.50"></text></g><g><title>kernel_clone (462 samples, 0.09%)</title><rect x="24.0480%" y="533" width="0.0893%" height="15" fill="rgb(232,54,3)" fg:x="124467" fg:w="462"/><text x="24.2980%" y="543.50"></text></g><g><title>get_page_from_freelist (92 samples, 0.02%)</title><rect x="24.1900%" y="421" width="0.0178%" height="15" fill="rgb(229,201,43)" fg:x="125202" fg:w="92"/><text x="24.4400%" y="431.50"></text></g><g><title>__alloc_pages_nodemask (120 samples, 0.02%)</title><rect x="24.1848%" y="437" width="0.0232%" height="15" fill="rgb(252,161,33)" fg:x="125175" fg:w="120"/><text x="24.4348%" y="447.50"></text></g><g><title>alloc_pages_vma (135 samples, 0.03%)</title><rect x="24.1825%" y="453" width="0.0261%" height="15" fill="rgb(226,146,40)" fg:x="125163" fg:w="135"/><text x="24.4325%" y="463.50"></text></g><g><title>ptep_clear_flush (62 samples, 0.01%)</title><rect x="24.2366%" y="453" width="0.0120%" height="15" fill="rgb(219,47,25)" fg:x="125443" fg:w="62"/><text x="24.4866%" y="463.50"></text></g><g><title>flush_tlb_mm_range (56 samples, 0.01%)</title><rect x="24.2377%" y="437" width="0.0108%" height="15" fill="rgb(250,135,13)" fg:x="125449" fg:w="56"/><text x="24.4877%" y="447.50"></text></g><g><title>handle_mm_fault (442 samples, 0.09%)</title><rect x="24.1637%" y="485" width="0.0854%" height="15" fill="rgb(219,229,18)" fg:x="125066" fg:w="442"/><text x="24.4137%" y="495.50"></text></g><g><title>wp_page_copy (370 samples, 0.07%)</title><rect x="24.1777%" y="469" width="0.0715%" height="15" fill="rgb(217,152,27)" fg:x="125138" fg:w="370"/><text x="24.4277%" y="479.50"></text></g><g><title>do_user_addr_fault (488 samples, 0.09%)</title><rect x="24.1558%" y="501" width="0.0943%" height="15" fill="rgb(225,71,47)" fg:x="125025" fg:w="488"/><text x="24.4058%" y="511.50"></text></g><g><title>exc_page_fault (490 samples, 0.09%)</title><rect x="24.1556%" y="517" width="0.0947%" height="15" fill="rgb(220,139,14)" fg:x="125024" fg:w="490"/><text x="24.4056%" y="527.50"></text></g><g><title>asm_exc_page_fault (526 samples, 0.10%)</title><rect x="24.1491%" y="533" width="0.1016%" height="15" fill="rgb(247,54,32)" fg:x="124990" fg:w="526"/><text x="24.3991%" y="543.50"></text></g><g><title>__put_user_nocheck_4 (548 samples, 0.11%)</title><rect x="24.1454%" y="549" width="0.1059%" height="15" fill="rgb(252,131,39)" fg:x="124971" fg:w="548"/><text x="24.3954%" y="559.50"></text></g><g><title>__mmdrop (200 samples, 0.04%)</title><rect x="24.3002%" y="533" width="0.0386%" height="15" fill="rgb(210,108,39)" fg:x="125772" fg:w="200"/><text x="24.5502%" y="543.50"></text></g><g><title>pgd_free (112 samples, 0.02%)</title><rect x="24.3172%" y="517" width="0.0216%" height="15" fill="rgb(205,23,29)" fg:x="125860" fg:w="112"/><text x="24.5672%" y="527.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="24.3286%" y="501" width="0.0102%" height="15" fill="rgb(246,139,46)" fg:x="125919" fg:w="53"/><text x="24.5786%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (6,251 samples, 1.21%)</title><rect x="24.3388%" y="533" width="1.2077%" height="15" fill="rgb(250,81,26)" fg:x="125972" fg:w="6251"/><text x="24.5888%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,049 samples, 1.17%)</title><rect x="24.3778%" y="517" width="1.1687%" height="15" fill="rgb(214,104,7)" fg:x="126174" fg:w="6049"/><text x="24.6278%" y="527.50"></text></g><g><title>native_write_msr (6,009 samples, 1.16%)</title><rect x="24.3856%" y="501" width="1.1610%" height="15" fill="rgb(233,189,8)" fg:x="126214" fg:w="6009"/><text x="24.6356%" y="511.50"></text></g><g><title>asm_sysvec_irq_work (95 samples, 0.02%)</title><rect x="25.5479%" y="533" width="0.0184%" height="15" fill="rgb(228,141,17)" fg:x="132230" fg:w="95"/><text x="25.7979%" y="543.50"></text></g><g><title>schedule_tail (7,378 samples, 1.43%)</title><rect x="24.1450%" y="565" width="1.4255%" height="15" fill="rgb(247,157,1)" fg:x="124969" fg:w="7378"/><text x="24.3950%" y="575.50"></text></g><g><title>finish_task_switch (6,812 samples, 1.32%)</title><rect x="24.2544%" y="549" width="1.3161%" height="15" fill="rgb(249,225,5)" fg:x="125535" fg:w="6812"/><text x="24.5044%" y="559.50"></text></g><g><title>ret_from_fork (7,431 samples, 1.44%)</title><rect x="24.1413%" y="581" width="1.4357%" height="15" fill="rgb(242,55,13)" fg:x="124950" fg:w="7431"/><text x="24.3913%" y="591.50"></text></g><g><title>arch_fork (8,151 samples, 1.57%)</title><rect x="24.0024%" y="597" width="1.5748%" height="15" fill="rgb(230,49,50)" fg:x="124231" fg:w="8151"/><text x="24.2524%" y="607.50"></text></g><g><title>__libc_fork (8,254 samples, 1.59%)</title><rect x="23.9920%" y="613" width="1.5947%" height="15" fill="rgb(241,111,38)" fg:x="124177" fg:w="8254"/><text x="24.2420%" y="623.50"></text></g><g><title>[dash] (29,035 samples, 5.61%)</title><rect x="19.9794%" y="629" width="5.6098%" height="15" fill="rgb(252,155,4)" fg:x="103409" fg:w="29035"/><text x="20.2294%" y="639.50">[dash]</text></g><g><title>[dash] (29,121 samples, 5.63%)</title><rect x="19.9775%" y="645" width="5.6264%" height="15" fill="rgb(212,69,32)" fg:x="103399" fg:w="29121"/><text x="20.2275%" y="655.50">[dash]</text></g><g><title>__perf_event_task_sched_in (465 samples, 0.09%)</title><rect x="25.6300%" y="485" width="0.0898%" height="15" fill="rgb(243,107,47)" fg:x="132655" fg:w="465"/><text x="25.8800%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (459 samples, 0.09%)</title><rect x="25.6312%" y="469" width="0.0887%" height="15" fill="rgb(247,130,12)" fg:x="132661" fg:w="459"/><text x="25.8812%" y="479.50"></text></g><g><title>native_write_msr (459 samples, 0.09%)</title><rect x="25.6312%" y="453" width="0.0887%" height="15" fill="rgb(233,74,16)" fg:x="132661" fg:w="459"/><text x="25.8812%" y="463.50"></text></g><g><title>finish_task_switch (499 samples, 0.10%)</title><rect x="25.6269%" y="501" width="0.0964%" height="15" fill="rgb(208,58,18)" fg:x="132639" fg:w="499"/><text x="25.8769%" y="511.50"></text></g><g><title>schedule (530 samples, 0.10%)</title><rect x="25.6234%" y="533" width="0.1024%" height="15" fill="rgb(242,225,1)" fg:x="132621" fg:w="530"/><text x="25.8734%" y="543.50"></text></g><g><title>__schedule (528 samples, 0.10%)</title><rect x="25.6238%" y="517" width="0.1020%" height="15" fill="rgb(249,39,40)" fg:x="132623" fg:w="528"/><text x="25.8738%" y="527.50"></text></g><g><title>new_sync_read (581 samples, 0.11%)</title><rect x="25.6159%" y="565" width="0.1123%" height="15" fill="rgb(207,72,44)" fg:x="132582" fg:w="581"/><text x="25.8659%" y="575.50"></text></g><g><title>pipe_read (578 samples, 0.11%)</title><rect x="25.6165%" y="549" width="0.1117%" height="15" fill="rgb(215,193,12)" fg:x="132585" fg:w="578"/><text x="25.8665%" y="559.50"></text></g><g><title>do_syscall_64 (605 samples, 0.12%)</title><rect x="25.6130%" y="613" width="0.1169%" height="15" fill="rgb(248,41,39)" fg:x="132567" fg:w="605"/><text x="25.8630%" y="623.50"></text></g><g><title>ksys_read (603 samples, 0.12%)</title><rect x="25.6134%" y="597" width="0.1165%" height="15" fill="rgb(253,85,4)" fg:x="132569" fg:w="603"/><text x="25.8634%" y="607.50"></text></g><g><title>vfs_read (596 samples, 0.12%)</title><rect x="25.6147%" y="581" width="0.1152%" height="15" fill="rgb(243,70,31)" fg:x="132576" fg:w="596"/><text x="25.8647%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (629 samples, 0.12%)</title><rect x="25.6130%" y="629" width="0.1215%" height="15" fill="rgb(253,195,26)" fg:x="132567" fg:w="629"/><text x="25.8630%" y="639.50"></text></g><g><title>__GI___libc_read (659 samples, 0.13%)</title><rect x="25.6115%" y="645" width="0.1273%" height="15" fill="rgb(243,42,11)" fg:x="132559" fg:w="659"/><text x="25.8615%" y="655.50"></text></g><g><title>[dash] (29,893 samples, 5.78%)</title><rect x="19.9752%" y="661" width="5.7756%" height="15" fill="rgb(239,66,17)" fg:x="103387" fg:w="29893"/><text x="20.2252%" y="671.50">[dash]</text></g><g><title>[dash] (29,915 samples, 5.78%)</title><rect x="19.9729%" y="677" width="5.7798%" height="15" fill="rgb(217,132,21)" fg:x="103375" fg:w="29915"/><text x="20.2229%" y="687.50">[dash]</text></g><g><title>[dash] (29,933 samples, 5.78%)</title><rect x="19.9707%" y="693" width="5.7833%" height="15" fill="rgb(252,202,21)" fg:x="103364" fg:w="29933"/><text x="20.2207%" y="703.50">[dash]</text></g><g><title>[dash] (29,936 samples, 5.78%)</title><rect x="19.9704%" y="709" width="5.7839%" height="15" fill="rgb(233,98,36)" fg:x="103362" fg:w="29936"/><text x="20.2204%" y="719.50">[dash]</text></g><g><title>[dash] (29,981 samples, 5.79%)</title><rect x="19.9696%" y="725" width="5.7926%" height="15" fill="rgb(216,153,54)" fg:x="103358" fg:w="29981"/><text x="20.2196%" y="735.50">[dash]</text></g><g><title>[dash] (29,988 samples, 5.79%)</title><rect x="19.9692%" y="741" width="5.7939%" height="15" fill="rgb(250,99,7)" fg:x="103356" fg:w="29988"/><text x="20.2192%" y="751.50">[dash]</text></g><g><title>[dash] (30,057 samples, 5.81%)</title><rect x="19.9692%" y="757" width="5.8073%" height="15" fill="rgb(207,56,50)" fg:x="103356" fg:w="30057"/><text x="20.2192%" y="767.50">[dash]</text></g><g><title>[dash] (30,078 samples, 5.81%)</title><rect x="19.9690%" y="773" width="5.8113%" height="15" fill="rgb(244,61,34)" fg:x="103355" fg:w="30078"/><text x="20.2190%" y="783.50">[dash]</text></g><g><title>__libc_start_main (30,079 samples, 5.81%)</title><rect x="19.9690%" y="789" width="5.8115%" height="15" fill="rgb(241,50,38)" fg:x="103355" fg:w="30079"/><text x="20.2190%" y="799.50">__libc_..</text></g><g><title>[dash] (30,084 samples, 5.81%)</title><rect x="19.9682%" y="805" width="5.8125%" height="15" fill="rgb(212,166,30)" fg:x="103351" fg:w="30084"/><text x="20.2182%" y="815.50">[dash]</text></g><g><title>_dl_start_final (53 samples, 0.01%)</title><rect x="25.7917%" y="773" width="0.0102%" height="15" fill="rgb(249,127,32)" fg:x="133492" fg:w="53"/><text x="26.0417%" y="783.50"></text></g><g><title>_dl_sysdep_start (53 samples, 0.01%)</title><rect x="25.7917%" y="757" width="0.0102%" height="15" fill="rgb(209,103,0)" fg:x="133492" fg:w="53"/><text x="26.0417%" y="767.50"></text></g><g><title>_dl_start (57 samples, 0.01%)</title><rect x="25.7917%" y="789" width="0.0110%" height="15" fill="rgb(238,209,51)" fg:x="133492" fg:w="57"/><text x="26.0417%" y="799.50"></text></g><g><title>_start (61 samples, 0.01%)</title><rect x="25.7915%" y="805" width="0.0118%" height="15" fill="rgb(237,56,23)" fg:x="133491" fg:w="61"/><text x="26.0415%" y="815.50"></text></g><g><title>asm_exc_page_fault (426 samples, 0.08%)</title><rect x="25.8033%" y="805" width="0.0823%" height="15" fill="rgb(215,153,46)" fg:x="133552" fg:w="426"/><text x="26.0533%" y="815.50"></text></g><g><title>kmem_cache_free (61 samples, 0.01%)</title><rect x="25.9046%" y="629" width="0.0118%" height="15" fill="rgb(224,49,31)" fg:x="134076" fg:w="61"/><text x="26.1546%" y="639.50"></text></g><g><title>unlink_anon_vmas (135 samples, 0.03%)</title><rect x="25.8904%" y="645" width="0.0261%" height="15" fill="rgb(250,18,42)" fg:x="134003" fg:w="135"/><text x="26.1404%" y="655.50"></text></g><g><title>free_pgtables (180 samples, 0.03%)</title><rect x="25.8881%" y="661" width="0.0348%" height="15" fill="rgb(215,176,39)" fg:x="133991" fg:w="180"/><text x="26.1381%" y="671.50"></text></g><g><title>tlb_finish_mmu (56 samples, 0.01%)</title><rect x="25.9306%" y="661" width="0.0108%" height="15" fill="rgb(223,77,29)" fg:x="134211" fg:w="56"/><text x="26.1806%" y="671.50"></text></g><g><title>page_remove_rmap (73 samples, 0.01%)</title><rect x="25.9793%" y="629" width="0.0141%" height="15" fill="rgb(234,94,52)" fg:x="134463" fg:w="73"/><text x="26.2293%" y="639.50"></text></g><g><title>unmap_page_range (277 samples, 0.05%)</title><rect x="25.9426%" y="645" width="0.0535%" height="15" fill="rgb(220,154,50)" fg:x="134273" fg:w="277"/><text x="26.1926%" y="655.50"></text></g><g><title>exit_mmap (573 samples, 0.11%)</title><rect x="25.8872%" y="677" width="0.1107%" height="15" fill="rgb(212,11,10)" fg:x="133986" fg:w="573"/><text x="26.1372%" y="687.50"></text></g><g><title>unmap_vmas (292 samples, 0.06%)</title><rect x="25.9415%" y="661" width="0.0564%" height="15" fill="rgb(205,166,19)" fg:x="134267" fg:w="292"/><text x="26.1915%" y="671.50"></text></g><g><title>mmput (576 samples, 0.11%)</title><rect x="25.8872%" y="693" width="0.1113%" height="15" fill="rgb(244,198,16)" fg:x="133986" fg:w="576"/><text x="26.1372%" y="703.50"></text></g><g><title>begin_new_exec (591 samples, 0.11%)</title><rect x="25.8864%" y="709" width="0.1142%" height="15" fill="rgb(219,69,12)" fg:x="133982" fg:w="591"/><text x="26.1364%" y="719.50"></text></g><g><title>load_elf_binary (596 samples, 0.12%)</title><rect x="25.8862%" y="725" width="0.1152%" height="15" fill="rgb(245,30,7)" fg:x="133981" fg:w="596"/><text x="26.1362%" y="735.50"></text></g><g><title>__x64_sys_execve (597 samples, 0.12%)</title><rect x="25.8862%" y="773" width="0.1153%" height="15" fill="rgb(218,221,48)" fg:x="133981" fg:w="597"/><text x="26.1362%" y="783.50"></text></g><g><title>do_execveat_common (597 samples, 0.12%)</title><rect x="25.8862%" y="757" width="0.1153%" height="15" fill="rgb(216,66,15)" fg:x="133981" fg:w="597"/><text x="26.1362%" y="767.50"></text></g><g><title>bprm_execve (597 samples, 0.12%)</title><rect x="25.8862%" y="741" width="0.1153%" height="15" fill="rgb(226,122,50)" fg:x="133981" fg:w="597"/><text x="26.1362%" y="751.50"></text></g><g><title>kmem_cache_free (61 samples, 0.01%)</title><rect x="26.0238%" y="661" width="0.0118%" height="15" fill="rgb(239,156,16)" fg:x="134693" fg:w="61"/><text x="26.2738%" y="671.50"></text></g><g><title>unlink_anon_vmas (124 samples, 0.02%)</title><rect x="26.0120%" y="677" width="0.0240%" height="15" fill="rgb(224,27,38)" fg:x="134632" fg:w="124"/><text x="26.2620%" y="687.50"></text></g><g><title>free_pgtables (166 samples, 0.03%)</title><rect x="26.0089%" y="693" width="0.0321%" height="15" fill="rgb(224,39,27)" fg:x="134616" fg:w="166"/><text x="26.2589%" y="703.50"></text></g><g><title>kmem_cache_free (102 samples, 0.02%)</title><rect x="26.0498%" y="677" width="0.0197%" height="15" fill="rgb(215,92,29)" fg:x="134828" fg:w="102"/><text x="26.2998%" y="687.50"></text></g><g><title>remove_vma (117 samples, 0.02%)</title><rect x="26.0473%" y="693" width="0.0226%" height="15" fill="rgb(207,159,16)" fg:x="134815" fg:w="117"/><text x="26.2973%" y="703.50"></text></g><g><title>tlb_finish_mmu (159 samples, 0.03%)</title><rect x="26.0699%" y="693" width="0.0307%" height="15" fill="rgb(238,163,47)" fg:x="134932" fg:w="159"/><text x="26.3199%" y="703.50"></text></g><g><title>release_pages (126 samples, 0.02%)</title><rect x="26.0763%" y="677" width="0.0243%" height="15" fill="rgb(219,91,49)" fg:x="134965" fg:w="126"/><text x="26.3263%" y="687.50"></text></g><g><title>page_remove_rmap (68 samples, 0.01%)</title><rect x="26.1333%" y="661" width="0.0131%" height="15" fill="rgb(227,167,31)" fg:x="135260" fg:w="68"/><text x="26.3833%" y="671.50"></text></g><g><title>unmap_page_range (246 samples, 0.05%)</title><rect x="26.1016%" y="677" width="0.0475%" height="15" fill="rgb(234,80,54)" fg:x="135096" fg:w="246"/><text x="26.3516%" y="687.50"></text></g><g><title>exit_mmap (742 samples, 0.14%)</title><rect x="26.0071%" y="709" width="0.1434%" height="15" fill="rgb(212,114,2)" fg:x="134607" fg:w="742"/><text x="26.2571%" y="719.50"></text></g><g><title>unmap_vmas (258 samples, 0.05%)</title><rect x="26.1007%" y="693" width="0.0498%" height="15" fill="rgb(234,50,24)" fg:x="135091" fg:w="258"/><text x="26.3507%" y="703.50"></text></g><g><title>mmput (748 samples, 0.14%)</title><rect x="26.0066%" y="725" width="0.1445%" height="15" fill="rgb(221,68,8)" fg:x="134604" fg:w="748"/><text x="26.2566%" y="735.50"></text></g><g><title>__x64_sys_exit_group (853 samples, 0.16%)</title><rect x="26.0015%" y="773" width="0.1648%" height="15" fill="rgb(254,180,31)" fg:x="134578" fg:w="853"/><text x="26.2515%" y="783.50"></text></g><g><title>do_group_exit (853 samples, 0.16%)</title><rect x="26.0015%" y="757" width="0.1648%" height="15" fill="rgb(247,130,50)" fg:x="134578" fg:w="853"/><text x="26.2515%" y="767.50"></text></g><g><title>do_exit (853 samples, 0.16%)</title><rect x="26.0015%" y="741" width="0.1648%" height="15" fill="rgb(211,109,4)" fg:x="134578" fg:w="853"/><text x="26.2515%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,464 samples, 0.28%)</title><rect x="25.8856%" y="805" width="0.2829%" height="15" fill="rgb(238,50,21)" fg:x="133978" fg:w="1464"/><text x="26.1356%" y="815.50"></text></g><g><title>do_syscall_64 (1,463 samples, 0.28%)</title><rect x="25.8858%" y="789" width="0.2827%" height="15" fill="rgb(225,57,45)" fg:x="133979" fg:w="1463"/><text x="26.1358%" y="799.50"></text></g><g><title>c++ (32,243 samples, 6.23%)</title><rect x="19.9603%" y="821" width="6.2296%" height="15" fill="rgb(209,196,50)" fg:x="103310" fg:w="32243"/><text x="20.2103%" y="831.50">c++</text></g><g><title>ret_from_fork (97 samples, 0.02%)</title><rect x="26.1712%" y="805" width="0.0187%" height="15" fill="rgb(242,140,13)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="815.50"></text></g><g><title>schedule_tail (97 samples, 0.02%)</title><rect x="26.1712%" y="789" width="0.0187%" height="15" fill="rgb(217,111,7)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="799.50"></text></g><g><title>finish_task_switch (97 samples, 0.02%)</title><rect x="26.1712%" y="773" width="0.0187%" height="15" fill="rgb(253,193,51)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.02%)</title><rect x="26.1712%" y="757" width="0.0187%" height="15" fill="rgb(252,70,29)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (97 samples, 0.02%)</title><rect x="26.1712%" y="741" width="0.0187%" height="15" fill="rgb(232,127,12)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="751.50"></text></g><g><title>native_write_msr (97 samples, 0.02%)</title><rect x="26.1712%" y="725" width="0.0187%" height="15" fill="rgb(211,180,21)" fg:x="135456" fg:w="97"/><text x="26.4212%" y="735.50"></text></g><g><title>[perf-965379.map] (404 samples, 0.08%)</title><rect x="26.1940%" y="805" width="0.0781%" height="15" fill="rgb(229,72,13)" fg:x="135574" fg:w="404"/><text x="26.4440%" y="815.50"></text></g><g><title>find-action-loo (478 samples, 0.09%)</title><rect x="26.1926%" y="821" width="0.0924%" height="15" fill="rgb(240,211,49)" fg:x="135567" fg:w="478"/><text x="26.4426%" y="831.50"></text></g><g><title>[perf-965379.map] (82 samples, 0.02%)</title><rect x="26.2865%" y="805" width="0.0158%" height="15" fill="rgb(219,149,40)" fg:x="136053" fg:w="82"/><text x="26.5365%" y="815.50"></text></g><g><title>globbing_pool-0 (136 samples, 0.03%)</title><rect x="26.2850%" y="821" width="0.0263%" height="15" fill="rgb(210,127,46)" fg:x="136045" fg:w="136"/><text x="26.5350%" y="831.50"></text></g><g><title>JVM_StartThread (66 samples, 0.01%)</title><rect x="26.3509%" y="789" width="0.0128%" height="15" fill="rgb(220,106,7)" fg:x="136386" fg:w="66"/><text x="26.6009%" y="799.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="26.3654%" y="693" width="0.0102%" height="15" fill="rgb(249,31,22)" fg:x="136461" fg:w="53"/><text x="26.6154%" y="703.50"></text></g><g><title>__x64_sys_futex (53 samples, 0.01%)</title><rect x="26.3654%" y="677" width="0.0102%" height="15" fill="rgb(253,1,49)" fg:x="136461" fg:w="53"/><text x="26.6154%" y="687.50"></text></g><g><title>do_futex (53 samples, 0.01%)</title><rect x="26.3654%" y="661" width="0.0102%" height="15" fill="rgb(227,144,33)" fg:x="136461" fg:w="53"/><text x="26.6154%" y="671.50"></text></g><g><title>futex_wait (53 samples, 0.01%)</title><rect x="26.3654%" y="645" width="0.0102%" height="15" fill="rgb(249,163,44)" fg:x="136461" fg:w="53"/><text x="26.6154%" y="655.50"></text></g><g><title>futex_wait_queue_me (53 samples, 0.01%)</title><rect x="26.3654%" y="629" width="0.0102%" height="15" fill="rgb(234,15,39)" fg:x="136461" fg:w="53"/><text x="26.6154%" y="639.50"></text></g><g><title>schedule (52 samples, 0.01%)</title><rect x="26.3655%" y="613" width="0.0100%" height="15" fill="rgb(207,66,16)" fg:x="136462" fg:w="52"/><text x="26.6155%" y="623.50"></text></g><g><title>__schedule (52 samples, 0.01%)</title><rect x="26.3655%" y="597" width="0.0100%" height="15" fill="rgb(233,112,24)" fg:x="136462" fg:w="52"/><text x="26.6155%" y="607.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.01%)</title><rect x="26.3654%" y="757" width="0.0110%" height="15" fill="rgb(230,90,22)" fg:x="136461" fg:w="57"/><text x="26.6154%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.01%)</title><rect x="26.3654%" y="741" width="0.0110%" height="15" fill="rgb(229,61,13)" fg:x="136461" fg:w="57"/><text x="26.6154%" y="751.50"></text></g><g><title>futex_wait_cancelable (57 samples, 0.01%)</title><rect x="26.3654%" y="725" width="0.0110%" height="15" fill="rgb(225,57,24)" fg:x="136461" fg:w="57"/><text x="26.6154%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="26.3654%" y="709" width="0.0110%" height="15" fill="rgb(208,169,48)" fg:x="136461" fg:w="57"/><text x="26.6154%" y="719.50"></text></g><g><title>Unsafe_Park (59 samples, 0.01%)</title><rect x="26.3652%" y="789" width="0.0114%" height="15" fill="rgb(244,218,51)" fg:x="136460" fg:w="59"/><text x="26.6152%" y="799.50"></text></g><g><title>Parker::park (59 samples, 0.01%)</title><rect x="26.3652%" y="773" width="0.0114%" height="15" fill="rgb(214,148,10)" fg:x="136460" fg:w="59"/><text x="26.6152%" y="783.50"></text></g><g><title>[perf-965379.map] (306 samples, 0.06%)</title><rect x="26.3192%" y="805" width="0.0591%" height="15" fill="rgb(225,174,27)" fg:x="136222" fg:w="306"/><text x="26.5692%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="26.3808%" y="741" width="0.0104%" height="15" fill="rgb(230,96,26)" fg:x="136541" fg:w="54"/><text x="26.6308%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.01%)</title><rect x="26.3808%" y="725" width="0.0104%" height="15" fill="rgb(232,10,30)" fg:x="136541" fg:w="54"/><text x="26.6308%" y="735.50"></text></g><g><title>native_write_msr (54 samples, 0.01%)</title><rect x="26.3808%" y="709" width="0.0104%" height="15" fill="rgb(222,8,50)" fg:x="136541" fg:w="54"/><text x="26.6308%" y="719.50"></text></g><g><title>schedule_tail (56 samples, 0.01%)</title><rect x="26.3806%" y="773" width="0.0108%" height="15" fill="rgb(213,81,27)" fg:x="136540" fg:w="56"/><text x="26.6306%" y="783.50"></text></g><g><title>finish_task_switch (56 samples, 0.01%)</title><rect x="26.3806%" y="757" width="0.0108%" height="15" fill="rgb(245,50,10)" fg:x="136540" fg:w="56"/><text x="26.6306%" y="767.50"></text></g><g><title>ret_from_fork (60 samples, 0.01%)</title><rect x="26.3800%" y="789" width="0.0116%" height="15" fill="rgb(216,100,18)" fg:x="136537" fg:w="60"/><text x="26.6300%" y="799.50"></text></g><g><title>__GI___clone (101 samples, 0.02%)</title><rect x="26.3789%" y="805" width="0.0195%" height="15" fill="rgb(236,147,54)" fg:x="136531" fg:w="101"/><text x="26.6289%" y="815.50"></text></g><g><title>globbing_pool-1 (452 samples, 0.09%)</title><rect x="26.3113%" y="821" width="0.0873%" height="15" fill="rgb(205,143,26)" fg:x="136181" fg:w="452"/><text x="26.5613%" y="831.50"></text></g><g><title>[perf-965379.map] (194 samples, 0.04%)</title><rect x="26.4026%" y="805" width="0.0375%" height="15" fill="rgb(236,26,9)" fg:x="136654" fg:w="194"/><text x="26.6526%" y="815.50"></text></g><g><title>ret_from_fork (55 samples, 0.01%)</title><rect x="26.4417%" y="789" width="0.0106%" height="15" fill="rgb(221,165,53)" fg:x="136856" fg:w="55"/><text x="26.6917%" y="799.50"></text></g><g><title>schedule_tail (54 samples, 0.01%)</title><rect x="26.4419%" y="773" width="0.0104%" height="15" fill="rgb(214,110,17)" fg:x="136857" fg:w="54"/><text x="26.6919%" y="783.50"></text></g><g><title>finish_task_switch (54 samples, 0.01%)</title><rect x="26.4419%" y="757" width="0.0104%" height="15" fill="rgb(237,197,12)" fg:x="136857" fg:w="54"/><text x="26.6919%" y="767.50"></text></g><g><title>__GI___clone (77 samples, 0.01%)</title><rect x="26.4405%" y="805" width="0.0149%" height="15" fill="rgb(205,84,17)" fg:x="136850" fg:w="77"/><text x="26.6905%" y="815.50"></text></g><g><title>globbing_pool-2 (334 samples, 0.06%)</title><rect x="26.3986%" y="821" width="0.0645%" height="15" fill="rgb(237,18,45)" fg:x="136633" fg:w="334"/><text x="26.6486%" y="831.50"></text></g><g><title>[libunix_jni.so] (52 samples, 0.01%)</title><rect x="26.4656%" y="805" width="0.0100%" height="15" fill="rgb(221,87,14)" fg:x="136980" fg:w="52"/><text x="26.7156%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="26.5514%" y="565" width="0.0129%" height="15" fill="rgb(238,186,15)" fg:x="137424" fg:w="67"/><text x="26.8014%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.01%)</title><rect x="26.5516%" y="549" width="0.0128%" height="15" fill="rgb(208,115,11)" fg:x="137425" fg:w="66"/><text x="26.8016%" y="559.50"></text></g><g><title>native_write_msr (66 samples, 0.01%)</title><rect x="26.5516%" y="533" width="0.0128%" height="15" fill="rgb(254,175,0)" fg:x="137425" fg:w="66"/><text x="26.8016%" y="543.50"></text></g><g><title>finish_task_switch (72 samples, 0.01%)</title><rect x="26.5514%" y="581" width="0.0139%" height="15" fill="rgb(227,24,42)" fg:x="137424" fg:w="72"/><text x="26.8014%" y="591.50"></text></g><g><title>do_syscall_64 (76 samples, 0.01%)</title><rect x="26.5510%" y="693" width="0.0147%" height="15" fill="rgb(223,211,37)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="703.50"></text></g><g><title>__x64_sys_futex (76 samples, 0.01%)</title><rect x="26.5510%" y="677" width="0.0147%" height="15" fill="rgb(235,49,27)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="687.50"></text></g><g><title>do_futex (76 samples, 0.01%)</title><rect x="26.5510%" y="661" width="0.0147%" height="15" fill="rgb(254,97,51)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="671.50"></text></g><g><title>futex_wait (76 samples, 0.01%)</title><rect x="26.5510%" y="645" width="0.0147%" height="15" fill="rgb(249,51,40)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="655.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.01%)</title><rect x="26.5510%" y="629" width="0.0147%" height="15" fill="rgb(210,128,45)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="639.50"></text></g><g><title>schedule (76 samples, 0.01%)</title><rect x="26.5510%" y="613" width="0.0147%" height="15" fill="rgb(224,137,50)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="623.50"></text></g><g><title>__schedule (76 samples, 0.01%)</title><rect x="26.5510%" y="597" width="0.0147%" height="15" fill="rgb(242,15,9)" fg:x="137422" fg:w="76"/><text x="26.8010%" y="607.50"></text></g><g><title>__pthread_cond_wait (77 samples, 0.01%)</title><rect x="26.5510%" y="757" width="0.0149%" height="15" fill="rgb(233,187,41)" fg:x="137422" fg:w="77"/><text x="26.8010%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (77 samples, 0.01%)</title><rect x="26.5510%" y="741" width="0.0149%" height="15" fill="rgb(227,2,29)" fg:x="137422" fg:w="77"/><text x="26.8010%" y="751.50"></text></g><g><title>futex_wait_cancelable (77 samples, 0.01%)</title><rect x="26.5510%" y="725" width="0.0149%" height="15" fill="rgb(222,70,3)" fg:x="137422" fg:w="77"/><text x="26.8010%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.01%)</title><rect x="26.5510%" y="709" width="0.0149%" height="15" fill="rgb(213,11,42)" fg:x="137422" fg:w="77"/><text x="26.8010%" y="719.50"></text></g><g><title>Unsafe_Park (85 samples, 0.02%)</title><rect x="26.5503%" y="789" width="0.0164%" height="15" fill="rgb(225,150,9)" fg:x="137418" fg:w="85"/><text x="26.8003%" y="799.50"></text></g><g><title>Parker::park (85 samples, 0.02%)</title><rect x="26.5503%" y="773" width="0.0164%" height="15" fill="rgb(230,162,45)" fg:x="137418" fg:w="85"/><text x="26.8003%" y="783.50"></text></g><g><title>[perf-965379.map] (476 samples, 0.09%)</title><rect x="26.4757%" y="805" width="0.0920%" height="15" fill="rgb(222,14,52)" fg:x="137032" fg:w="476"/><text x="26.7257%" y="815.50"></text></g><g><title>globbing_pool-3 (613 samples, 0.12%)</title><rect x="26.4631%" y="821" width="0.1184%" height="15" fill="rgb(254,198,14)" fg:x="136967" fg:w="613"/><text x="26.7131%" y="831.50"></text></g><g><title>__GI___clone (71 samples, 0.01%)</title><rect x="26.5678%" y="805" width="0.0137%" height="15" fill="rgb(220,217,30)" fg:x="137509" fg:w="71"/><text x="26.8178%" y="815.50"></text></g><g><title>JVM_StartThread (69 samples, 0.01%)</title><rect x="26.6061%" y="789" width="0.0133%" height="15" fill="rgb(215,146,41)" fg:x="137707" fg:w="69"/><text x="26.8561%" y="799.50"></text></g><g><title>[perf-965379.map] (220 samples, 0.04%)</title><rect x="26.5858%" y="805" width="0.0425%" height="15" fill="rgb(217,27,36)" fg:x="137602" fg:w="220"/><text x="26.8358%" y="815.50"></text></g><g><title>globbing_pool-4 (297 samples, 0.06%)</title><rect x="26.5816%" y="821" width="0.0574%" height="15" fill="rgb(219,218,39)" fg:x="137580" fg:w="297"/><text x="26.8316%" y="831.50"></text></g><g><title>[perf-965379.map] (264 samples, 0.05%)</title><rect x="26.6430%" y="805" width="0.0510%" height="15" fill="rgb(219,4,42)" fg:x="137898" fg:w="264"/><text x="26.8930%" y="815.50"></text></g><g><title>globbing_pool-5 (343 samples, 0.07%)</title><rect x="26.6389%" y="821" width="0.0663%" height="15" fill="rgb(249,119,36)" fg:x="137877" fg:w="343"/><text x="26.8889%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="26.7392%" y="565" width="0.0129%" height="15" fill="rgb(209,23,33)" fg:x="138396" fg:w="67"/><text x="26.9892%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.01%)</title><rect x="26.7394%" y="549" width="0.0128%" height="15" fill="rgb(211,10,0)" fg:x="138397" fg:w="66"/><text x="26.9894%" y="559.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="26.7396%" y="533" width="0.0126%" height="15" fill="rgb(208,99,37)" fg:x="138398" fg:w="65"/><text x="26.9896%" y="543.50"></text></g><g><title>finish_task_switch (69 samples, 0.01%)</title><rect x="26.7392%" y="581" width="0.0133%" height="15" fill="rgb(213,132,31)" fg:x="138396" fg:w="69"/><text x="26.9892%" y="591.50"></text></g><g><title>__pthread_cond_wait (73 samples, 0.01%)</title><rect x="26.7388%" y="757" width="0.0141%" height="15" fill="rgb(243,129,40)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (73 samples, 0.01%)</title><rect x="26.7388%" y="741" width="0.0141%" height="15" fill="rgb(210,66,33)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="751.50"></text></g><g><title>futex_wait_cancelable (73 samples, 0.01%)</title><rect x="26.7388%" y="725" width="0.0141%" height="15" fill="rgb(209,189,4)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.01%)</title><rect x="26.7388%" y="709" width="0.0141%" height="15" fill="rgb(214,107,37)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="719.50"></text></g><g><title>do_syscall_64 (73 samples, 0.01%)</title><rect x="26.7388%" y="693" width="0.0141%" height="15" fill="rgb(245,88,54)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="703.50"></text></g><g><title>__x64_sys_futex (73 samples, 0.01%)</title><rect x="26.7388%" y="677" width="0.0141%" height="15" fill="rgb(205,146,20)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="687.50"></text></g><g><title>do_futex (73 samples, 0.01%)</title><rect x="26.7388%" y="661" width="0.0141%" height="15" fill="rgb(220,161,25)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="671.50"></text></g><g><title>futex_wait (73 samples, 0.01%)</title><rect x="26.7388%" y="645" width="0.0141%" height="15" fill="rgb(215,152,15)" fg:x="138394" fg:w="73"/><text x="26.9888%" y="655.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.01%)</title><rect x="26.7390%" y="629" width="0.0139%" height="15" fill="rgb(233,192,44)" fg:x="138395" fg:w="72"/><text x="26.9890%" y="639.50"></text></g><g><title>schedule (71 samples, 0.01%)</title><rect x="26.7392%" y="613" width="0.0137%" height="15" fill="rgb(240,170,46)" fg:x="138396" fg:w="71"/><text x="26.9892%" y="623.50"></text></g><g><title>__schedule (71 samples, 0.01%)</title><rect x="26.7392%" y="597" width="0.0137%" height="15" fill="rgb(207,104,33)" fg:x="138396" fg:w="71"/><text x="26.9892%" y="607.50"></text></g><g><title>Unsafe_Park (74 samples, 0.01%)</title><rect x="26.7388%" y="789" width="0.0143%" height="15" fill="rgb(219,21,39)" fg:x="138394" fg:w="74"/><text x="26.9888%" y="799.50"></text></g><g><title>Parker::park (74 samples, 0.01%)</title><rect x="26.7388%" y="773" width="0.0143%" height="15" fill="rgb(214,133,29)" fg:x="138394" fg:w="74"/><text x="26.9888%" y="783.50"></text></g><g><title>[perf-965379.map] (228 samples, 0.04%)</title><rect x="26.7116%" y="805" width="0.0441%" height="15" fill="rgb(226,93,6)" fg:x="138253" fg:w="228"/><text x="26.9616%" y="815.50"></text></g><g><title>globbing_pool-6 (294 samples, 0.06%)</title><rect x="26.7052%" y="821" width="0.0568%" height="15" fill="rgb(252,222,34)" fg:x="138220" fg:w="294"/><text x="26.9552%" y="831.50"></text></g><g><title>[perf-965379.map] (229 samples, 0.04%)</title><rect x="26.7678%" y="805" width="0.0442%" height="15" fill="rgb(252,92,48)" fg:x="138544" fg:w="229"/><text x="27.0178%" y="815.50"></text></g><g><title>globbing_pool-7 (283 samples, 0.05%)</title><rect x="26.7620%" y="821" width="0.0547%" height="15" fill="rgb(245,223,24)" fg:x="138514" fg:w="283"/><text x="27.0120%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.01%)</title><rect x="26.8646%" y="565" width="0.0112%" height="15" fill="rgb(205,176,3)" fg:x="139045" fg:w="58"/><text x="27.1146%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.01%)</title><rect x="26.8646%" y="549" width="0.0112%" height="15" fill="rgb(235,151,15)" fg:x="139045" fg:w="58"/><text x="27.1146%" y="559.50"></text></g><g><title>native_write_msr (58 samples, 0.01%)</title><rect x="26.8646%" y="533" width="0.0112%" height="15" fill="rgb(237,209,11)" fg:x="139045" fg:w="58"/><text x="27.1146%" y="543.50"></text></g><g><title>do_syscall_64 (64 samples, 0.01%)</title><rect x="26.8640%" y="693" width="0.0124%" height="15" fill="rgb(243,227,24)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="703.50"></text></g><g><title>__x64_sys_futex (64 samples, 0.01%)</title><rect x="26.8640%" y="677" width="0.0124%" height="15" fill="rgb(239,193,16)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="687.50"></text></g><g><title>do_futex (64 samples, 0.01%)</title><rect x="26.8640%" y="661" width="0.0124%" height="15" fill="rgb(231,27,9)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="671.50"></text></g><g><title>futex_wait (64 samples, 0.01%)</title><rect x="26.8640%" y="645" width="0.0124%" height="15" fill="rgb(219,169,10)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="655.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.01%)</title><rect x="26.8640%" y="629" width="0.0124%" height="15" fill="rgb(244,229,43)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="639.50"></text></g><g><title>schedule (64 samples, 0.01%)</title><rect x="26.8640%" y="613" width="0.0124%" height="15" fill="rgb(254,38,20)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="623.50"></text></g><g><title>__schedule (64 samples, 0.01%)</title><rect x="26.8640%" y="597" width="0.0124%" height="15" fill="rgb(250,47,30)" fg:x="139042" fg:w="64"/><text x="27.1140%" y="607.50"></text></g><g><title>finish_task_switch (62 samples, 0.01%)</title><rect x="26.8644%" y="581" width="0.0120%" height="15" fill="rgb(224,124,36)" fg:x="139044" fg:w="62"/><text x="27.1144%" y="591.50"></text></g><g><title>__pthread_cond_wait (67 samples, 0.01%)</title><rect x="26.8636%" y="757" width="0.0129%" height="15" fill="rgb(246,68,51)" fg:x="139040" fg:w="67"/><text x="27.1136%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (67 samples, 0.01%)</title><rect x="26.8636%" y="741" width="0.0129%" height="15" fill="rgb(253,43,49)" fg:x="139040" fg:w="67"/><text x="27.1136%" y="751.50"></text></g><g><title>futex_wait_cancelable (67 samples, 0.01%)</title><rect x="26.8636%" y="725" width="0.0129%" height="15" fill="rgb(219,54,36)" fg:x="139040" fg:w="67"/><text x="27.1136%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="26.8640%" y="709" width="0.0126%" height="15" fill="rgb(227,133,34)" fg:x="139042" fg:w="65"/><text x="27.1140%" y="719.50"></text></g><g><title>Unsafe_Park (85 samples, 0.02%)</title><rect x="26.8604%" y="789" width="0.0164%" height="15" fill="rgb(247,227,15)" fg:x="139023" fg:w="85"/><text x="27.1104%" y="799.50"></text></g><g><title>Parker::park (84 samples, 0.02%)</title><rect x="26.8605%" y="773" width="0.0162%" height="15" fill="rgb(229,96,14)" fg:x="139024" fg:w="84"/><text x="27.1105%" y="783.50"></text></g><g><title>[perf-965379.map] (286 samples, 0.06%)</title><rect x="26.8227%" y="805" width="0.0553%" height="15" fill="rgb(220,79,17)" fg:x="138828" fg:w="286"/><text x="27.0727%" y="815.50"></text></g><g><title>globbing_pool-8 (348 samples, 0.07%)</title><rect x="26.8167%" y="821" width="0.0672%" height="15" fill="rgb(205,131,53)" fg:x="138797" fg:w="348"/><text x="27.0667%" y="831.50"></text></g><g><title>[perf-965379.map] (219 samples, 0.04%)</title><rect x="26.8884%" y="805" width="0.0423%" height="15" fill="rgb(209,50,29)" fg:x="139168" fg:w="219"/><text x="27.1384%" y="815.50"></text></g><g><title>globbing_pool-9 (260 samples, 0.05%)</title><rect x="26.8839%" y="821" width="0.0502%" height="15" fill="rgb(245,86,46)" fg:x="139145" fg:w="260"/><text x="27.1339%" y="831.50"></text></g><g><title>[anon] (241 samples, 0.05%)</title><rect x="26.9376%" y="805" width="0.0466%" height="15" fill="rgb(235,66,46)" fg:x="139423" fg:w="241"/><text x="27.1876%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (61 samples, 0.01%)</title><rect x="27.3926%" y="661" width="0.0118%" height="15" fill="rgb(232,148,31)" fg:x="141778" fg:w="61"/><text x="27.6426%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (62 samples, 0.01%)</title><rect x="27.3926%" y="677" width="0.0120%" height="15" fill="rgb(217,149,8)" fg:x="141778" fg:w="62"/><text x="27.6426%" y="687.50"></text></g><g><title>ClassLoader::load_class (111 samples, 0.02%)</title><rect x="27.3909%" y="709" width="0.0214%" height="15" fill="rgb(209,183,11)" fg:x="141769" fg:w="111"/><text x="27.6409%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (103 samples, 0.02%)</title><rect x="27.3924%" y="693" width="0.0199%" height="15" fill="rgb(208,55,20)" fg:x="141777" fg:w="103"/><text x="27.6424%" y="703.50"></text></g><g><title>ConstantPool::klass_at_impl (135 samples, 0.03%)</title><rect x="27.3884%" y="773" width="0.0261%" height="15" fill="rgb(218,39,14)" fg:x="141756" fg:w="135"/><text x="27.6384%" y="783.50"></text></g><g><title>SystemDictionary::resolve_or_fail (133 samples, 0.03%)</title><rect x="27.3888%" y="757" width="0.0257%" height="15" fill="rgb(216,169,33)" fg:x="141758" fg:w="133"/><text x="27.6388%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (131 samples, 0.03%)</title><rect x="27.3892%" y="741" width="0.0253%" height="15" fill="rgb(233,80,24)" fg:x="141760" fg:w="131"/><text x="27.6392%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (124 samples, 0.02%)</title><rect x="27.3905%" y="725" width="0.0240%" height="15" fill="rgb(213,179,31)" fg:x="141767" fg:w="124"/><text x="27.6405%" y="735.50"></text></g><g><title>Rewriter::rewrite (65 samples, 0.01%)</title><rect x="27.4241%" y="741" width="0.0126%" height="15" fill="rgb(209,19,5)" fg:x="141941" fg:w="65"/><text x="27.6741%" y="751.50"></text></g><g><title>Rewriter::Rewriter (64 samples, 0.01%)</title><rect x="27.4243%" y="725" width="0.0124%" height="15" fill="rgb(219,18,35)" fg:x="141942" fg:w="64"/><text x="27.6743%" y="735.50"></text></g><g><title>InstanceKlass::link_class_impl (141 samples, 0.03%)</title><rect x="27.4151%" y="757" width="0.0272%" height="15" fill="rgb(209,169,16)" fg:x="141894" fg:w="141"/><text x="27.6651%" y="767.50"></text></g><g><title>InstanceKlass::initialize_impl (144 samples, 0.03%)</title><rect x="27.4149%" y="773" width="0.0278%" height="15" fill="rgb(245,90,51)" fg:x="141893" fg:w="144"/><text x="27.6649%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (282 samples, 0.05%)</title><rect x="27.3884%" y="789" width="0.0545%" height="15" fill="rgb(220,99,45)" fg:x="141756" fg:w="282"/><text x="27.6384%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (52 samples, 0.01%)</title><rect x="27.4541%" y="789" width="0.0100%" height="15" fill="rgb(249,89,25)" fg:x="142096" fg:w="52"/><text x="27.7041%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (52 samples, 0.01%)</title><rect x="27.4541%" y="773" width="0.0100%" height="15" fill="rgb(239,193,0)" fg:x="142096" fg:w="52"/><text x="27.7041%" y="783.50"></text></g><g><title>LinkResolver::resolve_field (75 samples, 0.01%)</title><rect x="27.4844%" y="741" width="0.0145%" height="15" fill="rgb(231,126,1)" fg:x="142253" fg:w="75"/><text x="27.7344%" y="751.50"></text></g><g><title>LinkResolver::resolve_field_access (106 samples, 0.02%)</title><rect x="27.4790%" y="757" width="0.0205%" height="15" fill="rgb(243,166,3)" fg:x="142225" fg:w="106"/><text x="27.7290%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (123 samples, 0.02%)</title><rect x="27.4763%" y="773" width="0.0238%" height="15" fill="rgb(223,22,34)" fg:x="142211" fg:w="123"/><text x="27.7263%" y="783.50"></text></g><g><title>ClassLoader::load_class (57 samples, 0.01%)</title><rect x="27.5082%" y="677" width="0.0110%" height="15" fill="rgb(251,52,51)" fg:x="142376" fg:w="57"/><text x="27.7582%" y="687.50"></text></g><g><title>KlassFactory::create_from_stream (53 samples, 0.01%)</title><rect x="27.5090%" y="661" width="0.0102%" height="15" fill="rgb(221,165,28)" fg:x="142380" fg:w="53"/><text x="27.7590%" y="671.50"></text></g><g><title>SystemDictionary::load_instance_class (63 samples, 0.01%)</title><rect x="27.5082%" y="693" width="0.0122%" height="15" fill="rgb(218,121,47)" fg:x="142376" fg:w="63"/><text x="27.7582%" y="703.50"></text></g><g><title>SystemDictionary::resolve_or_fail (73 samples, 0.01%)</title><rect x="27.5066%" y="725" width="0.0141%" height="15" fill="rgb(209,120,9)" fg:x="142368" fg:w="73"/><text x="27.7566%" y="735.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (72 samples, 0.01%)</title><rect x="27.5068%" y="709" width="0.0139%" height="15" fill="rgb(236,68,12)" fg:x="142369" fg:w="72"/><text x="27.7568%" y="719.50"></text></g><g><title>ConstantPool::klass_ref_at (77 samples, 0.01%)</title><rect x="27.5061%" y="741" width="0.0149%" height="15" fill="rgb(225,194,26)" fg:x="142365" fg:w="77"/><text x="27.7561%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (63 samples, 0.01%)</title><rect x="27.5360%" y="709" width="0.0122%" height="15" fill="rgb(231,84,39)" fg:x="142520" fg:w="63"/><text x="27.7860%" y="719.50"></text></g><g><title>InstanceKlass::initialize_impl (64 samples, 0.01%)</title><rect x="27.5360%" y="725" width="0.0124%" height="15" fill="rgb(210,11,45)" fg:x="142520" fg:w="64"/><text x="27.7860%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (89 samples, 0.02%)</title><rect x="27.5356%" y="741" width="0.0172%" height="15" fill="rgb(224,54,52)" fg:x="142518" fg:w="89"/><text x="27.7856%" y="751.50"></text></g><g><title>LinkResolver::resolve_invoke (247 samples, 0.05%)</title><rect x="27.5059%" y="757" width="0.0477%" height="15" fill="rgb(238,102,14)" fg:x="142364" fg:w="247"/><text x="27.7559%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (293 samples, 0.06%)</title><rect x="27.5001%" y="773" width="0.0566%" height="15" fill="rgb(243,160,52)" fg:x="142334" fg:w="293"/><text x="27.7501%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (463 samples, 0.09%)</title><rect x="27.4757%" y="789" width="0.0895%" height="15" fill="rgb(216,114,19)" fg:x="142208" fg:w="463"/><text x="27.7257%" y="799.50"></text></g><g><title>SymbolTable::add (52 samples, 0.01%)</title><rect x="27.6363%" y="645" width="0.0100%" height="15" fill="rgb(244,166,37)" fg:x="143039" fg:w="52"/><text x="27.8863%" y="655.50"></text></g><g><title>SymbolTable::lookup_only (439 samples, 0.08%)</title><rect x="27.6463%" y="645" width="0.0848%" height="15" fill="rgb(246,29,44)" fg:x="143091" fg:w="439"/><text x="27.8963%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (509 samples, 0.10%)</title><rect x="27.6334%" y="661" width="0.0983%" height="15" fill="rgb(215,56,53)" fg:x="143024" fg:w="509"/><text x="27.8834%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (532 samples, 0.10%)</title><rect x="27.6309%" y="677" width="0.1028%" height="15" fill="rgb(217,60,2)" fg:x="143011" fg:w="532"/><text x="27.8809%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (131 samples, 0.03%)</title><rect x="27.7381%" y="677" width="0.0253%" height="15" fill="rgb(207,26,24)" fg:x="143566" fg:w="131"/><text x="27.9881%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (130 samples, 0.03%)</title><rect x="27.7383%" y="661" width="0.0251%" height="15" fill="rgb(252,210,15)" fg:x="143567" fg:w="130"/><text x="27.9883%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (716 samples, 0.14%)</title><rect x="27.6284%" y="709" width="0.1383%" height="15" fill="rgb(253,209,26)" fg:x="142998" fg:w="716"/><text x="27.8784%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (713 samples, 0.14%)</title><rect x="27.6289%" y="693" width="0.1378%" height="15" fill="rgb(238,170,14)" fg:x="143001" fg:w="713"/><text x="27.8789%" y="703.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (88 samples, 0.02%)</title><rect x="27.7719%" y="661" width="0.0170%" height="15" fill="rgb(216,178,15)" fg:x="143741" fg:w="88"/><text x="28.0219%" y="671.50"></text></g><g><title>DefaultMethods::generate_default_methods (132 samples, 0.03%)</title><rect x="27.7680%" y="677" width="0.0255%" height="15" fill="rgb(250,197,2)" fg:x="143721" fg:w="132"/><text x="28.0180%" y="687.50"></text></g><g><title>ClassFileParser::fill_instance_klass (167 samples, 0.03%)</title><rect x="27.7667%" y="693" width="0.0323%" height="15" fill="rgb(212,70,42)" fg:x="143714" fg:w="167"/><text x="28.0167%" y="703.50"></text></g><g><title>ClassFileParser::create_instance_klass (177 samples, 0.03%)</title><rect x="27.7667%" y="709" width="0.0342%" height="15" fill="rgb(227,213,9)" fg:x="143714" fg:w="177"/><text x="28.0167%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (940 samples, 0.18%)</title><rect x="27.6282%" y="725" width="0.1816%" height="15" fill="rgb(245,99,25)" fg:x="142997" fg:w="940"/><text x="27.8782%" y="735.50"></text></g><g><title>JVM_DefineClassWithSource (977 samples, 0.19%)</title><rect x="27.6266%" y="773" width="0.1888%" height="15" fill="rgb(250,82,29)" fg:x="142989" fg:w="977"/><text x="27.8766%" y="783.50"></text></g><g><title>jvm_define_class_common (977 samples, 0.19%)</title><rect x="27.6266%" y="757" width="0.1888%" height="15" fill="rgb(241,226,54)" fg:x="142989" fg:w="977"/><text x="27.8766%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (969 samples, 0.19%)</title><rect x="27.6282%" y="741" width="0.1872%" height="15" fill="rgb(221,99,41)" fg:x="142997" fg:w="969"/><text x="27.8782%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,027 samples, 0.20%)</title><rect x="27.6264%" y="789" width="0.1984%" height="15" fill="rgb(213,90,21)" fg:x="142988" fg:w="1027"/><text x="27.8764%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_null (59 samples, 0.01%)</title><rect x="27.8254%" y="757" width="0.0114%" height="15" fill="rgb(205,208,24)" fg:x="144018" fg:w="59"/><text x="28.0754%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (59 samples, 0.01%)</title><rect x="27.8254%" y="741" width="0.0114%" height="15" fill="rgb(246,31,12)" fg:x="144018" fg:w="59"/><text x="28.0754%" y="751.50"></text></g><g><title>JVM_FindClassFromBootLoader (63 samples, 0.01%)</title><rect x="27.8248%" y="773" width="0.0122%" height="15" fill="rgb(213,154,6)" fg:x="144015" fg:w="63"/><text x="28.0748%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (82 samples, 0.02%)</title><rect x="27.8248%" y="789" width="0.0158%" height="15" fill="rgb(222,163,29)" fg:x="144015" fg:w="82"/><text x="28.0748%" y="799.50"></text></g><g><title>KlassFactory::create_from_stream (57 samples, 0.01%)</title><rect x="27.8672%" y="757" width="0.0110%" height="15" fill="rgb(227,201,8)" fg:x="144234" fg:w="57"/><text x="28.1172%" y="767.50"></text></g><g><title>SystemDictionary::parse_stream (79 samples, 0.02%)</title><rect x="27.8645%" y="773" width="0.0153%" height="15" fill="rgb(233,9,32)" fg:x="144220" fg:w="79"/><text x="28.1145%" y="783.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (85 samples, 0.02%)</title><rect x="27.8635%" y="789" width="0.0164%" height="15" fill="rgb(217,54,24)" fg:x="144215" fg:w="85"/><text x="28.1135%" y="799.50"></text></g><g><title>[perf-965379.map] (4,691 samples, 0.91%)</title><rect x="26.9873%" y="805" width="0.9063%" height="15" fill="rgb(235,192,0)" fg:x="139680" fg:w="4691"/><text x="27.2373%" y="815.50"></text></g><g><title>__libc_read (60 samples, 0.01%)</title><rect x="27.9118%" y="757" width="0.0116%" height="15" fill="rgb(235,45,9)" fg:x="144465" fg:w="60"/><text x="28.1618%" y="767.50"></text></g><g><title>__libc_read (60 samples, 0.01%)</title><rect x="27.9118%" y="741" width="0.0116%" height="15" fill="rgb(246,42,40)" fg:x="144465" fg:w="60"/><text x="28.1618%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="27.9124%" y="725" width="0.0110%" height="15" fill="rgb(248,111,24)" fg:x="144468" fg:w="57"/><text x="28.1624%" y="735.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="27.9126%" y="709" width="0.0108%" height="15" fill="rgb(249,65,22)" fg:x="144469" fg:w="56"/><text x="28.1626%" y="719.50"></text></g><g><title>ksys_read (55 samples, 0.01%)</title><rect x="27.9128%" y="693" width="0.0106%" height="15" fill="rgb(238,111,51)" fg:x="144470" fg:w="55"/><text x="28.1628%" y="703.50"></text></g><g><title>handleRead (64 samples, 0.01%)</title><rect x="27.9116%" y="773" width="0.0124%" height="15" fill="rgb(250,118,22)" fg:x="144464" fg:w="64"/><text x="28.1616%" y="783.50"></text></g><g><title>readBytes (78 samples, 0.02%)</title><rect x="27.9112%" y="789" width="0.0151%" height="15" fill="rgb(234,84,26)" fg:x="144462" fg:w="78"/><text x="28.1612%" y="799.50"></text></g><g><title>[unknown] (172 samples, 0.03%)</title><rect x="27.8936%" y="805" width="0.0332%" height="15" fill="rgb(243,172,12)" fg:x="144371" fg:w="172"/><text x="28.1436%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (190 samples, 0.04%)</title><rect x="27.9311%" y="741" width="0.0367%" height="15" fill="rgb(236,150,49)" fg:x="144565" fg:w="190"/><text x="28.1811%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (185 samples, 0.04%)</title><rect x="27.9321%" y="725" width="0.0357%" height="15" fill="rgb(225,197,26)" fg:x="144570" fg:w="185"/><text x="28.1821%" y="735.50"></text></g><g><title>native_write_msr (184 samples, 0.04%)</title><rect x="27.9323%" y="709" width="0.0356%" height="15" fill="rgb(214,17,42)" fg:x="144571" fg:w="184"/><text x="28.1823%" y="719.50"></text></g><g><title>schedule_tail (198 samples, 0.04%)</title><rect x="27.9305%" y="773" width="0.0383%" height="15" fill="rgb(224,165,40)" fg:x="144562" fg:w="198"/><text x="28.1805%" y="783.50"></text></g><g><title>finish_task_switch (197 samples, 0.04%)</title><rect x="27.9307%" y="757" width="0.0381%" height="15" fill="rgb(246,100,4)" fg:x="144563" fg:w="197"/><text x="28.1807%" y="767.50"></text></g><g><title>ret_from_fork (207 samples, 0.04%)</title><rect x="27.9292%" y="789" width="0.0400%" height="15" fill="rgb(222,103,0)" fg:x="144555" fg:w="207"/><text x="28.1792%" y="799.50"></text></g><g><title>JNI_CreateJavaVM (53 samples, 0.01%)</title><rect x="27.9692%" y="757" width="0.0102%" height="15" fill="rgb(227,189,26)" fg:x="144762" fg:w="53"/><text x="28.2192%" y="767.50"></text></g><g><title>Threads::create_vm (53 samples, 0.01%)</title><rect x="27.9692%" y="741" width="0.0102%" height="15" fill="rgb(214,202,17)" fg:x="144762" fg:w="53"/><text x="28.2192%" y="751.50"></text></g><g><title>JavaMain (54 samples, 0.01%)</title><rect x="27.9692%" y="773" width="0.0104%" height="15" fill="rgb(229,111,3)" fg:x="144762" fg:w="54"/><text x="28.2192%" y="783.50"></text></g><g><title>__GI___clone (348 samples, 0.07%)</title><rect x="27.9269%" y="805" width="0.0672%" height="15" fill="rgb(229,172,15)" fg:x="144543" fg:w="348"/><text x="28.1769%" y="815.50"></text></g><g><title>start_thread (129 samples, 0.02%)</title><rect x="27.9692%" y="789" width="0.0249%" height="15" fill="rgb(230,224,35)" fg:x="144762" fg:w="129"/><text x="28.2192%" y="799.50"></text></g><g><title>thread_native_entry (75 samples, 0.01%)</title><rect x="27.9796%" y="773" width="0.0145%" height="15" fill="rgb(251,141,6)" fg:x="144816" fg:w="75"/><text x="28.2296%" y="783.50"></text></g><g><title>java (5,520 samples, 1.07%)</title><rect x="26.9342%" y="821" width="1.0665%" height="15" fill="rgb(225,208,6)" fg:x="139405" fg:w="5520"/><text x="27.1842%" y="831.50"></text></g><g><title>arch_fork (60 samples, 0.01%)</title><rect x="28.0289%" y="69" width="0.0116%" height="15" fill="rgb(246,181,16)" fg:x="145071" fg:w="60"/><text x="28.2789%" y="79.50"></text></g><g><title>ret_from_fork (55 samples, 0.01%)</title><rect x="28.0298%" y="53" width="0.0106%" height="15" fill="rgb(227,129,36)" fg:x="145076" fg:w="55"/><text x="28.2798%" y="63.50"></text></g><g><title>schedule_tail (55 samples, 0.01%)</title><rect x="28.0298%" y="37" width="0.0106%" height="15" fill="rgb(248,117,24)" fg:x="145076" fg:w="55"/><text x="28.2798%" y="47.50"></text></g><g><title>__libc_fork (61 samples, 0.01%)</title><rect x="28.0289%" y="85" width="0.0118%" height="15" fill="rgb(214,185,35)" fg:x="145071" fg:w="61"/><text x="28.2789%" y="95.50"></text></g><g><title>execute_command (69 samples, 0.01%)</title><rect x="28.0277%" y="757" width="0.0133%" height="15" fill="rgb(236,150,34)" fg:x="145065" fg:w="69"/><text x="28.2777%" y="767.50"></text></g><g><title>execute_command_internal (69 samples, 0.01%)</title><rect x="28.0277%" y="741" width="0.0133%" height="15" fill="rgb(243,228,27)" fg:x="145065" fg:w="69"/><text x="28.2777%" y="751.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="725" width="0.0124%" height="15" fill="rgb(245,77,44)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="735.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="709" width="0.0124%" height="15" fill="rgb(235,214,42)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="719.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="693" width="0.0124%" height="15" fill="rgb(221,74,3)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="703.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="677" width="0.0124%" height="15" fill="rgb(206,121,29)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="687.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="661" width="0.0124%" height="15" fill="rgb(249,131,53)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="671.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="645" width="0.0124%" height="15" fill="rgb(236,170,29)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="655.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="629" width="0.0124%" height="15" fill="rgb(247,96,15)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="639.50"></text></g><g><title>execute_command (64 samples, 0.01%)</title><rect x="28.0287%" y="613" width="0.0124%" height="15" fill="rgb(211,210,7)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="623.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="597" width="0.0124%" height="15" fill="rgb(240,88,50)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="607.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="581" width="0.0124%" height="15" fill="rgb(209,229,26)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="591.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="565" width="0.0124%" height="15" fill="rgb(210,68,23)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="575.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="549" width="0.0124%" height="15" fill="rgb(229,180,13)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="559.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="533" width="0.0124%" height="15" fill="rgb(236,53,44)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="543.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="517" width="0.0124%" height="15" fill="rgb(244,214,29)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="527.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="501" width="0.0124%" height="15" fill="rgb(220,75,29)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="511.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="485" width="0.0124%" height="15" fill="rgb(214,183,37)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="495.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="469" width="0.0124%" height="15" fill="rgb(239,117,29)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="479.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="453" width="0.0124%" height="15" fill="rgb(237,171,35)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="463.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="437" width="0.0124%" height="15" fill="rgb(229,178,53)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="447.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="421" width="0.0124%" height="15" fill="rgb(210,102,19)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="431.50"></text></g><g><title>execute_command (64 samples, 0.01%)</title><rect x="28.0287%" y="405" width="0.0124%" height="15" fill="rgb(235,127,22)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="415.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="389" width="0.0124%" height="15" fill="rgb(244,31,31)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="399.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="373" width="0.0124%" height="15" fill="rgb(231,43,21)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="383.50"></text></g><g><title>execute_command (64 samples, 0.01%)</title><rect x="28.0287%" y="357" width="0.0124%" height="15" fill="rgb(217,131,35)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="367.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="341" width="0.0124%" height="15" fill="rgb(221,149,4)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="351.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="325" width="0.0124%" height="15" fill="rgb(232,170,28)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="335.50"></text></g><g><title>execute_command (64 samples, 0.01%)</title><rect x="28.0287%" y="309" width="0.0124%" height="15" fill="rgb(238,56,10)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="319.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="293" width="0.0124%" height="15" fill="rgb(235,196,14)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="303.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="277" width="0.0124%" height="15" fill="rgb(216,45,48)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="287.50"></text></g><g><title>execute_command (64 samples, 0.01%)</title><rect x="28.0287%" y="261" width="0.0124%" height="15" fill="rgb(238,213,17)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="271.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="245" width="0.0124%" height="15" fill="rgb(212,13,2)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="255.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="229" width="0.0124%" height="15" fill="rgb(240,114,20)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="239.50"></text></g><g><title>execute_command_internal (64 samples, 0.01%)</title><rect x="28.0287%" y="213" width="0.0124%" height="15" fill="rgb(228,41,40)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="223.50"></text></g><g><title>expand_words (64 samples, 0.01%)</title><rect x="28.0287%" y="197" width="0.0124%" height="15" fill="rgb(244,132,35)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="207.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="181" width="0.0124%" height="15" fill="rgb(253,189,4)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="191.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="165" width="0.0124%" height="15" fill="rgb(224,37,19)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="175.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="149" width="0.0124%" height="15" fill="rgb(235,223,18)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="159.50"></text></g><g><title>[bash] (64 samples, 0.01%)</title><rect x="28.0287%" y="133" width="0.0124%" height="15" fill="rgb(235,163,25)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="143.50"></text></g><g><title>command_substitute (64 samples, 0.01%)</title><rect x="28.0287%" y="117" width="0.0124%" height="15" fill="rgb(217,145,28)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="127.50"></text></g><g><title>make_child (64 samples, 0.01%)</title><rect x="28.0287%" y="101" width="0.0124%" height="15" fill="rgb(223,223,32)" fg:x="145070" fg:w="64"/><text x="28.2787%" y="111.50"></text></g><g><title>[bash] (102 samples, 0.02%)</title><rect x="28.0277%" y="773" width="0.0197%" height="15" fill="rgb(227,189,39)" fg:x="145065" fg:w="102"/><text x="28.2777%" y="783.50"></text></g><g><title>arch_fork (67 samples, 0.01%)</title><rect x="28.0497%" y="117" width="0.0129%" height="15" fill="rgb(248,10,22)" fg:x="145179" fg:w="67"/><text x="28.2997%" y="127.50"></text></g><g><title>ret_from_fork (55 samples, 0.01%)</title><rect x="28.0521%" y="101" width="0.0106%" height="15" fill="rgb(248,46,39)" fg:x="145191" fg:w="55"/><text x="28.3021%" y="111.50"></text></g><g><title>schedule_tail (55 samples, 0.01%)</title><rect x="28.0521%" y="85" width="0.0106%" height="15" fill="rgb(248,113,48)" fg:x="145191" fg:w="55"/><text x="28.3021%" y="95.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="28.0524%" y="69" width="0.0102%" height="15" fill="rgb(245,16,25)" fg:x="145193" fg:w="53"/><text x="28.3024%" y="79.50"></text></g><g><title>make_child (68 samples, 0.01%)</title><rect x="28.0497%" y="149" width="0.0131%" height="15" fill="rgb(249,152,16)" fg:x="145179" fg:w="68"/><text x="28.2997%" y="159.50"></text></g><g><title>__libc_fork (68 samples, 0.01%)</title><rect x="28.0497%" y="133" width="0.0131%" height="15" fill="rgb(250,16,1)" fg:x="145179" fg:w="68"/><text x="28.2997%" y="143.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="677" width="0.0143%" height="15" fill="rgb(249,138,3)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="687.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="661" width="0.0143%" height="15" fill="rgb(227,71,41)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="671.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="645" width="0.0143%" height="15" fill="rgb(209,184,23)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="655.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="629" width="0.0143%" height="15" fill="rgb(223,215,31)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="639.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="613" width="0.0143%" height="15" fill="rgb(210,146,28)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="623.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="597" width="0.0143%" height="15" fill="rgb(209,183,41)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="607.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="581" width="0.0143%" height="15" fill="rgb(209,224,45)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="591.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="565" width="0.0143%" height="15" fill="rgb(224,209,51)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="575.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="549" width="0.0143%" height="15" fill="rgb(223,17,39)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="559.50"></text></g><g><title>execute_command (74 samples, 0.01%)</title><rect x="28.0488%" y="533" width="0.0143%" height="15" fill="rgb(234,204,37)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="543.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="517" width="0.0143%" height="15" fill="rgb(236,120,5)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="527.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="501" width="0.0143%" height="15" fill="rgb(248,97,27)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="511.50"></text></g><g><title>execute_command (74 samples, 0.01%)</title><rect x="28.0488%" y="485" width="0.0143%" height="15" fill="rgb(240,66,17)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="495.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="469" width="0.0143%" height="15" fill="rgb(210,79,3)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="479.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="453" width="0.0143%" height="15" fill="rgb(214,176,27)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="463.50"></text></g><g><title>execute_command (74 samples, 0.01%)</title><rect x="28.0488%" y="437" width="0.0143%" height="15" fill="rgb(235,185,3)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="447.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="421" width="0.0143%" height="15" fill="rgb(227,24,12)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="431.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="405" width="0.0143%" height="15" fill="rgb(252,169,48)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="415.50"></text></g><g><title>execute_command (74 samples, 0.01%)</title><rect x="28.0488%" y="389" width="0.0143%" height="15" fill="rgb(212,65,1)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="399.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="373" width="0.0143%" height="15" fill="rgb(242,39,24)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="383.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="357" width="0.0143%" height="15" fill="rgb(249,32,23)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="367.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="341" width="0.0143%" height="15" fill="rgb(251,195,23)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="351.50"></text></g><g><title>expand_words (74 samples, 0.01%)</title><rect x="28.0488%" y="325" width="0.0143%" height="15" fill="rgb(236,174,8)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="335.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="309" width="0.0143%" height="15" fill="rgb(220,197,8)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="319.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="293" width="0.0143%" height="15" fill="rgb(240,108,37)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="303.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="277" width="0.0143%" height="15" fill="rgb(232,176,24)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="287.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="261" width="0.0143%" height="15" fill="rgb(243,35,29)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="271.50"></text></g><g><title>command_substitute (74 samples, 0.01%)</title><rect x="28.0488%" y="245" width="0.0143%" height="15" fill="rgb(210,37,18)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="255.50"></text></g><g><title>parse_and_execute (74 samples, 0.01%)</title><rect x="28.0488%" y="229" width="0.0143%" height="15" fill="rgb(224,184,40)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="239.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="213" width="0.0143%" height="15" fill="rgb(236,39,29)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="223.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="197" width="0.0143%" height="15" fill="rgb(232,48,39)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="207.50"></text></g><g><title>[bash] (74 samples, 0.01%)</title><rect x="28.0488%" y="181" width="0.0143%" height="15" fill="rgb(236,34,42)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="191.50"></text></g><g><title>execute_command_internal (74 samples, 0.01%)</title><rect x="28.0488%" y="165" width="0.0143%" height="15" fill="rgb(243,106,37)" fg:x="145174" fg:w="74"/><text x="28.2988%" y="175.50"></text></g><g><title>execute_command (77 samples, 0.01%)</title><rect x="28.0484%" y="741" width="0.0149%" height="15" fill="rgb(218,96,6)" fg:x="145172" fg:w="77"/><text x="28.2984%" y="751.50"></text></g><g><title>execute_command_internal (77 samples, 0.01%)</title><rect x="28.0484%" y="725" width="0.0149%" height="15" fill="rgb(235,130,12)" fg:x="145172" fg:w="77"/><text x="28.2984%" y="735.50"></text></g><g><title>[bash] (77 samples, 0.01%)</title><rect x="28.0484%" y="709" width="0.0149%" height="15" fill="rgb(231,95,0)" fg:x="145172" fg:w="77"/><text x="28.2984%" y="719.50"></text></g><g><title>execute_command_internal (75 samples, 0.01%)</title><rect x="28.0488%" y="693" width="0.0145%" height="15" fill="rgb(228,12,23)" fg:x="145174" fg:w="75"/><text x="28.2988%" y="703.50"></text></g><g><title>execute_command_internal (187 samples, 0.04%)</title><rect x="28.0277%" y="789" width="0.0361%" height="15" fill="rgb(216,12,1)" fg:x="145065" fg:w="187"/><text x="28.2777%" y="799.50"></text></g><g><title>execute_command_internal (80 samples, 0.02%)</title><rect x="28.0484%" y="773" width="0.0155%" height="15" fill="rgb(219,59,3)" fg:x="145172" fg:w="80"/><text x="28.2984%" y="783.50"></text></g><g><title>[bash] (80 samples, 0.02%)</title><rect x="28.0484%" y="757" width="0.0155%" height="15" fill="rgb(215,208,46)" fg:x="145172" fg:w="80"/><text x="28.2984%" y="767.50"></text></g><g><title>[unknown] (289 samples, 0.06%)</title><rect x="28.0138%" y="805" width="0.0558%" height="15" fill="rgb(254,224,29)" fg:x="144993" fg:w="289"/><text x="28.2638%" y="815.50"></text></g><g><title>arch_fork (62 samples, 0.01%)</title><rect x="28.0870%" y="629" width="0.0120%" height="15" fill="rgb(232,14,29)" fg:x="145372" fg:w="62"/><text x="28.3370%" y="639.50"></text></g><g><title>ret_from_fork (56 samples, 0.01%)</title><rect x="28.0882%" y="613" width="0.0108%" height="15" fill="rgb(208,45,52)" fg:x="145378" fg:w="56"/><text x="28.3382%" y="623.50"></text></g><g><title>schedule_tail (56 samples, 0.01%)</title><rect x="28.0882%" y="597" width="0.0108%" height="15" fill="rgb(234,191,28)" fg:x="145378" fg:w="56"/><text x="28.3382%" y="607.50"></text></g><g><title>finish_task_switch (54 samples, 0.01%)</title><rect x="28.0886%" y="581" width="0.0104%" height="15" fill="rgb(244,67,43)" fg:x="145380" fg:w="54"/><text x="28.3386%" y="591.50"></text></g><g><title>__libc_fork (66 samples, 0.01%)</title><rect x="28.0866%" y="645" width="0.0128%" height="15" fill="rgb(236,189,24)" fg:x="145370" fg:w="66"/><text x="28.3366%" y="655.50"></text></g><g><title>make_child (69 samples, 0.01%)</title><rect x="28.0864%" y="661" width="0.0133%" height="15" fill="rgb(239,214,33)" fg:x="145369" fg:w="69"/><text x="28.3364%" y="671.50"></text></g><g><title>execute_command (118 samples, 0.02%)</title><rect x="28.0789%" y="693" width="0.0228%" height="15" fill="rgb(226,176,41)" fg:x="145330" fg:w="118"/><text x="28.3289%" y="703.50"></text></g><g><title>execute_command_internal (118 samples, 0.02%)</title><rect x="28.0789%" y="677" width="0.0228%" height="15" fill="rgb(248,47,8)" fg:x="145330" fg:w="118"/><text x="28.3289%" y="687.50"></text></g><g><title>[bash] (137 samples, 0.03%)</title><rect x="28.0776%" y="709" width="0.0265%" height="15" fill="rgb(218,81,44)" fg:x="145323" fg:w="137"/><text x="28.3276%" y="719.50"></text></g><g><title>copy_command (52 samples, 0.01%)</title><rect x="28.1056%" y="581" width="0.0100%" height="15" fill="rgb(213,98,6)" fg:x="145468" fg:w="52"/><text x="28.3556%" y="591.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="28.1054%" y="597" width="0.0108%" height="15" fill="rgb(222,85,22)" fg:x="145467" fg:w="56"/><text x="28.3554%" y="607.50"></text></g><g><title>copy_command (60 samples, 0.01%)</title><rect x="28.1050%" y="613" width="0.0116%" height="15" fill="rgb(239,46,39)" fg:x="145465" fg:w="60"/><text x="28.3550%" y="623.50"></text></g><g><title>copy_command (63 samples, 0.01%)</title><rect x="28.1046%" y="629" width="0.0122%" height="15" fill="rgb(237,12,29)" fg:x="145463" fg:w="63"/><text x="28.3546%" y="639.50"></text></g><g><title>copy_command (66 samples, 0.01%)</title><rect x="28.1044%" y="645" width="0.0128%" height="15" fill="rgb(214,77,8)" fg:x="145462" fg:w="66"/><text x="28.3544%" y="655.50"></text></g><g><title>bind_function (67 samples, 0.01%)</title><rect x="28.1044%" y="709" width="0.0129%" height="15" fill="rgb(217,168,37)" fg:x="145462" fg:w="67"/><text x="28.3544%" y="719.50"></text></g><g><title>copy_command (67 samples, 0.01%)</title><rect x="28.1044%" y="693" width="0.0129%" height="15" fill="rgb(221,217,23)" fg:x="145462" fg:w="67"/><text x="28.3544%" y="703.50"></text></g><g><title>copy_command (67 samples, 0.01%)</title><rect x="28.1044%" y="677" width="0.0129%" height="15" fill="rgb(243,229,36)" fg:x="145462" fg:w="67"/><text x="28.3544%" y="687.50"></text></g><g><title>copy_command (67 samples, 0.01%)</title><rect x="28.1044%" y="661" width="0.0129%" height="15" fill="rgb(251,163,40)" fg:x="145462" fg:w="67"/><text x="28.3544%" y="671.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="28.1195%" y="581" width="0.0112%" height="15" fill="rgb(237,222,12)" fg:x="145540" fg:w="58"/><text x="28.3695%" y="591.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="28.1199%" y="565" width="0.0108%" height="15" fill="rgb(248,132,6)" fg:x="145542" fg:w="56"/><text x="28.3699%" y="575.50"></text></g><g><title>copy_command (61 samples, 0.01%)</title><rect x="28.1193%" y="597" width="0.0118%" height="15" fill="rgb(227,167,50)" fg:x="145539" fg:w="61"/><text x="28.3693%" y="607.50"></text></g><g><title>copy_command (66 samples, 0.01%)</title><rect x="28.1185%" y="613" width="0.0128%" height="15" fill="rgb(242,84,37)" fg:x="145535" fg:w="66"/><text x="28.3685%" y="623.50"></text></g><g><title>copy_command (71 samples, 0.01%)</title><rect x="28.1181%" y="629" width="0.0137%" height="15" fill="rgb(212,4,50)" fg:x="145533" fg:w="71"/><text x="28.3681%" y="639.50"></text></g><g><title>copy_command (76 samples, 0.01%)</title><rect x="28.1177%" y="693" width="0.0147%" height="15" fill="rgb(230,228,32)" fg:x="145531" fg:w="76"/><text x="28.3677%" y="703.50"></text></g><g><title>copy_command (75 samples, 0.01%)</title><rect x="28.1179%" y="677" width="0.0145%" height="15" fill="rgb(248,217,23)" fg:x="145532" fg:w="75"/><text x="28.3679%" y="687.50"></text></g><g><title>copy_command (75 samples, 0.01%)</title><rect x="28.1179%" y="661" width="0.0145%" height="15" fill="rgb(238,197,32)" fg:x="145532" fg:w="75"/><text x="28.3679%" y="671.50"></text></g><g><title>copy_command (75 samples, 0.01%)</title><rect x="28.1179%" y="645" width="0.0145%" height="15" fill="rgb(236,106,1)" fg:x="145532" fg:w="75"/><text x="28.3679%" y="655.50"></text></g><g><title>copy_function_def_contents (77 samples, 0.01%)</title><rect x="28.1177%" y="709" width="0.0149%" height="15" fill="rgb(219,228,13)" fg:x="145531" fg:w="77"/><text x="28.3677%" y="719.50"></text></g><g><title>arch_fork (57 samples, 0.01%)</title><rect x="28.1380%" y="597" width="0.0110%" height="15" fill="rgb(238,30,35)" fg:x="145636" fg:w="57"/><text x="28.3880%" y="607.50"></text></g><g><title>ret_from_fork (54 samples, 0.01%)</title><rect x="28.1386%" y="581" width="0.0104%" height="15" fill="rgb(236,70,23)" fg:x="145639" fg:w="54"/><text x="28.3886%" y="591.50"></text></g><g><title>schedule_tail (54 samples, 0.01%)</title><rect x="28.1386%" y="565" width="0.0104%" height="15" fill="rgb(249,104,48)" fg:x="145639" fg:w="54"/><text x="28.3886%" y="575.50"></text></g><g><title>make_child (59 samples, 0.01%)</title><rect x="28.1378%" y="629" width="0.0114%" height="15" fill="rgb(254,117,50)" fg:x="145635" fg:w="59"/><text x="28.3878%" y="639.50"></text></g><g><title>__libc_fork (58 samples, 0.01%)</title><rect x="28.1380%" y="613" width="0.0112%" height="15" fill="rgb(223,152,4)" fg:x="145636" fg:w="58"/><text x="28.3880%" y="623.50"></text></g><g><title>parse_and_execute (104 samples, 0.02%)</title><rect x="28.1492%" y="629" width="0.0201%" height="15" fill="rgb(245,6,2)" fg:x="145694" fg:w="104"/><text x="28.3992%" y="639.50"></text></g><g><title>execute_command_internal (102 samples, 0.02%)</title><rect x="28.1496%" y="613" width="0.0197%" height="15" fill="rgb(249,150,24)" fg:x="145696" fg:w="102"/><text x="28.3996%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="28.1699%" y="597" width="0.0100%" height="15" fill="rgb(228,185,42)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="607.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="28.1699%" y="581" width="0.0100%" height="15" fill="rgb(226,39,33)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="591.50"></text></g><g><title>ksys_read (52 samples, 0.01%)</title><rect x="28.1699%" y="565" width="0.0100%" height="15" fill="rgb(221,166,19)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="575.50"></text></g><g><title>vfs_read (52 samples, 0.01%)</title><rect x="28.1699%" y="549" width="0.0100%" height="15" fill="rgb(209,109,2)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="559.50"></text></g><g><title>new_sync_read (52 samples, 0.01%)</title><rect x="28.1699%" y="533" width="0.0100%" height="15" fill="rgb(252,216,26)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="543.50"></text></g><g><title>pipe_read (52 samples, 0.01%)</title><rect x="28.1699%" y="517" width="0.0100%" height="15" fill="rgb(227,173,36)" fg:x="145801" fg:w="52"/><text x="28.4199%" y="527.50"></text></g><g><title>expand_word_leave_quoted (225 samples, 0.04%)</title><rect x="28.1367%" y="677" width="0.0435%" height="15" fill="rgb(209,90,7)" fg:x="145629" fg:w="225"/><text x="28.3867%" y="687.50"></text></g><g><title>[bash] (225 samples, 0.04%)</title><rect x="28.1367%" y="661" width="0.0435%" height="15" fill="rgb(250,194,11)" fg:x="145629" fg:w="225"/><text x="28.3867%" y="671.50"></text></g><g><title>command_substitute (225 samples, 0.04%)</title><rect x="28.1367%" y="645" width="0.0435%" height="15" fill="rgb(220,72,50)" fg:x="145629" fg:w="225"/><text x="28.3867%" y="655.50"></text></g><g><title>zread (54 samples, 0.01%)</title><rect x="28.1697%" y="629" width="0.0104%" height="15" fill="rgb(222,106,48)" fg:x="145800" fg:w="54"/><text x="28.4197%" y="639.50"></text></g><g><title>__GI___libc_read (54 samples, 0.01%)</title><rect x="28.1697%" y="613" width="0.0104%" height="15" fill="rgb(216,220,45)" fg:x="145800" fg:w="54"/><text x="28.4197%" y="623.50"></text></g><g><title>execute_command (253 samples, 0.05%)</title><rect x="28.1326%" y="709" width="0.0489%" height="15" fill="rgb(234,112,18)" fg:x="145608" fg:w="253"/><text x="28.3826%" y="719.50"></text></g><g><title>execute_command_internal (253 samples, 0.05%)</title><rect x="28.1326%" y="693" width="0.0489%" height="15" fill="rgb(206,179,9)" fg:x="145608" fg:w="253"/><text x="28.3826%" y="703.50"></text></g><g><title>arch_fork (53 samples, 0.01%)</title><rect x="28.1856%" y="581" width="0.0102%" height="15" fill="rgb(215,115,40)" fg:x="145882" fg:w="53"/><text x="28.4356%" y="591.50"></text></g><g><title>__libc_fork (54 samples, 0.01%)</title><rect x="28.1856%" y="597" width="0.0104%" height="15" fill="rgb(222,69,34)" fg:x="145882" fg:w="54"/><text x="28.4356%" y="607.50"></text></g><g><title>make_child (56 samples, 0.01%)</title><rect x="28.1856%" y="613" width="0.0108%" height="15" fill="rgb(209,161,10)" fg:x="145882" fg:w="56"/><text x="28.4356%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.02%)</title><rect x="28.2084%" y="437" width="0.0193%" height="15" fill="rgb(217,6,38)" fg:x="146000" fg:w="100"/><text x="28.4584%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (99 samples, 0.02%)</title><rect x="28.2086%" y="421" width="0.0191%" height="15" fill="rgb(229,229,48)" fg:x="146001" fg:w="99"/><text x="28.4586%" y="431.50"></text></g><g><title>native_write_msr (99 samples, 0.02%)</title><rect x="28.2086%" y="405" width="0.0191%" height="15" fill="rgb(225,21,28)" fg:x="146001" fg:w="99"/><text x="28.4586%" y="415.50"></text></g><g><title>schedule_tail (118 samples, 0.02%)</title><rect x="28.2055%" y="469" width="0.0228%" height="15" fill="rgb(206,33,13)" fg:x="145985" fg:w="118"/><text x="28.4555%" y="479.50"></text></g><g><title>finish_task_switch (105 samples, 0.02%)</title><rect x="28.2080%" y="453" width="0.0203%" height="15" fill="rgb(242,178,17)" fg:x="145998" fg:w="105"/><text x="28.4580%" y="463.50"></text></g><g><title>arch_fork (133 samples, 0.03%)</title><rect x="28.2028%" y="501" width="0.0257%" height="15" fill="rgb(220,162,5)" fg:x="145971" fg:w="133"/><text x="28.4528%" y="511.50"></text></g><g><title>ret_from_fork (119 samples, 0.02%)</title><rect x="28.2055%" y="485" width="0.0230%" height="15" fill="rgb(210,33,43)" fg:x="145985" fg:w="119"/><text x="28.4555%" y="495.50"></text></g><g><title>__libc_fork (138 samples, 0.03%)</title><rect x="28.2028%" y="517" width="0.0267%" height="15" fill="rgb(216,116,54)" fg:x="145971" fg:w="138"/><text x="28.4528%" y="527.50"></text></g><g><title>make_child (142 samples, 0.03%)</title><rect x="28.2028%" y="533" width="0.0274%" height="15" fill="rgb(249,92,24)" fg:x="145971" fg:w="142"/><text x="28.4528%" y="543.50"></text></g><g><title>execute_command_internal (202 samples, 0.04%)</title><rect x="28.1974%" y="597" width="0.0390%" height="15" fill="rgb(231,189,14)" fg:x="145943" fg:w="202"/><text x="28.4474%" y="607.50"></text></g><g><title>[bash] (202 samples, 0.04%)</title><rect x="28.1974%" y="581" width="0.0390%" height="15" fill="rgb(230,8,41)" fg:x="145943" fg:w="202"/><text x="28.4474%" y="591.50"></text></g><g><title>[bash] (202 samples, 0.04%)</title><rect x="28.1974%" y="565" width="0.0390%" height="15" fill="rgb(249,7,27)" fg:x="145943" fg:w="202"/><text x="28.4474%" y="575.50"></text></g><g><title>execute_command_internal (202 samples, 0.04%)</title><rect x="28.1974%" y="549" width="0.0390%" height="15" fill="rgb(232,86,5)" fg:x="145943" fg:w="202"/><text x="28.4474%" y="559.50"></text></g><g><title>parse_and_execute (208 samples, 0.04%)</title><rect x="28.1964%" y="613" width="0.0402%" height="15" fill="rgb(224,175,18)" fg:x="145938" fg:w="208"/><text x="28.4464%" y="623.50"></text></g><g><title>command_substitute (275 samples, 0.05%)</title><rect x="28.1840%" y="629" width="0.0531%" height="15" fill="rgb(220,129,12)" fg:x="145874" fg:w="275"/><text x="28.4340%" y="639.50"></text></g><g><title>[bash] (286 samples, 0.06%)</title><rect x="28.1821%" y="661" width="0.0553%" height="15" fill="rgb(210,19,36)" fg:x="145864" fg:w="286"/><text x="28.4321%" y="671.50"></text></g><g><title>[bash] (285 samples, 0.06%)</title><rect x="28.1823%" y="645" width="0.0551%" height="15" fill="rgb(219,96,14)" fg:x="145865" fg:w="285"/><text x="28.4323%" y="655.50"></text></g><g><title>[bash] (290 samples, 0.06%)</title><rect x="28.1817%" y="677" width="0.0560%" height="15" fill="rgb(249,106,1)" fg:x="145862" fg:w="290"/><text x="28.4317%" y="687.50"></text></g><g><title>[bash] (295 samples, 0.06%)</title><rect x="28.1815%" y="693" width="0.0570%" height="15" fill="rgb(249,155,20)" fg:x="145861" fg:w="295"/><text x="28.4315%" y="703.50"></text></g><g><title>expand_words (297 samples, 0.06%)</title><rect x="28.1815%" y="709" width="0.0574%" height="15" fill="rgb(244,168,9)" fg:x="145861" fg:w="297"/><text x="28.4315%" y="719.50"></text></g><g><title>execute_command (837 samples, 0.16%)</title><rect x="28.0774%" y="741" width="0.1617%" height="15" fill="rgb(216,23,50)" fg:x="145322" fg:w="837"/><text x="28.3274%" y="751.50"></text></g><g><title>execute_command_internal (836 samples, 0.16%)</title><rect x="28.0776%" y="725" width="0.1615%" height="15" fill="rgb(224,219,20)" fg:x="145323" fg:w="836"/><text x="28.3276%" y="735.50"></text></g><g><title>[bash] (225 samples, 0.04%)</title><rect x="28.2642%" y="677" width="0.0435%" height="15" fill="rgb(222,156,15)" fg:x="146289" fg:w="225"/><text x="28.5142%" y="687.50"></text></g><g><title>[bash] (373 samples, 0.07%)</title><rect x="28.2491%" y="693" width="0.0721%" height="15" fill="rgb(231,97,17)" fg:x="146211" fg:w="373"/><text x="28.4991%" y="703.50"></text></g><g><title>reader_loop (1,319 samples, 0.25%)</title><rect x="28.0727%" y="757" width="0.2548%" height="15" fill="rgb(218,70,48)" fg:x="145298" fg:w="1319"/><text x="28.3227%" y="767.50"></text></g><g><title>read_command (458 samples, 0.09%)</title><rect x="28.2391%" y="741" width="0.0885%" height="15" fill="rgb(212,196,52)" fg:x="146159" fg:w="458"/><text x="28.4891%" y="751.50"></text></g><g><title>parse_command (458 samples, 0.09%)</title><rect x="28.2391%" y="725" width="0.0885%" height="15" fill="rgb(243,203,18)" fg:x="146159" fg:w="458"/><text x="28.4891%" y="735.50"></text></g><g><title>yyparse (458 samples, 0.09%)</title><rect x="28.2391%" y="709" width="0.0885%" height="15" fill="rgb(252,125,41)" fg:x="146159" fg:w="458"/><text x="28.4891%" y="719.50"></text></g><g><title>__libc_start_main (1,334 samples, 0.26%)</title><rect x="28.0702%" y="789" width="0.2577%" height="15" fill="rgb(223,180,33)" fg:x="145285" fg:w="1334"/><text x="28.3202%" y="799.50"></text></g><g><title>main (1,334 samples, 0.26%)</title><rect x="28.0702%" y="773" width="0.2577%" height="15" fill="rgb(254,159,46)" fg:x="145285" fg:w="1334"/><text x="28.3202%" y="783.50"></text></g><g><title>_start (1,353 samples, 0.26%)</title><rect x="28.0702%" y="805" width="0.2614%" height="15" fill="rgb(254,38,10)" fg:x="145285" fg:w="1353"/><text x="28.3202%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="28.3396%" y="805" width="0.0116%" height="15" fill="rgb(208,217,32)" fg:x="146679" fg:w="60"/><text x="28.5896%" y="815.50"></text></g><g><title>do_syscall_64 (60 samples, 0.01%)</title><rect x="28.3396%" y="789" width="0.0116%" height="15" fill="rgb(221,120,13)" fg:x="146679" fg:w="60"/><text x="28.5896%" y="799.50"></text></g><g><title>libtool (1,816 samples, 0.35%)</title><rect x="28.0007%" y="821" width="0.3509%" height="15" fill="rgb(246,54,52)" fg:x="144925" fg:w="1816"/><text x="28.2507%" y="831.50"></text></g><g><title>copy_process (75 samples, 0.01%)</title><rect x="28.3560%" y="693" width="0.0145%" height="15" fill="rgb(242,34,25)" fg:x="146764" fg:w="75"/><text x="28.6060%" y="703.50"></text></g><g><title>__libc_start_main (76 samples, 0.01%)</title><rect x="28.3560%" y="789" width="0.0147%" height="15" fill="rgb(247,209,9)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="799.50"></text></g><g><title>__GI___clone (76 samples, 0.01%)</title><rect x="28.3560%" y="773" width="0.0147%" height="15" fill="rgb(228,71,26)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.01%)</title><rect x="28.3560%" y="757" width="0.0147%" height="15" fill="rgb(222,145,49)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="767.50"></text></g><g><title>do_syscall_64 (76 samples, 0.01%)</title><rect x="28.3560%" y="741" width="0.0147%" height="15" fill="rgb(218,121,17)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="751.50"></text></g><g><title>__do_sys_clone (76 samples, 0.01%)</title><rect x="28.3560%" y="725" width="0.0147%" height="15" fill="rgb(244,50,7)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="735.50"></text></g><g><title>kernel_clone (76 samples, 0.01%)</title><rect x="28.3560%" y="709" width="0.0147%" height="15" fill="rgb(246,229,37)" fg:x="146764" fg:w="76"/><text x="28.6060%" y="719.50"></text></g><g><title>[unknown] (90 samples, 0.02%)</title><rect x="28.3548%" y="805" width="0.0174%" height="15" fill="rgb(225,18,5)" fg:x="146758" fg:w="90"/><text x="28.6048%" y="815.50"></text></g><g><title>WriteFile (64 samples, 0.01%)</title><rect x="28.3737%" y="773" width="0.0124%" height="15" fill="rgb(213,204,8)" fg:x="146856" fg:w="64"/><text x="28.6237%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.01%)</title><rect x="28.3965%" y="645" width="0.0124%" height="15" fill="rgb(238,103,6)" fg:x="146974" fg:w="64"/><text x="28.6465%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.01%)</title><rect x="28.3965%" y="629" width="0.0124%" height="15" fill="rgb(222,25,35)" fg:x="146974" fg:w="64"/><text x="28.6465%" y="639.50"></text></g><g><title>native_write_msr (64 samples, 0.01%)</title><rect x="28.3965%" y="613" width="0.0124%" height="15" fill="rgb(213,203,35)" fg:x="146974" fg:w="64"/><text x="28.6465%" y="623.50"></text></g><g><title>schedule (71 samples, 0.01%)</title><rect x="28.3956%" y="693" width="0.0137%" height="15" fill="rgb(221,79,53)" fg:x="146969" fg:w="71"/><text x="28.6456%" y="703.50"></text></g><g><title>__schedule (71 samples, 0.01%)</title><rect x="28.3956%" y="677" width="0.0137%" height="15" fill="rgb(243,200,35)" fg:x="146969" fg:w="71"/><text x="28.6456%" y="687.50"></text></g><g><title>finish_task_switch (71 samples, 0.01%)</title><rect x="28.3956%" y="661" width="0.0137%" height="15" fill="rgb(248,60,25)" fg:x="146969" fg:w="71"/><text x="28.6456%" y="671.50"></text></g><g><title>__GI___wait4 (88 samples, 0.02%)</title><rect x="28.3952%" y="773" width="0.0170%" height="15" fill="rgb(227,53,46)" fg:x="146967" fg:w="88"/><text x="28.6452%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.02%)</title><rect x="28.3952%" y="757" width="0.0170%" height="15" fill="rgb(216,120,32)" fg:x="146967" fg:w="88"/><text x="28.6452%" y="767.50"></text></g><g><title>do_syscall_64 (88 samples, 0.02%)</title><rect x="28.3952%" y="741" width="0.0170%" height="15" fill="rgb(220,134,1)" fg:x="146967" fg:w="88"/><text x="28.6452%" y="751.50"></text></g><g><title>kernel_wait4 (88 samples, 0.02%)</title><rect x="28.3952%" y="725" width="0.0170%" height="15" fill="rgb(237,168,5)" fg:x="146967" fg:w="88"/><text x="28.6452%" y="735.50"></text></g><g><title>do_wait (88 samples, 0.02%)</title><rect x="28.3952%" y="709" width="0.0170%" height="15" fill="rgb(231,100,33)" fg:x="146967" fg:w="88"/><text x="28.6452%" y="719.50"></text></g><g><title>do_open_execat (61 samples, 0.01%)</title><rect x="28.4145%" y="661" width="0.0118%" height="15" fill="rgb(236,177,47)" fg:x="147067" fg:w="61"/><text x="28.6645%" y="671.50"></text></g><g><title>do_filp_open (61 samples, 0.01%)</title><rect x="28.4145%" y="645" width="0.0118%" height="15" fill="rgb(235,7,49)" fg:x="147067" fg:w="61"/><text x="28.6645%" y="655.50"></text></g><g><title>path_openat (60 samples, 0.01%)</title><rect x="28.4147%" y="629" width="0.0116%" height="15" fill="rgb(232,119,22)" fg:x="147068" fg:w="60"/><text x="28.6647%" y="639.50"></text></g><g><title>bprm_execve (93 samples, 0.02%)</title><rect x="28.4141%" y="677" width="0.0180%" height="15" fill="rgb(254,73,53)" fg:x="147065" fg:w="93"/><text x="28.6641%" y="687.50"></text></g><g><title>__execvpe_common (104 samples, 0.02%)</title><rect x="28.4137%" y="773" width="0.0201%" height="15" fill="rgb(251,35,20)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="783.50"></text></g><g><title>__GI_execve (104 samples, 0.02%)</title><rect x="28.4137%" y="757" width="0.0201%" height="15" fill="rgb(241,119,20)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="28.4137%" y="741" width="0.0201%" height="15" fill="rgb(207,102,14)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="751.50"></text></g><g><title>do_syscall_64 (104 samples, 0.02%)</title><rect x="28.4137%" y="725" width="0.0201%" height="15" fill="rgb(248,201,50)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="735.50"></text></g><g><title>__x64_sys_execve (104 samples, 0.02%)</title><rect x="28.4137%" y="709" width="0.0201%" height="15" fill="rgb(222,185,44)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="719.50"></text></g><g><title>do_execveat_common (104 samples, 0.02%)</title><rect x="28.4137%" y="693" width="0.0201%" height="15" fill="rgb(218,107,18)" fg:x="147063" fg:w="104"/><text x="28.6637%" y="703.50"></text></g><g><title>copy_process (77 samples, 0.01%)</title><rect x="28.4418%" y="677" width="0.0149%" height="15" fill="rgb(237,177,39)" fg:x="147208" fg:w="77"/><text x="28.6918%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.02%)</title><rect x="28.4418%" y="741" width="0.0153%" height="15" fill="rgb(246,69,6)" fg:x="147208" fg:w="79"/><text x="28.6918%" y="751.50"></text></g><g><title>do_syscall_64 (79 samples, 0.02%)</title><rect x="28.4418%" y="725" width="0.0153%" height="15" fill="rgb(234,208,37)" fg:x="147208" fg:w="79"/><text x="28.6918%" y="735.50"></text></g><g><title>__do_sys_clone (79 samples, 0.02%)</title><rect x="28.4418%" y="709" width="0.0153%" height="15" fill="rgb(225,4,6)" fg:x="147208" fg:w="79"/><text x="28.6918%" y="719.50"></text></g><g><title>kernel_clone (79 samples, 0.02%)</title><rect x="28.4418%" y="693" width="0.0153%" height="15" fill="rgb(233,45,0)" fg:x="147208" fg:w="79"/><text x="28.6918%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (383 samples, 0.07%)</title><rect x="28.4711%" y="693" width="0.0740%" height="15" fill="rgb(226,136,5)" fg:x="147360" fg:w="383"/><text x="28.7211%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (383 samples, 0.07%)</title><rect x="28.4711%" y="677" width="0.0740%" height="15" fill="rgb(211,91,47)" fg:x="147360" fg:w="383"/><text x="28.7211%" y="687.50"></text></g><g><title>native_write_msr (383 samples, 0.07%)</title><rect x="28.4711%" y="661" width="0.0740%" height="15" fill="rgb(242,88,51)" fg:x="147360" fg:w="383"/><text x="28.7211%" y="671.50"></text></g><g><title>arch_fork (580 samples, 0.11%)</title><rect x="28.4344%" y="757" width="0.1121%" height="15" fill="rgb(230,91,28)" fg:x="147170" fg:w="580"/><text x="28.6844%" y="767.50"></text></g><g><title>ret_from_fork (459 samples, 0.09%)</title><rect x="28.4578%" y="741" width="0.0887%" height="15" fill="rgb(254,186,29)" fg:x="147291" fg:w="459"/><text x="28.7078%" y="751.50"></text></g><g><title>schedule_tail (456 samples, 0.09%)</title><rect x="28.4584%" y="725" width="0.0881%" height="15" fill="rgb(238,6,4)" fg:x="147294" fg:w="456"/><text x="28.7084%" y="735.50"></text></g><g><title>finish_task_switch (398 samples, 0.08%)</title><rect x="28.4696%" y="709" width="0.0769%" height="15" fill="rgb(221,151,16)" fg:x="147352" fg:w="398"/><text x="28.7196%" y="719.50"></text></g><g><title>__libc_fork (588 samples, 0.11%)</title><rect x="28.4338%" y="773" width="0.1136%" height="15" fill="rgb(251,143,52)" fg:x="147167" fg:w="588"/><text x="28.6838%" y="783.50"></text></g><g><title>Pid1Main (988 samples, 0.19%)</title><rect x="28.3728%" y="789" width="0.1909%" height="15" fill="rgb(206,90,15)" fg:x="146851" fg:w="988"/><text x="28.6228%" y="799.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.01%)</title><rect x="28.5639%" y="789" width="0.0106%" height="15" fill="rgb(218,35,8)" fg:x="147840" fg:w="55"/><text x="28.8139%" y="799.50"></text></g><g><title>exc_page_fault (55 samples, 0.01%)</title><rect x="28.5639%" y="773" width="0.0106%" height="15" fill="rgb(239,215,6)" fg:x="147840" fg:w="55"/><text x="28.8139%" y="783.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.01%)</title><rect x="28.5641%" y="757" width="0.0104%" height="15" fill="rgb(245,116,39)" fg:x="147841" fg:w="54"/><text x="28.8141%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (375 samples, 0.07%)</title><rect x="28.5843%" y="741" width="0.0725%" height="15" fill="rgb(242,65,28)" fg:x="147946" fg:w="375"/><text x="28.8343%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (374 samples, 0.07%)</title><rect x="28.5845%" y="725" width="0.0723%" height="15" fill="rgb(252,132,53)" fg:x="147947" fg:w="374"/><text x="28.8345%" y="735.50"></text></g><g><title>native_write_msr (374 samples, 0.07%)</title><rect x="28.5845%" y="709" width="0.0723%" height="15" fill="rgb(224,159,50)" fg:x="147947" fg:w="374"/><text x="28.8345%" y="719.50"></text></g><g><title>schedule_tail (412 samples, 0.08%)</title><rect x="28.5797%" y="773" width="0.0796%" height="15" fill="rgb(224,93,4)" fg:x="147922" fg:w="412"/><text x="28.8297%" y="783.50"></text></g><g><title>finish_task_switch (412 samples, 0.08%)</title><rect x="28.5797%" y="757" width="0.0796%" height="15" fill="rgb(208,81,34)" fg:x="147922" fg:w="412"/><text x="28.8297%" y="767.50"></text></g><g><title>__GI___clone (1,490 samples, 0.29%)</title><rect x="28.3722%" y="805" width="0.2879%" height="15" fill="rgb(233,92,54)" fg:x="146848" fg:w="1490"/><text x="28.6222%" y="815.50"></text></g><g><title>ret_from_fork (442 samples, 0.09%)</title><rect x="28.5747%" y="789" width="0.0854%" height="15" fill="rgb(237,21,14)" fg:x="147896" fg:w="442"/><text x="28.8247%" y="799.50"></text></g><g><title>asm_exc_page_fault (53 samples, 0.01%)</title><rect x="28.6732%" y="741" width="0.0102%" height="15" fill="rgb(249,128,51)" fg:x="148406" fg:w="53"/><text x="28.9232%" y="751.50"></text></g><g><title>[libc-2.31.so] (71 samples, 0.01%)</title><rect x="28.6711%" y="757" width="0.0137%" height="15" fill="rgb(223,129,24)" fg:x="148395" fg:w="71"/><text x="28.9211%" y="767.50"></text></g><g><title>do_wait (63 samples, 0.01%)</title><rect x="28.6852%" y="677" width="0.0122%" height="15" fill="rgb(231,168,25)" fg:x="148468" fg:w="63"/><text x="28.9352%" y="687.50"></text></g><g><title>__GI___wait4 (64 samples, 0.01%)</title><rect x="28.6852%" y="757" width="0.0124%" height="15" fill="rgb(224,39,20)" fg:x="148468" fg:w="64"/><text x="28.9352%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.01%)</title><rect x="28.6852%" y="741" width="0.0124%" height="15" fill="rgb(225,152,53)" fg:x="148468" fg:w="64"/><text x="28.9352%" y="751.50"></text></g><g><title>do_syscall_64 (64 samples, 0.01%)</title><rect x="28.6852%" y="725" width="0.0124%" height="15" fill="rgb(252,17,24)" fg:x="148468" fg:w="64"/><text x="28.9352%" y="735.50"></text></g><g><title>__do_sys_wait4 (64 samples, 0.01%)</title><rect x="28.6852%" y="709" width="0.0124%" height="15" fill="rgb(250,114,30)" fg:x="148468" fg:w="64"/><text x="28.9352%" y="719.50"></text></g><g><title>kernel_wait4 (64 samples, 0.01%)</title><rect x="28.6852%" y="693" width="0.0124%" height="15" fill="rgb(229,5,4)" fg:x="148468" fg:w="64"/><text x="28.9352%" y="703.50"></text></g><g><title>__libc_start_main (205 samples, 0.04%)</title><rect x="28.6641%" y="789" width="0.0396%" height="15" fill="rgb(225,176,49)" fg:x="148359" fg:w="205"/><text x="28.9141%" y="799.50"></text></g><g><title>main (180 samples, 0.03%)</title><rect x="28.6690%" y="773" width="0.0348%" height="15" fill="rgb(224,221,49)" fg:x="148384" fg:w="180"/><text x="28.9190%" y="783.50"></text></g><g><title>_dl_map_object_from_fd (68 samples, 0.01%)</title><rect x="28.7057%" y="661" width="0.0131%" height="15" fill="rgb(253,169,27)" fg:x="148574" fg:w="68"/><text x="28.9557%" y="671.50"></text></g><g><title>_dl_catch_exception (93 samples, 0.02%)</title><rect x="28.7043%" y="709" width="0.0180%" height="15" fill="rgb(211,206,16)" fg:x="148567" fg:w="93"/><text x="28.9543%" y="719.50"></text></g><g><title>openaux (92 samples, 0.02%)</title><rect x="28.7045%" y="693" width="0.0178%" height="15" fill="rgb(244,87,35)" fg:x="148568" fg:w="92"/><text x="28.9545%" y="703.50"></text></g><g><title>_dl_map_object (92 samples, 0.02%)</title><rect x="28.7045%" y="677" width="0.0178%" height="15" fill="rgb(246,28,10)" fg:x="148568" fg:w="92"/><text x="28.9545%" y="687.50"></text></g><g><title>_dl_map_object_deps (99 samples, 0.02%)</title><rect x="28.7039%" y="725" width="0.0191%" height="15" fill="rgb(229,12,44)" fg:x="148565" fg:w="99"/><text x="28.9539%" y="735.50"></text></g><g><title>dl_new_hash (64 samples, 0.01%)</title><rect x="28.7364%" y="661" width="0.0124%" height="15" fill="rgb(210,145,37)" fg:x="148733" fg:w="64"/><text x="28.9864%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (151 samples, 0.03%)</title><rect x="28.7349%" y="677" width="0.0292%" height="15" fill="rgb(227,112,52)" fg:x="148725" fg:w="151"/><text x="28.9849%" y="687.50"></text></g><g><title>do_lookup_x (79 samples, 0.02%)</title><rect x="28.7488%" y="661" width="0.0153%" height="15" fill="rgb(238,155,34)" fg:x="148797" fg:w="79"/><text x="28.9988%" y="671.50"></text></g><g><title>elf_machine_rela (178 samples, 0.03%)</title><rect x="28.7302%" y="693" width="0.0344%" height="15" fill="rgb(239,226,36)" fg:x="148701" fg:w="178"/><text x="28.9802%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (206 samples, 0.04%)</title><rect x="28.7275%" y="709" width="0.0398%" height="15" fill="rgb(230,16,23)" fg:x="148687" fg:w="206"/><text x="28.9775%" y="719.50"></text></g><g><title>_dl_relocate_object (218 samples, 0.04%)</title><rect x="28.7262%" y="725" width="0.0421%" height="15" fill="rgb(236,171,36)" fg:x="148680" fg:w="218"/><text x="28.9762%" y="735.50"></text></g><g><title>[ld-2.31.so] (341 samples, 0.07%)</title><rect x="28.7037%" y="741" width="0.0659%" height="15" fill="rgb(221,22,14)" fg:x="148564" fg:w="341"/><text x="28.9537%" y="751.50"></text></g><g><title>_dl_start_final (342 samples, 0.07%)</title><rect x="28.7037%" y="773" width="0.0661%" height="15" fill="rgb(242,43,11)" fg:x="148564" fg:w="342"/><text x="28.9537%" y="783.50"></text></g><g><title>_dl_sysdep_start (342 samples, 0.07%)</title><rect x="28.7037%" y="757" width="0.0661%" height="15" fill="rgb(232,69,23)" fg:x="148564" fg:w="342"/><text x="28.9537%" y="767.50"></text></g><g><title>_dl_start (348 samples, 0.07%)</title><rect x="28.7037%" y="789" width="0.0672%" height="15" fill="rgb(216,180,54)" fg:x="148564" fg:w="348"/><text x="28.9537%" y="799.50"></text></g><g><title>_start (555 samples, 0.11%)</title><rect x="28.6639%" y="805" width="0.1072%" height="15" fill="rgb(216,5,24)" fg:x="148358" fg:w="555"/><text x="28.9139%" y="815.50"></text></g><g><title>asm_exc_page_fault (103 samples, 0.02%)</title><rect x="28.7712%" y="805" width="0.0199%" height="15" fill="rgb(225,89,9)" fg:x="148913" fg:w="103"/><text x="29.0212%" y="815.50"></text></g><g><title>__x64_sys_execve (59 samples, 0.01%)</title><rect x="28.7911%" y="773" width="0.0114%" height="15" fill="rgb(243,75,33)" fg:x="149016" fg:w="59"/><text x="29.0411%" y="783.50"></text></g><g><title>do_execveat_common (59 samples, 0.01%)</title><rect x="28.7911%" y="757" width="0.0114%" height="15" fill="rgb(247,141,45)" fg:x="149016" fg:w="59"/><text x="29.0411%" y="767.50"></text></g><g><title>bprm_execve (59 samples, 0.01%)</title><rect x="28.7911%" y="741" width="0.0114%" height="15" fill="rgb(232,177,36)" fg:x="149016" fg:w="59"/><text x="29.0411%" y="751.50"></text></g><g><title>load_elf_binary (59 samples, 0.01%)</title><rect x="28.7911%" y="725" width="0.0114%" height="15" fill="rgb(219,125,36)" fg:x="149016" fg:w="59"/><text x="29.0411%" y="735.50"></text></g><g><title>__x64_sys_exit (63 samples, 0.01%)</title><rect x="28.8025%" y="773" width="0.0122%" height="15" fill="rgb(227,94,9)" fg:x="149075" fg:w="63"/><text x="29.0525%" y="783.50"></text></g><g><title>do_exit (63 samples, 0.01%)</title><rect x="28.8025%" y="757" width="0.0122%" height="15" fill="rgb(240,34,52)" fg:x="149075" fg:w="63"/><text x="29.0525%" y="767.50"></text></g><g><title>__x64_sys_exit_group (55 samples, 0.01%)</title><rect x="28.8146%" y="773" width="0.0106%" height="15" fill="rgb(216,45,12)" fg:x="149138" fg:w="55"/><text x="29.0646%" y="783.50"></text></g><g><title>do_group_exit (55 samples, 0.01%)</title><rect x="28.8146%" y="757" width="0.0106%" height="15" fill="rgb(246,21,19)" fg:x="149138" fg:w="55"/><text x="29.0646%" y="767.50"></text></g><g><title>do_exit (55 samples, 0.01%)</title><rect x="28.8146%" y="741" width="0.0106%" height="15" fill="rgb(213,98,42)" fg:x="149138" fg:w="55"/><text x="29.0646%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (178 samples, 0.03%)</title><rect x="28.7911%" y="805" width="0.0344%" height="15" fill="rgb(250,136,47)" fg:x="149016" fg:w="178"/><text x="29.0411%" y="815.50"></text></g><g><title>do_syscall_64 (178 samples, 0.03%)</title><rect x="28.7911%" y="789" width="0.0344%" height="15" fill="rgb(251,124,27)" fg:x="149016" fg:w="178"/><text x="29.0411%" y="799.50"></text></g><g><title>linux-sandbox (2,463 samples, 0.48%)</title><rect x="28.3515%" y="821" width="0.4759%" height="15" fill="rgb(229,180,14)" fg:x="146741" fg:w="2463"/><text x="28.6015%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.01%)</title><rect x="28.8374%" y="645" width="0.0131%" height="15" fill="rgb(245,216,25)" fg:x="149256" fg:w="68"/><text x="29.0874%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.01%)</title><rect x="28.8378%" y="629" width="0.0128%" height="15" fill="rgb(251,43,5)" fg:x="149258" fg:w="66"/><text x="29.0878%" y="639.50"></text></g><g><title>native_write_msr (66 samples, 0.01%)</title><rect x="28.8378%" y="613" width="0.0128%" height="15" fill="rgb(250,128,24)" fg:x="149258" fg:w="66"/><text x="29.0878%" y="623.50"></text></g><g><title>arch_fork (91 samples, 0.02%)</title><rect x="28.8332%" y="709" width="0.0176%" height="15" fill="rgb(217,117,27)" fg:x="149234" fg:w="91"/><text x="29.0832%" y="719.50"></text></g><g><title>ret_from_fork (79 samples, 0.02%)</title><rect x="28.8355%" y="693" width="0.0153%" height="15" fill="rgb(245,147,4)" fg:x="149246" fg:w="79"/><text x="29.0855%" y="703.50"></text></g><g><title>schedule_tail (79 samples, 0.02%)</title><rect x="28.8355%" y="677" width="0.0153%" height="15" fill="rgb(242,201,35)" fg:x="149246" fg:w="79"/><text x="29.0855%" y="687.50"></text></g><g><title>finish_task_switch (73 samples, 0.01%)</title><rect x="28.8367%" y="661" width="0.0141%" height="15" fill="rgb(218,181,1)" fg:x="149252" fg:w="73"/><text x="29.0867%" y="671.50"></text></g><g><title>__libc_fork (96 samples, 0.02%)</title><rect x="28.8330%" y="725" width="0.0185%" height="15" fill="rgb(222,6,29)" fg:x="149233" fg:w="96"/><text x="29.0830%" y="735.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (109 samples, 0.02%)</title><rect x="28.8309%" y="757" width="0.0211%" height="15" fill="rgb(208,186,3)" fg:x="149222" fg:w="109"/><text x="29.0809%" y="767.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (109 samples, 0.02%)</title><rect x="28.8309%" y="741" width="0.0211%" height="15" fill="rgb(216,36,26)" fg:x="149222" fg:w="109"/><text x="29.0809%" y="751.50"></text></g><g><title>__libc_start_main (137 samples, 0.03%)</title><rect x="28.8303%" y="789" width="0.0265%" height="15" fill="rgb(248,201,23)" fg:x="149219" fg:w="137"/><text x="29.0803%" y="799.50"></text></g><g><title>main (134 samples, 0.03%)</title><rect x="28.8309%" y="773" width="0.0259%" height="15" fill="rgb(251,170,31)" fg:x="149222" fg:w="134"/><text x="29.0809%" y="783.50"></text></g><g><title>_dl_start_final (64 samples, 0.01%)</title><rect x="28.8568%" y="773" width="0.0124%" height="15" fill="rgb(207,110,25)" fg:x="149356" fg:w="64"/><text x="29.1068%" y="783.50"></text></g><g><title>_dl_sysdep_start (64 samples, 0.01%)</title><rect x="28.8568%" y="757" width="0.0124%" height="15" fill="rgb(250,54,15)" fg:x="149356" fg:w="64"/><text x="29.1068%" y="767.50"></text></g><g><title>[ld-2.31.so] (64 samples, 0.01%)</title><rect x="28.8568%" y="741" width="0.0124%" height="15" fill="rgb(227,68,33)" fg:x="149356" fg:w="64"/><text x="29.1068%" y="751.50"></text></g><g><title>_start (202 samples, 0.04%)</title><rect x="28.8303%" y="805" width="0.0390%" height="15" fill="rgb(238,34,41)" fg:x="149219" fg:w="202"/><text x="29.0803%" y="815.50"></text></g><g><title>_dl_start (65 samples, 0.01%)</title><rect x="28.8568%" y="789" width="0.0126%" height="15" fill="rgb(220,11,15)" fg:x="149356" fg:w="65"/><text x="29.1068%" y="799.50"></text></g><g><title>process-wrapper (233 samples, 0.05%)</title><rect x="28.8286%" y="821" width="0.0450%" height="15" fill="rgb(246,111,35)" fg:x="149210" fg:w="233"/><text x="29.0786%" y="831.50"></text></g><g><title>__GI___wait4 (76 samples, 0.01%)</title><rect x="28.8892%" y="773" width="0.0147%" height="15" fill="rgb(209,88,53)" fg:x="149524" fg:w="76"/><text x="29.1392%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (75 samples, 0.01%)</title><rect x="28.8894%" y="757" width="0.0145%" height="15" fill="rgb(231,185,47)" fg:x="149525" fg:w="75"/><text x="29.1394%" y="767.50"></text></g><g><title>do_syscall_64 (75 samples, 0.01%)</title><rect x="28.8894%" y="741" width="0.0145%" height="15" fill="rgb(233,154,1)" fg:x="149525" fg:w="75"/><text x="29.1394%" y="751.50"></text></g><g><title>kernel_wait4 (73 samples, 0.01%)</title><rect x="28.8898%" y="725" width="0.0141%" height="15" fill="rgb(225,15,46)" fg:x="149527" fg:w="73"/><text x="29.1398%" y="735.50"></text></g><g><title>do_wait (73 samples, 0.01%)</title><rect x="28.8898%" y="709" width="0.0141%" height="15" fill="rgb(211,135,41)" fg:x="149527" fg:w="73"/><text x="29.1398%" y="719.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (77 samples, 0.01%)</title><rect x="28.8892%" y="789" width="0.0149%" height="15" fill="rgb(208,54,0)" fg:x="149524" fg:w="77"/><text x="29.1392%" y="799.50"></text></g><g><title>[perf-965379.map] (173 samples, 0.03%)</title><rect x="28.8742%" y="805" width="0.0334%" height="15" fill="rgb(244,136,14)" fg:x="149446" fg:w="173"/><text x="29.1242%" y="815.50"></text></g><g><title>process_reaper (183 samples, 0.04%)</title><rect x="28.8736%" y="821" width="0.0354%" height="15" fill="rgb(241,56,14)" fg:x="149443" fg:w="183"/><text x="29.1236%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="28.9829%" y="565" width="0.0104%" height="15" fill="rgb(205,80,24)" fg:x="150009" fg:w="54"/><text x="29.2329%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.01%)</title><rect x="28.9829%" y="549" width="0.0104%" height="15" fill="rgb(220,57,4)" fg:x="150009" fg:w="54"/><text x="29.2329%" y="559.50"></text></g><g><title>native_write_msr (54 samples, 0.01%)</title><rect x="28.9829%" y="533" width="0.0104%" height="15" fill="rgb(226,193,50)" fg:x="150009" fg:w="54"/><text x="29.2329%" y="543.50"></text></g><g><title>finish_task_switch (57 samples, 0.01%)</title><rect x="28.9827%" y="581" width="0.0110%" height="15" fill="rgb(231,168,22)" fg:x="150008" fg:w="57"/><text x="29.2327%" y="591.50"></text></g><g><title>futex_wait_queue_me (92 samples, 0.02%)</title><rect x="28.9781%" y="629" width="0.0178%" height="15" fill="rgb(254,215,14)" fg:x="149984" fg:w="92"/><text x="29.2281%" y="639.50"></text></g><g><title>schedule (89 samples, 0.02%)</title><rect x="28.9787%" y="613" width="0.0172%" height="15" fill="rgb(211,115,16)" fg:x="149987" fg:w="89"/><text x="29.2287%" y="623.50"></text></g><g><title>__schedule (88 samples, 0.02%)</title><rect x="28.9789%" y="597" width="0.0170%" height="15" fill="rgb(236,210,16)" fg:x="149988" fg:w="88"/><text x="29.2289%" y="607.50"></text></g><g><title>do_syscall_64 (102 samples, 0.02%)</title><rect x="28.9768%" y="693" width="0.0197%" height="15" fill="rgb(221,94,12)" fg:x="149977" fg:w="102"/><text x="29.2268%" y="703.50"></text></g><g><title>__x64_sys_futex (102 samples, 0.02%)</title><rect x="28.9768%" y="677" width="0.0197%" height="15" fill="rgb(235,218,49)" fg:x="149977" fg:w="102"/><text x="29.2268%" y="687.50"></text></g><g><title>do_futex (100 samples, 0.02%)</title><rect x="28.9771%" y="661" width="0.0193%" height="15" fill="rgb(217,114,14)" fg:x="149979" fg:w="100"/><text x="29.2271%" y="671.50"></text></g><g><title>futex_wait (99 samples, 0.02%)</title><rect x="28.9773%" y="645" width="0.0191%" height="15" fill="rgb(216,145,22)" fg:x="149980" fg:w="99"/><text x="29.2273%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="28.9768%" y="709" width="0.0201%" height="15" fill="rgb(217,112,39)" fg:x="149977" fg:w="104"/><text x="29.2268%" y="719.50"></text></g><g><title>__pthread_cond_wait (108 samples, 0.02%)</title><rect x="28.9762%" y="757" width="0.0209%" height="15" fill="rgb(225,85,32)" fg:x="149974" fg:w="108"/><text x="29.2262%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (108 samples, 0.02%)</title><rect x="28.9762%" y="741" width="0.0209%" height="15" fill="rgb(245,209,47)" fg:x="149974" fg:w="108"/><text x="29.2262%" y="751.50"></text></g><g><title>futex_wait_cancelable (107 samples, 0.02%)</title><rect x="28.9764%" y="725" width="0.0207%" height="15" fill="rgb(218,220,15)" fg:x="149975" fg:w="107"/><text x="29.2264%" y="735.50"></text></g><g><title>Parker::park (121 samples, 0.02%)</title><rect x="28.9750%" y="773" width="0.0234%" height="15" fill="rgb(222,202,31)" fg:x="149968" fg:w="121"/><text x="29.2250%" y="783.50"></text></g><g><title>Unsafe_Park (126 samples, 0.02%)</title><rect x="28.9744%" y="789" width="0.0243%" height="15" fill="rgb(243,203,4)" fg:x="149965" fg:w="126"/><text x="29.2244%" y="799.50"></text></g><g><title>[perf-965379.map] (456 samples, 0.09%)</title><rect x="28.9111%" y="805" width="0.0881%" height="15" fill="rgb(237,92,17)" fg:x="149637" fg:w="456"/><text x="29.1611%" y="815.50"></text></g><g><title>profile-writer- (481 samples, 0.09%)</title><rect x="28.9089%" y="821" width="0.0929%" height="15" fill="rgb(231,119,7)" fg:x="149626" fg:w="481"/><text x="29.1589%" y="831.50"></text></g><g><title>[python3.9] (78 samples, 0.02%)</title><rect x="29.0220%" y="789" width="0.0151%" height="15" fill="rgb(237,82,41)" fg:x="150211" fg:w="78"/><text x="29.2720%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.01%)</title><rect x="29.0550%" y="741" width="0.0104%" height="15" fill="rgb(226,81,48)" fg:x="150382" fg:w="54"/><text x="29.3050%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (132 samples, 0.03%)</title><rect x="29.0401%" y="789" width="0.0255%" height="15" fill="rgb(234,70,51)" fg:x="150305" fg:w="132"/><text x="29.2901%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (74 samples, 0.01%)</title><rect x="29.0513%" y="773" width="0.0143%" height="15" fill="rgb(251,86,4)" fg:x="150363" fg:w="74"/><text x="29.3013%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (57 samples, 0.01%)</title><rect x="29.0546%" y="757" width="0.0110%" height="15" fill="rgb(244,144,28)" fg:x="150380" fg:w="57"/><text x="29.3046%" y="767.50"></text></g><g><title>[unknown] (368 samples, 0.07%)</title><rect x="29.0094%" y="805" width="0.0711%" height="15" fill="rgb(232,161,39)" fg:x="150146" fg:w="368"/><text x="29.2594%" y="815.50"></text></g><g><title>Py_RunMain (87 samples, 0.02%)</title><rect x="29.0807%" y="757" width="0.0168%" height="15" fill="rgb(247,34,51)" fg:x="150515" fg:w="87"/><text x="29.3307%" y="767.50"></text></g><g><title>Py_FinalizeEx (65 samples, 0.01%)</title><rect x="29.0849%" y="741" width="0.0126%" height="15" fill="rgb(225,132,2)" fg:x="150537" fg:w="65"/><text x="29.3349%" y="751.50"></text></g><g><title>Py_InitializeFromConfig (82 samples, 0.02%)</title><rect x="29.0977%" y="725" width="0.0158%" height="15" fill="rgb(209,159,44)" fg:x="150603" fg:w="82"/><text x="29.3477%" y="735.50"></text></g><g><title>[python3.9] (82 samples, 0.02%)</title><rect x="29.0977%" y="709" width="0.0158%" height="15" fill="rgb(251,214,1)" fg:x="150603" fg:w="82"/><text x="29.3477%" y="719.50"></text></g><g><title>[python3.9] (81 samples, 0.02%)</title><rect x="29.0979%" y="693" width="0.0156%" height="15" fill="rgb(247,84,47)" fg:x="150604" fg:w="81"/><text x="29.3479%" y="703.50"></text></g><g><title>__libc_start_main (171 samples, 0.03%)</title><rect x="29.0807%" y="789" width="0.0330%" height="15" fill="rgb(240,111,43)" fg:x="150515" fg:w="171"/><text x="29.3307%" y="799.50"></text></g><g><title>Py_BytesMain (171 samples, 0.03%)</title><rect x="29.0807%" y="773" width="0.0330%" height="15" fill="rgb(215,214,35)" fg:x="150515" fg:w="171"/><text x="29.3307%" y="783.50"></text></g><g><title>[python3.9] (84 samples, 0.02%)</title><rect x="29.0975%" y="757" width="0.0162%" height="15" fill="rgb(248,207,23)" fg:x="150602" fg:w="84"/><text x="29.3475%" y="767.50"></text></g><g><title>[python3.9] (84 samples, 0.02%)</title><rect x="29.0975%" y="741" width="0.0162%" height="15" fill="rgb(214,186,4)" fg:x="150602" fg:w="84"/><text x="29.3475%" y="751.50"></text></g><g><title>_start (178 samples, 0.03%)</title><rect x="29.0807%" y="805" width="0.0344%" height="15" fill="rgb(220,133,22)" fg:x="150515" fg:w="178"/><text x="29.3307%" y="815.50"></text></g><g><title>python3 (595 samples, 0.11%)</title><rect x="29.0023%" y="821" width="0.1150%" height="15" fill="rgb(239,134,19)" fg:x="150109" fg:w="595"/><text x="29.2523%" y="831.50"></text></g><g><title>[sed] (68 samples, 0.01%)</title><rect x="29.1354%" y="741" width="0.0131%" height="15" fill="rgb(250,140,9)" fg:x="150798" fg:w="68"/><text x="29.3854%" y="751.50"></text></g><g><title>[sed] (73 samples, 0.01%)</title><rect x="29.1352%" y="757" width="0.0141%" height="15" fill="rgb(225,59,14)" fg:x="150797" fg:w="73"/><text x="29.3852%" y="767.50"></text></g><g><title>[sed] (95 samples, 0.02%)</title><rect x="29.1352%" y="773" width="0.0184%" height="15" fill="rgb(214,152,51)" fg:x="150797" fg:w="95"/><text x="29.3852%" y="783.50"></text></g><g><title>__libc_start_main (115 samples, 0.02%)</title><rect x="29.1352%" y="789" width="0.0222%" height="15" fill="rgb(251,227,43)" fg:x="150797" fg:w="115"/><text x="29.3852%" y="799.50"></text></g><g><title>[sed] (131 samples, 0.03%)</title><rect x="29.1348%" y="805" width="0.0253%" height="15" fill="rgb(241,96,17)" fg:x="150795" fg:w="131"/><text x="29.3848%" y="815.50"></text></g><g><title>_IO_getdelim (52 samples, 0.01%)</title><rect x="29.1800%" y="709" width="0.0100%" height="15" fill="rgb(234,198,43)" fg:x="151029" fg:w="52"/><text x="29.4300%" y="719.50"></text></g><g><title>determine_info (199 samples, 0.04%)</title><rect x="29.2051%" y="629" width="0.0384%" height="15" fill="rgb(220,108,29)" fg:x="151159" fg:w="199"/><text x="29.4551%" y="639.50"></text></g><g><title>__GI__dl_addr (217 samples, 0.04%)</title><rect x="29.2018%" y="645" width="0.0419%" height="15" fill="rgb(226,163,33)" fg:x="151142" fg:w="217"/><text x="29.4518%" y="655.50"></text></g><g><title>__fopen_internal (257 samples, 0.05%)</title><rect x="29.1949%" y="709" width="0.0497%" height="15" fill="rgb(205,194,45)" fg:x="151106" fg:w="257"/><text x="29.4449%" y="719.50"></text></g><g><title>malloc_hook_ini (223 samples, 0.04%)</title><rect x="29.2015%" y="693" width="0.0431%" height="15" fill="rgb(206,143,44)" fg:x="151140" fg:w="223"/><text x="29.4515%" y="703.50"></text></g><g><title>ptmalloc_init (223 samples, 0.04%)</title><rect x="29.2015%" y="677" width="0.0431%" height="15" fill="rgb(236,136,36)" fg:x="151140" fg:w="223"/><text x="29.4515%" y="687.50"></text></g><g><title>ptmalloc_init (223 samples, 0.04%)</title><rect x="29.2015%" y="661" width="0.0431%" height="15" fill="rgb(249,172,42)" fg:x="151140" fg:w="223"/><text x="29.4515%" y="671.50"></text></g><g><title>selinuxfs_exists (342 samples, 0.07%)</title><rect x="29.1800%" y="725" width="0.0661%" height="15" fill="rgb(216,139,23)" fg:x="151029" fg:w="342"/><text x="29.4300%" y="735.50"></text></g><g><title>[libselinux.so.1] (412 samples, 0.08%)</title><rect x="29.1667%" y="741" width="0.0796%" height="15" fill="rgb(207,166,20)" fg:x="150960" fg:w="412"/><text x="29.4167%" y="751.50"></text></g><g><title>_dl_start_user (450 samples, 0.09%)</title><rect x="29.1665%" y="805" width="0.0869%" height="15" fill="rgb(210,209,22)" fg:x="150959" fg:w="450"/><text x="29.4165%" y="815.50"></text></g><g><title>_dl_init (450 samples, 0.09%)</title><rect x="29.1665%" y="789" width="0.0869%" height="15" fill="rgb(232,118,20)" fg:x="150959" fg:w="450"/><text x="29.4165%" y="799.50"></text></g><g><title>call_init (449 samples, 0.09%)</title><rect x="29.1667%" y="773" width="0.0868%" height="15" fill="rgb(238,113,42)" fg:x="150960" fg:w="449"/><text x="29.4167%" y="783.50"></text></g><g><title>call_init (449 samples, 0.09%)</title><rect x="29.1667%" y="757" width="0.0868%" height="15" fill="rgb(231,42,5)" fg:x="150960" fg:w="449"/><text x="29.4167%" y="767.50"></text></g><g><title>_dl_sysdep_read_whole_file (76 samples, 0.01%)</title><rect x="29.2971%" y="645" width="0.0147%" height="15" fill="rgb(243,166,24)" fg:x="151635" fg:w="76"/><text x="29.5471%" y="655.50"></text></g><g><title>_dl_load_cache_lookup (179 samples, 0.03%)</title><rect x="29.2838%" y="661" width="0.0346%" height="15" fill="rgb(237,226,12)" fg:x="151566" fg:w="179"/><text x="29.5338%" y="671.50"></text></g><g><title>handle_mm_fault (53 samples, 0.01%)</title><rect x="29.3284%" y="565" width="0.0102%" height="15" fill="rgb(229,133,24)" fg:x="151797" fg:w="53"/><text x="29.5784%" y="575.50"></text></g><g><title>asm_exc_page_fault (58 samples, 0.01%)</title><rect x="29.3276%" y="613" width="0.0112%" height="15" fill="rgb(238,33,43)" fg:x="151793" fg:w="58"/><text x="29.5776%" y="623.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="29.3276%" y="597" width="0.0112%" height="15" fill="rgb(227,59,38)" fg:x="151793" fg:w="58"/><text x="29.5776%" y="607.50"></text></g><g><title>do_user_addr_fault (58 samples, 0.01%)</title><rect x="29.3276%" y="581" width="0.0112%" height="15" fill="rgb(230,97,0)" fg:x="151793" fg:w="58"/><text x="29.5776%" y="591.50"></text></g><g><title>[ld-2.31.so] (79 samples, 0.02%)</title><rect x="29.3253%" y="629" width="0.0153%" height="15" fill="rgb(250,173,50)" fg:x="151781" fg:w="79"/><text x="29.5753%" y="639.50"></text></g><g><title>__vma_adjust (90 samples, 0.02%)</title><rect x="29.3523%" y="469" width="0.0174%" height="15" fill="rgb(240,15,50)" fg:x="151921" fg:w="90"/><text x="29.6023%" y="479.50"></text></g><g><title>__split_vma (140 samples, 0.03%)</title><rect x="29.3520%" y="485" width="0.0270%" height="15" fill="rgb(221,93,22)" fg:x="151919" fg:w="140"/><text x="29.6020%" y="495.50"></text></g><g><title>__do_munmap (225 samples, 0.04%)</title><rect x="29.3498%" y="501" width="0.0435%" height="15" fill="rgb(245,180,53)" fg:x="151908" fg:w="225"/><text x="29.5998%" y="511.50"></text></g><g><title>perf_event_mmap (88 samples, 0.02%)</title><rect x="29.3935%" y="501" width="0.0170%" height="15" fill="rgb(231,88,51)" fg:x="152134" fg:w="88"/><text x="29.6435%" y="511.50"></text></g><g><title>mmap_region (418 samples, 0.08%)</title><rect x="29.3462%" y="517" width="0.0808%" height="15" fill="rgb(240,58,21)" fg:x="151889" fg:w="418"/><text x="29.5962%" y="527.50"></text></g><g><title>do_mmap (432 samples, 0.08%)</title><rect x="29.3440%" y="533" width="0.0835%" height="15" fill="rgb(237,21,10)" fg:x="151878" fg:w="432"/><text x="29.5940%" y="543.50"></text></g><g><title>ksys_mmap_pgoff (448 samples, 0.09%)</title><rect x="29.3423%" y="565" width="0.0866%" height="15" fill="rgb(218,43,11)" fg:x="151869" fg:w="448"/><text x="29.5923%" y="575.50"></text></g><g><title>vm_mmap_pgoff (442 samples, 0.09%)</title><rect x="29.3435%" y="549" width="0.0854%" height="15" fill="rgb(218,221,29)" fg:x="151875" fg:w="442"/><text x="29.5935%" y="559.50"></text></g><g><title>do_syscall_64 (503 samples, 0.10%)</title><rect x="29.3421%" y="581" width="0.0972%" height="15" fill="rgb(214,118,42)" fg:x="151868" fg:w="503"/><text x="29.5921%" y="591.50"></text></g><g><title>vm_mmap_pgoff (54 samples, 0.01%)</title><rect x="29.4289%" y="565" width="0.0104%" height="15" fill="rgb(251,200,26)" fg:x="152317" fg:w="54"/><text x="29.6789%" y="575.50"></text></g><g><title>do_mmap (54 samples, 0.01%)</title><rect x="29.4289%" y="549" width="0.0104%" height="15" fill="rgb(237,101,39)" fg:x="152317" fg:w="54"/><text x="29.6789%" y="559.50"></text></g><g><title>mmap_region (54 samples, 0.01%)</title><rect x="29.4289%" y="533" width="0.0104%" height="15" fill="rgb(251,117,11)" fg:x="152317" fg:w="54"/><text x="29.6789%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (505 samples, 0.10%)</title><rect x="29.3419%" y="597" width="0.0976%" height="15" fill="rgb(216,223,23)" fg:x="151867" fg:w="505"/><text x="29.5919%" y="607.50"></text></g><g><title>_dl_map_segments (600 samples, 0.12%)</title><rect x="29.3243%" y="645" width="0.1159%" height="15" fill="rgb(251,54,12)" fg:x="151776" fg:w="600"/><text x="29.5743%" y="655.50"></text></g><g><title>__mmap64 (516 samples, 0.10%)</title><rect x="29.3406%" y="629" width="0.0997%" height="15" fill="rgb(254,176,54)" fg:x="151860" fg:w="516"/><text x="29.5906%" y="639.50"></text></g><g><title>__mmap64 (516 samples, 0.10%)</title><rect x="29.3406%" y="613" width="0.0997%" height="15" fill="rgb(210,32,8)" fg:x="151860" fg:w="516"/><text x="29.5906%" y="623.50"></text></g><g><title>_dl_new_object (55 samples, 0.01%)</title><rect x="29.4403%" y="645" width="0.0106%" height="15" fill="rgb(235,52,38)" fg:x="152376" fg:w="55"/><text x="29.6903%" y="655.50"></text></g><g><title>handle_mm_fault (76 samples, 0.01%)</title><rect x="29.4638%" y="581" width="0.0147%" height="15" fill="rgb(231,4,44)" fg:x="152498" fg:w="76"/><text x="29.7138%" y="591.50"></text></g><g><title>exc_page_fault (85 samples, 0.02%)</title><rect x="29.4627%" y="613" width="0.0164%" height="15" fill="rgb(249,2,32)" fg:x="152492" fg:w="85"/><text x="29.7127%" y="623.50"></text></g><g><title>do_user_addr_fault (85 samples, 0.02%)</title><rect x="29.4627%" y="597" width="0.0164%" height="15" fill="rgb(224,65,26)" fg:x="152492" fg:w="85"/><text x="29.7127%" y="607.50"></text></g><g><title>asm_exc_page_fault (86 samples, 0.02%)</title><rect x="29.4627%" y="629" width="0.0166%" height="15" fill="rgb(250,73,40)" fg:x="152492" fg:w="86"/><text x="29.7127%" y="639.50"></text></g><g><title>_dl_map_object_from_fd (844 samples, 0.16%)</title><rect x="29.3183%" y="661" width="0.1631%" height="15" fill="rgb(253,177,16)" fg:x="151745" fg:w="844"/><text x="29.5683%" y="671.50"></text></g><g><title>elf_get_dynamic_info (117 samples, 0.02%)</title><rect x="29.4588%" y="645" width="0.0226%" height="15" fill="rgb(217,32,34)" fg:x="152472" fg:w="117"/><text x="29.7088%" y="655.50"></text></g><g><title>do_filp_open (79 samples, 0.02%)</title><rect x="29.4874%" y="565" width="0.0153%" height="15" fill="rgb(212,7,10)" fg:x="152620" fg:w="79"/><text x="29.7374%" y="575.50"></text></g><g><title>path_openat (78 samples, 0.02%)</title><rect x="29.4876%" y="549" width="0.0151%" height="15" fill="rgb(245,89,8)" fg:x="152621" fg:w="78"/><text x="29.7376%" y="559.50"></text></g><g><title>do_syscall_64 (102 samples, 0.02%)</title><rect x="29.4864%" y="613" width="0.0197%" height="15" fill="rgb(237,16,53)" fg:x="152615" fg:w="102"/><text x="29.7364%" y="623.50"></text></g><g><title>__x64_sys_openat (102 samples, 0.02%)</title><rect x="29.4864%" y="597" width="0.0197%" height="15" fill="rgb(250,204,30)" fg:x="152615" fg:w="102"/><text x="29.7364%" y="607.50"></text></g><g><title>do_sys_openat2 (101 samples, 0.02%)</title><rect x="29.4866%" y="581" width="0.0195%" height="15" fill="rgb(208,77,27)" fg:x="152616" fg:w="101"/><text x="29.7366%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (103 samples, 0.02%)</title><rect x="29.4864%" y="629" width="0.0199%" height="15" fill="rgb(250,204,28)" fg:x="152615" fg:w="103"/><text x="29.7364%" y="639.50"></text></g><g><title>__GI___open64_nocancel (104 samples, 0.02%)</title><rect x="29.4864%" y="645" width="0.0201%" height="15" fill="rgb(244,63,21)" fg:x="152615" fg:w="104"/><text x="29.7364%" y="655.50"></text></g><g><title>open_verify (151 samples, 0.03%)</title><rect x="29.4843%" y="661" width="0.0292%" height="15" fill="rgb(236,85,44)" fg:x="152604" fg:w="151"/><text x="29.7343%" y="671.50"></text></g><g><title>_dl_catch_exception (1,220 samples, 0.24%)</title><rect x="29.2814%" y="709" width="0.2357%" height="15" fill="rgb(215,98,4)" fg:x="151554" fg:w="1220"/><text x="29.5314%" y="719.50"></text></g><g><title>openaux (1,218 samples, 0.24%)</title><rect x="29.2818%" y="693" width="0.2353%" height="15" fill="rgb(235,38,11)" fg:x="151556" fg:w="1218"/><text x="29.5318%" y="703.50"></text></g><g><title>_dl_map_object (1,218 samples, 0.24%)</title><rect x="29.2818%" y="677" width="0.2353%" height="15" fill="rgb(254,186,25)" fg:x="151556" fg:w="1218"/><text x="29.5318%" y="687.50"></text></g><g><title>_dl_map_object_deps (1,260 samples, 0.24%)</title><rect x="29.2782%" y="725" width="0.2434%" height="15" fill="rgb(225,55,31)" fg:x="151537" fg:w="1260"/><text x="29.5282%" y="735.50"></text></g><g><title>_dl_receive_error (59 samples, 0.01%)</title><rect x="29.5226%" y="725" width="0.0114%" height="15" fill="rgb(211,15,21)" fg:x="152802" fg:w="59"/><text x="29.7726%" y="735.50"></text></g><g><title>version_check_doit (59 samples, 0.01%)</title><rect x="29.5226%" y="709" width="0.0114%" height="15" fill="rgb(215,187,41)" fg:x="152802" fg:w="59"/><text x="29.7726%" y="719.50"></text></g><g><title>_dl_check_all_versions (59 samples, 0.01%)</title><rect x="29.5226%" y="693" width="0.0114%" height="15" fill="rgb(248,69,32)" fg:x="152802" fg:w="59"/><text x="29.7726%" y="703.50"></text></g><g><title>_dl_check_map_versions (59 samples, 0.01%)</title><rect x="29.5226%" y="677" width="0.0114%" height="15" fill="rgb(252,102,52)" fg:x="152802" fg:w="59"/><text x="29.7726%" y="687.50"></text></g><g><title>__split_vma (102 samples, 0.02%)</title><rect x="29.5388%" y="597" width="0.0197%" height="15" fill="rgb(253,140,32)" fg:x="152886" fg:w="102"/><text x="29.7888%" y="607.50"></text></g><g><title>mprotect_fixup (171 samples, 0.03%)</title><rect x="29.5388%" y="613" width="0.0330%" height="15" fill="rgb(216,56,42)" fg:x="152886" fg:w="171"/><text x="29.7888%" y="623.50"></text></g><g><title>__x64_sys_mprotect (192 samples, 0.04%)</title><rect x="29.5359%" y="645" width="0.0371%" height="15" fill="rgb(216,184,14)" fg:x="152871" fg:w="192"/><text x="29.7859%" y="655.50"></text></g><g><title>do_mprotect_pkey (192 samples, 0.04%)</title><rect x="29.5359%" y="629" width="0.0371%" height="15" fill="rgb(237,187,27)" fg:x="152871" fg:w="192"/><text x="29.7859%" y="639.50"></text></g><g><title>do_syscall_64 (194 samples, 0.04%)</title><rect x="29.5357%" y="661" width="0.0375%" height="15" fill="rgb(219,65,3)" fg:x="152870" fg:w="194"/><text x="29.7857%" y="671.50"></text></g><g><title>_dl_protect_relro (200 samples, 0.04%)</title><rect x="29.5347%" y="709" width="0.0386%" height="15" fill="rgb(245,83,25)" fg:x="152865" fg:w="200"/><text x="29.7847%" y="719.50"></text></g><g><title>__mprotect (199 samples, 0.04%)</title><rect x="29.5349%" y="693" width="0.0384%" height="15" fill="rgb(214,205,45)" fg:x="152866" fg:w="199"/><text x="29.7849%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (195 samples, 0.04%)</title><rect x="29.5357%" y="677" width="0.0377%" height="15" fill="rgb(241,20,18)" fg:x="152870" fg:w="195"/><text x="29.7857%" y="687.50"></text></g><g><title>dl_new_hash (68 samples, 0.01%)</title><rect x="29.6082%" y="661" width="0.0131%" height="15" fill="rgb(232,163,23)" fg:x="153245" fg:w="68"/><text x="29.8582%" y="671.50"></text></g><g><title>check_match (114 samples, 0.02%)</title><rect x="29.6686%" y="645" width="0.0220%" height="15" fill="rgb(214,5,46)" fg:x="153558" fg:w="114"/><text x="29.9186%" y="655.50"></text></g><g><title>strcmp (82 samples, 0.02%)</title><rect x="29.6748%" y="629" width="0.0158%" height="15" fill="rgb(229,78,17)" fg:x="153590" fg:w="82"/><text x="29.9248%" y="639.50"></text></g><g><title>_dl_lookup_symbol_x (473 samples, 0.09%)</title><rect x="29.6006%" y="677" width="0.0914%" height="15" fill="rgb(248,89,10)" fg:x="153206" fg:w="473"/><text x="29.8506%" y="687.50"></text></g><g><title>do_lookup_x (366 samples, 0.07%)</title><rect x="29.6213%" y="661" width="0.0707%" height="15" fill="rgb(248,54,15)" fg:x="153313" fg:w="366"/><text x="29.8713%" y="671.50"></text></g><g><title>elf_machine_rela (549 samples, 0.11%)</title><rect x="29.5881%" y="693" width="0.1061%" height="15" fill="rgb(223,116,6)" fg:x="153141" fg:w="549"/><text x="29.8381%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (712 samples, 0.14%)</title><rect x="29.5734%" y="709" width="0.1376%" height="15" fill="rgb(205,125,38)" fg:x="153065" fg:w="712"/><text x="29.8234%" y="719.50"></text></g><g><title>elf_machine_rela_relative (87 samples, 0.02%)</title><rect x="29.6941%" y="693" width="0.0168%" height="15" fill="rgb(251,78,38)" fg:x="153690" fg:w="87"/><text x="29.9441%" y="703.50"></text></g><g><title>_dl_relocate_object (941 samples, 0.18%)</title><rect x="29.5340%" y="725" width="0.1818%" height="15" fill="rgb(253,78,28)" fg:x="152861" fg:w="941"/><text x="29.7840%" y="735.50"></text></g><g><title>[ld-2.31.so] (2,495 samples, 0.48%)</title><rect x="29.2613%" y="741" width="0.4821%" height="15" fill="rgb(209,120,3)" fg:x="151450" fg:w="2495"/><text x="29.5113%" y="751.50"></text></g><g><title>_dl_start_final (2,615 samples, 0.51%)</title><rect x="29.2606%" y="773" width="0.5052%" height="15" fill="rgb(238,229,9)" fg:x="151446" fg:w="2615"/><text x="29.5106%" y="783.50"></text></g><g><title>_dl_sysdep_start (2,615 samples, 0.51%)</title><rect x="29.2606%" y="757" width="0.5052%" height="15" fill="rgb(253,159,18)" fg:x="151446" fg:w="2615"/><text x="29.5106%" y="767.50"></text></g><g><title>_dl_start (2,646 samples, 0.51%)</title><rect x="29.2604%" y="789" width="0.5112%" height="15" fill="rgb(244,42,34)" fg:x="151445" fg:w="2646"/><text x="29.5104%" y="799.50"></text></g><g><title>_start (2,653 samples, 0.51%)</title><rect x="29.2602%" y="805" width="0.5126%" height="15" fill="rgb(224,8,7)" fg:x="151444" fg:w="2653"/><text x="29.5102%" y="815.50"></text></g><g><title>asm_exc_page_fault (171 samples, 0.03%)</title><rect x="29.7728%" y="805" width="0.0330%" height="15" fill="rgb(210,201,45)" fg:x="154097" fg:w="171"/><text x="30.0228%" y="815.50"></text></g><g><title>__x64_sys_execve (89 samples, 0.02%)</title><rect x="29.8068%" y="773" width="0.0172%" height="15" fill="rgb(252,185,21)" fg:x="154273" fg:w="89"/><text x="30.0568%" y="783.50"></text></g><g><title>do_execveat_common (89 samples, 0.02%)</title><rect x="29.8068%" y="757" width="0.0172%" height="15" fill="rgb(223,131,1)" fg:x="154273" fg:w="89"/><text x="30.0568%" y="767.50"></text></g><g><title>bprm_execve (89 samples, 0.02%)</title><rect x="29.8068%" y="741" width="0.0172%" height="15" fill="rgb(245,141,16)" fg:x="154273" fg:w="89"/><text x="30.0568%" y="751.50"></text></g><g><title>load_elf_binary (89 samples, 0.02%)</title><rect x="29.8068%" y="725" width="0.0172%" height="15" fill="rgb(229,55,45)" fg:x="154273" fg:w="89"/><text x="30.0568%" y="735.50"></text></g><g><title>unmap_page_range (56 samples, 0.01%)</title><rect x="29.8396%" y="677" width="0.0108%" height="15" fill="rgb(208,92,15)" fg:x="154443" fg:w="56"/><text x="30.0896%" y="687.50"></text></g><g><title>mmput (135 samples, 0.03%)</title><rect x="29.8245%" y="725" width="0.0261%" height="15" fill="rgb(234,185,47)" fg:x="154365" fg:w="135"/><text x="30.0745%" y="735.50"></text></g><g><title>exit_mmap (135 samples, 0.03%)</title><rect x="29.8245%" y="709" width="0.0261%" height="15" fill="rgb(253,104,50)" fg:x="154365" fg:w="135"/><text x="30.0745%" y="719.50"></text></g><g><title>unmap_vmas (57 samples, 0.01%)</title><rect x="29.8396%" y="693" width="0.0110%" height="15" fill="rgb(205,70,7)" fg:x="154443" fg:w="57"/><text x="30.0896%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (251 samples, 0.05%)</title><rect x="29.8060%" y="805" width="0.0485%" height="15" fill="rgb(240,178,43)" fg:x="154269" fg:w="251"/><text x="30.0560%" y="815.50"></text></g><g><title>do_syscall_64 (247 samples, 0.05%)</title><rect x="29.8068%" y="789" width="0.0477%" height="15" fill="rgb(214,112,2)" fg:x="154273" fg:w="247"/><text x="30.0568%" y="799.50"></text></g><g><title>__x64_sys_exit_group (158 samples, 0.03%)</title><rect x="29.8240%" y="773" width="0.0305%" height="15" fill="rgb(206,46,17)" fg:x="154362" fg:w="158"/><text x="30.0740%" y="783.50"></text></g><g><title>do_group_exit (158 samples, 0.03%)</title><rect x="29.8240%" y="757" width="0.0305%" height="15" fill="rgb(225,220,16)" fg:x="154362" fg:w="158"/><text x="30.0740%" y="767.50"></text></g><g><title>do_exit (158 samples, 0.03%)</title><rect x="29.8240%" y="741" width="0.0305%" height="15" fill="rgb(238,65,40)" fg:x="154362" fg:w="158"/><text x="30.0740%" y="751.50"></text></g><g><title>sed (3,824 samples, 0.74%)</title><rect x="29.1172%" y="821" width="0.7388%" height="15" fill="rgb(230,151,21)" fg:x="150704" fg:w="3824"/><text x="29.3672%" y="831.50"></text></g><g><title>JavaThread::is_Java_thread (90 samples, 0.02%)</title><rect x="29.9053%" y="789" width="0.0174%" height="15" fill="rgb(218,58,49)" fg:x="154783" fg:w="90"/><text x="30.1553%" y="799.50"></text></g><g><title>[anon] (885 samples, 0.17%)</title><rect x="29.8597%" y="805" width="0.1710%" height="15" fill="rgb(219,179,14)" fg:x="154547" fg:w="885"/><text x="30.1097%" y="815.50"></text></g><g><title>[libc-2.31.so] (83 samples, 0.02%)</title><rect x="30.2187%" y="789" width="0.0160%" height="15" fill="rgb(223,72,1)" fg:x="156405" fg:w="83"/><text x="30.4687%" y="799.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="30.2376%" y="757" width="0.0155%" height="15" fill="rgb(238,126,10)" fg:x="156503" fg:w="80"/><text x="30.4876%" y="767.50"></text></g><g><title>__x64_sys_close (75 samples, 0.01%)</title><rect x="30.2386%" y="741" width="0.0145%" height="15" fill="rgb(224,206,38)" fg:x="156508" fg:w="75"/><text x="30.4886%" y="751.50"></text></g><g><title>btrfs_release_file (80 samples, 0.02%)</title><rect x="30.2635%" y="693" width="0.0155%" height="15" fill="rgb(212,201,54)" fg:x="156637" fg:w="80"/><text x="30.5135%" y="703.50"></text></g><g><title>kfree (65 samples, 0.01%)</title><rect x="30.2664%" y="677" width="0.0126%" height="15" fill="rgb(218,154,48)" fg:x="156652" fg:w="65"/><text x="30.5164%" y="687.50"></text></g><g><title>__fput (175 samples, 0.03%)</title><rect x="30.2589%" y="709" width="0.0338%" height="15" fill="rgb(232,93,24)" fg:x="156613" fg:w="175"/><text x="30.5089%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (310 samples, 0.06%)</title><rect x="30.2376%" y="773" width="0.0599%" height="15" fill="rgb(245,30,21)" fg:x="156503" fg:w="310"/><text x="30.4876%" y="783.50"></text></g><g><title>syscall_exit_to_user_mode (230 samples, 0.04%)</title><rect x="30.2531%" y="757" width="0.0444%" height="15" fill="rgb(242,148,29)" fg:x="156583" fg:w="230"/><text x="30.5031%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (229 samples, 0.04%)</title><rect x="30.2533%" y="741" width="0.0442%" height="15" fill="rgb(244,153,54)" fg:x="156584" fg:w="229"/><text x="30.5033%" y="751.50"></text></g><g><title>task_work_run (210 samples, 0.04%)</title><rect x="30.2569%" y="725" width="0.0406%" height="15" fill="rgb(252,87,22)" fg:x="156603" fg:w="210"/><text x="30.5069%" y="735.50"></text></g><g><title>__GI___close_nocancel (328 samples, 0.06%)</title><rect x="30.2347%" y="789" width="0.0634%" height="15" fill="rgb(210,51,29)" fg:x="156488" fg:w="328"/><text x="30.4847%" y="799.50"></text></g><g><title>__GI___libc_free (193 samples, 0.04%)</title><rect x="30.2981%" y="789" width="0.0373%" height="15" fill="rgb(242,136,47)" fg:x="156816" fg:w="193"/><text x="30.5481%" y="799.50"></text></g><g><title>__d_lookup_rcu (55 samples, 0.01%)</title><rect x="30.3553%" y="629" width="0.0106%" height="15" fill="rgb(238,68,4)" fg:x="157112" fg:w="55"/><text x="30.6053%" y="639.50"></text></g><g><title>lookup_fast (58 samples, 0.01%)</title><rect x="30.3549%" y="645" width="0.0112%" height="15" fill="rgb(242,161,30)" fg:x="157110" fg:w="58"/><text x="30.6049%" y="655.50"></text></g><g><title>link_path_walk.part.0 (127 samples, 0.02%)</title><rect x="30.3441%" y="677" width="0.0245%" height="15" fill="rgb(218,58,44)" fg:x="157054" fg:w="127"/><text x="30.5941%" y="687.50"></text></g><g><title>walk_component (75 samples, 0.01%)</title><rect x="30.3541%" y="661" width="0.0145%" height="15" fill="rgb(252,125,32)" fg:x="157106" fg:w="75"/><text x="30.6041%" y="671.50"></text></g><g><title>filename_lookup (178 samples, 0.03%)</title><rect x="30.3418%" y="709" width="0.0344%" height="15" fill="rgb(219,178,0)" fg:x="157042" fg:w="178"/><text x="30.5918%" y="719.50"></text></g><g><title>path_lookupat (169 samples, 0.03%)</title><rect x="30.3435%" y="693" width="0.0327%" height="15" fill="rgb(213,152,7)" fg:x="157051" fg:w="169"/><text x="30.5935%" y="703.50"></text></g><g><title>__do_sys_newlstat (260 samples, 0.05%)</title><rect x="30.3367%" y="741" width="0.0502%" height="15" fill="rgb(249,109,34)" fg:x="157016" fg:w="260"/><text x="30.5867%" y="751.50"></text></g><g><title>vfs_statx (250 samples, 0.05%)</title><rect x="30.3387%" y="725" width="0.0483%" height="15" fill="rgb(232,96,21)" fg:x="157026" fg:w="250"/><text x="30.5887%" y="735.50"></text></g><g><title>do_syscall_64 (264 samples, 0.05%)</title><rect x="30.3364%" y="757" width="0.0510%" height="15" fill="rgb(228,27,39)" fg:x="157014" fg:w="264"/><text x="30.5864%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (269 samples, 0.05%)</title><rect x="30.3362%" y="773" width="0.0520%" height="15" fill="rgb(211,182,52)" fg:x="157013" fg:w="269"/><text x="30.5862%" y="783.50"></text></g><g><title>__GI___lxstat (274 samples, 0.05%)</title><rect x="30.3356%" y="789" width="0.0529%" height="15" fill="rgb(234,178,38)" fg:x="157010" fg:w="274"/><text x="30.5856%" y="799.50"></text></g><g><title>dput (73 samples, 0.01%)</title><rect x="30.3964%" y="725" width="0.0141%" height="15" fill="rgb(221,111,3)" fg:x="157325" fg:w="73"/><text x="30.6464%" y="735.50"></text></g><g><title>btrfs_free_path (57 samples, 0.01%)</title><rect x="30.4129%" y="661" width="0.0110%" height="15" fill="rgb(228,175,21)" fg:x="157410" fg:w="57"/><text x="30.6629%" y="671.50"></text></g><g><title>btrfs_release_path (56 samples, 0.01%)</title><rect x="30.4131%" y="645" width="0.0108%" height="15" fill="rgb(228,174,43)" fg:x="157411" fg:w="56"/><text x="30.6631%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (89 samples, 0.02%)</title><rect x="30.4563%" y="629" width="0.0172%" height="15" fill="rgb(211,191,0)" fg:x="157635" fg:w="89"/><text x="30.7063%" y="639.50"></text></g><g><title>__radix_tree_lookup (68 samples, 0.01%)</title><rect x="30.4855%" y="597" width="0.0131%" height="15" fill="rgb(253,117,3)" fg:x="157786" fg:w="68"/><text x="30.7355%" y="607.50"></text></g><g><title>find_extent_buffer (124 samples, 0.02%)</title><rect x="30.4803%" y="613" width="0.0240%" height="15" fill="rgb(241,127,19)" fg:x="157759" fg:w="124"/><text x="30.7303%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (171 samples, 0.03%)</title><rect x="30.4735%" y="629" width="0.0330%" height="15" fill="rgb(218,103,12)" fg:x="157724" fg:w="171"/><text x="30.7235%" y="639.50"></text></g><g><title>btrfs_search_slot (436 samples, 0.08%)</title><rect x="30.4247%" y="645" width="0.0842%" height="15" fill="rgb(236,214,43)" fg:x="157471" fg:w="436"/><text x="30.6747%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (455 samples, 0.09%)</title><rect x="30.4239%" y="661" width="0.0879%" height="15" fill="rgb(244,144,19)" fg:x="157467" fg:w="455"/><text x="30.6739%" y="671.50"></text></g><g><title>btrfs_lookup (554 samples, 0.11%)</title><rect x="30.4117%" y="693" width="0.1070%" height="15" fill="rgb(246,188,10)" fg:x="157404" fg:w="554"/><text x="30.6617%" y="703.50"></text></g><g><title>btrfs_lookup_dentry (554 samples, 0.11%)</title><rect x="30.4117%" y="677" width="0.1070%" height="15" fill="rgb(212,193,33)" fg:x="157404" fg:w="554"/><text x="30.6617%" y="687.50"></text></g><g><title>kmem_cache_alloc (102 samples, 0.02%)</title><rect x="30.5203%" y="661" width="0.0197%" height="15" fill="rgb(241,51,29)" fg:x="157966" fg:w="102"/><text x="30.7703%" y="671.50"></text></g><g><title>__d_alloc (112 samples, 0.02%)</title><rect x="30.5191%" y="677" width="0.0216%" height="15" fill="rgb(211,58,19)" fg:x="157960" fg:w="112"/><text x="30.7691%" y="687.50"></text></g><g><title>d_alloc (124 samples, 0.02%)</title><rect x="30.5187%" y="693" width="0.0240%" height="15" fill="rgb(229,111,26)" fg:x="157958" fg:w="124"/><text x="30.7687%" y="703.50"></text></g><g><title>__lookup_hash (753 samples, 0.15%)</title><rect x="30.4117%" y="709" width="0.1455%" height="15" fill="rgb(213,115,40)" fg:x="157404" fg:w="753"/><text x="30.6617%" y="719.50"></text></g><g><title>lookup_dcache (56 samples, 0.01%)</title><rect x="30.5464%" y="693" width="0.0108%" height="15" fill="rgb(209,56,44)" fg:x="158101" fg:w="56"/><text x="30.7964%" y="703.50"></text></g><g><title>d_lookup (56 samples, 0.01%)</title><rect x="30.5464%" y="677" width="0.0108%" height="15" fill="rgb(230,108,32)" fg:x="158101" fg:w="56"/><text x="30.7964%" y="687.50"></text></g><g><title>inode_permission.part.0 (103 samples, 0.02%)</title><rect x="30.5815%" y="661" width="0.0199%" height="15" fill="rgb(216,165,31)" fg:x="158283" fg:w="103"/><text x="30.8315%" y="671.50"></text></g><g><title>lookup_fast (212 samples, 0.04%)</title><rect x="30.6084%" y="645" width="0.0410%" height="15" fill="rgb(218,122,21)" fg:x="158422" fg:w="212"/><text x="30.8584%" y="655.50"></text></g><g><title>__d_lookup_rcu (172 samples, 0.03%)</title><rect x="30.6161%" y="629" width="0.0332%" height="15" fill="rgb(223,224,47)" fg:x="158462" fg:w="172"/><text x="30.8661%" y="639.50"></text></g><g><title>link_path_walk.part.0 (494 samples, 0.10%)</title><rect x="30.5636%" y="677" width="0.0954%" height="15" fill="rgb(238,102,44)" fg:x="158190" fg:w="494"/><text x="30.8136%" y="687.50"></text></g><g><title>walk_component (293 samples, 0.06%)</title><rect x="30.6024%" y="661" width="0.0566%" height="15" fill="rgb(236,46,40)" fg:x="158391" fg:w="293"/><text x="30.8524%" y="671.50"></text></g><g><title>filename_parentat (541 samples, 0.10%)</title><rect x="30.5578%" y="709" width="0.1045%" height="15" fill="rgb(247,202,50)" fg:x="158160" fg:w="541"/><text x="30.8078%" y="719.50"></text></g><g><title>path_parentat (534 samples, 0.10%)</title><rect x="30.5591%" y="693" width="0.1032%" height="15" fill="rgb(209,99,20)" fg:x="158167" fg:w="534"/><text x="30.8091%" y="703.50"></text></g><g><title>filename_create (1,325 samples, 0.26%)</title><rect x="30.4105%" y="725" width="0.2560%" height="15" fill="rgb(252,27,34)" fg:x="157398" fg:w="1325"/><text x="30.6605%" y="735.50"></text></g><g><title>kmem_cache_alloc (53 samples, 0.01%)</title><rect x="30.6681%" y="709" width="0.0102%" height="15" fill="rgb(215,206,23)" fg:x="158731" fg:w="53"/><text x="30.9181%" y="719.50"></text></g><g><title>getname_flags.part.0 (122 samples, 0.02%)</title><rect x="30.6665%" y="725" width="0.0236%" height="15" fill="rgb(212,135,36)" fg:x="158723" fg:w="122"/><text x="30.9165%" y="735.50"></text></g><g><title>strncpy_from_user (61 samples, 0.01%)</title><rect x="30.6783%" y="709" width="0.0118%" height="15" fill="rgb(240,189,1)" fg:x="158784" fg:w="61"/><text x="30.9283%" y="719.50"></text></g><g><title>__btrfs_end_transaction (63 samples, 0.01%)</title><rect x="30.7011%" y="693" width="0.0122%" height="15" fill="rgb(242,56,20)" fg:x="158902" fg:w="63"/><text x="30.9511%" y="703.50"></text></g><g><title>btrfs_insert_delayed_dir_index (135 samples, 0.03%)</title><rect x="30.7189%" y="661" width="0.0261%" height="15" fill="rgb(247,132,33)" fg:x="158994" fg:w="135"/><text x="30.9689%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (89 samples, 0.02%)</title><rect x="30.7869%" y="613" width="0.0172%" height="15" fill="rgb(208,149,11)" fg:x="159346" fg:w="89"/><text x="31.0369%" y="623.50"></text></g><g><title>find_extent_buffer (77 samples, 0.01%)</title><rect x="30.8105%" y="597" width="0.0149%" height="15" fill="rgb(211,33,11)" fg:x="159468" fg:w="77"/><text x="31.0605%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (123 samples, 0.02%)</title><rect x="30.8041%" y="613" width="0.0238%" height="15" fill="rgb(221,29,38)" fg:x="159435" fg:w="123"/><text x="31.0541%" y="623.50"></text></g><g><title>split_leaf (74 samples, 0.01%)</title><rect x="30.8279%" y="613" width="0.0143%" height="15" fill="rgb(206,182,49)" fg:x="159558" fg:w="74"/><text x="31.0779%" y="623.50"></text></g><g><title>btrfs_search_slot (444 samples, 0.09%)</title><rect x="30.7610%" y="629" width="0.0858%" height="15" fill="rgb(216,140,1)" fg:x="159212" fg:w="444"/><text x="31.0110%" y="639.50"></text></g><g><title>btrfs_get_token_32 (155 samples, 0.03%)</title><rect x="30.8603%" y="613" width="0.0299%" height="15" fill="rgb(232,57,40)" fg:x="159726" fg:w="155"/><text x="31.1103%" y="623.50"></text></g><g><title>btrfs_set_token_32 (135 samples, 0.03%)</title><rect x="30.8965%" y="613" width="0.0261%" height="15" fill="rgb(224,186,18)" fg:x="159913" fg:w="135"/><text x="31.1465%" y="623.50"></text></g><g><title>memcpy_extent_buffer (53 samples, 0.01%)</title><rect x="30.9233%" y="613" width="0.0102%" height="15" fill="rgb(215,121,11)" fg:x="160052" fg:w="53"/><text x="31.1733%" y="623.50"></text></g><g><title>insert_with_overflow (966 samples, 0.19%)</title><rect x="30.7589%" y="661" width="0.1866%" height="15" fill="rgb(245,147,10)" fg:x="159201" fg:w="966"/><text x="31.0089%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (959 samples, 0.19%)</title><rect x="30.7603%" y="645" width="0.1853%" height="15" fill="rgb(238,153,13)" fg:x="159208" fg:w="959"/><text x="31.0103%" y="655.50"></text></g><g><title>setup_items_for_insert (511 samples, 0.10%)</title><rect x="30.8468%" y="629" width="0.0987%" height="15" fill="rgb(233,108,0)" fg:x="159656" fg:w="511"/><text x="31.0968%" y="639.50"></text></g><g><title>btrfs_insert_dir_item (1,238 samples, 0.24%)</title><rect x="30.7168%" y="677" width="0.2392%" height="15" fill="rgb(212,157,17)" fg:x="158983" fg:w="1238"/><text x="30.9668%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (54 samples, 0.01%)</title><rect x="30.9573%" y="661" width="0.0104%" height="15" fill="rgb(225,213,38)" fg:x="160228" fg:w="54"/><text x="31.2073%" y="671.50"></text></g><g><title>btrfs_update_inode (71 samples, 0.01%)</title><rect x="30.9560%" y="677" width="0.0137%" height="15" fill="rgb(248,16,11)" fg:x="160221" fg:w="71"/><text x="31.2060%" y="687.50"></text></g><g><title>btrfs_add_link (1,329 samples, 0.26%)</title><rect x="30.7133%" y="693" width="0.2568%" height="15" fill="rgb(241,33,4)" fg:x="158965" fg:w="1329"/><text x="30.9633%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (60 samples, 0.01%)</title><rect x="31.0230%" y="645" width="0.0116%" height="15" fill="rgb(222,26,43)" fg:x="160568" fg:w="60"/><text x="31.2730%" y="655.50"></text></g><g><title>find_extent_buffer (94 samples, 0.02%)</title><rect x="31.0398%" y="629" width="0.0182%" height="15" fill="rgb(243,29,36)" fg:x="160655" fg:w="94"/><text x="31.2898%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (132 samples, 0.03%)</title><rect x="31.0346%" y="645" width="0.0255%" height="15" fill="rgb(241,9,27)" fg:x="160628" fg:w="132"/><text x="31.2846%" y="655.50"></text></g><g><title>__push_leaf_left (75 samples, 0.01%)</title><rect x="31.0760%" y="613" width="0.0145%" height="15" fill="rgb(205,117,26)" fg:x="160842" fg:w="75"/><text x="31.3260%" y="623.50"></text></g><g><title>split_leaf (167 samples, 0.03%)</title><rect x="31.0601%" y="645" width="0.0323%" height="15" fill="rgb(209,80,39)" fg:x="160760" fg:w="167"/><text x="31.3101%" y="655.50"></text></g><g><title>push_leaf_left (88 samples, 0.02%)</title><rect x="31.0754%" y="629" width="0.0170%" height="15" fill="rgb(239,155,6)" fg:x="160839" fg:w="88"/><text x="31.3254%" y="639.50"></text></g><g><title>btrfs_search_slot (521 samples, 0.10%)</title><rect x="31.0014%" y="661" width="0.1007%" height="15" fill="rgb(212,104,12)" fg:x="160456" fg:w="521"/><text x="31.2514%" y="671.50"></text></g><g><title>btrfs_get_token_32 (71 samples, 0.01%)</title><rect x="31.1117%" y="645" width="0.0137%" height="15" fill="rgb(234,204,3)" fg:x="161027" fg:w="71"/><text x="31.3617%" y="655.50"></text></g><g><title>btrfs_set_token_32 (76 samples, 0.01%)</title><rect x="31.1347%" y="645" width="0.0147%" height="15" fill="rgb(251,218,7)" fg:x="161146" fg:w="76"/><text x="31.3847%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (810 samples, 0.16%)</title><rect x="31.0012%" y="677" width="0.1565%" height="15" fill="rgb(221,81,32)" fg:x="160455" fg:w="810"/><text x="31.2512%" y="687.50"></text></g><g><title>setup_items_for_insert (288 samples, 0.06%)</title><rect x="31.1020%" y="661" width="0.0556%" height="15" fill="rgb(214,152,26)" fg:x="160977" fg:w="288"/><text x="31.3520%" y="671.50"></text></g><g><title>fill_inode_item (97 samples, 0.02%)</title><rect x="31.1681%" y="677" width="0.0187%" height="15" fill="rgb(223,22,3)" fg:x="161319" fg:w="97"/><text x="31.4181%" y="687.50"></text></g><g><title>inode_tree_add (117 samples, 0.02%)</title><rect x="31.1886%" y="677" width="0.0226%" height="15" fill="rgb(207,174,7)" fg:x="161425" fg:w="117"/><text x="31.4386%" y="687.50"></text></g><g><title>btrfs_alloc_inode (100 samples, 0.02%)</title><rect x="31.2350%" y="645" width="0.0193%" height="15" fill="rgb(224,19,52)" fg:x="161665" fg:w="100"/><text x="31.4850%" y="655.50"></text></g><g><title>kmem_cache_alloc (78 samples, 0.02%)</title><rect x="31.2392%" y="629" width="0.0151%" height="15" fill="rgb(228,24,14)" fg:x="161687" fg:w="78"/><text x="31.4892%" y="639.50"></text></g><g><title>alloc_inode (154 samples, 0.03%)</title><rect x="31.2332%" y="661" width="0.0298%" height="15" fill="rgb(230,153,43)" fg:x="161656" fg:w="154"/><text x="31.4832%" y="671.50"></text></g><g><title>new_inode (190 samples, 0.04%)</title><rect x="31.2278%" y="677" width="0.0367%" height="15" fill="rgb(231,106,12)" fg:x="161628" fg:w="190"/><text x="31.4778%" y="687.50"></text></g><g><title>btrfs_new_inode (1,448 samples, 0.28%)</title><rect x="30.9857%" y="693" width="0.2798%" height="15" fill="rgb(215,92,2)" fg:x="160375" fg:w="1448"/><text x="31.2357%" y="703.50"></text></g><g><title>btrfs_get_or_create_delayed_node (113 samples, 0.02%)</title><rect x="31.2790%" y="661" width="0.0218%" height="15" fill="rgb(249,143,25)" fg:x="161893" fg:w="113"/><text x="31.5290%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (189 samples, 0.04%)</title><rect x="31.2682%" y="677" width="0.0365%" height="15" fill="rgb(252,7,35)" fg:x="161837" fg:w="189"/><text x="31.5182%" y="687.50"></text></g><g><title>btrfs_update_inode (218 samples, 0.04%)</title><rect x="31.2655%" y="693" width="0.0421%" height="15" fill="rgb(216,69,40)" fg:x="161823" fg:w="218"/><text x="31.5155%" y="703.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (56 samples, 0.01%)</title><rect x="31.3236%" y="629" width="0.0108%" height="15" fill="rgb(240,36,33)" fg:x="162124" fg:w="56"/><text x="31.5736%" y="639.50"></text></g><g><title>btrfs_block_rsv_add (99 samples, 0.02%)</title><rect x="31.3206%" y="677" width="0.0191%" height="15" fill="rgb(231,128,14)" fg:x="162108" fg:w="99"/><text x="31.5706%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (98 samples, 0.02%)</title><rect x="31.3208%" y="661" width="0.0189%" height="15" fill="rgb(245,143,14)" fg:x="162109" fg:w="98"/><text x="31.5708%" y="671.50"></text></g><g><title>__reserve_bytes (97 samples, 0.02%)</title><rect x="31.3209%" y="645" width="0.0187%" height="15" fill="rgb(222,130,28)" fg:x="162110" fg:w="97"/><text x="31.5709%" y="655.50"></text></g><g><title>btrfs_mkdir (3,369 samples, 0.65%)</title><rect x="30.6996%" y="709" width="0.6509%" height="15" fill="rgb(212,10,48)" fg:x="158894" fg:w="3369"/><text x="30.9496%" y="719.50"></text></g><g><title>start_transaction (181 samples, 0.03%)</title><rect x="31.3155%" y="693" width="0.0350%" height="15" fill="rgb(254,118,45)" fg:x="162082" fg:w="181"/><text x="31.5655%" y="703.50"></text></g><g><title>do_mkdirat (4,961 samples, 0.96%)</title><rect x="30.3953%" y="741" width="0.9585%" height="15" fill="rgb(228,6,45)" fg:x="157319" fg:w="4961"/><text x="30.6453%" y="751.50"></text></g><g><title>vfs_mkdir (3,395 samples, 0.66%)</title><rect x="30.6978%" y="725" width="0.6559%" height="15" fill="rgb(241,18,35)" fg:x="158885" fg:w="3395"/><text x="30.9478%" y="735.50"></text></g><g><title>do_syscall_64 (4,965 samples, 0.96%)</title><rect x="30.3949%" y="757" width="0.9593%" height="15" fill="rgb(227,214,53)" fg:x="157317" fg:w="4965"/><text x="30.6449%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,967 samples, 0.96%)</title><rect x="30.3947%" y="773" width="0.9597%" height="15" fill="rgb(224,107,51)" fg:x="157316" fg:w="4967"/><text x="30.6447%" y="783.50"></text></g><g><title>__GI___mkdir (5,009 samples, 0.97%)</title><rect x="30.3885%" y="789" width="0.9678%" height="15" fill="rgb(248,60,28)" fg:x="157284" fg:w="5009"/><text x="30.6385%" y="799.50"></text></g><g><title>btrfs_filldir (385 samples, 0.07%)</title><rect x="31.4543%" y="677" width="0.0744%" height="15" fill="rgb(249,101,23)" fg:x="162800" fg:w="385"/><text x="31.7043%" y="687.50"></text></g><g><title>filldir64 (342 samples, 0.07%)</title><rect x="31.4626%" y="661" width="0.0661%" height="15" fill="rgb(228,51,19)" fg:x="162843" fg:w="342"/><text x="31.7126%" y="671.50"></text></g><g><title>verify_dirent_name (97 samples, 0.02%)</title><rect x="31.5099%" y="645" width="0.0187%" height="15" fill="rgb(213,20,6)" fg:x="163088" fg:w="97"/><text x="31.7599%" y="655.50"></text></g><g><title>memchr (68 samples, 0.01%)</title><rect x="31.5155%" y="629" width="0.0131%" height="15" fill="rgb(212,124,10)" fg:x="163117" fg:w="68"/><text x="31.7655%" y="639.50"></text></g><g><title>btrfs_get_16 (55 samples, 0.01%)</title><rect x="31.5290%" y="677" width="0.0106%" height="15" fill="rgb(248,3,40)" fg:x="163187" fg:w="55"/><text x="31.7790%" y="687.50"></text></g><g><title>btrfs_next_old_leaf (60 samples, 0.01%)</title><rect x="31.5520%" y="677" width="0.0116%" height="15" fill="rgb(223,178,23)" fg:x="163306" fg:w="60"/><text x="31.8020%" y="687.50"></text></g><g><title>btrfs_readdir_get_delayed_items (106 samples, 0.02%)</title><rect x="31.5638%" y="677" width="0.0205%" height="15" fill="rgb(240,132,45)" fg:x="163367" fg:w="106"/><text x="31.8138%" y="687.50"></text></g><g><title>btrfs_release_path (87 samples, 0.02%)</title><rect x="31.5864%" y="677" width="0.0168%" height="15" fill="rgb(245,164,36)" fg:x="163484" fg:w="87"/><text x="31.8364%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (189 samples, 0.04%)</title><rect x="31.6378%" y="661" width="0.0365%" height="15" fill="rgb(231,188,53)" fg:x="163750" fg:w="189"/><text x="31.8878%" y="671.50"></text></g><g><title>__radix_tree_lookup (109 samples, 0.02%)</title><rect x="31.6960%" y="629" width="0.0211%" height="15" fill="rgb(237,198,39)" fg:x="164051" fg:w="109"/><text x="31.9460%" y="639.50"></text></g><g><title>find_extent_buffer (203 samples, 0.04%)</title><rect x="31.6892%" y="645" width="0.0392%" height="15" fill="rgb(223,120,35)" fg:x="164016" fg:w="203"/><text x="31.9392%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (59 samples, 0.01%)</title><rect x="31.7170%" y="629" width="0.0114%" height="15" fill="rgb(253,107,49)" fg:x="164160" fg:w="59"/><text x="31.9670%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (310 samples, 0.06%)</title><rect x="31.6743%" y="661" width="0.0599%" height="15" fill="rgb(216,44,31)" fg:x="163939" fg:w="310"/><text x="31.9243%" y="671.50"></text></g><g><title>btrfs_search_slot (704 samples, 0.14%)</title><rect x="31.6032%" y="677" width="0.1360%" height="15" fill="rgb(253,87,21)" fg:x="163571" fg:w="704"/><text x="31.8532%" y="687.50"></text></g><g><title>filldir64 (62 samples, 0.01%)</title><rect x="31.7448%" y="677" width="0.0120%" height="15" fill="rgb(226,18,2)" fg:x="164304" fg:w="62"/><text x="31.9948%" y="687.50"></text></g><g><title>btrfs_real_readdir (2,191 samples, 0.42%)</title><rect x="31.4158%" y="693" width="0.4233%" height="15" fill="rgb(216,8,46)" fg:x="162601" fg:w="2191"/><text x="31.6658%" y="703.50"></text></g><g><title>read_extent_buffer (330 samples, 0.06%)</title><rect x="31.7754%" y="677" width="0.0638%" height="15" fill="rgb(226,140,39)" fg:x="164462" fg:w="330"/><text x="32.0254%" y="687.50"></text></g><g><title>btrfs_block_rsv_add (69 samples, 0.01%)</title><rect x="31.8789%" y="629" width="0.0133%" height="15" fill="rgb(221,194,54)" fg:x="164998" fg:w="69"/><text x="32.1289%" y="639.50"></text></g><g><title>btrfs_reserve_metadata_bytes (61 samples, 0.01%)</title><rect x="31.8805%" y="613" width="0.0118%" height="15" fill="rgb(213,92,11)" fg:x="165006" fg:w="61"/><text x="32.1305%" y="623.50"></text></g><g><title>__reserve_bytes (61 samples, 0.01%)</title><rect x="31.8805%" y="597" width="0.0118%" height="15" fill="rgb(229,162,46)" fg:x="165006" fg:w="61"/><text x="32.1305%" y="607.50"></text></g><g><title>btrfs_delayed_update_inode (136 samples, 0.03%)</title><rect x="31.8700%" y="645" width="0.0263%" height="15" fill="rgb(214,111,36)" fg:x="164952" fg:w="136"/><text x="32.1200%" y="655.50"></text></g><g><title>btrfs_update_inode (155 samples, 0.03%)</title><rect x="31.8691%" y="661" width="0.0299%" height="15" fill="rgb(207,6,21)" fg:x="164947" fg:w="155"/><text x="32.1191%" y="671.50"></text></g><g><title>btrfs_dirty_inode (236 samples, 0.05%)</title><rect x="31.8644%" y="677" width="0.0456%" height="15" fill="rgb(213,127,38)" fg:x="164923" fg:w="236"/><text x="32.1144%" y="687.50"></text></g><g><title>start_transaction (57 samples, 0.01%)</title><rect x="31.8990%" y="661" width="0.0110%" height="15" fill="rgb(238,118,32)" fg:x="165102" fg:w="57"/><text x="32.1490%" y="671.50"></text></g><g><title>touch_atime (294 samples, 0.06%)</title><rect x="31.8544%" y="693" width="0.0568%" height="15" fill="rgb(240,139,39)" fg:x="164871" fg:w="294"/><text x="32.1044%" y="703.50"></text></g><g><title>iterate_dir (2,598 samples, 0.50%)</title><rect x="31.4116%" y="709" width="0.5020%" height="15" fill="rgb(235,10,37)" fg:x="162579" fg:w="2598"/><text x="31.6616%" y="719.50"></text></g><g><title>__x64_sys_getdents64 (2,661 samples, 0.51%)</title><rect x="31.4000%" y="725" width="0.5141%" height="15" fill="rgb(249,171,38)" fg:x="162519" fg:w="2661"/><text x="31.6500%" y="735.50"></text></g><g><title>do_syscall_64 (2,672 samples, 0.52%)</title><rect x="31.3984%" y="741" width="0.5163%" height="15" fill="rgb(242,144,32)" fg:x="162511" fg:w="2672"/><text x="31.6484%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,682 samples, 0.52%)</title><rect x="31.3973%" y="757" width="0.5182%" height="15" fill="rgb(217,117,21)" fg:x="162505" fg:w="2682"/><text x="31.6473%" y="767.50"></text></g><g><title>__GI___getdents64 (2,725 samples, 0.53%)</title><rect x="31.3903%" y="773" width="0.5265%" height="15" fill="rgb(249,87,1)" fg:x="162469" fg:w="2725"/><text x="31.6403%" y="783.50"></text></g><g><title>__GI___readdir64 (2,902 samples, 0.56%)</title><rect x="31.3563%" y="789" width="0.5607%" height="15" fill="rgb(248,196,48)" fg:x="162293" fg:w="2902"/><text x="31.6063%" y="799.50"></text></g><g><title>link_path_walk.part.0 (66 samples, 0.01%)</title><rect x="31.9218%" y="677" width="0.0128%" height="15" fill="rgb(251,206,33)" fg:x="165220" fg:w="66"/><text x="32.1718%" y="687.50"></text></g><g><title>filename_lookup (80 samples, 0.02%)</title><rect x="31.9205%" y="709" width="0.0155%" height="15" fill="rgb(232,141,28)" fg:x="165213" fg:w="80"/><text x="32.1705%" y="719.50"></text></g><g><title>path_lookupat (78 samples, 0.02%)</title><rect x="31.9209%" y="693" width="0.0151%" height="15" fill="rgb(209,167,14)" fg:x="165215" fg:w="78"/><text x="32.1709%" y="703.50"></text></g><g><title>__do_sys_newstat (136 samples, 0.03%)</title><rect x="31.9174%" y="741" width="0.0263%" height="15" fill="rgb(225,11,50)" fg:x="165197" fg:w="136"/><text x="32.1674%" y="751.50"></text></g><g><title>vfs_statx (130 samples, 0.03%)</title><rect x="31.9185%" y="725" width="0.0251%" height="15" fill="rgb(209,50,20)" fg:x="165203" fg:w="130"/><text x="32.1685%" y="735.50"></text></g><g><title>do_syscall_64 (137 samples, 0.03%)</title><rect x="31.9174%" y="757" width="0.0265%" height="15" fill="rgb(212,17,46)" fg:x="165197" fg:w="137"/><text x="32.1674%" y="767.50"></text></g><g><title>__GI___xstat (144 samples, 0.03%)</title><rect x="31.9170%" y="789" width="0.0278%" height="15" fill="rgb(216,101,39)" fg:x="165195" fg:w="144"/><text x="32.1670%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (142 samples, 0.03%)</title><rect x="31.9174%" y="773" width="0.0274%" height="15" fill="rgb(212,228,48)" fg:x="165197" fg:w="142"/><text x="32.1674%" y="783.50"></text></g><g><title>__GI_remove (84 samples, 0.02%)</title><rect x="31.9448%" y="789" width="0.0162%" height="15" fill="rgb(250,6,50)" fg:x="165339" fg:w="84"/><text x="32.1948%" y="799.50"></text></g><g><title>__unlink (56 samples, 0.01%)</title><rect x="31.9502%" y="773" width="0.0108%" height="15" fill="rgb(250,160,48)" fg:x="165367" fg:w="56"/><text x="32.2002%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.01%)</title><rect x="31.9504%" y="757" width="0.0106%" height="15" fill="rgb(244,216,33)" fg:x="165368" fg:w="55"/><text x="32.2004%" y="767.50"></text></g><g><title>do_syscall_64 (55 samples, 0.01%)</title><rect x="31.9504%" y="741" width="0.0106%" height="15" fill="rgb(207,157,5)" fg:x="165368" fg:w="55"/><text x="32.2004%" y="751.50"></text></g><g><title>do_unlinkat (54 samples, 0.01%)</title><rect x="31.9506%" y="725" width="0.0104%" height="15" fill="rgb(228,199,8)" fg:x="165369" fg:w="54"/><text x="32.2006%" y="735.50"></text></g><g><title>crc32c_pcl_intel_update (144 samples, 0.03%)</title><rect x="31.9927%" y="773" width="0.0278%" height="15" fill="rgb(227,80,20)" fg:x="165587" fg:w="144"/><text x="32.2427%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (148 samples, 0.03%)</title><rect x="32.0205%" y="773" width="0.0286%" height="15" fill="rgb(222,9,33)" fg:x="165731" fg:w="148"/><text x="32.2705%" y="783.50"></text></g><g><title>getname_flags (64 samples, 0.01%)</title><rect x="32.0658%" y="725" width="0.0124%" height="15" fill="rgb(239,44,28)" fg:x="165965" fg:w="64"/><text x="32.3158%" y="735.50"></text></g><g><title>memset_erms (622 samples, 0.12%)</title><rect x="32.1133%" y="693" width="0.1202%" height="15" fill="rgb(249,187,43)" fg:x="166211" fg:w="622"/><text x="32.3633%" y="703.50"></text></g><g><title>kmem_cache_alloc (799 samples, 0.15%)</title><rect x="32.0876%" y="709" width="0.1544%" height="15" fill="rgb(216,141,28)" fg:x="166078" fg:w="799"/><text x="32.3376%" y="719.50"></text></g><g><title>__check_heap_object (68 samples, 0.01%)</title><rect x="32.2980%" y="677" width="0.0131%" height="15" fill="rgb(230,154,53)" fg:x="167167" fg:w="68"/><text x="32.5480%" y="687.50"></text></g><g><title>__virt_addr_valid (215 samples, 0.04%)</title><rect x="32.3111%" y="677" width="0.0415%" height="15" fill="rgb(227,82,4)" fg:x="167235" fg:w="215"/><text x="32.5611%" y="687.50"></text></g><g><title>__check_object_size (343 samples, 0.07%)</title><rect x="32.2878%" y="693" width="0.0663%" height="15" fill="rgb(220,107,16)" fg:x="167114" fg:w="343"/><text x="32.5378%" y="703.50"></text></g><g><title>__x64_sys_unlinkat (1,513 samples, 0.29%)</title><rect x="32.0621%" y="741" width="0.2923%" height="15" fill="rgb(207,187,2)" fg:x="165946" fg:w="1513"/><text x="32.3121%" y="751.50"></text></g><g><title>getname_flags.part.0 (1,430 samples, 0.28%)</title><rect x="32.0781%" y="725" width="0.2763%" height="15" fill="rgb(210,162,52)" fg:x="166029" fg:w="1430"/><text x="32.3281%" y="735.50"></text></g><g><title>strncpy_from_user (582 samples, 0.11%)</title><rect x="32.2420%" y="709" width="0.1124%" height="15" fill="rgb(217,216,49)" fg:x="166877" fg:w="582"/><text x="32.4920%" y="719.50"></text></g><g><title>dput (54 samples, 0.01%)</title><rect x="32.3623%" y="725" width="0.0104%" height="15" fill="rgb(218,146,49)" fg:x="167500" fg:w="54"/><text x="32.6123%" y="735.50"></text></g><g><title>filename_parentat (83 samples, 0.02%)</title><rect x="32.3728%" y="725" width="0.0160%" height="15" fill="rgb(216,55,40)" fg:x="167554" fg:w="83"/><text x="32.6228%" y="735.50"></text></g><g><title>path_parentat (81 samples, 0.02%)</title><rect x="32.3732%" y="709" width="0.0156%" height="15" fill="rgb(208,196,21)" fg:x="167556" fg:w="81"/><text x="32.6232%" y="719.50"></text></g><g><title>btrfs_lookup_dir_index_item (78 samples, 0.02%)</title><rect x="32.4352%" y="661" width="0.0151%" height="15" fill="rgb(242,117,42)" fg:x="167877" fg:w="78"/><text x="32.6852%" y="671.50"></text></g><g><title>btrfs_search_slot (77 samples, 0.01%)</title><rect x="32.4354%" y="645" width="0.0149%" height="15" fill="rgb(210,11,23)" fg:x="167878" fg:w="77"/><text x="32.6854%" y="655.50"></text></g><g><title>btrfs_search_slot (70 samples, 0.01%)</title><rect x="32.4514%" y="645" width="0.0135%" height="15" fill="rgb(217,110,2)" fg:x="167961" fg:w="70"/><text x="32.7014%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (78 samples, 0.02%)</title><rect x="32.4502%" y="661" width="0.0151%" height="15" fill="rgb(229,77,54)" fg:x="167955" fg:w="78"/><text x="32.7002%" y="671.50"></text></g><g><title>btrfs_del_dir_entries_in_log (253 samples, 0.05%)</title><rect x="32.4290%" y="677" width="0.0489%" height="15" fill="rgb(218,53,16)" fg:x="167845" fg:w="253"/><text x="32.6790%" y="687.50"></text></g><g><title>btrfs_search_slot (138 samples, 0.03%)</title><rect x="32.4856%" y="645" width="0.0267%" height="15" fill="rgb(215,38,13)" fg:x="168138" fg:w="138"/><text x="32.7356%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (234 samples, 0.05%)</title><rect x="32.4785%" y="661" width="0.0452%" height="15" fill="rgb(235,42,18)" fg:x="168101" fg:w="234"/><text x="32.7285%" y="671.50"></text></g><g><title>btrfs_del_inode_ref_in_log (257 samples, 0.05%)</title><rect x="32.4779%" y="677" width="0.0497%" height="15" fill="rgb(219,66,54)" fg:x="168098" fg:w="257"/><text x="32.7279%" y="687.50"></text></g><g><title>btrfs_get_token_32 (215 samples, 0.04%)</title><rect x="32.5494%" y="661" width="0.0415%" height="15" fill="rgb(222,205,4)" fg:x="168468" fg:w="215"/><text x="32.7994%" y="671.50"></text></g><g><title>btrfs_set_token_32 (167 samples, 0.03%)</title><rect x="32.5930%" y="661" width="0.0323%" height="15" fill="rgb(227,213,46)" fg:x="168694" fg:w="167"/><text x="32.8430%" y="671.50"></text></g><g><title>memmove_extent_buffer (114 samples, 0.02%)</title><rect x="32.6361%" y="661" width="0.0220%" height="15" fill="rgb(250,145,42)" fg:x="168917" fg:w="114"/><text x="32.8861%" y="671.50"></text></g><g><title>memmove (98 samples, 0.02%)</title><rect x="32.6392%" y="645" width="0.0189%" height="15" fill="rgb(219,15,2)" fg:x="168933" fg:w="98"/><text x="32.8892%" y="655.50"></text></g><g><title>__push_leaf_right (63 samples, 0.01%)</title><rect x="32.6614%" y="645" width="0.0122%" height="15" fill="rgb(231,181,52)" fg:x="169048" fg:w="63"/><text x="32.9114%" y="655.50"></text></g><g><title>push_leaf_right (67 samples, 0.01%)</title><rect x="32.6614%" y="661" width="0.0129%" height="15" fill="rgb(235,1,42)" fg:x="169048" fg:w="67"/><text x="32.9114%" y="671.50"></text></g><g><title>btrfs_del_items (762 samples, 0.15%)</title><rect x="32.5275%" y="677" width="0.1472%" height="15" fill="rgb(249,88,27)" fg:x="168355" fg:w="762"/><text x="32.7775%" y="687.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (54 samples, 0.01%)</title><rect x="32.6748%" y="677" width="0.0104%" height="15" fill="rgb(235,145,16)" fg:x="169117" fg:w="54"/><text x="32.9248%" y="687.50"></text></g><g><title>__btrfs_add_delayed_item (52 samples, 0.01%)</title><rect x="32.6863%" y="661" width="0.0100%" height="15" fill="rgb(237,114,19)" fg:x="169177" fg:w="52"/><text x="32.9363%" y="671.50"></text></g><g><title>btrfs_delete_delayed_dir_index (146 samples, 0.03%)</title><rect x="32.6852%" y="677" width="0.0282%" height="15" fill="rgb(238,51,50)" fg:x="169171" fg:w="146"/><text x="32.9352%" y="687.50"></text></g><g><title>btrfs_match_dir_item_name (53 samples, 0.01%)</title><rect x="32.7194%" y="661" width="0.0102%" height="15" fill="rgb(205,194,25)" fg:x="169348" fg:w="53"/><text x="32.9694%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (100 samples, 0.02%)</title><rect x="32.7480%" y="645" width="0.0193%" height="15" fill="rgb(215,203,17)" fg:x="169496" fg:w="100"/><text x="32.9980%" y="655.50"></text></g><g><title>__radix_tree_lookup (62 samples, 0.01%)</title><rect x="32.7783%" y="613" width="0.0120%" height="15" fill="rgb(233,112,49)" fg:x="169653" fg:w="62"/><text x="33.0283%" y="623.50"></text></g><g><title>find_extent_buffer (112 samples, 0.02%)</title><rect x="32.7743%" y="629" width="0.0216%" height="15" fill="rgb(241,130,26)" fg:x="169632" fg:w="112"/><text x="33.0243%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (158 samples, 0.03%)</title><rect x="32.7673%" y="645" width="0.0305%" height="15" fill="rgb(252,223,19)" fg:x="169596" fg:w="158"/><text x="33.0173%" y="655.50"></text></g><g><title>reada_for_balance (74 samples, 0.01%)</title><rect x="32.7978%" y="645" width="0.0143%" height="15" fill="rgb(211,95,25)" fg:x="169754" fg:w="74"/><text x="33.0478%" y="655.50"></text></g><g><title>btrfs_search_slot (448 samples, 0.09%)</title><rect x="32.7296%" y="661" width="0.0866%" height="15" fill="rgb(251,182,27)" fg:x="169401" fg:w="448"/><text x="32.9796%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (519 samples, 0.10%)</title><rect x="32.7184%" y="677" width="0.1003%" height="15" fill="rgb(238,24,4)" fg:x="169343" fg:w="519"/><text x="32.9684%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (56 samples, 0.01%)</title><rect x="32.8270%" y="661" width="0.0108%" height="15" fill="rgb(224,220,25)" fg:x="169905" fg:w="56"/><text x="33.0770%" y="671.50"></text></g><g><title>btrfs_update_inode (77 samples, 0.01%)</title><rect x="32.8258%" y="677" width="0.0149%" height="15" fill="rgb(239,133,26)" fg:x="169899" fg:w="77"/><text x="33.0758%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (2,189 samples, 0.42%)</title><rect x="32.4236%" y="693" width="0.4229%" height="15" fill="rgb(211,94,48)" fg:x="167817" fg:w="2189"/><text x="32.6736%" y="703.50"></text></g><g><title>__radix_tree_lookup (54 samples, 0.01%)</title><rect x="32.8937%" y="597" width="0.0104%" height="15" fill="rgb(239,87,6)" fg:x="170250" fg:w="54"/><text x="33.1437%" y="607.50"></text></g><g><title>find_extent_buffer (81 samples, 0.02%)</title><rect x="32.8921%" y="613" width="0.0156%" height="15" fill="rgb(227,62,0)" fg:x="170242" fg:w="81"/><text x="33.1421%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (140 samples, 0.03%)</title><rect x="32.8830%" y="629" width="0.0270%" height="15" fill="rgb(211,226,4)" fg:x="170195" fg:w="140"/><text x="33.1330%" y="639.50"></text></g><g><title>btrfs_search_slot (292 samples, 0.06%)</title><rect x="32.8585%" y="645" width="0.0564%" height="15" fill="rgb(253,38,52)" fg:x="170068" fg:w="292"/><text x="33.1085%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (392 samples, 0.08%)</title><rect x="32.8577%" y="661" width="0.0757%" height="15" fill="rgb(229,126,40)" fg:x="170064" fg:w="392"/><text x="33.1077%" y="671.50"></text></g><g><title>setup_items_for_insert (96 samples, 0.02%)</title><rect x="32.9149%" y="645" width="0.0185%" height="15" fill="rgb(229,165,44)" fg:x="170360" fg:w="96"/><text x="33.1649%" y="655.50"></text></g><g><title>btrfs_orphan_add (464 samples, 0.09%)</title><rect x="32.8483%" y="693" width="0.0896%" height="15" fill="rgb(247,95,47)" fg:x="170015" fg:w="464"/><text x="33.0983%" y="703.50"></text></g><g><title>btrfs_insert_orphan_item (463 samples, 0.09%)</title><rect x="32.8484%" y="677" width="0.0895%" height="15" fill="rgb(216,140,30)" fg:x="170016" fg:w="463"/><text x="33.0984%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (58 samples, 0.01%)</title><rect x="32.9398%" y="677" width="0.0112%" height="15" fill="rgb(246,214,8)" fg:x="170489" fg:w="58"/><text x="33.1898%" y="687.50"></text></g><g><title>btrfs_update_inode (82 samples, 0.02%)</title><rect x="32.9381%" y="693" width="0.0158%" height="15" fill="rgb(227,224,15)" fg:x="170480" fg:w="82"/><text x="33.1881%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (82 samples, 0.02%)</title><rect x="32.9605%" y="677" width="0.0158%" height="15" fill="rgb(233,175,4)" fg:x="170596" fg:w="82"/><text x="33.2105%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (74 samples, 0.01%)</title><rect x="32.9621%" y="661" width="0.0143%" height="15" fill="rgb(221,66,45)" fg:x="170604" fg:w="74"/><text x="33.2121%" y="671.50"></text></g><g><title>__reserve_bytes (73 samples, 0.01%)</title><rect x="32.9622%" y="645" width="0.0141%" height="15" fill="rgb(221,178,18)" fg:x="170605" fg:w="73"/><text x="33.2122%" y="655.50"></text></g><g><title>btrfs_rmdir (2,967 samples, 0.57%)</title><rect x="32.4108%" y="709" width="0.5732%" height="15" fill="rgb(213,81,29)" fg:x="167751" fg:w="2967"/><text x="32.6608%" y="719.50"></text></g><g><title>start_transaction (153 samples, 0.03%)</title><rect x="32.9545%" y="693" width="0.0296%" height="15" fill="rgb(220,89,49)" fg:x="170565" fg:w="153"/><text x="33.2045%" y="703.50"></text></g><g><title>btrfs_drop_extent_cache (68 samples, 0.01%)</title><rect x="33.0034%" y="677" width="0.0131%" height="15" fill="rgb(227,60,33)" fg:x="170818" fg:w="68"/><text x="33.2534%" y="687.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (53 samples, 0.01%)</title><rect x="33.0165%" y="677" width="0.0102%" height="15" fill="rgb(205,113,12)" fg:x="170886" fg:w="53"/><text x="33.2665%" y="687.50"></text></g><g><title>clear_extent_bit (52 samples, 0.01%)</title><rect x="33.0167%" y="661" width="0.0100%" height="15" fill="rgb(211,32,1)" fg:x="170887" fg:w="52"/><text x="33.2667%" y="671.50"></text></g><g><title>clear_record_extent_bits (53 samples, 0.01%)</title><rect x="33.0285%" y="661" width="0.0102%" height="15" fill="rgb(246,2,12)" fg:x="170948" fg:w="53"/><text x="33.2785%" y="671.50"></text></g><g><title>__clear_extent_bit (52 samples, 0.01%)</title><rect x="33.0287%" y="645" width="0.0100%" height="15" fill="rgb(243,37,27)" fg:x="170949" fg:w="52"/><text x="33.2787%" y="655.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (60 samples, 0.01%)</title><rect x="33.0275%" y="677" width="0.0116%" height="15" fill="rgb(248,211,31)" fg:x="170943" fg:w="60"/><text x="33.2775%" y="687.50"></text></g><g><title>btrfs_destroy_inode (254 samples, 0.05%)</title><rect x="33.0005%" y="693" width="0.0491%" height="15" fill="rgb(242,146,47)" fg:x="170803" fg:w="254"/><text x="33.2505%" y="703.50"></text></g><g><title>rb_erase (54 samples, 0.01%)</title><rect x="33.0391%" y="677" width="0.0104%" height="15" fill="rgb(206,70,20)" fg:x="171003" fg:w="54"/><text x="33.2891%" y="687.50"></text></g><g><title>destroy_inode (286 samples, 0.06%)</title><rect x="32.9953%" y="709" width="0.0553%" height="15" fill="rgb(215,10,51)" fg:x="170776" fg:w="286"/><text x="33.2453%" y="719.50"></text></g><g><title>__btrfs_end_transaction (77 samples, 0.01%)</title><rect x="33.0650%" y="677" width="0.0149%" height="15" fill="rgb(243,178,53)" fg:x="171137" fg:w="77"/><text x="33.3150%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (78 samples, 0.02%)</title><rect x="33.0799%" y="677" width="0.0151%" height="15" fill="rgb(233,221,20)" fg:x="171214" fg:w="78"/><text x="33.3299%" y="687.50"></text></g><g><title>btrfs_get_token_32 (296 samples, 0.06%)</title><rect x="33.1442%" y="629" width="0.0572%" height="15" fill="rgb(218,95,35)" fg:x="171547" fg:w="296"/><text x="33.3942%" y="639.50"></text></g><g><title>btrfs_set_token_32 (262 samples, 0.05%)</title><rect x="33.2024%" y="629" width="0.0506%" height="15" fill="rgb(229,13,5)" fg:x="171848" fg:w="262"/><text x="33.4524%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (52 samples, 0.01%)</title><rect x="33.2430%" y="613" width="0.0100%" height="15" fill="rgb(252,164,30)" fg:x="172058" fg:w="52"/><text x="33.4930%" y="623.50"></text></g><g><title>memmove_extent_buffer (146 samples, 0.03%)</title><rect x="33.2625%" y="629" width="0.0282%" height="15" fill="rgb(232,68,36)" fg:x="172159" fg:w="146"/><text x="33.5125%" y="639.50"></text></g><g><title>memmove (121 samples, 0.02%)</title><rect x="33.2673%" y="613" width="0.0234%" height="15" fill="rgb(219,59,54)" fg:x="172184" fg:w="121"/><text x="33.5173%" y="623.50"></text></g><g><title>btrfs_del_items (908 samples, 0.18%)</title><rect x="33.1201%" y="645" width="0.1754%" height="15" fill="rgb(250,92,33)" fg:x="171422" fg:w="908"/><text x="33.3701%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (63 samples, 0.01%)</title><rect x="33.3210%" y="613" width="0.0122%" height="15" fill="rgb(229,162,54)" fg:x="172462" fg:w="63"/><text x="33.5710%" y="623.50"></text></g><g><title>find_extent_buffer (89 samples, 0.02%)</title><rect x="33.3407%" y="597" width="0.0172%" height="15" fill="rgb(244,114,52)" fg:x="172564" fg:w="89"/><text x="33.5907%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (139 samples, 0.03%)</title><rect x="33.3332%" y="613" width="0.0269%" height="15" fill="rgb(212,211,43)" fg:x="172525" fg:w="139"/><text x="33.5832%" y="623.50"></text></g><g><title>reada_for_balance (79 samples, 0.02%)</title><rect x="33.3601%" y="613" width="0.0153%" height="15" fill="rgb(226,147,8)" fg:x="172664" fg:w="79"/><text x="33.6101%" y="623.50"></text></g><g><title>btrfs_lookup_inode (418 samples, 0.08%)</title><rect x="33.3000%" y="645" width="0.0808%" height="15" fill="rgb(226,23,13)" fg:x="172353" fg:w="418"/><text x="33.5500%" y="655.50"></text></g><g><title>btrfs_search_slot (415 samples, 0.08%)</title><rect x="33.3006%" y="629" width="0.0802%" height="15" fill="rgb(240,63,4)" fg:x="172356" fg:w="415"/><text x="33.5506%" y="639.50"></text></g><g><title>__btrfs_update_delayed_inode (1,458 samples, 0.28%)</title><rect x="33.1186%" y="661" width="0.2817%" height="15" fill="rgb(221,1,32)" fg:x="171414" fg:w="1458"/><text x="33.3686%" y="671.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,610 samples, 0.31%)</title><rect x="33.1056%" y="677" width="0.3111%" height="15" fill="rgb(242,117,10)" fg:x="171347" fg:w="1610"/><text x="33.3556%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (62 samples, 0.01%)</title><rect x="33.4495%" y="645" width="0.0120%" height="15" fill="rgb(249,172,44)" fg:x="173127" fg:w="62"/><text x="33.6995%" y="655.50"></text></g><g><title>find_extent_buffer (68 samples, 0.01%)</title><rect x="33.4665%" y="629" width="0.0131%" height="15" fill="rgb(244,46,45)" fg:x="173215" fg:w="68"/><text x="33.7165%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (106 samples, 0.02%)</title><rect x="33.4615%" y="645" width="0.0205%" height="15" fill="rgb(206,43,17)" fg:x="173189" fg:w="106"/><text x="33.7115%" y="655.50"></text></g><g><title>btrfs_search_slot (307 samples, 0.06%)</title><rect x="33.4304%" y="661" width="0.0593%" height="15" fill="rgb(239,218,39)" fg:x="173028" fg:w="307"/><text x="33.6804%" y="671.50"></text></g><g><title>btrfs_del_orphan_item (403 samples, 0.08%)</title><rect x="33.4167%" y="677" width="0.0779%" height="15" fill="rgb(208,169,54)" fg:x="172957" fg:w="403"/><text x="33.6667%" y="687.50"></text></g><g><title>__clear_extent_bit (90 samples, 0.02%)</title><rect x="33.5195%" y="661" width="0.0174%" height="15" fill="rgb(247,25,42)" fg:x="173489" fg:w="90"/><text x="33.7695%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (80 samples, 0.02%)</title><rect x="33.5616%" y="581" width="0.0155%" height="15" fill="rgb(226,23,31)" fg:x="173707" fg:w="80"/><text x="33.8116%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (99 samples, 0.02%)</title><rect x="33.5593%" y="597" width="0.0191%" height="15" fill="rgb(247,16,28)" fg:x="173695" fg:w="99"/><text x="33.8093%" y="607.50"></text></g><g><title>__btrfs_add_free_space (111 samples, 0.02%)</title><rect x="33.5579%" y="613" width="0.0214%" height="15" fill="rgb(231,147,38)" fg:x="173688" fg:w="111"/><text x="33.8079%" y="623.50"></text></g><g><title>btrfs_free_tree_block (157 samples, 0.03%)</title><rect x="33.5577%" y="629" width="0.0303%" height="15" fill="rgb(253,81,48)" fg:x="173687" fg:w="157"/><text x="33.8077%" y="639.50"></text></g><g><title>btrfs_del_leaf (163 samples, 0.03%)</title><rect x="33.5577%" y="645" width="0.0315%" height="15" fill="rgb(249,222,43)" fg:x="173687" fg:w="163"/><text x="33.8077%" y="655.50"></text></g><g><title>btrfs_get_token_32 (272 samples, 0.05%)</title><rect x="33.5969%" y="645" width="0.0526%" height="15" fill="rgb(221,3,27)" fg:x="173890" fg:w="272"/><text x="33.8469%" y="655.50"></text></g><g><title>btrfs_set_token_32 (267 samples, 0.05%)</title><rect x="33.6524%" y="645" width="0.0516%" height="15" fill="rgb(228,180,5)" fg:x="174177" fg:w="267"/><text x="33.9024%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (54 samples, 0.01%)</title><rect x="33.6935%" y="629" width="0.0104%" height="15" fill="rgb(227,131,42)" fg:x="174390" fg:w="54"/><text x="33.9435%" y="639.50"></text></g><g><title>memcpy_extent_buffer (55 samples, 0.01%)</title><rect x="33.7102%" y="645" width="0.0106%" height="15" fill="rgb(212,3,39)" fg:x="174476" fg:w="55"/><text x="33.9602%" y="655.50"></text></g><g><title>memmove_extent_buffer (133 samples, 0.03%)</title><rect x="33.7208%" y="645" width="0.0257%" height="15" fill="rgb(226,45,5)" fg:x="174531" fg:w="133"/><text x="33.9708%" y="655.50"></text></g><g><title>memmove (96 samples, 0.02%)</title><rect x="33.7279%" y="629" width="0.0185%" height="15" fill="rgb(215,167,45)" fg:x="174568" fg:w="96"/><text x="33.9779%" y="639.50"></text></g><g><title>__push_leaf_left (68 samples, 0.01%)</title><rect x="33.7474%" y="629" width="0.0131%" height="15" fill="rgb(250,218,53)" fg:x="174669" fg:w="68"/><text x="33.9974%" y="639.50"></text></g><g><title>push_leaf_left (93 samples, 0.02%)</title><rect x="33.7465%" y="645" width="0.0180%" height="15" fill="rgb(207,140,0)" fg:x="174664" fg:w="93"/><text x="33.9965%" y="655.50"></text></g><g><title>__push_leaf_right (52 samples, 0.01%)</title><rect x="33.7644%" y="629" width="0.0100%" height="15" fill="rgb(238,133,51)" fg:x="174757" fg:w="52"/><text x="34.0144%" y="639.50"></text></g><g><title>push_leaf_right (64 samples, 0.01%)</title><rect x="33.7644%" y="645" width="0.0124%" height="15" fill="rgb(218,203,53)" fg:x="174757" fg:w="64"/><text x="34.0144%" y="655.50"></text></g><g><title>btrfs_del_items (1,250 samples, 0.24%)</title><rect x="33.5370%" y="661" width="0.2415%" height="15" fill="rgb(226,184,25)" fg:x="173580" fg:w="1250"/><text x="33.7870%" y="671.50"></text></g><g><title>alloc_extent_map (52 samples, 0.01%)</title><rect x="33.7801%" y="645" width="0.0100%" height="15" fill="rgb(231,121,21)" fg:x="174838" fg:w="52"/><text x="34.0301%" y="655.50"></text></g><g><title>btrfs_drop_extent_cache (91 samples, 0.02%)</title><rect x="33.7785%" y="661" width="0.0176%" height="15" fill="rgb(251,14,34)" fg:x="174830" fg:w="91"/><text x="34.0285%" y="671.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="33.8174%" y="613" width="0.0133%" height="15" fill="rgb(249,193,11)" fg:x="175031" fg:w="69"/><text x="34.0674%" y="623.50"></text></g><g><title>btrfs_block_rsv_release (124 samples, 0.02%)</title><rect x="33.8102%" y="629" width="0.0240%" height="15" fill="rgb(220,172,37)" fg:x="174994" fg:w="124"/><text x="34.0602%" y="639.50"></text></g><g><title>finish_one_item (76 samples, 0.01%)</title><rect x="33.8485%" y="613" width="0.0147%" height="15" fill="rgb(231,229,43)" fg:x="175192" fg:w="76"/><text x="34.0985%" y="623.50"></text></g><g><title>rb_erase (60 samples, 0.01%)</title><rect x="33.8632%" y="613" width="0.0116%" height="15" fill="rgb(250,161,5)" fg:x="175268" fg:w="60"/><text x="34.1132%" y="623.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (214 samples, 0.04%)</title><rect x="33.8342%" y="629" width="0.0413%" height="15" fill="rgb(218,225,18)" fg:x="175118" fg:w="214"/><text x="34.0842%" y="639.50"></text></g><g><title>kfree (163 samples, 0.03%)</title><rect x="33.8755%" y="629" width="0.0315%" height="15" fill="rgb(245,45,42)" fg:x="175332" fg:w="163"/><text x="34.1255%" y="639.50"></text></g><g><title>__btrfs_kill_delayed_node (529 samples, 0.10%)</title><rect x="33.8071%" y="645" width="0.1022%" height="15" fill="rgb(211,115,1)" fg:x="174978" fg:w="529"/><text x="34.0571%" y="655.50"></text></g><g><title>btrfs_kill_delayed_inode_items (536 samples, 0.10%)</title><rect x="33.8071%" y="661" width="0.1036%" height="15" fill="rgb(248,133,52)" fg:x="174978" fg:w="536"/><text x="34.0571%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (114 samples, 0.02%)</title><rect x="33.9381%" y="645" width="0.0220%" height="15" fill="rgb(238,100,21)" fg:x="175656" fg:w="114"/><text x="34.1881%" y="655.50"></text></g><g><title>find_extent_buffer (89 samples, 0.02%)</title><rect x="33.9696%" y="629" width="0.0172%" height="15" fill="rgb(247,144,11)" fg:x="175819" fg:w="89"/><text x="34.2196%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (148 samples, 0.03%)</title><rect x="33.9602%" y="645" width="0.0286%" height="15" fill="rgb(206,164,16)" fg:x="175770" fg:w="148"/><text x="34.2102%" y="655.50"></text></g><g><title>reada_for_balance (76 samples, 0.01%)</title><rect x="33.9888%" y="645" width="0.0147%" height="15" fill="rgb(222,34,3)" fg:x="175918" fg:w="76"/><text x="34.2388%" y="655.50"></text></g><g><title>btrfs_search_slot (505 samples, 0.10%)</title><rect x="33.9115%" y="661" width="0.0976%" height="15" fill="rgb(248,82,4)" fg:x="175518" fg:w="505"/><text x="34.1615%" y="671.50"></text></g><g><title>lock_extent_bits (85 samples, 0.02%)</title><rect x="34.0127%" y="661" width="0.0164%" height="15" fill="rgb(228,81,46)" fg:x="176042" fg:w="85"/><text x="34.2627%" y="671.50"></text></g><g><title>__set_extent_bit (84 samples, 0.02%)</title><rect x="34.0129%" y="645" width="0.0162%" height="15" fill="rgb(227,67,47)" fg:x="176043" fg:w="84"/><text x="34.2629%" y="655.50"></text></g><g><title>btrfs_truncate_inode_items (2,806 samples, 0.54%)</title><rect x="33.5001%" y="677" width="0.5421%" height="15" fill="rgb(215,93,53)" fg:x="173389" fg:w="2806"/><text x="33.7501%" y="687.50"></text></g><g><title>read_extent_buffer (68 samples, 0.01%)</title><rect x="34.0291%" y="661" width="0.0131%" height="15" fill="rgb(248,194,39)" fg:x="176127" fg:w="68"/><text x="34.2791%" y="671.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (68 samples, 0.01%)</title><rect x="34.0620%" y="613" width="0.0131%" height="15" fill="rgb(215,5,19)" fg:x="176297" fg:w="68"/><text x="34.3120%" y="623.50"></text></g><g><title>btrfs_block_rsv_refill (166 samples, 0.03%)</title><rect x="34.0490%" y="661" width="0.0321%" height="15" fill="rgb(226,215,51)" fg:x="176230" fg:w="166"/><text x="34.2990%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (129 samples, 0.02%)</title><rect x="34.0562%" y="645" width="0.0249%" height="15" fill="rgb(225,56,26)" fg:x="176267" fg:w="129"/><text x="34.3062%" y="655.50"></text></g><g><title>__reserve_bytes (127 samples, 0.02%)</title><rect x="34.0566%" y="629" width="0.0245%" height="15" fill="rgb(222,75,29)" fg:x="176269" fg:w="127"/><text x="34.3066%" y="639.50"></text></g><g><title>evict_refill_and_join (285 samples, 0.06%)</title><rect x="34.0423%" y="677" width="0.0551%" height="15" fill="rgb(236,139,6)" fg:x="176195" fg:w="285"/><text x="34.2923%" y="687.50"></text></g><g><title>start_transaction (83 samples, 0.02%)</title><rect x="34.0813%" y="661" width="0.0160%" height="15" fill="rgb(223,137,36)" fg:x="176397" fg:w="83"/><text x="34.3313%" y="671.50"></text></g><g><title>btrfs_evict_inode (5,394 samples, 1.04%)</title><rect x="33.0635%" y="693" width="1.0422%" height="15" fill="rgb(226,99,2)" fg:x="171129" fg:w="5394"/><text x="33.3135%" y="703.50"></text></g><g><title>evict (5,479 samples, 1.06%)</title><rect x="33.0525%" y="709" width="1.0586%" height="15" fill="rgb(206,133,23)" fg:x="171072" fg:w="5479"/><text x="33.3025%" y="719.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="34.1294%" y="677" width="0.0129%" height="15" fill="rgb(243,173,15)" fg:x="176646" fg:w="67"/><text x="34.3794%" y="687.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="34.1768%" y="629" width="0.0137%" height="15" fill="rgb(228,69,28)" fg:x="176891" fg:w="71"/><text x="34.4268%" y="639.50"></text></g><g><title>d_lru_del (337 samples, 0.07%)</title><rect x="34.1505%" y="661" width="0.0651%" height="15" fill="rgb(212,51,22)" fg:x="176755" fg:w="337"/><text x="34.4005%" y="671.50"></text></g><g><title>list_lru_del (326 samples, 0.06%)</title><rect x="34.1526%" y="645" width="0.0630%" height="15" fill="rgb(227,113,0)" fg:x="176766" fg:w="326"/><text x="34.4026%" y="655.50"></text></g><g><title>mem_cgroup_from_obj (130 samples, 0.03%)</title><rect x="34.1905%" y="629" width="0.0251%" height="15" fill="rgb(252,84,27)" fg:x="176962" fg:w="130"/><text x="34.4405%" y="639.50"></text></g><g><title>d_walk (532 samples, 0.10%)</title><rect x="34.1198%" y="693" width="0.1028%" height="15" fill="rgb(223,145,39)" fg:x="176596" fg:w="532"/><text x="34.3698%" y="703.50"></text></g><g><title>select_collect (414 samples, 0.08%)</title><rect x="34.1426%" y="677" width="0.0800%" height="15" fill="rgb(239,219,30)" fg:x="176714" fg:w="414"/><text x="34.3926%" y="687.50"></text></g><g><title>___d_drop (262 samples, 0.05%)</title><rect x="34.2353%" y="661" width="0.0506%" height="15" fill="rgb(224,196,39)" fg:x="177194" fg:w="262"/><text x="34.4853%" y="671.50"></text></g><g><title>call_rcu (280 samples, 0.05%)</title><rect x="34.2973%" y="661" width="0.0541%" height="15" fill="rgb(205,35,43)" fg:x="177515" fg:w="280"/><text x="34.5473%" y="671.50"></text></g><g><title>rcu_segcblist_enqueue (163 samples, 0.03%)</title><rect x="34.3199%" y="645" width="0.0315%" height="15" fill="rgb(228,201,21)" fg:x="177632" fg:w="163"/><text x="34.5699%" y="655.50"></text></g><g><title>__dentry_kill (673 samples, 0.13%)</title><rect x="34.2254%" y="677" width="0.1300%" height="15" fill="rgb(237,118,16)" fg:x="177143" fg:w="673"/><text x="34.4754%" y="687.50"></text></g><g><title>__dput_to_list (65 samples, 0.01%)</title><rect x="34.3555%" y="677" width="0.0126%" height="15" fill="rgb(241,17,19)" fg:x="177816" fg:w="65"/><text x="34.6055%" y="687.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="34.3705%" y="677" width="0.0122%" height="15" fill="rgb(214,10,25)" fg:x="177894" fg:w="63"/><text x="34.6205%" y="687.50"></text></g><g><title>shrink_dcache_parent (1,480 samples, 0.29%)</title><rect x="34.1190%" y="709" width="0.2859%" height="15" fill="rgb(238,37,29)" fg:x="176592" fg:w="1480"/><text x="34.3690%" y="719.50"></text></g><g><title>shrink_dentry_list (944 samples, 0.18%)</title><rect x="34.2225%" y="693" width="0.1824%" height="15" fill="rgb(253,83,25)" fg:x="177128" fg:w="944"/><text x="34.4725%" y="703.50"></text></g><g><title>shrink_lock_dentry.part.0 (76 samples, 0.01%)</title><rect x="34.3902%" y="677" width="0.0147%" height="15" fill="rgb(234,192,12)" fg:x="177996" fg:w="76"/><text x="34.6402%" y="687.50"></text></g><g><title>_raw_spin_trylock (57 samples, 0.01%)</title><rect x="34.3939%" y="661" width="0.0110%" height="15" fill="rgb(241,216,45)" fg:x="178015" fg:w="57"/><text x="34.6439%" y="671.50"></text></g><g><title>do_rmdir (10,621 samples, 2.05%)</title><rect x="32.3544%" y="741" width="2.0521%" height="15" fill="rgb(242,22,33)" fg:x="167459" fg:w="10621"/><text x="32.6044%" y="751.50">d..</text></g><g><title>vfs_rmdir.part.0 (10,344 samples, 2.00%)</title><rect x="32.4079%" y="725" width="1.9985%" height="15" fill="rgb(231,105,49)" fg:x="167736" fg:w="10344"/><text x="32.6579%" y="735.50">v..</text></g><g><title>_raw_spin_lock (110 samples, 0.02%)</title><rect x="34.6184%" y="661" width="0.0213%" height="15" fill="rgb(218,204,15)" fg:x="179177" fg:w="110"/><text x="34.8684%" y="671.50"></text></g><g><title>__lookup_hash (1,163 samples, 0.22%)</title><rect x="34.4165%" y="725" width="0.2247%" height="15" fill="rgb(235,138,41)" fg:x="178132" fg:w="1163"/><text x="34.6665%" y="735.50"></text></g><g><title>lookup_dcache (1,146 samples, 0.22%)</title><rect x="34.4198%" y="709" width="0.2214%" height="15" fill="rgb(246,0,9)" fg:x="178149" fg:w="1146"/><text x="34.6698%" y="719.50"></text></g><g><title>d_lookup (1,136 samples, 0.22%)</title><rect x="34.4217%" y="693" width="0.2195%" height="15" fill="rgb(210,74,4)" fg:x="178159" fg:w="1136"/><text x="34.6717%" y="703.50"></text></g><g><title>__d_lookup (1,120 samples, 0.22%)</title><rect x="34.4248%" y="677" width="0.2164%" height="15" fill="rgb(250,60,41)" fg:x="178175" fg:w="1120"/><text x="34.6748%" y="687.50"></text></g><g><title>call_rcu (315 samples, 0.06%)</title><rect x="34.6412%" y="725" width="0.0609%" height="15" fill="rgb(220,115,12)" fg:x="179295" fg:w="315"/><text x="34.8912%" y="735.50"></text></g><g><title>rcu_segcblist_enqueue (128 samples, 0.02%)</title><rect x="34.6774%" y="709" width="0.0247%" height="15" fill="rgb(237,100,13)" fg:x="179482" fg:w="128"/><text x="34.9274%" y="719.50"></text></g><g><title>__srcu_read_lock (75 samples, 0.01%)</title><rect x="34.7239%" y="661" width="0.0145%" height="15" fill="rgb(213,55,26)" fg:x="179723" fg:w="75"/><text x="34.9739%" y="671.50"></text></g><g><title>fsnotify_destroy_marks (172 samples, 0.03%)</title><rect x="34.7191%" y="693" width="0.0332%" height="15" fill="rgb(216,17,4)" fg:x="179698" fg:w="172"/><text x="34.9691%" y="703.50"></text></g><g><title>fsnotify_grab_connector (156 samples, 0.03%)</title><rect x="34.7222%" y="677" width="0.0301%" height="15" fill="rgb(220,153,47)" fg:x="179714" fg:w="156"/><text x="34.9722%" y="687.50"></text></g><g><title>__srcu_read_unlock (72 samples, 0.01%)</title><rect x="34.7384%" y="661" width="0.0139%" height="15" fill="rgb(215,131,9)" fg:x="179798" fg:w="72"/><text x="34.9884%" y="671.50"></text></g><g><title>__destroy_inode (263 samples, 0.05%)</title><rect x="34.7044%" y="709" width="0.0508%" height="15" fill="rgb(233,46,42)" fg:x="179622" fg:w="263"/><text x="34.9544%" y="719.50"></text></g><g><title>_raw_write_lock (77 samples, 0.01%)</title><rect x="34.7865%" y="677" width="0.0149%" height="15" fill="rgb(226,86,7)" fg:x="180047" fg:w="77"/><text x="35.0365%" y="687.50"></text></g><g><title>memset_erms (172 samples, 0.03%)</title><rect x="34.8454%" y="645" width="0.0332%" height="15" fill="rgb(239,226,21)" fg:x="180352" fg:w="172"/><text x="35.0954%" y="655.50"></text></g><g><title>alloc_extent_map (483 samples, 0.09%)</title><rect x="34.8014%" y="677" width="0.0933%" height="15" fill="rgb(244,137,22)" fg:x="180124" fg:w="483"/><text x="35.0514%" y="687.50"></text></g><g><title>kmem_cache_alloc (459 samples, 0.09%)</title><rect x="34.8060%" y="661" width="0.0887%" height="15" fill="rgb(211,139,35)" fg:x="180148" fg:w="459"/><text x="35.0560%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (83 samples, 0.02%)</title><rect x="34.8787%" y="645" width="0.0160%" height="15" fill="rgb(214,62,50)" fg:x="180524" fg:w="83"/><text x="35.1287%" y="655.50"></text></g><g><title>free_extent_map (101 samples, 0.02%)</title><rect x="34.8947%" y="677" width="0.0195%" height="15" fill="rgb(212,113,44)" fg:x="180607" fg:w="101"/><text x="35.1447%" y="687.50"></text></g><g><title>kmem_cache_free (234 samples, 0.05%)</title><rect x="34.9142%" y="677" width="0.0452%" height="15" fill="rgb(226,150,43)" fg:x="180708" fg:w="234"/><text x="35.1642%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (71 samples, 0.01%)</title><rect x="34.9457%" y="661" width="0.0137%" height="15" fill="rgb(250,71,37)" fg:x="180871" fg:w="71"/><text x="35.1957%" y="671.50"></text></g><g><title>btrfs_drop_extent_cache (953 samples, 0.18%)</title><rect x="34.7755%" y="693" width="0.1841%" height="15" fill="rgb(219,76,19)" fg:x="179990" fg:w="953"/><text x="35.0255%" y="703.50"></text></g><g><title>alloc_extent_state (220 samples, 0.04%)</title><rect x="34.9855%" y="645" width="0.0425%" height="15" fill="rgb(250,39,11)" fg:x="181077" fg:w="220"/><text x="35.2355%" y="655.50"></text></g><g><title>kmem_cache_alloc (198 samples, 0.04%)</title><rect x="34.9898%" y="629" width="0.0383%" height="15" fill="rgb(230,64,31)" fg:x="181099" fg:w="198"/><text x="35.2398%" y="639.50"></text></g><g><title>free_extent_state (61 samples, 0.01%)</title><rect x="35.0280%" y="645" width="0.0118%" height="15" fill="rgb(208,222,23)" fg:x="181297" fg:w="61"/><text x="35.2780%" y="655.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (537 samples, 0.10%)</title><rect x="34.9596%" y="693" width="0.1038%" height="15" fill="rgb(227,125,18)" fg:x="180943" fg:w="537"/><text x="35.2096%" y="703.50"></text></g><g><title>clear_extent_bit (489 samples, 0.09%)</title><rect x="34.9689%" y="677" width="0.0945%" height="15" fill="rgb(234,210,9)" fg:x="180991" fg:w="489"/><text x="35.2189%" y="687.50"></text></g><g><title>__clear_extent_bit (481 samples, 0.09%)</title><rect x="34.9704%" y="661" width="0.0929%" height="15" fill="rgb(217,127,24)" fg:x="180999" fg:w="481"/><text x="35.2204%" y="671.50"></text></g><g><title>kmem_cache_free (122 samples, 0.02%)</title><rect x="35.0398%" y="645" width="0.0236%" height="15" fill="rgb(239,141,48)" fg:x="181358" fg:w="122"/><text x="35.2898%" y="655.50"></text></g><g><title>_raw_spin_lock_irq (63 samples, 0.01%)</title><rect x="35.0723%" y="677" width="0.0122%" height="15" fill="rgb(227,109,8)" fg:x="181526" fg:w="63"/><text x="35.3223%" y="687.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (110 samples, 0.02%)</title><rect x="35.0634%" y="693" width="0.0213%" height="15" fill="rgb(235,184,23)" fg:x="181480" fg:w="110"/><text x="35.3134%" y="703.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="35.1405%" y="613" width="0.0104%" height="15" fill="rgb(227,226,48)" fg:x="181879" fg:w="54"/><text x="35.3905%" y="623.50"></text></g><g><title>alloc_extent_state (282 samples, 0.05%)</title><rect x="35.1069%" y="645" width="0.0545%" height="15" fill="rgb(206,150,11)" fg:x="181705" fg:w="282"/><text x="35.3569%" y="655.50"></text></g><g><title>kmem_cache_alloc (248 samples, 0.05%)</title><rect x="35.1134%" y="629" width="0.0479%" height="15" fill="rgb(254,2,33)" fg:x="181739" fg:w="248"/><text x="35.3634%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (54 samples, 0.01%)</title><rect x="35.1509%" y="613" width="0.0104%" height="15" fill="rgb(243,160,20)" fg:x="181933" fg:w="54"/><text x="35.4009%" y="623.50"></text></g><g><title>free_extent_state (56 samples, 0.01%)</title><rect x="35.1613%" y="645" width="0.0108%" height="15" fill="rgb(218,208,30)" fg:x="181987" fg:w="56"/><text x="35.4113%" y="655.50"></text></g><g><title>clear_record_extent_bits (547 samples, 0.11%)</title><rect x="35.0887%" y="677" width="0.1057%" height="15" fill="rgb(224,120,49)" fg:x="181611" fg:w="547"/><text x="35.3387%" y="687.50"></text></g><g><title>__clear_extent_bit (538 samples, 0.10%)</title><rect x="35.0904%" y="661" width="0.1039%" height="15" fill="rgb(246,12,2)" fg:x="181620" fg:w="538"/><text x="35.3404%" y="671.50"></text></g><g><title>kmem_cache_free (115 samples, 0.02%)</title><rect x="35.1722%" y="645" width="0.0222%" height="15" fill="rgb(236,117,3)" fg:x="182043" fg:w="115"/><text x="35.4222%" y="655.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (604 samples, 0.12%)</title><rect x="35.0846%" y="693" width="0.1167%" height="15" fill="rgb(216,128,52)" fg:x="181590" fg:w="604"/><text x="35.3346%" y="703.50"></text></g><g><title>btrfs_destroy_inode (2,998 samples, 0.58%)</title><rect x="34.7552%" y="709" width="0.5792%" height="15" fill="rgb(246,145,19)" fg:x="179885" fg:w="2998"/><text x="35.0052%" y="719.50"></text></g><g><title>rb_erase (689 samples, 0.13%)</title><rect x="35.2013%" y="693" width="0.1331%" height="15" fill="rgb(222,11,46)" fg:x="182194" fg:w="689"/><text x="35.4513%" y="703.50"></text></g><g><title>destroy_inode (3,332 samples, 0.64%)</title><rect x="34.7021%" y="725" width="0.6438%" height="15" fill="rgb(245,82,36)" fg:x="179610" fg:w="3332"/><text x="34.9521%" y="735.50"></text></g><g><title>btrfs_put_root (59 samples, 0.01%)</title><rect x="35.3345%" y="709" width="0.0114%" height="15" fill="rgb(250,73,51)" fg:x="182883" fg:w="59"/><text x="35.5845%" y="719.50"></text></g><g><title>down_write (80 samples, 0.02%)</title><rect x="35.3459%" y="725" width="0.0155%" height="15" fill="rgb(221,189,23)" fg:x="182942" fg:w="80"/><text x="35.5959%" y="735.50"></text></g><g><title>lockref_put_or_lock (128 samples, 0.02%)</title><rect x="35.3808%" y="709" width="0.0247%" height="15" fill="rgb(210,33,7)" fg:x="183123" fg:w="128"/><text x="35.6308%" y="719.50"></text></g><g><title>dput (230 samples, 0.04%)</title><rect x="35.3613%" y="725" width="0.0444%" height="15" fill="rgb(210,107,22)" fg:x="183022" fg:w="230"/><text x="35.6113%" y="735.50"></text></g><g><title>__list_del_entry_valid (281 samples, 0.05%)</title><rect x="35.4148%" y="709" width="0.0543%" height="15" fill="rgb(222,116,37)" fg:x="183299" fg:w="281"/><text x="35.6648%" y="719.50"></text></g><g><title>__remove_inode_hash (124 samples, 0.02%)</title><rect x="35.4691%" y="709" width="0.0240%" height="15" fill="rgb(254,17,48)" fg:x="183580" fg:w="124"/><text x="35.7191%" y="719.50"></text></g><g><title>_raw_spin_lock (96 samples, 0.02%)</title><rect x="35.4745%" y="693" width="0.0185%" height="15" fill="rgb(224,36,32)" fg:x="183608" fg:w="96"/><text x="35.7245%" y="703.50"></text></g><g><title>_raw_spin_lock (227 samples, 0.04%)</title><rect x="35.4931%" y="709" width="0.0439%" height="15" fill="rgb(232,90,46)" fg:x="183704" fg:w="227"/><text x="35.7431%" y="719.50"></text></g><g><title>btrfs_put_transaction (136 samples, 0.03%)</title><rect x="35.6144%" y="677" width="0.0263%" height="15" fill="rgb(241,66,40)" fg:x="184332" fg:w="136"/><text x="35.8644%" y="687.50"></text></g><g><title>_raw_spin_lock (226 samples, 0.04%)</title><rect x="35.6668%" y="645" width="0.0437%" height="15" fill="rgb(249,184,29)" fg:x="184603" fg:w="226"/><text x="35.9168%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (407 samples, 0.08%)</title><rect x="35.6434%" y="677" width="0.0786%" height="15" fill="rgb(231,181,1)" fg:x="184482" fg:w="407"/><text x="35.8934%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (393 samples, 0.08%)</title><rect x="35.6461%" y="661" width="0.0759%" height="15" fill="rgb(224,94,2)" fg:x="184496" fg:w="393"/><text x="35.8961%" y="671.50"></text></g><g><title>__btrfs_end_transaction (1,082 samples, 0.21%)</title><rect x="35.5593%" y="693" width="0.2091%" height="15" fill="rgb(229,170,15)" fg:x="184047" fg:w="1082"/><text x="35.8093%" y="703.50"></text></g><g><title>kmem_cache_free (240 samples, 0.05%)</title><rect x="35.7220%" y="677" width="0.0464%" height="15" fill="rgb(240,127,35)" fg:x="184889" fg:w="240"/><text x="35.9720%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (56 samples, 0.01%)</title><rect x="35.7576%" y="661" width="0.0108%" height="15" fill="rgb(248,196,34)" fg:x="185073" fg:w="56"/><text x="36.0076%" y="671.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="35.7866%" y="677" width="0.0203%" height="15" fill="rgb(236,137,7)" fg:x="185223" fg:w="105"/><text x="36.0366%" y="687.50"></text></g><g><title>mutex_lock (83 samples, 0.02%)</title><rect x="35.8068%" y="677" width="0.0160%" height="15" fill="rgb(235,127,16)" fg:x="185328" fg:w="83"/><text x="36.0568%" y="687.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="35.8229%" y="677" width="0.0106%" height="15" fill="rgb(250,192,54)" fg:x="185411" fg:w="55"/><text x="36.0729%" y="687.50"></text></g><g><title>__radix_tree_delete (103 samples, 0.02%)</title><rect x="35.8387%" y="661" width="0.0199%" height="15" fill="rgb(218,98,20)" fg:x="185493" fg:w="103"/><text x="36.0887%" y="671.50"></text></g><g><title>node_tag_clear (56 samples, 0.01%)</title><rect x="35.8478%" y="645" width="0.0108%" height="15" fill="rgb(230,176,47)" fg:x="185540" fg:w="56"/><text x="36.0978%" y="655.50"></text></g><g><title>__radix_tree_lookup (335 samples, 0.06%)</title><rect x="35.8586%" y="661" width="0.0647%" height="15" fill="rgb(244,2,33)" fg:x="185596" fg:w="335"/><text x="36.1086%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (817 samples, 0.16%)</title><rect x="35.7684%" y="693" width="0.1579%" height="15" fill="rgb(231,100,17)" fg:x="185129" fg:w="817"/><text x="36.0184%" y="703.50"></text></g><g><title>radix_tree_delete_item (476 samples, 0.09%)</title><rect x="35.8343%" y="677" width="0.0920%" height="15" fill="rgb(245,23,12)" fg:x="185470" fg:w="476"/><text x="36.0843%" y="687.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="35.9264%" y="693" width="0.0124%" height="15" fill="rgb(249,55,22)" fg:x="185947" fg:w="64"/><text x="36.1764%" y="703.50"></text></g><g><title>memset_erms (60 samples, 0.01%)</title><rect x="35.9819%" y="661" width="0.0116%" height="15" fill="rgb(207,134,9)" fg:x="186234" fg:w="60"/><text x="36.2319%" y="671.50"></text></g><g><title>btrfs_alloc_block_rsv (257 samples, 0.05%)</title><rect x="35.9490%" y="693" width="0.0497%" height="15" fill="rgb(218,134,0)" fg:x="186064" fg:w="257"/><text x="36.1990%" y="703.50"></text></g><g><title>kmem_cache_alloc_trace (166 samples, 0.03%)</title><rect x="35.9666%" y="677" width="0.0321%" height="15" fill="rgb(213,212,33)" fg:x="186155" fg:w="166"/><text x="36.2166%" y="687.50"></text></g><g><title>btrfs_put_transaction (73 samples, 0.01%)</title><rect x="36.0453%" y="661" width="0.0141%" height="15" fill="rgb(252,106,18)" fg:x="186562" fg:w="73"/><text x="36.2953%" y="671.50"></text></g><g><title>__btrfs_end_transaction (350 samples, 0.07%)</title><rect x="36.0151%" y="677" width="0.0676%" height="15" fill="rgb(208,126,42)" fg:x="186406" fg:w="350"/><text x="36.2651%" y="687.50"></text></g><g><title>kmem_cache_free (109 samples, 0.02%)</title><rect x="36.0617%" y="661" width="0.0211%" height="15" fill="rgb(246,175,29)" fg:x="186647" fg:w="109"/><text x="36.3117%" y="671.50"></text></g><g><title>mutex_lock (63 samples, 0.01%)</title><rect x="36.1320%" y="661" width="0.0122%" height="15" fill="rgb(215,13,50)" fg:x="187011" fg:w="63"/><text x="36.3820%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (374 samples, 0.07%)</title><rect x="36.0827%" y="677" width="0.0723%" height="15" fill="rgb(216,172,15)" fg:x="186756" fg:w="374"/><text x="36.3327%" y="687.50"></text></g><g><title>mutex_unlock (56 samples, 0.01%)</title><rect x="36.1442%" y="661" width="0.0108%" height="15" fill="rgb(212,103,13)" fg:x="187074" fg:w="56"/><text x="36.3942%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (92 samples, 0.02%)</title><rect x="36.3420%" y="581" width="0.0178%" height="15" fill="rgb(231,171,36)" fg:x="188098" fg:w="92"/><text x="36.5920%" y="591.50"></text></g><g><title>steal_from_bitmap.part.0 (105 samples, 0.02%)</title><rect x="36.3401%" y="597" width="0.0203%" height="15" fill="rgb(250,123,20)" fg:x="188088" fg:w="105"/><text x="36.5901%" y="607.50"></text></g><g><title>__btrfs_add_free_space (126 samples, 0.02%)</title><rect x="36.3372%" y="613" width="0.0243%" height="15" fill="rgb(212,53,50)" fg:x="188073" fg:w="126"/><text x="36.5872%" y="623.50"></text></g><g><title>btrfs_free_tree_block (175 samples, 0.03%)</title><rect x="36.3370%" y="629" width="0.0338%" height="15" fill="rgb(243,54,12)" fg:x="188072" fg:w="175"/><text x="36.5870%" y="639.50"></text></g><g><title>btrfs_del_leaf (189 samples, 0.04%)</title><rect x="36.3368%" y="645" width="0.0365%" height="15" fill="rgb(234,101,34)" fg:x="188071" fg:w="189"/><text x="36.5868%" y="655.50"></text></g><g><title>btrfs_get_32 (115 samples, 0.02%)</title><rect x="36.3733%" y="645" width="0.0222%" height="15" fill="rgb(254,67,22)" fg:x="188260" fg:w="115"/><text x="36.6233%" y="655.50"></text></g><g><title>btrfs_get_token_32 (2,041 samples, 0.39%)</title><rect x="36.3956%" y="645" width="0.3943%" height="15" fill="rgb(250,35,47)" fg:x="188375" fg:w="2041"/><text x="36.6456%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (321 samples, 0.06%)</title><rect x="36.7279%" y="629" width="0.0620%" height="15" fill="rgb(226,126,38)" fg:x="190095" fg:w="321"/><text x="36.9779%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (149 samples, 0.03%)</title><rect x="36.7899%" y="645" width="0.0288%" height="15" fill="rgb(216,138,53)" fg:x="190416" fg:w="149"/><text x="37.0399%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (104 samples, 0.02%)</title><rect x="36.7986%" y="629" width="0.0201%" height="15" fill="rgb(246,199,43)" fg:x="190461" fg:w="104"/><text x="37.0486%" y="639.50"></text></g><g><title>btrfs_set_token_32 (1,786 samples, 0.35%)</title><rect x="36.8220%" y="645" width="0.3451%" height="15" fill="rgb(232,125,11)" fg:x="190582" fg:w="1786"/><text x="37.0720%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (374 samples, 0.07%)</title><rect x="37.0948%" y="629" width="0.0723%" height="15" fill="rgb(218,219,45)" fg:x="191994" fg:w="374"/><text x="37.3448%" y="639.50"></text></g><g><title>leaf_space_used (112 samples, 0.02%)</title><rect x="37.1701%" y="645" width="0.0216%" height="15" fill="rgb(216,102,54)" fg:x="192384" fg:w="112"/><text x="37.4201%" y="655.50"></text></g><g><title>btrfs_get_32 (74 samples, 0.01%)</title><rect x="37.1775%" y="629" width="0.0143%" height="15" fill="rgb(250,228,7)" fg:x="192422" fg:w="74"/><text x="37.4275%" y="639.50"></text></g><g><title>memcpy_extent_buffer (338 samples, 0.07%)</title><rect x="37.1918%" y="645" width="0.0653%" height="15" fill="rgb(226,125,25)" fg:x="192496" fg:w="338"/><text x="37.4418%" y="655.50"></text></g><g><title>memmove (286 samples, 0.06%)</title><rect x="37.2018%" y="629" width="0.0553%" height="15" fill="rgb(224,165,27)" fg:x="192548" fg:w="286"/><text x="37.4518%" y="639.50"></text></g><g><title>copy_pages (288 samples, 0.06%)</title><rect x="37.2826%" y="629" width="0.0556%" height="15" fill="rgb(233,86,3)" fg:x="192966" fg:w="288"/><text x="37.5326%" y="639.50"></text></g><g><title>memmove_extent_buffer (2,790 samples, 0.54%)</title><rect x="37.2571%" y="645" width="0.5391%" height="15" fill="rgb(228,116,20)" fg:x="192834" fg:w="2790"/><text x="37.5071%" y="655.50"></text></g><g><title>memmove (2,370 samples, 0.46%)</title><rect x="37.3382%" y="629" width="0.4579%" height="15" fill="rgb(209,192,17)" fg:x="193254" fg:w="2370"/><text x="37.5882%" y="639.50"></text></g><g><title>__push_leaf_left (78 samples, 0.02%)</title><rect x="37.7990%" y="629" width="0.0151%" height="15" fill="rgb(224,88,34)" fg:x="195639" fg:w="78"/><text x="38.0490%" y="639.50"></text></g><g><title>push_leaf_left (143 samples, 0.03%)</title><rect x="37.7961%" y="645" width="0.0276%" height="15" fill="rgb(233,38,6)" fg:x="195624" fg:w="143"/><text x="38.0461%" y="655.50"></text></g><g><title>__push_leaf_right (96 samples, 0.02%)</title><rect x="37.8280%" y="629" width="0.0185%" height="15" fill="rgb(212,59,30)" fg:x="195789" fg:w="96"/><text x="38.0780%" y="639.50"></text></g><g><title>alloc_extent_buffer (69 samples, 0.01%)</title><rect x="37.8577%" y="597" width="0.0133%" height="15" fill="rgb(213,80,3)" fg:x="195943" fg:w="69"/><text x="38.1077%" y="607.50"></text></g><g><title>find_extent_buffer (64 samples, 0.01%)</title><rect x="37.8587%" y="581" width="0.0124%" height="15" fill="rgb(251,178,7)" fg:x="195948" fg:w="64"/><text x="38.1087%" y="591.50"></text></g><g><title>btrfs_read_node_slot (109 samples, 0.02%)</title><rect x="37.8539%" y="629" width="0.0211%" height="15" fill="rgb(213,154,26)" fg:x="195923" fg:w="109"/><text x="38.1039%" y="639.50"></text></g><g><title>read_tree_block (92 samples, 0.02%)</title><rect x="37.8572%" y="613" width="0.0178%" height="15" fill="rgb(238,165,49)" fg:x="195940" fg:w="92"/><text x="38.1072%" y="623.50"></text></g><g><title>push_leaf_right (302 samples, 0.06%)</title><rect x="37.8237%" y="645" width="0.0583%" height="15" fill="rgb(248,91,46)" fg:x="195767" fg:w="302"/><text x="38.0737%" y="655.50"></text></g><g><title>btrfs_del_items (8,827 samples, 1.71%)</title><rect x="36.1813%" y="661" width="1.7054%" height="15" fill="rgb(244,21,52)" fg:x="187266" fg:w="8827"/><text x="36.4313%" y="671.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="37.9004%" y="629" width="0.0193%" height="15" fill="rgb(247,122,20)" fg:x="196164" fg:w="100"/><text x="38.1504%" y="639.50"></text></g><g><title>btrfs_block_rsv_release (181 samples, 0.03%)</title><rect x="37.8898%" y="645" width="0.0350%" height="15" fill="rgb(218,27,9)" fg:x="196109" fg:w="181"/><text x="38.1398%" y="655.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (222 samples, 0.04%)</title><rect x="37.8867%" y="661" width="0.0429%" height="15" fill="rgb(246,7,6)" fg:x="196093" fg:w="222"/><text x="38.1367%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.02%)</title><rect x="38.0023%" y="613" width="0.0174%" height="15" fill="rgb(227,135,54)" fg:x="196691" fg:w="90"/><text x="38.2523%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (177 samples, 0.03%)</title><rect x="37.9996%" y="629" width="0.0342%" height="15" fill="rgb(247,14,11)" fg:x="196677" fg:w="177"/><text x="38.2496%" y="639.50"></text></g><g><title>btrfs_root_node (73 samples, 0.01%)</title><rect x="38.0197%" y="613" width="0.0141%" height="15" fill="rgb(206,149,34)" fg:x="196781" fg:w="73"/><text x="38.2697%" y="623.50"></text></g><g><title>btrfs_read_node_slot (85 samples, 0.02%)</title><rect x="38.0558%" y="613" width="0.0164%" height="15" fill="rgb(227,228,4)" fg:x="196968" fg:w="85"/><text x="38.3058%" y="623.50"></text></g><g><title>read_tree_block (68 samples, 0.01%)</title><rect x="38.0591%" y="597" width="0.0131%" height="15" fill="rgb(238,218,28)" fg:x="196985" fg:w="68"/><text x="38.3091%" y="607.50"></text></g><g><title>balance_level (240 samples, 0.05%)</title><rect x="38.0349%" y="629" width="0.0464%" height="15" fill="rgb(252,86,40)" fg:x="196860" fg:w="240"/><text x="38.2849%" y="639.50"></text></g><g><title>__btrfs_tree_lock (97 samples, 0.02%)</title><rect x="38.0911%" y="613" width="0.0187%" height="15" fill="rgb(251,225,11)" fg:x="197151" fg:w="97"/><text x="38.3411%" y="623.50"></text></g><g><title>btrfs_lock_root_node (159 samples, 0.03%)</title><rect x="38.0898%" y="629" width="0.0307%" height="15" fill="rgb(206,46,49)" fg:x="197144" fg:w="159"/><text x="38.3398%" y="639.50"></text></g><g><title>btrfs_root_node (55 samples, 0.01%)</title><rect x="38.1099%" y="613" width="0.0106%" height="15" fill="rgb(245,128,24)" fg:x="197248" fg:w="55"/><text x="38.3599%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (57 samples, 0.01%)</title><rect x="38.1205%" y="629" width="0.0110%" height="15" fill="rgb(219,177,34)" fg:x="197303" fg:w="57"/><text x="38.3705%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (55 samples, 0.01%)</title><rect x="38.1315%" y="629" width="0.0106%" height="15" fill="rgb(218,60,48)" fg:x="197360" fg:w="55"/><text x="38.3815%" y="639.50"></text></g><g><title>_raw_write_lock (88 samples, 0.02%)</title><rect x="38.1462%" y="613" width="0.0170%" height="15" fill="rgb(221,11,5)" fg:x="197436" fg:w="88"/><text x="38.3962%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (113 samples, 0.02%)</title><rect x="38.1422%" y="629" width="0.0218%" height="15" fill="rgb(220,148,13)" fg:x="197415" fg:w="113"/><text x="38.3922%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (76 samples, 0.01%)</title><rect x="38.1642%" y="629" width="0.0147%" height="15" fill="rgb(210,16,3)" fg:x="197529" fg:w="76"/><text x="38.4142%" y="639.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="38.1669%" y="613" width="0.0120%" height="15" fill="rgb(236,80,2)" fg:x="197543" fg:w="62"/><text x="38.4169%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (529 samples, 0.10%)</title><rect x="38.1789%" y="629" width="0.1022%" height="15" fill="rgb(239,129,19)" fg:x="197605" fg:w="529"/><text x="38.4289%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (73 samples, 0.01%)</title><rect x="38.3068%" y="613" width="0.0141%" height="15" fill="rgb(220,106,35)" fg:x="198267" fg:w="73"/><text x="38.5568%" y="623.50"></text></g><g><title>verify_parent_transid (57 samples, 0.01%)</title><rect x="38.3099%" y="597" width="0.0110%" height="15" fill="rgb(252,139,45)" fg:x="198283" fg:w="57"/><text x="38.5599%" y="607.50"></text></g><g><title>btrfs_get_64 (119 samples, 0.02%)</title><rect x="38.3209%" y="613" width="0.0230%" height="15" fill="rgb(229,8,36)" fg:x="198340" fg:w="119"/><text x="38.5709%" y="623.50"></text></g><g><title>btrfs_verify_level_key (57 samples, 0.01%)</title><rect x="38.3456%" y="613" width="0.0110%" height="15" fill="rgb(230,126,33)" fg:x="198468" fg:w="57"/><text x="38.5956%" y="623.50"></text></g><g><title>__radix_tree_lookup (467 samples, 0.09%)</title><rect x="38.3918%" y="597" width="0.0902%" height="15" fill="rgb(239,140,21)" fg:x="198707" fg:w="467"/><text x="38.6418%" y="607.50"></text></g><g><title>check_buffer_tree_ref (68 samples, 0.01%)</title><rect x="38.4938%" y="581" width="0.0131%" height="15" fill="rgb(254,104,9)" fg:x="199235" fg:w="68"/><text x="38.7438%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (333 samples, 0.06%)</title><rect x="38.4820%" y="597" width="0.0643%" height="15" fill="rgb(239,52,14)" fg:x="199174" fg:w="333"/><text x="38.7320%" y="607.50"></text></g><g><title>mark_page_accessed (204 samples, 0.04%)</title><rect x="38.5069%" y="581" width="0.0394%" height="15" fill="rgb(208,227,44)" fg:x="199303" fg:w="204"/><text x="38.7569%" y="591.50"></text></g><g><title>find_extent_buffer (989 samples, 0.19%)</title><rect x="38.3566%" y="613" width="0.1911%" height="15" fill="rgb(246,18,19)" fg:x="198525" fg:w="989"/><text x="38.6066%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,538 samples, 0.30%)</title><rect x="38.2811%" y="629" width="0.2972%" height="15" fill="rgb(235,228,25)" fg:x="198134" fg:w="1538"/><text x="38.5311%" y="639.50"></text></g><g><title>read_extent_buffer (158 samples, 0.03%)</title><rect x="38.5477%" y="613" width="0.0305%" height="15" fill="rgb(240,156,20)" fg:x="199514" fg:w="158"/><text x="38.7977%" y="623.50"></text></g><g><title>btrfs_get_64 (62 samples, 0.01%)</title><rect x="38.5900%" y="613" width="0.0120%" height="15" fill="rgb(224,8,20)" fg:x="199733" fg:w="62"/><text x="38.8400%" y="623.50"></text></g><g><title>__radix_tree_lookup (163 samples, 0.03%)</title><rect x="38.6093%" y="597" width="0.0315%" height="15" fill="rgb(214,12,52)" fg:x="199833" fg:w="163"/><text x="38.8593%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (79 samples, 0.02%)</title><rect x="38.6408%" y="597" width="0.0153%" height="15" fill="rgb(211,220,47)" fg:x="199996" fg:w="79"/><text x="38.8908%" y="607.50"></text></g><g><title>find_extent_buffer (284 samples, 0.05%)</title><rect x="38.6020%" y="613" width="0.0549%" height="15" fill="rgb(250,173,5)" fg:x="199795" fg:w="284"/><text x="38.8520%" y="623.50"></text></g><g><title>reada_for_balance (470 samples, 0.09%)</title><rect x="38.5782%" y="629" width="0.0908%" height="15" fill="rgb(250,125,52)" fg:x="199672" fg:w="470"/><text x="38.8282%" y="639.50"></text></g><g><title>btrfs_lookup_inode (3,982 samples, 0.77%)</title><rect x="37.9395%" y="661" width="0.7694%" height="15" fill="rgb(209,133,18)" fg:x="196366" fg:w="3982"/><text x="38.1895%" y="671.50"></text></g><g><title>btrfs_search_slot (3,951 samples, 0.76%)</title><rect x="37.9455%" y="645" width="0.7634%" height="15" fill="rgb(216,173,22)" fg:x="196397" fg:w="3951"/><text x="38.1955%" y="655.50"></text></g><g><title>unlock_up (156 samples, 0.03%)</title><rect x="38.6787%" y="629" width="0.0301%" height="15" fill="rgb(205,3,22)" fg:x="200192" fg:w="156"/><text x="38.9287%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (139 samples, 0.03%)</title><rect x="38.7088%" y="661" width="0.0269%" height="15" fill="rgb(248,22,20)" fg:x="200348" fg:w="139"/><text x="38.9588%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (102 samples, 0.02%)</title><rect x="38.7160%" y="645" width="0.0197%" height="15" fill="rgb(233,6,29)" fg:x="200385" fg:w="102"/><text x="38.9660%" y="655.50"></text></g><g><title>btrfs_release_delayed_inode (63 samples, 0.01%)</title><rect x="38.7357%" y="661" width="0.0122%" height="15" fill="rgb(240,22,54)" fg:x="200487" fg:w="63"/><text x="38.9857%" y="671.50"></text></g><g><title>btrfs_tree_unlock (78 samples, 0.02%)</title><rect x="38.7600%" y="645" width="0.0151%" height="15" fill="rgb(231,133,32)" fg:x="200613" fg:w="78"/><text x="39.0100%" y="655.50"></text></g><g><title>_raw_spin_lock (133 samples, 0.03%)</title><rect x="38.7836%" y="629" width="0.0257%" height="15" fill="rgb(248,193,4)" fg:x="200735" fg:w="133"/><text x="39.0336%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (170 samples, 0.03%)</title><rect x="38.7766%" y="645" width="0.0328%" height="15" fill="rgb(211,178,46)" fg:x="200699" fg:w="170"/><text x="39.0266%" y="655.50"></text></g><g><title>btrfs_release_path (494 samples, 0.10%)</title><rect x="38.7479%" y="661" width="0.0954%" height="15" fill="rgb(224,5,42)" fg:x="200550" fg:w="494"/><text x="38.9979%" y="671.50"></text></g><g><title>release_extent_buffer (175 samples, 0.03%)</title><rect x="38.8095%" y="645" width="0.0338%" height="15" fill="rgb(239,176,25)" fg:x="200869" fg:w="175"/><text x="39.0595%" y="655.50"></text></g><g><title>finish_one_item (258 samples, 0.05%)</title><rect x="38.8508%" y="661" width="0.0498%" height="15" fill="rgb(245,187,50)" fg:x="201083" fg:w="258"/><text x="39.1008%" y="671.50"></text></g><g><title>read_extent_buffer (67 samples, 0.01%)</title><rect x="38.9007%" y="661" width="0.0129%" height="15" fill="rgb(248,24,15)" fg:x="201341" fg:w="67"/><text x="39.1507%" y="671.50"></text></g><g><title>__btrfs_update_delayed_inode (14,541 samples, 2.81%)</title><rect x="36.1550%" y="677" width="2.8094%" height="15" fill="rgb(205,166,13)" fg:x="187130" fg:w="14541"/><text x="36.4050%" y="687.50">__..</text></g><g><title>write_extent_buffer (263 samples, 0.05%)</title><rect x="38.9136%" y="661" width="0.0508%" height="15" fill="rgb(208,114,23)" fg:x="201408" fg:w="263"/><text x="39.1636%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (53 samples, 0.01%)</title><rect x="38.9807%" y="677" width="0.0102%" height="15" fill="rgb(239,127,18)" fg:x="201755" fg:w="53"/><text x="39.2307%" y="687.50"></text></g><g><title>kmem_cache_alloc (128 samples, 0.02%)</title><rect x="38.9915%" y="677" width="0.0247%" height="15" fill="rgb(219,154,28)" fg:x="201811" fg:w="128"/><text x="39.2415%" y="687.50"></text></g><g><title>kmem_cache_free (101 samples, 0.02%)</title><rect x="39.0162%" y="677" width="0.0195%" height="15" fill="rgb(225,157,23)" fg:x="201939" fg:w="101"/><text x="39.2662%" y="687.50"></text></g><g><title>mutex_lock (127 samples, 0.02%)</title><rect x="39.0357%" y="677" width="0.0245%" height="15" fill="rgb(219,8,6)" fg:x="202040" fg:w="127"/><text x="39.2857%" y="687.50"></text></g><g><title>mutex_unlock (93 samples, 0.02%)</title><rect x="39.0603%" y="677" width="0.0180%" height="15" fill="rgb(212,47,6)" fg:x="202167" fg:w="93"/><text x="39.3103%" y="687.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="39.1331%" y="645" width="0.0137%" height="15" fill="rgb(224,190,4)" fg:x="202544" fg:w="71"/><text x="39.3831%" y="655.50"></text></g><g><title>join_transaction (197 samples, 0.04%)</title><rect x="39.1092%" y="661" width="0.0381%" height="15" fill="rgb(239,183,29)" fg:x="202420" fg:w="197"/><text x="39.3592%" y="671.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (16,438 samples, 3.18%)</title><rect x="36.0059%" y="693" width="3.1760%" height="15" fill="rgb(213,57,7)" fg:x="186358" fg:w="16438"/><text x="36.2559%" y="703.50">btr..</text></g><g><title>start_transaction (536 samples, 0.10%)</title><rect x="39.0782%" y="677" width="0.1036%" height="15" fill="rgb(216,148,1)" fg:x="202260" fg:w="536"/><text x="39.3282%" y="687.50"></text></g><g><title>kmem_cache_alloc (179 samples, 0.03%)</title><rect x="39.1472%" y="661" width="0.0346%" height="15" fill="rgb(236,182,29)" fg:x="202617" fg:w="179"/><text x="39.3972%" y="671.50"></text></g><g><title>btrfs_get_32 (74 samples, 0.01%)</title><rect x="39.2052%" y="661" width="0.0143%" height="15" fill="rgb(244,120,48)" fg:x="202917" fg:w="74"/><text x="39.4552%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (162 samples, 0.03%)</title><rect x="39.2195%" y="661" width="0.0313%" height="15" fill="rgb(206,71,34)" fg:x="202991" fg:w="162"/><text x="39.4695%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (114 samples, 0.02%)</title><rect x="39.2288%" y="645" width="0.0220%" height="15" fill="rgb(242,32,6)" fg:x="203039" fg:w="114"/><text x="39.4788%" y="655.50"></text></g><g><title>leaf_space_used (110 samples, 0.02%)</title><rect x="39.2510%" y="661" width="0.0213%" height="15" fill="rgb(241,35,3)" fg:x="203154" fg:w="110"/><text x="39.5010%" y="671.50"></text></g><g><title>btrfs_get_32 (83 samples, 0.02%)</title><rect x="39.2562%" y="645" width="0.0160%" height="15" fill="rgb(222,62,19)" fg:x="203181" fg:w="83"/><text x="39.5062%" y="655.50"></text></g><g><title>btrfs_del_items (441 samples, 0.09%)</title><rect x="39.1872%" y="677" width="0.0852%" height="15" fill="rgb(223,110,41)" fg:x="202824" fg:w="441"/><text x="39.4372%" y="687.50"></text></g><g><title>btrfs_tree_unlock (120 samples, 0.02%)</title><rect x="39.2830%" y="645" width="0.0232%" height="15" fill="rgb(208,224,4)" fg:x="203320" fg:w="120"/><text x="39.5330%" y="655.50"></text></g><g><title>_raw_spin_lock (134 samples, 0.03%)</title><rect x="39.3136%" y="629" width="0.0259%" height="15" fill="rgb(241,137,19)" fg:x="203478" fg:w="134"/><text x="39.5636%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (165 samples, 0.03%)</title><rect x="39.3078%" y="645" width="0.0319%" height="15" fill="rgb(244,24,17)" fg:x="203448" fg:w="165"/><text x="39.5578%" y="655.50"></text></g><g><title>btrfs_free_path (519 samples, 0.10%)</title><rect x="39.2724%" y="677" width="0.1003%" height="15" fill="rgb(245,178,49)" fg:x="203265" fg:w="519"/><text x="39.5224%" y="687.50"></text></g><g><title>btrfs_release_path (513 samples, 0.10%)</title><rect x="39.2736%" y="661" width="0.0991%" height="15" fill="rgb(219,160,38)" fg:x="203271" fg:w="513"/><text x="39.5236%" y="671.50"></text></g><g><title>release_extent_buffer (171 samples, 0.03%)</title><rect x="39.3397%" y="645" width="0.0330%" height="15" fill="rgb(228,137,14)" fg:x="203613" fg:w="171"/><text x="39.5897%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (71 samples, 0.01%)</title><rect x="39.4334%" y="645" width="0.0137%" height="15" fill="rgb(237,134,11)" fg:x="204098" fg:w="71"/><text x="39.6834%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (156 samples, 0.03%)</title><rect x="39.4301%" y="661" width="0.0301%" height="15" fill="rgb(211,126,44)" fg:x="204081" fg:w="156"/><text x="39.6801%" y="671.50"></text></g><g><title>btrfs_root_node (68 samples, 0.01%)</title><rect x="39.4471%" y="645" width="0.0131%" height="15" fill="rgb(226,171,33)" fg:x="204169" fg:w="68"/><text x="39.6971%" y="655.50"></text></g><g><title>btrfs_read_node_slot (73 samples, 0.01%)</title><rect x="39.4782%" y="645" width="0.0141%" height="15" fill="rgb(253,99,13)" fg:x="204330" fg:w="73"/><text x="39.7282%" y="655.50"></text></g><g><title>balance_level (207 samples, 0.04%)</title><rect x="39.4610%" y="661" width="0.0400%" height="15" fill="rgb(244,48,7)" fg:x="204241" fg:w="207"/><text x="39.7110%" y="671.50"></text></g><g><title>_raw_write_lock (56 samples, 0.01%)</title><rect x="39.5151%" y="629" width="0.0108%" height="15" fill="rgb(244,217,54)" fg:x="204521" fg:w="56"/><text x="39.7651%" y="639.50"></text></g><g><title>__btrfs_tree_lock (108 samples, 0.02%)</title><rect x="39.5064%" y="645" width="0.0209%" height="15" fill="rgb(224,15,18)" fg:x="204476" fg:w="108"/><text x="39.7564%" y="655.50"></text></g><g><title>btrfs_lock_root_node (182 samples, 0.04%)</title><rect x="39.5047%" y="661" width="0.0352%" height="15" fill="rgb(244,99,12)" fg:x="204467" fg:w="182"/><text x="39.7547%" y="671.50"></text></g><g><title>btrfs_root_node (65 samples, 0.01%)</title><rect x="39.5273%" y="645" width="0.0126%" height="15" fill="rgb(233,226,8)" fg:x="204584" fg:w="65"/><text x="39.7773%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (140 samples, 0.03%)</title><rect x="39.5398%" y="661" width="0.0270%" height="15" fill="rgb(229,211,3)" fg:x="204649" fg:w="140"/><text x="39.7898%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (111 samples, 0.02%)</title><rect x="39.5767%" y="661" width="0.0214%" height="15" fill="rgb(216,140,21)" fg:x="204840" fg:w="111"/><text x="39.8267%" y="671.50"></text></g><g><title>_raw_write_lock (92 samples, 0.02%)</title><rect x="39.5804%" y="645" width="0.0178%" height="15" fill="rgb(234,122,30)" fg:x="204859" fg:w="92"/><text x="39.8304%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (56 samples, 0.01%)</title><rect x="39.5982%" y="661" width="0.0108%" height="15" fill="rgb(236,25,46)" fg:x="204951" fg:w="56"/><text x="39.8482%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (737 samples, 0.14%)</title><rect x="39.6090%" y="661" width="0.1424%" height="15" fill="rgb(217,52,54)" fg:x="205007" fg:w="737"/><text x="39.8590%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (58 samples, 0.01%)</title><rect x="39.7833%" y="645" width="0.0112%" height="15" fill="rgb(222,29,26)" fg:x="205909" fg:w="58"/><text x="40.0333%" y="655.50"></text></g><g><title>btrfs_get_64 (119 samples, 0.02%)</title><rect x="39.7945%" y="645" width="0.0230%" height="15" fill="rgb(216,177,29)" fg:x="205967" fg:w="119"/><text x="40.0445%" y="655.50"></text></g><g><title>btrfs_verify_level_key (56 samples, 0.01%)</title><rect x="39.8190%" y="645" width="0.0108%" height="15" fill="rgb(247,136,51)" fg:x="206094" fg:w="56"/><text x="40.0690%" y="655.50"></text></g><g><title>__radix_tree_lookup (443 samples, 0.09%)</title><rect x="39.8600%" y="629" width="0.0856%" height="15" fill="rgb(231,47,47)" fg:x="206306" fg:w="443"/><text x="40.1100%" y="639.50"></text></g><g><title>check_buffer_tree_ref (66 samples, 0.01%)</title><rect x="39.9546%" y="613" width="0.0128%" height="15" fill="rgb(211,192,36)" fg:x="206796" fg:w="66"/><text x="40.2046%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (258 samples, 0.05%)</title><rect x="39.9461%" y="629" width="0.0498%" height="15" fill="rgb(229,156,32)" fg:x="206752" fg:w="258"/><text x="40.1961%" y="639.50"></text></g><g><title>mark_page_accessed (148 samples, 0.03%)</title><rect x="39.9674%" y="613" width="0.0286%" height="15" fill="rgb(248,213,20)" fg:x="206862" fg:w="148"/><text x="40.2174%" y="623.50"></text></g><g><title>find_extent_buffer (868 samples, 0.17%)</title><rect x="39.8298%" y="645" width="0.1677%" height="15" fill="rgb(217,64,7)" fg:x="206150" fg:w="868"/><text x="40.0798%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,444 samples, 0.28%)</title><rect x="39.7514%" y="661" width="0.2790%" height="15" fill="rgb(232,142,8)" fg:x="205744" fg:w="1444"/><text x="40.0014%" y="671.50"></text></g><g><title>read_extent_buffer (170 samples, 0.03%)</title><rect x="39.9975%" y="645" width="0.0328%" height="15" fill="rgb(224,92,44)" fg:x="207018" fg:w="170"/><text x="40.2475%" y="655.50"></text></g><g><title>btrfs_get_64 (56 samples, 0.01%)</title><rect x="40.0406%" y="645" width="0.0108%" height="15" fill="rgb(214,169,17)" fg:x="207241" fg:w="56"/><text x="40.2906%" y="655.50"></text></g><g><title>__radix_tree_lookup (99 samples, 0.02%)</title><rect x="40.0580%" y="629" width="0.0191%" height="15" fill="rgb(210,59,37)" fg:x="207331" fg:w="99"/><text x="40.3080%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (70 samples, 0.01%)</title><rect x="40.0773%" y="629" width="0.0135%" height="15" fill="rgb(214,116,48)" fg:x="207431" fg:w="70"/><text x="40.3273%" y="639.50"></text></g><g><title>find_extent_buffer (205 samples, 0.04%)</title><rect x="40.0514%" y="645" width="0.0396%" height="15" fill="rgb(244,191,6)" fg:x="207297" fg:w="205"/><text x="40.3014%" y="655.50"></text></g><g><title>reada_for_balance (397 samples, 0.08%)</title><rect x="40.0304%" y="661" width="0.0767%" height="15" fill="rgb(241,50,52)" fg:x="207188" fg:w="397"/><text x="40.2804%" y="671.50"></text></g><g><title>btrfs_search_slot (4,059 samples, 0.78%)</title><rect x="39.3727%" y="677" width="0.7842%" height="15" fill="rgb(236,75,39)" fg:x="203784" fg:w="4059"/><text x="39.6227%" y="687.50"></text></g><g><title>unlock_up (214 samples, 0.04%)</title><rect x="40.1156%" y="661" width="0.0413%" height="15" fill="rgb(236,99,0)" fg:x="207629" fg:w="214"/><text x="40.3656%" y="671.50"></text></g><g><title>btrfs_tree_unlock (54 samples, 0.01%)</title><rect x="40.1465%" y="645" width="0.0104%" height="15" fill="rgb(207,202,15)" fg:x="207789" fg:w="54"/><text x="40.3965%" y="655.50"></text></g><g><title>kmem_cache_alloc (166 samples, 0.03%)</title><rect x="40.1569%" y="677" width="0.0321%" height="15" fill="rgb(233,207,14)" fg:x="207843" fg:w="166"/><text x="40.4069%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (5,316 samples, 1.03%)</title><rect x="39.1818%" y="693" width="1.0271%" height="15" fill="rgb(226,27,51)" fg:x="202796" fg:w="5316"/><text x="39.4318%" y="703.50"></text></g><g><title>kmem_cache_free (103 samples, 0.02%)</title><rect x="40.1890%" y="677" width="0.0199%" height="15" fill="rgb(206,104,42)" fg:x="208009" fg:w="103"/><text x="40.4390%" y="687.50"></text></g><g><title>_raw_spin_lock (125 samples, 0.02%)</title><rect x="40.2203%" y="661" width="0.0242%" height="15" fill="rgb(212,225,4)" fg:x="208171" fg:w="125"/><text x="40.4703%" y="671.50"></text></g><g><title>btrfs_free_block_rsv (212 samples, 0.04%)</title><rect x="40.2097%" y="693" width="0.0410%" height="15" fill="rgb(233,96,42)" fg:x="208116" fg:w="212"/><text x="40.4597%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (208 samples, 0.04%)</title><rect x="40.2104%" y="677" width="0.0402%" height="15" fill="rgb(229,21,32)" fg:x="208120" fg:w="208"/><text x="40.4604%" y="687.50"></text></g><g><title>mutex_lock (65 samples, 0.01%)</title><rect x="40.3320%" y="661" width="0.0126%" height="15" fill="rgb(226,216,24)" fg:x="208749" fg:w="65"/><text x="40.5820%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (233 samples, 0.05%)</title><rect x="40.3117%" y="677" width="0.0450%" height="15" fill="rgb(221,163,17)" fg:x="208644" fg:w="233"/><text x="40.5617%" y="687.50"></text></g><g><title>mutex_unlock (63 samples, 0.01%)</title><rect x="40.3445%" y="661" width="0.0122%" height="15" fill="rgb(216,216,42)" fg:x="208814" fg:w="63"/><text x="40.5945%" y="671.50"></text></g><g><title>memset_erms (63 samples, 0.01%)</title><rect x="40.4106%" y="629" width="0.0122%" height="15" fill="rgb(240,118,7)" fg:x="209156" fg:w="63"/><text x="40.6606%" y="639.50"></text></g><g><title>alloc_extent_state (194 samples, 0.04%)</title><rect x="40.3913%" y="661" width="0.0375%" height="15" fill="rgb(221,67,37)" fg:x="209056" fg:w="194"/><text x="40.6413%" y="671.50"></text></g><g><title>kmem_cache_alloc (169 samples, 0.03%)</title><rect x="40.3961%" y="645" width="0.0327%" height="15" fill="rgb(241,32,44)" fg:x="209081" fg:w="169"/><text x="40.6461%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (84 samples, 0.02%)</title><rect x="40.4547%" y="629" width="0.0162%" height="15" fill="rgb(235,204,43)" fg:x="209384" fg:w="84"/><text x="40.7047%" y="639.50"></text></g><g><title>__wake_up_common_lock (188 samples, 0.04%)</title><rect x="40.4392%" y="645" width="0.0363%" height="15" fill="rgb(213,116,10)" fg:x="209304" fg:w="188"/><text x="40.6892%" y="655.50"></text></g><g><title>free_extent_state (66 samples, 0.01%)</title><rect x="40.4813%" y="645" width="0.0128%" height="15" fill="rgb(239,15,48)" fg:x="209522" fg:w="66"/><text x="40.7313%" y="655.50"></text></g><g><title>kmem_cache_free (145 samples, 0.03%)</title><rect x="40.4941%" y="645" width="0.0280%" height="15" fill="rgb(207,123,36)" fg:x="209588" fg:w="145"/><text x="40.7441%" y="655.50"></text></g><g><title>clear_state_bit (498 samples, 0.10%)</title><rect x="40.4290%" y="661" width="0.0962%" height="15" fill="rgb(209,103,30)" fg:x="209251" fg:w="498"/><text x="40.6790%" y="671.50"></text></g><g><title>free_extent_state (59 samples, 0.01%)</title><rect x="40.5252%" y="661" width="0.0114%" height="15" fill="rgb(238,100,19)" fg:x="209749" fg:w="59"/><text x="40.7752%" y="671.50"></text></g><g><title>__clear_extent_bit (1,057 samples, 0.20%)</title><rect x="40.3567%" y="677" width="0.2042%" height="15" fill="rgb(244,30,14)" fg:x="208877" fg:w="1057"/><text x="40.6067%" y="687.50"></text></g><g><title>kmem_cache_free (126 samples, 0.02%)</title><rect x="40.5366%" y="661" width="0.0243%" height="15" fill="rgb(249,174,6)" fg:x="209808" fg:w="126"/><text x="40.7866%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (386 samples, 0.07%)</title><rect x="40.7534%" y="597" width="0.0746%" height="15" fill="rgb(235,213,41)" fg:x="210930" fg:w="386"/><text x="41.0034%" y="607.50"></text></g><g><title>steal_from_bitmap.part.0 (454 samples, 0.09%)</title><rect x="40.7452%" y="613" width="0.0877%" height="15" fill="rgb(213,118,6)" fg:x="210888" fg:w="454"/><text x="40.9952%" y="623.50"></text></g><g><title>__btrfs_add_free_space (529 samples, 0.10%)</title><rect x="40.7375%" y="629" width="0.1022%" height="15" fill="rgb(235,44,51)" fg:x="210848" fg:w="529"/><text x="40.9875%" y="639.50"></text></g><g><title>btrfs_add_delayed_tree_ref (85 samples, 0.02%)</title><rect x="40.8434%" y="629" width="0.0164%" height="15" fill="rgb(217,9,53)" fg:x="211396" fg:w="85"/><text x="41.0934%" y="639.50"></text></g><g><title>btrfs_free_tree_block (711 samples, 0.14%)</title><rect x="40.7369%" y="645" width="0.1374%" height="15" fill="rgb(237,172,34)" fg:x="210845" fg:w="711"/><text x="40.9869%" y="655.50"></text></g><g><title>check_ref_cleanup (68 samples, 0.01%)</title><rect x="40.8612%" y="629" width="0.0131%" height="15" fill="rgb(206,206,11)" fg:x="211488" fg:w="68"/><text x="41.1112%" y="639.50"></text></g><g><title>btrfs_del_leaf (774 samples, 0.15%)</title><rect x="40.7352%" y="661" width="0.1495%" height="15" fill="rgb(214,149,29)" fg:x="210836" fg:w="774"/><text x="40.9852%" y="671.50"></text></g><g><title>btrfs_get_32 (154 samples, 0.03%)</title><rect x="40.8847%" y="661" width="0.0298%" height="15" fill="rgb(208,123,3)" fg:x="211610" fg:w="154"/><text x="41.1347%" y="671.50"></text></g><g><title>btrfs_get_token_32 (1,919 samples, 0.37%)</title><rect x="40.9145%" y="661" width="0.3708%" height="15" fill="rgb(229,126,4)" fg:x="211764" fg:w="1919"/><text x="41.1645%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (332 samples, 0.06%)</title><rect x="41.2211%" y="645" width="0.0641%" height="15" fill="rgb(222,92,36)" fg:x="213351" fg:w="332"/><text x="41.4711%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (132 samples, 0.03%)</title><rect x="41.2853%" y="661" width="0.0255%" height="15" fill="rgb(216,39,41)" fg:x="213683" fg:w="132"/><text x="41.5353%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (107 samples, 0.02%)</title><rect x="41.2901%" y="645" width="0.0207%" height="15" fill="rgb(253,127,28)" fg:x="213708" fg:w="107"/><text x="41.5401%" y="655.50"></text></g><g><title>btrfs_set_token_32 (1,942 samples, 0.38%)</title><rect x="41.3125%" y="661" width="0.3752%" height="15" fill="rgb(249,152,51)" fg:x="213824" fg:w="1942"/><text x="41.5625%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (423 samples, 0.08%)</title><rect x="41.6060%" y="645" width="0.0817%" height="15" fill="rgb(209,123,42)" fg:x="215343" fg:w="423"/><text x="41.8560%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (159 samples, 0.03%)</title><rect x="41.7001%" y="645" width="0.0307%" height="15" fill="rgb(241,118,22)" fg:x="215830" fg:w="159"/><text x="41.9501%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (92 samples, 0.02%)</title><rect x="41.7130%" y="629" width="0.0178%" height="15" fill="rgb(208,25,7)" fg:x="215897" fg:w="92"/><text x="41.9630%" y="639.50"></text></g><g><title>tree_mod_log_insert_key (63 samples, 0.01%)</title><rect x="41.7308%" y="645" width="0.0122%" height="15" fill="rgb(243,144,39)" fg:x="215989" fg:w="63"/><text x="41.9808%" y="655.50"></text></g><g><title>fixup_low_keys (338 samples, 0.07%)</title><rect x="41.6956%" y="661" width="0.0653%" height="15" fill="rgb(250,50,5)" fg:x="215807" fg:w="338"/><text x="41.9456%" y="671.50"></text></g><g><title>write_extent_buffer (93 samples, 0.02%)</title><rect x="41.7430%" y="645" width="0.0180%" height="15" fill="rgb(207,67,11)" fg:x="216052" fg:w="93"/><text x="41.9930%" y="655.50"></text></g><g><title>leaf_space_used (148 samples, 0.03%)</title><rect x="41.7640%" y="661" width="0.0286%" height="15" fill="rgb(245,204,40)" fg:x="216161" fg:w="148"/><text x="42.0140%" y="671.50"></text></g><g><title>btrfs_get_32 (104 samples, 0.02%)</title><rect x="41.7725%" y="645" width="0.0201%" height="15" fill="rgb(238,228,24)" fg:x="216205" fg:w="104"/><text x="42.0225%" y="655.50"></text></g><g><title>memcpy_extent_buffer (298 samples, 0.06%)</title><rect x="41.7926%" y="661" width="0.0576%" height="15" fill="rgb(217,116,22)" fg:x="216309" fg:w="298"/><text x="42.0426%" y="671.50"></text></g><g><title>memmove (238 samples, 0.05%)</title><rect x="41.8042%" y="645" width="0.0460%" height="15" fill="rgb(234,98,12)" fg:x="216369" fg:w="238"/><text x="42.0542%" y="655.50"></text></g><g><title>copy_pages (277 samples, 0.05%)</title><rect x="41.8751%" y="645" width="0.0535%" height="15" fill="rgb(242,170,50)" fg:x="216736" fg:w="277"/><text x="42.1251%" y="655.50"></text></g><g><title>memmove_extent_buffer (2,271 samples, 0.44%)</title><rect x="41.8502%" y="661" width="0.4388%" height="15" fill="rgb(235,7,5)" fg:x="216607" fg:w="2271"/><text x="42.1002%" y="671.50"></text></g><g><title>memmove (1,865 samples, 0.36%)</title><rect x="41.9286%" y="645" width="0.3603%" height="15" fill="rgb(241,114,28)" fg:x="217013" fg:w="1865"/><text x="42.1786%" y="655.50"></text></g><g><title>clear_extent_buffer_dirty (66 samples, 0.01%)</title><rect x="42.3143%" y="629" width="0.0128%" height="15" fill="rgb(246,112,42)" fg:x="219009" fg:w="66"/><text x="42.5643%" y="639.50"></text></g><g><title>__push_leaf_left (221 samples, 0.04%)</title><rect x="42.2903%" y="645" width="0.0427%" height="15" fill="rgb(248,228,14)" fg:x="218885" fg:w="221"/><text x="42.5403%" y="655.50"></text></g><g><title>btrfs_read_node_slot (60 samples, 0.01%)</title><rect x="42.3373%" y="645" width="0.0116%" height="15" fill="rgb(208,133,18)" fg:x="219128" fg:w="60"/><text x="42.5873%" y="655.50"></text></g><g><title>push_leaf_left (319 samples, 0.06%)</title><rect x="42.2890%" y="661" width="0.0616%" height="15" fill="rgb(207,35,49)" fg:x="218878" fg:w="319"/><text x="42.5390%" y="671.50"></text></g><g><title>__push_leaf_right (242 samples, 0.05%)</title><rect x="42.3549%" y="645" width="0.0468%" height="15" fill="rgb(205,68,36)" fg:x="219219" fg:w="242"/><text x="42.6049%" y="655.50"></text></g><g><title>alloc_extent_buffer (52 samples, 0.01%)</title><rect x="42.4194%" y="613" width="0.0100%" height="15" fill="rgb(245,62,40)" fg:x="219553" fg:w="52"/><text x="42.6694%" y="623.50"></text></g><g><title>btrfs_read_node_slot (98 samples, 0.02%)</title><rect x="42.4144%" y="645" width="0.0189%" height="15" fill="rgb(228,27,24)" fg:x="219527" fg:w="98"/><text x="42.6644%" y="655.50"></text></g><g><title>read_tree_block (74 samples, 0.01%)</title><rect x="42.4190%" y="629" width="0.0143%" height="15" fill="rgb(253,19,12)" fg:x="219551" fg:w="74"/><text x="42.6690%" y="639.50"></text></g><g><title>push_leaf_right (462 samples, 0.09%)</title><rect x="42.3506%" y="661" width="0.0893%" height="15" fill="rgb(232,28,20)" fg:x="219197" fg:w="462"/><text x="42.6006%" y="671.50"></text></g><g><title>read_extent_buffer (81 samples, 0.02%)</title><rect x="42.4399%" y="661" width="0.0156%" height="15" fill="rgb(218,35,51)" fg:x="219659" fg:w="81"/><text x="42.6899%" y="671.50"></text></g><g><title>btrfs_del_items (9,846 samples, 1.90%)</title><rect x="40.5615%" y="677" width="1.9023%" height="15" fill="rgb(212,90,40)" fg:x="209937" fg:w="9846"/><text x="40.8115%" y="687.50">b..</text></g><g><title>_raw_write_lock (67 samples, 0.01%)</title><rect x="42.4745%" y="661" width="0.0129%" height="15" fill="rgb(220,172,12)" fg:x="219838" fg:w="67"/><text x="42.7245%" y="671.50"></text></g><g><title>memset_erms (140 samples, 0.03%)</title><rect x="42.5427%" y="629" width="0.0270%" height="15" fill="rgb(226,159,20)" fg:x="220191" fg:w="140"/><text x="42.7927%" y="639.50"></text></g><g><title>alloc_extent_map (511 samples, 0.10%)</title><rect x="42.4874%" y="661" width="0.0987%" height="15" fill="rgb(234,205,16)" fg:x="219905" fg:w="511"/><text x="42.7374%" y="671.50"></text></g><g><title>kmem_cache_alloc (463 samples, 0.09%)</title><rect x="42.4967%" y="645" width="0.0895%" height="15" fill="rgb(207,9,39)" fg:x="219953" fg:w="463"/><text x="42.7467%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (85 samples, 0.02%)</title><rect x="42.5697%" y="629" width="0.0164%" height="15" fill="rgb(249,143,15)" fg:x="220331" fg:w="85"/><text x="42.8197%" y="639.50"></text></g><g><title>free_extent_map (109 samples, 0.02%)</title><rect x="42.5861%" y="661" width="0.0211%" height="15" fill="rgb(253,133,29)" fg:x="220416" fg:w="109"/><text x="42.8361%" y="671.50"></text></g><g><title>kmem_cache_free (256 samples, 0.05%)</title><rect x="42.6072%" y="661" width="0.0495%" height="15" fill="rgb(221,187,0)" fg:x="220525" fg:w="256"/><text x="42.8572%" y="671.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (63 samples, 0.01%)</title><rect x="42.6445%" y="645" width="0.0122%" height="15" fill="rgb(205,204,26)" fg:x="220718" fg:w="63"/><text x="42.8945%" y="655.50"></text></g><g><title>btrfs_drop_extent_cache (1,000 samples, 0.19%)</title><rect x="42.4638%" y="677" width="0.1932%" height="15" fill="rgb(224,68,54)" fg:x="219783" fg:w="1000"/><text x="42.7138%" y="687.50"></text></g><g><title>btrfs_tree_unlock (133 samples, 0.03%)</title><rect x="42.6725%" y="645" width="0.0257%" height="15" fill="rgb(209,67,4)" fg:x="220863" fg:w="133"/><text x="42.9225%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (176 samples, 0.03%)</title><rect x="42.6992%" y="645" width="0.0340%" height="15" fill="rgb(228,229,18)" fg:x="221001" fg:w="176"/><text x="42.9492%" y="655.50"></text></g><g><title>_raw_spin_lock (134 samples, 0.03%)</title><rect x="42.7073%" y="629" width="0.0259%" height="15" fill="rgb(231,89,13)" fg:x="221043" fg:w="134"/><text x="42.9573%" y="639.50"></text></g><g><title>btrfs_free_path (585 samples, 0.11%)</title><rect x="42.6570%" y="677" width="0.1130%" height="15" fill="rgb(210,182,18)" fg:x="220783" fg:w="585"/><text x="42.9070%" y="687.50"></text></g><g><title>btrfs_release_path (577 samples, 0.11%)</title><rect x="42.6586%" y="661" width="0.1115%" height="15" fill="rgb(240,105,2)" fg:x="220791" fg:w="577"/><text x="42.9086%" y="671.50"></text></g><g><title>release_extent_buffer (191 samples, 0.04%)</title><rect x="42.7332%" y="645" width="0.0369%" height="15" fill="rgb(207,170,50)" fg:x="221177" fg:w="191"/><text x="42.9832%" y="655.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="42.8066%" y="629" width="0.0120%" height="15" fill="rgb(232,133,24)" fg:x="221557" fg:w="62"/><text x="43.0566%" y="639.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="42.8487%" y="597" width="0.0126%" height="15" fill="rgb(235,166,27)" fg:x="221775" fg:w="65"/><text x="43.0987%" y="607.50"></text></g><g><title>alloc_extent_state (260 samples, 0.05%)</title><rect x="42.8186%" y="629" width="0.0502%" height="15" fill="rgb(209,19,13)" fg:x="221619" fg:w="260"/><text x="43.0686%" y="639.50"></text></g><g><title>kmem_cache_alloc (237 samples, 0.05%)</title><rect x="42.8230%" y="613" width="0.0458%" height="15" fill="rgb(226,79,39)" fg:x="221642" fg:w="237"/><text x="43.0730%" y="623.50"></text></g><g><title>free_extent_state (53 samples, 0.01%)</title><rect x="42.8688%" y="629" width="0.0102%" height="15" fill="rgb(222,163,10)" fg:x="221879" fg:w="53"/><text x="43.1188%" y="639.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (609 samples, 0.12%)</title><rect x="42.7890%" y="677" width="0.1177%" height="15" fill="rgb(214,44,19)" fg:x="221466" fg:w="609"/><text x="43.0390%" y="687.50"></text></g><g><title>clear_extent_bit (564 samples, 0.11%)</title><rect x="42.7977%" y="661" width="0.1090%" height="15" fill="rgb(210,217,13)" fg:x="221511" fg:w="564"/><text x="43.0477%" y="671.50"></text></g><g><title>__clear_extent_bit (560 samples, 0.11%)</title><rect x="42.7985%" y="645" width="0.1082%" height="15" fill="rgb(237,61,54)" fg:x="221515" fg:w="560"/><text x="43.0485%" y="655.50"></text></g><g><title>kmem_cache_free (143 samples, 0.03%)</title><rect x="42.8790%" y="629" width="0.0276%" height="15" fill="rgb(226,184,24)" fg:x="221932" fg:w="143"/><text x="43.1290%" y="639.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="42.9125%" y="661" width="0.0100%" height="15" fill="rgb(223,226,4)" fg:x="222105" fg:w="52"/><text x="43.1625%" y="671.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="42.9271%" y="645" width="0.0102%" height="15" fill="rgb(210,26,41)" fg:x="222181" fg:w="53"/><text x="43.1771%" y="655.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (164 samples, 0.03%)</title><rect x="42.9067%" y="677" width="0.0317%" height="15" fill="rgb(220,221,6)" fg:x="222075" fg:w="164"/><text x="43.1567%" y="687.50"></text></g><g><title>find_contiguous_extent_bit (81 samples, 0.02%)</title><rect x="42.9227%" y="661" width="0.0156%" height="15" fill="rgb(225,89,49)" fg:x="222158" fg:w="81"/><text x="43.1727%" y="671.50"></text></g><g><title>__btrfs_kill_delayed_node (97 samples, 0.02%)</title><rect x="42.9447%" y="661" width="0.0187%" height="15" fill="rgb(218,70,45)" fg:x="222272" fg:w="97"/><text x="43.1947%" y="671.50"></text></g><g><title>mutex_lock (74 samples, 0.01%)</title><rect x="42.9492%" y="645" width="0.0143%" height="15" fill="rgb(238,166,21)" fg:x="222295" fg:w="74"/><text x="43.1992%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (70 samples, 0.01%)</title><rect x="42.9635%" y="661" width="0.0135%" height="15" fill="rgb(224,141,44)" fg:x="222369" fg:w="70"/><text x="43.2135%" y="671.50"></text></g><g><title>btrfs_kill_delayed_inode_items (264 samples, 0.05%)</title><rect x="42.9383%" y="677" width="0.0510%" height="15" fill="rgb(230,12,49)" fg:x="222239" fg:w="264"/><text x="43.1883%" y="687.50"></text></g><g><title>mutex_unlock (64 samples, 0.01%)</title><rect x="42.9770%" y="661" width="0.0124%" height="15" fill="rgb(212,174,12)" fg:x="222439" fg:w="64"/><text x="43.2270%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (73 samples, 0.01%)</title><rect x="43.0525%" y="645" width="0.0141%" height="15" fill="rgb(246,67,9)" fg:x="222830" fg:w="73"/><text x="43.3025%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (169 samples, 0.03%)</title><rect x="43.0500%" y="661" width="0.0327%" height="15" fill="rgb(239,35,23)" fg:x="222817" fg:w="169"/><text x="43.3000%" y="671.50"></text></g><g><title>btrfs_root_node (83 samples, 0.02%)</title><rect x="43.0666%" y="645" width="0.0160%" height="15" fill="rgb(211,167,0)" fg:x="222903" fg:w="83"/><text x="43.3166%" y="655.50"></text></g><g><title>btrfs_read_node_slot (88 samples, 0.02%)</title><rect x="43.1043%" y="645" width="0.0170%" height="15" fill="rgb(225,119,45)" fg:x="223098" fg:w="88"/><text x="43.3543%" y="655.50"></text></g><g><title>read_tree_block (66 samples, 0.01%)</title><rect x="43.1086%" y="629" width="0.0128%" height="15" fill="rgb(210,162,6)" fg:x="223120" fg:w="66"/><text x="43.3586%" y="639.50"></text></g><g><title>balance_level (246 samples, 0.05%)</title><rect x="43.0848%" y="661" width="0.0475%" height="15" fill="rgb(208,118,35)" fg:x="222997" fg:w="246"/><text x="43.3348%" y="671.50"></text></g><g><title>_raw_write_lock (76 samples, 0.01%)</title><rect x="43.1499%" y="629" width="0.0147%" height="15" fill="rgb(239,4,53)" fg:x="223334" fg:w="76"/><text x="43.3999%" y="639.50"></text></g><g><title>__btrfs_tree_lock (114 samples, 0.02%)</title><rect x="43.1428%" y="645" width="0.0220%" height="15" fill="rgb(213,130,21)" fg:x="223297" fg:w="114"/><text x="43.3928%" y="655.50"></text></g><g><title>btrfs_lock_root_node (172 samples, 0.03%)</title><rect x="43.1412%" y="661" width="0.0332%" height="15" fill="rgb(235,148,0)" fg:x="223289" fg:w="172"/><text x="43.3912%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (150 samples, 0.03%)</title><rect x="43.1744%" y="661" width="0.0290%" height="15" fill="rgb(244,224,18)" fg:x="223461" fg:w="150"/><text x="43.4244%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock (66 samples, 0.01%)</title><rect x="43.2034%" y="661" width="0.0128%" height="15" fill="rgb(211,214,4)" fg:x="223611" fg:w="66"/><text x="43.4534%" y="671.50"></text></g><g><title>_raw_write_lock (85 samples, 0.02%)</title><rect x="43.2218%" y="645" width="0.0164%" height="15" fill="rgb(206,119,25)" fg:x="223706" fg:w="85"/><text x="43.4718%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (118 samples, 0.02%)</title><rect x="43.2162%" y="661" width="0.0228%" height="15" fill="rgb(243,93,47)" fg:x="223677" fg:w="118"/><text x="43.4662%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (72 samples, 0.01%)</title><rect x="43.2394%" y="661" width="0.0139%" height="15" fill="rgb(224,194,6)" fg:x="223797" fg:w="72"/><text x="43.4894%" y="671.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="43.2415%" y="645" width="0.0118%" height="15" fill="rgb(243,229,6)" fg:x="223808" fg:w="61"/><text x="43.4915%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (808 samples, 0.16%)</title><rect x="43.2533%" y="661" width="0.1561%" height="15" fill="rgb(207,23,50)" fg:x="223869" fg:w="808"/><text x="43.5033%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (64 samples, 0.01%)</title><rect x="43.4384%" y="645" width="0.0124%" height="15" fill="rgb(253,192,32)" fg:x="224827" fg:w="64"/><text x="43.6884%" y="655.50"></text></g><g><title>btrfs_get_64 (101 samples, 0.02%)</title><rect x="43.4507%" y="645" width="0.0195%" height="15" fill="rgb(213,21,6)" fg:x="224891" fg:w="101"/><text x="43.7007%" y="655.50"></text></g><g><title>__radix_tree_lookup (439 samples, 0.08%)</title><rect x="43.5046%" y="629" width="0.0848%" height="15" fill="rgb(243,151,13)" fg:x="225170" fg:w="439"/><text x="43.7546%" y="639.50"></text></g><g><title>check_buffer_tree_ref (63 samples, 0.01%)</title><rect x="43.5997%" y="613" width="0.0122%" height="15" fill="rgb(233,165,41)" fg:x="225662" fg:w="63"/><text x="43.8497%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (279 samples, 0.05%)</title><rect x="43.5900%" y="629" width="0.0539%" height="15" fill="rgb(246,176,45)" fg:x="225612" fg:w="279"/><text x="43.8400%" y="639.50"></text></g><g><title>mark_page_accessed (166 samples, 0.03%)</title><rect x="43.6119%" y="613" width="0.0321%" height="15" fill="rgb(217,170,52)" fg:x="225725" fg:w="166"/><text x="43.8619%" y="623.50"></text></g><g><title>find_extent_buffer (850 samples, 0.16%)</title><rect x="43.4805%" y="645" width="0.1642%" height="15" fill="rgb(214,203,54)" fg:x="225045" fg:w="850"/><text x="43.7305%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,370 samples, 0.26%)</title><rect x="43.4094%" y="661" width="0.2647%" height="15" fill="rgb(248,215,49)" fg:x="224677" fg:w="1370"/><text x="43.6594%" y="671.50"></text></g><g><title>read_extent_buffer (152 samples, 0.03%)</title><rect x="43.6447%" y="645" width="0.0294%" height="15" fill="rgb(208,46,10)" fg:x="225895" fg:w="152"/><text x="43.8947%" y="655.50"></text></g><g><title>btrfs_get_64 (57 samples, 0.01%)</title><rect x="43.6870%" y="645" width="0.0110%" height="15" fill="rgb(254,5,31)" fg:x="226114" fg:w="57"/><text x="43.9370%" y="655.50"></text></g><g><title>__radix_tree_lookup (160 samples, 0.03%)</title><rect x="43.7087%" y="629" width="0.0309%" height="15" fill="rgb(222,104,33)" fg:x="226226" fg:w="160"/><text x="43.9587%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (99 samples, 0.02%)</title><rect x="43.7398%" y="629" width="0.0191%" height="15" fill="rgb(248,49,16)" fg:x="226387" fg:w="99"/><text x="43.9898%" y="639.50"></text></g><g><title>mark_page_accessed (59 samples, 0.01%)</title><rect x="43.7475%" y="613" width="0.0114%" height="15" fill="rgb(232,198,41)" fg:x="226427" fg:w="59"/><text x="43.9975%" y="623.50"></text></g><g><title>find_extent_buffer (320 samples, 0.06%)</title><rect x="43.6980%" y="645" width="0.0618%" height="15" fill="rgb(214,125,3)" fg:x="226171" fg:w="320"/><text x="43.9480%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (54 samples, 0.01%)</title><rect x="43.7601%" y="645" width="0.0104%" height="15" fill="rgb(229,220,28)" fg:x="226492" fg:w="54"/><text x="44.0101%" y="655.50"></text></g><g><title>reada_for_balance (538 samples, 0.10%)</title><rect x="43.6741%" y="661" width="0.1039%" height="15" fill="rgb(222,64,37)" fg:x="226047" fg:w="538"/><text x="43.9241%" y="671.50"></text></g><g><title>release_extent_buffer (63 samples, 0.01%)</title><rect x="43.7780%" y="661" width="0.0122%" height="15" fill="rgb(249,184,13)" fg:x="226585" fg:w="63"/><text x="44.0280%" y="671.50"></text></g><g><title>btrfs_search_slot (4,308 samples, 0.83%)</title><rect x="42.9923%" y="677" width="0.8323%" height="15" fill="rgb(252,176,6)" fg:x="222518" fg:w="4308"/><text x="43.2423%" y="687.50"></text></g><g><title>unlock_up (178 samples, 0.03%)</title><rect x="43.7902%" y="661" width="0.0344%" height="15" fill="rgb(228,153,7)" fg:x="226648" fg:w="178"/><text x="44.0402%" y="671.50"></text></g><g><title>inode_sub_bytes (93 samples, 0.02%)</title><rect x="43.8246%" y="677" width="0.0180%" height="15" fill="rgb(242,193,5)" fg:x="226826" fg:w="93"/><text x="44.0746%" y="687.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="43.8302%" y="661" width="0.0124%" height="15" fill="rgb(232,140,9)" fg:x="226855" fg:w="64"/><text x="44.0802%" y="671.50"></text></g><g><title>kmem_cache_alloc (157 samples, 0.03%)</title><rect x="43.8426%" y="677" width="0.0303%" height="15" fill="rgb(213,222,16)" fg:x="226919" fg:w="157"/><text x="44.0926%" y="687.50"></text></g><g><title>kmem_cache_free (139 samples, 0.03%)</title><rect x="43.8729%" y="677" width="0.0269%" height="15" fill="rgb(222,75,50)" fg:x="227076" fg:w="139"/><text x="44.1229%" y="687.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="43.9218%" y="645" width="0.0129%" height="15" fill="rgb(205,180,2)" fg:x="227329" fg:w="67"/><text x="44.1718%" y="655.50"></text></g><g><title>memset_erms (69 samples, 0.01%)</title><rect x="43.9909%" y="613" width="0.0133%" height="15" fill="rgb(216,34,7)" fg:x="227687" fg:w="69"/><text x="44.2409%" y="623.50"></text></g><g><title>alloc_extent_state (402 samples, 0.08%)</title><rect x="43.9347%" y="645" width="0.0777%" height="15" fill="rgb(253,16,32)" fg:x="227396" fg:w="402"/><text x="44.1847%" y="655.50"></text></g><g><title>kmem_cache_alloc (275 samples, 0.05%)</title><rect x="43.9593%" y="629" width="0.0531%" height="15" fill="rgb(208,97,28)" fg:x="227523" fg:w="275"/><text x="44.2093%" y="639.50"></text></g><g><title>lock_extent_bits (714 samples, 0.14%)</title><rect x="43.8997%" y="677" width="0.1380%" height="15" fill="rgb(225,92,11)" fg:x="227215" fg:w="714"/><text x="44.1497%" y="687.50"></text></g><g><title>__set_extent_bit (698 samples, 0.13%)</title><rect x="43.9028%" y="661" width="0.1349%" height="15" fill="rgb(243,38,12)" fg:x="227231" fg:w="698"/><text x="44.1528%" y="671.50"></text></g><g><title>insert_state (87 samples, 0.02%)</title><rect x="44.0209%" y="645" width="0.0168%" height="15" fill="rgb(208,139,16)" fg:x="227842" fg:w="87"/><text x="44.2709%" y="655.50"></text></g><g><title>btrfs_truncate_inode_items (19,762 samples, 3.82%)</title><rect x="40.2566%" y="693" width="3.8182%" height="15" fill="rgb(227,24,9)" fg:x="208359" fg:w="19762"/><text x="40.5066%" y="703.50">btrf..</text></g><g><title>read_extent_buffer (192 samples, 0.04%)</title><rect x="44.0377%" y="677" width="0.0371%" height="15" fill="rgb(206,62,11)" fg:x="227929" fg:w="192"/><text x="44.2877%" y="687.50"></text></g><g><title>_raw_spin_lock (223 samples, 0.04%)</title><rect x="44.1030%" y="661" width="0.0431%" height="15" fill="rgb(228,134,27)" fg:x="228267" fg:w="223"/><text x="44.3530%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (279 samples, 0.05%)</title><rect x="44.0924%" y="677" width="0.0539%" height="15" fill="rgb(205,55,33)" fg:x="228212" fg:w="279"/><text x="44.3424%" y="687.50"></text></g><g><title>_raw_spin_lock (127 samples, 0.02%)</title><rect x="44.1592%" y="661" width="0.0245%" height="15" fill="rgb(243,75,43)" fg:x="228558" fg:w="127"/><text x="44.4092%" y="671.50"></text></g><g><title>btrfs_block_rsv_add_bytes (147 samples, 0.03%)</title><rect x="44.1838%" y="661" width="0.0284%" height="15" fill="rgb(223,27,42)" fg:x="228685" fg:w="147"/><text x="44.4338%" y="671.50"></text></g><g><title>_raw_spin_lock (120 samples, 0.02%)</title><rect x="44.1890%" y="645" width="0.0232%" height="15" fill="rgb(232,189,33)" fg:x="228712" fg:w="120"/><text x="44.4390%" y="655.50"></text></g><g><title>_raw_spin_lock (133 samples, 0.03%)</title><rect x="44.2388%" y="629" width="0.0257%" height="15" fill="rgb(210,9,39)" fg:x="228970" fg:w="133"/><text x="44.4888%" y="639.50"></text></g><g><title>_raw_spin_lock (236 samples, 0.05%)</title><rect x="44.3978%" y="597" width="0.0456%" height="15" fill="rgb(242,85,26)" fg:x="229793" fg:w="236"/><text x="44.6478%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (927 samples, 0.18%)</title><rect x="44.2647%" y="629" width="0.1791%" height="15" fill="rgb(248,44,4)" fg:x="229104" fg:w="927"/><text x="44.5147%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (532 samples, 0.10%)</title><rect x="44.3410%" y="613" width="0.1028%" height="15" fill="rgb(250,96,46)" fg:x="229499" fg:w="532"/><text x="44.5910%" y="623.50"></text></g><g><title>_raw_spin_lock (82 samples, 0.02%)</title><rect x="44.5111%" y="597" width="0.0158%" height="15" fill="rgb(229,116,26)" fg:x="230379" fg:w="82"/><text x="44.7611%" y="607.50"></text></g><g><title>btrfs_block_rsv_refill (1,971 samples, 0.38%)</title><rect x="44.1463%" y="677" width="0.3808%" height="15" fill="rgb(246,94,34)" fg:x="228491" fg:w="1971"/><text x="44.3963%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,630 samples, 0.31%)</title><rect x="44.2122%" y="661" width="0.3149%" height="15" fill="rgb(251,73,21)" fg:x="228832" fg:w="1630"/><text x="44.4622%" y="671.50"></text></g><g><title>__reserve_bytes (1,601 samples, 0.31%)</title><rect x="44.2178%" y="645" width="0.3093%" height="15" fill="rgb(254,121,25)" fg:x="228861" fg:w="1601"/><text x="44.4678%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (431 samples, 0.08%)</title><rect x="44.4438%" y="629" width="0.0833%" height="15" fill="rgb(215,161,49)" fg:x="230031" fg:w="431"/><text x="44.6938%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (240 samples, 0.05%)</title><rect x="44.4807%" y="613" width="0.0464%" height="15" fill="rgb(221,43,13)" fg:x="230222" fg:w="240"/><text x="44.7307%" y="623.50"></text></g><g><title>_raw_spin_lock (122 samples, 0.02%)</title><rect x="44.6283%" y="645" width="0.0236%" height="15" fill="rgb(249,5,37)" fg:x="230986" fg:w="122"/><text x="44.8783%" y="655.50"></text></g><g><title>join_transaction (355 samples, 0.07%)</title><rect x="44.5835%" y="661" width="0.0686%" height="15" fill="rgb(226,25,44)" fg:x="230754" fg:w="355"/><text x="44.8335%" y="671.50"></text></g><g><title>memset_erms (112 samples, 0.02%)</title><rect x="44.6826%" y="645" width="0.0216%" height="15" fill="rgb(238,189,16)" fg:x="231267" fg:w="112"/><text x="44.9326%" y="655.50"></text></g><g><title>evict_refill_and_join (3,267 samples, 0.63%)</title><rect x="44.0835%" y="693" width="0.6312%" height="15" fill="rgb(251,186,8)" fg:x="228166" fg:w="3267"/><text x="44.3335%" y="703.50"></text></g><g><title>start_transaction (961 samples, 0.19%)</title><rect x="44.5290%" y="677" width="0.1857%" height="15" fill="rgb(254,34,31)" fg:x="230472" fg:w="961"/><text x="44.7790%" y="687.50"></text></g><g><title>kmem_cache_alloc (324 samples, 0.06%)</title><rect x="44.6521%" y="661" width="0.0626%" height="15" fill="rgb(225,215,27)" fg:x="231109" fg:w="324"/><text x="44.9021%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (54 samples, 0.01%)</title><rect x="44.7043%" y="645" width="0.0104%" height="15" fill="rgb(221,192,48)" fg:x="231379" fg:w="54"/><text x="44.9543%" y="655.50"></text></g><g><title>kfree (151 samples, 0.03%)</title><rect x="44.7159%" y="693" width="0.0292%" height="15" fill="rgb(219,137,20)" fg:x="231439" fg:w="151"/><text x="44.9659%" y="703.50"></text></g><g><title>__slab_free (167 samples, 0.03%)</title><rect x="44.7653%" y="677" width="0.0323%" height="15" fill="rgb(219,84,11)" fg:x="231695" fg:w="167"/><text x="45.0153%" y="687.50"></text></g><g><title>kmem_cache_free (347 samples, 0.07%)</title><rect x="44.7450%" y="693" width="0.0670%" height="15" fill="rgb(224,10,23)" fg:x="231590" fg:w="347"/><text x="44.9950%" y="703.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (58 samples, 0.01%)</title><rect x="44.8009%" y="677" width="0.0112%" height="15" fill="rgb(248,22,39)" fg:x="231879" fg:w="58"/><text x="45.0509%" y="687.50"></text></g><g><title>truncate_inode_pages_final (86 samples, 0.02%)</title><rect x="44.8239%" y="693" width="0.0166%" height="15" fill="rgb(212,154,20)" fg:x="231998" fg:w="86"/><text x="45.0739%" y="703.50"></text></g><g><title>free_unref_page_list (54 samples, 0.01%)</title><rect x="44.8509%" y="645" width="0.0104%" height="15" fill="rgb(236,199,50)" fg:x="232138" fg:w="54"/><text x="45.1009%" y="655.50"></text></g><g><title>__pagevec_release (126 samples, 0.02%)</title><rect x="44.8449%" y="677" width="0.0243%" height="15" fill="rgb(211,9,17)" fg:x="232107" fg:w="126"/><text x="45.0949%" y="687.50"></text></g><g><title>release_pages (124 samples, 0.02%)</title><rect x="44.8453%" y="661" width="0.0240%" height="15" fill="rgb(243,216,36)" fg:x="232109" fg:w="124"/><text x="45.0953%" y="671.50"></text></g><g><title>btrfs_evict_inode (48,394 samples, 9.35%)</title><rect x="35.5369%" y="709" width="9.3501%" height="15" fill="rgb(250,2,10)" fg:x="183931" fg:w="48394"/><text x="35.7869%" y="719.50">btrfs_evict_i..</text></g><g><title>truncate_inode_pages_range (241 samples, 0.05%)</title><rect x="44.8405%" y="693" width="0.0466%" height="15" fill="rgb(226,50,48)" fg:x="232084" fg:w="241"/><text x="45.0905%" y="703.50"></text></g><g><title>clear_inode (80 samples, 0.02%)</title><rect x="44.8870%" y="709" width="0.0155%" height="15" fill="rgb(243,81,16)" fg:x="232325" fg:w="80"/><text x="45.1370%" y="719.50"></text></g><g><title>_raw_spin_lock_irq (59 samples, 0.01%)</title><rect x="44.8911%" y="693" width="0.0114%" height="15" fill="rgb(250,14,2)" fg:x="232346" fg:w="59"/><text x="45.1411%" y="703.50"></text></g><g><title>_raw_spin_lock (102 samples, 0.02%)</title><rect x="44.9100%" y="693" width="0.0197%" height="15" fill="rgb(233,135,29)" fg:x="232444" fg:w="102"/><text x="45.1600%" y="703.50"></text></g><g><title>inode_wait_for_writeback (143 samples, 0.03%)</title><rect x="44.9025%" y="709" width="0.0276%" height="15" fill="rgb(224,64,43)" fg:x="232405" fg:w="143"/><text x="45.1525%" y="719.50"></text></g><g><title>evict (49,314 samples, 9.53%)</title><rect x="35.4057%" y="725" width="9.5279%" height="15" fill="rgb(238,84,13)" fg:x="183252" fg:w="49314"/><text x="35.6557%" y="735.50">evict</text></g><g><title>__legitimize_mnt (86 samples, 0.02%)</title><rect x="44.9605%" y="645" width="0.0166%" height="15" fill="rgb(253,48,26)" fg:x="232705" fg:w="86"/><text x="45.2105%" y="655.50"></text></g><g><title>__legitimize_path (168 samples, 0.03%)</title><rect x="44.9566%" y="661" width="0.0325%" height="15" fill="rgb(205,223,31)" fg:x="232685" fg:w="168"/><text x="45.2066%" y="671.50"></text></g><g><title>lockref_get_not_dead (62 samples, 0.01%)</title><rect x="44.9771%" y="645" width="0.0120%" height="15" fill="rgb(221,41,32)" fg:x="232791" fg:w="62"/><text x="45.2271%" y="655.50"></text></g><g><title>complete_walk (214 samples, 0.04%)</title><rect x="44.9518%" y="693" width="0.0413%" height="15" fill="rgb(213,158,31)" fg:x="232660" fg:w="214"/><text x="45.2018%" y="703.50"></text></g><g><title>try_to_unlazy (204 samples, 0.04%)</title><rect x="44.9537%" y="677" width="0.0394%" height="15" fill="rgb(245,126,43)" fg:x="232670" fg:w="204"/><text x="45.2037%" y="687.50"></text></g><g><title>link_path_walk.part.0 (117 samples, 0.02%)</title><rect x="44.9931%" y="693" width="0.0226%" height="15" fill="rgb(227,7,22)" fg:x="232874" fg:w="117"/><text x="45.2431%" y="703.50"></text></g><g><title>__fget_light (253 samples, 0.05%)</title><rect x="45.0289%" y="677" width="0.0489%" height="15" fill="rgb(252,90,44)" fg:x="233059" fg:w="253"/><text x="45.2789%" y="687.50"></text></g><g><title>__fget_files (172 samples, 0.03%)</title><rect x="45.0445%" y="661" width="0.0332%" height="15" fill="rgb(253,91,0)" fg:x="233140" fg:w="172"/><text x="45.2945%" y="671.50"></text></g><g><title>path_init (373 samples, 0.07%)</title><rect x="45.0157%" y="693" width="0.0721%" height="15" fill="rgb(252,175,49)" fg:x="232991" fg:w="373"/><text x="45.2657%" y="703.50"></text></g><g><title>filename_parentat (824 samples, 0.16%)</title><rect x="44.9336%" y="725" width="0.1592%" height="15" fill="rgb(246,150,1)" fg:x="232566" fg:w="824"/><text x="45.1836%" y="735.50"></text></g><g><title>path_parentat (753 samples, 0.15%)</title><rect x="44.9473%" y="709" width="0.1455%" height="15" fill="rgb(241,192,25)" fg:x="232637" fg:w="753"/><text x="45.1973%" y="719.50"></text></g><g><title>ihold (190 samples, 0.04%)</title><rect x="45.0928%" y="725" width="0.0367%" height="15" fill="rgb(239,187,11)" fg:x="233390" fg:w="190"/><text x="45.3428%" y="735.50"></text></g><g><title>_atomic_dec_and_lock (106 samples, 0.02%)</title><rect x="45.1361%" y="709" width="0.0205%" height="15" fill="rgb(218,202,51)" fg:x="233614" fg:w="106"/><text x="45.3861%" y="719.50"></text></g><g><title>iput.part.0 (148 samples, 0.03%)</title><rect x="45.1303%" y="725" width="0.0286%" height="15" fill="rgb(225,176,8)" fg:x="233584" fg:w="148"/><text x="45.3803%" y="735.50"></text></g><g><title>kmem_cache_free (197 samples, 0.04%)</title><rect x="45.1589%" y="725" width="0.0381%" height="15" fill="rgb(219,122,41)" fg:x="233732" fg:w="197"/><text x="45.4089%" y="735.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (68 samples, 0.01%)</title><rect x="45.1838%" y="709" width="0.0131%" height="15" fill="rgb(248,140,20)" fg:x="233861" fg:w="68"/><text x="45.4338%" y="719.50"></text></g><g><title>mnt_drop_write (117 samples, 0.02%)</title><rect x="45.1969%" y="725" width="0.0226%" height="15" fill="rgb(245,41,37)" fg:x="233929" fg:w="117"/><text x="45.4469%" y="735.50"></text></g><g><title>__mnt_want_write (82 samples, 0.02%)</title><rect x="45.2275%" y="709" width="0.0158%" height="15" fill="rgb(235,82,39)" fg:x="234087" fg:w="82"/><text x="45.4775%" y="719.50"></text></g><g><title>mnt_want_write (136 samples, 0.03%)</title><rect x="45.2196%" y="725" width="0.0263%" height="15" fill="rgb(230,108,42)" fg:x="234046" fg:w="136"/><text x="45.4696%" y="735.50"></text></g><g><title>apparmor_path_unlink (109 samples, 0.02%)</title><rect x="45.2599%" y="709" width="0.0211%" height="15" fill="rgb(215,150,50)" fg:x="234255" fg:w="109"/><text x="45.5099%" y="719.50"></text></g><g><title>security_path_unlink (343 samples, 0.07%)</title><rect x="45.2568%" y="725" width="0.0663%" height="15" fill="rgb(233,212,5)" fg:x="234239" fg:w="343"/><text x="45.5068%" y="735.50"></text></g><g><title>tomoyo_path_unlink (218 samples, 0.04%)</title><rect x="45.2810%" y="709" width="0.0421%" height="15" fill="rgb(245,80,22)" fg:x="234364" fg:w="218"/><text x="45.5310%" y="719.50"></text></g><g><title>tomoyo_path_perm (200 samples, 0.04%)</title><rect x="45.2845%" y="693" width="0.0386%" height="15" fill="rgb(238,129,16)" fg:x="234382" fg:w="200"/><text x="45.5345%" y="703.50"></text></g><g><title>tomoyo_init_request_info (134 samples, 0.03%)</title><rect x="45.2972%" y="677" width="0.0259%" height="15" fill="rgb(240,19,0)" fg:x="234448" fg:w="134"/><text x="45.5472%" y="687.50"></text></g><g><title>up_write (53 samples, 0.01%)</title><rect x="45.3231%" y="725" width="0.0102%" height="15" fill="rgb(232,42,35)" fg:x="234582" fg:w="53"/><text x="45.5731%" y="735.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="45.3577%" y="709" width="0.0116%" height="15" fill="rgb(223,130,24)" fg:x="234761" fg:w="60"/><text x="45.6077%" y="719.50"></text></g><g><title>btrfs_put_transaction (61 samples, 0.01%)</title><rect x="45.4170%" y="677" width="0.0118%" height="15" fill="rgb(237,16,22)" fg:x="235068" fg:w="61"/><text x="45.6670%" y="687.50"></text></g><g><title>_raw_spin_lock (128 samples, 0.02%)</title><rect x="45.4414%" y="645" width="0.0247%" height="15" fill="rgb(248,192,20)" fg:x="235194" fg:w="128"/><text x="45.6914%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (215 samples, 0.04%)</title><rect x="45.4307%" y="677" width="0.0415%" height="15" fill="rgb(233,167,2)" fg:x="235139" fg:w="215"/><text x="45.6807%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (206 samples, 0.04%)</title><rect x="45.4325%" y="661" width="0.0398%" height="15" fill="rgb(252,71,44)" fg:x="235148" fg:w="206"/><text x="45.6825%" y="671.50"></text></g><g><title>__btrfs_end_transaction (603 samples, 0.12%)</title><rect x="45.3764%" y="693" width="0.1165%" height="15" fill="rgb(238,37,47)" fg:x="234858" fg:w="603"/><text x="45.6264%" y="703.50"></text></g><g><title>kmem_cache_free (107 samples, 0.02%)</title><rect x="45.4723%" y="677" width="0.0207%" height="15" fill="rgb(214,202,54)" fg:x="235354" fg:w="107"/><text x="45.7223%" y="687.50"></text></g><g><title>btrfs_tree_unlock (66 samples, 0.01%)</title><rect x="45.6154%" y="629" width="0.0128%" height="15" fill="rgb(254,165,40)" fg:x="236095" fg:w="66"/><text x="45.8654%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (63 samples, 0.01%)</title><rect x="45.6288%" y="629" width="0.0122%" height="15" fill="rgb(246,173,38)" fg:x="236164" fg:w="63"/><text x="45.8788%" y="639.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="45.6309%" y="613" width="0.0100%" height="15" fill="rgb(215,3,27)" fg:x="236175" fg:w="52"/><text x="45.8809%" y="623.50"></text></g><g><title>btrfs_free_path (253 samples, 0.05%)</title><rect x="45.6052%" y="661" width="0.0489%" height="15" fill="rgb(239,169,51)" fg:x="236042" fg:w="253"/><text x="45.8552%" y="671.50"></text></g><g><title>btrfs_release_path (241 samples, 0.05%)</title><rect x="45.6075%" y="645" width="0.0466%" height="15" fill="rgb(212,5,25)" fg:x="236054" fg:w="241"/><text x="45.8575%" y="655.50"></text></g><g><title>release_extent_buffer (68 samples, 0.01%)</title><rect x="45.6409%" y="629" width="0.0131%" height="15" fill="rgb(243,45,17)" fg:x="236227" fg:w="68"/><text x="45.8909%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (87 samples, 0.02%)</title><rect x="45.6842%" y="613" width="0.0168%" height="15" fill="rgb(242,97,9)" fg:x="236451" fg:w="87"/><text x="45.9342%" y="623.50"></text></g><g><title>_raw_read_lock (65 samples, 0.01%)</title><rect x="45.6885%" y="597" width="0.0126%" height="15" fill="rgb(228,71,31)" fg:x="236473" fg:w="65"/><text x="45.9385%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (176 samples, 0.03%)</title><rect x="45.6817%" y="629" width="0.0340%" height="15" fill="rgb(252,184,16)" fg:x="236438" fg:w="176"/><text x="45.9317%" y="639.50"></text></g><g><title>btrfs_root_node (76 samples, 0.01%)</title><rect x="45.7010%" y="613" width="0.0147%" height="15" fill="rgb(236,169,46)" fg:x="236538" fg:w="76"/><text x="45.9510%" y="623.50"></text></g><g><title>__btrfs_tree_lock (87 samples, 0.02%)</title><rect x="45.7207%" y="613" width="0.0168%" height="15" fill="rgb(207,17,47)" fg:x="236640" fg:w="87"/><text x="45.9707%" y="623.50"></text></g><g><title>btrfs_lock_root_node (159 samples, 0.03%)</title><rect x="45.7184%" y="629" width="0.0307%" height="15" fill="rgb(206,201,28)" fg:x="236628" fg:w="159"/><text x="45.9684%" y="639.50"></text></g><g><title>btrfs_root_node (60 samples, 0.01%)</title><rect x="45.7375%" y="613" width="0.0116%" height="15" fill="rgb(224,184,23)" fg:x="236727" fg:w="60"/><text x="45.9875%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (87 samples, 0.02%)</title><rect x="45.7800%" y="629" width="0.0168%" height="15" fill="rgb(208,139,48)" fg:x="236947" fg:w="87"/><text x="46.0300%" y="639.50"></text></g><g><title>find_extent_buffer (56 samples, 0.01%)</title><rect x="45.8034%" y="613" width="0.0108%" height="15" fill="rgb(208,130,10)" fg:x="237068" fg:w="56"/><text x="46.0534%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (100 samples, 0.02%)</title><rect x="45.7969%" y="629" width="0.0193%" height="15" fill="rgb(211,213,45)" fg:x="237034" fg:w="100"/><text x="46.0469%" y="639.50"></text></g><g><title>btrfs_lookup_dir_index_item (918 samples, 0.18%)</title><rect x="45.6541%" y="661" width="0.1774%" height="15" fill="rgb(235,100,30)" fg:x="236295" fg:w="918"/><text x="45.9041%" y="671.50"></text></g><g><title>btrfs_search_slot (899 samples, 0.17%)</title><rect x="45.6577%" y="645" width="0.1737%" height="15" fill="rgb(206,144,31)" fg:x="236314" fg:w="899"/><text x="45.9077%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (73 samples, 0.01%)</title><rect x="45.8695%" y="613" width="0.0141%" height="15" fill="rgb(224,200,26)" fg:x="237410" fg:w="73"/><text x="46.1195%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (145 samples, 0.03%)</title><rect x="45.8666%" y="629" width="0.0280%" height="15" fill="rgb(247,104,53)" fg:x="237395" fg:w="145"/><text x="46.1166%" y="639.50"></text></g><g><title>btrfs_root_node (57 samples, 0.01%)</title><rect x="45.8836%" y="613" width="0.0110%" height="15" fill="rgb(220,14,17)" fg:x="237483" fg:w="57"/><text x="46.1336%" y="623.50"></text></g><g><title>__btrfs_tree_lock (108 samples, 0.02%)</title><rect x="45.8989%" y="613" width="0.0209%" height="15" fill="rgb(230,140,40)" fg:x="237562" fg:w="108"/><text x="46.1489%" y="623.50"></text></g><g><title>_raw_write_lock (59 samples, 0.01%)</title><rect x="45.9083%" y="597" width="0.0114%" height="15" fill="rgb(229,2,41)" fg:x="237611" fg:w="59"/><text x="46.1583%" y="607.50"></text></g><g><title>btrfs_lock_root_node (176 samples, 0.03%)</title><rect x="45.8971%" y="629" width="0.0340%" height="15" fill="rgb(232,89,16)" fg:x="237553" fg:w="176"/><text x="46.1471%" y="639.50"></text></g><g><title>btrfs_root_node (59 samples, 0.01%)</title><rect x="45.9197%" y="613" width="0.0114%" height="15" fill="rgb(247,59,52)" fg:x="237670" fg:w="59"/><text x="46.1697%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (73 samples, 0.01%)</title><rect x="45.9311%" y="629" width="0.0141%" height="15" fill="rgb(226,110,21)" fg:x="237729" fg:w="73"/><text x="46.1811%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (52 samples, 0.01%)</title><rect x="45.9452%" y="629" width="0.0100%" height="15" fill="rgb(224,176,43)" fg:x="237802" fg:w="52"/><text x="46.1952%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (63 samples, 0.01%)</title><rect x="45.9576%" y="629" width="0.0122%" height="15" fill="rgb(221,73,6)" fg:x="237866" fg:w="63"/><text x="46.2076%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (96 samples, 0.02%)</title><rect x="45.9698%" y="629" width="0.0185%" height="15" fill="rgb(232,78,19)" fg:x="237929" fg:w="96"/><text x="46.2198%" y="639.50"></text></g><g><title>find_extent_buffer (70 samples, 0.01%)</title><rect x="45.9922%" y="613" width="0.0135%" height="15" fill="rgb(233,112,48)" fg:x="238045" fg:w="70"/><text x="46.2422%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (102 samples, 0.02%)</title><rect x="45.9883%" y="629" width="0.0197%" height="15" fill="rgb(243,131,47)" fg:x="238025" fg:w="102"/><text x="46.2383%" y="639.50"></text></g><g><title>btrfs_search_slot (959 samples, 0.19%)</title><rect x="45.8401%" y="645" width="0.1853%" height="15" fill="rgb(226,51,1)" fg:x="237258" fg:w="959"/><text x="46.0901%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (1,042 samples, 0.20%)</title><rect x="45.8314%" y="661" width="0.2013%" height="15" fill="rgb(247,58,7)" fg:x="237213" fg:w="1042"/><text x="46.0814%" y="671.50"></text></g><g><title>btrfs_tree_unlock (70 samples, 0.01%)</title><rect x="46.0469%" y="645" width="0.0135%" height="15" fill="rgb(209,7,32)" fg:x="238328" fg:w="70"/><text x="46.2969%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (60 samples, 0.01%)</title><rect x="46.0604%" y="645" width="0.0116%" height="15" fill="rgb(209,39,41)" fg:x="238398" fg:w="60"/><text x="46.3104%" y="655.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="46.0616%" y="629" width="0.0104%" height="15" fill="rgb(226,182,46)" fg:x="238404" fg:w="54"/><text x="46.3116%" y="639.50"></text></g><g><title>btrfs_release_path (256 samples, 0.05%)</title><rect x="46.0328%" y="661" width="0.0495%" height="15" fill="rgb(230,219,10)" fg:x="238255" fg:w="256"/><text x="46.2828%" y="671.50"></text></g><g><title>release_extent_buffer (52 samples, 0.01%)</title><rect x="46.0722%" y="645" width="0.0100%" height="15" fill="rgb(227,175,30)" fg:x="238459" fg:w="52"/><text x="46.3222%" y="655.50"></text></g><g><title>memset_erms (57 samples, 0.01%)</title><rect x="46.0994%" y="645" width="0.0110%" height="15" fill="rgb(217,2,50)" fg:x="238600" fg:w="57"/><text x="46.3494%" y="655.50"></text></g><g><title>kmem_cache_alloc (164 samples, 0.03%)</title><rect x="46.0822%" y="661" width="0.0317%" height="15" fill="rgb(229,160,0)" fg:x="238511" fg:w="164"/><text x="46.3322%" y="671.50"></text></g><g><title>kmem_cache_free (90 samples, 0.02%)</title><rect x="46.1139%" y="661" width="0.0174%" height="15" fill="rgb(207,78,37)" fg:x="238675" fg:w="90"/><text x="46.3639%" y="671.50"></text></g><g><title>mutex_lock (135 samples, 0.03%)</title><rect x="46.1313%" y="661" width="0.0261%" height="15" fill="rgb(225,57,0)" fg:x="238765" fg:w="135"/><text x="46.3813%" y="671.50"></text></g><g><title>btrfs_del_dir_entries_in_log (3,135 samples, 0.61%)</title><rect x="45.5725%" y="677" width="0.6057%" height="15" fill="rgb(232,154,2)" fg:x="235873" fg:w="3135"/><text x="45.8225%" y="687.50"></text></g><g><title>mutex_unlock (108 samples, 0.02%)</title><rect x="46.1574%" y="661" width="0.0209%" height="15" fill="rgb(241,212,25)" fg:x="238900" fg:w="108"/><text x="46.4074%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (126 samples, 0.02%)</title><rect x="46.2283%" y="613" width="0.0243%" height="15" fill="rgb(226,69,20)" fg:x="239267" fg:w="126"/><text x="46.4783%" y="623.50"></text></g><g><title>_raw_spin_lock (99 samples, 0.02%)</title><rect x="46.2335%" y="597" width="0.0191%" height="15" fill="rgb(247,184,54)" fg:x="239294" fg:w="99"/><text x="46.4835%" y="607.50"></text></g><g><title>btrfs_free_path (368 samples, 0.07%)</title><rect x="46.2067%" y="645" width="0.0711%" height="15" fill="rgb(210,145,0)" fg:x="239155" fg:w="368"/><text x="46.4567%" y="655.50"></text></g><g><title>btrfs_release_path (350 samples, 0.07%)</title><rect x="46.2101%" y="629" width="0.0676%" height="15" fill="rgb(253,82,12)" fg:x="239173" fg:w="350"/><text x="46.4601%" y="639.50"></text></g><g><title>release_extent_buffer (130 samples, 0.03%)</title><rect x="46.2526%" y="613" width="0.0251%" height="15" fill="rgb(245,42,11)" fg:x="239393" fg:w="130"/><text x="46.5026%" y="623.50"></text></g><g><title>_raw_read_lock (76 samples, 0.01%)</title><rect x="46.3421%" y="597" width="0.0147%" height="15" fill="rgb(219,147,32)" fg:x="239856" fg:w="76"/><text x="46.5921%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (127 samples, 0.02%)</title><rect x="46.3324%" y="613" width="0.0245%" height="15" fill="rgb(246,12,7)" fg:x="239806" fg:w="127"/><text x="46.5824%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (384 samples, 0.07%)</title><rect x="46.3264%" y="629" width="0.0742%" height="15" fill="rgb(243,50,9)" fg:x="239775" fg:w="384"/><text x="46.5764%" y="639.50"></text></g><g><title>btrfs_root_node (226 samples, 0.04%)</title><rect x="46.3570%" y="613" width="0.0437%" height="15" fill="rgb(219,149,6)" fg:x="239933" fg:w="226"/><text x="46.6070%" y="623.50"></text></g><g><title>_raw_write_lock (99 samples, 0.02%)</title><rect x="46.4288%" y="597" width="0.0191%" height="15" fill="rgb(241,51,42)" fg:x="240305" fg:w="99"/><text x="46.6788%" y="607.50"></text></g><g><title>__btrfs_tree_lock (181 samples, 0.03%)</title><rect x="46.4132%" y="613" width="0.0350%" height="15" fill="rgb(226,128,27)" fg:x="240224" fg:w="181"/><text x="46.6632%" y="623.50"></text></g><g><title>btrfs_lock_root_node (307 samples, 0.06%)</title><rect x="46.4093%" y="629" width="0.0593%" height="15" fill="rgb(244,144,4)" fg:x="240204" fg:w="307"/><text x="46.6593%" y="639.50"></text></g><g><title>btrfs_root_node (106 samples, 0.02%)</title><rect x="46.4482%" y="613" width="0.0205%" height="15" fill="rgb(221,4,13)" fg:x="240405" fg:w="106"/><text x="46.6982%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (102 samples, 0.02%)</title><rect x="46.4700%" y="629" width="0.0197%" height="15" fill="rgb(208,170,28)" fg:x="240518" fg:w="102"/><text x="46.7200%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (129 samples, 0.02%)</title><rect x="46.4928%" y="629" width="0.0249%" height="15" fill="rgb(226,131,13)" fg:x="240636" fg:w="129"/><text x="46.7428%" y="639.50"></text></g><g><title>_raw_spin_lock (103 samples, 0.02%)</title><rect x="46.4978%" y="613" width="0.0199%" height="15" fill="rgb(215,72,41)" fg:x="240662" fg:w="103"/><text x="46.7478%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (170 samples, 0.03%)</title><rect x="46.5177%" y="629" width="0.0328%" height="15" fill="rgb(243,108,20)" fg:x="240765" fg:w="170"/><text x="46.7677%" y="639.50"></text></g><g><title>__radix_tree_lookup (54 samples, 0.01%)</title><rect x="46.5604%" y="597" width="0.0104%" height="15" fill="rgb(230,189,17)" fg:x="240986" fg:w="54"/><text x="46.8104%" y="607.50"></text></g><g><title>find_extent_buffer (99 samples, 0.02%)</title><rect x="46.5573%" y="613" width="0.0191%" height="15" fill="rgb(220,50,17)" fg:x="240970" fg:w="99"/><text x="46.8073%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (159 samples, 0.03%)</title><rect x="46.5506%" y="629" width="0.0307%" height="15" fill="rgb(248,152,48)" fg:x="240935" fg:w="159"/><text x="46.8006%" y="639.50"></text></g><g><title>release_extent_buffer (108 samples, 0.02%)</title><rect x="46.5815%" y="629" width="0.0209%" height="15" fill="rgb(244,91,11)" fg:x="241095" fg:w="108"/><text x="46.8315%" y="639.50"></text></g><g><title>btrfs_search_slot (1,751 samples, 0.34%)</title><rect x="46.2778%" y="645" width="0.3383%" height="15" fill="rgb(220,157,5)" fg:x="239523" fg:w="1751"/><text x="46.5278%" y="655.50"></text></g><g><title>unlock_up (71 samples, 0.01%)</title><rect x="46.6023%" y="629" width="0.0137%" height="15" fill="rgb(253,137,8)" fg:x="241203" fg:w="71"/><text x="46.8523%" y="639.50"></text></g><g><title>crc32c (55 samples, 0.01%)</title><rect x="46.6161%" y="645" width="0.0106%" height="15" fill="rgb(217,137,51)" fg:x="241274" fg:w="55"/><text x="46.8661%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (52 samples, 0.01%)</title><rect x="46.6561%" y="629" width="0.0100%" height="15" fill="rgb(218,209,53)" fg:x="241481" fg:w="52"/><text x="46.9061%" y="639.50"></text></g><g><title>memset_erms (106 samples, 0.02%)</title><rect x="46.6675%" y="629" width="0.0205%" height="15" fill="rgb(249,137,25)" fg:x="241540" fg:w="106"/><text x="46.9175%" y="639.50"></text></g><g><title>kmem_cache_alloc (387 samples, 0.07%)</title><rect x="46.6267%" y="645" width="0.0748%" height="15" fill="rgb(239,155,26)" fg:x="241329" fg:w="387"/><text x="46.8767%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (70 samples, 0.01%)</title><rect x="46.6879%" y="629" width="0.0135%" height="15" fill="rgb(227,85,46)" fg:x="241646" fg:w="70"/><text x="46.9379%" y="639.50"></text></g><g><title>btrfs_del_inode_ref (2,849 samples, 0.55%)</title><rect x="46.1960%" y="661" width="0.5504%" height="15" fill="rgb(251,107,43)" fg:x="239100" fg:w="2849"/><text x="46.4460%" y="671.50"></text></g><g><title>kmem_cache_free (233 samples, 0.05%)</title><rect x="46.7015%" y="645" width="0.0450%" height="15" fill="rgb(234,170,33)" fg:x="241716" fg:w="233"/><text x="46.9515%" y="655.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (70 samples, 0.01%)</title><rect x="46.7329%" y="629" width="0.0135%" height="15" fill="rgb(206,29,35)" fg:x="241879" fg:w="70"/><text x="46.9829%" y="639.50"></text></g><g><title>mutex_lock (113 samples, 0.02%)</title><rect x="46.7561%" y="661" width="0.0218%" height="15" fill="rgb(227,138,25)" fg:x="241999" fg:w="113"/><text x="47.0061%" y="671.50"></text></g><g><title>btrfs_del_inode_ref_in_log (3,194 samples, 0.62%)</title><rect x="46.1782%" y="677" width="0.6171%" height="15" fill="rgb(249,131,35)" fg:x="239008" fg:w="3194"/><text x="46.4282%" y="687.50"></text></g><g><title>mutex_unlock (90 samples, 0.02%)</title><rect x="46.7780%" y="661" width="0.0174%" height="15" fill="rgb(239,6,40)" fg:x="242112" fg:w="90"/><text x="47.0280%" y="671.50"></text></g><g><title>_find_next_bit.constprop.0 (96 samples, 0.02%)</title><rect x="47.0689%" y="597" width="0.0185%" height="15" fill="rgb(246,136,47)" fg:x="243618" fg:w="96"/><text x="47.3189%" y="607.50"></text></g><g><title>steal_from_bitmap.part.0 (109 samples, 0.02%)</title><rect x="47.0676%" y="613" width="0.0211%" height="15" fill="rgb(253,58,26)" fg:x="243611" fg:w="109"/><text x="47.3176%" y="623.50"></text></g><g><title>__btrfs_add_free_space (120 samples, 0.02%)</title><rect x="47.0670%" y="629" width="0.0232%" height="15" fill="rgb(237,141,10)" fg:x="243608" fg:w="120"/><text x="47.3170%" y="639.50"></text></g><g><title>btrfs_free_tree_block (173 samples, 0.03%)</title><rect x="47.0668%" y="645" width="0.0334%" height="15" fill="rgb(234,156,12)" fg:x="243607" fg:w="173"/><text x="47.3168%" y="655.50"></text></g><g><title>btrfs_del_leaf (182 samples, 0.04%)</title><rect x="47.0662%" y="661" width="0.0352%" height="15" fill="rgb(243,224,36)" fg:x="243604" fg:w="182"/><text x="47.3162%" y="671.50"></text></g><g><title>btrfs_get_32 (182 samples, 0.04%)</title><rect x="47.1014%" y="661" width="0.0352%" height="15" fill="rgb(205,229,51)" fg:x="243786" fg:w="182"/><text x="47.3514%" y="671.50"></text></g><g><title>btrfs_get_token_32 (3,849 samples, 0.74%)</title><rect x="47.1366%" y="661" width="0.7437%" height="15" fill="rgb(223,189,4)" fg:x="243968" fg:w="3849"/><text x="47.3866%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (516 samples, 0.10%)</title><rect x="47.7805%" y="645" width="0.0997%" height="15" fill="rgb(249,167,54)" fg:x="247301" fg:w="516"/><text x="48.0305%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (189 samples, 0.04%)</title><rect x="47.8802%" y="661" width="0.0365%" height="15" fill="rgb(218,34,28)" fg:x="247817" fg:w="189"/><text x="48.1302%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (105 samples, 0.02%)</title><rect x="47.8964%" y="645" width="0.0203%" height="15" fill="rgb(232,109,42)" fg:x="247901" fg:w="105"/><text x="48.1464%" y="655.50"></text></g><g><title>btrfs_set_token_32 (3,312 samples, 0.64%)</title><rect x="47.9171%" y="661" width="0.6399%" height="15" fill="rgb(248,214,46)" fg:x="248008" fg:w="3312"/><text x="48.1671%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (713 samples, 0.14%)</title><rect x="48.4193%" y="645" width="0.1378%" height="15" fill="rgb(244,216,40)" fg:x="250607" fg:w="713"/><text x="48.6693%" y="655.50"></text></g><g><title>leaf_space_used (131 samples, 0.03%)</title><rect x="48.5592%" y="661" width="0.0253%" height="15" fill="rgb(231,226,31)" fg:x="251331" fg:w="131"/><text x="48.8092%" y="671.50"></text></g><g><title>btrfs_get_32 (83 samples, 0.02%)</title><rect x="48.5684%" y="645" width="0.0160%" height="15" fill="rgb(238,38,43)" fg:x="251379" fg:w="83"/><text x="48.8184%" y="655.50"></text></g><g><title>copy_pages (80 samples, 0.02%)</title><rect x="48.5976%" y="645" width="0.0155%" height="15" fill="rgb(208,88,43)" fg:x="251530" fg:w="80"/><text x="48.8476%" y="655.50"></text></g><g><title>memcpy_extent_buffer (688 samples, 0.13%)</title><rect x="48.5845%" y="661" width="0.1329%" height="15" fill="rgb(205,136,37)" fg:x="251462" fg:w="688"/><text x="48.8345%" y="671.50"></text></g><g><title>memmove (540 samples, 0.10%)</title><rect x="48.6131%" y="645" width="0.1043%" height="15" fill="rgb(237,34,14)" fg:x="251610" fg:w="540"/><text x="48.8631%" y="655.50"></text></g><g><title>copy_pages (180 samples, 0.03%)</title><rect x="48.7437%" y="645" width="0.0348%" height="15" fill="rgb(236,193,44)" fg:x="252286" fg:w="180"/><text x="48.9937%" y="655.50"></text></g><g><title>memmove_extent_buffer (1,905 samples, 0.37%)</title><rect x="48.7174%" y="661" width="0.3681%" height="15" fill="rgb(231,48,10)" fg:x="252150" fg:w="1905"/><text x="48.9674%" y="671.50"></text></g><g><title>memmove (1,589 samples, 0.31%)</title><rect x="48.7784%" y="645" width="0.3070%" height="15" fill="rgb(213,141,34)" fg:x="252466" fg:w="1589"/><text x="49.0284%" y="655.50"></text></g><g><title>__push_leaf_left (110 samples, 0.02%)</title><rect x="49.0868%" y="645" width="0.0213%" height="15" fill="rgb(249,130,34)" fg:x="254062" fg:w="110"/><text x="49.3368%" y="655.50"></text></g><g><title>push_leaf_left (165 samples, 0.03%)</title><rect x="49.0855%" y="661" width="0.0319%" height="15" fill="rgb(219,42,41)" fg:x="254055" fg:w="165"/><text x="49.3355%" y="671.50"></text></g><g><title>__push_leaf_right (126 samples, 0.02%)</title><rect x="49.1177%" y="645" width="0.0243%" height="15" fill="rgb(224,100,54)" fg:x="254222" fg:w="126"/><text x="49.3677%" y="655.50"></text></g><g><title>push_leaf_right (170 samples, 0.03%)</title><rect x="49.1173%" y="661" width="0.0328%" height="15" fill="rgb(229,200,27)" fg:x="254220" fg:w="170"/><text x="49.3673%" y="671.50"></text></g><g><title>btrfs_del_items (12,199 samples, 2.36%)</title><rect x="46.7954%" y="677" width="2.3569%" height="15" fill="rgb(217,118,10)" fg:x="242202" fg:w="12199"/><text x="47.0454%" y="687.50">b..</text></g><g><title>mutex_lock (58 samples, 0.01%)</title><rect x="49.2342%" y="645" width="0.0112%" height="15" fill="rgb(206,22,3)" fg:x="254825" fg:w="58"/><text x="49.4842%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (384 samples, 0.07%)</title><rect x="49.1807%" y="661" width="0.0742%" height="15" fill="rgb(232,163,46)" fg:x="254548" fg:w="384"/><text x="49.4307%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (306 samples, 0.06%)</title><rect x="49.2551%" y="661" width="0.0591%" height="15" fill="rgb(206,95,13)" fg:x="254933" fg:w="306"/><text x="49.5051%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (293 samples, 0.06%)</title><rect x="49.2576%" y="645" width="0.0566%" height="15" fill="rgb(253,154,18)" fg:x="254946" fg:w="293"/><text x="49.5076%" y="655.50"></text></g><g><title>mutex_lock (107 samples, 0.02%)</title><rect x="49.3142%" y="661" width="0.0207%" height="15" fill="rgb(219,32,23)" fg:x="255239" fg:w="107"/><text x="49.5642%" y="671.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (999 samples, 0.19%)</title><rect x="49.1523%" y="677" width="0.1930%" height="15" fill="rgb(230,191,45)" fg:x="254401" fg:w="999"/><text x="49.4023%" y="687.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="49.3349%" y="661" width="0.0104%" height="15" fill="rgb(229,64,36)" fg:x="255346" fg:w="54"/><text x="49.5849%" y="671.50"></text></g><g><title>btrfs_comp_cpu_keys (149 samples, 0.03%)</title><rect x="49.3865%" y="645" width="0.0288%" height="15" fill="rgb(205,129,25)" fg:x="255613" fg:w="149"/><text x="49.6365%" y="655.50"></text></g><g><title>__btrfs_add_delayed_item (425 samples, 0.08%)</title><rect x="49.3563%" y="661" width="0.0821%" height="15" fill="rgb(254,112,7)" fg:x="255457" fg:w="425"/><text x="49.6063%" y="671.50"></text></g><g><title>rb_insert_color (120 samples, 0.02%)</title><rect x="49.4153%" y="645" width="0.0232%" height="15" fill="rgb(226,53,48)" fg:x="255762" fg:w="120"/><text x="49.6653%" y="655.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="49.4666%" y="645" width="0.0124%" height="15" fill="rgb(214,153,38)" fg:x="256028" fg:w="64"/><text x="49.7166%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (268 samples, 0.05%)</title><rect x="49.4384%" y="661" width="0.0518%" height="15" fill="rgb(243,101,7)" fg:x="255882" fg:w="268"/><text x="49.6884%" y="671.50"></text></g><g><title>mutex_unlock (58 samples, 0.01%)</title><rect x="49.4790%" y="645" width="0.0112%" height="15" fill="rgb(240,140,22)" fg:x="256092" fg:w="58"/><text x="49.7290%" y="655.50"></text></g><g><title>mutex_spin_on_owner (220 samples, 0.04%)</title><rect x="49.4912%" y="645" width="0.0425%" height="15" fill="rgb(235,114,2)" fg:x="256155" fg:w="220"/><text x="49.7412%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (231 samples, 0.04%)</title><rect x="49.4902%" y="661" width="0.0446%" height="15" fill="rgb(242,59,12)" fg:x="256150" fg:w="231"/><text x="49.7402%" y="671.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (188 samples, 0.04%)</title><rect x="49.5350%" y="661" width="0.0363%" height="15" fill="rgb(252,134,9)" fg:x="256382" fg:w="188"/><text x="49.7850%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (176 samples, 0.03%)</title><rect x="49.5374%" y="645" width="0.0340%" height="15" fill="rgb(236,4,44)" fg:x="256394" fg:w="176"/><text x="49.7874%" y="655.50"></text></g><g><title>_raw_spin_lock (143 samples, 0.03%)</title><rect x="49.5437%" y="629" width="0.0276%" height="15" fill="rgb(254,172,41)" fg:x="256427" fg:w="143"/><text x="49.7937%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (85 samples, 0.02%)</title><rect x="49.5714%" y="661" width="0.0164%" height="15" fill="rgb(244,63,20)" fg:x="256570" fg:w="85"/><text x="49.8214%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (67 samples, 0.01%)</title><rect x="49.5748%" y="645" width="0.0129%" height="15" fill="rgb(250,73,31)" fg:x="256588" fg:w="67"/><text x="49.8248%" y="655.50"></text></g><g><title>kmem_cache_alloc_trace (254 samples, 0.05%)</title><rect x="49.5878%" y="661" width="0.0491%" height="15" fill="rgb(241,38,36)" fg:x="256655" fg:w="254"/><text x="49.8378%" y="671.50"></text></g><g><title>mutex_lock (131 samples, 0.03%)</title><rect x="49.6369%" y="661" width="0.0253%" height="15" fill="rgb(245,211,2)" fg:x="256909" fg:w="131"/><text x="49.8869%" y="671.50"></text></g><g><title>btrfs_delete_delayed_dir_index (1,755 samples, 0.34%)</title><rect x="49.3453%" y="677" width="0.3391%" height="15" fill="rgb(206,120,28)" fg:x="255400" fg:w="1755"/><text x="49.5953%" y="687.50"></text></g><g><title>mutex_unlock (115 samples, 0.02%)</title><rect x="49.6622%" y="661" width="0.0222%" height="15" fill="rgb(211,59,34)" fg:x="257040" fg:w="115"/><text x="49.9122%" y="671.50"></text></g><g><title>btrfs_get_16 (68 samples, 0.01%)</title><rect x="49.6960%" y="661" width="0.0131%" height="15" fill="rgb(233,168,5)" fg:x="257215" fg:w="68"/><text x="49.9460%" y="671.50"></text></g><g><title>btrfs_delete_one_dir_name (179 samples, 0.03%)</title><rect x="49.6844%" y="677" width="0.0346%" height="15" fill="rgb(234,33,13)" fg:x="257155" fg:w="179"/><text x="49.9344%" y="687.50"></text></g><g><title>btrfs_get_16 (124 samples, 0.02%)</title><rect x="49.7520%" y="645" width="0.0240%" height="15" fill="rgb(231,150,26)" fg:x="257505" fg:w="124"/><text x="50.0020%" y="655.50"></text></g><g><title>btrfs_get_32 (94 samples, 0.02%)</title><rect x="49.7760%" y="645" width="0.0182%" height="15" fill="rgb(217,191,4)" fg:x="257629" fg:w="94"/><text x="50.0260%" y="655.50"></text></g><g><title>btrfs_match_dir_item_name (444 samples, 0.09%)</title><rect x="49.7368%" y="661" width="0.0858%" height="15" fill="rgb(246,198,38)" fg:x="257426" fg:w="444"/><text x="49.9868%" y="671.50"></text></g><g><title>memcmp_extent_buffer (147 samples, 0.03%)</title><rect x="49.7941%" y="645" width="0.0284%" height="15" fill="rgb(245,64,37)" fg:x="257723" fg:w="147"/><text x="50.0441%" y="655.50"></text></g><g><title>memcmp (92 samples, 0.02%)</title><rect x="49.8048%" y="629" width="0.0178%" height="15" fill="rgb(250,30,36)" fg:x="257778" fg:w="92"/><text x="50.0548%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (75 samples, 0.01%)</title><rect x="49.8882%" y="629" width="0.0145%" height="15" fill="rgb(217,86,53)" fg:x="258210" fg:w="75"/><text x="50.1382%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (188 samples, 0.04%)</title><rect x="49.8848%" y="645" width="0.0363%" height="15" fill="rgb(228,157,16)" fg:x="258192" fg:w="188"/><text x="50.1348%" y="655.50"></text></g><g><title>btrfs_root_node (95 samples, 0.02%)</title><rect x="49.9027%" y="629" width="0.0184%" height="15" fill="rgb(217,59,31)" fg:x="258285" fg:w="95"/><text x="50.1527%" y="639.50"></text></g><g><title>btrfs_read_node_slot (60 samples, 0.01%)</title><rect x="49.9458%" y="629" width="0.0116%" height="15" fill="rgb(237,138,41)" fg:x="258508" fg:w="60"/><text x="50.1958%" y="639.50"></text></g><g><title>balance_level (206 samples, 0.04%)</title><rect x="49.9251%" y="645" width="0.0398%" height="15" fill="rgb(227,91,49)" fg:x="258401" fg:w="206"/><text x="50.1751%" y="655.50"></text></g><g><title>__btrfs_tree_lock (110 samples, 0.02%)</title><rect x="49.9752%" y="629" width="0.0213%" height="15" fill="rgb(247,21,44)" fg:x="258660" fg:w="110"/><text x="50.2252%" y="639.50"></text></g><g><title>btrfs_lock_root_node (173 samples, 0.03%)</title><rect x="49.9738%" y="645" width="0.0334%" height="15" fill="rgb(219,210,51)" fg:x="258653" fg:w="173"/><text x="50.2238%" y="655.50"></text></g><g><title>btrfs_root_node (56 samples, 0.01%)</title><rect x="49.9964%" y="629" width="0.0108%" height="15" fill="rgb(209,140,6)" fg:x="258770" fg:w="56"/><text x="50.2464%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (69 samples, 0.01%)</title><rect x="50.0072%" y="645" width="0.0133%" height="15" fill="rgb(221,188,24)" fg:x="258826" fg:w="69"/><text x="50.2572%" y="655.50"></text></g><g><title>_raw_write_lock (93 samples, 0.02%)</title><rect x="50.0337%" y="629" width="0.0180%" height="15" fill="rgb(232,154,20)" fg:x="258963" fg:w="93"/><text x="50.2837%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (132 samples, 0.03%)</title><rect x="50.0289%" y="645" width="0.0255%" height="15" fill="rgb(244,137,50)" fg:x="258938" fg:w="132"/><text x="50.2789%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (109 samples, 0.02%)</title><rect x="50.0548%" y="645" width="0.0211%" height="15" fill="rgb(225,185,43)" fg:x="259072" fg:w="109"/><text x="50.3048%" y="655.50"></text></g><g><title>_raw_spin_lock (89 samples, 0.02%)</title><rect x="50.0586%" y="629" width="0.0172%" height="15" fill="rgb(213,205,38)" fg:x="259092" fg:w="89"/><text x="50.3086%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,177 samples, 0.23%)</title><rect x="50.0758%" y="645" width="0.2274%" height="15" fill="rgb(236,73,12)" fg:x="259181" fg:w="1177"/><text x="50.3258%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (67 samples, 0.01%)</title><rect x="50.3334%" y="629" width="0.0129%" height="15" fill="rgb(235,219,13)" fg:x="260514" fg:w="67"/><text x="50.5834%" y="639.50"></text></g><g><title>btrfs_get_64 (130 samples, 0.03%)</title><rect x="50.3463%" y="629" width="0.0251%" height="15" fill="rgb(218,59,36)" fg:x="260581" fg:w="130"/><text x="50.5963%" y="639.50"></text></g><g><title>__radix_tree_lookup (599 samples, 0.12%)</title><rect x="50.4224%" y="613" width="0.1157%" height="15" fill="rgb(205,110,39)" fg:x="260975" fg:w="599"/><text x="50.6724%" y="623.50"></text></g><g><title>check_buffer_tree_ref (62 samples, 0.01%)</title><rect x="50.5467%" y="597" width="0.0120%" height="15" fill="rgb(218,206,42)" fg:x="261618" fg:w="62"/><text x="50.7967%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (280 samples, 0.05%)</title><rect x="50.5384%" y="613" width="0.0541%" height="15" fill="rgb(248,125,24)" fg:x="261575" fg:w="280"/><text x="50.7884%" y="623.50"></text></g><g><title>mark_page_accessed (175 samples, 0.03%)</title><rect x="50.5587%" y="597" width="0.0338%" height="15" fill="rgb(242,28,27)" fg:x="261680" fg:w="175"/><text x="50.8087%" y="607.50"></text></g><g><title>find_extent_buffer (1,102 samples, 0.21%)</title><rect x="50.3815%" y="629" width="0.2129%" height="15" fill="rgb(216,228,15)" fg:x="260763" fg:w="1102"/><text x="50.6315%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,654 samples, 0.32%)</title><rect x="50.3032%" y="645" width="0.3196%" height="15" fill="rgb(235,116,46)" fg:x="260358" fg:w="1654"/><text x="50.5532%" y="655.50"></text></g><g><title>read_extent_buffer (147 samples, 0.03%)</title><rect x="50.5944%" y="629" width="0.0284%" height="15" fill="rgb(224,18,32)" fg:x="261865" fg:w="147"/><text x="50.8444%" y="639.50"></text></g><g><title>btrfs_get_64 (98 samples, 0.02%)</title><rect x="50.6446%" y="629" width="0.0189%" height="15" fill="rgb(252,5,12)" fg:x="262125" fg:w="98"/><text x="50.8946%" y="639.50"></text></g><g><title>__radix_tree_lookup (340 samples, 0.07%)</title><rect x="50.6883%" y="613" width="0.0657%" height="15" fill="rgb(251,36,5)" fg:x="262351" fg:w="340"/><text x="50.9383%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (190 samples, 0.04%)</title><rect x="50.7544%" y="613" width="0.0367%" height="15" fill="rgb(217,53,14)" fg:x="262693" fg:w="190"/><text x="51.0044%" y="623.50"></text></g><g><title>mark_page_accessed (124 samples, 0.02%)</title><rect x="50.7671%" y="597" width="0.0240%" height="15" fill="rgb(215,86,45)" fg:x="262759" fg:w="124"/><text x="51.0171%" y="607.50"></text></g><g><title>find_extent_buffer (665 samples, 0.13%)</title><rect x="50.6636%" y="629" width="0.1285%" height="15" fill="rgb(242,169,11)" fg:x="262223" fg:w="665"/><text x="50.9136%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (63 samples, 0.01%)</title><rect x="50.7926%" y="629" width="0.0122%" height="15" fill="rgb(211,213,45)" fg:x="262891" fg:w="63"/><text x="51.0426%" y="639.50"></text></g><g><title>reada_for_balance (987 samples, 0.19%)</title><rect x="50.6228%" y="645" width="0.1907%" height="15" fill="rgb(205,88,11)" fg:x="262012" fg:w="987"/><text x="50.8728%" y="655.50"></text></g><g><title>release_extent_buffer (73 samples, 0.01%)</title><rect x="50.8135%" y="645" width="0.0141%" height="15" fill="rgb(252,69,26)" fg:x="262999" fg:w="73"/><text x="51.0635%" y="655.50"></text></g><g><title>btrfs_search_slot (5,433 samples, 1.05%)</title><rect x="49.8225%" y="661" width="1.0497%" height="15" fill="rgb(246,123,37)" fg:x="257870" fg:w="5433"/><text x="50.0725%" y="671.50"></text></g><g><title>unlock_up (231 samples, 0.04%)</title><rect x="50.8276%" y="645" width="0.0446%" height="15" fill="rgb(212,205,5)" fg:x="263072" fg:w="231"/><text x="51.0776%" y="655.50"></text></g><g><title>btrfs_tree_unlock (68 samples, 0.01%)</title><rect x="50.8591%" y="629" width="0.0131%" height="15" fill="rgb(253,148,0)" fg:x="263235" fg:w="68"/><text x="51.1091%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (6,035 samples, 1.17%)</title><rect x="49.7267%" y="677" width="1.1660%" height="15" fill="rgb(239,22,4)" fg:x="257374" fg:w="6035"/><text x="49.9767%" y="687.50"></text></g><g><title>crc32c (106 samples, 0.02%)</title><rect x="50.8722%" y="661" width="0.0205%" height="15" fill="rgb(226,26,53)" fg:x="263303" fg:w="106"/><text x="51.1222%" y="671.50"></text></g><g><title>crypto_shash_update (75 samples, 0.01%)</title><rect x="50.8782%" y="645" width="0.0145%" height="15" fill="rgb(225,229,45)" fg:x="263334" fg:w="75"/><text x="51.1282%" y="655.50"></text></g><g><title>btrfs_tree_unlock (65 samples, 0.01%)</title><rect x="50.9051%" y="661" width="0.0126%" height="15" fill="rgb(220,60,37)" fg:x="263473" fg:w="65"/><text x="51.1551%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (220 samples, 0.04%)</title><rect x="50.9190%" y="661" width="0.0425%" height="15" fill="rgb(217,180,35)" fg:x="263545" fg:w="220"/><text x="51.1690%" y="671.50"></text></g><g><title>_raw_spin_lock (176 samples, 0.03%)</title><rect x="50.9275%" y="645" width="0.0340%" height="15" fill="rgb(229,7,53)" fg:x="263589" fg:w="176"/><text x="51.1775%" y="655.50"></text></g><g><title>btrfs_release_path (608 samples, 0.12%)</title><rect x="50.8927%" y="677" width="0.1175%" height="15" fill="rgb(254,137,3)" fg:x="263409" fg:w="608"/><text x="51.1427%" y="687.50"></text></g><g><title>release_extent_buffer (252 samples, 0.05%)</title><rect x="50.9615%" y="661" width="0.0487%" height="15" fill="rgb(215,140,41)" fg:x="263765" fg:w="252"/><text x="51.2115%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (260 samples, 0.05%)</title><rect x="51.0285%" y="645" width="0.0502%" height="15" fill="rgb(250,80,15)" fg:x="264112" fg:w="260"/><text x="51.2785%" y="655.50"></text></g><g><title>mutex_unlock (55 samples, 0.01%)</title><rect x="51.0682%" y="629" width="0.0106%" height="15" fill="rgb(252,191,6)" fg:x="264317" fg:w="55"/><text x="51.3182%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (106 samples, 0.02%)</title><rect x="51.0832%" y="645" width="0.0205%" height="15" fill="rgb(246,217,18)" fg:x="264395" fg:w="106"/><text x="51.3332%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (85 samples, 0.02%)</title><rect x="51.0873%" y="629" width="0.0164%" height="15" fill="rgb(223,93,7)" fg:x="264416" fg:w="85"/><text x="51.3373%" y="639.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="51.1141%" y="613" width="0.0126%" height="15" fill="rgb(225,55,52)" fg:x="264555" fg:w="65"/><text x="51.3641%" y="623.50"></text></g><g><title>inode_get_bytes (76 samples, 0.01%)</title><rect x="51.1122%" y="629" width="0.0147%" height="15" fill="rgb(240,31,24)" fg:x="264545" fg:w="76"/><text x="51.3622%" y="639.50"></text></g><g><title>fill_stack_inode_item (164 samples, 0.03%)</title><rect x="51.1037%" y="645" width="0.0317%" height="15" fill="rgb(205,56,52)" fg:x="264501" fg:w="164"/><text x="51.3537%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (683 samples, 0.13%)</title><rect x="51.0237%" y="661" width="0.1320%" height="15" fill="rgb(246,146,12)" fg:x="264087" fg:w="683"/><text x="51.2737%" y="671.50"></text></g><g><title>mutex_unlock (58 samples, 0.01%)</title><rect x="51.1445%" y="645" width="0.0112%" height="15" fill="rgb(239,84,36)" fg:x="264712" fg:w="58"/><text x="51.3945%" y="655.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="51.1599%" y="645" width="0.0112%" height="15" fill="rgb(207,41,40)" fg:x="264792" fg:w="58"/><text x="51.4099%" y="655.50"></text></g><g><title>btrfs_update_inode (949 samples, 0.18%)</title><rect x="51.0102%" y="677" width="0.1834%" height="15" fill="rgb(241,179,25)" fg:x="264017" fg:w="949"/><text x="51.2602%" y="687.50"></text></g><g><title>btrfs_update_root_times (196 samples, 0.04%)</title><rect x="51.1557%" y="661" width="0.0379%" height="15" fill="rgb(210,0,34)" fg:x="264770" fg:w="196"/><text x="51.4057%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (116 samples, 0.02%)</title><rect x="51.1711%" y="645" width="0.0224%" height="15" fill="rgb(225,217,29)" fg:x="264850" fg:w="116"/><text x="51.4211%" y="655.50"></text></g><g><title>read_tsc (70 samples, 0.01%)</title><rect x="51.1800%" y="629" width="0.0135%" height="15" fill="rgb(216,191,38)" fg:x="264896" fg:w="70"/><text x="51.4300%" y="639.50"></text></g><g><title>current_time (62 samples, 0.01%)</title><rect x="51.1935%" y="677" width="0.0120%" height="15" fill="rgb(232,140,52)" fg:x="264966" fg:w="62"/><text x="51.4435%" y="687.50"></text></g><g><title>memset_erms (52 samples, 0.01%)</title><rect x="51.2198%" y="661" width="0.0100%" height="15" fill="rgb(223,158,51)" fg:x="265102" fg:w="52"/><text x="51.4698%" y="671.50"></text></g><g><title>kmem_cache_alloc (151 samples, 0.03%)</title><rect x="51.2055%" y="677" width="0.0292%" height="15" fill="rgb(235,29,51)" fg:x="265028" fg:w="151"/><text x="51.4555%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (29,855 samples, 5.77%)</title><rect x="45.4929%" y="693" width="5.7682%" height="15" fill="rgb(215,181,18)" fg:x="235461" fg:w="29855"/><text x="45.7429%" y="703.50">__btrfs..</text></g><g><title>kmem_cache_free (137 samples, 0.03%)</title><rect x="51.2347%" y="677" width="0.0265%" height="15" fill="rgb(227,125,34)" fg:x="265179" fg:w="137"/><text x="51.4847%" y="687.50"></text></g><g><title>btrfs_btree_balance_dirty (80 samples, 0.02%)</title><rect x="51.2614%" y="693" width="0.0155%" height="15" fill="rgb(230,197,49)" fg:x="265317" fg:w="80"/><text x="51.5114%" y="703.50"></text></g><g><title>btrfs_tree_unlock (58 samples, 0.01%)</title><rect x="51.2930%" y="629" width="0.0112%" height="15" fill="rgb(239,141,16)" fg:x="265481" fg:w="58"/><text x="51.5430%" y="639.50"></text></g><g><title>_raw_spin_lock (152 samples, 0.03%)</title><rect x="51.3118%" y="613" width="0.0294%" height="15" fill="rgb(225,105,43)" fg:x="265578" fg:w="152"/><text x="51.5618%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (185 samples, 0.04%)</title><rect x="51.3056%" y="629" width="0.0357%" height="15" fill="rgb(214,131,14)" fg:x="265546" fg:w="185"/><text x="51.5556%" y="639.50"></text></g><g><title>btrfs_free_path (476 samples, 0.09%)</title><rect x="51.2822%" y="661" width="0.0920%" height="15" fill="rgb(229,177,11)" fg:x="265425" fg:w="476"/><text x="51.5322%" y="671.50"></text></g><g><title>btrfs_release_path (470 samples, 0.09%)</title><rect x="51.2834%" y="645" width="0.0908%" height="15" fill="rgb(231,180,14)" fg:x="265431" fg:w="470"/><text x="51.5334%" y="655.50"></text></g><g><title>release_extent_buffer (170 samples, 0.03%)</title><rect x="51.3413%" y="629" width="0.0328%" height="15" fill="rgb(232,88,2)" fg:x="265731" fg:w="170"/><text x="51.5913%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (69 samples, 0.01%)</title><rect x="51.4401%" y="613" width="0.0133%" height="15" fill="rgb(205,220,8)" fg:x="266242" fg:w="69"/><text x="51.6901%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (152 samples, 0.03%)</title><rect x="51.4380%" y="629" width="0.0294%" height="15" fill="rgb(225,23,53)" fg:x="266231" fg:w="152"/><text x="51.6880%" y="639.50"></text></g><g><title>btrfs_root_node (72 samples, 0.01%)</title><rect x="51.4534%" y="613" width="0.0139%" height="15" fill="rgb(213,62,29)" fg:x="266311" fg:w="72"/><text x="51.7034%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (183 samples, 0.04%)</title><rect x="51.4720%" y="629" width="0.0354%" height="15" fill="rgb(227,75,7)" fg:x="266407" fg:w="183"/><text x="51.7220%" y="639.50"></text></g><g><title>leaf_space_used (152 samples, 0.03%)</title><rect x="51.4779%" y="613" width="0.0294%" height="15" fill="rgb(207,105,14)" fg:x="266438" fg:w="152"/><text x="51.7279%" y="623.50"></text></g><g><title>btrfs_get_32 (101 samples, 0.02%)</title><rect x="51.4878%" y="597" width="0.0195%" height="15" fill="rgb(245,62,29)" fg:x="266489" fg:w="101"/><text x="51.7378%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (80 samples, 0.02%)</title><rect x="51.5073%" y="629" width="0.0155%" height="15" fill="rgb(236,202,4)" fg:x="266590" fg:w="80"/><text x="51.7573%" y="639.50"></text></g><g><title>_raw_write_lock (92 samples, 0.02%)</title><rect x="51.5297%" y="613" width="0.0178%" height="15" fill="rgb(250,67,1)" fg:x="266706" fg:w="92"/><text x="51.7797%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (129 samples, 0.02%)</title><rect x="51.5228%" y="629" width="0.0249%" height="15" fill="rgb(253,115,44)" fg:x="266670" fg:w="129"/><text x="51.7728%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (681 samples, 0.13%)</title><rect x="51.5477%" y="629" width="0.1316%" height="15" fill="rgb(251,139,18)" fg:x="266799" fg:w="681"/><text x="51.7977%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (66 samples, 0.01%)</title><rect x="51.7048%" y="613" width="0.0128%" height="15" fill="rgb(218,22,32)" fg:x="267612" fg:w="66"/><text x="51.9548%" y="623.50"></text></g><g><title>btrfs_get_64 (115 samples, 0.02%)</title><rect x="51.7175%" y="613" width="0.0222%" height="15" fill="rgb(243,53,5)" fg:x="267678" fg:w="115"/><text x="51.9675%" y="623.50"></text></g><g><title>__radix_tree_lookup (518 samples, 0.10%)</title><rect x="51.7846%" y="597" width="0.1001%" height="15" fill="rgb(227,56,16)" fg:x="268025" fg:w="518"/><text x="52.0346%" y="607.50"></text></g><g><title>check_buffer_tree_ref (54 samples, 0.01%)</title><rect x="51.8916%" y="581" width="0.0104%" height="15" fill="rgb(245,53,0)" fg:x="268579" fg:w="54"/><text x="52.1416%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (243 samples, 0.05%)</title><rect x="51.8848%" y="597" width="0.0469%" height="15" fill="rgb(216,170,35)" fg:x="268544" fg:w="243"/><text x="52.1348%" y="607.50"></text></g><g><title>mark_page_accessed (154 samples, 0.03%)</title><rect x="51.9020%" y="581" width="0.0298%" height="15" fill="rgb(211,200,8)" fg:x="268633" fg:w="154"/><text x="52.1520%" y="591.50"></text></g><g><title>find_extent_buffer (943 samples, 0.18%)</title><rect x="51.7519%" y="613" width="0.1822%" height="15" fill="rgb(228,204,44)" fg:x="267856" fg:w="943"/><text x="52.0019%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,482 samples, 0.29%)</title><rect x="51.6793%" y="629" width="0.2863%" height="15" fill="rgb(214,121,17)" fg:x="267480" fg:w="1482"/><text x="51.9293%" y="639.50"></text></g><g><title>read_extent_buffer (163 samples, 0.03%)</title><rect x="51.9341%" y="613" width="0.0315%" height="15" fill="rgb(233,64,38)" fg:x="268799" fg:w="163"/><text x="52.1841%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (59 samples, 0.01%)</title><rect x="51.9977%" y="613" width="0.0114%" height="15" fill="rgb(253,54,19)" fg:x="269128" fg:w="59"/><text x="52.2477%" y="623.50"></text></g><g><title>btrfs_search_slot (3,267 samples, 0.63%)</title><rect x="51.3806%" y="645" width="0.6312%" height="15" fill="rgb(253,94,18)" fg:x="265934" fg:w="3267"/><text x="51.6306%" y="655.50"></text></g><g><title>unlock_up (239 samples, 0.05%)</title><rect x="51.9656%" y="629" width="0.0462%" height="15" fill="rgb(227,57,52)" fg:x="268962" fg:w="239"/><text x="52.2156%" y="639.50"></text></g><g><title>btrfs_get_32 (58 samples, 0.01%)</title><rect x="52.0547%" y="629" width="0.0112%" height="15" fill="rgb(230,228,50)" fg:x="269423" fg:w="58"/><text x="52.3047%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (273 samples, 0.05%)</title><rect x="52.0659%" y="629" width="0.0527%" height="15" fill="rgb(217,205,27)" fg:x="269481" fg:w="273"/><text x="52.3159%" y="639.50"></text></g><g><title>leaf_space_used (231 samples, 0.04%)</title><rect x="52.0740%" y="613" width="0.0446%" height="15" fill="rgb(252,71,50)" fg:x="269523" fg:w="231"/><text x="52.3240%" y="623.50"></text></g><g><title>btrfs_get_32 (170 samples, 0.03%)</title><rect x="52.0858%" y="597" width="0.0328%" height="15" fill="rgb(209,86,4)" fg:x="269584" fg:w="170"/><text x="52.3358%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (174 samples, 0.03%)</title><rect x="52.1186%" y="629" width="0.0336%" height="15" fill="rgb(229,94,0)" fg:x="269754" fg:w="174"/><text x="52.3686%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (109 samples, 0.02%)</title><rect x="52.1312%" y="613" width="0.0211%" height="15" fill="rgb(252,223,21)" fg:x="269819" fg:w="109"/><text x="52.3812%" y="623.50"></text></g><g><title>btrfs_set_token_32 (85 samples, 0.02%)</title><rect x="52.1522%" y="629" width="0.0164%" height="15" fill="rgb(230,210,4)" fg:x="269928" fg:w="85"/><text x="52.4022%" y="639.50"></text></g><g><title>btrfs_unlock_up_safe (56 samples, 0.01%)</title><rect x="52.1687%" y="629" width="0.0108%" height="15" fill="rgb(240,149,38)" fg:x="270013" fg:w="56"/><text x="52.4187%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (4,284 samples, 0.83%)</title><rect x="51.3742%" y="661" width="0.8277%" height="15" fill="rgb(254,105,20)" fg:x="265901" fg:w="4284"/><text x="51.6242%" y="671.50"></text></g><g><title>setup_items_for_insert (984 samples, 0.19%)</title><rect x="52.0118%" y="645" width="0.1901%" height="15" fill="rgb(253,87,46)" fg:x="269201" fg:w="984"/><text x="52.2618%" y="655.50"></text></g><g><title>write_extent_buffer (116 samples, 0.02%)</title><rect x="52.1795%" y="629" width="0.0224%" height="15" fill="rgb(253,116,33)" fg:x="270069" fg:w="116"/><text x="52.4295%" y="639.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="52.2148%" y="645" width="0.0118%" height="15" fill="rgb(229,198,5)" fg:x="270252" fg:w="61"/><text x="52.4648%" y="655.50"></text></g><g><title>kmem_cache_alloc (163 samples, 0.03%)</title><rect x="52.2019%" y="661" width="0.0315%" height="15" fill="rgb(242,38,37)" fg:x="270185" fg:w="163"/><text x="52.4519%" y="671.50"></text></g><g><title>btrfs_orphan_add (5,042 samples, 0.97%)</title><rect x="51.2772%" y="693" width="0.9742%" height="15" fill="rgb(242,69,53)" fg:x="265399" fg:w="5042"/><text x="51.5272%" y="703.50"></text></g><g><title>btrfs_insert_orphan_item (5,035 samples, 0.97%)</title><rect x="51.2786%" y="677" width="0.9728%" height="15" fill="rgb(249,80,16)" fg:x="265406" fg:w="5035"/><text x="51.5286%" y="687.50"></text></g><g><title>kmem_cache_free (93 samples, 0.02%)</title><rect x="52.2334%" y="661" width="0.0180%" height="15" fill="rgb(206,128,11)" fg:x="270348" fg:w="93"/><text x="52.4834%" y="671.50"></text></g><g><title>mutex_lock (137 samples, 0.03%)</title><rect x="52.2566%" y="677" width="0.0265%" height="15" fill="rgb(212,35,20)" fg:x="270468" fg:w="137"/><text x="52.5066%" y="687.50"></text></g><g><title>btrfs_record_unlink_dir (263 samples, 0.05%)</title><rect x="52.2514%" y="693" width="0.0508%" height="15" fill="rgb(236,79,13)" fg:x="270441" fg:w="263"/><text x="52.5014%" y="703.50"></text></g><g><title>mutex_unlock (99 samples, 0.02%)</title><rect x="52.2830%" y="677" width="0.0191%" height="15" fill="rgb(233,123,3)" fg:x="270605" fg:w="99"/><text x="52.5330%" y="687.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="52.3078%" y="677" width="0.0102%" height="15" fill="rgb(214,93,52)" fg:x="270733" fg:w="53"/><text x="52.5578%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (252 samples, 0.05%)</title><rect x="52.3518%" y="661" width="0.0487%" height="15" fill="rgb(251,37,40)" fg:x="270961" fg:w="252"/><text x="52.6018%" y="671.50"></text></g><g><title>mutex_unlock (57 samples, 0.01%)</title><rect x="52.3895%" y="645" width="0.0110%" height="15" fill="rgb(227,80,54)" fg:x="271156" fg:w="57"/><text x="52.6395%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (148 samples, 0.03%)</title><rect x="52.4007%" y="661" width="0.0286%" height="15" fill="rgb(254,48,11)" fg:x="271214" fg:w="148"/><text x="52.6507%" y="671.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="52.4069%" y="645" width="0.0224%" height="15" fill="rgb(235,193,26)" fg:x="271246" fg:w="116"/><text x="52.6569%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (90 samples, 0.02%)</title><rect x="52.4293%" y="661" width="0.0174%" height="15" fill="rgb(229,99,21)" fg:x="271362" fg:w="90"/><text x="52.6793%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (76 samples, 0.01%)</title><rect x="52.4320%" y="645" width="0.0147%" height="15" fill="rgb(211,140,41)" fg:x="271376" fg:w="76"/><text x="52.6820%" y="655.50"></text></g><g><title>inode_get_bytes (82 samples, 0.02%)</title><rect x="52.4554%" y="645" width="0.0158%" height="15" fill="rgb(240,227,30)" fg:x="271497" fg:w="82"/><text x="52.7054%" y="655.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="52.4585%" y="629" width="0.0128%" height="15" fill="rgb(215,224,45)" fg:x="271513" fg:w="66"/><text x="52.7085%" y="639.50"></text></g><g><title>fill_stack_inode_item (162 samples, 0.03%)</title><rect x="52.4467%" y="661" width="0.0313%" height="15" fill="rgb(206,123,31)" fg:x="271452" fg:w="162"/><text x="52.6967%" y="671.50"></text></g><g><title>mutex_lock (68 samples, 0.01%)</title><rect x="52.4780%" y="661" width="0.0131%" height="15" fill="rgb(210,138,16)" fg:x="271614" fg:w="68"/><text x="52.7280%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (942 samples, 0.18%)</title><rect x="52.3180%" y="677" width="0.1820%" height="15" fill="rgb(228,57,28)" fg:x="270786" fg:w="942"/><text x="52.5680%" y="687.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="52.5019%" y="661" width="0.0120%" height="15" fill="rgb(242,170,10)" fg:x="271738" fg:w="62"/><text x="52.7519%" y="671.50"></text></g><g><title>btrfs_update_inode (1,205 samples, 0.23%)</title><rect x="52.3033%" y="693" width="0.2328%" height="15" fill="rgb(228,214,39)" fg:x="270710" fg:w="1205"/><text x="52.5533%" y="703.50"></text></g><g><title>btrfs_update_root_times (187 samples, 0.04%)</title><rect x="52.5000%" y="677" width="0.0361%" height="15" fill="rgb(218,179,33)" fg:x="271728" fg:w="187"/><text x="52.7500%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (115 samples, 0.02%)</title><rect x="52.5139%" y="661" width="0.0222%" height="15" fill="rgb(235,193,39)" fg:x="271800" fg:w="115"/><text x="52.7639%" y="671.50"></text></g><g><title>read_tsc (68 samples, 0.01%)</title><rect x="52.5230%" y="645" width="0.0131%" height="15" fill="rgb(219,221,36)" fg:x="271847" fg:w="68"/><text x="52.7730%" y="655.50"></text></g><g><title>drop_nlink (55 samples, 0.01%)</title><rect x="52.5361%" y="693" width="0.0106%" height="15" fill="rgb(248,218,19)" fg:x="271915" fg:w="55"/><text x="52.7861%" y="703.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="52.5858%" y="661" width="0.0120%" height="15" fill="rgb(205,50,9)" fg:x="272172" fg:w="62"/><text x="52.8358%" y="671.50"></text></g><g><title>_raw_spin_lock (83 samples, 0.02%)</title><rect x="52.6101%" y="629" width="0.0160%" height="15" fill="rgb(238,81,28)" fg:x="272298" fg:w="83"/><text x="52.8601%" y="639.50"></text></g><g><title>_raw_spin_lock (126 samples, 0.02%)</title><rect x="52.6923%" y="597" width="0.0243%" height="15" fill="rgb(235,110,19)" fg:x="272723" fg:w="126"/><text x="52.9423%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (468 samples, 0.09%)</title><rect x="52.6264%" y="629" width="0.0904%" height="15" fill="rgb(214,7,14)" fg:x="272382" fg:w="468"/><text x="52.8764%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (291 samples, 0.06%)</title><rect x="52.6606%" y="613" width="0.0562%" height="15" fill="rgb(211,77,3)" fg:x="272559" fg:w="291"/><text x="52.9106%" y="623.50"></text></g><g><title>__reserve_bytes (846 samples, 0.16%)</title><rect x="52.5997%" y="645" width="0.1635%" height="15" fill="rgb(229,5,9)" fg:x="272244" fg:w="846"/><text x="52.8497%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (240 samples, 0.05%)</title><rect x="52.7168%" y="629" width="0.0464%" height="15" fill="rgb(225,90,11)" fg:x="272850" fg:w="240"/><text x="52.9668%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (155 samples, 0.03%)</title><rect x="52.7332%" y="613" width="0.0299%" height="15" fill="rgb(242,56,8)" fg:x="272935" fg:w="155"/><text x="52.9832%" y="623.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="52.7502%" y="597" width="0.0129%" height="15" fill="rgb(249,212,39)" fg:x="273023" fg:w="67"/><text x="53.0002%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (932 samples, 0.18%)</title><rect x="52.5833%" y="677" width="0.1801%" height="15" fill="rgb(236,90,9)" fg:x="272159" fg:w="932"/><text x="52.8333%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (857 samples, 0.17%)</title><rect x="52.5978%" y="661" width="0.1656%" height="15" fill="rgb(206,88,35)" fg:x="272234" fg:w="857"/><text x="52.8478%" y="671.50"></text></g><g><title>_raw_spin_lock (68 samples, 0.01%)</title><rect x="52.8030%" y="661" width="0.0131%" height="15" fill="rgb(205,126,30)" fg:x="273296" fg:w="68"/><text x="53.0530%" y="671.50"></text></g><g><title>join_transaction (262 samples, 0.05%)</title><rect x="52.7659%" y="677" width="0.0506%" height="15" fill="rgb(230,176,12)" fg:x="273104" fg:w="262"/><text x="53.0159%" y="687.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="52.8318%" y="661" width="0.0126%" height="15" fill="rgb(243,19,9)" fg:x="273445" fg:w="65"/><text x="53.0818%" y="671.50"></text></g><g><title>kmem_cache_alloc (174 samples, 0.03%)</title><rect x="52.8165%" y="677" width="0.0336%" height="15" fill="rgb(245,171,17)" fg:x="273366" fg:w="174"/><text x="53.0665%" y="687.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="52.8549%" y="661" width="0.0120%" height="15" fill="rgb(227,52,21)" fg:x="273565" fg:w="62"/><text x="53.1049%" y="671.50"></text></g><g><title>btrfs_unlink (38,807 samples, 7.50%)</title><rect x="45.3693%" y="709" width="7.4978%" height="15" fill="rgb(238,69,14)" fg:x="234821" fg:w="38807"/><text x="45.6193%" y="719.50">btrfs_unli..</text></g><g><title>start_transaction (1,658 samples, 0.32%)</title><rect x="52.5468%" y="693" width="0.3203%" height="15" fill="rgb(241,156,39)" fg:x="271970" fg:w="1658"/><text x="52.7968%" y="703.50"></text></g><g><title>wait_current_trans (88 samples, 0.02%)</title><rect x="52.8501%" y="677" width="0.0170%" height="15" fill="rgb(212,227,28)" fg:x="273540" fg:w="88"/><text x="53.1001%" y="687.50"></text></g><g><title>d_delete (114 samples, 0.02%)</title><rect x="52.8671%" y="709" width="0.0220%" height="15" fill="rgb(209,118,27)" fg:x="273628" fg:w="114"/><text x="53.1171%" y="719.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="52.8698%" y="693" width="0.0193%" height="15" fill="rgb(226,102,5)" fg:x="273642" fg:w="100"/><text x="53.1198%" y="703.50"></text></g><g><title>__srcu_read_lock (101 samples, 0.02%)</title><rect x="52.9092%" y="661" width="0.0195%" height="15" fill="rgb(223,34,3)" fg:x="273846" fg:w="101"/><text x="53.1592%" y="671.50"></text></g><g><title>dentry_unlink_inode (268 samples, 0.05%)</title><rect x="52.8891%" y="709" width="0.0518%" height="15" fill="rgb(221,81,38)" fg:x="273742" fg:w="268"/><text x="53.1391%" y="719.50"></text></g><g><title>fsnotify_destroy_marks (199 samples, 0.04%)</title><rect x="52.9025%" y="693" width="0.0384%" height="15" fill="rgb(236,219,28)" fg:x="273811" fg:w="199"/><text x="53.1525%" y="703.50"></text></g><g><title>fsnotify_grab_connector (182 samples, 0.04%)</title><rect x="52.9058%" y="677" width="0.0352%" height="15" fill="rgb(213,200,14)" fg:x="273828" fg:w="182"/><text x="53.1558%" y="687.50"></text></g><g><title>__srcu_read_unlock (63 samples, 0.01%)</title><rect x="52.9287%" y="661" width="0.0122%" height="15" fill="rgb(240,33,19)" fg:x="273947" fg:w="63"/><text x="53.1787%" y="671.50"></text></g><g><title>down_write (339 samples, 0.07%)</title><rect x="52.9409%" y="709" width="0.0655%" height="15" fill="rgb(233,113,27)" fg:x="274010" fg:w="339"/><text x="53.1909%" y="719.50"></text></g><g><title>fsnotify (234 samples, 0.05%)</title><rect x="53.0064%" y="709" width="0.0452%" height="15" fill="rgb(220,221,18)" fg:x="274349" fg:w="234"/><text x="53.2564%" y="719.50"></text></g><g><title>ihold (62 samples, 0.01%)</title><rect x="53.0516%" y="709" width="0.0120%" height="15" fill="rgb(238,92,8)" fg:x="274583" fg:w="62"/><text x="53.3016%" y="719.50"></text></g><g><title>iput.part.0 (145 samples, 0.03%)</title><rect x="53.0650%" y="709" width="0.0280%" height="15" fill="rgb(222,164,16)" fg:x="274652" fg:w="145"/><text x="53.3150%" y="719.50"></text></g><g><title>_atomic_dec_and_lock (126 samples, 0.02%)</title><rect x="53.0686%" y="693" width="0.0243%" height="15" fill="rgb(241,119,3)" fg:x="274671" fg:w="126"/><text x="53.3186%" y="703.50"></text></g><g><title>inode_permission.part.0 (78 samples, 0.02%)</title><rect x="53.1040%" y="693" width="0.0151%" height="15" fill="rgb(241,44,8)" fg:x="274854" fg:w="78"/><text x="53.3540%" y="703.50"></text></g><g><title>may_delete (142 samples, 0.03%)</title><rect x="53.0930%" y="709" width="0.0274%" height="15" fill="rgb(230,36,40)" fg:x="274797" fg:w="142"/><text x="53.3430%" y="719.50"></text></g><g><title>do_unlinkat (96,949 samples, 18.73%)</title><rect x="34.4065%" y="741" width="18.7313%" height="15" fill="rgb(243,16,36)" fg:x="178080" fg:w="96949"/><text x="34.6565%" y="751.50">do_unlinkat</text></g><g><title>vfs_unlink (40,394 samples, 7.80%)</title><rect x="45.3334%" y="725" width="7.8044%" height="15" fill="rgb(231,4,26)" fg:x="234635" fg:w="40394"/><text x="45.5834%" y="735.50">vfs_unlink</text></g><g><title>up_write (77 samples, 0.01%)</title><rect x="53.1229%" y="709" width="0.0149%" height="15" fill="rgb(240,9,31)" fg:x="274952" fg:w="77"/><text x="53.3729%" y="719.50"></text></g><g><title>do_syscall_64 (109,122 samples, 21.08%)</title><rect x="32.0576%" y="757" width="21.0832%" height="15" fill="rgb(207,173,15)" fg:x="165923" fg:w="109122"/><text x="32.3076%" y="767.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (109,244 samples, 21.11%)</title><rect x="32.0491%" y="773" width="21.1068%" height="15" fill="rgb(224,192,53)" fg:x="165879" fg:w="109244"/><text x="32.2991%" y="783.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (78 samples, 0.02%)</title><rect x="53.1409%" y="757" width="0.0151%" height="15" fill="rgb(223,67,28)" fg:x="275045" fg:w="78"/><text x="53.3909%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (62 samples, 0.01%)</title><rect x="53.1440%" y="741" width="0.0120%" height="15" fill="rgb(211,20,47)" fg:x="275061" fg:w="62"/><text x="53.3940%" y="751.50"></text></g><g><title>syscall_return_via_sysret (126 samples, 0.02%)</title><rect x="53.1577%" y="773" width="0.0243%" height="15" fill="rgb(240,228,2)" fg:x="275132" fg:w="126"/><text x="53.4077%" y="783.50"></text></g><g><title>__GI_unlinkat (109,836 samples, 21.22%)</title><rect x="31.9610%" y="789" width="21.2212%" height="15" fill="rgb(248,151,12)" fg:x="165423" fg:w="109836"/><text x="32.2110%" y="799.50">__GI_unlinkat</text></g><g><title>__closedir (68 samples, 0.01%)</title><rect x="53.1832%" y="789" width="0.0131%" height="15" fill="rgb(244,8,39)" fg:x="275264" fg:w="68"/><text x="53.4332%" y="799.50"></text></g><g><title>_int_free (60 samples, 0.01%)</title><rect x="53.1847%" y="773" width="0.0116%" height="15" fill="rgb(222,26,8)" fg:x="275272" fg:w="60"/><text x="53.4347%" y="783.50"></text></g><g><title>__GI___fcntl64_nocancel (57 samples, 0.01%)</title><rect x="53.2006%" y="773" width="0.0110%" height="15" fill="rgb(213,106,44)" fg:x="275354" fg:w="57"/><text x="53.4506%" y="783.50"></text></g><g><title>__fcntl64_nocancel_adjusted (54 samples, 0.01%)</title><rect x="53.2012%" y="757" width="0.0104%" height="15" fill="rgb(214,129,20)" fg:x="275357" fg:w="54"/><text x="53.4512%" y="767.50"></text></g><g><title>btrfs_getattr (53 samples, 0.01%)</title><rect x="53.2280%" y="693" width="0.0102%" height="15" fill="rgb(212,32,13)" fg:x="275496" fg:w="53"/><text x="53.4780%" y="703.50"></text></g><g><title>__do_sys_newfstat (116 samples, 0.02%)</title><rect x="53.2211%" y="725" width="0.0224%" height="15" fill="rgb(208,168,33)" fg:x="275460" fg:w="116"/><text x="53.4711%" y="735.50"></text></g><g><title>vfs_fstat (91 samples, 0.02%)</title><rect x="53.2259%" y="709" width="0.0176%" height="15" fill="rgb(231,207,8)" fg:x="275485" fg:w="91"/><text x="53.4759%" y="719.50"></text></g><g><title>do_syscall_64 (123 samples, 0.02%)</title><rect x="53.2201%" y="741" width="0.0238%" height="15" fill="rgb(235,219,23)" fg:x="275455" fg:w="123"/><text x="53.4701%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (129 samples, 0.02%)</title><rect x="53.2193%" y="757" width="0.0249%" height="15" fill="rgb(226,216,26)" fg:x="275451" fg:w="129"/><text x="53.4693%" y="767.50"></text></g><g><title>__GI___fxstat (172 samples, 0.03%)</title><rect x="53.2116%" y="773" width="0.0332%" height="15" fill="rgb(239,137,16)" fg:x="275411" fg:w="172"/><text x="53.4616%" y="783.50"></text></g><g><title>__GI___fcntl64_nocancel (62 samples, 0.01%)</title><rect x="53.2456%" y="757" width="0.0120%" height="15" fill="rgb(207,12,36)" fg:x="275587" fg:w="62"/><text x="53.4956%" y="767.50"></text></g><g><title>__fcntl64_nocancel_adjusted (62 samples, 0.01%)</title><rect x="53.2456%" y="741" width="0.0120%" height="15" fill="rgb(210,214,24)" fg:x="275587" fg:w="62"/><text x="53.4956%" y="751.50"></text></g><g><title>__GI___libc_malloc (108 samples, 0.02%)</title><rect x="53.2576%" y="757" width="0.0209%" height="15" fill="rgb(206,56,30)" fg:x="275649" fg:w="108"/><text x="53.5076%" y="767.50"></text></g><g><title>_int_malloc (86 samples, 0.02%)</title><rect x="53.2618%" y="741" width="0.0166%" height="15" fill="rgb(228,143,26)" fg:x="275671" fg:w="86"/><text x="53.5118%" y="751.50"></text></g><g><title>__fdopendir (407 samples, 0.08%)</title><rect x="53.2006%" y="789" width="0.0786%" height="15" fill="rgb(216,218,46)" fg:x="275354" fg:w="407"/><text x="53.4506%" y="799.50"></text></g><g><title>__alloc_dir (178 samples, 0.03%)</title><rect x="53.2448%" y="773" width="0.0344%" height="15" fill="rgb(206,6,19)" fg:x="275583" fg:w="178"/><text x="53.4948%" y="783.50"></text></g><g><title>memcg_slab_post_alloc_hook (55 samples, 0.01%)</title><rect x="53.3240%" y="629" width="0.0106%" height="15" fill="rgb(239,177,51)" fg:x="275993" fg:w="55"/><text x="53.5740%" y="639.50"></text></g><g><title>kmem_cache_alloc (143 samples, 0.03%)</title><rect x="53.3181%" y="645" width="0.0276%" height="15" fill="rgb(216,55,25)" fg:x="275962" fg:w="143"/><text x="53.5681%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (52 samples, 0.01%)</title><rect x="53.3356%" y="629" width="0.0100%" height="15" fill="rgb(231,163,29)" fg:x="276053" fg:w="52"/><text x="53.5856%" y="639.50"></text></g><g><title>__alloc_file (205 samples, 0.04%)</title><rect x="53.3148%" y="661" width="0.0396%" height="15" fill="rgb(232,149,50)" fg:x="275945" fg:w="205"/><text x="53.5648%" y="671.50"></text></g><g><title>alloc_empty_file (211 samples, 0.04%)</title><rect x="53.3138%" y="677" width="0.0408%" height="15" fill="rgb(223,142,48)" fg:x="275940" fg:w="211"/><text x="53.5638%" y="687.50"></text></g><g><title>btrfs_opendir (109 samples, 0.02%)</title><rect x="53.3681%" y="661" width="0.0211%" height="15" fill="rgb(245,83,23)" fg:x="276221" fg:w="109"/><text x="53.6181%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (96 samples, 0.02%)</title><rect x="53.3706%" y="645" width="0.0185%" height="15" fill="rgb(224,63,2)" fg:x="276234" fg:w="96"/><text x="53.6206%" y="655.50"></text></g><g><title>security_file_open (59 samples, 0.01%)</title><rect x="53.3959%" y="661" width="0.0114%" height="15" fill="rgb(218,65,53)" fg:x="276365" fg:w="59"/><text x="53.6459%" y="671.50"></text></g><g><title>do_dentry_open (251 samples, 0.05%)</title><rect x="53.3590%" y="677" width="0.0485%" height="15" fill="rgb(221,84,29)" fg:x="276174" fg:w="251"/><text x="53.6090%" y="687.50"></text></g><g><title>lookup_fast (109 samples, 0.02%)</title><rect x="53.4098%" y="677" width="0.0211%" height="15" fill="rgb(234,0,32)" fg:x="276437" fg:w="109"/><text x="53.6598%" y="687.50"></text></g><g><title>__d_lookup_rcu (103 samples, 0.02%)</title><rect x="53.4110%" y="661" width="0.0199%" height="15" fill="rgb(206,20,16)" fg:x="276443" fg:w="103"/><text x="53.6610%" y="671.50"></text></g><g><title>do_filp_open (717 samples, 0.14%)</title><rect x="53.3076%" y="709" width="0.1385%" height="15" fill="rgb(244,172,18)" fg:x="275908" fg:w="717"/><text x="53.5576%" y="719.50"></text></g><g><title>path_openat (701 samples, 0.14%)</title><rect x="53.3107%" y="693" width="0.1354%" height="15" fill="rgb(254,133,1)" fg:x="275924" fg:w="701"/><text x="53.5607%" y="703.50"></text></g><g><title>getname_flags.part.0 (93 samples, 0.02%)</title><rect x="53.4506%" y="709" width="0.0180%" height="15" fill="rgb(222,206,41)" fg:x="276648" fg:w="93"/><text x="53.7006%" y="719.50"></text></g><g><title>__x64_sys_openat (909 samples, 0.18%)</title><rect x="53.2966%" y="741" width="0.1756%" height="15" fill="rgb(212,3,42)" fg:x="275851" fg:w="909"/><text x="53.5466%" y="751.50"></text></g><g><title>do_sys_openat2 (905 samples, 0.17%)</title><rect x="53.2974%" y="725" width="0.1749%" height="15" fill="rgb(241,11,4)" fg:x="275855" fg:w="905"/><text x="53.5474%" y="735.50"></text></g><g><title>do_syscall_64 (917 samples, 0.18%)</title><rect x="53.2953%" y="757" width="0.1772%" height="15" fill="rgb(205,19,26)" fg:x="275844" fg:w="917"/><text x="53.5453%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (928 samples, 0.18%)</title><rect x="53.2941%" y="773" width="0.1793%" height="15" fill="rgb(210,179,32)" fg:x="275838" fg:w="928"/><text x="53.5441%" y="783.50"></text></g><g><title>__libc_openat64 (989 samples, 0.19%)</title><rect x="53.2835%" y="789" width="0.1911%" height="15" fill="rgb(227,116,49)" fg:x="275783" fg:w="989"/><text x="53.5335%" y="799.50"></text></g><g><title>crc32c_pcl_intel_update (68 samples, 0.01%)</title><rect x="53.5130%" y="773" width="0.0131%" height="15" fill="rgb(211,146,6)" fg:x="276971" fg:w="68"/><text x="53.7630%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (168 samples, 0.03%)</title><rect x="53.5261%" y="773" width="0.0325%" height="15" fill="rgb(219,44,39)" fg:x="277039" fg:w="168"/><text x="53.7761%" y="783.50"></text></g><g><title>_raw_spin_lock (152 samples, 0.03%)</title><rect x="53.6647%" y="677" width="0.0294%" height="15" fill="rgb(234,128,11)" fg:x="277756" fg:w="152"/><text x="53.9147%" y="687.50"></text></g><g><title>d_lru_add (479 samples, 0.09%)</title><rect x="53.6133%" y="709" width="0.0925%" height="15" fill="rgb(220,183,53)" fg:x="277490" fg:w="479"/><text x="53.8633%" y="719.50"></text></g><g><title>list_lru_add (451 samples, 0.09%)</title><rect x="53.6187%" y="693" width="0.0871%" height="15" fill="rgb(213,219,32)" fg:x="277518" fg:w="451"/><text x="53.8687%" y="703.50"></text></g><g><title>mem_cgroup_from_obj (61 samples, 0.01%)</title><rect x="53.6940%" y="677" width="0.0118%" height="15" fill="rgb(232,156,16)" fg:x="277908" fg:w="61"/><text x="53.9440%" y="687.50"></text></g><g><title>lockref_put_or_lock (166 samples, 0.03%)</title><rect x="53.7058%" y="709" width="0.0321%" height="15" fill="rgb(246,135,34)" fg:x="277969" fg:w="166"/><text x="53.9558%" y="719.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="53.7271%" y="693" width="0.0108%" height="15" fill="rgb(241,99,0)" fg:x="278079" fg:w="56"/><text x="53.9771%" y="703.50"></text></g><g><title>dput (755 samples, 0.15%)</title><rect x="53.5938%" y="725" width="0.1459%" height="15" fill="rgb(222,103,45)" fg:x="277389" fg:w="755"/><text x="53.8438%" y="735.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (69 samples, 0.01%)</title><rect x="53.7897%" y="629" width="0.0133%" height="15" fill="rgb(212,57,4)" fg:x="278403" fg:w="69"/><text x="54.0397%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (265 samples, 0.05%)</title><rect x="53.8044%" y="629" width="0.0512%" height="15" fill="rgb(215,68,47)" fg:x="278479" fg:w="265"/><text x="54.0544%" y="639.50"></text></g><g><title>_raw_spin_lock (181 samples, 0.03%)</title><rect x="53.8206%" y="613" width="0.0350%" height="15" fill="rgb(230,84,2)" fg:x="278563" fg:w="181"/><text x="54.0706%" y="623.50"></text></g><g><title>btrfs_free_path (591 samples, 0.11%)</title><rect x="53.7758%" y="661" width="0.1142%" height="15" fill="rgb(220,102,14)" fg:x="278331" fg:w="591"/><text x="54.0258%" y="671.50"></text></g><g><title>btrfs_release_path (579 samples, 0.11%)</title><rect x="53.7781%" y="645" width="0.1119%" height="15" fill="rgb(240,10,32)" fg:x="278343" fg:w="579"/><text x="54.0281%" y="655.50"></text></g><g><title>release_extent_buffer (178 samples, 0.03%)</title><rect x="53.8556%" y="629" width="0.0344%" height="15" fill="rgb(215,47,27)" fg:x="278744" fg:w="178"/><text x="54.1056%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (87 samples, 0.02%)</title><rect x="53.9690%" y="613" width="0.0168%" height="15" fill="rgb(233,188,43)" fg:x="279331" fg:w="87"/><text x="54.2190%" y="623.50"></text></g><g><title>_raw_read_lock (56 samples, 0.01%)</title><rect x="53.9750%" y="597" width="0.0108%" height="15" fill="rgb(253,190,1)" fg:x="279362" fg:w="56"/><text x="54.2250%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (274 samples, 0.05%)</title><rect x="53.9651%" y="629" width="0.0529%" height="15" fill="rgb(206,114,52)" fg:x="279311" fg:w="274"/><text x="54.2151%" y="639.50"></text></g><g><title>btrfs_root_node (167 samples, 0.03%)</title><rect x="53.9858%" y="613" width="0.0323%" height="15" fill="rgb(233,120,37)" fg:x="279418" fg:w="167"/><text x="54.2358%" y="623.50"></text></g><g><title>dequeue_task_fair (54 samples, 0.01%)</title><rect x="54.0345%" y="581" width="0.0104%" height="15" fill="rgb(214,52,39)" fg:x="279670" fg:w="54"/><text x="54.2845%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (208 samples, 0.04%)</title><rect x="54.0180%" y="629" width="0.0402%" height="15" fill="rgb(223,80,29)" fg:x="279585" fg:w="208"/><text x="54.2680%" y="639.50"></text></g><g><title>schedule (157 samples, 0.03%)</title><rect x="54.0279%" y="613" width="0.0303%" height="15" fill="rgb(230,101,40)" fg:x="279636" fg:w="157"/><text x="54.2779%" y="623.50"></text></g><g><title>__schedule (148 samples, 0.03%)</title><rect x="54.0296%" y="597" width="0.0286%" height="15" fill="rgb(219,211,8)" fg:x="279645" fg:w="148"/><text x="54.2796%" y="607.50"></text></g><g><title>btrfs_set_path_blocking (222 samples, 0.04%)</title><rect x="54.0698%" y="629" width="0.0429%" height="15" fill="rgb(252,126,28)" fg:x="279853" fg:w="222"/><text x="54.3198%" y="639.50"></text></g><g><title>btrfs_set_lock_blocking_read (161 samples, 0.03%)</title><rect x="54.0816%" y="613" width="0.0311%" height="15" fill="rgb(215,56,38)" fg:x="279914" fg:w="161"/><text x="54.3316%" y="623.50"></text></g><g><title>_raw_read_lock (90 samples, 0.02%)</title><rect x="54.1199%" y="613" width="0.0174%" height="15" fill="rgb(249,55,44)" fg:x="280112" fg:w="90"/><text x="54.3699%" y="623.50"></text></g><g><title>btrfs_tree_read_lock_atomic (255 samples, 0.05%)</title><rect x="54.1127%" y="629" width="0.0493%" height="15" fill="rgb(220,221,32)" fg:x="280075" fg:w="255"/><text x="54.3627%" y="639.50"></text></g><g><title>queued_read_lock_slowpath (128 samples, 0.02%)</title><rect x="54.1373%" y="613" width="0.0247%" height="15" fill="rgb(212,216,41)" fg:x="280202" fg:w="128"/><text x="54.3873%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (200 samples, 0.04%)</title><rect x="54.1620%" y="629" width="0.0386%" height="15" fill="rgb(228,213,43)" fg:x="280330" fg:w="200"/><text x="54.4120%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (1,109 samples, 0.21%)</title><rect x="54.2022%" y="629" width="0.2143%" height="15" fill="rgb(211,31,26)" fg:x="280538" fg:w="1109"/><text x="54.4522%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (100 samples, 0.02%)</title><rect x="54.4466%" y="613" width="0.0193%" height="15" fill="rgb(229,202,19)" fg:x="281803" fg:w="100"/><text x="54.6966%" y="623.50"></text></g><g><title>verify_parent_transid (60 samples, 0.01%)</title><rect x="54.4543%" y="597" width="0.0116%" height="15" fill="rgb(229,105,46)" fg:x="281843" fg:w="60"/><text x="54.7043%" y="607.50"></text></g><g><title>btrfs_get_64 (157 samples, 0.03%)</title><rect x="54.4659%" y="613" width="0.0303%" height="15" fill="rgb(235,108,1)" fg:x="281903" fg:w="157"/><text x="54.7159%" y="623.50"></text></g><g><title>btrfs_verify_level_key (59 samples, 0.01%)</title><rect x="54.4988%" y="613" width="0.0114%" height="15" fill="rgb(245,111,35)" fg:x="282073" fg:w="59"/><text x="54.7488%" y="623.50"></text></g><g><title>__radix_tree_lookup (840 samples, 0.16%)</title><rect x="54.5615%" y="597" width="0.1623%" height="15" fill="rgb(219,185,31)" fg:x="282398" fg:w="840"/><text x="54.8115%" y="607.50"></text></g><g><title>check_buffer_tree_ref (70 samples, 0.01%)</title><rect x="54.7352%" y="581" width="0.0135%" height="15" fill="rgb(214,4,43)" fg:x="283297" fg:w="70"/><text x="54.9852%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (344 samples, 0.07%)</title><rect x="54.7238%" y="597" width="0.0665%" height="15" fill="rgb(235,227,40)" fg:x="283238" fg:w="344"/><text x="54.9738%" y="607.50"></text></g><g><title>mark_page_accessed (215 samples, 0.04%)</title><rect x="54.7488%" y="581" width="0.0415%" height="15" fill="rgb(230,88,30)" fg:x="283367" fg:w="215"/><text x="54.9988%" y="591.50"></text></g><g><title>find_extent_buffer (1,458 samples, 0.28%)</title><rect x="54.5102%" y="613" width="0.2817%" height="15" fill="rgb(216,217,1)" fg:x="282132" fg:w="1458"/><text x="54.7602%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (2,155 samples, 0.42%)</title><rect x="54.4164%" y="629" width="0.4164%" height="15" fill="rgb(248,139,50)" fg:x="281647" fg:w="2155"/><text x="54.6664%" y="639.50"></text></g><g><title>read_extent_buffer (212 samples, 0.04%)</title><rect x="54.7918%" y="613" width="0.0410%" height="15" fill="rgb(233,1,21)" fg:x="283590" fg:w="212"/><text x="55.0418%" y="623.50"></text></g><g><title>btrfs_search_slot (4,975 samples, 0.96%)</title><rect x="53.8954%" y="645" width="0.9612%" height="15" fill="rgb(215,183,12)" fg:x="278950" fg:w="4975"/><text x="54.1454%" y="655.50"></text></g><g><title>unlock_up (123 samples, 0.02%)</title><rect x="54.8328%" y="629" width="0.0238%" height="15" fill="rgb(229,104,42)" fg:x="283802" fg:w="123"/><text x="55.0828%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (5,120 samples, 0.99%)</title><rect x="53.8900%" y="661" width="0.9892%" height="15" fill="rgb(243,34,48)" fg:x="278922" fg:w="5120"/><text x="54.1400%" y="671.50"></text></g><g><title>crc32c (117 samples, 0.02%)</title><rect x="54.8566%" y="645" width="0.0226%" height="15" fill="rgb(239,11,44)" fg:x="283925" fg:w="117"/><text x="55.1066%" y="655.50"></text></g><g><title>crypto_shash_update (94 samples, 0.02%)</title><rect x="54.8610%" y="629" width="0.0182%" height="15" fill="rgb(231,98,35)" fg:x="283948" fg:w="94"/><text x="55.1110%" y="639.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="54.9045%" y="645" width="0.0126%" height="15" fill="rgb(233,28,25)" fg:x="284173" fg:w="65"/><text x="55.1545%" y="655.50"></text></g><g><title>kmem_cache_alloc (234 samples, 0.05%)</title><rect x="54.8792%" y="661" width="0.0452%" height="15" fill="rgb(234,123,11)" fg:x="284042" fg:w="234"/><text x="55.1292%" y="671.50"></text></g><g><title>btrfs_lookup (6,153 samples, 1.19%)</title><rect x="53.7553%" y="693" width="1.1888%" height="15" fill="rgb(220,69,3)" fg:x="278225" fg:w="6153"/><text x="54.0053%" y="703.50"></text></g><g><title>btrfs_lookup_dentry (6,137 samples, 1.19%)</title><rect x="53.7584%" y="677" width="1.1857%" height="15" fill="rgb(214,64,36)" fg:x="278241" fg:w="6137"/><text x="54.0084%" y="687.50"></text></g><g><title>kmem_cache_free (102 samples, 0.02%)</title><rect x="54.9244%" y="661" width="0.0197%" height="15" fill="rgb(211,138,32)" fg:x="284276" fg:w="102"/><text x="55.1744%" y="671.50"></text></g><g><title>__slab_alloc (154 samples, 0.03%)</title><rect x="55.0067%" y="645" width="0.0298%" height="15" fill="rgb(213,118,47)" fg:x="284702" fg:w="154"/><text x="55.2567%" y="655.50"></text></g><g><title>___slab_alloc (143 samples, 0.03%)</title><rect x="55.0088%" y="629" width="0.0276%" height="15" fill="rgb(243,124,49)" fg:x="284713" fg:w="143"/><text x="55.2588%" y="639.50"></text></g><g><title>get_partial_node.part.0 (73 samples, 0.01%)</title><rect x="55.0223%" y="613" width="0.0141%" height="15" fill="rgb(221,30,28)" fg:x="284783" fg:w="73"/><text x="55.2723%" y="623.50"></text></g><g><title>__mod_memcg_lruvec_state (124 samples, 0.02%)</title><rect x="55.1064%" y="629" width="0.0240%" height="15" fill="rgb(246,37,13)" fg:x="285218" fg:w="124"/><text x="55.3564%" y="639.50"></text></g><g><title>__mod_memcg_state.part.0 (80 samples, 0.02%)</title><rect x="55.1149%" y="613" width="0.0155%" height="15" fill="rgb(249,66,14)" fg:x="285262" fg:w="80"/><text x="55.3649%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (505 samples, 0.10%)</title><rect x="55.0364%" y="645" width="0.0976%" height="15" fill="rgb(213,166,5)" fg:x="284856" fg:w="505"/><text x="55.2864%" y="655.50"></text></g><g><title>memset_erms (62 samples, 0.01%)</title><rect x="55.1346%" y="645" width="0.0120%" height="15" fill="rgb(221,66,24)" fg:x="285364" fg:w="62"/><text x="55.3846%" y="655.50"></text></g><g><title>obj_cgroup_charge (139 samples, 0.03%)</title><rect x="55.1647%" y="629" width="0.0269%" height="15" fill="rgb(210,132,17)" fg:x="285520" fg:w="139"/><text x="55.4147%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,123 samples, 0.22%)</title><rect x="54.9752%" y="661" width="0.2170%" height="15" fill="rgb(243,202,5)" fg:x="284539" fg:w="1123"/><text x="55.2252%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (236 samples, 0.05%)</title><rect x="55.1466%" y="645" width="0.0456%" height="15" fill="rgb(233,70,48)" fg:x="285426" fg:w="236"/><text x="55.3966%" y="655.50"></text></g><g><title>__d_alloc (1,299 samples, 0.25%)</title><rect x="54.9497%" y="677" width="0.2510%" height="15" fill="rgb(238,41,26)" fg:x="284407" fg:w="1299"/><text x="55.1997%" y="687.50"></text></g><g><title>d_alloc (1,428 samples, 0.28%)</title><rect x="54.9441%" y="693" width="0.2759%" height="15" fill="rgb(241,19,31)" fg:x="284378" fg:w="1428"/><text x="55.1941%" y="703.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="55.2067%" y="677" width="0.0133%" height="15" fill="rgb(214,76,10)" fg:x="285737" fg:w="69"/><text x="55.4567%" y="687.50"></text></g><g><title>__d_rehash (116 samples, 0.02%)</title><rect x="55.2279%" y="661" width="0.0224%" height="15" fill="rgb(254,202,22)" fg:x="285847" fg:w="116"/><text x="55.4779%" y="671.50"></text></g><g><title>d_splice_alias (221 samples, 0.04%)</title><rect x="55.2200%" y="693" width="0.0427%" height="15" fill="rgb(214,72,24)" fg:x="285806" fg:w="221"/><text x="55.4700%" y="703.50"></text></g><g><title>__d_add (201 samples, 0.04%)</title><rect x="55.2239%" y="677" width="0.0388%" height="15" fill="rgb(221,92,46)" fg:x="285826" fg:w="201"/><text x="55.4739%" y="687.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="55.2503%" y="661" width="0.0124%" height="15" fill="rgb(246,13,50)" fg:x="285963" fg:w="64"/><text x="55.5003%" y="671.50"></text></g><g><title>__lookup_hash (8,368 samples, 1.62%)</title><rect x="53.7493%" y="709" width="1.6168%" height="15" fill="rgb(240,165,38)" fg:x="278194" fg:w="8368"/><text x="53.9993%" y="719.50"></text></g><g><title>lookup_dcache (535 samples, 0.10%)</title><rect x="55.2627%" y="693" width="0.1034%" height="15" fill="rgb(241,24,51)" fg:x="286027" fg:w="535"/><text x="55.5127%" y="703.50"></text></g><g><title>d_lookup (531 samples, 0.10%)</title><rect x="55.2635%" y="677" width="0.1026%" height="15" fill="rgb(227,51,44)" fg:x="286031" fg:w="531"/><text x="55.5135%" y="687.50"></text></g><g><title>__d_lookup (515 samples, 0.10%)</title><rect x="55.2666%" y="661" width="0.0995%" height="15" fill="rgb(231,121,3)" fg:x="286047" fg:w="515"/><text x="55.5166%" y="671.50"></text></g><g><title>down_write (84 samples, 0.02%)</title><rect x="55.3661%" y="709" width="0.0162%" height="15" fill="rgb(245,3,41)" fg:x="286562" fg:w="84"/><text x="55.6161%" y="719.50"></text></g><g><title>__legitimize_mnt (173 samples, 0.03%)</title><rect x="55.4184%" y="629" width="0.0334%" height="15" fill="rgb(214,13,26)" fg:x="286833" fg:w="173"/><text x="55.6684%" y="639.50"></text></g><g><title>__legitimize_path (258 samples, 0.05%)</title><rect x="55.4138%" y="645" width="0.0498%" height="15" fill="rgb(252,75,11)" fg:x="286809" fg:w="258"/><text x="55.6638%" y="655.50"></text></g><g><title>lockref_get_not_dead (61 samples, 0.01%)</title><rect x="55.4518%" y="629" width="0.0118%" height="15" fill="rgb(218,226,17)" fg:x="287006" fg:w="61"/><text x="55.7018%" y="639.50"></text></g><g><title>complete_walk (345 samples, 0.07%)</title><rect x="55.4028%" y="677" width="0.0667%" height="15" fill="rgb(248,89,38)" fg:x="286752" fg:w="345"/><text x="55.6528%" y="687.50"></text></g><g><title>try_to_unlazy (320 samples, 0.06%)</title><rect x="55.4076%" y="661" width="0.0618%" height="15" fill="rgb(237,73,46)" fg:x="286777" fg:w="320"/><text x="55.6576%" y="671.50"></text></g><g><title>btrfs_permission (86 samples, 0.02%)</title><rect x="55.8369%" y="645" width="0.0166%" height="15" fill="rgb(242,78,33)" fg:x="288999" fg:w="86"/><text x="56.0869%" y="655.50"></text></g><g><title>inode_permission.part.0 (1,261 samples, 0.24%)</title><rect x="55.6843%" y="661" width="0.2436%" height="15" fill="rgb(235,60,3)" fg:x="288209" fg:w="1261"/><text x="55.9343%" y="671.50"></text></g><g><title>generic_permission (385 samples, 0.07%)</title><rect x="55.8535%" y="645" width="0.0744%" height="15" fill="rgb(216,172,19)" fg:x="289085" fg:w="385"/><text x="56.1035%" y="655.50"></text></g><g><title>security_inode_permission (139 samples, 0.03%)</title><rect x="55.9279%" y="661" width="0.0269%" height="15" fill="rgb(227,6,42)" fg:x="289470" fg:w="139"/><text x="56.1779%" y="671.50"></text></g><g><title>lookup_fast (2,738 samples, 0.53%)</title><rect x="56.0390%" y="645" width="0.5290%" height="15" fill="rgb(223,207,42)" fg:x="290045" fg:w="2738"/><text x="56.2890%" y="655.50"></text></g><g><title>__d_lookup_rcu (2,199 samples, 0.42%)</title><rect x="56.1431%" y="629" width="0.4249%" height="15" fill="rgb(246,138,30)" fg:x="290584" fg:w="2199"/><text x="56.3931%" y="639.50"></text></g><g><title>link_path_walk.part.0 (6,315 samples, 1.22%)</title><rect x="55.4694%" y="677" width="1.2201%" height="15" fill="rgb(251,199,47)" fg:x="287097" fg:w="6315"/><text x="55.7194%" y="687.50"></text></g><g><title>walk_component (3,803 samples, 0.73%)</title><rect x="55.9548%" y="661" width="0.7348%" height="15" fill="rgb(228,218,44)" fg:x="289609" fg:w="3803"/><text x="56.2048%" y="671.50"></text></g><g><title>step_into (629 samples, 0.12%)</title><rect x="56.5680%" y="645" width="0.1215%" height="15" fill="rgb(220,68,6)" fg:x="292783" fg:w="629"/><text x="56.8180%" y="655.50"></text></g><g><title>__lookup_mnt (69 samples, 0.01%)</title><rect x="56.6762%" y="629" width="0.0133%" height="15" fill="rgb(240,60,26)" fg:x="293343" fg:w="69"/><text x="56.9262%" y="639.50"></text></g><g><title>path_init (286 samples, 0.06%)</title><rect x="56.6895%" y="677" width="0.0553%" height="15" fill="rgb(211,200,19)" fg:x="293412" fg:w="286"/><text x="56.9395%" y="687.50"></text></g><g><title>nd_jump_root (224 samples, 0.04%)</title><rect x="56.7015%" y="661" width="0.0433%" height="15" fill="rgb(242,145,30)" fg:x="293474" fg:w="224"/><text x="56.9515%" y="671.50"></text></g><g><title>set_root (201 samples, 0.04%)</title><rect x="56.7060%" y="645" width="0.0388%" height="15" fill="rgb(225,64,13)" fg:x="293497" fg:w="201"/><text x="56.9560%" y="655.50"></text></g><g><title>filename_parentat (7,086 samples, 1.37%)</title><rect x="55.3823%" y="709" width="1.3691%" height="15" fill="rgb(218,103,35)" fg:x="286646" fg:w="7086"/><text x="55.6323%" y="719.50"></text></g><g><title>path_parentat (7,024 samples, 1.36%)</title><rect x="55.3943%" y="693" width="1.3571%" height="15" fill="rgb(216,93,46)" fg:x="286708" fg:w="7024"/><text x="55.6443%" y="703.50"></text></g><g><title>kmem_cache_free (146 samples, 0.03%)</title><rect x="56.7514%" y="709" width="0.0282%" height="15" fill="rgb(225,159,27)" fg:x="293732" fg:w="146"/><text x="57.0014%" y="719.50"></text></g><g><title>__mnt_want_write (86 samples, 0.02%)</title><rect x="56.7983%" y="693" width="0.0166%" height="15" fill="rgb(225,204,11)" fg:x="293975" fg:w="86"/><text x="57.0483%" y="703.50"></text></g><g><title>mnt_want_write (207 samples, 0.04%)</title><rect x="56.7796%" y="709" width="0.0400%" height="15" fill="rgb(205,56,4)" fg:x="293878" fg:w="207"/><text x="57.0296%" y="719.50"></text></g><g><title>filename_create (15,949 samples, 3.08%)</title><rect x="53.7396%" y="725" width="3.0815%" height="15" fill="rgb(206,6,35)" fg:x="278144" fg:w="15949"/><text x="53.9896%" y="735.50">fil..</text></g><g><title>memcg_slab_post_alloc_hook (61 samples, 0.01%)</title><rect x="56.8974%" y="693" width="0.0118%" height="15" fill="rgb(247,73,52)" fg:x="294488" fg:w="61"/><text x="57.1474%" y="703.50"></text></g><g><title>memset_erms (814 samples, 0.16%)</title><rect x="56.9100%" y="693" width="0.1573%" height="15" fill="rgb(246,97,4)" fg:x="294553" fg:w="814"/><text x="57.1600%" y="703.50"></text></g><g><title>kmem_cache_alloc (1,239 samples, 0.24%)</title><rect x="56.8484%" y="709" width="0.2394%" height="15" fill="rgb(212,37,15)" fg:x="294234" fg:w="1239"/><text x="57.0984%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (106 samples, 0.02%)</title><rect x="57.0673%" y="693" width="0.0205%" height="15" fill="rgb(208,130,40)" fg:x="295367" fg:w="106"/><text x="57.3173%" y="703.50"></text></g><g><title>__check_heap_object (151 samples, 0.03%)</title><rect x="57.2636%" y="677" width="0.0292%" height="15" fill="rgb(236,55,29)" fg:x="296383" fg:w="151"/><text x="57.5136%" y="687.50"></text></g><g><title>__virt_addr_valid (274 samples, 0.05%)</title><rect x="57.2927%" y="677" width="0.0529%" height="15" fill="rgb(209,156,45)" fg:x="296534" fg:w="274"/><text x="57.5427%" y="687.50"></text></g><g><title>getname_flags.part.0 (2,699 samples, 0.52%)</title><rect x="56.8277%" y="725" width="0.5215%" height="15" fill="rgb(249,107,4)" fg:x="294127" fg:w="2699"/><text x="57.0777%" y="735.50"></text></g><g><title>strncpy_from_user (1,353 samples, 0.26%)</title><rect x="57.0877%" y="709" width="0.2614%" height="15" fill="rgb(227,7,13)" fg:x="295473" fg:w="1353"/><text x="57.3377%" y="719.50"></text></g><g><title>__check_object_size (596 samples, 0.12%)</title><rect x="57.2340%" y="693" width="0.1152%" height="15" fill="rgb(250,129,14)" fg:x="296230" fg:w="596"/><text x="57.4840%" y="703.50"></text></g><g><title>kmem_cache_free (158 samples, 0.03%)</title><rect x="57.3491%" y="725" width="0.0305%" height="15" fill="rgb(229,92,13)" fg:x="296826" fg:w="158"/><text x="57.5991%" y="735.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (58 samples, 0.01%)</title><rect x="57.3685%" y="709" width="0.0112%" height="15" fill="rgb(245,98,39)" fg:x="296926" fg:w="58"/><text x="57.6185%" y="719.50"></text></g><g><title>apparmor_path_symlink (103 samples, 0.02%)</title><rect x="57.3994%" y="709" width="0.0199%" height="15" fill="rgb(234,135,48)" fg:x="297086" fg:w="103"/><text x="57.6494%" y="719.50"></text></g><g><title>security_path_symlink (393 samples, 0.08%)</title><rect x="57.3886%" y="725" width="0.0759%" height="15" fill="rgb(230,98,28)" fg:x="297030" fg:w="393"/><text x="57.6386%" y="735.50"></text></g><g><title>tomoyo_path_symlink (234 samples, 0.05%)</title><rect x="57.4193%" y="709" width="0.0452%" height="15" fill="rgb(223,121,0)" fg:x="297189" fg:w="234"/><text x="57.6693%" y="719.50"></text></g><g><title>tomoyo_path_perm (222 samples, 0.04%)</title><rect x="57.4216%" y="693" width="0.0429%" height="15" fill="rgb(234,173,33)" fg:x="297201" fg:w="222"/><text x="57.6716%" y="703.50"></text></g><g><title>tomoyo_init_request_info (107 samples, 0.02%)</title><rect x="57.4438%" y="677" width="0.0207%" height="15" fill="rgb(245,47,8)" fg:x="297316" fg:w="107"/><text x="57.6938%" y="687.50"></text></g><g><title>up_write (67 samples, 0.01%)</title><rect x="57.4645%" y="725" width="0.0129%" height="15" fill="rgb(205,17,20)" fg:x="297423" fg:w="67"/><text x="57.7145%" y="735.50"></text></g><g><title>btrfs_put_transaction (57 samples, 0.01%)</title><rect x="57.5729%" y="677" width="0.0110%" height="15" fill="rgb(232,151,16)" fg:x="297984" fg:w="57"/><text x="57.8229%" y="687.50"></text></g><g><title>_raw_spin_lock (133 samples, 0.03%)</title><rect x="57.5966%" y="645" width="0.0257%" height="15" fill="rgb(208,30,32)" fg:x="298107" fg:w="133"/><text x="57.8466%" y="655.50"></text></g><g><title>btrfs_trans_release_metadata (215 samples, 0.04%)</title><rect x="57.5856%" y="677" width="0.0415%" height="15" fill="rgb(254,26,3)" fg:x="298050" fg:w="215"/><text x="57.8356%" y="687.50"></text></g><g><title>btrfs_block_rsv_release (207 samples, 0.04%)</title><rect x="57.5872%" y="661" width="0.0400%" height="15" fill="rgb(240,177,30)" fg:x="298058" fg:w="207"/><text x="57.8372%" y="671.50"></text></g><g><title>__btrfs_end_transaction (637 samples, 0.12%)</title><rect x="57.5310%" y="693" width="0.1231%" height="15" fill="rgb(248,76,44)" fg:x="297767" fg:w="637"/><text x="57.7810%" y="703.50"></text></g><g><title>kmem_cache_free (139 samples, 0.03%)</title><rect x="57.6272%" y="677" width="0.0269%" height="15" fill="rgb(241,186,54)" fg:x="298265" fg:w="139"/><text x="57.8772%" y="687.50"></text></g><g><title>btrfs_comp_cpu_keys (146 samples, 0.03%)</title><rect x="57.7609%" y="629" width="0.0282%" height="15" fill="rgb(249,171,29)" fg:x="298957" fg:w="146"/><text x="58.0109%" y="639.50"></text></g><g><title>__btrfs_add_delayed_item (448 samples, 0.09%)</title><rect x="57.7249%" y="645" width="0.0866%" height="15" fill="rgb(237,151,44)" fg:x="298771" fg:w="448"/><text x="57.9749%" y="655.50"></text></g><g><title>rb_insert_color (116 samples, 0.02%)</title><rect x="57.7891%" y="629" width="0.0224%" height="15" fill="rgb(228,174,30)" fg:x="299103" fg:w="116"/><text x="58.0391%" y="639.50"></text></g><g><title>mutex_lock (63 samples, 0.01%)</title><rect x="57.8434%" y="629" width="0.0122%" height="15" fill="rgb(252,14,37)" fg:x="299384" fg:w="63"/><text x="58.0934%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (292 samples, 0.06%)</title><rect x="57.8115%" y="645" width="0.0564%" height="15" fill="rgb(207,111,40)" fg:x="299219" fg:w="292"/><text x="58.0615%" y="655.50"></text></g><g><title>mutex_unlock (64 samples, 0.01%)</title><rect x="57.8555%" y="629" width="0.0124%" height="15" fill="rgb(248,171,54)" fg:x="299447" fg:w="64"/><text x="58.1055%" y="639.50"></text></g><g><title>__slab_alloc (125 samples, 0.02%)</title><rect x="57.8899%" y="629" width="0.0242%" height="15" fill="rgb(211,127,2)" fg:x="299625" fg:w="125"/><text x="58.1399%" y="639.50"></text></g><g><title>___slab_alloc (122 samples, 0.02%)</title><rect x="57.8905%" y="613" width="0.0236%" height="15" fill="rgb(236,87,47)" fg:x="299628" fg:w="122"/><text x="58.1405%" y="623.50"></text></g><g><title>memset_erms (62 samples, 0.01%)</title><rect x="57.9205%" y="629" width="0.0120%" height="15" fill="rgb(223,190,45)" fg:x="299783" fg:w="62"/><text x="58.1705%" y="639.50"></text></g><g><title>__kmalloc (364 samples, 0.07%)</title><rect x="57.8679%" y="645" width="0.0703%" height="15" fill="rgb(215,5,16)" fg:x="299511" fg:w="364"/><text x="58.1179%" y="655.50"></text></g><g><title>mutex_spin_on_owner (447 samples, 0.09%)</title><rect x="57.9388%" y="629" width="0.0864%" height="15" fill="rgb(252,82,33)" fg:x="299878" fg:w="447"/><text x="58.1888%" y="639.50"></text></g><g><title>__mutex_lock.constprop.0 (461 samples, 0.09%)</title><rect x="57.9382%" y="645" width="0.0891%" height="15" fill="rgb(247,213,44)" fg:x="299875" fg:w="461"/><text x="58.1882%" y="655.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (265 samples, 0.05%)</title><rect x="58.0273%" y="645" width="0.0512%" height="15" fill="rgb(205,196,44)" fg:x="300336" fg:w="265"/><text x="58.2773%" y="655.50"></text></g><g><title>btrfs_block_rsv_migrate (234 samples, 0.05%)</title><rect x="58.0333%" y="629" width="0.0452%" height="15" fill="rgb(237,96,54)" fg:x="300367" fg:w="234"/><text x="58.2833%" y="639.50"></text></g><g><title>_raw_spin_lock (210 samples, 0.04%)</title><rect x="58.0379%" y="613" width="0.0406%" height="15" fill="rgb(230,113,34)" fg:x="300391" fg:w="210"/><text x="58.2879%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (137 samples, 0.03%)</title><rect x="58.0785%" y="645" width="0.0265%" height="15" fill="rgb(221,224,12)" fg:x="300601" fg:w="137"/><text x="58.3285%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (127 samples, 0.02%)</title><rect x="58.0804%" y="629" width="0.0245%" height="15" fill="rgb(219,112,44)" fg:x="300611" fg:w="127"/><text x="58.3304%" y="639.50"></text></g><g><title>mutex_lock (83 samples, 0.02%)</title><rect x="58.1141%" y="645" width="0.0160%" height="15" fill="rgb(210,31,13)" fg:x="300785" fg:w="83"/><text x="58.3641%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,225 samples, 0.43%)</title><rect x="57.7103%" y="661" width="0.4299%" height="15" fill="rgb(230,25,16)" fg:x="298695" fg:w="2225"/><text x="57.9603%" y="671.50"></text></g><g><title>mutex_unlock (52 samples, 0.01%)</title><rect x="58.1301%" y="645" width="0.0100%" height="15" fill="rgb(246,108,53)" fg:x="300868" fg:w="52"/><text x="58.3801%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (153 samples, 0.03%)</title><rect x="58.1401%" y="661" width="0.0296%" height="15" fill="rgb(241,172,50)" fg:x="300920" fg:w="153"/><text x="58.3901%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (93 samples, 0.02%)</title><rect x="58.1517%" y="645" width="0.0180%" height="15" fill="rgb(235,141,10)" fg:x="300980" fg:w="93"/><text x="58.4017%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (254 samples, 0.05%)</title><rect x="58.1805%" y="645" width="0.0491%" height="15" fill="rgb(220,174,43)" fg:x="301129" fg:w="254"/><text x="58.4305%" y="655.50"></text></g><g><title>_raw_spin_lock (186 samples, 0.04%)</title><rect x="58.1937%" y="629" width="0.0359%" height="15" fill="rgb(215,181,40)" fg:x="301197" fg:w="186"/><text x="58.4437%" y="639.50"></text></g><g><title>btrfs_release_path (491 samples, 0.09%)</title><rect x="58.1697%" y="661" width="0.0949%" height="15" fill="rgb(230,97,2)" fg:x="301073" fg:w="491"/><text x="58.4197%" y="671.50"></text></g><g><title>release_extent_buffer (181 samples, 0.03%)</title><rect x="58.2296%" y="645" width="0.0350%" height="15" fill="rgb(211,25,27)" fg:x="301383" fg:w="181"/><text x="58.4796%" y="655.50"></text></g><g><title>btrfs_set_16 (63 samples, 0.01%)</title><rect x="58.2646%" y="661" width="0.0122%" height="15" fill="rgb(230,87,26)" fg:x="301564" fg:w="63"/><text x="58.5146%" y="671.50"></text></g><g><title>btrfs_get_32 (102 samples, 0.02%)</title><rect x="58.3005%" y="645" width="0.0197%" height="15" fill="rgb(227,160,17)" fg:x="301750" fg:w="102"/><text x="58.5505%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (83 samples, 0.02%)</title><rect x="58.3977%" y="597" width="0.0160%" height="15" fill="rgb(244,85,34)" fg:x="302253" fg:w="83"/><text x="58.6477%" y="607.50"></text></g><g><title>_raw_read_lock (58 samples, 0.01%)</title><rect x="58.4025%" y="581" width="0.0112%" height="15" fill="rgb(207,70,0)" fg:x="302278" fg:w="58"/><text x="58.6525%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (213 samples, 0.04%)</title><rect x="58.3952%" y="613" width="0.0412%" height="15" fill="rgb(223,129,7)" fg:x="302240" fg:w="213"/><text x="58.6452%" y="623.50"></text></g><g><title>btrfs_root_node (117 samples, 0.02%)</title><rect x="58.4137%" y="597" width="0.0226%" height="15" fill="rgb(246,105,7)" fg:x="302336" fg:w="117"/><text x="58.6637%" y="607.50"></text></g><g><title>dequeue_task_fair (63 samples, 0.01%)</title><rect x="58.4528%" y="565" width="0.0122%" height="15" fill="rgb(215,154,42)" fg:x="302538" fg:w="63"/><text x="58.7028%" y="575.50"></text></g><g><title>dequeue_entity (59 samples, 0.01%)</title><rect x="58.4535%" y="549" width="0.0114%" height="15" fill="rgb(220,215,30)" fg:x="302542" fg:w="59"/><text x="58.7035%" y="559.50"></text></g><g><title>__btrfs_tree_lock (221 samples, 0.04%)</title><rect x="58.4363%" y="613" width="0.0427%" height="15" fill="rgb(228,81,51)" fg:x="302453" fg:w="221"/><text x="58.6863%" y="623.50"></text></g><g><title>schedule (170 samples, 0.03%)</title><rect x="58.4462%" y="597" width="0.0328%" height="15" fill="rgb(247,71,54)" fg:x="302504" fg:w="170"/><text x="58.6962%" y="607.50"></text></g><g><title>__schedule (165 samples, 0.03%)</title><rect x="58.4471%" y="581" width="0.0319%" height="15" fill="rgb(234,176,34)" fg:x="302509" fg:w="165"/><text x="58.6971%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (209 samples, 0.04%)</title><rect x="58.4839%" y="613" width="0.0404%" height="15" fill="rgb(241,103,54)" fg:x="302699" fg:w="209"/><text x="58.7339%" y="623.50"></text></g><g><title>leaf_space_used (181 samples, 0.03%)</title><rect x="58.4893%" y="597" width="0.0350%" height="15" fill="rgb(228,22,34)" fg:x="302727" fg:w="181"/><text x="58.7393%" y="607.50"></text></g><g><title>btrfs_get_32 (132 samples, 0.03%)</title><rect x="58.4987%" y="581" width="0.0255%" height="15" fill="rgb(241,179,48)" fg:x="302776" fg:w="132"/><text x="58.7487%" y="591.50"></text></g><g><title>_raw_write_lock (91 samples, 0.02%)</title><rect x="58.5335%" y="597" width="0.0176%" height="15" fill="rgb(235,167,37)" fg:x="302956" fg:w="91"/><text x="58.7835%" y="607.50"></text></g><g><title>btrfs_try_tree_write_lock (241 samples, 0.05%)</title><rect x="58.5273%" y="613" width="0.0466%" height="15" fill="rgb(213,109,30)" fg:x="302924" fg:w="241"/><text x="58.7773%" y="623.50"></text></g><g><title>queued_write_lock_slowpath (118 samples, 0.02%)</title><rect x="58.5511%" y="597" width="0.0228%" height="15" fill="rgb(222,172,16)" fg:x="303047" fg:w="118"/><text x="58.8011%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (1,189 samples, 0.23%)</title><rect x="58.5739%" y="613" width="0.2297%" height="15" fill="rgb(233,192,5)" fg:x="303165" fg:w="1189"/><text x="58.8239%" y="623.50"></text></g><g><title>btrfs_buffer_uptodate (68 samples, 0.01%)</title><rect x="58.8299%" y="597" width="0.0131%" height="15" fill="rgb(247,189,41)" fg:x="304490" fg:w="68"/><text x="59.0799%" y="607.50"></text></g><g><title>btrfs_get_64 (126 samples, 0.02%)</title><rect x="58.8430%" y="597" width="0.0243%" height="15" fill="rgb(218,134,47)" fg:x="304558" fg:w="126"/><text x="59.0930%" y="607.50"></text></g><g><title>__radix_tree_lookup (460 samples, 0.09%)</title><rect x="58.9174%" y="581" width="0.0889%" height="15" fill="rgb(216,29,3)" fg:x="304943" fg:w="460"/><text x="59.1674%" y="591.50"></text></g><g><title>check_buffer_tree_ref (61 samples, 0.01%)</title><rect x="59.0154%" y="565" width="0.0118%" height="15" fill="rgb(246,140,12)" fg:x="305450" fg:w="61"/><text x="59.2654%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (260 samples, 0.05%)</title><rect x="59.0063%" y="581" width="0.0502%" height="15" fill="rgb(230,136,11)" fg:x="305403" fg:w="260"/><text x="59.2563%" y="591.50"></text></g><g><title>mark_page_accessed (152 samples, 0.03%)</title><rect x="59.0272%" y="565" width="0.0294%" height="15" fill="rgb(247,22,47)" fg:x="305511" fg:w="152"/><text x="59.2772%" y="575.50"></text></g><g><title>find_extent_buffer (923 samples, 0.18%)</title><rect x="58.8797%" y="597" width="0.1783%" height="15" fill="rgb(218,84,22)" fg:x="304748" fg:w="923"/><text x="59.1297%" y="607.50"></text></g><g><title>read_block_for_search.isra.0 (1,502 samples, 0.29%)</title><rect x="58.8036%" y="613" width="0.2902%" height="15" fill="rgb(216,87,39)" fg:x="304354" fg:w="1502"/><text x="59.0536%" y="623.50"></text></g><g><title>read_extent_buffer (185 samples, 0.04%)</title><rect x="59.0581%" y="597" width="0.0357%" height="15" fill="rgb(221,178,8)" fg:x="305671" fg:w="185"/><text x="59.3081%" y="607.50"></text></g><g><title>alloc_tree_block_no_bg_flush (140 samples, 0.03%)</title><rect x="59.0961%" y="597" width="0.0270%" height="15" fill="rgb(230,42,11)" fg:x="305868" fg:w="140"/><text x="59.3461%" y="607.50"></text></g><g><title>btrfs_alloc_tree_block (140 samples, 0.03%)</title><rect x="59.0961%" y="581" width="0.0270%" height="15" fill="rgb(237,229,4)" fg:x="305868" fg:w="140"/><text x="59.3461%" y="591.50"></text></g><g><title>copy_for_split (128 samples, 0.02%)</title><rect x="59.1267%" y="597" width="0.0247%" height="15" fill="rgb(222,31,33)" fg:x="306026" fg:w="128"/><text x="59.3767%" y="607.50"></text></g><g><title>btrfs_get_token_32 (150 samples, 0.03%)</title><rect x="59.1719%" y="565" width="0.0290%" height="15" fill="rgb(210,17,39)" fg:x="306260" fg:w="150"/><text x="59.4219%" y="575.50"></text></g><g><title>btrfs_set_token_32 (171 samples, 0.03%)</title><rect x="59.2026%" y="565" width="0.0330%" height="15" fill="rgb(244,93,20)" fg:x="306419" fg:w="171"/><text x="59.4526%" y="575.50"></text></g><g><title>memmove_extent_buffer (92 samples, 0.02%)</title><rect x="59.2459%" y="565" width="0.0178%" height="15" fill="rgb(210,40,47)" fg:x="306643" fg:w="92"/><text x="59.4959%" y="575.50"></text></g><g><title>memmove (63 samples, 0.01%)</title><rect x="59.2515%" y="549" width="0.0122%" height="15" fill="rgb(239,211,47)" fg:x="306672" fg:w="63"/><text x="59.5015%" y="559.50"></text></g><g><title>__push_leaf_left (572 samples, 0.11%)</title><rect x="59.1535%" y="581" width="0.1105%" height="15" fill="rgb(251,223,49)" fg:x="306165" fg:w="572"/><text x="59.4035%" y="591.50"></text></g><g><title>push_leaf_left (648 samples, 0.13%)</title><rect x="59.1516%" y="597" width="0.1252%" height="15" fill="rgb(221,149,5)" fg:x="306155" fg:w="648"/><text x="59.4016%" y="607.50"></text></g><g><title>btrfs_get_token_32 (86 samples, 0.02%)</title><rect x="59.2971%" y="565" width="0.0166%" height="15" fill="rgb(219,224,51)" fg:x="306908" fg:w="86"/><text x="59.5471%" y="575.50"></text></g><g><title>btrfs_set_token_32 (169 samples, 0.03%)</title><rect x="59.3152%" y="565" width="0.0327%" height="15" fill="rgb(223,7,8)" fg:x="307002" fg:w="169"/><text x="59.5652%" y="575.50"></text></g><g><title>__push_leaf_right (467 samples, 0.09%)</title><rect x="59.2799%" y="581" width="0.0902%" height="15" fill="rgb(241,217,22)" fg:x="306819" fg:w="467"/><text x="59.5299%" y="591.50"></text></g><g><title>btrfs_read_node_slot (53 samples, 0.01%)</title><rect x="59.3761%" y="581" width="0.0102%" height="15" fill="rgb(248,209,0)" fg:x="307317" fg:w="53"/><text x="59.6261%" y="591.50"></text></g><g><title>push_leaf_right (580 samples, 0.11%)</title><rect x="59.2768%" y="597" width="0.1121%" height="15" fill="rgb(217,205,4)" fg:x="306803" fg:w="580"/><text x="59.5268%" y="607.50"></text></g><g><title>split_leaf (1,528 samples, 0.30%)</title><rect x="59.0940%" y="613" width="0.2952%" height="15" fill="rgb(228,124,39)" fg:x="305857" fg:w="1528"/><text x="59.3440%" y="623.50"></text></g><g><title>__wake_up_common (78 samples, 0.02%)</title><rect x="59.4188%" y="581" width="0.0151%" height="15" fill="rgb(250,116,42)" fg:x="307538" fg:w="78"/><text x="59.6688%" y="591.50"></text></g><g><title>autoremove_wake_function (74 samples, 0.01%)</title><rect x="59.4196%" y="565" width="0.0143%" height="15" fill="rgb(223,202,9)" fg:x="307542" fg:w="74"/><text x="59.6696%" y="575.50"></text></g><g><title>try_to_wake_up (69 samples, 0.01%)</title><rect x="59.4205%" y="549" width="0.0133%" height="15" fill="rgb(242,222,40)" fg:x="307547" fg:w="69"/><text x="59.6705%" y="559.50"></text></g><g><title>__wake_up_common_lock (84 samples, 0.02%)</title><rect x="59.4182%" y="597" width="0.0162%" height="15" fill="rgb(229,99,46)" fg:x="307535" fg:w="84"/><text x="59.6682%" y="607.50"></text></g><g><title>btrfs_tree_read_unlock (65 samples, 0.01%)</title><rect x="59.4344%" y="597" width="0.0126%" height="15" fill="rgb(225,56,46)" fg:x="307619" fg:w="65"/><text x="59.6844%" y="607.50"></text></g><g><title>btrfs_search_slot (5,825 samples, 1.13%)</title><rect x="58.3270%" y="629" width="1.1254%" height="15" fill="rgb(227,94,5)" fg:x="301887" fg:w="5825"/><text x="58.5770%" y="639.50"></text></g><g><title>unlock_up (323 samples, 0.06%)</title><rect x="59.3900%" y="613" width="0.0624%" height="15" fill="rgb(205,112,38)" fg:x="307389" fg:w="323"/><text x="59.6400%" y="623.50"></text></g><g><title>btrfs_get_32 (129 samples, 0.02%)</title><rect x="59.6313%" y="613" width="0.0249%" height="15" fill="rgb(231,133,46)" fg:x="308638" fg:w="129"/><text x="59.8813%" y="623.50"></text></g><g><title>btrfs_get_token_32 (3,434 samples, 0.66%)</title><rect x="59.6562%" y="613" width="0.6635%" height="15" fill="rgb(217,16,9)" fg:x="308767" fg:w="3434"/><text x="59.9062%" y="623.50"></text></g><g><title>check_setget_bounds.isra.0 (730 samples, 0.14%)</title><rect x="60.1787%" y="597" width="0.1410%" height="15" fill="rgb(249,173,9)" fg:x="311471" fg:w="730"/><text x="60.4287%" y="607.50"></text></g><g><title>btrfs_leaf_free_space (269 samples, 0.05%)</title><rect x="60.3197%" y="613" width="0.0520%" height="15" fill="rgb(205,163,53)" fg:x="312201" fg:w="269"/><text x="60.5697%" y="623.50"></text></g><g><title>leaf_space_used (239 samples, 0.05%)</title><rect x="60.3255%" y="597" width="0.0462%" height="15" fill="rgb(217,54,41)" fg:x="312231" fg:w="239"/><text x="60.5755%" y="607.50"></text></g><g><title>btrfs_get_32 (174 samples, 0.03%)</title><rect x="60.3381%" y="581" width="0.0336%" height="15" fill="rgb(228,216,12)" fg:x="312296" fg:w="174"/><text x="60.5881%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (169 samples, 0.03%)</title><rect x="60.3717%" y="613" width="0.0327%" height="15" fill="rgb(244,228,15)" fg:x="312470" fg:w="169"/><text x="60.6217%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (110 samples, 0.02%)</title><rect x="60.3831%" y="597" width="0.0213%" height="15" fill="rgb(221,176,53)" fg:x="312529" fg:w="110"/><text x="60.6331%" y="607.50"></text></g><g><title>check_setget_bounds.isra.0 (616 samples, 0.12%)</title><rect x="60.8679%" y="597" width="0.1190%" height="15" fill="rgb(205,94,34)" fg:x="315038" fg:w="616"/><text x="61.1179%" y="607.50"></text></g><g><title>btrfs_set_token_32 (3,016 samples, 0.58%)</title><rect x="60.4043%" y="613" width="0.5827%" height="15" fill="rgb(213,110,48)" fg:x="312639" fg:w="3016"/><text x="60.6543%" y="623.50"></text></g><g><title>copy_pages (122 samples, 0.02%)</title><rect x="61.0081%" y="597" width="0.0236%" height="15" fill="rgb(236,142,28)" fg:x="315764" fg:w="122"/><text x="61.2581%" y="607.50"></text></g><g><title>memcpy_extent_buffer (1,061 samples, 0.20%)</title><rect x="60.9973%" y="613" width="0.2050%" height="15" fill="rgb(225,135,29)" fg:x="315708" fg:w="1061"/><text x="61.2473%" y="623.50"></text></g><g><title>memmove (883 samples, 0.17%)</title><rect x="61.0317%" y="597" width="0.1706%" height="15" fill="rgb(252,45,31)" fg:x="315886" fg:w="883"/><text x="61.2817%" y="607.50"></text></g><g><title>copy_pages (122 samples, 0.02%)</title><rect x="61.2218%" y="597" width="0.0236%" height="15" fill="rgb(211,187,50)" fg:x="316870" fg:w="122"/><text x="61.4718%" y="607.50"></text></g><g><title>memmove_extent_buffer (963 samples, 0.19%)</title><rect x="61.2023%" y="613" width="0.1861%" height="15" fill="rgb(229,109,7)" fg:x="316769" fg:w="963"/><text x="61.4523%" y="623.50"></text></g><g><title>memmove (740 samples, 0.14%)</title><rect x="61.2454%" y="597" width="0.1430%" height="15" fill="rgb(251,131,51)" fg:x="316992" fg:w="740"/><text x="61.4954%" y="607.50"></text></g><g><title>insert_with_overflow (16,135 samples, 3.12%)</title><rect x="58.2924%" y="661" width="3.1174%" height="15" fill="rgb(251,180,35)" fg:x="301708" fg:w="16135"/><text x="58.5424%" y="671.50">ins..</text></g><g><title>btrfs_insert_empty_items (15,991 samples, 3.09%)</title><rect x="58.3202%" y="645" width="3.0896%" height="15" fill="rgb(211,46,32)" fg:x="301852" fg:w="15991"/><text x="58.5702%" y="655.50">btr..</text></g><g><title>setup_items_for_insert (10,131 samples, 1.96%)</title><rect x="59.4524%" y="629" width="1.9574%" height="15" fill="rgb(248,123,17)" fg:x="307712" fg:w="10131"/><text x="59.7024%" y="639.50">s..</text></g><g><title>write_extent_buffer (111 samples, 0.02%)</title><rect x="61.3884%" y="613" width="0.0214%" height="15" fill="rgb(227,141,18)" fg:x="317732" fg:w="111"/><text x="61.6384%" y="623.50"></text></g><g><title>memset_erms (62 samples, 0.01%)</title><rect x="61.4276%" y="645" width="0.0120%" height="15" fill="rgb(216,102,9)" fg:x="317935" fg:w="62"/><text x="61.6776%" y="655.50"></text></g><g><title>kmem_cache_alloc (192 samples, 0.04%)</title><rect x="61.4098%" y="661" width="0.0371%" height="15" fill="rgb(253,47,13)" fg:x="317843" fg:w="192"/><text x="61.6598%" y="671.50"></text></g><g><title>kmem_cache_free (121 samples, 0.02%)</title><rect x="61.4469%" y="661" width="0.0234%" height="15" fill="rgb(226,93,23)" fg:x="318035" fg:w="121"/><text x="61.6969%" y="671.50"></text></g><g><title>btrfs_insert_dir_item (19,858 samples, 3.84%)</title><rect x="57.6836%" y="677" width="3.8367%" height="15" fill="rgb(247,104,17)" fg:x="298557" fg:w="19858"/><text x="57.9336%" y="687.50">btrf..</text></g><g><title>write_extent_buffer (259 samples, 0.05%)</title><rect x="61.4703%" y="661" width="0.0500%" height="15" fill="rgb(233,203,26)" fg:x="318156" fg:w="259"/><text x="61.7203%" y="671.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="61.5265%" y="661" width="0.0100%" height="15" fill="rgb(244,98,49)" fg:x="318447" fg:w="52"/><text x="61.7765%" y="671.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="61.5649%" y="629" width="0.0135%" height="15" fill="rgb(235,134,22)" fg:x="318646" fg:w="70"/><text x="61.8149%" y="639.50"></text></g><g><title>mutex_lock (57 samples, 0.01%)</title><rect x="61.5785%" y="629" width="0.0110%" height="15" fill="rgb(221,70,32)" fg:x="318716" fg:w="57"/><text x="61.8285%" y="639.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (294 samples, 0.06%)</title><rect x="61.5462%" y="645" width="0.0568%" height="15" fill="rgb(238,15,50)" fg:x="318549" fg:w="294"/><text x="61.7962%" y="655.50"></text></g><g><title>mutex_unlock (70 samples, 0.01%)</title><rect x="61.5895%" y="629" width="0.0135%" height="15" fill="rgb(215,221,48)" fg:x="318773" fg:w="70"/><text x="61.8395%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (83 samples, 0.02%)</title><rect x="61.6129%" y="645" width="0.0160%" height="15" fill="rgb(236,73,3)" fg:x="318894" fg:w="83"/><text x="61.8629%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (72 samples, 0.01%)</title><rect x="61.6150%" y="629" width="0.0139%" height="15" fill="rgb(250,107,11)" fg:x="318905" fg:w="72"/><text x="61.8650%" y="639.50"></text></g><g><title>inode_get_bytes (79 samples, 0.02%)</title><rect x="61.6370%" y="629" width="0.0153%" height="15" fill="rgb(242,39,14)" fg:x="319019" fg:w="79"/><text x="61.8870%" y="639.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="61.6389%" y="613" width="0.0133%" height="15" fill="rgb(248,164,37)" fg:x="319029" fg:w="69"/><text x="61.8889%" y="623.50"></text></g><g><title>fill_stack_inode_item (154 samples, 0.03%)</title><rect x="61.6289%" y="645" width="0.0298%" height="15" fill="rgb(217,60,12)" fg:x="318977" fg:w="154"/><text x="61.8789%" y="655.50"></text></g><g><title>mutex_lock (54 samples, 0.01%)</title><rect x="61.6587%" y="645" width="0.0104%" height="15" fill="rgb(240,125,29)" fg:x="319131" fg:w="54"/><text x="61.9087%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (768 samples, 0.15%)</title><rect x="61.5365%" y="661" width="0.1484%" height="15" fill="rgb(208,207,28)" fg:x="318499" fg:w="768"/><text x="61.7865%" y="671.50"></text></g><g><title>mutex_unlock (82 samples, 0.02%)</title><rect x="61.6691%" y="645" width="0.0158%" height="15" fill="rgb(209,159,27)" fg:x="319185" fg:w="82"/><text x="61.9191%" y="655.50"></text></g><g><title>btrfs_update_inode (1,033 samples, 0.20%)</title><rect x="61.5203%" y="677" width="0.1996%" height="15" fill="rgb(251,176,53)" fg:x="318415" fg:w="1033"/><text x="61.7703%" y="687.50"></text></g><g><title>btrfs_update_root_times (181 samples, 0.03%)</title><rect x="61.6849%" y="661" width="0.0350%" height="15" fill="rgb(211,85,7)" fg:x="319267" fg:w="181"/><text x="61.9349%" y="671.50"></text></g><g><title>ktime_get_real_ts64 (115 samples, 0.02%)</title><rect x="61.6977%" y="645" width="0.0222%" height="15" fill="rgb(216,64,54)" fg:x="319333" fg:w="115"/><text x="61.9477%" y="655.50"></text></g><g><title>read_tsc (63 samples, 0.01%)</title><rect x="61.7077%" y="629" width="0.0122%" height="15" fill="rgb(217,54,24)" fg:x="319385" fg:w="63"/><text x="61.9577%" y="639.50"></text></g><g><title>btrfs_add_link (21,071 samples, 4.07%)</title><rect x="57.6544%" y="693" width="4.0711%" height="15" fill="rgb(208,206,53)" fg:x="298406" fg:w="21071"/><text x="57.9044%" y="703.50">btrf..</text></g><g><title>btrfs_balance_delayed_items (87 samples, 0.02%)</title><rect x="61.7309%" y="677" width="0.0168%" height="15" fill="rgb(251,74,39)" fg:x="319505" fg:w="87"/><text x="61.9809%" y="687.50"></text></g><g><title>enqueue_task_fair (75 samples, 0.01%)</title><rect x="61.7831%" y="613" width="0.0145%" height="15" fill="rgb(226,47,5)" fg:x="319775" fg:w="75"/><text x="62.0331%" y="623.50"></text></g><g><title>enqueue_entity (62 samples, 0.01%)</title><rect x="61.7856%" y="597" width="0.0120%" height="15" fill="rgb(234,111,33)" fg:x="319788" fg:w="62"/><text x="62.0356%" y="607.50"></text></g><g><title>ttwu_do_activate (114 samples, 0.02%)</title><rect x="61.7815%" y="629" width="0.0220%" height="15" fill="rgb(251,14,10)" fg:x="319767" fg:w="114"/><text x="62.0315%" y="639.50"></text></g><g><title>btrfs_btree_balance_dirty (433 samples, 0.08%)</title><rect x="61.7261%" y="693" width="0.0837%" height="15" fill="rgb(232,43,0)" fg:x="319480" fg:w="433"/><text x="61.9761%" y="703.50"></text></g><g><title>queue_work_on (297 samples, 0.06%)</title><rect x="61.7524%" y="677" width="0.0574%" height="15" fill="rgb(222,68,43)" fg:x="319616" fg:w="297"/><text x="62.0024%" y="687.50"></text></g><g><title>__queue_work (286 samples, 0.06%)</title><rect x="61.7545%" y="661" width="0.0553%" height="15" fill="rgb(217,24,23)" fg:x="319627" fg:w="286"/><text x="62.0045%" y="671.50"></text></g><g><title>try_to_wake_up (224 samples, 0.04%)</title><rect x="61.7665%" y="645" width="0.0433%" height="15" fill="rgb(229,209,14)" fg:x="319689" fg:w="224"/><text x="62.0165%" y="655.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="61.8150%" y="677" width="0.0124%" height="15" fill="rgb(250,149,48)" fg:x="319940" fg:w="64"/><text x="62.0650%" y="687.50"></text></g><g><title>btrfs_find_free_ino (162 samples, 0.03%)</title><rect x="61.8107%" y="693" width="0.0313%" height="15" fill="rgb(210,120,37)" fg:x="319918" fg:w="162"/><text x="62.0607%" y="703.50"></text></g><g><title>mutex_unlock (76 samples, 0.01%)</title><rect x="61.8273%" y="677" width="0.0147%" height="15" fill="rgb(210,21,8)" fg:x="320004" fg:w="76"/><text x="62.0773%" y="687.50"></text></g><g><title>__wake_up_common (73 samples, 0.01%)</title><rect x="61.8497%" y="645" width="0.0141%" height="15" fill="rgb(243,145,7)" fg:x="320120" fg:w="73"/><text x="62.0997%" y="655.50"></text></g><g><title>autoremove_wake_function (72 samples, 0.01%)</title><rect x="61.8499%" y="629" width="0.0139%" height="15" fill="rgb(238,178,32)" fg:x="320121" fg:w="72"/><text x="62.0999%" y="639.50"></text></g><g><title>try_to_wake_up (72 samples, 0.01%)</title><rect x="61.8499%" y="613" width="0.0139%" height="15" fill="rgb(222,4,10)" fg:x="320121" fg:w="72"/><text x="62.0999%" y="623.50"></text></g><g><title>__wake_up_common_lock (78 samples, 0.02%)</title><rect x="61.8493%" y="661" width="0.0151%" height="15" fill="rgb(239,7,37)" fg:x="320118" fg:w="78"/><text x="62.0993%" y="671.50"></text></g><g><title>btrfs_tree_unlock (81 samples, 0.02%)</title><rect x="61.8644%" y="661" width="0.0156%" height="15" fill="rgb(215,31,37)" fg:x="320196" fg:w="81"/><text x="62.1144%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (225 samples, 0.04%)</title><rect x="61.8812%" y="661" width="0.0435%" height="15" fill="rgb(224,83,33)" fg:x="320283" fg:w="225"/><text x="62.1312%" y="671.50"></text></g><g><title>_raw_spin_lock (160 samples, 0.03%)</title><rect x="61.8938%" y="645" width="0.0309%" height="15" fill="rgb(239,55,3)" fg:x="320348" fg:w="160"/><text x="62.1438%" y="655.50"></text></g><g><title>btrfs_free_path (599 samples, 0.12%)</title><rect x="61.8420%" y="693" width="0.1157%" height="15" fill="rgb(247,92,11)" fg:x="320080" fg:w="599"/><text x="62.0920%" y="703.50"></text></g><g><title>btrfs_release_path (595 samples, 0.11%)</title><rect x="61.8428%" y="677" width="0.1150%" height="15" fill="rgb(239,200,7)" fg:x="320084" fg:w="595"/><text x="62.0928%" y="687.50"></text></g><g><title>release_extent_buffer (171 samples, 0.03%)</title><rect x="61.9247%" y="661" width="0.0330%" height="15" fill="rgb(227,115,8)" fg:x="320508" fg:w="171"/><text x="62.1747%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (82 samples, 0.02%)</title><rect x="62.0466%" y="645" width="0.0158%" height="15" fill="rgb(215,189,27)" fg:x="321139" fg:w="82"/><text x="62.2966%" y="655.50"></text></g><g><title>_raw_read_lock (63 samples, 0.01%)</title><rect x="62.0503%" y="629" width="0.0122%" height="15" fill="rgb(251,216,39)" fg:x="321158" fg:w="63"/><text x="62.3003%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (208 samples, 0.04%)</title><rect x="62.0439%" y="661" width="0.0402%" height="15" fill="rgb(207,29,47)" fg:x="321125" fg:w="208"/><text x="62.2939%" y="671.50"></text></g><g><title>btrfs_root_node (112 samples, 0.02%)</title><rect x="62.0625%" y="645" width="0.0216%" height="15" fill="rgb(210,71,34)" fg:x="321221" fg:w="112"/><text x="62.3125%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (150 samples, 0.03%)</title><rect x="62.0930%" y="661" width="0.0290%" height="15" fill="rgb(253,217,51)" fg:x="321379" fg:w="150"/><text x="62.3430%" y="671.50"></text></g><g><title>leaf_space_used (127 samples, 0.02%)</title><rect x="62.0974%" y="645" width="0.0245%" height="15" fill="rgb(222,117,46)" fg:x="321402" fg:w="127"/><text x="62.3474%" y="655.50"></text></g><g><title>btrfs_get_32 (84 samples, 0.02%)</title><rect x="62.1057%" y="629" width="0.0162%" height="15" fill="rgb(226,132,6)" fg:x="321445" fg:w="84"/><text x="62.3557%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (170 samples, 0.03%)</title><rect x="62.1220%" y="661" width="0.0328%" height="15" fill="rgb(254,145,51)" fg:x="321529" fg:w="170"/><text x="62.3720%" y="671.50"></text></g><g><title>btrfs_set_lock_blocking_write (80 samples, 0.02%)</title><rect x="62.1394%" y="645" width="0.0155%" height="15" fill="rgb(231,199,27)" fg:x="321619" fg:w="80"/><text x="62.3894%" y="655.50"></text></g><g><title>_raw_write_lock (91 samples, 0.02%)</title><rect x="62.1616%" y="645" width="0.0176%" height="15" fill="rgb(245,158,14)" fg:x="321734" fg:w="91"/><text x="62.4116%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (160 samples, 0.03%)</title><rect x="62.1548%" y="661" width="0.0309%" height="15" fill="rgb(240,113,14)" fg:x="321699" fg:w="160"/><text x="62.4048%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (841 samples, 0.16%)</title><rect x="62.1857%" y="661" width="0.1625%" height="15" fill="rgb(210,20,13)" fg:x="321859" fg:w="841"/><text x="62.4357%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (64 samples, 0.01%)</title><rect x="62.3741%" y="645" width="0.0124%" height="15" fill="rgb(241,144,13)" fg:x="322834" fg:w="64"/><text x="62.6241%" y="655.50"></text></g><g><title>btrfs_get_64 (106 samples, 0.02%)</title><rect x="62.3865%" y="645" width="0.0205%" height="15" fill="rgb(235,43,34)" fg:x="322898" fg:w="106"/><text x="62.6365%" y="655.50"></text></g><g><title>__radix_tree_lookup (506 samples, 0.10%)</title><rect x="62.4516%" y="629" width="0.0978%" height="15" fill="rgb(208,36,20)" fg:x="323235" fg:w="506"/><text x="62.7016%" y="639.50"></text></g><g><title>check_buffer_tree_ref (54 samples, 0.01%)</title><rect x="62.5600%" y="613" width="0.0104%" height="15" fill="rgb(239,204,10)" fg:x="323796" fg:w="54"/><text x="62.8100%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (255 samples, 0.05%)</title><rect x="62.5493%" y="629" width="0.0493%" height="15" fill="rgb(217,84,43)" fg:x="323741" fg:w="255"/><text x="62.7993%" y="639.50"></text></g><g><title>mark_page_accessed (146 samples, 0.03%)</title><rect x="62.5704%" y="613" width="0.0282%" height="15" fill="rgb(241,170,50)" fg:x="323850" fg:w="146"/><text x="62.8204%" y="623.50"></text></g><g><title>find_extent_buffer (936 samples, 0.18%)</title><rect x="62.4195%" y="645" width="0.1808%" height="15" fill="rgb(226,205,29)" fg:x="323069" fg:w="936"/><text x="62.6695%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,455 samples, 0.28%)</title><rect x="62.3482%" y="661" width="0.2811%" height="15" fill="rgb(233,113,1)" fg:x="322700" fg:w="1455"/><text x="62.5982%" y="671.50"></text></g><g><title>read_extent_buffer (150 samples, 0.03%)</title><rect x="62.6003%" y="645" width="0.0290%" height="15" fill="rgb(253,98,13)" fg:x="324005" fg:w="150"/><text x="62.8503%" y="655.50"></text></g><g><title>pagecache_get_page (59 samples, 0.01%)</title><rect x="62.6398%" y="597" width="0.0114%" height="15" fill="rgb(211,115,12)" fg:x="324209" fg:w="59"/><text x="62.8898%" y="607.50"></text></g><g><title>alloc_extent_buffer (96 samples, 0.02%)</title><rect x="62.6340%" y="613" width="0.0185%" height="15" fill="rgb(208,12,16)" fg:x="324179" fg:w="96"/><text x="62.8840%" y="623.50"></text></g><g><title>btrfs_reserve_extent (76 samples, 0.01%)</title><rect x="62.6631%" y="613" width="0.0147%" height="15" fill="rgb(237,193,54)" fg:x="324330" fg:w="76"/><text x="62.9131%" y="623.50"></text></g><g><title>find_free_extent (71 samples, 0.01%)</title><rect x="62.6641%" y="597" width="0.0137%" height="15" fill="rgb(243,22,42)" fg:x="324335" fg:w="71"/><text x="62.9141%" y="607.50"></text></g><g><title>set_extent_bit (57 samples, 0.01%)</title><rect x="62.6790%" y="613" width="0.0110%" height="15" fill="rgb(233,151,36)" fg:x="324412" fg:w="57"/><text x="62.9290%" y="623.50"></text></g><g><title>__set_extent_bit (56 samples, 0.01%)</title><rect x="62.6792%" y="597" width="0.0108%" height="15" fill="rgb(237,57,45)" fg:x="324413" fg:w="56"/><text x="62.9292%" y="607.50"></text></g><g><title>alloc_tree_block_no_bg_flush (302 samples, 0.06%)</title><rect x="62.6318%" y="645" width="0.0583%" height="15" fill="rgb(221,88,17)" fg:x="324168" fg:w="302"/><text x="62.8818%" y="655.50"></text></g><g><title>btrfs_alloc_tree_block (302 samples, 0.06%)</title><rect x="62.6318%" y="629" width="0.0583%" height="15" fill="rgb(230,79,15)" fg:x="324168" fg:w="302"/><text x="62.8818%" y="639.50"></text></g><g><title>__set_page_dirty_nobuffers (60 samples, 0.01%)</title><rect x="62.7043%" y="597" width="0.0116%" height="15" fill="rgb(213,57,13)" fg:x="324543" fg:w="60"/><text x="62.9543%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (71 samples, 0.01%)</title><rect x="62.7027%" y="629" width="0.0137%" height="15" fill="rgb(222,116,39)" fg:x="324535" fg:w="71"/><text x="62.9527%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (68 samples, 0.01%)</title><rect x="62.7033%" y="613" width="0.0131%" height="15" fill="rgb(245,107,2)" fg:x="324538" fg:w="68"/><text x="62.9533%" y="623.50"></text></g><g><title>copy_extent_buffer (53 samples, 0.01%)</title><rect x="62.7221%" y="629" width="0.0102%" height="15" fill="rgb(238,1,10)" fg:x="324635" fg:w="53"/><text x="62.9721%" y="639.50"></text></g><g><title>copy_for_split (223 samples, 0.04%)</title><rect x="62.6919%" y="645" width="0.0431%" height="15" fill="rgb(249,4,48)" fg:x="324479" fg:w="223"/><text x="62.9419%" y="655.50"></text></g><g><title>btrfs_get_token_32 (64 samples, 0.01%)</title><rect x="62.7507%" y="613" width="0.0124%" height="15" fill="rgb(223,151,18)" fg:x="324783" fg:w="64"/><text x="63.0007%" y="623.50"></text></g><g><title>btrfs_set_token_32 (75 samples, 0.01%)</title><rect x="62.7638%" y="613" width="0.0145%" height="15" fill="rgb(227,65,43)" fg:x="324851" fg:w="75"/><text x="63.0138%" y="623.50"></text></g><g><title>copy_extent_buffer (54 samples, 0.01%)</title><rect x="62.7793%" y="613" width="0.0104%" height="15" fill="rgb(218,40,45)" fg:x="324931" fg:w="54"/><text x="63.0293%" y="623.50"></text></g><g><title>__push_leaf_left (286 samples, 0.06%)</title><rect x="62.7383%" y="629" width="0.0553%" height="15" fill="rgb(252,121,31)" fg:x="324719" fg:w="286"/><text x="62.9883%" y="639.50"></text></g><g><title>push_leaf_left (356 samples, 0.07%)</title><rect x="62.7356%" y="645" width="0.0688%" height="15" fill="rgb(219,158,43)" fg:x="324705" fg:w="356"/><text x="62.9856%" y="655.50"></text></g><g><title>split_leaf (910 samples, 0.18%)</title><rect x="62.6293%" y="661" width="0.1758%" height="15" fill="rgb(231,162,42)" fg:x="324155" fg:w="910"/><text x="62.8793%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock (56 samples, 0.01%)</title><rect x="62.8419%" y="645" width="0.0108%" height="15" fill="rgb(217,179,25)" fg:x="325255" fg:w="56"/><text x="63.0919%" y="655.50"></text></g><g><title>btrfs_search_slot (4,546 samples, 0.88%)</title><rect x="61.9788%" y="677" width="0.8783%" height="15" fill="rgb(206,212,31)" fg:x="320788" fg:w="4546"/><text x="62.2288%" y="687.50"></text></g><g><title>unlock_up (268 samples, 0.05%)</title><rect x="62.8053%" y="661" width="0.0518%" height="15" fill="rgb(235,144,12)" fg:x="325066" fg:w="268"/><text x="63.0553%" y="671.50"></text></g><g><title>btrfs_get_32 (131 samples, 0.03%)</title><rect x="62.9562%" y="661" width="0.0253%" height="15" fill="rgb(213,51,10)" fg:x="325847" fg:w="131"/><text x="63.2062%" y="671.50"></text></g><g><title>btrfs_get_token_32 (721 samples, 0.14%)</title><rect x="62.9815%" y="661" width="0.1393%" height="15" fill="rgb(231,145,14)" fg:x="325978" fg:w="721"/><text x="63.2315%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (191 samples, 0.04%)</title><rect x="63.0839%" y="645" width="0.0369%" height="15" fill="rgb(235,15,28)" fg:x="326508" fg:w="191"/><text x="63.3339%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (261 samples, 0.05%)</title><rect x="63.1208%" y="661" width="0.0504%" height="15" fill="rgb(237,206,10)" fg:x="326699" fg:w="261"/><text x="63.3708%" y="671.50"></text></g><g><title>leaf_space_used (237 samples, 0.05%)</title><rect x="63.1255%" y="645" width="0.0458%" height="15" fill="rgb(236,227,27)" fg:x="326723" fg:w="237"/><text x="63.3755%" y="655.50"></text></g><g><title>btrfs_get_32 (158 samples, 0.03%)</title><rect x="63.1408%" y="629" width="0.0305%" height="15" fill="rgb(246,83,35)" fg:x="326802" fg:w="158"/><text x="63.3908%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (134 samples, 0.03%)</title><rect x="63.1713%" y="661" width="0.0259%" height="15" fill="rgb(220,136,24)" fg:x="326960" fg:w="134"/><text x="63.4213%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (87 samples, 0.02%)</title><rect x="63.1804%" y="645" width="0.0168%" height="15" fill="rgb(217,3,25)" fg:x="327007" fg:w="87"/><text x="63.4304%" y="655.50"></text></g><g><title>btrfs_set_token_32 (902 samples, 0.17%)</title><rect x="63.1972%" y="661" width="0.1743%" height="15" fill="rgb(239,24,14)" fg:x="327094" fg:w="902"/><text x="63.4472%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (180 samples, 0.03%)</title><rect x="63.3367%" y="645" width="0.0348%" height="15" fill="rgb(244,16,53)" fg:x="327816" fg:w="180"/><text x="63.5867%" y="655.50"></text></g><g><title>memmove_extent_buffer (259 samples, 0.05%)</title><rect x="63.3830%" y="661" width="0.0500%" height="15" fill="rgb(208,175,44)" fg:x="328056" fg:w="259"/><text x="63.6330%" y="671.50"></text></g><g><title>memmove (172 samples, 0.03%)</title><rect x="63.3998%" y="645" width="0.0332%" height="15" fill="rgb(252,18,48)" fg:x="328143" fg:w="172"/><text x="63.6498%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (7,678 samples, 1.48%)</title><rect x="61.9711%" y="693" width="1.4835%" height="15" fill="rgb(234,199,32)" fg:x="320748" fg:w="7678"/><text x="62.2211%" y="703.50"></text></g><g><title>setup_items_for_insert (3,092 samples, 0.60%)</title><rect x="62.8571%" y="677" width="0.5974%" height="15" fill="rgb(225,77,54)" fg:x="325334" fg:w="3092"/><text x="63.1071%" y="687.50"></text></g><g><title>write_extent_buffer (111 samples, 0.02%)</title><rect x="63.4331%" y="661" width="0.0214%" height="15" fill="rgb(225,42,25)" fg:x="328315" fg:w="111"/><text x="63.6831%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (205 samples, 0.04%)</title><rect x="63.4545%" y="693" width="0.0396%" height="15" fill="rgb(242,227,46)" fg:x="328426" fg:w="205"/><text x="63.7045%" y="703.50"></text></g><g><title>set_extent_buffer_dirty (147 samples, 0.03%)</title><rect x="63.4657%" y="677" width="0.0284%" height="15" fill="rgb(246,197,35)" fg:x="328484" fg:w="147"/><text x="63.7157%" y="687.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="63.5453%" y="677" width="0.0128%" height="15" fill="rgb(215,159,26)" fg:x="328896" fg:w="66"/><text x="63.7953%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (246 samples, 0.05%)</title><rect x="63.5697%" y="645" width="0.0475%" height="15" fill="rgb(212,194,50)" fg:x="329022" fg:w="246"/><text x="63.8197%" y="655.50"></text></g><g><title>_raw_spin_lock (182 samples, 0.04%)</title><rect x="63.5820%" y="629" width="0.0352%" height="15" fill="rgb(246,132,1)" fg:x="329086" fg:w="182"/><text x="63.8320%" y="639.50"></text></g><g><title>btrfs_free_path (457 samples, 0.09%)</title><rect x="63.5587%" y="677" width="0.0883%" height="15" fill="rgb(217,71,7)" fg:x="328965" fg:w="457"/><text x="63.8087%" y="687.50"></text></g><g><title>btrfs_release_path (447 samples, 0.09%)</title><rect x="63.5606%" y="661" width="0.0864%" height="15" fill="rgb(252,59,32)" fg:x="328975" fg:w="447"/><text x="63.8106%" y="671.50"></text></g><g><title>release_extent_buffer (154 samples, 0.03%)</title><rect x="63.6172%" y="645" width="0.0298%" height="15" fill="rgb(253,204,25)" fg:x="329268" fg:w="154"/><text x="63.8672%" y="655.50"></text></g><g><title>btrfs_get_32 (76 samples, 0.01%)</title><rect x="63.6470%" y="677" width="0.0147%" height="15" fill="rgb(232,21,16)" fg:x="329422" fg:w="76"/><text x="63.8970%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (81 samples, 0.02%)</title><rect x="63.7219%" y="629" width="0.0156%" height="15" fill="rgb(248,90,29)" fg:x="329810" fg:w="81"/><text x="63.9719%" y="639.50"></text></g><g><title>_raw_read_lock (56 samples, 0.01%)</title><rect x="63.7267%" y="613" width="0.0108%" height="15" fill="rgb(249,223,7)" fg:x="329835" fg:w="56"/><text x="63.9767%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (163 samples, 0.03%)</title><rect x="63.7200%" y="645" width="0.0315%" height="15" fill="rgb(231,119,42)" fg:x="329800" fg:w="163"/><text x="63.9700%" y="655.50"></text></g><g><title>btrfs_root_node (72 samples, 0.01%)</title><rect x="63.7376%" y="629" width="0.0139%" height="15" fill="rgb(215,41,35)" fg:x="329891" fg:w="72"/><text x="63.9876%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (194 samples, 0.04%)</title><rect x="63.7644%" y="645" width="0.0375%" height="15" fill="rgb(220,44,45)" fg:x="330030" fg:w="194"/><text x="64.0144%" y="655.50"></text></g><g><title>leaf_space_used (167 samples, 0.03%)</title><rect x="63.7696%" y="629" width="0.0323%" height="15" fill="rgb(253,197,36)" fg:x="330057" fg:w="167"/><text x="64.0196%" y="639.50"></text></g><g><title>btrfs_get_32 (115 samples, 0.02%)</title><rect x="63.7797%" y="613" width="0.0222%" height="15" fill="rgb(245,225,54)" fg:x="330109" fg:w="115"/><text x="64.0297%" y="623.50"></text></g><g><title>_raw_write_lock (122 samples, 0.02%)</title><rect x="63.8087%" y="629" width="0.0236%" height="15" fill="rgb(239,94,37)" fg:x="330259" fg:w="122"/><text x="64.0587%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (200 samples, 0.04%)</title><rect x="63.8033%" y="645" width="0.0386%" height="15" fill="rgb(242,217,10)" fg:x="330231" fg:w="200"/><text x="64.0533%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (809 samples, 0.16%)</title><rect x="63.8419%" y="645" width="0.1563%" height="15" fill="rgb(250,193,7)" fg:x="330431" fg:w="809"/><text x="64.0919%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (82 samples, 0.02%)</title><rect x="64.0245%" y="629" width="0.0158%" height="15" fill="rgb(230,104,19)" fg:x="331376" fg:w="82"/><text x="64.2745%" y="639.50"></text></g><g><title>verify_parent_transid (56 samples, 0.01%)</title><rect x="64.0295%" y="613" width="0.0108%" height="15" fill="rgb(230,181,4)" fg:x="331402" fg:w="56"/><text x="64.2795%" y="623.50"></text></g><g><title>btrfs_get_64 (146 samples, 0.03%)</title><rect x="64.0403%" y="629" width="0.0282%" height="15" fill="rgb(216,219,49)" fg:x="331458" fg:w="146"/><text x="64.2903%" y="639.50"></text></g><g><title>__radix_tree_lookup (504 samples, 0.10%)</title><rect x="64.1267%" y="613" width="0.0974%" height="15" fill="rgb(254,144,0)" fg:x="331905" fg:w="504"/><text x="64.3767%" y="623.50"></text></g><g><title>check_buffer_tree_ref (61 samples, 0.01%)</title><rect x="64.2343%" y="597" width="0.0118%" height="15" fill="rgb(205,209,38)" fg:x="332462" fg:w="61"/><text x="64.4843%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (323 samples, 0.06%)</title><rect x="64.2241%" y="613" width="0.0624%" height="15" fill="rgb(240,21,42)" fg:x="332409" fg:w="323"/><text x="64.4741%" y="623.50"></text></g><g><title>mark_page_accessed (209 samples, 0.04%)</title><rect x="64.2461%" y="597" width="0.0404%" height="15" fill="rgb(241,132,3)" fg:x="332523" fg:w="209"/><text x="64.4961%" y="607.50"></text></g><g><title>find_extent_buffer (1,089 samples, 0.21%)</title><rect x="64.0780%" y="629" width="0.2104%" height="15" fill="rgb(225,14,2)" fg:x="331653" fg:w="1089"/><text x="64.3280%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,662 samples, 0.32%)</title><rect x="63.9982%" y="645" width="0.3211%" height="15" fill="rgb(210,141,35)" fg:x="331240" fg:w="1662"/><text x="64.2482%" y="655.50"></text></g><g><title>read_extent_buffer (160 samples, 0.03%)</title><rect x="64.2884%" y="629" width="0.0309%" height="15" fill="rgb(251,14,44)" fg:x="332742" fg:w="160"/><text x="64.5384%" y="639.50"></text></g><g><title>find_get_entry (53 samples, 0.01%)</title><rect x="64.3315%" y="565" width="0.0102%" height="15" fill="rgb(247,48,18)" fg:x="332965" fg:w="53"/><text x="64.5815%" y="575.50"></text></g><g><title>pagecache_get_page (60 samples, 0.01%)</title><rect x="64.3305%" y="581" width="0.0116%" height="15" fill="rgb(225,0,40)" fg:x="332960" fg:w="60"/><text x="64.5805%" y="591.50"></text></g><g><title>alloc_extent_buffer (98 samples, 0.02%)</title><rect x="64.3243%" y="597" width="0.0189%" height="15" fill="rgb(221,31,33)" fg:x="332928" fg:w="98"/><text x="64.5743%" y="607.50"></text></g><g><title>btrfs_add_delayed_tree_ref (65 samples, 0.01%)</title><rect x="64.3433%" y="597" width="0.0126%" height="15" fill="rgb(237,42,40)" fg:x="333026" fg:w="65"/><text x="64.5933%" y="607.50"></text></g><g><title>btrfs_reserve_extent (82 samples, 0.02%)</title><rect x="64.3574%" y="597" width="0.0158%" height="15" fill="rgb(233,51,29)" fg:x="333099" fg:w="82"/><text x="64.6074%" y="607.50"></text></g><g><title>find_free_extent (73 samples, 0.01%)</title><rect x="64.3591%" y="581" width="0.0141%" height="15" fill="rgb(226,58,20)" fg:x="333108" fg:w="73"/><text x="64.6091%" y="591.50"></text></g><g><title>set_extent_bit (64 samples, 0.01%)</title><rect x="64.3755%" y="597" width="0.0124%" height="15" fill="rgb(208,98,7)" fg:x="333193" fg:w="64"/><text x="64.6255%" y="607.50"></text></g><g><title>__set_extent_bit (64 samples, 0.01%)</title><rect x="64.3755%" y="581" width="0.0124%" height="15" fill="rgb(228,143,44)" fg:x="333193" fg:w="64"/><text x="64.6255%" y="591.50"></text></g><g><title>alloc_tree_block_no_bg_flush (345 samples, 0.07%)</title><rect x="64.3216%" y="629" width="0.0667%" height="15" fill="rgb(246,55,38)" fg:x="332914" fg:w="345"/><text x="64.5716%" y="639.50"></text></g><g><title>btrfs_alloc_tree_block (342 samples, 0.07%)</title><rect x="64.3222%" y="613" width="0.0661%" height="15" fill="rgb(247,87,16)" fg:x="332917" fg:w="342"/><text x="64.5722%" y="623.50"></text></g><g><title>__set_page_dirty_nobuffers (56 samples, 0.01%)</title><rect x="64.4007%" y="581" width="0.0108%" height="15" fill="rgb(234,129,42)" fg:x="333323" fg:w="56"/><text x="64.6507%" y="591.50"></text></g><g><title>btrfs_mark_buffer_dirty (68 samples, 0.01%)</title><rect x="64.3989%" y="613" width="0.0131%" height="15" fill="rgb(220,82,16)" fg:x="333314" fg:w="68"/><text x="64.6489%" y="623.50"></text></g><g><title>set_extent_buffer_dirty (63 samples, 0.01%)</title><rect x="64.3999%" y="597" width="0.0122%" height="15" fill="rgb(211,88,4)" fg:x="333319" fg:w="63"/><text x="64.6499%" y="607.50"></text></g><g><title>copy_extent_buffer (52 samples, 0.01%)</title><rect x="64.4208%" y="613" width="0.0100%" height="15" fill="rgb(248,151,21)" fg:x="333427" fg:w="52"/><text x="64.6708%" y="623.50"></text></g><g><title>copy_for_split (215 samples, 0.04%)</title><rect x="64.3918%" y="629" width="0.0415%" height="15" fill="rgb(238,163,6)" fg:x="333277" fg:w="215"/><text x="64.6418%" y="639.50"></text></g><g><title>btrfs_get_token_32 (64 samples, 0.01%)</title><rect x="64.4464%" y="597" width="0.0124%" height="15" fill="rgb(209,183,11)" fg:x="333560" fg:w="64"/><text x="64.6964%" y="607.50"></text></g><g><title>btrfs_set_token_32 (73 samples, 0.01%)</title><rect x="64.4594%" y="597" width="0.0141%" height="15" fill="rgb(219,37,20)" fg:x="333627" fg:w="73"/><text x="64.7094%" y="607.50"></text></g><g><title>__push_leaf_left (279 samples, 0.05%)</title><rect x="64.4358%" y="613" width="0.0539%" height="15" fill="rgb(210,158,4)" fg:x="333505" fg:w="279"/><text x="64.6858%" y="623.50"></text></g><g><title>push_leaf_left (346 samples, 0.07%)</title><rect x="64.4335%" y="629" width="0.0668%" height="15" fill="rgb(221,167,53)" fg:x="333493" fg:w="346"/><text x="64.6835%" y="639.50"></text></g><g><title>split_leaf (944 samples, 0.18%)</title><rect x="64.3193%" y="645" width="0.1824%" height="15" fill="rgb(237,151,45)" fg:x="332902" fg:w="944"/><text x="64.5693%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (85 samples, 0.02%)</title><rect x="64.5382%" y="629" width="0.0164%" height="15" fill="rgb(231,39,3)" fg:x="334035" fg:w="85"/><text x="64.7882%" y="639.50"></text></g><g><title>btrfs_search_slot (4,613 samples, 0.89%)</title><rect x="63.6680%" y="661" width="0.8913%" height="15" fill="rgb(212,167,28)" fg:x="329531" fg:w="4613"/><text x="63.9180%" y="671.50"></text></g><g><title>unlock_up (298 samples, 0.06%)</title><rect x="64.5017%" y="645" width="0.0576%" height="15" fill="rgb(232,178,8)" fg:x="333846" fg:w="298"/><text x="64.7517%" y="655.50"></text></g><g><title>btrfs_get_32 (135 samples, 0.03%)</title><rect x="64.6576%" y="645" width="0.0261%" height="15" fill="rgb(225,151,20)" fg:x="334653" fg:w="135"/><text x="64.9076%" y="655.50"></text></g><g><title>btrfs_get_token_32 (808 samples, 0.16%)</title><rect x="64.6837%" y="645" width="0.1561%" height="15" fill="rgb(238,3,37)" fg:x="334788" fg:w="808"/><text x="64.9337%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (175 samples, 0.03%)</title><rect x="64.8060%" y="629" width="0.0338%" height="15" fill="rgb(251,147,42)" fg:x="335421" fg:w="175"/><text x="65.0560%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (284 samples, 0.05%)</title><rect x="64.8398%" y="645" width="0.0549%" height="15" fill="rgb(208,173,10)" fg:x="335596" fg:w="284"/><text x="65.0898%" y="655.50"></text></g><g><title>leaf_space_used (249 samples, 0.05%)</title><rect x="64.8466%" y="629" width="0.0481%" height="15" fill="rgb(246,225,4)" fg:x="335631" fg:w="249"/><text x="65.0966%" y="639.50"></text></g><g><title>btrfs_get_32 (173 samples, 0.03%)</title><rect x="64.8613%" y="613" width="0.0334%" height="15" fill="rgb(248,102,6)" fg:x="335707" fg:w="173"/><text x="65.1113%" y="623.50"></text></g><g><title>btrfs_mark_buffer_dirty (211 samples, 0.04%)</title><rect x="64.8947%" y="645" width="0.0408%" height="15" fill="rgb(232,6,21)" fg:x="335880" fg:w="211"/><text x="65.1447%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (90 samples, 0.02%)</title><rect x="64.9181%" y="629" width="0.0174%" height="15" fill="rgb(221,179,22)" fg:x="336001" fg:w="90"/><text x="65.1681%" y="639.50"></text></g><g><title>btrfs_set_token_32 (870 samples, 0.17%)</title><rect x="64.9355%" y="645" width="0.1681%" height="15" fill="rgb(252,50,20)" fg:x="336091" fg:w="870"/><text x="65.1855%" y="655.50"></text></g><g><title>check_setget_bounds.isra.0 (172 samples, 0.03%)</title><rect x="65.0703%" y="629" width="0.0332%" height="15" fill="rgb(222,56,38)" fg:x="336789" fg:w="172"/><text x="65.3203%" y="639.50"></text></g><g><title>btrfs_unlock_up_safe (57 samples, 0.01%)</title><rect x="65.1035%" y="645" width="0.0110%" height="15" fill="rgb(206,193,29)" fg:x="336961" fg:w="57"/><text x="65.3535%" y="655.50"></text></g><g><title>memmove_extent_buffer (335 samples, 0.06%)</title><rect x="65.1177%" y="645" width="0.0647%" height="15" fill="rgb(239,192,45)" fg:x="337034" fg:w="335"/><text x="65.3677%" y="655.50"></text></g><g><title>memmove (212 samples, 0.04%)</title><rect x="65.1414%" y="629" width="0.0410%" height="15" fill="rgb(254,18,36)" fg:x="337157" fg:w="212"/><text x="65.3914%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (8,120 samples, 1.57%)</title><rect x="63.6618%" y="677" width="1.5688%" height="15" fill="rgb(221,127,11)" fg:x="329499" fg:w="8120"/><text x="63.9118%" y="687.50"></text></g><g><title>setup_items_for_insert (3,475 samples, 0.67%)</title><rect x="64.5593%" y="661" width="0.6714%" height="15" fill="rgb(234,146,35)" fg:x="334144" fg:w="3475"/><text x="64.8093%" y="671.50"></text></g><g><title>write_extent_buffer (250 samples, 0.05%)</title><rect x="65.1824%" y="645" width="0.0483%" height="15" fill="rgb(254,201,37)" fg:x="337369" fg:w="250"/><text x="65.4324%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (173 samples, 0.03%)</title><rect x="65.2307%" y="677" width="0.0334%" height="15" fill="rgb(211,202,23)" fg:x="337619" fg:w="173"/><text x="65.4807%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (96 samples, 0.02%)</title><rect x="65.2456%" y="661" width="0.0185%" height="15" fill="rgb(237,91,2)" fg:x="337696" fg:w="96"/><text x="65.4956%" y="671.50"></text></g><g><title>btrfs_set_16 (65 samples, 0.01%)</title><rect x="65.2641%" y="677" width="0.0126%" height="15" fill="rgb(226,228,36)" fg:x="337792" fg:w="65"/><text x="65.5141%" y="687.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (73 samples, 0.01%)</title><rect x="65.2846%" y="677" width="0.0141%" height="15" fill="rgb(213,63,50)" fg:x="337898" fg:w="73"/><text x="65.5346%" y="687.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="65.3114%" y="661" width="0.0120%" height="15" fill="rgb(235,194,19)" fg:x="338037" fg:w="62"/><text x="65.5614%" y="671.50"></text></g><g><title>btrfs_update_root_times (266 samples, 0.05%)</title><rect x="65.2987%" y="677" width="0.0514%" height="15" fill="rgb(207,204,18)" fg:x="337971" fg:w="266"/><text x="65.5487%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (138 samples, 0.03%)</title><rect x="65.3234%" y="661" width="0.0267%" height="15" fill="rgb(248,8,7)" fg:x="338099" fg:w="138"/><text x="65.5734%" y="671.50"></text></g><g><title>read_tsc (75 samples, 0.01%)</title><rect x="65.3356%" y="645" width="0.0145%" height="15" fill="rgb(223,145,47)" fg:x="338162" fg:w="75"/><text x="65.5856%" y="655.50"></text></g><g><title>current_time (72 samples, 0.01%)</title><rect x="65.3501%" y="677" width="0.0139%" height="15" fill="rgb(228,84,11)" fg:x="338237" fg:w="72"/><text x="65.6001%" y="687.50"></text></g><g><title>btrfs_set_token_32 (348 samples, 0.07%)</title><rect x="65.3920%" y="661" width="0.0672%" height="15" fill="rgb(218,76,45)" fg:x="338454" fg:w="348"/><text x="65.6420%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (65 samples, 0.01%)</title><rect x="65.4467%" y="645" width="0.0126%" height="15" fill="rgb(223,80,15)" fg:x="338737" fg:w="65"/><text x="65.6967%" y="655.50"></text></g><g><title>btrfs_set_token_64 (484 samples, 0.09%)</title><rect x="65.4592%" y="661" width="0.0935%" height="15" fill="rgb(219,218,33)" fg:x="338802" fg:w="484"/><text x="65.7092%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (97 samples, 0.02%)</title><rect x="65.5340%" y="645" width="0.0187%" height="15" fill="rgb(208,51,11)" fg:x="339189" fg:w="97"/><text x="65.7840%" y="655.50"></text></g><g><title>inode_get_bytes (73 samples, 0.01%)</title><rect x="65.5530%" y="661" width="0.0141%" height="15" fill="rgb(229,165,39)" fg:x="339287" fg:w="73"/><text x="65.8030%" y="671.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="65.5564%" y="645" width="0.0106%" height="15" fill="rgb(241,100,24)" fg:x="339305" fg:w="55"/><text x="65.8064%" y="655.50"></text></g><g><title>fill_inode_item (1,103 samples, 0.21%)</title><rect x="65.3640%" y="677" width="0.2131%" height="15" fill="rgb(228,14,23)" fg:x="338309" fg:w="1103"/><text x="65.6140%" y="687.50"></text></g><g><title>map_id_up (52 samples, 0.01%)</title><rect x="65.5671%" y="661" width="0.0100%" height="15" fill="rgb(247,116,52)" fg:x="339360" fg:w="52"/><text x="65.8171%" y="671.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="65.8915%" y="661" width="0.0100%" height="15" fill="rgb(216,149,33)" fg:x="341039" fg:w="52"/><text x="66.1415%" y="671.50"></text></g><g><title>inode_tree_add (1,807 samples, 0.35%)</title><rect x="65.5920%" y="677" width="0.3491%" height="15" fill="rgb(238,142,29)" fg:x="339489" fg:w="1807"/><text x="65.8420%" y="687.50"></text></g><g><title>rb_insert_color (204 samples, 0.04%)</title><rect x="65.9017%" y="661" width="0.0394%" height="15" fill="rgb(224,83,40)" fg:x="341092" fg:w="204"/><text x="66.1517%" y="671.50"></text></g><g><title>_raw_spin_lock (121 samples, 0.02%)</title><rect x="65.9508%" y="645" width="0.0234%" height="15" fill="rgb(234,165,11)" fg:x="341346" fg:w="121"/><text x="66.2008%" y="655.50"></text></g><g><title>insert_inode_locked4 (488 samples, 0.09%)</title><rect x="65.9411%" y="677" width="0.0943%" height="15" fill="rgb(215,96,23)" fg:x="341296" fg:w="488"/><text x="66.1911%" y="687.50"></text></g><g><title>inode_insert5 (479 samples, 0.09%)</title><rect x="65.9428%" y="661" width="0.0925%" height="15" fill="rgb(233,179,26)" fg:x="341305" fg:w="479"/><text x="66.1928%" y="671.50"></text></g><g><title>find_inode (317 samples, 0.06%)</title><rect x="65.9741%" y="645" width="0.0612%" height="15" fill="rgb(225,129,33)" fg:x="341467" fg:w="317"/><text x="66.2241%" y="655.50"></text></g><g><title>kmem_cache_alloc (166 samples, 0.03%)</title><rect x="66.0354%" y="677" width="0.0321%" height="15" fill="rgb(237,49,13)" fg:x="341784" fg:w="166"/><text x="66.2854%" y="687.50"></text></g><g><title>kmem_cache_free (122 samples, 0.02%)</title><rect x="66.0675%" y="677" width="0.0236%" height="15" fill="rgb(211,3,31)" fg:x="341950" fg:w="122"/><text x="66.3175%" y="687.50"></text></g><g><title>memzero_extent_buffer (149 samples, 0.03%)</title><rect x="66.0910%" y="677" width="0.0288%" height="15" fill="rgb(216,152,19)" fg:x="342072" fg:w="149"/><text x="66.3410%" y="687.50"></text></g><g><title>_raw_spin_lock (312 samples, 0.06%)</title><rect x="66.1283%" y="661" width="0.0603%" height="15" fill="rgb(251,121,35)" fg:x="342265" fg:w="312"/><text x="66.3783%" y="671.50"></text></g><g><title>btrfs_init_metadata_block_rsv (133 samples, 0.03%)</title><rect x="66.2220%" y="629" width="0.0257%" height="15" fill="rgb(210,217,47)" fg:x="342750" fg:w="133"/><text x="66.4720%" y="639.50"></text></g><g><title>btrfs_find_space_info (71 samples, 0.01%)</title><rect x="66.2340%" y="613" width="0.0137%" height="15" fill="rgb(244,116,22)" fg:x="342812" fg:w="71"/><text x="66.4840%" y="623.50"></text></g><g><title>__slab_alloc (104 samples, 0.02%)</title><rect x="66.2927%" y="613" width="0.0201%" height="15" fill="rgb(228,17,21)" fg:x="343116" fg:w="104"/><text x="66.5427%" y="623.50"></text></g><g><title>___slab_alloc (101 samples, 0.02%)</title><rect x="66.2933%" y="597" width="0.0195%" height="15" fill="rgb(240,149,34)" fg:x="343119" fg:w="101"/><text x="66.5433%" y="607.50"></text></g><g><title>get_partial_node.part.0 (54 samples, 0.01%)</title><rect x="66.3024%" y="581" width="0.0104%" height="15" fill="rgb(208,125,47)" fg:x="343166" fg:w="54"/><text x="66.5524%" y="591.50"></text></g><g><title>__mod_memcg_lruvec_state (66 samples, 0.01%)</title><rect x="66.3667%" y="597" width="0.0128%" height="15" fill="rgb(249,186,39)" fg:x="343499" fg:w="66"/><text x="66.6167%" y="607.50"></text></g><g><title>memcg_slab_post_alloc_hook (362 samples, 0.07%)</title><rect x="66.3128%" y="613" width="0.0699%" height="15" fill="rgb(240,220,33)" fg:x="343220" fg:w="362"/><text x="66.5628%" y="623.50"></text></g><g><title>get_obj_cgroup_from_current (82 samples, 0.02%)</title><rect x="66.3888%" y="597" width="0.0158%" height="15" fill="rgb(243,110,23)" fg:x="343613" fg:w="82"/><text x="66.6388%" y="607.50"></text></g><g><title>obj_cgroup_charge (193 samples, 0.04%)</title><rect x="66.4046%" y="597" width="0.0373%" height="15" fill="rgb(219,163,46)" fg:x="343695" fg:w="193"/><text x="66.6546%" y="607.50"></text></g><g><title>btrfs_alloc_inode (1,250 samples, 0.24%)</title><rect x="66.2008%" y="645" width="0.2415%" height="15" fill="rgb(216,126,30)" fg:x="342640" fg:w="1250"/><text x="66.4508%" y="655.50"></text></g><g><title>kmem_cache_alloc (975 samples, 0.19%)</title><rect x="66.2539%" y="629" width="0.1884%" height="15" fill="rgb(208,139,11)" fg:x="342915" fg:w="975"/><text x="66.5039%" y="639.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (307 samples, 0.06%)</title><rect x="66.3830%" y="613" width="0.0593%" height="15" fill="rgb(213,118,36)" fg:x="343583" fg:w="307"/><text x="66.6330%" y="623.50"></text></g><g><title>alloc_inode (1,786 samples, 0.35%)</title><rect x="66.1886%" y="661" width="0.3451%" height="15" fill="rgb(226,43,17)" fg:x="342577" fg:w="1786"/><text x="66.4386%" y="671.50"></text></g><g><title>inode_init_always (473 samples, 0.09%)</title><rect x="66.4423%" y="645" width="0.0914%" height="15" fill="rgb(254,217,4)" fg:x="343890" fg:w="473"/><text x="66.6923%" y="655.50"></text></g><g><title>security_inode_alloc (119 samples, 0.02%)</title><rect x="66.5107%" y="629" width="0.0230%" height="15" fill="rgb(210,134,47)" fg:x="344244" fg:w="119"/><text x="66.7607%" y="639.50"></text></g><g><title>new_inode (2,236 samples, 0.43%)</title><rect x="66.1198%" y="677" width="0.4320%" height="15" fill="rgb(237,24,49)" fg:x="342221" fg:w="2236"/><text x="66.3698%" y="687.50"></text></g><g><title>inode_sb_list_add (94 samples, 0.02%)</title><rect x="66.5337%" y="661" width="0.0182%" height="15" fill="rgb(251,39,46)" fg:x="344363" fg:w="94"/><text x="66.7837%" y="671.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.01%)</title><rect x="66.5379%" y="645" width="0.0139%" height="15" fill="rgb(251,220,3)" fg:x="344385" fg:w="72"/><text x="66.7879%" y="655.50"></text></g><g><title>btrfs_new_inode (15,959 samples, 3.08%)</title><rect x="63.4941%" y="693" width="3.0834%" height="15" fill="rgb(228,105,12)" fg:x="328631" fg:w="15959"/><text x="63.7441%" y="703.50">btr..</text></g><g><title>write_extent_buffer (133 samples, 0.03%)</title><rect x="66.5518%" y="677" width="0.0257%" height="15" fill="rgb(215,196,1)" fg:x="344457" fg:w="133"/><text x="66.8018%" y="687.50"></text></g><g><title>btrfs_set_64 (72 samples, 0.01%)</title><rect x="66.5824%" y="693" width="0.0139%" height="15" fill="rgb(214,33,39)" fg:x="344615" fg:w="72"/><text x="66.8324%" y="703.50"></text></g><g><title>btrfs_set_8 (69 samples, 0.01%)</title><rect x="66.5963%" y="693" width="0.0133%" height="15" fill="rgb(220,19,52)" fg:x="344687" fg:w="69"/><text x="66.8463%" y="703.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="66.7151%" y="645" width="0.0120%" height="15" fill="rgb(221,78,38)" fg:x="345302" fg:w="62"/><text x="66.9651%" y="655.50"></text></g><g><title>mutex_lock (67 samples, 0.01%)</title><rect x="66.7271%" y="645" width="0.0129%" height="15" fill="rgb(253,30,16)" fg:x="345364" fg:w="67"/><text x="66.9771%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (406 samples, 0.08%)</title><rect x="66.6709%" y="661" width="0.0784%" height="15" fill="rgb(242,65,0)" fg:x="345073" fg:w="406"/><text x="66.9209%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (168 samples, 0.03%)</title><rect x="66.7493%" y="661" width="0.0325%" height="15" fill="rgb(235,201,12)" fg:x="345479" fg:w="168"/><text x="66.9993%" y="671.50"></text></g><g><title>_raw_spin_lock (134 samples, 0.03%)</title><rect x="66.7559%" y="645" width="0.0259%" height="15" fill="rgb(233,161,9)" fg:x="345513" fg:w="134"/><text x="67.0059%" y="655.50"></text></g><g><title>_raw_spin_lock (320 samples, 0.06%)</title><rect x="66.8036%" y="645" width="0.0618%" height="15" fill="rgb(241,207,41)" fg:x="345760" fg:w="320"/><text x="67.0536%" y="655.50"></text></g><g><title>__radix_tree_lookup (534 samples, 0.10%)</title><rect x="66.8702%" y="629" width="0.1032%" height="15" fill="rgb(212,69,46)" fg:x="346105" fg:w="534"/><text x="67.1202%" y="639.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="66.9734%" y="629" width="0.0124%" height="15" fill="rgb(239,69,45)" fg:x="346639" fg:w="64"/><text x="67.2234%" y="639.50"></text></g><g><title>btrfs_get_delayed_node (625 samples, 0.12%)</title><rect x="66.8656%" y="645" width="0.1208%" height="15" fill="rgb(242,117,48)" fg:x="346081" fg:w="625"/><text x="67.1156%" y="655.50"></text></g><g><title>___slab_alloc (133 samples, 0.03%)</title><rect x="67.0072%" y="613" width="0.0257%" height="15" fill="rgb(228,41,36)" fg:x="346814" fg:w="133"/><text x="67.2572%" y="623.50"></text></g><g><title>__slab_alloc (139 samples, 0.03%)</title><rect x="67.0063%" y="629" width="0.0269%" height="15" fill="rgb(212,3,32)" fg:x="346809" fg:w="139"/><text x="67.2563%" y="639.50"></text></g><g><title>memset_erms (90 samples, 0.02%)</title><rect x="67.0383%" y="629" width="0.0174%" height="15" fill="rgb(233,41,49)" fg:x="346975" fg:w="90"/><text x="67.2883%" y="639.50"></text></g><g><title>kmem_cache_alloc (388 samples, 0.07%)</title><rect x="66.9864%" y="645" width="0.0750%" height="15" fill="rgb(252,170,49)" fg:x="346706" fg:w="388"/><text x="67.2364%" y="655.50"></text></g><g><title>radix_tree_insert (181 samples, 0.03%)</title><rect x="67.0613%" y="645" width="0.0350%" height="15" fill="rgb(229,53,26)" fg:x="347094" fg:w="181"/><text x="67.3113%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,631 samples, 0.32%)</title><rect x="66.7818%" y="661" width="0.3151%" height="15" fill="rgb(217,157,12)" fg:x="345647" fg:w="1631"/><text x="67.0318%" y="671.50"></text></g><g><title>inode_get_bytes (93 samples, 0.02%)</title><rect x="67.1050%" y="645" width="0.0180%" height="15" fill="rgb(227,17,9)" fg:x="347320" fg:w="93"/><text x="67.3550%" y="655.50"></text></g><g><title>_raw_spin_lock (82 samples, 0.02%)</title><rect x="67.1071%" y="629" width="0.0158%" height="15" fill="rgb(218,84,12)" fg:x="347331" fg:w="82"/><text x="67.3571%" y="639.50"></text></g><g><title>fill_stack_inode_item (167 samples, 0.03%)</title><rect x="67.0969%" y="661" width="0.0323%" height="15" fill="rgb(212,79,24)" fg:x="347278" fg:w="167"/><text x="67.3469%" y="671.50"></text></g><g><title>mutex_lock (82 samples, 0.02%)</title><rect x="67.1291%" y="661" width="0.0158%" height="15" fill="rgb(217,222,37)" fg:x="347445" fg:w="82"/><text x="67.3791%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (2,718 samples, 0.53%)</title><rect x="66.6311%" y="677" width="0.5251%" height="15" fill="rgb(246,208,8)" fg:x="344867" fg:w="2718"/><text x="66.8811%" y="687.50"></text></g><g><title>mutex_unlock (58 samples, 0.01%)</title><rect x="67.1450%" y="661" width="0.0112%" height="15" fill="rgb(244,133,10)" fg:x="347527" fg:w="58"/><text x="67.3950%" y="671.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="67.1599%" y="661" width="0.0116%" height="15" fill="rgb(209,219,41)" fg:x="347604" fg:w="60"/><text x="67.4099%" y="671.50"></text></g><g><title>btrfs_update_inode (3,002 samples, 0.58%)</title><rect x="66.6148%" y="693" width="0.5800%" height="15" fill="rgb(253,175,45)" fg:x="344783" fg:w="3002"/><text x="66.8648%" y="703.50"></text></g><g><title>btrfs_update_root_times (200 samples, 0.04%)</title><rect x="67.1562%" y="677" width="0.0386%" height="15" fill="rgb(235,100,37)" fg:x="347585" fg:w="200"/><text x="67.4062%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (121 samples, 0.02%)</title><rect x="67.1715%" y="661" width="0.0234%" height="15" fill="rgb(225,87,19)" fg:x="347664" fg:w="121"/><text x="67.4215%" y="671.50"></text></g><g><title>read_tsc (81 samples, 0.02%)</title><rect x="67.1792%" y="645" width="0.0156%" height="15" fill="rgb(217,152,17)" fg:x="347704" fg:w="81"/><text x="67.4292%" y="655.50"></text></g><g><title>__d_instantiate (117 samples, 0.02%)</title><rect x="67.2126%" y="677" width="0.0226%" height="15" fill="rgb(235,72,13)" fg:x="347877" fg:w="117"/><text x="67.4626%" y="687.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="67.2352%" y="677" width="0.0108%" height="15" fill="rgb(233,140,18)" fg:x="347994" fg:w="56"/><text x="67.4852%" y="687.50"></text></g><g><title>d_instantiate_new (281 samples, 0.05%)</title><rect x="67.1966%" y="693" width="0.0543%" height="15" fill="rgb(207,212,28)" fg:x="347794" fg:w="281"/><text x="67.4466%" y="703.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="67.2756%" y="677" width="0.0104%" height="15" fill="rgb(220,130,25)" fg:x="348203" fg:w="54"/><text x="67.5256%" y="687.50"></text></g><g><title>kmem_cache_alloc (218 samples, 0.04%)</title><rect x="67.2530%" y="693" width="0.0421%" height="15" fill="rgb(205,55,34)" fg:x="348086" fg:w="218"/><text x="67.5030%" y="703.50"></text></g><g><title>kmem_cache_free (108 samples, 0.02%)</title><rect x="67.2951%" y="693" width="0.0209%" height="15" fill="rgb(237,54,35)" fg:x="348304" fg:w="108"/><text x="67.5451%" y="703.50"></text></g><g><title>security_inode_init_security (101 samples, 0.02%)</title><rect x="67.3160%" y="693" width="0.0195%" height="15" fill="rgb(208,67,23)" fg:x="348412" fg:w="101"/><text x="67.5660%" y="703.50"></text></g><g><title>_raw_spin_lock (107 samples, 0.02%)</title><rect x="67.4460%" y="629" width="0.0207%" height="15" fill="rgb(206,207,50)" fg:x="349085" fg:w="107"/><text x="67.6960%" y="639.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (499 samples, 0.10%)</title><rect x="67.4667%" y="629" width="0.0964%" height="15" fill="rgb(213,211,42)" fg:x="349192" fg:w="499"/><text x="67.7167%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (267 samples, 0.05%)</title><rect x="67.5115%" y="613" width="0.0516%" height="15" fill="rgb(252,197,50)" fg:x="349424" fg:w="267"/><text x="67.7615%" y="623.50"></text></g><g><title>_raw_spin_lock (103 samples, 0.02%)</title><rect x="67.5432%" y="597" width="0.0199%" height="15" fill="rgb(251,211,41)" fg:x="349588" fg:w="103"/><text x="67.7932%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (1,049 samples, 0.20%)</title><rect x="67.4101%" y="677" width="0.2027%" height="15" fill="rgb(229,211,5)" fg:x="348899" fg:w="1049"/><text x="67.6601%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (971 samples, 0.19%)</title><rect x="67.4251%" y="661" width="0.1876%" height="15" fill="rgb(239,36,31)" fg:x="348977" fg:w="971"/><text x="67.6751%" y="671.50"></text></g><g><title>__reserve_bytes (949 samples, 0.18%)</title><rect x="67.4294%" y="645" width="0.1834%" height="15" fill="rgb(248,67,31)" fg:x="348999" fg:w="949"/><text x="67.6794%" y="655.50"></text></g><g><title>calc_available_free_space.isra.0 (257 samples, 0.05%)</title><rect x="67.5631%" y="629" width="0.0497%" height="15" fill="rgb(249,55,44)" fg:x="349691" fg:w="257"/><text x="67.8131%" y="639.50"></text></g><g><title>btrfs_reduce_alloc_profile (145 samples, 0.03%)</title><rect x="67.5847%" y="613" width="0.0280%" height="15" fill="rgb(216,82,12)" fg:x="349803" fg:w="145"/><text x="67.8347%" y="623.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="67.6004%" y="597" width="0.0124%" height="15" fill="rgb(242,174,1)" fg:x="349884" fg:w="64"/><text x="67.8504%" y="607.50"></text></g><g><title>join_transaction (245 samples, 0.05%)</title><rect x="67.6156%" y="677" width="0.0473%" height="15" fill="rgb(208,120,29)" fg:x="349963" fg:w="245"/><text x="67.8656%" y="687.50"></text></g><g><title>_raw_spin_lock (74 samples, 0.01%)</title><rect x="67.6487%" y="661" width="0.0143%" height="15" fill="rgb(221,105,43)" fg:x="350134" fg:w="74"/><text x="67.8987%" y="671.50"></text></g><g><title>kmem_cache_alloc (202 samples, 0.04%)</title><rect x="67.6630%" y="677" width="0.0390%" height="15" fill="rgb(234,124,22)" fg:x="350208" fg:w="202"/><text x="67.9130%" y="687.50"></text></g><g><title>start_transaction (2,062 samples, 0.40%)</title><rect x="67.3355%" y="693" width="0.3984%" height="15" fill="rgb(212,23,30)" fg:x="348513" fg:w="2062"/><text x="67.5855%" y="703.50"></text></g><g><title>wait_current_trans (165 samples, 0.03%)</title><rect x="67.7020%" y="677" width="0.0319%" height="15" fill="rgb(219,122,53)" fg:x="350410" fg:w="165"/><text x="67.9520%" y="687.50"></text></g><g><title>_raw_spin_lock (101 samples, 0.02%)</title><rect x="67.7144%" y="661" width="0.0195%" height="15" fill="rgb(248,84,24)" fg:x="350474" fg:w="101"/><text x="67.9644%" y="671.50"></text></g><g><title>strlen (683 samples, 0.13%)</title><rect x="67.7339%" y="693" width="0.1320%" height="15" fill="rgb(245,115,18)" fg:x="350575" fg:w="683"/><text x="67.9839%" y="703.50"></text></g><g><title>btrfs_symlink (53,844 samples, 10.40%)</title><rect x="57.4925%" y="709" width="10.4031%" height="15" fill="rgb(227,176,51)" fg:x="297568" fg:w="53844"/><text x="57.7425%" y="719.50">btrfs_symlink</text></g><g><title>write_extent_buffer (154 samples, 0.03%)</title><rect x="67.8658%" y="693" width="0.0298%" height="15" fill="rgb(229,63,42)" fg:x="351258" fg:w="154"/><text x="68.1158%" y="703.50"></text></g><g><title>inode_permission.part.0 (98 samples, 0.02%)</title><rect x="67.9064%" y="709" width="0.0189%" height="15" fill="rgb(247,202,24)" fg:x="351468" fg:w="98"/><text x="68.1564%" y="719.50"></text></g><g><title>do_symlinkat (74,317 samples, 14.36%)</title><rect x="53.5773%" y="741" width="14.3586%" height="15" fill="rgb(244,173,20)" fg:x="277304" fg:w="74317"/><text x="53.8273%" y="751.50">do_symlinkat</text></g><g><title>vfs_symlink (54,131 samples, 10.46%)</title><rect x="57.4774%" y="725" width="10.4585%" height="15" fill="rgb(242,81,47)" fg:x="297490" fg:w="54131"/><text x="57.7274%" y="735.50">vfs_symlink</text></g><g><title>do_syscall_64 (74,384 samples, 14.37%)</title><rect x="53.5685%" y="757" width="14.3716%" height="15" fill="rgb(231,185,54)" fg:x="277258" fg:w="74384"/><text x="53.8185%" y="767.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (74,495 samples, 14.39%)</title><rect x="53.5586%" y="773" width="14.3930%" height="15" fill="rgb(243,55,32)" fg:x="277207" fg:w="74495"/><text x="53.8086%" y="783.50">entry_SYSCALL_64_after..</text></g><g><title>syscall_exit_to_user_mode (60 samples, 0.01%)</title><rect x="67.9400%" y="757" width="0.0116%" height="15" fill="rgb(208,167,19)" fg:x="351642" fg:w="60"/><text x="68.1900%" y="767.50"></text></g><g><title>syscall_return_via_sysret (65 samples, 0.01%)</title><rect x="67.9588%" y="773" width="0.0126%" height="15" fill="rgb(231,72,35)" fg:x="351739" fg:w="65"/><text x="68.2088%" y="783.50"></text></g><g><title>__symlink (74,971 samples, 14.48%)</title><rect x="53.4867%" y="789" width="14.4850%" height="15" fill="rgb(250,173,51)" fg:x="276835" fg:w="74971"/><text x="53.7367%" y="799.50">__symlink</text></g><g><title>_int_free (153 samples, 0.03%)</title><rect x="67.9717%" y="789" width="0.0296%" height="15" fill="rgb(209,5,22)" fg:x="351806" fg:w="153"/><text x="68.2217%" y="799.50"></text></g><g><title>jni_ExceptionOccurred (91 samples, 0.02%)</title><rect x="68.0129%" y="789" width="0.0176%" height="15" fill="rgb(250,174,19)" fg:x="352019" fg:w="91"/><text x="68.2629%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (192 samples, 0.04%)</title><rect x="68.0598%" y="773" width="0.0371%" height="15" fill="rgb(217,3,49)" fg:x="352262" fg:w="192"/><text x="68.3098%" y="783.50"></text></g><g><title>ThreadStateTransition::transition_from_native (133 samples, 0.03%)</title><rect x="68.0969%" y="773" width="0.0257%" height="15" fill="rgb(218,225,5)" fg:x="352454" fg:w="133"/><text x="68.3469%" y="783.50"></text></g><g><title>[libc-2.31.so] (94 samples, 0.02%)</title><rect x="68.1226%" y="773" width="0.0182%" height="15" fill="rgb(236,89,11)" fg:x="352587" fg:w="94"/><text x="68.3726%" y="783.50"></text></g><g><title>check_bounds (68 samples, 0.01%)</title><rect x="68.1408%" y="773" width="0.0131%" height="15" fill="rgb(206,33,28)" fg:x="352681" fg:w="68"/><text x="68.3908%" y="783.50"></text></g><g><title>jni_GetByteArrayRegion (651 samples, 0.13%)</title><rect x="68.0305%" y="789" width="0.1258%" height="15" fill="rgb(241,56,42)" fg:x="352110" fg:w="651"/><text x="68.2805%" y="799.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (115 samples, 0.02%)</title><rect x="68.1881%" y="757" width="0.0222%" height="15" fill="rgb(222,44,11)" fg:x="352926" fg:w="115"/><text x="68.4381%" y="767.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (82 samples, 0.02%)</title><rect x="68.1945%" y="741" width="0.0158%" height="15" fill="rgb(234,111,20)" fg:x="352959" fg:w="82"/><text x="68.4445%" y="751.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (151 samples, 0.03%)</title><rect x="68.1815%" y="773" width="0.0292%" height="15" fill="rgb(237,77,6)" fg:x="352892" fg:w="151"/><text x="68.4315%" y="783.50"></text></g><g><title>HandleMark::pop_and_restore (101 samples, 0.02%)</title><rect x="68.2107%" y="773" width="0.0195%" height="15" fill="rgb(235,111,23)" fg:x="353043" fg:w="101"/><text x="68.4607%" y="783.50"></text></g><g><title>JNIHandles::make_local (84 samples, 0.02%)</title><rect x="68.2302%" y="773" width="0.0162%" height="15" fill="rgb(251,135,29)" fg:x="353144" fg:w="84"/><text x="68.4802%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (164 samples, 0.03%)</title><rect x="68.2470%" y="773" width="0.0317%" height="15" fill="rgb(217,57,1)" fg:x="353231" fg:w="164"/><text x="68.4970%" y="783.50"></text></g><g><title>jni_GetObjectField (810 samples, 0.16%)</title><rect x="68.1568%" y="789" width="0.1565%" height="15" fill="rgb(249,119,31)" fg:x="352764" fg:w="810"/><text x="68.4068%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (179 samples, 0.03%)</title><rect x="68.2787%" y="773" width="0.0346%" height="15" fill="rgb(233,164,33)" fg:x="353395" fg:w="179"/><text x="68.5287%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (123 samples, 0.02%)</title><rect x="68.3566%" y="773" width="0.0238%" height="15" fill="rgb(250,217,43)" fg:x="353798" fg:w="123"/><text x="68.6066%" y="783.50"></text></g><g><title>jni_GetStringLength (580 samples, 0.11%)</title><rect x="68.3133%" y="789" width="0.1121%" height="15" fill="rgb(232,154,50)" fg:x="353574" fg:w="580"/><text x="68.5633%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (233 samples, 0.05%)</title><rect x="68.3804%" y="773" width="0.0450%" height="15" fill="rgb(227,190,8)" fg:x="353921" fg:w="233"/><text x="68.6304%" y="783.50"></text></g><g><title>jni_NewObjectV (127 samples, 0.02%)</title><rect x="68.4265%" y="789" width="0.0245%" height="15" fill="rgb(209,217,32)" fg:x="354160" fg:w="127"/><text x="68.6765%" y="799.50"></text></g><g><title>jni_invoke_nonstatic (71 samples, 0.01%)</title><rect x="68.4374%" y="773" width="0.0137%" height="15" fill="rgb(243,203,50)" fg:x="354216" fg:w="71"/><text x="68.6874%" y="783.50"></text></g><g><title>operator delete@plt (56 samples, 0.01%)</title><rect x="68.4627%" y="789" width="0.0108%" height="15" fill="rgb(232,152,27)" fg:x="354347" fg:w="56"/><text x="68.7127%" y="799.50"></text></g><g><title>__GI___libc_malloc (156 samples, 0.03%)</title><rect x="68.4770%" y="773" width="0.0301%" height="15" fill="rgb(240,34,29)" fg:x="354421" fg:w="156"/><text x="68.7270%" y="783.50"></text></g><g><title>tcache_get (52 samples, 0.01%)</title><rect x="68.4971%" y="757" width="0.0100%" height="15" fill="rgb(215,185,52)" fg:x="354525" fg:w="52"/><text x="68.7471%" y="767.50"></text></g><g><title>operator new (245 samples, 0.05%)</title><rect x="68.4758%" y="789" width="0.0473%" height="15" fill="rgb(240,89,49)" fg:x="354415" fg:w="245"/><text x="68.7258%" y="799.50"></text></g><g><title>malloc@plt (83 samples, 0.02%)</title><rect x="68.5071%" y="773" width="0.0160%" height="15" fill="rgb(225,12,52)" fg:x="354577" fg:w="83"/><text x="68.7571%" y="783.50"></text></g><g><title>_int_malloc (115 samples, 0.02%)</title><rect x="68.5591%" y="741" width="0.0222%" height="15" fill="rgb(239,128,45)" fg:x="354846" fg:w="115"/><text x="68.8091%" y="751.50"></text></g><g><title>__GI___libc_malloc (233 samples, 0.05%)</title><rect x="68.5407%" y="757" width="0.0450%" height="15" fill="rgb(211,78,47)" fg:x="354751" fg:w="233"/><text x="68.7907%" y="767.50"></text></g><g><title>operator new (245 samples, 0.05%)</title><rect x="68.5403%" y="773" width="0.0473%" height="15" fill="rgb(232,31,21)" fg:x="354749" fg:w="245"/><text x="68.7903%" y="783.50"></text></g><g><title>[libunix_jni.so] (199,576 samples, 38.56%)</title><rect x="30.0307%" y="805" width="38.5597%" height="15" fill="rgb(222,168,14)" fg:x="155432" fg:w="199576"/><text x="30.2807%" y="815.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (273 samples, 0.05%)</title><rect x="68.5376%" y="789" width="0.0527%" height="15" fill="rgb(209,128,24)" fg:x="354735" fg:w="273"/><text x="68.7876%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (95 samples, 0.02%)</title><rect x="79.7068%" y="757" width="0.0184%" height="15" fill="rgb(249,35,13)" fg:x="412544" fg:w="95"/><text x="79.9568%" y="767.50"></text></g><g><title>InterpreterRuntime::_new (144 samples, 0.03%)</title><rect x="79.6977%" y="789" width="0.0278%" height="15" fill="rgb(218,7,2)" fg:x="412497" fg:w="144"/><text x="79.9477%" y="799.50"></text></g><g><title>InstanceKlass::initialize_impl (98 samples, 0.02%)</title><rect x="79.7066%" y="773" width="0.0189%" height="15" fill="rgb(238,107,27)" fg:x="412543" fg:w="98"/><text x="79.9566%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (95 samples, 0.02%)</title><rect x="79.7302%" y="773" width="0.0184%" height="15" fill="rgb(217,88,38)" fg:x="412665" fg:w="95"/><text x="79.9802%" y="783.50"></text></g><g><title>InterpreterRuntime::anewarray (129 samples, 0.02%)</title><rect x="79.7255%" y="789" width="0.0249%" height="15" fill="rgb(230,207,0)" fg:x="412641" fg:w="129"/><text x="79.9755%" y="799.50"></text></g><g><title>InterpreterRuntime::at_safepoint (52 samples, 0.01%)</title><rect x="79.7505%" y="789" width="0.0100%" height="15" fill="rgb(249,64,54)" fg:x="412770" fg:w="52"/><text x="80.0005%" y="799.50"></text></g><g><title>SafepointSynchronize::block (52 samples, 0.01%)</title><rect x="79.7505%" y="773" width="0.0100%" height="15" fill="rgb(231,7,11)" fg:x="412770" fg:w="52"/><text x="80.0005%" y="783.50"></text></g><g><title>TieredThresholdPolicy::call_event (69 samples, 0.01%)</title><rect x="79.7839%" y="725" width="0.0133%" height="15" fill="rgb(205,149,21)" fg:x="412943" fg:w="69"/><text x="80.0339%" y="735.50"></text></g><g><title>CompileBroker::compile_method (52 samples, 0.01%)</title><rect x="79.7978%" y="693" width="0.0100%" height="15" fill="rgb(215,126,34)" fg:x="413015" fg:w="52"/><text x="80.0478%" y="703.50"></text></g><g><title>TieredThresholdPolicy::compile (56 samples, 0.01%)</title><rect x="79.7972%" y="725" width="0.0108%" height="15" fill="rgb(241,132,45)" fg:x="413012" fg:w="56"/><text x="80.0472%" y="735.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (55 samples, 0.01%)</title><rect x="79.7974%" y="709" width="0.0106%" height="15" fill="rgb(252,69,32)" fg:x="413013" fg:w="55"/><text x="80.0474%" y="719.50"></text></g><g><title>TieredThresholdPolicy::event (196 samples, 0.04%)</title><rect x="79.7704%" y="757" width="0.0379%" height="15" fill="rgb(232,204,19)" fg:x="412873" fg:w="196"/><text x="80.0204%" y="767.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (182 samples, 0.04%)</title><rect x="79.7731%" y="741" width="0.0352%" height="15" fill="rgb(249,15,47)" fg:x="412887" fg:w="182"/><text x="80.0231%" y="751.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (237 samples, 0.05%)</title><rect x="79.7630%" y="789" width="0.0458%" height="15" fill="rgb(209,227,23)" fg:x="412835" fg:w="237"/><text x="80.0130%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (236 samples, 0.05%)</title><rect x="79.7632%" y="773" width="0.0456%" height="15" fill="rgb(248,92,24)" fg:x="412836" fg:w="236"/><text x="80.0132%" y="783.50"></text></g><g><title>InterpreterRuntime::ldc (102 samples, 0.02%)</title><rect x="79.8088%" y="789" width="0.0197%" height="15" fill="rgb(247,59,2)" fg:x="413072" fg:w="102"/><text x="80.0588%" y="799.50"></text></g><g><title>InterpreterRuntime::monitorenter (62 samples, 0.01%)</title><rect x="79.8285%" y="789" width="0.0120%" height="15" fill="rgb(221,30,5)" fg:x="413174" fg:w="62"/><text x="80.0785%" y="799.50"></text></g><g><title>ObjectSynchronizer::fast_enter (53 samples, 0.01%)</title><rect x="79.8302%" y="773" width="0.0102%" height="15" fill="rgb(208,108,53)" fg:x="413183" fg:w="53"/><text x="80.0802%" y="783.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (52 samples, 0.01%)</title><rect x="79.8304%" y="757" width="0.0100%" height="15" fill="rgb(211,183,26)" fg:x="413184" fg:w="52"/><text x="80.0804%" y="767.50"></text></g><g><title>VMThread::execute (52 samples, 0.01%)</title><rect x="79.8304%" y="741" width="0.0100%" height="15" fill="rgb(232,132,4)" fg:x="413184" fg:w="52"/><text x="80.0804%" y="751.50"></text></g><g><title>LinkResolver::resolve_static_call (60 samples, 0.01%)</title><rect x="79.8894%" y="741" width="0.0116%" height="15" fill="rgb(253,128,37)" fg:x="413489" fg:w="60"/><text x="80.1394%" y="751.50"></text></g><g><title>LinkResolver::resolve_invoke (203 samples, 0.04%)</title><rect x="79.8627%" y="757" width="0.0392%" height="15" fill="rgb(221,58,24)" fg:x="413351" fg:w="203"/><text x="80.1127%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (266 samples, 0.05%)</title><rect x="79.8536%" y="773" width="0.0514%" height="15" fill="rgb(230,54,45)" fg:x="413304" fg:w="266"/><text x="80.1036%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (361 samples, 0.07%)</title><rect x="79.8455%" y="789" width="0.0697%" height="15" fill="rgb(254,21,18)" fg:x="413262" fg:w="361"/><text x="80.0955%" y="799.50"></text></g><g><title>JVM_Clone (69 samples, 0.01%)</title><rect x="79.9193%" y="789" width="0.0133%" height="15" fill="rgb(221,108,0)" fg:x="413644" fg:w="69"/><text x="80.1693%" y="799.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (320 samples, 0.06%)</title><rect x="80.0144%" y="661" width="0.0618%" height="15" fill="rgb(206,95,1)" fg:x="414136" fg:w="320"/><text x="80.2644%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (288 samples, 0.06%)</title><rect x="80.0206%" y="645" width="0.0556%" height="15" fill="rgb(237,52,5)" fg:x="414168" fg:w="288"/><text x="80.2706%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool (330 samples, 0.06%)</title><rect x="80.0132%" y="677" width="0.0638%" height="15" fill="rgb(218,150,34)" fg:x="414130" fg:w="330"/><text x="80.2632%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (69 samples, 0.01%)</title><rect x="80.0779%" y="677" width="0.0133%" height="15" fill="rgb(235,194,28)" fg:x="414465" fg:w="69"/><text x="80.3279%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (68 samples, 0.01%)</title><rect x="80.0781%" y="661" width="0.0131%" height="15" fill="rgb(245,92,18)" fg:x="414466" fg:w="68"/><text x="80.3281%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (422 samples, 0.08%)</title><rect x="80.0111%" y="709" width="0.0815%" height="15" fill="rgb(253,203,53)" fg:x="414119" fg:w="422"/><text x="80.2611%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (419 samples, 0.08%)</title><rect x="80.0117%" y="693" width="0.0810%" height="15" fill="rgb(249,185,47)" fg:x="414122" fg:w="419"/><text x="80.2617%" y="703.50"></text></g><g><title>ClassFileParser::fill_instance_klass (65 samples, 0.01%)</title><rect x="80.0926%" y="693" width="0.0126%" height="15" fill="rgb(252,194,52)" fg:x="414541" fg:w="65"/><text x="80.3426%" y="703.50"></text></g><g><title>ClassFileParser::create_instance_klass (73 samples, 0.01%)</title><rect x="80.0926%" y="709" width="0.0141%" height="15" fill="rgb(210,53,36)" fg:x="414541" fg:w="73"/><text x="80.3426%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (526 samples, 0.10%)</title><rect x="80.0107%" y="725" width="0.1016%" height="15" fill="rgb(237,37,25)" fg:x="414117" fg:w="526"/><text x="80.2607%" y="735.50"></text></g><g><title>JVM_DefineClassWithSource (552 samples, 0.11%)</title><rect x="80.0094%" y="773" width="0.1067%" height="15" fill="rgb(242,116,27)" fg:x="414110" fg:w="552"/><text x="80.2594%" y="783.50"></text></g><g><title>jvm_define_class_common (551 samples, 0.11%)</title><rect x="80.0095%" y="757" width="0.1065%" height="15" fill="rgb(213,185,26)" fg:x="414111" fg:w="551"/><text x="80.2595%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (545 samples, 0.11%)</title><rect x="80.0107%" y="741" width="0.1053%" height="15" fill="rgb(225,204,8)" fg:x="414117" fg:w="545"/><text x="80.2607%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (575 samples, 0.11%)</title><rect x="80.0090%" y="789" width="0.1111%" height="15" fill="rgb(254,111,37)" fg:x="414108" fg:w="575"/><text x="80.2590%" y="799.50"></text></g><g><title>calculate_sigpending (54 samples, 0.01%)</title><rect x="80.1458%" y="725" width="0.0104%" height="15" fill="rgb(242,35,9)" fg:x="414816" fg:w="54"/><text x="80.3958%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (646 samples, 0.12%)</title><rect x="80.1657%" y="693" width="0.1248%" height="15" fill="rgb(232,138,49)" fg:x="414919" fg:w="646"/><text x="80.4157%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (643 samples, 0.12%)</title><rect x="80.1662%" y="677" width="0.1242%" height="15" fill="rgb(247,56,4)" fg:x="414922" fg:w="643"/><text x="80.4162%" y="687.50"></text></g><g><title>native_write_msr (643 samples, 0.12%)</title><rect x="80.1662%" y="661" width="0.1242%" height="15" fill="rgb(226,179,17)" fg:x="414922" fg:w="643"/><text x="80.4162%" y="671.50"></text></g><g><title>__libc_vfork (808 samples, 0.16%)</title><rect x="80.1386%" y="757" width="0.1561%" height="15" fill="rgb(216,163,45)" fg:x="414779" fg:w="808"/><text x="80.3886%" y="767.50"></text></g><g><title>ret_from_fork (771 samples, 0.15%)</title><rect x="80.1458%" y="741" width="0.1490%" height="15" fill="rgb(211,157,3)" fg:x="414816" fg:w="771"/><text x="80.3958%" y="751.50"></text></g><g><title>schedule_tail (717 samples, 0.14%)</title><rect x="80.1562%" y="725" width="0.1385%" height="15" fill="rgb(234,44,20)" fg:x="414870" fg:w="717"/><text x="80.4062%" y="735.50"></text></g><g><title>finish_task_switch (699 samples, 0.14%)</title><rect x="80.1597%" y="709" width="0.1351%" height="15" fill="rgb(254,138,23)" fg:x="414888" fg:w="699"/><text x="80.4097%" y="719.50"></text></g><g><title>bprm_execve (126 samples, 0.02%)</title><rect x="80.2963%" y="645" width="0.0243%" height="15" fill="rgb(206,119,39)" fg:x="415595" fg:w="126"/><text x="80.5463%" y="655.50"></text></g><g><title>JDK_execvpe (176 samples, 0.03%)</title><rect x="80.2949%" y="741" width="0.0340%" height="15" fill="rgb(231,105,52)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="751.50"></text></g><g><title>__GI_execve (176 samples, 0.03%)</title><rect x="80.2949%" y="725" width="0.0340%" height="15" fill="rgb(250,20,5)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (176 samples, 0.03%)</title><rect x="80.2949%" y="709" width="0.0340%" height="15" fill="rgb(215,198,30)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="719.50"></text></g><g><title>do_syscall_64 (176 samples, 0.03%)</title><rect x="80.2949%" y="693" width="0.0340%" height="15" fill="rgb(246,142,8)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="703.50"></text></g><g><title>__x64_sys_execve (176 samples, 0.03%)</title><rect x="80.2949%" y="677" width="0.0340%" height="15" fill="rgb(243,26,38)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="687.50"></text></g><g><title>do_execveat_common (176 samples, 0.03%)</title><rect x="80.2949%" y="661" width="0.0340%" height="15" fill="rgb(205,133,28)" fg:x="415588" fg:w="176"/><text x="80.5449%" y="671.50"></text></g><g><title>closeDescriptors (71 samples, 0.01%)</title><rect x="80.3314%" y="741" width="0.0137%" height="15" fill="rgb(212,34,0)" fg:x="415777" fg:w="71"/><text x="80.5814%" y="751.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,125 samples, 0.22%)</title><rect x="80.1351%" y="789" width="0.2174%" height="15" fill="rgb(251,226,22)" fg:x="414761" fg:w="1125"/><text x="80.3851%" y="799.50"></text></g><g><title>vforkChild (1,107 samples, 0.21%)</title><rect x="80.1386%" y="773" width="0.2139%" height="15" fill="rgb(252,119,9)" fg:x="414779" fg:w="1107"/><text x="80.3886%" y="783.50"></text></g><g><title>childProcess (299 samples, 0.06%)</title><rect x="80.2947%" y="757" width="0.0578%" height="15" fill="rgb(213,150,50)" fg:x="415587" fg:w="299"/><text x="80.5447%" y="767.50"></text></g><g><title>OptoRuntime::new_array_C (108 samples, 0.02%)</title><rect x="80.3602%" y="789" width="0.0209%" height="15" fill="rgb(212,24,39)" fg:x="415926" fg:w="108"/><text x="80.6102%" y="799.50"></text></g><g><title>TypeArrayKlass::allocate_common (59 samples, 0.01%)</title><rect x="80.3697%" y="773" width="0.0114%" height="15" fill="rgb(213,46,39)" fg:x="415975" fg:w="59"/><text x="80.6197%" y="783.50"></text></g><g><title>CollectedHeap::array_allocate (58 samples, 0.01%)</title><rect x="80.3699%" y="757" width="0.0112%" height="15" fill="rgb(239,106,12)" fg:x="415976" fg:w="58"/><text x="80.6199%" y="767.50"></text></g><g><title>MemAllocator::allocate (58 samples, 0.01%)</title><rect x="80.3699%" y="741" width="0.0112%" height="15" fill="rgb(249,229,21)" fg:x="415976" fg:w="58"/><text x="80.6199%" y="751.50"></text></g><g><title>kernel_init_free_pages (57 samples, 0.01%)</title><rect x="80.3915%" y="565" width="0.0110%" height="15" fill="rgb(212,158,3)" fg:x="416088" fg:w="57"/><text x="80.6415%" y="575.50"></text></g><g><title>clear_page_erms (57 samples, 0.01%)</title><rect x="80.3915%" y="549" width="0.0110%" height="15" fill="rgb(253,26,48)" fg:x="416088" fg:w="57"/><text x="80.6415%" y="559.50"></text></g><g><title>alloc_pages_vma (59 samples, 0.01%)</title><rect x="80.3913%" y="629" width="0.0114%" height="15" fill="rgb(238,178,20)" fg:x="416087" fg:w="59"/><text x="80.6413%" y="639.50"></text></g><g><title>__alloc_pages_nodemask (59 samples, 0.01%)</title><rect x="80.3913%" y="613" width="0.0114%" height="15" fill="rgb(208,86,15)" fg:x="416087" fg:w="59"/><text x="80.6413%" y="623.50"></text></g><g><title>get_page_from_freelist (59 samples, 0.01%)</title><rect x="80.3913%" y="597" width="0.0114%" height="15" fill="rgb(239,42,53)" fg:x="416087" fg:w="59"/><text x="80.6413%" y="607.50"></text></g><g><title>prep_new_page (58 samples, 0.01%)</title><rect x="80.3915%" y="581" width="0.0112%" height="15" fill="rgb(245,226,8)" fg:x="416088" fg:w="58"/><text x="80.6415%" y="591.50"></text></g><g><title>InstanceKlass::allocate_instance (115 samples, 0.02%)</title><rect x="80.3869%" y="773" width="0.0222%" height="15" fill="rgb(216,176,32)" fg:x="416064" fg:w="115"/><text x="80.6369%" y="783.50"></text></g><g><title>CollectedHeap::obj_allocate (113 samples, 0.02%)</title><rect x="80.3873%" y="757" width="0.0218%" height="15" fill="rgb(231,186,21)" fg:x="416066" fg:w="113"/><text x="80.6373%" y="767.50"></text></g><g><title>MemAllocator::allocate (113 samples, 0.02%)</title><rect x="80.3873%" y="741" width="0.0218%" height="15" fill="rgb(205,95,49)" fg:x="416066" fg:w="113"/><text x="80.6373%" y="751.50"></text></g><g><title>ObjAllocator::initialize (96 samples, 0.02%)</title><rect x="80.3906%" y="725" width="0.0185%" height="15" fill="rgb(217,145,8)" fg:x="416083" fg:w="96"/><text x="80.6406%" y="735.50"></text></g><g><title>asm_exc_page_fault (94 samples, 0.02%)</title><rect x="80.3909%" y="709" width="0.0182%" height="15" fill="rgb(239,144,48)" fg:x="416085" fg:w="94"/><text x="80.6409%" y="719.50"></text></g><g><title>exc_page_fault (94 samples, 0.02%)</title><rect x="80.3909%" y="693" width="0.0182%" height="15" fill="rgb(214,189,23)" fg:x="416085" fg:w="94"/><text x="80.6409%" y="703.50"></text></g><g><title>do_user_addr_fault (94 samples, 0.02%)</title><rect x="80.3909%" y="677" width="0.0182%" height="15" fill="rgb(229,157,17)" fg:x="416085" fg:w="94"/><text x="80.6409%" y="687.50"></text></g><g><title>handle_mm_fault (92 samples, 0.02%)</title><rect x="80.3913%" y="661" width="0.0178%" height="15" fill="rgb(230,5,48)" fg:x="416087" fg:w="92"/><text x="80.6413%" y="671.50"></text></g><g><title>do_huge_pmd_anonymous_page (92 samples, 0.02%)</title><rect x="80.3913%" y="645" width="0.0178%" height="15" fill="rgb(224,156,48)" fg:x="416087" fg:w="92"/><text x="80.6413%" y="655.50"></text></g><g><title>OptoRuntime::new_instance_C (122 samples, 0.02%)</title><rect x="80.3859%" y="789" width="0.0236%" height="15" fill="rgb(223,14,29)" fg:x="416059" fg:w="122"/><text x="80.6359%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (101 samples, 0.02%)</title><rect x="80.4164%" y="773" width="0.0195%" height="15" fill="rgb(229,96,36)" fg:x="416217" fg:w="101"/><text x="80.6664%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (73 samples, 0.01%)</title><rect x="80.4219%" y="757" width="0.0141%" height="15" fill="rgb(231,102,53)" fg:x="416245" fg:w="73"/><text x="80.6719%" y="767.50"></text></g><g><title>Runtime1::counter_overflow (170 samples, 0.03%)</title><rect x="80.4095%" y="789" width="0.0328%" height="15" fill="rgb(210,77,38)" fg:x="416181" fg:w="170"/><text x="80.6595%" y="799.50"></text></g><g><title>ObjectMonitor::enter (55 samples, 0.01%)</title><rect x="80.4481%" y="773" width="0.0106%" height="15" fill="rgb(235,131,6)" fg:x="416381" fg:w="55"/><text x="80.6981%" y="783.50"></text></g><g><title>Runtime1::monitorenter (96 samples, 0.02%)</title><rect x="80.4437%" y="789" width="0.0185%" height="15" fill="rgb(252,55,38)" fg:x="416358" fg:w="96"/><text x="80.6937%" y="799.50"></text></g><g><title>Runtime1::new_instance (99 samples, 0.02%)</title><rect x="80.4713%" y="789" width="0.0191%" height="15" fill="rgb(246,38,14)" fg:x="416501" fg:w="99"/><text x="80.7213%" y="799.50"></text></g><g><title>InstanceKlass::allocate_instance (99 samples, 0.02%)</title><rect x="80.4713%" y="773" width="0.0191%" height="15" fill="rgb(242,27,5)" fg:x="416501" fg:w="99"/><text x="80.7213%" y="783.50"></text></g><g><title>CollectedHeap::obj_allocate (98 samples, 0.02%)</title><rect x="80.4715%" y="757" width="0.0189%" height="15" fill="rgb(228,65,35)" fg:x="416502" fg:w="98"/><text x="80.7215%" y="767.50"></text></g><g><title>MemAllocator::allocate (98 samples, 0.02%)</title><rect x="80.4715%" y="741" width="0.0189%" height="15" fill="rgb(245,93,11)" fg:x="416502" fg:w="98"/><text x="80.7215%" y="751.50"></text></g><g><title>ObjAllocator::initialize (70 samples, 0.01%)</title><rect x="80.4769%" y="725" width="0.0135%" height="15" fill="rgb(213,1,31)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="735.50"></text></g><g><title>asm_exc_page_fault (70 samples, 0.01%)</title><rect x="80.4769%" y="709" width="0.0135%" height="15" fill="rgb(237,205,14)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="719.50"></text></g><g><title>exc_page_fault (70 samples, 0.01%)</title><rect x="80.4769%" y="693" width="0.0135%" height="15" fill="rgb(232,118,45)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="703.50"></text></g><g><title>do_user_addr_fault (70 samples, 0.01%)</title><rect x="80.4769%" y="677" width="0.0135%" height="15" fill="rgb(218,5,6)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="687.50"></text></g><g><title>handle_mm_fault (70 samples, 0.01%)</title><rect x="80.4769%" y="661" width="0.0135%" height="15" fill="rgb(251,87,51)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="671.50"></text></g><g><title>do_huge_pmd_anonymous_page (70 samples, 0.01%)</title><rect x="80.4769%" y="645" width="0.0135%" height="15" fill="rgb(207,225,20)" fg:x="416530" fg:w="70"/><text x="80.7269%" y="655.50"></text></g><g><title>SystemDictionary::parse_stream (67 samples, 0.01%)</title><rect x="80.5181%" y="773" width="0.0129%" height="15" fill="rgb(222,78,54)" fg:x="416743" fg:w="67"/><text x="80.7681%" y="783.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (72 samples, 0.01%)</title><rect x="80.5175%" y="789" width="0.0139%" height="15" fill="rgb(232,85,16)" fg:x="416740" fg:w="72"/><text x="80.7675%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (332 samples, 0.06%)</title><rect x="80.5521%" y="565" width="0.0641%" height="15" fill="rgb(244,25,33)" fg:x="416919" fg:w="332"/><text x="80.8021%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (324 samples, 0.06%)</title><rect x="80.5536%" y="549" width="0.0626%" height="15" fill="rgb(233,24,36)" fg:x="416927" fg:w="324"/><text x="80.8036%" y="559.50"></text></g><g><title>native_write_msr (323 samples, 0.06%)</title><rect x="80.5538%" y="533" width="0.0624%" height="15" fill="rgb(253,49,54)" fg:x="416928" fg:w="323"/><text x="80.8038%" y="543.50"></text></g><g><title>finish_task_switch (351 samples, 0.07%)</title><rect x="80.5511%" y="581" width="0.0678%" height="15" fill="rgb(245,12,22)" fg:x="416914" fg:w="351"/><text x="80.8011%" y="591.50"></text></g><g><title>futex_wait_queue_me (375 samples, 0.07%)</title><rect x="80.5490%" y="629" width="0.0725%" height="15" fill="rgb(253,141,28)" fg:x="416903" fg:w="375"/><text x="80.7990%" y="639.50"></text></g><g><title>schedule (373 samples, 0.07%)</title><rect x="80.5494%" y="613" width="0.0721%" height="15" fill="rgb(225,207,27)" fg:x="416905" fg:w="373"/><text x="80.7994%" y="623.50"></text></g><g><title>__schedule (372 samples, 0.07%)</title><rect x="80.5496%" y="597" width="0.0719%" height="15" fill="rgb(220,84,2)" fg:x="416906" fg:w="372"/><text x="80.7996%" y="607.50"></text></g><g><title>__x64_sys_futex (384 samples, 0.07%)</title><rect x="80.5484%" y="677" width="0.0742%" height="15" fill="rgb(224,37,37)" fg:x="416900" fg:w="384"/><text x="80.7984%" y="687.50"></text></g><g><title>do_futex (383 samples, 0.07%)</title><rect x="80.5486%" y="661" width="0.0740%" height="15" fill="rgb(220,143,18)" fg:x="416901" fg:w="383"/><text x="80.7986%" y="671.50"></text></g><g><title>futex_wait (382 samples, 0.07%)</title><rect x="80.5488%" y="645" width="0.0738%" height="15" fill="rgb(210,88,33)" fg:x="416902" fg:w="382"/><text x="80.7988%" y="655.50"></text></g><g><title>do_syscall_64 (385 samples, 0.07%)</title><rect x="80.5484%" y="693" width="0.0744%" height="15" fill="rgb(219,87,51)" fg:x="416900" fg:w="385"/><text x="80.7984%" y="703.50"></text></g><g><title>__pthread_cond_wait (405 samples, 0.08%)</title><rect x="80.5470%" y="757" width="0.0782%" height="15" fill="rgb(211,7,35)" fg:x="416893" fg:w="405"/><text x="80.7970%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (405 samples, 0.08%)</title><rect x="80.5470%" y="741" width="0.0782%" height="15" fill="rgb(232,77,2)" fg:x="416893" fg:w="405"/><text x="80.7970%" y="751.50"></text></g><g><title>futex_wait_cancelable (401 samples, 0.08%)</title><rect x="80.5478%" y="725" width="0.0775%" height="15" fill="rgb(249,94,25)" fg:x="416897" fg:w="401"/><text x="80.7978%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (398 samples, 0.08%)</title><rect x="80.5484%" y="709" width="0.0769%" height="15" fill="rgb(215,112,2)" fg:x="416900" fg:w="398"/><text x="80.7984%" y="719.50"></text></g><g><title>Parker::park (464 samples, 0.09%)</title><rect x="80.5382%" y="773" width="0.0896%" height="15" fill="rgb(226,115,48)" fg:x="416847" fg:w="464"/><text x="80.7882%" y="783.50"></text></g><g><title>Unsafe_Park (472 samples, 0.09%)</title><rect x="80.5374%" y="789" width="0.0912%" height="15" fill="rgb(249,196,10)" fg:x="416843" fg:w="472"/><text x="80.7874%" y="799.50"></text></g><g><title>ttwu_do_activate (73 samples, 0.01%)</title><rect x="80.6533%" y="629" width="0.0141%" height="15" fill="rgb(237,109,14)" fg:x="417443" fg:w="73"/><text x="80.9033%" y="639.50"></text></g><g><title>__x64_sys_futex (156 samples, 0.03%)</title><rect x="80.6419%" y="709" width="0.0301%" height="15" fill="rgb(217,103,53)" fg:x="417384" fg:w="156"/><text x="80.8919%" y="719.50"></text></g><g><title>do_futex (153 samples, 0.03%)</title><rect x="80.6425%" y="693" width="0.0296%" height="15" fill="rgb(244,137,9)" fg:x="417387" fg:w="153"/><text x="80.8925%" y="703.50"></text></g><g><title>futex_wake (151 samples, 0.03%)</title><rect x="80.6429%" y="677" width="0.0292%" height="15" fill="rgb(227,201,3)" fg:x="417389" fg:w="151"/><text x="80.8929%" y="687.50"></text></g><g><title>wake_up_q (123 samples, 0.02%)</title><rect x="80.6483%" y="661" width="0.0238%" height="15" fill="rgb(243,94,6)" fg:x="417417" fg:w="123"/><text x="80.8983%" y="671.50"></text></g><g><title>try_to_wake_up (122 samples, 0.02%)</title><rect x="80.6485%" y="645" width="0.0236%" height="15" fill="rgb(235,118,5)" fg:x="417418" fg:w="122"/><text x="80.8985%" y="655.50"></text></g><g><title>do_syscall_64 (159 samples, 0.03%)</title><rect x="80.6415%" y="725" width="0.0307%" height="15" fill="rgb(247,10,30)" fg:x="417382" fg:w="159"/><text x="80.8915%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (166 samples, 0.03%)</title><rect x="80.6415%" y="741" width="0.0321%" height="15" fill="rgb(205,26,28)" fg:x="417382" fg:w="166"/><text x="80.8915%" y="751.50"></text></g><g><title>__pthread_cond_signal (183 samples, 0.04%)</title><rect x="80.6384%" y="773" width="0.0354%" height="15" fill="rgb(206,99,35)" fg:x="417366" fg:w="183"/><text x="80.8884%" y="783.50"></text></g><g><title>futex_wake (172 samples, 0.03%)</title><rect x="80.6406%" y="757" width="0.0332%" height="15" fill="rgb(238,130,40)" fg:x="417377" fg:w="172"/><text x="80.8906%" y="767.50"></text></g><g><title>Unsafe_Unpark (234 samples, 0.05%)</title><rect x="80.6292%" y="789" width="0.0452%" height="15" fill="rgb(224,126,31)" fg:x="417318" fg:w="234"/><text x="80.8792%" y="799.50"></text></g><g><title>clone_endio (53 samples, 0.01%)</title><rect x="80.6873%" y="645" width="0.0102%" height="15" fill="rgb(254,105,17)" fg:x="417619" fg:w="53"/><text x="80.9373%" y="655.50"></text></g><g><title>dec_pending (53 samples, 0.01%)</title><rect x="80.6873%" y="629" width="0.0102%" height="15" fill="rgb(216,87,36)" fg:x="417619" fg:w="53"/><text x="80.9373%" y="639.50"></text></g><g><title>btrfs_end_bio (53 samples, 0.01%)</title><rect x="80.6873%" y="613" width="0.0102%" height="15" fill="rgb(240,21,12)" fg:x="417619" fg:w="53"/><text x="80.9373%" y="623.50"></text></g><g><title>end_bio_extent_writepage (53 samples, 0.01%)</title><rect x="80.6873%" y="597" width="0.0102%" height="15" fill="rgb(245,192,34)" fg:x="417619" fg:w="53"/><text x="80.9373%" y="607.50"></text></g><g><title>blk_mq_end_request (80 samples, 0.02%)</title><rect x="80.6873%" y="677" width="0.0155%" height="15" fill="rgb(226,100,49)" fg:x="417619" fg:w="80"/><text x="80.9373%" y="687.50"></text></g><g><title>blk_update_request (80 samples, 0.02%)</title><rect x="80.6873%" y="661" width="0.0155%" height="15" fill="rgb(245,188,27)" fg:x="417619" fg:w="80"/><text x="80.9373%" y="671.50"></text></g><g><title>handle_edge_irq (85 samples, 0.02%)</title><rect x="80.6867%" y="757" width="0.0164%" height="15" fill="rgb(212,170,8)" fg:x="417616" fg:w="85"/><text x="80.9367%" y="767.50"></text></g><g><title>handle_irq_event (85 samples, 0.02%)</title><rect x="80.6867%" y="741" width="0.0164%" height="15" fill="rgb(217,113,29)" fg:x="417616" fg:w="85"/><text x="80.9367%" y="751.50"></text></g><g><title>__handle_irq_event_percpu (85 samples, 0.02%)</title><rect x="80.6867%" y="725" width="0.0164%" height="15" fill="rgb(237,30,3)" fg:x="417616" fg:w="85"/><text x="80.9367%" y="735.50"></text></g><g><title>nvme_irq (82 samples, 0.02%)</title><rect x="80.6873%" y="709" width="0.0158%" height="15" fill="rgb(227,19,28)" fg:x="417619" fg:w="82"/><text x="80.9373%" y="719.50"></text></g><g><title>nvme_process_cq (82 samples, 0.02%)</title><rect x="80.6873%" y="693" width="0.0158%" height="15" fill="rgb(239,172,45)" fg:x="417619" fg:w="82"/><text x="80.9373%" y="703.50"></text></g><g><title>common_interrupt (87 samples, 0.02%)</title><rect x="80.6867%" y="773" width="0.0168%" height="15" fill="rgb(254,55,39)" fg:x="417616" fg:w="87"/><text x="80.9367%" y="783.50"></text></g><g><title>asm_common_interrupt (89 samples, 0.02%)</title><rect x="80.6867%" y="789" width="0.0172%" height="15" fill="rgb(249,208,12)" fg:x="417616" fg:w="89"/><text x="80.9367%" y="799.50"></text></g><g><title>tick_sched_timer (57 samples, 0.01%)</title><rect x="80.7097%" y="709" width="0.0110%" height="15" fill="rgb(240,52,13)" fg:x="417735" fg:w="57"/><text x="80.9597%" y="719.50"></text></g><g><title>__hrtimer_run_queues (61 samples, 0.01%)</title><rect x="80.7092%" y="725" width="0.0118%" height="15" fill="rgb(252,149,13)" fg:x="417732" fg:w="61"/><text x="80.9592%" y="735.50"></text></g><g><title>__sysvec_apic_timer_interrupt (72 samples, 0.01%)</title><rect x="80.7078%" y="757" width="0.0139%" height="15" fill="rgb(232,81,48)" fg:x="417725" fg:w="72"/><text x="80.9578%" y="767.50"></text></g><g><title>hrtimer_interrupt (70 samples, 0.01%)</title><rect x="80.7082%" y="741" width="0.0135%" height="15" fill="rgb(222,144,2)" fg:x="417727" fg:w="70"/><text x="80.9582%" y="751.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (142 samples, 0.03%)</title><rect x="80.7064%" y="789" width="0.0274%" height="15" fill="rgb(216,81,32)" fg:x="417718" fg:w="142"/><text x="80.9564%" y="799.50"></text></g><g><title>sysvec_apic_timer_interrupt (135 samples, 0.03%)</title><rect x="80.7078%" y="773" width="0.0261%" height="15" fill="rgb(244,78,51)" fg:x="417725" fg:w="135"/><text x="80.9578%" y="783.50"></text></g><g><title>irq_exit_rcu (62 samples, 0.01%)</title><rect x="80.7219%" y="757" width="0.0120%" height="15" fill="rgb(217,66,21)" fg:x="417798" fg:w="62"/><text x="80.9719%" y="767.50"></text></g><g><title>do_softirq_own_stack (62 samples, 0.01%)</title><rect x="80.7219%" y="741" width="0.0120%" height="15" fill="rgb(247,101,42)" fg:x="417798" fg:w="62"/><text x="80.9719%" y="751.50"></text></g><g><title>asm_call_sysvec_on_stack (62 samples, 0.01%)</title><rect x="80.7219%" y="725" width="0.0120%" height="15" fill="rgb(227,81,39)" fg:x="417798" fg:w="62"/><text x="80.9719%" y="735.50"></text></g><g><title>__softirqentry_text_start (62 samples, 0.01%)</title><rect x="80.7219%" y="709" width="0.0120%" height="15" fill="rgb(220,223,44)" fg:x="417798" fg:w="62"/><text x="80.9719%" y="719.50"></text></g><g><title>__close (58 samples, 0.01%)</title><rect x="80.7432%" y="773" width="0.0112%" height="15" fill="rgb(205,218,2)" fg:x="417908" fg:w="58"/><text x="80.9932%" y="783.50"></text></g><g><title>fileDescriptorClose (72 samples, 0.01%)</title><rect x="80.7428%" y="789" width="0.0139%" height="15" fill="rgb(212,207,28)" fg:x="417906" fg:w="72"/><text x="80.9928%" y="799.50"></text></g><g><title>do_filp_open (162 samples, 0.03%)</title><rect x="80.7745%" y="693" width="0.0313%" height="15" fill="rgb(224,12,41)" fg:x="418070" fg:w="162"/><text x="81.0245%" y="703.50"></text></g><g><title>path_openat (160 samples, 0.03%)</title><rect x="80.7748%" y="677" width="0.0309%" height="15" fill="rgb(216,118,12)" fg:x="418072" fg:w="160"/><text x="81.0248%" y="687.50"></text></g><g><title>do_syscall_64 (202 samples, 0.04%)</title><rect x="80.7710%" y="741" width="0.0390%" height="15" fill="rgb(252,97,46)" fg:x="418052" fg:w="202"/><text x="81.0210%" y="751.50"></text></g><g><title>__x64_sys_openat (201 samples, 0.04%)</title><rect x="80.7712%" y="725" width="0.0388%" height="15" fill="rgb(244,206,19)" fg:x="418053" fg:w="201"/><text x="81.0212%" y="735.50"></text></g><g><title>do_sys_openat2 (199 samples, 0.04%)</title><rect x="80.7716%" y="709" width="0.0384%" height="15" fill="rgb(231,84,31)" fg:x="418055" fg:w="199"/><text x="81.0216%" y="719.50"></text></g><g><title>__libc_open64 (209 samples, 0.04%)</title><rect x="80.7702%" y="773" width="0.0404%" height="15" fill="rgb(244,133,0)" fg:x="418048" fg:w="209"/><text x="81.0202%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (205 samples, 0.04%)</title><rect x="80.7710%" y="757" width="0.0396%" height="15" fill="rgb(223,15,50)" fg:x="418052" fg:w="205"/><text x="81.0210%" y="767.50"></text></g><g><title>fileOpen (297 samples, 0.06%)</title><rect x="80.7567%" y="789" width="0.0574%" height="15" fill="rgb(250,118,49)" fg:x="417978" fg:w="297"/><text x="81.0067%" y="799.50"></text></g><g><title>jni_IsAssignableFrom (63 samples, 0.01%)</title><rect x="80.8189%" y="789" width="0.0122%" height="15" fill="rgb(248,25,38)" fg:x="418300" fg:w="63"/><text x="81.0689%" y="799.50"></text></g><g><title>os::javaTimeNanos (57 samples, 0.01%)</title><rect x="80.8336%" y="789" width="0.0110%" height="15" fill="rgb(215,70,14)" fg:x="418376" fg:w="57"/><text x="81.0836%" y="799.50"></text></g><g><title>__GI___clock_gettime (53 samples, 0.01%)</title><rect x="80.8343%" y="773" width="0.0102%" height="15" fill="rgb(215,28,15)" fg:x="418380" fg:w="53"/><text x="81.0843%" y="783.50"></text></g><g><title>[perf-965379.map] (63,429 samples, 12.25%)</title><rect x="68.5904%" y="805" width="12.2550%" height="15" fill="rgb(243,6,28)" fg:x="355008" fg:w="63429"/><text x="68.8404%" y="815.50">[perf-965379.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (152 samples, 0.03%)</title><rect x="80.8894%" y="773" width="0.0294%" height="15" fill="rgb(222,130,1)" fg:x="418665" fg:w="152"/><text x="81.1394%" y="783.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (272 samples, 0.05%)</title><rect x="80.8693%" y="789" width="0.0526%" height="15" fill="rgb(236,166,44)" fg:x="418561" fg:w="272"/><text x="81.1193%" y="799.50"></text></g><g><title>SafepointSynchronize::block (65 samples, 0.01%)</title><rect x="80.9221%" y="773" width="0.0126%" height="15" fill="rgb(221,108,14)" fg:x="418834" fg:w="65"/><text x="81.1721%" y="783.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (68 samples, 0.01%)</title><rect x="80.9219%" y="789" width="0.0131%" height="15" fill="rgb(252,3,45)" fg:x="418833" fg:w="68"/><text x="81.1719%" y="799.50"></text></g><g><title>operator new (74 samples, 0.01%)</title><rect x="80.9454%" y="789" width="0.0143%" height="15" fill="rgb(237,68,30)" fg:x="418955" fg:w="74"/><text x="81.1954%" y="799.50"></text></g><g><title>copy_page_to_iter (136 samples, 0.03%)</title><rect x="80.9764%" y="629" width="0.0263%" height="15" fill="rgb(211,79,22)" fg:x="419115" fg:w="136"/><text x="81.2264%" y="639.50"></text></g><g><title>copy_user_enhanced_fast_string (124 samples, 0.02%)</title><rect x="80.9787%" y="613" width="0.0240%" height="15" fill="rgb(252,185,21)" fg:x="419127" fg:w="124"/><text x="81.2287%" y="623.50"></text></g><g><title>generic_file_buffered_read (229 samples, 0.04%)</title><rect x="80.9733%" y="645" width="0.0442%" height="15" fill="rgb(225,189,26)" fg:x="419099" fg:w="229"/><text x="81.2233%" y="655.50"></text></g><g><title>new_sync_read (237 samples, 0.05%)</title><rect x="80.9719%" y="661" width="0.0458%" height="15" fill="rgb(241,30,40)" fg:x="419092" fg:w="237"/><text x="81.2219%" y="671.50"></text></g><g><title>do_syscall_64 (283 samples, 0.05%)</title><rect x="80.9663%" y="709" width="0.0547%" height="15" fill="rgb(235,215,44)" fg:x="419063" fg:w="283"/><text x="81.2163%" y="719.50"></text></g><g><title>ksys_read (281 samples, 0.05%)</title><rect x="80.9667%" y="693" width="0.0543%" height="15" fill="rgb(205,8,29)" fg:x="419065" fg:w="281"/><text x="81.2167%" y="703.50"></text></g><g><title>vfs_read (263 samples, 0.05%)</title><rect x="80.9702%" y="677" width="0.0508%" height="15" fill="rgb(241,137,42)" fg:x="419083" fg:w="263"/><text x="81.2202%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (287 samples, 0.06%)</title><rect x="80.9659%" y="725" width="0.0555%" height="15" fill="rgb(237,155,2)" fg:x="419061" fg:w="287"/><text x="81.2159%" y="735.50"></text></g><g><title>__libc_read (306 samples, 0.06%)</title><rect x="80.9628%" y="757" width="0.0591%" height="15" fill="rgb(245,29,42)" fg:x="419045" fg:w="306"/><text x="81.2128%" y="767.50"></text></g><g><title>__libc_read (305 samples, 0.06%)</title><rect x="80.9630%" y="741" width="0.0589%" height="15" fill="rgb(234,101,35)" fg:x="419046" fg:w="305"/><text x="81.2130%" y="751.50"></text></g><g><title>handleRead (307 samples, 0.06%)</title><rect x="80.9628%" y="773" width="0.0593%" height="15" fill="rgb(228,64,37)" fg:x="419045" fg:w="307"/><text x="81.2128%" y="783.50"></text></g><g><title>readBytes (392 samples, 0.08%)</title><rect x="80.9599%" y="789" width="0.0757%" height="15" fill="rgb(217,214,36)" fg:x="419030" fg:w="392"/><text x="81.2099%" y="799.50"></text></g><g><title>[unknown] (1,011 samples, 0.20%)</title><rect x="80.8454%" y="805" width="0.1953%" height="15" fill="rgb(243,70,3)" fg:x="418437" fg:w="1011"/><text x="81.0954%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (102 samples, 0.02%)</title><rect x="81.0438%" y="741" width="0.0197%" height="15" fill="rgb(253,158,52)" fg:x="419464" fg:w="102"/><text x="81.2938%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (102 samples, 0.02%)</title><rect x="81.0438%" y="725" width="0.0197%" height="15" fill="rgb(234,111,54)" fg:x="419464" fg:w="102"/><text x="81.2938%" y="735.50"></text></g><g><title>native_write_msr (101 samples, 0.02%)</title><rect x="81.0440%" y="709" width="0.0195%" height="15" fill="rgb(217,70,32)" fg:x="419465" fg:w="101"/><text x="81.2940%" y="719.50"></text></g><g><title>schedule_tail (109 samples, 0.02%)</title><rect x="81.0432%" y="773" width="0.0211%" height="15" fill="rgb(234,18,33)" fg:x="419461" fg:w="109"/><text x="81.2932%" y="783.50"></text></g><g><title>finish_task_switch (108 samples, 0.02%)</title><rect x="81.0434%" y="757" width="0.0209%" height="15" fill="rgb(234,12,49)" fg:x="419462" fg:w="108"/><text x="81.2934%" y="767.50"></text></g><g><title>ret_from_fork (112 samples, 0.02%)</title><rect x="81.0428%" y="789" width="0.0216%" height="15" fill="rgb(236,10,21)" fg:x="419459" fg:w="112"/><text x="81.2928%" y="799.50"></text></g><g><title>__GI___clone (181 samples, 0.03%)</title><rect x="81.0407%" y="805" width="0.0350%" height="15" fill="rgb(248,182,45)" fg:x="419448" fg:w="181"/><text x="81.2907%" y="815.50"></text></g><g><title>start_thread (58 samples, 0.01%)</title><rect x="81.0645%" y="789" width="0.0112%" height="15" fill="rgb(217,95,36)" fg:x="419571" fg:w="58"/><text x="81.3145%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="81.0830%" y="805" width="0.0122%" height="15" fill="rgb(212,110,31)" fg:x="419667" fg:w="63"/><text x="81.3330%" y="815.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (93 samples, 0.02%)</title><rect x="81.0952%" y="805" width="0.0180%" height="15" fill="rgb(206,32,53)" fg:x="419730" fg:w="93"/><text x="81.3452%" y="815.50"></text></g><g><title>skyframe-evalua (265,352 samples, 51.27%)</title><rect x="29.8560%" y="821" width="51.2681%" height="15" fill="rgb(246,141,37)" fg:x="154528" fg:w="265352"/><text x="30.1060%" y="831.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (103 samples, 0.02%)</title><rect x="81.1431%" y="565" width="0.0199%" height="15" fill="rgb(219,16,7)" fg:x="419978" fg:w="103"/><text x="81.3931%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.02%)</title><rect x="81.1437%" y="549" width="0.0193%" height="15" fill="rgb(230,205,45)" fg:x="419981" fg:w="100"/><text x="81.3937%" y="559.50"></text></g><g><title>native_write_msr (100 samples, 0.02%)</title><rect x="81.1437%" y="533" width="0.0193%" height="15" fill="rgb(231,43,49)" fg:x="419981" fg:w="100"/><text x="81.3937%" y="543.50"></text></g><g><title>do_syscall_64 (111 samples, 0.02%)</title><rect x="81.1419%" y="693" width="0.0214%" height="15" fill="rgb(212,106,34)" fg:x="419972" fg:w="111"/><text x="81.3919%" y="703.50"></text></g><g><title>__x64_sys_futex (111 samples, 0.02%)</title><rect x="81.1419%" y="677" width="0.0214%" height="15" fill="rgb(206,83,17)" fg:x="419972" fg:w="111"/><text x="81.3919%" y="687.50"></text></g><g><title>do_futex (110 samples, 0.02%)</title><rect x="81.1421%" y="661" width="0.0213%" height="15" fill="rgb(244,154,49)" fg:x="419973" fg:w="110"/><text x="81.3921%" y="671.50"></text></g><g><title>futex_wait (110 samples, 0.02%)</title><rect x="81.1421%" y="645" width="0.0213%" height="15" fill="rgb(244,149,49)" fg:x="419973" fg:w="110"/><text x="81.3921%" y="655.50"></text></g><g><title>futex_wait_queue_me (110 samples, 0.02%)</title><rect x="81.1421%" y="629" width="0.0213%" height="15" fill="rgb(227,134,18)" fg:x="419973" fg:w="110"/><text x="81.3921%" y="639.50"></text></g><g><title>schedule (110 samples, 0.02%)</title><rect x="81.1421%" y="613" width="0.0213%" height="15" fill="rgb(237,116,36)" fg:x="419973" fg:w="110"/><text x="81.3921%" y="623.50"></text></g><g><title>__schedule (110 samples, 0.02%)</title><rect x="81.1421%" y="597" width="0.0213%" height="15" fill="rgb(205,129,40)" fg:x="419973" fg:w="110"/><text x="81.3921%" y="607.50"></text></g><g><title>finish_task_switch (108 samples, 0.02%)</title><rect x="81.1425%" y="581" width="0.0209%" height="15" fill="rgb(236,178,4)" fg:x="419975" fg:w="108"/><text x="81.3925%" y="591.50"></text></g><g><title>__pthread_cond_wait (114 samples, 0.02%)</title><rect x="81.1417%" y="757" width="0.0220%" height="15" fill="rgb(251,76,53)" fg:x="419971" fg:w="114"/><text x="81.3917%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (114 samples, 0.02%)</title><rect x="81.1417%" y="741" width="0.0220%" height="15" fill="rgb(242,92,40)" fg:x="419971" fg:w="114"/><text x="81.3917%" y="751.50"></text></g><g><title>futex_wait_cancelable (114 samples, 0.02%)</title><rect x="81.1417%" y="725" width="0.0220%" height="15" fill="rgb(209,45,30)" fg:x="419971" fg:w="114"/><text x="81.3917%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (113 samples, 0.02%)</title><rect x="81.1419%" y="709" width="0.0218%" height="15" fill="rgb(218,157,36)" fg:x="419972" fg:w="113"/><text x="81.3919%" y="719.50"></text></g><g><title>Parker::park (135 samples, 0.03%)</title><rect x="81.1387%" y="773" width="0.0261%" height="15" fill="rgb(222,186,16)" fg:x="419955" fg:w="135"/><text x="81.3887%" y="783.50"></text></g><g><title>Unsafe_Park (142 samples, 0.03%)</title><rect x="81.1387%" y="789" width="0.0274%" height="15" fill="rgb(254,72,35)" fg:x="419955" fg:w="142"/><text x="81.3887%" y="799.50"></text></g><g><title>[perf-965379.map] (213 samples, 0.04%)</title><rect x="81.1253%" y="805" width="0.0412%" height="15" fill="rgb(224,25,35)" fg:x="419886" fg:w="213"/><text x="81.3753%" y="815.50"></text></g><g><title>skyframe-invali (251 samples, 0.05%)</title><rect x="81.1242%" y="821" width="0.0485%" height="15" fill="rgb(206,135,52)" fg:x="419880" fg:w="251"/><text x="81.3742%" y="831.50"></text></g><g><title>[unknown] (99 samples, 0.02%)</title><rect x="81.1775%" y="805" width="0.0191%" height="15" fill="rgb(229,174,47)" fg:x="420156" fg:w="99"/><text x="81.4275%" y="815.50"></text></g><g><title>[zig] (99 samples, 0.02%)</title><rect x="81.1775%" y="789" width="0.0191%" height="15" fill="rgb(242,184,21)" fg:x="420156" fg:w="99"/><text x="81.4275%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (122 samples, 0.02%)</title><rect x="86.6263%" y="613" width="0.0236%" height="15" fill="rgb(213,22,45)" fg:x="448358" fg:w="122"/><text x="86.8763%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (118 samples, 0.02%)</title><rect x="86.6271%" y="597" width="0.0228%" height="15" fill="rgb(237,81,54)" fg:x="448362" fg:w="118"/><text x="86.8771%" y="607.50"></text></g><g><title>native_write_msr (117 samples, 0.02%)</title><rect x="86.6273%" y="581" width="0.0226%" height="15" fill="rgb(248,177,18)" fg:x="448363" fg:w="117"/><text x="86.8773%" y="591.50"></text></g><g><title>finish_task_switch (128 samples, 0.02%)</title><rect x="86.6258%" y="629" width="0.0247%" height="15" fill="rgb(254,31,16)" fg:x="448355" fg:w="128"/><text x="86.8758%" y="639.50"></text></g><g><title>wait_on_page_bit_common (154 samples, 0.03%)</title><rect x="86.6232%" y="693" width="0.0298%" height="15" fill="rgb(235,20,31)" fg:x="448342" fg:w="154"/><text x="86.8732%" y="703.50"></text></g><g><title>io_schedule (152 samples, 0.03%)</title><rect x="86.6236%" y="677" width="0.0294%" height="15" fill="rgb(240,56,43)" fg:x="448344" fg:w="152"/><text x="86.8736%" y="687.50"></text></g><g><title>schedule (152 samples, 0.03%)</title><rect x="86.6236%" y="661" width="0.0294%" height="15" fill="rgb(237,197,51)" fg:x="448344" fg:w="152"/><text x="86.8736%" y="671.50"></text></g><g><title>__schedule (152 samples, 0.03%)</title><rect x="86.6236%" y="645" width="0.0294%" height="15" fill="rgb(241,162,44)" fg:x="448344" fg:w="152"/><text x="86.8736%" y="655.50"></text></g><g><title>__do_fault (187 samples, 0.04%)</title><rect x="86.6205%" y="725" width="0.0361%" height="15" fill="rgb(224,23,20)" fg:x="448328" fg:w="187"/><text x="86.8705%" y="735.50"></text></g><g><title>filemap_fault (187 samples, 0.04%)</title><rect x="86.6205%" y="709" width="0.0361%" height="15" fill="rgb(250,109,34)" fg:x="448328" fg:w="187"/><text x="86.8705%" y="719.50"></text></g><g><title>kernel_init_free_pages (179 samples, 0.03%)</title><rect x="86.7023%" y="661" width="0.0346%" height="15" fill="rgb(214,175,50)" fg:x="448751" fg:w="179"/><text x="86.9523%" y="671.50"></text></g><g><title>clear_page_erms (173 samples, 0.03%)</title><rect x="86.7034%" y="645" width="0.0334%" height="15" fill="rgb(213,182,5)" fg:x="448757" fg:w="173"/><text x="86.9534%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (351 samples, 0.07%)</title><rect x="86.6692%" y="709" width="0.0678%" height="15" fill="rgb(209,199,19)" fg:x="448580" fg:w="351"/><text x="86.9192%" y="719.50"></text></g><g><title>get_page_from_freelist (307 samples, 0.06%)</title><rect x="86.6777%" y="693" width="0.0593%" height="15" fill="rgb(236,224,42)" fg:x="448624" fg:w="307"/><text x="86.9277%" y="703.50"></text></g><g><title>prep_new_page (197 samples, 0.04%)</title><rect x="86.6990%" y="677" width="0.0381%" height="15" fill="rgb(246,226,29)" fg:x="448734" fg:w="197"/><text x="86.9490%" y="687.50"></text></g><g><title>alloc_pages_vma (380 samples, 0.07%)</title><rect x="86.6650%" y="725" width="0.0734%" height="15" fill="rgb(227,223,11)" fg:x="448558" fg:w="380"/><text x="86.9150%" y="735.50"></text></g><g><title>do_huge_pmd_anonymous_page (62 samples, 0.01%)</title><rect x="86.7450%" y="725" width="0.0120%" height="15" fill="rgb(219,7,51)" fg:x="448972" fg:w="62"/><text x="86.9950%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (76 samples, 0.01%)</title><rect x="86.7879%" y="613" width="0.0147%" height="15" fill="rgb(245,167,10)" fg:x="449194" fg:w="76"/><text x="87.0379%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.01%)</title><rect x="86.7881%" y="597" width="0.0145%" height="15" fill="rgb(237,224,16)" fg:x="449195" fg:w="75"/><text x="87.0381%" y="607.50"></text></g><g><title>native_write_msr (75 samples, 0.01%)</title><rect x="86.7881%" y="581" width="0.0145%" height="15" fill="rgb(226,132,13)" fg:x="449195" fg:w="75"/><text x="87.0381%" y="591.50"></text></g><g><title>finish_task_switch (80 samples, 0.02%)</title><rect x="86.7875%" y="629" width="0.0155%" height="15" fill="rgb(214,140,3)" fg:x="449192" fg:w="80"/><text x="87.0375%" y="639.50"></text></g><g><title>do_page_mkwrite (249 samples, 0.05%)</title><rect x="86.7569%" y="725" width="0.0481%" height="15" fill="rgb(221,177,4)" fg:x="449034" fg:w="249"/><text x="87.0069%" y="735.50"></text></g><g><title>btrfs_page_mkwrite (249 samples, 0.05%)</title><rect x="86.7569%" y="709" width="0.0481%" height="15" fill="rgb(238,139,3)" fg:x="449034" fg:w="249"/><text x="87.0069%" y="719.50"></text></g><g><title>wait_on_page_bit_common (97 samples, 0.02%)</title><rect x="86.7863%" y="693" width="0.0187%" height="15" fill="rgb(216,17,39)" fg:x="449186" fg:w="97"/><text x="87.0363%" y="703.50"></text></g><g><title>io_schedule (97 samples, 0.02%)</title><rect x="86.7863%" y="677" width="0.0187%" height="15" fill="rgb(238,120,9)" fg:x="449186" fg:w="97"/><text x="87.0363%" y="687.50"></text></g><g><title>schedule (97 samples, 0.02%)</title><rect x="86.7863%" y="661" width="0.0187%" height="15" fill="rgb(244,92,53)" fg:x="449186" fg:w="97"/><text x="87.0363%" y="671.50"></text></g><g><title>__schedule (96 samples, 0.02%)</title><rect x="86.7865%" y="645" width="0.0185%" height="15" fill="rgb(224,148,33)" fg:x="449187" fg:w="96"/><text x="87.0365%" y="655.50"></text></g><g><title>page_add_file_rmap (146 samples, 0.03%)</title><rect x="86.9268%" y="693" width="0.0282%" height="15" fill="rgb(243,6,36)" fg:x="449913" fg:w="146"/><text x="87.1768%" y="703.50"></text></g><g><title>alloc_set_pte (236 samples, 0.05%)</title><rect x="86.9107%" y="709" width="0.0456%" height="15" fill="rgb(230,102,11)" fg:x="449830" fg:w="236"/><text x="87.1607%" y="719.50"></text></g><g><title>unlock_page (55 samples, 0.01%)</title><rect x="86.9563%" y="709" width="0.0106%" height="15" fill="rgb(234,148,36)" fg:x="450066" fg:w="55"/><text x="87.2063%" y="719.50"></text></g><g><title>filemap_map_pages (868 samples, 0.17%)</title><rect x="86.8095%" y="725" width="0.1677%" height="15" fill="rgb(251,153,25)" fg:x="449306" fg:w="868"/><text x="87.0595%" y="735.50"></text></g><g><title>xas_find (53 samples, 0.01%)</title><rect x="86.9670%" y="709" width="0.0102%" height="15" fill="rgb(215,129,8)" fg:x="450121" fg:w="53"/><text x="87.2170%" y="719.50"></text></g><g><title>__pagevec_lru_add_fn (83 samples, 0.02%)</title><rect x="86.9845%" y="693" width="0.0160%" height="15" fill="rgb(224,128,35)" fg:x="450212" fg:w="83"/><text x="87.2345%" y="703.50"></text></g><g><title>lru_cache_add (136 samples, 0.03%)</title><rect x="86.9782%" y="725" width="0.0263%" height="15" fill="rgb(237,56,52)" fg:x="450179" fg:w="136"/><text x="87.2282%" y="735.50"></text></g><g><title>pagevec_lru_move_fn (114 samples, 0.02%)</title><rect x="86.9824%" y="709" width="0.0220%" height="15" fill="rgb(234,213,19)" fg:x="450201" fg:w="114"/><text x="87.2324%" y="719.50"></text></g><g><title>mem_cgroup_charge (119 samples, 0.02%)</title><rect x="87.0048%" y="725" width="0.0230%" height="15" fill="rgb(252,82,23)" fg:x="450317" fg:w="119"/><text x="87.2548%" y="735.50"></text></g><g><title>handle_mm_fault (2,478 samples, 0.48%)</title><rect x="86.5719%" y="741" width="0.4788%" height="15" fill="rgb(254,201,21)" fg:x="448076" fg:w="2478"/><text x="86.8219%" y="751.50"></text></g><g><title>do_user_addr_fault (2,619 samples, 0.51%)</title><rect x="86.5498%" y="757" width="0.5060%" height="15" fill="rgb(250,186,11)" fg:x="447962" fg:w="2619"/><text x="86.7998%" y="767.50"></text></g><g><title>exc_page_fault (2,635 samples, 0.51%)</title><rect x="86.5471%" y="773" width="0.5091%" height="15" fill="rgb(211,174,5)" fg:x="447948" fg:w="2635"/><text x="86.7971%" y="783.50"></text></g><g><title>asm_exc_page_fault (2,668 samples, 0.52%)</title><rect x="86.5438%" y="789" width="0.5155%" height="15" fill="rgb(214,121,10)" fg:x="447931" fg:w="2668"/><text x="86.7938%" y="799.50"></text></g><g><title>rcu_core (84 samples, 0.02%)</title><rect x="87.0653%" y="693" width="0.0162%" height="15" fill="rgb(241,66,2)" fg:x="450630" fg:w="84"/><text x="87.3153%" y="703.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (118 samples, 0.02%)</title><rect x="87.0593%" y="789" width="0.0228%" height="15" fill="rgb(220,167,19)" fg:x="450599" fg:w="118"/><text x="87.3093%" y="799.50"></text></g><g><title>sysvec_apic_timer_interrupt (101 samples, 0.02%)</title><rect x="87.0626%" y="773" width="0.0195%" height="15" fill="rgb(231,54,50)" fg:x="450616" fg:w="101"/><text x="87.3126%" y="783.50"></text></g><g><title>irq_exit_rcu (88 samples, 0.02%)</title><rect x="87.0651%" y="757" width="0.0170%" height="15" fill="rgb(239,217,53)" fg:x="450629" fg:w="88"/><text x="87.3151%" y="767.50"></text></g><g><title>do_softirq_own_stack (88 samples, 0.02%)</title><rect x="87.0651%" y="741" width="0.0170%" height="15" fill="rgb(248,8,0)" fg:x="450629" fg:w="88"/><text x="87.3151%" y="751.50"></text></g><g><title>asm_call_sysvec_on_stack (88 samples, 0.02%)</title><rect x="87.0651%" y="725" width="0.0170%" height="15" fill="rgb(229,118,37)" fg:x="450629" fg:w="88"/><text x="87.3151%" y="735.50"></text></g><g><title>__softirqentry_text_start (87 samples, 0.02%)</title><rect x="87.0653%" y="709" width="0.0168%" height="15" fill="rgb(253,223,43)" fg:x="450630" fg:w="87"/><text x="87.3153%" y="719.50"></text></g><g><title>entry_SYSCALL_64 (1,364 samples, 0.26%)</title><rect x="87.0839%" y="789" width="0.2635%" height="15" fill="rgb(211,77,36)" fg:x="450726" fg:w="1364"/><text x="87.3339%" y="799.50"></text></g><g><title>copy_process (83 samples, 0.02%)</title><rect x="87.4564%" y="725" width="0.0160%" height="15" fill="rgb(219,3,53)" fg:x="452654" fg:w="83"/><text x="87.7064%" y="735.50"></text></g><g><title>__do_sys_clone (95 samples, 0.02%)</title><rect x="87.4564%" y="757" width="0.0184%" height="15" fill="rgb(244,45,42)" fg:x="452654" fg:w="95"/><text x="87.7064%" y="767.50"></text></g><g><title>kernel_clone (95 samples, 0.02%)</title><rect x="87.4564%" y="741" width="0.0184%" height="15" fill="rgb(225,95,27)" fg:x="452654" fg:w="95"/><text x="87.7064%" y="751.50"></text></g><g><title>_copy_to_user (195 samples, 0.04%)</title><rect x="87.4892%" y="725" width="0.0377%" height="15" fill="rgb(207,74,8)" fg:x="452824" fg:w="195"/><text x="87.7392%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (174 samples, 0.03%)</title><rect x="87.4933%" y="709" width="0.0336%" height="15" fill="rgb(243,63,36)" fg:x="452845" fg:w="174"/><text x="87.7433%" y="719.50"></text></g><g><title>cp_new_stat (316 samples, 0.06%)</title><rect x="87.4772%" y="741" width="0.0611%" height="15" fill="rgb(211,180,12)" fg:x="452762" fg:w="316"/><text x="87.7272%" y="751.50"></text></g><g><title>__fget_light (100 samples, 0.02%)</title><rect x="87.5418%" y="725" width="0.0193%" height="15" fill="rgb(254,166,49)" fg:x="453096" fg:w="100"/><text x="87.7918%" y="735.50"></text></g><g><title>__fget_files (90 samples, 0.02%)</title><rect x="87.5437%" y="709" width="0.0174%" height="15" fill="rgb(205,19,0)" fg:x="453106" fg:w="90"/><text x="87.7937%" y="719.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="87.6430%" y="709" width="0.0193%" height="15" fill="rgb(224,172,32)" fg:x="453620" fg:w="100"/><text x="87.8930%" y="719.50"></text></g><g><title>btrfs_getattr (652 samples, 0.13%)</title><rect x="87.5611%" y="725" width="0.1260%" height="15" fill="rgb(254,136,30)" fg:x="453196" fg:w="652"/><text x="87.8111%" y="735.50"></text></g><g><title>inode_get_bytes (87 samples, 0.02%)</title><rect x="87.6702%" y="709" width="0.0168%" height="15" fill="rgb(246,19,35)" fg:x="453761" fg:w="87"/><text x="87.9202%" y="719.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="87.6737%" y="693" width="0.0133%" height="15" fill="rgb(219,24,36)" fg:x="453779" fg:w="69"/><text x="87.9237%" y="703.50"></text></g><g><title>fput_many (54 samples, 0.01%)</title><rect x="87.6874%" y="725" width="0.0104%" height="15" fill="rgb(251,55,1)" fg:x="453850" fg:w="54"/><text x="87.9374%" y="735.50"></text></g><g><title>security_inode_getattr (235 samples, 0.05%)</title><rect x="87.6979%" y="725" width="0.0454%" height="15" fill="rgb(218,117,39)" fg:x="453904" fg:w="235"/><text x="87.9479%" y="735.50"></text></g><g><title>tomoyo_path_perm (190 samples, 0.04%)</title><rect x="87.7066%" y="709" width="0.0367%" height="15" fill="rgb(248,169,11)" fg:x="453949" fg:w="190"/><text x="87.9566%" y="719.50"></text></g><g><title>tomoyo_init_request_info (82 samples, 0.02%)</title><rect x="87.7274%" y="693" width="0.0158%" height="15" fill="rgb(244,40,44)" fg:x="454057" fg:w="82"/><text x="87.9774%" y="703.50"></text></g><g><title>__do_sys_newfstat (1,496 samples, 0.29%)</title><rect x="87.4747%" y="757" width="0.2890%" height="15" fill="rgb(234,62,37)" fg:x="452749" fg:w="1496"/><text x="87.7247%" y="767.50"></text></g><g><title>vfs_fstat (1,167 samples, 0.23%)</title><rect x="87.5383%" y="741" width="0.2255%" height="15" fill="rgb(207,117,42)" fg:x="453078" fg:w="1167"/><text x="87.7883%" y="751.50"></text></g><g><title>vfs_getattr_nosec (106 samples, 0.02%)</title><rect x="87.7433%" y="725" width="0.0205%" height="15" fill="rgb(213,43,2)" fg:x="454139" fg:w="106"/><text x="87.9933%" y="735.50"></text></g><g><title>__close_fd (87 samples, 0.02%)</title><rect x="87.7695%" y="741" width="0.0168%" height="15" fill="rgb(244,202,51)" fg:x="454275" fg:w="87"/><text x="88.0195%" y="751.50"></text></g><g><title>pick_file (84 samples, 0.02%)</title><rect x="87.7701%" y="725" width="0.0162%" height="15" fill="rgb(253,174,46)" fg:x="454278" fg:w="84"/><text x="88.0201%" y="735.50"></text></g><g><title>fput_many (205 samples, 0.04%)</title><rect x="87.7906%" y="725" width="0.0396%" height="15" fill="rgb(251,23,1)" fg:x="454384" fg:w="205"/><text x="88.0406%" y="735.50"></text></g><g><title>task_work_add (130 samples, 0.03%)</title><rect x="87.8051%" y="709" width="0.0251%" height="15" fill="rgb(253,26,1)" fg:x="454459" fg:w="130"/><text x="88.0551%" y="719.50"></text></g><g><title>__x64_sys_close (336 samples, 0.06%)</title><rect x="87.7678%" y="757" width="0.0649%" height="15" fill="rgb(216,89,31)" fg:x="454266" fg:w="336"/><text x="88.0178%" y="767.50"></text></g><g><title>filp_close (240 samples, 0.05%)</title><rect x="87.7864%" y="741" width="0.0464%" height="15" fill="rgb(209,109,5)" fg:x="454362" fg:w="240"/><text x="88.0364%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (120 samples, 0.02%)</title><rect x="87.8374%" y="629" width="0.0232%" height="15" fill="rgb(229,63,13)" fg:x="454626" fg:w="120"/><text x="88.0874%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (118 samples, 0.02%)</title><rect x="87.8378%" y="613" width="0.0228%" height="15" fill="rgb(238,137,54)" fg:x="454628" fg:w="118"/><text x="88.0878%" y="623.50"></text></g><g><title>native_write_msr (115 samples, 0.02%)</title><rect x="87.8383%" y="597" width="0.0222%" height="15" fill="rgb(228,1,9)" fg:x="454631" fg:w="115"/><text x="88.0883%" y="607.50"></text></g><g><title>schedule (125 samples, 0.02%)</title><rect x="87.8368%" y="677" width="0.0242%" height="15" fill="rgb(249,120,48)" fg:x="454623" fg:w="125"/><text x="88.0868%" y="687.50"></text></g><g><title>__schedule (124 samples, 0.02%)</title><rect x="87.8370%" y="661" width="0.0240%" height="15" fill="rgb(209,72,36)" fg:x="454624" fg:w="124"/><text x="88.0870%" y="671.50"></text></g><g><title>finish_task_switch (123 samples, 0.02%)</title><rect x="87.8372%" y="645" width="0.0238%" height="15" fill="rgb(247,98,49)" fg:x="454625" fg:w="123"/><text x="88.0872%" y="655.50"></text></g><g><title>begin_new_exec (152 samples, 0.03%)</title><rect x="87.8350%" y="693" width="0.0294%" height="15" fill="rgb(233,75,36)" fg:x="454614" fg:w="152"/><text x="88.0850%" y="703.50"></text></g><g><title>load_elf_binary (158 samples, 0.03%)</title><rect x="87.8345%" y="709" width="0.0305%" height="15" fill="rgb(225,14,24)" fg:x="454611" fg:w="158"/><text x="88.0845%" y="719.50"></text></g><g><title>bprm_execve (215 samples, 0.04%)</title><rect x="87.8333%" y="725" width="0.0415%" height="15" fill="rgb(237,193,20)" fg:x="454605" fg:w="215"/><text x="88.0833%" y="735.50"></text></g><g><title>__x64_sys_execve (246 samples, 0.05%)</title><rect x="87.8333%" y="757" width="0.0475%" height="15" fill="rgb(239,122,19)" fg:x="454605" fg:w="246"/><text x="88.0833%" y="767.50"></text></g><g><title>do_execveat_common (246 samples, 0.05%)</title><rect x="87.8333%" y="741" width="0.0475%" height="15" fill="rgb(231,220,10)" fg:x="454605" fg:w="246"/><text x="88.0833%" y="751.50"></text></g><g><title>__perf_event_task_sched_out (53 samples, 0.01%)</title><rect x="87.9749%" y="661" width="0.0102%" height="15" fill="rgb(220,66,15)" fg:x="455338" fg:w="53"/><text x="88.2249%" y="671.50"></text></g><g><title>update_curr (145 samples, 0.03%)</title><rect x="88.0240%" y="629" width="0.0280%" height="15" fill="rgb(215,171,52)" fg:x="455592" fg:w="145"/><text x="88.2740%" y="639.50"></text></g><g><title>dequeue_entity (406 samples, 0.08%)</title><rect x="88.0014%" y="645" width="0.0784%" height="15" fill="rgb(241,169,50)" fg:x="455475" fg:w="406"/><text x="88.2514%" y="655.50"></text></g><g><title>update_load_avg (144 samples, 0.03%)</title><rect x="88.0520%" y="629" width="0.0278%" height="15" fill="rgb(236,189,0)" fg:x="455737" fg:w="144"/><text x="88.3020%" y="639.50"></text></g><g><title>dequeue_task_fair (471 samples, 0.09%)</title><rect x="87.9914%" y="661" width="0.0910%" height="15" fill="rgb(217,147,20)" fg:x="455423" fg:w="471"/><text x="88.2414%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (13,324 samples, 2.57%)</title><rect x="88.1436%" y="645" width="2.5743%" height="15" fill="rgb(206,188,39)" fg:x="456211" fg:w="13324"/><text x="88.3936%" y="655.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (13,164 samples, 2.54%)</title><rect x="88.1745%" y="629" width="2.5434%" height="15" fill="rgb(227,118,25)" fg:x="456371" fg:w="13164"/><text x="88.4245%" y="639.50">__..</text></g><g><title>native_write_msr (13,083 samples, 2.53%)</title><rect x="88.1902%" y="613" width="2.5277%" height="15" fill="rgb(248,171,40)" fg:x="456452" fg:w="13083"/><text x="88.4402%" y="623.50">na..</text></g><g><title>__wake_up_common (94 samples, 0.02%)</title><rect x="90.7492%" y="485" width="0.0182%" height="15" fill="rgb(251,90,54)" fg:x="469697" fg:w="94"/><text x="90.9992%" y="495.50"></text></g><g><title>pollwake (92 samples, 0.02%)</title><rect x="90.7496%" y="469" width="0.0178%" height="15" fill="rgb(234,11,46)" fg:x="469699" fg:w="92"/><text x="90.9996%" y="479.50"></text></g><g><title>try_to_wake_up (87 samples, 0.02%)</title><rect x="90.7506%" y="453" width="0.0168%" height="15" fill="rgb(229,134,13)" fg:x="469704" fg:w="87"/><text x="91.0006%" y="463.50"></text></g><g><title>irq_work_run (128 samples, 0.02%)</title><rect x="90.7440%" y="581" width="0.0247%" height="15" fill="rgb(223,129,3)" fg:x="469670" fg:w="128"/><text x="90.9940%" y="591.50"></text></g><g><title>irq_work_run_list (127 samples, 0.02%)</title><rect x="90.7442%" y="565" width="0.0245%" height="15" fill="rgb(221,124,13)" fg:x="469671" fg:w="127"/><text x="90.9942%" y="575.50"></text></g><g><title>irq_work_single (121 samples, 0.02%)</title><rect x="90.7453%" y="549" width="0.0234%" height="15" fill="rgb(234,3,18)" fg:x="469677" fg:w="121"/><text x="90.9953%" y="559.50"></text></g><g><title>perf_pending_event (119 samples, 0.02%)</title><rect x="90.7457%" y="533" width="0.0230%" height="15" fill="rgb(249,199,20)" fg:x="469679" fg:w="119"/><text x="90.9957%" y="543.50"></text></g><g><title>perf_event_wakeup (108 samples, 0.02%)</title><rect x="90.7479%" y="517" width="0.0209%" height="15" fill="rgb(224,134,6)" fg:x="469690" fg:w="108"/><text x="90.9979%" y="527.50"></text></g><g><title>__wake_up_common_lock (104 samples, 0.02%)</title><rect x="90.7486%" y="501" width="0.0201%" height="15" fill="rgb(254,83,26)" fg:x="469694" fg:w="104"/><text x="90.9986%" y="511.50"></text></g><g><title>asm_call_sysvec_on_stack (144 samples, 0.03%)</title><rect x="90.7421%" y="613" width="0.0278%" height="15" fill="rgb(217,88,9)" fg:x="469660" fg:w="144"/><text x="90.9921%" y="623.50"></text></g><g><title>__sysvec_irq_work (135 samples, 0.03%)</title><rect x="90.7438%" y="597" width="0.0261%" height="15" fill="rgb(225,73,2)" fg:x="469669" fg:w="135"/><text x="90.9938%" y="607.50"></text></g><g><title>asm_sysvec_irq_work (215 samples, 0.04%)</title><rect x="90.7297%" y="645" width="0.0415%" height="15" fill="rgb(226,44,39)" fg:x="469596" fg:w="215"/><text x="90.9797%" y="655.50"></text></g><g><title>sysvec_irq_work (154 samples, 0.03%)</title><rect x="90.7415%" y="629" width="0.0298%" height="15" fill="rgb(228,53,17)" fg:x="469657" fg:w="154"/><text x="90.9915%" y="639.50"></text></g><g><title>finish_task_switch (13,976 samples, 2.70%)</title><rect x="88.0824%" y="661" width="2.7003%" height="15" fill="rgb(212,27,27)" fg:x="455894" fg:w="13976"/><text x="88.3324%" y="671.50">fi..</text></g><g><title>load_balance (54 samples, 0.01%)</title><rect x="90.7944%" y="629" width="0.0104%" height="15" fill="rgb(241,50,6)" fg:x="469931" fg:w="54"/><text x="91.0444%" y="639.50"></text></g><g><title>newidle_balance (111 samples, 0.02%)</title><rect x="90.7857%" y="645" width="0.0214%" height="15" fill="rgb(225,28,51)" fg:x="469886" fg:w="111"/><text x="91.0357%" y="655.50"></text></g><g><title>pick_next_task_fair (133 samples, 0.03%)</title><rect x="90.7828%" y="661" width="0.0257%" height="15" fill="rgb(215,33,16)" fg:x="469871" fg:w="133"/><text x="91.0328%" y="671.50"></text></g><g><title>__update_idle_core (56 samples, 0.01%)</title><rect x="90.8095%" y="645" width="0.0108%" height="15" fill="rgb(243,40,39)" fg:x="470009" fg:w="56"/><text x="91.0595%" y="655.50"></text></g><g><title>pick_next_task_idle (63 samples, 0.01%)</title><rect x="90.8085%" y="661" width="0.0122%" height="15" fill="rgb(225,11,42)" fg:x="470004" fg:w="63"/><text x="91.0585%" y="671.50"></text></g><g><title>psi_task_change (320 samples, 0.06%)</title><rect x="90.8207%" y="661" width="0.0618%" height="15" fill="rgb(241,220,38)" fg:x="470067" fg:w="320"/><text x="91.0707%" y="671.50"></text></g><g><title>psi_group_change (252 samples, 0.05%)</title><rect x="90.8338%" y="645" width="0.0487%" height="15" fill="rgb(244,52,35)" fg:x="470135" fg:w="252"/><text x="91.0838%" y="655.50"></text></g><g><title>record_times (59 samples, 0.01%)</title><rect x="90.8711%" y="629" width="0.0114%" height="15" fill="rgb(246,42,46)" fg:x="470328" fg:w="59"/><text x="91.1211%" y="639.50"></text></g><g><title>__schedule (15,230 samples, 2.94%)</title><rect x="87.9535%" y="677" width="2.9426%" height="15" fill="rgb(205,184,13)" fg:x="455227" fg:w="15230"/><text x="88.2035%" y="687.50">__..</text></g><g><title>futex_wait_queue_me (15,407 samples, 2.98%)</title><rect x="87.9195%" y="709" width="2.9768%" height="15" fill="rgb(209,48,36)" fg:x="455051" fg:w="15407"/><text x="88.1695%" y="719.50">fut..</text></g><g><title>schedule (15,274 samples, 2.95%)</title><rect x="87.9452%" y="693" width="2.9511%" height="15" fill="rgb(244,34,51)" fg:x="455184" fg:w="15274"/><text x="88.1952%" y="703.50">sch..</text></g><g><title>futex_wait (15,641 samples, 3.02%)</title><rect x="87.9038%" y="725" width="3.0220%" height="15" fill="rgb(221,107,33)" fg:x="454970" fg:w="15641"/><text x="88.1538%" y="735.50">fut..</text></g><g><title>futex_wait_setup (153 samples, 0.03%)</title><rect x="90.8962%" y="709" width="0.0296%" height="15" fill="rgb(224,203,12)" fg:x="470458" fg:w="153"/><text x="91.1462%" y="719.50"></text></g><g><title>select_task_rq_fair (60 samples, 0.01%)</title><rect x="90.9559%" y="677" width="0.0116%" height="15" fill="rgb(230,215,18)" fg:x="470767" fg:w="60"/><text x="91.2059%" y="687.50"></text></g><g><title>enqueue_task_fair (85 samples, 0.02%)</title><rect x="90.9697%" y="661" width="0.0164%" height="15" fill="rgb(206,185,35)" fg:x="470838" fg:w="85"/><text x="91.2197%" y="671.50"></text></g><g><title>enqueue_entity (73 samples, 0.01%)</title><rect x="90.9720%" y="645" width="0.0141%" height="15" fill="rgb(228,140,34)" fg:x="470850" fg:w="73"/><text x="91.2220%" y="655.50"></text></g><g><title>ttwu_do_activate (176 samples, 0.03%)</title><rect x="90.9689%" y="677" width="0.0340%" height="15" fill="rgb(208,93,13)" fg:x="470834" fg:w="176"/><text x="91.2189%" y="687.50"></text></g><g><title>psi_task_change (87 samples, 0.02%)</title><rect x="90.9861%" y="661" width="0.0168%" height="15" fill="rgb(221,193,39)" fg:x="470923" fg:w="87"/><text x="91.2361%" y="671.50"></text></g><g><title>psi_group_change (80 samples, 0.02%)</title><rect x="90.9874%" y="645" width="0.0155%" height="15" fill="rgb(241,132,34)" fg:x="470930" fg:w="80"/><text x="91.2374%" y="655.50"></text></g><g><title>__x64_sys_futex (16,147 samples, 3.12%)</title><rect x="87.8886%" y="757" width="3.1197%" height="15" fill="rgb(221,141,10)" fg:x="454891" fg:w="16147"/><text x="88.1386%" y="767.50">__x..</text></g><g><title>do_futex (16,114 samples, 3.11%)</title><rect x="87.8949%" y="741" width="3.1134%" height="15" fill="rgb(226,90,31)" fg:x="454924" fg:w="16114"/><text x="88.1449%" y="751.50">do_..</text></g><g><title>futex_wake (427 samples, 0.08%)</title><rect x="90.9258%" y="725" width="0.0825%" height="15" fill="rgb(243,75,5)" fg:x="470611" fg:w="427"/><text x="91.1758%" y="735.50"></text></g><g><title>wake_up_q (343 samples, 0.07%)</title><rect x="90.9420%" y="709" width="0.0663%" height="15" fill="rgb(227,156,21)" fg:x="470695" fg:w="343"/><text x="91.1920%" y="719.50"></text></g><g><title>try_to_wake_up (334 samples, 0.06%)</title><rect x="90.9438%" y="693" width="0.0645%" height="15" fill="rgb(250,195,8)" fg:x="470704" fg:w="334"/><text x="91.1938%" y="703.50"></text></g><g><title>__split_vma (64 samples, 0.01%)</title><rect x="91.0185%" y="709" width="0.0124%" height="15" fill="rgb(220,134,5)" fg:x="471091" fg:w="64"/><text x="91.2685%" y="719.50"></text></g><g><title>flush_tlb_mm_range (59 samples, 0.01%)</title><rect x="91.0467%" y="677" width="0.0114%" height="15" fill="rgb(246,106,34)" fg:x="471237" fg:w="59"/><text x="91.2967%" y="687.50"></text></g><g><title>free_unref_page_list (64 samples, 0.01%)</title><rect x="91.0719%" y="661" width="0.0124%" height="15" fill="rgb(205,1,4)" fg:x="471367" fg:w="64"/><text x="91.3219%" y="671.50"></text></g><g><title>tlb_finish_mmu (219 samples, 0.04%)</title><rect x="91.0465%" y="693" width="0.0423%" height="15" fill="rgb(224,151,29)" fg:x="471236" fg:w="219"/><text x="91.2965%" y="703.50"></text></g><g><title>release_pages (151 samples, 0.03%)</title><rect x="91.0597%" y="677" width="0.0292%" height="15" fill="rgb(251,196,0)" fg:x="471304" fg:w="151"/><text x="91.3097%" y="687.50"></text></g><g><title>unmap_region (393 samples, 0.08%)</title><rect x="91.0352%" y="709" width="0.0759%" height="15" fill="rgb(212,127,0)" fg:x="471177" fg:w="393"/><text x="91.2852%" y="719.50"></text></g><g><title>unmap_vmas (114 samples, 0.02%)</title><rect x="91.0891%" y="693" width="0.0220%" height="15" fill="rgb(236,71,53)" fg:x="471456" fg:w="114"/><text x="91.3391%" y="703.50"></text></g><g><title>unmap_page_range (112 samples, 0.02%)</title><rect x="91.0894%" y="677" width="0.0216%" height="15" fill="rgb(227,99,0)" fg:x="471458" fg:w="112"/><text x="91.3394%" y="687.50"></text></g><g><title>__do_munmap (487 samples, 0.09%)</title><rect x="91.0174%" y="725" width="0.0941%" height="15" fill="rgb(239,89,21)" fg:x="471085" fg:w="487"/><text x="91.2674%" y="735.50"></text></g><g><title>__vm_munmap (490 samples, 0.09%)</title><rect x="91.0174%" y="741" width="0.0947%" height="15" fill="rgb(243,122,19)" fg:x="471085" fg:w="490"/><text x="91.2674%" y="751.50"></text></g><g><title>__x64_sys_munmap (494 samples, 0.10%)</title><rect x="91.0172%" y="757" width="0.0954%" height="15" fill="rgb(229,192,45)" fg:x="471084" fg:w="494"/><text x="91.2672%" y="767.50"></text></g><g><title>do_filp_open (128 samples, 0.02%)</title><rect x="91.1136%" y="725" width="0.0247%" height="15" fill="rgb(235,165,35)" fg:x="471583" fg:w="128"/><text x="91.3636%" y="735.50"></text></g><g><title>path_openat (127 samples, 0.02%)</title><rect x="91.1138%" y="709" width="0.0245%" height="15" fill="rgb(253,202,0)" fg:x="471584" fg:w="127"/><text x="91.3638%" y="719.50"></text></g><g><title>__x64_sys_open (138 samples, 0.03%)</title><rect x="91.1132%" y="757" width="0.0267%" height="15" fill="rgb(235,51,20)" fg:x="471581" fg:w="138"/><text x="91.3632%" y="767.50"></text></g><g><title>do_sys_openat2 (138 samples, 0.03%)</title><rect x="91.1132%" y="741" width="0.0267%" height="15" fill="rgb(218,95,46)" fg:x="471581" fg:w="138"/><text x="91.3632%" y="751.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="91.1727%" y="709" width="0.0102%" height="15" fill="rgb(212,81,10)" fg:x="471889" fg:w="53"/><text x="91.4227%" y="719.50"></text></g><g><title>__alloc_fd (189 samples, 0.04%)</title><rect x="91.1532%" y="725" width="0.0365%" height="15" fill="rgb(240,59,0)" fg:x="471788" fg:w="189"/><text x="91.4032%" y="735.50"></text></g><g><title>__fd_install (64 samples, 0.01%)</title><rect x="91.1897%" y="725" width="0.0124%" height="15" fill="rgb(212,191,42)" fg:x="471977" fg:w="64"/><text x="91.4397%" y="735.50"></text></g><g><title>build_open_flags (61 samples, 0.01%)</title><rect x="91.2092%" y="725" width="0.0118%" height="15" fill="rgb(233,140,3)" fg:x="472078" fg:w="61"/><text x="91.4592%" y="735.50"></text></g><g><title>__slab_alloc (159 samples, 0.03%)</title><rect x="91.3217%" y="645" width="0.0307%" height="15" fill="rgb(215,69,23)" fg:x="472660" fg:w="159"/><text x="91.5717%" y="655.50"></text></g><g><title>___slab_alloc (148 samples, 0.03%)</title><rect x="91.3238%" y="629" width="0.0286%" height="15" fill="rgb(240,202,20)" fg:x="472671" fg:w="148"/><text x="91.5738%" y="639.50"></text></g><g><title>__mod_memcg_lruvec_state (86 samples, 0.02%)</title><rect x="91.4131%" y="629" width="0.0166%" height="15" fill="rgb(209,146,50)" fg:x="473133" fg:w="86"/><text x="91.6631%" y="639.50"></text></g><g><title>__mod_memcg_state.part.0 (57 samples, 0.01%)</title><rect x="91.4187%" y="613" width="0.0110%" height="15" fill="rgb(253,102,54)" fg:x="473162" fg:w="57"/><text x="91.6687%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (423 samples, 0.08%)</title><rect x="91.3528%" y="645" width="0.0817%" height="15" fill="rgb(250,173,47)" fg:x="472821" fg:w="423"/><text x="91.6028%" y="655.50"></text></g><g><title>memset_erms (74 samples, 0.01%)</title><rect x="91.4345%" y="645" width="0.0143%" height="15" fill="rgb(232,142,7)" fg:x="473244" fg:w="74"/><text x="91.6845%" y="655.50"></text></g><g><title>get_obj_cgroup_from_current (249 samples, 0.05%)</title><rect x="91.4583%" y="629" width="0.0481%" height="15" fill="rgb(230,157,47)" fg:x="473367" fg:w="249"/><text x="91.7083%" y="639.50"></text></g><g><title>obj_cgroup_charge (121 samples, 0.02%)</title><rect x="91.5064%" y="629" width="0.0234%" height="15" fill="rgb(214,177,35)" fg:x="473616" fg:w="121"/><text x="91.7564%" y="639.50"></text></g><g><title>kmem_cache_alloc (1,265 samples, 0.24%)</title><rect x="91.2857%" y="661" width="0.2444%" height="15" fill="rgb(234,119,46)" fg:x="472474" fg:w="1265"/><text x="91.5357%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (416 samples, 0.08%)</title><rect x="91.4498%" y="645" width="0.0804%" height="15" fill="rgb(241,180,50)" fg:x="473323" fg:w="416"/><text x="91.6998%" y="655.50"></text></g><g><title>apparmor_file_alloc_security (146 samples, 0.03%)</title><rect x="91.5350%" y="645" width="0.0282%" height="15" fill="rgb(221,54,25)" fg:x="473764" fg:w="146"/><text x="91.7850%" y="655.50"></text></g><g><title>memset_erms (67 samples, 0.01%)</title><rect x="91.5841%" y="629" width="0.0129%" height="15" fill="rgb(209,157,44)" fg:x="474018" fg:w="67"/><text x="91.8341%" y="639.50"></text></g><g><title>__alloc_file (1,761 samples, 0.34%)</title><rect x="91.2629%" y="677" width="0.3402%" height="15" fill="rgb(246,115,41)" fg:x="472356" fg:w="1761"/><text x="91.5129%" y="687.50"></text></g><g><title>security_file_alloc (378 samples, 0.07%)</title><rect x="91.5301%" y="661" width="0.0730%" height="15" fill="rgb(229,86,1)" fg:x="473739" fg:w="378"/><text x="91.7801%" y="671.50"></text></g><g><title>kmem_cache_alloc (207 samples, 0.04%)</title><rect x="91.5632%" y="645" width="0.0400%" height="15" fill="rgb(240,108,53)" fg:x="473910" fg:w="207"/><text x="91.8132%" y="655.50"></text></g><g><title>alloc_empty_file (1,796 samples, 0.35%)</title><rect x="91.2583%" y="693" width="0.3470%" height="15" fill="rgb(227,134,2)" fg:x="472332" fg:w="1796"/><text x="91.5083%" y="703.50"></text></g><g><title>errseq_sample (84 samples, 0.02%)</title><rect x="91.6610%" y="677" width="0.0162%" height="15" fill="rgb(213,129,25)" fg:x="474416" fg:w="84"/><text x="91.9110%" y="687.50"></text></g><g><title>lockref_get (86 samples, 0.02%)</title><rect x="91.6801%" y="677" width="0.0166%" height="15" fill="rgb(226,35,21)" fg:x="474515" fg:w="86"/><text x="91.9301%" y="687.50"></text></g><g><title>apparmor_file_open (123 samples, 0.02%)</title><rect x="91.7033%" y="661" width="0.0238%" height="15" fill="rgb(208,129,26)" fg:x="474635" fg:w="123"/><text x="91.9533%" y="671.50"></text></g><g><title>__srcu_read_lock (60 samples, 0.01%)</title><rect x="91.7421%" y="645" width="0.0116%" height="15" fill="rgb(224,83,6)" fg:x="474836" fg:w="60"/><text x="91.9921%" y="655.50"></text></g><g><title>__srcu_read_unlock (64 samples, 0.01%)</title><rect x="91.7537%" y="645" width="0.0124%" height="15" fill="rgb(227,52,39)" fg:x="474896" fg:w="64"/><text x="92.0037%" y="655.50"></text></g><g><title>tomoyo_check_open_permission (286 samples, 0.06%)</title><rect x="91.7270%" y="661" width="0.0553%" height="15" fill="rgb(241,30,17)" fg:x="474758" fg:w="286"/><text x="91.9770%" y="671.50"></text></g><g><title>tomoyo_init_request_info (67 samples, 0.01%)</title><rect x="91.7693%" y="645" width="0.0129%" height="15" fill="rgb(246,186,42)" fg:x="474977" fg:w="67"/><text x="92.0193%" y="655.50"></text></g><g><title>security_file_open (449 samples, 0.09%)</title><rect x="91.6980%" y="677" width="0.0868%" height="15" fill="rgb(221,169,15)" fg:x="474608" fg:w="449"/><text x="91.9480%" y="687.50"></text></g><g><title>do_dentry_open (928 samples, 0.18%)</title><rect x="91.6067%" y="693" width="0.1793%" height="15" fill="rgb(235,108,21)" fg:x="474135" fg:w="928"/><text x="91.8567%" y="703.50"></text></g><g><title>btrfs_dentry_delete (67 samples, 0.01%)</title><rect x="91.7943%" y="677" width="0.0129%" height="15" fill="rgb(219,148,30)" fg:x="475106" fg:w="67"/><text x="92.0443%" y="687.50"></text></g><g><title>lockref_put_or_lock (80 samples, 0.02%)</title><rect x="91.8072%" y="677" width="0.0155%" height="15" fill="rgb(220,109,5)" fg:x="475173" fg:w="80"/><text x="92.0572%" y="687.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="91.8093%" y="661" width="0.0133%" height="15" fill="rgb(213,203,48)" fg:x="475184" fg:w="69"/><text x="92.0593%" y="671.50"></text></g><g><title>dput (183 samples, 0.04%)</title><rect x="91.7877%" y="693" width="0.0354%" height="15" fill="rgb(244,71,33)" fg:x="475072" fg:w="183"/><text x="92.0377%" y="703.50"></text></g><g><title>btrfs_permission (107 samples, 0.02%)</title><rect x="92.3047%" y="661" width="0.0207%" height="15" fill="rgb(209,23,2)" fg:x="477748" fg:w="107"/><text x="92.5547%" y="671.50"></text></g><g><title>inode_permission.part.0 (1,532 samples, 0.30%)</title><rect x="92.1515%" y="677" width="0.2960%" height="15" fill="rgb(219,97,7)" fg:x="476955" fg:w="1532"/><text x="92.4015%" y="687.50"></text></g><g><title>generic_permission (632 samples, 0.12%)</title><rect x="92.3254%" y="661" width="0.1221%" height="15" fill="rgb(216,161,23)" fg:x="477855" fg:w="632"/><text x="92.5754%" y="671.50"></text></g><g><title>security_inode_permission (208 samples, 0.04%)</title><rect x="92.4475%" y="677" width="0.0402%" height="15" fill="rgb(207,45,42)" fg:x="478487" fg:w="208"/><text x="92.6975%" y="687.50"></text></g><g><title>lockref_put_or_lock (92 samples, 0.02%)</title><rect x="92.6206%" y="645" width="0.0178%" height="15" fill="rgb(241,61,4)" fg:x="479383" fg:w="92"/><text x="92.8706%" y="655.50"></text></g><g><title>_raw_spin_lock (76 samples, 0.01%)</title><rect x="92.6237%" y="629" width="0.0147%" height="15" fill="rgb(236,170,1)" fg:x="479399" fg:w="76"/><text x="92.8737%" y="639.50"></text></g><g><title>dput (153 samples, 0.03%)</title><rect x="92.6090%" y="661" width="0.0296%" height="15" fill="rgb(239,72,5)" fg:x="479323" fg:w="153"/><text x="92.8590%" y="671.50"></text></g><g><title>_raw_spin_lock (847 samples, 0.16%)</title><rect x="92.9350%" y="629" width="0.1636%" height="15" fill="rgb(214,13,50)" fg:x="481010" fg:w="847"/><text x="93.1850%" y="639.50"></text></g><g><title>__d_lookup (1,675 samples, 0.32%)</title><rect x="92.7808%" y="645" width="0.3236%" height="15" fill="rgb(224,88,9)" fg:x="480212" fg:w="1675"/><text x="93.0308%" y="655.50"></text></g><g><title>__d_lookup_rcu (1,452 samples, 0.28%)</title><rect x="93.1044%" y="645" width="0.2805%" height="15" fill="rgb(238,192,34)" fg:x="481887" fg:w="1452"/><text x="93.3544%" y="655.50"></text></g><g><title>lookup_fast (3,867 samples, 0.75%)</title><rect x="92.6386%" y="661" width="0.7471%" height="15" fill="rgb(217,203,50)" fg:x="479476" fg:w="3867"/><text x="92.8886%" y="671.50"></text></g><g><title>page_put_link (52 samples, 0.01%)</title><rect x="93.3904%" y="661" width="0.0100%" height="15" fill="rgb(241,123,32)" fg:x="483367" fg:w="52"/><text x="93.6404%" y="671.50"></text></g><g><title>__traverse_mounts (93 samples, 0.02%)</title><rect x="93.5872%" y="645" width="0.0180%" height="15" fill="rgb(248,151,39)" fg:x="484386" fg:w="93"/><text x="93.8372%" y="655.50"></text></g><g><title>atime_needs_update (54 samples, 0.01%)</title><rect x="93.6060%" y="645" width="0.0104%" height="15" fill="rgb(208,89,6)" fg:x="484483" fg:w="54"/><text x="93.8560%" y="655.50"></text></g><g><title>_cond_resched (112 samples, 0.02%)</title><rect x="93.6525%" y="629" width="0.0216%" height="15" fill="rgb(254,43,26)" fg:x="484724" fg:w="112"/><text x="93.9025%" y="639.50"></text></g><g><title>rcu_all_qs (52 samples, 0.01%)</title><rect x="93.6641%" y="613" width="0.0100%" height="15" fill="rgb(216,158,13)" fg:x="484784" fg:w="52"/><text x="93.9141%" y="623.50"></text></g><g><title>dput (1,037 samples, 0.20%)</title><rect x="93.6164%" y="645" width="0.2004%" height="15" fill="rgb(212,47,37)" fg:x="484537" fg:w="1037"/><text x="93.8664%" y="655.50"></text></g><g><title>lockref_put_or_lock (737 samples, 0.14%)</title><rect x="93.6744%" y="629" width="0.1424%" height="15" fill="rgb(254,16,10)" fg:x="484837" fg:w="737"/><text x="93.9244%" y="639.50"></text></g><g><title>dput (107 samples, 0.02%)</title><rect x="93.8214%" y="629" width="0.0207%" height="15" fill="rgb(223,228,16)" fg:x="485598" fg:w="107"/><text x="94.0714%" y="639.50"></text></g><g><title>lockref_put_or_lock (84 samples, 0.02%)</title><rect x="93.8258%" y="613" width="0.0162%" height="15" fill="rgb(249,108,50)" fg:x="485621" fg:w="84"/><text x="94.0758%" y="623.50"></text></g><g><title>lockref_get (59 samples, 0.01%)</title><rect x="93.8421%" y="629" width="0.0114%" height="15" fill="rgb(208,220,5)" fg:x="485705" fg:w="59"/><text x="94.0921%" y="639.50"></text></g><g><title>nd_jump_root (244 samples, 0.05%)</title><rect x="93.8170%" y="645" width="0.0471%" height="15" fill="rgb(217,89,48)" fg:x="485575" fg:w="244"/><text x="94.0670%" y="655.50"></text></g><g><title>do_read_cache_page (192 samples, 0.04%)</title><rect x="93.8687%" y="629" width="0.0371%" height="15" fill="rgb(212,113,41)" fg:x="485843" fg:w="192"/><text x="94.1187%" y="639.50"></text></g><g><title>pagecache_get_page (156 samples, 0.03%)</title><rect x="93.8757%" y="613" width="0.0301%" height="15" fill="rgb(231,127,5)" fg:x="485879" fg:w="156"/><text x="94.1257%" y="623.50"></text></g><g><title>find_get_entry (117 samples, 0.02%)</title><rect x="93.8832%" y="597" width="0.0226%" height="15" fill="rgb(217,141,17)" fg:x="485918" fg:w="117"/><text x="94.1332%" y="607.50"></text></g><g><title>page_get_link (217 samples, 0.04%)</title><rect x="93.8641%" y="645" width="0.0419%" height="15" fill="rgb(245,125,54)" fg:x="485819" fg:w="217"/><text x="94.1141%" y="655.50"></text></g><g><title>__mnt_want_write (65 samples, 0.01%)</title><rect x="93.9132%" y="629" width="0.0126%" height="15" fill="rgb(248,125,3)" fg:x="486073" fg:w="65"/><text x="94.1632%" y="639.50"></text></g><g><title>touch_atime (133 samples, 0.03%)</title><rect x="93.9080%" y="645" width="0.0257%" height="15" fill="rgb(236,119,51)" fg:x="486046" fg:w="133"/><text x="94.1580%" y="655.50"></text></g><g><title>__legitimize_mnt (100 samples, 0.02%)</title><rect x="93.9412%" y="613" width="0.0193%" height="15" fill="rgb(239,99,8)" fg:x="486218" fg:w="100"/><text x="94.1912%" y="623.50"></text></g><g><title>__legitimize_path (258 samples, 0.05%)</title><rect x="93.9387%" y="629" width="0.0498%" height="15" fill="rgb(224,228,4)" fg:x="486205" fg:w="258"/><text x="94.1887%" y="639.50"></text></g><g><title>lockref_get_not_dead (145 samples, 0.03%)</title><rect x="93.9605%" y="613" width="0.0280%" height="15" fill="rgb(220,131,45)" fg:x="486318" fg:w="145"/><text x="94.2105%" y="623.50"></text></g><g><title>__legitimize_mnt (153 samples, 0.03%)</title><rect x="93.9992%" y="597" width="0.0296%" height="15" fill="rgb(215,62,5)" fg:x="486518" fg:w="153"/><text x="94.2492%" y="607.50"></text></g><g><title>legitimize_links (336 samples, 0.06%)</title><rect x="93.9885%" y="629" width="0.0649%" height="15" fill="rgb(253,12,24)" fg:x="486463" fg:w="336"/><text x="94.2385%" y="639.50"></text></g><g><title>__legitimize_path (314 samples, 0.06%)</title><rect x="93.9928%" y="613" width="0.0607%" height="15" fill="rgb(248,120,50)" fg:x="486485" fg:w="314"/><text x="94.2428%" y="623.50"></text></g><g><title>lockref_get_not_dead (128 samples, 0.02%)</title><rect x="94.0287%" y="597" width="0.0247%" height="15" fill="rgb(245,194,10)" fg:x="486671" fg:w="128"/><text x="94.2787%" y="607.50"></text></g><g><title>link_path_walk.part.0 (11,556 samples, 2.23%)</title><rect x="91.8231%" y="693" width="2.2327%" height="15" fill="rgb(241,149,38)" fg:x="475255" fg:w="11556"/><text x="92.0731%" y="703.50">l..</text></g><g><title>walk_component (8,116 samples, 1.57%)</title><rect x="92.4877%" y="677" width="1.5681%" height="15" fill="rgb(219,215,7)" fg:x="478695" fg:w="8116"/><text x="92.7377%" y="687.50"></text></g><g><title>step_into (3,392 samples, 0.66%)</title><rect x="93.4004%" y="661" width="0.6554%" height="15" fill="rgb(208,120,31)" fg:x="483419" fg:w="3392"/><text x="93.6504%" y="671.50"></text></g><g><title>try_to_unlazy (632 samples, 0.12%)</title><rect x="93.9337%" y="645" width="0.1221%" height="15" fill="rgb(244,30,8)" fg:x="486179" fg:w="632"/><text x="94.1837%" y="655.50"></text></g><g><title>_raw_spin_lock (129 samples, 0.02%)</title><rect x="94.1765%" y="661" width="0.0249%" height="15" fill="rgb(238,35,44)" fg:x="487436" fg:w="129"/><text x="94.4265%" y="671.50"></text></g><g><title>__d_lookup (708 samples, 0.14%)</title><rect x="94.0668%" y="677" width="0.1368%" height="15" fill="rgb(243,218,37)" fg:x="486868" fg:w="708"/><text x="94.3168%" y="687.50"></text></g><g><title>lookup_fast (1,375 samples, 0.27%)</title><rect x="94.0558%" y="693" width="0.2657%" height="15" fill="rgb(218,169,10)" fg:x="486811" fg:w="1375"/><text x="94.3058%" y="703.50"></text></g><g><title>__d_lookup_rcu (610 samples, 0.12%)</title><rect x="94.2036%" y="677" width="0.1179%" height="15" fill="rgb(221,144,10)" fg:x="487576" fg:w="610"/><text x="94.4536%" y="687.50"></text></g><g><title>inode_permission.part.0 (197 samples, 0.04%)</title><rect x="94.3608%" y="677" width="0.0381%" height="15" fill="rgb(226,41,38)" fg:x="488390" fg:w="197"/><text x="94.6108%" y="687.50"></text></g><g><title>may_open (412 samples, 0.08%)</title><rect x="94.3214%" y="693" width="0.0796%" height="15" fill="rgb(228,3,1)" fg:x="488186" fg:w="412"/><text x="94.5714%" y="703.50"></text></g><g><title>page_put_link (57 samples, 0.01%)</title><rect x="94.4068%" y="693" width="0.0110%" height="15" fill="rgb(209,129,12)" fg:x="488628" fg:w="57"/><text x="94.6568%" y="703.50"></text></g><g><title>__fget_light (158 samples, 0.03%)</title><rect x="94.4310%" y="677" width="0.0305%" height="15" fill="rgb(213,136,33)" fg:x="488753" fg:w="158"/><text x="94.6810%" y="687.50"></text></g><g><title>__fget_files (145 samples, 0.03%)</title><rect x="94.4335%" y="661" width="0.0280%" height="15" fill="rgb(209,181,29)" fg:x="488766" fg:w="145"/><text x="94.6835%" y="671.50"></text></g><g><title>path_init (290 samples, 0.06%)</title><rect x="94.4178%" y="693" width="0.0560%" height="15" fill="rgb(234,173,18)" fg:x="488685" fg:w="290"/><text x="94.6678%" y="703.50"></text></g><g><title>fput_many (61 samples, 0.01%)</title><rect x="94.4621%" y="677" width="0.0118%" height="15" fill="rgb(227,73,47)" fg:x="488914" fg:w="61"/><text x="94.7121%" y="687.50"></text></g><g><title>atime_needs_update (213 samples, 0.04%)</title><rect x="94.5790%" y="677" width="0.0412%" height="15" fill="rgb(234,9,34)" fg:x="489519" fg:w="213"/><text x="94.8290%" y="687.50"></text></g><g><title>dput (101 samples, 0.02%)</title><rect x="94.6201%" y="677" width="0.0195%" height="15" fill="rgb(235,172,15)" fg:x="489732" fg:w="101"/><text x="94.8701%" y="687.50"></text></g><g><title>lockref_put_or_lock (79 samples, 0.02%)</title><rect x="94.6244%" y="661" width="0.0153%" height="15" fill="rgb(245,61,2)" fg:x="489754" fg:w="79"/><text x="94.8744%" y="671.50"></text></g><g><title>nd_jump_root (60 samples, 0.01%)</title><rect x="94.6396%" y="677" width="0.0116%" height="15" fill="rgb(238,39,47)" fg:x="489833" fg:w="60"/><text x="94.8896%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (88 samples, 0.02%)</title><rect x="94.6646%" y="645" width="0.0170%" height="15" fill="rgb(234,37,24)" fg:x="489962" fg:w="88"/><text x="94.9146%" y="655.50"></text></g><g><title>get_page_from_freelist (78 samples, 0.02%)</title><rect x="94.6665%" y="629" width="0.0151%" height="15" fill="rgb(248,223,24)" fg:x="489972" fg:w="78"/><text x="94.9165%" y="639.50"></text></g><g><title>__add_to_page_cache_locked (72 samples, 0.01%)</title><rect x="94.6821%" y="629" width="0.0139%" height="15" fill="rgb(223,12,15)" fg:x="490053" fg:w="72"/><text x="94.9321%" y="639.50"></text></g><g><title>add_to_page_cache_lru (111 samples, 0.02%)</title><rect x="94.6816%" y="645" width="0.0214%" height="15" fill="rgb(249,6,3)" fg:x="490050" fg:w="111"/><text x="94.9316%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (56 samples, 0.01%)</title><rect x="94.7563%" y="565" width="0.0108%" height="15" fill="rgb(237,105,33)" fg:x="490437" fg:w="56"/><text x="95.0063%" y="575.50"></text></g><g><title>find_extent_buffer (62 samples, 0.01%)</title><rect x="94.7730%" y="549" width="0.0120%" height="15" fill="rgb(252,208,35)" fg:x="490523" fg:w="62"/><text x="95.0230%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (98 samples, 0.02%)</title><rect x="94.7672%" y="565" width="0.0189%" height="15" fill="rgb(215,181,35)" fg:x="490493" fg:w="98"/><text x="95.0172%" y="575.50"></text></g><g><title>btrfs_lookup_file_extent (200 samples, 0.04%)</title><rect x="94.7486%" y="597" width="0.0386%" height="15" fill="rgb(246,212,3)" fg:x="490397" fg:w="200"/><text x="94.9986%" y="607.50"></text></g><g><title>btrfs_search_slot (198 samples, 0.04%)</title><rect x="94.7490%" y="581" width="0.0383%" height="15" fill="rgb(247,156,24)" fg:x="490399" fg:w="198"/><text x="94.9990%" y="591.50"></text></g><g><title>btrfs_get_extent (462 samples, 0.09%)</title><rect x="94.7206%" y="613" width="0.0893%" height="15" fill="rgb(248,9,31)" fg:x="490252" fg:w="462"/><text x="94.9706%" y="623.50"></text></g><g><title>btrfs_do_readpage (567 samples, 0.11%)</title><rect x="94.7053%" y="629" width="0.1095%" height="15" fill="rgb(234,26,45)" fg:x="490173" fg:w="567"/><text x="94.9553%" y="639.50"></text></g><g><title>btrfs_readpage (634 samples, 0.12%)</title><rect x="94.7044%" y="645" width="0.1225%" height="15" fill="rgb(249,11,32)" fg:x="490168" fg:w="634"/><text x="94.9544%" y="655.50"></text></g><g><title>btrfs_lock_and_flush_ordered_range (62 samples, 0.01%)</title><rect x="94.8149%" y="629" width="0.0120%" height="15" fill="rgb(249,162,33)" fg:x="490740" fg:w="62"/><text x="95.0649%" y="639.50"></text></g><g><title>do_read_cache_page (856 samples, 0.17%)</title><rect x="94.6634%" y="661" width="0.1654%" height="15" fill="rgb(232,4,32)" fg:x="489956" fg:w="856"/><text x="94.9134%" y="671.50"></text></g><g><title>pagecache_get_page (285 samples, 0.06%)</title><rect x="94.8288%" y="661" width="0.0551%" height="15" fill="rgb(212,5,45)" fg:x="490812" fg:w="285"/><text x="95.0788%" y="671.50"></text></g><g><title>find_get_entry (258 samples, 0.05%)</title><rect x="94.8340%" y="645" width="0.0498%" height="15" fill="rgb(227,95,13)" fg:x="490839" fg:w="258"/><text x="95.0840%" y="655.50"></text></g><g><title>xas_load (75 samples, 0.01%)</title><rect x="94.8694%" y="629" width="0.0145%" height="15" fill="rgb(223,205,10)" fg:x="491022" fg:w="75"/><text x="95.1194%" y="639.50"></text></g><g><title>xas_start (68 samples, 0.01%)</title><rect x="94.8707%" y="613" width="0.0131%" height="15" fill="rgb(222,178,8)" fg:x="491029" fg:w="68"/><text x="95.1207%" y="623.50"></text></g><g><title>page_get_link (1,205 samples, 0.23%)</title><rect x="94.6512%" y="677" width="0.2328%" height="15" fill="rgb(216,13,22)" fg:x="489893" fg:w="1205"/><text x="94.9012%" y="687.50"></text></g><g><title>btrfs_get_or_create_delayed_node (56 samples, 0.01%)</title><rect x="94.9076%" y="613" width="0.0108%" height="15" fill="rgb(240,167,12)" fg:x="491220" fg:w="56"/><text x="95.1576%" y="623.50"></text></g><g><title>btrfs_get_delayed_node (55 samples, 0.01%)</title><rect x="94.9078%" y="597" width="0.0106%" height="15" fill="rgb(235,68,35)" fg:x="491221" fg:w="55"/><text x="95.1578%" y="607.50"></text></g><g><title>btrfs_delayed_update_inode (144 samples, 0.03%)</title><rect x="94.8954%" y="629" width="0.0278%" height="15" fill="rgb(253,40,27)" fg:x="491157" fg:w="144"/><text x="95.1454%" y="639.50"></text></g><g><title>btrfs_update_inode (152 samples, 0.03%)</title><rect x="94.8945%" y="645" width="0.0294%" height="15" fill="rgb(214,19,28)" fg:x="491152" fg:w="152"/><text x="95.1445%" y="655.50"></text></g><g><title>btrfs_dirty_inode (227 samples, 0.04%)</title><rect x="94.8875%" y="661" width="0.0439%" height="15" fill="rgb(210,167,45)" fg:x="491116" fg:w="227"/><text x="95.1375%" y="671.50"></text></g><g><title>touch_atime (253 samples, 0.05%)</title><rect x="94.8866%" y="677" width="0.0489%" height="15" fill="rgb(232,97,40)" fg:x="491111" fg:w="253"/><text x="95.1366%" y="687.50"></text></g><g><title>step_into (2,406 samples, 0.46%)</title><rect x="94.4746%" y="693" width="0.4649%" height="15" fill="rgb(250,35,23)" fg:x="488979" fg:w="2406"/><text x="94.7246%" y="703.50"></text></g><g><title>dput (170 samples, 0.03%)</title><rect x="94.9436%" y="677" width="0.0328%" height="15" fill="rgb(248,47,53)" fg:x="491406" fg:w="170"/><text x="95.1936%" y="687.50"></text></g><g><title>lockref_put_or_lock (122 samples, 0.02%)</title><rect x="94.9528%" y="661" width="0.0236%" height="15" fill="rgb(226,58,50)" fg:x="491454" fg:w="122"/><text x="95.2028%" y="671.50"></text></g><g><title>terminate_walk (244 samples, 0.05%)</title><rect x="94.9395%" y="693" width="0.0471%" height="15" fill="rgb(217,105,26)" fg:x="491385" fg:w="244"/><text x="95.1895%" y="703.50"></text></g><g><title>do_filp_open (19,497 samples, 3.77%)</title><rect x="91.2210%" y="725" width="3.7670%" height="15" fill="rgb(208,64,1)" fg:x="472139" fg:w="19497"/><text x="91.4710%" y="735.50">do_f..</text></g><g><title>path_openat (19,454 samples, 3.76%)</title><rect x="91.2293%" y="709" width="3.7587%" height="15" fill="rgb(214,80,1)" fg:x="472182" fg:w="19454"/><text x="91.4793%" y="719.50">path..</text></g><g><title>memset_erms (593 samples, 0.11%)</title><rect x="95.0465%" y="693" width="0.1146%" height="15" fill="rgb(206,175,26)" fg:x="491939" fg:w="593"/><text x="95.2965%" y="703.50"></text></g><g><title>kmem_cache_alloc (872 samples, 0.17%)</title><rect x="95.0098%" y="709" width="0.1685%" height="15" fill="rgb(235,156,37)" fg:x="491749" fg:w="872"/><text x="95.2598%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (89 samples, 0.02%)</title><rect x="95.1611%" y="693" width="0.0172%" height="15" fill="rgb(213,100,9)" fg:x="492532" fg:w="89"/><text x="95.4111%" y="703.50"></text></g><g><title>__check_heap_object (69 samples, 0.01%)</title><rect x="95.2314%" y="677" width="0.0133%" height="15" fill="rgb(241,15,13)" fg:x="492896" fg:w="69"/><text x="95.4814%" y="687.50"></text></g><g><title>__virt_addr_valid (149 samples, 0.03%)</title><rect x="95.2448%" y="677" width="0.0288%" height="15" fill="rgb(205,97,43)" fg:x="492965" fg:w="149"/><text x="95.4948%" y="687.50"></text></g><g><title>__check_object_size (268 samples, 0.05%)</title><rect x="95.2227%" y="693" width="0.0518%" height="15" fill="rgb(216,106,32)" fg:x="492851" fg:w="268"/><text x="95.4727%" y="703.50"></text></g><g><title>getname_flags.part.0 (1,429 samples, 0.28%)</title><rect x="94.9988%" y="725" width="0.2761%" height="15" fill="rgb(226,200,8)" fg:x="491692" fg:w="1429"/><text x="95.2488%" y="735.50"></text></g><g><title>strncpy_from_user (500 samples, 0.10%)</title><rect x="95.1783%" y="709" width="0.0966%" height="15" fill="rgb(244,54,29)" fg:x="492621" fg:w="500"/><text x="95.4283%" y="719.50"></text></g><g><title>kmem_cache_free (207 samples, 0.04%)</title><rect x="95.2749%" y="725" width="0.0400%" height="15" fill="rgb(252,169,12)" fg:x="493121" fg:w="207"/><text x="95.5249%" y="735.50"></text></g><g><title>__x64_sys_openat (21,629 samples, 4.18%)</title><rect x="91.1399%" y="757" width="4.1789%" height="15" fill="rgb(231,199,11)" fg:x="471719" fg:w="21629"/><text x="91.3899%" y="767.50">__x64..</text></g><g><title>do_sys_openat2 (21,606 samples, 4.17%)</title><rect x="91.1443%" y="741" width="4.1745%" height="15" fill="rgb(233,191,18)" fg:x="471742" fg:w="21606"/><text x="91.3943%" y="751.50">do_sy..</text></g><g><title>__fget_light (657 samples, 0.13%)</title><rect x="95.4461%" y="725" width="0.1269%" height="15" fill="rgb(215,83,47)" fg:x="494007" fg:w="657"/><text x="95.6961%" y="735.50"></text></g><g><title>__fget_files (584 samples, 0.11%)</title><rect x="95.4602%" y="709" width="0.1128%" height="15" fill="rgb(251,67,19)" fg:x="494080" fg:w="584"/><text x="95.7102%" y="719.50"></text></g><g><title>_cond_resched (64 samples, 0.01%)</title><rect x="95.6435%" y="709" width="0.0124%" height="15" fill="rgb(240,7,20)" fg:x="495029" fg:w="64"/><text x="95.8935%" y="719.50"></text></g><g><title>__fdget_pos (1,334 samples, 0.26%)</title><rect x="95.3984%" y="741" width="0.2577%" height="15" fill="rgb(210,150,26)" fg:x="493760" fg:w="1334"/><text x="95.6484%" y="751.50"></text></g><g><title>mutex_lock (429 samples, 0.08%)</title><rect x="95.5732%" y="725" width="0.0829%" height="15" fill="rgb(228,75,42)" fg:x="494665" fg:w="429"/><text x="95.8232%" y="735.50"></text></g><g><title>fput_many (359 samples, 0.07%)</title><rect x="95.6605%" y="741" width="0.0694%" height="15" fill="rgb(237,134,48)" fg:x="495117" fg:w="359"/><text x="95.9105%" y="751.50"></text></g><g><title>mutex_unlock (378 samples, 0.07%)</title><rect x="95.7299%" y="741" width="0.0730%" height="15" fill="rgb(205,80,50)" fg:x="495476" fg:w="378"/><text x="95.9799%" y="751.50"></text></g><g><title>__fsnotify_parent (488 samples, 0.09%)</title><rect x="95.9212%" y="725" width="0.0943%" height="15" fill="rgb(217,74,48)" fg:x="496466" fg:w="488"/><text x="96.1712%" y="735.50"></text></g><g><title>btrfs_file_read_iter (75 samples, 0.01%)</title><rect x="96.0918%" y="709" width="0.0145%" height="15" fill="rgb(205,82,50)" fg:x="497349" fg:w="75"/><text x="96.3418%" y="719.50"></text></g><g><title>_cond_resched (87 samples, 0.02%)</title><rect x="96.3474%" y="693" width="0.0168%" height="15" fill="rgb(228,1,33)" fg:x="498672" fg:w="87"/><text x="96.5974%" y="703.50"></text></g><g><title>_cond_resched (82 samples, 0.02%)</title><rect x="96.4743%" y="677" width="0.0158%" height="15" fill="rgb(214,50,23)" fg:x="499329" fg:w="82"/><text x="96.7243%" y="687.50"></text></g><g><title>handle_mm_fault (59 samples, 0.01%)</title><rect x="97.2605%" y="613" width="0.0114%" height="15" fill="rgb(210,62,9)" fg:x="503398" fg:w="59"/><text x="97.5105%" y="623.50"></text></g><g><title>asm_exc_page_fault (175 samples, 0.03%)</title><rect x="97.2383%" y="661" width="0.0338%" height="15" fill="rgb(210,104,37)" fg:x="503283" fg:w="175"/><text x="97.4883%" y="671.50"></text></g><g><title>exc_page_fault (64 samples, 0.01%)</title><rect x="97.2597%" y="645" width="0.0124%" height="15" fill="rgb(232,104,43)" fg:x="503394" fg:w="64"/><text x="97.5097%" y="655.50"></text></g><g><title>do_user_addr_fault (63 samples, 0.01%)</title><rect x="97.2599%" y="629" width="0.0122%" height="15" fill="rgb(244,52,6)" fg:x="503395" fg:w="63"/><text x="97.5099%" y="639.50"></text></g><g><title>copy_user_enhanced_fast_string (4,057 samples, 0.78%)</title><rect x="96.4910%" y="677" width="0.7838%" height="15" fill="rgb(211,174,52)" fg:x="499415" fg:w="4057"/><text x="96.7410%" y="687.50"></text></g><g><title>copy_page_to_iter (4,750 samples, 0.92%)</title><rect x="96.3654%" y="693" width="0.9177%" height="15" fill="rgb(229,48,4)" fg:x="498765" fg:w="4750"/><text x="96.6154%" y="703.50"></text></g><g><title>pagecache_get_page (1,940 samples, 0.37%)</title><rect x="97.2910%" y="693" width="0.3748%" height="15" fill="rgb(205,155,16)" fg:x="503556" fg:w="1940"/><text x="97.5410%" y="703.50"></text></g><g><title>find_get_entry (1,681 samples, 0.32%)</title><rect x="97.3411%" y="677" width="0.3248%" height="15" fill="rgb(211,141,53)" fg:x="503815" fg:w="1681"/><text x="97.5911%" y="687.50"></text></g><g><title>xas_load (404 samples, 0.08%)</title><rect x="97.5878%" y="661" width="0.0781%" height="15" fill="rgb(240,148,11)" fg:x="505092" fg:w="404"/><text x="97.8378%" y="671.50"></text></g><g><title>xas_start (253 samples, 0.05%)</title><rect x="97.6170%" y="645" width="0.0489%" height="15" fill="rgb(214,45,23)" fg:x="505243" fg:w="253"/><text x="97.8670%" y="655.50"></text></g><g><title>generic_file_buffered_read (8,590 samples, 1.66%)</title><rect x="96.1063%" y="709" width="1.6597%" height="15" fill="rgb(248,74,26)" fg:x="497424" fg:w="8590"/><text x="96.3563%" y="719.50"></text></g><g><title>touch_atime (518 samples, 0.10%)</title><rect x="97.6659%" y="693" width="0.1001%" height="15" fill="rgb(218,121,16)" fg:x="505496" fg:w="518"/><text x="97.9159%" y="703.50"></text></g><g><title>atime_needs_update (396 samples, 0.08%)</title><rect x="97.6894%" y="677" width="0.0765%" height="15" fill="rgb(218,10,47)" fg:x="505618" fg:w="396"/><text x="97.9394%" y="687.50"></text></g><g><title>current_time (214 samples, 0.04%)</title><rect x="97.7246%" y="661" width="0.0413%" height="15" fill="rgb(227,99,14)" fg:x="505800" fg:w="214"/><text x="97.9746%" y="671.50"></text></g><g><title>ktime_get_coarse_real_ts64 (60 samples, 0.01%)</title><rect x="97.7543%" y="645" width="0.0116%" height="15" fill="rgb(229,83,46)" fg:x="505954" fg:w="60"/><text x="98.0043%" y="655.50"></text></g><g><title>new_sync_read (9,109 samples, 1.76%)</title><rect x="96.0162%" y="725" width="1.7599%" height="15" fill="rgb(228,25,1)" fg:x="496958" fg:w="9109"/><text x="96.2662%" y="735.50"></text></g><g><title>iov_iter_init (53 samples, 0.01%)</title><rect x="97.7659%" y="709" width="0.0102%" height="15" fill="rgb(252,190,15)" fg:x="506014" fg:w="53"/><text x="98.0159%" y="719.50"></text></g><g><title>rw_verify_area (93 samples, 0.02%)</title><rect x="97.7762%" y="725" width="0.0180%" height="15" fill="rgb(213,103,51)" fg:x="506067" fg:w="93"/><text x="98.0262%" y="735.50"></text></g><g><title>apparmor_file_permission (293 samples, 0.06%)</title><rect x="97.8262%" y="709" width="0.0566%" height="15" fill="rgb(220,38,44)" fg:x="506326" fg:w="293"/><text x="98.0762%" y="719.50"></text></g><g><title>aa_file_perm (153 samples, 0.03%)</title><rect x="97.8533%" y="693" width="0.0296%" height="15" fill="rgb(210,45,26)" fg:x="506466" fg:w="153"/><text x="98.1033%" y="703.50"></text></g><g><title>security_file_permission (461 samples, 0.09%)</title><rect x="97.7941%" y="725" width="0.0891%" height="15" fill="rgb(205,95,48)" fg:x="506160" fg:w="461"/><text x="98.0441%" y="735.50"></text></g><g><title>ksys_read (13,104 samples, 2.53%)</title><rect x="95.3516%" y="757" width="2.5318%" height="15" fill="rgb(225,179,37)" fg:x="493518" fg:w="13104"/><text x="95.6016%" y="767.50">ks..</text></g><g><title>vfs_read (10,768 samples, 2.08%)</title><rect x="95.8029%" y="741" width="2.0805%" height="15" fill="rgb(230,209,3)" fg:x="495854" fg:w="10768"/><text x="96.0529%" y="751.50">v..</text></g><g><title>syscall_enter_from_user_mode (130 samples, 0.03%)</title><rect x="97.8850%" y="757" width="0.0251%" height="15" fill="rgb(248,12,46)" fg:x="506630" fg:w="130"/><text x="98.1350%" y="767.50"></text></g><g><title>perf_iterate_sb (72 samples, 0.01%)</title><rect x="97.9240%" y="693" width="0.0139%" height="15" fill="rgb(234,18,0)" fg:x="506832" fg:w="72"/><text x="98.1740%" y="703.50"></text></g><g><title>perf_iterate_ctx (63 samples, 0.01%)</title><rect x="97.9257%" y="677" width="0.0122%" height="15" fill="rgb(238,197,14)" fg:x="506841" fg:w="63"/><text x="98.1757%" y="687.50"></text></g><g><title>perf_event_mmap (82 samples, 0.02%)</title><rect x="97.9224%" y="709" width="0.0158%" height="15" fill="rgb(251,162,48)" fg:x="506824" fg:w="82"/><text x="98.1724%" y="719.50"></text></g><g><title>vma_merge (55 samples, 0.01%)</title><rect x="97.9410%" y="709" width="0.0106%" height="15" fill="rgb(237,73,42)" fg:x="506920" fg:w="55"/><text x="98.1910%" y="719.50"></text></g><g><title>do_mmap (217 samples, 0.04%)</title><rect x="97.9103%" y="741" width="0.0419%" height="15" fill="rgb(211,108,8)" fg:x="506761" fg:w="217"/><text x="98.1603%" y="751.50"></text></g><g><title>mmap_region (174 samples, 0.03%)</title><rect x="97.9186%" y="725" width="0.0336%" height="15" fill="rgb(213,45,22)" fg:x="506804" fg:w="174"/><text x="98.1686%" y="735.50"></text></g><g><title>do_syscall_64 (54,558 samples, 10.54%)</title><rect x="87.4191%" y="773" width="10.5410%" height="15" fill="rgb(252,154,5)" fg:x="452461" fg:w="54558"/><text x="87.6691%" y="783.50">do_syscall_64</text></g><g><title>vm_mmap_pgoff (259 samples, 0.05%)</title><rect x="97.9101%" y="757" width="0.0500%" height="15" fill="rgb(221,79,52)" fg:x="506760" fg:w="259"/><text x="98.1601%" y="767.50"></text></g><g><title>do_group_exit (113 samples, 0.02%)</title><rect x="98.0498%" y="709" width="0.0218%" height="15" fill="rgb(229,220,36)" fg:x="507483" fg:w="113"/><text x="98.2998%" y="719.50"></text></g><g><title>do_exit (113 samples, 0.02%)</title><rect x="98.0498%" y="693" width="0.0218%" height="15" fill="rgb(211,17,16)" fg:x="507483" fg:w="113"/><text x="98.2998%" y="703.50"></text></g><g><title>arch_do_signal (168 samples, 0.03%)</title><rect x="98.0403%" y="741" width="0.0325%" height="15" fill="rgb(222,55,31)" fg:x="507434" fg:w="168"/><text x="98.2903%" y="751.50"></text></g><g><title>get_signal (166 samples, 0.03%)</title><rect x="98.0407%" y="725" width="0.0321%" height="15" fill="rgb(221,221,31)" fg:x="507436" fg:w="166"/><text x="98.2907%" y="735.50"></text></g><g><title>fpregs_assert_state_consistent (131 samples, 0.03%)</title><rect x="98.0774%" y="741" width="0.0253%" height="15" fill="rgb(227,168,26)" fg:x="507626" fg:w="131"/><text x="98.3274%" y="751.50"></text></g><g><title>switch_fpu_return (155 samples, 0.03%)</title><rect x="98.1153%" y="741" width="0.0299%" height="15" fill="rgb(224,139,9)" fg:x="507822" fg:w="155"/><text x="98.3653%" y="751.50"></text></g><g><title>copy_kernel_to_fpregs (110 samples, 0.02%)</title><rect x="98.1240%" y="725" width="0.0213%" height="15" fill="rgb(254,172,0)" fg:x="507867" fg:w="110"/><text x="98.3740%" y="735.50"></text></g><g><title>btrfs_release_file (177 samples, 0.03%)</title><rect x="98.1931%" y="709" width="0.0342%" height="15" fill="rgb(235,203,1)" fg:x="508225" fg:w="177"/><text x="98.4431%" y="719.50"></text></g><g><title>lockref_put_or_lock (70 samples, 0.01%)</title><rect x="98.2393%" y="693" width="0.0135%" height="15" fill="rgb(216,205,24)" fg:x="508464" fg:w="70"/><text x="98.4893%" y="703.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="98.2422%" y="677" width="0.0106%" height="15" fill="rgb(233,24,6)" fg:x="508479" fg:w="55"/><text x="98.4922%" y="687.50"></text></g><g><title>dput (134 samples, 0.03%)</title><rect x="98.2273%" y="709" width="0.0259%" height="15" fill="rgb(244,110,9)" fg:x="508402" fg:w="134"/><text x="98.4773%" y="719.50"></text></g><g><title>kmem_cache_free (175 samples, 0.03%)</title><rect x="98.2536%" y="709" width="0.0338%" height="15" fill="rgb(239,222,42)" fg:x="508538" fg:w="175"/><text x="98.5036%" y="719.50"></text></g><g><title>__fput (791 samples, 0.15%)</title><rect x="98.1603%" y="725" width="0.1528%" height="15" fill="rgb(218,145,13)" fg:x="508055" fg:w="791"/><text x="98.4103%" y="735.50"></text></g><g><title>security_file_free (67 samples, 0.01%)</title><rect x="98.3002%" y="709" width="0.0129%" height="15" fill="rgb(207,69,11)" fg:x="508779" fg:w="67"/><text x="98.5502%" y="719.50"></text></g><g><title>apparmor_file_free_security (57 samples, 0.01%)</title><rect x="98.3021%" y="693" width="0.0110%" height="15" fill="rgb(220,223,22)" fg:x="508789" fg:w="57"/><text x="98.5521%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57,091 samples, 11.03%)</title><rect x="87.3474%" y="789" width="11.0304%" height="15" fill="rgb(245,102,5)" fg:x="452090" fg:w="57091"/><text x="87.5974%" y="799.50">entry_SYSCALL_64..</text></g><g><title>syscall_exit_to_user_mode (2,162 samples, 0.42%)</title><rect x="97.9601%" y="773" width="0.4177%" height="15" fill="rgb(211,148,2)" fg:x="507019" fg:w="2162"/><text x="98.2101%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (1,991 samples, 0.38%)</title><rect x="97.9931%" y="757" width="0.3847%" height="15" fill="rgb(241,13,44)" fg:x="507190" fg:w="1991"/><text x="98.2431%" y="767.50"></text></g><g><title>task_work_run (1,204 samples, 0.23%)</title><rect x="98.1452%" y="741" width="0.2326%" height="15" fill="rgb(219,137,21)" fg:x="507977" fg:w="1204"/><text x="98.3952%" y="751.50"></text></g><g><title>call_rcu (278 samples, 0.05%)</title><rect x="98.3241%" y="725" width="0.0537%" height="15" fill="rgb(242,206,5)" fg:x="508903" fg:w="278"/><text x="98.5741%" y="735.50"></text></g><g><title>rcu_segcblist_enqueue (134 samples, 0.03%)</title><rect x="98.3519%" y="709" width="0.0259%" height="15" fill="rgb(217,114,22)" fg:x="509047" fg:w="134"/><text x="98.6019%" y="719.50"></text></g><g><title>error_entry (246 samples, 0.05%)</title><rect x="98.3778%" y="789" width="0.0475%" height="15" fill="rgb(253,206,42)" fg:x="509181" fg:w="246"/><text x="98.6278%" y="799.50"></text></g><g><title>sync_regs (207 samples, 0.04%)</title><rect x="98.3854%" y="773" width="0.0400%" height="15" fill="rgb(236,102,18)" fg:x="509220" fg:w="207"/><text x="98.6354%" y="783.50"></text></g><g><title>calculate_sigpending (52 samples, 0.01%)</title><rect x="98.4337%" y="773" width="0.0100%" height="15" fill="rgb(208,59,49)" fg:x="509470" fg:w="52"/><text x="98.6837%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (4,991 samples, 0.96%)</title><rect x="98.5065%" y="741" width="0.9643%" height="15" fill="rgb(215,194,28)" fg:x="509847" fg:w="4991"/><text x="98.7565%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,859 samples, 0.94%)</title><rect x="98.5320%" y="725" width="0.9388%" height="15" fill="rgb(243,207,11)" fg:x="509979" fg:w="4859"/><text x="98.7820%" y="735.50"></text></g><g><title>native_write_msr (4,844 samples, 0.94%)</title><rect x="98.5349%" y="709" width="0.9359%" height="15" fill="rgb(254,179,35)" fg:x="509994" fg:w="4844"/><text x="98.7849%" y="719.50"></text></g><g><title>irq_work_run (55 samples, 0.01%)</title><rect x="99.4805%" y="677" width="0.0106%" height="15" fill="rgb(235,97,3)" fg:x="514888" fg:w="55"/><text x="99.7305%" y="687.50"></text></g><g><title>irq_work_run_list (55 samples, 0.01%)</title><rect x="99.4805%" y="661" width="0.0106%" height="15" fill="rgb(215,155,33)" fg:x="514888" fg:w="55"/><text x="99.7305%" y="671.50"></text></g><g><title>irq_work_single (55 samples, 0.01%)</title><rect x="99.4805%" y="645" width="0.0106%" height="15" fill="rgb(223,128,12)" fg:x="514888" fg:w="55"/><text x="99.7305%" y="655.50"></text></g><g><title>perf_pending_event (52 samples, 0.01%)</title><rect x="99.4810%" y="629" width="0.0100%" height="15" fill="rgb(208,157,18)" fg:x="514891" fg:w="52"/><text x="99.7310%" y="639.50"></text></g><g><title>asm_call_sysvec_on_stack (60 samples, 0.01%)</title><rect x="99.4801%" y="709" width="0.0116%" height="15" fill="rgb(249,70,54)" fg:x="514886" fg:w="60"/><text x="99.7301%" y="719.50"></text></g><g><title>__sysvec_irq_work (58 samples, 0.01%)</title><rect x="99.4805%" y="693" width="0.0112%" height="15" fill="rgb(244,118,24)" fg:x="514888" fg:w="58"/><text x="99.7305%" y="703.50"></text></g><g><title>asm_sysvec_irq_work (110 samples, 0.02%)</title><rect x="99.4720%" y="741" width="0.0213%" height="15" fill="rgb(211,54,0)" fg:x="514844" fg:w="110"/><text x="99.7220%" y="751.50"></text></g><g><title>sysvec_irq_work (69 samples, 0.01%)</title><rect x="99.4799%" y="725" width="0.0133%" height="15" fill="rgb(245,137,45)" fg:x="514885" fg:w="69"/><text x="99.7299%" y="735.50"></text></g><g><title>schedule_tail (5,443 samples, 1.05%)</title><rect x="98.4437%" y="773" width="1.0516%" height="15" fill="rgb(232,154,31)" fg:x="509522" fg:w="5443"/><text x="98.6937%" y="783.50"></text></g><g><title>finish_task_switch (5,416 samples, 1.05%)</title><rect x="98.4489%" y="757" width="1.0464%" height="15" fill="rgb(253,6,39)" fg:x="509549" fg:w="5416"/><text x="98.6989%" y="767.50"></text></g><g><title>ret_from_fork (5,564 samples, 1.08%)</title><rect x="98.4333%" y="789" width="1.0750%" height="15" fill="rgb(234,183,24)" fg:x="509468" fg:w="5564"/><text x="98.6833%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (67 samples, 0.01%)</title><rect x="99.4953%" y="773" width="0.0129%" height="15" fill="rgb(252,84,40)" fg:x="514965" fg:w="67"/><text x="99.7453%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (64 samples, 0.01%)</title><rect x="99.4959%" y="757" width="0.0124%" height="15" fill="rgb(224,65,2)" fg:x="514968" fg:w="64"/><text x="99.7459%" y="767.50"></text></g><g><title>switch_fpu_return (62 samples, 0.01%)</title><rect x="99.4963%" y="741" width="0.0120%" height="15" fill="rgb(229,38,24)" fg:x="514970" fg:w="62"/><text x="99.7463%" y="751.50"></text></g><g><title>syscall_return_via_sysret (339 samples, 0.07%)</title><rect x="99.5083%" y="789" width="0.0655%" height="15" fill="rgb(218,131,50)" fg:x="515032" fg:w="339"/><text x="99.7583%" y="799.50"></text></g><g><title>[zig] (95,117 samples, 18.38%)</title><rect x="81.1966%" y="805" width="18.3774%" height="15" fill="rgb(233,106,18)" fg:x="420255" fg:w="95117"/><text x="81.4466%" y="815.50">[zig]</text></g><g><title>asm_exc_page_fault (562 samples, 0.11%)</title><rect x="99.5742%" y="805" width="0.1086%" height="15" fill="rgb(220,216,11)" fg:x="515373" fg:w="562"/><text x="99.8242%" y="815.50"></text></g><g><title>page_remove_rmap (69 samples, 0.01%)</title><rect x="99.7444%" y="629" width="0.0133%" height="15" fill="rgb(251,100,45)" fg:x="516254" fg:w="69"/><text x="99.9944%" y="639.50"></text></g><g><title>mmput (221 samples, 0.04%)</title><rect x="99.7160%" y="693" width="0.0427%" height="15" fill="rgb(235,143,32)" fg:x="516107" fg:w="221"/><text x="99.9660%" y="703.50"></text></g><g><title>exit_mmap (220 samples, 0.04%)</title><rect x="99.7162%" y="677" width="0.0425%" height="15" fill="rgb(248,124,34)" fg:x="516108" fg:w="220"/><text x="99.9662%" y="687.50"></text></g><g><title>unmap_vmas (180 samples, 0.03%)</title><rect x="99.7239%" y="661" width="0.0348%" height="15" fill="rgb(225,221,4)" fg:x="516148" fg:w="180"/><text x="99.9739%" y="671.50"></text></g><g><title>unmap_page_range (180 samples, 0.03%)</title><rect x="99.7239%" y="645" width="0.0348%" height="15" fill="rgb(242,27,43)" fg:x="516148" fg:w="180"/><text x="99.9739%" y="655.50"></text></g><g><title>begin_new_exec (227 samples, 0.04%)</title><rect x="99.7152%" y="709" width="0.0439%" height="15" fill="rgb(227,54,8)" fg:x="516103" fg:w="227"/><text x="99.9652%" y="719.50"></text></g><g><title>__x64_sys_execve (271 samples, 0.05%)</title><rect x="99.7129%" y="773" width="0.0524%" height="15" fill="rgb(253,139,49)" fg:x="516091" fg:w="271"/><text x="99.9629%" y="783.50"></text></g><g><title>do_execveat_common (271 samples, 0.05%)</title><rect x="99.7129%" y="757" width="0.0524%" height="15" fill="rgb(231,26,43)" fg:x="516091" fg:w="271"/><text x="99.9629%" y="767.50"></text></g><g><title>bprm_execve (271 samples, 0.05%)</title><rect x="99.7129%" y="741" width="0.0524%" height="15" fill="rgb(207,121,39)" fg:x="516091" fg:w="271"/><text x="99.9629%" y="751.50"></text></g><g><title>load_elf_binary (271 samples, 0.05%)</title><rect x="99.7129%" y="725" width="0.0524%" height="15" fill="rgb(223,101,35)" fg:x="516091" fg:w="271"/><text x="99.9629%" y="735.50"></text></g><g><title>tlb_finish_mmu (78 samples, 0.02%)</title><rect x="99.7695%" y="693" width="0.0151%" height="15" fill="rgb(232,87,23)" fg:x="516384" fg:w="78"/><text x="100.0195%" y="703.50"></text></g><g><title>page_remove_rmap (90 samples, 0.02%)</title><rect x="99.8219%" y="661" width="0.0174%" height="15" fill="rgb(225,180,29)" fg:x="516655" fg:w="90"/><text x="100.0719%" y="671.50"></text></g><g><title>unmap_page_range (336 samples, 0.06%)</title><rect x="99.7846%" y="677" width="0.0649%" height="15" fill="rgb(225,25,17)" fg:x="516462" fg:w="336"/><text x="100.0346%" y="687.50"></text></g><g><title>exit_mmap (416 samples, 0.08%)</title><rect x="99.7693%" y="709" width="0.0804%" height="15" fill="rgb(223,8,52)" fg:x="516383" fg:w="416"/><text x="100.0193%" y="719.50"></text></g><g><title>unmap_vmas (337 samples, 0.07%)</title><rect x="99.7846%" y="693" width="0.0651%" height="15" fill="rgb(246,42,21)" fg:x="516462" fg:w="337"/><text x="100.0346%" y="703.50"></text></g><g><title>__x64_sys_exit_group (435 samples, 0.08%)</title><rect x="99.7658%" y="773" width="0.0840%" height="15" fill="rgb(205,64,43)" fg:x="516365" fg:w="435"/><text x="100.0158%" y="783.50"></text></g><g><title>do_group_exit (435 samples, 0.08%)</title><rect x="99.7658%" y="757" width="0.0840%" height="15" fill="rgb(221,160,13)" fg:x="516365" fg:w="435"/><text x="100.0158%" y="767.50"></text></g><g><title>do_exit (435 samples, 0.08%)</title><rect x="99.7658%" y="741" width="0.0840%" height="15" fill="rgb(239,58,35)" fg:x="516365" fg:w="435"/><text x="100.0158%" y="751.50"></text></g><g><title>mmput (417 samples, 0.08%)</title><rect x="99.7693%" y="725" width="0.0806%" height="15" fill="rgb(251,26,40)" fg:x="516383" fg:w="417"/><text x="100.0193%" y="735.50"></text></g><g><title>do_syscall_64 (747 samples, 0.14%)</title><rect x="99.7129%" y="789" width="0.1443%" height="15" fill="rgb(247,0,4)" fg:x="516091" fg:w="747"/><text x="99.9629%" y="799.50"></text></g><g><title>page_remove_rmap (101 samples, 0.02%)</title><rect x="99.9022%" y="629" width="0.0195%" height="15" fill="rgb(218,130,10)" fg:x="517071" fg:w="101"/><text x="100.1522%" y="639.50"></text></g><g><title>mmput (291 samples, 0.06%)</title><rect x="99.8680%" y="693" width="0.0562%" height="15" fill="rgb(239,32,7)" fg:x="516894" fg:w="291"/><text x="100.1180%" y="703.50"></text></g><g><title>exit_mmap (291 samples, 0.06%)</title><rect x="99.8680%" y="677" width="0.0562%" height="15" fill="rgb(210,192,24)" fg:x="516894" fg:w="291"/><text x="100.1180%" y="687.50"></text></g><g><title>unmap_vmas (249 samples, 0.05%)</title><rect x="99.8762%" y="661" width="0.0481%" height="15" fill="rgb(226,212,17)" fg:x="516936" fg:w="249"/><text x="100.1262%" y="671.50"></text></g><g><title>unmap_page_range (249 samples, 0.05%)</title><rect x="99.8762%" y="645" width="0.0481%" height="15" fill="rgb(219,201,28)" fg:x="516936" fg:w="249"/><text x="100.1262%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,274 samples, 0.25%)</title><rect x="99.6831%" y="805" width="0.2461%" height="15" fill="rgb(235,207,41)" fg:x="515937" fg:w="1274"/><text x="99.9331%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (373 samples, 0.07%)</title><rect x="99.8572%" y="789" width="0.0721%" height="15" fill="rgb(241,95,54)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (373 samples, 0.07%)</title><rect x="99.8572%" y="773" width="0.0721%" height="15" fill="rgb(248,12,23)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="783.50"></text></g><g><title>arch_do_signal (373 samples, 0.07%)</title><rect x="99.8572%" y="757" width="0.0721%" height="15" fill="rgb(228,173,4)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="767.50"></text></g><g><title>get_signal (373 samples, 0.07%)</title><rect x="99.8572%" y="741" width="0.0721%" height="15" fill="rgb(254,99,5)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="751.50"></text></g><g><title>do_group_exit (373 samples, 0.07%)</title><rect x="99.8572%" y="725" width="0.0721%" height="15" fill="rgb(212,184,17)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="735.50"></text></g><g><title>do_exit (373 samples, 0.07%)</title><rect x="99.8572%" y="709" width="0.0721%" height="15" fill="rgb(252,174,1)" fg:x="516838" fg:w="373"/><text x="100.1072%" y="719.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (266 samples, 0.05%)</title><rect x="99.9293%" y="805" width="0.0514%" height="15" fill="rgb(241,118,51)" fg:x="517211" fg:w="266"/><text x="100.1793%" y="815.50"></text></g><g><title>all (517,577 samples, 100%)</title><rect x="0.0000%" y="837" width="100.0000%" height="15" fill="rgb(227,94,47)" fg:x="0" fg:w="517577"/><text x="0.2500%" y="847.50"></text></g><g><title>zig (97,444 samples, 18.83%)</title><rect x="81.1730%" y="821" width="18.8270%" height="15" fill="rgb(229,104,2)" fg:x="420133" fg:w="97444"/><text x="81.4230%" y="831.50">zig</text></g><g><title>syscall_return_via_sysret (61 samples, 0.01%)</title><rect x="99.9882%" y="805" width="0.0118%" height="15" fill="rgb(219,28,31)" fg:x="517516" fg:w="61"/><text x="100.2382%" y="815.50"></text></g></svg></svg> +\ No newline at end of file diff --git a/results/zigcc-j8.svg b/results/zigcc-j8.svg @@ -0,0 +1,491 @@ +<?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="694" onload="init(evt)" viewBox="0 0 1200 694" 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="694" 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="677.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="677.00"> </text><svg id="frames" x="10" width="1180" total_samples="2397237"><g><title>[anon] (1,500 samples, 0.06%)</title><rect x="0.0101%" y="613" width="0.0626%" height="15" fill="rgb(227,0,7)" fg:x="243" fg:w="1500"/><text x="0.2601%" y="623.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (423 samples, 0.02%)</title><rect x="0.1013%" y="421" width="0.0176%" height="15" fill="rgb(217,0,24)" fg:x="2429" fg:w="423"/><text x="0.3513%" y="431.50"></text></g><g><title>GraphBuilder::invoke (250 samples, 0.01%)</title><rect x="0.1893%" y="117" width="0.0104%" height="15" fill="rgb(221,193,54)" fg:x="4538" fg:w="250"/><text x="0.4393%" y="127.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (363 samples, 0.02%)</title><rect x="0.1855%" y="149" width="0.0151%" height="15" fill="rgb(248,212,6)" fg:x="4447" fg:w="363"/><text x="0.4355%" y="159.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (360 samples, 0.02%)</title><rect x="0.1856%" y="133" width="0.0150%" height="15" fill="rgb(208,68,35)" fg:x="4450" fg:w="360"/><text x="0.4356%" y="143.50"></text></g><g><title>GraphBuilder::try_inline_full (470 samples, 0.02%)</title><rect x="0.1848%" y="165" width="0.0196%" height="15" fill="rgb(232,128,0)" fg:x="4431" fg:w="470"/><text x="0.4348%" y="175.50"></text></g><g><title>GraphBuilder::try_inline (518 samples, 0.02%)</title><rect x="0.1847%" y="181" width="0.0216%" height="15" fill="rgb(207,160,47)" fg:x="4427" fg:w="518"/><text x="0.4347%" y="191.50"></text></g><g><title>GraphBuilder::invoke (681 samples, 0.03%)</title><rect x="0.1838%" y="197" width="0.0284%" height="15" fill="rgb(228,23,34)" fg:x="4405" fg:w="681"/><text x="0.4338%" y="207.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (894 samples, 0.04%)</title><rect x="0.1765%" y="229" width="0.0373%" height="15" fill="rgb(218,30,26)" fg:x="4232" fg:w="894"/><text x="0.4265%" y="239.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (884 samples, 0.04%)</title><rect x="0.1770%" y="213" width="0.0369%" height="15" fill="rgb(220,122,19)" fg:x="4242" fg:w="884"/><text x="0.4270%" y="223.50"></text></g><g><title>GraphBuilder::try_inline_full (1,108 samples, 0.05%)</title><rect x="0.1752%" y="245" width="0.0462%" height="15" fill="rgb(250,228,42)" fg:x="4200" fg:w="1108"/><text x="0.4252%" y="255.50"></text></g><g><title>GraphBuilder::try_inline (1,161 samples, 0.05%)</title><rect x="0.1749%" y="261" width="0.0484%" height="15" fill="rgb(240,193,28)" fg:x="4192" fg:w="1161"/><text x="0.4249%" y="271.50"></text></g><g><title>GraphBuilder::invoke (1,492 samples, 0.06%)</title><rect x="0.1727%" y="277" width="0.0622%" height="15" fill="rgb(216,20,37)" fg:x="4140" fg:w="1492"/><text x="0.4227%" y="287.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,881 samples, 0.08%)</title><rect x="0.1601%" y="293" width="0.0785%" height="15" fill="rgb(206,188,39)" fg:x="3838" fg:w="1881"/><text x="0.4101%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,891 samples, 0.08%)</title><rect x="0.1597%" y="309" width="0.0789%" height="15" fill="rgb(217,207,13)" fg:x="3829" fg:w="1891"/><text x="0.4097%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (2,360 samples, 0.10%)</title><rect x="0.1566%" y="325" width="0.0984%" height="15" fill="rgb(231,73,38)" fg:x="3754" fg:w="2360"/><text x="0.4066%" y="335.50"></text></g><g><title>GraphBuilder::try_inline (2,378 samples, 0.10%)</title><rect x="0.1563%" y="341" width="0.0992%" height="15" fill="rgb(225,20,46)" fg:x="3746" fg:w="2378"/><text x="0.4063%" y="351.50"></text></g><g><title>ciEnv::get_method_by_index_impl (375 samples, 0.02%)</title><rect x="0.2598%" y="325" width="0.0156%" height="15" fill="rgb(210,31,41)" fg:x="6228" fg:w="375"/><text x="0.5098%" y="335.50"></text></g><g><title>ciBytecodeStream::get_method (405 samples, 0.02%)</title><rect x="0.2586%" y="341" width="0.0169%" height="15" fill="rgb(221,200,47)" fg:x="6199" fg:w="405"/><text x="0.5086%" y="351.50"></text></g><g><title>GraphBuilder::invoke (3,067 samples, 0.13%)</title><rect x="0.1518%" y="357" width="0.1279%" height="15" fill="rgb(226,26,5)" fg:x="3639" fg:w="3067"/><text x="0.4018%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,551 samples, 0.15%)</title><rect x="0.1351%" y="373" width="0.1481%" height="15" fill="rgb(249,33,26)" fg:x="3238" fg:w="3551"/><text x="0.3851%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,604 samples, 0.15%)</title><rect x="0.1333%" y="389" width="0.1503%" height="15" fill="rgb(235,183,28)" fg:x="3195" fg:w="3604"/><text x="0.3833%" y="399.50"></text></g><g><title>GraphBuilder::GraphBuilder (4,001 samples, 0.17%)</title><rect x="0.1191%" y="405" width="0.1669%" height="15" fill="rgb(221,5,38)" fg:x="2856" fg:w="4001"/><text x="0.3691%" y="415.50"></text></g><g><title>IR::IR (4,017 samples, 0.17%)</title><rect x="0.1190%" y="421" width="0.1676%" height="15" fill="rgb(247,18,42)" fg:x="2852" fg:w="4017"/><text x="0.3690%" y="431.50"></text></g><g><title>Compilation::build_hir (5,038 samples, 0.21%)</title><rect x="0.1005%" y="437" width="0.2102%" height="15" fill="rgb(241,131,45)" fg:x="2409" fg:w="5038"/><text x="0.3505%" y="447.50"></text></g><g><title>LIR_Assembler::emit_code (712 samples, 0.03%)</title><rect x="0.3114%" y="421" width="0.0297%" height="15" fill="rgb(249,31,29)" fg:x="7466" fg:w="712"/><text x="0.5614%" y="431.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (361 samples, 0.02%)</title><rect x="0.3435%" y="421" width="0.0151%" height="15" fill="rgb(225,111,53)" fg:x="8235" fg:w="361"/><text x="0.5935%" y="431.50"></text></g><g><title>Compilation::emit_code_body (1,167 samples, 0.05%)</title><rect x="0.3106%" y="437" width="0.0487%" height="15" fill="rgb(238,160,17)" fg:x="7447" fg:w="1167"/><text x="0.5606%" y="447.50"></text></g><g><title>LIRGenerator::do_Goto (260 samples, 0.01%)</title><rect x="0.3674%" y="389" width="0.0108%" height="15" fill="rgb(214,148,48)" fg:x="8808" fg:w="260"/><text x="0.6174%" y="399.50"></text></g><g><title>LIRGenerator::block_do (993 samples, 0.04%)</title><rect x="0.3597%" y="405" width="0.0414%" height="15" fill="rgb(232,36,49)" fg:x="8622" fg:w="993"/><text x="0.6097%" y="415.50"></text></g><g><title>BlockList::iterate_forward (998 samples, 0.04%)</title><rect x="0.3595%" y="421" width="0.0416%" height="15" fill="rgb(209,103,24)" fg:x="8619" fg:w="998"/><text x="0.6095%" y="431.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (501 samples, 0.02%)</title><rect x="0.4146%" y="357" width="0.0209%" height="15" fill="rgb(229,88,8)" fg:x="9939" fg:w="501"/><text x="0.6646%" y="367.50"></text></g><g><title>LinearScanWalker::activate_current (777 samples, 0.03%)</title><rect x="0.4131%" y="373" width="0.0324%" height="15" fill="rgb(213,181,19)" fg:x="9904" fg:w="777"/><text x="0.6631%" y="383.50"></text></g><g><title>IntervalWalker::walk_to (978 samples, 0.04%)</title><rect x="0.4048%" y="389" width="0.0408%" height="15" fill="rgb(254,191,54)" fg:x="9704" fg:w="978"/><text x="0.6548%" y="399.50"></text></g><g><title>LinearScan::allocate_registers (1,087 samples, 0.05%)</title><rect x="0.4041%" y="405" width="0.0453%" height="15" fill="rgb(241,83,37)" fg:x="9687" fg:w="1087"/><text x="0.6541%" y="415.50"></text></g><g><title>LinearScan::assign_reg_num (715 samples, 0.03%)</title><rect x="0.4496%" y="389" width="0.0298%" height="15" fill="rgb(233,36,39)" fg:x="10777" fg:w="715"/><text x="0.6996%" y="399.50"></text></g><g><title>LinearScan::assign_reg_num (752 samples, 0.03%)</title><rect x="0.4494%" y="405" width="0.0314%" height="15" fill="rgb(226,3,54)" fg:x="10774" fg:w="752"/><text x="0.6994%" y="415.50"></text></g><g><title>LinearScan::build_intervals (899 samples, 0.04%)</title><rect x="0.4808%" y="405" width="0.0375%" height="15" fill="rgb(245,192,40)" fg:x="11526" fg:w="899"/><text x="0.7308%" y="415.50"></text></g><g><title>LinearScan::compute_local_live_sets (316 samples, 0.01%)</title><rect x="0.5209%" y="405" width="0.0132%" height="15" fill="rgb(238,167,29)" fg:x="12488" fg:w="316"/><text x="0.7709%" y="415.50"></text></g><g><title>LinearScan::do_linear_scan (3,578 samples, 0.15%)</title><rect x="0.4030%" y="421" width="0.1493%" height="15" fill="rgb(232,182,51)" fg:x="9660" fg:w="3578"/><text x="0.6530%" y="431.50"></text></g><g><title>Compilation::emit_lir (4,630 samples, 0.19%)</title><rect x="0.3593%" y="437" width="0.1931%" height="15" fill="rgb(231,60,39)" fg:x="8614" fg:w="4630"/><text x="0.6093%" y="447.50"></text></g><g><title>Compilation::compile_java_method (11,032 samples, 0.46%)</title><rect x="0.0999%" y="453" width="0.4602%" height="15" fill="rgb(208,69,12)" fg:x="2396" fg:w="11032"/><text x="0.3499%" y="463.50"></text></g><g><title>nmethod::nmethod (335 samples, 0.01%)</title><rect x="0.5743%" y="421" width="0.0140%" height="15" fill="rgb(235,93,37)" fg:x="13768" fg:w="335"/><text x="0.8243%" y="431.50"></text></g><g><title>nmethod::new_nmethod (534 samples, 0.02%)</title><rect x="0.5661%" y="437" width="0.0223%" height="15" fill="rgb(213,116,39)" fg:x="13571" fg:w="534"/><text x="0.8161%" y="447.50"></text></g><g><title>ciEnv::register_method (637 samples, 0.03%)</title><rect x="0.5619%" y="453" width="0.0266%" height="15" fill="rgb(222,207,29)" fg:x="13469" fg:w="637"/><text x="0.8119%" y="463.50"></text></g><g><title>Compilation::compile_method (11,715 samples, 0.49%)</title><rect x="0.0998%" y="469" width="0.4887%" height="15" fill="rgb(206,96,30)" fg:x="2392" fg:w="11715"/><text x="0.3498%" y="479.50"></text></g><g><title>Compilation::Compilation (11,737 samples, 0.49%)</title><rect x="0.0994%" y="485" width="0.4896%" height="15" fill="rgb(218,138,4)" fg:x="2383" fg:w="11737"/><text x="0.3494%" y="495.50"></text></g><g><title>Compiler::compile_method (11,758 samples, 0.49%)</title><rect x="0.0987%" y="501" width="0.4905%" height="15" fill="rgb(250,191,14)" fg:x="2365" fg:w="11758"/><text x="0.3487%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (12,325 samples, 0.51%)</title><rect x="0.0879%" y="517" width="0.5141%" height="15" fill="rgb(239,60,40)" fg:x="2106" fg:w="12325"/><text x="0.3379%" y="527.50"></text></g><g><title>CompileBroker::compiler_thread_loop (12,623 samples, 0.53%)</title><rect x="0.0876%" y="533" width="0.5266%" height="15" fill="rgb(206,27,48)" fg:x="2100" fg:w="12623"/><text x="0.3376%" y="543.50"></text></g><g><title>Thread::call_run (12,625 samples, 0.53%)</title><rect x="0.0876%" y="565" width="0.5266%" height="15" fill="rgb(225,35,8)" fg:x="2099" fg:w="12625"/><text x="0.3376%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (12,624 samples, 0.53%)</title><rect x="0.0876%" y="549" width="0.5266%" height="15" fill="rgb(250,213,24)" fg:x="2100" fg:w="12624"/><text x="0.3376%" y="559.50"></text></g><g><title>__GI___clone (12,650 samples, 0.53%)</title><rect x="0.0866%" y="613" width="0.5277%" height="15" fill="rgb(247,123,22)" fg:x="2075" fg:w="12650"/><text x="0.3366%" y="623.50"></text></g><g><title>start_thread (12,634 samples, 0.53%)</title><rect x="0.0872%" y="597" width="0.5270%" height="15" fill="rgb(231,138,38)" fg:x="2091" fg:w="12634"/><text x="0.3372%" y="607.50"></text></g><g><title>thread_native_entry (12,634 samples, 0.53%)</title><rect x="0.0872%" y="581" width="0.5270%" height="15" fill="rgb(231,145,46)" fg:x="2091" fg:w="12634"/><text x="0.3372%" y="591.50"></text></g><g><title>C1_CompilerThre (14,584 samples, 0.61%)</title><rect x="0.0083%" y="629" width="0.6084%" height="15" fill="rgb(251,118,11)" fg:x="198" fg:w="14584"/><text x="0.2583%" y="639.50"></text></g><g><title>_dl_update_slotinfo (262 samples, 0.01%)</title><rect x="0.7589%" y="597" width="0.0109%" height="15" fill="rgb(217,147,25)" fg:x="18193" fg:w="262"/><text x="1.0089%" y="607.50"></text></g><g><title>[anon] (3,997 samples, 0.17%)</title><rect x="0.6336%" y="613" width="0.1667%" height="15" fill="rgb(247,81,37)" fg:x="15188" fg:w="3997"/><text x="0.8836%" y="623.50"></text></g><g><title>Parse::do_one_block (361 samples, 0.02%)</title><rect x="0.8352%" y="229" width="0.0151%" height="15" fill="rgb(209,12,38)" fg:x="20021" fg:w="361"/><text x="1.0852%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (351 samples, 0.01%)</title><rect x="0.8356%" y="213" width="0.0146%" height="15" fill="rgb(227,1,9)" fg:x="20031" fg:w="351"/><text x="1.0856%" y="223.50"></text></g><g><title>Parse::do_all_blocks (372 samples, 0.02%)</title><rect x="0.8350%" y="245" width="0.0155%" height="15" fill="rgb(248,47,43)" fg:x="20016" fg:w="372"/><text x="1.0850%" y="255.50"></text></g><g><title>ParseGenerator::generate (436 samples, 0.02%)</title><rect x="0.8336%" y="277" width="0.0182%" height="15" fill="rgb(221,10,30)" fg:x="19984" fg:w="436"/><text x="1.0836%" y="287.50"></text></g><g><title>Parse::Parse (435 samples, 0.02%)</title><rect x="0.8337%" y="261" width="0.0181%" height="15" fill="rgb(210,229,1)" fg:x="19985" fg:w="435"/><text x="1.0837%" y="271.50"></text></g><g><title>Parse::do_call (650 samples, 0.03%)</title><rect x="0.8284%" y="293" width="0.0271%" height="15" fill="rgb(222,148,37)" fg:x="19859" fg:w="650"/><text x="1.0784%" y="303.50"></text></g><g><title>Parse::do_one_block (950 samples, 0.04%)</title><rect x="0.8261%" y="325" width="0.0396%" height="15" fill="rgb(234,67,33)" fg:x="19804" fg:w="950"/><text x="1.0761%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (941 samples, 0.04%)</title><rect x="0.8265%" y="309" width="0.0393%" height="15" fill="rgb(247,98,35)" fg:x="19813" fg:w="941"/><text x="1.0765%" y="319.50"></text></g><g><title>Parse::do_all_blocks (968 samples, 0.04%)</title><rect x="0.8258%" y="341" width="0.0404%" height="15" fill="rgb(247,138,52)" fg:x="19797" fg:w="968"/><text x="1.0758%" y="351.50"></text></g><g><title>ParseGenerator::generate (1,085 samples, 0.05%)</title><rect x="0.8227%" y="373" width="0.0453%" height="15" fill="rgb(213,79,30)" fg:x="19723" fg:w="1085"/><text x="1.0727%" y="383.50"></text></g><g><title>Parse::Parse (1,084 samples, 0.05%)</title><rect x="0.8228%" y="357" width="0.0452%" height="15" fill="rgb(246,177,23)" fg:x="19724" fg:w="1084"/><text x="1.0728%" y="367.50"></text></g><g><title>Parse::do_call (1,564 samples, 0.07%)</title><rect x="0.8119%" y="389" width="0.0652%" height="15" fill="rgb(230,62,27)" fg:x="19462" fg:w="1564"/><text x="1.0619%" y="399.50"></text></g><g><title>Parse::do_one_block (1,802 samples, 0.08%)</title><rect x="0.8108%" y="421" width="0.0752%" height="15" fill="rgb(216,154,8)" fg:x="19436" fg:w="1802"/><text x="1.0608%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (1,795 samples, 0.07%)</title><rect x="0.8111%" y="405" width="0.0749%" height="15" fill="rgb(244,35,45)" fg:x="19443" fg:w="1795"/><text x="1.0611%" y="415.50"></text></g><g><title>Parse::do_all_blocks (1,803 samples, 0.08%)</title><rect x="0.8108%" y="437" width="0.0752%" height="15" fill="rgb(251,115,12)" fg:x="19436" fg:w="1803"/><text x="1.0608%" y="447.50"></text></g><g><title>ParseGenerator::generate (1,817 samples, 0.08%)</title><rect x="0.8103%" y="469" width="0.0758%" height="15" fill="rgb(240,54,50)" fg:x="19424" fg:w="1817"/><text x="1.0603%" y="479.50"></text></g><g><title>Parse::Parse (1,817 samples, 0.08%)</title><rect x="0.8103%" y="453" width="0.0758%" height="15" fill="rgb(233,84,52)" fg:x="19424" fg:w="1817"/><text x="1.0603%" y="463.50"></text></g><g><title>Parse::do_call (337 samples, 0.01%)</title><rect x="0.8868%" y="373" width="0.0141%" height="15" fill="rgb(207,117,47)" fg:x="21259" fg:w="337"/><text x="1.1368%" y="383.50"></text></g><g><title>Parse::do_one_block (402 samples, 0.02%)</title><rect x="0.8864%" y="405" width="0.0168%" height="15" fill="rgb(249,43,39)" fg:x="21249" fg:w="402"/><text x="1.1364%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (399 samples, 0.02%)</title><rect x="0.8865%" y="389" width="0.0166%" height="15" fill="rgb(209,38,44)" fg:x="21252" fg:w="399"/><text x="1.1365%" y="399.50"></text></g><g><title>Parse::do_all_blocks (404 samples, 0.02%)</title><rect x="0.8864%" y="421" width="0.0169%" height="15" fill="rgb(236,212,23)" fg:x="21249" fg:w="404"/><text x="1.1364%" y="431.50"></text></g><g><title>ParseGenerator::generate (414 samples, 0.02%)</title><rect x="0.8861%" y="453" width="0.0173%" height="15" fill="rgb(242,79,21)" fg:x="21243" fg:w="414"/><text x="1.1361%" y="463.50"></text></g><g><title>Parse::Parse (414 samples, 0.02%)</title><rect x="0.8861%" y="437" width="0.0173%" height="15" fill="rgb(211,96,35)" fg:x="21243" fg:w="414"/><text x="1.1361%" y="447.50"></text></g><g><title>PredictedCallGenerator::generate (499 samples, 0.02%)</title><rect x="0.8861%" y="469" width="0.0208%" height="15" fill="rgb(253,215,40)" fg:x="21241" fg:w="499"/><text x="1.1361%" y="479.50"></text></g><g><title>Parse::do_call (2,519 samples, 0.11%)</title><rect x="0.8024%" y="485" width="0.1051%" height="15" fill="rgb(211,81,21)" fg:x="19236" fg:w="2519"/><text x="1.0524%" y="495.50"></text></g><g><title>Parse::do_all_blocks (2,530 samples, 0.11%)</title><rect x="0.8024%" y="533" width="0.1055%" height="15" fill="rgb(208,190,38)" fg:x="19235" fg:w="2530"/><text x="1.0524%" y="543.50"></text></g><g><title>Parse::do_one_block (2,530 samples, 0.11%)</title><rect x="0.8024%" y="517" width="0.1055%" height="15" fill="rgb(235,213,38)" fg:x="19235" fg:w="2530"/><text x="1.0524%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (2,530 samples, 0.11%)</title><rect x="0.8024%" y="501" width="0.1055%" height="15" fill="rgb(237,122,38)" fg:x="19235" fg:w="2530"/><text x="1.0524%" y="511.50"></text></g><g><title>C2Compiler::compile_method (2,548 samples, 0.11%)</title><rect x="0.8017%" y="597" width="0.1063%" height="15" fill="rgb(244,218,35)" fg:x="19218" fg:w="2548"/><text x="1.0517%" y="607.50"></text></g><g><title>Compile::Compile (2,548 samples, 0.11%)</title><rect x="0.8017%" y="581" width="0.1063%" height="15" fill="rgb(240,68,47)" fg:x="19218" fg:w="2548"/><text x="1.0517%" y="591.50"></text></g><g><title>ParseGenerator::generate (2,531 samples, 0.11%)</title><rect x="0.8024%" y="565" width="0.1056%" height="15" fill="rgb(210,16,53)" fg:x="19235" fg:w="2531"/><text x="1.0524%" y="575.50"></text></g><g><title>Parse::Parse (2,531 samples, 0.11%)</title><rect x="0.8024%" y="549" width="0.1056%" height="15" fill="rgb(235,124,12)" fg:x="19235" fg:w="2531"/><text x="1.0524%" y="559.50"></text></g><g><title>PhaseCFG::do_global_code_motion (264 samples, 0.01%)</title><rect x="0.9121%" y="581" width="0.0110%" height="15" fill="rgb(224,169,11)" fg:x="21866" fg:w="264"/><text x="1.1621%" y="591.50"></text></g><g><title>PhaseCFG::global_code_motion (264 samples, 0.01%)</title><rect x="0.9121%" y="565" width="0.0110%" height="15" fill="rgb(250,166,2)" fg:x="21866" fg:w="264"/><text x="1.1621%" y="575.50"></text></g><g><title>Compile::Code_Gen (419 samples, 0.02%)</title><rect x="0.9080%" y="597" width="0.0175%" height="15" fill="rgb(242,216,29)" fg:x="21768" fg:w="419"/><text x="1.1580%" y="607.50"></text></g><g><title>Compile::BuildOopMaps (912 samples, 0.04%)</title><rect x="0.9261%" y="549" width="0.0380%" height="15" fill="rgb(230,116,27)" fg:x="22201" fg:w="912"/><text x="1.1761%" y="559.50"></text></g><g><title>Compile::shorten_branches (394 samples, 0.02%)</title><rect x="0.9666%" y="533" width="0.0164%" height="15" fill="rgb(228,99,48)" fg:x="23172" fg:w="394"/><text x="1.2166%" y="543.50"></text></g><g><title>Compile::init_buffer (455 samples, 0.02%)</title><rect x="0.9642%" y="549" width="0.0190%" height="15" fill="rgb(253,11,6)" fg:x="23113" fg:w="455"/><text x="1.2142%" y="559.50"></text></g><g><title>Compile::Output (1,379 samples, 0.06%)</title><rect x="0.9257%" y="565" width="0.0575%" height="15" fill="rgb(247,143,39)" fg:x="22192" fg:w="1379"/><text x="1.1757%" y="575.50"></text></g><g><title>Compile::Process_OopMap_Node (266 samples, 0.01%)</title><rect x="0.9924%" y="549" width="0.0111%" height="15" fill="rgb(236,97,10)" fg:x="23789" fg:w="266"/><text x="1.2424%" y="559.50"></text></g><g><title>Compile::fill_buffer (663 samples, 0.03%)</title><rect x="0.9833%" y="565" width="0.0277%" height="15" fill="rgb(233,208,19)" fg:x="23572" fg:w="663"/><text x="1.2333%" y="575.50"></text></g><g><title>Matcher::find_shared (441 samples, 0.02%)</title><rect x="1.0160%" y="549" width="0.0184%" height="15" fill="rgb(216,164,2)" fg:x="24357" fg:w="441"/><text x="1.2660%" y="559.50"></text></g><g><title>Arena::contains (612 samples, 0.03%)</title><rect x="1.0524%" y="533" width="0.0255%" height="15" fill="rgb(220,129,5)" fg:x="25228" fg:w="612"/><text x="1.3024%" y="543.50"></text></g><g><title>Matcher::Label_Root (366 samples, 0.02%)</title><rect x="1.1018%" y="501" width="0.0153%" height="15" fill="rgb(242,17,10)" fg:x="26413" fg:w="366"/><text x="1.3518%" y="511.50"></text></g><g><title>Matcher::Label_Root (549 samples, 0.02%)</title><rect x="1.0977%" y="517" width="0.0229%" height="15" fill="rgb(242,107,0)" fg:x="26315" fg:w="549"/><text x="1.3477%" y="527.50"></text></g><g><title>Matcher::ReduceInst (370 samples, 0.02%)</title><rect x="1.1206%" y="517" width="0.0154%" height="15" fill="rgb(251,28,31)" fg:x="26864" fg:w="370"/><text x="1.3706%" y="527.50"></text></g><g><title>Matcher::match_tree (1,189 samples, 0.05%)</title><rect x="1.0871%" y="533" width="0.0496%" height="15" fill="rgb(233,223,10)" fg:x="26061" fg:w="1189"/><text x="1.3371%" y="543.50"></text></g><g><title>Matcher::xform (2,597 samples, 0.11%)</title><rect x="1.0353%" y="549" width="0.1083%" height="15" fill="rgb(215,21,27)" fg:x="24819" fg:w="2597"/><text x="1.2853%" y="559.50"></text></g><g><title>Matcher::match (3,174 samples, 0.13%)</title><rect x="1.0117%" y="565" width="0.1324%" height="15" fill="rgb(232,23,21)" fg:x="24252" fg:w="3174"/><text x="1.2617%" y="575.50"></text></g><g><title>Node_Backward_Iterator::next (301 samples, 0.01%)</title><rect x="1.1955%" y="517" width="0.0126%" height="15" fill="rgb(244,5,23)" fg:x="28659" fg:w="301"/><text x="1.4455%" y="527.50"></text></g><g><title>PhaseCFG::schedule_late (799 samples, 0.03%)</title><rect x="1.1907%" y="533" width="0.0333%" height="15" fill="rgb(226,81,46)" fg:x="28543" fg:w="799"/><text x="1.4407%" y="543.50"></text></g><g><title>PhaseCFG::schedule_local (683 samples, 0.03%)</title><rect x="1.2240%" y="533" width="0.0285%" height="15" fill="rgb(247,70,30)" fg:x="29342" fg:w="683"/><text x="1.4740%" y="543.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (528 samples, 0.02%)</title><rect x="1.2537%" y="533" width="0.0220%" height="15" fill="rgb(212,68,19)" fg:x="30055" fg:w="528"/><text x="1.5037%" y="543.50"></text></g><g><title>PhaseLive::add_livein (243 samples, 0.01%)</title><rect x="1.3052%" y="517" width="0.0101%" height="15" fill="rgb(240,187,13)" fg:x="31288" fg:w="243"/><text x="1.5552%" y="527.50"></text></g><g><title>PhaseLive::add_liveout (459 samples, 0.02%)</title><rect x="1.3153%" y="517" width="0.0191%" height="15" fill="rgb(223,113,26)" fg:x="31531" fg:w="459"/><text x="1.5653%" y="527.50"></text></g><g><title>PhaseLive::compute (1,064 samples, 0.04%)</title><rect x="1.2902%" y="533" width="0.0444%" height="15" fill="rgb(206,192,2)" fg:x="30930" fg:w="1064"/><text x="1.5402%" y="543.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,215 samples, 0.18%)</title><rect x="1.1596%" y="565" width="0.1758%" height="15" fill="rgb(241,108,4)" fg:x="27799" fg:w="4215"/><text x="1.4096%" y="575.50"></text></g><g><title>PhaseCFG::global_code_motion (4,025 samples, 0.17%)</title><rect x="1.1676%" y="549" width="0.1679%" height="15" fill="rgb(247,173,49)" fg:x="27989" fg:w="4025"/><text x="1.4176%" y="559.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,282 samples, 0.05%)</title><rect x="1.3472%" y="549" width="0.0535%" height="15" fill="rgb(224,114,35)" fg:x="32296" fg:w="1282"/><text x="1.5972%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (337 samples, 0.01%)</title><rect x="1.4292%" y="533" width="0.0141%" height="15" fill="rgb(245,159,27)" fg:x="34261" fg:w="337"/><text x="1.6792%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (405 samples, 0.02%)</title><rect x="1.4748%" y="517" width="0.0169%" height="15" fill="rgb(245,172,44)" fg:x="35355" fg:w="405"/><text x="1.7248%" y="527.50"></text></g><g><title>PhaseIFG::re_insert (991 samples, 0.04%)</title><rect x="1.4510%" y="533" width="0.0413%" height="15" fill="rgb(236,23,11)" fg:x="34785" fg:w="991"/><text x="1.7010%" y="543.50"></text></g><g><title>PhaseChaitin::Select (2,389 samples, 0.10%)</title><rect x="1.4007%" y="549" width="0.0997%" height="15" fill="rgb(205,117,38)" fg:x="33578" fg:w="2389"/><text x="1.6507%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (374 samples, 0.02%)</title><rect x="1.5137%" y="533" width="0.0156%" height="15" fill="rgb(237,72,25)" fg:x="36287" fg:w="374"/><text x="1.7637%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (512 samples, 0.02%)</title><rect x="1.5542%" y="517" width="0.0214%" height="15" fill="rgb(244,70,9)" fg:x="37259" fg:w="512"/><text x="1.8042%" y="527.50"></text></g><g><title>PhaseChaitin::Simplify (1,806 samples, 0.08%)</title><rect x="1.5004%" y="549" width="0.0753%" height="15" fill="rgb(217,125,39)" fg:x="35967" fg:w="1806"/><text x="1.7504%" y="559.50"></text></g><g><title>PhaseIFG::remove_node (1,112 samples, 0.05%)</title><rect x="1.5293%" y="533" width="0.0464%" height="15" fill="rgb(235,36,10)" fg:x="36661" fg:w="1112"/><text x="1.7793%" y="543.50"></text></g><g><title>PhaseChaitin::Split (3,860 samples, 0.16%)</title><rect x="1.5757%" y="549" width="0.1610%" height="15" fill="rgb(251,123,47)" fg:x="37773" fg:w="3860"/><text x="1.8257%" y="559.50"></text></g><g><title>IndexSet::IndexSet (354 samples, 0.01%)</title><rect x="1.7809%" y="533" width="0.0148%" height="15" fill="rgb(221,13,13)" fg:x="42692" fg:w="354"/><text x="2.0309%" y="543.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (853 samples, 0.04%)</title><rect x="1.8002%" y="533" width="0.0356%" height="15" fill="rgb(238,131,9)" fg:x="43156" fg:w="853"/><text x="2.0502%" y="543.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (594 samples, 0.02%)</title><rect x="1.8406%" y="533" width="0.0248%" height="15" fill="rgb(211,50,8)" fg:x="44124" fg:w="594"/><text x="2.0906%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,004 samples, 0.04%)</title><rect x="1.9626%" y="517" width="0.0419%" height="15" fill="rgb(245,182,24)" fg:x="47049" fg:w="1004"/><text x="2.2126%" y="527.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,352 samples, 0.14%)</title><rect x="1.8654%" y="533" width="0.1398%" height="15" fill="rgb(242,14,37)" fg:x="44718" fg:w="3352"/><text x="2.1154%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (245 samples, 0.01%)</title><rect x="2.0344%" y="517" width="0.0102%" height="15" fill="rgb(246,228,12)" fg:x="48769" fg:w="245"/><text x="2.2844%" y="527.50"></text></g><g><title>RegMask::Size (385 samples, 0.02%)</title><rect x="2.0446%" y="517" width="0.0161%" height="15" fill="rgb(213,55,15)" fg:x="49014" fg:w="385"/><text x="2.2946%" y="527.50"></text></g><g><title>RegMask::smear_to_sets (763 samples, 0.03%)</title><rect x="2.0607%" y="517" width="0.0318%" height="15" fill="rgb(209,9,3)" fg:x="49399" fg:w="763"/><text x="2.3107%" y="527.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,005 samples, 0.08%)</title><rect x="2.0096%" y="533" width="0.0836%" height="15" fill="rgb(230,59,30)" fg:x="48174" fg:w="2005"/><text x="2.2596%" y="543.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (8,672 samples, 0.36%)</title><rect x="1.7368%" y="549" width="0.3617%" height="15" fill="rgb(209,121,21)" fg:x="41635" fg:w="8672"/><text x="1.9868%" y="559.50"></text></g><g><title>PhaseChaitin::interfere_with_live (383 samples, 0.02%)</title><rect x="2.1063%" y="533" width="0.0160%" height="15" fill="rgb(220,109,13)" fg:x="50492" fg:w="383"/><text x="2.3563%" y="543.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (572 samples, 0.02%)</title><rect x="2.0985%" y="549" width="0.0239%" height="15" fill="rgb(232,18,1)" fg:x="50307" fg:w="572"/><text x="2.3485%" y="559.50"></text></g><g><title>RegMask::Size (1,375 samples, 0.06%)</title><rect x="2.2429%" y="533" width="0.0574%" height="15" fill="rgb(215,41,42)" fg:x="53767" fg:w="1375"/><text x="2.4929%" y="543.50"></text></g><g><title>RegMask::clear_to_sets (242 samples, 0.01%)</title><rect x="2.3002%" y="533" width="0.0101%" height="15" fill="rgb(224,123,36)" fg:x="55142" fg:w="242"/><text x="2.5502%" y="543.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,710 samples, 0.20%)</title><rect x="2.1380%" y="549" width="0.1965%" height="15" fill="rgb(240,125,3)" fg:x="51252" fg:w="4710"/><text x="2.3880%" y="559.50"></text></g><g><title>PhaseChaitin::merge_multidefs (607 samples, 0.03%)</title><rect x="2.3344%" y="549" width="0.0253%" height="15" fill="rgb(205,98,50)" fg:x="55962" fg:w="607"/><text x="2.5844%" y="559.50"></text></g><g><title>PhaseChaitin::elide_copy (2,354 samples, 0.10%)</title><rect x="2.4492%" y="533" width="0.0982%" height="15" fill="rgb(205,185,37)" fg:x="58712" fg:w="2354"/><text x="2.6992%" y="543.50"></text></g><g><title>find_lowest_bit (395 samples, 0.02%)</title><rect x="2.5540%" y="533" width="0.0165%" height="15" fill="rgb(238,207,15)" fg:x="61226" fg:w="395"/><text x="2.8040%" y="543.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,058 samples, 0.21%)</title><rect x="2.3598%" y="549" width="0.2110%" height="15" fill="rgb(213,199,42)" fg:x="56569" fg:w="5058"/><text x="2.6098%" y="559.50"></text></g><g><title>IndexSet::lrg_union (507 samples, 0.02%)</title><rect x="2.5998%" y="501" width="0.0211%" height="15" fill="rgb(235,201,11)" fg:x="62323" fg:w="507"/><text x="2.8498%" y="511.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (591 samples, 0.02%)</title><rect x="2.6215%" y="501" width="0.0247%" height="15" fill="rgb(207,46,11)" fg:x="62843" fg:w="591"/><text x="2.8715%" y="511.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (1,357 samples, 0.06%)</title><rect x="2.5975%" y="517" width="0.0566%" height="15" fill="rgb(241,35,35)" fg:x="62269" fg:w="1357"/><text x="2.8475%" y="527.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,772 samples, 0.07%)</title><rect x="2.5804%" y="549" width="0.0739%" height="15" fill="rgb(243,32,47)" fg:x="61858" fg:w="1772"/><text x="2.8304%" y="559.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,570 samples, 0.07%)</title><rect x="2.5888%" y="533" width="0.0655%" height="15" fill="rgb(247,202,23)" fg:x="62060" fg:w="1570"/><text x="2.8388%" y="543.50"></text></g><g><title>IndexSetIterator::advance_and_next (590 samples, 0.02%)</title><rect x="2.6753%" y="533" width="0.0246%" height="15" fill="rgb(219,102,11)" fg:x="64133" fg:w="590"/><text x="2.9253%" y="543.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,095 samples, 0.05%)</title><rect x="2.6544%" y="549" width="0.0457%" height="15" fill="rgb(243,110,44)" fg:x="63632" fg:w="1095"/><text x="2.9044%" y="559.50"></text></g><g><title>IndexSetIterator::advance_and_next (456 samples, 0.02%)</title><rect x="2.7243%" y="533" width="0.0190%" height="15" fill="rgb(222,74,54)" fg:x="65307" fg:w="456"/><text x="2.9743%" y="543.50"></text></g><g><title>PhaseIFG::SquareUp (1,038 samples, 0.04%)</title><rect x="2.7001%" y="549" width="0.0433%" height="15" fill="rgb(216,99,12)" fg:x="64727" fg:w="1038"/><text x="2.9501%" y="559.50"></text></g><g><title>IndexSet::initialize (248 samples, 0.01%)</title><rect x="2.7494%" y="533" width="0.0103%" height="15" fill="rgb(226,22,26)" fg:x="65910" fg:w="248"/><text x="2.9994%" y="543.50"></text></g><g><title>PhaseIFG::init (476 samples, 0.02%)</title><rect x="2.7434%" y="549" width="0.0199%" height="15" fill="rgb(217,163,10)" fg:x="65765" fg:w="476"/><text x="2.9934%" y="559.50"></text></g><g><title>IndexSet::alloc_block_containing (244 samples, 0.01%)</title><rect x="2.8705%" y="517" width="0.0102%" height="15" fill="rgb(213,25,53)" fg:x="68813" fg:w="244"/><text x="3.1205%" y="527.50"></text></g><g><title>IndexSetIterator::advance_and_next (322 samples, 0.01%)</title><rect x="2.8830%" y="517" width="0.0134%" height="15" fill="rgb(252,105,26)" fg:x="69112" fg:w="322"/><text x="3.1330%" y="527.50"></text></g><g><title>PhaseLive::add_liveout (1,498 samples, 0.06%)</title><rect x="2.8349%" y="533" width="0.0625%" height="15" fill="rgb(220,39,43)" fg:x="67960" fg:w="1498"/><text x="3.0849%" y="543.50"></text></g><g><title>PhaseLive::compute (3,240 samples, 0.14%)</title><rect x="2.7633%" y="549" width="0.1352%" height="15" fill="rgb(229,68,48)" fg:x="66242" fg:w="3240"/><text x="3.0133%" y="559.50"></text></g><g><title>PhaseChaitin::Register_Allocate (37,494 samples, 1.56%)</title><rect x="1.3414%" y="565" width="1.5641%" height="15" fill="rgb(252,8,32)" fg:x="32157" fg:w="37494"/><text x="1.5914%" y="575.50"></text></g><g><title>Compile::Code_Gen (47,525 samples, 1.98%)</title><rect x="0.9256%" y="581" width="1.9825%" height="15" fill="rgb(223,20,43)" fg:x="22188" fg:w="47525"/><text x="1.1756%" y="591.50">C..</text></g><g><title>Parse::do_one_block (309 samples, 0.01%)</title><rect x="2.9151%" y="53" width="0.0129%" height="15" fill="rgb(229,81,49)" fg:x="69881" fg:w="309"/><text x="3.1651%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (308 samples, 0.01%)</title><rect x="2.9151%" y="37" width="0.0128%" height="15" fill="rgb(236,28,36)" fg:x="69882" fg:w="308"/><text x="3.1651%" y="47.50"></text></g><g><title>Parse::do_all_blocks (315 samples, 0.01%)</title><rect x="2.9150%" y="69" width="0.0131%" height="15" fill="rgb(249,185,26)" fg:x="69879" fg:w="315"/><text x="3.1650%" y="79.50"></text></g><g><title>ParseGenerator::generate (337 samples, 0.01%)</title><rect x="2.9144%" y="101" width="0.0141%" height="15" fill="rgb(249,174,33)" fg:x="69864" fg:w="337"/><text x="3.1644%" y="111.50"></text></g><g><title>Parse::Parse (337 samples, 0.01%)</title><rect x="2.9144%" y="85" width="0.0141%" height="15" fill="rgb(233,201,37)" fg:x="69864" fg:w="337"/><text x="3.1644%" y="95.50"></text></g><g><title>Parse::do_call (440 samples, 0.02%)</title><rect x="2.9117%" y="117" width="0.0184%" height="15" fill="rgb(221,78,26)" fg:x="69801" fg:w="440"/><text x="3.1617%" y="127.50"></text></g><g><title>Parse::do_one_block (517 samples, 0.02%)</title><rect x="2.9115%" y="149" width="0.0216%" height="15" fill="rgb(250,127,30)" fg:x="69795" fg:w="517"/><text x="3.1615%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (516 samples, 0.02%)</title><rect x="2.9115%" y="133" width="0.0215%" height="15" fill="rgb(230,49,44)" fg:x="69796" fg:w="516"/><text x="3.1615%" y="143.50"></text></g><g><title>Parse::do_all_blocks (518 samples, 0.02%)</title><rect x="2.9115%" y="165" width="0.0216%" height="15" fill="rgb(229,67,23)" fg:x="69795" fg:w="518"/><text x="3.1615%" y="175.50"></text></g><g><title>ParseGenerator::generate (530 samples, 0.02%)</title><rect x="2.9110%" y="197" width="0.0221%" height="15" fill="rgb(249,83,47)" fg:x="69784" fg:w="530"/><text x="3.1610%" y="207.50"></text></g><g><title>Parse::Parse (530 samples, 0.02%)</title><rect x="2.9110%" y="181" width="0.0221%" height="15" fill="rgb(215,43,3)" fg:x="69784" fg:w="530"/><text x="3.1610%" y="191.50"></text></g><g><title>Parse::do_call (650 samples, 0.03%)</title><rect x="2.9097%" y="213" width="0.0271%" height="15" fill="rgb(238,154,13)" fg:x="69752" fg:w="650"/><text x="3.1597%" y="223.50"></text></g><g><title>Parse::do_all_blocks (665 samples, 0.03%)</title><rect x="2.9096%" y="261" width="0.0277%" height="15" fill="rgb(219,56,2)" fg:x="69751" fg:w="665"/><text x="3.1596%" y="271.50"></text></g><g><title>Parse::do_one_block (665 samples, 0.03%)</title><rect x="2.9096%" y="245" width="0.0277%" height="15" fill="rgb(233,0,4)" fg:x="69751" fg:w="665"/><text x="3.1596%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (665 samples, 0.03%)</title><rect x="2.9096%" y="229" width="0.0277%" height="15" fill="rgb(235,30,7)" fg:x="69751" fg:w="665"/><text x="3.1596%" y="239.50"></text></g><g><title>ParseGenerator::generate (667 samples, 0.03%)</title><rect x="2.9096%" y="293" width="0.0278%" height="15" fill="rgb(250,79,13)" fg:x="69750" fg:w="667"/><text x="3.1596%" y="303.50"></text></g><g><title>Parse::Parse (667 samples, 0.03%)</title><rect x="2.9096%" y="277" width="0.0278%" height="15" fill="rgb(211,146,34)" fg:x="69750" fg:w="667"/><text x="3.1596%" y="287.50"></text></g><g><title>Parse::do_call (801 samples, 0.03%)</title><rect x="2.9086%" y="309" width="0.0334%" height="15" fill="rgb(228,22,38)" fg:x="69726" fg:w="801"/><text x="3.1586%" y="319.50"></text></g><g><title>Parse::do_all_blocks (802 samples, 0.03%)</title><rect x="2.9086%" y="357" width="0.0335%" height="15" fill="rgb(235,168,5)" fg:x="69726" fg:w="802"/><text x="3.1586%" y="367.50"></text></g><g><title>Parse::do_one_block (802 samples, 0.03%)</title><rect x="2.9086%" y="341" width="0.0335%" height="15" fill="rgb(221,155,16)" fg:x="69726" fg:w="802"/><text x="3.1586%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (802 samples, 0.03%)</title><rect x="2.9086%" y="325" width="0.0335%" height="15" fill="rgb(215,215,53)" fg:x="69726" fg:w="802"/><text x="3.1586%" y="335.50"></text></g><g><title>ParseGenerator::generate (809 samples, 0.03%)</title><rect x="2.9086%" y="389" width="0.0337%" height="15" fill="rgb(223,4,10)" fg:x="69726" fg:w="809"/><text x="3.1586%" y="399.50"></text></g><g><title>Parse::Parse (809 samples, 0.03%)</title><rect x="2.9086%" y="373" width="0.0337%" height="15" fill="rgb(234,103,6)" fg:x="69726" fg:w="809"/><text x="3.1586%" y="383.50"></text></g><g><title>ParseGenerator::generate (980 samples, 0.04%)</title><rect x="2.9085%" y="485" width="0.0409%" height="15" fill="rgb(227,97,0)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="495.50"></text></g><g><title>Parse::Parse (980 samples, 0.04%)</title><rect x="2.9085%" y="469" width="0.0409%" height="15" fill="rgb(234,150,53)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="479.50"></text></g><g><title>Parse::do_all_blocks (980 samples, 0.04%)</title><rect x="2.9085%" y="453" width="0.0409%" height="15" fill="rgb(228,201,54)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="463.50"></text></g><g><title>Parse::do_one_block (980 samples, 0.04%)</title><rect x="2.9085%" y="437" width="0.0409%" height="15" fill="rgb(222,22,37)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (980 samples, 0.04%)</title><rect x="2.9085%" y="421" width="0.0409%" height="15" fill="rgb(237,53,32)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="431.50"></text></g><g><title>Parse::do_call (980 samples, 0.04%)</title><rect x="2.9085%" y="405" width="0.0409%" height="15" fill="rgb(233,25,53)" fg:x="69724" fg:w="980"/><text x="3.1585%" y="415.50"></text></g><g><title>Parse::do_call (1,256 samples, 0.05%)</title><rect x="2.9085%" y="501" width="0.0524%" height="15" fill="rgb(210,40,34)" fg:x="69724" fg:w="1256"/><text x="3.1585%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (276 samples, 0.01%)</title><rect x="2.9494%" y="485" width="0.0115%" height="15" fill="rgb(241,220,44)" fg:x="70704" fg:w="276"/><text x="3.1994%" y="495.50"></text></g><g><title>ParseGenerator::generate (1,263 samples, 0.05%)</title><rect x="2.9085%" y="581" width="0.0527%" height="15" fill="rgb(235,28,35)" fg:x="69724" fg:w="1263"/><text x="3.1585%" y="591.50"></text></g><g><title>Parse::Parse (1,263 samples, 0.05%)</title><rect x="2.9085%" y="565" width="0.0527%" height="15" fill="rgb(210,56,17)" fg:x="69724" fg:w="1263"/><text x="3.1585%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,263 samples, 0.05%)</title><rect x="2.9085%" y="549" width="0.0527%" height="15" fill="rgb(224,130,29)" fg:x="69724" fg:w="1263"/><text x="3.1585%" y="559.50"></text></g><g><title>Parse::do_one_block (1,263 samples, 0.05%)</title><rect x="2.9085%" y="533" width="0.0527%" height="15" fill="rgb(235,212,8)" fg:x="69724" fg:w="1263"/><text x="3.1585%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,263 samples, 0.05%)</title><rect x="2.9085%" y="517" width="0.0527%" height="15" fill="rgb(223,33,50)" fg:x="69724" fg:w="1263"/><text x="3.1585%" y="527.50"></text></g><g><title>Compile::Compile (48,801 samples, 2.04%)</title><rect x="0.9255%" y="597" width="2.0357%" height="15" fill="rgb(219,149,13)" fg:x="22187" fg:w="48801"/><text x="1.1755%" y="607.50">C..</text></g><g><title>Compile::final_graph_reshaping_walk (332 samples, 0.01%)</title><rect x="2.9617%" y="565" width="0.0138%" height="15" fill="rgb(250,156,29)" fg:x="70999" fg:w="332"/><text x="3.2117%" y="575.50"></text></g><g><title>Compile::final_graph_reshaping (338 samples, 0.01%)</title><rect x="2.9615%" y="581" width="0.0141%" height="15" fill="rgb(216,193,19)" fg:x="70994" fg:w="338"/><text x="3.2115%" y="591.50"></text></g><g><title>Compile::remove_speculative_types (293 samples, 0.01%)</title><rect x="2.9788%" y="581" width="0.0122%" height="15" fill="rgb(216,135,14)" fg:x="71410" fg:w="293"/><text x="3.2288%" y="591.50"></text></g><g><title>ConnectionGraph::compute_escape (543 samples, 0.02%)</title><rect x="2.9913%" y="565" width="0.0227%" height="15" fill="rgb(241,47,5)" fg:x="71709" fg:w="543"/><text x="3.2413%" y="575.50"></text></g><g><title>ConnectionGraph::do_analysis (550 samples, 0.02%)</title><rect x="2.9911%" y="581" width="0.0229%" height="15" fill="rgb(233,42,35)" fg:x="71703" fg:w="550"/><text x="3.2411%" y="591.50"></text></g><g><title>PhaseCCP::analyze (835 samples, 0.03%)</title><rect x="3.0141%" y="581" width="0.0348%" height="15" fill="rgb(231,13,6)" fg:x="72256" fg:w="835"/><text x="3.2641%" y="591.50"></text></g><g><title>PhaseCCP::do_transform (249 samples, 0.01%)</title><rect x="3.0490%" y="581" width="0.0104%" height="15" fill="rgb(207,181,40)" fg:x="73091" fg:w="249"/><text x="3.2990%" y="591.50"></text></g><g><title>PhaseCCP::transform (248 samples, 0.01%)</title><rect x="3.0490%" y="565" width="0.0103%" height="15" fill="rgb(254,173,49)" fg:x="73092" fg:w="248"/><text x="3.2990%" y="575.50"></text></g><g><title>IdealLoopTree::iteration_split (271 samples, 0.01%)</title><rect x="3.0655%" y="565" width="0.0113%" height="15" fill="rgb(221,1,38)" fg:x="73488" fg:w="271"/><text x="3.3155%" y="575.50"></text></g><g><title>IdealLoopTree::loop_predication (310 samples, 0.01%)</title><rect x="3.0768%" y="565" width="0.0129%" height="15" fill="rgb(206,124,46)" fg:x="73759" fg:w="310"/><text x="3.3268%" y="575.50"></text></g><g><title>NTarjan::DFS (372 samples, 0.02%)</title><rect x="3.1275%" y="549" width="0.0155%" height="15" fill="rgb(249,21,11)" fg:x="74973" fg:w="372"/><text x="3.3775%" y="559.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,291 samples, 0.05%)</title><rect x="3.0920%" y="565" width="0.0539%" height="15" fill="rgb(222,201,40)" fg:x="74123" fg:w="1291"/><text x="3.3420%" y="575.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (434 samples, 0.02%)</title><rect x="3.2011%" y="549" width="0.0181%" height="15" fill="rgb(235,61,29)" fg:x="76737" fg:w="434"/><text x="3.4511%" y="559.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (395 samples, 0.02%)</title><rect x="3.2027%" y="533" width="0.0165%" height="15" fill="rgb(219,207,3)" fg:x="76776" fg:w="395"/><text x="3.4527%" y="543.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,849 samples, 0.08%)</title><rect x="3.1459%" y="565" width="0.0771%" height="15" fill="rgb(222,56,46)" fg:x="75414" fg:w="1849"/><text x="3.3959%" y="575.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (306 samples, 0.01%)</title><rect x="3.3382%" y="501" width="0.0128%" height="15" fill="rgb(239,76,54)" fg:x="80025" fg:w="306"/><text x="3.5882%" y="511.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (449 samples, 0.02%)</title><rect x="3.3341%" y="517" width="0.0187%" height="15" fill="rgb(231,124,27)" fg:x="79926" fg:w="449"/><text x="3.5841%" y="527.50"></text></g><g><title>PhaseIdealLoop::dom_depth (374 samples, 0.02%)</title><rect x="3.4203%" y="501" width="0.0156%" height="15" fill="rgb(249,195,6)" fg:x="81992" fg:w="374"/><text x="3.6703%" y="511.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,826 samples, 0.08%)</title><rect x="3.3599%" y="517" width="0.0762%" height="15" fill="rgb(237,174,47)" fg:x="80544" fg:w="1826"/><text x="3.6099%" y="527.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,855 samples, 0.12%)</title><rect x="3.3180%" y="533" width="0.1191%" height="15" fill="rgb(206,201,31)" fg:x="79540" fg:w="2855"/><text x="3.5680%" y="543.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (3,845 samples, 0.16%)</title><rect x="3.2811%" y="549" width="0.1604%" height="15" fill="rgb(231,57,52)" fg:x="78655" fg:w="3845"/><text x="3.5311%" y="559.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (5,253 samples, 0.22%)</title><rect x="3.2230%" y="565" width="0.2191%" height="15" fill="rgb(248,177,22)" fg:x="77263" fg:w="5253"/><text x="3.4730%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (989 samples, 0.04%)</title><rect x="3.4425%" y="565" width="0.0413%" height="15" fill="rgb(215,211,37)" fg:x="82526" fg:w="989"/><text x="3.6925%" y="575.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (287 samples, 0.01%)</title><rect x="3.5134%" y="549" width="0.0120%" height="15" fill="rgb(241,128,51)" fg:x="84224" fg:w="287"/><text x="3.7634%" y="559.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (244 samples, 0.01%)</title><rect x="3.5512%" y="533" width="0.0102%" height="15" fill="rgb(227,165,31)" fg:x="85130" fg:w="244"/><text x="3.8012%" y="543.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (929 samples, 0.04%)</title><rect x="3.5254%" y="549" width="0.0388%" height="15" fill="rgb(228,167,24)" fg:x="84511" fg:w="929"/><text x="3.7754%" y="559.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,872 samples, 0.08%)</title><rect x="3.4862%" y="565" width="0.0781%" height="15" fill="rgb(228,143,12)" fg:x="83572" fg:w="1872"/><text x="3.7362%" y="575.50"></text></g><g><title>RegionNode::Ideal (258 samples, 0.01%)</title><rect x="3.6097%" y="533" width="0.0108%" height="15" fill="rgb(249,149,8)" fg:x="86532" fg:w="258"/><text x="3.8597%" y="543.50"></text></g><g><title>PhaseIterGVN::transform_old (1,444 samples, 0.06%)</title><rect x="3.5663%" y="549" width="0.0602%" height="15" fill="rgb(243,35,44)" fg:x="85492" fg:w="1444"/><text x="3.8163%" y="559.50"></text></g><g><title>PhaseIterGVN::optimize (1,501 samples, 0.06%)</title><rect x="3.5645%" y="565" width="0.0626%" height="15" fill="rgb(246,89,9)" fg:x="85449" fg:w="1501"/><text x="3.8145%" y="575.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (13,717 samples, 0.57%)</title><rect x="3.0609%" y="581" width="0.5722%" height="15" fill="rgb(233,213,13)" fg:x="73376" fg:w="13717"/><text x="3.3109%" y="591.50"></text></g><g><title>IfNode::Ideal (349 samples, 0.01%)</title><rect x="3.6553%" y="549" width="0.0146%" height="15" fill="rgb(233,141,41)" fg:x="87627" fg:w="349"/><text x="3.9053%" y="559.50"></text></g><g><title>RegionNode::Ideal (381 samples, 0.02%)</title><rect x="3.7173%" y="549" width="0.0159%" height="15" fill="rgb(239,167,4)" fg:x="89113" fg:w="381"/><text x="3.9673%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (246 samples, 0.01%)</title><rect x="3.7340%" y="485" width="0.0103%" height="15" fill="rgb(209,217,16)" fg:x="89513" fg:w="246"/><text x="3.9840%" y="495.50"></text></g><g><title>InitializeNode::can_capture_store (275 samples, 0.01%)</title><rect x="3.7340%" y="533" width="0.0115%" height="15" fill="rgb(219,88,35)" fg:x="89513" fg:w="275"/><text x="3.9840%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (275 samples, 0.01%)</title><rect x="3.7340%" y="517" width="0.0115%" height="15" fill="rgb(220,193,23)" fg:x="89513" fg:w="275"/><text x="3.9840%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (275 samples, 0.01%)</title><rect x="3.7340%" y="501" width="0.0115%" height="15" fill="rgb(230,90,52)" fg:x="89513" fg:w="275"/><text x="3.9840%" y="511.50"></text></g><g><title>StoreNode::Ideal (307 samples, 0.01%)</title><rect x="3.7339%" y="549" width="0.0128%" height="15" fill="rgb(252,106,19)" fg:x="89511" fg:w="307"/><text x="3.9839%" y="559.50"></text></g><g><title>PhaseIterGVN::transform_old (2,561 samples, 0.11%)</title><rect x="3.6422%" y="565" width="0.1068%" height="15" fill="rgb(206,74,20)" fg:x="87313" fg:w="2561"/><text x="3.8922%" y="575.50"></text></g><g><title>PhaseIterGVN::optimize (2,668 samples, 0.11%)</title><rect x="3.6386%" y="581" width="0.1113%" height="15" fill="rgb(230,138,44)" fg:x="87227" fg:w="2668"/><text x="3.8886%" y="591.50"></text></g><g><title>PhaseIterGVN::transform_old (247 samples, 0.01%)</title><rect x="3.7518%" y="549" width="0.0103%" height="15" fill="rgb(235,182,43)" fg:x="89939" fg:w="247"/><text x="4.0018%" y="559.50"></text></g><g><title>PhaseIterGVN::optimize (261 samples, 0.01%)</title><rect x="3.7513%" y="565" width="0.0109%" height="15" fill="rgb(242,16,51)" fg:x="89928" fg:w="261"/><text x="4.0013%" y="575.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (390 samples, 0.02%)</title><rect x="3.7512%" y="581" width="0.0163%" height="15" fill="rgb(248,9,4)" fg:x="89926" fg:w="390"/><text x="4.0012%" y="591.50"></text></g><g><title>Compile::Optimize (19,523 samples, 0.81%)</title><rect x="2.9612%" y="597" width="0.8144%" height="15" fill="rgb(210,31,22)" fg:x="70988" fg:w="19523"/><text x="3.2112%" y="607.50"></text></g><g><title>CompileBroker::compiler_thread_loop (256 samples, 0.01%)</title><rect x="3.7763%" y="597" width="0.0107%" height="15" fill="rgb(239,54,39)" fg:x="90526" fg:w="256"/><text x="4.0263%" y="607.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (256 samples, 0.01%)</title><rect x="3.7763%" y="581" width="0.0107%" height="15" fill="rgb(230,99,41)" fg:x="90526" fg:w="256"/><text x="4.0263%" y="591.50"></text></g><g><title>C2Compiler::compile_method (256 samples, 0.01%)</title><rect x="3.7763%" y="565" width="0.0107%" height="15" fill="rgb(253,106,12)" fg:x="90526" fg:w="256"/><text x="4.0263%" y="575.50"></text></g><g><title>Compile::Compile (256 samples, 0.01%)</title><rect x="3.7763%" y="549" width="0.0107%" height="15" fill="rgb(213,46,41)" fg:x="90526" fg:w="256"/><text x="4.0263%" y="559.50"></text></g><g><title>ParseGenerator::generate (261 samples, 0.01%)</title><rect x="3.8003%" y="453" width="0.0109%" height="15" fill="rgb(215,133,35)" fg:x="91101" fg:w="261"/><text x="4.0503%" y="463.50"></text></g><g><title>Parse::Parse (261 samples, 0.01%)</title><rect x="3.8003%" y="437" width="0.0109%" height="15" fill="rgb(213,28,5)" fg:x="91101" fg:w="261"/><text x="4.0503%" y="447.50"></text></g><g><title>Parse::do_call (543 samples, 0.02%)</title><rect x="3.7939%" y="469" width="0.0227%" height="15" fill="rgb(215,77,49)" fg:x="90949" fg:w="543"/><text x="4.0439%" y="479.50"></text></g><g><title>Parse::do_all_blocks (767 samples, 0.03%)</title><rect x="3.7917%" y="517" width="0.0320%" height="15" fill="rgb(248,100,22)" fg:x="90897" fg:w="767"/><text x="4.0417%" y="527.50"></text></g><g><title>Parse::do_one_block (767 samples, 0.03%)</title><rect x="3.7917%" y="501" width="0.0320%" height="15" fill="rgb(208,67,9)" fg:x="90897" fg:w="767"/><text x="4.0417%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (759 samples, 0.03%)</title><rect x="3.7921%" y="485" width="0.0317%" height="15" fill="rgb(219,133,21)" fg:x="90905" fg:w="759"/><text x="4.0421%" y="495.50"></text></g><g><title>ParseGenerator::generate (787 samples, 0.03%)</title><rect x="3.7917%" y="549" width="0.0328%" height="15" fill="rgb(246,46,29)" fg:x="90897" fg:w="787"/><text x="4.0417%" y="559.50"></text></g><g><title>Parse::Parse (787 samples, 0.03%)</title><rect x="3.7917%" y="533" width="0.0328%" height="15" fill="rgb(246,185,52)" fg:x="90897" fg:w="787"/><text x="4.0417%" y="543.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (925 samples, 0.04%)</title><rect x="3.7869%" y="597" width="0.0386%" height="15" fill="rgb(252,136,11)" fg:x="90782" fg:w="925"/><text x="4.0369%" y="607.50"></text></g><g><title>C2Compiler::compile_method (925 samples, 0.04%)</title><rect x="3.7869%" y="581" width="0.0386%" height="15" fill="rgb(219,138,53)" fg:x="90782" fg:w="925"/><text x="4.0369%" y="591.50"></text></g><g><title>Compile::Compile (925 samples, 0.04%)</title><rect x="3.7869%" y="565" width="0.0386%" height="15" fill="rgb(211,51,23)" fg:x="90782" fg:w="925"/><text x="4.0369%" y="575.50"></text></g><g><title>[unknown] (73,549 samples, 3.07%)</title><rect x="0.8015%" y="613" width="3.0681%" height="15" fill="rgb(247,221,28)" fg:x="19214" fg:w="73549"/><text x="1.0515%" y="623.50">[un..</text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (495 samples, 0.02%)</title><rect x="3.8781%" y="469" width="0.0206%" height="15" fill="rgb(251,222,45)" fg:x="92968" fg:w="495"/><text x="4.1281%" y="479.50"></text></g><g><title>Compile::Compile (720 samples, 0.03%)</title><rect x="3.8715%" y="485" width="0.0300%" height="15" fill="rgb(217,162,53)" fg:x="92808" fg:w="720"/><text x="4.1215%" y="495.50"></text></g><g><title>C2Compiler::compile_method (736 samples, 0.03%)</title><rect x="3.8708%" y="501" width="0.0307%" height="15" fill="rgb(229,93,14)" fg:x="92793" fg:w="736"/><text x="4.1208%" y="511.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (890 samples, 0.04%)</title><rect x="3.8706%" y="517" width="0.0371%" height="15" fill="rgb(209,67,49)" fg:x="92787" fg:w="890"/><text x="4.1206%" y="527.50"></text></g><g><title>os::PlatformEvent::park (249 samples, 0.01%)</title><rect x="3.9107%" y="469" width="0.0104%" height="15" fill="rgb(213,87,29)" fg:x="93749" fg:w="249"/><text x="4.1607%" y="479.50"></text></g><g><title>Monitor::IWait (291 samples, 0.01%)</title><rect x="3.9090%" y="485" width="0.0121%" height="15" fill="rgb(205,151,52)" fg:x="93709" fg:w="291"/><text x="4.1590%" y="495.50"></text></g><g><title>Monitor::wait (300 samples, 0.01%)</title><rect x="3.9087%" y="501" width="0.0125%" height="15" fill="rgb(253,215,39)" fg:x="93702" fg:w="300"/><text x="4.1587%" y="511.50"></text></g><g><title>CompileQueue::get (351 samples, 0.01%)</title><rect x="3.9082%" y="517" width="0.0146%" height="15" fill="rgb(221,220,41)" fg:x="93688" fg:w="351"/><text x="4.1582%" y="527.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,260 samples, 0.05%)</title><rect x="3.8704%" y="533" width="0.0526%" height="15" fill="rgb(218,133,21)" fg:x="92783" fg:w="1260"/><text x="4.1204%" y="543.50"></text></g><g><title>Thread::call_run (1,265 samples, 0.05%)</title><rect x="3.8704%" y="565" width="0.0528%" height="15" fill="rgb(221,193,43)" fg:x="92783" fg:w="1265"/><text x="4.1204%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (1,265 samples, 0.05%)</title><rect x="3.8704%" y="549" width="0.0528%" height="15" fill="rgb(240,128,52)" fg:x="92783" fg:w="1265"/><text x="4.1204%" y="559.50"></text></g><g><title>__GI___clone (1,275 samples, 0.05%)</title><rect x="3.8700%" y="613" width="0.0532%" height="15" fill="rgb(253,114,12)" fg:x="92774" fg:w="1275"/><text x="4.1200%" y="623.50"></text></g><g><title>start_thread (1,266 samples, 0.05%)</title><rect x="3.8704%" y="597" width="0.0528%" height="15" fill="rgb(215,223,47)" fg:x="92783" fg:w="1266"/><text x="4.1204%" y="607.50"></text></g><g><title>thread_native_entry (1,266 samples, 0.05%)</title><rect x="3.8704%" y="581" width="0.0528%" height="15" fill="rgb(248,225,23)" fg:x="92783" fg:w="1266"/><text x="4.1204%" y="591.50"></text></g><g><title>C2_CompilerThre (79,387 samples, 3.31%)</title><rect x="0.6166%" y="629" width="3.3116%" height="15" fill="rgb(250,108,0)" fg:x="14782" fg:w="79387"/><text x="0.8666%" y="639.50">C2_..</text></g><g><title>do_futex (245 samples, 0.01%)</title><rect x="3.9624%" y="469" width="0.0102%" height="15" fill="rgb(228,208,7)" fg:x="94988" fg:w="245"/><text x="4.2124%" y="479.50"></text></g><g><title>futex_wait (243 samples, 0.01%)</title><rect x="3.9625%" y="453" width="0.0101%" height="15" fill="rgb(244,45,10)" fg:x="94990" fg:w="243"/><text x="4.2125%" y="463.50"></text></g><g><title>do_syscall_64 (251 samples, 0.01%)</title><rect x="3.9623%" y="501" width="0.0105%" height="15" fill="rgb(207,125,25)" fg:x="94985" fg:w="251"/><text x="4.2123%" y="511.50"></text></g><g><title>__x64_sys_futex (250 samples, 0.01%)</title><rect x="3.9623%" y="485" width="0.0104%" height="15" fill="rgb(210,195,18)" fg:x="94986" fg:w="250"/><text x="4.2123%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (258 samples, 0.01%)</title><rect x="3.9621%" y="517" width="0.0108%" height="15" fill="rgb(249,80,12)" fg:x="94981" fg:w="258"/><text x="4.2121%" y="527.50"></text></g><g><title>__pthread_cond_timedwait (287 samples, 0.01%)</title><rect x="3.9609%" y="565" width="0.0120%" height="15" fill="rgb(221,65,9)" fg:x="94953" fg:w="287"/><text x="4.2109%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (287 samples, 0.01%)</title><rect x="3.9609%" y="549" width="0.0120%" height="15" fill="rgb(235,49,36)" fg:x="94953" fg:w="287"/><text x="4.2109%" y="559.50"></text></g><g><title>futex_abstimed_wait_cancelable (275 samples, 0.01%)</title><rect x="3.9614%" y="533" width="0.0115%" height="15" fill="rgb(225,32,20)" fg:x="94965" fg:w="275"/><text x="4.2114%" y="543.50"></text></g><g><title>Parker::park (461 samples, 0.02%)</title><rect x="3.9595%" y="581" width="0.0192%" height="15" fill="rgb(215,141,46)" fg:x="94919" fg:w="461"/><text x="4.2095%" y="591.50"></text></g><g><title>Unsafe_Park (474 samples, 0.02%)</title><rect x="3.9591%" y="597" width="0.0198%" height="15" fill="rgb(250,160,47)" fg:x="94909" fg:w="474"/><text x="4.2091%" y="607.50"></text></g><g><title>[perf-974282.map] (976 samples, 0.04%)</title><rect x="3.9386%" y="613" width="0.0407%" height="15" fill="rgb(216,222,40)" fg:x="94418" fg:w="976"/><text x="4.1886%" y="623.50"></text></g><g><title>ForkJoinPool.co (1,009 samples, 0.04%)</title><rect x="3.9380%" y="629" width="0.0421%" height="15" fill="rgb(234,217,39)" fg:x="94403" fg:w="1009"/><text x="4.1880%" y="639.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (258 samples, 0.01%)</title><rect x="3.9850%" y="533" width="0.0108%" height="15" fill="rgb(207,178,40)" fg:x="95529" fg:w="258"/><text x="4.2350%" y="543.50"></text></g><g><title>__GI___clone (259 samples, 0.01%)</title><rect x="3.9850%" y="613" width="0.0108%" height="15" fill="rgb(221,136,13)" fg:x="95529" fg:w="259"/><text x="4.2350%" y="623.50"></text></g><g><title>start_thread (259 samples, 0.01%)</title><rect x="3.9850%" y="597" width="0.0108%" height="15" fill="rgb(249,199,10)" fg:x="95529" fg:w="259"/><text x="4.2350%" y="607.50"></text></g><g><title>thread_native_entry (259 samples, 0.01%)</title><rect x="3.9850%" y="581" width="0.0108%" height="15" fill="rgb(249,222,13)" fg:x="95529" fg:w="259"/><text x="4.2350%" y="591.50"></text></g><g><title>Thread::call_run (259 samples, 0.01%)</title><rect x="3.9850%" y="565" width="0.0108%" height="15" fill="rgb(244,185,38)" fg:x="95529" fg:w="259"/><text x="4.2350%" y="575.50"></text></g><g><title>ConcurrentGCThread::run (259 samples, 0.01%)</title><rect x="3.9850%" y="549" width="0.0108%" height="15" fill="rgb(236,202,9)" fg:x="95529" fg:w="259"/><text x="4.2350%" y="559.50"></text></g><g><title>G1_Refine#0 (269 samples, 0.01%)</title><rect x="3.9846%" y="629" width="0.0112%" height="15" fill="rgb(250,229,37)" fg:x="95520" fg:w="269"/><text x="4.2346%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (325 samples, 0.01%)</title><rect x="4.0313%" y="485" width="0.0136%" height="15" fill="rgb(206,174,23)" fg:x="96639" fg:w="325"/><text x="4.2813%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (498 samples, 0.02%)</title><rect x="4.0244%" y="501" width="0.0208%" height="15" fill="rgb(211,33,43)" fg:x="96474" fg:w="498"/><text x="4.2744%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (633 samples, 0.03%)</title><rect x="4.0240%" y="517" width="0.0264%" height="15" fill="rgb(245,58,50)" fg:x="96464" fg:w="633"/><text x="4.2740%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (412 samples, 0.02%)</title><rect x="4.0652%" y="501" width="0.0172%" height="15" fill="rgb(244,68,36)" fg:x="97452" fg:w="412"/><text x="4.3152%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (303 samples, 0.01%)</title><rect x="4.0697%" y="485" width="0.0126%" height="15" fill="rgb(232,229,15)" fg:x="97561" fg:w="303"/><text x="4.3197%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (303 samples, 0.01%)</title><rect x="4.0697%" y="469" width="0.0126%" height="15" fill="rgb(254,30,23)" fg:x="97561" fg:w="303"/><text x="4.3197%" y="479.50"></text></g><g><title>JavaThread::oops_do (303 samples, 0.01%)</title><rect x="4.0697%" y="453" width="0.0126%" height="15" fill="rgb(235,160,14)" fg:x="97561" fg:w="303"/><text x="4.3197%" y="463.50"></text></g><g><title>G1ParTask::work (1,410 samples, 0.06%)</title><rect x="4.0240%" y="533" width="0.0588%" height="15" fill="rgb(212,155,44)" fg:x="96464" fg:w="1410"/><text x="4.2740%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (434 samples, 0.02%)</title><rect x="4.0647%" y="517" width="0.0181%" height="15" fill="rgb(226,2,50)" fg:x="97440" fg:w="434"/><text x="4.3147%" y="527.50"></text></g><g><title>GC_Thread#0 (1,650 samples, 0.07%)</title><rect x="4.0224%" y="629" width="0.0688%" height="15" fill="rgb(234,177,6)" fg:x="96426" fg:w="1650"/><text x="4.2724%" y="639.50"></text></g><g><title>__GI___clone (1,618 samples, 0.07%)</title><rect x="4.0237%" y="613" width="0.0675%" height="15" fill="rgb(217,24,9)" fg:x="96458" fg:w="1618"/><text x="4.2737%" y="623.50"></text></g><g><title>start_thread (1,618 samples, 0.07%)</title><rect x="4.0237%" y="597" width="0.0675%" height="15" fill="rgb(220,13,46)" fg:x="96458" fg:w="1618"/><text x="4.2737%" y="607.50"></text></g><g><title>thread_native_entry (1,618 samples, 0.07%)</title><rect x="4.0237%" y="581" width="0.0675%" height="15" fill="rgb(239,221,27)" fg:x="96458" fg:w="1618"/><text x="4.2737%" y="591.50"></text></g><g><title>Thread::call_run (1,618 samples, 0.07%)</title><rect x="4.0237%" y="565" width="0.0675%" height="15" fill="rgb(222,198,25)" fg:x="96458" fg:w="1618"/><text x="4.2737%" y="575.50"></text></g><g><title>GangWorker::loop (1,618 samples, 0.07%)</title><rect x="4.0237%" y="549" width="0.0675%" height="15" fill="rgb(211,99,13)" fg:x="96458" fg:w="1618"/><text x="4.2737%" y="559.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (340 samples, 0.01%)</title><rect x="4.1010%" y="485" width="0.0142%" height="15" fill="rgb(232,111,31)" fg:x="98310" fg:w="340"/><text x="4.3510%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (541 samples, 0.02%)</title><rect x="4.0935%" y="501" width="0.0226%" height="15" fill="rgb(245,82,37)" fg:x="98131" fg:w="541"/><text x="4.3435%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (645 samples, 0.03%)</title><rect x="4.0931%" y="517" width="0.0269%" height="15" fill="rgb(227,149,46)" fg:x="98121" fg:w="645"/><text x="4.3431%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (325 samples, 0.01%)</title><rect x="4.1346%" y="501" width="0.0136%" height="15" fill="rgb(218,36,50)" fg:x="99117" fg:w="325"/><text x="4.3846%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (267 samples, 0.01%)</title><rect x="4.1371%" y="485" width="0.0111%" height="15" fill="rgb(226,80,48)" fg:x="99175" fg:w="267"/><text x="4.3871%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (267 samples, 0.01%)</title><rect x="4.1371%" y="469" width="0.0111%" height="15" fill="rgb(238,224,15)" fg:x="99175" fg:w="267"/><text x="4.3871%" y="479.50"></text></g><g><title>JavaThread::oops_do (266 samples, 0.01%)</title><rect x="4.1371%" y="453" width="0.0111%" height="15" fill="rgb(241,136,10)" fg:x="99176" fg:w="266"/><text x="4.3871%" y="463.50"></text></g><g><title>G1ParTask::work (1,515 samples, 0.06%)</title><rect x="4.0931%" y="533" width="0.0632%" height="15" fill="rgb(208,32,45)" fg:x="98121" fg:w="1515"/><text x="4.3431%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (519 samples, 0.02%)</title><rect x="4.1346%" y="517" width="0.0216%" height="15" fill="rgb(207,135,9)" fg:x="99117" fg:w="519"/><text x="4.3846%" y="527.50"></text></g><g><title>__GI___clone (1,719 samples, 0.07%)</title><rect x="4.0923%" y="613" width="0.0717%" height="15" fill="rgb(206,86,44)" fg:x="98102" fg:w="1719"/><text x="4.3423%" y="623.50"></text></g><g><title>start_thread (1,719 samples, 0.07%)</title><rect x="4.0923%" y="597" width="0.0717%" height="15" fill="rgb(245,177,15)" fg:x="98102" fg:w="1719"/><text x="4.3423%" y="607.50"></text></g><g><title>thread_native_entry (1,719 samples, 0.07%)</title><rect x="4.0923%" y="581" width="0.0717%" height="15" fill="rgb(206,64,50)" fg:x="98102" fg:w="1719"/><text x="4.3423%" y="591.50"></text></g><g><title>Thread::call_run (1,719 samples, 0.07%)</title><rect x="4.0923%" y="565" width="0.0717%" height="15" fill="rgb(234,36,40)" fg:x="98102" fg:w="1719"/><text x="4.3423%" y="575.50"></text></g><g><title>GangWorker::loop (1,719 samples, 0.07%)</title><rect x="4.0923%" y="549" width="0.0717%" height="15" fill="rgb(213,64,8)" fg:x="98102" fg:w="1719"/><text x="4.3423%" y="559.50"></text></g><g><title>GC_Thread#1 (1,748 samples, 0.07%)</title><rect x="4.0912%" y="629" width="0.0729%" height="15" fill="rgb(210,75,36)" fg:x="98076" fg:w="1748"/><text x="4.3412%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (280 samples, 0.01%)</title><rect x="4.1706%" y="485" width="0.0117%" height="15" fill="rgb(229,88,21)" fg:x="99980" fg:w="280"/><text x="4.4206%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (412 samples, 0.02%)</title><rect x="4.1656%" y="501" width="0.0172%" height="15" fill="rgb(252,204,47)" fg:x="99860" fg:w="412"/><text x="4.4156%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (556 samples, 0.02%)</title><rect x="4.1653%" y="517" width="0.0232%" height="15" fill="rgb(208,77,27)" fg:x="99851" fg:w="556"/><text x="4.4153%" y="527.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (246 samples, 0.01%)</title><rect x="4.1884%" y="517" width="0.0103%" height="15" fill="rgb(221,76,26)" fg:x="100407" fg:w="246"/><text x="4.4384%" y="527.50"></text></g><g><title>G1RemSet::update_rem_set (246 samples, 0.01%)</title><rect x="4.1884%" y="501" width="0.0103%" height="15" fill="rgb(225,139,18)" fg:x="100407" fg:w="246"/><text x="4.4384%" y="511.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (246 samples, 0.01%)</title><rect x="4.1884%" y="485" width="0.0103%" height="15" fill="rgb(230,137,11)" fg:x="100407" fg:w="246"/><text x="4.4384%" y="495.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (246 samples, 0.01%)</title><rect x="4.1884%" y="469" width="0.0103%" height="15" fill="rgb(212,28,1)" fg:x="100407" fg:w="246"/><text x="4.4384%" y="479.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (245 samples, 0.01%)</title><rect x="4.1885%" y="453" width="0.0102%" height="15" fill="rgb(248,164,17)" fg:x="100408" fg:w="245"/><text x="4.4385%" y="463.50"></text></g><g><title>G1ParTask::work (1,145 samples, 0.05%)</title><rect x="4.1653%" y="533" width="0.0478%" height="15" fill="rgb(222,171,42)" fg:x="99851" fg:w="1145"/><text x="4.4153%" y="543.50"></text></g><g><title>GC_Thread#2 (1,339 samples, 0.06%)</title><rect x="4.1641%" y="629" width="0.0559%" height="15" fill="rgb(243,84,45)" fg:x="99824" fg:w="1339"/><text x="4.4141%" y="639.50"></text></g><g><title>__GI___clone (1,321 samples, 0.06%)</title><rect x="4.1649%" y="613" width="0.0551%" height="15" fill="rgb(252,49,23)" fg:x="99842" fg:w="1321"/><text x="4.4149%" y="623.50"></text></g><g><title>start_thread (1,321 samples, 0.06%)</title><rect x="4.1649%" y="597" width="0.0551%" height="15" fill="rgb(215,19,7)" fg:x="99842" fg:w="1321"/><text x="4.4149%" y="607.50"></text></g><g><title>thread_native_entry (1,321 samples, 0.06%)</title><rect x="4.1649%" y="581" width="0.0551%" height="15" fill="rgb(238,81,41)" fg:x="99842" fg:w="1321"/><text x="4.4149%" y="591.50"></text></g><g><title>Thread::call_run (1,321 samples, 0.06%)</title><rect x="4.1649%" y="565" width="0.0551%" height="15" fill="rgb(210,199,37)" fg:x="99842" fg:w="1321"/><text x="4.4149%" y="575.50"></text></g><g><title>GangWorker::loop (1,321 samples, 0.06%)</title><rect x="4.1649%" y="549" width="0.0551%" height="15" fill="rgb(244,192,49)" fg:x="99842" fg:w="1321"/><text x="4.4149%" y="559.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (257 samples, 0.01%)</title><rect x="4.2290%" y="485" width="0.0107%" height="15" fill="rgb(226,211,11)" fg:x="101379" fg:w="257"/><text x="4.4790%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (424 samples, 0.02%)</title><rect x="4.2224%" y="501" width="0.0177%" height="15" fill="rgb(236,162,54)" fg:x="101222" fg:w="424"/><text x="4.4724%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (550 samples, 0.02%)</title><rect x="4.2216%" y="517" width="0.0229%" height="15" fill="rgb(220,229,9)" fg:x="101202" fg:w="550"/><text x="4.4716%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (271 samples, 0.01%)</title><rect x="4.2584%" y="501" width="0.0113%" height="15" fill="rgb(250,87,22)" fg:x="102084" fg:w="271"/><text x="4.5084%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (252 samples, 0.01%)</title><rect x="4.2592%" y="485" width="0.0105%" height="15" fill="rgb(239,43,17)" fg:x="102103" fg:w="252"/><text x="4.5092%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (252 samples, 0.01%)</title><rect x="4.2592%" y="469" width="0.0105%" height="15" fill="rgb(231,177,25)" fg:x="102103" fg:w="252"/><text x="4.5092%" y="479.50"></text></g><g><title>JavaThread::oops_do (252 samples, 0.01%)</title><rect x="4.2592%" y="453" width="0.0105%" height="15" fill="rgb(219,179,1)" fg:x="102103" fg:w="252"/><text x="4.5092%" y="463.50"></text></g><g><title>G1ParTask::work (1,211 samples, 0.05%)</title><rect x="4.2216%" y="533" width="0.0505%" height="15" fill="rgb(238,219,53)" fg:x="101202" fg:w="1211"/><text x="4.4716%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (329 samples, 0.01%)</title><rect x="4.2584%" y="517" width="0.0137%" height="15" fill="rgb(232,167,36)" fg:x="102084" fg:w="329"/><text x="4.5084%" y="527.50"></text></g><g><title>__GI___clone (1,422 samples, 0.06%)</title><rect x="4.2209%" y="613" width="0.0593%" height="15" fill="rgb(244,19,51)" fg:x="101185" fg:w="1422"/><text x="4.4709%" y="623.50"></text></g><g><title>start_thread (1,422 samples, 0.06%)</title><rect x="4.2209%" y="597" width="0.0593%" height="15" fill="rgb(224,6,22)" fg:x="101185" fg:w="1422"/><text x="4.4709%" y="607.50"></text></g><g><title>thread_native_entry (1,422 samples, 0.06%)</title><rect x="4.2209%" y="581" width="0.0593%" height="15" fill="rgb(224,145,5)" fg:x="101185" fg:w="1422"/><text x="4.4709%" y="591.50"></text></g><g><title>Thread::call_run (1,422 samples, 0.06%)</title><rect x="4.2209%" y="565" width="0.0593%" height="15" fill="rgb(234,130,49)" fg:x="101185" fg:w="1422"/><text x="4.4709%" y="575.50"></text></g><g><title>GangWorker::loop (1,422 samples, 0.06%)</title><rect x="4.2209%" y="549" width="0.0593%" height="15" fill="rgb(254,6,2)" fg:x="101185" fg:w="1422"/><text x="4.4709%" y="559.50"></text></g><g><title>GC_Thread#3 (1,446 samples, 0.06%)</title><rect x="4.2200%" y="629" width="0.0603%" height="15" fill="rgb(208,96,46)" fg:x="101163" fg:w="1446"/><text x="4.4700%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (289 samples, 0.01%)</title><rect x="4.2905%" y="485" width="0.0121%" height="15" fill="rgb(239,3,39)" fg:x="102853" fg:w="289"/><text x="4.5405%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (483 samples, 0.02%)</title><rect x="4.2828%" y="501" width="0.0201%" height="15" fill="rgb(233,210,1)" fg:x="102670" fg:w="483"/><text x="4.5328%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (638 samples, 0.03%)</title><rect x="4.2822%" y="517" width="0.0266%" height="15" fill="rgb(244,137,37)" fg:x="102655" fg:w="638"/><text x="4.5322%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (388 samples, 0.02%)</title><rect x="4.3223%" y="501" width="0.0162%" height="15" fill="rgb(240,136,2)" fg:x="103616" fg:w="388"/><text x="4.5723%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (276 samples, 0.01%)</title><rect x="4.3270%" y="485" width="0.0115%" height="15" fill="rgb(239,18,37)" fg:x="103728" fg:w="276"/><text x="4.5770%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (276 samples, 0.01%)</title><rect x="4.3270%" y="469" width="0.0115%" height="15" fill="rgb(218,185,22)" fg:x="103728" fg:w="276"/><text x="4.5770%" y="479.50"></text></g><g><title>JavaThread::oops_do (267 samples, 0.01%)</title><rect x="4.3274%" y="453" width="0.0111%" height="15" fill="rgb(225,218,4)" fg:x="103737" fg:w="267"/><text x="4.5774%" y="463.50"></text></g><g><title>G1ParTask::work (1,355 samples, 0.06%)</title><rect x="4.2822%" y="533" width="0.0565%" height="15" fill="rgb(230,182,32)" fg:x="102655" fg:w="1355"/><text x="4.5322%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (396 samples, 0.02%)</title><rect x="4.3222%" y="517" width="0.0165%" height="15" fill="rgb(242,56,43)" fg:x="103614" fg:w="396"/><text x="4.5722%" y="527.50"></text></g><g><title>__GI___clone (1,581 samples, 0.07%)</title><rect x="4.2816%" y="613" width="0.0660%" height="15" fill="rgb(233,99,24)" fg:x="102641" fg:w="1581"/><text x="4.5316%" y="623.50"></text></g><g><title>start_thread (1,581 samples, 0.07%)</title><rect x="4.2816%" y="597" width="0.0660%" height="15" fill="rgb(234,209,42)" fg:x="102641" fg:w="1581"/><text x="4.5316%" y="607.50"></text></g><g><title>thread_native_entry (1,581 samples, 0.07%)</title><rect x="4.2816%" y="581" width="0.0660%" height="15" fill="rgb(227,7,12)" fg:x="102641" fg:w="1581"/><text x="4.5316%" y="591.50"></text></g><g><title>Thread::call_run (1,581 samples, 0.07%)</title><rect x="4.2816%" y="565" width="0.0660%" height="15" fill="rgb(245,203,43)" fg:x="102641" fg:w="1581"/><text x="4.5316%" y="575.50"></text></g><g><title>GangWorker::loop (1,581 samples, 0.07%)</title><rect x="4.2816%" y="549" width="0.0660%" height="15" fill="rgb(238,205,33)" fg:x="102641" fg:w="1581"/><text x="4.5316%" y="559.50"></text></g><g><title>GC_Thread#4 (1,615 samples, 0.07%)</title><rect x="4.2803%" y="629" width="0.0674%" height="15" fill="rgb(231,56,7)" fg:x="102609" fg:w="1615"/><text x="4.5303%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (364 samples, 0.02%)</title><rect x="4.3566%" y="485" width="0.0152%" height="15" fill="rgb(244,186,29)" fg:x="104438" fg:w="364"/><text x="4.6066%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (537 samples, 0.02%)</title><rect x="4.3497%" y="501" width="0.0224%" height="15" fill="rgb(234,111,31)" fg:x="104273" fg:w="537"/><text x="4.5997%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (667 samples, 0.03%)</title><rect x="4.3493%" y="517" width="0.0278%" height="15" fill="rgb(241,149,10)" fg:x="104264" fg:w="667"/><text x="4.5993%" y="527.50"></text></g><g><title>G1RootProcessor::process_java_roots (291 samples, 0.01%)</title><rect x="4.3929%" y="501" width="0.0121%" height="15" fill="rgb(249,206,44)" fg:x="105309" fg:w="291"/><text x="4.6429%" y="511.50"></text></g><g><title>Threads::possibly_parallel_oops_do (240 samples, 0.01%)</title><rect x="4.3951%" y="485" width="0.0100%" height="15" fill="rgb(251,153,30)" fg:x="105360" fg:w="240"/><text x="4.6451%" y="495.50"></text></g><g><title>Threads::possibly_parallel_threads_do (240 samples, 0.01%)</title><rect x="4.3951%" y="469" width="0.0100%" height="15" fill="rgb(239,152,38)" fg:x="105360" fg:w="240"/><text x="4.6451%" y="479.50"></text></g><g><title>JavaThread::oops_do (240 samples, 0.01%)</title><rect x="4.3951%" y="453" width="0.0100%" height="15" fill="rgb(249,139,47)" fg:x="105360" fg:w="240"/><text x="4.6451%" y="463.50"></text></g><g><title>G1ParTask::work (1,345 samples, 0.06%)</title><rect x="4.3493%" y="533" width="0.0561%" height="15" fill="rgb(244,64,35)" fg:x="104264" fg:w="1345"/><text x="4.5993%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (304 samples, 0.01%)</title><rect x="4.3928%" y="517" width="0.0127%" height="15" fill="rgb(216,46,15)" fg:x="105305" fg:w="304"/><text x="4.6428%" y="527.50"></text></g><g><title>GC_Thread#5 (1,600 samples, 0.07%)</title><rect x="4.3477%" y="629" width="0.0667%" height="15" fill="rgb(250,74,19)" fg:x="104224" fg:w="1600"/><text x="4.5977%" y="639.50"></text></g><g><title>__GI___clone (1,581 samples, 0.07%)</title><rect x="4.3485%" y="613" width="0.0660%" height="15" fill="rgb(249,42,33)" fg:x="104243" fg:w="1581"/><text x="4.5985%" y="623.50"></text></g><g><title>start_thread (1,581 samples, 0.07%)</title><rect x="4.3485%" y="597" width="0.0660%" height="15" fill="rgb(242,149,17)" fg:x="104243" fg:w="1581"/><text x="4.5985%" y="607.50"></text></g><g><title>thread_native_entry (1,581 samples, 0.07%)</title><rect x="4.3485%" y="581" width="0.0660%" height="15" fill="rgb(244,29,21)" fg:x="104243" fg:w="1581"/><text x="4.5985%" y="591.50"></text></g><g><title>Thread::call_run (1,581 samples, 0.07%)</title><rect x="4.3485%" y="565" width="0.0660%" height="15" fill="rgb(220,130,37)" fg:x="104243" fg:w="1581"/><text x="4.5985%" y="575.50"></text></g><g><title>GangWorker::loop (1,581 samples, 0.07%)</title><rect x="4.3485%" y="549" width="0.0660%" height="15" fill="rgb(211,67,2)" fg:x="104243" fg:w="1581"/><text x="4.5985%" y="559.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (257 samples, 0.01%)</title><rect x="4.4236%" y="485" width="0.0107%" height="15" fill="rgb(235,68,52)" fg:x="106044" fg:w="257"/><text x="4.6736%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (442 samples, 0.02%)</title><rect x="4.4165%" y="501" width="0.0184%" height="15" fill="rgb(246,142,3)" fg:x="105874" fg:w="442"/><text x="4.6665%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (550 samples, 0.02%)</title><rect x="4.4162%" y="517" width="0.0229%" height="15" fill="rgb(241,25,7)" fg:x="105867" fg:w="550"/><text x="4.6662%" y="527.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (368 samples, 0.02%)</title><rect x="4.4416%" y="421" width="0.0154%" height="15" fill="rgb(242,119,39)" fg:x="106476" fg:w="368"/><text x="4.6916%" y="431.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (291 samples, 0.01%)</title><rect x="4.4448%" y="405" width="0.0121%" height="15" fill="rgb(241,98,45)" fg:x="106553" fg:w="291"/><text x="4.6948%" y="415.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (457 samples, 0.02%)</title><rect x="4.4393%" y="437" width="0.0191%" height="15" fill="rgb(254,28,30)" fg:x="106420" fg:w="457"/><text x="4.6893%" y="447.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (507 samples, 0.02%)</title><rect x="4.4392%" y="517" width="0.0211%" height="15" fill="rgb(241,142,54)" fg:x="106418" fg:w="507"/><text x="4.6892%" y="527.50"></text></g><g><title>G1RemSet::update_rem_set (507 samples, 0.02%)</title><rect x="4.4392%" y="501" width="0.0211%" height="15" fill="rgb(222,85,15)" fg:x="106418" fg:w="507"/><text x="4.6892%" y="511.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (506 samples, 0.02%)</title><rect x="4.4392%" y="485" width="0.0211%" height="15" fill="rgb(210,85,47)" fg:x="106419" fg:w="506"/><text x="4.6892%" y="495.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (506 samples, 0.02%)</title><rect x="4.4392%" y="469" width="0.0211%" height="15" fill="rgb(224,206,25)" fg:x="106419" fg:w="506"/><text x="4.6892%" y="479.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (505 samples, 0.02%)</title><rect x="4.4393%" y="453" width="0.0211%" height="15" fill="rgb(243,201,19)" fg:x="106420" fg:w="505"/><text x="4.6893%" y="463.50"></text></g><g><title>G1ParTask::work (1,439 samples, 0.06%)</title><rect x="4.4162%" y="533" width="0.0600%" height="15" fill="rgb(236,59,4)" fg:x="105867" fg:w="1439"/><text x="4.6662%" y="543.50"></text></g><g><title>__GI___clone (1,726 samples, 0.07%)</title><rect x="4.4155%" y="613" width="0.0720%" height="15" fill="rgb(254,179,45)" fg:x="105851" fg:w="1726"/><text x="4.6655%" y="623.50"></text></g><g><title>start_thread (1,726 samples, 0.07%)</title><rect x="4.4155%" y="597" width="0.0720%" height="15" fill="rgb(226,14,10)" fg:x="105851" fg:w="1726"/><text x="4.6655%" y="607.50"></text></g><g><title>thread_native_entry (1,726 samples, 0.07%)</title><rect x="4.4155%" y="581" width="0.0720%" height="15" fill="rgb(244,27,41)" fg:x="105851" fg:w="1726"/><text x="4.6655%" y="591.50"></text></g><g><title>Thread::call_run (1,726 samples, 0.07%)</title><rect x="4.4155%" y="565" width="0.0720%" height="15" fill="rgb(235,35,32)" fg:x="105851" fg:w="1726"/><text x="4.6655%" y="575.50"></text></g><g><title>GangWorker::loop (1,726 samples, 0.07%)</title><rect x="4.4155%" y="549" width="0.0720%" height="15" fill="rgb(218,68,31)" fg:x="105851" fg:w="1726"/><text x="4.6655%" y="559.50"></text></g><g><title>GC_Thread#6 (1,756 samples, 0.07%)</title><rect x="4.4144%" y="629" width="0.0733%" height="15" fill="rgb(207,120,37)" fg:x="105824" fg:w="1756"/><text x="4.6644%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (274 samples, 0.01%)</title><rect x="4.4948%" y="485" width="0.0114%" height="15" fill="rgb(227,98,0)" fg:x="107751" fg:w="274"/><text x="4.7448%" y="495.50"></text></g><g><title>G1ParScanThreadState::trim_queue (408 samples, 0.02%)</title><rect x="4.4896%" y="501" width="0.0170%" height="15" fill="rgb(207,7,3)" fg:x="107626" fg:w="408"/><text x="4.7396%" y="511.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (471 samples, 0.02%)</title><rect x="4.4893%" y="517" width="0.0196%" height="15" fill="rgb(206,98,19)" fg:x="107620" fg:w="471"/><text x="4.7393%" y="527.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (241 samples, 0.01%)</title><rect x="4.5090%" y="517" width="0.0101%" height="15" fill="rgb(217,5,26)" fg:x="108092" fg:w="241"/><text x="4.7590%" y="527.50"></text></g><g><title>G1RemSet::update_rem_set (241 samples, 0.01%)</title><rect x="4.5090%" y="501" width="0.0101%" height="15" fill="rgb(235,190,38)" fg:x="108092" fg:w="241"/><text x="4.7590%" y="511.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (241 samples, 0.01%)</title><rect x="4.5090%" y="485" width="0.0101%" height="15" fill="rgb(247,86,24)" fg:x="108092" fg:w="241"/><text x="4.7590%" y="495.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (241 samples, 0.01%)</title><rect x="4.5090%" y="469" width="0.0101%" height="15" fill="rgb(205,101,16)" fg:x="108092" fg:w="241"/><text x="4.7590%" y="479.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (241 samples, 0.01%)</title><rect x="4.5090%" y="453" width="0.0101%" height="15" fill="rgb(246,168,33)" fg:x="108092" fg:w="241"/><text x="4.7590%" y="463.50"></text></g><g><title>G1ParTask::work (1,150 samples, 0.05%)</title><rect x="4.4893%" y="533" width="0.0480%" height="15" fill="rgb(231,114,1)" fg:x="107620" fg:w="1150"/><text x="4.7393%" y="543.50"></text></g><g><title>G1RootProcessor::evacuate_roots (267 samples, 0.01%)</title><rect x="4.5262%" y="517" width="0.0111%" height="15" fill="rgb(207,184,53)" fg:x="108503" fg:w="267"/><text x="4.7762%" y="527.50"></text></g><g><title>__GI___clone (1,358 samples, 0.06%)</title><rect x="4.4891%" y="613" width="0.0566%" height="15" fill="rgb(224,95,51)" fg:x="107614" fg:w="1358"/><text x="4.7391%" y="623.50"></text></g><g><title>start_thread (1,358 samples, 0.06%)</title><rect x="4.4891%" y="597" width="0.0566%" height="15" fill="rgb(212,188,45)" fg:x="107614" fg:w="1358"/><text x="4.7391%" y="607.50"></text></g><g><title>thread_native_entry (1,358 samples, 0.06%)</title><rect x="4.4891%" y="581" width="0.0566%" height="15" fill="rgb(223,154,38)" fg:x="107614" fg:w="1358"/><text x="4.7391%" y="591.50"></text></g><g><title>Thread::call_run (1,358 samples, 0.06%)</title><rect x="4.4891%" y="565" width="0.0566%" height="15" fill="rgb(251,22,52)" fg:x="107614" fg:w="1358"/><text x="4.7391%" y="575.50"></text></g><g><title>GangWorker::loop (1,358 samples, 0.06%)</title><rect x="4.4891%" y="549" width="0.0566%" height="15" fill="rgb(229,209,22)" fg:x="107614" fg:w="1358"/><text x="4.7391%" y="559.50"></text></g><g><title>GC_Thread#7 (1,395 samples, 0.06%)</title><rect x="4.4877%" y="629" width="0.0582%" height="15" fill="rgb(234,138,34)" fg:x="107580" fg:w="1395"/><text x="4.7377%" y="639.50"></text></g><g><title>finish_task_switch (243 samples, 0.01%)</title><rect x="4.5586%" y="293" width="0.0101%" height="15" fill="rgb(212,95,11)" fg:x="109280" fg:w="243"/><text x="4.8086%" y="303.50"></text></g><g><title>futex_wait_queue_me (290 samples, 0.01%)</title><rect x="4.5576%" y="341" width="0.0121%" height="15" fill="rgb(240,179,47)" fg:x="109256" fg:w="290"/><text x="4.8076%" y="351.50"></text></g><g><title>schedule (282 samples, 0.01%)</title><rect x="4.5579%" y="325" width="0.0118%" height="15" fill="rgb(240,163,11)" fg:x="109264" fg:w="282"/><text x="4.8079%" y="335.50"></text></g><g><title>__schedule (282 samples, 0.01%)</title><rect x="4.5579%" y="309" width="0.0118%" height="15" fill="rgb(236,37,12)" fg:x="109264" fg:w="282"/><text x="4.8079%" y="319.50"></text></g><g><title>do_futex (311 samples, 0.01%)</title><rect x="4.5574%" y="373" width="0.0130%" height="15" fill="rgb(232,164,16)" fg:x="109251" fg:w="311"/><text x="4.8074%" y="383.50"></text></g><g><title>futex_wait (309 samples, 0.01%)</title><rect x="4.5575%" y="357" width="0.0129%" height="15" fill="rgb(244,205,15)" fg:x="109253" fg:w="309"/><text x="4.8075%" y="367.50"></text></g><g><title>do_syscall_64 (318 samples, 0.01%)</title><rect x="4.5572%" y="405" width="0.0133%" height="15" fill="rgb(223,117,47)" fg:x="109247" fg:w="318"/><text x="4.8072%" y="415.50"></text></g><g><title>__x64_sys_futex (317 samples, 0.01%)</title><rect x="4.5572%" y="389" width="0.0132%" height="15" fill="rgb(244,107,35)" fg:x="109248" fg:w="317"/><text x="4.8072%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (332 samples, 0.01%)</title><rect x="4.5571%" y="421" width="0.0138%" height="15" fill="rgb(205,140,8)" fg:x="109245" fg:w="332"/><text x="4.8071%" y="431.50"></text></g><g><title>__pthread_cond_timedwait (346 samples, 0.01%)</title><rect x="4.5566%" y="469" width="0.0144%" height="15" fill="rgb(228,84,46)" fg:x="109232" fg:w="346"/><text x="4.8066%" y="479.50"></text></g><g><title>__pthread_cond_wait_common (345 samples, 0.01%)</title><rect x="4.5566%" y="453" width="0.0144%" height="15" fill="rgb(254,188,9)" fg:x="109233" fg:w="345"/><text x="4.8066%" y="463.50"></text></g><g><title>futex_abstimed_wait_cancelable (339 samples, 0.01%)</title><rect x="4.5569%" y="437" width="0.0141%" height="15" fill="rgb(206,112,54)" fg:x="109239" fg:w="339"/><text x="4.8069%" y="447.50"></text></g><g><title>Monitor::wait (375 samples, 0.02%)</title><rect x="4.5560%" y="517" width="0.0156%" height="15" fill="rgb(216,84,49)" fg:x="109218" fg:w="375"/><text x="4.8060%" y="527.50"></text></g><g><title>Monitor::IWait (372 samples, 0.02%)</title><rect x="4.5561%" y="501" width="0.0155%" height="15" fill="rgb(214,194,35)" fg:x="109221" fg:w="372"/><text x="4.8061%" y="511.50"></text></g><g><title>os::PlatformEvent::park (366 samples, 0.02%)</title><rect x="4.5564%" y="485" width="0.0153%" height="15" fill="rgb(249,28,3)" fg:x="109227" fg:w="366"/><text x="4.8064%" y="495.50"></text></g><g><title>__GI___clone (541 samples, 0.02%)</title><rect x="4.5555%" y="613" width="0.0226%" height="15" fill="rgb(222,56,52)" fg:x="109206" fg:w="541"/><text x="4.8055%" y="623.50"></text></g><g><title>start_thread (541 samples, 0.02%)</title><rect x="4.5555%" y="597" width="0.0226%" height="15" fill="rgb(245,217,50)" fg:x="109206" fg:w="541"/><text x="4.8055%" y="607.50"></text></g><g><title>thread_native_entry (541 samples, 0.02%)</title><rect x="4.5555%" y="581" width="0.0226%" height="15" fill="rgb(213,201,24)" fg:x="109206" fg:w="541"/><text x="4.8055%" y="591.50"></text></g><g><title>Thread::call_run (541 samples, 0.02%)</title><rect x="4.5555%" y="565" width="0.0226%" height="15" fill="rgb(248,116,28)" fg:x="109206" fg:w="541"/><text x="4.8055%" y="575.50"></text></g><g><title>JavaThread::thread_main_inner (541 samples, 0.02%)</title><rect x="4.5555%" y="549" width="0.0226%" height="15" fill="rgb(219,72,43)" fg:x="109206" fg:w="541"/><text x="4.8055%" y="559.50"></text></g><g><title>NMethodSweeper::sweeper_loop (540 samples, 0.02%)</title><rect x="4.5555%" y="533" width="0.0225%" height="15" fill="rgb(209,138,14)" fg:x="109207" fg:w="540"/><text x="4.8055%" y="543.50"></text></g><g><title>Sweeper_thread (556 samples, 0.02%)</title><rect x="4.5549%" y="629" width="0.0232%" height="15" fill="rgb(222,18,33)" fg:x="109192" fg:w="556"/><text x="4.8049%" y="639.50"></text></g><g><title>[perf-974282.map] (962 samples, 0.04%)</title><rect x="4.5803%" y="613" width="0.0401%" height="15" fill="rgb(213,199,7)" fg:x="109800" fg:w="962"/><text x="4.8303%" y="623.50"></text></g><g><title>Thread-0 (1,094 samples, 0.05%)</title><rect x="4.5781%" y="629" width="0.0456%" height="15" fill="rgb(250,110,10)" fg:x="109748" fg:w="1094"/><text x="4.8281%" y="639.50"></text></g><g><title>do_syscall_64 (253 samples, 0.01%)</title><rect x="4.6296%" y="405" width="0.0106%" height="15" fill="rgb(248,123,6)" fg:x="110983" fg:w="253"/><text x="4.8796%" y="415.50"></text></g><g><title>__x64_sys_futex (253 samples, 0.01%)</title><rect x="4.6296%" y="389" width="0.0106%" height="15" fill="rgb(206,91,31)" fg:x="110983" fg:w="253"/><text x="4.8796%" y="399.50"></text></g><g><title>do_futex (249 samples, 0.01%)</title><rect x="4.6298%" y="373" width="0.0104%" height="15" fill="rgb(211,154,13)" fg:x="110987" fg:w="249"/><text x="4.8798%" y="383.50"></text></g><g><title>futex_wait (245 samples, 0.01%)</title><rect x="4.6300%" y="357" width="0.0102%" height="15" fill="rgb(225,148,7)" fg:x="110991" fg:w="245"/><text x="4.8800%" y="367.50"></text></g><g><title>__pthread_cond_timedwait (269 samples, 0.01%)</title><rect x="4.6292%" y="469" width="0.0112%" height="15" fill="rgb(220,160,43)" fg:x="110973" fg:w="269"/><text x="4.8792%" y="479.50"></text></g><g><title>__pthread_cond_wait_common (267 samples, 0.01%)</title><rect x="4.6293%" y="453" width="0.0111%" height="15" fill="rgb(213,52,39)" fg:x="110975" fg:w="267"/><text x="4.8793%" y="463.50"></text></g><g><title>futex_abstimed_wait_cancelable (261 samples, 0.01%)</title><rect x="4.6295%" y="437" width="0.0109%" height="15" fill="rgb(243,137,7)" fg:x="110981" fg:w="261"/><text x="4.8795%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (259 samples, 0.01%)</title><rect x="4.6296%" y="421" width="0.0108%" height="15" fill="rgb(230,79,13)" fg:x="110983" fg:w="259"/><text x="4.8796%" y="431.50"></text></g><g><title>Monitor::wait (300 samples, 0.01%)</title><rect x="4.6285%" y="517" width="0.0125%" height="15" fill="rgb(247,105,23)" fg:x="110956" fg:w="300"/><text x="4.8785%" y="527.50"></text></g><g><title>Monitor::IWait (297 samples, 0.01%)</title><rect x="4.6286%" y="501" width="0.0124%" height="15" fill="rgb(223,179,41)" fg:x="110959" fg:w="297"/><text x="4.8786%" y="511.50"></text></g><g><title>os::PlatformEvent::park (293 samples, 0.01%)</title><rect x="4.6288%" y="485" width="0.0122%" height="15" fill="rgb(218,9,34)" fg:x="110963" fg:w="293"/><text x="4.8788%" y="495.50"></text></g><g><title>__GI___clone (396 samples, 0.02%)</title><rect x="4.6249%" y="613" width="0.0165%" height="15" fill="rgb(222,106,8)" fg:x="110869" fg:w="396"/><text x="4.8749%" y="623.50"></text></g><g><title>start_thread (396 samples, 0.02%)</title><rect x="4.6249%" y="597" width="0.0165%" height="15" fill="rgb(211,220,0)" fg:x="110869" fg:w="396"/><text x="4.8749%" y="607.50"></text></g><g><title>thread_native_entry (396 samples, 0.02%)</title><rect x="4.6249%" y="581" width="0.0165%" height="15" fill="rgb(229,52,16)" fg:x="110869" fg:w="396"/><text x="4.8749%" y="591.50"></text></g><g><title>Thread::call_run (396 samples, 0.02%)</title><rect x="4.6249%" y="565" width="0.0165%" height="15" fill="rgb(212,155,18)" fg:x="110869" fg:w="396"/><text x="4.8749%" y="575.50"></text></g><g><title>WatcherThread::run (396 samples, 0.02%)</title><rect x="4.6249%" y="549" width="0.0165%" height="15" fill="rgb(242,21,14)" fg:x="110869" fg:w="396"/><text x="4.8749%" y="559.50"></text></g><g><title>WatcherThread::sleep (313 samples, 0.01%)</title><rect x="4.6283%" y="533" width="0.0131%" height="15" fill="rgb(222,19,48)" fg:x="110952" fg:w="313"/><text x="4.8783%" y="543.50"></text></g><g><title>VM_Periodic_Tas (430 samples, 0.02%)</title><rect x="4.6237%" y="629" width="0.0179%" height="15" fill="rgb(232,45,27)" fg:x="110842" fg:w="430"/><text x="4.8737%" y="639.50"></text></g><g><title>SafepointSynchronize::begin (433 samples, 0.02%)</title><rect x="4.6552%" y="517" width="0.0181%" height="15" fill="rgb(249,103,42)" fg:x="111595" fg:w="433"/><text x="4.9052%" y="527.50"></text></g><g><title>Thread::call_run (787 samples, 0.03%)</title><rect x="4.6491%" y="565" width="0.0328%" height="15" fill="rgb(246,81,33)" fg:x="111449" fg:w="787"/><text x="4.8991%" y="575.50"></text></g><g><title>VMThread::run (787 samples, 0.03%)</title><rect x="4.6491%" y="549" width="0.0328%" height="15" fill="rgb(252,33,42)" fg:x="111449" fg:w="787"/><text x="4.8991%" y="559.50"></text></g><g><title>VMThread::loop (787 samples, 0.03%)</title><rect x="4.6491%" y="533" width="0.0328%" height="15" fill="rgb(209,212,41)" fg:x="111449" fg:w="787"/><text x="4.8991%" y="543.50"></text></g><g><title>__GI___clone (839 samples, 0.03%)</title><rect x="4.6471%" y="613" width="0.0350%" height="15" fill="rgb(207,154,6)" fg:x="111402" fg:w="839"/><text x="4.8971%" y="623.50"></text></g><g><title>start_thread (795 samples, 0.03%)</title><rect x="4.6489%" y="597" width="0.0332%" height="15" fill="rgb(223,64,47)" fg:x="111446" fg:w="795"/><text x="4.8989%" y="607.50"></text></g><g><title>thread_native_entry (795 samples, 0.03%)</title><rect x="4.6489%" y="581" width="0.0332%" height="15" fill="rgb(211,161,38)" fg:x="111446" fg:w="795"/><text x="4.8989%" y="591.50"></text></g><g><title>VM_Thread (979 samples, 0.04%)</title><rect x="4.6417%" y="629" width="0.0408%" height="15" fill="rgb(219,138,40)" fg:x="111272" fg:w="979"/><text x="4.8917%" y="639.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (458 samples, 0.02%)</title><rect x="4.6840%" y="613" width="0.0191%" height="15" fill="rgb(241,228,46)" fg:x="112287" fg:w="458"/><text x="4.9340%" y="623.50"></text></g><g><title>bazel (517 samples, 0.02%)</title><rect x="4.6839%" y="629" width="0.0216%" height="15" fill="rgb(223,209,38)" fg:x="112284" fg:w="517"/><text x="4.9339%" y="639.50"></text></g><g><title>[ld-2.31.so] (248 samples, 0.01%)</title><rect x="4.7103%" y="549" width="0.0103%" height="15" fill="rgb(236,164,45)" fg:x="112918" fg:w="248"/><text x="4.9603%" y="559.50"></text></g><g><title>_dl_start_final (249 samples, 0.01%)</title><rect x="4.7103%" y="581" width="0.0104%" height="15" fill="rgb(231,15,5)" fg:x="112918" fg:w="249"/><text x="4.9603%" y="591.50"></text></g><g><title>_dl_sysdep_start (249 samples, 0.01%)</title><rect x="4.7103%" y="565" width="0.0104%" height="15" fill="rgb(252,35,15)" fg:x="112918" fg:w="249"/><text x="4.9603%" y="575.50"></text></g><g><title>_dl_start (250 samples, 0.01%)</title><rect x="4.7103%" y="597" width="0.0104%" height="15" fill="rgb(248,181,18)" fg:x="112918" fg:w="250"/><text x="4.9603%" y="607.50"></text></g><g><title>_start (289 samples, 0.01%)</title><rect x="4.7088%" y="613" width="0.0121%" height="15" fill="rgb(233,39,42)" fg:x="112881" fg:w="289"/><text x="4.9588%" y="623.50"></text></g><g><title>build-runfiles (425 samples, 0.02%)</title><rect x="4.7055%" y="629" width="0.0177%" height="15" fill="rgb(238,110,33)" fg:x="112802" fg:w="425"/><text x="4.9555%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (557 samples, 0.02%)</title><rect x="4.7666%" y="117" width="0.0232%" height="15" fill="rgb(233,195,10)" fg:x="114267" fg:w="557"/><text x="5.0166%" y="127.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (551 samples, 0.02%)</title><rect x="4.7669%" y="101" width="0.0230%" height="15" fill="rgb(254,105,3)" fg:x="114273" fg:w="551"/><text x="5.0169%" y="111.50"></text></g><g><title>native_write_msr (548 samples, 0.02%)</title><rect x="4.7670%" y="85" width="0.0229%" height="15" fill="rgb(221,225,9)" fg:x="114276" fg:w="548"/><text x="5.0170%" y="95.50"></text></g><g><title>finish_task_switch (583 samples, 0.02%)</title><rect x="4.7661%" y="133" width="0.0243%" height="15" fill="rgb(224,227,45)" fg:x="114254" fg:w="583"/><text x="5.0161%" y="143.50"></text></g><g><title>_cond_resched (593 samples, 0.02%)</title><rect x="4.7658%" y="165" width="0.0247%" height="15" fill="rgb(229,198,43)" fg:x="114248" fg:w="593"/><text x="5.0158%" y="175.50"></text></g><g><title>__schedule (592 samples, 0.02%)</title><rect x="4.7659%" y="149" width="0.0247%" height="15" fill="rgb(206,209,35)" fg:x="114249" fg:w="592"/><text x="5.0159%" y="159.50"></text></g><g><title>sched_exec (629 samples, 0.03%)</title><rect x="4.7644%" y="197" width="0.0262%" height="15" fill="rgb(245,195,53)" fg:x="114214" fg:w="629"/><text x="5.0144%" y="207.50"></text></g><g><title>stop_one_cpu (604 samples, 0.03%)</title><rect x="4.7654%" y="181" width="0.0252%" height="15" fill="rgb(240,92,26)" fg:x="114239" fg:w="604"/><text x="5.0154%" y="191.50"></text></g><g><title>bprm_execve (1,191 samples, 0.05%)</title><rect x="4.7504%" y="213" width="0.0497%" height="15" fill="rgb(207,40,23)" fg:x="113878" fg:w="1191"/><text x="5.0004%" y="223.50"></text></g><g><title>do_execveat_common (1,319 samples, 0.06%)</title><rect x="4.7492%" y="229" width="0.0550%" height="15" fill="rgb(223,111,35)" fg:x="113850" fg:w="1319"/><text x="4.9992%" y="239.50"></text></g><g><title>__GI_execve (1,328 samples, 0.06%)</title><rect x="4.7491%" y="293" width="0.0554%" height="15" fill="rgb(229,147,28)" fg:x="113848" fg:w="1328"/><text x="4.9991%" y="303.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,327 samples, 0.06%)</title><rect x="4.7492%" y="277" width="0.0554%" height="15" fill="rgb(211,29,28)" fg:x="113849" fg:w="1327"/><text x="4.9992%" y="287.50"></text></g><g><title>do_syscall_64 (1,327 samples, 0.06%)</title><rect x="4.7492%" y="261" width="0.0554%" height="15" fill="rgb(228,72,33)" fg:x="113849" fg:w="1327"/><text x="4.9992%" y="271.50"></text></g><g><title>__x64_sys_execve (1,327 samples, 0.06%)</title><rect x="4.7492%" y="245" width="0.0554%" height="15" fill="rgb(205,214,31)" fg:x="113849" fg:w="1327"/><text x="4.9992%" y="255.50"></text></g><g><title>[dash] (1,652 samples, 0.07%)</title><rect x="4.7408%" y="309" width="0.0689%" height="15" fill="rgb(224,111,15)" fg:x="113648" fg:w="1652"/><text x="4.9908%" y="319.50"></text></g><g><title>__perf_event_task_sched_in (6,805 samples, 0.28%)</title><rect x="4.8301%" y="181" width="0.2839%" height="15" fill="rgb(253,21,26)" fg:x="115789" fg:w="6805"/><text x="5.0801%" y="191.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,715 samples, 0.28%)</title><rect x="4.8339%" y="165" width="0.2801%" height="15" fill="rgb(245,139,43)" fg:x="115879" fg:w="6715"/><text x="5.0839%" y="175.50"></text></g><g><title>native_write_msr (6,673 samples, 0.28%)</title><rect x="4.8356%" y="149" width="0.2784%" height="15" fill="rgb(252,170,7)" fg:x="115921" fg:w="6673"/><text x="5.0856%" y="159.50"></text></g><g><title>finish_task_switch (7,360 samples, 0.31%)</title><rect x="4.8199%" y="197" width="0.3070%" height="15" fill="rgb(231,118,14)" fg:x="115545" fg:w="7360"/><text x="5.0699%" y="207.50"></text></g><g><title>schedule (7,466 samples, 0.31%)</title><rect x="4.8180%" y="229" width="0.3114%" height="15" fill="rgb(238,83,0)" fg:x="115499" fg:w="7466"/><text x="5.0680%" y="239.50"></text></g><g><title>__schedule (7,459 samples, 0.31%)</title><rect x="4.8183%" y="213" width="0.3111%" height="15" fill="rgb(221,39,39)" fg:x="115506" fg:w="7459"/><text x="5.0683%" y="223.50"></text></g><g><title>release_task (336 samples, 0.01%)</title><rect x="5.1340%" y="213" width="0.0140%" height="15" fill="rgb(222,119,46)" fg:x="123075" fg:w="336"/><text x="5.3840%" y="223.50"></text></g><g><title>do_syscall_64 (8,028 samples, 0.33%)</title><rect x="4.8141%" y="277" width="0.3349%" height="15" fill="rgb(222,165,49)" fg:x="115405" fg:w="8028"/><text x="5.0641%" y="287.50"></text></g><g><title>kernel_wait4 (7,994 samples, 0.33%)</title><rect x="4.8155%" y="261" width="0.3335%" height="15" fill="rgb(219,113,52)" fg:x="115439" fg:w="7994"/><text x="5.0655%" y="271.50"></text></g><g><title>do_wait (7,985 samples, 0.33%)</title><rect x="4.8159%" y="245" width="0.3331%" height="15" fill="rgb(214,7,15)" fg:x="115448" fg:w="7985"/><text x="5.0659%" y="255.50"></text></g><g><title>wait_consider_task (468 samples, 0.02%)</title><rect x="5.1294%" y="229" width="0.0195%" height="15" fill="rgb(235,32,4)" fg:x="122965" fg:w="468"/><text x="5.3794%" y="239.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (8,260 samples, 0.34%)</title><rect x="4.8140%" y="293" width="0.3446%" height="15" fill="rgb(238,90,54)" fg:x="115404" fg:w="8260"/><text x="5.0640%" y="303.50"></text></g><g><title>__GI___wait4 (8,373 samples, 0.35%)</title><rect x="4.8121%" y="309" width="0.3493%" height="15" fill="rgb(213,208,19)" fg:x="115358" fg:w="8373"/><text x="5.0621%" y="319.50"></text></g><g><title>[dash] (10,372 samples, 0.43%)</title><rect x="4.7386%" y="325" width="0.4327%" height="15" fill="rgb(233,156,4)" fg:x="113596" fg:w="10372"/><text x="4.9886%" y="335.50"></text></g><g><title>[dash] (10,649 samples, 0.44%)</title><rect x="4.7360%" y="341" width="0.4442%" height="15" fill="rgb(207,194,5)" fg:x="113533" fg:w="10649"/><text x="4.9860%" y="351.50"></text></g><g><title>exc_page_fault (245 samples, 0.01%)</title><rect x="5.1965%" y="293" width="0.0102%" height="15" fill="rgb(206,111,30)" fg:x="124573" fg:w="245"/><text x="5.4465%" y="303.50"></text></g><g><title>do_user_addr_fault (244 samples, 0.01%)</title><rect x="5.1966%" y="277" width="0.0102%" height="15" fill="rgb(243,70,54)" fg:x="124574" fg:w="244"/><text x="5.4466%" y="287.50"></text></g><g><title>asm_exc_page_fault (249 samples, 0.01%)</title><rect x="5.1964%" y="309" width="0.0104%" height="15" fill="rgb(242,28,8)" fg:x="124571" fg:w="249"/><text x="5.4464%" y="319.50"></text></g><g><title>dup_mm (663 samples, 0.03%)</title><rect x="5.2162%" y="229" width="0.0277%" height="15" fill="rgb(219,106,18)" fg:x="125044" fg:w="663"/><text x="5.4662%" y="239.50"></text></g><g><title>copy_process (1,206 samples, 0.05%)</title><rect x="5.2069%" y="245" width="0.0503%" height="15" fill="rgb(244,222,10)" fg:x="124821" fg:w="1206"/><text x="5.4569%" y="255.50"></text></g><g><title>do_syscall_64 (1,273 samples, 0.05%)</title><rect x="5.2069%" y="293" width="0.0531%" height="15" fill="rgb(236,179,52)" fg:x="124821" fg:w="1273"/><text x="5.4569%" y="303.50"></text></g><g><title>__do_sys_clone (1,273 samples, 0.05%)</title><rect x="5.2069%" y="277" width="0.0531%" height="15" fill="rgb(213,23,39)" fg:x="124821" fg:w="1273"/><text x="5.4569%" y="287.50"></text></g><g><title>kernel_clone (1,273 samples, 0.05%)</title><rect x="5.2069%" y="261" width="0.0531%" height="15" fill="rgb(238,48,10)" fg:x="124821" fg:w="1273"/><text x="5.4569%" y="271.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,275 samples, 0.05%)</title><rect x="5.2069%" y="309" width="0.0532%" height="15" fill="rgb(251,196,23)" fg:x="124821" fg:w="1275"/><text x="5.4569%" y="319.50"></text></g><g><title>handle_mm_fault (257 samples, 0.01%)</title><rect x="5.2763%" y="213" width="0.0107%" height="15" fill="rgb(250,152,24)" fg:x="126486" fg:w="257"/><text x="5.5263%" y="223.50"></text></g><g><title>asm_exc_page_fault (545 samples, 0.02%)</title><rect x="5.2645%" y="261" width="0.0227%" height="15" fill="rgb(209,150,17)" fg:x="126202" fg:w="545"/><text x="5.5145%" y="271.50"></text></g><g><title>exc_page_fault (384 samples, 0.02%)</title><rect x="5.2712%" y="245" width="0.0160%" height="15" fill="rgb(234,202,34)" fg:x="126363" fg:w="384"/><text x="5.5212%" y="255.50"></text></g><g><title>do_user_addr_fault (378 samples, 0.02%)</title><rect x="5.2714%" y="229" width="0.0158%" height="15" fill="rgb(253,148,53)" fg:x="126369" fg:w="378"/><text x="5.5214%" y="239.50"></text></g><g><title>__put_user_nocheck_4 (582 samples, 0.02%)</title><rect x="5.2631%" y="277" width="0.0243%" height="15" fill="rgb(218,129,16)" fg:x="126170" fg:w="582"/><text x="5.5131%" y="287.50"></text></g><g><title>__perf_event_task_sched_in (7,255 samples, 0.30%)</title><rect x="5.2961%" y="261" width="0.3026%" height="15" fill="rgb(216,85,19)" fg:x="126960" fg:w="7255"/><text x="5.5461%" y="271.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (7,130 samples, 0.30%)</title><rect x="5.3013%" y="245" width="0.2974%" height="15" fill="rgb(235,228,7)" fg:x="127085" fg:w="7130"/><text x="5.5513%" y="255.50"></text></g><g><title>native_write_msr (7,072 samples, 0.30%)</title><rect x="5.3037%" y="229" width="0.2950%" height="15" fill="rgb(245,175,0)" fg:x="127143" fg:w="7072"/><text x="5.5537%" y="239.50"></text></g><g><title>schedule_tail (8,274 samples, 0.35%)</title><rect x="5.2622%" y="293" width="0.3451%" height="15" fill="rgb(208,168,36)" fg:x="126147" fg:w="8274"/><text x="5.5122%" y="303.50"></text></g><g><title>finish_task_switch (7,621 samples, 0.32%)</title><rect x="5.2894%" y="277" width="0.3179%" height="15" fill="rgb(246,171,24)" fg:x="126800" fg:w="7621"/><text x="5.5394%" y="287.50"></text></g><g><title>ret_from_fork (8,331 samples, 0.35%)</title><rect x="5.2613%" y="309" width="0.3475%" height="15" fill="rgb(215,142,24)" fg:x="126126" fg:w="8331"/><text x="5.5113%" y="319.50"></text></g><g><title>arch_fork (9,928 samples, 0.41%)</title><rect x="5.1947%" y="325" width="0.4141%" height="15" fill="rgb(250,187,7)" fg:x="124530" fg:w="9928"/><text x="5.4447%" y="335.50"></text></g><g><title>__libc_fork (10,364 samples, 0.43%)</title><rect x="5.1871%" y="341" width="0.4323%" height="15" fill="rgb(228,66,33)" fg:x="124348" fg:w="10364"/><text x="5.4371%" y="351.50"></text></g><g><title>[dash] (21,375 samples, 0.89%)</title><rect x="4.7349%" y="357" width="0.8917%" height="15" fill="rgb(234,215,21)" fg:x="113506" fg:w="21375"/><text x="4.9849%" y="367.50"></text></g><g><title>[dash] (21,529 samples, 0.90%)</title><rect x="4.7344%" y="373" width="0.8981%" height="15" fill="rgb(222,191,20)" fg:x="113495" fg:w="21529"/><text x="4.9844%" y="383.50"></text></g><g><title>[dash] (21,648 samples, 0.90%)</title><rect x="4.7337%" y="389" width="0.9030%" height="15" fill="rgb(245,79,54)" fg:x="113479" fg:w="21648"/><text x="4.9837%" y="399.50"></text></g><g><title>[dash] (21,830 samples, 0.91%)</title><rect x="4.7325%" y="405" width="0.9106%" height="15" fill="rgb(240,10,37)" fg:x="113449" fg:w="21830"/><text x="4.9825%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (355 samples, 0.01%)</title><rect x="5.6461%" y="277" width="0.0148%" height="15" fill="rgb(214,192,32)" fg:x="135350" fg:w="355"/><text x="5.8961%" y="287.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (348 samples, 0.01%)</title><rect x="5.6464%" y="261" width="0.0145%" height="15" fill="rgb(209,36,54)" fg:x="135357" fg:w="348"/><text x="5.8964%" y="271.50"></text></g><g><title>native_write_msr (345 samples, 0.01%)</title><rect x="5.6465%" y="245" width="0.0144%" height="15" fill="rgb(220,10,11)" fg:x="135360" fg:w="345"/><text x="5.8965%" y="255.50"></text></g><g><title>finish_task_switch (385 samples, 0.02%)</title><rect x="5.6457%" y="293" width="0.0161%" height="15" fill="rgb(221,106,17)" fg:x="135340" fg:w="385"/><text x="5.8957%" y="303.50"></text></g><g><title>schedule (394 samples, 0.02%)</title><rect x="5.6455%" y="325" width="0.0164%" height="15" fill="rgb(251,142,44)" fg:x="135337" fg:w="394"/><text x="5.8955%" y="335.50"></text></g><g><title>__schedule (393 samples, 0.02%)</title><rect x="5.6456%" y="309" width="0.0164%" height="15" fill="rgb(238,13,15)" fg:x="135338" fg:w="393"/><text x="5.8956%" y="319.50"></text></g><g><title>do_syscall_64 (507 samples, 0.02%)</title><rect x="5.6447%" y="373" width="0.0211%" height="15" fill="rgb(208,107,27)" fg:x="135316" fg:w="507"/><text x="5.8947%" y="383.50"></text></g><g><title>kernel_wait4 (505 samples, 0.02%)</title><rect x="5.6447%" y="357" width="0.0211%" height="15" fill="rgb(205,136,37)" fg:x="135318" fg:w="505"/><text x="5.8947%" y="367.50"></text></g><g><title>do_wait (501 samples, 0.02%)</title><rect x="5.6449%" y="341" width="0.0209%" height="15" fill="rgb(250,205,27)" fg:x="135322" fg:w="501"/><text x="5.8949%" y="351.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (521 samples, 0.02%)</title><rect x="5.6447%" y="389" width="0.0217%" height="15" fill="rgb(210,80,43)" fg:x="135316" fg:w="521"/><text x="5.8947%" y="399.50"></text></g><g><title>__GI___wait4 (560 samples, 0.02%)</title><rect x="5.6432%" y="405" width="0.0234%" height="15" fill="rgb(247,160,36)" fg:x="135280" fg:w="560"/><text x="5.8932%" y="415.50"></text></g><g><title>[dash] (22,602 samples, 0.94%)</title><rect x="4.7309%" y="421" width="0.9428%" height="15" fill="rgb(234,13,49)" fg:x="113411" fg:w="22602"/><text x="4.9809%" y="431.50"></text></g><g><title>dup_mm (370 samples, 0.02%)</title><rect x="5.6875%" y="309" width="0.0154%" height="15" fill="rgb(234,122,0)" fg:x="136344" fg:w="370"/><text x="5.9375%" y="319.50"></text></g><g><title>copy_process (707 samples, 0.03%)</title><rect x="5.6823%" y="325" width="0.0295%" height="15" fill="rgb(207,146,38)" fg:x="136218" fg:w="707"/><text x="5.9323%" y="335.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (757 samples, 0.03%)</title><rect x="5.6823%" y="389" width="0.0316%" height="15" fill="rgb(207,177,25)" fg:x="136217" fg:w="757"/><text x="5.9323%" y="399.50"></text></g><g><title>do_syscall_64 (757 samples, 0.03%)</title><rect x="5.6823%" y="373" width="0.0316%" height="15" fill="rgb(211,178,42)" fg:x="136217" fg:w="757"/><text x="5.9323%" y="383.50"></text></g><g><title>__do_sys_clone (757 samples, 0.03%)</title><rect x="5.6823%" y="357" width="0.0316%" height="15" fill="rgb(230,69,54)" fg:x="136217" fg:w="757"/><text x="5.9323%" y="367.50"></text></g><g><title>kernel_clone (756 samples, 0.03%)</title><rect x="5.6823%" y="341" width="0.0315%" height="15" fill="rgb(214,135,41)" fg:x="136218" fg:w="756"/><text x="5.9323%" y="351.50"></text></g><g><title>handle_mm_fault (261 samples, 0.01%)</title><rect x="5.7218%" y="293" width="0.0109%" height="15" fill="rgb(237,67,25)" fg:x="137165" fg:w="261"/><text x="5.9718%" y="303.50"></text></g><g><title>asm_exc_page_fault (414 samples, 0.02%)</title><rect x="5.7155%" y="341" width="0.0173%" height="15" fill="rgb(222,189,50)" fg:x="137013" fg:w="414"/><text x="5.9655%" y="351.50"></text></g><g><title>exc_page_fault (327 samples, 0.01%)</title><rect x="5.7191%" y="325" width="0.0136%" height="15" fill="rgb(245,148,34)" fg:x="137100" fg:w="327"/><text x="5.9691%" y="335.50"></text></g><g><title>do_user_addr_fault (320 samples, 0.01%)</title><rect x="5.7194%" y="309" width="0.0133%" height="15" fill="rgb(222,29,6)" fg:x="137107" fg:w="320"/><text x="5.9694%" y="319.50"></text></g><g><title>__put_user_nocheck_4 (427 samples, 0.02%)</title><rect x="5.7150%" y="357" width="0.0178%" height="15" fill="rgb(221,189,43)" fg:x="137003" fg:w="427"/><text x="5.9650%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (4,121 samples, 0.17%)</title><rect x="5.7391%" y="341" width="0.1719%" height="15" fill="rgb(207,36,27)" fg:x="137580" fg:w="4121"/><text x="5.9891%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,050 samples, 0.17%)</title><rect x="5.7421%" y="325" width="0.1689%" height="15" fill="rgb(217,90,24)" fg:x="137651" fg:w="4050"/><text x="5.9921%" y="335.50"></text></g><g><title>native_write_msr (4,020 samples, 0.17%)</title><rect x="5.7433%" y="309" width="0.1677%" height="15" fill="rgb(224,66,35)" fg:x="137681" fg:w="4020"/><text x="5.9933%" y="319.50"></text></g><g><title>schedule_tail (4,833 samples, 0.20%)</title><rect x="5.7146%" y="373" width="0.2016%" height="15" fill="rgb(221,13,50)" fg:x="136993" fg:w="4833"/><text x="5.9646%" y="383.50"></text></g><g><title>finish_task_switch (4,377 samples, 0.18%)</title><rect x="5.7336%" y="357" width="0.1826%" height="15" fill="rgb(236,68,49)" fg:x="137449" fg:w="4377"/><text x="5.9836%" y="367.50"></text></g><g><title>ret_from_fork (4,847 samples, 0.20%)</title><rect x="5.7145%" y="389" width="0.2022%" height="15" fill="rgb(229,146,28)" fg:x="136989" fg:w="4847"/><text x="5.9645%" y="399.50"></text></g><g><title>arch_fork (5,747 samples, 0.24%)</title><rect x="5.6770%" y="405" width="0.2397%" height="15" fill="rgb(225,31,38)" fg:x="136090" fg:w="5747"/><text x="5.9270%" y="415.50"></text></g><g><title>__libc_fork (5,917 samples, 0.25%)</title><rect x="5.6738%" y="421" width="0.2468%" height="15" fill="rgb(250,208,3)" fg:x="136015" fg:w="5917"/><text x="5.9238%" y="431.50"></text></g><g><title>[dash] (28,631 samples, 1.19%)</title><rect x="4.7295%" y="437" width="1.1943%" height="15" fill="rgb(246,54,23)" fg:x="113378" fg:w="28631"/><text x="4.9795%" y="447.50"></text></g><g><title>[dash] (28,779 samples, 1.20%)</title><rect x="4.7289%" y="453" width="1.2005%" height="15" fill="rgb(243,76,11)" fg:x="113364" fg:w="28779"/><text x="4.9789%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (3,908 samples, 0.16%)</title><rect x="5.9514%" y="293" width="0.1630%" height="15" fill="rgb(245,21,50)" fg:x="142669" fg:w="3908"/><text x="6.2014%" y="303.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,869 samples, 0.16%)</title><rect x="5.9530%" y="277" width="0.1614%" height="15" fill="rgb(228,9,43)" fg:x="142708" fg:w="3869"/><text x="6.2030%" y="287.50"></text></g><g><title>native_write_msr (3,850 samples, 0.16%)</title><rect x="5.9538%" y="261" width="0.1606%" height="15" fill="rgb(208,100,47)" fg:x="142727" fg:w="3850"/><text x="6.2038%" y="271.50"></text></g><g><title>finish_task_switch (4,234 samples, 0.18%)</title><rect x="5.9467%" y="309" width="0.1766%" height="15" fill="rgb(232,26,8)" fg:x="142556" fg:w="4234"/><text x="6.1967%" y="319.50"></text></g><g><title>schedule (4,302 samples, 0.18%)</title><rect x="5.9451%" y="341" width="0.1795%" height="15" fill="rgb(216,166,38)" fg:x="142517" fg:w="4302"/><text x="6.1951%" y="351.50"></text></g><g><title>__schedule (4,299 samples, 0.18%)</title><rect x="5.9452%" y="325" width="0.1793%" height="15" fill="rgb(251,202,51)" fg:x="142520" fg:w="4299"/><text x="6.1952%" y="335.50"></text></g><g><title>new_sync_read (4,450 samples, 0.19%)</title><rect x="5.9393%" y="373" width="0.1856%" height="15" fill="rgb(254,216,34)" fg:x="142379" fg:w="4450"/><text x="6.1893%" y="383.50"></text></g><g><title>pipe_read (4,440 samples, 0.19%)</title><rect x="5.9397%" y="357" width="0.1852%" height="15" fill="rgb(251,32,27)" fg:x="142389" fg:w="4440"/><text x="6.1897%" y="367.50"></text></g><g><title>do_syscall_64 (4,506 samples, 0.19%)</title><rect x="5.9375%" y="421" width="0.1880%" height="15" fill="rgb(208,127,28)" fg:x="142335" fg:w="4506"/><text x="6.1875%" y="431.50"></text></g><g><title>ksys_read (4,497 samples, 0.19%)</title><rect x="5.9378%" y="405" width="0.1876%" height="15" fill="rgb(224,137,22)" fg:x="142344" fg:w="4497"/><text x="6.1878%" y="415.50"></text></g><g><title>vfs_read (4,485 samples, 0.19%)</title><rect x="5.9383%" y="389" width="0.1871%" height="15" fill="rgb(254,70,32)" fg:x="142356" fg:w="4485"/><text x="6.1883%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,611 samples, 0.19%)</title><rect x="5.9375%" y="437" width="0.1923%" height="15" fill="rgb(229,75,37)" fg:x="142335" fg:w="4611"/><text x="6.1875%" y="447.50"></text></g><g><title>__GI___libc_read (4,684 samples, 0.20%)</title><rect x="5.9366%" y="453" width="0.1954%" height="15" fill="rgb(252,64,23)" fg:x="142315" fg:w="4684"/><text x="6.1866%" y="463.50"></text></g><g><title>[dash] (33,833 samples, 1.41%)</title><rect x="4.7275%" y="469" width="1.4113%" height="15" fill="rgb(232,162,48)" fg:x="113330" fg:w="33833"/><text x="4.9775%" y="479.50"></text></g><g><title>[dash] (33,873 samples, 1.41%)</title><rect x="4.7270%" y="485" width="1.4130%" height="15" fill="rgb(246,160,12)" fg:x="113318" fg:w="33873"/><text x="4.9770%" y="495.50"></text></g><g><title>[dash] (33,906 samples, 1.41%)</title><rect x="4.7264%" y="501" width="1.4144%" height="15" fill="rgb(247,166,0)" fg:x="113302" fg:w="33906"/><text x="4.9764%" y="511.50"></text></g><g><title>[dash] (33,916 samples, 1.41%)</title><rect x="4.7261%" y="517" width="1.4148%" height="15" fill="rgb(249,219,21)" fg:x="113297" fg:w="33916"/><text x="4.9761%" y="527.50"></text></g><g><title>[dash] (33,967 samples, 1.42%)</title><rect x="4.7261%" y="533" width="1.4169%" height="15" fill="rgb(205,209,3)" fg:x="113295" fg:w="33967"/><text x="4.9761%" y="543.50"></text></g><g><title>[dash] (33,980 samples, 1.42%)</title><rect x="4.7257%" y="549" width="1.4175%" height="15" fill="rgb(243,44,1)" fg:x="113286" fg:w="33980"/><text x="4.9757%" y="559.50"></text></g><g><title>[dash] (34,044 samples, 1.42%)</title><rect x="4.7256%" y="565" width="1.4201%" height="15" fill="rgb(206,159,16)" fg:x="113285" fg:w="34044"/><text x="4.9756%" y="575.50"></text></g><g><title>[dash] (34,060 samples, 1.42%)</title><rect x="4.7256%" y="581" width="1.4208%" height="15" fill="rgb(244,77,30)" fg:x="113284" fg:w="34060"/><text x="4.9756%" y="591.50"></text></g><g><title>__libc_start_main (34,061 samples, 1.42%)</title><rect x="4.7256%" y="597" width="1.4208%" height="15" fill="rgb(218,69,12)" fg:x="113284" fg:w="34061"/><text x="4.9756%" y="607.50"></text></g><g><title>[dash] (34,075 samples, 1.42%)</title><rect x="4.7251%" y="613" width="1.4214%" height="15" fill="rgb(212,87,7)" fg:x="113271" fg:w="34075"/><text x="4.9751%" y="623.50"></text></g><g><title>[unknown] (280 samples, 0.01%)</title><rect x="6.1465%" y="613" width="0.0117%" height="15" fill="rgb(245,114,25)" fg:x="147346" fg:w="280"/><text x="6.3965%" y="623.50"></text></g><g><title>asm_exc_page_fault (453 samples, 0.02%)</title><rect x="6.1643%" y="613" width="0.0189%" height="15" fill="rgb(210,61,42)" fg:x="147773" fg:w="453"/><text x="6.4143%" y="623.50"></text></g><g><title>exit_mmap (442 samples, 0.02%)</title><rect x="6.1846%" y="485" width="0.0184%" height="15" fill="rgb(211,52,33)" fg:x="148259" fg:w="442"/><text x="6.4346%" y="495.50"></text></g><g><title>mmput (444 samples, 0.02%)</title><rect x="6.1846%" y="501" width="0.0185%" height="15" fill="rgb(234,58,33)" fg:x="148259" fg:w="444"/><text x="6.4346%" y="511.50"></text></g><g><title>begin_new_exec (486 samples, 0.02%)</title><rect x="6.1836%" y="517" width="0.0203%" height="15" fill="rgb(220,115,36)" fg:x="148236" fg:w="486"/><text x="6.4336%" y="527.50"></text></g><g><title>__x64_sys_execve (532 samples, 0.02%)</title><rect x="6.1834%" y="581" width="0.0222%" height="15" fill="rgb(243,153,54)" fg:x="148230" fg:w="532"/><text x="6.4334%" y="591.50"></text></g><g><title>do_execveat_common (532 samples, 0.02%)</title><rect x="6.1834%" y="565" width="0.0222%" height="15" fill="rgb(251,47,18)" fg:x="148230" fg:w="532"/><text x="6.4334%" y="575.50"></text></g><g><title>bprm_execve (532 samples, 0.02%)</title><rect x="6.1834%" y="549" width="0.0222%" height="15" fill="rgb(242,102,42)" fg:x="148230" fg:w="532"/><text x="6.4334%" y="559.50"></text></g><g><title>load_elf_binary (532 samples, 0.02%)</title><rect x="6.1834%" y="533" width="0.0222%" height="15" fill="rgb(234,31,38)" fg:x="148230" fg:w="532"/><text x="6.4334%" y="543.50"></text></g><g><title>free_pgtables (281 samples, 0.01%)</title><rect x="6.2074%" y="501" width="0.0117%" height="15" fill="rgb(221,117,51)" fg:x="148807" fg:w="281"/><text x="6.4574%" y="511.50"></text></g><g><title>unmap_page_range (404 samples, 0.02%)</title><rect x="6.2334%" y="485" width="0.0169%" height="15" fill="rgb(212,20,18)" fg:x="149430" fg:w="404"/><text x="6.4834%" y="495.50"></text></g><g><title>exit_mmap (1,050 samples, 0.04%)</title><rect x="6.2069%" y="517" width="0.0438%" height="15" fill="rgb(245,133,36)" fg:x="148795" fg:w="1050"/><text x="6.4569%" y="527.50"></text></g><g><title>unmap_vmas (419 samples, 0.02%)</title><rect x="6.2333%" y="501" width="0.0175%" height="15" fill="rgb(212,6,19)" fg:x="149426" fg:w="419"/><text x="6.4833%" y="511.50"></text></g><g><title>mmput (1,056 samples, 0.04%)</title><rect x="6.2067%" y="533" width="0.0441%" height="15" fill="rgb(218,1,36)" fg:x="148790" fg:w="1056"/><text x="6.4567%" y="543.50"></text></g><g><title>__x64_sys_exit_group (1,209 samples, 0.05%)</title><rect x="6.2056%" y="581" width="0.0504%" height="15" fill="rgb(246,84,54)" fg:x="148762" fg:w="1209"/><text x="6.4556%" y="591.50"></text></g><g><title>do_group_exit (1,209 samples, 0.05%)</title><rect x="6.2056%" y="565" width="0.0504%" height="15" fill="rgb(242,110,6)" fg:x="148762" fg:w="1209"/><text x="6.4556%" y="575.50"></text></g><g><title>do_exit (1,209 samples, 0.05%)</title><rect x="6.2056%" y="549" width="0.0504%" height="15" fill="rgb(214,47,5)" fg:x="148762" fg:w="1209"/><text x="6.4556%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,750 samples, 0.07%)</title><rect x="6.1833%" y="613" width="0.0730%" height="15" fill="rgb(218,159,25)" fg:x="148228" fg:w="1750"/><text x="6.4333%" y="623.50"></text></g><g><title>do_syscall_64 (1,748 samples, 0.07%)</title><rect x="6.1834%" y="597" width="0.0729%" height="15" fill="rgb(215,211,28)" fg:x="148230" fg:w="1748"/><text x="6.4334%" y="607.50"></text></g><g><title>c++ (36,769 samples, 1.53%)</title><rect x="4.7232%" y="629" width="1.5338%" height="15" fill="rgb(238,59,32)" fg:x="113227" fg:w="36769"/><text x="4.9732%" y="639.50"></text></g><g><title>[perf-974282.map] (346 samples, 0.01%)</title><rect x="6.2580%" y="613" width="0.0144%" height="15" fill="rgb(226,82,3)" fg:x="150020" fg:w="346"/><text x="6.5080%" y="623.50"></text></g><g><title>find-action-loo (381 samples, 0.02%)</title><rect x="6.2580%" y="629" width="0.0159%" height="15" fill="rgb(240,164,32)" fg:x="150019" fg:w="381"/><text x="6.5080%" y="639.50"></text></g><g><title>[perf-974282.map] (254 samples, 0.01%)</title><rect x="6.2795%" y="613" width="0.0106%" height="15" fill="rgb(232,46,7)" fg:x="150535" fg:w="254"/><text x="6.5295%" y="623.50"></text></g><g><title>globbing_pool-1 (395 samples, 0.02%)</title><rect x="6.2780%" y="629" width="0.0165%" height="15" fill="rgb(229,129,53)" fg:x="150498" fg:w="395"/><text x="6.5280%" y="639.50"></text></g><g><title>[perf-974282.map] (341 samples, 0.01%)</title><rect x="6.2962%" y="613" width="0.0142%" height="15" fill="rgb(234,188,29)" fg:x="150936" fg:w="341"/><text x="6.5462%" y="623.50"></text></g><g><title>globbing_pool-2 (502 samples, 0.02%)</title><rect x="6.2945%" y="629" width="0.0209%" height="15" fill="rgb(246,141,4)" fg:x="150893" fg:w="502"/><text x="6.5445%" y="639.50"></text></g><g><title>[perf-974282.map] (261 samples, 0.01%)</title><rect x="6.3169%" y="613" width="0.0109%" height="15" fill="rgb(229,23,39)" fg:x="151432" fg:w="261"/><text x="6.5669%" y="623.50"></text></g><g><title>globbing_pool-3 (350 samples, 0.01%)</title><rect x="6.3154%" y="629" width="0.0146%" height="15" fill="rgb(206,12,3)" fg:x="151395" fg:w="350"/><text x="6.5654%" y="639.50"></text></g><g><title>globbing_pool-4 (260 samples, 0.01%)</title><rect x="6.3300%" y="629" width="0.0108%" height="15" fill="rgb(252,226,20)" fg:x="151745" fg:w="260"/><text x="6.5800%" y="639.50"></text></g><g><title>globbing_pool-9 (262 samples, 0.01%)</title><rect x="6.3710%" y="629" width="0.0109%" height="15" fill="rgb(216,123,35)" fg:x="152728" fg:w="262"/><text x="6.6210%" y="639.50"></text></g><g><title>InterpreterRuntime::_new (286 samples, 0.01%)</title><rect x="6.4767%" y="597" width="0.0119%" height="15" fill="rgb(212,68,40)" fg:x="155263" fg:w="286"/><text x="6.7267%" y="607.50"></text></g><g><title>LinkResolver::resolve_invoke (267 samples, 0.01%)</title><rect x="6.4999%" y="565" width="0.0111%" height="15" fill="rgb(254,125,32)" fg:x="155818" fg:w="267"/><text x="6.7499%" y="575.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (306 samples, 0.01%)</title><rect x="6.4986%" y="581" width="0.0128%" height="15" fill="rgb(253,97,22)" fg:x="155788" fg:w="306"/><text x="6.7486%" y="591.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (461 samples, 0.02%)</title><rect x="6.4946%" y="597" width="0.0192%" height="15" fill="rgb(241,101,14)" fg:x="155691" fg:w="461"/><text x="6.7446%" y="607.50"></text></g><g><title>SymbolTable::lookup_only (424 samples, 0.02%)</title><rect x="6.5336%" y="453" width="0.0177%" height="15" fill="rgb(238,103,29)" fg:x="156627" fg:w="424"/><text x="6.7836%" y="463.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (502 samples, 0.02%)</title><rect x="6.5304%" y="469" width="0.0209%" height="15" fill="rgb(233,195,47)" fg:x="156550" fg:w="502"/><text x="6.7804%" y="479.50"></text></g><g><title>ClassFileParser::parse_constant_pool (525 samples, 0.02%)</title><rect x="6.5299%" y="485" width="0.0219%" height="15" fill="rgb(246,218,30)" fg:x="156538" fg:w="525"/><text x="6.7799%" y="495.50"></text></g><g><title>ClassFileParser::ClassFileParser (743 samples, 0.03%)</title><rect x="6.5293%" y="517" width="0.0310%" height="15" fill="rgb(219,145,47)" fg:x="156522" fg:w="743"/><text x="6.7793%" y="527.50"></text></g><g><title>ClassFileParser::parse_stream (742 samples, 0.03%)</title><rect x="6.5293%" y="501" width="0.0310%" height="15" fill="rgb(243,12,26)" fg:x="156523" fg:w="742"/><text x="6.7793%" y="511.50"></text></g><g><title>KlassFactory::create_from_stream (980 samples, 0.04%)</title><rect x="6.5292%" y="533" width="0.0409%" height="15" fill="rgb(214,87,16)" fg:x="156521" fg:w="980"/><text x="6.7792%" y="543.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,025 samples, 0.04%)</title><rect x="6.5292%" y="549" width="0.0428%" height="15" fill="rgb(208,99,42)" fg:x="156520" fg:w="1025"/><text x="6.7792%" y="559.50"></text></g><g><title>JVM_DefineClassWithSource (1,038 samples, 0.04%)</title><rect x="6.5287%" y="581" width="0.0433%" height="15" fill="rgb(253,99,2)" fg:x="156508" fg:w="1038"/><text x="6.7787%" y="591.50"></text></g><g><title>jvm_define_class_common (1,036 samples, 0.04%)</title><rect x="6.5288%" y="565" width="0.0432%" height="15" fill="rgb(220,168,23)" fg:x="156510" fg:w="1036"/><text x="6.7788%" y="575.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,066 samples, 0.04%)</title><rect x="6.5285%" y="597" width="0.0445%" height="15" fill="rgb(242,38,24)" fg:x="156504" fg:w="1066"/><text x="6.7785%" y="607.50"></text></g><g><title>[perf-974282.map] (4,667 samples, 0.19%)</title><rect x="6.3932%" y="613" width="0.1947%" height="15" fill="rgb(225,182,9)" fg:x="153259" fg:w="4667"/><text x="6.6432%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (247 samples, 0.01%)</title><rect x="6.5956%" y="549" width="0.0103%" height="15" fill="rgb(243,178,37)" fg:x="158113" fg:w="247"/><text x="6.8456%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (242 samples, 0.01%)</title><rect x="6.5958%" y="533" width="0.0101%" height="15" fill="rgb(232,139,19)" fg:x="158118" fg:w="242"/><text x="6.8458%" y="543.50"></text></g><g><title>native_write_msr (242 samples, 0.01%)</title><rect x="6.5958%" y="517" width="0.0101%" height="15" fill="rgb(225,201,24)" fg:x="158118" fg:w="242"/><text x="6.8458%" y="527.50"></text></g><g><title>schedule_tail (255 samples, 0.01%)</title><rect x="6.5954%" y="581" width="0.0106%" height="15" fill="rgb(221,47,46)" fg:x="158108" fg:w="255"/><text x="6.8454%" y="591.50"></text></g><g><title>finish_task_switch (255 samples, 0.01%)</title><rect x="6.5954%" y="565" width="0.0106%" height="15" fill="rgb(249,23,13)" fg:x="158108" fg:w="255"/><text x="6.8454%" y="575.50"></text></g><g><title>ret_from_fork (271 samples, 0.01%)</title><rect x="6.5950%" y="597" width="0.0113%" height="15" fill="rgb(219,9,5)" fg:x="158098" fg:w="271"/><text x="6.8450%" y="607.50"></text></g><g><title>__GI___clone (415 samples, 0.02%)</title><rect x="6.5944%" y="613" width="0.0173%" height="15" fill="rgb(254,171,16)" fg:x="158084" fg:w="415"/><text x="6.8444%" y="623.50"></text></g><g><title>java (5,547 samples, 0.23%)</title><rect x="6.3819%" y="629" width="0.2314%" height="15" fill="rgb(230,171,20)" fg:x="152990" fg:w="5547"/><text x="6.6319%" y="639.50"></text></g><g><title>[unknown] (376 samples, 0.02%)</title><rect x="6.6165%" y="613" width="0.0157%" height="15" fill="rgb(210,71,41)" fg:x="158612" fg:w="376"/><text x="6.8665%" y="623.50"></text></g><g><title>expand_word_leave_quoted (313 samples, 0.01%)</title><rect x="6.6487%" y="485" width="0.0131%" height="15" fill="rgb(206,173,20)" fg:x="159386" fg:w="313"/><text x="6.8987%" y="495.50"></text></g><g><title>[bash] (313 samples, 0.01%)</title><rect x="6.6487%" y="469" width="0.0131%" height="15" fill="rgb(233,88,34)" fg:x="159386" fg:w="313"/><text x="6.8987%" y="479.50"></text></g><g><title>command_substitute (313 samples, 0.01%)</title><rect x="6.6487%" y="453" width="0.0131%" height="15" fill="rgb(223,209,46)" fg:x="159386" fg:w="313"/><text x="6.8987%" y="463.50"></text></g><g><title>execute_command (342 samples, 0.01%)</title><rect x="6.6477%" y="517" width="0.0143%" height="15" fill="rgb(250,43,18)" fg:x="159361" fg:w="342"/><text x="6.8977%" y="527.50"></text></g><g><title>execute_command_internal (342 samples, 0.01%)</title><rect x="6.6477%" y="501" width="0.0143%" height="15" fill="rgb(208,13,10)" fg:x="159361" fg:w="342"/><text x="6.8977%" y="511.50"></text></g><g><title>parse_and_execute (331 samples, 0.01%)</title><rect x="6.6668%" y="421" width="0.0138%" height="15" fill="rgb(212,200,36)" fg:x="159819" fg:w="331"/><text x="6.9168%" y="431.50"></text></g><g><title>execute_command_internal (329 samples, 0.01%)</title><rect x="6.6669%" y="405" width="0.0137%" height="15" fill="rgb(225,90,30)" fg:x="159821" fg:w="329"/><text x="6.9169%" y="415.50"></text></g><g><title>[bash] (329 samples, 0.01%)</title><rect x="6.6669%" y="389" width="0.0137%" height="15" fill="rgb(236,182,39)" fg:x="159821" fg:w="329"/><text x="6.9169%" y="399.50"></text></g><g><title>[bash] (329 samples, 0.01%)</title><rect x="6.6669%" y="373" width="0.0137%" height="15" fill="rgb(212,144,35)" fg:x="159821" fg:w="329"/><text x="6.9169%" y="383.50"></text></g><g><title>execute_command_internal (326 samples, 0.01%)</title><rect x="6.6670%" y="357" width="0.0136%" height="15" fill="rgb(228,63,44)" fg:x="159824" fg:w="326"/><text x="6.9170%" y="367.50"></text></g><g><title>command_substitute (465 samples, 0.02%)</title><rect x="6.6623%" y="437" width="0.0194%" height="15" fill="rgb(228,109,6)" fg:x="159711" fg:w="465"/><text x="6.9123%" y="447.50"></text></g><g><title>[bash] (477 samples, 0.02%)</title><rect x="6.6620%" y="453" width="0.0199%" height="15" fill="rgb(238,117,24)" fg:x="159704" fg:w="477"/><text x="6.9120%" y="463.50"></text></g><g><title>[bash] (479 samples, 0.02%)</title><rect x="6.6620%" y="469" width="0.0200%" height="15" fill="rgb(242,26,26)" fg:x="159704" fg:w="479"/><text x="6.9120%" y="479.50"></text></g><g><title>[bash] (484 samples, 0.02%)</title><rect x="6.6620%" y="485" width="0.0202%" height="15" fill="rgb(221,92,48)" fg:x="159704" fg:w="484"/><text x="6.9120%" y="495.50"></text></g><g><title>[bash] (487 samples, 0.02%)</title><rect x="6.6620%" y="501" width="0.0203%" height="15" fill="rgb(209,209,32)" fg:x="159704" fg:w="487"/><text x="6.9120%" y="511.50"></text></g><g><title>expand_words (489 samples, 0.02%)</title><rect x="6.6620%" y="517" width="0.0204%" height="15" fill="rgb(221,70,22)" fg:x="159703" fg:w="489"/><text x="6.9120%" y="527.50"></text></g><g><title>execute_command (1,174 samples, 0.05%)</title><rect x="6.6336%" y="549" width="0.0490%" height="15" fill="rgb(248,145,5)" fg:x="159022" fg:w="1174"/><text x="6.8836%" y="559.50"></text></g><g><title>execute_command_internal (1,172 samples, 0.05%)</title><rect x="6.6336%" y="533" width="0.0489%" height="15" fill="rgb(226,116,26)" fg:x="159024" fg:w="1172"/><text x="6.8836%" y="543.50"></text></g><g><title>[bash] (355 samples, 0.01%)</title><rect x="6.6844%" y="501" width="0.0148%" height="15" fill="rgb(244,5,17)" fg:x="160242" fg:w="355"/><text x="6.9344%" y="511.50"></text></g><g><title>reader_loop (1,630 samples, 0.07%)</title><rect x="6.6325%" y="565" width="0.0680%" height="15" fill="rgb(252,159,33)" fg:x="158996" fg:w="1630"/><text x="6.8825%" y="575.50"></text></g><g><title>read_command (430 samples, 0.02%)</title><rect x="6.6825%" y="549" width="0.0179%" height="15" fill="rgb(206,71,0)" fg:x="160196" fg:w="430"/><text x="6.9325%" y="559.50"></text></g><g><title>parse_command (430 samples, 0.02%)</title><rect x="6.6825%" y="533" width="0.0179%" height="15" fill="rgb(233,118,54)" fg:x="160196" fg:w="430"/><text x="6.9325%" y="543.50"></text></g><g><title>yyparse (430 samples, 0.02%)</title><rect x="6.6825%" y="517" width="0.0179%" height="15" fill="rgb(234,83,48)" fg:x="160196" fg:w="430"/><text x="6.9325%" y="527.50"></text></g><g><title>__libc_start_main (1,642 samples, 0.07%)</title><rect x="6.6323%" y="597" width="0.0685%" height="15" fill="rgb(228,3,54)" fg:x="158991" fg:w="1642"/><text x="6.8823%" y="607.50"></text></g><g><title>main (1,642 samples, 0.07%)</title><rect x="6.6323%" y="581" width="0.0685%" height="15" fill="rgb(226,155,13)" fg:x="158991" fg:w="1642"/><text x="6.8823%" y="591.50"></text></g><g><title>_start (1,655 samples, 0.07%)</title><rect x="6.6323%" y="613" width="0.0690%" height="15" fill="rgb(241,28,37)" fg:x="158991" fg:w="1655"/><text x="6.8823%" y="623.50"></text></g><g><title>libtool (2,205 samples, 0.09%)</title><rect x="6.6133%" y="629" width="0.0920%" height="15" fill="rgb(233,93,10)" fg:x="158537" fg:w="2205"/><text x="6.8633%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (253 samples, 0.01%)</title><rect x="6.7404%" y="501" width="0.0106%" height="15" fill="rgb(225,113,19)" fg:x="161583" fg:w="253"/><text x="6.9904%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (249 samples, 0.01%)</title><rect x="6.7406%" y="485" width="0.0104%" height="15" fill="rgb(241,2,18)" fg:x="161587" fg:w="249"/><text x="6.9906%" y="495.50"></text></g><g><title>native_write_msr (248 samples, 0.01%)</title><rect x="6.7406%" y="469" width="0.0103%" height="15" fill="rgb(228,207,21)" fg:x="161588" fg:w="248"/><text x="6.9906%" y="479.50"></text></g><g><title>arch_fork (372 samples, 0.02%)</title><rect x="6.7357%" y="565" width="0.0155%" height="15" fill="rgb(213,211,35)" fg:x="161470" fg:w="372"/><text x="6.9857%" y="575.50"></text></g><g><title>ret_from_fork (291 samples, 0.01%)</title><rect x="6.7390%" y="549" width="0.0121%" height="15" fill="rgb(209,83,10)" fg:x="161551" fg:w="291"/><text x="6.9890%" y="559.50"></text></g><g><title>schedule_tail (290 samples, 0.01%)</title><rect x="6.7391%" y="533" width="0.0121%" height="15" fill="rgb(209,164,1)" fg:x="161552" fg:w="290"/><text x="6.9891%" y="543.50"></text></g><g><title>finish_task_switch (262 samples, 0.01%)</title><rect x="6.7403%" y="517" width="0.0109%" height="15" fill="rgb(213,184,43)" fg:x="161580" fg:w="262"/><text x="6.9903%" y="527.50"></text></g><g><title>__libc_fork (389 samples, 0.02%)</title><rect x="6.7353%" y="581" width="0.0162%" height="15" fill="rgb(231,61,34)" fg:x="161461" fg:w="389"/><text x="6.9853%" y="591.50"></text></g><g><title>Pid1Main (1,045 samples, 0.04%)</title><rect x="6.7147%" y="597" width="0.0436%" height="15" fill="rgb(235,75,3)" fg:x="160967" fg:w="1045"/><text x="6.9647%" y="607.50"></text></g><g><title>__GI___clone (1,289 samples, 0.05%)</title><rect x="6.7146%" y="613" width="0.0538%" height="15" fill="rgb(220,106,47)" fg:x="160966" fg:w="1289"/><text x="6.9646%" y="623.50"></text></g><g><title>__libc_start_main (658 samples, 0.03%)</title><rect x="6.7707%" y="597" width="0.0274%" height="15" fill="rgb(210,196,33)" fg:x="162310" fg:w="658"/><text x="7.0207%" y="607.50"></text></g><g><title>main (570 samples, 0.02%)</title><rect x="6.7744%" y="581" width="0.0238%" height="15" fill="rgb(229,154,42)" fg:x="162398" fg:w="570"/><text x="7.0244%" y="591.50"></text></g><g><title>_dl_lookup_symbol_x (285 samples, 0.01%)</title><rect x="6.8121%" y="485" width="0.0119%" height="15" fill="rgb(228,114,26)" fg:x="163303" fg:w="285"/><text x="7.0621%" y="495.50"></text></g><g><title>elf_machine_rela (356 samples, 0.01%)</title><rect x="6.8093%" y="501" width="0.0149%" height="15" fill="rgb(208,144,1)" fg:x="163234" fg:w="356"/><text x="7.0593%" y="511.50"></text></g><g><title>elf_dynamic_do_Rela (408 samples, 0.02%)</title><rect x="6.8078%" y="517" width="0.0170%" height="15" fill="rgb(239,112,37)" fg:x="163198" fg:w="408"/><text x="7.0578%" y="527.50"></text></g><g><title>_dl_relocate_object (435 samples, 0.02%)</title><rect x="6.8068%" y="533" width="0.0181%" height="15" fill="rgb(210,96,50)" fg:x="163175" fg:w="435"/><text x="7.0568%" y="543.50"></text></g><g><title>[ld-2.31.so] (652 samples, 0.03%)</title><rect x="6.7982%" y="549" width="0.0272%" height="15" fill="rgb(222,178,2)" fg:x="162968" fg:w="652"/><text x="7.0482%" y="559.50"></text></g><g><title>_dl_start_final (659 samples, 0.03%)</title><rect x="6.7982%" y="581" width="0.0275%" height="15" fill="rgb(226,74,18)" fg:x="162968" fg:w="659"/><text x="7.0482%" y="591.50"></text></g><g><title>_dl_sysdep_start (659 samples, 0.03%)</title><rect x="6.7982%" y="565" width="0.0275%" height="15" fill="rgb(225,67,54)" fg:x="162968" fg:w="659"/><text x="7.0482%" y="575.50"></text></g><g><title>_dl_start (667 samples, 0.03%)</title><rect x="6.7982%" y="597" width="0.0278%" height="15" fill="rgb(251,92,32)" fg:x="162968" fg:w="667"/><text x="7.0482%" y="607.50"></text></g><g><title>_start (1,335 samples, 0.06%)</title><rect x="6.7707%" y="613" width="0.0557%" height="15" fill="rgb(228,149,22)" fg:x="162310" fg:w="1335"/><text x="7.0207%" y="623.50"></text></g><g><title>__x64_sys_exit (256 samples, 0.01%)</title><rect x="6.8351%" y="581" width="0.0107%" height="15" fill="rgb(243,54,13)" fg:x="163854" fg:w="256"/><text x="7.0851%" y="591.50"></text></g><g><title>do_exit (256 samples, 0.01%)</title><rect x="6.8351%" y="565" width="0.0107%" height="15" fill="rgb(243,180,28)" fg:x="163854" fg:w="256"/><text x="7.0851%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (442 samples, 0.02%)</title><rect x="6.8317%" y="613" width="0.0184%" height="15" fill="rgb(208,167,24)" fg:x="163771" fg:w="442"/><text x="7.0817%" y="623.50"></text></g><g><title>do_syscall_64 (442 samples, 0.02%)</title><rect x="6.8317%" y="597" width="0.0184%" height="15" fill="rgb(245,73,45)" fg:x="163771" fg:w="442"/><text x="7.0817%" y="607.50"></text></g><g><title>linux-sandbox (3,477 samples, 0.15%)</title><rect x="6.7053%" y="629" width="0.1450%" height="15" fill="rgb(237,203,48)" fg:x="160742" fg:w="3477"/><text x="6.9553%" y="639.50"></text></g><g><title>_start (242 samples, 0.01%)</title><rect x="6.8508%" y="613" width="0.0101%" height="15" fill="rgb(211,197,16)" fg:x="164231" fg:w="242"/><text x="7.1008%" y="623.50"></text></g><g><title>process-wrapper (266 samples, 0.01%)</title><rect x="6.8506%" y="629" width="0.0111%" height="15" fill="rgb(243,99,51)" fg:x="164225" fg:w="266"/><text x="7.1006%" y="639.50"></text></g><g><title>[perf-974282.map] (383 samples, 0.02%)</title><rect x="6.8620%" y="613" width="0.0160%" height="15" fill="rgb(215,123,29)" fg:x="164498" fg:w="383"/><text x="7.1120%" y="623.50"></text></g><g><title>process_reaper (400 samples, 0.02%)</title><rect x="6.8617%" y="629" width="0.0167%" height="15" fill="rgb(239,186,37)" fg:x="164491" fg:w="400"/><text x="7.1117%" y="639.50"></text></g><g><title>futex_wait_queue_me (248 samples, 0.01%)</title><rect x="6.8981%" y="437" width="0.0103%" height="15" fill="rgb(252,136,39)" fg:x="165365" fg:w="248"/><text x="7.1481%" y="447.50"></text></g><g><title>schedule (241 samples, 0.01%)</title><rect x="6.8984%" y="421" width="0.0101%" height="15" fill="rgb(223,213,32)" fg:x="165372" fg:w="241"/><text x="7.1484%" y="431.50"></text></g><g><title>__schedule (240 samples, 0.01%)</title><rect x="6.8985%" y="405" width="0.0100%" height="15" fill="rgb(233,115,5)" fg:x="165373" fg:w="240"/><text x="7.1485%" y="415.50"></text></g><g><title>do_syscall_64 (252 samples, 0.01%)</title><rect x="6.8981%" y="501" width="0.0105%" height="15" fill="rgb(207,226,44)" fg:x="165364" fg:w="252"/><text x="7.1481%" y="511.50"></text></g><g><title>__x64_sys_futex (252 samples, 0.01%)</title><rect x="6.8981%" y="485" width="0.0105%" height="15" fill="rgb(208,126,0)" fg:x="165364" fg:w="252"/><text x="7.1481%" y="495.50"></text></g><g><title>do_futex (252 samples, 0.01%)</title><rect x="6.8981%" y="469" width="0.0105%" height="15" fill="rgb(244,66,21)" fg:x="165364" fg:w="252"/><text x="7.1481%" y="479.50"></text></g><g><title>futex_wait (252 samples, 0.01%)</title><rect x="6.8981%" y="453" width="0.0105%" height="15" fill="rgb(222,97,12)" fg:x="165364" fg:w="252"/><text x="7.1481%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (269 samples, 0.01%)</title><rect x="6.8981%" y="517" width="0.0112%" height="15" fill="rgb(219,213,19)" fg:x="165364" fg:w="269"/><text x="7.1481%" y="527.50"></text></g><g><title>__pthread_cond_wait (282 samples, 0.01%)</title><rect x="6.8976%" y="565" width="0.0118%" height="15" fill="rgb(252,169,30)" fg:x="165352" fg:w="282"/><text x="7.1476%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (282 samples, 0.01%)</title><rect x="6.8976%" y="549" width="0.0118%" height="15" fill="rgb(206,32,51)" fg:x="165352" fg:w="282"/><text x="7.1476%" y="559.50"></text></g><g><title>futex_wait_cancelable (276 samples, 0.01%)</title><rect x="6.8979%" y="533" width="0.0115%" height="15" fill="rgb(250,172,42)" fg:x="165358" fg:w="276"/><text x="7.1479%" y="543.50"></text></g><g><title>Parker::park (316 samples, 0.01%)</title><rect x="6.8970%" y="581" width="0.0132%" height="15" fill="rgb(209,34,43)" fg:x="165338" fg:w="316"/><text x="7.1470%" y="591.50"></text></g><g><title>Unsafe_Park (325 samples, 0.01%)</title><rect x="6.8967%" y="597" width="0.0136%" height="15" fill="rgb(223,11,35)" fg:x="165331" fg:w="325"/><text x="7.1467%" y="607.50"></text></g><g><title>[perf-974282.map] (750 samples, 0.03%)</title><rect x="6.8793%" y="613" width="0.0313%" height="15" fill="rgb(251,219,26)" fg:x="164912" fg:w="750"/><text x="7.1293%" y="623.50"></text></g><g><title>profile-writer- (794 samples, 0.03%)</title><rect x="6.8784%" y="629" width="0.0331%" height="15" fill="rgb(231,119,3)" fg:x="164891" fg:w="794"/><text x="7.1284%" y="639.50"></text></g><g><title>[unknown] (374 samples, 0.02%)</title><rect x="6.9136%" y="613" width="0.0156%" height="15" fill="rgb(216,97,11)" fg:x="165736" fg:w="374"/><text x="7.1636%" y="623.50"></text></g><g><title>python3 (628 samples, 0.03%)</title><rect x="6.9117%" y="629" width="0.0262%" height="15" fill="rgb(223,59,9)" fg:x="165689" fg:w="628"/><text x="7.1617%" y="639.50"></text></g><g><title>_IO_getdelim (247 samples, 0.01%)</title><rect x="6.9582%" y="501" width="0.0103%" height="15" fill="rgb(233,93,31)" fg:x="166804" fg:w="247"/><text x="7.2082%" y="511.50"></text></g><g><title>[sed] (514 samples, 0.02%)</title><rect x="6.9504%" y="517" width="0.0214%" height="15" fill="rgb(239,81,33)" fg:x="166618" fg:w="514"/><text x="7.2004%" y="527.50"></text></g><g><title>[sed] (569 samples, 0.02%)</title><rect x="6.9490%" y="533" width="0.0237%" height="15" fill="rgb(213,120,34)" fg:x="166585" fg:w="569"/><text x="7.1990%" y="543.50"></text></g><g><title>[sed] (734 samples, 0.03%)</title><rect x="6.9485%" y="549" width="0.0306%" height="15" fill="rgb(243,49,53)" fg:x="166571" fg:w="734"/><text x="7.1985%" y="559.50"></text></g><g><title>[sed] (772 samples, 0.03%)</title><rect x="6.9479%" y="565" width="0.0322%" height="15" fill="rgb(247,216,33)" fg:x="166558" fg:w="772"/><text x="7.1979%" y="575.50"></text></g><g><title>[sed] (918 samples, 0.04%)</title><rect x="6.9479%" y="581" width="0.0383%" height="15" fill="rgb(226,26,14)" fg:x="166557" fg:w="918"/><text x="7.1979%" y="591.50"></text></g><g><title>__libc_start_main (1,030 samples, 0.04%)</title><rect x="6.9478%" y="597" width="0.0430%" height="15" fill="rgb(215,49,53)" fg:x="166556" fg:w="1030"/><text x="7.1978%" y="607.50"></text></g><g><title>[sed] (1,063 samples, 0.04%)</title><rect x="6.9476%" y="613" width="0.0443%" height="15" fill="rgb(245,162,40)" fg:x="166550" fg:w="1063"/><text x="7.1976%" y="623.50"></text></g><g><title>determine_info (251 samples, 0.01%)</title><rect x="7.0187%" y="437" width="0.0105%" height="15" fill="rgb(229,68,17)" fg:x="168256" fg:w="251"/><text x="7.2687%" y="447.50"></text></g><g><title>__GI__dl_addr (278 samples, 0.01%)</title><rect x="7.0177%" y="453" width="0.0116%" height="15" fill="rgb(213,182,10)" fg:x="168230" fg:w="278"/><text x="7.2677%" y="463.50"></text></g><g><title>__fopen_internal (412 samples, 0.02%)</title><rect x="7.0125%" y="517" width="0.0172%" height="15" fill="rgb(245,125,30)" fg:x="168106" fg:w="412"/><text x="7.2625%" y="527.50"></text></g><g><title>malloc_hook_ini (292 samples, 0.01%)</title><rect x="7.0175%" y="501" width="0.0122%" height="15" fill="rgb(232,202,2)" fg:x="168226" fg:w="292"/><text x="7.2675%" y="511.50"></text></g><g><title>ptmalloc_init (292 samples, 0.01%)</title><rect x="7.0175%" y="485" width="0.0122%" height="15" fill="rgb(237,140,51)" fg:x="168226" fg:w="292"/><text x="7.2675%" y="495.50"></text></g><g><title>ptmalloc_init (292 samples, 0.01%)</title><rect x="7.0175%" y="469" width="0.0122%" height="15" fill="rgb(236,157,25)" fg:x="168226" fg:w="292"/><text x="7.2675%" y="479.50"></text></g><g><title>selinuxfs_exists (624 samples, 0.03%)</title><rect x="7.0041%" y="533" width="0.0260%" height="15" fill="rgb(219,209,0)" fg:x="167906" fg:w="624"/><text x="7.2541%" y="543.50"></text></g><g><title>[libselinux.so.1] (773 samples, 0.03%)</title><rect x="6.9980%" y="549" width="0.0322%" height="15" fill="rgb(240,116,54)" fg:x="167758" fg:w="773"/><text x="7.2480%" y="559.50"></text></g><g><title>_dl_start_user (877 samples, 0.04%)</title><rect x="6.9977%" y="613" width="0.0366%" height="15" fill="rgb(216,10,36)" fg:x="167752" fg:w="877"/><text x="7.2477%" y="623.50"></text></g><g><title>_dl_init (876 samples, 0.04%)</title><rect x="6.9978%" y="597" width="0.0365%" height="15" fill="rgb(222,72,44)" fg:x="167753" fg:w="876"/><text x="7.2478%" y="607.50"></text></g><g><title>call_init (874 samples, 0.04%)</title><rect x="6.9978%" y="581" width="0.0365%" height="15" fill="rgb(232,159,9)" fg:x="167755" fg:w="874"/><text x="7.2478%" y="591.50"></text></g><g><title>call_init (874 samples, 0.04%)</title><rect x="6.9978%" y="565" width="0.0365%" height="15" fill="rgb(210,39,32)" fg:x="167755" fg:w="874"/><text x="7.2478%" y="575.50"></text></g><g><title>__split_vma (317 samples, 0.01%)</title><rect x="7.0706%" y="293" width="0.0132%" height="15" fill="rgb(216,194,45)" fg:x="169498" fg:w="317"/><text x="7.3206%" y="303.50"></text></g><g><title>__do_munmap (531 samples, 0.02%)</title><rect x="7.0694%" y="309" width="0.0222%" height="15" fill="rgb(218,18,35)" fg:x="169471" fg:w="531"/><text x="7.3194%" y="319.50"></text></g><g><title>mmap_region (974 samples, 0.04%)</title><rect x="7.0679%" y="325" width="0.0406%" height="15" fill="rgb(207,83,51)" fg:x="169435" fg:w="974"/><text x="7.3179%" y="335.50"></text></g><g><title>do_mmap (1,003 samples, 0.04%)</title><rect x="7.0668%" y="341" width="0.0418%" height="15" fill="rgb(225,63,43)" fg:x="169409" fg:w="1003"/><text x="7.3168%" y="351.50"></text></g><g><title>ksys_mmap_pgoff (1,042 samples, 0.04%)</title><rect x="7.0662%" y="373" width="0.0435%" height="15" fill="rgb(207,57,36)" fg:x="169394" fg:w="1042"/><text x="7.3162%" y="383.50"></text></g><g><title>vm_mmap_pgoff (1,033 samples, 0.04%)</title><rect x="7.0666%" y="357" width="0.0431%" height="15" fill="rgb(216,99,33)" fg:x="169403" fg:w="1033"/><text x="7.3166%" y="367.50"></text></g><g><title>do_syscall_64 (1,120 samples, 0.05%)</title><rect x="7.0661%" y="389" width="0.0467%" height="15" fill="rgb(225,42,16)" fg:x="169392" fg:w="1120"/><text x="7.3161%" y="399.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,139 samples, 0.05%)</title><rect x="7.0660%" y="405" width="0.0475%" height="15" fill="rgb(220,201,45)" fg:x="169389" fg:w="1139"/><text x="7.3160%" y="415.50"></text></g><g><title>__mmap64 (1,169 samples, 0.05%)</title><rect x="7.0652%" y="437" width="0.0488%" height="15" fill="rgb(225,33,4)" fg:x="169370" fg:w="1169"/><text x="7.3152%" y="447.50"></text></g><g><title>__mmap64 (1,168 samples, 0.05%)</title><rect x="7.0653%" y="421" width="0.0487%" height="15" fill="rgb(224,33,50)" fg:x="169371" fg:w="1168"/><text x="7.3153%" y="431.50"></text></g><g><title>_dl_map_segments (1,356 samples, 0.06%)</title><rect x="7.0575%" y="453" width="0.0566%" height="15" fill="rgb(246,198,51)" fg:x="169184" fg:w="1356"/><text x="7.3075%" y="463.50"></text></g><g><title>_dl_map_object_from_fd (1,798 samples, 0.08%)</title><rect x="7.0541%" y="469" width="0.0750%" height="15" fill="rgb(205,22,4)" fg:x="169104" fg:w="1798"/><text x="7.3041%" y="479.50"></text></g><g><title>__GI___open64_nocancel (241 samples, 0.01%)</title><rect x="7.1309%" y="453" width="0.0101%" height="15" fill="rgb(206,3,8)" fg:x="170945" fg:w="241"/><text x="7.3809%" y="463.50"></text></g><g><title>open_verify (295 samples, 0.01%)</title><rect x="7.1305%" y="469" width="0.0123%" height="15" fill="rgb(251,23,15)" fg:x="170935" fg:w="295"/><text x="7.3805%" y="479.50"></text></g><g><title>_dl_catch_exception (2,381 samples, 0.10%)</title><rect x="7.0447%" y="517" width="0.0993%" height="15" fill="rgb(252,88,28)" fg:x="168878" fg:w="2381"/><text x="7.2947%" y="527.50"></text></g><g><title>openaux (2,376 samples, 0.10%)</title><rect x="7.0449%" y="501" width="0.0991%" height="15" fill="rgb(212,127,14)" fg:x="168883" fg:w="2376"/><text x="7.2949%" y="511.50"></text></g><g><title>_dl_map_object (2,375 samples, 0.10%)</title><rect x="7.0449%" y="485" width="0.0991%" height="15" fill="rgb(247,145,37)" fg:x="168884" fg:w="2375"/><text x="7.2949%" y="495.50"></text></g><g><title>_dl_map_object_deps (2,479 samples, 0.10%)</title><rect x="7.0432%" y="533" width="0.1034%" height="15" fill="rgb(209,117,53)" fg:x="168841" fg:w="2479"/><text x="7.2932%" y="543.50"></text></g><g><title>__x64_sys_mprotect (259 samples, 0.01%)</title><rect x="7.1506%" y="453" width="0.0108%" height="15" fill="rgb(212,90,42)" fg:x="171417" fg:w="259"/><text x="7.4006%" y="463.50"></text></g><g><title>do_mprotect_pkey (258 samples, 0.01%)</title><rect x="7.1506%" y="437" width="0.0108%" height="15" fill="rgb(218,164,37)" fg:x="171418" fg:w="258"/><text x="7.4006%" y="447.50"></text></g><g><title>do_syscall_64 (261 samples, 0.01%)</title><rect x="7.1506%" y="469" width="0.0109%" height="15" fill="rgb(246,65,34)" fg:x="171416" fg:w="261"/><text x="7.4006%" y="479.50"></text></g><g><title>_dl_protect_relro (270 samples, 0.01%)</title><rect x="7.1502%" y="517" width="0.0113%" height="15" fill="rgb(231,100,33)" fg:x="171408" fg:w="270"/><text x="7.4002%" y="527.50"></text></g><g><title>__mprotect (269 samples, 0.01%)</title><rect x="7.1503%" y="501" width="0.0112%" height="15" fill="rgb(228,126,14)" fg:x="171409" fg:w="269"/><text x="7.4003%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (262 samples, 0.01%)</title><rect x="7.1506%" y="485" width="0.0109%" height="15" fill="rgb(215,173,21)" fg:x="171416" fg:w="262"/><text x="7.4006%" y="495.50"></text></g><g><title>_dl_lookup_symbol_x (829 samples, 0.03%)</title><rect x="7.1725%" y="485" width="0.0346%" height="15" fill="rgb(210,6,40)" fg:x="171941" fg:w="829"/><text x="7.4225%" y="495.50"></text></g><g><title>do_lookup_x (619 samples, 0.03%)</title><rect x="7.1812%" y="469" width="0.0258%" height="15" fill="rgb(212,48,18)" fg:x="172151" fg:w="619"/><text x="7.4312%" y="479.50"></text></g><g><title>elf_machine_rela (972 samples, 0.04%)</title><rect x="7.1669%" y="501" width="0.0405%" height="15" fill="rgb(230,214,11)" fg:x="171808" fg:w="972"/><text x="7.4169%" y="511.50"></text></g><g><title>elf_dynamic_do_Rela (1,156 samples, 0.05%)</title><rect x="7.1615%" y="517" width="0.0482%" height="15" fill="rgb(254,105,39)" fg:x="171678" fg:w="1156"/><text x="7.4115%" y="527.50"></text></g><g><title>_dl_relocate_object (1,467 samples, 0.06%)</title><rect x="7.1497%" y="533" width="0.0612%" height="15" fill="rgb(245,158,5)" fg:x="171396" fg:w="1467"/><text x="7.3997%" y="543.50"></text></g><g><title>[ld-2.31.so] (4,306 samples, 0.18%)</title><rect x="7.0397%" y="549" width="0.1796%" height="15" fill="rgb(249,208,11)" fg:x="168759" fg:w="4306"/><text x="7.2897%" y="559.50"></text></g><g><title>_dl_start_final (4,396 samples, 0.18%)</title><rect x="7.0394%" y="581" width="0.1834%" height="15" fill="rgb(210,39,28)" fg:x="168752" fg:w="4396"/><text x="7.2894%" y="591.50"></text></g><g><title>_dl_sysdep_start (4,394 samples, 0.18%)</title><rect x="7.0395%" y="565" width="0.1833%" height="15" fill="rgb(211,56,53)" fg:x="168754" fg:w="4394"/><text x="7.2895%" y="575.50"></text></g><g><title>_dl_start (4,452 samples, 0.19%)</title><rect x="7.0394%" y="597" width="0.1857%" height="15" fill="rgb(226,201,30)" fg:x="168750" fg:w="4452"/><text x="7.2894%" y="607.50"></text></g><g><title>_start (4,492 samples, 0.19%)</title><rect x="7.0390%" y="613" width="0.1874%" height="15" fill="rgb(239,101,34)" fg:x="168741" fg:w="4492"/><text x="7.2890%" y="623.50"></text></g><g><title>__x64_sys_execve (476 samples, 0.02%)</title><rect x="7.2356%" y="581" width="0.0199%" height="15" fill="rgb(226,209,5)" fg:x="173455" fg:w="476"/><text x="7.4856%" y="591.50"></text></g><g><title>do_execveat_common (476 samples, 0.02%)</title><rect x="7.2356%" y="565" width="0.0199%" height="15" fill="rgb(250,105,47)" fg:x="173455" fg:w="476"/><text x="7.4856%" y="575.50"></text></g><g><title>bprm_execve (476 samples, 0.02%)</title><rect x="7.2356%" y="549" width="0.0199%" height="15" fill="rgb(230,72,3)" fg:x="173455" fg:w="476"/><text x="7.4856%" y="559.50"></text></g><g><title>load_elf_binary (476 samples, 0.02%)</title><rect x="7.2356%" y="533" width="0.0199%" height="15" fill="rgb(232,218,39)" fg:x="173455" fg:w="476"/><text x="7.4856%" y="543.50"></text></g><g><title>unmap_page_range (319 samples, 0.01%)</title><rect x="7.2699%" y="485" width="0.0133%" height="15" fill="rgb(248,166,6)" fg:x="174276" fg:w="319"/><text x="7.5199%" y="495.50"></text></g><g><title>exit_mmap (663 samples, 0.03%)</title><rect x="7.2559%" y="517" width="0.0277%" height="15" fill="rgb(247,89,20)" fg:x="173941" fg:w="663"/><text x="7.5059%" y="527.50"></text></g><g><title>unmap_vmas (330 samples, 0.01%)</title><rect x="7.2698%" y="501" width="0.0138%" height="15" fill="rgb(248,130,54)" fg:x="174274" fg:w="330"/><text x="7.5198%" y="511.50"></text></g><g><title>mmput (668 samples, 0.03%)</title><rect x="7.2558%" y="533" width="0.0279%" height="15" fill="rgb(234,196,4)" fg:x="173939" fg:w="668"/><text x="7.5058%" y="543.50"></text></g><g><title>__x64_sys_exit_group (733 samples, 0.03%)</title><rect x="7.2555%" y="581" width="0.0306%" height="15" fill="rgb(250,143,31)" fg:x="173931" fg:w="733"/><text x="7.5055%" y="591.50"></text></g><g><title>do_group_exit (733 samples, 0.03%)</title><rect x="7.2555%" y="565" width="0.0306%" height="15" fill="rgb(211,110,34)" fg:x="173931" fg:w="733"/><text x="7.5055%" y="575.50"></text></g><g><title>do_exit (733 samples, 0.03%)</title><rect x="7.2555%" y="549" width="0.0306%" height="15" fill="rgb(215,124,48)" fg:x="173931" fg:w="733"/><text x="7.5055%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,213 samples, 0.05%)</title><rect x="7.2355%" y="613" width="0.0506%" height="15" fill="rgb(216,46,13)" fg:x="173452" fg:w="1213"/><text x="7.4855%" y="623.50"></text></g><g><title>do_syscall_64 (1,210 samples, 0.05%)</title><rect x="7.2356%" y="597" width="0.0505%" height="15" fill="rgb(205,184,25)" fg:x="173455" fg:w="1210"/><text x="7.4856%" y="607.50"></text></g><g><title>sed (8,364 samples, 0.35%)</title><rect x="6.9379%" y="629" width="0.3489%" height="15" fill="rgb(228,1,10)" fg:x="166317" fg:w="8364"/><text x="7.1879%" y="639.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (291 samples, 0.01%)</title><rect x="7.2993%" y="597" width="0.0121%" height="15" fill="rgb(213,116,27)" fg:x="174981" fg:w="291"/><text x="7.5493%" y="607.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;5292148ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)0, 5292148ul&gt;::oop_access_barrier (483 samples, 0.02%)</title><rect x="7.3115%" y="597" width="0.0201%" height="15" fill="rgb(241,95,50)" fg:x="175274" fg:w="483"/><text x="7.5615%" y="607.50"></text></g><g><title>HandleMark::pop_and_restore (377 samples, 0.02%)</title><rect x="7.3442%" y="597" width="0.0157%" height="15" fill="rgb(238,48,32)" fg:x="176057" fg:w="377"/><text x="7.5942%" y="607.50"></text></g><g><title>JNIHandles::make_local (304 samples, 0.01%)</title><rect x="7.3621%" y="597" width="0.0127%" height="15" fill="rgb(235,113,49)" fg:x="176488" fg:w="304"/><text x="7.6121%" y="607.50"></text></g><g><title>JavaThread::is_Java_thread (357 samples, 0.01%)</title><rect x="7.3785%" y="597" width="0.0149%" height="15" fill="rgb(205,127,43)" fg:x="176881" fg:w="357"/><text x="7.6285%" y="607.50"></text></g><g><title>ThreadStateTransition::transition_from_native (303 samples, 0.01%)</title><rect x="7.4058%" y="597" width="0.0126%" height="15" fill="rgb(250,162,2)" fg:x="177535" fg:w="303"/><text x="7.6558%" y="607.50"></text></g><g><title>__GI_unlinkat (523 samples, 0.02%)</title><rect x="7.4329%" y="597" width="0.0218%" height="15" fill="rgb(220,13,41)" fg:x="178185" fg:w="523"/><text x="7.6829%" y="607.50"></text></g><g><title>__symlink (275 samples, 0.01%)</title><rect x="7.4584%" y="597" width="0.0115%" height="15" fill="rgb(249,221,25)" fg:x="178795" fg:w="275"/><text x="7.7084%" y="607.50"></text></g><g><title>check_bounds (320 samples, 0.01%)</title><rect x="7.4769%" y="597" width="0.0133%" height="15" fill="rgb(215,208,19)" fg:x="179240" fg:w="320"/><text x="7.7269%" y="607.50"></text></g><g><title>jni_GetObjectField (248 samples, 0.01%)</title><rect x="7.4994%" y="597" width="0.0103%" height="15" fill="rgb(236,175,2)" fg:x="179778" fg:w="248"/><text x="7.7494%" y="607.50"></text></g><g><title>[anon] (5,531 samples, 0.23%)</title><rect x="7.2881%" y="613" width="0.2307%" height="15" fill="rgb(241,52,2)" fg:x="174714" fg:w="5531"/><text x="7.5381%" y="623.50"></text></g><g><title>[libc-2.31.so] (300 samples, 0.01%)</title><rect x="7.8069%" y="597" width="0.0125%" height="15" fill="rgb(248,140,14)" fg:x="187150" fg:w="300"/><text x="8.0569%" y="607.50"></text></g><g><title>__x64_sys_close (546 samples, 0.02%)</title><rect x="7.8240%" y="549" width="0.0228%" height="15" fill="rgb(253,22,42)" fg:x="187560" fg:w="546"/><text x="8.0740%" y="559.50"></text></g><g><title>filp_close (376 samples, 0.02%)</title><rect x="7.8311%" y="533" width="0.0157%" height="15" fill="rgb(234,61,47)" fg:x="187730" fg:w="376"/><text x="8.0811%" y="543.50"></text></g><g><title>do_syscall_64 (618 samples, 0.03%)</title><rect x="7.8221%" y="565" width="0.0258%" height="15" fill="rgb(208,226,15)" fg:x="187514" fg:w="618"/><text x="8.0721%" y="575.50"></text></g><g><title>btrfs_release_file (666 samples, 0.03%)</title><rect x="7.8601%" y="501" width="0.0278%" height="15" fill="rgb(217,221,4)" fg:x="188425" fg:w="666"/><text x="8.1101%" y="511.50"></text></g><g><title>kfree (535 samples, 0.02%)</title><rect x="7.8656%" y="485" width="0.0223%" height="15" fill="rgb(212,174,34)" fg:x="188556" fg:w="535"/><text x="8.1156%" y="495.50"></text></g><g><title>__fput (1,255 samples, 0.05%)</title><rect x="7.8547%" y="517" width="0.0524%" height="15" fill="rgb(253,83,4)" fg:x="188296" fg:w="1255"/><text x="8.1047%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,135 samples, 0.09%)</title><rect x="7.8214%" y="581" width="0.0891%" height="15" fill="rgb(250,195,49)" fg:x="187498" fg:w="2135"/><text x="8.0714%" y="591.50"></text></g><g><title>syscall_exit_to_user_mode (1,501 samples, 0.06%)</title><rect x="7.8479%" y="565" width="0.0626%" height="15" fill="rgb(241,192,25)" fg:x="188132" fg:w="1501"/><text x="8.0979%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,496 samples, 0.06%)</title><rect x="7.8481%" y="549" width="0.0624%" height="15" fill="rgb(208,124,10)" fg:x="188137" fg:w="1496"/><text x="8.0981%" y="559.50"></text></g><g><title>task_work_run (1,372 samples, 0.06%)</title><rect x="7.8532%" y="533" width="0.0572%" height="15" fill="rgb(222,33,0)" fg:x="188261" fg:w="1372"/><text x="8.1032%" y="543.50"></text></g><g><title>__GI___close_nocancel (2,200 samples, 0.09%)</title><rect x="7.8194%" y="597" width="0.0918%" height="15" fill="rgb(234,209,28)" fg:x="187450" fg:w="2200"/><text x="8.0694%" y="607.50"></text></g><g><title>__GI___libc_free (870 samples, 0.04%)</title><rect x="7.9112%" y="597" width="0.0363%" height="15" fill="rgb(224,11,23)" fg:x="189650" fg:w="870"/><text x="8.1612%" y="607.50"></text></g><g><title>filename_lookup (251 samples, 0.01%)</title><rect x="7.9490%" y="517" width="0.0105%" height="15" fill="rgb(232,99,1)" fg:x="190556" fg:w="251"/><text x="8.1990%" y="527.50"></text></g><g><title>path_lookupat (243 samples, 0.01%)</title><rect x="7.9493%" y="501" width="0.0101%" height="15" fill="rgb(237,95,45)" fg:x="190564" fg:w="243"/><text x="8.1993%" y="511.50"></text></g><g><title>__do_sys_newlstat (365 samples, 0.02%)</title><rect x="7.9481%" y="549" width="0.0152%" height="15" fill="rgb(208,109,11)" fg:x="190535" fg:w="365"/><text x="8.1981%" y="559.50"></text></g><g><title>vfs_statx (356 samples, 0.01%)</title><rect x="7.9485%" y="533" width="0.0149%" height="15" fill="rgb(216,190,48)" fg:x="190544" fg:w="356"/><text x="8.1985%" y="543.50"></text></g><g><title>do_syscall_64 (370 samples, 0.02%)</title><rect x="7.9481%" y="565" width="0.0154%" height="15" fill="rgb(251,171,36)" fg:x="190534" fg:w="370"/><text x="8.1981%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (377 samples, 0.02%)</title><rect x="7.9479%" y="581" width="0.0157%" height="15" fill="rgb(230,62,22)" fg:x="190530" fg:w="377"/><text x="8.1979%" y="591.50"></text></g><g><title>__GI___lxstat (388 samples, 0.02%)</title><rect x="7.9475%" y="597" width="0.0162%" height="15" fill="rgb(225,114,35)" fg:x="190521" fg:w="388"/><text x="8.1975%" y="607.50"></text></g><g><title>dput (346 samples, 0.01%)</title><rect x="7.9746%" y="533" width="0.0144%" height="15" fill="rgb(215,118,42)" fg:x="191170" fg:w="346"/><text x="8.2246%" y="543.50"></text></g><g><title>finish_wait (253 samples, 0.01%)</title><rect x="8.0184%" y="405" width="0.0106%" height="15" fill="rgb(243,119,21)" fg:x="192219" fg:w="253"/><text x="8.2684%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (244 samples, 0.01%)</title><rect x="8.0187%" y="389" width="0.0102%" height="15" fill="rgb(252,177,53)" fg:x="192228" fg:w="244"/><text x="8.2687%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (671 samples, 0.03%)</title><rect x="8.0315%" y="389" width="0.0280%" height="15" fill="rgb(237,209,29)" fg:x="192534" fg:w="671"/><text x="8.2815%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (634 samples, 0.03%)</title><rect x="8.0330%" y="373" width="0.0264%" height="15" fill="rgb(212,65,23)" fg:x="192571" fg:w="634"/><text x="8.2830%" y="383.50"></text></g><g><title>prepare_to_wait_event (745 samples, 0.03%)</title><rect x="8.0290%" y="405" width="0.0311%" height="15" fill="rgb(230,222,46)" fg:x="192474" fg:w="745"/><text x="8.2790%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (632 samples, 0.03%)</title><rect x="8.0601%" y="405" width="0.0264%" height="15" fill="rgb(215,135,32)" fg:x="193219" fg:w="632"/><text x="8.3101%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (471 samples, 0.02%)</title><rect x="8.0668%" y="389" width="0.0196%" height="15" fill="rgb(246,101,22)" fg:x="193380" fg:w="471"/><text x="8.3168%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (2,287 samples, 0.10%)</title><rect x="8.0146%" y="421" width="0.0954%" height="15" fill="rgb(206,107,13)" fg:x="192130" fg:w="2287"/><text x="8.2646%" y="431.50"></text></g><g><title>schedule (566 samples, 0.02%)</title><rect x="8.0864%" y="405" width="0.0236%" height="15" fill="rgb(250,100,44)" fg:x="193851" fg:w="566"/><text x="8.3364%" y="415.50"></text></g><g><title>__schedule (562 samples, 0.02%)</title><rect x="8.0866%" y="389" width="0.0234%" height="15" fill="rgb(231,147,38)" fg:x="193855" fg:w="562"/><text x="8.3366%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (2,430 samples, 0.10%)</title><rect x="8.0136%" y="437" width="0.1014%" height="15" fill="rgb(229,8,40)" fg:x="192104" fg:w="2430"/><text x="8.2636%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (282 samples, 0.01%)</title><rect x="8.1451%" y="373" width="0.0118%" height="15" fill="rgb(221,135,30)" fg:x="195258" fg:w="282"/><text x="8.3951%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (275 samples, 0.01%)</title><rect x="8.1454%" y="357" width="0.0115%" height="15" fill="rgb(249,193,18)" fg:x="195265" fg:w="275"/><text x="8.3954%" y="367.50"></text></g><g><title>native_write_msr (273 samples, 0.01%)</title><rect x="8.1455%" y="341" width="0.0114%" height="15" fill="rgb(209,133,39)" fg:x="195267" fg:w="273"/><text x="8.3955%" y="351.50"></text></g><g><title>finish_task_switch (333 samples, 0.01%)</title><rect x="8.1438%" y="389" width="0.0139%" height="15" fill="rgb(232,100,14)" fg:x="195226" fg:w="333"/><text x="8.3938%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (1,205 samples, 0.05%)</title><rect x="8.1149%" y="437" width="0.0503%" height="15" fill="rgb(224,185,1)" fg:x="194534" fg:w="1205"/><text x="8.3649%" y="447.50"></text></g><g><title>schedule (739 samples, 0.03%)</title><rect x="8.1344%" y="421" width="0.0308%" height="15" fill="rgb(223,139,8)" fg:x="195000" fg:w="739"/><text x="8.3844%" y="431.50"></text></g><g><title>__schedule (731 samples, 0.03%)</title><rect x="8.1347%" y="405" width="0.0305%" height="15" fill="rgb(232,213,38)" fg:x="195008" fg:w="731"/><text x="8.3847%" y="415.50"></text></g><g><title>ttwu_do_activate (252 samples, 0.01%)</title><rect x="8.1749%" y="373" width="0.0105%" height="15" fill="rgb(207,94,22)" fg:x="195972" fg:w="252"/><text x="8.4249%" y="383.50"></text></g><g><title>__wake_up_common (543 samples, 0.02%)</title><rect x="8.1652%" y="421" width="0.0227%" height="15" fill="rgb(219,183,54)" fg:x="195740" fg:w="543"/><text x="8.4152%" y="431.50"></text></g><g><title>autoremove_wake_function (538 samples, 0.02%)</title><rect x="8.1654%" y="405" width="0.0224%" height="15" fill="rgb(216,185,54)" fg:x="195745" fg:w="538"/><text x="8.4154%" y="415.50"></text></g><g><title>try_to_wake_up (525 samples, 0.02%)</title><rect x="8.1660%" y="389" width="0.0219%" height="15" fill="rgb(254,217,39)" fg:x="195758" fg:w="525"/><text x="8.4160%" y="399.50"></text></g><g><title>__wake_up_common_lock (551 samples, 0.02%)</title><rect x="8.1652%" y="437" width="0.0230%" height="15" fill="rgb(240,178,23)" fg:x="195740" fg:w="551"/><text x="8.4152%" y="447.50"></text></g><g><title>btrfs_tree_read_lock_atomic (863 samples, 0.04%)</title><rect x="8.1953%" y="437" width="0.0360%" height="15" fill="rgb(218,11,47)" fg:x="196461" fg:w="863"/><text x="8.4453%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (776 samples, 0.03%)</title><rect x="8.1989%" y="421" width="0.0324%" height="15" fill="rgb(218,51,51)" fg:x="196548" fg:w="776"/><text x="8.4489%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (273 samples, 0.01%)</title><rect x="8.2199%" y="405" width="0.0114%" height="15" fill="rgb(238,126,27)" fg:x="197051" fg:w="273"/><text x="8.4699%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (331 samples, 0.01%)</title><rect x="8.2353%" y="437" width="0.0138%" height="15" fill="rgb(249,202,22)" fg:x="197420" fg:w="331"/><text x="8.4853%" y="447.50"></text></g><g><title>find_extent_buffer (454 samples, 0.02%)</title><rect x="8.2579%" y="421" width="0.0189%" height="15" fill="rgb(254,195,49)" fg:x="197961" fg:w="454"/><text x="8.5079%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (739 samples, 0.03%)</title><rect x="8.2491%" y="437" width="0.0308%" height="15" fill="rgb(208,123,14)" fg:x="197751" fg:w="739"/><text x="8.4991%" y="447.50"></text></g><g><title>btrfs_search_slot (6,641 samples, 0.28%)</title><rect x="8.0055%" y="453" width="0.2770%" height="15" fill="rgb(224,200,8)" fg:x="191911" fg:w="6641"/><text x="8.2555%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (6,764 samples, 0.28%)</title><rect x="8.0038%" y="469" width="0.2822%" height="15" fill="rgb(217,61,36)" fg:x="191871" fg:w="6764"/><text x="8.2538%" y="479.50"></text></g><g><title>btrfs_lookup (7,211 samples, 0.30%)</title><rect x="7.9907%" y="501" width="0.3008%" height="15" fill="rgb(206,35,45)" fg:x="191557" fg:w="7211"/><text x="8.2407%" y="511.50"></text></g><g><title>btrfs_lookup_dentry (7,196 samples, 0.30%)</title><rect x="7.9914%" y="485" width="0.3002%" height="15" fill="rgb(217,65,33)" fg:x="191572" fg:w="7196"/><text x="8.2414%" y="495.50"></text></g><g><title>kmem_cache_alloc (388 samples, 0.02%)</title><rect x="8.2950%" y="469" width="0.0162%" height="15" fill="rgb(222,158,48)" fg:x="198850" fg:w="388"/><text x="8.5450%" y="479.50"></text></g><g><title>__d_alloc (470 samples, 0.02%)</title><rect x="8.2920%" y="485" width="0.0196%" height="15" fill="rgb(254,2,54)" fg:x="198780" fg:w="470"/><text x="8.5420%" y="495.50"></text></g><g><title>d_alloc (510 samples, 0.02%)</title><rect x="8.2915%" y="501" width="0.0213%" height="15" fill="rgb(250,143,38)" fg:x="198768" fg:w="510"/><text x="8.5415%" y="511.50"></text></g><g><title>__lookup_hash (7,936 samples, 0.33%)</title><rect x="7.9903%" y="517" width="0.3310%" height="15" fill="rgb(248,25,0)" fg:x="191546" fg:w="7936"/><text x="8.2403%" y="527.50"></text></g><g><title>inode_permission.part.0 (501 samples, 0.02%)</title><rect x="8.3454%" y="469" width="0.0209%" height="15" fill="rgb(206,152,27)" fg:x="200058" fg:w="501"/><text x="8.5954%" y="479.50"></text></g><g><title>__d_lookup_rcu (830 samples, 0.03%)</title><rect x="8.3769%" y="437" width="0.0346%" height="15" fill="rgb(240,77,30)" fg:x="200815" fg:w="830"/><text x="8.6269%" y="447.50"></text></g><g><title>lookup_fast (943 samples, 0.04%)</title><rect x="8.3723%" y="453" width="0.0393%" height="15" fill="rgb(231,5,3)" fg:x="200703" fg:w="943"/><text x="8.6223%" y="463.50"></text></g><g><title>link_path_walk.part.0 (2,077 samples, 0.09%)</title><rect x="8.3314%" y="485" width="0.0866%" height="15" fill="rgb(207,226,32)" fg:x="199723" fg:w="2077"/><text x="8.5814%" y="495.50"></text></g><g><title>walk_component (1,207 samples, 0.05%)</title><rect x="8.3677%" y="469" width="0.0503%" height="15" fill="rgb(222,207,47)" fg:x="200593" fg:w="1207"/><text x="8.6177%" y="479.50"></text></g><g><title>filename_parentat (2,498 samples, 0.10%)</title><rect x="8.3224%" y="517" width="0.1042%" height="15" fill="rgb(229,115,45)" fg:x="199507" fg:w="2498"/><text x="8.5724%" y="527.50"></text></g><g><title>path_parentat (2,460 samples, 0.10%)</title><rect x="8.3240%" y="501" width="0.1026%" height="15" fill="rgb(224,191,6)" fg:x="199545" fg:w="2460"/><text x="8.5740%" y="511.50"></text></g><g><title>filename_create (10,659 samples, 0.44%)</title><rect x="7.9890%" y="533" width="0.4446%" height="15" fill="rgb(230,227,24)" fg:x="191516" fg:w="10659"/><text x="8.2390%" y="543.50"></text></g><g><title>getname_flags.part.0 (506 samples, 0.02%)</title><rect x="8.4340%" y="533" width="0.0211%" height="15" fill="rgb(228,80,19)" fg:x="202182" fg:w="506"/><text x="8.6840%" y="543.50"></text></g><g><title>strncpy_from_user (264 samples, 0.01%)</title><rect x="8.4441%" y="517" width="0.0110%" height="15" fill="rgb(247,229,0)" fg:x="202424" fg:w="264"/><text x="8.6941%" y="527.50"></text></g><g><title>__btrfs_end_transaction (421 samples, 0.02%)</title><rect x="8.4703%" y="501" width="0.0176%" height="15" fill="rgb(237,194,15)" fg:x="203053" fg:w="421"/><text x="8.7203%" y="511.50"></text></g><g><title>btrfs_insert_delayed_dir_index (750 samples, 0.03%)</title><rect x="8.4956%" y="469" width="0.0313%" height="15" fill="rgb(219,203,20)" fg:x="203659" fg:w="750"/><text x="8.7456%" y="479.50"></text></g><g><title>_raw_spin_lock_irqsave (467 samples, 0.02%)</title><rect x="8.5644%" y="373" width="0.0195%" height="15" fill="rgb(234,128,8)" fg:x="205310" fg:w="467"/><text x="8.8144%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (442 samples, 0.02%)</title><rect x="8.5655%" y="357" width="0.0184%" height="15" fill="rgb(248,202,8)" fg:x="205335" fg:w="442"/><text x="8.8155%" y="367.50"></text></g><g><title>prepare_to_wait_event (528 samples, 0.02%)</title><rect x="8.5626%" y="389" width="0.0220%" height="15" fill="rgb(206,104,37)" fg:x="205265" fg:w="528"/><text x="8.8126%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (666 samples, 0.03%)</title><rect x="8.5846%" y="389" width="0.0278%" height="15" fill="rgb(223,8,27)" fg:x="205793" fg:w="666"/><text x="8.8346%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (499 samples, 0.02%)</title><rect x="8.5916%" y="373" width="0.0208%" height="15" fill="rgb(216,217,28)" fg:x="205960" fg:w="499"/><text x="8.8416%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (1,896 samples, 0.08%)</title><rect x="8.5505%" y="405" width="0.0791%" height="15" fill="rgb(249,199,1)" fg:x="204975" fg:w="1896"/><text x="8.8005%" y="415.50"></text></g><g><title>schedule (412 samples, 0.02%)</title><rect x="8.6124%" y="389" width="0.0172%" height="15" fill="rgb(240,85,17)" fg:x="206459" fg:w="412"/><text x="8.8624%" y="399.50"></text></g><g><title>__schedule (405 samples, 0.02%)</title><rect x="8.6127%" y="373" width="0.0169%" height="15" fill="rgb(206,108,45)" fg:x="206466" fg:w="405"/><text x="8.8627%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (2,003 samples, 0.08%)</title><rect x="8.5498%" y="421" width="0.0836%" height="15" fill="rgb(245,210,41)" fg:x="204960" fg:w="2003"/><text x="8.7998%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (258 samples, 0.01%)</title><rect x="8.6409%" y="389" width="0.0108%" height="15" fill="rgb(206,13,37)" fg:x="207144" fg:w="258"/><text x="8.8909%" y="399.50"></text></g><g><title>prepare_to_wait_event (306 samples, 0.01%)</title><rect x="8.6394%" y="405" width="0.0128%" height="15" fill="rgb(250,61,18)" fg:x="207106" fg:w="306"/><text x="8.8894%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (284 samples, 0.01%)</title><rect x="8.6521%" y="405" width="0.0118%" height="15" fill="rgb(235,172,48)" fg:x="207412" fg:w="284"/><text x="8.9021%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,420 samples, 0.06%)</title><rect x="8.6334%" y="421" width="0.0592%" height="15" fill="rgb(249,201,17)" fg:x="206963" fg:w="1420"/><text x="8.8834%" y="431.50"></text></g><g><title>schedule (687 samples, 0.03%)</title><rect x="8.6640%" y="405" width="0.0287%" height="15" fill="rgb(219,208,6)" fg:x="207696" fg:w="687"/><text x="8.9140%" y="415.50"></text></g><g><title>__schedule (677 samples, 0.03%)</title><rect x="8.6644%" y="389" width="0.0282%" height="15" fill="rgb(248,31,23)" fg:x="207706" fg:w="677"/><text x="8.9144%" y="399.50"></text></g><g><title>btrfs_try_tree_write_lock (1,507 samples, 0.06%)</title><rect x="8.6978%" y="421" width="0.0629%" height="15" fill="rgb(245,15,42)" fg:x="208506" fg:w="1507"/><text x="8.9478%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,451 samples, 0.06%)</title><rect x="8.7001%" y="405" width="0.0605%" height="15" fill="rgb(222,217,39)" fg:x="208562" fg:w="1451"/><text x="8.9501%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (505 samples, 0.02%)</title><rect x="8.7396%" y="389" width="0.0211%" height="15" fill="rgb(210,219,27)" fg:x="209508" fg:w="505"/><text x="8.9896%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (345 samples, 0.01%)</title><rect x="8.7606%" y="421" width="0.0144%" height="15" fill="rgb(252,166,36)" fg:x="210013" fg:w="345"/><text x="9.0106%" y="431.50"></text></g><g><title>find_extent_buffer (399 samples, 0.02%)</title><rect x="8.7824%" y="405" width="0.0166%" height="15" fill="rgb(245,132,34)" fg:x="210536" fg:w="399"/><text x="9.0324%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (623 samples, 0.03%)</title><rect x="8.7750%" y="421" width="0.0260%" height="15" fill="rgb(236,54,3)" fg:x="210358" fg:w="623"/><text x="9.0250%" y="431.50"></text></g><g><title>split_leaf (342 samples, 0.01%)</title><rect x="8.8010%" y="421" width="0.0143%" height="15" fill="rgb(241,173,43)" fg:x="210981" fg:w="342"/><text x="9.0510%" y="431.50"></text></g><g><title>ttwu_do_activate (336 samples, 0.01%)</title><rect x="8.8328%" y="341" width="0.0140%" height="15" fill="rgb(215,190,9)" fg:x="211743" fg:w="336"/><text x="9.0828%" y="351.50"></text></g><g><title>__wake_up_common (769 samples, 0.03%)</title><rect x="8.8179%" y="389" width="0.0321%" height="15" fill="rgb(242,101,16)" fg:x="211386" fg:w="769"/><text x="9.0679%" y="399.50"></text></g><g><title>autoremove_wake_function (757 samples, 0.03%)</title><rect x="8.8184%" y="373" width="0.0316%" height="15" fill="rgb(223,190,21)" fg:x="211398" fg:w="757"/><text x="9.0684%" y="383.50"></text></g><g><title>try_to_wake_up (731 samples, 0.03%)</title><rect x="8.8195%" y="357" width="0.0305%" height="15" fill="rgb(215,228,25)" fg:x="211424" fg:w="731"/><text x="9.0695%" y="367.50"></text></g><g><title>__wake_up_common_lock (790 samples, 0.03%)</title><rect x="8.8177%" y="405" width="0.0330%" height="15" fill="rgb(225,36,22)" fg:x="211381" fg:w="790"/><text x="9.0677%" y="415.50"></text></g><g><title>btrfs_search_slot (7,454 samples, 0.31%)</title><rect x="8.5434%" y="437" width="0.3109%" height="15" fill="rgb(251,106,46)" fg:x="204805" fg:w="7454"/><text x="8.7934%" y="447.50"></text></g><g><title>unlock_up (932 samples, 0.04%)</title><rect x="8.8154%" y="421" width="0.0389%" height="15" fill="rgb(208,90,1)" fg:x="211327" fg:w="932"/><text x="9.0654%" y="431.50"></text></g><g><title>btrfs_get_token_32 (697 samples, 0.03%)</title><rect x="8.8617%" y="421" width="0.0291%" height="15" fill="rgb(243,10,4)" fg:x="212437" fg:w="697"/><text x="9.1117%" y="431.50"></text></g><g><title>btrfs_set_token_32 (523 samples, 0.02%)</title><rect x="8.8967%" y="421" width="0.0218%" height="15" fill="rgb(212,137,27)" fg:x="213276" fg:w="523"/><text x="9.1467%" y="431.50"></text></g><g><title>memcpy_extent_buffer (261 samples, 0.01%)</title><rect x="8.9206%" y="421" width="0.0109%" height="15" fill="rgb(231,220,49)" fg:x="213847" fg:w="261"/><text x="9.1706%" y="431.50"></text></g><g><title>insert_with_overflow (9,610 samples, 0.40%)</title><rect x="8.5401%" y="469" width="0.4009%" height="15" fill="rgb(237,96,20)" fg:x="204726" fg:w="9610"/><text x="8.7901%" y="479.50"></text></g><g><title>btrfs_insert_empty_items (9,542 samples, 0.40%)</title><rect x="8.5429%" y="453" width="0.3980%" height="15" fill="rgb(239,229,30)" fg:x="204794" fg:w="9542"/><text x="8.7929%" y="463.50"></text></g><g><title>setup_items_for_insert (2,077 samples, 0.09%)</title><rect x="8.8543%" y="437" width="0.0866%" height="15" fill="rgb(219,65,33)" fg:x="212259" fg:w="2077"/><text x="9.1043%" y="447.50"></text></g><g><title>btrfs_insert_dir_item (10,923 samples, 0.46%)</title><rect x="8.4933%" y="485" width="0.4556%" height="15" fill="rgb(243,134,7)" fg:x="203604" fg:w="10923"/><text x="8.7433%" y="495.50"></text></g><g><title>btrfs_update_inode (342 samples, 0.01%)</title><rect x="8.9489%" y="485" width="0.0143%" height="15" fill="rgb(216,177,54)" fg:x="214527" fg:w="342"/><text x="9.1989%" y="495.50"></text></g><g><title>btrfs_add_link (11,362 samples, 0.47%)</title><rect x="8.4904%" y="501" width="0.4740%" height="15" fill="rgb(211,160,20)" fg:x="203534" fg:w="11362"/><text x="8.7404%" y="511.50"></text></g><g><title>__queue_work (257 samples, 0.01%)</title><rect x="8.9687%" y="469" width="0.0107%" height="15" fill="rgb(239,85,39)" fg:x="215002" fg:w="257"/><text x="9.2187%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (366 samples, 0.02%)</title><rect x="8.9643%" y="501" width="0.0153%" height="15" fill="rgb(232,125,22)" fg:x="214896" fg:w="366"/><text x="9.2143%" y="511.50"></text></g><g><title>queue_work_on (263 samples, 0.01%)</title><rect x="8.9686%" y="485" width="0.0110%" height="15" fill="rgb(244,57,34)" fg:x="214999" fg:w="263"/><text x="9.2186%" y="495.50"></text></g><g><title>_raw_spin_lock_irqsave (496 samples, 0.02%)</title><rect x="9.0281%" y="405" width="0.0207%" height="15" fill="rgb(214,203,32)" fg:x="216424" fg:w="496"/><text x="9.2781%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (470 samples, 0.02%)</title><rect x="9.0291%" y="389" width="0.0196%" height="15" fill="rgb(207,58,43)" fg:x="216450" fg:w="470"/><text x="9.2791%" y="399.50"></text></g><g><title>prepare_to_wait_event (542 samples, 0.02%)</title><rect x="9.0265%" y="421" width="0.0226%" height="15" fill="rgb(215,193,15)" fg:x="216387" fg:w="542"/><text x="9.2765%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (610 samples, 0.03%)</title><rect x="9.0491%" y="421" width="0.0254%" height="15" fill="rgb(232,15,44)" fg:x="216929" fg:w="610"/><text x="9.2991%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (449 samples, 0.02%)</title><rect x="9.0558%" y="405" width="0.0187%" height="15" fill="rgb(212,3,48)" fg:x="217090" fg:w="449"/><text x="9.3058%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (1,876 samples, 0.08%)</title><rect x="9.0143%" y="437" width="0.0783%" height="15" fill="rgb(218,128,7)" fg:x="216095" fg:w="1876"/><text x="9.2643%" y="447.50"></text></g><g><title>schedule (432 samples, 0.02%)</title><rect x="9.0746%" y="421" width="0.0180%" height="15" fill="rgb(226,216,39)" fg:x="217539" fg:w="432"/><text x="9.3246%" y="431.50"></text></g><g><title>__schedule (427 samples, 0.02%)</title><rect x="9.0748%" y="405" width="0.0178%" height="15" fill="rgb(243,47,51)" fg:x="217544" fg:w="427"/><text x="9.3248%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (1,957 samples, 0.08%)</title><rect x="9.0141%" y="453" width="0.0816%" height="15" fill="rgb(241,183,40)" fg:x="216089" fg:w="1957"/><text x="9.2641%" y="463.50"></text></g><g><title>prepare_to_wait_event (276 samples, 0.01%)</title><rect x="9.1014%" y="437" width="0.0115%" height="15" fill="rgb(231,217,32)" fg:x="218182" fg:w="276"/><text x="9.3514%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (259 samples, 0.01%)</title><rect x="9.1129%" y="437" width="0.0108%" height="15" fill="rgb(229,61,38)" fg:x="218458" fg:w="259"/><text x="9.3629%" y="447.50"></text></g><g><title>finish_task_switch (263 samples, 0.01%)</title><rect x="9.1346%" y="405" width="0.0110%" height="15" fill="rgb(225,210,5)" fg:x="218979" fg:w="263"/><text x="9.3846%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,428 samples, 0.06%)</title><rect x="9.0957%" y="453" width="0.0596%" height="15" fill="rgb(231,79,45)" fg:x="218046" fg:w="1428"/><text x="9.3457%" y="463.50"></text></g><g><title>schedule (757 samples, 0.03%)</title><rect x="9.1237%" y="437" width="0.0316%" height="15" fill="rgb(224,100,7)" fg:x="218717" fg:w="757"/><text x="9.3737%" y="447.50"></text></g><g><title>__schedule (755 samples, 0.03%)</title><rect x="9.1238%" y="421" width="0.0315%" height="15" fill="rgb(241,198,18)" fg:x="218719" fg:w="755"/><text x="9.3738%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (1,348 samples, 0.06%)</title><rect x="9.1609%" y="453" width="0.0562%" height="15" fill="rgb(252,97,53)" fg:x="219609" fg:w="1348"/><text x="9.4109%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (1,304 samples, 0.05%)</title><rect x="9.1628%" y="437" width="0.0544%" height="15" fill="rgb(220,88,7)" fg:x="219653" fg:w="1304"/><text x="9.4128%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (412 samples, 0.02%)</title><rect x="9.2000%" y="421" width="0.0172%" height="15" fill="rgb(213,176,14)" fg:x="220545" fg:w="412"/><text x="9.4500%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (280 samples, 0.01%)</title><rect x="9.2172%" y="453" width="0.0117%" height="15" fill="rgb(246,73,7)" fg:x="220957" fg:w="280"/><text x="9.4672%" y="463.50"></text></g><g><title>find_extent_buffer (399 samples, 0.02%)</title><rect x="9.2362%" y="437" width="0.0166%" height="15" fill="rgb(245,64,36)" fg:x="221414" fg:w="399"/><text x="9.4862%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (636 samples, 0.03%)</title><rect x="9.2288%" y="453" width="0.0265%" height="15" fill="rgb(245,80,10)" fg:x="221237" fg:w="636"/><text x="9.4788%" y="463.50"></text></g><g><title>split_leaf (426 samples, 0.02%)</title><rect x="9.2554%" y="453" width="0.0178%" height="15" fill="rgb(232,107,50)" fg:x="221873" fg:w="426"/><text x="9.5054%" y="463.50"></text></g><g><title>ttwu_do_activate (412 samples, 0.02%)</title><rect x="9.2939%" y="373" width="0.0172%" height="15" fill="rgb(253,3,0)" fg:x="222796" fg:w="412"/><text x="9.5439%" y="383.50"></text></g><g><title>__wake_up_common (910 samples, 0.04%)</title><rect x="9.2762%" y="421" width="0.0380%" height="15" fill="rgb(212,99,53)" fg:x="222372" fg:w="910"/><text x="9.5262%" y="431.50"></text></g><g><title>autoremove_wake_function (894 samples, 0.04%)</title><rect x="9.2768%" y="405" width="0.0373%" height="15" fill="rgb(249,111,54)" fg:x="222388" fg:w="894"/><text x="9.5268%" y="415.50"></text></g><g><title>try_to_wake_up (866 samples, 0.04%)</title><rect x="9.2780%" y="389" width="0.0361%" height="15" fill="rgb(249,55,30)" fg:x="222416" fg:w="866"/><text x="9.5280%" y="399.50"></text></g><g><title>__wake_up_common_lock (939 samples, 0.04%)</title><rect x="9.2759%" y="437" width="0.0392%" height="15" fill="rgb(237,47,42)" fg:x="222365" fg:w="939"/><text x="9.5259%" y="447.50"></text></g><g><title>btrfs_search_slot (7,494 samples, 0.31%)</title><rect x="9.0070%" y="469" width="0.3126%" height="15" fill="rgb(211,20,18)" fg:x="215919" fg:w="7494"/><text x="9.2570%" y="479.50"></text></g><g><title>unlock_up (1,109 samples, 0.05%)</title><rect x="9.2733%" y="453" width="0.0463%" height="15" fill="rgb(231,203,46)" fg:x="222304" fg:w="1109"/><text x="9.5233%" y="463.50"></text></g><g><title>btrfs_get_token_32 (331 samples, 0.01%)</title><rect x="9.3285%" y="453" width="0.0138%" height="15" fill="rgb(237,142,3)" fg:x="223626" fg:w="331"/><text x="9.5785%" y="463.50"></text></g><g><title>btrfs_set_token_32 (287 samples, 0.01%)</title><rect x="9.3490%" y="453" width="0.0120%" height="15" fill="rgb(241,107,1)" fg:x="224118" fg:w="287"/><text x="9.5990%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (8,762 samples, 0.37%)</title><rect x="9.0062%" y="485" width="0.3655%" height="15" fill="rgb(229,83,13)" fg:x="215901" fg:w="8762"/><text x="9.2562%" y="495.50"></text></g><g><title>setup_items_for_insert (1,250 samples, 0.05%)</title><rect x="9.3196%" y="469" width="0.0521%" height="15" fill="rgb(241,91,40)" fg:x="223413" fg:w="1250"/><text x="9.5696%" y="479.50"></text></g><g><title>fill_inode_item (410 samples, 0.02%)</title><rect x="9.3799%" y="485" width="0.0171%" height="15" fill="rgb(225,3,45)" fg:x="224859" fg:w="410"/><text x="9.6299%" y="495.50"></text></g><g><title>inode_tree_add (774 samples, 0.03%)</title><rect x="9.4005%" y="485" width="0.0323%" height="15" fill="rgb(244,223,14)" fg:x="225352" fg:w="774"/><text x="9.6505%" y="495.50"></text></g><g><title>btrfs_alloc_inode (572 samples, 0.02%)</title><rect x="9.4483%" y="453" width="0.0239%" height="15" fill="rgb(224,124,37)" fg:x="226498" fg:w="572"/><text x="9.6983%" y="463.50"></text></g><g><title>kmem_cache_alloc (400 samples, 0.02%)</title><rect x="9.4555%" y="437" width="0.0167%" height="15" fill="rgb(251,171,30)" fg:x="226670" fg:w="400"/><text x="9.7055%" y="447.50"></text></g><g><title>alloc_inode (775 samples, 0.03%)</title><rect x="9.4465%" y="469" width="0.0323%" height="15" fill="rgb(236,46,54)" fg:x="226456" fg:w="775"/><text x="9.6965%" y="479.50"></text></g><g><title>new_inode (854 samples, 0.04%)</title><rect x="9.4450%" y="485" width="0.0356%" height="15" fill="rgb(245,213,5)" fg:x="226418" fg:w="854"/><text x="9.6950%" y="495.50"></text></g><g><title>btrfs_new_inode (11,799 samples, 0.49%)</title><rect x="8.9893%" y="501" width="0.4922%" height="15" fill="rgb(230,144,27)" fg:x="215495" fg:w="11799"/><text x="9.2393%" y="511.50"></text></g><g><title>btrfs_get_or_create_delayed_node (597 samples, 0.02%)</title><rect x="9.4978%" y="469" width="0.0249%" height="15" fill="rgb(220,86,6)" fg:x="227685" fg:w="597"/><text x="9.7478%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (1,028 samples, 0.04%)</title><rect x="9.4840%" y="485" width="0.0429%" height="15" fill="rgb(240,20,13)" fg:x="227354" fg:w="1028"/><text x="9.7340%" y="495.50"></text></g><g><title>btrfs_update_inode (1,107 samples, 0.05%)</title><rect x="9.4821%" y="501" width="0.0462%" height="15" fill="rgb(217,89,34)" fg:x="227308" fg:w="1107"/><text x="9.7321%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (502 samples, 0.02%)</title><rect x="9.5427%" y="485" width="0.0209%" height="15" fill="rgb(229,13,5)" fg:x="228762" fg:w="502"/><text x="9.7927%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (432 samples, 0.02%)</title><rect x="9.5457%" y="469" width="0.0180%" height="15" fill="rgb(244,67,35)" fg:x="228832" fg:w="432"/><text x="9.7957%" y="479.50"></text></g><g><title>__reserve_bytes (405 samples, 0.02%)</title><rect x="9.5468%" y="453" width="0.0169%" height="15" fill="rgb(221,40,2)" fg:x="228859" fg:w="405"/><text x="9.7968%" y="463.50"></text></g><g><title>btrfs_mkdir (26,504 samples, 1.11%)</title><rect x="8.4687%" y="517" width="1.1056%" height="15" fill="rgb(237,157,21)" fg:x="203015" fg:w="26504"/><text x="8.7187%" y="527.50"></text></g><g><title>start_transaction (913 samples, 0.04%)</title><rect x="9.5362%" y="501" width="0.0381%" height="15" fill="rgb(222,94,11)" fg:x="228606" fg:w="913"/><text x="9.7862%" y="511.50"></text></g><g><title>do_mkdirat (38,531 samples, 1.61%)</title><rect x="7.9726%" y="549" width="1.6073%" height="15" fill="rgb(249,113,6)" fg:x="191121" fg:w="38531"/><text x="8.2226%" y="559.50"></text></g><g><title>vfs_mkdir (26,685 samples, 1.11%)</title><rect x="8.4667%" y="533" width="1.1132%" height="15" fill="rgb(238,137,36)" fg:x="202967" fg:w="26685"/><text x="8.7167%" y="543.50"></text></g><g><title>do_syscall_64 (38,596 samples, 1.61%)</title><rect x="7.9712%" y="565" width="1.6100%" height="15" fill="rgb(210,102,26)" fg:x="191089" fg:w="38596"/><text x="8.2212%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38,720 samples, 1.62%)</title><rect x="7.9699%" y="581" width="1.6152%" height="15" fill="rgb(218,30,30)" fg:x="191058" fg:w="38720"/><text x="8.2199%" y="591.50"></text></g><g><title>__GI___mkdir (38,903 samples, 1.62%)</title><rect x="7.9637%" y="597" width="1.6228%" height="15" fill="rgb(214,67,26)" fg:x="190909" fg:w="38903"/><text x="8.2137%" y="607.50"></text></g><g><title>btrfs_filldir (1,161 samples, 0.05%)</title><rect x="9.6653%" y="485" width="0.0484%" height="15" fill="rgb(251,9,53)" fg:x="231699" fg:w="1161"/><text x="9.9153%" y="495.50"></text></g><g><title>filldir64 (1,053 samples, 0.04%)</title><rect x="9.6698%" y="469" width="0.0439%" height="15" fill="rgb(228,204,25)" fg:x="231807" fg:w="1053"/><text x="9.9198%" y="479.50"></text></g><g><title>verify_dirent_name (309 samples, 0.01%)</title><rect x="9.7008%" y="453" width="0.0129%" height="15" fill="rgb(207,153,8)" fg:x="232551" fg:w="309"/><text x="9.9508%" y="463.50"></text></g><g><title>btrfs_get_16 (248 samples, 0.01%)</title><rect x="9.7155%" y="485" width="0.0103%" height="15" fill="rgb(242,9,16)" fg:x="232904" fg:w="248"/><text x="9.9655%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (319 samples, 0.01%)</title><rect x="9.7408%" y="437" width="0.0133%" height="15" fill="rgb(217,211,10)" fg:x="233509" fg:w="319"/><text x="9.9908%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (325 samples, 0.01%)</title><rect x="9.7408%" y="453" width="0.0136%" height="15" fill="rgb(219,228,52)" fg:x="233509" fg:w="325"/><text x="9.9908%" y="463.50"></text></g><g><title>btrfs_search_slot (594 samples, 0.02%)</title><rect x="9.7396%" y="469" width="0.0248%" height="15" fill="rgb(231,92,29)" fg:x="233482" fg:w="594"/><text x="9.9896%" y="479.50"></text></g><g><title>btrfs_next_old_leaf (773 samples, 0.03%)</title><rect x="9.7378%" y="485" width="0.0322%" height="15" fill="rgb(232,8,23)" fg:x="233438" fg:w="773"/><text x="9.9878%" y="495.50"></text></g><g><title>btrfs_readdir_get_delayed_items (432 samples, 0.02%)</title><rect x="9.7703%" y="485" width="0.0180%" height="15" fill="rgb(216,211,34)" fg:x="234218" fg:w="432"/><text x="10.0203%" y="495.50"></text></g><g><title>free_extent_buffer.part.0 (268 samples, 0.01%)</title><rect x="9.7987%" y="469" width="0.0112%" height="15" fill="rgb(236,151,0)" fg:x="234898" fg:w="268"/><text x="10.0487%" y="479.50"></text></g><g><title>btrfs_release_path (550 samples, 0.02%)</title><rect x="9.7902%" y="485" width="0.0229%" height="15" fill="rgb(209,168,3)" fg:x="234694" fg:w="550"/><text x="10.0402%" y="495.50"></text></g><g><title>finish_wait (633 samples, 0.03%)</title><rect x="9.8390%" y="437" width="0.0264%" height="15" fill="rgb(208,129,28)" fg:x="235864" fg:w="633"/><text x="10.0890%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (599 samples, 0.02%)</title><rect x="9.8404%" y="421" width="0.0250%" height="15" fill="rgb(229,78,22)" fg:x="235898" fg:w="599"/><text x="10.0904%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (568 samples, 0.02%)</title><rect x="9.8417%" y="405" width="0.0237%" height="15" fill="rgb(228,187,13)" fg:x="235929" fg:w="568"/><text x="10.0917%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (1,613 samples, 0.07%)</title><rect x="9.8720%" y="421" width="0.0673%" height="15" fill="rgb(240,119,24)" fg:x="236656" fg:w="1613"/><text x="10.1220%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,533 samples, 0.06%)</title><rect x="9.8754%" y="405" width="0.0639%" height="15" fill="rgb(209,194,42)" fg:x="236736" fg:w="1533"/><text x="10.1254%" y="415.50"></text></g><g><title>prepare_to_wait_event (1,798 samples, 0.08%)</title><rect x="9.8655%" y="437" width="0.0750%" height="15" fill="rgb(247,200,46)" fg:x="236500" fg:w="1798"/><text x="10.1155%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (1,673 samples, 0.07%)</title><rect x="9.9405%" y="437" width="0.0698%" height="15" fill="rgb(218,76,16)" fg:x="238298" fg:w="1673"/><text x="10.1905%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,171 samples, 0.05%)</title><rect x="9.9615%" y="421" width="0.0488%" height="15" fill="rgb(225,21,48)" fg:x="238800" fg:w="1171"/><text x="10.2115%" y="431.50"></text></g><g><title>dequeue_entity (301 samples, 0.01%)</title><rect x="10.0192%" y="389" width="0.0126%" height="15" fill="rgb(239,223,50)" fg:x="240183" fg:w="301"/><text x="10.2692%" y="399.50"></text></g><g><title>dequeue_task_fair (364 samples, 0.02%)</title><rect x="10.0173%" y="405" width="0.0152%" height="15" fill="rgb(244,45,21)" fg:x="240139" fg:w="364"/><text x="10.2673%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (642 samples, 0.03%)</title><rect x="10.0358%" y="389" width="0.0268%" height="15" fill="rgb(232,33,43)" fg:x="240581" fg:w="642"/><text x="10.2858%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (627 samples, 0.03%)</title><rect x="10.0364%" y="373" width="0.0262%" height="15" fill="rgb(209,8,3)" fg:x="240596" fg:w="627"/><text x="10.2864%" y="383.50"></text></g><g><title>native_write_msr (622 samples, 0.03%)</title><rect x="10.0366%" y="357" width="0.0259%" height="15" fill="rgb(214,25,53)" fg:x="240601" fg:w="622"/><text x="10.2866%" y="367.50"></text></g><g><title>finish_task_switch (748 samples, 0.03%)</title><rect x="10.0325%" y="405" width="0.0312%" height="15" fill="rgb(254,186,54)" fg:x="240503" fg:w="748"/><text x="10.2825%" y="415.50"></text></g><g><title>psi_task_change (244 samples, 0.01%)</title><rect x="10.0691%" y="405" width="0.0102%" height="15" fill="rgb(208,174,49)" fg:x="241379" fg:w="244"/><text x="10.3191%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (6,094 samples, 0.25%)</title><rect x="9.8284%" y="453" width="0.2542%" height="15" fill="rgb(233,191,51)" fg:x="235609" fg:w="6094"/><text x="10.0784%" y="463.50"></text></g><g><title>schedule (1,732 samples, 0.07%)</title><rect x="10.0103%" y="437" width="0.0722%" height="15" fill="rgb(222,134,10)" fg:x="239971" fg:w="1732"/><text x="10.2603%" y="447.50"></text></g><g><title>__schedule (1,722 samples, 0.07%)</title><rect x="10.0107%" y="421" width="0.0718%" height="15" fill="rgb(230,226,20)" fg:x="239981" fg:w="1722"/><text x="10.2607%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (6,332 samples, 0.26%)</title><rect x="9.8275%" y="469" width="0.2641%" height="15" fill="rgb(251,111,25)" fg:x="235588" fg:w="6332"/><text x="10.0775%" y="479.50"></text></g><g><title>__schedule (484 samples, 0.02%)</title><rect x="10.0959%" y="437" width="0.0202%" height="15" fill="rgb(224,40,46)" fg:x="242023" fg:w="484"/><text x="10.3459%" y="447.50"></text></g><g><title>__btrfs_tree_read_lock (588 samples, 0.02%)</title><rect x="10.0916%" y="469" width="0.0245%" height="15" fill="rgb(236,108,47)" fg:x="241920" fg:w="588"/><text x="10.3416%" y="479.50"></text></g><g><title>schedule (488 samples, 0.02%)</title><rect x="10.0958%" y="453" width="0.0204%" height="15" fill="rgb(234,93,0)" fg:x="242020" fg:w="488"/><text x="10.3458%" y="463.50"></text></g><g><title>ttwu_do_activate (414 samples, 0.02%)</title><rect x="10.1332%" y="405" width="0.0173%" height="15" fill="rgb(224,213,32)" fg:x="242918" fg:w="414"/><text x="10.3832%" y="415.50"></text></g><g><title>__wake_up_common (925 samples, 0.04%)</title><rect x="10.1162%" y="453" width="0.0386%" height="15" fill="rgb(251,11,48)" fg:x="242509" fg:w="925"/><text x="10.3662%" y="463.50"></text></g><g><title>autoremove_wake_function (909 samples, 0.04%)</title><rect x="10.1169%" y="437" width="0.0379%" height="15" fill="rgb(236,173,5)" fg:x="242525" fg:w="909"/><text x="10.3669%" y="447.50"></text></g><g><title>try_to_wake_up (879 samples, 0.04%)</title><rect x="10.1181%" y="421" width="0.0367%" height="15" fill="rgb(230,95,12)" fg:x="242555" fg:w="879"/><text x="10.3681%" y="431.50"></text></g><g><title>__wake_up_common_lock (941 samples, 0.04%)</title><rect x="10.1161%" y="469" width="0.0393%" height="15" fill="rgb(232,209,1)" fg:x="242508" fg:w="941"/><text x="10.3661%" y="479.50"></text></g><g><title>btrfs_tree_read_lock_atomic (482 samples, 0.02%)</title><rect x="10.1650%" y="469" width="0.0201%" height="15" fill="rgb(232,6,1)" fg:x="243679" fg:w="482"/><text x="10.4150%" y="479.50"></text></g><g><title>queued_read_lock_slowpath (339 samples, 0.01%)</title><rect x="10.1710%" y="453" width="0.0141%" height="15" fill="rgb(210,224,50)" fg:x="243822" fg:w="339"/><text x="10.4210%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (956 samples, 0.04%)</title><rect x="10.1929%" y="469" width="0.0399%" height="15" fill="rgb(228,127,35)" fg:x="244348" fg:w="956"/><text x="10.4429%" y="479.50"></text></g><g><title>__radix_tree_lookup (516 samples, 0.02%)</title><rect x="10.2608%" y="437" width="0.0215%" height="15" fill="rgb(245,102,45)" fg:x="245975" fg:w="516"/><text x="10.5108%" y="447.50"></text></g><g><title>find_extent_buffer (992 samples, 0.04%)</title><rect x="10.2510%" y="453" width="0.0414%" height="15" fill="rgb(214,1,49)" fg:x="245741" fg:w="992"/><text x="10.5010%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (1,541 samples, 0.06%)</title><rect x="10.2328%" y="469" width="0.0643%" height="15" fill="rgb(226,163,40)" fg:x="245304" fg:w="1541"/><text x="10.4828%" y="479.50"></text></g><g><title>btrfs_search_slot (11,742 samples, 0.49%)</title><rect x="9.8131%" y="485" width="0.4898%" height="15" fill="rgb(239,212,28)" fg:x="235244" fg:w="11742"/><text x="10.0631%" y="495.50"></text></g><g><title>filldir64 (248 samples, 0.01%)</title><rect x="10.3070%" y="485" width="0.0103%" height="15" fill="rgb(220,20,13)" fg:x="247083" fg:w="248"/><text x="10.5570%" y="495.50"></text></g><g><title>btrfs_real_readdir (17,753 samples, 0.74%)</title><rect x="9.6376%" y="501" width="0.7406%" height="15" fill="rgb(210,164,35)" fg:x="231035" fg:w="17753"/><text x="9.8876%" y="511.50"></text></g><g><title>read_extent_buffer (1,074 samples, 0.04%)</title><rect x="10.3333%" y="485" width="0.0448%" height="15" fill="rgb(248,109,41)" fg:x="247714" fg:w="1074"/><text x="10.5833%" y="495.50"></text></g><g><title>security_file_permission (284 samples, 0.01%)</title><rect x="10.3837%" y="501" width="0.0118%" height="15" fill="rgb(238,23,50)" fg:x="248923" fg:w="284"/><text x="10.6337%" y="511.50"></text></g><g><title>__reserve_bytes (408 samples, 0.02%)</title><rect x="10.4389%" y="405" width="0.0170%" height="15" fill="rgb(211,48,49)" fg:x="250246" fg:w="408"/><text x="10.6889%" y="415.50"></text></g><g><title>btrfs_block_rsv_add (553 samples, 0.02%)</title><rect x="10.4330%" y="437" width="0.0231%" height="15" fill="rgb(223,36,21)" fg:x="250103" fg:w="553"/><text x="10.6830%" y="447.50"></text></g><g><title>btrfs_reserve_metadata_bytes (460 samples, 0.02%)</title><rect x="10.4368%" y="421" width="0.0192%" height="15" fill="rgb(207,123,46)" fg:x="250196" fg:w="460"/><text x="10.6868%" y="431.50"></text></g><g><title>btrfs_delayed_update_inode (1,031 samples, 0.04%)</title><rect x="10.4200%" y="453" width="0.0430%" height="15" fill="rgb(240,218,32)" fg:x="249791" fg:w="1031"/><text x="10.6700%" y="463.50"></text></g><g><title>btrfs_update_inode (1,162 samples, 0.05%)</title><rect x="10.4190%" y="469" width="0.0485%" height="15" fill="rgb(252,5,43)" fg:x="249768" fg:w="1162"/><text x="10.6690%" y="479.50"></text></g><g><title>btrfs_dirty_inode (1,843 samples, 0.08%)</title><rect x="10.4081%" y="485" width="0.0769%" height="15" fill="rgb(252,84,19)" fg:x="249506" fg:w="1843"/><text x="10.6581%" y="495.50"></text></g><g><title>start_transaction (329 samples, 0.01%)</title><rect x="10.4712%" y="469" width="0.0137%" height="15" fill="rgb(243,152,39)" fg:x="251020" fg:w="329"/><text x="10.7212%" y="479.50"></text></g><g><title>touch_atime (2,206 samples, 0.09%)</title><rect x="10.3956%" y="501" width="0.0920%" height="15" fill="rgb(234,160,15)" fg:x="249207" fg:w="2206"/><text x="10.6456%" y="511.50"></text></g><g><title>iterate_dir (20,557 samples, 0.86%)</title><rect x="9.6320%" y="517" width="0.8575%" height="15" fill="rgb(237,34,20)" fg:x="230902" fg:w="20557"/><text x="9.8820%" y="527.50"></text></g><g><title>__x64_sys_getdents64 (20,894 samples, 0.87%)</title><rect x="9.6190%" y="533" width="0.8716%" height="15" fill="rgb(229,97,13)" fg:x="230591" fg:w="20894"/><text x="9.8690%" y="543.50"></text></g><g><title>do_syscall_64 (20,955 samples, 0.87%)</title><rect x="9.6167%" y="549" width="0.8741%" height="15" fill="rgb(234,71,50)" fg:x="230536" fg:w="20955"/><text x="9.8667%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21,099 samples, 0.88%)</title><rect x="9.6152%" y="565" width="0.8801%" height="15" fill="rgb(253,155,4)" fg:x="230500" fg:w="21099"/><text x="9.8652%" y="575.50"></text></g><g><title>__GI___getdents64 (21,291 samples, 0.89%)</title><rect x="9.6091%" y="581" width="0.8881%" height="15" fill="rgb(222,185,37)" fg:x="230353" fg:w="21291"/><text x="9.8591%" y="591.50"></text></g><g><title>__GI___readdir64 (21,834 samples, 0.91%)</title><rect x="9.5865%" y="597" width="0.9108%" height="15" fill="rgb(251,177,13)" fg:x="229812" fg:w="21834"/><text x="9.8365%" y="607.50"></text></g><g><title>__do_sys_newstat (264 samples, 0.01%)</title><rect x="10.4974%" y="549" width="0.0110%" height="15" fill="rgb(250,179,40)" fg:x="251647" fg:w="264"/><text x="10.7474%" y="559.50"></text></g><g><title>vfs_statx (257 samples, 0.01%)</title><rect x="10.4977%" y="533" width="0.0107%" height="15" fill="rgb(242,44,2)" fg:x="251654" fg:w="257"/><text x="10.7477%" y="543.50"></text></g><g><title>do_syscall_64 (267 samples, 0.01%)</title><rect x="10.4974%" y="565" width="0.0111%" height="15" fill="rgb(216,177,13)" fg:x="251647" fg:w="267"/><text x="10.7474%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (274 samples, 0.01%)</title><rect x="10.4974%" y="581" width="0.0114%" height="15" fill="rgb(216,106,43)" fg:x="251647" fg:w="274"/><text x="10.7474%" y="591.50"></text></g><g><title>__GI___xstat (275 samples, 0.01%)</title><rect x="10.4974%" y="597" width="0.0115%" height="15" fill="rgb(216,183,2)" fg:x="251647" fg:w="275"/><text x="10.7474%" y="607.50"></text></g><g><title>__switch_to_asm (308 samples, 0.01%)</title><rect x="10.5494%" y="581" width="0.0128%" height="15" fill="rgb(249,75,3)" fg:x="252895" fg:w="308"/><text x="10.7994%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (408 samples, 0.02%)</title><rect x="10.5675%" y="581" width="0.0170%" height="15" fill="rgb(219,67,39)" fg:x="253329" fg:w="408"/><text x="10.8175%" y="591.50"></text></g><g><title>crc32c_pcl_intel_update (510 samples, 0.02%)</title><rect x="10.5958%" y="581" width="0.0213%" height="15" fill="rgb(253,228,2)" fg:x="254006" fg:w="510"/><text x="10.8458%" y="591.50"></text></g><g><title>entry_SYSCALL_64 (479 samples, 0.02%)</title><rect x="10.6171%" y="581" width="0.0200%" height="15" fill="rgb(235,138,27)" fg:x="254516" fg:w="479"/><text x="10.8671%" y="591.50"></text></g><g><title>getname_flags (433 samples, 0.02%)</title><rect x="10.6893%" y="533" width="0.0181%" height="15" fill="rgb(236,97,51)" fg:x="256249" fg:w="433"/><text x="10.9393%" y="543.50"></text></g><g><title>memset_erms (1,970 samples, 0.08%)</title><rect x="10.7505%" y="501" width="0.0822%" height="15" fill="rgb(240,80,30)" fg:x="257714" fg:w="1970"/><text x="11.0005%" y="511.50"></text></g><g><title>kmem_cache_alloc (2,930 samples, 0.12%)</title><rect x="10.7176%" y="517" width="0.1222%" height="15" fill="rgb(230,178,19)" fg:x="256927" fg:w="2930"/><text x="10.9676%" y="527.50"></text></g><g><title>__check_heap_object (277 samples, 0.01%)</title><rect x="10.9131%" y="485" width="0.0116%" height="15" fill="rgb(210,190,27)" fg:x="261614" fg:w="277"/><text x="11.1631%" y="495.50"></text></g><g><title>__virt_addr_valid (1,069 samples, 0.04%)</title><rect x="10.9247%" y="485" width="0.0446%" height="15" fill="rgb(222,107,31)" fg:x="261891" fg:w="1069"/><text x="11.1747%" y="495.50"></text></g><g><title>__check_object_size (2,046 samples, 0.09%)</title><rect x="10.8926%" y="501" width="0.0853%" height="15" fill="rgb(216,127,34)" fg:x="261122" fg:w="2046"/><text x="11.1426%" y="511.50"></text></g><g><title>getname_flags.part.0 (6,499 samples, 0.27%)</title><rect x="10.7074%" y="533" width="0.2711%" height="15" fill="rgb(234,116,52)" fg:x="256682" fg:w="6499"/><text x="10.9574%" y="543.50"></text></g><g><title>strncpy_from_user (3,324 samples, 0.14%)</title><rect x="10.8399%" y="517" width="0.1387%" height="15" fill="rgb(222,124,15)" fg:x="259857" fg:w="3324"/><text x="11.0899%" y="527.50"></text></g><g><title>__x64_sys_unlinkat (6,996 samples, 0.29%)</title><rect x="10.6868%" y="549" width="0.2918%" height="15" fill="rgb(231,179,28)" fg:x="256187" fg:w="6996"/><text x="10.9368%" y="559.50"></text></g><g><title>d_lru_add (269 samples, 0.01%)</title><rect x="10.9986%" y="517" width="0.0112%" height="15" fill="rgb(226,93,45)" fg:x="263662" fg:w="269"/><text x="11.2486%" y="527.50"></text></g><g><title>list_lru_add (264 samples, 0.01%)</title><rect x="10.9988%" y="501" width="0.0110%" height="15" fill="rgb(215,8,51)" fg:x="263667" fg:w="264"/><text x="11.2488%" y="511.50"></text></g><g><title>dput (489 samples, 0.02%)</title><rect x="10.9920%" y="533" width="0.0204%" height="15" fill="rgb(223,106,5)" fg:x="263505" fg:w="489"/><text x="11.2420%" y="543.50"></text></g><g><title>path_init (287 samples, 0.01%)</title><rect x="11.0292%" y="501" width="0.0120%" height="15" fill="rgb(250,191,5)" fg:x="264395" fg:w="287"/><text x="11.2792%" y="511.50"></text></g><g><title>filename_parentat (777 samples, 0.03%)</title><rect x="11.0124%" y="533" width="0.0324%" height="15" fill="rgb(242,132,44)" fg:x="263994" fg:w="777"/><text x="11.2624%" y="543.50"></text></g><g><title>path_parentat (713 samples, 0.03%)</title><rect x="11.0151%" y="517" width="0.0297%" height="15" fill="rgb(251,152,29)" fg:x="264058" fg:w="713"/><text x="11.2651%" y="527.50"></text></g><g><title>security_path_rmdir (272 samples, 0.01%)</title><rect x="11.0601%" y="533" width="0.0113%" height="15" fill="rgb(218,179,5)" fg:x="265136" fg:w="272"/><text x="11.3101%" y="543.50"></text></g><g><title>__btrfs_end_transaction (434 samples, 0.02%)</title><rect x="11.0814%" y="501" width="0.0181%" height="15" fill="rgb(227,67,19)" fg:x="265647" fg:w="434"/><text x="11.3314%" y="511.50"></text></g><g><title>btrfs_lookup_dir_index_item (396 samples, 0.02%)</title><rect x="11.1150%" y="469" width="0.0165%" height="15" fill="rgb(233,119,31)" fg:x="266453" fg:w="396"/><text x="11.3650%" y="479.50"></text></g><g><title>btrfs_search_slot (373 samples, 0.02%)</title><rect x="11.1160%" y="453" width="0.0156%" height="15" fill="rgb(241,120,22)" fg:x="266476" fg:w="373"/><text x="11.3660%" y="463.50"></text></g><g><title>btrfs_search_slot (401 samples, 0.02%)</title><rect x="11.1327%" y="453" width="0.0167%" height="15" fill="rgb(224,102,30)" fg:x="266878" fg:w="401"/><text x="11.3827%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (451 samples, 0.02%)</title><rect x="11.1315%" y="469" width="0.0188%" height="15" fill="rgb(210,164,37)" fg:x="266849" fg:w="451"/><text x="11.3815%" y="479.50"></text></g><g><title>btrfs_del_dir_entries_in_log (1,321 samples, 0.06%)</title><rect x="11.1058%" y="485" width="0.0551%" height="15" fill="rgb(226,191,16)" fg:x="266232" fg:w="1321"/><text x="11.3558%" y="495.50"></text></g><g><title>__btrfs_read_lock_root_node (276 samples, 0.01%)</title><rect x="11.1795%" y="437" width="0.0115%" height="15" fill="rgb(214,40,45)" fg:x="267999" fg:w="276"/><text x="11.4295%" y="447.50"></text></g><g><title>btrfs_search_slot (915 samples, 0.04%)</title><rect x="11.1737%" y="453" width="0.0382%" height="15" fill="rgb(244,29,26)" fg:x="267860" fg:w="915"/><text x="11.4237%" y="463.50"></text></g><g><title>btrfs_del_inode_ref (1,499 samples, 0.06%)</title><rect x="11.1627%" y="469" width="0.0625%" height="15" fill="rgb(216,16,5)" fg:x="267596" fg:w="1499"/><text x="11.4127%" y="479.50"></text></g><g><title>btrfs_del_inode_ref_in_log (1,673 samples, 0.07%)</title><rect x="11.1609%" y="485" width="0.0698%" height="15" fill="rgb(249,76,35)" fg:x="267553" fg:w="1673"/><text x="11.4109%" y="495.50"></text></g><g><title>btrfs_get_token_32 (808 samples, 0.03%)</title><rect x="11.2483%" y="469" width="0.0337%" height="15" fill="rgb(207,11,44)" fg:x="269648" fg:w="808"/><text x="11.4983%" y="479.50"></text></g><g><title>btrfs_set_token_32 (578 samples, 0.02%)</title><rect x="11.2847%" y="469" width="0.0241%" height="15" fill="rgb(228,190,49)" fg:x="270520" fg:w="578"/><text x="11.5347%" y="479.50"></text></g><g><title>memmove_extent_buffer (524 samples, 0.02%)</title><rect x="11.3169%" y="469" width="0.0219%" height="15" fill="rgb(214,173,12)" fg:x="271294" fg:w="524"/><text x="11.5669%" y="479.50"></text></g><g><title>memmove (416 samples, 0.02%)</title><rect x="11.3215%" y="453" width="0.0174%" height="15" fill="rgb(218,26,35)" fg:x="271402" fg:w="416"/><text x="11.5715%" y="463.50"></text></g><g><title>btrfs_del_items (2,826 samples, 0.12%)</title><rect x="11.2307%" y="485" width="0.1179%" height="15" fill="rgb(220,200,19)" fg:x="269226" fg:w="2826"/><text x="11.4807%" y="495.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (580 samples, 0.02%)</title><rect x="11.3486%" y="485" width="0.0242%" height="15" fill="rgb(239,95,49)" fg:x="272052" fg:w="580"/><text x="11.5986%" y="495.50"></text></g><g><title>btrfs_delete_delayed_dir_index (757 samples, 0.03%)</title><rect x="11.3728%" y="485" width="0.0316%" height="15" fill="rgb(235,85,53)" fg:x="272632" fg:w="757"/><text x="11.6228%" y="495.50"></text></g><g><title>btrfs_match_dir_item_name (268 samples, 0.01%)</title><rect x="11.4101%" y="469" width="0.0112%" height="15" fill="rgb(233,133,31)" fg:x="273528" fg:w="268"/><text x="11.6601%" y="479.50"></text></g><g><title>finish_wait (267 samples, 0.01%)</title><rect x="11.4355%" y="421" width="0.0111%" height="15" fill="rgb(218,25,20)" fg:x="274137" fg:w="267"/><text x="11.6855%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (259 samples, 0.01%)</title><rect x="11.4359%" y="405" width="0.0108%" height="15" fill="rgb(252,210,38)" fg:x="274145" fg:w="259"/><text x="11.6859%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (241 samples, 0.01%)</title><rect x="11.4366%" y="389" width="0.0101%" height="15" fill="rgb(242,134,21)" fg:x="274163" fg:w="241"/><text x="11.6866%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (670 samples, 0.03%)</title><rect x="11.4488%" y="405" width="0.0279%" height="15" fill="rgb(213,28,48)" fg:x="274454" fg:w="670"/><text x="11.6988%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (636 samples, 0.03%)</title><rect x="11.4502%" y="389" width="0.0265%" height="15" fill="rgb(250,196,2)" fg:x="274488" fg:w="636"/><text x="11.7002%" y="399.50"></text></g><g><title>prepare_to_wait_event (730 samples, 0.03%)</title><rect x="11.4467%" y="421" width="0.0305%" height="15" fill="rgb(227,5,17)" fg:x="274405" fg:w="730"/><text x="11.6967%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (913 samples, 0.04%)</title><rect x="11.4772%" y="421" width="0.0381%" height="15" fill="rgb(221,226,24)" fg:x="275135" fg:w="913"/><text x="11.7272%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (660 samples, 0.03%)</title><rect x="11.4877%" y="405" width="0.0275%" height="15" fill="rgb(211,5,48)" fg:x="275388" fg:w="660"/><text x="11.7377%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (2,642 samples, 0.11%)</title><rect x="11.4308%" y="437" width="0.1102%" height="15" fill="rgb(219,150,6)" fg:x="274023" fg:w="2642"/><text x="11.6808%" y="447.50"></text></g><g><title>schedule (617 samples, 0.03%)</title><rect x="11.5153%" y="421" width="0.0257%" height="15" fill="rgb(251,46,16)" fg:x="276048" fg:w="617"/><text x="11.7653%" y="431.50"></text></g><g><title>__schedule (604 samples, 0.03%)</title><rect x="11.5158%" y="405" width="0.0252%" height="15" fill="rgb(220,204,40)" fg:x="276061" fg:w="604"/><text x="11.7658%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (2,731 samples, 0.11%)</title><rect x="11.4302%" y="453" width="0.1139%" height="15" fill="rgb(211,85,2)" fg:x="274009" fg:w="2731"/><text x="11.6802%" y="463.50"></text></g><g><title>__btrfs_tree_lock (317 samples, 0.01%)</title><rect x="11.5441%" y="453" width="0.0132%" height="15" fill="rgb(229,17,7)" fg:x="276740" fg:w="317"/><text x="11.7941%" y="463.50"></text></g><g><title>schedule (276 samples, 0.01%)</title><rect x="11.5458%" y="437" width="0.0115%" height="15" fill="rgb(239,72,28)" fg:x="276781" fg:w="276"/><text x="11.7958%" y="447.50"></text></g><g><title>__schedule (273 samples, 0.01%)</title><rect x="11.5460%" y="421" width="0.0114%" height="15" fill="rgb(230,47,54)" fg:x="276784" fg:w="273"/><text x="11.7960%" y="431.50"></text></g><g><title>finish_wait (474 samples, 0.02%)</title><rect x="11.5678%" y="421" width="0.0198%" height="15" fill="rgb(214,50,8)" fg:x="277308" fg:w="474"/><text x="11.8178%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (454 samples, 0.02%)</title><rect x="11.5687%" y="405" width="0.0189%" height="15" fill="rgb(216,198,43)" fg:x="277328" fg:w="454"/><text x="11.8187%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (429 samples, 0.02%)</title><rect x="11.5697%" y="389" width="0.0179%" height="15" fill="rgb(234,20,35)" fg:x="277353" fg:w="429"/><text x="11.8197%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,363 samples, 0.06%)</title><rect x="11.5939%" y="405" width="0.0569%" height="15" fill="rgb(254,45,19)" fg:x="277933" fg:w="1363"/><text x="11.8439%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,294 samples, 0.05%)</title><rect x="11.5968%" y="389" width="0.0540%" height="15" fill="rgb(219,14,44)" fg:x="278002" fg:w="1294"/><text x="11.8468%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,539 samples, 0.06%)</title><rect x="11.5878%" y="421" width="0.0642%" height="15" fill="rgb(217,220,26)" fg:x="277787" fg:w="1539"/><text x="11.8378%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,691 samples, 0.07%)</title><rect x="11.6520%" y="421" width="0.0705%" height="15" fill="rgb(213,158,28)" fg:x="279326" fg:w="1691"/><text x="11.9020%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (748 samples, 0.03%)</title><rect x="11.6913%" y="405" width="0.0312%" height="15" fill="rgb(252,51,52)" fg:x="280269" fg:w="748"/><text x="11.9413%" y="415.50"></text></g><g><title>dequeue_entity (293 samples, 0.01%)</title><rect x="11.7319%" y="373" width="0.0122%" height="15" fill="rgb(246,89,16)" fg:x="281241" fg:w="293"/><text x="11.9819%" y="383.50"></text></g><g><title>dequeue_task_fair (342 samples, 0.01%)</title><rect x="11.7307%" y="389" width="0.0143%" height="15" fill="rgb(216,158,49)" fg:x="281212" fg:w="342"/><text x="11.9807%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (536 samples, 0.02%)</title><rect x="11.7475%" y="373" width="0.0224%" height="15" fill="rgb(236,107,19)" fg:x="281616" fg:w="536"/><text x="11.9975%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (518 samples, 0.02%)</title><rect x="11.7483%" y="357" width="0.0216%" height="15" fill="rgb(228,185,30)" fg:x="281634" fg:w="518"/><text x="11.9983%" y="367.50"></text></g><g><title>native_write_msr (515 samples, 0.02%)</title><rect x="11.7484%" y="341" width="0.0215%" height="15" fill="rgb(246,134,8)" fg:x="281637" fg:w="515"/><text x="11.9984%" y="351.50"></text></g><g><title>finish_task_switch (619 samples, 0.03%)</title><rect x="11.7449%" y="389" width="0.0258%" height="15" fill="rgb(214,143,50)" fg:x="281554" fg:w="619"/><text x="11.9949%" y="399.50"></text></g><g><title>psi_task_change (260 samples, 0.01%)</title><rect x="11.7765%" y="389" width="0.0108%" height="15" fill="rgb(228,75,8)" fg:x="282310" fg:w="260"/><text x="12.0265%" y="399.50"></text></g><g><title>__btrfs_tree_lock (5,530 samples, 0.23%)</title><rect x="11.5599%" y="437" width="0.2307%" height="15" fill="rgb(207,175,4)" fg:x="277118" fg:w="5530"/><text x="11.8099%" y="447.50"></text></g><g><title>schedule (1,631 samples, 0.07%)</title><rect x="11.7225%" y="421" width="0.0680%" height="15" fill="rgb(205,108,24)" fg:x="281017" fg:w="1631"/><text x="11.9725%" y="431.50"></text></g><g><title>__schedule (1,603 samples, 0.07%)</title><rect x="11.7237%" y="405" width="0.0669%" height="15" fill="rgb(244,120,49)" fg:x="281045" fg:w="1603"/><text x="11.9737%" y="415.50"></text></g><g><title>btrfs_lock_root_node (5,574 samples, 0.23%)</title><rect x="11.5596%" y="453" width="0.2325%" height="15" fill="rgb(223,47,38)" fg:x="277112" fg:w="5574"/><text x="11.8096%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (298 samples, 0.01%)</title><rect x="11.7957%" y="453" width="0.0124%" height="15" fill="rgb(229,179,11)" fg:x="282770" fg:w="298"/><text x="12.0457%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (242 samples, 0.01%)</title><rect x="11.7980%" y="437" width="0.0101%" height="15" fill="rgb(231,122,1)" fg:x="282826" fg:w="242"/><text x="12.0480%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (466 samples, 0.02%)</title><rect x="11.8104%" y="453" width="0.0194%" height="15" fill="rgb(245,119,9)" fg:x="283123" fg:w="466"/><text x="12.0604%" y="463.50"></text></g><g><title>__radix_tree_lookup (264 samples, 0.01%)</title><rect x="11.8439%" y="421" width="0.0110%" height="15" fill="rgb(241,163,25)" fg:x="283926" fg:w="264"/><text x="12.0939%" y="431.50"></text></g><g><title>find_extent_buffer (545 samples, 0.02%)</title><rect x="11.8386%" y="437" width="0.0227%" height="15" fill="rgb(217,214,3)" fg:x="283800" fg:w="545"/><text x="12.0886%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (808 samples, 0.03%)</title><rect x="11.8298%" y="453" width="0.0337%" height="15" fill="rgb(240,86,28)" fg:x="283589" fg:w="808"/><text x="12.0798%" y="463.50"></text></g><g><title>reada_for_balance (309 samples, 0.01%)</title><rect x="11.8635%" y="453" width="0.0129%" height="15" fill="rgb(215,47,9)" fg:x="284397" fg:w="309"/><text x="12.1135%" y="463.50"></text></g><g><title>select_task_rq_fair (299 samples, 0.01%)</title><rect x="11.9157%" y="373" width="0.0125%" height="15" fill="rgb(252,25,45)" fg:x="285648" fg:w="299"/><text x="12.1657%" y="383.50"></text></g><g><title>enqueue_entity (284 samples, 0.01%)</title><rect x="11.9326%" y="341" width="0.0118%" height="15" fill="rgb(251,164,9)" fg:x="286052" fg:w="284"/><text x="12.1826%" y="351.50"></text></g><g><title>enqueue_task_fair (374 samples, 0.02%)</title><rect x="11.9298%" y="357" width="0.0156%" height="15" fill="rgb(233,194,0)" fg:x="285985" fg:w="374"/><text x="12.1798%" y="367.50"></text></g><g><title>ttwu_do_activate (737 samples, 0.03%)</title><rect x="11.9289%" y="373" width="0.0307%" height="15" fill="rgb(249,111,24)" fg:x="285965" fg:w="737"/><text x="12.1789%" y="383.50"></text></g><g><title>psi_task_change (342 samples, 0.01%)</title><rect x="11.9454%" y="357" width="0.0143%" height="15" fill="rgb(250,223,3)" fg:x="286360" fg:w="342"/><text x="12.1954%" y="367.50"></text></g><g><title>psi_group_change (297 samples, 0.01%)</title><rect x="11.9473%" y="341" width="0.0124%" height="15" fill="rgb(236,178,37)" fg:x="286405" fg:w="297"/><text x="12.1973%" y="351.50"></text></g><g><title>__wake_up_common (2,089 samples, 0.09%)</title><rect x="11.8805%" y="421" width="0.0871%" height="15" fill="rgb(241,158,50)" fg:x="284803" fg:w="2089"/><text x="12.1305%" y="431.50"></text></g><g><title>autoremove_wake_function (2,028 samples, 0.08%)</title><rect x="11.8830%" y="405" width="0.0846%" height="15" fill="rgb(213,121,41)" fg:x="284864" fg:w="2028"/><text x="12.1330%" y="415.50"></text></g><g><title>try_to_wake_up (1,979 samples, 0.08%)</title><rect x="11.8851%" y="389" width="0.0826%" height="15" fill="rgb(240,92,3)" fg:x="284913" fg:w="1979"/><text x="12.1351%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (306 samples, 0.01%)</title><rect x="11.9676%" y="421" width="0.0128%" height="15" fill="rgb(205,123,3)" fg:x="286892" fg:w="306"/><text x="12.2176%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (288 samples, 0.01%)</title><rect x="11.9684%" y="405" width="0.0120%" height="15" fill="rgb(205,97,47)" fg:x="286910" fg:w="288"/><text x="12.2184%" y="415.50"></text></g><g><title>__wake_up_common_lock (2,423 samples, 0.10%)</title><rect x="11.8801%" y="437" width="0.1011%" height="15" fill="rgb(247,152,14)" fg:x="284793" fg:w="2423"/><text x="12.1301%" y="447.50"></text></g><g><title>btrfs_search_slot (13,475 samples, 0.56%)</title><rect x="11.4213%" y="469" width="0.5621%" height="15" fill="rgb(248,195,53)" fg:x="273796" fg:w="13475"/><text x="11.6713%" y="479.50"></text></g><g><title>unlock_up (2,554 samples, 0.11%)</title><rect x="11.8769%" y="453" width="0.1065%" height="15" fill="rgb(226,201,16)" fg:x="284717" fg:w="2554"/><text x="12.1269%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (13,935 samples, 0.58%)</title><rect x="11.4079%" y="485" width="0.5813%" height="15" fill="rgb(205,98,0)" fg:x="273474" fg:w="13935"/><text x="11.6579%" y="495.50"></text></g><g><title>__wake_up_common (413 samples, 0.02%)</title><rect x="11.9900%" y="453" width="0.0172%" height="15" fill="rgb(214,191,48)" fg:x="287428" fg:w="413"/><text x="12.2400%" y="463.50"></text></g><g><title>autoremove_wake_function (410 samples, 0.02%)</title><rect x="11.9901%" y="437" width="0.0171%" height="15" fill="rgb(237,112,39)" fg:x="287431" fg:w="410"/><text x="12.2401%" y="447.50"></text></g><g><title>try_to_wake_up (402 samples, 0.02%)</title><rect x="11.9904%" y="421" width="0.0168%" height="15" fill="rgb(247,203,27)" fg:x="287439" fg:w="402"/><text x="12.2404%" y="431.50"></text></g><g><title>__wake_up_common_lock (424 samples, 0.02%)</title><rect x="11.9899%" y="469" width="0.0177%" height="15" fill="rgb(235,124,28)" fg:x="287426" fg:w="424"/><text x="12.2399%" y="479.50"></text></g><g><title>btrfs_release_path (612 samples, 0.03%)</title><rect x="11.9892%" y="485" width="0.0255%" height="15" fill="rgb(208,207,46)" fg:x="287409" fg:w="612"/><text x="12.2392%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (393 samples, 0.02%)</title><rect x="12.0169%" y="469" width="0.0164%" height="15" fill="rgb(234,176,4)" fg:x="288073" fg:w="393"/><text x="12.2669%" y="479.50"></text></g><g><title>btrfs_update_inode (546 samples, 0.02%)</title><rect x="12.0147%" y="485" width="0.0228%" height="15" fill="rgb(230,133,28)" fg:x="288021" fg:w="546"/><text x="12.2647%" y="495.50"></text></g><g><title>__btrfs_unlink_inode (22,640 samples, 0.94%)</title><rect x="11.0995%" y="501" width="0.9444%" height="15" fill="rgb(211,137,40)" fg:x="266081" fg:w="22640"/><text x="11.3495%" y="511.50"></text></g><g><title>__wake_up_common (321 samples, 0.01%)</title><rect x="12.0592%" y="421" width="0.0134%" height="15" fill="rgb(254,35,13)" fg:x="289087" fg:w="321"/><text x="12.3092%" y="431.50"></text></g><g><title>autoremove_wake_function (316 samples, 0.01%)</title><rect x="12.0594%" y="405" width="0.0132%" height="15" fill="rgb(225,49,51)" fg:x="289092" fg:w="316"/><text x="12.3094%" y="415.50"></text></g><g><title>try_to_wake_up (311 samples, 0.01%)</title><rect x="12.0596%" y="389" width="0.0130%" height="15" fill="rgb(251,10,15)" fg:x="289097" fg:w="311"/><text x="12.3096%" y="399.50"></text></g><g><title>__wake_up_common_lock (333 samples, 0.01%)</title><rect x="12.0590%" y="437" width="0.0139%" height="15" fill="rgb(228,207,15)" fg:x="289082" fg:w="333"/><text x="12.3090%" y="447.50"></text></g><g><title>btrfs_free_path (569 samples, 0.02%)</title><rect x="12.0573%" y="469" width="0.0237%" height="15" fill="rgb(241,99,19)" fg:x="289042" fg:w="569"/><text x="12.3073%" y="479.50"></text></g><g><title>btrfs_release_path (559 samples, 0.02%)</title><rect x="12.0577%" y="453" width="0.0233%" height="15" fill="rgb(207,104,49)" fg:x="289052" fg:w="559"/><text x="12.3077%" y="463.50"></text></g><g><title>finish_wait (330 samples, 0.01%)</title><rect x="12.0966%" y="405" width="0.0138%" height="15" fill="rgb(234,99,18)" fg:x="289983" fg:w="330"/><text x="12.3466%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (318 samples, 0.01%)</title><rect x="12.0971%" y="389" width="0.0133%" height="15" fill="rgb(213,191,49)" fg:x="289995" fg:w="318"/><text x="12.3471%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (301 samples, 0.01%)</title><rect x="12.0978%" y="373" width="0.0126%" height="15" fill="rgb(210,226,19)" fg:x="290012" fg:w="301"/><text x="12.3478%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (823 samples, 0.03%)</title><rect x="12.1137%" y="389" width="0.0343%" height="15" fill="rgb(229,97,18)" fg:x="290394" fg:w="823"/><text x="12.3637%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (774 samples, 0.03%)</title><rect x="12.1157%" y="373" width="0.0323%" height="15" fill="rgb(211,167,15)" fg:x="290443" fg:w="774"/><text x="12.3657%" y="383.50"></text></g><g><title>prepare_to_wait_event (915 samples, 0.04%)</title><rect x="12.1104%" y="405" width="0.0382%" height="15" fill="rgb(210,169,34)" fg:x="290315" fg:w="915"/><text x="12.3604%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (882 samples, 0.04%)</title><rect x="12.1486%" y="405" width="0.0368%" height="15" fill="rgb(241,121,31)" fg:x="291230" fg:w="882"/><text x="12.3986%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (616 samples, 0.03%)</title><rect x="12.1597%" y="389" width="0.0257%" height="15" fill="rgb(232,40,11)" fg:x="291496" fg:w="616"/><text x="12.4097%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (314 samples, 0.01%)</title><rect x="12.1985%" y="357" width="0.0131%" height="15" fill="rgb(205,86,26)" fg:x="292428" fg:w="314"/><text x="12.4485%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (300 samples, 0.01%)</title><rect x="12.1991%" y="341" width="0.0125%" height="15" fill="rgb(231,126,28)" fg:x="292442" fg:w="300"/><text x="12.4491%" y="351.50"></text></g><g><title>native_write_msr (297 samples, 0.01%)</title><rect x="12.1993%" y="325" width="0.0124%" height="15" fill="rgb(219,221,18)" fg:x="292445" fg:w="297"/><text x="12.4493%" y="335.50"></text></g><g><title>finish_task_switch (353 samples, 0.01%)</title><rect x="12.1973%" y="373" width="0.0147%" height="15" fill="rgb(211,40,0)" fg:x="292398" fg:w="353"/><text x="12.4473%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (3,157 samples, 0.13%)</title><rect x="12.0909%" y="421" width="0.1317%" height="15" fill="rgb(239,85,43)" fg:x="289847" fg:w="3157"/><text x="12.3409%" y="431.50"></text></g><g><title>schedule (892 samples, 0.04%)</title><rect x="12.1854%" y="405" width="0.0372%" height="15" fill="rgb(231,55,21)" fg:x="292112" fg:w="892"/><text x="12.4354%" y="415.50"></text></g><g><title>__schedule (882 samples, 0.04%)</title><rect x="12.1858%" y="389" width="0.0368%" height="15" fill="rgb(225,184,43)" fg:x="292122" fg:w="882"/><text x="12.4358%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (3,292 samples, 0.14%)</title><rect x="12.0900%" y="437" width="0.1373%" height="15" fill="rgb(251,158,41)" fg:x="289825" fg:w="3292"/><text x="12.3400%" y="447.50"></text></g><g><title>finish_task_switch (254 samples, 0.01%)</title><rect x="12.2500%" y="389" width="0.0106%" height="15" fill="rgb(234,159,37)" fg:x="293661" fg:w="254"/><text x="12.5000%" y="399.50"></text></g><g><title>__btrfs_tree_lock (988 samples, 0.04%)</title><rect x="12.2273%" y="437" width="0.0412%" height="15" fill="rgb(216,204,22)" fg:x="293117" fg:w="988"/><text x="12.4773%" y="447.50"></text></g><g><title>schedule (676 samples, 0.03%)</title><rect x="12.2403%" y="421" width="0.0282%" height="15" fill="rgb(214,17,3)" fg:x="293429" fg:w="676"/><text x="12.4903%" y="431.50"></text></g><g><title>__schedule (667 samples, 0.03%)</title><rect x="12.2407%" y="405" width="0.0278%" height="15" fill="rgb(212,111,17)" fg:x="293438" fg:w="667"/><text x="12.4907%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (822 samples, 0.03%)</title><rect x="12.2782%" y="437" width="0.0343%" height="15" fill="rgb(221,157,24)" fg:x="294337" fg:w="822"/><text x="12.5282%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (745 samples, 0.03%)</title><rect x="12.2814%" y="421" width="0.0311%" height="15" fill="rgb(252,16,13)" fg:x="294414" fg:w="745"/><text x="12.5314%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (321 samples, 0.01%)</title><rect x="12.3125%" y="437" width="0.0134%" height="15" fill="rgb(221,62,2)" fg:x="295159" fg:w="321"/><text x="12.5625%" y="447.50"></text></g><g><title>find_extent_buffer (494 samples, 0.02%)</title><rect x="12.3362%" y="421" width="0.0206%" height="15" fill="rgb(247,87,22)" fg:x="295728" fg:w="494"/><text x="12.5862%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (795 samples, 0.03%)</title><rect x="12.3259%" y="437" width="0.0332%" height="15" fill="rgb(215,73,9)" fg:x="295480" fg:w="795"/><text x="12.5759%" y="447.50"></text></g><g><title>ttwu_do_activate (359 samples, 0.01%)</title><rect x="12.3794%" y="357" width="0.0150%" height="15" fill="rgb(207,175,33)" fg:x="296764" fg:w="359"/><text x="12.6294%" y="367.50"></text></g><g><title>__wake_up_common (810 samples, 0.03%)</title><rect x="12.3636%" y="405" width="0.0338%" height="15" fill="rgb(243,129,54)" fg:x="296384" fg:w="810"/><text x="12.6136%" y="415.50"></text></g><g><title>autoremove_wake_function (797 samples, 0.03%)</title><rect x="12.3641%" y="389" width="0.0332%" height="15" fill="rgb(227,119,45)" fg:x="296397" fg:w="797"/><text x="12.6141%" y="399.50"></text></g><g><title>try_to_wake_up (779 samples, 0.03%)</title><rect x="12.3649%" y="373" width="0.0325%" height="15" fill="rgb(205,109,36)" fg:x="296415" fg:w="779"/><text x="12.6149%" y="383.50"></text></g><g><title>__wake_up_common_lock (830 samples, 0.03%)</title><rect x="12.3633%" y="421" width="0.0346%" height="15" fill="rgb(205,6,39)" fg:x="296378" fg:w="830"/><text x="12.6133%" y="431.50"></text></g><g><title>btrfs_search_slot (7,680 samples, 0.32%)</title><rect x="12.0822%" y="453" width="0.3204%" height="15" fill="rgb(221,32,16)" fg:x="289640" fg:w="7680"/><text x="12.3322%" y="463.50"></text></g><g><title>unlock_up (1,034 samples, 0.04%)</title><rect x="12.3595%" y="437" width="0.0431%" height="15" fill="rgb(228,144,50)" fg:x="296286" fg:w="1034"/><text x="12.6095%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (8,341 samples, 0.35%)</title><rect x="12.0810%" y="469" width="0.3479%" height="15" fill="rgb(229,201,53)" fg:x="289611" fg:w="8341"/><text x="12.3310%" y="479.50"></text></g><g><title>setup_items_for_insert (632 samples, 0.03%)</title><rect x="12.4026%" y="453" width="0.0264%" height="15" fill="rgb(249,153,27)" fg:x="297320" fg:w="632"/><text x="12.6526%" y="463.50"></text></g><g><title>btrfs_orphan_add (9,095 samples, 0.38%)</title><rect x="12.0556%" y="501" width="0.3794%" height="15" fill="rgb(227,106,25)" fg:x="289001" fg:w="9095"/><text x="12.3056%" y="511.50"></text></g><g><title>btrfs_insert_orphan_item (9,080 samples, 0.38%)</title><rect x="12.0562%" y="485" width="0.3788%" height="15" fill="rgb(230,65,29)" fg:x="289016" fg:w="9080"/><text x="12.3062%" y="495.50"></text></g><g><title>btrfs_update_inode (289 samples, 0.01%)</title><rect x="12.4355%" y="501" width="0.0121%" height="15" fill="rgb(221,57,46)" fg:x="298109" fg:w="289"/><text x="12.6855%" y="511.50"></text></g><g><title>btrfs_block_rsv_add (500 samples, 0.02%)</title><rect x="12.4581%" y="485" width="0.0209%" height="15" fill="rgb(229,161,17)" fg:x="298650" fg:w="500"/><text x="12.7081%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (446 samples, 0.02%)</title><rect x="12.4603%" y="469" width="0.0186%" height="15" fill="rgb(222,213,11)" fg:x="298704" fg:w="446"/><text x="12.7103%" y="479.50"></text></g><g><title>__reserve_bytes (399 samples, 0.02%)</title><rect x="12.4623%" y="453" width="0.0166%" height="15" fill="rgb(235,35,13)" fg:x="298751" fg:w="399"/><text x="12.7123%" y="463.50"></text></g><g><title>btrfs_rmdir (33,842 samples, 1.41%)</title><rect x="11.0763%" y="517" width="1.4117%" height="15" fill="rgb(233,158,34)" fg:x="265525" fg:w="33842"/><text x="11.3263%" y="527.50"></text></g><g><title>start_transaction (908 samples, 0.04%)</title><rect x="12.4501%" y="501" width="0.0379%" height="15" fill="rgb(215,151,48)" fg:x="298459" fg:w="908"/><text x="12.7001%" y="511.50"></text></g><g><title>__destroy_inode (257 samples, 0.01%)</title><rect x="12.5050%" y="501" width="0.0107%" height="15" fill="rgb(229,84,14)" fg:x="299775" fg:w="257"/><text x="12.7550%" y="511.50"></text></g><g><title>btrfs_drop_extent_cache (404 samples, 0.02%)</title><rect x="12.5187%" y="485" width="0.0169%" height="15" fill="rgb(229,68,14)" fg:x="300103" fg:w="404"/><text x="12.7687%" y="495.50"></text></g><g><title>clear_record_extent_bits (272 samples, 0.01%)</title><rect x="12.5476%" y="469" width="0.0113%" height="15" fill="rgb(243,106,26)" fg:x="300795" fg:w="272"/><text x="12.7976%" y="479.50"></text></g><g><title>__clear_extent_bit (247 samples, 0.01%)</title><rect x="12.5486%" y="453" width="0.0103%" height="15" fill="rgb(206,45,38)" fg:x="300820" fg:w="247"/><text x="12.7986%" y="463.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (343 samples, 0.01%)</title><rect x="12.5464%" y="485" width="0.0143%" height="15" fill="rgb(226,6,15)" fg:x="300767" fg:w="343"/><text x="12.7964%" y="495.50"></text></g><g><title>btrfs_destroy_inode (1,398 samples, 0.06%)</title><rect x="12.5157%" y="501" width="0.0583%" height="15" fill="rgb(232,22,54)" fg:x="300032" fg:w="1398"/><text x="12.7657%" y="511.50"></text></g><g><title>rb_erase (320 samples, 0.01%)</title><rect x="12.5607%" y="485" width="0.0133%" height="15" fill="rgb(229,222,32)" fg:x="301110" fg:w="320"/><text x="12.8107%" y="495.50"></text></g><g><title>destroy_inode (1,704 samples, 0.07%)</title><rect x="12.5047%" y="517" width="0.0711%" height="15" fill="rgb(228,62,29)" fg:x="299767" fg:w="1704"/><text x="12.7547%" y="527.50"></text></g><g><title>_raw_spin_lock (242 samples, 0.01%)</title><rect x="12.6121%" y="437" width="0.0101%" height="15" fill="rgb(251,103,34)" fg:x="302343" fg:w="242"/><text x="12.8621%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (393 samples, 0.02%)</title><rect x="12.6068%" y="469" width="0.0164%" height="15" fill="rgb(233,12,30)" fg:x="302214" fg:w="393"/><text x="12.8568%" y="479.50"></text></g><g><title>btrfs_block_rsv_release (373 samples, 0.02%)</title><rect x="12.6076%" y="453" width="0.0156%" height="15" fill="rgb(238,52,0)" fg:x="302234" fg:w="373"/><text x="12.8576%" y="463.50"></text></g><g><title>__btrfs_end_transaction (804 samples, 0.03%)</title><rect x="12.5946%" y="485" width="0.0335%" height="15" fill="rgb(223,98,5)" fg:x="301923" fg:w="804"/><text x="12.8446%" y="495.50"></text></g><g><title>__radix_tree_lookup (240 samples, 0.01%)</title><rect x="12.6408%" y="453" width="0.0100%" height="15" fill="rgb(228,75,37)" fg:x="303029" fg:w="240"/><text x="12.8908%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (557 samples, 0.02%)</title><rect x="12.6282%" y="485" width="0.0232%" height="15" fill="rgb(205,115,49)" fg:x="302727" fg:w="557"/><text x="12.8782%" y="495.50"></text></g><g><title>radix_tree_delete_item (307 samples, 0.01%)</title><rect x="12.6386%" y="469" width="0.0128%" height="15" fill="rgb(250,154,43)" fg:x="302977" fg:w="307"/><text x="12.8886%" y="479.50"></text></g><g><title>__btrfs_end_transaction (250 samples, 0.01%)</title><rect x="12.6711%" y="469" width="0.0104%" height="15" fill="rgb(226,43,29)" fg:x="303757" fg:w="250"/><text x="12.9211%" y="479.50"></text></g><g><title>btrfs_get_token_32 (1,033 samples, 0.04%)</title><rect x="12.7107%" y="437" width="0.0431%" height="15" fill="rgb(249,228,39)" fg:x="304705" fg:w="1033"/><text x="12.9607%" y="447.50"></text></g><g><title>btrfs_set_token_32 (720 samples, 0.03%)</title><rect x="12.7559%" y="437" width="0.0300%" height="15" fill="rgb(216,79,43)" fg:x="305788" fg:w="720"/><text x="13.0059%" y="447.50"></text></g><g><title>memmove_extent_buffer (555 samples, 0.02%)</title><rect x="12.7939%" y="437" width="0.0232%" height="15" fill="rgb(228,95,12)" fg:x="306701" fg:w="555"/><text x="13.0439%" y="447.50"></text></g><g><title>memmove (465 samples, 0.02%)</title><rect x="12.7977%" y="421" width="0.0194%" height="15" fill="rgb(249,221,15)" fg:x="306791" fg:w="465"/><text x="13.0477%" y="431.50"></text></g><g><title>btrfs_del_items (3,011 samples, 0.13%)</title><rect x="12.6951%" y="453" width="0.1256%" height="15" fill="rgb(233,34,13)" fg:x="304332" fg:w="3011"/><text x="12.9451%" y="463.50"></text></g><g><title>finish_wait (336 samples, 0.01%)</title><rect x="12.8469%" y="389" width="0.0140%" height="15" fill="rgb(214,103,39)" fg:x="307970" fg:w="336"/><text x="13.0969%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (320 samples, 0.01%)</title><rect x="12.8475%" y="373" width="0.0133%" height="15" fill="rgb(251,126,39)" fg:x="307986" fg:w="320"/><text x="13.0975%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (302 samples, 0.01%)</title><rect x="12.8483%" y="357" width="0.0126%" height="15" fill="rgb(214,216,36)" fg:x="308004" fg:w="302"/><text x="13.0983%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (849 samples, 0.04%)</title><rect x="12.8635%" y="373" width="0.0354%" height="15" fill="rgb(220,221,8)" fg:x="308369" fg:w="849"/><text x="13.1135%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (811 samples, 0.03%)</title><rect x="12.8651%" y="357" width="0.0338%" height="15" fill="rgb(240,216,3)" fg:x="308407" fg:w="811"/><text x="13.1151%" y="367.50"></text></g><g><title>prepare_to_wait_event (923 samples, 0.04%)</title><rect x="12.8609%" y="389" width="0.0385%" height="15" fill="rgb(232,218,17)" fg:x="308306" fg:w="923"/><text x="13.1109%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (819 samples, 0.03%)</title><rect x="12.8994%" y="389" width="0.0342%" height="15" fill="rgb(229,163,45)" fg:x="309229" fg:w="819"/><text x="13.1494%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (588 samples, 0.02%)</title><rect x="12.9090%" y="373" width="0.0245%" height="15" fill="rgb(231,110,42)" fg:x="309460" fg:w="588"/><text x="13.1590%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (328 samples, 0.01%)</title><rect x="12.9452%" y="341" width="0.0137%" height="15" fill="rgb(208,170,48)" fg:x="310328" fg:w="328"/><text x="13.1952%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (313 samples, 0.01%)</title><rect x="12.9459%" y="325" width="0.0131%" height="15" fill="rgb(239,116,25)" fg:x="310343" fg:w="313"/><text x="13.1959%" y="335.50"></text></g><g><title>native_write_msr (309 samples, 0.01%)</title><rect x="12.9460%" y="309" width="0.0129%" height="15" fill="rgb(219,200,50)" fg:x="310347" fg:w="309"/><text x="13.1960%" y="319.50"></text></g><g><title>finish_task_switch (361 samples, 0.02%)</title><rect x="12.9444%" y="357" width="0.0151%" height="15" fill="rgb(245,200,0)" fg:x="310307" fg:w="361"/><text x="13.1944%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (3,050 samples, 0.13%)</title><rect x="12.8421%" y="405" width="0.1272%" height="15" fill="rgb(245,119,33)" fg:x="307856" fg:w="3050"/><text x="13.0921%" y="415.50"></text></g><g><title>schedule (858 samples, 0.04%)</title><rect x="12.9336%" y="389" width="0.0358%" height="15" fill="rgb(231,125,12)" fg:x="310048" fg:w="858"/><text x="13.1836%" y="399.50"></text></g><g><title>__schedule (853 samples, 0.04%)</title><rect x="12.9338%" y="373" width="0.0356%" height="15" fill="rgb(216,96,41)" fg:x="310053" fg:w="853"/><text x="13.1838%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (3,155 samples, 0.13%)</title><rect x="12.8415%" y="421" width="0.1316%" height="15" fill="rgb(248,43,45)" fg:x="307842" fg:w="3155"/><text x="13.0915%" y="431.50"></text></g><g><title>__btrfs_tree_lock (399 samples, 0.02%)</title><rect x="12.9731%" y="421" width="0.0166%" height="15" fill="rgb(217,222,7)" fg:x="310997" fg:w="399"/><text x="13.2231%" y="431.50"></text></g><g><title>schedule (356 samples, 0.01%)</title><rect x="12.9749%" y="405" width="0.0149%" height="15" fill="rgb(233,28,6)" fg:x="311040" fg:w="356"/><text x="13.2249%" y="415.50"></text></g><g><title>__schedule (351 samples, 0.01%)</title><rect x="12.9751%" y="389" width="0.0146%" height="15" fill="rgb(231,218,15)" fg:x="311045" fg:w="351"/><text x="13.2251%" y="399.50"></text></g><g><title>finish_wait (344 samples, 0.01%)</title><rect x="12.9986%" y="389" width="0.0143%" height="15" fill="rgb(226,171,48)" fg:x="311607" fg:w="344"/><text x="13.2486%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (325 samples, 0.01%)</title><rect x="12.9994%" y="373" width="0.0136%" height="15" fill="rgb(235,201,9)" fg:x="311626" fg:w="325"/><text x="13.2494%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (300 samples, 0.01%)</title><rect x="13.0004%" y="357" width="0.0125%" height="15" fill="rgb(217,80,15)" fg:x="311651" fg:w="300"/><text x="13.2504%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (888 samples, 0.04%)</title><rect x="13.0183%" y="373" width="0.0370%" height="15" fill="rgb(219,152,8)" fg:x="312080" fg:w="888"/><text x="13.2683%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (816 samples, 0.03%)</title><rect x="13.0213%" y="357" width="0.0340%" height="15" fill="rgb(243,107,38)" fg:x="312152" fg:w="816"/><text x="13.2713%" y="367.50"></text></g><g><title>prepare_to_wait_event (1,036 samples, 0.04%)</title><rect x="13.0132%" y="389" width="0.0432%" height="15" fill="rgb(231,17,5)" fg:x="311958" fg:w="1036"/><text x="13.2632%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (1,497 samples, 0.06%)</title><rect x="13.0564%" y="389" width="0.0624%" height="15" fill="rgb(209,25,54)" fg:x="312994" fg:w="1497"/><text x="13.3064%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (700 samples, 0.03%)</title><rect x="13.0897%" y="373" width="0.0292%" height="15" fill="rgb(219,0,2)" fg:x="313791" fg:w="700"/><text x="13.3397%" y="383.50"></text></g><g><title>dequeue_entity (258 samples, 0.01%)</title><rect x="13.1262%" y="341" width="0.0108%" height="15" fill="rgb(246,9,5)" fg:x="314665" fg:w="258"/><text x="13.3762%" y="351.50"></text></g><g><title>dequeue_task_fair (301 samples, 0.01%)</title><rect x="13.1249%" y="357" width="0.0126%" height="15" fill="rgb(226,159,4)" fg:x="314635" fg:w="301"/><text x="13.3749%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (499 samples, 0.02%)</title><rect x="13.1393%" y="341" width="0.0208%" height="15" fill="rgb(219,175,34)" fg:x="314980" fg:w="499"/><text x="13.3893%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (481 samples, 0.02%)</title><rect x="13.1400%" y="325" width="0.0201%" height="15" fill="rgb(236,10,46)" fg:x="314998" fg:w="481"/><text x="13.3900%" y="335.50"></text></g><g><title>native_write_msr (473 samples, 0.02%)</title><rect x="13.1404%" y="309" width="0.0197%" height="15" fill="rgb(240,211,16)" fg:x="315006" fg:w="473"/><text x="13.3904%" y="319.50"></text></g><g><title>finish_task_switch (561 samples, 0.02%)</title><rect x="13.1375%" y="357" width="0.0234%" height="15" fill="rgb(205,3,43)" fg:x="314936" fg:w="561"/><text x="13.3875%" y="367.50"></text></g><g><title>__btrfs_tree_lock (4,466 samples, 0.19%)</title><rect x="12.9910%" y="405" width="0.1863%" height="15" fill="rgb(245,7,22)" fg:x="311426" fg:w="4466"/><text x="13.2410%" y="415.50"></text></g><g><title>schedule (1,401 samples, 0.06%)</title><rect x="13.1189%" y="389" width="0.0584%" height="15" fill="rgb(239,132,32)" fg:x="314491" fg:w="1401"/><text x="13.3689%" y="399.50"></text></g><g><title>__schedule (1,387 samples, 0.06%)</title><rect x="13.1195%" y="373" width="0.0579%" height="15" fill="rgb(228,202,34)" fg:x="314505" fg:w="1387"/><text x="13.3695%" y="383.50"></text></g><g><title>btrfs_lock_root_node (4,512 samples, 0.19%)</title><rect x="12.9908%" y="421" width="0.1882%" height="15" fill="rgb(254,200,22)" fg:x="311421" fg:w="4512"/><text x="13.2408%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (298 samples, 0.01%)</title><rect x="13.1826%" y="421" width="0.0124%" height="15" fill="rgb(219,10,39)" fg:x="316017" fg:w="298"/><text x="13.4326%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (253 samples, 0.01%)</title><rect x="13.1844%" y="405" width="0.0106%" height="15" fill="rgb(226,210,39)" fg:x="316062" fg:w="253"/><text x="13.4344%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (378 samples, 0.02%)</title><rect x="13.1973%" y="421" width="0.0158%" height="15" fill="rgb(208,219,16)" fg:x="316370" fg:w="378"/><text x="13.4473%" y="431.50"></text></g><g><title>__radix_tree_lookup (257 samples, 0.01%)</title><rect x="13.2267%" y="389" width="0.0107%" height="15" fill="rgb(216,158,51)" fg:x="317075" fg:w="257"/><text x="13.4767%" y="399.50"></text></g><g><title>find_extent_buffer (475 samples, 0.02%)</title><rect x="13.2220%" y="405" width="0.0198%" height="15" fill="rgb(233,14,44)" fg:x="316962" fg:w="475"/><text x="13.4720%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (762 samples, 0.03%)</title><rect x="13.2130%" y="421" width="0.0318%" height="15" fill="rgb(237,97,39)" fg:x="316748" fg:w="762"/><text x="13.4630%" y="431.50"></text></g><g><title>reada_for_balance (310 samples, 0.01%)</title><rect x="13.2448%" y="421" width="0.0129%" height="15" fill="rgb(218,198,43)" fg:x="317510" fg:w="310"/><text x="13.4948%" y="431.50"></text></g><g><title>select_task_rq_fair (342 samples, 0.01%)</title><rect x="13.2957%" y="341" width="0.0143%" height="15" fill="rgb(231,104,20)" fg:x="318730" fg:w="342"/><text x="13.5457%" y="351.50"></text></g><g><title>enqueue_entity (280 samples, 0.01%)</title><rect x="13.3136%" y="309" width="0.0117%" height="15" fill="rgb(254,36,13)" fg:x="319159" fg:w="280"/><text x="13.5636%" y="319.50"></text></g><g><title>enqueue_task_fair (341 samples, 0.01%)</title><rect x="13.3117%" y="325" width="0.0142%" height="15" fill="rgb(248,14,50)" fg:x="319113" fg:w="341"/><text x="13.5617%" y="335.50"></text></g><g><title>ttwu_do_activate (727 samples, 0.03%)</title><rect x="13.3110%" y="341" width="0.0303%" height="15" fill="rgb(217,107,29)" fg:x="319097" fg:w="727"/><text x="13.5610%" y="351.50"></text></g><g><title>psi_task_change (370 samples, 0.02%)</title><rect x="13.3259%" y="325" width="0.0154%" height="15" fill="rgb(251,169,33)" fg:x="319454" fg:w="370"/><text x="13.5759%" y="335.50"></text></g><g><title>psi_group_change (333 samples, 0.01%)</title><rect x="13.3275%" y="309" width="0.0139%" height="15" fill="rgb(217,108,32)" fg:x="319491" fg:w="333"/><text x="13.5775%" y="319.50"></text></g><g><title>__wake_up_common (2,092 samples, 0.09%)</title><rect x="13.2624%" y="389" width="0.0873%" height="15" fill="rgb(219,66,42)" fg:x="317930" fg:w="2092"/><text x="13.5124%" y="399.50"></text></g><g><title>autoremove_wake_function (2,052 samples, 0.09%)</title><rect x="13.2640%" y="373" width="0.0856%" height="15" fill="rgb(206,180,7)" fg:x="317970" fg:w="2052"/><text x="13.5140%" y="383.50"></text></g><g><title>try_to_wake_up (2,003 samples, 0.08%)</title><rect x="13.2661%" y="357" width="0.0836%" height="15" fill="rgb(208,226,31)" fg:x="318019" fg:w="2003"/><text x="13.5161%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (356 samples, 0.01%)</title><rect x="13.3496%" y="389" width="0.0149%" height="15" fill="rgb(218,26,49)" fg:x="320022" fg:w="356"/><text x="13.5996%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (343 samples, 0.01%)</title><rect x="13.3502%" y="373" width="0.0143%" height="15" fill="rgb(233,197,48)" fg:x="320035" fg:w="343"/><text x="13.6002%" y="383.50"></text></g><g><title>__wake_up_common_lock (2,480 samples, 0.10%)</title><rect x="13.2619%" y="405" width="0.1035%" height="15" fill="rgb(252,181,51)" fg:x="317919" fg:w="2480"/><text x="13.5119%" y="415.50"></text></g><g><title>btrfs_lookup_inode (12,866 samples, 0.54%)</title><rect x="12.8308%" y="453" width="0.5367%" height="15" fill="rgb(253,90,19)" fg:x="307585" fg:w="12866"/><text x="13.0808%" y="463.50"></text></g><g><title>btrfs_search_slot (12,821 samples, 0.53%)</title><rect x="12.8327%" y="437" width="0.5348%" height="15" fill="rgb(215,171,30)" fg:x="307630" fg:w="12821"/><text x="13.0827%" y="447.50"></text></g><g><title>unlock_up (2,621 samples, 0.11%)</title><rect x="13.2582%" y="421" width="0.1093%" height="15" fill="rgb(214,222,9)" fg:x="317830" fg:w="2621"/><text x="13.5082%" y="431.50"></text></g><g><title>__wake_up_common (361 samples, 0.02%)</title><rect x="13.3715%" y="421" width="0.0151%" height="15" fill="rgb(223,3,22)" fg:x="320546" fg:w="361"/><text x="13.6215%" y="431.50"></text></g><g><title>autoremove_wake_function (353 samples, 0.01%)</title><rect x="13.3718%" y="405" width="0.0147%" height="15" fill="rgb(225,196,46)" fg:x="320554" fg:w="353"/><text x="13.6218%" y="415.50"></text></g><g><title>try_to_wake_up (345 samples, 0.01%)</title><rect x="13.3721%" y="389" width="0.0144%" height="15" fill="rgb(209,110,37)" fg:x="320562" fg:w="345"/><text x="13.6221%" y="399.50"></text></g><g><title>__wake_up_common_lock (378 samples, 0.02%)</title><rect x="13.3714%" y="437" width="0.0158%" height="15" fill="rgb(249,89,12)" fg:x="320544" fg:w="378"/><text x="13.6214%" y="447.50"></text></g><g><title>btrfs_release_path (576 samples, 0.02%)</title><rect x="13.3709%" y="453" width="0.0240%" height="15" fill="rgb(226,27,33)" fg:x="320532" fg:w="576"/><text x="13.6209%" y="463.50"></text></g><g><title>__btrfs_update_delayed_inode (17,169 samples, 0.72%)</title><rect x="12.6913%" y="469" width="0.7162%" height="15" fill="rgb(213,82,22)" fg:x="304240" fg:w="17169"/><text x="12.9413%" y="479.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (18,421 samples, 0.77%)</title><rect x="12.6696%" y="485" width="0.7684%" height="15" fill="rgb(248,140,0)" fg:x="303720" fg:w="18421"/><text x="12.9196%" y="495.50"></text></g><g><title>start_transaction (243 samples, 0.01%)</title><rect x="13.4279%" y="469" width="0.0101%" height="15" fill="rgb(228,106,3)" fg:x="321898" fg:w="243"/><text x="13.6779%" y="479.50"></text></g><g><title>btrfs_del_items (382 samples, 0.02%)</title><rect x="13.4388%" y="469" width="0.0159%" height="15" fill="rgb(209,23,37)" fg:x="322161" fg:w="382"/><text x="13.6888%" y="479.50"></text></g><g><title>__wake_up_common (800 samples, 0.03%)</title><rect x="13.4559%" y="421" width="0.0334%" height="15" fill="rgb(241,93,50)" fg:x="322571" fg:w="800"/><text x="13.7059%" y="431.50"></text></g><g><title>autoremove_wake_function (780 samples, 0.03%)</title><rect x="13.4568%" y="405" width="0.0325%" height="15" fill="rgb(253,46,43)" fg:x="322591" fg:w="780"/><text x="13.7068%" y="415.50"></text></g><g><title>try_to_wake_up (763 samples, 0.03%)</title><rect x="13.4575%" y="389" width="0.0318%" height="15" fill="rgb(226,206,43)" fg:x="322608" fg:w="763"/><text x="13.7075%" y="399.50"></text></g><g><title>__wake_up_common_lock (824 samples, 0.03%)</title><rect x="13.4558%" y="437" width="0.0344%" height="15" fill="rgb(217,54,7)" fg:x="322568" fg:w="824"/><text x="13.7058%" y="447.50"></text></g><g><title>btrfs_free_path (1,077 samples, 0.04%)</title><rect x="13.4548%" y="469" width="0.0449%" height="15" fill="rgb(223,5,52)" fg:x="322543" fg:w="1077"/><text x="13.7048%" y="479.50"></text></g><g><title>btrfs_release_path (1,076 samples, 0.04%)</title><rect x="13.4548%" y="453" width="0.0449%" height="15" fill="rgb(206,52,46)" fg:x="322544" fg:w="1076"/><text x="13.7048%" y="463.50"></text></g><g><title>finish_wait (478 samples, 0.02%)</title><rect x="13.5141%" y="421" width="0.0199%" height="15" fill="rgb(253,136,11)" fg:x="323966" fg:w="478"/><text x="13.7641%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (457 samples, 0.02%)</title><rect x="13.5150%" y="405" width="0.0191%" height="15" fill="rgb(208,106,33)" fg:x="323987" fg:w="457"/><text x="13.7650%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (437 samples, 0.02%)</title><rect x="13.5159%" y="389" width="0.0182%" height="15" fill="rgb(206,54,4)" fg:x="324007" fg:w="437"/><text x="13.7659%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,425 samples, 0.06%)</title><rect x="13.5381%" y="405" width="0.0594%" height="15" fill="rgb(213,3,15)" fg:x="324540" fg:w="1425"/><text x="13.7881%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,363 samples, 0.06%)</title><rect x="13.5407%" y="389" width="0.0569%" height="15" fill="rgb(252,211,39)" fg:x="324602" fg:w="1363"/><text x="13.7907%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,548 samples, 0.06%)</title><rect x="13.5341%" y="421" width="0.0646%" height="15" fill="rgb(223,6,36)" fg:x="324444" fg:w="1548"/><text x="13.7841%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (879 samples, 0.04%)</title><rect x="13.5987%" y="421" width="0.0367%" height="15" fill="rgb(252,169,45)" fg:x="325992" fg:w="879"/><text x="13.8487%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (635 samples, 0.03%)</title><rect x="13.6088%" y="405" width="0.0265%" height="15" fill="rgb(212,48,26)" fg:x="326236" fg:w="635"/><text x="13.8588%" y="415.50"></text></g><g><title>dequeue_task_fair (248 samples, 0.01%)</title><rect x="13.6394%" y="389" width="0.0103%" height="15" fill="rgb(251,102,48)" fg:x="326969" fg:w="248"/><text x="13.8894%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (498 samples, 0.02%)</title><rect x="13.6516%" y="373" width="0.0208%" height="15" fill="rgb(243,208,16)" fg:x="327261" fg:w="498"/><text x="13.9016%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (492 samples, 0.02%)</title><rect x="13.6518%" y="357" width="0.0205%" height="15" fill="rgb(219,96,24)" fg:x="327267" fg:w="492"/><text x="13.9018%" y="367.50"></text></g><g><title>native_write_msr (490 samples, 0.02%)</title><rect x="13.6519%" y="341" width="0.0204%" height="15" fill="rgb(219,33,29)" fg:x="327269" fg:w="490"/><text x="13.9019%" y="351.50"></text></g><g><title>finish_task_switch (560 samples, 0.02%)</title><rect x="13.6498%" y="389" width="0.0234%" height="15" fill="rgb(223,176,5)" fg:x="327217" fg:w="560"/><text x="13.8998%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (4,256 samples, 0.18%)</title><rect x="13.5078%" y="437" width="0.1775%" height="15" fill="rgb(228,140,14)" fg:x="323815" fg:w="4256"/><text x="13.7578%" y="447.50"></text></g><g><title>schedule (1,200 samples, 0.05%)</title><rect x="13.6353%" y="421" width="0.0501%" height="15" fill="rgb(217,179,31)" fg:x="326871" fg:w="1200"/><text x="13.8853%" y="431.50"></text></g><g><title>__schedule (1,190 samples, 0.05%)</title><rect x="13.6357%" y="405" width="0.0496%" height="15" fill="rgb(230,9,30)" fg:x="326881" fg:w="1190"/><text x="13.8857%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (4,354 samples, 0.18%)</title><rect x="13.5072%" y="453" width="0.1816%" height="15" fill="rgb(230,136,20)" fg:x="323799" fg:w="4354"/><text x="13.7572%" y="463.50"></text></g><g><title>__btrfs_tree_lock (502 samples, 0.02%)</title><rect x="13.6888%" y="453" width="0.0209%" height="15" fill="rgb(215,210,22)" fg:x="328153" fg:w="502"/><text x="13.9388%" y="463.50"></text></g><g><title>schedule (442 samples, 0.02%)</title><rect x="13.6913%" y="437" width="0.0184%" height="15" fill="rgb(218,43,5)" fg:x="328213" fg:w="442"/><text x="13.9413%" y="447.50"></text></g><g><title>__schedule (438 samples, 0.02%)</title><rect x="13.6915%" y="421" width="0.0183%" height="15" fill="rgb(216,11,5)" fg:x="328217" fg:w="438"/><text x="13.9415%" y="431.50"></text></g><g><title>finish_wait (414 samples, 0.02%)</title><rect x="13.7188%" y="421" width="0.0173%" height="15" fill="rgb(209,82,29)" fg:x="328871" fg:w="414"/><text x="13.9688%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (394 samples, 0.02%)</title><rect x="13.7196%" y="405" width="0.0164%" height="15" fill="rgb(244,115,12)" fg:x="328891" fg:w="394"/><text x="13.9696%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (371 samples, 0.02%)</title><rect x="13.7205%" y="389" width="0.0155%" height="15" fill="rgb(222,82,18)" fg:x="328914" fg:w="371"/><text x="13.9705%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,077 samples, 0.04%)</title><rect x="13.7416%" y="405" width="0.0449%" height="15" fill="rgb(249,227,8)" fg:x="329419" fg:w="1077"/><text x="13.9916%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,004 samples, 0.04%)</title><rect x="13.7447%" y="389" width="0.0419%" height="15" fill="rgb(253,141,45)" fg:x="329492" fg:w="1004"/><text x="13.9947%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,226 samples, 0.05%)</title><rect x="13.7364%" y="421" width="0.0511%" height="15" fill="rgb(234,184,4)" fg:x="329295" fg:w="1226"/><text x="13.9864%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,593 samples, 0.07%)</title><rect x="13.7876%" y="421" width="0.0665%" height="15" fill="rgb(218,194,23)" fg:x="330521" fg:w="1593"/><text x="14.0376%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (783 samples, 0.03%)</title><rect x="13.8214%" y="405" width="0.0327%" height="15" fill="rgb(235,66,41)" fg:x="331331" fg:w="783"/><text x="14.0714%" y="415.50"></text></g><g><title>dequeue_entity (262 samples, 0.01%)</title><rect x="13.8627%" y="373" width="0.0109%" height="15" fill="rgb(245,217,1)" fg:x="332322" fg:w="262"/><text x="14.1127%" y="383.50"></text></g><g><title>dequeue_task_fair (316 samples, 0.01%)</title><rect x="13.8615%" y="389" width="0.0132%" height="15" fill="rgb(229,91,1)" fg:x="332292" fg:w="316"/><text x="14.1115%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (604 samples, 0.03%)</title><rect x="13.8774%" y="373" width="0.0252%" height="15" fill="rgb(207,101,30)" fg:x="332673" fg:w="604"/><text x="14.1274%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (586 samples, 0.02%)</title><rect x="13.8781%" y="357" width="0.0244%" height="15" fill="rgb(223,82,49)" fg:x="332691" fg:w="586"/><text x="14.1281%" y="367.50"></text></g><g><title>native_write_msr (584 samples, 0.02%)</title><rect x="13.8782%" y="341" width="0.0244%" height="15" fill="rgb(218,167,17)" fg:x="332693" fg:w="584"/><text x="14.1282%" y="351.50"></text></g><g><title>finish_task_switch (702 samples, 0.03%)</title><rect x="13.8746%" y="389" width="0.0293%" height="15" fill="rgb(208,103,14)" fg:x="332608" fg:w="702"/><text x="14.1246%" y="399.50"></text></g><g><title>__btrfs_tree_lock (5,035 samples, 0.21%)</title><rect x="13.7107%" y="437" width="0.2100%" height="15" fill="rgb(238,20,8)" fg:x="328677" fg:w="5035"/><text x="13.9607%" y="447.50"></text></g><g><title>schedule (1,598 samples, 0.07%)</title><rect x="13.8540%" y="421" width="0.0667%" height="15" fill="rgb(218,80,54)" fg:x="332114" fg:w="1598"/><text x="14.1040%" y="431.50"></text></g><g><title>__schedule (1,582 samples, 0.07%)</title><rect x="13.8547%" y="405" width="0.0660%" height="15" fill="rgb(240,144,17)" fg:x="332130" fg:w="1582"/><text x="14.1047%" y="415.50"></text></g><g><title>btrfs_lock_root_node (5,080 samples, 0.21%)</title><rect x="13.7104%" y="453" width="0.2119%" height="15" fill="rgb(245,27,50)" fg:x="328670" fg:w="5080"/><text x="13.9604%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (313 samples, 0.01%)</title><rect x="13.9282%" y="453" width="0.0131%" height="15" fill="rgb(251,51,7)" fg:x="333891" fg:w="313"/><text x="14.1782%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (250 samples, 0.01%)</title><rect x="13.9308%" y="437" width="0.0104%" height="15" fill="rgb(245,217,29)" fg:x="333954" fg:w="250"/><text x="14.1808%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (381 samples, 0.02%)</title><rect x="13.9431%" y="453" width="0.0159%" height="15" fill="rgb(221,176,29)" fg:x="334249" fg:w="381"/><text x="14.1931%" y="463.50"></text></g><g><title>find_extent_buffer (532 samples, 0.02%)</title><rect x="13.9695%" y="437" width="0.0222%" height="15" fill="rgb(212,180,24)" fg:x="334882" fg:w="532"/><text x="14.2195%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (843 samples, 0.04%)</title><rect x="13.9590%" y="453" width="0.0352%" height="15" fill="rgb(254,24,2)" fg:x="334630" fg:w="843"/><text x="14.2090%" y="463.50"></text></g><g><title>enqueue_task_fair (240 samples, 0.01%)</title><rect x="14.0162%" y="357" width="0.0100%" height="15" fill="rgb(230,100,2)" fg:x="336002" fg:w="240"/><text x="14.2662%" y="367.50"></text></g><g><title>ttwu_do_activate (469 samples, 0.02%)</title><rect x="14.0158%" y="373" width="0.0196%" height="15" fill="rgb(219,142,25)" fg:x="335992" fg:w="469"/><text x="14.2658%" y="383.50"></text></g><g><title>__wake_up_common (1,013 samples, 0.04%)</title><rect x="13.9972%" y="421" width="0.0423%" height="15" fill="rgb(240,73,43)" fg:x="335545" fg:w="1013"/><text x="14.2472%" y="431.50"></text></g><g><title>autoremove_wake_function (1,001 samples, 0.04%)</title><rect x="13.9977%" y="405" width="0.0418%" height="15" fill="rgb(214,114,15)" fg:x="335557" fg:w="1001"/><text x="14.2477%" y="415.50"></text></g><g><title>try_to_wake_up (966 samples, 0.04%)</title><rect x="13.9991%" y="389" width="0.0403%" height="15" fill="rgb(207,130,4)" fg:x="335592" fg:w="966"/><text x="14.2491%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,042 samples, 0.04%)</title><rect x="13.9971%" y="437" width="0.0435%" height="15" fill="rgb(221,25,40)" fg:x="335544" fg:w="1042"/><text x="14.2471%" y="447.50"></text></g><g><title>btrfs_search_slot (13,013 samples, 0.54%)</title><rect x="13.4997%" y="469" width="0.5428%" height="15" fill="rgb(241,184,7)" fg:x="323620" fg:w="13013"/><text x="13.7497%" y="479.50"></text></g><g><title>unlock_up (1,157 samples, 0.05%)</title><rect x="13.9943%" y="453" width="0.0483%" height="15" fill="rgb(235,159,4)" fg:x="335476" fg:w="1157"/><text x="14.2443%" y="463.50"></text></g><g><title>btrfs_del_orphan_item (14,632 samples, 0.61%)</title><rect x="13.4380%" y="485" width="0.6104%" height="15" fill="rgb(214,87,48)" fg:x="322141" fg:w="14632"/><text x="13.6880%" y="495.50"></text></g><g><title>clear_state_bit (301 samples, 0.01%)</title><rect x="14.0825%" y="453" width="0.0126%" height="15" fill="rgb(246,198,24)" fg:x="337590" fg:w="301"/><text x="14.3325%" y="463.50"></text></g><g><title>__clear_extent_bit (592 samples, 0.02%)</title><rect x="14.0727%" y="469" width="0.0247%" height="15" fill="rgb(209,66,40)" fg:x="337357" fg:w="592"/><text x="14.3227%" y="479.50"></text></g><g><title>steal_from_bitmap.part.0 (264 samples, 0.01%)</title><rect x="14.1125%" y="405" width="0.0110%" height="15" fill="rgb(233,147,39)" fg:x="338311" fg:w="264"/><text x="14.3625%" y="415.50"></text></g><g><title>__btrfs_add_free_space (350 samples, 0.01%)</title><rect x="14.1107%" y="421" width="0.0146%" height="15" fill="rgb(231,145,52)" fg:x="338266" fg:w="350"/><text x="14.3607%" y="431.50"></text></g><g><title>btrfs_free_tree_block (497 samples, 0.02%)</title><rect x="14.1106%" y="437" width="0.0207%" height="15" fill="rgb(206,20,26)" fg:x="338264" fg:w="497"/><text x="14.3606%" y="447.50"></text></g><g><title>btrfs_del_leaf (558 samples, 0.02%)</title><rect x="14.1104%" y="453" width="0.0233%" height="15" fill="rgb(238,220,4)" fg:x="338260" fg:w="558"/><text x="14.3604%" y="463.50"></text></g><g><title>btrfs_get_token_32 (1,034 samples, 0.04%)</title><rect x="14.1376%" y="453" width="0.0431%" height="15" fill="rgb(252,195,42)" fg:x="338912" fg:w="1034"/><text x="14.3876%" y="463.50"></text></g><g><title>btrfs_set_token_32 (806 samples, 0.03%)</title><rect x="14.1835%" y="453" width="0.0336%" height="15" fill="rgb(209,10,6)" fg:x="340011" fg:w="806"/><text x="14.4335%" y="463.50"></text></g><g><title>memmove_extent_buffer (534 samples, 0.02%)</title><rect x="14.2268%" y="453" width="0.0223%" height="15" fill="rgb(229,3,52)" fg:x="341049" fg:w="534"/><text x="14.4768%" y="463.50"></text></g><g><title>memmove (395 samples, 0.02%)</title><rect x="14.2326%" y="437" width="0.0165%" height="15" fill="rgb(253,49,37)" fg:x="341188" fg:w="395"/><text x="14.4826%" y="447.50"></text></g><g><title>btrfs_del_items (4,057 samples, 0.17%)</title><rect x="14.0976%" y="469" width="0.1692%" height="15" fill="rgb(240,103,49)" fg:x="337953" fg:w="4057"/><text x="14.3476%" y="479.50"></text></g><g><title>btrfs_drop_extent_cache (454 samples, 0.02%)</title><rect x="14.2668%" y="469" width="0.0189%" height="15" fill="rgb(250,182,30)" fg:x="342010" fg:w="454"/><text x="14.5168%" y="479.50"></text></g><g><title>ttwu_do_activate (291 samples, 0.01%)</title><rect x="14.3003%" y="373" width="0.0121%" height="15" fill="rgb(248,8,30)" fg:x="342813" fg:w="291"/><text x="14.5503%" y="383.50"></text></g><g><title>__wake_up_common (695 samples, 0.03%)</title><rect x="14.2871%" y="421" width="0.0290%" height="15" fill="rgb(237,120,30)" fg:x="342496" fg:w="695"/><text x="14.5371%" y="431.50"></text></g><g><title>autoremove_wake_function (680 samples, 0.03%)</title><rect x="14.2877%" y="405" width="0.0284%" height="15" fill="rgb(221,146,34)" fg:x="342511" fg:w="680"/><text x="14.5377%" y="415.50"></text></g><g><title>try_to_wake_up (670 samples, 0.03%)</title><rect x="14.2882%" y="389" width="0.0279%" height="15" fill="rgb(242,55,13)" fg:x="342521" fg:w="670"/><text x="14.5382%" y="399.50"></text></g><g><title>__wake_up_common_lock (716 samples, 0.03%)</title><rect x="14.2871%" y="437" width="0.0299%" height="15" fill="rgb(242,112,31)" fg:x="342495" fg:w="716"/><text x="14.5371%" y="447.50"></text></g><g><title>btrfs_free_path (949 samples, 0.04%)</title><rect x="14.2858%" y="469" width="0.0396%" height="15" fill="rgb(249,192,27)" fg:x="342464" fg:w="949"/><text x="14.5358%" y="479.50"></text></g><g><title>btrfs_release_path (947 samples, 0.04%)</title><rect x="14.2859%" y="453" width="0.0395%" height="15" fill="rgb(208,204,44)" fg:x="342466" fg:w="947"/><text x="14.5359%" y="463.50"></text></g><g><title>_raw_spin_lock (245 samples, 0.01%)</title><rect x="14.3355%" y="421" width="0.0102%" height="15" fill="rgb(208,93,54)" fg:x="343655" fg:w="245"/><text x="14.5855%" y="431.50"></text></g><g><title>btrfs_block_rsv_release (347 samples, 0.01%)</title><rect x="14.3330%" y="437" width="0.0145%" height="15" fill="rgb(242,1,31)" fg:x="343597" fg:w="347"/><text x="14.5830%" y="447.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (431 samples, 0.02%)</title><rect x="14.3475%" y="437" width="0.0180%" height="15" fill="rgb(241,83,25)" fg:x="343944" fg:w="431"/><text x="14.5975%" y="447.50"></text></g><g><title>kfree (299 samples, 0.01%)</title><rect x="14.3655%" y="437" width="0.0125%" height="15" fill="rgb(205,169,50)" fg:x="344375" fg:w="299"/><text x="14.6155%" y="447.50"></text></g><g><title>__btrfs_kill_delayed_node (1,207 samples, 0.05%)</title><rect x="14.3304%" y="453" width="0.0503%" height="15" fill="rgb(239,186,37)" fg:x="343533" fg:w="1207"/><text x="14.5804%" y="463.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,273 samples, 0.05%)</title><rect x="14.3295%" y="469" width="0.0531%" height="15" fill="rgb(205,221,10)" fg:x="343512" fg:w="1273"/><text x="14.5795%" y="479.50"></text></g><g><title>finish_wait (406 samples, 0.02%)</title><rect x="14.4006%" y="421" width="0.0169%" height="15" fill="rgb(218,196,15)" fg:x="345217" fg:w="406"/><text x="14.6506%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (392 samples, 0.02%)</title><rect x="14.4012%" y="405" width="0.0164%" height="15" fill="rgb(218,196,35)" fg:x="345231" fg:w="392"/><text x="14.6512%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (376 samples, 0.02%)</title><rect x="14.4019%" y="389" width="0.0157%" height="15" fill="rgb(233,63,24)" fg:x="345247" fg:w="376"/><text x="14.6519%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (1,077 samples, 0.04%)</title><rect x="14.4213%" y="405" width="0.0449%" height="15" fill="rgb(225,8,4)" fg:x="345713" fg:w="1077"/><text x="14.6713%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,027 samples, 0.04%)</title><rect x="14.4234%" y="389" width="0.0428%" height="15" fill="rgb(234,105,35)" fg:x="345763" fg:w="1027"/><text x="14.6734%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,184 samples, 0.05%)</title><rect x="14.4176%" y="421" width="0.0494%" height="15" fill="rgb(236,21,32)" fg:x="345624" fg:w="1184"/><text x="14.6676%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (1,010 samples, 0.04%)</title><rect x="14.4670%" y="421" width="0.0421%" height="15" fill="rgb(228,109,6)" fg:x="346808" fg:w="1010"/><text x="14.7170%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (735 samples, 0.03%)</title><rect x="14.4785%" y="405" width="0.0307%" height="15" fill="rgb(229,215,31)" fg:x="347083" fg:w="735"/><text x="14.7285%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (397 samples, 0.02%)</title><rect x="14.5238%" y="373" width="0.0166%" height="15" fill="rgb(221,52,54)" fg:x="348170" fg:w="397"/><text x="14.7738%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (390 samples, 0.02%)</title><rect x="14.5241%" y="357" width="0.0163%" height="15" fill="rgb(252,129,43)" fg:x="348177" fg:w="390"/><text x="14.7741%" y="367.50"></text></g><g><title>native_write_msr (386 samples, 0.02%)</title><rect x="14.5243%" y="341" width="0.0161%" height="15" fill="rgb(248,183,27)" fg:x="348181" fg:w="386"/><text x="14.7743%" y="351.50"></text></g><g><title>finish_task_switch (443 samples, 0.02%)</title><rect x="14.5224%" y="389" width="0.0185%" height="15" fill="rgb(250,0,22)" fg:x="348136" fg:w="443"/><text x="14.7724%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (3,780 samples, 0.16%)</title><rect x="14.3945%" y="437" width="0.1577%" height="15" fill="rgb(213,166,10)" fg:x="345070" fg:w="3780"/><text x="14.6445%" y="447.50"></text></g><g><title>schedule (1,032 samples, 0.04%)</title><rect x="14.5091%" y="421" width="0.0430%" height="15" fill="rgb(207,163,36)" fg:x="347818" fg:w="1032"/><text x="14.7591%" y="431.50"></text></g><g><title>__schedule (1,021 samples, 0.04%)</title><rect x="14.5096%" y="405" width="0.0426%" height="15" fill="rgb(208,122,22)" fg:x="347829" fg:w="1021"/><text x="14.7596%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (3,881 samples, 0.16%)</title><rect x="14.3941%" y="453" width="0.1619%" height="15" fill="rgb(207,104,49)" fg:x="345061" fg:w="3881"/><text x="14.6441%" y="463.50"></text></g><g><title>__btrfs_tree_lock (406 samples, 0.02%)</title><rect x="14.5560%" y="453" width="0.0169%" height="15" fill="rgb(248,211,50)" fg:x="348942" fg:w="406"/><text x="14.8060%" y="463.50"></text></g><g><title>schedule (361 samples, 0.02%)</title><rect x="14.5579%" y="437" width="0.0151%" height="15" fill="rgb(217,13,45)" fg:x="348987" fg:w="361"/><text x="14.8079%" y="447.50"></text></g><g><title>__schedule (356 samples, 0.01%)</title><rect x="14.5581%" y="421" width="0.0149%" height="15" fill="rgb(211,216,49)" fg:x="348992" fg:w="356"/><text x="14.8081%" y="431.50"></text></g><g><title>finish_wait (396 samples, 0.02%)</title><rect x="14.5847%" y="421" width="0.0165%" height="15" fill="rgb(221,58,53)" fg:x="349631" fg:w="396"/><text x="14.8347%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (374 samples, 0.02%)</title><rect x="14.5857%" y="405" width="0.0156%" height="15" fill="rgb(220,112,41)" fg:x="349653" fg:w="374"/><text x="14.8357%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (347 samples, 0.01%)</title><rect x="14.5868%" y="389" width="0.0145%" height="15" fill="rgb(236,38,28)" fg:x="349680" fg:w="347"/><text x="14.8368%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (960 samples, 0.04%)</title><rect x="14.6063%" y="405" width="0.0400%" height="15" fill="rgb(227,195,22)" fg:x="350147" fg:w="960"/><text x="14.8563%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (896 samples, 0.04%)</title><rect x="14.6089%" y="389" width="0.0374%" height="15" fill="rgb(214,55,33)" fg:x="350211" fg:w="896"/><text x="14.8589%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,097 samples, 0.05%)</title><rect x="14.6014%" y="421" width="0.0458%" height="15" fill="rgb(248,80,13)" fg:x="350030" fg:w="1097"/><text x="14.8514%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,631 samples, 0.07%)</title><rect x="14.6472%" y="421" width="0.0680%" height="15" fill="rgb(238,52,6)" fg:x="351127" fg:w="1631"/><text x="14.8972%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (816 samples, 0.03%)</title><rect x="14.6812%" y="405" width="0.0340%" height="15" fill="rgb(224,198,47)" fg:x="351942" fg:w="816"/><text x="14.9312%" y="415.50"></text></g><g><title>dequeue_entity (255 samples, 0.01%)</title><rect x="14.7231%" y="373" width="0.0106%" height="15" fill="rgb(233,171,20)" fg:x="352948" fg:w="255"/><text x="14.9731%" y="383.50"></text></g><g><title>dequeue_task_fair (304 samples, 0.01%)</title><rect x="14.7219%" y="389" width="0.0127%" height="15" fill="rgb(241,30,25)" fg:x="352920" fg:w="304"/><text x="14.9719%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (510 samples, 0.02%)</title><rect x="14.7369%" y="373" width="0.0213%" height="15" fill="rgb(207,171,38)" fg:x="353279" fg:w="510"/><text x="14.9869%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (493 samples, 0.02%)</title><rect x="14.7376%" y="357" width="0.0206%" height="15" fill="rgb(234,70,1)" fg:x="353296" fg:w="493"/><text x="14.9876%" y="367.50"></text></g><g><title>native_write_msr (488 samples, 0.02%)</title><rect x="14.7378%" y="341" width="0.0204%" height="15" fill="rgb(232,178,18)" fg:x="353301" fg:w="488"/><text x="14.9878%" y="351.50"></text></g><g><title>finish_task_switch (589 samples, 0.02%)</title><rect x="14.7346%" y="389" width="0.0246%" height="15" fill="rgb(241,78,40)" fg:x="353224" fg:w="589"/><text x="14.9846%" y="399.50"></text></g><g><title>__btrfs_tree_lock (4,767 samples, 0.20%)</title><rect x="14.5765%" y="437" width="0.1989%" height="15" fill="rgb(222,35,25)" fg:x="349434" fg:w="4767"/><text x="14.8265%" y="447.50"></text></g><g><title>schedule (1,443 samples, 0.06%)</title><rect x="14.7152%" y="421" width="0.0602%" height="15" fill="rgb(207,92,16)" fg:x="352758" fg:w="1443"/><text x="14.9652%" y="431.50"></text></g><g><title>__schedule (1,426 samples, 0.06%)</title><rect x="14.7159%" y="405" width="0.0595%" height="15" fill="rgb(216,59,51)" fg:x="352775" fg:w="1426"/><text x="14.9659%" y="415.50"></text></g><g><title>btrfs_lock_root_node (4,823 samples, 0.20%)</title><rect x="14.5764%" y="453" width="0.2012%" height="15" fill="rgb(213,80,28)" fg:x="349431" fg:w="4823"/><text x="14.8264%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (390 samples, 0.02%)</title><rect x="14.7850%" y="453" width="0.0163%" height="15" fill="rgb(220,93,7)" fg:x="354431" fg:w="390"/><text x="15.0350%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (352 samples, 0.01%)</title><rect x="14.7866%" y="437" width="0.0147%" height="15" fill="rgb(225,24,44)" fg:x="354469" fg:w="352"/><text x="15.0366%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (403 samples, 0.02%)</title><rect x="14.8035%" y="453" width="0.0168%" height="15" fill="rgb(243,74,40)" fg:x="354876" fg:w="403"/><text x="15.0535%" y="463.50"></text></g><g><title>find_extent_buffer (413 samples, 0.02%)</title><rect x="14.8301%" y="437" width="0.0172%" height="15" fill="rgb(228,39,7)" fg:x="355513" fg:w="413"/><text x="15.0801%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (725 samples, 0.03%)</title><rect x="14.8204%" y="453" width="0.0302%" height="15" fill="rgb(227,79,8)" fg:x="355279" fg:w="725"/><text x="15.0704%" y="463.50"></text></g><g><title>reada_for_balance (290 samples, 0.01%)</title><rect x="14.8506%" y="453" width="0.0121%" height="15" fill="rgb(236,58,11)" fg:x="356004" fg:w="290"/><text x="15.1006%" y="463.50"></text></g><g><title>select_task_rq_fair (316 samples, 0.01%)</title><rect x="14.9000%" y="373" width="0.0132%" height="15" fill="rgb(249,63,35)" fg:x="357188" fg:w="316"/><text x="15.1500%" y="383.50"></text></g><g><title>enqueue_entity (297 samples, 0.01%)</title><rect x="14.9180%" y="341" width="0.0124%" height="15" fill="rgb(252,114,16)" fg:x="357619" fg:w="297"/><text x="15.1680%" y="351.50"></text></g><g><title>enqueue_task_fair (388 samples, 0.02%)</title><rect x="14.9153%" y="357" width="0.0162%" height="15" fill="rgb(254,151,24)" fg:x="357554" fg:w="388"/><text x="15.1653%" y="367.50"></text></g><g><title>ttwu_do_activate (796 samples, 0.03%)</title><rect x="14.9142%" y="373" width="0.0332%" height="15" fill="rgb(253,54,39)" fg:x="357529" fg:w="796"/><text x="15.1642%" y="383.50"></text></g><g><title>psi_task_change (383 samples, 0.02%)</title><rect x="14.9314%" y="357" width="0.0160%" height="15" fill="rgb(243,25,45)" fg:x="357942" fg:w="383"/><text x="15.1814%" y="367.50"></text></g><g><title>psi_group_change (337 samples, 0.01%)</title><rect x="14.9334%" y="341" width="0.0141%" height="15" fill="rgb(234,134,9)" fg:x="357988" fg:w="337"/><text x="15.1834%" y="351.50"></text></g><g><title>__wake_up_common (2,140 samples, 0.09%)</title><rect x="14.8669%" y="421" width="0.0893%" height="15" fill="rgb(227,166,31)" fg:x="356396" fg:w="2140"/><text x="15.1169%" y="431.50"></text></g><g><title>autoremove_wake_function (2,100 samples, 0.09%)</title><rect x="14.8686%" y="405" width="0.0876%" height="15" fill="rgb(245,143,41)" fg:x="356436" fg:w="2100"/><text x="15.1186%" y="415.50"></text></g><g><title>try_to_wake_up (2,047 samples, 0.09%)</title><rect x="14.8708%" y="389" width="0.0854%" height="15" fill="rgb(238,181,32)" fg:x="356489" fg:w="2047"/><text x="15.1208%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (341 samples, 0.01%)</title><rect x="14.9562%" y="421" width="0.0142%" height="15" fill="rgb(224,113,18)" fg:x="358536" fg:w="341"/><text x="15.2062%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (320 samples, 0.01%)</title><rect x="14.9571%" y="405" width="0.0133%" height="15" fill="rgb(240,229,28)" fg:x="358557" fg:w="320"/><text x="15.2071%" y="415.50"></text></g><g><title>__wake_up_common_lock (2,503 samples, 0.10%)</title><rect x="14.8667%" y="437" width="0.1044%" height="15" fill="rgb(250,185,3)" fg:x="356391" fg:w="2503"/><text x="15.1167%" y="447.50"></text></g><g><title>btrfs_search_slot (14,105 samples, 0.59%)</title><rect x="14.3848%" y="469" width="0.5884%" height="15" fill="rgb(212,59,25)" fg:x="344838" fg:w="14105"/><text x="14.6348%" y="479.50"></text></g><g><title>unlock_up (2,637 samples, 0.11%)</title><rect x="14.8632%" y="453" width="0.1100%" height="15" fill="rgb(221,87,20)" fg:x="356306" fg:w="2637"/><text x="15.1132%" y="463.50"></text></g><g><title>lock_extent_bits (453 samples, 0.02%)</title><rect x="14.9788%" y="469" width="0.0189%" height="15" fill="rgb(213,74,28)" fg:x="359078" fg:w="453"/><text x="15.2288%" y="479.50"></text></g><g><title>__set_extent_bit (425 samples, 0.02%)</title><rect x="14.9800%" y="453" width="0.0177%" height="15" fill="rgb(224,132,34)" fg:x="359106" fg:w="425"/><text x="15.2300%" y="463.50"></text></g><g><title>btrfs_truncate_inode_items (22,738 samples, 0.95%)</title><rect x="14.0558%" y="485" width="0.9485%" height="15" fill="rgb(222,101,24)" fg:x="336950" fg:w="22738"/><text x="14.3058%" y="495.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (288 samples, 0.01%)</title><rect x="15.0245%" y="421" width="0.0120%" height="15" fill="rgb(254,142,4)" fg:x="360174" fg:w="288"/><text x="15.2745%" y="431.50"></text></g><g><title>btrfs_block_rsv_refill (877 samples, 0.04%)</title><rect x="15.0104%" y="469" width="0.0366%" height="15" fill="rgb(230,229,49)" fg:x="359836" fg:w="877"/><text x="15.2604%" y="479.50"></text></g><g><title>btrfs_reserve_metadata_bytes (745 samples, 0.03%)</title><rect x="15.0160%" y="453" width="0.0311%" height="15" fill="rgb(238,70,47)" fg:x="359968" fg:w="745"/><text x="15.2660%" y="463.50"></text></g><g><title>__reserve_bytes (719 samples, 0.03%)</title><rect x="15.0170%" y="437" width="0.0300%" height="15" fill="rgb(231,160,17)" fg:x="359994" fg:w="719"/><text x="15.2670%" y="447.50"></text></g><g><title>calc_available_free_space.isra.0 (251 samples, 0.01%)</title><rect x="15.0366%" y="421" width="0.0105%" height="15" fill="rgb(218,68,53)" fg:x="360462" fg:w="251"/><text x="15.2866%" y="431.50"></text></g><g><title>evict_refill_and_join (1,494 samples, 0.06%)</title><rect x="15.0043%" y="485" width="0.0623%" height="15" fill="rgb(236,111,10)" fg:x="359688" fg:w="1494"/><text x="15.2543%" y="495.50"></text></g><g><title>start_transaction (451 samples, 0.02%)</title><rect x="15.0478%" y="469" width="0.0188%" height="15" fill="rgb(224,34,41)" fg:x="360731" fg:w="451"/><text x="15.2978%" y="479.50"></text></g><g><title>btrfs_evict_inode (59,753 samples, 2.49%)</title><rect x="12.5902%" y="501" width="2.4926%" height="15" fill="rgb(241,118,19)" fg:x="301817" fg:w="59753"/><text x="12.8402%" y="511.50">bt..</text></g><g><title>evict (60,107 samples, 2.51%)</title><rect x="12.5792%" y="517" width="2.5073%" height="15" fill="rgb(238,129,25)" fg:x="301553" fg:w="60107"/><text x="12.8292%" y="527.50">ev..</text></g><g><title>_raw_spin_lock (307 samples, 0.01%)</title><rect x="15.1255%" y="485" width="0.0128%" height="15" fill="rgb(238,22,31)" fg:x="362594" fg:w="307"/><text x="15.3755%" y="495.50"></text></g><g><title>__list_del_entry_valid (570 samples, 0.02%)</title><rect x="15.1628%" y="437" width="0.0238%" height="15" fill="rgb(222,174,48)" fg:x="363488" fg:w="570"/><text x="15.4128%" y="447.50"></text></g><g><title>_raw_spin_lock (297 samples, 0.01%)</title><rect x="15.1866%" y="437" width="0.0124%" height="15" fill="rgb(206,152,40)" fg:x="364058" fg:w="297"/><text x="15.4366%" y="447.50"></text></g><g><title>d_lru_del (2,098 samples, 0.09%)</title><rect x="15.1423%" y="469" width="0.0875%" height="15" fill="rgb(218,99,54)" fg:x="362997" fg:w="2098"/><text x="15.3923%" y="479.50"></text></g><g><title>list_lru_del (2,042 samples, 0.09%)</title><rect x="15.1446%" y="453" width="0.0852%" height="15" fill="rgb(220,174,26)" fg:x="363053" fg:w="2042"/><text x="15.3946%" y="463.50"></text></g><g><title>mem_cgroup_from_obj (737 samples, 0.03%)</title><rect x="15.1991%" y="437" width="0.0307%" height="15" fill="rgb(245,116,9)" fg:x="364358" fg:w="737"/><text x="15.4491%" y="447.50"></text></g><g><title>d_walk (3,184 samples, 0.13%)</title><rect x="15.0998%" y="501" width="0.1328%" height="15" fill="rgb(209,72,35)" fg:x="361977" fg:w="3184"/><text x="15.3498%" y="511.50"></text></g><g><title>select_collect (2,255 samples, 0.09%)</title><rect x="15.1385%" y="485" width="0.0941%" height="15" fill="rgb(226,126,21)" fg:x="362906" fg:w="2255"/><text x="15.3885%" y="495.50"></text></g><g><title>___d_drop (1,292 samples, 0.05%)</title><rect x="15.2410%" y="469" width="0.0539%" height="15" fill="rgb(227,192,1)" fg:x="365362" fg:w="1292"/><text x="15.4910%" y="479.50"></text></g><g><title>call_rcu (809 samples, 0.03%)</title><rect x="15.3029%" y="469" width="0.0337%" height="15" fill="rgb(237,180,29)" fg:x="366846" fg:w="809"/><text x="15.5529%" y="479.50"></text></g><g><title>rcu_segcblist_enqueue (436 samples, 0.02%)</title><rect x="15.3184%" y="453" width="0.0182%" height="15" fill="rgb(230,197,35)" fg:x="367219" fg:w="436"/><text x="15.5684%" y="463.50"></text></g><g><title>__dentry_kill (2,472 samples, 0.10%)</title><rect x="15.2354%" y="485" width="0.1031%" height="15" fill="rgb(246,193,31)" fg:x="365229" fg:w="2472"/><text x="15.4854%" y="495.50"></text></g><g><title>__dput_to_list (258 samples, 0.01%)</title><rect x="15.3385%" y="485" width="0.0108%" height="15" fill="rgb(241,36,4)" fg:x="367701" fg:w="258"/><text x="15.5885%" y="495.50"></text></g><g><title>shrink_dcache_parent (6,675 samples, 0.28%)</title><rect x="15.0973%" y="517" width="0.2784%" height="15" fill="rgb(241,130,17)" fg:x="361918" fg:w="6675"/><text x="15.3473%" y="527.50"></text></g><g><title>shrink_dentry_list (3,432 samples, 0.14%)</title><rect x="15.2326%" y="501" width="0.1432%" height="15" fill="rgb(206,137,32)" fg:x="365161" fg:w="3432"/><text x="15.4826%" y="511.50"></text></g><g><title>shrink_lock_dentry.part.0 (243 samples, 0.01%)</title><rect x="15.3656%" y="485" width="0.0101%" height="15" fill="rgb(237,228,51)" fg:x="368350" fg:w="243"/><text x="15.6156%" y="495.50"></text></g><g><title>do_rmdir (105,440 samples, 4.40%)</title><rect x="10.9786%" y="549" width="4.3984%" height="15" fill="rgb(243,6,42)" fg:x="263183" fg:w="105440"/><text x="11.2286%" y="559.50">do_rm..</text></g><g><title>vfs_rmdir.part.0 (103,172 samples, 4.30%)</title><rect x="11.0732%" y="533" width="4.3038%" height="15" fill="rgb(251,74,28)" fg:x="265451" fg:w="103172"/><text x="11.3232%" y="543.50">vfs_r..</text></g><g><title>_raw_spin_lock (336 samples, 0.01%)</title><rect x="15.5760%" y="469" width="0.0140%" height="15" fill="rgb(218,20,49)" fg:x="373393" fg:w="336"/><text x="15.8260%" y="479.50"></text></g><g><title>__d_lookup (3,424 samples, 0.14%)</title><rect x="15.4487%" y="485" width="0.1428%" height="15" fill="rgb(238,28,14)" fg:x="370341" fg:w="3424"/><text x="15.6987%" y="495.50"></text></g><g><title>__lookup_hash (4,069 samples, 0.17%)</title><rect x="15.4219%" y="533" width="0.1697%" height="15" fill="rgb(229,40,46)" fg:x="369700" fg:w="4069"/><text x="15.6719%" y="543.50"></text></g><g><title>lookup_dcache (3,813 samples, 0.16%)</title><rect x="15.4326%" y="517" width="0.1591%" height="15" fill="rgb(244,195,20)" fg:x="369956" fg:w="3813"/><text x="15.6826%" y="527.50"></text></g><g><title>d_lookup (3,682 samples, 0.15%)</title><rect x="15.4381%" y="501" width="0.1536%" height="15" fill="rgb(253,56,35)" fg:x="370087" fg:w="3682"/><text x="15.6881%" y="511.50"></text></g><g><title>call_rcu (1,288 samples, 0.05%)</title><rect x="15.5921%" y="533" width="0.0537%" height="15" fill="rgb(210,149,44)" fg:x="373779" fg:w="1288"/><text x="15.8421%" y="543.50"></text></g><g><title>rcu_segcblist_enqueue (491 samples, 0.02%)</title><rect x="15.6253%" y="517" width="0.0205%" height="15" fill="rgb(240,135,12)" fg:x="374576" fg:w="491"/><text x="15.8753%" y="527.50"></text></g><g><title>__srcu_read_lock (742 samples, 0.03%)</title><rect x="15.7128%" y="469" width="0.0310%" height="15" fill="rgb(251,24,50)" fg:x="376674" fg:w="742"/><text x="15.9628%" y="479.50"></text></g><g><title>fsnotify_destroy_marks (1,508 samples, 0.06%)</title><rect x="15.6889%" y="501" width="0.0629%" height="15" fill="rgb(243,200,47)" fg:x="376100" fg:w="1508"/><text x="15.9389%" y="511.50"></text></g><g><title>fsnotify_grab_connector (1,176 samples, 0.05%)</title><rect x="15.7027%" y="485" width="0.0491%" height="15" fill="rgb(224,166,26)" fg:x="376432" fg:w="1176"/><text x="15.9527%" y="495.50"></text></g><g><title>__destroy_inode (3,213 samples, 0.13%)</title><rect x="15.6496%" y="517" width="0.1340%" height="15" fill="rgb(233,0,47)" fg:x="375157" fg:w="3213"/><text x="15.8996%" y="527.50"></text></g><g><title>security_inode_free (622 samples, 0.03%)</title><rect x="15.7576%" y="501" width="0.0259%" height="15" fill="rgb(253,80,5)" fg:x="377748" fg:w="622"/><text x="16.0076%" y="511.50"></text></g><g><title>_raw_spin_lock (365 samples, 0.02%)</title><rect x="15.7989%" y="501" width="0.0152%" height="15" fill="rgb(214,133,25)" fg:x="378738" fg:w="365"/><text x="16.0489%" y="511.50"></text></g><g><title>memset_erms (462 samples, 0.02%)</title><rect x="15.9021%" y="453" width="0.0193%" height="15" fill="rgb(209,27,14)" fg:x="381211" fg:w="462"/><text x="16.1521%" y="463.50"></text></g><g><title>kmem_cache_alloc (2,099 samples, 0.09%)</title><rect x="15.8550%" y="469" width="0.0876%" height="15" fill="rgb(219,102,51)" fg:x="380082" fg:w="2099"/><text x="16.1050%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (508 samples, 0.02%)</title><rect x="15.9214%" y="453" width="0.0212%" height="15" fill="rgb(237,18,16)" fg:x="381673" fg:w="508"/><text x="16.1714%" y="463.50"></text></g><g><title>alloc_extent_map (2,393 samples, 0.10%)</title><rect x="15.8428%" y="485" width="0.0998%" height="15" fill="rgb(241,85,17)" fg:x="379789" fg:w="2393"/><text x="16.0928%" y="495.50"></text></g><g><title>free_extent_map (344 samples, 0.01%)</title><rect x="15.9427%" y="485" width="0.0143%" height="15" fill="rgb(236,90,42)" fg:x="382185" fg:w="344"/><text x="16.1927%" y="495.50"></text></g><g><title>kmem_cache_free (1,315 samples, 0.05%)</title><rect x="15.9571%" y="485" width="0.0549%" height="15" fill="rgb(249,57,21)" fg:x="382529" fg:w="1315"/><text x="16.2071%" y="495.50"></text></g><g><title>btrfs_drop_extent_cache (4,823 samples, 0.20%)</title><rect x="15.8143%" y="501" width="0.2012%" height="15" fill="rgb(243,12,36)" fg:x="379106" fg:w="4823"/><text x="16.0643%" y="511.50"></text></g><g><title>alloc_extent_state (896 samples, 0.04%)</title><rect x="16.0504%" y="453" width="0.0374%" height="15" fill="rgb(253,128,47)" fg:x="384765" fg:w="896"/><text x="16.3004%" y="463.50"></text></g><g><title>kmem_cache_alloc (806 samples, 0.03%)</title><rect x="16.0541%" y="437" width="0.0336%" height="15" fill="rgb(207,33,20)" fg:x="384855" fg:w="806"/><text x="16.3041%" y="447.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (2,372 samples, 0.10%)</title><rect x="16.0155%" y="501" width="0.0989%" height="15" fill="rgb(233,215,35)" fg:x="383929" fg:w="2372"/><text x="16.2655%" y="511.50"></text></g><g><title>clear_extent_bit (1,877 samples, 0.08%)</title><rect x="16.0361%" y="485" width="0.0783%" height="15" fill="rgb(249,188,52)" fg:x="384424" fg:w="1877"/><text x="16.2861%" y="495.50"></text></g><g><title>__clear_extent_bit (1,832 samples, 0.08%)</title><rect x="16.0380%" y="469" width="0.0764%" height="15" fill="rgb(225,12,32)" fg:x="384469" fg:w="1832"/><text x="16.2880%" y="479.50"></text></g><g><title>kmem_cache_free (456 samples, 0.02%)</title><rect x="16.0954%" y="453" width="0.0190%" height="15" fill="rgb(247,98,14)" fg:x="385845" fg:w="456"/><text x="16.3454%" y="463.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (509 samples, 0.02%)</title><rect x="16.1144%" y="501" width="0.0212%" height="15" fill="rgb(247,219,48)" fg:x="386301" fg:w="509"/><text x="16.3644%" y="511.50"></text></g><g><title>_raw_spin_lock (277 samples, 0.01%)</title><rect x="16.1747%" y="453" width="0.0116%" height="15" fill="rgb(253,60,48)" fg:x="387747" fg:w="277"/><text x="16.4247%" y="463.50"></text></g><g><title>alloc_extent_state (1,515 samples, 0.06%)</title><rect x="16.1863%" y="453" width="0.0632%" height="15" fill="rgb(245,15,52)" fg:x="388024" fg:w="1515"/><text x="16.4363%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,204 samples, 0.05%)</title><rect x="16.1993%" y="437" width="0.0502%" height="15" fill="rgb(220,133,28)" fg:x="388335" fg:w="1204"/><text x="16.4493%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (401 samples, 0.02%)</title><rect x="16.2328%" y="421" width="0.0167%" height="15" fill="rgb(217,180,4)" fg:x="389138" fg:w="401"/><text x="16.4828%" y="431.50"></text></g><g><title>__clear_extent_bit (2,959 samples, 0.12%)</title><rect x="16.1603%" y="469" width="0.1234%" height="15" fill="rgb(251,24,1)" fg:x="387400" fg:w="2959"/><text x="16.4103%" y="479.50"></text></g><g><title>kmem_cache_free (577 samples, 0.02%)</title><rect x="16.2596%" y="453" width="0.0241%" height="15" fill="rgb(212,185,49)" fg:x="389782" fg:w="577"/><text x="16.5096%" y="463.50"></text></g><g><title>clear_record_extent_bits (3,196 samples, 0.13%)</title><rect x="16.1504%" y="485" width="0.1333%" height="15" fill="rgb(215,175,22)" fg:x="387164" fg:w="3196"/><text x="16.4004%" y="495.50"></text></g><g><title>ulist_init (347 samples, 0.01%)</title><rect x="16.2837%" y="485" width="0.0145%" height="15" fill="rgb(250,205,14)" fg:x="390360" fg:w="347"/><text x="16.5337%" y="495.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (4,110 samples, 0.17%)</title><rect x="16.1357%" y="501" width="0.1714%" height="15" fill="rgb(225,211,22)" fg:x="386810" fg:w="4110"/><text x="16.3857%" y="511.50"></text></g><g><title>btrfs_destroy_inode (16,049 samples, 0.67%)</title><rect x="15.7836%" y="517" width="0.6695%" height="15" fill="rgb(251,179,42)" fg:x="378370" fg:w="16049"/><text x="16.0336%" y="527.50"></text></g><g><title>rb_erase (3,499 samples, 0.15%)</title><rect x="16.3071%" y="501" width="0.1460%" height="15" fill="rgb(208,216,51)" fg:x="390920" fg:w="3499"/><text x="16.5571%" y="511.50"></text></g><g><title>destroy_inode (19,783 samples, 0.83%)</title><rect x="15.6458%" y="533" width="0.8252%" height="15" fill="rgb(235,36,11)" fg:x="375067" fg:w="19783"/><text x="15.8958%" y="543.50"></text></g><g><title>btrfs_put_root (431 samples, 0.02%)</title><rect x="16.4531%" y="517" width="0.0180%" height="15" fill="rgb(213,189,28)" fg:x="394419" fg:w="431"/><text x="16.7031%" y="527.50"></text></g><g><title>down_write (504 samples, 0.02%)</title><rect x="16.4710%" y="533" width="0.0210%" height="15" fill="rgb(227,203,42)" fg:x="394850" fg:w="504"/><text x="16.7210%" y="543.50"></text></g><g><title>__schedule (263 samples, 0.01%)</title><rect x="16.5268%" y="501" width="0.0110%" height="15" fill="rgb(244,72,36)" fg:x="396186" fg:w="263"/><text x="16.7768%" y="511.50"></text></g><g><title>_cond_resched (420 samples, 0.02%)</title><rect x="16.5224%" y="517" width="0.0175%" height="15" fill="rgb(213,53,17)" fg:x="396082" fg:w="420"/><text x="16.7724%" y="527.50"></text></g><g><title>btrfs_dentry_delete (797 samples, 0.03%)</title><rect x="16.5401%" y="517" width="0.0332%" height="15" fill="rgb(207,167,3)" fg:x="396506" fg:w="797"/><text x="16.7901%" y="527.50"></text></g><g><title>lockref_put_or_lock (833 samples, 0.03%)</title><rect x="16.5737%" y="517" width="0.0347%" height="15" fill="rgb(216,98,30)" fg:x="397310" fg:w="833"/><text x="16.8237%" y="527.50"></text></g><g><title>dput (2,828 samples, 0.12%)</title><rect x="16.4921%" y="533" width="0.1180%" height="15" fill="rgb(236,123,15)" fg:x="395354" fg:w="2828"/><text x="16.7421%" y="543.50"></text></g><g><title>__list_del_entry_valid (859 samples, 0.04%)</title><rect x="16.6358%" y="517" width="0.0358%" height="15" fill="rgb(248,81,50)" fg:x="398800" fg:w="859"/><text x="16.8858%" y="527.50"></text></g><g><title>_raw_spin_lock (760 samples, 0.03%)</title><rect x="16.6780%" y="501" width="0.0317%" height="15" fill="rgb(214,120,4)" fg:x="399810" fg:w="760"/><text x="16.9280%" y="511.50"></text></g><g><title>__remove_inode_hash (914 samples, 0.04%)</title><rect x="16.6717%" y="517" width="0.0381%" height="15" fill="rgb(208,179,34)" fg:x="399659" fg:w="914"/><text x="16.9217%" y="527.50"></text></g><g><title>_raw_spin_lock (903 samples, 0.04%)</title><rect x="16.7098%" y="517" width="0.0377%" height="15" fill="rgb(227,140,7)" fg:x="400573" fg:w="903"/><text x="16.9598%" y="527.50"></text></g><g><title>btrfs_create_pending_block_groups (275 samples, 0.01%)</title><rect x="16.9184%" y="485" width="0.0115%" height="15" fill="rgb(214,22,6)" fg:x="405573" fg:w="275"/><text x="17.1684%" y="495.50"></text></g><g><title>btrfs_put_transaction (497 samples, 0.02%)</title><rect x="16.9298%" y="485" width="0.0207%" height="15" fill="rgb(207,137,27)" fg:x="405848" fg:w="497"/><text x="17.1798%" y="495.50"></text></g><g><title>_raw_spin_lock (3,146 samples, 0.13%)</title><rect x="17.0254%" y="453" width="0.1312%" height="15" fill="rgb(210,8,46)" fg:x="408138" fg:w="3146"/><text x="17.2754%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,160 samples, 0.05%)</title><rect x="17.1082%" y="437" width="0.0484%" height="15" fill="rgb(240,16,54)" fg:x="410124" fg:w="1160"/><text x="17.3582%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (5,018 samples, 0.21%)</title><rect x="16.9573%" y="485" width="0.2093%" height="15" fill="rgb(211,209,29)" fg:x="406507" fg:w="5018"/><text x="17.2073%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (4,767 samples, 0.20%)</title><rect x="16.9678%" y="469" width="0.1989%" height="15" fill="rgb(226,228,24)" fg:x="406758" fg:w="4767"/><text x="17.2178%" y="479.50"></text></g><g><title>__btrfs_end_transaction (10,270 samples, 0.43%)</title><rect x="16.8000%" y="501" width="0.4284%" height="15" fill="rgb(222,84,9)" fg:x="402737" fg:w="10270"/><text x="17.0500%" y="511.50"></text></g><g><title>kmem_cache_free (1,482 samples, 0.06%)</title><rect x="17.1666%" y="485" width="0.0618%" height="15" fill="rgb(234,203,30)" fg:x="411525" fg:w="1482"/><text x="17.4166%" y="495.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (258 samples, 0.01%)</title><rect x="17.2177%" y="469" width="0.0108%" height="15" fill="rgb(238,109,14)" fg:x="412749" fg:w="258"/><text x="17.4677%" y="479.50"></text></g><g><title>_raw_spin_lock (1,140 samples, 0.05%)</title><rect x="17.2546%" y="485" width="0.0476%" height="15" fill="rgb(233,206,34)" fg:x="413633" fg:w="1140"/><text x="17.5046%" y="495.50"></text></g><g><title>native_queued_spin_lock_slowpath (619 samples, 0.03%)</title><rect x="17.2763%" y="469" width="0.0258%" height="15" fill="rgb(220,167,47)" fg:x="414154" fg:w="619"/><text x="17.5263%" y="479.50"></text></g><g><title>mutex_lock (918 samples, 0.04%)</title><rect x="17.3023%" y="485" width="0.0383%" height="15" fill="rgb(238,105,10)" fg:x="414777" fg:w="918"/><text x="17.5523%" y="495.50"></text></g><g><title>__radix_tree_delete (364 samples, 0.02%)</title><rect x="17.3529%" y="469" width="0.0152%" height="15" fill="rgb(213,227,17)" fg:x="415991" fg:w="364"/><text x="17.6029%" y="479.50"></text></g><g><title>__radix_tree_lookup (2,373 samples, 0.10%)</title><rect x="17.3681%" y="469" width="0.0990%" height="15" fill="rgb(217,132,38)" fg:x="416355" fg:w="2373"/><text x="17.6181%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (5,844 samples, 0.24%)</title><rect x="17.2285%" y="501" width="0.2438%" height="15" fill="rgb(242,146,4)" fg:x="413007" fg:w="5844"/><text x="17.4785%" y="511.50"></text></g><g><title>radix_tree_delete_item (2,941 samples, 0.12%)</title><rect x="17.3496%" y="485" width="0.1227%" height="15" fill="rgb(212,61,9)" fg:x="415910" fg:w="2941"/><text x="17.5996%" y="495.50"></text></g><g><title>_raw_write_lock (332 samples, 0.01%)</title><rect x="17.4800%" y="501" width="0.0138%" height="15" fill="rgb(247,126,22)" fg:x="419038" fg:w="332"/><text x="17.7300%" y="511.50"></text></g><g><title>__radix_tree_lookup (308 samples, 0.01%)</title><rect x="17.5136%" y="485" width="0.0128%" height="15" fill="rgb(220,196,2)" fg:x="419843" fg:w="308"/><text x="17.7636%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (784 samples, 0.03%)</title><rect x="17.4942%" y="501" width="0.0327%" height="15" fill="rgb(208,46,4)" fg:x="419378" fg:w="784"/><text x="17.7442%" y="511.50"></text></g><g><title>btrfs_find_space_info (549 samples, 0.02%)</title><rect x="17.5383%" y="485" width="0.0229%" height="15" fill="rgb(252,104,46)" fg:x="420434" fg:w="549"/><text x="17.7883%" y="495.50"></text></g><g><title>btrfs_alloc_block_rsv (1,926 samples, 0.08%)</title><rect x="17.5269%" y="501" width="0.0803%" height="15" fill="rgb(237,152,48)" fg:x="420162" fg:w="1926"/><text x="17.7769%" y="511.50"></text></g><g><title>kmem_cache_alloc_trace (1,105 samples, 0.05%)</title><rect x="17.5612%" y="485" width="0.0461%" height="15" fill="rgb(221,59,37)" fg:x="420983" fg:w="1105"/><text x="17.8112%" y="495.50"></text></g><g><title>btrfs_balance_delayed_items (557 samples, 0.02%)</title><rect x="17.6194%" y="485" width="0.0232%" height="15" fill="rgb(209,202,51)" fg:x="422379" fg:w="557"/><text x="17.8694%" y="495.50"></text></g><g><title>_raw_spin_lock (253 samples, 0.01%)</title><rect x="17.6475%" y="453" width="0.0106%" height="15" fill="rgb(228,81,30)" fg:x="423052" fg:w="253"/><text x="17.8975%" y="463.50"></text></g><g><title>__queue_work (1,028 samples, 0.04%)</title><rect x="17.6450%" y="469" width="0.0429%" height="15" fill="rgb(227,42,39)" fg:x="422993" fg:w="1028"/><text x="17.8950%" y="479.50"></text></g><g><title>try_to_wake_up (660 samples, 0.03%)</title><rect x="17.6604%" y="453" width="0.0275%" height="15" fill="rgb(221,26,2)" fg:x="423361" fg:w="660"/><text x="17.9104%" y="463.50"></text></g><g><title>btrfs_btree_balance_dirty (1,942 samples, 0.08%)</title><rect x="17.6073%" y="501" width="0.0810%" height="15" fill="rgb(254,61,31)" fg:x="422088" fg:w="1942"/><text x="17.8573%" y="511.50"></text></g><g><title>queue_work_on (1,052 samples, 0.04%)</title><rect x="17.6444%" y="485" width="0.0439%" height="15" fill="rgb(222,173,38)" fg:x="422978" fg:w="1052"/><text x="17.8944%" y="495.50"></text></g><g><title>btrfs_create_pending_block_groups (331 samples, 0.01%)</title><rect x="17.7722%" y="469" width="0.0138%" height="15" fill="rgb(218,50,12)" fg:x="426042" fg:w="331"/><text x="18.0222%" y="479.50"></text></g><g><title>__btrfs_end_transaction (2,956 samples, 0.12%)</title><rect x="17.7064%" y="485" width="0.1233%" height="15" fill="rgb(223,88,40)" fg:x="424464" fg:w="2956"/><text x="17.9564%" y="495.50"></text></g><g><title>kmem_cache_free (692 samples, 0.03%)</title><rect x="17.8008%" y="469" width="0.0289%" height="15" fill="rgb(237,54,19)" fg:x="426728" fg:w="692"/><text x="18.0508%" y="479.50"></text></g><g><title>__list_del_entry_valid (548 samples, 0.02%)</title><rect x="17.8806%" y="469" width="0.0229%" height="15" fill="rgb(251,129,25)" fg:x="428641" fg:w="548"/><text x="18.1306%" y="479.50"></text></g><g><title>_raw_spin_lock (447 samples, 0.02%)</title><rect x="17.9042%" y="469" width="0.0186%" height="15" fill="rgb(238,97,19)" fg:x="429207" fg:w="447"/><text x="18.1542%" y="479.50"></text></g><g><title>__schedule (280 samples, 0.01%)</title><rect x="17.9379%" y="437" width="0.0117%" height="15" fill="rgb(240,169,18)" fg:x="430013" fg:w="280"/><text x="18.1879%" y="447.50"></text></g><g><title>_cond_resched (341 samples, 0.01%)</title><rect x="17.9361%" y="453" width="0.0142%" height="15" fill="rgb(230,187,49)" fg:x="429972" fg:w="341"/><text x="18.1861%" y="463.50"></text></g><g><title>mutex_lock (649 samples, 0.03%)</title><rect x="17.9233%" y="469" width="0.0271%" height="15" fill="rgb(209,44,26)" fg:x="429665" fg:w="649"/><text x="18.1733%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (3,087 samples, 0.13%)</title><rect x="17.8297%" y="485" width="0.1288%" height="15" fill="rgb(244,0,6)" fg:x="427420" fg:w="3087"/><text x="18.0797%" y="495.50"></text></g><g><title>_find_next_bit.constprop.0 (419 samples, 0.02%)</title><rect x="18.1163%" y="389" width="0.0175%" height="15" fill="rgb(248,18,21)" fg:x="434291" fg:w="419"/><text x="18.3663%" y="399.50"></text></g><g><title>steal_from_bitmap.part.0 (520 samples, 0.02%)</title><rect x="18.1137%" y="405" width="0.0217%" height="15" fill="rgb(245,180,19)" fg:x="434228" fg:w="520"/><text x="18.3637%" y="415.50"></text></g><g><title>__btrfs_add_free_space (698 samples, 0.03%)</title><rect x="18.1095%" y="421" width="0.0291%" height="15" fill="rgb(252,118,36)" fg:x="434127" fg:w="698"/><text x="18.3595%" y="431.50"></text></g><g><title>btrfs_free_tree_block (1,021 samples, 0.04%)</title><rect x="18.1091%" y="437" width="0.0426%" height="15" fill="rgb(210,224,19)" fg:x="434118" fg:w="1021"/><text x="18.3591%" y="447.50"></text></g><g><title>btrfs_del_leaf (1,172 samples, 0.05%)</title><rect x="18.1086%" y="453" width="0.0489%" height="15" fill="rgb(218,30,24)" fg:x="434105" fg:w="1172"/><text x="18.3586%" y="463.50"></text></g><g><title>btrfs_get_32 (566 samples, 0.02%)</title><rect x="18.1574%" y="453" width="0.0236%" height="15" fill="rgb(219,75,50)" fg:x="435277" fg:w="566"/><text x="18.4074%" y="463.50"></text></g><g><title>btrfs_get_token_32 (8,214 samples, 0.34%)</title><rect x="18.1811%" y="453" width="0.3426%" height="15" fill="rgb(234,72,50)" fg:x="435843" fg:w="8214"/><text x="18.4311%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (1,185 samples, 0.05%)</title><rect x="18.4743%" y="437" width="0.0494%" height="15" fill="rgb(219,100,48)" fg:x="442872" fg:w="1185"/><text x="18.7243%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (593 samples, 0.02%)</title><rect x="18.5237%" y="453" width="0.0247%" height="15" fill="rgb(253,5,41)" fg:x="444057" fg:w="593"/><text x="18.7737%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (316 samples, 0.01%)</title><rect x="18.5353%" y="437" width="0.0132%" height="15" fill="rgb(247,181,11)" fg:x="444334" fg:w="316"/><text x="18.7853%" y="447.50"></text></g><g><title>check_setget_bounds.isra.0 (879 samples, 0.04%)</title><rect x="18.7606%" y="437" width="0.0367%" height="15" fill="rgb(222,223,25)" fg:x="449735" fg:w="879"/><text x="19.0106%" y="447.50"></text></g><g><title>btrfs_set_token_32 (5,937 samples, 0.25%)</title><rect x="18.5496%" y="453" width="0.2477%" height="15" fill="rgb(214,198,28)" fg:x="444678" fg:w="5937"/><text x="18.7996%" y="463.50"></text></g><g><title>leaf_space_used (622 samples, 0.03%)</title><rect x="18.7983%" y="453" width="0.0259%" height="15" fill="rgb(230,46,43)" fg:x="450639" fg:w="622"/><text x="19.0483%" y="463.50"></text></g><g><title>btrfs_get_32 (448 samples, 0.02%)</title><rect x="18.8055%" y="437" width="0.0187%" height="15" fill="rgb(233,65,53)" fg:x="450813" fg:w="448"/><text x="19.0555%" y="447.50"></text></g><g><title>memcpy_extent_buffer (1,290 samples, 0.05%)</title><rect x="18.8242%" y="453" width="0.0538%" height="15" fill="rgb(221,121,27)" fg:x="451261" fg:w="1290"/><text x="19.0742%" y="463.50"></text></g><g><title>memmove (893 samples, 0.04%)</title><rect x="18.8408%" y="437" width="0.0373%" height="15" fill="rgb(247,70,47)" fg:x="451658" fg:w="893"/><text x="19.0908%" y="447.50"></text></g><g><title>copy_pages (1,230 samples, 0.05%)</title><rect x="18.9100%" y="437" width="0.0513%" height="15" fill="rgb(228,85,35)" fg:x="453317" fg:w="1230"/><text x="19.1600%" y="447.50"></text></g><g><title>memmove_extent_buffer (10,306 samples, 0.43%)</title><rect x="18.8780%" y="453" width="0.4299%" height="15" fill="rgb(209,50,18)" fg:x="452551" fg:w="10306"/><text x="19.1280%" y="463.50"></text></g><g><title>memmove (8,310 samples, 0.35%)</title><rect x="18.9613%" y="437" width="0.3466%" height="15" fill="rgb(250,19,35)" fg:x="454547" fg:w="8310"/><text x="19.2113%" y="447.50"></text></g><g><title>__push_leaf_left (333 samples, 0.01%)</title><rect x="19.3094%" y="437" width="0.0139%" height="15" fill="rgb(253,107,29)" fg:x="462892" fg:w="333"/><text x="19.5594%" y="447.50"></text></g><g><title>push_leaf_left (526 samples, 0.02%)</title><rect x="19.3079%" y="453" width="0.0219%" height="15" fill="rgb(252,179,29)" fg:x="462857" fg:w="526"/><text x="19.5579%" y="463.50"></text></g><g><title>push_leaf_right (383 samples, 0.02%)</title><rect x="19.3299%" y="453" width="0.0160%" height="15" fill="rgb(238,194,6)" fg:x="463383" fg:w="383"/><text x="19.5799%" y="463.50"></text></g><g><title>btrfs_del_items (32,119 samples, 1.34%)</title><rect x="18.0084%" y="469" width="1.3398%" height="15" fill="rgb(238,164,29)" fg:x="431705" fg:w="32119"/><text x="18.2584%" y="479.50"></text></g><g><title>_raw_spin_lock (1,566 samples, 0.07%)</title><rect x="19.3671%" y="437" width="0.0653%" height="15" fill="rgb(224,25,9)" fg:x="464275" fg:w="1566"/><text x="19.6171%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (583 samples, 0.02%)</title><rect x="19.4081%" y="421" width="0.0243%" height="15" fill="rgb(244,153,23)" fg:x="465258" fg:w="583"/><text x="19.6581%" y="431.50"></text></g><g><title>btrfs_block_rsv_release (2,026 samples, 0.08%)</title><rect x="19.3541%" y="453" width="0.0845%" height="15" fill="rgb(212,203,14)" fg:x="463963" fg:w="2026"/><text x="19.6041%" y="463.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (2,392 samples, 0.10%)</title><rect x="19.3483%" y="469" width="0.0998%" height="15" fill="rgb(220,164,20)" fg:x="463824" fg:w="2392"/><text x="19.5983%" y="479.50"></text></g><g><title>btrfs_get_32 (343 samples, 0.01%)</title><rect x="19.4481%" y="469" width="0.0143%" height="15" fill="rgb(222,203,48)" fg:x="466216" fg:w="343"/><text x="19.6981%" y="479.50"></text></g><g><title>_raw_read_lock (627 samples, 0.03%)</title><rect x="19.6190%" y="405" width="0.0262%" height="15" fill="rgb(215,159,22)" fg:x="470315" fg:w="627"/><text x="19.8690%" y="415.50"></text></g><g><title>finish_wait (3,366 samples, 0.14%)</title><rect x="19.6465%" y="405" width="0.1404%" height="15" fill="rgb(216,183,47)" fg:x="470974" fg:w="3366"/><text x="19.8965%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (3,228 samples, 0.13%)</title><rect x="19.6523%" y="389" width="0.1347%" height="15" fill="rgb(229,195,25)" fg:x="471112" fg:w="3228"/><text x="19.9023%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,075 samples, 0.13%)</title><rect x="19.6587%" y="373" width="0.1283%" height="15" fill="rgb(224,132,51)" fg:x="471265" fg:w="3075"/><text x="19.9087%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (7,966 samples, 0.33%)</title><rect x="19.8199%" y="389" width="0.3323%" height="15" fill="rgb(240,63,7)" fg:x="475130" fg:w="7966"/><text x="20.0699%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,558 samples, 0.32%)</title><rect x="19.8369%" y="373" width="0.3153%" height="15" fill="rgb(249,182,41)" fg:x="475538" fg:w="7558"/><text x="20.0869%" y="383.50"></text></g><g><title>prepare_to_wait_event (8,919 samples, 0.37%)</title><rect x="19.7873%" y="405" width="0.3721%" height="15" fill="rgb(243,47,26)" fg:x="474348" fg:w="8919"/><text x="20.0373%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (10,484 samples, 0.44%)</title><rect x="20.1593%" y="405" width="0.4373%" height="15" fill="rgb(233,48,2)" fg:x="483267" fg:w="10484"/><text x="20.4093%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,496 samples, 0.31%)</title><rect x="20.2840%" y="389" width="0.3127%" height="15" fill="rgb(244,165,34)" fg:x="486255" fg:w="7496"/><text x="20.5340%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (272 samples, 0.01%)</title><rect x="20.6168%" y="373" width="0.0113%" height="15" fill="rgb(207,89,7)" fg:x="494233" fg:w="272"/><text x="20.8668%" y="383.50"></text></g><g><title>update_curr (488 samples, 0.02%)</title><rect x="20.6568%" y="341" width="0.0204%" height="15" fill="rgb(244,117,36)" fg:x="495192" fg:w="488"/><text x="20.9068%" y="351.50"></text></g><g><title>dequeue_entity (1,400 samples, 0.06%)</title><rect x="20.6382%" y="357" width="0.0584%" height="15" fill="rgb(226,144,34)" fg:x="494746" fg:w="1400"/><text x="20.8882%" y="367.50"></text></g><g><title>update_load_avg (466 samples, 0.02%)</title><rect x="20.6771%" y="341" width="0.0194%" height="15" fill="rgb(213,23,19)" fg:x="495680" fg:w="466"/><text x="20.9271%" y="351.50"></text></g><g><title>dequeue_task_fair (1,704 samples, 0.07%)</title><rect x="20.6311%" y="373" width="0.0711%" height="15" fill="rgb(217,75,12)" fg:x="494576" fg:w="1704"/><text x="20.8811%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (2,627 samples, 0.11%)</title><rect x="20.7146%" y="357" width="0.1096%" height="15" fill="rgb(224,159,17)" fg:x="496577" fg:w="2627"/><text x="20.9646%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,542 samples, 0.11%)</title><rect x="20.7181%" y="341" width="0.1060%" height="15" fill="rgb(217,118,1)" fg:x="496662" fg:w="2542"/><text x="20.9681%" y="351.50"></text></g><g><title>native_write_msr (2,507 samples, 0.10%)</title><rect x="20.7196%" y="325" width="0.1046%" height="15" fill="rgb(232,180,48)" fg:x="496697" fg:w="2507"/><text x="20.9696%" y="335.50"></text></g><g><title>finish_task_switch (3,056 samples, 0.13%)</title><rect x="20.7022%" y="373" width="0.1275%" height="15" fill="rgb(230,27,33)" fg:x="496280" fg:w="3056"/><text x="20.9522%" y="383.50"></text></g><g><title>pick_next_task_fair (300 samples, 0.01%)</title><rect x="20.8297%" y="373" width="0.0125%" height="15" fill="rgb(205,31,21)" fg:x="499338" fg:w="300"/><text x="21.0797%" y="383.50"></text></g><g><title>__update_idle_core (256 samples, 0.01%)</title><rect x="20.8445%" y="357" width="0.0107%" height="15" fill="rgb(253,59,4)" fg:x="499692" fg:w="256"/><text x="21.0945%" y="367.50"></text></g><g><title>pick_next_task_idle (311 samples, 0.01%)</title><rect x="20.8422%" y="373" width="0.0130%" height="15" fill="rgb(224,201,9)" fg:x="499638" fg:w="311"/><text x="21.0922%" y="383.50"></text></g><g><title>psi_task_change (1,325 samples, 0.06%)</title><rect x="20.8552%" y="373" width="0.0553%" height="15" fill="rgb(229,206,30)" fg:x="499949" fg:w="1325"/><text x="21.1052%" y="383.50"></text></g><g><title>psi_group_change (1,144 samples, 0.05%)</title><rect x="20.8628%" y="357" width="0.0477%" height="15" fill="rgb(212,67,47)" fg:x="500130" fg:w="1144"/><text x="21.1128%" y="367.50"></text></g><g><title>record_times (251 samples, 0.01%)</title><rect x="20.9000%" y="341" width="0.0105%" height="15" fill="rgb(211,96,50)" fg:x="501023" fg:w="251"/><text x="21.1500%" y="351.50"></text></g><g><title>__schedule (7,860 samples, 0.33%)</title><rect x="20.6000%" y="389" width="0.3279%" height="15" fill="rgb(252,114,18)" fg:x="493831" fg:w="7860"/><text x="20.8500%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (32,075 samples, 1.34%)</title><rect x="19.5900%" y="421" width="1.3380%" height="15" fill="rgb(223,58,37)" fg:x="469619" fg:w="32075"/><text x="19.8400%" y="431.50"></text></g><g><title>schedule (7,943 samples, 0.33%)</title><rect x="20.5967%" y="405" width="0.3313%" height="15" fill="rgb(237,70,4)" fg:x="493751" fg:w="7943"/><text x="20.8467%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (33,371 samples, 1.39%)</title><rect x="19.5833%" y="437" width="1.3921%" height="15" fill="rgb(244,85,46)" fg:x="469459" fg:w="33371"/><text x="19.8333%" y="447.50"></text></g><g><title>btrfs_root_node (1,134 samples, 0.05%)</title><rect x="20.9281%" y="421" width="0.0473%" height="15" fill="rgb(223,39,52)" fg:x="501696" fg:w="1134"/><text x="21.1781%" y="431.50"></text></g><g><title>prepare_to_wait_event (245 samples, 0.01%)</title><rect x="20.9821%" y="421" width="0.0102%" height="15" fill="rgb(218,200,14)" fg:x="502991" fg:w="245"/><text x="21.2321%" y="431.50"></text></g><g><title>dequeue_entity (520 samples, 0.02%)</title><rect x="21.0081%" y="373" width="0.0217%" height="15" fill="rgb(208,171,16)" fg:x="503615" fg:w="520"/><text x="21.2581%" y="383.50"></text></g><g><title>dequeue_task_fair (636 samples, 0.03%)</title><rect x="21.0049%" y="389" width="0.0265%" height="15" fill="rgb(234,200,18)" fg:x="503537" fg:w="636"/><text x="21.2549%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (1,190 samples, 0.05%)</title><rect x="21.0365%" y="373" width="0.0496%" height="15" fill="rgb(228,45,11)" fg:x="504294" fg:w="1190"/><text x="21.2865%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,176 samples, 0.05%)</title><rect x="21.0371%" y="357" width="0.0491%" height="15" fill="rgb(237,182,11)" fg:x="504308" fg:w="1176"/><text x="21.2871%" y="367.50"></text></g><g><title>native_write_msr (1,166 samples, 0.05%)</title><rect x="21.0375%" y="341" width="0.0486%" height="15" fill="rgb(241,175,49)" fg:x="504318" fg:w="1166"/><text x="21.2875%" y="351.50"></text></g><g><title>finish_task_switch (1,342 samples, 0.06%)</title><rect x="21.0314%" y="389" width="0.0560%" height="15" fill="rgb(247,38,35)" fg:x="504173" fg:w="1342"/><text x="21.2814%" y="399.50"></text></g><g><title>psi_task_change (425 samples, 0.02%)</title><rect x="21.0975%" y="389" width="0.0177%" height="15" fill="rgb(228,39,49)" fg:x="505758" fg:w="425"/><text x="21.3475%" y="399.50"></text></g><g><title>psi_group_change (363 samples, 0.02%)</title><rect x="21.1001%" y="373" width="0.0151%" height="15" fill="rgb(226,101,26)" fg:x="505820" fg:w="363"/><text x="21.3501%" y="383.50"></text></g><g><title>__schedule (3,083 samples, 0.13%)</title><rect x="20.9932%" y="405" width="0.1286%" height="15" fill="rgb(206,141,19)" fg:x="503257" fg:w="3083"/><text x="21.2432%" y="415.50"></text></g><g><title>__btrfs_tree_lock (3,511 samples, 0.15%)</title><rect x="20.9754%" y="437" width="0.1465%" height="15" fill="rgb(211,200,13)" fg:x="502830" fg:w="3511"/><text x="21.2254%" y="447.50"></text></g><g><title>schedule (3,105 samples, 0.13%)</title><rect x="20.9923%" y="421" width="0.1295%" height="15" fill="rgb(241,121,6)" fg:x="503236" fg:w="3105"/><text x="21.2423%" y="431.50"></text></g><g><title>alloc_extent_buffer (308 samples, 0.01%)</title><rect x="21.1374%" y="373" width="0.0128%" height="15" fill="rgb(234,221,29)" fg:x="506714" fg:w="308"/><text x="21.3874%" y="383.50"></text></g><g><title>btrfs_alloc_from_cluster (296 samples, 0.01%)</title><rect x="21.1654%" y="341" width="0.0123%" height="15" fill="rgb(229,136,5)" fg:x="507384" fg:w="296"/><text x="21.4154%" y="351.50"></text></g><g><title>btrfs_reserve_extent (457 samples, 0.02%)</title><rect x="21.1602%" y="373" width="0.0191%" height="15" fill="rgb(238,36,11)" fg:x="507259" fg:w="457"/><text x="21.4102%" y="383.50"></text></g><g><title>find_free_extent (417 samples, 0.02%)</title><rect x="21.1618%" y="357" width="0.0174%" height="15" fill="rgb(251,55,41)" fg:x="507299" fg:w="417"/><text x="21.4118%" y="367.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,317 samples, 0.05%)</title><rect x="21.1357%" y="405" width="0.0549%" height="15" fill="rgb(242,34,40)" fg:x="506672" fg:w="1317"/><text x="21.3857%" y="415.50"></text></g><g><title>btrfs_alloc_tree_block (1,309 samples, 0.05%)</title><rect x="21.1360%" y="389" width="0.0546%" height="15" fill="rgb(215,42,17)" fg:x="506680" fg:w="1309"/><text x="21.3860%" y="399.50"></text></g><g><title>btrfs_add_delayed_tree_ref (254 samples, 0.01%)</title><rect x="21.1921%" y="389" width="0.0106%" height="15" fill="rgb(207,44,46)" fg:x="508024" fg:w="254"/><text x="21.4421%" y="399.50"></text></g><g><title>btrfs_free_tree_block (576 samples, 0.02%)</title><rect x="21.1906%" y="405" width="0.0240%" height="15" fill="rgb(211,206,28)" fg:x="507989" fg:w="576"/><text x="21.4406%" y="415.50"></text></g><g><title>copy_extent_buffer_full (276 samples, 0.01%)</title><rect x="21.2245%" y="405" width="0.0115%" height="15" fill="rgb(237,167,16)" fg:x="508802" fg:w="276"/><text x="21.4745%" y="415.50"></text></g><g><title>copy_page (268 samples, 0.01%)</title><rect x="21.2249%" y="389" width="0.0112%" height="15" fill="rgb(233,66,6)" fg:x="508810" fg:w="268"/><text x="21.4749%" y="399.50"></text></g><g><title>__btrfs_cow_block (2,548 samples, 0.11%)</title><rect x="21.1344%" y="421" width="0.1063%" height="15" fill="rgb(246,123,29)" fg:x="506642" fg:w="2548"/><text x="21.3844%" y="431.50"></text></g><g><title>btrfs_cow_block (2,566 samples, 0.11%)</title><rect x="21.1341%" y="437" width="0.1070%" height="15" fill="rgb(209,62,40)" fg:x="506634" fg:w="2566"/><text x="21.3841%" y="447.50"></text></g><g><title>_cond_resched (288 samples, 0.01%)</title><rect x="21.2923%" y="405" width="0.0120%" height="15" fill="rgb(218,4,25)" fg:x="510427" fg:w="288"/><text x="21.5423%" y="415.50"></text></g><g><title>_raw_write_lock (729 samples, 0.03%)</title><rect x="21.3079%" y="405" width="0.0304%" height="15" fill="rgb(253,91,49)" fg:x="510802" fg:w="729"/><text x="21.5579%" y="415.50"></text></g><g><title>finish_wait (4,988 samples, 0.21%)</title><rect x="21.3386%" y="405" width="0.2081%" height="15" fill="rgb(228,155,29)" fg:x="511538" fg:w="4988"/><text x="21.5886%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,698 samples, 0.20%)</title><rect x="21.3507%" y="389" width="0.1960%" height="15" fill="rgb(243,57,37)" fg:x="511828" fg:w="4698"/><text x="21.6007%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,402 samples, 0.18%)</title><rect x="21.3631%" y="373" width="0.1836%" height="15" fill="rgb(244,167,17)" fg:x="512124" fg:w="4402"/><text x="21.6131%" y="383.50"></text></g><g><title>__list_add_valid (389 samples, 0.02%)</title><rect x="21.6001%" y="389" width="0.0162%" height="15" fill="rgb(207,181,38)" fg:x="517806" fg:w="389"/><text x="21.8501%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (13,416 samples, 0.56%)</title><rect x="21.6163%" y="389" width="0.5596%" height="15" fill="rgb(211,8,23)" fg:x="518195" fg:w="13416"/><text x="21.8663%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (12,512 samples, 0.52%)</title><rect x="21.6541%" y="373" width="0.5219%" height="15" fill="rgb(235,11,44)" fg:x="519099" fg:w="12512"/><text x="21.9041%" y="383.50"></text></g><g><title>_raw_spin_unlock_irqrestore (346 samples, 0.01%)</title><rect x="22.1760%" y="389" width="0.0144%" height="15" fill="rgb(248,18,52)" fg:x="531611" fg:w="346"/><text x="22.4260%" y="399.50"></text></g><g><title>prepare_to_wait_event (15,375 samples, 0.64%)</title><rect x="21.5491%" y="405" width="0.6414%" height="15" fill="rgb(208,4,7)" fg:x="516584" fg:w="15375"/><text x="21.7991%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (19,536 samples, 0.81%)</title><rect x="22.1905%" y="405" width="0.8149%" height="15" fill="rgb(240,17,39)" fg:x="531959" fg:w="19536"/><text x="22.4405%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,938 samples, 0.37%)</title><rect x="22.6326%" y="389" width="0.3728%" height="15" fill="rgb(207,170,3)" fg:x="542557" fg:w="8938"/><text x="22.8826%" y="399.50"></text></g><g><title>__perf_event_task_sched_out (578 samples, 0.02%)</title><rect x="23.0507%" y="373" width="0.0241%" height="15" fill="rgb(236,100,52)" fg:x="552579" fg:w="578"/><text x="23.3007%" y="383.50"></text></g><g><title>update_cfs_group (354 samples, 0.01%)</title><rect x="23.1265%" y="341" width="0.0148%" height="15" fill="rgb(246,78,51)" fg:x="554396" fg:w="354"/><text x="23.3765%" y="351.50"></text></g><g><title>cpuacct_charge (251 samples, 0.01%)</title><rect x="23.1724%" y="325" width="0.0105%" height="15" fill="rgb(211,17,15)" fg:x="555497" fg:w="251"/><text x="23.4224%" y="335.50"></text></g><g><title>update_curr (1,092 samples, 0.05%)</title><rect x="23.1412%" y="341" width="0.0456%" height="15" fill="rgb(209,59,46)" fg:x="554750" fg:w="1092"/><text x="23.3912%" y="351.50"></text></g><g><title>__update_load_avg_cfs_rq (281 samples, 0.01%)</title><rect x="23.2018%" y="325" width="0.0117%" height="15" fill="rgb(210,92,25)" fg:x="556202" fg:w="281"/><text x="23.4518%" y="335.50"></text></g><g><title>__update_load_avg_se (369 samples, 0.02%)</title><rect x="23.2135%" y="325" width="0.0154%" height="15" fill="rgb(238,174,52)" fg:x="556483" fg:w="369"/><text x="23.4635%" y="335.50"></text></g><g><title>dequeue_entity (3,174 samples, 0.13%)</title><rect x="23.0977%" y="357" width="0.1324%" height="15" fill="rgb(230,73,7)" fg:x="553707" fg:w="3174"/><text x="23.3477%" y="367.50"></text></g><g><title>update_load_avg (1,039 samples, 0.04%)</title><rect x="23.1868%" y="341" width="0.0433%" height="15" fill="rgb(243,124,40)" fg:x="555842" fg:w="1039"/><text x="23.4368%" y="351.50"></text></g><g><title>dequeue_task_fair (3,756 samples, 0.16%)</title><rect x="23.0824%" y="373" width="0.1567%" height="15" fill="rgb(244,170,11)" fg:x="553341" fg:w="3756"/><text x="23.3324%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (6,233 samples, 0.26%)</title><rect x="23.2682%" y="357" width="0.2600%" height="15" fill="rgb(207,114,54)" fg:x="557793" fg:w="6233"/><text x="23.5182%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,016 samples, 0.25%)</title><rect x="23.2772%" y="341" width="0.2510%" height="15" fill="rgb(205,42,20)" fg:x="558010" fg:w="6016"/><text x="23.5272%" y="351.50"></text></g><g><title>native_write_msr (5,921 samples, 0.25%)</title><rect x="23.2812%" y="325" width="0.2470%" height="15" fill="rgb(230,30,28)" fg:x="558105" fg:w="5921"/><text x="23.5312%" y="335.50"></text></g><g><title>finish_task_switch (7,210 samples, 0.30%)</title><rect x="23.2391%" y="373" width="0.3008%" height="15" fill="rgb(205,73,54)" fg:x="557097" fg:w="7210"/><text x="23.4891%" y="383.50"></text></g><g><title>newidle_balance (372 samples, 0.02%)</title><rect x="23.5476%" y="357" width="0.0155%" height="15" fill="rgb(254,227,23)" fg:x="564492" fg:w="372"/><text x="23.7976%" y="367.50"></text></g><g><title>pick_next_task_fair (711 samples, 0.03%)</title><rect x="23.5402%" y="373" width="0.0297%" height="15" fill="rgb(228,202,34)" fg:x="564315" fg:w="711"/><text x="23.7902%" y="383.50"></text></g><g><title>__update_idle_core (565 samples, 0.02%)</title><rect x="23.5745%" y="357" width="0.0236%" height="15" fill="rgb(222,225,37)" fg:x="565136" fg:w="565"/><text x="23.8245%" y="367.50"></text></g><g><title>pick_next_task_idle (680 samples, 0.03%)</title><rect x="23.5699%" y="373" width="0.0284%" height="15" fill="rgb(221,14,54)" fg:x="565026" fg:w="680"/><text x="23.8199%" y="383.50"></text></g><g><title>psi_task_change (2,934 samples, 0.12%)</title><rect x="23.5983%" y="373" width="0.1224%" height="15" fill="rgb(254,102,2)" fg:x="565706" fg:w="2934"/><text x="23.8483%" y="383.50"></text></g><g><title>psi_group_change (2,537 samples, 0.11%)</title><rect x="23.6148%" y="357" width="0.1058%" height="15" fill="rgb(232,104,17)" fg:x="566103" fg:w="2537"/><text x="23.8648%" y="367.50"></text></g><g><title>record_times (710 samples, 0.03%)</title><rect x="23.6910%" y="341" width="0.0296%" height="15" fill="rgb(250,220,14)" fg:x="567930" fg:w="710"/><text x="23.9410%" y="351.50"></text></g><g><title>sched_clock_cpu (457 samples, 0.02%)</title><rect x="23.7016%" y="325" width="0.0191%" height="15" fill="rgb(241,158,9)" fg:x="568183" fg:w="457"/><text x="23.9516%" y="335.50"></text></g><g><title>sched_clock (408 samples, 0.02%)</title><rect x="23.7036%" y="309" width="0.0170%" height="15" fill="rgb(246,9,43)" fg:x="568232" fg:w="408"/><text x="23.9536%" y="319.50"></text></g><g><title>native_sched_clock (379 samples, 0.02%)</title><rect x="23.7048%" y="293" width="0.0158%" height="15" fill="rgb(206,73,33)" fg:x="568261" fg:w="379"/><text x="23.9548%" y="303.50"></text></g><g><title>psi_task_switch (281 samples, 0.01%)</title><rect x="23.7206%" y="373" width="0.0117%" height="15" fill="rgb(222,79,8)" fg:x="568640" fg:w="281"/><text x="23.9706%" y="383.50"></text></g><g><title>__btrfs_tree_lock (60,213 samples, 2.51%)</title><rect x="21.2440%" y="421" width="2.5118%" height="15" fill="rgb(234,8,54)" fg:x="509269" fg:w="60213"/><text x="21.4940%" y="431.50">__..</text></g><g><title>schedule (17,987 samples, 0.75%)</title><rect x="23.0054%" y="405" width="0.7503%" height="15" fill="rgb(209,134,38)" fg:x="551495" fg:w="17987"/><text x="23.2554%" y="415.50"></text></g><g><title>__schedule (17,784 samples, 0.74%)</title><rect x="23.0139%" y="389" width="0.7419%" height="15" fill="rgb(230,127,29)" fg:x="551698" fg:w="17784"/><text x="23.2639%" y="399.50"></text></g><g><title>update_rq_clock (303 samples, 0.01%)</title><rect x="23.7431%" y="373" width="0.0126%" height="15" fill="rgb(242,44,41)" fg:x="569179" fg:w="303"/><text x="23.9931%" y="383.50"></text></g><g><title>btrfs_root_node (523 samples, 0.02%)</title><rect x="23.7558%" y="421" width="0.0218%" height="15" fill="rgb(222,56,43)" fg:x="569483" fg:w="523"/><text x="24.0058%" y="431.50"></text></g><g><title>btrfs_lock_root_node (60,807 samples, 2.54%)</title><rect x="21.2411%" y="437" width="2.5365%" height="15" fill="rgb(238,39,47)" fg:x="509200" fg:w="60807"/><text x="21.4911%" y="447.50">bt..</text></g><g><title>btrfs_set_path_blocking (391 samples, 0.02%)</title><rect x="23.7777%" y="437" width="0.0163%" height="15" fill="rgb(226,79,43)" fg:x="570007" fg:w="391"/><text x="24.0277%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (442 samples, 0.02%)</title><rect x="23.7941%" y="437" width="0.0184%" height="15" fill="rgb(242,105,53)" fg:x="570400" fg:w="442"/><text x="24.0441%" y="447.50"></text></g><g><title>_raw_write_lock (366 samples, 0.02%)</title><rect x="23.8180%" y="421" width="0.0153%" height="15" fill="rgb(251,132,46)" fg:x="570974" fg:w="366"/><text x="24.0680%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (2,851 samples, 0.12%)</title><rect x="23.8125%" y="437" width="0.1189%" height="15" fill="rgb(231,77,14)" fg:x="570842" fg:w="2851"/><text x="24.0625%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (2,353 samples, 0.10%)</title><rect x="23.8333%" y="421" width="0.0982%" height="15" fill="rgb(240,135,9)" fg:x="571340" fg:w="2353"/><text x="24.0833%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (573 samples, 0.02%)</title><rect x="23.9318%" y="437" width="0.0239%" height="15" fill="rgb(248,109,14)" fg:x="573701" fg:w="573"/><text x="24.1818%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,669 samples, 0.19%)</title><rect x="23.9557%" y="437" width="0.1948%" height="15" fill="rgb(227,146,52)" fg:x="574274" fg:w="4669"/><text x="24.2057%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (800 samples, 0.03%)</title><rect x="24.1800%" y="421" width="0.0334%" height="15" fill="rgb(232,54,3)" fg:x="579651" fg:w="800"/><text x="24.4300%" y="431.50"></text></g><g><title>verify_parent_transid (704 samples, 0.03%)</title><rect x="24.1840%" y="405" width="0.0294%" height="15" fill="rgb(229,201,43)" fg:x="579747" fg:w="704"/><text x="24.4340%" y="415.50"></text></g><g><title>btrfs_get_64 (834 samples, 0.03%)</title><rect x="24.2133%" y="421" width="0.0348%" height="15" fill="rgb(252,161,33)" fg:x="580451" fg:w="834"/><text x="24.4633%" y="431.50"></text></g><g><title>__radix_tree_lookup (3,190 samples, 0.13%)</title><rect x="24.3287%" y="405" width="0.1331%" height="15" fill="rgb(226,146,40)" fg:x="583216" fg:w="3190"/><text x="24.5787%" y="415.50"></text></g><g><title>mark_page_accessed (1,281 samples, 0.05%)</title><rect x="24.4749%" y="389" width="0.0534%" height="15" fill="rgb(219,47,25)" fg:x="586722" fg:w="1281"/><text x="24.7249%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,593 samples, 0.07%)</title><rect x="24.4622%" y="405" width="0.0665%" height="15" fill="rgb(250,135,13)" fg:x="586417" fg:w="1593"/><text x="24.7122%" y="415.50"></text></g><g><title>find_extent_buffer (6,444 samples, 0.27%)</title><rect x="24.2622%" y="421" width="0.2688%" height="15" fill="rgb(219,229,18)" fg:x="581622" fg:w="6444"/><text x="24.5122%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (9,939 samples, 0.41%)</title><rect x="24.1504%" y="437" width="0.4146%" height="15" fill="rgb(217,152,27)" fg:x="578943" fg:w="9939"/><text x="24.4004%" y="447.50"></text></g><g><title>read_extent_buffer (816 samples, 0.03%)</title><rect x="24.5310%" y="421" width="0.0340%" height="15" fill="rgb(225,71,47)" fg:x="588066" fg:w="816"/><text x="24.7810%" y="431.50"></text></g><g><title>btrfs_get_64 (292 samples, 0.01%)</title><rect x="24.5800%" y="421" width="0.0122%" height="15" fill="rgb(220,139,14)" fg:x="589240" fg:w="292"/><text x="24.8300%" y="431.50"></text></g><g><title>__radix_tree_lookup (823 samples, 0.03%)</title><rect x="24.6165%" y="405" width="0.0343%" height="15" fill="rgb(247,54,32)" fg:x="590115" fg:w="823"/><text x="24.8665%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (418 samples, 0.02%)</title><rect x="24.6509%" y="405" width="0.0174%" height="15" fill="rgb(252,131,39)" fg:x="590941" fg:w="418"/><text x="24.9009%" y="415.50"></text></g><g><title>mark_page_accessed (322 samples, 0.01%)</title><rect x="24.6549%" y="389" width="0.0134%" height="15" fill="rgb(210,108,39)" fg:x="591037" fg:w="322"/><text x="24.9049%" y="399.50"></text></g><g><title>find_extent_buffer (1,836 samples, 0.08%)</title><rect x="24.5921%" y="421" width="0.0766%" height="15" fill="rgb(205,23,29)" fg:x="589532" fg:w="1836"/><text x="24.8421%" y="431.50"></text></g><g><title>reada_for_balance (2,627 samples, 0.11%)</title><rect x="24.5650%" y="437" width="0.1096%" height="15" fill="rgb(246,139,46)" fg:x="588882" fg:w="2627"/><text x="24.8150%" y="447.50"></text></g><g><title>__list_del_entry_valid (357 samples, 0.01%)</title><rect x="24.7296%" y="373" width="0.0149%" height="15" fill="rgb(250,81,26)" fg:x="592826" fg:w="357"/><text x="24.9796%" y="383.50"></text></g><g><title>_raw_spin_lock (534 samples, 0.02%)</title><rect x="24.9397%" y="357" width="0.0223%" height="15" fill="rgb(214,104,7)" fg:x="597864" fg:w="534"/><text x="25.1897%" y="367.50"></text></g><g><title>native_queued_spin_lock_slowpath (315 samples, 0.01%)</title><rect x="24.9488%" y="341" width="0.0131%" height="15" fill="rgb(233,189,8)" fg:x="598083" fg:w="315"/><text x="25.1988%" y="351.50"></text></g><g><title>_raw_spin_lock_irqsave (621 samples, 0.03%)</title><rect x="24.9620%" y="357" width="0.0259%" height="15" fill="rgb(228,141,17)" fg:x="598398" fg:w="621"/><text x="25.2120%" y="367.50"></text></g><g><title>available_idle_cpu (537 samples, 0.02%)</title><rect x="25.0407%" y="341" width="0.0224%" height="15" fill="rgb(247,157,1)" fg:x="600286" fg:w="537"/><text x="25.2907%" y="351.50"></text></g><g><title>select_task_rq_fair (2,702 samples, 0.11%)</title><rect x="24.9914%" y="357" width="0.1127%" height="15" fill="rgb(249,225,5)" fg:x="599103" fg:w="2702"/><text x="25.2414%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (633 samples, 0.03%)</title><rect x="25.0777%" y="341" width="0.0264%" height="15" fill="rgb(242,55,13)" fg:x="601172" fg:w="633"/><text x="25.3277%" y="351.50"></text></g><g><title>update_curr (266 samples, 0.01%)</title><rect x="25.1957%" y="309" width="0.0111%" height="15" fill="rgb(230,49,50)" fg:x="604001" fg:w="266"/><text x="25.4457%" y="319.50"></text></g><g><title>enqueue_entity (2,401 samples, 0.10%)</title><rect x="25.1415%" y="325" width="0.1002%" height="15" fill="rgb(241,111,38)" fg:x="602701" fg:w="2401"/><text x="25.3915%" y="335.50"></text></g><g><title>update_load_avg (835 samples, 0.03%)</title><rect x="25.2068%" y="309" width="0.0348%" height="15" fill="rgb(252,155,4)" fg:x="604267" fg:w="835"/><text x="25.4568%" y="319.50"></text></g><g><title>enqueue_task_fair (3,066 samples, 0.13%)</title><rect x="25.1220%" y="341" width="0.1279%" height="15" fill="rgb(212,69,32)" fg:x="602234" fg:w="3066"/><text x="25.3720%" y="351.50"></text></g><g><title>ttwu_do_activate (6,362 samples, 0.27%)</title><rect x="25.1128%" y="357" width="0.2654%" height="15" fill="rgb(243,107,47)" fg:x="602014" fg:w="6362"/><text x="25.3628%" y="367.50"></text></g><g><title>psi_task_change (3,073 samples, 0.13%)</title><rect x="25.2500%" y="341" width="0.1282%" height="15" fill="rgb(247,130,12)" fg:x="605303" fg:w="3073"/><text x="25.5000%" y="351.50"></text></g><g><title>psi_group_change (2,768 samples, 0.12%)</title><rect x="25.2628%" y="325" width="0.1155%" height="15" fill="rgb(233,74,16)" fg:x="605608" fg:w="2768"/><text x="25.5128%" y="335.50"></text></g><g><title>record_times (424 samples, 0.02%)</title><rect x="25.3605%" y="309" width="0.0177%" height="15" fill="rgb(208,58,18)" fg:x="607952" fg:w="424"/><text x="25.6105%" y="319.50"></text></g><g><title>sched_clock_cpu (280 samples, 0.01%)</title><rect x="25.3665%" y="293" width="0.0117%" height="15" fill="rgb(242,225,1)" fg:x="608096" fg:w="280"/><text x="25.6165%" y="303.50"></text></g><g><title>sched_clock (242 samples, 0.01%)</title><rect x="25.3681%" y="277" width="0.0101%" height="15" fill="rgb(249,39,40)" fg:x="608134" fg:w="242"/><text x="25.6181%" y="287.50"></text></g><g><title>resched_curr (265 samples, 0.01%)</title><rect x="25.3927%" y="325" width="0.0111%" height="15" fill="rgb(207,72,44)" fg:x="608723" fg:w="265"/><text x="25.6427%" y="335.50"></text></g><g><title>ttwu_do_wakeup (615 samples, 0.03%)</title><rect x="25.3782%" y="357" width="0.0257%" height="15" fill="rgb(215,193,12)" fg:x="608376" fg:w="615"/><text x="25.6282%" y="367.50"></text></g><g><title>check_preempt_curr (553 samples, 0.02%)</title><rect x="25.3808%" y="341" width="0.0231%" height="15" fill="rgb(248,41,39)" fg:x="608438" fg:w="553"/><text x="25.6308%" y="351.50"></text></g><g><title>ttwu_queue_wakelist (486 samples, 0.02%)</title><rect x="25.4039%" y="357" width="0.0203%" height="15" fill="rgb(253,85,4)" fg:x="608991" fg:w="486"/><text x="25.6539%" y="367.50"></text></g><g><title>__wake_up_common (17,569 samples, 0.73%)</title><rect x="24.7145%" y="405" width="0.7329%" height="15" fill="rgb(243,70,31)" fg:x="592466" fg:w="17569"/><text x="24.9645%" y="415.50"></text></g><g><title>autoremove_wake_function (17,255 samples, 0.72%)</title><rect x="24.7276%" y="389" width="0.7198%" height="15" fill="rgb(253,195,26)" fg:x="592780" fg:w="17255"/><text x="24.9776%" y="399.50"></text></g><g><title>try_to_wake_up (16,829 samples, 0.70%)</title><rect x="24.7454%" y="373" width="0.7020%" height="15" fill="rgb(243,42,11)" fg:x="593206" fg:w="16829"/><text x="24.9954%" y="383.50"></text></g><g><title>update_rq_clock (558 samples, 0.02%)</title><rect x="25.4241%" y="357" width="0.0233%" height="15" fill="rgb(239,66,17)" fg:x="609477" fg:w="558"/><text x="25.6741%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (2,395 samples, 0.10%)</title><rect x="25.4474%" y="405" width="0.0999%" height="15" fill="rgb(217,132,21)" fg:x="610035" fg:w="2395"/><text x="25.6974%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,218 samples, 0.09%)</title><rect x="25.4548%" y="389" width="0.0925%" height="15" fill="rgb(252,202,21)" fg:x="610212" fg:w="2218"/><text x="25.7048%" y="399.50"></text></g><g><title>__wake_up_common_lock (20,225 samples, 0.84%)</title><rect x="24.7118%" y="421" width="0.8437%" height="15" fill="rgb(233,98,36)" fg:x="592400" fg:w="20225"/><text x="24.9618%" y="431.50"></text></g><g><title>btrfs_lookup_inode (146,560 samples, 6.11%)</title><rect x="19.4624%" y="469" width="6.1137%" height="15" fill="rgb(216,153,54)" fg:x="466559" fg:w="146560"/><text x="19.7124%" y="479.50">btrfs_lo..</text></g><g><title>btrfs_search_slot (146,081 samples, 6.09%)</title><rect x="19.4823%" y="453" width="6.0937%" height="15" fill="rgb(250,99,7)" fg:x="467038" fg:w="146081"/><text x="19.7323%" y="463.50">btrfs_se..</text></g><g><title>unlock_up (21,555 samples, 0.90%)</title><rect x="24.6769%" y="437" width="0.8992%" height="15" fill="rgb(207,56,50)" fg:x="591564" fg:w="21555"/><text x="24.9269%" y="447.50"></text></g><g><title>btrfs_tree_unlock (487 samples, 0.02%)</title><rect x="25.5558%" y="421" width="0.0203%" height="15" fill="rgb(244,61,34)" fg:x="612632" fg:w="487"/><text x="25.8058%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (604 samples, 0.03%)</title><rect x="25.5761%" y="469" width="0.0252%" height="15" fill="rgb(241,50,38)" fg:x="613119" fg:w="604"/><text x="25.8261%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (343 samples, 0.01%)</title><rect x="25.5870%" y="453" width="0.0143%" height="15" fill="rgb(212,166,30)" fg:x="613380" fg:w="343"/><text x="25.8370%" y="463.50"></text></g><g><title>btrfs_release_delayed_inode (458 samples, 0.02%)</title><rect x="25.6013%" y="469" width="0.0191%" height="15" fill="rgb(249,127,32)" fg:x="613723" fg:w="458"/><text x="25.8513%" y="479.50"></text></g><g><title>select_task_rq_fair (752 samples, 0.03%)</title><rect x="25.6924%" y="389" width="0.0314%" height="15" fill="rgb(209,103,0)" fg:x="615907" fg:w="752"/><text x="25.9424%" y="399.50"></text></g><g><title>enqueue_entity (735 samples, 0.03%)</title><rect x="25.7350%" y="357" width="0.0307%" height="15" fill="rgb(238,209,51)" fg:x="616928" fg:w="735"/><text x="25.9850%" y="367.50"></text></g><g><title>enqueue_task_fair (899 samples, 0.04%)</title><rect x="25.7297%" y="373" width="0.0375%" height="15" fill="rgb(237,56,23)" fg:x="616802" fg:w="899"/><text x="25.9797%" y="383.50"></text></g><g><title>ttwu_do_activate (1,904 samples, 0.08%)</title><rect x="25.7271%" y="389" width="0.0794%" height="15" fill="rgb(215,153,46)" fg:x="616740" fg:w="1904"/><text x="25.9771%" y="399.50"></text></g><g><title>psi_task_change (942 samples, 0.04%)</title><rect x="25.7672%" y="373" width="0.0393%" height="15" fill="rgb(224,49,31)" fg:x="617702" fg:w="942"/><text x="26.0172%" y="383.50"></text></g><g><title>psi_group_change (837 samples, 0.03%)</title><rect x="25.7716%" y="357" width="0.0349%" height="15" fill="rgb(250,18,42)" fg:x="617807" fg:w="837"/><text x="26.0216%" y="367.50"></text></g><g><title>__wake_up_common (4,744 samples, 0.20%)</title><rect x="25.6292%" y="437" width="0.1979%" height="15" fill="rgb(215,176,39)" fg:x="614393" fg:w="4744"/><text x="25.8792%" y="447.50"></text></g><g><title>autoremove_wake_function (4,646 samples, 0.19%)</title><rect x="25.6333%" y="421" width="0.1938%" height="15" fill="rgb(223,77,29)" fg:x="614491" fg:w="4646"/><text x="25.8833%" y="431.50"></text></g><g><title>try_to_wake_up (4,526 samples, 0.19%)</title><rect x="25.6383%" y="405" width="0.1888%" height="15" fill="rgb(234,94,52)" fg:x="614611" fg:w="4526"/><text x="25.8883%" y="415.50"></text></g><g><title>__wake_up_common_lock (4,971 samples, 0.21%)</title><rect x="25.6282%" y="453" width="0.2074%" height="15" fill="rgb(220,154,50)" fg:x="614369" fg:w="4971"/><text x="25.8782%" y="463.50"></text></g><g><title>btrfs_tree_unlock (253 samples, 0.01%)</title><rect x="25.8356%" y="453" width="0.0106%" height="15" fill="rgb(212,11,10)" fg:x="619341" fg:w="253"/><text x="26.0856%" y="463.50"></text></g><g><title>_raw_spin_lock (420 samples, 0.02%)</title><rect x="25.8889%" y="437" width="0.0175%" height="15" fill="rgb(205,166,19)" fg:x="620618" fg:w="420"/><text x="26.1389%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,434 samples, 0.06%)</title><rect x="25.8468%" y="453" width="0.0598%" height="15" fill="rgb(244,198,16)" fg:x="619609" fg:w="1434"/><text x="26.0968%" y="463.50"></text></g><g><title>btrfs_release_path (7,279 samples, 0.30%)</title><rect x="25.6204%" y="469" width="0.3036%" height="15" fill="rgb(219,69,12)" fg:x="614181" fg:w="7279"/><text x="25.8704%" y="479.50"></text></g><g><title>release_extent_buffer (417 samples, 0.02%)</title><rect x="25.9066%" y="453" width="0.0174%" height="15" fill="rgb(245,30,7)" fg:x="621043" fg:w="417"/><text x="26.1566%" y="463.50"></text></g><g><title>__btrfs_tree_lock (251 samples, 0.01%)</title><rect x="25.9370%" y="437" width="0.0105%" height="15" fill="rgb(218,221,48)" fg:x="621772" fg:w="251"/><text x="26.1870%" y="447.50"></text></g><g><title>btrfs_lock_root_node (258 samples, 0.01%)</title><rect x="25.9370%" y="453" width="0.0108%" height="15" fill="rgb(216,66,15)" fg:x="621771" fg:w="258"/><text x="26.1870%" y="463.50"></text></g><g><title>btrfs_search_slot (788 samples, 0.03%)</title><rect x="25.9240%" y="469" width="0.0329%" height="15" fill="rgb(226,122,50)" fg:x="621460" fg:w="788"/><text x="26.1740%" y="479.50"></text></g><g><title>finish_one_item (1,145 samples, 0.05%)</title><rect x="25.9569%" y="469" width="0.0478%" height="15" fill="rgb(239,156,16)" fg:x="622248" fg:w="1145"/><text x="26.2069%" y="479.50"></text></g><g><title>__btrfs_update_delayed_inode (194,170 samples, 8.10%)</title><rect x="17.9585%" y="485" width="8.0997%" height="15" fill="rgb(224,27,38)" fg:x="430507" fg:w="194170"/><text x="18.2085%" y="495.50">__btrfs_upd..</text></g><g><title>write_extent_buffer (1,055 samples, 0.04%)</title><rect x="26.0142%" y="469" width="0.0440%" height="15" fill="rgb(224,39,27)" fg:x="623622" fg:w="1055"/><text x="26.2642%" y="479.50"></text></g><g><title>__radix_tree_lookup (260 samples, 0.01%)</title><rect x="26.0885%" y="469" width="0.0108%" height="15" fill="rgb(215,92,29)" fg:x="625402" fg:w="260"/><text x="26.3385%" y="479.50"></text></g><g><title>balance_dirty_pages_ratelimited (782 samples, 0.03%)</title><rect x="26.0671%" y="485" width="0.0326%" height="15" fill="rgb(207,159,16)" fg:x="624891" fg:w="782"/><text x="26.3171%" y="495.50"></text></g><g><title>btrfs_balance_delayed_items (424 samples, 0.02%)</title><rect x="26.1173%" y="469" width="0.0177%" height="15" fill="rgb(238,163,47)" fg:x="626093" fg:w="424"/><text x="26.3673%" y="479.50"></text></g><g><title>__queue_work (1,057 samples, 0.04%)</title><rect x="26.1378%" y="453" width="0.0441%" height="15" fill="rgb(219,91,49)" fg:x="626585" fg:w="1057"/><text x="26.3878%" y="463.50"></text></g><g><title>try_to_wake_up (726 samples, 0.03%)</title><rect x="26.1516%" y="437" width="0.0303%" height="15" fill="rgb(227,167,31)" fg:x="626916" fg:w="726"/><text x="26.4016%" y="447.50"></text></g><g><title>btrfs_btree_balance_dirty (1,953 samples, 0.08%)</title><rect x="26.1009%" y="485" width="0.0815%" height="15" fill="rgb(234,80,54)" fg:x="625700" fg:w="1953"/><text x="26.3509%" y="495.50"></text></g><g><title>queue_work_on (1,084 samples, 0.05%)</title><rect x="26.1371%" y="469" width="0.0452%" height="15" fill="rgb(212,114,2)" fg:x="626569" fg:w="1084"/><text x="26.3871%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (510 samples, 0.02%)</title><rect x="26.1924%" y="485" width="0.0213%" height="15" fill="rgb(234,50,24)" fg:x="627894" fg:w="510"/><text x="26.4424%" y="495.50"></text></g><g><title>kmem_cache_alloc (661 samples, 0.03%)</title><rect x="26.2145%" y="485" width="0.0276%" height="15" fill="rgb(221,68,8)" fg:x="628423" fg:w="661"/><text x="26.4645%" y="495.50"></text></g><g><title>kmem_cache_free (993 samples, 0.04%)</title><rect x="26.2420%" y="485" width="0.0414%" height="15" fill="rgb(254,180,31)" fg:x="629084" fg:w="993"/><text x="26.4920%" y="495.50"></text></g><g><title>mutex_lock (447 samples, 0.02%)</title><rect x="26.2835%" y="485" width="0.0186%" height="15" fill="rgb(247,130,50)" fg:x="630077" fg:w="447"/><text x="26.5335%" y="495.50"></text></g><g><title>mutex_unlock (442 samples, 0.02%)</title><rect x="26.3021%" y="485" width="0.0184%" height="15" fill="rgb(211,109,4)" fg:x="630524" fg:w="442"/><text x="26.5521%" y="495.50"></text></g><g><title>_raw_spin_lock (691 samples, 0.03%)</title><rect x="26.3850%" y="453" width="0.0288%" height="15" fill="rgb(238,50,21)" fg:x="632512" fg:w="691"/><text x="26.6350%" y="463.50"></text></g><g><title>join_transaction (1,377 samples, 0.06%)</title><rect x="26.3566%" y="469" width="0.0574%" height="15" fill="rgb(225,57,45)" fg:x="631829" fg:w="1377"/><text x="26.6066%" y="479.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (210,121 samples, 8.77%)</title><rect x="17.6883%" y="501" width="8.7651%" height="15" fill="rgb(209,196,50)" fg:x="424030" fg:w="210121"/><text x="17.9383%" y="511.50">btrfs_commit..</text></g><g><title>start_transaction (3,179 samples, 0.13%)</title><rect x="26.3208%" y="485" width="0.1326%" height="15" fill="rgb(242,140,13)" fg:x="630972" fg:w="3179"/><text x="26.5708%" y="495.50"></text></g><g><title>kmem_cache_alloc (945 samples, 0.04%)</title><rect x="26.4140%" y="469" width="0.0394%" height="15" fill="rgb(217,111,7)" fg:x="633206" fg:w="945"/><text x="26.6640%" y="479.50"></text></g><g><title>btrfs_get_32 (590 samples, 0.02%)</title><rect x="26.5081%" y="469" width="0.0246%" height="15" fill="rgb(253,193,51)" fg:x="635462" fg:w="590"/><text x="26.7581%" y="479.50"></text></g><g><title>btrfs_get_token_32 (350 samples, 0.01%)</title><rect x="26.5327%" y="469" width="0.0146%" height="15" fill="rgb(252,70,29)" fg:x="636052" fg:w="350"/><text x="26.7827%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (660 samples, 0.03%)</title><rect x="26.5473%" y="469" width="0.0275%" height="15" fill="rgb(232,127,12)" fg:x="636402" fg:w="660"/><text x="26.7973%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (318 samples, 0.01%)</title><rect x="26.5616%" y="453" width="0.0133%" height="15" fill="rgb(211,180,21)" fg:x="636744" fg:w="318"/><text x="26.8116%" y="463.50"></text></g><g><title>btrfs_set_token_32 (270 samples, 0.01%)</title><rect x="26.5748%" y="469" width="0.0113%" height="15" fill="rgb(229,72,13)" fg:x="637062" fg:w="270"/><text x="26.8248%" y="479.50"></text></g><g><title>leaf_space_used (669 samples, 0.03%)</title><rect x="26.5861%" y="469" width="0.0279%" height="15" fill="rgb(240,211,49)" fg:x="637332" fg:w="669"/><text x="26.8361%" y="479.50"></text></g><g><title>btrfs_get_32 (493 samples, 0.02%)</title><rect x="26.5934%" y="453" width="0.0206%" height="15" fill="rgb(219,149,40)" fg:x="637508" fg:w="493"/><text x="26.8434%" y="463.50"></text></g><g><title>memcpy_extent_buffer (461 samples, 0.02%)</title><rect x="26.6140%" y="469" width="0.0192%" height="15" fill="rgb(210,127,46)" fg:x="638001" fg:w="461"/><text x="26.8640%" y="479.50"></text></g><g><title>memmove_extent_buffer (259 samples, 0.01%)</title><rect x="26.6332%" y="469" width="0.0108%" height="15" fill="rgb(220,106,7)" fg:x="638462" fg:w="259"/><text x="26.8832%" y="479.50"></text></g><g><title>btrfs_del_items (4,258 samples, 0.18%)</title><rect x="26.4665%" y="485" width="0.1776%" height="15" fill="rgb(249,31,22)" fg:x="634464" fg:w="4258"/><text x="26.7165%" y="495.50"></text></g><g><title>__task_rq_lock (378 samples, 0.02%)</title><rect x="26.8354%" y="389" width="0.0158%" height="15" fill="rgb(253,1,49)" fg:x="643308" fg:w="378"/><text x="27.0854%" y="399.50"></text></g><g><title>_raw_spin_lock (364 samples, 0.02%)</title><rect x="26.8360%" y="373" width="0.0152%" height="15" fill="rgb(227,144,33)" fg:x="643322" fg:w="364"/><text x="27.0860%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (354 samples, 0.01%)</title><rect x="26.8364%" y="357" width="0.0148%" height="15" fill="rgb(249,163,44)" fg:x="643332" fg:w="354"/><text x="27.0864%" y="367.50"></text></g><g><title>select_task_rq_fair (844 samples, 0.04%)</title><rect x="26.8700%" y="389" width="0.0352%" height="15" fill="rgb(234,15,39)" fg:x="644137" fg:w="844"/><text x="27.1200%" y="399.50"></text></g><g><title>enqueue_entity (914 samples, 0.04%)</title><rect x="26.9192%" y="357" width="0.0381%" height="15" fill="rgb(207,66,16)" fg:x="645316" fg:w="914"/><text x="27.1692%" y="367.50"></text></g><g><title>update_load_avg (328 samples, 0.01%)</title><rect x="26.9436%" y="341" width="0.0137%" height="15" fill="rgb(233,112,24)" fg:x="645902" fg:w="328"/><text x="27.1936%" y="351.50"></text></g><g><title>enqueue_task_fair (1,125 samples, 0.05%)</title><rect x="26.9111%" y="373" width="0.0469%" height="15" fill="rgb(230,90,22)" fg:x="645124" fg:w="1125"/><text x="27.1611%" y="383.50"></text></g><g><title>ttwu_do_activate (2,339 samples, 0.10%)</title><rect x="26.9075%" y="389" width="0.0976%" height="15" fill="rgb(229,61,13)" fg:x="645036" fg:w="2339"/><text x="27.1575%" y="399.50"></text></g><g><title>psi_task_change (1,125 samples, 0.05%)</title><rect x="26.9581%" y="373" width="0.0469%" height="15" fill="rgb(225,57,24)" fg:x="646250" fg:w="1125"/><text x="27.2081%" y="383.50"></text></g><g><title>psi_group_change (986 samples, 0.04%)</title><rect x="26.9639%" y="357" width="0.0411%" height="15" fill="rgb(208,169,48)" fg:x="646389" fg:w="986"/><text x="27.2139%" y="367.50"></text></g><g><title>__wake_up_common (9,001 samples, 0.38%)</title><rect x="26.6563%" y="437" width="0.3755%" height="15" fill="rgb(244,218,51)" fg:x="639014" fg:w="9001"/><text x="26.9063%" y="447.50"></text></g><g><title>autoremove_wake_function (8,824 samples, 0.37%)</title><rect x="26.6637%" y="421" width="0.3681%" height="15" fill="rgb(214,148,10)" fg:x="639191" fg:w="8824"/><text x="26.9137%" y="431.50"></text></g><g><title>try_to_wake_up (8,717 samples, 0.36%)</title><rect x="26.6681%" y="405" width="0.3636%" height="15" fill="rgb(225,174,27)" fg:x="639298" fg:w="8717"/><text x="26.9181%" y="415.50"></text></g><g><title>__wake_up_common_lock (9,261 samples, 0.39%)</title><rect x="26.6543%" y="453" width="0.3863%" height="15" fill="rgb(230,96,26)" fg:x="638967" fg:w="9261"/><text x="26.9043%" y="463.50"></text></g><g><title>btrfs_tree_unlock (796 samples, 0.03%)</title><rect x="27.0406%" y="453" width="0.0332%" height="15" fill="rgb(232,10,30)" fg:x="648228" fg:w="796"/><text x="27.2906%" y="463.50"></text></g><g><title>_raw_spin_lock (446 samples, 0.02%)</title><rect x="27.1183%" y="437" width="0.0186%" height="15" fill="rgb(222,8,50)" fg:x="650089" fg:w="446"/><text x="27.3683%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,499 samples, 0.06%)</title><rect x="27.0746%" y="453" width="0.0625%" height="15" fill="rgb(213,81,27)" fg:x="649042" fg:w="1499"/><text x="27.3246%" y="463.50"></text></g><g><title>btrfs_free_path (12,245 samples, 0.51%)</title><rect x="26.6441%" y="485" width="0.5108%" height="15" fill="rgb(245,50,10)" fg:x="638722" fg:w="12245"/><text x="26.8941%" y="495.50"></text></g><g><title>btrfs_release_path (12,214 samples, 0.51%)</title><rect x="26.6454%" y="469" width="0.5095%" height="15" fill="rgb(216,100,18)" fg:x="638753" fg:w="12214"/><text x="26.8954%" y="479.50"></text></g><g><title>release_extent_buffer (426 samples, 0.02%)</title><rect x="27.1371%" y="453" width="0.0178%" height="15" fill="rgb(236,147,54)" fg:x="650541" fg:w="426"/><text x="27.3871%" y="463.50"></text></g><g><title>_raw_read_lock (867 samples, 0.04%)</title><rect x="27.3074%" y="437" width="0.0362%" height="15" fill="rgb(205,143,26)" fg:x="654622" fg:w="867"/><text x="27.5574%" y="447.50"></text></g><g><title>finish_wait (5,904 samples, 0.25%)</title><rect x="27.3471%" y="437" width="0.2463%" height="15" fill="rgb(236,26,9)" fg:x="655574" fg:w="5904"/><text x="27.5971%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (5,637 samples, 0.24%)</title><rect x="27.3582%" y="421" width="0.2351%" height="15" fill="rgb(221,165,53)" fg:x="655841" fg:w="5637"/><text x="27.6082%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,426 samples, 0.23%)</title><rect x="27.3670%" y="405" width="0.2263%" height="15" fill="rgb(214,110,17)" fg:x="656052" fg:w="5426"/><text x="27.6170%" y="415.50"></text></g><g><title>__list_add_valid (410 samples, 0.02%)</title><rect x="27.6341%" y="421" width="0.0171%" height="15" fill="rgb(237,197,12)" fg:x="662456" fg:w="410"/><text x="27.8841%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (15,839 samples, 0.66%)</title><rect x="27.6513%" y="421" width="0.6607%" height="15" fill="rgb(205,84,17)" fg:x="662866" fg:w="15839"/><text x="27.9013%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (15,178 samples, 0.63%)</title><rect x="27.6788%" y="405" width="0.6331%" height="15" fill="rgb(237,18,45)" fg:x="663527" fg:w="15178"/><text x="27.9288%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (278 samples, 0.01%)</title><rect x="28.3120%" y="421" width="0.0116%" height="15" fill="rgb(221,87,14)" fg:x="678705" fg:w="278"/><text x="28.5620%" y="431.50"></text></g><g><title>prepare_to_wait_event (17,478 samples, 0.73%)</title><rect x="27.5945%" y="437" width="0.7291%" height="15" fill="rgb(238,186,15)" fg:x="661506" fg:w="17478"/><text x="27.8445%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (11,337 samples, 0.47%)</title><rect x="28.3236%" y="437" width="0.4729%" height="15" fill="rgb(208,115,11)" fg:x="678984" fg:w="11337"/><text x="28.5736%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,097 samples, 0.34%)</title><rect x="28.4588%" y="421" width="0.3378%" height="15" fill="rgb(254,175,0)" fg:x="682224" fg:w="8097"/><text x="28.7088%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (460 samples, 0.02%)</title><rect x="28.8294%" y="405" width="0.0192%" height="15" fill="rgb(227,24,42)" fg:x="691109" fg:w="460"/><text x="29.0794%" y="415.50"></text></g><g><title>update_curr (814 samples, 0.03%)</title><rect x="28.8951%" y="373" width="0.0340%" height="15" fill="rgb(223,211,37)" fg:x="692684" fg:w="814"/><text x="29.1451%" y="383.50"></text></g><g><title>dequeue_entity (2,230 samples, 0.09%)</title><rect x="28.8664%" y="389" width="0.0930%" height="15" fill="rgb(235,49,27)" fg:x="691997" fg:w="2230"/><text x="29.1164%" y="399.50"></text></g><g><title>update_load_avg (729 samples, 0.03%)</title><rect x="28.9291%" y="373" width="0.0304%" height="15" fill="rgb(254,97,51)" fg:x="693498" fg:w="729"/><text x="29.1791%" y="383.50"></text></g><g><title>dequeue_task_fair (2,748 samples, 0.11%)</title><rect x="28.8534%" y="405" width="0.1146%" height="15" fill="rgb(249,51,40)" fg:x="691685" fg:w="2748"/><text x="29.1034%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (5,405 samples, 0.23%)</title><rect x="28.9897%" y="389" width="0.2255%" height="15" fill="rgb(210,128,45)" fg:x="694952" fg:w="5405"/><text x="29.2397%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,301 samples, 0.22%)</title><rect x="28.9940%" y="373" width="0.2211%" height="15" fill="rgb(224,137,50)" fg:x="695056" fg:w="5301"/><text x="29.2440%" y="383.50"></text></g><g><title>native_write_msr (5,263 samples, 0.22%)</title><rect x="28.9956%" y="357" width="0.2195%" height="15" fill="rgb(242,15,9)" fg:x="695094" fg:w="5263"/><text x="29.2456%" y="367.50"></text></g><g><title>finish_task_switch (6,142 samples, 0.26%)</title><rect x="28.9681%" y="405" width="0.2562%" height="15" fill="rgb(233,187,41)" fg:x="694433" fg:w="6142"/><text x="29.2181%" y="415.50"></text></g><g><title>pick_next_task_fair (469 samples, 0.02%)</title><rect x="29.2248%" y="405" width="0.0196%" height="15" fill="rgb(227,2,29)" fg:x="700587" fg:w="469"/><text x="29.4748%" y="415.50"></text></g><g><title>__update_idle_core (374 samples, 0.02%)</title><rect x="29.2475%" y="389" width="0.0156%" height="15" fill="rgb(222,70,3)" fg:x="701132" fg:w="374"/><text x="29.4975%" y="399.50"></text></g><g><title>pick_next_task_idle (451 samples, 0.02%)</title><rect x="29.2443%" y="405" width="0.0188%" height="15" fill="rgb(213,11,42)" fg:x="701056" fg:w="451"/><text x="29.4943%" y="415.50"></text></g><g><title>psi_task_change (2,060 samples, 0.09%)</title><rect x="29.2631%" y="405" width="0.0859%" height="15" fill="rgb(225,150,9)" fg:x="701507" fg:w="2060"/><text x="29.5131%" y="415.50"></text></g><g><title>psi_group_change (1,752 samples, 0.07%)</title><rect x="29.2760%" y="389" width="0.0731%" height="15" fill="rgb(230,162,45)" fg:x="701815" fg:w="1752"/><text x="29.5260%" y="399.50"></text></g><g><title>record_times (390 samples, 0.02%)</title><rect x="29.3328%" y="373" width="0.0163%" height="15" fill="rgb(222,14,52)" fg:x="703177" fg:w="390"/><text x="29.5828%" y="383.50"></text></g><g><title>sched_clock_cpu (255 samples, 0.01%)</title><rect x="29.3384%" y="357" width="0.0106%" height="15" fill="rgb(254,198,14)" fg:x="703312" fg:w="255"/><text x="29.5884%" y="367.50"></text></g><g><title>psi_task_switch (255 samples, 0.01%)</title><rect x="29.3491%" y="405" width="0.0106%" height="15" fill="rgb(220,217,30)" fg:x="703567" fg:w="255"/><text x="29.5991%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (50,615 samples, 2.11%)</title><rect x="27.2668%" y="453" width="2.1114%" height="15" fill="rgb(215,146,41)" fg:x="653650" fg:w="50615"/><text x="27.5168%" y="463.50">_..</text></g><g><title>schedule (13,943 samples, 0.58%)</title><rect x="28.7966%" y="437" width="0.5816%" height="15" fill="rgb(217,27,36)" fg:x="690322" fg:w="13943"/><text x="29.0466%" y="447.50"></text></g><g><title>__schedule (13,853 samples, 0.58%)</title><rect x="28.8003%" y="421" width="0.5779%" height="15" fill="rgb(219,218,39)" fg:x="690412" fg:w="13853"/><text x="29.0503%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (51,833 samples, 2.16%)</title><rect x="27.2576%" y="469" width="2.1622%" height="15" fill="rgb(219,4,42)" fg:x="653430" fg:w="51833"/><text x="27.5076%" y="479.50">_..</text></g><g><title>btrfs_root_node (998 samples, 0.04%)</title><rect x="29.3782%" y="453" width="0.0416%" height="15" fill="rgb(249,119,36)" fg:x="704265" fg:w="998"/><text x="29.6282%" y="463.50"></text></g><g><title>prepare_to_wait_event (466 samples, 0.02%)</title><rect x="29.4371%" y="453" width="0.0194%" height="15" fill="rgb(209,23,33)" fg:x="705676" fg:w="466"/><text x="29.6871%" y="463.50"></text></g><g><title>update_curr (343 samples, 0.01%)</title><rect x="29.4958%" y="389" width="0.0143%" height="15" fill="rgb(211,10,0)" fg:x="707085" fg:w="343"/><text x="29.7458%" y="399.50"></text></g><g><title>dequeue_entity (910 samples, 0.04%)</title><rect x="29.4842%" y="405" width="0.0380%" height="15" fill="rgb(208,99,37)" fg:x="706805" fg:w="910"/><text x="29.7342%" y="415.50"></text></g><g><title>update_load_avg (287 samples, 0.01%)</title><rect x="29.5101%" y="389" width="0.0120%" height="15" fill="rgb(213,132,31)" fg:x="707428" fg:w="287"/><text x="29.7601%" y="399.50"></text></g><g><title>dequeue_task_fair (1,092 samples, 0.05%)</title><rect x="29.4798%" y="421" width="0.0456%" height="15" fill="rgb(243,129,40)" fg:x="706700" fg:w="1092"/><text x="29.7298%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (2,471 samples, 0.10%)</title><rect x="29.5332%" y="405" width="0.1031%" height="15" fill="rgb(210,66,33)" fg:x="707981" fg:w="2471"/><text x="29.7832%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,441 samples, 0.10%)</title><rect x="29.5345%" y="389" width="0.1018%" height="15" fill="rgb(209,189,4)" fg:x="708011" fg:w="2441"/><text x="29.7845%" y="399.50"></text></g><g><title>native_write_msr (2,426 samples, 0.10%)</title><rect x="29.5351%" y="373" width="0.1012%" height="15" fill="rgb(214,107,37)" fg:x="708026" fg:w="2426"/><text x="29.7851%" y="383.50"></text></g><g><title>finish_task_switch (2,753 samples, 0.11%)</title><rect x="29.5253%" y="421" width="0.1148%" height="15" fill="rgb(245,88,54)" fg:x="707792" fg:w="2753"/><text x="29.7753%" y="431.50"></text></g><g><title>psi_task_change (800 samples, 0.03%)</title><rect x="29.6563%" y="421" width="0.0334%" height="15" fill="rgb(205,146,20)" fg:x="710931" fg:w="800"/><text x="29.9063%" y="431.50"></text></g><g><title>psi_group_change (650 samples, 0.03%)</title><rect x="29.6625%" y="405" width="0.0271%" height="15" fill="rgb(220,161,25)" fg:x="711081" fg:w="650"/><text x="29.9125%" y="415.50"></text></g><g><title>__btrfs_tree_lock (6,748 samples, 0.28%)</title><rect x="29.4198%" y="469" width="0.2815%" height="15" fill="rgb(215,152,15)" fg:x="705263" fg:w="6748"/><text x="29.6698%" y="479.50"></text></g><g><title>schedule (5,869 samples, 0.24%)</title><rect x="29.4565%" y="453" width="0.2448%" height="15" fill="rgb(233,192,44)" fg:x="706142" fg:w="5869"/><text x="29.7065%" y="463.50"></text></g><g><title>__schedule (5,827 samples, 0.24%)</title><rect x="29.4582%" y="437" width="0.2431%" height="15" fill="rgb(240,170,46)" fg:x="706184" fg:w="5827"/><text x="29.7082%" y="447.50"></text></g><g><title>_cond_resched (284 samples, 0.01%)</title><rect x="29.7649%" y="437" width="0.0118%" height="15" fill="rgb(207,104,33)" fg:x="713534" fg:w="284"/><text x="30.0149%" y="447.50"></text></g><g><title>_raw_write_lock (776 samples, 0.03%)</title><rect x="29.7798%" y="437" width="0.0324%" height="15" fill="rgb(219,21,39)" fg:x="713893" fg:w="776"/><text x="30.0298%" y="447.50"></text></g><g><title>finish_wait (4,583 samples, 0.19%)</title><rect x="29.8127%" y="437" width="0.1912%" height="15" fill="rgb(214,133,29)" fg:x="714682" fg:w="4583"/><text x="30.0627%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,319 samples, 0.18%)</title><rect x="29.8238%" y="421" width="0.1802%" height="15" fill="rgb(226,93,6)" fg:x="714946" fg:w="4319"/><text x="30.0738%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,077 samples, 0.17%)</title><rect x="29.8338%" y="405" width="0.1701%" height="15" fill="rgb(252,222,34)" fg:x="715188" fg:w="4077"/><text x="30.0838%" y="415.50"></text></g><g><title>__list_add_valid (338 samples, 0.01%)</title><rect x="30.0502%" y="421" width="0.0141%" height="15" fill="rgb(252,92,48)" fg:x="720374" fg:w="338"/><text x="30.3002%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (11,936 samples, 0.50%)</title><rect x="30.0643%" y="421" width="0.4979%" height="15" fill="rgb(245,223,24)" fg:x="720712" fg:w="11936"/><text x="30.3143%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,055 samples, 0.46%)</title><rect x="30.1010%" y="405" width="0.4612%" height="15" fill="rgb(205,176,3)" fg:x="721593" fg:w="11055"/><text x="30.3510%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (299 samples, 0.01%)</title><rect x="30.5622%" y="421" width="0.0125%" height="15" fill="rgb(235,151,15)" fg:x="732648" fg:w="299"/><text x="30.8122%" y="431.50"></text></g><g><title>prepare_to_wait_event (13,631 samples, 0.57%)</title><rect x="30.0061%" y="437" width="0.5686%" height="15" fill="rgb(237,209,11)" fg:x="719317" fg:w="13631"/><text x="30.2561%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (19,708 samples, 0.82%)</title><rect x="30.5747%" y="437" width="0.8221%" height="15" fill="rgb(243,227,24)" fg:x="732948" fg:w="19708"/><text x="30.8247%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,670 samples, 0.40%)</title><rect x="30.9934%" y="421" width="0.4034%" height="15" fill="rgb(239,193,16)" fg:x="742986" fg:w="9670"/><text x="31.2434%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (536 samples, 0.02%)</title><rect x="31.4360%" y="405" width="0.0224%" height="15" fill="rgb(231,27,9)" fg:x="753595" fg:w="536"/><text x="31.6860%" y="415.50"></text></g><g><title>update_cfs_group (314 samples, 0.01%)</title><rect x="31.5046%" y="373" width="0.0131%" height="15" fill="rgb(219,169,10)" fg:x="755239" fg:w="314"/><text x="31.7546%" y="383.50"></text></g><g><title>update_curr (1,021 samples, 0.04%)</title><rect x="31.5177%" y="373" width="0.0426%" height="15" fill="rgb(244,229,43)" fg:x="755553" fg:w="1021"/><text x="31.7677%" y="383.50"></text></g><g><title>__update_load_avg_cfs_rq (269 samples, 0.01%)</title><rect x="31.5741%" y="357" width="0.0112%" height="15" fill="rgb(254,38,20)" fg:x="756906" fg:w="269"/><text x="31.8241%" y="367.50"></text></g><g><title>__update_load_avg_se (333 samples, 0.01%)</title><rect x="31.5853%" y="357" width="0.0139%" height="15" fill="rgb(250,47,30)" fg:x="757175" fg:w="333"/><text x="31.8353%" y="367.50"></text></g><g><title>dequeue_entity (2,911 samples, 0.12%)</title><rect x="31.4792%" y="389" width="0.1214%" height="15" fill="rgb(224,124,36)" fg:x="754630" fg:w="2911"/><text x="31.7292%" y="399.50"></text></g><g><title>update_load_avg (967 samples, 0.04%)</title><rect x="31.5603%" y="373" width="0.0403%" height="15" fill="rgb(246,68,51)" fg:x="756574" fg:w="967"/><text x="31.8103%" y="383.50"></text></g><g><title>dequeue_task_fair (3,458 samples, 0.14%)</title><rect x="31.4660%" y="405" width="0.1442%" height="15" fill="rgb(253,43,49)" fg:x="754314" fg:w="3458"/><text x="31.7160%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (5,142 samples, 0.21%)</title><rect x="31.6365%" y="389" width="0.2145%" height="15" fill="rgb(219,54,36)" fg:x="758401" fg:w="5142"/><text x="31.8865%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,998 samples, 0.21%)</title><rect x="31.6425%" y="373" width="0.2085%" height="15" fill="rgb(227,133,34)" fg:x="758545" fg:w="4998"/><text x="31.8925%" y="383.50"></text></g><g><title>native_write_msr (4,947 samples, 0.21%)</title><rect x="31.6446%" y="357" width="0.2064%" height="15" fill="rgb(247,227,15)" fg:x="758596" fg:w="4947"/><text x="31.8946%" y="367.50"></text></g><g><title>finish_task_switch (6,027 samples, 0.25%)</title><rect x="31.6102%" y="405" width="0.2514%" height="15" fill="rgb(229,96,14)" fg:x="757772" fg:w="6027"/><text x="31.8602%" y="415.50"></text></g><g><title>newidle_balance (326 samples, 0.01%)</title><rect x="31.8697%" y="389" width="0.0136%" height="15" fill="rgb(220,79,17)" fg:x="763993" fg:w="326"/><text x="32.1197%" y="399.50"></text></g><g><title>pick_next_task_fair (657 samples, 0.03%)</title><rect x="31.8620%" y="405" width="0.0274%" height="15" fill="rgb(205,131,53)" fg:x="763807" fg:w="657"/><text x="32.1120%" y="415.50"></text></g><g><title>__update_idle_core (547 samples, 0.02%)</title><rect x="31.8930%" y="389" width="0.0228%" height="15" fill="rgb(209,50,29)" fg:x="764550" fg:w="547"/><text x="32.1430%" y="399.50"></text></g><g><title>pick_next_task_idle (634 samples, 0.03%)</title><rect x="31.8894%" y="405" width="0.0264%" height="15" fill="rgb(245,86,46)" fg:x="764464" fg:w="634"/><text x="32.1394%" y="415.50"></text></g><g><title>psi_task_change (2,650 samples, 0.11%)</title><rect x="31.9158%" y="405" width="0.1105%" height="15" fill="rgb(235,66,46)" fg:x="765098" fg:w="2650"/><text x="32.1658%" y="415.50"></text></g><g><title>psi_group_change (2,264 samples, 0.09%)</title><rect x="31.9319%" y="389" width="0.0944%" height="15" fill="rgb(232,148,31)" fg:x="765484" fg:w="2264"/><text x="32.1819%" y="399.50"></text></g><g><title>record_times (560 samples, 0.02%)</title><rect x="32.0030%" y="373" width="0.0234%" height="15" fill="rgb(217,149,8)" fg:x="767188" fg:w="560"/><text x="32.2530%" y="383.50"></text></g><g><title>sched_clock_cpu (358 samples, 0.01%)</title><rect x="32.0114%" y="357" width="0.0149%" height="15" fill="rgb(209,183,11)" fg:x="767390" fg:w="358"/><text x="32.2614%" y="367.50"></text></g><g><title>sched_clock (324 samples, 0.01%)</title><rect x="32.0129%" y="341" width="0.0135%" height="15" fill="rgb(208,55,20)" fg:x="767424" fg:w="324"/><text x="32.2629%" y="351.50"></text></g><g><title>native_sched_clock (300 samples, 0.01%)</title><rect x="32.0139%" y="325" width="0.0125%" height="15" fill="rgb(218,39,14)" fg:x="767448" fg:w="300"/><text x="32.2639%" y="335.50"></text></g><g><title>psi_task_switch (271 samples, 0.01%)</title><rect x="32.0264%" y="405" width="0.0113%" height="15" fill="rgb(216,169,33)" fg:x="767748" fg:w="271"/><text x="32.2764%" y="415.50"></text></g><g><title>__schedule (15,670 samples, 0.65%)</title><rect x="31.4058%" y="421" width="0.6537%" height="15" fill="rgb(233,80,24)" fg:x="752871" fg:w="15670"/><text x="31.6558%" y="431.50"></text></g><g><title>update_rq_clock (272 samples, 0.01%)</title><rect x="32.0481%" y="405" width="0.0113%" height="15" fill="rgb(213,179,31)" fg:x="768269" fg:w="272"/><text x="32.2981%" y="415.50"></text></g><g><title>__btrfs_tree_lock (56,253 samples, 2.35%)</title><rect x="29.7130%" y="453" width="2.3466%" height="15" fill="rgb(209,19,5)" fg:x="712290" fg:w="56253"/><text x="29.9630%" y="463.50">_..</text></g><g><title>schedule (15,887 samples, 0.66%)</title><rect x="31.3968%" y="437" width="0.6627%" height="15" fill="rgb(219,18,35)" fg:x="752656" fg:w="15887"/><text x="31.6468%" y="447.50"></text></g><g><title>btrfs_lock_root_node (56,925 samples, 2.37%)</title><rect x="29.7104%" y="469" width="2.3746%" height="15" fill="rgb(209,169,16)" fg:x="712228" fg:w="56925"/><text x="29.9604%" y="479.50">bt..</text></g><g><title>btrfs_root_node (610 samples, 0.03%)</title><rect x="32.0595%" y="453" width="0.0254%" height="15" fill="rgb(245,90,51)" fg:x="768543" fg:w="610"/><text x="32.3095%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (963 samples, 0.04%)</title><rect x="32.0850%" y="469" width="0.0402%" height="15" fill="rgb(220,99,45)" fg:x="769153" fg:w="963"/><text x="32.3350%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (390 samples, 0.02%)</title><rect x="32.1089%" y="453" width="0.0163%" height="15" fill="rgb(249,89,25)" fg:x="769726" fg:w="390"/><text x="32.3589%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (571 samples, 0.02%)</title><rect x="32.1253%" y="469" width="0.0238%" height="15" fill="rgb(239,193,0)" fg:x="770119" fg:w="571"/><text x="32.3753%" y="479.50"></text></g><g><title>_raw_write_lock (578 samples, 0.02%)</title><rect x="32.1568%" y="453" width="0.0241%" height="15" fill="rgb(231,126,1)" fg:x="770875" fg:w="578"/><text x="32.4068%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (3,927 samples, 0.16%)</title><rect x="32.1491%" y="469" width="0.1638%" height="15" fill="rgb(243,166,3)" fg:x="770690" fg:w="3927"/><text x="32.3991%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (3,164 samples, 0.13%)</title><rect x="32.1809%" y="453" width="0.1320%" height="15" fill="rgb(223,22,34)" fg:x="771453" fg:w="3164"/><text x="32.4309%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (668 samples, 0.03%)</title><rect x="32.3133%" y="469" width="0.0279%" height="15" fill="rgb(251,52,51)" fg:x="774626" fg:w="668"/><text x="32.5633%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (4,634 samples, 0.19%)</title><rect x="32.3411%" y="469" width="0.1933%" height="15" fill="rgb(221,165,28)" fg:x="775294" fg:w="4634"/><text x="32.5911%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (930 samples, 0.04%)</title><rect x="32.5620%" y="453" width="0.0388%" height="15" fill="rgb(218,121,47)" fg:x="780588" fg:w="930"/><text x="32.8120%" y="463.50"></text></g><g><title>verify_parent_transid (733 samples, 0.03%)</title><rect x="32.5702%" y="437" width="0.0306%" height="15" fill="rgb(209,120,9)" fg:x="780785" fg:w="733"/><text x="32.8202%" y="447.50"></text></g><g><title>btrfs_get_64 (912 samples, 0.04%)</title><rect x="32.6008%" y="453" width="0.0380%" height="15" fill="rgb(236,68,12)" fg:x="781518" fg:w="912"/><text x="32.8508%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,529 samples, 0.11%)</title><rect x="32.7437%" y="437" width="0.1055%" height="15" fill="rgb(225,194,26)" fg:x="784945" fg:w="2529"/><text x="32.9937%" y="447.50"></text></g><g><title>mark_page_accessed (841 samples, 0.04%)</title><rect x="32.8624%" y="421" width="0.0351%" height="15" fill="rgb(231,84,39)" fg:x="787790" fg:w="841"/><text x="33.1124%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,153 samples, 0.05%)</title><rect x="32.8497%" y="437" width="0.0481%" height="15" fill="rgb(210,11,45)" fg:x="787485" fg:w="1153"/><text x="33.0997%" y="447.50"></text></g><g><title>find_extent_buffer (5,907 samples, 0.25%)</title><rect x="32.6532%" y="453" width="0.2464%" height="15" fill="rgb(224,54,52)" fg:x="782775" fg:w="5907"/><text x="32.9032%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (9,646 samples, 0.40%)</title><rect x="32.5345%" y="469" width="0.4024%" height="15" fill="rgb(238,102,14)" fg:x="779928" fg:w="9646"/><text x="32.7845%" y="479.50"></text></g><g><title>read_extent_buffer (892 samples, 0.04%)</title><rect x="32.8996%" y="453" width="0.0372%" height="15" fill="rgb(243,160,52)" fg:x="788682" fg:w="892"/><text x="33.1496%" y="463.50"></text></g><g><title>__list_del_entry_valid (345 samples, 0.01%)</title><rect x="32.9884%" y="405" width="0.0144%" height="15" fill="rgb(216,114,19)" fg:x="790809" fg:w="345"/><text x="33.2384%" y="415.50"></text></g><g><title>_raw_spin_lock (522 samples, 0.02%)</title><rect x="33.0679%" y="389" width="0.0218%" height="15" fill="rgb(244,166,37)" fg:x="792715" fg:w="522"/><text x="33.3179%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (322 samples, 0.01%)</title><rect x="33.0762%" y="373" width="0.0134%" height="15" fill="rgb(246,29,44)" fg:x="792915" fg:w="322"/><text x="33.3262%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (565 samples, 0.02%)</title><rect x="33.0896%" y="389" width="0.0236%" height="15" fill="rgb(215,56,53)" fg:x="793237" fg:w="565"/><text x="33.3396%" y="399.50"></text></g><g><title>available_idle_cpu (496 samples, 0.02%)</title><rect x="33.1612%" y="373" width="0.0207%" height="15" fill="rgb(217,60,2)" fg:x="794952" fg:w="496"/><text x="33.4112%" y="383.50"></text></g><g><title>select_task_rq_fair (2,457 samples, 0.10%)</title><rect x="33.1160%" y="389" width="0.1025%" height="15" fill="rgb(207,26,24)" fg:x="793869" fg:w="2457"/><text x="33.3660%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (532 samples, 0.02%)</title><rect x="33.1963%" y="373" width="0.0222%" height="15" fill="rgb(252,210,15)" fg:x="795794" fg:w="532"/><text x="33.4463%" y="383.50"></text></g><g><title>update_curr (267 samples, 0.01%)</title><rect x="33.3030%" y="341" width="0.0111%" height="15" fill="rgb(253,209,26)" fg:x="798352" fg:w="267"/><text x="33.5530%" y="351.50"></text></g><g><title>enqueue_entity (2,261 samples, 0.09%)</title><rect x="33.2525%" y="357" width="0.0943%" height="15" fill="rgb(238,170,14)" fg:x="797141" fg:w="2261"/><text x="33.5025%" y="367.50"></text></g><g><title>update_load_avg (783 samples, 0.03%)</title><rect x="33.3141%" y="341" width="0.0327%" height="15" fill="rgb(216,178,15)" fg:x="798619" fg:w="783"/><text x="33.5641%" y="351.50"></text></g><g><title>enqueue_task_fair (2,852 samples, 0.12%)</title><rect x="33.2360%" y="373" width="0.1190%" height="15" fill="rgb(250,197,2)" fg:x="796745" fg:w="2852"/><text x="33.4860%" y="383.50"></text></g><g><title>ttwu_do_activate (5,834 samples, 0.24%)</title><rect x="33.2275%" y="389" width="0.2434%" height="15" fill="rgb(212,70,42)" fg:x="796542" fg:w="5834"/><text x="33.4775%" y="399.50"></text></g><g><title>psi_task_change (2,775 samples, 0.12%)</title><rect x="33.3551%" y="373" width="0.1158%" height="15" fill="rgb(227,213,9)" fg:x="799601" fg:w="2775"/><text x="33.6051%" y="383.50"></text></g><g><title>psi_group_change (2,486 samples, 0.10%)</title><rect x="33.3672%" y="357" width="0.1037%" height="15" fill="rgb(245,99,25)" fg:x="799890" fg:w="2486"/><text x="33.6172%" y="367.50"></text></g><g><title>record_times (425 samples, 0.02%)</title><rect x="33.4531%" y="341" width="0.0177%" height="15" fill="rgb(250,82,29)" fg:x="801951" fg:w="425"/><text x="33.7031%" y="351.50"></text></g><g><title>sched_clock_cpu (301 samples, 0.01%)</title><rect x="33.4583%" y="325" width="0.0126%" height="15" fill="rgb(241,226,54)" fg:x="802075" fg:w="301"/><text x="33.7083%" y="335.50"></text></g><g><title>sched_clock (253 samples, 0.01%)</title><rect x="33.4603%" y="309" width="0.0106%" height="15" fill="rgb(221,99,41)" fg:x="802123" fg:w="253"/><text x="33.7103%" y="319.50"></text></g><g><title>ttwu_do_wakeup (512 samples, 0.02%)</title><rect x="33.4709%" y="389" width="0.0214%" height="15" fill="rgb(213,90,21)" fg:x="802376" fg:w="512"/><text x="33.7209%" y="399.50"></text></g><g><title>check_preempt_curr (460 samples, 0.02%)</title><rect x="33.4730%" y="373" width="0.0192%" height="15" fill="rgb(205,208,24)" fg:x="802428" fg:w="460"/><text x="33.7230%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (278 samples, 0.01%)</title><rect x="33.4922%" y="389" width="0.0116%" height="15" fill="rgb(246,31,12)" fg:x="802888" fg:w="278"/><text x="33.7422%" y="399.50"></text></g><g><title>__wake_up_common (13,066 samples, 0.55%)</title><rect x="32.9803%" y="437" width="0.5450%" height="15" fill="rgb(213,154,6)" fg:x="790615" fg:w="13066"/><text x="33.2303%" y="447.50"></text></g><g><title>autoremove_wake_function (12,905 samples, 0.54%)</title><rect x="32.9870%" y="421" width="0.5383%" height="15" fill="rgb(222,163,29)" fg:x="790776" fg:w="12905"/><text x="33.2370%" y="431.50"></text></g><g><title>try_to_wake_up (12,514 samples, 0.52%)</title><rect x="33.0033%" y="405" width="0.5220%" height="15" fill="rgb(227,201,8)" fg:x="791167" fg:w="12514"/><text x="33.2533%" y="415.50"></text></g><g><title>update_rq_clock (515 samples, 0.02%)</title><rect x="33.5038%" y="389" width="0.0215%" height="15" fill="rgb(233,9,32)" fg:x="803166" fg:w="515"/><text x="33.7538%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (329 samples, 0.01%)</title><rect x="33.5253%" y="437" width="0.0137%" height="15" fill="rgb(217,54,24)" fg:x="803681" fg:w="329"/><text x="33.7753%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (277 samples, 0.01%)</title><rect x="33.5275%" y="421" width="0.0116%" height="15" fill="rgb(235,192,0)" fg:x="803733" fg:w="277"/><text x="33.7775%" y="431.50"></text></g><g><title>__wake_up_common_lock (13,545 samples, 0.57%)</title><rect x="32.9785%" y="453" width="0.5650%" height="15" fill="rgb(235,45,9)" fg:x="790573" fg:w="13545"/><text x="33.2285%" y="463.50"></text></g><g><title>btrfs_search_slot (153,596 samples, 6.41%)</title><rect x="27.1549%" y="485" width="6.4072%" height="15" fill="rgb(246,42,40)" fg:x="650967" fg:w="153596"/><text x="27.4049%" y="495.50">btrfs_se..</text></g><g><title>unlock_up (14,949 samples, 0.62%)</title><rect x="32.9385%" y="469" width="0.6236%" height="15" fill="rgb(248,111,24)" fg:x="789614" fg:w="14949"/><text x="33.1885%" y="479.50"></text></g><g><title>btrfs_tree_unlock (428 samples, 0.02%)</title><rect x="33.5442%" y="453" width="0.0179%" height="15" fill="rgb(249,65,22)" fg:x="804135" fg:w="428"/><text x="33.7942%" y="463.50"></text></g><g><title>kmem_cache_alloc (792 samples, 0.03%)</title><rect x="33.5621%" y="485" width="0.0330%" height="15" fill="rgb(238,111,51)" fg:x="804563" fg:w="792"/><text x="33.8121%" y="495.50"></text></g><g><title>btrfs_del_orphan_item (172,014 samples, 7.18%)</title><rect x="26.4534%" y="501" width="7.1755%" height="15" fill="rgb(250,118,22)" fg:x="634151" fg:w="172014"/><text x="26.7034%" y="511.50">btrfs_del_..</text></g><g><title>kmem_cache_free (810 samples, 0.03%)</title><rect x="33.5951%" y="485" width="0.0338%" height="15" fill="rgb(234,84,26)" fg:x="805355" fg:w="810"/><text x="33.8451%" y="495.50"></text></g><g><title>_raw_spin_lock (692 samples, 0.03%)</title><rect x="33.6563%" y="469" width="0.0289%" height="15" fill="rgb(243,172,12)" fg:x="806821" fg:w="692"/><text x="33.9063%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (265 samples, 0.01%)</title><rect x="33.6741%" y="453" width="0.0111%" height="15" fill="rgb(236,150,49)" fg:x="807248" fg:w="265"/><text x="33.9241%" y="463.50"></text></g><g><title>btrfs_free_block_rsv (1,231 samples, 0.05%)</title><rect x="33.6385%" y="501" width="0.0514%" height="15" fill="rgb(225,197,26)" fg:x="806395" fg:w="1231"/><text x="33.8885%" y="511.50"></text></g><g><title>btrfs_block_rsv_release (1,162 samples, 0.05%)</title><rect x="33.6414%" y="485" width="0.0485%" height="15" fill="rgb(214,17,42)" fg:x="806464" fg:w="1162"/><text x="33.8914%" y="495.50"></text></g><g><title>btrfs_free_io_failure_record (259 samples, 0.01%)</title><rect x="33.6899%" y="501" width="0.0108%" height="15" fill="rgb(224,165,40)" fg:x="807626" fg:w="259"/><text x="33.9399%" y="511.50"></text></g><g><title>_raw_spin_lock (358 samples, 0.01%)</title><rect x="33.8292%" y="469" width="0.0149%" height="15" fill="rgb(246,100,4)" fg:x="810966" fg:w="358"/><text x="34.0792%" y="479.50"></text></g><g><title>mutex_lock (297 samples, 0.01%)</title><rect x="33.8442%" y="469" width="0.0124%" height="15" fill="rgb(222,103,0)" fg:x="811325" fg:w="297"/><text x="34.0942%" y="479.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,088 samples, 0.05%)</title><rect x="33.8193%" y="485" width="0.0454%" height="15" fill="rgb(227,189,26)" fg:x="810728" fg:w="1088"/><text x="34.0693%" y="495.50"></text></g><g><title>alloc_extent_state (980 samples, 0.04%)</title><rect x="33.9070%" y="469" width="0.0409%" height="15" fill="rgb(214,202,17)" fg:x="812832" fg:w="980"/><text x="34.1570%" y="479.50"></text></g><g><title>kmem_cache_alloc (873 samples, 0.04%)</title><rect x="33.9115%" y="453" width="0.0364%" height="15" fill="rgb(229,111,3)" fg:x="812939" fg:w="873"/><text x="34.1615%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (269 samples, 0.01%)</title><rect x="33.9367%" y="437" width="0.0112%" height="15" fill="rgb(229,172,15)" fg:x="813543" fg:w="269"/><text x="34.1867%" y="447.50"></text></g><g><title>__wake_up_common (305 samples, 0.01%)</title><rect x="33.9851%" y="437" width="0.0127%" height="15" fill="rgb(230,224,35)" fg:x="814703" fg:w="305"/><text x="34.2351%" y="447.50"></text></g><g><title>__wake_up_common_lock (950 samples, 0.04%)</title><rect x="33.9731%" y="453" width="0.0396%" height="15" fill="rgb(251,141,6)" fg:x="814415" fg:w="950"/><text x="34.2231%" y="463.50"></text></g><g><title>btrfs_clear_delalloc_extent (477 samples, 0.02%)</title><rect x="34.0128%" y="453" width="0.0199%" height="15" fill="rgb(225,208,6)" fg:x="815367" fg:w="477"/><text x="34.2628%" y="463.50"></text></g><g><title>kmem_cache_free (784 samples, 0.03%)</title><rect x="34.0398%" y="453" width="0.0327%" height="15" fill="rgb(246,181,16)" fg:x="816015" fg:w="784"/><text x="34.2898%" y="463.50"></text></g><g><title>clear_state_bit (3,255 samples, 0.14%)</title><rect x="33.9480%" y="469" width="0.1358%" height="15" fill="rgb(227,129,36)" fg:x="813815" fg:w="3255"/><text x="34.1980%" y="479.50"></text></g><g><title>__clear_extent_bit (5,886 samples, 0.25%)</title><rect x="33.8647%" y="485" width="0.2455%" height="15" fill="rgb(248,117,24)" fg:x="811816" fg:w="5886"/><text x="34.1147%" y="495.50"></text></g><g><title>kmem_cache_free (489 samples, 0.02%)</title><rect x="34.0898%" y="469" width="0.0204%" height="15" fill="rgb(214,185,35)" fg:x="817213" fg:w="489"/><text x="34.3398%" y="479.50"></text></g><g><title>_find_next_bit.constprop.0 (1,429 samples, 0.06%)</title><rect x="34.2426%" y="405" width="0.0596%" height="15" fill="rgb(236,150,34)" fg:x="820876" fg:w="1429"/><text x="34.4926%" y="415.50"></text></g><g><title>steal_from_bitmap.part.0 (1,742 samples, 0.07%)</title><rect x="34.2344%" y="421" width="0.0727%" height="15" fill="rgb(243,228,27)" fg:x="820679" fg:w="1742"/><text x="34.4844%" y="431.50"></text></g><g><title>__btrfs_add_free_space (2,275 samples, 0.09%)</title><rect x="34.2221%" y="437" width="0.0949%" height="15" fill="rgb(245,77,44)" fg:x="820386" fg:w="2275"/><text x="34.4721%" y="447.50"></text></g><g><title>add_delayed_ref_head (361 samples, 0.02%)</title><rect x="34.3229%" y="421" width="0.0151%" height="15" fill="rgb(235,214,42)" fg:x="822801" fg:w="361"/><text x="34.5729%" y="431.50"></text></g><g><title>btrfs_add_delayed_tree_ref (647 samples, 0.03%)</title><rect x="34.3211%" y="437" width="0.0270%" height="15" fill="rgb(221,74,3)" fg:x="822757" fg:w="647"/><text x="34.5711%" y="447.50"></text></g><g><title>btrfs_free_tree_block (3,439 samples, 0.14%)</title><rect x="34.2215%" y="453" width="0.1435%" height="15" fill="rgb(206,121,29)" fg:x="820371" fg:w="3439"/><text x="34.4715%" y="463.50"></text></g><g><title>check_ref_cleanup (362 samples, 0.02%)</title><rect x="34.3499%" y="437" width="0.0151%" height="15" fill="rgb(249,131,53)" fg:x="823448" fg:w="362"/><text x="34.5999%" y="447.50"></text></g><g><title>__wake_up_common (390 samples, 0.02%)</title><rect x="34.3662%" y="421" width="0.0163%" height="15" fill="rgb(236,170,29)" fg:x="823840" fg:w="390"/><text x="34.6162%" y="431.50"></text></g><g><title>autoremove_wake_function (380 samples, 0.02%)</title><rect x="34.3666%" y="405" width="0.0159%" height="15" fill="rgb(247,96,15)" fg:x="823850" fg:w="380"/><text x="34.6166%" y="415.50"></text></g><g><title>try_to_wake_up (365 samples, 0.02%)</title><rect x="34.3673%" y="389" width="0.0152%" height="15" fill="rgb(211,210,7)" fg:x="823865" fg:w="365"/><text x="34.6173%" y="399.50"></text></g><g><title>__wake_up_common_lock (399 samples, 0.02%)</title><rect x="34.3662%" y="437" width="0.0166%" height="15" fill="rgb(240,88,50)" fg:x="823839" fg:w="399"/><text x="34.6162%" y="447.50"></text></g><g><title>btrfs_unlock_up_safe (423 samples, 0.02%)</title><rect x="34.3656%" y="453" width="0.0176%" height="15" fill="rgb(209,229,26)" fg:x="823826" fg:w="423"/><text x="34.6156%" y="463.50"></text></g><g><title>btrfs_del_leaf (4,087 samples, 0.17%)</title><rect x="34.2202%" y="469" width="0.1705%" height="15" fill="rgb(210,68,23)" fg:x="820339" fg:w="4087"/><text x="34.4702%" y="479.50"></text></g><g><title>btrfs_get_32 (702 samples, 0.03%)</title><rect x="34.3907%" y="469" width="0.0293%" height="15" fill="rgb(229,180,13)" fg:x="824426" fg:w="702"/><text x="34.6407%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,150 samples, 0.05%)</title><rect x="34.7046%" y="453" width="0.0480%" height="15" fill="rgb(236,53,44)" fg:x="831952" fg:w="1150"/><text x="34.9546%" y="463.50"></text></g><g><title>btrfs_get_token_32 (7,975 samples, 0.33%)</title><rect x="34.4200%" y="469" width="0.3327%" height="15" fill="rgb(244,214,29)" fg:x="825128" fg:w="7975"/><text x="34.6700%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (673 samples, 0.03%)</title><rect x="34.7526%" y="469" width="0.0281%" height="15" fill="rgb(220,75,29)" fg:x="833103" fg:w="673"/><text x="35.0026%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (282 samples, 0.01%)</title><rect x="34.7689%" y="453" width="0.0118%" height="15" fill="rgb(214,183,37)" fg:x="833494" fg:w="282"/><text x="35.0189%" y="463.50"></text></g><g><title>btrfs_set_token_32 (6,246 samples, 0.26%)</title><rect x="34.7823%" y="469" width="0.2605%" height="15" fill="rgb(239,117,29)" fg:x="833815" fg:w="6246"/><text x="35.0323%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (968 samples, 0.04%)</title><rect x="35.0025%" y="453" width="0.0404%" height="15" fill="rgb(237,171,35)" fg:x="839093" fg:w="968"/><text x="35.2525%" y="463.50"></text></g><g><title>fixup_low_keys (603 samples, 0.03%)</title><rect x="35.0439%" y="469" width="0.0252%" height="15" fill="rgb(229,178,53)" fg:x="840085" fg:w="603"/><text x="35.2939%" y="479.50"></text></g><g><title>leaf_space_used (568 samples, 0.02%)</title><rect x="35.0702%" y="469" width="0.0237%" height="15" fill="rgb(210,102,19)" fg:x="840715" fg:w="568"/><text x="35.3202%" y="479.50"></text></g><g><title>btrfs_get_32 (419 samples, 0.02%)</title><rect x="35.0764%" y="453" width="0.0175%" height="15" fill="rgb(235,127,22)" fg:x="840864" fg:w="419"/><text x="35.3264%" y="463.50"></text></g><g><title>memcpy_extent_buffer (1,145 samples, 0.05%)</title><rect x="35.0939%" y="469" width="0.0478%" height="15" fill="rgb(244,31,31)" fg:x="841283" fg:w="1145"/><text x="35.3439%" y="479.50"></text></g><g><title>memmove (794 samples, 0.03%)</title><rect x="35.1085%" y="453" width="0.0331%" height="15" fill="rgb(231,43,21)" fg:x="841634" fg:w="794"/><text x="35.3585%" y="463.50"></text></g><g><title>copy_pages (1,081 samples, 0.05%)</title><rect x="35.1735%" y="453" width="0.0451%" height="15" fill="rgb(217,131,35)" fg:x="843192" fg:w="1081"/><text x="35.4235%" y="463.50"></text></g><g><title>memmove_extent_buffer (8,303 samples, 0.35%)</title><rect x="35.1416%" y="469" width="0.3464%" height="15" fill="rgb(221,149,4)" fg:x="842428" fg:w="8303"/><text x="35.3916%" y="479.50"></text></g><g><title>memmove (6,458 samples, 0.27%)</title><rect x="35.2186%" y="453" width="0.2694%" height="15" fill="rgb(232,170,28)" fg:x="844273" fg:w="6458"/><text x="35.4686%" y="463.50"></text></g><g><title>clear_extent_buffer_dirty (384 samples, 0.02%)</title><rect x="35.5125%" y="437" width="0.0160%" height="15" fill="rgb(238,56,10)" fg:x="851318" fg:w="384"/><text x="35.7625%" y="447.50"></text></g><g><title>__push_leaf_left (1,145 samples, 0.05%)</title><rect x="35.4909%" y="453" width="0.0478%" height="15" fill="rgb(235,196,14)" fg:x="850801" fg:w="1145"/><text x="35.7409%" y="463.50"></text></g><g><title>push_leaf_left (1,584 samples, 0.07%)</title><rect x="35.4880%" y="469" width="0.0661%" height="15" fill="rgb(216,45,48)" fg:x="850731" fg:w="1584"/><text x="35.7380%" y="479.50"></text></g><g><title>__push_leaf_right (534 samples, 0.02%)</title><rect x="35.5547%" y="453" width="0.0223%" height="15" fill="rgb(238,213,17)" fg:x="852331" fg:w="534"/><text x="35.8047%" y="463.50"></text></g><g><title>push_leaf_right (883 samples, 0.04%)</title><rect x="35.5541%" y="469" width="0.0368%" height="15" fill="rgb(212,13,2)" fg:x="852315" fg:w="883"/><text x="35.8041%" y="479.50"></text></g><g><title>btrfs_del_items (35,708 samples, 1.49%)</title><rect x="34.1119%" y="485" width="1.4895%" height="15" fill="rgb(240,114,20)" fg:x="817743" fg:w="35708"/><text x="34.3619%" y="495.50"></text></g><g><title>memset_erms (442 samples, 0.02%)</title><rect x="35.7156%" y="437" width="0.0184%" height="15" fill="rgb(228,41,40)" fg:x="856188" fg:w="442"/><text x="35.9656%" y="447.50"></text></g><g><title>alloc_extent_map (2,822 samples, 0.12%)</title><rect x="35.6359%" y="469" width="0.1177%" height="15" fill="rgb(244,132,35)" fg:x="854277" fg:w="2822"/><text x="35.8859%" y="479.50"></text></g><g><title>kmem_cache_alloc (2,204 samples, 0.09%)</title><rect x="35.6617%" y="453" width="0.0919%" height="15" fill="rgb(253,189,4)" fg:x="854895" fg:w="2204"/><text x="35.9117%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (469 samples, 0.02%)</title><rect x="35.7341%" y="437" width="0.0196%" height="15" fill="rgb(224,37,19)" fg:x="856630" fg:w="469"/><text x="35.9841%" y="447.50"></text></g><g><title>free_extent_map (390 samples, 0.02%)</title><rect x="35.7538%" y="469" width="0.0163%" height="15" fill="rgb(235,223,18)" fg:x="857103" fg:w="390"/><text x="36.0038%" y="479.50"></text></g><g><title>kmem_cache_free (1,408 samples, 0.06%)</title><rect x="35.7701%" y="469" width="0.0587%" height="15" fill="rgb(235,163,25)" fg:x="857493" fg:w="1408"/><text x="36.0201%" y="479.50"></text></g><g><title>btrfs_drop_extent_cache (5,553 samples, 0.23%)</title><rect x="35.6014%" y="485" width="0.2316%" height="15" fill="rgb(217,145,28)" fg:x="853451" fg:w="5553"/><text x="35.8514%" y="495.50"></text></g><g><title>_raw_spin_lock (355 samples, 0.01%)</title><rect x="35.9455%" y="389" width="0.0148%" height="15" fill="rgb(223,223,32)" fg:x="861698" fg:w="355"/><text x="36.1955%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (321 samples, 0.01%)</title><rect x="35.9603%" y="389" width="0.0134%" height="15" fill="rgb(227,189,39)" fg:x="862053" fg:w="321"/><text x="36.2103%" y="399.50"></text></g><g><title>available_idle_cpu (258 samples, 0.01%)</title><rect x="36.0026%" y="373" width="0.0108%" height="15" fill="rgb(248,10,22)" fg:x="863068" fg:w="258"/><text x="36.2526%" y="383.50"></text></g><g><title>select_task_rq_fair (1,361 samples, 0.06%)</title><rect x="35.9758%" y="389" width="0.0568%" height="15" fill="rgb(248,46,39)" fg:x="862424" fg:w="1361"/><text x="36.2258%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (326 samples, 0.01%)</title><rect x="36.0189%" y="373" width="0.0136%" height="15" fill="rgb(248,113,48)" fg:x="863459" fg:w="326"/><text x="36.2689%" y="383.50"></text></g><g><title>enqueue_entity (1,395 samples, 0.06%)</title><rect x="36.0548%" y="357" width="0.0582%" height="15" fill="rgb(245,16,25)" fg:x="864319" fg:w="1395"/><text x="36.3048%" y="367.50"></text></g><g><title>update_load_avg (460 samples, 0.02%)</title><rect x="36.0938%" y="341" width="0.0192%" height="15" fill="rgb(249,152,16)" fg:x="865254" fg:w="460"/><text x="36.3438%" y="351.50"></text></g><g><title>enqueue_task_fair (1,724 samples, 0.07%)</title><rect x="36.0436%" y="373" width="0.0719%" height="15" fill="rgb(250,16,1)" fg:x="864051" fg:w="1724"/><text x="36.2936%" y="383.50"></text></g><g><title>ttwu_do_activate (3,715 samples, 0.15%)</title><rect x="36.0370%" y="389" width="0.1550%" height="15" fill="rgb(249,138,3)" fg:x="863893" fg:w="3715"/><text x="36.2870%" y="399.50"></text></g><g><title>psi_task_change (1,831 samples, 0.08%)</title><rect x="36.1156%" y="373" width="0.0764%" height="15" fill="rgb(227,71,41)" fg:x="865777" fg:w="1831"/><text x="36.3656%" y="383.50"></text></g><g><title>psi_group_change (1,611 samples, 0.07%)</title><rect x="36.1248%" y="357" width="0.0672%" height="15" fill="rgb(209,184,23)" fg:x="865997" fg:w="1611"/><text x="36.3748%" y="367.50"></text></g><g><title>record_times (255 samples, 0.01%)</title><rect x="36.1814%" y="341" width="0.0106%" height="15" fill="rgb(223,215,31)" fg:x="867353" fg:w="255"/><text x="36.4314%" y="351.50"></text></g><g><title>ttwu_do_wakeup (346 samples, 0.01%)</title><rect x="36.1920%" y="389" width="0.0144%" height="15" fill="rgb(210,146,28)" fg:x="867608" fg:w="346"/><text x="36.4420%" y="399.50"></text></g><g><title>check_preempt_curr (323 samples, 0.01%)</title><rect x="36.1930%" y="373" width="0.0135%" height="15" fill="rgb(209,183,41)" fg:x="867631" fg:w="323"/><text x="36.4430%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (419 samples, 0.02%)</title><rect x="36.2064%" y="389" width="0.0175%" height="15" fill="rgb(209,224,45)" fg:x="867954" fg:w="419"/><text x="36.4564%" y="399.50"></text></g><g><title>__wake_up_common (9,147 samples, 0.38%)</title><rect x="35.8538%" y="437" width="0.3816%" height="15" fill="rgb(224,209,51)" fg:x="859501" fg:w="9147"/><text x="36.1038%" y="447.50"></text></g><g><title>autoremove_wake_function (8,957 samples, 0.37%)</title><rect x="35.8617%" y="421" width="0.3736%" height="15" fill="rgb(223,17,39)" fg:x="859691" fg:w="8957"/><text x="36.1117%" y="431.50"></text></g><g><title>try_to_wake_up (8,749 samples, 0.36%)</title><rect x="35.8704%" y="405" width="0.3650%" height="15" fill="rgb(234,204,37)" fg:x="859899" fg:w="8749"/><text x="36.1204%" y="415.50"></text></g><g><title>update_rq_clock (275 samples, 0.01%)</title><rect x="36.2239%" y="389" width="0.0115%" height="15" fill="rgb(236,120,5)" fg:x="868373" fg:w="275"/><text x="36.4739%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (306 samples, 0.01%)</title><rect x="36.2354%" y="437" width="0.0128%" height="15" fill="rgb(248,97,27)" fg:x="868648" fg:w="306"/><text x="36.4854%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (240 samples, 0.01%)</title><rect x="36.2381%" y="421" width="0.0100%" height="15" fill="rgb(240,66,17)" fg:x="868714" fg:w="240"/><text x="36.4881%" y="431.50"></text></g><g><title>__wake_up_common_lock (9,600 samples, 0.40%)</title><rect x="35.8522%" y="453" width="0.4005%" height="15" fill="rgb(210,79,3)" fg:x="859462" fg:w="9600"/><text x="36.1022%" y="463.50"></text></g><g><title>btrfs_tree_unlock (765 samples, 0.03%)</title><rect x="36.2531%" y="453" width="0.0319%" height="15" fill="rgb(214,176,27)" fg:x="869073" fg:w="765"/><text x="36.5031%" y="463.50"></text></g><g><title>_raw_spin_lock (370 samples, 0.02%)</title><rect x="36.3264%" y="437" width="0.0154%" height="15" fill="rgb(235,185,3)" fg:x="870829" fg:w="370"/><text x="36.5764%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,341 samples, 0.06%)</title><rect x="36.2861%" y="453" width="0.0559%" height="15" fill="rgb(227,24,12)" fg:x="869863" fg:w="1341"/><text x="36.5361%" y="463.50"></text></g><g><title>btrfs_free_path (12,626 samples, 0.53%)</title><rect x="35.8331%" y="485" width="0.5267%" height="15" fill="rgb(252,169,48)" fg:x="859004" fg:w="12626"/><text x="36.0831%" y="495.50"></text></g><g><title>btrfs_release_path (12,586 samples, 0.53%)</title><rect x="35.8348%" y="469" width="0.5250%" height="15" fill="rgb(212,65,1)" fg:x="859044" fg:w="12586"/><text x="36.0848%" y="479.50"></text></g><g><title>release_extent_buffer (426 samples, 0.02%)</title><rect x="36.3420%" y="453" width="0.0178%" height="15" fill="rgb(242,39,24)" fg:x="871204" fg:w="426"/><text x="36.5920%" y="463.50"></text></g><g><title>btrfs_get_32 (274 samples, 0.01%)</title><rect x="36.3598%" y="485" width="0.0114%" height="15" fill="rgb(249,32,23)" fg:x="871630" fg:w="274"/><text x="36.6098%" y="495.50"></text></g><g><title>btrfs_get_8 (342 samples, 0.01%)</title><rect x="36.3802%" y="485" width="0.0143%" height="15" fill="rgb(251,195,23)" fg:x="872119" fg:w="342"/><text x="36.6302%" y="495.50"></text></g><g><title>_raw_spin_lock (386 samples, 0.02%)</title><rect x="36.4335%" y="437" width="0.0161%" height="15" fill="rgb(236,174,8)" fg:x="873397" fg:w="386"/><text x="36.6835%" y="447.50"></text></g><g><title>_cond_resched (263 samples, 0.01%)</title><rect x="36.5057%" y="389" width="0.0110%" height="15" fill="rgb(220,197,8)" fg:x="875128" fg:w="263"/><text x="36.7557%" y="399.50"></text></g><g><title>alloc_extent_state (1,629 samples, 0.07%)</title><rect x="36.4496%" y="437" width="0.0680%" height="15" fill="rgb(240,108,37)" fg:x="873783" fg:w="1629"/><text x="36.6996%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,351 samples, 0.06%)</title><rect x="36.4612%" y="421" width="0.0564%" height="15" fill="rgb(232,176,24)" fg:x="874061" fg:w="1351"/><text x="36.7112%" y="431.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (508 samples, 0.02%)</title><rect x="36.4963%" y="405" width="0.0212%" height="15" fill="rgb(243,35,29)" fg:x="874904" fg:w="508"/><text x="36.7463%" y="415.50"></text></g><g><title>free_extent_state (246 samples, 0.01%)</title><rect x="36.5176%" y="437" width="0.0103%" height="15" fill="rgb(210,37,18)" fg:x="875413" fg:w="246"/><text x="36.7676%" y="447.50"></text></g><g><title>__clear_extent_bit (3,411 samples, 0.14%)</title><rect x="36.4199%" y="453" width="0.1423%" height="15" fill="rgb(224,184,40)" fg:x="873072" fg:w="3411"/><text x="36.6699%" y="463.50"></text></g><g><title>kmem_cache_free (824 samples, 0.03%)</title><rect x="36.5278%" y="437" width="0.0344%" height="15" fill="rgb(236,39,29)" fg:x="875659" fg:w="824"/><text x="36.7778%" y="447.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (4,023 samples, 0.17%)</title><rect x="36.3944%" y="485" width="0.1678%" height="15" fill="rgb(232,48,39)" fg:x="872461" fg:w="4023"/><text x="36.6444%" y="495.50"></text></g><g><title>clear_extent_bit (3,466 samples, 0.14%)</title><rect x="36.4177%" y="469" width="0.1446%" height="15" fill="rgb(236,34,42)" fg:x="873018" fg:w="3466"/><text x="36.6677%" y="479.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (939 samples, 0.04%)</title><rect x="36.5623%" y="485" width="0.0392%" height="15" fill="rgb(243,106,37)" fg:x="876484" fg:w="939"/><text x="36.8123%" y="495.50"></text></g><g><title>find_contiguous_extent_bit (285 samples, 0.01%)</title><rect x="36.5895%" y="469" width="0.0119%" height="15" fill="rgb(218,96,6)" fg:x="877138" fg:w="285"/><text x="36.8395%" y="479.50"></text></g><g><title>__btrfs_kill_delayed_node (426 samples, 0.02%)</title><rect x="36.6092%" y="469" width="0.0178%" height="15" fill="rgb(235,130,12)" fg:x="877610" fg:w="426"/><text x="36.8592%" y="479.50"></text></g><g><title>mutex_lock (264 samples, 0.01%)</title><rect x="36.6160%" y="453" width="0.0110%" height="15" fill="rgb(231,95,0)" fg:x="877772" fg:w="264"/><text x="36.8660%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (462 samples, 0.02%)</title><rect x="36.6272%" y="469" width="0.0193%" height="15" fill="rgb(228,12,23)" fg:x="878040" fg:w="462"/><text x="36.8772%" y="479.50"></text></g><g><title>btrfs_kill_delayed_inode_items (1,246 samples, 0.05%)</title><rect x="36.6014%" y="485" width="0.0520%" height="15" fill="rgb(216,12,1)" fg:x="877423" fg:w="1246"/><text x="36.8514%" y="495.50"></text></g><g><title>_raw_read_lock (740 samples, 0.03%)</title><rect x="36.8114%" y="437" width="0.0309%" height="15" fill="rgb(219,59,3)" fg:x="882457" fg:w="740"/><text x="37.0614%" y="447.50"></text></g><g><title>finish_wait (5,022 samples, 0.21%)</title><rect x="36.8455%" y="437" width="0.2095%" height="15" fill="rgb(215,208,46)" fg:x="883274" fg:w="5022"/><text x="37.0955%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,789 samples, 0.20%)</title><rect x="36.8552%" y="421" width="0.1998%" height="15" fill="rgb(254,224,29)" fg:x="883507" fg:w="4789"/><text x="37.1052%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,597 samples, 0.19%)</title><rect x="36.8632%" y="405" width="0.1918%" height="15" fill="rgb(232,14,29)" fg:x="883699" fg:w="4597"/><text x="37.1132%" y="415.50"></text></g><g><title>__list_add_valid (292 samples, 0.01%)</title><rect x="37.0925%" y="421" width="0.0122%" height="15" fill="rgb(208,45,52)" fg:x="889196" fg:w="292"/><text x="37.3425%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (12,514 samples, 0.52%)</title><rect x="37.1047%" y="421" width="0.5220%" height="15" fill="rgb(234,191,28)" fg:x="889488" fg:w="12514"/><text x="37.3547%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,928 samples, 0.50%)</title><rect x="37.1292%" y="405" width="0.4976%" height="15" fill="rgb(244,67,43)" fg:x="890074" fg:w="11928"/><text x="37.3792%" y="415.50"></text></g><g><title>prepare_to_wait_event (13,920 samples, 0.58%)</title><rect x="37.0554%" y="437" width="0.5807%" height="15" fill="rgb(236,189,24)" fg:x="888305" fg:w="13920"/><text x="37.3054%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (12,764 samples, 0.53%)</title><rect x="37.6360%" y="437" width="0.5324%" height="15" fill="rgb(239,214,33)" fg:x="902225" fg:w="12764"/><text x="37.8860%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,333 samples, 0.39%)</title><rect x="37.7792%" y="421" width="0.3893%" height="15" fill="rgb(226,176,41)" fg:x="905656" fg:w="9333"/><text x="38.0292%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (391 samples, 0.02%)</title><rect x="38.1973%" y="405" width="0.0163%" height="15" fill="rgb(248,47,8)" fg:x="915679" fg:w="391"/><text x="38.4473%" y="415.50"></text></g><g><title>update_curr (737 samples, 0.03%)</title><rect x="38.2583%" y="373" width="0.0307%" height="15" fill="rgb(218,81,44)" fg:x="917142" fg:w="737"/><text x="38.5083%" y="383.50"></text></g><g><title>dequeue_entity (2,039 samples, 0.09%)</title><rect x="38.2307%" y="389" width="0.0851%" height="15" fill="rgb(213,98,6)" fg:x="916481" fg:w="2039"/><text x="38.4807%" y="399.50"></text></g><g><title>update_load_avg (641 samples, 0.03%)</title><rect x="38.2890%" y="373" width="0.0267%" height="15" fill="rgb(222,85,22)" fg:x="917879" fg:w="641"/><text x="38.5390%" y="383.50"></text></g><g><title>dequeue_task_fair (2,499 samples, 0.10%)</title><rect x="38.2180%" y="405" width="0.1042%" height="15" fill="rgb(239,46,39)" fg:x="916175" fg:w="2499"/><text x="38.4680%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (4,014 samples, 0.17%)</title><rect x="38.3388%" y="389" width="0.1674%" height="15" fill="rgb(237,12,29)" fg:x="919073" fg:w="4014"/><text x="38.5888%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,899 samples, 0.16%)</title><rect x="38.3436%" y="373" width="0.1626%" height="15" fill="rgb(214,77,8)" fg:x="919188" fg:w="3899"/><text x="38.5936%" y="383.50"></text></g><g><title>native_write_msr (3,860 samples, 0.16%)</title><rect x="38.3453%" y="357" width="0.1610%" height="15" fill="rgb(217,168,37)" fg:x="919227" fg:w="3860"/><text x="38.5953%" y="367.50"></text></g><g><title>finish_task_switch (4,602 samples, 0.19%)</title><rect x="38.3222%" y="405" width="0.1920%" height="15" fill="rgb(221,217,23)" fg:x="918674" fg:w="4602"/><text x="38.5722%" y="415.50"></text></g><g><title>pick_next_task_fair (419 samples, 0.02%)</title><rect x="38.5144%" y="405" width="0.0175%" height="15" fill="rgb(243,229,36)" fg:x="923282" fg:w="419"/><text x="38.7644%" y="415.50"></text></g><g><title>pick_next_task_idle (384 samples, 0.02%)</title><rect x="38.5319%" y="405" width="0.0160%" height="15" fill="rgb(251,163,40)" fg:x="923701" fg:w="384"/><text x="38.7819%" y="415.50"></text></g><g><title>__update_idle_core (319 samples, 0.01%)</title><rect x="38.5346%" y="389" width="0.0133%" height="15" fill="rgb(237,222,12)" fg:x="923766" fg:w="319"/><text x="38.7846%" y="399.50"></text></g><g><title>psi_task_change (1,768 samples, 0.07%)</title><rect x="38.5479%" y="405" width="0.0738%" height="15" fill="rgb(248,132,6)" fg:x="924085" fg:w="1768"/><text x="38.7979%" y="415.50"></text></g><g><title>psi_group_change (1,507 samples, 0.06%)</title><rect x="38.5588%" y="389" width="0.0629%" height="15" fill="rgb(227,167,50)" fg:x="924346" fg:w="1507"/><text x="38.8088%" y="399.50"></text></g><g><title>record_times (333 samples, 0.01%)</title><rect x="38.6078%" y="373" width="0.0139%" height="15" fill="rgb(242,84,37)" fg:x="925520" fg:w="333"/><text x="38.8578%" y="383.50"></text></g><g><title>psi_task_switch (242 samples, 0.01%)</title><rect x="38.6217%" y="405" width="0.0101%" height="15" fill="rgb(212,4,50)" fg:x="925853" fg:w="242"/><text x="38.8717%" y="415.50"></text></g><g><title>__schedule (11,410 samples, 0.48%)</title><rect x="38.1722%" y="421" width="0.4760%" height="15" fill="rgb(230,228,32)" fg:x="915078" fg:w="11410"/><text x="38.4222%" y="431.50"></text></g><g><title>__btrfs_tree_read_lock (44,951 samples, 1.88%)</title><rect x="36.7731%" y="453" width="1.8751%" height="15" fill="rgb(248,217,23)" fg:x="881538" fg:w="44951"/><text x="37.0231%" y="463.50">_..</text></g><g><title>schedule (11,500 samples, 0.48%)</title><rect x="38.1685%" y="437" width="0.4797%" height="15" fill="rgb(238,197,32)" fg:x="914989" fg:w="11500"/><text x="38.4185%" y="447.50"></text></g><g><title>__btrfs_read_lock_root_node (46,371 samples, 1.93%)</title><rect x="36.7652%" y="469" width="1.9344%" height="15" fill="rgb(236,106,1)" fg:x="881348" fg:w="46371"/><text x="37.0152%" y="479.50">_..</text></g><g><title>btrfs_root_node (1,229 samples, 0.05%)</title><rect x="38.6482%" y="453" width="0.0513%" height="15" fill="rgb(219,228,13)" fg:x="926490" fg:w="1229"/><text x="38.8982%" y="463.50"></text></g><g><title>prepare_to_wait_event (319 samples, 0.01%)</title><rect x="38.7076%" y="453" width="0.0133%" height="15" fill="rgb(238,30,35)" fg:x="927913" fg:w="319"/><text x="38.9576%" y="463.50"></text></g><g><title>dequeue_entity (579 samples, 0.02%)</title><rect x="38.7386%" y="405" width="0.0242%" height="15" fill="rgb(236,70,23)" fg:x="928656" fg:w="579"/><text x="38.9886%" y="415.50"></text></g><g><title>dequeue_task_fair (704 samples, 0.03%)</title><rect x="38.7353%" y="421" width="0.0294%" height="15" fill="rgb(249,104,48)" fg:x="928578" fg:w="704"/><text x="38.9853%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (1,346 samples, 0.06%)</title><rect x="38.7698%" y="405" width="0.0561%" height="15" fill="rgb(254,117,50)" fg:x="929403" fg:w="1346"/><text x="39.0198%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,328 samples, 0.06%)</title><rect x="38.7705%" y="389" width="0.0554%" height="15" fill="rgb(223,152,4)" fg:x="929421" fg:w="1328"/><text x="39.0205%" y="399.50"></text></g><g><title>native_write_msr (1,316 samples, 0.05%)</title><rect x="38.7710%" y="373" width="0.0549%" height="15" fill="rgb(245,6,2)" fg:x="929433" fg:w="1316"/><text x="39.0210%" y="383.50"></text></g><g><title>finish_task_switch (1,521 samples, 0.06%)</title><rect x="38.7647%" y="421" width="0.0634%" height="15" fill="rgb(249,150,24)" fg:x="929282" fg:w="1521"/><text x="39.0147%" y="431.50"></text></g><g><title>psi_task_change (518 samples, 0.02%)</title><rect x="38.8388%" y="421" width="0.0216%" height="15" fill="rgb(228,185,42)" fg:x="931057" fg:w="518"/><text x="39.0888%" y="431.50"></text></g><g><title>psi_group_change (443 samples, 0.02%)</title><rect x="38.8419%" y="405" width="0.0185%" height="15" fill="rgb(226,39,33)" fg:x="931132" fg:w="443"/><text x="39.0919%" y="415.50"></text></g><g><title>__btrfs_tree_lock (4,039 samples, 0.17%)</title><rect x="38.6995%" y="469" width="0.1685%" height="15" fill="rgb(221,166,19)" fg:x="927719" fg:w="4039"/><text x="38.9495%" y="479.50"></text></g><g><title>schedule (3,526 samples, 0.15%)</title><rect x="38.7209%" y="453" width="0.1471%" height="15" fill="rgb(209,109,2)" fg:x="928232" fg:w="3526"/><text x="38.9709%" y="463.50"></text></g><g><title>__schedule (3,485 samples, 0.15%)</title><rect x="38.7226%" y="437" width="0.1454%" height="15" fill="rgb(252,216,26)" fg:x="928273" fg:w="3485"/><text x="38.9726%" y="447.50"></text></g><g><title>__btrfs_cow_block (383 samples, 0.02%)</title><rect x="38.8809%" y="453" width="0.0160%" height="15" fill="rgb(227,173,36)" fg:x="932067" fg:w="383"/><text x="39.1309%" y="463.50"></text></g><g><title>btrfs_cow_block (385 samples, 0.02%)</title><rect x="38.8809%" y="469" width="0.0161%" height="15" fill="rgb(209,90,7)" fg:x="932067" fg:w="385"/><text x="39.1309%" y="479.50"></text></g><g><title>_cond_resched (308 samples, 0.01%)</title><rect x="38.9533%" y="437" width="0.0128%" height="15" fill="rgb(250,194,11)" fg:x="933802" fg:w="308"/><text x="39.2033%" y="447.50"></text></g><g><title>_raw_write_lock (748 samples, 0.03%)</title><rect x="38.9690%" y="437" width="0.0312%" height="15" fill="rgb(220,72,50)" fg:x="934180" fg:w="748"/><text x="39.2190%" y="447.50"></text></g><g><title>finish_wait (4,587 samples, 0.19%)</title><rect x="39.0004%" y="437" width="0.1913%" height="15" fill="rgb(222,106,48)" fg:x="934932" fg:w="4587"/><text x="39.2504%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (4,322 samples, 0.18%)</title><rect x="39.0115%" y="421" width="0.1803%" height="15" fill="rgb(216,220,45)" fg:x="935197" fg:w="4322"/><text x="39.2615%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,048 samples, 0.17%)</title><rect x="39.0229%" y="405" width="0.1689%" height="15" fill="rgb(234,112,18)" fg:x="935471" fg:w="4048"/><text x="39.2729%" y="415.50"></text></g><g><title>__list_add_valid (349 samples, 0.01%)</title><rect x="39.2406%" y="421" width="0.0146%" height="15" fill="rgb(206,179,9)" fg:x="940689" fg:w="349"/><text x="39.4906%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (11,843 samples, 0.49%)</title><rect x="39.2551%" y="421" width="0.4940%" height="15" fill="rgb(215,115,40)" fg:x="941038" fg:w="11843"/><text x="39.5051%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,943 samples, 0.46%)</title><rect x="39.2927%" y="405" width="0.4565%" height="15" fill="rgb(222,69,34)" fg:x="941938" fg:w="10943"/><text x="39.5427%" y="415.50"></text></g><g><title>_raw_spin_unlock_irqrestore (286 samples, 0.01%)</title><rect x="39.7491%" y="421" width="0.0119%" height="15" fill="rgb(209,161,10)" fg:x="952881" fg:w="286"/><text x="39.9991%" y="431.50"></text></g><g><title>prepare_to_wait_event (13,599 samples, 0.57%)</title><rect x="39.1938%" y="437" width="0.5673%" height="15" fill="rgb(217,6,38)" fg:x="939569" fg:w="13599"/><text x="39.4438%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (19,650 samples, 0.82%)</title><rect x="39.7611%" y="437" width="0.8197%" height="15" fill="rgb(229,229,48)" fg:x="953168" fg:w="19650"/><text x="40.0111%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,764 samples, 0.41%)</title><rect x="40.1735%" y="421" width="0.4073%" height="15" fill="rgb(225,21,28)" fg:x="963054" fg:w="9764"/><text x="40.4235%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (518 samples, 0.02%)</title><rect x="40.6219%" y="405" width="0.0216%" height="15" fill="rgb(206,33,13)" fg:x="973803" fg:w="518"/><text x="40.8719%" y="415.50"></text></g><g><title>update_cfs_group (307 samples, 0.01%)</title><rect x="40.6927%" y="373" width="0.0128%" height="15" fill="rgb(242,178,17)" fg:x="975500" fg:w="307"/><text x="40.9427%" y="383.50"></text></g><g><title>update_curr (986 samples, 0.04%)</title><rect x="40.7055%" y="373" width="0.0411%" height="15" fill="rgb(220,162,5)" fg:x="975807" fg:w="986"/><text x="40.9555%" y="383.50"></text></g><g><title>__update_load_avg_cfs_rq (267 samples, 0.01%)</title><rect x="40.7598%" y="357" width="0.0111%" height="15" fill="rgb(210,33,43)" fg:x="977108" fg:w="267"/><text x="41.0098%" y="367.50"></text></g><g><title>__update_load_avg_se (305 samples, 0.01%)</title><rect x="40.7709%" y="357" width="0.0127%" height="15" fill="rgb(216,116,54)" fg:x="977375" fg:w="305"/><text x="41.0209%" y="367.50"></text></g><g><title>dequeue_entity (2,848 samples, 0.12%)</title><rect x="40.6658%" y="389" width="0.1188%" height="15" fill="rgb(249,92,24)" fg:x="974856" fg:w="2848"/><text x="40.9158%" y="399.50"></text></g><g><title>update_load_avg (911 samples, 0.04%)</title><rect x="40.7466%" y="373" width="0.0380%" height="15" fill="rgb(231,189,14)" fg:x="976793" fg:w="911"/><text x="40.9966%" y="383.50"></text></g><g><title>dequeue_task_fair (3,399 samples, 0.14%)</title><rect x="40.6519%" y="405" width="0.1418%" height="15" fill="rgb(230,8,41)" fg:x="974522" fg:w="3399"/><text x="40.9019%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (5,143 samples, 0.21%)</title><rect x="40.8212%" y="389" width="0.2145%" height="15" fill="rgb(249,7,27)" fg:x="978580" fg:w="5143"/><text x="41.0712%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,017 samples, 0.21%)</title><rect x="40.8264%" y="373" width="0.2093%" height="15" fill="rgb(232,86,5)" fg:x="978706" fg:w="5017"/><text x="41.0764%" y="383.50"></text></g><g><title>native_write_msr (4,951 samples, 0.21%)</title><rect x="40.8292%" y="357" width="0.2065%" height="15" fill="rgb(224,175,18)" fg:x="978772" fg:w="4951"/><text x="41.0792%" y="367.50"></text></g><g><title>finish_task_switch (6,040 samples, 0.25%)</title><rect x="40.7937%" y="405" width="0.2520%" height="15" fill="rgb(220,129,12)" fg:x="977921" fg:w="6040"/><text x="41.0437%" y="415.50"></text></g><g><title>newidle_balance (306 samples, 0.01%)</title><rect x="41.0533%" y="389" width="0.0128%" height="15" fill="rgb(210,19,36)" fg:x="984145" fg:w="306"/><text x="41.3033%" y="399.50"></text></g><g><title>pick_next_task_fair (632 samples, 0.03%)</title><rect x="41.0460%" y="405" width="0.0264%" height="15" fill="rgb(219,96,14)" fg:x="983969" fg:w="632"/><text x="41.2960%" y="415.50"></text></g><g><title>__update_idle_core (523 samples, 0.02%)</title><rect x="41.0760%" y="389" width="0.0218%" height="15" fill="rgb(249,106,1)" fg:x="984688" fg:w="523"/><text x="41.3260%" y="399.50"></text></g><g><title>pick_next_task_idle (612 samples, 0.03%)</title><rect x="41.0723%" y="405" width="0.0255%" height="15" fill="rgb(249,155,20)" fg:x="984601" fg:w="612"/><text x="41.3223%" y="415.50"></text></g><g><title>psi_task_change (2,599 samples, 0.11%)</title><rect x="41.0979%" y="405" width="0.1084%" height="15" fill="rgb(244,168,9)" fg:x="985213" fg:w="2599"/><text x="41.3479%" y="415.50"></text></g><g><title>psi_group_change (2,252 samples, 0.09%)</title><rect x="41.1123%" y="389" width="0.0939%" height="15" fill="rgb(216,23,50)" fg:x="985560" fg:w="2252"/><text x="41.3623%" y="399.50"></text></g><g><title>record_times (567 samples, 0.02%)</title><rect x="41.1826%" y="373" width="0.0237%" height="15" fill="rgb(224,219,20)" fg:x="987245" fg:w="567"/><text x="41.4326%" y="383.50"></text></g><g><title>sched_clock_cpu (367 samples, 0.02%)</title><rect x="41.1910%" y="357" width="0.0153%" height="15" fill="rgb(222,156,15)" fg:x="987445" fg:w="367"/><text x="41.4410%" y="367.50"></text></g><g><title>sched_clock (329 samples, 0.01%)</title><rect x="41.1925%" y="341" width="0.0137%" height="15" fill="rgb(231,97,17)" fg:x="987483" fg:w="329"/><text x="41.4425%" y="351.50"></text></g><g><title>native_sched_clock (313 samples, 0.01%)</title><rect x="41.1932%" y="325" width="0.0131%" height="15" fill="rgb(218,70,48)" fg:x="987499" fg:w="313"/><text x="41.4432%" y="335.50"></text></g><g><title>psi_task_switch (258 samples, 0.01%)</title><rect x="41.2063%" y="405" width="0.0108%" height="15" fill="rgb(212,196,52)" fg:x="987812" fg:w="258"/><text x="41.4563%" y="415.50"></text></g><g><title>__schedule (15,535 samples, 0.65%)</title><rect x="40.5892%" y="421" width="0.6480%" height="15" fill="rgb(243,203,18)" fg:x="973019" fg:w="15535"/><text x="40.8392%" y="431.50"></text></g><g><title>update_rq_clock (263 samples, 0.01%)</title><rect x="41.2263%" y="405" width="0.0110%" height="15" fill="rgb(252,125,41)" fg:x="988291" fg:w="263"/><text x="41.4763%" y="415.50"></text></g><g><title>__btrfs_tree_lock (56,044 samples, 2.34%)</title><rect x="38.8994%" y="453" width="2.3379%" height="15" fill="rgb(223,180,33)" fg:x="932511" fg:w="56044"/><text x="39.1494%" y="463.50">_..</text></g><g><title>schedule (15,737 samples, 0.66%)</title><rect x="40.5808%" y="437" width="0.6565%" height="15" fill="rgb(254,159,46)" fg:x="972818" fg:w="15737"/><text x="40.8308%" y="447.50"></text></g><g><title>btrfs_lock_root_node (56,694 samples, 2.36%)</title><rect x="38.8969%" y="469" width="2.3650%" height="15" fill="rgb(254,38,10)" fg:x="932452" fg:w="56694"/><text x="39.1469%" y="479.50">bt..</text></g><g><title>btrfs_root_node (591 samples, 0.02%)</title><rect x="41.2373%" y="453" width="0.0247%" height="15" fill="rgb(208,217,32)" fg:x="988555" fg:w="591"/><text x="41.4873%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (1,243 samples, 0.05%)</title><rect x="41.2619%" y="469" width="0.0519%" height="15" fill="rgb(221,120,13)" fg:x="989146" fg:w="1243"/><text x="41.5119%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (480 samples, 0.02%)</title><rect x="41.2937%" y="453" width="0.0200%" height="15" fill="rgb(246,54,52)" fg:x="989909" fg:w="480"/><text x="41.5437%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (571 samples, 0.02%)</title><rect x="41.3138%" y="469" width="0.0238%" height="15" fill="rgb(242,34,25)" fg:x="990390" fg:w="571"/><text x="41.5638%" y="479.50"></text></g><g><title>_raw_write_lock (335 samples, 0.01%)</title><rect x="41.3423%" y="453" width="0.0140%" height="15" fill="rgb(247,209,9)" fg:x="991073" fg:w="335"/><text x="41.5923%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (3,094 samples, 0.13%)</title><rect x="41.3376%" y="469" width="0.1291%" height="15" fill="rgb(228,71,26)" fg:x="990961" fg:w="3094"/><text x="41.5876%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (2,646 samples, 0.11%)</title><rect x="41.3563%" y="453" width="0.1104%" height="15" fill="rgb(222,145,49)" fg:x="991409" fg:w="2646"/><text x="41.6063%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (660 samples, 0.03%)</title><rect x="41.4673%" y="469" width="0.0275%" height="15" fill="rgb(218,121,17)" fg:x="994070" fg:w="660"/><text x="41.7173%" y="479.50"></text></g><g><title>generic_bin_search.constprop.0 (4,732 samples, 0.20%)</title><rect x="41.4949%" y="469" width="0.1974%" height="15" fill="rgb(244,50,7)" fg:x="994730" fg:w="4732"/><text x="41.7449%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (629 samples, 0.03%)</title><rect x="41.7216%" y="453" width="0.0262%" height="15" fill="rgb(246,229,37)" fg:x="1000165" fg:w="629"/><text x="41.9716%" y="463.50"></text></g><g><title>verify_parent_transid (492 samples, 0.02%)</title><rect x="41.7273%" y="437" width="0.0205%" height="15" fill="rgb(225,18,5)" fg:x="1000302" fg:w="492"/><text x="41.9773%" y="447.50"></text></g><g><title>btrfs_get_64 (874 samples, 0.04%)</title><rect x="41.7478%" y="453" width="0.0365%" height="15" fill="rgb(213,204,8)" fg:x="1000794" fg:w="874"/><text x="41.9978%" y="463.50"></text></g><g><title>btrfs_verify_level_key (268 samples, 0.01%)</title><rect x="41.7882%" y="453" width="0.0112%" height="15" fill="rgb(238,103,6)" fg:x="1001762" fg:w="268"/><text x="42.0382%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,529 samples, 0.11%)</title><rect x="41.8454%" y="437" width="0.1055%" height="15" fill="rgb(222,25,35)" fg:x="1003133" fg:w="2529"/><text x="42.0954%" y="447.50"></text></g><g><title>mark_page_accessed (943 samples, 0.04%)</title><rect x="41.9623%" y="421" width="0.0393%" height="15" fill="rgb(213,203,35)" fg:x="1005935" fg:w="943"/><text x="42.2123%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,217 samples, 0.05%)</title><rect x="41.9510%" y="437" width="0.0508%" height="15" fill="rgb(221,79,53)" fg:x="1005666" fg:w="1217"/><text x="42.2010%" y="447.50"></text></g><g><title>find_extent_buffer (4,896 samples, 0.20%)</title><rect x="41.7994%" y="453" width="0.2042%" height="15" fill="rgb(243,200,35)" fg:x="1002030" fg:w="4896"/><text x="42.0494%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (8,314 samples, 0.35%)</title><rect x="41.6922%" y="469" width="0.3468%" height="15" fill="rgb(248,60,25)" fg:x="999462" fg:w="8314"/><text x="41.9422%" y="479.50"></text></g><g><title>read_extent_buffer (850 samples, 0.04%)</title><rect x="42.0036%" y="453" width="0.0355%" height="15" fill="rgb(227,53,46)" fg:x="1006926" fg:w="850"/><text x="42.2536%" y="463.50"></text></g><g><title>btrfs_get_64 (271 samples, 0.01%)</title><rect x="42.0521%" y="453" width="0.0113%" height="15" fill="rgb(216,120,32)" fg:x="1008089" fg:w="271"/><text x="42.3021%" y="463.50"></text></g><g><title>__radix_tree_lookup (765 samples, 0.03%)</title><rect x="42.0859%" y="437" width="0.0319%" height="15" fill="rgb(220,134,1)" fg:x="1008899" fg:w="765"/><text x="42.3359%" y="447.50"></text></g><g><title>mark_extent_buffer_accessed (425 samples, 0.02%)</title><rect x="42.1180%" y="437" width="0.0177%" height="15" fill="rgb(237,168,5)" fg:x="1009669" fg:w="425"/><text x="42.3680%" y="447.50"></text></g><g><title>mark_page_accessed (316 samples, 0.01%)</title><rect x="42.1226%" y="421" width="0.0132%" height="15" fill="rgb(231,100,33)" fg:x="1009778" fg:w="316"/><text x="42.3726%" y="431.50"></text></g><g><title>find_extent_buffer (1,747 samples, 0.07%)</title><rect x="42.0634%" y="453" width="0.0729%" height="15" fill="rgb(236,177,47)" fg:x="1008360" fg:w="1747"/><text x="42.3134%" y="463.50"></text></g><g><title>reada_for_balance (2,486 samples, 0.10%)</title><rect x="42.0391%" y="469" width="0.1037%" height="15" fill="rgb(235,7,49)" fg:x="1007776" fg:w="2486"/><text x="42.2891%" y="479.50"></text></g><g><title>__list_del_entry_valid (410 samples, 0.02%)</title><rect x="42.2028%" y="405" width="0.0171%" height="15" fill="rgb(232,119,22)" fg:x="1011700" fg:w="410"/><text x="42.4528%" y="415.50"></text></g><g><title>_raw_spin_lock (569 samples, 0.02%)</title><rect x="42.4140%" y="389" width="0.0237%" height="15" fill="rgb(254,73,53)" fg:x="1016764" fg:w="569"/><text x="42.6640%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (322 samples, 0.01%)</title><rect x="42.4243%" y="373" width="0.0134%" height="15" fill="rgb(251,35,20)" fg:x="1017011" fg:w="322"/><text x="42.6743%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (640 samples, 0.03%)</title><rect x="42.4377%" y="389" width="0.0267%" height="15" fill="rgb(241,119,20)" fg:x="1017333" fg:w="640"/><text x="42.6877%" y="399.50"></text></g><g><title>available_idle_cpu (593 samples, 0.02%)</title><rect x="42.5199%" y="373" width="0.0247%" height="15" fill="rgb(207,102,14)" fg:x="1019302" fg:w="593"/><text x="42.7699%" y="383.50"></text></g><g><title>select_task_rq_fair (2,873 samples, 0.12%)</title><rect x="42.4687%" y="389" width="0.1198%" height="15" fill="rgb(248,201,50)" fg:x="1018075" fg:w="2873"/><text x="42.7187%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (671 samples, 0.03%)</title><rect x="42.5605%" y="373" width="0.0280%" height="15" fill="rgb(222,185,44)" fg:x="1020277" fg:w="671"/><text x="42.8105%" y="383.50"></text></g><g><title>set_task_cpu (258 samples, 0.01%)</title><rect x="42.5885%" y="389" width="0.0108%" height="15" fill="rgb(218,107,18)" fg:x="1020948" fg:w="258"/><text x="42.8385%" y="399.50"></text></g><g><title>update_curr (314 samples, 0.01%)</title><rect x="42.6886%" y="341" width="0.0131%" height="15" fill="rgb(237,177,39)" fg:x="1023347" fg:w="314"/><text x="42.9386%" y="351.50"></text></g><g><title>enqueue_entity (2,655 samples, 0.11%)</title><rect x="42.6302%" y="357" width="0.1108%" height="15" fill="rgb(246,69,6)" fg:x="1021946" fg:w="2655"/><text x="42.8802%" y="367.50"></text></g><g><title>update_load_avg (940 samples, 0.04%)</title><rect x="42.7017%" y="341" width="0.0392%" height="15" fill="rgb(234,208,37)" fg:x="1023661" fg:w="940"/><text x="42.9517%" y="351.50"></text></g><g><title>enqueue_task_fair (3,349 samples, 0.14%)</title><rect x="42.6092%" y="373" width="0.1397%" height="15" fill="rgb(225,4,6)" fg:x="1021444" fg:w="3349"/><text x="42.8592%" y="383.50"></text></g><g><title>ttwu_do_activate (6,933 samples, 0.29%)</title><rect x="42.5993%" y="389" width="0.2892%" height="15" fill="rgb(233,45,0)" fg:x="1021206" fg:w="6933"/><text x="42.8493%" y="399.50"></text></g><g><title>psi_task_change (3,344 samples, 0.14%)</title><rect x="42.7490%" y="373" width="0.1395%" height="15" fill="rgb(226,136,5)" fg:x="1024795" fg:w="3344"/><text x="42.9990%" y="383.50"></text></g><g><title>psi_group_change (2,999 samples, 0.13%)</title><rect x="42.7634%" y="357" width="0.1251%" height="15" fill="rgb(211,91,47)" fg:x="1025140" fg:w="2999"/><text x="43.0134%" y="367.50"></text></g><g><title>record_times (479 samples, 0.02%)</title><rect x="42.8685%" y="341" width="0.0200%" height="15" fill="rgb(242,88,51)" fg:x="1027660" fg:w="479"/><text x="43.1185%" y="351.50"></text></g><g><title>sched_clock_cpu (297 samples, 0.01%)</title><rect x="42.8761%" y="325" width="0.0124%" height="15" fill="rgb(230,91,28)" fg:x="1027842" fg:w="297"/><text x="43.1261%" y="335.50"></text></g><g><title>sched_clock (260 samples, 0.01%)</title><rect x="42.8777%" y="309" width="0.0108%" height="15" fill="rgb(254,186,29)" fg:x="1027879" fg:w="260"/><text x="43.1277%" y="319.50"></text></g><g><title>resched_curr (261 samples, 0.01%)</title><rect x="42.9043%" y="357" width="0.0109%" height="15" fill="rgb(238,6,4)" fg:x="1028517" fg:w="261"/><text x="43.1543%" y="367.50"></text></g><g><title>ttwu_do_wakeup (642 samples, 0.03%)</title><rect x="42.8885%" y="389" width="0.0268%" height="15" fill="rgb(221,151,16)" fg:x="1028139" fg:w="642"/><text x="43.1385%" y="399.50"></text></g><g><title>check_preempt_curr (571 samples, 0.02%)</title><rect x="42.8915%" y="373" width="0.0238%" height="15" fill="rgb(251,143,52)" fg:x="1028210" fg:w="571"/><text x="43.1415%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (531 samples, 0.02%)</title><rect x="42.9153%" y="389" width="0.0222%" height="15" fill="rgb(206,90,15)" fg:x="1028781" fg:w="531"/><text x="43.1653%" y="399.50"></text></g><g><title>__wake_up_common (18,584 samples, 0.78%)</title><rect x="42.1859%" y="437" width="0.7752%" height="15" fill="rgb(218,35,8)" fg:x="1011295" fg:w="18584"/><text x="42.4359%" y="447.50"></text></g><g><title>autoremove_wake_function (18,221 samples, 0.76%)</title><rect x="42.2010%" y="421" width="0.7601%" height="15" fill="rgb(239,215,6)" fg:x="1011658" fg:w="18221"/><text x="42.4510%" y="431.50"></text></g><g><title>try_to_wake_up (17,756 samples, 0.74%)</title><rect x="42.2204%" y="405" width="0.7407%" height="15" fill="rgb(245,116,39)" fg:x="1012123" fg:w="17756"/><text x="42.4704%" y="415.50"></text></g><g><title>update_rq_clock (567 samples, 0.02%)</title><rect x="42.9374%" y="389" width="0.0237%" height="15" fill="rgb(242,65,28)" fg:x="1029312" fg:w="567"/><text x="43.1874%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (2,619 samples, 0.11%)</title><rect x="42.9611%" y="437" width="0.1093%" height="15" fill="rgb(252,132,53)" fg:x="1029879" fg:w="2619"/><text x="43.2111%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,439 samples, 0.10%)</title><rect x="42.9686%" y="421" width="0.1017%" height="15" fill="rgb(224,159,50)" fg:x="1030059" fg:w="2439"/><text x="43.2186%" y="431.50"></text></g><g><title>__wake_up_common_lock (21,446 samples, 0.89%)</title><rect x="42.1839%" y="453" width="0.8946%" height="15" fill="rgb(224,93,4)" fg:x="1011248" fg:w="21446"/><text x="42.4339%" y="463.50"></text></g><g><title>btrfs_search_slot (154,434 samples, 6.44%)</title><rect x="36.6590%" y="485" width="6.4422%" height="15" fill="rgb(208,81,34)" fg:x="878803" fg:w="154434"/><text x="36.9090%" y="495.50">btrfs_se..</text></g><g><title>unlock_up (22,910 samples, 0.96%)</title><rect x="42.1455%" y="469" width="0.9557%" height="15" fill="rgb(233,92,54)" fg:x="1010327" fg:w="22910"/><text x="42.3955%" y="479.50"></text></g><g><title>btrfs_tree_unlock (535 samples, 0.02%)</title><rect x="43.0788%" y="453" width="0.0223%" height="15" fill="rgb(237,21,14)" fg:x="1032702" fg:w="535"/><text x="43.3288%" y="463.50"></text></g><g><title>_raw_spin_lock (391 samples, 0.02%)</title><rect x="43.1112%" y="469" width="0.0163%" height="15" fill="rgb(249,128,51)" fg:x="1033477" fg:w="391"/><text x="43.3612%" y="479.50"></text></g><g><title>inode_sub_bytes (635 samples, 0.03%)</title><rect x="43.1012%" y="485" width="0.0265%" height="15" fill="rgb(223,129,24)" fg:x="1033237" fg:w="635"/><text x="43.3512%" y="495.50"></text></g><g><title>kmem_cache_alloc (784 samples, 0.03%)</title><rect x="43.1277%" y="485" width="0.0327%" height="15" fill="rgb(231,168,25)" fg:x="1033872" fg:w="784"/><text x="43.3777%" y="495.50"></text></g><g><title>kmem_cache_free (697 samples, 0.03%)</title><rect x="43.1604%" y="485" width="0.0291%" height="15" fill="rgb(224,39,20)" fg:x="1034656" fg:w="697"/><text x="43.4104%" y="495.50"></text></g><g><title>_raw_spin_lock (267 samples, 0.01%)</title><rect x="43.2406%" y="453" width="0.0111%" height="15" fill="rgb(225,152,53)" fg:x="1036579" fg:w="267"/><text x="43.4906%" y="463.50"></text></g><g><title>alloc_extent_state (1,650 samples, 0.07%)</title><rect x="43.2517%" y="453" width="0.0688%" height="15" fill="rgb(252,17,24)" fg:x="1036846" fg:w="1650"/><text x="43.5017%" y="463.50"></text></g><g><title>kmem_cache_alloc (1,124 samples, 0.05%)</title><rect x="43.2737%" y="437" width="0.0469%" height="15" fill="rgb(250,114,30)" fg:x="1037372" fg:w="1124"/><text x="43.5237%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (247 samples, 0.01%)</title><rect x="43.3102%" y="421" width="0.0103%" height="15" fill="rgb(229,5,4)" fg:x="1038249" fg:w="247"/><text x="43.5602%" y="431.50"></text></g><g><title>cache_state_if_flags (390 samples, 0.02%)</title><rect x="43.3209%" y="453" width="0.0163%" height="15" fill="rgb(225,176,49)" fg:x="1038505" fg:w="390"/><text x="43.5709%" y="463.50"></text></g><g><title>btrfs_set_delalloc_extent (468 samples, 0.02%)</title><rect x="43.3841%" y="421" width="0.0195%" height="15" fill="rgb(224,221,49)" fg:x="1040020" fg:w="468"/><text x="43.6341%" y="431.50"></text></g><g><title>__set_extent_bit (4,805 samples, 0.20%)</title><rect x="43.2032%" y="469" width="0.2004%" height="15" fill="rgb(253,169,27)" fg:x="1035684" fg:w="4805"/><text x="43.4532%" y="479.50"></text></g><g><title>insert_state (1,594 samples, 0.07%)</title><rect x="43.3372%" y="453" width="0.0665%" height="15" fill="rgb(211,206,16)" fg:x="1038895" fg:w="1594"/><text x="43.5872%" y="463.50"></text></g><g><title>set_state_bits (1,008 samples, 0.04%)</title><rect x="43.3616%" y="437" width="0.0420%" height="15" fill="rgb(244,87,35)" fg:x="1039481" fg:w="1008"/><text x="43.6116%" y="447.50"></text></g><g><title>lock_extent_bits (5,138 samples, 0.21%)</title><rect x="43.1894%" y="485" width="0.2143%" height="15" fill="rgb(246,28,10)" fg:x="1035353" fg:w="5138"/><text x="43.4394%" y="495.50"></text></g><g><title>btrfs_truncate_inode_items (233,048 samples, 9.72%)</title><rect x="33.7137%" y="501" width="9.7215%" height="15" fill="rgb(229,12,44)" fg:x="808197" fg:w="233048"/><text x="33.9637%" y="511.50">btrfs_truncate..</text></g><g><title>read_extent_buffer (754 samples, 0.03%)</title><rect x="43.4038%" y="485" width="0.0315%" height="15" fill="rgb(210,145,37)" fg:x="1040491" fg:w="754"/><text x="43.6538%" y="495.50"></text></g><g><title>clear_extent_bit (334 samples, 0.01%)</title><rect x="43.4352%" y="501" width="0.0139%" height="15" fill="rgb(227,112,52)" fg:x="1041245" fg:w="334"/><text x="43.6852%" y="511.50"></text></g><g><title>__clear_extent_bit (327 samples, 0.01%)</title><rect x="43.4355%" y="485" width="0.0136%" height="15" fill="rgb(238,155,34)" fg:x="1041252" fg:w="327"/><text x="43.6855%" y="495.50"></text></g><g><title>_raw_spin_lock (1,223 samples, 0.05%)</title><rect x="43.4749%" y="469" width="0.0510%" height="15" fill="rgb(239,226,36)" fg:x="1042196" fg:w="1223"/><text x="43.7249%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (1,412 samples, 0.06%)</title><rect x="43.4671%" y="485" width="0.0589%" height="15" fill="rgb(230,16,23)" fg:x="1042009" fg:w="1412"/><text x="43.7171%" y="495.50"></text></g><g><title>_raw_spin_lock (439 samples, 0.02%)</title><rect x="43.5465%" y="469" width="0.0183%" height="15" fill="rgb(236,171,36)" fg:x="1043914" fg:w="439"/><text x="43.7965%" y="479.50"></text></g><g><title>_raw_spin_lock (379 samples, 0.02%)</title><rect x="43.5794%" y="453" width="0.0158%" height="15" fill="rgb(221,22,14)" fg:x="1044702" fg:w="379"/><text x="43.8294%" y="463.50"></text></g><g><title>btrfs_block_rsv_add_bytes (731 samples, 0.03%)</title><rect x="43.5649%" y="469" width="0.0305%" height="15" fill="rgb(242,43,11)" fg:x="1044353" fg:w="731"/><text x="43.8149%" y="479.50"></text></g><g><title>_raw_spin_lock (1,206 samples, 0.05%)</title><rect x="43.6619%" y="437" width="0.0503%" height="15" fill="rgb(232,69,23)" fg:x="1046679" fg:w="1206"/><text x="43.9119%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (593 samples, 0.02%)</title><rect x="43.6875%" y="421" width="0.0247%" height="15" fill="rgb(216,180,54)" fg:x="1047292" fg:w="593"/><text x="43.9375%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (319 samples, 0.01%)</title><rect x="43.7904%" y="421" width="0.0133%" height="15" fill="rgb(216,5,24)" fg:x="1049759" fg:w="319"/><text x="44.0404%" y="431.50"></text></g><g><title>_raw_spin_lock (663 samples, 0.03%)</title><rect x="43.8469%" y="405" width="0.0277%" height="15" fill="rgb(225,89,9)" fg:x="1051113" fg:w="663"/><text x="44.0969%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (3,884 samples, 0.16%)</title><rect x="43.7127%" y="437" width="0.1620%" height="15" fill="rgb(243,75,33)" fg:x="1047898" fg:w="3884"/><text x="43.9627%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,704 samples, 0.07%)</title><rect x="43.8037%" y="421" width="0.0711%" height="15" fill="rgb(247,141,45)" fg:x="1050078" fg:w="1704"/><text x="44.0537%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (726 samples, 0.03%)</title><rect x="43.9153%" y="421" width="0.0303%" height="15" fill="rgb(232,177,36)" fg:x="1052753" fg:w="726"/><text x="44.1653%" y="431.50"></text></g><g><title>_raw_spin_lock (781 samples, 0.03%)</title><rect x="43.9734%" y="405" width="0.0326%" height="15" fill="rgb(219,125,36)" fg:x="1054147" fg:w="781"/><text x="44.2234%" y="415.50"></text></g><g><title>__reserve_bytes (9,510 samples, 0.40%)</title><rect x="43.6094%" y="453" width="0.3967%" height="15" fill="rgb(227,94,9)" fg:x="1045420" fg:w="9510"/><text x="43.8594%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (3,148 samples, 0.13%)</title><rect x="43.8748%" y="437" width="0.1313%" height="15" fill="rgb(240,34,52)" fg:x="1051782" fg:w="3148"/><text x="44.1248%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (1,451 samples, 0.06%)</title><rect x="43.9456%" y="421" width="0.0605%" height="15" fill="rgb(216,45,12)" fg:x="1053479" fg:w="1451"/><text x="44.1956%" y="431.50"></text></g><g><title>btrfs_block_rsv_refill (11,511 samples, 0.48%)</title><rect x="43.5260%" y="485" width="0.4802%" height="15" fill="rgb(246,21,19)" fg:x="1043421" fg:w="11511"/><text x="43.7760%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (9,848 samples, 0.41%)</title><rect x="43.5954%" y="469" width="0.4108%" height="15" fill="rgb(213,98,42)" fg:x="1045084" fg:w="9848"/><text x="43.8454%" y="479.50"></text></g><g><title>_raw_spin_lock (1,118 samples, 0.05%)</title><rect x="44.1347%" y="453" width="0.0466%" height="15" fill="rgb(250,136,47)" fg:x="1058013" fg:w="1118"/><text x="44.3847%" y="463.50"></text></g><g><title>join_transaction (2,211 samples, 0.09%)</title><rect x="44.0894%" y="469" width="0.0922%" height="15" fill="rgb(251,124,27)" fg:x="1056928" fg:w="2211"/><text x="44.3394%" y="479.50"></text></g><g><title>memset_erms (383 samples, 0.02%)</title><rect x="44.2237%" y="453" width="0.0160%" height="15" fill="rgb(229,180,14)" fg:x="1060146" fg:w="383"/><text x="44.4737%" y="463.50"></text></g><g><title>evict_refill_and_join (19,410 samples, 0.81%)</title><rect x="43.4491%" y="501" width="0.8097%" height="15" fill="rgb(245,216,25)" fg:x="1041579" fg:w="19410"/><text x="43.6991%" y="511.50"></text></g><g><title>start_transaction (5,849 samples, 0.24%)</title><rect x="44.0148%" y="485" width="0.2440%" height="15" fill="rgb(251,43,5)" fg:x="1055140" fg:w="5849"/><text x="44.2648%" y="495.50"></text></g><g><title>kmem_cache_alloc (1,850 samples, 0.08%)</title><rect x="44.1817%" y="469" width="0.0772%" height="15" fill="rgb(250,128,24)" fg:x="1059139" fg:w="1850"/><text x="44.4317%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (460 samples, 0.02%)</title><rect x="44.2396%" y="453" width="0.0192%" height="15" fill="rgb(217,117,27)" fg:x="1060529" fg:w="460"/><text x="44.4896%" y="463.50"></text></g><g><title>kfree (1,440 samples, 0.06%)</title><rect x="44.2625%" y="501" width="0.0601%" height="15" fill="rgb(245,147,4)" fg:x="1061076" fg:w="1440"/><text x="44.5125%" y="511.50"></text></g><g><title>__slab_free (540 samples, 0.02%)</title><rect x="44.3676%" y="485" width="0.0225%" height="15" fill="rgb(242,201,35)" fg:x="1063597" fg:w="540"/><text x="44.6176%" y="495.50"></text></g><g><title>kmem_cache_free (2,119 samples, 0.09%)</title><rect x="44.3225%" y="501" width="0.0884%" height="15" fill="rgb(218,181,1)" fg:x="1062516" fg:w="2119"/><text x="44.5725%" y="511.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (363 samples, 0.02%)</title><rect x="44.3958%" y="485" width="0.0151%" height="15" fill="rgb(222,6,29)" fg:x="1064272" fg:w="363"/><text x="44.6458%" y="495.50"></text></g><g><title>lock_extent_bits (264 samples, 0.01%)</title><rect x="44.4109%" y="501" width="0.0110%" height="15" fill="rgb(208,186,3)" fg:x="1064635" fg:w="264"/><text x="44.6609%" y="511.50"></text></g><g><title>__set_extent_bit (257 samples, 0.01%)</title><rect x="44.4112%" y="485" width="0.0107%" height="15" fill="rgb(216,36,26)" fg:x="1064642" fg:w="257"/><text x="44.6612%" y="495.50"></text></g><g><title>truncate_inode_pages_final (687 samples, 0.03%)</title><rect x="44.4265%" y="501" width="0.0287%" height="15" fill="rgb(248,201,23)" fg:x="1065009" fg:w="687"/><text x="44.6765%" y="511.50"></text></g><g><title>__pagevec_release (904 samples, 0.04%)</title><rect x="44.4664%" y="485" width="0.0377%" height="15" fill="rgb(251,170,31)" fg:x="1065964" fg:w="904"/><text x="44.7164%" y="495.50"></text></g><g><title>release_pages (605 samples, 0.03%)</title><rect x="44.4788%" y="469" width="0.0252%" height="15" fill="rgb(207,110,25)" fg:x="1066263" fg:w="605"/><text x="44.7288%" y="479.50"></text></g><g><title>delete_from_page_cache_batch (363 samples, 0.02%)</title><rect x="44.5046%" y="485" width="0.0151%" height="15" fill="rgb(250,54,15)" fg:x="1066880" fg:w="363"/><text x="44.7546%" y="495.50"></text></g><g><title>btrfs_evict_inode (666,214 samples, 27.79%)</title><rect x="16.7476%" y="517" width="27.7909%" height="15" fill="rgb(227,68,33)" fg:x="401480" fg:w="666214"/><text x="16.9976%" y="527.50">btrfs_evict_inode</text></g><g><title>truncate_inode_pages_range (1,998 samples, 0.08%)</title><rect x="44.4552%" y="501" width="0.0833%" height="15" fill="rgb(238,34,41)" fg:x="1065696" fg:w="1998"/><text x="44.7052%" y="511.50"></text></g><g><title>_raw_spin_lock_irq (400 samples, 0.02%)</title><rect x="44.5442%" y="501" width="0.0167%" height="15" fill="rgb(220,11,15)" fg:x="1067830" fg:w="400"/><text x="44.7942%" y="511.50"></text></g><g><title>clear_inode (538 samples, 0.02%)</title><rect x="44.5385%" y="517" width="0.0224%" height="15" fill="rgb(246,111,35)" fg:x="1067694" fg:w="538"/><text x="44.7885%" y="527.50"></text></g><g><title>inode_wait_for_writeback (438 samples, 0.02%)</title><rect x="44.5610%" y="517" width="0.0183%" height="15" fill="rgb(209,88,53)" fg:x="1068232" fg:w="438"/><text x="44.8110%" y="527.50"></text></g><g><title>_raw_spin_lock (307 samples, 0.01%)</title><rect x="44.5664%" y="501" width="0.0128%" height="15" fill="rgb(231,185,47)" fg:x="1068363" fg:w="307"/><text x="44.8164%" y="511.50"></text></g><g><title>evict (670,642 samples, 27.98%)</title><rect x="16.6100%" y="533" width="27.9756%" height="15" fill="rgb(233,154,1)" fg:x="398182" fg:w="670642"/><text x="16.8600%" y="543.50">evict</text></g><g><title>__legitimize_mnt (453 samples, 0.02%)</title><rect x="44.6644%" y="453" width="0.0189%" height="15" fill="rgb(225,15,46)" fg:x="1070712" fg:w="453"/><text x="44.9144%" y="463.50"></text></g><g><title>__legitimize_path (956 samples, 0.04%)</title><rect x="44.6535%" y="469" width="0.0399%" height="15" fill="rgb(211,135,41)" fg:x="1070450" fg:w="956"/><text x="44.9035%" y="479.50"></text></g><g><title>lockref_get_not_dead (241 samples, 0.01%)</title><rect x="44.6833%" y="453" width="0.0101%" height="15" fill="rgb(208,54,0)" fg:x="1071165" fg:w="241"/><text x="44.9333%" y="463.50"></text></g><g><title>legitimize_links (322 samples, 0.01%)</title><rect x="44.6935%" y="469" width="0.0134%" height="15" fill="rgb(244,136,14)" fg:x="1071409" fg:w="322"/><text x="44.9435%" y="479.50"></text></g><g><title>complete_walk (2,002 samples, 0.08%)</title><rect x="44.6264%" y="501" width="0.0835%" height="15" fill="rgb(241,56,14)" fg:x="1069801" fg:w="2002"/><text x="44.8764%" y="511.50"></text></g><g><title>try_to_unlazy (1,729 samples, 0.07%)</title><rect x="44.6378%" y="485" width="0.0721%" height="15" fill="rgb(205,80,24)" fg:x="1070074" fg:w="1729"/><text x="44.8878%" y="495.50"></text></g><g><title>inode_permission.part.0 (1,240 samples, 0.05%)</title><rect x="44.7326%" y="485" width="0.0517%" height="15" fill="rgb(220,57,4)" fg:x="1072346" fg:w="1240"/><text x="44.9826%" y="495.50"></text></g><g><title>generic_permission (529 samples, 0.02%)</title><rect x="44.7622%" y="469" width="0.0221%" height="15" fill="rgb(226,193,50)" fg:x="1073057" fg:w="529"/><text x="45.0122%" y="479.50"></text></g><g><title>link_path_walk.part.0 (1,900 samples, 0.08%)</title><rect x="44.7099%" y="501" width="0.0793%" height="15" fill="rgb(231,168,22)" fg:x="1071803" fg:w="1900"/><text x="44.9599%" y="511.50"></text></g><g><title>__fget_files (1,327 samples, 0.06%)</title><rect x="44.8477%" y="469" width="0.0554%" height="15" fill="rgb(254,215,14)" fg:x="1075106" fg:w="1327"/><text x="45.0977%" y="479.50"></text></g><g><title>__fget_light (1,918 samples, 0.08%)</title><rect x="44.8232%" y="485" width="0.0800%" height="15" fill="rgb(211,115,16)" fg:x="1074519" fg:w="1918"/><text x="45.0732%" y="495.50"></text></g><g><title>path_init (2,897 samples, 0.12%)</title><rect x="44.7892%" y="501" width="0.1208%" height="15" fill="rgb(236,210,16)" fg:x="1073703" fg:w="2897"/><text x="45.0392%" y="511.50"></text></g><g><title>filename_parentat (8,768 samples, 0.37%)</title><rect x="44.5857%" y="533" width="0.3658%" height="15" fill="rgb(221,94,12)" fg:x="1068824" fg:w="8768"/><text x="44.8357%" y="543.50"></text></g><g><title>path_parentat (7,998 samples, 0.33%)</title><rect x="44.6178%" y="517" width="0.3336%" height="15" fill="rgb(235,218,49)" fg:x="1069594" fg:w="7998"/><text x="44.8678%" y="527.50"></text></g><g><title>terminate_walk (992 samples, 0.04%)</title><rect x="44.9100%" y="501" width="0.0414%" height="15" fill="rgb(217,114,14)" fg:x="1076600" fg:w="992"/><text x="45.1600%" y="511.50"></text></g><g><title>ihold (1,055 samples, 0.04%)</title><rect x="44.9514%" y="533" width="0.0440%" height="15" fill="rgb(216,145,22)" fg:x="1077592" fg:w="1055"/><text x="45.2014%" y="543.50"></text></g><g><title>_atomic_dec_and_lock (379 samples, 0.02%)</title><rect x="45.0173%" y="517" width="0.0158%" height="15" fill="rgb(217,112,39)" fg:x="1079171" fg:w="379"/><text x="45.2673%" y="527.50"></text></g><g><title>btrfs_drop_inode (330 samples, 0.01%)</title><rect x="45.0333%" y="517" width="0.0138%" height="15" fill="rgb(225,85,32)" fg:x="1079554" fg:w="330"/><text x="45.2833%" y="527.50"></text></g><g><title>iput.part.0 (1,240 samples, 0.05%)</title><rect x="44.9958%" y="533" width="0.0517%" height="15" fill="rgb(245,209,47)" fg:x="1078655" fg:w="1240"/><text x="45.2458%" y="543.50"></text></g><g><title>kmem_cache_free (1,152 samples, 0.05%)</title><rect x="45.0475%" y="533" width="0.0481%" height="15" fill="rgb(218,220,15)" fg:x="1079895" fg:w="1152"/><text x="45.2975%" y="543.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (386 samples, 0.02%)</title><rect x="45.0794%" y="517" width="0.0161%" height="15" fill="rgb(222,202,31)" fg:x="1080661" fg:w="386"/><text x="45.3294%" y="527.50"></text></g><g><title>mnt_drop_write (782 samples, 0.03%)</title><rect x="45.0955%" y="533" width="0.0326%" height="15" fill="rgb(243,203,4)" fg:x="1081047" fg:w="782"/><text x="45.3455%" y="543.50"></text></g><g><title>__mnt_want_write (510 samples, 0.02%)</title><rect x="45.1434%" y="517" width="0.0213%" height="15" fill="rgb(237,92,17)" fg:x="1082194" fg:w="510"/><text x="45.3934%" y="527.50"></text></g><g><title>mnt_want_write (999 samples, 0.04%)</title><rect x="45.1282%" y="533" width="0.0417%" height="15" fill="rgb(231,119,7)" fg:x="1081829" fg:w="999"/><text x="45.3782%" y="543.50"></text></g><g><title>putname (795 samples, 0.03%)</title><rect x="45.1859%" y="533" width="0.0332%" height="15" fill="rgb(237,82,41)" fg:x="1083212" fg:w="795"/><text x="45.4359%" y="543.50"></text></g><g><title>apparmor_path_unlink (363 samples, 0.02%)</title><rect x="45.2239%" y="517" width="0.0151%" height="15" fill="rgb(226,81,48)" fg:x="1084123" fg:w="363"/><text x="45.4739%" y="527.50"></text></g><g><title>security_path_unlink (1,862 samples, 0.08%)</title><rect x="45.2192%" y="533" width="0.0777%" height="15" fill="rgb(234,70,51)" fg:x="1084011" fg:w="1862"/><text x="45.4692%" y="543.50"></text></g><g><title>tomoyo_path_unlink (1,384 samples, 0.06%)</title><rect x="45.2391%" y="517" width="0.0577%" height="15" fill="rgb(251,86,4)" fg:x="1084489" fg:w="1384"/><text x="45.4891%" y="527.50"></text></g><g><title>tomoyo_path_perm (1,347 samples, 0.06%)</title><rect x="45.2407%" y="501" width="0.0562%" height="15" fill="rgb(244,144,28)" fg:x="1084526" fg:w="1347"/><text x="45.4907%" y="511.50"></text></g><g><title>tomoyo_init_request_info (944 samples, 0.04%)</title><rect x="45.2575%" y="485" width="0.0394%" height="15" fill="rgb(232,161,39)" fg:x="1084929" fg:w="944"/><text x="45.5075%" y="495.50"></text></g><g><title>tomoyo_domain (554 samples, 0.02%)</title><rect x="45.2737%" y="469" width="0.0231%" height="15" fill="rgb(247,34,51)" fg:x="1085319" fg:w="554"/><text x="45.5237%" y="479.50"></text></g><g><title>up_write (260 samples, 0.01%)</title><rect x="45.2969%" y="533" width="0.0108%" height="15" fill="rgb(225,132,2)" fg:x="1085873" fg:w="260"/><text x="45.5469%" y="543.50"></text></g><g><title>_raw_spin_lock (308 samples, 0.01%)</title><rect x="45.3292%" y="517" width="0.0128%" height="15" fill="rgb(209,159,44)" fg:x="1086648" fg:w="308"/><text x="45.5792%" y="527.50"></text></g><g><title>_raw_spin_lock (1,846 samples, 0.08%)</title><rect x="45.5038%" y="453" width="0.0770%" height="15" fill="rgb(251,214,1)" fg:x="1090834" fg:w="1846"/><text x="45.7538%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (680 samples, 0.03%)</title><rect x="45.5524%" y="437" width="0.0284%" height="15" fill="rgb(247,84,47)" fg:x="1092000" fg:w="680"/><text x="45.8024%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (2,975 samples, 0.12%)</title><rect x="45.4645%" y="485" width="0.1241%" height="15" fill="rgb(240,111,43)" fg:x="1089891" fg:w="2975"/><text x="45.7145%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (2,788 samples, 0.12%)</title><rect x="45.4723%" y="469" width="0.1163%" height="15" fill="rgb(215,214,35)" fg:x="1090078" fg:w="2788"/><text x="45.7223%" y="479.50"></text></g><g><title>__btrfs_end_transaction (6,222 samples, 0.26%)</title><rect x="45.3641%" y="501" width="0.2595%" height="15" fill="rgb(248,207,23)" fg:x="1087485" fg:w="6222"/><text x="45.6141%" y="511.50"></text></g><g><title>kmem_cache_free (841 samples, 0.04%)</title><rect x="45.5886%" y="485" width="0.0351%" height="15" fill="rgb(214,186,4)" fg:x="1092866" fg:w="841"/><text x="45.8386%" y="495.50"></text></g><g><title>btrfs_end_log_trans (322 samples, 0.01%)</title><rect x="45.7328%" y="469" width="0.0134%" height="15" fill="rgb(220,133,22)" fg:x="1096323" fg:w="322"/><text x="45.9828%" y="479.50"></text></g><g><title>__wake_up_common (359 samples, 0.01%)</title><rect x="45.7571%" y="421" width="0.0150%" height="15" fill="rgb(239,134,19)" fg:x="1096906" fg:w="359"/><text x="46.0071%" y="431.50"></text></g><g><title>autoremove_wake_function (351 samples, 0.01%)</title><rect x="45.7574%" y="405" width="0.0146%" height="15" fill="rgb(250,140,9)" fg:x="1096914" fg:w="351"/><text x="46.0074%" y="415.50"></text></g><g><title>try_to_wake_up (346 samples, 0.01%)</title><rect x="45.7576%" y="389" width="0.0144%" height="15" fill="rgb(225,59,14)" fg:x="1096919" fg:w="346"/><text x="46.0076%" y="399.50"></text></g><g><title>__wake_up_common_lock (427 samples, 0.02%)</title><rect x="45.7571%" y="437" width="0.0178%" height="15" fill="rgb(214,152,51)" fg:x="1096905" fg:w="427"/><text x="46.0071%" y="447.50"></text></g><g><title>btrfs_tree_unlock (251 samples, 0.01%)</title><rect x="45.7749%" y="437" width="0.0105%" height="15" fill="rgb(251,227,43)" fg:x="1097332" fg:w="251"/><text x="46.0249%" y="447.50"></text></g><g><title>btrfs_free_path (1,326 samples, 0.06%)</title><rect x="45.7462%" y="469" width="0.0553%" height="15" fill="rgb(241,96,17)" fg:x="1096645" fg:w="1326"/><text x="45.9962%" y="479.50"></text></g><g><title>btrfs_release_path (1,233 samples, 0.05%)</title><rect x="45.7501%" y="453" width="0.0514%" height="15" fill="rgb(234,198,43)" fg:x="1096738" fg:w="1233"/><text x="46.0001%" y="463.50"></text></g><g><title>__btrfs_tree_read_lock (440 samples, 0.02%)</title><rect x="45.8385%" y="421" width="0.0184%" height="15" fill="rgb(220,108,29)" fg:x="1098858" fg:w="440"/><text x="46.0885%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (691 samples, 0.03%)</title><rect x="45.8367%" y="437" width="0.0288%" height="15" fill="rgb(226,163,33)" fg:x="1098814" fg:w="691"/><text x="46.0867%" y="447.50"></text></g><g><title>__btrfs_tree_lock (665 samples, 0.03%)</title><rect x="45.8714%" y="421" width="0.0277%" height="15" fill="rgb(205,194,45)" fg:x="1099647" fg:w="665"/><text x="46.1214%" y="431.50"></text></g><g><title>btrfs_lock_root_node (889 samples, 0.04%)</title><rect x="45.8701%" y="437" width="0.0371%" height="15" fill="rgb(206,143,44)" fg:x="1099616" fg:w="889"/><text x="46.1201%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (333 samples, 0.01%)</title><rect x="45.9072%" y="437" width="0.0139%" height="15" fill="rgb(236,136,36)" fg:x="1100505" fg:w="333"/><text x="46.1572%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (635 samples, 0.03%)</title><rect x="45.9378%" y="437" width="0.0265%" height="15" fill="rgb(249,172,42)" fg:x="1101237" fg:w="635"/><text x="46.1878%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (316 samples, 0.01%)</title><rect x="45.9642%" y="437" width="0.0132%" height="15" fill="rgb(216,139,23)" fg:x="1101872" fg:w="316"/><text x="46.2142%" y="447.50"></text></g><g><title>btrfs_lookup_dir_index_item (4,516 samples, 0.19%)</title><rect x="45.8015%" y="469" width="0.1884%" height="15" fill="rgb(207,166,20)" fg:x="1097971" fg:w="4516"/><text x="46.0515%" y="479.50"></text></g><g><title>btrfs_search_slot (4,272 samples, 0.18%)</title><rect x="45.8117%" y="453" width="0.1782%" height="15" fill="rgb(210,209,22)" fg:x="1098215" fg:w="4272"/><text x="46.0617%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (254 samples, 0.01%)</title><rect x="46.0555%" y="389" width="0.0106%" height="15" fill="rgb(232,118,20)" fg:x="1104060" fg:w="254"/><text x="46.3055%" y="399.50"></text></g><g><title>prepare_to_wait_event (275 samples, 0.01%)</title><rect x="46.0549%" y="405" width="0.0115%" height="15" fill="rgb(238,113,42)" fg:x="1104046" fg:w="275"/><text x="46.3049%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (957 samples, 0.04%)</title><rect x="46.0390%" y="421" width="0.0399%" height="15" fill="rgb(231,42,5)" fg:x="1103664" fg:w="957"/><text x="46.2890%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (1,384 samples, 0.06%)</title><rect x="46.0372%" y="437" width="0.0577%" height="15" fill="rgb(243,166,24)" fg:x="1103620" fg:w="1384"/><text x="46.2872%" y="447.50"></text></g><g><title>btrfs_root_node (383 samples, 0.02%)</title><rect x="46.0789%" y="421" width="0.0160%" height="15" fill="rgb(237,226,12)" fg:x="1104621" fg:w="383"/><text x="46.3289%" y="431.50"></text></g><g><title>__btrfs_tree_lock (610 samples, 0.03%)</title><rect x="46.1016%" y="421" width="0.0254%" height="15" fill="rgb(229,133,24)" fg:x="1105164" fg:w="610"/><text x="46.3516%" y="431.50"></text></g><g><title>btrfs_lock_root_node (823 samples, 0.03%)</title><rect x="46.1008%" y="437" width="0.0343%" height="15" fill="rgb(238,33,43)" fg:x="1105145" fg:w="823"/><text x="46.3508%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (559 samples, 0.02%)</title><rect x="46.1351%" y="437" width="0.0233%" height="15" fill="rgb(227,59,38)" fg:x="1105968" fg:w="559"/><text x="46.3851%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (701 samples, 0.03%)</title><rect x="46.1747%" y="437" width="0.0292%" height="15" fill="rgb(230,97,0)" fg:x="1106916" fg:w="701"/><text x="46.4247%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (285 samples, 0.01%)</title><rect x="46.2039%" y="437" width="0.0119%" height="15" fill="rgb(250,173,50)" fg:x="1107617" fg:w="285"/><text x="46.4539%" y="447.50"></text></g><g><title>btrfs_search_slot (5,356 samples, 0.22%)</title><rect x="46.0055%" y="453" width="0.2234%" height="15" fill="rgb(240,15,50)" fg:x="1102860" fg:w="5356"/><text x="46.2555%" y="463.50"></text></g><g><title>btrfs_lookup_dir_item (6,025 samples, 0.25%)</title><rect x="45.9899%" y="469" width="0.2513%" height="15" fill="rgb(221,93,22)" fg:x="1102487" fg:w="6025"/><text x="46.2399%" y="479.50"></text></g><g><title>crc32c (296 samples, 0.01%)</title><rect x="46.2289%" y="453" width="0.0123%" height="15" fill="rgb(245,180,53)" fg:x="1108216" fg:w="296"/><text x="46.4789%" y="463.50"></text></g><g><title>__wake_up_common (290 samples, 0.01%)</title><rect x="46.2526%" y="437" width="0.0121%" height="15" fill="rgb(231,88,51)" fg:x="1108784" fg:w="290"/><text x="46.5026%" y="447.50"></text></g><g><title>autoremove_wake_function (289 samples, 0.01%)</title><rect x="46.2526%" y="421" width="0.0121%" height="15" fill="rgb(240,58,21)" fg:x="1108785" fg:w="289"/><text x="46.5026%" y="431.50"></text></g><g><title>try_to_wake_up (287 samples, 0.01%)</title><rect x="46.2527%" y="405" width="0.0120%" height="15" fill="rgb(237,21,10)" fg:x="1108787" fg:w="287"/><text x="46.5027%" y="415.50"></text></g><g><title>__wake_up_common_lock (367 samples, 0.02%)</title><rect x="46.2525%" y="453" width="0.0153%" height="15" fill="rgb(218,43,11)" fg:x="1108782" fg:w="367"/><text x="46.5025%" y="463.50"></text></g><g><title>btrfs_tree_unlock (361 samples, 0.02%)</title><rect x="46.2680%" y="453" width="0.0151%" height="15" fill="rgb(218,221,29)" fg:x="1109153" fg:w="361"/><text x="46.5180%" y="463.50"></text></g><g><title>btrfs_release_path (1,373 samples, 0.06%)</title><rect x="46.2412%" y="469" width="0.0573%" height="15" fill="rgb(214,118,42)" fg:x="1108512" fg:w="1373"/><text x="46.4912%" y="479.50"></text></g><g><title>kmem_cache_alloc (523 samples, 0.02%)</title><rect x="46.2985%" y="469" width="0.0218%" height="15" fill="rgb(251,200,26)" fg:x="1109885" fg:w="523"/><text x="46.5485%" y="479.50"></text></g><g><title>kmem_cache_free (588 samples, 0.02%)</title><rect x="46.3203%" y="469" width="0.0245%" height="15" fill="rgb(237,101,39)" fg:x="1110408" fg:w="588"/><text x="46.5703%" y="479.50"></text></g><g><title>mutex_lock (462 samples, 0.02%)</title><rect x="46.3449%" y="469" width="0.0193%" height="15" fill="rgb(251,117,11)" fg:x="1110996" fg:w="462"/><text x="46.5949%" y="479.50"></text></g><g><title>btrfs_del_dir_entries_in_log (16,410 samples, 0.68%)</title><rect x="45.6934%" y="485" width="0.6845%" height="15" fill="rgb(216,223,23)" fg:x="1095378" fg:w="16410"/><text x="45.9434%" y="495.50"></text></g><g><title>mutex_unlock (330 samples, 0.01%)</title><rect x="46.3641%" y="469" width="0.0138%" height="15" fill="rgb(251,54,12)" fg:x="1111458" fg:w="330"/><text x="46.6141%" y="479.50"></text></g><g><title>__wake_up_common (820 samples, 0.03%)</title><rect x="46.4291%" y="405" width="0.0342%" height="15" fill="rgb(254,176,54)" fg:x="1113015" fg:w="820"/><text x="46.6791%" y="415.50"></text></g><g><title>autoremove_wake_function (800 samples, 0.03%)</title><rect x="46.4299%" y="389" width="0.0334%" height="15" fill="rgb(210,32,8)" fg:x="1113035" fg:w="800"/><text x="46.6799%" y="399.50"></text></g><g><title>try_to_wake_up (790 samples, 0.03%)</title><rect x="46.4303%" y="373" width="0.0330%" height="15" fill="rgb(235,52,38)" fg:x="1113045" fg:w="790"/><text x="46.6803%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (277 samples, 0.01%)</title><rect x="46.4633%" y="405" width="0.0116%" height="15" fill="rgb(231,4,44)" fg:x="1113835" fg:w="277"/><text x="46.7133%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (262 samples, 0.01%)</title><rect x="46.4639%" y="389" width="0.0109%" height="15" fill="rgb(249,2,32)" fg:x="1113850" fg:w="262"/><text x="46.7139%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,111 samples, 0.05%)</title><rect x="46.4289%" y="421" width="0.0463%" height="15" fill="rgb(224,65,26)" fg:x="1113011" fg:w="1111"/><text x="46.6789%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (421 samples, 0.02%)</title><rect x="46.4846%" y="421" width="0.0176%" height="15" fill="rgb(250,73,40)" fg:x="1114346" fg:w="421"/><text x="46.7346%" y="431.50"></text></g><g><title>_raw_spin_lock (257 samples, 0.01%)</title><rect x="46.4914%" y="405" width="0.0107%" height="15" fill="rgb(253,177,16)" fg:x="1114510" fg:w="257"/><text x="46.7414%" y="415.50"></text></g><g><title>btrfs_free_path (2,594 samples, 0.11%)</title><rect x="46.4077%" y="453" width="0.1082%" height="15" fill="rgb(217,32,34)" fg:x="1112503" fg:w="2594"/><text x="46.6577%" y="463.50"></text></g><g><title>btrfs_release_path (2,443 samples, 0.10%)</title><rect x="46.4140%" y="437" width="0.1019%" height="15" fill="rgb(212,7,10)" fg:x="1112654" fg:w="2443"/><text x="46.6640%" y="447.50"></text></g><g><title>release_extent_buffer (330 samples, 0.01%)</title><rect x="46.5022%" y="421" width="0.0138%" height="15" fill="rgb(245,89,8)" fg:x="1114767" fg:w="330"/><text x="46.7522%" y="431.50"></text></g><g><title>_raw_read_lock (399 samples, 0.02%)</title><rect x="46.5914%" y="405" width="0.0166%" height="15" fill="rgb(237,16,53)" fg:x="1116907" fg:w="399"/><text x="46.8414%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (323 samples, 0.01%)</title><rect x="46.6145%" y="389" width="0.0135%" height="15" fill="rgb(250,204,30)" fg:x="1117459" fg:w="323"/><text x="46.8645%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (301 samples, 0.01%)</title><rect x="46.6154%" y="373" width="0.0126%" height="15" fill="rgb(208,77,27)" fg:x="1117481" fg:w="301"/><text x="46.8654%" y="383.50"></text></g><g><title>prepare_to_wait_event (352 samples, 0.01%)</title><rect x="46.6135%" y="405" width="0.0147%" height="15" fill="rgb(250,204,28)" fg:x="1117435" fg:w="352"/><text x="46.8635%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (1,721 samples, 0.07%)</title><rect x="46.5820%" y="421" width="0.0718%" height="15" fill="rgb(244,63,21)" fg:x="1116680" fg:w="1721"/><text x="46.8320%" y="431.50"></text></g><g><title>schedule (408 samples, 0.02%)</title><rect x="46.6367%" y="405" width="0.0170%" height="15" fill="rgb(236,85,44)" fg:x="1117993" fg:w="408"/><text x="46.8867%" y="415.50"></text></g><g><title>__schedule (404 samples, 0.02%)</title><rect x="46.6369%" y="389" width="0.0169%" height="15" fill="rgb(215,98,4)" fg:x="1117997" fg:w="404"/><text x="46.8869%" y="399.50"></text></g><g><title>__btrfs_read_lock_root_node (3,189 samples, 0.13%)</title><rect x="46.5766%" y="437" width="0.1330%" height="15" fill="rgb(235,38,11)" fg:x="1116551" fg:w="3189"/><text x="46.8266%" y="447.50"></text></g><g><title>btrfs_root_node (1,339 samples, 0.06%)</title><rect x="46.6538%" y="421" width="0.0559%" height="15" fill="rgb(254,186,25)" fg:x="1118401" fg:w="1339"/><text x="46.9038%" y="431.50"></text></g><g><title>_raw_write_lock (296 samples, 0.01%)</title><rect x="46.7332%" y="405" width="0.0123%" height="15" fill="rgb(225,55,31)" fg:x="1120306" fg:w="296"/><text x="46.9832%" y="415.50"></text></g><g><title>prepare_to_wait_event (242 samples, 0.01%)</title><rect x="46.7489%" y="405" width="0.0101%" height="15" fill="rgb(211,15,21)" fg:x="1120681" fg:w="242"/><text x="46.9989%" y="415.50"></text></g><g><title>__btrfs_tree_lock (1,168 samples, 0.05%)</title><rect x="46.7217%" y="421" width="0.0487%" height="15" fill="rgb(215,187,41)" fg:x="1120031" fg:w="1168"/><text x="46.9717%" y="431.50"></text></g><g><title>btrfs_lock_root_node (1,517 samples, 0.06%)</title><rect x="46.7202%" y="437" width="0.0633%" height="15" fill="rgb(248,69,32)" fg:x="1119995" fg:w="1517"/><text x="46.9702%" y="447.50"></text></g><g><title>btrfs_root_node (313 samples, 0.01%)</title><rect x="46.7705%" y="421" width="0.0131%" height="15" fill="rgb(252,102,52)" fg:x="1121199" fg:w="313"/><text x="47.0205%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (278 samples, 0.01%)</title><rect x="46.7875%" y="437" width="0.0116%" height="15" fill="rgb(253,140,32)" fg:x="1121607" fg:w="278"/><text x="47.0375%" y="447.50"></text></g><g><title>_raw_spin_lock (272 samples, 0.01%)</title><rect x="46.8059%" y="421" width="0.0113%" height="15" fill="rgb(216,56,42)" fg:x="1122049" fg:w="272"/><text x="47.0559%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (372 samples, 0.02%)</title><rect x="46.8018%" y="437" width="0.0155%" height="15" fill="rgb(216,184,14)" fg:x="1121950" fg:w="372"/><text x="47.0518%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (1,389 samples, 0.06%)</title><rect x="46.8173%" y="437" width="0.0579%" height="15" fill="rgb(237,187,27)" fg:x="1122322" fg:w="1389"/><text x="47.0673%" y="447.50"></text></g><g><title>__radix_tree_lookup (289 samples, 0.01%)</title><rect x="46.8922%" y="405" width="0.0121%" height="15" fill="rgb(219,65,3)" fg:x="1124117" fg:w="289"/><text x="47.1422%" y="415.50"></text></g><g><title>find_extent_buffer (578 samples, 0.02%)</title><rect x="46.8864%" y="421" width="0.0241%" height="15" fill="rgb(245,83,25)" fg:x="1123977" fg:w="578"/><text x="47.1364%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (956 samples, 0.04%)</title><rect x="46.8753%" y="437" width="0.0399%" height="15" fill="rgb(214,205,45)" fg:x="1123711" fg:w="956"/><text x="47.1253%" y="447.50"></text></g><g><title>release_extent_buffer (243 samples, 0.01%)</title><rect x="46.9162%" y="437" width="0.0101%" height="15" fill="rgb(241,20,18)" fg:x="1124693" fg:w="243"/><text x="47.1662%" y="447.50"></text></g><g><title>btrfs_search_slot (10,131 samples, 0.42%)</title><rect x="46.5159%" y="453" width="0.4226%" height="15" fill="rgb(232,163,23)" fg:x="1115097" fg:w="10131"/><text x="46.7659%" y="463.50"></text></g><g><title>unlock_up (292 samples, 0.01%)</title><rect x="46.9264%" y="437" width="0.0122%" height="15" fill="rgb(214,5,46)" fg:x="1124936" fg:w="292"/><text x="47.1764%" y="447.50"></text></g><g><title>crc32c (656 samples, 0.03%)</title><rect x="46.9385%" y="453" width="0.0274%" height="15" fill="rgb(229,78,17)" fg:x="1125228" fg:w="656"/><text x="47.1885%" y="463.50"></text></g><g><title>crypto_shash_update (337 samples, 0.01%)</title><rect x="46.9518%" y="437" width="0.0141%" height="15" fill="rgb(248,89,10)" fg:x="1125547" fg:w="337"/><text x="47.2018%" y="447.50"></text></g><g><title>memset_erms (263 samples, 0.01%)</title><rect x="47.0004%" y="437" width="0.0110%" height="15" fill="rgb(248,54,15)" fg:x="1126710" fg:w="263"/><text x="47.2504%" y="447.50"></text></g><g><title>kmem_cache_alloc (1,393 samples, 0.06%)</title><rect x="46.9659%" y="453" width="0.0581%" height="15" fill="rgb(223,116,6)" fg:x="1125884" fg:w="1393"/><text x="47.2159%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (304 samples, 0.01%)</title><rect x="47.0113%" y="437" width="0.0127%" height="15" fill="rgb(205,125,38)" fg:x="1126973" fg:w="304"/><text x="47.2613%" y="447.50"></text></g><g><title>btrfs_del_inode_ref (16,295 samples, 0.68%)</title><rect x="46.3954%" y="469" width="0.6797%" height="15" fill="rgb(251,78,38)" fg:x="1112208" fg:w="16295"/><text x="46.6454%" y="479.50"></text></g><g><title>kmem_cache_free (1,226 samples, 0.05%)</title><rect x="47.0240%" y="453" width="0.0511%" height="15" fill="rgb(253,78,28)" fg:x="1127277" fg:w="1226"/><text x="47.2740%" y="463.50"></text></g><g><title>btrfs_end_log_trans (427 samples, 0.02%)</title><rect x="47.0752%" y="469" width="0.0178%" height="15" fill="rgb(209,120,3)" fg:x="1128503" fg:w="427"/><text x="47.3252%" y="479.50"></text></g><g><title>mutex_lock (622 samples, 0.03%)</title><rect x="47.0930%" y="469" width="0.0259%" height="15" fill="rgb(238,229,9)" fg:x="1128930" fg:w="622"/><text x="47.3430%" y="479.50"></text></g><g><title>btrfs_del_inode_ref_in_log (18,048 samples, 0.75%)</title><rect x="46.3779%" y="485" width="0.7529%" height="15" fill="rgb(253,159,18)" fg:x="1111788" fg:w="18048"/><text x="46.6279%" y="495.50"></text></g><g><title>mutex_unlock (284 samples, 0.01%)</title><rect x="47.1189%" y="469" width="0.0118%" height="15" fill="rgb(244,42,34)" fg:x="1129552" fg:w="284"/><text x="47.3689%" y="479.50"></text></g><g><title>_find_next_bit.constprop.0 (438 samples, 0.02%)</title><rect x="47.2971%" y="405" width="0.0183%" height="15" fill="rgb(224,8,7)" fg:x="1133824" fg:w="438"/><text x="47.5471%" y="415.50"></text></g><g><title>steal_from_bitmap.part.0 (520 samples, 0.02%)</title><rect x="47.2950%" y="421" width="0.0217%" height="15" fill="rgb(210,201,45)" fg:x="1133774" fg:w="520"/><text x="47.5450%" y="431.50"></text></g><g><title>__btrfs_add_free_space (696 samples, 0.03%)</title><rect x="47.2909%" y="437" width="0.0290%" height="15" fill="rgb(252,185,21)" fg:x="1133676" fg:w="696"/><text x="47.5409%" y="447.50"></text></g><g><title>btrfs_free_tree_block (1,002 samples, 0.04%)</title><rect x="47.2906%" y="453" width="0.0418%" height="15" fill="rgb(223,131,1)" fg:x="1133668" fg:w="1002"/><text x="47.5406%" y="463.50"></text></g><g><title>btrfs_del_leaf (1,138 samples, 0.05%)</title><rect x="47.2903%" y="469" width="0.0475%" height="15" fill="rgb(245,141,16)" fg:x="1133661" fg:w="1138"/><text x="47.5403%" y="479.50"></text></g><g><title>btrfs_get_32 (713 samples, 0.03%)</title><rect x="47.3378%" y="469" width="0.0297%" height="15" fill="rgb(229,55,45)" fg:x="1134799" fg:w="713"/><text x="47.5878%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,906 samples, 0.08%)</title><rect x="47.8954%" y="453" width="0.0795%" height="15" fill="rgb(208,92,15)" fg:x="1148167" fg:w="1906"/><text x="48.1454%" y="463.50"></text></g><g><title>btrfs_get_token_32 (14,562 samples, 0.61%)</title><rect x="47.3675%" y="469" width="0.6074%" height="15" fill="rgb(234,185,47)" fg:x="1135512" fg:w="14562"/><text x="47.6175%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (834 samples, 0.03%)</title><rect x="47.9750%" y="469" width="0.0348%" height="15" fill="rgb(253,104,50)" fg:x="1150074" fg:w="834"/><text x="48.2250%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (300 samples, 0.01%)</title><rect x="47.9973%" y="453" width="0.0125%" height="15" fill="rgb(205,70,7)" fg:x="1150608" fg:w="300"/><text x="48.2473%" y="463.50"></text></g><g><title>btrfs_set_token_32 (10,365 samples, 0.43%)</title><rect x="48.0109%" y="469" width="0.4324%" height="15" fill="rgb(240,178,43)" fg:x="1150936" fg:w="10365"/><text x="48.2609%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (1,523 samples, 0.06%)</title><rect x="48.3798%" y="453" width="0.0635%" height="15" fill="rgb(214,112,2)" fg:x="1159778" fg:w="1523"/><text x="48.6298%" y="463.50"></text></g><g><title>leaf_space_used (568 samples, 0.02%)</title><rect x="48.4446%" y="469" width="0.0237%" height="15" fill="rgb(206,46,17)" fg:x="1161332" fg:w="568"/><text x="48.6946%" y="479.50"></text></g><g><title>btrfs_get_32 (421 samples, 0.02%)</title><rect x="48.4507%" y="453" width="0.0176%" height="15" fill="rgb(225,220,16)" fg:x="1161479" fg:w="421"/><text x="48.7007%" y="463.50"></text></g><g><title>memcpy_extent_buffer (1,962 samples, 0.08%)</title><rect x="48.4683%" y="469" width="0.0818%" height="15" fill="rgb(238,65,40)" fg:x="1161900" fg:w="1962"/><text x="48.7183%" y="479.50"></text></g><g><title>memmove (1,478 samples, 0.06%)</title><rect x="48.4885%" y="453" width="0.0617%" height="15" fill="rgb(230,151,21)" fg:x="1162384" fg:w="1478"/><text x="48.7385%" y="463.50"></text></g><g><title>copy_pages (789 samples, 0.03%)</title><rect x="48.5768%" y="453" width="0.0329%" height="15" fill="rgb(218,58,49)" fg:x="1164502" fg:w="789"/><text x="48.8268%" y="463.50"></text></g><g><title>memmove_extent_buffer (7,605 samples, 0.32%)</title><rect x="48.5501%" y="469" width="0.3172%" height="15" fill="rgb(219,179,14)" fg:x="1163862" fg:w="7605"/><text x="48.8001%" y="479.50"></text></g><g><title>memmove (6,176 samples, 0.26%)</title><rect x="48.6098%" y="453" width="0.2576%" height="15" fill="rgb(223,72,1)" fg:x="1165291" fg:w="6176"/><text x="48.8598%" y="463.50"></text></g><g><title>__push_leaf_left (427 samples, 0.02%)</title><rect x="48.8684%" y="453" width="0.0178%" height="15" fill="rgb(238,126,10)" fg:x="1171492" fg:w="427"/><text x="49.1184%" y="463.50"></text></g><g><title>push_leaf_left (655 samples, 0.03%)</title><rect x="48.8674%" y="469" width="0.0273%" height="15" fill="rgb(224,206,38)" fg:x="1171467" fg:w="655"/><text x="49.1174%" y="479.50"></text></g><g><title>__push_leaf_right (424 samples, 0.02%)</title><rect x="48.8952%" y="453" width="0.0177%" height="15" fill="rgb(212,201,54)" fg:x="1172135" fg:w="424"/><text x="49.1452%" y="463.50"></text></g><g><title>push_leaf_right (669 samples, 0.03%)</title><rect x="48.8947%" y="469" width="0.0279%" height="15" fill="rgb(218,154,48)" fg:x="1172122" fg:w="669"/><text x="49.1447%" y="479.50"></text></g><g><title>btrfs_del_items (43,008 samples, 1.79%)</title><rect x="47.1308%" y="485" width="1.7941%" height="15" fill="rgb(232,93,24)" fg:x="1129836" fg:w="43008"/><text x="47.3808%" y="495.50">b..</text></g><g><title>__list_add_valid (576 samples, 0.02%)</title><rect x="49.0054%" y="453" width="0.0240%" height="15" fill="rgb(245,30,21)" fg:x="1174775" fg:w="576"/><text x="49.2554%" y="463.50"></text></g><g><title>_raw_spin_lock (405 samples, 0.02%)</title><rect x="49.0294%" y="453" width="0.0169%" height="15" fill="rgb(242,148,29)" fg:x="1175351" fg:w="405"/><text x="49.2794%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,667 samples, 0.11%)</title><rect x="48.9523%" y="469" width="0.1113%" height="15" fill="rgb(244,153,54)" fg:x="1173503" fg:w="2667"/><text x="49.2023%" y="479.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,569 samples, 0.07%)</title><rect x="49.0638%" y="469" width="0.0655%" height="15" fill="rgb(252,87,22)" fg:x="1176176" fg:w="1569"/><text x="49.3138%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (1,518 samples, 0.06%)</title><rect x="49.0659%" y="453" width="0.0633%" height="15" fill="rgb(210,51,29)" fg:x="1176227" fg:w="1518"/><text x="49.3159%" y="463.50"></text></g><g><title>__schedule (279 samples, 0.01%)</title><rect x="49.1428%" y="437" width="0.0116%" height="15" fill="rgb(242,136,47)" fg:x="1178070" fg:w="279"/><text x="49.3928%" y="447.50"></text></g><g><title>_cond_resched (308 samples, 0.01%)</title><rect x="49.1422%" y="453" width="0.0128%" height="15" fill="rgb(238,68,4)" fg:x="1178054" fg:w="308"/><text x="49.3922%" y="463.50"></text></g><g><title>mutex_lock (618 samples, 0.03%)</title><rect x="49.1293%" y="469" width="0.0258%" height="15" fill="rgb(242,161,30)" fg:x="1177745" fg:w="618"/><text x="49.3793%" y="479.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (5,697 samples, 0.24%)</title><rect x="48.9248%" y="485" width="0.2376%" height="15" fill="rgb(218,58,44)" fg:x="1172844" fg:w="5697"/><text x="49.1748%" y="495.50"></text></g><g><title>btrfs_comp_cpu_keys (895 samples, 0.04%)</title><rect x="49.2021%" y="453" width="0.0373%" height="15" fill="rgb(252,125,32)" fg:x="1179491" fg:w="895"/><text x="49.4521%" y="463.50"></text></g><g><title>__btrfs_add_delayed_item (2,139 samples, 0.09%)</title><rect x="49.1712%" y="469" width="0.0892%" height="15" fill="rgb(219,178,0)" fg:x="1178751" fg:w="2139"/><text x="49.4212%" y="479.50"></text></g><g><title>rb_insert_color (504 samples, 0.02%)</title><rect x="49.2394%" y="453" width="0.0210%" height="15" fill="rgb(213,152,7)" fg:x="1180386" fg:w="504"/><text x="49.4894%" y="463.50"></text></g><g><title>__list_del_entry_valid (362 samples, 0.02%)</title><rect x="49.2775%" y="453" width="0.0151%" height="15" fill="rgb(249,109,34)" fg:x="1181298" fg:w="362"/><text x="49.5275%" y="463.50"></text></g><g><title>_raw_spin_lock (281 samples, 0.01%)</title><rect x="49.2932%" y="453" width="0.0117%" height="15" fill="rgb(232,96,21)" fg:x="1181674" fg:w="281"/><text x="49.5432%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,822 samples, 0.08%)</title><rect x="49.2605%" y="469" width="0.0760%" height="15" fill="rgb(228,27,39)" fg:x="1180890" fg:w="1822"/><text x="49.5105%" y="479.50"></text></g><g><title>mutex_unlock (586 samples, 0.02%)</title><rect x="49.3120%" y="453" width="0.0244%" height="15" fill="rgb(211,182,52)" fg:x="1182126" fg:w="586"/><text x="49.5620%" y="463.50"></text></g><g><title>mutex_spin_on_owner (1,807 samples, 0.08%)</title><rect x="49.3411%" y="453" width="0.0754%" height="15" fill="rgb(234,178,38)" fg:x="1182823" fg:w="1807"/><text x="49.5911%" y="463.50"></text></g><g><title>__mutex_lock.constprop.0 (2,454 samples, 0.10%)</title><rect x="49.3365%" y="469" width="0.1024%" height="15" fill="rgb(221,111,3)" fg:x="1182712" fg:w="2454"/><text x="49.5865%" y="479.50"></text></g><g><title>schedule_preempt_disabled (510 samples, 0.02%)</title><rect x="49.4176%" y="453" width="0.0213%" height="15" fill="rgb(228,175,21)" fg:x="1184656" fg:w="510"/><text x="49.6676%" y="463.50"></text></g><g><title>schedule (509 samples, 0.02%)</title><rect x="49.4176%" y="437" width="0.0212%" height="15" fill="rgb(228,174,43)" fg:x="1184657" fg:w="509"/><text x="49.6676%" y="447.50"></text></g><g><title>__schedule (505 samples, 0.02%)</title><rect x="49.4178%" y="421" width="0.0211%" height="15" fill="rgb(211,191,0)" fg:x="1184661" fg:w="505"/><text x="49.6678%" y="431.50"></text></g><g><title>_raw_spin_lock (1,400 samples, 0.06%)</title><rect x="49.4669%" y="437" width="0.0584%" height="15" fill="rgb(253,117,3)" fg:x="1185838" fg:w="1400"/><text x="49.7169%" y="447.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (2,001 samples, 0.08%)</title><rect x="49.4419%" y="469" width="0.0835%" height="15" fill="rgb(241,127,19)" fg:x="1185239" fg:w="2001"/><text x="49.6919%" y="479.50"></text></g><g><title>btrfs_block_rsv_migrate (1,625 samples, 0.07%)</title><rect x="49.4576%" y="453" width="0.0678%" height="15" fill="rgb(218,103,12)" fg:x="1185615" fg:w="1625"/><text x="49.7076%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (619 samples, 0.03%)</title><rect x="49.5253%" y="469" width="0.0258%" height="15" fill="rgb(236,214,43)" fg:x="1187240" fg:w="619"/><text x="49.7753%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (540 samples, 0.02%)</title><rect x="49.5286%" y="453" width="0.0225%" height="15" fill="rgb(244,144,19)" fg:x="1187319" fg:w="540"/><text x="49.7786%" y="463.50"></text></g><g><title>kmem_cache_alloc_trace (1,095 samples, 0.05%)</title><rect x="49.5512%" y="469" width="0.0457%" height="15" fill="rgb(246,188,10)" fg:x="1187859" fg:w="1095"/><text x="49.8012%" y="479.50"></text></g><g><title>mutex_lock (461 samples, 0.02%)</title><rect x="49.5968%" y="469" width="0.0192%" height="15" fill="rgb(212,193,33)" fg:x="1188954" fg:w="461"/><text x="49.8468%" y="479.50"></text></g><g><title>btrfs_delete_delayed_dir_index (11,169 samples, 0.47%)</title><rect x="49.1625%" y="485" width="0.4659%" height="15" fill="rgb(241,51,29)" fg:x="1178541" fg:w="11169"/><text x="49.4125%" y="495.50"></text></g><g><title>mutex_unlock (295 samples, 0.01%)</title><rect x="49.6161%" y="469" width="0.0123%" height="15" fill="rgb(211,58,19)" fg:x="1189415" fg:w="295"/><text x="49.8661%" y="479.50"></text></g><g><title>btrfs_get_16 (343 samples, 0.01%)</title><rect x="49.6468%" y="469" width="0.0143%" height="15" fill="rgb(229,111,26)" fg:x="1190151" fg:w="343"/><text x="49.8968%" y="479.50"></text></g><g><title>btrfs_delete_one_dir_name (936 samples, 0.04%)</title><rect x="49.6284%" y="485" width="0.0390%" height="15" fill="rgb(213,115,40)" fg:x="1189710" fg:w="936"/><text x="49.8784%" y="495.50"></text></g><g><title>btrfs_get_16 (839 samples, 0.03%)</title><rect x="49.7257%" y="453" width="0.0350%" height="15" fill="rgb(209,56,44)" fg:x="1192044" fg:w="839"/><text x="49.9757%" y="463.50"></text></g><g><title>btrfs_get_32 (533 samples, 0.02%)</title><rect x="49.7607%" y="453" width="0.0222%" height="15" fill="rgb(230,108,32)" fg:x="1192883" fg:w="533"/><text x="50.0107%" y="463.50"></text></g><g><title>btrfs_match_dir_item_name (3,240 samples, 0.14%)</title><rect x="49.7008%" y="469" width="0.1352%" height="15" fill="rgb(216,165,31)" fg:x="1191447" fg:w="3240"/><text x="49.9508%" y="479.50"></text></g><g><title>memcmp_extent_buffer (1,271 samples, 0.05%)</title><rect x="49.7830%" y="453" width="0.0530%" height="15" fill="rgb(218,122,21)" fg:x="1193416" fg:w="1271"/><text x="50.0330%" y="463.50"></text></g><g><title>memcmp (746 samples, 0.03%)</title><rect x="49.8049%" y="437" width="0.0311%" height="15" fill="rgb(223,224,47)" fg:x="1193941" fg:w="746"/><text x="50.0549%" y="447.50"></text></g><g><title>_raw_read_lock (673 samples, 0.03%)</title><rect x="49.9885%" y="421" width="0.0281%" height="15" fill="rgb(238,102,44)" fg:x="1198342" fg:w="673"/><text x="50.2385%" y="431.50"></text></g><g><title>finish_wait (3,662 samples, 0.15%)</title><rect x="50.0189%" y="421" width="0.1528%" height="15" fill="rgb(236,46,40)" fg:x="1199072" fg:w="3662"/><text x="50.2689%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (3,457 samples, 0.14%)</title><rect x="50.0275%" y="405" width="0.1442%" height="15" fill="rgb(247,202,50)" fg:x="1199277" fg:w="3457"/><text x="50.2775%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,309 samples, 0.14%)</title><rect x="50.0336%" y="389" width="0.1380%" height="15" fill="rgb(209,99,20)" fg:x="1199425" fg:w="3309"/><text x="50.2836%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (9,462 samples, 0.39%)</title><rect x="50.2093%" y="405" width="0.3947%" height="15" fill="rgb(252,27,34)" fg:x="1203635" fg:w="9462"/><text x="50.4593%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (9,028 samples, 0.38%)</title><rect x="50.2274%" y="389" width="0.3766%" height="15" fill="rgb(215,206,23)" fg:x="1204069" fg:w="9028"/><text x="50.4774%" y="399.50"></text></g><g><title>prepare_to_wait_event (10,528 samples, 0.44%)</title><rect x="50.1721%" y="421" width="0.4392%" height="15" fill="rgb(212,135,36)" fg:x="1202745" fg:w="10528"/><text x="50.4221%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (10,500 samples, 0.44%)</title><rect x="50.6113%" y="421" width="0.4380%" height="15" fill="rgb(240,189,1)" fg:x="1213273" fg:w="10500"/><text x="50.8613%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (7,560 samples, 0.32%)</title><rect x="50.7339%" y="405" width="0.3154%" height="15" fill="rgb(242,56,20)" fg:x="1216213" fg:w="7560"/><text x="50.9839%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (326 samples, 0.01%)</title><rect x="51.0716%" y="389" width="0.0136%" height="15" fill="rgb(247,132,33)" fg:x="1224307" fg:w="326"/><text x="51.3216%" y="399.50"></text></g><g><title>update_curr (583 samples, 0.02%)</title><rect x="51.1205%" y="357" width="0.0243%" height="15" fill="rgb(208,149,11)" fg:x="1225479" fg:w="583"/><text x="51.3705%" y="367.50"></text></g><g><title>dequeue_entity (1,671 samples, 0.07%)</title><rect x="51.0979%" y="373" width="0.0697%" height="15" fill="rgb(211,33,11)" fg:x="1224937" fg:w="1671"/><text x="51.3479%" y="383.50"></text></g><g><title>update_load_avg (546 samples, 0.02%)</title><rect x="51.1448%" y="357" width="0.0228%" height="15" fill="rgb(221,29,38)" fg:x="1226062" fg:w="546"/><text x="51.3948%" y="367.50"></text></g><g><title>dequeue_task_fair (2,009 samples, 0.08%)</title><rect x="51.0895%" y="389" width="0.0838%" height="15" fill="rgb(206,182,49)" fg:x="1224736" fg:w="2009"/><text x="51.3395%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (2,827 samples, 0.12%)</title><rect x="51.1868%" y="373" width="0.1179%" height="15" fill="rgb(216,140,1)" fg:x="1227068" fg:w="2827"/><text x="51.4368%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,733 samples, 0.11%)</title><rect x="51.1907%" y="357" width="0.1140%" height="15" fill="rgb(232,57,40)" fg:x="1227162" fg:w="2733"/><text x="51.4407%" y="367.50"></text></g><g><title>native_write_msr (2,697 samples, 0.11%)</title><rect x="51.1922%" y="341" width="0.1125%" height="15" fill="rgb(224,186,18)" fg:x="1227198" fg:w="2697"/><text x="51.4422%" y="351.50"></text></g><g><title>finish_task_switch (3,271 samples, 0.14%)</title><rect x="51.1733%" y="389" width="0.1364%" height="15" fill="rgb(215,121,11)" fg:x="1226745" fg:w="3271"/><text x="51.4233%" y="399.50"></text></g><g><title>pick_next_task_fair (373 samples, 0.02%)</title><rect x="51.3099%" y="389" width="0.0156%" height="15" fill="rgb(245,147,10)" fg:x="1230020" fg:w="373"/><text x="51.5599%" y="399.50"></text></g><g><title>pick_next_task_idle (325 samples, 0.01%)</title><rect x="51.3255%" y="389" width="0.0136%" height="15" fill="rgb(238,153,13)" fg:x="1230393" fg:w="325"/><text x="51.5755%" y="399.50"></text></g><g><title>__update_idle_core (278 samples, 0.01%)</title><rect x="51.3274%" y="373" width="0.0116%" height="15" fill="rgb(233,108,0)" fg:x="1230440" fg:w="278"/><text x="51.5774%" y="383.50"></text></g><g><title>psi_task_change (1,485 samples, 0.06%)</title><rect x="51.3390%" y="389" width="0.0619%" height="15" fill="rgb(212,157,17)" fg:x="1230718" fg:w="1485"/><text x="51.5890%" y="399.50"></text></g><g><title>psi_group_change (1,227 samples, 0.05%)</title><rect x="51.3498%" y="373" width="0.0512%" height="15" fill="rgb(225,213,38)" fg:x="1230976" fg:w="1227"/><text x="51.5998%" y="383.50"></text></g><g><title>record_times (250 samples, 0.01%)</title><rect x="51.3905%" y="357" width="0.0104%" height="15" fill="rgb(248,16,11)" fg:x="1231953" fg:w="250"/><text x="51.6405%" y="367.50"></text></g><g><title>__schedule (8,805 samples, 0.37%)</title><rect x="51.0529%" y="405" width="0.3673%" height="15" fill="rgb(241,33,4)" fg:x="1223858" fg:w="8805"/><text x="51.3029%" y="415.50"></text></g><g><title>__btrfs_tree_read_lock (35,097 samples, 1.46%)</title><rect x="49.9561%" y="437" width="1.4641%" height="15" fill="rgb(222,26,43)" fg:x="1197567" fg:w="35097"/><text x="50.2061%" y="447.50"></text></g><g><title>schedule (8,891 samples, 0.37%)</title><rect x="51.0493%" y="421" width="0.3709%" height="15" fill="rgb(243,29,36)" fg:x="1223773" fg:w="8891"/><text x="51.2993%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (36,655 samples, 1.53%)</title><rect x="49.9468%" y="453" width="1.5291%" height="15" fill="rgb(241,9,27)" fg:x="1197342" fg:w="36655"/><text x="50.1968%" y="463.50"></text></g><g><title>btrfs_root_node (1,333 samples, 0.06%)</title><rect x="51.4202%" y="437" width="0.0556%" height="15" fill="rgb(205,117,26)" fg:x="1232664" fg:w="1333"/><text x="51.6702%" y="447.50"></text></g><g><title>dequeue_entity (529 samples, 0.02%)</title><rect x="51.5082%" y="389" width="0.0221%" height="15" fill="rgb(209,80,39)" fg:x="1234774" fg:w="529"/><text x="51.7582%" y="399.50"></text></g><g><title>dequeue_task_fair (652 samples, 0.03%)</title><rect x="51.5051%" y="405" width="0.0272%" height="15" fill="rgb(239,155,6)" fg:x="1234700" fg:w="652"/><text x="51.7551%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (1,195 samples, 0.05%)</title><rect x="51.5367%" y="389" width="0.0498%" height="15" fill="rgb(212,104,12)" fg:x="1235457" fg:w="1195"/><text x="51.7867%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,170 samples, 0.05%)</title><rect x="51.5377%" y="373" width="0.0488%" height="15" fill="rgb(234,204,3)" fg:x="1235482" fg:w="1170"/><text x="51.7877%" y="383.50"></text></g><g><title>native_write_msr (1,163 samples, 0.05%)</title><rect x="51.5380%" y="357" width="0.0485%" height="15" fill="rgb(251,218,7)" fg:x="1235489" fg:w="1163"/><text x="51.7880%" y="367.50"></text></g><g><title>finish_task_switch (1,346 samples, 0.06%)</title><rect x="51.5323%" y="405" width="0.0561%" height="15" fill="rgb(221,81,32)" fg:x="1235352" fg:w="1346"/><text x="51.7823%" y="415.50"></text></g><g><title>psi_task_change (484 samples, 0.02%)</title><rect x="51.5980%" y="405" width="0.0202%" height="15" fill="rgb(214,152,26)" fg:x="1236927" fg:w="484"/><text x="51.8480%" y="415.50"></text></g><g><title>psi_group_change (397 samples, 0.02%)</title><rect x="51.6017%" y="389" width="0.0166%" height="15" fill="rgb(223,22,3)" fg:x="1237014" fg:w="397"/><text x="51.8517%" y="399.50"></text></g><g><title>__btrfs_tree_lock (3,595 samples, 0.15%)</title><rect x="51.4758%" y="453" width="0.1500%" height="15" fill="rgb(207,174,7)" fg:x="1233997" fg:w="3595"/><text x="51.7258%" y="463.50"></text></g><g><title>schedule (3,198 samples, 0.13%)</title><rect x="51.4924%" y="437" width="0.1334%" height="15" fill="rgb(224,19,52)" fg:x="1234394" fg:w="3198"/><text x="51.7424%" y="447.50"></text></g><g><title>__schedule (3,169 samples, 0.13%)</title><rect x="51.4936%" y="421" width="0.1322%" height="15" fill="rgb(228,24,14)" fg:x="1234423" fg:w="3169"/><text x="51.7436%" y="431.50"></text></g><g><title>alloc_tree_block_no_bg_flush (287 samples, 0.01%)</title><rect x="51.6445%" y="421" width="0.0120%" height="15" fill="rgb(230,153,43)" fg:x="1238040" fg:w="287"/><text x="51.8945%" y="431.50"></text></g><g><title>btrfs_alloc_tree_block (285 samples, 0.01%)</title><rect x="51.6445%" y="405" width="0.0119%" height="15" fill="rgb(231,106,12)" fg:x="1238042" fg:w="285"/><text x="51.8945%" y="415.50"></text></g><g><title>__btrfs_cow_block (593 samples, 0.02%)</title><rect x="51.6442%" y="437" width="0.0247%" height="15" fill="rgb(215,92,2)" fg:x="1238033" fg:w="593"/><text x="51.8942%" y="447.50"></text></g><g><title>btrfs_cow_block (600 samples, 0.03%)</title><rect x="51.6440%" y="453" width="0.0250%" height="15" fill="rgb(249,143,25)" fg:x="1238030" fg:w="600"/><text x="51.8940%" y="463.50"></text></g><g><title>_cond_resched (263 samples, 0.01%)</title><rect x="51.7192%" y="421" width="0.0110%" height="15" fill="rgb(252,7,35)" fg:x="1239832" fg:w="263"/><text x="51.9692%" y="431.50"></text></g><g><title>_raw_write_lock (657 samples, 0.03%)</title><rect x="51.7327%" y="421" width="0.0274%" height="15" fill="rgb(216,69,40)" fg:x="1240155" fg:w="657"/><text x="51.9827%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (4,115 samples, 0.17%)</title><rect x="51.7714%" y="405" width="0.1717%" height="15" fill="rgb(240,36,33)" fg:x="1241083" fg:w="4115"/><text x="52.0214%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,842 samples, 0.16%)</title><rect x="51.7828%" y="389" width="0.1603%" height="15" fill="rgb(231,128,14)" fg:x="1241356" fg:w="3842"/><text x="52.0328%" y="399.50"></text></g><g><title>finish_wait (4,381 samples, 0.18%)</title><rect x="51.7604%" y="421" width="0.1828%" height="15" fill="rgb(245,143,14)" fg:x="1240819" fg:w="4381"/><text x="52.0104%" y="431.50"></text></g><g><title>__list_add_valid (308 samples, 0.01%)</title><rect x="51.9868%" y="405" width="0.0128%" height="15" fill="rgb(222,130,28)" fg:x="1246246" fg:w="308"/><text x="52.2368%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (11,238 samples, 0.47%)</title><rect x="51.9996%" y="405" width="0.4688%" height="15" fill="rgb(212,10,48)" fg:x="1246554" fg:w="11238"/><text x="52.2496%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (10,384 samples, 0.43%)</title><rect x="52.0352%" y="389" width="0.4332%" height="15" fill="rgb(254,118,45)" fg:x="1247408" fg:w="10384"/><text x="52.2852%" y="399.50"></text></g><g><title>_raw_spin_unlock_irqrestore (296 samples, 0.01%)</title><rect x="52.4684%" y="405" width="0.0123%" height="15" fill="rgb(228,6,45)" fg:x="1257792" fg:w="296"/><text x="52.7184%" y="415.50"></text></g><g><title>prepare_to_wait_event (12,841 samples, 0.54%)</title><rect x="51.9451%" y="421" width="0.5357%" height="15" fill="rgb(241,18,35)" fg:x="1245248" fg:w="12841"/><text x="52.1951%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (19,279 samples, 0.80%)</title><rect x="52.4808%" y="421" width="0.8042%" height="15" fill="rgb(227,214,53)" fg:x="1258089" fg:w="19279"/><text x="52.7308%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,725 samples, 0.36%)</title><rect x="52.9211%" y="405" width="0.3640%" height="15" fill="rgb(224,107,51)" fg:x="1268643" fg:w="8725"/><text x="53.1711%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (492 samples, 0.02%)</title><rect x="53.3259%" y="389" width="0.0205%" height="15" fill="rgb(248,60,28)" fg:x="1278349" fg:w="492"/><text x="53.5759%" y="399.50"></text></g><g><title>update_cfs_group (311 samples, 0.01%)</title><rect x="53.3921%" y="357" width="0.0130%" height="15" fill="rgb(249,101,23)" fg:x="1279935" fg:w="311"/><text x="53.6421%" y="367.50"></text></g><g><title>update_curr (971 samples, 0.04%)</title><rect x="53.4051%" y="357" width="0.0405%" height="15" fill="rgb(228,51,19)" fg:x="1280246" fg:w="971"/><text x="53.6551%" y="367.50"></text></g><g><title>__update_load_avg_se (279 samples, 0.01%)</title><rect x="53.4694%" y="341" width="0.0116%" height="15" fill="rgb(213,20,6)" fg:x="1281788" fg:w="279"/><text x="53.7194%" y="351.50"></text></g><g><title>dequeue_entity (2,763 samples, 0.12%)</title><rect x="53.3666%" y="373" width="0.1153%" height="15" fill="rgb(212,124,10)" fg:x="1279324" fg:w="2763"/><text x="53.6166%" y="383.50"></text></g><g><title>update_load_avg (870 samples, 0.04%)</title><rect x="53.4456%" y="357" width="0.0363%" height="15" fill="rgb(248,3,40)" fg:x="1281217" fg:w="870"/><text x="53.6956%" y="367.50"></text></g><g><title>dequeue_task_fair (3,295 samples, 0.14%)</title><rect x="53.3540%" y="389" width="0.1374%" height="15" fill="rgb(223,178,23)" fg:x="1279023" fg:w="3295"/><text x="53.6040%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (4,787 samples, 0.20%)</title><rect x="53.5157%" y="373" width="0.1997%" height="15" fill="rgb(240,132,45)" fg:x="1282897" fg:w="4787"/><text x="53.7657%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,620 samples, 0.19%)</title><rect x="53.5226%" y="357" width="0.1927%" height="15" fill="rgb(245,164,36)" fg:x="1283064" fg:w="4620"/><text x="53.7726%" y="367.50"></text></g><g><title>native_write_msr (4,557 samples, 0.19%)</title><rect x="53.5252%" y="341" width="0.1901%" height="15" fill="rgb(231,188,53)" fg:x="1283127" fg:w="4557"/><text x="53.7752%" y="351.50"></text></g><g><title>finish_task_switch (5,633 samples, 0.23%)</title><rect x="53.4915%" y="389" width="0.2350%" height="15" fill="rgb(237,198,39)" fg:x="1282318" fg:w="5633"/><text x="53.7415%" y="399.50"></text></g><g><title>newidle_balance (313 samples, 0.01%)</title><rect x="53.7336%" y="373" width="0.0131%" height="15" fill="rgb(223,120,35)" fg:x="1288121" fg:w="313"/><text x="53.9836%" y="383.50"></text></g><g><title>pick_next_task_fair (601 samples, 0.03%)</title><rect x="53.7269%" y="389" width="0.0251%" height="15" fill="rgb(253,107,49)" fg:x="1287960" fg:w="601"/><text x="53.9769%" y="399.50"></text></g><g><title>pick_next_task_idle (602 samples, 0.03%)</title><rect x="53.7519%" y="389" width="0.0251%" height="15" fill="rgb(216,44,31)" fg:x="1288561" fg:w="602"/><text x="54.0019%" y="399.50"></text></g><g><title>__update_idle_core (524 samples, 0.02%)</title><rect x="53.7552%" y="373" width="0.0219%" height="15" fill="rgb(253,87,21)" fg:x="1288639" fg:w="524"/><text x="54.0052%" y="383.50"></text></g><g><title>psi_task_change (2,572 samples, 0.11%)</title><rect x="53.7770%" y="389" width="0.1073%" height="15" fill="rgb(226,18,2)" fg:x="1289163" fg:w="2572"/><text x="54.0270%" y="399.50"></text></g><g><title>psi_group_change (2,183 samples, 0.09%)</title><rect x="53.7933%" y="373" width="0.0911%" height="15" fill="rgb(216,8,46)" fg:x="1289552" fg:w="2183"/><text x="54.0433%" y="383.50"></text></g><g><title>record_times (549 samples, 0.02%)</title><rect x="53.8614%" y="357" width="0.0229%" height="15" fill="rgb(226,140,39)" fg:x="1291186" fg:w="549"/><text x="54.1114%" y="367.50"></text></g><g><title>sched_clock_cpu (369 samples, 0.02%)</title><rect x="53.8689%" y="341" width="0.0154%" height="15" fill="rgb(221,194,54)" fg:x="1291366" fg:w="369"/><text x="54.1189%" y="351.50"></text></g><g><title>sched_clock (314 samples, 0.01%)</title><rect x="53.8712%" y="325" width="0.0131%" height="15" fill="rgb(213,92,11)" fg:x="1291421" fg:w="314"/><text x="54.1212%" y="335.50"></text></g><g><title>native_sched_clock (294 samples, 0.01%)</title><rect x="53.8721%" y="309" width="0.0123%" height="15" fill="rgb(229,162,46)" fg:x="1291441" fg:w="294"/><text x="54.1221%" y="319.50"></text></g><g><title>psi_task_switch (268 samples, 0.01%)</title><rect x="53.8843%" y="389" width="0.0112%" height="15" fill="rgb(214,111,36)" fg:x="1291735" fg:w="268"/><text x="54.1343%" y="399.50"></text></g><g><title>__schedule (14,914 samples, 0.62%)</title><rect x="53.2935%" y="405" width="0.6221%" height="15" fill="rgb(207,6,21)" fg:x="1277571" fg:w="14914"/><text x="53.5435%" y="415.50"></text></g><g><title>update_rq_clock (271 samples, 0.01%)</title><rect x="53.9043%" y="389" width="0.0113%" height="15" fill="rgb(213,127,38)" fg:x="1292214" fg:w="271"/><text x="54.1543%" y="399.50"></text></g><g><title>__btrfs_tree_lock (53,787 samples, 2.24%)</title><rect x="51.6720%" y="437" width="2.2437%" height="15" fill="rgb(238,118,32)" fg:x="1238700" fg:w="53787"/><text x="51.9220%" y="447.50">_..</text></g><g><title>schedule (15,119 samples, 0.63%)</title><rect x="53.2850%" y="421" width="0.6307%" height="15" fill="rgb(240,139,39)" fg:x="1277368" fg:w="15119"/><text x="53.5350%" y="431.50"></text></g><g><title>btrfs_lock_root_node (54,395 samples, 2.27%)</title><rect x="51.6691%" y="453" width="2.2691%" height="15" fill="rgb(235,10,37)" fg:x="1238630" fg:w="54395"/><text x="51.9191%" y="463.50">b..</text></g><g><title>btrfs_root_node (538 samples, 0.02%)</title><rect x="53.9157%" y="437" width="0.0224%" height="15" fill="rgb(249,171,38)" fg:x="1292487" fg:w="538"/><text x="54.1657%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (561 samples, 0.02%)</title><rect x="53.9381%" y="453" width="0.0234%" height="15" fill="rgb(242,144,32)" fg:x="1293025" fg:w="561"/><text x="54.1881%" y="463.50"></text></g><g><title>btrfs_set_lock_blocking_write (305 samples, 0.01%)</title><rect x="53.9488%" y="437" width="0.0127%" height="15" fill="rgb(217,117,21)" fg:x="1293281" fg:w="305"/><text x="54.1988%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (505 samples, 0.02%)</title><rect x="53.9617%" y="453" width="0.0211%" height="15" fill="rgb(249,87,1)" fg:x="1293589" fg:w="505"/><text x="54.2117%" y="463.50"></text></g><g><title>_raw_write_lock (388 samples, 0.02%)</title><rect x="53.9881%" y="437" width="0.0162%" height="15" fill="rgb(248,196,48)" fg:x="1294223" fg:w="388"/><text x="54.2381%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (3,142 samples, 0.13%)</title><rect x="53.9827%" y="453" width="0.1311%" height="15" fill="rgb(251,206,33)" fg:x="1294094" fg:w="3142"/><text x="54.2327%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (2,624 samples, 0.11%)</title><rect x="54.0043%" y="437" width="0.1095%" height="15" fill="rgb(232,141,28)" fg:x="1294612" fg:w="2624"/><text x="54.2543%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (638 samples, 0.03%)</title><rect x="54.1148%" y="453" width="0.0266%" height="15" fill="rgb(209,167,14)" fg:x="1297261" fg:w="638"/><text x="54.3648%" y="463.50"></text></g><g><title>generic_bin_search.constprop.0 (6,270 samples, 0.26%)</title><rect x="54.1415%" y="453" width="0.2616%" height="15" fill="rgb(225,11,50)" fg:x="1297899" fg:w="6270"/><text x="54.3915%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (769 samples, 0.03%)</title><rect x="54.4343%" y="437" width="0.0321%" height="15" fill="rgb(209,50,20)" fg:x="1304918" fg:w="769"/><text x="54.6843%" y="447.50"></text></g><g><title>verify_parent_transid (603 samples, 0.03%)</title><rect x="54.4412%" y="421" width="0.0252%" height="15" fill="rgb(212,17,46)" fg:x="1305084" fg:w="603"/><text x="54.6912%" y="431.50"></text></g><g><title>btrfs_get_64 (883 samples, 0.04%)</title><rect x="54.4663%" y="437" width="0.0368%" height="15" fill="rgb(216,101,39)" fg:x="1305687" fg:w="883"/><text x="54.7163%" y="447.50"></text></g><g><title>__radix_tree_lookup (3,183 samples, 0.13%)</title><rect x="54.5843%" y="421" width="0.1328%" height="15" fill="rgb(212,228,48)" fg:x="1308516" fg:w="3183"/><text x="54.8343%" y="431.50"></text></g><g><title>mark_page_accessed (1,155 samples, 0.05%)</title><rect x="54.7300%" y="405" width="0.0482%" height="15" fill="rgb(250,6,50)" fg:x="1312007" fg:w="1155"/><text x="54.9800%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,456 samples, 0.06%)</title><rect x="54.7175%" y="421" width="0.0607%" height="15" fill="rgb(250,160,48)" fg:x="1311708" fg:w="1456"/><text x="54.9675%" y="431.50"></text></g><g><title>find_extent_buffer (6,277 samples, 0.26%)</title><rect x="54.5184%" y="437" width="0.2618%" height="15" fill="rgb(244,216,33)" fg:x="1306935" fg:w="6277"/><text x="54.7684%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (9,838 samples, 0.41%)</title><rect x="54.4030%" y="453" width="0.4104%" height="15" fill="rgb(207,157,5)" fg:x="1304169" fg:w="9838"/><text x="54.6530%" y="463.50"></text></g><g><title>read_extent_buffer (795 samples, 0.03%)</title><rect x="54.7802%" y="437" width="0.0332%" height="15" fill="rgb(228,199,8)" fg:x="1313212" fg:w="795"/><text x="55.0302%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (312 samples, 0.01%)</title><rect x="54.8229%" y="437" width="0.0130%" height="15" fill="rgb(227,80,20)" fg:x="1314235" fg:w="312"/><text x="55.0729%" y="447.50"></text></g><g><title>verify_parent_transid (277 samples, 0.01%)</title><rect x="54.8244%" y="421" width="0.0116%" height="15" fill="rgb(222,9,33)" fg:x="1314270" fg:w="277"/><text x="55.0744%" y="431.50"></text></g><g><title>btrfs_get_64 (432 samples, 0.02%)</title><rect x="54.8359%" y="437" width="0.0180%" height="15" fill="rgb(239,44,28)" fg:x="1314547" fg:w="432"/><text x="55.0859%" y="447.50"></text></g><g><title>__radix_tree_lookup (1,405 samples, 0.06%)</title><rect x="54.8939%" y="421" width="0.0586%" height="15" fill="rgb(249,187,43)" fg:x="1315936" fg:w="1405"/><text x="55.1439%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (603 samples, 0.03%)</title><rect x="54.9528%" y="421" width="0.0252%" height="15" fill="rgb(216,141,28)" fg:x="1317348" fg:w="603"/><text x="55.2028%" y="431.50"></text></g><g><title>mark_page_accessed (471 samples, 0.02%)</title><rect x="54.9583%" y="405" width="0.0196%" height="15" fill="rgb(230,154,53)" fg:x="1317480" fg:w="471"/><text x="55.2083%" y="415.50"></text></g><g><title>find_extent_buffer (2,988 samples, 0.12%)</title><rect x="54.8539%" y="437" width="0.1246%" height="15" fill="rgb(227,82,4)" fg:x="1314979" fg:w="2988"/><text x="55.1039%" y="447.50"></text></g><g><title>reada_for_balance (4,172 samples, 0.17%)</title><rect x="54.8134%" y="453" width="0.1740%" height="15" fill="rgb(220,107,16)" fg:x="1314007" fg:w="4172"/><text x="55.0634%" y="463.50"></text></g><g><title>__list_del_entry_valid (529 samples, 0.02%)</title><rect x="55.0616%" y="389" width="0.0221%" height="15" fill="rgb(207,187,2)" fg:x="1319956" fg:w="529"/><text x="55.3116%" y="399.50"></text></g><g><title>_raw_spin_lock (669 samples, 0.03%)</title><rect x="55.3846%" y="373" width="0.0279%" height="15" fill="rgb(210,162,52)" fg:x="1327699" fg:w="669"/><text x="55.6346%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (346 samples, 0.01%)</title><rect x="55.3980%" y="357" width="0.0144%" height="15" fill="rgb(217,216,49)" fg:x="1328022" fg:w="346"/><text x="55.6480%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (837 samples, 0.03%)</title><rect x="55.4125%" y="373" width="0.0349%" height="15" fill="rgb(218,146,49)" fg:x="1328368" fg:w="837"/><text x="55.6625%" y="383.50"></text></g><g><title>available_idle_cpu (697 samples, 0.03%)</title><rect x="55.5169%" y="357" width="0.0291%" height="15" fill="rgb(216,55,40)" fg:x="1330871" fg:w="697"/><text x="55.7669%" y="367.50"></text></g><g><title>select_task_rq_fair (3,435 samples, 0.14%)</title><rect x="55.4522%" y="373" width="0.1433%" height="15" fill="rgb(208,196,21)" fg:x="1329320" fg:w="3435"/><text x="55.7022%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (810 samples, 0.03%)</title><rect x="55.5617%" y="357" width="0.0338%" height="15" fill="rgb(242,117,42)" fg:x="1331945" fg:w="810"/><text x="55.8117%" y="367.50"></text></g><g><title>set_task_cpu (260 samples, 0.01%)</title><rect x="55.5955%" y="373" width="0.0108%" height="15" fill="rgb(210,11,23)" fg:x="1332755" fg:w="260"/><text x="55.8455%" y="383.50"></text></g><g><title>update_cfs_group (284 samples, 0.01%)</title><rect x="55.7068%" y="325" width="0.0118%" height="15" fill="rgb(217,110,2)" fg:x="1335423" fg:w="284"/><text x="55.9568%" y="335.50"></text></g><g><title>update_curr (421 samples, 0.02%)</title><rect x="55.7186%" y="325" width="0.0176%" height="15" fill="rgb(229,77,54)" fg:x="1335707" fg:w="421"/><text x="55.9686%" y="335.50"></text></g><g><title>__update_load_avg_cfs_rq (271 samples, 0.01%)</title><rect x="55.7612%" y="309" width="0.0113%" height="15" fill="rgb(218,53,16)" fg:x="1336729" fg:w="271"/><text x="56.0112%" y="319.50"></text></g><g><title>enqueue_entity (3,302 samples, 0.14%)</title><rect x="55.6470%" y="341" width="0.1377%" height="15" fill="rgb(215,38,13)" fg:x="1333991" fg:w="3302"/><text x="55.8970%" y="351.50"></text></g><g><title>update_load_avg (1,165 samples, 0.05%)</title><rect x="55.7362%" y="325" width="0.0486%" height="15" fill="rgb(235,42,18)" fg:x="1336128" fg:w="1165"/><text x="55.9862%" y="335.50"></text></g><g><title>enqueue_task_fair (4,239 samples, 0.18%)</title><rect x="55.6194%" y="357" width="0.1768%" height="15" fill="rgb(219,66,54)" fg:x="1333328" fg:w="4239"/><text x="55.8694%" y="367.50"></text></g><g><title>ttwu_do_activate (8,748 samples, 0.36%)</title><rect x="55.6063%" y="373" width="0.3649%" height="15" fill="rgb(222,205,4)" fg:x="1333015" fg:w="8748"/><text x="55.8563%" y="383.50"></text></g><g><title>psi_task_change (4,191 samples, 0.17%)</title><rect x="55.7964%" y="357" width="0.1748%" height="15" fill="rgb(227,213,46)" fg:x="1337572" fg:w="4191"/><text x="56.0464%" y="367.50"></text></g><g><title>psi_group_change (3,766 samples, 0.16%)</title><rect x="55.8141%" y="341" width="0.1571%" height="15" fill="rgb(250,145,42)" fg:x="1337997" fg:w="3766"/><text x="56.0641%" y="351.50"></text></g><g><title>record_times (612 samples, 0.03%)</title><rect x="55.9457%" y="325" width="0.0255%" height="15" fill="rgb(219,15,2)" fg:x="1341151" fg:w="612"/><text x="56.1957%" y="335.50"></text></g><g><title>sched_clock_cpu (400 samples, 0.02%)</title><rect x="55.9545%" y="309" width="0.0167%" height="15" fill="rgb(231,181,52)" fg:x="1341363" fg:w="400"/><text x="56.2045%" y="319.50"></text></g><g><title>sched_clock (348 samples, 0.01%)</title><rect x="55.9567%" y="293" width="0.0145%" height="15" fill="rgb(235,1,42)" fg:x="1341415" fg:w="348"/><text x="56.2067%" y="303.50"></text></g><g><title>native_sched_clock (306 samples, 0.01%)</title><rect x="55.9585%" y="277" width="0.0128%" height="15" fill="rgb(249,88,27)" fg:x="1341457" fg:w="306"/><text x="56.2085%" y="287.50"></text></g><g><title>resched_curr (329 samples, 0.01%)</title><rect x="55.9919%" y="341" width="0.0137%" height="15" fill="rgb(235,145,16)" fg:x="1342258" fg:w="329"/><text x="56.2419%" y="351.50"></text></g><g><title>ttwu_do_wakeup (828 samples, 0.03%)</title><rect x="55.9712%" y="373" width="0.0345%" height="15" fill="rgb(237,114,19)" fg:x="1341763" fg:w="828"/><text x="56.2212%" y="383.50"></text></g><g><title>check_preempt_curr (749 samples, 0.03%)</title><rect x="55.9745%" y="357" width="0.0312%" height="15" fill="rgb(238,51,50)" fg:x="1341842" fg:w="749"/><text x="56.2245%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (727 samples, 0.03%)</title><rect x="56.0058%" y="373" width="0.0303%" height="15" fill="rgb(205,194,25)" fg:x="1342591" fg:w="727"/><text x="56.2558%" y="383.50"></text></g><g><title>__wake_up_common (24,719 samples, 1.03%)</title><rect x="55.0370%" y="421" width="1.0311%" height="15" fill="rgb(215,203,17)" fg:x="1319367" fg:w="24719"/><text x="55.2870%" y="431.50"></text></g><g><title>autoremove_wake_function (24,192 samples, 1.01%)</title><rect x="55.0590%" y="405" width="1.0092%" height="15" fill="rgb(233,112,49)" fg:x="1319894" fg:w="24192"/><text x="55.3090%" y="415.50"></text></g><g><title>try_to_wake_up (23,573 samples, 0.98%)</title><rect x="55.0848%" y="389" width="0.9833%" height="15" fill="rgb(241,130,26)" fg:x="1320513" fg:w="23573"/><text x="55.3348%" y="399.50"></text></g><g><title>update_rq_clock (768 samples, 0.03%)</title><rect x="56.0361%" y="373" width="0.0320%" height="15" fill="rgb(252,223,19)" fg:x="1343318" fg:w="768"/><text x="56.2861%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (4,485 samples, 0.19%)</title><rect x="56.0681%" y="421" width="0.1871%" height="15" fill="rgb(211,95,25)" fg:x="1344086" fg:w="4485"/><text x="56.3181%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,232 samples, 0.18%)</title><rect x="56.0787%" y="405" width="0.1765%" height="15" fill="rgb(251,182,27)" fg:x="1344339" fg:w="4232"/><text x="56.3287%" y="415.50"></text></g><g><title>__wake_up_common_lock (29,494 samples, 1.23%)</title><rect x="55.0339%" y="437" width="1.2303%" height="15" fill="rgb(238,24,4)" fg:x="1319294" fg:w="29494"/><text x="55.2839%" y="447.50"></text></g><g><title>btrfs_search_slot (154,786 samples, 6.46%)</title><rect x="49.8360%" y="469" width="6.4569%" height="15" fill="rgb(224,220,25)" fg:x="1194687" fg:w="154786"/><text x="50.0860%" y="479.50">btrfs_se..</text></g><g><title>unlock_up (31,199 samples, 1.30%)</title><rect x="54.9914%" y="453" width="1.3015%" height="15" fill="rgb(239,133,26)" fg:x="1318274" fg:w="31199"/><text x="55.2414%" y="463.50"></text></g><g><title>btrfs_tree_unlock (680 samples, 0.03%)</title><rect x="56.2645%" y="437" width="0.0284%" height="15" fill="rgb(211,94,48)" fg:x="1348793" fg:w="680"/><text x="56.5145%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (159,885 samples, 6.67%)</title><rect x="49.6764%" y="485" width="6.6696%" height="15" fill="rgb(239,87,6)" fg:x="1190861" fg:w="159885"/><text x="49.9264%" y="495.50">btrfs_loo..</text></g><g><title>crc32c (1,273 samples, 0.05%)</title><rect x="56.2928%" y="469" width="0.0531%" height="15" fill="rgb(227,62,0)" fg:x="1349473" fg:w="1273"/><text x="56.5428%" y="479.50"></text></g><g><title>crypto_shash_update (569 samples, 0.02%)</title><rect x="56.3222%" y="453" width="0.0237%" height="15" fill="rgb(211,226,4)" fg:x="1350177" fg:w="569"/><text x="56.5722%" y="463.50"></text></g><g><title>select_task_rq_fair (766 samples, 0.03%)</title><rect x="56.4203%" y="405" width="0.0320%" height="15" fill="rgb(253,38,52)" fg:x="1352528" fg:w="766"/><text x="56.6703%" y="415.50"></text></g><g><title>enqueue_entity (821 samples, 0.03%)</title><rect x="56.4644%" y="373" width="0.0342%" height="15" fill="rgb(229,126,40)" fg:x="1353586" fg:w="821"/><text x="56.7144%" y="383.50"></text></g><g><title>update_load_avg (299 samples, 0.01%)</title><rect x="56.4862%" y="357" width="0.0125%" height="15" fill="rgb(229,165,44)" fg:x="1354108" fg:w="299"/><text x="56.7362%" y="367.50"></text></g><g><title>enqueue_task_fair (1,025 samples, 0.04%)</title><rect x="56.4575%" y="389" width="0.0428%" height="15" fill="rgb(247,95,47)" fg:x="1353420" fg:w="1025"/><text x="56.7075%" y="399.50"></text></g><g><title>ttwu_do_activate (2,094 samples, 0.09%)</title><rect x="56.4543%" y="405" width="0.0874%" height="15" fill="rgb(216,140,30)" fg:x="1353344" fg:w="2094"/><text x="56.7043%" y="415.50"></text></g><g><title>psi_task_change (991 samples, 0.04%)</title><rect x="56.5003%" y="389" width="0.0413%" height="15" fill="rgb(246,214,8)" fg:x="1354447" fg:w="991"/><text x="56.7503%" y="399.50"></text></g><g><title>psi_group_change (887 samples, 0.04%)</title><rect x="56.5047%" y="373" width="0.0370%" height="15" fill="rgb(227,224,15)" fg:x="1354551" fg:w="887"/><text x="56.7547%" y="383.50"></text></g><g><title>__wake_up_common (4,946 samples, 0.21%)</title><rect x="56.3573%" y="453" width="0.2063%" height="15" fill="rgb(233,175,4)" fg:x="1351017" fg:w="4946"/><text x="56.6073%" y="463.50"></text></g><g><title>autoremove_wake_function (4,855 samples, 0.20%)</title><rect x="56.3611%" y="437" width="0.2025%" height="15" fill="rgb(221,66,45)" fg:x="1351108" fg:w="4855"/><text x="56.6111%" y="447.50"></text></g><g><title>try_to_wake_up (4,760 samples, 0.20%)</title><rect x="56.3650%" y="421" width="0.1986%" height="15" fill="rgb(221,178,18)" fg:x="1351203" fg:w="4760"/><text x="56.6150%" y="431.50"></text></g><g><title>__wake_up_common_lock (5,185 samples, 0.22%)</title><rect x="56.3560%" y="469" width="0.2163%" height="15" fill="rgb(213,81,29)" fg:x="1350987" fg:w="5185"/><text x="56.6060%" y="479.50"></text></g><g><title>btrfs_tree_unlock (395 samples, 0.02%)</title><rect x="56.5724%" y="469" width="0.0165%" height="15" fill="rgb(220,89,49)" fg:x="1356175" fg:w="395"/><text x="56.8224%" y="479.50"></text></g><g><title>_raw_spin_lock (433 samples, 0.02%)</title><rect x="56.6336%" y="453" width="0.0181%" height="15" fill="rgb(227,60,33)" fg:x="1357641" fg:w="433"/><text x="56.8836%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,470 samples, 0.06%)</title><rect x="56.5905%" y="469" width="0.0613%" height="15" fill="rgb(205,113,12)" fg:x="1356609" fg:w="1470"/><text x="56.8405%" y="479.50"></text></g><g><title>btrfs_release_path (7,749 samples, 0.32%)</title><rect x="56.3460%" y="485" width="0.3232%" height="15" fill="rgb(211,32,1)" fg:x="1350746" fg:w="7749"/><text x="56.5960%" y="495.50"></text></g><g><title>release_extent_buffer (416 samples, 0.02%)</title><rect x="56.6518%" y="469" width="0.0174%" height="15" fill="rgb(246,2,12)" fg:x="1358079" fg:w="416"/><text x="56.9018%" y="479.50"></text></g><g><title>_raw_spin_lock (307 samples, 0.01%)</title><rect x="56.7266%" y="437" width="0.0128%" height="15" fill="rgb(243,37,27)" fg:x="1359872" fg:w="307"/><text x="56.9766%" y="447.50"></text></g><g><title>mutex_lock (359 samples, 0.01%)</title><rect x="56.7395%" y="437" width="0.0150%" height="15" fill="rgb(248,211,31)" fg:x="1360181" fg:w="359"/><text x="56.9895%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,653 samples, 0.07%)</title><rect x="56.7017%" y="453" width="0.0690%" height="15" fill="rgb(242,146,47)" fg:x="1359274" fg:w="1653"/><text x="56.9517%" y="463.50"></text></g><g><title>mutex_unlock (387 samples, 0.02%)</title><rect x="56.7545%" y="437" width="0.0161%" height="15" fill="rgb(206,70,20)" fg:x="1360540" fg:w="387"/><text x="57.0045%" y="447.50"></text></g><g><title>btrfs_get_or_create_delayed_node (470 samples, 0.02%)</title><rect x="56.7787%" y="453" width="0.0196%" height="15" fill="rgb(215,10,51)" fg:x="1361120" fg:w="470"/><text x="57.0287%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (399 samples, 0.02%)</title><rect x="56.7817%" y="437" width="0.0166%" height="15" fill="rgb(243,178,53)" fg:x="1361191" fg:w="399"/><text x="57.0317%" y="447.50"></text></g><g><title>inode_get_bytes (325 samples, 0.01%)</title><rect x="56.8104%" y="437" width="0.0136%" height="15" fill="rgb(233,221,20)" fg:x="1361879" fg:w="325"/><text x="57.0604%" y="447.50"></text></g><g><title>fill_stack_inode_item (1,008 samples, 0.04%)</title><rect x="56.7983%" y="453" width="0.0420%" height="15" fill="rgb(218,95,35)" fg:x="1361590" fg:w="1008"/><text x="57.0483%" y="463.50"></text></g><g><title>map_id_up (394 samples, 0.02%)</title><rect x="56.8239%" y="437" width="0.0164%" height="15" fill="rgb(229,13,5)" fg:x="1362204" fg:w="394"/><text x="57.0739%" y="447.50"></text></g><g><title>btrfs_delayed_update_inode (3,987 samples, 0.17%)</title><rect x="56.6940%" y="469" width="0.1663%" height="15" fill="rgb(252,164,30)" fg:x="1359089" fg:w="3987"/><text x="56.9440%" y="479.50"></text></g><g><title>mutex_unlock (273 samples, 0.01%)</title><rect x="56.8489%" y="453" width="0.0114%" height="15" fill="rgb(232,68,36)" fg:x="1362803" fg:w="273"/><text x="57.0989%" y="463.50"></text></g><g><title>_raw_spin_lock (515 samples, 0.02%)</title><rect x="56.8682%" y="453" width="0.0215%" height="15" fill="rgb(219,59,54)" fg:x="1363265" fg:w="515"/><text x="57.1182%" y="463.50"></text></g><g><title>btrfs_update_inode (5,940 samples, 0.25%)</title><rect x="56.6692%" y="485" width="0.2478%" height="15" fill="rgb(250,92,33)" fg:x="1358495" fg:w="5940"/><text x="56.9192%" y="495.50"></text></g><g><title>btrfs_update_root_times (1,359 samples, 0.06%)</title><rect x="56.8603%" y="469" width="0.0567%" height="15" fill="rgb(229,162,54)" fg:x="1363076" fg:w="1359"/><text x="57.1103%" y="479.50"></text></g><g><title>ktime_get_real_ts64 (654 samples, 0.03%)</title><rect x="56.8897%" y="453" width="0.0273%" height="15" fill="rgb(244,114,52)" fg:x="1363781" fg:w="654"/><text x="57.1397%" y="463.50"></text></g><g><title>read_tsc (244 samples, 0.01%)</title><rect x="56.9068%" y="437" width="0.0102%" height="15" fill="rgb(212,211,43)" fg:x="1364191" fg:w="244"/><text x="57.1568%" y="447.50"></text></g><g><title>kmem_cache_alloc (699 samples, 0.03%)</title><rect x="56.9244%" y="485" width="0.0292%" height="15" fill="rgb(226,147,8)" fg:x="1364612" fg:w="699"/><text x="57.1744%" y="495.50"></text></g><g><title>__btrfs_unlink_inode (272,330 samples, 11.36%)</title><rect x="45.6236%" y="501" width="11.3602%" height="15" fill="rgb(226,23,13)" fg:x="1093707" fg:w="272330"/><text x="45.8736%" y="511.50">__btrfs_unlink_in..</text></g><g><title>kmem_cache_free (726 samples, 0.03%)</title><rect x="56.9535%" y="485" width="0.0303%" height="15" fill="rgb(240,63,4)" fg:x="1365311" fg:w="726"/><text x="57.2035%" y="495.50"></text></g><g><title>__radix_tree_lookup (376 samples, 0.02%)</title><rect x="57.0117%" y="485" width="0.0157%" height="15" fill="rgb(221,1,32)" fg:x="1366705" fg:w="376"/><text x="57.2617%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,049 samples, 0.04%)</title><rect x="56.9839%" y="501" width="0.0438%" height="15" fill="rgb(242,117,10)" fg:x="1366039" fg:w="1049"/><text x="57.2339%" y="511.50"></text></g><g><title>btrfs_balance_delayed_items (649 samples, 0.03%)</title><rect x="57.0400%" y="485" width="0.0271%" height="15" fill="rgb(249,172,44)" fg:x="1367385" fg:w="649"/><text x="57.2900%" y="495.50"></text></g><g><title>_raw_spin_lock (353 samples, 0.01%)</title><rect x="57.0753%" y="453" width="0.0147%" height="15" fill="rgb(244,46,45)" fg:x="1368231" fg:w="353"/><text x="57.3253%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (295 samples, 0.01%)</title><rect x="57.0778%" y="437" width="0.0123%" height="15" fill="rgb(206,43,17)" fg:x="1368289" fg:w="295"/><text x="57.3278%" y="447.50"></text></g><g><title>select_task_rq_fair (272 samples, 0.01%)</title><rect x="57.1085%" y="437" width="0.0113%" height="15" fill="rgb(239,218,39)" fg:x="1369026" fg:w="272"/><text x="57.3585%" y="447.50"></text></g><g><title>ttwu_do_activate (376 samples, 0.02%)</title><rect x="57.1213%" y="437" width="0.0157%" height="15" fill="rgb(208,169,54)" fg:x="1369333" fg:w="376"/><text x="57.3713%" y="447.50"></text></g><g><title>try_to_wake_up (1,211 samples, 0.05%)</title><rect x="57.0942%" y="453" width="0.0505%" height="15" fill="rgb(247,25,42)" fg:x="1368683" fg:w="1211"/><text x="57.3442%" y="463.50"></text></g><g><title>__queue_work (1,780 samples, 0.07%)</title><rect x="57.0705%" y="469" width="0.0743%" height="15" fill="rgb(226,23,31)" fg:x="1368116" fg:w="1780"/><text x="57.3205%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (2,837 samples, 0.12%)</title><rect x="57.0277%" y="501" width="0.1183%" height="15" fill="rgb(247,16,28)" fg:x="1367088" fg:w="2837"/><text x="57.2777%" y="511.50"></text></g><g><title>queue_work_on (1,835 samples, 0.08%)</title><rect x="57.0695%" y="485" width="0.0765%" height="15" fill="rgb(231,147,38)" fg:x="1368090" fg:w="1835"/><text x="57.3195%" y="495.50"></text></g><g><title>enqueue_task_fair (249 samples, 0.01%)</title><rect x="57.2591%" y="357" width="0.0104%" height="15" fill="rgb(253,81,48)" fg:x="1372636" fg:w="249"/><text x="57.5091%" y="367.50"></text></g><g><title>ttwu_do_activate (518 samples, 0.02%)</title><rect x="57.2583%" y="373" width="0.0216%" height="15" fill="rgb(249,222,43)" fg:x="1372617" fg:w="518"/><text x="57.5083%" y="383.50"></text></g><g><title>psi_task_change (250 samples, 0.01%)</title><rect x="57.2695%" y="357" width="0.0104%" height="15" fill="rgb(221,3,27)" fg:x="1372885" fg:w="250"/><text x="57.5195%" y="367.50"></text></g><g><title>__wake_up_common (2,315 samples, 0.10%)</title><rect x="57.1883%" y="421" width="0.0966%" height="15" fill="rgb(228,180,5)" fg:x="1370939" fg:w="2315"/><text x="57.4383%" y="431.50"></text></g><g><title>autoremove_wake_function (2,282 samples, 0.10%)</title><rect x="57.1897%" y="405" width="0.0952%" height="15" fill="rgb(227,131,42)" fg:x="1370972" fg:w="2282"/><text x="57.4397%" y="415.50"></text></g><g><title>try_to_wake_up (2,264 samples, 0.09%)</title><rect x="57.1904%" y="389" width="0.0944%" height="15" fill="rgb(212,3,39)" fg:x="1370990" fg:w="2264"/><text x="57.4404%" y="399.50"></text></g><g><title>__wake_up_common_lock (2,395 samples, 0.10%)</title><rect x="57.1875%" y="437" width="0.0999%" height="15" fill="rgb(226,45,5)" fg:x="1370921" fg:w="2395"/><text x="57.4375%" y="447.50"></text></g><g><title>btrfs_tree_unlock (377 samples, 0.02%)</title><rect x="57.2875%" y="437" width="0.0157%" height="15" fill="rgb(215,167,45)" fg:x="1373318" fg:w="377"/><text x="57.5375%" y="447.50"></text></g><g><title>_raw_spin_lock (482 samples, 0.02%)</title><rect x="57.3491%" y="421" width="0.0201%" height="15" fill="rgb(250,218,53)" fg:x="1374794" fg:w="482"/><text x="57.5991%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,568 samples, 0.07%)</title><rect x="57.3040%" y="437" width="0.0654%" height="15" fill="rgb(207,140,0)" fg:x="1373713" fg:w="1568"/><text x="57.5540%" y="447.50"></text></g><g><title>btrfs_free_path (5,202 samples, 0.22%)</title><rect x="57.1702%" y="469" width="0.2170%" height="15" fill="rgb(238,133,51)" fg:x="1370505" fg:w="5202"/><text x="57.4202%" y="479.50"></text></g><g><title>btrfs_release_path (5,058 samples, 0.21%)</title><rect x="57.1762%" y="453" width="0.2110%" height="15" fill="rgb(218,203,53)" fg:x="1370649" fg:w="5058"/><text x="57.4262%" y="463.50"></text></g><g><title>release_extent_buffer (426 samples, 0.02%)</title><rect x="57.3694%" y="437" width="0.0178%" height="15" fill="rgb(226,184,25)" fg:x="1375281" fg:w="426"/><text x="57.6194%" y="447.50"></text></g><g><title>_raw_read_lock (636 samples, 0.03%)</title><rect x="57.5357%" y="405" width="0.0265%" height="15" fill="rgb(231,121,21)" fg:x="1379267" fg:w="636"/><text x="57.7857%" y="415.50"></text></g><g><title>finish_wait (4,789 samples, 0.20%)</title><rect x="57.5649%" y="405" width="0.1998%" height="15" fill="rgb(251,14,34)" fg:x="1379967" fg:w="4789"/><text x="57.8149%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,602 samples, 0.19%)</title><rect x="57.5727%" y="389" width="0.1920%" height="15" fill="rgb(249,193,11)" fg:x="1380154" fg:w="4602"/><text x="57.8227%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,409 samples, 0.18%)</title><rect x="57.5807%" y="373" width="0.1839%" height="15" fill="rgb(220,172,37)" fg:x="1380347" fg:w="4409"/><text x="57.8307%" y="383.50"></text></g><g><title>__list_add_valid (260 samples, 0.01%)</title><rect x="57.7966%" y="389" width="0.0108%" height="15" fill="rgb(231,229,43)" fg:x="1385521" fg:w="260"/><text x="58.0466%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (12,054 samples, 0.50%)</title><rect x="57.8074%" y="389" width="0.5028%" height="15" fill="rgb(250,161,5)" fg:x="1385781" fg:w="12054"/><text x="58.0574%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (11,502 samples, 0.48%)</title><rect x="57.8305%" y="373" width="0.4798%" height="15" fill="rgb(218,225,18)" fg:x="1386333" fg:w="11502"/><text x="58.0805%" y="383.50"></text></g><g><title>prepare_to_wait_event (13,259 samples, 0.55%)</title><rect x="57.7650%" y="405" width="0.5531%" height="15" fill="rgb(245,45,42)" fg:x="1384765" fg:w="13259"/><text x="58.0150%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,108 samples, 0.34%)</title><rect x="58.4457%" y="389" width="0.3382%" height="15" fill="rgb(211,115,1)" fg:x="1401081" fg:w="8108"/><text x="58.6957%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (11,166 samples, 0.47%)</title><rect x="58.3181%" y="405" width="0.4658%" height="15" fill="rgb(248,133,52)" fg:x="1398024" fg:w="11166"/><text x="58.5681%" y="415.50"></text></g><g><title>__perf_event_task_sched_out (400 samples, 0.02%)</title><rect x="58.8110%" y="373" width="0.0167%" height="15" fill="rgb(238,100,21)" fg:x="1409839" fg:w="400"/><text x="59.0610%" y="383.50"></text></g><g><title>update_curr (680 samples, 0.03%)</title><rect x="58.8679%" y="341" width="0.0284%" height="15" fill="rgb(247,144,11)" fg:x="1411202" fg:w="680"/><text x="59.1179%" y="351.50"></text></g><g><title>dequeue_entity (1,864 samples, 0.08%)</title><rect x="58.8427%" y="357" width="0.0778%" height="15" fill="rgb(206,164,16)" fg:x="1410600" fg:w="1864"/><text x="59.0927%" y="367.50"></text></g><g><title>update_load_avg (582 samples, 0.02%)</title><rect x="58.8962%" y="341" width="0.0243%" height="15" fill="rgb(222,34,3)" fg:x="1411882" fg:w="582"/><text x="59.1462%" y="351.50"></text></g><g><title>dequeue_task_fair (2,263 samples, 0.09%)</title><rect x="58.8318%" y="373" width="0.0944%" height="15" fill="rgb(248,82,4)" fg:x="1410337" fg:w="2263"/><text x="59.0818%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (4,217 samples, 0.18%)</title><rect x="58.9446%" y="357" width="0.1759%" height="15" fill="rgb(228,81,46)" fg:x="1413042" fg:w="4217"/><text x="59.1946%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,094 samples, 0.17%)</title><rect x="58.9497%" y="341" width="0.1708%" height="15" fill="rgb(227,67,47)" fg:x="1413165" fg:w="4094"/><text x="59.1997%" y="351.50"></text></g><g><title>native_write_msr (4,044 samples, 0.17%)</title><rect x="58.9518%" y="325" width="0.1687%" height="15" fill="rgb(215,93,53)" fg:x="1413215" fg:w="4044"/><text x="59.2018%" y="335.50"></text></g><g><title>finish_task_switch (4,844 samples, 0.20%)</title><rect x="58.9262%" y="373" width="0.2021%" height="15" fill="rgb(248,194,39)" fg:x="1412600" fg:w="4844"/><text x="59.1762%" y="383.50"></text></g><g><title>pick_next_task_fair (367 samples, 0.02%)</title><rect x="59.1285%" y="373" width="0.0153%" height="15" fill="rgb(215,5,19)" fg:x="1417450" fg:w="367"/><text x="59.3785%" y="383.50"></text></g><g><title>pick_next_task_idle (341 samples, 0.01%)</title><rect x="59.1438%" y="373" width="0.0142%" height="15" fill="rgb(226,215,51)" fg:x="1417817" fg:w="341"/><text x="59.3938%" y="383.50"></text></g><g><title>__update_idle_core (290 samples, 0.01%)</title><rect x="59.1459%" y="357" width="0.0121%" height="15" fill="rgb(225,56,26)" fg:x="1417868" fg:w="290"/><text x="59.3959%" y="367.50"></text></g><g><title>psi_task_change (1,652 samples, 0.07%)</title><rect x="59.1580%" y="373" width="0.0689%" height="15" fill="rgb(222,75,29)" fg:x="1418158" fg:w="1652"/><text x="59.4080%" y="383.50"></text></g><g><title>psi_group_change (1,367 samples, 0.06%)</title><rect x="59.1699%" y="357" width="0.0570%" height="15" fill="rgb(236,139,6)" fg:x="1418443" fg:w="1367"/><text x="59.4199%" y="367.50"></text></g><g><title>record_times (278 samples, 0.01%)</title><rect x="59.2153%" y="341" width="0.0116%" height="15" fill="rgb(223,137,36)" fg:x="1419532" fg:w="278"/><text x="59.4653%" y="351.50"></text></g><g><title>__schedule (11,014 samples, 0.46%)</title><rect x="58.7898%" y="389" width="0.4594%" height="15" fill="rgb(226,99,2)" fg:x="1409331" fg:w="11014"/><text x="59.0398%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (41,930 samples, 1.75%)</title><rect x="57.5002%" y="421" width="1.7491%" height="15" fill="rgb(206,133,23)" fg:x="1378416" fg:w="41930"/><text x="57.7502%" y="431.50"></text></g><g><title>schedule (11,156 samples, 0.47%)</title><rect x="58.7839%" y="405" width="0.4654%" height="15" fill="rgb(243,173,15)" fg:x="1409190" fg:w="11156"/><text x="59.0339%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (43,132 samples, 1.80%)</title><rect x="57.4954%" y="437" width="1.7992%" height="15" fill="rgb(228,69,28)" fg:x="1378302" fg:w="43132"/><text x="57.7454%" y="447.50">_..</text></g><g><title>btrfs_root_node (1,086 samples, 0.05%)</title><rect x="59.2494%" y="421" width="0.0453%" height="15" fill="rgb(212,51,22)" fg:x="1420348" fg:w="1086"/><text x="59.4994%" y="431.50"></text></g><g><title>finish_wait (342 samples, 0.01%)</title><rect x="59.3132%" y="421" width="0.0143%" height="15" fill="rgb(227,113,0)" fg:x="1421877" fg:w="342"/><text x="59.5632%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (290 samples, 0.01%)</title><rect x="59.3153%" y="405" width="0.0121%" height="15" fill="rgb(252,84,27)" fg:x="1421929" fg:w="290"/><text x="59.5653%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (677 samples, 0.03%)</title><rect x="59.3414%" y="405" width="0.0282%" height="15" fill="rgb(223,145,39)" fg:x="1422554" fg:w="677"/><text x="59.5914%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (424 samples, 0.02%)</title><rect x="59.3520%" y="389" width="0.0177%" height="15" fill="rgb(239,219,30)" fg:x="1422807" fg:w="424"/><text x="59.6020%" y="399.50"></text></g><g><title>prepare_to_wait_event (1,062 samples, 0.04%)</title><rect x="59.3285%" y="421" width="0.0443%" height="15" fill="rgb(224,196,39)" fg:x="1422245" fg:w="1062"/><text x="59.5785%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (1,298 samples, 0.05%)</title><rect x="59.3728%" y="421" width="0.0541%" height="15" fill="rgb(205,35,43)" fg:x="1423307" fg:w="1298"/><text x="59.6228%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (438 samples, 0.02%)</title><rect x="59.4087%" y="405" width="0.0183%" height="15" fill="rgb(228,201,21)" fg:x="1424167" fg:w="438"/><text x="59.6587%" y="415.50"></text></g><g><title>update_curr (417 samples, 0.02%)</title><rect x="59.4761%" y="357" width="0.0174%" height="15" fill="rgb(237,118,16)" fg:x="1425782" fg:w="417"/><text x="59.7261%" y="367.50"></text></g><g><title>dequeue_entity (1,113 samples, 0.05%)</title><rect x="59.4615%" y="373" width="0.0464%" height="15" fill="rgb(241,17,19)" fg:x="1425433" fg:w="1113"/><text x="59.7115%" y="383.50"></text></g><g><title>update_load_avg (347 samples, 0.01%)</title><rect x="59.4935%" y="357" width="0.0145%" height="15" fill="rgb(214,10,25)" fg:x="1426199" fg:w="347"/><text x="59.7435%" y="367.50"></text></g><g><title>dequeue_task_fair (1,392 samples, 0.06%)</title><rect x="59.4549%" y="389" width="0.0581%" height="15" fill="rgb(238,37,29)" fg:x="1425275" fg:w="1392"/><text x="59.7049%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (2,778 samples, 0.12%)</title><rect x="59.5236%" y="373" width="0.1159%" height="15" fill="rgb(253,83,25)" fg:x="1426921" fg:w="2778"/><text x="59.7736%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,691 samples, 0.11%)</title><rect x="59.5272%" y="357" width="0.1123%" height="15" fill="rgb(234,192,12)" fg:x="1427008" fg:w="2691"/><text x="59.7772%" y="367.50"></text></g><g><title>native_write_msr (2,660 samples, 0.11%)</title><rect x="59.5285%" y="341" width="0.1110%" height="15" fill="rgb(241,216,45)" fg:x="1427039" fg:w="2660"/><text x="59.7785%" y="351.50"></text></g><g><title>finish_task_switch (3,147 samples, 0.13%)</title><rect x="59.5130%" y="389" width="0.1313%" height="15" fill="rgb(242,22,33)" fg:x="1426667" fg:w="3147"/><text x="59.7630%" y="399.50"></text></g><g><title>pick_next_task_fair (254 samples, 0.01%)</title><rect x="59.6443%" y="389" width="0.0106%" height="15" fill="rgb(231,105,49)" fg:x="1429816" fg:w="254"/><text x="59.8943%" y="399.50"></text></g><g><title>pick_next_task_idle (255 samples, 0.01%)</title><rect x="59.6549%" y="389" width="0.0106%" height="15" fill="rgb(218,204,15)" fg:x="1430070" fg:w="255"/><text x="59.9049%" y="399.50"></text></g><g><title>psi_task_change (1,013 samples, 0.04%)</title><rect x="59.6656%" y="389" width="0.0423%" height="15" fill="rgb(235,138,41)" fg:x="1430325" fg:w="1013"/><text x="59.9156%" y="399.50"></text></g><g><title>psi_group_change (842 samples, 0.04%)</title><rect x="59.6727%" y="373" width="0.0351%" height="15" fill="rgb(246,0,9)" fg:x="1430496" fg:w="842"/><text x="59.9227%" y="383.50"></text></g><g><title>__btrfs_tree_lock (10,228 samples, 0.43%)</title><rect x="59.2947%" y="437" width="0.4267%" height="15" fill="rgb(210,74,4)" fg:x="1421434" fg:w="10228"/><text x="59.5447%" y="447.50"></text></g><g><title>schedule (7,057 samples, 0.29%)</title><rect x="59.4270%" y="421" width="0.2944%" height="15" fill="rgb(250,60,41)" fg:x="1424605" fg:w="7057"/><text x="59.6770%" y="431.50"></text></g><g><title>__schedule (6,979 samples, 0.29%)</title><rect x="59.4302%" y="405" width="0.2911%" height="15" fill="rgb(220,115,12)" fg:x="1424683" fg:w="6979"/><text x="59.6802%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (1,049 samples, 0.04%)</title><rect x="59.7305%" y="437" width="0.0438%" height="15" fill="rgb(237,100,13)" fg:x="1431882" fg:w="1049"/><text x="59.9805%" y="447.50"></text></g><g><title>leaf_space_used (746 samples, 0.03%)</title><rect x="59.7432%" y="421" width="0.0311%" height="15" fill="rgb(213,55,26)" fg:x="1432185" fg:w="746"/><text x="59.9932%" y="431.50"></text></g><g><title>btrfs_get_32 (512 samples, 0.02%)</title><rect x="59.7529%" y="405" width="0.0214%" height="15" fill="rgb(216,17,4)" fg:x="1432419" fg:w="512"/><text x="60.0029%" y="415.50"></text></g><g><title>btrfs_set_lock_blocking_read (254 samples, 0.01%)</title><rect x="59.8044%" y="421" width="0.0106%" height="15" fill="rgb(220,153,47)" fg:x="1433653" fg:w="254"/><text x="60.0544%" y="431.50"></text></g><g><title>btrfs_set_path_blocking (928 samples, 0.04%)</title><rect x="59.7818%" y="437" width="0.0387%" height="15" fill="rgb(215,131,9)" fg:x="1433112" fg:w="928"/><text x="60.0318%" y="447.50"></text></g><g><title>_raw_write_lock (553 samples, 0.02%)</title><rect x="59.8295%" y="421" width="0.0231%" height="15" fill="rgb(233,46,42)" fg:x="1434256" fg:w="553"/><text x="60.0795%" y="431.50"></text></g><g><title>btrfs_try_tree_write_lock (7,334 samples, 0.31%)</title><rect x="59.8209%" y="437" width="0.3059%" height="15" fill="rgb(226,86,7)" fg:x="1434048" fg:w="7334"/><text x="60.0709%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (6,573 samples, 0.27%)</title><rect x="59.8526%" y="421" width="0.2742%" height="15" fill="rgb(239,226,21)" fg:x="1434809" fg:w="6573"/><text x="60.1026%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,080 samples, 0.05%)</title><rect x="60.0818%" y="405" width="0.0451%" height="15" fill="rgb(244,137,22)" fg:x="1440302" fg:w="1080"/><text x="60.3318%" y="415.50"></text></g><g><title>generic_bin_search.constprop.0 (3,888 samples, 0.16%)</title><rect x="60.1268%" y="437" width="0.1622%" height="15" fill="rgb(211,139,35)" fg:x="1441383" fg:w="3888"/><text x="60.3768%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (810 samples, 0.03%)</title><rect x="60.3135%" y="421" width="0.0338%" height="15" fill="rgb(214,62,50)" fg:x="1445858" fg:w="810"/><text x="60.5635%" y="431.50"></text></g><g><title>verify_parent_transid (645 samples, 0.03%)</title><rect x="60.3204%" y="405" width="0.0269%" height="15" fill="rgb(212,113,44)" fg:x="1446023" fg:w="645"/><text x="60.5704%" y="415.50"></text></g><g><title>btrfs_get_64 (805 samples, 0.03%)</title><rect x="60.3473%" y="421" width="0.0336%" height="15" fill="rgb(226,150,43)" fg:x="1446668" fg:w="805"/><text x="60.5973%" y="431.50"></text></g><g><title>btrfs_verify_level_key (277 samples, 0.01%)</title><rect x="60.3831%" y="421" width="0.0116%" height="15" fill="rgb(250,71,37)" fg:x="1447527" fg:w="277"/><text x="60.6331%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,503 samples, 0.10%)</title><rect x="60.4860%" y="405" width="0.1044%" height="15" fill="rgb(219,76,19)" fg:x="1449993" fg:w="2503"/><text x="60.7360%" y="415.50"></text></g><g><title>mark_page_accessed (822 samples, 0.03%)</title><rect x="60.6045%" y="389" width="0.0343%" height="15" fill="rgb(250,39,11)" fg:x="1452834" fg:w="822"/><text x="60.8545%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,158 samples, 0.05%)</title><rect x="60.5908%" y="405" width="0.0483%" height="15" fill="rgb(230,64,31)" fg:x="1452506" fg:w="1158"/><text x="60.8408%" y="415.50"></text></g><g><title>find_extent_buffer (5,894 samples, 0.25%)</title><rect x="60.3947%" y="421" width="0.2459%" height="15" fill="rgb(208,222,23)" fg:x="1447804" fg:w="5894"/><text x="60.6447%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (9,168 samples, 0.38%)</title><rect x="60.2890%" y="437" width="0.3824%" height="15" fill="rgb(227,125,18)" fg:x="1445271" fg:w="9168"/><text x="60.5390%" y="447.50"></text></g><g><title>read_extent_buffer (741 samples, 0.03%)</title><rect x="60.6406%" y="421" width="0.0309%" height="15" fill="rgb(234,210,9)" fg:x="1453698" fg:w="741"/><text x="60.8906%" y="431.50"></text></g><g><title>_raw_spin_lock (326 samples, 0.01%)</title><rect x="60.7911%" y="357" width="0.0136%" height="15" fill="rgb(217,127,24)" fg:x="1457306" fg:w="326"/><text x="61.0411%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (308 samples, 0.01%)</title><rect x="60.8047%" y="357" width="0.0128%" height="15" fill="rgb(239,141,48)" fg:x="1457632" fg:w="308"/><text x="61.0547%" y="367.50"></text></g><g><title>available_idle_cpu (289 samples, 0.01%)</title><rect x="60.8491%" y="341" width="0.0121%" height="15" fill="rgb(227,109,8)" fg:x="1458698" fg:w="289"/><text x="61.0991%" y="351.50"></text></g><g><title>select_task_rq_fair (1,567 samples, 0.07%)</title><rect x="60.8186%" y="357" width="0.0654%" height="15" fill="rgb(235,184,23)" fg:x="1457965" fg:w="1567"/><text x="61.0686%" y="367.50"></text></g><g><title>update_cfs_rq_h_load (331 samples, 0.01%)</title><rect x="60.8701%" y="341" width="0.0138%" height="15" fill="rgb(227,226,48)" fg:x="1459201" fg:w="331"/><text x="61.1201%" y="351.50"></text></g><g><title>enqueue_entity (1,413 samples, 0.06%)</title><rect x="60.9063%" y="325" width="0.0589%" height="15" fill="rgb(206,150,11)" fg:x="1460069" fg:w="1413"/><text x="61.1563%" y="335.50"></text></g><g><title>update_load_avg (492 samples, 0.02%)</title><rect x="60.9447%" y="309" width="0.0205%" height="15" fill="rgb(254,2,33)" fg:x="1460990" fg:w="492"/><text x="61.1947%" y="319.50"></text></g><g><title>enqueue_task_fair (1,792 samples, 0.07%)</title><rect x="60.8946%" y="341" width="0.0748%" height="15" fill="rgb(243,160,20)" fg:x="1459787" fg:w="1792"/><text x="61.1446%" y="351.50"></text></g><g><title>ttwu_do_activate (3,553 samples, 0.15%)</title><rect x="60.8893%" y="357" width="0.1482%" height="15" fill="rgb(218,208,30)" fg:x="1459660" fg:w="3553"/><text x="61.1393%" y="367.50"></text></g><g><title>psi_task_change (1,633 samples, 0.07%)</title><rect x="60.9694%" y="341" width="0.0681%" height="15" fill="rgb(224,120,49)" fg:x="1461580" fg:w="1633"/><text x="61.2194%" y="351.50"></text></g><g><title>psi_group_change (1,443 samples, 0.06%)</title><rect x="60.9773%" y="325" width="0.0602%" height="15" fill="rgb(246,12,2)" fg:x="1461770" fg:w="1443"/><text x="61.2273%" y="335.50"></text></g><g><title>record_times (242 samples, 0.01%)</title><rect x="61.0274%" y="309" width="0.0101%" height="15" fill="rgb(236,117,3)" fg:x="1462971" fg:w="242"/><text x="61.2774%" y="319.50"></text></g><g><title>ttwu_do_wakeup (331 samples, 0.01%)</title><rect x="61.0375%" y="357" width="0.0138%" height="15" fill="rgb(216,128,52)" fg:x="1463213" fg:w="331"/><text x="61.2875%" y="367.50"></text></g><g><title>check_preempt_curr (291 samples, 0.01%)</title><rect x="61.0391%" y="341" width="0.0121%" height="15" fill="rgb(246,145,19)" fg:x="1463253" fg:w="291"/><text x="61.2891%" y="351.50"></text></g><g><title>__wake_up_common (8,341 samples, 0.35%)</title><rect x="60.7249%" y="405" width="0.3479%" height="15" fill="rgb(222,11,46)" fg:x="1455720" fg:w="8341"/><text x="60.9749%" y="415.50"></text></g><g><title>autoremove_wake_function (8,190 samples, 0.34%)</title><rect x="60.7312%" y="389" width="0.3416%" height="15" fill="rgb(245,82,36)" fg:x="1455871" fg:w="8190"/><text x="60.9812%" y="399.50"></text></g><g><title>try_to_wake_up (7,959 samples, 0.33%)</title><rect x="60.7408%" y="373" width="0.3320%" height="15" fill="rgb(250,73,51)" fg:x="1456102" fg:w="7959"/><text x="60.9908%" y="383.50"></text></g><g><title>update_rq_clock (312 samples, 0.01%)</title><rect x="61.0598%" y="357" width="0.0130%" height="15" fill="rgb(221,189,23)" fg:x="1463749" fg:w="312"/><text x="61.3098%" y="367.50"></text></g><g><title>__wake_up_common_lock (8,599 samples, 0.36%)</title><rect x="60.7236%" y="421" width="0.3587%" height="15" fill="rgb(210,33,7)" fg:x="1455688" fg:w="8599"/><text x="60.9736%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock (667 samples, 0.03%)</title><rect x="61.0826%" y="421" width="0.0278%" height="15" fill="rgb(210,107,22)" fg:x="1464294" fg:w="667"/><text x="61.3326%" y="431.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (266 samples, 0.01%)</title><rect x="61.1104%" y="421" width="0.0111%" height="15" fill="rgb(222,116,37)" fg:x="1464961" fg:w="266"/><text x="61.3604%" y="431.50"></text></g><g><title>btrfs_search_slot (89,433 samples, 3.73%)</title><rect x="57.4021%" y="453" width="3.7307%" height="15" fill="rgb(254,17,48)" fg:x="1376065" fg:w="89433"/><text x="57.6521%" y="463.50">btrf..</text></g><g><title>unlock_up (10,719 samples, 0.45%)</title><rect x="60.6857%" y="437" width="0.4471%" height="15" fill="rgb(224,36,32)" fg:x="1454779" fg:w="10719"/><text x="60.9357%" y="447.50"></text></g><g><title>btrfs_tree_unlock (271 samples, 0.01%)</title><rect x="61.1215%" y="421" width="0.0113%" height="15" fill="rgb(232,90,46)" fg:x="1465227" fg:w="271"/><text x="61.3715%" y="431.50"></text></g><g><title>btrfs_get_32 (411 samples, 0.02%)</title><rect x="61.1914%" y="437" width="0.0171%" height="15" fill="rgb(241,66,40)" fg:x="1466902" fg:w="411"/><text x="61.4414%" y="447.50"></text></g><g><title>btrfs_get_token_32 (387 samples, 0.02%)</title><rect x="61.2085%" y="437" width="0.0161%" height="15" fill="rgb(249,184,29)" fg:x="1467313" fg:w="387"/><text x="61.4585%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (1,225 samples, 0.05%)</title><rect x="61.2247%" y="437" width="0.0511%" height="15" fill="rgb(231,181,1)" fg:x="1467700" fg:w="1225"/><text x="61.4747%" y="447.50"></text></g><g><title>leaf_space_used (1,004 samples, 0.04%)</title><rect x="61.2339%" y="421" width="0.0419%" height="15" fill="rgb(224,94,2)" fg:x="1467921" fg:w="1004"/><text x="61.4839%" y="431.50"></text></g><g><title>btrfs_get_32 (749 samples, 0.03%)</title><rect x="61.2445%" y="405" width="0.0312%" height="15" fill="rgb(229,170,15)" fg:x="1468176" fg:w="749"/><text x="61.4945%" y="415.50"></text></g><g><title>btrfs_mark_buffer_dirty (850 samples, 0.04%)</title><rect x="61.2758%" y="437" width="0.0355%" height="15" fill="rgb(240,127,35)" fg:x="1468925" fg:w="850"/><text x="61.5258%" y="447.50"></text></g><g><title>set_extent_buffer_dirty (390 samples, 0.02%)</title><rect x="61.2949%" y="421" width="0.0163%" height="15" fill="rgb(248,196,34)" fg:x="1469385" fg:w="390"/><text x="61.5449%" y="431.50"></text></g><g><title>btrfs_set_token_32 (588 samples, 0.02%)</title><rect x="61.3112%" y="437" width="0.0245%" height="15" fill="rgb(236,137,7)" fg:x="1469775" fg:w="588"/><text x="61.5612%" y="447.50"></text></g><g><title>btrfs_unlock_up_safe (438 samples, 0.02%)</title><rect x="61.3357%" y="437" width="0.0183%" height="15" fill="rgb(235,127,16)" fg:x="1470363" fg:w="438"/><text x="61.5857%" y="447.50"></text></g><g><title>copy_pages (260 samples, 0.01%)</title><rect x="61.3692%" y="421" width="0.0108%" height="15" fill="rgb(250,192,54)" fg:x="1471166" fg:w="260"/><text x="61.6192%" y="431.50"></text></g><g><title>memmove_extent_buffer (779 samples, 0.03%)</title><rect x="61.3540%" y="437" width="0.0325%" height="15" fill="rgb(218,98,20)" fg:x="1470801" fg:w="779"/><text x="61.6040%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (96,650 samples, 4.03%)</title><rect x="57.3872%" y="469" width="4.0317%" height="15" fill="rgb(230,176,47)" fg:x="1375707" fg:w="96650"/><text x="57.6372%" y="479.50">btrf..</text></g><g><title>setup_items_for_insert (6,859 samples, 0.29%)</title><rect x="61.1328%" y="453" width="0.2861%" height="15" fill="rgb(244,2,33)" fg:x="1465498" fg:w="6859"/><text x="61.3828%" y="463.50"></text></g><g><title>write_extent_buffer (777 samples, 0.03%)</title><rect x="61.3865%" y="437" width="0.0324%" height="15" fill="rgb(231,100,17)" fg:x="1471580" fg:w="777"/><text x="61.6365%" y="447.50"></text></g><g><title>kmem_cache_alloc (694 samples, 0.03%)</title><rect x="61.4189%" y="469" width="0.0289%" height="15" fill="rgb(245,23,12)" fg:x="1472357" fg:w="694"/><text x="61.6689%" y="479.50"></text></g><g><title>btrfs_orphan_add (103,588 samples, 4.32%)</title><rect x="57.1537%" y="501" width="4.3211%" height="15" fill="rgb(249,55,22)" fg:x="1370109" fg:w="103588"/><text x="57.4037%" y="511.50">btrfs..</text></g><g><title>btrfs_insert_orphan_item (103,412 samples, 4.31%)</title><rect x="57.1610%" y="485" width="4.3138%" height="15" fill="rgb(207,134,9)" fg:x="1370285" fg:w="103412"/><text x="57.4110%" y="495.50">btrfs..</text></g><g><title>kmem_cache_free (646 samples, 0.03%)</title><rect x="61.4479%" y="469" width="0.0269%" height="15" fill="rgb(218,134,0)" fg:x="1473051" fg:w="646"/><text x="61.6979%" y="479.50"></text></g><g><title>mutex_lock (876 samples, 0.04%)</title><rect x="61.4787%" y="485" width="0.0365%" height="15" fill="rgb(213,212,33)" fg:x="1473789" fg:w="876"/><text x="61.7287%" y="495.50"></text></g><g><title>btrfs_record_unlink_dir (1,166 samples, 0.05%)</title><rect x="61.4748%" y="501" width="0.0486%" height="15" fill="rgb(252,106,18)" fg:x="1473697" fg:w="1166"/><text x="61.7248%" y="511.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,169 samples, 0.05%)</title><rect x="61.5575%" y="469" width="0.0488%" height="15" fill="rgb(208,126,42)" fg:x="1475678" fg:w="1169"/><text x="61.8075%" y="479.50"></text></g><g><title>mutex_unlock (351 samples, 0.01%)</title><rect x="61.5916%" y="453" width="0.0146%" height="15" fill="rgb(246,175,29)" fg:x="1476496" fg:w="351"/><text x="61.8416%" y="463.50"></text></g><g><title>_raw_spin_lock (741 samples, 0.03%)</title><rect x="61.6108%" y="453" width="0.0309%" height="15" fill="rgb(215,13,50)" fg:x="1476956" fg:w="741"/><text x="61.8608%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (848 samples, 0.04%)</title><rect x="61.6064%" y="469" width="0.0354%" height="15" fill="rgb(216,172,15)" fg:x="1476851" fg:w="848"/><text x="61.8564%" y="479.50"></text></g><g><title>btrfs_get_or_create_delayed_node (330 samples, 0.01%)</title><rect x="61.6418%" y="469" width="0.0138%" height="15" fill="rgb(212,103,13)" fg:x="1477699" fg:w="330"/><text x="61.8918%" y="479.50"></text></g><g><title>btrfs_get_delayed_node (297 samples, 0.01%)</title><rect x="61.6431%" y="453" width="0.0124%" height="15" fill="rgb(231,171,36)" fg:x="1477732" fg:w="297"/><text x="61.8931%" y="463.50"></text></g><g><title>inode_get_bytes (242 samples, 0.01%)</title><rect x="61.6619%" y="453" width="0.0101%" height="15" fill="rgb(250,123,20)" fg:x="1478181" fg:w="242"/><text x="61.9119%" y="463.50"></text></g><g><title>fill_stack_inode_item (506 samples, 0.02%)</title><rect x="61.6555%" y="469" width="0.0211%" height="15" fill="rgb(212,53,50)" fg:x="1478029" fg:w="506"/><text x="61.9055%" y="479.50"></text></g><g><title>mutex_lock (374 samples, 0.02%)</title><rect x="61.6766%" y="469" width="0.0156%" height="15" fill="rgb(243,54,12)" fg:x="1478535" fg:w="374"/><text x="61.9266%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (3,895 samples, 0.16%)</title><rect x="61.5361%" y="485" width="0.1625%" height="15" fill="rgb(234,101,34)" fg:x="1475166" fg:w="3895"/><text x="61.7861%" y="495.50"></text></g><g><title>btrfs_update_inode (4,672 samples, 0.19%)</title><rect x="61.5257%" y="501" width="0.1949%" height="15" fill="rgb(254,67,22)" fg:x="1474916" fg:w="4672"/><text x="61.7757%" y="511.50"></text></g><g><title>btrfs_update_root_times (527 samples, 0.02%)</title><rect x="61.6986%" y="485" width="0.0220%" height="15" fill="rgb(250,35,47)" fg:x="1479061" fg:w="527"/><text x="61.9486%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (283 samples, 0.01%)</title><rect x="61.7088%" y="469" width="0.0118%" height="15" fill="rgb(226,126,38)" fg:x="1479305" fg:w="283"/><text x="61.9588%" y="479.50"></text></g><g><title>drop_nlink (722 samples, 0.03%)</title><rect x="61.7206%" y="501" width="0.0301%" height="15" fill="rgb(216,138,53)" fg:x="1479588" fg:w="722"/><text x="61.9706%" y="511.50"></text></g><g><title>_raw_spin_lock (659 samples, 0.03%)</title><rect x="61.8157%" y="469" width="0.0275%" height="15" fill="rgb(246,199,43)" fg:x="1481869" fg:w="659"/><text x="62.0657%" y="479.50"></text></g><g><title>_raw_spin_lock (1,149 samples, 0.05%)</title><rect x="61.8865%" y="437" width="0.0479%" height="15" fill="rgb(232,125,11)" fg:x="1483567" fg:w="1149"/><text x="62.1365%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (455 samples, 0.02%)</title><rect x="61.9155%" y="421" width="0.0190%" height="15" fill="rgb(218,219,45)" fg:x="1484261" fg:w="455"/><text x="62.1655%" y="431.50"></text></g><g><title>_raw_spin_lock (317 samples, 0.01%)</title><rect x="61.9970%" y="405" width="0.0132%" height="15" fill="rgb(216,102,54)" fg:x="1486214" fg:w="317"/><text x="62.2470%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,818 samples, 0.08%)</title><rect x="61.9346%" y="437" width="0.0758%" height="15" fill="rgb(250,228,7)" fg:x="1484719" fg:w="1818"/><text x="62.1846%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (827 samples, 0.03%)</title><rect x="61.9759%" y="421" width="0.0345%" height="15" fill="rgb(226,125,25)" fg:x="1485710" fg:w="827"/><text x="62.2259%" y="431.50"></text></g><g><title>__reserve_bytes (4,559 samples, 0.19%)</title><rect x="61.8673%" y="453" width="0.1902%" height="15" fill="rgb(224,165,27)" fg:x="1483106" fg:w="4559"/><text x="62.1173%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (1,128 samples, 0.05%)</title><rect x="62.0104%" y="437" width="0.0471%" height="15" fill="rgb(233,86,3)" fg:x="1486537" fg:w="1128"/><text x="62.2604%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (626 samples, 0.03%)</title><rect x="62.0314%" y="421" width="0.0261%" height="15" fill="rgb(228,116,20)" fg:x="1487039" fg:w="626"/><text x="62.2814%" y="431.50"></text></g><g><title>_raw_spin_lock (388 samples, 0.02%)</title><rect x="62.0413%" y="405" width="0.0162%" height="15" fill="rgb(209,192,17)" fg:x="1487277" fg:w="388"/><text x="62.2913%" y="415.50"></text></g><g><title>btrfs_block_rsv_add (5,935 samples, 0.25%)</title><rect x="61.8100%" y="485" width="0.2476%" height="15" fill="rgb(224,88,34)" fg:x="1481733" fg:w="5935"/><text x="62.0600%" y="495.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,139 samples, 0.21%)</title><rect x="61.8432%" y="469" width="0.2144%" height="15" fill="rgb(233,38,6)" fg:x="1482529" fg:w="5139"/><text x="62.0932%" y="479.50"></text></g><g><title>_raw_spin_lock (431 samples, 0.02%)</title><rect x="62.0835%" y="469" width="0.0180%" height="15" fill="rgb(212,59,30)" fg:x="1488288" fg:w="431"/><text x="62.3335%" y="479.50"></text></g><g><title>join_transaction (988 samples, 0.04%)</title><rect x="62.0604%" y="485" width="0.0412%" height="15" fill="rgb(213,80,3)" fg:x="1487736" fg:w="988"/><text x="62.3104%" y="495.50"></text></g><g><title>kmem_cache_alloc (758 samples, 0.03%)</title><rect x="62.1017%" y="485" width="0.0316%" height="15" fill="rgb(251,178,7)" fg:x="1488724" fg:w="758"/><text x="62.3517%" y="495.50"></text></g><g><title>_raw_spin_lock (680 samples, 0.03%)</title><rect x="62.1465%" y="469" width="0.0284%" height="15" fill="rgb(213,154,26)" fg:x="1489800" fg:w="680"/><text x="62.3965%" y="479.50"></text></g><g><title>btrfs_unlink (403,521 samples, 16.83%)</title><rect x="45.3422%" y="517" width="16.8328%" height="15" fill="rgb(238,165,49)" fg:x="1086961" fg:w="403521"/><text x="45.5922%" y="527.50">btrfs_unlink</text></g><g><title>start_transaction (10,171 samples, 0.42%)</title><rect x="61.7507%" y="501" width="0.4243%" height="15" fill="rgb(248,91,46)" fg:x="1480311" fg:w="10171"/><text x="62.0007%" y="511.50"></text></g><g><title>wait_current_trans (1,000 samples, 0.04%)</title><rect x="62.1333%" y="485" width="0.0417%" height="15" fill="rgb(244,21,52)" fg:x="1489482" fg:w="1000"/><text x="62.3833%" y="495.50"></text></g><g><title>_raw_spin_lock (300 samples, 0.01%)</title><rect x="62.1808%" y="501" width="0.0125%" height="15" fill="rgb(247,122,20)" fg:x="1490622" fg:w="300"/><text x="62.4308%" y="511.50"></text></g><g><title>d_delete (445 samples, 0.02%)</title><rect x="62.1750%" y="517" width="0.0186%" height="15" fill="rgb(218,27,9)" fg:x="1490482" fg:w="445"/><text x="62.4250%" y="527.50"></text></g><g><title>__srcu_read_lock (713 samples, 0.03%)</title><rect x="62.2470%" y="469" width="0.0297%" height="15" fill="rgb(246,7,6)" fg:x="1492207" fg:w="713"/><text x="62.4970%" y="479.50"></text></g><g><title>dentry_unlink_inode (2,189 samples, 0.09%)</title><rect x="62.1936%" y="517" width="0.0913%" height="15" fill="rgb(227,135,54)" fg:x="1490927" fg:w="2189"/><text x="62.4436%" y="527.50"></text></g><g><title>fsnotify_destroy_marks (1,394 samples, 0.06%)</title><rect x="62.2267%" y="501" width="0.0582%" height="15" fill="rgb(247,14,11)" fg:x="1491722" fg:w="1394"/><text x="62.4767%" y="511.50"></text></g><g><title>fsnotify_grab_connector (1,144 samples, 0.05%)</title><rect x="62.2372%" y="485" width="0.0477%" height="15" fill="rgb(206,149,34)" fg:x="1491972" fg:w="1144"/><text x="62.4872%" y="495.50"></text></g><g><title>down_write (1,077 samples, 0.04%)</title><rect x="62.2849%" y="517" width="0.0449%" height="15" fill="rgb(227,228,4)" fg:x="1493116" fg:w="1077"/><text x="62.5349%" y="527.50"></text></g><g><title>fsnotify (1,406 samples, 0.06%)</title><rect x="62.3298%" y="517" width="0.0587%" height="15" fill="rgb(238,218,28)" fg:x="1494193" fg:w="1406"/><text x="62.5798%" y="527.50"></text></g><g><title>ihold (290 samples, 0.01%)</title><rect x="62.3884%" y="517" width="0.0121%" height="15" fill="rgb(252,86,40)" fg:x="1495599" fg:w="290"/><text x="62.6384%" y="527.50"></text></g><g><title>_atomic_dec_and_lock (556 samples, 0.02%)</title><rect x="62.4096%" y="501" width="0.0232%" height="15" fill="rgb(251,225,11)" fg:x="1496106" fg:w="556"/><text x="62.6596%" y="511.50"></text></g><g><title>iput.part.0 (710 samples, 0.03%)</title><rect x="62.4032%" y="517" width="0.0296%" height="15" fill="rgb(206,46,49)" fg:x="1495953" fg:w="710"/><text x="62.6532%" y="527.50"></text></g><g><title>btrfs_permission (542 samples, 0.02%)</title><rect x="62.4530%" y="485" width="0.0226%" height="15" fill="rgb(245,128,24)" fg:x="1497146" fg:w="542"/><text x="62.7030%" y="495.50"></text></g><g><title>inode_permission.part.0 (810 samples, 0.03%)</title><rect x="62.4438%" y="501" width="0.0338%" height="15" fill="rgb(219,177,34)" fg:x="1496925" fg:w="810"/><text x="62.6938%" y="511.50"></text></g><g><title>may_delete (1,091 samples, 0.05%)</title><rect x="62.4328%" y="517" width="0.0455%" height="15" fill="rgb(218,60,48)" fg:x="1496663" fg:w="1091"/><text x="62.6828%" y="527.50"></text></g><g><title>do_unlinkat (1,129,531 samples, 47.12%)</title><rect x="15.3770%" y="549" width="47.1180%" height="15" fill="rgb(221,11,5)" fg:x="368623" fg:w="1129531"/><text x="15.6270%" y="559.50">do_unlinkat</text></g><g><title>vfs_unlink (412,021 samples, 17.19%)</title><rect x="45.3077%" y="533" width="17.1873%" height="15" fill="rgb(220,148,13)" fg:x="1086133" fg:w="412021"/><text x="45.5577%" y="543.50">vfs_unlink</text></g><g><title>up_write (354 samples, 0.01%)</title><rect x="62.4803%" y="517" width="0.0148%" height="15" fill="rgb(210,16,3)" fg:x="1497800" fg:w="354"/><text x="62.7303%" y="527.50"></text></g><g><title>do_syscall_64 (1,242,935 samples, 51.85%)</title><rect x="10.6556%" y="565" width="51.8486%" height="15" fill="rgb(236,80,2)" fg:x="255440" fg:w="1242935"/><text x="10.9056%" y="575.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (1,245,535 samples, 51.96%)</title><rect x="10.6370%" y="581" width="51.9571%" height="15" fill="rgb(239,129,19)" fg:x="254995" fg:w="1245535"/><text x="10.8870%" y="591.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (2,155 samples, 0.09%)</title><rect x="62.5042%" y="565" width="0.0899%" height="15" fill="rgb(220,106,35)" fg:x="1498375" fg:w="2155"/><text x="62.7542%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,835 samples, 0.08%)</title><rect x="62.5176%" y="549" width="0.0765%" height="15" fill="rgb(252,139,45)" fg:x="1498695" fg:w="1835"/><text x="62.7676%" y="559.50"></text></g><g><title>switch_fpu_return (1,523 samples, 0.06%)</title><rect x="62.5306%" y="533" width="0.0635%" height="15" fill="rgb(229,8,36)" fg:x="1499007" fg:w="1523"/><text x="62.7806%" y="543.50"></text></g><g><title>copy_kernel_to_fpregs (675 samples, 0.03%)</title><rect x="62.5660%" y="517" width="0.0282%" height="15" fill="rgb(230,126,33)" fg:x="1499855" fg:w="675"/><text x="62.8160%" y="527.50"></text></g><g><title>syscall_return_via_sysret (408 samples, 0.02%)</title><rect x="62.5988%" y="581" width="0.0170%" height="15" fill="rgb(239,140,21)" fg:x="1500641" fg:w="408"/><text x="62.8488%" y="591.50"></text></g><g><title>__GI_unlinkat (1,248,951 samples, 52.10%)</title><rect x="10.5163%" y="597" width="52.0996%" height="15" fill="rgb(254,104,9)" fg:x="252100" fg:w="1248951"/><text x="10.7663%" y="607.50">__GI_unlinkat</text></g><g><title>__closedir (478 samples, 0.02%)</title><rect x="62.6166%" y="597" width="0.0199%" height="15" fill="rgb(239,52,14)" fg:x="1501068" fg:w="478"/><text x="62.8666%" y="607.50"></text></g><g><title>_int_free (360 samples, 0.02%)</title><rect x="62.6215%" y="581" width="0.0150%" height="15" fill="rgb(208,227,44)" fg:x="1501186" fg:w="360"/><text x="62.8715%" y="591.50"></text></g><g><title>__dirfd (573 samples, 0.02%)</title><rect x="62.6365%" y="597" width="0.0239%" height="15" fill="rgb(246,18,19)" fg:x="1501546" fg:w="573"/><text x="62.8865%" y="607.50"></text></g><g><title>__GI___fcntl64_nocancel (295 samples, 0.01%)</title><rect x="62.6641%" y="581" width="0.0123%" height="15" fill="rgb(235,228,25)" fg:x="1502208" fg:w="295"/><text x="62.9141%" y="591.50"></text></g><g><title>__fcntl64_nocancel_adjusted (287 samples, 0.01%)</title><rect x="62.6645%" y="565" width="0.0120%" height="15" fill="rgb(240,156,20)" fg:x="1502216" fg:w="287"/><text x="62.9145%" y="575.50"></text></g><g><title>__do_sys_newfstat (671 samples, 0.03%)</title><rect x="62.6819%" y="533" width="0.0280%" height="15" fill="rgb(224,8,20)" fg:x="1502633" fg:w="671"/><text x="62.9319%" y="543.50"></text></g><g><title>vfs_fstat (509 samples, 0.02%)</title><rect x="62.6886%" y="517" width="0.0212%" height="15" fill="rgb(214,12,52)" fg:x="1502795" fg:w="509"/><text x="62.9386%" y="527.50"></text></g><g><title>do_syscall_64 (720 samples, 0.03%)</title><rect x="62.6806%" y="549" width="0.0300%" height="15" fill="rgb(211,220,47)" fg:x="1502602" fg:w="720"/><text x="62.9306%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (749 samples, 0.03%)</title><rect x="62.6801%" y="565" width="0.0312%" height="15" fill="rgb(250,173,5)" fg:x="1502590" fg:w="749"/><text x="62.9301%" y="575.50"></text></g><g><title>__GI___fxstat (846 samples, 0.04%)</title><rect x="62.6764%" y="581" width="0.0353%" height="15" fill="rgb(250,125,52)" fg:x="1502503" fg:w="846"/><text x="62.9264%" y="591.50"></text></g><g><title>_int_malloc (602 samples, 0.03%)</title><rect x="62.7288%" y="549" width="0.0251%" height="15" fill="rgb(209,133,18)" fg:x="1503757" fg:w="602"/><text x="62.9788%" y="559.50"></text></g><g><title>__GI___libc_malloc (799 samples, 0.03%)</title><rect x="62.7206%" y="565" width="0.0333%" height="15" fill="rgb(216,173,22)" fg:x="1503562" fg:w="799"/><text x="62.9706%" y="575.50"></text></g><g><title>__fdopendir (2,207 samples, 0.09%)</title><rect x="62.6638%" y="597" width="0.0921%" height="15" fill="rgb(205,3,22)" fg:x="1502199" fg:w="2207"/><text x="62.9138%" y="607.50"></text></g><g><title>__alloc_dir (1,057 samples, 0.04%)</title><rect x="62.7117%" y="581" width="0.0441%" height="15" fill="rgb(248,22,20)" fg:x="1503349" fg:w="1057"/><text x="62.9617%" y="591.50"></text></g><g><title>memcg_slab_post_alloc_hook (252 samples, 0.01%)</title><rect x="62.8060%" y="437" width="0.0105%" height="15" fill="rgb(233,6,29)" fg:x="1505609" fg:w="252"/><text x="63.0560%" y="447.50"></text></g><g><title>kmem_cache_alloc (815 samples, 0.03%)</title><rect x="62.7995%" y="453" width="0.0340%" height="15" fill="rgb(240,22,54)" fg:x="1505454" fg:w="815"/><text x="63.0495%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (397 samples, 0.02%)</title><rect x="62.8170%" y="437" width="0.0166%" height="15" fill="rgb(231,133,32)" fg:x="1505872" fg:w="397"/><text x="63.0670%" y="447.50"></text></g><g><title>__alloc_file (1,160 samples, 0.05%)</title><rect x="62.7963%" y="469" width="0.0484%" height="15" fill="rgb(248,193,4)" fg:x="1505376" fg:w="1160"/><text x="63.0463%" y="479.50"></text></g><g><title>security_file_alloc (267 samples, 0.01%)</title><rect x="62.8335%" y="453" width="0.0111%" height="15" fill="rgb(211,178,46)" fg:x="1506269" fg:w="267"/><text x="63.0835%" y="463.50"></text></g><g><title>alloc_empty_file (1,214 samples, 0.05%)</title><rect x="62.7950%" y="485" width="0.0506%" height="15" fill="rgb(224,5,42)" fg:x="1505346" fg:w="1214"/><text x="63.0450%" y="495.50"></text></g><g><title>btrfs_opendir (632 samples, 0.03%)</title><rect x="62.8586%" y="469" width="0.0264%" height="15" fill="rgb(239,176,25)" fg:x="1506869" fg:w="632"/><text x="63.1086%" y="479.50"></text></g><g><title>kmem_cache_alloc_trace (555 samples, 0.02%)</title><rect x="62.8618%" y="453" width="0.0232%" height="15" fill="rgb(245,187,50)" fg:x="1506946" fg:w="555"/><text x="63.1118%" y="463.50"></text></g><g><title>security_file_open (428 samples, 0.02%)</title><rect x="62.8937%" y="469" width="0.0179%" height="15" fill="rgb(248,24,15)" fg:x="1507712" fg:w="428"/><text x="63.1437%" y="479.50"></text></g><g><title>do_dentry_open (1,443 samples, 0.06%)</title><rect x="62.8516%" y="485" width="0.0602%" height="15" fill="rgb(205,166,13)" fg:x="1506701" fg:w="1443"/><text x="63.1016%" y="495.50"></text></g><g><title>do_filp_open (3,904 samples, 0.16%)</title><rect x="62.7869%" y="517" width="0.1629%" height="15" fill="rgb(208,114,23)" fg:x="1505150" fg:w="3904"/><text x="63.0369%" y="527.50"></text></g><g><title>path_openat (3,841 samples, 0.16%)</title><rect x="62.7895%" y="501" width="0.1602%" height="15" fill="rgb(239,127,18)" fg:x="1505213" fg:w="3841"/><text x="63.0395%" y="511.50"></text></g><g><title>kmem_cache_alloc (245 samples, 0.01%)</title><rect x="62.9569%" y="501" width="0.0102%" height="15" fill="rgb(219,154,28)" fg:x="1509227" fg:w="245"/><text x="63.2069%" y="511.50"></text></g><g><title>getname_flags.part.0 (543 samples, 0.02%)</title><rect x="62.9565%" y="517" width="0.0227%" height="15" fill="rgb(225,157,23)" fg:x="1509216" fg:w="543"/><text x="63.2065%" y="527.50"></text></g><g><title>strncpy_from_user (287 samples, 0.01%)</title><rect x="62.9672%" y="501" width="0.0120%" height="15" fill="rgb(219,8,6)" fg:x="1509472" fg:w="287"/><text x="63.2172%" y="511.50"></text></g><g><title>__x64_sys_openat (5,139 samples, 0.21%)</title><rect x="62.7680%" y="549" width="0.2144%" height="15" fill="rgb(212,47,6)" fg:x="1504698" fg:w="5139"/><text x="63.0180%" y="559.50"></text></g><g><title>do_sys_openat2 (5,086 samples, 0.21%)</title><rect x="62.7702%" y="533" width="0.2122%" height="15" fill="rgb(224,190,4)" fg:x="1504751" fg:w="5086"/><text x="63.0202%" y="543.50"></text></g><g><title>do_syscall_64 (5,209 samples, 0.22%)</title><rect x="62.7658%" y="565" width="0.2173%" height="15" fill="rgb(239,183,29)" fg:x="1504646" fg:w="5209"/><text x="63.0158%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5,261 samples, 0.22%)</title><rect x="62.7652%" y="581" width="0.2195%" height="15" fill="rgb(213,57,7)" fg:x="1504630" fg:w="5261"/><text x="63.0152%" y="591.50"></text></g><g><title>__libc_openat64 (5,501 samples, 0.23%)</title><rect x="62.7566%" y="597" width="0.2295%" height="15" fill="rgb(216,148,1)" fg:x="1504425" fg:w="5501"/><text x="63.0066%" y="607.50"></text></g><g><title>crc32c_pcl_intel_update (323 samples, 0.01%)</title><rect x="63.0207%" y="581" width="0.0135%" height="15" fill="rgb(236,182,29)" fg:x="1510755" fg:w="323"/><text x="63.2707%" y="591.50"></text></g><g><title>entry_SYSCALL_64 (500 samples, 0.02%)</title><rect x="63.0342%" y="581" width="0.0209%" height="15" fill="rgb(244,120,48)" fg:x="1511078" fg:w="500"/><text x="63.2842%" y="591.50"></text></g><g><title>btrfs_dentry_delete (308 samples, 0.01%)</title><rect x="63.1538%" y="517" width="0.0128%" height="15" fill="rgb(206,71,34)" fg:x="1513946" fg:w="308"/><text x="63.4038%" y="527.50"></text></g><g><title>__list_add_valid (545 samples, 0.02%)</title><rect x="63.2308%" y="485" width="0.0227%" height="15" fill="rgb(242,32,6)" fg:x="1515791" fg:w="545"/><text x="63.4808%" y="495.50"></text></g><g><title>_raw_spin_lock (723 samples, 0.03%)</title><rect x="63.2535%" y="485" width="0.0302%" height="15" fill="rgb(241,35,3)" fg:x="1516336" fg:w="723"/><text x="63.5035%" y="495.50"></text></g><g><title>d_lru_add (3,177 samples, 0.13%)</title><rect x="63.1666%" y="517" width="0.1325%" height="15" fill="rgb(222,62,19)" fg:x="1514254" fg:w="3177"/><text x="63.4166%" y="527.50"></text></g><g><title>list_lru_add (2,922 samples, 0.12%)</title><rect x="63.1773%" y="501" width="0.1219%" height="15" fill="rgb(223,110,41)" fg:x="1514509" fg:w="2922"/><text x="63.4273%" y="511.50"></text></g><g><title>mem_cgroup_from_obj (366 samples, 0.02%)</title><rect x="63.2839%" y="485" width="0.0153%" height="15" fill="rgb(208,224,4)" fg:x="1517065" fg:w="366"/><text x="63.5339%" y="495.50"></text></g><g><title>lockref_put_or_lock (609 samples, 0.03%)</title><rect x="63.2992%" y="517" width="0.0254%" height="15" fill="rgb(241,137,19)" fg:x="1517431" fg:w="609"/><text x="63.5492%" y="527.50"></text></g><g><title>dput (4,813 samples, 0.20%)</title><rect x="63.1249%" y="533" width="0.2008%" height="15" fill="rgb(244,24,17)" fg:x="1513254" fg:w="4813"/><text x="63.3749%" y="543.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (397 samples, 0.02%)</title><rect x="63.4074%" y="437" width="0.0166%" height="15" fill="rgb(245,178,49)" fg:x="1520026" fg:w="397"/><text x="63.6574%" y="447.50"></text></g><g><title>_raw_spin_lock (377 samples, 0.02%)</title><rect x="63.4653%" y="421" width="0.0157%" height="15" fill="rgb(219,160,38)" fg:x="1521414" fg:w="377"/><text x="63.7153%" y="431.50"></text></g><g><title>free_extent_buffer.part.0 (1,349 samples, 0.06%)</title><rect x="63.4252%" y="437" width="0.0563%" height="15" fill="rgb(228,137,14)" fg:x="1520452" fg:w="1349"/><text x="63.6752%" y="447.50"></text></g><g><title>btrfs_free_path (2,464 samples, 0.10%)</title><rect x="63.3933%" y="469" width="0.1028%" height="15" fill="rgb(237,134,11)" fg:x="1519687" fg:w="2464"/><text x="63.6433%" y="479.50"></text></g><g><title>btrfs_release_path (2,344 samples, 0.10%)</title><rect x="63.3983%" y="453" width="0.0978%" height="15" fill="rgb(211,126,44)" fg:x="1519807" fg:w="2344"/><text x="63.6483%" y="463.50"></text></g><g><title>release_extent_buffer (350 samples, 0.01%)</title><rect x="63.4815%" y="437" width="0.0146%" height="15" fill="rgb(226,171,33)" fg:x="1521801" fg:w="350"/><text x="63.7315%" y="447.50"></text></g><g><title>_raw_read_lock (557 samples, 0.02%)</title><rect x="63.6294%" y="405" width="0.0232%" height="15" fill="rgb(253,99,13)" fg:x="1525348" fg:w="557"/><text x="63.8794%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (2,514 samples, 0.10%)</title><rect x="63.6586%" y="389" width="0.1049%" height="15" fill="rgb(244,48,7)" fg:x="1526048" fg:w="2514"/><text x="63.9086%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,409 samples, 0.10%)</title><rect x="63.6630%" y="373" width="0.1005%" height="15" fill="rgb(244,217,54)" fg:x="1526153" fg:w="2409"/><text x="63.9130%" y="383.50"></text></g><g><title>finish_wait (2,627 samples, 0.11%)</title><rect x="63.6539%" y="405" width="0.1096%" height="15" fill="rgb(224,15,18)" fg:x="1525936" fg:w="2627"/><text x="63.9039%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (6,728 samples, 0.28%)</title><rect x="63.7899%" y="389" width="0.2807%" height="15" fill="rgb(244,99,12)" fg:x="1529194" fg:w="6728"/><text x="64.0399%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,409 samples, 0.27%)</title><rect x="63.8032%" y="373" width="0.2673%" height="15" fill="rgb(233,226,8)" fg:x="1529513" fg:w="6409"/><text x="64.0532%" y="383.50"></text></g><g><title>prepare_to_wait_event (7,477 samples, 0.31%)</title><rect x="63.7641%" y="405" width="0.3119%" height="15" fill="rgb(229,211,3)" fg:x="1528576" fg:w="7477"/><text x="64.0141%" y="415.50"></text></g><g><title>queued_read_lock_slowpath (8,044 samples, 0.34%)</title><rect x="64.0760%" y="405" width="0.3356%" height="15" fill="rgb(216,140,21)" fg:x="1536053" fg:w="8044"/><text x="64.3260%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,002 samples, 0.25%)</title><rect x="64.1612%" y="389" width="0.2504%" height="15" fill="rgb(234,122,30)" fg:x="1538095" fg:w="6002"/><text x="64.4112%" y="399.50"></text></g><g><title>update_curr (375 samples, 0.02%)</title><rect x="64.4605%" y="341" width="0.0156%" height="15" fill="rgb(236,25,46)" fg:x="1545272" fg:w="375"/><text x="64.7105%" y="351.50"></text></g><g><title>dequeue_entity (1,110 samples, 0.05%)</title><rect x="64.4449%" y="357" width="0.0463%" height="15" fill="rgb(217,52,54)" fg:x="1544897" fg:w="1110"/><text x="64.6949%" y="367.50"></text></g><g><title>update_load_avg (360 samples, 0.02%)</title><rect x="64.4762%" y="341" width="0.0150%" height="15" fill="rgb(222,29,26)" fg:x="1545647" fg:w="360"/><text x="64.7262%" y="351.50"></text></g><g><title>dequeue_task_fair (1,352 samples, 0.06%)</title><rect x="64.4375%" y="373" width="0.0564%" height="15" fill="rgb(216,177,29)" fg:x="1544719" fg:w="1352"/><text x="64.6875%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (1,959 samples, 0.08%)</title><rect x="64.5031%" y="357" width="0.0817%" height="15" fill="rgb(247,136,51)" fg:x="1546293" fg:w="1959"/><text x="64.7531%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,897 samples, 0.08%)</title><rect x="64.5057%" y="341" width="0.0791%" height="15" fill="rgb(231,47,47)" fg:x="1546355" fg:w="1897"/><text x="64.7557%" y="351.50"></text></g><g><title>native_write_msr (1,871 samples, 0.08%)</title><rect x="64.5068%" y="325" width="0.0780%" height="15" fill="rgb(211,192,36)" fg:x="1546381" fg:w="1871"/><text x="64.7568%" y="335.50"></text></g><g><title>finish_task_switch (2,289 samples, 0.10%)</title><rect x="64.4939%" y="373" width="0.0955%" height="15" fill="rgb(229,156,32)" fg:x="1546071" fg:w="2289"/><text x="64.7439%" y="383.50"></text></g><g><title>pick_next_task_idle (247 samples, 0.01%)</title><rect x="64.5993%" y="373" width="0.0103%" height="15" fill="rgb(248,213,20)" fg:x="1548598" fg:w="247"/><text x="64.8493%" y="383.50"></text></g><g><title>psi_task_change (996 samples, 0.04%)</title><rect x="64.6096%" y="373" width="0.0415%" height="15" fill="rgb(217,64,7)" fg:x="1548845" fg:w="996"/><text x="64.8596%" y="383.50"></text></g><g><title>psi_group_change (831 samples, 0.03%)</title><rect x="64.6165%" y="357" width="0.0347%" height="15" fill="rgb(232,142,8)" fg:x="1549010" fg:w="831"/><text x="64.8665%" y="367.50"></text></g><g><title>__btrfs_tree_read_lock (25,387 samples, 1.06%)</title><rect x="63.6045%" y="421" width="1.0590%" height="15" fill="rgb(224,92,44)" fg:x="1524751" fg:w="25387"/><text x="63.8545%" y="431.50"></text></g><g><title>schedule (6,041 samples, 0.25%)</title><rect x="64.4115%" y="405" width="0.2520%" height="15" fill="rgb(214,169,17)" fg:x="1544097" fg:w="6041"/><text x="64.6615%" y="415.50"></text></g><g><title>__schedule (5,982 samples, 0.25%)</title><rect x="64.4140%" y="389" width="0.2495%" height="15" fill="rgb(210,59,37)" fg:x="1544156" fg:w="5982"/><text x="64.6640%" y="399.50"></text></g><g><title>btrfs_root_node (1,294 samples, 0.05%)</title><rect x="64.6635%" y="421" width="0.0540%" height="15" fill="rgb(214,116,48)" fg:x="1550138" fg:w="1294"/><text x="64.9135%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (26,929 samples, 1.12%)</title><rect x="63.5942%" y="437" width="1.1233%" height="15" fill="rgb(244,191,6)" fg:x="1524504" fg:w="26929"/><text x="63.8442%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (309 samples, 0.01%)</title><rect x="64.7325%" y="405" width="0.0129%" height="15" fill="rgb(241,50,52)" fg:x="1551791" fg:w="309"/><text x="64.9825%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (248 samples, 0.01%)</title><rect x="64.7350%" y="389" width="0.0103%" height="15" fill="rgb(236,75,39)" fg:x="1551852" fg:w="248"/><text x="64.9850%" y="399.50"></text></g><g><title>prepare_to_wait_event (425 samples, 0.02%)</title><rect x="64.7284%" y="421" width="0.0177%" height="15" fill="rgb(236,99,0)" fg:x="1551693" fg:w="425"/><text x="64.9784%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (287 samples, 0.01%)</title><rect x="64.7461%" y="421" width="0.0120%" height="15" fill="rgb(207,202,15)" fg:x="1552118" fg:w="287"/><text x="64.9961%" y="431.50"></text></g><g><title>dequeue_entity (298 samples, 0.01%)</title><rect x="64.7671%" y="373" width="0.0124%" height="15" fill="rgb(233,207,14)" fg:x="1552622" fg:w="298"/><text x="65.0171%" y="383.50"></text></g><g><title>dequeue_task_fair (356 samples, 0.01%)</title><rect x="64.7656%" y="389" width="0.0149%" height="15" fill="rgb(226,27,51)" fg:x="1552586" fg:w="356"/><text x="65.0156%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (397 samples, 0.02%)</title><rect x="64.7827%" y="373" width="0.0166%" height="15" fill="rgb(206,104,42)" fg:x="1552994" fg:w="397"/><text x="65.0327%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (384 samples, 0.02%)</title><rect x="64.7832%" y="357" width="0.0160%" height="15" fill="rgb(212,225,4)" fg:x="1553007" fg:w="384"/><text x="65.0332%" y="367.50"></text></g><g><title>native_write_msr (378 samples, 0.02%)</title><rect x="64.7835%" y="341" width="0.0158%" height="15" fill="rgb(233,96,42)" fg:x="1553013" fg:w="378"/><text x="65.0335%" y="351.50"></text></g><g><title>finish_task_switch (471 samples, 0.02%)</title><rect x="64.7805%" y="389" width="0.0196%" height="15" fill="rgb(229,21,32)" fg:x="1552942" fg:w="471"/><text x="65.0305%" y="399.50"></text></g><g><title>psi_task_change (264 samples, 0.01%)</title><rect x="64.8072%" y="389" width="0.0110%" height="15" fill="rgb(226,216,24)" fg:x="1553583" fg:w="264"/><text x="65.0572%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (2,496 samples, 0.10%)</title><rect x="64.7175%" y="437" width="0.1041%" height="15" fill="rgb(221,163,17)" fg:x="1551433" fg:w="2496"/><text x="64.9675%" y="447.50"></text></g><g><title>schedule (1,524 samples, 0.06%)</title><rect x="64.7581%" y="421" width="0.0636%" height="15" fill="rgb(216,216,42)" fg:x="1552405" fg:w="1524"/><text x="65.0081%" y="431.50"></text></g><g><title>__schedule (1,493 samples, 0.06%)</title><rect x="64.7594%" y="405" width="0.0623%" height="15" fill="rgb(240,118,7)" fg:x="1552436" fg:w="1493"/><text x="65.0094%" y="415.50"></text></g><g><title>select_task_rq_fair (311 samples, 0.01%)</title><rect x="64.8379%" y="373" width="0.0130%" height="15" fill="rgb(221,67,37)" fg:x="1554318" fg:w="311"/><text x="65.0879%" y="383.50"></text></g><g><title>enqueue_entity (286 samples, 0.01%)</title><rect x="64.8550%" y="341" width="0.0119%" height="15" fill="rgb(241,32,44)" fg:x="1554727" fg:w="286"/><text x="65.1050%" y="351.50"></text></g><g><title>enqueue_task_fair (359 samples, 0.01%)</title><rect x="64.8530%" y="357" width="0.0150%" height="15" fill="rgb(235,204,43)" fg:x="1554679" fg:w="359"/><text x="65.1030%" y="367.50"></text></g><g><title>ttwu_do_activate (677 samples, 0.03%)</title><rect x="64.8519%" y="373" width="0.0282%" height="15" fill="rgb(213,116,10)" fg:x="1554654" fg:w="677"/><text x="65.1019%" y="383.50"></text></g><g><title>psi_task_change (292 samples, 0.01%)</title><rect x="64.8680%" y="357" width="0.0122%" height="15" fill="rgb(239,15,48)" fg:x="1555039" fg:w="292"/><text x="65.1180%" y="367.50"></text></g><g><title>psi_group_change (255 samples, 0.01%)</title><rect x="64.8695%" y="341" width="0.0106%" height="15" fill="rgb(207,123,36)" fg:x="1555076" fg:w="255"/><text x="65.1195%" y="351.50"></text></g><g><title>__wake_up_common (1,531 samples, 0.06%)</title><rect x="64.8219%" y="421" width="0.0639%" height="15" fill="rgb(209,103,30)" fg:x="1553934" fg:w="1531"/><text x="65.0719%" y="431.50"></text></g><g><title>autoremove_wake_function (1,502 samples, 0.06%)</title><rect x="64.8231%" y="405" width="0.0627%" height="15" fill="rgb(238,100,19)" fg:x="1553963" fg:w="1502"/><text x="65.0731%" y="415.50"></text></g><g><title>try_to_wake_up (1,456 samples, 0.06%)</title><rect x="64.8250%" y="389" width="0.0607%" height="15" fill="rgb(244,30,14)" fg:x="1554009" fg:w="1456"/><text x="65.0750%" y="399.50"></text></g><g><title>__wake_up_common_lock (1,572 samples, 0.07%)</title><rect x="64.8217%" y="437" width="0.0656%" height="15" fill="rgb(249,174,6)" fg:x="1553929" fg:w="1572"/><text x="65.0717%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (1,102 samples, 0.05%)</title><rect x="64.8956%" y="437" width="0.0460%" height="15" fill="rgb(235,213,41)" fg:x="1555701" fg:w="1102"/><text x="65.1456%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_read (633 samples, 0.03%)</title><rect x="64.9152%" y="421" width="0.0264%" height="15" fill="rgb(213,118,6)" fg:x="1556170" fg:w="633"/><text x="65.1652%" y="431.50"></text></g><g><title>_raw_read_lock (428 samples, 0.02%)</title><rect x="64.9573%" y="421" width="0.0179%" height="15" fill="rgb(235,44,51)" fg:x="1557181" fg:w="428"/><text x="65.2073%" y="431.50"></text></g><g><title>btrfs_tree_read_lock_atomic (2,810 samples, 0.12%)</title><rect x="64.9416%" y="437" width="0.1172%" height="15" fill="rgb(217,9,53)" fg:x="1556803" fg:w="2810"/><text x="65.1916%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (2,001 samples, 0.08%)</title><rect x="64.9753%" y="421" width="0.0835%" height="15" fill="rgb(237,172,34)" fg:x="1557612" fg:w="2001"/><text x="65.2253%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (648 samples, 0.03%)</title><rect x="65.0317%" y="405" width="0.0270%" height="15" fill="rgb(206,206,11)" fg:x="1558965" fg:w="648"/><text x="65.2817%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (924 samples, 0.04%)</title><rect x="65.0588%" y="437" width="0.0385%" height="15" fill="rgb(214,149,29)" fg:x="1559613" fg:w="924"/><text x="65.3088%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (4,618 samples, 0.19%)</title><rect x="65.1008%" y="437" width="0.1926%" height="15" fill="rgb(208,123,3)" fg:x="1560621" fg:w="4618"/><text x="65.3508%" y="447.50"></text></g><g><title>btrfs_buffer_uptodate (592 samples, 0.02%)</title><rect x="65.3219%" y="421" width="0.0247%" height="15" fill="rgb(229,126,4)" fg:x="1565920" fg:w="592"/><text x="65.5719%" y="431.50"></text></g><g><title>verify_parent_transid (443 samples, 0.02%)</title><rect x="65.3281%" y="405" width="0.0185%" height="15" fill="rgb(222,92,36)" fg:x="1566069" fg:w="443"/><text x="65.5781%" y="415.50"></text></g><g><title>btrfs_get_64 (763 samples, 0.03%)</title><rect x="65.3466%" y="421" width="0.0318%" height="15" fill="rgb(216,39,41)" fg:x="1566512" fg:w="763"/><text x="65.5966%" y="431.50"></text></g><g><title>__radix_tree_lookup (2,724 samples, 0.11%)</title><rect x="65.4347%" y="405" width="0.1136%" height="15" fill="rgb(253,127,28)" fg:x="1568624" fg:w="2724"/><text x="65.6847%" y="415.50"></text></g><g><title>mark_page_accessed (932 samples, 0.04%)</title><rect x="65.5606%" y="389" width="0.0389%" height="15" fill="rgb(249,152,51)" fg:x="1571643" fg:w="932"/><text x="65.8106%" y="399.50"></text></g><g><title>mark_extent_buffer_accessed (1,220 samples, 0.05%)</title><rect x="65.5488%" y="405" width="0.0509%" height="15" fill="rgb(209,123,42)" fg:x="1571360" fg:w="1220"/><text x="65.7988%" y="415.50"></text></g><g><title>find_extent_buffer (5,043 samples, 0.21%)</title><rect x="65.3909%" y="421" width="0.2104%" height="15" fill="rgb(241,118,22)" fg:x="1567576" fg:w="5043"/><text x="65.6409%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (8,064 samples, 0.34%)</title><rect x="65.2935%" y="437" width="0.3364%" height="15" fill="rgb(208,25,7)" fg:x="1565239" fg:w="8064"/><text x="65.5435%" y="447.50"></text></g><g><title>read_extent_buffer (684 samples, 0.03%)</title><rect x="65.6013%" y="421" width="0.0285%" height="15" fill="rgb(243,144,39)" fg:x="1572619" fg:w="684"/><text x="65.8513%" y="431.50"></text></g><g><title>btrfs_search_slot (51,449 samples, 2.15%)</title><rect x="63.5107%" y="453" width="2.1462%" height="15" fill="rgb(250,50,5)" fg:x="1522503" fg:w="51449"/><text x="63.7607%" y="463.50">b..</text></g><g><title>unlock_up (648 samples, 0.03%)</title><rect x="65.6299%" y="437" width="0.0270%" height="15" fill="rgb(207,67,11)" fg:x="1573304" fg:w="648"/><text x="65.8799%" y="447.50"></text></g><g><title>btrfs_lookup_dir_item (52,673 samples, 2.20%)</title><rect x="63.4961%" y="469" width="2.1972%" height="15" fill="rgb(245,204,40)" fg:x="1522151" fg:w="52673"/><text x="63.7461%" y="479.50">b..</text></g><g><title>crc32c (872 samples, 0.04%)</title><rect x="65.6569%" y="453" width="0.0364%" height="15" fill="rgb(238,228,24)" fg:x="1573952" fg:w="872"/><text x="65.9069%" y="463.50"></text></g><g><title>crypto_shash_update (476 samples, 0.02%)</title><rect x="65.6734%" y="437" width="0.0199%" height="15" fill="rgb(217,116,22)" fg:x="1574348" fg:w="476"/><text x="65.9234%" y="447.50"></text></g><g><title>kmem_cache_alloc (956 samples, 0.04%)</title><rect x="65.6933%" y="469" width="0.0399%" height="15" fill="rgb(234,98,12)" fg:x="1574824" fg:w="956"/><text x="65.9433%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (244 samples, 0.01%)</title><rect x="65.7230%" y="453" width="0.0102%" height="15" fill="rgb(242,170,50)" fg:x="1575536" fg:w="244"/><text x="65.9730%" y="463.50"></text></g><g><title>btrfs_lookup (57,691 samples, 2.41%)</title><rect x="63.3508%" y="501" width="2.4066%" height="15" fill="rgb(235,7,5)" fg:x="1518669" fg:w="57691"/><text x="63.6008%" y="511.50">bt..</text></g><g><title>btrfs_lookup_dentry (57,549 samples, 2.40%)</title><rect x="63.3567%" y="485" width="2.4006%" height="15" fill="rgb(241,114,28)" fg:x="1518811" fg:w="57549"/><text x="63.6067%" y="495.50">bt..</text></g><g><title>kmem_cache_free (580 samples, 0.02%)</title><rect x="65.7332%" y="469" width="0.0242%" height="15" fill="rgb(246,112,42)" fg:x="1575780" fg:w="580"/><text x="65.9832%" y="479.50"></text></g><g><title>d_set_d_op (407 samples, 0.02%)</title><rect x="65.7748%" y="469" width="0.0170%" height="15" fill="rgb(248,228,14)" fg:x="1576779" fg:w="407"/><text x="66.0248%" y="479.50"></text></g><g><title>allocate_slab (315 samples, 0.01%)</title><rect x="65.8344%" y="421" width="0.0131%" height="15" fill="rgb(208,133,18)" fg:x="1578207" fg:w="315"/><text x="66.0844%" y="431.50"></text></g><g><title>___slab_alloc (760 samples, 0.03%)</title><rect x="65.8191%" y="437" width="0.0317%" height="15" fill="rgb(207,35,49)" fg:x="1577839" fg:w="760"/><text x="66.0691%" y="447.50"></text></g><g><title>__slab_alloc (814 samples, 0.03%)</title><rect x="65.8170%" y="453" width="0.0340%" height="15" fill="rgb(205,68,36)" fg:x="1577789" fg:w="814"/><text x="66.0670%" y="463.50"></text></g><g><title>__mod_memcg_lruvec_state (403 samples, 0.02%)</title><rect x="65.9036%" y="437" width="0.0168%" height="15" fill="rgb(245,62,40)" fg:x="1579865" fg:w="403"/><text x="66.1536%" y="447.50"></text></g><g><title>__mod_memcg_state.part.0 (295 samples, 0.01%)</title><rect x="65.9081%" y="421" width="0.0123%" height="15" fill="rgb(228,27,24)" fg:x="1579973" fg:w="295"/><text x="66.1581%" y="431.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,759 samples, 0.07%)</title><rect x="65.8512%" y="453" width="0.0734%" height="15" fill="rgb(253,19,12)" fg:x="1578609" fg:w="1759"/><text x="66.1012%" y="463.50"></text></g><g><title>get_obj_cgroup_from_current (1,003 samples, 0.04%)</title><rect x="65.9445%" y="437" width="0.0418%" height="15" fill="rgb(232,28,20)" fg:x="1580845" fg:w="1003"/><text x="66.1945%" y="447.50"></text></g><g><title>obj_cgroup_charge (547 samples, 0.02%)</title><rect x="65.9863%" y="437" width="0.0228%" height="15" fill="rgb(218,35,51)" fg:x="1581848" fg:w="547"/><text x="66.2363%" y="447.50"></text></g><g><title>kmem_cache_alloc (5,221 samples, 0.22%)</title><rect x="65.7918%" y="469" width="0.2178%" height="15" fill="rgb(212,90,40)" fg:x="1577186" fg:w="5221"/><text x="66.0418%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,847 samples, 0.08%)</title><rect x="65.9326%" y="453" width="0.0770%" height="15" fill="rgb(220,172,12)" fg:x="1580560" fg:w="1847"/><text x="66.1826%" y="463.50"></text></g><g><title>__d_alloc (6,099 samples, 0.25%)</title><rect x="65.7614%" y="485" width="0.2544%" height="15" fill="rgb(226,159,20)" fg:x="1576456" fg:w="6099"/><text x="66.0114%" y="495.50"></text></g><g><title>__list_add_valid (249 samples, 0.01%)</title><rect x="66.0158%" y="485" width="0.0104%" height="15" fill="rgb(234,205,16)" fg:x="1582555" fg:w="249"/><text x="66.2658%" y="495.50"></text></g><g><title>d_alloc (6,655 samples, 0.28%)</title><rect x="65.7574%" y="501" width="0.2776%" height="15" fill="rgb(207,9,39)" fg:x="1576360" fg:w="6655"/><text x="66.0074%" y="511.50"></text></g><g><title>__d_rehash (449 samples, 0.02%)</title><rect x="66.0585%" y="469" width="0.0187%" height="15" fill="rgb(249,143,15)" fg:x="1583578" fg:w="449"/><text x="66.3085%" y="479.50"></text></g><g><title>__d_add (894 samples, 0.04%)</title><rect x="66.0475%" y="485" width="0.0373%" height="15" fill="rgb(253,133,29)" fg:x="1583316" fg:w="894"/><text x="66.2975%" y="495.50"></text></g><g><title>d_splice_alias (1,196 samples, 0.05%)</title><rect x="66.0350%" y="501" width="0.0499%" height="15" fill="rgb(221,187,0)" fg:x="1583015" fg:w="1196"/><text x="66.2850%" y="511.50"></text></g><g><title>__lookup_hash (67,365 samples, 2.81%)</title><rect x="63.3436%" y="517" width="2.8101%" height="15" fill="rgb(205,204,26)" fg:x="1518496" fg:w="67365"/><text x="63.5936%" y="527.50">__..</text></g><g><title>lookup_dcache (1,650 samples, 0.07%)</title><rect x="66.0849%" y="501" width="0.0688%" height="15" fill="rgb(224,68,54)" fg:x="1584211" fg:w="1650"/><text x="66.3349%" y="511.50"></text></g><g><title>d_lookup (1,597 samples, 0.07%)</title><rect x="66.0871%" y="485" width="0.0666%" height="15" fill="rgb(209,67,4)" fg:x="1584264" fg:w="1597"/><text x="66.3371%" y="495.50"></text></g><g><title>__d_lookup (1,399 samples, 0.06%)</title><rect x="66.0953%" y="469" width="0.0584%" height="15" fill="rgb(228,229,18)" fg:x="1584462" fg:w="1399"/><text x="66.3453%" y="479.50"></text></g><g><title>down_write (310 samples, 0.01%)</title><rect x="66.1537%" y="517" width="0.0129%" height="15" fill="rgb(231,89,13)" fg:x="1585862" fg:w="310"/><text x="66.4037%" y="527.50"></text></g><g><title>__legitimize_mnt (572 samples, 0.02%)</title><rect x="66.2289%" y="437" width="0.0239%" height="15" fill="rgb(210,182,18)" fg:x="1587664" fg:w="572"/><text x="66.4789%" y="447.50"></text></g><g><title>__legitimize_path (1,030 samples, 0.04%)</title><rect x="66.2179%" y="453" width="0.0430%" height="15" fill="rgb(240,105,2)" fg:x="1587399" fg:w="1030"/><text x="66.4679%" y="463.50"></text></g><g><title>legitimize_links (255 samples, 0.01%)</title><rect x="66.2608%" y="453" width="0.0106%" height="15" fill="rgb(207,170,50)" fg:x="1588429" fg:w="255"/><text x="66.5108%" y="463.50"></text></g><g><title>complete_walk (1,814 samples, 0.08%)</title><rect x="66.1982%" y="485" width="0.0757%" height="15" fill="rgb(232,133,24)" fg:x="1586928" fg:w="1814"/><text x="66.4482%" y="495.50"></text></g><g><title>try_to_unlazy (1,582 samples, 0.07%)</title><rect x="66.2079%" y="469" width="0.0660%" height="15" fill="rgb(235,166,27)" fg:x="1587160" fg:w="1582"/><text x="66.4579%" y="479.50"></text></g><g><title>btrfs_permission (261 samples, 0.01%)</title><rect x="66.6762%" y="453" width="0.0109%" height="15" fill="rgb(209,19,13)" fg:x="1598386" fg:w="261"/><text x="66.9262%" y="463.50"></text></g><g><title>inode_permission.part.0 (6,983 samples, 0.29%)</title><rect x="66.4572%" y="469" width="0.2913%" height="15" fill="rgb(226,79,39)" fg:x="1593137" fg:w="6983"/><text x="66.7072%" y="479.50"></text></g><g><title>generic_permission (1,472 samples, 0.06%)</title><rect x="66.6871%" y="453" width="0.0614%" height="15" fill="rgb(222,163,10)" fg:x="1598648" fg:w="1472"/><text x="66.9371%" y="463.50"></text></g><g><title>security_inode_permission (452 samples, 0.02%)</title><rect x="66.7485%" y="469" width="0.0189%" height="15" fill="rgb(214,44,19)" fg:x="1600120" fg:w="452"/><text x="66.9985%" y="479.50"></text></g><g><title>__d_lookup_rcu (10,429 samples, 0.44%)</title><rect x="66.8921%" y="437" width="0.4350%" height="15" fill="rgb(210,217,13)" fg:x="1603563" fg:w="10429"/><text x="67.1421%" y="447.50"></text></g><g><title>lookup_fast (11,821 samples, 0.49%)</title><rect x="66.8346%" y="453" width="0.4931%" height="15" fill="rgb(237,61,54)" fg:x="1602183" fg:w="11821"/><text x="67.0846%" y="463.50"></text></g><g><title>__lookup_mnt (324 samples, 0.01%)</title><rect x="67.3852%" y="437" width="0.0135%" height="15" fill="rgb(226,184,24)" fg:x="1615382" fg:w="324"/><text x="67.6352%" y="447.50"></text></g><g><title>link_path_walk.part.0 (26,983 samples, 1.13%)</title><rect x="66.2739%" y="485" width="1.1256%" height="15" fill="rgb(223,226,4)" fg:x="1588742" fg:w="26983"/><text x="66.5239%" y="495.50"></text></g><g><title>walk_component (15,153 samples, 0.63%)</title><rect x="66.7674%" y="469" width="0.6321%" height="15" fill="rgb(210,26,41)" fg:x="1600572" fg:w="15153"/><text x="67.0174%" y="479.50"></text></g><g><title>step_into (1,721 samples, 0.07%)</title><rect x="67.3277%" y="453" width="0.0718%" height="15" fill="rgb(220,221,6)" fg:x="1614004" fg:w="1721"/><text x="67.5777%" y="463.50"></text></g><g><title>path_init (2,009 samples, 0.08%)</title><rect x="67.3995%" y="485" width="0.0838%" height="15" fill="rgb(225,89,49)" fg:x="1615725" fg:w="2009"/><text x="67.6495%" y="495.50"></text></g><g><title>nd_jump_root (1,187 samples, 0.05%)</title><rect x="67.4338%" y="469" width="0.0495%" height="15" fill="rgb(218,70,45)" fg:x="1616547" fg:w="1187"/><text x="67.6838%" y="479.50"></text></g><g><title>set_root (916 samples, 0.04%)</title><rect x="67.4451%" y="453" width="0.0382%" height="15" fill="rgb(238,166,21)" fg:x="1616818" fg:w="916"/><text x="67.6951%" y="463.50"></text></g><g><title>filename_parentat (32,360 samples, 1.35%)</title><rect x="66.1667%" y="517" width="1.3499%" height="15" fill="rgb(224,141,44)" fg:x="1586172" fg:w="32360"/><text x="66.4167%" y="527.50"></text></g><g><title>path_parentat (31,815 samples, 1.33%)</title><rect x="66.1894%" y="501" width="1.3272%" height="15" fill="rgb(230,12,49)" fg:x="1586717" fg:w="31815"/><text x="66.4394%" y="511.50"></text></g><g><title>terminate_walk (798 samples, 0.03%)</title><rect x="67.4833%" y="485" width="0.0333%" height="15" fill="rgb(212,174,12)" fg:x="1617734" fg:w="798"/><text x="67.7333%" y="495.50"></text></g><g><title>kmem_cache_free (713 samples, 0.03%)</title><rect x="67.5166%" y="517" width="0.0297%" height="15" fill="rgb(246,67,9)" fg:x="1618532" fg:w="713"/><text x="67.7666%" y="527.50"></text></g><g><title>__mnt_want_write (371 samples, 0.02%)</title><rect x="67.5638%" y="501" width="0.0155%" height="15" fill="rgb(239,35,23)" fg:x="1619665" fg:w="371"/><text x="67.8138%" y="511.50"></text></g><g><title>mnt_want_write (907 samples, 0.04%)</title><rect x="67.5463%" y="517" width="0.0378%" height="15" fill="rgb(211,167,0)" fg:x="1619245" fg:w="907"/><text x="67.7963%" y="527.50"></text></g><g><title>filename_create (102,256 samples, 4.27%)</title><rect x="63.3257%" y="533" width="4.2656%" height="15" fill="rgb(225,119,45)" fg:x="1518067" fg:w="102256"/><text x="63.5757%" y="543.50">filen..</text></g><g><title>memset_erms (3,008 samples, 0.13%)</title><rect x="67.6647%" y="501" width="0.1255%" height="15" fill="rgb(210,162,6)" fg:x="1622084" fg:w="3008"/><text x="67.9147%" y="511.50"></text></g><g><title>kmem_cache_alloc (4,637 samples, 0.19%)</title><rect x="67.6159%" y="517" width="0.1934%" height="15" fill="rgb(208,118,35)" fg:x="1620914" fg:w="4637"/><text x="67.8659%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (459 samples, 0.02%)</title><rect x="67.7902%" y="501" width="0.0191%" height="15" fill="rgb(239,4,53)" fg:x="1625092" fg:w="459"/><text x="68.0402%" y="511.50"></text></g><g><title>__check_heap_object (509 samples, 0.02%)</title><rect x="67.9434%" y="485" width="0.0212%" height="15" fill="rgb(213,130,21)" fg:x="1628765" fg:w="509"/><text x="68.1934%" y="495.50"></text></g><g><title>__virt_addr_valid (1,040 samples, 0.04%)</title><rect x="67.9647%" y="485" width="0.0434%" height="15" fill="rgb(235,148,0)" fg:x="1629274" fg:w="1040"/><text x="68.2147%" y="495.50"></text></g><g><title>__check_object_size (2,424 samples, 0.10%)</title><rect x="67.9159%" y="501" width="0.1011%" height="15" fill="rgb(244,224,18)" fg:x="1628105" fg:w="2424"/><text x="68.1659%" y="511.50"></text></g><g><title>getname_flags.part.0 (10,060 samples, 0.42%)</title><rect x="67.5978%" y="533" width="0.4196%" height="15" fill="rgb(211,214,4)" fg:x="1620479" fg:w="10060"/><text x="67.8478%" y="543.50"></text></g><g><title>strncpy_from_user (4,988 samples, 0.21%)</title><rect x="67.8094%" y="517" width="0.2081%" height="15" fill="rgb(206,119,25)" fg:x="1625551" fg:w="4988"/><text x="68.0594%" y="527.50"></text></g><g><title>kmem_cache_free (953 samples, 0.04%)</title><rect x="68.0176%" y="533" width="0.0398%" height="15" fill="rgb(243,93,47)" fg:x="1630542" fg:w="953"/><text x="68.2676%" y="543.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (332 samples, 0.01%)</title><rect x="68.0435%" y="517" width="0.0138%" height="15" fill="rgb(224,194,6)" fg:x="1631163" fg:w="332"/><text x="68.2935%" y="527.50"></text></g><g><title>apparmor_path_symlink (625 samples, 0.03%)</title><rect x="68.0874%" y="517" width="0.0261%" height="15" fill="rgb(243,229,6)" fg:x="1632216" fg:w="625"/><text x="68.3374%" y="527.50"></text></g><g><title>security_path_symlink (2,245 samples, 0.09%)</title><rect x="68.0703%" y="533" width="0.0936%" height="15" fill="rgb(207,23,50)" fg:x="1631806" fg:w="2245"/><text x="68.3203%" y="543.50"></text></g><g><title>tomoyo_path_symlink (1,208 samples, 0.05%)</title><rect x="68.1135%" y="517" width="0.0504%" height="15" fill="rgb(253,192,32)" fg:x="1632843" fg:w="1208"/><text x="68.3635%" y="527.50"></text></g><g><title>tomoyo_path_perm (1,174 samples, 0.05%)</title><rect x="68.1150%" y="501" width="0.0490%" height="15" fill="rgb(213,21,6)" fg:x="1632877" fg:w="1174"/><text x="68.3650%" y="511.50"></text></g><g><title>tomoyo_init_request_info (842 samples, 0.04%)</title><rect x="68.1288%" y="485" width="0.0351%" height="15" fill="rgb(243,151,13)" fg:x="1633209" fg:w="842"/><text x="68.3788%" y="495.50"></text></g><g><title>tomoyo_domain (482 samples, 0.02%)</title><rect x="68.1438%" y="469" width="0.0201%" height="15" fill="rgb(233,165,41)" fg:x="1633569" fg:w="482"/><text x="68.3938%" y="479.50"></text></g><g><title>up_write (653 samples, 0.03%)</title><rect x="68.1639%" y="533" width="0.0272%" height="15" fill="rgb(246,176,45)" fg:x="1634051" fg:w="653"/><text x="68.4139%" y="543.50"></text></g><g><title>btrfs_create_pending_block_groups (365 samples, 0.02%)</title><rect x="68.3451%" y="485" width="0.0152%" height="15" fill="rgb(217,170,52)" fg:x="1638395" fg:w="365"/><text x="68.5951%" y="495.50"></text></g><g><title>_raw_spin_lock (1,448 samples, 0.06%)</title><rect x="68.4048%" y="453" width="0.0604%" height="15" fill="rgb(214,203,54)" fg:x="1639826" fg:w="1448"/><text x="68.6548%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (515 samples, 0.02%)</title><rect x="68.4438%" y="437" width="0.0215%" height="15" fill="rgb(248,215,49)" fg:x="1640759" fg:w="515"/><text x="68.6938%" y="447.50"></text></g><g><title>btrfs_trans_release_metadata (2,394 samples, 0.10%)</title><rect x="68.3763%" y="485" width="0.0999%" height="15" fill="rgb(208,46,10)" fg:x="1639142" fg:w="2394"/><text x="68.6263%" y="495.50"></text></g><g><title>btrfs_block_rsv_release (2,218 samples, 0.09%)</title><rect x="68.3836%" y="469" width="0.0925%" height="15" fill="rgb(254,5,31)" fg:x="1639318" fg:w="2218"/><text x="68.6336%" y="479.50"></text></g><g><title>__btrfs_end_transaction (5,473 samples, 0.23%)</title><rect x="68.2824%" y="501" width="0.2283%" height="15" fill="rgb(222,104,33)" fg:x="1636891" fg:w="5473"/><text x="68.5324%" y="511.50"></text></g><g><title>kmem_cache_free (827 samples, 0.03%)</title><rect x="68.4762%" y="485" width="0.0345%" height="15" fill="rgb(248,49,16)" fg:x="1641537" fg:w="827"/><text x="68.7262%" y="495.50"></text></g><g><title>__radix_tree_lookup (416 samples, 0.02%)</title><rect x="68.5392%" y="485" width="0.0174%" height="15" fill="rgb(232,198,41)" fg:x="1643047" fg:w="416"/><text x="68.7892%" y="495.50"></text></g><g><title>balance_dirty_pages_ratelimited (1,117 samples, 0.05%)</title><rect x="68.5109%" y="501" width="0.0466%" height="15" fill="rgb(214,125,3)" fg:x="1642369" fg:w="1117"/><text x="68.7609%" y="511.50"></text></g><g><title>btrfs_comp_cpu_keys (917 samples, 0.04%)</title><rect x="68.6719%" y="437" width="0.0383%" height="15" fill="rgb(229,220,28)" fg:x="1646228" fg:w="917"/><text x="68.9219%" y="447.50"></text></g><g><title>rb_insert_color (438 samples, 0.02%)</title><rect x="68.7101%" y="437" width="0.0183%" height="15" fill="rgb(222,64,37)" fg:x="1647145" fg:w="438"/><text x="68.9601%" y="447.50"></text></g><g><title>__btrfs_add_delayed_item (2,247 samples, 0.09%)</title><rect x="68.6347%" y="453" width="0.0937%" height="15" fill="rgb(249,184,13)" fg:x="1645337" fg:w="2247"/><text x="68.8847%" y="463.50"></text></g><g><title>__list_del_entry_valid (274 samples, 0.01%)</title><rect x="68.7480%" y="437" width="0.0114%" height="15" fill="rgb(252,176,6)" fg:x="1648052" fg:w="274"/><text x="68.9980%" y="447.50"></text></g><g><title>_raw_spin_lock (295 samples, 0.01%)</title><rect x="68.7599%" y="437" width="0.0123%" height="15" fill="rgb(228,153,7)" fg:x="1648338" fg:w="295"/><text x="69.0099%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,797 samples, 0.07%)</title><rect x="68.7285%" y="453" width="0.0750%" height="15" fill="rgb(242,193,5)" fg:x="1647584" fg:w="1797"/><text x="68.9785%" y="463.50"></text></g><g><title>mutex_unlock (549 samples, 0.02%)</title><rect x="68.7805%" y="437" width="0.0229%" height="15" fill="rgb(232,140,9)" fg:x="1648832" fg:w="549"/><text x="69.0305%" y="447.50"></text></g><g><title>__slab_alloc (273 samples, 0.01%)</title><rect x="68.8307%" y="437" width="0.0114%" height="15" fill="rgb(213,222,16)" fg:x="1650035" fg:w="273"/><text x="69.0807%" y="447.50"></text></g><g><title>__kmalloc (1,697 samples, 0.07%)</title><rect x="68.8034%" y="453" width="0.0708%" height="15" fill="rgb(222,75,50)" fg:x="1649381" fg:w="1697"/><text x="69.0534%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (427 samples, 0.02%)</title><rect x="68.8564%" y="437" width="0.0178%" height="15" fill="rgb(205,180,2)" fg:x="1650651" fg:w="427"/><text x="69.1064%" y="447.50"></text></g><g><title>mutex_spin_on_owner (1,261 samples, 0.05%)</title><rect x="68.8756%" y="437" width="0.0526%" height="15" fill="rgb(216,34,7)" fg:x="1651112" fg:w="1261"/><text x="69.1256%" y="447.50"></text></g><g><title>__mutex_lock.constprop.0 (1,389 samples, 0.06%)</title><rect x="68.8742%" y="453" width="0.0579%" height="15" fill="rgb(253,16,32)" fg:x="1651078" fg:w="1389"/><text x="69.1242%" y="463.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (1,625 samples, 0.07%)</title><rect x="68.9327%" y="453" width="0.0678%" height="15" fill="rgb(208,97,28)" fg:x="1652479" fg:w="1625"/><text x="69.1827%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (1,417 samples, 0.06%)</title><rect x="68.9413%" y="437" width="0.0591%" height="15" fill="rgb(225,92,11)" fg:x="1652687" fg:w="1417"/><text x="69.1913%" y="447.50"></text></g><g><title>_raw_spin_lock (1,256 samples, 0.05%)</title><rect x="68.9480%" y="421" width="0.0524%" height="15" fill="rgb(243,38,12)" fg:x="1652848" fg:w="1256"/><text x="69.1980%" y="431.50"></text></g><g><title>btrfs_get_or_create_delayed_node (699 samples, 0.03%)</title><rect x="69.0004%" y="453" width="0.0292%" height="15" fill="rgb(208,139,16)" fg:x="1654104" fg:w="699"/><text x="69.2504%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (612 samples, 0.03%)</title><rect x="69.0041%" y="437" width="0.0255%" height="15" fill="rgb(227,24,9)" fg:x="1654191" fg:w="612"/><text x="69.2541%" y="447.50"></text></g><g><title>memcpy_erms (256 samples, 0.01%)</title><rect x="69.0296%" y="453" width="0.0107%" height="15" fill="rgb(206,62,11)" fg:x="1654803" fg:w="256"/><text x="69.2796%" y="463.50"></text></g><g><title>mutex_lock (241 samples, 0.01%)</title><rect x="69.0403%" y="453" width="0.0101%" height="15" fill="rgb(228,134,27)" fg:x="1655059" fg:w="241"/><text x="69.2903%" y="463.50"></text></g><g><title>btrfs_insert_delayed_dir_index (10,531 samples, 0.44%)</title><rect x="68.6172%" y="469" width="0.4393%" height="15" fill="rgb(205,55,33)" fg:x="1644918" fg:w="10531"/><text x="68.8672%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (457 samples, 0.02%)</title><rect x="69.0565%" y="469" width="0.0191%" height="15" fill="rgb(243,75,43)" fg:x="1655449" fg:w="457"/><text x="69.3065%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (293 samples, 0.01%)</title><rect x="69.0634%" y="453" width="0.0122%" height="15" fill="rgb(223,27,42)" fg:x="1655613" fg:w="293"/><text x="69.3134%" y="463.50"></text></g><g><title>_raw_spin_lock (406 samples, 0.02%)</title><rect x="69.1276%" y="437" width="0.0169%" height="15" fill="rgb(232,189,33)" fg:x="1657153" fg:w="406"/><text x="69.3776%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,420 samples, 0.06%)</title><rect x="69.0855%" y="453" width="0.0592%" height="15" fill="rgb(210,9,39)" fg:x="1656144" fg:w="1420"/><text x="69.3355%" y="463.50"></text></g><g><title>btrfs_release_path (1,973 samples, 0.08%)</title><rect x="69.0756%" y="469" width="0.0823%" height="15" fill="rgb(242,85,26)" fg:x="1655906" fg:w="1973"/><text x="69.3256%" y="479.50"></text></g><g><title>release_extent_buffer (315 samples, 0.01%)</title><rect x="69.1448%" y="453" width="0.0131%" height="15" fill="rgb(248,44,4)" fg:x="1657564" fg:w="315"/><text x="69.3948%" y="463.50"></text></g><g><title>btrfs_set_16 (305 samples, 0.01%)</title><rect x="69.1579%" y="469" width="0.0127%" height="15" fill="rgb(250,96,46)" fg:x="1657879" fg:w="305"/><text x="69.4079%" y="479.50"></text></g><g><title>crc32c (669 samples, 0.03%)</title><rect x="69.1813%" y="469" width="0.0279%" height="15" fill="rgb(229,116,26)" fg:x="1658440" fg:w="669"/><text x="69.4313%" y="479.50"></text></g><g><title>crypto_shash_update (364 samples, 0.02%)</title><rect x="69.1940%" y="453" width="0.0152%" height="15" fill="rgb(246,94,34)" fg:x="1658745" fg:w="364"/><text x="69.4440%" y="463.50"></text></g><g><title>btrfs_get_32 (438 samples, 0.02%)</title><rect x="69.2231%" y="453" width="0.0183%" height="15" fill="rgb(251,73,21)" fg:x="1659441" fg:w="438"/><text x="69.4731%" y="463.50"></text></g><g><title>_raw_read_lock (437 samples, 0.02%)</title><rect x="69.3524%" y="389" width="0.0182%" height="15" fill="rgb(254,121,25)" fg:x="1662542" fg:w="437"/><text x="69.6024%" y="399.50"></text></g><g><title>finish_wait (2,244 samples, 0.09%)</title><rect x="69.3715%" y="389" width="0.0936%" height="15" fill="rgb(215,161,49)" fg:x="1662999" fg:w="2244"/><text x="69.6215%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (2,133 samples, 0.09%)</title><rect x="69.3761%" y="373" width="0.0890%" height="15" fill="rgb(221,43,13)" fg:x="1663110" fg:w="2133"/><text x="69.6261%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,035 samples, 0.08%)</title><rect x="69.3802%" y="357" width="0.0849%" height="15" fill="rgb(249,5,37)" fg:x="1663208" fg:w="2035"/><text x="69.6302%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (5,860 samples, 0.24%)</title><rect x="69.4873%" y="373" width="0.2444%" height="15" fill="rgb(226,25,44)" fg:x="1665776" fg:w="5860"/><text x="69.7373%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,590 samples, 0.23%)</title><rect x="69.4986%" y="357" width="0.2332%" height="15" fill="rgb(238,189,16)" fg:x="1666046" fg:w="5590"/><text x="69.7486%" y="367.50"></text></g><g><title>prepare_to_wait_event (6,493 samples, 0.27%)</title><rect x="69.4656%" y="389" width="0.2709%" height="15" fill="rgb(251,186,8)" fg:x="1665254" fg:w="6493"/><text x="69.7156%" y="399.50"></text></g><g><title>queued_read_lock_slowpath (6,514 samples, 0.27%)</title><rect x="69.7364%" y="389" width="0.2717%" height="15" fill="rgb(254,34,31)" fg:x="1671747" fg:w="6514"/><text x="69.9864%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,859 samples, 0.20%)</title><rect x="69.8054%" y="373" width="0.2027%" height="15" fill="rgb(225,215,27)" fg:x="1673402" fg:w="4859"/><text x="70.0554%" y="383.50"></text></g><g><title>update_curr (332 samples, 0.01%)</title><rect x="70.0479%" y="325" width="0.0138%" height="15" fill="rgb(221,192,48)" fg:x="1679215" fg:w="332"/><text x="70.2979%" y="335.50"></text></g><g><title>dequeue_entity (924 samples, 0.04%)</title><rect x="70.0354%" y="341" width="0.0385%" height="15" fill="rgb(219,137,20)" fg:x="1678914" fg:w="924"/><text x="70.2854%" y="351.50"></text></g><g><title>update_load_avg (291 samples, 0.01%)</title><rect x="70.0618%" y="325" width="0.0121%" height="15" fill="rgb(219,84,11)" fg:x="1679547" fg:w="291"/><text x="70.3118%" y="335.50"></text></g><g><title>dequeue_task_fair (1,104 samples, 0.05%)</title><rect x="70.0300%" y="357" width="0.0461%" height="15" fill="rgb(224,10,23)" fg:x="1678786" fg:w="1104"/><text x="70.2800%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (1,773 samples, 0.07%)</title><rect x="70.0849%" y="341" width="0.0740%" height="15" fill="rgb(248,22,39)" fg:x="1680101" fg:w="1773"/><text x="70.3349%" y="351.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,697 samples, 0.07%)</title><rect x="70.0881%" y="325" width="0.0708%" height="15" fill="rgb(212,154,20)" fg:x="1680177" fg:w="1697"/><text x="70.3381%" y="335.50"></text></g><g><title>native_write_msr (1,662 samples, 0.07%)</title><rect x="70.0895%" y="309" width="0.0693%" height="15" fill="rgb(236,199,50)" fg:x="1680212" fg:w="1662"/><text x="70.3395%" y="319.50"></text></g><g><title>finish_task_switch (2,057 samples, 0.09%)</title><rect x="70.0761%" y="357" width="0.0858%" height="15" fill="rgb(211,9,17)" fg:x="1679890" fg:w="2057"/><text x="70.3261%" y="367.50"></text></g><g><title>psi_task_change (768 samples, 0.03%)</title><rect x="70.1792%" y="357" width="0.0320%" height="15" fill="rgb(243,216,36)" fg:x="1682362" fg:w="768"/><text x="70.4292%" y="367.50"></text></g><g><title>psi_group_change (644 samples, 0.03%)</title><rect x="70.1844%" y="341" width="0.0269%" height="15" fill="rgb(250,2,10)" fg:x="1682486" fg:w="644"/><text x="70.4344%" y="351.50"></text></g><g><title>__btrfs_tree_read_lock (21,306 samples, 0.89%)</title><rect x="69.3318%" y="405" width="0.8888%" height="15" fill="rgb(226,50,48)" fg:x="1662047" fg:w="21306"/><text x="69.5818%" y="415.50"></text></g><g><title>schedule (5,092 samples, 0.21%)</title><rect x="70.0081%" y="389" width="0.2124%" height="15" fill="rgb(243,81,16)" fg:x="1678261" fg:w="5092"/><text x="70.2581%" y="399.50"></text></g><g><title>__schedule (5,022 samples, 0.21%)</title><rect x="70.0111%" y="373" width="0.2095%" height="15" fill="rgb(250,14,2)" fg:x="1678331" fg:w="5022"/><text x="70.2611%" y="383.50"></text></g><g><title>__btrfs_read_lock_root_node (22,311 samples, 0.93%)</title><rect x="69.3268%" y="421" width="0.9307%" height="15" fill="rgb(233,135,29)" fg:x="1661927" fg:w="22311"/><text x="69.5768%" y="431.50"></text></g><g><title>btrfs_root_node (885 samples, 0.04%)</title><rect x="70.2205%" y="405" width="0.0369%" height="15" fill="rgb(224,64,43)" fg:x="1683353" fg:w="885"/><text x="70.4705%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (552 samples, 0.02%)</title><rect x="70.2789%" y="389" width="0.0230%" height="15" fill="rgb(238,84,13)" fg:x="1684751" fg:w="552"/><text x="70.5289%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (451 samples, 0.02%)</title><rect x="70.2831%" y="373" width="0.0188%" height="15" fill="rgb(253,48,26)" fg:x="1684852" fg:w="451"/><text x="70.5331%" y="383.50"></text></g><g><title>prepare_to_wait_event (749 samples, 0.03%)</title><rect x="70.2724%" y="405" width="0.0312%" height="15" fill="rgb(205,223,31)" fg:x="1684597" fg:w="749"/><text x="70.5224%" y="415.50"></text></g><g><title>queued_write_lock_slowpath (724 samples, 0.03%)</title><rect x="70.3037%" y="405" width="0.0302%" height="15" fill="rgb(221,41,32)" fg:x="1685346" fg:w="724"/><text x="70.5537%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (244 samples, 0.01%)</title><rect x="70.3237%" y="389" width="0.0102%" height="15" fill="rgb(213,158,31)" fg:x="1685826" fg:w="244"/><text x="70.5737%" y="399.50"></text></g><g><title>dequeue_entity (505 samples, 0.02%)</title><rect x="70.3485%" y="357" width="0.0211%" height="15" fill="rgb(245,126,43)" fg:x="1686421" fg:w="505"/><text x="70.5985%" y="367.50"></text></g><g><title>dequeue_task_fair (609 samples, 0.03%)</title><rect x="70.3457%" y="373" width="0.0254%" height="15" fill="rgb(227,7,22)" fg:x="1686353" fg:w="609"/><text x="70.5957%" y="383.50"></text></g><g><title>__perf_event_task_sched_in (613 samples, 0.03%)</title><rect x="70.3748%" y="357" width="0.0256%" height="15" fill="rgb(252,90,44)" fg:x="1687050" fg:w="613"/><text x="70.6248%" y="367.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (593 samples, 0.02%)</title><rect x="70.3756%" y="341" width="0.0247%" height="15" fill="rgb(253,91,0)" fg:x="1687070" fg:w="593"/><text x="70.6256%" y="351.50"></text></g><g><title>native_write_msr (580 samples, 0.02%)</title><rect x="70.3761%" y="325" width="0.0242%" height="15" fill="rgb(252,175,49)" fg:x="1687083" fg:w="580"/><text x="70.6261%" y="335.50"></text></g><g><title>finish_task_switch (728 samples, 0.03%)</title><rect x="70.3711%" y="373" width="0.0304%" height="15" fill="rgb(246,150,1)" fg:x="1686962" fg:w="728"/><text x="70.6211%" y="383.50"></text></g><g><title>psi_task_change (379 samples, 0.02%)</title><rect x="70.4092%" y="373" width="0.0158%" height="15" fill="rgb(241,192,25)" fg:x="1687876" fg:w="379"/><text x="70.6592%" y="383.50"></text></g><g><title>psi_group_change (316 samples, 0.01%)</title><rect x="70.4119%" y="357" width="0.0132%" height="15" fill="rgb(239,187,11)" fg:x="1687939" fg:w="316"/><text x="70.6619%" y="367.50"></text></g><g><title>__btrfs_tree_lock (4,174 samples, 0.17%)</title><rect x="70.2575%" y="421" width="0.1741%" height="15" fill="rgb(218,202,51)" fg:x="1684238" fg:w="4174"/><text x="70.5075%" y="431.50"></text></g><g><title>schedule (2,342 samples, 0.10%)</title><rect x="70.3339%" y="405" width="0.0977%" height="15" fill="rgb(225,176,8)" fg:x="1686070" fg:w="2342"/><text x="70.5839%" y="415.50"></text></g><g><title>__schedule (2,307 samples, 0.10%)</title><rect x="70.3353%" y="389" width="0.0962%" height="15" fill="rgb(219,122,41)" fg:x="1686105" fg:w="2307"/><text x="70.5853%" y="399.50"></text></g><g><title>btrfs_leaf_free_space (858 samples, 0.04%)</title><rect x="70.4435%" y="421" width="0.0358%" height="15" fill="rgb(248,140,20)" fg:x="1688697" fg:w="858"/><text x="70.6935%" y="431.50"></text></g><g><title>leaf_space_used (698 samples, 0.03%)</title><rect x="70.4501%" y="405" width="0.0291%" height="15" fill="rgb(245,41,37)" fg:x="1688857" fg:w="698"/><text x="70.7001%" y="415.50"></text></g><g><title>btrfs_get_32 (534 samples, 0.02%)</title><rect x="70.4570%" y="389" width="0.0223%" height="15" fill="rgb(235,82,39)" fg:x="1689021" fg:w="534"/><text x="70.7070%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (311 samples, 0.01%)</title><rect x="70.4864%" y="373" width="0.0130%" height="15" fill="rgb(230,108,42)" fg:x="1689727" fg:w="311"/><text x="70.7364%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (290 samples, 0.01%)</title><rect x="70.4873%" y="357" width="0.0121%" height="15" fill="rgb(215,150,50)" fg:x="1689748" fg:w="290"/><text x="70.7373%" y="367.50"></text></g><g><title>prepare_to_wait_event (352 samples, 0.01%)</title><rect x="70.4849%" y="389" width="0.0147%" height="15" fill="rgb(233,212,5)" fg:x="1689690" fg:w="352"/><text x="70.7349%" y="399.50"></text></g><g><title>queued_write_lock_slowpath (273 samples, 0.01%)</title><rect x="70.4996%" y="389" width="0.0114%" height="15" fill="rgb(245,80,22)" fg:x="1690042" fg:w="273"/><text x="70.7496%" y="399.50"></text></g><g><title>__btrfs_tree_lock (1,071 samples, 0.04%)</title><rect x="70.4793%" y="405" width="0.0447%" height="15" fill="rgb(238,129,16)" fg:x="1689557" fg:w="1071"/><text x="70.7293%" y="415.50"></text></g><g><title>schedule (313 samples, 0.01%)</title><rect x="70.5110%" y="389" width="0.0131%" height="15" fill="rgb(240,19,0)" fg:x="1690315" fg:w="313"/><text x="70.7610%" y="399.50"></text></g><g><title>__schedule (303 samples, 0.01%)</title><rect x="70.5114%" y="373" width="0.0126%" height="15" fill="rgb(232,42,35)" fg:x="1690325" fg:w="303"/><text x="70.7614%" y="383.50"></text></g><g><title>btrfs_lock_root_node (1,078 samples, 0.04%)</title><rect x="70.4793%" y="421" width="0.0450%" height="15" fill="rgb(223,130,24)" fg:x="1689555" fg:w="1078"/><text x="70.7293%" y="431.50"></text></g><g><title>_raw_write_lock (351 samples, 0.01%)</title><rect x="70.5372%" y="405" width="0.0146%" height="15" fill="rgb(237,16,22)" fg:x="1690943" fg:w="351"/><text x="70.7872%" y="415.50"></text></g><g><title>btrfs_try_tree_write_lock (3,079 samples, 0.13%)</title><rect x="70.5315%" y="421" width="0.1284%" height="15" fill="rgb(248,192,20)" fg:x="1690808" fg:w="3079"/><text x="70.7815%" y="431.50"></text></g><g><title>queued_write_lock_slowpath (2,591 samples, 0.11%)</title><rect x="70.5519%" y="405" width="0.1081%" height="15" fill="rgb(233,167,2)" fg:x="1691296" fg:w="2591"/><text x="70.8019%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (624 samples, 0.03%)</title><rect x="70.6339%" y="389" width="0.0260%" height="15" fill="rgb(252,71,44)" fg:x="1693263" fg:w="624"/><text x="70.8839%" y="399.50"></text></g><g><title>generic_bin_search.constprop.0 (4,698 samples, 0.20%)</title><rect x="70.6601%" y="421" width="0.1960%" height="15" fill="rgb(238,37,47)" fg:x="1693890" fg:w="4698"/><text x="70.9101%" y="431.50"></text></g><g><title>btrfs_buffer_uptodate (519 samples, 0.02%)</title><rect x="70.8789%" y="405" width="0.0216%" height="15" fill="rgb(214,202,54)" fg:x="1699135" fg:w="519"/><text x="71.1289%" y="415.50"></text></g><g><title>verify_parent_transid (427 samples, 0.02%)</title><rect x="70.8827%" y="389" width="0.0178%" height="15" fill="rgb(254,165,40)" fg:x="1699227" fg:w="427"/><text x="71.1327%" y="399.50"></text></g><g><title>btrfs_get_64 (628 samples, 0.03%)</title><rect x="70.9005%" y="405" width="0.0262%" height="15" fill="rgb(246,173,38)" fg:x="1699654" fg:w="628"/><text x="71.1505%" y="415.50"></text></g><g><title>__radix_tree_lookup (2,323 samples, 0.10%)</title><rect x="70.9805%" y="389" width="0.0969%" height="15" fill="rgb(215,3,27)" fg:x="1701570" fg:w="2323"/><text x="71.2305%" y="399.50"></text></g><g><title>mark_page_accessed (812 samples, 0.03%)</title><rect x="71.0891%" y="373" width="0.0339%" height="15" fill="rgb(239,169,51)" fg:x="1704174" fg:w="812"/><text x="71.3391%" y="383.50"></text></g><g><title>mark_extent_buffer_accessed (1,091 samples, 0.05%)</title><rect x="71.0775%" y="389" width="0.0455%" height="15" fill="rgb(212,5,25)" fg:x="1703897" fg:w="1091"/><text x="71.3275%" y="399.50"></text></g><g><title>find_extent_buffer (4,521 samples, 0.19%)</title><rect x="70.9356%" y="405" width="0.1886%" height="15" fill="rgb(243,45,17)" fg:x="1700495" fg:w="4521"/><text x="71.1856%" y="415.50"></text></g><g><title>read_block_for_search.isra.0 (7,036 samples, 0.29%)</title><rect x="70.8561%" y="421" width="0.2935%" height="15" fill="rgb(242,97,9)" fg:x="1698588" fg:w="7036"/><text x="71.1061%" y="431.50"></text></g><g><title>read_extent_buffer (608 samples, 0.03%)</title><rect x="71.1242%" y="405" width="0.0254%" height="15" fill="rgb(228,71,31)" fg:x="1705016" fg:w="608"/><text x="71.3742%" y="415.50"></text></g><g><title>alloc_tree_block_no_bg_flush (580 samples, 0.02%)</title><rect x="71.1537%" y="405" width="0.0242%" height="15" fill="rgb(252,184,16)" fg:x="1705724" fg:w="580"/><text x="71.4037%" y="415.50"></text></g><g><title>btrfs_alloc_tree_block (579 samples, 0.02%)</title><rect x="71.1538%" y="389" width="0.0242%" height="15" fill="rgb(236,169,46)" fg:x="1705725" fg:w="579"/><text x="71.4038%" y="399.50"></text></g><g><title>copy_for_split (391 samples, 0.02%)</title><rect x="71.1804%" y="405" width="0.0163%" height="15" fill="rgb(207,17,47)" fg:x="1706364" fg:w="391"/><text x="71.4304%" y="415.50"></text></g><g><title>btrfs_get_token_32 (415 samples, 0.02%)</title><rect x="71.2076%" y="373" width="0.0173%" height="15" fill="rgb(206,201,28)" fg:x="1707014" fg:w="415"/><text x="71.4576%" y="383.50"></text></g><g><title>btrfs_set_token_32 (406 samples, 0.02%)</title><rect x="71.2260%" y="373" width="0.0169%" height="15" fill="rgb(224,184,23)" fg:x="1707457" fg:w="406"/><text x="71.4760%" y="383.50"></text></g><g><title>memmove_extent_buffer (262 samples, 0.01%)</title><rect x="71.2511%" y="373" width="0.0109%" height="15" fill="rgb(208,139,48)" fg:x="1708057" fg:w="262"/><text x="71.5011%" y="383.50"></text></g><g><title>__push_leaf_left (1,546 samples, 0.06%)</title><rect x="71.1977%" y="389" width="0.0645%" height="15" fill="rgb(208,130,10)" fg:x="1706777" fg:w="1546"/><text x="71.4477%" y="399.50"></text></g><g><title>push_leaf_left (1,776 samples, 0.07%)</title><rect x="71.1968%" y="405" width="0.0741%" height="15" fill="rgb(211,213,45)" fg:x="1706755" fg:w="1776"/><text x="71.4468%" y="415.50"></text></g><g><title>btrfs_get_token_32 (471 samples, 0.02%)</title><rect x="71.2863%" y="373" width="0.0196%" height="15" fill="rgb(235,100,30)" fg:x="1708902" fg:w="471"/><text x="71.5363%" y="383.50"></text></g><g><title>btrfs_set_token_32 (462 samples, 0.02%)</title><rect x="71.3077%" y="373" width="0.0193%" height="15" fill="rgb(206,144,31)" fg:x="1709414" fg:w="462"/><text x="71.5577%" y="383.50"></text></g><g><title>__push_leaf_right (1,715 samples, 0.07%)</title><rect x="71.2739%" y="389" width="0.0715%" height="15" fill="rgb(224,200,26)" fg:x="1708605" fg:w="1715"/><text x="71.5239%" y="399.50"></text></g><g><title>btrfs_read_node_slot (303 samples, 0.01%)</title><rect x="71.3564%" y="389" width="0.0126%" height="15" fill="rgb(247,104,53)" fg:x="1710583" fg:w="303"/><text x="71.6064%" y="399.50"></text></g><g><title>read_tree_block (274 samples, 0.01%)</title><rect x="71.3577%" y="373" width="0.0114%" height="15" fill="rgb(220,14,17)" fg:x="1710612" fg:w="274"/><text x="71.6077%" y="383.50"></text></g><g><title>push_leaf_right (2,407 samples, 0.10%)</title><rect x="71.2708%" y="405" width="0.1004%" height="15" fill="rgb(230,140,40)" fg:x="1708531" fg:w="2407"/><text x="71.5208%" y="415.50"></text></g><g><title>split_leaf (5,286 samples, 0.22%)</title><rect x="71.1508%" y="421" width="0.2205%" height="15" fill="rgb(229,2,41)" fg:x="1705653" fg:w="5286"/><text x="71.4008%" y="431.50"></text></g><g><title>split_node (351 samples, 0.01%)</title><rect x="71.3713%" y="421" width="0.0146%" height="15" fill="rgb(232,89,16)" fg:x="1710939" fg:w="351"/><text x="71.6213%" y="431.50"></text></g><g><title>push_nodes_for_insert (337 samples, 0.01%)</title><rect x="71.3719%" y="405" width="0.0141%" height="15" fill="rgb(247,59,52)" fg:x="1710953" fg:w="337"/><text x="71.6219%" y="415.50"></text></g><g><title>select_task_rq_fair (666 samples, 0.03%)</title><rect x="71.4540%" y="341" width="0.0278%" height="15" fill="rgb(226,110,21)" fg:x="1712921" fg:w="666"/><text x="71.7040%" y="351.50"></text></g><g><title>enqueue_entity (602 samples, 0.03%)</title><rect x="71.4923%" y="309" width="0.0251%" height="15" fill="rgb(224,176,43)" fg:x="1713839" fg:w="602"/><text x="71.7423%" y="319.50"></text></g><g><title>enqueue_task_fair (777 samples, 0.03%)</title><rect x="71.4873%" y="325" width="0.0324%" height="15" fill="rgb(221,73,6)" fg:x="1713719" fg:w="777"/><text x="71.7373%" y="335.50"></text></g><g><title>ttwu_do_activate (1,651 samples, 0.07%)</title><rect x="71.4848%" y="341" width="0.0689%" height="15" fill="rgb(232,78,19)" fg:x="1713661" fg:w="1651"/><text x="71.7348%" y="351.50"></text></g><g><title>psi_task_change (816 samples, 0.03%)</title><rect x="71.5197%" y="325" width="0.0340%" height="15" fill="rgb(233,112,48)" fg:x="1714496" fg:w="816"/><text x="71.7697%" y="335.50"></text></g><g><title>psi_group_change (730 samples, 0.03%)</title><rect x="71.5233%" y="309" width="0.0305%" height="15" fill="rgb(243,131,47)" fg:x="1714582" fg:w="730"/><text x="71.7733%" y="319.50"></text></g><g><title>__wake_up_common (3,666 samples, 0.15%)</title><rect x="71.4160%" y="389" width="0.1529%" height="15" fill="rgb(226,51,1)" fg:x="1712011" fg:w="3666"/><text x="71.6660%" y="399.50"></text></g><g><title>autoremove_wake_function (3,606 samples, 0.15%)</title><rect x="71.4185%" y="373" width="0.1504%" height="15" fill="rgb(247,58,7)" fg:x="1712071" fg:w="3606"/><text x="71.6685%" y="383.50"></text></g><g><title>try_to_wake_up (3,499 samples, 0.15%)</title><rect x="71.4230%" y="357" width="0.1460%" height="15" fill="rgb(209,7,32)" fg:x="1712178" fg:w="3499"/><text x="71.6730%" y="367.50"></text></g><g><title>__wake_up_common_lock (3,797 samples, 0.16%)</title><rect x="71.4149%" y="405" width="0.1584%" height="15" fill="rgb(209,39,41)" fg:x="1711985" fg:w="3797"/><text x="71.6649%" y="415.50"></text></g><g><title>btrfs_tree_read_unlock (596 samples, 0.02%)</title><rect x="71.5735%" y="405" width="0.0249%" height="15" fill="rgb(226,182,46)" fg:x="1715787" fg:w="596"/><text x="71.8235%" y="415.50"></text></g><g><title>btrfs_search_slot (56,501 samples, 2.36%)</title><rect x="69.2501%" y="437" width="2.3569%" height="15" fill="rgb(230,219,10)" fg:x="1660088" fg:w="56501"/><text x="69.5001%" y="447.50">b..</text></g><g><title>unlock_up (5,299 samples, 0.22%)</title><rect x="71.3859%" y="421" width="0.2210%" height="15" fill="rgb(227,175,30)" fg:x="1711290" fg:w="5299"/><text x="71.6359%" y="431.50"></text></g><g><title>btrfs_get_32 (368 samples, 0.02%)</title><rect x="71.7073%" y="421" width="0.0154%" height="15" fill="rgb(217,2,50)" fg:x="1718994" fg:w="368"/><text x="71.9573%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,619 samples, 0.07%)</title><rect x="72.1267%" y="405" width="0.0675%" height="15" fill="rgb(229,160,0)" fg:x="1729048" fg:w="1619"/><text x="72.3767%" y="415.50"></text></g><g><title>btrfs_get_token_32 (11,306 samples, 0.47%)</title><rect x="71.7227%" y="421" width="0.4716%" height="15" fill="rgb(207,78,37)" fg:x="1719362" fg:w="11306"/><text x="71.9727%" y="431.50"></text></g><g><title>btrfs_leaf_free_space (967 samples, 0.04%)</title><rect x="72.1943%" y="421" width="0.0403%" height="15" fill="rgb(225,57,0)" fg:x="1730668" fg:w="967"/><text x="72.4443%" y="431.50"></text></g><g><title>leaf_space_used (837 samples, 0.03%)</title><rect x="72.1997%" y="405" width="0.0349%" height="15" fill="rgb(232,154,2)" fg:x="1730798" fg:w="837"/><text x="72.4497%" y="415.50"></text></g><g><title>btrfs_get_32 (612 samples, 0.03%)</title><rect x="72.2091%" y="389" width="0.0255%" height="15" fill="rgb(241,212,25)" fg:x="1731023" fg:w="612"/><text x="72.4591%" y="399.50"></text></g><g><title>btrfs_mark_buffer_dirty (579 samples, 0.02%)</title><rect x="72.2346%" y="421" width="0.0242%" height="15" fill="rgb(226,69,20)" fg:x="1731635" fg:w="579"/><text x="72.4846%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (282 samples, 0.01%)</title><rect x="72.2470%" y="405" width="0.0118%" height="15" fill="rgb(247,184,54)" fg:x="1731932" fg:w="282"/><text x="72.4970%" y="415.50"></text></g><g><title>btrfs_set_token_32 (8,925 samples, 0.37%)</title><rect x="72.2588%" y="421" width="0.3723%" height="15" fill="rgb(210,145,0)" fg:x="1732214" fg:w="8925"/><text x="72.5088%" y="431.50"></text></g><g><title>check_setget_bounds.isra.0 (1,413 samples, 0.06%)</title><rect x="72.5721%" y="405" width="0.0589%" height="15" fill="rgb(253,82,12)" fg:x="1739726" fg:w="1413"/><text x="72.8221%" y="415.50"></text></g><g><title>btrfs_unlock_up_safe (272 samples, 0.01%)</title><rect x="72.6311%" y="421" width="0.0113%" height="15" fill="rgb(245,42,11)" fg:x="1741139" fg:w="272"/><text x="72.8811%" y="431.50"></text></g><g><title>copy_pages (433 samples, 0.02%)</title><rect x="72.6521%" y="405" width="0.0181%" height="15" fill="rgb(219,147,32)" fg:x="1741643" fg:w="433"/><text x="72.9021%" y="415.50"></text></g><g><title>memcpy_extent_buffer (3,785 samples, 0.16%)</title><rect x="72.6428%" y="421" width="0.1579%" height="15" fill="rgb(246,12,7)" fg:x="1741419" fg:w="3785"/><text x="72.8928%" y="431.50"></text></g><g><title>memmove (3,128 samples, 0.13%)</title><rect x="72.6702%" y="405" width="0.1305%" height="15" fill="rgb(243,50,9)" fg:x="1742076" fg:w="3128"/><text x="72.9202%" y="415.50"></text></g><g><title>copy_pages (295 samples, 0.01%)</title><rect x="72.8180%" y="405" width="0.0123%" height="15" fill="rgb(219,149,6)" fg:x="1745621" fg:w="295"/><text x="73.0680%" y="415.50"></text></g><g><title>memmove_extent_buffer (2,964 samples, 0.12%)</title><rect x="72.8006%" y="421" width="0.1236%" height="15" fill="rgb(241,51,42)" fg:x="1745204" fg:w="2964"/><text x="73.0506%" y="431.50"></text></g><g><title>memmove (2,252 samples, 0.09%)</title><rect x="72.8303%" y="405" width="0.0939%" height="15" fill="rgb(226,128,27)" fg:x="1745916" fg:w="2252"/><text x="73.0803%" y="415.50"></text></g><g><title>insert_with_overflow (89,479 samples, 3.73%)</title><rect x="69.2092%" y="469" width="3.7326%" height="15" fill="rgb(244,144,4)" fg:x="1659109" fg:w="89479"/><text x="69.4592%" y="479.50">inse..</text></g><g><title>btrfs_insert_empty_items (88,709 samples, 3.70%)</title><rect x="69.2413%" y="453" width="3.7005%" height="15" fill="rgb(221,4,13)" fg:x="1659879" fg:w="88709"/><text x="69.4913%" y="463.50">btrf..</text></g><g><title>setup_items_for_insert (31,999 samples, 1.33%)</title><rect x="71.6070%" y="437" width="1.3348%" height="15" fill="rgb(208,170,28)" fg:x="1716589" fg:w="31999"/><text x="71.8570%" y="447.50"></text></g><g><title>write_extent_buffer (420 samples, 0.02%)</title><rect x="72.9243%" y="421" width="0.0175%" height="15" fill="rgb(226,131,13)" fg:x="1748168" fg:w="420"/><text x="73.1743%" y="431.50"></text></g><g><title>kmem_cache_alloc (688 samples, 0.03%)</title><rect x="72.9418%" y="469" width="0.0287%" height="15" fill="rgb(215,72,41)" fg:x="1748588" fg:w="688"/><text x="73.1918%" y="479.50"></text></g><g><title>kmem_cache_free (652 samples, 0.03%)</title><rect x="72.9705%" y="469" width="0.0272%" height="15" fill="rgb(243,108,20)" fg:x="1749276" fg:w="652"/><text x="73.2205%" y="479.50"></text></g><g><title>btrfs_insert_dir_item (106,622 samples, 4.45%)</title><rect x="68.5881%" y="485" width="4.4477%" height="15" fill="rgb(230,189,17)" fg:x="1644219" fg:w="106622"/><text x="68.8381%" y="495.50">btrfs..</text></g><g><title>write_extent_buffer (913 samples, 0.04%)</title><rect x="72.9977%" y="469" width="0.0381%" height="15" fill="rgb(220,50,17)" fg:x="1749928" fg:w="913"/><text x="73.2477%" y="479.50"></text></g><g><title>_raw_spin_lock (246 samples, 0.01%)</title><rect x="73.0793%" y="437" width="0.0103%" height="15" fill="rgb(248,152,48)" fg:x="1751884" fg:w="246"/><text x="73.3293%" y="447.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (1,075 samples, 0.04%)</title><rect x="73.0631%" y="453" width="0.0448%" height="15" fill="rgb(244,91,11)" fg:x="1751496" fg:w="1075"/><text x="73.3131%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (320 samples, 0.01%)</title><rect x="73.1160%" y="453" width="0.0133%" height="15" fill="rgb(220,157,5)" fg:x="1752764" fg:w="320"/><text x="73.3660%" y="463.50"></text></g><g><title>btrfs_get_delayed_node (284 samples, 0.01%)</title><rect x="73.1175%" y="437" width="0.0118%" height="15" fill="rgb(253,137,8)" fg:x="1752800" fg:w="284"/><text x="73.3675%" y="447.50"></text></g><g><title>inode_get_bytes (268 samples, 0.01%)</title><rect x="73.1360%" y="437" width="0.0112%" height="15" fill="rgb(217,137,51)" fg:x="1753244" fg:w="268"/><text x="73.3860%" y="447.50"></text></g><g><title>fill_stack_inode_item (578 samples, 0.02%)</title><rect x="73.1294%" y="453" width="0.0241%" height="15" fill="rgb(218,209,53)" fg:x="1753084" fg:w="578"/><text x="73.3794%" y="463.50"></text></g><g><title>btrfs_delayed_update_inode (2,688 samples, 0.11%)</title><rect x="73.0586%" y="469" width="0.1121%" height="15" fill="rgb(249,137,25)" fg:x="1751387" fg:w="2688"/><text x="73.3086%" y="479.50"></text></g><g><title>_raw_spin_lock (498 samples, 0.02%)</title><rect x="73.1748%" y="453" width="0.0208%" height="15" fill="rgb(239,155,26)" fg:x="1754173" fg:w="498"/><text x="73.4248%" y="463.50"></text></g><g><title>btrfs_update_inode (4,230 samples, 0.18%)</title><rect x="73.0358%" y="485" width="0.1765%" height="15" fill="rgb(227,85,46)" fg:x="1750841" fg:w="4230"/><text x="73.2858%" y="495.50"></text></g><g><title>btrfs_update_root_times (996 samples, 0.04%)</title><rect x="73.1707%" y="469" width="0.0415%" height="15" fill="rgb(251,107,43)" fg:x="1754075" fg:w="996"/><text x="73.4207%" y="479.50"></text></g><g><title>ktime_get_real_ts64 (400 samples, 0.02%)</title><rect x="73.1956%" y="453" width="0.0167%" height="15" fill="rgb(234,170,33)" fg:x="1754671" fg:w="400"/><text x="73.4456%" y="463.50"></text></g><g><title>current_time (262 samples, 0.01%)</title><rect x="73.2122%" y="485" width="0.0109%" height="15" fill="rgb(206,29,35)" fg:x="1755071" fg:w="262"/><text x="73.4622%" y="495.50"></text></g><g><title>btrfs_add_link (111,921 samples, 4.67%)</title><rect x="68.5575%" y="501" width="4.6687%" height="15" fill="rgb(227,138,25)" fg:x="1643486" fg:w="111921"/><text x="68.8075%" y="511.50">btrfs..</text></g><g><title>btrfs_balance_delayed_items (832 samples, 0.03%)</title><rect x="73.2498%" y="485" width="0.0347%" height="15" fill="rgb(249,131,35)" fg:x="1755972" fg:w="832"/><text x="73.4998%" y="495.50"></text></g><g><title>_raw_spin_lock (595 samples, 0.02%)</title><rect x="73.3032%" y="453" width="0.0248%" height="15" fill="rgb(239,6,40)" fg:x="1757251" fg:w="595"/><text x="73.5532%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (435 samples, 0.02%)</title><rect x="73.3099%" y="437" width="0.0181%" height="15" fill="rgb(246,136,47)" fg:x="1757411" fg:w="435"/><text x="73.5599%" y="447.50"></text></g><g><title>_raw_spin_lock (339 samples, 0.01%)</title><rect x="73.3492%" y="437" width="0.0141%" height="15" fill="rgb(253,58,26)" fg:x="1758353" fg:w="339"/><text x="73.5992%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (272 samples, 0.01%)</title><rect x="73.3519%" y="421" width="0.0113%" height="15" fill="rgb(237,141,10)" fg:x="1758420" fg:w="272"/><text x="73.6019%" y="431.50"></text></g><g><title>select_task_rq_fair (632 samples, 0.03%)</title><rect x="73.3703%" y="437" width="0.0264%" height="15" fill="rgb(234,156,12)" fg:x="1758861" fg:w="632"/><text x="73.6203%" y="447.50"></text></g><g><title>enqueue_task_fair (565 samples, 0.02%)</title><rect x="73.4027%" y="421" width="0.0236%" height="15" fill="rgb(243,224,36)" fg:x="1759637" fg:w="565"/><text x="73.6527%" y="431.50"></text></g><g><title>enqueue_entity (441 samples, 0.02%)</title><rect x="73.4079%" y="405" width="0.0184%" height="15" fill="rgb(205,229,51)" fg:x="1759761" fg:w="441"/><text x="73.6579%" y="415.50"></text></g><g><title>ttwu_do_activate (913 samples, 0.04%)</title><rect x="73.4003%" y="437" width="0.0381%" height="15" fill="rgb(223,189,4)" fg:x="1759578" fg:w="913"/><text x="73.6503%" y="447.50"></text></g><g><title>psi_task_change (289 samples, 0.01%)</title><rect x="73.4263%" y="421" width="0.0121%" height="15" fill="rgb(249,167,54)" fg:x="1760202" fg:w="289"/><text x="73.6763%" y="431.50"></text></g><g><title>ttwu_do_wakeup (290 samples, 0.01%)</title><rect x="73.4383%" y="437" width="0.0121%" height="15" fill="rgb(218,34,28)" fg:x="1760491" fg:w="290"/><text x="73.6883%" y="447.50"></text></g><g><title>check_preempt_curr (280 samples, 0.01%)</title><rect x="73.4388%" y="421" width="0.0117%" height="15" fill="rgb(232,109,42)" fg:x="1760501" fg:w="280"/><text x="73.6888%" y="431.50"></text></g><g><title>try_to_wake_up (2,907 samples, 0.12%)</title><rect x="73.3366%" y="453" width="0.1213%" height="15" fill="rgb(248,214,46)" fg:x="1758052" fg:w="2907"/><text x="73.5866%" y="463.50"></text></g><g><title>__queue_work (3,931 samples, 0.16%)</title><rect x="73.2939%" y="469" width="0.1640%" height="15" fill="rgb(244,216,40)" fg:x="1757029" fg:w="3931"/><text x="73.5439%" y="479.50"></text></g><g><title>btrfs_btree_balance_dirty (5,536 samples, 0.23%)</title><rect x="73.2278%" y="501" width="0.2309%" height="15" fill="rgb(231,226,31)" fg:x="1755445" fg:w="5536"/><text x="73.4778%" y="511.50"></text></g><g><title>queue_work_on (4,015 samples, 0.17%)</title><rect x="73.2913%" y="485" width="0.1675%" height="15" fill="rgb(238,38,43)" fg:x="1756966" fg:w="4015"/><text x="73.5413%" y="495.50"></text></g><g><title>mutex_lock (567 samples, 0.02%)</title><rect x="73.4664%" y="485" width="0.0237%" height="15" fill="rgb(208,88,43)" fg:x="1761164" fg:w="567"/><text x="73.7164%" y="495.50"></text></g><g><title>btrfs_find_free_ino (1,169 samples, 0.05%)</title><rect x="73.4614%" y="501" width="0.0488%" height="15" fill="rgb(205,136,37)" fg:x="1761043" fg:w="1169"/><text x="73.7114%" y="511.50"></text></g><g><title>mutex_unlock (481 samples, 0.02%)</title><rect x="73.4901%" y="485" width="0.0201%" height="15" fill="rgb(237,34,14)" fg:x="1761731" fg:w="481"/><text x="73.7401%" y="495.50"></text></g><g><title>_raw_spin_lock (298 samples, 0.01%)</title><rect x="73.7939%" y="405" width="0.0124%" height="15" fill="rgb(236,193,44)" fg:x="1769014" fg:w="298"/><text x="74.0439%" y="415.50"></text></g><g><title>select_task_rq_fair (998 samples, 0.04%)</title><rect x="73.8161%" y="405" width="0.0416%" height="15" fill="rgb(231,48,10)" fg:x="1769548" fg:w="998"/><text x="74.0661%" y="415.50"></text></g><g><title>update_cfs_rq_h_load (244 samples, 0.01%)</title><rect x="73.8476%" y="389" width="0.0102%" height="15" fill="rgb(213,141,34)" fg:x="1770302" fg:w="244"/><text x="74.0976%" y="399.50"></text></g><g><title>enqueue_entity (983 samples, 0.04%)</title><rect x="73.8762%" y="373" width="0.0410%" height="15" fill="rgb(249,130,34)" fg:x="1770987" fg:w="983"/><text x="74.1262%" y="383.50"></text></g><g><title>update_load_avg (375 samples, 0.02%)</title><rect x="73.9015%" y="357" width="0.0156%" height="15" fill="rgb(219,42,41)" fg:x="1771595" fg:w="375"/><text x="74.1515%" y="367.50"></text></g><g><title>enqueue_task_fair (1,266 samples, 0.05%)</title><rect x="73.8651%" y="389" width="0.0528%" height="15" fill="rgb(224,100,54)" fg:x="1770722" fg:w="1266"/><text x="74.1151%" y="399.50"></text></g><g><title>ttwu_do_activate (2,614 samples, 0.11%)</title><rect x="73.8611%" y="405" width="0.1090%" height="15" fill="rgb(229,200,27)" fg:x="1770626" fg:w="2614"/><text x="74.1111%" y="415.50"></text></g><g><title>psi_task_change (1,250 samples, 0.05%)</title><rect x="73.9180%" y="389" width="0.0521%" height="15" fill="rgb(217,118,10)" fg:x="1771990" fg:w="1250"/><text x="74.1680%" y="399.50"></text></g><g><title>psi_group_change (1,068 samples, 0.04%)</title><rect x="73.9256%" y="373" width="0.0446%" height="15" fill="rgb(206,22,3)" fg:x="1772172" fg:w="1068"/><text x="74.1756%" y="383.50"></text></g><g><title>ttwu_do_wakeup (317 samples, 0.01%)</title><rect x="73.9702%" y="405" width="0.0132%" height="15" fill="rgb(232,163,46)" fg:x="1773240" fg:w="317"/><text x="74.2202%" y="415.50"></text></g><g><title>check_preempt_curr (299 samples, 0.01%)</title><rect x="73.9709%" y="389" width="0.0125%" height="15" fill="rgb(206,95,13)" fg:x="1773258" fg:w="299"/><text x="74.2209%" y="399.50"></text></g><g><title>ttwu_queue_wakelist (666 samples, 0.03%)</title><rect x="73.9834%" y="405" width="0.0278%" height="15" fill="rgb(253,154,18)" fg:x="1773557" fg:w="666"/><text x="74.2334%" y="415.50"></text></g><g><title>__wake_up_common (11,968 samples, 0.50%)</title><rect x="73.5221%" y="453" width="0.4992%" height="15" fill="rgb(219,32,23)" fg:x="1762498" fg:w="11968"/><text x="73.7721%" y="463.50"></text></g><g><title>autoremove_wake_function (11,721 samples, 0.49%)</title><rect x="73.5324%" y="437" width="0.4889%" height="15" fill="rgb(230,191,45)" fg:x="1762745" fg:w="11721"/><text x="73.7824%" y="447.50"></text></g><g><title>try_to_wake_up (11,610 samples, 0.48%)</title><rect x="73.5370%" y="421" width="0.4843%" height="15" fill="rgb(229,64,36)" fg:x="1762856" fg:w="11610"/><text x="73.7870%" y="431.50"></text></g><g><title>update_rq_clock (243 samples, 0.01%)</title><rect x="74.0112%" y="405" width="0.0101%" height="15" fill="rgb(205,129,25)" fg:x="1774223" fg:w="243"/><text x="74.2612%" y="415.50"></text></g><g><title>__wake_up_common_lock (12,293 samples, 0.51%)</title><rect x="73.5178%" y="469" width="0.5128%" height="15" fill="rgb(254,112,7)" fg:x="1762395" fg:w="12293"/><text x="73.7678%" y="479.50"></text></g><g><title>btrfs_tree_unlock (320 samples, 0.01%)</title><rect x="74.0306%" y="469" width="0.0133%" height="15" fill="rgb(226,53,48)" fg:x="1774688" fg:w="320"/><text x="74.2806%" y="479.50"></text></g><g><title>_raw_spin_lock (354 samples, 0.01%)</title><rect x="74.0925%" y="453" width="0.0148%" height="15" fill="rgb(214,153,38)" fg:x="1776174" fg:w="354"/><text x="74.3425%" y="463.50"></text></g><g><title>free_extent_buffer.part.0 (1,503 samples, 0.06%)</title><rect x="74.0449%" y="469" width="0.0627%" height="15" fill="rgb(243,101,7)" fg:x="1775032" fg:w="1503"/><text x="74.2949%" y="479.50"></text></g><g><title>btrfs_free_path (14,614 samples, 0.61%)</title><rect x="73.5101%" y="501" width="0.6096%" height="15" fill="rgb(240,140,22)" fg:x="1762212" fg:w="14614"/><text x="73.7601%" y="511.50"></text></g><g><title>btrfs_release_path (14,599 samples, 0.61%)</title><rect x="73.5108%" y="485" width="0.6090%" height="15" fill="rgb(235,114,2)" fg:x="1762227" fg:w="14599"/><text x="73.7608%" y="495.50"></text></g><g><title>release_extent_buffer (291 samples, 0.01%)</title><rect x="74.1076%" y="469" width="0.0121%" height="15" fill="rgb(242,59,12)" fg:x="1776535" fg:w="291"/><text x="74.3576%" y="479.50"></text></g><g><title>btrfs_init_acl (702 samples, 0.03%)</title><rect x="74.1254%" y="501" width="0.0293%" height="15" fill="rgb(252,134,9)" fg:x="1776961" fg:w="702"/><text x="74.3754%" y="511.50"></text></g><g><title>_raw_read_lock (510 samples, 0.02%)</title><rect x="74.2796%" y="437" width="0.0213%" height="15" fill="rgb(236,4,44)" fg:x="1780659" fg:w="510"/><text x="74.5296%" y="447.50"></text></g><g><title>finish_wait (2,236 samples, 0.09%)</title><rect x="74.3022%" y="437" width="0.0933%" height="15" fill="rgb(254,172,41)" fg:x="1781199" fg:w="2236"/><text x="74.5522%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (2,141 samples, 0.09%)</title><rect x="74.3061%" y="421" width="0.0893%" height="15" fill="rgb(244,63,20)" fg:x="1781294" fg:w="2141"/><text x="74.5561%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,051 samples, 0.09%)</title><rect x="74.3099%" y="405" width="0.0856%" height="15" fill="rgb(250,73,31)" fg:x="1781384" fg:w="2051"/><text x="74.5599%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,927 samples, 0.21%)</title><rect x="74.4156%" y="421" width="0.2055%" height="15" fill="rgb(241,38,36)" fg:x="1783918" fg:w="4927"/><text x="74.6656%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,678 samples, 0.20%)</title><rect x="74.4260%" y="405" width="0.1951%" height="15" fill="rgb(245,211,2)" fg:x="1784167" fg:w="4678"/><text x="74.6760%" y="415.50"></text></g><g><title>prepare_to_wait_event (5,499 samples, 0.23%)</title><rect x="74.3956%" y="437" width="0.2294%" height="15" fill="rgb(206,120,28)" fg:x="1783440" fg:w="5499"/><text x="74.6456%" y="447.50"></text></g><g><title>queued_read_lock_slowpath (8,165 samples, 0.34%)</title><rect x="74.6250%" y="437" width="0.3406%" height="15" fill="rgb(211,59,34)" fg:x="1788939" fg:w="8165"/><text x="74.8750%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (6,083 samples, 0.25%)</title><rect x="74.7119%" y="421" width="0.2538%" height="15" fill="rgb(233,168,5)" fg:x="1791021" fg:w="6083"/><text x="74.9619%" y="431.50"></text></g><g><title>update_curr (329 samples, 0.01%)</title><rect x="75.0021%" y="373" width="0.0137%" height="15" fill="rgb(234,33,13)" fg:x="1797978" fg:w="329"/><text x="75.2521%" y="383.50"></text></g><g><title>dequeue_entity (884 samples, 0.04%)</title><rect x="74.9913%" y="389" width="0.0369%" height="15" fill="rgb(231,150,26)" fg:x="1797720" fg:w="884"/><text x="75.2413%" y="399.50"></text></g><g><title>update_load_avg (297 samples, 0.01%)</title><rect x="75.0158%" y="373" width="0.0124%" height="15" fill="rgb(217,191,4)" fg:x="1798307" fg:w="297"/><text x="75.2658%" y="383.50"></text></g><g><title>dequeue_task_fair (1,032 samples, 0.04%)</title><rect x="74.9872%" y="405" width="0.0430%" height="15" fill="rgb(246,198,38)" fg:x="1797621" fg:w="1032"/><text x="75.2372%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (1,367 samples, 0.06%)</title><rect x="75.0387%" y="389" width="0.0570%" height="15" fill="rgb(245,64,37)" fg:x="1798855" fg:w="1367"/><text x="75.2887%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,323 samples, 0.06%)</title><rect x="75.0405%" y="373" width="0.0552%" height="15" fill="rgb(250,30,36)" fg:x="1798899" fg:w="1323"/><text x="75.2905%" y="383.50"></text></g><g><title>native_write_msr (1,302 samples, 0.05%)</title><rect x="75.0414%" y="357" width="0.0543%" height="15" fill="rgb(217,86,53)" fg:x="1798920" fg:w="1302"/><text x="75.2914%" y="367.50"></text></g><g><title>finish_task_switch (1,637 samples, 0.07%)</title><rect x="75.0303%" y="405" width="0.0683%" height="15" fill="rgb(228,157,16)" fg:x="1798653" fg:w="1637"/><text x="75.2803%" y="415.50"></text></g><g><title>psi_task_change (754 samples, 0.03%)</title><rect x="75.1151%" y="405" width="0.0315%" height="15" fill="rgb(217,59,31)" fg:x="1800686" fg:w="754"/><text x="75.3651%" y="415.50"></text></g><g><title>psi_group_change (627 samples, 0.03%)</title><rect x="75.1204%" y="389" width="0.0262%" height="15" fill="rgb(237,138,41)" fg:x="1800813" fg:w="627"/><text x="75.3704%" y="399.50"></text></g><g><title>__btrfs_tree_read_lock (21,576 samples, 0.90%)</title><rect x="74.2574%" y="453" width="0.9000%" height="15" fill="rgb(227,91,49)" fg:x="1780127" fg:w="21576"/><text x="74.5074%" y="463.50"></text></g><g><title>schedule (4,599 samples, 0.19%)</title><rect x="74.9656%" y="437" width="0.1918%" height="15" fill="rgb(247,21,44)" fg:x="1797104" fg:w="4599"/><text x="75.2156%" y="447.50"></text></g><g><title>__schedule (4,544 samples, 0.19%)</title><rect x="74.9679%" y="421" width="0.1896%" height="15" fill="rgb(219,210,51)" fg:x="1797159" fg:w="4544"/><text x="75.2179%" y="431.50"></text></g><g><title>__btrfs_read_lock_root_node (22,714 samples, 0.95%)</title><rect x="74.2519%" y="469" width="0.9475%" height="15" fill="rgb(209,140,6)" fg:x="1779995" fg:w="22714"/><text x="74.5019%" y="479.50"></text></g><g><title>btrfs_root_node (1,006 samples, 0.04%)</title><rect x="75.1575%" y="453" width="0.0420%" height="15" fill="rgb(221,188,24)" fg:x="1801703" fg:w="1006"/><text x="75.4075%" y="463.50"></text></g><g><title>_raw_write_lock (242 samples, 0.01%)</title><rect x="75.2347%" y="453" width="0.0101%" height="15" fill="rgb(232,154,20)" fg:x="1803555" fg:w="242"/><text x="75.4847%" y="463.50"></text></g><g><title>finish_wait (1,623 samples, 0.07%)</title><rect x="75.2449%" y="453" width="0.0677%" height="15" fill="rgb(244,137,50)" fg:x="1803798" fg:w="1623"/><text x="75.4949%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (1,468 samples, 0.06%)</title><rect x="75.2513%" y="437" width="0.0612%" height="15" fill="rgb(225,185,43)" fg:x="1803953" fg:w="1468"/><text x="75.5013%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,284 samples, 0.05%)</title><rect x="75.2590%" y="421" width="0.0536%" height="15" fill="rgb(213,205,38)" fg:x="1804137" fg:w="1284"/><text x="75.5090%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (5,549 samples, 0.23%)</title><rect x="75.3564%" y="437" width="0.2315%" height="15" fill="rgb(236,73,12)" fg:x="1806471" fg:w="5549"/><text x="75.6064%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,818 samples, 0.20%)</title><rect x="75.3869%" y="421" width="0.2010%" height="15" fill="rgb(235,219,13)" fg:x="1807202" fg:w="4818"/><text x="75.6369%" y="431.50"></text></g><g><title>prepare_to_wait_event (6,813 samples, 0.28%)</title><rect x="75.3146%" y="453" width="0.2842%" height="15" fill="rgb(218,59,36)" fg:x="1805470" fg:w="6813"/><text x="75.5646%" y="463.50"></text></g><g><title>_raw_spin_unlock_irqrestore (263 samples, 0.01%)</title><rect x="75.5879%" y="437" width="0.0110%" height="15" fill="rgb(205,110,39)" fg:x="1812020" fg:w="263"/><text x="75.8379%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (6,998 samples, 0.29%)</title><rect x="75.5988%" y="453" width="0.2919%" height="15" fill="rgb(218,206,42)" fg:x="1812283" fg:w="6998"/><text x="75.8488%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,882 samples, 0.16%)</title><rect x="75.7288%" y="437" width="0.1619%" height="15" fill="rgb(248,125,24)" fg:x="1815399" fg:w="3882"/><text x="75.9788%" y="447.50"></text></g><g><title>__perf_event_task_sched_out (423 samples, 0.02%)</title><rect x="75.9307%" y="421" width="0.0176%" height="15" fill="rgb(242,28,27)" fg:x="1820240" fg:w="423"/><text x="76.1807%" y="431.50"></text></g><g><title>update_cfs_group (293 samples, 0.01%)</title><rect x="75.9931%" y="389" width="0.0122%" height="15" fill="rgb(216,228,15)" fg:x="1821735" fg:w="293"/><text x="76.2431%" y="399.50"></text></g><g><title>update_curr (972 samples, 0.04%)</title><rect x="76.0053%" y="389" width="0.0405%" height="15" fill="rgb(235,116,46)" fg:x="1822028" fg:w="972"/><text x="76.2553%" y="399.50"></text></g><g><title>__update_load_avg_se (298 samples, 0.01%)</title><rect x="76.0678%" y="373" width="0.0124%" height="15" fill="rgb(224,18,32)" fg:x="1823525" fg:w="298"/><text x="76.3178%" y="383.50"></text></g><g><title>dequeue_entity (2,676 samples, 0.11%)</title><rect x="75.9693%" y="405" width="0.1116%" height="15" fill="rgb(252,5,12)" fg:x="1821164" fg:w="2676"/><text x="76.2193%" y="415.50"></text></g><g><title>update_load_avg (840 samples, 0.04%)</title><rect x="76.0459%" y="389" width="0.0350%" height="15" fill="rgb(251,36,5)" fg:x="1823000" fg:w="840"/><text x="76.2959%" y="399.50"></text></g><g><title>dequeue_task_fair (3,144 samples, 0.13%)</title><rect x="75.9552%" y="421" width="0.1312%" height="15" fill="rgb(217,53,14)" fg:x="1820825" fg:w="3144"/><text x="76.2052%" y="431.50"></text></g><g><title>__perf_event_task_sched_in (3,205 samples, 0.13%)</title><rect x="76.1096%" y="405" width="0.1337%" height="15" fill="rgb(215,86,45)" fg:x="1824527" fg:w="3205"/><text x="76.3596%" y="415.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,135 samples, 0.13%)</title><rect x="76.1125%" y="389" width="0.1308%" height="15" fill="rgb(242,169,11)" fg:x="1824597" fg:w="3135"/><text x="76.3625%" y="399.50"></text></g><g><title>native_write_msr (3,093 samples, 0.13%)</title><rect x="76.1143%" y="373" width="0.1290%" height="15" fill="rgb(211,213,45)" fg:x="1824639" fg:w="3093"/><text x="76.3643%" y="383.50"></text></g><g><title>finish_task_switch (3,927 samples, 0.16%)</title><rect x="76.0863%" y="421" width="0.1638%" height="15" fill="rgb(205,88,11)" fg:x="1823969" fg:w="3927"/><text x="76.3363%" y="431.50"></text></g><g><title>newidle_balance (285 samples, 0.01%)</title><rect x="76.2556%" y="405" width="0.0119%" height="15" fill="rgb(252,69,26)" fg:x="1828028" fg:w="285"/><text x="76.5056%" y="415.50"></text></g><g><title>pick_next_task_fair (509 samples, 0.02%)</title><rect x="76.2503%" y="421" width="0.0212%" height="15" fill="rgb(246,123,37)" fg:x="1827901" fg:w="509"/><text x="76.5003%" y="431.50"></text></g><g><title>pick_next_task_idle (600 samples, 0.03%)</title><rect x="76.2716%" y="421" width="0.0250%" height="15" fill="rgb(212,205,5)" fg:x="1828410" fg:w="600"/><text x="76.5216%" y="431.50"></text></g><g><title>__update_idle_core (514 samples, 0.02%)</title><rect x="76.2751%" y="405" width="0.0214%" height="15" fill="rgb(253,148,0)" fg:x="1828496" fg:w="514"/><text x="76.5251%" y="415.50"></text></g><g><title>psi_task_change (2,402 samples, 0.10%)</title><rect x="76.2966%" y="421" width="0.1002%" height="15" fill="rgb(239,22,4)" fg:x="1829010" fg:w="2402"/><text x="76.5466%" y="431.50"></text></g><g><title>psi_group_change (2,015 samples, 0.08%)</title><rect x="76.3127%" y="405" width="0.0841%" height="15" fill="rgb(226,26,53)" fg:x="1829397" fg:w="2015"/><text x="76.5627%" y="415.50"></text></g><g><title>record_times (495 samples, 0.02%)</title><rect x="76.3761%" y="389" width="0.0206%" height="15" fill="rgb(225,229,45)" fg:x="1830917" fg:w="495"/><text x="76.6261%" y="399.50"></text></g><g><title>sched_clock_cpu (321 samples, 0.01%)</title><rect x="76.3834%" y="373" width="0.0134%" height="15" fill="rgb(220,60,37)" fg:x="1831091" fg:w="321"/><text x="76.6334%" y="383.50"></text></g><g><title>sched_clock (276 samples, 0.01%)</title><rect x="76.3853%" y="357" width="0.0115%" height="15" fill="rgb(217,180,35)" fg:x="1831136" fg:w="276"/><text x="76.6353%" y="367.50"></text></g><g><title>native_sched_clock (267 samples, 0.01%)</title><rect x="76.3856%" y="341" width="0.0111%" height="15" fill="rgb(229,7,53)" fg:x="1831145" fg:w="267"/><text x="76.6356%" y="351.50"></text></g><g><title>__btrfs_tree_lock (29,310 samples, 1.22%)</title><rect x="75.1994%" y="469" width="1.2227%" height="15" fill="rgb(254,137,3)" fg:x="1802709" fg:w="29310"/><text x="75.4494%" y="479.50"></text></g><g><title>schedule (12,738 samples, 0.53%)</title><rect x="75.8907%" y="453" width="0.5314%" height="15" fill="rgb(215,140,41)" fg:x="1819281" fg:w="12738"/><text x="76.1407%" y="463.50"></text></g><g><title>__schedule (12,522 samples, 0.52%)</title><rect x="75.8998%" y="437" width="0.5224%" height="15" fill="rgb(250,80,15)" fg:x="1819497" fg:w="12522"/><text x="76.1498%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (908 samples, 0.04%)</title><rect x="76.4302%" y="469" width="0.0379%" height="15" fill="rgb(252,191,6)" fg:x="1832213" fg:w="908"/><text x="76.6802%" y="479.50"></text></g><g><title>leaf_space_used (661 samples, 0.03%)</title><rect x="76.4405%" y="453" width="0.0276%" height="15" fill="rgb(246,217,18)" fg:x="1832460" fg:w="661"/><text x="76.6905%" y="463.50"></text></g><g><title>btrfs_get_32 (511 samples, 0.02%)</title><rect x="76.4468%" y="437" width="0.0213%" height="15" fill="rgb(223,93,7)" fg:x="1832610" fg:w="511"/><text x="76.6968%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_read (324 samples, 0.01%)</title><rect x="76.5033%" y="453" width="0.0135%" height="15" fill="rgb(225,55,52)" fg:x="1833966" fg:w="324"/><text x="76.7533%" y="463.50"></text></g><g><title>btrfs_set_path_blocking (1,353 samples, 0.06%)</title><rect x="76.4755%" y="469" width="0.0564%" height="15" fill="rgb(240,31,24)" fg:x="1833300" fg:w="1353"/><text x="76.7255%" y="479.50"></text></g><g><title>btrfs_set_lock_blocking_write (363 samples, 0.02%)</title><rect x="76.5168%" y="453" width="0.0151%" height="15" fill="rgb(205,56,52)" fg:x="1834290" fg:w="363"/><text x="76.7668%" y="463.50"></text></g><g><title>_raw_write_lock (504 samples, 0.02%)</title><rect x="76.5421%" y="453" width="0.0210%" height="15" fill="rgb(246,146,12)" fg:x="1834896" fg:w="504"/><text x="76.7921%" y="463.50"></text></g><g><title>btrfs_try_tree_write_lock (22,741 samples, 0.95%)</title><rect x="76.5325%" y="469" width="0.9486%" height="15" fill="rgb(239,84,36)" fg:x="1834665" fg:w="22741"/><text x="76.7825%" y="479.50"></text></g><g><title>queued_write_lock_slowpath (22,005 samples, 0.92%)</title><rect x="76.5632%" y="453" width="0.9179%" height="15" fill="rgb(207,41,40)" fg:x="1835401" fg:w="22005"/><text x="76.8132%" y="463.50"></text></g><g><title>native_queued_spin_lock_slowpath (8,686 samples, 0.36%)</title><rect x="77.1188%" y="437" width="0.3623%" height="15" fill="rgb(241,179,25)" fg:x="1848720" fg:w="8686"/><text x="77.3688%" y="447.50"></text></g><g><title>generic_bin_search.constprop.0 (3,648 samples, 0.15%)</title><rect x="77.4812%" y="469" width="0.1522%" height="15" fill="rgb(210,0,34)" fg:x="1857407" fg:w="3648"/><text x="77.7312%" y="479.50"></text></g><g><title>btrfs_buffer_uptodate (615 samples, 0.03%)</title><rect x="77.6584%" y="453" width="0.0257%" height="15" fill="rgb(225,217,29)" fg:x="1861656" fg:w="615"/><text x="77.9084%" y="463.50"></text></g><g><title>verify_parent_transid (476 samples, 0.02%)</title><rect x="77.6642%" y="437" width="0.0199%" height="15" fill="rgb(216,191,38)" fg:x="1861795" fg:w="476"/><text x="77.9142%" y="447.50"></text></g><g><title>btrfs_get_64 (759 samples, 0.03%)</title><rect x="77.6841%" y="453" width="0.0317%" height="15" fill="rgb(232,140,52)" fg:x="1862271" fg:w="759"/><text x="77.9341%" y="463.50"></text></g><g><title>btrfs_verify_level_key (246 samples, 0.01%)</title><rect x="77.7181%" y="453" width="0.0103%" height="15" fill="rgb(223,158,51)" fg:x="1863086" fg:w="246"/><text x="77.9681%" y="463.50"></text></g><g><title>__radix_tree_lookup (1,803 samples, 0.08%)</title><rect x="77.7981%" y="437" width="0.0752%" height="15" fill="rgb(235,29,51)" fg:x="1865004" fg:w="1803"/><text x="78.0481%" y="447.50"></text></g><g><title>mark_page_accessed (668 samples, 0.03%)</title><rect x="77.8894%" y="421" width="0.0279%" height="15" fill="rgb(215,181,18)" fg:x="1867194" fg:w="668"/><text x="78.1394%" y="431.50"></text></g><g><title>mark_extent_buffer_accessed (1,049 samples, 0.04%)</title><rect x="77.8739%" y="437" width="0.0438%" height="15" fill="rgb(227,125,34)" fg:x="1866822" fg:w="1049"/><text x="78.1239%" y="447.50"></text></g><g><title>find_extent_buffer (4,578 samples, 0.19%)</title><rect x="77.7283%" y="453" width="0.1910%" height="15" fill="rgb(230,197,49)" fg:x="1863332" fg:w="4578"/><text x="77.9783%" y="463.50"></text></g><g><title>read_block_for_search.isra.0 (7,516 samples, 0.31%)</title><rect x="77.6333%" y="469" width="0.3135%" height="15" fill="rgb(239,141,16)" fg:x="1861055" fg:w="7516"/><text x="77.8833%" y="479.50"></text></g><g><title>read_extent_buffer (661 samples, 0.03%)</title><rect x="77.9193%" y="453" width="0.0276%" height="15" fill="rgb(225,105,43)" fg:x="1867910" fg:w="661"/><text x="78.1693%" y="463.50"></text></g><g><title>alloc_extent_buffer (279 samples, 0.01%)</title><rect x="77.9502%" y="421" width="0.0116%" height="15" fill="rgb(214,131,14)" fg:x="1868651" fg:w="279"/><text x="78.2002%" y="431.50"></text></g><g><title>btrfs_add_delayed_tree_ref (262 samples, 0.01%)</title><rect x="77.9618%" y="421" width="0.0109%" height="15" fill="rgb(229,177,11)" fg:x="1868930" fg:w="262"/><text x="78.2118%" y="431.50"></text></g><g><title>btrfs_reserve_extent (413 samples, 0.02%)</title><rect x="77.9743%" y="421" width="0.0172%" height="15" fill="rgb(231,180,14)" fg:x="1869228" fg:w="413"/><text x="78.2243%" y="431.50"></text></g><g><title>find_free_extent (377 samples, 0.02%)</title><rect x="77.9758%" y="405" width="0.0157%" height="15" fill="rgb(232,88,2)" fg:x="1869264" fg:w="377"/><text x="78.2258%" y="415.50"></text></g><g><title>set_extent_bit (291 samples, 0.01%)</title><rect x="77.9940%" y="421" width="0.0121%" height="15" fill="rgb(205,220,8)" fg:x="1869700" fg:w="291"/><text x="78.2440%" y="431.50"></text></g><g><title>__set_extent_bit (286 samples, 0.01%)</title><rect x="77.9942%" y="405" width="0.0119%" height="15" fill="rgb(225,23,53)" fg:x="1869705" fg:w="286"/><text x="78.2442%" y="415.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,390 samples, 0.06%)</title><rect x="77.9487%" y="453" width="0.0580%" height="15" fill="rgb(213,62,29)" fg:x="1868616" fg:w="1390"/><text x="78.1987%" y="463.50"></text></g><g><title>btrfs_alloc_tree_block (1,384 samples, 0.06%)</title><rect x="77.9490%" y="437" width="0.0577%" height="15" fill="rgb(227,75,7)" fg:x="1868622" fg:w="1384"/><text x="78.1990%" y="447.50"></text></g><g><title>copy_for_split (654 samples, 0.03%)</title><rect x="78.0085%" y="453" width="0.0273%" height="15" fill="rgb(207,105,14)" fg:x="1870049" fg:w="654"/><text x="78.2585%" y="463.50"></text></g><g><title>__push_leaf_left (910 samples, 0.04%)</title><rect x="78.0382%" y="437" width="0.0380%" height="15" fill="rgb(245,62,29)" fg:x="1870761" fg:w="910"/><text x="78.2882%" y="447.50"></text></g><g><title>push_leaf_left (1,194 samples, 0.05%)</title><rect x="78.0362%" y="453" width="0.0498%" height="15" fill="rgb(236,202,4)" fg:x="1870713" fg:w="1194"/><text x="78.2862%" y="463.50"></text></g><g><title>split_leaf (3,371 samples, 0.14%)</title><rect x="77.9470%" y="469" width="0.1406%" height="15" fill="rgb(250,67,1)" fg:x="1868575" fg:w="3371"/><text x="78.1970%" y="479.50"></text></g><g><title>__list_del_entry_valid (311 samples, 0.01%)</title><rect x="78.1362%" y="405" width="0.0130%" height="15" fill="rgb(253,115,44)" fg:x="1873111" fg:w="311"/><text x="78.3862%" y="415.50"></text></g><g><title>_raw_spin_lock (641 samples, 0.03%)</title><rect x="78.2105%" y="389" width="0.0267%" height="15" fill="rgb(251,139,18)" fg:x="1874892" fg:w="641"/><text x="78.4605%" y="399.50"></text></g><g><title>native_queued_spin_lock_slowpath (452 samples, 0.02%)</title><rect x="78.2184%" y="373" width="0.0189%" height="15" fill="rgb(218,22,32)" fg:x="1875081" fg:w="452"/><text x="78.4684%" y="383.50"></text></g><g><title>_raw_spin_lock_irqsave (508 samples, 0.02%)</title><rect x="78.2373%" y="389" width="0.0212%" height="15" fill="rgb(243,53,5)" fg:x="1875533" fg:w="508"/><text x="78.4873%" y="399.50"></text></g><g><title>available_idle_cpu (507 samples, 0.02%)</title><rect x="78.3054%" y="373" width="0.0211%" height="15" fill="rgb(227,56,16)" fg:x="1877165" fg:w="507"/><text x="78.5554%" y="383.50"></text></g><g><title>select_task_rq_fair (2,366 samples, 0.10%)</title><rect x="78.2608%" y="389" width="0.0987%" height="15" fill="rgb(245,53,0)" fg:x="1876098" fg:w="2366"/><text x="78.5108%" y="399.50"></text></g><g><title>update_cfs_rq_h_load (462 samples, 0.02%)</title><rect x="78.3403%" y="373" width="0.0193%" height="15" fill="rgb(216,170,35)" fg:x="1878002" fg:w="462"/><text x="78.5903%" y="383.50"></text></g><g><title>set_task_cpu (240 samples, 0.01%)</title><rect x="78.3595%" y="389" width="0.0100%" height="15" fill="rgb(211,200,8)" fg:x="1878464" fg:w="240"/><text x="78.6095%" y="399.50"></text></g><g><title>update_curr (350 samples, 0.01%)</title><rect x="78.4501%" y="341" width="0.0146%" height="15" fill="rgb(228,204,44)" fg:x="1880634" fg:w="350"/><text x="78.7001%" y="351.50"></text></g><g><title>enqueue_entity (2,378 samples, 0.10%)</title><rect x="78.3988%" y="357" width="0.0992%" height="15" fill="rgb(214,121,17)" fg:x="1879406" fg:w="2378"/><text x="78.6488%" y="367.50"></text></g><g><title>update_load_avg (800 samples, 0.03%)</title><rect x="78.4647%" y="341" width="0.0334%" height="15" fill="rgb(233,64,38)" fg:x="1880984" fg:w="800"/><text x="78.7147%" y="351.50"></text></g><g><title>enqueue_task_fair (2,989 samples, 0.12%)</title><rect x="78.3797%" y="373" width="0.1247%" height="15" fill="rgb(253,54,19)" fg:x="1878948" fg:w="2989"/><text x="78.6297%" y="383.50"></text></g><g><title>ttwu_do_activate (6,009 samples, 0.25%)</title><rect x="78.3696%" y="389" width="0.2507%" height="15" fill="rgb(253,94,18)" fg:x="1878704" fg:w="6009"/><text x="78.6196%" y="399.50"></text></g><g><title>psi_task_change (2,769 samples, 0.12%)</title><rect x="78.5047%" y="373" width="0.1155%" height="15" fill="rgb(227,57,52)" fg:x="1881944" fg:w="2769"/><text x="78.7547%" y="383.50"></text></g><g><title>psi_group_change (2,470 samples, 0.10%)</title><rect x="78.5172%" y="357" width="0.1030%" height="15" fill="rgb(230,228,50)" fg:x="1882243" fg:w="2470"/><text x="78.7672%" y="367.50"></text></g><g><title>record_times (390 samples, 0.02%)</title><rect x="78.6040%" y="341" width="0.0163%" height="15" fill="rgb(217,205,27)" fg:x="1884323" fg:w="390"/><text x="78.8540%" y="351.50"></text></g><g><title>sched_clock_cpu (259 samples, 0.01%)</title><rect x="78.6094%" y="325" width="0.0108%" height="15" fill="rgb(252,71,50)" fg:x="1884454" fg:w="259"/><text x="78.8594%" y="335.50"></text></g><g><title>ttwu_do_wakeup (588 samples, 0.02%)</title><rect x="78.6202%" y="389" width="0.0245%" height="15" fill="rgb(209,86,4)" fg:x="1884713" fg:w="588"/><text x="78.8702%" y="399.50"></text></g><g><title>check_preempt_curr (528 samples, 0.02%)</title><rect x="78.6227%" y="373" width="0.0220%" height="15" fill="rgb(229,94,0)" fg:x="1884773" fg:w="528"/><text x="78.8727%" y="383.50"></text></g><g><title>ttwu_queue_wakelist (296 samples, 0.01%)</title><rect x="78.6447%" y="389" width="0.0123%" height="15" fill="rgb(252,223,21)" fg:x="1885301" fg:w="296"/><text x="78.8947%" y="399.50"></text></g><g><title>__wake_up_common (13,243 samples, 0.55%)</title><rect x="78.1256%" y="437" width="0.5524%" height="15" fill="rgb(230,210,4)" fg:x="1872855" fg:w="13243"/><text x="78.3756%" y="447.50"></text></g><g><title>autoremove_wake_function (13,037 samples, 0.54%)</title><rect x="78.1342%" y="421" width="0.5438%" height="15" fill="rgb(240,149,38)" fg:x="1873061" fg:w="13037"/><text x="78.3842%" y="431.50"></text></g><g><title>try_to_wake_up (12,663 samples, 0.53%)</title><rect x="78.1498%" y="405" width="0.5282%" height="15" fill="rgb(254,105,20)" fg:x="1873435" fg:w="12663"/><text x="78.3998%" y="415.50"></text></g><g><title>update_rq_clock (501 samples, 0.02%)</title><rect x="78.6571%" y="389" width="0.0209%" height="15" fill="rgb(253,87,46)" fg:x="1885597" fg:w="501"/><text x="78.9071%" y="399.50"></text></g><g><title>__wake_up_common_lock (13,581 samples, 0.57%)</title><rect x="78.1228%" y="453" width="0.5665%" height="15" fill="rgb(253,116,33)" fg:x="1872788" fg:w="13581"/><text x="78.3728%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock (545 samples, 0.02%)</title><rect x="78.6895%" y="453" width="0.0227%" height="15" fill="rgb(229,198,5)" fg:x="1886373" fg:w="545"/><text x="78.9395%" y="463.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (305 samples, 0.01%)</title><rect x="78.7122%" y="453" width="0.0127%" height="15" fill="rgb(242,38,37)" fg:x="1886918" fg:w="305"/><text x="78.9622%" y="463.50"></text></g><g><title>btrfs_search_slot (109,708 samples, 4.58%)</title><rect x="74.1623%" y="485" width="4.5764%" height="15" fill="rgb(242,69,53)" fg:x="1777846" fg:w="109708"/><text x="74.4123%" y="495.50">btrfs..</text></g><g><title>unlock_up (15,566 samples, 0.65%)</title><rect x="78.0894%" y="469" width="0.6493%" height="15" fill="rgb(249,80,16)" fg:x="1871988" fg:w="15566"/><text x="78.3394%" y="479.50"></text></g><g><title>btrfs_tree_unlock (331 samples, 0.01%)</title><rect x="78.7249%" y="453" width="0.0138%" height="15" fill="rgb(206,128,11)" fg:x="1887223" fg:w="331"/><text x="78.9749%" y="463.50"></text></g><g><title>btrfs_get_32 (408 samples, 0.02%)</title><rect x="78.8020%" y="469" width="0.0170%" height="15" fill="rgb(212,35,20)" fg:x="1889071" fg:w="408"/><text x="79.0520%" y="479.50"></text></g><g><title>btrfs_get_token_32 (3,940 samples, 0.16%)</title><rect x="78.8190%" y="469" width="0.1644%" height="15" fill="rgb(236,79,13)" fg:x="1889479" fg:w="3940"/><text x="79.0690%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (567 samples, 0.02%)</title><rect x="78.9597%" y="453" width="0.0237%" height="15" fill="rgb(233,123,3)" fg:x="1892852" fg:w="567"/><text x="79.2097%" y="463.50"></text></g><g><title>btrfs_leaf_free_space (1,061 samples, 0.04%)</title><rect x="78.9834%" y="469" width="0.0443%" height="15" fill="rgb(214,93,52)" fg:x="1893419" fg:w="1061"/><text x="79.2334%" y="479.50"></text></g><g><title>leaf_space_used (904 samples, 0.04%)</title><rect x="78.9899%" y="453" width="0.0377%" height="15" fill="rgb(251,37,40)" fg:x="1893576" fg:w="904"/><text x="79.2399%" y="463.50"></text></g><g><title>btrfs_get_32 (656 samples, 0.03%)</title><rect x="79.0003%" y="437" width="0.0274%" height="15" fill="rgb(227,80,54)" fg:x="1893824" fg:w="656"/><text x="79.2503%" y="447.50"></text></g><g><title>btrfs_mark_buffer_dirty (757 samples, 0.03%)</title><rect x="79.0276%" y="469" width="0.0316%" height="15" fill="rgb(254,48,11)" fg:x="1894480" fg:w="757"/><text x="79.2776%" y="479.50"></text></g><g><title>set_extent_buffer_dirty (379 samples, 0.02%)</title><rect x="79.0434%" y="453" width="0.0158%" height="15" fill="rgb(235,193,26)" fg:x="1894858" fg:w="379"/><text x="79.2934%" y="463.50"></text></g><g><title>btrfs_set_token_32 (3,249 samples, 0.14%)</title><rect x="79.0592%" y="469" width="0.1355%" height="15" fill="rgb(229,99,21)" fg:x="1895237" fg:w="3249"/><text x="79.3092%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (637 samples, 0.03%)</title><rect x="79.1682%" y="453" width="0.0266%" height="15" fill="rgb(211,140,41)" fg:x="1897849" fg:w="637"/><text x="79.4182%" y="463.50"></text></g><g><title>memcpy_extent_buffer (746 samples, 0.03%)</title><rect x="79.2023%" y="469" width="0.0311%" height="15" fill="rgb(240,227,30)" fg:x="1898668" fg:w="746"/><text x="79.4523%" y="479.50"></text></g><g><title>memmove (404 samples, 0.02%)</title><rect x="79.2166%" y="453" width="0.0169%" height="15" fill="rgb(215,224,45)" fg:x="1899010" fg:w="404"/><text x="79.4666%" y="463.50"></text></g><g><title>memmove_extent_buffer (1,392 samples, 0.06%)</title><rect x="79.2335%" y="469" width="0.0581%" height="15" fill="rgb(206,123,31)" fg:x="1899414" fg:w="1392"/><text x="79.4835%" y="479.50"></text></g><g><title>memmove (851 samples, 0.04%)</title><rect x="79.2560%" y="453" width="0.0355%" height="15" fill="rgb(210,138,16)" fg:x="1899955" fg:w="851"/><text x="79.5060%" y="463.50"></text></g><g><title>btrfs_insert_empty_items (123,671 samples, 5.16%)</title><rect x="74.1547%" y="501" width="5.1589%" height="15" fill="rgb(228,57,28)" fg:x="1777663" fg:w="123671"/><text x="74.4047%" y="511.50">btrfs_..</text></g><g><title>setup_items_for_insert (13,780 samples, 0.57%)</title><rect x="78.7387%" y="485" width="0.5748%" height="15" fill="rgb(242,170,10)" fg:x="1887554" fg:w="13780"/><text x="78.9887%" y="495.50"></text></g><g><title>write_extent_buffer (528 samples, 0.02%)</title><rect x="79.2915%" y="469" width="0.0220%" height="15" fill="rgb(228,214,39)" fg:x="1900806" fg:w="528"/><text x="79.5415%" y="479.50"></text></g><g><title>btrfs_mark_buffer_dirty (515 samples, 0.02%)</title><rect x="79.3136%" y="501" width="0.0215%" height="15" fill="rgb(218,179,33)" fg:x="1901334" fg:w="515"/><text x="79.5636%" y="511.50"></text></g><g><title>set_extent_buffer_dirty (384 samples, 0.02%)</title><rect x="79.3190%" y="485" width="0.0160%" height="15" fill="rgb(235,193,39)" fg:x="1901465" fg:w="384"/><text x="79.5690%" y="495.50"></text></g><g><title>_raw_spin_lock (456 samples, 0.02%)</title><rect x="79.4119%" y="485" width="0.0190%" height="15" fill="rgb(219,221,36)" fg:x="1903691" fg:w="456"/><text x="79.6619%" y="495.50"></text></g><g><title>_raw_spin_lock (466 samples, 0.02%)</title><rect x="79.5019%" y="437" width="0.0194%" height="15" fill="rgb(248,218,19)" fg:x="1905850" fg:w="466"/><text x="79.7519%" y="447.50"></text></g><g><title>free_extent_buffer.part.0 (1,637 samples, 0.07%)</title><rect x="79.4532%" y="453" width="0.0683%" height="15" fill="rgb(205,50,9)" fg:x="1904682" fg:w="1637"/><text x="79.7032%" y="463.50"></text></g><g><title>btrfs_free_path (2,508 samples, 0.10%)</title><rect x="79.4320%" y="485" width="0.1046%" height="15" fill="rgb(238,81,28)" fg:x="1904173" fg:w="2508"/><text x="79.6820%" y="495.50"></text></g><g><title>btrfs_release_path (2,486 samples, 0.10%)</title><rect x="79.4329%" y="469" width="0.1037%" height="15" fill="rgb(235,110,19)" fg:x="1904195" fg:w="2486"/><text x="79.6829%" y="479.50"></text></g><g><title>release_extent_buffer (362 samples, 0.02%)</title><rect x="79.5215%" y="453" width="0.0151%" height="15" fill="rgb(214,7,14)" fg:x="1906319" fg:w="362"/><text x="79.7715%" y="463.50"></text></g><g><title>btrfs_get_32 (307 samples, 0.01%)</title><rect x="79.5366%" y="485" width="0.0128%" height="15" fill="rgb(211,77,3)" fg:x="1906681" fg:w="307"/><text x="79.7866%" y="495.50"></text></g><g><title>_raw_read_lock (449 samples, 0.02%)</title><rect x="79.6688%" y="421" width="0.0187%" height="15" fill="rgb(229,5,9)" fg:x="1909850" fg:w="449"/><text x="79.9188%" y="431.50"></text></g><g><title>finish_wait (1,887 samples, 0.08%)</title><rect x="79.6888%" y="421" width="0.0787%" height="15" fill="rgb(225,90,11)" fg:x="1910329" fg:w="1887"/><text x="79.9388%" y="431.50"></text></g><g><title>_raw_spin_lock_irqsave (1,789 samples, 0.07%)</title><rect x="79.6929%" y="405" width="0.0746%" height="15" fill="rgb(242,56,8)" fg:x="1910427" fg:w="1789"/><text x="79.9429%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,707 samples, 0.07%)</title><rect x="79.6963%" y="389" width="0.0712%" height="15" fill="rgb(249,212,39)" fg:x="1910509" fg:w="1707"/><text x="79.9463%" y="399.50"></text></g><g><title>_raw_spin_lock_irqsave (4,563 samples, 0.19%)</title><rect x="79.7876%" y="405" width="0.1903%" height="15" fill="rgb(236,90,9)" fg:x="1912699" fg:w="4563"/><text x="80.0376%" y="415.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,288 samples, 0.18%)</title><rect x="79.7991%" y="389" width="0.1789%" height="15" fill="rgb(206,88,35)" fg:x="1912974" fg:w="4288"/><text x="80.0491%" y="399.50"></text></g><g><title>prepare_to_wait_event (5,156 samples, 0.22%)</title><rect x="79.7678%" y="421" width="0.2151%" height="15" fill="rgb(205,126,30)" fg:x="1912224" fg:w="5156"/><text x="80.0178%" y="431.50"></text></g><g><title>queued_read_lock_slowpath (7,160 samples, 0.30%)</title><rect x="79.9829%" y="421" width="0.2987%" height="15" fill="rgb(230,176,12)" fg:x="1917380" fg:w="7160"/><text x="80.2329%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (5,207 samples, 0.22%)</title><rect x="80.0644%" y="405" width="0.2172%" height="15" fill="rgb(243,19,9)" fg:x="1919333" fg:w="5207"/><text x="80.3144%" y="415.50"></text></g><g><title>update_curr (333 samples, 0.01%)</title><rect x="80.3234%" y="357" width="0.0139%" height="15" fill="rgb(245,171,17)" fg:x="1925542" fg:w="333"/><text x="80.5734%" y="367.50"></text></g><g><title>dequeue_entity (925 samples, 0.04%)</title><rect x="80.3105%" y="373" width="0.0386%" height="15" fill="rgb(227,52,21)" fg:x="1925232" fg:w="925"/><text x="80.5605%" y="383.50"></text></g><g><title>update_load_avg (282 samples, 0.01%)</title><rect x="80.3373%" y="357" width="0.0118%" height="15" fill="rgb(238,69,14)" fg:x="1925875" fg:w="282"/><text x="80.5873%" y="367.50"></text></g><g><title>dequeue_task_fair (1,098 samples, 0.05%)</title><rect x="80.3055%" y="389" width="0.0458%" height="15" fill="rgb(241,156,39)" fg:x="1925112" fg:w="1098"/><text x="80.5555%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (1,223 samples, 0.05%)</title><rect x="80.3588%" y="373" width="0.0510%" height="15" fill="rgb(212,227,28)" fg:x="1926391" fg:w="1223"/><text x="80.6088%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,176 samples, 0.05%)</title><rect x="80.3608%" y="357" width="0.0491%" height="15" fill="rgb(209,118,27)" fg:x="1926438" fg:w="1176"/><text x="80.6108%" y="367.50"></text></g><g><title>native_write_msr (1,160 samples, 0.05%)</title><rect x="80.3614%" y="341" width="0.0484%" height="15" fill="rgb(226,102,5)" fg:x="1926454" fg:w="1160"/><text x="80.6114%" y="351.50"></text></g><g><title>finish_task_switch (1,472 samples, 0.06%)</title><rect x="80.3513%" y="389" width="0.0614%" height="15" fill="rgb(223,34,3)" fg:x="1926210" fg:w="1472"/><text x="80.6013%" y="399.50"></text></g><g><title>psi_task_change (817 samples, 0.03%)</title><rect x="80.4298%" y="389" width="0.0341%" height="15" fill="rgb(221,81,38)" fg:x="1928094" fg:w="817"/><text x="80.6798%" y="399.50"></text></g><g><title>psi_group_change (681 samples, 0.03%)</title><rect x="80.4355%" y="373" width="0.0284%" height="15" fill="rgb(236,219,28)" fg:x="1928230" fg:w="681"/><text x="80.6855%" y="383.50"></text></g><g><title>__btrfs_tree_read_lock (19,789 samples, 0.83%)</title><rect x="79.6486%" y="437" width="0.8255%" height="15" fill="rgb(213,200,14)" fg:x="1909366" fg:w="19789"/><text x="79.8986%" y="447.50"></text></g><g><title>schedule (4,615 samples, 0.19%)</title><rect x="80.2816%" y="421" width="0.1925%" height="15" fill="rgb(240,33,19)" fg:x="1924540" fg:w="4615"/><text x="80.5316%" y="431.50"></text></g><g><title>__schedule (4,546 samples, 0.19%)</title><rect x="80.2845%" y="405" width="0.1896%" height="15" fill="rgb(233,113,27)" fg:x="1924609" fg:w="4546"/><text x="80.5345%" y="415.50"></text></g><g><title>__btrfs_read_lock_root_node (20,855 samples, 0.87%)</title><rect x="79.6446%" y="453" width="0.8700%" height="15" fill="rgb(220,221,18)" fg:x="1909269" fg:w="20855"/><text x="79.8946%" y="463.50"></text></g><g><title>btrfs_root_node (968 samples, 0.04%)</title><rect x="80.4741%" y="437" width="0.0404%" height="15" fill="rgb(238,92,8)" fg:x="1929156" fg:w="968"/><text x="80.7241%" y="447.50"></text></g><g><title>finish_wait (1,383 samples, 0.06%)</title><rect x="80.5531%" y="437" width="0.0577%" height="15" fill="rgb(222,164,16)" fg:x="1931048" fg:w="1383"/><text x="80.8031%" y="447.50"></text></g><g><title>_raw_spin_lock_irqsave (1,262 samples, 0.05%)</title><rect x="80.5581%" y="421" width="0.0526%" height="15" fill="rgb(241,119,3)" fg:x="1931169" fg:w="1262"/><text x="80.8081%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,103 samples, 0.05%)</title><rect x="80.5648%" y="405" width="0.0460%" height="15" fill="rgb(241,44,8)" fg:x="1931328" fg:w="1103"/><text x="80.8148%" y="415.50"></text></g><g><title>_raw_spin_lock_irqsave (4,332 samples, 0.18%)</title><rect x="80.6459%" y="421" width="0.1807%" height="15" fill="rgb(230,36,40)" fg:x="1933273" fg:w="4332"/><text x="80.8959%" y="431.50"></text></g><g><title>native_queued_spin_lock_slowpath (3,686 samples, 0.15%)</title><rect x="80.6728%" y="405" width="0.1538%" height="15" fill="rgb(243,16,36)" fg:x="1933919" fg:w="3686"/><text x="80.9228%" y="415.50"></text></g><g><title>prepare_to_wait_event (5,303 samples, 0.22%)</title><rect x="80.6132%" y="437" width="0.2212%" height="15" fill="rgb(231,4,26)" fg:x="1932489" fg:w="5303"/><text x="80.8632%" y="447.50"></text></g><g><title>queued_write_lock_slowpath (4,711 samples, 0.20%)</title><rect x="80.8344%" y="437" width="0.1965%" height="15" fill="rgb(240,9,31)" fg:x="1937792" fg:w="4711"/><text x="81.0844%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (2,298 samples, 0.10%)</title><rect x="80.9351%" y="421" width="0.0959%" height="15" fill="rgb(207,173,15)" fg:x="1940205" fg:w="2298"/><text x="81.1851%" y="431.50"></text></g><g><title>__perf_event_task_sched_out (480 samples, 0.02%)</title><rect x="81.0671%" y="405" width="0.0200%" height="15" fill="rgb(224,192,53)" fg:x="1943370" fg:w="480"/><text x="81.3171%" y="415.50"></text></g><g><title>update_cfs_group (246 samples, 0.01%)</title><rect x="81.1304%" y="373" width="0.0103%" height="15" fill="rgb(223,67,28)" fg:x="1944888" fg:w="246"/><text x="81.3804%" y="383.50"></text></g><g><title>update_curr (920 samples, 0.04%)</title><rect x="81.1407%" y="373" width="0.0384%" height="15" fill="rgb(211,20,47)" fg:x="1945134" fg:w="920"/><text x="81.3907%" y="383.50"></text></g><g><title>__update_load_avg_se (258 samples, 0.01%)</title><rect x="81.2005%" y="357" width="0.0108%" height="15" fill="rgb(240,228,2)" fg:x="1946568" fg:w="258"/><text x="81.4505%" y="367.50"></text></g><g><title>dequeue_entity (2,535 samples, 0.11%)</title><rect x="81.1062%" y="389" width="0.1057%" height="15" fill="rgb(248,151,12)" fg:x="1944308" fg:w="2535"/><text x="81.3562%" y="399.50"></text></g><g><title>update_load_avg (789 samples, 0.03%)</title><rect x="81.1790%" y="373" width="0.0329%" height="15" fill="rgb(244,8,39)" fg:x="1946054" fg:w="789"/><text x="81.4290%" y="383.50"></text></g><g><title>dequeue_task_fair (3,010 samples, 0.13%)</title><rect x="81.0921%" y="405" width="0.1256%" height="15" fill="rgb(222,26,8)" fg:x="1943970" fg:w="3010"/><text x="81.3421%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (3,272 samples, 0.14%)</title><rect x="81.2393%" y="389" width="0.1365%" height="15" fill="rgb(213,106,44)" fg:x="1947498" fg:w="3272"/><text x="81.4893%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,193 samples, 0.13%)</title><rect x="81.2426%" y="373" width="0.1332%" height="15" fill="rgb(214,129,20)" fg:x="1947577" fg:w="3193"/><text x="81.4926%" y="383.50"></text></g><g><title>native_write_msr (3,156 samples, 0.13%)</title><rect x="81.2441%" y="357" width="0.1317%" height="15" fill="rgb(212,32,13)" fg:x="1947614" fg:w="3156"/><text x="81.4941%" y="367.50"></text></g><g><title>finish_task_switch (3,934 samples, 0.16%)</title><rect x="81.2177%" y="405" width="0.1641%" height="15" fill="rgb(208,168,33)" fg:x="1946980" fg:w="3934"/><text x="81.4677%" y="415.50"></text></g><g><title>newidle_balance (285 samples, 0.01%)</title><rect x="81.3879%" y="389" width="0.0119%" height="15" fill="rgb(231,207,8)" fg:x="1951060" fg:w="285"/><text x="81.6379%" y="399.50"></text></g><g><title>pick_next_task_fair (533 samples, 0.02%)</title><rect x="81.3819%" y="405" width="0.0222%" height="15" fill="rgb(235,219,23)" fg:x="1950916" fg:w="533"/><text x="81.6319%" y="415.50"></text></g><g><title>pick_next_task_idle (551 samples, 0.02%)</title><rect x="81.4041%" y="405" width="0.0230%" height="15" fill="rgb(226,216,26)" fg:x="1951449" fg:w="551"/><text x="81.6541%" y="415.50"></text></g><g><title>__update_idle_core (471 samples, 0.02%)</title><rect x="81.4074%" y="389" width="0.0196%" height="15" fill="rgb(239,137,16)" fg:x="1951529" fg:w="471"/><text x="81.6574%" y="399.50"></text></g><g><title>psi_task_change (2,158 samples, 0.09%)</title><rect x="81.4271%" y="405" width="0.0900%" height="15" fill="rgb(207,12,36)" fg:x="1952000" fg:w="2158"/><text x="81.6771%" y="415.50"></text></g><g><title>psi_group_change (1,723 samples, 0.07%)</title><rect x="81.4452%" y="389" width="0.0719%" height="15" fill="rgb(210,214,24)" fg:x="1952435" fg:w="1723"/><text x="81.6952%" y="399.50"></text></g><g><title>record_times (313 samples, 0.01%)</title><rect x="81.5040%" y="373" width="0.0131%" height="15" fill="rgb(206,56,30)" fg:x="1953845" fg:w="313"/><text x="81.7540%" y="383.50"></text></g><g><title>__btrfs_tree_lock (24,664 samples, 1.03%)</title><rect x="80.5145%" y="453" width="1.0289%" height="15" fill="rgb(228,143,26)" fg:x="1930124" fg:w="24664"/><text x="80.7645%" y="463.50"></text></g><g><title>schedule (12,285 samples, 0.51%)</title><rect x="81.0309%" y="437" width="0.5125%" height="15" fill="rgb(216,218,46)" fg:x="1942503" fg:w="12285"/><text x="81.2809%" y="447.50"></text></g><g><title>__schedule (12,190 samples, 0.51%)</title><rect x="81.0349%" y="421" width="0.5085%" height="15" fill="rgb(206,6,19)" fg:x="1942598" fg:w="12190"/><text x="81.2849%" y="431.50"></text></g><g><title>update_rq_clock (261 samples, 0.01%)</title><rect x="81.5325%" y="405" width="0.0109%" height="15" fill="rgb(239,177,51)" fg:x="1954527" fg:w="261"/><text x="81.7825%" y="415.50"></text></g><g><title>btrfs_leaf_free_space (1,030 samples, 0.04%)</title><rect x="81.5513%" y="453" width="0.0430%" height="15" fill="rgb(216,55,25)" fg:x="1954979" fg:w="1030"/><text x="81.8013%" y="463.50"></text></g><g><title>leaf_space_used (765 samples, 0.03%)</title><rect x="81.5624%" y="437" width="0.0319%" height="15" fill="rgb(231,163,29)" fg:x="1955244" fg:w="765"/><text x="81.8124%" y="447.50"></text></g><g><title>btrfs_get_32 (542 samples, 0.02%)</title><rect x="81.5717%" y="421" width="0.0226%" height="15" fill="rgb(232,149,50)" fg:x="1955467" fg:w="542"/><text x="81.8217%" y="431.50"></text></g><g><title>btrfs_lock_root_node (347 samples, 0.01%)</title><rect x="81.5943%" y="453" width="0.0145%" height="15" fill="rgb(223,142,48)" fg:x="1956009" fg:w="347"/><text x="81.8443%" y="463.50"></text></g><g><title>__btrfs_tree_lock (347 samples, 0.01%)</title><rect x="81.5943%" y="437" width="0.0145%" height="15" fill="rgb(245,83,23)" fg:x="1956009" fg:w="347"/><text x="81.8443%" y="447.50"></text></g><g><title>btrfs_set_lock_blocking_read (307 samples, 0.01%)</title><rect x="81.6170%" y="437" width="0.0128%" height="15" fill="rgb(224,63,2)" fg:x="1956553" fg:w="307"/><text x="81.8670%" y="447.50"></text></g><g><title>btrfs_set_path_blocking (570 samples, 0.02%)</title><rect x="81.6095%" y="453" width="0.0238%" height="15" fill="rgb(218,65,53)" fg:x="1956374" fg:w="570"/><text x="81.8595%" y="463.50"></text></g><g><title>_raw_write_lock (544 samples, 0.02%)</title><rect x="81.6445%" y="437" width="0.0227%" height="15" fill="rgb(221,84,29)" fg:x="1957211" fg:w="544"/><text x="81.8945%" y="447.50"></text></g><g><title>btrfs_try_tree_write_lock (15,397 samples, 0.64%)</title><rect x="81.6338%" y="453" width="0.6423%" height="15" fill="rgb(234,0,32)" fg:x="1956956" fg:w="15397"/><text x="81.8838%" y="463.50"></text></g><g><title>queued_write_lock_slowpath (14,598 samples, 0.61%)</title><rect x="81.6671%" y="437" width="0.6090%" height="15" fill="rgb(206,20,16)" fg:x="1957755" fg:w="14598"/><text x="81.9171%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (4,272 samples, 0.18%)</title><rect x="82.0979%" y="421" width="0.1782%" height="15" fill="rgb(244,172,18)" fg:x="1968081" fg:w="4272"/><text x="82.3479%" y="431.50"></text></g><g><title>generic_bin_search.constprop.0 (3,552 samples, 0.15%)</title><rect x="82.2761%" y="453" width="0.1482%" height="15" fill="rgb(254,133,1)" fg:x="1972354" fg:w="3552"/><text x="82.5261%" y="463.50"></text></g><g><title>btrfs_buffer_uptodate (752 samples, 0.03%)</title><rect x="82.4475%" y="437" width="0.0314%" height="15" fill="rgb(222,206,41)" fg:x="1976463" fg:w="752"/><text x="82.6975%" y="447.50"></text></g><g><title>verify_parent_transid (564 samples, 0.02%)</title><rect x="82.4554%" y="421" width="0.0235%" height="15" fill="rgb(212,3,42)" fg:x="1976651" fg:w="564"/><text x="82.7054%" y="431.50"></text></g><g><title>btrfs_get_64 (702 samples, 0.03%)</title><rect x="82.4789%" y="437" width="0.0293%" height="15" fill="rgb(241,11,4)" fg:x="1977215" fg:w="702"/><text x="82.7289%" y="447.50"></text></g><g><title>__radix_tree_lookup (2,159 samples, 0.09%)</title><rect x="82.6034%" y="421" width="0.0901%" height="15" fill="rgb(205,19,26)" fg:x="1980200" fg:w="2159"/><text x="82.8534%" y="431.50"></text></g><g><title>mark_page_accessed (794 samples, 0.03%)</title><rect x="82.7101%" y="405" width="0.0331%" height="15" fill="rgb(210,179,32)" fg:x="1982757" fg:w="794"/><text x="82.9601%" y="415.50"></text></g><g><title>mark_extent_buffer_accessed (1,190 samples, 0.05%)</title><rect x="82.6939%" y="421" width="0.0496%" height="15" fill="rgb(227,116,49)" fg:x="1982369" fg:w="1190"/><text x="82.9439%" y="431.50"></text></g><g><title>find_extent_buffer (5,402 samples, 0.23%)</title><rect x="82.5191%" y="437" width="0.2253%" height="15" fill="rgb(211,146,6)" fg:x="1978179" fg:w="5402"/><text x="82.7691%" y="447.50"></text></g><g><title>read_block_for_search.isra.0 (8,325 samples, 0.35%)</title><rect x="82.4243%" y="453" width="0.3473%" height="15" fill="rgb(219,44,39)" fg:x="1975906" fg:w="8325"/><text x="82.6743%" y="463.50"></text></g><g><title>read_extent_buffer (650 samples, 0.03%)</title><rect x="82.7445%" y="437" width="0.0271%" height="15" fill="rgb(234,128,11)" fg:x="1983581" fg:w="650"/><text x="82.9945%" y="447.50"></text></g><g><title>alloc_extent_buffer (348 samples, 0.01%)</title><rect x="82.7763%" y="405" width="0.0145%" height="15" fill="rgb(220,183,53)" fg:x="1984345" fg:w="348"/><text x="83.0263%" y="415.50"></text></g><g><title>btrfs_add_delayed_tree_ref (297 samples, 0.01%)</title><rect x="82.7909%" y="405" width="0.0124%" height="15" fill="rgb(213,219,32)" fg:x="1984693" fg:w="297"/><text x="83.0409%" y="415.50"></text></g><g><title>btrfs_alloc_from_cluster (243 samples, 0.01%)</title><rect x="82.8125%" y="373" width="0.0101%" height="15" fill="rgb(232,156,16)" fg:x="1985211" fg:w="243"/><text x="83.0625%" y="383.50"></text></g><g><title>btrfs_reserve_extent (454 samples, 0.02%)</title><rect x="82.8046%" y="405" width="0.0189%" height="15" fill="rgb(246,135,34)" fg:x="1985023" fg:w="454"/><text x="83.0546%" y="415.50"></text></g><g><title>find_free_extent (403 samples, 0.02%)</title><rect x="82.8067%" y="389" width="0.0168%" height="15" fill="rgb(241,99,0)" fg:x="1985074" fg:w="403"/><text x="83.0567%" y="399.50"></text></g><g><title>set_extent_bit (310 samples, 0.01%)</title><rect x="82.8265%" y="405" width="0.0129%" height="15" fill="rgb(222,103,45)" fg:x="1985547" fg:w="310"/><text x="83.0765%" y="415.50"></text></g><g><title>__set_extent_bit (307 samples, 0.01%)</title><rect x="82.8266%" y="389" width="0.0128%" height="15" fill="rgb(212,57,4)" fg:x="1985550" fg:w="307"/><text x="83.0766%" y="399.50"></text></g><g><title>alloc_tree_block_no_bg_flush (1,574 samples, 0.07%)</title><rect x="82.7745%" y="437" width="0.0657%" height="15" fill="rgb(215,68,47)" fg:x="1984300" fg:w="1574"/><text x="83.0245%" y="447.50"></text></g><g><title>btrfs_alloc_tree_block (1,566 samples, 0.07%)</title><rect x="82.7748%" y="421" width="0.0653%" height="15" fill="rgb(230,84,2)" fg:x="1984308" fg:w="1566"/><text x="83.0248%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (296 samples, 0.01%)</title><rect x="82.8484%" y="421" width="0.0123%" height="15" fill="rgb(220,102,14)" fg:x="1986072" fg:w="296"/><text x="83.0984%" y="431.50"></text></g><g><title>set_extent_buffer_dirty (284 samples, 0.01%)</title><rect x="82.8489%" y="405" width="0.0118%" height="15" fill="rgb(240,10,32)" fg:x="1986084" fg:w="284"/><text x="83.0989%" y="415.50"></text></g><g><title>copy_for_split (760 samples, 0.03%)</title><rect x="82.8422%" y="437" width="0.0317%" height="15" fill="rgb(215,47,27)" fg:x="1985925" fg:w="760"/><text x="83.0922%" y="447.50"></text></g><g><title>btrfs_get_token_32 (263 samples, 0.01%)</title><rect x="82.8879%" y="405" width="0.0110%" height="15" fill="rgb(233,188,43)" fg:x="1987019" fg:w="263"/><text x="83.1379%" y="415.50"></text></g><g><title>__push_leaf_left (1,149 samples, 0.05%)</title><rect x="82.8768%" y="421" width="0.0479%" height="15" fill="rgb(253,190,1)" fg:x="1986754" fg:w="1149"/><text x="83.1268%" y="431.50"></text></g><g><title>push_leaf_left (1,466 samples, 0.06%)</title><rect x="82.8743%" y="437" width="0.0612%" height="15" fill="rgb(206,114,52)" fg:x="1986693" fg:w="1466"/><text x="83.1243%" y="447.50"></text></g><g><title>split_leaf (3,963 samples, 0.17%)</title><rect x="82.7720%" y="453" width="0.1653%" height="15" fill="rgb(233,120,37)" fg:x="1984240" fg:w="3963"/><text x="83.0220%" y="463.50"></text></g><g><title>__list_del_entry_valid (333 samples, 0.01%)</title><rect x="82.9863%" y="389" width="0.0139%" height="15" fill="rgb(214,52,39)" fg:x="1989379" fg:w="333"/><text x="83.2363%" y="399.50"></text></g><g><title>_raw_spin_lock (596 samples, 0.02%)</title><rect x="83.0555%" y="373" width="0.0249%" height="15" fill="rgb(223,80,29)" fg:x="1991036" fg:w="596"/><text x="83.3055%" y="383.50"></text></g><g><title>native_queued_spin_lock_slowpath (410 samples, 0.02%)</title><rect x="83.0632%" y="357" width="0.0171%" height="15" fill="rgb(230,101,40)" fg:x="1991222" fg:w="410"/><text x="83.3132%" y="367.50"></text></g><g><title>_raw_spin_lock_irqsave (573 samples, 0.02%)</title><rect x="83.0803%" y="373" width="0.0239%" height="15" fill="rgb(219,211,8)" fg:x="1991632" fg:w="573"/><text x="83.3303%" y="383.50"></text></g><g><title>available_idle_cpu (519 samples, 0.02%)</title><rect x="83.1545%" y="357" width="0.0216%" height="15" fill="rgb(252,126,28)" fg:x="1993411" fg:w="519"/><text x="83.4045%" y="367.50"></text></g><g><title>select_task_rq_fair (2,584 samples, 0.11%)</title><rect x="83.1064%" y="373" width="0.1078%" height="15" fill="rgb(215,56,38)" fg:x="1992257" fg:w="2584"/><text x="83.3564%" y="383.50"></text></g><g><title>update_cfs_rq_h_load (560 samples, 0.02%)</title><rect x="83.1908%" y="357" width="0.0234%" height="15" fill="rgb(249,55,44)" fg:x="1994281" fg:w="560"/><text x="83.4408%" y="367.50"></text></g><g><title>set_task_cpu (242 samples, 0.01%)</title><rect x="83.2142%" y="373" width="0.0101%" height="15" fill="rgb(220,221,32)" fg:x="1994841" fg:w="242"/><text x="83.4642%" y="383.50"></text></g><g><title>update_curr (348 samples, 0.01%)</title><rect x="83.3044%" y="325" width="0.0145%" height="15" fill="rgb(212,216,41)" fg:x="1997003" fg:w="348"/><text x="83.5544%" y="335.50"></text></g><g><title>enqueue_entity (2,431 samples, 0.10%)</title><rect x="83.2518%" y="341" width="0.1014%" height="15" fill="rgb(228,213,43)" fg:x="1995744" fg:w="2431"/><text x="83.5018%" y="351.50"></text></g><g><title>update_load_avg (824 samples, 0.03%)</title><rect x="83.3189%" y="325" width="0.0344%" height="15" fill="rgb(211,31,26)" fg:x="1997351" fg:w="824"/><text x="83.5689%" y="335.50"></text></g><g><title>enqueue_task_fair (3,058 samples, 0.13%)</title><rect x="83.2333%" y="357" width="0.1276%" height="15" fill="rgb(229,202,19)" fg:x="1995300" fg:w="3058"/><text x="83.4833%" y="367.50"></text></g><g><title>ttwu_do_activate (6,118 samples, 0.26%)</title><rect x="83.2243%" y="373" width="0.2552%" height="15" fill="rgb(229,105,46)" fg:x="1995083" fg:w="6118"/><text x="83.4743%" y="383.50"></text></g><g><title>psi_task_change (2,835 samples, 0.12%)</title><rect x="83.3612%" y="357" width="0.1183%" height="15" fill="rgb(235,108,1)" fg:x="1998366" fg:w="2835"/><text x="83.6112%" y="367.50"></text></g><g><title>psi_group_change (2,523 samples, 0.11%)</title><rect x="83.3742%" y="341" width="0.1052%" height="15" fill="rgb(245,111,35)" fg:x="1998678" fg:w="2523"/><text x="83.6242%" y="351.50"></text></g><g><title>record_times (470 samples, 0.02%)</title><rect x="83.4599%" y="325" width="0.0196%" height="15" fill="rgb(219,185,31)" fg:x="2000731" fg:w="470"/><text x="83.7099%" y="335.50"></text></g><g><title>sched_clock_cpu (313 samples, 0.01%)</title><rect x="83.4664%" y="309" width="0.0131%" height="15" fill="rgb(214,4,43)" fg:x="2000888" fg:w="313"/><text x="83.7164%" y="319.50"></text></g><g><title>sched_clock (270 samples, 0.01%)</title><rect x="83.4682%" y="293" width="0.0113%" height="15" fill="rgb(235,227,40)" fg:x="2000931" fg:w="270"/><text x="83.7182%" y="303.50"></text></g><g><title>native_sched_clock (243 samples, 0.01%)</title><rect x="83.4693%" y="277" width="0.0101%" height="15" fill="rgb(230,88,30)" fg:x="2000958" fg:w="243"/><text x="83.7193%" y="287.50"></text></g><g><title>ttwu_do_wakeup (567 samples, 0.02%)</title><rect x="83.4795%" y="373" width="0.0237%" height="15" fill="rgb(216,217,1)" fg:x="2001201" fg:w="567"/><text x="83.7295%" y="383.50"></text></g><g><title>check_preempt_curr (510 samples, 0.02%)</title><rect x="83.4819%" y="357" width="0.0213%" height="15" fill="rgb(248,139,50)" fg:x="2001258" fg:w="510"/><text x="83.7319%" y="367.50"></text></g><g><title>ttwu_queue_wakelist (297 samples, 0.01%)</title><rect x="83.5031%" y="373" width="0.0124%" height="15" fill="rgb(233,1,21)" fg:x="2001768" fg:w="297"/><text x="83.7531%" y="383.50"></text></g><g><title>__wake_up_common (13,423 samples, 0.56%)</title><rect x="82.9767%" y="421" width="0.5599%" height="15" fill="rgb(215,183,12)" fg:x="1989148" fg:w="13423"/><text x="83.2267%" y="431.50"></text></g><g><title>autoremove_wake_function (13,221 samples, 0.55%)</title><rect x="82.9851%" y="405" width="0.5515%" height="15" fill="rgb(229,104,42)" fg:x="1989350" fg:w="13221"/><text x="83.2351%" y="415.50"></text></g><g><title>try_to_wake_up (12,845 samples, 0.54%)</title><rect x="83.0008%" y="389" width="0.5358%" height="15" fill="rgb(243,34,48)" fg:x="1989726" fg:w="12845"/><text x="83.2508%" y="399.50"></text></g><g><title>update_rq_clock (506 samples, 0.02%)</title><rect x="83.5155%" y="373" width="0.0211%" height="15" fill="rgb(239,11,44)" fg:x="2002065" fg:w="506"/><text x="83.7655%" y="383.50"></text></g><g><title>__wake_up_common_lock (13,752 samples, 0.57%)</title><rect x="82.9743%" y="437" width="0.5737%" height="15" fill="rgb(231,98,35)" fg:x="1989091" fg:w="13752"/><text x="83.2243%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock (534 samples, 0.02%)</title><rect x="83.5482%" y="437" width="0.0223%" height="15" fill="rgb(233,28,25)" fg:x="2002849" fg:w="534"/><text x="83.7982%" y="447.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (361 samples, 0.02%)</title><rect x="83.5705%" y="437" width="0.0151%" height="15" fill="rgb(234,123,11)" fg:x="2003383" fg:w="361"/><text x="83.8205%" y="447.50"></text></g><g><title>btrfs_search_slot (96,752 samples, 4.04%)</title><rect x="79.5630%" y="469" width="4.0360%" height="15" fill="rgb(220,69,3)" fg:x="1907313" fg:w="96752"/><text x="79.8130%" y="479.50">btrf..</text></g><g><title>unlock_up (15,779 samples, 0.66%)</title><rect x="82.9407%" y="453" width="0.6582%" height="15" fill="rgb(214,64,36)" fg:x="1988286" fg:w="15779"/><text x="83.1907%" y="463.50"></text></g><g><title>btrfs_tree_unlock (321 samples, 0.01%)</title><rect x="83.5856%" y="437" width="0.0134%" height="15" fill="rgb(211,138,32)" fg:x="2003744" fg:w="321"/><text x="83.8356%" y="447.50"></text></g><g><title>btrfs_get_32 (485 samples, 0.02%)</title><rect x="83.6797%" y="453" width="0.0202%" height="15" fill="rgb(213,118,47)" fg:x="2006001" fg:w="485"/><text x="83.9297%" y="463.50"></text></g><g><title>btrfs_get_token_32 (4,012 samples, 0.17%)</title><rect x="83.6999%" y="453" width="0.1674%" height="15" fill="rgb(243,124,49)" fg:x="2006486" fg:w="4012"/><text x="83.9499%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (586 samples, 0.02%)</title><rect x="83.8429%" y="437" width="0.0244%" height="15" fill="rgb(221,30,28)" fg:x="2009912" fg:w="586"/><text x="84.0929%" y="447.50"></text></g><g><title>btrfs_leaf_free_space (1,038 samples, 0.04%)</title><rect x="83.8673%" y="453" width="0.0433%" height="15" fill="rgb(246,37,13)" fg:x="2010498" fg:w="1038"/><text x="84.1173%" y="463.50"></text></g><g><title>leaf_space_used (864 samples, 0.04%)</title><rect x="83.8746%" y="437" width="0.0360%" height="15" fill="rgb(249,66,14)" fg:x="2010672" fg:w="864"/><text x="84.1246%" y="447.50"></text></g><g><title>btrfs_get_32 (665 samples, 0.03%)</title><rect x="83.8829%" y="421" width="0.0277%" height="15" fill="rgb(213,166,5)" fg:x="2010871" fg:w="665"/><text x="84.1329%" y="431.50"></text></g><g><title>btrfs_mark_buffer_dirty (866 samples, 0.04%)</title><rect x="83.9106%" y="453" width="0.0361%" height="15" fill="rgb(221,66,24)" fg:x="2011536" fg:w="866"/><text x="84.1606%" y="463.50"></text></g><g><title>set_extent_buffer_dirty (379 samples, 0.02%)</title><rect x="83.9309%" y="437" width="0.0158%" height="15" fill="rgb(210,132,17)" fg:x="2012023" fg:w="379"/><text x="84.1809%" y="447.50"></text></g><g><title>btrfs_set_token_32 (3,308 samples, 0.14%)</title><rect x="83.9467%" y="453" width="0.1380%" height="15" fill="rgb(243,202,5)" fg:x="2012402" fg:w="3308"/><text x="84.1967%" y="463.50"></text></g><g><title>check_setget_bounds.isra.0 (597 samples, 0.02%)</title><rect x="84.0598%" y="437" width="0.0249%" height="15" fill="rgb(233,70,48)" fg:x="2015113" fg:w="597"/><text x="84.3098%" y="447.50"></text></g><g><title>memcpy_extent_buffer (351 samples, 0.01%)</title><rect x="84.0944%" y="453" width="0.0146%" height="15" fill="rgb(238,41,26)" fg:x="2015941" fg:w="351"/><text x="84.3444%" y="463.50"></text></g><g><title>memmove_extent_buffer (1,578 samples, 0.07%)</title><rect x="84.1090%" y="453" width="0.0658%" height="15" fill="rgb(241,19,31)" fg:x="2016292" fg:w="1578"/><text x="84.3590%" y="463.50"></text></g><g><title>memmove (870 samples, 0.04%)</title><rect x="84.1385%" y="437" width="0.0363%" height="15" fill="rgb(214,76,10)" fg:x="2017000" fg:w="870"/><text x="84.3885%" y="447.50"></text></g><g><title>btrfs_insert_empty_items (111,656 samples, 4.66%)</title><rect x="79.5570%" y="485" width="4.6577%" height="15" fill="rgb(254,202,22)" fg:x="1907169" fg:w="111656"/><text x="79.8070%" y="495.50">btrfs..</text></g><g><title>setup_items_for_insert (14,760 samples, 0.62%)</title><rect x="83.5990%" y="469" width="0.6157%" height="15" fill="rgb(214,72,24)" fg:x="2004065" fg:w="14760"/><text x="83.8490%" y="479.50"></text></g><g><title>write_extent_buffer (955 samples, 0.04%)</title><rect x="84.1748%" y="453" width="0.0398%" height="15" fill="rgb(221,92,46)" fg:x="2017870" fg:w="955"/><text x="84.4248%" y="463.50"></text></g><g><title>btrfs_mark_buffer_dirty (529 samples, 0.02%)</title><rect x="84.2147%" y="485" width="0.0221%" height="15" fill="rgb(246,13,50)" fg:x="2018825" fg:w="529"/><text x="84.4647%" y="495.50"></text></g><g><title>set_extent_buffer_dirty (330 samples, 0.01%)</title><rect x="84.2230%" y="469" width="0.0138%" height="15" fill="rgb(240,165,38)" fg:x="2019024" fg:w="330"/><text x="84.4730%" y="479.50"></text></g><g><title>btrfs_set_16 (349 samples, 0.01%)</title><rect x="84.2367%" y="485" width="0.0146%" height="15" fill="rgb(241,24,51)" fg:x="2019354" fg:w="349"/><text x="84.4867%" y="495.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (320 samples, 0.01%)</title><rect x="84.2603%" y="485" width="0.0133%" height="15" fill="rgb(227,51,44)" fg:x="2019920" fg:w="320"/><text x="84.5103%" y="495.50"></text></g><g><title>btrfs_update_root_times (568 samples, 0.02%)</title><rect x="84.2737%" y="485" width="0.0237%" height="15" fill="rgb(231,121,3)" fg:x="2020240" fg:w="568"/><text x="84.5237%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (314 samples, 0.01%)</title><rect x="84.2843%" y="469" width="0.0131%" height="15" fill="rgb(245,3,41)" fg:x="2020494" fg:w="314"/><text x="84.5343%" y="479.50"></text></g><g><title>current_time (499 samples, 0.02%)</title><rect x="84.2974%" y="485" width="0.0208%" height="15" fill="rgb(214,13,26)" fg:x="2020808" fg:w="499"/><text x="84.5474%" y="495.50"></text></g><g><title>btrfs_set_token_32 (1,511 samples, 0.06%)</title><rect x="84.3479%" y="469" width="0.0630%" height="15" fill="rgb(252,75,11)" fg:x="2022018" fg:w="1511"/><text x="84.5979%" y="479.50"></text></g><g><title>btrfs_set_token_64 (2,052 samples, 0.09%)</title><rect x="84.4109%" y="469" width="0.0856%" height="15" fill="rgb(218,226,17)" fg:x="2023529" fg:w="2052"/><text x="84.6609%" y="479.50"></text></g><g><title>check_setget_bounds.isra.0 (296 samples, 0.01%)</title><rect x="84.4841%" y="453" width="0.0123%" height="15" fill="rgb(248,89,38)" fg:x="2025285" fg:w="296"/><text x="84.7341%" y="463.50"></text></g><g><title>inode_get_bytes (279 samples, 0.01%)</title><rect x="84.4987%" y="469" width="0.0116%" height="15" fill="rgb(237,73,46)" fg:x="2025635" fg:w="279"/><text x="84.7487%" y="479.50"></text></g><g><title>fill_inode_item (4,936 samples, 0.21%)</title><rect x="84.3182%" y="485" width="0.2059%" height="15" fill="rgb(242,78,33)" fg:x="2021307" fg:w="4936"/><text x="84.5682%" y="495.50"></text></g><g><title>map_id_up (329 samples, 0.01%)</title><rect x="84.5104%" y="469" width="0.0137%" height="15" fill="rgb(235,60,3)" fg:x="2025914" fg:w="329"/><text x="84.7604%" y="479.50"></text></g><g><title>inherit_props (468 samples, 0.02%)</title><rect x="84.5241%" y="485" width="0.0195%" height="15" fill="rgb(216,172,19)" fg:x="2026243" fg:w="468"/><text x="84.7741%" y="495.50"></text></g><g><title>inode_init_owner (590 samples, 0.02%)</title><rect x="84.5436%" y="485" width="0.0246%" height="15" fill="rgb(227,6,42)" fg:x="2026711" fg:w="590"/><text x="84.7936%" y="495.50"></text></g><g><title>_raw_spin_lock (908 samples, 0.04%)</title><rect x="84.9296%" y="469" width="0.0379%" height="15" fill="rgb(223,207,42)" fg:x="2035963" fg:w="908"/><text x="85.1796%" y="479.50"></text></g><g><title>native_queued_spin_lock_slowpath (330 samples, 0.01%)</title><rect x="84.9537%" y="453" width="0.0138%" height="15" fill="rgb(246,138,30)" fg:x="2036541" fg:w="330"/><text x="85.2037%" y="463.50"></text></g><g><title>inode_tree_add (10,510 samples, 0.44%)</title><rect x="84.5717%" y="485" width="0.4384%" height="15" fill="rgb(251,199,47)" fg:x="2027383" fg:w="10510"/><text x="84.8217%" y="495.50"></text></g><g><title>rb_insert_color (960 samples, 0.04%)</title><rect x="84.9700%" y="469" width="0.0400%" height="15" fill="rgb(228,218,44)" fg:x="2036933" fg:w="960"/><text x="85.2200%" y="479.50"></text></g><g><title>_raw_spin_lock (606 samples, 0.03%)</title><rect x="85.0159%" y="453" width="0.0253%" height="15" fill="rgb(220,68,6)" fg:x="2038032" fg:w="606"/><text x="85.2659%" y="463.50"></text></g><g><title>find_inode (1,011 samples, 0.04%)</title><rect x="85.0412%" y="453" width="0.0422%" height="15" fill="rgb(240,60,26)" fg:x="2038640" fg:w="1011"/><text x="85.2912%" y="463.50"></text></g><g><title>insert_inode_locked4 (1,759 samples, 0.07%)</title><rect x="85.0101%" y="485" width="0.0734%" height="15" fill="rgb(211,200,19)" fg:x="2037893" fg:w="1759"/><text x="85.2601%" y="495.50"></text></g><g><title>inode_insert5 (1,749 samples, 0.07%)</title><rect x="85.0105%" y="469" width="0.0730%" height="15" fill="rgb(242,145,30)" fg:x="2037903" fg:w="1749"/><text x="85.2605%" y="479.50"></text></g><g><title>kmem_cache_alloc (671 samples, 0.03%)</title><rect x="85.0835%" y="485" width="0.0280%" height="15" fill="rgb(225,64,13)" fg:x="2039652" fg:w="671"/><text x="85.3335%" y="495.50"></text></g><g><title>kmem_cache_free (640 samples, 0.03%)</title><rect x="85.1114%" y="485" width="0.0267%" height="15" fill="rgb(218,103,35)" fg:x="2040323" fg:w="640"/><text x="85.3614%" y="495.50"></text></g><g><title>memzero_extent_buffer (475 samples, 0.02%)</title><rect x="85.1381%" y="485" width="0.0198%" height="15" fill="rgb(216,93,46)" fg:x="2040963" fg:w="475"/><text x="85.3881%" y="495.50"></text></g><g><title>_raw_spin_lock (357 samples, 0.01%)</title><rect x="85.1617%" y="469" width="0.0149%" height="15" fill="rgb(225,159,27)" fg:x="2041527" fg:w="357"/><text x="85.4117%" y="479.50"></text></g><g><title>btrfs_init_metadata_block_rsv (715 samples, 0.03%)</title><rect x="85.2308%" y="437" width="0.0298%" height="15" fill="rgb(225,204,11)" fg:x="2043184" fg:w="715"/><text x="85.4808%" y="447.50"></text></g><g><title>btrfs_find_space_info (544 samples, 0.02%)</title><rect x="85.2379%" y="421" width="0.0227%" height="15" fill="rgb(205,56,4)" fg:x="2043355" fg:w="544"/><text x="85.4879%" y="431.50"></text></g><g><title>kernel_init_free_pages (301 samples, 0.01%)</title><rect x="85.3285%" y="325" width="0.0126%" height="15" fill="rgb(206,6,35)" fg:x="2045527" fg:w="301"/><text x="85.5785%" y="335.50"></text></g><g><title>clear_page_erms (292 samples, 0.01%)</title><rect x="85.3289%" y="309" width="0.0122%" height="15" fill="rgb(247,73,52)" fg:x="2045536" fg:w="292"/><text x="85.5789%" y="319.50"></text></g><g><title>prep_new_page (321 samples, 0.01%)</title><rect x="85.3283%" y="341" width="0.0134%" height="15" fill="rgb(246,97,4)" fg:x="2045521" fg:w="321"/><text x="85.5783%" y="351.50"></text></g><g><title>__alloc_pages_nodemask (429 samples, 0.02%)</title><rect x="85.3238%" y="373" width="0.0179%" height="15" fill="rgb(212,37,15)" fg:x="2045414" fg:w="429"/><text x="85.5738%" y="383.50"></text></g><g><title>get_page_from_freelist (416 samples, 0.02%)</title><rect x="85.3244%" y="357" width="0.0174%" height="15" fill="rgb(208,130,40)" fg:x="2045427" fg:w="416"/><text x="85.5744%" y="367.50"></text></g><g><title>allocate_slab (768 samples, 0.03%)</title><rect x="85.3213%" y="389" width="0.0320%" height="15" fill="rgb(236,55,29)" fg:x="2045354" fg:w="768"/><text x="85.5713%" y="399.50"></text></g><g><title>___slab_alloc (1,202 samples, 0.05%)</title><rect x="85.3080%" y="405" width="0.0501%" height="15" fill="rgb(209,156,45)" fg:x="2045035" fg:w="1202"/><text x="85.5580%" y="415.50"></text></g><g><title>__slab_alloc (1,239 samples, 0.05%)</title><rect x="85.3065%" y="421" width="0.0517%" height="15" fill="rgb(249,107,4)" fg:x="2044999" fg:w="1239"/><text x="85.5565%" y="431.50"></text></g><g><title>memcg_slab_post_alloc_hook (1,303 samples, 0.05%)</title><rect x="85.3584%" y="421" width="0.0544%" height="15" fill="rgb(227,7,13)" fg:x="2046243" fg:w="1303"/><text x="85.6084%" y="431.50"></text></g><g><title>get_obj_cgroup_from_current (537 samples, 0.02%)</title><rect x="85.4269%" y="405" width="0.0224%" height="15" fill="rgb(250,129,14)" fg:x="2047885" fg:w="537"/><text x="85.6769%" y="415.50"></text></g><g><title>__memcg_kmem_charge (318 samples, 0.01%)</title><rect x="85.4677%" y="389" width="0.0133%" height="15" fill="rgb(229,92,13)" fg:x="2048864" fg:w="318"/><text x="85.7177%" y="399.50"></text></g><g><title>try_charge (281 samples, 0.01%)</title><rect x="85.4693%" y="373" width="0.0117%" height="15" fill="rgb(245,98,39)" fg:x="2048901" fg:w="281"/><text x="85.7193%" y="383.50"></text></g><g><title>obj_cgroup_charge (991 samples, 0.04%)</title><rect x="85.4493%" y="405" width="0.0413%" height="15" fill="rgb(234,135,48)" fg:x="2048422" fg:w="991"/><text x="85.6993%" y="415.50"></text></g><g><title>kmem_cache_alloc (5,153 samples, 0.21%)</title><rect x="85.2758%" y="437" width="0.2150%" height="15" fill="rgb(230,98,28)" fg:x="2044264" fg:w="5153"/><text x="85.5258%" y="447.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (1,869 samples, 0.08%)</title><rect x="85.4128%" y="421" width="0.0780%" height="15" fill="rgb(223,121,0)" fg:x="2047548" fg:w="1869"/><text x="85.6628%" y="431.50"></text></g><g><title>btrfs_alloc_inode (7,188 samples, 0.30%)</title><rect x="85.1910%" y="453" width="0.2998%" height="15" fill="rgb(234,173,33)" fg:x="2042230" fg:w="7188"/><text x="85.4410%" y="463.50"></text></g><g><title>alloc_inode (9,301 samples, 0.39%)</title><rect x="85.1766%" y="469" width="0.3880%" height="15" fill="rgb(245,47,8)" fg:x="2041884" fg:w="9301"/><text x="85.4266%" y="479.50"></text></g><g><title>inode_init_always (1,767 samples, 0.07%)</title><rect x="85.4908%" y="453" width="0.0737%" height="15" fill="rgb(205,17,20)" fg:x="2049418" fg:w="1767"/><text x="85.7408%" y="463.50"></text></g><g><title>security_inode_alloc (471 samples, 0.02%)</title><rect x="85.5449%" y="437" width="0.0196%" height="15" fill="rgb(232,151,16)" fg:x="2050714" fg:w="471"/><text x="85.7949%" y="447.50"></text></g><g><title>new_inode (10,306 samples, 0.43%)</title><rect x="85.1580%" y="485" width="0.4299%" height="15" fill="rgb(208,30,32)" fg:x="2041438" fg:w="10306"/><text x="85.4080%" y="495.50"></text></g><g><title>inode_sb_list_add (559 samples, 0.02%)</title><rect x="85.5645%" y="469" width="0.0233%" height="15" fill="rgb(254,26,3)" fg:x="2051185" fg:w="559"/><text x="85.8145%" y="479.50"></text></g><g><title>_raw_spin_lock (265 samples, 0.01%)</title><rect x="85.5768%" y="453" width="0.0111%" height="15" fill="rgb(240,177,30)" fg:x="2051479" fg:w="265"/><text x="85.8268%" y="463.50"></text></g><g><title>btrfs_new_inode (150,397 samples, 6.27%)</title><rect x="79.3350%" y="501" width="6.2738%" height="15" fill="rgb(248,76,44)" fg:x="1901849" fg:w="150397"/><text x="79.5850%" y="511.50">btrfs_ne..</text></g><g><title>write_extent_buffer (502 samples, 0.02%)</title><rect x="85.5879%" y="485" width="0.0209%" height="15" fill="rgb(241,186,54)" fg:x="2051744" fg:w="502"/><text x="85.8379%" y="495.50"></text></g><g><title>btrfs_set_64 (421 samples, 0.02%)</title><rect x="85.6174%" y="501" width="0.0176%" height="15" fill="rgb(249,171,29)" fg:x="2052451" fg:w="421"/><text x="85.8674%" y="511.50"></text></g><g><title>btrfs_set_8 (435 samples, 0.02%)</title><rect x="85.6349%" y="501" width="0.0181%" height="15" fill="rgb(237,151,44)" fg:x="2052872" fg:w="435"/><text x="85.8849%" y="511.50"></text></g><g><title>__list_add_valid (520 samples, 0.02%)</title><rect x="85.7581%" y="453" width="0.0217%" height="15" fill="rgb(228,174,30)" fg:x="2055826" fg:w="520"/><text x="86.0081%" y="463.50"></text></g><g><title>_raw_spin_lock (320 samples, 0.01%)</title><rect x="85.7798%" y="453" width="0.0133%" height="15" fill="rgb(252,14,37)" fg:x="2056346" fg:w="320"/><text x="86.0298%" y="463.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (2,297 samples, 0.10%)</title><rect x="85.7134%" y="469" width="0.0958%" height="15" fill="rgb(207,111,40)" fg:x="2054753" fg:w="2297"/><text x="85.9634%" y="479.50"></text></g><g><title>_raw_spin_lock (1,083 samples, 0.05%)</title><rect x="85.8158%" y="453" width="0.0452%" height="15" fill="rgb(248,171,54)" fg:x="2057207" fg:w="1083"/><text x="86.0658%" y="463.50"></text></g><g><title>btrfs_block_rsv_migrate (1,238 samples, 0.05%)</title><rect x="85.8094%" y="469" width="0.0516%" height="15" fill="rgb(211,127,2)" fg:x="2057054" fg:w="1238"/><text x="86.0594%" y="479.50"></text></g><g><title>__radix_tree_preload (244 samples, 0.01%)</title><rect x="85.8939%" y="453" width="0.0102%" height="15" fill="rgb(236,87,47)" fg:x="2059081" fg:w="244"/><text x="86.1439%" y="463.50"></text></g><g><title>_raw_spin_lock (254 samples, 0.01%)</title><rect x="85.9041%" y="453" width="0.0106%" height="15" fill="rgb(223,190,45)" fg:x="2059325" fg:w="254"/><text x="86.1541%" y="463.50"></text></g><g><title>__radix_tree_lookup (2,526 samples, 0.11%)</title><rect x="85.9230%" y="437" width="0.1054%" height="15" fill="rgb(215,5,16)" fg:x="2059778" fg:w="2526"/><text x="86.1730%" y="447.50"></text></g><g><title>_raw_spin_lock (418 samples, 0.02%)</title><rect x="86.0284%" y="437" width="0.0174%" height="15" fill="rgb(252,82,33)" fg:x="2062304" fg:w="418"/><text x="86.2784%" y="447.50"></text></g><g><title>btrfs_get_delayed_node (3,157 samples, 0.13%)</title><rect x="85.9148%" y="453" width="0.1317%" height="15" fill="rgb(247,213,44)" fg:x="2059581" fg:w="3157"/><text x="86.1648%" y="463.50"></text></g><g><title>allocate_slab (276 samples, 0.01%)</title><rect x="86.0896%" y="405" width="0.0115%" height="15" fill="rgb(205,196,44)" fg:x="2063772" fg:w="276"/><text x="86.3396%" y="415.50"></text></g><g><title>___slab_alloc (696 samples, 0.03%)</title><rect x="86.0748%" y="421" width="0.0290%" height="15" fill="rgb(237,96,54)" fg:x="2063416" fg:w="696"/><text x="86.3248%" y="431.50"></text></g><g><title>__slab_alloc (743 samples, 0.03%)</title><rect x="86.0728%" y="437" width="0.0310%" height="15" fill="rgb(230,113,34)" fg:x="2063370" fg:w="743"/><text x="86.3228%" y="447.50"></text></g><g><title>memset_erms (260 samples, 0.01%)</title><rect x="86.1071%" y="437" width="0.0108%" height="15" fill="rgb(221,224,12)" fg:x="2064191" fg:w="260"/><text x="86.3571%" y="447.50"></text></g><g><title>__schedule (302 samples, 0.01%)</title><rect x="86.1218%" y="405" width="0.0126%" height="15" fill="rgb(219,112,44)" fg:x="2064543" fg:w="302"/><text x="86.3718%" y="415.50"></text></g><g><title>_cond_resched (335 samples, 0.01%)</title><rect x="86.1210%" y="421" width="0.0140%" height="15" fill="rgb(210,31,13)" fg:x="2064524" fg:w="335"/><text x="86.3710%" y="431.50"></text></g><g><title>kmem_cache_alloc (2,136 samples, 0.09%)</title><rect x="86.0465%" y="453" width="0.0891%" height="15" fill="rgb(230,25,16)" fg:x="2062738" fg:w="2136"/><text x="86.2965%" y="463.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (423 samples, 0.02%)</title><rect x="86.1179%" y="437" width="0.0176%" height="15" fill="rgb(246,108,53)" fg:x="2064451" fg:w="423"/><text x="86.3679%" y="447.50"></text></g><g><title>radix_tree_insert (806 samples, 0.03%)</title><rect x="86.1356%" y="453" width="0.0336%" height="15" fill="rgb(241,172,50)" fg:x="2064874" fg:w="806"/><text x="86.3856%" y="463.50"></text></g><g><title>btrfs_get_or_create_delayed_node (7,447 samples, 0.31%)</title><rect x="85.8610%" y="469" width="0.3106%" height="15" fill="rgb(235,141,10)" fg:x="2058292" fg:w="7447"/><text x="86.1110%" y="479.50"></text></g><g><title>inode_get_bytes (282 samples, 0.01%)</title><rect x="86.1803%" y="453" width="0.0118%" height="15" fill="rgb(220,174,43)" fg:x="2065945" fg:w="282"/><text x="86.4303%" y="463.50"></text></g><g><title>_raw_spin_lock (241 samples, 0.01%)</title><rect x="86.1820%" y="437" width="0.0101%" height="15" fill="rgb(215,181,40)" fg:x="2065986" fg:w="241"/><text x="86.4320%" y="447.50"></text></g><g><title>fill_stack_inode_item (636 samples, 0.03%)</title><rect x="86.1717%" y="469" width="0.0265%" height="15" fill="rgb(230,97,2)" fg:x="2065739" fg:w="636"/><text x="86.4217%" y="479.50"></text></g><g><title>mutex_lock (467 samples, 0.02%)</title><rect x="86.1982%" y="469" width="0.0195%" height="15" fill="rgb(211,25,27)" fg:x="2066375" fg:w="467"/><text x="86.4482%" y="479.50"></text></g><g><title>btrfs_delayed_update_inode (13,075 samples, 0.55%)</title><rect x="85.6787%" y="485" width="0.5454%" height="15" fill="rgb(230,87,26)" fg:x="2053922" fg:w="13075"/><text x="85.9287%" y="495.50"></text></g><g><title>_raw_spin_lock (543 samples, 0.02%)</title><rect x="86.2277%" y="469" width="0.0227%" height="15" fill="rgb(227,160,17)" fg:x="2067082" fg:w="543"/><text x="86.4777%" y="479.50"></text></g><g><title>btrfs_update_inode (14,616 samples, 0.61%)</title><rect x="85.6585%" y="501" width="0.6097%" height="15" fill="rgb(244,85,34)" fg:x="2053438" fg:w="14616"/><text x="85.9085%" y="511.50"></text></g><g><title>btrfs_update_root_times (1,057 samples, 0.04%)</title><rect x="86.2241%" y="485" width="0.0441%" height="15" fill="rgb(207,70,0)" fg:x="2066997" fg:w="1057"/><text x="86.4741%" y="495.50"></text></g><g><title>ktime_get_real_ts64 (429 samples, 0.02%)</title><rect x="86.2503%" y="469" width="0.0179%" height="15" fill="rgb(223,129,7)" fg:x="2067625" fg:w="429"/><text x="86.5003%" y="479.50"></text></g><g><title>__d_instantiate (886 samples, 0.04%)</title><rect x="86.2881%" y="485" width="0.0370%" height="15" fill="rgb(246,105,7)" fg:x="2068530" fg:w="886"/><text x="86.5381%" y="495.50"></text></g><g><title>d_flags_for_inode (417 samples, 0.02%)</title><rect x="86.3077%" y="469" width="0.0174%" height="15" fill="rgb(215,154,42)" fg:x="2068999" fg:w="417"/><text x="86.5577%" y="479.50"></text></g><g><title>security_d_instantiate (327 samples, 0.01%)</title><rect x="86.3330%" y="485" width="0.0136%" height="15" fill="rgb(220,215,30)" fg:x="2069607" fg:w="327"/><text x="86.5830%" y="495.50"></text></g><g><title>d_instantiate_new (1,907 samples, 0.08%)</title><rect x="86.2763%" y="501" width="0.0795%" height="15" fill="rgb(228,81,51)" fg:x="2068248" fg:w="1907"/><text x="86.5263%" y="511.50"></text></g><g><title>__schedule (244 samples, 0.01%)</title><rect x="86.4003%" y="453" width="0.0102%" height="15" fill="rgb(247,71,54)" fg:x="2071220" fg:w="244"/><text x="86.6503%" y="463.50"></text></g><g><title>_cond_resched (368 samples, 0.02%)</title><rect x="86.3975%" y="469" width="0.0154%" height="15" fill="rgb(234,176,34)" fg:x="2071152" fg:w="368"/><text x="86.6475%" y="479.50"></text></g><g><title>kmem_cache_alloc (1,222 samples, 0.05%)</title><rect x="86.3628%" y="501" width="0.0510%" height="15" fill="rgb(241,103,54)" fg:x="2070320" fg:w="1222"/><text x="86.6128%" y="511.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (521 samples, 0.02%)</title><rect x="86.3920%" y="485" width="0.0217%" height="15" fill="rgb(228,22,34)" fg:x="2071021" fg:w="521"/><text x="86.6420%" y="495.50"></text></g><g><title>kmem_cache_free (590 samples, 0.02%)</title><rect x="86.4137%" y="501" width="0.0246%" height="15" fill="rgb(241,179,48)" fg:x="2071542" fg:w="590"/><text x="86.6637%" y="511.50"></text></g><g><title>security_inode_init_security (398 samples, 0.02%)</title><rect x="86.4386%" y="501" width="0.0166%" height="15" fill="rgb(235,167,37)" fg:x="2072137" fg:w="398"/><text x="86.6886%" y="511.50"></text></g><g><title>_raw_spin_lock (659 samples, 0.03%)</title><rect x="86.5476%" y="469" width="0.0275%" height="15" fill="rgb(213,109,30)" fg:x="2074752" fg:w="659"/><text x="86.7976%" y="479.50"></text></g><g><title>_raw_spin_lock (1,179 samples, 0.05%)</title><rect x="86.6211%" y="437" width="0.0492%" height="15" fill="rgb(222,172,16)" fg:x="2076512" fg:w="1179"/><text x="86.8711%" y="447.50"></text></g><g><title>native_queued_spin_lock_slowpath (483 samples, 0.02%)</title><rect x="86.6501%" y="421" width="0.0201%" height="15" fill="rgb(233,192,5)" fg:x="2077208" fg:w="483"/><text x="86.9001%" y="431.50"></text></g><g><title>_raw_spin_lock (284 samples, 0.01%)</title><rect x="86.7340%" y="405" width="0.0118%" height="15" fill="rgb(247,189,41)" fg:x="2079219" fg:w="284"/><text x="86.9840%" y="415.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (1,812 samples, 0.08%)</title><rect x="86.6703%" y="437" width="0.0756%" height="15" fill="rgb(218,134,47)" fg:x="2077692" fg:w="1812"/><text x="86.9203%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (743 samples, 0.03%)</title><rect x="86.7149%" y="421" width="0.0310%" height="15" fill="rgb(216,29,3)" fg:x="2078761" fg:w="743"/><text x="86.9649%" y="431.50"></text></g><g><title>btrfs_get_alloc_profile (269 samples, 0.01%)</title><rect x="86.7599%" y="421" width="0.0112%" height="15" fill="rgb(246,140,12)" fg:x="2079841" fg:w="269"/><text x="87.0099%" y="431.50"></text></g><g><title>_raw_spin_lock (383 samples, 0.02%)</title><rect x="86.7830%" y="405" width="0.0160%" height="15" fill="rgb(230,136,11)" fg:x="2080395" fg:w="383"/><text x="87.0330%" y="415.50"></text></g><g><title>__reserve_bytes (4,866 samples, 0.20%)</title><rect x="86.5961%" y="453" width="0.2030%" height="15" fill="rgb(247,22,47)" fg:x="2075913" fg:w="4866"/><text x="86.8461%" y="463.50"></text></g><g><title>calc_available_free_space.isra.0 (1,275 samples, 0.05%)</title><rect x="86.7459%" y="437" width="0.0532%" height="15" fill="rgb(218,84,22)" fg:x="2079504" fg:w="1275"/><text x="86.9959%" y="447.50"></text></g><g><title>btrfs_reduce_alloc_profile (669 samples, 0.03%)</title><rect x="86.7711%" y="421" width="0.0279%" height="15" fill="rgb(216,87,39)" fg:x="2080110" fg:w="669"/><text x="87.0211%" y="431.50"></text></g><g><title>btrfs_reserve_metadata_bytes (5,373 samples, 0.22%)</title><rect x="86.5751%" y="469" width="0.2241%" height="15" fill="rgb(221,178,8)" fg:x="2075411" fg:w="5373"/><text x="86.8251%" y="479.50"></text></g><g><title>btrfs_block_rsv_add (6,175 samples, 0.26%)</title><rect x="86.5417%" y="485" width="0.2576%" height="15" fill="rgb(230,42,11)" fg:x="2074610" fg:w="6175"/><text x="86.7917%" y="495.50"></text></g><g><title>_raw_spin_lock (435 samples, 0.02%)</title><rect x="86.8263%" y="469" width="0.0181%" height="15" fill="rgb(237,229,4)" fg:x="2081433" fg:w="435"/><text x="87.0763%" y="479.50"></text></g><g><title>join_transaction (1,011 samples, 0.04%)</title><rect x="86.8024%" y="485" width="0.0422%" height="15" fill="rgb(222,31,33)" fg:x="2080860" fg:w="1011"/><text x="87.0524%" y="495.50"></text></g><g><title>kmem_cache_alloc (968 samples, 0.04%)</title><rect x="86.8446%" y="485" width="0.0404%" height="15" fill="rgb(210,17,39)" fg:x="2081871" fg:w="968"/><text x="87.0946%" y="495.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (276 samples, 0.01%)</title><rect x="86.8735%" y="469" width="0.0115%" height="15" fill="rgb(244,93,20)" fg:x="2082563" fg:w="276"/><text x="87.1235%" y="479.50"></text></g><g><title>_raw_spin_lock (654 samples, 0.03%)</title><rect x="86.8969%" y="469" width="0.0273%" height="15" fill="rgb(210,40,47)" fg:x="2083124" fg:w="654"/><text x="87.1469%" y="479.50"></text></g><g><title>start_transaction (11,245 samples, 0.47%)</title><rect x="86.4552%" y="501" width="0.4691%" height="15" fill="rgb(239,211,47)" fg:x="2072535" fg:w="11245"/><text x="86.7052%" y="511.50"></text></g><g><title>wait_current_trans (941 samples, 0.04%)</title><rect x="86.8850%" y="485" width="0.0393%" height="15" fill="rgb(251,223,49)" fg:x="2082839" fg:w="941"/><text x="87.1350%" y="495.50"></text></g><g><title>strlen (2,916 samples, 0.12%)</title><rect x="86.9242%" y="501" width="0.1216%" height="15" fill="rgb(221,149,5)" fg:x="2083780" fg:w="2916"/><text x="87.1742%" y="511.50"></text></g><g><title>btrfs_symlink (452,072 samples, 18.86%)</title><rect x="68.2173%" y="517" width="18.8580%" height="15" fill="rgb(219,224,51)" fg:x="1635331" fg:w="452072"/><text x="68.4673%" y="527.50">btrfs_symlink</text></g><g><title>write_extent_buffer (707 samples, 0.03%)</title><rect x="87.0459%" y="501" width="0.0295%" height="15" fill="rgb(223,7,8)" fg:x="2086696" fg:w="707"/><text x="87.2959%" y="511.50"></text></g><g><title>fsnotify (579 samples, 0.02%)</title><rect x="87.0761%" y="517" width="0.0242%" height="15" fill="rgb(241,217,22)" fg:x="2087420" fg:w="579"/><text x="87.3261%" y="527.50"></text></g><g><title>btrfs_permission (381 samples, 0.02%)</title><rect x="87.1110%" y="501" width="0.0159%" height="15" fill="rgb(248,209,0)" fg:x="2088258" fg:w="381"/><text x="87.3610%" y="511.50"></text></g><g><title>inode_permission.part.0 (679 samples, 0.03%)</title><rect x="87.1002%" y="517" width="0.0283%" height="15" fill="rgb(217,205,4)" fg:x="2087999" fg:w="679"/><text x="87.3502%" y="527.50"></text></g><g><title>do_symlinkat (576,546 samples, 24.05%)</title><rect x="63.0930%" y="549" width="24.0504%" height="15" fill="rgb(228,124,39)" fg:x="1512488" fg:w="576546"/><text x="63.3430%" y="559.50">do_symlinkat</text></g><g><title>vfs_symlink (454,330 samples, 18.95%)</title><rect x="68.1912%" y="533" width="18.9522%" height="15" fill="rgb(250,116,42)" fg:x="1634704" fg:w="454330"/><text x="68.4412%" y="543.50">vfs_symlink</text></g><g><title>do_syscall_64 (577,339 samples, 24.08%)</title><rect x="63.0715%" y="565" width="24.0835%" height="15" fill="rgb(223,202,9)" fg:x="1511974" fg:w="577339"/><text x="63.3215%" y="575.50">do_syscall_64</text></g><g><title>syscall_enter_from_user_mode (279 samples, 0.01%)</title><rect x="87.1434%" y="549" width="0.0116%" height="15" fill="rgb(242,222,40)" fg:x="2089034" fg:w="279"/><text x="87.3934%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (579,038 samples, 24.15%)</title><rect x="63.0550%" y="581" width="24.1544%" height="15" fill="rgb(229,99,46)" fg:x="1511578" fg:w="579038"/><text x="63.3050%" y="591.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (1,303 samples, 0.05%)</title><rect x="87.1550%" y="565" width="0.0544%" height="15" fill="rgb(225,56,46)" fg:x="2089313" fg:w="1303"/><text x="87.4050%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (1,160 samples, 0.05%)</title><rect x="87.1610%" y="549" width="0.0484%" height="15" fill="rgb(227,94,5)" fg:x="2089456" fg:w="1160"/><text x="87.4110%" y="559.50"></text></g><g><title>switch_fpu_return (818 samples, 0.03%)</title><rect x="87.1753%" y="533" width="0.0341%" height="15" fill="rgb(205,112,38)" fg:x="2089798" fg:w="818"/><text x="87.4253%" y="543.50"></text></g><g><title>copy_kernel_to_fpregs (262 samples, 0.01%)</title><rect x="87.1985%" y="517" width="0.0109%" height="15" fill="rgb(231,133,46)" fg:x="2090354" fg:w="262"/><text x="87.4485%" y="527.50"></text></g><g><title>syscall_return_via_sysret (334 samples, 0.01%)</title><rect x="87.2165%" y="581" width="0.0139%" height="15" fill="rgb(217,16,9)" fg:x="2090787" fg:w="334"/><text x="87.4665%" y="591.50"></text></g><g><title>__symlink (581,154 samples, 24.24%)</title><rect x="62.9882%" y="597" width="24.2427%" height="15" fill="rgb(249,173,9)" fg:x="1509977" fg:w="581154"/><text x="63.2382%" y="607.50">__symlink</text></g><g><title>_int_free (788 samples, 0.03%)</title><rect x="87.2309%" y="597" width="0.0329%" height="15" fill="rgb(205,163,53)" fg:x="2091131" fg:w="788"/><text x="87.4809%" y="607.50"></text></g><g><title>free@plt (349 samples, 0.01%)</title><rect x="87.2671%" y="597" width="0.0146%" height="15" fill="rgb(217,54,41)" fg:x="2091999" fg:w="349"/><text x="87.5171%" y="607.50"></text></g><g><title>jni_ExceptionOccurred (623 samples, 0.03%)</title><rect x="87.2816%" y="597" width="0.0260%" height="15" fill="rgb(228,216,12)" fg:x="2092348" fg:w="623"/><text x="87.5316%" y="607.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (538 samples, 0.02%)</title><rect x="87.3315%" y="581" width="0.0224%" height="15" fill="rgb(244,228,15)" fg:x="2093543" fg:w="538"/><text x="87.5815%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (405 samples, 0.02%)</title><rect x="87.3539%" y="581" width="0.0169%" height="15" fill="rgb(221,176,53)" fg:x="2094081" fg:w="405"/><text x="87.6039%" y="591.50"></text></g><g><title>[libc-2.31.so] (397 samples, 0.02%)</title><rect x="87.3708%" y="581" width="0.0166%" height="15" fill="rgb(205,94,34)" fg:x="2094486" fg:w="397"/><text x="87.6208%" y="591.50"></text></g><g><title>check_bounds (846 samples, 0.04%)</title><rect x="87.3876%" y="581" width="0.0353%" height="15" fill="rgb(213,110,48)" fg:x="2094889" fg:w="846"/><text x="87.6376%" y="591.50"></text></g><g><title>jni_GetByteArrayRegion (3,098 samples, 0.13%)</title><rect x="87.3076%" y="597" width="0.1292%" height="15" fill="rgb(236,142,28)" fg:x="2092971" fg:w="3098"/><text x="87.5576%" y="607.50"></text></g><g><title>memmove@plt (334 samples, 0.01%)</title><rect x="87.4229%" y="581" width="0.0139%" height="15" fill="rgb(225,135,29)" fg:x="2095735" fg:w="334"/><text x="87.6729%" y="591.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (991 samples, 0.04%)</title><rect x="87.4691%" y="565" width="0.0413%" height="15" fill="rgb(252,45,31)" fg:x="2096841" fg:w="991"/><text x="87.7191%" y="575.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (897 samples, 0.04%)</title><rect x="87.4730%" y="549" width="0.0374%" height="15" fill="rgb(211,187,50)" fg:x="2096935" fg:w="897"/><text x="87.7230%" y="559.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (1,114 samples, 0.05%)</title><rect x="87.4640%" y="581" width="0.0465%" height="15" fill="rgb(229,109,7)" fg:x="2096719" fg:w="1114"/><text x="87.7140%" y="591.50"></text></g><g><title>HandleMark::pop_and_restore (635 samples, 0.03%)</title><rect x="87.5105%" y="581" width="0.0265%" height="15" fill="rgb(251,131,51)" fg:x="2097833" fg:w="635"/><text x="87.7605%" y="591.50"></text></g><g><title>JNIHandles::make_local (743 samples, 0.03%)</title><rect x="87.5369%" y="581" width="0.0310%" height="15" fill="rgb(251,180,35)" fg:x="2098468" fg:w="743"/><text x="87.7869%" y="591.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (387 samples, 0.02%)</title><rect x="87.5685%" y="581" width="0.0161%" height="15" fill="rgb(211,46,32)" fg:x="2099224" fg:w="387"/><text x="87.8185%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (527 samples, 0.02%)</title><rect x="87.5846%" y="581" width="0.0220%" height="15" fill="rgb(248,123,17)" fg:x="2099611" fg:w="527"/><text x="87.8346%" y="591.50"></text></g><g><title>jni_GetObjectField (4,071 samples, 0.17%)</title><rect x="87.4370%" y="597" width="0.1698%" height="15" fill="rgb(227,141,18)" fg:x="2096072" fg:w="4071"/><text x="87.6870%" y="607.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (454 samples, 0.02%)</title><rect x="87.6507%" y="581" width="0.0189%" height="15" fill="rgb(216,102,9)" fg:x="2101195" fg:w="454"/><text x="87.9007%" y="591.50"></text></g><g><title>ThreadStateTransition::transition_from_native (791 samples, 0.03%)</title><rect x="87.6696%" y="581" width="0.0330%" height="15" fill="rgb(253,47,13)" fg:x="2101649" fg:w="791"/><text x="87.9196%" y="591.50"></text></g><g><title>jni_GetStringLength (2,304 samples, 0.10%)</title><rect x="87.6068%" y="597" width="0.0961%" height="15" fill="rgb(226,93,23)" fg:x="2100143" fg:w="2304"/><text x="87.8568%" y="607.50"></text></g><g><title>operator delete@plt (669 samples, 0.03%)</title><rect x="87.7213%" y="597" width="0.0279%" height="15" fill="rgb(247,104,17)" fg:x="2102887" fg:w="669"/><text x="87.9713%" y="607.50"></text></g><g><title>__GI___libc_malloc (1,059 samples, 0.04%)</title><rect x="87.7594%" y="581" width="0.0442%" height="15" fill="rgb(233,203,26)" fg:x="2103802" fg:w="1059"/><text x="88.0094%" y="591.50"></text></g><g><title>tcache_get (398 samples, 0.02%)</title><rect x="87.7870%" y="565" width="0.0166%" height="15" fill="rgb(244,98,49)" fg:x="2104463" fg:w="398"/><text x="88.0370%" y="575.50"></text></g><g><title>operator new (1,435 samples, 0.06%)</title><rect x="87.7591%" y="597" width="0.0599%" height="15" fill="rgb(235,134,22)" fg:x="2103793" fg:w="1435"/><text x="88.0091%" y="607.50"></text></g><g><title>malloc@plt (364 samples, 0.02%)</title><rect x="87.8038%" y="581" width="0.0152%" height="15" fill="rgb(221,70,32)" fg:x="2104864" fg:w="364"/><text x="88.0538%" y="591.50"></text></g><g><title>operator new@plt (517 samples, 0.02%)</title><rect x="87.8189%" y="597" width="0.0216%" height="15" fill="rgb(238,15,50)" fg:x="2105228" fg:w="517"/><text x="88.0689%" y="607.50"></text></g><g><title>operator new[] (253 samples, 0.01%)</title><rect x="87.8405%" y="597" width="0.0106%" height="15" fill="rgb(215,221,48)" fg:x="2105745" fg:w="253"/><text x="88.0905%" y="607.50"></text></g><g><title>btrfs_rename2 (278 samples, 0.01%)</title><rect x="87.8515%" y="501" width="0.0116%" height="15" fill="rgb(236,73,3)" fg:x="2106008" fg:w="278"/><text x="88.1015%" y="511.50"></text></g><g><title>rename (292 samples, 0.01%)</title><rect x="87.8511%" y="597" width="0.0122%" height="15" fill="rgb(250,107,11)" fg:x="2105998" fg:w="292"/><text x="88.1011%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (291 samples, 0.01%)</title><rect x="87.8511%" y="581" width="0.0121%" height="15" fill="rgb(242,39,14)" fg:x="2105999" fg:w="291"/><text x="88.1011%" y="591.50"></text></g><g><title>do_syscall_64 (291 samples, 0.01%)</title><rect x="87.8511%" y="565" width="0.0121%" height="15" fill="rgb(248,164,37)" fg:x="2105999" fg:w="291"/><text x="88.1011%" y="575.50"></text></g><g><title>__x64_sys_rename (291 samples, 0.01%)</title><rect x="87.8511%" y="549" width="0.0121%" height="15" fill="rgb(217,60,12)" fg:x="2105999" fg:w="291"/><text x="88.1011%" y="559.50"></text></g><g><title>do_renameat2 (291 samples, 0.01%)</title><rect x="87.8511%" y="533" width="0.0121%" height="15" fill="rgb(240,125,29)" fg:x="2105999" fg:w="291"/><text x="88.1011%" y="543.50"></text></g><g><title>vfs_rename (282 samples, 0.01%)</title><rect x="87.8515%" y="517" width="0.0118%" height="15" fill="rgb(208,207,28)" fg:x="2106008" fg:w="282"/><text x="88.1015%" y="527.50"></text></g><g><title>_int_malloc (518 samples, 0.02%)</title><rect x="87.8874%" y="549" width="0.0216%" height="15" fill="rgb(209,159,27)" fg:x="2106869" fg:w="518"/><text x="88.1374%" y="559.50"></text></g><g><title>__GI___libc_malloc (1,077 samples, 0.04%)</title><rect x="87.8697%" y="565" width="0.0449%" height="15" fill="rgb(251,176,53)" fg:x="2106446" fg:w="1077"/><text x="88.1197%" y="575.50"></text></g><g><title>operator new (1,150 samples, 0.05%)</title><rect x="87.8695%" y="581" width="0.0480%" height="15" fill="rgb(211,85,7)" fg:x="2106441" fg:w="1150"/><text x="88.1195%" y="591.50"></text></g><g><title>[libunix_jni.so] (1,927,412 samples, 80.40%)</title><rect x="7.5189%" y="613" width="80.4014%" height="15" fill="rgb(216,64,54)" fg:x="180246" fg:w="1927412"/><text x="7.7689%" y="623.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (1,316 samples, 0.05%)</title><rect x="87.8654%" y="597" width="0.0549%" height="15" fill="rgb(217,54,24)" fg:x="2106342" fg:w="1316"/><text x="88.1154%" y="607.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (299 samples, 0.01%)</title><rect x="92.3108%" y="597" width="0.0125%" height="15" fill="rgb(208,206,53)" fg:x="2212908" fg:w="299"/><text x="92.5608%" y="607.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (299 samples, 0.01%)</title><rect x="92.3108%" y="581" width="0.0125%" height="15" fill="rgb(251,74,39)" fg:x="2212908" fg:w="299"/><text x="92.5608%" y="591.50"></text></g><g><title>TieredThresholdPolicy::event (247 samples, 0.01%)</title><rect x="92.3129%" y="565" width="0.0103%" height="15" fill="rgb(226,47,5)" fg:x="2212960" fg:w="247"/><text x="92.5629%" y="575.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (317 samples, 0.01%)</title><rect x="92.3348%" y="581" width="0.0132%" height="15" fill="rgb(234,111,33)" fg:x="2213483" fg:w="317"/><text x="92.5848%" y="591.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (441 samples, 0.02%)</title><rect x="92.3327%" y="597" width="0.0184%" height="15" fill="rgb(251,14,10)" fg:x="2213433" fg:w="441"/><text x="92.5827%" y="607.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (339 samples, 0.01%)</title><rect x="92.3847%" y="469" width="0.0141%" height="15" fill="rgb(232,43,0)" fg:x="2214680" fg:w="339"/><text x="92.6347%" y="479.50"></text></g><g><title>SymbolTable::lookup_only (297 samples, 0.01%)</title><rect x="92.3864%" y="453" width="0.0124%" height="15" fill="rgb(222,68,43)" fg:x="2214722" fg:w="297"/><text x="92.6364%" y="463.50"></text></g><g><title>ClassFileParser::parse_constant_pool (349 samples, 0.01%)</title><rect x="92.3845%" y="485" width="0.0146%" height="15" fill="rgb(217,24,23)" fg:x="2214675" fg:w="349"/><text x="92.6345%" y="495.50"></text></g><g><title>ClassFileParser::ClassFileParser (430 samples, 0.02%)</title><rect x="92.3843%" y="517" width="0.0179%" height="15" fill="rgb(229,209,14)" fg:x="2214670" fg:w="430"/><text x="92.6343%" y="527.50"></text></g><g><title>ClassFileParser::parse_stream (430 samples, 0.02%)</title><rect x="92.3843%" y="501" width="0.0179%" height="15" fill="rgb(250,149,48)" fg:x="2214670" fg:w="430"/><text x="92.6343%" y="511.50"></text></g><g><title>KlassFactory::create_from_stream (529 samples, 0.02%)</title><rect x="92.3842%" y="533" width="0.0221%" height="15" fill="rgb(210,120,37)" fg:x="2214669" fg:w="529"/><text x="92.6342%" y="543.50"></text></g><g><title>SystemDictionary::resolve_from_stream (548 samples, 0.02%)</title><rect x="92.3842%" y="549" width="0.0229%" height="15" fill="rgb(210,21,8)" fg:x="2214668" fg:w="548"/><text x="92.6342%" y="559.50"></text></g><g><title>JVM_DefineClassWithSource (559 samples, 0.02%)</title><rect x="92.3838%" y="581" width="0.0233%" height="15" fill="rgb(243,145,7)" fg:x="2214658" fg:w="559"/><text x="92.6338%" y="591.50"></text></g><g><title>jvm_define_class_common (558 samples, 0.02%)</title><rect x="92.3838%" y="565" width="0.0233%" height="15" fill="rgb(238,178,32)" fg:x="2214659" fg:w="558"/><text x="92.6338%" y="575.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (571 samples, 0.02%)</title><rect x="92.3838%" y="597" width="0.0238%" height="15" fill="rgb(222,4,10)" fg:x="2214658" fg:w="571"/><text x="92.6338%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (442 samples, 0.02%)</title><rect x="92.4247%" y="501" width="0.0184%" height="15" fill="rgb(239,7,37)" fg:x="2215638" fg:w="442"/><text x="92.6747%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (434 samples, 0.02%)</title><rect x="92.4250%" y="485" width="0.0181%" height="15" fill="rgb(215,31,37)" fg:x="2215646" fg:w="434"/><text x="92.6750%" y="495.50"></text></g><g><title>native_write_msr (434 samples, 0.02%)</title><rect x="92.4250%" y="469" width="0.0181%" height="15" fill="rgb(224,83,33)" fg:x="2215646" fg:w="434"/><text x="92.6750%" y="479.50"></text></g><g><title>schedule_tail (472 samples, 0.02%)</title><rect x="92.4241%" y="533" width="0.0197%" height="15" fill="rgb(239,55,3)" fg:x="2215625" fg:w="472"/><text x="92.6741%" y="543.50"></text></g><g><title>finish_task_switch (469 samples, 0.02%)</title><rect x="92.4242%" y="517" width="0.0196%" height="15" fill="rgb(247,92,11)" fg:x="2215628" fg:w="469"/><text x="92.6742%" y="527.50"></text></g><g><title>ret_from_fork (496 samples, 0.02%)</title><rect x="92.4233%" y="549" width="0.0207%" height="15" fill="rgb(239,200,7)" fg:x="2215606" fg:w="496"/><text x="92.6733%" y="559.50"></text></g><g><title>__libc_vfork (676 samples, 0.03%)</title><rect x="92.4159%" y="565" width="0.0282%" height="15" fill="rgb(227,115,8)" fg:x="2215427" fg:w="676"/><text x="92.6659%" y="575.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,085 samples, 0.05%)</title><rect x="92.4123%" y="597" width="0.0453%" height="15" fill="rgb(215,189,27)" fg:x="2215341" fg:w="1085"/><text x="92.6623%" y="607.50"></text></g><g><title>vforkChild (1,001 samples, 0.04%)</title><rect x="92.4158%" y="581" width="0.0418%" height="15" fill="rgb(251,216,39)" fg:x="2215425" fg:w="1001"/><text x="92.6658%" y="591.50"></text></g><g><title>childProcess (323 samples, 0.01%)</title><rect x="92.4441%" y="565" width="0.0135%" height="15" fill="rgb(207,29,47)" fg:x="2216103" fg:w="323"/><text x="92.6941%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (474 samples, 0.02%)</title><rect x="92.5228%" y="373" width="0.0198%" height="15" fill="rgb(210,71,34)" fg:x="2217991" fg:w="474"/><text x="92.7728%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (461 samples, 0.02%)</title><rect x="92.5234%" y="357" width="0.0192%" height="15" fill="rgb(253,217,51)" fg:x="2218004" fg:w="461"/><text x="92.7734%" y="367.50"></text></g><g><title>native_write_msr (460 samples, 0.02%)</title><rect x="92.5234%" y="341" width="0.0192%" height="15" fill="rgb(222,117,46)" fg:x="2218005" fg:w="460"/><text x="92.7734%" y="351.50"></text></g><g><title>finish_task_switch (502 samples, 0.02%)</title><rect x="92.5224%" y="389" width="0.0209%" height="15" fill="rgb(226,132,6)" fg:x="2217981" fg:w="502"/><text x="92.7724%" y="399.50"></text></g><g><title>futex_wait_queue_me (596 samples, 0.02%)</title><rect x="92.5205%" y="437" width="0.0249%" height="15" fill="rgb(254,145,51)" fg:x="2217936" fg:w="596"/><text x="92.7705%" y="447.50"></text></g><g><title>schedule (592 samples, 0.02%)</title><rect x="92.5207%" y="421" width="0.0247%" height="15" fill="rgb(231,199,27)" fg:x="2217940" fg:w="592"/><text x="92.7707%" y="431.50"></text></g><g><title>__schedule (588 samples, 0.02%)</title><rect x="92.5208%" y="405" width="0.0245%" height="15" fill="rgb(245,158,14)" fg:x="2217944" fg:w="588"/><text x="92.7708%" y="415.50"></text></g><g><title>__x64_sys_futex (609 samples, 0.03%)</title><rect x="92.5201%" y="485" width="0.0254%" height="15" fill="rgb(240,113,14)" fg:x="2217926" fg:w="609"/><text x="92.7701%" y="495.50"></text></g><g><title>do_futex (606 samples, 0.03%)</title><rect x="92.5202%" y="469" width="0.0253%" height="15" fill="rgb(210,20,13)" fg:x="2217929" fg:w="606"/><text x="92.7702%" y="479.50"></text></g><g><title>futex_wait (601 samples, 0.03%)</title><rect x="92.5204%" y="453" width="0.0251%" height="15" fill="rgb(241,144,13)" fg:x="2217934" fg:w="601"/><text x="92.7704%" y="463.50"></text></g><g><title>do_syscall_64 (613 samples, 0.03%)</title><rect x="92.5200%" y="501" width="0.0256%" height="15" fill="rgb(235,43,34)" fg:x="2217923" fg:w="613"/><text x="92.7700%" y="511.50"></text></g><g><title>__pthread_cond_wait (638 samples, 0.03%)</title><rect x="92.5194%" y="565" width="0.0266%" height="15" fill="rgb(208,36,20)" fg:x="2217909" fg:w="638"/><text x="92.7694%" y="575.50"></text></g><g><title>__pthread_cond_wait_common (638 samples, 0.03%)</title><rect x="92.5194%" y="549" width="0.0266%" height="15" fill="rgb(239,204,10)" fg:x="2217909" fg:w="638"/><text x="92.7694%" y="559.50"></text></g><g><title>futex_wait_cancelable (631 samples, 0.03%)</title><rect x="92.5197%" y="533" width="0.0263%" height="15" fill="rgb(217,84,43)" fg:x="2217916" fg:w="631"/><text x="92.7697%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (626 samples, 0.03%)</title><rect x="92.5199%" y="517" width="0.0261%" height="15" fill="rgb(241,170,50)" fg:x="2217921" fg:w="626"/><text x="92.7699%" y="527.50"></text></g><g><title>Parker::park (714 samples, 0.03%)</title><rect x="92.5172%" y="581" width="0.0298%" height="15" fill="rgb(226,205,29)" fg:x="2217857" fg:w="714"/><text x="92.7672%" y="591.50"></text></g><g><title>Unsafe_Park (724 samples, 0.03%)</title><rect x="92.5169%" y="597" width="0.0302%" height="15" fill="rgb(233,113,1)" fg:x="2217850" fg:w="724"/><text x="92.7669%" y="607.50"></text></g><g><title>do_syscall_64 (320 samples, 0.01%)</title><rect x="92.5499%" y="533" width="0.0133%" height="15" fill="rgb(253,98,13)" fg:x="2218641" fg:w="320"/><text x="92.7999%" y="543.50"></text></g><g><title>__x64_sys_futex (320 samples, 0.01%)</title><rect x="92.5499%" y="517" width="0.0133%" height="15" fill="rgb(211,115,12)" fg:x="2218641" fg:w="320"/><text x="92.7999%" y="527.50"></text></g><g><title>do_futex (318 samples, 0.01%)</title><rect x="92.5500%" y="501" width="0.0133%" height="15" fill="rgb(208,12,16)" fg:x="2218643" fg:w="318"/><text x="92.8000%" y="511.50"></text></g><g><title>futex_wake (313 samples, 0.01%)</title><rect x="92.5502%" y="485" width="0.0131%" height="15" fill="rgb(237,193,54)" fg:x="2218648" fg:w="313"/><text x="92.8002%" y="495.50"></text></g><g><title>wake_up_q (254 samples, 0.01%)</title><rect x="92.5527%" y="469" width="0.0106%" height="15" fill="rgb(243,22,42)" fg:x="2218707" fg:w="254"/><text x="92.8027%" y="479.50"></text></g><g><title>try_to_wake_up (248 samples, 0.01%)</title><rect x="92.5529%" y="453" width="0.0103%" height="15" fill="rgb(233,151,36)" fg:x="2218713" fg:w="248"/><text x="92.8029%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (339 samples, 0.01%)</title><rect x="92.5498%" y="549" width="0.0141%" height="15" fill="rgb(237,57,45)" fg:x="2218638" fg:w="339"/><text x="92.7998%" y="559.50"></text></g><g><title>__pthread_cond_signal (355 samples, 0.01%)</title><rect x="92.5492%" y="581" width="0.0148%" height="15" fill="rgb(221,88,17)" fg:x="2218623" fg:w="355"/><text x="92.7992%" y="591.50"></text></g><g><title>futex_wake (347 samples, 0.01%)</title><rect x="92.5495%" y="565" width="0.0145%" height="15" fill="rgb(230,79,15)" fg:x="2218631" fg:w="347"/><text x="92.7995%" y="575.50"></text></g><g><title>Unsafe_Unpark (409 samples, 0.02%)</title><rect x="92.5473%" y="597" width="0.0171%" height="15" fill="rgb(213,57,13)" fg:x="2218577" fg:w="409"/><text x="92.7973%" y="607.50"></text></g><g><title>asm_common_interrupt (241 samples, 0.01%)</title><rect x="92.5732%" y="597" width="0.0101%" height="15" fill="rgb(222,116,39)" fg:x="2219200" fg:w="241"/><text x="92.8232%" y="607.50"></text></g><g><title>common_interrupt (241 samples, 0.01%)</title><rect x="92.5732%" y="581" width="0.0101%" height="15" fill="rgb(245,107,2)" fg:x="2219200" fg:w="241"/><text x="92.8232%" y="591.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (271 samples, 0.01%)</title><rect x="92.5845%" y="597" width="0.0113%" height="15" fill="rgb(238,1,10)" fg:x="2219469" fg:w="271"/><text x="92.8345%" y="607.50"></text></g><g><title>do_filp_open (260 samples, 0.01%)</title><rect x="92.6162%" y="501" width="0.0108%" height="15" fill="rgb(249,4,48)" fg:x="2220229" fg:w="260"/><text x="92.8662%" y="511.50"></text></g><g><title>path_openat (257 samples, 0.01%)</title><rect x="92.6163%" y="485" width="0.0107%" height="15" fill="rgb(223,151,18)" fg:x="2220232" fg:w="257"/><text x="92.8663%" y="495.50"></text></g><g><title>do_syscall_64 (334 samples, 0.01%)</title><rect x="92.6148%" y="549" width="0.0139%" height="15" fill="rgb(227,65,43)" fg:x="2220197" fg:w="334"/><text x="92.8648%" y="559.50"></text></g><g><title>__x64_sys_openat (331 samples, 0.01%)</title><rect x="92.6150%" y="533" width="0.0138%" height="15" fill="rgb(218,40,45)" fg:x="2220200" fg:w="331"/><text x="92.8650%" y="543.50"></text></g><g><title>do_sys_openat2 (329 samples, 0.01%)</title><rect x="92.6150%" y="517" width="0.0137%" height="15" fill="rgb(252,121,31)" fg:x="2220202" fg:w="329"/><text x="92.8650%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (336 samples, 0.01%)</title><rect x="92.6148%" y="565" width="0.0140%" height="15" fill="rgb(219,158,43)" fg:x="2220197" fg:w="336"/><text x="92.8648%" y="575.50"></text></g><g><title>__libc_open64 (351 samples, 0.01%)</title><rect x="92.6143%" y="581" width="0.0146%" height="15" fill="rgb(231,162,42)" fg:x="2220184" fg:w="351"/><text x="92.8643%" y="591.50"></text></g><g><title>fileOpen (494 samples, 0.02%)</title><rect x="92.6093%" y="597" width="0.0206%" height="15" fill="rgb(217,179,25)" fg:x="2220065" fg:w="494"/><text x="92.8593%" y="607.50"></text></g><g><title>[perf-974282.map] (113,122 samples, 4.72%)</title><rect x="87.9203%" y="613" width="4.7188%" height="15" fill="rgb(206,212,31)" fg:x="2107658" fg:w="113122"/><text x="88.1703%" y="623.50">[perf..</text></g><g><title>SharedRuntime::resolve_sub_helper (331 samples, 0.01%)</title><rect x="92.6454%" y="597" width="0.0138%" height="15" fill="rgb(235,144,12)" fg:x="2220929" fg:w="331"/><text x="92.8954%" y="607.50"></text></g><g><title>generic_file_buffered_read (305 samples, 0.01%)</title><rect x="92.6856%" y="453" width="0.0127%" height="15" fill="rgb(213,51,10)" fg:x="2221893" fg:w="305"/><text x="92.9356%" y="463.50"></text></g><g><title>new_sync_read (317 samples, 0.01%)</title><rect x="92.6851%" y="469" width="0.0132%" height="15" fill="rgb(231,145,14)" fg:x="2221882" fg:w="317"/><text x="92.9351%" y="479.50"></text></g><g><title>ksys_read (382 samples, 0.02%)</title><rect x="92.6833%" y="501" width="0.0159%" height="15" fill="rgb(235,15,28)" fg:x="2221838" fg:w="382"/><text x="92.9333%" y="511.50"></text></g><g><title>vfs_read (354 samples, 0.01%)</title><rect x="92.6845%" y="485" width="0.0148%" height="15" fill="rgb(237,206,10)" fg:x="2221866" fg:w="354"/><text x="92.9345%" y="495.50"></text></g><g><title>do_syscall_64 (386 samples, 0.02%)</title><rect x="92.6832%" y="517" width="0.0161%" height="15" fill="rgb(236,227,27)" fg:x="2221835" fg:w="386"/><text x="92.9332%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (392 samples, 0.02%)</title><rect x="92.6831%" y="533" width="0.0164%" height="15" fill="rgb(246,83,35)" fg:x="2221834" fg:w="392"/><text x="92.9331%" y="543.50"></text></g><g><title>__libc_read (420 samples, 0.02%)</title><rect x="92.6820%" y="565" width="0.0175%" height="15" fill="rgb(220,136,24)" fg:x="2221808" fg:w="420"/><text x="92.9320%" y="575.50"></text></g><g><title>__libc_read (419 samples, 0.02%)</title><rect x="92.6821%" y="549" width="0.0175%" height="15" fill="rgb(217,3,25)" fg:x="2221809" fg:w="419"/><text x="92.9321%" y="559.50"></text></g><g><title>handleRead (422 samples, 0.02%)</title><rect x="92.6820%" y="581" width="0.0176%" height="15" fill="rgb(239,24,14)" fg:x="2221807" fg:w="422"/><text x="92.9320%" y="591.50"></text></g><g><title>readBytes (539 samples, 0.02%)</title><rect x="92.6817%" y="597" width="0.0225%" height="15" fill="rgb(244,16,53)" fg:x="2221801" fg:w="539"/><text x="92.9317%" y="607.50"></text></g><g><title>[unknown] (1,601 samples, 0.07%)</title><rect x="92.6392%" y="613" width="0.0668%" height="15" fill="rgb(208,175,44)" fg:x="2220780" fg:w="1601"/><text x="92.8892%" y="623.50"></text></g><g><title>__GI___clone (240 samples, 0.01%)</title><rect x="92.7059%" y="613" width="0.0100%" height="15" fill="rgb(252,18,48)" fg:x="2222381" fg:w="240"/><text x="92.9559%" y="623.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (277 samples, 0.01%)</title><rect x="92.7259%" y="613" width="0.0116%" height="15" fill="rgb(234,199,32)" fg:x="2222859" fg:w="277"/><text x="92.9759%" y="623.50"></text></g><g><title>skyframe-evalua (2,048,715 samples, 85.46%)</title><rect x="7.2868%" y="629" width="85.4615%" height="15" fill="rgb(225,77,54)" fg:x="174681" fg:w="2048715"/><text x="7.5368%" y="639.50">skyframe-evalua</text></g><g><title>kernel_init_free_pages (435 samples, 0.02%)</title><rect x="94.9891%" y="469" width="0.0181%" height="15" fill="rgb(225,42,25)" fg:x="2277114" fg:w="435"/><text x="95.2391%" y="479.50"></text></g><g><title>clear_page_erms (421 samples, 0.02%)</title><rect x="94.9897%" y="453" width="0.0176%" height="15" fill="rgb(242,227,46)" fg:x="2277128" fg:w="421"/><text x="95.2397%" y="463.50"></text></g><g><title>get_page_from_freelist (796 samples, 0.03%)</title><rect x="94.9744%" y="501" width="0.0332%" height="15" fill="rgb(246,197,35)" fg:x="2276761" fg:w="796"/><text x="95.2244%" y="511.50"></text></g><g><title>prep_new_page (470 samples, 0.02%)</title><rect x="94.9880%" y="485" width="0.0196%" height="15" fill="rgb(215,159,26)" fg:x="2277087" fg:w="470"/><text x="95.2380%" y="495.50"></text></g><g><title>__alloc_pages_nodemask (939 samples, 0.04%)</title><rect x="94.9688%" y="517" width="0.0392%" height="15" fill="rgb(212,194,50)" fg:x="2276628" fg:w="939"/><text x="95.2188%" y="527.50"></text></g><g><title>alloc_pages_vma (1,015 samples, 0.04%)</title><rect x="94.9665%" y="533" width="0.0423%" height="15" fill="rgb(246,132,1)" fg:x="2276572" fg:w="1015"/><text x="95.2165%" y="543.50"></text></g><g><title>page_add_file_rmap (289 samples, 0.01%)</title><rect x="95.0638%" y="501" width="0.0121%" height="15" fill="rgb(217,71,7)" fg:x="2278905" fg:w="289"/><text x="95.3138%" y="511.50"></text></g><g><title>alloc_set_pte (456 samples, 0.02%)</title><rect x="95.0581%" y="517" width="0.0190%" height="15" fill="rgb(252,59,32)" fg:x="2278767" fg:w="456"/><text x="95.3081%" y="527.50"></text></g><g><title>filemap_map_pages (1,437 samples, 0.06%)</title><rect x="95.0250%" y="533" width="0.0599%" height="15" fill="rgb(253,204,25)" fg:x="2277975" fg:w="1437"/><text x="95.2750%" y="543.50"></text></g><g><title>lru_cache_add (280 samples, 0.01%)</title><rect x="95.0850%" y="533" width="0.0117%" height="15" fill="rgb(232,21,16)" fg:x="2279414" fg:w="280"/><text x="95.3350%" y="543.50"></text></g><g><title>pagevec_lru_move_fn (248 samples, 0.01%)</title><rect x="95.0864%" y="517" width="0.0103%" height="15" fill="rgb(248,90,29)" fg:x="2279446" fg:w="248"/><text x="95.3364%" y="527.50"></text></g><g><title>mem_cgroup_charge (260 samples, 0.01%)</title><rect x="95.0970%" y="533" width="0.0108%" height="15" fill="rgb(249,223,7)" fg:x="2279700" fg:w="260"/><text x="95.3470%" y="543.50"></text></g><g><title>handle_mm_fault (4,320 samples, 0.18%)</title><rect x="94.9382%" y="549" width="0.1802%" height="15" fill="rgb(231,119,42)" fg:x="2275894" fg:w="4320"/><text x="95.1882%" y="559.50"></text></g><g><title>do_user_addr_fault (4,670 samples, 0.19%)</title><rect x="94.9270%" y="565" width="0.1948%" height="15" fill="rgb(215,41,35)" fg:x="2275624" fg:w="4670"/><text x="95.1770%" y="575.50"></text></g><g><title>exc_page_fault (4,703 samples, 0.20%)</title><rect x="94.9257%" y="581" width="0.1962%" height="15" fill="rgb(220,44,45)" fg:x="2275593" fg:w="4703"/><text x="95.1757%" y="591.50"></text></g><g><title>asm_exc_page_fault (4,808 samples, 0.20%)</title><rect x="94.9236%" y="597" width="0.2006%" height="15" fill="rgb(253,197,36)" fg:x="2275544" fg:w="4808"/><text x="95.1736%" y="607.50"></text></g><g><title>entry_SYSCALL_64 (2,028 samples, 0.08%)</title><rect x="95.1372%" y="597" width="0.0846%" height="15" fill="rgb(245,225,54)" fg:x="2280664" fg:w="2028"/><text x="95.3872%" y="607.50"></text></g><g><title>_copy_to_user (323 samples, 0.01%)</title><rect x="95.2812%" y="533" width="0.0135%" height="15" fill="rgb(239,94,37)" fg:x="2284117" fg:w="323"/><text x="95.5312%" y="543.50"></text></g><g><title>copy_user_enhanced_fast_string (284 samples, 0.01%)</title><rect x="95.2829%" y="517" width="0.0118%" height="15" fill="rgb(242,217,10)" fg:x="2284156" fg:w="284"/><text x="95.5329%" y="527.50"></text></g><g><title>cp_new_stat (548 samples, 0.02%)</title><rect x="95.2773%" y="549" width="0.0229%" height="15" fill="rgb(250,193,7)" fg:x="2284022" fg:w="548"/><text x="95.5273%" y="559.50"></text></g><g><title>btrfs_getattr (1,264 samples, 0.05%)</title><rect x="95.3106%" y="533" width="0.0527%" height="15" fill="rgb(230,104,19)" fg:x="2284822" fg:w="1264"/><text x="95.5606%" y="543.50"></text></g><g><title>security_inode_getattr (572 samples, 0.02%)</title><rect x="95.3670%" y="533" width="0.0239%" height="15" fill="rgb(230,181,4)" fg:x="2286173" fg:w="572"/><text x="95.6170%" y="543.50"></text></g><g><title>tomoyo_path_perm (386 samples, 0.02%)</title><rect x="95.3748%" y="517" width="0.0161%" height="15" fill="rgb(216,219,49)" fg:x="2286359" fg:w="386"/><text x="95.6248%" y="527.50"></text></g><g><title>__do_sys_newfstat (2,985 samples, 0.12%)</title><rect x="95.2758%" y="565" width="0.1245%" height="15" fill="rgb(254,144,0)" fg:x="2283986" fg:w="2985"/><text x="95.5258%" y="575.50"></text></g><g><title>vfs_fstat (2,401 samples, 0.10%)</title><rect x="95.3001%" y="549" width="0.1002%" height="15" fill="rgb(205,209,38)" fg:x="2284570" fg:w="2401"/><text x="95.5501%" y="559.50"></text></g><g><title>fput_many (343 samples, 0.01%)</title><rect x="95.4182%" y="533" width="0.0143%" height="15" fill="rgb(240,21,42)" fg:x="2287400" fg:w="343"/><text x="95.6682%" y="543.50"></text></g><g><title>task_work_add (247 samples, 0.01%)</title><rect x="95.4222%" y="517" width="0.0103%" height="15" fill="rgb(241,132,3)" fg:x="2287496" fg:w="247"/><text x="95.6722%" y="527.50"></text></g><g><title>__x64_sys_close (761 samples, 0.03%)</title><rect x="95.4042%" y="565" width="0.0317%" height="15" fill="rgb(225,14,2)" fg:x="2287065" fg:w="761"/><text x="95.6542%" y="575.50"></text></g><g><title>filp_close (512 samples, 0.02%)</title><rect x="95.4146%" y="549" width="0.0214%" height="15" fill="rgb(210,141,35)" fg:x="2287314" fg:w="512"/><text x="95.6646%" y="559.50"></text></g><g><title>__x64_sys_execve (270 samples, 0.01%)</title><rect x="95.4360%" y="565" width="0.0113%" height="15" fill="rgb(251,14,44)" fg:x="2287828" fg:w="270"/><text x="95.6860%" y="575.50"></text></g><g><title>do_execveat_common (270 samples, 0.01%)</title><rect x="95.4360%" y="549" width="0.0113%" height="15" fill="rgb(247,48,18)" fg:x="2287828" fg:w="270"/><text x="95.6860%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (6,778 samples, 0.28%)</title><rect x="95.4855%" y="453" width="0.2827%" height="15" fill="rgb(225,0,40)" fg:x="2289013" fg:w="6778"/><text x="95.7355%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (6,695 samples, 0.28%)</title><rect x="95.4889%" y="437" width="0.2793%" height="15" fill="rgb(221,31,33)" fg:x="2289096" fg:w="6695"/><text x="95.7389%" y="447.50"></text></g><g><title>native_write_msr (6,656 samples, 0.28%)</title><rect x="95.4906%" y="421" width="0.2777%" height="15" fill="rgb(237,42,40)" fg:x="2289135" fg:w="6656"/><text x="95.7406%" y="431.50"></text></g><g><title>finish_task_switch (7,116 samples, 0.30%)</title><rect x="95.4804%" y="469" width="0.2968%" height="15" fill="rgb(233,51,29)" fg:x="2288892" fg:w="7116"/><text x="95.7304%" y="479.50"></text></g><g><title>futex_wait_queue_me (7,954 samples, 0.33%)</title><rect x="95.4597%" y="517" width="0.3318%" height="15" fill="rgb(226,58,20)" fg:x="2288395" fg:w="7954"/><text x="95.7097%" y="527.50"></text></g><g><title>schedule (7,880 samples, 0.33%)</title><rect x="95.4628%" y="501" width="0.3287%" height="15" fill="rgb(208,98,7)" fg:x="2288469" fg:w="7880"/><text x="95.7128%" y="511.50"></text></g><g><title>__schedule (7,865 samples, 0.33%)</title><rect x="95.4634%" y="485" width="0.3281%" height="15" fill="rgb(228,143,44)" fg:x="2288484" fg:w="7865"/><text x="95.7134%" y="495.50"></text></g><g><title>futex_wait (8,102 samples, 0.34%)</title><rect x="95.4565%" y="533" width="0.3380%" height="15" fill="rgb(246,55,38)" fg:x="2288318" fg:w="8102"/><text x="95.7065%" y="543.50"></text></g><g><title>__x64_sys_futex (8,794 samples, 0.37%)</title><rect x="95.4528%" y="565" width="0.3668%" height="15" fill="rgb(247,87,16)" fg:x="2288231" fg:w="8794"/><text x="95.7028%" y="575.50"></text></g><g><title>do_futex (8,754 samples, 0.37%)</title><rect x="95.4545%" y="549" width="0.3652%" height="15" fill="rgb(234,129,42)" fg:x="2288271" fg:w="8754"/><text x="95.7045%" y="559.50"></text></g><g><title>futex_wake (605 samples, 0.03%)</title><rect x="95.7945%" y="533" width="0.0252%" height="15" fill="rgb(220,82,16)" fg:x="2296420" fg:w="605"/><text x="96.0445%" y="543.50"></text></g><g><title>wake_up_q (529 samples, 0.02%)</title><rect x="95.7976%" y="517" width="0.0221%" height="15" fill="rgb(211,88,4)" fg:x="2296496" fg:w="529"/><text x="96.0476%" y="527.50"></text></g><g><title>try_to_wake_up (519 samples, 0.02%)</title><rect x="95.7980%" y="501" width="0.0216%" height="15" fill="rgb(248,151,21)" fg:x="2296506" fg:w="519"/><text x="96.0480%" y="511.50"></text></g><g><title>tlb_finish_mmu (510 samples, 0.02%)</title><rect x="95.8399%" y="501" width="0.0213%" height="15" fill="rgb(238,163,6)" fg:x="2297509" fg:w="510"/><text x="96.0899%" y="511.50"></text></g><g><title>release_pages (387 samples, 0.02%)</title><rect x="95.8450%" y="485" width="0.0161%" height="15" fill="rgb(209,183,11)" fg:x="2297632" fg:w="387"/><text x="96.0950%" y="495.50"></text></g><g><title>unmap_page_range (299 samples, 0.01%)</title><rect x="95.8616%" y="485" width="0.0125%" height="15" fill="rgb(219,37,20)" fg:x="2298030" fg:w="299"/><text x="96.1116%" y="495.50"></text></g><g><title>unmap_region (970 samples, 0.04%)</title><rect x="95.8337%" y="517" width="0.0405%" height="15" fill="rgb(210,158,4)" fg:x="2297360" fg:w="970"/><text x="96.0837%" y="527.50"></text></g><g><title>unmap_vmas (304 samples, 0.01%)</title><rect x="95.8614%" y="501" width="0.0127%" height="15" fill="rgb(221,167,53)" fg:x="2298026" fg:w="304"/><text x="96.1114%" y="511.50"></text></g><g><title>__do_munmap (1,232 samples, 0.05%)</title><rect x="95.8228%" y="533" width="0.0514%" height="15" fill="rgb(237,151,45)" fg:x="2297099" fg:w="1232"/><text x="96.0728%" y="543.50"></text></g><g><title>__vm_munmap (1,257 samples, 0.05%)</title><rect x="95.8226%" y="549" width="0.0524%" height="15" fill="rgb(231,39,3)" fg:x="2297095" fg:w="1257"/><text x="96.0726%" y="559.50"></text></g><g><title>__x64_sys_munmap (1,260 samples, 0.05%)</title><rect x="95.8226%" y="565" width="0.0526%" height="15" fill="rgb(212,167,28)" fg:x="2297094" fg:w="1260"/><text x="96.0726%" y="575.50"></text></g><g><title>do_filp_open (500 samples, 0.02%)</title><rect x="95.8756%" y="533" width="0.0209%" height="15" fill="rgb(232,178,8)" fg:x="2298366" fg:w="500"/><text x="96.1256%" y="543.50"></text></g><g><title>path_openat (497 samples, 0.02%)</title><rect x="95.8758%" y="517" width="0.0207%" height="15" fill="rgb(225,151,20)" fg:x="2298369" fg:w="497"/><text x="96.1258%" y="527.50"></text></g><g><title>__x64_sys_open (525 samples, 0.02%)</title><rect x="95.8753%" y="565" width="0.0219%" height="15" fill="rgb(238,3,37)" fg:x="2298358" fg:w="525"/><text x="96.1253%" y="575.50"></text></g><g><title>do_sys_openat2 (525 samples, 0.02%)</title><rect x="95.8753%" y="549" width="0.0219%" height="15" fill="rgb(251,147,42)" fg:x="2298358" fg:w="525"/><text x="96.1253%" y="559.50"></text></g><g><title>__alloc_fd (571 samples, 0.02%)</title><rect x="95.9077%" y="533" width="0.0238%" height="15" fill="rgb(208,173,10)" fg:x="2299135" fg:w="571"/><text x="96.1577%" y="543.50"></text></g><g><title>___slab_alloc (314 samples, 0.01%)</title><rect x="96.0050%" y="437" width="0.0131%" height="15" fill="rgb(246,225,4)" fg:x="2301468" fg:w="314"/><text x="96.2550%" y="447.50"></text></g><g><title>__slab_alloc (342 samples, 0.01%)</title><rect x="96.0041%" y="453" width="0.0143%" height="15" fill="rgb(248,102,6)" fg:x="2301446" fg:w="342"/><text x="96.2541%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (954 samples, 0.04%)</title><rect x="96.0185%" y="453" width="0.0398%" height="15" fill="rgb(232,6,21)" fg:x="2301791" fg:w="954"/><text x="96.2685%" y="463.50"></text></g><g><title>get_obj_cgroup_from_current (561 samples, 0.02%)</title><rect x="96.0685%" y="437" width="0.0234%" height="15" fill="rgb(221,179,22)" fg:x="2302990" fg:w="561"/><text x="96.3185%" y="447.50"></text></g><g><title>obj_cgroup_charge (254 samples, 0.01%)</title><rect x="96.0919%" y="437" width="0.0106%" height="15" fill="rgb(252,50,20)" fg:x="2303551" fg:w="254"/><text x="96.3419%" y="447.50"></text></g><g><title>kmem_cache_alloc (2,714 samples, 0.11%)</title><rect x="95.9895%" y="469" width="0.1132%" height="15" fill="rgb(222,56,38)" fg:x="2301095" fg:w="2714"/><text x="96.2395%" y="479.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (949 samples, 0.04%)</title><rect x="96.0631%" y="453" width="0.0396%" height="15" fill="rgb(206,193,29)" fg:x="2302860" fg:w="949"/><text x="96.3131%" y="463.50"></text></g><g><title>apparmor_file_alloc_security (495 samples, 0.02%)</title><rect x="96.1067%" y="453" width="0.0206%" height="15" fill="rgb(239,192,45)" fg:x="2303906" fg:w="495"/><text x="96.3567%" y="463.50"></text></g><g><title>__alloc_file (3,900 samples, 0.16%)</title><rect x="95.9800%" y="485" width="0.1627%" height="15" fill="rgb(254,18,36)" fg:x="2300867" fg:w="3900"/><text x="96.2300%" y="495.50"></text></g><g><title>security_file_alloc (958 samples, 0.04%)</title><rect x="96.1027%" y="469" width="0.0400%" height="15" fill="rgb(221,127,11)" fg:x="2303809" fg:w="958"/><text x="96.3527%" y="479.50"></text></g><g><title>kmem_cache_alloc (364 samples, 0.02%)</title><rect x="96.1275%" y="453" width="0.0152%" height="15" fill="rgb(234,146,35)" fg:x="2304403" fg:w="364"/><text x="96.3775%" y="463.50"></text></g><g><title>alloc_empty_file (4,012 samples, 0.17%)</title><rect x="95.9770%" y="501" width="0.1674%" height="15" fill="rgb(254,201,37)" fg:x="2300797" fg:w="4012"/><text x="96.2270%" y="511.50"></text></g><g><title>errseq_sample (435 samples, 0.02%)</title><rect x="96.1642%" y="485" width="0.0181%" height="15" fill="rgb(211,202,23)" fg:x="2305284" fg:w="435"/><text x="96.4142%" y="495.50"></text></g><g><title>apparmor_file_open (328 samples, 0.01%)</title><rect x="96.1999%" y="469" width="0.0137%" height="15" fill="rgb(237,91,2)" fg:x="2306140" fg:w="328"/><text x="96.4499%" y="479.50"></text></g><g><title>tomoyo_check_open_permission (695 samples, 0.03%)</title><rect x="96.2136%" y="469" width="0.0290%" height="15" fill="rgb(226,228,36)" fg:x="2306468" fg:w="695"/><text x="96.4636%" y="479.50"></text></g><g><title>security_file_open (1,138 samples, 0.05%)</title><rect x="96.1975%" y="485" width="0.0475%" height="15" fill="rgb(213,63,50)" fg:x="2306082" fg:w="1138"/><text x="96.4475%" y="495.50"></text></g><g><title>do_dentry_open (2,394 samples, 0.10%)</title><rect x="96.1452%" y="501" width="0.0999%" height="15" fill="rgb(235,194,19)" fg:x="2304828" fg:w="2394"/><text x="96.3952%" y="511.50"></text></g><g><title>do_truncate (303 samples, 0.01%)</title><rect x="96.2451%" y="501" width="0.0126%" height="15" fill="rgb(207,204,18)" fg:x="2307222" fg:w="303"/><text x="96.4951%" y="511.50"></text></g><g><title>btrfs_dentry_delete (568 samples, 0.02%)</title><rect x="96.2607%" y="485" width="0.0237%" height="15" fill="rgb(248,8,7)" fg:x="2307597" fg:w="568"/><text x="96.5107%" y="495.50"></text></g><g><title>dput (743 samples, 0.03%)</title><rect x="96.2577%" y="501" width="0.0310%" height="15" fill="rgb(223,145,47)" fg:x="2307525" fg:w="743"/><text x="96.5077%" y="511.50"></text></g><g><title>generic_permission (1,252 samples, 0.05%)</title><rect x="96.6149%" y="469" width="0.0522%" height="15" fill="rgb(228,84,11)" fg:x="2316089" fg:w="1252"/><text x="96.8649%" y="479.50"></text></g><g><title>inode_permission.part.0 (4,598 samples, 0.19%)</title><rect x="96.4754%" y="485" width="0.1918%" height="15" fill="rgb(218,76,45)" fg:x="2312744" fg:w="4598"/><text x="96.7254%" y="495.50"></text></g><g><title>security_inode_permission (538 samples, 0.02%)</title><rect x="96.6672%" y="485" width="0.0224%" height="15" fill="rgb(223,80,15)" fg:x="2317343" fg:w="538"/><text x="96.9172%" y="495.50"></text></g><g><title>dput (342 samples, 0.01%)</title><rect x="96.7468%" y="469" width="0.0143%" height="15" fill="rgb(219,218,33)" fg:x="2319251" fg:w="342"/><text x="96.9968%" y="479.50"></text></g><g><title>_raw_spin_lock (2,865 samples, 0.12%)</title><rect x="96.9180%" y="437" width="0.1195%" height="15" fill="rgb(208,51,11)" fg:x="2323355" fg:w="2865"/><text x="97.1680%" y="447.50"></text></g><g><title>__d_lookup (5,541 samples, 0.23%)</title><rect x="96.8093%" y="453" width="0.2311%" height="15" fill="rgb(229,165,39)" fg:x="2320749" fg:w="5541"/><text x="97.0593%" y="463.50"></text></g><g><title>__d_lookup_rcu (3,758 samples, 0.16%)</title><rect x="97.0405%" y="453" width="0.1568%" height="15" fill="rgb(241,100,24)" fg:x="2326290" fg:w="3758"/><text x="97.2905%" y="463.50"></text></g><g><title>lookup_fast (10,463 samples, 0.44%)</title><rect x="96.7611%" y="469" width="0.4365%" height="15" fill="rgb(228,14,23)" fg:x="2319593" fg:w="10463"/><text x="97.0111%" y="479.50"></text></g><g><title>__traverse_mounts (320 samples, 0.01%)</title><rect x="97.2904%" y="453" width="0.0133%" height="15" fill="rgb(247,116,52)" fg:x="2332282" fg:w="320"/><text x="97.5404%" y="463.50"></text></g><g><title>_cond_resched (269 samples, 0.01%)</title><rect x="97.3274%" y="437" width="0.0112%" height="15" fill="rgb(216,149,33)" fg:x="2333169" fg:w="269"/><text x="97.5774%" y="447.50"></text></g><g><title>dput (2,142 samples, 0.09%)</title><rect x="97.3120%" y="453" width="0.0894%" height="15" fill="rgb(238,142,29)" fg:x="2332800" fg:w="2142"/><text x="97.5620%" y="463.50"></text></g><g><title>lockref_put_or_lock (1,503 samples, 0.06%)</title><rect x="97.3387%" y="437" width="0.0627%" height="15" fill="rgb(224,83,40)" fg:x="2333439" fg:w="1503"/><text x="97.5887%" y="447.50"></text></g><g><title>dput (356 samples, 0.01%)</title><rect x="97.4035%" y="437" width="0.0149%" height="15" fill="rgb(234,165,11)" fg:x="2334993" fg:w="356"/><text x="97.6535%" y="447.50"></text></g><g><title>lockref_put_or_lock (270 samples, 0.01%)</title><rect x="97.4071%" y="421" width="0.0113%" height="15" fill="rgb(215,96,23)" fg:x="2335079" fg:w="270"/><text x="97.6571%" y="431.50"></text></g><g><title>nd_jump_root (668 samples, 0.03%)</title><rect x="97.4016%" y="453" width="0.0279%" height="15" fill="rgb(233,179,26)" fg:x="2334946" fg:w="668"/><text x="97.6516%" y="463.50"></text></g><g><title>do_read_cache_page (673 samples, 0.03%)</title><rect x="97.4340%" y="437" width="0.0281%" height="15" fill="rgb(225,129,33)" fg:x="2335723" fg:w="673"/><text x="97.6840%" y="447.50"></text></g><g><title>pagecache_get_page (554 samples, 0.02%)</title><rect x="97.4389%" y="421" width="0.0231%" height="15" fill="rgb(237,49,13)" fg:x="2335842" fg:w="554"/><text x="97.6889%" y="431.50"></text></g><g><title>find_get_entry (491 samples, 0.02%)</title><rect x="97.4416%" y="405" width="0.0205%" height="15" fill="rgb(211,3,31)" fg:x="2335905" fg:w="491"/><text x="97.6916%" y="415.50"></text></g><g><title>page_get_link (794 samples, 0.03%)</title><rect x="97.4294%" y="453" width="0.0331%" height="15" fill="rgb(216,152,19)" fg:x="2335614" fg:w="794"/><text x="97.6794%" y="463.50"></text></g><g><title>touch_atime (442 samples, 0.02%)</title><rect x="97.4634%" y="453" width="0.0184%" height="15" fill="rgb(251,121,35)" fg:x="2336428" fg:w="442"/><text x="97.7134%" y="463.50"></text></g><g><title>__legitimize_mnt (275 samples, 0.01%)</title><rect x="97.4849%" y="421" width="0.0115%" height="15" fill="rgb(210,217,47)" fg:x="2336945" fg:w="275"/><text x="97.7349%" y="431.50"></text></g><g><title>__legitimize_path (685 samples, 0.03%)</title><rect x="97.4836%" y="437" width="0.0286%" height="15" fill="rgb(244,116,22)" fg:x="2336912" fg:w="685"/><text x="97.7336%" y="447.50"></text></g><g><title>lockref_get_not_dead (377 samples, 0.02%)</title><rect x="97.4964%" y="421" width="0.0157%" height="15" fill="rgb(228,17,21)" fg:x="2337220" fg:w="377"/><text x="97.7464%" y="431.50"></text></g><g><title>__legitimize_mnt (387 samples, 0.02%)</title><rect x="97.5174%" y="405" width="0.0161%" height="15" fill="rgb(240,149,34)" fg:x="2337722" fg:w="387"/><text x="97.7674%" y="415.50"></text></g><g><title>__legitimize_path (703 samples, 0.03%)</title><rect x="97.5156%" y="421" width="0.0293%" height="15" fill="rgb(208,125,47)" fg:x="2337681" fg:w="703"/><text x="97.7656%" y="431.50"></text></g><g><title>lockref_get_not_dead (275 samples, 0.01%)</title><rect x="97.5335%" y="405" width="0.0115%" height="15" fill="rgb(249,186,39)" fg:x="2338109" fg:w="275"/><text x="97.7835%" y="415.50"></text></g><g><title>legitimize_links (790 samples, 0.03%)</title><rect x="97.5121%" y="437" width="0.0330%" height="15" fill="rgb(240,220,33)" fg:x="2337597" fg:w="790"/><text x="97.7621%" y="447.50"></text></g><g><title>link_path_walk.part.0 (30,134 samples, 1.26%)</title><rect x="96.2887%" y="501" width="1.2570%" height="15" fill="rgb(243,110,23)" fg:x="2308269" fg:w="30134"/><text x="96.5387%" y="511.50"></text></g><g><title>walk_component (20,522 samples, 0.86%)</title><rect x="96.6897%" y="485" width="0.8561%" height="15" fill="rgb(219,163,46)" fg:x="2317881" fg:w="20522"/><text x="96.9397%" y="495.50"></text></g><g><title>step_into (8,143 samples, 0.34%)</title><rect x="97.2061%" y="469" width="0.3397%" height="15" fill="rgb(216,126,30)" fg:x="2330260" fg:w="8143"/><text x="97.4561%" y="479.50"></text></g><g><title>try_to_unlazy (1,533 samples, 0.06%)</title><rect x="97.4818%" y="453" width="0.0639%" height="15" fill="rgb(208,139,11)" fg:x="2336870" fg:w="1533"/><text x="97.7318%" y="463.50"></text></g><g><title>__d_lookup (1,625 samples, 0.07%)</title><rect x="97.5498%" y="485" width="0.0678%" height="15" fill="rgb(213,118,36)" fg:x="2338499" fg:w="1625"/><text x="97.7998%" y="495.50"></text></g><g><title>lookup_fast (3,388 samples, 0.14%)</title><rect x="97.5458%" y="501" width="0.1413%" height="15" fill="rgb(226,43,17)" fg:x="2338403" fg:w="3388"/><text x="97.7958%" y="511.50"></text></g><g><title>__d_lookup_rcu (1,667 samples, 0.07%)</title><rect x="97.6175%" y="485" width="0.0695%" height="15" fill="rgb(254,217,4)" fg:x="2340124" fg:w="1667"/><text x="97.8675%" y="495.50"></text></g><g><title>may_open (969 samples, 0.04%)</title><rect x="97.6871%" y="501" width="0.0404%" height="15" fill="rgb(210,134,47)" fg:x="2341791" fg:w="969"/><text x="97.9371%" y="511.50"></text></g><g><title>__fget_light (315 samples, 0.01%)</title><rect x="97.7447%" y="485" width="0.0131%" height="15" fill="rgb(237,24,49)" fg:x="2343173" fg:w="315"/><text x="97.9947%" y="495.50"></text></g><g><title>__fget_files (282 samples, 0.01%)</title><rect x="97.7461%" y="469" width="0.0118%" height="15" fill="rgb(251,39,46)" fg:x="2343206" fg:w="282"/><text x="97.9961%" y="479.50"></text></g><g><title>path_init (682 samples, 0.03%)</title><rect x="97.7336%" y="501" width="0.0284%" height="15" fill="rgb(251,220,3)" fg:x="2342906" fg:w="682"/><text x="97.9836%" y="511.50"></text></g><g><title>atime_needs_update (262 samples, 0.01%)</title><rect x="97.8347%" y="485" width="0.0109%" height="15" fill="rgb(228,105,12)" fg:x="2345329" fg:w="262"/><text x="98.0847%" y="495.50"></text></g><g><title>__alloc_pages_nodemask (260 samples, 0.01%)</title><rect x="97.8684%" y="453" width="0.0108%" height="15" fill="rgb(215,196,1)" fg:x="2346138" fg:w="260"/><text x="98.1184%" y="463.50"></text></g><g><title>add_to_page_cache_lru (310 samples, 0.01%)</title><rect x="97.8793%" y="453" width="0.0129%" height="15" fill="rgb(214,33,39)" fg:x="2346398" fg:w="310"/><text x="98.1293%" y="463.50"></text></g><g><title>_raw_spin_lock_irqsave (267 samples, 0.01%)</title><rect x="97.9315%" y="325" width="0.0111%" height="15" fill="rgb(220,19,52)" fg:x="2347650" fg:w="267"/><text x="98.1815%" y="335.50"></text></g><g><title>native_queued_spin_lock_slowpath (252 samples, 0.01%)</title><rect x="97.9321%" y="309" width="0.0105%" height="15" fill="rgb(221,78,38)" fg:x="2347665" fg:w="252"/><text x="98.1821%" y="319.50"></text></g><g><title>prepare_to_wait_event (309 samples, 0.01%)</title><rect x="97.9301%" y="341" width="0.0129%" height="15" fill="rgb(253,30,16)" fg:x="2347617" fg:w="309"/><text x="98.1801%" y="351.50"></text></g><g><title>__perf_event_task_sched_in (620 samples, 0.03%)</title><rect x="97.9571%" y="293" width="0.0259%" height="15" fill="rgb(242,65,0)" fg:x="2348264" fg:w="620"/><text x="98.2071%" y="303.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (607 samples, 0.03%)</title><rect x="97.9576%" y="277" width="0.0253%" height="15" fill="rgb(235,201,12)" fg:x="2348277" fg:w="607"/><text x="98.2076%" y="287.50"></text></g><g><title>native_write_msr (604 samples, 0.03%)</title><rect x="97.9578%" y="261" width="0.0252%" height="15" fill="rgb(233,161,9)" fg:x="2348280" fg:w="604"/><text x="98.2078%" y="271.50"></text></g><g><title>finish_task_switch (677 samples, 0.03%)</title><rect x="97.9562%" y="309" width="0.0282%" height="15" fill="rgb(241,207,41)" fg:x="2348243" fg:w="677"/><text x="98.2062%" y="319.50"></text></g><g><title>__btrfs_tree_read_lock (1,510 samples, 0.06%)</title><rect x="97.9253%" y="357" width="0.0630%" height="15" fill="rgb(212,69,46)" fg:x="2347501" fg:w="1510"/><text x="98.1753%" y="367.50"></text></g><g><title>schedule (872 samples, 0.04%)</title><rect x="97.9519%" y="341" width="0.0364%" height="15" fill="rgb(239,69,45)" fg:x="2348139" fg:w="872"/><text x="98.2019%" y="351.50"></text></g><g><title>__schedule (869 samples, 0.04%)</title><rect x="97.9520%" y="325" width="0.0363%" height="15" fill="rgb(242,117,48)" fg:x="2348142" fg:w="869"/><text x="98.2020%" y="335.50"></text></g><g><title>__btrfs_read_lock_root_node (1,550 samples, 0.06%)</title><rect x="97.9251%" y="373" width="0.0647%" height="15" fill="rgb(228,41,36)" fg:x="2347496" fg:w="1550"/><text x="98.1751%" y="383.50"></text></g><g><title>read_block_for_search.isra.0 (365 samples, 0.02%)</title><rect x="98.0149%" y="373" width="0.0152%" height="15" fill="rgb(212,3,32)" fg:x="2349649" fg:w="365"/><text x="98.2649%" y="383.50"></text></g><g><title>btrfs_lookup_file_extent (2,627 samples, 0.11%)</title><rect x="97.9219%" y="405" width="0.1096%" height="15" fill="rgb(233,41,49)" fg:x="2347420" fg:w="2627"/><text x="98.1719%" y="415.50"></text></g><g><title>btrfs_search_slot (2,619 samples, 0.11%)</title><rect x="97.9222%" y="389" width="0.1093%" height="15" fill="rgb(252,170,49)" fg:x="2347428" fg:w="2619"/><text x="98.1722%" y="399.50"></text></g><g><title>btrfs_get_extent (3,420 samples, 0.14%)</title><rect x="97.9054%" y="421" width="0.1427%" height="15" fill="rgb(229,53,26)" fg:x="2347025" fg:w="3420"/><text x="98.1554%" y="431.50"></text></g><g><title>btrfs_do_readpage (3,746 samples, 0.16%)</title><rect x="97.8940%" y="437" width="0.1563%" height="15" fill="rgb(217,157,12)" fg:x="2346750" fg:w="3746"/><text x="98.1440%" y="447.50"></text></g><g><title>btrfs_readpage (3,950 samples, 0.16%)</title><rect x="97.8933%" y="453" width="0.1648%" height="15" fill="rgb(227,17,9)" fg:x="2346734" fg:w="3950"/><text x="98.1433%" y="463.50"></text></g><g><title>do_read_cache_page (4,613 samples, 0.19%)</title><rect x="97.8670%" y="469" width="0.1924%" height="15" fill="rgb(218,84,12)" fg:x="2346104" fg:w="4613"/><text x="98.1170%" y="479.50"></text></g><g><title>pagecache_get_page (826 samples, 0.03%)</title><rect x="98.0594%" y="469" width="0.0345%" height="15" fill="rgb(212,79,24)" fg:x="2350717" fg:w="826"/><text x="98.3094%" y="479.50"></text></g><g><title>find_get_entry (771 samples, 0.03%)</title><rect x="98.0617%" y="453" width="0.0322%" height="15" fill="rgb(217,222,37)" fg:x="2350772" fg:w="771"/><text x="98.3117%" y="463.50"></text></g><g><title>page_get_link (5,591 samples, 0.23%)</title><rect x="97.8608%" y="485" width="0.2332%" height="15" fill="rgb(246,208,8)" fg:x="2345955" fg:w="5591"/><text x="98.1108%" y="495.50"></text></g><g><title>btrfs_delayed_update_inode (381 samples, 0.02%)</title><rect x="98.1009%" y="437" width="0.0159%" height="15" fill="rgb(244,133,10)" fg:x="2351710" fg:w="381"/><text x="98.3509%" y="447.50"></text></g><g><title>btrfs_update_inode (433 samples, 0.02%)</title><rect x="98.1006%" y="453" width="0.0181%" height="15" fill="rgb(209,219,41)" fg:x="2351703" fg:w="433"/><text x="98.3506%" y="463.50"></text></g><g><title>btrfs_dirty_inode (696 samples, 0.03%)</title><rect x="98.0966%" y="469" width="0.0290%" height="15" fill="rgb(253,175,45)" fg:x="2351609" fg:w="696"/><text x="98.3466%" y="479.50"></text></g><g><title>touch_atime (764 samples, 0.03%)</title><rect x="98.0950%" y="485" width="0.0319%" height="15" fill="rgb(235,100,37)" fg:x="2351569" fg:w="764"/><text x="98.3450%" y="495.50"></text></g><g><title>step_into (8,770 samples, 0.37%)</title><rect x="97.7624%" y="501" width="0.3658%" height="15" fill="rgb(225,87,19)" fg:x="2343596" fg:w="8770"/><text x="98.0124%" y="511.50"></text></g><g><title>dput (533 samples, 0.02%)</title><rect x="98.1311%" y="485" width="0.0222%" height="15" fill="rgb(217,152,17)" fg:x="2352434" fg:w="533"/><text x="98.3811%" y="495.50"></text></g><g><title>lockref_put_or_lock (373 samples, 0.02%)</title><rect x="98.1377%" y="469" width="0.0156%" height="15" fill="rgb(235,72,13)" fg:x="2352594" fg:w="373"/><text x="98.3877%" y="479.50"></text></g><g><title>terminate_walk (737 samples, 0.03%)</title><rect x="98.1282%" y="501" width="0.0307%" height="15" fill="rgb(233,140,18)" fg:x="2352366" fg:w="737"/><text x="98.3782%" y="511.50"></text></g><g><title>do_filp_open (53,064 samples, 2.21%)</title><rect x="95.9464%" y="533" width="2.2135%" height="15" fill="rgb(207,212,28)" fg:x="2300062" fg:w="53064"/><text x="96.1964%" y="543.50">d..</text></g><g><title>path_openat (52,814 samples, 2.20%)</title><rect x="95.9568%" y="517" width="2.2031%" height="15" fill="rgb(220,130,25)" fg:x="2300312" fg:w="52814"/><text x="96.2068%" y="527.50">p..</text></g><g><title>memset_erms (1,056 samples, 0.04%)</title><rect x="98.1927%" y="501" width="0.0441%" height="15" fill="rgb(205,55,34)" fg:x="2353912" fg:w="1056"/><text x="98.4427%" y="511.50"></text></g><g><title>kmem_cache_alloc (1,628 samples, 0.07%)</title><rect x="98.1789%" y="517" width="0.0679%" height="15" fill="rgb(237,54,35)" fg:x="2353582" fg:w="1628"/><text x="98.4289%" y="527.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (242 samples, 0.01%)</title><rect x="98.2368%" y="501" width="0.0101%" height="15" fill="rgb(208,67,23)" fg:x="2354968" fg:w="242"/><text x="98.4868%" y="511.50"></text></g><g><title>__virt_addr_valid (376 samples, 0.02%)</title><rect x="98.2735%" y="485" width="0.0157%" height="15" fill="rgb(206,207,50)" fg:x="2355849" fg:w="376"/><text x="98.5235%" y="495.50"></text></g><g><title>__check_object_size (657 samples, 0.03%)</title><rect x="98.2629%" y="501" width="0.0274%" height="15" fill="rgb(213,211,42)" fg:x="2355595" fg:w="657"/><text x="98.5129%" y="511.50"></text></g><g><title>getname_flags.part.0 (2,792 samples, 0.12%)</title><rect x="98.1739%" y="533" width="0.1165%" height="15" fill="rgb(252,197,50)" fg:x="2353462" fg:w="2792"/><text x="98.4239%" y="543.50"></text></g><g><title>strncpy_from_user (1,044 samples, 0.04%)</title><rect x="98.2469%" y="517" width="0.0436%" height="15" fill="rgb(251,211,41)" fg:x="2355210" fg:w="1044"/><text x="98.4969%" y="527.50"></text></g><g><title>kmem_cache_free (447 samples, 0.02%)</title><rect x="98.2904%" y="533" width="0.0186%" height="15" fill="rgb(229,211,5)" fg:x="2356254" fg:w="447"/><text x="98.5404%" y="543.50"></text></g><g><title>__x64_sys_openat (57,889 samples, 2.41%)</title><rect x="95.8972%" y="565" width="2.4148%" height="15" fill="rgb(239,36,31)" fg:x="2298883" fg:w="57889"/><text x="96.1472%" y="575.50">__..</text></g><g><title>do_sys_openat2 (57,807 samples, 2.41%)</title><rect x="95.9006%" y="549" width="2.4114%" height="15" fill="rgb(248,67,31)" fg:x="2298965" fg:w="57807"/><text x="96.1506%" y="559.50">do..</text></g><g><title>__fget_files (1,050 samples, 0.04%)</title><rect x="98.3720%" y="517" width="0.0438%" height="15" fill="rgb(249,55,44)" fg:x="2358210" fg:w="1050"/><text x="98.6220%" y="527.50"></text></g><g><title>__fget_light (1,274 samples, 0.05%)</title><rect x="98.3629%" y="533" width="0.0531%" height="15" fill="rgb(216,82,12)" fg:x="2357993" fg:w="1274"/><text x="98.6129%" y="543.50"></text></g><g><title>__fdget_pos (2,312 samples, 0.10%)</title><rect x="98.3500%" y="549" width="0.0964%" height="15" fill="rgb(242,174,1)" fg:x="2357682" fg:w="2312"/><text x="98.6000%" y="559.50"></text></g><g><title>mutex_lock (723 samples, 0.03%)</title><rect x="98.4163%" y="533" width="0.0302%" height="15" fill="rgb(208,120,29)" fg:x="2359271" fg:w="723"/><text x="98.6663%" y="543.50"></text></g><g><title>fput_many (534 samples, 0.02%)</title><rect x="98.4479%" y="549" width="0.0223%" height="15" fill="rgb(221,105,43)" fg:x="2360030" fg:w="534"/><text x="98.6979%" y="559.50"></text></g><g><title>mutex_unlock (611 samples, 0.03%)</title><rect x="98.4702%" y="549" width="0.0255%" height="15" fill="rgb(234,124,22)" fg:x="2360564" fg:w="611"/><text x="98.7202%" y="559.50"></text></g><g><title>__fsnotify_parent (1,054 samples, 0.04%)</title><rect x="98.5507%" y="533" width="0.0440%" height="15" fill="rgb(212,23,30)" fg:x="2362495" fg:w="1054"/><text x="98.8007%" y="543.50"></text></g><g><title>asm_exc_page_fault (355 samples, 0.01%)</title><rect x="99.0764%" y="469" width="0.0148%" height="15" fill="rgb(219,122,53)" fg:x="2375097" fg:w="355"/><text x="99.3264%" y="479.50"></text></g><g><title>copy_user_enhanced_fast_string (6,595 samples, 0.28%)</title><rect x="98.8172%" y="485" width="0.2751%" height="15" fill="rgb(248,84,24)" fg:x="2368883" fg:w="6595"/><text x="99.0672%" y="495.50"></text></g><g><title>copy_page_to_iter (7,942 samples, 0.33%)</title><rect x="98.7638%" y="501" width="0.3313%" height="15" fill="rgb(245,115,18)" fg:x="2367603" fg:w="7942"/><text x="99.0138%" y="511.50"></text></g><g><title>pagecache_get_page (4,353 samples, 0.18%)</title><rect x="99.0991%" y="501" width="0.1816%" height="15" fill="rgb(227,176,51)" fg:x="2375640" fg:w="4353"/><text x="99.3491%" y="511.50"></text></g><g><title>find_get_entry (3,756 samples, 0.16%)</title><rect x="99.1240%" y="485" width="0.1567%" height="15" fill="rgb(229,63,42)" fg:x="2376237" fg:w="3756"/><text x="99.3740%" y="495.50"></text></g><g><title>xas_load (910 samples, 0.04%)</title><rect x="99.2427%" y="469" width="0.0380%" height="15" fill="rgb(247,202,24)" fg:x="2379083" fg:w="910"/><text x="99.4927%" y="479.50"></text></g><g><title>xas_start (600 samples, 0.03%)</title><rect x="99.2556%" y="453" width="0.0250%" height="15" fill="rgb(244,173,20)" fg:x="2379393" fg:w="600"/><text x="99.5056%" y="463.50"></text></g><g><title>generic_file_buffered_read (16,502 samples, 0.69%)</title><rect x="98.6497%" y="517" width="0.6884%" height="15" fill="rgb(242,81,47)" fg:x="2364867" fg:w="16502"/><text x="98.8997%" y="527.50"></text></g><g><title>touch_atime (1,376 samples, 0.06%)</title><rect x="99.2807%" y="501" width="0.0574%" height="15" fill="rgb(231,185,54)" fg:x="2379993" fg:w="1376"/><text x="99.5307%" y="511.50"></text></g><g><title>atime_needs_update (1,111 samples, 0.05%)</title><rect x="99.2917%" y="485" width="0.0463%" height="15" fill="rgb(243,55,32)" fg:x="2380258" fg:w="1111"/><text x="99.5417%" y="495.50"></text></g><g><title>current_time (615 samples, 0.03%)</title><rect x="99.3124%" y="469" width="0.0257%" height="15" fill="rgb(208,167,19)" fg:x="2380754" fg:w="615"/><text x="99.5624%" y="479.50"></text></g><g><title>new_sync_read (17,960 samples, 0.75%)</title><rect x="98.5952%" y="533" width="0.7492%" height="15" fill="rgb(231,72,35)" fg:x="2363561" fg:w="17960"/><text x="98.8452%" y="543.50"></text></g><g><title>aa_file_perm (328 samples, 0.01%)</title><rect x="99.4127%" y="501" width="0.0137%" height="15" fill="rgb(250,173,51)" fg:x="2383158" fg:w="328"/><text x="99.6627%" y="511.50"></text></g><g><title>apparmor_file_permission (1,225 samples, 0.05%)</title><rect x="99.3755%" y="517" width="0.0511%" height="15" fill="rgb(209,5,22)" fg:x="2382267" fg:w="1225"/><text x="99.6255%" y="527.50"></text></g><g><title>security_file_permission (1,760 samples, 0.07%)</title><rect x="99.3535%" y="533" width="0.0734%" height="15" fill="rgb(250,174,19)" fg:x="2381738" fg:w="1760"/><text x="99.6035%" y="543.50"></text></g><g><title>ksys_read (26,274 samples, 1.10%)</title><rect x="98.3311%" y="565" width="1.0960%" height="15" fill="rgb(217,3,49)" fg:x="2357229" fg:w="26274"/><text x="98.5811%" y="575.50"></text></g><g><title>vfs_read (22,328 samples, 0.93%)</title><rect x="98.4957%" y="549" width="0.9314%" height="15" fill="rgb(218,225,5)" fg:x="2361175" fg:w="22328"/><text x="98.7457%" y="559.50"></text></g><g><title>syscall_enter_from_user_mode (259 samples, 0.01%)</title><rect x="99.4284%" y="565" width="0.0108%" height="15" fill="rgb(236,89,11)" fg:x="2383534" fg:w="259"/><text x="99.6784%" y="575.50"></text></g><g><title>do_mmap (542 samples, 0.02%)</title><rect x="99.4394%" y="549" width="0.0226%" height="15" fill="rgb(206,33,28)" fg:x="2383798" fg:w="542"/><text x="99.6894%" y="559.50"></text></g><g><title>mmap_region (430 samples, 0.02%)</title><rect x="99.4441%" y="533" width="0.0179%" height="15" fill="rgb(241,56,42)" fg:x="2383910" fg:w="430"/><text x="99.6941%" y="543.50"></text></g><g><title>do_syscall_64 (101,013 samples, 4.21%)</title><rect x="95.2516%" y="581" width="4.2137%" height="15" fill="rgb(222,44,11)" fg:x="2283407" fg:w="101013"/><text x="95.5016%" y="591.50">do_sy..</text></g><g><title>vm_mmap_pgoff (627 samples, 0.03%)</title><rect x="99.4392%" y="565" width="0.0262%" height="15" fill="rgb(234,111,20)" fg:x="2383793" fg:w="627"/><text x="99.6892%" y="575.50"></text></g><g><title>btrfs_release_file (557 samples, 0.02%)</title><rect x="99.5521%" y="517" width="0.0232%" height="15" fill="rgb(237,77,6)" fg:x="2386500" fg:w="557"/><text x="99.8021%" y="527.50"></text></g><g><title>dput (362 samples, 0.02%)</title><rect x="99.5753%" y="517" width="0.0151%" height="15" fill="rgb(235,111,23)" fg:x="2387057" fg:w="362"/><text x="99.8253%" y="527.50"></text></g><g><title>kmem_cache_free (318 samples, 0.01%)</title><rect x="99.5904%" y="517" width="0.0133%" height="15" fill="rgb(251,135,29)" fg:x="2387419" fg:w="318"/><text x="99.8404%" y="527.50"></text></g><g><title>security_file_free (347 samples, 0.01%)</title><rect x="99.6211%" y="517" width="0.0145%" height="15" fill="rgb(217,57,1)" fg:x="2388154" fg:w="347"/><text x="99.8711%" y="527.50"></text></g><g><title>apparmor_file_free_security (261 samples, 0.01%)</title><rect x="99.6247%" y="501" width="0.0109%" height="15" fill="rgb(249,119,31)" fg:x="2388240" fg:w="261"/><text x="99.8747%" y="511.50"></text></g><g><title>__fput (2,399 samples, 0.10%)</title><rect x="99.5355%" y="533" width="0.1001%" height="15" fill="rgb(233,164,33)" fg:x="2386103" fg:w="2399"/><text x="99.7855%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (106,445 samples, 4.44%)</title><rect x="95.2218%" y="597" width="4.4403%" height="15" fill="rgb(250,217,43)" fg:x="2282692" fg:w="106445"/><text x="95.4718%" y="607.50">entry..</text></g><g><title>syscall_exit_to_user_mode (4,717 samples, 0.20%)</title><rect x="99.4653%" y="581" width="0.1968%" height="15" fill="rgb(232,154,50)" fg:x="2384420" fg:w="4717"/><text x="99.7153%" y="591.50"></text></g><g><title>exit_to_user_mode_prepare (4,424 samples, 0.18%)</title><rect x="99.4776%" y="565" width="0.1845%" height="15" fill="rgb(227,190,8)" fg:x="2384713" fg:w="4424"/><text x="99.7276%" y="575.50"></text></g><g><title>task_work_run (3,177 samples, 0.13%)</title><rect x="99.5296%" y="549" width="0.1325%" height="15" fill="rgb(209,217,32)" fg:x="2385960" fg:w="3177"/><text x="99.7796%" y="559.50"></text></g><g><title>call_rcu (519 samples, 0.02%)</title><rect x="99.6405%" y="533" width="0.0216%" height="15" fill="rgb(243,203,50)" fg:x="2388618" fg:w="519"/><text x="99.8905%" y="543.50"></text></g><g><title>error_entry (371 samples, 0.02%)</title><rect x="99.6621%" y="597" width="0.0155%" height="15" fill="rgb(232,152,27)" fg:x="2389137" fg:w="371"/><text x="99.9121%" y="607.50"></text></g><g><title>sync_regs (317 samples, 0.01%)</title><rect x="99.6644%" y="581" width="0.0132%" height="15" fill="rgb(240,34,29)" fg:x="2389191" fg:w="317"/><text x="99.9144%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (3,020 samples, 0.13%)</title><rect x="99.6863%" y="549" width="0.1260%" height="15" fill="rgb(215,185,52)" fg:x="2389717" fg:w="3020"/><text x="99.9363%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,971 samples, 0.12%)</title><rect x="99.6883%" y="533" width="0.1239%" height="15" fill="rgb(240,89,49)" fg:x="2389766" fg:w="2971"/><text x="99.9383%" y="543.50"></text></g><g><title>native_write_msr (2,958 samples, 0.12%)</title><rect x="99.6889%" y="517" width="0.1234%" height="15" fill="rgb(225,12,52)" fg:x="2389779" fg:w="2958"/><text x="99.9389%" y="527.50"></text></g><g><title>schedule_tail (3,224 samples, 0.13%)</title><rect x="99.6824%" y="581" width="0.1345%" height="15" fill="rgb(239,128,45)" fg:x="2389624" fg:w="3224"/><text x="99.9324%" y="591.50"></text></g><g><title>finish_task_switch (3,201 samples, 0.13%)</title><rect x="99.6834%" y="565" width="0.1335%" height="15" fill="rgb(211,78,47)" fg:x="2389647" fg:w="3201"/><text x="99.9334%" y="575.50"></text></g><g><title>ret_from_fork (3,383 samples, 0.14%)</title><rect x="99.6797%" y="597" width="0.1411%" height="15" fill="rgb(232,31,21)" fg:x="2389559" fg:w="3383"/><text x="99.9297%" y="607.50"></text></g><g><title>syscall_return_via_sysret (861 samples, 0.04%)</title><rect x="99.8208%" y="597" width="0.0359%" height="15" fill="rgb(222,168,14)" fg:x="2392942" fg:w="861"/><text x="100.0708%" y="607.50"></text></g><g><title>[zig] (170,015 samples, 7.09%)</title><rect x="92.7650%" y="613" width="7.0921%" height="15" fill="rgb(209,128,24)" fg:x="2223797" fg:w="170015"/><text x="93.0150%" y="623.50">[zig]</text></g><g><title>asm_exc_page_fault (889 samples, 0.04%)</title><rect x="99.8575%" y="613" width="0.0371%" height="15" fill="rgb(249,35,13)" fg:x="2393820" fg:w="889"/><text x="100.1075%" y="623.50"></text></g><g><title>unmap_page_range (282 samples, 0.01%)</title><rect x="99.9107%" y="453" width="0.0118%" height="15" fill="rgb(218,7,2)" fg:x="2395096" fg:w="282"/><text x="100.1607%" y="463.50"></text></g><g><title>mmput (370 samples, 0.02%)</title><rect x="99.9071%" y="501" width="0.0154%" height="15" fill="rgb(238,107,27)" fg:x="2395009" fg:w="370"/><text x="100.1571%" y="511.50"></text></g><g><title>exit_mmap (368 samples, 0.02%)</title><rect x="99.9071%" y="485" width="0.0154%" height="15" fill="rgb(217,88,38)" fg:x="2395011" fg:w="368"/><text x="100.1571%" y="495.50"></text></g><g><title>unmap_vmas (283 samples, 0.01%)</title><rect x="99.9107%" y="469" width="0.0118%" height="15" fill="rgb(230,207,0)" fg:x="2395096" fg:w="283"/><text x="100.1607%" y="479.50"></text></g><g><title>begin_new_exec (375 samples, 0.02%)</title><rect x="99.9069%" y="517" width="0.0156%" height="15" fill="rgb(249,64,54)" fg:x="2395006" fg:w="375"/><text x="100.1569%" y="527.50"></text></g><g><title>__x64_sys_execve (443 samples, 0.02%)</title><rect x="99.9056%" y="581" width="0.0185%" height="15" fill="rgb(231,7,11)" fg:x="2394975" fg:w="443"/><text x="100.1556%" y="591.50"></text></g><g><title>do_execveat_common (443 samples, 0.02%)</title><rect x="99.9056%" y="565" width="0.0185%" height="15" fill="rgb(205,149,21)" fg:x="2394975" fg:w="443"/><text x="100.1556%" y="575.50"></text></g><g><title>bprm_execve (443 samples, 0.02%)</title><rect x="99.9056%" y="549" width="0.0185%" height="15" fill="rgb(215,126,34)" fg:x="2394975" fg:w="443"/><text x="100.1556%" y="559.50"></text></g><g><title>load_elf_binary (443 samples, 0.02%)</title><rect x="99.9056%" y="533" width="0.0185%" height="15" fill="rgb(241,132,45)" fg:x="2394975" fg:w="443"/><text x="100.1556%" y="543.50"></text></g><g><title>mmput (834 samples, 0.03%)</title><rect x="99.9254%" y="533" width="0.0348%" height="15" fill="rgb(252,69,32)" fg:x="2395448" fg:w="834"/><text x="100.1754%" y="543.50"></text></g><g><title>exit_mmap (834 samples, 0.03%)</title><rect x="99.9254%" y="517" width="0.0348%" height="15" fill="rgb(232,204,19)" fg:x="2395448" fg:w="834"/><text x="100.1754%" y="527.50"></text></g><g><title>unmap_vmas (649 samples, 0.03%)</title><rect x="99.9331%" y="501" width="0.0271%" height="15" fill="rgb(249,15,47)" fg:x="2395633" fg:w="649"/><text x="100.1831%" y="511.50"></text></g><g><title>unmap_page_range (649 samples, 0.03%)</title><rect x="99.9331%" y="485" width="0.0271%" height="15" fill="rgb(209,227,23)" fg:x="2395633" fg:w="649"/><text x="100.1831%" y="495.50"></text></g><g><title>__x64_sys_exit_group (850 samples, 0.04%)</title><rect x="99.9247%" y="581" width="0.0355%" height="15" fill="rgb(248,92,24)" fg:x="2395433" fg:w="850"/><text x="100.1747%" y="591.50"></text></g><g><title>do_group_exit (850 samples, 0.04%)</title><rect x="99.9247%" y="565" width="0.0355%" height="15" fill="rgb(247,59,2)" fg:x="2395433" fg:w="850"/><text x="100.1747%" y="575.50"></text></g><g><title>do_exit (850 samples, 0.04%)</title><rect x="99.9247%" y="549" width="0.0355%" height="15" fill="rgb(221,30,5)" fg:x="2395433" fg:w="850"/><text x="100.1747%" y="559.50"></text></g><g><title>do_syscall_64 (1,312 samples, 0.05%)</title><rect x="99.9056%" y="597" width="0.0547%" height="15" fill="rgb(208,108,53)" fg:x="2394975" fg:w="1312"/><text x="100.1556%" y="607.50"></text></g><g><title>mmput (365 samples, 0.02%)</title><rect x="99.9630%" y="501" width="0.0152%" height="15" fill="rgb(211,183,26)" fg:x="2396351" fg:w="365"/><text x="100.2130%" y="511.50"></text></g><g><title>exit_mmap (362 samples, 0.02%)</title><rect x="99.9632%" y="485" width="0.0151%" height="15" fill="rgb(232,132,4)" fg:x="2396354" fg:w="362"/><text x="100.2132%" y="495.50"></text></g><g><title>unmap_vmas (274 samples, 0.01%)</title><rect x="99.9668%" y="469" width="0.0114%" height="15" fill="rgb(253,128,37)" fg:x="2396442" fg:w="274"/><text x="100.2168%" y="479.50"></text></g><g><title>unmap_page_range (274 samples, 0.01%)</title><rect x="99.9668%" y="453" width="0.0114%" height="15" fill="rgb(221,58,24)" fg:x="2396442" fg:w="274"/><text x="100.2168%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,997 samples, 0.08%)</title><rect x="99.8953%" y="613" width="0.0833%" height="15" fill="rgb(230,54,45)" fg:x="2394727" fg:w="1997"/><text x="100.1453%" y="623.50"></text></g><g><title>syscall_exit_to_user_mode (437 samples, 0.02%)</title><rect x="99.9604%" y="597" width="0.0182%" height="15" fill="rgb(254,21,18)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="607.50"></text></g><g><title>exit_to_user_mode_prepare (437 samples, 0.02%)</title><rect x="99.9604%" y="581" width="0.0182%" height="15" fill="rgb(221,108,0)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="591.50"></text></g><g><title>arch_do_signal (437 samples, 0.02%)</title><rect x="99.9604%" y="565" width="0.0182%" height="15" fill="rgb(206,95,1)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="575.50"></text></g><g><title>get_signal (437 samples, 0.02%)</title><rect x="99.9604%" y="549" width="0.0182%" height="15" fill="rgb(237,52,5)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="559.50"></text></g><g><title>do_group_exit (437 samples, 0.02%)</title><rect x="99.9604%" y="533" width="0.0182%" height="15" fill="rgb(218,150,34)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="543.50"></text></g><g><title>do_exit (437 samples, 0.02%)</title><rect x="99.9604%" y="517" width="0.0182%" height="15" fill="rgb(235,194,28)" fg:x="2396287" fg:w="437"/><text x="100.2104%" y="527.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (377 samples, 0.02%)</title><rect x="99.9786%" y="613" width="0.0157%" height="15" fill="rgb(245,92,18)" fg:x="2396724" fg:w="377"/><text x="100.2286%" y="623.50"></text></g><g><title>all (2,397,237 samples, 100%)</title><rect x="0.0000%" y="645" width="100.0000%" height="15" fill="rgb(253,203,53)" fg:x="0" fg:w="2397237"/><text x="0.2500%" y="655.50"></text></g><g><title>zig (173,702 samples, 7.25%)</title><rect x="92.7541%" y="629" width="7.2459%" height="15" fill="rgb(249,185,47)" fg:x="2223535" fg:w="173702"/><text x="93.0041%" y="639.50">zig</text></g></svg></svg> +\ No newline at end of file diff --git a/results/zigcc-nonhermetic-j1.svg b/results/zigcc-nonhermetic-j1.svg @@ -1,491 +0,0 @@ -<?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="902" onload="init(evt)" viewBox="0 0 1200 902" 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="902" 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="885.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="885.00"> </text><svg id="frames" x="10" width="1180" total_samples="491213"><g><title>_dl_update_slotinfo (125 samples, 0.03%)</title><rect x="0.1977%" y="805" width="0.0254%" height="15" fill="rgb(227,0,7)" fg:x="971" fg:w="125"/><text x="0.4477%" y="815.50"></text></g><g><title>[anon] (1,212 samples, 0.25%)</title><rect x="0.0206%" y="821" width="0.2467%" height="15" fill="rgb(217,0,24)" fg:x="101" fg:w="1212"/><text x="0.2706%" y="831.50"></text></g><g><title>[perf-279850.map] (153 samples, 0.03%)</title><rect x="0.2681%" y="821" width="0.0311%" height="15" fill="rgb(221,193,54)" fg:x="1317" fg:w="153"/><text x="0.5181%" y="831.50"></text></g><g><title>[unknown] (106 samples, 0.02%)</title><rect x="0.2993%" y="821" width="0.0216%" height="15" fill="rgb(248,212,6)" fg:x="1470" fg:w="106"/><text x="0.5493%" y="831.50"></text></g><g><title>CompileBroker::post_compile (60 samples, 0.01%)</title><rect x="0.3333%" y="709" width="0.0122%" height="15" fill="rgb(208,68,35)" fg:x="1637" fg:w="60"/><text x="0.5833%" y="719.50"></text></g><g><title>StringEventLog::log (56 samples, 0.01%)</title><rect x="0.3341%" y="693" width="0.0114%" height="15" fill="rgb(232,128,0)" fg:x="1641" fg:w="56"/><text x="0.5841%" y="703.50"></text></g><g><title>CompileTask::print (101 samples, 0.02%)</title><rect x="0.3497%" y="709" width="0.0206%" height="15" fill="rgb(207,160,47)" fg:x="1718" fg:w="101"/><text x="0.5997%" y="719.50"></text></g><g><title>outputStream::print (53 samples, 0.01%)</title><rect x="0.3595%" y="693" width="0.0108%" height="15" fill="rgb(228,23,34)" fg:x="1766" fg:w="53"/><text x="0.6095%" y="703.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (52 samples, 0.01%)</title><rect x="0.3597%" y="677" width="0.0106%" height="15" fill="rgb(218,30,26)" fg:x="1767" fg:w="52"/><text x="0.6097%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (69 samples, 0.01%)</title><rect x="0.3870%" y="565" width="0.0140%" height="15" fill="rgb(220,122,19)" fg:x="1901" fg:w="69"/><text x="0.6370%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (113 samples, 0.02%)</title><rect x="0.3866%" y="581" width="0.0230%" height="15" fill="rgb(250,228,42)" fg:x="1899" fg:w="113"/><text x="0.6366%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (181 samples, 0.04%)</title><rect x="0.3854%" y="613" width="0.0368%" height="15" fill="rgb(240,193,28)" fg:x="1893" fg:w="181"/><text x="0.6354%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (179 samples, 0.04%)</title><rect x="0.3858%" y="597" width="0.0364%" height="15" fill="rgb(216,20,37)" fg:x="1895" fg:w="179"/><text x="0.6358%" y="607.50"></text></g><g><title>SubstitutionResolver::block_do (62 samples, 0.01%)</title><rect x="0.4096%" y="581" width="0.0126%" height="15" fill="rgb(206,188,39)" fg:x="2012" fg:w="62"/><text x="0.6596%" y="591.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (340 samples, 0.07%)</title><rect x="0.3770%" y="629" width="0.0692%" height="15" fill="rgb(217,207,13)" fg:x="1852" fg:w="340"/><text x="0.6270%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (59 samples, 0.01%)</title><rect x="0.4507%" y="549" width="0.0120%" height="15" fill="rgb(231,73,38)" fg:x="2214" fg:w="59"/><text x="0.7007%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (82 samples, 0.02%)</title><rect x="0.4497%" y="565" width="0.0167%" height="15" fill="rgb(225,20,46)" fg:x="2209" fg:w="82"/><text x="0.6997%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (106 samples, 0.02%)</title><rect x="0.4473%" y="597" width="0.0216%" height="15" fill="rgb(210,31,41)" fg:x="2197" fg:w="106"/><text x="0.6973%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (106 samples, 0.02%)</title><rect x="0.4473%" y="581" width="0.0216%" height="15" fill="rgb(221,200,47)" fg:x="2197" fg:w="106"/><text x="0.6973%" y="591.50"></text></g><g><title>BlockListBuilder::set_leaders (137 samples, 0.03%)</title><rect x="0.4741%" y="581" width="0.0279%" height="15" fill="rgb(226,26,5)" fg:x="2329" fg:w="137"/><text x="0.7241%" y="591.50"></text></g><g><title>ciMethod::bci_block_start (93 samples, 0.02%)</title><rect x="0.4831%" y="565" width="0.0189%" height="15" fill="rgb(249,33,26)" fg:x="2373" fg:w="93"/><text x="0.7331%" y="575.50"></text></g><g><title>MethodLiveness::compute_liveness (91 samples, 0.02%)</title><rect x="0.4835%" y="549" width="0.0185%" height="15" fill="rgb(235,183,28)" fg:x="2375" fg:w="91"/><text x="0.7335%" y="559.50"></text></g><g><title>MethodLiveness::init_basic_blocks (57 samples, 0.01%)</title><rect x="0.4904%" y="533" width="0.0116%" height="15" fill="rgb(221,5,38)" fg:x="2409" fg:w="57"/><text x="0.7404%" y="543.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (152 samples, 0.03%)</title><rect x="0.4719%" y="597" width="0.0309%" height="15" fill="rgb(247,18,42)" fg:x="2318" fg:w="152"/><text x="0.7219%" y="607.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (54 samples, 0.01%)</title><rect x="0.5466%" y="485" width="0.0110%" height="15" fill="rgb(241,131,45)" fg:x="2685" fg:w="54"/><text x="0.7966%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (69 samples, 0.01%)</title><rect x="0.5442%" y="501" width="0.0140%" height="15" fill="rgb(249,31,29)" fg:x="2673" fg:w="69"/><text x="0.7942%" y="511.50"></text></g><g><title>ciField::ciField (102 samples, 0.02%)</title><rect x="0.5407%" y="517" width="0.0208%" height="15" fill="rgb(225,111,53)" fg:x="2656" fg:w="102"/><text x="0.7907%" y="527.50"></text></g><g><title>ciEnv::get_field_by_index (119 samples, 0.02%)</title><rect x="0.5389%" y="533" width="0.0242%" height="15" fill="rgb(238,160,17)" fg:x="2647" fg:w="119"/><text x="0.7889%" y="543.50"></text></g><g><title>ciBytecodeStream::get_field (133 samples, 0.03%)</title><rect x="0.5387%" y="549" width="0.0271%" height="15" fill="rgb(214,148,48)" fg:x="2646" fg:w="133"/><text x="0.7887%" y="559.50"></text></g><g><title>GraphBuilder::access_field (189 samples, 0.04%)</title><rect x="0.5303%" y="565" width="0.0385%" height="15" fill="rgb(232,36,49)" fg:x="2605" fg:w="189"/><text x="0.7803%" y="575.50"></text></g><g><title>ciField::ciField (74 samples, 0.02%)</title><rect x="0.6364%" y="437" width="0.0151%" height="15" fill="rgb(209,103,24)" fg:x="3126" fg:w="74"/><text x="0.8864%" y="447.50"></text></g><g><title>ciEnv::get_field_by_index (80 samples, 0.02%)</title><rect x="0.6356%" y="453" width="0.0163%" height="15" fill="rgb(229,88,8)" fg:x="3122" fg:w="80"/><text x="0.8856%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (95 samples, 0.02%)</title><rect x="0.6352%" y="469" width="0.0193%" height="15" fill="rgb(213,181,19)" fg:x="3120" fg:w="95"/><text x="0.8852%" y="479.50"></text></g><g><title>GraphBuilder::access_field (134 samples, 0.03%)</title><rect x="0.6286%" y="485" width="0.0273%" height="15" fill="rgb(254,191,54)" fg:x="3088" fg:w="134"/><text x="0.8786%" y="495.50"></text></g><g><title>GraphBuilder::access_field (64 samples, 0.01%)</title><rect x="0.6865%" y="405" width="0.0130%" height="15" fill="rgb(241,83,37)" fg:x="3372" fg:w="64"/><text x="0.9365%" y="415.50"></text></g><g><title>GraphBuilder::invoke (56 samples, 0.01%)</title><rect x="0.7327%" y="245" width="0.0114%" height="15" fill="rgb(233,36,39)" fg:x="3599" fg:w="56"/><text x="0.9827%" y="255.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (80 samples, 0.02%)</title><rect x="0.7288%" y="277" width="0.0163%" height="15" fill="rgb(226,3,54)" fg:x="3580" fg:w="80"/><text x="0.9788%" y="287.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (79 samples, 0.02%)</title><rect x="0.7290%" y="261" width="0.0161%" height="15" fill="rgb(245,192,40)" fg:x="3581" fg:w="79"/><text x="0.9790%" y="271.50"></text></g><g><title>GraphBuilder::try_inline_full (130 samples, 0.03%)</title><rect x="0.7264%" y="293" width="0.0265%" height="15" fill="rgb(238,167,29)" fg:x="3568" fg:w="130"/><text x="0.9764%" y="303.50"></text></g><g><title>GraphBuilder::try_inline (133 samples, 0.03%)</title><rect x="0.7262%" y="309" width="0.0271%" height="15" fill="rgb(232,182,51)" fg:x="3567" fg:w="133"/><text x="0.9762%" y="319.50"></text></g><g><title>GraphBuilder::invoke (200 samples, 0.04%)</title><rect x="0.7247%" y="325" width="0.0407%" height="15" fill="rgb(231,60,39)" fg:x="3560" fg:w="200"/><text x="0.9747%" y="335.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (301 samples, 0.06%)</title><rect x="0.7085%" y="357" width="0.0613%" height="15" fill="rgb(208,69,12)" fg:x="3480" fg:w="301"/><text x="0.9585%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (299 samples, 0.06%)</title><rect x="0.7089%" y="341" width="0.0609%" height="15" fill="rgb(235,93,37)" fg:x="3482" fg:w="299"/><text x="0.9589%" y="351.50"></text></g><g><title>GraphBuilder::push_scope (50 samples, 0.01%)</title><rect x="0.7701%" y="357" width="0.0102%" height="15" fill="rgb(213,116,39)" fg:x="3783" fg:w="50"/><text x="1.0201%" y="367.50"></text></g><g><title>GraphBuilder::try_inline_full (390 samples, 0.08%)</title><rect x="0.7070%" y="373" width="0.0794%" height="15" fill="rgb(222,207,29)" fg:x="3473" fg:w="390"/><text x="0.9570%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (433 samples, 0.09%)</title><rect x="0.7062%" y="389" width="0.0881%" height="15" fill="rgb(206,96,30)" fg:x="3469" fg:w="433"/><text x="0.9562%" y="399.50"></text></g><g><title>ciBytecodeStream::get_method (86 samples, 0.02%)</title><rect x="0.7984%" y="389" width="0.0175%" height="15" fill="rgb(218,138,4)" fg:x="3922" fg:w="86"/><text x="1.0484%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (80 samples, 0.02%)</title><rect x="0.7997%" y="373" width="0.0163%" height="15" fill="rgb(250,191,14)" fg:x="3928" fg:w="80"/><text x="1.0497%" y="383.50"></text></g><g><title>GraphBuilder::invoke (568 samples, 0.12%)</title><rect x="0.7032%" y="405" width="0.1156%" height="15" fill="rgb(239,60,40)" fg:x="3454" fg:w="568"/><text x="0.9532%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (739 samples, 0.15%)</title><rect x="0.6753%" y="437" width="0.1504%" height="15" fill="rgb(206,27,48)" fg:x="3317" fg:w="739"/><text x="0.9253%" y="447.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (731 samples, 0.15%)</title><rect x="0.6769%" y="421" width="0.1488%" height="15" fill="rgb(225,35,8)" fg:x="3325" fg:w="731"/><text x="0.9269%" y="431.50"></text></g><g><title>GraphBuilder::push_scope (78 samples, 0.02%)</title><rect x="0.8257%" y="437" width="0.0159%" height="15" fill="rgb(250,213,24)" fg:x="4056" fg:w="78"/><text x="1.0757%" y="447.50"></text></g><g><title>ciMethod::ensure_method_data (54 samples, 0.01%)</title><rect x="0.8432%" y="437" width="0.0110%" height="15" fill="rgb(247,123,22)" fg:x="4142" fg:w="54"/><text x="1.0932%" y="447.50"></text></g><g><title>ciMethod::ensure_method_data (54 samples, 0.01%)</title><rect x="0.8432%" y="421" width="0.0110%" height="15" fill="rgb(231,138,38)" fg:x="4142" fg:w="54"/><text x="1.0932%" y="431.50"></text></g><g><title>GraphBuilder::try_inline_full (907 samples, 0.18%)</title><rect x="0.6700%" y="453" width="0.1846%" height="15" fill="rgb(231,145,46)" fg:x="3291" fg:w="907"/><text x="0.9200%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (951 samples, 0.19%)</title><rect x="0.6690%" y="469" width="0.1936%" height="15" fill="rgb(251,118,11)" fg:x="3286" fg:w="951"/><text x="0.9190%" y="479.50"></text></g><g><title>ciMethod::ciMethod (65 samples, 0.01%)</title><rect x="0.8898%" y="405" width="0.0132%" height="15" fill="rgb(217,147,25)" fg:x="4371" fg:w="65"/><text x="1.1398%" y="415.50"></text></g><g><title>ciSignature::ciSignature (57 samples, 0.01%)</title><rect x="0.8915%" y="389" width="0.0116%" height="15" fill="rgb(247,81,37)" fg:x="4379" fg:w="57"/><text x="1.1415%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (81 samples, 0.02%)</title><rect x="0.8870%" y="437" width="0.0165%" height="15" fill="rgb(209,12,38)" fg:x="4357" fg:w="81"/><text x="1.1370%" y="447.50"></text></g><g><title>ciObjectFactory::create_new_metadata (71 samples, 0.01%)</title><rect x="0.8890%" y="421" width="0.0145%" height="15" fill="rgb(227,1,9)" fg:x="4367" fg:w="71"/><text x="1.1390%" y="431.50"></text></g><g><title>ciBytecodeStream::get_method (171 samples, 0.03%)</title><rect x="0.8691%" y="469" width="0.0348%" height="15" fill="rgb(248,47,43)" fg:x="4269" fg:w="171"/><text x="1.1191%" y="479.50"></text></g><g><title>ciEnv::get_method_by_index_impl (159 samples, 0.03%)</title><rect x="0.8715%" y="453" width="0.0324%" height="15" fill="rgb(221,10,30)" fg:x="4281" fg:w="159"/><text x="1.1215%" y="463.50"></text></g><g><title>GraphBuilder::invoke (1,225 samples, 0.25%)</title><rect x="0.6616%" y="485" width="0.2494%" height="15" fill="rgb(210,229,1)" fg:x="3250" fg:w="1225"/><text x="0.9116%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,549 samples, 0.32%)</title><rect x="0.6111%" y="517" width="0.3153%" height="15" fill="rgb(222,148,37)" fg:x="3002" fg:w="1549"/><text x="0.8611%" y="527.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,534 samples, 0.31%)</title><rect x="0.6142%" y="501" width="0.3123%" height="15" fill="rgb(234,67,33)" fg:x="3017" fg:w="1534"/><text x="0.8642%" y="511.50"></text></g><g><title>MethodLiveness::compute_liveness (56 samples, 0.01%)</title><rect x="0.9361%" y="453" width="0.0114%" height="15" fill="rgb(247,98,35)" fg:x="4598" fg:w="56"/><text x="1.1861%" y="463.50"></text></g><g><title>BlockListBuilder::set_leaders (76 samples, 0.02%)</title><rect x="0.9326%" y="485" width="0.0155%" height="15" fill="rgb(247,138,52)" fg:x="4581" fg:w="76"/><text x="1.1826%" y="495.50"></text></g><g><title>ciMethod::bci_block_start (60 samples, 0.01%)</title><rect x="0.9358%" y="469" width="0.0122%" height="15" fill="rgb(213,79,30)" fg:x="4597" fg:w="60"/><text x="1.1858%" y="479.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (101 samples, 0.02%)</title><rect x="0.9293%" y="501" width="0.0206%" height="15" fill="rgb(246,177,23)" fg:x="4565" fg:w="101"/><text x="1.1793%" y="511.50"></text></g><g><title>GraphBuilder::push_scope (150 samples, 0.03%)</title><rect x="0.9291%" y="517" width="0.0305%" height="15" fill="rgb(230,62,27)" fg:x="4564" fg:w="150"/><text x="1.1791%" y="527.50"></text></g><g><title>MethodData::allocate (55 samples, 0.01%)</title><rect x="0.9641%" y="469" width="0.0112%" height="15" fill="rgb(216,154,8)" fg:x="4736" fg:w="55"/><text x="1.2141%" y="479.50"></text></g><g><title>Method::build_interpreter_method_data (62 samples, 0.01%)</title><rect x="0.9641%" y="485" width="0.0126%" height="15" fill="rgb(244,35,45)" fg:x="4736" fg:w="62"/><text x="1.2141%" y="495.50"></text></g><g><title>ciMethodData::load_data (54 samples, 0.01%)</title><rect x="0.9770%" y="485" width="0.0110%" height="15" fill="rgb(251,115,12)" fg:x="4799" fg:w="54"/><text x="1.2270%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (138 samples, 0.03%)</title><rect x="0.9627%" y="517" width="0.0281%" height="15" fill="rgb(240,54,50)" fg:x="4729" fg:w="138"/><text x="1.2127%" y="527.50"></text></g><g><title>ciMethod::ensure_method_data (133 samples, 0.03%)</title><rect x="0.9637%" y="501" width="0.0271%" height="15" fill="rgb(233,84,52)" fg:x="4734" fg:w="133"/><text x="1.2137%" y="511.50"></text></g><g><title>GraphBuilder::try_inline_full (1,918 samples, 0.39%)</title><rect x="0.6020%" y="533" width="0.3905%" height="15" fill="rgb(207,117,47)" fg:x="2957" fg:w="1918"/><text x="0.8520%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (1,928 samples, 0.39%)</title><rect x="0.6008%" y="549" width="0.3925%" height="15" fill="rgb(249,43,39)" fg:x="2951" fg:w="1928"/><text x="0.8508%" y="559.50"></text></g><g><title>ciEnv::lookup_method (86 samples, 0.02%)</title><rect x="1.0142%" y="517" width="0.0175%" height="15" fill="rgb(209,38,44)" fg:x="4982" fg:w="86"/><text x="1.2642%" y="527.50"></text></g><g><title>ciSignature::ciSignature (118 samples, 0.02%)</title><rect x="1.0437%" y="469" width="0.0240%" height="15" fill="rgb(236,212,23)" fg:x="5127" fg:w="118"/><text x="1.2937%" y="479.50"></text></g><g><title>ciMethod::ciMethod (150 samples, 0.03%)</title><rect x="1.0374%" y="485" width="0.0305%" height="15" fill="rgb(242,79,21)" fg:x="5096" fg:w="150"/><text x="1.2874%" y="495.50"></text></g><g><title>ciObjectFactory::get_metadata (182 samples, 0.04%)</title><rect x="1.0317%" y="517" width="0.0371%" height="15" fill="rgb(211,96,35)" fg:x="5068" fg:w="182"/><text x="1.2817%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (165 samples, 0.03%)</title><rect x="1.0352%" y="501" width="0.0336%" height="15" fill="rgb(253,215,40)" fg:x="5085" fg:w="165"/><text x="1.2852%" y="511.50"></text></g><g><title>ciEnv::get_method_by_index_impl (301 samples, 0.06%)</title><rect x="1.0079%" y="533" width="0.0613%" height="15" fill="rgb(211,81,21)" fg:x="4951" fg:w="301"/><text x="1.2579%" y="543.50"></text></g><g><title>ciBytecodeStream::get_method (330 samples, 0.07%)</title><rect x="1.0024%" y="549" width="0.0672%" height="15" fill="rgb(208,190,38)" fg:x="4924" fg:w="330"/><text x="1.2524%" y="559.50"></text></g><g><title>ciMethod::find_monomorphic_target (52 samples, 0.01%)</title><rect x="1.0735%" y="549" width="0.0106%" height="15" fill="rgb(235,213,38)" fg:x="5273" fg:w="52"/><text x="1.3235%" y="559.50"></text></g><g><title>GraphBuilder::invoke (2,458 samples, 0.50%)</title><rect x="0.5855%" y="565" width="0.5004%" height="15" fill="rgb(237,122,38)" fg:x="2876" fg:w="2458"/><text x="0.8355%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,896 samples, 0.59%)</title><rect x="0.5118%" y="581" width="0.5896%" height="15" fill="rgb(244,218,35)" fg:x="2514" fg:w="2896"/><text x="0.7618%" y="591.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,936 samples, 0.60%)</title><rect x="0.5055%" y="597" width="0.5977%" height="15" fill="rgb(240,68,47)" fg:x="2483" fg:w="2936"/><text x="0.7555%" y="607.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,278 samples, 0.67%)</title><rect x="0.4469%" y="613" width="0.6673%" height="15" fill="rgb(210,16,53)" fg:x="2195" fg:w="3278"/><text x="0.6969%" y="623.50"></text></g><g><title>IR::IR (3,291 samples, 0.67%)</title><rect x="0.4464%" y="629" width="0.6700%" height="15" fill="rgb(235,124,12)" fg:x="2193" fg:w="3291"/><text x="0.6964%" y="639.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (78 samples, 0.02%)</title><rect x="1.1164%" y="613" width="0.0159%" height="15" fill="rgb(224,169,11)" fg:x="5484" fg:w="78"/><text x="1.3664%" y="623.50"></text></g><g><title>IR::compute_code (82 samples, 0.02%)</title><rect x="1.1164%" y="629" width="0.0167%" height="15" fill="rgb(250,166,2)" fg:x="5484" fg:w="82"/><text x="1.3664%" y="639.50"></text></g><g><title>BlockList::iterate_backward (68 samples, 0.01%)</title><rect x="1.1345%" y="613" width="0.0138%" height="15" fill="rgb(242,216,29)" fg:x="5573" fg:w="68"/><text x="1.3845%" y="623.50"></text></g><g><title>UseCountComputer::block_do (68 samples, 0.01%)</title><rect x="1.1345%" y="597" width="0.0138%" height="15" fill="rgb(230,116,27)" fg:x="5573" fg:w="68"/><text x="1.3845%" y="607.50"></text></g><g><title>IR::compute_use_counts (106 samples, 0.02%)</title><rect x="1.1331%" y="629" width="0.0216%" height="15" fill="rgb(228,99,48)" fg:x="5566" fg:w="106"/><text x="1.3831%" y="639.50"></text></g><g><title>NullCheckEliminator::iterate_one (142 samples, 0.03%)</title><rect x="1.1584%" y="597" width="0.0289%" height="15" fill="rgb(253,11,6)" fg:x="5690" fg:w="142"/><text x="1.4084%" y="607.50"></text></g><g><title>IR::eliminate_null_checks (169 samples, 0.03%)</title><rect x="1.1547%" y="629" width="0.0344%" height="15" fill="rgb(247,143,39)" fg:x="5672" fg:w="169"/><text x="1.4047%" y="639.50"></text></g><g><title>Optimizer::eliminate_null_checks (169 samples, 0.03%)</title><rect x="1.1547%" y="613" width="0.0344%" height="15" fill="rgb(236,97,10)" fg:x="5672" fg:w="169"/><text x="1.4047%" y="623.50"></text></g><g><title>IR::optimize_blocks (62 samples, 0.01%)</title><rect x="1.1891%" y="629" width="0.0126%" height="15" fill="rgb(233,208,19)" fg:x="5841" fg:w="62"/><text x="1.4391%" y="639.50"></text></g><g><title>IR::split_critical_edges (50 samples, 0.01%)</title><rect x="1.2017%" y="629" width="0.0102%" height="15" fill="rgb(216,164,2)" fg:x="5903" fg:w="50"/><text x="1.4517%" y="639.50"></text></g><g><title>Compilation::build_hir (4,149 samples, 0.84%)</title><rect x="0.3756%" y="645" width="0.8446%" height="15" fill="rgb(220,129,5)" fg:x="1845" fg:w="4149"/><text x="0.6256%" y="655.50"></text></g><g><title>LIR_Assembler::add_call_info (84 samples, 0.02%)</title><rect x="1.2538%" y="581" width="0.0171%" height="15" fill="rgb(242,17,10)" fg:x="6159" fg:w="84"/><text x="1.5038%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (84 samples, 0.02%)</title><rect x="1.2538%" y="565" width="0.0171%" height="15" fill="rgb(242,107,0)" fg:x="6159" fg:w="84"/><text x="1.5038%" y="575.50"></text></g><g><title>LIR_Assembler::call (94 samples, 0.02%)</title><rect x="1.2526%" y="597" width="0.0191%" height="15" fill="rgb(251,28,31)" fg:x="6153" fg:w="94"/><text x="1.5026%" y="607.50"></text></g><g><title>LIR_Assembler::emit_call (178 samples, 0.04%)</title><rect x="1.2430%" y="613" width="0.0362%" height="15" fill="rgb(233,223,10)" fg:x="6106" fg:w="178"/><text x="1.4930%" y="623.50"></text></g><g><title>LIR_Assembler::emit_op1 (142 samples, 0.03%)</title><rect x="1.2846%" y="613" width="0.0289%" height="15" fill="rgb(215,21,27)" fg:x="6310" fg:w="142"/><text x="1.5346%" y="623.50"></text></g><g><title>LIR_Assembler::emit_code (637 samples, 0.13%)</title><rect x="1.2231%" y="629" width="0.1297%" height="15" fill="rgb(232,23,21)" fg:x="6008" fg:w="637"/><text x="1.4731%" y="639.50"></text></g><g><title>CodeEmitInfo::record_debug_info (84 samples, 0.02%)</title><rect x="1.3646%" y="581" width="0.0171%" height="15" fill="rgb(244,5,23)" fg:x="6703" fg:w="84"/><text x="1.6146%" y="591.50"></text></g><g><title>LIR_Assembler::add_call_info (88 samples, 0.02%)</title><rect x="1.3642%" y="597" width="0.0179%" height="15" fill="rgb(226,81,46)" fg:x="6701" fg:w="88"/><text x="1.6142%" y="607.50"></text></g><g><title>CounterOverflowStub::emit_code (106 samples, 0.02%)</title><rect x="1.3632%" y="613" width="0.0216%" height="15" fill="rgb(247,70,30)" fg:x="6696" fg:w="106"/><text x="1.6132%" y="623.50"></text></g><g><title>LIR_Assembler::add_call_info (57 samples, 0.01%)</title><rect x="1.3882%" y="597" width="0.0116%" height="15" fill="rgb(212,68,19)" fg:x="6819" fg:w="57"/><text x="1.6382%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (55 samples, 0.01%)</title><rect x="1.3886%" y="581" width="0.0112%" height="15" fill="rgb(240,187,13)" fg:x="6821" fg:w="55"/><text x="1.6386%" y="591.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (66 samples, 0.01%)</title><rect x="1.3870%" y="613" width="0.0134%" height="15" fill="rgb(223,113,26)" fg:x="6813" fg:w="66"/><text x="1.6370%" y="623.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (272 samples, 0.06%)</title><rect x="1.3615%" y="629" width="0.0554%" height="15" fill="rgb(206,192,2)" fg:x="6688" fg:w="272"/><text x="1.6115%" y="639.50"></text></g><g><title>Compilation::emit_code_body (979 samples, 0.20%)</title><rect x="1.2202%" y="645" width="0.1993%" height="15" fill="rgb(241,108,4)" fg:x="5994" fg:w="979"/><text x="1.4702%" y="655.50"></text></g><g><title>LIRGenerator::do_Base (88 samples, 0.02%)</title><rect x="1.4318%" y="597" width="0.0179%" height="15" fill="rgb(247,173,49)" fg:x="7033" fg:w="88"/><text x="1.6818%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (53 samples, 0.01%)</title><rect x="1.4562%" y="565" width="0.0108%" height="15" fill="rgb(224,114,35)" fg:x="7153" fg:w="53"/><text x="1.7062%" y="575.50"></text></g><g><title>LIRGenerator::move_to_phi (209 samples, 0.04%)</title><rect x="1.4537%" y="581" width="0.0425%" height="15" fill="rgb(245,159,27)" fg:x="7141" fg:w="209"/><text x="1.7037%" y="591.50"></text></g><g><title>PhiResolverState::reset (139 samples, 0.03%)</title><rect x="1.4680%" y="565" width="0.0283%" height="15" fill="rgb(245,172,44)" fg:x="7211" fg:w="139"/><text x="1.7180%" y="575.50"></text></g><g><title>LIRGenerator::do_Goto (230 samples, 0.05%)</title><rect x="1.4513%" y="597" width="0.0468%" height="15" fill="rgb(236,23,11)" fg:x="7129" fg:w="230"/><text x="1.7013%" y="607.50"></text></g><g><title>LIRGenerator::do_If (59 samples, 0.01%)</title><rect x="1.4981%" y="597" width="0.0120%" height="15" fill="rgb(205,117,38)" fg:x="7359" fg:w="59"/><text x="1.7481%" y="607.50"></text></g><g><title>LIRGenerator::state_for (58 samples, 0.01%)</title><rect x="1.5234%" y="581" width="0.0118%" height="15" fill="rgb(237,72,25)" fg:x="7483" fg:w="58"/><text x="1.7734%" y="591.50"></text></g><g><title>LIRGenerator::do_Invoke (130 samples, 0.03%)</title><rect x="1.5103%" y="597" width="0.0265%" height="15" fill="rgb(244,70,9)" fg:x="7419" fg:w="130"/><text x="1.7603%" y="607.50"></text></g><g><title>LIRGenerator::state_for (51 samples, 0.01%)</title><rect x="1.5659%" y="581" width="0.0104%" height="15" fill="rgb(217,125,39)" fg:x="7692" fg:w="51"/><text x="1.8159%" y="591.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (91 samples, 0.02%)</title><rect x="1.5606%" y="597" width="0.0185%" height="15" fill="rgb(235,36,10)" fg:x="7666" fg:w="91"/><text x="1.8106%" y="607.50"></text></g><g><title>BlockList::iterate_forward (847 samples, 0.17%)</title><rect x="1.4206%" y="629" width="0.1724%" height="15" fill="rgb(251,123,47)" fg:x="6978" fg:w="847"/><text x="1.6706%" y="639.50"></text></g><g><title>LIRGenerator::block_do (841 samples, 0.17%)</title><rect x="1.4218%" y="613" width="0.1712%" height="15" fill="rgb(221,13,13)" fg:x="6984" fg:w="841"/><text x="1.6718%" y="623.50"></text></g><g><title>IntervalWalker::walk_to (131 samples, 0.03%)</title><rect x="1.6140%" y="581" width="0.0267%" height="15" fill="rgb(238,131,9)" fg:x="7928" fg:w="131"/><text x="1.8640%" y="591.50"></text></g><g><title>LinearScanWalker::find_free_reg (81 samples, 0.02%)</title><rect x="1.6655%" y="549" width="0.0165%" height="15" fill="rgb(211,50,8)" fg:x="8181" fg:w="81"/><text x="1.9155%" y="559.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (148 samples, 0.03%)</title><rect x="1.6848%" y="549" width="0.0301%" height="15" fill="rgb(245,182,24)" fg:x="8276" fg:w="148"/><text x="1.9348%" y="559.50"></text></g><g><title>LinearScanWalker::split_before_usage (70 samples, 0.01%)</title><rect x="1.7149%" y="549" width="0.0143%" height="15" fill="rgb(242,14,37)" fg:x="8424" fg:w="70"/><text x="1.9649%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (416 samples, 0.08%)</title><rect x="1.6459%" y="565" width="0.0847%" height="15" fill="rgb(246,228,12)" fg:x="8085" fg:w="416"/><text x="1.8959%" y="575.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (131 samples, 0.03%)</title><rect x="1.7306%" y="565" width="0.0267%" height="15" fill="rgb(213,55,15)" fg:x="8501" fg:w="131"/><text x="1.9806%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (822 samples, 0.17%)</title><rect x="1.6056%" y="597" width="0.1673%" height="15" fill="rgb(209,9,3)" fg:x="7887" fg:w="822"/><text x="1.8556%" y="607.50"></text></g><g><title>LinearScanWalker::activate_current (650 samples, 0.13%)</title><rect x="1.6406%" y="581" width="0.1323%" height="15" fill="rgb(230,59,30)" fg:x="8059" fg:w="650"/><text x="1.8906%" y="591.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (64 samples, 0.01%)</title><rect x="1.7734%" y="597" width="0.0130%" height="15" fill="rgb(209,121,21)" fg:x="8711" fg:w="64"/><text x="2.0234%" y="607.50"></text></g><g><title>LinearScan::allocate_registers (903 samples, 0.18%)</title><rect x="1.6028%" y="613" width="0.1838%" height="15" fill="rgb(220,109,13)" fg:x="7873" fg:w="903"/><text x="1.8528%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (72 samples, 0.01%)</title><rect x="1.8159%" y="581" width="0.0147%" height="15" fill="rgb(232,18,1)" fg:x="8920" fg:w="72"/><text x="2.0659%" y="591.50"></text></g><g><title>LinearScan::color_lir_opr (63 samples, 0.01%)</title><rect x="1.8310%" y="581" width="0.0128%" height="15" fill="rgb(215,41,42)" fg:x="8994" fg:w="63"/><text x="2.0810%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (93 samples, 0.02%)</title><rect x="1.8560%" y="565" width="0.0189%" height="15" fill="rgb(224,123,36)" fg:x="9117" fg:w="93"/><text x="2.1060%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (166 samples, 0.03%)</title><rect x="1.8438%" y="581" width="0.0338%" height="15" fill="rgb(240,125,3)" fg:x="9057" fg:w="166"/><text x="2.0938%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (78 samples, 0.02%)</title><rect x="1.8864%" y="549" width="0.0159%" height="15" fill="rgb(205,98,50)" fg:x="9266" fg:w="78"/><text x="2.1364%" y="559.50"></text></g><g><title>LinearScan::compute_oop_map (161 samples, 0.03%)</title><rect x="1.8807%" y="565" width="0.0328%" height="15" fill="rgb(205,185,37)" fg:x="9238" fg:w="161"/><text x="2.1307%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (177 samples, 0.04%)</title><rect x="1.8776%" y="581" width="0.0360%" height="15" fill="rgb(238,207,15)" fg:x="9223" fg:w="177"/><text x="2.1276%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (620 samples, 0.13%)</title><rect x="1.7878%" y="597" width="0.1262%" height="15" fill="rgb(213,199,42)" fg:x="8782" fg:w="620"/><text x="2.0378%" y="607.50"></text></g><g><title>LinearScan::assign_reg_num (648 samples, 0.13%)</title><rect x="1.7866%" y="613" width="0.1319%" height="15" fill="rgb(235,201,11)" fg:x="8776" fg:w="648"/><text x="2.0366%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (81 samples, 0.02%)</title><rect x="1.9686%" y="597" width="0.0165%" height="15" fill="rgb(207,46,11)" fg:x="9670" fg:w="81"/><text x="2.2186%" y="607.50"></text></g><g><title>LinearScan::add_def (55 samples, 0.01%)</title><rect x="1.9851%" y="597" width="0.0112%" height="15" fill="rgb(241,35,35)" fg:x="9751" fg:w="55"/><text x="2.2351%" y="607.50"></text></g><g><title>LinearScan::add_temp (101 samples, 0.02%)</title><rect x="2.0002%" y="597" width="0.0206%" height="15" fill="rgb(243,32,47)" fg:x="9825" fg:w="101"/><text x="2.2502%" y="607.50"></text></g><g><title>Interval::Interval (50 samples, 0.01%)</title><rect x="2.0441%" y="565" width="0.0102%" height="15" fill="rgb(247,202,23)" fg:x="10041" fg:w="50"/><text x="2.2941%" y="575.50"></text></g><g><title>LinearScan::create_interval (79 samples, 0.02%)</title><rect x="2.0403%" y="581" width="0.0161%" height="15" fill="rgb(219,102,11)" fg:x="10022" fg:w="79"/><text x="2.2903%" y="591.50"></text></g><g><title>LinearScan::add_use (177 samples, 0.04%)</title><rect x="2.0207%" y="597" width="0.0360%" height="15" fill="rgb(243,110,44)" fg:x="9926" fg:w="177"/><text x="2.2707%" y="607.50"></text></g><g><title>LinearScan::build_intervals (748 samples, 0.15%)</title><rect x="1.9185%" y="613" width="0.1523%" height="15" fill="rgb(222,74,54)" fg:x="9424" fg:w="748"/><text x="2.1685%" y="623.50"></text></g><g><title>LinearScan::compute_global_live_sets (58 samples, 0.01%)</title><rect x="2.0708%" y="613" width="0.0118%" height="15" fill="rgb(216,99,12)" fg:x="10172" fg:w="58"/><text x="2.3208%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (80 samples, 0.02%)</title><rect x="2.1111%" y="597" width="0.0163%" height="15" fill="rgb(226,22,26)" fg:x="10370" fg:w="80"/><text x="2.3611%" y="607.50"></text></g><g><title>LinearScan::compute_local_live_sets (265 samples, 0.05%)</title><rect x="2.0826%" y="613" width="0.0539%" height="15" fill="rgb(217,163,10)" fg:x="10230" fg:w="265"/><text x="2.3326%" y="623.50"></text></g><g><title>LinearScan::eliminate_spill_moves (61 samples, 0.01%)</title><rect x="2.1365%" y="613" width="0.0124%" height="15" fill="rgb(213,25,53)" fg:x="10495" fg:w="61"/><text x="2.3865%" y="623.50"></text></g><g><title>LinearScan::resolve_collect_mappings (71 samples, 0.01%)</title><rect x="2.1632%" y="597" width="0.0145%" height="15" fill="rgb(252,105,26)" fg:x="10626" fg:w="71"/><text x="2.4132%" y="607.50"></text></g><g><title>LinearScan::resolve_data_flow (114 samples, 0.02%)</title><rect x="2.1559%" y="613" width="0.0232%" height="15" fill="rgb(220,39,43)" fg:x="10590" fg:w="114"/><text x="2.4059%" y="623.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (50 samples, 0.01%)</title><rect x="2.1862%" y="613" width="0.0102%" height="15" fill="rgb(229,68,48)" fg:x="10739" fg:w="50"/><text x="2.4362%" y="623.50"></text></g><g><title>LinearScan::do_linear_scan (2,984 samples, 0.61%)</title><rect x="1.5981%" y="629" width="0.6075%" height="15" fill="rgb(252,8,32)" fg:x="7850" fg:w="2984"/><text x="1.8481%" y="639.50"></text></g><g><title>Compilation::emit_lir (3,862 samples, 0.79%)</title><rect x="1.4195%" y="645" width="0.7862%" height="15" fill="rgb(223,20,43)" fg:x="6973" fg:w="3862"/><text x="1.6695%" y="655.50"></text></g><g><title>Method::build_interpreter_method_data (57 samples, 0.01%)</title><rect x="2.2119%" y="613" width="0.0116%" height="15" fill="rgb(229,81,49)" fg:x="10865" fg:w="57"/><text x="2.4619%" y="623.50"></text></g><g><title>MethodData::allocate (56 samples, 0.01%)</title><rect x="2.2121%" y="597" width="0.0114%" height="15" fill="rgb(236,28,36)" fg:x="10866" fg:w="56"/><text x="2.4621%" y="607.50"></text></g><g><title>Compilation::compile_java_method (9,117 samples, 1.86%)</title><rect x="0.3744%" y="661" width="1.8560%" height="15" fill="rgb(249,185,26)" fg:x="1839" fg:w="9117"/><text x="0.6244%" y="671.50">C..</text></g><g><title>ciMethod::ensure_method_data (95 samples, 0.02%)</title><rect x="2.2111%" y="645" width="0.0193%" height="15" fill="rgb(249,174,33)" fg:x="10861" fg:w="95"/><text x="2.4611%" y="655.50"></text></g><g><title>ciMethod::ensure_method_data (92 samples, 0.02%)</title><rect x="2.2117%" y="629" width="0.0187%" height="15" fill="rgb(233,201,37)" fg:x="10864" fg:w="92"/><text x="2.4617%" y="639.50"></text></g><g><title>CodeBuffer::finalize_oop_references (77 samples, 0.02%)</title><rect x="2.2506%" y="629" width="0.0157%" height="15" fill="rgb(221,78,26)" fg:x="11055" fg:w="77"/><text x="2.5006%" y="639.50"></text></g><g><title>CodeCache::allocate (56 samples, 0.01%)</title><rect x="2.2662%" y="629" width="0.0114%" height="15" fill="rgb(250,127,30)" fg:x="11132" fg:w="56"/><text x="2.5162%" y="639.50"></text></g><g><title>CodeBuffer::relocate_code_to (120 samples, 0.02%)</title><rect x="2.2882%" y="597" width="0.0244%" height="15" fill="rgb(230,49,44)" fg:x="11240" fg:w="120"/><text x="2.5382%" y="607.50"></text></g><g><title>CodeBuffer::copy_code_to (127 samples, 0.03%)</title><rect x="2.2876%" y="613" width="0.0259%" height="15" fill="rgb(229,67,23)" fg:x="11237" fg:w="127"/><text x="2.5376%" y="623.50"></text></g><g><title>G1CollectedHeap::register_nmethod (51 samples, 0.01%)</title><rect x="2.3253%" y="613" width="0.0104%" height="15" fill="rgb(249,83,47)" fg:x="11422" fg:w="51"/><text x="2.5753%" y="623.50"></text></g><g><title>nmethod::oops_do (51 samples, 0.01%)</title><rect x="2.3253%" y="597" width="0.0104%" height="15" fill="rgb(215,43,3)" fg:x="11422" fg:w="51"/><text x="2.5753%" y="607.50"></text></g><g><title>nmethod::nmethod (270 samples, 0.05%)</title><rect x="2.2874%" y="629" width="0.0550%" height="15" fill="rgb(238,154,13)" fg:x="11236" fg:w="270"/><text x="2.5374%" y="639.50"></text></g><g><title>nmethod::new_nmethod (459 samples, 0.09%)</title><rect x="2.2491%" y="645" width="0.0934%" height="15" fill="rgb(219,56,2)" fg:x="11048" fg:w="459"/><text x="2.4991%" y="655.50"></text></g><g><title>ciEnv::register_method (514 samples, 0.10%)</title><rect x="2.2383%" y="661" width="0.1046%" height="15" fill="rgb(233,0,4)" fg:x="10995" fg:w="514"/><text x="2.4883%" y="671.50"></text></g><g><title>Compilation::compile_method (9,675 samples, 1.97%)</title><rect x="0.3736%" y="677" width="1.9696%" height="15" fill="rgb(235,30,7)" fg:x="1835" fg:w="9675"/><text x="0.6236%" y="687.50">C..</text></g><g><title>Compiler::compile_method (9,700 samples, 1.97%)</title><rect x="0.3707%" y="709" width="1.9747%" height="15" fill="rgb(250,79,13)" fg:x="1821" fg:w="9700"/><text x="0.6207%" y="719.50">C..</text></g><g><title>Compilation::Compilation (9,689 samples, 1.97%)</title><rect x="0.3730%" y="693" width="1.9725%" height="15" fill="rgb(211,146,34)" fg:x="1832" fg:w="9689"/><text x="0.6230%" y="703.50">C..</text></g><g><title>ciEnv::ciEnv (107 samples, 0.02%)</title><rect x="2.3505%" y="709" width="0.0218%" height="15" fill="rgb(228,22,38)" fg:x="11546" fg:w="107"/><text x="2.6005%" y="719.50"></text></g><g><title>ciObjectFactory::get (59 samples, 0.01%)</title><rect x="2.3603%" y="693" width="0.0120%" height="15" fill="rgb(235,168,5)" fg:x="11594" fg:w="59"/><text x="2.6103%" y="703.50"></text></g><g><title>ciMethod::ciMethod (91 samples, 0.02%)</title><rect x="2.3739%" y="661" width="0.0185%" height="15" fill="rgb(221,155,16)" fg:x="11661" fg:w="91"/><text x="2.6239%" y="671.50"></text></g><g><title>ciSignature::ciSignature (83 samples, 0.02%)</title><rect x="2.3755%" y="645" width="0.0169%" height="15" fill="rgb(215,215,53)" fg:x="11669" fg:w="83"/><text x="2.6255%" y="655.50"></text></g><g><title>ciEnv::get_method_from_handle (107 samples, 0.02%)</title><rect x="2.3723%" y="709" width="0.0218%" height="15" fill="rgb(223,4,10)" fg:x="11653" fg:w="107"/><text x="2.6223%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (104 samples, 0.02%)</title><rect x="2.3729%" y="693" width="0.0212%" height="15" fill="rgb(234,103,6)" fg:x="11656" fg:w="104"/><text x="2.6229%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (99 samples, 0.02%)</title><rect x="2.3739%" y="677" width="0.0202%" height="15" fill="rgb(227,97,0)" fg:x="11661" fg:w="99"/><text x="2.6239%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (10,197 samples, 2.08%)</title><rect x="0.3243%" y="725" width="2.0759%" height="15" fill="rgb(234,150,53)" fg:x="1593" fg:w="10197"/><text x="0.5743%" y="735.50">C..</text></g><g><title>finish_task_switch (52 samples, 0.01%)</title><rect x="2.4203%" y="485" width="0.0106%" height="15" fill="rgb(228,201,54)" fg:x="11889" fg:w="52"/><text x="2.6703%" y="495.50"></text></g><g><title>futex_wait_queue_me (80 samples, 0.02%)</title><rect x="2.4163%" y="533" width="0.0163%" height="15" fill="rgb(222,22,37)" fg:x="11869" fg:w="80"/><text x="2.6663%" y="543.50"></text></g><g><title>schedule (74 samples, 0.02%)</title><rect x="2.4175%" y="517" width="0.0151%" height="15" fill="rgb(237,53,32)" fg:x="11875" fg:w="74"/><text x="2.6675%" y="527.50"></text></g><g><title>__schedule (72 samples, 0.01%)</title><rect x="2.4179%" y="501" width="0.0147%" height="15" fill="rgb(233,25,53)" fg:x="11877" fg:w="72"/><text x="2.6679%" y="511.50"></text></g><g><title>do_futex (91 samples, 0.02%)</title><rect x="2.4161%" y="565" width="0.0185%" height="15" fill="rgb(210,40,34)" fg:x="11868" fg:w="91"/><text x="2.6661%" y="575.50"></text></g><g><title>futex_wait (91 samples, 0.02%)</title><rect x="2.4161%" y="549" width="0.0185%" height="15" fill="rgb(241,220,44)" fg:x="11868" fg:w="91"/><text x="2.6661%" y="559.50"></text></g><g><title>__pthread_cond_timedwait (103 samples, 0.02%)</title><rect x="2.4138%" y="661" width="0.0210%" height="15" fill="rgb(235,28,35)" fg:x="11857" fg:w="103"/><text x="2.6638%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (102 samples, 0.02%)</title><rect x="2.4140%" y="645" width="0.0208%" height="15" fill="rgb(210,56,17)" fg:x="11858" fg:w="102"/><text x="2.6640%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (100 samples, 0.02%)</title><rect x="2.4144%" y="629" width="0.0204%" height="15" fill="rgb(224,130,29)" fg:x="11860" fg:w="100"/><text x="2.6644%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.02%)</title><rect x="2.4157%" y="613" width="0.0191%" height="15" fill="rgb(235,212,8)" fg:x="11866" fg:w="94"/><text x="2.6657%" y="623.50"></text></g><g><title>do_syscall_64 (94 samples, 0.02%)</title><rect x="2.4157%" y="597" width="0.0191%" height="15" fill="rgb(223,33,50)" fg:x="11866" fg:w="94"/><text x="2.6657%" y="607.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.02%)</title><rect x="2.4157%" y="581" width="0.0191%" height="15" fill="rgb(219,149,13)" fg:x="11866" fg:w="94"/><text x="2.6657%" y="591.50"></text></g><g><title>Monitor::IWait (112 samples, 0.02%)</title><rect x="2.4124%" y="693" width="0.0228%" height="15" fill="rgb(250,156,29)" fg:x="11850" fg:w="112"/><text x="2.6624%" y="703.50"></text></g><g><title>os::PlatformEvent::park (109 samples, 0.02%)</title><rect x="2.4130%" y="677" width="0.0222%" height="15" fill="rgb(216,193,19)" fg:x="11853" fg:w="109"/><text x="2.6630%" y="687.50"></text></g><g><title>Monitor::wait (117 samples, 0.02%)</title><rect x="2.4116%" y="709" width="0.0238%" height="15" fill="rgb(216,135,14)" fg:x="11846" fg:w="117"/><text x="2.6616%" y="719.50"></text></g><g><title>CompileQueue::get (188 samples, 0.04%)</title><rect x="2.4065%" y="725" width="0.0383%" height="15" fill="rgb(241,47,5)" fg:x="11821" fg:w="188"/><text x="2.6565%" y="735.50"></text></g><g><title>__GI___clone (10,436 samples, 2.12%)</title><rect x="0.3227%" y="821" width="2.1245%" height="15" fill="rgb(233,42,35)" fg:x="1585" fg:w="10436"/><text x="0.5727%" y="831.50">_..</text></g><g><title>start_thread (10,435 samples, 2.12%)</title><rect x="0.3229%" y="805" width="2.1243%" height="15" fill="rgb(231,13,6)" fg:x="1586" fg:w="10435"/><text x="0.5729%" y="815.50">s..</text></g><g><title>thread_native_entry (10,435 samples, 2.12%)</title><rect x="0.3229%" y="789" width="2.1243%" height="15" fill="rgb(207,181,40)" fg:x="1586" fg:w="10435"/><text x="0.5729%" y="799.50">t..</text></g><g><title>Thread::call_run (10,435 samples, 2.12%)</title><rect x="0.3229%" y="773" width="2.1243%" height="15" fill="rgb(254,173,49)" fg:x="1586" fg:w="10435"/><text x="0.5729%" y="783.50">T..</text></g><g><title>JavaThread::thread_main_inner (10,434 samples, 2.12%)</title><rect x="0.3231%" y="757" width="2.1241%" height="15" fill="rgb(221,1,38)" fg:x="1587" fg:w="10434"/><text x="0.5731%" y="767.50">J..</text></g><g><title>CompileBroker::compiler_thread_loop (10,434 samples, 2.12%)</title><rect x="0.3231%" y="741" width="2.1241%" height="15" fill="rgb(206,124,46)" fg:x="1587" fg:w="10434"/><text x="0.5731%" y="751.50">C..</text></g><g><title>C1_CompilerThre (12,019 samples, 2.45%)</title><rect x="0.0081%" y="837" width="2.4468%" height="15" fill="rgb(249,21,11)" fg:x="40" fg:w="12019"/><text x="0.2581%" y="847.50">C1..</text></g><g><title>PhaseIdealLoop::build_loop_early (74 samples, 0.02%)</title><rect x="2.4961%" y="821" width="0.0151%" height="15" fill="rgb(222,201,40)" fg:x="12261" fg:w="74"/><text x="2.7461%" y="831.50"></text></g><g><title>ProjNode::pinned (73 samples, 0.01%)</title><rect x="2.4963%" y="805" width="0.0149%" height="15" fill="rgb(235,61,29)" fg:x="12262" fg:w="73"/><text x="2.7463%" y="815.50"></text></g><g><title>MultiNode::is_CFG (57 samples, 0.01%)</title><rect x="2.7314%" y="805" width="0.0116%" height="15" fill="rgb(219,207,3)" fg:x="13417" fg:w="57"/><text x="2.9814%" y="815.50"></text></g><g><title>Node::is_CFG (58 samples, 0.01%)</title><rect x="2.7575%" y="805" width="0.0118%" height="15" fill="rgb(222,56,46)" fg:x="13545" fg:w="58"/><text x="3.0075%" y="815.50"></text></g><g><title>_dl_update_slotinfo (197 samples, 0.04%)</title><rect x="2.9956%" y="805" width="0.0401%" height="15" fill="rgb(239,76,54)" fg:x="14715" fg:w="197"/><text x="3.2456%" y="815.50"></text></g><g><title>update_get_addr (71 samples, 0.01%)</title><rect x="3.1361%" y="805" width="0.0145%" height="15" fill="rgb(231,124,27)" fg:x="15405" fg:w="71"/><text x="3.3861%" y="815.50"></text></g><g><title>[anon] (3,112 samples, 0.63%)</title><rect x="2.5189%" y="821" width="0.6335%" height="15" fill="rgb(249,195,6)" fg:x="12373" fg:w="3112"/><text x="2.7689%" y="831.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (62 samples, 0.01%)</title><rect x="3.1829%" y="549" width="0.0126%" height="15" fill="rgb(237,174,47)" fg:x="15635" fg:w="62"/><text x="3.4329%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (62 samples, 0.01%)</title><rect x="3.1829%" y="533" width="0.0126%" height="15" fill="rgb(206,201,31)" fg:x="15635" fg:w="62"/><text x="3.4329%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (60 samples, 0.01%)</title><rect x="3.1833%" y="517" width="0.0122%" height="15" fill="rgb(231,57,52)" fg:x="15637" fg:w="60"/><text x="3.4333%" y="527.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (111 samples, 0.02%)</title><rect x="3.1756%" y="565" width="0.0226%" height="15" fill="rgb(248,177,22)" fg:x="15599" fg:w="111"/><text x="3.4256%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (125 samples, 0.03%)</title><rect x="3.1730%" y="597" width="0.0254%" height="15" fill="rgb(215,211,37)" fg:x="15586" fg:w="125"/><text x="3.4230%" y="607.50"></text></g><g><title>ciTypeFlow::flow_block (125 samples, 0.03%)</title><rect x="3.1730%" y="581" width="0.0254%" height="15" fill="rgb(241,128,51)" fg:x="15586" fg:w="125"/><text x="3.4230%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (133 samples, 0.03%)</title><rect x="3.1719%" y="661" width="0.0271%" height="15" fill="rgb(227,165,31)" fg:x="15581" fg:w="133"/><text x="3.4219%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (130 samples, 0.03%)</title><rect x="3.1726%" y="645" width="0.0265%" height="15" fill="rgb(228,167,24)" fg:x="15584" fg:w="130"/><text x="3.4226%" y="655.50"></text></g><g><title>ciTypeFlow::do_flow (130 samples, 0.03%)</title><rect x="3.1726%" y="629" width="0.0265%" height="15" fill="rgb(228,143,12)" fg:x="15584" fg:w="130"/><text x="3.4226%" y="639.50"></text></g><g><title>ciTypeFlow::flow_types (130 samples, 0.03%)</title><rect x="3.1726%" y="613" width="0.0265%" height="15" fill="rgb(249,149,8)" fg:x="15584" fg:w="130"/><text x="3.4226%" y="623.50"></text></g><g><title>Compile::call_generator (188 samples, 0.04%)</title><rect x="3.1622%" y="677" width="0.0383%" height="15" fill="rgb(243,35,44)" fg:x="15533" fg:w="188"/><text x="3.4122%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (70 samples, 0.01%)</title><rect x="3.2251%" y="469" width="0.0143%" height="15" fill="rgb(246,89,9)" fg:x="15842" fg:w="70"/><text x="3.4751%" y="479.50"></text></g><g><title>ciTypeFlow::df_flow_types (95 samples, 0.02%)</title><rect x="3.2204%" y="501" width="0.0193%" height="15" fill="rgb(233,213,13)" fg:x="15819" fg:w="95"/><text x="3.4704%" y="511.50"></text></g><g><title>ciTypeFlow::flow_block (80 samples, 0.02%)</title><rect x="3.2234%" y="485" width="0.0163%" height="15" fill="rgb(233,141,41)" fg:x="15834" fg:w="80"/><text x="3.4734%" y="495.50"></text></g><g><title>ciTypeFlow::do_flow (102 samples, 0.02%)</title><rect x="3.2196%" y="533" width="0.0208%" height="15" fill="rgb(239,167,4)" fg:x="15815" fg:w="102"/><text x="3.4696%" y="543.50"></text></g><g><title>ciTypeFlow::flow_types (101 samples, 0.02%)</title><rect x="3.2198%" y="517" width="0.0206%" height="15" fill="rgb(209,217,16)" fg:x="15816" fg:w="101"/><text x="3.4698%" y="527.50"></text></g><g><title>InlineTree::ok_to_inline (139 samples, 0.03%)</title><rect x="3.2123%" y="565" width="0.0283%" height="15" fill="rgb(219,88,35)" fg:x="15779" fg:w="139"/><text x="3.4623%" y="575.50"></text></g><g><title>ciMethod::get_flow_analysis (111 samples, 0.02%)</title><rect x="3.2180%" y="549" width="0.0226%" height="15" fill="rgb(220,193,23)" fg:x="15807" fg:w="111"/><text x="3.4680%" y="559.50"></text></g><g><title>Compile::call_generator (165 samples, 0.03%)</title><rect x="3.2082%" y="581" width="0.0336%" height="15" fill="rgb(230,90,52)" fg:x="15759" fg:w="165"/><text x="3.4582%" y="591.50"></text></g><g><title>InlineTree::ok_to_inline (61 samples, 0.01%)</title><rect x="3.2741%" y="469" width="0.0124%" height="15" fill="rgb(252,106,19)" fg:x="16083" fg:w="61"/><text x="3.5241%" y="479.50"></text></g><g><title>Compile::call_generator (77 samples, 0.02%)</title><rect x="3.2719%" y="485" width="0.0157%" height="15" fill="rgb(206,74,20)" fg:x="16072" fg:w="77"/><text x="3.5219%" y="495.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.01%)</title><rect x="3.3295%" y="341" width="0.0124%" height="15" fill="rgb(230,138,44)" fg:x="16355" fg:w="61"/><text x="3.5795%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="3.3309%" y="325" width="0.0110%" height="15" fill="rgb(235,182,43)" fg:x="16362" fg:w="54"/><text x="3.5809%" y="335.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.01%)</title><rect x="3.3293%" y="357" width="0.0130%" height="15" fill="rgb(242,16,51)" fg:x="16354" fg:w="64"/><text x="3.5793%" y="367.50"></text></g><g><title>ParseGenerator::generate (99 samples, 0.02%)</title><rect x="3.3248%" y="389" width="0.0202%" height="15" fill="rgb(248,9,4)" fg:x="16332" fg:w="99"/><text x="3.5748%" y="399.50"></text></g><g><title>Parse::Parse (99 samples, 0.02%)</title><rect x="3.3248%" y="373" width="0.0202%" height="15" fill="rgb(210,31,22)" fg:x="16332" fg:w="99"/><text x="3.5748%" y="383.50"></text></g><g><title>Parse::do_call (191 samples, 0.04%)</title><rect x="3.3102%" y="405" width="0.0389%" height="15" fill="rgb(239,54,39)" fg:x="16260" fg:w="191"/><text x="3.5602%" y="415.50"></text></g><g><title>Parse::do_field_access (54 samples, 0.01%)</title><rect x="3.3501%" y="405" width="0.0110%" height="15" fill="rgb(230,99,41)" fg:x="16456" fg:w="54"/><text x="3.6001%" y="415.50"></text></g><g><title>Parse::do_one_block (319 samples, 0.06%)</title><rect x="3.3045%" y="437" width="0.0649%" height="15" fill="rgb(253,106,12)" fg:x="16232" fg:w="319"/><text x="3.5545%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (312 samples, 0.06%)</title><rect x="3.3059%" y="421" width="0.0635%" height="15" fill="rgb(213,46,41)" fg:x="16239" fg:w="312"/><text x="3.5559%" y="431.50"></text></g><g><title>Parse::do_all_blocks (327 samples, 0.07%)</title><rect x="3.3041%" y="453" width="0.0666%" height="15" fill="rgb(215,133,35)" fg:x="16230" fg:w="327"/><text x="3.5541%" y="463.50"></text></g><g><title>ParseGenerator::generate (380 samples, 0.08%)</title><rect x="3.2982%" y="485" width="0.0774%" height="15" fill="rgb(213,28,5)" fg:x="16201" fg:w="380"/><text x="3.5482%" y="495.50"></text></g><g><title>Parse::Parse (380 samples, 0.08%)</title><rect x="3.2982%" y="469" width="0.0774%" height="15" fill="rgb(215,77,49)" fg:x="16201" fg:w="380"/><text x="3.5482%" y="479.50"></text></g><g><title>PredictedCallGenerator::generate (66 samples, 0.01%)</title><rect x="3.3755%" y="485" width="0.0134%" height="15" fill="rgb(248,100,22)" fg:x="16581" fg:w="66"/><text x="3.6255%" y="495.50"></text></g><g><title>Parse::do_call (591 samples, 0.12%)</title><rect x="3.2711%" y="501" width="0.1203%" height="15" fill="rgb(208,67,9)" fg:x="16068" fg:w="591"/><text x="3.5211%" y="511.50"></text></g><g><title>Parse::do_field_access (97 samples, 0.02%)</title><rect x="3.3934%" y="501" width="0.0197%" height="15" fill="rgb(219,133,21)" fg:x="16669" fg:w="97"/><text x="3.6434%" y="511.50"></text></g><g><title>Parse::do_one_block (836 samples, 0.17%)</title><rect x="3.2617%" y="533" width="0.1702%" height="15" fill="rgb(246,46,29)" fg:x="16022" fg:w="836"/><text x="3.5117%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (827 samples, 0.17%)</title><rect x="3.2636%" y="517" width="0.1684%" height="15" fill="rgb(246,185,52)" fg:x="16031" fg:w="827"/><text x="3.5136%" y="527.50"></text></g><g><title>Parse::do_all_blocks (841 samples, 0.17%)</title><rect x="3.2615%" y="549" width="0.1712%" height="15" fill="rgb(252,136,11)" fg:x="16021" fg:w="841"/><text x="3.5115%" y="559.50"></text></g><g><title>ParseGenerator::generate (908 samples, 0.18%)</title><rect x="3.2542%" y="581" width="0.1848%" height="15" fill="rgb(219,138,53)" fg:x="15985" fg:w="908"/><text x="3.5042%" y="591.50"></text></g><g><title>Parse::Parse (906 samples, 0.18%)</title><rect x="3.2546%" y="565" width="0.1844%" height="15" fill="rgb(211,51,23)" fg:x="15987" fg:w="906"/><text x="3.5046%" y="575.50"></text></g><g><title>Parse::do_call (66 samples, 0.01%)</title><rect x="3.4437%" y="485" width="0.0134%" height="15" fill="rgb(247,221,28)" fg:x="16916" fg:w="66"/><text x="3.6937%" y="495.50"></text></g><g><title>Parse::do_one_block (83 samples, 0.02%)</title><rect x="3.4433%" y="517" width="0.0169%" height="15" fill="rgb(251,222,45)" fg:x="16914" fg:w="83"/><text x="3.6933%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (81 samples, 0.02%)</title><rect x="3.4437%" y="501" width="0.0165%" height="15" fill="rgb(217,162,53)" fg:x="16916" fg:w="81"/><text x="3.6937%" y="511.50"></text></g><g><title>Parse::do_all_blocks (84 samples, 0.02%)</title><rect x="3.4433%" y="533" width="0.0171%" height="15" fill="rgb(229,93,14)" fg:x="16914" fg:w="84"/><text x="3.6933%" y="543.50"></text></g><g><title>ParseGenerator::generate (89 samples, 0.02%)</title><rect x="3.4427%" y="565" width="0.0181%" height="15" fill="rgb(209,67,49)" fg:x="16911" fg:w="89"/><text x="3.6927%" y="575.50"></text></g><g><title>Parse::Parse (88 samples, 0.02%)</title><rect x="3.4429%" y="549" width="0.0179%" height="15" fill="rgb(213,87,29)" fg:x="16912" fg:w="88"/><text x="3.6929%" y="559.50"></text></g><g><title>PredictedCallGenerator::generate (129 samples, 0.03%)</title><rect x="3.4390%" y="581" width="0.0263%" height="15" fill="rgb(205,151,52)" fg:x="16893" fg:w="129"/><text x="3.6890%" y="591.50"></text></g><g><title>Parse::do_call (1,284 samples, 0.26%)</title><rect x="3.2082%" y="597" width="0.2614%" height="15" fill="rgb(253,215,39)" fg:x="15759" fg:w="1284"/><text x="3.4582%" y="607.50"></text></g><g><title>Parse::do_get_xxx (51 samples, 0.01%)</title><rect x="3.4730%" y="581" width="0.0104%" height="15" fill="rgb(221,220,41)" fg:x="17060" fg:w="51"/><text x="3.7230%" y="591.50"></text></g><g><title>GraphKit::access_store_at (55 samples, 0.01%)</title><rect x="3.4838%" y="565" width="0.0112%" height="15" fill="rgb(218,133,21)" fg:x="17113" fg:w="55"/><text x="3.7338%" y="575.50"></text></g><g><title>BarrierSetC2::store_at (54 samples, 0.01%)</title><rect x="3.4840%" y="549" width="0.0110%" height="15" fill="rgb(221,193,43)" fg:x="17114" fg:w="54"/><text x="3.7340%" y="559.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (51 samples, 0.01%)</title><rect x="3.4846%" y="533" width="0.0104%" height="15" fill="rgb(240,128,52)" fg:x="17117" fg:w="51"/><text x="3.7346%" y="543.50"></text></g><g><title>Parse::do_put_xxx (58 samples, 0.01%)</title><rect x="3.4834%" y="581" width="0.0118%" height="15" fill="rgb(253,114,12)" fg:x="17111" fg:w="58"/><text x="3.7334%" y="591.50"></text></g><g><title>Parse::do_field_access (118 samples, 0.02%)</title><rect x="3.4716%" y="597" width="0.0240%" height="15" fill="rgb(215,223,47)" fg:x="17053" fg:w="118"/><text x="3.7216%" y="607.50"></text></g><g><title>Parse::do_all_blocks (1,495 samples, 0.30%)</title><rect x="3.2019%" y="645" width="0.3043%" height="15" fill="rgb(248,225,23)" fg:x="15728" fg:w="1495"/><text x="3.4519%" y="655.50"></text></g><g><title>Parse::do_one_block (1,495 samples, 0.30%)</title><rect x="3.2019%" y="629" width="0.3043%" height="15" fill="rgb(250,108,0)" fg:x="15728" fg:w="1495"/><text x="3.4519%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (1,488 samples, 0.30%)</title><rect x="3.2033%" y="613" width="0.3029%" height="15" fill="rgb(228,208,7)" fg:x="15735" fg:w="1488"/><text x="3.4533%" y="623.50"></text></g><g><title>ParseGenerator::generate (1,502 samples, 0.31%)</title><rect x="3.2006%" y="677" width="0.3058%" height="15" fill="rgb(244,45,10)" fg:x="15722" fg:w="1502"/><text x="3.4506%" y="687.50"></text></g><g><title>Parse::Parse (1,502 samples, 0.31%)</title><rect x="3.2006%" y="661" width="0.3058%" height="15" fill="rgb(207,125,25)" fg:x="15722" fg:w="1502"/><text x="3.4506%" y="671.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.01%)</title><rect x="3.5268%" y="469" width="0.0114%" height="15" fill="rgb(210,195,18)" fg:x="17324" fg:w="56"/><text x="3.7768%" y="479.50"></text></g><g><title>Parse::Parse (56 samples, 0.01%)</title><rect x="3.5268%" y="453" width="0.0114%" height="15" fill="rgb(249,80,12)" fg:x="17324" fg:w="56"/><text x="3.7768%" y="463.50"></text></g><g><title>Parse::do_call (94 samples, 0.02%)</title><rect x="3.5211%" y="485" width="0.0191%" height="15" fill="rgb(221,65,9)" fg:x="17296" fg:w="94"/><text x="3.7711%" y="495.50"></text></g><g><title>Parse::do_one_block (143 samples, 0.03%)</title><rect x="3.5195%" y="517" width="0.0291%" height="15" fill="rgb(235,49,36)" fg:x="17288" fg:w="143"/><text x="3.7695%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (141 samples, 0.03%)</title><rect x="3.5199%" y="501" width="0.0287%" height="15" fill="rgb(225,32,20)" fg:x="17290" fg:w="141"/><text x="3.7699%" y="511.50"></text></g><g><title>Parse::do_all_blocks (146 samples, 0.03%)</title><rect x="3.5195%" y="533" width="0.0297%" height="15" fill="rgb(215,141,46)" fg:x="17288" fg:w="146"/><text x="3.7695%" y="543.50"></text></g><g><title>ParseGenerator::generate (157 samples, 0.03%)</title><rect x="3.5184%" y="565" width="0.0320%" height="15" fill="rgb(250,160,47)" fg:x="17283" fg:w="157"/><text x="3.7684%" y="575.50"></text></g><g><title>Parse::Parse (157 samples, 0.03%)</title><rect x="3.5184%" y="549" width="0.0320%" height="15" fill="rgb(216,222,40)" fg:x="17283" fg:w="157"/><text x="3.7684%" y="559.50"></text></g><g><title>Parse::do_call (232 samples, 0.05%)</title><rect x="3.5085%" y="581" width="0.0472%" height="15" fill="rgb(234,217,39)" fg:x="17234" fg:w="232"/><text x="3.7585%" y="591.50"></text></g><g><title>Parse::do_all_blocks (286 samples, 0.06%)</title><rect x="3.5072%" y="629" width="0.0582%" height="15" fill="rgb(207,178,40)" fg:x="17228" fg:w="286"/><text x="3.7572%" y="639.50"></text></g><g><title>Parse::do_one_block (286 samples, 0.06%)</title><rect x="3.5072%" y="613" width="0.0582%" height="15" fill="rgb(221,136,13)" fg:x="17228" fg:w="286"/><text x="3.7572%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (285 samples, 0.06%)</title><rect x="3.5074%" y="597" width="0.0580%" height="15" fill="rgb(249,199,10)" fg:x="17229" fg:w="285"/><text x="3.7574%" y="607.50"></text></g><g><title>ParseGenerator::generate (289 samples, 0.06%)</title><rect x="3.5068%" y="661" width="0.0588%" height="15" fill="rgb(249,222,13)" fg:x="17226" fg:w="289"/><text x="3.7568%" y="671.50"></text></g><g><title>Parse::Parse (289 samples, 0.06%)</title><rect x="3.5068%" y="645" width="0.0588%" height="15" fill="rgb(244,185,38)" fg:x="17226" fg:w="289"/><text x="3.7568%" y="655.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.01%)</title><rect x="3.5665%" y="613" width="0.0104%" height="15" fill="rgb(236,202,9)" fg:x="17519" fg:w="51"/><text x="3.8165%" y="623.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.01%)</title><rect x="3.5665%" y="597" width="0.0104%" height="15" fill="rgb(250,229,37)" fg:x="17519" fg:w="51"/><text x="3.8165%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.01%)</title><rect x="3.5667%" y="581" width="0.0102%" height="15" fill="rgb(206,174,23)" fg:x="17520" fg:w="50"/><text x="3.8167%" y="591.50"></text></g><g><title>ParseGenerator::generate (60 samples, 0.01%)</title><rect x="3.5657%" y="645" width="0.0122%" height="15" fill="rgb(211,33,43)" fg:x="17515" fg:w="60"/><text x="3.8157%" y="655.50"></text></g><g><title>Parse::Parse (60 samples, 0.01%)</title><rect x="3.5657%" y="629" width="0.0122%" height="15" fill="rgb(245,58,50)" fg:x="17515" fg:w="60"/><text x="3.8157%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (61 samples, 0.01%)</title><rect x="3.5657%" y="661" width="0.0124%" height="15" fill="rgb(244,68,36)" fg:x="17515" fg:w="61"/><text x="3.8157%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (354 samples, 0.07%)</title><rect x="3.5064%" y="677" width="0.0721%" height="15" fill="rgb(232,229,15)" fg:x="17224" fg:w="354"/><text x="3.7564%" y="687.50"></text></g><g><title>Parse::do_call (2,057 samples, 0.42%)</title><rect x="3.1622%" y="693" width="0.4188%" height="15" fill="rgb(254,30,23)" fg:x="15533" fg:w="2057"/><text x="3.4122%" y="703.50"></text></g><g><title>C2Compiler::compile_method (2,094 samples, 0.43%)</title><rect x="3.1567%" y="805" width="0.4263%" height="15" fill="rgb(235,160,14)" fg:x="15506" fg:w="2094"/><text x="3.4067%" y="815.50"></text></g><g><title>Compile::Compile (2,094 samples, 0.43%)</title><rect x="3.1567%" y="789" width="0.4263%" height="15" fill="rgb(212,155,44)" fg:x="15506" fg:w="2094"/><text x="3.4067%" y="799.50"></text></g><g><title>ParseGenerator::generate (2,069 samples, 0.42%)</title><rect x="3.1618%" y="773" width="0.4212%" height="15" fill="rgb(226,2,50)" fg:x="15531" fg:w="2069"/><text x="3.4118%" y="783.50"></text></g><g><title>Parse::Parse (2,069 samples, 0.42%)</title><rect x="3.1618%" y="757" width="0.4212%" height="15" fill="rgb(234,177,6)" fg:x="15531" fg:w="2069"/><text x="3.4118%" y="767.50"></text></g><g><title>Parse::do_all_blocks (2,069 samples, 0.42%)</title><rect x="3.1618%" y="741" width="0.4212%" height="15" fill="rgb(217,24,9)" fg:x="15531" fg:w="2069"/><text x="3.4118%" y="751.50"></text></g><g><title>Parse::do_one_block (2,069 samples, 0.42%)</title><rect x="3.1618%" y="725" width="0.4212%" height="15" fill="rgb(220,13,46)" fg:x="15531" fg:w="2069"/><text x="3.4118%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (2,069 samples, 0.42%)</title><rect x="3.1618%" y="709" width="0.4212%" height="15" fill="rgb(239,221,27)" fg:x="15531" fg:w="2069"/><text x="3.4118%" y="719.50"></text></g><g><title>Compile::Output (61 samples, 0.01%)</title><rect x="3.5832%" y="789" width="0.0124%" height="15" fill="rgb(222,198,25)" fg:x="17601" fg:w="61"/><text x="3.8332%" y="799.50"></text></g><g><title>Compile::init_buffer (61 samples, 0.01%)</title><rect x="3.5832%" y="773" width="0.0124%" height="15" fill="rgb(211,99,13)" fg:x="17601" fg:w="61"/><text x="3.8332%" y="783.50"></text></g><g><title>PhaseCFG::schedule_local (166 samples, 0.03%)</title><rect x="3.6096%" y="757" width="0.0338%" height="15" fill="rgb(232,111,31)" fg:x="17731" fg:w="166"/><text x="3.8596%" y="767.50"></text></g><g><title>PhaseCFG::sched_call (166 samples, 0.03%)</title><rect x="3.6096%" y="741" width="0.0338%" height="15" fill="rgb(245,82,37)" fg:x="17731" fg:w="166"/><text x="3.8596%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (218 samples, 0.04%)</title><rect x="3.6007%" y="789" width="0.0444%" height="15" fill="rgb(227,149,46)" fg:x="17687" fg:w="218"/><text x="3.8507%" y="799.50"></text></g><g><title>PhaseCFG::global_code_motion (218 samples, 0.04%)</title><rect x="3.6007%" y="773" width="0.0444%" height="15" fill="rgb(218,36,50)" fg:x="17687" fg:w="218"/><text x="3.8507%" y="783.50"></text></g><g><title>Compile::Code_Gen (356 samples, 0.07%)</title><rect x="3.5832%" y="805" width="0.0725%" height="15" fill="rgb(226,80,48)" fg:x="17601" fg:w="356"/><text x="3.8332%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (52 samples, 0.01%)</title><rect x="3.6451%" y="789" width="0.0106%" height="15" fill="rgb(238,224,15)" fg:x="17905" fg:w="52"/><text x="3.8951%" y="799.50"></text></g><g><title>OopFlow::compute_reach (201 samples, 0.04%)</title><rect x="3.7473%" y="741" width="0.0409%" height="15" fill="rgb(241,136,10)" fg:x="18407" fg:w="201"/><text x="3.9973%" y="751.50"></text></g><g><title>OopFlow::build_oop_map (120 samples, 0.02%)</title><rect x="3.7637%" y="725" width="0.0244%" height="15" fill="rgb(208,32,45)" fg:x="18488" fg:w="120"/><text x="4.0137%" y="735.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (76 samples, 0.02%)</title><rect x="3.7914%" y="741" width="0.0155%" height="15" fill="rgb(207,135,9)" fg:x="18624" fg:w="76"/><text x="4.0414%" y="751.50"></text></g><g><title>Compile::BuildOopMaps (737 samples, 0.15%)</title><rect x="3.6573%" y="757" width="0.1500%" height="15" fill="rgb(206,86,44)" fg:x="17965" fg:w="737"/><text x="3.9073%" y="767.50"></text></g><g><title>Compile::scratch_emit_size (158 samples, 0.03%)</title><rect x="3.8431%" y="725" width="0.0322%" height="15" fill="rgb(245,177,15)" fg:x="18878" fg:w="158"/><text x="4.0931%" y="735.50"></text></g><g><title>Compile::init_buffer (365 samples, 0.07%)</title><rect x="3.8073%" y="757" width="0.0743%" height="15" fill="rgb(206,64,50)" fg:x="18702" fg:w="365"/><text x="4.0573%" y="767.50"></text></g><g><title>Compile::shorten_branches (321 samples, 0.07%)</title><rect x="3.8163%" y="741" width="0.0653%" height="15" fill="rgb(234,36,40)" fg:x="18746" fg:w="321"/><text x="4.0663%" y="751.50"></text></g><g><title>Compile::Output (1,114 samples, 0.23%)</title><rect x="3.6558%" y="773" width="0.2268%" height="15" fill="rgb(213,64,8)" fg:x="17958" fg:w="1114"/><text x="3.9058%" y="783.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (66 samples, 0.01%)</title><rect x="3.9282%" y="741" width="0.0134%" height="15" fill="rgb(210,75,36)" fg:x="19296" fg:w="66"/><text x="4.1782%" y="751.50"></text></g><g><title>DebugInformationRecorder::describe_scope (55 samples, 0.01%)</title><rect x="3.9417%" y="741" width="0.0112%" height="15" fill="rgb(229,88,21)" fg:x="19362" fg:w="55"/><text x="4.1917%" y="751.50"></text></g><g><title>Compile::Process_OopMap_Node (234 samples, 0.05%)</title><rect x="3.9128%" y="757" width="0.0476%" height="15" fill="rgb(252,204,47)" fg:x="19220" fg:w="234"/><text x="4.1628%" y="767.50"></text></g><g><title>Compile::fill_buffer (544 samples, 0.11%)</title><rect x="3.8828%" y="773" width="0.1107%" height="15" fill="rgb(208,77,27)" fg:x="19073" fg:w="544"/><text x="4.1328%" y="783.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (55 samples, 0.01%)</title><rect x="4.0017%" y="757" width="0.0112%" height="15" fill="rgb(221,76,26)" fg:x="19657" fg:w="55"/><text x="4.2517%" y="767.50"></text></g><g><title>Matcher::find_shared (347 samples, 0.07%)</title><rect x="4.0129%" y="757" width="0.0706%" height="15" fill="rgb(225,139,18)" fg:x="19712" fg:w="347"/><text x="4.2629%" y="767.50"></text></g><g><title>Arena::contains (450 samples, 0.09%)</title><rect x="4.1518%" y="741" width="0.0916%" height="15" fill="rgb(230,137,11)" fg:x="20394" fg:w="450"/><text x="4.4018%" y="751.50"></text></g><g><title>Matcher::match_tree (96 samples, 0.02%)</title><rect x="4.2568%" y="725" width="0.0195%" height="15" fill="rgb(212,28,1)" fg:x="20910" fg:w="96"/><text x="4.5068%" y="735.50"></text></g><g><title>Matcher::match_sfpt (133 samples, 0.03%)</title><rect x="4.2523%" y="741" width="0.0271%" height="15" fill="rgb(248,164,17)" fg:x="20888" fg:w="133"/><text x="4.5023%" y="751.50"></text></g><g><title>Matcher::Label_Root (56 samples, 0.01%)</title><rect x="4.3519%" y="677" width="0.0114%" height="15" fill="rgb(222,171,42)" fg:x="21377" fg:w="56"/><text x="4.6019%" y="687.50"></text></g><g><title>State::DFA (54 samples, 0.01%)</title><rect x="4.3633%" y="677" width="0.0110%" height="15" fill="rgb(243,84,45)" fg:x="21433" fg:w="54"/><text x="4.6133%" y="687.50"></text></g><g><title>Matcher::Label_Root (149 samples, 0.03%)</title><rect x="4.3462%" y="693" width="0.0303%" height="15" fill="rgb(252,49,23)" fg:x="21349" fg:w="149"/><text x="4.5962%" y="703.50"></text></g><g><title>State::DFA (54 samples, 0.01%)</title><rect x="4.3783%" y="693" width="0.0110%" height="15" fill="rgb(215,19,7)" fg:x="21507" fg:w="54"/><text x="4.6283%" y="703.50"></text></g><g><title>Matcher::Label_Root (288 samples, 0.06%)</title><rect x="4.3321%" y="709" width="0.0586%" height="15" fill="rgb(238,81,41)" fg:x="21280" fg:w="288"/><text x="4.5821%" y="719.50"></text></g><g><title>Matcher::Label_Root (438 samples, 0.09%)</title><rect x="4.3163%" y="725" width="0.0892%" height="15" fill="rgb(210,199,37)" fg:x="21202" fg:w="438"/><text x="4.5663%" y="735.50"></text></g><g><title>Matcher::ReduceInst_Interior (56 samples, 0.01%)</title><rect x="4.4152%" y="677" width="0.0114%" height="15" fill="rgb(244,192,49)" fg:x="21688" fg:w="56"/><text x="4.6652%" y="687.50"></text></g><g><title>Matcher::ReduceInst (103 samples, 0.02%)</title><rect x="4.4134%" y="693" width="0.0210%" height="15" fill="rgb(226,211,11)" fg:x="21679" fg:w="103"/><text x="4.6634%" y="703.50"></text></g><g><title>Matcher::ReduceInst_Interior (177 samples, 0.04%)</title><rect x="4.4113%" y="709" width="0.0360%" height="15" fill="rgb(236,162,54)" fg:x="21669" fg:w="177"/><text x="4.6613%" y="719.50"></text></g><g><title>State::MachNodeGenerator (56 samples, 0.01%)</title><rect x="4.4524%" y="709" width="0.0114%" height="15" fill="rgb(220,229,9)" fg:x="21871" fg:w="56"/><text x="4.7024%" y="719.50"></text></g><g><title>Matcher::ReduceInst (316 samples, 0.06%)</title><rect x="4.4054%" y="725" width="0.0643%" height="15" fill="rgb(250,87,22)" fg:x="21640" fg:w="316"/><text x="4.6554%" y="735.50"></text></g><g><title>Matcher::match_tree (946 samples, 0.19%)</title><rect x="4.2794%" y="741" width="0.1926%" height="15" fill="rgb(239,43,17)" fg:x="21021" fg:w="946"/><text x="4.5294%" y="751.50"></text></g><g><title>Node::clone (73 samples, 0.01%)</title><rect x="4.4738%" y="741" width="0.0149%" height="15" fill="rgb(231,177,25)" fg:x="21976" fg:w="73"/><text x="4.7238%" y="751.50"></text></g><g><title>Matcher::xform (2,026 samples, 0.41%)</title><rect x="4.0862%" y="757" width="0.4124%" height="15" fill="rgb(219,179,1)" fg:x="20072" fg:w="2026"/><text x="4.3362%" y="767.50"></text></g><g><title>Matcher::match (2,484 samples, 0.51%)</title><rect x="3.9948%" y="773" width="0.5057%" height="15" fill="rgb(238,219,53)" fg:x="19623" fg:w="2484"/><text x="4.2448%" y="783.50"></text></g><g><title>PhaseBlockLayout::find_edges (56 samples, 0.01%)</title><rect x="4.5011%" y="757" width="0.0114%" height="15" fill="rgb(232,167,36)" fg:x="22110" fg:w="56"/><text x="4.7511%" y="767.50"></text></g><g><title>PhaseBlockLayout::grow_traces (55 samples, 0.01%)</title><rect x="4.5125%" y="757" width="0.0112%" height="15" fill="rgb(244,19,51)" fg:x="22166" fg:w="55"/><text x="4.7625%" y="767.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (157 samples, 0.03%)</title><rect x="4.5005%" y="773" width="0.0320%" height="15" fill="rgb(224,6,22)" fg:x="22107" fg:w="157"/><text x="4.7505%" y="783.50"></text></g><g><title>PhaseCFG::PhaseCFG (131 samples, 0.03%)</title><rect x="4.5325%" y="773" width="0.0267%" height="15" fill="rgb(224,145,5)" fg:x="22264" fg:w="131"/><text x="4.7825%" y="783.50"></text></g><g><title>PhaseCFG::build_cfg (126 samples, 0.03%)</title><rect x="4.5335%" y="757" width="0.0257%" height="15" fill="rgb(234,130,49)" fg:x="22269" fg:w="126"/><text x="4.7835%" y="767.50"></text></g><g><title>PhaseCFG::build_dominator_tree (80 samples, 0.02%)</title><rect x="4.5593%" y="757" width="0.0163%" height="15" fill="rgb(254,6,2)" fg:x="22396" fg:w="80"/><text x="4.8093%" y="767.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (56 samples, 0.01%)</title><rect x="4.5756%" y="757" width="0.0114%" height="15" fill="rgb(208,96,46)" fg:x="22476" fg:w="56"/><text x="4.8256%" y="767.50"></text></g><g><title>PhaseCFG::implicit_null_check (52 samples, 0.01%)</title><rect x="4.6585%" y="741" width="0.0106%" height="15" fill="rgb(239,3,39)" fg:x="22883" fg:w="52"/><text x="4.9085%" y="751.50"></text></g><g><title>Node_Backward_Iterator::next (238 samples, 0.05%)</title><rect x="4.6961%" y="725" width="0.0485%" height="15" fill="rgb(233,210,1)" fg:x="23068" fg:w="238"/><text x="4.9461%" y="735.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (105 samples, 0.02%)</title><rect x="4.7446%" y="725" width="0.0214%" height="15" fill="rgb(244,137,37)" fg:x="23306" fg:w="105"/><text x="4.9946%" y="735.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (145 samples, 0.03%)</title><rect x="4.7660%" y="725" width="0.0295%" height="15" fill="rgb(240,136,2)" fg:x="23411" fg:w="145"/><text x="5.0160%" y="735.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (59 samples, 0.01%)</title><rect x="4.7955%" y="725" width="0.0120%" height="15" fill="rgb(239,18,37)" fg:x="23556" fg:w="59"/><text x="5.0455%" y="735.50"></text></g><g><title>PhaseCFG::schedule_late (650 samples, 0.13%)</title><rect x="4.6766%" y="741" width="0.1323%" height="15" fill="rgb(218,185,22)" fg:x="22972" fg:w="650"/><text x="4.9266%" y="751.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (62 samples, 0.01%)</title><rect x="4.8549%" y="725" width="0.0126%" height="15" fill="rgb(225,218,4)" fg:x="23848" fg:w="62"/><text x="5.1049%" y="735.50"></text></g><g><title>PhaseCFG::select (100 samples, 0.02%)</title><rect x="4.8724%" y="725" width="0.0204%" height="15" fill="rgb(230,182,32)" fg:x="23934" fg:w="100"/><text x="5.1224%" y="735.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (55 samples, 0.01%)</title><rect x="4.8928%" y="725" width="0.0112%" height="15" fill="rgb(242,56,43)" fg:x="24034" fg:w="55"/><text x="5.1428%" y="735.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (50 samples, 0.01%)</title><rect x="4.9040%" y="725" width="0.0102%" height="15" fill="rgb(233,99,24)" fg:x="24089" fg:w="50"/><text x="5.1540%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (525 samples, 0.11%)</title><rect x="4.8089%" y="741" width="0.1069%" height="15" fill="rgb(234,209,42)" fg:x="23622" fg:w="525"/><text x="5.0589%" y="751.50"></text></g><g><title>RegMask::Size (78 samples, 0.02%)</title><rect x="4.9746%" y="725" width="0.0159%" height="15" fill="rgb(227,7,12)" fg:x="24436" fg:w="78"/><text x="5.2246%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (398 samples, 0.08%)</title><rect x="4.9223%" y="741" width="0.0810%" height="15" fill="rgb(245,203,43)" fg:x="24179" fg:w="398"/><text x="5.1723%" y="751.50"></text></g><g><title>PhaseChaitin::mark_ssa (86 samples, 0.02%)</title><rect x="5.0033%" y="741" width="0.0175%" height="15" fill="rgb(238,205,33)" fg:x="24577" fg:w="86"/><text x="5.2533%" y="751.50"></text></g><g><title>IndexSet::initialize (100 samples, 0.02%)</title><rect x="5.0302%" y="725" width="0.0204%" height="15" fill="rgb(231,56,7)" fg:x="24709" fg:w="100"/><text x="5.2802%" y="735.50"></text></g><g><title>PhaseIFG::init (191 samples, 0.04%)</title><rect x="5.0208%" y="741" width="0.0389%" height="15" fill="rgb(244,186,29)" fg:x="24663" fg:w="191"/><text x="5.2708%" y="751.50"></text></g><g><title>IndexSet::initialize (55 samples, 0.01%)</title><rect x="5.1021%" y="725" width="0.0112%" height="15" fill="rgb(234,111,31)" fg:x="25062" fg:w="55"/><text x="5.3521%" y="735.50"></text></g><g><title>PhaseLive::add_livein (177 samples, 0.04%)</title><rect x="5.1137%" y="725" width="0.0360%" height="15" fill="rgb(241,149,10)" fg:x="25119" fg:w="177"/><text x="5.3637%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (72 samples, 0.01%)</title><rect x="5.1350%" y="709" width="0.0147%" height="15" fill="rgb(249,206,44)" fg:x="25224" fg:w="72"/><text x="5.3850%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (56 samples, 0.01%)</title><rect x="5.1845%" y="709" width="0.0114%" height="15" fill="rgb(251,153,30)" fg:x="25467" fg:w="56"/><text x="5.4345%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (101 samples, 0.02%)</title><rect x="5.1990%" y="709" width="0.0206%" height="15" fill="rgb(239,152,38)" fg:x="25538" fg:w="101"/><text x="5.4490%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (344 samples, 0.07%)</title><rect x="5.1497%" y="725" width="0.0700%" height="15" fill="rgb(249,139,47)" fg:x="25296" fg:w="344"/><text x="5.3997%" y="735.50"></text></g><g><title>PhaseLive::compute (789 samples, 0.16%)</title><rect x="5.0597%" y="741" width="0.1606%" height="15" fill="rgb(244,64,35)" fg:x="24854" fg:w="789"/><text x="5.3097%" y="751.50"></text></g><g><title>PhaseCFG::global_code_motion (3,133 samples, 0.64%)</title><rect x="4.5870%" y="757" width="0.6378%" height="15" fill="rgb(216,46,15)" fg:x="22532" fg:w="3133"/><text x="4.8370%" y="767.50"></text></g><g><title>PhaseCFG::do_global_code_motion (3,273 samples, 0.67%)</title><rect x="4.5591%" y="773" width="0.6663%" height="15" fill="rgb(250,74,19)" fg:x="22395" fg:w="3273"/><text x="4.8091%" y="783.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (69 samples, 0.01%)</title><rect x="5.2313%" y="773" width="0.0140%" height="15" fill="rgb(249,42,33)" fg:x="25697" fg:w="69"/><text x="5.4813%" y="783.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (885 samples, 0.18%)</title><rect x="5.2733%" y="757" width="0.1802%" height="15" fill="rgb(242,149,17)" fg:x="25903" fg:w="885"/><text x="5.5233%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (273 samples, 0.06%)</title><rect x="5.5707%" y="741" width="0.0556%" height="15" fill="rgb(244,29,21)" fg:x="27364" fg:w="273"/><text x="5.8207%" y="751.50"></text></g><g><title>PhaseChaitin::bias_color (149 samples, 0.03%)</title><rect x="5.6263%" y="741" width="0.0303%" height="15" fill="rgb(220,130,37)" fg:x="27637" fg:w="149"/><text x="5.8763%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (344 samples, 0.07%)</title><rect x="5.7413%" y="725" width="0.0700%" height="15" fill="rgb(211,67,2)" fg:x="28202" fg:w="344"/><text x="5.9913%" y="735.50"></text></g><g><title>PhaseIFG::re_insert (759 samples, 0.15%)</title><rect x="5.6586%" y="741" width="0.1545%" height="15" fill="rgb(235,68,52)" fg:x="27796" fg:w="759"/><text x="5.9086%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (132 samples, 0.03%)</title><rect x="5.8132%" y="741" width="0.0269%" height="15" fill="rgb(246,142,3)" fg:x="28555" fg:w="132"/><text x="6.0632%" y="751.50"></text></g><g><title>PhaseChaitin::Select (1,902 samples, 0.39%)</title><rect x="5.4534%" y="757" width="0.3872%" height="15" fill="rgb(241,25,7)" fg:x="26788" fg:w="1902"/><text x="5.7034%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (292 samples, 0.06%)</title><rect x="5.8981%" y="741" width="0.0594%" height="15" fill="rgb(242,119,39)" fg:x="28972" fg:w="292"/><text x="6.1481%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (390 samples, 0.08%)</title><rect x="6.0467%" y="725" width="0.0794%" height="15" fill="rgb(241,98,45)" fg:x="29702" fg:w="390"/><text x="6.2967%" y="735.50"></text></g><g><title>PhaseChaitin::Simplify (1,407 samples, 0.29%)</title><rect x="5.8406%" y="757" width="0.2864%" height="15" fill="rgb(254,28,30)" fg:x="28690" fg:w="1407"/><text x="6.0906%" y="767.50"></text></g><g><title>PhaseIFG::remove_node (833 samples, 0.17%)</title><rect x="5.9575%" y="741" width="0.1696%" height="15" fill="rgb(241,142,54)" fg:x="29264" fg:w="833"/><text x="6.2075%" y="751.50"></text></g><g><title>MachNode::rematerialize (140 samples, 0.03%)</title><rect x="6.5625%" y="741" width="0.0285%" height="15" fill="rgb(222,85,15)" fg:x="32236" fg:w="140"/><text x="6.8125%" y="751.50"></text></g><g><title>Node::rematerialize (127 samples, 0.03%)</title><rect x="6.5955%" y="741" width="0.0259%" height="15" fill="rgb(210,85,47)" fg:x="32398" fg:w="127"/><text x="6.8455%" y="751.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (72 samples, 0.01%)</title><rect x="6.6574%" y="725" width="0.0147%" height="15" fill="rgb(224,206,25)" fg:x="32702" fg:w="72"/><text x="6.9074%" y="735.50"></text></g><g><title>PhaseChaitin::split_USE (149 samples, 0.03%)</title><rect x="6.6466%" y="741" width="0.0303%" height="15" fill="rgb(243,201,19)" fg:x="32649" fg:w="149"/><text x="6.8966%" y="751.50"></text></g><g><title>PhaseChaitin::Split (2,767 samples, 0.56%)</title><rect x="6.1271%" y="757" width="0.5633%" height="15" fill="rgb(236,59,4)" fg:x="30097" fg:w="2767"/><text x="6.3771%" y="767.50"></text></g><g><title>IndexSet::IndexSet (223 samples, 0.05%)</title><rect x="6.8445%" y="741" width="0.0454%" height="15" fill="rgb(254,179,45)" fg:x="33621" fg:w="223"/><text x="7.0945%" y="751.50"></text></g><g><title>MachNode::rematerialize (71 samples, 0.01%)</title><rect x="6.8907%" y="741" width="0.0145%" height="15" fill="rgb(226,14,10)" fg:x="33848" fg:w="71"/><text x="7.1407%" y="751.50"></text></g><g><title>MachNode::rematerialize (94 samples, 0.02%)</title><rect x="7.0045%" y="725" width="0.0191%" height="15" fill="rgb(244,27,41)" fg:x="34407" fg:w="94"/><text x="7.2545%" y="735.50"></text></g><g><title>PhaseChaitin::raise_pressure (89 samples, 0.02%)</title><rect x="7.0265%" y="725" width="0.0181%" height="15" fill="rgb(235,35,32)" fg:x="34515" fg:w="89"/><text x="7.2765%" y="735.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (680 samples, 0.14%)</title><rect x="6.9070%" y="741" width="0.1384%" height="15" fill="rgb(218,68,31)" fg:x="33928" fg:w="680"/><text x="7.1570%" y="751.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (51 samples, 0.01%)</title><rect x="7.0540%" y="741" width="0.0104%" height="15" fill="rgb(207,120,37)" fg:x="34650" fg:w="51"/><text x="7.3040%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (140 samples, 0.03%)</title><rect x="7.1150%" y="725" width="0.0285%" height="15" fill="rgb(227,98,0)" fg:x="34950" fg:w="140"/><text x="7.3650%" y="735.50"></text></g><g><title>RegMask::is_UP (67 samples, 0.01%)</title><rect x="7.1435%" y="725" width="0.0136%" height="15" fill="rgb(207,7,3)" fg:x="35090" fg:w="67"/><text x="7.3935%" y="735.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (457 samples, 0.09%)</title><rect x="7.0643%" y="741" width="0.0930%" height="15" fill="rgb(206,98,19)" fg:x="34701" fg:w="457"/><text x="7.3143%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (105 samples, 0.02%)</title><rect x="7.5041%" y="725" width="0.0214%" height="15" fill="rgb(217,5,26)" fg:x="36861" fg:w="105"/><text x="7.7541%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (711 samples, 0.14%)</title><rect x="7.5275%" y="725" width="0.1447%" height="15" fill="rgb(235,190,38)" fg:x="36976" fg:w="711"/><text x="7.7775%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (2,533 samples, 0.52%)</title><rect x="7.1574%" y="741" width="0.5157%" height="15" fill="rgb(247,86,24)" fg:x="35158" fg:w="2533"/><text x="7.4074%" y="751.50"></text></g><g><title>PhaseChaitin::lower_pressure (95 samples, 0.02%)</title><rect x="7.6730%" y="741" width="0.0193%" height="15" fill="rgb(205,101,16)" fg:x="37691" fg:w="95"/><text x="7.9230%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (182 samples, 0.04%)</title><rect x="7.7789%" y="725" width="0.0371%" height="15" fill="rgb(246,168,33)" fg:x="38211" fg:w="182"/><text x="8.0289%" y="735.50"></text></g><g><title>RegMask::Size (289 samples, 0.06%)</title><rect x="7.8160%" y="725" width="0.0588%" height="15" fill="rgb(231,114,1)" fg:x="38393" fg:w="289"/><text x="8.0660%" y="735.50"></text></g><g><title>RegMask::smear_to_sets (606 samples, 0.12%)</title><rect x="7.8748%" y="725" width="0.1234%" height="15" fill="rgb(207,184,53)" fg:x="38682" fg:w="606"/><text x="8.1248%" y="735.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,514 samples, 0.31%)</title><rect x="7.6924%" y="741" width="0.3082%" height="15" fill="rgb(224,95,51)" fg:x="37786" fg:w="1514"/><text x="7.9424%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (6,513 samples, 1.33%)</title><rect x="6.6908%" y="757" width="1.3259%" height="15" fill="rgb(212,188,45)" fg:x="32866" fg:w="6513"/><text x="6.9408%" y="767.50"></text></g><g><title>PhaseChaitin::interfere_with_live (318 samples, 0.06%)</title><rect x="8.0427%" y="741" width="0.0647%" height="15" fill="rgb(223,154,38)" fg:x="39507" fg:w="318"/><text x="8.2927%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (65 samples, 0.01%)</title><rect x="8.0942%" y="725" width="0.0132%" height="15" fill="rgb(251,22,52)" fg:x="39760" fg:w="65"/><text x="8.3442%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (449 samples, 0.09%)</title><rect x="8.0167%" y="757" width="0.0914%" height="15" fill="rgb(229,209,22)" fg:x="39379" fg:w="449"/><text x="8.2667%" y="767.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (110 samples, 0.02%)</title><rect x="8.1081%" y="757" width="0.0224%" height="15" fill="rgb(234,138,34)" fg:x="39828" fg:w="110"/><text x="8.3581%" y="767.50"></text></g><g><title>PhaseChaitin::de_ssa (80 samples, 0.02%)</title><rect x="8.1378%" y="757" width="0.0163%" height="15" fill="rgb(212,95,11)" fg:x="39974" fg:w="80"/><text x="8.3878%" y="767.50"></text></g><g><title>PhaseChaitin::fixup_spills (57 samples, 0.01%)</title><rect x="8.1543%" y="757" width="0.0116%" height="15" fill="rgb(240,179,47)" fg:x="40055" fg:w="57"/><text x="8.4043%" y="767.50"></text></g><g><title>MachCallJavaNode::in_RegMask (78 samples, 0.02%)</title><rect x="8.5000%" y="741" width="0.0159%" height="15" fill="rgb(240,163,11)" fg:x="41753" fg:w="78"/><text x="8.7500%" y="751.50"></text></g><g><title>MachNode::ideal_reg (75 samples, 0.02%)</title><rect x="8.5167%" y="741" width="0.0153%" height="15" fill="rgb(236,37,12)" fg:x="41835" fg:w="75"/><text x="8.7667%" y="751.50"></text></g><g><title>MachNode::in_RegMask (59 samples, 0.01%)</title><rect x="8.5319%" y="741" width="0.0120%" height="15" fill="rgb(232,164,16)" fg:x="41910" fg:w="59"/><text x="8.7819%" y="751.50"></text></g><g><title>RegMask::Size (1,039 samples, 0.21%)</title><rect x="8.5629%" y="741" width="0.2115%" height="15" fill="rgb(244,205,15)" fg:x="42062" fg:w="1039"/><text x="8.8129%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (169 samples, 0.03%)</title><rect x="8.7744%" y="741" width="0.0344%" height="15" fill="rgb(223,117,47)" fg:x="43101" fg:w="169"/><text x="9.0244%" y="751.50"></text></g><g><title>RegMask::is_aligned_pairs (75 samples, 0.02%)</title><rect x="8.8088%" y="741" width="0.0153%" height="15" fill="rgb(244,107,35)" fg:x="43270" fg:w="75"/><text x="9.0588%" y="751.50"></text></g><g><title>RegMask::is_bound1 (123 samples, 0.03%)</title><rect x="8.8241%" y="741" width="0.0250%" height="15" fill="rgb(205,140,8)" fg:x="43345" fg:w="123"/><text x="9.0741%" y="751.50"></text></g><g><title>RegMask::is_bound_pair (59 samples, 0.01%)</title><rect x="8.8491%" y="741" width="0.0120%" height="15" fill="rgb(228,84,46)" fg:x="43468" fg:w="59"/><text x="9.0991%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (3,558 samples, 0.72%)</title><rect x="8.1659%" y="757" width="0.7243%" height="15" fill="rgb(254,188,9)" fg:x="40112" fg:w="3558"/><text x="8.4159%" y="767.50"></text></g><g><title>PhaseChaitin::merge_multidefs (473 samples, 0.10%)</title><rect x="8.8902%" y="757" width="0.0963%" height="15" fill="rgb(206,112,54)" fg:x="43670" fg:w="473"/><text x="9.1402%" y="767.50"></text></g><g><title>PhaseChaitin::use_prior_register (91 samples, 0.02%)</title><rect x="9.6899%" y="725" width="0.0185%" height="15" fill="rgb(216,84,49)" fg:x="47598" fg:w="91"/><text x="9.9399%" y="735.50"></text></g><g><title>PhaseChaitin::elide_copy (1,848 samples, 0.38%)</title><rect x="9.3389%" y="741" width="0.3762%" height="15" fill="rgb(214,194,35)" fg:x="45874" fg:w="1848"/><text x="9.5889%" y="751.50"></text></g><g><title>[libc-2.31.so] (62 samples, 0.01%)</title><rect x="9.7261%" y="741" width="0.0126%" height="15" fill="rgb(249,28,3)" fg:x="47776" fg:w="62"/><text x="9.9761%" y="751.50"></text></g><g><title>find_lowest_bit (316 samples, 0.06%)</title><rect x="9.7408%" y="741" width="0.0643%" height="15" fill="rgb(222,56,52)" fg:x="47848" fg:w="316"/><text x="9.9908%" y="751.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (4,027 samples, 0.82%)</title><rect x="8.9867%" y="757" width="0.8198%" height="15" fill="rgb(245,217,50)" fg:x="44144" fg:w="4027"/><text x="9.2367%" y="767.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (179 samples, 0.04%)</title><rect x="9.8065%" y="757" width="0.0364%" height="15" fill="rgb(213,201,24)" fg:x="48171" fg:w="179"/><text x="10.0565%" y="767.50"></text></g><g><title>PhaseIFG::Union (54 samples, 0.01%)</title><rect x="9.8619%" y="709" width="0.0110%" height="15" fill="rgb(248,116,28)" fg:x="48443" fg:w="54"/><text x="10.1119%" y="719.50"></text></g><g><title>PhaseCoalesce::combine_these_two (66 samples, 0.01%)</title><rect x="9.8597%" y="725" width="0.0134%" height="15" fill="rgb(219,72,43)" fg:x="48432" fg:w="66"/><text x="10.1097%" y="735.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (143 samples, 0.03%)</title><rect x="9.8442%" y="741" width="0.0291%" height="15" fill="rgb(209,138,14)" fg:x="48356" fg:w="143"/><text x="10.0942%" y="751.50"></text></g><g><title>PhaseCFG::is_uncommon (113 samples, 0.02%)</title><rect x="9.8837%" y="725" width="0.0230%" height="15" fill="rgb(222,18,33)" fg:x="48550" fg:w="113"/><text x="10.1337%" y="735.50"></text></g><g><title>IndexSet::lrg_union (287 samples, 0.06%)</title><rect x="9.9128%" y="709" width="0.0584%" height="15" fill="rgb(213,199,7)" fg:x="48693" fg:w="287"/><text x="10.1628%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (348 samples, 0.07%)</title><rect x="9.9739%" y="709" width="0.0708%" height="15" fill="rgb(250,110,10)" fg:x="48993" fg:w="348"/><text x="10.2239%" y="719.50"></text></g><g><title>PhaseIFG::effective_degree (79 samples, 0.02%)</title><rect x="10.0447%" y="709" width="0.0161%" height="15" fill="rgb(248,123,6)" fg:x="49341" fg:w="79"/><text x="10.2947%" y="719.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,101 samples, 0.22%)</title><rect x="9.8430%" y="757" width="0.2241%" height="15" fill="rgb(206,91,31)" fg:x="48350" fg:w="1101"/><text x="10.0930%" y="767.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (952 samples, 0.19%)</title><rect x="9.8733%" y="741" width="0.1938%" height="15" fill="rgb(211,154,13)" fg:x="48499" fg:w="952"/><text x="10.1233%" y="751.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (788 samples, 0.16%)</title><rect x="9.9067%" y="725" width="0.1604%" height="15" fill="rgb(225,148,7)" fg:x="48663" fg:w="788"/><text x="10.1567%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (55 samples, 0.01%)</title><rect x="10.1437%" y="741" width="0.0112%" height="15" fill="rgb(220,160,43)" fg:x="49827" fg:w="55"/><text x="10.3937%" y="751.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (844 samples, 0.17%)</title><rect x="10.0671%" y="757" width="0.1718%" height="15" fill="rgb(213,52,39)" fg:x="49451" fg:w="844"/><text x="10.3171%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (413 samples, 0.08%)</title><rect x="10.1549%" y="741" width="0.0841%" height="15" fill="rgb(243,137,7)" fg:x="49882" fg:w="413"/><text x="10.4049%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (59 samples, 0.01%)</title><rect x="10.3108%" y="741" width="0.0120%" height="15" fill="rgb(230,79,13)" fg:x="50648" fg:w="59"/><text x="10.5608%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (67 samples, 0.01%)</title><rect x="10.3228%" y="741" width="0.0136%" height="15" fill="rgb(247,105,23)" fg:x="50707" fg:w="67"/><text x="10.5728%" y="751.50"></text></g><g><title>PhaseIFG::SquareUp (830 samples, 0.17%)</title><rect x="10.2389%" y="757" width="0.1690%" height="15" fill="rgb(223,179,41)" fg:x="50295" fg:w="830"/><text x="10.4889%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (351 samples, 0.07%)</title><rect x="10.3365%" y="741" width="0.0715%" height="15" fill="rgb(218,9,34)" fg:x="50774" fg:w="351"/><text x="10.5865%" y="751.50"></text></g><g><title>IndexSet::initialize (173 samples, 0.04%)</title><rect x="10.4307%" y="741" width="0.0352%" height="15" fill="rgb(222,106,8)" fg:x="51237" fg:w="173"/><text x="10.6807%" y="751.50"></text></g><g><title>[libc-2.31.so] (56 samples, 0.01%)</title><rect x="10.4661%" y="741" width="0.0114%" height="15" fill="rgb(211,220,0)" fg:x="51411" fg:w="56"/><text x="10.7161%" y="751.50"></text></g><g><title>PhaseIFG::init (343 samples, 0.07%)</title><rect x="10.4079%" y="757" width="0.0698%" height="15" fill="rgb(229,52,16)" fg:x="51125" fg:w="343"/><text x="10.6579%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (70 samples, 0.01%)</title><rect x="10.6897%" y="741" width="0.0143%" height="15" fill="rgb(212,155,18)" fg:x="52509" fg:w="70"/><text x="10.9397%" y="751.50"></text></g><g><title>IndexSet::initialize (113 samples, 0.02%)</title><rect x="10.7129%" y="741" width="0.0230%" height="15" fill="rgb(242,21,14)" fg:x="52623" fg:w="113"/><text x="10.9629%" y="751.50"></text></g><g><title>__tls_get_addr (58 samples, 0.01%)</title><rect x="10.8810%" y="709" width="0.0118%" height="15" fill="rgb(222,19,48)" fg:x="53449" fg:w="58"/><text x="11.1310%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (187 samples, 0.04%)</title><rect x="10.8562%" y="725" width="0.0381%" height="15" fill="rgb(232,45,27)" fg:x="53327" fg:w="187"/><text x="11.1062%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (266 samples, 0.05%)</title><rect x="10.9046%" y="725" width="0.0542%" height="15" fill="rgb(249,103,42)" fg:x="53565" fg:w="266"/><text x="11.1546%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (1,117 samples, 0.23%)</title><rect x="10.7361%" y="741" width="0.2274%" height="15" fill="rgb(246,81,33)" fg:x="52737" fg:w="1117"/><text x="10.9861%" y="751.50"></text></g><g><title>PhaseLive::compute (2,396 samples, 0.49%)</title><rect x="10.4786%" y="757" width="0.4878%" height="15" fill="rgb(252,33,42)" fg:x="51472" fg:w="2396"/><text x="10.7286%" y="767.50"></text></g><g><title>find_lowest_bit (51 samples, 0.01%)</title><rect x="10.9818%" y="757" width="0.0104%" height="15" fill="rgb(209,212,41)" fg:x="53944" fg:w="51"/><text x="11.2318%" y="767.50"></text></g><g><title>PhaseChaitin::Register_Allocate (28,227 samples, 5.75%)</title><rect x="5.2486%" y="773" width="5.7464%" height="15" fill="rgb(207,154,6)" fg:x="25782" fg:w="28227"/><text x="5.4986%" y="783.50">PhaseCh..</text></g><g><title>Compile::Code_Gen (36,092 samples, 7.35%)</title><rect x="3.6556%" y="789" width="7.3475%" height="15" fill="rgb(223,64,47)" fg:x="17957" fg:w="36092"/><text x="3.9056%" y="799.50">Compile::C..</text></g><g><title>ParseGenerator::generate (74 samples, 0.02%)</title><rect x="11.0685%" y="117" width="0.0151%" height="15" fill="rgb(211,161,38)" fg:x="54370" fg:w="74"/><text x="11.3185%" y="127.50"></text></g><g><title>Parse::Parse (74 samples, 0.02%)</title><rect x="11.0685%" y="101" width="0.0151%" height="15" fill="rgb(219,138,40)" fg:x="54370" fg:w="74"/><text x="11.3185%" y="111.50"></text></g><g><title>Parse::do_call (118 samples, 0.02%)</title><rect x="11.0608%" y="133" width="0.0240%" height="15" fill="rgb(241,228,46)" fg:x="54332" fg:w="118"/><text x="11.3108%" y="143.50"></text></g><g><title>Parse::do_one_block (184 samples, 0.04%)</title><rect x="11.0583%" y="165" width="0.0375%" height="15" fill="rgb(223,209,38)" fg:x="54320" fg:w="184"/><text x="11.3083%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (184 samples, 0.04%)</title><rect x="11.0583%" y="149" width="0.0375%" height="15" fill="rgb(236,164,45)" fg:x="54320" fg:w="184"/><text x="11.3083%" y="159.50"></text></g><g><title>Parse::do_all_blocks (185 samples, 0.04%)</title><rect x="11.0583%" y="181" width="0.0377%" height="15" fill="rgb(231,15,5)" fg:x="54320" fg:w="185"/><text x="11.3083%" y="191.50"></text></g><g><title>ParseGenerator::generate (205 samples, 0.04%)</title><rect x="11.0559%" y="213" width="0.0417%" height="15" fill="rgb(252,35,15)" fg:x="54308" fg:w="205"/><text x="11.3059%" y="223.50"></text></g><g><title>Parse::Parse (205 samples, 0.04%)</title><rect x="11.0559%" y="197" width="0.0417%" height="15" fill="rgb(248,181,18)" fg:x="54308" fg:w="205"/><text x="11.3059%" y="207.50"></text></g><g><title>Parse::do_call (282 samples, 0.06%)</title><rect x="11.0451%" y="229" width="0.0574%" height="15" fill="rgb(233,39,42)" fg:x="54255" fg:w="282"/><text x="11.2951%" y="239.50"></text></g><g><title>Parse::do_one_block (385 samples, 0.08%)</title><rect x="11.0414%" y="261" width="0.0784%" height="15" fill="rgb(238,110,33)" fg:x="54237" fg:w="385"/><text x="11.2914%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (380 samples, 0.08%)</title><rect x="11.0425%" y="245" width="0.0774%" height="15" fill="rgb(233,195,10)" fg:x="54242" fg:w="380"/><text x="11.2925%" y="255.50"></text></g><g><title>Parse::do_all_blocks (388 samples, 0.08%)</title><rect x="11.0414%" y="277" width="0.0790%" height="15" fill="rgb(254,105,3)" fg:x="54237" fg:w="388"/><text x="11.2914%" y="287.50"></text></g><g><title>ParseGenerator::generate (418 samples, 0.09%)</title><rect x="11.0378%" y="309" width="0.0851%" height="15" fill="rgb(221,225,9)" fg:x="54219" fg:w="418"/><text x="11.2878%" y="319.50"></text></g><g><title>Parse::Parse (417 samples, 0.08%)</title><rect x="11.0380%" y="293" width="0.0849%" height="15" fill="rgb(224,227,45)" fg:x="54220" fg:w="417"/><text x="11.2880%" y="303.50"></text></g><g><title>Parse::do_call (529 samples, 0.11%)</title><rect x="11.0256%" y="325" width="0.1077%" height="15" fill="rgb(229,198,43)" fg:x="54159" fg:w="529"/><text x="11.2756%" y="335.50"></text></g><g><title>ParseGenerator::generate (594 samples, 0.12%)</title><rect x="11.0221%" y="405" width="0.1209%" height="15" fill="rgb(206,209,35)" fg:x="54142" fg:w="594"/><text x="11.2721%" y="415.50"></text></g><g><title>Parse::Parse (594 samples, 0.12%)</title><rect x="11.0221%" y="389" width="0.1209%" height="15" fill="rgb(245,195,53)" fg:x="54142" fg:w="594"/><text x="11.2721%" y="399.50"></text></g><g><title>Parse::do_all_blocks (588 samples, 0.12%)</title><rect x="11.0233%" y="373" width="0.1197%" height="15" fill="rgb(240,92,26)" fg:x="54148" fg:w="588"/><text x="11.2733%" y="383.50"></text></g><g><title>Parse::do_one_block (588 samples, 0.12%)</title><rect x="11.0233%" y="357" width="0.1197%" height="15" fill="rgb(207,40,23)" fg:x="54148" fg:w="588"/><text x="11.2733%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (588 samples, 0.12%)</title><rect x="11.0233%" y="341" width="0.1197%" height="15" fill="rgb(223,111,35)" fg:x="54148" fg:w="588"/><text x="11.2733%" y="351.50"></text></g><g><title>Parse::do_call (672 samples, 0.14%)</title><rect x="11.0125%" y="421" width="0.1368%" height="15" fill="rgb(229,147,28)" fg:x="54095" fg:w="672"/><text x="11.2625%" y="431.50"></text></g><g><title>Parse::do_all_blocks (687 samples, 0.14%)</title><rect x="11.0121%" y="469" width="0.1399%" height="15" fill="rgb(211,29,28)" fg:x="54093" fg:w="687"/><text x="11.2621%" y="479.50"></text></g><g><title>Parse::do_one_block (687 samples, 0.14%)</title><rect x="11.0121%" y="453" width="0.1399%" height="15" fill="rgb(228,72,33)" fg:x="54093" fg:w="687"/><text x="11.2621%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (687 samples, 0.14%)</title><rect x="11.0121%" y="437" width="0.1399%" height="15" fill="rgb(205,214,31)" fg:x="54093" fg:w="687"/><text x="11.2621%" y="447.50"></text></g><g><title>ParseGenerator::generate (689 samples, 0.14%)</title><rect x="11.0119%" y="501" width="0.1403%" height="15" fill="rgb(224,111,15)" fg:x="54092" fg:w="689"/><text x="11.2619%" y="511.50"></text></g><g><title>Parse::Parse (689 samples, 0.14%)</title><rect x="11.0119%" y="485" width="0.1403%" height="15" fill="rgb(253,21,26)" fg:x="54092" fg:w="689"/><text x="11.2619%" y="495.50"></text></g><g><title>Parse::do_call (63 samples, 0.01%)</title><rect x="11.1559%" y="309" width="0.0128%" height="15" fill="rgb(245,139,43)" fg:x="54799" fg:w="63"/><text x="11.4059%" y="319.50"></text></g><g><title>ParseGenerator::generate (81 samples, 0.02%)</title><rect x="11.1544%" y="389" width="0.0165%" height="15" fill="rgb(252,170,7)" fg:x="54792" fg:w="81"/><text x="11.4044%" y="399.50"></text></g><g><title>Parse::Parse (81 samples, 0.02%)</title><rect x="11.1544%" y="373" width="0.0165%" height="15" fill="rgb(231,118,14)" fg:x="54792" fg:w="81"/><text x="11.4044%" y="383.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.02%)</title><rect x="11.1546%" y="357" width="0.0163%" height="15" fill="rgb(238,83,0)" fg:x="54793" fg:w="80"/><text x="11.4046%" y="367.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.02%)</title><rect x="11.1546%" y="341" width="0.0163%" height="15" fill="rgb(221,39,39)" fg:x="54793" fg:w="80"/><text x="11.4046%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (79 samples, 0.02%)</title><rect x="11.1548%" y="325" width="0.0161%" height="15" fill="rgb(222,119,46)" fg:x="54794" fg:w="79"/><text x="11.4048%" y="335.50"></text></g><g><title>Parse::do_call (99 samples, 0.02%)</title><rect x="11.1522%" y="405" width="0.0202%" height="15" fill="rgb(222,165,49)" fg:x="54781" fg:w="99"/><text x="11.4022%" y="415.50"></text></g><g><title>ParseGenerator::generate (101 samples, 0.02%)</title><rect x="11.1522%" y="485" width="0.0206%" height="15" fill="rgb(219,113,52)" fg:x="54781" fg:w="101"/><text x="11.4022%" y="495.50"></text></g><g><title>Parse::Parse (101 samples, 0.02%)</title><rect x="11.1522%" y="469" width="0.0206%" height="15" fill="rgb(214,7,15)" fg:x="54781" fg:w="101"/><text x="11.4022%" y="479.50"></text></g><g><title>Parse::do_all_blocks (101 samples, 0.02%)</title><rect x="11.1522%" y="453" width="0.0206%" height="15" fill="rgb(235,32,4)" fg:x="54781" fg:w="101"/><text x="11.4022%" y="463.50"></text></g><g><title>Parse::do_one_block (101 samples, 0.02%)</title><rect x="11.1522%" y="437" width="0.0206%" height="15" fill="rgb(238,90,54)" fg:x="54781" fg:w="101"/><text x="11.4022%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (101 samples, 0.02%)</title><rect x="11.1522%" y="421" width="0.0206%" height="15" fill="rgb(213,208,19)" fg:x="54781" fg:w="101"/><text x="11.4022%" y="431.50"></text></g><g><title>ParseGenerator::generate (829 samples, 0.17%)</title><rect x="11.0052%" y="597" width="0.1688%" height="15" fill="rgb(233,156,4)" fg:x="54059" fg:w="829"/><text x="11.2552%" y="607.50"></text></g><g><title>Parse::Parse (829 samples, 0.17%)</title><rect x="11.0052%" y="581" width="0.1688%" height="15" fill="rgb(207,194,5)" fg:x="54059" fg:w="829"/><text x="11.2552%" y="591.50"></text></g><g><title>Parse::do_all_blocks (829 samples, 0.17%)</title><rect x="11.0052%" y="565" width="0.1688%" height="15" fill="rgb(206,111,30)" fg:x="54059" fg:w="829"/><text x="11.2552%" y="575.50"></text></g><g><title>Parse::do_one_block (829 samples, 0.17%)</title><rect x="11.0052%" y="549" width="0.1688%" height="15" fill="rgb(243,70,54)" fg:x="54059" fg:w="829"/><text x="11.2552%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (829 samples, 0.17%)</title><rect x="11.0052%" y="533" width="0.1688%" height="15" fill="rgb(242,28,8)" fg:x="54059" fg:w="829"/><text x="11.2552%" y="543.50"></text></g><g><title>Parse::do_call (829 samples, 0.17%)</title><rect x="11.0052%" y="517" width="0.1688%" height="15" fill="rgb(219,106,18)" fg:x="54059" fg:w="829"/><text x="11.2552%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (107 samples, 0.02%)</title><rect x="11.1522%" y="501" width="0.0218%" height="15" fill="rgb(244,222,10)" fg:x="54781" fg:w="107"/><text x="11.4022%" y="511.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="11.1774%" y="309" width="0.0106%" height="15" fill="rgb(236,179,52)" fg:x="54905" fg:w="52"/><text x="11.4274%" y="319.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.01%)</title><rect x="11.1770%" y="389" width="0.0136%" height="15" fill="rgb(213,23,39)" fg:x="54903" fg:w="67"/><text x="11.4270%" y="399.50"></text></g><g><title>Parse::Parse (67 samples, 0.01%)</title><rect x="11.1770%" y="373" width="0.0136%" height="15" fill="rgb(238,48,10)" fg:x="54903" fg:w="67"/><text x="11.4270%" y="383.50"></text></g><g><title>Parse::do_all_blocks (66 samples, 0.01%)</title><rect x="11.1772%" y="357" width="0.0134%" height="15" fill="rgb(251,196,23)" fg:x="54904" fg:w="66"/><text x="11.4272%" y="367.50"></text></g><g><title>Parse::do_one_block (66 samples, 0.01%)</title><rect x="11.1772%" y="341" width="0.0134%" height="15" fill="rgb(250,152,24)" fg:x="54904" fg:w="66"/><text x="11.4272%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (66 samples, 0.01%)</title><rect x="11.1772%" y="325" width="0.0134%" height="15" fill="rgb(209,150,17)" fg:x="54904" fg:w="66"/><text x="11.4272%" y="335.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.02%)</title><rect x="11.1748%" y="485" width="0.0191%" height="15" fill="rgb(234,202,34)" fg:x="54892" fg:w="94"/><text x="11.4248%" y="495.50"></text></g><g><title>Parse::Parse (94 samples, 0.02%)</title><rect x="11.1748%" y="469" width="0.0191%" height="15" fill="rgb(253,148,53)" fg:x="54892" fg:w="94"/><text x="11.4248%" y="479.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.02%)</title><rect x="11.1748%" y="453" width="0.0191%" height="15" fill="rgb(218,129,16)" fg:x="54892" fg:w="94"/><text x="11.4248%" y="463.50"></text></g><g><title>Parse::do_one_block (94 samples, 0.02%)</title><rect x="11.1748%" y="437" width="0.0191%" height="15" fill="rgb(216,85,19)" fg:x="54892" fg:w="94"/><text x="11.4248%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (94 samples, 0.02%)</title><rect x="11.1748%" y="421" width="0.0191%" height="15" fill="rgb(235,228,7)" fg:x="54892" fg:w="94"/><text x="11.4248%" y="431.50"></text></g><g><title>Parse::do_call (93 samples, 0.02%)</title><rect x="11.1750%" y="405" width="0.0189%" height="15" fill="rgb(245,175,0)" fg:x="54893" fg:w="93"/><text x="11.4250%" y="415.50"></text></g><g><title>ParseGenerator::generate (103 samples, 0.02%)</title><rect x="11.1740%" y="581" width="0.0210%" height="15" fill="rgb(208,168,36)" fg:x="54888" fg:w="103"/><text x="11.4240%" y="591.50"></text></g><g><title>Parse::Parse (103 samples, 0.02%)</title><rect x="11.1740%" y="565" width="0.0210%" height="15" fill="rgb(246,171,24)" fg:x="54888" fg:w="103"/><text x="11.4240%" y="575.50"></text></g><g><title>Parse::do_all_blocks (103 samples, 0.02%)</title><rect x="11.1740%" y="549" width="0.0210%" height="15" fill="rgb(215,142,24)" fg:x="54888" fg:w="103"/><text x="11.4240%" y="559.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.02%)</title><rect x="11.1740%" y="533" width="0.0210%" height="15" fill="rgb(250,187,7)" fg:x="54888" fg:w="103"/><text x="11.4240%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.02%)</title><rect x="11.1740%" y="517" width="0.0210%" height="15" fill="rgb(228,66,33)" fg:x="54888" fg:w="103"/><text x="11.4240%" y="527.50"></text></g><g><title>Parse::do_call (103 samples, 0.02%)</title><rect x="11.1740%" y="501" width="0.0210%" height="15" fill="rgb(234,215,21)" fg:x="54888" fg:w="103"/><text x="11.4240%" y="511.50"></text></g><g><title>ParseGenerator::generate (940 samples, 0.19%)</title><rect x="11.0044%" y="693" width="0.1914%" height="15" fill="rgb(222,191,20)" fg:x="54055" fg:w="940"/><text x="11.2544%" y="703.50"></text></g><g><title>Parse::Parse (940 samples, 0.19%)</title><rect x="11.0044%" y="677" width="0.1914%" height="15" fill="rgb(245,79,54)" fg:x="54055" fg:w="940"/><text x="11.2544%" y="687.50"></text></g><g><title>Parse::do_all_blocks (940 samples, 0.19%)</title><rect x="11.0044%" y="661" width="0.1914%" height="15" fill="rgb(240,10,37)" fg:x="54055" fg:w="940"/><text x="11.2544%" y="671.50"></text></g><g><title>Parse::do_one_block (940 samples, 0.19%)</title><rect x="11.0044%" y="645" width="0.1914%" height="15" fill="rgb(214,192,32)" fg:x="54055" fg:w="940"/><text x="11.2544%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (940 samples, 0.19%)</title><rect x="11.0044%" y="629" width="0.1914%" height="15" fill="rgb(209,36,54)" fg:x="54055" fg:w="940"/><text x="11.2544%" y="639.50"></text></g><g><title>Parse::do_call (940 samples, 0.19%)</title><rect x="11.0044%" y="613" width="0.1914%" height="15" fill="rgb(220,10,11)" fg:x="54055" fg:w="940"/><text x="11.2544%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (107 samples, 0.02%)</title><rect x="11.1740%" y="597" width="0.0218%" height="15" fill="rgb(221,106,17)" fg:x="54888" fg:w="107"/><text x="11.4240%" y="607.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.01%)</title><rect x="11.2041%" y="261" width="0.0108%" height="15" fill="rgb(251,142,44)" fg:x="55036" fg:w="53"/><text x="11.4541%" y="271.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="11.2041%" y="245" width="0.0108%" height="15" fill="rgb(238,13,15)" fg:x="55036" fg:w="53"/><text x="11.4541%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.01%)</title><rect x="11.2041%" y="229" width="0.0108%" height="15" fill="rgb(208,107,27)" fg:x="55036" fg:w="53"/><text x="11.4541%" y="239.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="11.2037%" y="293" width="0.0124%" height="15" fill="rgb(205,136,37)" fg:x="55034" fg:w="61"/><text x="11.4537%" y="303.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="11.2037%" y="277" width="0.0124%" height="15" fill="rgb(250,205,27)" fg:x="55034" fg:w="61"/><text x="11.4537%" y="287.50"></text></g><g><title>Parse::do_call (78 samples, 0.02%)</title><rect x="11.2013%" y="309" width="0.0159%" height="15" fill="rgb(210,80,43)" fg:x="55022" fg:w="78"/><text x="11.4513%" y="319.50"></text></g><g><title>Parse::do_all_blocks (100 samples, 0.02%)</title><rect x="11.2010%" y="357" width="0.0204%" height="15" fill="rgb(247,160,36)" fg:x="55021" fg:w="100"/><text x="11.4510%" y="367.50"></text></g><g><title>Parse::do_one_block (100 samples, 0.02%)</title><rect x="11.2010%" y="341" width="0.0204%" height="15" fill="rgb(234,13,49)" fg:x="55021" fg:w="100"/><text x="11.4510%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (99 samples, 0.02%)</title><rect x="11.2013%" y="325" width="0.0202%" height="15" fill="rgb(234,122,0)" fg:x="55022" fg:w="99"/><text x="11.4513%" y="335.50"></text></g><g><title>ParseGenerator::generate (103 samples, 0.02%)</title><rect x="11.2006%" y="389" width="0.0210%" height="15" fill="rgb(207,146,38)" fg:x="55019" fg:w="103"/><text x="11.4506%" y="399.50"></text></g><g><title>Parse::Parse (103 samples, 0.02%)</title><rect x="11.2006%" y="373" width="0.0210%" height="15" fill="rgb(207,177,25)" fg:x="55019" fg:w="103"/><text x="11.4506%" y="383.50"></text></g><g><title>Parse::do_call (146 samples, 0.03%)</title><rect x="11.1976%" y="405" width="0.0297%" height="15" fill="rgb(211,178,42)" fg:x="55004" fg:w="146"/><text x="11.4476%" y="415.50"></text></g><g><title>ParseGenerator::generate (153 samples, 0.03%)</title><rect x="11.1976%" y="485" width="0.0311%" height="15" fill="rgb(230,69,54)" fg:x="55004" fg:w="153"/><text x="11.4476%" y="495.50"></text></g><g><title>Parse::Parse (153 samples, 0.03%)</title><rect x="11.1976%" y="469" width="0.0311%" height="15" fill="rgb(214,135,41)" fg:x="55004" fg:w="153"/><text x="11.4476%" y="479.50"></text></g><g><title>Parse::do_all_blocks (153 samples, 0.03%)</title><rect x="11.1976%" y="453" width="0.0311%" height="15" fill="rgb(237,67,25)" fg:x="55004" fg:w="153"/><text x="11.4476%" y="463.50"></text></g><g><title>Parse::do_one_block (153 samples, 0.03%)</title><rect x="11.1976%" y="437" width="0.0311%" height="15" fill="rgb(222,189,50)" fg:x="55004" fg:w="153"/><text x="11.4476%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (153 samples, 0.03%)</title><rect x="11.1976%" y="421" width="0.0311%" height="15" fill="rgb(245,148,34)" fg:x="55004" fg:w="153"/><text x="11.4476%" y="431.50"></text></g><g><title>Parse::do_call (172 samples, 0.04%)</title><rect x="11.1958%" y="501" width="0.0350%" height="15" fill="rgb(222,29,6)" fg:x="54995" fg:w="172"/><text x="11.4458%" y="511.50"></text></g><g><title>ParseGenerator::generate (173 samples, 0.04%)</title><rect x="11.1958%" y="581" width="0.0352%" height="15" fill="rgb(221,189,43)" fg:x="54995" fg:w="173"/><text x="11.4458%" y="591.50"></text></g><g><title>Parse::Parse (173 samples, 0.04%)</title><rect x="11.1958%" y="565" width="0.0352%" height="15" fill="rgb(207,36,27)" fg:x="54995" fg:w="173"/><text x="11.4458%" y="575.50"></text></g><g><title>Parse::do_all_blocks (173 samples, 0.04%)</title><rect x="11.1958%" y="549" width="0.0352%" height="15" fill="rgb(217,90,24)" fg:x="54995" fg:w="173"/><text x="11.4458%" y="559.50"></text></g><g><title>Parse::do_one_block (173 samples, 0.04%)</title><rect x="11.1958%" y="533" width="0.0352%" height="15" fill="rgb(224,66,35)" fg:x="54995" fg:w="173"/><text x="11.4458%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (173 samples, 0.04%)</title><rect x="11.1958%" y="517" width="0.0352%" height="15" fill="rgb(221,13,50)" fg:x="54995" fg:w="173"/><text x="11.4458%" y="527.50"></text></g><g><title>ParseGenerator::generate (197 samples, 0.04%)</title><rect x="11.1958%" y="677" width="0.0401%" height="15" fill="rgb(236,68,49)" fg:x="54995" fg:w="197"/><text x="11.4458%" y="687.50"></text></g><g><title>Parse::Parse (197 samples, 0.04%)</title><rect x="11.1958%" y="661" width="0.0401%" height="15" fill="rgb(229,146,28)" fg:x="54995" fg:w="197"/><text x="11.4458%" y="671.50"></text></g><g><title>Parse::do_all_blocks (197 samples, 0.04%)</title><rect x="11.1958%" y="645" width="0.0401%" height="15" fill="rgb(225,31,38)" fg:x="54995" fg:w="197"/><text x="11.4458%" y="655.50"></text></g><g><title>Parse::do_one_block (197 samples, 0.04%)</title><rect x="11.1958%" y="629" width="0.0401%" height="15" fill="rgb(250,208,3)" fg:x="54995" fg:w="197"/><text x="11.4458%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (197 samples, 0.04%)</title><rect x="11.1958%" y="613" width="0.0401%" height="15" fill="rgb(246,54,23)" fg:x="54995" fg:w="197"/><text x="11.4458%" y="623.50"></text></g><g><title>Parse::do_call (197 samples, 0.04%)</title><rect x="11.1958%" y="597" width="0.0401%" height="15" fill="rgb(243,76,11)" fg:x="54995" fg:w="197"/><text x="11.4458%" y="607.50"></text></g><g><title>ParseGenerator::generate (1,169 samples, 0.24%)</title><rect x="11.0044%" y="789" width="0.2380%" height="15" fill="rgb(245,21,50)" fg:x="54055" fg:w="1169"/><text x="11.2544%" y="799.50"></text></g><g><title>Parse::Parse (1,169 samples, 0.24%)</title><rect x="11.0044%" y="773" width="0.2380%" height="15" fill="rgb(228,9,43)" fg:x="54055" fg:w="1169"/><text x="11.2544%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,169 samples, 0.24%)</title><rect x="11.0044%" y="757" width="0.2380%" height="15" fill="rgb(208,100,47)" fg:x="54055" fg:w="1169"/><text x="11.2544%" y="767.50"></text></g><g><title>Parse::do_one_block (1,169 samples, 0.24%)</title><rect x="11.0044%" y="741" width="0.2380%" height="15" fill="rgb(232,26,8)" fg:x="54055" fg:w="1169"/><text x="11.2544%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (1,169 samples, 0.24%)</title><rect x="11.0044%" y="725" width="0.2380%" height="15" fill="rgb(216,166,38)" fg:x="54055" fg:w="1169"/><text x="11.2544%" y="735.50"></text></g><g><title>Parse::do_call (1,169 samples, 0.24%)</title><rect x="11.0044%" y="709" width="0.2380%" height="15" fill="rgb(251,202,51)" fg:x="54055" fg:w="1169"/><text x="11.2544%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (229 samples, 0.05%)</title><rect x="11.1958%" y="693" width="0.0466%" height="15" fill="rgb(254,216,34)" fg:x="54995" fg:w="229"/><text x="11.4458%" y="703.50"></text></g><g><title>Compile::Compile (37,268 samples, 7.59%)</title><rect x="3.6556%" y="805" width="7.5869%" height="15" fill="rgb(251,32,27)" fg:x="17957" fg:w="37268"/><text x="3.9056%" y="815.50">Compile::C..</text></g><g><title>Compile::final_graph_reshaping_impl (115 samples, 0.02%)</title><rect x="11.2713%" y="757" width="0.0234%" height="15" fill="rgb(208,127,28)" fg:x="55366" fg:w="115"/><text x="11.5213%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping (262 samples, 0.05%)</title><rect x="11.2442%" y="789" width="0.0533%" height="15" fill="rgb(224,137,22)" fg:x="55233" fg:w="262"/><text x="11.4942%" y="799.50"></text></g><g><title>Compile::final_graph_reshaping_walk (259 samples, 0.05%)</title><rect x="11.2448%" y="773" width="0.0527%" height="15" fill="rgb(254,70,32)" fg:x="55236" fg:w="259"/><text x="11.4948%" y="783.50"></text></g><g><title>Compile::remove_speculative_types (229 samples, 0.05%)</title><rect x="11.3028%" y="789" width="0.0466%" height="15" fill="rgb(229,75,37)" fg:x="55521" fg:w="229"/><text x="11.5528%" y="799.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (75 samples, 0.02%)</title><rect x="11.3824%" y="757" width="0.0153%" height="15" fill="rgb(252,64,23)" fg:x="55912" fg:w="75"/><text x="11.6324%" y="767.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (107 samples, 0.02%)</title><rect x="11.3979%" y="757" width="0.0218%" height="15" fill="rgb(232,162,48)" fg:x="55988" fg:w="107"/><text x="11.6479%" y="767.50"></text></g><g><title>ConnectionGraph::find_inst_mem (64 samples, 0.01%)</title><rect x="11.4238%" y="741" width="0.0130%" height="15" fill="rgb(246,160,12)" fg:x="56115" fg:w="64"/><text x="11.6738%" y="751.50"></text></g><g><title>ConnectionGraph::split_unique_types (94 samples, 0.02%)</title><rect x="11.4215%" y="757" width="0.0191%" height="15" fill="rgb(247,166,0)" fg:x="56104" fg:w="94"/><text x="11.6715%" y="767.50"></text></g><g><title>ConnectionGraph::compute_escape (452 samples, 0.09%)</title><rect x="11.3501%" y="773" width="0.0920%" height="15" fill="rgb(249,219,21)" fg:x="55753" fg:w="452"/><text x="11.6001%" y="783.50"></text></g><g><title>ConnectionGraph::do_analysis (454 samples, 0.09%)</title><rect x="11.3499%" y="789" width="0.0924%" height="15" fill="rgb(205,209,3)" fg:x="55752" fg:w="454"/><text x="11.5999%" y="799.50"></text></g><g><title>PhaseCCP::analyze (669 samples, 0.14%)</title><rect x="11.4429%" y="789" width="0.1362%" height="15" fill="rgb(243,44,1)" fg:x="56209" fg:w="669"/><text x="11.6929%" y="799.50"></text></g><g><title>PhaseCCP::transform_once (98 samples, 0.02%)</title><rect x="11.5956%" y="757" width="0.0200%" height="15" fill="rgb(206,159,16)" fg:x="56959" fg:w="98"/><text x="11.8456%" y="767.50"></text></g><g><title>PhaseCCP::do_transform (181 samples, 0.04%)</title><rect x="11.5791%" y="789" width="0.0368%" height="15" fill="rgb(244,77,30)" fg:x="56878" fg:w="181"/><text x="11.8291%" y="799.50"></text></g><g><title>PhaseCCP::transform (181 samples, 0.04%)</title><rect x="11.5791%" y="773" width="0.0368%" height="15" fill="rgb(218,69,12)" fg:x="56878" fg:w="181"/><text x="11.8291%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (65 samples, 0.01%)</title><rect x="11.6414%" y="693" width="0.0132%" height="15" fill="rgb(212,87,7)" fg:x="57184" fg:w="65"/><text x="11.8914%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (76 samples, 0.02%)</title><rect x="11.6410%" y="709" width="0.0155%" height="15" fill="rgb(245,114,25)" fg:x="57182" fg:w="76"/><text x="11.8910%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (103 samples, 0.02%)</title><rect x="11.6404%" y="725" width="0.0210%" height="15" fill="rgb(210,61,42)" fg:x="57179" fg:w="103"/><text x="11.8904%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (54 samples, 0.01%)</title><rect x="11.6613%" y="725" width="0.0110%" height="15" fill="rgb(211,52,33)" fg:x="57282" fg:w="54"/><text x="11.9113%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (163 samples, 0.03%)</title><rect x="11.6393%" y="741" width="0.0332%" height="15" fill="rgb(234,58,33)" fg:x="57174" fg:w="163"/><text x="11.8893%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (219 samples, 0.04%)</title><rect x="11.6387%" y="757" width="0.0446%" height="15" fill="rgb(220,115,36)" fg:x="57171" fg:w="219"/><text x="11.8887%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (250 samples, 0.05%)</title><rect x="11.6367%" y="773" width="0.0509%" height="15" fill="rgb(243,153,54)" fg:x="57161" fg:w="250"/><text x="11.8867%" y="783.50"></text></g><g><title>IdealLoopTree::loop_predication (51 samples, 0.01%)</title><rect x="11.6884%" y="757" width="0.0104%" height="15" fill="rgb(251,47,18)" fg:x="57415" fg:w="51"/><text x="11.9384%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (63 samples, 0.01%)</title><rect x="11.7047%" y="741" width="0.0128%" height="15" fill="rgb(242,102,42)" fg:x="57495" fg:w="63"/><text x="11.9547%" y="751.50"></text></g><g><title>IdealLoopTree::loop_predication (203 samples, 0.04%)</title><rect x="11.6876%" y="773" width="0.0413%" height="15" fill="rgb(234,31,38)" fg:x="57411" fg:w="203"/><text x="11.9376%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (148 samples, 0.03%)</title><rect x="11.6988%" y="757" width="0.0301%" height="15" fill="rgb(221,117,51)" fg:x="57466" fg:w="148"/><text x="11.9488%" y="767.50"></text></g><g><title>NTarjan::DFS (272 samples, 0.06%)</title><rect x="11.8830%" y="757" width="0.0554%" height="15" fill="rgb(212,20,18)" fg:x="58371" fg:w="272"/><text x="12.1330%" y="767.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,041 samples, 0.21%)</title><rect x="11.7385%" y="773" width="0.2119%" height="15" fill="rgb(245,133,36)" fg:x="57661" fg:w="1041"/><text x="11.9885%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (68 samples, 0.01%)</title><rect x="12.1986%" y="725" width="0.0138%" height="15" fill="rgb(212,6,19)" fg:x="59921" fg:w="68"/><text x="12.4486%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (123 samples, 0.03%)</title><rect x="12.2124%" y="725" width="0.0250%" height="15" fill="rgb(218,1,36)" fg:x="59989" fg:w="123"/><text x="12.4624%" y="735.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (359 samples, 0.07%)</title><rect x="12.1646%" y="757" width="0.0731%" height="15" fill="rgb(246,84,54)" fg:x="59754" fg:w="359"/><text x="12.4146%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (322 samples, 0.07%)</title><rect x="12.1721%" y="741" width="0.0656%" height="15" fill="rgb(242,110,6)" fg:x="59791" fg:w="322"/><text x="12.4221%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,485 samples, 0.30%)</title><rect x="11.9504%" y="773" width="0.3023%" height="15" fill="rgb(214,47,5)" fg:x="58702" fg:w="1485"/><text x="12.2004%" y="783.50"></text></g><g><title>Node::unique_ctrl_out (65 samples, 0.01%)</title><rect x="12.5996%" y="741" width="0.0132%" height="15" fill="rgb(218,159,25)" fg:x="61891" fg:w="65"/><text x="12.8496%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (86 samples, 0.02%)</title><rect x="12.6135%" y="741" width="0.0175%" height="15" fill="rgb(215,211,28)" fg:x="61959" fg:w="86"/><text x="12.8635%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (230 samples, 0.05%)</title><rect x="12.7153%" y="709" width="0.0468%" height="15" fill="rgb(238,59,32)" fg:x="62459" fg:w="230"/><text x="12.9653%" y="719.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (124 samples, 0.03%)</title><rect x="12.7368%" y="693" width="0.0252%" height="15" fill="rgb(226,82,3)" fg:x="62565" fg:w="124"/><text x="12.9868%" y="703.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (339 samples, 0.07%)</title><rect x="12.6990%" y="725" width="0.0690%" height="15" fill="rgb(240,164,32)" fg:x="62379" fg:w="339"/><text x="12.9490%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (153 samples, 0.03%)</title><rect x="12.7682%" y="725" width="0.0311%" height="15" fill="rgb(232,46,7)" fg:x="62719" fg:w="153"/><text x="13.0182%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (375 samples, 0.08%)</title><rect x="13.0571%" y="709" width="0.0763%" height="15" fill="rgb(229,129,53)" fg:x="64138" fg:w="375"/><text x="13.3071%" y="719.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,623 samples, 0.33%)</title><rect x="12.8036%" y="725" width="0.3304%" height="15" fill="rgb(234,188,29)" fg:x="62893" fg:w="1623"/><text x="13.0536%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,481 samples, 0.51%)</title><rect x="12.6310%" y="741" width="0.5051%" height="15" fill="rgb(246,141,4)" fg:x="62045" fg:w="2481"/><text x="12.8810%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (3,302 samples, 0.67%)</title><rect x="12.4775%" y="757" width="0.6722%" height="15" fill="rgb(229,23,39)" fg:x="61291" fg:w="3302"/><text x="12.7275%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (4,434 samples, 0.90%)</title><rect x="12.2527%" y="773" width="0.9027%" height="15" fill="rgb(206,12,3)" fg:x="60187" fg:w="4434"/><text x="12.5027%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (201 samples, 0.04%)</title><rect x="13.2720%" y="757" width="0.0409%" height="15" fill="rgb(252,226,20)" fg:x="65194" fg:w="201"/><text x="13.5220%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (781 samples, 0.16%)</title><rect x="13.1566%" y="773" width="0.1590%" height="15" fill="rgb(216,123,35)" fg:x="64627" fg:w="781"/><text x="13.4066%" y="783.50"></text></g><g><title>PhaseIdealLoop::do_split_if (80 samples, 0.02%)</title><rect x="13.4031%" y="757" width="0.0163%" height="15" fill="rgb(212,68,40)" fg:x="65838" fg:w="80"/><text x="13.6531%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (253 samples, 0.05%)</title><rect x="13.4202%" y="757" width="0.0515%" height="15" fill="rgb(254,125,32)" fg:x="65922" fg:w="253"/><text x="13.6702%" y="767.50"></text></g><g><title>ConstraintCastNode::dominating_cast (50 samples, 0.01%)</title><rect x="13.4946%" y="741" width="0.0102%" height="15" fill="rgb(253,97,22)" fg:x="66287" fg:w="50"/><text x="13.7446%" y="751.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (89 samples, 0.02%)</title><rect x="13.5176%" y="741" width="0.0181%" height="15" fill="rgb(241,101,14)" fg:x="66400" fg:w="89"/><text x="13.7676%" y="751.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (155 samples, 0.03%)</title><rect x="13.5361%" y="741" width="0.0316%" height="15" fill="rgb(238,103,29)" fg:x="66491" fg:w="155"/><text x="13.7861%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (59 samples, 0.01%)</title><rect x="13.5898%" y="725" width="0.0120%" height="15" fill="rgb(233,195,47)" fg:x="66755" fg:w="59"/><text x="13.8398%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (189 samples, 0.04%)</title><rect x="13.5676%" y="741" width="0.0385%" height="15" fill="rgb(246,218,30)" fg:x="66646" fg:w="189"/><text x="13.8176%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (696 samples, 0.14%)</title><rect x="13.4718%" y="757" width="0.1417%" height="15" fill="rgb(219,145,47)" fg:x="66175" fg:w="696"/><text x="13.7218%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,430 samples, 0.29%)</title><rect x="13.3231%" y="773" width="0.2911%" height="15" fill="rgb(243,12,26)" fg:x="65445" fg:w="1430"/><text x="13.5731%" y="783.50"></text></g><g><title>LoadNode::Ideal (70 samples, 0.01%)</title><rect x="13.6937%" y="741" width="0.0143%" height="15" fill="rgb(214,87,16)" fg:x="67265" fg:w="70"/><text x="13.9437%" y="751.50"></text></g><g><title>NodeHash::hash_find_insert (116 samples, 0.02%)</title><rect x="13.7181%" y="741" width="0.0236%" height="15" fill="rgb(208,99,42)" fg:x="67385" fg:w="116"/><text x="13.9681%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (55 samples, 0.01%)</title><rect x="13.7557%" y="725" width="0.0112%" height="15" fill="rgb(253,99,2)" fg:x="67570" fg:w="55"/><text x="14.0057%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (96 samples, 0.02%)</title><rect x="13.7511%" y="741" width="0.0195%" height="15" fill="rgb(220,168,23)" fg:x="67547" fg:w="96"/><text x="14.0011%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (113 samples, 0.02%)</title><rect x="13.8138%" y="725" width="0.0230%" height="15" fill="rgb(242,38,24)" fg:x="67855" fg:w="113"/><text x="14.0638%" y="735.50"></text></g><g><title>RegionNode::Ideal (203 samples, 0.04%)</title><rect x="13.7958%" y="741" width="0.0413%" height="15" fill="rgb(225,182,9)" fg:x="67767" fg:w="203"/><text x="14.0458%" y="751.50"></text></g><g><title>PhaseIterGVN::transform_old (1,148 samples, 0.23%)</title><rect x="13.6220%" y="757" width="0.2337%" height="15" fill="rgb(243,178,37)" fg:x="66913" fg:w="1148"/><text x="13.8720%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (1,195 samples, 0.24%)</title><rect x="13.6147%" y="773" width="0.2433%" height="15" fill="rgb(232,139,19)" fg:x="66877" fg:w="1195"/><text x="13.8647%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (11,096 samples, 2.26%)</title><rect x="11.6210%" y="789" width="2.2589%" height="15" fill="rgb(225,201,24)" fg:x="57084" fg:w="11096"/><text x="11.8710%" y="799.50">P..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (117 samples, 0.02%)</title><rect x="13.8799%" y="789" width="0.0238%" height="15" fill="rgb(221,47,46)" fg:x="68180" fg:w="117"/><text x="14.1299%" y="799.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (65 samples, 0.01%)</title><rect x="13.8905%" y="773" width="0.0132%" height="15" fill="rgb(249,23,13)" fg:x="68232" fg:w="65"/><text x="14.1405%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (66 samples, 0.01%)</title><rect x="13.9935%" y="725" width="0.0134%" height="15" fill="rgb(219,9,5)" fg:x="68738" fg:w="66"/><text x="14.2435%" y="735.50"></text></g><g><title>Unique_Node_List::remove (54 samples, 0.01%)</title><rect x="13.9960%" y="709" width="0.0110%" height="15" fill="rgb(254,171,16)" fg:x="68750" fg:w="54"/><text x="14.2460%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (76 samples, 0.02%)</title><rect x="13.9919%" y="741" width="0.0155%" height="15" fill="rgb(230,171,20)" fg:x="68730" fg:w="76"/><text x="14.2419%" y="751.50"></text></g><g><title>IfNode::Ideal (261 samples, 0.05%)</title><rect x="13.9673%" y="757" width="0.0531%" height="15" fill="rgb(210,71,41)" fg:x="68609" fg:w="261"/><text x="14.2173%" y="767.50"></text></g><g><title>split_if (53 samples, 0.01%)</title><rect x="14.0096%" y="741" width="0.0108%" height="15" fill="rgb(206,173,20)" fg:x="68817" fg:w="53"/><text x="14.2596%" y="751.50"></text></g><g><title>MemNode::Ideal_common (67 samples, 0.01%)</title><rect x="14.0351%" y="741" width="0.0136%" height="15" fill="rgb(233,88,34)" fg:x="68942" fg:w="67"/><text x="14.2851%" y="751.50"></text></g><g><title>LoadNode::Ideal (159 samples, 0.03%)</title><rect x="14.0273%" y="757" width="0.0324%" height="15" fill="rgb(223,209,46)" fg:x="68904" fg:w="159"/><text x="14.2773%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (152 samples, 0.03%)</title><rect x="14.0870%" y="757" width="0.0309%" height="15" fill="rgb(250,43,18)" fg:x="69197" fg:w="152"/><text x="14.3370%" y="767.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (50 samples, 0.01%)</title><rect x="14.1179%" y="757" width="0.0102%" height="15" fill="rgb(208,13,10)" fg:x="69349" fg:w="50"/><text x="14.3679%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (72 samples, 0.01%)</title><rect x="14.1446%" y="741" width="0.0147%" height="15" fill="rgb(212,200,36)" fg:x="69480" fg:w="72"/><text x="14.3946%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (169 samples, 0.03%)</title><rect x="14.1281%" y="757" width="0.0344%" height="15" fill="rgb(225,90,30)" fg:x="69399" fg:w="169"/><text x="14.3781%" y="767.50"></text></g><g><title>PhiNode::Ideal (124 samples, 0.03%)</title><rect x="14.1631%" y="757" width="0.0252%" height="15" fill="rgb(236,182,39)" fg:x="69571" fg:w="124"/><text x="14.4131%" y="767.50"></text></g><g><title>Unique_Node_List::remove (64 samples, 0.01%)</title><rect x="14.2285%" y="709" width="0.0130%" height="15" fill="rgb(212,144,35)" fg:x="69892" fg:w="64"/><text x="14.4785%" y="719.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (79 samples, 0.02%)</title><rect x="14.2256%" y="725" width="0.0161%" height="15" fill="rgb(228,63,44)" fg:x="69878" fg:w="79"/><text x="14.4756%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (101 samples, 0.02%)</title><rect x="14.2225%" y="741" width="0.0206%" height="15" fill="rgb(228,109,6)" fg:x="69863" fg:w="101"/><text x="14.4725%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (79 samples, 0.02%)</title><rect x="14.2478%" y="741" width="0.0161%" height="15" fill="rgb(238,117,24)" fg:x="69987" fg:w="79"/><text x="14.4978%" y="751.50"></text></g><g><title>RegionNode::Ideal (276 samples, 0.06%)</title><rect x="14.2085%" y="757" width="0.0562%" height="15" fill="rgb(242,26,26)" fg:x="69794" fg:w="276"/><text x="14.4585%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (53 samples, 0.01%)</title><rect x="14.2679%" y="469" width="0.0108%" height="15" fill="rgb(221,92,48)" fg:x="70086" fg:w="53"/><text x="14.5179%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (57 samples, 0.01%)</title><rect x="14.2679%" y="485" width="0.0116%" height="15" fill="rgb(209,209,32)" fg:x="70086" fg:w="57"/><text x="14.5179%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (71 samples, 0.01%)</title><rect x="14.2677%" y="501" width="0.0145%" height="15" fill="rgb(221,70,22)" fg:x="70085" fg:w="71"/><text x="14.5177%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (78 samples, 0.02%)</title><rect x="14.2677%" y="517" width="0.0159%" height="15" fill="rgb(248,145,5)" fg:x="70085" fg:w="78"/><text x="14.5177%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (90 samples, 0.02%)</title><rect x="14.2675%" y="533" width="0.0183%" height="15" fill="rgb(226,116,26)" fg:x="70084" fg:w="90"/><text x="14.5175%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (103 samples, 0.02%)</title><rect x="14.2675%" y="549" width="0.0210%" height="15" fill="rgb(244,5,17)" fg:x="70084" fg:w="103"/><text x="14.5175%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (109 samples, 0.02%)</title><rect x="14.2675%" y="565" width="0.0222%" height="15" fill="rgb(252,159,33)" fg:x="70084" fg:w="109"/><text x="14.5175%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (117 samples, 0.02%)</title><rect x="14.2675%" y="581" width="0.0238%" height="15" fill="rgb(206,71,0)" fg:x="70084" fg:w="117"/><text x="14.5175%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (124 samples, 0.03%)</title><rect x="14.2675%" y="597" width="0.0252%" height="15" fill="rgb(233,118,54)" fg:x="70084" fg:w="124"/><text x="14.5175%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (136 samples, 0.03%)</title><rect x="14.2675%" y="613" width="0.0277%" height="15" fill="rgb(234,83,48)" fg:x="70084" fg:w="136"/><text x="14.5175%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (143 samples, 0.03%)</title><rect x="14.2675%" y="629" width="0.0291%" height="15" fill="rgb(228,3,54)" fg:x="70084" fg:w="143"/><text x="14.5175%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (153 samples, 0.03%)</title><rect x="14.2675%" y="645" width="0.0311%" height="15" fill="rgb(226,155,13)" fg:x="70084" fg:w="153"/><text x="14.5175%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (159 samples, 0.03%)</title><rect x="14.2675%" y="661" width="0.0324%" height="15" fill="rgb(241,28,37)" fg:x="70084" fg:w="159"/><text x="14.5175%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (176 samples, 0.04%)</title><rect x="14.2675%" y="677" width="0.0358%" height="15" fill="rgb(233,93,10)" fg:x="70084" fg:w="176"/><text x="14.5175%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (207 samples, 0.04%)</title><rect x="14.2675%" y="693" width="0.0421%" height="15" fill="rgb(225,113,19)" fg:x="70084" fg:w="207"/><text x="14.5175%" y="703.50"></text></g><g><title>InitializeNode::can_capture_store (221 samples, 0.04%)</title><rect x="14.2673%" y="741" width="0.0450%" height="15" fill="rgb(241,2,18)" fg:x="70083" fg:w="221"/><text x="14.5173%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (221 samples, 0.04%)</title><rect x="14.2673%" y="725" width="0.0450%" height="15" fill="rgb(228,207,21)" fg:x="70083" fg:w="221"/><text x="14.5173%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (221 samples, 0.04%)</title><rect x="14.2673%" y="709" width="0.0450%" height="15" fill="rgb(213,211,35)" fg:x="70083" fg:w="221"/><text x="14.5173%" y="719.50"></text></g><g><title>StoreNode::Ideal (262 samples, 0.05%)</title><rect x="14.2671%" y="757" width="0.0533%" height="15" fill="rgb(209,83,10)" fg:x="70082" fg:w="262"/><text x="14.5171%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (2,038 samples, 0.41%)</title><rect x="13.9168%" y="773" width="0.4149%" height="15" fill="rgb(209,164,1)" fg:x="68361" fg:w="2038"/><text x="14.1668%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (2,122 samples, 0.43%)</title><rect x="13.9037%" y="789" width="0.4320%" height="15" fill="rgb(213,184,43)" fg:x="68297" fg:w="2122"/><text x="14.1537%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (235 samples, 0.05%)</title><rect x="14.3461%" y="757" width="0.0478%" height="15" fill="rgb(231,61,34)" fg:x="70470" fg:w="235"/><text x="14.5961%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (250 samples, 0.05%)</title><rect x="14.3439%" y="773" width="0.0509%" height="15" fill="rgb(235,75,3)" fg:x="70459" fg:w="250"/><text x="14.5939%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (75 samples, 0.02%)</title><rect x="14.3958%" y="773" width="0.0153%" height="15" fill="rgb(220,106,47)" fg:x="70714" fg:w="75"/><text x="14.6458%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (375 samples, 0.08%)</title><rect x="14.3423%" y="789" width="0.0763%" height="15" fill="rgb(210,196,33)" fg:x="70451" fg:w="375"/><text x="14.5923%" y="799.50"></text></g><g><title>Compile::identify_useful_nodes (59 samples, 0.01%)</title><rect x="14.4239%" y="757" width="0.0120%" height="15" fill="rgb(229,154,42)" fg:x="70852" fg:w="59"/><text x="14.6739%" y="767.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (121 samples, 0.02%)</title><rect x="14.4214%" y="773" width="0.0246%" height="15" fill="rgb(228,114,26)" fg:x="70840" fg:w="121"/><text x="14.6714%" y="783.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (136 samples, 0.03%)</title><rect x="14.4186%" y="789" width="0.0277%" height="15" fill="rgb(208,144,1)" fg:x="70826" fg:w="136"/><text x="14.6686%" y="799.50"></text></g><g><title>Compile::Optimize (15,742 samples, 3.20%)</title><rect x="11.2426%" y="805" width="3.2047%" height="15" fill="rgb(239,112,37)" fg:x="55225" fg:w="15742"/><text x="11.4926%" y="815.50">Com..</text></g><g><title>Parse::do_one_block (124 samples, 0.03%)</title><rect x="14.4501%" y="693" width="0.0252%" height="15" fill="rgb(210,96,50)" fg:x="70981" fg:w="124"/><text x="14.7001%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (110 samples, 0.02%)</title><rect x="14.4530%" y="677" width="0.0224%" height="15" fill="rgb(222,178,2)" fg:x="70995" fg:w="110"/><text x="14.7030%" y="687.50"></text></g><g><title>Parse::do_all_blocks (128 samples, 0.03%)</title><rect x="14.4501%" y="709" width="0.0261%" height="15" fill="rgb(226,74,18)" fg:x="70981" fg:w="128"/><text x="14.7001%" y="719.50"></text></g><g><title>ParseGenerator::generate (133 samples, 0.03%)</title><rect x="14.4501%" y="741" width="0.0271%" height="15" fill="rgb(225,67,54)" fg:x="70981" fg:w="133"/><text x="14.7001%" y="751.50"></text></g><g><title>Parse::Parse (133 samples, 0.03%)</title><rect x="14.4501%" y="725" width="0.0271%" height="15" fill="rgb(251,92,32)" fg:x="70981" fg:w="133"/><text x="14.7001%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (162 samples, 0.03%)</title><rect x="14.4479%" y="805" width="0.0330%" height="15" fill="rgb(228,149,22)" fg:x="70970" fg:w="162"/><text x="14.6979%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (162 samples, 0.03%)</title><rect x="14.4479%" y="789" width="0.0330%" height="15" fill="rgb(243,54,13)" fg:x="70970" fg:w="162"/><text x="14.6979%" y="799.50"></text></g><g><title>C2Compiler::compile_method (162 samples, 0.03%)</title><rect x="14.4479%" y="773" width="0.0330%" height="15" fill="rgb(243,180,28)" fg:x="70970" fg:w="162"/><text x="14.6979%" y="783.50"></text></g><g><title>Compile::Compile (162 samples, 0.03%)</title><rect x="14.4479%" y="757" width="0.0330%" height="15" fill="rgb(208,167,24)" fg:x="70970" fg:w="162"/><text x="14.6979%" y="767.50"></text></g><g><title>ciTypeFlow::df_flow_types (75 samples, 0.02%)</title><rect x="14.4809%" y="677" width="0.0153%" height="15" fill="rgb(245,73,45)" fg:x="71132" fg:w="75"/><text x="14.7309%" y="687.50"></text></g><g><title>ciTypeFlow::flow_block (75 samples, 0.02%)</title><rect x="14.4809%" y="661" width="0.0153%" height="15" fill="rgb(237,203,48)" fg:x="71132" fg:w="75"/><text x="14.7309%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (75 samples, 0.02%)</title><rect x="14.4809%" y="645" width="0.0153%" height="15" fill="rgb(211,197,16)" fg:x="71132" fg:w="75"/><text x="14.7309%" y="655.50"></text></g><g><title>CallGenerator::for_inline (77 samples, 0.02%)</title><rect x="14.4809%" y="757" width="0.0157%" height="15" fill="rgb(243,99,51)" fg:x="71132" fg:w="77"/><text x="14.7309%" y="767.50"></text></g><g><title>InlineTree::check_can_parse (77 samples, 0.02%)</title><rect x="14.4809%" y="741" width="0.0157%" height="15" fill="rgb(215,123,29)" fg:x="71132" fg:w="77"/><text x="14.7309%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (77 samples, 0.02%)</title><rect x="14.4809%" y="725" width="0.0157%" height="15" fill="rgb(239,186,37)" fg:x="71132" fg:w="77"/><text x="14.7309%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (77 samples, 0.02%)</title><rect x="14.4809%" y="709" width="0.0157%" height="15" fill="rgb(252,136,39)" fg:x="71132" fg:w="77"/><text x="14.7309%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (77 samples, 0.02%)</title><rect x="14.4809%" y="693" width="0.0157%" height="15" fill="rgb(223,213,32)" fg:x="71132" fg:w="77"/><text x="14.7309%" y="703.50"></text></g><g><title>InlineTree::ok_to_inline (61 samples, 0.01%)</title><rect x="14.5092%" y="645" width="0.0124%" height="15" fill="rgb(233,115,5)" fg:x="71271" fg:w="61"/><text x="14.7592%" y="655.50"></text></g><g><title>Compile::call_generator (77 samples, 0.02%)</title><rect x="14.5074%" y="661" width="0.0157%" height="15" fill="rgb(207,226,44)" fg:x="71262" fg:w="77"/><text x="14.7574%" y="671.50"></text></g><g><title>Parse::do_one_block (116 samples, 0.02%)</title><rect x="14.5432%" y="613" width="0.0236%" height="15" fill="rgb(208,126,0)" fg:x="71438" fg:w="116"/><text x="14.7932%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (104 samples, 0.02%)</title><rect x="14.5456%" y="597" width="0.0212%" height="15" fill="rgb(244,66,21)" fg:x="71450" fg:w="104"/><text x="14.7956%" y="607.50"></text></g><g><title>Parse::do_all_blocks (128 samples, 0.03%)</title><rect x="14.5428%" y="629" width="0.0261%" height="15" fill="rgb(222,97,12)" fg:x="71436" fg:w="128"/><text x="14.7928%" y="639.50"></text></g><g><title>ParseGenerator::generate (209 samples, 0.04%)</title><rect x="14.5350%" y="661" width="0.0425%" height="15" fill="rgb(219,213,19)" fg:x="71398" fg:w="209"/><text x="14.7850%" y="671.50"></text></g><g><title>Parse::Parse (209 samples, 0.04%)</title><rect x="14.5350%" y="645" width="0.0425%" height="15" fill="rgb(252,169,30)" fg:x="71398" fg:w="209"/><text x="14.7850%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (91 samples, 0.02%)</title><rect x="14.5776%" y="661" width="0.0185%" height="15" fill="rgb(206,32,51)" fg:x="71607" fg:w="91"/><text x="14.8276%" y="671.50"></text></g><g><title>Parse::do_call (456 samples, 0.09%)</title><rect x="14.5074%" y="677" width="0.0928%" height="15" fill="rgb(250,172,42)" fg:x="71262" fg:w="456"/><text x="14.7574%" y="687.50"></text></g><g><title>Parse::do_field_access (98 samples, 0.02%)</title><rect x="14.6051%" y="677" width="0.0200%" height="15" fill="rgb(209,34,43)" fg:x="71742" fg:w="98"/><text x="14.8551%" y="687.50"></text></g><g><title>Parse::do_one_block (672 samples, 0.14%)</title><rect x="14.4986%" y="709" width="0.1368%" height="15" fill="rgb(223,11,35)" fg:x="71219" fg:w="672"/><text x="14.7486%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (667 samples, 0.14%)</title><rect x="14.4996%" y="693" width="0.1358%" height="15" fill="rgb(251,219,26)" fg:x="71224" fg:w="667"/><text x="14.7496%" y="703.50"></text></g><g><title>Parse::do_all_blocks (673 samples, 0.14%)</title><rect x="14.4986%" y="725" width="0.1370%" height="15" fill="rgb(231,119,3)" fg:x="71219" fg:w="673"/><text x="14.7486%" y="735.50"></text></g><g><title>ParseGenerator::generate (682 samples, 0.14%)</title><rect x="14.4986%" y="757" width="0.1388%" height="15" fill="rgb(216,97,11)" fg:x="71219" fg:w="682"/><text x="14.7486%" y="767.50"></text></g><g><title>Parse::Parse (682 samples, 0.14%)</title><rect x="14.4986%" y="741" width="0.1388%" height="15" fill="rgb(223,59,9)" fg:x="71219" fg:w="682"/><text x="14.7486%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (797 samples, 0.16%)</title><rect x="14.4809%" y="805" width="0.1623%" height="15" fill="rgb(233,93,31)" fg:x="71132" fg:w="797"/><text x="14.7309%" y="815.50"></text></g><g><title>C2Compiler::compile_method (797 samples, 0.16%)</title><rect x="14.4809%" y="789" width="0.1623%" height="15" fill="rgb(239,81,33)" fg:x="71132" fg:w="797"/><text x="14.7309%" y="799.50"></text></g><g><title>Compile::Compile (797 samples, 0.16%)</title><rect x="14.4809%" y="773" width="0.1623%" height="15" fill="rgb(213,120,34)" fg:x="71132" fg:w="797"/><text x="14.7309%" y="783.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.01%)</title><rect x="14.6562%" y="725" width="0.0114%" height="15" fill="rgb(243,49,53)" fg:x="71993" fg:w="56"/><text x="14.9062%" y="735.50"></text></g><g><title>Parse::Parse (56 samples, 0.01%)</title><rect x="14.6562%" y="709" width="0.0114%" height="15" fill="rgb(247,216,33)" fg:x="71993" fg:w="56"/><text x="14.9062%" y="719.50"></text></g><g><title>JavaThread::thread_main_inner (77 samples, 0.02%)</title><rect x="14.6537%" y="805" width="0.0157%" height="15" fill="rgb(226,26,14)" fg:x="71981" fg:w="77"/><text x="14.9037%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (77 samples, 0.02%)</title><rect x="14.6537%" y="789" width="0.0157%" height="15" fill="rgb(215,49,53)" fg:x="71981" fg:w="77"/><text x="14.9037%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (77 samples, 0.02%)</title><rect x="14.6537%" y="773" width="0.0157%" height="15" fill="rgb(245,162,40)" fg:x="71981" fg:w="77"/><text x="14.9037%" y="783.50"></text></g><g><title>C2Compiler::compile_method (77 samples, 0.02%)</title><rect x="14.6537%" y="757" width="0.0157%" height="15" fill="rgb(229,68,17)" fg:x="71981" fg:w="77"/><text x="14.9037%" y="767.50"></text></g><g><title>Compile::Compile (77 samples, 0.02%)</title><rect x="14.6537%" y="741" width="0.0157%" height="15" fill="rgb(213,182,10)" fg:x="71981" fg:w="77"/><text x="14.9037%" y="751.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.01%)</title><rect x="14.6902%" y="405" width="0.0106%" height="15" fill="rgb(245,125,30)" fg:x="72160" fg:w="52"/><text x="14.9402%" y="415.50"></text></g><g><title>Parse::Parse (52 samples, 0.01%)</title><rect x="14.6902%" y="389" width="0.0106%" height="15" fill="rgb(232,202,2)" fg:x="72160" fg:w="52"/><text x="14.9402%" y="399.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="14.6902%" y="373" width="0.0106%" height="15" fill="rgb(237,140,51)" fg:x="72160" fg:w="52"/><text x="14.9402%" y="383.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.01%)</title><rect x="14.6902%" y="357" width="0.0106%" height="15" fill="rgb(236,157,25)" fg:x="72160" fg:w="52"/><text x="14.9402%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="14.6902%" y="341" width="0.0106%" height="15" fill="rgb(219,209,0)" fg:x="72160" fg:w="52"/><text x="14.9402%" y="351.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="14.6902%" y="325" width="0.0106%" height="15" fill="rgb(240,116,54)" fg:x="72160" fg:w="52"/><text x="14.9402%" y="335.50"></text></g><g><title>ParseGenerator::generate (54 samples, 0.01%)</title><rect x="14.6902%" y="501" width="0.0110%" height="15" fill="rgb(216,10,36)" fg:x="72160" fg:w="54"/><text x="14.9402%" y="511.50"></text></g><g><title>Parse::Parse (54 samples, 0.01%)</title><rect x="14.6902%" y="485" width="0.0110%" height="15" fill="rgb(222,72,44)" fg:x="72160" fg:w="54"/><text x="14.9402%" y="495.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.01%)</title><rect x="14.6902%" y="469" width="0.0110%" height="15" fill="rgb(232,159,9)" fg:x="72160" fg:w="54"/><text x="14.9402%" y="479.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.01%)</title><rect x="14.6902%" y="453" width="0.0110%" height="15" fill="rgb(210,39,32)" fg:x="72160" fg:w="54"/><text x="14.9402%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="14.6902%" y="437" width="0.0110%" height="15" fill="rgb(216,194,45)" fg:x="72160" fg:w="54"/><text x="14.9402%" y="447.50"></text></g><g><title>Parse::do_call (54 samples, 0.01%)</title><rect x="14.6902%" y="421" width="0.0110%" height="15" fill="rgb(218,18,35)" fg:x="72160" fg:w="54"/><text x="14.9402%" y="431.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.01%)</title><rect x="14.6902%" y="597" width="0.0116%" height="15" fill="rgb(207,83,51)" fg:x="72160" fg:w="57"/><text x="14.9402%" y="607.50"></text></g><g><title>Parse::Parse (57 samples, 0.01%)</title><rect x="14.6902%" y="581" width="0.0116%" height="15" fill="rgb(225,63,43)" fg:x="72160" fg:w="57"/><text x="14.9402%" y="591.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.01%)</title><rect x="14.6902%" y="565" width="0.0116%" height="15" fill="rgb(207,57,36)" fg:x="72160" fg:w="57"/><text x="14.9402%" y="575.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.01%)</title><rect x="14.6902%" y="549" width="0.0116%" height="15" fill="rgb(216,99,33)" fg:x="72160" fg:w="57"/><text x="14.9402%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.01%)</title><rect x="14.6902%" y="533" width="0.0116%" height="15" fill="rgb(225,42,16)" fg:x="72160" fg:w="57"/><text x="14.9402%" y="543.50"></text></g><g><title>Parse::do_call (57 samples, 0.01%)</title><rect x="14.6902%" y="517" width="0.0116%" height="15" fill="rgb(220,201,45)" fg:x="72160" fg:w="57"/><text x="14.9402%" y="527.50"></text></g><g><title>ParseGenerator::generate (64 samples, 0.01%)</title><rect x="14.6902%" y="693" width="0.0130%" height="15" fill="rgb(225,33,4)" fg:x="72160" fg:w="64"/><text x="14.9402%" y="703.50"></text></g><g><title>Parse::Parse (64 samples, 0.01%)</title><rect x="14.6902%" y="677" width="0.0130%" height="15" fill="rgb(224,33,50)" fg:x="72160" fg:w="64"/><text x="14.9402%" y="687.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.01%)</title><rect x="14.6902%" y="661" width="0.0130%" height="15" fill="rgb(246,198,51)" fg:x="72160" fg:w="64"/><text x="14.9402%" y="671.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.01%)</title><rect x="14.6902%" y="645" width="0.0130%" height="15" fill="rgb(205,22,4)" fg:x="72160" fg:w="64"/><text x="14.9402%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.01%)</title><rect x="14.6902%" y="629" width="0.0130%" height="15" fill="rgb(206,3,8)" fg:x="72160" fg:w="64"/><text x="14.9402%" y="639.50"></text></g><g><title>Parse::do_call (64 samples, 0.01%)</title><rect x="14.6902%" y="613" width="0.0130%" height="15" fill="rgb(251,23,15)" fg:x="72160" fg:w="64"/><text x="14.9402%" y="623.50"></text></g><g><title>ParseGenerator::generate (70 samples, 0.01%)</title><rect x="14.6902%" y="789" width="0.0143%" height="15" fill="rgb(252,88,28)" fg:x="72160" fg:w="70"/><text x="14.9402%" y="799.50"></text></g><g><title>Parse::Parse (70 samples, 0.01%)</title><rect x="14.6902%" y="773" width="0.0143%" height="15" fill="rgb(212,127,14)" fg:x="72160" fg:w="70"/><text x="14.9402%" y="783.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.01%)</title><rect x="14.6902%" y="757" width="0.0143%" height="15" fill="rgb(247,145,37)" fg:x="72160" fg:w="70"/><text x="14.9402%" y="767.50"></text></g><g><title>Parse::do_one_block (70 samples, 0.01%)</title><rect x="14.6902%" y="741" width="0.0143%" height="15" fill="rgb(209,117,53)" fg:x="72160" fg:w="70"/><text x="14.9402%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.01%)</title><rect x="14.6902%" y="725" width="0.0143%" height="15" fill="rgb(212,90,42)" fg:x="72160" fg:w="70"/><text x="14.9402%" y="735.50"></text></g><g><title>Parse::do_call (70 samples, 0.01%)</title><rect x="14.6902%" y="709" width="0.0143%" height="15" fill="rgb(218,164,37)" fg:x="72160" fg:w="70"/><text x="14.9402%" y="719.50"></text></g><g><title>Parse::do_call (77 samples, 0.02%)</title><rect x="14.6902%" y="805" width="0.0157%" height="15" fill="rgb(246,65,34)" fg:x="72160" fg:w="77"/><text x="14.9402%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.01%)</title><rect x="14.7146%" y="805" width="0.0102%" height="15" fill="rgb(231,100,33)" fg:x="72280" fg:w="50"/><text x="14.9646%" y="815.50"></text></g><g><title>Parse::do_call (50 samples, 0.01%)</title><rect x="14.7146%" y="789" width="0.0102%" height="15" fill="rgb(228,126,14)" fg:x="72280" fg:w="50"/><text x="14.9646%" y="799.50"></text></g><g><title>ParseGenerator::generate (82 samples, 0.02%)</title><rect x="14.7309%" y="133" width="0.0167%" height="15" fill="rgb(215,173,21)" fg:x="72360" fg:w="82"/><text x="14.9809%" y="143.50"></text></g><g><title>Parse::Parse (82 samples, 0.02%)</title><rect x="14.7309%" y="117" width="0.0167%" height="15" fill="rgb(210,6,40)" fg:x="72360" fg:w="82"/><text x="14.9809%" y="127.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.02%)</title><rect x="14.7309%" y="101" width="0.0167%" height="15" fill="rgb(212,48,18)" fg:x="72360" fg:w="82"/><text x="14.9809%" y="111.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.02%)</title><rect x="14.7309%" y="85" width="0.0167%" height="15" fill="rgb(230,214,11)" fg:x="72360" fg:w="82"/><text x="14.9809%" y="95.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.02%)</title><rect x="14.7309%" y="69" width="0.0167%" height="15" fill="rgb(254,105,39)" fg:x="72360" fg:w="82"/><text x="14.9809%" y="79.50"></text></g><g><title>Parse::do_call (95 samples, 0.02%)</title><rect x="14.7284%" y="149" width="0.0193%" height="15" fill="rgb(245,158,5)" fg:x="72348" fg:w="95"/><text x="14.9784%" y="159.50"></text></g><g><title>ParseGenerator::generate (100 samples, 0.02%)</title><rect x="14.7284%" y="229" width="0.0204%" height="15" fill="rgb(249,208,11)" fg:x="72348" fg:w="100"/><text x="14.9784%" y="239.50"></text></g><g><title>Parse::Parse (100 samples, 0.02%)</title><rect x="14.7284%" y="213" width="0.0204%" height="15" fill="rgb(210,39,28)" fg:x="72348" fg:w="100"/><text x="14.9784%" y="223.50"></text></g><g><title>Parse::do_all_blocks (100 samples, 0.02%)</title><rect x="14.7284%" y="197" width="0.0204%" height="15" fill="rgb(211,56,53)" fg:x="72348" fg:w="100"/><text x="14.9784%" y="207.50"></text></g><g><title>Parse::do_one_block (100 samples, 0.02%)</title><rect x="14.7284%" y="181" width="0.0204%" height="15" fill="rgb(226,201,30)" fg:x="72348" fg:w="100"/><text x="14.9784%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (100 samples, 0.02%)</title><rect x="14.7284%" y="165" width="0.0204%" height="15" fill="rgb(239,101,34)" fg:x="72348" fg:w="100"/><text x="14.9784%" y="175.50"></text></g><g><title>ParseGenerator::generate (125 samples, 0.03%)</title><rect x="14.7248%" y="325" width="0.0254%" height="15" fill="rgb(226,209,5)" fg:x="72330" fg:w="125"/><text x="14.9748%" y="335.50"></text></g><g><title>Parse::Parse (125 samples, 0.03%)</title><rect x="14.7248%" y="309" width="0.0254%" height="15" fill="rgb(250,105,47)" fg:x="72330" fg:w="125"/><text x="14.9748%" y="319.50"></text></g><g><title>Parse::do_all_blocks (125 samples, 0.03%)</title><rect x="14.7248%" y="293" width="0.0254%" height="15" fill="rgb(230,72,3)" fg:x="72330" fg:w="125"/><text x="14.9748%" y="303.50"></text></g><g><title>Parse::do_one_block (125 samples, 0.03%)</title><rect x="14.7248%" y="277" width="0.0254%" height="15" fill="rgb(232,218,39)" fg:x="72330" fg:w="125"/><text x="14.9748%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (125 samples, 0.03%)</title><rect x="14.7248%" y="261" width="0.0254%" height="15" fill="rgb(248,166,6)" fg:x="72330" fg:w="125"/><text x="14.9748%" y="271.50"></text></g><g><title>Parse::do_call (125 samples, 0.03%)</title><rect x="14.7248%" y="245" width="0.0254%" height="15" fill="rgb(247,89,20)" fg:x="72330" fg:w="125"/><text x="14.9748%" y="255.50"></text></g><g><title>ParseGenerator::generate (132 samples, 0.03%)</title><rect x="14.7248%" y="421" width="0.0269%" height="15" fill="rgb(248,130,54)" fg:x="72330" fg:w="132"/><text x="14.9748%" y="431.50"></text></g><g><title>Parse::Parse (132 samples, 0.03%)</title><rect x="14.7248%" y="405" width="0.0269%" height="15" fill="rgb(234,196,4)" fg:x="72330" fg:w="132"/><text x="14.9748%" y="415.50"></text></g><g><title>Parse::do_all_blocks (132 samples, 0.03%)</title><rect x="14.7248%" y="389" width="0.0269%" height="15" fill="rgb(250,143,31)" fg:x="72330" fg:w="132"/><text x="14.9748%" y="399.50"></text></g><g><title>Parse::do_one_block (132 samples, 0.03%)</title><rect x="14.7248%" y="373" width="0.0269%" height="15" fill="rgb(211,110,34)" fg:x="72330" fg:w="132"/><text x="14.9748%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (132 samples, 0.03%)</title><rect x="14.7248%" y="357" width="0.0269%" height="15" fill="rgb(215,124,48)" fg:x="72330" fg:w="132"/><text x="14.9748%" y="367.50"></text></g><g><title>Parse::do_call (132 samples, 0.03%)</title><rect x="14.7248%" y="341" width="0.0269%" height="15" fill="rgb(216,46,13)" fg:x="72330" fg:w="132"/><text x="14.9748%" y="351.50"></text></g><g><title>ParseGenerator::generate (144 samples, 0.03%)</title><rect x="14.7248%" y="517" width="0.0293%" height="15" fill="rgb(205,184,25)" fg:x="72330" fg:w="144"/><text x="14.9748%" y="527.50"></text></g><g><title>Parse::Parse (144 samples, 0.03%)</title><rect x="14.7248%" y="501" width="0.0293%" height="15" fill="rgb(228,1,10)" fg:x="72330" fg:w="144"/><text x="14.9748%" y="511.50"></text></g><g><title>Parse::do_all_blocks (144 samples, 0.03%)</title><rect x="14.7248%" y="485" width="0.0293%" height="15" fill="rgb(213,116,27)" fg:x="72330" fg:w="144"/><text x="14.9748%" y="495.50"></text></g><g><title>Parse::do_one_block (144 samples, 0.03%)</title><rect x="14.7248%" y="469" width="0.0293%" height="15" fill="rgb(241,95,50)" fg:x="72330" fg:w="144"/><text x="14.9748%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (144 samples, 0.03%)</title><rect x="14.7248%" y="453" width="0.0293%" height="15" fill="rgb(238,48,32)" fg:x="72330" fg:w="144"/><text x="14.9748%" y="463.50"></text></g><g><title>Parse::do_call (144 samples, 0.03%)</title><rect x="14.7248%" y="437" width="0.0293%" height="15" fill="rgb(235,113,49)" fg:x="72330" fg:w="144"/><text x="14.9748%" y="447.50"></text></g><g><title>ParseGenerator::generate (152 samples, 0.03%)</title><rect x="14.7248%" y="613" width="0.0309%" height="15" fill="rgb(205,127,43)" fg:x="72330" fg:w="152"/><text x="14.9748%" y="623.50"></text></g><g><title>Parse::Parse (152 samples, 0.03%)</title><rect x="14.7248%" y="597" width="0.0309%" height="15" fill="rgb(250,162,2)" fg:x="72330" fg:w="152"/><text x="14.9748%" y="607.50"></text></g><g><title>Parse::do_all_blocks (152 samples, 0.03%)</title><rect x="14.7248%" y="581" width="0.0309%" height="15" fill="rgb(220,13,41)" fg:x="72330" fg:w="152"/><text x="14.9748%" y="591.50"></text></g><g><title>Parse::do_one_block (152 samples, 0.03%)</title><rect x="14.7248%" y="565" width="0.0309%" height="15" fill="rgb(249,221,25)" fg:x="72330" fg:w="152"/><text x="14.9748%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (152 samples, 0.03%)</title><rect x="14.7248%" y="549" width="0.0309%" height="15" fill="rgb(215,208,19)" fg:x="72330" fg:w="152"/><text x="14.9748%" y="559.50"></text></g><g><title>Parse::do_call (152 samples, 0.03%)</title><rect x="14.7248%" y="533" width="0.0309%" height="15" fill="rgb(236,175,2)" fg:x="72330" fg:w="152"/><text x="14.9748%" y="543.50"></text></g><g><title>ParseGenerator::generate (170 samples, 0.03%)</title><rect x="14.7248%" y="709" width="0.0346%" height="15" fill="rgb(241,52,2)" fg:x="72330" fg:w="170"/><text x="14.9748%" y="719.50"></text></g><g><title>Parse::Parse (170 samples, 0.03%)</title><rect x="14.7248%" y="693" width="0.0346%" height="15" fill="rgb(248,140,14)" fg:x="72330" fg:w="170"/><text x="14.9748%" y="703.50"></text></g><g><title>Parse::do_all_blocks (170 samples, 0.03%)</title><rect x="14.7248%" y="677" width="0.0346%" height="15" fill="rgb(253,22,42)" fg:x="72330" fg:w="170"/><text x="14.9748%" y="687.50"></text></g><g><title>Parse::do_one_block (170 samples, 0.03%)</title><rect x="14.7248%" y="661" width="0.0346%" height="15" fill="rgb(234,61,47)" fg:x="72330" fg:w="170"/><text x="14.9748%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (170 samples, 0.03%)</title><rect x="14.7248%" y="645" width="0.0346%" height="15" fill="rgb(208,226,15)" fg:x="72330" fg:w="170"/><text x="14.9748%" y="655.50"></text></g><g><title>Parse::do_call (170 samples, 0.03%)</title><rect x="14.7248%" y="629" width="0.0346%" height="15" fill="rgb(217,221,4)" fg:x="72330" fg:w="170"/><text x="14.9748%" y="639.50"></text></g><g><title>ParseGenerator::generate (193 samples, 0.04%)</title><rect x="14.7248%" y="805" width="0.0393%" height="15" fill="rgb(212,174,34)" fg:x="72330" fg:w="193"/><text x="14.9748%" y="815.50"></text></g><g><title>Parse::Parse (193 samples, 0.04%)</title><rect x="14.7248%" y="789" width="0.0393%" height="15" fill="rgb(253,83,4)" fg:x="72330" fg:w="193"/><text x="14.9748%" y="799.50"></text></g><g><title>Parse::do_all_blocks (193 samples, 0.04%)</title><rect x="14.7248%" y="773" width="0.0393%" height="15" fill="rgb(250,195,49)" fg:x="72330" fg:w="193"/><text x="14.9748%" y="783.50"></text></g><g><title>Parse::do_one_block (193 samples, 0.04%)</title><rect x="14.7248%" y="757" width="0.0393%" height="15" fill="rgb(241,192,25)" fg:x="72330" fg:w="193"/><text x="14.9748%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (193 samples, 0.04%)</title><rect x="14.7248%" y="741" width="0.0393%" height="15" fill="rgb(208,124,10)" fg:x="72330" fg:w="193"/><text x="14.9748%" y="751.50"></text></g><g><title>Parse::do_call (193 samples, 0.04%)</title><rect x="14.7248%" y="725" width="0.0393%" height="15" fill="rgb(222,33,0)" fg:x="72330" fg:w="193"/><text x="14.9748%" y="735.50"></text></g><g><title>Thread::call_run (65 samples, 0.01%)</title><rect x="14.7714%" y="805" width="0.0132%" height="15" fill="rgb(234,209,28)" fg:x="72559" fg:w="65"/><text x="15.0214%" y="815.50"></text></g><g><title>JavaThread::thread_main_inner (65 samples, 0.01%)</title><rect x="14.7714%" y="789" width="0.0132%" height="15" fill="rgb(224,11,23)" fg:x="72559" fg:w="65"/><text x="15.0214%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (65 samples, 0.01%)</title><rect x="14.7714%" y="773" width="0.0132%" height="15" fill="rgb(232,99,1)" fg:x="72559" fg:w="65"/><text x="15.0214%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (65 samples, 0.01%)</title><rect x="14.7714%" y="757" width="0.0132%" height="15" fill="rgb(237,95,45)" fg:x="72559" fg:w="65"/><text x="15.0214%" y="767.50"></text></g><g><title>C2Compiler::compile_method (65 samples, 0.01%)</title><rect x="14.7714%" y="741" width="0.0132%" height="15" fill="rgb(208,109,11)" fg:x="72559" fg:w="65"/><text x="15.0214%" y="751.50"></text></g><g><title>Compile::Compile (65 samples, 0.01%)</title><rect x="14.7714%" y="725" width="0.0132%" height="15" fill="rgb(216,190,48)" fg:x="72559" fg:w="65"/><text x="15.0214%" y="735.50"></text></g><g><title>start_thread (73 samples, 0.01%)</title><rect x="14.8003%" y="805" width="0.0149%" height="15" fill="rgb(251,171,36)" fg:x="72701" fg:w="73"/><text x="15.0503%" y="815.50"></text></g><g><title>thread_native_entry (73 samples, 0.01%)</title><rect x="14.8003%" y="789" width="0.0149%" height="15" fill="rgb(230,62,22)" fg:x="72701" fg:w="73"/><text x="15.0503%" y="799.50"></text></g><g><title>Thread::call_run (73 samples, 0.01%)</title><rect x="14.8003%" y="773" width="0.0149%" height="15" fill="rgb(225,114,35)" fg:x="72701" fg:w="73"/><text x="15.0503%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (73 samples, 0.01%)</title><rect x="14.8003%" y="757" width="0.0149%" height="15" fill="rgb(215,118,42)" fg:x="72701" fg:w="73"/><text x="15.0503%" y="767.50"></text></g><g><title>CompileBroker::compiler_thread_loop (73 samples, 0.01%)</title><rect x="14.8003%" y="741" width="0.0149%" height="15" fill="rgb(243,119,21)" fg:x="72701" fg:w="73"/><text x="15.0503%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (73 samples, 0.01%)</title><rect x="14.8003%" y="725" width="0.0149%" height="15" fill="rgb(252,177,53)" fg:x="72701" fg:w="73"/><text x="15.0503%" y="735.50"></text></g><g><title>C2Compiler::compile_method (73 samples, 0.01%)</title><rect x="14.8003%" y="709" width="0.0149%" height="15" fill="rgb(237,209,29)" fg:x="72701" fg:w="73"/><text x="15.0503%" y="719.50"></text></g><g><title>Compile::Compile (73 samples, 0.01%)</title><rect x="14.8003%" y="693" width="0.0149%" height="15" fill="rgb(212,65,23)" fg:x="72701" fg:w="73"/><text x="15.0503%" y="703.50"></text></g><g><title>[unknown] (57,288 samples, 11.66%)</title><rect x="3.1565%" y="821" width="11.6626%" height="15" fill="rgb(230,222,46)" fg:x="15505" fg:w="57288"/><text x="3.4065%" y="831.50">[unknown]</text></g><g><title>Dict::Insert (68 samples, 0.01%)</title><rect x="14.8467%" y="645" width="0.0138%" height="15" fill="rgb(215,135,32)" fg:x="72929" fg:w="68"/><text x="15.0967%" y="655.50"></text></g><g><title>CompileWrapper::CompileWrapper (83 samples, 0.02%)</title><rect x="14.8455%" y="677" width="0.0169%" height="15" fill="rgb(246,101,22)" fg:x="72923" fg:w="83"/><text x="15.0955%" y="687.50"></text></g><g><title>Type::Initialize (79 samples, 0.02%)</title><rect x="14.8463%" y="661" width="0.0161%" height="15" fill="rgb(206,107,13)" fg:x="72927" fg:w="79"/><text x="15.0963%" y="671.50"></text></g><g><title>Compile::identify_useful_nodes (143 samples, 0.03%)</title><rect x="14.8711%" y="661" width="0.0291%" height="15" fill="rgb(250,100,44)" fg:x="73049" fg:w="143"/><text x="15.1211%" y="671.50"></text></g><g><title>Compile::remove_useless_nodes (179 samples, 0.04%)</title><rect x="14.9003%" y="661" width="0.0364%" height="15" fill="rgb(231,147,38)" fg:x="73192" fg:w="179"/><text x="15.1503%" y="671.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (411 samples, 0.08%)</title><rect x="14.8640%" y="677" width="0.0837%" height="15" fill="rgb(229,8,40)" fg:x="73014" fg:w="411"/><text x="15.1140%" y="687.50"></text></g><g><title>Compile::Compile (619 samples, 0.13%)</title><rect x="14.8337%" y="693" width="0.1260%" height="15" fill="rgb(221,135,30)" fg:x="72865" fg:w="619"/><text x="15.0837%" y="703.50"></text></g><g><title>C2Compiler::compile_method (629 samples, 0.13%)</title><rect x="14.8319%" y="709" width="0.1281%" height="15" fill="rgb(249,193,18)" fg:x="72856" fg:w="629"/><text x="15.0819%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (804 samples, 0.16%)</title><rect x="14.8312%" y="725" width="0.1637%" height="15" fill="rgb(209,133,39)" fg:x="72853" fg:w="804"/><text x="15.0812%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (161 samples, 0.03%)</title><rect x="15.0161%" y="469" width="0.0328%" height="15" fill="rgb(232,100,14)" fg:x="73761" fg:w="161"/><text x="15.2661%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (155 samples, 0.03%)</title><rect x="15.0173%" y="453" width="0.0316%" height="15" fill="rgb(224,185,1)" fg:x="73767" fg:w="155"/><text x="15.2673%" y="463.50"></text></g><g><title>native_write_msr (153 samples, 0.03%)</title><rect x="15.0177%" y="437" width="0.0311%" height="15" fill="rgb(223,139,8)" fg:x="73769" fg:w="153"/><text x="15.2677%" y="447.50"></text></g><g><title>finish_task_switch (178 samples, 0.04%)</title><rect x="15.0147%" y="485" width="0.0362%" height="15" fill="rgb(232,213,38)" fg:x="73754" fg:w="178"/><text x="15.2647%" y="495.50"></text></g><g><title>futex_wait_queue_me (220 samples, 0.04%)</title><rect x="15.0090%" y="533" width="0.0448%" height="15" fill="rgb(207,94,22)" fg:x="73726" fg:w="220"/><text x="15.2590%" y="543.50"></text></g><g><title>schedule (214 samples, 0.04%)</title><rect x="15.0102%" y="517" width="0.0436%" height="15" fill="rgb(219,183,54)" fg:x="73732" fg:w="214"/><text x="15.2602%" y="527.50"></text></g><g><title>__schedule (214 samples, 0.04%)</title><rect x="15.0102%" y="501" width="0.0436%" height="15" fill="rgb(216,185,54)" fg:x="73732" fg:w="214"/><text x="15.2602%" y="511.50"></text></g><g><title>do_futex (229 samples, 0.05%)</title><rect x="15.0084%" y="565" width="0.0466%" height="15" fill="rgb(254,217,39)" fg:x="73723" fg:w="229"/><text x="15.2584%" y="575.50"></text></g><g><title>futex_wait (229 samples, 0.05%)</title><rect x="15.0084%" y="549" width="0.0466%" height="15" fill="rgb(240,178,23)" fg:x="73723" fg:w="229"/><text x="15.2584%" y="559.50"></text></g><g><title>do_syscall_64 (234 samples, 0.05%)</title><rect x="15.0082%" y="597" width="0.0476%" height="15" fill="rgb(218,11,47)" fg:x="73722" fg:w="234"/><text x="15.2582%" y="607.50"></text></g><g><title>__x64_sys_futex (234 samples, 0.05%)</title><rect x="15.0082%" y="581" width="0.0476%" height="15" fill="rgb(218,51,51)" fg:x="73722" fg:w="234"/><text x="15.2582%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (245 samples, 0.05%)</title><rect x="15.0067%" y="661" width="0.0499%" height="15" fill="rgb(238,126,27)" fg:x="73715" fg:w="245"/><text x="15.2567%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (245 samples, 0.05%)</title><rect x="15.0067%" y="645" width="0.0499%" height="15" fill="rgb(249,202,22)" fg:x="73715" fg:w="245"/><text x="15.2567%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (242 samples, 0.05%)</title><rect x="15.0073%" y="629" width="0.0493%" height="15" fill="rgb(254,195,49)" fg:x="73718" fg:w="242"/><text x="15.2573%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (239 samples, 0.05%)</title><rect x="15.0079%" y="613" width="0.0487%" height="15" fill="rgb(208,123,14)" fg:x="73721" fg:w="239"/><text x="15.2579%" y="623.50"></text></g><g><title>os::PlatformEvent::park (268 samples, 0.05%)</title><rect x="15.0059%" y="677" width="0.0546%" height="15" fill="rgb(224,200,8)" fg:x="73711" fg:w="268"/><text x="15.2559%" y="687.50"></text></g><g><title>Monitor::IWait (298 samples, 0.06%)</title><rect x="15.0000%" y="693" width="0.0607%" height="15" fill="rgb(217,61,36)" fg:x="73682" fg:w="298"/><text x="15.2500%" y="703.50"></text></g><g><title>Monitor::wait (305 samples, 0.06%)</title><rect x="14.9992%" y="709" width="0.0621%" height="15" fill="rgb(206,35,45)" fg:x="73678" fg:w="305"/><text x="15.2492%" y="719.50"></text></g><g><title>CompileQueue::get (348 samples, 0.07%)</title><rect x="14.9965%" y="725" width="0.0708%" height="15" fill="rgb(217,65,33)" fg:x="73665" fg:w="348"/><text x="15.2465%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,167 samples, 0.24%)</title><rect x="14.8302%" y="741" width="0.2376%" height="15" fill="rgb(222,158,48)" fg:x="72848" fg:w="1167"/><text x="15.0802%" y="751.50"></text></g><g><title>Thread::call_run (1,173 samples, 0.24%)</title><rect x="14.8300%" y="773" width="0.2388%" height="15" fill="rgb(254,2,54)" fg:x="72847" fg:w="1173"/><text x="15.0800%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (1,172 samples, 0.24%)</title><rect x="14.8302%" y="757" width="0.2386%" height="15" fill="rgb(250,143,38)" fg:x="72848" fg:w="1172"/><text x="15.0802%" y="767.50"></text></g><g><title>__GI___clone (1,218 samples, 0.25%)</title><rect x="14.8215%" y="821" width="0.2480%" height="15" fill="rgb(248,25,0)" fg:x="72805" fg:w="1218"/><text x="15.0715%" y="831.50"></text></g><g><title>start_thread (1,180 samples, 0.24%)</title><rect x="14.8292%" y="805" width="0.2402%" height="15" fill="rgb(206,152,27)" fg:x="72843" fg:w="1180"/><text x="15.0792%" y="815.50"></text></g><g><title>thread_native_entry (1,179 samples, 0.24%)</title><rect x="14.8294%" y="789" width="0.2400%" height="15" fill="rgb(240,77,30)" fg:x="72844" fg:w="1179"/><text x="15.0794%" y="799.50"></text></g><g><title>C2_CompilerThre (62,061 samples, 12.63%)</title><rect x="2.4549%" y="837" width="12.6342%" height="15" fill="rgb(231,5,3)" fg:x="12059" fg:w="62061"/><text x="2.7049%" y="847.50">C2_CompilerThre</text></g><g><title>[perf-279850.map] (88 samples, 0.02%)</title><rect x="15.0904%" y="821" width="0.0179%" height="15" fill="rgb(207,226,32)" fg:x="74126" fg:w="88"/><text x="15.3404%" y="831.50"></text></g><g><title>Command-Accumul (116 samples, 0.02%)</title><rect x="15.0892%" y="837" width="0.0236%" height="15" fill="rgb(222,207,47)" fg:x="74120" fg:w="116"/><text x="15.3392%" y="847.50"></text></g><g><title>[anon] (58 samples, 0.01%)</title><rect x="15.1240%" y="821" width="0.0118%" height="15" fill="rgb(229,115,45)" fg:x="74291" fg:w="58"/><text x="15.3740%" y="831.50"></text></g><g><title>update_curr (97 samples, 0.02%)</title><rect x="15.6710%" y="565" width="0.0197%" height="15" fill="rgb(224,191,6)" fg:x="76978" fg:w="97"/><text x="15.9210%" y="575.50"></text></g><g><title>dequeue_entity (190 samples, 0.04%)</title><rect x="15.6600%" y="581" width="0.0387%" height="15" fill="rgb(230,227,24)" fg:x="76924" fg:w="190"/><text x="15.9100%" y="591.50"></text></g><g><title>dequeue_task_fair (212 samples, 0.04%)</title><rect x="15.6563%" y="597" width="0.0432%" height="15" fill="rgb(228,80,19)" fg:x="76906" fg:w="212"/><text x="15.9063%" y="607.50"></text></g><g><title>finish_task_switch (58 samples, 0.01%)</title><rect x="15.6995%" y="597" width="0.0118%" height="15" fill="rgb(247,229,0)" fg:x="77118" fg:w="58"/><text x="15.9495%" y="607.50"></text></g><g><title>psi_task_change (155 samples, 0.03%)</title><rect x="15.7211%" y="597" width="0.0316%" height="15" fill="rgb(237,194,15)" fg:x="77224" fg:w="155"/><text x="15.9711%" y="607.50"></text></g><g><title>psi_group_change (114 samples, 0.02%)</title><rect x="15.7294%" y="581" width="0.0232%" height="15" fill="rgb(219,203,20)" fg:x="77265" fg:w="114"/><text x="15.9794%" y="591.50"></text></g><g><title>futex_wait_queue_me (717 samples, 0.15%)</title><rect x="15.6146%" y="645" width="0.1460%" height="15" fill="rgb(234,128,8)" fg:x="76701" fg:w="717"/><text x="15.8646%" y="655.50"></text></g><g><title>schedule (608 samples, 0.12%)</title><rect x="15.6368%" y="629" width="0.1238%" height="15" fill="rgb(248,202,8)" fg:x="76810" fg:w="608"/><text x="15.8868%" y="639.50"></text></g><g><title>__schedule (593 samples, 0.12%)</title><rect x="15.6399%" y="613" width="0.1207%" height="15" fill="rgb(206,104,37)" fg:x="76825" fg:w="593"/><text x="15.8899%" y="623.50"></text></g><g><title>do_futex (863 samples, 0.18%)</title><rect x="15.6052%" y="677" width="0.1757%" height="15" fill="rgb(223,8,27)" fg:x="76655" fg:w="863"/><text x="15.8552%" y="687.50"></text></g><g><title>futex_wait (846 samples, 0.17%)</title><rect x="15.6087%" y="661" width="0.1722%" height="15" fill="rgb(216,217,28)" fg:x="76672" fg:w="846"/><text x="15.8587%" y="671.50"></text></g><g><title>__x64_sys_futex (894 samples, 0.18%)</title><rect x="15.6026%" y="693" width="0.1820%" height="15" fill="rgb(249,199,1)" fg:x="76642" fg:w="894"/><text x="15.8526%" y="703.50"></text></g><g><title>do_syscall_64 (898 samples, 0.18%)</title><rect x="15.6022%" y="709" width="0.1828%" height="15" fill="rgb(240,85,17)" fg:x="76640" fg:w="898"/><text x="15.8522%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (941 samples, 0.19%)</title><rect x="15.5983%" y="725" width="0.1916%" height="15" fill="rgb(206,108,45)" fg:x="76621" fg:w="941"/><text x="15.8483%" y="735.50"></text></g><g><title>__pthread_cond_timedwait (1,075 samples, 0.22%)</title><rect x="15.5719%" y="773" width="0.2188%" height="15" fill="rgb(245,210,41)" fg:x="76491" fg:w="1075"/><text x="15.8219%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (1,071 samples, 0.22%)</title><rect x="15.5727%" y="757" width="0.2180%" height="15" fill="rgb(206,13,37)" fg:x="76495" fg:w="1071"/><text x="15.8227%" y="767.50"></text></g><g><title>futex_abstimed_wait_cancelable (1,015 samples, 0.21%)</title><rect x="15.5841%" y="741" width="0.2066%" height="15" fill="rgb(250,61,18)" fg:x="76551" fg:w="1015"/><text x="15.8341%" y="751.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="15.8029%" y="741" width="0.0110%" height="15" fill="rgb(235,172,48)" fg:x="77626" fg:w="54"/><text x="16.0529%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="15.8025%" y="757" width="0.0120%" height="15" fill="rgb(249,201,17)" fg:x="77624" fg:w="59"/><text x="16.0525%" y="767.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (78 samples, 0.02%)</title><rect x="15.7993%" y="773" width="0.0159%" height="15" fill="rgb(219,208,6)" fg:x="77608" fg:w="78"/><text x="16.0493%" y="783.50"></text></g><g><title>Parker::park (1,364 samples, 0.28%)</title><rect x="15.5470%" y="789" width="0.2777%" height="15" fill="rgb(248,31,23)" fg:x="76369" fg:w="1364"/><text x="15.7970%" y="799.50"></text></g><g><title>Unsafe_Park (1,439 samples, 0.29%)</title><rect x="15.5379%" y="805" width="0.2929%" height="15" fill="rgb(245,15,42)" fg:x="76324" fg:w="1439"/><text x="15.7879%" y="815.50"></text></g><g><title>[perf-279850.map] (3,442 samples, 0.70%)</title><rect x="15.1358%" y="821" width="0.7007%" height="15" fill="rgb(222,217,39)" fg:x="74349" fg:w="3442"/><text x="15.3858%" y="831.50"></text></g><g><title>ForkJoinPool.co (3,557 samples, 0.72%)</title><rect x="15.1238%" y="837" width="0.7241%" height="15" fill="rgb(210,219,27)" fg:x="74290" fg:w="3557"/><text x="15.3738%" y="847.50"></text></g><g><title>__GI___clone (55 samples, 0.01%)</title><rect x="15.8556%" y="821" width="0.0112%" height="15" fill="rgb(252,166,36)" fg:x="77885" fg:w="55"/><text x="16.1056%" y="831.50"></text></g><g><title>start_thread (55 samples, 0.01%)</title><rect x="15.8556%" y="805" width="0.0112%" height="15" fill="rgb(245,132,34)" fg:x="77885" fg:w="55"/><text x="16.1056%" y="815.50"></text></g><g><title>thread_native_entry (55 samples, 0.01%)</title><rect x="15.8556%" y="789" width="0.0112%" height="15" fill="rgb(236,54,3)" fg:x="77885" fg:w="55"/><text x="16.1056%" y="799.50"></text></g><g><title>Thread::call_run (55 samples, 0.01%)</title><rect x="15.8556%" y="773" width="0.0112%" height="15" fill="rgb(241,173,43)" fg:x="77885" fg:w="55"/><text x="16.1056%" y="783.50"></text></g><g><title>GangWorker::loop (55 samples, 0.01%)</title><rect x="15.8556%" y="757" width="0.0112%" height="15" fill="rgb(215,190,9)" fg:x="77885" fg:w="55"/><text x="16.1056%" y="767.50"></text></g><g><title>G1_Conc#1 (58 samples, 0.01%)</title><rect x="15.8554%" y="837" width="0.0118%" height="15" fill="rgb(242,101,16)" fg:x="77884" fg:w="58"/><text x="16.1054%" y="847.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (121 samples, 0.02%)</title><rect x="15.8784%" y="725" width="0.0246%" height="15" fill="rgb(223,190,21)" fg:x="77997" fg:w="121"/><text x="16.1284%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (121 samples, 0.02%)</title><rect x="15.8784%" y="709" width="0.0246%" height="15" fill="rgb(215,228,25)" fg:x="77997" fg:w="121"/><text x="16.1284%" y="719.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (155 samples, 0.03%)</title><rect x="15.8784%" y="741" width="0.0316%" height="15" fill="rgb(225,36,22)" fg:x="77997" fg:w="155"/><text x="16.1284%" y="751.50"></text></g><g><title>__GI___clone (156 samples, 0.03%)</title><rect x="15.8784%" y="821" width="0.0318%" height="15" fill="rgb(251,106,46)" fg:x="77997" fg:w="156"/><text x="16.1284%" y="831.50"></text></g><g><title>start_thread (156 samples, 0.03%)</title><rect x="15.8784%" y="805" width="0.0318%" height="15" fill="rgb(208,90,1)" fg:x="77997" fg:w="156"/><text x="16.1284%" y="815.50"></text></g><g><title>thread_native_entry (156 samples, 0.03%)</title><rect x="15.8784%" y="789" width="0.0318%" height="15" fill="rgb(243,10,4)" fg:x="77997" fg:w="156"/><text x="16.1284%" y="799.50"></text></g><g><title>Thread::call_run (156 samples, 0.03%)</title><rect x="15.8784%" y="773" width="0.0318%" height="15" fill="rgb(212,137,27)" fg:x="77997" fg:w="156"/><text x="16.1284%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (156 samples, 0.03%)</title><rect x="15.8784%" y="757" width="0.0318%" height="15" fill="rgb(231,220,49)" fg:x="77997" fg:w="156"/><text x="16.1284%" y="767.50"></text></g><g><title>G1_Refine#0 (163 samples, 0.03%)</title><rect x="15.8772%" y="837" width="0.0332%" height="15" fill="rgb(237,96,20)" fg:x="77991" fg:w="163"/><text x="16.1272%" y="847.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (60 samples, 0.01%)</title><rect x="15.9131%" y="725" width="0.0122%" height="15" fill="rgb(239,229,30)" fg:x="78167" fg:w="60"/><text x="16.1631%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (60 samples, 0.01%)</title><rect x="15.9131%" y="709" width="0.0122%" height="15" fill="rgb(219,65,33)" fg:x="78167" fg:w="60"/><text x="16.1631%" y="719.50"></text></g><g><title>G1_Refine#1 (106 samples, 0.02%)</title><rect x="15.9104%" y="837" width="0.0216%" height="15" fill="rgb(243,134,7)" fg:x="78154" fg:w="106"/><text x="16.1604%" y="847.50"></text></g><g><title>__GI___clone (103 samples, 0.02%)</title><rect x="15.9110%" y="821" width="0.0210%" height="15" fill="rgb(216,177,54)" fg:x="78157" fg:w="103"/><text x="16.1610%" y="831.50"></text></g><g><title>start_thread (94 samples, 0.02%)</title><rect x="15.9129%" y="805" width="0.0191%" height="15" fill="rgb(211,160,20)" fg:x="78166" fg:w="94"/><text x="16.1629%" y="815.50"></text></g><g><title>thread_native_entry (93 samples, 0.02%)</title><rect x="15.9131%" y="789" width="0.0189%" height="15" fill="rgb(239,85,39)" fg:x="78167" fg:w="93"/><text x="16.1631%" y="799.50"></text></g><g><title>Thread::call_run (93 samples, 0.02%)</title><rect x="15.9131%" y="773" width="0.0189%" height="15" fill="rgb(232,125,22)" fg:x="78167" fg:w="93"/><text x="16.1631%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (93 samples, 0.02%)</title><rect x="15.9131%" y="757" width="0.0189%" height="15" fill="rgb(244,57,34)" fg:x="78167" fg:w="93"/><text x="16.1631%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (93 samples, 0.02%)</title><rect x="15.9131%" y="741" width="0.0189%" height="15" fill="rgb(214,203,32)" fg:x="78167" fg:w="93"/><text x="16.1631%" y="751.50"></text></g><g><title>Thread::call_run (77 samples, 0.02%)</title><rect x="15.9334%" y="773" width="0.0157%" height="15" fill="rgb(207,58,43)" fg:x="78267" fg:w="77"/><text x="16.1834%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (77 samples, 0.02%)</title><rect x="15.9334%" y="757" width="0.0157%" height="15" fill="rgb(215,193,15)" fg:x="78267" fg:w="77"/><text x="16.1834%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (77 samples, 0.02%)</title><rect x="15.9334%" y="741" width="0.0157%" height="15" fill="rgb(232,15,44)" fg:x="78267" fg:w="77"/><text x="16.1834%" y="751.50"></text></g><g><title>G1_Refine#2 (85 samples, 0.02%)</title><rect x="15.9320%" y="837" width="0.0173%" height="15" fill="rgb(212,3,48)" fg:x="78260" fg:w="85"/><text x="16.1820%" y="847.50"></text></g><g><title>__GI___clone (84 samples, 0.02%)</title><rect x="15.9322%" y="821" width="0.0171%" height="15" fill="rgb(218,128,7)" fg:x="78261" fg:w="84"/><text x="16.1822%" y="831.50"></text></g><g><title>start_thread (78 samples, 0.02%)</title><rect x="15.9334%" y="805" width="0.0159%" height="15" fill="rgb(226,216,39)" fg:x="78267" fg:w="78"/><text x="16.1834%" y="815.50"></text></g><g><title>thread_native_entry (78 samples, 0.02%)</title><rect x="15.9334%" y="789" width="0.0159%" height="15" fill="rgb(243,47,51)" fg:x="78267" fg:w="78"/><text x="16.1834%" y="799.50"></text></g><g><title>G1_Refine#3 (50 samples, 0.01%)</title><rect x="15.9493%" y="837" width="0.0102%" height="15" fill="rgb(241,183,40)" fg:x="78345" fg:w="50"/><text x="16.1993%" y="847.50"></text></g><g><title>G1YoungRemSetSamplingClosure::do_heap_region (68 samples, 0.01%)</title><rect x="15.9682%" y="709" width="0.0138%" height="15" fill="rgb(231,217,32)" fg:x="78438" fg:w="68"/><text x="16.2182%" y="719.50"></text></g><g><title>G1CollectionSet::iterate (73 samples, 0.01%)</title><rect x="15.9676%" y="725" width="0.0149%" height="15" fill="rgb(229,61,38)" fg:x="78435" fg:w="73"/><text x="16.2176%" y="735.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (98 samples, 0.02%)</title><rect x="15.9676%" y="741" width="0.0200%" height="15" fill="rgb(225,210,5)" fg:x="78435" fg:w="98"/><text x="16.2176%" y="751.50"></text></g><g><title>__GI___clone (115 samples, 0.02%)</title><rect x="15.9676%" y="821" width="0.0234%" height="15" fill="rgb(231,79,45)" fg:x="78435" fg:w="115"/><text x="16.2176%" y="831.50"></text></g><g><title>start_thread (115 samples, 0.02%)</title><rect x="15.9676%" y="805" width="0.0234%" height="15" fill="rgb(224,100,7)" fg:x="78435" fg:w="115"/><text x="16.2176%" y="815.50"></text></g><g><title>thread_native_entry (115 samples, 0.02%)</title><rect x="15.9676%" y="789" width="0.0234%" height="15" fill="rgb(241,198,18)" fg:x="78435" fg:w="115"/><text x="16.2176%" y="799.50"></text></g><g><title>Thread::call_run (115 samples, 0.02%)</title><rect x="15.9676%" y="773" width="0.0234%" height="15" fill="rgb(252,97,53)" fg:x="78435" fg:w="115"/><text x="16.2176%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (115 samples, 0.02%)</title><rect x="15.9676%" y="757" width="0.0234%" height="15" fill="rgb(220,88,7)" fg:x="78435" fg:w="115"/><text x="16.2176%" y="767.50"></text></g><g><title>G1_Young_RemSet (117 samples, 0.02%)</title><rect x="15.9674%" y="837" width="0.0238%" height="15" fill="rgb(213,176,14)" fg:x="78434" fg:w="117"/><text x="16.2174%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (64 samples, 0.01%)</title><rect x="16.0112%" y="693" width="0.0130%" height="15" fill="rgb(246,73,7)" fg:x="78649" fg:w="64"/><text x="16.2612%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (125 samples, 0.03%)</title><rect x="15.9992%" y="709" width="0.0254%" height="15" fill="rgb(245,64,36)" fg:x="78590" fg:w="125"/><text x="16.2492%" y="719.50"></text></g><g><title>SpinPause (60 samples, 0.01%)</title><rect x="16.0256%" y="709" width="0.0122%" height="15" fill="rgb(245,80,10)" fg:x="78720" fg:w="60"/><text x="16.2756%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (202 samples, 0.04%)</title><rect x="15.9975%" y="725" width="0.0411%" height="15" fill="rgb(232,107,50)" fg:x="78582" fg:w="202"/><text x="16.2475%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (73 samples, 0.01%)</title><rect x="16.0417%" y="629" width="0.0149%" height="15" fill="rgb(253,3,0)" fg:x="78799" fg:w="73"/><text x="16.2917%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (58 samples, 0.01%)</title><rect x="16.0448%" y="613" width="0.0118%" height="15" fill="rgb(212,99,53)" fg:x="78814" fg:w="58"/><text x="16.2948%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (97 samples, 0.02%)</title><rect x="16.0387%" y="645" width="0.0197%" height="15" fill="rgb(249,111,54)" fg:x="78784" fg:w="97"/><text x="16.2887%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (107 samples, 0.02%)</title><rect x="16.0387%" y="693" width="0.0218%" height="15" fill="rgb(249,55,30)" fg:x="78784" fg:w="107"/><text x="16.2887%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (107 samples, 0.02%)</title><rect x="16.0387%" y="677" width="0.0218%" height="15" fill="rgb(237,47,42)" fg:x="78784" fg:w="107"/><text x="16.2887%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (107 samples, 0.02%)</title><rect x="16.0387%" y="661" width="0.0218%" height="15" fill="rgb(211,20,18)" fg:x="78784" fg:w="107"/><text x="16.2887%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (115 samples, 0.02%)</title><rect x="16.0387%" y="725" width="0.0234%" height="15" fill="rgb(231,203,46)" fg:x="78784" fg:w="115"/><text x="16.2887%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (115 samples, 0.02%)</title><rect x="16.0387%" y="709" width="0.0234%" height="15" fill="rgb(237,142,3)" fg:x="78784" fg:w="115"/><text x="16.2887%" y="719.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (58 samples, 0.01%)</title><rect x="16.0704%" y="693" width="0.0118%" height="15" fill="rgb(241,107,1)" fg:x="78940" fg:w="58"/><text x="16.3204%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (57 samples, 0.01%)</title><rect x="16.0706%" y="677" width="0.0116%" height="15" fill="rgb(229,83,13)" fg:x="78941" fg:w="57"/><text x="16.3206%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (57 samples, 0.01%)</title><rect x="16.0706%" y="661" width="0.0116%" height="15" fill="rgb(241,91,40)" fg:x="78941" fg:w="57"/><text x="16.3206%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (129 samples, 0.03%)</title><rect x="16.0704%" y="709" width="0.0263%" height="15" fill="rgb(225,3,45)" fg:x="78940" fg:w="129"/><text x="16.3204%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (71 samples, 0.01%)</title><rect x="16.0822%" y="693" width="0.0145%" height="15" fill="rgb(244,223,14)" fg:x="78998" fg:w="71"/><text x="16.3322%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (71 samples, 0.01%)</title><rect x="16.0822%" y="677" width="0.0145%" height="15" fill="rgb(224,124,37)" fg:x="78998" fg:w="71"/><text x="16.3322%" y="687.50"></text></g><g><title>JavaThread::oops_do (71 samples, 0.01%)</title><rect x="16.0822%" y="661" width="0.0145%" height="15" fill="rgb(251,171,30)" fg:x="78998" fg:w="71"/><text x="16.3322%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (54 samples, 0.01%)</title><rect x="16.0857%" y="645" width="0.0110%" height="15" fill="rgb(236,46,54)" fg:x="79015" fg:w="54"/><text x="16.3357%" y="655.50"></text></g><g><title>G1ParTask::work (516 samples, 0.11%)</title><rect x="15.9975%" y="741" width="0.1050%" height="15" fill="rgb(245,213,5)" fg:x="78582" fg:w="516"/><text x="16.2475%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (158 samples, 0.03%)</title><rect x="16.0704%" y="725" width="0.0322%" height="15" fill="rgb(230,144,27)" fg:x="78940" fg:w="158"/><text x="16.3204%" y="735.50"></text></g><g><title>ParallelSPCleanupTask::work (60 samples, 0.01%)</title><rect x="16.1148%" y="741" width="0.0122%" height="15" fill="rgb(220,86,6)" fg:x="79158" fg:w="60"/><text x="16.3648%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (56 samples, 0.01%)</title><rect x="16.1156%" y="725" width="0.0114%" height="15" fill="rgb(240,20,13)" fg:x="79162" fg:w="56"/><text x="16.3656%" y="735.50"></text></g><g><title>finish_task_switch (50 samples, 0.01%)</title><rect x="16.1288%" y="533" width="0.0102%" height="15" fill="rgb(217,89,34)" fg:x="79227" fg:w="50"/><text x="16.3788%" y="543.50"></text></g><g><title>do_syscall_64 (69 samples, 0.01%)</title><rect x="16.1278%" y="645" width="0.0140%" height="15" fill="rgb(229,13,5)" fg:x="79222" fg:w="69"/><text x="16.3778%" y="655.50"></text></g><g><title>__x64_sys_futex (69 samples, 0.01%)</title><rect x="16.1278%" y="629" width="0.0140%" height="15" fill="rgb(244,67,35)" fg:x="79222" fg:w="69"/><text x="16.3778%" y="639.50"></text></g><g><title>do_futex (69 samples, 0.01%)</title><rect x="16.1278%" y="613" width="0.0140%" height="15" fill="rgb(221,40,2)" fg:x="79222" fg:w="69"/><text x="16.3778%" y="623.50"></text></g><g><title>futex_wait (68 samples, 0.01%)</title><rect x="16.1280%" y="597" width="0.0138%" height="15" fill="rgb(237,157,21)" fg:x="79223" fg:w="68"/><text x="16.3780%" y="607.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.01%)</title><rect x="16.1280%" y="581" width="0.0138%" height="15" fill="rgb(222,94,11)" fg:x="79223" fg:w="68"/><text x="16.3780%" y="591.50"></text></g><g><title>schedule (65 samples, 0.01%)</title><rect x="16.1286%" y="565" width="0.0132%" height="15" fill="rgb(249,113,6)" fg:x="79226" fg:w="65"/><text x="16.3786%" y="575.50"></text></g><g><title>__schedule (65 samples, 0.01%)</title><rect x="16.1286%" y="549" width="0.0132%" height="15" fill="rgb(238,137,36)" fg:x="79226" fg:w="65"/><text x="16.3786%" y="559.50"></text></g><g><title>GC_Thread#0 (745 samples, 0.15%)</title><rect x="15.9912%" y="837" width="0.1517%" height="15" fill="rgb(210,102,26)" fg:x="78551" fg:w="745"/><text x="16.2412%" y="847.50"></text></g><g><title>__GI___clone (725 samples, 0.15%)</title><rect x="15.9953%" y="821" width="0.1476%" height="15" fill="rgb(218,30,30)" fg:x="78571" fg:w="725"/><text x="16.2453%" y="831.50"></text></g><g><title>start_thread (725 samples, 0.15%)</title><rect x="15.9953%" y="805" width="0.1476%" height="15" fill="rgb(214,67,26)" fg:x="78571" fg:w="725"/><text x="16.2453%" y="815.50"></text></g><g><title>thread_native_entry (725 samples, 0.15%)</title><rect x="15.9953%" y="789" width="0.1476%" height="15" fill="rgb(251,9,53)" fg:x="78571" fg:w="725"/><text x="16.2453%" y="799.50"></text></g><g><title>Thread::call_run (725 samples, 0.15%)</title><rect x="15.9953%" y="773" width="0.1476%" height="15" fill="rgb(228,204,25)" fg:x="78571" fg:w="725"/><text x="16.2453%" y="783.50"></text></g><g><title>GangWorker::loop (725 samples, 0.15%)</title><rect x="15.9953%" y="757" width="0.1476%" height="15" fill="rgb(207,153,8)" fg:x="78571" fg:w="725"/><text x="16.2453%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (77 samples, 0.02%)</title><rect x="16.1272%" y="741" width="0.0157%" height="15" fill="rgb(242,9,16)" fg:x="79219" fg:w="77"/><text x="16.3772%" y="751.50"></text></g><g><title>PosixSemaphore::wait (75 samples, 0.02%)</title><rect x="16.1276%" y="725" width="0.0153%" height="15" fill="rgb(217,211,10)" fg:x="79221" fg:w="75"/><text x="16.3776%" y="735.50"></text></g><g><title>__new_sem_wait_slow (75 samples, 0.02%)</title><rect x="16.1276%" y="709" width="0.0153%" height="15" fill="rgb(219,228,52)" fg:x="79221" fg:w="75"/><text x="16.3776%" y="719.50"></text></g><g><title>do_futex_wait (75 samples, 0.02%)</title><rect x="16.1276%" y="693" width="0.0153%" height="15" fill="rgb(231,92,29)" fg:x="79221" fg:w="75"/><text x="16.3776%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (75 samples, 0.02%)</title><rect x="16.1276%" y="677" width="0.0153%" height="15" fill="rgb(232,8,23)" fg:x="79221" fg:w="75"/><text x="16.3776%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.02%)</title><rect x="16.1278%" y="661" width="0.0151%" height="15" fill="rgb(216,211,34)" fg:x="79222" fg:w="74"/><text x="16.3778%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (78 samples, 0.02%)</title><rect x="16.1606%" y="693" width="0.0159%" height="15" fill="rgb(236,151,0)" fg:x="79383" fg:w="78"/><text x="16.4106%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (137 samples, 0.03%)</title><rect x="16.1494%" y="709" width="0.0279%" height="15" fill="rgb(209,168,3)" fg:x="79328" fg:w="137"/><text x="16.3994%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (196 samples, 0.04%)</title><rect x="16.1476%" y="725" width="0.0399%" height="15" fill="rgb(208,129,28)" fg:x="79319" fg:w="196"/><text x="16.3976%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (92 samples, 0.02%)</title><rect x="16.1903%" y="629" width="0.0187%" height="15" fill="rgb(229,78,22)" fg:x="79529" fg:w="92"/><text x="16.4403%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (63 samples, 0.01%)</title><rect x="16.1962%" y="613" width="0.0128%" height="15" fill="rgb(228,187,13)" fg:x="79558" fg:w="63"/><text x="16.4462%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (111 samples, 0.02%)</title><rect x="16.1875%" y="645" width="0.0226%" height="15" fill="rgb(240,119,24)" fg:x="79515" fg:w="111"/><text x="16.4375%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (125 samples, 0.03%)</title><rect x="16.1875%" y="725" width="0.0254%" height="15" fill="rgb(209,194,42)" fg:x="79515" fg:w="125"/><text x="16.4375%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (125 samples, 0.03%)</title><rect x="16.1875%" y="709" width="0.0254%" height="15" fill="rgb(247,200,46)" fg:x="79515" fg:w="125"/><text x="16.4375%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (125 samples, 0.03%)</title><rect x="16.1875%" y="693" width="0.0254%" height="15" fill="rgb(218,76,16)" fg:x="79515" fg:w="125"/><text x="16.4375%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (125 samples, 0.03%)</title><rect x="16.1875%" y="677" width="0.0254%" height="15" fill="rgb(225,21,48)" fg:x="79515" fg:w="125"/><text x="16.4375%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (125 samples, 0.03%)</title><rect x="16.1875%" y="661" width="0.0254%" height="15" fill="rgb(239,223,50)" fg:x="79515" fg:w="125"/><text x="16.4375%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (64 samples, 0.01%)</title><rect x="16.2131%" y="661" width="0.0130%" height="15" fill="rgb(244,45,21)" fg:x="79641" fg:w="64"/><text x="16.4631%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (69 samples, 0.01%)</title><rect x="16.2129%" y="677" width="0.0140%" height="15" fill="rgb(232,33,43)" fg:x="79640" fg:w="69"/><text x="16.4629%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (89 samples, 0.02%)</title><rect x="16.2129%" y="725" width="0.0181%" height="15" fill="rgb(209,8,3)" fg:x="79640" fg:w="89"/><text x="16.4629%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (89 samples, 0.02%)</title><rect x="16.2129%" y="709" width="0.0181%" height="15" fill="rgb(214,25,53)" fg:x="79640" fg:w="89"/><text x="16.4629%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (89 samples, 0.02%)</title><rect x="16.2129%" y="693" width="0.0181%" height="15" fill="rgb(254,186,54)" fg:x="79640" fg:w="89"/><text x="16.4629%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (50 samples, 0.01%)</title><rect x="16.2349%" y="629" width="0.0102%" height="15" fill="rgb(208,174,49)" fg:x="79748" fg:w="50"/><text x="16.4849%" y="639.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (71 samples, 0.01%)</title><rect x="16.2310%" y="693" width="0.0145%" height="15" fill="rgb(233,191,51)" fg:x="79729" fg:w="71"/><text x="16.4810%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (71 samples, 0.01%)</title><rect x="16.2310%" y="677" width="0.0145%" height="15" fill="rgb(222,134,10)" fg:x="79729" fg:w="71"/><text x="16.4810%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (71 samples, 0.01%)</title><rect x="16.2310%" y="661" width="0.0145%" height="15" fill="rgb(230,226,20)" fg:x="79729" fg:w="71"/><text x="16.4810%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (63 samples, 0.01%)</title><rect x="16.2327%" y="645" width="0.0128%" height="15" fill="rgb(251,111,25)" fg:x="79737" fg:w="63"/><text x="16.4827%" y="655.50"></text></g><g><title>InterpreterOopMap::iterate_oop (64 samples, 0.01%)</title><rect x="16.2471%" y="629" width="0.0130%" height="15" fill="rgb(224,40,46)" fg:x="79808" fg:w="64"/><text x="16.4971%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (64 samples, 0.01%)</title><rect x="16.2471%" y="613" width="0.0130%" height="15" fill="rgb(236,108,47)" fg:x="79808" fg:w="64"/><text x="16.4971%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (147 samples, 0.03%)</title><rect x="16.2310%" y="709" width="0.0299%" height="15" fill="rgb(234,93,0)" fg:x="79729" fg:w="147"/><text x="16.4810%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (76 samples, 0.02%)</title><rect x="16.2455%" y="693" width="0.0155%" height="15" fill="rgb(224,213,32)" fg:x="79800" fg:w="76"/><text x="16.4955%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (76 samples, 0.02%)</title><rect x="16.2455%" y="677" width="0.0155%" height="15" fill="rgb(251,11,48)" fg:x="79800" fg:w="76"/><text x="16.4955%" y="687.50"></text></g><g><title>JavaThread::oops_do (76 samples, 0.02%)</title><rect x="16.2455%" y="661" width="0.0155%" height="15" fill="rgb(236,173,5)" fg:x="79800" fg:w="76"/><text x="16.4955%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (68 samples, 0.01%)</title><rect x="16.2471%" y="645" width="0.0138%" height="15" fill="rgb(230,95,12)" fg:x="79808" fg:w="68"/><text x="16.4971%" y="655.50"></text></g><g><title>G1ParTask::work (561 samples, 0.11%)</title><rect x="16.1474%" y="741" width="0.1142%" height="15" fill="rgb(232,209,1)" fg:x="79318" fg:w="561"/><text x="16.3974%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (150 samples, 0.03%)</title><rect x="16.2310%" y="725" width="0.0305%" height="15" fill="rgb(232,6,1)" fg:x="79729" fg:w="150"/><text x="16.4810%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.02%)</title><rect x="16.2830%" y="517" width="0.0163%" height="15" fill="rgb(210,224,50)" fg:x="79984" fg:w="80"/><text x="16.5330%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (78 samples, 0.02%)</title><rect x="16.2834%" y="501" width="0.0159%" height="15" fill="rgb(228,127,35)" fg:x="79986" fg:w="78"/><text x="16.5334%" y="511.50"></text></g><g><title>native_write_msr (77 samples, 0.02%)</title><rect x="16.2836%" y="485" width="0.0157%" height="15" fill="rgb(245,102,45)" fg:x="79987" fg:w="77"/><text x="16.5336%" y="495.50"></text></g><g><title>finish_task_switch (84 samples, 0.02%)</title><rect x="16.2828%" y="533" width="0.0171%" height="15" fill="rgb(214,1,49)" fg:x="79983" fg:w="84"/><text x="16.5328%" y="543.50"></text></g><g><title>futex_wait_queue_me (95 samples, 0.02%)</title><rect x="16.2821%" y="581" width="0.0193%" height="15" fill="rgb(226,163,40)" fg:x="79980" fg:w="95"/><text x="16.5321%" y="591.50"></text></g><g><title>schedule (94 samples, 0.02%)</title><rect x="16.2823%" y="565" width="0.0191%" height="15" fill="rgb(239,212,28)" fg:x="79981" fg:w="94"/><text x="16.5323%" y="575.50"></text></g><g><title>__schedule (94 samples, 0.02%)</title><rect x="16.2823%" y="549" width="0.0191%" height="15" fill="rgb(220,20,13)" fg:x="79981" fg:w="94"/><text x="16.5323%" y="559.50"></text></g><g><title>do_syscall_64 (102 samples, 0.02%)</title><rect x="16.2817%" y="645" width="0.0208%" height="15" fill="rgb(210,164,35)" fg:x="79978" fg:w="102"/><text x="16.5317%" y="655.50"></text></g><g><title>__x64_sys_futex (101 samples, 0.02%)</title><rect x="16.2819%" y="629" width="0.0206%" height="15" fill="rgb(248,109,41)" fg:x="79979" fg:w="101"/><text x="16.5319%" y="639.50"></text></g><g><title>do_futex (100 samples, 0.02%)</title><rect x="16.2821%" y="613" width="0.0204%" height="15" fill="rgb(238,23,50)" fg:x="79980" fg:w="100"/><text x="16.5321%" y="623.50"></text></g><g><title>futex_wait (100 samples, 0.02%)</title><rect x="16.2821%" y="597" width="0.0204%" height="15" fill="rgb(211,48,49)" fg:x="79980" fg:w="100"/><text x="16.5321%" y="607.50"></text></g><g><title>__GI___clone (770 samples, 0.16%)</title><rect x="16.1464%" y="821" width="0.1568%" height="15" fill="rgb(223,36,21)" fg:x="79313" fg:w="770"/><text x="16.3964%" y="831.50"></text></g><g><title>start_thread (770 samples, 0.16%)</title><rect x="16.1464%" y="805" width="0.1568%" height="15" fill="rgb(207,123,46)" fg:x="79313" fg:w="770"/><text x="16.3964%" y="815.50"></text></g><g><title>thread_native_entry (770 samples, 0.16%)</title><rect x="16.1464%" y="789" width="0.1568%" height="15" fill="rgb(240,218,32)" fg:x="79313" fg:w="770"/><text x="16.3964%" y="799.50"></text></g><g><title>Thread::call_run (770 samples, 0.16%)</title><rect x="16.1464%" y="773" width="0.1568%" height="15" fill="rgb(252,5,43)" fg:x="79313" fg:w="770"/><text x="16.3964%" y="783.50"></text></g><g><title>GangWorker::loop (770 samples, 0.16%)</title><rect x="16.1464%" y="757" width="0.1568%" height="15" fill="rgb(252,84,19)" fg:x="79313" fg:w="770"/><text x="16.3964%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (110 samples, 0.02%)</title><rect x="16.2807%" y="741" width="0.0224%" height="15" fill="rgb(243,152,39)" fg:x="79973" fg:w="110"/><text x="16.5307%" y="751.50"></text></g><g><title>PosixSemaphore::wait (110 samples, 0.02%)</title><rect x="16.2807%" y="725" width="0.0224%" height="15" fill="rgb(234,160,15)" fg:x="79973" fg:w="110"/><text x="16.5307%" y="735.50"></text></g><g><title>__new_sem_wait_slow (110 samples, 0.02%)</title><rect x="16.2807%" y="709" width="0.0224%" height="15" fill="rgb(237,34,20)" fg:x="79973" fg:w="110"/><text x="16.5307%" y="719.50"></text></g><g><title>do_futex_wait (108 samples, 0.02%)</title><rect x="16.2811%" y="693" width="0.0220%" height="15" fill="rgb(229,97,13)" fg:x="79975" fg:w="108"/><text x="16.5311%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (108 samples, 0.02%)</title><rect x="16.2811%" y="677" width="0.0220%" height="15" fill="rgb(234,71,50)" fg:x="79975" fg:w="108"/><text x="16.5311%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (106 samples, 0.02%)</title><rect x="16.2815%" y="661" width="0.0216%" height="15" fill="rgb(253,155,4)" fg:x="79977" fg:w="106"/><text x="16.5315%" y="671.50"></text></g><g><title>GC_Thread#1 (788 samples, 0.16%)</title><rect x="16.1429%" y="837" width="0.1604%" height="15" fill="rgb(222,185,37)" fg:x="79296" fg:w="788"/><text x="16.3929%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (99 samples, 0.02%)</title><rect x="16.3267%" y="693" width="0.0202%" height="15" fill="rgb(251,177,13)" fg:x="80199" fg:w="99"/><text x="16.5767%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (171 samples, 0.03%)</title><rect x="16.3129%" y="709" width="0.0348%" height="15" fill="rgb(250,179,40)" fg:x="80131" fg:w="171"/><text x="16.5629%" y="719.50"></text></g><g><title>SpinPause (61 samples, 0.01%)</title><rect x="16.3493%" y="709" width="0.0124%" height="15" fill="rgb(242,44,2)" fg:x="80310" fg:w="61"/><text x="16.5993%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (258 samples, 0.05%)</title><rect x="16.3102%" y="725" width="0.0525%" height="15" fill="rgb(216,177,13)" fg:x="80118" fg:w="258"/><text x="16.5602%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (142 samples, 0.03%)</title><rect x="16.3683%" y="629" width="0.0289%" height="15" fill="rgb(216,106,43)" fg:x="80403" fg:w="142"/><text x="16.6183%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (113 samples, 0.02%)</title><rect x="16.3742%" y="613" width="0.0230%" height="15" fill="rgb(216,183,2)" fg:x="80432" fg:w="113"/><text x="16.6242%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (179 samples, 0.04%)</title><rect x="16.3630%" y="645" width="0.0364%" height="15" fill="rgb(249,75,3)" fg:x="80377" fg:w="179"/><text x="16.6130%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (191 samples, 0.04%)</title><rect x="16.3630%" y="725" width="0.0389%" height="15" fill="rgb(219,67,39)" fg:x="80377" fg:w="191"/><text x="16.6130%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (191 samples, 0.04%)</title><rect x="16.3630%" y="709" width="0.0389%" height="15" fill="rgb(253,228,2)" fg:x="80377" fg:w="191"/><text x="16.6130%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (191 samples, 0.04%)</title><rect x="16.3630%" y="693" width="0.0389%" height="15" fill="rgb(235,138,27)" fg:x="80377" fg:w="191"/><text x="16.6130%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (191 samples, 0.04%)</title><rect x="16.3630%" y="677" width="0.0389%" height="15" fill="rgb(236,97,51)" fg:x="80377" fg:w="191"/><text x="16.6130%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (191 samples, 0.04%)</title><rect x="16.3630%" y="661" width="0.0389%" height="15" fill="rgb(240,80,30)" fg:x="80377" fg:w="191"/><text x="16.6130%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (50 samples, 0.01%)</title><rect x="16.4018%" y="661" width="0.0102%" height="15" fill="rgb(230,178,19)" fg:x="80568" fg:w="50"/><text x="16.6518%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (53 samples, 0.01%)</title><rect x="16.4018%" y="677" width="0.0108%" height="15" fill="rgb(210,190,27)" fg:x="80568" fg:w="53"/><text x="16.6518%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (69 samples, 0.01%)</title><rect x="16.4018%" y="725" width="0.0140%" height="15" fill="rgb(222,107,31)" fg:x="80568" fg:w="69"/><text x="16.6518%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (69 samples, 0.01%)</title><rect x="16.4018%" y="709" width="0.0140%" height="15" fill="rgb(216,127,34)" fg:x="80568" fg:w="69"/><text x="16.6518%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (69 samples, 0.01%)</title><rect x="16.4018%" y="693" width="0.0140%" height="15" fill="rgb(234,116,52)" fg:x="80568" fg:w="69"/><text x="16.6518%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (80 samples, 0.02%)</title><rect x="16.4161%" y="709" width="0.0163%" height="15" fill="rgb(222,124,15)" fg:x="80638" fg:w="80"/><text x="16.6661%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (80 samples, 0.02%)</title><rect x="16.4161%" y="693" width="0.0163%" height="15" fill="rgb(231,179,28)" fg:x="80638" fg:w="80"/><text x="16.6661%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (80 samples, 0.02%)</title><rect x="16.4161%" y="677" width="0.0163%" height="15" fill="rgb(226,93,45)" fg:x="80638" fg:w="80"/><text x="16.6661%" y="687.50"></text></g><g><title>JavaThread::oops_do (80 samples, 0.02%)</title><rect x="16.4161%" y="661" width="0.0163%" height="15" fill="rgb(215,8,51)" fg:x="80638" fg:w="80"/><text x="16.6661%" y="671.50"></text></g><g><title>G1ParTask::work (610 samples, 0.12%)</title><rect x="16.3102%" y="741" width="0.1242%" height="15" fill="rgb(223,106,5)" fg:x="80118" fg:w="610"/><text x="16.5602%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (91 samples, 0.02%)</title><rect x="16.4159%" y="725" width="0.0185%" height="15" fill="rgb(250,191,5)" fg:x="80637" fg:w="91"/><text x="16.6659%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.01%)</title><rect x="16.4568%" y="517" width="0.0102%" height="15" fill="rgb(242,132,44)" fg:x="80838" fg:w="50"/><text x="16.7068%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.01%)</title><rect x="16.4568%" y="501" width="0.0102%" height="15" fill="rgb(251,152,29)" fg:x="80838" fg:w="50"/><text x="16.7068%" y="511.50"></text></g><g><title>native_write_msr (50 samples, 0.01%)</title><rect x="16.4568%" y="485" width="0.0102%" height="15" fill="rgb(218,179,5)" fg:x="80838" fg:w="50"/><text x="16.7068%" y="495.50"></text></g><g><title>finish_task_switch (54 samples, 0.01%)</title><rect x="16.4564%" y="533" width="0.0110%" height="15" fill="rgb(227,67,19)" fg:x="80836" fg:w="54"/><text x="16.7064%" y="543.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.01%)</title><rect x="16.4548%" y="581" width="0.0138%" height="15" fill="rgb(233,119,31)" fg:x="80828" fg:w="68"/><text x="16.7048%" y="591.50"></text></g><g><title>schedule (67 samples, 0.01%)</title><rect x="16.4550%" y="565" width="0.0136%" height="15" fill="rgb(241,120,22)" fg:x="80829" fg:w="67"/><text x="16.7050%" y="575.50"></text></g><g><title>__schedule (66 samples, 0.01%)</title><rect x="16.4552%" y="549" width="0.0134%" height="15" fill="rgb(224,102,30)" fg:x="80830" fg:w="66"/><text x="16.7052%" y="559.50"></text></g><g><title>do_syscall_64 (72 samples, 0.01%)</title><rect x="16.4542%" y="645" width="0.0147%" height="15" fill="rgb(210,164,37)" fg:x="80825" fg:w="72"/><text x="16.7042%" y="655.50"></text></g><g><title>__x64_sys_futex (71 samples, 0.01%)</title><rect x="16.4544%" y="629" width="0.0145%" height="15" fill="rgb(226,191,16)" fg:x="80826" fg:w="71"/><text x="16.7044%" y="639.50"></text></g><g><title>do_futex (71 samples, 0.01%)</title><rect x="16.4544%" y="613" width="0.0145%" height="15" fill="rgb(214,40,45)" fg:x="80826" fg:w="71"/><text x="16.7044%" y="623.50"></text></g><g><title>futex_wait (71 samples, 0.01%)</title><rect x="16.4544%" y="597" width="0.0145%" height="15" fill="rgb(244,29,26)" fg:x="80826" fg:w="71"/><text x="16.7044%" y="607.50"></text></g><g><title>__GI___clone (797 samples, 0.16%)</title><rect x="16.3076%" y="821" width="0.1623%" height="15" fill="rgb(216,16,5)" fg:x="80105" fg:w="797"/><text x="16.5576%" y="831.50"></text></g><g><title>start_thread (797 samples, 0.16%)</title><rect x="16.3076%" y="805" width="0.1623%" height="15" fill="rgb(249,76,35)" fg:x="80105" fg:w="797"/><text x="16.5576%" y="815.50"></text></g><g><title>thread_native_entry (797 samples, 0.16%)</title><rect x="16.3076%" y="789" width="0.1623%" height="15" fill="rgb(207,11,44)" fg:x="80105" fg:w="797"/><text x="16.5576%" y="799.50"></text></g><g><title>Thread::call_run (797 samples, 0.16%)</title><rect x="16.3076%" y="773" width="0.1623%" height="15" fill="rgb(228,190,49)" fg:x="80105" fg:w="797"/><text x="16.5576%" y="783.50"></text></g><g><title>GangWorker::loop (797 samples, 0.16%)</title><rect x="16.3076%" y="757" width="0.1623%" height="15" fill="rgb(214,173,12)" fg:x="80105" fg:w="797"/><text x="16.5576%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (81 samples, 0.02%)</title><rect x="16.4534%" y="741" width="0.0165%" height="15" fill="rgb(218,26,35)" fg:x="80821" fg:w="81"/><text x="16.7034%" y="751.50"></text></g><g><title>PosixSemaphore::wait (81 samples, 0.02%)</title><rect x="16.4534%" y="725" width="0.0165%" height="15" fill="rgb(220,200,19)" fg:x="80821" fg:w="81"/><text x="16.7034%" y="735.50"></text></g><g><title>__new_sem_wait_slow (81 samples, 0.02%)</title><rect x="16.4534%" y="709" width="0.0165%" height="15" fill="rgb(239,95,49)" fg:x="80821" fg:w="81"/><text x="16.7034%" y="719.50"></text></g><g><title>do_futex_wait (80 samples, 0.02%)</title><rect x="16.4536%" y="693" width="0.0163%" height="15" fill="rgb(235,85,53)" fg:x="80822" fg:w="80"/><text x="16.7036%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (80 samples, 0.02%)</title><rect x="16.4536%" y="677" width="0.0163%" height="15" fill="rgb(233,133,31)" fg:x="80822" fg:w="80"/><text x="16.7036%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.02%)</title><rect x="16.4540%" y="661" width="0.0159%" height="15" fill="rgb(218,25,20)" fg:x="80824" fg:w="78"/><text x="16.7040%" y="671.50"></text></g><g><title>GC_Thread#2 (820 samples, 0.17%)</title><rect x="16.3033%" y="837" width="0.1669%" height="15" fill="rgb(252,210,38)" fg:x="80084" fg:w="820"/><text x="16.5533%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (81 samples, 0.02%)</title><rect x="16.4914%" y="693" width="0.0165%" height="15" fill="rgb(242,134,21)" fg:x="81008" fg:w="81"/><text x="16.7414%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (146 samples, 0.03%)</title><rect x="16.4788%" y="709" width="0.0297%" height="15" fill="rgb(213,28,48)" fg:x="80946" fg:w="146"/><text x="16.7288%" y="719.50"></text></g><g><title>SpinPause (57 samples, 0.01%)</title><rect x="16.5095%" y="709" width="0.0116%" height="15" fill="rgb(250,196,2)" fg:x="81097" fg:w="57"/><text x="16.7595%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (224 samples, 0.05%)</title><rect x="16.4768%" y="725" width="0.0456%" height="15" fill="rgb(227,5,17)" fg:x="80936" fg:w="224"/><text x="16.7268%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (70 samples, 0.01%)</title><rect x="16.5250%" y="629" width="0.0143%" height="15" fill="rgb(221,226,24)" fg:x="81173" fg:w="70"/><text x="16.7750%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (60 samples, 0.01%)</title><rect x="16.5270%" y="613" width="0.0122%" height="15" fill="rgb(211,5,48)" fg:x="81183" fg:w="60"/><text x="16.7770%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (87 samples, 0.02%)</title><rect x="16.5224%" y="645" width="0.0177%" height="15" fill="rgb(219,150,6)" fg:x="81160" fg:w="87"/><text x="16.7724%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (101 samples, 0.02%)</title><rect x="16.5224%" y="693" width="0.0206%" height="15" fill="rgb(251,46,16)" fg:x="81160" fg:w="101"/><text x="16.7724%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (101 samples, 0.02%)</title><rect x="16.5224%" y="677" width="0.0206%" height="15" fill="rgb(220,204,40)" fg:x="81160" fg:w="101"/><text x="16.7724%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (101 samples, 0.02%)</title><rect x="16.5224%" y="661" width="0.0206%" height="15" fill="rgb(211,85,2)" fg:x="81160" fg:w="101"/><text x="16.7724%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (122 samples, 0.02%)</title><rect x="16.5224%" y="725" width="0.0248%" height="15" fill="rgb(229,17,7)" fg:x="81160" fg:w="122"/><text x="16.7724%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (122 samples, 0.02%)</title><rect x="16.5224%" y="709" width="0.0248%" height="15" fill="rgb(239,72,28)" fg:x="81160" fg:w="122"/><text x="16.7724%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (62 samples, 0.01%)</title><rect x="16.5519%" y="629" width="0.0126%" height="15" fill="rgb(230,47,54)" fg:x="81305" fg:w="62"/><text x="16.8019%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (51 samples, 0.01%)</title><rect x="16.5541%" y="613" width="0.0104%" height="15" fill="rgb(214,50,8)" fg:x="81316" fg:w="51"/><text x="16.8041%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (86 samples, 0.02%)</title><rect x="16.5474%" y="645" width="0.0175%" height="15" fill="rgb(216,198,43)" fg:x="81283" fg:w="86"/><text x="16.7974%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (108 samples, 0.02%)</title><rect x="16.5474%" y="661" width="0.0220%" height="15" fill="rgb(234,20,35)" fg:x="81283" fg:w="108"/><text x="16.7974%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (112 samples, 0.02%)</title><rect x="16.5472%" y="677" width="0.0228%" height="15" fill="rgb(254,45,19)" fg:x="81282" fg:w="112"/><text x="16.7972%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (124 samples, 0.03%)</title><rect x="16.5472%" y="725" width="0.0252%" height="15" fill="rgb(219,14,44)" fg:x="81282" fg:w="124"/><text x="16.7972%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (124 samples, 0.03%)</title><rect x="16.5472%" y="709" width="0.0252%" height="15" fill="rgb(217,220,26)" fg:x="81282" fg:w="124"/><text x="16.7972%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (124 samples, 0.03%)</title><rect x="16.5472%" y="693" width="0.0252%" height="15" fill="rgb(213,158,28)" fg:x="81282" fg:w="124"/><text x="16.7972%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (99 samples, 0.02%)</title><rect x="16.5735%" y="709" width="0.0202%" height="15" fill="rgb(252,51,52)" fg:x="81411" fg:w="99"/><text x="16.8235%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (55 samples, 0.01%)</title><rect x="16.5824%" y="693" width="0.0112%" height="15" fill="rgb(246,89,16)" fg:x="81455" fg:w="55"/><text x="16.8324%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (55 samples, 0.01%)</title><rect x="16.5824%" y="677" width="0.0112%" height="15" fill="rgb(216,158,49)" fg:x="81455" fg:w="55"/><text x="16.8324%" y="687.50"></text></g><g><title>JavaThread::oops_do (55 samples, 0.01%)</title><rect x="16.5824%" y="661" width="0.0112%" height="15" fill="rgb(236,107,19)" fg:x="81455" fg:w="55"/><text x="16.8324%" y="671.50"></text></g><g><title>G1ParTask::work (598 samples, 0.12%)</title><rect x="16.4768%" y="741" width="0.1217%" height="15" fill="rgb(228,185,30)" fg:x="80936" fg:w="598"/><text x="16.7268%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (128 samples, 0.03%)</title><rect x="16.5724%" y="725" width="0.0261%" height="15" fill="rgb(246,134,8)" fg:x="81406" fg:w="128"/><text x="16.8224%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (53 samples, 0.01%)</title><rect x="16.6005%" y="741" width="0.0108%" height="15" fill="rgb(214,143,50)" fg:x="81544" fg:w="53"/><text x="16.8505%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (82 samples, 0.02%)</title><rect x="16.6203%" y="517" width="0.0167%" height="15" fill="rgb(228,75,8)" fg:x="81641" fg:w="82"/><text x="16.8703%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.02%)</title><rect x="16.6205%" y="501" width="0.0165%" height="15" fill="rgb(207,175,4)" fg:x="81642" fg:w="81"/><text x="16.8705%" y="511.50"></text></g><g><title>native_write_msr (81 samples, 0.02%)</title><rect x="16.6205%" y="485" width="0.0165%" height="15" fill="rgb(205,108,24)" fg:x="81642" fg:w="81"/><text x="16.8705%" y="495.50"></text></g><g><title>finish_task_switch (87 samples, 0.02%)</title><rect x="16.6195%" y="533" width="0.0177%" height="15" fill="rgb(244,120,49)" fg:x="81637" fg:w="87"/><text x="16.8695%" y="543.50"></text></g><g><title>futex_wait_queue_me (98 samples, 0.02%)</title><rect x="16.6187%" y="581" width="0.0200%" height="15" fill="rgb(223,47,38)" fg:x="81633" fg:w="98"/><text x="16.8687%" y="591.50"></text></g><g><title>schedule (98 samples, 0.02%)</title><rect x="16.6187%" y="565" width="0.0200%" height="15" fill="rgb(229,179,11)" fg:x="81633" fg:w="98"/><text x="16.8687%" y="575.50"></text></g><g><title>__schedule (98 samples, 0.02%)</title><rect x="16.6187%" y="549" width="0.0200%" height="15" fill="rgb(231,122,1)" fg:x="81633" fg:w="98"/><text x="16.8687%" y="559.50"></text></g><g><title>do_syscall_64 (100 samples, 0.02%)</title><rect x="16.6185%" y="645" width="0.0204%" height="15" fill="rgb(245,119,9)" fg:x="81632" fg:w="100"/><text x="16.8685%" y="655.50"></text></g><g><title>__x64_sys_futex (100 samples, 0.02%)</title><rect x="16.6185%" y="629" width="0.0204%" height="15" fill="rgb(241,163,25)" fg:x="81632" fg:w="100"/><text x="16.8685%" y="639.50"></text></g><g><title>do_futex (100 samples, 0.02%)</title><rect x="16.6185%" y="613" width="0.0204%" height="15" fill="rgb(217,214,3)" fg:x="81632" fg:w="100"/><text x="16.8685%" y="623.50"></text></g><g><title>futex_wait (100 samples, 0.02%)</title><rect x="16.6185%" y="597" width="0.0204%" height="15" fill="rgb(240,86,28)" fg:x="81632" fg:w="100"/><text x="16.8685%" y="607.50"></text></g><g><title>GC_Thread#3 (831 samples, 0.17%)</title><rect x="16.4702%" y="837" width="0.1692%" height="15" fill="rgb(215,47,9)" fg:x="80904" fg:w="831"/><text x="16.7202%" y="847.50"></text></g><g><title>__GI___clone (811 samples, 0.17%)</title><rect x="16.4743%" y="821" width="0.1651%" height="15" fill="rgb(252,25,45)" fg:x="80924" fg:w="811"/><text x="16.7243%" y="831.50"></text></g><g><title>start_thread (811 samples, 0.17%)</title><rect x="16.4743%" y="805" width="0.1651%" height="15" fill="rgb(251,164,9)" fg:x="80924" fg:w="811"/><text x="16.7243%" y="815.50"></text></g><g><title>thread_native_entry (811 samples, 0.17%)</title><rect x="16.4743%" y="789" width="0.1651%" height="15" fill="rgb(233,194,0)" fg:x="80924" fg:w="811"/><text x="16.7243%" y="799.50"></text></g><g><title>Thread::call_run (811 samples, 0.17%)</title><rect x="16.4743%" y="773" width="0.1651%" height="15" fill="rgb(249,111,24)" fg:x="80924" fg:w="811"/><text x="16.7243%" y="783.50"></text></g><g><title>GangWorker::loop (811 samples, 0.17%)</title><rect x="16.4743%" y="757" width="0.1651%" height="15" fill="rgb(250,223,3)" fg:x="80924" fg:w="811"/><text x="16.7243%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (105 samples, 0.02%)</title><rect x="16.6180%" y="741" width="0.0214%" height="15" fill="rgb(236,178,37)" fg:x="81630" fg:w="105"/><text x="16.8680%" y="751.50"></text></g><g><title>PosixSemaphore::wait (105 samples, 0.02%)</title><rect x="16.6180%" y="725" width="0.0214%" height="15" fill="rgb(241,158,50)" fg:x="81630" fg:w="105"/><text x="16.8680%" y="735.50"></text></g><g><title>__new_sem_wait_slow (105 samples, 0.02%)</title><rect x="16.6180%" y="709" width="0.0214%" height="15" fill="rgb(213,121,41)" fg:x="81630" fg:w="105"/><text x="16.8680%" y="719.50"></text></g><g><title>do_futex_wait (105 samples, 0.02%)</title><rect x="16.6180%" y="693" width="0.0214%" height="15" fill="rgb(240,92,3)" fg:x="81630" fg:w="105"/><text x="16.8680%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (105 samples, 0.02%)</title><rect x="16.6180%" y="677" width="0.0214%" height="15" fill="rgb(205,123,3)" fg:x="81630" fg:w="105"/><text x="16.8680%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (103 samples, 0.02%)</title><rect x="16.6185%" y="661" width="0.0210%" height="15" fill="rgb(205,97,47)" fg:x="81632" fg:w="103"/><text x="16.8685%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (82 samples, 0.02%)</title><rect x="16.6598%" y="693" width="0.0167%" height="15" fill="rgb(247,152,14)" fg:x="81835" fg:w="82"/><text x="16.9098%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (150 samples, 0.03%)</title><rect x="16.6461%" y="709" width="0.0305%" height="15" fill="rgb(248,195,53)" fg:x="81768" fg:w="150"/><text x="16.8961%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (198 samples, 0.04%)</title><rect x="16.6441%" y="725" width="0.0403%" height="15" fill="rgb(226,201,16)" fg:x="81758" fg:w="198"/><text x="16.8941%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (93 samples, 0.02%)</title><rect x="16.6897%" y="629" width="0.0189%" height="15" fill="rgb(205,98,0)" fg:x="81982" fg:w="93"/><text x="16.9397%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (74 samples, 0.02%)</title><rect x="16.6936%" y="613" width="0.0151%" height="15" fill="rgb(214,191,48)" fg:x="82001" fg:w="74"/><text x="16.9436%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (122 samples, 0.02%)</title><rect x="16.6844%" y="645" width="0.0248%" height="15" fill="rgb(237,112,39)" fg:x="81956" fg:w="122"/><text x="16.9344%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (139 samples, 0.03%)</title><rect x="16.6844%" y="725" width="0.0283%" height="15" fill="rgb(247,203,27)" fg:x="81956" fg:w="139"/><text x="16.9344%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (139 samples, 0.03%)</title><rect x="16.6844%" y="709" width="0.0283%" height="15" fill="rgb(235,124,28)" fg:x="81956" fg:w="139"/><text x="16.9344%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (139 samples, 0.03%)</title><rect x="16.6844%" y="693" width="0.0283%" height="15" fill="rgb(208,207,46)" fg:x="81956" fg:w="139"/><text x="16.9344%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (139 samples, 0.03%)</title><rect x="16.6844%" y="677" width="0.0283%" height="15" fill="rgb(234,176,4)" fg:x="81956" fg:w="139"/><text x="16.9344%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (139 samples, 0.03%)</title><rect x="16.6844%" y="661" width="0.0283%" height="15" fill="rgb(230,133,28)" fg:x="81956" fg:w="139"/><text x="16.9344%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (50 samples, 0.01%)</title><rect x="16.7129%" y="645" width="0.0102%" height="15" fill="rgb(211,137,40)" fg:x="82096" fg:w="50"/><text x="16.9629%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (64 samples, 0.01%)</title><rect x="16.7127%" y="661" width="0.0130%" height="15" fill="rgb(254,35,13)" fg:x="82095" fg:w="64"/><text x="16.9627%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (67 samples, 0.01%)</title><rect x="16.7127%" y="677" width="0.0136%" height="15" fill="rgb(225,49,51)" fg:x="82095" fg:w="67"/><text x="16.9627%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (82 samples, 0.02%)</title><rect x="16.7127%" y="725" width="0.0167%" height="15" fill="rgb(251,10,15)" fg:x="82095" fg:w="82"/><text x="16.9627%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (82 samples, 0.02%)</title><rect x="16.7127%" y="709" width="0.0167%" height="15" fill="rgb(228,207,15)" fg:x="82095" fg:w="82"/><text x="16.9627%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (82 samples, 0.02%)</title><rect x="16.7127%" y="693" width="0.0167%" height="15" fill="rgb(241,99,19)" fg:x="82095" fg:w="82"/><text x="16.9627%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (87 samples, 0.02%)</title><rect x="16.7371%" y="629" width="0.0177%" height="15" fill="rgb(207,104,49)" fg:x="82215" fg:w="87"/><text x="16.9871%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (68 samples, 0.01%)</title><rect x="16.7410%" y="613" width="0.0138%" height="15" fill="rgb(234,99,18)" fg:x="82234" fg:w="68"/><text x="16.9910%" y="623.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (124 samples, 0.03%)</title><rect x="16.7304%" y="693" width="0.0252%" height="15" fill="rgb(213,191,49)" fg:x="82182" fg:w="124"/><text x="16.9804%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (123 samples, 0.03%)</title><rect x="16.7306%" y="677" width="0.0250%" height="15" fill="rgb(210,226,19)" fg:x="82183" fg:w="123"/><text x="16.9806%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (123 samples, 0.03%)</title><rect x="16.7306%" y="661" width="0.0250%" height="15" fill="rgb(229,97,18)" fg:x="82183" fg:w="123"/><text x="16.9806%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (108 samples, 0.02%)</title><rect x="16.7337%" y="645" width="0.0220%" height="15" fill="rgb(211,167,15)" fg:x="82198" fg:w="108"/><text x="16.9837%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (154 samples, 0.03%)</title><rect x="16.7304%" y="709" width="0.0314%" height="15" fill="rgb(210,169,34)" fg:x="82182" fg:w="154"/><text x="16.9804%" y="719.50"></text></g><g><title>G1ParTask::work (594 samples, 0.12%)</title><rect x="16.6441%" y="741" width="0.1209%" height="15" fill="rgb(241,121,31)" fg:x="81758" fg:w="594"/><text x="16.8941%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (175 samples, 0.04%)</title><rect x="16.7294%" y="725" width="0.0356%" height="15" fill="rgb(232,40,11)" fg:x="82177" fg:w="175"/><text x="16.9794%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (51 samples, 0.01%)</title><rect x="16.7671%" y="741" width="0.0104%" height="15" fill="rgb(205,86,26)" fg:x="82362" fg:w="51"/><text x="17.0171%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.01%)</title><rect x="16.7866%" y="517" width="0.0145%" height="15" fill="rgb(231,126,28)" fg:x="82458" fg:w="71"/><text x="17.0366%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (68 samples, 0.01%)</title><rect x="16.7872%" y="501" width="0.0138%" height="15" fill="rgb(219,221,18)" fg:x="82461" fg:w="68"/><text x="17.0372%" y="511.50"></text></g><g><title>native_write_msr (68 samples, 0.01%)</title><rect x="16.7872%" y="485" width="0.0138%" height="15" fill="rgb(211,40,0)" fg:x="82461" fg:w="68"/><text x="17.0372%" y="495.50"></text></g><g><title>finish_task_switch (74 samples, 0.02%)</title><rect x="16.7864%" y="533" width="0.0151%" height="15" fill="rgb(239,85,43)" fg:x="82457" fg:w="74"/><text x="17.0364%" y="543.50"></text></g><g><title>do_syscall_64 (90 samples, 0.02%)</title><rect x="16.7852%" y="645" width="0.0183%" height="15" fill="rgb(231,55,21)" fg:x="82451" fg:w="90"/><text x="17.0352%" y="655.50"></text></g><g><title>__x64_sys_futex (90 samples, 0.02%)</title><rect x="16.7852%" y="629" width="0.0183%" height="15" fill="rgb(225,184,43)" fg:x="82451" fg:w="90"/><text x="17.0352%" y="639.50"></text></g><g><title>do_futex (90 samples, 0.02%)</title><rect x="16.7852%" y="613" width="0.0183%" height="15" fill="rgb(251,158,41)" fg:x="82451" fg:w="90"/><text x="17.0352%" y="623.50"></text></g><g><title>futex_wait (89 samples, 0.02%)</title><rect x="16.7854%" y="597" width="0.0181%" height="15" fill="rgb(234,159,37)" fg:x="82452" fg:w="89"/><text x="17.0354%" y="607.50"></text></g><g><title>futex_wait_queue_me (89 samples, 0.02%)</title><rect x="16.7854%" y="581" width="0.0181%" height="15" fill="rgb(216,204,22)" fg:x="82452" fg:w="89"/><text x="17.0354%" y="591.50"></text></g><g><title>schedule (89 samples, 0.02%)</title><rect x="16.7854%" y="565" width="0.0181%" height="15" fill="rgb(214,17,3)" fg:x="82452" fg:w="89"/><text x="17.0354%" y="575.50"></text></g><g><title>__schedule (88 samples, 0.02%)</title><rect x="16.7856%" y="549" width="0.0179%" height="15" fill="rgb(212,111,17)" fg:x="82453" fg:w="88"/><text x="17.0356%" y="559.50"></text></g><g><title>GC_Thread#4 (810 samples, 0.16%)</title><rect x="16.6394%" y="837" width="0.1649%" height="15" fill="rgb(221,157,24)" fg:x="81735" fg:w="810"/><text x="16.8894%" y="847.50"></text></g><g><title>__GI___clone (795 samples, 0.16%)</title><rect x="16.6425%" y="821" width="0.1618%" height="15" fill="rgb(252,16,13)" fg:x="81750" fg:w="795"/><text x="16.8925%" y="831.50"></text></g><g><title>start_thread (795 samples, 0.16%)</title><rect x="16.6425%" y="805" width="0.1618%" height="15" fill="rgb(221,62,2)" fg:x="81750" fg:w="795"/><text x="16.8925%" y="815.50"></text></g><g><title>thread_native_entry (795 samples, 0.16%)</title><rect x="16.6425%" y="789" width="0.1618%" height="15" fill="rgb(247,87,22)" fg:x="81750" fg:w="795"/><text x="16.8925%" y="799.50"></text></g><g><title>Thread::call_run (795 samples, 0.16%)</title><rect x="16.6425%" y="773" width="0.1618%" height="15" fill="rgb(215,73,9)" fg:x="81750" fg:w="795"/><text x="16.8925%" y="783.50"></text></g><g><title>GangWorker::loop (795 samples, 0.16%)</title><rect x="16.6425%" y="757" width="0.1618%" height="15" fill="rgb(207,175,33)" fg:x="81750" fg:w="795"/><text x="16.8925%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (97 samples, 0.02%)</title><rect x="16.7846%" y="741" width="0.0197%" height="15" fill="rgb(243,129,54)" fg:x="82448" fg:w="97"/><text x="17.0346%" y="751.50"></text></g><g><title>PosixSemaphore::wait (97 samples, 0.02%)</title><rect x="16.7846%" y="725" width="0.0197%" height="15" fill="rgb(227,119,45)" fg:x="82448" fg:w="97"/><text x="17.0346%" y="735.50"></text></g><g><title>__new_sem_wait_slow (97 samples, 0.02%)</title><rect x="16.7846%" y="709" width="0.0197%" height="15" fill="rgb(205,109,36)" fg:x="82448" fg:w="97"/><text x="17.0346%" y="719.50"></text></g><g><title>do_futex_wait (94 samples, 0.02%)</title><rect x="16.7852%" y="693" width="0.0191%" height="15" fill="rgb(205,6,39)" fg:x="82451" fg:w="94"/><text x="17.0352%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (94 samples, 0.02%)</title><rect x="16.7852%" y="677" width="0.0191%" height="15" fill="rgb(221,32,16)" fg:x="82451" fg:w="94"/><text x="17.0352%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.02%)</title><rect x="16.7852%" y="661" width="0.0191%" height="15" fill="rgb(228,144,50)" fg:x="82451" fg:w="94"/><text x="17.0352%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (84 samples, 0.02%)</title><rect x="16.8296%" y="693" width="0.0171%" height="15" fill="rgb(229,201,53)" fg:x="82669" fg:w="84"/><text x="17.0796%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (159 samples, 0.03%)</title><rect x="16.8145%" y="709" width="0.0324%" height="15" fill="rgb(249,153,27)" fg:x="82595" fg:w="159"/><text x="17.0645%" y="719.50"></text></g><g><title>SpinPause (57 samples, 0.01%)</title><rect x="16.8479%" y="709" width="0.0116%" height="15" fill="rgb(227,106,25)" fg:x="82759" fg:w="57"/><text x="17.0979%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (242 samples, 0.05%)</title><rect x="16.8116%" y="725" width="0.0493%" height="15" fill="rgb(230,65,29)" fg:x="82581" fg:w="242"/><text x="17.0616%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (79 samples, 0.02%)</title><rect x="16.8699%" y="613" width="0.0161%" height="15" fill="rgb(221,57,46)" fg:x="82867" fg:w="79"/><text x="17.1199%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (104 samples, 0.02%)</title><rect x="16.8650%" y="629" width="0.0212%" height="15" fill="rgb(229,161,17)" fg:x="82843" fg:w="104"/><text x="17.1150%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (125 samples, 0.03%)</title><rect x="16.8613%" y="645" width="0.0254%" height="15" fill="rgb(222,213,11)" fg:x="82825" fg:w="125"/><text x="17.1113%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (151 samples, 0.03%)</title><rect x="16.8613%" y="693" width="0.0307%" height="15" fill="rgb(235,35,13)" fg:x="82825" fg:w="151"/><text x="17.1113%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (151 samples, 0.03%)</title><rect x="16.8613%" y="677" width="0.0307%" height="15" fill="rgb(233,158,34)" fg:x="82825" fg:w="151"/><text x="17.1113%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (151 samples, 0.03%)</title><rect x="16.8613%" y="661" width="0.0307%" height="15" fill="rgb(215,151,48)" fg:x="82825" fg:w="151"/><text x="17.1113%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (160 samples, 0.03%)</title><rect x="16.8613%" y="725" width="0.0326%" height="15" fill="rgb(229,84,14)" fg:x="82825" fg:w="160"/><text x="17.1113%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (160 samples, 0.03%)</title><rect x="16.8613%" y="709" width="0.0326%" height="15" fill="rgb(229,68,14)" fg:x="82825" fg:w="160"/><text x="17.1113%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (62 samples, 0.01%)</title><rect x="16.8959%" y="629" width="0.0126%" height="15" fill="rgb(243,106,26)" fg:x="82995" fg:w="62"/><text x="17.1459%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (77 samples, 0.02%)</title><rect x="16.8939%" y="645" width="0.0157%" height="15" fill="rgb(206,45,38)" fg:x="82985" fg:w="77"/><text x="17.1439%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (92 samples, 0.02%)</title><rect x="16.8939%" y="661" width="0.0187%" height="15" fill="rgb(226,6,15)" fg:x="82985" fg:w="92"/><text x="17.1439%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (93 samples, 0.02%)</title><rect x="16.8939%" y="677" width="0.0189%" height="15" fill="rgb(232,22,54)" fg:x="82985" fg:w="93"/><text x="17.1439%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (95 samples, 0.02%)</title><rect x="16.8939%" y="725" width="0.0193%" height="15" fill="rgb(229,222,32)" fg:x="82985" fg:w="95"/><text x="17.1439%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (95 samples, 0.02%)</title><rect x="16.8939%" y="709" width="0.0193%" height="15" fill="rgb(228,62,29)" fg:x="82985" fg:w="95"/><text x="17.1439%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (95 samples, 0.02%)</title><rect x="16.8939%" y="693" width="0.0193%" height="15" fill="rgb(251,103,34)" fg:x="82985" fg:w="95"/><text x="17.1439%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (61 samples, 0.01%)</title><rect x="16.9271%" y="597" width="0.0124%" height="15" fill="rgb(233,12,30)" fg:x="83148" fg:w="61"/><text x="17.1771%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (52 samples, 0.01%)</title><rect x="16.9289%" y="581" width="0.0106%" height="15" fill="rgb(238,52,0)" fg:x="83157" fg:w="52"/><text x="17.1789%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (82 samples, 0.02%)</title><rect x="16.9232%" y="629" width="0.0167%" height="15" fill="rgb(223,98,5)" fg:x="83129" fg:w="82"/><text x="17.1732%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (72 samples, 0.01%)</title><rect x="16.9252%" y="613" width="0.0147%" height="15" fill="rgb(228,75,37)" fg:x="83139" fg:w="72"/><text x="17.1752%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (84 samples, 0.02%)</title><rect x="16.9230%" y="645" width="0.0171%" height="15" fill="rgb(205,115,49)" fg:x="83128" fg:w="84"/><text x="17.1730%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (131 samples, 0.03%)</title><rect x="16.9136%" y="709" width="0.0267%" height="15" fill="rgb(250,154,43)" fg:x="83082" fg:w="131"/><text x="17.1636%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (131 samples, 0.03%)</title><rect x="16.9136%" y="693" width="0.0267%" height="15" fill="rgb(226,43,29)" fg:x="83082" fg:w="131"/><text x="17.1636%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (131 samples, 0.03%)</title><rect x="16.9136%" y="677" width="0.0267%" height="15" fill="rgb(249,228,39)" fg:x="83082" fg:w="131"/><text x="17.1636%" y="687.50"></text></g><g><title>JavaThread::oops_do (131 samples, 0.03%)</title><rect x="16.9136%" y="661" width="0.0267%" height="15" fill="rgb(216,79,43)" fg:x="83082" fg:w="131"/><text x="17.1636%" y="671.50"></text></g><g><title>G1ParTask::work (669 samples, 0.14%)</title><rect x="16.8116%" y="741" width="0.1362%" height="15" fill="rgb(228,95,12)" fg:x="82581" fg:w="669"/><text x="17.0616%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (170 samples, 0.03%)</title><rect x="16.9132%" y="725" width="0.0346%" height="15" fill="rgb(249,221,15)" fg:x="83080" fg:w="170"/><text x="17.1632%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.01%)</title><rect x="16.9702%" y="517" width="0.0124%" height="15" fill="rgb(233,34,13)" fg:x="83360" fg:w="61"/><text x="17.2202%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (60 samples, 0.01%)</title><rect x="16.9704%" y="501" width="0.0122%" height="15" fill="rgb(214,103,39)" fg:x="83361" fg:w="60"/><text x="17.2204%" y="511.50"></text></g><g><title>native_write_msr (60 samples, 0.01%)</title><rect x="16.9704%" y="485" width="0.0122%" height="15" fill="rgb(251,126,39)" fg:x="83361" fg:w="60"/><text x="17.2204%" y="495.50"></text></g><g><title>finish_task_switch (64 samples, 0.01%)</title><rect x="16.9700%" y="533" width="0.0130%" height="15" fill="rgb(214,216,36)" fg:x="83359" fg:w="64"/><text x="17.2200%" y="543.50"></text></g><g><title>futex_wait_queue_me (82 samples, 0.02%)</title><rect x="16.9680%" y="581" width="0.0167%" height="15" fill="rgb(220,221,8)" fg:x="83349" fg:w="82"/><text x="17.2180%" y="591.50"></text></g><g><title>schedule (80 samples, 0.02%)</title><rect x="16.9684%" y="565" width="0.0163%" height="15" fill="rgb(240,216,3)" fg:x="83351" fg:w="80"/><text x="17.2184%" y="575.50"></text></g><g><title>__schedule (80 samples, 0.02%)</title><rect x="16.9684%" y="549" width="0.0163%" height="15" fill="rgb(232,218,17)" fg:x="83351" fg:w="80"/><text x="17.2184%" y="559.50"></text></g><g><title>do_syscall_64 (85 samples, 0.02%)</title><rect x="16.9676%" y="645" width="0.0173%" height="15" fill="rgb(229,163,45)" fg:x="83347" fg:w="85"/><text x="17.2176%" y="655.50"></text></g><g><title>__x64_sys_futex (85 samples, 0.02%)</title><rect x="16.9676%" y="629" width="0.0173%" height="15" fill="rgb(231,110,42)" fg:x="83347" fg:w="85"/><text x="17.2176%" y="639.50"></text></g><g><title>do_futex (84 samples, 0.02%)</title><rect x="16.9678%" y="613" width="0.0171%" height="15" fill="rgb(208,170,48)" fg:x="83348" fg:w="84"/><text x="17.2178%" y="623.50"></text></g><g><title>futex_wait (83 samples, 0.02%)</title><rect x="16.9680%" y="597" width="0.0169%" height="15" fill="rgb(239,116,25)" fg:x="83349" fg:w="83"/><text x="17.2180%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.02%)</title><rect x="16.9676%" y="661" width="0.0181%" height="15" fill="rgb(219,200,50)" fg:x="83347" fg:w="89"/><text x="17.2176%" y="671.50"></text></g><g><title>GC_Thread#5 (892 samples, 0.18%)</title><rect x="16.8043%" y="837" width="0.1816%" height="15" fill="rgb(245,200,0)" fg:x="82545" fg:w="892"/><text x="17.0543%" y="847.50"></text></g><g><title>__GI___clone (868 samples, 0.18%)</title><rect x="16.8092%" y="821" width="0.1767%" height="15" fill="rgb(245,119,33)" fg:x="82569" fg:w="868"/><text x="17.0592%" y="831.50"></text></g><g><title>start_thread (868 samples, 0.18%)</title><rect x="16.8092%" y="805" width="0.1767%" height="15" fill="rgb(231,125,12)" fg:x="82569" fg:w="868"/><text x="17.0592%" y="815.50"></text></g><g><title>thread_native_entry (868 samples, 0.18%)</title><rect x="16.8092%" y="789" width="0.1767%" height="15" fill="rgb(216,96,41)" fg:x="82569" fg:w="868"/><text x="17.0592%" y="799.50"></text></g><g><title>Thread::call_run (868 samples, 0.18%)</title><rect x="16.8092%" y="773" width="0.1767%" height="15" fill="rgb(248,43,45)" fg:x="82569" fg:w="868"/><text x="17.0592%" y="783.50"></text></g><g><title>GangWorker::loop (868 samples, 0.18%)</title><rect x="16.8092%" y="757" width="0.1767%" height="15" fill="rgb(217,222,7)" fg:x="82569" fg:w="868"/><text x="17.0592%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (93 samples, 0.02%)</title><rect x="16.9670%" y="741" width="0.0189%" height="15" fill="rgb(233,28,6)" fg:x="83344" fg:w="93"/><text x="17.2170%" y="751.50"></text></g><g><title>PosixSemaphore::wait (92 samples, 0.02%)</title><rect x="16.9672%" y="725" width="0.0187%" height="15" fill="rgb(231,218,15)" fg:x="83345" fg:w="92"/><text x="17.2172%" y="735.50"></text></g><g><title>__new_sem_wait_slow (92 samples, 0.02%)</title><rect x="16.9672%" y="709" width="0.0187%" height="15" fill="rgb(226,171,48)" fg:x="83345" fg:w="92"/><text x="17.2172%" y="719.50"></text></g><g><title>do_futex_wait (91 samples, 0.02%)</title><rect x="16.9674%" y="693" width="0.0185%" height="15" fill="rgb(235,201,9)" fg:x="83346" fg:w="91"/><text x="17.2174%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (91 samples, 0.02%)</title><rect x="16.9674%" y="677" width="0.0185%" height="15" fill="rgb(217,80,15)" fg:x="83346" fg:w="91"/><text x="17.2174%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (80 samples, 0.02%)</title><rect x="17.0071%" y="693" width="0.0163%" height="15" fill="rgb(219,152,8)" fg:x="83541" fg:w="80"/><text x="17.2571%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (154 samples, 0.03%)</title><rect x="16.9926%" y="709" width="0.0314%" height="15" fill="rgb(243,107,38)" fg:x="83470" fg:w="154"/><text x="17.2426%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (210 samples, 0.04%)</title><rect x="16.9920%" y="725" width="0.0428%" height="15" fill="rgb(231,17,5)" fg:x="83467" fg:w="210"/><text x="17.2420%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (84 samples, 0.02%)</title><rect x="17.0384%" y="629" width="0.0171%" height="15" fill="rgb(209,25,54)" fg:x="83695" fg:w="84"/><text x="17.2884%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (72 samples, 0.01%)</title><rect x="17.0409%" y="613" width="0.0147%" height="15" fill="rgb(219,0,2)" fg:x="83707" fg:w="72"/><text x="17.2909%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (102 samples, 0.02%)</title><rect x="17.0350%" y="645" width="0.0208%" height="15" fill="rgb(246,9,5)" fg:x="83678" fg:w="102"/><text x="17.2850%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (112 samples, 0.02%)</title><rect x="17.0348%" y="725" width="0.0228%" height="15" fill="rgb(226,159,4)" fg:x="83677" fg:w="112"/><text x="17.2848%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (112 samples, 0.02%)</title><rect x="17.0348%" y="709" width="0.0228%" height="15" fill="rgb(219,175,34)" fg:x="83677" fg:w="112"/><text x="17.2848%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (112 samples, 0.02%)</title><rect x="17.0348%" y="693" width="0.0228%" height="15" fill="rgb(236,10,46)" fg:x="83677" fg:w="112"/><text x="17.2848%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (112 samples, 0.02%)</title><rect x="17.0348%" y="677" width="0.0228%" height="15" fill="rgb(240,211,16)" fg:x="83677" fg:w="112"/><text x="17.2848%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (112 samples, 0.02%)</title><rect x="17.0348%" y="661" width="0.0228%" height="15" fill="rgb(205,3,43)" fg:x="83677" fg:w="112"/><text x="17.2848%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (51 samples, 0.01%)</title><rect x="17.0588%" y="629" width="0.0104%" height="15" fill="rgb(245,7,22)" fg:x="83795" fg:w="51"/><text x="17.3088%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (63 samples, 0.01%)</title><rect x="17.0576%" y="645" width="0.0128%" height="15" fill="rgb(239,132,32)" fg:x="83789" fg:w="63"/><text x="17.3076%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (78 samples, 0.02%)</title><rect x="17.0576%" y="661" width="0.0159%" height="15" fill="rgb(228,202,34)" fg:x="83789" fg:w="78"/><text x="17.3076%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (82 samples, 0.02%)</title><rect x="17.0576%" y="677" width="0.0167%" height="15" fill="rgb(254,200,22)" fg:x="83789" fg:w="82"/><text x="17.3076%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (106 samples, 0.02%)</title><rect x="17.0576%" y="725" width="0.0216%" height="15" fill="rgb(219,10,39)" fg:x="83789" fg:w="106"/><text x="17.3076%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (106 samples, 0.02%)</title><rect x="17.0576%" y="709" width="0.0216%" height="15" fill="rgb(226,210,39)" fg:x="83789" fg:w="106"/><text x="17.3076%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (106 samples, 0.02%)</title><rect x="17.0576%" y="693" width="0.0216%" height="15" fill="rgb(208,219,16)" fg:x="83789" fg:w="106"/><text x="17.3076%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (61 samples, 0.01%)</title><rect x="17.0881%" y="629" width="0.0124%" height="15" fill="rgb(216,158,51)" fg:x="83939" fg:w="61"/><text x="17.3381%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (59 samples, 0.01%)</title><rect x="17.0885%" y="613" width="0.0120%" height="15" fill="rgb(233,14,44)" fg:x="83941" fg:w="59"/><text x="17.3385%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (66 samples, 0.01%)</title><rect x="17.0881%" y="645" width="0.0134%" height="15" fill="rgb(237,97,39)" fg:x="83939" fg:w="66"/><text x="17.3381%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (111 samples, 0.02%)</title><rect x="17.0791%" y="709" width="0.0226%" height="15" fill="rgb(218,198,43)" fg:x="83895" fg:w="111"/><text x="17.3291%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (96 samples, 0.02%)</title><rect x="17.0822%" y="693" width="0.0195%" height="15" fill="rgb(231,104,20)" fg:x="83910" fg:w="96"/><text x="17.3322%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (96 samples, 0.02%)</title><rect x="17.0822%" y="677" width="0.0195%" height="15" fill="rgb(254,36,13)" fg:x="83910" fg:w="96"/><text x="17.3322%" y="687.50"></text></g><g><title>JavaThread::oops_do (90 samples, 0.02%)</title><rect x="17.0834%" y="661" width="0.0183%" height="15" fill="rgb(248,14,50)" fg:x="83916" fg:w="90"/><text x="17.3334%" y="671.50"></text></g><g><title>G1ParTask::work (552 samples, 0.11%)</title><rect x="16.9920%" y="741" width="0.1124%" height="15" fill="rgb(217,107,29)" fg:x="83467" fg:w="552"/><text x="17.2420%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (124 samples, 0.03%)</title><rect x="17.0791%" y="725" width="0.0252%" height="15" fill="rgb(251,169,33)" fg:x="83895" fg:w="124"/><text x="17.3291%" y="735.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="17.1191%" y="645" width="0.0114%" height="15" fill="rgb(217,108,32)" fg:x="84091" fg:w="56"/><text x="17.3691%" y="655.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.01%)</title><rect x="17.1191%" y="629" width="0.0114%" height="15" fill="rgb(219,66,42)" fg:x="84091" fg:w="56"/><text x="17.3691%" y="639.50"></text></g><g><title>do_futex (54 samples, 0.01%)</title><rect x="17.1195%" y="613" width="0.0110%" height="15" fill="rgb(206,180,7)" fg:x="84093" fg:w="54"/><text x="17.3695%" y="623.50"></text></g><g><title>futex_wait (53 samples, 0.01%)</title><rect x="17.1197%" y="597" width="0.0108%" height="15" fill="rgb(208,226,31)" fg:x="84094" fg:w="53"/><text x="17.3697%" y="607.50"></text></g><g><title>futex_wait_queue_me (51 samples, 0.01%)</title><rect x="17.1201%" y="581" width="0.0104%" height="15" fill="rgb(218,26,49)" fg:x="84096" fg:w="51"/><text x="17.3701%" y="591.50"></text></g><g><title>schedule (50 samples, 0.01%)</title><rect x="17.1203%" y="565" width="0.0102%" height="15" fill="rgb(233,197,48)" fg:x="84097" fg:w="50"/><text x="17.3703%" y="575.50"></text></g><g><title>__schedule (50 samples, 0.01%)</title><rect x="17.1203%" y="549" width="0.0102%" height="15" fill="rgb(252,181,51)" fg:x="84097" fg:w="50"/><text x="17.3703%" y="559.50"></text></g><g><title>__GI___clone (693 samples, 0.14%)</title><rect x="16.9900%" y="821" width="0.1411%" height="15" fill="rgb(253,90,19)" fg:x="83457" fg:w="693"/><text x="17.2400%" y="831.50"></text></g><g><title>start_thread (693 samples, 0.14%)</title><rect x="16.9900%" y="805" width="0.1411%" height="15" fill="rgb(215,171,30)" fg:x="83457" fg:w="693"/><text x="17.2400%" y="815.50"></text></g><g><title>thread_native_entry (693 samples, 0.14%)</title><rect x="16.9900%" y="789" width="0.1411%" height="15" fill="rgb(214,222,9)" fg:x="83457" fg:w="693"/><text x="17.2400%" y="799.50"></text></g><g><title>Thread::call_run (693 samples, 0.14%)</title><rect x="16.9900%" y="773" width="0.1411%" height="15" fill="rgb(223,3,22)" fg:x="83457" fg:w="693"/><text x="17.2400%" y="783.50"></text></g><g><title>GangWorker::loop (693 samples, 0.14%)</title><rect x="16.9900%" y="757" width="0.1411%" height="15" fill="rgb(225,196,46)" fg:x="83457" fg:w="693"/><text x="17.2400%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (62 samples, 0.01%)</title><rect x="17.1184%" y="741" width="0.0126%" height="15" fill="rgb(209,110,37)" fg:x="84088" fg:w="62"/><text x="17.3684%" y="751.50"></text></g><g><title>PosixSemaphore::wait (62 samples, 0.01%)</title><rect x="17.1184%" y="725" width="0.0126%" height="15" fill="rgb(249,89,12)" fg:x="84088" fg:w="62"/><text x="17.3684%" y="735.50"></text></g><g><title>__new_sem_wait_slow (61 samples, 0.01%)</title><rect x="17.1186%" y="709" width="0.0124%" height="15" fill="rgb(226,27,33)" fg:x="84089" fg:w="61"/><text x="17.3686%" y="719.50"></text></g><g><title>do_futex_wait (60 samples, 0.01%)</title><rect x="17.1188%" y="693" width="0.0122%" height="15" fill="rgb(213,82,22)" fg:x="84090" fg:w="60"/><text x="17.3688%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (60 samples, 0.01%)</title><rect x="17.1188%" y="677" width="0.0122%" height="15" fill="rgb(248,140,0)" fg:x="84090" fg:w="60"/><text x="17.3688%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="17.1191%" y="661" width="0.0120%" height="15" fill="rgb(228,106,3)" fg:x="84091" fg:w="59"/><text x="17.3691%" y="671.50"></text></g><g><title>GC_Thread#6 (715 samples, 0.15%)</title><rect x="16.9859%" y="837" width="0.1456%" height="15" fill="rgb(209,23,37)" fg:x="83437" fg:w="715"/><text x="17.2359%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (95 samples, 0.02%)</title><rect x="17.1551%" y="693" width="0.0193%" height="15" fill="rgb(241,93,50)" fg:x="84268" fg:w="95"/><text x="17.4051%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (180 samples, 0.04%)</title><rect x="17.1384%" y="709" width="0.0366%" height="15" fill="rgb(253,46,43)" fg:x="84186" fg:w="180"/><text x="17.3884%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (241 samples, 0.05%)</title><rect x="17.1370%" y="725" width="0.0491%" height="15" fill="rgb(226,206,43)" fg:x="84179" fg:w="241"/><text x="17.3870%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (102 samples, 0.02%)</title><rect x="17.1903%" y="629" width="0.0208%" height="15" fill="rgb(217,54,7)" fg:x="84441" fg:w="102"/><text x="17.4403%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (81 samples, 0.02%)</title><rect x="17.1946%" y="613" width="0.0165%" height="15" fill="rgb(223,5,52)" fg:x="84462" fg:w="81"/><text x="17.4446%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (130 samples, 0.03%)</title><rect x="17.1860%" y="645" width="0.0265%" height="15" fill="rgb(206,52,46)" fg:x="84420" fg:w="130"/><text x="17.4360%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (158 samples, 0.03%)</title><rect x="17.1860%" y="693" width="0.0322%" height="15" fill="rgb(253,136,11)" fg:x="84420" fg:w="158"/><text x="17.4360%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (158 samples, 0.03%)</title><rect x="17.1860%" y="677" width="0.0322%" height="15" fill="rgb(208,106,33)" fg:x="84420" fg:w="158"/><text x="17.4360%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (158 samples, 0.03%)</title><rect x="17.1860%" y="661" width="0.0322%" height="15" fill="rgb(206,54,4)" fg:x="84420" fg:w="158"/><text x="17.4360%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (160 samples, 0.03%)</title><rect x="17.1860%" y="725" width="0.0326%" height="15" fill="rgb(213,3,15)" fg:x="84420" fg:w="160"/><text x="17.4360%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (160 samples, 0.03%)</title><rect x="17.1860%" y="709" width="0.0326%" height="15" fill="rgb(252,211,39)" fg:x="84420" fg:w="160"/><text x="17.4360%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (53 samples, 0.01%)</title><rect x="17.2186%" y="661" width="0.0108%" height="15" fill="rgb(223,6,36)" fg:x="84580" fg:w="53"/><text x="17.4686%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (54 samples, 0.01%)</title><rect x="17.2186%" y="677" width="0.0110%" height="15" fill="rgb(252,169,45)" fg:x="84580" fg:w="54"/><text x="17.4686%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (57 samples, 0.01%)</title><rect x="17.2186%" y="725" width="0.0116%" height="15" fill="rgb(212,48,26)" fg:x="84580" fg:w="57"/><text x="17.4686%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (57 samples, 0.01%)</title><rect x="17.2186%" y="709" width="0.0116%" height="15" fill="rgb(251,102,48)" fg:x="84580" fg:w="57"/><text x="17.4686%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (57 samples, 0.01%)</title><rect x="17.2186%" y="693" width="0.0116%" height="15" fill="rgb(243,208,16)" fg:x="84580" fg:w="57"/><text x="17.4686%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (64 samples, 0.01%)</title><rect x="17.2304%" y="693" width="0.0130%" height="15" fill="rgb(219,96,24)" fg:x="84638" fg:w="64"/><text x="17.4804%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (62 samples, 0.01%)</title><rect x="17.2308%" y="677" width="0.0126%" height="15" fill="rgb(219,33,29)" fg:x="84640" fg:w="62"/><text x="17.4808%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (62 samples, 0.01%)</title><rect x="17.2308%" y="661" width="0.0126%" height="15" fill="rgb(223,176,5)" fg:x="84640" fg:w="62"/><text x="17.4808%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (56 samples, 0.01%)</title><rect x="17.2320%" y="645" width="0.0114%" height="15" fill="rgb(228,140,14)" fg:x="84646" fg:w="56"/><text x="17.4820%" y="655.50"></text></g><g><title>InterpreterOopMap::iterate_oop (58 samples, 0.01%)</title><rect x="17.2526%" y="629" width="0.0118%" height="15" fill="rgb(217,179,31)" fg:x="84747" fg:w="58"/><text x="17.5026%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (58 samples, 0.01%)</title><rect x="17.2526%" y="613" width="0.0118%" height="15" fill="rgb(230,9,30)" fg:x="84747" fg:w="58"/><text x="17.5026%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (77 samples, 0.02%)</title><rect x="17.2500%" y="645" width="0.0157%" height="15" fill="rgb(230,136,20)" fg:x="84734" fg:w="77"/><text x="17.5000%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (174 samples, 0.04%)</title><rect x="17.2304%" y="709" width="0.0354%" height="15" fill="rgb(215,210,22)" fg:x="84638" fg:w="174"/><text x="17.4804%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (110 samples, 0.02%)</title><rect x="17.2434%" y="693" width="0.0224%" height="15" fill="rgb(218,43,5)" fg:x="84702" fg:w="110"/><text x="17.4934%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (110 samples, 0.02%)</title><rect x="17.2434%" y="677" width="0.0224%" height="15" fill="rgb(216,11,5)" fg:x="84702" fg:w="110"/><text x="17.4934%" y="687.50"></text></g><g><title>JavaThread::oops_do (110 samples, 0.02%)</title><rect x="17.2434%" y="661" width="0.0224%" height="15" fill="rgb(209,82,29)" fg:x="84702" fg:w="110"/><text x="17.4934%" y="671.50"></text></g><g><title>G1RootProcessor::evacuate_roots (182 samples, 0.04%)</title><rect x="17.2302%" y="725" width="0.0371%" height="15" fill="rgb(244,115,12)" fg:x="84637" fg:w="182"/><text x="17.4802%" y="735.50"></text></g><g><title>G1ParTask::work (642 samples, 0.13%)</title><rect x="17.1370%" y="741" width="0.1307%" height="15" fill="rgb(222,82,18)" fg:x="84179" fg:w="642"/><text x="17.3870%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (56 samples, 0.01%)</title><rect x="17.2685%" y="741" width="0.0114%" height="15" fill="rgb(249,227,8)" fg:x="84825" fg:w="56"/><text x="17.5185%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.01%)</title><rect x="17.2896%" y="517" width="0.0108%" height="15" fill="rgb(253,141,45)" fg:x="84929" fg:w="53"/><text x="17.5396%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.01%)</title><rect x="17.2901%" y="501" width="0.0104%" height="15" fill="rgb(234,184,4)" fg:x="84931" fg:w="51"/><text x="17.5401%" y="511.50"></text></g><g><title>native_write_msr (51 samples, 0.01%)</title><rect x="17.2901%" y="485" width="0.0104%" height="15" fill="rgb(218,194,23)" fg:x="84931" fg:w="51"/><text x="17.5401%" y="495.50"></text></g><g><title>finish_task_switch (56 samples, 0.01%)</title><rect x="17.2894%" y="533" width="0.0114%" height="15" fill="rgb(235,66,41)" fg:x="84928" fg:w="56"/><text x="17.5394%" y="543.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.01%)</title><rect x="17.2882%" y="581" width="0.0138%" height="15" fill="rgb(245,217,1)" fg:x="84922" fg:w="68"/><text x="17.5382%" y="591.50"></text></g><g><title>schedule (67 samples, 0.01%)</title><rect x="17.2884%" y="565" width="0.0136%" height="15" fill="rgb(229,91,1)" fg:x="84923" fg:w="67"/><text x="17.5384%" y="575.50"></text></g><g><title>__schedule (66 samples, 0.01%)</title><rect x="17.2886%" y="549" width="0.0134%" height="15" fill="rgb(207,101,30)" fg:x="84924" fg:w="66"/><text x="17.5386%" y="559.50"></text></g><g><title>GC_Thread#7 (839 samples, 0.17%)</title><rect x="17.1315%" y="837" width="0.1708%" height="15" fill="rgb(223,82,49)" fg:x="84152" fg:w="839"/><text x="17.3815%" y="847.50"></text></g><g><title>__GI___clone (825 samples, 0.17%)</title><rect x="17.1343%" y="821" width="0.1680%" height="15" fill="rgb(218,167,17)" fg:x="84166" fg:w="825"/><text x="17.3843%" y="831.50"></text></g><g><title>start_thread (825 samples, 0.17%)</title><rect x="17.1343%" y="805" width="0.1680%" height="15" fill="rgb(208,103,14)" fg:x="84166" fg:w="825"/><text x="17.3843%" y="815.50"></text></g><g><title>thread_native_entry (825 samples, 0.17%)</title><rect x="17.1343%" y="789" width="0.1680%" height="15" fill="rgb(238,20,8)" fg:x="84166" fg:w="825"/><text x="17.3843%" y="799.50"></text></g><g><title>Thread::call_run (825 samples, 0.17%)</title><rect x="17.1343%" y="773" width="0.1680%" height="15" fill="rgb(218,80,54)" fg:x="84166" fg:w="825"/><text x="17.3843%" y="783.50"></text></g><g><title>GangWorker::loop (825 samples, 0.17%)</title><rect x="17.1343%" y="757" width="0.1680%" height="15" fill="rgb(240,144,17)" fg:x="84166" fg:w="825"/><text x="17.3843%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (73 samples, 0.01%)</title><rect x="17.2874%" y="741" width="0.0149%" height="15" fill="rgb(245,27,50)" fg:x="84918" fg:w="73"/><text x="17.5374%" y="751.50"></text></g><g><title>PosixSemaphore::wait (73 samples, 0.01%)</title><rect x="17.2874%" y="725" width="0.0149%" height="15" fill="rgb(251,51,7)" fg:x="84918" fg:w="73"/><text x="17.5374%" y="735.50"></text></g><g><title>__new_sem_wait_slow (73 samples, 0.01%)</title><rect x="17.2874%" y="709" width="0.0149%" height="15" fill="rgb(245,217,29)" fg:x="84918" fg:w="73"/><text x="17.5374%" y="719.50"></text></g><g><title>do_futex_wait (73 samples, 0.01%)</title><rect x="17.2874%" y="693" width="0.0149%" height="15" fill="rgb(221,176,29)" fg:x="84918" fg:w="73"/><text x="17.5374%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (73 samples, 0.01%)</title><rect x="17.2874%" y="677" width="0.0149%" height="15" fill="rgb(212,180,24)" fg:x="84918" fg:w="73"/><text x="17.5374%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.01%)</title><rect x="17.2882%" y="661" width="0.0140%" height="15" fill="rgb(254,24,2)" fg:x="84922" fg:w="69"/><text x="17.5382%" y="671.50"></text></g><g><title>do_syscall_64 (69 samples, 0.01%)</title><rect x="17.2882%" y="645" width="0.0140%" height="15" fill="rgb(230,100,2)" fg:x="84922" fg:w="69"/><text x="17.5382%" y="655.50"></text></g><g><title>__x64_sys_futex (69 samples, 0.01%)</title><rect x="17.2882%" y="629" width="0.0140%" height="15" fill="rgb(219,142,25)" fg:x="84922" fg:w="69"/><text x="17.5382%" y="639.50"></text></g><g><title>do_futex (69 samples, 0.01%)</title><rect x="17.2882%" y="613" width="0.0140%" height="15" fill="rgb(240,73,43)" fg:x="84922" fg:w="69"/><text x="17.5382%" y="623.50"></text></g><g><title>futex_wait (69 samples, 0.01%)</title><rect x="17.2882%" y="597" width="0.0140%" height="15" fill="rgb(214,114,15)" fg:x="84922" fg:w="69"/><text x="17.5382%" y="607.50"></text></g><g><title>Reference_Handl (52 samples, 0.01%)</title><rect x="17.3025%" y="837" width="0.0106%" height="15" fill="rgb(207,130,4)" fg:x="84992" fg:w="52"/><text x="17.5525%" y="847.50"></text></g><g><title>[perf-279850.map] (51 samples, 0.01%)</title><rect x="17.3027%" y="821" width="0.0104%" height="15" fill="rgb(221,25,40)" fg:x="84993" fg:w="51"/><text x="17.5527%" y="831.50"></text></g><g><title>[perf-279850.map] (141 samples, 0.03%)</title><rect x="17.3167%" y="821" width="0.0287%" height="15" fill="rgb(241,184,7)" fg:x="85062" fg:w="141"/><text x="17.5667%" y="831.50"></text></g><g><title>Service_Thread (180 samples, 0.04%)</title><rect x="17.3153%" y="837" width="0.0366%" height="15" fill="rgb(235,159,4)" fg:x="85055" fg:w="180"/><text x="17.5653%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (91 samples, 0.02%)</title><rect x="17.3910%" y="485" width="0.0185%" height="15" fill="rgb(214,87,48)" fg:x="85427" fg:w="91"/><text x="17.6410%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (89 samples, 0.02%)</title><rect x="17.3914%" y="469" width="0.0181%" height="15" fill="rgb(246,198,24)" fg:x="85429" fg:w="89"/><text x="17.6414%" y="479.50"></text></g><g><title>native_write_msr (89 samples, 0.02%)</title><rect x="17.3914%" y="453" width="0.0181%" height="15" fill="rgb(209,66,40)" fg:x="85429" fg:w="89"/><text x="17.6414%" y="463.50"></text></g><g><title>finish_task_switch (97 samples, 0.02%)</title><rect x="17.3904%" y="501" width="0.0197%" height="15" fill="rgb(233,147,39)" fg:x="85424" fg:w="97"/><text x="17.6404%" y="511.50"></text></g><g><title>futex_wait_queue_me (225 samples, 0.05%)</title><rect x="17.3735%" y="549" width="0.0458%" height="15" fill="rgb(231,145,52)" fg:x="85341" fg:w="225"/><text x="17.6235%" y="559.50"></text></g><g><title>schedule (201 samples, 0.04%)</title><rect x="17.3784%" y="533" width="0.0409%" height="15" fill="rgb(206,20,26)" fg:x="85365" fg:w="201"/><text x="17.6284%" y="543.50"></text></g><g><title>__schedule (201 samples, 0.04%)</title><rect x="17.3784%" y="517" width="0.0409%" height="15" fill="rgb(238,220,4)" fg:x="85365" fg:w="201"/><text x="17.6284%" y="527.50"></text></g><g><title>do_futex (257 samples, 0.05%)</title><rect x="17.3723%" y="581" width="0.0523%" height="15" fill="rgb(252,195,42)" fg:x="85335" fg:w="257"/><text x="17.6223%" y="591.50"></text></g><g><title>futex_wait (254 samples, 0.05%)</title><rect x="17.3729%" y="565" width="0.0517%" height="15" fill="rgb(209,10,6)" fg:x="85338" fg:w="254"/><text x="17.6229%" y="575.50"></text></g><g><title>do_syscall_64 (265 samples, 0.05%)</title><rect x="17.3711%" y="613" width="0.0539%" height="15" fill="rgb(229,3,52)" fg:x="85329" fg:w="265"/><text x="17.6211%" y="623.50"></text></g><g><title>__x64_sys_futex (262 samples, 0.05%)</title><rect x="17.3717%" y="597" width="0.0533%" height="15" fill="rgb(253,49,37)" fg:x="85332" fg:w="262"/><text x="17.6217%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (277 samples, 0.06%)</title><rect x="17.3709%" y="629" width="0.0564%" height="15" fill="rgb(240,103,49)" fg:x="85328" fg:w="277"/><text x="17.6209%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (302 samples, 0.06%)</title><rect x="17.3664%" y="677" width="0.0615%" height="15" fill="rgb(250,182,30)" fg:x="85306" fg:w="302"/><text x="17.6164%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (302 samples, 0.06%)</title><rect x="17.3664%" y="661" width="0.0615%" height="15" fill="rgb(248,8,30)" fg:x="85306" fg:w="302"/><text x="17.6164%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (295 samples, 0.06%)</title><rect x="17.3678%" y="645" width="0.0601%" height="15" fill="rgb(237,120,30)" fg:x="85313" fg:w="295"/><text x="17.6178%" y="655.50"></text></g><g><title>Monitor::IWait (353 samples, 0.07%)</title><rect x="17.3621%" y="709" width="0.0719%" height="15" fill="rgb(221,146,34)" fg:x="85285" fg:w="353"/><text x="17.6121%" y="719.50"></text></g><g><title>os::PlatformEvent::park (341 samples, 0.07%)</title><rect x="17.3646%" y="693" width="0.0694%" height="15" fill="rgb(242,55,13)" fg:x="85297" fg:w="341"/><text x="17.6146%" y="703.50"></text></g><g><title>Monitor::wait (356 samples, 0.07%)</title><rect x="17.3617%" y="725" width="0.0725%" height="15" fill="rgb(242,112,31)" fg:x="85283" fg:w="356"/><text x="17.6117%" y="735.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (128 samples, 0.03%)</title><rect x="17.4421%" y="677" width="0.0261%" height="15" fill="rgb(249,192,27)" fg:x="85678" fg:w="128"/><text x="17.6921%" y="687.50"></text></g><g><title>NMethodSweeper::process_compiled_method (183 samples, 0.04%)</title><rect x="17.4417%" y="693" width="0.0373%" height="15" fill="rgb(208,204,44)" fg:x="85676" fg:w="183"/><text x="17.6917%" y="703.50"></text></g><g><title>NMethodSweeper::possibly_sweep (223 samples, 0.05%)</title><rect x="17.4342%" y="725" width="0.0454%" height="15" fill="rgb(208,93,54)" fg:x="85639" fg:w="223"/><text x="17.6842%" y="735.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (211 samples, 0.04%)</title><rect x="17.4366%" y="709" width="0.0430%" height="15" fill="rgb(242,1,31)" fg:x="85651" fg:w="211"/><text x="17.6866%" y="719.50"></text></g><g><title>__GI___clone (606 samples, 0.12%)</title><rect x="17.3572%" y="821" width="0.1234%" height="15" fill="rgb(241,83,25)" fg:x="85261" fg:w="606"/><text x="17.6072%" y="831.50"></text></g><g><title>start_thread (606 samples, 0.12%)</title><rect x="17.3572%" y="805" width="0.1234%" height="15" fill="rgb(205,169,50)" fg:x="85261" fg:w="606"/><text x="17.6072%" y="815.50"></text></g><g><title>thread_native_entry (606 samples, 0.12%)</title><rect x="17.3572%" y="789" width="0.1234%" height="15" fill="rgb(239,186,37)" fg:x="85261" fg:w="606"/><text x="17.6072%" y="799.50"></text></g><g><title>Thread::call_run (606 samples, 0.12%)</title><rect x="17.3572%" y="773" width="0.1234%" height="15" fill="rgb(205,221,10)" fg:x="85261" fg:w="606"/><text x="17.6072%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (606 samples, 0.12%)</title><rect x="17.3572%" y="757" width="0.1234%" height="15" fill="rgb(218,196,15)" fg:x="85261" fg:w="606"/><text x="17.6072%" y="767.50"></text></g><g><title>NMethodSweeper::sweeper_loop (606 samples, 0.12%)</title><rect x="17.3572%" y="741" width="0.1234%" height="15" fill="rgb(218,196,35)" fg:x="85261" fg:w="606"/><text x="17.6072%" y="751.50"></text></g><g><title>Sweeper_thread (636 samples, 0.13%)</title><rect x="17.3519%" y="837" width="0.1295%" height="15" fill="rgb(233,63,24)" fg:x="85235" fg:w="636"/><text x="17.6019%" y="847.50"></text></g><g><title>get_cpu_load (70 samples, 0.01%)</title><rect x="17.5663%" y="805" width="0.0143%" height="15" fill="rgb(225,8,4)" fg:x="86288" fg:w="70"/><text x="17.8163%" y="815.50"></text></g><g><title>get_cpuload_internal (70 samples, 0.01%)</title><rect x="17.5663%" y="789" width="0.0143%" height="15" fill="rgb(234,105,35)" fg:x="86288" fg:w="70"/><text x="17.8163%" y="799.50"></text></g><g><title>get_totalticks (68 samples, 0.01%)</title><rect x="17.5667%" y="773" width="0.0138%" height="15" fill="rgb(236,21,32)" fg:x="86290" fg:w="68"/><text x="17.8167%" y="783.50"></text></g><g><title>[perf-279850.map] (468 samples, 0.10%)</title><rect x="17.4867%" y="821" width="0.0953%" height="15" fill="rgb(228,109,6)" fg:x="85897" fg:w="468"/><text x="17.7367%" y="831.50"></text></g><g><title>Thread-0 (522 samples, 0.11%)</title><rect x="17.4814%" y="837" width="0.1063%" height="15" fill="rgb(229,215,31)" fg:x="85871" fg:w="522"/><text x="17.7314%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.01%)</title><rect x="17.6154%" y="485" width="0.0124%" height="15" fill="rgb(221,52,54)" fg:x="86529" fg:w="61"/><text x="17.8654%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.01%)</title><rect x="17.6158%" y="469" width="0.0120%" height="15" fill="rgb(252,129,43)" fg:x="86531" fg:w="59"/><text x="17.8658%" y="479.50"></text></g><g><title>native_write_msr (58 samples, 0.01%)</title><rect x="17.6160%" y="453" width="0.0118%" height="15" fill="rgb(248,183,27)" fg:x="86532" fg:w="58"/><text x="17.8660%" y="463.50"></text></g><g><title>finish_task_switch (63 samples, 0.01%)</title><rect x="17.6152%" y="501" width="0.0128%" height="15" fill="rgb(250,0,22)" fg:x="86528" fg:w="63"/><text x="17.8652%" y="511.50"></text></g><g><title>futex_wait_queue_me (103 samples, 0.02%)</title><rect x="17.6113%" y="549" width="0.0210%" height="15" fill="rgb(213,166,10)" fg:x="86509" fg:w="103"/><text x="17.8613%" y="559.50"></text></g><g><title>schedule (99 samples, 0.02%)</title><rect x="17.6121%" y="533" width="0.0202%" height="15" fill="rgb(207,163,36)" fg:x="86513" fg:w="99"/><text x="17.8621%" y="543.50"></text></g><g><title>__schedule (97 samples, 0.02%)</title><rect x="17.6125%" y="517" width="0.0197%" height="15" fill="rgb(208,122,22)" fg:x="86515" fg:w="97"/><text x="17.8625%" y="527.50"></text></g><g><title>do_futex (110 samples, 0.02%)</title><rect x="17.6103%" y="581" width="0.0224%" height="15" fill="rgb(207,104,49)" fg:x="86504" fg:w="110"/><text x="17.8603%" y="591.50"></text></g><g><title>futex_wait (109 samples, 0.02%)</title><rect x="17.6105%" y="565" width="0.0222%" height="15" fill="rgb(248,211,50)" fg:x="86505" fg:w="109"/><text x="17.8605%" y="575.50"></text></g><g><title>do_syscall_64 (120 samples, 0.02%)</title><rect x="17.6089%" y="613" width="0.0244%" height="15" fill="rgb(217,13,45)" fg:x="86497" fg:w="120"/><text x="17.8589%" y="623.50"></text></g><g><title>__x64_sys_futex (120 samples, 0.02%)</title><rect x="17.6089%" y="597" width="0.0244%" height="15" fill="rgb(211,216,49)" fg:x="86497" fg:w="120"/><text x="17.8589%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (141 samples, 0.03%)</title><rect x="17.6064%" y="677" width="0.0287%" height="15" fill="rgb(221,58,53)" fg:x="86485" fg:w="141"/><text x="17.8564%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (140 samples, 0.03%)</title><rect x="17.6066%" y="661" width="0.0285%" height="15" fill="rgb(220,112,41)" fg:x="86486" fg:w="140"/><text x="17.8566%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (137 samples, 0.03%)</title><rect x="17.6072%" y="645" width="0.0279%" height="15" fill="rgb(236,38,28)" fg:x="86489" fg:w="137"/><text x="17.8572%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (129 samples, 0.03%)</title><rect x="17.6089%" y="629" width="0.0263%" height="15" fill="rgb(227,195,22)" fg:x="86497" fg:w="129"/><text x="17.8589%" y="639.50"></text></g><g><title>Monitor::wait (187 samples, 0.04%)</title><rect x="17.6011%" y="725" width="0.0381%" height="15" fill="rgb(214,55,33)" fg:x="86459" fg:w="187"/><text x="17.8511%" y="735.50"></text></g><g><title>Monitor::IWait (185 samples, 0.04%)</title><rect x="17.6015%" y="709" width="0.0377%" height="15" fill="rgb(248,80,13)" fg:x="86461" fg:w="185"/><text x="17.8515%" y="719.50"></text></g><g><title>os::PlatformEvent::park (176 samples, 0.04%)</title><rect x="17.6034%" y="693" width="0.0358%" height="15" fill="rgb(238,52,6)" fg:x="86470" fg:w="176"/><text x="17.8534%" y="703.50"></text></g><g><title>__GI___clone (235 samples, 0.05%)</title><rect x="17.5920%" y="821" width="0.0478%" height="15" fill="rgb(224,198,47)" fg:x="86414" fg:w="235"/><text x="17.8420%" y="831.50"></text></g><g><title>start_thread (235 samples, 0.05%)</title><rect x="17.5920%" y="805" width="0.0478%" height="15" fill="rgb(233,171,20)" fg:x="86414" fg:w="235"/><text x="17.8420%" y="815.50"></text></g><g><title>thread_native_entry (235 samples, 0.05%)</title><rect x="17.5920%" y="789" width="0.0478%" height="15" fill="rgb(241,30,25)" fg:x="86414" fg:w="235"/><text x="17.8420%" y="799.50"></text></g><g><title>Thread::call_run (235 samples, 0.05%)</title><rect x="17.5920%" y="773" width="0.0478%" height="15" fill="rgb(207,171,38)" fg:x="86414" fg:w="235"/><text x="17.8420%" y="783.50"></text></g><g><title>WatcherThread::run (235 samples, 0.05%)</title><rect x="17.5920%" y="757" width="0.0478%" height="15" fill="rgb(234,70,1)" fg:x="86414" fg:w="235"/><text x="17.8420%" y="767.50"></text></g><g><title>WatcherThread::sleep (198 samples, 0.04%)</title><rect x="17.5995%" y="741" width="0.0403%" height="15" fill="rgb(232,178,18)" fg:x="86451" fg:w="198"/><text x="17.8495%" y="751.50"></text></g><g><title>VM_Periodic_Tas (262 samples, 0.05%)</title><rect x="17.5877%" y="837" width="0.0533%" height="15" fill="rgb(241,78,40)" fg:x="86393" fg:w="262"/><text x="17.8377%" y="847.50"></text></g><g><title>[unknown] (92 samples, 0.02%)</title><rect x="17.6457%" y="821" width="0.0187%" height="15" fill="rgb(222,35,25)" fg:x="86678" fg:w="92"/><text x="17.8957%" y="831.50"></text></g><g><title>vframe::sender (85 samples, 0.02%)</title><rect x="17.6471%" y="805" width="0.0173%" height="15" fill="rgb(207,92,16)" fg:x="86685" fg:w="85"/><text x="17.8971%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.01%)</title><rect x="17.6783%" y="485" width="0.0138%" height="15" fill="rgb(216,59,51)" fg:x="86838" fg:w="68"/><text x="17.9283%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.01%)</title><rect x="17.6789%" y="469" width="0.0132%" height="15" fill="rgb(213,80,28)" fg:x="86841" fg:w="65"/><text x="17.9289%" y="479.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="17.6789%" y="453" width="0.0132%" height="15" fill="rgb(220,93,7)" fg:x="86841" fg:w="65"/><text x="17.9289%" y="463.50"></text></g><g><title>finish_task_switch (72 samples, 0.01%)</title><rect x="17.6777%" y="501" width="0.0147%" height="15" fill="rgb(225,24,44)" fg:x="86835" fg:w="72"/><text x="17.9277%" y="511.50"></text></g><g><title>futex_wait_queue_me (78 samples, 0.02%)</title><rect x="17.6769%" y="549" width="0.0159%" height="15" fill="rgb(243,74,40)" fg:x="86831" fg:w="78"/><text x="17.9269%" y="559.50"></text></g><g><title>schedule (77 samples, 0.02%)</title><rect x="17.6771%" y="533" width="0.0157%" height="15" fill="rgb(228,39,7)" fg:x="86832" fg:w="77"/><text x="17.9271%" y="543.50"></text></g><g><title>__schedule (77 samples, 0.02%)</title><rect x="17.6771%" y="517" width="0.0157%" height="15" fill="rgb(227,79,8)" fg:x="86832" fg:w="77"/><text x="17.9271%" y="527.50"></text></g><g><title>__pthread_cond_timedwait (87 samples, 0.02%)</title><rect x="17.6758%" y="677" width="0.0177%" height="15" fill="rgb(236,58,11)" fg:x="86826" fg:w="87"/><text x="17.9258%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (87 samples, 0.02%)</title><rect x="17.6758%" y="661" width="0.0177%" height="15" fill="rgb(249,63,35)" fg:x="86826" fg:w="87"/><text x="17.9258%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (86 samples, 0.02%)</title><rect x="17.6760%" y="645" width="0.0175%" height="15" fill="rgb(252,114,16)" fg:x="86827" fg:w="86"/><text x="17.9260%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (84 samples, 0.02%)</title><rect x="17.6764%" y="629" width="0.0171%" height="15" fill="rgb(254,151,24)" fg:x="86829" fg:w="84"/><text x="17.9264%" y="639.50"></text></g><g><title>do_syscall_64 (83 samples, 0.02%)</title><rect x="17.6766%" y="613" width="0.0169%" height="15" fill="rgb(253,54,39)" fg:x="86830" fg:w="83"/><text x="17.9266%" y="623.50"></text></g><g><title>__x64_sys_futex (82 samples, 0.02%)</title><rect x="17.6769%" y="597" width="0.0167%" height="15" fill="rgb(243,25,45)" fg:x="86831" fg:w="82"/><text x="17.9269%" y="607.50"></text></g><g><title>do_futex (82 samples, 0.02%)</title><rect x="17.6769%" y="581" width="0.0167%" height="15" fill="rgb(234,134,9)" fg:x="86831" fg:w="82"/><text x="17.9269%" y="591.50"></text></g><g><title>futex_wait (82 samples, 0.02%)</title><rect x="17.6769%" y="565" width="0.0167%" height="15" fill="rgb(227,166,31)" fg:x="86831" fg:w="82"/><text x="17.9269%" y="575.50"></text></g><g><title>Monitor::wait (90 samples, 0.02%)</title><rect x="17.6756%" y="725" width="0.0183%" height="15" fill="rgb(245,143,41)" fg:x="86825" fg:w="90"/><text x="17.9256%" y="735.50"></text></g><g><title>Monitor::IWait (90 samples, 0.02%)</title><rect x="17.6756%" y="709" width="0.0183%" height="15" fill="rgb(238,181,32)" fg:x="86825" fg:w="90"/><text x="17.9256%" y="719.50"></text></g><g><title>os::PlatformEvent::park (89 samples, 0.02%)</title><rect x="17.6758%" y="693" width="0.0181%" height="15" fill="rgb(224,113,18)" fg:x="86826" fg:w="89"/><text x="17.9258%" y="703.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="17.7098%" y="597" width="0.0106%" height="15" fill="rgb(240,229,28)" fg:x="86993" fg:w="52"/><text x="17.9598%" y="607.50"></text></g><g><title>__x64_sys_futex (52 samples, 0.01%)</title><rect x="17.7098%" y="581" width="0.0106%" height="15" fill="rgb(250,185,3)" fg:x="86993" fg:w="52"/><text x="17.9598%" y="591.50"></text></g><g><title>do_futex (52 samples, 0.01%)</title><rect x="17.7098%" y="565" width="0.0106%" height="15" fill="rgb(212,59,25)" fg:x="86993" fg:w="52"/><text x="17.9598%" y="575.50"></text></g><g><title>futex_wait (52 samples, 0.01%)</title><rect x="17.7098%" y="549" width="0.0106%" height="15" fill="rgb(221,87,20)" fg:x="86993" fg:w="52"/><text x="17.9598%" y="559.50"></text></g><g><title>futex_wait_queue_me (52 samples, 0.01%)</title><rect x="17.7098%" y="533" width="0.0106%" height="15" fill="rgb(213,74,28)" fg:x="86993" fg:w="52"/><text x="17.9598%" y="543.50"></text></g><g><title>schedule (52 samples, 0.01%)</title><rect x="17.7098%" y="517" width="0.0106%" height="15" fill="rgb(224,132,34)" fg:x="86993" fg:w="52"/><text x="17.9598%" y="527.50"></text></g><g><title>__schedule (52 samples, 0.01%)</title><rect x="17.7098%" y="501" width="0.0106%" height="15" fill="rgb(222,101,24)" fg:x="86993" fg:w="52"/><text x="17.9598%" y="511.50"></text></g><g><title>__pthread_cond_wait (55 samples, 0.01%)</title><rect x="17.7096%" y="661" width="0.0112%" height="15" fill="rgb(254,142,4)" fg:x="86992" fg:w="55"/><text x="17.9596%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (55 samples, 0.01%)</title><rect x="17.7096%" y="645" width="0.0112%" height="15" fill="rgb(230,229,49)" fg:x="86992" fg:w="55"/><text x="17.9596%" y="655.50"></text></g><g><title>futex_wait_cancelable (54 samples, 0.01%)</title><rect x="17.7098%" y="629" width="0.0110%" height="15" fill="rgb(238,70,47)" fg:x="86993" fg:w="54"/><text x="17.9598%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="17.7098%" y="613" width="0.0110%" height="15" fill="rgb(231,160,17)" fg:x="86993" fg:w="54"/><text x="17.9598%" y="623.50"></text></g><g><title>Monitor::wait (60 samples, 0.01%)</title><rect x="17.7088%" y="709" width="0.0122%" height="15" fill="rgb(218,68,53)" fg:x="86988" fg:w="60"/><text x="17.9588%" y="719.50"></text></g><g><title>Monitor::IWait (60 samples, 0.01%)</title><rect x="17.7088%" y="693" width="0.0122%" height="15" fill="rgb(236,111,10)" fg:x="86988" fg:w="60"/><text x="17.9588%" y="703.50"></text></g><g><title>os::PlatformEvent::park (56 samples, 0.01%)</title><rect x="17.7096%" y="677" width="0.0114%" height="15" fill="rgb(224,34,41)" fg:x="86992" fg:w="56"/><text x="17.9596%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (75 samples, 0.02%)</title><rect x="17.7247%" y="613" width="0.0153%" height="15" fill="rgb(241,118,19)" fg:x="87066" fg:w="75"/><text x="17.9747%" y="623.50"></text></g><g><title>do_syscall_64 (75 samples, 0.02%)</title><rect x="17.7247%" y="597" width="0.0153%" height="15" fill="rgb(238,129,25)" fg:x="87066" fg:w="75"/><text x="17.9747%" y="607.50"></text></g><g><title>__x64_sys_futex (75 samples, 0.02%)</title><rect x="17.7247%" y="581" width="0.0153%" height="15" fill="rgb(238,22,31)" fg:x="87066" fg:w="75"/><text x="17.9747%" y="591.50"></text></g><g><title>do_futex (75 samples, 0.02%)</title><rect x="17.7247%" y="565" width="0.0153%" height="15" fill="rgb(222,174,48)" fg:x="87066" fg:w="75"/><text x="17.9747%" y="575.50"></text></g><g><title>futex_wake (75 samples, 0.02%)</title><rect x="17.7247%" y="549" width="0.0153%" height="15" fill="rgb(206,152,40)" fg:x="87066" fg:w="75"/><text x="17.9747%" y="559.50"></text></g><g><title>wake_up_q (68 samples, 0.01%)</title><rect x="17.7261%" y="533" width="0.0138%" height="15" fill="rgb(218,99,54)" fg:x="87073" fg:w="68"/><text x="17.9761%" y="543.50"></text></g><g><title>try_to_wake_up (68 samples, 0.01%)</title><rect x="17.7261%" y="517" width="0.0138%" height="15" fill="rgb(220,174,26)" fg:x="87073" fg:w="68"/><text x="17.9761%" y="527.50"></text></g><g><title>PosixSemaphore::signal (76 samples, 0.02%)</title><rect x="17.7247%" y="661" width="0.0155%" height="15" fill="rgb(245,116,9)" fg:x="87066" fg:w="76"/><text x="17.9747%" y="671.50"></text></g><g><title>__new_sem_post (76 samples, 0.02%)</title><rect x="17.7247%" y="645" width="0.0155%" height="15" fill="rgb(209,72,35)" fg:x="87066" fg:w="76"/><text x="17.9747%" y="655.50"></text></g><g><title>futex_wake (76 samples, 0.02%)</title><rect x="17.7247%" y="629" width="0.0155%" height="15" fill="rgb(226,126,21)" fg:x="87066" fg:w="76"/><text x="17.9747%" y="639.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="17.7418%" y="469" width="0.0108%" height="15" fill="rgb(227,192,1)" fg:x="87150" fg:w="53"/><text x="17.9918%" y="479.50"></text></g><g><title>WorkGang::run_task (142 samples, 0.03%)</title><rect x="17.7243%" y="693" width="0.0289%" height="15" fill="rgb(237,180,29)" fg:x="87064" fg:w="142"/><text x="17.9743%" y="703.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (140 samples, 0.03%)</title><rect x="17.7247%" y="677" width="0.0285%" height="15" fill="rgb(230,197,35)" fg:x="87066" fg:w="140"/><text x="17.9747%" y="687.50"></text></g><g><title>PosixSemaphore::wait (64 samples, 0.01%)</title><rect x="17.7402%" y="661" width="0.0130%" height="15" fill="rgb(246,193,31)" fg:x="87142" fg:w="64"/><text x="17.9902%" y="671.50"></text></g><g><title>__new_sem_wait_slow (64 samples, 0.01%)</title><rect x="17.7402%" y="645" width="0.0130%" height="15" fill="rgb(241,36,4)" fg:x="87142" fg:w="64"/><text x="17.9902%" y="655.50"></text></g><g><title>do_futex_wait (63 samples, 0.01%)</title><rect x="17.7404%" y="629" width="0.0128%" height="15" fill="rgb(241,130,17)" fg:x="87143" fg:w="63"/><text x="17.9904%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (63 samples, 0.01%)</title><rect x="17.7404%" y="613" width="0.0128%" height="15" fill="rgb(206,137,32)" fg:x="87143" fg:w="63"/><text x="17.9904%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="17.7404%" y="597" width="0.0128%" height="15" fill="rgb(237,228,51)" fg:x="87143" fg:w="63"/><text x="17.9904%" y="607.50"></text></g><g><title>do_syscall_64 (62 samples, 0.01%)</title><rect x="17.7406%" y="581" width="0.0126%" height="15" fill="rgb(243,6,42)" fg:x="87144" fg:w="62"/><text x="17.9906%" y="591.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="17.7406%" y="565" width="0.0126%" height="15" fill="rgb(251,74,28)" fg:x="87144" fg:w="62"/><text x="17.9906%" y="575.50"></text></g><g><title>do_futex (61 samples, 0.01%)</title><rect x="17.7408%" y="549" width="0.0124%" height="15" fill="rgb(218,20,49)" fg:x="87145" fg:w="61"/><text x="17.9908%" y="559.50"></text></g><g><title>futex_wait (61 samples, 0.01%)</title><rect x="17.7408%" y="533" width="0.0124%" height="15" fill="rgb(238,28,14)" fg:x="87145" fg:w="61"/><text x="17.9908%" y="543.50"></text></g><g><title>futex_wait_queue_me (60 samples, 0.01%)</title><rect x="17.7410%" y="517" width="0.0122%" height="15" fill="rgb(229,40,46)" fg:x="87146" fg:w="60"/><text x="17.9910%" y="527.50"></text></g><g><title>schedule (60 samples, 0.01%)</title><rect x="17.7410%" y="501" width="0.0122%" height="15" fill="rgb(244,195,20)" fg:x="87146" fg:w="60"/><text x="17.9910%" y="511.50"></text></g><g><title>__schedule (60 samples, 0.01%)</title><rect x="17.7410%" y="485" width="0.0122%" height="15" fill="rgb(253,56,35)" fg:x="87146" fg:w="60"/><text x="17.9910%" y="495.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (148 samples, 0.03%)</title><rect x="17.7233%" y="709" width="0.0301%" height="15" fill="rgb(210,149,44)" fg:x="87059" fg:w="148"/><text x="17.9733%" y="719.50"></text></g><g><title>SafepointSynchronize::begin (327 samples, 0.07%)</title><rect x="17.6940%" y="725" width="0.0666%" height="15" fill="rgb(240,135,12)" fg:x="86915" fg:w="327"/><text x="17.9440%" y="735.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (54 samples, 0.01%)</title><rect x="17.7748%" y="677" width="0.0110%" height="15" fill="rgb(251,24,50)" fg:x="87312" fg:w="54"/><text x="18.0248%" y="687.50"></text></g><g><title>VM_Deoptimize::doit (58 samples, 0.01%)</title><rect x="17.7748%" y="693" width="0.0118%" height="15" fill="rgb(243,200,47)" fg:x="87312" fg:w="58"/><text x="18.0248%" y="703.50"></text></g><g><title>VMThread::evaluate_operation (147 samples, 0.03%)</title><rect x="17.7662%" y="725" width="0.0299%" height="15" fill="rgb(224,166,26)" fg:x="87270" fg:w="147"/><text x="18.0162%" y="735.50"></text></g><g><title>VM_Operation::evaluate (146 samples, 0.03%)</title><rect x="17.7664%" y="709" width="0.0297%" height="15" fill="rgb(233,0,47)" fg:x="87271" fg:w="146"/><text x="18.0164%" y="719.50"></text></g><g><title>Thread::call_run (623 samples, 0.13%)</title><rect x="17.6707%" y="773" width="0.1268%" height="15" fill="rgb(253,80,5)" fg:x="86801" fg:w="623"/><text x="17.9207%" y="783.50"></text></g><g><title>VMThread::run (623 samples, 0.13%)</title><rect x="17.6707%" y="757" width="0.1268%" height="15" fill="rgb(214,133,25)" fg:x="86801" fg:w="623"/><text x="17.9207%" y="767.50"></text></g><g><title>VMThread::loop (622 samples, 0.13%)</title><rect x="17.6709%" y="741" width="0.1266%" height="15" fill="rgb(209,27,14)" fg:x="86802" fg:w="622"/><text x="17.9209%" y="751.50"></text></g><g><title>__GI___clone (658 samples, 0.13%)</title><rect x="17.6644%" y="821" width="0.1340%" height="15" fill="rgb(219,102,51)" fg:x="86770" fg:w="658"/><text x="17.9144%" y="831.50"></text></g><g><title>start_thread (628 samples, 0.13%)</title><rect x="17.6705%" y="805" width="0.1278%" height="15" fill="rgb(237,18,16)" fg:x="86800" fg:w="628"/><text x="17.9205%" y="815.50"></text></g><g><title>thread_native_entry (627 samples, 0.13%)</title><rect x="17.6707%" y="789" width="0.1276%" height="15" fill="rgb(241,85,17)" fg:x="86801" fg:w="627"/><text x="17.9207%" y="799.50"></text></g><g><title>VM_Thread (782 samples, 0.16%)</title><rect x="17.6410%" y="837" width="0.1592%" height="15" fill="rgb(236,90,42)" fg:x="86655" fg:w="782"/><text x="17.8910%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (136 samples, 0.03%)</title><rect x="17.8607%" y="661" width="0.0277%" height="15" fill="rgb(249,57,21)" fg:x="87734" fg:w="136"/><text x="18.1107%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (132 samples, 0.03%)</title><rect x="17.8615%" y="645" width="0.0269%" height="15" fill="rgb(243,12,36)" fg:x="87738" fg:w="132"/><text x="18.1115%" y="655.50"></text></g><g><title>native_write_msr (129 samples, 0.03%)</title><rect x="17.8621%" y="629" width="0.0263%" height="15" fill="rgb(253,128,47)" fg:x="87741" fg:w="129"/><text x="18.1121%" y="639.50"></text></g><g><title>finish_task_switch (144 samples, 0.03%)</title><rect x="17.8603%" y="677" width="0.0293%" height="15" fill="rgb(207,33,20)" fg:x="87732" fg:w="144"/><text x="18.1103%" y="687.50"></text></g><g><title>futex_wait (158 samples, 0.03%)</title><rect x="17.8582%" y="741" width="0.0322%" height="15" fill="rgb(233,215,35)" fg:x="87722" fg:w="158"/><text x="18.1082%" y="751.50"></text></g><g><title>futex_wait_queue_me (158 samples, 0.03%)</title><rect x="17.8582%" y="725" width="0.0322%" height="15" fill="rgb(249,188,52)" fg:x="87722" fg:w="158"/><text x="18.1082%" y="735.50"></text></g><g><title>schedule (155 samples, 0.03%)</title><rect x="17.8589%" y="709" width="0.0316%" height="15" fill="rgb(225,12,32)" fg:x="87725" fg:w="155"/><text x="18.1089%" y="719.50"></text></g><g><title>__schedule (154 samples, 0.03%)</title><rect x="17.8591%" y="693" width="0.0314%" height="15" fill="rgb(247,98,14)" fg:x="87726" fg:w="154"/><text x="18.1091%" y="703.50"></text></g><g><title>__x64_sys_futex (176 samples, 0.04%)</title><rect x="17.8576%" y="773" width="0.0358%" height="15" fill="rgb(247,219,48)" fg:x="87719" fg:w="176"/><text x="18.1076%" y="783.50"></text></g><g><title>do_futex (176 samples, 0.04%)</title><rect x="17.8576%" y="757" width="0.0358%" height="15" fill="rgb(253,60,48)" fg:x="87719" fg:w="176"/><text x="18.1076%" y="767.50"></text></g><g><title>__x64_sys_nanosleep (52 samples, 0.01%)</title><rect x="17.8949%" y="773" width="0.0106%" height="15" fill="rgb(245,15,52)" fg:x="87902" fg:w="52"/><text x="18.1449%" y="783.50"></text></g><g><title>hrtimer_nanosleep (51 samples, 0.01%)</title><rect x="17.8951%" y="757" width="0.0104%" height="15" fill="rgb(220,133,28)" fg:x="87903" fg:w="51"/><text x="18.1451%" y="767.50"></text></g><g><title>do_syscall_64 (284 samples, 0.06%)</title><rect x="17.8497%" y="789" width="0.0578%" height="15" fill="rgb(217,180,4)" fg:x="87680" fg:w="284"/><text x="18.0997%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (291 samples, 0.06%)</title><rect x="17.8493%" y="805" width="0.0592%" height="15" fill="rgb(251,24,1)" fg:x="87678" fg:w="291"/><text x="18.0993%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="17.9095%" y="757" width="0.0126%" height="15" fill="rgb(212,185,49)" fg:x="87974" fg:w="62"/><text x="18.1595%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.01%)</title><rect x="17.9097%" y="741" width="0.0124%" height="15" fill="rgb(215,175,22)" fg:x="87975" fg:w="61"/><text x="18.1597%" y="751.50"></text></g><g><title>native_write_msr (61 samples, 0.01%)</title><rect x="17.9097%" y="725" width="0.0124%" height="15" fill="rgb(250,205,14)" fg:x="87975" fg:w="61"/><text x="18.1597%" y="735.50"></text></g><g><title>schedule_tail (66 samples, 0.01%)</title><rect x="17.9089%" y="789" width="0.0134%" height="15" fill="rgb(225,211,22)" fg:x="87971" fg:w="66"/><text x="18.1589%" y="799.50"></text></g><g><title>finish_task_switch (65 samples, 0.01%)</title><rect x="17.9091%" y="773" width="0.0132%" height="15" fill="rgb(251,179,42)" fg:x="87972" fg:w="65"/><text x="18.1591%" y="783.50"></text></g><g><title>ret_from_fork (69 samples, 0.01%)</title><rect x="17.9085%" y="805" width="0.0140%" height="15" fill="rgb(208,216,51)" fg:x="87969" fg:w="69"/><text x="18.1585%" y="815.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (576 samples, 0.12%)</title><rect x="17.8055%" y="821" width="0.1173%" height="15" fill="rgb(235,36,11)" fg:x="87463" fg:w="576"/><text x="18.0555%" y="831.50"></text></g><g><title>bazel (631 samples, 0.13%)</title><rect x="17.8049%" y="837" width="0.1285%" height="15" fill="rgb(213,189,28)" fg:x="87460" fg:w="631"/><text x="18.0549%" y="847.50"></text></g><g><title>elf_machine_rela (75 samples, 0.02%)</title><rect x="17.9531%" y="709" width="0.0153%" height="15" fill="rgb(227,203,42)" fg:x="88188" fg:w="75"/><text x="18.2031%" y="719.50"></text></g><g><title>_dl_lookup_symbol_x (56 samples, 0.01%)</title><rect x="17.9570%" y="693" width="0.0114%" height="15" fill="rgb(244,72,36)" fg:x="88207" fg:w="56"/><text x="18.2070%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (95 samples, 0.02%)</title><rect x="17.9503%" y="725" width="0.0193%" height="15" fill="rgb(213,53,17)" fg:x="88174" fg:w="95"/><text x="18.2003%" y="735.50"></text></g><g><title>_dl_relocate_object (106 samples, 0.02%)</title><rect x="17.9482%" y="741" width="0.0216%" height="15" fill="rgb(207,167,3)" fg:x="88164" fg:w="106"/><text x="18.1982%" y="751.50"></text></g><g><title>_start (152 samples, 0.03%)</title><rect x="17.9393%" y="821" width="0.0309%" height="15" fill="rgb(216,98,30)" fg:x="88120" fg:w="152"/><text x="18.1893%" y="831.50"></text></g><g><title>_dl_start (136 samples, 0.03%)</title><rect x="17.9425%" y="805" width="0.0277%" height="15" fill="rgb(236,123,15)" fg:x="88136" fg:w="136"/><text x="18.1925%" y="815.50"></text></g><g><title>_dl_start_final (136 samples, 0.03%)</title><rect x="17.9425%" y="789" width="0.0277%" height="15" fill="rgb(248,81,50)" fg:x="88136" fg:w="136"/><text x="18.1925%" y="799.50"></text></g><g><title>_dl_sysdep_start (136 samples, 0.03%)</title><rect x="17.9425%" y="773" width="0.0277%" height="15" fill="rgb(214,120,4)" fg:x="88136" fg:w="136"/><text x="18.1925%" y="783.50"></text></g><g><title>[ld-2.31.so] (136 samples, 0.03%)</title><rect x="17.9425%" y="757" width="0.0277%" height="15" fill="rgb(208,179,34)" fg:x="88136" fg:w="136"/><text x="18.1925%" y="767.50"></text></g><g><title>build-runfiles (207 samples, 0.04%)</title><rect x="17.9336%" y="837" width="0.0421%" height="15" fill="rgb(227,140,7)" fg:x="88092" fg:w="207"/><text x="18.1836%" y="847.50"></text></g><g><title>[dash] (128 samples, 0.03%)</title><rect x="18.0508%" y="501" width="0.0261%" height="15" fill="rgb(214,22,6)" fg:x="88668" fg:w="128"/><text x="18.3008%" y="511.50"></text></g><g><title>[libc-2.31.so] (59 samples, 0.01%)</title><rect x="18.0769%" y="501" width="0.0120%" height="15" fill="rgb(207,137,27)" fg:x="88796" fg:w="59"/><text x="18.3269%" y="511.50"></text></g><g><title>do_open_execat (85 samples, 0.02%)</title><rect x="18.1186%" y="405" width="0.0173%" height="15" fill="rgb(210,8,46)" fg:x="89001" fg:w="85"/><text x="18.3686%" y="415.50"></text></g><g><title>do_filp_open (85 samples, 0.02%)</title><rect x="18.1186%" y="389" width="0.0173%" height="15" fill="rgb(240,16,54)" fg:x="89001" fg:w="85"/><text x="18.3686%" y="399.50"></text></g><g><title>path_openat (81 samples, 0.02%)</title><rect x="18.1194%" y="373" width="0.0165%" height="15" fill="rgb(211,209,29)" fg:x="89005" fg:w="81"/><text x="18.3694%" y="383.50"></text></g><g><title>security_bprm_creds_from_file (53 samples, 0.01%)</title><rect x="18.1380%" y="373" width="0.0108%" height="15" fill="rgb(226,228,24)" fg:x="89096" fg:w="53"/><text x="18.3880%" y="383.50"></text></g><g><title>cap_bprm_creds_from_file (53 samples, 0.01%)</title><rect x="18.1380%" y="357" width="0.0108%" height="15" fill="rgb(222,84,9)" fg:x="89096" fg:w="53"/><text x="18.3880%" y="367.50"></text></g><g><title>begin_new_exec (60 samples, 0.01%)</title><rect x="18.1369%" y="389" width="0.0122%" height="15" fill="rgb(234,203,30)" fg:x="89091" fg:w="60"/><text x="18.3869%" y="399.50"></text></g><g><title>load_elf_binary (108 samples, 0.02%)</title><rect x="18.1363%" y="405" width="0.0220%" height="15" fill="rgb(238,109,14)" fg:x="89088" fg:w="108"/><text x="18.3863%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (308 samples, 0.06%)</title><rect x="18.1732%" y="325" width="0.0627%" height="15" fill="rgb(233,206,34)" fg:x="89269" fg:w="308"/><text x="18.4232%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (303 samples, 0.06%)</title><rect x="18.1742%" y="309" width="0.0617%" height="15" fill="rgb(220,167,47)" fg:x="89274" fg:w="303"/><text x="18.4242%" y="319.50"></text></g><g><title>native_write_msr (299 samples, 0.06%)</title><rect x="18.1750%" y="293" width="0.0609%" height="15" fill="rgb(238,105,10)" fg:x="89278" fg:w="299"/><text x="18.4250%" y="303.50"></text></g><g><title>_cond_resched (316 samples, 0.06%)</title><rect x="18.1720%" y="373" width="0.0643%" height="15" fill="rgb(213,227,17)" fg:x="89263" fg:w="316"/><text x="18.4220%" y="383.50"></text></g><g><title>__schedule (316 samples, 0.06%)</title><rect x="18.1720%" y="357" width="0.0643%" height="15" fill="rgb(217,132,38)" fg:x="89263" fg:w="316"/><text x="18.4220%" y="367.50"></text></g><g><title>finish_task_switch (315 samples, 0.06%)</title><rect x="18.1722%" y="341" width="0.0641%" height="15" fill="rgb(242,146,4)" fg:x="89264" fg:w="315"/><text x="18.4222%" y="351.50"></text></g><g><title>sched_exec (359 samples, 0.07%)</title><rect x="18.1634%" y="405" width="0.0731%" height="15" fill="rgb(212,61,9)" fg:x="89221" fg:w="359"/><text x="18.4134%" y="415.50"></text></g><g><title>stop_one_cpu (318 samples, 0.06%)</title><rect x="18.1718%" y="389" width="0.0647%" height="15" fill="rgb(247,126,22)" fg:x="89262" fg:w="318"/><text x="18.4218%" y="399.50"></text></g><g><title>security_bprm_check (102 samples, 0.02%)</title><rect x="18.2365%" y="405" width="0.0208%" height="15" fill="rgb(220,196,2)" fg:x="89580" fg:w="102"/><text x="18.4865%" y="415.50"></text></g><g><title>tomoyo_bprm_check_security (100 samples, 0.02%)</title><rect x="18.2369%" y="389" width="0.0204%" height="15" fill="rgb(208,46,4)" fg:x="89582" fg:w="100"/><text x="18.4869%" y="399.50"></text></g><g><title>tomoyo_find_next_domain (96 samples, 0.02%)</title><rect x="18.2377%" y="373" width="0.0195%" height="15" fill="rgb(252,104,46)" fg:x="89586" fg:w="96"/><text x="18.4877%" y="383.50"></text></g><g><title>tomoyo_realpath_nofollow (60 samples, 0.01%)</title><rect x="18.2450%" y="357" width="0.0122%" height="15" fill="rgb(237,152,48)" fg:x="89622" fg:w="60"/><text x="18.4950%" y="367.50"></text></g><g><title>aa_dfa_leftmatch (62 samples, 0.01%)</title><rect x="18.2709%" y="341" width="0.0126%" height="15" fill="rgb(221,59,37)" fg:x="89749" fg:w="62"/><text x="18.5209%" y="351.50"></text></g><g><title>apparmor_bprm_creds_for_exec (153 samples, 0.03%)</title><rect x="18.2575%" y="389" width="0.0311%" height="15" fill="rgb(209,202,51)" fg:x="89683" fg:w="153"/><text x="18.5075%" y="399.50"></text></g><g><title>profile_transition (142 samples, 0.03%)</title><rect x="18.2597%" y="373" width="0.0289%" height="15" fill="rgb(228,81,30)" fg:x="89694" fg:w="142"/><text x="18.5097%" y="383.50"></text></g><g><title>find_attach (120 samples, 0.02%)</title><rect x="18.2642%" y="357" width="0.0244%" height="15" fill="rgb(227,42,39)" fg:x="89716" fg:w="120"/><text x="18.5142%" y="367.50"></text></g><g><title>security_bprm_creds_for_exec (160 samples, 0.03%)</title><rect x="18.2573%" y="405" width="0.0326%" height="15" fill="rgb(221,26,2)" fg:x="89682" fg:w="160"/><text x="18.5073%" y="415.50"></text></g><g><title>bprm_execve (885 samples, 0.18%)</title><rect x="18.1101%" y="421" width="0.1802%" height="15" fill="rgb(254,61,31)" fg:x="88959" fg:w="885"/><text x="18.3601%" y="431.50"></text></g><g><title>__get_user_pages_remote (67 samples, 0.01%)</title><rect x="18.2906%" y="389" width="0.0136%" height="15" fill="rgb(222,173,38)" fg:x="89846" fg:w="67"/><text x="18.5406%" y="399.50"></text></g><g><title>__get_user_pages (66 samples, 0.01%)</title><rect x="18.2908%" y="373" width="0.0134%" height="15" fill="rgb(218,50,12)" fg:x="89847" fg:w="66"/><text x="18.5408%" y="383.50"></text></g><g><title>handle_mm_fault (53 samples, 0.01%)</title><rect x="18.2935%" y="357" width="0.0108%" height="15" fill="rgb(223,88,40)" fg:x="89860" fg:w="53"/><text x="18.5435%" y="367.50"></text></g><g><title>get_arg_page (73 samples, 0.01%)</title><rect x="18.2902%" y="405" width="0.0149%" height="15" fill="rgb(237,54,19)" fg:x="89844" fg:w="73"/><text x="18.5402%" y="415.50"></text></g><g><title>copy_string_kernel (74 samples, 0.02%)</title><rect x="18.2902%" y="421" width="0.0151%" height="15" fill="rgb(251,129,25)" fg:x="89844" fg:w="74"/><text x="18.5402%" y="431.50"></text></g><g><title>do_execveat_common (1,046 samples, 0.21%)</title><rect x="18.1025%" y="437" width="0.2129%" height="15" fill="rgb(238,97,19)" fg:x="88922" fg:w="1046"/><text x="18.3525%" y="447.50"></text></g><g><title>__GI_execve (1,062 samples, 0.22%)</title><rect x="18.1023%" y="501" width="0.2162%" height="15" fill="rgb(240,169,18)" fg:x="88921" fg:w="1062"/><text x="18.3523%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,061 samples, 0.22%)</title><rect x="18.1025%" y="485" width="0.2160%" height="15" fill="rgb(230,187,49)" fg:x="88922" fg:w="1061"/><text x="18.3525%" y="495.50"></text></g><g><title>do_syscall_64 (1,061 samples, 0.22%)</title><rect x="18.1025%" y="469" width="0.2160%" height="15" fill="rgb(209,44,26)" fg:x="88922" fg:w="1061"/><text x="18.3525%" y="479.50"></text></g><g><title>__x64_sys_execve (1,061 samples, 0.22%)</title><rect x="18.1025%" y="453" width="0.2160%" height="15" fill="rgb(244,0,6)" fg:x="88922" fg:w="1061"/><text x="18.3525%" y="463.50"></text></g><g><title>filemap_map_pages (75 samples, 0.02%)</title><rect x="18.3289%" y="389" width="0.0153%" height="15" fill="rgb(248,18,21)" fg:x="90034" fg:w="75"/><text x="18.5789%" y="399.50"></text></g><g><title>handle_mm_fault (86 samples, 0.02%)</title><rect x="18.3269%" y="405" width="0.0175%" height="15" fill="rgb(245,180,19)" fg:x="90024" fg:w="86"/><text x="18.5769%" y="415.50"></text></g><g><title>do_user_addr_fault (94 samples, 0.02%)</title><rect x="18.3255%" y="421" width="0.0191%" height="15" fill="rgb(252,118,36)" fg:x="90017" fg:w="94"/><text x="18.5755%" y="431.50"></text></g><g><title>asm_exc_page_fault (95 samples, 0.02%)</title><rect x="18.3255%" y="453" width="0.0193%" height="15" fill="rgb(210,224,19)" fg:x="90017" fg:w="95"/><text x="18.5755%" y="463.50"></text></g><g><title>exc_page_fault (95 samples, 0.02%)</title><rect x="18.3255%" y="437" width="0.0193%" height="15" fill="rgb(218,30,24)" fg:x="90017" fg:w="95"/><text x="18.5755%" y="447.50"></text></g><g><title>_mm_loadu_si128 (107 samples, 0.02%)</title><rect x="18.3236%" y="469" width="0.0218%" height="15" fill="rgb(219,75,50)" fg:x="90008" fg:w="107"/><text x="18.5736%" y="479.50"></text></g><g><title>__m128i_shift_right (109 samples, 0.02%)</title><rect x="18.3236%" y="485" width="0.0222%" height="15" fill="rgb(234,72,50)" fg:x="90008" fg:w="109"/><text x="18.5736%" y="495.50"></text></g><g><title>filemap_map_pages (87 samples, 0.02%)</title><rect x="18.3499%" y="421" width="0.0177%" height="15" fill="rgb(219,100,48)" fg:x="90137" fg:w="87"/><text x="18.5999%" y="431.50"></text></g><g><title>asm_exc_page_fault (105 samples, 0.02%)</title><rect x="18.3466%" y="485" width="0.0214%" height="15" fill="rgb(253,5,41)" fg:x="90121" fg:w="105"/><text x="18.5966%" y="495.50"></text></g><g><title>exc_page_fault (104 samples, 0.02%)</title><rect x="18.3468%" y="469" width="0.0212%" height="15" fill="rgb(247,181,11)" fg:x="90122" fg:w="104"/><text x="18.5968%" y="479.50"></text></g><g><title>do_user_addr_fault (104 samples, 0.02%)</title><rect x="18.3468%" y="453" width="0.0212%" height="15" fill="rgb(222,223,25)" fg:x="90122" fg:w="104"/><text x="18.5968%" y="463.50"></text></g><g><title>handle_mm_fault (95 samples, 0.02%)</title><rect x="18.3487%" y="437" width="0.0193%" height="15" fill="rgb(214,198,28)" fg:x="90131" fg:w="95"/><text x="18.5987%" y="447.50"></text></g><g><title>__strcspn_sse42 (248 samples, 0.05%)</title><rect x="18.3191%" y="501" width="0.0505%" height="15" fill="rgb(230,46,43)" fg:x="89986" fg:w="248"/><text x="18.5691%" y="511.50"></text></g><g><title>[dash] (1,616 samples, 0.33%)</title><rect x="18.0433%" y="517" width="0.3290%" height="15" fill="rgb(233,65,53)" fg:x="88631" fg:w="1616"/><text x="18.2933%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (1,220 samples, 0.25%)</title><rect x="18.3957%" y="389" width="0.2484%" height="15" fill="rgb(221,121,27)" fg:x="90362" fg:w="1220"/><text x="18.6457%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,198 samples, 0.24%)</title><rect x="18.4002%" y="373" width="0.2439%" height="15" fill="rgb(247,70,47)" fg:x="90384" fg:w="1198"/><text x="18.6502%" y="383.50"></text></g><g><title>native_write_msr (1,182 samples, 0.24%)</title><rect x="18.4034%" y="357" width="0.2406%" height="15" fill="rgb(228,85,35)" fg:x="90400" fg:w="1182"/><text x="18.6534%" y="367.50"></text></g><g><title>finish_task_switch (1,269 samples, 0.26%)</title><rect x="18.3900%" y="405" width="0.2583%" height="15" fill="rgb(209,50,18)" fg:x="90334" fg:w="1269"/><text x="18.6400%" y="415.50"></text></g><g><title>schedule (1,303 samples, 0.27%)</title><rect x="18.3857%" y="437" width="0.2653%" height="15" fill="rgb(250,19,35)" fg:x="90313" fg:w="1303"/><text x="18.6357%" y="447.50"></text></g><g><title>__schedule (1,299 samples, 0.26%)</title><rect x="18.3865%" y="421" width="0.2644%" height="15" fill="rgb(253,107,29)" fg:x="90317" fg:w="1299"/><text x="18.6365%" y="431.50"></text></g><g><title>release_task (108 samples, 0.02%)</title><rect x="18.6557%" y="421" width="0.0220%" height="15" fill="rgb(252,179,29)" fg:x="91639" fg:w="108"/><text x="18.9057%" y="431.50"></text></g><g><title>kernel_wait4 (1,457 samples, 0.30%)</title><rect x="18.3820%" y="469" width="0.2966%" height="15" fill="rgb(238,194,6)" fg:x="90295" fg:w="1457"/><text x="18.6320%" y="479.50"></text></g><g><title>do_wait (1,457 samples, 0.30%)</title><rect x="18.3820%" y="453" width="0.2966%" height="15" fill="rgb(238,164,29)" fg:x="90295" fg:w="1457"/><text x="18.6320%" y="463.50"></text></g><g><title>wait_consider_task (136 samples, 0.03%)</title><rect x="18.6510%" y="437" width="0.0277%" height="15" fill="rgb(224,25,9)" fg:x="91616" fg:w="136"/><text x="18.9010%" y="447.50"></text></g><g><title>do_syscall_64 (1,464 samples, 0.30%)</title><rect x="18.3808%" y="485" width="0.2980%" height="15" fill="rgb(244,153,23)" fg:x="90289" fg:w="1464"/><text x="18.6308%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,520 samples, 0.31%)</title><rect x="18.3806%" y="501" width="0.3094%" height="15" fill="rgb(212,203,14)" fg:x="90288" fg:w="1520"/><text x="18.6306%" y="511.50"></text></g><g><title>syscall_exit_to_user_mode (55 samples, 0.01%)</title><rect x="18.6789%" y="485" width="0.0112%" height="15" fill="rgb(220,164,20)" fg:x="91753" fg:w="55"/><text x="18.9289%" y="495.50"></text></g><g><title>exit_to_user_mode_prepare (54 samples, 0.01%)</title><rect x="18.6791%" y="469" width="0.0110%" height="15" fill="rgb(222,203,48)" fg:x="91754" fg:w="54"/><text x="18.9291%" y="479.50"></text></g><g><title>arch_do_signal (52 samples, 0.01%)</title><rect x="18.6795%" y="453" width="0.0106%" height="15" fill="rgb(215,159,22)" fg:x="91756" fg:w="52"/><text x="18.9295%" y="463.50"></text></g><g><title>__GI___wait4 (1,539 samples, 0.31%)</title><rect x="18.3786%" y="517" width="0.3133%" height="15" fill="rgb(216,183,47)" fg:x="90278" fg:w="1539"/><text x="18.6286%" y="527.50"></text></g><g><title>[dash] (3,326 samples, 0.68%)</title><rect x="18.0392%" y="533" width="0.6771%" height="15" fill="rgb(229,195,25)" fg:x="88611" fg:w="3326"/><text x="18.2892%" y="543.50"></text></g><g><title>handle_mm_fault (66 samples, 0.01%)</title><rect x="18.7320%" y="485" width="0.0134%" height="15" fill="rgb(224,132,51)" fg:x="92014" fg:w="66"/><text x="18.9820%" y="495.50"></text></g><g><title>wp_page_copy (55 samples, 0.01%)</title><rect x="18.7342%" y="469" width="0.0112%" height="15" fill="rgb(240,63,7)" fg:x="92025" fg:w="55"/><text x="18.9842%" y="479.50"></text></g><g><title>exc_page_fault (73 samples, 0.01%)</title><rect x="18.7308%" y="517" width="0.0149%" height="15" fill="rgb(249,182,41)" fg:x="92008" fg:w="73"/><text x="18.9808%" y="527.50"></text></g><g><title>do_user_addr_fault (73 samples, 0.01%)</title><rect x="18.7308%" y="501" width="0.0149%" height="15" fill="rgb(243,47,26)" fg:x="92008" fg:w="73"/><text x="18.9808%" y="511.50"></text></g><g><title>asm_exc_page_fault (76 samples, 0.02%)</title><rect x="18.7304%" y="533" width="0.0155%" height="15" fill="rgb(233,48,2)" fg:x="92006" fg:w="76"/><text x="18.9804%" y="543.50"></text></g><g><title>[dash] (3,529 samples, 0.72%)</title><rect x="18.0290%" y="549" width="0.7184%" height="15" fill="rgb(244,165,34)" fg:x="88561" fg:w="3529"/><text x="18.2790%" y="559.50"></text></g><g><title>filemap_map_pages (111 samples, 0.02%)</title><rect x="18.7855%" y="453" width="0.0226%" height="15" fill="rgb(207,89,7)" fg:x="92277" fg:w="111"/><text x="19.0355%" y="463.50"></text></g><g><title>handle_mm_fault (127 samples, 0.03%)</title><rect x="18.7831%" y="469" width="0.0259%" height="15" fill="rgb(244,117,36)" fg:x="92265" fg:w="127"/><text x="19.0331%" y="479.50"></text></g><g><title>asm_exc_page_fault (140 samples, 0.03%)</title><rect x="18.7807%" y="517" width="0.0285%" height="15" fill="rgb(226,144,34)" fg:x="92253" fg:w="140"/><text x="19.0307%" y="527.50"></text></g><g><title>exc_page_fault (140 samples, 0.03%)</title><rect x="18.7807%" y="501" width="0.0285%" height="15" fill="rgb(213,23,19)" fg:x="92253" fg:w="140"/><text x="19.0307%" y="511.50"></text></g><g><title>do_user_addr_fault (139 samples, 0.03%)</title><rect x="18.7809%" y="485" width="0.0283%" height="15" fill="rgb(217,75,12)" fg:x="92254" fg:w="139"/><text x="19.0309%" y="495.50"></text></g><g><title>__run_fork_handlers (158 samples, 0.03%)</title><rect x="18.7792%" y="533" width="0.0322%" height="15" fill="rgb(224,159,17)" fg:x="92246" fg:w="158"/><text x="19.0292%" y="543.50"></text></g><g><title>alloc_set_pte (85 samples, 0.02%)</title><rect x="18.8743%" y="437" width="0.0173%" height="15" fill="rgb(217,118,1)" fg:x="92713" fg:w="85"/><text x="19.1243%" y="447.50"></text></g><g><title>filemap_map_pages (274 samples, 0.06%)</title><rect x="18.8517%" y="453" width="0.0558%" height="15" fill="rgb(232,180,48)" fg:x="92602" fg:w="274"/><text x="19.1017%" y="463.50"></text></g><g><title>__alloc_pages_nodemask (67 samples, 0.01%)</title><rect x="18.9093%" y="437" width="0.0136%" height="15" fill="rgb(230,27,33)" fg:x="92885" fg:w="67"/><text x="19.1593%" y="447.50"></text></g><g><title>pte_alloc_one (79 samples, 0.02%)</title><rect x="18.9087%" y="453" width="0.0161%" height="15" fill="rgb(205,31,21)" fg:x="92882" fg:w="79"/><text x="19.1587%" y="463.50"></text></g><g><title>handle_mm_fault (424 samples, 0.09%)</title><rect x="18.8391%" y="469" width="0.0863%" height="15" fill="rgb(253,59,4)" fg:x="92540" fg:w="424"/><text x="19.0891%" y="479.50"></text></g><g><title>exc_page_fault (477 samples, 0.10%)</title><rect x="18.8287%" y="501" width="0.0971%" height="15" fill="rgb(224,201,9)" fg:x="92489" fg:w="477"/><text x="19.0787%" y="511.50"></text></g><g><title>do_user_addr_fault (477 samples, 0.10%)</title><rect x="18.8287%" y="485" width="0.0971%" height="15" fill="rgb(229,206,30)" fg:x="92489" fg:w="477"/><text x="19.0787%" y="495.50"></text></g><g><title>asm_exc_page_fault (486 samples, 0.10%)</title><rect x="18.8279%" y="517" width="0.0989%" height="15" fill="rgb(212,67,47)" fg:x="92485" fg:w="486"/><text x="19.0779%" y="527.50"></text></g><g><title>kmem_cache_alloc (88 samples, 0.02%)</title><rect x="19.0042%" y="389" width="0.0179%" height="15" fill="rgb(211,96,50)" fg:x="93351" fg:w="88"/><text x="19.2542%" y="399.50"></text></g><g><title>anon_vma_clone (148 samples, 0.03%)</title><rect x="18.9930%" y="405" width="0.0301%" height="15" fill="rgb(252,114,18)" fg:x="93296" fg:w="148"/><text x="19.2430%" y="415.50"></text></g><g><title>kmem_cache_alloc (80 samples, 0.02%)</title><rect x="19.0249%" y="405" width="0.0163%" height="15" fill="rgb(223,58,37)" fg:x="93453" fg:w="80"/><text x="19.2749%" y="415.50"></text></g><g><title>anon_vma_fork (261 samples, 0.05%)</title><rect x="18.9897%" y="421" width="0.0531%" height="15" fill="rgb(237,70,4)" fg:x="93280" fg:w="261"/><text x="19.2397%" y="431.50"></text></g><g><title>copy_page_range (231 samples, 0.05%)</title><rect x="19.0429%" y="421" width="0.0470%" height="15" fill="rgb(244,85,46)" fg:x="93541" fg:w="231"/><text x="19.2929%" y="431.50"></text></g><g><title>vm_area_dup (204 samples, 0.04%)</title><rect x="19.1064%" y="421" width="0.0415%" height="15" fill="rgb(223,39,52)" fg:x="93853" fg:w="204"/><text x="19.3564%" y="431.50"></text></g><g><title>kmem_cache_alloc (141 samples, 0.03%)</title><rect x="19.1192%" y="405" width="0.0287%" height="15" fill="rgb(218,200,14)" fg:x="93916" fg:w="141"/><text x="19.3692%" y="415.50"></text></g><g><title>dup_mm (863 samples, 0.18%)</title><rect x="18.9738%" y="437" width="0.1757%" height="15" fill="rgb(208,171,16)" fg:x="93202" fg:w="863"/><text x="19.2238%" y="447.50"></text></g><g><title>kmem_cache_alloc_trace (55 samples, 0.01%)</title><rect x="19.1839%" y="373" width="0.0112%" height="15" fill="rgb(234,200,18)" fg:x="94234" fg:w="55"/><text x="19.4339%" y="383.50"></text></g><g><title>inherit_task_group.isra.0 (247 samples, 0.05%)</title><rect x="19.1654%" y="421" width="0.0503%" height="15" fill="rgb(228,45,11)" fg:x="94143" fg:w="247"/><text x="19.4154%" y="431.50"></text></g><g><title>inherit_event.constprop.0 (238 samples, 0.05%)</title><rect x="19.1672%" y="405" width="0.0485%" height="15" fill="rgb(237,182,11)" fg:x="94152" fg:w="238"/><text x="19.4172%" y="415.50"></text></g><g><title>perf_event_alloc (203 samples, 0.04%)</title><rect x="19.1744%" y="389" width="0.0413%" height="15" fill="rgb(241,175,49)" fg:x="94187" fg:w="203"/><text x="19.4244%" y="399.50"></text></g><g><title>perf_try_init_event (101 samples, 0.02%)</title><rect x="19.1951%" y="373" width="0.0206%" height="15" fill="rgb(247,38,35)" fg:x="94289" fg:w="101"/><text x="19.4451%" y="383.50"></text></g><g><title>x86_pmu_event_init (101 samples, 0.02%)</title><rect x="19.1951%" y="357" width="0.0206%" height="15" fill="rgb(228,39,49)" fg:x="94289" fg:w="101"/><text x="19.4451%" y="367.50"></text></g><g><title>perf_event_init_task (261 samples, 0.05%)</title><rect x="19.1642%" y="437" width="0.0531%" height="15" fill="rgb(226,101,26)" fg:x="94137" fg:w="261"/><text x="19.4142%" y="447.50"></text></g><g><title>copy_process (1,466 samples, 0.30%)</title><rect x="18.9272%" y="453" width="0.2984%" height="15" fill="rgb(206,141,19)" fg:x="92973" fg:w="1466"/><text x="19.1772%" y="463.50"></text></g><g><title>__do_sys_clone (1,541 samples, 0.31%)</title><rect x="18.9270%" y="485" width="0.3137%" height="15" fill="rgb(211,200,13)" fg:x="92972" fg:w="1541"/><text x="19.1770%" y="495.50"></text></g><g><title>kernel_clone (1,541 samples, 0.31%)</title><rect x="18.9270%" y="469" width="0.3137%" height="15" fill="rgb(241,121,6)" fg:x="92972" fg:w="1541"/><text x="19.1770%" y="479.50"></text></g><g><title>wake_up_new_task (71 samples, 0.01%)</title><rect x="19.2263%" y="453" width="0.0145%" height="15" fill="rgb(234,221,29)" fg:x="94442" fg:w="71"/><text x="19.4763%" y="463.50"></text></g><g><title>do_syscall_64 (1,543 samples, 0.31%)</title><rect x="18.9268%" y="501" width="0.3141%" height="15" fill="rgb(229,136,5)" fg:x="92971" fg:w="1543"/><text x="19.1768%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,545 samples, 0.31%)</title><rect x="18.9268%" y="517" width="0.3145%" height="15" fill="rgb(238,36,11)" fg:x="92971" fg:w="1545"/><text x="19.1768%" y="527.50"></text></g><g><title>find_vma (78 samples, 0.02%)</title><rect x="19.2990%" y="421" width="0.0159%" height="15" fill="rgb(251,55,41)" fg:x="94799" fg:w="78"/><text x="19.5490%" y="431.50"></text></g><g><title>do_wp_page (82 samples, 0.02%)</title><rect x="19.3429%" y="405" width="0.0167%" height="15" fill="rgb(242,34,40)" fg:x="95015" fg:w="82"/><text x="19.5929%" y="415.50"></text></g><g><title>__alloc_pages_nodemask (63 samples, 0.01%)</title><rect x="19.3643%" y="373" width="0.0128%" height="15" fill="rgb(215,42,17)" fg:x="95120" fg:w="63"/><text x="19.6143%" y="383.50"></text></g><g><title>get_page_from_freelist (52 samples, 0.01%)</title><rect x="19.3665%" y="357" width="0.0106%" height="15" fill="rgb(207,44,46)" fg:x="95131" fg:w="52"/><text x="19.6165%" y="367.50"></text></g><g><title>alloc_pages_vma (69 samples, 0.01%)</title><rect x="19.3635%" y="389" width="0.0140%" height="15" fill="rgb(211,206,28)" fg:x="95116" fg:w="69"/><text x="19.6135%" y="399.50"></text></g><g><title>handle_mm_fault (369 samples, 0.08%)</title><rect x="19.3148%" y="421" width="0.0751%" height="15" fill="rgb(237,167,16)" fg:x="94877" fg:w="369"/><text x="19.5648%" y="431.50"></text></g><g><title>wp_page_copy (142 samples, 0.03%)</title><rect x="19.3611%" y="405" width="0.0289%" height="15" fill="rgb(233,66,6)" fg:x="95104" fg:w="142"/><text x="19.6111%" y="415.50"></text></g><g><title>exc_page_fault (488 samples, 0.10%)</title><rect x="19.2933%" y="453" width="0.0993%" height="15" fill="rgb(246,123,29)" fg:x="94771" fg:w="488"/><text x="19.5433%" y="463.50"></text></g><g><title>do_user_addr_fault (484 samples, 0.10%)</title><rect x="19.2941%" y="437" width="0.0985%" height="15" fill="rgb(209,62,40)" fg:x="94775" fg:w="484"/><text x="19.5441%" y="447.50"></text></g><g><title>asm_exc_page_fault (592 samples, 0.12%)</title><rect x="19.2725%" y="469" width="0.1205%" height="15" fill="rgb(218,4,25)" fg:x="94669" fg:w="592"/><text x="19.5225%" y="479.50"></text></g><g><title>__put_user_nocheck_4 (640 samples, 0.13%)</title><rect x="19.2639%" y="485" width="0.1303%" height="15" fill="rgb(253,91,49)" fg:x="94627" fg:w="640"/><text x="19.5139%" y="495.50"></text></g><g><title>__task_pid_nr_ns (57 samples, 0.01%)</title><rect x="19.3942%" y="485" width="0.0116%" height="15" fill="rgb(228,155,29)" fg:x="95267" fg:w="57"/><text x="19.6442%" y="495.50"></text></g><g><title>__mmdrop (128 samples, 0.03%)</title><rect x="19.4708%" y="469" width="0.0261%" height="15" fill="rgb(243,57,37)" fg:x="95643" fg:w="128"/><text x="19.7208%" y="479.50"></text></g><g><title>pgd_free (65 samples, 0.01%)</title><rect x="19.4836%" y="453" width="0.0132%" height="15" fill="rgb(244,167,17)" fg:x="95706" fg:w="65"/><text x="19.7336%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (14,170 samples, 2.88%)</title><rect x="19.4968%" y="469" width="2.8847%" height="15" fill="rgb(207,181,38)" fg:x="95771" fg:w="14170"/><text x="19.7468%" y="479.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (13,791 samples, 2.81%)</title><rect x="19.5740%" y="453" width="2.8075%" height="15" fill="rgb(211,8,23)" fg:x="96150" fg:w="13791"/><text x="19.8240%" y="463.50">__..</text></g><g><title>native_write_msr (13,702 samples, 2.79%)</title><rect x="19.5921%" y="437" width="2.7894%" height="15" fill="rgb(235,11,44)" fg:x="96239" fg:w="13702"/><text x="19.8421%" y="447.50">na..</text></g><g><title>ttwu_do_activate (59 samples, 0.01%)</title><rect x="22.4072%" y="261" width="0.0120%" height="15" fill="rgb(248,18,52)" fg:x="110067" fg:w="59"/><text x="22.6572%" y="271.50"></text></g><g><title>__wake_up_common (91 samples, 0.02%)</title><rect x="22.4033%" y="309" width="0.0185%" height="15" fill="rgb(208,4,7)" fg:x="110048" fg:w="91"/><text x="22.6533%" y="319.50"></text></g><g><title>pollwake (85 samples, 0.02%)</title><rect x="22.4045%" y="293" width="0.0173%" height="15" fill="rgb(240,17,39)" fg:x="110054" fg:w="85"/><text x="22.6545%" y="303.50"></text></g><g><title>try_to_wake_up (85 samples, 0.02%)</title><rect x="22.4045%" y="277" width="0.0173%" height="15" fill="rgb(207,170,3)" fg:x="110054" fg:w="85"/><text x="22.6545%" y="287.50"></text></g><g><title>irq_work_run (100 samples, 0.02%)</title><rect x="22.4019%" y="405" width="0.0204%" height="15" fill="rgb(236,100,52)" fg:x="110041" fg:w="100"/><text x="22.6519%" y="415.50"></text></g><g><title>irq_work_run_list (99 samples, 0.02%)</title><rect x="22.4021%" y="389" width="0.0202%" height="15" fill="rgb(246,78,51)" fg:x="110042" fg:w="99"/><text x="22.6521%" y="399.50"></text></g><g><title>irq_work_single (99 samples, 0.02%)</title><rect x="22.4021%" y="373" width="0.0202%" height="15" fill="rgb(211,17,15)" fg:x="110042" fg:w="99"/><text x="22.6521%" y="383.50"></text></g><g><title>perf_pending_event (98 samples, 0.02%)</title><rect x="22.4023%" y="357" width="0.0200%" height="15" fill="rgb(209,59,46)" fg:x="110043" fg:w="98"/><text x="22.6523%" y="367.50"></text></g><g><title>perf_event_wakeup (95 samples, 0.02%)</title><rect x="22.4029%" y="341" width="0.0193%" height="15" fill="rgb(210,92,25)" fg:x="110046" fg:w="95"/><text x="22.6529%" y="351.50"></text></g><g><title>__wake_up_common_lock (94 samples, 0.02%)</title><rect x="22.4031%" y="325" width="0.0191%" height="15" fill="rgb(238,174,52)" fg:x="110047" fg:w="94"/><text x="22.6531%" y="335.50"></text></g><g><title>asm_call_sysvec_on_stack (102 samples, 0.02%)</title><rect x="22.4017%" y="437" width="0.0208%" height="15" fill="rgb(230,73,7)" fg:x="110040" fg:w="102"/><text x="22.6517%" y="447.50"></text></g><g><title>__sysvec_irq_work (101 samples, 0.02%)</title><rect x="22.4019%" y="421" width="0.0206%" height="15" fill="rgb(243,124,40)" fg:x="110041" fg:w="101"/><text x="22.6519%" y="431.50"></text></g><g><title>asm_sysvec_irq_work (199 samples, 0.04%)</title><rect x="22.3842%" y="469" width="0.0405%" height="15" fill="rgb(244,170,11)" fg:x="109954" fg:w="199"/><text x="22.6342%" y="479.50"></text></g><g><title>sysvec_irq_work (114 samples, 0.02%)</title><rect x="22.4015%" y="453" width="0.0232%" height="15" fill="rgb(207,114,54)" fg:x="110039" fg:w="114"/><text x="22.6515%" y="463.50"></text></g><g><title>schedule_tail (15,574 samples, 3.17%)</title><rect x="19.2603%" y="501" width="3.1705%" height="15" fill="rgb(205,42,20)" fg:x="94609" fg:w="15574"/><text x="19.5103%" y="511.50">sch..</text></g><g><title>finish_task_switch (14,859 samples, 3.02%)</title><rect x="19.4058%" y="485" width="3.0250%" height="15" fill="rgb(230,30,28)" fg:x="95324" fg:w="14859"/><text x="19.6558%" y="495.50">fin..</text></g><g><title>ret_from_fork (15,693 samples, 3.19%)</title><rect x="19.2521%" y="517" width="3.1947%" height="15" fill="rgb(205,73,54)" fg:x="94569" fg:w="15693"/><text x="19.5021%" y="527.50">ret..</text></g><g><title>syscall_exit_to_user_mode (79 samples, 0.02%)</title><rect x="22.4308%" y="501" width="0.0161%" height="15" fill="rgb(254,227,23)" fg:x="110183" fg:w="79"/><text x="22.6808%" y="511.50"></text></g><g><title>exit_to_user_mode_prepare (77 samples, 0.02%)</title><rect x="22.4312%" y="485" width="0.0157%" height="15" fill="rgb(228,202,34)" fg:x="110185" fg:w="77"/><text x="22.6812%" y="495.50"></text></g><g><title>switch_fpu_return (67 samples, 0.01%)</title><rect x="22.4332%" y="469" width="0.0136%" height="15" fill="rgb(222,225,37)" fg:x="110195" fg:w="67"/><text x="22.6832%" y="479.50"></text></g><g><title>arch_fork (17,860 samples, 3.64%)</title><rect x="18.8114%" y="533" width="3.6359%" height="15" fill="rgb(221,14,54)" fg:x="92404" fg:w="17860"/><text x="19.0614%" y="543.50">arch..</text></g><g><title>__alloc_pages_nodemask (62 samples, 0.01%)</title><rect x="22.4760%" y="437" width="0.0126%" height="15" fill="rgb(254,102,2)" fg:x="110405" fg:w="62"/><text x="22.7260%" y="447.50"></text></g><g><title>alloc_pages_vma (74 samples, 0.02%)</title><rect x="22.4746%" y="453" width="0.0151%" height="15" fill="rgb(232,104,17)" fg:x="110398" fg:w="74"/><text x="22.7246%" y="463.50"></text></g><g><title>handle_mm_fault (286 samples, 0.06%)</title><rect x="22.4558%" y="485" width="0.0582%" height="15" fill="rgb(250,220,14)" fg:x="110306" fg:w="286"/><text x="22.7058%" y="495.50"></text></g><g><title>wp_page_copy (209 samples, 0.04%)</title><rect x="22.4715%" y="469" width="0.0425%" height="15" fill="rgb(241,158,9)" fg:x="110383" fg:w="209"/><text x="22.7215%" y="479.50"></text></g><g><title>do_user_addr_fault (326 samples, 0.07%)</title><rect x="22.4485%" y="501" width="0.0664%" height="15" fill="rgb(246,9,43)" fg:x="110270" fg:w="326"/><text x="22.6985%" y="511.50"></text></g><g><title>exc_page_fault (328 samples, 0.07%)</title><rect x="22.4483%" y="517" width="0.0668%" height="15" fill="rgb(206,73,33)" fg:x="110269" fg:w="328"/><text x="22.6983%" y="527.50"></text></g><g><title>asm_exc_page_fault (338 samples, 0.07%)</title><rect x="22.4473%" y="533" width="0.0688%" height="15" fill="rgb(222,79,8)" fg:x="110264" fg:w="338"/><text x="22.6973%" y="543.50"></text></g><g><title>__libc_fork (18,508 samples, 3.77%)</title><rect x="18.7548%" y="549" width="3.7678%" height="15" fill="rgb(234,8,54)" fg:x="92126" fg:w="18508"/><text x="19.0048%" y="559.50">__li..</text></g><g><title>filemap_map_pages (115 samples, 0.02%)</title><rect x="22.5322%" y="485" width="0.0234%" height="15" fill="rgb(209,134,38)" fg:x="110681" fg:w="115"/><text x="22.7822%" y="495.50"></text></g><g><title>handle_mm_fault (140 samples, 0.03%)</title><rect x="22.5273%" y="501" width="0.0285%" height="15" fill="rgb(230,127,29)" fg:x="110657" fg:w="140"/><text x="22.7773%" y="511.50"></text></g><g><title>exc_page_fault (162 samples, 0.03%)</title><rect x="22.5234%" y="533" width="0.0330%" height="15" fill="rgb(242,44,41)" fg:x="110638" fg:w="162"/><text x="22.7734%" y="543.50"></text></g><g><title>do_user_addr_fault (162 samples, 0.03%)</title><rect x="22.5234%" y="517" width="0.0330%" height="15" fill="rgb(222,56,43)" fg:x="110638" fg:w="162"/><text x="22.7734%" y="527.50"></text></g><g><title>asm_exc_page_fault (166 samples, 0.03%)</title><rect x="22.5230%" y="549" width="0.0338%" height="15" fill="rgb(238,39,47)" fg:x="110636" fg:w="166"/><text x="22.7730%" y="559.50"></text></g><g><title>[dash] (22,287 samples, 4.54%)</title><rect x="18.0233%" y="565" width="4.5371%" height="15" fill="rgb(226,79,43)" fg:x="88533" fg:w="22287"/><text x="18.2733%" y="575.50">[dash]</text></g><g><title>__GI___close (59 samples, 0.01%)</title><rect x="22.5607%" y="565" width="0.0120%" height="15" fill="rgb(242,105,53)" fg:x="110821" fg:w="59"/><text x="22.8107%" y="575.50"></text></g><g><title>__GI___dup2 (52 samples, 0.01%)</title><rect x="22.5727%" y="565" width="0.0106%" height="15" fill="rgb(251,132,46)" fg:x="110880" fg:w="52"/><text x="22.8227%" y="575.50"></text></g><g><title>create_pipe_files (53 samples, 0.01%)</title><rect x="22.5865%" y="485" width="0.0108%" height="15" fill="rgb(231,77,14)" fg:x="110948" fg:w="53"/><text x="22.8365%" y="495.50"></text></g><g><title>__GI_pipe (71 samples, 0.01%)</title><rect x="22.5833%" y="565" width="0.0145%" height="15" fill="rgb(240,135,9)" fg:x="110932" fg:w="71"/><text x="22.8333%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.01%)</title><rect x="22.5835%" y="549" width="0.0143%" height="15" fill="rgb(248,109,14)" fg:x="110933" fg:w="70"/><text x="22.8335%" y="559.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="22.5835%" y="533" width="0.0143%" height="15" fill="rgb(227,146,52)" fg:x="110933" fg:w="70"/><text x="22.8335%" y="543.50"></text></g><g><title>__x64_sys_pipe (70 samples, 0.01%)</title><rect x="22.5835%" y="517" width="0.0143%" height="15" fill="rgb(232,54,3)" fg:x="110933" fg:w="70"/><text x="22.8335%" y="527.50"></text></g><g><title>do_pipe2 (69 samples, 0.01%)</title><rect x="22.5837%" y="501" width="0.0140%" height="15" fill="rgb(229,201,43)" fg:x="110934" fg:w="69"/><text x="22.8337%" y="511.50"></text></g><g><title>[dash] (22,480 samples, 4.58%)</title><rect x="18.0219%" y="581" width="4.5764%" height="15" fill="rgb(252,161,33)" fg:x="88526" fg:w="22480"/><text x="18.2719%" y="591.50">[dash]</text></g><g><title>[libc-2.31.so] (51 samples, 0.01%)</title><rect x="22.5983%" y="581" width="0.0104%" height="15" fill="rgb(226,146,40)" fg:x="111006" fg:w="51"/><text x="22.8483%" y="591.50"></text></g><g><title>__m128i_shift_right (53 samples, 0.01%)</title><rect x="22.6175%" y="565" width="0.0108%" height="15" fill="rgb(219,47,25)" fg:x="111100" fg:w="53"/><text x="22.8675%" y="575.50"></text></g><g><title>_mm_loadu_si128 (53 samples, 0.01%)</title><rect x="22.6175%" y="549" width="0.0108%" height="15" fill="rgb(250,135,13)" fg:x="111100" fg:w="53"/><text x="22.8675%" y="559.50"></text></g><g><title>__strcspn_sse42 (90 samples, 0.02%)</title><rect x="22.6165%" y="581" width="0.0183%" height="15" fill="rgb(219,229,18)" fg:x="111095" fg:w="90"/><text x="22.8665%" y="591.50"></text></g><g><title>[dash] (22,684 samples, 4.62%)</title><rect x="18.0185%" y="597" width="4.6180%" height="15" fill="rgb(217,152,27)" fg:x="88509" fg:w="22684"/><text x="18.2685%" y="607.50">[dash]</text></g><g><title>[dash] (22,797 samples, 4.64%)</title><rect x="18.0146%" y="613" width="4.6410%" height="15" fill="rgb(225,71,47)" fg:x="88490" fg:w="22797"/><text x="18.2646%" y="623.50">[dash]</text></g><g><title>__GI___wait4 (50 samples, 0.01%)</title><rect x="22.6562%" y="613" width="0.0102%" height="15" fill="rgb(220,139,14)" fg:x="111290" fg:w="50"/><text x="22.9062%" y="623.50"></text></g><g><title>[dash] (22,932 samples, 4.67%)</title><rect x="18.0087%" y="629" width="4.6684%" height="15" fill="rgb(247,54,32)" fg:x="88461" fg:w="22932"/><text x="18.2587%" y="639.50">[dash]</text></g><g><title>filemap_map_pages (90 samples, 0.02%)</title><rect x="22.7081%" y="533" width="0.0183%" height="15" fill="rgb(252,131,39)" fg:x="111545" fg:w="90"/><text x="22.9581%" y="543.50"></text></g><g><title>handle_mm_fault (142 samples, 0.03%)</title><rect x="22.7020%" y="549" width="0.0289%" height="15" fill="rgb(210,108,39)" fg:x="111515" fg:w="142"/><text x="22.9520%" y="559.50"></text></g><g><title>exc_page_fault (159 samples, 0.03%)</title><rect x="22.6987%" y="581" width="0.0324%" height="15" fill="rgb(205,23,29)" fg:x="111499" fg:w="159"/><text x="22.9487%" y="591.50"></text></g><g><title>do_user_addr_fault (159 samples, 0.03%)</title><rect x="22.6987%" y="565" width="0.0324%" height="15" fill="rgb(246,139,46)" fg:x="111499" fg:w="159"/><text x="22.9487%" y="575.50"></text></g><g><title>asm_exc_page_fault (165 samples, 0.03%)</title><rect x="22.6981%" y="597" width="0.0336%" height="15" fill="rgb(250,81,26)" fg:x="111496" fg:w="165"/><text x="22.9481%" y="607.50"></text></g><g><title>anon_vma_fork (75 samples, 0.02%)</title><rect x="22.7584%" y="501" width="0.0153%" height="15" fill="rgb(214,104,7)" fg:x="111792" fg:w="75"/><text x="23.0084%" y="511.50"></text></g><g><title>copy_page_range (83 samples, 0.02%)</title><rect x="22.7736%" y="501" width="0.0169%" height="15" fill="rgb(233,189,8)" fg:x="111867" fg:w="83"/><text x="23.0236%" y="511.50"></text></g><g><title>vm_area_dup (64 samples, 0.01%)</title><rect x="22.7964%" y="501" width="0.0130%" height="15" fill="rgb(228,141,17)" fg:x="111979" fg:w="64"/><text x="23.0464%" y="511.50"></text></g><g><title>dup_mm (270 samples, 0.05%)</title><rect x="22.7547%" y="517" width="0.0550%" height="15" fill="rgb(247,157,1)" fg:x="111774" fg:w="270"/><text x="23.0047%" y="527.50"></text></g><g><title>perf_event_alloc (66 samples, 0.01%)</title><rect x="22.8235%" y="469" width="0.0134%" height="15" fill="rgb(249,225,5)" fg:x="112112" fg:w="66"/><text x="23.0735%" y="479.50"></text></g><g><title>inherit_task_group.isra.0 (89 samples, 0.02%)</title><rect x="22.8190%" y="501" width="0.0181%" height="15" fill="rgb(242,55,13)" fg:x="112090" fg:w="89"/><text x="23.0690%" y="511.50"></text></g><g><title>inherit_event.constprop.0 (85 samples, 0.02%)</title><rect x="22.8198%" y="485" width="0.0173%" height="15" fill="rgb(230,49,50)" fg:x="112094" fg:w="85"/><text x="23.0698%" y="495.50"></text></g><g><title>perf_event_init_task (95 samples, 0.02%)</title><rect x="22.8184%" y="517" width="0.0193%" height="15" fill="rgb(241,111,38)" fg:x="112087" fg:w="95"/><text x="23.0684%" y="527.50"></text></g><g><title>copy_process (538 samples, 0.11%)</title><rect x="22.7319%" y="533" width="0.1095%" height="15" fill="rgb(252,155,4)" fg:x="111662" fg:w="538"/><text x="22.9819%" y="543.50"></text></g><g><title>do_syscall_64 (575 samples, 0.12%)</title><rect x="22.7319%" y="581" width="0.1171%" height="15" fill="rgb(212,69,32)" fg:x="111662" fg:w="575"/><text x="22.9819%" y="591.50"></text></g><g><title>__do_sys_clone (575 samples, 0.12%)</title><rect x="22.7319%" y="565" width="0.1171%" height="15" fill="rgb(243,107,47)" fg:x="111662" fg:w="575"/><text x="22.9819%" y="575.50"></text></g><g><title>kernel_clone (575 samples, 0.12%)</title><rect x="22.7319%" y="549" width="0.1171%" height="15" fill="rgb(247,130,12)" fg:x="111662" fg:w="575"/><text x="22.9819%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (577 samples, 0.12%)</title><rect x="22.7317%" y="597" width="0.1175%" height="15" fill="rgb(233,74,16)" fg:x="111661" fg:w="577"/><text x="22.9817%" y="607.50"></text></g><g><title>__alloc_pages_nodemask (110 samples, 0.02%)</title><rect x="22.8984%" y="453" width="0.0224%" height="15" fill="rgb(208,58,18)" fg:x="112480" fg:w="110"/><text x="23.1484%" y="463.50"></text></g><g><title>get_page_from_freelist (83 samples, 0.02%)</title><rect x="22.9039%" y="437" width="0.0169%" height="15" fill="rgb(242,225,1)" fg:x="112507" fg:w="83"/><text x="23.1539%" y="447.50"></text></g><g><title>alloc_pages_vma (134 samples, 0.03%)</title><rect x="22.8948%" y="469" width="0.0273%" height="15" fill="rgb(249,39,40)" fg:x="112462" fg:w="134"/><text x="23.1448%" y="479.50"></text></g><g><title>handle_mm_fault (431 samples, 0.09%)</title><rect x="22.8744%" y="501" width="0.0877%" height="15" fill="rgb(207,72,44)" fg:x="112362" fg:w="431"/><text x="23.1244%" y="511.50"></text></g><g><title>wp_page_copy (347 samples, 0.07%)</title><rect x="22.8915%" y="485" width="0.0706%" height="15" fill="rgb(215,193,12)" fg:x="112446" fg:w="347"/><text x="23.1415%" y="495.50"></text></g><g><title>exc_page_fault (472 samples, 0.10%)</title><rect x="22.8673%" y="533" width="0.0961%" height="15" fill="rgb(248,41,39)" fg:x="112327" fg:w="472"/><text x="23.1173%" y="543.50"></text></g><g><title>do_user_addr_fault (471 samples, 0.10%)</title><rect x="22.8675%" y="517" width="0.0959%" height="15" fill="rgb(253,85,4)" fg:x="112328" fg:w="471"/><text x="23.1175%" y="527.50"></text></g><g><title>asm_exc_page_fault (509 samples, 0.10%)</title><rect x="22.8599%" y="549" width="0.1036%" height="15" fill="rgb(243,70,31)" fg:x="112291" fg:w="509"/><text x="23.1099%" y="559.50"></text></g><g><title>__put_user_nocheck_4 (529 samples, 0.11%)</title><rect x="22.8567%" y="565" width="0.1077%" height="15" fill="rgb(253,195,26)" fg:x="112275" fg:w="529"/><text x="23.1067%" y="575.50"></text></g><g><title>__mmdrop (147 samples, 0.03%)</title><rect x="23.0094%" y="549" width="0.0299%" height="15" fill="rgb(243,42,11)" fg:x="113025" fg:w="147"/><text x="23.2594%" y="559.50"></text></g><g><title>pgd_free (76 samples, 0.02%)</title><rect x="23.0238%" y="533" width="0.0155%" height="15" fill="rgb(239,66,17)" fg:x="113096" fg:w="76"/><text x="23.2738%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (6,184 samples, 1.26%)</title><rect x="23.0393%" y="549" width="1.2589%" height="15" fill="rgb(217,132,21)" fg:x="113172" fg:w="6184"/><text x="23.2893%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,980 samples, 1.22%)</title><rect x="23.0808%" y="533" width="1.2174%" height="15" fill="rgb(252,202,21)" fg:x="113376" fg:w="5980"/><text x="23.3308%" y="543.50"></text></g><g><title>native_write_msr (5,941 samples, 1.21%)</title><rect x="23.0888%" y="517" width="1.2095%" height="15" fill="rgb(233,98,36)" fg:x="113415" fg:w="5941"/><text x="23.3388%" y="527.50"></text></g><g><title>asm_sysvec_irq_work (79 samples, 0.02%)</title><rect x="24.2986%" y="549" width="0.0161%" height="15" fill="rgb(216,153,54)" fg:x="119358" fg:w="79"/><text x="24.5486%" y="559.50"></text></g><g><title>schedule_tail (7,172 samples, 1.46%)</title><rect x="22.8561%" y="581" width="1.4601%" height="15" fill="rgb(250,99,7)" fg:x="112272" fg:w="7172"/><text x="23.1061%" y="591.50"></text></g><g><title>finish_task_switch (6,625 samples, 1.35%)</title><rect x="22.9674%" y="565" width="1.3487%" height="15" fill="rgb(207,56,50)" fg:x="112819" fg:w="6625"/><text x="23.2174%" y="575.50"></text></g><g><title>ret_from_fork (7,210 samples, 1.47%)</title><rect x="22.8528%" y="597" width="1.4678%" height="15" fill="rgb(244,61,34)" fg:x="112256" fg:w="7210"/><text x="23.1028%" y="607.50"></text></g><g><title>arch_fork (8,001 samples, 1.63%)</title><rect x="22.6922%" y="613" width="1.6288%" height="15" fill="rgb(241,50,38)" fg:x="111467" fg:w="8001"/><text x="22.9422%" y="623.50"></text></g><g><title>handle_mm_fault (61 samples, 0.01%)</title><rect x="24.3241%" y="565" width="0.0124%" height="15" fill="rgb(212,166,30)" fg:x="119483" fg:w="61"/><text x="24.5741%" y="575.50"></text></g><g><title>exc_page_fault (75 samples, 0.02%)</title><rect x="24.3214%" y="597" width="0.0153%" height="15" fill="rgb(249,127,32)" fg:x="119470" fg:w="75"/><text x="24.5714%" y="607.50"></text></g><g><title>do_user_addr_fault (74 samples, 0.02%)</title><rect x="24.3216%" y="581" width="0.0151%" height="15" fill="rgb(209,103,0)" fg:x="119471" fg:w="74"/><text x="24.5716%" y="591.50"></text></g><g><title>asm_exc_page_fault (78 samples, 0.02%)</title><rect x="24.3210%" y="613" width="0.0159%" height="15" fill="rgb(238,209,51)" fg:x="119468" fg:w="78"/><text x="24.5710%" y="623.50"></text></g><g><title>__libc_fork (8,158 samples, 1.66%)</title><rect x="22.6773%" y="629" width="1.6608%" height="15" fill="rgb(237,56,23)" fg:x="111394" fg:w="8158"/><text x="22.9273%" y="639.50"></text></g><g><title>[dash] (31,140 samples, 6.34%)</title><rect x="18.0050%" y="645" width="6.3394%" height="15" fill="rgb(215,153,46)" fg:x="88443" fg:w="31140"/><text x="18.2550%" y="655.50">[dash]</text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="24.3477%" y="613" width="0.0106%" height="15" fill="rgb(224,49,31)" fg:x="119599" fg:w="52"/><text x="24.5977%" y="623.50"></text></g><g><title>__x64_sys_pipe (52 samples, 0.01%)</title><rect x="24.3477%" y="597" width="0.0106%" height="15" fill="rgb(250,18,42)" fg:x="119599" fg:w="52"/><text x="24.5977%" y="607.50"></text></g><g><title>do_pipe2 (51 samples, 0.01%)</title><rect x="24.3479%" y="581" width="0.0104%" height="15" fill="rgb(215,176,39)" fg:x="119600" fg:w="51"/><text x="24.5979%" y="591.50"></text></g><g><title>__GI_pipe (54 samples, 0.01%)</title><rect x="24.3475%" y="645" width="0.0110%" height="15" fill="rgb(223,77,29)" fg:x="119598" fg:w="54"/><text x="24.5975%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.01%)</title><rect x="24.3477%" y="629" width="0.0108%" height="15" fill="rgb(234,94,52)" fg:x="119599" fg:w="53"/><text x="24.5977%" y="639.50"></text></g><g><title>[dash] (31,237 samples, 6.36%)</title><rect x="18.0026%" y="661" width="6.3592%" height="15" fill="rgb(220,154,50)" fg:x="88431" fg:w="31237"/><text x="18.2526%" y="671.50">[dash]</text></g><g><title>__perf_event_task_sched_in (578 samples, 0.12%)</title><rect x="24.3888%" y="501" width="0.1177%" height="15" fill="rgb(212,11,10)" fg:x="119801" fg:w="578"/><text x="24.6388%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (574 samples, 0.12%)</title><rect x="24.3896%" y="485" width="0.1169%" height="15" fill="rgb(205,166,19)" fg:x="119805" fg:w="574"/><text x="24.6396%" y="495.50"></text></g><g><title>native_write_msr (569 samples, 0.12%)</title><rect x="24.3906%" y="469" width="0.1158%" height="15" fill="rgb(244,198,16)" fg:x="119810" fg:w="569"/><text x="24.6406%" y="479.50"></text></g><g><title>finish_task_switch (608 samples, 0.12%)</title><rect x="24.3851%" y="517" width="0.1238%" height="15" fill="rgb(219,69,12)" fg:x="119783" fg:w="608"/><text x="24.6351%" y="527.50"></text></g><g><title>schedule (645 samples, 0.13%)</title><rect x="24.3811%" y="549" width="0.1313%" height="15" fill="rgb(245,30,7)" fg:x="119763" fg:w="645"/><text x="24.6311%" y="559.50"></text></g><g><title>__schedule (644 samples, 0.13%)</title><rect x="24.3813%" y="533" width="0.1311%" height="15" fill="rgb(218,221,48)" fg:x="119764" fg:w="644"/><text x="24.6313%" y="543.50"></text></g><g><title>new_sync_read (693 samples, 0.14%)</title><rect x="24.3731%" y="581" width="0.1411%" height="15" fill="rgb(216,66,15)" fg:x="119724" fg:w="693"/><text x="24.6231%" y="591.50"></text></g><g><title>pipe_read (689 samples, 0.14%)</title><rect x="24.3739%" y="565" width="0.1403%" height="15" fill="rgb(226,122,50)" fg:x="119728" fg:w="689"/><text x="24.6239%" y="575.50"></text></g><g><title>do_syscall_64 (711 samples, 0.14%)</title><rect x="24.3715%" y="629" width="0.1447%" height="15" fill="rgb(239,156,16)" fg:x="119716" fg:w="711"/><text x="24.6215%" y="639.50"></text></g><g><title>ksys_read (710 samples, 0.14%)</title><rect x="24.3717%" y="613" width="0.1445%" height="15" fill="rgb(224,27,38)" fg:x="119717" fg:w="710"/><text x="24.6217%" y="623.50"></text></g><g><title>vfs_read (708 samples, 0.14%)</title><rect x="24.3721%" y="597" width="0.1441%" height="15" fill="rgb(224,39,27)" fg:x="119719" fg:w="708"/><text x="24.6221%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (760 samples, 0.15%)</title><rect x="24.3715%" y="645" width="0.1547%" height="15" fill="rgb(215,92,29)" fg:x="119716" fg:w="760"/><text x="24.6215%" y="655.50"></text></g><g><title>__GI___libc_read (779 samples, 0.16%)</title><rect x="24.3703%" y="661" width="0.1586%" height="15" fill="rgb(207,159,16)" fg:x="119710" fg:w="779"/><text x="24.6203%" y="671.50"></text></g><g><title>[dash] (32,146 samples, 6.54%)</title><rect x="17.9973%" y="677" width="6.5442%" height="15" fill="rgb(238,163,47)" fg:x="88405" fg:w="32146"/><text x="18.2473%" y="687.50">[dash]</text></g><g><title>[dash] (32,164 samples, 6.55%)</title><rect x="17.9952%" y="693" width="6.5479%" height="15" fill="rgb(219,91,49)" fg:x="88395" fg:w="32164"/><text x="18.2452%" y="703.50">[dash]</text></g><g><title>[dash] (32,190 samples, 6.55%)</title><rect x="17.9924%" y="709" width="6.5532%" height="15" fill="rgb(227,167,31)" fg:x="88381" fg:w="32190"/><text x="18.2424%" y="719.50">[dash]</text></g><g><title>[dash] (32,198 samples, 6.55%)</title><rect x="17.9920%" y="725" width="6.5548%" height="15" fill="rgb(234,80,54)" fg:x="88379" fg:w="32198"/><text x="18.2420%" y="735.50">[dash]</text></g><g><title>[dash] (32,238 samples, 6.56%)</title><rect x="17.9904%" y="741" width="6.5629%" height="15" fill="rgb(212,114,2)" fg:x="88371" fg:w="32238"/><text x="18.2404%" y="751.50">[dash]</text></g><g><title>[dash] (32,244 samples, 6.56%)</title><rect x="17.9893%" y="757" width="6.5642%" height="15" fill="rgb(234,50,24)" fg:x="88366" fg:w="32244"/><text x="18.2393%" y="767.50">[dash]</text></g><g><title>[dash] (32,298 samples, 6.58%)</title><rect x="17.9887%" y="773" width="6.5752%" height="15" fill="rgb(221,68,8)" fg:x="88363" fg:w="32298"/><text x="18.2387%" y="783.50">[dash]</text></g><g><title>[dash] (32,336 samples, 6.58%)</title><rect x="17.9851%" y="821" width="6.5829%" height="15" fill="rgb(254,180,31)" fg:x="88345" fg:w="32336"/><text x="18.2351%" y="831.50">[dash]</text></g><g><title>__libc_start_main (32,321 samples, 6.58%)</title><rect x="17.9881%" y="805" width="6.5798%" height="15" fill="rgb(247,130,50)" fg:x="88360" fg:w="32321"/><text x="18.2381%" y="815.50">__libc_st..</text></g><g><title>[dash] (32,321 samples, 6.58%)</title><rect x="17.9881%" y="789" width="6.5798%" height="15" fill="rgb(211,109,4)" fg:x="88360" fg:w="32321"/><text x="18.2381%" y="799.50">[dash]</text></g><g><title>[unknown] (54 samples, 0.01%)</title><rect x="24.5680%" y="821" width="0.0110%" height="15" fill="rgb(238,50,21)" fg:x="120681" fg:w="54"/><text x="24.8180%" y="831.50"></text></g><g><title>[ld-2.31.so] (54 samples, 0.01%)</title><rect x="24.5802%" y="757" width="0.0110%" height="15" fill="rgb(225,57,45)" fg:x="120741" fg:w="54"/><text x="24.8302%" y="767.50"></text></g><g><title>_dl_start_final (61 samples, 0.01%)</title><rect x="24.5800%" y="789" width="0.0124%" height="15" fill="rgb(209,196,50)" fg:x="120740" fg:w="61"/><text x="24.8300%" y="799.50"></text></g><g><title>_dl_sysdep_start (61 samples, 0.01%)</title><rect x="24.5800%" y="773" width="0.0124%" height="15" fill="rgb(242,140,13)" fg:x="120740" fg:w="61"/><text x="24.8300%" y="783.50"></text></g><g><title>_dl_start (68 samples, 0.01%)</title><rect x="24.5800%" y="805" width="0.0138%" height="15" fill="rgb(217,111,7)" fg:x="120740" fg:w="68"/><text x="24.8300%" y="815.50"></text></g><g><title>_start (69 samples, 0.01%)</title><rect x="24.5800%" y="821" width="0.0140%" height="15" fill="rgb(253,193,51)" fg:x="120740" fg:w="69"/><text x="24.8300%" y="831.50"></text></g><g><title>asm_exc_page_fault (544 samples, 0.11%)</title><rect x="24.5940%" y="821" width="0.1107%" height="15" fill="rgb(252,70,29)" fg:x="120809" fg:w="544"/><text x="24.8440%" y="831.50"></text></g><g><title>unlink_anon_vmas (125 samples, 0.03%)</title><rect x="24.7125%" y="661" width="0.0254%" height="15" fill="rgb(232,127,12)" fg:x="121391" fg:w="125"/><text x="24.9625%" y="671.50"></text></g><g><title>kmem_cache_free (61 samples, 0.01%)</title><rect x="24.7255%" y="645" width="0.0124%" height="15" fill="rgb(211,180,21)" fg:x="121455" fg:w="61"/><text x="24.9755%" y="655.50"></text></g><g><title>free_pgtables (170 samples, 0.03%)</title><rect x="24.7096%" y="677" width="0.0346%" height="15" fill="rgb(229,72,13)" fg:x="121377" fg:w="170"/><text x="24.9596%" y="687.50"></text></g><g><title>page_remove_rmap (72 samples, 0.01%)</title><rect x="24.7927%" y="645" width="0.0147%" height="15" fill="rgb(240,211,49)" fg:x="121785" fg:w="72"/><text x="25.0427%" y="655.50"></text></g><g><title>unmap_page_range (260 samples, 0.05%)</title><rect x="24.7597%" y="661" width="0.0529%" height="15" fill="rgb(219,149,40)" fg:x="121623" fg:w="260"/><text x="25.0097%" y="671.50"></text></g><g><title>exit_mmap (520 samples, 0.11%)</title><rect x="24.7094%" y="693" width="0.1059%" height="15" fill="rgb(210,127,46)" fg:x="121376" fg:w="520"/><text x="24.9594%" y="703.50"></text></g><g><title>unmap_vmas (287 samples, 0.06%)</title><rect x="24.7569%" y="677" width="0.0584%" height="15" fill="rgb(220,106,7)" fg:x="121609" fg:w="287"/><text x="25.0069%" y="687.50"></text></g><g><title>mmput (522 samples, 0.11%)</title><rect x="24.7092%" y="709" width="0.1063%" height="15" fill="rgb(249,31,22)" fg:x="121375" fg:w="522"/><text x="24.9592%" y="719.50"></text></g><g><title>begin_new_exec (534 samples, 0.11%)</title><rect x="24.7082%" y="725" width="0.1087%" height="15" fill="rgb(253,1,49)" fg:x="121370" fg:w="534"/><text x="24.9582%" y="735.50"></text></g><g><title>__x64_sys_execve (536 samples, 0.11%)</title><rect x="24.7080%" y="789" width="0.1091%" height="15" fill="rgb(227,144,33)" fg:x="121369" fg:w="536"/><text x="24.9580%" y="799.50"></text></g><g><title>do_execveat_common (536 samples, 0.11%)</title><rect x="24.7080%" y="773" width="0.1091%" height="15" fill="rgb(249,163,44)" fg:x="121369" fg:w="536"/><text x="24.9580%" y="783.50"></text></g><g><title>bprm_execve (536 samples, 0.11%)</title><rect x="24.7080%" y="757" width="0.1091%" height="15" fill="rgb(234,15,39)" fg:x="121369" fg:w="536"/><text x="24.9580%" y="767.50"></text></g><g><title>load_elf_binary (536 samples, 0.11%)</title><rect x="24.7080%" y="741" width="0.1091%" height="15" fill="rgb(207,66,16)" fg:x="121369" fg:w="536"/><text x="24.9580%" y="751.50"></text></g><g><title>unlink_anon_vmas (95 samples, 0.02%)</title><rect x="24.8324%" y="693" width="0.0193%" height="15" fill="rgb(233,112,24)" fg:x="121980" fg:w="95"/><text x="25.0824%" y="703.50"></text></g><g><title>free_pgtables (147 samples, 0.03%)</title><rect x="24.8289%" y="709" width="0.0299%" height="15" fill="rgb(230,90,22)" fg:x="121963" fg:w="147"/><text x="25.0789%" y="719.50"></text></g><g><title>remove_vma (92 samples, 0.02%)</title><rect x="24.8644%" y="709" width="0.0187%" height="15" fill="rgb(229,61,13)" fg:x="122137" fg:w="92"/><text x="25.1144%" y="719.50"></text></g><g><title>kmem_cache_free (78 samples, 0.02%)</title><rect x="24.8672%" y="693" width="0.0159%" height="15" fill="rgb(225,57,24)" fg:x="122151" fg:w="78"/><text x="25.1172%" y="703.50"></text></g><g><title>tlb_finish_mmu (132 samples, 0.03%)</title><rect x="24.8831%" y="709" width="0.0269%" height="15" fill="rgb(208,169,48)" fg:x="122229" fg:w="132"/><text x="25.1331%" y="719.50"></text></g><g><title>release_pages (103 samples, 0.02%)</title><rect x="24.8890%" y="693" width="0.0210%" height="15" fill="rgb(244,218,51)" fg:x="122258" fg:w="103"/><text x="25.1390%" y="703.50"></text></g><g><title>page_remove_rmap (93 samples, 0.02%)</title><rect x="24.9558%" y="677" width="0.0189%" height="15" fill="rgb(214,148,10)" fg:x="122586" fg:w="93"/><text x="25.2058%" y="687.50"></text></g><g><title>unmap_page_range (335 samples, 0.07%)</title><rect x="24.9110%" y="693" width="0.0682%" height="15" fill="rgb(225,174,27)" fg:x="122366" fg:w="335"/><text x="25.1610%" y="703.50"></text></g><g><title>exit_mmap (765 samples, 0.16%)</title><rect x="24.8263%" y="725" width="0.1557%" height="15" fill="rgb(230,96,26)" fg:x="121950" fg:w="765"/><text x="25.0763%" y="735.50"></text></g><g><title>unmap_vmas (354 samples, 0.07%)</title><rect x="24.9100%" y="709" width="0.0721%" height="15" fill="rgb(232,10,30)" fg:x="122361" fg:w="354"/><text x="25.1600%" y="719.50"></text></g><g><title>mmput (775 samples, 0.16%)</title><rect x="24.8251%" y="741" width="0.1578%" height="15" fill="rgb(222,8,50)" fg:x="121944" fg:w="775"/><text x="25.0751%" y="751.50"></text></g><g><title>__fput (59 samples, 0.01%)</title><rect x="24.9890%" y="725" width="0.0120%" height="15" fill="rgb(213,81,27)" fg:x="122749" fg:w="59"/><text x="25.2390%" y="735.50"></text></g><g><title>__x64_sys_exit_group (906 samples, 0.18%)</title><rect x="24.8171%" y="789" width="0.1844%" height="15" fill="rgb(245,50,10)" fg:x="121905" fg:w="906"/><text x="25.0671%" y="799.50"></text></g><g><title>do_group_exit (906 samples, 0.18%)</title><rect x="24.8171%" y="773" width="0.1844%" height="15" fill="rgb(216,100,18)" fg:x="121905" fg:w="906"/><text x="25.0671%" y="783.50"></text></g><g><title>do_exit (906 samples, 0.18%)</title><rect x="24.8171%" y="757" width="0.1844%" height="15" fill="rgb(236,147,54)" fg:x="121905" fg:w="906"/><text x="25.0671%" y="767.50"></text></g><g><title>task_work_run (63 samples, 0.01%)</title><rect x="24.9888%" y="741" width="0.0128%" height="15" fill="rgb(205,143,26)" fg:x="122748" fg:w="63"/><text x="25.2388%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,466 samples, 0.30%)</title><rect x="24.7048%" y="821" width="0.2984%" height="15" fill="rgb(236,26,9)" fg:x="121353" fg:w="1466"/><text x="24.9548%" y="831.50"></text></g><g><title>do_syscall_64 (1,462 samples, 0.30%)</title><rect x="24.7056%" y="805" width="0.2976%" height="15" fill="rgb(221,165,53)" fg:x="121357" fg:w="1462"/><text x="24.9556%" y="815.50"></text></g><g><title>ret_from_fork (58 samples, 0.01%)</title><rect x="25.0048%" y="821" width="0.0118%" height="15" fill="rgb(214,110,17)" fg:x="122827" fg:w="58"/><text x="25.2548%" y="831.50"></text></g><g><title>schedule_tail (58 samples, 0.01%)</title><rect x="25.0048%" y="805" width="0.0118%" height="15" fill="rgb(237,197,12)" fg:x="122827" fg:w="58"/><text x="25.2548%" y="815.50"></text></g><g><title>finish_task_switch (58 samples, 0.01%)</title><rect x="25.0048%" y="789" width="0.0118%" height="15" fill="rgb(205,84,17)" fg:x="122827" fg:w="58"/><text x="25.2548%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.01%)</title><rect x="25.0048%" y="773" width="0.0118%" height="15" fill="rgb(237,18,45)" fg:x="122827" fg:w="58"/><text x="25.2548%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.01%)</title><rect x="25.0048%" y="757" width="0.0118%" height="15" fill="rgb(221,87,14)" fg:x="122827" fg:w="58"/><text x="25.2548%" y="767.50"></text></g><g><title>native_write_msr (58 samples, 0.01%)</title><rect x="25.0048%" y="741" width="0.0118%" height="15" fill="rgb(238,186,15)" fg:x="122827" fg:w="58"/><text x="25.2548%" y="751.50"></text></g><g><title>c++ (34,587 samples, 7.04%)</title><rect x="17.9757%" y="837" width="7.0411%" height="15" fill="rgb(208,115,11)" fg:x="88299" fg:w="34587"/><text x="18.2257%" y="847.50">c++</text></g><g><title>__pthread_cond_timedwait (52 samples, 0.01%)</title><rect x="25.0399%" y="757" width="0.0106%" height="15" fill="rgb(254,175,0)" fg:x="122999" fg:w="52"/><text x="25.2899%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (52 samples, 0.01%)</title><rect x="25.0399%" y="741" width="0.0106%" height="15" fill="rgb(227,24,42)" fg:x="122999" fg:w="52"/><text x="25.2899%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (51 samples, 0.01%)</title><rect x="25.0401%" y="725" width="0.0104%" height="15" fill="rgb(223,211,37)" fg:x="123000" fg:w="51"/><text x="25.2901%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="25.0403%" y="709" width="0.0102%" height="15" fill="rgb(235,49,27)" fg:x="123001" fg:w="50"/><text x="25.2903%" y="719.50"></text></g><g><title>os::PlatformEvent::park (56 samples, 0.01%)</title><rect x="25.0396%" y="773" width="0.0114%" height="15" fill="rgb(254,97,51)" fg:x="122998" fg:w="56"/><text x="25.2896%" y="783.50"></text></g><g><title>[perf-279850.map] (162 samples, 0.03%)</title><rect x="25.0189%" y="821" width="0.0330%" height="15" fill="rgb(249,51,40)" fg:x="122896" fg:w="162"/><text x="25.2689%" y="831.50"></text></g><g><title>JVM_Sleep (67 samples, 0.01%)</title><rect x="25.0382%" y="805" width="0.0136%" height="15" fill="rgb(210,128,45)" fg:x="122991" fg:w="67"/><text x="25.2882%" y="815.50"></text></g><g><title>os::sleep (63 samples, 0.01%)</title><rect x="25.0390%" y="789" width="0.0128%" height="15" fill="rgb(224,137,50)" fg:x="122995" fg:w="63"/><text x="25.2890%" y="799.50"></text></g><g><title>cli-update-thre (190 samples, 0.04%)</title><rect x="25.0168%" y="837" width="0.0387%" height="15" fill="rgb(242,15,9)" fg:x="122886" fg:w="190"/><text x="25.2668%" y="847.50"></text></g><g><title>[perf-279850.map] (349 samples, 0.07%)</title><rect x="25.0565%" y="821" width="0.0710%" height="15" fill="rgb(233,187,41)" fg:x="123081" fg:w="349"/><text x="25.3065%" y="831.50"></text></g><g><title>find-action-loo (421 samples, 0.09%)</title><rect x="25.0555%" y="837" width="0.0857%" height="15" fill="rgb(227,2,29)" fg:x="123076" fg:w="421"/><text x="25.3055%" y="847.50"></text></g><g><title>__GI___clone (54 samples, 0.01%)</title><rect x="25.1302%" y="821" width="0.0110%" height="15" fill="rgb(222,70,3)" fg:x="123443" fg:w="54"/><text x="25.3802%" y="831.50"></text></g><g><title>globbing_pool-0 (85 samples, 0.02%)</title><rect x="25.1412%" y="837" width="0.0173%" height="15" fill="rgb(213,11,42)" fg:x="123497" fg:w="85"/><text x="25.3912%" y="847.50"></text></g><g><title>Monitor::ILock (51 samples, 0.01%)</title><rect x="25.1822%" y="773" width="0.0104%" height="15" fill="rgb(225,150,9)" fg:x="123698" fg:w="51"/><text x="25.4322%" y="783.50"></text></g><g><title>os::PlatformEvent::park (51 samples, 0.01%)</title><rect x="25.1822%" y="757" width="0.0104%" height="15" fill="rgb(230,162,45)" fg:x="123698" fg:w="51"/><text x="25.4322%" y="767.50"></text></g><g><title>Monitor::lock (53 samples, 0.01%)</title><rect x="25.1822%" y="789" width="0.0108%" height="15" fill="rgb(222,14,52)" fg:x="123698" fg:w="53"/><text x="25.4322%" y="799.50"></text></g><g><title>JVM_StartThread (94 samples, 0.02%)</title><rect x="25.1805%" y="805" width="0.0191%" height="15" fill="rgb(254,198,14)" fg:x="123690" fg:w="94"/><text x="25.4305%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (72 samples, 0.01%)</title><rect x="25.2013%" y="581" width="0.0147%" height="15" fill="rgb(220,217,30)" fg:x="123792" fg:w="72"/><text x="25.4513%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (70 samples, 0.01%)</title><rect x="25.2017%" y="565" width="0.0143%" height="15" fill="rgb(215,146,41)" fg:x="123794" fg:w="70"/><text x="25.4517%" y="575.50"></text></g><g><title>native_write_msr (69 samples, 0.01%)</title><rect x="25.2019%" y="549" width="0.0140%" height="15" fill="rgb(217,27,36)" fg:x="123795" fg:w="69"/><text x="25.4519%" y="559.50"></text></g><g><title>finish_task_switch (75 samples, 0.02%)</title><rect x="25.2009%" y="597" width="0.0153%" height="15" fill="rgb(219,218,39)" fg:x="123790" fg:w="75"/><text x="25.4509%" y="607.50"></text></g><g><title>do_syscall_64 (79 samples, 0.02%)</title><rect x="25.2003%" y="709" width="0.0161%" height="15" fill="rgb(219,4,42)" fg:x="123787" fg:w="79"/><text x="25.4503%" y="719.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.02%)</title><rect x="25.2003%" y="693" width="0.0161%" height="15" fill="rgb(249,119,36)" fg:x="123787" fg:w="79"/><text x="25.4503%" y="703.50"></text></g><g><title>do_futex (79 samples, 0.02%)</title><rect x="25.2003%" y="677" width="0.0161%" height="15" fill="rgb(209,23,33)" fg:x="123787" fg:w="79"/><text x="25.4503%" y="687.50"></text></g><g><title>futex_wait (78 samples, 0.02%)</title><rect x="25.2005%" y="661" width="0.0159%" height="15" fill="rgb(211,10,0)" fg:x="123788" fg:w="78"/><text x="25.4505%" y="671.50"></text></g><g><title>futex_wait_queue_me (78 samples, 0.02%)</title><rect x="25.2005%" y="645" width="0.0159%" height="15" fill="rgb(208,99,37)" fg:x="123788" fg:w="78"/><text x="25.4505%" y="655.50"></text></g><g><title>schedule (78 samples, 0.02%)</title><rect x="25.2005%" y="629" width="0.0159%" height="15" fill="rgb(213,132,31)" fg:x="123788" fg:w="78"/><text x="25.4505%" y="639.50"></text></g><g><title>__schedule (78 samples, 0.02%)</title><rect x="25.2005%" y="613" width="0.0159%" height="15" fill="rgb(243,129,40)" fg:x="123788" fg:w="78"/><text x="25.4505%" y="623.50"></text></g><g><title>__pthread_cond_wait (80 samples, 0.02%)</title><rect x="25.2003%" y="773" width="0.0163%" height="15" fill="rgb(210,66,33)" fg:x="123787" fg:w="80"/><text x="25.4503%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (80 samples, 0.02%)</title><rect x="25.2003%" y="757" width="0.0163%" height="15" fill="rgb(209,189,4)" fg:x="123787" fg:w="80"/><text x="25.4503%" y="767.50"></text></g><g><title>futex_wait_cancelable (80 samples, 0.02%)</title><rect x="25.2003%" y="741" width="0.0163%" height="15" fill="rgb(214,107,37)" fg:x="123787" fg:w="80"/><text x="25.4503%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.02%)</title><rect x="25.2003%" y="725" width="0.0163%" height="15" fill="rgb(245,88,54)" fg:x="123787" fg:w="80"/><text x="25.4503%" y="735.50"></text></g><g><title>Parker::park (83 samples, 0.02%)</title><rect x="25.2001%" y="789" width="0.0169%" height="15" fill="rgb(205,146,20)" fg:x="123786" fg:w="83"/><text x="25.4501%" y="799.50"></text></g><g><title>Unsafe_Park (86 samples, 0.02%)</title><rect x="25.1997%" y="805" width="0.0175%" height="15" fill="rgb(220,161,25)" fg:x="123784" fg:w="86"/><text x="25.4497%" y="815.50"></text></g><g><title>[perf-279850.map] (276 samples, 0.06%)</title><rect x="25.1620%" y="821" width="0.0562%" height="15" fill="rgb(215,152,15)" fg:x="123599" fg:w="276"/><text x="25.4120%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.01%)</title><rect x="25.2202%" y="757" width="0.0114%" height="15" fill="rgb(233,192,44)" fg:x="123885" fg:w="56"/><text x="25.4702%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.01%)</title><rect x="25.2202%" y="741" width="0.0114%" height="15" fill="rgb(240,170,46)" fg:x="123885" fg:w="56"/><text x="25.4702%" y="751.50"></text></g><g><title>native_write_msr (56 samples, 0.01%)</title><rect x="25.2202%" y="725" width="0.0114%" height="15" fill="rgb(207,104,33)" fg:x="123885" fg:w="56"/><text x="25.4702%" y="735.50"></text></g><g><title>schedule_tail (58 samples, 0.01%)</title><rect x="25.2202%" y="789" width="0.0118%" height="15" fill="rgb(219,21,39)" fg:x="123885" fg:w="58"/><text x="25.4702%" y="799.50"></text></g><g><title>finish_task_switch (58 samples, 0.01%)</title><rect x="25.2202%" y="773" width="0.0118%" height="15" fill="rgb(214,133,29)" fg:x="123885" fg:w="58"/><text x="25.4702%" y="783.50"></text></g><g><title>ret_from_fork (60 samples, 0.01%)</title><rect x="25.2200%" y="805" width="0.0122%" height="15" fill="rgb(226,93,6)" fg:x="123884" fg:w="60"/><text x="25.4700%" y="815.50"></text></g><g><title>__GI___clone (146 samples, 0.03%)</title><rect x="25.2184%" y="821" width="0.0297%" height="15" fill="rgb(252,222,34)" fg:x="123876" fg:w="146"/><text x="25.4684%" y="831.50"></text></g><g><title>start_thread (78 samples, 0.02%)</title><rect x="25.2322%" y="805" width="0.0159%" height="15" fill="rgb(252,92,48)" fg:x="123944" fg:w="78"/><text x="25.4822%" y="815.50"></text></g><g><title>thread_native_entry (77 samples, 0.02%)</title><rect x="25.2324%" y="789" width="0.0157%" height="15" fill="rgb(245,223,24)" fg:x="123945" fg:w="77"/><text x="25.4824%" y="799.50"></text></g><g><title>globbing_pool-1 (487 samples, 0.10%)</title><rect x="25.1585%" y="837" width="0.0991%" height="15" fill="rgb(205,176,3)" fg:x="123582" fg:w="487"/><text x="25.4085%" y="847.50"></text></g><g><title>__pthread_cond_wait (50 samples, 0.01%)</title><rect x="25.2982%" y="741" width="0.0102%" height="15" fill="rgb(235,151,15)" fg:x="124268" fg:w="50"/><text x="25.5482%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (50 samples, 0.01%)</title><rect x="25.2982%" y="725" width="0.0102%" height="15" fill="rgb(237,209,11)" fg:x="124268" fg:w="50"/><text x="25.5482%" y="735.50"></text></g><g><title>Monitor::lock (51 samples, 0.01%)</title><rect x="25.2982%" y="789" width="0.0104%" height="15" fill="rgb(243,227,24)" fg:x="124268" fg:w="51"/><text x="25.5482%" y="799.50"></text></g><g><title>Monitor::ILock (51 samples, 0.01%)</title><rect x="25.2982%" y="773" width="0.0104%" height="15" fill="rgb(239,193,16)" fg:x="124268" fg:w="51"/><text x="25.5482%" y="783.50"></text></g><g><title>os::PlatformEvent::park (51 samples, 0.01%)</title><rect x="25.2982%" y="757" width="0.0104%" height="15" fill="rgb(231,27,9)" fg:x="124268" fg:w="51"/><text x="25.5482%" y="767.50"></text></g><g><title>JVM_StartThread (99 samples, 0.02%)</title><rect x="25.2970%" y="805" width="0.0202%" height="15" fill="rgb(219,169,10)" fg:x="124262" fg:w="99"/><text x="25.5470%" y="815.50"></text></g><g><title>[perf-279850.map] (290 samples, 0.06%)</title><rect x="25.2666%" y="821" width="0.0590%" height="15" fill="rgb(244,229,43)" fg:x="124113" fg:w="290"/><text x="25.5166%" y="831.50"></text></g><g><title>schedule_tail (62 samples, 0.01%)</title><rect x="25.3283%" y="789" width="0.0126%" height="15" fill="rgb(254,38,20)" fg:x="124416" fg:w="62"/><text x="25.5783%" y="799.50"></text></g><g><title>finish_task_switch (62 samples, 0.01%)</title><rect x="25.3283%" y="773" width="0.0126%" height="15" fill="rgb(250,47,30)" fg:x="124416" fg:w="62"/><text x="25.5783%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="25.3283%" y="757" width="0.0126%" height="15" fill="rgb(224,124,36)" fg:x="124416" fg:w="62"/><text x="25.5783%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.01%)</title><rect x="25.3285%" y="741" width="0.0124%" height="15" fill="rgb(246,68,51)" fg:x="124417" fg:w="61"/><text x="25.5785%" y="751.50"></text></g><g><title>native_write_msr (61 samples, 0.01%)</title><rect x="25.3285%" y="725" width="0.0124%" height="15" fill="rgb(253,43,49)" fg:x="124417" fg:w="61"/><text x="25.5785%" y="735.50"></text></g><g><title>ret_from_fork (67 samples, 0.01%)</title><rect x="25.3275%" y="805" width="0.0136%" height="15" fill="rgb(219,54,36)" fg:x="124412" fg:w="67"/><text x="25.5775%" y="815.50"></text></g><g><title>__GI___clone (99 samples, 0.02%)</title><rect x="25.3269%" y="821" width="0.0202%" height="15" fill="rgb(227,133,34)" fg:x="124409" fg:w="99"/><text x="25.5769%" y="831.50"></text></g><g><title>globbing_pool-2 (440 samples, 0.09%)</title><rect x="25.2577%" y="837" width="0.0896%" height="15" fill="rgb(247,227,15)" fg:x="124069" fg:w="440"/><text x="25.5077%" y="847.50"></text></g><g><title>[perf-279850.map] (173 samples, 0.04%)</title><rect x="25.3511%" y="821" width="0.0352%" height="15" fill="rgb(229,96,14)" fg:x="124528" fg:w="173"/><text x="25.6011%" y="831.50"></text></g><g><title>__GI___clone (62 samples, 0.01%)</title><rect x="25.3863%" y="821" width="0.0126%" height="15" fill="rgb(220,79,17)" fg:x="124701" fg:w="62"/><text x="25.6363%" y="831.50"></text></g><g><title>globbing_pool-3 (257 samples, 0.05%)</title><rect x="25.3473%" y="837" width="0.0523%" height="15" fill="rgb(205,131,53)" fg:x="124509" fg:w="257"/><text x="25.5973%" y="847.50"></text></g><g><title>JVM_StartThread (68 samples, 0.01%)</title><rect x="25.4401%" y="805" width="0.0138%" height="15" fill="rgb(209,50,29)" fg:x="124965" fg:w="68"/><text x="25.6901%" y="815.50"></text></g><g><title>Unsafe_Park (50 samples, 0.01%)</title><rect x="25.4541%" y="805" width="0.0102%" height="15" fill="rgb(245,86,46)" fg:x="125034" fg:w="50"/><text x="25.7041%" y="815.50"></text></g><g><title>Parker::park (50 samples, 0.01%)</title><rect x="25.4541%" y="789" width="0.0102%" height="15" fill="rgb(235,66,46)" fg:x="125034" fg:w="50"/><text x="25.7041%" y="799.50"></text></g><g><title>__pthread_cond_wait (50 samples, 0.01%)</title><rect x="25.4541%" y="773" width="0.0102%" height="15" fill="rgb(232,148,31)" fg:x="125034" fg:w="50"/><text x="25.7041%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (50 samples, 0.01%)</title><rect x="25.4541%" y="757" width="0.0102%" height="15" fill="rgb(217,149,8)" fg:x="125034" fg:w="50"/><text x="25.7041%" y="767.50"></text></g><g><title>[perf-279850.map] (290 samples, 0.06%)</title><rect x="25.4071%" y="821" width="0.0590%" height="15" fill="rgb(209,183,11)" fg:x="124803" fg:w="290"/><text x="25.6571%" y="831.50"></text></g><g><title>globbing_pool-4 (370 samples, 0.08%)</title><rect x="25.3996%" y="837" width="0.0753%" height="15" fill="rgb(208,55,20)" fg:x="124766" fg:w="370"/><text x="25.6496%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.01%)</title><rect x="25.4922%" y="581" width="0.0138%" height="15" fill="rgb(218,39,14)" fg:x="125221" fg:w="68"/><text x="25.7422%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.01%)</title><rect x="25.4924%" y="565" width="0.0136%" height="15" fill="rgb(216,169,33)" fg:x="125222" fg:w="67"/><text x="25.7424%" y="575.50"></text></g><g><title>native_write_msr (67 samples, 0.01%)</title><rect x="25.4924%" y="549" width="0.0136%" height="15" fill="rgb(233,80,24)" fg:x="125222" fg:w="67"/><text x="25.7424%" y="559.50"></text></g><g><title>finish_task_switch (69 samples, 0.01%)</title><rect x="25.4922%" y="597" width="0.0140%" height="15" fill="rgb(213,179,31)" fg:x="125221" fg:w="69"/><text x="25.7422%" y="607.50"></text></g><g><title>do_syscall_64 (72 samples, 0.01%)</title><rect x="25.4918%" y="709" width="0.0147%" height="15" fill="rgb(209,19,5)" fg:x="125219" fg:w="72"/><text x="25.7418%" y="719.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.01%)</title><rect x="25.4918%" y="693" width="0.0147%" height="15" fill="rgb(219,18,35)" fg:x="125219" fg:w="72"/><text x="25.7418%" y="703.50"></text></g><g><title>do_futex (72 samples, 0.01%)</title><rect x="25.4918%" y="677" width="0.0147%" height="15" fill="rgb(209,169,16)" fg:x="125219" fg:w="72"/><text x="25.7418%" y="687.50"></text></g><g><title>futex_wait (72 samples, 0.01%)</title><rect x="25.4918%" y="661" width="0.0147%" height="15" fill="rgb(245,90,51)" fg:x="125219" fg:w="72"/><text x="25.7418%" y="671.50"></text></g><g><title>futex_wait_queue_me (70 samples, 0.01%)</title><rect x="25.4922%" y="645" width="0.0143%" height="15" fill="rgb(220,99,45)" fg:x="125221" fg:w="70"/><text x="25.7422%" y="655.50"></text></g><g><title>schedule (70 samples, 0.01%)</title><rect x="25.4922%" y="629" width="0.0143%" height="15" fill="rgb(249,89,25)" fg:x="125221" fg:w="70"/><text x="25.7422%" y="639.50"></text></g><g><title>__schedule (70 samples, 0.01%)</title><rect x="25.4922%" y="613" width="0.0143%" height="15" fill="rgb(239,193,0)" fg:x="125221" fg:w="70"/><text x="25.7422%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.01%)</title><rect x="25.4918%" y="725" width="0.0149%" height="15" fill="rgb(231,126,1)" fg:x="125219" fg:w="73"/><text x="25.7418%" y="735.50"></text></g><g><title>__pthread_cond_wait (74 samples, 0.02%)</title><rect x="25.4918%" y="773" width="0.0151%" height="15" fill="rgb(243,166,3)" fg:x="125219" fg:w="74"/><text x="25.7418%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (74 samples, 0.02%)</title><rect x="25.4918%" y="757" width="0.0151%" height="15" fill="rgb(223,22,34)" fg:x="125219" fg:w="74"/><text x="25.7418%" y="767.50"></text></g><g><title>futex_wait_cancelable (74 samples, 0.02%)</title><rect x="25.4918%" y="741" width="0.0151%" height="15" fill="rgb(251,52,51)" fg:x="125219" fg:w="74"/><text x="25.7418%" y="751.50"></text></g><g><title>Parker::park (78 samples, 0.02%)</title><rect x="25.4918%" y="789" width="0.0159%" height="15" fill="rgb(221,165,28)" fg:x="125219" fg:w="78"/><text x="25.7418%" y="799.50"></text></g><g><title>Unsafe_Park (79 samples, 0.02%)</title><rect x="25.4918%" y="805" width="0.0161%" height="15" fill="rgb(218,121,47)" fg:x="125219" fg:w="79"/><text x="25.7418%" y="815.50"></text></g><g><title>[perf-279850.map] (161 samples, 0.03%)</title><rect x="25.4759%" y="821" width="0.0328%" height="15" fill="rgb(209,120,9)" fg:x="125141" fg:w="161"/><text x="25.7259%" y="831.50"></text></g><g><title>globbing_pool-5 (203 samples, 0.04%)</title><rect x="25.4749%" y="837" width="0.0413%" height="15" fill="rgb(236,68,12)" fg:x="125136" fg:w="203"/><text x="25.7249%" y="847.50"></text></g><g><title>[perf-279850.map] (60 samples, 0.01%)</title><rect x="25.5170%" y="821" width="0.0122%" height="15" fill="rgb(225,194,26)" fg:x="125343" fg:w="60"/><text x="25.7670%" y="831.50"></text></g><g><title>globbing_pool-6 (90 samples, 0.02%)</title><rect x="25.5162%" y="837" width="0.0183%" height="15" fill="rgb(231,84,39)" fg:x="125339" fg:w="90"/><text x="25.7662%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="25.5706%" y="581" width="0.0110%" height="15" fill="rgb(210,11,45)" fg:x="125606" fg:w="54"/><text x="25.8206%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (52 samples, 0.01%)</title><rect x="25.5710%" y="565" width="0.0106%" height="15" fill="rgb(224,54,52)" fg:x="125608" fg:w="52"/><text x="25.8210%" y="575.50"></text></g><g><title>native_write_msr (51 samples, 0.01%)</title><rect x="25.5712%" y="549" width="0.0104%" height="15" fill="rgb(238,102,14)" fg:x="125609" fg:w="51"/><text x="25.8212%" y="559.50"></text></g><g><title>finish_task_switch (57 samples, 0.01%)</title><rect x="25.5706%" y="597" width="0.0116%" height="15" fill="rgb(243,160,52)" fg:x="125606" fg:w="57"/><text x="25.8206%" y="607.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="25.5706%" y="709" width="0.0118%" height="15" fill="rgb(216,114,19)" fg:x="125606" fg:w="58"/><text x="25.8206%" y="719.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="25.5706%" y="693" width="0.0118%" height="15" fill="rgb(244,166,37)" fg:x="125606" fg:w="58"/><text x="25.8206%" y="703.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="25.5706%" y="677" width="0.0118%" height="15" fill="rgb(246,29,44)" fg:x="125606" fg:w="58"/><text x="25.8206%" y="687.50"></text></g><g><title>futex_wait (58 samples, 0.01%)</title><rect x="25.5706%" y="661" width="0.0118%" height="15" fill="rgb(215,56,53)" fg:x="125606" fg:w="58"/><text x="25.8206%" y="671.50"></text></g><g><title>futex_wait_queue_me (58 samples, 0.01%)</title><rect x="25.5706%" y="645" width="0.0118%" height="15" fill="rgb(217,60,2)" fg:x="125606" fg:w="58"/><text x="25.8206%" y="655.50"></text></g><g><title>schedule (58 samples, 0.01%)</title><rect x="25.5706%" y="629" width="0.0118%" height="15" fill="rgb(207,26,24)" fg:x="125606" fg:w="58"/><text x="25.8206%" y="639.50"></text></g><g><title>__schedule (58 samples, 0.01%)</title><rect x="25.5706%" y="613" width="0.0118%" height="15" fill="rgb(252,210,15)" fg:x="125606" fg:w="58"/><text x="25.8206%" y="623.50"></text></g><g><title>__pthread_cond_wait (60 samples, 0.01%)</title><rect x="25.5704%" y="773" width="0.0122%" height="15" fill="rgb(253,209,26)" fg:x="125605" fg:w="60"/><text x="25.8204%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (60 samples, 0.01%)</title><rect x="25.5704%" y="757" width="0.0122%" height="15" fill="rgb(238,170,14)" fg:x="125605" fg:w="60"/><text x="25.8204%" y="767.50"></text></g><g><title>futex_wait_cancelable (60 samples, 0.01%)</title><rect x="25.5704%" y="741" width="0.0122%" height="15" fill="rgb(216,178,15)" fg:x="125605" fg:w="60"/><text x="25.8204%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="25.5706%" y="725" width="0.0120%" height="15" fill="rgb(250,197,2)" fg:x="125606" fg:w="59"/><text x="25.8206%" y="735.50"></text></g><g><title>Unsafe_Park (61 samples, 0.01%)</title><rect x="25.5704%" y="805" width="0.0124%" height="15" fill="rgb(212,70,42)" fg:x="125605" fg:w="61"/><text x="25.8204%" y="815.50"></text></g><g><title>Parker::park (61 samples, 0.01%)</title><rect x="25.5704%" y="789" width="0.0124%" height="15" fill="rgb(227,213,9)" fg:x="125605" fg:w="61"/><text x="25.8204%" y="799.50"></text></g><g><title>[perf-279850.map] (212 samples, 0.04%)</title><rect x="25.5402%" y="821" width="0.0432%" height="15" fill="rgb(245,99,25)" fg:x="125457" fg:w="212"/><text x="25.7902%" y="831.50"></text></g><g><title>globbing_pool-7 (270 samples, 0.05%)</title><rect x="25.5345%" y="837" width="0.0550%" height="15" fill="rgb(250,82,29)" fg:x="125429" fg:w="270"/><text x="25.7845%" y="847.50"></text></g><g><title>__pthread_cond_wait (50 samples, 0.01%)</title><rect x="25.6357%" y="773" width="0.0102%" height="15" fill="rgb(241,226,54)" fg:x="125926" fg:w="50"/><text x="25.8857%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (50 samples, 0.01%)</title><rect x="25.6357%" y="757" width="0.0102%" height="15" fill="rgb(221,99,41)" fg:x="125926" fg:w="50"/><text x="25.8857%" y="767.50"></text></g><g><title>futex_wait_cancelable (50 samples, 0.01%)</title><rect x="25.6357%" y="741" width="0.0102%" height="15" fill="rgb(213,90,21)" fg:x="125926" fg:w="50"/><text x="25.8857%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="25.6357%" y="725" width="0.0102%" height="15" fill="rgb(205,208,24)" fg:x="125926" fg:w="50"/><text x="25.8857%" y="735.50"></text></g><g><title>do_syscall_64 (50 samples, 0.01%)</title><rect x="25.6357%" y="709" width="0.0102%" height="15" fill="rgb(246,31,12)" fg:x="125926" fg:w="50"/><text x="25.8857%" y="719.50"></text></g><g><title>__x64_sys_futex (50 samples, 0.01%)</title><rect x="25.6357%" y="693" width="0.0102%" height="15" fill="rgb(213,154,6)" fg:x="125926" fg:w="50"/><text x="25.8857%" y="703.50"></text></g><g><title>do_futex (50 samples, 0.01%)</title><rect x="25.6357%" y="677" width="0.0102%" height="15" fill="rgb(222,163,29)" fg:x="125926" fg:w="50"/><text x="25.8857%" y="687.50"></text></g><g><title>futex_wait (50 samples, 0.01%)</title><rect x="25.6357%" y="661" width="0.0102%" height="15" fill="rgb(227,201,8)" fg:x="125926" fg:w="50"/><text x="25.8857%" y="671.50"></text></g><g><title>Unsafe_Park (55 samples, 0.01%)</title><rect x="25.6353%" y="805" width="0.0112%" height="15" fill="rgb(233,9,32)" fg:x="125924" fg:w="55"/><text x="25.8853%" y="815.50"></text></g><g><title>Parker::park (55 samples, 0.01%)</title><rect x="25.6353%" y="789" width="0.0112%" height="15" fill="rgb(217,54,24)" fg:x="125924" fg:w="55"/><text x="25.8853%" y="799.50"></text></g><g><title>[perf-279850.map] (249 samples, 0.05%)</title><rect x="25.5970%" y="821" width="0.0507%" height="15" fill="rgb(235,192,0)" fg:x="125736" fg:w="249"/><text x="25.8470%" y="831.50"></text></g><g><title>globbing_pool-8 (331 samples, 0.07%)</title><rect x="25.5895%" y="837" width="0.0674%" height="15" fill="rgb(235,45,9)" fg:x="125699" fg:w="331"/><text x="25.8395%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.01%)</title><rect x="25.6948%" y="581" width="0.0132%" height="15" fill="rgb(246,42,40)" fg:x="126216" fg:w="65"/><text x="25.9448%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.01%)</title><rect x="25.6952%" y="565" width="0.0128%" height="15" fill="rgb(248,111,24)" fg:x="126218" fg:w="63"/><text x="25.9452%" y="575.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="25.6954%" y="549" width="0.0126%" height="15" fill="rgb(249,65,22)" fg:x="126219" fg:w="62"/><text x="25.9454%" y="559.50"></text></g><g><title>finish_task_switch (68 samples, 0.01%)</title><rect x="25.6948%" y="597" width="0.0138%" height="15" fill="rgb(238,111,51)" fg:x="126216" fg:w="68"/><text x="25.9448%" y="607.50"></text></g><g><title>__pthread_cond_wait (75 samples, 0.02%)</title><rect x="25.6935%" y="773" width="0.0153%" height="15" fill="rgb(250,118,22)" fg:x="126210" fg:w="75"/><text x="25.9435%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (75 samples, 0.02%)</title><rect x="25.6935%" y="757" width="0.0153%" height="15" fill="rgb(234,84,26)" fg:x="126210" fg:w="75"/><text x="25.9435%" y="767.50"></text></g><g><title>futex_wait_cancelable (74 samples, 0.02%)</title><rect x="25.6937%" y="741" width="0.0151%" height="15" fill="rgb(243,172,12)" fg:x="126211" fg:w="74"/><text x="25.9437%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.01%)</title><rect x="25.6939%" y="725" width="0.0149%" height="15" fill="rgb(236,150,49)" fg:x="126212" fg:w="73"/><text x="25.9439%" y="735.50"></text></g><g><title>do_syscall_64 (73 samples, 0.01%)</title><rect x="25.6939%" y="709" width="0.0149%" height="15" fill="rgb(225,197,26)" fg:x="126212" fg:w="73"/><text x="25.9439%" y="719.50"></text></g><g><title>__x64_sys_futex (73 samples, 0.01%)</title><rect x="25.6939%" y="693" width="0.0149%" height="15" fill="rgb(214,17,42)" fg:x="126212" fg:w="73"/><text x="25.9439%" y="703.50"></text></g><g><title>do_futex (73 samples, 0.01%)</title><rect x="25.6939%" y="677" width="0.0149%" height="15" fill="rgb(224,165,40)" fg:x="126212" fg:w="73"/><text x="25.9439%" y="687.50"></text></g><g><title>futex_wait (73 samples, 0.01%)</title><rect x="25.6939%" y="661" width="0.0149%" height="15" fill="rgb(246,100,4)" fg:x="126212" fg:w="73"/><text x="25.9439%" y="671.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.01%)</title><rect x="25.6941%" y="645" width="0.0147%" height="15" fill="rgb(222,103,0)" fg:x="126213" fg:w="72"/><text x="25.9441%" y="655.50"></text></g><g><title>schedule (70 samples, 0.01%)</title><rect x="25.6946%" y="629" width="0.0143%" height="15" fill="rgb(227,189,26)" fg:x="126215" fg:w="70"/><text x="25.9446%" y="639.50"></text></g><g><title>__schedule (69 samples, 0.01%)</title><rect x="25.6948%" y="613" width="0.0140%" height="15" fill="rgb(214,202,17)" fg:x="126216" fg:w="69"/><text x="25.9448%" y="623.50"></text></g><g><title>Parker::park (79 samples, 0.02%)</title><rect x="25.6931%" y="789" width="0.0161%" height="15" fill="rgb(229,111,3)" fg:x="126208" fg:w="79"/><text x="25.9431%" y="799.50"></text></g><g><title>Unsafe_Park (80 samples, 0.02%)</title><rect x="25.6931%" y="805" width="0.0163%" height="15" fill="rgb(229,172,15)" fg:x="126208" fg:w="80"/><text x="25.9431%" y="815.50"></text></g><g><title>[perf-279850.map] (245 samples, 0.05%)</title><rect x="25.6610%" y="821" width="0.0499%" height="15" fill="rgb(230,224,35)" fg:x="126050" fg:w="245"/><text x="25.9110%" y="831.50"></text></g><g><title>globbing_pool-9 (286 samples, 0.06%)</title><rect x="25.6569%" y="837" width="0.0582%" height="15" fill="rgb(251,141,6)" fg:x="126030" fg:w="286"/><text x="25.9069%" y="847.50"></text></g><g><title>[anon] (218 samples, 0.04%)</title><rect x="25.7182%" y="821" width="0.0444%" height="15" fill="rgb(225,208,6)" fg:x="126331" fg:w="218"/><text x="25.9682%" y="831.50"></text></g><g><title>ClassFileParser::parse_stream (72 samples, 0.01%)</title><rect x="26.1573%" y="677" width="0.0147%" height="15" fill="rgb(246,181,16)" fg:x="128488" fg:w="72"/><text x="26.4073%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (73 samples, 0.01%)</title><rect x="26.1573%" y="693" width="0.0149%" height="15" fill="rgb(227,129,36)" fg:x="128488" fg:w="73"/><text x="26.4073%" y="703.50"></text></g><g><title>ClassLoader::load_class (115 samples, 0.02%)</title><rect x="26.1555%" y="725" width="0.0234%" height="15" fill="rgb(248,117,24)" fg:x="128479" fg:w="115"/><text x="26.4055%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (106 samples, 0.02%)</title><rect x="26.1573%" y="709" width="0.0216%" height="15" fill="rgb(214,185,35)" fg:x="128488" fg:w="106"/><text x="26.4073%" y="719.50"></text></g><g><title>SystemDictionary::load_instance_class (128 samples, 0.03%)</title><rect x="26.1550%" y="741" width="0.0261%" height="15" fill="rgb(236,150,34)" fg:x="128477" fg:w="128"/><text x="26.4050%" y="751.50"></text></g><g><title>ConstantPool::klass_at_impl (139 samples, 0.03%)</title><rect x="26.1532%" y="789" width="0.0283%" height="15" fill="rgb(243,228,27)" fg:x="128468" fg:w="139"/><text x="26.4032%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_fail (135 samples, 0.03%)</title><rect x="26.1540%" y="773" width="0.0275%" height="15" fill="rgb(245,77,44)" fg:x="128472" fg:w="135"/><text x="26.4040%" y="783.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (135 samples, 0.03%)</title><rect x="26.1540%" y="757" width="0.0275%" height="15" fill="rgb(235,214,42)" fg:x="128472" fg:w="135"/><text x="26.4040%" y="767.50"></text></g><g><title>Rewriter::rewrite (54 samples, 0.01%)</title><rect x="26.1925%" y="757" width="0.0110%" height="15" fill="rgb(221,74,3)" fg:x="128661" fg:w="54"/><text x="26.4425%" y="767.50"></text></g><g><title>Rewriter::Rewriter (53 samples, 0.01%)</title><rect x="26.1927%" y="741" width="0.0108%" height="15" fill="rgb(206,121,29)" fg:x="128662" fg:w="53"/><text x="26.4427%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (123 samples, 0.03%)</title><rect x="26.1827%" y="773" width="0.0250%" height="15" fill="rgb(249,131,53)" fg:x="128613" fg:w="123"/><text x="26.4327%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (270 samples, 0.05%)</title><rect x="26.1532%" y="805" width="0.0550%" height="15" fill="rgb(236,170,29)" fg:x="128468" fg:w="270"/><text x="26.4032%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (129 samples, 0.03%)</title><rect x="26.1819%" y="789" width="0.0263%" height="15" fill="rgb(247,96,15)" fg:x="128609" fg:w="129"/><text x="26.4319%" y="799.50"></text></g><g><title>LinkResolver::resolve_field (57 samples, 0.01%)</title><rect x="26.2487%" y="757" width="0.0116%" height="15" fill="rgb(211,210,7)" fg:x="128937" fg:w="57"/><text x="26.4987%" y="767.50"></text></g><g><title>LinkResolver::resolve_field_access (84 samples, 0.02%)</title><rect x="26.2436%" y="773" width="0.0171%" height="15" fill="rgb(240,88,50)" fg:x="128912" fg:w="84"/><text x="26.4936%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (101 samples, 0.02%)</title><rect x="26.2403%" y="789" width="0.0206%" height="15" fill="rgb(209,229,26)" fg:x="128896" fg:w="101"/><text x="26.4903%" y="799.50"></text></g><g><title>ClassLoader::load_class (60 samples, 0.01%)</title><rect x="26.2709%" y="693" width="0.0122%" height="15" fill="rgb(210,68,23)" fg:x="129046" fg:w="60"/><text x="26.5209%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (56 samples, 0.01%)</title><rect x="26.2717%" y="677" width="0.0114%" height="15" fill="rgb(229,180,13)" fg:x="129050" fg:w="56"/><text x="26.5217%" y="687.50"></text></g><g><title>SystemDictionary::load_instance_class (64 samples, 0.01%)</title><rect x="26.2709%" y="709" width="0.0130%" height="15" fill="rgb(236,53,44)" fg:x="129046" fg:w="64"/><text x="26.5209%" y="719.50"></text></g><g><title>ConstantPool::klass_ref_at (80 samples, 0.02%)</title><rect x="26.2682%" y="757" width="0.0163%" height="15" fill="rgb(244,214,29)" fg:x="129033" fg:w="80"/><text x="26.5182%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (75 samples, 0.02%)</title><rect x="26.2693%" y="741" width="0.0153%" height="15" fill="rgb(220,75,29)" fg:x="129038" fg:w="75"/><text x="26.5193%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (74 samples, 0.02%)</title><rect x="26.2695%" y="725" width="0.0151%" height="15" fill="rgb(214,183,37)" fg:x="129039" fg:w="74"/><text x="26.5195%" y="735.50"></text></g><g><title>InstanceKlass::initialize_impl (73 samples, 0.01%)</title><rect x="26.2976%" y="741" width="0.0149%" height="15" fill="rgb(239,117,29)" fg:x="129177" fg:w="73"/><text x="26.5476%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (70 samples, 0.01%)</title><rect x="26.2982%" y="725" width="0.0143%" height="15" fill="rgb(237,171,35)" fg:x="129180" fg:w="70"/><text x="26.5482%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (100 samples, 0.02%)</title><rect x="26.2965%" y="757" width="0.0204%" height="15" fill="rgb(229,178,53)" fg:x="129172" fg:w="100"/><text x="26.5465%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (247 samples, 0.05%)</title><rect x="26.2678%" y="773" width="0.0503%" height="15" fill="rgb(210,102,19)" fg:x="129031" fg:w="247"/><text x="26.5178%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (291 samples, 0.06%)</title><rect x="26.2609%" y="789" width="0.0592%" height="15" fill="rgb(235,127,22)" fg:x="128997" fg:w="291"/><text x="26.5109%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (447 samples, 0.09%)</title><rect x="26.2395%" y="805" width="0.0910%" height="15" fill="rgb(244,31,31)" fg:x="128892" fg:w="447"/><text x="26.4895%" y="815.50"></text></g><g><title>SymbolTable::lookup_only (394 samples, 0.08%)</title><rect x="26.4044%" y="661" width="0.0802%" height="15" fill="rgb(231,43,21)" fg:x="129702" fg:w="394"/><text x="26.6544%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (472 samples, 0.10%)</title><rect x="26.3888%" y="677" width="0.0961%" height="15" fill="rgb(217,131,35)" fg:x="129625" fg:w="472"/><text x="26.6388%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool (487 samples, 0.10%)</title><rect x="26.3863%" y="693" width="0.0991%" height="15" fill="rgb(221,149,4)" fg:x="129613" fg:w="487"/><text x="26.6363%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (138 samples, 0.03%)</title><rect x="26.4889%" y="677" width="0.0281%" height="15" fill="rgb(232,170,28)" fg:x="130117" fg:w="138"/><text x="26.7389%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (140 samples, 0.03%)</title><rect x="26.4889%" y="693" width="0.0285%" height="15" fill="rgb(238,56,10)" fg:x="130117" fg:w="140"/><text x="26.7389%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (671 samples, 0.14%)</title><rect x="26.3843%" y="725" width="0.1366%" height="15" fill="rgb(235,196,14)" fg:x="129603" fg:w="671"/><text x="26.6343%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (669 samples, 0.14%)</title><rect x="26.3847%" y="709" width="0.1362%" height="15" fill="rgb(216,45,48)" fg:x="129605" fg:w="669"/><text x="26.6347%" y="719.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (100 samples, 0.02%)</title><rect x="26.5247%" y="677" width="0.0204%" height="15" fill="rgb(238,213,17)" fg:x="130293" fg:w="100"/><text x="26.7747%" y="687.50"></text></g><g><title>DefaultMethods::generate_default_methods (142 samples, 0.03%)</title><rect x="26.5213%" y="693" width="0.0289%" height="15" fill="rgb(212,13,2)" fg:x="130276" fg:w="142"/><text x="26.7713%" y="703.50"></text></g><g><title>ClassFileParser::fill_instance_klass (173 samples, 0.04%)</title><rect x="26.5209%" y="709" width="0.0352%" height="15" fill="rgb(240,114,20)" fg:x="130274" fg:w="173"/><text x="26.7709%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (181 samples, 0.04%)</title><rect x="26.5209%" y="725" width="0.0368%" height="15" fill="rgb(228,41,40)" fg:x="130274" fg:w="181"/><text x="26.7709%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (893 samples, 0.18%)</title><rect x="26.3843%" y="741" width="0.1818%" height="15" fill="rgb(244,132,35)" fg:x="129603" fg:w="893"/><text x="26.6343%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (929 samples, 0.19%)</title><rect x="26.3826%" y="789" width="0.1891%" height="15" fill="rgb(253,189,4)" fg:x="129595" fg:w="929"/><text x="26.6326%" y="799.50"></text></g><g><title>jvm_define_class_common (929 samples, 0.19%)</title><rect x="26.3826%" y="773" width="0.1891%" height="15" fill="rgb(224,37,19)" fg:x="129595" fg:w="929"/><text x="26.6326%" y="783.50"></text></g><g><title>SystemDictionary::resolve_from_stream (922 samples, 0.19%)</title><rect x="26.3841%" y="757" width="0.1877%" height="15" fill="rgb(235,223,18)" fg:x="129602" fg:w="922"/><text x="26.6341%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (975 samples, 0.20%)</title><rect x="26.3826%" y="805" width="0.1985%" height="15" fill="rgb(235,163,25)" fg:x="129595" fg:w="975"/><text x="26.6326%" y="815.50"></text></g><g><title>JVM_FindClassFromBootLoader (66 samples, 0.01%)</title><rect x="26.5813%" y="789" width="0.0134%" height="15" fill="rgb(217,145,28)" fg:x="130571" fg:w="66"/><text x="26.8313%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_null (63 samples, 0.01%)</title><rect x="26.5820%" y="773" width="0.0128%" height="15" fill="rgb(223,223,32)" fg:x="130574" fg:w="63"/><text x="26.8320%" y="783.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (63 samples, 0.01%)</title><rect x="26.5820%" y="757" width="0.0128%" height="15" fill="rgb(227,189,39)" fg:x="130574" fg:w="63"/><text x="26.8320%" y="767.50"></text></g><g><title>SystemDictionary::load_instance_class (55 samples, 0.01%)</title><rect x="26.5836%" y="741" width="0.0112%" height="15" fill="rgb(248,10,22)" fg:x="130582" fg:w="55"/><text x="26.8336%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (85 samples, 0.02%)</title><rect x="26.5811%" y="805" width="0.0173%" height="15" fill="rgb(248,46,39)" fg:x="130570" fg:w="85"/><text x="26.8311%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (56 samples, 0.01%)</title><rect x="26.6247%" y="773" width="0.0114%" height="15" fill="rgb(248,113,48)" fg:x="130784" fg:w="56"/><text x="26.8747%" y="783.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (88 samples, 0.02%)</title><rect x="26.6196%" y="805" width="0.0179%" height="15" fill="rgb(245,16,25)" fg:x="130759" fg:w="88"/><text x="26.8696%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (85 samples, 0.02%)</title><rect x="26.6202%" y="789" width="0.0173%" height="15" fill="rgb(249,152,16)" fg:x="130762" fg:w="85"/><text x="26.8702%" y="799.50"></text></g><g><title>[perf-279850.map] (4,325 samples, 0.88%)</title><rect x="25.7664%" y="821" width="0.8805%" height="15" fill="rgb(250,16,1)" fg:x="126568" fg:w="4325"/><text x="26.0164%" y="831.50"></text></g><g><title>[unknown] (164 samples, 0.03%)</title><rect x="26.6469%" y="821" width="0.0334%" height="15" fill="rgb(249,138,3)" fg:x="130893" fg:w="164"/><text x="26.8969%" y="831.50"></text></g><g><title>readBytes (56 samples, 0.01%)</title><rect x="26.6689%" y="805" width="0.0114%" height="15" fill="rgb(227,71,41)" fg:x="131001" fg:w="56"/><text x="26.9189%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (280 samples, 0.06%)</title><rect x="26.6850%" y="757" width="0.0570%" height="15" fill="rgb(209,184,23)" fg:x="131080" fg:w="280"/><text x="26.9350%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (277 samples, 0.06%)</title><rect x="26.6856%" y="741" width="0.0564%" height="15" fill="rgb(223,215,31)" fg:x="131083" fg:w="277"/><text x="26.9356%" y="751.50"></text></g><g><title>native_write_msr (275 samples, 0.06%)</title><rect x="26.6860%" y="725" width="0.0560%" height="15" fill="rgb(210,146,28)" fg:x="131085" fg:w="275"/><text x="26.9360%" y="735.50"></text></g><g><title>schedule_tail (296 samples, 0.06%)</title><rect x="26.6835%" y="789" width="0.0603%" height="15" fill="rgb(209,183,41)" fg:x="131073" fg:w="296"/><text x="26.9335%" y="799.50"></text></g><g><title>finish_task_switch (295 samples, 0.06%)</title><rect x="26.6837%" y="773" width="0.0601%" height="15" fill="rgb(209,224,45)" fg:x="131074" fg:w="295"/><text x="26.9337%" y="783.50"></text></g><g><title>ret_from_fork (308 samples, 0.06%)</title><rect x="26.6827%" y="805" width="0.0627%" height="15" fill="rgb(224,209,51)" fg:x="131069" fg:w="308"/><text x="26.9327%" y="815.50"></text></g><g><title>JNI_CreateJavaVM (54 samples, 0.01%)</title><rect x="26.7458%" y="773" width="0.0110%" height="15" fill="rgb(223,17,39)" fg:x="131379" fg:w="54"/><text x="26.9958%" y="783.50"></text></g><g><title>Threads::create_vm (54 samples, 0.01%)</title><rect x="26.7458%" y="757" width="0.0110%" height="15" fill="rgb(234,204,37)" fg:x="131379" fg:w="54"/><text x="26.9958%" y="767.50"></text></g><g><title>JavaMain (55 samples, 0.01%)</title><rect x="26.7458%" y="789" width="0.0112%" height="15" fill="rgb(236,120,5)" fg:x="131379" fg:w="55"/><text x="26.9958%" y="799.50"></text></g><g><title>__GI___clone (468 samples, 0.10%)</title><rect x="26.6803%" y="821" width="0.0953%" height="15" fill="rgb(248,97,27)" fg:x="131057" fg:w="468"/><text x="26.9303%" y="831.50"></text></g><g><title>start_thread (148 samples, 0.03%)</title><rect x="26.7454%" y="805" width="0.0301%" height="15" fill="rgb(240,66,17)" fg:x="131377" fg:w="148"/><text x="26.9954%" y="815.50"></text></g><g><title>thread_native_entry (88 samples, 0.02%)</title><rect x="26.7576%" y="789" width="0.0179%" height="15" fill="rgb(210,79,3)" fg:x="131437" fg:w="88"/><text x="27.0076%" y="799.50"></text></g><g><title>java (5,229 samples, 1.06%)</title><rect x="25.7151%" y="837" width="1.0645%" height="15" fill="rgb(214,176,27)" fg:x="126316" fg:w="5229"/><text x="25.9651%" y="847.50"></text></g><g><title>[bash] (63 samples, 0.01%)</title><rect x="26.7912%" y="805" width="0.0128%" height="15" fill="rgb(235,185,3)" fg:x="131602" fg:w="63"/><text x="27.0412%" y="815.50"></text></g><g><title>[bash] (73 samples, 0.01%)</title><rect x="26.8098%" y="789" width="0.0149%" height="15" fill="rgb(227,24,12)" fg:x="131693" fg:w="73"/><text x="27.0598%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.01%)</title><rect x="26.8319%" y="69" width="0.0140%" height="15" fill="rgb(252,169,48)" fg:x="131802" fg:w="69"/><text x="27.0819%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (69 samples, 0.01%)</title><rect x="26.8319%" y="53" width="0.0140%" height="15" fill="rgb(212,65,1)" fg:x="131802" fg:w="69"/><text x="27.0819%" y="63.50"></text></g><g><title>native_write_msr (69 samples, 0.01%)</title><rect x="26.8319%" y="37" width="0.0140%" height="15" fill="rgb(242,39,24)" fg:x="131802" fg:w="69"/><text x="27.0819%" y="47.50"></text></g><g><title>arch_fork (100 samples, 0.02%)</title><rect x="26.8262%" y="133" width="0.0204%" height="15" fill="rgb(249,32,23)" fg:x="131774" fg:w="100"/><text x="27.0762%" y="143.50"></text></g><g><title>ret_from_fork (84 samples, 0.02%)</title><rect x="26.8295%" y="117" width="0.0171%" height="15" fill="rgb(251,195,23)" fg:x="131790" fg:w="84"/><text x="27.0795%" y="127.50"></text></g><g><title>schedule_tail (84 samples, 0.02%)</title><rect x="26.8295%" y="101" width="0.0171%" height="15" fill="rgb(236,174,8)" fg:x="131790" fg:w="84"/><text x="27.0795%" y="111.50"></text></g><g><title>finish_task_switch (76 samples, 0.02%)</title><rect x="26.8311%" y="85" width="0.0155%" height="15" fill="rgb(220,197,8)" fg:x="131798" fg:w="76"/><text x="27.0811%" y="95.50"></text></g><g><title>make_child (102 samples, 0.02%)</title><rect x="26.8260%" y="165" width="0.0208%" height="15" fill="rgb(240,108,37)" fg:x="131773" fg:w="102"/><text x="27.0760%" y="175.50"></text></g><g><title>__libc_fork (102 samples, 0.02%)</title><rect x="26.8260%" y="149" width="0.0208%" height="15" fill="rgb(232,176,24)" fg:x="131773" fg:w="102"/><text x="27.0760%" y="159.50"></text></g><g><title>parse_and_execute (110 samples, 0.02%)</title><rect x="26.8248%" y="245" width="0.0224%" height="15" fill="rgb(243,35,29)" fg:x="131767" fg:w="110"/><text x="27.0748%" y="255.50"></text></g><g><title>execute_command_internal (110 samples, 0.02%)</title><rect x="26.8248%" y="229" width="0.0224%" height="15" fill="rgb(210,37,18)" fg:x="131767" fg:w="110"/><text x="27.0748%" y="239.50"></text></g><g><title>[bash] (110 samples, 0.02%)</title><rect x="26.8248%" y="213" width="0.0224%" height="15" fill="rgb(224,184,40)" fg:x="131767" fg:w="110"/><text x="27.0748%" y="223.50"></text></g><g><title>[bash] (110 samples, 0.02%)</title><rect x="26.8248%" y="197" width="0.0224%" height="15" fill="rgb(236,39,29)" fg:x="131767" fg:w="110"/><text x="27.0748%" y="207.50"></text></g><g><title>execute_command_internal (110 samples, 0.02%)</title><rect x="26.8248%" y="181" width="0.0224%" height="15" fill="rgb(232,48,39)" fg:x="131767" fg:w="110"/><text x="27.0748%" y="191.50"></text></g><g><title>execute_command_internal (185 samples, 0.04%)</title><rect x="26.8098%" y="805" width="0.0377%" height="15" fill="rgb(236,34,42)" fg:x="131693" fg:w="185"/><text x="27.0598%" y="815.50"></text></g><g><title>execute_command_internal (112 samples, 0.02%)</title><rect x="26.8246%" y="789" width="0.0228%" height="15" fill="rgb(243,106,37)" fg:x="131766" fg:w="112"/><text x="27.0746%" y="799.50"></text></g><g><title>[bash] (112 samples, 0.02%)</title><rect x="26.8246%" y="773" width="0.0228%" height="15" fill="rgb(218,96,6)" fg:x="131766" fg:w="112"/><text x="27.0746%" y="783.50"></text></g><g><title>execute_command (112 samples, 0.02%)</title><rect x="26.8246%" y="757" width="0.0228%" height="15" fill="rgb(235,130,12)" fg:x="131766" fg:w="112"/><text x="27.0746%" y="767.50"></text></g><g><title>execute_command_internal (112 samples, 0.02%)</title><rect x="26.8246%" y="741" width="0.0228%" height="15" fill="rgb(231,95,0)" fg:x="131766" fg:w="112"/><text x="27.0746%" y="751.50"></text></g><g><title>[bash] (112 samples, 0.02%)</title><rect x="26.8246%" y="725" width="0.0228%" height="15" fill="rgb(228,12,23)" fg:x="131766" fg:w="112"/><text x="27.0746%" y="735.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="709" width="0.0226%" height="15" fill="rgb(216,12,1)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="719.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="693" width="0.0226%" height="15" fill="rgb(219,59,3)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="703.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="677" width="0.0226%" height="15" fill="rgb(215,208,46)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="687.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="661" width="0.0226%" height="15" fill="rgb(254,224,29)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="671.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="645" width="0.0226%" height="15" fill="rgb(232,14,29)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="655.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="629" width="0.0226%" height="15" fill="rgb(208,45,52)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="639.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="613" width="0.0226%" height="15" fill="rgb(234,191,28)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="623.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="597" width="0.0226%" height="15" fill="rgb(244,67,43)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="607.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="581" width="0.0226%" height="15" fill="rgb(236,189,24)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="591.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="565" width="0.0226%" height="15" fill="rgb(239,214,33)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="575.50"></text></g><g><title>execute_command (111 samples, 0.02%)</title><rect x="26.8248%" y="549" width="0.0226%" height="15" fill="rgb(226,176,41)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="559.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="533" width="0.0226%" height="15" fill="rgb(248,47,8)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="543.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="517" width="0.0226%" height="15" fill="rgb(218,81,44)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="527.50"></text></g><g><title>execute_command (111 samples, 0.02%)</title><rect x="26.8248%" y="501" width="0.0226%" height="15" fill="rgb(213,98,6)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="511.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="485" width="0.0226%" height="15" fill="rgb(222,85,22)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="495.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="469" width="0.0226%" height="15" fill="rgb(239,46,39)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="479.50"></text></g><g><title>execute_command (111 samples, 0.02%)</title><rect x="26.8248%" y="453" width="0.0226%" height="15" fill="rgb(237,12,29)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="463.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="437" width="0.0226%" height="15" fill="rgb(214,77,8)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="447.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="421" width="0.0226%" height="15" fill="rgb(217,168,37)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="431.50"></text></g><g><title>execute_command (111 samples, 0.02%)</title><rect x="26.8248%" y="405" width="0.0226%" height="15" fill="rgb(221,217,23)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="415.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="389" width="0.0226%" height="15" fill="rgb(243,229,36)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="399.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="373" width="0.0226%" height="15" fill="rgb(251,163,40)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="383.50"></text></g><g><title>execute_command_internal (111 samples, 0.02%)</title><rect x="26.8248%" y="357" width="0.0226%" height="15" fill="rgb(237,222,12)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="367.50"></text></g><g><title>expand_words (111 samples, 0.02%)</title><rect x="26.8248%" y="341" width="0.0226%" height="15" fill="rgb(248,132,6)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="351.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="325" width="0.0226%" height="15" fill="rgb(227,167,50)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="335.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="309" width="0.0226%" height="15" fill="rgb(242,84,37)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="319.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="293" width="0.0226%" height="15" fill="rgb(212,4,50)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="303.50"></text></g><g><title>[bash] (111 samples, 0.02%)</title><rect x="26.8248%" y="277" width="0.0226%" height="15" fill="rgb(230,228,32)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="287.50"></text></g><g><title>command_substitute (111 samples, 0.02%)</title><rect x="26.8248%" y="261" width="0.0226%" height="15" fill="rgb(248,217,23)" fg:x="131767" fg:w="111"/><text x="27.0748%" y="271.50"></text></g><g><title>[unknown] (309 samples, 0.06%)</title><rect x="26.7912%" y="821" width="0.0629%" height="15" fill="rgb(238,197,32)" fg:x="131602" fg:w="309"/><text x="27.0412%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.01%)</title><rect x="26.8720%" y="581" width="0.0116%" height="15" fill="rgb(236,106,1)" fg:x="131999" fg:w="57"/><text x="27.1220%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.01%)</title><rect x="26.8720%" y="565" width="0.0116%" height="15" fill="rgb(219,228,13)" fg:x="131999" fg:w="57"/><text x="27.1220%" y="575.50"></text></g><g><title>native_write_msr (57 samples, 0.01%)</title><rect x="26.8720%" y="549" width="0.0116%" height="15" fill="rgb(238,30,35)" fg:x="131999" fg:w="57"/><text x="27.1220%" y="559.50"></text></g><g><title>__libc_fork (76 samples, 0.02%)</title><rect x="26.8686%" y="661" width="0.0155%" height="15" fill="rgb(236,70,23)" fg:x="131982" fg:w="76"/><text x="27.1186%" y="671.50"></text></g><g><title>arch_fork (76 samples, 0.02%)</title><rect x="26.8686%" y="645" width="0.0155%" height="15" fill="rgb(249,104,48)" fg:x="131982" fg:w="76"/><text x="27.1186%" y="655.50"></text></g><g><title>ret_from_fork (69 samples, 0.01%)</title><rect x="26.8700%" y="629" width="0.0140%" height="15" fill="rgb(254,117,50)" fg:x="131989" fg:w="69"/><text x="27.1200%" y="639.50"></text></g><g><title>schedule_tail (69 samples, 0.01%)</title><rect x="26.8700%" y="613" width="0.0140%" height="15" fill="rgb(223,152,4)" fg:x="131989" fg:w="69"/><text x="27.1200%" y="623.50"></text></g><g><title>finish_task_switch (63 samples, 0.01%)</title><rect x="26.8712%" y="597" width="0.0128%" height="15" fill="rgb(245,6,2)" fg:x="131995" fg:w="63"/><text x="27.1212%" y="607.50"></text></g><g><title>make_child (84 samples, 0.02%)</title><rect x="26.8686%" y="677" width="0.0171%" height="15" fill="rgb(249,150,24)" fg:x="131982" fg:w="84"/><text x="27.1186%" y="687.50"></text></g><g><title>execute_command (142 samples, 0.03%)</title><rect x="26.8623%" y="709" width="0.0289%" height="15" fill="rgb(228,185,42)" fg:x="131951" fg:w="142"/><text x="27.1123%" y="719.50"></text></g><g><title>execute_command_internal (141 samples, 0.03%)</title><rect x="26.8625%" y="693" width="0.0287%" height="15" fill="rgb(226,39,33)" fg:x="131952" fg:w="141"/><text x="27.1125%" y="703.50"></text></g><g><title>[bash] (173 samples, 0.04%)</title><rect x="26.8611%" y="725" width="0.0352%" height="15" fill="rgb(221,166,19)" fg:x="131945" fg:w="173"/><text x="27.1111%" y="735.50"></text></g><g><title>copy_command (52 samples, 0.01%)</title><rect x="26.8979%" y="613" width="0.0106%" height="15" fill="rgb(209,109,2)" fg:x="132126" fg:w="52"/><text x="27.1479%" y="623.50"></text></g><g><title>copy_command (62 samples, 0.01%)</title><rect x="26.8965%" y="677" width="0.0126%" height="15" fill="rgb(252,216,26)" fg:x="132119" fg:w="62"/><text x="27.1465%" y="687.50"></text></g><g><title>copy_command (61 samples, 0.01%)</title><rect x="26.8967%" y="661" width="0.0124%" height="15" fill="rgb(227,173,36)" fg:x="132120" fg:w="61"/><text x="27.1467%" y="671.50"></text></g><g><title>copy_command (60 samples, 0.01%)</title><rect x="26.8969%" y="645" width="0.0122%" height="15" fill="rgb(209,90,7)" fg:x="132121" fg:w="60"/><text x="27.1469%" y="655.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="26.8973%" y="629" width="0.0118%" height="15" fill="rgb(250,194,11)" fg:x="132123" fg:w="58"/><text x="27.1473%" y="639.50"></text></g><g><title>copy_command (63 samples, 0.01%)</title><rect x="26.8965%" y="693" width="0.0128%" height="15" fill="rgb(220,72,50)" fg:x="132119" fg:w="63"/><text x="27.1465%" y="703.50"></text></g><g><title>copy_command (65 samples, 0.01%)</title><rect x="26.8965%" y="709" width="0.0132%" height="15" fill="rgb(222,106,48)" fg:x="132119" fg:w="65"/><text x="27.1465%" y="719.50"></text></g><g><title>bind_function (66 samples, 0.01%)</title><rect x="26.8965%" y="725" width="0.0134%" height="15" fill="rgb(216,220,45)" fg:x="132119" fg:w="66"/><text x="27.1465%" y="735.50"></text></g><g><title>copy_command (51 samples, 0.01%)</title><rect x="26.9103%" y="645" width="0.0104%" height="15" fill="rgb(234,112,18)" fg:x="132187" fg:w="51"/><text x="27.1603%" y="655.50"></text></g><g><title>copy_command (55 samples, 0.01%)</title><rect x="26.9099%" y="661" width="0.0112%" height="15" fill="rgb(206,179,9)" fg:x="132185" fg:w="55"/><text x="27.1599%" y="671.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="26.9099%" y="677" width="0.0114%" height="15" fill="rgb(215,115,40)" fg:x="132185" fg:w="56"/><text x="27.1599%" y="687.50"></text></g><g><title>copy_function_def_contents (57 samples, 0.01%)</title><rect x="26.9099%" y="725" width="0.0116%" height="15" fill="rgb(222,69,34)" fg:x="132185" fg:w="57"/><text x="27.1599%" y="735.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="26.9099%" y="709" width="0.0116%" height="15" fill="rgb(209,161,10)" fg:x="132185" fg:w="57"/><text x="27.1599%" y="719.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="26.9099%" y="693" width="0.0116%" height="15" fill="rgb(217,6,38)" fg:x="132185" fg:w="57"/><text x="27.1599%" y="703.50"></text></g><g><title>schedule_tail (80 samples, 0.02%)</title><rect x="26.9291%" y="581" width="0.0163%" height="15" fill="rgb(229,229,48)" fg:x="132279" fg:w="80"/><text x="27.1791%" y="591.50"></text></g><g><title>finish_task_switch (70 samples, 0.01%)</title><rect x="26.9311%" y="565" width="0.0143%" height="15" fill="rgb(225,21,28)" fg:x="132289" fg:w="70"/><text x="27.1811%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.01%)</title><rect x="26.9311%" y="549" width="0.0143%" height="15" fill="rgb(206,33,13)" fg:x="132289" fg:w="70"/><text x="27.1811%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (70 samples, 0.01%)</title><rect x="26.9311%" y="533" width="0.0143%" height="15" fill="rgb(242,178,17)" fg:x="132289" fg:w="70"/><text x="27.1811%" y="543.50"></text></g><g><title>native_write_msr (70 samples, 0.01%)</title><rect x="26.9311%" y="517" width="0.0143%" height="15" fill="rgb(220,162,5)" fg:x="132289" fg:w="70"/><text x="27.1811%" y="527.50"></text></g><g><title>arch_fork (89 samples, 0.02%)</title><rect x="26.9274%" y="613" width="0.0181%" height="15" fill="rgb(210,33,43)" fg:x="132271" fg:w="89"/><text x="27.1774%" y="623.50"></text></g><g><title>ret_from_fork (81 samples, 0.02%)</title><rect x="26.9291%" y="597" width="0.0165%" height="15" fill="rgb(216,116,54)" fg:x="132279" fg:w="81"/><text x="27.1791%" y="607.50"></text></g><g><title>__libc_fork (92 samples, 0.02%)</title><rect x="26.9272%" y="629" width="0.0187%" height="15" fill="rgb(249,92,24)" fg:x="132270" fg:w="92"/><text x="27.1772%" y="639.50"></text></g><g><title>make_child (96 samples, 0.02%)</title><rect x="26.9272%" y="645" width="0.0195%" height="15" fill="rgb(231,189,14)" fg:x="132270" fg:w="96"/><text x="27.1772%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.01%)</title><rect x="26.9553%" y="517" width="0.0138%" height="15" fill="rgb(230,8,41)" fg:x="132408" fg:w="68"/><text x="27.2053%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.01%)</title><rect x="26.9555%" y="501" width="0.0136%" height="15" fill="rgb(249,7,27)" fg:x="132409" fg:w="67"/><text x="27.2055%" y="511.50"></text></g><g><title>native_write_msr (67 samples, 0.01%)</title><rect x="26.9555%" y="485" width="0.0136%" height="15" fill="rgb(232,86,5)" fg:x="132409" fg:w="67"/><text x="27.2055%" y="495.50"></text></g><g><title>__libc_fork (89 samples, 0.02%)</title><rect x="26.9512%" y="597" width="0.0181%" height="15" fill="rgb(224,175,18)" fg:x="132388" fg:w="89"/><text x="27.2012%" y="607.50"></text></g><g><title>arch_fork (88 samples, 0.02%)</title><rect x="26.9514%" y="581" width="0.0179%" height="15" fill="rgb(220,129,12)" fg:x="132389" fg:w="88"/><text x="27.2014%" y="591.50"></text></g><g><title>ret_from_fork (80 samples, 0.02%)</title><rect x="26.9531%" y="565" width="0.0163%" height="15" fill="rgb(210,19,36)" fg:x="132397" fg:w="80"/><text x="27.2031%" y="575.50"></text></g><g><title>schedule_tail (80 samples, 0.02%)</title><rect x="26.9531%" y="549" width="0.0163%" height="15" fill="rgb(219,96,14)" fg:x="132397" fg:w="80"/><text x="27.2031%" y="559.50"></text></g><g><title>finish_task_switch (70 samples, 0.01%)</title><rect x="26.9551%" y="533" width="0.0143%" height="15" fill="rgb(249,106,1)" fg:x="132407" fg:w="70"/><text x="27.2051%" y="543.50"></text></g><g><title>make_child (95 samples, 0.02%)</title><rect x="26.9510%" y="613" width="0.0193%" height="15" fill="rgb(249,155,20)" fg:x="132387" fg:w="95"/><text x="27.2010%" y="623.50"></text></g><g><title>execute_command_internal (126 samples, 0.03%)</title><rect x="26.9480%" y="629" width="0.0257%" height="15" fill="rgb(244,168,9)" fg:x="132372" fg:w="126"/><text x="27.1980%" y="639.50"></text></g><g><title>parse_and_execute (133 samples, 0.03%)</title><rect x="26.9468%" y="645" width="0.0271%" height="15" fill="rgb(216,23,50)" fg:x="132366" fg:w="133"/><text x="27.1968%" y="655.50"></text></g><g><title>expand_word_leave_quoted (283 samples, 0.06%)</title><rect x="26.9262%" y="693" width="0.0576%" height="15" fill="rgb(224,219,20)" fg:x="132265" fg:w="283"/><text x="27.1762%" y="703.50"></text></g><g><title>[bash] (283 samples, 0.06%)</title><rect x="26.9262%" y="677" width="0.0576%" height="15" fill="rgb(222,156,15)" fg:x="132265" fg:w="283"/><text x="27.1762%" y="687.50"></text></g><g><title>command_substitute (283 samples, 0.06%)</title><rect x="26.9262%" y="661" width="0.0576%" height="15" fill="rgb(231,97,17)" fg:x="132265" fg:w="283"/><text x="27.1762%" y="671.50"></text></g><g><title>execute_command (312 samples, 0.06%)</title><rect x="26.9219%" y="725" width="0.0635%" height="15" fill="rgb(218,70,48)" fg:x="132244" fg:w="312"/><text x="27.1719%" y="735.50"></text></g><g><title>execute_command_internal (312 samples, 0.06%)</title><rect x="26.9219%" y="709" width="0.0635%" height="15" fill="rgb(212,196,52)" fg:x="132244" fg:w="312"/><text x="27.1719%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (63 samples, 0.01%)</title><rect x="26.9922%" y="533" width="0.0128%" height="15" fill="rgb(243,203,18)" fg:x="132589" fg:w="63"/><text x="27.2422%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="26.9924%" y="517" width="0.0126%" height="15" fill="rgb(252,125,41)" fg:x="132590" fg:w="62"/><text x="27.2424%" y="527.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="26.9924%" y="501" width="0.0126%" height="15" fill="rgb(223,180,33)" fg:x="132590" fg:w="62"/><text x="27.2424%" y="511.50"></text></g><g><title>arch_fork (83 samples, 0.02%)</title><rect x="26.9885%" y="597" width="0.0169%" height="15" fill="rgb(254,159,46)" fg:x="132571" fg:w="83"/><text x="27.2385%" y="607.50"></text></g><g><title>ret_from_fork (77 samples, 0.02%)</title><rect x="26.9897%" y="581" width="0.0157%" height="15" fill="rgb(254,38,10)" fg:x="132577" fg:w="77"/><text x="27.2397%" y="591.50"></text></g><g><title>schedule_tail (77 samples, 0.02%)</title><rect x="26.9897%" y="565" width="0.0157%" height="15" fill="rgb(208,217,32)" fg:x="132577" fg:w="77"/><text x="27.2397%" y="575.50"></text></g><g><title>finish_task_switch (69 samples, 0.01%)</title><rect x="26.9913%" y="549" width="0.0140%" height="15" fill="rgb(221,120,13)" fg:x="132585" fg:w="69"/><text x="27.2413%" y="559.50"></text></g><g><title>__libc_fork (86 samples, 0.02%)</title><rect x="26.9883%" y="613" width="0.0175%" height="15" fill="rgb(246,54,52)" fg:x="132570" fg:w="86"/><text x="27.2383%" y="623.50"></text></g><g><title>make_child (90 samples, 0.02%)</title><rect x="26.9881%" y="629" width="0.0183%" height="15" fill="rgb(242,34,25)" fg:x="132569" fg:w="90"/><text x="27.2381%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (120 samples, 0.02%)</title><rect x="27.0245%" y="453" width="0.0244%" height="15" fill="rgb(247,209,9)" fg:x="132748" fg:w="120"/><text x="27.2745%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (119 samples, 0.02%)</title><rect x="27.0247%" y="437" width="0.0242%" height="15" fill="rgb(228,71,26)" fg:x="132749" fg:w="119"/><text x="27.2747%" y="447.50"></text></g><g><title>native_write_msr (119 samples, 0.02%)</title><rect x="27.0247%" y="421" width="0.0242%" height="15" fill="rgb(222,145,49)" fg:x="132749" fg:w="119"/><text x="27.2747%" y="431.50"></text></g><g><title>arch_fork (154 samples, 0.03%)</title><rect x="27.0180%" y="517" width="0.0314%" height="15" fill="rgb(218,121,17)" fg:x="132716" fg:w="154"/><text x="27.2680%" y="527.50"></text></g><g><title>ret_from_fork (139 samples, 0.03%)</title><rect x="27.0211%" y="501" width="0.0283%" height="15" fill="rgb(244,50,7)" fg:x="132731" fg:w="139"/><text x="27.2711%" y="511.50"></text></g><g><title>schedule_tail (139 samples, 0.03%)</title><rect x="27.0211%" y="485" width="0.0283%" height="15" fill="rgb(246,229,37)" fg:x="132731" fg:w="139"/><text x="27.2711%" y="495.50"></text></g><g><title>finish_task_switch (128 samples, 0.03%)</title><rect x="27.0233%" y="469" width="0.0261%" height="15" fill="rgb(225,18,5)" fg:x="132742" fg:w="128"/><text x="27.2733%" y="479.50"></text></g><g><title>__libc_fork (160 samples, 0.03%)</title><rect x="27.0178%" y="533" width="0.0326%" height="15" fill="rgb(213,204,8)" fg:x="132715" fg:w="160"/><text x="27.2678%" y="543.50"></text></g><g><title>make_child (166 samples, 0.03%)</title><rect x="27.0176%" y="549" width="0.0338%" height="15" fill="rgb(238,103,6)" fg:x="132714" fg:w="166"/><text x="27.2676%" y="559.50"></text></g><g><title>execute_command_internal (236 samples, 0.05%)</title><rect x="27.0070%" y="613" width="0.0480%" height="15" fill="rgb(222,25,35)" fg:x="132662" fg:w="236"/><text x="27.2570%" y="623.50"></text></g><g><title>[bash] (236 samples, 0.05%)</title><rect x="27.0070%" y="597" width="0.0480%" height="15" fill="rgb(213,203,35)" fg:x="132662" fg:w="236"/><text x="27.2570%" y="607.50"></text></g><g><title>[bash] (236 samples, 0.05%)</title><rect x="27.0070%" y="581" width="0.0480%" height="15" fill="rgb(221,79,53)" fg:x="132662" fg:w="236"/><text x="27.2570%" y="591.50"></text></g><g><title>execute_command_internal (236 samples, 0.05%)</title><rect x="27.0070%" y="565" width="0.0480%" height="15" fill="rgb(243,200,35)" fg:x="132662" fg:w="236"/><text x="27.2570%" y="575.50"></text></g><g><title>parse_and_execute (241 samples, 0.05%)</title><rect x="27.0064%" y="629" width="0.0491%" height="15" fill="rgb(248,60,25)" fg:x="132659" fg:w="241"/><text x="27.2564%" y="639.50"></text></g><g><title>command_substitute (359 samples, 0.07%)</title><rect x="26.9867%" y="645" width="0.0731%" height="15" fill="rgb(227,53,46)" fg:x="132562" fg:w="359"/><text x="27.2367%" y="655.50"></text></g><g><title>[bash] (367 samples, 0.07%)</title><rect x="26.9856%" y="661" width="0.0747%" height="15" fill="rgb(216,120,32)" fg:x="132557" fg:w="367"/><text x="27.2356%" y="671.50"></text></g><g><title>[bash] (369 samples, 0.08%)</title><rect x="26.9856%" y="677" width="0.0751%" height="15" fill="rgb(220,134,1)" fg:x="132557" fg:w="369"/><text x="27.2356%" y="687.50"></text></g><g><title>[bash] (370 samples, 0.08%)</title><rect x="26.9856%" y="693" width="0.0753%" height="15" fill="rgb(237,168,5)" fg:x="132557" fg:w="370"/><text x="27.2356%" y="703.50"></text></g><g><title>[bash] (375 samples, 0.08%)</title><rect x="26.9856%" y="709" width="0.0763%" height="15" fill="rgb(231,100,33)" fg:x="132557" fg:w="375"/><text x="27.2356%" y="719.50"></text></g><g><title>expand_words (377 samples, 0.08%)</title><rect x="26.9854%" y="725" width="0.0767%" height="15" fill="rgb(236,177,47)" fg:x="132556" fg:w="377"/><text x="27.2354%" y="735.50"></text></g><g><title>execute_command_internal (990 samples, 0.20%)</title><rect x="26.8609%" y="741" width="0.2015%" height="15" fill="rgb(235,7,49)" fg:x="131944" fg:w="990"/><text x="27.1109%" y="751.50"></text></g><g><title>execute_command (991 samples, 0.20%)</title><rect x="26.8609%" y="757" width="0.2017%" height="15" fill="rgb(232,119,22)" fg:x="131944" fg:w="991"/><text x="27.1109%" y="767.50"></text></g><g><title>[bash] (178 samples, 0.04%)</title><rect x="27.0862%" y="693" width="0.0362%" height="15" fill="rgb(254,73,53)" fg:x="133051" fg:w="178"/><text x="27.3362%" y="703.50"></text></g><g><title>[bash] (314 samples, 0.06%)</title><rect x="27.0701%" y="709" width="0.0639%" height="15" fill="rgb(251,35,20)" fg:x="132972" fg:w="314"/><text x="27.3201%" y="719.50"></text></g><g><title>reader_loop (1,393 samples, 0.28%)</title><rect x="26.8562%" y="773" width="0.2836%" height="15" fill="rgb(241,119,20)" fg:x="131921" fg:w="1393"/><text x="27.1062%" y="783.50"></text></g><g><title>read_command (379 samples, 0.08%)</title><rect x="27.0626%" y="757" width="0.0772%" height="15" fill="rgb(207,102,14)" fg:x="132935" fg:w="379"/><text x="27.3126%" y="767.50"></text></g><g><title>parse_command (379 samples, 0.08%)</title><rect x="27.0626%" y="741" width="0.0772%" height="15" fill="rgb(248,201,50)" fg:x="132935" fg:w="379"/><text x="27.3126%" y="751.50"></text></g><g><title>yyparse (379 samples, 0.08%)</title><rect x="27.0626%" y="725" width="0.0772%" height="15" fill="rgb(222,185,44)" fg:x="132935" fg:w="379"/><text x="27.3126%" y="735.50"></text></g><g><title>__libc_start_main (1,406 samples, 0.29%)</title><rect x="26.8547%" y="805" width="0.2862%" height="15" fill="rgb(218,107,18)" fg:x="131914" fg:w="1406"/><text x="27.1047%" y="815.50"></text></g><g><title>main (1,405 samples, 0.29%)</title><rect x="26.8549%" y="789" width="0.2860%" height="15" fill="rgb(237,177,39)" fg:x="131915" fg:w="1405"/><text x="27.1049%" y="799.50"></text></g><g><title>_start (1,420 samples, 0.29%)</title><rect x="26.8547%" y="821" width="0.2891%" height="15" fill="rgb(246,69,6)" fg:x="131914" fg:w="1420"/><text x="27.1047%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="27.1518%" y="821" width="0.0102%" height="15" fill="rgb(234,208,37)" fg:x="133373" fg:w="50"/><text x="27.4018%" y="831.50"></text></g><g><title>do_syscall_64 (50 samples, 0.01%)</title><rect x="27.1518%" y="805" width="0.0102%" height="15" fill="rgb(225,4,6)" fg:x="133373" fg:w="50"/><text x="27.4018%" y="815.50"></text></g><g><title>libtool (1,881 samples, 0.38%)</title><rect x="26.7796%" y="837" width="0.3829%" height="15" fill="rgb(233,45,0)" fg:x="131545" fg:w="1881"/><text x="27.0296%" y="847.50"></text></g><g><title>__libc_start_main (51 samples, 0.01%)</title><rect x="27.1685%" y="805" width="0.0104%" height="15" fill="rgb(226,136,5)" fg:x="133455" fg:w="51"/><text x="27.4185%" y="815.50"></text></g><g><title>__GI___clone (51 samples, 0.01%)</title><rect x="27.1685%" y="789" width="0.0104%" height="15" fill="rgb(211,91,47)" fg:x="133455" fg:w="51"/><text x="27.4185%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%)</title><rect x="27.1685%" y="773" width="0.0104%" height="15" fill="rgb(242,88,51)" fg:x="133455" fg:w="51"/><text x="27.4185%" y="783.50"></text></g><g><title>do_syscall_64 (51 samples, 0.01%)</title><rect x="27.1685%" y="757" width="0.0104%" height="15" fill="rgb(230,91,28)" fg:x="133455" fg:w="51"/><text x="27.4185%" y="767.50"></text></g><g><title>__do_sys_clone (51 samples, 0.01%)</title><rect x="27.1685%" y="741" width="0.0104%" height="15" fill="rgb(254,186,29)" fg:x="133455" fg:w="51"/><text x="27.4185%" y="751.50"></text></g><g><title>kernel_clone (51 samples, 0.01%)</title><rect x="27.1685%" y="725" width="0.0104%" height="15" fill="rgb(238,6,4)" fg:x="133455" fg:w="51"/><text x="27.4185%" y="735.50"></text></g><g><title>copy_process (51 samples, 0.01%)</title><rect x="27.1685%" y="709" width="0.0104%" height="15" fill="rgb(221,151,16)" fg:x="133455" fg:w="51"/><text x="27.4185%" y="719.50"></text></g><g><title>[unknown] (69 samples, 0.01%)</title><rect x="27.1666%" y="821" width="0.0140%" height="15" fill="rgb(251,143,52)" fg:x="133446" fg:w="69"/><text x="27.4166%" y="831.50"></text></g><g><title>__fopen_internal (57 samples, 0.01%)</title><rect x="27.1888%" y="773" width="0.0116%" height="15" fill="rgb(206,90,15)" fg:x="133555" fg:w="57"/><text x="27.4388%" y="783.50"></text></g><g><title>WriteFile (72 samples, 0.01%)</title><rect x="27.1868%" y="789" width="0.0147%" height="15" fill="rgb(218,35,8)" fg:x="133545" fg:w="72"/><text x="27.4368%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (82 samples, 0.02%)</title><rect x="27.2096%" y="661" width="0.0167%" height="15" fill="rgb(239,215,6)" fg:x="133657" fg:w="82"/><text x="27.4596%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (82 samples, 0.02%)</title><rect x="27.2096%" y="645" width="0.0167%" height="15" fill="rgb(245,116,39)" fg:x="133657" fg:w="82"/><text x="27.4596%" y="655.50"></text></g><g><title>native_write_msr (82 samples, 0.02%)</title><rect x="27.2096%" y="629" width="0.0167%" height="15" fill="rgb(242,65,28)" fg:x="133657" fg:w="82"/><text x="27.4596%" y="639.50"></text></g><g><title>finish_task_switch (87 samples, 0.02%)</title><rect x="27.2092%" y="677" width="0.0177%" height="15" fill="rgb(252,132,53)" fg:x="133655" fg:w="87"/><text x="27.4592%" y="687.50"></text></g><g><title>schedule (88 samples, 0.02%)</title><rect x="27.2092%" y="709" width="0.0179%" height="15" fill="rgb(224,159,50)" fg:x="133655" fg:w="88"/><text x="27.4592%" y="719.50"></text></g><g><title>__schedule (88 samples, 0.02%)</title><rect x="27.2092%" y="693" width="0.0179%" height="15" fill="rgb(224,93,4)" fg:x="133655" fg:w="88"/><text x="27.4592%" y="703.50"></text></g><g><title>do_syscall_64 (111 samples, 0.02%)</title><rect x="27.2084%" y="757" width="0.0226%" height="15" fill="rgb(208,81,34)" fg:x="133651" fg:w="111"/><text x="27.4584%" y="767.50"></text></g><g><title>kernel_wait4 (111 samples, 0.02%)</title><rect x="27.2084%" y="741" width="0.0226%" height="15" fill="rgb(233,92,54)" fg:x="133651" fg:w="111"/><text x="27.4584%" y="751.50"></text></g><g><title>do_wait (110 samples, 0.02%)</title><rect x="27.2086%" y="725" width="0.0224%" height="15" fill="rgb(237,21,14)" fg:x="133652" fg:w="110"/><text x="27.4586%" y="735.50"></text></g><g><title>__GI___wait4 (112 samples, 0.02%)</title><rect x="27.2084%" y="789" width="0.0228%" height="15" fill="rgb(249,128,51)" fg:x="133651" fg:w="112"/><text x="27.4584%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (112 samples, 0.02%)</title><rect x="27.2084%" y="773" width="0.0228%" height="15" fill="rgb(223,129,24)" fg:x="133651" fg:w="112"/><text x="27.4584%" y="783.50"></text></g><g><title>do_open_execat (69 samples, 0.01%)</title><rect x="27.2348%" y="677" width="0.0140%" height="15" fill="rgb(231,168,25)" fg:x="133781" fg:w="69"/><text x="27.4848%" y="687.50"></text></g><g><title>do_filp_open (69 samples, 0.01%)</title><rect x="27.2348%" y="661" width="0.0140%" height="15" fill="rgb(224,39,20)" fg:x="133781" fg:w="69"/><text x="27.4848%" y="671.50"></text></g><g><title>path_openat (69 samples, 0.01%)</title><rect x="27.2348%" y="645" width="0.0140%" height="15" fill="rgb(225,152,53)" fg:x="133781" fg:w="69"/><text x="27.4848%" y="655.50"></text></g><g><title>bprm_execve (116 samples, 0.02%)</title><rect x="27.2346%" y="693" width="0.0236%" height="15" fill="rgb(252,17,24)" fg:x="133780" fg:w="116"/><text x="27.4846%" y="703.50"></text></g><g><title>__execvpe_common (131 samples, 0.03%)</title><rect x="27.2326%" y="789" width="0.0267%" height="15" fill="rgb(250,114,30)" fg:x="133770" fg:w="131"/><text x="27.4826%" y="799.50"></text></g><g><title>__GI_execve (127 samples, 0.03%)</title><rect x="27.2334%" y="773" width="0.0259%" height="15" fill="rgb(229,5,4)" fg:x="133774" fg:w="127"/><text x="27.4834%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (127 samples, 0.03%)</title><rect x="27.2334%" y="757" width="0.0259%" height="15" fill="rgb(225,176,49)" fg:x="133774" fg:w="127"/><text x="27.4834%" y="767.50"></text></g><g><title>do_syscall_64 (127 samples, 0.03%)</title><rect x="27.2334%" y="741" width="0.0259%" height="15" fill="rgb(224,221,49)" fg:x="133774" fg:w="127"/><text x="27.4834%" y="751.50"></text></g><g><title>__x64_sys_execve (127 samples, 0.03%)</title><rect x="27.2334%" y="725" width="0.0259%" height="15" fill="rgb(253,169,27)" fg:x="133774" fg:w="127"/><text x="27.4834%" y="735.50"></text></g><g><title>do_execveat_common (127 samples, 0.03%)</title><rect x="27.2334%" y="709" width="0.0259%" height="15" fill="rgb(211,206,16)" fg:x="133774" fg:w="127"/><text x="27.4834%" y="719.50"></text></g><g><title>copy_process (51 samples, 0.01%)</title><rect x="27.2698%" y="693" width="0.0104%" height="15" fill="rgb(244,87,35)" fg:x="133953" fg:w="51"/><text x="27.5198%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="27.2698%" y="757" width="0.0110%" height="15" fill="rgb(246,28,10)" fg:x="133953" fg:w="54"/><text x="27.5198%" y="767.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="27.2698%" y="741" width="0.0110%" height="15" fill="rgb(229,12,44)" fg:x="133953" fg:w="54"/><text x="27.5198%" y="751.50"></text></g><g><title>__do_sys_clone (54 samples, 0.01%)</title><rect x="27.2698%" y="725" width="0.0110%" height="15" fill="rgb(210,145,37)" fg:x="133953" fg:w="54"/><text x="27.5198%" y="735.50"></text></g><g><title>kernel_clone (54 samples, 0.01%)</title><rect x="27.2698%" y="709" width="0.0110%" height="15" fill="rgb(227,112,52)" fg:x="133953" fg:w="54"/><text x="27.5198%" y="719.50"></text></g><g><title>__put_user_nocheck_4 (52 samples, 0.01%)</title><rect x="27.2810%" y="725" width="0.0106%" height="15" fill="rgb(238,155,34)" fg:x="134008" fg:w="52"/><text x="27.5310%" y="735.50"></text></g><g><title>asm_exc_page_fault (52 samples, 0.01%)</title><rect x="27.2810%" y="709" width="0.0106%" height="15" fill="rgb(239,226,36)" fg:x="134008" fg:w="52"/><text x="27.5310%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (403 samples, 0.08%)</title><rect x="27.2937%" y="709" width="0.0820%" height="15" fill="rgb(230,16,23)" fg:x="134070" fg:w="403"/><text x="27.5437%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (403 samples, 0.08%)</title><rect x="27.2937%" y="693" width="0.0820%" height="15" fill="rgb(236,171,36)" fg:x="134070" fg:w="403"/><text x="27.5437%" y="703.50"></text></g><g><title>native_write_msr (403 samples, 0.08%)</title><rect x="27.2937%" y="677" width="0.0820%" height="15" fill="rgb(221,22,14)" fg:x="134070" fg:w="403"/><text x="27.5437%" y="687.50"></text></g><g><title>schedule_tail (474 samples, 0.10%)</title><rect x="27.2810%" y="741" width="0.0965%" height="15" fill="rgb(242,43,11)" fg:x="134008" fg:w="474"/><text x="27.5310%" y="751.50"></text></g><g><title>finish_task_switch (418 samples, 0.09%)</title><rect x="27.2924%" y="725" width="0.0851%" height="15" fill="rgb(232,69,23)" fg:x="134064" fg:w="418"/><text x="27.5424%" y="735.50"></text></g><g><title>arch_fork (580 samples, 0.12%)</title><rect x="27.2601%" y="773" width="0.1181%" height="15" fill="rgb(216,180,54)" fg:x="133905" fg:w="580"/><text x="27.5101%" y="783.50"></text></g><g><title>ret_from_fork (477 samples, 0.10%)</title><rect x="27.2810%" y="757" width="0.0971%" height="15" fill="rgb(216,5,24)" fg:x="134008" fg:w="477"/><text x="27.5310%" y="767.50"></text></g><g><title>__libc_fork (589 samples, 0.12%)</title><rect x="27.2593%" y="789" width="0.1199%" height="15" fill="rgb(225,89,9)" fg:x="133901" fg:w="589"/><text x="27.5093%" y="799.50"></text></g><g><title>__x64_sys_mount (56 samples, 0.01%)</title><rect x="27.3794%" y="741" width="0.0114%" height="15" fill="rgb(243,75,33)" fg:x="134491" fg:w="56"/><text x="27.6294%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="27.3794%" y="773" width="0.0116%" height="15" fill="rgb(247,141,45)" fg:x="134491" fg:w="57"/><text x="27.6294%" y="783.50"></text></g><g><title>do_syscall_64 (57 samples, 0.01%)</title><rect x="27.3794%" y="757" width="0.0116%" height="15" fill="rgb(232,177,36)" fg:x="134491" fg:w="57"/><text x="27.6294%" y="767.50"></text></g><g><title>__mount (58 samples, 0.01%)</title><rect x="27.3794%" y="789" width="0.0118%" height="15" fill="rgb(219,125,36)" fg:x="134491" fg:w="58"/><text x="27.6294%" y="799.50"></text></g><g><title>Pid1Main (1,080 samples, 0.22%)</title><rect x="27.1811%" y="805" width="0.2199%" height="15" fill="rgb(227,94,9)" fg:x="133517" fg:w="1080"/><text x="27.4311%" y="815.50"></text></g><g><title>handle_mm_fault (51 samples, 0.01%)</title><rect x="27.4030%" y="757" width="0.0104%" height="15" fill="rgb(240,34,52)" fg:x="134607" fg:w="51"/><text x="27.6530%" y="767.50"></text></g><g><title>asm_exc_page_fault (62 samples, 0.01%)</title><rect x="27.4009%" y="805" width="0.0126%" height="15" fill="rgb(216,45,12)" fg:x="134597" fg:w="62"/><text x="27.6509%" y="815.50"></text></g><g><title>exc_page_fault (62 samples, 0.01%)</title><rect x="27.4009%" y="789" width="0.0126%" height="15" fill="rgb(246,21,19)" fg:x="134597" fg:w="62"/><text x="27.6509%" y="799.50"></text></g><g><title>do_user_addr_fault (62 samples, 0.01%)</title><rect x="27.4009%" y="773" width="0.0126%" height="15" fill="rgb(213,98,42)" fg:x="134597" fg:w="62"/><text x="27.6509%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (438 samples, 0.09%)</title><rect x="27.4254%" y="757" width="0.0892%" height="15" fill="rgb(250,136,47)" fg:x="134717" fg:w="438"/><text x="27.6754%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (437 samples, 0.09%)</title><rect x="27.4256%" y="741" width="0.0890%" height="15" fill="rgb(251,124,27)" fg:x="134718" fg:w="437"/><text x="27.6756%" y="751.50"></text></g><g><title>native_write_msr (436 samples, 0.09%)</title><rect x="27.4258%" y="725" width="0.0888%" height="15" fill="rgb(229,180,14)" fg:x="134719" fg:w="436"/><text x="27.6758%" y="735.50"></text></g><g><title>schedule_tail (468 samples, 0.10%)</title><rect x="27.4221%" y="789" width="0.0953%" height="15" fill="rgb(245,216,25)" fg:x="134701" fg:w="468"/><text x="27.6721%" y="799.50"></text></g><g><title>finish_task_switch (467 samples, 0.10%)</title><rect x="27.4223%" y="773" width="0.0951%" height="15" fill="rgb(251,43,5)" fg:x="134702" fg:w="467"/><text x="27.6723%" y="783.50"></text></g><g><title>__GI___clone (1,658 samples, 0.34%)</title><rect x="27.1807%" y="821" width="0.3375%" height="15" fill="rgb(250,128,24)" fg:x="133515" fg:w="1658"/><text x="27.4307%" y="831.50"></text></g><g><title>ret_from_fork (512 samples, 0.10%)</title><rect x="27.4140%" y="805" width="0.1042%" height="15" fill="rgb(217,117,27)" fg:x="134661" fg:w="512"/><text x="27.6640%" y="815.50"></text></g><g><title>exc_page_fault (67 samples, 0.01%)</title><rect x="27.5365%" y="741" width="0.0136%" height="15" fill="rgb(245,147,4)" fg:x="135263" fg:w="67"/><text x="27.7865%" y="751.50"></text></g><g><title>do_user_addr_fault (64 samples, 0.01%)</title><rect x="27.5371%" y="725" width="0.0130%" height="15" fill="rgb(242,201,35)" fg:x="135266" fg:w="64"/><text x="27.7871%" y="735.50"></text></g><g><title>handle_mm_fault (61 samples, 0.01%)</title><rect x="27.5377%" y="709" width="0.0124%" height="15" fill="rgb(218,181,1)" fg:x="135269" fg:w="61"/><text x="27.7877%" y="719.50"></text></g><g><title>asm_exc_page_fault (70 samples, 0.01%)</title><rect x="27.5361%" y="757" width="0.0143%" height="15" fill="rgb(222,6,29)" fg:x="135261" fg:w="70"/><text x="27.7861%" y="767.50"></text></g><g><title>[libc-2.31.so] (102 samples, 0.02%)</title><rect x="27.5325%" y="773" width="0.0208%" height="15" fill="rgb(208,186,3)" fg:x="135243" fg:w="102"/><text x="27.7825%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (52 samples, 0.01%)</title><rect x="27.5548%" y="629" width="0.0106%" height="15" fill="rgb(216,36,26)" fg:x="135353" fg:w="52"/><text x="27.8048%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.01%)</title><rect x="27.5551%" y="613" width="0.0104%" height="15" fill="rgb(248,201,23)" fg:x="135354" fg:w="51"/><text x="27.8051%" y="623.50"></text></g><g><title>native_write_msr (51 samples, 0.01%)</title><rect x="27.5551%" y="597" width="0.0104%" height="15" fill="rgb(251,170,31)" fg:x="135354" fg:w="51"/><text x="27.8051%" y="607.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="27.5544%" y="677" width="0.0112%" height="15" fill="rgb(207,110,25)" fg:x="135351" fg:w="55"/><text x="27.8044%" y="687.50"></text></g><g><title>__schedule (55 samples, 0.01%)</title><rect x="27.5544%" y="661" width="0.0112%" height="15" fill="rgb(250,54,15)" fg:x="135351" fg:w="55"/><text x="27.8044%" y="671.50"></text></g><g><title>finish_task_switch (54 samples, 0.01%)</title><rect x="27.5546%" y="645" width="0.0110%" height="15" fill="rgb(227,68,33)" fg:x="135352" fg:w="54"/><text x="27.8046%" y="655.50"></text></g><g><title>__GI___wait4 (66 samples, 0.01%)</title><rect x="27.5538%" y="773" width="0.0134%" height="15" fill="rgb(238,34,41)" fg:x="135348" fg:w="66"/><text x="27.8038%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="27.5540%" y="757" width="0.0132%" height="15" fill="rgb(220,11,15)" fg:x="135349" fg:w="65"/><text x="27.8040%" y="767.50"></text></g><g><title>do_syscall_64 (65 samples, 0.01%)</title><rect x="27.5540%" y="741" width="0.0132%" height="15" fill="rgb(246,111,35)" fg:x="135349" fg:w="65"/><text x="27.8040%" y="751.50"></text></g><g><title>__do_sys_wait4 (65 samples, 0.01%)</title><rect x="27.5540%" y="725" width="0.0132%" height="15" fill="rgb(209,88,53)" fg:x="135349" fg:w="65"/><text x="27.8040%" y="735.50"></text></g><g><title>kernel_wait4 (65 samples, 0.01%)</title><rect x="27.5540%" y="709" width="0.0132%" height="15" fill="rgb(231,185,47)" fg:x="135349" fg:w="65"/><text x="27.8040%" y="719.50"></text></g><g><title>do_wait (65 samples, 0.01%)</title><rect x="27.5540%" y="693" width="0.0132%" height="15" fill="rgb(233,154,1)" fg:x="135349" fg:w="65"/><text x="27.8040%" y="703.50"></text></g><g><title>__libc_start_main (264 samples, 0.05%)</title><rect x="27.5221%" y="805" width="0.0537%" height="15" fill="rgb(225,15,46)" fg:x="135192" fg:w="264"/><text x="27.7721%" y="815.50"></text></g><g><title>main (222 samples, 0.05%)</title><rect x="27.5306%" y="789" width="0.0452%" height="15" fill="rgb(211,135,41)" fg:x="135234" fg:w="222"/><text x="27.7806%" y="799.50"></text></g><g><title>_dl_map_segments (54 samples, 0.01%)</title><rect x="27.5776%" y="661" width="0.0110%" height="15" fill="rgb(208,54,0)" fg:x="135465" fg:w="54"/><text x="27.8276%" y="671.50"></text></g><g><title>_dl_map_object_from_fd (77 samples, 0.02%)</title><rect x="27.5772%" y="677" width="0.0157%" height="15" fill="rgb(244,136,14)" fg:x="135463" fg:w="77"/><text x="27.8272%" y="687.50"></text></g><g><title>_dl_catch_exception (92 samples, 0.02%)</title><rect x="27.5762%" y="725" width="0.0187%" height="15" fill="rgb(241,56,14)" fg:x="135458" fg:w="92"/><text x="27.8262%" y="735.50"></text></g><g><title>openaux (92 samples, 0.02%)</title><rect x="27.5762%" y="709" width="0.0187%" height="15" fill="rgb(205,80,24)" fg:x="135458" fg:w="92"/><text x="27.8262%" y="719.50"></text></g><g><title>_dl_map_object (92 samples, 0.02%)</title><rect x="27.5762%" y="693" width="0.0187%" height="15" fill="rgb(220,57,4)" fg:x="135458" fg:w="92"/><text x="27.8262%" y="703.50"></text></g><g><title>_dl_map_object_deps (102 samples, 0.02%)</title><rect x="27.5762%" y="741" width="0.0208%" height="15" fill="rgb(226,193,50)" fg:x="135458" fg:w="102"/><text x="27.8262%" y="751.50"></text></g><g><title>_dl_lookup_symbol_x (154 samples, 0.03%)</title><rect x="27.6106%" y="693" width="0.0314%" height="15" fill="rgb(231,168,22)" fg:x="135627" fg:w="154"/><text x="27.8606%" y="703.50"></text></g><g><title>do_lookup_x (110 samples, 0.02%)</title><rect x="27.6196%" y="677" width="0.0224%" height="15" fill="rgb(254,215,14)" fg:x="135671" fg:w="110"/><text x="27.8696%" y="687.50"></text></g><g><title>elf_machine_rela (177 samples, 0.04%)</title><rect x="27.6064%" y="709" width="0.0360%" height="15" fill="rgb(211,115,16)" fg:x="135606" fg:w="177"/><text x="27.8564%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (209 samples, 0.04%)</title><rect x="27.6011%" y="725" width="0.0425%" height="15" fill="rgb(236,210,16)" fg:x="135580" fg:w="209"/><text x="27.8511%" y="735.50"></text></g><g><title>_dl_relocate_object (218 samples, 0.04%)</title><rect x="27.5998%" y="741" width="0.0444%" height="15" fill="rgb(221,94,12)" fg:x="135574" fg:w="218"/><text x="27.8498%" y="751.50"></text></g><g><title>_start (611 samples, 0.12%)</title><rect x="27.5221%" y="821" width="0.1244%" height="15" fill="rgb(235,218,49)" fg:x="135192" fg:w="611"/><text x="27.7721%" y="831.50"></text></g><g><title>_dl_start (347 samples, 0.07%)</title><rect x="27.5758%" y="805" width="0.0706%" height="15" fill="rgb(217,114,14)" fg:x="135456" fg:w="347"/><text x="27.8258%" y="815.50"></text></g><g><title>_dl_start_final (347 samples, 0.07%)</title><rect x="27.5758%" y="789" width="0.0706%" height="15" fill="rgb(216,145,22)" fg:x="135456" fg:w="347"/><text x="27.8258%" y="799.50"></text></g><g><title>_dl_sysdep_start (347 samples, 0.07%)</title><rect x="27.5758%" y="773" width="0.0706%" height="15" fill="rgb(217,112,39)" fg:x="135456" fg:w="347"/><text x="27.8258%" y="783.50"></text></g><g><title>[ld-2.31.so] (347 samples, 0.07%)</title><rect x="27.5758%" y="757" width="0.0706%" height="15" fill="rgb(225,85,32)" fg:x="135456" fg:w="347"/><text x="27.8258%" y="767.50"></text></g><g><title>asm_exc_page_fault (85 samples, 0.02%)</title><rect x="27.6465%" y="821" width="0.0173%" height="15" fill="rgb(245,209,47)" fg:x="135803" fg:w="85"/><text x="27.8965%" y="831.50"></text></g><g><title>__x64_sys_execve (72 samples, 0.01%)</title><rect x="27.6640%" y="789" width="0.0147%" height="15" fill="rgb(218,220,15)" fg:x="135889" fg:w="72"/><text x="27.9140%" y="799.50"></text></g><g><title>do_execveat_common (72 samples, 0.01%)</title><rect x="27.6640%" y="773" width="0.0147%" height="15" fill="rgb(222,202,31)" fg:x="135889" fg:w="72"/><text x="27.9140%" y="783.50"></text></g><g><title>bprm_execve (72 samples, 0.01%)</title><rect x="27.6640%" y="757" width="0.0147%" height="15" fill="rgb(243,203,4)" fg:x="135889" fg:w="72"/><text x="27.9140%" y="767.50"></text></g><g><title>load_elf_binary (71 samples, 0.01%)</title><rect x="27.6642%" y="741" width="0.0145%" height="15" fill="rgb(237,92,17)" fg:x="135890" fg:w="71"/><text x="27.9142%" y="751.50"></text></g><g><title>mmput (54 samples, 0.01%)</title><rect x="27.6803%" y="757" width="0.0110%" height="15" fill="rgb(231,119,7)" fg:x="135969" fg:w="54"/><text x="27.9303%" y="767.50"></text></g><g><title>exit_mmap (54 samples, 0.01%)</title><rect x="27.6803%" y="741" width="0.0110%" height="15" fill="rgb(237,82,41)" fg:x="135969" fg:w="54"/><text x="27.9303%" y="751.50"></text></g><g><title>__x64_sys_exit (76 samples, 0.02%)</title><rect x="27.6786%" y="789" width="0.0155%" height="15" fill="rgb(226,81,48)" fg:x="135961" fg:w="76"/><text x="27.9286%" y="799.50"></text></g><g><title>do_exit (76 samples, 0.02%)</title><rect x="27.6786%" y="773" width="0.0155%" height="15" fill="rgb(234,70,51)" fg:x="135961" fg:w="76"/><text x="27.9286%" y="783.50"></text></g><g><title>do_syscall_64 (201 samples, 0.04%)</title><rect x="27.6638%" y="805" width="0.0409%" height="15" fill="rgb(251,86,4)" fg:x="135888" fg:w="201"/><text x="27.9138%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (202 samples, 0.04%)</title><rect x="27.6638%" y="821" width="0.0411%" height="15" fill="rgb(244,144,28)" fg:x="135888" fg:w="202"/><text x="27.9138%" y="831.50"></text></g><g><title>linux-sandbox (2,668 samples, 0.54%)</title><rect x="27.1626%" y="837" width="0.5431%" height="15" fill="rgb(232,161,39)" fg:x="133426" fg:w="2668"/><text x="27.4126%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (89 samples, 0.02%)</title><rect x="27.7155%" y="661" width="0.0181%" height="15" fill="rgb(247,34,51)" fg:x="136142" fg:w="89"/><text x="27.9655%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (89 samples, 0.02%)</title><rect x="27.7155%" y="645" width="0.0181%" height="15" fill="rgb(225,132,2)" fg:x="136142" fg:w="89"/><text x="27.9655%" y="655.50"></text></g><g><title>native_write_msr (88 samples, 0.02%)</title><rect x="27.7157%" y="629" width="0.0179%" height="15" fill="rgb(209,159,44)" fg:x="136143" fg:w="88"/><text x="27.9657%" y="639.50"></text></g><g><title>schedule_tail (105 samples, 0.02%)</title><rect x="27.7126%" y="693" width="0.0214%" height="15" fill="rgb(251,214,1)" fg:x="136128" fg:w="105"/><text x="27.9626%" y="703.50"></text></g><g><title>finish_task_switch (93 samples, 0.02%)</title><rect x="27.7151%" y="677" width="0.0189%" height="15" fill="rgb(247,84,47)" fg:x="136140" fg:w="93"/><text x="27.9651%" y="687.50"></text></g><g><title>arch_fork (111 samples, 0.02%)</title><rect x="27.7116%" y="725" width="0.0226%" height="15" fill="rgb(240,111,43)" fg:x="136123" fg:w="111"/><text x="27.9616%" y="735.50"></text></g><g><title>ret_from_fork (106 samples, 0.02%)</title><rect x="27.7126%" y="709" width="0.0216%" height="15" fill="rgb(215,214,35)" fg:x="136128" fg:w="106"/><text x="27.9626%" y="719.50"></text></g><g><title>__libc_fork (114 samples, 0.02%)</title><rect x="27.7112%" y="741" width="0.0232%" height="15" fill="rgb(248,207,23)" fg:x="136121" fg:w="114"/><text x="27.9612%" y="751.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (131 samples, 0.03%)</title><rect x="27.7096%" y="773" width="0.0267%" height="15" fill="rgb(214,186,4)" fg:x="136113" fg:w="131"/><text x="27.9596%" y="783.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (131 samples, 0.03%)</title><rect x="27.7096%" y="757" width="0.0267%" height="15" fill="rgb(220,133,22)" fg:x="136113" fg:w="131"/><text x="27.9596%" y="767.50"></text></g><g><title>__libc_start_main (164 samples, 0.03%)</title><rect x="27.7090%" y="805" width="0.0334%" height="15" fill="rgb(239,134,19)" fg:x="136110" fg:w="164"/><text x="27.9590%" y="815.50"></text></g><g><title>main (161 samples, 0.03%)</title><rect x="27.7096%" y="789" width="0.0328%" height="15" fill="rgb(250,140,9)" fg:x="136113" fg:w="161"/><text x="27.9596%" y="799.50"></text></g><g><title>[ld-2.31.so] (65 samples, 0.01%)</title><rect x="27.7423%" y="757" width="0.0132%" height="15" fill="rgb(225,59,14)" fg:x="136274" fg:w="65"/><text x="27.9923%" y="767.50"></text></g><g><title>_dl_start_final (66 samples, 0.01%)</title><rect x="27.7423%" y="789" width="0.0134%" height="15" fill="rgb(214,152,51)" fg:x="136274" fg:w="66"/><text x="27.9923%" y="799.50"></text></g><g><title>_dl_sysdep_start (66 samples, 0.01%)</title><rect x="27.7423%" y="773" width="0.0134%" height="15" fill="rgb(251,227,43)" fg:x="136274" fg:w="66"/><text x="27.9923%" y="783.50"></text></g><g><title>_start (233 samples, 0.05%)</title><rect x="27.7090%" y="821" width="0.0474%" height="15" fill="rgb(241,96,17)" fg:x="136110" fg:w="233"/><text x="27.9590%" y="831.50"></text></g><g><title>_dl_start (69 samples, 0.01%)</title><rect x="27.7423%" y="805" width="0.0140%" height="15" fill="rgb(234,198,43)" fg:x="136274" fg:w="69"/><text x="27.9923%" y="815.50"></text></g><g><title>process-wrapper (268 samples, 0.05%)</title><rect x="27.7069%" y="837" width="0.0546%" height="15" fill="rgb(220,108,29)" fg:x="136100" fg:w="268"/><text x="27.9569%" y="847.50"></text></g><g><title>do_wait (57 samples, 0.01%)</title><rect x="27.7767%" y="725" width="0.0116%" height="15" fill="rgb(226,163,33)" fg:x="136443" fg:w="57"/><text x="28.0267%" y="735.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (60 samples, 0.01%)</title><rect x="27.7765%" y="805" width="0.0122%" height="15" fill="rgb(205,194,45)" fg:x="136442" fg:w="60"/><text x="28.0265%" y="815.50"></text></g><g><title>__GI___wait4 (59 samples, 0.01%)</title><rect x="27.7767%" y="789" width="0.0120%" height="15" fill="rgb(206,143,44)" fg:x="136443" fg:w="59"/><text x="28.0267%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="27.7767%" y="773" width="0.0120%" height="15" fill="rgb(236,136,36)" fg:x="136443" fg:w="59"/><text x="28.0267%" y="783.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="27.7767%" y="757" width="0.0120%" height="15" fill="rgb(249,172,42)" fg:x="136443" fg:w="59"/><text x="28.0267%" y="767.50"></text></g><g><title>kernel_wait4 (59 samples, 0.01%)</title><rect x="27.7767%" y="741" width="0.0120%" height="15" fill="rgb(216,139,23)" fg:x="136443" fg:w="59"/><text x="28.0267%" y="751.50"></text></g><g><title>[perf-279850.map] (164 samples, 0.03%)</title><rect x="27.7619%" y="821" width="0.0334%" height="15" fill="rgb(207,166,20)" fg:x="136370" fg:w="164"/><text x="28.0119%" y="831.50"></text></g><g><title>process_reaper (174 samples, 0.04%)</title><rect x="27.7615%" y="837" width="0.0354%" height="15" fill="rgb(210,209,22)" fg:x="136368" fg:w="174"/><text x="28.0115%" y="847.50"></text></g><g><title>futex_wait_queue_me (73 samples, 0.01%)</title><rect x="27.9056%" y="645" width="0.0149%" height="15" fill="rgb(232,118,20)" fg:x="137076" fg:w="73"/><text x="28.1556%" y="655.50"></text></g><g><title>schedule (73 samples, 0.01%)</title><rect x="27.9056%" y="629" width="0.0149%" height="15" fill="rgb(238,113,42)" fg:x="137076" fg:w="73"/><text x="28.1556%" y="639.50"></text></g><g><title>__schedule (69 samples, 0.01%)</title><rect x="27.9064%" y="613" width="0.0140%" height="15" fill="rgb(231,42,5)" fg:x="137080" fg:w="69"/><text x="28.1564%" y="623.50"></text></g><g><title>do_syscall_64 (87 samples, 0.02%)</title><rect x="27.9038%" y="709" width="0.0177%" height="15" fill="rgb(243,166,24)" fg:x="137067" fg:w="87"/><text x="28.1538%" y="719.50"></text></g><g><title>__x64_sys_futex (86 samples, 0.02%)</title><rect x="27.9040%" y="693" width="0.0175%" height="15" fill="rgb(237,226,12)" fg:x="137068" fg:w="86"/><text x="28.1540%" y="703.50"></text></g><g><title>do_futex (85 samples, 0.02%)</title><rect x="27.9042%" y="677" width="0.0173%" height="15" fill="rgb(229,133,24)" fg:x="137069" fg:w="85"/><text x="28.1542%" y="687.50"></text></g><g><title>futex_wait (84 samples, 0.02%)</title><rect x="27.9044%" y="661" width="0.0171%" height="15" fill="rgb(238,33,43)" fg:x="137070" fg:w="84"/><text x="28.1544%" y="671.50"></text></g><g><title>__pthread_cond_wait (104 samples, 0.02%)</title><rect x="27.9019%" y="773" width="0.0212%" height="15" fill="rgb(227,59,38)" fg:x="137058" fg:w="104"/><text x="28.1519%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (104 samples, 0.02%)</title><rect x="27.9019%" y="757" width="0.0212%" height="15" fill="rgb(230,97,0)" fg:x="137058" fg:w="104"/><text x="28.1519%" y="767.50"></text></g><g><title>futex_wait_cancelable (101 samples, 0.02%)</title><rect x="27.9026%" y="741" width="0.0206%" height="15" fill="rgb(250,173,50)" fg:x="137061" fg:w="101"/><text x="28.1526%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.02%)</title><rect x="27.9036%" y="725" width="0.0195%" height="15" fill="rgb(240,15,50)" fg:x="137066" fg:w="96"/><text x="28.1536%" y="735.50"></text></g><g><title>Parker::park (127 samples, 0.03%)</title><rect x="27.8995%" y="789" width="0.0259%" height="15" fill="rgb(221,93,22)" fg:x="137046" fg:w="127"/><text x="28.1495%" y="799.50"></text></g><g><title>Unsafe_Park (140 samples, 0.03%)</title><rect x="27.8979%" y="805" width="0.0285%" height="15" fill="rgb(245,180,53)" fg:x="137038" fg:w="140"/><text x="28.1479%" y="815.50"></text></g><g><title>[perf-279850.map] (626 samples, 0.13%)</title><rect x="27.7993%" y="821" width="0.1274%" height="15" fill="rgb(231,88,51)" fg:x="136554" fg:w="626"/><text x="28.0493%" y="831.50"></text></g><g><title>profile-writer- (660 samples, 0.13%)</title><rect x="27.7969%" y="837" width="0.1344%" height="15" fill="rgb(240,58,21)" fg:x="136542" fg:w="660"/><text x="28.0469%" y="847.50"></text></g><g><title>[python3.9] (59 samples, 0.01%)</title><rect x="27.9476%" y="805" width="0.0120%" height="15" fill="rgb(237,21,10)" fg:x="137282" fg:w="59"/><text x="28.1976%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (56 samples, 0.01%)</title><rect x="27.9744%" y="789" width="0.0114%" height="15" fill="rgb(218,43,11)" fg:x="137414" fg:w="56"/><text x="28.2244%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (114 samples, 0.02%)</title><rect x="27.9628%" y="805" width="0.0232%" height="15" fill="rgb(218,221,29)" fg:x="137357" fg:w="114"/><text x="28.2128%" y="815.50"></text></g><g><title>[unknown] (304 samples, 0.06%)</title><rect x="27.9376%" y="821" width="0.0619%" height="15" fill="rgb(214,118,42)" fg:x="137233" fg:w="304"/><text x="28.1876%" y="831.50"></text></g><g><title>Py_RunMain (76 samples, 0.02%)</title><rect x="27.9995%" y="773" width="0.0155%" height="15" fill="rgb(251,200,26)" fg:x="137537" fg:w="76"/><text x="28.2495%" y="783.50"></text></g><g><title>Py_FinalizeEx (53 samples, 0.01%)</title><rect x="28.0041%" y="757" width="0.0108%" height="15" fill="rgb(237,101,39)" fg:x="137560" fg:w="53"/><text x="28.2541%" y="767.50"></text></g><g><title>Py_InitializeFromConfig (85 samples, 0.02%)</title><rect x="28.0149%" y="741" width="0.0173%" height="15" fill="rgb(251,117,11)" fg:x="137613" fg:w="85"/><text x="28.2649%" y="751.50"></text></g><g><title>[python3.9] (85 samples, 0.02%)</title><rect x="28.0149%" y="725" width="0.0173%" height="15" fill="rgb(216,223,23)" fg:x="137613" fg:w="85"/><text x="28.2649%" y="735.50"></text></g><g><title>[python3.9] (85 samples, 0.02%)</title><rect x="28.0149%" y="709" width="0.0173%" height="15" fill="rgb(251,54,12)" fg:x="137613" fg:w="85"/><text x="28.2649%" y="719.50"></text></g><g><title>__libc_start_main (163 samples, 0.03%)</title><rect x="27.9995%" y="805" width="0.0332%" height="15" fill="rgb(254,176,54)" fg:x="137537" fg:w="163"/><text x="28.2495%" y="815.50"></text></g><g><title>Py_BytesMain (163 samples, 0.03%)</title><rect x="27.9995%" y="789" width="0.0332%" height="15" fill="rgb(210,32,8)" fg:x="137537" fg:w="163"/><text x="28.2495%" y="799.50"></text></g><g><title>[python3.9] (87 samples, 0.02%)</title><rect x="28.0149%" y="773" width="0.0177%" height="15" fill="rgb(235,52,38)" fg:x="137613" fg:w="87"/><text x="28.2649%" y="783.50"></text></g><g><title>[python3.9] (87 samples, 0.02%)</title><rect x="28.0149%" y="757" width="0.0177%" height="15" fill="rgb(231,4,44)" fg:x="137613" fg:w="87"/><text x="28.2649%" y="767.50"></text></g><g><title>_start (171 samples, 0.03%)</title><rect x="27.9995%" y="821" width="0.0348%" height="15" fill="rgb(249,2,32)" fg:x="137537" fg:w="171"/><text x="28.2495%" y="831.50"></text></g><g><title>python3 (514 samples, 0.10%)</title><rect x="27.9317%" y="837" width="0.1046%" height="15" fill="rgb(224,65,26)" fg:x="137204" fg:w="514"/><text x="28.1817%" y="847.50"></text></g><g><title>[sed] (59 samples, 0.01%)</title><rect x="28.0487%" y="757" width="0.0120%" height="15" fill="rgb(250,73,40)" fg:x="137779" fg:w="59"/><text x="28.2987%" y="767.50"></text></g><g><title>[sed] (62 samples, 0.01%)</title><rect x="28.0487%" y="773" width="0.0126%" height="15" fill="rgb(253,177,16)" fg:x="137779" fg:w="62"/><text x="28.2987%" y="783.50"></text></g><g><title>[sed] (80 samples, 0.02%)</title><rect x="28.0485%" y="789" width="0.0163%" height="15" fill="rgb(217,32,34)" fg:x="137778" fg:w="80"/><text x="28.2985%" y="799.50"></text></g><g><title>__libc_start_main (99 samples, 0.02%)</title><rect x="28.0485%" y="805" width="0.0202%" height="15" fill="rgb(212,7,10)" fg:x="137778" fg:w="99"/><text x="28.2985%" y="815.50"></text></g><g><title>[sed] (105 samples, 0.02%)</title><rect x="28.0483%" y="821" width="0.0214%" height="15" fill="rgb(245,89,8)" fg:x="137777" fg:w="105"/><text x="28.2983%" y="831.50"></text></g><g><title>determine_info (347 samples, 0.07%)</title><rect x="28.1094%" y="645" width="0.0706%" height="15" fill="rgb(237,16,53)" fg:x="138077" fg:w="347"/><text x="28.3594%" y="655.50"></text></g><g><title>__GI__dl_addr (366 samples, 0.07%)</title><rect x="28.1057%" y="661" width="0.0745%" height="15" fill="rgb(250,204,30)" fg:x="138059" fg:w="366"/><text x="28.3557%" y="671.50"></text></g><g><title>__fopen_internal (403 samples, 0.08%)</title><rect x="28.0990%" y="725" width="0.0820%" height="15" fill="rgb(208,77,27)" fg:x="138026" fg:w="403"/><text x="28.3490%" y="735.50"></text></g><g><title>malloc_hook_ini (370 samples, 0.08%)</title><rect x="28.1057%" y="709" width="0.0753%" height="15" fill="rgb(250,204,28)" fg:x="138059" fg:w="370"/><text x="28.3557%" y="719.50"></text></g><g><title>ptmalloc_init (370 samples, 0.08%)</title><rect x="28.1057%" y="693" width="0.0753%" height="15" fill="rgb(244,63,21)" fg:x="138059" fg:w="370"/><text x="28.3557%" y="703.50"></text></g><g><title>ptmalloc_init (370 samples, 0.08%)</title><rect x="28.1057%" y="677" width="0.0753%" height="15" fill="rgb(236,85,44)" fg:x="138059" fg:w="370"/><text x="28.3557%" y="687.50"></text></g><g><title>[libselinux.so.1] (517 samples, 0.11%)</title><rect x="28.0766%" y="757" width="0.1052%" height="15" fill="rgb(215,98,4)" fg:x="137916" fg:w="517"/><text x="28.3266%" y="767.50"></text></g><g><title>selinuxfs_exists (452 samples, 0.09%)</title><rect x="28.0899%" y="741" width="0.0920%" height="15" fill="rgb(235,38,11)" fg:x="137981" fg:w="452"/><text x="28.3399%" y="751.50"></text></g><g><title>_dl_start_user (564 samples, 0.11%)</title><rect x="28.0762%" y="821" width="0.1148%" height="15" fill="rgb(254,186,25)" fg:x="137914" fg:w="564"/><text x="28.3262%" y="831.50"></text></g><g><title>_dl_init (564 samples, 0.11%)</title><rect x="28.0762%" y="805" width="0.1148%" height="15" fill="rgb(225,55,31)" fg:x="137914" fg:w="564"/><text x="28.3262%" y="815.50"></text></g><g><title>call_init (563 samples, 0.11%)</title><rect x="28.0764%" y="789" width="0.1146%" height="15" fill="rgb(211,15,21)" fg:x="137915" fg:w="563"/><text x="28.3264%" y="799.50"></text></g><g><title>call_init (563 samples, 0.11%)</title><rect x="28.0764%" y="773" width="0.1146%" height="15" fill="rgb(215,187,41)" fg:x="137915" fg:w="563"/><text x="28.3264%" y="783.50"></text></g><g><title>_dl_load_cache_lookup (121 samples, 0.02%)</title><rect x="28.2305%" y="677" width="0.0246%" height="15" fill="rgb(248,69,32)" fg:x="138672" fg:w="121"/><text x="28.4805%" y="687.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="28.2678%" y="613" width="0.0118%" height="15" fill="rgb(252,102,52)" fg:x="138855" fg:w="58"/><text x="28.5178%" y="623.50"></text></g><g><title>do_user_addr_fault (58 samples, 0.01%)</title><rect x="28.2678%" y="597" width="0.0118%" height="15" fill="rgb(253,140,32)" fg:x="138855" fg:w="58"/><text x="28.5178%" y="607.50"></text></g><g><title>handle_mm_fault (53 samples, 0.01%)</title><rect x="28.2688%" y="581" width="0.0108%" height="15" fill="rgb(216,56,42)" fg:x="138860" fg:w="53"/><text x="28.5188%" y="591.50"></text></g><g><title>asm_exc_page_fault (62 samples, 0.01%)</title><rect x="28.2676%" y="629" width="0.0126%" height="15" fill="rgb(216,184,14)" fg:x="138854" fg:w="62"/><text x="28.5176%" y="639.50"></text></g><g><title>[ld-2.31.so] (81 samples, 0.02%)</title><rect x="28.2655%" y="645" width="0.0165%" height="15" fill="rgb(237,187,27)" fg:x="138844" fg:w="81"/><text x="28.5155%" y="655.50"></text></g><g><title>vma_interval_tree_insert (50 samples, 0.01%)</title><rect x="28.3032%" y="469" width="0.0102%" height="15" fill="rgb(219,65,3)" fg:x="139029" fg:w="50"/><text x="28.5532%" y="479.50"></text></g><g><title>__vma_adjust (124 samples, 0.03%)</title><rect x="28.2934%" y="485" width="0.0252%" height="15" fill="rgb(245,83,25)" fg:x="138981" fg:w="124"/><text x="28.5434%" y="495.50"></text></g><g><title>__split_vma (186 samples, 0.04%)</title><rect x="28.2924%" y="501" width="0.0379%" height="15" fill="rgb(214,205,45)" fg:x="138976" fg:w="186"/><text x="28.5424%" y="511.50"></text></g><g><title>vm_area_dup (54 samples, 0.01%)</title><rect x="28.3193%" y="485" width="0.0110%" height="15" fill="rgb(241,20,18)" fg:x="139108" fg:w="54"/><text x="28.5693%" y="495.50"></text></g><g><title>__do_munmap (294 samples, 0.06%)</title><rect x="28.2908%" y="517" width="0.0599%" height="15" fill="rgb(232,163,23)" fg:x="138968" fg:w="294"/><text x="28.5408%" y="527.50"></text></g><g><title>unmap_region (60 samples, 0.01%)</title><rect x="28.3384%" y="501" width="0.0122%" height="15" fill="rgb(214,5,46)" fg:x="139202" fg:w="60"/><text x="28.5884%" y="511.50"></text></g><g><title>perf_iterate_sb (69 samples, 0.01%)</title><rect x="28.3614%" y="501" width="0.0140%" height="15" fill="rgb(229,78,17)" fg:x="139315" fg:w="69"/><text x="28.6114%" y="511.50"></text></g><g><title>perf_iterate_ctx (63 samples, 0.01%)</title><rect x="28.3626%" y="485" width="0.0128%" height="15" fill="rgb(248,89,10)" fg:x="139321" fg:w="63"/><text x="28.6126%" y="495.50"></text></g><g><title>perf_event_mmap (125 samples, 0.03%)</title><rect x="28.3508%" y="517" width="0.0254%" height="15" fill="rgb(248,54,15)" fg:x="139263" fg:w="125"/><text x="28.6008%" y="527.50"></text></g><g><title>vma_link (50 samples, 0.01%)</title><rect x="28.3812%" y="517" width="0.0102%" height="15" fill="rgb(223,116,6)" fg:x="139412" fg:w="50"/><text x="28.6312%" y="527.50"></text></g><g><title>mmap_region (530 samples, 0.11%)</title><rect x="28.2869%" y="533" width="0.1079%" height="15" fill="rgb(205,125,38)" fg:x="138949" fg:w="530"/><text x="28.5369%" y="543.50"></text></g><g><title>do_mmap (545 samples, 0.11%)</title><rect x="28.2847%" y="549" width="0.1109%" height="15" fill="rgb(251,78,38)" fg:x="138938" fg:w="545"/><text x="28.5347%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (562 samples, 0.11%)</title><rect x="28.2837%" y="581" width="0.1144%" height="15" fill="rgb(253,78,28)" fg:x="138933" fg:w="562"/><text x="28.5337%" y="591.50"></text></g><g><title>vm_mmap_pgoff (557 samples, 0.11%)</title><rect x="28.2847%" y="565" width="0.1134%" height="15" fill="rgb(209,120,3)" fg:x="138938" fg:w="557"/><text x="28.5347%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (612 samples, 0.12%)</title><rect x="28.2835%" y="613" width="0.1246%" height="15" fill="rgb(238,229,9)" fg:x="138932" fg:w="612"/><text x="28.5335%" y="623.50"></text></g><g><title>do_syscall_64 (612 samples, 0.12%)</title><rect x="28.2835%" y="597" width="0.1246%" height="15" fill="rgb(253,159,18)" fg:x="138932" fg:w="612"/><text x="28.5335%" y="607.50"></text></g><g><title>__mmap64 (624 samples, 0.13%)</title><rect x="28.2820%" y="645" width="0.1270%" height="15" fill="rgb(244,42,34)" fg:x="138925" fg:w="624"/><text x="28.5320%" y="655.50"></text></g><g><title>__mmap64 (624 samples, 0.13%)</title><rect x="28.2820%" y="629" width="0.1270%" height="15" fill="rgb(224,8,7)" fg:x="138925" fg:w="624"/><text x="28.5320%" y="639.50"></text></g><g><title>_dl_map_segments (709 samples, 0.14%)</title><rect x="28.2649%" y="661" width="0.1443%" height="15" fill="rgb(210,201,45)" fg:x="138841" fg:w="709"/><text x="28.5149%" y="671.50"></text></g><g><title>asm_exc_page_fault (50 samples, 0.01%)</title><rect x="28.4168%" y="645" width="0.0102%" height="15" fill="rgb(252,185,21)" fg:x="139587" fg:w="50"/><text x="28.6668%" y="655.50"></text></g><g><title>_dl_setup_hash (66 samples, 0.01%)</title><rect x="28.4146%" y="661" width="0.0134%" height="15" fill="rgb(223,131,1)" fg:x="139576" fg:w="66"/><text x="28.6646%" y="671.50"></text></g><g><title>handle_mm_fault (69 samples, 0.01%)</title><rect x="28.4347%" y="597" width="0.0140%" height="15" fill="rgb(245,141,16)" fg:x="139675" fg:w="69"/><text x="28.6847%" y="607.50"></text></g><g><title>exc_page_fault (75 samples, 0.02%)</title><rect x="28.4337%" y="629" width="0.0153%" height="15" fill="rgb(229,55,45)" fg:x="139670" fg:w="75"/><text x="28.6837%" y="639.50"></text></g><g><title>do_user_addr_fault (75 samples, 0.02%)</title><rect x="28.4337%" y="613" width="0.0153%" height="15" fill="rgb(208,92,15)" fg:x="139670" fg:w="75"/><text x="28.6837%" y="623.50"></text></g><g><title>asm_exc_page_fault (76 samples, 0.02%)</title><rect x="28.4337%" y="645" width="0.0155%" height="15" fill="rgb(234,185,47)" fg:x="139670" fg:w="76"/><text x="28.6837%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (964 samples, 0.20%)</title><rect x="28.2552%" y="677" width="0.1962%" height="15" fill="rgb(253,104,50)" fg:x="138793" fg:w="964"/><text x="28.5052%" y="687.50"></text></g><g><title>elf_get_dynamic_info (115 samples, 0.02%)</title><rect x="28.4280%" y="661" width="0.0234%" height="15" fill="rgb(205,70,7)" fg:x="139642" fg:w="115"/><text x="28.6780%" y="671.50"></text></g><g><title>do_filp_open (77 samples, 0.02%)</title><rect x="28.4575%" y="581" width="0.0157%" height="15" fill="rgb(240,178,43)" fg:x="139787" fg:w="77"/><text x="28.7075%" y="591.50"></text></g><g><title>path_openat (76 samples, 0.02%)</title><rect x="28.4577%" y="565" width="0.0155%" height="15" fill="rgb(214,112,2)" fg:x="139788" fg:w="76"/><text x="28.7077%" y="575.50"></text></g><g><title>do_syscall_64 (103 samples, 0.02%)</title><rect x="28.4557%" y="629" width="0.0210%" height="15" fill="rgb(206,46,17)" fg:x="139778" fg:w="103"/><text x="28.7057%" y="639.50"></text></g><g><title>__x64_sys_openat (103 samples, 0.02%)</title><rect x="28.4557%" y="613" width="0.0210%" height="15" fill="rgb(225,220,16)" fg:x="139778" fg:w="103"/><text x="28.7057%" y="623.50"></text></g><g><title>do_sys_openat2 (100 samples, 0.02%)</title><rect x="28.4563%" y="597" width="0.0204%" height="15" fill="rgb(238,65,40)" fg:x="139781" fg:w="100"/><text x="28.7063%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (105 samples, 0.02%)</title><rect x="28.4555%" y="645" width="0.0214%" height="15" fill="rgb(230,151,21)" fg:x="139777" fg:w="105"/><text x="28.7055%" y="655.50"></text></g><g><title>__GI___open64_nocancel (108 samples, 0.02%)</title><rect x="28.4551%" y="661" width="0.0220%" height="15" fill="rgb(218,58,49)" fg:x="139775" fg:w="108"/><text x="28.7051%" y="671.50"></text></g><g><title>open_verify (132 samples, 0.03%)</title><rect x="28.4545%" y="677" width="0.0269%" height="15" fill="rgb(219,179,14)" fg:x="139772" fg:w="132"/><text x="28.7045%" y="687.50"></text></g><g><title>_dl_catch_exception (1,281 samples, 0.26%)</title><rect x="28.2267%" y="725" width="0.2608%" height="15" fill="rgb(223,72,1)" fg:x="138653" fg:w="1281"/><text x="28.4767%" y="735.50"></text></g><g><title>openaux (1,277 samples, 0.26%)</title><rect x="28.2275%" y="709" width="0.2600%" height="15" fill="rgb(238,126,10)" fg:x="138657" fg:w="1277"/><text x="28.4775%" y="719.50"></text></g><g><title>_dl_map_object (1,277 samples, 0.26%)</title><rect x="28.2275%" y="693" width="0.2600%" height="15" fill="rgb(224,206,38)" fg:x="138657" fg:w="1277"/><text x="28.4775%" y="703.50"></text></g><g><title>_dl_map_object_deps (1,315 samples, 0.27%)</title><rect x="28.2236%" y="741" width="0.2677%" height="15" fill="rgb(212,201,54)" fg:x="138638" fg:w="1315"/><text x="28.4736%" y="751.50"></text></g><g><title>mprotect_fixup (73 samples, 0.01%)</title><rect x="28.5025%" y="629" width="0.0149%" height="15" fill="rgb(218,154,48)" fg:x="140008" fg:w="73"/><text x="28.7525%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.02%)</title><rect x="28.5019%" y="693" width="0.0159%" height="15" fill="rgb(232,93,24)" fg:x="140005" fg:w="78"/><text x="28.7519%" y="703.50"></text></g><g><title>do_syscall_64 (78 samples, 0.02%)</title><rect x="28.5019%" y="677" width="0.0159%" height="15" fill="rgb(245,30,21)" fg:x="140005" fg:w="78"/><text x="28.7519%" y="687.50"></text></g><g><title>__x64_sys_mprotect (78 samples, 0.02%)</title><rect x="28.5019%" y="661" width="0.0159%" height="15" fill="rgb(242,148,29)" fg:x="140005" fg:w="78"/><text x="28.7519%" y="671.50"></text></g><g><title>do_mprotect_pkey (78 samples, 0.02%)</title><rect x="28.5019%" y="645" width="0.0159%" height="15" fill="rgb(244,153,54)" fg:x="140005" fg:w="78"/><text x="28.7519%" y="655.50"></text></g><g><title>_dl_protect_relro (80 samples, 0.02%)</title><rect x="28.5017%" y="725" width="0.0163%" height="15" fill="rgb(252,87,22)" fg:x="140004" fg:w="80"/><text x="28.7517%" y="735.50"></text></g><g><title>__mprotect (80 samples, 0.02%)</title><rect x="28.5017%" y="709" width="0.0163%" height="15" fill="rgb(210,51,29)" fg:x="140004" fg:w="80"/><text x="28.7517%" y="719.50"></text></g><g><title>dl_new_hash (54 samples, 0.01%)</title><rect x="28.5361%" y="677" width="0.0110%" height="15" fill="rgb(242,136,47)" fg:x="140173" fg:w="54"/><text x="28.7861%" y="687.50"></text></g><g><title>check_match (63 samples, 0.01%)</title><rect x="28.5778%" y="661" width="0.0128%" height="15" fill="rgb(238,68,4)" fg:x="140378" fg:w="63"/><text x="28.8278%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (283 samples, 0.06%)</title><rect x="28.5337%" y="693" width="0.0576%" height="15" fill="rgb(242,161,30)" fg:x="140161" fg:w="283"/><text x="28.7837%" y="703.50"></text></g><g><title>do_lookup_x (217 samples, 0.04%)</title><rect x="28.5471%" y="677" width="0.0442%" height="15" fill="rgb(218,58,44)" fg:x="140227" fg:w="217"/><text x="28.7971%" y="687.50"></text></g><g><title>elf_machine_rela (318 samples, 0.06%)</title><rect x="28.5271%" y="709" width="0.0647%" height="15" fill="rgb(252,125,32)" fg:x="140129" fg:w="318"/><text x="28.7771%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (426 samples, 0.09%)</title><rect x="28.5180%" y="725" width="0.0867%" height="15" fill="rgb(219,178,0)" fg:x="140084" fg:w="426"/><text x="28.7680%" y="735.50"></text></g><g><title>elf_machine_rela_relative (63 samples, 0.01%)</title><rect x="28.5919%" y="709" width="0.0128%" height="15" fill="rgb(213,152,7)" fg:x="140447" fg:w="63"/><text x="28.8419%" y="719.50"></text></g><g><title>_dl_relocate_object (515 samples, 0.10%)</title><rect x="28.5009%" y="741" width="0.1048%" height="15" fill="rgb(249,109,34)" fg:x="140000" fg:w="515"/><text x="28.7509%" y="751.50"></text></g><g><title>do_user_addr_fault (62 samples, 0.01%)</title><rect x="28.6132%" y="709" width="0.0126%" height="15" fill="rgb(232,96,21)" fg:x="140552" fg:w="62"/><text x="28.8632%" y="719.50"></text></g><g><title>handle_mm_fault (50 samples, 0.01%)</title><rect x="28.6157%" y="693" width="0.0102%" height="15" fill="rgb(228,27,39)" fg:x="140564" fg:w="50"/><text x="28.8657%" y="703.50"></text></g><g><title>asm_exc_page_fault (65 samples, 0.01%)</title><rect x="28.6130%" y="741" width="0.0132%" height="15" fill="rgb(211,182,52)" fg:x="140551" fg:w="65"/><text x="28.8630%" y="751.50"></text></g><g><title>exc_page_fault (64 samples, 0.01%)</title><rect x="28.6132%" y="725" width="0.0130%" height="15" fill="rgb(234,178,38)" fg:x="140552" fg:w="64"/><text x="28.8632%" y="735.50"></text></g><g><title>[ld-2.31.so] (2,105 samples, 0.43%)</title><rect x="28.2055%" y="757" width="0.4285%" height="15" fill="rgb(221,111,3)" fg:x="138549" fg:w="2105"/><text x="28.4555%" y="767.50"></text></g><g><title>do_user_addr_fault (55 samples, 0.01%)</title><rect x="28.6383%" y="725" width="0.0112%" height="15" fill="rgb(228,175,21)" fg:x="140675" fg:w="55"/><text x="28.8883%" y="735.50"></text></g><g><title>handle_mm_fault (53 samples, 0.01%)</title><rect x="28.6387%" y="709" width="0.0108%" height="15" fill="rgb(228,174,43)" fg:x="140677" fg:w="53"/><text x="28.8887%" y="719.50"></text></g><g><title>asm_exc_page_fault (57 samples, 0.01%)</title><rect x="28.6381%" y="757" width="0.0116%" height="15" fill="rgb(211,191,0)" fg:x="140674" fg:w="57"/><text x="28.8881%" y="767.50"></text></g><g><title>exc_page_fault (57 samples, 0.01%)</title><rect x="28.6381%" y="741" width="0.0116%" height="15" fill="rgb(253,117,3)" fg:x="140674" fg:w="57"/><text x="28.8881%" y="751.50"></text></g><g><title>_dl_start_final (2,253 samples, 0.46%)</title><rect x="28.2018%" y="789" width="0.4587%" height="15" fill="rgb(241,127,19)" fg:x="138531" fg:w="2253"/><text x="28.4518%" y="799.50"></text></g><g><title>_dl_sysdep_start (2,252 samples, 0.46%)</title><rect x="28.2020%" y="773" width="0.4585%" height="15" fill="rgb(218,103,12)" fg:x="138532" fg:w="2252"/><text x="28.4520%" y="783.50"></text></g><g><title>_dl_start (2,303 samples, 0.47%)</title><rect x="28.2014%" y="805" width="0.4688%" height="15" fill="rgb(236,214,43)" fg:x="138529" fg:w="2303"/><text x="28.4514%" y="815.50"></text></g><g><title>_start (2,333 samples, 0.47%)</title><rect x="28.2004%" y="821" width="0.4749%" height="15" fill="rgb(244,144,19)" fg:x="138524" fg:w="2333"/><text x="28.4504%" y="831.50"></text></g><g><title>asm_exc_page_fault (177 samples, 0.04%)</title><rect x="28.6753%" y="821" width="0.0360%" height="15" fill="rgb(246,188,10)" fg:x="140857" fg:w="177"/><text x="28.9253%" y="831.50"></text></g><g><title>__x64_sys_execve (109 samples, 0.02%)</title><rect x="28.7116%" y="789" width="0.0222%" height="15" fill="rgb(212,193,33)" fg:x="141035" fg:w="109"/><text x="28.9616%" y="799.50"></text></g><g><title>do_execveat_common (109 samples, 0.02%)</title><rect x="28.7116%" y="773" width="0.0222%" height="15" fill="rgb(241,51,29)" fg:x="141035" fg:w="109"/><text x="28.9616%" y="783.50"></text></g><g><title>bprm_execve (109 samples, 0.02%)</title><rect x="28.7116%" y="757" width="0.0222%" height="15" fill="rgb(211,58,19)" fg:x="141035" fg:w="109"/><text x="28.9616%" y="767.50"></text></g><g><title>load_elf_binary (109 samples, 0.02%)</title><rect x="28.7116%" y="741" width="0.0222%" height="15" fill="rgb(229,111,26)" fg:x="141035" fg:w="109"/><text x="28.9616%" y="751.50"></text></g><g><title>mmput (147 samples, 0.03%)</title><rect x="28.7344%" y="741" width="0.0299%" height="15" fill="rgb(213,115,40)" fg:x="141147" fg:w="147"/><text x="28.9844%" y="751.50"></text></g><g><title>exit_mmap (146 samples, 0.03%)</title><rect x="28.7346%" y="725" width="0.0297%" height="15" fill="rgb(209,56,44)" fg:x="141148" fg:w="146"/><text x="28.9846%" y="735.50"></text></g><g><title>__x64_sys_exit_group (182 samples, 0.04%)</title><rect x="28.7338%" y="789" width="0.0371%" height="15" fill="rgb(230,108,32)" fg:x="141144" fg:w="182"/><text x="28.9838%" y="799.50"></text></g><g><title>do_group_exit (182 samples, 0.04%)</title><rect x="28.7338%" y="773" width="0.0371%" height="15" fill="rgb(216,165,31)" fg:x="141144" fg:w="182"/><text x="28.9838%" y="783.50"></text></g><g><title>do_exit (182 samples, 0.04%)</title><rect x="28.7338%" y="757" width="0.0371%" height="15" fill="rgb(218,122,21)" fg:x="141144" fg:w="182"/><text x="28.9838%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (293 samples, 0.06%)</title><rect x="28.7114%" y="821" width="0.0596%" height="15" fill="rgb(223,224,47)" fg:x="141034" fg:w="293"/><text x="28.9614%" y="831.50"></text></g><g><title>do_syscall_64 (292 samples, 0.06%)</title><rect x="28.7116%" y="805" width="0.0594%" height="15" fill="rgb(238,102,44)" fg:x="141035" fg:w="292"/><text x="28.9616%" y="815.50"></text></g><g><title>sed (3,611 samples, 0.74%)</title><rect x="28.0363%" y="837" width="0.7351%" height="15" fill="rgb(236,46,40)" fg:x="137718" fg:w="3611"/><text x="28.2863%" y="847.50"></text></g><g><title>[anon] (785 samples, 0.16%)</title><rect x="28.7765%" y="821" width="0.1598%" height="15" fill="rgb(247,202,50)" fg:x="141354" fg:w="785"/><text x="29.0265%" y="831.50"></text></g><g><title>do_syscall_64 (82 samples, 0.02%)</title><rect x="29.1456%" y="773" width="0.0167%" height="15" fill="rgb(209,99,20)" fg:x="143167" fg:w="82"/><text x="29.3956%" y="783.50"></text></g><g><title>__x64_sys_close (77 samples, 0.02%)</title><rect x="29.1466%" y="757" width="0.0157%" height="15" fill="rgb(252,27,34)" fg:x="143172" fg:w="77"/><text x="29.3966%" y="767.50"></text></g><g><title>filp_close (54 samples, 0.01%)</title><rect x="29.1513%" y="741" width="0.0110%" height="15" fill="rgb(215,206,23)" fg:x="143195" fg:w="54"/><text x="29.4013%" y="751.50"></text></g><g><title>btrfs_release_file (78 samples, 0.02%)</title><rect x="29.1757%" y="709" width="0.0159%" height="15" fill="rgb(212,135,36)" fg:x="143315" fg:w="78"/><text x="29.4257%" y="719.50"></text></g><g><title>kfree (68 samples, 0.01%)</title><rect x="29.1778%" y="693" width="0.0138%" height="15" fill="rgb(240,189,1)" fg:x="143325" fg:w="68"/><text x="29.4278%" y="703.50"></text></g><g><title>__fput (162 samples, 0.03%)</title><rect x="29.1702%" y="725" width="0.0330%" height="15" fill="rgb(242,56,20)" fg:x="143288" fg:w="162"/><text x="29.4202%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (313 samples, 0.06%)</title><rect x="29.1454%" y="789" width="0.0637%" height="15" fill="rgb(247,132,33)" fg:x="143166" fg:w="313"/><text x="29.3954%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (230 samples, 0.05%)</title><rect x="29.1623%" y="773" width="0.0468%" height="15" fill="rgb(208,149,11)" fg:x="143249" fg:w="230"/><text x="29.4123%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (228 samples, 0.05%)</title><rect x="29.1627%" y="757" width="0.0464%" height="15" fill="rgb(211,33,11)" fg:x="143251" fg:w="228"/><text x="29.4127%" y="767.50"></text></g><g><title>task_work_run (199 samples, 0.04%)</title><rect x="29.1686%" y="741" width="0.0405%" height="15" fill="rgb(221,29,38)" fg:x="143280" fg:w="199"/><text x="29.4186%" y="751.50"></text></g><g><title>__GI___close_nocancel (335 samples, 0.07%)</title><rect x="29.1417%" y="805" width="0.0682%" height="15" fill="rgb(206,182,49)" fg:x="143148" fg:w="335"/><text x="29.3917%" y="815.50"></text></g><g><title>__GI___libc_free (185 samples, 0.04%)</title><rect x="29.2099%" y="805" width="0.0377%" height="15" fill="rgb(216,140,1)" fg:x="143483" fg:w="185"/><text x="29.4599%" y="815.50"></text></g><g><title>lookup_fast (54 samples, 0.01%)</title><rect x="29.2673%" y="661" width="0.0110%" height="15" fill="rgb(232,57,40)" fg:x="143765" fg:w="54"/><text x="29.5173%" y="671.50"></text></g><g><title>link_path_walk.part.0 (117 samples, 0.02%)</title><rect x="29.2559%" y="693" width="0.0238%" height="15" fill="rgb(224,186,18)" fg:x="143709" fg:w="117"/><text x="29.5059%" y="703.50"></text></g><g><title>walk_component (65 samples, 0.01%)</title><rect x="29.2665%" y="677" width="0.0132%" height="15" fill="rgb(215,121,11)" fg:x="143761" fg:w="65"/><text x="29.5165%" y="687.50"></text></g><g><title>path_lookupat (159 samples, 0.03%)</title><rect x="29.2545%" y="709" width="0.0324%" height="15" fill="rgb(245,147,10)" fg:x="143702" fg:w="159"/><text x="29.5045%" y="719.50"></text></g><g><title>filename_lookup (167 samples, 0.03%)</title><rect x="29.2531%" y="725" width="0.0340%" height="15" fill="rgb(238,153,13)" fg:x="143695" fg:w="167"/><text x="29.5031%" y="735.50"></text></g><g><title>__do_sys_newlstat (251 samples, 0.05%)</title><rect x="29.2484%" y="757" width="0.0511%" height="15" fill="rgb(233,108,0)" fg:x="143672" fg:w="251"/><text x="29.4984%" y="767.50"></text></g><g><title>vfs_statx (238 samples, 0.05%)</title><rect x="29.2511%" y="741" width="0.0485%" height="15" fill="rgb(212,157,17)" fg:x="143685" fg:w="238"/><text x="29.5011%" y="751.50"></text></g><g><title>do_syscall_64 (255 samples, 0.05%)</title><rect x="29.2484%" y="773" width="0.0519%" height="15" fill="rgb(225,213,38)" fg:x="143672" fg:w="255"/><text x="29.4984%" y="783.50"></text></g><g><title>__GI___lxstat (262 samples, 0.05%)</title><rect x="29.2476%" y="805" width="0.0533%" height="15" fill="rgb(248,16,11)" fg:x="143668" fg:w="262"/><text x="29.4976%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (259 samples, 0.05%)</title><rect x="29.2482%" y="789" width="0.0527%" height="15" fill="rgb(241,33,4)" fg:x="143671" fg:w="259"/><text x="29.4982%" y="799.50"></text></g><g><title>dput (54 samples, 0.01%)</title><rect x="29.3099%" y="741" width="0.0110%" height="15" fill="rgb(222,26,43)" fg:x="143974" fg:w="54"/><text x="29.5599%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (85 samples, 0.02%)</title><rect x="29.3632%" y="645" width="0.0173%" height="15" fill="rgb(243,29,36)" fg:x="144236" fg:w="85"/><text x="29.6132%" y="655.50"></text></g><g><title>__radix_tree_lookup (77 samples, 0.02%)</title><rect x="29.3942%" y="613" width="0.0157%" height="15" fill="rgb(241,9,27)" fg:x="144388" fg:w="77"/><text x="29.6442%" y="623.50"></text></g><g><title>find_extent_buffer (124 samples, 0.03%)</title><rect x="29.3891%" y="629" width="0.0252%" height="15" fill="rgb(205,117,26)" fg:x="144363" fg:w="124"/><text x="29.6391%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (185 samples, 0.04%)</title><rect x="29.3805%" y="645" width="0.0377%" height="15" fill="rgb(209,80,39)" fg:x="144321" fg:w="185"/><text x="29.6305%" y="655.50"></text></g><g><title>btrfs_search_slot (432 samples, 0.09%)</title><rect x="29.3323%" y="661" width="0.0879%" height="15" fill="rgb(239,155,6)" fg:x="144084" fg:w="432"/><text x="29.5823%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (453 samples, 0.09%)</title><rect x="29.3317%" y="677" width="0.0922%" height="15" fill="rgb(212,104,12)" fg:x="144081" fg:w="453"/><text x="29.5817%" y="687.50"></text></g><g><title>btrfs_lookup (525 samples, 0.11%)</title><rect x="29.3225%" y="709" width="0.1069%" height="15" fill="rgb(234,204,3)" fg:x="144036" fg:w="525"/><text x="29.5725%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (525 samples, 0.11%)</title><rect x="29.3225%" y="693" width="0.1069%" height="15" fill="rgb(251,218,7)" fg:x="144036" fg:w="525"/><text x="29.5725%" y="703.50"></text></g><g><title>kmem_cache_alloc (80 samples, 0.02%)</title><rect x="29.4314%" y="677" width="0.0163%" height="15" fill="rgb(221,81,32)" fg:x="144571" fg:w="80"/><text x="29.6814%" y="687.50"></text></g><g><title>__d_alloc (89 samples, 0.02%)</title><rect x="29.4306%" y="693" width="0.0181%" height="15" fill="rgb(214,152,26)" fg:x="144567" fg:w="89"/><text x="29.6806%" y="703.50"></text></g><g><title>d_alloc (97 samples, 0.02%)</title><rect x="29.4294%" y="709" width="0.0197%" height="15" fill="rgb(223,22,3)" fg:x="144561" fg:w="97"/><text x="29.6794%" y="719.50"></text></g><g><title>__lookup_hash (700 samples, 0.14%)</title><rect x="29.3221%" y="725" width="0.1425%" height="15" fill="rgb(207,174,7)" fg:x="144034" fg:w="700"/><text x="29.5721%" y="735.50"></text></g><g><title>lookup_dcache (54 samples, 0.01%)</title><rect x="29.4536%" y="709" width="0.0110%" height="15" fill="rgb(224,19,52)" fg:x="144680" fg:w="54"/><text x="29.7036%" y="719.50"></text></g><g><title>d_lookup (54 samples, 0.01%)</title><rect x="29.4536%" y="693" width="0.0110%" height="15" fill="rgb(228,24,14)" fg:x="144680" fg:w="54"/><text x="29.7036%" y="703.50"></text></g><g><title>inode_permission.part.0 (113 samples, 0.02%)</title><rect x="29.4903%" y="677" width="0.0230%" height="15" fill="rgb(230,153,43)" fg:x="144860" fg:w="113"/><text x="29.7403%" y="687.50"></text></g><g><title>lookup_fast (224 samples, 0.05%)</title><rect x="29.5210%" y="661" width="0.0456%" height="15" fill="rgb(231,106,12)" fg:x="145011" fg:w="224"/><text x="29.7710%" y="671.50"></text></g><g><title>__d_lookup_rcu (179 samples, 0.04%)</title><rect x="29.5302%" y="645" width="0.0364%" height="15" fill="rgb(215,92,2)" fg:x="145056" fg:w="179"/><text x="29.7802%" y="655.50"></text></g><g><title>link_path_walk.part.0 (495 samples, 0.10%)</title><rect x="29.4738%" y="693" width="0.1008%" height="15" fill="rgb(249,143,25)" fg:x="144779" fg:w="495"/><text x="29.7238%" y="703.50"></text></g><g><title>walk_component (289 samples, 0.06%)</title><rect x="29.5157%" y="677" width="0.0588%" height="15" fill="rgb(252,7,35)" fg:x="144985" fg:w="289"/><text x="29.7657%" y="687.50"></text></g><g><title>filename_parentat (552 samples, 0.11%)</title><rect x="29.4654%" y="725" width="0.1124%" height="15" fill="rgb(216,69,40)" fg:x="144738" fg:w="552"/><text x="29.7154%" y="735.50"></text></g><g><title>path_parentat (547 samples, 0.11%)</title><rect x="29.4664%" y="709" width="0.1114%" height="15" fill="rgb(240,36,33)" fg:x="144743" fg:w="547"/><text x="29.7164%" y="719.50"></text></g><g><title>filename_create (1,285 samples, 0.26%)</title><rect x="29.3209%" y="741" width="0.2616%" height="15" fill="rgb(231,128,14)" fg:x="144028" fg:w="1285"/><text x="29.5709%" y="751.50"></text></g><g><title>kmem_cache_alloc (60 samples, 0.01%)</title><rect x="29.5829%" y="725" width="0.0122%" height="15" fill="rgb(245,143,14)" fg:x="145315" fg:w="60"/><text x="29.8329%" y="735.50"></text></g><g><title>getname_flags.part.0 (108 samples, 0.02%)</title><rect x="29.5825%" y="741" width="0.0220%" height="15" fill="rgb(222,130,28)" fg:x="145313" fg:w="108"/><text x="29.8325%" y="751.50"></text></g><g><title>__btrfs_end_transaction (62 samples, 0.01%)</title><rect x="29.6167%" y="709" width="0.0126%" height="15" fill="rgb(212,10,48)" fg:x="145481" fg:w="62"/><text x="29.8667%" y="719.50"></text></g><g><title>btrfs_insert_delayed_dir_index (152 samples, 0.03%)</title><rect x="29.6350%" y="677" width="0.0309%" height="15" fill="rgb(254,118,45)" fg:x="145571" fg:w="152"/><text x="29.8850%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (96 samples, 0.02%)</title><rect x="29.7052%" y="629" width="0.0195%" height="15" fill="rgb(228,6,45)" fg:x="145916" fg:w="96"/><text x="29.9552%" y="639.50"></text></g><g><title>find_extent_buffer (81 samples, 0.02%)</title><rect x="29.7325%" y="613" width="0.0165%" height="15" fill="rgb(241,18,35)" fg:x="146050" fg:w="81"/><text x="29.9825%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (140 samples, 0.03%)</title><rect x="29.7248%" y="629" width="0.0285%" height="15" fill="rgb(227,214,53)" fg:x="146012" fg:w="140"/><text x="29.9748%" y="639.50"></text></g><g><title>split_leaf (59 samples, 0.01%)</title><rect x="29.7533%" y="629" width="0.0120%" height="15" fill="rgb(224,107,51)" fg:x="146152" fg:w="59"/><text x="30.0033%" y="639.50"></text></g><g><title>btrfs_search_slot (425 samples, 0.09%)</title><rect x="29.6833%" y="645" width="0.0865%" height="15" fill="rgb(248,60,28)" fg:x="145808" fg:w="425"/><text x="29.9333%" y="655.50"></text></g><g><title>btrfs_get_token_32 (148 samples, 0.03%)</title><rect x="29.7804%" y="629" width="0.0301%" height="15" fill="rgb(249,101,23)" fg:x="146285" fg:w="148"/><text x="30.0304%" y="639.50"></text></g><g><title>btrfs_set_token_32 (152 samples, 0.03%)</title><rect x="29.8178%" y="629" width="0.0309%" height="15" fill="rgb(228,51,19)" fg:x="146469" fg:w="152"/><text x="30.0678%" y="639.50"></text></g><g><title>memcpy_extent_buffer (53 samples, 0.01%)</title><rect x="29.8498%" y="629" width="0.0108%" height="15" fill="rgb(213,20,6)" fg:x="146626" fg:w="53"/><text x="30.0998%" y="639.50"></text></g><g><title>insert_with_overflow (938 samples, 0.19%)</title><rect x="29.6804%" y="677" width="0.1910%" height="15" fill="rgb(212,124,10)" fg:x="145794" fg:w="938"/><text x="29.9304%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (928 samples, 0.19%)</title><rect x="29.6824%" y="661" width="0.1889%" height="15" fill="rgb(248,3,40)" fg:x="145804" fg:w="928"/><text x="29.9324%" y="671.50"></text></g><g><title>setup_items_for_insert (499 samples, 0.10%)</title><rect x="29.7698%" y="645" width="0.1016%" height="15" fill="rgb(223,178,23)" fg:x="146233" fg:w="499"/><text x="30.0198%" y="655.50"></text></g><g><title>btrfs_insert_dir_item (1,218 samples, 0.25%)</title><rect x="29.6322%" y="693" width="0.2480%" height="15" fill="rgb(240,132,45)" fg:x="145557" fg:w="1218"/><text x="29.8822%" y="703.50"></text></g><g><title>btrfs_update_inode (65 samples, 0.01%)</title><rect x="29.8801%" y="693" width="0.0132%" height="15" fill="rgb(245,164,36)" fg:x="146775" fg:w="65"/><text x="30.1301%" y="703.50"></text></g><g><title>btrfs_add_link (1,300 samples, 0.26%)</title><rect x="29.6293%" y="709" width="0.2647%" height="15" fill="rgb(231,188,53)" fg:x="145543" fg:w="1300"/><text x="29.8793%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (61 samples, 0.01%)</title><rect x="29.9487%" y="661" width="0.0124%" height="15" fill="rgb(237,198,39)" fg:x="147112" fg:w="61"/><text x="30.1987%" y="671.50"></text></g><g><title>find_extent_buffer (84 samples, 0.02%)</title><rect x="29.9656%" y="645" width="0.0171%" height="15" fill="rgb(223,120,35)" fg:x="147195" fg:w="84"/><text x="30.2156%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (117 samples, 0.02%)</title><rect x="29.9611%" y="661" width="0.0238%" height="15" fill="rgb(253,107,49)" fg:x="147173" fg:w="117"/><text x="30.2111%" y="671.50"></text></g><g><title>__push_leaf_left (72 samples, 0.01%)</title><rect x="29.9986%" y="629" width="0.0147%" height="15" fill="rgb(216,44,31)" fg:x="147357" fg:w="72"/><text x="30.2486%" y="639.50"></text></g><g><title>push_leaf_left (87 samples, 0.02%)</title><rect x="29.9980%" y="645" width="0.0177%" height="15" fill="rgb(253,87,21)" fg:x="147354" fg:w="87"/><text x="30.2480%" y="655.50"></text></g><g><title>split_leaf (153 samples, 0.03%)</title><rect x="29.9850%" y="661" width="0.0311%" height="15" fill="rgb(226,18,2)" fg:x="147290" fg:w="153"/><text x="30.2350%" y="671.50"></text></g><g><title>btrfs_search_slot (487 samples, 0.10%)</title><rect x="29.9255%" y="677" width="0.0991%" height="15" fill="rgb(216,8,46)" fg:x="146998" fg:w="487"/><text x="30.1755%" y="687.50"></text></g><g><title>btrfs_get_token_32 (64 samples, 0.01%)</title><rect x="30.0332%" y="661" width="0.0130%" height="15" fill="rgb(226,140,39)" fg:x="147527" fg:w="64"/><text x="30.2832%" y="671.50"></text></g><g><title>btrfs_set_token_32 (69 samples, 0.01%)</title><rect x="30.0572%" y="661" width="0.0140%" height="15" fill="rgb(221,194,54)" fg:x="147645" fg:w="69"/><text x="30.3072%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (777 samples, 0.16%)</title><rect x="29.9253%" y="693" width="0.1582%" height="15" fill="rgb(213,92,11)" fg:x="146997" fg:w="777"/><text x="30.1753%" y="703.50"></text></g><g><title>setup_items_for_insert (289 samples, 0.06%)</title><rect x="30.0247%" y="677" width="0.0588%" height="15" fill="rgb(229,162,46)" fg:x="147485" fg:w="289"/><text x="30.2747%" y="687.50"></text></g><g><title>fill_inode_item (96 samples, 0.02%)</title><rect x="30.0963%" y="693" width="0.0195%" height="15" fill="rgb(214,111,36)" fg:x="147837" fg:w="96"/><text x="30.3463%" y="703.50"></text></g><g><title>inode_tree_add (135 samples, 0.03%)</title><rect x="30.1169%" y="693" width="0.0275%" height="15" fill="rgb(207,6,21)" fg:x="147938" fg:w="135"/><text x="30.3669%" y="703.50"></text></g><g><title>insert_inode_locked4 (71 samples, 0.01%)</title><rect x="30.1444%" y="693" width="0.0145%" height="15" fill="rgb(213,127,38)" fg:x="148073" fg:w="71"/><text x="30.3944%" y="703.50"></text></g><g><title>inode_insert5 (71 samples, 0.01%)</title><rect x="30.1444%" y="677" width="0.0145%" height="15" fill="rgb(238,118,32)" fg:x="148073" fg:w="71"/><text x="30.3944%" y="687.50"></text></g><g><title>find_inode (60 samples, 0.01%)</title><rect x="30.1466%" y="661" width="0.0122%" height="15" fill="rgb(240,139,39)" fg:x="148084" fg:w="60"/><text x="30.3966%" y="671.50"></text></g><g><title>btrfs_alloc_inode (106 samples, 0.02%)</title><rect x="30.1727%" y="661" width="0.0216%" height="15" fill="rgb(235,10,37)" fg:x="148212" fg:w="106"/><text x="30.4227%" y="671.50"></text></g><g><title>kmem_cache_alloc (83 samples, 0.02%)</title><rect x="30.1773%" y="645" width="0.0169%" height="15" fill="rgb(249,171,38)" fg:x="148235" fg:w="83"/><text x="30.4273%" y="655.50"></text></g><g><title>alloc_inode (139 samples, 0.03%)</title><rect x="30.1722%" y="677" width="0.0283%" height="15" fill="rgb(242,144,32)" fg:x="148210" fg:w="139"/><text x="30.4222%" y="687.50"></text></g><g><title>new_inode (173 samples, 0.04%)</title><rect x="30.1668%" y="693" width="0.0352%" height="15" fill="rgb(217,117,21)" fg:x="148183" fg:w="173"/><text x="30.4168%" y="703.50"></text></g><g><title>btrfs_new_inode (1,452 samples, 0.30%)</title><rect x="29.9084%" y="709" width="0.2956%" height="15" fill="rgb(249,87,1)" fg:x="146914" fg:w="1452"/><text x="30.1584%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (127 samples, 0.03%)</title><rect x="30.2187%" y="677" width="0.0259%" height="15" fill="rgb(248,196,48)" fg:x="148438" fg:w="127"/><text x="30.4687%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (209 samples, 0.04%)</title><rect x="30.2056%" y="693" width="0.0425%" height="15" fill="rgb(251,206,33)" fg:x="148374" fg:w="209"/><text x="30.4556%" y="703.50"></text></g><g><title>btrfs_update_inode (229 samples, 0.05%)</title><rect x="30.2040%" y="709" width="0.0466%" height="15" fill="rgb(232,141,28)" fg:x="148366" fg:w="229"/><text x="30.4540%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (68 samples, 0.01%)</title><rect x="30.2677%" y="693" width="0.0138%" height="15" fill="rgb(209,167,14)" fg:x="148679" fg:w="68"/><text x="30.5177%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (59 samples, 0.01%)</title><rect x="30.2696%" y="677" width="0.0120%" height="15" fill="rgb(225,11,50)" fg:x="148688" fg:w="59"/><text x="30.5196%" y="687.50"></text></g><g><title>__reserve_bytes (59 samples, 0.01%)</title><rect x="30.2696%" y="661" width="0.0120%" height="15" fill="rgb(209,50,20)" fg:x="148688" fg:w="59"/><text x="30.5196%" y="671.50"></text></g><g><title>btrfs_mkdir (3,318 samples, 0.68%)</title><rect x="29.6144%" y="725" width="0.6755%" height="15" fill="rgb(212,17,46)" fg:x="145470" fg:w="3318"/><text x="29.8644%" y="735.50"></text></g><g><title>start_transaction (142 samples, 0.03%)</title><rect x="30.2610%" y="709" width="0.0289%" height="15" fill="rgb(216,101,39)" fg:x="148646" fg:w="142"/><text x="30.5110%" y="719.50"></text></g><g><title>do_mkdirat (4,841 samples, 0.99%)</title><rect x="29.3079%" y="757" width="0.9855%" height="15" fill="rgb(212,228,48)" fg:x="143964" fg:w="4841"/><text x="29.5579%" y="767.50"></text></g><g><title>vfs_mkdir (3,340 samples, 0.68%)</title><rect x="29.6134%" y="741" width="0.6799%" height="15" fill="rgb(250,6,50)" fg:x="145465" fg:w="3340"/><text x="29.8634%" y="751.50"></text></g><g><title>do_syscall_64 (4,846 samples, 0.99%)</title><rect x="29.3074%" y="773" width="0.9865%" height="15" fill="rgb(250,160,48)" fg:x="143962" fg:w="4846"/><text x="29.5574%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,856 samples, 0.99%)</title><rect x="29.3064%" y="789" width="0.9886%" height="15" fill="rgb(244,216,33)" fg:x="143957" fg:w="4856"/><text x="29.5564%" y="799.50"></text></g><g><title>__GI___mkdir (4,887 samples, 0.99%)</title><rect x="29.3009%" y="805" width="0.9949%" height="15" fill="rgb(207,157,5)" fg:x="143930" fg:w="4887"/><text x="29.5509%" y="815.50"></text></g><g><title>btrfs_filldir (423 samples, 0.09%)</title><rect x="30.3834%" y="693" width="0.0861%" height="15" fill="rgb(228,199,8)" fg:x="149247" fg:w="423"/><text x="30.6334%" y="703.50"></text></g><g><title>filldir64 (390 samples, 0.08%)</title><rect x="30.3901%" y="677" width="0.0794%" height="15" fill="rgb(227,80,20)" fg:x="149280" fg:w="390"/><text x="30.6401%" y="687.50"></text></g><g><title>verify_dirent_name (117 samples, 0.02%)</title><rect x="30.4457%" y="661" width="0.0238%" height="15" fill="rgb(222,9,33)" fg:x="149553" fg:w="117"/><text x="30.6957%" y="671.50"></text></g><g><title>memchr (80 samples, 0.02%)</title><rect x="30.4532%" y="645" width="0.0163%" height="15" fill="rgb(239,44,28)" fg:x="149590" fg:w="80"/><text x="30.7032%" y="655.50"></text></g><g><title>btrfs_next_old_leaf (65 samples, 0.01%)</title><rect x="30.4931%" y="693" width="0.0132%" height="15" fill="rgb(249,187,43)" fg:x="149786" fg:w="65"/><text x="30.7431%" y="703.50"></text></g><g><title>btrfs_get_delayed_node (55 samples, 0.01%)</title><rect x="30.5104%" y="677" width="0.0112%" height="15" fill="rgb(216,141,28)" fg:x="149871" fg:w="55"/><text x="30.7604%" y="687.50"></text></g><g><title>btrfs_readdir_get_delayed_items (106 samples, 0.02%)</title><rect x="30.5069%" y="693" width="0.0216%" height="15" fill="rgb(230,154,53)" fg:x="149854" fg:w="106"/><text x="30.7569%" y="703.50"></text></g><g><title>btrfs_release_path (88 samples, 0.02%)</title><rect x="30.5293%" y="693" width="0.0179%" height="15" fill="rgb(227,82,4)" fg:x="149964" fg:w="88"/><text x="30.7793%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (188 samples, 0.04%)</title><rect x="30.5798%" y="677" width="0.0383%" height="15" fill="rgb(220,107,16)" fg:x="150212" fg:w="188"/><text x="30.8298%" y="687.50"></text></g><g><title>__radix_tree_lookup (119 samples, 0.02%)</title><rect x="30.6391%" y="645" width="0.0242%" height="15" fill="rgb(207,187,2)" fg:x="150503" fg:w="119"/><text x="30.8891%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (53 samples, 0.01%)</title><rect x="30.6633%" y="645" width="0.0108%" height="15" fill="rgb(210,162,52)" fg:x="150622" fg:w="53"/><text x="30.9133%" y="655.50"></text></g><g><title>find_extent_buffer (200 samples, 0.04%)</title><rect x="30.6342%" y="661" width="0.0407%" height="15" fill="rgb(217,216,49)" fg:x="150479" fg:w="200"/><text x="30.8842%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (314 samples, 0.06%)</title><rect x="30.6181%" y="677" width="0.0639%" height="15" fill="rgb(218,146,49)" fg:x="150400" fg:w="314"/><text x="30.8681%" y="687.50"></text></g><g><title>btrfs_search_slot (697 samples, 0.14%)</title><rect x="30.5472%" y="693" width="0.1419%" height="15" fill="rgb(216,55,40)" fg:x="150052" fg:w="697"/><text x="30.7972%" y="703.50"></text></g><g><title>filldir64 (52 samples, 0.01%)</title><rect x="30.6944%" y="693" width="0.0106%" height="15" fill="rgb(208,196,21)" fg:x="150775" fg:w="52"/><text x="30.9444%" y="703.50"></text></g><g><title>btrfs_real_readdir (2,154 samples, 0.44%)</title><rect x="30.3494%" y="709" width="0.4385%" height="15" fill="rgb(242,117,42)" fg:x="149080" fg:w="2154"/><text x="30.5994%" y="719.50"></text></g><g><title>read_extent_buffer (325 samples, 0.07%)</title><rect x="30.7217%" y="693" width="0.0662%" height="15" fill="rgb(210,11,23)" fg:x="150909" fg:w="325"/><text x="30.9717%" y="703.50"></text></g><g><title>btrfs_block_rsv_add (59 samples, 0.01%)</title><rect x="30.8251%" y="645" width="0.0120%" height="15" fill="rgb(217,110,2)" fg:x="151417" fg:w="59"/><text x="31.0751%" y="655.50"></text></g><g><title>btrfs_reserve_metadata_bytes (54 samples, 0.01%)</title><rect x="30.8261%" y="629" width="0.0110%" height="15" fill="rgb(229,77,54)" fg:x="151422" fg:w="54"/><text x="31.0761%" y="639.50"></text></g><g><title>__reserve_bytes (52 samples, 0.01%)</title><rect x="30.8265%" y="613" width="0.0106%" height="15" fill="rgb(218,53,16)" fg:x="151424" fg:w="52"/><text x="31.0765%" y="623.50"></text></g><g><title>btrfs_delayed_update_inode (128 samples, 0.03%)</title><rect x="30.8166%" y="661" width="0.0261%" height="15" fill="rgb(215,38,13)" fg:x="151375" fg:w="128"/><text x="31.0666%" y="671.50"></text></g><g><title>btrfs_update_inode (142 samples, 0.03%)</title><rect x="30.8162%" y="677" width="0.0289%" height="15" fill="rgb(235,42,18)" fg:x="151373" fg:w="142"/><text x="31.0662%" y="687.50"></text></g><g><title>btrfs_dirty_inode (221 samples, 0.04%)</title><rect x="30.8111%" y="693" width="0.0450%" height="15" fill="rgb(219,66,54)" fg:x="151348" fg:w="221"/><text x="31.0611%" y="703.50"></text></g><g><title>start_transaction (54 samples, 0.01%)</title><rect x="30.8451%" y="677" width="0.0110%" height="15" fill="rgb(222,205,4)" fg:x="151515" fg:w="54"/><text x="31.0951%" y="687.50"></text></g><g><title>touch_atime (273 samples, 0.06%)</title><rect x="30.8019%" y="709" width="0.0556%" height="15" fill="rgb(227,213,46)" fg:x="151303" fg:w="273"/><text x="31.0519%" y="719.50"></text></g><g><title>iterate_dir (2,521 samples, 0.51%)</title><rect x="30.3467%" y="725" width="0.5132%" height="15" fill="rgb(250,145,42)" fg:x="149067" fg:w="2521"/><text x="30.5967%" y="735.50"></text></g><g><title>__x64_sys_getdents64 (2,586 samples, 0.53%)</title><rect x="30.3347%" y="741" width="0.5265%" height="15" fill="rgb(219,15,2)" fg:x="149008" fg:w="2586"/><text x="30.5847%" y="751.50"></text></g><g><title>do_syscall_64 (2,591 samples, 0.53%)</title><rect x="30.3347%" y="757" width="0.5275%" height="15" fill="rgb(231,181,52)" fg:x="149008" fg:w="2591"/><text x="30.5847%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,600 samples, 0.53%)</title><rect x="30.3343%" y="773" width="0.5293%" height="15" fill="rgb(235,1,42)" fg:x="149006" fg:w="2600"/><text x="30.5843%" y="783.50"></text></g><g><title>__GI___getdents64 (2,628 samples, 0.54%)</title><rect x="30.3290%" y="789" width="0.5350%" height="15" fill="rgb(249,88,27)" fg:x="148980" fg:w="2628"/><text x="30.5790%" y="799.50"></text></g><g><title>__GI___readdir64 (2,793 samples, 0.57%)</title><rect x="30.2958%" y="805" width="0.5686%" height="15" fill="rgb(235,145,16)" fg:x="148817" fg:w="2793"/><text x="30.5458%" y="815.50"></text></g><g><title>link_path_walk.part.0 (61 samples, 0.01%)</title><rect x="30.8681%" y="693" width="0.0124%" height="15" fill="rgb(237,114,19)" fg:x="151628" fg:w="61"/><text x="31.1181%" y="703.50"></text></g><g><title>path_lookupat (75 samples, 0.02%)</title><rect x="30.8673%" y="709" width="0.0153%" height="15" fill="rgb(238,51,50)" fg:x="151624" fg:w="75"/><text x="31.1173%" y="719.50"></text></g><g><title>filename_lookup (78 samples, 0.02%)</title><rect x="30.8669%" y="725" width="0.0159%" height="15" fill="rgb(205,194,25)" fg:x="151622" fg:w="78"/><text x="31.1169%" y="735.50"></text></g><g><title>__do_sys_newstat (112 samples, 0.02%)</title><rect x="30.8650%" y="757" width="0.0228%" height="15" fill="rgb(215,203,17)" fg:x="151613" fg:w="112"/><text x="31.1150%" y="767.50"></text></g><g><title>vfs_statx (108 samples, 0.02%)</title><rect x="30.8658%" y="741" width="0.0220%" height="15" fill="rgb(233,112,49)" fg:x="151617" fg:w="108"/><text x="31.1158%" y="751.50"></text></g><g><title>do_syscall_64 (116 samples, 0.02%)</title><rect x="30.8648%" y="773" width="0.0236%" height="15" fill="rgb(241,130,26)" fg:x="151612" fg:w="116"/><text x="31.1148%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (118 samples, 0.02%)</title><rect x="30.8646%" y="789" width="0.0240%" height="15" fill="rgb(252,223,19)" fg:x="151611" fg:w="118"/><text x="31.1146%" y="799.50"></text></g><g><title>__GI___xstat (120 samples, 0.02%)</title><rect x="30.8644%" y="805" width="0.0244%" height="15" fill="rgb(211,95,25)" fg:x="151610" fg:w="120"/><text x="31.1144%" y="815.50"></text></g><g><title>__GI_remove (67 samples, 0.01%)</title><rect x="30.8888%" y="805" width="0.0136%" height="15" fill="rgb(251,182,27)" fg:x="151730" fg:w="67"/><text x="31.1388%" y="815.50"></text></g><g><title>__unlink (52 samples, 0.01%)</title><rect x="30.8919%" y="789" width="0.0106%" height="15" fill="rgb(238,24,4)" fg:x="151745" fg:w="52"/><text x="31.1419%" y="799.50"></text></g><g><title>crc32c_pcl_intel_update (129 samples, 0.03%)</title><rect x="30.9330%" y="789" width="0.0263%" height="15" fill="rgb(224,220,25)" fg:x="151947" fg:w="129"/><text x="31.1830%" y="799.50"></text></g><g><title>entry_SYSCALL_64 (148 samples, 0.03%)</title><rect x="30.9593%" y="789" width="0.0301%" height="15" fill="rgb(239,133,26)" fg:x="152076" fg:w="148"/><text x="31.2093%" y="799.50"></text></g><g><title>getname_flags (69 samples, 0.01%)</title><rect x="31.0049%" y="741" width="0.0140%" height="15" fill="rgb(211,94,48)" fg:x="152300" fg:w="69"/><text x="31.2549%" y="751.50"></text></g><g><title>memset_erms (569 samples, 0.12%)</title><rect x="31.0594%" y="709" width="0.1158%" height="15" fill="rgb(239,87,6)" fg:x="152568" fg:w="569"/><text x="31.3094%" y="719.50"></text></g><g><title>kmem_cache_alloc (746 samples, 0.15%)</title><rect x="31.0307%" y="725" width="0.1519%" height="15" fill="rgb(227,62,0)" fg:x="152427" fg:w="746"/><text x="31.2807%" y="735.50"></text></g><g><title>__check_heap_object (59 samples, 0.01%)</title><rect x="31.2414%" y="693" width="0.0120%" height="15" fill="rgb(211,226,4)" fg:x="153462" fg:w="59"/><text x="31.4914%" y="703.50"></text></g><g><title>__virt_addr_valid (196 samples, 0.04%)</title><rect x="31.2534%" y="693" width="0.0399%" height="15" fill="rgb(253,38,52)" fg:x="153521" fg:w="196"/><text x="31.5034%" y="703.50"></text></g><g><title>__check_object_size (313 samples, 0.06%)</title><rect x="31.2304%" y="709" width="0.0637%" height="15" fill="rgb(229,126,40)" fg:x="153408" fg:w="313"/><text x="31.4804%" y="719.50"></text></g><g><title>__x64_sys_unlinkat (1,437 samples, 0.29%)</title><rect x="31.0024%" y="757" width="0.2925%" height="15" fill="rgb(229,165,44)" fg:x="152288" fg:w="1437"/><text x="31.2524%" y="767.50"></text></g><g><title>getname_flags.part.0 (1,356 samples, 0.28%)</title><rect x="31.0189%" y="741" width="0.2761%" height="15" fill="rgb(247,95,47)" fg:x="152369" fg:w="1356"/><text x="31.2689%" y="751.50"></text></g><g><title>strncpy_from_user (552 samples, 0.11%)</title><rect x="31.1826%" y="725" width="0.1124%" height="15" fill="rgb(216,140,30)" fg:x="153173" fg:w="552"/><text x="31.4326%" y="735.50"></text></g><g><title>dput (51 samples, 0.01%)</title><rect x="31.3025%" y="741" width="0.0104%" height="15" fill="rgb(246,214,8)" fg:x="153762" fg:w="51"/><text x="31.5525%" y="751.50"></text></g><g><title>filename_parentat (77 samples, 0.02%)</title><rect x="31.3129%" y="741" width="0.0157%" height="15" fill="rgb(227,224,15)" fg:x="153813" fg:w="77"/><text x="31.5629%" y="751.50"></text></g><g><title>path_parentat (68 samples, 0.01%)</title><rect x="31.3147%" y="725" width="0.0138%" height="15" fill="rgb(233,175,4)" fg:x="153822" fg:w="68"/><text x="31.5647%" y="735.50"></text></g><g><title>btrfs_lookup_dir_index_item (68 samples, 0.01%)</title><rect x="31.3758%" y="677" width="0.0138%" height="15" fill="rgb(221,66,45)" fg:x="154122" fg:w="68"/><text x="31.6258%" y="687.50"></text></g><g><title>btrfs_search_slot (67 samples, 0.01%)</title><rect x="31.3760%" y="661" width="0.0136%" height="15" fill="rgb(221,178,18)" fg:x="154123" fg:w="67"/><text x="31.6260%" y="671.50"></text></g><g><title>btrfs_search_slot (78 samples, 0.02%)</title><rect x="31.3898%" y="661" width="0.0159%" height="15" fill="rgb(213,81,29)" fg:x="154191" fg:w="78"/><text x="31.6398%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (81 samples, 0.02%)</title><rect x="31.3896%" y="677" width="0.0165%" height="15" fill="rgb(220,89,49)" fg:x="154190" fg:w="81"/><text x="31.6396%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (244 samples, 0.05%)</title><rect x="31.3670%" y="693" width="0.0497%" height="15" fill="rgb(227,60,33)" fg:x="154079" fg:w="244"/><text x="31.6170%" y="703.50"></text></g><g><title>btrfs_search_slot (119 samples, 0.02%)</title><rect x="31.4247%" y="661" width="0.0242%" height="15" fill="rgb(205,113,12)" fg:x="154362" fg:w="119"/><text x="31.6747%" y="671.50"></text></g><g><title>btrfs_del_inode_ref (199 samples, 0.04%)</title><rect x="31.4175%" y="677" width="0.0405%" height="15" fill="rgb(211,32,1)" fg:x="154327" fg:w="199"/><text x="31.6675%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (227 samples, 0.05%)</title><rect x="31.4167%" y="693" width="0.0462%" height="15" fill="rgb(246,2,12)" fg:x="154323" fg:w="227"/><text x="31.6667%" y="703.50"></text></g><g><title>btrfs_free_tree_block (57 samples, 0.01%)</title><rect x="31.4796%" y="661" width="0.0116%" height="15" fill="rgb(243,37,27)" fg:x="154632" fg:w="57"/><text x="31.7296%" y="671.50"></text></g><g><title>btrfs_del_leaf (58 samples, 0.01%)</title><rect x="31.4796%" y="677" width="0.0118%" height="15" fill="rgb(248,211,31)" fg:x="154632" fg:w="58"/><text x="31.7296%" y="687.50"></text></g><g><title>btrfs_get_token_32 (244 samples, 0.05%)</title><rect x="31.4945%" y="677" width="0.0497%" height="15" fill="rgb(242,146,47)" fg:x="154705" fg:w="244"/><text x="31.7445%" y="687.50"></text></g><g><title>btrfs_set_token_32 (176 samples, 0.04%)</title><rect x="31.5466%" y="677" width="0.0358%" height="15" fill="rgb(206,70,20)" fg:x="154961" fg:w="176"/><text x="31.7966%" y="687.50"></text></g><g><title>memmove_extent_buffer (123 samples, 0.03%)</title><rect x="31.5930%" y="677" width="0.0250%" height="15" fill="rgb(215,10,51)" fg:x="155189" fg:w="123"/><text x="31.8430%" y="687.50"></text></g><g><title>memmove (98 samples, 0.02%)</title><rect x="31.5981%" y="661" width="0.0200%" height="15" fill="rgb(243,178,53)" fg:x="155214" fg:w="98"/><text x="31.8481%" y="671.50"></text></g><g><title>__push_leaf_right (79 samples, 0.02%)</title><rect x="31.6217%" y="661" width="0.0161%" height="15" fill="rgb(233,221,20)" fg:x="155330" fg:w="79"/><text x="31.8717%" y="671.50"></text></g><g><title>push_leaf_right (86 samples, 0.02%)</title><rect x="31.6211%" y="677" width="0.0175%" height="15" fill="rgb(218,95,35)" fg:x="155327" fg:w="86"/><text x="31.8711%" y="687.50"></text></g><g><title>btrfs_del_items (865 samples, 0.18%)</title><rect x="31.4629%" y="693" width="0.1761%" height="15" fill="rgb(229,13,5)" fg:x="154550" fg:w="865"/><text x="31.7129%" y="703.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (68 samples, 0.01%)</title><rect x="31.6390%" y="693" width="0.0138%" height="15" fill="rgb(252,164,30)" fg:x="155415" fg:w="68"/><text x="31.8890%" y="703.50"></text></g><g><title>__btrfs_add_delayed_item (55 samples, 0.01%)</title><rect x="31.6539%" y="677" width="0.0112%" height="15" fill="rgb(232,68,36)" fg:x="155488" fg:w="55"/><text x="31.9039%" y="687.50"></text></g><g><title>btrfs_delete_delayed_dir_index (137 samples, 0.03%)</title><rect x="31.6529%" y="693" width="0.0279%" height="15" fill="rgb(219,59,54)" fg:x="155483" fg:w="137"/><text x="31.9029%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (100 samples, 0.02%)</title><rect x="31.7076%" y="661" width="0.0204%" height="15" fill="rgb(250,92,33)" fg:x="155752" fg:w="100"/><text x="31.9576%" y="671.50"></text></g><g><title>find_extent_buffer (77 samples, 0.02%)</title><rect x="31.7339%" y="645" width="0.0157%" height="15" fill="rgb(229,162,54)" fg:x="155881" fg:w="77"/><text x="31.9839%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (120 samples, 0.02%)</title><rect x="31.7280%" y="661" width="0.0244%" height="15" fill="rgb(244,114,52)" fg:x="155852" fg:w="120"/><text x="31.9780%" y="671.50"></text></g><g><title>reada_for_balance (52 samples, 0.01%)</title><rect x="31.7524%" y="661" width="0.0106%" height="15" fill="rgb(212,211,43)" fg:x="155972" fg:w="52"/><text x="32.0024%" y="671.50"></text></g><g><title>btrfs_search_slot (368 samples, 0.07%)</title><rect x="31.6918%" y="677" width="0.0749%" height="15" fill="rgb(226,147,8)" fg:x="155674" fg:w="368"/><text x="31.9418%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (425 samples, 0.09%)</title><rect x="31.6846%" y="693" width="0.0865%" height="15" fill="rgb(226,23,13)" fg:x="155639" fg:w="425"/><text x="31.9346%" y="703.50"></text></g><g><title>btrfs_update_inode (60 samples, 0.01%)</title><rect x="31.7783%" y="693" width="0.0122%" height="15" fill="rgb(240,63,4)" fg:x="156099" fg:w="60"/><text x="32.0283%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (2,140 samples, 0.44%)</title><rect x="31.3609%" y="709" width="0.4357%" height="15" fill="rgb(221,1,32)" fg:x="154049" fg:w="2140"/><text x="31.6109%" y="719.50"></text></g><g><title>generic_bin_search.constprop.0 (66 samples, 0.01%)</title><rect x="31.8194%" y="645" width="0.0134%" height="15" fill="rgb(242,117,10)" fg:x="156301" fg:w="66"/><text x="32.0694%" y="655.50"></text></g><g><title>__radix_tree_lookup (53 samples, 0.01%)</title><rect x="31.8416%" y="613" width="0.0108%" height="15" fill="rgb(249,172,44)" fg:x="156410" fg:w="53"/><text x="32.0916%" y="623.50"></text></g><g><title>find_extent_buffer (91 samples, 0.02%)</title><rect x="31.8389%" y="629" width="0.0185%" height="15" fill="rgb(244,46,45)" fg:x="156397" fg:w="91"/><text x="32.0889%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (130 samples, 0.03%)</title><rect x="31.8328%" y="645" width="0.0265%" height="15" fill="rgb(206,43,17)" fg:x="156367" fg:w="130"/><text x="32.0828%" y="655.50"></text></g><g><title>btrfs_search_slot (295 samples, 0.06%)</title><rect x="31.8041%" y="661" width="0.0601%" height="15" fill="rgb(239,218,39)" fg:x="156226" fg:w="295"/><text x="32.0541%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (380 samples, 0.08%)</title><rect x="31.8039%" y="677" width="0.0774%" height="15" fill="rgb(208,169,54)" fg:x="156225" fg:w="380"/><text x="32.0539%" y="687.50"></text></g><g><title>setup_items_for_insert (84 samples, 0.02%)</title><rect x="31.8642%" y="661" width="0.0171%" height="15" fill="rgb(247,25,42)" fg:x="156521" fg:w="84"/><text x="32.1142%" y="671.50"></text></g><g><title>btrfs_orphan_add (435 samples, 0.09%)</title><rect x="31.7976%" y="709" width="0.0886%" height="15" fill="rgb(226,23,31)" fg:x="156194" fg:w="435"/><text x="32.0476%" y="719.50"></text></g><g><title>btrfs_insert_orphan_item (433 samples, 0.09%)</title><rect x="31.7980%" y="693" width="0.0881%" height="15" fill="rgb(247,16,28)" fg:x="156196" fg:w="433"/><text x="32.0480%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (53 samples, 0.01%)</title><rect x="31.8874%" y="693" width="0.0108%" height="15" fill="rgb(231,147,38)" fg:x="156635" fg:w="53"/><text x="32.1374%" y="703.50"></text></g><g><title>btrfs_update_inode (74 samples, 0.02%)</title><rect x="31.8870%" y="709" width="0.0151%" height="15" fill="rgb(253,81,48)" fg:x="156633" fg:w="74"/><text x="32.1370%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (56 samples, 0.01%)</title><rect x="31.9094%" y="693" width="0.0114%" height="15" fill="rgb(249,222,43)" fg:x="156743" fg:w="56"/><text x="32.1594%" y="703.50"></text></g><g><title>btrfs_rmdir (2,866 samples, 0.58%)</title><rect x="31.3471%" y="725" width="0.5835%" height="15" fill="rgb(221,3,27)" fg:x="153981" fg:w="2866"/><text x="31.5971%" y="735.50"></text></g><g><title>start_transaction (135 samples, 0.03%)</title><rect x="31.9031%" y="709" width="0.0275%" height="15" fill="rgb(228,180,5)" fg:x="156712" fg:w="135"/><text x="32.1531%" y="719.50"></text></g><g><title>btrfs_drop_extent_cache (77 samples, 0.02%)</title><rect x="31.9462%" y="693" width="0.0157%" height="15" fill="rgb(227,131,42)" fg:x="156924" fg:w="77"/><text x="32.1962%" y="703.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (61 samples, 0.01%)</title><rect x="31.9729%" y="693" width="0.0124%" height="15" fill="rgb(212,3,39)" fg:x="157055" fg:w="61"/><text x="32.2229%" y="703.50"></text></g><g><title>btrfs_destroy_inode (267 samples, 0.05%)</title><rect x="31.9454%" y="709" width="0.0544%" height="15" fill="rgb(226,45,5)" fg:x="156920" fg:w="267"/><text x="32.1954%" y="719.50"></text></g><g><title>rb_erase (71 samples, 0.01%)</title><rect x="31.9853%" y="693" width="0.0145%" height="15" fill="rgb(215,167,45)" fg:x="157116" fg:w="71"/><text x="32.2353%" y="703.50"></text></g><g><title>destroy_inode (283 samples, 0.06%)</title><rect x="31.9432%" y="725" width="0.0576%" height="15" fill="rgb(250,218,53)" fg:x="156909" fg:w="283"/><text x="32.1932%" y="735.50"></text></g><g><title>__btrfs_end_transaction (90 samples, 0.02%)</title><rect x="32.0142%" y="693" width="0.0183%" height="15" fill="rgb(207,140,0)" fg:x="157258" fg:w="90"/><text x="32.2642%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (69 samples, 0.01%)</title><rect x="32.0325%" y="693" width="0.0140%" height="15" fill="rgb(238,133,51)" fg:x="157348" fg:w="69"/><text x="32.2825%" y="703.50"></text></g><g><title>radix_tree_delete_item (53 samples, 0.01%)</title><rect x="32.0358%" y="677" width="0.0108%" height="15" fill="rgb(218,203,53)" fg:x="157364" fg:w="53"/><text x="32.2858%" y="687.50"></text></g><g><title>btrfs_get_token_32 (262 samples, 0.05%)</title><rect x="32.0924%" y="645" width="0.0533%" height="15" fill="rgb(226,184,25)" fg:x="157642" fg:w="262"/><text x="32.3424%" y="655.50"></text></g><g><title>btrfs_set_token_32 (250 samples, 0.05%)</title><rect x="32.1480%" y="645" width="0.0509%" height="15" fill="rgb(231,121,21)" fg:x="157915" fg:w="250"/><text x="32.3980%" y="655.50"></text></g><g><title>memcpy_extent_buffer (63 samples, 0.01%)</title><rect x="32.2011%" y="645" width="0.0128%" height="15" fill="rgb(251,14,34)" fg:x="158176" fg:w="63"/><text x="32.4511%" y="655.50"></text></g><g><title>memmove_extent_buffer (149 samples, 0.03%)</title><rect x="32.2139%" y="645" width="0.0303%" height="15" fill="rgb(249,193,11)" fg:x="158239" fg:w="149"/><text x="32.4639%" y="655.50"></text></g><g><title>memmove (121 samples, 0.02%)</title><rect x="32.2196%" y="629" width="0.0246%" height="15" fill="rgb(220,172,37)" fg:x="158267" fg:w="121"/><text x="32.4696%" y="639.50"></text></g><g><title>btrfs_del_items (909 samples, 0.19%)</title><rect x="32.0645%" y="661" width="0.1851%" height="15" fill="rgb(231,229,43)" fg:x="157505" fg:w="909"/><text x="32.3145%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (64 samples, 0.01%)</title><rect x="32.2748%" y="629" width="0.0130%" height="15" fill="rgb(250,161,5)" fg:x="158538" fg:w="64"/><text x="32.5248%" y="639.50"></text></g><g><title>find_extent_buffer (68 samples, 0.01%)</title><rect x="32.2937%" y="613" width="0.0138%" height="15" fill="rgb(218,225,18)" fg:x="158631" fg:w="68"/><text x="32.5437%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (117 samples, 0.02%)</title><rect x="32.2878%" y="629" width="0.0238%" height="15" fill="rgb(245,45,42)" fg:x="158602" fg:w="117"/><text x="32.5378%" y="639.50"></text></g><g><title>reada_for_balance (53 samples, 0.01%)</title><rect x="32.3116%" y="629" width="0.0108%" height="15" fill="rgb(211,115,1)" fg:x="158719" fg:w="53"/><text x="32.5616%" y="639.50"></text></g><g><title>btrfs_lookup_inode (359 samples, 0.07%)</title><rect x="32.2548%" y="661" width="0.0731%" height="15" fill="rgb(248,133,52)" fg:x="158440" fg:w="359"/><text x="32.5048%" y="671.50"></text></g><g><title>btrfs_search_slot (358 samples, 0.07%)</title><rect x="32.2551%" y="645" width="0.0729%" height="15" fill="rgb(238,100,21)" fg:x="158441" fg:w="358"/><text x="32.5051%" y="655.50"></text></g><g><title>__btrfs_update_delayed_inode (1,398 samples, 0.28%)</title><rect x="32.0625%" y="677" width="0.2846%" height="15" fill="rgb(247,144,11)" fg:x="157495" fg:w="1398"/><text x="32.3125%" y="687.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,528 samples, 0.31%)</title><rect x="32.0531%" y="693" width="0.3111%" height="15" fill="rgb(206,164,16)" fg:x="157449" fg:w="1528"/><text x="32.3031%" y="703.50"></text></g><g><title>generic_bin_search.constprop.0 (62 samples, 0.01%)</title><rect x="32.3974%" y="661" width="0.0126%" height="15" fill="rgb(222,34,3)" fg:x="159140" fg:w="62"/><text x="32.6474%" y="671.50"></text></g><g><title>find_extent_buffer (75 samples, 0.02%)</title><rect x="32.4171%" y="645" width="0.0153%" height="15" fill="rgb(248,82,4)" fg:x="159237" fg:w="75"/><text x="32.6671%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (124 samples, 0.03%)</title><rect x="32.4100%" y="661" width="0.0252%" height="15" fill="rgb(228,81,46)" fg:x="159202" fg:w="124"/><text x="32.6600%" y="671.50"></text></g><g><title>btrfs_search_slot (319 samples, 0.06%)</title><rect x="32.3809%" y="677" width="0.0649%" height="15" fill="rgb(227,67,47)" fg:x="159059" fg:w="319"/><text x="32.6309%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (419 samples, 0.09%)</title><rect x="32.3642%" y="693" width="0.0853%" height="15" fill="rgb(215,93,53)" fg:x="158977" fg:w="419"/><text x="32.6142%" y="703.50"></text></g><g><title>__clear_extent_bit (100 samples, 0.02%)</title><rect x="32.4708%" y="677" width="0.0204%" height="15" fill="rgb(248,194,39)" fg:x="159501" fg:w="100"/><text x="32.7208%" y="687.50"></text></g><g><title>_find_next_bit.constprop.0 (235 samples, 0.05%)</title><rect x="32.5242%" y="597" width="0.0478%" height="15" fill="rgb(215,5,19)" fg:x="159763" fg:w="235"/><text x="32.7742%" y="607.50"></text></g><g><title>steal_from_bitmap.part.0 (291 samples, 0.06%)</title><rect x="32.5160%" y="613" width="0.0592%" height="15" fill="rgb(226,215,51)" fg:x="159723" fg:w="291"/><text x="32.7660%" y="623.50"></text></g><g><title>__btrfs_add_free_space (304 samples, 0.06%)</title><rect x="32.5152%" y="629" width="0.0619%" height="15" fill="rgb(225,56,26)" fg:x="159719" fg:w="304"/><text x="32.7652%" y="639.50"></text></g><g><title>btrfs_free_tree_block (341 samples, 0.07%)</title><rect x="32.5152%" y="645" width="0.0694%" height="15" fill="rgb(222,75,29)" fg:x="159719" fg:w="341"/><text x="32.7652%" y="655.50"></text></g><g><title>btrfs_del_leaf (349 samples, 0.07%)</title><rect x="32.5150%" y="661" width="0.0710%" height="15" fill="rgb(236,139,6)" fg:x="159718" fg:w="349"/><text x="32.7650%" y="671.50"></text></g><g><title>btrfs_get_token_32 (288 samples, 0.06%)</title><rect x="32.5950%" y="661" width="0.0586%" height="15" fill="rgb(223,137,36)" fg:x="160111" fg:w="288"/><text x="32.8450%" y="671.50"></text></g><g><title>btrfs_set_token_32 (238 samples, 0.05%)</title><rect x="32.6575%" y="661" width="0.0485%" height="15" fill="rgb(226,99,2)" fg:x="160418" fg:w="238"/><text x="32.9075%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (52 samples, 0.01%)</title><rect x="32.6954%" y="645" width="0.0106%" height="15" fill="rgb(206,133,23)" fg:x="160604" fg:w="52"/><text x="32.9454%" y="655.50"></text></g><g><title>memmove_extent_buffer (153 samples, 0.03%)</title><rect x="32.7188%" y="661" width="0.0311%" height="15" fill="rgb(243,173,15)" fg:x="160719" fg:w="153"/><text x="32.9688%" y="671.50"></text></g><g><title>memmove (112 samples, 0.02%)</title><rect x="32.7271%" y="645" width="0.0228%" height="15" fill="rgb(228,69,28)" fg:x="160760" fg:w="112"/><text x="32.9771%" y="655.50"></text></g><g><title>__push_leaf_left (65 samples, 0.01%)</title><rect x="32.7502%" y="645" width="0.0132%" height="15" fill="rgb(212,51,22)" fg:x="160873" fg:w="65"/><text x="33.0002%" y="655.50"></text></g><g><title>push_leaf_left (80 samples, 0.02%)</title><rect x="32.7499%" y="661" width="0.0163%" height="15" fill="rgb(227,113,0)" fg:x="160872" fg:w="80"/><text x="32.9999%" y="671.50"></text></g><g><title>__push_leaf_right (62 samples, 0.01%)</title><rect x="32.7664%" y="645" width="0.0126%" height="15" fill="rgb(252,84,27)" fg:x="160953" fg:w="62"/><text x="33.0164%" y="655.50"></text></g><g><title>push_leaf_right (75 samples, 0.02%)</title><rect x="32.7662%" y="661" width="0.0153%" height="15" fill="rgb(223,145,39)" fg:x="160952" fg:w="75"/><text x="33.0162%" y="671.50"></text></g><g><title>btrfs_del_items (1,431 samples, 0.29%)</title><rect x="32.4914%" y="677" width="0.2913%" height="15" fill="rgb(239,219,30)" fg:x="159602" fg:w="1431"/><text x="32.7414%" y="687.50"></text></g><g><title>btrfs_drop_extent_cache (89 samples, 0.02%)</title><rect x="32.7827%" y="677" width="0.0181%" height="15" fill="rgb(224,196,39)" fg:x="161033" fg:w="89"/><text x="33.0327%" y="687.50"></text></g><g><title>btrfs_free_path (53 samples, 0.01%)</title><rect x="32.8008%" y="677" width="0.0108%" height="15" fill="rgb(205,35,43)" fg:x="161122" fg:w="53"/><text x="33.0508%" y="687.50"></text></g><g><title>btrfs_release_path (52 samples, 0.01%)</title><rect x="32.8010%" y="661" width="0.0106%" height="15" fill="rgb(228,201,21)" fg:x="161123" fg:w="52"/><text x="33.0510%" y="671.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="32.8269%" y="629" width="0.0145%" height="15" fill="rgb(237,118,16)" fg:x="161250" fg:w="71"/><text x="33.0769%" y="639.50"></text></g><g><title>btrfs_block_rsv_release (119 samples, 0.02%)</title><rect x="32.8198%" y="645" width="0.0242%" height="15" fill="rgb(241,17,19)" fg:x="161215" fg:w="119"/><text x="33.0698%" y="655.50"></text></g><g><title>finish_one_item (73 samples, 0.01%)</title><rect x="32.8589%" y="629" width="0.0149%" height="15" fill="rgb(214,10,25)" fg:x="161407" fg:w="73"/><text x="33.1089%" y="639.50"></text></g><g><title>rb_erase (54 samples, 0.01%)</title><rect x="32.8737%" y="629" width="0.0110%" height="15" fill="rgb(238,37,29)" fg:x="161480" fg:w="54"/><text x="33.1237%" y="639.50"></text></g><g><title>btrfs_release_delayed_item.part.0 (207 samples, 0.04%)</title><rect x="32.8440%" y="645" width="0.0421%" height="15" fill="rgb(253,83,25)" fg:x="161334" fg:w="207"/><text x="33.0940%" y="655.50"></text></g><g><title>kfree (151 samples, 0.03%)</title><rect x="32.8861%" y="645" width="0.0307%" height="15" fill="rgb(234,192,12)" fg:x="161541" fg:w="151"/><text x="33.1361%" y="655.50"></text></g><g><title>__btrfs_kill_delayed_node (508 samples, 0.10%)</title><rect x="32.8167%" y="661" width="0.1034%" height="15" fill="rgb(241,216,45)" fg:x="161200" fg:w="508"/><text x="33.0667%" y="671.50"></text></g><g><title>btrfs_kill_delayed_inode_items (517 samples, 0.11%)</title><rect x="32.8165%" y="677" width="0.1052%" height="15" fill="rgb(242,22,33)" fg:x="161199" fg:w="517"/><text x="33.0665%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (88 samples, 0.02%)</title><rect x="32.9464%" y="661" width="0.0179%" height="15" fill="rgb(231,105,49)" fg:x="161837" fg:w="88"/><text x="33.1964%" y="671.50"></text></g><g><title>find_extent_buffer (86 samples, 0.02%)</title><rect x="32.9721%" y="645" width="0.0175%" height="15" fill="rgb(218,204,15)" fg:x="161963" fg:w="86"/><text x="33.2221%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (134 samples, 0.03%)</title><rect x="32.9643%" y="661" width="0.0273%" height="15" fill="rgb(235,138,41)" fg:x="161925" fg:w="134"/><text x="33.2143%" y="671.50"></text></g><g><title>btrfs_search_slot (395 samples, 0.08%)</title><rect x="32.9222%" y="677" width="0.0804%" height="15" fill="rgb(246,0,9)" fg:x="161718" fg:w="395"/><text x="33.1722%" y="687.50"></text></g><g><title>lock_extent_bits (62 samples, 0.01%)</title><rect x="33.0071%" y="677" width="0.0126%" height="15" fill="rgb(210,74,4)" fg:x="162135" fg:w="62"/><text x="33.2571%" y="687.50"></text></g><g><title>__set_extent_bit (59 samples, 0.01%)</title><rect x="33.0077%" y="661" width="0.0120%" height="15" fill="rgb(250,60,41)" fg:x="162138" fg:w="59"/><text x="33.2577%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (2,855 samples, 0.58%)</title><rect x="32.4527%" y="693" width="0.5812%" height="15" fill="rgb(220,115,12)" fg:x="159412" fg:w="2855"/><text x="32.7027%" y="703.50"></text></g><g><title>read_extent_buffer (70 samples, 0.01%)</title><rect x="33.0197%" y="677" width="0.0143%" height="15" fill="rgb(237,100,13)" fg:x="162197" fg:w="70"/><text x="33.2697%" y="687.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (56 samples, 0.01%)</title><rect x="33.0482%" y="629" width="0.0114%" height="15" fill="rgb(213,55,26)" fg:x="162337" fg:w="56"/><text x="33.2982%" y="639.50"></text></g><g><title>btrfs_block_rsv_refill (105 samples, 0.02%)</title><rect x="33.0392%" y="677" width="0.0214%" height="15" fill="rgb(216,17,4)" fg:x="162293" fg:w="105"/><text x="33.2892%" y="687.50"></text></g><g><title>btrfs_reserve_metadata_bytes (83 samples, 0.02%)</title><rect x="33.0437%" y="661" width="0.0169%" height="15" fill="rgb(220,153,47)" fg:x="162315" fg:w="83"/><text x="33.2937%" y="671.50"></text></g><g><title>__reserve_bytes (82 samples, 0.02%)</title><rect x="33.0439%" y="645" width="0.0167%" height="15" fill="rgb(215,131,9)" fg:x="162316" fg:w="82"/><text x="33.2939%" y="655.50"></text></g><g><title>evict_refill_and_join (227 samples, 0.05%)</title><rect x="33.0339%" y="693" width="0.0462%" height="15" fill="rgb(233,46,42)" fg:x="162267" fg:w="227"/><text x="33.2839%" y="703.50"></text></g><g><title>start_transaction (95 samples, 0.02%)</title><rect x="33.0608%" y="677" width="0.0193%" height="15" fill="rgb(226,86,7)" fg:x="162399" fg:w="95"/><text x="33.3108%" y="687.50"></text></g><g><title>btrfs_evict_inode (5,297 samples, 1.08%)</title><rect x="32.0128%" y="709" width="1.0784%" height="15" fill="rgb(239,226,21)" fg:x="157251" fg:w="5297"/><text x="32.2628%" y="719.50"></text></g><g><title>evict (5,367 samples, 1.09%)</title><rect x="32.0036%" y="725" width="1.0926%" height="15" fill="rgb(244,137,22)" fg:x="157206" fg:w="5367"/><text x="32.2536%" y="735.50"></text></g><g><title>_raw_spin_lock (71 samples, 0.01%)</title><rect x="33.1137%" y="693" width="0.0145%" height="15" fill="rgb(211,139,35)" fg:x="162659" fg:w="71"/><text x="33.3637%" y="703.50"></text></g><g><title>_raw_spin_lock (79 samples, 0.02%)</title><rect x="33.1636%" y="645" width="0.0161%" height="15" fill="rgb(214,62,50)" fg:x="162904" fg:w="79"/><text x="33.4136%" y="655.50"></text></g><g><title>d_lru_del (383 samples, 0.08%)</title><rect x="33.1369%" y="677" width="0.0780%" height="15" fill="rgb(212,113,44)" fg:x="162773" fg:w="383"/><text x="33.3869%" y="687.50"></text></g><g><title>list_lru_del (371 samples, 0.08%)</title><rect x="33.1394%" y="661" width="0.0755%" height="15" fill="rgb(226,150,43)" fg:x="162785" fg:w="371"/><text x="33.3894%" y="671.50"></text></g><g><title>mem_cgroup_from_obj (172 samples, 0.04%)</title><rect x="33.1799%" y="645" width="0.0350%" height="15" fill="rgb(250,71,37)" fg:x="162984" fg:w="172"/><text x="33.4299%" y="655.50"></text></g><g><title>d_walk (565 samples, 0.12%)</title><rect x="33.1058%" y="709" width="0.1150%" height="15" fill="rgb(219,76,19)" fg:x="162620" fg:w="565"/><text x="33.3558%" y="719.50"></text></g><g><title>select_collect (455 samples, 0.09%)</title><rect x="33.1282%" y="693" width="0.0926%" height="15" fill="rgb(250,39,11)" fg:x="162730" fg:w="455"/><text x="33.3782%" y="703.50"></text></g><g><title>___d_drop (264 samples, 0.05%)</title><rect x="33.2312%" y="677" width="0.0537%" height="15" fill="rgb(230,64,31)" fg:x="163236" fg:w="264"/><text x="33.4812%" y="687.50"></text></g><g><title>_raw_spin_lock (84 samples, 0.02%)</title><rect x="33.2876%" y="677" width="0.0171%" height="15" fill="rgb(208,222,23)" fg:x="163513" fg:w="84"/><text x="33.5376%" y="687.50"></text></g><g><title>call_rcu (288 samples, 0.06%)</title><rect x="33.3047%" y="677" width="0.0586%" height="15" fill="rgb(227,125,18)" fg:x="163597" fg:w="288"/><text x="33.5547%" y="687.50"></text></g><g><title>rcu_segcblist_enqueue (158 samples, 0.03%)</title><rect x="33.3312%" y="661" width="0.0322%" height="15" fill="rgb(234,210,9)" fg:x="163727" fg:w="158"/><text x="33.5812%" y="671.50"></text></g><g><title>__dentry_kill (688 samples, 0.14%)</title><rect x="33.2241%" y="693" width="0.1401%" height="15" fill="rgb(217,127,24)" fg:x="163201" fg:w="688"/><text x="33.4741%" y="703.50"></text></g><g><title>__dput_to_list (53 samples, 0.01%)</title><rect x="33.3641%" y="693" width="0.0108%" height="15" fill="rgb(239,141,48)" fg:x="163889" fg:w="53"/><text x="33.6141%" y="703.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="33.3784%" y="693" width="0.0104%" height="15" fill="rgb(227,109,8)" fg:x="163959" fg:w="51"/><text x="33.6284%" y="703.50"></text></g><g><title>shrink_dcache_parent (1,507 samples, 0.31%)</title><rect x="33.1042%" y="725" width="0.3068%" height="15" fill="rgb(235,184,23)" fg:x="162612" fg:w="1507"/><text x="33.3542%" y="735.50"></text></g><g><title>shrink_dentry_list (934 samples, 0.19%)</title><rect x="33.2208%" y="709" width="0.1901%" height="15" fill="rgb(227,226,48)" fg:x="163185" fg:w="934"/><text x="33.4708%" y="719.50"></text></g><g><title>shrink_lock_dentry.part.0 (80 samples, 0.02%)</title><rect x="33.3947%" y="693" width="0.0163%" height="15" fill="rgb(206,150,11)" fg:x="164039" fg:w="80"/><text x="33.6447%" y="703.50"></text></g><g><title>_raw_spin_trylock (60 samples, 0.01%)</title><rect x="33.3987%" y="677" width="0.0122%" height="15" fill="rgb(254,2,33)" fg:x="164059" fg:w="60"/><text x="33.6487%" y="687.50"></text></g><g><title>do_rmdir (10,403 samples, 2.12%)</title><rect x="31.2950%" y="757" width="2.1178%" height="15" fill="rgb(243,160,20)" fg:x="153725" fg:w="10403"/><text x="31.5450%" y="767.50">d..</text></g><g><title>vfs_rmdir.part.0 (10,153 samples, 2.07%)</title><rect x="31.3459%" y="741" width="2.0669%" height="15" fill="rgb(218,208,30)" fg:x="153975" fg:w="10153"/><text x="31.5959%" y="751.50">v..</text></g><g><title>_raw_spin_lock (136 samples, 0.03%)</title><rect x="33.6382%" y="677" width="0.0277%" height="15" fill="rgb(224,120,49)" fg:x="165235" fg:w="136"/><text x="33.8882%" y="687.50"></text></g><g><title>__lookup_hash (1,182 samples, 0.24%)</title><rect x="33.4262%" y="741" width="0.2406%" height="15" fill="rgb(246,12,2)" fg:x="164194" fg:w="1182"/><text x="33.6762%" y="751.50"></text></g><g><title>lookup_dcache (1,166 samples, 0.24%)</title><rect x="33.4295%" y="725" width="0.2374%" height="15" fill="rgb(236,117,3)" fg:x="164210" fg:w="1166"/><text x="33.6795%" y="735.50"></text></g><g><title>d_lookup (1,159 samples, 0.24%)</title><rect x="33.4309%" y="709" width="0.2359%" height="15" fill="rgb(216,128,52)" fg:x="164217" fg:w="1159"/><text x="33.6809%" y="719.50"></text></g><g><title>__d_lookup (1,146 samples, 0.23%)</title><rect x="33.4336%" y="693" width="0.2333%" height="15" fill="rgb(246,145,19)" fg:x="164230" fg:w="1146"/><text x="33.6836%" y="703.50"></text></g><g><title>call_rcu (308 samples, 0.06%)</title><rect x="33.6671%" y="741" width="0.0627%" height="15" fill="rgb(222,11,46)" fg:x="165377" fg:w="308"/><text x="33.9171%" y="751.50"></text></g><g><title>rcu_segcblist_enqueue (143 samples, 0.03%)</title><rect x="33.7007%" y="725" width="0.0291%" height="15" fill="rgb(245,82,36)" fg:x="165542" fg:w="143"/><text x="33.9507%" y="735.50"></text></g><g><title>__srcu_read_lock (70 samples, 0.01%)</title><rect x="33.7491%" y="677" width="0.0143%" height="15" fill="rgb(250,73,51)" fg:x="165780" fg:w="70"/><text x="33.9991%" y="687.50"></text></g><g><title>fsnotify_destroy_marks (149 samples, 0.03%)</title><rect x="33.7448%" y="709" width="0.0303%" height="15" fill="rgb(221,189,23)" fg:x="165759" fg:w="149"/><text x="33.9948%" y="719.50"></text></g><g><title>fsnotify_grab_connector (141 samples, 0.03%)</title><rect x="33.7465%" y="693" width="0.0287%" height="15" fill="rgb(210,33,7)" fg:x="165767" fg:w="141"/><text x="33.9965%" y="703.50"></text></g><g><title>__srcu_read_unlock (58 samples, 0.01%)</title><rect x="33.7634%" y="677" width="0.0118%" height="15" fill="rgb(210,107,22)" fg:x="165850" fg:w="58"/><text x="34.0134%" y="687.50"></text></g><g><title>__destroy_inode (235 samples, 0.05%)</title><rect x="33.7314%" y="725" width="0.0478%" height="15" fill="rgb(222,116,37)" fg:x="165693" fg:w="235"/><text x="33.9814%" y="735.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="33.7921%" y="709" width="0.0104%" height="15" fill="rgb(254,17,48)" fg:x="165991" fg:w="51"/><text x="34.0421%" y="719.50"></text></g><g><title>_raw_write_lock (61 samples, 0.01%)</title><rect x="33.8130%" y="693" width="0.0124%" height="15" fill="rgb(224,36,32)" fg:x="166094" fg:w="61"/><text x="34.0630%" y="703.50"></text></g><g><title>memset_erms (139 samples, 0.03%)</title><rect x="33.8719%" y="661" width="0.0283%" height="15" fill="rgb(232,90,46)" fg:x="166383" fg:w="139"/><text x="34.1219%" y="671.50"></text></g><g><title>alloc_extent_map (453 samples, 0.09%)</title><rect x="33.8254%" y="693" width="0.0922%" height="15" fill="rgb(241,66,40)" fg:x="166155" fg:w="453"/><text x="34.0754%" y="703.50"></text></g><g><title>kmem_cache_alloc (425 samples, 0.09%)</title><rect x="33.8311%" y="677" width="0.0865%" height="15" fill="rgb(249,184,29)" fg:x="166183" fg:w="425"/><text x="34.0811%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (86 samples, 0.02%)</title><rect x="33.9002%" y="661" width="0.0175%" height="15" fill="rgb(231,181,1)" fg:x="166522" fg:w="86"/><text x="34.1502%" y="671.50"></text></g><g><title>free_extent_map (132 samples, 0.03%)</title><rect x="33.9177%" y="693" width="0.0269%" height="15" fill="rgb(224,94,2)" fg:x="166608" fg:w="132"/><text x="34.1677%" y="703.50"></text></g><g><title>btrfs_drop_extent_cache (936 samples, 0.19%)</title><rect x="33.8024%" y="709" width="0.1905%" height="15" fill="rgb(229,170,15)" fg:x="166042" fg:w="936"/><text x="34.0524%" y="719.50"></text></g><g><title>kmem_cache_free (238 samples, 0.05%)</title><rect x="33.9445%" y="693" width="0.0485%" height="15" fill="rgb(240,127,35)" fg:x="166740" fg:w="238"/><text x="34.1945%" y="703.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (52 samples, 0.01%)</title><rect x="33.9824%" y="677" width="0.0106%" height="15" fill="rgb(248,196,34)" fg:x="166926" fg:w="52"/><text x="34.2324%" y="687.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="34.0093%" y="661" width="0.0104%" height="15" fill="rgb(236,137,7)" fg:x="167058" fg:w="51"/><text x="34.2593%" y="671.50"></text></g><g><title>memset_erms (51 samples, 0.01%)</title><rect x="34.0490%" y="629" width="0.0104%" height="15" fill="rgb(235,127,16)" fg:x="167253" fg:w="51"/><text x="34.2990%" y="639.50"></text></g><g><title>alloc_extent_state (228 samples, 0.05%)</title><rect x="34.0197%" y="661" width="0.0464%" height="15" fill="rgb(250,192,54)" fg:x="167109" fg:w="228"/><text x="34.2697%" y="671.50"></text></g><g><title>kmem_cache_alloc (203 samples, 0.04%)</title><rect x="34.0248%" y="645" width="0.0413%" height="15" fill="rgb(218,98,20)" fg:x="167134" fg:w="203"/><text x="34.2748%" y="655.50"></text></g><g><title>free_extent_state (56 samples, 0.01%)</title><rect x="34.0661%" y="661" width="0.0114%" height="15" fill="rgb(230,176,47)" fg:x="167337" fg:w="56"/><text x="34.3161%" y="671.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (524 samples, 0.11%)</title><rect x="33.9930%" y="709" width="0.1067%" height="15" fill="rgb(244,2,33)" fg:x="166978" fg:w="524"/><text x="34.2430%" y="719.50"></text></g><g><title>clear_extent_bit (486 samples, 0.10%)</title><rect x="34.0007%" y="693" width="0.0989%" height="15" fill="rgb(231,100,17)" fg:x="167016" fg:w="486"/><text x="34.2507%" y="703.50"></text></g><g><title>__clear_extent_bit (479 samples, 0.10%)</title><rect x="34.0022%" y="677" width="0.0975%" height="15" fill="rgb(245,23,12)" fg:x="167023" fg:w="479"/><text x="34.2522%" y="687.50"></text></g><g><title>kmem_cache_free (109 samples, 0.02%)</title><rect x="34.0775%" y="661" width="0.0222%" height="15" fill="rgb(249,55,22)" fg:x="167393" fg:w="109"/><text x="34.3275%" y="671.50"></text></g><g><title>_raw_spin_lock_irq (64 samples, 0.01%)</title><rect x="34.1078%" y="693" width="0.0130%" height="15" fill="rgb(207,134,9)" fg:x="167542" fg:w="64"/><text x="34.3578%" y="703.50"></text></g><g><title>btrfs_lookup_first_ordered_extent (107 samples, 0.02%)</title><rect x="34.0997%" y="709" width="0.0218%" height="15" fill="rgb(218,134,0)" fg:x="167502" fg:w="107"/><text x="34.3497%" y="719.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="34.1725%" y="629" width="0.0112%" height="15" fill="rgb(213,212,33)" fg:x="167860" fg:w="55"/><text x="34.4225%" y="639.50"></text></g><g><title>alloc_extent_state (255 samples, 0.05%)</title><rect x="34.1414%" y="661" width="0.0519%" height="15" fill="rgb(252,106,18)" fg:x="167707" fg:w="255"/><text x="34.3914%" y="671.50"></text></g><g><title>kmem_cache_alloc (233 samples, 0.05%)</title><rect x="34.1459%" y="645" width="0.0474%" height="15" fill="rgb(208,126,42)" fg:x="167729" fg:w="233"/><text x="34.3959%" y="655.50"></text></g><g><title>free_extent_state (56 samples, 0.01%)</title><rect x="34.1933%" y="661" width="0.0114%" height="15" fill="rgb(246,175,29)" fg:x="167962" fg:w="56"/><text x="34.4433%" y="671.50"></text></g><g><title>clear_record_extent_bits (539 samples, 0.11%)</title><rect x="34.1241%" y="693" width="0.1097%" height="15" fill="rgb(215,13,50)" fg:x="167622" fg:w="539"/><text x="34.3741%" y="703.50"></text></g><g><title>__clear_extent_bit (534 samples, 0.11%)</title><rect x="34.1251%" y="677" width="0.1087%" height="15" fill="rgb(216,172,15)" fg:x="167627" fg:w="534"/><text x="34.3751%" y="687.50"></text></g><g><title>kmem_cache_free (143 samples, 0.03%)</title><rect x="34.2047%" y="661" width="0.0291%" height="15" fill="rgb(212,103,13)" fg:x="168018" fg:w="143"/><text x="34.4547%" y="671.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (586 samples, 0.12%)</title><rect x="34.1215%" y="709" width="0.1193%" height="15" fill="rgb(231,171,36)" fg:x="167609" fg:w="586"/><text x="34.3715%" y="719.50"></text></g><g><title>btrfs_destroy_inode (3,078 samples, 0.63%)</title><rect x="33.7792%" y="725" width="0.6266%" height="15" fill="rgb(250,123,20)" fg:x="165928" fg:w="3078"/><text x="34.0292%" y="735.50"></text></g><g><title>rb_erase (811 samples, 0.17%)</title><rect x="34.2407%" y="709" width="0.1651%" height="15" fill="rgb(212,53,50)" fg:x="168195" fg:w="811"/><text x="34.4907%" y="719.50"></text></g><g><title>destroy_inode (3,374 samples, 0.69%)</title><rect x="33.7298%" y="741" width="0.6869%" height="15" fill="rgb(243,54,12)" fg:x="165685" fg:w="3374"/><text x="33.9798%" y="751.50"></text></g><g><title>btrfs_put_root (53 samples, 0.01%)</title><rect x="34.4058%" y="725" width="0.0108%" height="15" fill="rgb(234,101,34)" fg:x="169006" fg:w="53"/><text x="34.6558%" y="735.50"></text></g><g><title>down_write (65 samples, 0.01%)</title><rect x="34.4166%" y="741" width="0.0132%" height="15" fill="rgb(254,67,22)" fg:x="169059" fg:w="65"/><text x="34.6666%" y="751.50"></text></g><g><title>lockref_put_or_lock (133 samples, 0.03%)</title><rect x="34.4537%" y="725" width="0.0271%" height="15" fill="rgb(250,35,47)" fg:x="169241" fg:w="133"/><text x="34.7037%" y="735.50"></text></g><g><title>_raw_spin_lock (50 samples, 0.01%)</title><rect x="34.4706%" y="709" width="0.0102%" height="15" fill="rgb(226,126,38)" fg:x="169324" fg:w="50"/><text x="34.7206%" y="719.50"></text></g><g><title>dput (254 samples, 0.05%)</title><rect x="34.4299%" y="741" width="0.0517%" height="15" fill="rgb(216,138,53)" fg:x="169124" fg:w="254"/><text x="34.6799%" y="751.50"></text></g><g><title>__list_del_entry_valid (352 samples, 0.07%)</title><rect x="34.4903%" y="725" width="0.0717%" height="15" fill="rgb(246,199,43)" fg:x="169421" fg:w="352"/><text x="34.7403%" y="735.50"></text></g><g><title>__remove_inode_hash (145 samples, 0.03%)</title><rect x="34.5620%" y="725" width="0.0295%" height="15" fill="rgb(232,125,11)" fg:x="169773" fg:w="145"/><text x="34.8120%" y="735.50"></text></g><g><title>_raw_spin_lock (115 samples, 0.02%)</title><rect x="34.5681%" y="709" width="0.0234%" height="15" fill="rgb(218,219,45)" fg:x="169803" fg:w="115"/><text x="34.8181%" y="719.50"></text></g><g><title>_raw_spin_lock (244 samples, 0.05%)</title><rect x="34.5915%" y="725" width="0.0497%" height="15" fill="rgb(216,102,54)" fg:x="169918" fg:w="244"/><text x="34.8415%" y="735.50"></text></g><g><title>btrfs_put_transaction (110 samples, 0.02%)</title><rect x="34.7281%" y="693" width="0.0224%" height="15" fill="rgb(250,228,7)" fg:x="170589" fg:w="110"/><text x="34.9781%" y="703.50"></text></g><g><title>_raw_spin_lock (225 samples, 0.05%)</title><rect x="34.7790%" y="661" width="0.0458%" height="15" fill="rgb(226,125,25)" fg:x="170839" fg:w="225"/><text x="35.0290%" y="671.50"></text></g><g><title>btrfs_trans_release_metadata (404 samples, 0.08%)</title><rect x="34.7542%" y="693" width="0.0822%" height="15" fill="rgb(224,165,27)" fg:x="170717" fg:w="404"/><text x="35.0042%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (383 samples, 0.08%)</title><rect x="34.7584%" y="677" width="0.0780%" height="15" fill="rgb(233,86,3)" fg:x="170738" fg:w="383"/><text x="35.0084%" y="687.50"></text></g><g><title>__btrfs_end_transaction (1,088 samples, 0.22%)</title><rect x="34.6650%" y="709" width="0.2215%" height="15" fill="rgb(228,116,20)" fg:x="170279" fg:w="1088"/><text x="34.9150%" y="719.50"></text></g><g><title>kmem_cache_free (246 samples, 0.05%)</title><rect x="34.8364%" y="693" width="0.0501%" height="15" fill="rgb(209,192,17)" fg:x="171121" fg:w="246"/><text x="35.0864%" y="703.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (65 samples, 0.01%)</title><rect x="34.8733%" y="677" width="0.0132%" height="15" fill="rgb(224,88,34)" fg:x="171302" fg:w="65"/><text x="35.1233%" y="687.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="34.9030%" y="693" width="0.0214%" height="15" fill="rgb(233,38,6)" fg:x="171448" fg:w="105"/><text x="35.1530%" y="703.50"></text></g><g><title>mutex_lock (83 samples, 0.02%)</title><rect x="34.9244%" y="693" width="0.0169%" height="15" fill="rgb(212,59,30)" fg:x="171553" fg:w="83"/><text x="35.1744%" y="703.50"></text></g><g><title>mutex_unlock (60 samples, 0.01%)</title><rect x="34.9413%" y="693" width="0.0122%" height="15" fill="rgb(213,80,3)" fg:x="171636" fg:w="60"/><text x="35.1913%" y="703.50"></text></g><g><title>__radix_tree_delete (75 samples, 0.02%)</title><rect x="34.9584%" y="677" width="0.0153%" height="15" fill="rgb(251,178,7)" fg:x="171720" fg:w="75"/><text x="35.2084%" y="687.50"></text></g><g><title>__radix_tree_lookup (227 samples, 0.05%)</title><rect x="34.9736%" y="677" width="0.0462%" height="15" fill="rgb(213,154,26)" fg:x="171795" fg:w="227"/><text x="35.2236%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (669 samples, 0.14%)</title><rect x="34.8865%" y="709" width="0.1362%" height="15" fill="rgb(238,165,49)" fg:x="171367" fg:w="669"/><text x="35.1365%" y="719.50"></text></g><g><title>radix_tree_delete_item (335 samples, 0.07%)</title><rect x="34.9545%" y="693" width="0.0682%" height="15" fill="rgb(248,91,46)" fg:x="171701" fg:w="335"/><text x="35.2045%" y="703.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="35.0227%" y="709" width="0.0122%" height="15" fill="rgb(244,21,52)" fg:x="172036" fg:w="60"/><text x="35.2727%" y="719.50"></text></g><g><title>_raw_write_lock (50 samples, 0.01%)</title><rect x="35.0349%" y="709" width="0.0102%" height="15" fill="rgb(247,122,20)" fg:x="172096" fg:w="50"/><text x="35.2849%" y="719.50"></text></g><g><title>btrfs_alloc_block_rsv (233 samples, 0.05%)</title><rect x="35.0451%" y="709" width="0.0474%" height="15" fill="rgb(218,27,9)" fg:x="172146" fg:w="233"/><text x="35.2951%" y="719.50"></text></g><g><title>kmem_cache_alloc_trace (164 samples, 0.03%)</title><rect x="35.0591%" y="693" width="0.0334%" height="15" fill="rgb(246,7,6)" fg:x="172215" fg:w="164"/><text x="35.3091%" y="703.50"></text></g><g><title>btrfs_btree_balance_dirty (50 samples, 0.01%)</title><rect x="35.0925%" y="709" width="0.0102%" height="15" fill="rgb(227,135,54)" fg:x="172379" fg:w="50"/><text x="35.3425%" y="719.50"></text></g><g><title>btrfs_put_transaction (68 samples, 0.01%)</title><rect x="35.1495%" y="677" width="0.0138%" height="15" fill="rgb(247,14,11)" fg:x="172659" fg:w="68"/><text x="35.3995%" y="687.50"></text></g><g><title>__btrfs_end_transaction (363 samples, 0.07%)</title><rect x="35.1119%" y="693" width="0.0739%" height="15" fill="rgb(206,149,34)" fg:x="172474" fg:w="363"/><text x="35.3619%" y="703.50"></text></g><g><title>kmem_cache_free (101 samples, 0.02%)</title><rect x="35.1652%" y="677" width="0.0206%" height="15" fill="rgb(227,228,4)" fg:x="172736" fg:w="101"/><text x="35.4152%" y="687.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="35.2267%" y="677" width="0.0132%" height="15" fill="rgb(238,218,28)" fg:x="173038" fg:w="65"/><text x="35.4767%" y="687.50"></text></g><g><title>mutex_lock (68 samples, 0.01%)</title><rect x="35.2403%" y="677" width="0.0138%" height="15" fill="rgb(252,86,40)" fg:x="173105" fg:w="68"/><text x="35.4903%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (384 samples, 0.08%)</title><rect x="35.1858%" y="693" width="0.0782%" height="15" fill="rgb(251,225,11)" fg:x="172837" fg:w="384"/><text x="35.4358%" y="703.50"></text></g><g><title>_find_next_bit.constprop.0 (384 samples, 0.08%)</title><rect x="35.4624%" y="597" width="0.0782%" height="15" fill="rgb(206,46,49)" fg:x="174196" fg:w="384"/><text x="35.7124%" y="607.50"></text></g><g><title>steal_from_bitmap.part.0 (471 samples, 0.10%)</title><rect x="35.4514%" y="613" width="0.0959%" height="15" fill="rgb(245,128,24)" fg:x="174142" fg:w="471"/><text x="35.7014%" y="623.50"></text></g><g><title>__btrfs_add_free_space (499 samples, 0.10%)</title><rect x="35.4492%" y="629" width="0.1016%" height="15" fill="rgb(219,177,34)" fg:x="174131" fg:w="499"/><text x="35.6992%" y="639.50"></text></g><g><title>btrfs_free_tree_block (547 samples, 0.11%)</title><rect x="35.4488%" y="645" width="0.1114%" height="15" fill="rgb(218,60,48)" fg:x="174129" fg:w="547"/><text x="35.6988%" y="655.50"></text></g><g><title>btrfs_del_leaf (560 samples, 0.11%)</title><rect x="35.4488%" y="661" width="0.1140%" height="15" fill="rgb(221,11,5)" fg:x="174129" fg:w="560"/><text x="35.6988%" y="671.50"></text></g><g><title>btrfs_get_32 (102 samples, 0.02%)</title><rect x="35.5628%" y="661" width="0.0208%" height="15" fill="rgb(220,148,13)" fg:x="174689" fg:w="102"/><text x="35.8128%" y="671.50"></text></g><g><title>btrfs_get_token_32 (1,966 samples, 0.40%)</title><rect x="35.5835%" y="661" width="0.4002%" height="15" fill="rgb(210,16,3)" fg:x="174791" fg:w="1966"/><text x="35.8335%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (292 samples, 0.06%)</title><rect x="35.9243%" y="645" width="0.0594%" height="15" fill="rgb(236,80,2)" fg:x="176465" fg:w="292"/><text x="36.1743%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (140 samples, 0.03%)</title><rect x="35.9838%" y="661" width="0.0285%" height="15" fill="rgb(239,129,19)" fg:x="176757" fg:w="140"/><text x="36.2338%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (105 samples, 0.02%)</title><rect x="35.9909%" y="645" width="0.0214%" height="15" fill="rgb(220,106,35)" fg:x="176792" fg:w="105"/><text x="36.2409%" y="655.50"></text></g><g><title>btrfs_set_token_32 (1,731 samples, 0.35%)</title><rect x="36.0137%" y="661" width="0.3524%" height="15" fill="rgb(252,139,45)" fg:x="176904" fg:w="1731"/><text x="36.2637%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (328 samples, 0.07%)</title><rect x="36.2993%" y="645" width="0.0668%" height="15" fill="rgb(229,8,36)" fg:x="178307" fg:w="328"/><text x="36.5493%" y="655.50"></text></g><g><title>leaf_space_used (119 samples, 0.02%)</title><rect x="36.3692%" y="661" width="0.0242%" height="15" fill="rgb(230,126,33)" fg:x="178650" fg:w="119"/><text x="36.6192%" y="671.50"></text></g><g><title>btrfs_get_32 (81 samples, 0.02%)</title><rect x="36.3769%" y="645" width="0.0165%" height="15" fill="rgb(239,140,21)" fg:x="178688" fg:w="81"/><text x="36.6269%" y="655.50"></text></g><g><title>memcpy_extent_buffer (326 samples, 0.07%)</title><rect x="36.3934%" y="661" width="0.0664%" height="15" fill="rgb(254,104,9)" fg:x="178769" fg:w="326"/><text x="36.6434%" y="671.50"></text></g><g><title>memmove (262 samples, 0.05%)</title><rect x="36.4064%" y="645" width="0.0533%" height="15" fill="rgb(239,52,14)" fg:x="178833" fg:w="262"/><text x="36.6564%" y="655.50"></text></g><g><title>copy_pages (298 samples, 0.06%)</title><rect x="36.4921%" y="645" width="0.0607%" height="15" fill="rgb(208,227,44)" fg:x="179254" fg:w="298"/><text x="36.7421%" y="655.50"></text></g><g><title>memmove_extent_buffer (2,717 samples, 0.55%)</title><rect x="36.4597%" y="661" width="0.5531%" height="15" fill="rgb(246,18,19)" fg:x="179095" fg:w="2717"/><text x="36.7097%" y="671.50"></text></g><g><title>memmove (2,260 samples, 0.46%)</title><rect x="36.5528%" y="645" width="0.4601%" height="15" fill="rgb(235,228,25)" fg:x="179552" fg:w="2260"/><text x="36.8028%" y="655.50"></text></g><g><title>__push_leaf_left (123 samples, 0.03%)</title><rect x="37.0147%" y="645" width="0.0250%" height="15" fill="rgb(240,156,20)" fg:x="181821" fg:w="123"/><text x="37.2647%" y="655.50"></text></g><g><title>push_leaf_left (204 samples, 0.04%)</title><rect x="37.0129%" y="661" width="0.0415%" height="15" fill="rgb(224,8,20)" fg:x="181812" fg:w="204"/><text x="37.2629%" y="671.50"></text></g><g><title>__push_leaf_right (77 samples, 0.02%)</title><rect x="37.0579%" y="645" width="0.0157%" height="15" fill="rgb(214,12,52)" fg:x="182033" fg:w="77"/><text x="37.3079%" y="655.50"></text></g><g><title>btrfs_read_node_slot (82 samples, 0.02%)</title><rect x="37.0790%" y="645" width="0.0167%" height="15" fill="rgb(211,220,47)" fg:x="182137" fg:w="82"/><text x="37.3290%" y="655.50"></text></g><g><title>read_tree_block (65 samples, 0.01%)</title><rect x="37.0825%" y="629" width="0.0132%" height="15" fill="rgb(250,173,5)" fg:x="182154" fg:w="65"/><text x="37.3325%" y="639.50"></text></g><g><title>push_leaf_right (226 samples, 0.05%)</title><rect x="37.0544%" y="661" width="0.0460%" height="15" fill="rgb(250,125,52)" fg:x="182016" fg:w="226"/><text x="37.3044%" y="671.50"></text></g><g><title>btrfs_del_items (8,891 samples, 1.81%)</title><rect x="35.2939%" y="677" width="1.8100%" height="15" fill="rgb(209,133,18)" fg:x="173368" fg:w="8891"/><text x="35.5439%" y="687.50">b..</text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="37.1201%" y="645" width="0.0236%" height="15" fill="rgb(216,173,22)" fg:x="182339" fg:w="116"/><text x="37.3701%" y="655.50"></text></g><g><title>btrfs_block_rsv_release (216 samples, 0.04%)</title><rect x="37.1061%" y="661" width="0.0440%" height="15" fill="rgb(205,3,22)" fg:x="182270" fg:w="216"/><text x="37.3561%" y="671.50"></text></g><g><title>btrfs_delayed_inode_release_metadata (238 samples, 0.05%)</title><rect x="37.1039%" y="677" width="0.0485%" height="15" fill="rgb(248,22,20)" fg:x="182259" fg:w="238"/><text x="37.3539%" y="687.50"></text></g><g><title>btrfs_get_32 (65 samples, 0.01%)</title><rect x="37.1523%" y="677" width="0.0132%" height="15" fill="rgb(233,6,29)" fg:x="182497" fg:w="65"/><text x="37.4023%" y="687.50"></text></g><g><title>_raw_read_lock (65 samples, 0.01%)</title><rect x="37.2350%" y="613" width="0.0132%" height="15" fill="rgb(240,22,54)" fg:x="182903" fg:w="65"/><text x="37.4850%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (90 samples, 0.02%)</title><rect x="37.2309%" y="629" width="0.0183%" height="15" fill="rgb(231,133,32)" fg:x="182883" fg:w="90"/><text x="37.4809%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (174 samples, 0.04%)</title><rect x="37.2282%" y="645" width="0.0354%" height="15" fill="rgb(248,193,4)" fg:x="182870" fg:w="174"/><text x="37.4782%" y="655.50"></text></g><g><title>btrfs_root_node (71 samples, 0.01%)</title><rect x="37.2492%" y="629" width="0.0145%" height="15" fill="rgb(211,178,46)" fg:x="182973" fg:w="71"/><text x="37.4992%" y="639.50"></text></g><g><title>__btrfs_tree_lock (85 samples, 0.02%)</title><rect x="37.2789%" y="629" width="0.0173%" height="15" fill="rgb(224,5,42)" fg:x="183119" fg:w="85"/><text x="37.5289%" y="639.50"></text></g><g><title>btrfs_lock_root_node (157 samples, 0.03%)</title><rect x="37.2759%" y="645" width="0.0320%" height="15" fill="rgb(239,176,25)" fg:x="183104" fg:w="157"/><text x="37.5259%" y="655.50"></text></g><g><title>btrfs_root_node (57 samples, 0.01%)</title><rect x="37.2962%" y="629" width="0.0116%" height="15" fill="rgb(245,187,50)" fg:x="183204" fg:w="57"/><text x="37.5462%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (53 samples, 0.01%)</title><rect x="37.3162%" y="645" width="0.0108%" height="15" fill="rgb(248,24,15)" fg:x="183302" fg:w="53"/><text x="37.5662%" y="655.50"></text></g><g><title>_raw_write_lock (77 samples, 0.02%)</title><rect x="37.3323%" y="629" width="0.0157%" height="15" fill="rgb(205,166,13)" fg:x="183381" fg:w="77"/><text x="37.5823%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (115 samples, 0.02%)</title><rect x="37.3270%" y="645" width="0.0234%" height="15" fill="rgb(208,114,23)" fg:x="183355" fg:w="115"/><text x="37.5770%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (78 samples, 0.02%)</title><rect x="37.3504%" y="645" width="0.0159%" height="15" fill="rgb(239,127,18)" fg:x="183470" fg:w="78"/><text x="37.6004%" y="655.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="37.3532%" y="629" width="0.0130%" height="15" fill="rgb(219,154,28)" fg:x="183484" fg:w="64"/><text x="37.6032%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (628 samples, 0.13%)</title><rect x="37.3663%" y="645" width="0.1278%" height="15" fill="rgb(225,157,23)" fg:x="183548" fg:w="628"/><text x="37.6163%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (71 samples, 0.01%)</title><rect x="37.5216%" y="629" width="0.0145%" height="15" fill="rgb(219,8,6)" fg:x="184311" fg:w="71"/><text x="37.7716%" y="639.50"></text></g><g><title>btrfs_get_64 (151 samples, 0.03%)</title><rect x="37.5361%" y="629" width="0.0307%" height="15" fill="rgb(212,47,6)" fg:x="184382" fg:w="151"/><text x="37.7861%" y="639.50"></text></g><g><title>__radix_tree_lookup (451 samples, 0.09%)</title><rect x="37.6110%" y="613" width="0.0918%" height="15" fill="rgb(224,190,4)" fg:x="184750" fg:w="451"/><text x="37.8610%" y="623.50"></text></g><g><title>check_buffer_tree_ref (59 samples, 0.01%)</title><rect x="37.7130%" y="597" width="0.0120%" height="15" fill="rgb(239,183,29)" fg:x="185251" fg:w="59"/><text x="37.9630%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (295 samples, 0.06%)</title><rect x="37.7028%" y="613" width="0.0601%" height="15" fill="rgb(213,57,7)" fg:x="185201" fg:w="295"/><text x="37.9528%" y="623.50"></text></g><g><title>mark_page_accessed (186 samples, 0.04%)</title><rect x="37.7250%" y="597" width="0.0379%" height="15" fill="rgb(216,148,1)" fg:x="185310" fg:w="186"/><text x="37.9750%" y="607.50"></text></g><g><title>find_extent_buffer (924 samples, 0.19%)</title><rect x="37.5772%" y="629" width="0.1881%" height="15" fill="rgb(236,182,29)" fg:x="184584" fg:w="924"/><text x="37.8272%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,487 samples, 0.30%)</title><rect x="37.4941%" y="645" width="0.3027%" height="15" fill="rgb(244,120,48)" fg:x="184176" fg:w="1487"/><text x="37.7441%" y="655.50"></text></g><g><title>read_extent_buffer (155 samples, 0.03%)</title><rect x="37.7653%" y="629" width="0.0316%" height="15" fill="rgb(206,71,34)" fg:x="185508" fg:w="155"/><text x="38.0153%" y="639.50"></text></g><g><title>btrfs_get_64 (58 samples, 0.01%)</title><rect x="37.8113%" y="629" width="0.0118%" height="15" fill="rgb(242,32,6)" fg:x="185734" fg:w="58"/><text x="38.0613%" y="639.50"></text></g><g><title>__radix_tree_lookup (201 samples, 0.04%)</title><rect x="37.8355%" y="613" width="0.0409%" height="15" fill="rgb(241,35,3)" fg:x="185853" fg:w="201"/><text x="38.0855%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (101 samples, 0.02%)</title><rect x="37.8768%" y="613" width="0.0206%" height="15" fill="rgb(222,62,19)" fg:x="186056" fg:w="101"/><text x="38.1268%" y="623.50"></text></g><g><title>mark_page_accessed (59 samples, 0.01%)</title><rect x="37.8854%" y="597" width="0.0120%" height="15" fill="rgb(223,110,41)" fg:x="186098" fg:w="59"/><text x="38.1354%" y="607.50"></text></g><g><title>find_extent_buffer (366 samples, 0.07%)</title><rect x="37.8231%" y="629" width="0.0745%" height="15" fill="rgb(208,224,4)" fg:x="185792" fg:w="366"/><text x="38.0731%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (50 samples, 0.01%)</title><rect x="37.8978%" y="629" width="0.0102%" height="15" fill="rgb(241,137,19)" fg:x="186159" fg:w="50"/><text x="38.1478%" y="639.50"></text></g><g><title>reada_for_balance (585 samples, 0.12%)</title><rect x="37.7968%" y="645" width="0.1191%" height="15" fill="rgb(244,24,17)" fg:x="185663" fg:w="585"/><text x="38.0468%" y="655.50"></text></g><g><title>release_extent_buffer (53 samples, 0.01%)</title><rect x="37.9159%" y="645" width="0.0108%" height="15" fill="rgb(245,178,49)" fg:x="186248" fg:w="53"/><text x="38.1659%" y="655.50"></text></g><g><title>btrfs_lookup_inode (3,905 samples, 0.79%)</title><rect x="37.1655%" y="677" width="0.7950%" height="15" fill="rgb(219,160,38)" fg:x="182562" fg:w="3905"/><text x="37.4155%" y="687.50"></text></g><g><title>btrfs_search_slot (3,880 samples, 0.79%)</title><rect x="37.1706%" y="661" width="0.7899%" height="15" fill="rgb(228,137,14)" fg:x="182587" fg:w="3880"/><text x="37.4206%" y="671.50"></text></g><g><title>unlock_up (166 samples, 0.03%)</title><rect x="37.9267%" y="645" width="0.0338%" height="15" fill="rgb(237,134,11)" fg:x="186301" fg:w="166"/><text x="38.1767%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (152 samples, 0.03%)</title><rect x="37.9605%" y="677" width="0.0309%" height="15" fill="rgb(211,126,44)" fg:x="186467" fg:w="152"/><text x="38.2105%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (106 samples, 0.02%)</title><rect x="37.9699%" y="661" width="0.0216%" height="15" fill="rgb(226,171,33)" fg:x="186513" fg:w="106"/><text x="38.2199%" y="671.50"></text></g><g><title>btrfs_release_delayed_inode (54 samples, 0.01%)</title><rect x="37.9915%" y="677" width="0.0110%" height="15" fill="rgb(253,99,13)" fg:x="186619" fg:w="54"/><text x="38.2415%" y="687.50"></text></g><g><title>btrfs_tree_unlock (56 samples, 0.01%)</title><rect x="38.0118%" y="661" width="0.0114%" height="15" fill="rgb(244,48,7)" fg:x="186719" fg:w="56"/><text x="38.2618%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (174 samples, 0.04%)</title><rect x="38.0238%" y="661" width="0.0354%" height="15" fill="rgb(244,217,54)" fg:x="186778" fg:w="174"/><text x="38.2738%" y="671.50"></text></g><g><title>_raw_spin_lock (146 samples, 0.03%)</title><rect x="38.0295%" y="645" width="0.0297%" height="15" fill="rgb(224,15,18)" fg:x="186806" fg:w="146"/><text x="38.2795%" y="655.50"></text></g><g><title>btrfs_release_path (483 samples, 0.10%)</title><rect x="38.0025%" y="677" width="0.0983%" height="15" fill="rgb(244,99,12)" fg:x="186673" fg:w="483"/><text x="38.2525%" y="687.50"></text></g><g><title>release_extent_buffer (204 samples, 0.04%)</title><rect x="38.0593%" y="661" width="0.0415%" height="15" fill="rgb(233,226,8)" fg:x="186952" fg:w="204"/><text x="38.3093%" y="671.50"></text></g><g><title>finish_one_item (219 samples, 0.04%)</title><rect x="38.1083%" y="677" width="0.0446%" height="15" fill="rgb(229,211,3)" fg:x="187193" fg:w="219"/><text x="38.3583%" y="687.50"></text></g><g><title>read_extent_buffer (70 samples, 0.01%)</title><rect x="38.1529%" y="677" width="0.0143%" height="15" fill="rgb(216,140,21)" fg:x="187412" fg:w="70"/><text x="38.4029%" y="687.50"></text></g><g><title>__btrfs_update_delayed_inode (14,488 samples, 2.95%)</title><rect x="35.2639%" y="693" width="2.9494%" height="15" fill="rgb(234,122,30)" fg:x="173221" fg:w="14488"/><text x="35.5139%" y="703.50">__..</text></g><g><title>write_extent_buffer (227 samples, 0.05%)</title><rect x="38.1671%" y="677" width="0.0462%" height="15" fill="rgb(236,25,46)" fg:x="187482" fg:w="227"/><text x="38.4171%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (59 samples, 0.01%)</title><rect x="38.2274%" y="693" width="0.0120%" height="15" fill="rgb(217,52,54)" fg:x="187778" fg:w="59"/><text x="38.4774%" y="703.50"></text></g><g><title>memset_erms (58 samples, 0.01%)</title><rect x="38.2581%" y="677" width="0.0118%" height="15" fill="rgb(222,29,26)" fg:x="187929" fg:w="58"/><text x="38.5081%" y="687.50"></text></g><g><title>kmem_cache_alloc (178 samples, 0.04%)</title><rect x="38.2406%" y="693" width="0.0362%" height="15" fill="rgb(216,177,29)" fg:x="187843" fg:w="178"/><text x="38.4906%" y="703.50"></text></g><g><title>kmem_cache_free (118 samples, 0.02%)</title><rect x="38.2769%" y="693" width="0.0240%" height="15" fill="rgb(247,136,51)" fg:x="188021" fg:w="118"/><text x="38.5269%" y="703.50"></text></g><g><title>mutex_lock (108 samples, 0.02%)</title><rect x="38.3009%" y="693" width="0.0220%" height="15" fill="rgb(231,47,47)" fg:x="188139" fg:w="108"/><text x="38.5509%" y="703.50"></text></g><g><title>mutex_unlock (89 samples, 0.02%)</title><rect x="38.3229%" y="693" width="0.0181%" height="15" fill="rgb(211,192,36)" fg:x="188247" fg:w="89"/><text x="38.5729%" y="703.50"></text></g><g><title>join_transaction (187 samples, 0.04%)</title><rect x="38.3760%" y="677" width="0.0381%" height="15" fill="rgb(229,156,32)" fg:x="188508" fg:w="187"/><text x="38.6260%" y="687.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="38.4004%" y="661" width="0.0136%" height="15" fill="rgb(248,213,20)" fg:x="188628" fg:w="67"/><text x="38.6504%" y="671.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="38.4308%" y="661" width="0.0110%" height="15" fill="rgb(217,64,7)" fg:x="188777" fg:w="54"/><text x="38.6808%" y="671.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (16,427 samples, 3.34%)</title><rect x="35.1027%" y="709" width="3.3442%" height="15" fill="rgb(232,142,8)" fg:x="172429" fg:w="16427"/><text x="35.3527%" y="719.50">btr..</text></g><g><title>start_transaction (520 samples, 0.11%)</title><rect x="38.3410%" y="693" width="0.1059%" height="15" fill="rgb(224,92,44)" fg:x="188336" fg:w="520"/><text x="38.5910%" y="703.50"></text></g><g><title>kmem_cache_alloc (161 samples, 0.03%)</title><rect x="38.4141%" y="677" width="0.0328%" height="15" fill="rgb(214,169,17)" fg:x="188695" fg:w="161"/><text x="38.6641%" y="687.50"></text></g><g><title>btrfs_get_32 (77 samples, 0.02%)</title><rect x="38.4762%" y="677" width="0.0157%" height="15" fill="rgb(210,59,37)" fg:x="189000" fg:w="77"/><text x="38.7262%" y="687.50"></text></g><g><title>btrfs_mark_buffer_dirty (137 samples, 0.03%)</title><rect x="38.4919%" y="677" width="0.0279%" height="15" fill="rgb(214,116,48)" fg:x="189077" fg:w="137"/><text x="38.7419%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (87 samples, 0.02%)</title><rect x="38.5020%" y="661" width="0.0177%" height="15" fill="rgb(244,191,6)" fg:x="189127" fg:w="87"/><text x="38.7520%" y="671.50"></text></g><g><title>btrfs_del_items (433 samples, 0.09%)</title><rect x="38.4550%" y="693" width="0.0881%" height="15" fill="rgb(241,50,52)" fg:x="188896" fg:w="433"/><text x="38.7050%" y="703.50"></text></g><g><title>leaf_space_used (115 samples, 0.02%)</title><rect x="38.5197%" y="677" width="0.0234%" height="15" fill="rgb(236,75,39)" fg:x="189214" fg:w="115"/><text x="38.7697%" y="687.50"></text></g><g><title>btrfs_get_32 (80 samples, 0.02%)</title><rect x="38.5269%" y="661" width="0.0163%" height="15" fill="rgb(236,99,0)" fg:x="189249" fg:w="80"/><text x="38.7769%" y="671.50"></text></g><g><title>btrfs_tree_unlock (123 samples, 0.03%)</title><rect x="38.5539%" y="661" width="0.0250%" height="15" fill="rgb(207,202,15)" fg:x="189382" fg:w="123"/><text x="38.8039%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (173 samples, 0.04%)</title><rect x="38.5800%" y="661" width="0.0352%" height="15" fill="rgb(233,207,14)" fg:x="189510" fg:w="173"/><text x="38.8300%" y="671.50"></text></g><g><title>_raw_spin_lock (137 samples, 0.03%)</title><rect x="38.5873%" y="645" width="0.0279%" height="15" fill="rgb(226,27,51)" fg:x="189546" fg:w="137"/><text x="38.8373%" y="655.50"></text></g><g><title>btrfs_free_path (506 samples, 0.10%)</title><rect x="38.5432%" y="693" width="0.1030%" height="15" fill="rgb(206,104,42)" fg:x="189329" fg:w="506"/><text x="38.7932%" y="703.50"></text></g><g><title>btrfs_release_path (501 samples, 0.10%)</title><rect x="38.5442%" y="677" width="0.1020%" height="15" fill="rgb(212,225,4)" fg:x="189334" fg:w="501"/><text x="38.7942%" y="687.50"></text></g><g><title>release_extent_buffer (152 samples, 0.03%)</title><rect x="38.6152%" y="661" width="0.0309%" height="15" fill="rgb(233,96,42)" fg:x="189683" fg:w="152"/><text x="38.8652%" y="671.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="38.7121%" y="645" width="0.0108%" height="15" fill="rgb(229,21,32)" fg:x="190159" fg:w="53"/><text x="38.9621%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (91 samples, 0.02%)</title><rect x="38.7062%" y="661" width="0.0185%" height="15" fill="rgb(226,216,24)" fg:x="190130" fg:w="91"/><text x="38.9562%" y="671.50"></text></g><g><title>__btrfs_read_lock_root_node (161 samples, 0.03%)</title><rect x="38.7024%" y="677" width="0.0328%" height="15" fill="rgb(221,163,17)" fg:x="190111" fg:w="161"/><text x="38.9524%" y="687.50"></text></g><g><title>btrfs_root_node (51 samples, 0.01%)</title><rect x="38.7247%" y="661" width="0.0104%" height="15" fill="rgb(216,216,42)" fg:x="190221" fg:w="51"/><text x="38.9747%" y="671.50"></text></g><g><title>__btrfs_tree_lock (97 samples, 0.02%)</title><rect x="38.7486%" y="661" width="0.0197%" height="15" fill="rgb(240,118,7)" fg:x="190338" fg:w="97"/><text x="38.9986%" y="671.50"></text></g><g><title>btrfs_lock_root_node (161 samples, 0.03%)</title><rect x="38.7469%" y="677" width="0.0328%" height="15" fill="rgb(221,67,37)" fg:x="190330" fg:w="161"/><text x="38.9969%" y="687.50"></text></g><g><title>btrfs_root_node (56 samples, 0.01%)</title><rect x="38.7683%" y="661" width="0.0114%" height="15" fill="rgb(241,32,44)" fg:x="190435" fg:w="56"/><text x="39.0183%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (153 samples, 0.03%)</title><rect x="38.7797%" y="677" width="0.0311%" height="15" fill="rgb(235,204,43)" fg:x="190491" fg:w="153"/><text x="39.0297%" y="687.50"></text></g><g><title>_raw_write_lock (82 samples, 0.02%)</title><rect x="38.8253%" y="661" width="0.0167%" height="15" fill="rgb(213,116,10)" fg:x="190715" fg:w="82"/><text x="39.0753%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (124 samples, 0.03%)</title><rect x="38.8200%" y="677" width="0.0252%" height="15" fill="rgb(239,15,48)" fg:x="190689" fg:w="124"/><text x="39.0700%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (59 samples, 0.01%)</title><rect x="38.8459%" y="677" width="0.0120%" height="15" fill="rgb(207,123,36)" fg:x="190816" fg:w="59"/><text x="39.0959%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (776 samples, 0.16%)</title><rect x="38.8579%" y="677" width="0.1580%" height="15" fill="rgb(209,103,30)" fg:x="190875" fg:w="776"/><text x="39.1079%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (67 samples, 0.01%)</title><rect x="39.0403%" y="661" width="0.0136%" height="15" fill="rgb(238,100,19)" fg:x="191771" fg:w="67"/><text x="39.2903%" y="671.50"></text></g><g><title>btrfs_get_64 (119 samples, 0.02%)</title><rect x="39.0539%" y="661" width="0.0242%" height="15" fill="rgb(244,30,14)" fg:x="191838" fg:w="119"/><text x="39.3039%" y="671.50"></text></g><g><title>__radix_tree_lookup (411 samples, 0.08%)</title><rect x="39.1232%" y="645" width="0.0837%" height="15" fill="rgb(249,174,6)" fg:x="192178" fg:w="411"/><text x="39.3732%" y="655.50"></text></g><g><title>check_buffer_tree_ref (60 samples, 0.01%)</title><rect x="39.2141%" y="629" width="0.0122%" height="15" fill="rgb(235,213,41)" fg:x="192625" fg:w="60"/><text x="39.4641%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (227 samples, 0.05%)</title><rect x="39.2074%" y="645" width="0.0462%" height="15" fill="rgb(213,118,6)" fg:x="192592" fg:w="227"/><text x="39.4574%" y="655.50"></text></g><g><title>mark_page_accessed (134 samples, 0.03%)</title><rect x="39.2264%" y="629" width="0.0273%" height="15" fill="rgb(235,44,51)" fg:x="192685" fg:w="134"/><text x="39.4764%" y="639.50"></text></g><g><title>find_extent_buffer (817 samples, 0.17%)</title><rect x="39.0892%" y="661" width="0.1663%" height="15" fill="rgb(217,9,53)" fg:x="192011" fg:w="817"/><text x="39.3392%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (1,334 samples, 0.27%)</title><rect x="39.0159%" y="677" width="0.2716%" height="15" fill="rgb(237,172,34)" fg:x="191651" fg:w="1334"/><text x="39.2659%" y="687.50"></text></g><g><title>read_extent_buffer (157 samples, 0.03%)</title><rect x="39.2555%" y="661" width="0.0320%" height="15" fill="rgb(206,206,11)" fg:x="192828" fg:w="157"/><text x="39.5055%" y="671.50"></text></g><g><title>__radix_tree_lookup (83 samples, 0.02%)</title><rect x="39.3084%" y="645" width="0.0169%" height="15" fill="rgb(214,149,29)" fg:x="193088" fg:w="83"/><text x="39.5584%" y="655.50"></text></g><g><title>find_extent_buffer (162 samples, 0.03%)</title><rect x="39.3027%" y="661" width="0.0330%" height="15" fill="rgb(208,123,3)" fg:x="193060" fg:w="162"/><text x="39.5527%" y="671.50"></text></g><g><title>mark_extent_buffer_accessed (51 samples, 0.01%)</title><rect x="39.3253%" y="645" width="0.0104%" height="15" fill="rgb(229,126,4)" fg:x="193171" fg:w="51"/><text x="39.5753%" y="655.50"></text></g><g><title>reada_for_balance (282 samples, 0.06%)</title><rect x="39.2874%" y="677" width="0.0574%" height="15" fill="rgb(222,92,36)" fg:x="192985" fg:w="282"/><text x="39.5374%" y="687.50"></text></g><g><title>release_extent_buffer (58 samples, 0.01%)</title><rect x="39.3448%" y="677" width="0.0118%" height="15" fill="rgb(216,39,41)" fg:x="193267" fg:w="58"/><text x="39.5948%" y="687.50"></text></g><g><title>btrfs_search_slot (3,678 samples, 0.75%)</title><rect x="38.6462%" y="693" width="0.7488%" height="15" fill="rgb(253,127,28)" fg:x="189835" fg:w="3678"/><text x="38.8962%" y="703.50"></text></g><g><title>unlock_up (188 samples, 0.04%)</title><rect x="39.3567%" y="677" width="0.0383%" height="15" fill="rgb(249,152,51)" fg:x="193325" fg:w="188"/><text x="39.6067%" y="687.50"></text></g><g><title>memset_erms (60 samples, 0.01%)</title><rect x="39.4096%" y="677" width="0.0122%" height="15" fill="rgb(209,123,42)" fg:x="193585" fg:w="60"/><text x="39.6596%" y="687.50"></text></g><g><title>kmem_cache_alloc (168 samples, 0.03%)</title><rect x="39.3949%" y="693" width="0.0342%" height="15" fill="rgb(241,118,22)" fg:x="193513" fg:w="168"/><text x="39.6449%" y="703.50"></text></g><g><title>btrfs_del_orphan_item (4,927 samples, 1.00%)</title><rect x="38.4469%" y="709" width="1.0030%" height="15" fill="rgb(208,25,7)" fg:x="188856" fg:w="4927"/><text x="38.6969%" y="719.50"></text></g><g><title>kmem_cache_free (102 samples, 0.02%)</title><rect x="39.4291%" y="693" width="0.0208%" height="15" fill="rgb(243,144,39)" fg:x="193681" fg:w="102"/><text x="39.6791%" y="703.50"></text></g><g><title>_raw_spin_lock (114 samples, 0.02%)</title><rect x="39.4619%" y="677" width="0.0232%" height="15" fill="rgb(250,50,5)" fg:x="193842" fg:w="114"/><text x="39.7119%" y="687.50"></text></g><g><title>btrfs_free_block_rsv (199 samples, 0.04%)</title><rect x="39.4505%" y="709" width="0.0405%" height="15" fill="rgb(207,67,11)" fg:x="193786" fg:w="199"/><text x="39.7005%" y="719.50"></text></g><g><title>btrfs_block_rsv_release (195 samples, 0.04%)</title><rect x="39.4513%" y="693" width="0.0397%" height="15" fill="rgb(245,204,40)" fg:x="193790" fg:w="195"/><text x="39.7013%" y="703.50"></text></g><g><title>mutex_lock (55 samples, 0.01%)</title><rect x="39.5702%" y="677" width="0.0112%" height="15" fill="rgb(238,228,24)" fg:x="194374" fg:w="55"/><text x="39.8202%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (226 samples, 0.05%)</title><rect x="39.5486%" y="693" width="0.0460%" height="15" fill="rgb(217,116,22)" fg:x="194268" fg:w="226"/><text x="39.7986%" y="703.50"></text></g><g><title>mutex_unlock (65 samples, 0.01%)</title><rect x="39.5814%" y="677" width="0.0132%" height="15" fill="rgb(234,98,12)" fg:x="194429" fg:w="65"/><text x="39.8314%" y="687.50"></text></g><g><title>_raw_spin_lock (62 samples, 0.01%)</title><rect x="39.6278%" y="677" width="0.0126%" height="15" fill="rgb(242,170,50)" fg:x="194657" fg:w="62"/><text x="39.8778%" y="687.50"></text></g><g><title>alloc_extent_state (172 samples, 0.04%)</title><rect x="39.6404%" y="677" width="0.0350%" height="15" fill="rgb(235,7,5)" fg:x="194719" fg:w="172"/><text x="39.8904%" y="687.50"></text></g><g><title>kmem_cache_alloc (136 samples, 0.03%)</title><rect x="39.6478%" y="661" width="0.0277%" height="15" fill="rgb(241,114,28)" fg:x="194755" fg:w="136"/><text x="39.8978%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (65 samples, 0.01%)</title><rect x="39.6999%" y="645" width="0.0132%" height="15" fill="rgb(246,112,42)" fg:x="195011" fg:w="65"/><text x="39.9499%" y="655.50"></text></g><g><title>__wake_up_common_lock (171 samples, 0.03%)</title><rect x="39.6838%" y="661" width="0.0348%" height="15" fill="rgb(248,228,14)" fg:x="194932" fg:w="171"/><text x="39.9338%" y="671.50"></text></g><g><title>kmem_cache_free (137 samples, 0.03%)</title><rect x="39.7341%" y="661" width="0.0279%" height="15" fill="rgb(208,133,18)" fg:x="195179" fg:w="137"/><text x="39.9841%" y="671.50"></text></g><g><title>clear_state_bit (442 samples, 0.09%)</title><rect x="39.6755%" y="677" width="0.0900%" height="15" fill="rgb(207,35,49)" fg:x="194891" fg:w="442"/><text x="39.9255%" y="687.50"></text></g><g><title>free_extent_state (62 samples, 0.01%)</title><rect x="39.7654%" y="677" width="0.0126%" height="15" fill="rgb(205,68,36)" fg:x="195333" fg:w="62"/><text x="40.0154%" y="687.50"></text></g><g><title>__clear_extent_bit (1,020 samples, 0.21%)</title><rect x="39.5946%" y="693" width="0.2076%" height="15" fill="rgb(245,62,40)" fg:x="194494" fg:w="1020"/><text x="39.8446%" y="703.50"></text></g><g><title>kmem_cache_free (119 samples, 0.02%)</title><rect x="39.7781%" y="677" width="0.0242%" height="15" fill="rgb(228,27,24)" fg:x="195395" fg:w="119"/><text x="40.0281%" y="687.50"></text></g><g><title>_find_next_bit.constprop.0 (1,286 samples, 0.26%)</title><rect x="40.0191%" y="613" width="0.2618%" height="15" fill="rgb(253,19,12)" fg:x="196579" fg:w="1286"/><text x="40.2691%" y="623.50"></text></g><g><title>find_next_zero_bit (111 samples, 0.02%)</title><rect x="40.2813%" y="613" width="0.0226%" height="15" fill="rgb(232,28,20)" fg:x="197867" fg:w="111"/><text x="40.5313%" y="623.50"></text></g><g><title>steal_from_bitmap.part.0 (1,585 samples, 0.32%)</title><rect x="39.9816%" y="629" width="0.3227%" height="15" fill="rgb(218,35,51)" fg:x="196395" fg:w="1585"/><text x="40.2316%" y="639.50"></text></g><g><title>__btrfs_add_free_space (1,649 samples, 0.34%)</title><rect x="39.9743%" y="645" width="0.3357%" height="15" fill="rgb(212,90,40)" fg:x="196359" fg:w="1649"/><text x="40.2243%" y="655.50"></text></g><g><title>btrfs_add_delayed_tree_ref (70 samples, 0.01%)</title><rect x="40.3143%" y="645" width="0.0143%" height="15" fill="rgb(220,172,12)" fg:x="198029" fg:w="70"/><text x="40.5643%" y="655.50"></text></g><g><title>btrfs_free_tree_block (1,809 samples, 0.37%)</title><rect x="39.9733%" y="661" width="0.3683%" height="15" fill="rgb(226,159,20)" fg:x="196354" fg:w="1809"/><text x="40.2233%" y="671.50"></text></g><g><title>check_ref_cleanup (57 samples, 0.01%)</title><rect x="40.3300%" y="645" width="0.0116%" height="15" fill="rgb(234,205,16)" fg:x="198106" fg:w="57"/><text x="40.5800%" y="655.50"></text></g><g><title>btrfs_del_leaf (1,849 samples, 0.38%)</title><rect x="39.9725%" y="677" width="0.3764%" height="15" fill="rgb(207,9,39)" fg:x="196350" fg:w="1849"/><text x="40.2225%" y="687.50"></text></g><g><title>btrfs_get_32 (168 samples, 0.03%)</title><rect x="40.3489%" y="677" width="0.0342%" height="15" fill="rgb(249,143,15)" fg:x="198199" fg:w="168"/><text x="40.5989%" y="687.50"></text></g><g><title>btrfs_get_token_32 (1,803 samples, 0.37%)</title><rect x="40.3831%" y="677" width="0.3671%" height="15" fill="rgb(253,133,29)" fg:x="198367" fg:w="1803"/><text x="40.6331%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (303 samples, 0.06%)</title><rect x="40.6885%" y="661" width="0.0617%" height="15" fill="rgb(221,187,0)" fg:x="199867" fg:w="303"/><text x="40.9385%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (120 samples, 0.02%)</title><rect x="40.7501%" y="677" width="0.0244%" height="15" fill="rgb(205,204,26)" fg:x="200170" fg:w="120"/><text x="41.0001%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (97 samples, 0.02%)</title><rect x="40.7548%" y="661" width="0.0197%" height="15" fill="rgb(224,68,54)" fg:x="200193" fg:w="97"/><text x="41.0048%" y="671.50"></text></g><g><title>btrfs_set_token_32 (1,876 samples, 0.38%)</title><rect x="40.7764%" y="677" width="0.3819%" height="15" fill="rgb(209,67,4)" fg:x="200299" fg:w="1876"/><text x="41.0264%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (402 samples, 0.08%)</title><rect x="41.0765%" y="661" width="0.0818%" height="15" fill="rgb(228,229,18)" fg:x="201773" fg:w="402"/><text x="41.3265%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (145 samples, 0.03%)</title><rect x="41.1685%" y="661" width="0.0295%" height="15" fill="rgb(231,89,13)" fg:x="202225" fg:w="145"/><text x="41.4185%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (95 samples, 0.02%)</title><rect x="41.1787%" y="645" width="0.0193%" height="15" fill="rgb(210,182,18)" fg:x="202275" fg:w="95"/><text x="41.4287%" y="655.50"></text></g><g><title>tree_mod_log_insert_key (56 samples, 0.01%)</title><rect x="41.1980%" y="661" width="0.0114%" height="15" fill="rgb(240,105,2)" fg:x="202370" fg:w="56"/><text x="41.4480%" y="671.50"></text></g><g><title>fixup_low_keys (286 samples, 0.06%)</title><rect x="41.1638%" y="677" width="0.0582%" height="15" fill="rgb(207,170,50)" fg:x="202202" fg:w="286"/><text x="41.4138%" y="687.50"></text></g><g><title>write_extent_buffer (62 samples, 0.01%)</title><rect x="41.2094%" y="661" width="0.0126%" height="15" fill="rgb(232,133,24)" fg:x="202426" fg:w="62"/><text x="41.4594%" y="671.50"></text></g><g><title>leaf_space_used (126 samples, 0.03%)</title><rect x="41.2257%" y="677" width="0.0257%" height="15" fill="rgb(235,166,27)" fg:x="202506" fg:w="126"/><text x="41.4757%" y="687.50"></text></g><g><title>btrfs_get_32 (90 samples, 0.02%)</title><rect x="41.2330%" y="661" width="0.0183%" height="15" fill="rgb(209,19,13)" fg:x="202542" fg:w="90"/><text x="41.4830%" y="671.50"></text></g><g><title>memcpy_extent_buffer (278 samples, 0.06%)</title><rect x="41.2514%" y="677" width="0.0566%" height="15" fill="rgb(226,79,39)" fg:x="202632" fg:w="278"/><text x="41.5014%" y="687.50"></text></g><g><title>memmove (217 samples, 0.04%)</title><rect x="41.2638%" y="661" width="0.0442%" height="15" fill="rgb(222,163,10)" fg:x="202693" fg:w="217"/><text x="41.5138%" y="671.50"></text></g><g><title>copy_pages (268 samples, 0.05%)</title><rect x="41.3322%" y="661" width="0.0546%" height="15" fill="rgb(214,44,19)" fg:x="203029" fg:w="268"/><text x="41.5822%" y="671.50"></text></g><g><title>memmove_extent_buffer (2,075 samples, 0.42%)</title><rect x="41.3079%" y="677" width="0.4224%" height="15" fill="rgb(210,217,13)" fg:x="202910" fg:w="2075"/><text x="41.5579%" y="687.50"></text></g><g><title>memmove (1,688 samples, 0.34%)</title><rect x="41.3867%" y="661" width="0.3436%" height="15" fill="rgb(237,61,54)" fg:x="203297" fg:w="1688"/><text x="41.6367%" y="671.50"></text></g><g><title>clear_extent_buffer_dirty (75 samples, 0.02%)</title><rect x="41.7544%" y="645" width="0.0153%" height="15" fill="rgb(226,184,24)" fg:x="205103" fg:w="75"/><text x="42.0044%" y="655.50"></text></g><g><title>__push_leaf_left (223 samples, 0.05%)</title><rect x="41.7344%" y="661" width="0.0454%" height="15" fill="rgb(223,226,4)" fg:x="205005" fg:w="223"/><text x="41.9844%" y="671.50"></text></g><g><title>btrfs_read_node_slot (52 samples, 0.01%)</title><rect x="41.7849%" y="661" width="0.0106%" height="15" fill="rgb(210,26,41)" fg:x="205253" fg:w="52"/><text x="42.0349%" y="671.50"></text></g><g><title>push_leaf_left (331 samples, 0.07%)</title><rect x="41.7304%" y="677" width="0.0674%" height="15" fill="rgb(220,221,6)" fg:x="204985" fg:w="331"/><text x="41.9804%" y="687.50"></text></g><g><title>__push_leaf_right (167 samples, 0.03%)</title><rect x="41.8016%" y="661" width="0.0340%" height="15" fill="rgb(225,89,49)" fg:x="205335" fg:w="167"/><text x="42.0516%" y="671.50"></text></g><g><title>btrfs_read_node_slot (80 samples, 0.02%)</title><rect x="41.8434%" y="661" width="0.0163%" height="15" fill="rgb(218,70,45)" fg:x="205540" fg:w="80"/><text x="42.0934%" y="671.50"></text></g><g><title>read_tree_block (63 samples, 0.01%)</title><rect x="41.8468%" y="645" width="0.0128%" height="15" fill="rgb(238,166,21)" fg:x="205557" fg:w="63"/><text x="42.0968%" y="655.50"></text></g><g><title>push_leaf_right (336 samples, 0.07%)</title><rect x="41.7978%" y="677" width="0.0684%" height="15" fill="rgb(224,141,44)" fg:x="205316" fg:w="336"/><text x="42.0478%" y="687.50"></text></g><g><title>read_extent_buffer (65 samples, 0.01%)</title><rect x="41.8662%" y="677" width="0.0132%" height="15" fill="rgb(230,12,49)" fg:x="205652" fg:w="65"/><text x="42.1162%" y="687.50"></text></g><g><title>btrfs_del_items (10,230 samples, 2.08%)</title><rect x="39.8041%" y="693" width="2.0826%" height="15" fill="rgb(212,174,12)" fg:x="195523" fg:w="10230"/><text x="40.0541%" y="703.50">b..</text></g><g><title>_raw_write_lock (57 samples, 0.01%)</title><rect x="41.8965%" y="677" width="0.0116%" height="15" fill="rgb(246,67,9)" fg:x="205801" fg:w="57"/><text x="42.1465%" y="687.50"></text></g><g><title>memset_erms (135 samples, 0.03%)</title><rect x="41.9610%" y="645" width="0.0275%" height="15" fill="rgb(239,35,23)" fg:x="206118" fg:w="135"/><text x="42.2110%" y="655.50"></text></g><g><title>alloc_extent_map (480 samples, 0.10%)</title><rect x="41.9081%" y="677" width="0.0977%" height="15" fill="rgb(211,167,0)" fg:x="205858" fg:w="480"/><text x="42.1581%" y="687.50"></text></g><g><title>kmem_cache_alloc (452 samples, 0.09%)</title><rect x="41.9138%" y="661" width="0.0920%" height="15" fill="rgb(225,119,45)" fg:x="205886" fg:w="452"/><text x="42.1638%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (85 samples, 0.02%)</title><rect x="41.9885%" y="645" width="0.0173%" height="15" fill="rgb(210,162,6)" fg:x="206253" fg:w="85"/><text x="42.2385%" y="655.50"></text></g><g><title>free_extent_map (124 samples, 0.03%)</title><rect x="42.0058%" y="677" width="0.0252%" height="15" fill="rgb(208,118,35)" fg:x="206338" fg:w="124"/><text x="42.2558%" y="687.50"></text></g><g><title>kmem_cache_free (244 samples, 0.05%)</title><rect x="42.0311%" y="677" width="0.0497%" height="15" fill="rgb(239,4,53)" fg:x="206462" fg:w="244"/><text x="42.2811%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (66 samples, 0.01%)</title><rect x="42.0673%" y="661" width="0.0134%" height="15" fill="rgb(213,130,21)" fg:x="206640" fg:w="66"/><text x="42.3173%" y="671.50"></text></g><g><title>btrfs_drop_extent_cache (956 samples, 0.19%)</title><rect x="41.8867%" y="693" width="0.1946%" height="15" fill="rgb(235,148,0)" fg:x="205753" fg:w="956"/><text x="42.1367%" y="703.50"></text></g><g><title>btrfs_tree_unlock (124 samples, 0.03%)</title><rect x="42.0962%" y="661" width="0.0252%" height="15" fill="rgb(244,224,18)" fg:x="206782" fg:w="124"/><text x="42.3462%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (167 samples, 0.03%)</title><rect x="42.1216%" y="661" width="0.0340%" height="15" fill="rgb(211,214,4)" fg:x="206907" fg:w="167"/><text x="42.3716%" y="671.50"></text></g><g><title>_raw_spin_lock (138 samples, 0.03%)</title><rect x="42.1275%" y="645" width="0.0281%" height="15" fill="rgb(206,119,25)" fg:x="206936" fg:w="138"/><text x="42.3775%" y="655.50"></text></g><g><title>btrfs_free_path (529 samples, 0.11%)</title><rect x="42.0813%" y="693" width="0.1077%" height="15" fill="rgb(243,93,47)" fg:x="206709" fg:w="529"/><text x="42.3313%" y="703.50"></text></g><g><title>btrfs_release_path (520 samples, 0.11%)</title><rect x="42.0832%" y="677" width="0.1059%" height="15" fill="rgb(224,194,6)" fg:x="206718" fg:w="520"/><text x="42.3332%" y="687.50"></text></g><g><title>release_extent_buffer (164 samples, 0.03%)</title><rect x="42.1556%" y="661" width="0.0334%" height="15" fill="rgb(243,229,6)" fg:x="207074" fg:w="164"/><text x="42.4056%" y="671.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="42.2295%" y="645" width="0.0124%" height="15" fill="rgb(207,23,50)" fg:x="207437" fg:w="61"/><text x="42.4795%" y="655.50"></text></g><g><title>memset_erms (57 samples, 0.01%)</title><rect x="42.2717%" y="613" width="0.0116%" height="15" fill="rgb(253,192,32)" fg:x="207644" fg:w="57"/><text x="42.5217%" y="623.50"></text></g><g><title>alloc_extent_state (247 samples, 0.05%)</title><rect x="42.2420%" y="645" width="0.0503%" height="15" fill="rgb(213,21,6)" fg:x="207498" fg:w="247"/><text x="42.4920%" y="655.50"></text></g><g><title>kmem_cache_alloc (221 samples, 0.04%)</title><rect x="42.2473%" y="629" width="0.0450%" height="15" fill="rgb(243,151,13)" fg:x="207524" fg:w="221"/><text x="42.4973%" y="639.50"></text></g><g><title>free_extent_state (62 samples, 0.01%)</title><rect x="42.2922%" y="645" width="0.0126%" height="15" fill="rgb(233,165,41)" fg:x="207745" fg:w="62"/><text x="42.5422%" y="655.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (590 samples, 0.12%)</title><rect x="42.2104%" y="693" width="0.1201%" height="15" fill="rgb(246,176,45)" fg:x="207343" fg:w="590"/><text x="42.4604%" y="703.50"></text></g><g><title>clear_extent_bit (558 samples, 0.11%)</title><rect x="42.2169%" y="677" width="0.1136%" height="15" fill="rgb(217,170,52)" fg:x="207375" fg:w="558"/><text x="42.4669%" y="687.50"></text></g><g><title>__clear_extent_bit (546 samples, 0.11%)</title><rect x="42.2194%" y="661" width="0.1112%" height="15" fill="rgb(214,203,54)" fg:x="207387" fg:w="546"/><text x="42.4694%" y="671.50"></text></g><g><title>kmem_cache_free (126 samples, 0.03%)</title><rect x="42.3049%" y="645" width="0.0257%" height="15" fill="rgb(248,215,49)" fg:x="207807" fg:w="126"/><text x="42.5549%" y="655.50"></text></g><g><title>btrfs_inode_safe_disk_i_size_write (146 samples, 0.03%)</title><rect x="42.3305%" y="693" width="0.0297%" height="15" fill="rgb(208,46,10)" fg:x="207933" fg:w="146"/><text x="42.5805%" y="703.50"></text></g><g><title>find_contiguous_extent_bit (69 samples, 0.01%)</title><rect x="42.3462%" y="677" width="0.0140%" height="15" fill="rgb(254,5,31)" fg:x="208010" fg:w="69"/><text x="42.5962%" y="687.50"></text></g><g><title>__btrfs_kill_delayed_node (103 samples, 0.02%)</title><rect x="42.3655%" y="677" width="0.0210%" height="15" fill="rgb(222,104,33)" fg:x="208105" fg:w="103"/><text x="42.6155%" y="687.50"></text></g><g><title>mutex_lock (90 samples, 0.02%)</title><rect x="42.3682%" y="661" width="0.0183%" height="15" fill="rgb(248,49,16)" fg:x="208118" fg:w="90"/><text x="42.6182%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (70 samples, 0.01%)</title><rect x="42.3865%" y="677" width="0.0143%" height="15" fill="rgb(232,198,41)" fg:x="208208" fg:w="70"/><text x="42.6365%" y="687.50"></text></g><g><title>btrfs_kill_delayed_inode_items (244 samples, 0.05%)</title><rect x="42.3602%" y="693" width="0.0497%" height="15" fill="rgb(214,125,3)" fg:x="208079" fg:w="244"/><text x="42.6102%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (79 samples, 0.02%)</title><rect x="42.4806%" y="661" width="0.0161%" height="15" fill="rgb(229,220,28)" fg:x="208670" fg:w="79"/><text x="42.7306%" y="671.50"></text></g><g><title>__btrfs_read_lock_root_node (161 samples, 0.03%)</title><rect x="42.4773%" y="677" width="0.0328%" height="15" fill="rgb(222,64,37)" fg:x="208654" fg:w="161"/><text x="42.7273%" y="687.50"></text></g><g><title>btrfs_root_node (66 samples, 0.01%)</title><rect x="42.4966%" y="661" width="0.0134%" height="15" fill="rgb(249,184,13)" fg:x="208749" fg:w="66"/><text x="42.7466%" y="671.50"></text></g><g><title>balance_level (52 samples, 0.01%)</title><rect x="42.5103%" y="677" width="0.0106%" height="15" fill="rgb(252,176,6)" fg:x="208816" fg:w="52"/><text x="42.7603%" y="687.50"></text></g><g><title>_raw_write_lock (65 samples, 0.01%)</title><rect x="42.5353%" y="645" width="0.0132%" height="15" fill="rgb(228,153,7)" fg:x="208939" fg:w="65"/><text x="42.7853%" y="655.50"></text></g><g><title>__btrfs_tree_lock (102 samples, 0.02%)</title><rect x="42.5282%" y="661" width="0.0208%" height="15" fill="rgb(242,193,5)" fg:x="208904" fg:w="102"/><text x="42.7782%" y="671.50"></text></g><g><title>btrfs_lock_root_node (165 samples, 0.03%)</title><rect x="42.5257%" y="677" width="0.0336%" height="15" fill="rgb(232,140,9)" fg:x="208892" fg:w="165"/><text x="42.7757%" y="687.50"></text></g><g><title>btrfs_root_node (51 samples, 0.01%)</title><rect x="42.5490%" y="661" width="0.0104%" height="15" fill="rgb(213,222,16)" fg:x="209006" fg:w="51"/><text x="42.7990%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (137 samples, 0.03%)</title><rect x="42.5593%" y="677" width="0.0279%" height="15" fill="rgb(222,75,50)" fg:x="209057" fg:w="137"/><text x="42.8093%" y="687.50"></text></g><g><title>btrfs_tree_read_unlock (58 samples, 0.01%)</title><rect x="42.5872%" y="677" width="0.0118%" height="15" fill="rgb(205,180,2)" fg:x="209194" fg:w="58"/><text x="42.8372%" y="687.50"></text></g><g><title>_raw_write_lock (82 samples, 0.02%)</title><rect x="42.6045%" y="661" width="0.0167%" height="15" fill="rgb(216,34,7)" fg:x="209279" fg:w="82"/><text x="42.8545%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (124 samples, 0.03%)</title><rect x="42.5990%" y="677" width="0.0252%" height="15" fill="rgb(253,16,32)" fg:x="209252" fg:w="124"/><text x="42.8490%" y="687.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="42.6273%" y="661" width="0.0128%" height="15" fill="rgb(208,97,28)" fg:x="209391" fg:w="63"/><text x="42.8773%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (77 samples, 0.02%)</title><rect x="42.6247%" y="677" width="0.0157%" height="15" fill="rgb(225,92,11)" fg:x="209378" fg:w="77"/><text x="42.8747%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (822 samples, 0.17%)</title><rect x="42.6404%" y="677" width="0.1673%" height="15" fill="rgb(243,38,12)" fg:x="209455" fg:w="822"/><text x="42.8904%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (71 samples, 0.01%)</title><rect x="42.8364%" y="661" width="0.0145%" height="15" fill="rgb(208,139,16)" fg:x="210418" fg:w="71"/><text x="43.0864%" y="671.50"></text></g><g><title>btrfs_get_64 (161 samples, 0.03%)</title><rect x="42.8509%" y="661" width="0.0328%" height="15" fill="rgb(227,24,9)" fg:x="210489" fg:w="161"/><text x="43.1009%" y="671.50"></text></g><g><title>__radix_tree_lookup (426 samples, 0.09%)</title><rect x="42.9178%" y="645" width="0.0867%" height="15" fill="rgb(206,62,11)" fg:x="210818" fg:w="426"/><text x="43.1678%" y="655.50"></text></g><g><title>check_buffer_tree_ref (52 samples, 0.01%)</title><rect x="43.0160%" y="629" width="0.0106%" height="15" fill="rgb(228,134,27)" fg:x="211300" fg:w="52"/><text x="43.2660%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (276 samples, 0.06%)</title><rect x="43.0048%" y="645" width="0.0562%" height="15" fill="rgb(205,55,33)" fg:x="211245" fg:w="276"/><text x="43.2548%" y="655.50"></text></g><g><title>mark_page_accessed (169 samples, 0.03%)</title><rect x="43.0265%" y="629" width="0.0344%" height="15" fill="rgb(243,75,43)" fg:x="211352" fg:w="169"/><text x="43.2765%" y="639.50"></text></g><g><title>find_extent_buffer (827 samples, 0.17%)</title><rect x="42.8946%" y="661" width="0.1684%" height="15" fill="rgb(223,27,42)" fg:x="210704" fg:w="827"/><text x="43.1446%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (1,399 samples, 0.28%)</title><rect x="42.8077%" y="677" width="0.2848%" height="15" fill="rgb(232,189,33)" fg:x="210277" fg:w="1399"/><text x="43.0577%" y="687.50"></text></g><g><title>read_extent_buffer (145 samples, 0.03%)</title><rect x="43.0630%" y="661" width="0.0295%" height="15" fill="rgb(210,9,39)" fg:x="211531" fg:w="145"/><text x="43.3130%" y="671.50"></text></g><g><title>__radix_tree_lookup (164 samples, 0.03%)</title><rect x="43.1245%" y="645" width="0.0334%" height="15" fill="rgb(242,85,26)" fg:x="211833" fg:w="164"/><text x="43.3745%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (94 samples, 0.02%)</title><rect x="43.1579%" y="645" width="0.0191%" height="15" fill="rgb(248,44,4)" fg:x="211997" fg:w="94"/><text x="43.4079%" y="655.50"></text></g><g><title>mark_page_accessed (55 samples, 0.01%)</title><rect x="43.1658%" y="629" width="0.0112%" height="15" fill="rgb(250,96,46)" fg:x="212036" fg:w="55"/><text x="43.4158%" y="639.50"></text></g><g><title>find_extent_buffer (317 samples, 0.06%)</title><rect x="43.1137%" y="661" width="0.0645%" height="15" fill="rgb(229,116,26)" fg:x="211780" fg:w="317"/><text x="43.3637%" y="671.50"></text></g><g><title>reada_for_balance (507 samples, 0.10%)</title><rect x="43.0925%" y="677" width="0.1032%" height="15" fill="rgb(246,94,34)" fg:x="211676" fg:w="507"/><text x="43.3425%" y="687.50"></text></g><g><title>release_extent_buffer (54 samples, 0.01%)</title><rect x="43.1847%" y="661" width="0.0110%" height="15" fill="rgb(251,73,21)" fg:x="212129" fg:w="54"/><text x="43.4347%" y="671.50"></text></g><g><title>release_extent_buffer (58 samples, 0.01%)</title><rect x="43.1957%" y="677" width="0.0118%" height="15" fill="rgb(254,121,25)" fg:x="212183" fg:w="58"/><text x="43.4457%" y="687.50"></text></g><g><title>btrfs_search_slot (4,095 samples, 0.83%)</title><rect x="42.4126%" y="693" width="0.8337%" height="15" fill="rgb(215,161,49)" fg:x="208336" fg:w="4095"/><text x="42.6626%" y="703.50"></text></g><g><title>unlock_up (190 samples, 0.04%)</title><rect x="43.2075%" y="677" width="0.0387%" height="15" fill="rgb(221,43,13)" fg:x="212241" fg:w="190"/><text x="43.4575%" y="687.50"></text></g><g><title>inode_sub_bytes (96 samples, 0.02%)</title><rect x="43.2462%" y="693" width="0.0195%" height="15" fill="rgb(249,5,37)" fg:x="212431" fg:w="96"/><text x="43.4962%" y="703.50"></text></g><g><title>_raw_spin_lock (67 samples, 0.01%)</title><rect x="43.2521%" y="677" width="0.0136%" height="15" fill="rgb(226,25,44)" fg:x="212460" fg:w="67"/><text x="43.5021%" y="687.50"></text></g><g><title>memset_erms (57 samples, 0.01%)</title><rect x="43.2835%" y="677" width="0.0116%" height="15" fill="rgb(238,189,16)" fg:x="212614" fg:w="57"/><text x="43.5335%" y="687.50"></text></g><g><title>kmem_cache_alloc (172 samples, 0.04%)</title><rect x="43.2658%" y="693" width="0.0350%" height="15" fill="rgb(251,186,8)" fg:x="212527" fg:w="172"/><text x="43.5158%" y="703.50"></text></g><g><title>kmem_cache_free (116 samples, 0.02%)</title><rect x="43.3008%" y="693" width="0.0236%" height="15" fill="rgb(254,34,31)" fg:x="212699" fg:w="116"/><text x="43.5508%" y="703.50"></text></g><g><title>_raw_spin_lock (78 samples, 0.02%)</title><rect x="43.3476%" y="661" width="0.0159%" height="15" fill="rgb(225,215,27)" fg:x="212929" fg:w="78"/><text x="43.5976%" y="671.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="43.4209%" y="629" width="0.0124%" height="15" fill="rgb(221,192,48)" fg:x="213289" fg:w="61"/><text x="43.6709%" y="639.50"></text></g><g><title>alloc_extent_state (382 samples, 0.08%)</title><rect x="43.3635%" y="661" width="0.0778%" height="15" fill="rgb(219,137,20)" fg:x="213007" fg:w="382"/><text x="43.6135%" y="671.50"></text></g><g><title>kmem_cache_alloc (250 samples, 0.05%)</title><rect x="43.3903%" y="645" width="0.0509%" height="15" fill="rgb(219,84,11)" fg:x="213139" fg:w="250"/><text x="43.6403%" y="655.50"></text></g><g><title>cache_state_if_flags (76 samples, 0.02%)</title><rect x="43.4414%" y="661" width="0.0155%" height="15" fill="rgb(224,10,23)" fg:x="213390" fg:w="76"/><text x="43.6914%" y="671.50"></text></g><g><title>lock_extent_bits (739 samples, 0.15%)</title><rect x="43.3244%" y="693" width="0.1504%" height="15" fill="rgb(248,22,39)" fg:x="212815" fg:w="739"/><text x="43.5744%" y="703.50"></text></g><g><title>__set_extent_bit (724 samples, 0.15%)</title><rect x="43.3274%" y="677" width="0.1474%" height="15" fill="rgb(212,154,20)" fg:x="212830" fg:w="724"/><text x="43.5774%" y="687.50"></text></g><g><title>insert_state (88 samples, 0.02%)</title><rect x="43.4569%" y="661" width="0.0179%" height="15" fill="rgb(236,199,50)" fg:x="213466" fg:w="88"/><text x="43.7069%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (19,727 samples, 4.02%)</title><rect x="39.4961%" y="709" width="4.0160%" height="15" fill="rgb(211,9,17)" fg:x="194010" fg:w="19727"/><text x="39.7461%" y="719.50">btrf..</text></g><g><title>read_extent_buffer (183 samples, 0.04%)</title><rect x="43.4748%" y="693" width="0.0373%" height="15" fill="rgb(243,216,36)" fg:x="213554" fg:w="183"/><text x="43.7248%" y="703.50"></text></g><g><title>clear_extent_bit (57 samples, 0.01%)</title><rect x="43.5121%" y="709" width="0.0116%" height="15" fill="rgb(250,2,10)" fg:x="213737" fg:w="57"/><text x="43.7621%" y="719.50"></text></g><g><title>__clear_extent_bit (56 samples, 0.01%)</title><rect x="43.5123%" y="693" width="0.0114%" height="15" fill="rgb(226,50,48)" fg:x="213738" fg:w="56"/><text x="43.7623%" y="703.50"></text></g><g><title>btrfs_block_rsv_migrate (260 samples, 0.05%)</title><rect x="43.5310%" y="693" width="0.0529%" height="15" fill="rgb(243,81,16)" fg:x="213830" fg:w="260"/><text x="43.7810%" y="703.50"></text></g><g><title>_raw_spin_lock (215 samples, 0.04%)</title><rect x="43.5402%" y="677" width="0.0438%" height="15" fill="rgb(250,14,2)" fg:x="213875" fg:w="215"/><text x="43.7902%" y="687.50"></text></g><g><title>_raw_spin_lock (130 samples, 0.03%)</title><rect x="43.5960%" y="677" width="0.0265%" height="15" fill="rgb(233,135,29)" fg:x="214149" fg:w="130"/><text x="43.8460%" y="687.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="43.6279%" y="661" width="0.0228%" height="15" fill="rgb(224,64,43)" fg:x="214306" fg:w="112"/><text x="43.8779%" y="671.50"></text></g><g><title>btrfs_block_rsv_add_bytes (140 samples, 0.03%)</title><rect x="43.6224%" y="677" width="0.0285%" height="15" fill="rgb(238,84,13)" fg:x="214279" fg:w="140"/><text x="43.8724%" y="687.50"></text></g><g><title>_raw_spin_lock (133 samples, 0.03%)</title><rect x="43.6796%" y="645" width="0.0271%" height="15" fill="rgb(253,48,26)" fg:x="214560" fg:w="133"/><text x="43.9296%" y="655.50"></text></g><g><title>btrfs_get_alloc_profile (50 samples, 0.01%)</title><rect x="43.7684%" y="629" width="0.0102%" height="15" fill="rgb(205,223,31)" fg:x="214996" fg:w="50"/><text x="44.0184%" y="639.50"></text></g><g><title>_raw_spin_lock (211 samples, 0.04%)</title><rect x="43.8364%" y="613" width="0.0430%" height="15" fill="rgb(221,41,32)" fg:x="215330" fg:w="211"/><text x="44.0864%" y="623.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (850 samples, 0.17%)</title><rect x="43.7067%" y="645" width="0.1730%" height="15" fill="rgb(213,158,31)" fg:x="214693" fg:w="850"/><text x="43.9567%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (497 samples, 0.10%)</title><rect x="43.7786%" y="629" width="0.1012%" height="15" fill="rgb(245,126,43)" fg:x="215046" fg:w="497"/><text x="44.0286%" y="639.50"></text></g><g><title>btrfs_block_rsv_refill (1,527 samples, 0.31%)</title><rect x="43.5839%" y="693" width="0.3109%" height="15" fill="rgb(227,7,22)" fg:x="214090" fg:w="1527"/><text x="43.8339%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (1,198 samples, 0.24%)</title><rect x="43.6509%" y="677" width="0.2439%" height="15" fill="rgb(252,90,44)" fg:x="214419" fg:w="1198"/><text x="43.9009%" y="687.50"></text></g><g><title>__reserve_bytes (1,174 samples, 0.24%)</title><rect x="43.6558%" y="661" width="0.2390%" height="15" fill="rgb(253,91,0)" fg:x="214443" fg:w="1174"/><text x="43.9058%" y="671.50"></text></g><g><title>calc_available_free_space.isra.0 (74 samples, 0.02%)</title><rect x="43.8797%" y="645" width="0.0151%" height="15" fill="rgb(252,175,49)" fg:x="215543" fg:w="74"/><text x="44.1297%" y="655.50"></text></g><g><title>join_transaction (343 samples, 0.07%)</title><rect x="43.9457%" y="677" width="0.0698%" height="15" fill="rgb(246,150,1)" fg:x="215867" fg:w="343"/><text x="44.1957%" y="687.50"></text></g><g><title>_raw_spin_lock (108 samples, 0.02%)</title><rect x="43.9935%" y="661" width="0.0220%" height="15" fill="rgb(241,192,25)" fg:x="216102" fg:w="108"/><text x="44.2435%" y="671.50"></text></g><g><title>memset_erms (105 samples, 0.02%)</title><rect x="44.0432%" y="661" width="0.0214%" height="15" fill="rgb(239,187,11)" fg:x="216346" fg:w="105"/><text x="44.2932%" y="671.50"></text></g><g><title>evict_refill_and_join (2,718 samples, 0.55%)</title><rect x="43.5237%" y="709" width="0.5533%" height="15" fill="rgb(218,202,51)" fg:x="213794" fg:w="2718"/><text x="43.7737%" y="719.50"></text></g><g><title>start_transaction (888 samples, 0.18%)</title><rect x="43.8962%" y="693" width="0.1808%" height="15" fill="rgb(225,176,8)" fg:x="215624" fg:w="888"/><text x="44.1462%" y="703.50"></text></g><g><title>kmem_cache_alloc (302 samples, 0.06%)</title><rect x="44.0155%" y="677" width="0.0615%" height="15" fill="rgb(219,122,41)" fg:x="216210" fg:w="302"/><text x="44.2655%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (61 samples, 0.01%)</title><rect x="44.0646%" y="661" width="0.0124%" height="15" fill="rgb(248,140,20)" fg:x="216451" fg:w="61"/><text x="44.3146%" y="671.50"></text></g><g><title>kfree (150 samples, 0.03%)</title><rect x="44.0780%" y="709" width="0.0305%" height="15" fill="rgb(245,41,37)" fg:x="216517" fg:w="150"/><text x="44.3280%" y="719.50"></text></g><g><title>__slab_free (126 samples, 0.03%)</title><rect x="44.1405%" y="693" width="0.0257%" height="15" fill="rgb(235,82,39)" fg:x="216824" fg:w="126"/><text x="44.3905%" y="703.50"></text></g><g><title>kmem_cache_free (372 samples, 0.08%)</title><rect x="44.1086%" y="709" width="0.0757%" height="15" fill="rgb(230,108,42)" fg:x="216667" fg:w="372"/><text x="44.3586%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (50 samples, 0.01%)</title><rect x="44.1741%" y="693" width="0.0102%" height="15" fill="rgb(215,150,50)" fg:x="216989" fg:w="50"/><text x="44.4241%" y="703.50"></text></g><g><title>truncate_inode_pages_final (86 samples, 0.02%)</title><rect x="44.1957%" y="709" width="0.0175%" height="15" fill="rgb(233,212,5)" fg:x="217095" fg:w="86"/><text x="44.4457%" y="719.50"></text></g><g><title>__pagevec_release (141 samples, 0.03%)</title><rect x="44.2177%" y="693" width="0.0287%" height="15" fill="rgb(245,80,22)" fg:x="217203" fg:w="141"/><text x="44.4677%" y="703.50"></text></g><g><title>release_pages (133 samples, 0.03%)</title><rect x="44.2193%" y="677" width="0.0271%" height="15" fill="rgb(238,129,16)" fg:x="217211" fg:w="133"/><text x="44.4693%" y="687.50"></text></g><g><title>btrfs_evict_inode (47,276 samples, 9.62%)</title><rect x="34.6412%" y="725" width="9.6243%" height="15" fill="rgb(240,19,0)" fg:x="170162" fg:w="47276"/><text x="34.8912%" y="735.50">btrfs_evict_in..</text></g><g><title>truncate_inode_pages_range (257 samples, 0.05%)</title><rect x="44.2132%" y="709" width="0.0523%" height="15" fill="rgb(232,42,35)" fg:x="217181" fg:w="257"/><text x="44.4632%" y="719.50"></text></g><g><title>clear_inode (67 samples, 0.01%)</title><rect x="44.2655%" y="725" width="0.0136%" height="15" fill="rgb(223,130,24)" fg:x="217438" fg:w="67"/><text x="44.5155%" y="735.50"></text></g><g><title>_raw_spin_lock (100 samples, 0.02%)</title><rect x="44.2851%" y="709" width="0.0204%" height="15" fill="rgb(237,16,22)" fg:x="217534" fg:w="100"/><text x="44.5351%" y="719.50"></text></g><g><title>inode_wait_for_writeback (130 samples, 0.03%)</title><rect x="44.2792%" y="725" width="0.0265%" height="15" fill="rgb(248,192,20)" fg:x="217505" fg:w="130"/><text x="44.5292%" y="735.50"></text></g><g><title>evict (48,273 samples, 9.83%)</title><rect x="34.4816%" y="741" width="9.8273%" height="15" fill="rgb(233,167,2)" fg:x="169378" fg:w="48273"/><text x="34.7316%" y="751.50">evict</text></g><g><title>__legitimize_mnt (81 samples, 0.02%)</title><rect x="44.3394%" y="661" width="0.0165%" height="15" fill="rgb(252,71,44)" fg:x="217801" fg:w="81"/><text x="44.5894%" y="671.50"></text></g><g><title>__legitimize_path (166 samples, 0.03%)</title><rect x="44.3366%" y="677" width="0.0338%" height="15" fill="rgb(238,37,47)" fg:x="217787" fg:w="166"/><text x="44.5866%" y="687.50"></text></g><g><title>lockref_get_not_dead (71 samples, 0.01%)</title><rect x="44.3559%" y="661" width="0.0145%" height="15" fill="rgb(214,202,54)" fg:x="217882" fg:w="71"/><text x="44.6059%" y="671.50"></text></g><g><title>complete_walk (231 samples, 0.05%)</title><rect x="44.3286%" y="709" width="0.0470%" height="15" fill="rgb(254,165,40)" fg:x="217748" fg:w="231"/><text x="44.5786%" y="719.50"></text></g><g><title>try_to_unlazy (212 samples, 0.04%)</title><rect x="44.3325%" y="693" width="0.0432%" height="15" fill="rgb(246,173,38)" fg:x="217767" fg:w="212"/><text x="44.5825%" y="703.50"></text></g><g><title>inode_permission.part.0 (51 samples, 0.01%)</title><rect x="44.3919%" y="693" width="0.0104%" height="15" fill="rgb(215,3,27)" fg:x="218059" fg:w="51"/><text x="44.6419%" y="703.50"></text></g><g><title>link_path_walk.part.0 (146 samples, 0.03%)</title><rect x="44.3757%" y="709" width="0.0297%" height="15" fill="rgb(239,169,51)" fg:x="217979" fg:w="146"/><text x="44.6257%" y="719.50"></text></g><g><title>__fget_light (236 samples, 0.05%)</title><rect x="44.4172%" y="693" width="0.0480%" height="15" fill="rgb(212,5,25)" fg:x="218183" fg:w="236"/><text x="44.6672%" y="703.50"></text></g><g><title>__fget_files (176 samples, 0.04%)</title><rect x="44.4294%" y="677" width="0.0358%" height="15" fill="rgb(243,45,17)" fg:x="218243" fg:w="176"/><text x="44.6794%" y="687.50"></text></g><g><title>path_init (351 samples, 0.07%)</title><rect x="44.4054%" y="709" width="0.0715%" height="15" fill="rgb(242,97,9)" fg:x="218125" fg:w="351"/><text x="44.6554%" y="719.50"></text></g><g><title>fput_many (53 samples, 0.01%)</title><rect x="44.4660%" y="693" width="0.0108%" height="15" fill="rgb(228,71,31)" fg:x="218423" fg:w="53"/><text x="44.7160%" y="703.50"></text></g><g><title>filename_parentat (855 samples, 0.17%)</title><rect x="44.3089%" y="741" width="0.1741%" height="15" fill="rgb(252,184,16)" fg:x="217651" fg:w="855"/><text x="44.5589%" y="751.50"></text></g><g><title>path_parentat (778 samples, 0.16%)</title><rect x="44.3246%" y="725" width="0.1584%" height="15" fill="rgb(236,169,46)" fg:x="217728" fg:w="778"/><text x="44.5746%" y="735.50"></text></g><g><title>ihold (204 samples, 0.04%)</title><rect x="44.4829%" y="741" width="0.0415%" height="15" fill="rgb(207,17,47)" fg:x="218506" fg:w="204"/><text x="44.7329%" y="751.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="44.5469%" y="709" width="0.0106%" height="15" fill="rgb(206,201,28)" fg:x="218820" fg:w="52"/><text x="44.7969%" y="719.50"></text></g><g><title>_atomic_dec_and_lock (122 samples, 0.02%)</title><rect x="44.5328%" y="725" width="0.0248%" height="15" fill="rgb(224,184,23)" fg:x="218751" fg:w="122"/><text x="44.7828%" y="735.50"></text></g><g><title>iput.part.0 (170 samples, 0.03%)</title><rect x="44.5257%" y="741" width="0.0346%" height="15" fill="rgb(208,139,48)" fg:x="218716" fg:w="170"/><text x="44.7757%" y="751.50"></text></g><g><title>kmem_cache_free (161 samples, 0.03%)</title><rect x="44.5603%" y="741" width="0.0328%" height="15" fill="rgb(208,130,10)" fg:x="218886" fg:w="161"/><text x="44.8103%" y="751.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (55 samples, 0.01%)</title><rect x="44.5819%" y="725" width="0.0112%" height="15" fill="rgb(211,213,45)" fg:x="218992" fg:w="55"/><text x="44.8319%" y="735.50"></text></g><g><title>mnt_drop_write (119 samples, 0.02%)</title><rect x="44.5931%" y="741" width="0.0242%" height="15" fill="rgb(235,100,30)" fg:x="219047" fg:w="119"/><text x="44.8431%" y="751.50"></text></g><g><title>__mnt_want_write (73 samples, 0.01%)</title><rect x="44.6236%" y="725" width="0.0149%" height="15" fill="rgb(206,144,31)" fg:x="219197" fg:w="73"/><text x="44.8736%" y="735.50"></text></g><g><title>mnt_want_write (119 samples, 0.02%)</title><rect x="44.6173%" y="741" width="0.0242%" height="15" fill="rgb(224,200,26)" fg:x="219166" fg:w="119"/><text x="44.8673%" y="751.50"></text></g><g><title>apparmor_path_unlink (132 samples, 0.03%)</title><rect x="44.6564%" y="725" width="0.0269%" height="15" fill="rgb(247,104,53)" fg:x="219358" fg:w="132"/><text x="44.9064%" y="735.50"></text></g><g><title>security_path_unlink (380 samples, 0.08%)</title><rect x="44.6517%" y="741" width="0.0774%" height="15" fill="rgb(220,14,17)" fg:x="219335" fg:w="380"/><text x="44.9017%" y="751.50"></text></g><g><title>tomoyo_path_unlink (225 samples, 0.05%)</title><rect x="44.6833%" y="725" width="0.0458%" height="15" fill="rgb(230,140,40)" fg:x="219490" fg:w="225"/><text x="44.9333%" y="735.50"></text></g><g><title>tomoyo_path_perm (211 samples, 0.04%)</title><rect x="44.6861%" y="709" width="0.0430%" height="15" fill="rgb(229,2,41)" fg:x="219504" fg:w="211"/><text x="44.9361%" y="719.50"></text></g><g><title>tomoyo_init_request_info (118 samples, 0.02%)</title><rect x="44.7050%" y="693" width="0.0240%" height="15" fill="rgb(232,89,16)" fg:x="219597" fg:w="118"/><text x="44.9550%" y="703.50"></text></g><g><title>up_write (63 samples, 0.01%)</title><rect x="44.7291%" y="741" width="0.0128%" height="15" fill="rgb(247,59,52)" fg:x="219715" fg:w="63"/><text x="44.9791%" y="751.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.01%)</title><rect x="44.7659%" y="725" width="0.0120%" height="15" fill="rgb(226,110,21)" fg:x="219896" fg:w="59"/><text x="45.0159%" y="735.50"></text></g><g><title>_raw_spin_lock (111 samples, 0.02%)</title><rect x="44.8490%" y="661" width="0.0226%" height="15" fill="rgb(224,176,43)" fg:x="220304" fg:w="111"/><text x="45.0990%" y="671.50"></text></g><g><title>btrfs_trans_release_metadata (202 samples, 0.04%)</title><rect x="44.8374%" y="693" width="0.0411%" height="15" fill="rgb(221,73,6)" fg:x="220247" fg:w="202"/><text x="45.0874%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (195 samples, 0.04%)</title><rect x="44.8388%" y="677" width="0.0397%" height="15" fill="rgb(232,78,19)" fg:x="220254" fg:w="195"/><text x="45.0888%" y="687.50"></text></g><g><title>__btrfs_end_transaction (575 samples, 0.12%)</title><rect x="44.7861%" y="709" width="0.1171%" height="15" fill="rgb(233,112,48)" fg:x="219995" fg:w="575"/><text x="45.0361%" y="719.50"></text></g><g><title>kmem_cache_free (121 samples, 0.02%)</title><rect x="44.8785%" y="693" width="0.0246%" height="15" fill="rgb(243,131,47)" fg:x="220449" fg:w="121"/><text x="45.1285%" y="703.50"></text></g><g><title>btrfs_tree_unlock (71 samples, 0.01%)</title><rect x="45.0289%" y="645" width="0.0145%" height="15" fill="rgb(226,51,1)" fg:x="221188" fg:w="71"/><text x="45.2789%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (66 samples, 0.01%)</title><rect x="45.0434%" y="645" width="0.0134%" height="15" fill="rgb(247,58,7)" fg:x="221259" fg:w="66"/><text x="45.2934%" y="655.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="45.0460%" y="629" width="0.0108%" height="15" fill="rgb(209,7,32)" fg:x="221272" fg:w="53"/><text x="45.2960%" y="639.50"></text></g><g><title>btrfs_free_path (257 samples, 0.05%)</title><rect x="45.0179%" y="677" width="0.0523%" height="15" fill="rgb(209,39,41)" fg:x="221134" fg:w="257"/><text x="45.2679%" y="687.50"></text></g><g><title>btrfs_release_path (251 samples, 0.05%)</title><rect x="45.0192%" y="661" width="0.0511%" height="15" fill="rgb(226,182,46)" fg:x="221140" fg:w="251"/><text x="45.2692%" y="671.50"></text></g><g><title>release_extent_buffer (66 samples, 0.01%)</title><rect x="45.0568%" y="645" width="0.0134%" height="15" fill="rgb(230,219,10)" fg:x="221325" fg:w="66"/><text x="45.3068%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (67 samples, 0.01%)</title><rect x="45.0992%" y="629" width="0.0136%" height="15" fill="rgb(227,175,30)" fg:x="221533" fg:w="67"/><text x="45.3492%" y="639.50"></text></g><g><title>_raw_read_lock (52 samples, 0.01%)</title><rect x="45.1022%" y="613" width="0.0106%" height="15" fill="rgb(217,2,50)" fg:x="221548" fg:w="52"/><text x="45.3522%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (154 samples, 0.03%)</title><rect x="45.0955%" y="645" width="0.0314%" height="15" fill="rgb(229,160,0)" fg:x="221515" fg:w="154"/><text x="45.3455%" y="655.50"></text></g><g><title>btrfs_root_node (69 samples, 0.01%)</title><rect x="45.1128%" y="629" width="0.0140%" height="15" fill="rgb(207,78,37)" fg:x="221600" fg:w="69"/><text x="45.3628%" y="639.50"></text></g><g><title>__btrfs_tree_lock (103 samples, 0.02%)</title><rect x="45.1297%" y="629" width="0.0210%" height="15" fill="rgb(225,57,0)" fg:x="221683" fg:w="103"/><text x="45.3797%" y="639.50"></text></g><g><title>_raw_write_lock (50 samples, 0.01%)</title><rect x="45.1405%" y="613" width="0.0102%" height="15" fill="rgb(232,154,2)" fg:x="221736" fg:w="50"/><text x="45.3905%" y="623.50"></text></g><g><title>btrfs_lock_root_node (155 samples, 0.03%)</title><rect x="45.1283%" y="645" width="0.0316%" height="15" fill="rgb(241,212,25)" fg:x="221676" fg:w="155"/><text x="45.3783%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (84 samples, 0.02%)</title><rect x="45.1598%" y="645" width="0.0171%" height="15" fill="rgb(226,69,20)" fg:x="221831" fg:w="84"/><text x="45.4098%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (66 samples, 0.01%)</title><rect x="45.1769%" y="645" width="0.0134%" height="15" fill="rgb(247,184,54)" fg:x="221915" fg:w="66"/><text x="45.4269%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (55 samples, 0.01%)</title><rect x="45.1910%" y="645" width="0.0112%" height="15" fill="rgb(210,145,0)" fg:x="221984" fg:w="55"/><text x="45.4410%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (96 samples, 0.02%)</title><rect x="45.2022%" y="645" width="0.0195%" height="15" fill="rgb(253,82,12)" fg:x="222039" fg:w="96"/><text x="45.4522%" y="655.50"></text></g><g><title>btrfs_lookup_dir_index_item (806 samples, 0.16%)</title><rect x="45.0703%" y="677" width="0.1641%" height="15" fill="rgb(245,42,11)" fg:x="221391" fg:w="806"/><text x="45.3203%" y="687.50"></text></g><g><title>btrfs_search_slot (792 samples, 0.16%)</title><rect x="45.0731%" y="661" width="0.1612%" height="15" fill="rgb(219,147,32)" fg:x="221405" fg:w="792"/><text x="45.3231%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (78 samples, 0.02%)</title><rect x="45.2777%" y="629" width="0.0159%" height="15" fill="rgb(246,12,7)" fg:x="222410" fg:w="78"/><text x="45.5277%" y="639.50"></text></g><g><title>_raw_read_lock (53 samples, 0.01%)</title><rect x="45.2828%" y="613" width="0.0108%" height="15" fill="rgb(243,50,9)" fg:x="222435" fg:w="53"/><text x="45.5328%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (155 samples, 0.03%)</title><rect x="45.2742%" y="645" width="0.0316%" height="15" fill="rgb(219,149,6)" fg:x="222393" fg:w="155"/><text x="45.5242%" y="655.50"></text></g><g><title>btrfs_root_node (60 samples, 0.01%)</title><rect x="45.2936%" y="629" width="0.0122%" height="15" fill="rgb(241,51,42)" fg:x="222488" fg:w="60"/><text x="45.5436%" y="639.50"></text></g><g><title>__btrfs_tree_lock (99 samples, 0.02%)</title><rect x="45.3109%" y="629" width="0.0202%" height="15" fill="rgb(226,128,27)" fg:x="222573" fg:w="99"/><text x="45.5609%" y="639.50"></text></g><g><title>_raw_write_lock (64 samples, 0.01%)</title><rect x="45.3180%" y="613" width="0.0130%" height="15" fill="rgb(244,144,4)" fg:x="222608" fg:w="64"/><text x="45.5680%" y="623.50"></text></g><g><title>btrfs_lock_root_node (178 samples, 0.04%)</title><rect x="45.3074%" y="645" width="0.0362%" height="15" fill="rgb(221,4,13)" fg:x="222556" fg:w="178"/><text x="45.5574%" y="655.50"></text></g><g><title>btrfs_root_node (62 samples, 0.01%)</title><rect x="45.3310%" y="629" width="0.0126%" height="15" fill="rgb(208,170,28)" fg:x="222672" fg:w="62"/><text x="45.5810%" y="639.50"></text></g><g><title>btrfs_set_path_blocking (98 samples, 0.02%)</title><rect x="45.3437%" y="645" width="0.0200%" height="15" fill="rgb(226,131,13)" fg:x="222734" fg:w="98"/><text x="45.5937%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (68 samples, 0.01%)</title><rect x="45.3716%" y="645" width="0.0138%" height="15" fill="rgb(215,72,41)" fg:x="222871" fg:w="68"/><text x="45.6216%" y="655.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="45.3744%" y="629" width="0.0110%" height="15" fill="rgb(243,108,20)" fg:x="222885" fg:w="54"/><text x="45.6244%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (105 samples, 0.02%)</title><rect x="45.3854%" y="645" width="0.0214%" height="15" fill="rgb(230,189,17)" fg:x="222939" fg:w="105"/><text x="45.6354%" y="655.50"></text></g><g><title>btrfs_search_slot (869 samples, 0.18%)</title><rect x="45.2439%" y="661" width="0.1769%" height="15" fill="rgb(220,50,17)" fg:x="222244" fg:w="869"/><text x="45.4939%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (941 samples, 0.19%)</title><rect x="45.2343%" y="677" width="0.1916%" height="15" fill="rgb(248,152,48)" fg:x="222197" fg:w="941"/><text x="45.4843%" y="687.50"></text></g><g><title>btrfs_tree_unlock (58 samples, 0.01%)</title><rect x="45.4379%" y="661" width="0.0118%" height="15" fill="rgb(244,91,11)" fg:x="223197" fg:w="58"/><text x="45.6879%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (65 samples, 0.01%)</title><rect x="45.4501%" y="661" width="0.0132%" height="15" fill="rgb(220,157,5)" fg:x="223257" fg:w="65"/><text x="45.7001%" y="671.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="45.4516%" y="645" width="0.0118%" height="15" fill="rgb(253,137,8)" fg:x="223264" fg:w="58"/><text x="45.7016%" y="655.50"></text></g><g><title>btrfs_release_path (225 samples, 0.05%)</title><rect x="45.4259%" y="677" width="0.0458%" height="15" fill="rgb(217,137,51)" fg:x="223138" fg:w="225"/><text x="45.6759%" y="687.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="45.4847%" y="661" width="0.0110%" height="15" fill="rgb(218,209,53)" fg:x="223427" fg:w="54"/><text x="45.7347%" y="671.50"></text></g><g><title>kmem_cache_alloc (132 samples, 0.03%)</title><rect x="45.4717%" y="677" width="0.0269%" height="15" fill="rgb(249,137,25)" fg:x="223363" fg:w="132"/><text x="45.7217%" y="687.50"></text></g><g><title>kmem_cache_free (84 samples, 0.02%)</title><rect x="45.4986%" y="677" width="0.0171%" height="15" fill="rgb(239,155,26)" fg:x="223495" fg:w="84"/><text x="45.7486%" y="687.50"></text></g><g><title>mutex_lock (126 samples, 0.03%)</title><rect x="45.5157%" y="677" width="0.0257%" height="15" fill="rgb(227,85,46)" fg:x="223579" fg:w="126"/><text x="45.7657%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (2,819 samples, 0.57%)</title><rect x="44.9831%" y="693" width="0.5739%" height="15" fill="rgb(251,107,43)" fg:x="220963" fg:w="2819"/><text x="45.2331%" y="703.50"></text></g><g><title>mutex_unlock (77 samples, 0.02%)</title><rect x="45.5413%" y="677" width="0.0157%" height="15" fill="rgb(234,170,33)" fg:x="223705" fg:w="77"/><text x="45.7913%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (117 samples, 0.02%)</title><rect x="45.6126%" y="629" width="0.0238%" height="15" fill="rgb(206,29,35)" fg:x="224055" fg:w="117"/><text x="45.8626%" y="639.50"></text></g><g><title>_raw_spin_lock (84 samples, 0.02%)</title><rect x="45.6193%" y="613" width="0.0171%" height="15" fill="rgb(227,138,25)" fg:x="224088" fg:w="84"/><text x="45.8693%" y="623.50"></text></g><g><title>btrfs_free_path (371 samples, 0.08%)</title><rect x="45.5876%" y="661" width="0.0755%" height="15" fill="rgb(249,131,35)" fg:x="223932" fg:w="371"/><text x="45.8376%" y="671.50"></text></g><g><title>btrfs_release_path (343 samples, 0.07%)</title><rect x="45.5933%" y="645" width="0.0698%" height="15" fill="rgb(239,6,40)" fg:x="223960" fg:w="343"/><text x="45.8433%" y="655.50"></text></g><g><title>release_extent_buffer (131 samples, 0.03%)</title><rect x="45.6364%" y="629" width="0.0267%" height="15" fill="rgb(246,136,47)" fg:x="224172" fg:w="131"/><text x="45.8864%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (149 samples, 0.03%)</title><rect x="45.7189%" y="629" width="0.0303%" height="15" fill="rgb(253,58,26)" fg:x="224577" fg:w="149"/><text x="45.9689%" y="639.50"></text></g><g><title>_raw_read_lock (104 samples, 0.02%)</title><rect x="45.7280%" y="613" width="0.0212%" height="15" fill="rgb(237,141,10)" fg:x="224622" fg:w="104"/><text x="45.9780%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (345 samples, 0.07%)</title><rect x="45.7136%" y="645" width="0.0702%" height="15" fill="rgb(234,156,12)" fg:x="224551" fg:w="345"/><text x="45.9636%" y="655.50"></text></g><g><title>btrfs_root_node (170 samples, 0.03%)</title><rect x="45.7492%" y="629" width="0.0346%" height="15" fill="rgb(243,224,36)" fg:x="224726" fg:w="170"/><text x="45.9992%" y="639.50"></text></g><g><title>__btrfs_tree_lock (197 samples, 0.04%)</title><rect x="45.7917%" y="629" width="0.0401%" height="15" fill="rgb(205,229,51)" fg:x="224935" fg:w="197"/><text x="46.0417%" y="639.50"></text></g><g><title>_raw_write_lock (116 samples, 0.02%)</title><rect x="45.8082%" y="613" width="0.0236%" height="15" fill="rgb(223,189,4)" fg:x="225016" fg:w="116"/><text x="46.0582%" y="623.50"></text></g><g><title>btrfs_lock_root_node (350 samples, 0.07%)</title><rect x="45.7869%" y="645" width="0.0713%" height="15" fill="rgb(249,167,54)" fg:x="224911" fg:w="350"/><text x="46.0369%" y="655.50"></text></g><g><title>btrfs_root_node (129 samples, 0.03%)</title><rect x="45.8318%" y="629" width="0.0263%" height="15" fill="rgb(218,34,28)" fg:x="225132" fg:w="129"/><text x="46.0818%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (106 samples, 0.02%)</title><rect x="45.8581%" y="645" width="0.0216%" height="15" fill="rgb(232,109,42)" fg:x="225261" fg:w="106"/><text x="46.1081%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (110 samples, 0.02%)</title><rect x="45.8803%" y="645" width="0.0224%" height="15" fill="rgb(248,214,46)" fg:x="225370" fg:w="110"/><text x="46.1303%" y="655.50"></text></g><g><title>_raw_spin_lock (94 samples, 0.02%)</title><rect x="45.8836%" y="629" width="0.0191%" height="15" fill="rgb(244,216,40)" fg:x="225386" fg:w="94"/><text x="46.1336%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (222 samples, 0.05%)</title><rect x="45.9027%" y="645" width="0.0452%" height="15" fill="rgb(231,226,31)" fg:x="225480" fg:w="222"/><text x="46.1527%" y="655.50"></text></g><g><title>release_extent_buffer (88 samples, 0.02%)</title><rect x="45.9481%" y="645" width="0.0179%" height="15" fill="rgb(238,38,43)" fg:x="225703" fg:w="88"/><text x="46.1981%" y="655.50"></text></g><g><title>btrfs_search_slot (1,536 samples, 0.31%)</title><rect x="45.6631%" y="661" width="0.3127%" height="15" fill="rgb(208,88,43)" fg:x="224303" fg:w="1536"/><text x="45.9131%" y="671.50"></text></g><g><title>crc32c (75 samples, 0.02%)</title><rect x="45.9758%" y="661" width="0.0153%" height="15" fill="rgb(205,136,37)" fg:x="225839" fg:w="75"/><text x="46.2258%" y="671.50"></text></g><g><title>crypto_shash_update (54 samples, 0.01%)</title><rect x="45.9801%" y="645" width="0.0110%" height="15" fill="rgb(237,34,14)" fg:x="225860" fg:w="54"/><text x="46.2301%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (59 samples, 0.01%)</title><rect x="46.0183%" y="645" width="0.0120%" height="15" fill="rgb(236,193,44)" fg:x="226048" fg:w="59"/><text x="46.2683%" y="655.50"></text></g><g><title>memset_erms (114 samples, 0.02%)</title><rect x="46.0307%" y="645" width="0.0232%" height="15" fill="rgb(231,48,10)" fg:x="226109" fg:w="114"/><text x="46.2807%" y="655.50"></text></g><g><title>kmem_cache_alloc (361 samples, 0.07%)</title><rect x="45.9910%" y="661" width="0.0735%" height="15" fill="rgb(213,141,34)" fg:x="225914" fg:w="361"/><text x="46.2410%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (52 samples, 0.01%)</title><rect x="46.0540%" y="645" width="0.0106%" height="15" fill="rgb(249,130,34)" fg:x="226223" fg:w="52"/><text x="46.3040%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (2,655 samples, 0.54%)</title><rect x="45.5760%" y="677" width="0.5405%" height="15" fill="rgb(219,42,41)" fg:x="223875" fg:w="2655"/><text x="45.8260%" y="687.50"></text></g><g><title>kmem_cache_free (255 samples, 0.05%)</title><rect x="46.0645%" y="661" width="0.0519%" height="15" fill="rgb(224,100,54)" fg:x="226275" fg:w="255"/><text x="46.3145%" y="671.50"></text></g><g><title>mutex_lock (110 samples, 0.02%)</title><rect x="46.1264%" y="677" width="0.0224%" height="15" fill="rgb(229,200,27)" fg:x="226579" fg:w="110"/><text x="46.3764%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (3,009 samples, 0.61%)</title><rect x="45.5570%" y="693" width="0.6126%" height="15" fill="rgb(217,118,10)" fg:x="223782" fg:w="3009"/><text x="45.8070%" y="703.50"></text></g><g><title>mutex_unlock (102 samples, 0.02%)</title><rect x="46.1488%" y="677" width="0.0208%" height="15" fill="rgb(206,22,3)" fg:x="226689" fg:w="102"/><text x="46.3988%" y="687.50"></text></g><g><title>_find_next_bit.constprop.0 (246 samples, 0.05%)</title><rect x="46.4550%" y="613" width="0.0501%" height="15" fill="rgb(232,163,46)" fg:x="228193" fg:w="246"/><text x="46.7050%" y="623.50"></text></g><g><title>steal_from_bitmap.part.0 (296 samples, 0.06%)</title><rect x="46.4485%" y="629" width="0.0603%" height="15" fill="rgb(206,95,13)" fg:x="228161" fg:w="296"/><text x="46.6985%" y="639.50"></text></g><g><title>__btrfs_add_free_space (308 samples, 0.06%)</title><rect x="46.4475%" y="645" width="0.0627%" height="15" fill="rgb(253,154,18)" fg:x="228156" fg:w="308"/><text x="46.6975%" y="655.50"></text></g><g><title>btrfs_free_tree_block (348 samples, 0.07%)</title><rect x="46.4473%" y="661" width="0.0708%" height="15" fill="rgb(219,32,23)" fg:x="228155" fg:w="348"/><text x="46.6973%" y="671.50"></text></g><g><title>btrfs_del_leaf (357 samples, 0.07%)</title><rect x="46.4469%" y="677" width="0.0727%" height="15" fill="rgb(230,191,45)" fg:x="228153" fg:w="357"/><text x="46.6969%" y="687.50"></text></g><g><title>btrfs_get_32 (136 samples, 0.03%)</title><rect x="46.5195%" y="677" width="0.0277%" height="15" fill="rgb(229,64,36)" fg:x="228510" fg:w="136"/><text x="46.7695%" y="687.50"></text></g><g><title>btrfs_get_token_32 (3,714 samples, 0.76%)</title><rect x="46.5472%" y="677" width="0.7561%" height="15" fill="rgb(205,129,25)" fg:x="228646" fg:w="3714"/><text x="46.7972%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (500 samples, 0.10%)</title><rect x="47.2015%" y="661" width="0.1018%" height="15" fill="rgb(254,112,7)" fg:x="231860" fg:w="500"/><text x="47.4515%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (197 samples, 0.04%)</title><rect x="47.3033%" y="677" width="0.0401%" height="15" fill="rgb(226,53,48)" fg:x="232360" fg:w="197"/><text x="47.5533%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (114 samples, 0.02%)</title><rect x="47.3202%" y="661" width="0.0232%" height="15" fill="rgb(214,153,38)" fg:x="232443" fg:w="114"/><text x="47.5702%" y="671.50"></text></g><g><title>btrfs_set_token_32 (3,263 samples, 0.66%)</title><rect x="47.3440%" y="677" width="0.6643%" height="15" fill="rgb(243,101,7)" fg:x="232560" fg:w="3263"/><text x="47.5940%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (699 samples, 0.14%)</title><rect x="47.8660%" y="661" width="0.1423%" height="15" fill="rgb(240,140,22)" fg:x="235124" fg:w="699"/><text x="48.1160%" y="671.50"></text></g><g><title>leaf_space_used (120 samples, 0.02%)</title><rect x="48.0097%" y="677" width="0.0244%" height="15" fill="rgb(235,114,2)" fg:x="235830" fg:w="120"/><text x="48.2597%" y="687.50"></text></g><g><title>btrfs_get_32 (90 samples, 0.02%)</title><rect x="48.0158%" y="661" width="0.0183%" height="15" fill="rgb(242,59,12)" fg:x="235860" fg:w="90"/><text x="48.2658%" y="671.50"></text></g><g><title>copy_pages (80 samples, 0.02%)</title><rect x="48.0482%" y="661" width="0.0163%" height="15" fill="rgb(252,134,9)" fg:x="236019" fg:w="80"/><text x="48.2982%" y="671.50"></text></g><g><title>memcpy_extent_buffer (661 samples, 0.13%)</title><rect x="48.0342%" y="677" width="0.1346%" height="15" fill="rgb(236,4,44)" fg:x="235950" fg:w="661"/><text x="48.2842%" y="687.50"></text></g><g><title>memmove (512 samples, 0.10%)</title><rect x="48.0645%" y="661" width="0.1042%" height="15" fill="rgb(254,172,41)" fg:x="236099" fg:w="512"/><text x="48.3145%" y="671.50"></text></g><g><title>copy_pages (176 samples, 0.04%)</title><rect x="48.1881%" y="661" width="0.0358%" height="15" fill="rgb(244,63,20)" fg:x="236706" fg:w="176"/><text x="48.4381%" y="671.50"></text></g><g><title>memmove_extent_buffer (1,765 samples, 0.36%)</title><rect x="48.1687%" y="677" width="0.3593%" height="15" fill="rgb(250,73,31)" fg:x="236611" fg:w="1765"/><text x="48.4187%" y="687.50"></text></g><g><title>memmove (1,494 samples, 0.30%)</title><rect x="48.2239%" y="661" width="0.3041%" height="15" fill="rgb(241,38,36)" fg:x="236882" fg:w="1494"/><text x="48.4739%" y="671.50"></text></g><g><title>__push_leaf_left (104 samples, 0.02%)</title><rect x="48.5290%" y="661" width="0.0212%" height="15" fill="rgb(245,211,2)" fg:x="238381" fg:w="104"/><text x="48.7790%" y="671.50"></text></g><g><title>push_leaf_left (155 samples, 0.03%)</title><rect x="48.5280%" y="677" width="0.0316%" height="15" fill="rgb(206,120,28)" fg:x="238376" fg:w="155"/><text x="48.7780%" y="687.50"></text></g><g><title>__push_leaf_right (138 samples, 0.03%)</title><rect x="48.5614%" y="661" width="0.0281%" height="15" fill="rgb(211,59,34)" fg:x="238540" fg:w="138"/><text x="48.8114%" y="671.50"></text></g><g><title>push_leaf_right (198 samples, 0.04%)</title><rect x="48.5596%" y="677" width="0.0403%" height="15" fill="rgb(233,168,5)" fg:x="238531" fg:w="198"/><text x="48.8096%" y="687.50"></text></g><g><title>btrfs_del_items (11,949 samples, 2.43%)</title><rect x="46.1696%" y="693" width="2.4325%" height="15" fill="rgb(234,33,13)" fg:x="226791" fg:w="11949"/><text x="46.4196%" y="703.50">bt..</text></g><g><title>__btrfs_release_delayed_node.part.0 (323 samples, 0.07%)</title><rect x="48.6292%" y="677" width="0.0658%" height="15" fill="rgb(231,150,26)" fg:x="238873" fg:w="323"/><text x="48.8792%" y="687.50"></text></g><g><title>btrfs_get_or_create_delayed_node (343 samples, 0.07%)</title><rect x="48.6954%" y="677" width="0.0698%" height="15" fill="rgb(217,191,4)" fg:x="239198" fg:w="343"/><text x="48.9454%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (331 samples, 0.07%)</title><rect x="48.6978%" y="661" width="0.0674%" height="15" fill="rgb(246,198,38)" fg:x="239210" fg:w="331"/><text x="48.9478%" y="671.50"></text></g><g><title>mutex_lock (97 samples, 0.02%)</title><rect x="48.7652%" y="677" width="0.0197%" height="15" fill="rgb(245,64,37)" fg:x="239541" fg:w="97"/><text x="49.0152%" y="687.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (935 samples, 0.19%)</title><rect x="48.6021%" y="693" width="0.1903%" height="15" fill="rgb(250,30,36)" fg:x="238740" fg:w="935"/><text x="48.8521%" y="703.50"></text></g><g><title>btrfs_comp_cpu_keys (149 samples, 0.03%)</title><rect x="48.8365%" y="661" width="0.0303%" height="15" fill="rgb(217,86,53)" fg:x="239891" fg:w="149"/><text x="49.0865%" y="671.50"></text></g><g><title>__btrfs_add_delayed_item (427 samples, 0.09%)</title><rect x="48.8045%" y="677" width="0.0869%" height="15" fill="rgb(228,157,16)" fg:x="239734" fg:w="427"/><text x="49.0545%" y="687.50"></text></g><g><title>rb_insert_color (121 samples, 0.02%)</title><rect x="48.8668%" y="661" width="0.0246%" height="15" fill="rgb(217,59,31)" fg:x="240040" fg:w="121"/><text x="49.1168%" y="671.50"></text></g><g><title>mutex_lock (67 samples, 0.01%)</title><rect x="48.9189%" y="661" width="0.0136%" height="15" fill="rgb(237,138,41)" fg:x="240296" fg:w="67"/><text x="49.1689%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (259 samples, 0.05%)</title><rect x="48.8914%" y="677" width="0.0527%" height="15" fill="rgb(227,91,49)" fg:x="240161" fg:w="259"/><text x="49.1414%" y="687.50"></text></g><g><title>mutex_unlock (57 samples, 0.01%)</title><rect x="48.9325%" y="661" width="0.0116%" height="15" fill="rgb(247,21,44)" fg:x="240363" fg:w="57"/><text x="49.1825%" y="671.50"></text></g><g><title>mutex_spin_on_owner (265 samples, 0.05%)</title><rect x="48.9454%" y="661" width="0.0539%" height="15" fill="rgb(219,210,51)" fg:x="240426" fg:w="265"/><text x="49.1954%" y="671.50"></text></g><g><title>__mutex_lock.constprop.0 (272 samples, 0.06%)</title><rect x="48.9441%" y="677" width="0.0554%" height="15" fill="rgb(209,140,6)" fg:x="240420" fg:w="272"/><text x="49.1941%" y="687.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (203 samples, 0.04%)</title><rect x="48.9999%" y="677" width="0.0413%" height="15" fill="rgb(221,188,24)" fg:x="240694" fg:w="203"/><text x="49.2499%" y="687.50"></text></g><g><title>btrfs_block_rsv_migrate (170 samples, 0.03%)</title><rect x="49.0066%" y="661" width="0.0346%" height="15" fill="rgb(232,154,20)" fg:x="240727" fg:w="170"/><text x="49.2566%" y="671.50"></text></g><g><title>_raw_spin_lock (139 samples, 0.03%)</title><rect x="49.0130%" y="645" width="0.0283%" height="15" fill="rgb(244,137,50)" fg:x="240758" fg:w="139"/><text x="49.2630%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (74 samples, 0.02%)</title><rect x="49.0413%" y="677" width="0.0151%" height="15" fill="rgb(225,185,43)" fg:x="240897" fg:w="74"/><text x="49.2913%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (59 samples, 0.01%)</title><rect x="49.0443%" y="661" width="0.0120%" height="15" fill="rgb(213,205,38)" fg:x="240912" fg:w="59"/><text x="49.2943%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (226 samples, 0.05%)</title><rect x="49.0563%" y="677" width="0.0460%" height="15" fill="rgb(236,73,12)" fg:x="240971" fg:w="226"/><text x="49.3063%" y="687.50"></text></g><g><title>mutex_lock (126 samples, 0.03%)</title><rect x="49.1023%" y="677" width="0.0257%" height="15" fill="rgb(235,219,13)" fg:x="241197" fg:w="126"/><text x="49.3523%" y="687.50"></text></g><g><title>btrfs_delete_delayed_dir_index (1,773 samples, 0.36%)</title><rect x="48.7925%" y="693" width="0.3609%" height="15" fill="rgb(218,59,36)" fg:x="239675" fg:w="1773"/><text x="49.0425%" y="703.50"></text></g><g><title>mutex_unlock (125 samples, 0.03%)</title><rect x="49.1280%" y="677" width="0.0254%" height="15" fill="rgb(205,110,39)" fg:x="241323" fg:w="125"/><text x="49.3780%" y="687.50"></text></g><g><title>btrfs_get_16 (53 samples, 0.01%)</title><rect x="49.1652%" y="677" width="0.0108%" height="15" fill="rgb(218,206,42)" fg:x="241506" fg:w="53"/><text x="49.4152%" y="687.50"></text></g><g><title>btrfs_delete_one_dir_name (150 samples, 0.03%)</title><rect x="49.1534%" y="693" width="0.0305%" height="15" fill="rgb(248,125,24)" fg:x="241448" fg:w="150"/><text x="49.4034%" y="703.50"></text></g><g><title>btrfs_get_16 (127 samples, 0.03%)</title><rect x="49.2147%" y="661" width="0.0259%" height="15" fill="rgb(242,28,27)" fg:x="241749" fg:w="127"/><text x="49.4647%" y="671.50"></text></g><g><title>btrfs_get_32 (93 samples, 0.02%)</title><rect x="49.2406%" y="661" width="0.0189%" height="15" fill="rgb(216,228,15)" fg:x="241876" fg:w="93"/><text x="49.4906%" y="671.50"></text></g><g><title>btrfs_match_dir_item_name (454 samples, 0.09%)</title><rect x="49.1994%" y="677" width="0.0924%" height="15" fill="rgb(235,116,46)" fg:x="241674" fg:w="454"/><text x="49.4494%" y="687.50"></text></g><g><title>memcmp_extent_buffer (159 samples, 0.03%)</title><rect x="49.2595%" y="661" width="0.0324%" height="15" fill="rgb(224,18,32)" fg:x="241969" fg:w="159"/><text x="49.5095%" y="671.50"></text></g><g><title>memcmp (92 samples, 0.02%)</title><rect x="49.2731%" y="645" width="0.0187%" height="15" fill="rgb(252,5,12)" fg:x="242036" fg:w="92"/><text x="49.5231%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (83 samples, 0.02%)</title><rect x="49.3505%" y="645" width="0.0169%" height="15" fill="rgb(251,36,5)" fg:x="242416" fg:w="83"/><text x="49.6005%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (190 samples, 0.04%)</title><rect x="49.3468%" y="661" width="0.0387%" height="15" fill="rgb(217,53,14)" fg:x="242398" fg:w="190"/><text x="49.5968%" y="671.50"></text></g><g><title>btrfs_root_node (89 samples, 0.02%)</title><rect x="49.3674%" y="645" width="0.0181%" height="15" fill="rgb(215,86,45)" fg:x="242499" fg:w="89"/><text x="49.6174%" y="655.50"></text></g><g><title>_raw_write_lock (60 samples, 0.01%)</title><rect x="49.4130%" y="629" width="0.0122%" height="15" fill="rgb(242,169,11)" fg:x="242723" fg:w="60"/><text x="49.6630%" y="639.50"></text></g><g><title>__btrfs_tree_lock (99 samples, 0.02%)</title><rect x="49.4057%" y="645" width="0.0202%" height="15" fill="rgb(211,213,45)" fg:x="242687" fg:w="99"/><text x="49.6557%" y="655.50"></text></g><g><title>btrfs_lock_root_node (173 samples, 0.04%)</title><rect x="49.4034%" y="661" width="0.0352%" height="15" fill="rgb(205,88,11)" fg:x="242676" fg:w="173"/><text x="49.6534%" y="671.50"></text></g><g><title>btrfs_root_node (63 samples, 0.01%)</title><rect x="49.4258%" y="645" width="0.0128%" height="15" fill="rgb(252,69,26)" fg:x="242786" fg:w="63"/><text x="49.6758%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (57 samples, 0.01%)</title><rect x="49.4386%" y="661" width="0.0116%" height="15" fill="rgb(246,123,37)" fg:x="242849" fg:w="57"/><text x="49.6886%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock (51 samples, 0.01%)</title><rect x="49.4502%" y="661" width="0.0104%" height="15" fill="rgb(212,205,5)" fg:x="242906" fg:w="51"/><text x="49.7002%" y="671.50"></text></g><g><title>_raw_write_lock (113 samples, 0.02%)</title><rect x="49.4663%" y="645" width="0.0230%" height="15" fill="rgb(253,148,0)" fg:x="242985" fg:w="113"/><text x="49.7163%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (161 samples, 0.03%)</title><rect x="49.4606%" y="661" width="0.0328%" height="15" fill="rgb(239,22,4)" fg:x="242957" fg:w="161"/><text x="49.7106%" y="671.50"></text></g><g><title>free_extent_buffer.part.0 (82 samples, 0.02%)</title><rect x="49.4938%" y="661" width="0.0167%" height="15" fill="rgb(226,26,53)" fg:x="243120" fg:w="82"/><text x="49.7438%" y="671.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="49.4971%" y="645" width="0.0134%" height="15" fill="rgb(225,229,45)" fg:x="243136" fg:w="66"/><text x="49.7471%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (1,158 samples, 0.24%)</title><rect x="49.5105%" y="661" width="0.2357%" height="15" fill="rgb(220,60,37)" fg:x="243202" fg:w="1158"/><text x="49.7605%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (71 samples, 0.01%)</title><rect x="49.7804%" y="645" width="0.0145%" height="15" fill="rgb(217,180,35)" fg:x="244528" fg:w="71"/><text x="50.0304%" y="655.50"></text></g><g><title>btrfs_get_64 (152 samples, 0.03%)</title><rect x="49.7949%" y="645" width="0.0309%" height="15" fill="rgb(229,7,53)" fg:x="244599" fg:w="152"/><text x="50.0449%" y="655.50"></text></g><g><title>__radix_tree_lookup (605 samples, 0.12%)</title><rect x="49.8790%" y="629" width="0.1232%" height="15" fill="rgb(254,137,3)" fg:x="245012" fg:w="605"/><text x="50.1290%" y="639.50"></text></g><g><title>check_buffer_tree_ref (50 samples, 0.01%)</title><rect x="50.0121%" y="613" width="0.0102%" height="15" fill="rgb(215,140,41)" fg:x="245666" fg:w="50"/><text x="50.2621%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (257 samples, 0.05%)</title><rect x="50.0021%" y="629" width="0.0523%" height="15" fill="rgb(250,80,15)" fg:x="245617" fg:w="257"/><text x="50.2521%" y="639.50"></text></g><g><title>mark_page_accessed (158 samples, 0.03%)</title><rect x="50.0223%" y="613" width="0.0322%" height="15" fill="rgb(252,191,6)" fg:x="245716" fg:w="158"/><text x="50.2723%" y="623.50"></text></g><g><title>find_extent_buffer (1,066 samples, 0.22%)</title><rect x="49.8381%" y="645" width="0.2170%" height="15" fill="rgb(246,217,18)" fg:x="244811" fg:w="1066"/><text x="50.0881%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,670 samples, 0.34%)</title><rect x="49.7462%" y="661" width="0.3400%" height="15" fill="rgb(223,93,7)" fg:x="244360" fg:w="1670"/><text x="49.9962%" y="671.50"></text></g><g><title>read_extent_buffer (153 samples, 0.03%)</title><rect x="50.0551%" y="645" width="0.0311%" height="15" fill="rgb(225,55,52)" fg:x="245877" fg:w="153"/><text x="50.3051%" y="655.50"></text></g><g><title>btrfs_get_64 (56 samples, 0.01%)</title><rect x="50.0997%" y="645" width="0.0114%" height="15" fill="rgb(240,31,24)" fg:x="246096" fg:w="56"/><text x="50.3497%" y="655.50"></text></g><g><title>__radix_tree_lookup (207 samples, 0.04%)</title><rect x="50.1300%" y="629" width="0.0421%" height="15" fill="rgb(205,56,52)" fg:x="246245" fg:w="207"/><text x="50.3800%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (112 samples, 0.02%)</title><rect x="50.1723%" y="629" width="0.0228%" height="15" fill="rgb(246,146,12)" fg:x="246453" fg:w="112"/><text x="50.4223%" y="639.50"></text></g><g><title>mark_page_accessed (74 samples, 0.02%)</title><rect x="50.1801%" y="613" width="0.0151%" height="15" fill="rgb(239,84,36)" fg:x="246491" fg:w="74"/><text x="50.4301%" y="623.50"></text></g><g><title>find_extent_buffer (417 samples, 0.08%)</title><rect x="50.1111%" y="645" width="0.0849%" height="15" fill="rgb(207,41,40)" fg:x="246152" fg:w="417"/><text x="50.3611%" y="655.50"></text></g><g><title>reada_for_balance (604 samples, 0.12%)</title><rect x="50.0862%" y="661" width="0.1230%" height="15" fill="rgb(241,179,25)" fg:x="246030" fg:w="604"/><text x="50.3362%" y="671.50"></text></g><g><title>release_extent_buffer (65 samples, 0.01%)</title><rect x="50.2092%" y="661" width="0.0132%" height="15" fill="rgb(210,0,34)" fg:x="246634" fg:w="65"/><text x="50.4592%" y="671.50"></text></g><g><title>btrfs_search_slot (4,782 samples, 0.97%)</title><rect x="49.2919%" y="677" width="0.9735%" height="15" fill="rgb(225,217,29)" fg:x="242128" fg:w="4782"/><text x="49.5419%" y="687.50"></text></g><g><title>unlock_up (211 samples, 0.04%)</title><rect x="50.2224%" y="661" width="0.0430%" height="15" fill="rgb(216,191,38)" fg:x="246699" fg:w="211"/><text x="50.4724%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (5,398 samples, 1.10%)</title><rect x="49.1890%" y="693" width="1.0989%" height="15" fill="rgb(232,140,52)" fg:x="241623" fg:w="5398"/><text x="49.4390%" y="703.50"></text></g><g><title>crc32c (111 samples, 0.02%)</title><rect x="50.2654%" y="677" width="0.0226%" height="15" fill="rgb(223,158,51)" fg:x="246910" fg:w="111"/><text x="50.5154%" y="687.50"></text></g><g><title>crypto_shash_update (87 samples, 0.02%)</title><rect x="50.2702%" y="661" width="0.0177%" height="15" fill="rgb(235,29,51)" fg:x="246934" fg:w="87"/><text x="50.5202%" y="671.50"></text></g><g><title>btrfs_tree_unlock (54 samples, 0.01%)</title><rect x="50.2985%" y="677" width="0.0110%" height="15" fill="rgb(215,181,18)" fg:x="247073" fg:w="54"/><text x="50.5485%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (237 samples, 0.05%)</title><rect x="50.3104%" y="677" width="0.0482%" height="15" fill="rgb(227,125,34)" fg:x="247131" fg:w="237"/><text x="50.5604%" y="687.50"></text></g><g><title>_raw_spin_lock (204 samples, 0.04%)</title><rect x="50.3171%" y="661" width="0.0415%" height="15" fill="rgb(230,197,49)" fg:x="247164" fg:w="204"/><text x="50.5671%" y="671.50"></text></g><g><title>btrfs_release_path (534 samples, 0.11%)</title><rect x="50.2880%" y="693" width="0.1087%" height="15" fill="rgb(239,141,16)" fg:x="247021" fg:w="534"/><text x="50.5380%" y="703.50"></text></g><g><title>release_extent_buffer (187 samples, 0.04%)</title><rect x="50.3586%" y="677" width="0.0381%" height="15" fill="rgb(225,105,43)" fg:x="247368" fg:w="187"/><text x="50.6086%" y="687.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="50.4044%" y="677" width="0.0128%" height="15" fill="rgb(214,131,14)" fg:x="247593" fg:w="63"/><text x="50.6544%" y="687.50"></text></g><g><title>mutex_lock (54 samples, 0.01%)</title><rect x="50.4478%" y="645" width="0.0110%" height="15" fill="rgb(229,177,11)" fg:x="247806" fg:w="54"/><text x="50.6978%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (237 samples, 0.05%)</title><rect x="50.4225%" y="661" width="0.0482%" height="15" fill="rgb(231,180,14)" fg:x="247682" fg:w="237"/><text x="50.6725%" y="671.50"></text></g><g><title>mutex_unlock (59 samples, 0.01%)</title><rect x="50.4588%" y="645" width="0.0120%" height="15" fill="rgb(232,88,2)" fg:x="247860" fg:w="59"/><text x="50.7088%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (114 samples, 0.02%)</title><rect x="50.4767%" y="661" width="0.0232%" height="15" fill="rgb(205,220,8)" fg:x="247948" fg:w="114"/><text x="50.7267%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (94 samples, 0.02%)</title><rect x="50.4807%" y="645" width="0.0191%" height="15" fill="rgb(225,23,53)" fg:x="247968" fg:w="94"/><text x="50.7307%" y="655.50"></text></g><g><title>inode_get_bytes (83 samples, 0.02%)</title><rect x="50.5092%" y="645" width="0.0169%" height="15" fill="rgb(213,62,29)" fg:x="248108" fg:w="83"/><text x="50.7592%" y="655.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="50.5131%" y="629" width="0.0130%" height="15" fill="rgb(227,75,7)" fg:x="248127" fg:w="64"/><text x="50.7631%" y="639.50"></text></g><g><title>fill_stack_inode_item (172 samples, 0.04%)</title><rect x="50.4999%" y="661" width="0.0350%" height="15" fill="rgb(207,105,14)" fg:x="248062" fg:w="172"/><text x="50.7499%" y="671.50"></text></g><g><title>mutex_lock (61 samples, 0.01%)</title><rect x="50.5349%" y="661" width="0.0124%" height="15" fill="rgb(245,62,29)" fg:x="248234" fg:w="61"/><text x="50.7849%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (722 samples, 0.15%)</title><rect x="50.4172%" y="677" width="0.1470%" height="15" fill="rgb(236,202,4)" fg:x="247656" fg:w="722"/><text x="50.6672%" y="687.50"></text></g><g><title>mutex_unlock (83 samples, 0.02%)</title><rect x="50.5473%" y="661" width="0.0169%" height="15" fill="rgb(250,67,1)" fg:x="248295" fg:w="83"/><text x="50.7973%" y="671.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="50.5693%" y="661" width="0.0110%" height="15" fill="rgb(253,115,44)" fg:x="248403" fg:w="54"/><text x="50.8193%" y="671.50"></text></g><g><title>btrfs_update_inode (1,024 samples, 0.21%)</title><rect x="50.3967%" y="693" width="0.2085%" height="15" fill="rgb(251,139,18)" fg:x="247555" fg:w="1024"/><text x="50.6467%" y="703.50"></text></g><g><title>btrfs_update_root_times (201 samples, 0.04%)</title><rect x="50.5642%" y="677" width="0.0409%" height="15" fill="rgb(218,22,32)" fg:x="248378" fg:w="201"/><text x="50.8142%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (122 samples, 0.02%)</title><rect x="50.5803%" y="661" width="0.0248%" height="15" fill="rgb(243,53,5)" fg:x="248457" fg:w="122"/><text x="50.8303%" y="671.50"></text></g><g><title>read_tsc (74 samples, 0.02%)</title><rect x="50.5901%" y="645" width="0.0151%" height="15" fill="rgb(227,56,16)" fg:x="248505" fg:w="74"/><text x="50.8401%" y="655.50"></text></g><g><title>current_time (65 samples, 0.01%)</title><rect x="50.6051%" y="693" width="0.0132%" height="15" fill="rgb(245,53,0)" fg:x="248579" fg:w="65"/><text x="50.8551%" y="703.50"></text></g><g><title>memset_erms (58 samples, 0.01%)</title><rect x="50.6304%" y="677" width="0.0118%" height="15" fill="rgb(216,170,35)" fg:x="248703" fg:w="58"/><text x="50.8804%" y="687.50"></text></g><g><title>kmem_cache_alloc (151 samples, 0.03%)</title><rect x="50.6184%" y="693" width="0.0307%" height="15" fill="rgb(211,200,8)" fg:x="248644" fg:w="151"/><text x="50.8684%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (28,373 samples, 5.78%)</title><rect x="44.9031%" y="709" width="5.7761%" height="15" fill="rgb(228,204,44)" fg:x="220570" fg:w="28373"/><text x="45.1531%" y="719.50">__btrfs..</text></g><g><title>kmem_cache_free (148 samples, 0.03%)</title><rect x="50.6491%" y="693" width="0.0301%" height="15" fill="rgb(214,121,17)" fg:x="248795" fg:w="148"/><text x="50.8991%" y="703.50"></text></g><g><title>btrfs_btree_balance_dirty (88 samples, 0.02%)</title><rect x="50.6794%" y="709" width="0.0179%" height="15" fill="rgb(233,64,38)" fg:x="248944" fg:w="88"/><text x="50.9294%" y="719.50"></text></g><g><title>btrfs_tree_unlock (60 samples, 0.01%)</title><rect x="50.7114%" y="645" width="0.0122%" height="15" fill="rgb(253,54,19)" fg:x="249101" fg:w="60"/><text x="50.9614%" y="655.50"></text></g><g><title>_raw_spin_lock (155 samples, 0.03%)</title><rect x="50.7356%" y="629" width="0.0316%" height="15" fill="rgb(253,94,18)" fg:x="249220" fg:w="155"/><text x="50.9856%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (211 samples, 0.04%)</title><rect x="50.7246%" y="645" width="0.0430%" height="15" fill="rgb(227,57,52)" fg:x="249166" fg:w="211"/><text x="50.9746%" y="655.50"></text></g><g><title>btrfs_free_path (490 samples, 0.10%)</title><rect x="50.7029%" y="677" width="0.0998%" height="15" fill="rgb(230,228,50)" fg:x="249059" fg:w="490"/><text x="50.9529%" y="687.50"></text></g><g><title>btrfs_release_path (484 samples, 0.10%)</title><rect x="50.7041%" y="661" width="0.0985%" height="15" fill="rgb(217,205,27)" fg:x="249065" fg:w="484"/><text x="50.9541%" y="671.50"></text></g><g><title>release_extent_buffer (172 samples, 0.04%)</title><rect x="50.7676%" y="645" width="0.0350%" height="15" fill="rgb(252,71,50)" fg:x="249377" fg:w="172"/><text x="51.0176%" y="655.50"></text></g><g><title>_raw_read_lock (57 samples, 0.01%)</title><rect x="50.8777%" y="613" width="0.0116%" height="15" fill="rgb(209,86,4)" fg:x="249918" fg:w="57"/><text x="51.1277%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (86 samples, 0.02%)</title><rect x="50.8735%" y="629" width="0.0175%" height="15" fill="rgb(229,94,0)" fg:x="249897" fg:w="86"/><text x="51.1235%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (180 samples, 0.04%)</title><rect x="50.8688%" y="645" width="0.0366%" height="15" fill="rgb(252,223,21)" fg:x="249874" fg:w="180"/><text x="51.1188%" y="655.50"></text></g><g><title>btrfs_root_node (70 samples, 0.01%)</title><rect x="50.8912%" y="629" width="0.0143%" height="15" fill="rgb(230,210,4)" fg:x="249984" fg:w="70"/><text x="51.1412%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (176 samples, 0.04%)</title><rect x="50.9117%" y="645" width="0.0358%" height="15" fill="rgb(240,149,38)" fg:x="250085" fg:w="176"/><text x="51.1617%" y="655.50"></text></g><g><title>leaf_space_used (128 samples, 0.03%)</title><rect x="50.9215%" y="629" width="0.0261%" height="15" fill="rgb(254,105,20)" fg:x="250133" fg:w="128"/><text x="51.1715%" y="639.50"></text></g><g><title>btrfs_get_32 (84 samples, 0.02%)</title><rect x="50.9305%" y="613" width="0.0171%" height="15" fill="rgb(253,87,46)" fg:x="250177" fg:w="84"/><text x="51.1805%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (79 samples, 0.02%)</title><rect x="50.9476%" y="645" width="0.0161%" height="15" fill="rgb(253,116,33)" fg:x="250261" fg:w="79"/><text x="51.1976%" y="655.50"></text></g><g><title>_raw_write_lock (98 samples, 0.02%)</title><rect x="50.9720%" y="629" width="0.0200%" height="15" fill="rgb(229,198,5)" fg:x="250381" fg:w="98"/><text x="51.2220%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (144 samples, 0.03%)</title><rect x="50.9636%" y="645" width="0.0293%" height="15" fill="rgb(242,38,37)" fg:x="250340" fg:w="144"/><text x="51.2136%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (645 samples, 0.13%)</title><rect x="50.9930%" y="645" width="0.1313%" height="15" fill="rgb(242,69,53)" fg:x="250484" fg:w="645"/><text x="51.2430%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (64 samples, 0.01%)</title><rect x="51.1505%" y="629" width="0.0130%" height="15" fill="rgb(249,80,16)" fg:x="251258" fg:w="64"/><text x="51.4005%" y="639.50"></text></g><g><title>btrfs_get_64 (131 samples, 0.03%)</title><rect x="51.1635%" y="629" width="0.0267%" height="15" fill="rgb(206,128,11)" fg:x="251322" fg:w="131"/><text x="51.4135%" y="639.50"></text></g><g><title>__radix_tree_lookup (482 samples, 0.10%)</title><rect x="51.2417%" y="613" width="0.0981%" height="15" fill="rgb(212,35,20)" fg:x="251706" fg:w="482"/><text x="51.4917%" y="623.50"></text></g><g><title>check_buffer_tree_ref (53 samples, 0.01%)</title><rect x="51.3492%" y="597" width="0.0108%" height="15" fill="rgb(236,79,13)" fg:x="252234" fg:w="53"/><text x="51.5992%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (280 samples, 0.06%)</title><rect x="51.3398%" y="613" width="0.0570%" height="15" fill="rgb(233,123,3)" fg:x="252188" fg:w="280"/><text x="51.5898%" y="623.50"></text></g><g><title>mark_page_accessed (181 samples, 0.04%)</title><rect x="51.3600%" y="597" width="0.0368%" height="15" fill="rgb(214,93,52)" fg:x="252287" fg:w="181"/><text x="51.6100%" y="607.50"></text></g><g><title>find_extent_buffer (963 samples, 0.20%)</title><rect x="51.2022%" y="629" width="0.1960%" height="15" fill="rgb(251,37,40)" fg:x="251512" fg:w="963"/><text x="51.4522%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,479 samples, 0.30%)</title><rect x="51.1243%" y="645" width="0.3011%" height="15" fill="rgb(227,80,54)" fg:x="251129" fg:w="1479"/><text x="51.3743%" y="655.50"></text></g><g><title>read_extent_buffer (133 samples, 0.03%)</title><rect x="51.3983%" y="629" width="0.0271%" height="15" fill="rgb(254,48,11)" fg:x="252475" fg:w="133"/><text x="51.6483%" y="639.50"></text></g><g><title>btrfs_search_slot (3,275 samples, 0.67%)</title><rect x="50.8101%" y="661" width="0.6667%" height="15" fill="rgb(235,193,26)" fg:x="249586" fg:w="3275"/><text x="51.0601%" y="671.50"></text></g><g><title>unlock_up (252 samples, 0.05%)</title><rect x="51.4256%" y="645" width="0.0513%" height="15" fill="rgb(229,99,21)" fg:x="252609" fg:w="252"/><text x="51.6756%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (236 samples, 0.05%)</title><rect x="51.5412%" y="645" width="0.0480%" height="15" fill="rgb(211,140,41)" fg:x="253177" fg:w="236"/><text x="51.7912%" y="655.50"></text></g><g><title>leaf_space_used (207 samples, 0.04%)</title><rect x="51.5471%" y="629" width="0.0421%" height="15" fill="rgb(240,227,30)" fg:x="253206" fg:w="207"/><text x="51.7971%" y="639.50"></text></g><g><title>btrfs_get_32 (147 samples, 0.03%)</title><rect x="51.5593%" y="613" width="0.0299%" height="15" fill="rgb(215,224,45)" fg:x="253266" fg:w="147"/><text x="51.8093%" y="623.50"></text></g><g><title>btrfs_mark_buffer_dirty (147 samples, 0.03%)</title><rect x="51.5892%" y="645" width="0.0299%" height="15" fill="rgb(206,123,31)" fg:x="253413" fg:w="147"/><text x="51.8392%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (110 samples, 0.02%)</title><rect x="51.5968%" y="629" width="0.0224%" height="15" fill="rgb(210,138,16)" fg:x="253450" fg:w="110"/><text x="51.8468%" y="639.50"></text></g><g><title>btrfs_set_token_32 (75 samples, 0.02%)</title><rect x="51.6192%" y="645" width="0.0153%" height="15" fill="rgb(228,57,28)" fg:x="253560" fg:w="75"/><text x="51.8692%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (4,264 samples, 0.87%)</title><rect x="50.8026%" y="677" width="0.8681%" height="15" fill="rgb(242,170,10)" fg:x="249549" fg:w="4264"/><text x="51.0526%" y="687.50"></text></g><g><title>setup_items_for_insert (952 samples, 0.19%)</title><rect x="51.4769%" y="661" width="0.1938%" height="15" fill="rgb(228,214,39)" fg:x="252861" fg:w="952"/><text x="51.7269%" y="671.50"></text></g><g><title>write_extent_buffer (136 samples, 0.03%)</title><rect x="51.6430%" y="645" width="0.0277%" height="15" fill="rgb(218,179,33)" fg:x="253677" fg:w="136"/><text x="51.8930%" y="655.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="51.6839%" y="661" width="0.0124%" height="15" fill="rgb(235,193,39)" fg:x="253878" fg:w="61"/><text x="51.9339%" y="671.50"></text></g><g><title>kmem_cache_alloc (157 samples, 0.03%)</title><rect x="51.6707%" y="677" width="0.0320%" height="15" fill="rgb(219,221,36)" fg:x="253813" fg:w="157"/><text x="51.9207%" y="687.50"></text></g><g><title>btrfs_orphan_add (5,045 samples, 1.03%)</title><rect x="50.6978%" y="709" width="1.0270%" height="15" fill="rgb(248,218,19)" fg:x="249034" fg:w="5045"/><text x="50.9478%" y="719.50"></text></g><g><title>btrfs_insert_orphan_item (5,041 samples, 1.03%)</title><rect x="50.6986%" y="693" width="1.0262%" height="15" fill="rgb(205,50,9)" fg:x="249038" fg:w="5041"/><text x="50.9486%" y="703.50"></text></g><g><title>kmem_cache_free (109 samples, 0.02%)</title><rect x="51.7026%" y="677" width="0.0222%" height="15" fill="rgb(238,81,28)" fg:x="253970" fg:w="109"/><text x="51.9526%" y="687.50"></text></g><g><title>mutex_lock (145 samples, 0.03%)</title><rect x="51.7293%" y="693" width="0.0295%" height="15" fill="rgb(235,110,19)" fg:x="254101" fg:w="145"/><text x="51.9793%" y="703.50"></text></g><g><title>btrfs_record_unlink_dir (262 samples, 0.05%)</title><rect x="51.7248%" y="709" width="0.0533%" height="15" fill="rgb(214,7,14)" fg:x="254079" fg:w="262"/><text x="51.9748%" y="719.50"></text></g><g><title>mutex_unlock (95 samples, 0.02%)</title><rect x="51.7588%" y="693" width="0.0193%" height="15" fill="rgb(211,77,3)" fg:x="254246" fg:w="95"/><text x="52.0088%" y="703.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="51.7849%" y="693" width="0.0110%" height="15" fill="rgb(229,5,9)" fg:x="254374" fg:w="54"/><text x="52.0349%" y="703.50"></text></g><g><title>mutex_lock (64 samples, 0.01%)</title><rect x="51.8537%" y="661" width="0.0130%" height="15" fill="rgb(225,90,11)" fg:x="254712" fg:w="64"/><text x="52.1037%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (241 samples, 0.05%)</title><rect x="51.8284%" y="677" width="0.0491%" height="15" fill="rgb(242,56,8)" fg:x="254588" fg:w="241"/><text x="52.0784%" y="687.50"></text></g><g><title>mutex_unlock (53 samples, 0.01%)</title><rect x="51.8667%" y="661" width="0.0108%" height="15" fill="rgb(249,212,39)" fg:x="254776" fg:w="53"/><text x="52.1167%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (139 samples, 0.03%)</title><rect x="51.8779%" y="677" width="0.0283%" height="15" fill="rgb(236,90,9)" fg:x="254831" fg:w="139"/><text x="52.1279%" y="687.50"></text></g><g><title>_raw_spin_lock (116 samples, 0.02%)</title><rect x="51.8826%" y="661" width="0.0236%" height="15" fill="rgb(206,88,35)" fg:x="254854" fg:w="116"/><text x="52.1326%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (80 samples, 0.02%)</title><rect x="51.9062%" y="677" width="0.0163%" height="15" fill="rgb(205,126,30)" fg:x="254970" fg:w="80"/><text x="52.1562%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (70 samples, 0.01%)</title><rect x="51.9082%" y="661" width="0.0143%" height="15" fill="rgb(230,176,12)" fg:x="254980" fg:w="70"/><text x="52.1582%" y="671.50"></text></g><g><title>inode_get_bytes (73 samples, 0.01%)</title><rect x="51.9290%" y="661" width="0.0149%" height="15" fill="rgb(243,19,9)" fg:x="255082" fg:w="73"/><text x="52.1790%" y="671.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="51.9308%" y="645" width="0.0130%" height="15" fill="rgb(245,171,17)" fg:x="255091" fg:w="64"/><text x="52.1808%" y="655.50"></text></g><g><title>fill_stack_inode_item (146 samples, 0.03%)</title><rect x="51.9225%" y="677" width="0.0297%" height="15" fill="rgb(227,52,21)" fg:x="255050" fg:w="146"/><text x="52.1725%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (851 samples, 0.17%)</title><rect x="51.7959%" y="693" width="0.1732%" height="15" fill="rgb(238,69,14)" fg:x="254428" fg:w="851"/><text x="52.0459%" y="703.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="51.9705%" y="677" width="0.0106%" height="15" fill="rgb(241,156,39)" fg:x="255286" fg:w="52"/><text x="52.2205%" y="687.50"></text></g><g><title>btrfs_update_inode (1,097 samples, 0.22%)</title><rect x="51.7790%" y="709" width="0.2233%" height="15" fill="rgb(212,227,28)" fg:x="254345" fg:w="1097"/><text x="52.0290%" y="719.50"></text></g><g><title>btrfs_update_root_times (163 samples, 0.03%)</title><rect x="51.9691%" y="693" width="0.0332%" height="15" fill="rgb(209,118,27)" fg:x="255279" fg:w="163"/><text x="52.2191%" y="703.50"></text></g><g><title>ktime_get_real_ts64 (104 samples, 0.02%)</title><rect x="51.9811%" y="677" width="0.0212%" height="15" fill="rgb(226,102,5)" fg:x="255338" fg:w="104"/><text x="52.2311%" y="687.50"></text></g><g><title>read_tsc (70 samples, 0.01%)</title><rect x="51.9880%" y="661" width="0.0143%" height="15" fill="rgb(223,34,3)" fg:x="255372" fg:w="70"/><text x="52.2380%" y="671.50"></text></g><g><title>drop_nlink (55 samples, 0.01%)</title><rect x="52.0023%" y="709" width="0.0112%" height="15" fill="rgb(221,81,38)" fg:x="255442" fg:w="55"/><text x="52.2523%" y="719.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="52.0577%" y="677" width="0.0108%" height="15" fill="rgb(236,219,28)" fg:x="255714" fg:w="53"/><text x="52.3077%" y="687.50"></text></g><g><title>_raw_spin_lock (89 samples, 0.02%)</title><rect x="52.0823%" y="645" width="0.0181%" height="15" fill="rgb(213,200,14)" fg:x="255835" fg:w="89"/><text x="52.3323%" y="655.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="52.1676%" y="613" width="0.0228%" height="15" fill="rgb(240,33,19)" fg:x="256254" fg:w="112"/><text x="52.4176%" y="623.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (443 samples, 0.09%)</title><rect x="52.1004%" y="645" width="0.0902%" height="15" fill="rgb(233,113,27)" fg:x="255924" fg:w="443"/><text x="52.3504%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (238 samples, 0.05%)</title><rect x="52.1421%" y="629" width="0.0485%" height="15" fill="rgb(220,221,18)" fg:x="256129" fg:w="238"/><text x="52.3921%" y="639.50"></text></g><g><title>btrfs_block_rsv_add (711 samples, 0.14%)</title><rect x="52.0540%" y="693" width="0.1447%" height="15" fill="rgb(238,92,8)" fg:x="255696" fg:w="711"/><text x="52.3040%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (640 samples, 0.13%)</title><rect x="52.0685%" y="677" width="0.1303%" height="15" fill="rgb(222,164,16)" fg:x="255767" fg:w="640"/><text x="52.3185%" y="687.50"></text></g><g><title>__reserve_bytes (625 samples, 0.13%)</title><rect x="52.0715%" y="661" width="0.1272%" height="15" fill="rgb(241,119,3)" fg:x="255782" fg:w="625"/><text x="52.3215%" y="671.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="52.2358%" y="677" width="0.0130%" height="15" fill="rgb(241,44,8)" fg:x="256589" fg:w="64"/><text x="52.4858%" y="687.50"></text></g><g><title>join_transaction (239 samples, 0.05%)</title><rect x="52.2006%" y="693" width="0.0487%" height="15" fill="rgb(230,36,40)" fg:x="256416" fg:w="239"/><text x="52.4506%" y="703.50"></text></g><g><title>kmem_cache_alloc (145 samples, 0.03%)</title><rect x="52.2492%" y="693" width="0.0295%" height="15" fill="rgb(243,16,36)" fg:x="256655" fg:w="145"/><text x="52.4992%" y="703.50"></text></g><g><title>btrfs_unlink (36,934 samples, 7.52%)</title><rect x="44.7779%" y="725" width="7.5189%" height="15" fill="rgb(231,4,26)" fg:x="219955" fg:w="36934"/><text x="45.0279%" y="735.50">btrfs_unli..</text></g><g><title>start_transaction (1,392 samples, 0.28%)</title><rect x="52.0135%" y="709" width="0.2834%" height="15" fill="rgb(240,9,31)" fg:x="255497" fg:w="1392"/><text x="52.2635%" y="719.50"></text></g><g><title>wait_current_trans (89 samples, 0.02%)</title><rect x="52.2787%" y="693" width="0.0181%" height="15" fill="rgb(207,173,15)" fg:x="256800" fg:w="89"/><text x="52.5287%" y="703.50"></text></g><g><title>_raw_spin_lock (63 samples, 0.01%)</title><rect x="52.2840%" y="677" width="0.0128%" height="15" fill="rgb(224,192,53)" fg:x="256826" fg:w="63"/><text x="52.5340%" y="687.50"></text></g><g><title>d_delete (103 samples, 0.02%)</title><rect x="52.2969%" y="725" width="0.0210%" height="15" fill="rgb(223,67,28)" fg:x="256889" fg:w="103"/><text x="52.5469%" y="735.50"></text></g><g><title>_raw_spin_lock (87 samples, 0.02%)</title><rect x="52.3001%" y="709" width="0.0177%" height="15" fill="rgb(211,20,47)" fg:x="256905" fg:w="87"/><text x="52.5501%" y="719.50"></text></g><g><title>__srcu_read_lock (96 samples, 0.02%)</title><rect x="52.3382%" y="677" width="0.0195%" height="15" fill="rgb(240,228,2)" fg:x="257092" fg:w="96"/><text x="52.5882%" y="687.50"></text></g><g><title>__srcu_read_unlock (62 samples, 0.01%)</title><rect x="52.3577%" y="677" width="0.0126%" height="15" fill="rgb(248,151,12)" fg:x="257188" fg:w="62"/><text x="52.6077%" y="687.50"></text></g><g><title>dentry_unlink_inode (259 samples, 0.05%)</title><rect x="52.3178%" y="725" width="0.0527%" height="15" fill="rgb(244,8,39)" fg:x="256992" fg:w="259"/><text x="52.5678%" y="735.50"></text></g><g><title>fsnotify_destroy_marks (187 samples, 0.04%)</title><rect x="52.3325%" y="709" width="0.0381%" height="15" fill="rgb(222,26,8)" fg:x="257064" fg:w="187"/><text x="52.5825%" y="719.50"></text></g><g><title>fsnotify_grab_connector (174 samples, 0.04%)</title><rect x="52.3351%" y="693" width="0.0354%" height="15" fill="rgb(213,106,44)" fg:x="257077" fg:w="174"/><text x="52.5851%" y="703.50"></text></g><g><title>down_write (360 samples, 0.07%)</title><rect x="52.3706%" y="725" width="0.0733%" height="15" fill="rgb(214,129,20)" fg:x="257251" fg:w="360"/><text x="52.6206%" y="735.50"></text></g><g><title>fsnotify (213 samples, 0.04%)</title><rect x="52.4438%" y="725" width="0.0434%" height="15" fill="rgb(212,32,13)" fg:x="257611" fg:w="213"/><text x="52.6938%" y="735.50"></text></g><g><title>ihold (66 samples, 0.01%)</title><rect x="52.4872%" y="725" width="0.0134%" height="15" fill="rgb(208,168,33)" fg:x="257824" fg:w="66"/><text x="52.7372%" y="735.50"></text></g><g><title>iput.part.0 (129 samples, 0.03%)</title><rect x="52.5029%" y="725" width="0.0263%" height="15" fill="rgb(231,207,8)" fg:x="257901" fg:w="129"/><text x="52.7529%" y="735.50"></text></g><g><title>_atomic_dec_and_lock (113 samples, 0.02%)</title><rect x="52.5061%" y="709" width="0.0230%" height="15" fill="rgb(235,219,23)" fg:x="257917" fg:w="113"/><text x="52.7561%" y="719.50"></text></g><g><title>inode_permission.part.0 (66 samples, 0.01%)</title><rect x="52.5351%" y="709" width="0.0134%" height="15" fill="rgb(226,216,26)" fg:x="258059" fg:w="66"/><text x="52.7851%" y="719.50"></text></g><g><title>may_delete (99 samples, 0.02%)</title><rect x="52.5291%" y="725" width="0.0202%" height="15" fill="rgb(239,137,16)" fg:x="258030" fg:w="99"/><text x="52.7791%" y="735.50"></text></g><g><title>do_unlinkat (94,079 samples, 19.15%)</title><rect x="33.4128%" y="757" width="19.1524%" height="15" fill="rgb(207,12,36)" fg:x="164128" fg:w="94079"/><text x="33.6628%" y="767.50">do_unlinkat</text></g><g><title>vfs_unlink (38,429 samples, 7.82%)</title><rect x="44.7419%" y="741" width="7.8233%" height="15" fill="rgb(210,214,24)" fg:x="219778" fg:w="38429"/><text x="44.9919%" y="751.50">vfs_unlink</text></g><g><title>up_write (69 samples, 0.01%)</title><rect x="52.5511%" y="725" width="0.0140%" height="15" fill="rgb(206,56,30)" fg:x="258138" fg:w="69"/><text x="52.8011%" y="735.50"></text></g><g><title>do_syscall_64 (105,947 samples, 21.57%)</title><rect x="30.9990%" y="773" width="21.5684%" height="15" fill="rgb(228,143,26)" fg:x="152271" fg:w="105947"/><text x="31.2490%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (106,050 samples, 21.59%)</title><rect x="30.9894%" y="789" width="21.5894%" height="15" fill="rgb(216,218,46)" fg:x="152224" fg:w="106050"/><text x="31.2394%" y="799.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>syscall_exit_to_user_mode (56 samples, 0.01%)</title><rect x="52.5674%" y="773" width="0.0114%" height="15" fill="rgb(206,6,19)" fg:x="258218" fg:w="56"/><text x="52.8174%" y="783.50"></text></g><g><title>__GI_unlinkat (106,579 samples, 21.70%)</title><rect x="30.9025%" y="805" width="21.6971%" height="15" fill="rgb(239,177,51)" fg:x="151797" fg:w="106579"/><text x="31.1525%" y="815.50">__GI_unlinkat</text></g><g><title>syscall_return_via_sysret (99 samples, 0.02%)</title><rect x="52.5794%" y="789" width="0.0202%" height="15" fill="rgb(216,55,25)" fg:x="258277" fg:w="99"/><text x="52.8294%" y="799.50"></text></g><g><title>__closedir (78 samples, 0.02%)</title><rect x="52.6004%" y="805" width="0.0159%" height="15" fill="rgb(231,163,29)" fg:x="258380" fg:w="78"/><text x="52.8504%" y="815.50"></text></g><g><title>_int_free (67 samples, 0.01%)</title><rect x="52.6026%" y="789" width="0.0136%" height="15" fill="rgb(232,149,50)" fg:x="258391" fg:w="67"/><text x="52.8526%" y="799.50"></text></g><g><title>__GI___fcntl64_nocancel (53 samples, 0.01%)</title><rect x="52.6242%" y="789" width="0.0108%" height="15" fill="rgb(223,142,48)" fg:x="258497" fg:w="53"/><text x="52.8742%" y="799.50"></text></g><g><title>__fcntl64_nocancel_adjusted (50 samples, 0.01%)</title><rect x="52.6248%" y="773" width="0.0102%" height="15" fill="rgb(245,83,23)" fg:x="258500" fg:w="50"/><text x="52.8748%" y="783.50"></text></g><g><title>btrfs_getattr (60 samples, 0.01%)</title><rect x="52.6493%" y="709" width="0.0122%" height="15" fill="rgb(224,63,2)" fg:x="258620" fg:w="60"/><text x="52.8993%" y="719.50"></text></g><g><title>__do_sys_newfstat (145 samples, 0.03%)</title><rect x="52.6393%" y="741" width="0.0295%" height="15" fill="rgb(218,65,53)" fg:x="258571" fg:w="145"/><text x="52.8893%" y="751.50"></text></g><g><title>vfs_fstat (116 samples, 0.02%)</title><rect x="52.6452%" y="725" width="0.0236%" height="15" fill="rgb(221,84,29)" fg:x="258600" fg:w="116"/><text x="52.8952%" y="735.50"></text></g><g><title>do_syscall_64 (149 samples, 0.03%)</title><rect x="52.6387%" y="757" width="0.0303%" height="15" fill="rgb(234,0,32)" fg:x="258568" fg:w="149"/><text x="52.8887%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (153 samples, 0.03%)</title><rect x="52.6383%" y="773" width="0.0311%" height="15" fill="rgb(206,20,16)" fg:x="258566" fg:w="153"/><text x="52.8883%" y="783.50"></text></g><g><title>__GI___fxstat (173 samples, 0.04%)</title><rect x="52.6350%" y="789" width="0.0352%" height="15" fill="rgb(244,172,18)" fg:x="258550" fg:w="173"/><text x="52.8850%" y="799.50"></text></g><g><title>__GI___fcntl64_nocancel (51 samples, 0.01%)</title><rect x="52.6712%" y="773" width="0.0104%" height="15" fill="rgb(254,133,1)" fg:x="258728" fg:w="51"/><text x="52.9212%" y="783.50"></text></g><g><title>malloc_consolidate (54 samples, 0.01%)</title><rect x="52.7030%" y="741" width="0.0110%" height="15" fill="rgb(222,206,41)" fg:x="258884" fg:w="54"/><text x="52.9530%" y="751.50"></text></g><g><title>__GI___libc_malloc (164 samples, 0.03%)</title><rect x="52.6816%" y="773" width="0.0334%" height="15" fill="rgb(212,3,42)" fg:x="258779" fg:w="164"/><text x="52.9316%" y="783.50"></text></g><g><title>_int_malloc (119 samples, 0.02%)</title><rect x="52.6908%" y="757" width="0.0242%" height="15" fill="rgb(241,11,4)" fg:x="258824" fg:w="119"/><text x="52.9408%" y="767.50"></text></g><g><title>__fdopendir (455 samples, 0.09%)</title><rect x="52.6232%" y="805" width="0.0926%" height="15" fill="rgb(205,19,26)" fg:x="258492" fg:w="455"/><text x="52.8732%" y="815.50"></text></g><g><title>__alloc_dir (224 samples, 0.05%)</title><rect x="52.6702%" y="789" width="0.0456%" height="15" fill="rgb(210,179,32)" fg:x="258723" fg:w="224"/><text x="52.9202%" y="799.50"></text></g><g><title>memcg_slab_post_alloc_hook (64 samples, 0.01%)</title><rect x="52.7586%" y="645" width="0.0130%" height="15" fill="rgb(227,116,49)" fg:x="259157" fg:w="64"/><text x="53.0086%" y="655.50"></text></g><g><title>kmem_cache_alloc (156 samples, 0.03%)</title><rect x="52.7529%" y="661" width="0.0318%" height="15" fill="rgb(211,146,6)" fg:x="259129" fg:w="156"/><text x="53.0029%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (60 samples, 0.01%)</title><rect x="52.7724%" y="645" width="0.0122%" height="15" fill="rgb(219,44,39)" fg:x="259225" fg:w="60"/><text x="53.0224%" y="655.50"></text></g><g><title>__alloc_file (200 samples, 0.04%)</title><rect x="52.7517%" y="677" width="0.0407%" height="15" fill="rgb(234,128,11)" fg:x="259123" fg:w="200"/><text x="53.0017%" y="687.50"></text></g><g><title>alloc_empty_file (210 samples, 0.04%)</title><rect x="52.7500%" y="693" width="0.0428%" height="15" fill="rgb(220,183,53)" fg:x="259115" fg:w="210"/><text x="53.0000%" y="703.50"></text></g><g><title>btrfs_opendir (86 samples, 0.02%)</title><rect x="52.8040%" y="677" width="0.0175%" height="15" fill="rgb(213,219,32)" fg:x="259380" fg:w="86"/><text x="53.0540%" y="687.50"></text></g><g><title>kmem_cache_alloc_trace (75 samples, 0.02%)</title><rect x="52.8062%" y="661" width="0.0153%" height="15" fill="rgb(232,156,16)" fg:x="259391" fg:w="75"/><text x="53.0562%" y="671.50"></text></g><g><title>do_dentry_open (213 samples, 0.04%)</title><rect x="52.7962%" y="693" width="0.0434%" height="15" fill="rgb(246,135,34)" fg:x="259342" fg:w="213"/><text x="53.0462%" y="703.50"></text></g><g><title>security_file_open (56 samples, 0.01%)</title><rect x="52.8282%" y="677" width="0.0114%" height="15" fill="rgb(241,99,0)" fg:x="259499" fg:w="56"/><text x="53.0782%" y="687.50"></text></g><g><title>lookup_fast (87 samples, 0.02%)</title><rect x="52.8412%" y="693" width="0.0177%" height="15" fill="rgb(222,103,45)" fg:x="259563" fg:w="87"/><text x="53.0912%" y="703.50"></text></g><g><title>__d_lookup_rcu (82 samples, 0.02%)</title><rect x="52.8422%" y="677" width="0.0167%" height="15" fill="rgb(212,57,4)" fg:x="259568" fg:w="82"/><text x="53.0922%" y="687.50"></text></g><g><title>do_filp_open (650 samples, 0.13%)</title><rect x="52.7431%" y="725" width="0.1323%" height="15" fill="rgb(215,68,47)" fg:x="259081" fg:w="650"/><text x="52.9931%" y="735.50"></text></g><g><title>path_openat (634 samples, 0.13%)</title><rect x="52.7464%" y="709" width="0.1291%" height="15" fill="rgb(230,84,2)" fg:x="259097" fg:w="634"/><text x="52.9964%" y="719.50"></text></g><g><title>kmem_cache_alloc (51 samples, 0.01%)</title><rect x="52.8817%" y="709" width="0.0104%" height="15" fill="rgb(220,102,14)" fg:x="259762" fg:w="51"/><text x="53.1317%" y="719.50"></text></g><g><title>getname_flags.part.0 (112 samples, 0.02%)</title><rect x="52.8813%" y="725" width="0.0228%" height="15" fill="rgb(240,10,32)" fg:x="259760" fg:w="112"/><text x="53.1313%" y="735.50"></text></g><g><title>strncpy_from_user (59 samples, 0.01%)</title><rect x="52.8921%" y="709" width="0.0120%" height="15" fill="rgb(215,47,27)" fg:x="259813" fg:w="59"/><text x="53.1421%" y="719.50"></text></g><g><title>__x64_sys_openat (884 samples, 0.18%)</title><rect x="52.7291%" y="757" width="0.1800%" height="15" fill="rgb(233,188,43)" fg:x="259012" fg:w="884"/><text x="52.9791%" y="767.50"></text></g><g><title>do_sys_openat2 (866 samples, 0.18%)</title><rect x="52.7327%" y="741" width="0.1763%" height="15" fill="rgb(253,190,1)" fg:x="259030" fg:w="866"/><text x="52.9827%" y="751.50"></text></g><g><title>do_syscall_64 (893 samples, 0.18%)</title><rect x="52.7278%" y="773" width="0.1818%" height="15" fill="rgb(206,114,52)" fg:x="259006" fg:w="893"/><text x="52.9778%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (904 samples, 0.18%)</title><rect x="52.7274%" y="789" width="0.1840%" height="15" fill="rgb(233,120,37)" fg:x="259004" fg:w="904"/><text x="52.9774%" y="799.50"></text></g><g><title>__libc_openat64 (947 samples, 0.19%)</title><rect x="52.7195%" y="805" width="0.1928%" height="15" fill="rgb(214,52,39)" fg:x="258965" fg:w="947"/><text x="52.9695%" y="815.50"></text></g><g><title>entry_SYSCALL_64 (151 samples, 0.03%)</title><rect x="52.9581%" y="789" width="0.0307%" height="15" fill="rgb(223,80,29)" fg:x="260137" fg:w="151"/><text x="53.2081%" y="799.50"></text></g><g><title>__list_add_valid (57 samples, 0.01%)</title><rect x="53.0794%" y="693" width="0.0116%" height="15" fill="rgb(230,101,40)" fg:x="260733" fg:w="57"/><text x="53.3294%" y="703.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="53.0910%" y="693" width="0.0214%" height="15" fill="rgb(219,211,8)" fg:x="260790" fg:w="105"/><text x="53.3410%" y="703.50"></text></g><g><title>d_lru_add (429 samples, 0.09%)</title><rect x="53.0407%" y="725" width="0.0873%" height="15" fill="rgb(252,126,28)" fg:x="260543" fg:w="429"/><text x="53.2907%" y="735.50"></text></g><g><title>list_lru_add (413 samples, 0.08%)</title><rect x="53.0440%" y="709" width="0.0841%" height="15" fill="rgb(215,56,38)" fg:x="260559" fg:w="413"/><text x="53.2940%" y="719.50"></text></g><g><title>mem_cgroup_from_obj (76 samples, 0.02%)</title><rect x="53.1126%" y="693" width="0.0155%" height="15" fill="rgb(249,55,44)" fg:x="260896" fg:w="76"/><text x="53.3626%" y="703.50"></text></g><g><title>lockref_put_or_lock (157 samples, 0.03%)</title><rect x="53.1281%" y="725" width="0.0320%" height="15" fill="rgb(220,221,32)" fg:x="260972" fg:w="157"/><text x="53.3781%" y="735.50"></text></g><g><title>_raw_spin_lock (51 samples, 0.01%)</title><rect x="53.1497%" y="709" width="0.0104%" height="15" fill="rgb(212,216,41)" fg:x="261078" fg:w="51"/><text x="53.3997%" y="719.50"></text></g><g><title>dput (678 samples, 0.14%)</title><rect x="53.0222%" y="741" width="0.1380%" height="15" fill="rgb(228,213,43)" fg:x="260452" fg:w="678"/><text x="53.2722%" y="751.50"></text></g><g><title>btrfs_tree_read_unlock_blocking (92 samples, 0.02%)</title><rect x="53.2087%" y="645" width="0.0187%" height="15" fill="rgb(211,31,26)" fg:x="261368" fg:w="92"/><text x="53.4587%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (226 samples, 0.05%)</title><rect x="53.2280%" y="645" width="0.0460%" height="15" fill="rgb(229,202,19)" fg:x="261463" fg:w="226"/><text x="53.4780%" y="655.50"></text></g><g><title>_raw_spin_lock (165 samples, 0.03%)</title><rect x="53.2404%" y="629" width="0.0336%" height="15" fill="rgb(229,105,46)" fg:x="261524" fg:w="165"/><text x="53.4904%" y="639.50"></text></g><g><title>btrfs_free_path (581 samples, 0.12%)</title><rect x="53.1948%" y="677" width="0.1183%" height="15" fill="rgb(235,108,1)" fg:x="261300" fg:w="581"/><text x="53.4448%" y="687.50"></text></g><g><title>btrfs_release_path (572 samples, 0.12%)</title><rect x="53.1967%" y="661" width="0.1164%" height="15" fill="rgb(245,111,35)" fg:x="261309" fg:w="572"/><text x="53.4467%" y="671.50"></text></g><g><title>release_extent_buffer (192 samples, 0.04%)</title><rect x="53.2740%" y="645" width="0.0391%" height="15" fill="rgb(219,185,31)" fg:x="261689" fg:w="192"/><text x="53.5240%" y="655.50"></text></g><g><title>__btrfs_tree_read_lock (83 samples, 0.02%)</title><rect x="53.3954%" y="629" width="0.0169%" height="15" fill="rgb(214,4,43)" fg:x="262285" fg:w="83"/><text x="53.6454%" y="639.50"></text></g><g><title>_raw_read_lock (57 samples, 0.01%)</title><rect x="53.4007%" y="613" width="0.0116%" height="15" fill="rgb(235,227,40)" fg:x="262311" fg:w="57"/><text x="53.6507%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (266 samples, 0.05%)</title><rect x="53.3915%" y="645" width="0.0542%" height="15" fill="rgb(230,88,30)" fg:x="262266" fg:w="266"/><text x="53.6415%" y="655.50"></text></g><g><title>btrfs_root_node (164 samples, 0.03%)</title><rect x="53.4123%" y="629" width="0.0334%" height="15" fill="rgb(216,217,1)" fg:x="262368" fg:w="164"/><text x="53.6623%" y="639.50"></text></g><g><title>dequeue_task_fair (51 samples, 0.01%)</title><rect x="53.4597%" y="597" width="0.0104%" height="15" fill="rgb(248,139,50)" fg:x="262601" fg:w="51"/><text x="53.7097%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (192 samples, 0.04%)</title><rect x="53.4457%" y="645" width="0.0391%" height="15" fill="rgb(233,1,21)" fg:x="262532" fg:w="192"/><text x="53.6957%" y="655.50"></text></g><g><title>schedule (156 samples, 0.03%)</title><rect x="53.4530%" y="629" width="0.0318%" height="15" fill="rgb(215,183,12)" fg:x="262568" fg:w="156"/><text x="53.7030%" y="639.50"></text></g><g><title>__schedule (145 samples, 0.03%)</title><rect x="53.4552%" y="613" width="0.0295%" height="15" fill="rgb(229,104,42)" fg:x="262579" fg:w="145"/><text x="53.7052%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (211 samples, 0.04%)</title><rect x="53.4978%" y="645" width="0.0430%" height="15" fill="rgb(243,34,48)" fg:x="262788" fg:w="211"/><text x="53.7478%" y="655.50"></text></g><g><title>btrfs_set_lock_blocking_read (159 samples, 0.03%)</title><rect x="53.5084%" y="629" width="0.0324%" height="15" fill="rgb(239,11,44)" fg:x="262840" fg:w="159"/><text x="53.7584%" y="639.50"></text></g><g><title>_raw_read_lock (130 samples, 0.03%)</title><rect x="53.5472%" y="629" width="0.0265%" height="15" fill="rgb(231,98,35)" fg:x="263031" fg:w="130"/><text x="53.7972%" y="639.50"></text></g><g><title>btrfs_tree_read_lock_atomic (288 samples, 0.06%)</title><rect x="53.5407%" y="645" width="0.0586%" height="15" fill="rgb(233,28,25)" fg:x="262999" fg:w="288"/><text x="53.7907%" y="655.50"></text></g><g><title>queued_read_lock_slowpath (126 samples, 0.03%)</title><rect x="53.5737%" y="629" width="0.0257%" height="15" fill="rgb(234,123,11)" fg:x="263161" fg:w="126"/><text x="53.8237%" y="639.50"></text></g><g><title>btrfs_tree_read_unlock (152 samples, 0.03%)</title><rect x="53.5994%" y="645" width="0.0309%" height="15" fill="rgb(220,69,3)" fg:x="263287" fg:w="152"/><text x="53.8494%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (1,159 samples, 0.24%)</title><rect x="53.6336%" y="645" width="0.2359%" height="15" fill="rgb(214,64,36)" fg:x="263455" fg:w="1159"/><text x="53.8836%" y="655.50"></text></g><g><title>btrfs_buffer_uptodate (84 samples, 0.02%)</title><rect x="53.8990%" y="629" width="0.0171%" height="15" fill="rgb(211,138,32)" fg:x="264759" fg:w="84"/><text x="54.1490%" y="639.50"></text></g><g><title>verify_parent_transid (51 samples, 0.01%)</title><rect x="53.9057%" y="613" width="0.0104%" height="15" fill="rgb(213,118,47)" fg:x="264792" fg:w="51"/><text x="54.1557%" y="623.50"></text></g><g><title>btrfs_get_64 (154 samples, 0.03%)</title><rect x="53.9161%" y="629" width="0.0314%" height="15" fill="rgb(243,124,49)" fg:x="264843" fg:w="154"/><text x="54.1661%" y="639.50"></text></g><g><title>__radix_tree_lookup (795 samples, 0.16%)</title><rect x="54.0132%" y="613" width="0.1618%" height="15" fill="rgb(221,30,28)" fg:x="265320" fg:w="795"/><text x="54.2632%" y="623.50"></text></g><g><title>check_buffer_tree_ref (61 samples, 0.01%)</title><rect x="54.1869%" y="597" width="0.0124%" height="15" fill="rgb(246,37,13)" fg:x="266173" fg:w="61"/><text x="54.4369%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (321 samples, 0.07%)</title><rect x="54.1753%" y="613" width="0.0653%" height="15" fill="rgb(249,66,14)" fg:x="266116" fg:w="321"/><text x="54.4253%" y="623.50"></text></g><g><title>mark_page_accessed (203 samples, 0.04%)</title><rect x="54.1993%" y="597" width="0.0413%" height="15" fill="rgb(213,166,5)" fg:x="266234" fg:w="203"/><text x="54.4493%" y="607.50"></text></g><g><title>find_extent_buffer (1,390 samples, 0.28%)</title><rect x="53.9599%" y="629" width="0.2830%" height="15" fill="rgb(221,66,24)" fg:x="265058" fg:w="1390"/><text x="54.2099%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (1,987 samples, 0.40%)</title><rect x="53.8695%" y="645" width="0.4045%" height="15" fill="rgb(210,132,17)" fg:x="264614" fg:w="1987"/><text x="54.1195%" y="655.50"></text></g><g><title>read_extent_buffer (153 samples, 0.03%)</title><rect x="54.2429%" y="629" width="0.0311%" height="15" fill="rgb(243,202,5)" fg:x="266448" fg:w="153"/><text x="54.4929%" y="639.50"></text></g><g><title>btrfs_search_slot (4,790 samples, 0.98%)</title><rect x="53.3223%" y="661" width="0.9751%" height="15" fill="rgb(233,70,48)" fg:x="261926" fg:w="4790"/><text x="53.5723%" y="671.50"></text></g><g><title>unlock_up (115 samples, 0.02%)</title><rect x="54.2740%" y="645" width="0.0234%" height="15" fill="rgb(238,41,26)" fg:x="266601" fg:w="115"/><text x="54.5240%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (5,001 samples, 1.02%)</title><rect x="53.3131%" y="677" width="1.0181%" height="15" fill="rgb(241,19,31)" fg:x="261881" fg:w="5001"/><text x="53.5631%" y="687.50"></text></g><g><title>crc32c (166 samples, 0.03%)</title><rect x="54.2974%" y="661" width="0.0338%" height="15" fill="rgb(214,76,10)" fg:x="266716" fg:w="166"/><text x="54.5474%" y="671.50"></text></g><g><title>crypto_shash_update (123 samples, 0.03%)</title><rect x="54.3062%" y="645" width="0.0250%" height="15" fill="rgb(254,202,22)" fg:x="266759" fg:w="123"/><text x="54.5562%" y="655.50"></text></g><g><title>memset_erms (65 samples, 0.01%)</title><rect x="54.3556%" y="661" width="0.0132%" height="15" fill="rgb(214,72,24)" fg:x="267002" fg:w="65"/><text x="54.6056%" y="671.50"></text></g><g><title>kmem_cache_alloc (222 samples, 0.05%)</title><rect x="54.3312%" y="677" width="0.0452%" height="15" fill="rgb(221,92,46)" fg:x="266882" fg:w="222"/><text x="54.5812%" y="687.50"></text></g><g><title>btrfs_lookup (6,010 samples, 1.22%)</title><rect x="53.1735%" y="709" width="1.2235%" height="15" fill="rgb(246,13,50)" fg:x="261195" fg:w="6010"/><text x="53.4235%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (5,995 samples, 1.22%)</title><rect x="53.1765%" y="693" width="1.2204%" height="15" fill="rgb(240,165,38)" fg:x="261210" fg:w="5995"/><text x="53.4265%" y="703.50"></text></g><g><title>kmem_cache_free (101 samples, 0.02%)</title><rect x="54.3764%" y="677" width="0.0206%" height="15" fill="rgb(241,24,51)" fg:x="267104" fg:w="101"/><text x="54.6264%" y="687.50"></text></g><g><title>___slab_alloc (136 samples, 0.03%)</title><rect x="54.4690%" y="645" width="0.0277%" height="15" fill="rgb(227,51,44)" fg:x="267559" fg:w="136"/><text x="54.7190%" y="655.50"></text></g><g><title>get_partial_node.part.0 (55 samples, 0.01%)</title><rect x="54.4855%" y="629" width="0.0112%" height="15" fill="rgb(231,121,3)" fg:x="267640" fg:w="55"/><text x="54.7355%" y="639.50"></text></g><g><title>__slab_alloc (147 samples, 0.03%)</title><rect x="54.4670%" y="661" width="0.0299%" height="15" fill="rgb(245,3,41)" fg:x="267549" fg:w="147"/><text x="54.7170%" y="671.50"></text></g><g><title>__mod_memcg_lruvec_state (106 samples, 0.02%)</title><rect x="54.5661%" y="645" width="0.0216%" height="15" fill="rgb(214,13,26)" fg:x="268036" fg:w="106"/><text x="54.8161%" y="655.50"></text></g><g><title>__mod_memcg_state.part.0 (62 samples, 0.01%)</title><rect x="54.5751%" y="629" width="0.0126%" height="15" fill="rgb(252,75,11)" fg:x="268080" fg:w="62"/><text x="54.8251%" y="639.50"></text></g><g><title>memcg_slab_post_alloc_hook (464 samples, 0.09%)</title><rect x="54.4969%" y="661" width="0.0945%" height="15" fill="rgb(218,226,17)" fg:x="267696" fg:w="464"/><text x="54.7469%" y="671.50"></text></g><g><title>memset_erms (83 samples, 0.02%)</title><rect x="54.5924%" y="661" width="0.0169%" height="15" fill="rgb(248,89,38)" fg:x="268165" fg:w="83"/><text x="54.8424%" y="671.50"></text></g><g><title>get_obj_cgroup_from_current (70 samples, 0.01%)</title><rect x="54.6209%" y="645" width="0.0143%" height="15" fill="rgb(237,73,46)" fg:x="268305" fg:w="70"/><text x="54.8709%" y="655.50"></text></g><g><title>obj_cgroup_charge (169 samples, 0.03%)</title><rect x="54.6352%" y="645" width="0.0344%" height="15" fill="rgb(242,78,33)" fg:x="268375" fg:w="169"/><text x="54.8852%" y="655.50"></text></g><g><title>kmem_cache_alloc (1,181 samples, 0.24%)</title><rect x="54.4302%" y="677" width="0.2404%" height="15" fill="rgb(235,60,3)" fg:x="267368" fg:w="1181"/><text x="54.6802%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (296 samples, 0.06%)</title><rect x="54.6103%" y="661" width="0.0603%" height="15" fill="rgb(216,172,19)" fg:x="268253" fg:w="296"/><text x="54.8603%" y="671.50"></text></g><g><title>__d_alloc (1,364 samples, 0.28%)</title><rect x="54.4019%" y="693" width="0.2777%" height="15" fill="rgb(227,6,42)" fg:x="267229" fg:w="1364"/><text x="54.6519%" y="703.50"></text></g><g><title>d_alloc (1,468 samples, 0.30%)</title><rect x="54.3970%" y="709" width="0.2989%" height="15" fill="rgb(223,207,42)" fg:x="267205" fg:w="1468"/><text x="54.6470%" y="719.50"></text></g><g><title>_raw_spin_lock (61 samples, 0.01%)</title><rect x="54.6834%" y="693" width="0.0124%" height="15" fill="rgb(246,138,30)" fg:x="268612" fg:w="61"/><text x="54.9334%" y="703.50"></text></g><g><title>__d_rehash (108 samples, 0.02%)</title><rect x="54.7015%" y="677" width="0.0220%" height="15" fill="rgb(251,199,47)" fg:x="268701" fg:w="108"/><text x="54.9515%" y="687.50"></text></g><g><title>d_splice_alias (206 samples, 0.04%)</title><rect x="54.6958%" y="709" width="0.0419%" height="15" fill="rgb(228,218,44)" fg:x="268673" fg:w="206"/><text x="54.9458%" y="719.50"></text></g><g><title>__d_add (192 samples, 0.04%)</title><rect x="54.6987%" y="693" width="0.0391%" height="15" fill="rgb(220,68,6)" fg:x="268687" fg:w="192"/><text x="54.9487%" y="703.50"></text></g><g><title>_raw_spin_lock (70 samples, 0.01%)</title><rect x="54.7235%" y="677" width="0.0143%" height="15" fill="rgb(240,60,26)" fg:x="268809" fg:w="70"/><text x="54.9735%" y="687.50"></text></g><g><title>__lookup_hash (8,396 samples, 1.71%)</title><rect x="53.1676%" y="725" width="1.7092%" height="15" fill="rgb(211,200,19)" fg:x="261166" fg:w="8396"/><text x="53.4176%" y="735.50"></text></g><g><title>lookup_dcache (683 samples, 0.14%)</title><rect x="54.7378%" y="709" width="0.1390%" height="15" fill="rgb(242,145,30)" fg:x="268879" fg:w="683"/><text x="54.9878%" y="719.50"></text></g><g><title>d_lookup (672 samples, 0.14%)</title><rect x="54.7400%" y="693" width="0.1368%" height="15" fill="rgb(225,64,13)" fg:x="268890" fg:w="672"/><text x="54.9900%" y="703.50"></text></g><g><title>__d_lookup (660 samples, 0.13%)</title><rect x="54.7424%" y="677" width="0.1344%" height="15" fill="rgb(218,103,35)" fg:x="268902" fg:w="660"/><text x="54.9924%" y="687.50"></text></g><g><title>down_write (70 samples, 0.01%)</title><rect x="54.8768%" y="725" width="0.0143%" height="15" fill="rgb(216,93,46)" fg:x="269562" fg:w="70"/><text x="55.1268%" y="735.50"></text></g><g><title>__legitimize_mnt (152 samples, 0.03%)</title><rect x="54.9253%" y="645" width="0.0309%" height="15" fill="rgb(225,159,27)" fg:x="269800" fg:w="152"/><text x="55.1753%" y="655.50"></text></g><g><title>__legitimize_path (227 samples, 0.05%)</title><rect x="54.9214%" y="661" width="0.0462%" height="15" fill="rgb(225,204,11)" fg:x="269781" fg:w="227"/><text x="55.1714%" y="671.50"></text></g><g><title>lockref_get_not_dead (56 samples, 0.01%)</title><rect x="54.9562%" y="645" width="0.0114%" height="15" fill="rgb(205,56,4)" fg:x="269952" fg:w="56"/><text x="55.2062%" y="655.50"></text></g><g><title>complete_walk (313 samples, 0.06%)</title><rect x="54.9106%" y="693" width="0.0637%" height="15" fill="rgb(206,6,35)" fg:x="269728" fg:w="313"/><text x="55.1606%" y="703.50"></text></g><g><title>try_to_unlazy (297 samples, 0.06%)</title><rect x="54.9139%" y="677" width="0.0605%" height="15" fill="rgb(247,73,52)" fg:x="269744" fg:w="297"/><text x="55.1639%" y="687.50"></text></g><g><title>btrfs_permission (85 samples, 0.02%)</title><rect x="55.3780%" y="661" width="0.0173%" height="15" fill="rgb(246,97,4)" fg:x="272024" fg:w="85"/><text x="55.6280%" y="671.50"></text></g><g><title>inode_permission.part.0 (1,314 samples, 0.27%)</title><rect x="55.1999%" y="677" width="0.2675%" height="15" fill="rgb(212,37,15)" fg:x="271149" fg:w="1314"/><text x="55.4499%" y="687.50"></text></g><g><title>generic_permission (354 samples, 0.07%)</title><rect x="55.3953%" y="661" width="0.0721%" height="15" fill="rgb(208,130,40)" fg:x="272109" fg:w="354"/><text x="55.6453%" y="671.50"></text></g><g><title>security_inode_permission (130 samples, 0.03%)</title><rect x="55.4674%" y="677" width="0.0265%" height="15" fill="rgb(236,55,29)" fg:x="272463" fg:w="130"/><text x="55.7174%" y="687.50"></text></g><g><title>__d_lookup_rcu (2,044 samples, 0.42%)</title><rect x="55.6783%" y="645" width="0.4161%" height="15" fill="rgb(209,156,45)" fg:x="273499" fg:w="2044"/><text x="55.9283%" y="655.50"></text></g><g><title>lookup_fast (2,557 samples, 0.52%)</title><rect x="55.5741%" y="661" width="0.5205%" height="15" fill="rgb(249,107,4)" fg:x="272987" fg:w="2557"/><text x="55.8241%" y="671.50"></text></g><g><title>link_path_walk.part.0 (6,103 samples, 1.24%)</title><rect x="54.9743%" y="693" width="1.2424%" height="15" fill="rgb(227,7,13)" fg:x="270041" fg:w="6103"/><text x="55.2243%" y="703.50"></text></g><g><title>walk_component (3,551 samples, 0.72%)</title><rect x="55.4938%" y="677" width="0.7229%" height="15" fill="rgb(250,129,14)" fg:x="272593" fg:w="3551"/><text x="55.7438%" y="687.50"></text></g><g><title>step_into (600 samples, 0.12%)</title><rect x="56.0946%" y="661" width="0.1221%" height="15" fill="rgb(229,92,13)" fg:x="275544" fg:w="600"/><text x="56.3446%" y="671.50"></text></g><g><title>path_init (207 samples, 0.04%)</title><rect x="56.2168%" y="693" width="0.0421%" height="15" fill="rgb(245,98,39)" fg:x="276144" fg:w="207"/><text x="56.4668%" y="703.50"></text></g><g><title>nd_jump_root (174 samples, 0.04%)</title><rect x="56.2235%" y="677" width="0.0354%" height="15" fill="rgb(234,135,48)" fg:x="276177" fg:w="174"/><text x="56.4735%" y="687.50"></text></g><g><title>set_root (141 samples, 0.03%)</title><rect x="56.2302%" y="661" width="0.0287%" height="15" fill="rgb(230,98,28)" fg:x="276210" fg:w="141"/><text x="56.4802%" y="671.50"></text></g><g><title>filename_parentat (6,746 samples, 1.37%)</title><rect x="54.8911%" y="725" width="1.3733%" height="15" fill="rgb(223,121,0)" fg:x="269632" fg:w="6746"/><text x="55.1411%" y="735.50"></text></g><g><title>path_parentat (6,672 samples, 1.36%)</title><rect x="54.9061%" y="709" width="1.3583%" height="15" fill="rgb(234,173,33)" fg:x="269706" fg:w="6672"/><text x="55.1561%" y="719.50"></text></g><g><title>kmem_cache_free (128 samples, 0.03%)</title><rect x="56.2644%" y="725" width="0.0261%" height="15" fill="rgb(245,47,8)" fg:x="276378" fg:w="128"/><text x="56.5144%" y="735.50"></text></g><g><title>__mnt_want_write (89 samples, 0.02%)</title><rect x="56.3088%" y="709" width="0.0181%" height="15" fill="rgb(205,17,20)" fg:x="276596" fg:w="89"/><text x="56.5588%" y="719.50"></text></g><g><title>mnt_want_write (196 samples, 0.04%)</title><rect x="56.2904%" y="725" width="0.0399%" height="15" fill="rgb(232,151,16)" fg:x="276506" fg:w="196"/><text x="56.5404%" y="735.50"></text></g><g><title>filename_create (15,581 samples, 3.17%)</title><rect x="53.1602%" y="741" width="3.1719%" height="15" fill="rgb(208,30,32)" fg:x="261130" fg:w="15581"/><text x="53.4102%" y="751.50">fil..</text></g><g><title>memcg_slab_post_alloc_hook (66 samples, 0.01%)</title><rect x="56.4075%" y="709" width="0.0134%" height="15" fill="rgb(254,26,3)" fg:x="277081" fg:w="66"/><text x="56.6575%" y="719.50"></text></g><g><title>memset_erms (794 samples, 0.16%)</title><rect x="56.4224%" y="709" width="0.1616%" height="15" fill="rgb(240,177,30)" fg:x="277154" fg:w="794"/><text x="56.6724%" y="719.50"></text></g><g><title>kmem_cache_alloc (1,207 samples, 0.25%)</title><rect x="56.3556%" y="725" width="0.2457%" height="15" fill="rgb(248,76,44)" fg:x="276826" fg:w="1207"/><text x="56.6056%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (85 samples, 0.02%)</title><rect x="56.5840%" y="709" width="0.0173%" height="15" fill="rgb(241,186,54)" fg:x="277948" fg:w="85"/><text x="56.8340%" y="719.50"></text></g><g><title>__check_heap_object (159 samples, 0.03%)</title><rect x="56.7894%" y="693" width="0.0324%" height="15" fill="rgb(249,171,29)" fg:x="278957" fg:w="159"/><text x="57.0394%" y="703.50"></text></g><g><title>__virt_addr_valid (274 samples, 0.06%)</title><rect x="56.8218%" y="693" width="0.0558%" height="15" fill="rgb(237,151,44)" fg:x="279116" fg:w="274"/><text x="57.0718%" y="703.50"></text></g><g><title>__check_object_size (595 samples, 0.12%)</title><rect x="56.7609%" y="709" width="0.1211%" height="15" fill="rgb(228,174,30)" fg:x="278817" fg:w="595"/><text x="57.0109%" y="719.50"></text></g><g><title>getname_flags.part.0 (2,664 samples, 0.54%)</title><rect x="56.3399%" y="741" width="0.5423%" height="15" fill="rgb(252,14,37)" fg:x="276749" fg:w="2664"/><text x="56.5899%" y="751.50"></text></g><g><title>strncpy_from_user (1,380 samples, 0.28%)</title><rect x="56.6013%" y="725" width="0.2809%" height="15" fill="rgb(207,111,40)" fg:x="278033" fg:w="1380"/><text x="56.8513%" y="735.50"></text></g><g><title>kmem_cache_free (136 samples, 0.03%)</title><rect x="56.8822%" y="741" width="0.0277%" height="15" fill="rgb(248,171,54)" fg:x="279413" fg:w="136"/><text x="57.1322%" y="751.50"></text></g><g><title>apparmor_path_symlink (158 samples, 0.03%)</title><rect x="56.9299%" y="725" width="0.0322%" height="15" fill="rgb(211,127,2)" fg:x="279647" fg:w="158"/><text x="57.1799%" y="735.50"></text></g><g><title>security_path_symlink (410 samples, 0.08%)</title><rect x="56.9213%" y="741" width="0.0835%" height="15" fill="rgb(236,87,47)" fg:x="279605" fg:w="410"/><text x="57.1713%" y="751.50"></text></g><g><title>tomoyo_path_symlink (210 samples, 0.04%)</title><rect x="56.9621%" y="725" width="0.0428%" height="15" fill="rgb(223,190,45)" fg:x="279805" fg:w="210"/><text x="57.2121%" y="735.50"></text></g><g><title>tomoyo_path_perm (202 samples, 0.04%)</title><rect x="56.9637%" y="709" width="0.0411%" height="15" fill="rgb(215,5,16)" fg:x="279813" fg:w="202"/><text x="57.2137%" y="719.50"></text></g><g><title>tomoyo_init_request_info (111 samples, 0.02%)</title><rect x="56.9822%" y="693" width="0.0226%" height="15" fill="rgb(252,82,33)" fg:x="279904" fg:w="111"/><text x="57.2322%" y="703.50"></text></g><g><title>up_write (65 samples, 0.01%)</title><rect x="57.0048%" y="741" width="0.0132%" height="15" fill="rgb(247,213,44)" fg:x="280015" fg:w="65"/><text x="57.2548%" y="751.50"></text></g><g><title>btrfs_put_transaction (84 samples, 0.02%)</title><rect x="57.1257%" y="693" width="0.0171%" height="15" fill="rgb(205,196,44)" fg:x="280609" fg:w="84"/><text x="57.3757%" y="703.50"></text></g><g><title>_raw_spin_lock (150 samples, 0.03%)</title><rect x="57.1593%" y="661" width="0.0305%" height="15" fill="rgb(237,96,54)" fg:x="280774" fg:w="150"/><text x="57.4093%" y="671.50"></text></g><g><title>btrfs_trans_release_metadata (248 samples, 0.05%)</title><rect x="57.1449%" y="693" width="0.0505%" height="15" fill="rgb(230,113,34)" fg:x="280703" fg:w="248"/><text x="57.3949%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (236 samples, 0.05%)</title><rect x="57.1473%" y="677" width="0.0480%" height="15" fill="rgb(221,224,12)" fg:x="280715" fg:w="236"/><text x="57.3973%" y="687.50"></text></g><g><title>__btrfs_end_transaction (727 samples, 0.15%)</title><rect x="57.0718%" y="709" width="0.1480%" height="15" fill="rgb(219,112,44)" fg:x="280344" fg:w="727"/><text x="57.3218%" y="719.50"></text></g><g><title>kmem_cache_free (120 samples, 0.02%)</title><rect x="57.1954%" y="693" width="0.0244%" height="15" fill="rgb(210,31,13)" fg:x="280951" fg:w="120"/><text x="57.4454%" y="703.50"></text></g><g><title>btrfs_comp_cpu_keys (134 samples, 0.03%)</title><rect x="57.3393%" y="645" width="0.0273%" height="15" fill="rgb(230,25,16)" fg:x="281658" fg:w="134"/><text x="57.5893%" y="655.50"></text></g><g><title>__btrfs_add_delayed_item (444 samples, 0.09%)</title><rect x="57.3026%" y="661" width="0.0904%" height="15" fill="rgb(246,108,53)" fg:x="281478" fg:w="444"/><text x="57.5526%" y="671.50"></text></g><g><title>rb_insert_color (130 samples, 0.03%)</title><rect x="57.3666%" y="645" width="0.0265%" height="15" fill="rgb(241,172,50)" fg:x="281792" fg:w="130"/><text x="57.6166%" y="655.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="57.4148%" y="645" width="0.0110%" height="15" fill="rgb(235,141,10)" fg:x="282029" fg:w="54"/><text x="57.6648%" y="655.50"></text></g><g><title>mutex_lock (66 samples, 0.01%)</title><rect x="57.4258%" y="645" width="0.0134%" height="15" fill="rgb(220,174,43)" fg:x="282083" fg:w="66"/><text x="57.6758%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (279 samples, 0.06%)</title><rect x="57.3930%" y="661" width="0.0568%" height="15" fill="rgb(215,181,40)" fg:x="281922" fg:w="279"/><text x="57.6430%" y="671.50"></text></g><g><title>mutex_unlock (52 samples, 0.01%)</title><rect x="57.4392%" y="645" width="0.0106%" height="15" fill="rgb(230,97,2)" fg:x="282149" fg:w="52"/><text x="57.6892%" y="655.50"></text></g><g><title>__slab_alloc (164 samples, 0.03%)</title><rect x="57.4738%" y="645" width="0.0334%" height="15" fill="rgb(211,25,27)" fg:x="282319" fg:w="164"/><text x="57.7238%" y="655.50"></text></g><g><title>___slab_alloc (158 samples, 0.03%)</title><rect x="57.4751%" y="629" width="0.0322%" height="15" fill="rgb(230,87,26)" fg:x="282325" fg:w="158"/><text x="57.7251%" y="639.50"></text></g><g><title>get_partial_node.part.0 (63 samples, 0.01%)</title><rect x="57.4944%" y="613" width="0.0128%" height="15" fill="rgb(227,160,17)" fg:x="282420" fg:w="63"/><text x="57.7444%" y="623.50"></text></g><g><title>memset_erms (55 samples, 0.01%)</title><rect x="57.5105%" y="645" width="0.0112%" height="15" fill="rgb(244,85,34)" fg:x="282499" fg:w="55"/><text x="57.7605%" y="655.50"></text></g><g><title>__kmalloc (379 samples, 0.08%)</title><rect x="57.4498%" y="661" width="0.0772%" height="15" fill="rgb(207,70,0)" fg:x="282201" fg:w="379"/><text x="57.6998%" y="671.50"></text></g><g><title>mutex_spin_on_owner (471 samples, 0.10%)</title><rect x="57.5276%" y="645" width="0.0959%" height="15" fill="rgb(223,129,7)" fg:x="282583" fg:w="471"/><text x="57.7776%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (480 samples, 0.10%)</title><rect x="57.5270%" y="661" width="0.0977%" height="15" fill="rgb(246,105,7)" fg:x="282580" fg:w="480"/><text x="57.7770%" y="671.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (312 samples, 0.06%)</title><rect x="57.6247%" y="661" width="0.0635%" height="15" fill="rgb(215,154,42)" fg:x="283060" fg:w="312"/><text x="57.8747%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (271 samples, 0.06%)</title><rect x="57.6330%" y="645" width="0.0552%" height="15" fill="rgb(220,215,30)" fg:x="283101" fg:w="271"/><text x="57.8830%" y="655.50"></text></g><g><title>_raw_spin_lock (243 samples, 0.05%)</title><rect x="57.6387%" y="629" width="0.0495%" height="15" fill="rgb(228,81,51)" fg:x="283129" fg:w="243"/><text x="57.8887%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (142 samples, 0.03%)</title><rect x="57.6882%" y="661" width="0.0289%" height="15" fill="rgb(247,71,54)" fg:x="283372" fg:w="142"/><text x="57.9382%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (126 samples, 0.03%)</title><rect x="57.6915%" y="645" width="0.0257%" height="15" fill="rgb(234,176,34)" fg:x="283388" fg:w="126"/><text x="57.9415%" y="655.50"></text></g><g><title>mutex_lock (95 samples, 0.02%)</title><rect x="57.7269%" y="661" width="0.0193%" height="15" fill="rgb(241,103,54)" fg:x="283562" fg:w="95"/><text x="57.9769%" y="671.50"></text></g><g><title>btrfs_insert_delayed_dir_index (2,320 samples, 0.47%)</title><rect x="57.2849%" y="677" width="0.4723%" height="15" fill="rgb(228,22,34)" fg:x="281391" fg:w="2320"/><text x="57.5349%" y="687.50"></text></g><g><title>mutex_unlock (54 samples, 0.01%)</title><rect x="57.7462%" y="661" width="0.0110%" height="15" fill="rgb(241,179,48)" fg:x="283657" fg:w="54"/><text x="57.9962%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (196 samples, 0.04%)</title><rect x="57.7572%" y="677" width="0.0399%" height="15" fill="rgb(235,167,37)" fg:x="283711" fg:w="196"/><text x="58.0072%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (130 samples, 0.03%)</title><rect x="57.7707%" y="661" width="0.0265%" height="15" fill="rgb(213,109,30)" fg:x="283777" fg:w="130"/><text x="58.0207%" y="671.50"></text></g><g><title>_raw_spin_lock (178 samples, 0.04%)</title><rect x="57.8230%" y="645" width="0.0362%" height="15" fill="rgb(222,172,16)" fg:x="284034" fg:w="178"/><text x="58.0730%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (250 samples, 0.05%)</title><rect x="57.8085%" y="661" width="0.0509%" height="15" fill="rgb(233,192,5)" fg:x="283963" fg:w="250"/><text x="58.0585%" y="671.50"></text></g><g><title>btrfs_release_path (454 samples, 0.09%)</title><rect x="57.7971%" y="677" width="0.0924%" height="15" fill="rgb(247,189,41)" fg:x="283907" fg:w="454"/><text x="58.0471%" y="687.50"></text></g><g><title>release_extent_buffer (148 samples, 0.03%)</title><rect x="57.8594%" y="661" width="0.0301%" height="15" fill="rgb(218,134,47)" fg:x="284213" fg:w="148"/><text x="58.1094%" y="671.50"></text></g><g><title>btrfs_set_16 (62 samples, 0.01%)</title><rect x="57.8896%" y="677" width="0.0126%" height="15" fill="rgb(216,29,3)" fg:x="284361" fg:w="62"/><text x="58.1396%" y="687.50"></text></g><g><title>btrfs_get_32 (105 samples, 0.02%)</title><rect x="57.9235%" y="661" width="0.0214%" height="15" fill="rgb(246,140,12)" fg:x="284528" fg:w="105"/><text x="58.1735%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (95 samples, 0.02%)</title><rect x="58.0205%" y="613" width="0.0193%" height="15" fill="rgb(230,136,11)" fg:x="285004" fg:w="95"/><text x="58.2705%" y="623.50"></text></g><g><title>_raw_read_lock (69 samples, 0.01%)</title><rect x="58.0257%" y="597" width="0.0140%" height="15" fill="rgb(247,22,47)" fg:x="285030" fg:w="69"/><text x="58.2757%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (207 samples, 0.04%)</title><rect x="58.0176%" y="629" width="0.0421%" height="15" fill="rgb(218,84,22)" fg:x="284990" fg:w="207"/><text x="58.2676%" y="639.50"></text></g><g><title>btrfs_root_node (98 samples, 0.02%)</title><rect x="58.0398%" y="613" width="0.0200%" height="15" fill="rgb(216,87,39)" fg:x="285099" fg:w="98"/><text x="58.2898%" y="623.50"></text></g><g><title>dequeue_entity (67 samples, 0.01%)</title><rect x="58.0770%" y="565" width="0.0136%" height="15" fill="rgb(221,178,8)" fg:x="285282" fg:w="67"/><text x="58.3270%" y="575.50"></text></g><g><title>dequeue_task_fair (78 samples, 0.02%)</title><rect x="58.0752%" y="581" width="0.0159%" height="15" fill="rgb(230,42,11)" fg:x="285273" fg:w="78"/><text x="58.3252%" y="591.50"></text></g><g><title>__btrfs_tree_lock (240 samples, 0.05%)</title><rect x="58.0597%" y="629" width="0.0489%" height="15" fill="rgb(237,229,4)" fg:x="285197" fg:w="240"/><text x="58.3097%" y="639.50"></text></g><g><title>schedule (194 samples, 0.04%)</title><rect x="58.0691%" y="613" width="0.0395%" height="15" fill="rgb(222,31,33)" fg:x="285243" fg:w="194"/><text x="58.3191%" y="623.50"></text></g><g><title>__schedule (191 samples, 0.04%)</title><rect x="58.0697%" y="597" width="0.0389%" height="15" fill="rgb(210,17,39)" fg:x="285246" fg:w="191"/><text x="58.3197%" y="607.50"></text></g><g><title>btrfs_leaf_free_space (180 samples, 0.04%)</title><rect x="58.1135%" y="629" width="0.0366%" height="15" fill="rgb(244,93,20)" fg:x="285461" fg:w="180"/><text x="58.3635%" y="639.50"></text></g><g><title>leaf_space_used (152 samples, 0.03%)</title><rect x="58.1192%" y="613" width="0.0309%" height="15" fill="rgb(210,40,47)" fg:x="285489" fg:w="152"/><text x="58.3692%" y="623.50"></text></g><g><title>btrfs_get_32 (104 samples, 0.02%)</title><rect x="58.1290%" y="597" width="0.0212%" height="15" fill="rgb(239,211,47)" fg:x="285537" fg:w="104"/><text x="58.3790%" y="607.50"></text></g><g><title>_raw_write_lock (93 samples, 0.02%)</title><rect x="58.1595%" y="613" width="0.0189%" height="15" fill="rgb(251,223,49)" fg:x="285687" fg:w="93"/><text x="58.4095%" y="623.50"></text></g><g><title>btrfs_try_tree_write_lock (269 samples, 0.05%)</title><rect x="58.1530%" y="629" width="0.0548%" height="15" fill="rgb(221,149,5)" fg:x="285655" fg:w="269"/><text x="58.4030%" y="639.50"></text></g><g><title>queued_write_lock_slowpath (144 samples, 0.03%)</title><rect x="58.1784%" y="613" width="0.0293%" height="15" fill="rgb(219,224,51)" fg:x="285780" fg:w="144"/><text x="58.4284%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (1,165 samples, 0.24%)</title><rect x="58.2077%" y="629" width="0.2372%" height="15" fill="rgb(223,7,8)" fg:x="285924" fg:w="1165"/><text x="58.4577%" y="639.50"></text></g><g><title>btrfs_buffer_uptodate (60 samples, 0.01%)</title><rect x="58.4710%" y="613" width="0.0122%" height="15" fill="rgb(241,217,22)" fg:x="287217" fg:w="60"/><text x="58.7210%" y="623.50"></text></g><g><title>btrfs_get_64 (120 samples, 0.02%)</title><rect x="58.4832%" y="613" width="0.0244%" height="15" fill="rgb(248,209,0)" fg:x="287277" fg:w="120"/><text x="58.7332%" y="623.50"></text></g><g><title>__radix_tree_lookup (403 samples, 0.08%)</title><rect x="58.5575%" y="597" width="0.0820%" height="15" fill="rgb(217,205,4)" fg:x="287642" fg:w="403"/><text x="58.8075%" y="607.50"></text></g><g><title>check_buffer_tree_ref (61 samples, 0.01%)</title><rect x="58.6497%" y="581" width="0.0124%" height="15" fill="rgb(228,124,39)" fg:x="288095" fg:w="61"/><text x="58.8997%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (262 samples, 0.05%)</title><rect x="58.6395%" y="597" width="0.0533%" height="15" fill="rgb(250,116,42)" fg:x="288045" fg:w="262"/><text x="58.8895%" y="607.50"></text></g><g><title>mark_page_accessed (151 samples, 0.03%)</title><rect x="58.6621%" y="581" width="0.0307%" height="15" fill="rgb(223,202,9)" fg:x="288156" fg:w="151"/><text x="58.9121%" y="591.50"></text></g><g><title>find_extent_buffer (868 samples, 0.18%)</title><rect x="58.5172%" y="613" width="0.1767%" height="15" fill="rgb(242,222,40)" fg:x="287444" fg:w="868"/><text x="58.7672%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (1,381 samples, 0.28%)</title><rect x="58.4449%" y="629" width="0.2811%" height="15" fill="rgb(229,99,46)" fg:x="287089" fg:w="1381"/><text x="58.6949%" y="639.50"></text></g><g><title>read_extent_buffer (158 samples, 0.03%)</title><rect x="58.6939%" y="613" width="0.0322%" height="15" fill="rgb(225,56,46)" fg:x="288312" fg:w="158"/><text x="58.9439%" y="623.50"></text></g><g><title>alloc_tree_block_no_bg_flush (104 samples, 0.02%)</title><rect x="58.7283%" y="613" width="0.0212%" height="15" fill="rgb(227,94,5)" fg:x="288481" fg:w="104"/><text x="58.9783%" y="623.50"></text></g><g><title>btrfs_alloc_tree_block (104 samples, 0.02%)</title><rect x="58.7283%" y="597" width="0.0212%" height="15" fill="rgb(205,112,38)" fg:x="288481" fg:w="104"/><text x="58.9783%" y="607.50"></text></g><g><title>copy_for_split (157 samples, 0.03%)</title><rect x="58.7525%" y="613" width="0.0320%" height="15" fill="rgb(231,133,46)" fg:x="288600" fg:w="157"/><text x="59.0025%" y="623.50"></text></g><g><title>btrfs_get_token_32 (108 samples, 0.02%)</title><rect x="58.8042%" y="581" width="0.0220%" height="15" fill="rgb(217,16,9)" fg:x="288854" fg:w="108"/><text x="59.0542%" y="591.50"></text></g><g><title>btrfs_set_token_32 (165 samples, 0.03%)</title><rect x="58.8270%" y="581" width="0.0336%" height="15" fill="rgb(249,173,9)" fg:x="288966" fg:w="165"/><text x="59.0770%" y="591.50"></text></g><g><title>memmove_extent_buffer (79 samples, 0.02%)</title><rect x="58.8720%" y="581" width="0.0161%" height="15" fill="rgb(205,163,53)" fg:x="289187" fg:w="79"/><text x="59.1220%" y="591.50"></text></g><g><title>memmove (57 samples, 0.01%)</title><rect x="58.8765%" y="565" width="0.0116%" height="15" fill="rgb(217,54,41)" fg:x="289209" fg:w="57"/><text x="59.1265%" y="575.50"></text></g><g><title>__push_leaf_left (499 samples, 0.10%)</title><rect x="58.7873%" y="597" width="0.1016%" height="15" fill="rgb(228,216,12)" fg:x="288771" fg:w="499"/><text x="59.0373%" y="607.50"></text></g><g><title>push_leaf_left (552 samples, 0.11%)</title><rect x="58.7849%" y="613" width="0.1124%" height="15" fill="rgb(244,228,15)" fg:x="288759" fg:w="552"/><text x="59.0349%" y="623.50"></text></g><g><title>btrfs_get_token_32 (84 samples, 0.02%)</title><rect x="58.9215%" y="581" width="0.0171%" height="15" fill="rgb(221,176,53)" fg:x="289430" fg:w="84"/><text x="59.1715%" y="591.50"></text></g><g><title>btrfs_set_token_32 (129 samples, 0.03%)</title><rect x="58.9398%" y="581" width="0.0263%" height="15" fill="rgb(205,94,34)" fg:x="289520" fg:w="129"/><text x="59.1898%" y="591.50"></text></g><g><title>__push_leaf_right (408 samples, 0.08%)</title><rect x="58.9013%" y="597" width="0.0831%" height="15" fill="rgb(213,110,48)" fg:x="289331" fg:w="408"/><text x="59.1513%" y="607.50"></text></g><g><title>btrfs_read_node_slot (59 samples, 0.01%)</title><rect x="58.9887%" y="597" width="0.0120%" height="15" fill="rgb(236,142,28)" fg:x="289760" fg:w="59"/><text x="59.2387%" y="607.50"></text></g><g><title>push_leaf_right (527 samples, 0.11%)</title><rect x="58.8973%" y="613" width="0.1073%" height="15" fill="rgb(225,135,29)" fg:x="289311" fg:w="527"/><text x="59.1473%" y="623.50"></text></g><g><title>split_leaf (1,368 samples, 0.28%)</title><rect x="58.7263%" y="629" width="0.2785%" height="15" fill="rgb(252,45,31)" fg:x="288471" fg:w="1368"/><text x="58.9763%" y="639.50"></text></g><g><title>__wake_up_common (83 samples, 0.02%)</title><rect x="59.0312%" y="597" width="0.0169%" height="15" fill="rgb(211,187,50)" fg:x="289969" fg:w="83"/><text x="59.2812%" y="607.50"></text></g><g><title>autoremove_wake_function (78 samples, 0.02%)</title><rect x="59.0322%" y="581" width="0.0159%" height="15" fill="rgb(229,109,7)" fg:x="289974" fg:w="78"/><text x="59.2822%" y="591.50"></text></g><g><title>try_to_wake_up (76 samples, 0.02%)</title><rect x="59.0326%" y="565" width="0.0155%" height="15" fill="rgb(251,131,51)" fg:x="289976" fg:w="76"/><text x="59.2826%" y="575.50"></text></g><g><title>__wake_up_common_lock (88 samples, 0.02%)</title><rect x="59.0306%" y="613" width="0.0179%" height="15" fill="rgb(251,180,35)" fg:x="289966" fg:w="88"/><text x="59.2806%" y="623.50"></text></g><g><title>btrfs_tree_read_unlock (75 samples, 0.02%)</title><rect x="59.0485%" y="613" width="0.0153%" height="15" fill="rgb(211,46,32)" fg:x="290054" fg:w="75"/><text x="59.2985%" y="623.50"></text></g><g><title>btrfs_search_slot (5,491 samples, 1.12%)</title><rect x="57.9525%" y="645" width="1.1178%" height="15" fill="rgb(248,123,17)" fg:x="284670" fg:w="5491"/><text x="58.2025%" y="655.50"></text></g><g><title>unlock_up (319 samples, 0.06%)</title><rect x="59.0054%" y="629" width="0.0649%" height="15" fill="rgb(227,141,18)" fg:x="289842" fg:w="319"/><text x="59.2554%" y="639.50"></text></g><g><title>btrfs_get_32 (119 samples, 0.02%)</title><rect x="59.2645%" y="629" width="0.0242%" height="15" fill="rgb(216,102,9)" fg:x="291115" fg:w="119"/><text x="59.5145%" y="639.50"></text></g><g><title>btrfs_get_token_32 (3,203 samples, 0.65%)</title><rect x="59.2887%" y="629" width="0.6521%" height="15" fill="rgb(253,47,13)" fg:x="291234" fg:w="3203"/><text x="59.5387%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (665 samples, 0.14%)</title><rect x="59.8054%" y="613" width="0.1354%" height="15" fill="rgb(226,93,23)" fg:x="293772" fg:w="665"/><text x="60.0554%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (277 samples, 0.06%)</title><rect x="59.9408%" y="629" width="0.0564%" height="15" fill="rgb(247,104,17)" fg:x="294437" fg:w="277"/><text x="60.1908%" y="639.50"></text></g><g><title>leaf_space_used (245 samples, 0.05%)</title><rect x="59.9473%" y="613" width="0.0499%" height="15" fill="rgb(233,203,26)" fg:x="294469" fg:w="245"/><text x="60.1973%" y="623.50"></text></g><g><title>btrfs_get_32 (167 samples, 0.03%)</title><rect x="59.9632%" y="597" width="0.0340%" height="15" fill="rgb(244,98,49)" fg:x="294547" fg:w="167"/><text x="60.2132%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (154 samples, 0.03%)</title><rect x="59.9972%" y="629" width="0.0314%" height="15" fill="rgb(235,134,22)" fg:x="294714" fg:w="154"/><text x="60.2472%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (87 samples, 0.02%)</title><rect x="60.0108%" y="613" width="0.0177%" height="15" fill="rgb(221,70,32)" fg:x="294781" fg:w="87"/><text x="60.2608%" y="623.50"></text></g><g><title>btrfs_set_token_32 (3,003 samples, 0.61%)</title><rect x="60.0285%" y="629" width="0.6113%" height="15" fill="rgb(238,15,50)" fg:x="294868" fg:w="3003"/><text x="60.2785%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (617 samples, 0.13%)</title><rect x="60.5143%" y="613" width="0.1256%" height="15" fill="rgb(215,221,48)" fg:x="297254" fg:w="617"/><text x="60.7643%" y="623.50"></text></g><g><title>copy_pages (106 samples, 0.02%)</title><rect x="60.6619%" y="613" width="0.0216%" height="15" fill="rgb(236,73,3)" fg:x="297979" fg:w="106"/><text x="60.9119%" y="623.50"></text></g><g><title>memcpy_extent_buffer (1,060 samples, 0.22%)</title><rect x="60.6488%" y="629" width="0.2158%" height="15" fill="rgb(250,107,11)" fg:x="297915" fg:w="1060"/><text x="60.8988%" y="639.50"></text></g><g><title>memmove (890 samples, 0.18%)</title><rect x="60.6835%" y="613" width="0.1812%" height="15" fill="rgb(242,39,14)" fg:x="298085" fg:w="890"/><text x="60.9335%" y="623.50"></text></g><g><title>copy_pages (129 samples, 0.03%)</title><rect x="60.8874%" y="613" width="0.0263%" height="15" fill="rgb(248,164,37)" fg:x="299087" fg:w="129"/><text x="61.1374%" y="623.50"></text></g><g><title>memmove_extent_buffer (977 samples, 0.20%)</title><rect x="60.8646%" y="629" width="0.1989%" height="15" fill="rgb(217,60,12)" fg:x="298975" fg:w="977"/><text x="61.1146%" y="639.50"></text></g><g><title>memmove (736 samples, 0.15%)</title><rect x="60.9137%" y="613" width="0.1498%" height="15" fill="rgb(240,125,29)" fg:x="299216" fg:w="736"/><text x="61.1637%" y="623.50"></text></g><g><title>insert_with_overflow (15,583 samples, 3.17%)</title><rect x="57.9150%" y="677" width="3.1724%" height="15" fill="rgb(208,207,28)" fg:x="284486" fg:w="15583"/><text x="58.1650%" y="687.50">ins..</text></g><g><title>btrfs_insert_empty_items (15,436 samples, 3.14%)</title><rect x="57.9449%" y="661" width="3.1424%" height="15" fill="rgb(209,159,27)" fg:x="284633" fg:w="15436"/><text x="58.1949%" y="671.50">btr..</text></g><g><title>setup_items_for_insert (9,908 samples, 2.02%)</title><rect x="59.0703%" y="645" width="2.0170%" height="15" fill="rgb(251,176,53)" fg:x="290161" fg:w="9908"/><text x="59.3203%" y="655.50">s..</text></g><g><title>write_extent_buffer (117 samples, 0.02%)</title><rect x="61.0635%" y="629" width="0.0238%" height="15" fill="rgb(211,85,7)" fg:x="299952" fg:w="117"/><text x="61.3135%" y="639.50"></text></g><g><title>kmem_cache_alloc (186 samples, 0.04%)</title><rect x="61.0873%" y="677" width="0.0379%" height="15" fill="rgb(216,64,54)" fg:x="300069" fg:w="186"/><text x="61.3373%" y="687.50"></text></g><g><title>kmem_cache_free (115 samples, 0.02%)</title><rect x="61.1252%" y="677" width="0.0234%" height="15" fill="rgb(217,54,24)" fg:x="300255" fg:w="115"/><text x="61.3752%" y="687.50"></text></g><g><title>btrfs_insert_dir_item (19,343 samples, 3.94%)</title><rect x="57.2544%" y="693" width="3.9378%" height="15" fill="rgb(208,206,53)" fg:x="281241" fg:w="19343"/><text x="57.5044%" y="703.50">btrf..</text></g><g><title>write_extent_buffer (214 samples, 0.04%)</title><rect x="61.1486%" y="677" width="0.0436%" height="15" fill="rgb(251,74,39)" fg:x="300370" fg:w="214"/><text x="61.3986%" y="687.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="61.1999%" y="677" width="0.0106%" height="15" fill="rgb(226,47,5)" fg:x="300622" fg:w="52"/><text x="61.4499%" y="687.50"></text></g><g><title>_raw_spin_lock (50 samples, 0.01%)</title><rect x="61.2388%" y="645" width="0.0102%" height="15" fill="rgb(234,111,33)" fg:x="300813" fg:w="50"/><text x="61.4888%" y="655.50"></text></g><g><title>mutex_lock (63 samples, 0.01%)</title><rect x="61.2490%" y="645" width="0.0128%" height="15" fill="rgb(251,14,10)" fg:x="300863" fg:w="63"/><text x="61.4990%" y="655.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (271 samples, 0.06%)</title><rect x="61.2170%" y="661" width="0.0552%" height="15" fill="rgb(232,43,0)" fg:x="300706" fg:w="271"/><text x="61.4670%" y="671.50"></text></g><g><title>mutex_unlock (51 samples, 0.01%)</title><rect x="61.2618%" y="645" width="0.0104%" height="15" fill="rgb(222,68,43)" fg:x="300926" fg:w="51"/><text x="61.5118%" y="655.50"></text></g><g><title>btrfs_get_or_create_delayed_node (90 samples, 0.02%)</title><rect x="61.2826%" y="661" width="0.0183%" height="15" fill="rgb(217,24,23)" fg:x="301028" fg:w="90"/><text x="61.5326%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (75 samples, 0.02%)</title><rect x="61.2856%" y="645" width="0.0153%" height="15" fill="rgb(229,209,14)" fg:x="301043" fg:w="75"/><text x="61.5356%" y="655.50"></text></g><g><title>inode_get_bytes (83 samples, 0.02%)</title><rect x="61.3076%" y="645" width="0.0169%" height="15" fill="rgb(250,149,48)" fg:x="301151" fg:w="83"/><text x="61.5576%" y="655.50"></text></g><g><title>_raw_spin_lock (74 samples, 0.02%)</title><rect x="61.3095%" y="629" width="0.0151%" height="15" fill="rgb(210,120,37)" fg:x="301160" fg:w="74"/><text x="61.5595%" y="639.50"></text></g><g><title>fill_stack_inode_item (159 samples, 0.03%)</title><rect x="61.3009%" y="661" width="0.0324%" height="15" fill="rgb(210,21,8)" fg:x="301118" fg:w="159"/><text x="61.5509%" y="671.50"></text></g><g><title>mutex_lock (52 samples, 0.01%)</title><rect x="61.3333%" y="661" width="0.0106%" height="15" fill="rgb(243,145,7)" fg:x="301277" fg:w="52"/><text x="61.5833%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (734 samples, 0.15%)</title><rect x="61.2105%" y="677" width="0.1494%" height="15" fill="rgb(238,178,32)" fg:x="300674" fg:w="734"/><text x="61.4605%" y="687.50"></text></g><g><title>mutex_unlock (79 samples, 0.02%)</title><rect x="61.3439%" y="661" width="0.0161%" height="15" fill="rgb(222,4,10)" fg:x="301329" fg:w="79"/><text x="61.5939%" y="671.50"></text></g><g><title>btrfs_update_inode (1,005 samples, 0.20%)</title><rect x="61.1922%" y="693" width="0.2046%" height="15" fill="rgb(239,7,37)" fg:x="300584" fg:w="1005"/><text x="61.4422%" y="703.50"></text></g><g><title>btrfs_update_root_times (181 samples, 0.04%)</title><rect x="61.3599%" y="677" width="0.0368%" height="15" fill="rgb(215,31,37)" fg:x="301408" fg:w="181"/><text x="61.6099%" y="687.50"></text></g><g><title>ktime_get_real_ts64 (111 samples, 0.02%)</title><rect x="61.3742%" y="661" width="0.0226%" height="15" fill="rgb(224,83,33)" fg:x="301478" fg:w="111"/><text x="61.6242%" y="671.50"></text></g><g><title>read_tsc (59 samples, 0.01%)</title><rect x="61.3848%" y="645" width="0.0120%" height="15" fill="rgb(239,55,3)" fg:x="301530" fg:w="59"/><text x="61.6348%" y="655.50"></text></g><g><title>btrfs_add_link (20,552 samples, 4.18%)</title><rect x="57.2198%" y="709" width="4.1839%" height="15" fill="rgb(247,92,11)" fg:x="281071" fg:w="20552"/><text x="57.4698%" y="719.50">btrfs..</text></g><g><title>btrfs_balance_delayed_items (80 samples, 0.02%)</title><rect x="61.4106%" y="693" width="0.0163%" height="15" fill="rgb(239,200,7)" fg:x="301657" fg:w="80"/><text x="61.6606%" y="703.50"></text></g><g><title>enqueue_task_fair (73 samples, 0.01%)</title><rect x="61.4528%" y="629" width="0.0149%" height="15" fill="rgb(227,115,8)" fg:x="301864" fg:w="73"/><text x="61.7028%" y="639.50"></text></g><g><title>enqueue_entity (63 samples, 0.01%)</title><rect x="61.4548%" y="613" width="0.0128%" height="15" fill="rgb(215,189,27)" fg:x="301874" fg:w="63"/><text x="61.7048%" y="623.50"></text></g><g><title>ttwu_do_activate (104 samples, 0.02%)</title><rect x="61.4515%" y="645" width="0.0212%" height="15" fill="rgb(251,216,39)" fg:x="301858" fg:w="104"/><text x="61.7015%" y="655.50"></text></g><g><title>__queue_work (225 samples, 0.05%)</title><rect x="61.4324%" y="677" width="0.0458%" height="15" fill="rgb(207,29,47)" fg:x="301764" fg:w="225"/><text x="61.6824%" y="687.50"></text></g><g><title>try_to_wake_up (176 samples, 0.04%)</title><rect x="61.4424%" y="661" width="0.0358%" height="15" fill="rgb(210,71,34)" fg:x="301813" fg:w="176"/><text x="61.6924%" y="671.50"></text></g><g><title>btrfs_btree_balance_dirty (366 samples, 0.07%)</title><rect x="61.4039%" y="709" width="0.0745%" height="15" fill="rgb(253,217,51)" fg:x="301624" fg:w="366"/><text x="61.6539%" y="719.50"></text></g><g><title>queue_work_on (236 samples, 0.05%)</title><rect x="61.4304%" y="693" width="0.0480%" height="15" fill="rgb(222,117,46)" fg:x="301754" fg:w="236"/><text x="61.6804%" y="703.50"></text></g><g><title>mutex_lock (68 samples, 0.01%)</title><rect x="61.4835%" y="693" width="0.0138%" height="15" fill="rgb(226,132,6)" fg:x="302015" fg:w="68"/><text x="61.7335%" y="703.50"></text></g><g><title>btrfs_find_free_ino (174 samples, 0.04%)</title><rect x="61.4790%" y="709" width="0.0354%" height="15" fill="rgb(254,145,51)" fg:x="301993" fg:w="174"/><text x="61.7290%" y="719.50"></text></g><g><title>mutex_unlock (84 samples, 0.02%)</title><rect x="61.4974%" y="693" width="0.0171%" height="15" fill="rgb(231,199,27)" fg:x="302083" fg:w="84"/><text x="61.7474%" y="703.50"></text></g><g><title>__wake_up_common (79 samples, 0.02%)</title><rect x="61.5240%" y="661" width="0.0161%" height="15" fill="rgb(245,158,14)" fg:x="302214" fg:w="79"/><text x="61.7740%" y="671.50"></text></g><g><title>autoremove_wake_function (75 samples, 0.02%)</title><rect x="61.5248%" y="645" width="0.0153%" height="15" fill="rgb(240,113,14)" fg:x="302218" fg:w="75"/><text x="61.7748%" y="655.50"></text></g><g><title>try_to_wake_up (75 samples, 0.02%)</title><rect x="61.5248%" y="629" width="0.0153%" height="15" fill="rgb(210,20,13)" fg:x="302218" fg:w="75"/><text x="61.7748%" y="639.50"></text></g><g><title>__wake_up_common_lock (86 samples, 0.02%)</title><rect x="61.5238%" y="677" width="0.0175%" height="15" fill="rgb(241,144,13)" fg:x="302213" fg:w="86"/><text x="61.7738%" y="687.50"></text></g><g><title>btrfs_tree_unlock (68 samples, 0.01%)</title><rect x="61.5415%" y="677" width="0.0138%" height="15" fill="rgb(235,43,34)" fg:x="302300" fg:w="68"/><text x="61.7915%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (231 samples, 0.05%)</title><rect x="61.5572%" y="677" width="0.0470%" height="15" fill="rgb(208,36,20)" fg:x="302377" fg:w="231"/><text x="61.8072%" y="687.50"></text></g><g><title>_raw_spin_lock (171 samples, 0.03%)</title><rect x="61.5694%" y="661" width="0.0348%" height="15" fill="rgb(239,204,10)" fg:x="302437" fg:w="171"/><text x="61.8194%" y="671.50"></text></g><g><title>btrfs_free_path (613 samples, 0.12%)</title><rect x="61.5145%" y="709" width="0.1248%" height="15" fill="rgb(217,84,43)" fg:x="302167" fg:w="613"/><text x="61.7645%" y="719.50"></text></g><g><title>btrfs_release_path (608 samples, 0.12%)</title><rect x="61.5155%" y="693" width="0.1238%" height="15" fill="rgb(241,170,50)" fg:x="302172" fg:w="608"/><text x="61.7655%" y="703.50"></text></g><g><title>release_extent_buffer (172 samples, 0.04%)</title><rect x="61.6042%" y="677" width="0.0350%" height="15" fill="rgb(226,205,29)" fg:x="302608" fg:w="172"/><text x="61.8542%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (110 samples, 0.02%)</title><rect x="61.7223%" y="661" width="0.0224%" height="15" fill="rgb(233,113,1)" fg:x="303188" fg:w="110"/><text x="61.9723%" y="671.50"></text></g><g><title>_raw_read_lock (66 samples, 0.01%)</title><rect x="61.7313%" y="645" width="0.0134%" height="15" fill="rgb(253,98,13)" fg:x="303232" fg:w="66"/><text x="61.9813%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (254 samples, 0.05%)</title><rect x="61.7193%" y="677" width="0.0517%" height="15" fill="rgb(211,115,12)" fg:x="303173" fg:w="254"/><text x="61.9693%" y="687.50"></text></g><g><title>btrfs_root_node (129 samples, 0.03%)</title><rect x="61.7447%" y="661" width="0.0263%" height="15" fill="rgb(208,12,16)" fg:x="303298" fg:w="129"/><text x="61.9947%" y="671.50"></text></g><g><title>btrfs_leaf_free_space (161 samples, 0.03%)</title><rect x="61.7807%" y="677" width="0.0328%" height="15" fill="rgb(237,193,54)" fg:x="303475" fg:w="161"/><text x="62.0307%" y="687.50"></text></g><g><title>leaf_space_used (146 samples, 0.03%)</title><rect x="61.7838%" y="661" width="0.0297%" height="15" fill="rgb(243,22,42)" fg:x="303490" fg:w="146"/><text x="62.0338%" y="671.50"></text></g><g><title>btrfs_get_32 (100 samples, 0.02%)</title><rect x="61.7932%" y="645" width="0.0204%" height="15" fill="rgb(233,151,36)" fg:x="303536" fg:w="100"/><text x="62.0432%" y="655.50"></text></g><g><title>btrfs_set_path_blocking (160 samples, 0.03%)</title><rect x="61.8135%" y="677" width="0.0326%" height="15" fill="rgb(237,57,45)" fg:x="303636" fg:w="160"/><text x="62.0635%" y="687.50"></text></g><g><title>btrfs_set_lock_blocking_write (56 samples, 0.01%)</title><rect x="61.8347%" y="661" width="0.0114%" height="15" fill="rgb(221,88,17)" fg:x="303740" fg:w="56"/><text x="62.0847%" y="671.50"></text></g><g><title>_raw_write_lock (108 samples, 0.02%)</title><rect x="61.8520%" y="661" width="0.0220%" height="15" fill="rgb(230,79,15)" fg:x="303825" fg:w="108"/><text x="62.1020%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (158 samples, 0.03%)</title><rect x="61.8461%" y="677" width="0.0322%" height="15" fill="rgb(213,57,13)" fg:x="303796" fg:w="158"/><text x="62.0961%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (766 samples, 0.16%)</title><rect x="61.8782%" y="677" width="0.1559%" height="15" fill="rgb(222,116,39)" fg:x="303954" fg:w="766"/><text x="62.1282%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (61 samples, 0.01%)</title><rect x="62.0570%" y="661" width="0.0124%" height="15" fill="rgb(245,107,2)" fg:x="304832" fg:w="61"/><text x="62.3070%" y="671.50"></text></g><g><title>btrfs_get_64 (134 samples, 0.03%)</title><rect x="62.0694%" y="661" width="0.0273%" height="15" fill="rgb(238,1,10)" fg:x="304893" fg:w="134"/><text x="62.3194%" y="671.50"></text></g><g><title>__radix_tree_lookup (423 samples, 0.09%)</title><rect x="62.1429%" y="645" width="0.0861%" height="15" fill="rgb(249,4,48)" fg:x="305254" fg:w="423"/><text x="62.3929%" y="655.50"></text></g><g><title>check_buffer_tree_ref (57 samples, 0.01%)</title><rect x="62.2400%" y="629" width="0.0116%" height="15" fill="rgb(223,151,18)" fg:x="305731" fg:w="57"/><text x="62.4900%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (249 samples, 0.05%)</title><rect x="62.2290%" y="645" width="0.0507%" height="15" fill="rgb(227,65,43)" fg:x="305677" fg:w="249"/><text x="62.4790%" y="655.50"></text></g><g><title>mark_page_accessed (137 samples, 0.03%)</title><rect x="62.2518%" y="629" width="0.0279%" height="15" fill="rgb(218,40,45)" fg:x="305789" fg:w="137"/><text x="62.5018%" y="639.50"></text></g><g><title>find_extent_buffer (847 samples, 0.17%)</title><rect x="62.1081%" y="661" width="0.1724%" height="15" fill="rgb(252,121,31)" fg:x="305083" fg:w="847"/><text x="62.3581%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (1,368 samples, 0.28%)</title><rect x="62.0342%" y="677" width="0.2785%" height="15" fill="rgb(219,158,43)" fg:x="304720" fg:w="1368"/><text x="62.2842%" y="687.50"></text></g><g><title>read_extent_buffer (158 samples, 0.03%)</title><rect x="62.2805%" y="661" width="0.0322%" height="15" fill="rgb(231,162,42)" fg:x="305930" fg:w="158"/><text x="62.5305%" y="671.50"></text></g><g><title>alloc_extent_buffer (82 samples, 0.02%)</title><rect x="62.3172%" y="629" width="0.0167%" height="15" fill="rgb(217,179,25)" fg:x="306110" fg:w="82"/><text x="62.5672%" y="639.50"></text></g><g><title>btrfs_add_delayed_tree_ref (54 samples, 0.01%)</title><rect x="62.3339%" y="629" width="0.0110%" height="15" fill="rgb(206,212,31)" fg:x="306192" fg:w="54"/><text x="62.5839%" y="639.50"></text></g><g><title>btrfs_reserve_extent (64 samples, 0.01%)</title><rect x="62.3479%" y="629" width="0.0130%" height="15" fill="rgb(235,144,12)" fg:x="306261" fg:w="64"/><text x="62.5979%" y="639.50"></text></g><g><title>find_free_extent (55 samples, 0.01%)</title><rect x="62.3497%" y="613" width="0.0112%" height="15" fill="rgb(213,51,10)" fg:x="306270" fg:w="55"/><text x="62.5997%" y="623.50"></text></g><g><title>set_extent_bit (53 samples, 0.01%)</title><rect x="62.3628%" y="629" width="0.0108%" height="15" fill="rgb(231,145,14)" fg:x="306334" fg:w="53"/><text x="62.6128%" y="639.50"></text></g><g><title>__set_extent_bit (53 samples, 0.01%)</title><rect x="62.3628%" y="613" width="0.0108%" height="15" fill="rgb(235,15,28)" fg:x="306334" fg:w="53"/><text x="62.6128%" y="623.50"></text></g><g><title>alloc_tree_block_no_bg_flush (282 samples, 0.06%)</title><rect x="62.3170%" y="661" width="0.0574%" height="15" fill="rgb(237,206,10)" fg:x="306109" fg:w="282"/><text x="62.5670%" y="671.50"></text></g><g><title>btrfs_alloc_tree_block (281 samples, 0.06%)</title><rect x="62.3172%" y="645" width="0.0572%" height="15" fill="rgb(236,227,27)" fg:x="306110" fg:w="281"/><text x="62.5672%" y="655.50"></text></g><g><title>__set_page_dirty_nobuffers (61 samples, 0.01%)</title><rect x="62.3841%" y="613" width="0.0124%" height="15" fill="rgb(246,83,35)" fg:x="306439" fg:w="61"/><text x="62.6341%" y="623.50"></text></g><g><title>btrfs_mark_buffer_dirty (71 samples, 0.01%)</title><rect x="62.3825%" y="645" width="0.0145%" height="15" fill="rgb(220,136,24)" fg:x="306431" fg:w="71"/><text x="62.6325%" y="655.50"></text></g><g><title>set_extent_buffer_dirty (69 samples, 0.01%)</title><rect x="62.3829%" y="629" width="0.0140%" height="15" fill="rgb(217,3,25)" fg:x="306433" fg:w="69"/><text x="62.6329%" y="639.50"></text></g><g><title>copy_for_split (190 samples, 0.04%)</title><rect x="62.3764%" y="661" width="0.0387%" height="15" fill="rgb(239,24,14)" fg:x="306401" fg:w="190"/><text x="62.6264%" y="671.50"></text></g><g><title>btrfs_get_token_32 (60 samples, 0.01%)</title><rect x="62.4301%" y="629" width="0.0122%" height="15" fill="rgb(244,16,53)" fg:x="306665" fg:w="60"/><text x="62.6801%" y="639.50"></text></g><g><title>__push_leaf_left (249 samples, 0.05%)</title><rect x="62.4175%" y="645" width="0.0507%" height="15" fill="rgb(208,175,44)" fg:x="306603" fg:w="249"/><text x="62.6675%" y="655.50"></text></g><g><title>push_leaf_left (317 samples, 0.06%)</title><rect x="62.4155%" y="661" width="0.0645%" height="15" fill="rgb(252,18,48)" fg:x="306593" fg:w="317"/><text x="62.6655%" y="671.50"></text></g><g><title>split_leaf (825 samples, 0.17%)</title><rect x="62.3129%" y="677" width="0.1680%" height="15" fill="rgb(234,199,32)" fg:x="306089" fg:w="825"/><text x="62.5629%" y="687.50"></text></g><g><title>btrfs_tree_read_unlock (73 samples, 0.01%)</title><rect x="62.5191%" y="661" width="0.0149%" height="15" fill="rgb(225,77,54)" fg:x="307102" fg:w="73"/><text x="62.7691%" y="671.50"></text></g><g><title>btrfs_search_slot (4,303 samples, 0.88%)</title><rect x="61.6608%" y="693" width="0.8760%" height="15" fill="rgb(225,42,25)" fg:x="302886" fg:w="4303"/><text x="61.9108%" y="703.50"></text></g><g><title>unlock_up (273 samples, 0.06%)</title><rect x="62.4812%" y="677" width="0.0556%" height="15" fill="rgb(242,227,46)" fg:x="306916" fg:w="273"/><text x="62.7312%" y="687.50"></text></g><g><title>btrfs_get_32 (122 samples, 0.02%)</title><rect x="62.6354%" y="677" width="0.0248%" height="15" fill="rgb(246,197,35)" fg:x="307673" fg:w="122"/><text x="62.8854%" y="687.50"></text></g><g><title>btrfs_get_token_32 (533 samples, 0.11%)</title><rect x="62.6602%" y="677" width="0.1085%" height="15" fill="rgb(215,159,26)" fg:x="307795" fg:w="533"/><text x="62.9102%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (141 samples, 0.03%)</title><rect x="62.7400%" y="661" width="0.0287%" height="15" fill="rgb(212,194,50)" fg:x="308187" fg:w="141"/><text x="62.9900%" y="671.50"></text></g><g><title>btrfs_leaf_free_space (258 samples, 0.05%)</title><rect x="62.7687%" y="677" width="0.0525%" height="15" fill="rgb(246,132,1)" fg:x="308328" fg:w="258"/><text x="63.0187%" y="687.50"></text></g><g><title>leaf_space_used (222 samples, 0.05%)</title><rect x="62.7760%" y="661" width="0.0452%" height="15" fill="rgb(217,71,7)" fg:x="308364" fg:w="222"/><text x="63.0260%" y="671.50"></text></g><g><title>btrfs_get_32 (157 samples, 0.03%)</title><rect x="62.7893%" y="645" width="0.0320%" height="15" fill="rgb(252,59,32)" fg:x="308429" fg:w="157"/><text x="63.0393%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (164 samples, 0.03%)</title><rect x="62.8212%" y="677" width="0.0334%" height="15" fill="rgb(253,204,25)" fg:x="308586" fg:w="164"/><text x="63.0712%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (117 samples, 0.02%)</title><rect x="62.8308%" y="661" width="0.0238%" height="15" fill="rgb(232,21,16)" fg:x="308633" fg:w="117"/><text x="63.0808%" y="671.50"></text></g><g><title>btrfs_set_token_32 (759 samples, 0.15%)</title><rect x="62.8546%" y="677" width="0.1545%" height="15" fill="rgb(248,90,29)" fg:x="308750" fg:w="759"/><text x="63.1046%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (162 samples, 0.03%)</title><rect x="62.9761%" y="661" width="0.0330%" height="15" fill="rgb(249,223,7)" fg:x="309347" fg:w="162"/><text x="63.2261%" y="671.50"></text></g><g><title>memmove_extent_buffer (220 samples, 0.04%)</title><rect x="63.0215%" y="677" width="0.0448%" height="15" fill="rgb(231,119,42)" fg:x="309570" fg:w="220"/><text x="63.2715%" y="687.50"></text></g><g><title>memmove (145 samples, 0.03%)</title><rect x="63.0368%" y="661" width="0.0295%" height="15" fill="rgb(215,41,35)" fg:x="309645" fg:w="145"/><text x="63.2868%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (7,037 samples, 1.43%)</title><rect x="61.6541%" y="709" width="1.4326%" height="15" fill="rgb(220,44,45)" fg:x="302853" fg:w="7037"/><text x="61.9041%" y="719.50"></text></g><g><title>setup_items_for_insert (2,701 samples, 0.55%)</title><rect x="62.5368%" y="693" width="0.5499%" height="15" fill="rgb(253,197,36)" fg:x="307189" fg:w="2701"/><text x="62.7868%" y="703.50"></text></g><g><title>write_extent_buffer (100 samples, 0.02%)</title><rect x="63.0663%" y="677" width="0.0204%" height="15" fill="rgb(245,225,54)" fg:x="309790" fg:w="100"/><text x="63.3163%" y="687.50"></text></g><g><title>btrfs_mark_buffer_dirty (173 samples, 0.04%)</title><rect x="63.0867%" y="709" width="0.0352%" height="15" fill="rgb(239,94,37)" fg:x="309890" fg:w="173"/><text x="63.3367%" y="719.50"></text></g><g><title>set_extent_buffer_dirty (138 samples, 0.03%)</title><rect x="63.0938%" y="693" width="0.0281%" height="15" fill="rgb(242,217,10)" fg:x="309925" fg:w="138"/><text x="63.3438%" y="703.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="63.1826%" y="693" width="0.0130%" height="15" fill="rgb(250,193,7)" fg:x="310361" fg:w="64"/><text x="63.4326%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (256 samples, 0.05%)</title><rect x="63.2060%" y="661" width="0.0521%" height="15" fill="rgb(230,104,19)" fg:x="310476" fg:w="256"/><text x="63.4560%" y="671.50"></text></g><g><title>_raw_spin_lock (194 samples, 0.04%)</title><rect x="63.2186%" y="645" width="0.0395%" height="15" fill="rgb(230,181,4)" fg:x="310538" fg:w="194"/><text x="63.4686%" y="655.50"></text></g><g><title>btrfs_free_path (459 samples, 0.09%)</title><rect x="63.1958%" y="693" width="0.0934%" height="15" fill="rgb(216,219,49)" fg:x="310426" fg:w="459"/><text x="63.4458%" y="703.50"></text></g><g><title>btrfs_release_path (451 samples, 0.09%)</title><rect x="63.1974%" y="677" width="0.0918%" height="15" fill="rgb(254,144,0)" fg:x="310434" fg:w="451"/><text x="63.4474%" y="687.50"></text></g><g><title>release_extent_buffer (153 samples, 0.03%)</title><rect x="63.2581%" y="661" width="0.0311%" height="15" fill="rgb(205,209,38)" fg:x="310732" fg:w="153"/><text x="63.5081%" y="671.50"></text></g><g><title>btrfs_get_32 (78 samples, 0.02%)</title><rect x="63.2892%" y="693" width="0.0159%" height="15" fill="rgb(240,21,42)" fg:x="310885" fg:w="78"/><text x="63.5392%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (98 samples, 0.02%)</title><rect x="63.3711%" y="645" width="0.0200%" height="15" fill="rgb(241,132,3)" fg:x="311287" fg:w="98"/><text x="63.6211%" y="655.50"></text></g><g><title>_raw_read_lock (66 samples, 0.01%)</title><rect x="63.3776%" y="629" width="0.0134%" height="15" fill="rgb(225,14,2)" fg:x="311319" fg:w="66"/><text x="63.6276%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (209 samples, 0.04%)</title><rect x="63.3690%" y="661" width="0.0425%" height="15" fill="rgb(210,141,35)" fg:x="311277" fg:w="209"/><text x="63.6190%" y="671.50"></text></g><g><title>btrfs_root_node (101 samples, 0.02%)</title><rect x="63.3910%" y="645" width="0.0206%" height="15" fill="rgb(251,14,44)" fg:x="311385" fg:w="101"/><text x="63.6410%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (182 samples, 0.04%)</title><rect x="63.4210%" y="661" width="0.0371%" height="15" fill="rgb(247,48,18)" fg:x="311532" fg:w="182"/><text x="63.6710%" y="671.50"></text></g><g><title>leaf_space_used (153 samples, 0.03%)</title><rect x="63.4269%" y="645" width="0.0311%" height="15" fill="rgb(225,0,40)" fg:x="311561" fg:w="153"/><text x="63.6769%" y="655.50"></text></g><g><title>btrfs_get_32 (114 samples, 0.02%)</title><rect x="63.4348%" y="629" width="0.0232%" height="15" fill="rgb(221,31,33)" fg:x="311600" fg:w="114"/><text x="63.6848%" y="639.50"></text></g><g><title>_raw_write_lock (98 samples, 0.02%)</title><rect x="63.4635%" y="645" width="0.0200%" height="15" fill="rgb(237,42,40)" fg:x="311741" fg:w="98"/><text x="63.7135%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (162 samples, 0.03%)</title><rect x="63.4586%" y="661" width="0.0330%" height="15" fill="rgb(233,51,29)" fg:x="311717" fg:w="162"/><text x="63.7086%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (818 samples, 0.17%)</title><rect x="63.4916%" y="661" width="0.1665%" height="15" fill="rgb(226,58,20)" fg:x="311879" fg:w="818"/><text x="63.7416%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (67 samples, 0.01%)</title><rect x="63.6822%" y="645" width="0.0136%" height="15" fill="rgb(208,98,7)" fg:x="312815" fg:w="67"/><text x="63.9322%" y="655.50"></text></g><g><title>btrfs_get_64 (144 samples, 0.03%)</title><rect x="63.6958%" y="645" width="0.0293%" height="15" fill="rgb(228,143,44)" fg:x="312882" fg:w="144"/><text x="63.9458%" y="655.50"></text></g><g><title>btrfs_verify_level_key (58 samples, 0.01%)</title><rect x="63.7275%" y="645" width="0.0118%" height="15" fill="rgb(246,55,38)" fg:x="313038" fg:w="58"/><text x="63.9775%" y="655.50"></text></g><g><title>__radix_tree_lookup (466 samples, 0.09%)</title><rect x="63.7888%" y="629" width="0.0949%" height="15" fill="rgb(247,87,16)" fg:x="313339" fg:w="466"/><text x="64.0388%" y="639.50"></text></g><g><title>check_buffer_tree_ref (53 samples, 0.01%)</title><rect x="63.8926%" y="613" width="0.0108%" height="15" fill="rgb(234,129,42)" fg:x="313849" fg:w="53"/><text x="64.1426%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (269 samples, 0.05%)</title><rect x="63.8837%" y="629" width="0.0548%" height="15" fill="rgb(220,82,16)" fg:x="313805" fg:w="269"/><text x="64.1337%" y="639.50"></text></g><g><title>mark_page_accessed (172 samples, 0.04%)</title><rect x="63.9034%" y="613" width="0.0350%" height="15" fill="rgb(211,88,4)" fg:x="313902" fg:w="172"/><text x="64.1534%" y="623.50"></text></g><g><title>find_extent_buffer (989 samples, 0.20%)</title><rect x="63.7394%" y="645" width="0.2013%" height="15" fill="rgb(248,151,21)" fg:x="313096" fg:w="989"/><text x="63.9894%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (1,555 samples, 0.32%)</title><rect x="63.6581%" y="661" width="0.3166%" height="15" fill="rgb(238,163,6)" fg:x="312697" fg:w="1555"/><text x="63.9081%" y="671.50"></text></g><g><title>read_extent_buffer (167 samples, 0.03%)</title><rect x="63.9407%" y="645" width="0.0340%" height="15" fill="rgb(209,183,11)" fg:x="314085" fg:w="167"/><text x="64.1907%" y="655.50"></text></g><g><title>alloc_extent_buffer (85 samples, 0.02%)</title><rect x="63.9782%" y="613" width="0.0173%" height="15" fill="rgb(219,37,20)" fg:x="314269" fg:w="85"/><text x="64.2282%" y="623.50"></text></g><g><title>btrfs_add_delayed_tree_ref (65 samples, 0.01%)</title><rect x="63.9955%" y="613" width="0.0132%" height="15" fill="rgb(210,158,4)" fg:x="314354" fg:w="65"/><text x="64.2455%" y="623.50"></text></g><g><title>alloc_tree_block_no_bg_flush (279 samples, 0.06%)</title><rect x="63.9761%" y="645" width="0.0568%" height="15" fill="rgb(221,167,53)" fg:x="314259" fg:w="279"/><text x="64.2261%" y="655.50"></text></g><g><title>btrfs_alloc_tree_block (275 samples, 0.06%)</title><rect x="63.9769%" y="629" width="0.0560%" height="15" fill="rgb(237,151,45)" fg:x="314263" fg:w="275"/><text x="64.2269%" y="639.50"></text></g><g><title>__set_page_dirty_nobuffers (77 samples, 0.02%)</title><rect x="64.0441%" y="597" width="0.0157%" height="15" fill="rgb(231,39,3)" fg:x="314593" fg:w="77"/><text x="64.2941%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (89 samples, 0.02%)</title><rect x="64.0429%" y="629" width="0.0181%" height="15" fill="rgb(212,167,28)" fg:x="314587" fg:w="89"/><text x="64.2929%" y="639.50"></text></g><g><title>set_extent_buffer_dirty (88 samples, 0.02%)</title><rect x="64.0431%" y="613" width="0.0179%" height="15" fill="rgb(232,178,8)" fg:x="314588" fg:w="88"/><text x="64.2931%" y="623.50"></text></g><g><title>copy_extent_buffer (54 samples, 0.01%)</title><rect x="64.0669%" y="629" width="0.0110%" height="15" fill="rgb(225,151,20)" fg:x="314705" fg:w="54"/><text x="64.3169%" y="639.50"></text></g><g><title>copy_for_split (219 samples, 0.04%)</title><rect x="64.0347%" y="645" width="0.0446%" height="15" fill="rgb(238,3,37)" fg:x="314547" fg:w="219"/><text x="64.2847%" y="655.50"></text></g><g><title>btrfs_get_token_32 (63 samples, 0.01%)</title><rect x="64.0936%" y="613" width="0.0128%" height="15" fill="rgb(251,147,42)" fg:x="314836" fg:w="63"/><text x="64.3436%" y="623.50"></text></g><g><title>btrfs_set_token_32 (75 samples, 0.02%)</title><rect x="64.1072%" y="613" width="0.0153%" height="15" fill="rgb(208,173,10)" fg:x="314903" fg:w="75"/><text x="64.3572%" y="623.50"></text></g><g><title>__push_leaf_left (264 samples, 0.05%)</title><rect x="64.0818%" y="629" width="0.0537%" height="15" fill="rgb(246,225,4)" fg:x="314778" fg:w="264"/><text x="64.3318%" y="639.50"></text></g><g><title>push_leaf_left (331 samples, 0.07%)</title><rect x="64.0799%" y="645" width="0.0674%" height="15" fill="rgb(248,102,6)" fg:x="314769" fg:w="331"/><text x="64.3299%" y="655.50"></text></g><g><title>split_leaf (855 samples, 0.17%)</title><rect x="63.9747%" y="661" width="0.1741%" height="15" fill="rgb(232,6,21)" fg:x="314252" fg:w="855"/><text x="64.2247%" y="671.50"></text></g><g><title>btrfs_tree_read_unlock (83 samples, 0.02%)</title><rect x="64.1856%" y="645" width="0.0169%" height="15" fill="rgb(221,179,22)" fg:x="315288" fg:w="83"/><text x="64.4356%" y="655.50"></text></g><g><title>btrfs_search_slot (4,393 samples, 0.89%)</title><rect x="63.3125%" y="677" width="0.8943%" height="15" fill="rgb(252,50,20)" fg:x="310999" fg:w="4393"/><text x="63.5625%" y="687.50"></text></g><g><title>unlock_up (285 samples, 0.06%)</title><rect x="64.1488%" y="661" width="0.0580%" height="15" fill="rgb(222,56,38)" fg:x="315107" fg:w="285"/><text x="64.3988%" y="671.50"></text></g><g><title>btrfs_get_32 (119 samples, 0.02%)</title><rect x="64.3183%" y="661" width="0.0242%" height="15" fill="rgb(206,193,29)" fg:x="315940" fg:w="119"/><text x="64.5683%" y="671.50"></text></g><g><title>btrfs_get_token_32 (708 samples, 0.14%)</title><rect x="64.3426%" y="661" width="0.1441%" height="15" fill="rgb(239,192,45)" fg:x="316059" fg:w="708"/><text x="64.5926%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (160 samples, 0.03%)</title><rect x="64.4541%" y="645" width="0.0326%" height="15" fill="rgb(254,18,36)" fg:x="316607" fg:w="160"/><text x="64.7041%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (255 samples, 0.05%)</title><rect x="64.4867%" y="661" width="0.0519%" height="15" fill="rgb(221,127,11)" fg:x="316767" fg:w="255"/><text x="64.7367%" y="671.50"></text></g><g><title>leaf_space_used (223 samples, 0.05%)</title><rect x="64.4932%" y="645" width="0.0454%" height="15" fill="rgb(234,146,35)" fg:x="316799" fg:w="223"/><text x="64.7432%" y="655.50"></text></g><g><title>btrfs_get_32 (154 samples, 0.03%)</title><rect x="64.5073%" y="629" width="0.0314%" height="15" fill="rgb(254,201,37)" fg:x="316868" fg:w="154"/><text x="64.7573%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (239 samples, 0.05%)</title><rect x="64.5386%" y="661" width="0.0487%" height="15" fill="rgb(211,202,23)" fg:x="317022" fg:w="239"/><text x="64.7886%" y="671.50"></text></g><g><title>set_extent_buffer_dirty (102 samples, 0.02%)</title><rect x="64.5665%" y="645" width="0.0208%" height="15" fill="rgb(237,91,2)" fg:x="317159" fg:w="102"/><text x="64.8165%" y="655.50"></text></g><g><title>btrfs_set_token_32 (758 samples, 0.15%)</title><rect x="64.5873%" y="661" width="0.1543%" height="15" fill="rgb(226,228,36)" fg:x="317261" fg:w="758"/><text x="64.8373%" y="671.50"></text></g><g><title>check_setget_bounds.isra.0 (147 samples, 0.03%)</title><rect x="64.7116%" y="645" width="0.0299%" height="15" fill="rgb(213,63,50)" fg:x="317872" fg:w="147"/><text x="64.9616%" y="655.50"></text></g><g><title>memmove_extent_buffer (290 samples, 0.06%)</title><rect x="64.7560%" y="661" width="0.0590%" height="15" fill="rgb(235,194,19)" fg:x="318090" fg:w="290"/><text x="65.0060%" y="671.50"></text></g><g><title>memmove (140 samples, 0.03%)</title><rect x="64.7866%" y="645" width="0.0285%" height="15" fill="rgb(207,204,18)" fg:x="318240" fg:w="140"/><text x="65.0366%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (7,666 samples, 1.56%)</title><rect x="63.3057%" y="693" width="1.5606%" height="15" fill="rgb(248,8,7)" fg:x="310966" fg:w="7666"/><text x="63.5557%" y="703.50"></text></g><g><title>setup_items_for_insert (3,240 samples, 0.66%)</title><rect x="64.2068%" y="677" width="0.6596%" height="15" fill="rgb(223,145,47)" fg:x="315392" fg:w="3240"/><text x="64.4568%" y="687.50"></text></g><g><title>write_extent_buffer (252 samples, 0.05%)</title><rect x="64.8151%" y="661" width="0.0513%" height="15" fill="rgb(228,84,11)" fg:x="318380" fg:w="252"/><text x="65.0651%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (194 samples, 0.04%)</title><rect x="64.8664%" y="693" width="0.0395%" height="15" fill="rgb(218,76,45)" fg:x="318632" fg:w="194"/><text x="65.1164%" y="703.50"></text></g><g><title>set_extent_buffer_dirty (117 samples, 0.02%)</title><rect x="64.8820%" y="677" width="0.0238%" height="15" fill="rgb(223,80,15)" fg:x="318709" fg:w="117"/><text x="65.1320%" y="687.50"></text></g><g><title>btrfs_set_16 (58 samples, 0.01%)</title><rect x="64.9059%" y="693" width="0.0118%" height="15" fill="rgb(219,218,33)" fg:x="318826" fg:w="58"/><text x="65.1559%" y="703.50"></text></g><g><title>btrfs_sync_inode_flags_to_i_flags (73 samples, 0.01%)</title><rect x="64.9272%" y="693" width="0.0149%" height="15" fill="rgb(208,51,11)" fg:x="318931" fg:w="73"/><text x="65.1772%" y="703.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="64.9488%" y="677" width="0.0110%" height="15" fill="rgb(229,165,39)" fg:x="319037" fg:w="54"/><text x="65.1988%" y="687.50"></text></g><g><title>btrfs_update_root_times (220 samples, 0.04%)</title><rect x="64.9421%" y="693" width="0.0448%" height="15" fill="rgb(241,100,24)" fg:x="319004" fg:w="220"/><text x="65.1921%" y="703.50"></text></g><g><title>ktime_get_real_ts64 (133 samples, 0.03%)</title><rect x="64.9598%" y="677" width="0.0271%" height="15" fill="rgb(228,14,23)" fg:x="319091" fg:w="133"/><text x="65.2098%" y="687.50"></text></g><g><title>read_tsc (79 samples, 0.02%)</title><rect x="64.9708%" y="661" width="0.0161%" height="15" fill="rgb(247,116,52)" fg:x="319145" fg:w="79"/><text x="65.2208%" y="671.50"></text></g><g><title>current_time (88 samples, 0.02%)</title><rect x="64.9869%" y="693" width="0.0179%" height="15" fill="rgb(216,149,33)" fg:x="319224" fg:w="88"/><text x="65.2369%" y="703.50"></text></g><g><title>btrfs_set_token_32 (338 samples, 0.07%)</title><rect x="65.0453%" y="677" width="0.0688%" height="15" fill="rgb(238,142,29)" fg:x="319511" fg:w="338"/><text x="65.2953%" y="687.50"></text></g><g><title>btrfs_set_token_64 (483 samples, 0.10%)</title><rect x="65.1141%" y="677" width="0.0983%" height="15" fill="rgb(224,83,40)" fg:x="319849" fg:w="483"/><text x="65.3641%" y="687.50"></text></g><g><title>check_setget_bounds.isra.0 (81 samples, 0.02%)</title><rect x="65.1960%" y="661" width="0.0165%" height="15" fill="rgb(234,165,11)" fg:x="320251" fg:w="81"/><text x="65.4460%" y="671.50"></text></g><g><title>inode_get_bytes (86 samples, 0.02%)</title><rect x="65.2141%" y="677" width="0.0175%" height="15" fill="rgb(215,96,23)" fg:x="320340" fg:w="86"/><text x="65.4641%" y="687.50"></text></g><g><title>_raw_spin_lock (60 samples, 0.01%)</title><rect x="65.2194%" y="661" width="0.0122%" height="15" fill="rgb(233,179,26)" fg:x="320366" fg:w="60"/><text x="65.4694%" y="671.50"></text></g><g><title>fill_inode_item (1,171 samples, 0.24%)</title><rect x="65.0048%" y="693" width="0.2384%" height="15" fill="rgb(225,129,33)" fg:x="319312" fg:w="1171"/><text x="65.2548%" y="703.50"></text></g><g><title>map_id_up (57 samples, 0.01%)</title><rect x="65.2316%" y="677" width="0.0116%" height="15" fill="rgb(237,49,13)" fg:x="320426" fg:w="57"/><text x="65.4816%" y="687.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="65.6009%" y="677" width="0.0108%" height="15" fill="rgb(211,3,31)" fg:x="322240" fg:w="53"/><text x="65.8509%" y="687.50"></text></g><g><title>inode_tree_add (1,977 samples, 0.40%)</title><rect x="65.2564%" y="693" width="0.4025%" height="15" fill="rgb(216,152,19)" fg:x="320548" fg:w="1977"/><text x="65.5064%" y="703.50"></text></g><g><title>rb_insert_color (228 samples, 0.05%)</title><rect x="65.6125%" y="677" width="0.0464%" height="15" fill="rgb(251,121,35)" fg:x="322297" fg:w="228"/><text x="65.8625%" y="687.50"></text></g><g><title>_raw_spin_lock (133 samples, 0.03%)</title><rect x="65.6674%" y="661" width="0.0271%" height="15" fill="rgb(210,217,47)" fg:x="322567" fg:w="133"/><text x="65.9174%" y="671.50"></text></g><g><title>insert_inode_locked4 (743 samples, 0.15%)</title><rect x="65.6589%" y="693" width="0.1513%" height="15" fill="rgb(244,116,22)" fg:x="322525" fg:w="743"/><text x="65.9089%" y="703.50"></text></g><g><title>inode_insert5 (736 samples, 0.15%)</title><rect x="65.6603%" y="677" width="0.1498%" height="15" fill="rgb(228,17,21)" fg:x="322532" fg:w="736"/><text x="65.9103%" y="687.50"></text></g><g><title>find_inode (568 samples, 0.12%)</title><rect x="65.6945%" y="661" width="0.1156%" height="15" fill="rgb(240,149,34)" fg:x="322700" fg:w="568"/><text x="65.9445%" y="671.50"></text></g><g><title>kmem_cache_alloc (141 samples, 0.03%)</title><rect x="65.8101%" y="693" width="0.0287%" height="15" fill="rgb(208,125,47)" fg:x="323268" fg:w="141"/><text x="66.0601%" y="703.50"></text></g><g><title>kmem_cache_free (122 samples, 0.02%)</title><rect x="65.8389%" y="693" width="0.0248%" height="15" fill="rgb(249,186,39)" fg:x="323409" fg:w="122"/><text x="66.0889%" y="703.50"></text></g><g><title>memzero_extent_buffer (137 samples, 0.03%)</title><rect x="65.8637%" y="693" width="0.0279%" height="15" fill="rgb(240,220,33)" fg:x="323531" fg:w="137"/><text x="66.1137%" y="703.50"></text></g><g><title>_raw_spin_lock (339 samples, 0.07%)</title><rect x="65.9028%" y="677" width="0.0690%" height="15" fill="rgb(243,110,23)" fg:x="323723" fg:w="339"/><text x="66.1528%" y="687.50"></text></g><g><title>btrfs_init_metadata_block_rsv (122 samples, 0.02%)</title><rect x="66.0054%" y="645" width="0.0248%" height="15" fill="rgb(219,163,46)" fg:x="324227" fg:w="122"/><text x="66.2554%" y="655.50"></text></g><g><title>btrfs_find_space_info (71 samples, 0.01%)</title><rect x="66.0158%" y="629" width="0.0145%" height="15" fill="rgb(216,126,30)" fg:x="324278" fg:w="71"/><text x="66.2658%" y="639.50"></text></g><g><title>___slab_alloc (139 samples, 0.03%)</title><rect x="66.0823%" y="613" width="0.0283%" height="15" fill="rgb(208,139,11)" fg:x="324605" fg:w="139"/><text x="66.3323%" y="623.50"></text></g><g><title>get_partial_node.part.0 (53 samples, 0.01%)</title><rect x="66.0998%" y="597" width="0.0108%" height="15" fill="rgb(213,118,36)" fg:x="324691" fg:w="53"/><text x="66.3498%" y="607.50"></text></g><g><title>__slab_alloc (149 samples, 0.03%)</title><rect x="66.0805%" y="629" width="0.0303%" height="15" fill="rgb(226,43,17)" fg:x="324596" fg:w="149"/><text x="66.3305%" y="639.50"></text></g><g><title>__mod_memcg_lruvec_state (60 samples, 0.01%)</title><rect x="66.1699%" y="613" width="0.0122%" height="15" fill="rgb(254,217,4)" fg:x="325035" fg:w="60"/><text x="66.4199%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (371 samples, 0.08%)</title><rect x="66.1108%" y="629" width="0.0755%" height="15" fill="rgb(210,134,47)" fg:x="324745" fg:w="371"/><text x="66.3608%" y="639.50"></text></g><g><title>get_obj_cgroup_from_current (96 samples, 0.02%)</title><rect x="66.1959%" y="613" width="0.0195%" height="15" fill="rgb(237,24,49)" fg:x="325163" fg:w="96"/><text x="66.4459%" y="623.50"></text></g><g><title>__memcg_kmem_charge (58 samples, 0.01%)</title><rect x="66.2425%" y="597" width="0.0118%" height="15" fill="rgb(251,39,46)" fg:x="325392" fg:w="58"/><text x="66.4925%" y="607.50"></text></g><g><title>obj_cgroup_charge (219 samples, 0.04%)</title><rect x="66.2155%" y="613" width="0.0446%" height="15" fill="rgb(251,220,3)" fg:x="325259" fg:w="219"/><text x="66.4655%" y="623.50"></text></g><g><title>btrfs_alloc_inode (1,355 samples, 0.28%)</title><rect x="65.9846%" y="661" width="0.2758%" height="15" fill="rgb(228,105,12)" fg:x="324125" fg:w="1355"/><text x="66.2346%" y="671.50"></text></g><g><title>kmem_cache_alloc (1,099 samples, 0.22%)</title><rect x="66.0367%" y="645" width="0.2237%" height="15" fill="rgb(215,196,1)" fg:x="324381" fg:w="1099"/><text x="66.2867%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (360 samples, 0.07%)</title><rect x="66.1872%" y="629" width="0.0733%" height="15" fill="rgb(214,33,39)" fg:x="325120" fg:w="360"/><text x="66.4372%" y="639.50"></text></g><g><title>alloc_inode (1,867 samples, 0.38%)</title><rect x="65.9718%" y="677" width="0.3801%" height="15" fill="rgb(220,19,52)" fg:x="324062" fg:w="1867"/><text x="66.2218%" y="687.50"></text></g><g><title>inode_init_always (449 samples, 0.09%)</title><rect x="66.2605%" y="661" width="0.0914%" height="15" fill="rgb(221,78,38)" fg:x="325480" fg:w="449"/><text x="66.5105%" y="671.50"></text></g><g><title>security_inode_alloc (87 samples, 0.02%)</title><rect x="66.3342%" y="645" width="0.0177%" height="15" fill="rgb(253,30,16)" fg:x="325842" fg:w="87"/><text x="66.5842%" y="655.50"></text></g><g><title>new_inode (2,370 samples, 0.48%)</title><rect x="65.8916%" y="693" width="0.4825%" height="15" fill="rgb(242,65,0)" fg:x="323668" fg:w="2370"/><text x="66.1416%" y="703.50"></text></g><g><title>inode_sb_list_add (109 samples, 0.02%)</title><rect x="66.3519%" y="677" width="0.0222%" height="15" fill="rgb(235,201,12)" fg:x="325929" fg:w="109"/><text x="66.6019%" y="687.50"></text></g><g><title>_raw_spin_lock (89 samples, 0.02%)</title><rect x="66.3559%" y="661" width="0.0181%" height="15" fill="rgb(233,161,9)" fg:x="325949" fg:w="89"/><text x="66.6059%" y="671.50"></text></g><g><title>btrfs_new_inode (16,121 samples, 3.28%)</title><rect x="63.1219%" y="709" width="3.2819%" height="15" fill="rgb(241,207,41)" fg:x="310063" fg:w="16121"/><text x="63.3719%" y="719.50">btr..</text></g><g><title>write_extent_buffer (146 samples, 0.03%)</title><rect x="66.3741%" y="693" width="0.0297%" height="15" fill="rgb(212,69,46)" fg:x="326038" fg:w="146"/><text x="66.6241%" y="703.50"></text></g><g><title>btrfs_set_64 (68 samples, 0.01%)</title><rect x="66.4101%" y="709" width="0.0138%" height="15" fill="rgb(239,69,45)" fg:x="326215" fg:w="68"/><text x="66.6601%" y="719.50"></text></g><g><title>_raw_spin_lock (64 samples, 0.01%)</title><rect x="66.5355%" y="661" width="0.0130%" height="15" fill="rgb(242,117,48)" fg:x="326831" fg:w="64"/><text x="66.7855%" y="671.50"></text></g><g><title>mutex_lock (73 samples, 0.01%)</title><rect x="66.5487%" y="661" width="0.0149%" height="15" fill="rgb(228,41,36)" fg:x="326896" fg:w="73"/><text x="66.7987%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (397 samples, 0.08%)</title><rect x="66.4944%" y="677" width="0.0808%" height="15" fill="rgb(212,3,32)" fg:x="326629" fg:w="397"/><text x="66.7444%" y="687.50"></text></g><g><title>mutex_unlock (57 samples, 0.01%)</title><rect x="66.5636%" y="661" width="0.0116%" height="15" fill="rgb(233,41,49)" fg:x="326969" fg:w="57"/><text x="66.8136%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (163 samples, 0.03%)</title><rect x="66.5752%" y="677" width="0.0332%" height="15" fill="rgb(252,170,49)" fg:x="327026" fg:w="163"/><text x="66.8252%" y="687.50"></text></g><g><title>_raw_spin_lock (135 samples, 0.03%)</title><rect x="66.5809%" y="661" width="0.0275%" height="15" fill="rgb(229,53,26)" fg:x="327054" fg:w="135"/><text x="66.8309%" y="671.50"></text></g><g><title>_raw_spin_lock (289 samples, 0.06%)</title><rect x="66.6273%" y="661" width="0.0588%" height="15" fill="rgb(217,157,12)" fg:x="327282" fg:w="289"/><text x="66.8773%" y="671.50"></text></g><g><title>__radix_tree_lookup (361 samples, 0.07%)</title><rect x="66.6892%" y="645" width="0.0735%" height="15" fill="rgb(227,17,9)" fg:x="327586" fg:w="361"/><text x="66.9392%" y="655.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="66.7627%" y="645" width="0.0106%" height="15" fill="rgb(218,84,12)" fg:x="327947" fg:w="52"/><text x="67.0127%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (432 samples, 0.09%)</title><rect x="66.6861%" y="661" width="0.0879%" height="15" fill="rgb(212,79,24)" fg:x="327571" fg:w="432"/><text x="66.9361%" y="671.50"></text></g><g><title>__slab_alloc (193 samples, 0.04%)</title><rect x="66.7973%" y="645" width="0.0393%" height="15" fill="rgb(217,222,37)" fg:x="328117" fg:w="193"/><text x="67.0473%" y="655.50"></text></g><g><title>___slab_alloc (189 samples, 0.04%)</title><rect x="66.7981%" y="629" width="0.0385%" height="15" fill="rgb(246,208,8)" fg:x="328121" fg:w="189"/><text x="67.0481%" y="639.50"></text></g><g><title>get_partial_node.part.0 (71 samples, 0.01%)</title><rect x="66.8221%" y="613" width="0.0145%" height="15" fill="rgb(244,133,10)" fg:x="328239" fg:w="71"/><text x="67.0721%" y="623.50"></text></g><g><title>memset_erms (82 samples, 0.02%)</title><rect x="66.8411%" y="645" width="0.0167%" height="15" fill="rgb(209,219,41)" fg:x="328332" fg:w="82"/><text x="67.0911%" y="655.50"></text></g><g><title>kmem_cache_alloc (442 samples, 0.09%)</title><rect x="66.7741%" y="661" width="0.0900%" height="15" fill="rgb(253,175,45)" fg:x="328003" fg:w="442"/><text x="67.0241%" y="671.50"></text></g><g><title>radix_tree_insert (150 samples, 0.03%)</title><rect x="66.8641%" y="661" width="0.0305%" height="15" fill="rgb(235,100,37)" fg:x="328445" fg:w="150"/><text x="67.1141%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (1,410 samples, 0.29%)</title><rect x="66.6084%" y="677" width="0.2870%" height="15" fill="rgb(225,87,19)" fg:x="327189" fg:w="1410"/><text x="66.8584%" y="687.50"></text></g><g><title>inode_get_bytes (94 samples, 0.02%)</title><rect x="66.9046%" y="661" width="0.0191%" height="15" fill="rgb(217,152,17)" fg:x="328644" fg:w="94"/><text x="67.1546%" y="671.50"></text></g><g><title>_raw_spin_lock (83 samples, 0.02%)</title><rect x="66.9068%" y="645" width="0.0169%" height="15" fill="rgb(235,72,13)" fg:x="328655" fg:w="83"/><text x="67.1568%" y="655.50"></text></g><g><title>fill_stack_inode_item (176 samples, 0.04%)</title><rect x="66.8954%" y="677" width="0.0358%" height="15" fill="rgb(233,140,18)" fg:x="328599" fg:w="176"/><text x="67.1454%" y="687.50"></text></g><g><title>mutex_lock (89 samples, 0.02%)</title><rect x="66.9312%" y="677" width="0.0181%" height="15" fill="rgb(207,212,28)" fg:x="328775" fg:w="89"/><text x="67.1812%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (2,474 samples, 0.50%)</title><rect x="66.4537%" y="693" width="0.5037%" height="15" fill="rgb(220,130,25)" fg:x="326429" fg:w="2474"/><text x="66.7037%" y="703.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="66.9630%" y="677" width="0.0110%" height="15" fill="rgb(205,55,34)" fg:x="328931" fg:w="54"/><text x="67.2130%" y="687.50"></text></g><g><title>btrfs_update_inode (2,769 samples, 0.56%)</title><rect x="66.4370%" y="709" width="0.5637%" height="15" fill="rgb(237,54,35)" fg:x="326347" fg:w="2769"/><text x="66.6870%" y="719.50"></text></g><g><title>btrfs_update_root_times (213 samples, 0.04%)</title><rect x="66.9573%" y="693" width="0.0434%" height="15" fill="rgb(208,67,23)" fg:x="328903" fg:w="213"/><text x="67.2073%" y="703.50"></text></g><g><title>ktime_get_real_ts64 (131 samples, 0.03%)</title><rect x="66.9740%" y="677" width="0.0267%" height="15" fill="rgb(206,207,50)" fg:x="328985" fg:w="131"/><text x="67.2240%" y="687.50"></text></g><g><title>read_tsc (82 samples, 0.02%)</title><rect x="66.9840%" y="661" width="0.0167%" height="15" fill="rgb(213,211,42)" fg:x="329034" fg:w="82"/><text x="67.2340%" y="671.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="67.0273%" y="677" width="0.0114%" height="15" fill="rgb(252,197,50)" fg:x="329247" fg:w="56"/><text x="67.2773%" y="687.50"></text></g><g><title>__d_instantiate (123 samples, 0.03%)</title><rect x="67.0170%" y="693" width="0.0250%" height="15" fill="rgb(251,211,41)" fg:x="329196" fg:w="123"/><text x="67.2670%" y="703.50"></text></g><g><title>_raw_spin_lock (52 samples, 0.01%)</title><rect x="67.0420%" y="693" width="0.0106%" height="15" fill="rgb(229,211,5)" fg:x="329319" fg:w="52"/><text x="67.2920%" y="703.50"></text></g><g><title>d_instantiate_new (274 samples, 0.06%)</title><rect x="67.0027%" y="709" width="0.0558%" height="15" fill="rgb(239,36,31)" fg:x="329126" fg:w="274"/><text x="67.2527%" y="719.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="67.0880%" y="693" width="0.0124%" height="15" fill="rgb(248,67,31)" fg:x="329545" fg:w="61"/><text x="67.3380%" y="703.50"></text></g><g><title>kmem_cache_alloc (245 samples, 0.05%)</title><rect x="67.0617%" y="709" width="0.0499%" height="15" fill="rgb(249,55,44)" fg:x="329416" fg:w="245"/><text x="67.3117%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (55 samples, 0.01%)</title><rect x="67.1004%" y="693" width="0.0112%" height="15" fill="rgb(216,82,12)" fg:x="329606" fg:w="55"/><text x="67.3504%" y="703.50"></text></g><g><title>kmem_cache_free (122 samples, 0.02%)</title><rect x="67.1116%" y="709" width="0.0248%" height="15" fill="rgb(242,174,1)" fg:x="329661" fg:w="122"/><text x="67.3616%" y="719.50"></text></g><g><title>security_inode_init_security (96 samples, 0.02%)</title><rect x="67.1365%" y="709" width="0.0195%" height="15" fill="rgb(208,120,29)" fg:x="329783" fg:w="96"/><text x="67.3865%" y="719.50"></text></g><g><title>_raw_spin_lock (79 samples, 0.02%)</title><rect x="67.2450%" y="677" width="0.0161%" height="15" fill="rgb(221,105,43)" fg:x="330316" fg:w="79"/><text x="67.4950%" y="687.50"></text></g><g><title>_raw_spin_lock (99 samples, 0.02%)</title><rect x="67.2843%" y="645" width="0.0202%" height="15" fill="rgb(234,124,22)" fg:x="330509" fg:w="99"/><text x="67.5343%" y="655.50"></text></g><g><title>btrfs_get_alloc_profile (106 samples, 0.02%)</title><rect x="67.3563%" y="629" width="0.0216%" height="15" fill="rgb(212,23,30)" fg:x="330863" fg:w="106"/><text x="67.6063%" y="639.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (634 samples, 0.13%)</title><rect x="67.3044%" y="645" width="0.1291%" height="15" fill="rgb(219,122,53)" fg:x="330608" fg:w="634"/><text x="67.5544%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (273 samples, 0.06%)</title><rect x="67.3779%" y="629" width="0.0556%" height="15" fill="rgb(248,84,24)" fg:x="330969" fg:w="273"/><text x="67.6279%" y="639.50"></text></g><g><title>_raw_spin_lock (103 samples, 0.02%)</title><rect x="67.4125%" y="613" width="0.0210%" height="15" fill="rgb(245,115,18)" fg:x="331139" fg:w="103"/><text x="67.6625%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (1,019 samples, 0.21%)</title><rect x="67.2413%" y="693" width="0.2074%" height="15" fill="rgb(227,176,51)" fg:x="330298" fg:w="1019"/><text x="67.4913%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (922 samples, 0.19%)</title><rect x="67.2610%" y="677" width="0.1877%" height="15" fill="rgb(229,63,42)" fg:x="330395" fg:w="922"/><text x="67.5110%" y="687.50"></text></g><g><title>__reserve_bytes (889 samples, 0.18%)</title><rect x="67.2678%" y="661" width="0.1810%" height="15" fill="rgb(247,202,24)" fg:x="330428" fg:w="889"/><text x="67.5178%" y="671.50"></text></g><g><title>calc_available_free_space.isra.0 (75 samples, 0.02%)</title><rect x="67.4335%" y="645" width="0.0153%" height="15" fill="rgb(244,173,20)" fg:x="331242" fg:w="75"/><text x="67.6835%" y="655.50"></text></g><g><title>_raw_spin_lock (96 samples, 0.02%)</title><rect x="67.4891%" y="677" width="0.0195%" height="15" fill="rgb(242,81,47)" fg:x="331515" fg:w="96"/><text x="67.7391%" y="687.50"></text></g><g><title>join_transaction (278 samples, 0.06%)</title><rect x="67.4522%" y="693" width="0.0566%" height="15" fill="rgb(231,185,54)" fg:x="331334" fg:w="278"/><text x="67.7022%" y="703.50"></text></g><g><title>kmem_cache_alloc (202 samples, 0.04%)</title><rect x="67.5088%" y="693" width="0.0411%" height="15" fill="rgb(243,55,32)" fg:x="331612" fg:w="202"/><text x="67.7588%" y="703.50"></text></g><g><title>start_transaction (2,055 samples, 0.42%)</title><rect x="67.1560%" y="709" width="0.4184%" height="15" fill="rgb(208,167,19)" fg:x="329879" fg:w="2055"/><text x="67.4060%" y="719.50"></text></g><g><title>wait_current_trans (120 samples, 0.02%)</title><rect x="67.5499%" y="693" width="0.0244%" height="15" fill="rgb(231,72,35)" fg:x="331814" fg:w="120"/><text x="67.7999%" y="703.50"></text></g><g><title>_raw_spin_lock (88 samples, 0.02%)</title><rect x="67.5564%" y="677" width="0.0179%" height="15" fill="rgb(250,173,51)" fg:x="331846" fg:w="88"/><text x="67.8064%" y="687.50"></text></g><g><title>strlen (732 samples, 0.15%)</title><rect x="67.5744%" y="709" width="0.1490%" height="15" fill="rgb(209,5,22)" fg:x="331934" fg:w="732"/><text x="67.8244%" y="719.50"></text></g><g><title>btrfs_symlink (52,703 samples, 10.73%)</title><rect x="57.0317%" y="725" width="10.7292%" height="15" fill="rgb(250,174,19)" fg:x="280147" fg:w="52703"/><text x="57.2817%" y="735.50">btrfs_symlink</text></g><g><title>write_extent_buffer (184 samples, 0.04%)</title><rect x="67.7234%" y="709" width="0.0375%" height="15" fill="rgb(217,3,49)" fg:x="332666" fg:w="184"/><text x="67.9734%" y="719.50"></text></g><g><title>inode_permission.part.0 (97 samples, 0.02%)</title><rect x="67.7708%" y="725" width="0.0197%" height="15" fill="rgb(218,225,5)" fg:x="332899" fg:w="97"/><text x="68.0208%" y="735.50"></text></g><g><title>do_symlinkat (72,706 samples, 14.80%)</title><rect x="53.0023%" y="757" width="14.8013%" height="15" fill="rgb(236,89,11)" fg:x="260354" fg:w="72706"/><text x="53.2523%" y="767.50">do_symlinkat</text></g><g><title>vfs_symlink (52,980 samples, 10.79%)</title><rect x="57.0180%" y="741" width="10.7855%" height="15" fill="rgb(206,33,28)" fg:x="280080" fg:w="52980"/><text x="57.2680%" y="751.50">vfs_symlink</text></g><g><title>do_syscall_64 (72,770 samples, 14.81%)</title><rect x="52.9964%" y="773" width="14.8143%" height="15" fill="rgb(241,56,42)" fg:x="260325" fg:w="72770"/><text x="53.2464%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (72,852 samples, 14.83%)</title><rect x="52.9888%" y="789" width="14.8310%" height="15" fill="rgb(222,44,11)" fg:x="260288" fg:w="72852"/><text x="53.2388%" y="799.50">entry_SYSCALL_64_after_..</text></g><g><title>syscall_return_via_sysret (66 samples, 0.01%)</title><rect x="67.8286%" y="789" width="0.0134%" height="15" fill="rgb(234,111,20)" fg:x="333183" fg:w="66"/><text x="68.0786%" y="799.50"></text></g><g><title>__symlink (73,295 samples, 14.92%)</title><rect x="52.9216%" y="805" width="14.9212%" height="15" fill="rgb(237,77,6)" fg:x="259958" fg:w="73295"/><text x="53.1716%" y="815.50">__symlink</text></g><g><title>_int_free (142 samples, 0.03%)</title><rect x="67.8429%" y="805" width="0.0289%" height="15" fill="rgb(235,111,23)" fg:x="333253" fg:w="142"/><text x="68.0929%" y="815.50"></text></g><g><title>jni_ExceptionOccurred (92 samples, 0.02%)</title><rect x="67.8801%" y="805" width="0.0187%" height="15" fill="rgb(251,135,29)" fg:x="333436" fg:w="92"/><text x="68.1301%" y="815.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (169 samples, 0.03%)</title><rect x="67.9296%" y="789" width="0.0344%" height="15" fill="rgb(217,57,1)" fg:x="333679" fg:w="169"/><text x="68.1796%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (147 samples, 0.03%)</title><rect x="67.9640%" y="789" width="0.0299%" height="15" fill="rgb(249,119,31)" fg:x="333848" fg:w="147"/><text x="68.2140%" y="799.50"></text></g><g><title>[libc-2.31.so] (84 samples, 0.02%)</title><rect x="67.9939%" y="789" width="0.0171%" height="15" fill="rgb(233,164,33)" fg:x="333995" fg:w="84"/><text x="68.2439%" y="799.50"></text></g><g><title>check_bounds (96 samples, 0.02%)</title><rect x="68.0110%" y="789" width="0.0195%" height="15" fill="rgb(250,217,43)" fg:x="334079" fg:w="96"/><text x="68.2610%" y="799.50"></text></g><g><title>jni_GetByteArrayRegion (686 samples, 0.14%)</title><rect x="67.8989%" y="805" width="0.1397%" height="15" fill="rgb(232,154,50)" fg:x="333528" fg:w="686"/><text x="68.1489%" y="815.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (163 samples, 0.03%)</title><rect x="68.0721%" y="773" width="0.0332%" height="15" fill="rgb(227,190,8)" fg:x="334379" fg:w="163"/><text x="68.3221%" y="783.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (138 samples, 0.03%)</title><rect x="68.0772%" y="757" width="0.0281%" height="15" fill="rgb(209,217,32)" fg:x="334404" fg:w="138"/><text x="68.3272%" y="767.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (208 samples, 0.04%)</title><rect x="68.0635%" y="789" width="0.0423%" height="15" fill="rgb(243,203,50)" fg:x="334337" fg:w="208"/><text x="68.3135%" y="799.50"></text></g><g><title>HandleMark::pop_and_restore (103 samples, 0.02%)</title><rect x="68.1059%" y="789" width="0.0210%" height="15" fill="rgb(232,152,27)" fg:x="334545" fg:w="103"/><text x="68.3559%" y="799.50"></text></g><g><title>JNIHandles::make_local (109 samples, 0.02%)</title><rect x="68.1269%" y="789" width="0.0222%" height="15" fill="rgb(240,34,29)" fg:x="334648" fg:w="109"/><text x="68.3769%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (144 samples, 0.03%)</title><rect x="68.1505%" y="789" width="0.0293%" height="15" fill="rgb(215,185,52)" fg:x="334764" fg:w="144"/><text x="68.4005%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (145 samples, 0.03%)</title><rect x="68.1798%" y="789" width="0.0295%" height="15" fill="rgb(240,89,49)" fg:x="334908" fg:w="145"/><text x="68.4298%" y="799.50"></text></g><g><title>jni_GetObjectField (838 samples, 0.17%)</title><rect x="68.0389%" y="805" width="0.1706%" height="15" fill="rgb(225,12,52)" fg:x="334216" fg:w="838"/><text x="68.2889%" y="815.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (125 samples, 0.03%)</title><rect x="68.2396%" y="789" width="0.0254%" height="15" fill="rgb(239,128,45)" fg:x="335202" fg:w="125"/><text x="68.4896%" y="799.50"></text></g><g><title>jni_GetStringLength (473 samples, 0.10%)</title><rect x="68.2095%" y="805" width="0.0963%" height="15" fill="rgb(211,78,47)" fg:x="335054" fg:w="473"/><text x="68.4595%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (200 samples, 0.04%)</title><rect x="68.2651%" y="789" width="0.0407%" height="15" fill="rgb(232,31,21)" fg:x="335327" fg:w="200"/><text x="68.5151%" y="799.50"></text></g><g><title>jni_NewObjectV (126 samples, 0.03%)</title><rect x="68.3060%" y="805" width="0.0257%" height="15" fill="rgb(222,168,14)" fg:x="335528" fg:w="126"/><text x="68.5560%" y="815.50"></text></g><g><title>jni_invoke_nonstatic (59 samples, 0.01%)</title><rect x="68.3196%" y="789" width="0.0120%" height="15" fill="rgb(209,128,24)" fg:x="335595" fg:w="59"/><text x="68.5696%" y="799.50"></text></g><g><title>operator delete@plt (85 samples, 0.02%)</title><rect x="68.3392%" y="805" width="0.0173%" height="15" fill="rgb(249,35,13)" fg:x="335691" fg:w="85"/><text x="68.5892%" y="815.50"></text></g><g><title>__GI___libc_malloc (129 samples, 0.03%)</title><rect x="68.3640%" y="789" width="0.0263%" height="15" fill="rgb(218,7,2)" fg:x="335813" fg:w="129"/><text x="68.6140%" y="799.50"></text></g><g><title>tcache_get (51 samples, 0.01%)</title><rect x="68.3799%" y="773" width="0.0104%" height="15" fill="rgb(238,107,27)" fg:x="335891" fg:w="51"/><text x="68.6299%" y="783.50"></text></g><g><title>operator new (170 samples, 0.03%)</title><rect x="68.3632%" y="805" width="0.0346%" height="15" fill="rgb(217,88,38)" fg:x="335809" fg:w="170"/><text x="68.6132%" y="815.50"></text></g><g><title>operator new@plt (71 samples, 0.01%)</title><rect x="68.3978%" y="805" width="0.0145%" height="15" fill="rgb(230,207,0)" fg:x="335979" fg:w="71"/><text x="68.6478%" y="815.50"></text></g><g><title>_int_malloc (113 samples, 0.02%)</title><rect x="68.4385%" y="757" width="0.0230%" height="15" fill="rgb(249,64,54)" fg:x="336179" fg:w="113"/><text x="68.6885%" y="767.50"></text></g><g><title>__GI___libc_malloc (234 samples, 0.05%)</title><rect x="68.4190%" y="773" width="0.0476%" height="15" fill="rgb(231,7,11)" fg:x="336083" fg:w="234"/><text x="68.6690%" y="783.50"></text></g><g><title>operator new (242 samples, 0.05%)</title><rect x="68.4184%" y="789" width="0.0493%" height="15" fill="rgb(205,149,21)" fg:x="336080" fg:w="242"/><text x="68.6684%" y="799.50"></text></g><g><title>[libunix_jni.so] (194,196 samples, 39.53%)</title><rect x="28.9365%" y="821" width="39.5340%" height="15" fill="rgb(215,126,34)" fg:x="142140" fg:w="194196"/><text x="29.1865%" y="831.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (262 samples, 0.05%)</title><rect x="68.4172%" y="805" width="0.0533%" height="15" fill="rgb(241,132,45)" fg:x="336074" fg:w="262"/><text x="68.6672%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (64 samples, 0.01%)</title><rect x="79.3424%" y="773" width="0.0130%" height="15" fill="rgb(252,69,32)" fg:x="389740" fg:w="64"/><text x="79.5924%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (97 samples, 0.02%)</title><rect x="79.3358%" y="805" width="0.0197%" height="15" fill="rgb(232,204,19)" fg:x="389708" fg:w="97"/><text x="79.5858%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (66 samples, 0.01%)</title><rect x="79.3422%" y="789" width="0.0134%" height="15" fill="rgb(249,15,47)" fg:x="389739" fg:w="66"/><text x="79.5922%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (56 samples, 0.01%)</title><rect x="79.3664%" y="773" width="0.0114%" height="15" fill="rgb(209,227,23)" fg:x="389858" fg:w="56"/><text x="79.6164%" y="783.50"></text></g><g><title>MemAllocator::allocate (54 samples, 0.01%)</title><rect x="79.3668%" y="757" width="0.0110%" height="15" fill="rgb(248,92,24)" fg:x="389860" fg:w="54"/><text x="79.6168%" y="767.50"></text></g><g><title>InstanceKlass::allocate_objArray (97 samples, 0.02%)</title><rect x="79.3619%" y="789" width="0.0197%" height="15" fill="rgb(247,59,2)" fg:x="389836" fg:w="97"/><text x="79.6119%" y="799.50"></text></g><g><title>InterpreterRuntime::anewarray (133 samples, 0.03%)</title><rect x="79.3556%" y="805" width="0.0271%" height="15" fill="rgb(221,30,5)" fg:x="389805" fg:w="133"/><text x="79.6056%" y="815.50"></text></g><g><title>CompileBroker::compile_method (50 samples, 0.01%)</title><rect x="79.4083%" y="709" width="0.0102%" height="15" fill="rgb(208,108,53)" fg:x="390064" fg:w="50"/><text x="79.6583%" y="719.50"></text></g><g><title>TieredThresholdPolicy::event (135 samples, 0.03%)</title><rect x="79.3912%" y="773" width="0.0275%" height="15" fill="rgb(211,183,26)" fg:x="389980" fg:w="135"/><text x="79.6412%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (117 samples, 0.02%)</title><rect x="79.3949%" y="757" width="0.0238%" height="15" fill="rgb(232,132,4)" fg:x="389998" fg:w="117"/><text x="79.6449%" y="767.50"></text></g><g><title>TieredThresholdPolicy::compile (52 samples, 0.01%)</title><rect x="79.4081%" y="741" width="0.0106%" height="15" fill="rgb(253,128,37)" fg:x="390063" fg:w="52"/><text x="79.6581%" y="751.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (52 samples, 0.01%)</title><rect x="79.4081%" y="725" width="0.0106%" height="15" fill="rgb(221,58,24)" fg:x="390063" fg:w="52"/><text x="79.6581%" y="735.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (158 samples, 0.03%)</title><rect x="79.3871%" y="805" width="0.0322%" height="15" fill="rgb(230,54,45)" fg:x="389960" fg:w="158"/><text x="79.6371%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (158 samples, 0.03%)</title><rect x="79.3871%" y="789" width="0.0322%" height="15" fill="rgb(254,21,18)" fg:x="389960" fg:w="158"/><text x="79.6371%" y="799.50"></text></g><g><title>InterpreterRuntime::ldc (94 samples, 0.02%)</title><rect x="79.4193%" y="805" width="0.0191%" height="15" fill="rgb(221,108,0)" fg:x="390118" fg:w="94"/><text x="79.6693%" y="815.50"></text></g><g><title>LinkResolver::resolve_static_call (57 samples, 0.01%)</title><rect x="79.4991%" y="757" width="0.0116%" height="15" fill="rgb(206,95,1)" fg:x="390510" fg:w="57"/><text x="79.7491%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (193 samples, 0.04%)</title><rect x="79.4731%" y="773" width="0.0393%" height="15" fill="rgb(237,52,5)" fg:x="390382" fg:w="193"/><text x="79.7231%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (278 samples, 0.06%)</title><rect x="79.4592%" y="789" width="0.0566%" height="15" fill="rgb(218,150,34)" fg:x="390314" fg:w="278"/><text x="79.7092%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (349 samples, 0.07%)</title><rect x="79.4527%" y="805" width="0.0710%" height="15" fill="rgb(235,194,28)" fg:x="390282" fg:w="349"/><text x="79.7027%" y="815.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (63 samples, 0.01%)</title><rect x="79.5620%" y="789" width="0.0128%" height="15" fill="rgb(245,92,18)" fg:x="390819" fg:w="63"/><text x="79.8120%" y="799.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (52 samples, 0.01%)</title><rect x="79.5643%" y="773" width="0.0106%" height="15" fill="rgb(253,203,53)" fg:x="390830" fg:w="52"/><text x="79.8143%" y="783.50"></text></g><g><title>JVM_IHashCode (78 samples, 0.02%)</title><rect x="79.5614%" y="805" width="0.0159%" height="15" fill="rgb(249,185,47)" fg:x="390816" fg:w="78"/><text x="79.8114%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (298 samples, 0.06%)</title><rect x="79.6129%" y="677" width="0.0607%" height="15" fill="rgb(252,194,52)" fg:x="391069" fg:w="298"/><text x="79.8629%" y="687.50"></text></g><g><title>SymbolTable::lookup_only (263 samples, 0.05%)</title><rect x="79.6200%" y="661" width="0.0535%" height="15" fill="rgb(210,53,36)" fg:x="391104" fg:w="263"/><text x="79.8700%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (305 samples, 0.06%)</title><rect x="79.6121%" y="693" width="0.0621%" height="15" fill="rgb(237,37,25)" fg:x="391065" fg:w="305"/><text x="79.8621%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (72 samples, 0.01%)</title><rect x="79.6764%" y="677" width="0.0147%" height="15" fill="rgb(242,116,27)" fg:x="391381" fg:w="72"/><text x="79.9264%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (74 samples, 0.02%)</title><rect x="79.6764%" y="693" width="0.0151%" height="15" fill="rgb(213,185,26)" fg:x="391381" fg:w="74"/><text x="79.9264%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (404 samples, 0.08%)</title><rect x="79.6105%" y="725" width="0.0822%" height="15" fill="rgb(225,204,8)" fg:x="391057" fg:w="404"/><text x="79.8605%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (403 samples, 0.08%)</title><rect x="79.6107%" y="709" width="0.0820%" height="15" fill="rgb(254,111,37)" fg:x="391058" fg:w="403"/><text x="79.8607%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (61 samples, 0.01%)</title><rect x="79.6929%" y="709" width="0.0124%" height="15" fill="rgb(242,35,9)" fg:x="391462" fg:w="61"/><text x="79.9429%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (67 samples, 0.01%)</title><rect x="79.6927%" y="725" width="0.0136%" height="15" fill="rgb(232,138,49)" fg:x="391461" fg:w="67"/><text x="79.9427%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (494 samples, 0.10%)</title><rect x="79.6105%" y="741" width="0.1006%" height="15" fill="rgb(247,56,4)" fg:x="391057" fg:w="494"/><text x="79.8605%" y="751.50"></text></g><g><title>SystemDictionary::resolve_from_stream (516 samples, 0.11%)</title><rect x="79.6105%" y="757" width="0.1050%" height="15" fill="rgb(226,179,17)" fg:x="391057" fg:w="516"/><text x="79.8605%" y="767.50"></text></g><g><title>JVM_DefineClassWithSource (522 samples, 0.11%)</title><rect x="79.6095%" y="789" width="0.1063%" height="15" fill="rgb(216,163,45)" fg:x="391052" fg:w="522"/><text x="79.8595%" y="799.50"></text></g><g><title>jvm_define_class_common (522 samples, 0.11%)</title><rect x="79.6095%" y="773" width="0.1063%" height="15" fill="rgb(211,157,3)" fg:x="391052" fg:w="522"/><text x="79.8595%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (538 samples, 0.11%)</title><rect x="79.6095%" y="805" width="0.1095%" height="15" fill="rgb(234,44,20)" fg:x="391052" fg:w="538"/><text x="79.8595%" y="815.50"></text></g><g><title>calculate_sigpending (60 samples, 0.01%)</title><rect x="79.7428%" y="741" width="0.0122%" height="15" fill="rgb(254,138,23)" fg:x="391707" fg:w="60"/><text x="79.9928%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (740 samples, 0.15%)</title><rect x="79.7623%" y="709" width="0.1506%" height="15" fill="rgb(206,119,39)" fg:x="391803" fg:w="740"/><text x="80.0123%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (739 samples, 0.15%)</title><rect x="79.7625%" y="693" width="0.1504%" height="15" fill="rgb(231,105,52)" fg:x="391804" fg:w="739"/><text x="80.0125%" y="703.50"></text></g><g><title>native_write_msr (738 samples, 0.15%)</title><rect x="79.7628%" y="677" width="0.1502%" height="15" fill="rgb(250,20,5)" fg:x="391805" fg:w="738"/><text x="80.0128%" y="687.50"></text></g><g><title>schedule_tail (794 samples, 0.16%)</title><rect x="79.7550%" y="741" width="0.1616%" height="15" fill="rgb(215,198,30)" fg:x="391767" fg:w="794"/><text x="80.0050%" y="751.50"></text></g><g><title>finish_task_switch (780 samples, 0.16%)</title><rect x="79.7579%" y="725" width="0.1588%" height="15" fill="rgb(246,142,8)" fg:x="391781" fg:w="780"/><text x="80.0079%" y="735.50"></text></g><g><title>__libc_vfork (883 samples, 0.18%)</title><rect x="79.7371%" y="773" width="0.1798%" height="15" fill="rgb(243,26,38)" fg:x="391679" fg:w="883"/><text x="79.9871%" y="783.50"></text></g><g><title>ret_from_fork (855 samples, 0.17%)</title><rect x="79.7428%" y="757" width="0.1741%" height="15" fill="rgb(205,133,28)" fg:x="391707" fg:w="855"/><text x="79.9928%" y="767.50"></text></g><g><title>apparmor_bprm_creds_for_exec (55 samples, 0.01%)</title><rect x="79.9395%" y="629" width="0.0112%" height="15" fill="rgb(212,34,0)" fg:x="392673" fg:w="55"/><text x="80.1895%" y="639.50"></text></g><g><title>security_bprm_creds_for_exec (56 samples, 0.01%)</title><rect x="79.9395%" y="645" width="0.0114%" height="15" fill="rgb(251,226,22)" fg:x="392673" fg:w="56"/><text x="80.1895%" y="655.50"></text></g><g><title>bprm_execve (143 samples, 0.03%)</title><rect x="79.9219%" y="661" width="0.0291%" height="15" fill="rgb(252,119,9)" fg:x="392587" fg:w="143"/><text x="80.1719%" y="671.50"></text></g><g><title>JDK_execvpe (205 samples, 0.04%)</title><rect x="79.9171%" y="757" width="0.0417%" height="15" fill="rgb(213,150,50)" fg:x="392563" fg:w="205"/><text x="80.1671%" y="767.50"></text></g><g><title>__GI_execve (203 samples, 0.04%)</title><rect x="79.9175%" y="741" width="0.0413%" height="15" fill="rgb(212,24,39)" fg:x="392565" fg:w="203"/><text x="80.1675%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (203 samples, 0.04%)</title><rect x="79.9175%" y="725" width="0.0413%" height="15" fill="rgb(213,46,39)" fg:x="392565" fg:w="203"/><text x="80.1675%" y="735.50"></text></g><g><title>do_syscall_64 (203 samples, 0.04%)</title><rect x="79.9175%" y="709" width="0.0413%" height="15" fill="rgb(239,106,12)" fg:x="392565" fg:w="203"/><text x="80.1675%" y="719.50"></text></g><g><title>__x64_sys_execve (203 samples, 0.04%)</title><rect x="79.9175%" y="693" width="0.0413%" height="15" fill="rgb(249,229,21)" fg:x="392565" fg:w="203"/><text x="80.1675%" y="703.50"></text></g><g><title>do_execveat_common (203 samples, 0.04%)</title><rect x="79.9175%" y="677" width="0.0413%" height="15" fill="rgb(212,158,3)" fg:x="392565" fg:w="203"/><text x="80.1675%" y="687.50"></text></g><g><title>__GI___open64_nocancel (72 samples, 0.01%)</title><rect x="79.9708%" y="725" width="0.0147%" height="15" fill="rgb(253,26,48)" fg:x="392827" fg:w="72"/><text x="80.2208%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.01%)</title><rect x="79.9712%" y="709" width="0.0143%" height="15" fill="rgb(238,178,20)" fg:x="392829" fg:w="70"/><text x="80.2212%" y="719.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="79.9712%" y="693" width="0.0143%" height="15" fill="rgb(208,86,15)" fg:x="392829" fg:w="70"/><text x="80.2212%" y="703.50"></text></g><g><title>__x64_sys_openat (70 samples, 0.01%)</title><rect x="79.9712%" y="677" width="0.0143%" height="15" fill="rgb(239,42,53)" fg:x="392829" fg:w="70"/><text x="80.2212%" y="687.50"></text></g><g><title>do_sys_openat2 (68 samples, 0.01%)</title><rect x="79.9716%" y="661" width="0.0138%" height="15" fill="rgb(245,226,8)" fg:x="392831" fg:w="68"/><text x="80.2216%" y="671.50"></text></g><g><title>__opendir (80 samples, 0.02%)</title><rect x="79.9708%" y="741" width="0.0163%" height="15" fill="rgb(216,176,32)" fg:x="392827" fg:w="80"/><text x="80.2208%" y="751.50"></text></g><g><title>closeDescriptors (126 samples, 0.03%)</title><rect x="79.9618%" y="757" width="0.0257%" height="15" fill="rgb(231,186,21)" fg:x="392783" fg:w="126"/><text x="80.2118%" y="767.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,272 samples, 0.26%)</title><rect x="79.7332%" y="805" width="0.2590%" height="15" fill="rgb(205,95,49)" fg:x="391660" fg:w="1272"/><text x="79.9832%" y="815.50"></text></g><g><title>vforkChild (1,257 samples, 0.26%)</title><rect x="79.7363%" y="789" width="0.2559%" height="15" fill="rgb(217,145,8)" fg:x="391675" fg:w="1257"/><text x="79.9863%" y="799.50"></text></g><g><title>childProcess (370 samples, 0.08%)</title><rect x="79.9169%" y="773" width="0.0753%" height="15" fill="rgb(239,144,48)" fg:x="392562" fg:w="370"/><text x="80.1669%" y="783.50"></text></g><g><title>OptoRuntime::new_array_C (120 samples, 0.02%)</title><rect x="79.9967%" y="805" width="0.0244%" height="15" fill="rgb(214,189,23)" fg:x="392954" fg:w="120"/><text x="80.2467%" y="815.50"></text></g><g><title>TypeArrayKlass::allocate_common (82 samples, 0.02%)</title><rect x="80.0044%" y="789" width="0.0167%" height="15" fill="rgb(229,157,17)" fg:x="392992" fg:w="82"/><text x="80.2544%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (81 samples, 0.02%)</title><rect x="80.0046%" y="773" width="0.0165%" height="15" fill="rgb(230,5,48)" fg:x="392993" fg:w="81"/><text x="80.2546%" y="783.50"></text></g><g><title>MemAllocator::allocate (81 samples, 0.02%)</title><rect x="80.0046%" y="757" width="0.0165%" height="15" fill="rgb(224,156,48)" fg:x="392993" fg:w="81"/><text x="80.2546%" y="767.50"></text></g><g><title>ObjArrayAllocator::initialize (67 samples, 0.01%)</title><rect x="80.0075%" y="741" width="0.0136%" height="15" fill="rgb(223,14,29)" fg:x="393007" fg:w="67"/><text x="80.2575%" y="751.50"></text></g><g><title>asm_exc_page_fault (64 samples, 0.01%)</title><rect x="80.0081%" y="725" width="0.0130%" height="15" fill="rgb(229,96,36)" fg:x="393010" fg:w="64"/><text x="80.2581%" y="735.50"></text></g><g><title>exc_page_fault (64 samples, 0.01%)</title><rect x="80.0081%" y="709" width="0.0130%" height="15" fill="rgb(231,102,53)" fg:x="393010" fg:w="64"/><text x="80.2581%" y="719.50"></text></g><g><title>do_user_addr_fault (64 samples, 0.01%)</title><rect x="80.0081%" y="693" width="0.0130%" height="15" fill="rgb(210,77,38)" fg:x="393010" fg:w="64"/><text x="80.2581%" y="703.50"></text></g><g><title>handle_mm_fault (64 samples, 0.01%)</title><rect x="80.0081%" y="677" width="0.0130%" height="15" fill="rgb(235,131,6)" fg:x="393010" fg:w="64"/><text x="80.2581%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (64 samples, 0.01%)</title><rect x="80.0081%" y="661" width="0.0130%" height="15" fill="rgb(252,55,38)" fg:x="393010" fg:w="64"/><text x="80.2581%" y="671.50"></text></g><g><title>ObjAllocator::initialize (84 samples, 0.02%)</title><rect x="80.0343%" y="741" width="0.0171%" height="15" fill="rgb(246,38,14)" fg:x="393139" fg:w="84"/><text x="80.2843%" y="751.50"></text></g><g><title>asm_exc_page_fault (84 samples, 0.02%)</title><rect x="80.0343%" y="725" width="0.0171%" height="15" fill="rgb(242,27,5)" fg:x="393139" fg:w="84"/><text x="80.2843%" y="735.50"></text></g><g><title>exc_page_fault (84 samples, 0.02%)</title><rect x="80.0343%" y="709" width="0.0171%" height="15" fill="rgb(228,65,35)" fg:x="393139" fg:w="84"/><text x="80.2843%" y="719.50"></text></g><g><title>do_user_addr_fault (84 samples, 0.02%)</title><rect x="80.0343%" y="693" width="0.0171%" height="15" fill="rgb(245,93,11)" fg:x="393139" fg:w="84"/><text x="80.2843%" y="703.50"></text></g><g><title>handle_mm_fault (84 samples, 0.02%)</title><rect x="80.0343%" y="677" width="0.0171%" height="15" fill="rgb(213,1,31)" fg:x="393139" fg:w="84"/><text x="80.2843%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (84 samples, 0.02%)</title><rect x="80.0343%" y="661" width="0.0171%" height="15" fill="rgb(237,205,14)" fg:x="393139" fg:w="84"/><text x="80.2843%" y="671.50"></text></g><g><title>OptoRuntime::new_instance_C (114 samples, 0.02%)</title><rect x="80.0286%" y="805" width="0.0232%" height="15" fill="rgb(232,118,45)" fg:x="393111" fg:w="114"/><text x="80.2786%" y="815.50"></text></g><g><title>InstanceKlass::allocate_instance (111 samples, 0.02%)</title><rect x="80.0292%" y="789" width="0.0226%" height="15" fill="rgb(218,5,6)" fg:x="393114" fg:w="111"/><text x="80.2792%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (110 samples, 0.02%)</title><rect x="80.0294%" y="773" width="0.0224%" height="15" fill="rgb(251,87,51)" fg:x="393115" fg:w="110"/><text x="80.2794%" y="783.50"></text></g><g><title>MemAllocator::allocate (110 samples, 0.02%)</title><rect x="80.0294%" y="757" width="0.0224%" height="15" fill="rgb(207,225,20)" fg:x="393115" fg:w="110"/><text x="80.2794%" y="767.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (64 samples, 0.01%)</title><rect x="80.0612%" y="773" width="0.0130%" height="15" fill="rgb(222,78,54)" fg:x="393271" fg:w="64"/><text x="80.3112%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (86 samples, 0.02%)</title><rect x="80.0569%" y="789" width="0.0175%" height="15" fill="rgb(232,85,16)" fg:x="393250" fg:w="86"/><text x="80.3069%" y="799.50"></text></g><g><title>Runtime1::counter_overflow (138 samples, 0.03%)</title><rect x="80.0520%" y="805" width="0.0281%" height="15" fill="rgb(244,25,33)" fg:x="393226" fg:w="138"/><text x="80.3020%" y="815.50"></text></g><g><title>Runtime1::monitorenter (96 samples, 0.02%)</title><rect x="80.0805%" y="805" width="0.0195%" height="15" fill="rgb(233,24,36)" fg:x="393366" fg:w="96"/><text x="80.3305%" y="815.50"></text></g><g><title>kernel_init_free_pages (53 samples, 0.01%)</title><rect x="80.1107%" y="581" width="0.0108%" height="15" fill="rgb(253,49,54)" fg:x="393514" fg:w="53"/><text x="80.3607%" y="591.50"></text></g><g><title>clear_page_erms (52 samples, 0.01%)</title><rect x="80.1109%" y="565" width="0.0106%" height="15" fill="rgb(245,12,22)" fg:x="393515" fg:w="52"/><text x="80.3609%" y="575.50"></text></g><g><title>alloc_pages_vma (56 samples, 0.01%)</title><rect x="80.1105%" y="645" width="0.0114%" height="15" fill="rgb(253,141,28)" fg:x="393513" fg:w="56"/><text x="80.3605%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (56 samples, 0.01%)</title><rect x="80.1105%" y="629" width="0.0114%" height="15" fill="rgb(225,207,27)" fg:x="393513" fg:w="56"/><text x="80.3605%" y="639.50"></text></g><g><title>get_page_from_freelist (56 samples, 0.01%)</title><rect x="80.1105%" y="613" width="0.0114%" height="15" fill="rgb(220,84,2)" fg:x="393513" fg:w="56"/><text x="80.3605%" y="623.50"></text></g><g><title>prep_new_page (55 samples, 0.01%)</title><rect x="80.1107%" y="597" width="0.0112%" height="15" fill="rgb(224,37,37)" fg:x="393514" fg:w="55"/><text x="80.3607%" y="607.50"></text></g><g><title>Runtime1::new_instance (106 samples, 0.02%)</title><rect x="80.1076%" y="805" width="0.0216%" height="15" fill="rgb(220,143,18)" fg:x="393499" fg:w="106"/><text x="80.3576%" y="815.50"></text></g><g><title>InstanceKlass::allocate_instance (103 samples, 0.02%)</title><rect x="80.1082%" y="789" width="0.0210%" height="15" fill="rgb(210,88,33)" fg:x="393502" fg:w="103"/><text x="80.3582%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (103 samples, 0.02%)</title><rect x="80.1082%" y="773" width="0.0210%" height="15" fill="rgb(219,87,51)" fg:x="393502" fg:w="103"/><text x="80.3582%" y="783.50"></text></g><g><title>MemAllocator::allocate (103 samples, 0.02%)</title><rect x="80.1082%" y="757" width="0.0210%" height="15" fill="rgb(211,7,35)" fg:x="393502" fg:w="103"/><text x="80.3582%" y="767.50"></text></g><g><title>ObjAllocator::initialize (94 samples, 0.02%)</title><rect x="80.1101%" y="741" width="0.0191%" height="15" fill="rgb(232,77,2)" fg:x="393511" fg:w="94"/><text x="80.3601%" y="751.50"></text></g><g><title>asm_exc_page_fault (94 samples, 0.02%)</title><rect x="80.1101%" y="725" width="0.0191%" height="15" fill="rgb(249,94,25)" fg:x="393511" fg:w="94"/><text x="80.3601%" y="735.50"></text></g><g><title>exc_page_fault (94 samples, 0.02%)</title><rect x="80.1101%" y="709" width="0.0191%" height="15" fill="rgb(215,112,2)" fg:x="393511" fg:w="94"/><text x="80.3601%" y="719.50"></text></g><g><title>do_user_addr_fault (94 samples, 0.02%)</title><rect x="80.1101%" y="693" width="0.0191%" height="15" fill="rgb(226,115,48)" fg:x="393511" fg:w="94"/><text x="80.3601%" y="703.50"></text></g><g><title>handle_mm_fault (94 samples, 0.02%)</title><rect x="80.1101%" y="677" width="0.0191%" height="15" fill="rgb(249,196,10)" fg:x="393511" fg:w="94"/><text x="80.3601%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (93 samples, 0.02%)</title><rect x="80.1103%" y="661" width="0.0189%" height="15" fill="rgb(237,109,14)" fg:x="393512" fg:w="93"/><text x="80.3603%" y="671.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (68 samples, 0.01%)</title><rect x="80.1548%" y="805" width="0.0138%" height="15" fill="rgb(217,103,53)" fg:x="393731" fg:w="68"/><text x="80.4048%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (67 samples, 0.01%)</title><rect x="80.1550%" y="789" width="0.0136%" height="15" fill="rgb(244,137,9)" fg:x="393732" fg:w="67"/><text x="80.4050%" y="799.50"></text></g><g><title>KlassFactory::create_from_stream (60 samples, 0.01%)</title><rect x="80.1565%" y="773" width="0.0122%" height="15" fill="rgb(227,201,3)" fg:x="393739" fg:w="60"/><text x="80.4065%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (267 samples, 0.05%)</title><rect x="80.1939%" y="581" width="0.0544%" height="15" fill="rgb(243,94,6)" fg:x="393923" fg:w="267"/><text x="80.4439%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (261 samples, 0.05%)</title><rect x="80.1951%" y="565" width="0.0531%" height="15" fill="rgb(235,118,5)" fg:x="393929" fg:w="261"/><text x="80.4451%" y="575.50"></text></g><g><title>native_write_msr (257 samples, 0.05%)</title><rect x="80.1960%" y="549" width="0.0523%" height="15" fill="rgb(247,10,30)" fg:x="393933" fg:w="257"/><text x="80.4460%" y="559.50"></text></g><g><title>finish_task_switch (289 samples, 0.06%)</title><rect x="80.1913%" y="597" width="0.0588%" height="15" fill="rgb(205,26,28)" fg:x="393910" fg:w="289"/><text x="80.4413%" y="607.50"></text></g><g><title>futex_wait_queue_me (319 samples, 0.06%)</title><rect x="80.1880%" y="645" width="0.0649%" height="15" fill="rgb(206,99,35)" fg:x="393894" fg:w="319"/><text x="80.4380%" y="655.50"></text></g><g><title>schedule (316 samples, 0.06%)</title><rect x="80.1886%" y="629" width="0.0643%" height="15" fill="rgb(238,130,40)" fg:x="393897" fg:w="316"/><text x="80.4386%" y="639.50"></text></g><g><title>__schedule (314 samples, 0.06%)</title><rect x="80.1890%" y="613" width="0.0639%" height="15" fill="rgb(224,126,31)" fg:x="393899" fg:w="314"/><text x="80.4390%" y="623.50"></text></g><g><title>do_syscall_64 (327 samples, 0.07%)</title><rect x="80.1868%" y="709" width="0.0666%" height="15" fill="rgb(254,105,17)" fg:x="393888" fg:w="327"/><text x="80.4368%" y="719.50"></text></g><g><title>__x64_sys_futex (326 samples, 0.07%)</title><rect x="80.1870%" y="693" width="0.0664%" height="15" fill="rgb(216,87,36)" fg:x="393889" fg:w="326"/><text x="80.4370%" y="703.50"></text></g><g><title>do_futex (325 samples, 0.07%)</title><rect x="80.1872%" y="677" width="0.0662%" height="15" fill="rgb(240,21,12)" fg:x="393890" fg:w="325"/><text x="80.4372%" y="687.50"></text></g><g><title>futex_wait (325 samples, 0.07%)</title><rect x="80.1872%" y="661" width="0.0662%" height="15" fill="rgb(245,192,34)" fg:x="393890" fg:w="325"/><text x="80.4372%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (330 samples, 0.07%)</title><rect x="80.1868%" y="725" width="0.0672%" height="15" fill="rgb(226,100,49)" fg:x="393888" fg:w="330"/><text x="80.4368%" y="735.50"></text></g><g><title>__pthread_cond_wait (340 samples, 0.07%)</title><rect x="80.1850%" y="773" width="0.0692%" height="15" fill="rgb(245,188,27)" fg:x="393879" fg:w="340"/><text x="80.4350%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (340 samples, 0.07%)</title><rect x="80.1850%" y="757" width="0.0692%" height="15" fill="rgb(212,170,8)" fg:x="393879" fg:w="340"/><text x="80.4350%" y="767.50"></text></g><g><title>futex_wait_cancelable (334 samples, 0.07%)</title><rect x="80.1862%" y="741" width="0.0680%" height="15" fill="rgb(217,113,29)" fg:x="393885" fg:w="334"/><text x="80.4362%" y="751.50"></text></g><g><title>Unsafe_Park (400 samples, 0.08%)</title><rect x="80.1746%" y="805" width="0.0814%" height="15" fill="rgb(237,30,3)" fg:x="393828" fg:w="400"/><text x="80.4246%" y="815.50"></text></g><g><title>Parker::park (399 samples, 0.08%)</title><rect x="80.1748%" y="789" width="0.0812%" height="15" fill="rgb(227,19,28)" fg:x="393829" fg:w="399"/><text x="80.4248%" y="799.50"></text></g><g><title>ttwu_do_activate (68 samples, 0.01%)</title><rect x="80.2825%" y="645" width="0.0138%" height="15" fill="rgb(239,172,45)" fg:x="394358" fg:w="68"/><text x="80.5325%" y="655.50"></text></g><g><title>do_syscall_64 (157 samples, 0.03%)</title><rect x="80.2666%" y="741" width="0.0320%" height="15" fill="rgb(254,55,39)" fg:x="394280" fg:w="157"/><text x="80.5166%" y="751.50"></text></g><g><title>__x64_sys_futex (156 samples, 0.03%)</title><rect x="80.2668%" y="725" width="0.0318%" height="15" fill="rgb(249,208,12)" fg:x="394281" fg:w="156"/><text x="80.5168%" y="735.50"></text></g><g><title>do_futex (152 samples, 0.03%)</title><rect x="80.2676%" y="709" width="0.0309%" height="15" fill="rgb(240,52,13)" fg:x="394285" fg:w="152"/><text x="80.5176%" y="719.50"></text></g><g><title>futex_wake (151 samples, 0.03%)</title><rect x="80.2678%" y="693" width="0.0307%" height="15" fill="rgb(252,149,13)" fg:x="394286" fg:w="151"/><text x="80.5178%" y="703.50"></text></g><g><title>wake_up_q (115 samples, 0.02%)</title><rect x="80.2752%" y="677" width="0.0234%" height="15" fill="rgb(232,81,48)" fg:x="394322" fg:w="115"/><text x="80.5252%" y="687.50"></text></g><g><title>try_to_wake_up (109 samples, 0.02%)</title><rect x="80.2764%" y="661" width="0.0222%" height="15" fill="rgb(222,144,2)" fg:x="394328" fg:w="109"/><text x="80.5264%" y="671.50"></text></g><g><title>__pthread_cond_signal (177 samples, 0.04%)</title><rect x="80.2650%" y="789" width="0.0360%" height="15" fill="rgb(216,81,32)" fg:x="394272" fg:w="177"/><text x="80.5150%" y="799.50"></text></g><g><title>futex_wake (172 samples, 0.04%)</title><rect x="80.2660%" y="773" width="0.0350%" height="15" fill="rgb(244,78,51)" fg:x="394277" fg:w="172"/><text x="80.5160%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (169 samples, 0.03%)</title><rect x="80.2666%" y="757" width="0.0344%" height="15" fill="rgb(217,66,21)" fg:x="394280" fg:w="169"/><text x="80.5166%" y="767.50"></text></g><g><title>Unsafe_Unpark (213 samples, 0.04%)</title><rect x="80.2583%" y="805" width="0.0434%" height="15" fill="rgb(247,101,42)" fg:x="394239" fg:w="213"/><text x="80.5083%" y="815.50"></text></g><g><title>__sysvec_apic_timer_interrupt (55 samples, 0.01%)</title><rect x="80.3193%" y="773" width="0.0112%" height="15" fill="rgb(227,81,39)" fg:x="394539" fg:w="55"/><text x="80.5693%" y="783.50"></text></g><g><title>hrtimer_interrupt (55 samples, 0.01%)</title><rect x="80.3193%" y="757" width="0.0112%" height="15" fill="rgb(220,223,44)" fg:x="394539" fg:w="55"/><text x="80.5693%" y="767.50"></text></g><g><title>rcu_core (54 samples, 0.01%)</title><rect x="80.3309%" y="709" width="0.0110%" height="15" fill="rgb(205,218,2)" fg:x="394596" fg:w="54"/><text x="80.5809%" y="719.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (127 samples, 0.03%)</title><rect x="80.3185%" y="805" width="0.0259%" height="15" fill="rgb(212,207,28)" fg:x="394535" fg:w="127"/><text x="80.5685%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (123 samples, 0.03%)</title><rect x="80.3193%" y="789" width="0.0250%" height="15" fill="rgb(224,12,41)" fg:x="394539" fg:w="123"/><text x="80.5693%" y="799.50"></text></g><g><title>irq_exit_rcu (68 samples, 0.01%)</title><rect x="80.3305%" y="773" width="0.0138%" height="15" fill="rgb(216,118,12)" fg:x="394594" fg:w="68"/><text x="80.5805%" y="783.50"></text></g><g><title>do_softirq_own_stack (67 samples, 0.01%)</title><rect x="80.3307%" y="757" width="0.0136%" height="15" fill="rgb(252,97,46)" fg:x="394595" fg:w="67"/><text x="80.5807%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (67 samples, 0.01%)</title><rect x="80.3307%" y="741" width="0.0136%" height="15" fill="rgb(244,206,19)" fg:x="394595" fg:w="67"/><text x="80.5807%" y="751.50"></text></g><g><title>__softirqentry_text_start (67 samples, 0.01%)</title><rect x="80.3307%" y="725" width="0.0136%" height="15" fill="rgb(231,84,31)" fg:x="394595" fg:w="67"/><text x="80.5807%" y="735.50"></text></g><g><title>__close (51 samples, 0.01%)</title><rect x="80.3521%" y="789" width="0.0104%" height="15" fill="rgb(244,133,0)" fg:x="394700" fg:w="51"/><text x="80.6021%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="80.3523%" y="773" width="0.0102%" height="15" fill="rgb(223,15,50)" fg:x="394701" fg:w="50"/><text x="80.6023%" y="783.50"></text></g><g><title>fileDescriptorClose (63 samples, 0.01%)</title><rect x="80.3519%" y="805" width="0.0128%" height="15" fill="rgb(250,118,49)" fg:x="394699" fg:w="63"/><text x="80.6019%" y="815.50"></text></g><g><title>do_filp_open (130 samples, 0.03%)</title><rect x="80.3833%" y="709" width="0.0265%" height="15" fill="rgb(248,25,38)" fg:x="394853" fg:w="130"/><text x="80.6333%" y="719.50"></text></g><g><title>path_openat (128 samples, 0.03%)</title><rect x="80.3837%" y="693" width="0.0261%" height="15" fill="rgb(215,70,14)" fg:x="394855" fg:w="128"/><text x="80.6337%" y="703.50"></text></g><g><title>do_syscall_64 (157 samples, 0.03%)</title><rect x="80.3808%" y="757" width="0.0320%" height="15" fill="rgb(215,28,15)" fg:x="394841" fg:w="157"/><text x="80.6308%" y="767.50"></text></g><g><title>__x64_sys_openat (157 samples, 0.03%)</title><rect x="80.3808%" y="741" width="0.0320%" height="15" fill="rgb(243,6,28)" fg:x="394841" fg:w="157"/><text x="80.6308%" y="751.50"></text></g><g><title>do_sys_openat2 (157 samples, 0.03%)</title><rect x="80.3808%" y="725" width="0.0320%" height="15" fill="rgb(222,130,1)" fg:x="394841" fg:w="157"/><text x="80.6308%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (160 samples, 0.03%)</title><rect x="80.3806%" y="773" width="0.0326%" height="15" fill="rgb(236,166,44)" fg:x="394840" fg:w="160"/><text x="80.6306%" y="783.50"></text></g><g><title>__libc_open64 (168 samples, 0.03%)</title><rect x="80.3794%" y="789" width="0.0342%" height="15" fill="rgb(221,108,14)" fg:x="394834" fg:w="168"/><text x="80.6294%" y="799.50"></text></g><g><title>fileOpen (251 samples, 0.05%)</title><rect x="80.3647%" y="805" width="0.0511%" height="15" fill="rgb(252,3,45)" fg:x="394762" fg:w="251"/><text x="80.6147%" y="815.50"></text></g><g><title>jni_IsAssignableFrom (79 samples, 0.02%)</title><rect x="80.4203%" y="805" width="0.0161%" height="15" fill="rgb(237,68,30)" fg:x="395035" fg:w="79"/><text x="80.6703%" y="815.50"></text></g><g><title>[perf-279850.map] (58,834 samples, 11.98%)</title><rect x="68.4705%" y="821" width="11.9773%" height="15" fill="rgb(211,79,22)" fg:x="336336" fg:w="58834"/><text x="68.7205%" y="831.50">[perf-279850.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (139 samples, 0.03%)</title><rect x="80.4850%" y="789" width="0.0283%" height="15" fill="rgb(252,185,21)" fg:x="395353" fg:w="139"/><text x="80.7350%" y="799.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (225 samples, 0.05%)</title><rect x="80.4720%" y="805" width="0.0458%" height="15" fill="rgb(225,189,26)" fg:x="395289" fg:w="225"/><text x="80.7220%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.01%)</title><rect x="80.5194%" y="533" width="0.0114%" height="15" fill="rgb(241,30,40)" fg:x="395522" fg:w="56"/><text x="80.7694%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.01%)</title><rect x="80.5194%" y="517" width="0.0114%" height="15" fill="rgb(235,215,44)" fg:x="395522" fg:w="56"/><text x="80.7694%" y="527.50"></text></g><g><title>native_write_msr (56 samples, 0.01%)</title><rect x="80.5194%" y="501" width="0.0114%" height="15" fill="rgb(205,8,29)" fg:x="395522" fg:w="56"/><text x="80.7694%" y="511.50"></text></g><g><title>futex_wait_queue_me (59 samples, 0.01%)</title><rect x="80.5190%" y="597" width="0.0120%" height="15" fill="rgb(241,137,42)" fg:x="395520" fg:w="59"/><text x="80.7690%" y="607.50"></text></g><g><title>schedule (59 samples, 0.01%)</title><rect x="80.5190%" y="581" width="0.0120%" height="15" fill="rgb(237,155,2)" fg:x="395520" fg:w="59"/><text x="80.7690%" y="591.50"></text></g><g><title>__schedule (59 samples, 0.01%)</title><rect x="80.5190%" y="565" width="0.0120%" height="15" fill="rgb(245,29,42)" fg:x="395520" fg:w="59"/><text x="80.7690%" y="575.50"></text></g><g><title>finish_task_switch (58 samples, 0.01%)</title><rect x="80.5192%" y="549" width="0.0118%" height="15" fill="rgb(234,101,35)" fg:x="395521" fg:w="58"/><text x="80.7692%" y="559.50"></text></g><g><title>do_syscall_64 (60 samples, 0.01%)</title><rect x="80.5190%" y="661" width="0.0122%" height="15" fill="rgb(228,64,37)" fg:x="395520" fg:w="60"/><text x="80.7690%" y="671.50"></text></g><g><title>__x64_sys_futex (60 samples, 0.01%)</title><rect x="80.5190%" y="645" width="0.0122%" height="15" fill="rgb(217,214,36)" fg:x="395520" fg:w="60"/><text x="80.7690%" y="655.50"></text></g><g><title>do_futex (60 samples, 0.01%)</title><rect x="80.5190%" y="629" width="0.0122%" height="15" fill="rgb(243,70,3)" fg:x="395520" fg:w="60"/><text x="80.7690%" y="639.50"></text></g><g><title>futex_wait (60 samples, 0.01%)</title><rect x="80.5190%" y="613" width="0.0122%" height="15" fill="rgb(253,158,52)" fg:x="395520" fg:w="60"/><text x="80.7690%" y="623.50"></text></g><g><title>__pthread_cond_wait (64 samples, 0.01%)</title><rect x="80.5188%" y="725" width="0.0130%" height="15" fill="rgb(234,111,54)" fg:x="395519" fg:w="64"/><text x="80.7688%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (64 samples, 0.01%)</title><rect x="80.5188%" y="709" width="0.0130%" height="15" fill="rgb(217,70,32)" fg:x="395519" fg:w="64"/><text x="80.7688%" y="719.50"></text></g><g><title>futex_wait_cancelable (63 samples, 0.01%)</title><rect x="80.5190%" y="693" width="0.0128%" height="15" fill="rgb(234,18,33)" fg:x="395520" fg:w="63"/><text x="80.7690%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="80.5190%" y="677" width="0.0128%" height="15" fill="rgb(234,12,49)" fg:x="395520" fg:w="63"/><text x="80.7690%" y="687.50"></text></g><g><title>Monitor::lock_without_safepoint_check (69 samples, 0.01%)</title><rect x="80.5180%" y="773" width="0.0140%" height="15" fill="rgb(236,10,21)" fg:x="395515" fg:w="69"/><text x="80.7680%" y="783.50"></text></g><g><title>Monitor::ILock (69 samples, 0.01%)</title><rect x="80.5180%" y="757" width="0.0140%" height="15" fill="rgb(248,182,45)" fg:x="395515" fg:w="69"/><text x="80.7680%" y="767.50"></text></g><g><title>os::PlatformEvent::park (66 samples, 0.01%)</title><rect x="80.5186%" y="741" width="0.0134%" height="15" fill="rgb(217,95,36)" fg:x="395518" fg:w="66"/><text x="80.7686%" y="751.50"></text></g><g><title>SafepointSynchronize::block (74 samples, 0.02%)</title><rect x="80.5180%" y="789" width="0.0151%" height="15" fill="rgb(212,110,31)" fg:x="395515" fg:w="74"/><text x="80.7680%" y="799.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (78 samples, 0.02%)</title><rect x="80.5178%" y="805" width="0.0159%" height="15" fill="rgb(206,32,53)" fg:x="395514" fg:w="78"/><text x="80.7678%" y="815.50"></text></g><g><title>copy_page_to_iter (96 samples, 0.02%)</title><rect x="80.5581%" y="645" width="0.0195%" height="15" fill="rgb(246,141,37)" fg:x="395712" fg:w="96"/><text x="80.8081%" y="655.50"></text></g><g><title>copy_user_enhanced_fast_string (92 samples, 0.02%)</title><rect x="80.5589%" y="629" width="0.0187%" height="15" fill="rgb(219,16,7)" fg:x="395716" fg:w="92"/><text x="80.8089%" y="639.50"></text></g><g><title>generic_file_buffered_read (169 samples, 0.03%)</title><rect x="80.5559%" y="661" width="0.0344%" height="15" fill="rgb(230,205,45)" fg:x="395701" fg:w="169"/><text x="80.8059%" y="671.50"></text></g><g><title>new_sync_read (174 samples, 0.04%)</title><rect x="80.5551%" y="677" width="0.0354%" height="15" fill="rgb(231,43,49)" fg:x="395697" fg:w="174"/><text x="80.8051%" y="687.50"></text></g><g><title>ksys_read (211 samples, 0.04%)</title><rect x="80.5494%" y="709" width="0.0430%" height="15" fill="rgb(212,106,34)" fg:x="395669" fg:w="211"/><text x="80.7994%" y="719.50"></text></g><g><title>vfs_read (190 samples, 0.04%)</title><rect x="80.5536%" y="693" width="0.0387%" height="15" fill="rgb(206,83,17)" fg:x="395690" fg:w="190"/><text x="80.8036%" y="703.50"></text></g><g><title>do_syscall_64 (212 samples, 0.04%)</title><rect x="80.5494%" y="725" width="0.0432%" height="15" fill="rgb(244,154,49)" fg:x="395669" fg:w="212"/><text x="80.7994%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (218 samples, 0.04%)</title><rect x="80.5488%" y="741" width="0.0444%" height="15" fill="rgb(244,149,49)" fg:x="395666" fg:w="218"/><text x="80.7988%" y="751.50"></text></g><g><title>__libc_read (231 samples, 0.05%)</title><rect x="80.5463%" y="773" width="0.0470%" height="15" fill="rgb(227,134,18)" fg:x="395654" fg:w="231"/><text x="80.7963%" y="783.50"></text></g><g><title>__libc_read (229 samples, 0.05%)</title><rect x="80.5467%" y="757" width="0.0466%" height="15" fill="rgb(237,116,36)" fg:x="395656" fg:w="229"/><text x="80.7967%" y="767.50"></text></g><g><title>handleRead (232 samples, 0.05%)</title><rect x="80.5463%" y="789" width="0.0472%" height="15" fill="rgb(205,129,40)" fg:x="395654" fg:w="232"/><text x="80.7963%" y="799.50"></text></g><g><title>readBytes (329 samples, 0.07%)</title><rect x="80.5453%" y="805" width="0.0670%" height="15" fill="rgb(236,178,4)" fg:x="395649" fg:w="329"/><text x="80.7953%" y="815.50"></text></g><g><title>jni_SetByteArrayRegion (59 samples, 0.01%)</title><rect x="80.6003%" y="789" width="0.0120%" height="15" fill="rgb(251,76,53)" fg:x="395919" fg:w="59"/><text x="80.8503%" y="799.50"></text></g><g><title>[unknown] (819 samples, 0.17%)</title><rect x="80.4478%" y="821" width="0.1667%" height="15" fill="rgb(242,92,40)" fg:x="395170" fg:w="819"/><text x="80.6978%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (106 samples, 0.02%)</title><rect x="80.6161%" y="757" width="0.0216%" height="15" fill="rgb(209,45,30)" fg:x="395997" fg:w="106"/><text x="80.8661%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (106 samples, 0.02%)</title><rect x="80.6161%" y="741" width="0.0216%" height="15" fill="rgb(218,157,36)" fg:x="395997" fg:w="106"/><text x="80.8661%" y="751.50"></text></g><g><title>native_write_msr (106 samples, 0.02%)</title><rect x="80.6161%" y="725" width="0.0216%" height="15" fill="rgb(222,186,16)" fg:x="395997" fg:w="106"/><text x="80.8661%" y="735.50"></text></g><g><title>schedule_tail (107 samples, 0.02%)</title><rect x="80.6161%" y="789" width="0.0218%" height="15" fill="rgb(254,72,35)" fg:x="395997" fg:w="107"/><text x="80.8661%" y="799.50"></text></g><g><title>finish_task_switch (107 samples, 0.02%)</title><rect x="80.6161%" y="773" width="0.0218%" height="15" fill="rgb(224,25,35)" fg:x="395997" fg:w="107"/><text x="80.8661%" y="783.50"></text></g><g><title>ret_from_fork (109 samples, 0.02%)</title><rect x="80.6159%" y="805" width="0.0222%" height="15" fill="rgb(206,135,52)" fg:x="395996" fg:w="109"/><text x="80.8659%" y="815.50"></text></g><g><title>__GI___clone (168 samples, 0.03%)</title><rect x="80.6145%" y="821" width="0.0342%" height="15" fill="rgb(229,174,47)" fg:x="395989" fg:w="168"/><text x="80.8645%" y="831.50"></text></g><g><title>start_thread (52 samples, 0.01%)</title><rect x="80.6381%" y="805" width="0.0106%" height="15" fill="rgb(242,184,21)" fg:x="396105" fg:w="52"/><text x="80.8881%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (76 samples, 0.02%)</title><rect x="80.6579%" y="821" width="0.0155%" height="15" fill="rgb(213,22,45)" fg:x="396202" fg:w="76"/><text x="80.9079%" y="831.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (75 samples, 0.02%)</title><rect x="80.6734%" y="821" width="0.0153%" height="15" fill="rgb(237,81,54)" fg:x="396278" fg:w="75"/><text x="80.9234%" y="831.50"></text></g><g><title>skyframe-evalua (255,076 samples, 51.93%)</title><rect x="28.7714%" y="837" width="51.9278%" height="15" fill="rgb(248,177,18)" fg:x="141329" fg:w="255076"/><text x="29.0214%" y="847.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (91 samples, 0.02%)</title><rect x="80.7149%" y="581" width="0.0185%" height="15" fill="rgb(254,31,16)" fg:x="396482" fg:w="91"/><text x="80.9649%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (88 samples, 0.02%)</title><rect x="80.7155%" y="565" width="0.0179%" height="15" fill="rgb(235,20,31)" fg:x="396485" fg:w="88"/><text x="80.9655%" y="575.50"></text></g><g><title>native_write_msr (87 samples, 0.02%)</title><rect x="80.7157%" y="549" width="0.0177%" height="15" fill="rgb(240,56,43)" fg:x="396486" fg:w="87"/><text x="80.9657%" y="559.50"></text></g><g><title>finish_task_switch (95 samples, 0.02%)</title><rect x="80.7147%" y="597" width="0.0193%" height="15" fill="rgb(237,197,51)" fg:x="396481" fg:w="95"/><text x="80.9647%" y="607.50"></text></g><g><title>do_syscall_64 (99 samples, 0.02%)</title><rect x="80.7141%" y="709" width="0.0202%" height="15" fill="rgb(241,162,44)" fg:x="396478" fg:w="99"/><text x="80.9641%" y="719.50"></text></g><g><title>__x64_sys_futex (99 samples, 0.02%)</title><rect x="80.7141%" y="693" width="0.0202%" height="15" fill="rgb(224,23,20)" fg:x="396478" fg:w="99"/><text x="80.9641%" y="703.50"></text></g><g><title>do_futex (99 samples, 0.02%)</title><rect x="80.7141%" y="677" width="0.0202%" height="15" fill="rgb(250,109,34)" fg:x="396478" fg:w="99"/><text x="80.9641%" y="687.50"></text></g><g><title>futex_wait (99 samples, 0.02%)</title><rect x="80.7141%" y="661" width="0.0202%" height="15" fill="rgb(214,175,50)" fg:x="396478" fg:w="99"/><text x="80.9641%" y="671.50"></text></g><g><title>futex_wait_queue_me (99 samples, 0.02%)</title><rect x="80.7141%" y="645" width="0.0202%" height="15" fill="rgb(213,182,5)" fg:x="396478" fg:w="99"/><text x="80.9641%" y="655.50"></text></g><g><title>schedule (98 samples, 0.02%)</title><rect x="80.7143%" y="629" width="0.0200%" height="15" fill="rgb(209,199,19)" fg:x="396479" fg:w="98"/><text x="80.9643%" y="639.50"></text></g><g><title>__schedule (98 samples, 0.02%)</title><rect x="80.7143%" y="613" width="0.0200%" height="15" fill="rgb(236,224,42)" fg:x="396479" fg:w="98"/><text x="80.9643%" y="623.50"></text></g><g><title>__pthread_cond_wait (101 samples, 0.02%)</title><rect x="80.7139%" y="773" width="0.0206%" height="15" fill="rgb(246,226,29)" fg:x="396477" fg:w="101"/><text x="80.9639%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (101 samples, 0.02%)</title><rect x="80.7139%" y="757" width="0.0206%" height="15" fill="rgb(227,223,11)" fg:x="396477" fg:w="101"/><text x="80.9639%" y="767.50"></text></g><g><title>futex_wait_cancelable (100 samples, 0.02%)</title><rect x="80.7141%" y="741" width="0.0204%" height="15" fill="rgb(219,7,51)" fg:x="396478" fg:w="100"/><text x="80.9641%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (100 samples, 0.02%)</title><rect x="80.7141%" y="725" width="0.0204%" height="15" fill="rgb(245,167,10)" fg:x="396478" fg:w="100"/><text x="80.9641%" y="735.50"></text></g><g><title>Parker::park (108 samples, 0.02%)</title><rect x="80.7126%" y="789" width="0.0220%" height="15" fill="rgb(237,224,16)" fg:x="396471" fg:w="108"/><text x="80.9626%" y="799.50"></text></g><g><title>Unsafe_Park (109 samples, 0.02%)</title><rect x="80.7126%" y="805" width="0.0222%" height="15" fill="rgb(226,132,13)" fg:x="396471" fg:w="109"/><text x="80.9626%" y="815.50"></text></g><g><title>[perf-279850.map] (178 samples, 0.04%)</title><rect x="80.7000%" y="821" width="0.0362%" height="15" fill="rgb(214,140,3)" fg:x="396409" fg:w="178"/><text x="80.9500%" y="831.50"></text></g><g><title>skyframe-invali (214 samples, 0.04%)</title><rect x="80.6992%" y="837" width="0.0436%" height="15" fill="rgb(221,177,4)" fg:x="396405" fg:w="214"/><text x="80.9492%" y="847.50"></text></g><g><title>[unknown] (80 samples, 0.02%)</title><rect x="80.7466%" y="821" width="0.0163%" height="15" fill="rgb(238,139,3)" fg:x="396638" fg:w="80"/><text x="80.9966%" y="831.50"></text></g><g><title>[zig] (80 samples, 0.02%)</title><rect x="80.7466%" y="805" width="0.0163%" height="15" fill="rgb(216,17,39)" fg:x="396638" fg:w="80"/><text x="80.9966%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (102 samples, 0.02%)</title><rect x="86.3009%" y="629" width="0.0208%" height="15" fill="rgb(238,120,9)" fg:x="423921" fg:w="102"/><text x="86.5509%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (101 samples, 0.02%)</title><rect x="86.3011%" y="613" width="0.0206%" height="15" fill="rgb(244,92,53)" fg:x="423922" fg:w="101"/><text x="86.5511%" y="623.50"></text></g><g><title>native_write_msr (100 samples, 0.02%)</title><rect x="86.3013%" y="597" width="0.0204%" height="15" fill="rgb(224,148,33)" fg:x="423923" fg:w="100"/><text x="86.5513%" y="607.50"></text></g><g><title>finish_task_switch (110 samples, 0.02%)</title><rect x="86.2996%" y="645" width="0.0224%" height="15" fill="rgb(243,6,36)" fg:x="423915" fg:w="110"/><text x="86.5496%" y="655.50"></text></g><g><title>wait_on_page_bit_common (138 samples, 0.03%)</title><rect x="86.2954%" y="709" width="0.0281%" height="15" fill="rgb(230,102,11)" fg:x="423894" fg:w="138"/><text x="86.5454%" y="719.50"></text></g><g><title>io_schedule (130 samples, 0.03%)</title><rect x="86.2970%" y="693" width="0.0265%" height="15" fill="rgb(234,148,36)" fg:x="423902" fg:w="130"/><text x="86.5470%" y="703.50"></text></g><g><title>schedule (130 samples, 0.03%)</title><rect x="86.2970%" y="677" width="0.0265%" height="15" fill="rgb(251,153,25)" fg:x="423902" fg:w="130"/><text x="86.5470%" y="687.50"></text></g><g><title>__schedule (129 samples, 0.03%)</title><rect x="86.2972%" y="661" width="0.0263%" height="15" fill="rgb(215,129,8)" fg:x="423903" fg:w="129"/><text x="86.5472%" y="671.50"></text></g><g><title>__do_fault (195 samples, 0.04%)</title><rect x="86.2886%" y="741" width="0.0397%" height="15" fill="rgb(224,128,35)" fg:x="423861" fg:w="195"/><text x="86.5386%" y="751.50"></text></g><g><title>filemap_fault (195 samples, 0.04%)</title><rect x="86.2886%" y="725" width="0.0397%" height="15" fill="rgb(237,56,52)" fg:x="423861" fg:w="195"/><text x="86.5386%" y="735.50"></text></g><g><title>kernel_init_free_pages (225 samples, 0.05%)</title><rect x="86.3776%" y="677" width="0.0458%" height="15" fill="rgb(234,213,19)" fg:x="424298" fg:w="225"/><text x="86.6276%" y="687.50"></text></g><g><title>clear_page_erms (218 samples, 0.04%)</title><rect x="86.3790%" y="661" width="0.0444%" height="15" fill="rgb(252,82,23)" fg:x="424305" fg:w="218"/><text x="86.6290%" y="671.50"></text></g><g><title>get_page_from_freelist (353 samples, 0.07%)</title><rect x="86.3524%" y="709" width="0.0719%" height="15" fill="rgb(254,201,21)" fg:x="424174" fg:w="353"/><text x="86.6024%" y="719.50"></text></g><g><title>prep_new_page (235 samples, 0.05%)</title><rect x="86.3764%" y="693" width="0.0478%" height="15" fill="rgb(250,186,11)" fg:x="424292" fg:w="235"/><text x="86.6264%" y="703.50"></text></g><g><title>__alloc_pages_nodemask (399 samples, 0.08%)</title><rect x="86.3432%" y="725" width="0.0812%" height="15" fill="rgb(211,174,5)" fg:x="424129" fg:w="399"/><text x="86.5932%" y="735.50"></text></g><g><title>alloc_pages_vma (424 samples, 0.09%)</title><rect x="86.3397%" y="741" width="0.0863%" height="15" fill="rgb(214,121,10)" fg:x="424112" fg:w="424"/><text x="86.5897%" y="751.50"></text></g><g><title>do_huge_pmd_anonymous_page (59 samples, 0.01%)</title><rect x="86.4322%" y="741" width="0.0120%" height="15" fill="rgb(241,66,2)" fg:x="424566" fg:w="59"/><text x="86.6822%" y="751.50"></text></g><g><title>do_page_mkwrite (227 samples, 0.05%)</title><rect x="86.4442%" y="741" width="0.0462%" height="15" fill="rgb(220,167,19)" fg:x="424625" fg:w="227"/><text x="86.6942%" y="751.50"></text></g><g><title>btrfs_page_mkwrite (227 samples, 0.05%)</title><rect x="86.4442%" y="725" width="0.0462%" height="15" fill="rgb(231,54,50)" fg:x="424625" fg:w="227"/><text x="86.6942%" y="735.50"></text></g><g><title>wait_on_page_bit_common (65 samples, 0.01%)</title><rect x="86.4771%" y="709" width="0.0132%" height="15" fill="rgb(239,217,53)" fg:x="424787" fg:w="65"/><text x="86.7271%" y="719.50"></text></g><g><title>io_schedule (61 samples, 0.01%)</title><rect x="86.4780%" y="693" width="0.0124%" height="15" fill="rgb(248,8,0)" fg:x="424791" fg:w="61"/><text x="86.7280%" y="703.50"></text></g><g><title>schedule (61 samples, 0.01%)</title><rect x="86.4780%" y="677" width="0.0124%" height="15" fill="rgb(229,118,37)" fg:x="424791" fg:w="61"/><text x="86.7280%" y="687.50"></text></g><g><title>__schedule (61 samples, 0.01%)</title><rect x="86.4780%" y="661" width="0.0124%" height="15" fill="rgb(253,223,43)" fg:x="424791" fg:w="61"/><text x="86.7280%" y="671.50"></text></g><g><title>__mod_memcg_lruvec_state (54 samples, 0.01%)</title><rect x="86.6319%" y="693" width="0.0110%" height="15" fill="rgb(211,77,36)" fg:x="425547" fg:w="54"/><text x="86.8819%" y="703.50"></text></g><g><title>page_add_file_rmap (163 samples, 0.03%)</title><rect x="86.6121%" y="709" width="0.0332%" height="15" fill="rgb(219,3,53)" fg:x="425450" fg:w="163"/><text x="86.8621%" y="719.50"></text></g><g><title>alloc_set_pte (240 samples, 0.05%)</title><rect x="86.5985%" y="725" width="0.0489%" height="15" fill="rgb(244,45,42)" fg:x="425383" fg:w="240"/><text x="86.8485%" y="735.50"></text></g><g><title>unlock_page (57 samples, 0.01%)</title><rect x="86.6473%" y="725" width="0.0116%" height="15" fill="rgb(225,95,27)" fg:x="425623" fg:w="57"/><text x="86.8973%" y="735.50"></text></g><g><title>filemap_map_pages (859 samples, 0.17%)</title><rect x="86.4973%" y="741" width="0.1749%" height="15" fill="rgb(207,74,8)" fg:x="424886" fg:w="859"/><text x="86.7473%" y="751.50"></text></g><g><title>xas_find (65 samples, 0.01%)</title><rect x="86.6589%" y="725" width="0.0132%" height="15" fill="rgb(243,63,36)" fg:x="425680" fg:w="65"/><text x="86.9089%" y="735.50"></text></g><g><title>xas_load (53 samples, 0.01%)</title><rect x="86.6614%" y="709" width="0.0108%" height="15" fill="rgb(211,180,12)" fg:x="425692" fg:w="53"/><text x="86.9114%" y="719.50"></text></g><g><title>__pagevec_lru_add_fn (63 samples, 0.01%)</title><rect x="86.6775%" y="709" width="0.0128%" height="15" fill="rgb(254,166,49)" fg:x="425771" fg:w="63"/><text x="86.9275%" y="719.50"></text></g><g><title>lru_cache_add (97 samples, 0.02%)</title><rect x="86.6738%" y="741" width="0.0197%" height="15" fill="rgb(205,19,0)" fg:x="425753" fg:w="97"/><text x="86.9238%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (88 samples, 0.02%)</title><rect x="86.6756%" y="725" width="0.0179%" height="15" fill="rgb(224,172,32)" fg:x="425762" fg:w="88"/><text x="86.9256%" y="735.50"></text></g><g><title>mem_cgroup_charge (105 samples, 0.02%)</title><rect x="86.6942%" y="741" width="0.0214%" height="15" fill="rgb(254,136,30)" fg:x="425853" fg:w="105"/><text x="86.9442%" y="751.50"></text></g><g><title>handle_mm_fault (2,429 samples, 0.49%)</title><rect x="86.2418%" y="757" width="0.4945%" height="15" fill="rgb(246,19,35)" fg:x="423631" fg:w="2429"/><text x="86.4918%" y="767.50"></text></g><g><title>do_user_addr_fault (2,592 samples, 0.53%)</title><rect x="86.2176%" y="773" width="0.5277%" height="15" fill="rgb(219,24,36)" fg:x="423512" fg:w="2592"/><text x="86.4676%" y="783.50"></text></g><g><title>exc_page_fault (2,613 samples, 0.53%)</title><rect x="86.2143%" y="789" width="0.5319%" height="15" fill="rgb(251,55,1)" fg:x="423496" fg:w="2613"/><text x="86.4643%" y="799.50"></text></g><g><title>asm_exc_page_fault (2,662 samples, 0.54%)</title><rect x="86.2094%" y="805" width="0.5419%" height="15" fill="rgb(218,117,39)" fg:x="423472" fg:w="2662"/><text x="86.4594%" y="815.50"></text></g><g><title>rcu_core (77 samples, 0.02%)</title><rect x="86.7583%" y="709" width="0.0157%" height="15" fill="rgb(248,169,11)" fg:x="426168" fg:w="77"/><text x="87.0083%" y="719.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (113 samples, 0.02%)</title><rect x="86.7514%" y="805" width="0.0230%" height="15" fill="rgb(244,40,44)" fg:x="426134" fg:w="113"/><text x="87.0014%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (96 samples, 0.02%)</title><rect x="86.7548%" y="789" width="0.0195%" height="15" fill="rgb(234,62,37)" fg:x="426151" fg:w="96"/><text x="87.0048%" y="799.50"></text></g><g><title>irq_exit_rcu (80 samples, 0.02%)</title><rect x="86.7581%" y="773" width="0.0163%" height="15" fill="rgb(207,117,42)" fg:x="426167" fg:w="80"/><text x="87.0081%" y="783.50"></text></g><g><title>do_softirq_own_stack (80 samples, 0.02%)</title><rect x="86.7581%" y="757" width="0.0163%" height="15" fill="rgb(213,43,2)" fg:x="426167" fg:w="80"/><text x="87.0081%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (80 samples, 0.02%)</title><rect x="86.7581%" y="741" width="0.0163%" height="15" fill="rgb(244,202,51)" fg:x="426167" fg:w="80"/><text x="87.0081%" y="751.50"></text></g><g><title>__softirqentry_text_start (80 samples, 0.02%)</title><rect x="86.7581%" y="725" width="0.0163%" height="15" fill="rgb(253,174,46)" fg:x="426167" fg:w="80"/><text x="87.0081%" y="735.50"></text></g><g><title>entry_SYSCALL_64 (1,162 samples, 0.24%)</title><rect x="86.7754%" y="805" width="0.2366%" height="15" fill="rgb(251,23,1)" fg:x="426252" fg:w="1162"/><text x="87.0254%" y="815.50"></text></g><g><title>copy_process (88 samples, 0.02%)</title><rect x="87.1172%" y="741" width="0.0179%" height="15" fill="rgb(253,26,1)" fg:x="427931" fg:w="88"/><text x="87.3672%" y="751.50"></text></g><g><title>__do_sys_clone (97 samples, 0.02%)</title><rect x="87.1172%" y="773" width="0.0197%" height="15" fill="rgb(216,89,31)" fg:x="427931" fg:w="97"/><text x="87.3672%" y="783.50"></text></g><g><title>kernel_clone (97 samples, 0.02%)</title><rect x="87.1172%" y="757" width="0.0197%" height="15" fill="rgb(209,109,5)" fg:x="427931" fg:w="97"/><text x="87.3672%" y="767.50"></text></g><g><title>_copy_to_user (182 samples, 0.04%)</title><rect x="87.1526%" y="741" width="0.0371%" height="15" fill="rgb(229,63,13)" fg:x="428105" fg:w="182"/><text x="87.4026%" y="751.50"></text></g><g><title>copy_user_enhanced_fast_string (159 samples, 0.03%)</title><rect x="87.1573%" y="725" width="0.0324%" height="15" fill="rgb(238,137,54)" fg:x="428128" fg:w="159"/><text x="87.4073%" y="735.50"></text></g><g><title>cp_new_stat (294 samples, 0.06%)</title><rect x="87.1404%" y="757" width="0.0599%" height="15" fill="rgb(228,1,9)" fg:x="428045" fg:w="294"/><text x="87.3904%" y="767.50"></text></g><g><title>__fget_light (68 samples, 0.01%)</title><rect x="87.2053%" y="741" width="0.0138%" height="15" fill="rgb(249,120,48)" fg:x="428364" fg:w="68"/><text x="87.4553%" y="751.50"></text></g><g><title>__fget_files (64 samples, 0.01%)</title><rect x="87.2062%" y="725" width="0.0130%" height="15" fill="rgb(209,72,36)" fg:x="428368" fg:w="64"/><text x="87.4562%" y="735.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.01%)</title><rect x="87.3051%" y="725" width="0.0149%" height="15" fill="rgb(247,98,49)" fg:x="428854" fg:w="73"/><text x="87.5551%" y="735.50"></text></g><g><title>generic_fillattr (54 samples, 0.01%)</title><rect x="87.3204%" y="725" width="0.0110%" height="15" fill="rgb(233,75,36)" fg:x="428929" fg:w="54"/><text x="87.5704%" y="735.50"></text></g><g><title>btrfs_getattr (634 samples, 0.13%)</title><rect x="87.2192%" y="741" width="0.1291%" height="15" fill="rgb(225,14,24)" fg:x="428432" fg:w="634"/><text x="87.4692%" y="751.50"></text></g><g><title>inode_get_bytes (83 samples, 0.02%)</title><rect x="87.3314%" y="725" width="0.0169%" height="15" fill="rgb(237,193,20)" fg:x="428983" fg:w="83"/><text x="87.5814%" y="735.50"></text></g><g><title>_raw_spin_lock (66 samples, 0.01%)</title><rect x="87.3348%" y="709" width="0.0134%" height="15" fill="rgb(239,122,19)" fg:x="429000" fg:w="66"/><text x="87.5848%" y="719.50"></text></g><g><title>fput_many (56 samples, 0.01%)</title><rect x="87.3487%" y="741" width="0.0114%" height="15" fill="rgb(231,220,10)" fg:x="429068" fg:w="56"/><text x="87.5987%" y="751.50"></text></g><g><title>security_inode_getattr (193 samples, 0.04%)</title><rect x="87.3601%" y="741" width="0.0393%" height="15" fill="rgb(220,66,15)" fg:x="429124" fg:w="193"/><text x="87.6101%" y="751.50"></text></g><g><title>tomoyo_path_perm (153 samples, 0.03%)</title><rect x="87.3682%" y="725" width="0.0311%" height="15" fill="rgb(215,171,52)" fg:x="429164" fg:w="153"/><text x="87.6182%" y="735.50"></text></g><g><title>tomoyo_init_request_info (81 samples, 0.02%)</title><rect x="87.3829%" y="709" width="0.0165%" height="15" fill="rgb(241,169,50)" fg:x="429236" fg:w="81"/><text x="87.6329%" y="719.50"></text></g><g><title>__do_sys_newfstat (1,389 samples, 0.28%)</title><rect x="87.1369%" y="773" width="0.2828%" height="15" fill="rgb(236,189,0)" fg:x="428028" fg:w="1389"/><text x="87.3869%" y="783.50"></text></g><g><title>vfs_fstat (1,078 samples, 0.22%)</title><rect x="87.2003%" y="757" width="0.2195%" height="15" fill="rgb(217,147,20)" fg:x="428339" fg:w="1078"/><text x="87.4503%" y="767.50"></text></g><g><title>vfs_getattr_nosec (100 samples, 0.02%)</title><rect x="87.3994%" y="741" width="0.0204%" height="15" fill="rgb(206,188,39)" fg:x="429317" fg:w="100"/><text x="87.6494%" y="751.50"></text></g><g><title>__close_fd (81 samples, 0.02%)</title><rect x="87.4270%" y="757" width="0.0165%" height="15" fill="rgb(227,118,25)" fg:x="429453" fg:w="81"/><text x="87.6770%" y="767.50"></text></g><g><title>pick_file (77 samples, 0.02%)</title><rect x="87.4279%" y="741" width="0.0157%" height="15" fill="rgb(248,171,40)" fg:x="429457" fg:w="77"/><text x="87.6779%" y="751.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="87.4327%" y="725" width="0.0108%" height="15" fill="rgb(251,90,54)" fg:x="429481" fg:w="53"/><text x="87.6827%" y="735.50"></text></g><g><title>fput_many (193 samples, 0.04%)</title><rect x="87.4498%" y="741" width="0.0393%" height="15" fill="rgb(234,11,46)" fg:x="429565" fg:w="193"/><text x="87.6998%" y="751.50"></text></g><g><title>task_work_add (127 samples, 0.03%)</title><rect x="87.4633%" y="725" width="0.0259%" height="15" fill="rgb(229,134,13)" fg:x="429631" fg:w="127"/><text x="87.7133%" y="735.50"></text></g><g><title>__x64_sys_close (346 samples, 0.07%)</title><rect x="87.4242%" y="773" width="0.0704%" height="15" fill="rgb(223,129,3)" fg:x="429439" fg:w="346"/><text x="87.6742%" y="783.50"></text></g><g><title>filp_close (251 samples, 0.05%)</title><rect x="87.4435%" y="757" width="0.0511%" height="15" fill="rgb(221,124,13)" fg:x="429534" fg:w="251"/><text x="87.6935%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (144 samples, 0.03%)</title><rect x="87.4997%" y="645" width="0.0293%" height="15" fill="rgb(234,3,18)" fg:x="429810" fg:w="144"/><text x="87.7497%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (143 samples, 0.03%)</title><rect x="87.4999%" y="629" width="0.0291%" height="15" fill="rgb(249,199,20)" fg:x="429811" fg:w="143"/><text x="87.7499%" y="639.50"></text></g><g><title>native_write_msr (142 samples, 0.03%)</title><rect x="87.5001%" y="613" width="0.0289%" height="15" fill="rgb(224,134,6)" fg:x="429812" fg:w="142"/><text x="87.7501%" y="623.50"></text></g><g><title>finish_task_switch (150 samples, 0.03%)</title><rect x="87.4991%" y="661" width="0.0305%" height="15" fill="rgb(254,83,26)" fg:x="429807" fg:w="150"/><text x="87.7491%" y="671.50"></text></g><g><title>schedule (153 samples, 0.03%)</title><rect x="87.4991%" y="693" width="0.0311%" height="15" fill="rgb(217,88,9)" fg:x="429807" fg:w="153"/><text x="87.7491%" y="703.50"></text></g><g><title>__schedule (153 samples, 0.03%)</title><rect x="87.4991%" y="677" width="0.0311%" height="15" fill="rgb(225,73,2)" fg:x="429807" fg:w="153"/><text x="87.7491%" y="687.50"></text></g><g><title>begin_new_exec (188 samples, 0.04%)</title><rect x="87.4967%" y="709" width="0.0383%" height="15" fill="rgb(226,44,39)" fg:x="429795" fg:w="188"/><text x="87.7467%" y="719.50"></text></g><g><title>load_elf_binary (190 samples, 0.04%)</title><rect x="87.4965%" y="725" width="0.0387%" height="15" fill="rgb(228,53,17)" fg:x="429794" fg:w="190"/><text x="87.7465%" y="735.50"></text></g><g><title>bprm_execve (234 samples, 0.05%)</title><rect x="87.4950%" y="741" width="0.0476%" height="15" fill="rgb(212,27,27)" fg:x="429787" fg:w="234"/><text x="87.7450%" y="751.50"></text></g><g><title>__x64_sys_execve (266 samples, 0.05%)</title><rect x="87.4946%" y="773" width="0.0542%" height="15" fill="rgb(241,50,6)" fg:x="429785" fg:w="266"/><text x="87.7446%" y="783.50"></text></g><g><title>do_execveat_common (266 samples, 0.05%)</title><rect x="87.4946%" y="757" width="0.0542%" height="15" fill="rgb(225,28,51)" fg:x="429785" fg:w="266"/><text x="87.7446%" y="767.50"></text></g><g><title>__perf_event_task_sched_out (56 samples, 0.01%)</title><rect x="87.6544%" y="677" width="0.0114%" height="15" fill="rgb(215,33,16)" fg:x="430570" fg:w="56"/><text x="87.9044%" y="687.50"></text></g><g><title>update_curr (179 samples, 0.04%)</title><rect x="87.7129%" y="645" width="0.0364%" height="15" fill="rgb(243,40,39)" fg:x="430857" fg:w="179"/><text x="87.9629%" y="655.50"></text></g><g><title>__update_load_avg_se (50 samples, 0.01%)</title><rect x="87.7717%" y="629" width="0.0102%" height="15" fill="rgb(225,11,42)" fg:x="431146" fg:w="50"/><text x="88.0217%" y="639.50"></text></g><g><title>dequeue_entity (490 samples, 0.10%)</title><rect x="87.6848%" y="661" width="0.0998%" height="15" fill="rgb(241,220,38)" fg:x="430719" fg:w="490"/><text x="87.9348%" y="671.50"></text></g><g><title>update_load_avg (173 samples, 0.04%)</title><rect x="87.7493%" y="645" width="0.0352%" height="15" fill="rgb(244,52,35)" fg:x="431036" fg:w="173"/><text x="87.9993%" y="655.50"></text></g><g><title>dequeue_task_fair (570 samples, 0.12%)</title><rect x="87.6713%" y="677" width="0.1160%" height="15" fill="rgb(246,42,46)" fg:x="430653" fg:w="570"/><text x="87.9213%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (13,244 samples, 2.70%)</title><rect x="87.8578%" y="661" width="2.6962%" height="15" fill="rgb(205,184,13)" fg:x="431569" fg:w="13244"/><text x="88.1078%" y="671.50">__..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (13,076 samples, 2.66%)</title><rect x="87.8920%" y="645" width="2.6620%" height="15" fill="rgb(209,48,36)" fg:x="431737" fg:w="13076"/><text x="88.1420%" y="655.50">__..</text></g><g><title>native_write_msr (13,008 samples, 2.65%)</title><rect x="87.9059%" y="629" width="2.6481%" height="15" fill="rgb(244,34,51)" fg:x="431805" fg:w="13008"/><text x="88.1559%" y="639.50">na..</text></g><g><title>__wake_up_common (89 samples, 0.02%)</title><rect x="90.5894%" y="501" width="0.0181%" height="15" fill="rgb(221,107,33)" fg:x="444987" fg:w="89"/><text x="90.8394%" y="511.50"></text></g><g><title>pollwake (87 samples, 0.02%)</title><rect x="90.5898%" y="485" width="0.0177%" height="15" fill="rgb(224,203,12)" fg:x="444989" fg:w="87"/><text x="90.8398%" y="495.50"></text></g><g><title>try_to_wake_up (82 samples, 0.02%)</title><rect x="90.5908%" y="469" width="0.0167%" height="15" fill="rgb(230,215,18)" fg:x="444994" fg:w="82"/><text x="90.8408%" y="479.50"></text></g><g><title>irq_work_run (127 samples, 0.03%)</title><rect x="90.5823%" y="597" width="0.0259%" height="15" fill="rgb(206,185,35)" fg:x="444952" fg:w="127"/><text x="90.8323%" y="607.50"></text></g><g><title>irq_work_run_list (127 samples, 0.03%)</title><rect x="90.5823%" y="581" width="0.0259%" height="15" fill="rgb(228,140,34)" fg:x="444952" fg:w="127"/><text x="90.8323%" y="591.50"></text></g><g><title>irq_work_single (123 samples, 0.03%)</title><rect x="90.5831%" y="565" width="0.0250%" height="15" fill="rgb(208,93,13)" fg:x="444956" fg:w="123"/><text x="90.8331%" y="575.50"></text></g><g><title>perf_pending_event (117 samples, 0.02%)</title><rect x="90.5843%" y="549" width="0.0238%" height="15" fill="rgb(221,193,39)" fg:x="444962" fg:w="117"/><text x="90.8343%" y="559.50"></text></g><g><title>perf_event_wakeup (100 samples, 0.02%)</title><rect x="90.5878%" y="533" width="0.0204%" height="15" fill="rgb(241,132,34)" fg:x="444979" fg:w="100"/><text x="90.8378%" y="543.50"></text></g><g><title>__wake_up_common_lock (95 samples, 0.02%)</title><rect x="90.5888%" y="517" width="0.0193%" height="15" fill="rgb(221,141,10)" fg:x="444984" fg:w="95"/><text x="90.8388%" y="527.50"></text></g><g><title>asm_call_sysvec_on_stack (136 samples, 0.03%)</title><rect x="90.5815%" y="629" width="0.0277%" height="15" fill="rgb(226,90,31)" fg:x="444948" fg:w="136"/><text x="90.8315%" y="639.50"></text></g><g><title>__sysvec_irq_work (132 samples, 0.03%)</title><rect x="90.5823%" y="613" width="0.0269%" height="15" fill="rgb(243,75,5)" fg:x="444952" fg:w="132"/><text x="90.8323%" y="623.50"></text></g><g><title>asm_sysvec_irq_work (220 samples, 0.04%)</title><rect x="90.5666%" y="661" width="0.0448%" height="15" fill="rgb(227,156,21)" fg:x="444875" fg:w="220"/><text x="90.8166%" y="671.50"></text></g><g><title>sysvec_irq_work (154 samples, 0.03%)</title><rect x="90.5801%" y="645" width="0.0314%" height="15" fill="rgb(250,195,8)" fg:x="444941" fg:w="154"/><text x="90.8301%" y="655.50"></text></g><g><title>finish_task_switch (13,921 samples, 2.83%)</title><rect x="87.7874%" y="677" width="2.8340%" height="15" fill="rgb(220,134,5)" fg:x="431223" fg:w="13921"/><text x="88.0374%" y="687.50">fi..</text></g><g><title>load_balance (67 samples, 0.01%)</title><rect x="90.6366%" y="645" width="0.0136%" height="15" fill="rgb(246,106,34)" fg:x="445219" fg:w="67"/><text x="90.8866%" y="655.50"></text></g><g><title>newidle_balance (138 samples, 0.03%)</title><rect x="90.6240%" y="661" width="0.0281%" height="15" fill="rgb(205,1,4)" fg:x="445157" fg:w="138"/><text x="90.8740%" y="671.50"></text></g><g><title>pick_next_task_fair (157 samples, 0.03%)</title><rect x="90.6214%" y="677" width="0.0320%" height="15" fill="rgb(224,151,29)" fg:x="445144" fg:w="157"/><text x="90.8714%" y="687.50"></text></g><g><title>pick_next_task_idle (68 samples, 0.01%)</title><rect x="90.6533%" y="677" width="0.0138%" height="15" fill="rgb(251,196,0)" fg:x="445301" fg:w="68"/><text x="90.9033%" y="687.50"></text></g><g><title>__update_idle_core (57 samples, 0.01%)</title><rect x="90.6556%" y="661" width="0.0116%" height="15" fill="rgb(212,127,0)" fg:x="445312" fg:w="57"/><text x="90.9056%" y="671.50"></text></g><g><title>psi_task_change (382 samples, 0.08%)</title><rect x="90.6672%" y="677" width="0.0778%" height="15" fill="rgb(236,71,53)" fg:x="445369" fg:w="382"/><text x="90.9172%" y="687.50"></text></g><g><title>psi_group_change (312 samples, 0.06%)</title><rect x="90.6814%" y="661" width="0.0635%" height="15" fill="rgb(227,99,0)" fg:x="445439" fg:w="312"/><text x="90.9314%" y="671.50"></text></g><g><title>record_times (84 samples, 0.02%)</title><rect x="90.7279%" y="645" width="0.0171%" height="15" fill="rgb(239,89,21)" fg:x="445667" fg:w="84"/><text x="90.9779%" y="655.50"></text></g><g><title>sched_clock_cpu (63 samples, 0.01%)</title><rect x="90.7321%" y="629" width="0.0128%" height="15" fill="rgb(243,122,19)" fg:x="445688" fg:w="63"/><text x="90.9821%" y="639.50"></text></g><g><title>sched_clock (60 samples, 0.01%)</title><rect x="90.7327%" y="613" width="0.0122%" height="15" fill="rgb(229,192,45)" fg:x="445691" fg:w="60"/><text x="90.9827%" y="623.50"></text></g><g><title>native_sched_clock (53 samples, 0.01%)</title><rect x="90.7342%" y="597" width="0.0108%" height="15" fill="rgb(235,165,35)" fg:x="445698" fg:w="53"/><text x="90.9842%" y="607.50"></text></g><g><title>futex_wait_queue_me (15,549 samples, 3.17%)</title><rect x="87.5976%" y="725" width="3.1654%" height="15" fill="rgb(253,202,0)" fg:x="430291" fg:w="15549"/><text x="87.8476%" y="735.50">fut..</text></g><g><title>schedule (15,422 samples, 3.14%)</title><rect x="87.6235%" y="709" width="3.1396%" height="15" fill="rgb(235,51,20)" fg:x="430418" fg:w="15422"/><text x="87.8735%" y="719.50">sch..</text></g><g><title>__schedule (15,379 samples, 3.13%)</title><rect x="87.6322%" y="693" width="3.1308%" height="15" fill="rgb(218,95,46)" fg:x="430461" fg:w="15379"/><text x="87.8822%" y="703.50">__s..</text></g><g><title>futex_wait (15,846 samples, 3.23%)</title><rect x="87.5767%" y="741" width="3.2259%" height="15" fill="rgb(212,81,10)" fg:x="430188" fg:w="15846"/><text x="87.8267%" y="751.50">fut..</text></g><g><title>futex_wait_setup (194 samples, 0.04%)</title><rect x="90.7631%" y="725" width="0.0395%" height="15" fill="rgb(240,59,0)" fg:x="445840" fg:w="194"/><text x="91.0131%" y="735.50"></text></g><g><title>select_task_rq_fair (60 samples, 0.01%)</title><rect x="90.8437%" y="693" width="0.0122%" height="15" fill="rgb(212,191,42)" fg:x="446236" fg:w="60"/><text x="91.0937%" y="703.50"></text></g><g><title>enqueue_entity (54 samples, 0.01%)</title><rect x="90.8616%" y="661" width="0.0110%" height="15" fill="rgb(233,140,3)" fg:x="446324" fg:w="54"/><text x="91.1116%" y="671.50"></text></g><g><title>enqueue_task_fair (68 samples, 0.01%)</title><rect x="90.8590%" y="677" width="0.0138%" height="15" fill="rgb(215,69,23)" fg:x="446311" fg:w="68"/><text x="91.1090%" y="687.50"></text></g><g><title>ttwu_do_activate (162 samples, 0.03%)</title><rect x="90.8579%" y="693" width="0.0330%" height="15" fill="rgb(240,202,20)" fg:x="446306" fg:w="162"/><text x="91.1079%" y="703.50"></text></g><g><title>psi_task_change (89 samples, 0.02%)</title><rect x="90.8728%" y="677" width="0.0181%" height="15" fill="rgb(209,146,50)" fg:x="446379" fg:w="89"/><text x="91.1228%" y="687.50"></text></g><g><title>psi_group_change (83 samples, 0.02%)</title><rect x="90.8740%" y="661" width="0.0169%" height="15" fill="rgb(253,102,54)" fg:x="446385" fg:w="83"/><text x="91.1240%" y="671.50"></text></g><g><title>__x64_sys_futex (16,403 samples, 3.34%)</title><rect x="87.5584%" y="773" width="3.3393%" height="15" fill="rgb(250,173,47)" fg:x="430098" fg:w="16403"/><text x="87.8084%" y="783.50">__x..</text></g><g><title>do_futex (16,361 samples, 3.33%)</title><rect x="87.5669%" y="757" width="3.3307%" height="15" fill="rgb(232,142,7)" fg:x="430140" fg:w="16361"/><text x="87.8169%" y="767.50">do_..</text></g><g><title>futex_wake (467 samples, 0.10%)</title><rect x="90.8026%" y="741" width="0.0951%" height="15" fill="rgb(230,157,47)" fg:x="446034" fg:w="467"/><text x="91.0526%" y="751.50"></text></g><g><title>wake_up_q (376 samples, 0.08%)</title><rect x="90.8211%" y="725" width="0.0765%" height="15" fill="rgb(214,177,35)" fg:x="446125" fg:w="376"/><text x="91.0711%" y="735.50"></text></g><g><title>try_to_wake_up (368 samples, 0.07%)</title><rect x="90.8227%" y="709" width="0.0749%" height="15" fill="rgb(234,119,46)" fg:x="446133" fg:w="368"/><text x="91.0727%" y="719.50"></text></g><g><title>__split_vma (84 samples, 0.02%)</title><rect x="90.9101%" y="725" width="0.0171%" height="15" fill="rgb(241,180,50)" fg:x="446562" fg:w="84"/><text x="91.1601%" y="735.50"></text></g><g><title>free_unref_page_list (60 samples, 0.01%)</title><rect x="90.9658%" y="677" width="0.0122%" height="15" fill="rgb(221,54,25)" fg:x="446836" fg:w="60"/><text x="91.2158%" y="687.50"></text></g><g><title>tlb_finish_mmu (197 samples, 0.04%)</title><rect x="90.9441%" y="709" width="0.0401%" height="15" fill="rgb(209,157,44)" fg:x="446729" fg:w="197"/><text x="91.1941%" y="719.50"></text></g><g><title>release_pages (143 samples, 0.03%)</title><rect x="90.9550%" y="693" width="0.0291%" height="15" fill="rgb(246,115,41)" fg:x="446783" fg:w="143"/><text x="91.2050%" y="703.50"></text></g><g><title>unmap_page_range (126 samples, 0.03%)</title><rect x="90.9844%" y="693" width="0.0257%" height="15" fill="rgb(229,86,1)" fg:x="446927" fg:w="126"/><text x="91.2344%" y="703.50"></text></g><g><title>__do_munmap (503 samples, 0.10%)</title><rect x="90.9078%" y="741" width="0.1024%" height="15" fill="rgb(240,108,53)" fg:x="446551" fg:w="503"/><text x="91.1578%" y="751.50"></text></g><g><title>unmap_region (389 samples, 0.08%)</title><rect x="90.9310%" y="725" width="0.0792%" height="15" fill="rgb(227,134,2)" fg:x="446665" fg:w="389"/><text x="91.1810%" y="735.50"></text></g><g><title>unmap_vmas (128 samples, 0.03%)</title><rect x="90.9842%" y="709" width="0.0261%" height="15" fill="rgb(213,129,25)" fg:x="446926" fg:w="128"/><text x="91.2342%" y="719.50"></text></g><g><title>__vm_munmap (511 samples, 0.10%)</title><rect x="90.9072%" y="757" width="0.1040%" height="15" fill="rgb(226,35,21)" fg:x="446548" fg:w="511"/><text x="91.1572%" y="767.50"></text></g><g><title>__x64_sys_munmap (514 samples, 0.10%)</title><rect x="90.9070%" y="773" width="0.1046%" height="15" fill="rgb(208,129,26)" fg:x="446547" fg:w="514"/><text x="91.1570%" y="783.50"></text></g><g><title>do_filp_open (129 samples, 0.03%)</title><rect x="91.0129%" y="741" width="0.0263%" height="15" fill="rgb(224,83,6)" fg:x="447067" fg:w="129"/><text x="91.2629%" y="751.50"></text></g><g><title>path_openat (129 samples, 0.03%)</title><rect x="91.0129%" y="725" width="0.0263%" height="15" fill="rgb(227,52,39)" fg:x="447067" fg:w="129"/><text x="91.2629%" y="735.50"></text></g><g><title>__x64_sys_open (145 samples, 0.03%)</title><rect x="91.0118%" y="773" width="0.0295%" height="15" fill="rgb(241,30,17)" fg:x="447062" fg:w="145"/><text x="91.2618%" y="783.50"></text></g><g><title>do_sys_openat2 (145 samples, 0.03%)</title><rect x="91.0118%" y="757" width="0.0295%" height="15" fill="rgb(246,186,42)" fg:x="447062" fg:w="145"/><text x="91.2618%" y="767.50"></text></g><g><title>_raw_spin_lock (79 samples, 0.02%)</title><rect x="91.0788%" y="725" width="0.0161%" height="15" fill="rgb(221,169,15)" fg:x="447391" fg:w="79"/><text x="91.3288%" y="735.50"></text></g><g><title>__alloc_fd (192 samples, 0.04%)</title><rect x="91.0619%" y="741" width="0.0391%" height="15" fill="rgb(235,108,21)" fg:x="447308" fg:w="192"/><text x="91.3119%" y="751.50"></text></g><g><title>__fd_install (54 samples, 0.01%)</title><rect x="91.1010%" y="741" width="0.0110%" height="15" fill="rgb(219,148,30)" fg:x="447500" fg:w="54"/><text x="91.3510%" y="751.50"></text></g><g><title>build_open_flags (54 samples, 0.01%)</title><rect x="91.1189%" y="741" width="0.0110%" height="15" fill="rgb(220,109,5)" fg:x="447588" fg:w="54"/><text x="91.3689%" y="751.50"></text></g><g><title>allocate_slab (52 samples, 0.01%)</title><rect x="91.2462%" y="629" width="0.0106%" height="15" fill="rgb(213,203,48)" fg:x="448213" fg:w="52"/><text x="91.4962%" y="639.50"></text></g><g><title>__slab_alloc (170 samples, 0.03%)</title><rect x="91.2305%" y="661" width="0.0346%" height="15" fill="rgb(244,71,33)" fg:x="448136" fg:w="170"/><text x="91.4805%" y="671.50"></text></g><g><title>___slab_alloc (156 samples, 0.03%)</title><rect x="91.2333%" y="645" width="0.0318%" height="15" fill="rgb(209,23,2)" fg:x="448150" fg:w="156"/><text x="91.4833%" y="655.50"></text></g><g><title>__mod_memcg_lruvec_state (81 samples, 0.02%)</title><rect x="91.3302%" y="645" width="0.0165%" height="15" fill="rgb(219,97,7)" fg:x="448626" fg:w="81"/><text x="91.5802%" y="655.50"></text></g><g><title>__mod_memcg_state.part.0 (54 samples, 0.01%)</title><rect x="91.3357%" y="629" width="0.0110%" height="15" fill="rgb(216,161,23)" fg:x="448653" fg:w="54"/><text x="91.5857%" y="639.50"></text></g><g><title>memcg_slab_post_alloc_hook (422 samples, 0.09%)</title><rect x="91.2651%" y="661" width="0.0859%" height="15" fill="rgb(207,45,42)" fg:x="448306" fg:w="422"/><text x="91.5151%" y="671.50"></text></g><g><title>memset_erms (61 samples, 0.01%)</title><rect x="91.3514%" y="661" width="0.0124%" height="15" fill="rgb(241,61,4)" fg:x="448730" fg:w="61"/><text x="91.6014%" y="671.50"></text></g><g><title>get_obj_cgroup_from_current (232 samples, 0.05%)</title><rect x="91.3769%" y="645" width="0.0472%" height="15" fill="rgb(236,170,1)" fg:x="448855" fg:w="232"/><text x="91.6269%" y="655.50"></text></g><g><title>obj_cgroup_charge (152 samples, 0.03%)</title><rect x="91.4241%" y="645" width="0.0309%" height="15" fill="rgb(239,72,5)" fg:x="449087" fg:w="152"/><text x="91.6741%" y="655.50"></text></g><g><title>kmem_cache_alloc (1,279 samples, 0.26%)</title><rect x="91.1953%" y="677" width="0.2604%" height="15" fill="rgb(214,13,50)" fg:x="447963" fg:w="1279"/><text x="91.4453%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (446 samples, 0.09%)</title><rect x="91.3648%" y="661" width="0.0908%" height="15" fill="rgb(224,88,9)" fg:x="448796" fg:w="446"/><text x="91.6148%" y="671.50"></text></g><g><title>apparmor_file_alloc_security (136 samples, 0.03%)</title><rect x="91.4593%" y="661" width="0.0277%" height="15" fill="rgb(238,192,34)" fg:x="449260" fg:w="136"/><text x="91.7093%" y="671.50"></text></g><g><title>memset_erms (56 samples, 0.01%)</title><rect x="91.5055%" y="645" width="0.0114%" height="15" fill="rgb(217,203,50)" fg:x="449487" fg:w="56"/><text x="91.7555%" y="655.50"></text></g><g><title>__alloc_file (1,732 samples, 0.35%)</title><rect x="91.1704%" y="693" width="0.3526%" height="15" fill="rgb(241,123,32)" fg:x="447841" fg:w="1732"/><text x="91.4204%" y="703.50"></text></g><g><title>security_file_alloc (331 samples, 0.07%)</title><rect x="91.4556%" y="677" width="0.0674%" height="15" fill="rgb(248,151,39)" fg:x="449242" fg:w="331"/><text x="91.7056%" y="687.50"></text></g><g><title>kmem_cache_alloc (177 samples, 0.04%)</title><rect x="91.4870%" y="661" width="0.0360%" height="15" fill="rgb(208,89,6)" fg:x="449396" fg:w="177"/><text x="91.7370%" y="671.50"></text></g><g><title>alloc_empty_file (1,775 samples, 0.36%)</title><rect x="91.1657%" y="709" width="0.3614%" height="15" fill="rgb(254,43,26)" fg:x="447818" fg:w="1775"/><text x="91.4157%" y="719.50"></text></g><g><title>errseq_sample (90 samples, 0.02%)</title><rect x="91.5792%" y="693" width="0.0183%" height="15" fill="rgb(216,158,13)" fg:x="449849" fg:w="90"/><text x="91.8292%" y="703.50"></text></g><g><title>lockref_get (96 samples, 0.02%)</title><rect x="91.6016%" y="693" width="0.0195%" height="15" fill="rgb(212,47,37)" fg:x="449959" fg:w="96"/><text x="91.8516%" y="703.50"></text></g><g><title>apparmor_file_open (149 samples, 0.03%)</title><rect x="91.6281%" y="677" width="0.0303%" height="15" fill="rgb(254,16,10)" fg:x="450089" fg:w="149"/><text x="91.8781%" y="687.50"></text></g><g><title>__srcu_read_lock (63 samples, 0.01%)</title><rect x="91.6771%" y="661" width="0.0128%" height="15" fill="rgb(223,228,16)" fg:x="450330" fg:w="63"/><text x="91.9271%" y="671.50"></text></g><g><title>__srcu_read_unlock (53 samples, 0.01%)</title><rect x="91.6900%" y="661" width="0.0108%" height="15" fill="rgb(249,108,50)" fg:x="450393" fg:w="53"/><text x="91.9400%" y="671.50"></text></g><g><title>tomoyo_check_open_permission (296 samples, 0.06%)</title><rect x="91.6584%" y="677" width="0.0603%" height="15" fill="rgb(208,220,5)" fg:x="450238" fg:w="296"/><text x="91.9084%" y="687.50"></text></g><g><title>tomoyo_init_request_info (76 samples, 0.02%)</title><rect x="91.7032%" y="661" width="0.0155%" height="15" fill="rgb(217,89,48)" fg:x="450458" fg:w="76"/><text x="91.9532%" y="671.50"></text></g><g><title>security_file_open (479 samples, 0.10%)</title><rect x="91.6238%" y="693" width="0.0975%" height="15" fill="rgb(212,113,41)" fg:x="450068" fg:w="479"/><text x="91.8738%" y="703.50"></text></g><g><title>do_dentry_open (947 samples, 0.19%)</title><rect x="91.5287%" y="709" width="0.1928%" height="15" fill="rgb(231,127,5)" fg:x="449601" fg:w="947"/><text x="91.7787%" y="719.50"></text></g><g><title>btrfs_dentry_delete (59 samples, 0.01%)</title><rect x="91.7331%" y="693" width="0.0120%" height="15" fill="rgb(217,141,17)" fg:x="450605" fg:w="59"/><text x="91.9831%" y="703.50"></text></g><g><title>dput (164 samples, 0.03%)</title><rect x="91.7250%" y="709" width="0.0334%" height="15" fill="rgb(245,125,54)" fg:x="450565" fg:w="164"/><text x="91.9750%" y="719.50"></text></g><g><title>lockref_put_or_lock (65 samples, 0.01%)</title><rect x="91.7451%" y="693" width="0.0132%" height="15" fill="rgb(248,125,3)" fg:x="450664" fg:w="65"/><text x="91.9951%" y="703.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.01%)</title><rect x="91.7470%" y="677" width="0.0114%" height="15" fill="rgb(236,119,51)" fg:x="450673" fg:w="56"/><text x="91.9970%" y="687.50"></text></g><g><title>btrfs_permission (94 samples, 0.02%)</title><rect x="92.2579%" y="677" width="0.0191%" height="15" fill="rgb(239,99,8)" fg:x="453183" fg:w="94"/><text x="92.5079%" y="687.50"></text></g><g><title>inode_permission.part.0 (1,543 samples, 0.31%)</title><rect x="92.0979%" y="693" width="0.3141%" height="15" fill="rgb(224,228,4)" fg:x="452397" fg:w="1543"/><text x="92.3479%" y="703.50"></text></g><g><title>generic_permission (663 samples, 0.13%)</title><rect x="92.2771%" y="677" width="0.1350%" height="15" fill="rgb(220,131,45)" fg:x="453277" fg:w="663"/><text x="92.5271%" y="687.50"></text></g><g><title>security_inode_permission (204 samples, 0.04%)</title><rect x="92.4120%" y="693" width="0.0415%" height="15" fill="rgb(215,62,5)" fg:x="453940" fg:w="204"/><text x="92.6620%" y="703.50"></text></g><g><title>lockref_put_or_lock (80 samples, 0.02%)</title><rect x="92.5875%" y="661" width="0.0163%" height="15" fill="rgb(253,12,24)" fg:x="454802" fg:w="80"/><text x="92.8375%" y="671.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="92.5898%" y="645" width="0.0140%" height="15" fill="rgb(248,120,50)" fg:x="454813" fg:w="69"/><text x="92.8398%" y="655.50"></text></g><g><title>dput (132 samples, 0.03%)</title><rect x="92.5778%" y="677" width="0.0269%" height="15" fill="rgb(245,194,10)" fg:x="454754" fg:w="132"/><text x="92.8278%" y="687.50"></text></g><g><title>_raw_spin_lock (872 samples, 0.18%)</title><rect x="92.8955%" y="645" width="0.1775%" height="15" fill="rgb(241,149,38)" fg:x="456315" fg:w="872"/><text x="93.1455%" y="655.50"></text></g><g><title>__d_lookup (1,651 samples, 0.34%)</title><rect x="92.7431%" y="661" width="0.3361%" height="15" fill="rgb(219,215,7)" fg:x="455566" fg:w="1651"/><text x="92.9931%" y="671.50"></text></g><g><title>__d_lookup_rcu (1,454 samples, 0.30%)</title><rect x="93.0792%" y="661" width="0.2960%" height="15" fill="rgb(208,120,31)" fg:x="457217" fg:w="1454"/><text x="93.3292%" y="671.50"></text></g><g><title>lookup_fast (3,793 samples, 0.77%)</title><rect x="92.6046%" y="677" width="0.7722%" height="15" fill="rgb(244,30,8)" fg:x="454886" fg:w="3793"/><text x="92.8546%" y="687.50"></text></g><g><title>__traverse_mounts (99 samples, 0.02%)</title><rect x="93.5918%" y="661" width="0.0202%" height="15" fill="rgb(238,35,44)" fg:x="459735" fg:w="99"/><text x="93.8418%" y="671.50"></text></g><g><title>lookup_mnt (52 samples, 0.01%)</title><rect x="93.6014%" y="645" width="0.0106%" height="15" fill="rgb(243,218,37)" fg:x="459782" fg:w="52"/><text x="93.8514%" y="655.50"></text></g><g><title>atime_needs_update (58 samples, 0.01%)</title><rect x="93.6128%" y="661" width="0.0118%" height="15" fill="rgb(218,169,10)" fg:x="459838" fg:w="58"/><text x="93.8628%" y="671.50"></text></g><g><title>_cond_resched (128 samples, 0.03%)</title><rect x="93.6628%" y="645" width="0.0261%" height="15" fill="rgb(221,144,10)" fg:x="460084" fg:w="128"/><text x="93.9128%" y="655.50"></text></g><g><title>rcu_all_qs (57 samples, 0.01%)</title><rect x="93.6773%" y="629" width="0.0116%" height="15" fill="rgb(226,41,38)" fg:x="460155" fg:w="57"/><text x="93.9273%" y="639.50"></text></g><g><title>dput (1,015 samples, 0.21%)</title><rect x="93.6246%" y="661" width="0.2066%" height="15" fill="rgb(228,3,1)" fg:x="459896" fg:w="1015"/><text x="93.8746%" y="671.50"></text></g><g><title>lockref_put_or_lock (698 samples, 0.14%)</title><rect x="93.6891%" y="645" width="0.1421%" height="15" fill="rgb(209,129,12)" fg:x="460213" fg:w="698"/><text x="93.9391%" y="655.50"></text></g><g><title>dput (127 samples, 0.03%)</title><rect x="93.8373%" y="645" width="0.0259%" height="15" fill="rgb(213,136,33)" fg:x="460941" fg:w="127"/><text x="94.0873%" y="655.50"></text></g><g><title>lockref_put_or_lock (83 samples, 0.02%)</title><rect x="93.8463%" y="629" width="0.0169%" height="15" fill="rgb(209,181,29)" fg:x="460985" fg:w="83"/><text x="94.0963%" y="639.50"></text></g><g><title>lockref_get (57 samples, 0.01%)</title><rect x="93.8632%" y="645" width="0.0116%" height="15" fill="rgb(234,173,18)" fg:x="461068" fg:w="57"/><text x="94.1132%" y="655.50"></text></g><g><title>nd_jump_root (241 samples, 0.05%)</title><rect x="93.8314%" y="661" width="0.0491%" height="15" fill="rgb(227,73,47)" fg:x="460912" fg:w="241"/><text x="94.0814%" y="671.50"></text></g><g><title>do_read_cache_page (184 samples, 0.04%)</title><rect x="93.8855%" y="645" width="0.0375%" height="15" fill="rgb(234,9,34)" fg:x="461178" fg:w="184"/><text x="94.1355%" y="655.50"></text></g><g><title>pagecache_get_page (144 samples, 0.03%)</title><rect x="93.8937%" y="629" width="0.0293%" height="15" fill="rgb(235,172,15)" fg:x="461218" fg:w="144"/><text x="94.1437%" y="639.50"></text></g><g><title>find_get_entry (99 samples, 0.02%)</title><rect x="93.9028%" y="613" width="0.0202%" height="15" fill="rgb(245,61,2)" fg:x="461263" fg:w="99"/><text x="94.1528%" y="623.50"></text></g><g><title>page_get_link (213 samples, 0.04%)</title><rect x="93.8805%" y="661" width="0.0434%" height="15" fill="rgb(238,39,47)" fg:x="461153" fg:w="213"/><text x="94.1305%" y="671.50"></text></g><g><title>__mnt_want_write (65 samples, 0.01%)</title><rect x="93.9293%" y="645" width="0.0132%" height="15" fill="rgb(234,37,24)" fg:x="461393" fg:w="65"/><text x="94.1793%" y="655.50"></text></g><g><title>touch_atime (128 samples, 0.03%)</title><rect x="93.9250%" y="661" width="0.0261%" height="15" fill="rgb(248,223,24)" fg:x="461372" fg:w="128"/><text x="94.1750%" y="671.50"></text></g><g><title>__legitimize_mnt (91 samples, 0.02%)</title><rect x="93.9599%" y="629" width="0.0185%" height="15" fill="rgb(223,12,15)" fg:x="461543" fg:w="91"/><text x="94.2099%" y="639.50"></text></g><g><title>__legitimize_path (237 samples, 0.05%)</title><rect x="93.9556%" y="645" width="0.0482%" height="15" fill="rgb(249,6,3)" fg:x="461522" fg:w="237"/><text x="94.2056%" y="655.50"></text></g><g><title>lockref_get_not_dead (125 samples, 0.03%)</title><rect x="93.9784%" y="629" width="0.0254%" height="15" fill="rgb(237,105,33)" fg:x="461634" fg:w="125"/><text x="94.2284%" y="639.50"></text></g><g><title>__legitimize_mnt (136 samples, 0.03%)</title><rect x="94.0128%" y="613" width="0.0277%" height="15" fill="rgb(252,208,35)" fg:x="461803" fg:w="136"/><text x="94.2628%" y="623.50"></text></g><g><title>legitimize_links (285 samples, 0.06%)</title><rect x="94.0038%" y="645" width="0.0580%" height="15" fill="rgb(215,181,35)" fg:x="461759" fg:w="285"/><text x="94.2538%" y="655.50"></text></g><g><title>__legitimize_path (265 samples, 0.05%)</title><rect x="94.0079%" y="629" width="0.0539%" height="15" fill="rgb(246,212,3)" fg:x="461779" fg:w="265"/><text x="94.2579%" y="639.50"></text></g><g><title>lockref_get_not_dead (105 samples, 0.02%)</title><rect x="94.0405%" y="613" width="0.0214%" height="15" fill="rgb(247,156,24)" fg:x="461939" fg:w="105"/><text x="94.2905%" y="623.50"></text></g><g><title>link_path_walk.part.0 (11,328 samples, 2.31%)</title><rect x="91.7584%" y="709" width="2.3061%" height="15" fill="rgb(248,9,31)" fg:x="450729" fg:w="11328"/><text x="92.0084%" y="719.50">l..</text></g><g><title>walk_component (7,913 samples, 1.61%)</title><rect x="92.4536%" y="693" width="1.6109%" height="15" fill="rgb(234,26,45)" fg:x="454144" fg:w="7913"/><text x="92.7036%" y="703.50"></text></g><g><title>step_into (3,308 samples, 0.67%)</title><rect x="93.3911%" y="677" width="0.6734%" height="15" fill="rgb(249,11,32)" fg:x="458749" fg:w="3308"/><text x="93.6411%" y="687.50"></text></g><g><title>try_to_unlazy (557 samples, 0.11%)</title><rect x="93.9511%" y="661" width="0.1134%" height="15" fill="rgb(249,162,33)" fg:x="461500" fg:w="557"/><text x="94.2011%" y="671.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="94.1758%" y="677" width="0.0214%" height="15" fill="rgb(232,4,32)" fg:x="462604" fg:w="105"/><text x="94.4258%" y="687.50"></text></g><g><title>__d_lookup (614 samples, 0.12%)</title><rect x="94.0730%" y="693" width="0.1250%" height="15" fill="rgb(212,5,45)" fg:x="462099" fg:w="614"/><text x="94.3230%" y="703.50"></text></g><g><title>lookup_fast (1,263 samples, 0.26%)</title><rect x="94.0645%" y="709" width="0.2571%" height="15" fill="rgb(227,95,13)" fg:x="462057" fg:w="1263"/><text x="94.3145%" y="719.50"></text></g><g><title>__d_lookup_rcu (607 samples, 0.12%)</title><rect x="94.1980%" y="693" width="0.1236%" height="15" fill="rgb(223,205,10)" fg:x="462713" fg:w="607"/><text x="94.4480%" y="703.50"></text></g><g><title>inode_permission.part.0 (163 samples, 0.03%)</title><rect x="94.3642%" y="693" width="0.0332%" height="15" fill="rgb(222,178,8)" fg:x="463529" fg:w="163"/><text x="94.6142%" y="703.50"></text></g><g><title>may_open (381 samples, 0.08%)</title><rect x="94.3216%" y="709" width="0.0776%" height="15" fill="rgb(216,13,22)" fg:x="463320" fg:w="381"/><text x="94.5716%" y="719.50"></text></g><g><title>page_put_link (56 samples, 0.01%)</title><rect x="94.4049%" y="709" width="0.0114%" height="15" fill="rgb(240,167,12)" fg:x="463729" fg:w="56"/><text x="94.6549%" y="719.50"></text></g><g><title>__fget_files (150 samples, 0.03%)</title><rect x="94.4324%" y="677" width="0.0305%" height="15" fill="rgb(235,68,35)" fg:x="463864" fg:w="150"/><text x="94.6824%" y="687.50"></text></g><g><title>__fget_light (162 samples, 0.03%)</title><rect x="94.4301%" y="693" width="0.0330%" height="15" fill="rgb(253,40,27)" fg:x="463853" fg:w="162"/><text x="94.6801%" y="703.50"></text></g><g><title>path_init (280 samples, 0.06%)</title><rect x="94.4163%" y="709" width="0.0570%" height="15" fill="rgb(214,19,28)" fg:x="463785" fg:w="280"/><text x="94.6663%" y="719.50"></text></g><g><title>atime_needs_update (242 samples, 0.05%)</title><rect x="94.5793%" y="693" width="0.0493%" height="15" fill="rgb(210,167,45)" fg:x="464586" fg:w="242"/><text x="94.8293%" y="703.50"></text></g><g><title>dput (90 samples, 0.02%)</title><rect x="94.6286%" y="693" width="0.0183%" height="15" fill="rgb(232,97,40)" fg:x="464828" fg:w="90"/><text x="94.8786%" y="703.50"></text></g><g><title>lockref_put_or_lock (73 samples, 0.01%)</title><rect x="94.6321%" y="677" width="0.0149%" height="15" fill="rgb(250,35,23)" fg:x="464845" fg:w="73"/><text x="94.8821%" y="687.50"></text></g><g><title>nd_jump_root (62 samples, 0.01%)</title><rect x="94.6469%" y="693" width="0.0126%" height="15" fill="rgb(248,47,53)" fg:x="464918" fg:w="62"/><text x="94.8969%" y="703.50"></text></g><g><title>__alloc_pages_nodemask (94 samples, 0.02%)</title><rect x="94.6842%" y="661" width="0.0191%" height="15" fill="rgb(226,58,50)" fg:x="465101" fg:w="94"/><text x="94.9342%" y="671.50"></text></g><g><title>get_page_from_freelist (84 samples, 0.02%)</title><rect x="94.6862%" y="645" width="0.0171%" height="15" fill="rgb(217,105,26)" fg:x="465111" fg:w="84"/><text x="94.9362%" y="655.50"></text></g><g><title>__add_to_page_cache_locked (76 samples, 0.02%)</title><rect x="94.7037%" y="645" width="0.0155%" height="15" fill="rgb(208,64,1)" fg:x="465197" fg:w="76"/><text x="94.9537%" y="655.50"></text></g><g><title>add_to_page_cache_lru (115 samples, 0.02%)</title><rect x="94.7033%" y="661" width="0.0234%" height="15" fill="rgb(214,80,1)" fg:x="465195" fg:w="115"/><text x="94.9533%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (57 samples, 0.01%)</title><rect x="94.7766%" y="581" width="0.0116%" height="15" fill="rgb(206,175,26)" fg:x="465555" fg:w="57"/><text x="95.0266%" y="591.50"></text></g><g><title>find_extent_buffer (78 samples, 0.02%)</title><rect x="94.7945%" y="565" width="0.0159%" height="15" fill="rgb(235,156,37)" fg:x="465643" fg:w="78"/><text x="95.0445%" y="575.50"></text></g><g><title>read_block_for_search.isra.0 (118 samples, 0.02%)</title><rect x="94.7882%" y="581" width="0.0240%" height="15" fill="rgb(213,100,9)" fg:x="465612" fg:w="118"/><text x="95.0382%" y="591.50"></text></g><g><title>btrfs_lookup_file_extent (221 samples, 0.04%)</title><rect x="94.7685%" y="613" width="0.0450%" height="15" fill="rgb(241,15,13)" fg:x="465515" fg:w="221"/><text x="95.0185%" y="623.50"></text></g><g><title>btrfs_search_slot (221 samples, 0.04%)</title><rect x="94.7685%" y="597" width="0.0450%" height="15" fill="rgb(205,97,43)" fg:x="465515" fg:w="221"/><text x="95.0185%" y="607.50"></text></g><g><title>btrfs_get_extent (459 samples, 0.09%)</title><rect x="94.7430%" y="629" width="0.0934%" height="15" fill="rgb(216,106,32)" fg:x="465390" fg:w="459"/><text x="94.9930%" y="639.50"></text></g><g><title>btrfs_do_readpage (547 samples, 0.11%)</title><rect x="94.7282%" y="645" width="0.1114%" height="15" fill="rgb(226,200,8)" fg:x="465317" fg:w="547"/><text x="94.9782%" y="655.50"></text></g><g><title>btrfs_readpage (626 samples, 0.13%)</title><rect x="94.7275%" y="661" width="0.1274%" height="15" fill="rgb(244,54,29)" fg:x="465314" fg:w="626"/><text x="94.9775%" y="671.50"></text></g><g><title>btrfs_lock_and_flush_ordered_range (76 samples, 0.02%)</title><rect x="94.8395%" y="645" width="0.0155%" height="15" fill="rgb(252,169,12)" fg:x="465864" fg:w="76"/><text x="95.0895%" y="655.50"></text></g><g><title>lock_extent_bits (61 samples, 0.01%)</title><rect x="94.8426%" y="629" width="0.0124%" height="15" fill="rgb(231,199,11)" fg:x="465879" fg:w="61"/><text x="95.0926%" y="639.50"></text></g><g><title>__set_extent_bit (58 samples, 0.01%)</title><rect x="94.8432%" y="613" width="0.0118%" height="15" fill="rgb(233,191,18)" fg:x="465882" fg:w="58"/><text x="95.0932%" y="623.50"></text></g><g><title>do_read_cache_page (850 samples, 0.17%)</title><rect x="94.6834%" y="677" width="0.1730%" height="15" fill="rgb(215,83,47)" fg:x="465097" fg:w="850"/><text x="94.9334%" y="687.50"></text></g><g><title>pagecache_get_page (330 samples, 0.07%)</title><rect x="94.8564%" y="677" width="0.0672%" height="15" fill="rgb(251,67,19)" fg:x="465947" fg:w="330"/><text x="95.1064%" y="687.50"></text></g><g><title>find_get_entry (295 samples, 0.06%)</title><rect x="94.8635%" y="661" width="0.0601%" height="15" fill="rgb(240,7,20)" fg:x="465982" fg:w="295"/><text x="95.1135%" y="671.50"></text></g><g><title>xas_load (71 samples, 0.01%)</title><rect x="94.9091%" y="645" width="0.0145%" height="15" fill="rgb(210,150,26)" fg:x="466206" fg:w="71"/><text x="95.1591%" y="655.50"></text></g><g><title>xas_start (64 samples, 0.01%)</title><rect x="94.9106%" y="629" width="0.0130%" height="15" fill="rgb(228,75,42)" fg:x="466213" fg:w="64"/><text x="95.1606%" y="639.50"></text></g><g><title>page_get_link (1,300 samples, 0.26%)</title><rect x="94.6595%" y="693" width="0.2647%" height="15" fill="rgb(237,134,48)" fg:x="464980" fg:w="1300"/><text x="94.9095%" y="703.50"></text></g><g><title>btrfs_delayed_update_inode (119 samples, 0.02%)</title><rect x="94.9332%" y="645" width="0.0242%" height="15" fill="rgb(205,80,50)" fg:x="466324" fg:w="119"/><text x="95.1832%" y="655.50"></text></g><g><title>btrfs_update_inode (131 samples, 0.03%)</title><rect x="94.9327%" y="661" width="0.0267%" height="15" fill="rgb(217,74,48)" fg:x="466322" fg:w="131"/><text x="95.1827%" y="671.50"></text></g><g><title>btrfs_dirty_inode (191 samples, 0.04%)</title><rect x="94.9285%" y="677" width="0.0389%" height="15" fill="rgb(205,82,50)" fg:x="466301" fg:w="191"/><text x="95.1785%" y="687.50"></text></g><g><title>touch_atime (226 samples, 0.05%)</title><rect x="94.9264%" y="693" width="0.0460%" height="15" fill="rgb(228,1,33)" fg:x="466291" fg:w="226"/><text x="95.1764%" y="703.50"></text></g><g><title>step_into (2,462 samples, 0.50%)</title><rect x="94.4739%" y="709" width="0.5012%" height="15" fill="rgb(214,50,23)" fg:x="464068" fg:w="2462"/><text x="94.7239%" y="719.50"></text></g><g><title>dput (158 samples, 0.03%)</title><rect x="94.9781%" y="693" width="0.0322%" height="15" fill="rgb(210,62,9)" fg:x="466545" fg:w="158"/><text x="95.2281%" y="703.50"></text></g><g><title>lockref_put_or_lock (107 samples, 0.02%)</title><rect x="94.9885%" y="677" width="0.0218%" height="15" fill="rgb(210,104,37)" fg:x="466596" fg:w="107"/><text x="95.2385%" y="687.50"></text></g><g><title>terminate_walk (230 samples, 0.05%)</title><rect x="94.9751%" y="709" width="0.0468%" height="15" fill="rgb(232,104,43)" fg:x="466530" fg:w="230"/><text x="95.2251%" y="719.50"></text></g><g><title>do_filp_open (19,126 samples, 3.89%)</title><rect x="91.1299%" y="741" width="3.8936%" height="15" fill="rgb(244,52,6)" fg:x="447642" fg:w="19126"/><text x="91.3799%" y="751.50">do_f..</text></g><g><title>path_openat (19,083 samples, 3.88%)</title><rect x="91.1387%" y="725" width="3.8849%" height="15" fill="rgb(211,174,52)" fg:x="447685" fg:w="19083"/><text x="91.3887%" y="735.50">path..</text></g><g><title>get_unused_fd_flags (50 samples, 0.01%)</title><rect x="95.0250%" y="741" width="0.0102%" height="15" fill="rgb(229,48,4)" fg:x="466775" fg:w="50"/><text x="95.2750%" y="751.50"></text></g><g><title>memset_erms (573 samples, 0.12%)</title><rect x="95.0767%" y="709" width="0.1167%" height="15" fill="rgb(205,155,16)" fg:x="467029" fg:w="573"/><text x="95.3267%" y="719.50"></text></g><g><title>kmem_cache_alloc (811 samples, 0.17%)</title><rect x="95.0443%" y="725" width="0.1651%" height="15" fill="rgb(211,141,53)" fg:x="466870" fg:w="811"/><text x="95.2943%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (79 samples, 0.02%)</title><rect x="95.1933%" y="709" width="0.0161%" height="15" fill="rgb(240,148,11)" fg:x="467602" fg:w="79"/><text x="95.4433%" y="719.50"></text></g><g><title>__check_heap_object (61 samples, 0.01%)</title><rect x="95.2717%" y="693" width="0.0124%" height="15" fill="rgb(214,45,23)" fg:x="467987" fg:w="61"/><text x="95.5217%" y="703.50"></text></g><g><title>__virt_addr_valid (164 samples, 0.03%)</title><rect x="95.2841%" y="693" width="0.0334%" height="15" fill="rgb(248,74,26)" fg:x="468048" fg:w="164"/><text x="95.5341%" y="703.50"></text></g><g><title>getname_flags.part.0 (1,386 samples, 0.28%)</title><rect x="95.0374%" y="741" width="0.2822%" height="15" fill="rgb(218,121,16)" fg:x="466836" fg:w="1386"/><text x="95.2874%" y="751.50"></text></g><g><title>strncpy_from_user (541 samples, 0.11%)</title><rect x="95.2094%" y="725" width="0.1101%" height="15" fill="rgb(218,10,47)" fg:x="467681" fg:w="541"/><text x="95.4594%" y="735.50"></text></g><g><title>__check_object_size (282 samples, 0.06%)</title><rect x="95.2621%" y="709" width="0.0574%" height="15" fill="rgb(227,99,14)" fg:x="467940" fg:w="282"/><text x="95.5121%" y="719.50"></text></g><g><title>kmem_cache_free (206 samples, 0.04%)</title><rect x="95.3195%" y="741" width="0.0419%" height="15" fill="rgb(229,83,46)" fg:x="468222" fg:w="206"/><text x="95.5695%" y="751.50"></text></g><g><title>__x64_sys_openat (21,232 samples, 4.32%)</title><rect x="91.0414%" y="773" width="4.3224%" height="15" fill="rgb(228,25,1)" fg:x="447207" fg:w="21232"/><text x="91.2914%" y="783.50">__x64..</text></g><g><title>do_sys_openat2 (21,197 samples, 4.32%)</title><rect x="91.0485%" y="757" width="4.3152%" height="15" fill="rgb(252,190,15)" fg:x="447242" fg:w="21197"/><text x="91.2985%" y="767.50">do_sy..</text></g><g><title>__fget_light (657 samples, 0.13%)</title><rect x="95.4926%" y="741" width="0.1338%" height="15" fill="rgb(213,103,51)" fg:x="469072" fg:w="657"/><text x="95.7426%" y="751.50"></text></g><g><title>__fget_files (589 samples, 0.12%)</title><rect x="95.5064%" y="725" width="0.1199%" height="15" fill="rgb(220,38,44)" fg:x="469140" fg:w="589"/><text x="95.7564%" y="735.50"></text></g><g><title>__fdget_pos (1,267 samples, 0.26%)</title><rect x="95.4470%" y="757" width="0.2579%" height="15" fill="rgb(210,45,26)" fg:x="468848" fg:w="1267"/><text x="95.6970%" y="767.50"></text></g><g><title>mutex_lock (386 samples, 0.08%)</title><rect x="95.6263%" y="741" width="0.0786%" height="15" fill="rgb(205,95,48)" fg:x="469729" fg:w="386"/><text x="95.8763%" y="751.50"></text></g><g><title>fput_many (296 samples, 0.06%)</title><rect x="95.7086%" y="757" width="0.0603%" height="15" fill="rgb(225,179,37)" fg:x="470133" fg:w="296"/><text x="95.9586%" y="767.50"></text></g><g><title>mutex_unlock (371 samples, 0.08%)</title><rect x="95.7688%" y="757" width="0.0755%" height="15" fill="rgb(230,209,3)" fg:x="470429" fg:w="371"/><text x="96.0188%" y="767.50"></text></g><g><title>__fsnotify_parent (453 samples, 0.09%)</title><rect x="95.9598%" y="741" width="0.0922%" height="15" fill="rgb(248,12,46)" fg:x="471367" fg:w="453"/><text x="96.2098%" y="751.50"></text></g><g><title>btrfs_file_read_iter (89 samples, 0.02%)</title><rect x="96.1284%" y="725" width="0.0181%" height="15" fill="rgb(234,18,0)" fg:x="472195" fg:w="89"/><text x="96.3784%" y="735.50"></text></g><g><title>_cond_resched (102 samples, 0.02%)</title><rect x="96.3761%" y="709" width="0.0208%" height="15" fill="rgb(238,197,14)" fg:x="473412" fg:w="102"/><text x="96.6261%" y="719.50"></text></g><g><title>_cond_resched (62 samples, 0.01%)</title><rect x="96.5005%" y="693" width="0.0126%" height="15" fill="rgb(251,162,48)" fg:x="474023" fg:w="62"/><text x="96.7505%" y="703.50"></text></g><g><title>asm_exc_page_fault (156 samples, 0.03%)</title><rect x="97.1819%" y="677" width="0.0318%" height="15" fill="rgb(237,73,42)" fg:x="477370" fg:w="156"/><text x="97.4319%" y="687.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="97.2018%" y="661" width="0.0118%" height="15" fill="rgb(211,108,8)" fg:x="477468" fg:w="58"/><text x="97.4518%" y="671.50"></text></g><g><title>do_user_addr_fault (57 samples, 0.01%)</title><rect x="97.2020%" y="645" width="0.0116%" height="15" fill="rgb(213,45,22)" fg:x="477469" fg:w="57"/><text x="97.4520%" y="655.50"></text></g><g><title>copy_user_enhanced_fast_string (3,453 samples, 0.70%)</title><rect x="96.5145%" y="693" width="0.7030%" height="15" fill="rgb(252,154,5)" fg:x="474092" fg:w="3453"/><text x="96.7645%" y="703.50"></text></g><g><title>copy_page_to_iter (4,064 samples, 0.83%)</title><rect x="96.3975%" y="709" width="0.8273%" height="15" fill="rgb(221,79,52)" fg:x="473517" fg:w="4064"/><text x="96.6475%" y="719.50"></text></g><g><title>mark_page_accessed (63 samples, 0.01%)</title><rect x="97.2248%" y="709" width="0.0128%" height="15" fill="rgb(229,220,36)" fg:x="477581" fg:w="63"/><text x="97.4748%" y="719.50"></text></g><g><title>pagecache_get_page (1,658 samples, 0.34%)</title><rect x="97.2377%" y="709" width="0.3375%" height="15" fill="rgb(211,17,16)" fg:x="477644" fg:w="1658"/><text x="97.4877%" y="719.50"></text></g><g><title>find_get_entry (1,389 samples, 0.28%)</title><rect x="97.2924%" y="693" width="0.2828%" height="15" fill="rgb(222,55,31)" fg:x="477913" fg:w="1389"/><text x="97.5424%" y="703.50"></text></g><g><title>xas_load (435 samples, 0.09%)</title><rect x="97.4866%" y="677" width="0.0886%" height="15" fill="rgb(221,221,31)" fg:x="478867" fg:w="435"/><text x="97.7366%" y="687.50"></text></g><g><title>xas_start (275 samples, 0.06%)</title><rect x="97.5192%" y="661" width="0.0560%" height="15" fill="rgb(227,168,26)" fg:x="479027" fg:w="275"/><text x="97.7692%" y="671.50"></text></g><g><title>generic_file_buffered_read (7,531 samples, 1.53%)</title><rect x="96.1465%" y="725" width="1.5331%" height="15" fill="rgb(224,139,9)" fg:x="472284" fg:w="7531"/><text x="96.3965%" y="735.50"></text></g><g><title>touch_atime (513 samples, 0.10%)</title><rect x="97.5752%" y="709" width="0.1044%" height="15" fill="rgb(254,172,0)" fg:x="479302" fg:w="513"/><text x="97.8252%" y="719.50"></text></g><g><title>atime_needs_update (396 samples, 0.08%)</title><rect x="97.5990%" y="693" width="0.0806%" height="15" fill="rgb(235,203,1)" fg:x="479419" fg:w="396"/><text x="97.8490%" y="703.50"></text></g><g><title>current_time (217 samples, 0.04%)</title><rect x="97.6354%" y="677" width="0.0442%" height="15" fill="rgb(216,205,24)" fg:x="479598" fg:w="217"/><text x="97.8854%" y="687.50"></text></g><g><title>new_sync_read (8,055 samples, 1.64%)</title><rect x="96.0524%" y="741" width="1.6398%" height="15" fill="rgb(233,24,6)" fg:x="471822" fg:w="8055"/><text x="96.3024%" y="751.50"></text></g><g><title>iov_iter_init (62 samples, 0.01%)</title><rect x="97.6796%" y="725" width="0.0126%" height="15" fill="rgb(244,110,9)" fg:x="479815" fg:w="62"/><text x="97.9296%" y="735.50"></text></g><g><title>rw_verify_area (104 samples, 0.02%)</title><rect x="97.6922%" y="741" width="0.0212%" height="15" fill="rgb(239,222,42)" fg:x="479877" fg:w="104"/><text x="97.9422%" y="751.50"></text></g><g><title>aa_file_perm (155 samples, 0.03%)</title><rect x="97.7800%" y="709" width="0.0316%" height="15" fill="rgb(218,145,13)" fg:x="480308" fg:w="155"/><text x="98.0300%" y="719.50"></text></g><g><title>apparmor_file_permission (303 samples, 0.06%)</title><rect x="97.7501%" y="725" width="0.0617%" height="15" fill="rgb(207,69,11)" fg:x="480161" fg:w="303"/><text x="98.0001%" y="735.50"></text></g><g><title>ksys_read (11,846 samples, 2.41%)</title><rect x="95.4006%" y="773" width="2.4116%" height="15" fill="rgb(220,223,22)" fg:x="468620" fg:w="11846"/><text x="95.6506%" y="783.50">ks..</text></g><g><title>vfs_read (9,666 samples, 1.97%)</title><rect x="95.8444%" y="757" width="1.9678%" height="15" fill="rgb(245,102,5)" fg:x="470800" fg:w="9666"/><text x="96.0944%" y="767.50">v..</text></g><g><title>security_file_permission (485 samples, 0.10%)</title><rect x="97.7134%" y="741" width="0.0987%" height="15" fill="rgb(211,148,2)" fg:x="479981" fg:w="485"/><text x="97.9634%" y="751.50"></text></g><g><title>syscall_enter_from_user_mode (171 samples, 0.03%)</title><rect x="97.8136%" y="773" width="0.0348%" height="15" fill="rgb(241,13,44)" fg:x="480473" fg:w="171"/><text x="98.0636%" y="783.50"></text></g><g><title>perf_iterate_sb (67 samples, 0.01%)</title><rect x="97.8635%" y="709" width="0.0136%" height="15" fill="rgb(219,137,21)" fg:x="480718" fg:w="67"/><text x="98.1135%" y="719.50"></text></g><g><title>perf_iterate_ctx (59 samples, 0.01%)</title><rect x="97.8651%" y="693" width="0.0120%" height="15" fill="rgb(242,206,5)" fg:x="480726" fg:w="59"/><text x="98.1151%" y="703.50"></text></g><g><title>perf_event_mmap (78 samples, 0.02%)</title><rect x="97.8616%" y="725" width="0.0159%" height="15" fill="rgb(217,114,22)" fg:x="480709" fg:w="78"/><text x="98.1116%" y="735.50"></text></g><g><title>vma_merge (51 samples, 0.01%)</title><rect x="97.8808%" y="725" width="0.0104%" height="15" fill="rgb(253,206,42)" fg:x="480803" fg:w="51"/><text x="98.1308%" y="735.50"></text></g><g><title>do_mmap (212 samples, 0.04%)</title><rect x="97.8484%" y="757" width="0.0432%" height="15" fill="rgb(236,102,18)" fg:x="480644" fg:w="212"/><text x="98.0984%" y="767.50"></text></g><g><title>mmap_region (163 samples, 0.03%)</title><rect x="97.8584%" y="741" width="0.0332%" height="15" fill="rgb(208,59,49)" fg:x="480693" fg:w="163"/><text x="98.1084%" y="751.50"></text></g><g><title>do_syscall_64 (53,178 samples, 10.83%)</title><rect x="87.0763%" y="789" width="10.8259%" height="15" fill="rgb(215,194,28)" fg:x="427730" fg:w="53178"/><text x="87.3263%" y="799.50">do_syscall_64</text></g><g><title>vm_mmap_pgoff (264 samples, 0.05%)</title><rect x="97.8484%" y="773" width="0.0537%" height="15" fill="rgb(243,207,11)" fg:x="480644" fg:w="264"/><text x="98.0984%" y="783.50"></text></g><g><title>do_group_exit (133 samples, 0.03%)</title><rect x="97.9870%" y="725" width="0.0271%" height="15" fill="rgb(254,179,35)" fg:x="481325" fg:w="133"/><text x="98.2370%" y="735.50"></text></g><g><title>do_exit (133 samples, 0.03%)</title><rect x="97.9870%" y="709" width="0.0271%" height="15" fill="rgb(235,97,3)" fg:x="481325" fg:w="133"/><text x="98.2370%" y="719.50"></text></g><g><title>arch_do_signal (185 samples, 0.04%)</title><rect x="97.9770%" y="757" width="0.0377%" height="15" fill="rgb(215,155,33)" fg:x="481276" fg:w="185"/><text x="98.2270%" y="767.50"></text></g><g><title>get_signal (185 samples, 0.04%)</title><rect x="97.9770%" y="741" width="0.0377%" height="15" fill="rgb(223,128,12)" fg:x="481276" fg:w="185"/><text x="98.2270%" y="751.50"></text></g><g><title>fpregs_assert_state_consistent (102 samples, 0.02%)</title><rect x="98.0184%" y="757" width="0.0208%" height="15" fill="rgb(208,157,18)" fg:x="481479" fg:w="102"/><text x="98.2684%" y="767.50"></text></g><g><title>switch_fpu_return (128 samples, 0.03%)</title><rect x="98.0485%" y="757" width="0.0261%" height="15" fill="rgb(249,70,54)" fg:x="481627" fg:w="128"/><text x="98.2985%" y="767.50"></text></g><g><title>copy_kernel_to_fpregs (85 samples, 0.02%)</title><rect x="98.0573%" y="741" width="0.0173%" height="15" fill="rgb(244,118,24)" fg:x="481670" fg:w="85"/><text x="98.3073%" y="751.50"></text></g><g><title>btrfs_release_file (121 samples, 0.02%)</title><rect x="98.1222%" y="725" width="0.0246%" height="15" fill="rgb(211,54,0)" fg:x="481989" fg:w="121"/><text x="98.3722%" y="735.50"></text></g><g><title>lockref_put_or_lock (77 samples, 0.02%)</title><rect x="98.1564%" y="709" width="0.0157%" height="15" fill="rgb(245,137,45)" fg:x="482157" fg:w="77"/><text x="98.4064%" y="719.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.01%)</title><rect x="98.1588%" y="693" width="0.0132%" height="15" fill="rgb(232,154,31)" fg:x="482169" fg:w="65"/><text x="98.4088%" y="703.50"></text></g><g><title>dput (127 samples, 0.03%)</title><rect x="98.1468%" y="725" width="0.0259%" height="15" fill="rgb(253,6,39)" fg:x="482110" fg:w="127"/><text x="98.3968%" y="735.50"></text></g><g><title>kmem_cache_free (141 samples, 0.03%)</title><rect x="98.1731%" y="725" width="0.0287%" height="15" fill="rgb(234,183,24)" fg:x="482239" fg:w="141"/><text x="98.4231%" y="735.50"></text></g><g><title>__fput (685 samples, 0.14%)</title><rect x="98.0915%" y="741" width="0.1395%" height="15" fill="rgb(252,84,40)" fg:x="481838" fg:w="685"/><text x="98.3415%" y="751.50"></text></g><g><title>security_file_free (79 samples, 0.02%)</title><rect x="98.2148%" y="725" width="0.0161%" height="15" fill="rgb(224,65,2)" fg:x="482444" fg:w="79"/><text x="98.4648%" y="735.50"></text></g><g><title>apparmor_file_free_security (60 samples, 0.01%)</title><rect x="98.2187%" y="709" width="0.0122%" height="15" fill="rgb(229,38,24)" fg:x="482463" fg:w="60"/><text x="98.4687%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55,408 samples, 11.28%)</title><rect x="87.0119%" y="805" width="11.2798%" height="15" fill="rgb(218,131,50)" fg:x="427414" fg:w="55408"/><text x="87.2619%" y="815.50">entry_SYSCALL_64_..</text></g><g><title>syscall_exit_to_user_mode (1,914 samples, 0.39%)</title><rect x="97.9021%" y="789" width="0.3896%" height="15" fill="rgb(233,106,18)" fg:x="480908" fg:w="1914"/><text x="98.1521%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (1,774 samples, 0.36%)</title><rect x="97.9306%" y="773" width="0.3611%" height="15" fill="rgb(220,216,11)" fg:x="481048" fg:w="1774"/><text x="98.1806%" y="783.50"></text></g><g><title>task_work_run (1,067 samples, 0.22%)</title><rect x="98.0746%" y="757" width="0.2172%" height="15" fill="rgb(251,100,45)" fg:x="481755" fg:w="1067"/><text x="98.3246%" y="767.50"></text></g><g><title>call_rcu (242 samples, 0.05%)</title><rect x="98.2425%" y="741" width="0.0493%" height="15" fill="rgb(235,143,32)" fg:x="482580" fg:w="242"/><text x="98.4925%" y="751.50"></text></g><g><title>rcu_segcblist_enqueue (140 samples, 0.03%)</title><rect x="98.2633%" y="725" width="0.0285%" height="15" fill="rgb(248,124,34)" fg:x="482682" fg:w="140"/><text x="98.5133%" y="735.50"></text></g><g><title>error_entry (260 samples, 0.05%)</title><rect x="98.2918%" y="805" width="0.0529%" height="15" fill="rgb(225,221,4)" fg:x="482822" fg:w="260"/><text x="98.5418%" y="815.50"></text></g><g><title>sync_regs (224 samples, 0.05%)</title><rect x="98.2991%" y="789" width="0.0456%" height="15" fill="rgb(242,27,43)" fg:x="482858" fg:w="224"/><text x="98.5491%" y="799.50"></text></g><g><title>calculate_sigpending (58 samples, 0.01%)</title><rect x="98.3514%" y="789" width="0.0118%" height="15" fill="rgb(227,54,8)" fg:x="483115" fg:w="58"/><text x="98.6014%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (5,087 samples, 1.04%)</title><rect x="98.4322%" y="757" width="1.0356%" height="15" fill="rgb(253,139,49)" fg:x="483512" fg:w="5087"/><text x="98.6822%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,944 samples, 1.01%)</title><rect x="98.4614%" y="741" width="1.0065%" height="15" fill="rgb(231,26,43)" fg:x="483655" fg:w="4944"/><text x="98.7114%" y="751.50"></text></g><g><title>native_write_msr (4,934 samples, 1.00%)</title><rect x="98.4634%" y="725" width="1.0045%" height="15" fill="rgb(207,121,39)" fg:x="483665" fg:w="4934"/><text x="98.7134%" y="735.50"></text></g><g><title>irq_work_run (57 samples, 0.01%)</title><rect x="99.4784%" y="693" width="0.0116%" height="15" fill="rgb(223,101,35)" fg:x="488651" fg:w="57"/><text x="99.7284%" y="703.50"></text></g><g><title>irq_work_run_list (57 samples, 0.01%)</title><rect x="99.4784%" y="677" width="0.0116%" height="15" fill="rgb(232,87,23)" fg:x="488651" fg:w="57"/><text x="99.7284%" y="687.50"></text></g><g><title>irq_work_single (54 samples, 0.01%)</title><rect x="99.4790%" y="661" width="0.0110%" height="15" fill="rgb(225,180,29)" fg:x="488654" fg:w="54"/><text x="99.7290%" y="671.50"></text></g><g><title>perf_pending_event (54 samples, 0.01%)</title><rect x="99.4790%" y="645" width="0.0110%" height="15" fill="rgb(225,25,17)" fg:x="488654" fg:w="54"/><text x="99.7290%" y="655.50"></text></g><g><title>asm_call_sysvec_on_stack (67 samples, 0.01%)</title><rect x="99.4772%" y="725" width="0.0136%" height="15" fill="rgb(223,8,52)" fg:x="488645" fg:w="67"/><text x="99.7272%" y="735.50"></text></g><g><title>__sysvec_irq_work (63 samples, 0.01%)</title><rect x="99.4780%" y="709" width="0.0128%" height="15" fill="rgb(246,42,21)" fg:x="488649" fg:w="63"/><text x="99.7280%" y="719.50"></text></g><g><title>asm_sysvec_irq_work (117 samples, 0.02%)</title><rect x="99.4683%" y="757" width="0.0238%" height="15" fill="rgb(205,64,43)" fg:x="488601" fg:w="117"/><text x="99.7183%" y="767.50"></text></g><g><title>sysvec_irq_work (81 samples, 0.02%)</title><rect x="99.4756%" y="741" width="0.0165%" height="15" fill="rgb(221,160,13)" fg:x="488637" fg:w="81"/><text x="99.7256%" y="751.50"></text></g><g><title>schedule_tail (5,553 samples, 1.13%)</title><rect x="98.3632%" y="789" width="1.1305%" height="15" fill="rgb(239,58,35)" fg:x="483173" fg:w="5553"/><text x="98.6132%" y="799.50"></text></g><g><title>finish_task_switch (5,524 samples, 1.12%)</title><rect x="98.3691%" y="773" width="1.1246%" height="15" fill="rgb(251,26,40)" fg:x="483202" fg:w="5524"/><text x="98.6191%" y="783.50"></text></g><g><title>ret_from_fork (5,676 samples, 1.16%)</title><rect x="98.3514%" y="805" width="1.1555%" height="15" fill="rgb(247,0,4)" fg:x="483115" fg:w="5676"/><text x="98.6014%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (65 samples, 0.01%)</title><rect x="99.4937%" y="789" width="0.0132%" height="15" fill="rgb(218,130,10)" fg:x="488726" fg:w="65"/><text x="99.7437%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (61 samples, 0.01%)</title><rect x="99.4945%" y="773" width="0.0124%" height="15" fill="rgb(239,32,7)" fg:x="488730" fg:w="61"/><text x="99.7445%" y="783.50"></text></g><g><title>switch_fpu_return (57 samples, 0.01%)</title><rect x="99.4953%" y="757" width="0.0116%" height="15" fill="rgb(210,192,24)" fg:x="488734" fg:w="57"/><text x="99.7453%" y="767.50"></text></g><g><title>syscall_return_via_sysret (313 samples, 0.06%)</title><rect x="99.5069%" y="805" width="0.0637%" height="15" fill="rgb(226,212,17)" fg:x="488791" fg:w="313"/><text x="99.7569%" y="815.50"></text></g><g><title>[zig] (92,387 samples, 18.81%)</title><rect x="80.7629%" y="821" width="18.8079%" height="15" fill="rgb(219,201,28)" fg:x="396718" fg:w="92387"/><text x="81.0129%" y="831.50">[zig]</text></g><g><title>asm_exc_page_fault (553 samples, 0.11%)</title><rect x="99.5713%" y="821" width="0.1126%" height="15" fill="rgb(235,207,41)" fg:x="489107" fg:w="553"/><text x="99.8213%" y="831.50"></text></g><g><title>page_remove_rmap (78 samples, 0.02%)</title><rect x="99.7510%" y="645" width="0.0159%" height="15" fill="rgb(241,95,54)" fg:x="489990" fg:w="78"/><text x="100.0010%" y="655.50"></text></g><g><title>exit_mmap (247 samples, 0.05%)</title><rect x="99.7178%" y="693" width="0.0503%" height="15" fill="rgb(248,12,23)" fg:x="489827" fg:w="247"/><text x="99.9678%" y="703.50"></text></g><g><title>unmap_vmas (194 samples, 0.04%)</title><rect x="99.7286%" y="677" width="0.0395%" height="15" fill="rgb(228,173,4)" fg:x="489880" fg:w="194"/><text x="99.9786%" y="687.50"></text></g><g><title>unmap_page_range (193 samples, 0.04%)</title><rect x="99.7288%" y="661" width="0.0393%" height="15" fill="rgb(254,99,5)" fg:x="489881" fg:w="193"/><text x="99.9788%" y="671.50"></text></g><g><title>mmput (248 samples, 0.05%)</title><rect x="99.7178%" y="709" width="0.0505%" height="15" fill="rgb(212,184,17)" fg:x="489827" fg:w="248"/><text x="99.9678%" y="719.50"></text></g><g><title>begin_new_exec (256 samples, 0.05%)</title><rect x="99.7168%" y="725" width="0.0521%" height="15" fill="rgb(252,174,1)" fg:x="489822" fg:w="256"/><text x="99.9668%" y="735.50"></text></g><g><title>__x64_sys_execve (294 samples, 0.06%)</title><rect x="99.7148%" y="789" width="0.0599%" height="15" fill="rgb(241,118,51)" fg:x="489812" fg:w="294"/><text x="99.9648%" y="799.50"></text></g><g><title>do_execveat_common (294 samples, 0.06%)</title><rect x="99.7148%" y="773" width="0.0599%" height="15" fill="rgb(227,94,47)" fg:x="489812" fg:w="294"/><text x="99.9648%" y="783.50"></text></g><g><title>bprm_execve (294 samples, 0.06%)</title><rect x="99.7148%" y="757" width="0.0599%" height="15" fill="rgb(229,104,2)" fg:x="489812" fg:w="294"/><text x="99.9648%" y="767.50"></text></g><g><title>load_elf_binary (294 samples, 0.06%)</title><rect x="99.7148%" y="741" width="0.0599%" height="15" fill="rgb(219,28,31)" fg:x="489812" fg:w="294"/><text x="99.9648%" y="751.50"></text></g><g><title>tlb_finish_mmu (66 samples, 0.01%)</title><rect x="99.7814%" y="709" width="0.0134%" height="15" fill="rgb(233,109,36)" fg:x="490139" fg:w="66"/><text x="100.0314%" y="719.50"></text></g><g><title>page_remove_rmap (106 samples, 0.02%)</title><rect x="99.8327%" y="677" width="0.0216%" height="15" fill="rgb(246,88,11)" fg:x="490391" fg:w="106"/><text x="100.0827%" y="687.50"></text></g><g><title>unmap_page_range (329 samples, 0.07%)</title><rect x="99.7948%" y="693" width="0.0670%" height="15" fill="rgb(209,212,17)" fg:x="490205" fg:w="329"/><text x="100.0448%" y="703.50"></text></g><g><title>mmput (405 samples, 0.08%)</title><rect x="99.7795%" y="741" width="0.0824%" height="15" fill="rgb(243,59,29)" fg:x="490130" fg:w="405"/><text x="100.0295%" y="751.50"></text></g><g><title>exit_mmap (405 samples, 0.08%)</title><rect x="99.7795%" y="725" width="0.0824%" height="15" fill="rgb(244,205,48)" fg:x="490130" fg:w="405"/><text x="100.0295%" y="735.50"></text></g><g><title>unmap_vmas (330 samples, 0.07%)</title><rect x="99.7948%" y="709" width="0.0672%" height="15" fill="rgb(227,30,6)" fg:x="490205" fg:w="330"/><text x="100.0448%" y="719.50"></text></g><g><title>__x64_sys_exit_group (420 samples, 0.09%)</title><rect x="99.7771%" y="789" width="0.0855%" height="15" fill="rgb(220,205,48)" fg:x="490118" fg:w="420"/><text x="100.0271%" y="799.50"></text></g><g><title>do_group_exit (420 samples, 0.09%)</title><rect x="99.7771%" y="773" width="0.0855%" height="15" fill="rgb(250,94,14)" fg:x="490118" fg:w="420"/><text x="100.0271%" y="783.50"></text></g><g><title>do_exit (420 samples, 0.09%)</title><rect x="99.7771%" y="757" width="0.0855%" height="15" fill="rgb(216,119,42)" fg:x="490118" fg:w="420"/><text x="100.0271%" y="767.50"></text></g><g><title>do_syscall_64 (749 samples, 0.15%)</title><rect x="99.7148%" y="805" width="0.1525%" height="15" fill="rgb(232,155,0)" fg:x="489812" fg:w="749"/><text x="99.9648%" y="815.50"></text></g><g><title>page_remove_rmap (98 samples, 0.02%)</title><rect x="99.9084%" y="645" width="0.0200%" height="15" fill="rgb(212,24,32)" fg:x="490763" fg:w="98"/><text x="100.1584%" y="655.50"></text></g><g><title>unmap_page_range (214 samples, 0.04%)</title><rect x="99.8876%" y="661" width="0.0436%" height="15" fill="rgb(216,69,20)" fg:x="490661" fg:w="214"/><text x="100.1376%" y="671.50"></text></g><g><title>mmput (264 samples, 0.05%)</title><rect x="99.8776%" y="709" width="0.0537%" height="15" fill="rgb(229,73,31)" fg:x="490612" fg:w="264"/><text x="100.1276%" y="719.50"></text></g><g><title>exit_mmap (262 samples, 0.05%)</title><rect x="99.8781%" y="693" width="0.0533%" height="15" fill="rgb(224,219,20)" fg:x="490614" fg:w="262"/><text x="100.1281%" y="703.50"></text></g><g><title>unmap_vmas (215 samples, 0.04%)</title><rect x="99.8876%" y="677" width="0.0438%" height="15" fill="rgb(215,146,41)" fg:x="490661" fg:w="215"/><text x="100.1376%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,228 samples, 0.25%)</title><rect x="99.6843%" y="821" width="0.2500%" height="15" fill="rgb(244,71,31)" fg:x="489662" fg:w="1228"/><text x="99.9343%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (329 samples, 0.07%)</title><rect x="99.8673%" y="805" width="0.0670%" height="15" fill="rgb(224,24,11)" fg:x="490561" fg:w="329"/><text x="100.1173%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (329 samples, 0.07%)</title><rect x="99.8673%" y="789" width="0.0670%" height="15" fill="rgb(229,76,15)" fg:x="490561" fg:w="329"/><text x="100.1173%" y="799.50"></text></g><g><title>arch_do_signal (329 samples, 0.07%)</title><rect x="99.8673%" y="773" width="0.0670%" height="15" fill="rgb(209,93,2)" fg:x="490561" fg:w="329"/><text x="100.1173%" y="783.50"></text></g><g><title>get_signal (329 samples, 0.07%)</title><rect x="99.8673%" y="757" width="0.0670%" height="15" fill="rgb(216,200,50)" fg:x="490561" fg:w="329"/><text x="100.1173%" y="767.50"></text></g><g><title>do_group_exit (329 samples, 0.07%)</title><rect x="99.8673%" y="741" width="0.0670%" height="15" fill="rgb(211,67,34)" fg:x="490561" fg:w="329"/><text x="100.1173%" y="751.50"></text></g><g><title>do_exit (329 samples, 0.07%)</title><rect x="99.8673%" y="725" width="0.0670%" height="15" fill="rgb(225,87,47)" fg:x="490561" fg:w="329"/><text x="100.1173%" y="735.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (240 samples, 0.05%)</title><rect x="99.9342%" y="821" width="0.0489%" height="15" fill="rgb(217,185,16)" fg:x="490890" fg:w="240"/><text x="100.1842%" y="831.50"></text></g><g><title>all (491,213 samples, 100%)</title><rect x="0.0000%" y="853" width="100.0000%" height="15" fill="rgb(205,0,0)" fg:x="0" fg:w="491213"/><text x="0.2500%" y="863.50"></text></g><g><title>zig (94,593 samples, 19.26%)</title><rect x="80.7430%" y="837" width="19.2570%" height="15" fill="rgb(207,116,45)" fg:x="396620" fg:w="94593"/><text x="80.9930%" y="847.50">zig</text></g><g><title>syscall_return_via_sysret (57 samples, 0.01%)</title><rect x="99.9884%" y="821" width="0.0116%" height="15" fill="rgb(221,156,26)" fg:x="491156" fg:w="57"/><text x="100.2384%" y="831.50"></text></g></svg></svg> -\ No newline at end of file diff --git a/results/zigcc-nosandbox-j1.svg b/results/zigcc-nosandbox-j1.svg @@ -1,491 +0,0 @@ -<?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="950" onload="init(evt)" viewBox="0 0 1200 950" 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="950" 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="933.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="933.00"> </text><svg id="frames" x="10" width="1180" total_samples="224606"><g><title>ActionLookupVal (33 samples, 0.01%)</title><rect x="0.0040%" y="885" width="0.0147%" height="15" fill="rgb(227,0,7)" fg:x="9" fg:w="33"/><text x="0.2540%" y="895.50"></text></g><g><title>_dl_update_slotinfo (123 samples, 0.05%)</title><rect x="0.3704%" y="853" width="0.0548%" height="15" fill="rgb(217,0,24)" fg:x="832" fg:w="123"/><text x="0.6204%" y="863.50"></text></g><g><title>[anon] (1,053 samples, 0.47%)</title><rect x="0.0383%" y="869" width="0.4688%" height="15" fill="rgb(221,193,54)" fg:x="86" fg:w="1053"/><text x="0.2883%" y="879.50"></text></g><g><title>update_get_addr (36 samples, 0.02%)</title><rect x="0.4911%" y="853" width="0.0160%" height="15" fill="rgb(248,212,6)" fg:x="1103" fg:w="36"/><text x="0.7411%" y="863.50"></text></g><g><title>[perf-501242.map] (120 samples, 0.05%)</title><rect x="0.5071%" y="869" width="0.0534%" height="15" fill="rgb(208,68,35)" fg:x="1139" fg:w="120"/><text x="0.7571%" y="879.50"></text></g><g><title>[unknown] (90 samples, 0.04%)</title><rect x="0.5605%" y="869" width="0.0401%" height="15" fill="rgb(232,128,0)" fg:x="1259" fg:w="90"/><text x="0.8105%" y="879.50"></text></g><g><title>jio_vsnprintf (41 samples, 0.02%)</title><rect x="0.6229%" y="725" width="0.0183%" height="15" fill="rgb(207,160,47)" fg:x="1399" fg:w="41"/><text x="0.8729%" y="735.50"></text></g><g><title>os::vsnprintf (41 samples, 0.02%)</title><rect x="0.6229%" y="709" width="0.0183%" height="15" fill="rgb(228,23,34)" fg:x="1399" fg:w="41"/><text x="0.8729%" y="719.50"></text></g><g><title>__vsnprintf_internal (41 samples, 0.02%)</title><rect x="0.6229%" y="693" width="0.0183%" height="15" fill="rgb(218,30,26)" fg:x="1399" fg:w="41"/><text x="0.8729%" y="703.50"></text></g><g><title>__vfprintf_internal (38 samples, 0.02%)</title><rect x="0.6242%" y="677" width="0.0169%" height="15" fill="rgb(220,122,19)" fg:x="1402" fg:w="38"/><text x="0.8742%" y="687.50"></text></g><g><title>CompileBroker::post_compile (47 samples, 0.02%)</title><rect x="0.6206%" y="757" width="0.0209%" height="15" fill="rgb(250,228,42)" fg:x="1394" fg:w="47"/><text x="0.8706%" y="767.50"></text></g><g><title>StringEventLog::log (46 samples, 0.02%)</title><rect x="0.6211%" y="741" width="0.0205%" height="15" fill="rgb(240,193,28)" fg:x="1395" fg:w="46"/><text x="0.8711%" y="751.50"></text></g><g><title>CompileBroker::set_last_compile (26 samples, 0.01%)</title><rect x="0.6416%" y="757" width="0.0116%" height="15" fill="rgb(216,20,37)" fg:x="1441" fg:w="26"/><text x="0.8916%" y="767.50"></text></g><g><title>Method::print_short_name (45 samples, 0.02%)</title><rect x="0.6545%" y="741" width="0.0200%" height="15" fill="rgb(206,188,39)" fg:x="1470" fg:w="45"/><text x="0.9045%" y="751.50"></text></g><g><title>CompileTask::print (77 samples, 0.03%)</title><rect x="0.6545%" y="757" width="0.0343%" height="15" fill="rgb(217,207,13)" fg:x="1470" fg:w="77"/><text x="0.9045%" y="767.50"></text></g><g><title>outputStream::print (32 samples, 0.01%)</title><rect x="0.6745%" y="741" width="0.0142%" height="15" fill="rgb(231,73,38)" fg:x="1515" fg:w="32"/><text x="0.9245%" y="751.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (32 samples, 0.01%)</title><rect x="0.6745%" y="725" width="0.0142%" height="15" fill="rgb(225,20,46)" fg:x="1515" fg:w="32"/><text x="0.9245%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (32 samples, 0.01%)</title><rect x="0.7244%" y="581" width="0.0142%" height="15" fill="rgb(210,31,41)" fg:x="1627" fg:w="32"/><text x="0.9744%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (43 samples, 0.02%)</title><rect x="0.7239%" y="597" width="0.0191%" height="15" fill="rgb(221,200,47)" fg:x="1626" fg:w="43"/><text x="0.9739%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (68 samples, 0.03%)</title><rect x="0.7226%" y="613" width="0.0303%" height="15" fill="rgb(226,26,5)" fg:x="1623" fg:w="68"/><text x="0.9726%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (101 samples, 0.04%)</title><rect x="0.7217%" y="629" width="0.0450%" height="15" fill="rgb(249,33,26)" fg:x="1621" fg:w="101"/><text x="0.9717%" y="639.50"></text></g><g><title>SubstitutionResolver::block_do (31 samples, 0.01%)</title><rect x="0.7529%" y="613" width="0.0138%" height="15" fill="rgb(235,183,28)" fg:x="1691" fg:w="31"/><text x="1.0029%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (149 samples, 0.07%)</title><rect x="0.7195%" y="661" width="0.0663%" height="15" fill="rgb(221,5,38)" fg:x="1616" fg:w="149"/><text x="0.9695%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (148 samples, 0.07%)</title><rect x="0.7199%" y="645" width="0.0659%" height="15" fill="rgb(247,18,42)" fg:x="1617" fg:w="148"/><text x="0.9699%" y="655.50"></text></g><g><title>SubstitutionResolver::block_do (43 samples, 0.02%)</title><rect x="0.7667%" y="629" width="0.0191%" height="15" fill="rgb(241,131,45)" fg:x="1722" fg:w="43"/><text x="1.0167%" y="639.50"></text></g><g><title>ValueMap::find_insert (35 samples, 0.02%)</title><rect x="0.7961%" y="661" width="0.0156%" height="15" fill="rgb(249,31,29)" fg:x="1788" fg:w="35"/><text x="1.0461%" y="671.50"></text></g><g><title>ValueMap::kill_memory (23 samples, 0.01%)</title><rect x="0.8134%" y="661" width="0.0102%" height="15" fill="rgb(225,111,53)" fg:x="1827" fg:w="23"/><text x="1.0634%" y="671.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (283 samples, 0.13%)</title><rect x="0.7003%" y="677" width="0.1260%" height="15" fill="rgb(238,160,17)" fg:x="1573" fg:w="283"/><text x="0.9503%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (25 samples, 0.01%)</title><rect x="0.8343%" y="565" width="0.0111%" height="15" fill="rgb(214,148,48)" fg:x="1874" fg:w="25"/><text x="1.0843%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (31 samples, 0.01%)</title><rect x="0.8343%" y="581" width="0.0138%" height="15" fill="rgb(232,36,49)" fg:x="1874" fg:w="31"/><text x="1.0843%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (48 samples, 0.02%)</title><rect x="0.8321%" y="597" width="0.0214%" height="15" fill="rgb(209,103,24)" fg:x="1869" fg:w="48"/><text x="1.0821%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (62 samples, 0.03%)</title><rect x="0.8308%" y="613" width="0.0276%" height="15" fill="rgb(229,88,8)" fg:x="1866" fg:w="62"/><text x="1.0808%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (81 samples, 0.04%)</title><rect x="0.8281%" y="645" width="0.0361%" height="15" fill="rgb(213,181,19)" fg:x="1860" fg:w="81"/><text x="1.0781%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (81 samples, 0.04%)</title><rect x="0.8281%" y="629" width="0.0361%" height="15" fill="rgb(254,191,54)" fg:x="1860" fg:w="81"/><text x="1.0781%" y="639.50"></text></g><g><title>ciMethod::get_method_blocks (25 samples, 0.01%)</title><rect x="0.9091%" y="565" width="0.0111%" height="15" fill="rgb(241,83,37)" fg:x="2042" fg:w="25"/><text x="1.1591%" y="575.50"></text></g><g><title>ciMethodBlocks::ciMethodBlocks (24 samples, 0.01%)</title><rect x="0.9096%" y="549" width="0.0107%" height="15" fill="rgb(233,36,39)" fg:x="2043" fg:w="24"/><text x="1.1596%" y="559.50"></text></g><g><title>BlockListBuilder::set_leaders (110 samples, 0.05%)</title><rect x="0.8731%" y="629" width="0.0490%" height="15" fill="rgb(226,3,54)" fg:x="1961" fg:w="110"/><text x="1.1231%" y="639.50"></text></g><g><title>ciMethod::bci_block_start (84 samples, 0.04%)</title><rect x="0.8847%" y="613" width="0.0374%" height="15" fill="rgb(245,192,40)" fg:x="1987" fg:w="84"/><text x="1.1347%" y="623.50"></text></g><g><title>MethodLiveness::compute_liveness (81 samples, 0.04%)</title><rect x="0.8860%" y="597" width="0.0361%" height="15" fill="rgb(238,167,29)" fg:x="1990" fg:w="81"/><text x="1.1360%" y="607.50"></text></g><g><title>MethodLiveness::init_basic_blocks (56 samples, 0.02%)</title><rect x="0.8971%" y="581" width="0.0249%" height="15" fill="rgb(232,182,51)" fg:x="2015" fg:w="56"/><text x="1.1471%" y="591.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (127 samples, 0.06%)</title><rect x="0.8673%" y="645" width="0.0565%" height="15" fill="rgb(231,60,39)" fg:x="1948" fg:w="127"/><text x="1.1173%" y="655.50"></text></g><g><title>GraphBuilder::connect_to_end (23 samples, 0.01%)</title><rect x="0.9310%" y="629" width="0.0102%" height="15" fill="rgb(208,69,12)" fg:x="2091" fg:w="23"/><text x="1.1810%" y="639.50"></text></g><g><title>BlockBegin::try_merge (41 samples, 0.02%)</title><rect x="0.9572%" y="613" width="0.0183%" height="15" fill="rgb(235,93,37)" fg:x="2150" fg:w="41"/><text x="1.2072%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (43 samples, 0.02%)</title><rect x="1.0111%" y="533" width="0.0191%" height="15" fill="rgb(213,116,39)" fg:x="2271" fg:w="43"/><text x="1.2611%" y="543.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (57 samples, 0.03%)</title><rect x="1.0067%" y="549" width="0.0254%" height="15" fill="rgb(222,207,29)" fg:x="2261" fg:w="57"/><text x="1.2567%" y="559.50"></text></g><g><title>ciField::ciField (80 samples, 0.04%)</title><rect x="1.0026%" y="565" width="0.0356%" height="15" fill="rgb(206,96,30)" fg:x="2252" fg:w="80"/><text x="1.2526%" y="575.50"></text></g><g><title>ciEnv::get_field_by_index (92 samples, 0.04%)</title><rect x="0.9982%" y="581" width="0.0410%" height="15" fill="rgb(218,138,4)" fg:x="2242" fg:w="92"/><text x="1.2482%" y="591.50"></text></g><g><title>ciBytecodeStream::get_field (106 samples, 0.05%)</title><rect x="0.9973%" y="597" width="0.0472%" height="15" fill="rgb(250,191,14)" fg:x="2240" fg:w="106"/><text x="1.2473%" y="607.50"></text></g><g><title>GraphBuilder::access_field (154 samples, 0.07%)</title><rect x="0.9790%" y="613" width="0.0686%" height="15" fill="rgb(239,60,40)" fg:x="2199" fg:w="154"/><text x="1.2290%" y="623.50"></text></g><g><title>GraphBuilder::append_with_bci (25 samples, 0.01%)</title><rect x="1.0921%" y="597" width="0.0111%" height="15" fill="rgb(206,27,48)" fg:x="2453" fg:w="25"/><text x="1.3421%" y="607.50"></text></g><g><title>BlockBegin::try_merge (44 samples, 0.02%)</title><rect x="1.1611%" y="533" width="0.0196%" height="15" fill="rgb(225,35,8)" fg:x="2608" fg:w="44"/><text x="1.4111%" y="543.50"></text></g><g><title>ciMethod::liveness_at_bci (23 samples, 0.01%)</title><rect x="1.1705%" y="517" width="0.0102%" height="15" fill="rgb(250,213,24)" fg:x="2629" fg:w="23"/><text x="1.4205%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (34 samples, 0.02%)</title><rect x="1.2057%" y="453" width="0.0151%" height="15" fill="rgb(247,123,22)" fg:x="2708" fg:w="34"/><text x="1.4557%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (44 samples, 0.02%)</title><rect x="1.2021%" y="469" width="0.0196%" height="15" fill="rgb(231,138,38)" fg:x="2700" fg:w="44"/><text x="1.4521%" y="479.50"></text></g><g><title>ciField::ciField (70 samples, 0.03%)</title><rect x="1.1972%" y="485" width="0.0312%" height="15" fill="rgb(231,145,46)" fg:x="2689" fg:w="70"/><text x="1.4472%" y="495.50"></text></g><g><title>ciEnv::get_field_by_index (76 samples, 0.03%)</title><rect x="1.1954%" y="501" width="0.0338%" height="15" fill="rgb(251,118,11)" fg:x="2685" fg:w="76"/><text x="1.4454%" y="511.50"></text></g><g><title>ciBytecodeStream::get_field (95 samples, 0.04%)</title><rect x="1.1950%" y="517" width="0.0423%" height="15" fill="rgb(217,147,25)" fg:x="2684" fg:w="95"/><text x="1.4450%" y="527.50"></text></g><g><title>GraphBuilder::access_field (126 samples, 0.06%)</title><rect x="1.1830%" y="533" width="0.0561%" height="15" fill="rgb(247,81,37)" fg:x="2657" fg:w="126"/><text x="1.4330%" y="543.50"></text></g><g><title>ciField::ciField (27 samples, 0.01%)</title><rect x="1.3076%" y="405" width="0.0120%" height="15" fill="rgb(209,12,38)" fg:x="2937" fg:w="27"/><text x="1.5576%" y="415.50"></text></g><g><title>ciEnv::get_field_by_index (31 samples, 0.01%)</title><rect x="1.3063%" y="421" width="0.0138%" height="15" fill="rgb(227,1,9)" fg:x="2934" fg:w="31"/><text x="1.5563%" y="431.50"></text></g><g><title>ciBytecodeStream::get_field (39 samples, 0.02%)</title><rect x="1.3058%" y="437" width="0.0174%" height="15" fill="rgb(248,47,43)" fg:x="2933" fg:w="39"/><text x="1.5558%" y="447.50"></text></g><g><title>GraphBuilder::access_field (55 samples, 0.02%)</title><rect x="1.3005%" y="453" width="0.0245%" height="15" fill="rgb(221,10,30)" fg:x="2921" fg:w="55"/><text x="1.5505%" y="463.50"></text></g><g><title>GraphBuilder::access_field (32 samples, 0.01%)</title><rect x="1.3557%" y="373" width="0.0142%" height="15" fill="rgb(210,229,1)" fg:x="3045" fg:w="32"/><text x="1.6057%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (29 samples, 0.01%)</title><rect x="1.3864%" y="277" width="0.0129%" height="15" fill="rgb(222,148,37)" fg:x="3114" fg:w="29"/><text x="1.6364%" y="287.50"></text></g><g><title>GraphBuilder::try_inline_full (29 samples, 0.01%)</title><rect x="1.3864%" y="261" width="0.0129%" height="15" fill="rgb(234,67,33)" fg:x="3114" fg:w="29"/><text x="1.6364%" y="271.50"></text></g><g><title>GraphBuilder::invoke (40 samples, 0.02%)</title><rect x="1.3855%" y="293" width="0.0178%" height="15" fill="rgb(247,98,35)" fg:x="3112" fg:w="40"/><text x="1.6355%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (62 samples, 0.03%)</title><rect x="1.3797%" y="325" width="0.0276%" height="15" fill="rgb(247,138,52)" fg:x="3099" fg:w="62"/><text x="1.6297%" y="335.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (60 samples, 0.03%)</title><rect x="1.3806%" y="309" width="0.0267%" height="15" fill="rgb(213,79,30)" fg:x="3101" fg:w="60"/><text x="1.6306%" y="319.50"></text></g><g><title>GraphBuilder::try_inline_full (98 samples, 0.04%)</title><rect x="1.3775%" y="341" width="0.0436%" height="15" fill="rgb(246,177,23)" fg:x="3094" fg:w="98"/><text x="1.6275%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (111 samples, 0.05%)</title><rect x="1.3775%" y="357" width="0.0494%" height="15" fill="rgb(230,62,27)" fg:x="3094" fg:w="111"/><text x="1.6275%" y="367.50"></text></g><g><title>ciBytecodeStream::get_method (33 samples, 0.01%)</title><rect x="1.4318%" y="357" width="0.0147%" height="15" fill="rgb(216,154,8)" fg:x="3216" fg:w="33"/><text x="1.6818%" y="367.50"></text></g><g><title>ciEnv::get_method_by_index_impl (25 samples, 0.01%)</title><rect x="1.4354%" y="341" width="0.0111%" height="15" fill="rgb(244,35,45)" fg:x="3224" fg:w="25"/><text x="1.6854%" y="351.50"></text></g><g><title>GraphBuilder::invoke (170 samples, 0.08%)</title><rect x="1.3740%" y="373" width="0.0757%" height="15" fill="rgb(251,115,12)" fg:x="3086" fg:w="170"/><text x="1.6240%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (240 samples, 0.11%)</title><rect x="1.3481%" y="405" width="0.1069%" height="15" fill="rgb(240,54,50)" fg:x="3028" fg:w="240"/><text x="1.5981%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (235 samples, 0.10%)</title><rect x="1.3504%" y="389" width="0.1046%" height="15" fill="rgb(233,84,52)" fg:x="3033" fg:w="235"/><text x="1.6004%" y="399.50"></text></g><g><title>GraphBuilder::push_scope (37 samples, 0.02%)</title><rect x="1.4563%" y="405" width="0.0165%" height="15" fill="rgb(207,117,47)" fg:x="3271" fg:w="37"/><text x="1.7063%" y="415.50"></text></g><g><title>ciMethodData::load_data (23 samples, 0.01%)</title><rect x="1.4764%" y="373" width="0.0102%" height="15" fill="rgb(249,43,39)" fg:x="3316" fg:w="23"/><text x="1.7264%" y="383.50"></text></g><g><title>ciMethod::ensure_method_data (38 samples, 0.02%)</title><rect x="1.4732%" y="405" width="0.0169%" height="15" fill="rgb(209,38,44)" fg:x="3309" fg:w="38"/><text x="1.7232%" y="415.50"></text></g><g><title>ciMethod::ensure_method_data (37 samples, 0.02%)</title><rect x="1.4737%" y="389" width="0.0165%" height="15" fill="rgb(236,212,23)" fg:x="3310" fg:w="37"/><text x="1.7237%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (334 samples, 0.15%)</title><rect x="1.3419%" y="421" width="0.1487%" height="15" fill="rgb(242,79,21)" fg:x="3014" fg:w="334"/><text x="1.5919%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (27 samples, 0.01%)</title><rect x="1.4924%" y="373" width="0.0120%" height="15" fill="rgb(211,96,35)" fg:x="3352" fg:w="27"/><text x="1.7424%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (27 samples, 0.01%)</title><rect x="1.4924%" y="357" width="0.0120%" height="15" fill="rgb(253,215,40)" fg:x="3352" fg:w="27"/><text x="1.7424%" y="367.50"></text></g><g><title>GraphBuilder::invoke (27 samples, 0.01%)</title><rect x="1.4924%" y="341" width="0.0120%" height="15" fill="rgb(211,81,21)" fg:x="3352" fg:w="27"/><text x="1.7424%" y="351.50"></text></g><g><title>GraphBuilder::try_inline (28 samples, 0.01%)</title><rect x="1.4924%" y="405" width="0.0125%" height="15" fill="rgb(208,190,38)" fg:x="3352" fg:w="28"/><text x="1.7424%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (28 samples, 0.01%)</title><rect x="1.4924%" y="389" width="0.0125%" height="15" fill="rgb(235,213,38)" fg:x="3352" fg:w="28"/><text x="1.7424%" y="399.50"></text></g><g><title>GraphBuilder::try_inline (370 samples, 0.16%)</title><rect x="1.3406%" y="437" width="0.1647%" height="15" fill="rgb(237,122,38)" fg:x="3011" fg:w="370"/><text x="1.5906%" y="447.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (29 samples, 0.01%)</title><rect x="1.4924%" y="421" width="0.0129%" height="15" fill="rgb(244,218,35)" fg:x="3352" fg:w="29"/><text x="1.7424%" y="431.50"></text></g><g><title>ciMethod::ciMethod (26 samples, 0.01%)</title><rect x="1.5289%" y="373" width="0.0116%" height="15" fill="rgb(240,68,47)" fg:x="3434" fg:w="26"/><text x="1.7789%" y="383.50"></text></g><g><title>ciBytecodeStream::get_method (67 samples, 0.03%)</title><rect x="1.5111%" y="437" width="0.0298%" height="15" fill="rgb(210,16,53)" fg:x="3394" fg:w="67"/><text x="1.7611%" y="447.50"></text></g><g><title>ciEnv::get_method_by_index_impl (63 samples, 0.03%)</title><rect x="1.5129%" y="421" width="0.0280%" height="15" fill="rgb(235,124,12)" fg:x="3398" fg:w="63"/><text x="1.7629%" y="431.50"></text></g><g><title>ciObjectFactory::get_metadata (31 samples, 0.01%)</title><rect x="1.5271%" y="405" width="0.0138%" height="15" fill="rgb(224,169,11)" fg:x="3430" fg:w="31"/><text x="1.7771%" y="415.50"></text></g><g><title>ciObjectFactory::create_new_metadata (30 samples, 0.01%)</title><rect x="1.5276%" y="389" width="0.0134%" height="15" fill="rgb(250,166,2)" fg:x="3431" fg:w="30"/><text x="1.7776%" y="399.50"></text></g><g><title>GraphBuilder::invoke (484 samples, 0.22%)</title><rect x="1.3343%" y="453" width="0.2155%" height="15" fill="rgb(242,216,29)" fg:x="2997" fg:w="484"/><text x="1.5843%" y="463.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (640 samples, 0.28%)</title><rect x="1.2818%" y="485" width="0.2849%" height="15" fill="rgb(230,116,27)" fg:x="2879" fg:w="640"/><text x="1.5318%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (635 samples, 0.28%)</title><rect x="1.2840%" y="469" width="0.2827%" height="15" fill="rgb(228,99,48)" fg:x="2884" fg:w="635"/><text x="1.5340%" y="479.50"></text></g><g><title>BlockListBuilder::set_leaders (43 samples, 0.02%)</title><rect x="1.5716%" y="453" width="0.0191%" height="15" fill="rgb(253,11,6)" fg:x="3530" fg:w="43"/><text x="1.8216%" y="463.50"></text></g><g><title>ciMethod::bci_block_start (25 samples, 0.01%)</title><rect x="1.5797%" y="437" width="0.0111%" height="15" fill="rgb(247,143,39)" fg:x="3548" fg:w="25"/><text x="1.8297%" y="447.50"></text></g><g><title>MethodLiveness::compute_liveness (24 samples, 0.01%)</title><rect x="1.5801%" y="421" width="0.0107%" height="15" fill="rgb(236,97,10)" fg:x="3549" fg:w="24"/><text x="1.8301%" y="431.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (52 samples, 0.02%)</title><rect x="1.5681%" y="469" width="0.0232%" height="15" fill="rgb(233,208,19)" fg:x="3522" fg:w="52"/><text x="1.8181%" y="479.50"></text></g><g><title>GraphBuilder::push_scope (74 samples, 0.03%)</title><rect x="1.5676%" y="485" width="0.0329%" height="15" fill="rgb(216,164,2)" fg:x="3521" fg:w="74"/><text x="1.8176%" y="495.50"></text></g><g><title>ciMethodData::load_data (32 samples, 0.01%)</title><rect x="1.6064%" y="453" width="0.0142%" height="15" fill="rgb(220,129,5)" fg:x="3608" fg:w="32"/><text x="1.8564%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (51 samples, 0.02%)</title><rect x="1.6024%" y="485" width="0.0227%" height="15" fill="rgb(242,17,10)" fg:x="3599" fg:w="51"/><text x="1.8524%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (50 samples, 0.02%)</title><rect x="1.6028%" y="469" width="0.0223%" height="15" fill="rgb(242,107,0)" fg:x="3600" fg:w="50"/><text x="1.8528%" y="479.50"></text></g><g><title>GraphBuilder::try_inline_full (797 samples, 0.35%)</title><rect x="1.2711%" y="501" width="0.3548%" height="15" fill="rgb(251,28,31)" fg:x="2855" fg:w="797"/><text x="1.5211%" y="511.50"></text></g><g><title>GraphBuilder::try_inline (826 samples, 0.37%)</title><rect x="1.2689%" y="517" width="0.3678%" height="15" fill="rgb(233,223,10)" fg:x="2850" fg:w="826"/><text x="1.5189%" y="527.50"></text></g><g><title>ciEnv::lookup_method (38 samples, 0.02%)</title><rect x="1.6580%" y="485" width="0.0169%" height="15" fill="rgb(215,21,27)" fg:x="3724" fg:w="38"/><text x="1.9080%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (27 samples, 0.01%)</title><rect x="1.7043%" y="421" width="0.0120%" height="15" fill="rgb(232,23,21)" fg:x="3828" fg:w="27"/><text x="1.9543%" y="431.50"></text></g><g><title>ciObjectFactory::get_metadata (101 samples, 0.04%)</title><rect x="1.6749%" y="485" width="0.0450%" height="15" fill="rgb(244,5,23)" fg:x="3762" fg:w="101"/><text x="1.9249%" y="495.50"></text></g><g><title>ciObjectFactory::create_new_metadata (92 samples, 0.04%)</title><rect x="1.6789%" y="469" width="0.0410%" height="15" fill="rgb(226,81,46)" fg:x="3771" fg:w="92"/><text x="1.9289%" y="479.50"></text></g><g><title>ciMethod::ciMethod (85 samples, 0.04%)</title><rect x="1.6821%" y="453" width="0.0378%" height="15" fill="rgb(247,70,30)" fg:x="3778" fg:w="85"/><text x="1.9321%" y="463.50"></text></g><g><title>ciSignature::ciSignature (67 samples, 0.03%)</title><rect x="1.6901%" y="437" width="0.0298%" height="15" fill="rgb(212,68,19)" fg:x="3796" fg:w="67"/><text x="1.9401%" y="447.50"></text></g><g><title>ciBytecodeStream::get_method (175 samples, 0.08%)</title><rect x="1.6438%" y="517" width="0.0779%" height="15" fill="rgb(240,187,13)" fg:x="3692" fg:w="175"/><text x="1.8938%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (165 samples, 0.07%)</title><rect x="1.6482%" y="501" width="0.0735%" height="15" fill="rgb(223,113,26)" fg:x="3702" fg:w="165"/><text x="1.8982%" y="511.50"></text></g><g><title>GraphBuilder::invoke (1,077 samples, 0.48%)</title><rect x="1.2511%" y="533" width="0.4795%" height="15" fill="rgb(206,192,2)" fg:x="2810" fg:w="1077"/><text x="1.5011%" y="543.50"></text></g><g><title>GraphBuilder::method_return (31 samples, 0.01%)</title><rect x="1.7324%" y="533" width="0.0138%" height="15" fill="rgb(241,108,4)" fg:x="3891" fg:w="31"/><text x="1.9824%" y="543.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,373 samples, 0.61%)</title><rect x="1.1424%" y="565" width="0.6113%" height="15" fill="rgb(247,173,49)" fg:x="2566" fg:w="1373"/><text x="1.3924%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,363 samples, 0.61%)</title><rect x="1.1469%" y="549" width="0.6068%" height="15" fill="rgb(224,114,35)" fg:x="2576" fg:w="1363"/><text x="1.3969%" y="559.50"></text></g><g><title>MethodLiveness::init_basic_blocks (26 samples, 0.01%)</title><rect x="1.7836%" y="485" width="0.0116%" height="15" fill="rgb(245,159,27)" fg:x="4006" fg:w="26"/><text x="2.0336%" y="495.50"></text></g><g><title>MethodLiveness::compute_liveness (41 samples, 0.02%)</title><rect x="1.7773%" y="501" width="0.0183%" height="15" fill="rgb(245,172,44)" fg:x="3992" fg:w="41"/><text x="2.0273%" y="511.50"></text></g><g><title>BlockListBuilder::set_leaders (63 samples, 0.03%)</title><rect x="1.7680%" y="533" width="0.0280%" height="15" fill="rgb(236,23,11)" fg:x="3971" fg:w="63"/><text x="2.0180%" y="543.50"></text></g><g><title>ciMethod::bci_block_start (42 samples, 0.02%)</title><rect x="1.7773%" y="517" width="0.0187%" height="15" fill="rgb(205,117,38)" fg:x="3992" fg:w="42"/><text x="2.0273%" y="527.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (88 samples, 0.04%)</title><rect x="1.7609%" y="549" width="0.0392%" height="15" fill="rgb(237,72,25)" fg:x="3955" fg:w="88"/><text x="2.0109%" y="559.50"></text></g><g><title>GraphBuilder::push_scope (139 samples, 0.06%)</title><rect x="1.7591%" y="565" width="0.0619%" height="15" fill="rgb(244,70,9)" fg:x="3951" fg:w="139"/><text x="2.0091%" y="575.50"></text></g><g><title>Method::build_interpreter_method_data (47 samples, 0.02%)</title><rect x="1.8308%" y="533" width="0.0209%" height="15" fill="rgb(217,125,39)" fg:x="4112" fg:w="47"/><text x="2.0808%" y="543.50"></text></g><g><title>MethodData::allocate (46 samples, 0.02%)</title><rect x="1.8312%" y="517" width="0.0205%" height="15" fill="rgb(235,36,10)" fg:x="4113" fg:w="46"/><text x="2.0812%" y="527.50"></text></g><g><title>ciMethodData::load_data (51 samples, 0.02%)</title><rect x="1.8526%" y="533" width="0.0227%" height="15" fill="rgb(251,123,47)" fg:x="4161" fg:w="51"/><text x="2.1026%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (116 samples, 0.05%)</title><rect x="1.8285%" y="565" width="0.0516%" height="15" fill="rgb(221,13,13)" fg:x="4107" fg:w="116"/><text x="2.0785%" y="575.50"></text></g><g><title>ciMethod::ensure_method_data (112 samples, 0.05%)</title><rect x="1.8303%" y="549" width="0.0499%" height="15" fill="rgb(238,131,9)" fg:x="4111" fg:w="112"/><text x="2.0803%" y="559.50"></text></g><g><title>GraphBuilder::try_inline_full (1,720 samples, 0.77%)</title><rect x="1.1175%" y="581" width="0.7658%" height="15" fill="rgb(211,50,8)" fg:x="2510" fg:w="1720"/><text x="1.3675%" y="591.50"></text></g><g><title>GraphBuilder::try_inline (1,738 samples, 0.77%)</title><rect x="1.1113%" y="597" width="0.7738%" height="15" fill="rgb(245,182,24)" fg:x="2496" fg:w="1738"/><text x="1.3613%" y="607.50"></text></g><g><title>LinkResolver::resolve_method (31 samples, 0.01%)</title><rect x="1.9407%" y="533" width="0.0138%" height="15" fill="rgb(242,14,37)" fg:x="4359" fg:w="31"/><text x="2.1907%" y="543.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (36 samples, 0.02%)</title><rect x="1.9390%" y="549" width="0.0160%" height="15" fill="rgb(246,228,12)" fg:x="4355" fg:w="36"/><text x="2.1890%" y="559.50"></text></g><g><title>LinkResolver::resolve_static_call_or_null (24 samples, 0.01%)</title><rect x="1.9599%" y="549" width="0.0107%" height="15" fill="rgb(213,55,15)" fg:x="4402" fg:w="24"/><text x="2.2099%" y="559.50"></text></g><g><title>ciEnv::lookup_method (94 samples, 0.04%)</title><rect x="1.9296%" y="565" width="0.0419%" height="15" fill="rgb(209,9,3)" fg:x="4334" fg:w="94"/><text x="2.1796%" y="575.50"></text></g><g><title>SignatureStream::as_symbol (27 samples, 0.01%)</title><rect x="1.9888%" y="501" width="0.0120%" height="15" fill="rgb(230,59,30)" fg:x="4467" fg:w="27"/><text x="2.2388%" y="511.50"></text></g><g><title>SymbolTable::lookup (27 samples, 0.01%)</title><rect x="1.9888%" y="485" width="0.0120%" height="15" fill="rgb(209,121,21)" fg:x="4467" fg:w="27"/><text x="2.2388%" y="495.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (23 samples, 0.01%)</title><rect x="2.0057%" y="485" width="0.0102%" height="15" fill="rgb(220,109,13)" fg:x="4505" fg:w="23"/><text x="2.2557%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (41 samples, 0.02%)</title><rect x="2.0035%" y="501" width="0.0183%" height="15" fill="rgb(232,18,1)" fg:x="4500" fg:w="41"/><text x="2.2535%" y="511.50"></text></g><g><title>ciMethod::ciMethod (109 samples, 0.05%)</title><rect x="1.9768%" y="533" width="0.0485%" height="15" fill="rgb(215,41,42)" fg:x="4440" fg:w="109"/><text x="2.2268%" y="543.50"></text></g><g><title>ciSignature::ciSignature (92 samples, 0.04%)</title><rect x="1.9844%" y="517" width="0.0410%" height="15" fill="rgb(224,123,36)" fg:x="4457" fg:w="92"/><text x="2.2344%" y="527.50"></text></g><g><title>ciObjectFactory::get_metadata (127 samples, 0.06%)</title><rect x="1.9715%" y="565" width="0.0565%" height="15" fill="rgb(240,125,3)" fg:x="4428" fg:w="127"/><text x="2.2215%" y="575.50"></text></g><g><title>ciObjectFactory::create_new_metadata (120 samples, 0.05%)</title><rect x="1.9746%" y="549" width="0.0534%" height="15" fill="rgb(205,98,50)" fg:x="4435" fg:w="120"/><text x="2.2246%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (258 samples, 0.11%)</title><rect x="1.9158%" y="581" width="0.1149%" height="15" fill="rgb(205,185,37)" fg:x="4303" fg:w="258"/><text x="2.1658%" y="591.50"></text></g><g><title>ciBytecodeStream::get_method (284 samples, 0.13%)</title><rect x="1.9051%" y="597" width="0.1264%" height="15" fill="rgb(238,207,15)" fg:x="4279" fg:w="284"/><text x="2.1551%" y="607.50"></text></g><g><title>InstanceKlass::find_instance_method (24 samples, 0.01%)</title><rect x="2.0400%" y="533" width="0.0107%" height="15" fill="rgb(213,199,42)" fg:x="4582" fg:w="24"/><text x="2.2900%" y="543.50"></text></g><g><title>InstanceKlass::find_method_index (24 samples, 0.01%)</title><rect x="2.0400%" y="517" width="0.0107%" height="15" fill="rgb(235,201,11)" fg:x="4582" fg:w="24"/><text x="2.2900%" y="527.50"></text></g><g><title>Dependencies::find_unique_concrete_method (26 samples, 0.01%)</title><rect x="2.0400%" y="581" width="0.0116%" height="15" fill="rgb(207,46,11)" fg:x="4582" fg:w="26"/><text x="2.2900%" y="591.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (26 samples, 0.01%)</title><rect x="2.0400%" y="565" width="0.0116%" height="15" fill="rgb(241,35,35)" fg:x="4582" fg:w="26"/><text x="2.2900%" y="575.50"></text></g><g><title>ClassHierarchyWalker::is_witness (26 samples, 0.01%)</title><rect x="2.0400%" y="549" width="0.0116%" height="15" fill="rgb(243,32,47)" fg:x="4582" fg:w="26"/><text x="2.2900%" y="559.50"></text></g><g><title>ciMethod::find_monomorphic_target (37 samples, 0.02%)</title><rect x="2.0396%" y="597" width="0.0165%" height="15" fill="rgb(247,202,23)" fg:x="4581" fg:w="37"/><text x="2.2896%" y="607.50"></text></g><g><title>GraphBuilder::invoke (2,200 samples, 0.98%)</title><rect x="1.0797%" y="613" width="0.9795%" height="15" fill="rgb(219,102,11)" fg:x="2425" fg:w="2200"/><text x="1.3297%" y="623.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,588 samples, 1.15%)</title><rect x="0.9412%" y="629" width="1.1522%" height="15" fill="rgb(243,110,44)" fg:x="2114" fg:w="2588"/><text x="1.1912%" y="639.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,627 samples, 1.17%)</title><rect x="0.9283%" y="645" width="1.1696%" height="15" fill="rgb(222,74,54)" fg:x="2085" fg:w="2627"/><text x="1.1783%" y="655.50"></text></g><g><title>GraphBuilder::setup_start_block (30 samples, 0.01%)</title><rect x="2.0983%" y="645" width="0.0134%" height="15" fill="rgb(216,99,12)" fg:x="4713" fg:w="30"/><text x="2.3483%" y="655.50"></text></g><g><title>GraphBuilder::GraphBuilder (2,898 samples, 1.29%)</title><rect x="0.8263%" y="661" width="1.2903%" height="15" fill="rgb(226,22,26)" fg:x="1856" fg:w="2898"/><text x="1.0763%" y="671.50"></text></g><g><title>IR::IR (2,910 samples, 1.30%)</title><rect x="0.8263%" y="677" width="1.2956%" height="15" fill="rgb(217,163,10)" fg:x="1856" fg:w="2910"/><text x="1.0763%" y="687.50"></text></g><g><title>ComputeLinearScanOrder::compute_order (33 samples, 0.01%)</title><rect x="2.1251%" y="645" width="0.0147%" height="15" fill="rgb(213,25,53)" fg:x="4773" fg:w="33"/><text x="2.3751%" y="655.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (57 samples, 0.03%)</title><rect x="2.1219%" y="661" width="0.0254%" height="15" fill="rgb(252,105,26)" fg:x="4766" fg:w="57"/><text x="2.3719%" y="671.50"></text></g><g><title>IR::compute_code (62 samples, 0.03%)</title><rect x="2.1219%" y="677" width="0.0276%" height="15" fill="rgb(220,39,43)" fg:x="4766" fg:w="62"/><text x="2.3719%" y="687.50"></text></g><g><title>BlockList::iterate_backward (66 samples, 0.03%)</title><rect x="2.1504%" y="661" width="0.0294%" height="15" fill="rgb(229,68,48)" fg:x="4830" fg:w="66"/><text x="2.4004%" y="671.50"></text></g><g><title>UseCountComputer::block_do (65 samples, 0.03%)</title><rect x="2.1509%" y="645" width="0.0289%" height="15" fill="rgb(252,8,32)" fg:x="4831" fg:w="65"/><text x="2.4009%" y="655.50"></text></g><g><title>ValueStack::values_do (23 samples, 0.01%)</title><rect x="2.1696%" y="629" width="0.0102%" height="15" fill="rgb(223,20,43)" fg:x="4873" fg:w="23"/><text x="2.4196%" y="639.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (24 samples, 0.01%)</title><rect x="2.1798%" y="661" width="0.0107%" height="15" fill="rgb(229,81,49)" fg:x="4896" fg:w="24"/><text x="2.4298%" y="671.50"></text></g><g><title>IR::compute_use_counts (93 samples, 0.04%)</title><rect x="2.1495%" y="677" width="0.0414%" height="15" fill="rgb(236,28,36)" fg:x="4828" fg:w="93"/><text x="2.3995%" y="687.50"></text></g><g><title>NullCheckEliminator::iterate_one (132 samples, 0.06%)</title><rect x="2.2007%" y="645" width="0.0588%" height="15" fill="rgb(249,185,26)" fg:x="4943" fg:w="132"/><text x="2.4507%" y="655.50"></text></g><g><title>IR::eliminate_null_checks (167 samples, 0.07%)</title><rect x="2.1909%" y="677" width="0.0744%" height="15" fill="rgb(249,174,33)" fg:x="4921" fg:w="167"/><text x="2.4409%" y="687.50"></text></g><g><title>Optimizer::eliminate_null_checks (167 samples, 0.07%)</title><rect x="2.1909%" y="661" width="0.0744%" height="15" fill="rgb(233,201,37)" fg:x="4921" fg:w="167"/><text x="2.4409%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (27 samples, 0.01%)</title><rect x="2.2689%" y="613" width="0.0120%" height="15" fill="rgb(221,78,26)" fg:x="5096" fg:w="27"/><text x="2.5189%" y="623.50"></text></g><g><title>IR::optimize_blocks (45 samples, 0.02%)</title><rect x="2.2653%" y="677" width="0.0200%" height="15" fill="rgb(250,127,30)" fg:x="5088" fg:w="45"/><text x="2.5153%" y="687.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (38 samples, 0.02%)</title><rect x="2.2684%" y="661" width="0.0169%" height="15" fill="rgb(230,49,44)" fg:x="5095" fg:w="38"/><text x="2.5184%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (38 samples, 0.02%)</title><rect x="2.2684%" y="645" width="0.0169%" height="15" fill="rgb(229,67,23)" fg:x="5095" fg:w="38"/><text x="2.5184%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (38 samples, 0.02%)</title><rect x="2.2684%" y="629" width="0.0169%" height="15" fill="rgb(249,83,47)" fg:x="5095" fg:w="38"/><text x="2.5184%" y="639.50"></text></g><g><title>IR::split_critical_edges (37 samples, 0.02%)</title><rect x="2.2853%" y="677" width="0.0165%" height="15" fill="rgb(215,43,3)" fg:x="5133" fg:w="37"/><text x="2.5353%" y="687.50"></text></g><g><title>RangeCheckElimination::eliminate (40 samples, 0.02%)</title><rect x="2.3036%" y="677" width="0.0178%" height="15" fill="rgb(238,154,13)" fg:x="5174" fg:w="40"/><text x="2.5536%" y="687.50"></text></g><g><title>Compilation::build_hir (3,649 samples, 1.62%)</title><rect x="0.6972%" y="693" width="1.6246%" height="15" fill="rgb(219,56,2)" fg:x="1566" fg:w="3649"/><text x="0.9472%" y="703.50"></text></g><g><title>LIR_Assembler::add_call_info (31 samples, 0.01%)</title><rect x="2.3566%" y="645" width="0.0138%" height="15" fill="rgb(233,0,4)" fg:x="5293" fg:w="31"/><text x="2.6066%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (31 samples, 0.01%)</title><rect x="2.3566%" y="629" width="0.0138%" height="15" fill="rgb(235,30,7)" fg:x="5293" fg:w="31"/><text x="2.6066%" y="639.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (24 samples, 0.01%)</title><rect x="2.3824%" y="581" width="0.0107%" height="15" fill="rgb(250,79,13)" fg:x="5351" fg:w="24"/><text x="2.6324%" y="591.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (34 samples, 0.02%)</title><rect x="2.3797%" y="597" width="0.0151%" height="15" fill="rgb(211,146,34)" fg:x="5345" fg:w="34"/><text x="2.6297%" y="607.50"></text></g><g><title>DebugInformationRecorder::describe_scope (27 samples, 0.01%)</title><rect x="2.3949%" y="597" width="0.0120%" height="15" fill="rgb(228,22,38)" fg:x="5379" fg:w="27"/><text x="2.6449%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (82 samples, 0.04%)</title><rect x="2.3757%" y="629" width="0.0365%" height="15" fill="rgb(235,168,5)" fg:x="5336" fg:w="82"/><text x="2.6257%" y="639.50"></text></g><g><title>CodeEmitInfo::record_debug_info (82 samples, 0.04%)</title><rect x="2.3757%" y="613" width="0.0365%" height="15" fill="rgb(221,155,16)" fg:x="5336" fg:w="82"/><text x="2.6257%" y="623.50"></text></g><g><title>LIR_Assembler::call (96 samples, 0.04%)</title><rect x="2.3717%" y="645" width="0.0427%" height="15" fill="rgb(215,215,53)" fg:x="5327" fg:w="96"/><text x="2.6217%" y="655.50"></text></g><g><title>LIR_Assembler::emit_static_call_stub (25 samples, 0.01%)</title><rect x="2.4145%" y="645" width="0.0111%" height="15" fill="rgb(223,4,10)" fg:x="5423" fg:w="25"/><text x="2.6645%" y="655.50"></text></g><g><title>LIR_Assembler::emit_call (168 samples, 0.07%)</title><rect x="2.3543%" y="661" width="0.0748%" height="15" fill="rgb(234,103,6)" fg:x="5288" fg:w="168"/><text x="2.6043%" y="671.50"></text></g><g><title>LIR_Assembler::check_icache (30 samples, 0.01%)</title><rect x="2.4323%" y="645" width="0.0134%" height="15" fill="rgb(227,97,0)" fg:x="5463" fg:w="30"/><text x="2.6823%" y="655.50"></text></g><g><title>C1_MacroAssembler::inline_cache_check (25 samples, 0.01%)</title><rect x="2.4345%" y="629" width="0.0111%" height="15" fill="rgb(234,150,53)" fg:x="5468" fg:w="25"/><text x="2.6845%" y="639.50"></text></g><g><title>LIR_Assembler::emit_op0 (38 samples, 0.02%)</title><rect x="2.4291%" y="661" width="0.0169%" height="15" fill="rgb(228,201,54)" fg:x="5456" fg:w="38"/><text x="2.6791%" y="671.50"></text></g><g><title>LIR_Assembler::mem2reg (29 samples, 0.01%)</title><rect x="2.4621%" y="645" width="0.0129%" height="15" fill="rgb(222,22,37)" fg:x="5530" fg:w="29"/><text x="2.7121%" y="655.50"></text></g><g><title>LIR_Assembler::emit_op1 (120 samples, 0.05%)</title><rect x="2.4461%" y="661" width="0.0534%" height="15" fill="rgb(237,53,32)" fg:x="5494" fg:w="120"/><text x="2.6961%" y="671.50"></text></g><g><title>LIR_Assembler::emit_profile_call (45 samples, 0.02%)</title><rect x="2.5062%" y="661" width="0.0200%" height="15" fill="rgb(233,25,53)" fg:x="5629" fg:w="45"/><text x="2.7562%" y="671.50"></text></g><g><title>LIR_Assembler::emit_typecheck_helper (26 samples, 0.01%)</title><rect x="2.5627%" y="629" width="0.0116%" height="15" fill="rgb(210,40,34)" fg:x="5756" fg:w="26"/><text x="2.8127%" y="639.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (39 samples, 0.02%)</title><rect x="2.5609%" y="661" width="0.0174%" height="15" fill="rgb(241,220,44)" fg:x="5752" fg:w="39"/><text x="2.8109%" y="671.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (39 samples, 0.02%)</title><rect x="2.5609%" y="645" width="0.0174%" height="15" fill="rgb(235,28,35)" fg:x="5752" fg:w="39"/><text x="2.8109%" y="655.50"></text></g><g><title>LIR_Assembler::emit_code (572 samples, 0.25%)</title><rect x="2.3272%" y="677" width="0.2547%" height="15" fill="rgb(210,56,17)" fg:x="5227" fg:w="572"/><text x="2.5772%" y="687.50"></text></g><g><title>MacroAssembler::stop (28 samples, 0.01%)</title><rect x="2.5868%" y="661" width="0.0125%" height="15" fill="rgb(224,130,29)" fg:x="5810" fg:w="28"/><text x="2.8368%" y="671.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (32 samples, 0.01%)</title><rect x="2.5854%" y="677" width="0.0142%" height="15" fill="rgb(235,212,8)" fg:x="5807" fg:w="32"/><text x="2.8354%" y="687.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (28 samples, 0.01%)</title><rect x="2.6157%" y="613" width="0.0125%" height="15" fill="rgb(223,33,50)" fg:x="5875" fg:w="28"/><text x="2.8657%" y="623.50"></text></g><g><title>DebugInformationRecorder::describe_scope (37 samples, 0.02%)</title><rect x="2.6282%" y="613" width="0.0165%" height="15" fill="rgb(219,149,13)" fg:x="5903" fg:w="37"/><text x="2.8782%" y="623.50"></text></g><g><title>LIR_Assembler::add_call_info (93 samples, 0.04%)</title><rect x="2.6081%" y="645" width="0.0414%" height="15" fill="rgb(250,156,29)" fg:x="5858" fg:w="93"/><text x="2.8581%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (92 samples, 0.04%)</title><rect x="2.6086%" y="629" width="0.0410%" height="15" fill="rgb(216,193,19)" fg:x="5859" fg:w="92"/><text x="2.8586%" y="639.50"></text></g><g><title>CounterOverflowStub::emit_code (119 samples, 0.05%)</title><rect x="2.6055%" y="661" width="0.0530%" height="15" fill="rgb(216,135,14)" fg:x="5852" fg:w="119"/><text x="2.8555%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (56 samples, 0.02%)</title><rect x="2.6660%" y="645" width="0.0249%" height="15" fill="rgb(241,47,5)" fg:x="5988" fg:w="56"/><text x="2.9160%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (56 samples, 0.02%)</title><rect x="2.6660%" y="629" width="0.0249%" height="15" fill="rgb(233,42,35)" fg:x="5988" fg:w="56"/><text x="2.9160%" y="639.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (66 samples, 0.03%)</title><rect x="2.6629%" y="661" width="0.0294%" height="15" fill="rgb(231,13,6)" fg:x="5981" fg:w="66"/><text x="2.9129%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (23 samples, 0.01%)</title><rect x="2.6941%" y="645" width="0.0102%" height="15" fill="rgb(207,181,40)" fg:x="6051" fg:w="23"/><text x="2.9441%" y="655.50"></text></g><g><title>NewInstanceStub::emit_code (32 samples, 0.01%)</title><rect x="2.6932%" y="661" width="0.0142%" height="15" fill="rgb(254,173,49)" fg:x="6049" fg:w="32"/><text x="2.9432%" y="671.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (283 samples, 0.13%)</title><rect x="2.5997%" y="677" width="0.1260%" height="15" fill="rgb(221,1,38)" fg:x="5839" fg:w="283"/><text x="2.8497%" y="687.50"></text></g><g><title>Compilation::emit_code_body (926 samples, 0.41%)</title><rect x="2.3218%" y="693" width="0.4123%" height="15" fill="rgb(206,124,46)" fg:x="5215" fg:w="926"/><text x="2.5718%" y="703.50"></text></g><g><title>LIRGenerator::do_Base (76 samples, 0.03%)</title><rect x="2.7564%" y="645" width="0.0338%" height="15" fill="rgb(249,21,11)" fg:x="6191" fg:w="76"/><text x="3.0064%" y="655.50"></text></g><g><title>LIRGenerator::move_to_phi (42 samples, 0.02%)</title><rect x="2.8045%" y="613" width="0.0187%" height="15" fill="rgb(222,201,40)" fg:x="6299" fg:w="42"/><text x="3.0545%" y="623.50"></text></g><g><title>PhiResolver::create_node (35 samples, 0.02%)</title><rect x="2.8076%" y="597" width="0.0156%" height="15" fill="rgb(235,61,29)" fg:x="6306" fg:w="35"/><text x="3.0576%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (173 samples, 0.08%)</title><rect x="2.7982%" y="629" width="0.0770%" height="15" fill="rgb(219,207,3)" fg:x="6285" fg:w="173"/><text x="3.0482%" y="639.50"></text></g><g><title>PhiResolverState::reset (113 samples, 0.05%)</title><rect x="2.8249%" y="613" width="0.0503%" height="15" fill="rgb(222,56,46)" fg:x="6345" fg:w="113"/><text x="3.0749%" y="623.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (29 samples, 0.01%)</title><rect x="2.8623%" y="597" width="0.0129%" height="15" fill="rgb(239,76,54)" fg:x="6429" fg:w="29"/><text x="3.1123%" y="607.50"></text></g><g><title>LIRGenerator::do_Goto (193 samples, 0.09%)</title><rect x="2.7916%" y="645" width="0.0859%" height="15" fill="rgb(231,124,27)" fg:x="6270" fg:w="193"/><text x="3.0416%" y="655.50"></text></g><g><title>LIRGenerator::do_If (48 samples, 0.02%)</title><rect x="2.8775%" y="645" width="0.0214%" height="15" fill="rgb(249,195,6)" fg:x="6463" fg:w="48"/><text x="3.1275%" y="655.50"></text></g><g><title>MethodLiveness::get_liveness_at (30 samples, 0.01%)</title><rect x="2.9389%" y="597" width="0.0134%" height="15" fill="rgb(237,174,47)" fg:x="6601" fg:w="30"/><text x="3.1889%" y="607.50"></text></g><g><title>LIRGenerator::state_for (48 samples, 0.02%)</title><rect x="2.9314%" y="629" width="0.0214%" height="15" fill="rgb(206,201,31)" fg:x="6584" fg:w="48"/><text x="3.1814%" y="639.50"></text></g><g><title>ciMethod::liveness_at_bci (32 samples, 0.01%)</title><rect x="2.9385%" y="613" width="0.0142%" height="15" fill="rgb(231,57,52)" fg:x="6600" fg:w="32"/><text x="3.1885%" y="623.50"></text></g><g><title>LIRGenerator::do_Invoke (120 samples, 0.05%)</title><rect x="2.9015%" y="645" width="0.0534%" height="15" fill="rgb(248,177,22)" fg:x="6517" fg:w="120"/><text x="3.1515%" y="655.50"></text></g><g><title>LIRGenerator::do_LoadField (27 samples, 0.01%)</title><rect x="2.9550%" y="645" width="0.0120%" height="15" fill="rgb(215,211,37)" fg:x="6637" fg:w="27"/><text x="3.2050%" y="655.50"></text></g><g><title>LIRGenerator::do_NewInstance (26 samples, 0.01%)</title><rect x="2.9714%" y="645" width="0.0116%" height="15" fill="rgb(241,128,51)" fg:x="6674" fg:w="26"/><text x="3.2214%" y="655.50"></text></g><g><title>MethodLiveness::get_liveness_at (28 samples, 0.01%)</title><rect x="3.0133%" y="597" width="0.0125%" height="15" fill="rgb(227,165,31)" fg:x="6768" fg:w="28"/><text x="3.2633%" y="607.50"></text></g><g><title>LIRGenerator::state_for (46 samples, 0.02%)</title><rect x="3.0066%" y="629" width="0.0205%" height="15" fill="rgb(228,167,24)" fg:x="6753" fg:w="46"/><text x="3.2566%" y="639.50"></text></g><g><title>ciMethod::liveness_at_bci (32 samples, 0.01%)</title><rect x="3.0128%" y="613" width="0.0142%" height="15" fill="rgb(228,143,12)" fg:x="6767" fg:w="32"/><text x="3.2628%" y="623.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (80 samples, 0.04%)</title><rect x="2.9964%" y="645" width="0.0356%" height="15" fill="rgb(249,149,8)" fg:x="6730" fg:w="80"/><text x="3.2464%" y="655.50"></text></g><g><title>LIRGenerator::access_store_at (24 samples, 0.01%)</title><rect x="3.0391%" y="629" width="0.0107%" height="15" fill="rgb(243,35,44)" fg:x="6826" fg:w="24"/><text x="3.2891%" y="639.50"></text></g><g><title>LIRGenerator::do_StoreField (30 samples, 0.01%)</title><rect x="3.0378%" y="645" width="0.0134%" height="15" fill="rgb(246,89,9)" fg:x="6823" fg:w="30"/><text x="3.2878%" y="655.50"></text></g><g><title>LIRGenerator::block_do (728 samples, 0.32%)</title><rect x="2.7368%" y="661" width="0.3241%" height="15" fill="rgb(233,213,13)" fg:x="6147" fg:w="728"/><text x="2.9868%" y="671.50"></text></g><g><title>BlockList::iterate_forward (732 samples, 0.33%)</title><rect x="2.7355%" y="677" width="0.3259%" height="15" fill="rgb(233,141,41)" fg:x="6144" fg:w="732"/><text x="2.9855%" y="687.50"></text></g><g><title>ControlFlowOptimizer::optimize (23 samples, 0.01%)</title><rect x="3.0614%" y="677" width="0.0102%" height="15" fill="rgb(239,167,4)" fg:x="6876" fg:w="23"/><text x="3.3114%" y="687.50"></text></g><g><title>EdgeMoveOptimizer::optimize (23 samples, 0.01%)</title><rect x="3.0756%" y="661" width="0.0102%" height="15" fill="rgb(209,217,16)" fg:x="6908" fg:w="23"/><text x="3.3256%" y="671.50"></text></g><g><title>IntervalWalker::walk_to (114 samples, 0.05%)</title><rect x="3.1166%" y="629" width="0.0508%" height="15" fill="rgb(219,88,35)" fg:x="7000" fg:w="114"/><text x="3.3666%" y="639.50"></text></g><g><title>LinearScanWalker::find_free_reg (91 samples, 0.04%)</title><rect x="3.2065%" y="597" width="0.0405%" height="15" fill="rgb(220,193,23)" fg:x="7202" fg:w="91"/><text x="3.4565%" y="607.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (119 samples, 0.05%)</title><rect x="3.2519%" y="597" width="0.0530%" height="15" fill="rgb(230,90,52)" fg:x="7304" fg:w="119"/><text x="3.5019%" y="607.50"></text></g><g><title>Range::intersects_at (25 samples, 0.01%)</title><rect x="3.2938%" y="581" width="0.0111%" height="15" fill="rgb(252,106,19)" fg:x="7398" fg:w="25"/><text x="3.5438%" y="591.50"></text></g><g><title>Interval::new_split_child (25 samples, 0.01%)</title><rect x="3.3187%" y="565" width="0.0111%" height="15" fill="rgb(206,74,20)" fg:x="7454" fg:w="25"/><text x="3.5687%" y="575.50"></text></g><g><title>Interval::split (45 samples, 0.02%)</title><rect x="3.3111%" y="581" width="0.0200%" height="15" fill="rgb(230,138,44)" fg:x="7437" fg:w="45"/><text x="3.5611%" y="591.50"></text></g><g><title>LinearScanWalker::split_before_usage (68 samples, 0.03%)</title><rect x="3.3049%" y="597" width="0.0303%" height="15" fill="rgb(235,182,43)" fg:x="7423" fg:w="68"/><text x="3.5549%" y="607.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (361 samples, 0.16%)</title><rect x="3.1776%" y="613" width="0.1607%" height="15" fill="rgb(242,16,51)" fg:x="7137" fg:w="361"/><text x="3.4276%" y="623.50"></text></g><g><title>IntervalWalker::append_to_unhandled (39 samples, 0.02%)</title><rect x="3.3543%" y="581" width="0.0174%" height="15" fill="rgb(248,9,4)" fg:x="7534" fg:w="39"/><text x="3.6043%" y="591.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (66 samples, 0.03%)</title><rect x="3.3530%" y="597" width="0.0294%" height="15" fill="rgb(210,31,22)" fg:x="7531" fg:w="66"/><text x="3.6030%" y="607.50"></text></g><g><title>LinearScanWalker::split_before_usage (24 samples, 0.01%)</title><rect x="3.3717%" y="581" width="0.0107%" height="15" fill="rgb(239,54,39)" fg:x="7573" fg:w="24"/><text x="3.6217%" y="591.50"></text></g><g><title>Interval::split_child_before_op_id (23 samples, 0.01%)</title><rect x="3.3846%" y="581" width="0.0102%" height="15" fill="rgb(230,99,41)" fg:x="7602" fg:w="23"/><text x="3.6346%" y="591.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (130 samples, 0.06%)</title><rect x="3.3383%" y="613" width="0.0579%" height="15" fill="rgb(253,106,12)" fg:x="7498" fg:w="130"/><text x="3.5883%" y="623.50"></text></g><g><title>LinearScanWalker::split_for_spilling (31 samples, 0.01%)</title><rect x="3.3824%" y="597" width="0.0138%" height="15" fill="rgb(213,46,41)" fg:x="7597" fg:w="31"/><text x="3.6324%" y="607.50"></text></g><g><title>LinearScanWalker::insert_move (25 samples, 0.01%)</title><rect x="3.4104%" y="613" width="0.0111%" height="15" fill="rgb(215,133,35)" fg:x="7660" fg:w="25"/><text x="3.6604%" y="623.50"></text></g><g><title>LinearScanWalker::activate_current (573 samples, 0.26%)</title><rect x="3.1678%" y="629" width="0.2551%" height="15" fill="rgb(213,28,5)" fg:x="7115" fg:w="573"/><text x="3.4178%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (740 samples, 0.33%)</title><rect x="3.0956%" y="645" width="0.3295%" height="15" fill="rgb(215,77,49)" fg:x="6953" fg:w="740"/><text x="3.3456%" y="655.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (58 samples, 0.03%)</title><rect x="3.4256%" y="645" width="0.0258%" height="15" fill="rgb(248,100,22)" fg:x="7694" fg:w="58"/><text x="3.6756%" y="655.50"></text></g><g><title>resource_allocate_bytes (31 samples, 0.01%)</title><rect x="3.4376%" y="629" width="0.0138%" height="15" fill="rgb(208,67,9)" fg:x="7721" fg:w="31"/><text x="3.6876%" y="639.50"></text></g><g><title>LinearScan::allocate_registers (820 samples, 0.37%)</title><rect x="3.0872%" y="661" width="0.3651%" height="15" fill="rgb(219,133,21)" fg:x="6934" fg:w="820"/><text x="3.3372%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (79 samples, 0.04%)</title><rect x="3.5066%" y="629" width="0.0352%" height="15" fill="rgb(246,46,29)" fg:x="7876" fg:w="79"/><text x="3.7566%" y="639.50"></text></g><g><title>LIR_OpVisitState::append (28 samples, 0.01%)</title><rect x="3.5293%" y="613" width="0.0125%" height="15" fill="rgb(246,185,52)" fg:x="7927" fg:w="28"/><text x="3.7793%" y="623.50"></text></g><g><title>LinearScan::color_lir_opr (43 samples, 0.02%)</title><rect x="3.5422%" y="629" width="0.0191%" height="15" fill="rgb(252,136,11)" fg:x="7956" fg:w="43"/><text x="3.7922%" y="639.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (35 samples, 0.02%)</title><rect x="3.5930%" y="597" width="0.0156%" height="15" fill="rgb(219,138,53)" fg:x="8070" fg:w="35"/><text x="3.8430%" y="607.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (60 samples, 0.03%)</title><rect x="3.5836%" y="613" width="0.0267%" height="15" fill="rgb(211,51,23)" fg:x="8049" fg:w="60"/><text x="3.8336%" y="623.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (119 samples, 0.05%)</title><rect x="3.5613%" y="629" width="0.0530%" height="15" fill="rgb(247,221,28)" fg:x="7999" fg:w="119"/><text x="3.8113%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (69 samples, 0.03%)</title><rect x="3.6353%" y="597" width="0.0307%" height="15" fill="rgb(251,222,45)" fg:x="8165" fg:w="69"/><text x="3.8853%" y="607.50"></text></g><g><title>LinearScan::compute_oop_map (141 samples, 0.06%)</title><rect x="3.6241%" y="613" width="0.0628%" height="15" fill="rgb(217,162,53)" fg:x="8140" fg:w="141"/><text x="3.8741%" y="623.50"></text></g><g><title>LinearScan::compute_oop_map (164 samples, 0.07%)</title><rect x="3.6143%" y="629" width="0.0730%" height="15" fill="rgb(229,93,14)" fg:x="8118" fg:w="164"/><text x="3.8643%" y="639.50"></text></g><g><title>LinearScan::assign_reg_num (526 samples, 0.23%)</title><rect x="3.4536%" y="645" width="0.2342%" height="15" fill="rgb(209,67,49)" fg:x="7757" fg:w="526"/><text x="3.7036%" y="655.50"></text></g><g><title>LinearScan::assign_reg_num (554 samples, 0.25%)</title><rect x="3.4523%" y="661" width="0.2467%" height="15" fill="rgb(213,87,29)" fg:x="7754" fg:w="554"/><text x="3.7023%" y="671.50"></text></g><g><title>BitMap::get_next_one_offset (32 samples, 0.01%)</title><rect x="3.7697%" y="645" width="0.0142%" height="15" fill="rgb(205,151,52)" fg:x="8467" fg:w="32"/><text x="4.0197%" y="655.50"></text></g><g><title>Interval::add_use_pos (23 samples, 0.01%)</title><rect x="3.7915%" y="645" width="0.0102%" height="15" fill="rgb(253,215,39)" fg:x="8516" fg:w="23"/><text x="4.0415%" y="655.50"></text></g><g><title>LIR_OpVisitState::visit (54 samples, 0.02%)</title><rect x="3.8053%" y="645" width="0.0240%" height="15" fill="rgb(221,220,41)" fg:x="8547" fg:w="54"/><text x="4.0553%" y="655.50"></text></g><g><title>LinearScan::add_def (41 samples, 0.02%)</title><rect x="3.8294%" y="645" width="0.0183%" height="15" fill="rgb(218,133,21)" fg:x="8601" fg:w="41"/><text x="4.0794%" y="655.50"></text></g><g><title>Interval::add_range (37 samples, 0.02%)</title><rect x="3.8610%" y="629" width="0.0165%" height="15" fill="rgb(221,193,43)" fg:x="8672" fg:w="37"/><text x="4.1110%" y="639.50"></text></g><g><title>Interval::Interval (32 samples, 0.01%)</title><rect x="3.8801%" y="613" width="0.0142%" height="15" fill="rgb(240,128,52)" fg:x="8715" fg:w="32"/><text x="4.1301%" y="623.50"></text></g><g><title>LinearScan::add_temp (87 samples, 0.04%)</title><rect x="3.8565%" y="645" width="0.0387%" height="15" fill="rgb(253,114,12)" fg:x="8662" fg:w="87"/><text x="4.1065%" y="655.50"></text></g><g><title>LinearScan::create_interval (40 samples, 0.02%)</title><rect x="3.8775%" y="629" width="0.0178%" height="15" fill="rgb(215,223,47)" fg:x="8709" fg:w="40"/><text x="4.1275%" y="639.50"></text></g><g><title>Interval::add_range (41 samples, 0.02%)</title><rect x="3.9135%" y="629" width="0.0183%" height="15" fill="rgb(248,225,23)" fg:x="8790" fg:w="41"/><text x="4.1635%" y="639.50"></text></g><g><title>Interval::Interval (46 samples, 0.02%)</title><rect x="3.9380%" y="613" width="0.0205%" height="15" fill="rgb(250,108,0)" fg:x="8845" fg:w="46"/><text x="4.1880%" y="623.50"></text></g><g><title>LinearScan::create_interval (66 samples, 0.03%)</title><rect x="3.9327%" y="629" width="0.0294%" height="15" fill="rgb(228,208,7)" fg:x="8833" fg:w="66"/><text x="4.1827%" y="639.50"></text></g><g><title>LinearScan::add_use (152 samples, 0.07%)</title><rect x="3.8953%" y="645" width="0.0677%" height="15" fill="rgb(244,45,10)" fg:x="8749" fg:w="152"/><text x="4.1453%" y="655.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (28 samples, 0.01%)</title><rect x="3.9678%" y="645" width="0.0125%" height="15" fill="rgb(207,125,25)" fg:x="8912" fg:w="28"/><text x="4.2178%" y="655.50"></text></g><g><title>LinearScan::build_intervals (659 samples, 0.29%)</title><rect x="3.6989%" y="661" width="0.2934%" height="15" fill="rgb(210,195,18)" fg:x="8308" fg:w="659"/><text x="3.9489%" y="671.50"></text></g><g><title>LinearScan::compute_global_live_sets (57 samples, 0.03%)</title><rect x="3.9923%" y="661" width="0.0254%" height="15" fill="rgb(249,80,12)" fg:x="8967" fg:w="57"/><text x="4.2423%" y="671.50"></text></g><g><title>LIR_OpVisitState::visit (63 samples, 0.03%)</title><rect x="4.0720%" y="645" width="0.0280%" height="15" fill="rgb(221,65,9)" fg:x="9146" fg:w="63"/><text x="4.3220%" y="655.50"></text></g><g><title>LinearScan::compute_local_live_sets (231 samples, 0.10%)</title><rect x="4.0177%" y="661" width="0.1028%" height="15" fill="rgb(235,49,36)" fg:x="9024" fg:w="231"/><text x="4.2677%" y="671.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (32 samples, 0.01%)</title><rect x="4.1063%" y="645" width="0.0142%" height="15" fill="rgb(225,32,20)" fg:x="9223" fg:w="32"/><text x="4.3563%" y="655.50"></text></g><g><title>LinearScan::eliminate_spill_moves (52 samples, 0.02%)</title><rect x="4.1205%" y="661" width="0.0232%" height="15" fill="rgb(215,141,46)" fg:x="9255" fg:w="52"/><text x="4.3705%" y="671.50"></text></g><g><title>LinearScan::number_instructions (42 samples, 0.02%)</title><rect x="4.1437%" y="661" width="0.0187%" height="15" fill="rgb(250,160,47)" fg:x="9307" fg:w="42"/><text x="4.3937%" y="671.50"></text></g><g><title>BitMap::get_next_one_offset (23 samples, 0.01%)</title><rect x="4.1869%" y="629" width="0.0102%" height="15" fill="rgb(216,222,40)" fg:x="9404" fg:w="23"/><text x="4.4369%" y="639.50"></text></g><g><title>Interval::split_child_at_op_id (35 samples, 0.02%)</title><rect x="4.1971%" y="629" width="0.0156%" height="15" fill="rgb(234,217,39)" fg:x="9427" fg:w="35"/><text x="4.4471%" y="639.50"></text></g><g><title>LinearScan::resolve_collect_mappings (82 samples, 0.04%)</title><rect x="4.1766%" y="645" width="0.0365%" height="15" fill="rgb(207,178,40)" fg:x="9381" fg:w="82"/><text x="4.4266%" y="655.50"></text></g><g><title>LinearScan::resolve_data_flow (131 samples, 0.06%)</title><rect x="4.1637%" y="661" width="0.0583%" height="15" fill="rgb(221,136,13)" fg:x="9352" fg:w="131"/><text x="4.4137%" y="671.50"></text></g><g><title>LinearScan::resolve_exception_handlers (26 samples, 0.01%)</title><rect x="4.2221%" y="661" width="0.0116%" height="15" fill="rgb(249,199,10)" fg:x="9483" fg:w="26"/><text x="4.4721%" y="671.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (30 samples, 0.01%)</title><rect x="4.2336%" y="661" width="0.0134%" height="15" fill="rgb(249,222,13)" fg:x="9509" fg:w="30"/><text x="4.4836%" y="671.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (45 samples, 0.02%)</title><rect x="4.2470%" y="661" width="0.0200%" height="15" fill="rgb(244,185,38)" fg:x="9539" fg:w="45"/><text x="4.4970%" y="671.50"></text></g><g><title>LinearScan::do_linear_scan (2,681 samples, 1.19%)</title><rect x="3.0738%" y="677" width="1.1936%" height="15" fill="rgb(236,202,9)" fg:x="6904" fg:w="2681"/><text x="3.3238%" y="687.50"></text></g><g><title>Compilation::emit_lir (3,445 samples, 1.53%)</title><rect x="2.7341%" y="693" width="1.5338%" height="15" fill="rgb(250,229,37)" fg:x="6141" fg:w="3445"/><text x="2.9841%" y="703.50"></text></g><g><title>MethodData::initialize (27 samples, 0.01%)</title><rect x="4.2911%" y="629" width="0.0120%" height="15" fill="rgb(206,174,23)" fg:x="9638" fg:w="27"/><text x="4.5411%" y="639.50"></text></g><g><title>MethodData::allocate (59 samples, 0.03%)</title><rect x="4.2777%" y="645" width="0.0263%" height="15" fill="rgb(211,33,43)" fg:x="9608" fg:w="59"/><text x="4.5277%" y="655.50"></text></g><g><title>Method::build_interpreter_method_data (60 samples, 0.03%)</title><rect x="4.2777%" y="661" width="0.0267%" height="15" fill="rgb(245,58,50)" fg:x="9608" fg:w="60"/><text x="4.5277%" y="671.50"></text></g><g><title>ciMethodData::load_data (37 samples, 0.02%)</title><rect x="4.3058%" y="661" width="0.0165%" height="15" fill="rgb(244,68,36)" fg:x="9671" fg:w="37"/><text x="4.5558%" y="671.50"></text></g><g><title>Compilation::compile_java_method (8,151 samples, 3.63%)</title><rect x="0.6950%" y="709" width="3.6290%" height="15" fill="rgb(232,229,15)" fg:x="1561" fg:w="8151"/><text x="0.9450%" y="719.50">Comp..</text></g><g><title>ciMethod::ensure_method_data (105 samples, 0.05%)</title><rect x="4.2773%" y="693" width="0.0467%" height="15" fill="rgb(254,30,23)" fg:x="9607" fg:w="105"/><text x="4.5273%" y="703.50"></text></g><g><title>ciMethod::ensure_method_data (105 samples, 0.05%)</title><rect x="4.2773%" y="677" width="0.0467%" height="15" fill="rgb(235,160,14)" fg:x="9607" fg:w="105"/><text x="4.5273%" y="687.50"></text></g><g><title>Compilation::initialize (37 samples, 0.02%)</title><rect x="4.3240%" y="709" width="0.0165%" height="15" fill="rgb(212,155,44)" fg:x="9712" fg:w="37"/><text x="4.5740%" y="719.50"></text></g><g><title>CodeBuffer::finalize_oop_references (64 samples, 0.03%)</title><rect x="4.3685%" y="677" width="0.0285%" height="15" fill="rgb(226,2,50)" fg:x="9812" fg:w="64"/><text x="4.6185%" y="687.50"></text></g><g><title>CodeHeap::allocate (23 samples, 0.01%)</title><rect x="4.3970%" y="661" width="0.0102%" height="15" fill="rgb(234,177,6)" fg:x="9876" fg:w="23"/><text x="4.6470%" y="671.50"></text></g><g><title>CodeCache::allocate (34 samples, 0.02%)</title><rect x="4.3970%" y="677" width="0.0151%" height="15" fill="rgb(217,24,9)" fg:x="9876" fg:w="34"/><text x="4.6470%" y="687.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.01%)</title><rect x="4.4229%" y="613" width="0.0129%" height="15" fill="rgb(220,13,46)" fg:x="9934" fg:w="29"/><text x="4.6729%" y="623.50"></text></g><g><title>do_futex (28 samples, 0.01%)</title><rect x="4.4233%" y="597" width="0.0125%" height="15" fill="rgb(239,221,27)" fg:x="9935" fg:w="28"/><text x="4.6733%" y="607.50"></text></g><g><title>futex_wake (27 samples, 0.01%)</title><rect x="4.4237%" y="581" width="0.0120%" height="15" fill="rgb(222,198,25)" fg:x="9936" fg:w="27"/><text x="4.6737%" y="591.50"></text></g><g><title>wake_up_q (23 samples, 0.01%)</title><rect x="4.4255%" y="565" width="0.0102%" height="15" fill="rgb(211,99,13)" fg:x="9940" fg:w="23"/><text x="4.6755%" y="575.50"></text></g><g><title>__pthread_cond_signal (34 samples, 0.02%)</title><rect x="4.4211%" y="677" width="0.0151%" height="15" fill="rgb(232,111,31)" fg:x="9930" fg:w="34"/><text x="4.6711%" y="687.50"></text></g><g><title>futex_wake (31 samples, 0.01%)</title><rect x="4.4224%" y="661" width="0.0138%" height="15" fill="rgb(245,82,37)" fg:x="9933" fg:w="31"/><text x="4.6724%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="4.4229%" y="645" width="0.0134%" height="15" fill="rgb(227,149,46)" fg:x="9934" fg:w="30"/><text x="4.6729%" y="655.50"></text></g><g><title>do_syscall_64 (30 samples, 0.01%)</title><rect x="4.4229%" y="629" width="0.0134%" height="15" fill="rgb(218,36,50)" fg:x="9934" fg:w="30"/><text x="4.6729%" y="639.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (30 samples, 0.01%)</title><rect x="4.4460%" y="629" width="0.0134%" height="15" fill="rgb(226,80,48)" fg:x="9986" fg:w="30"/><text x="4.6960%" y="639.50"></text></g><g><title>exc_page_fault (27 samples, 0.01%)</title><rect x="4.4781%" y="597" width="0.0120%" height="15" fill="rgb(238,224,15)" fg:x="10058" fg:w="27"/><text x="4.7281%" y="607.50"></text></g><g><title>do_user_addr_fault (27 samples, 0.01%)</title><rect x="4.4781%" y="581" width="0.0120%" height="15" fill="rgb(241,136,10)" fg:x="10058" fg:w="27"/><text x="4.7281%" y="591.50"></text></g><g><title>handle_mm_fault (24 samples, 0.01%)</title><rect x="4.4794%" y="565" width="0.0107%" height="15" fill="rgb(208,32,45)" fg:x="10061" fg:w="24"/><text x="4.7294%" y="575.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (34 samples, 0.02%)</title><rect x="4.4758%" y="629" width="0.0151%" height="15" fill="rgb(207,135,9)" fg:x="10053" fg:w="34"/><text x="4.7258%" y="639.50"></text></g><g><title>asm_exc_page_fault (29 samples, 0.01%)</title><rect x="4.4781%" y="613" width="0.0129%" height="15" fill="rgb(206,86,44)" fg:x="10058" fg:w="29"/><text x="4.7281%" y="623.50"></text></g><g><title>CodeBuffer::relocate_code_to (118 samples, 0.05%)</title><rect x="4.4398%" y="645" width="0.0525%" height="15" fill="rgb(245,177,15)" fg:x="9972" fg:w="118"/><text x="4.6898%" y="655.50"></text></g><g><title>CodeBuffer::copy_code_to (133 samples, 0.06%)</title><rect x="4.4384%" y="661" width="0.0592%" height="15" fill="rgb(206,64,50)" fg:x="9969" fg:w="133"/><text x="4.6884%" y="671.50"></text></g><g><title>CodeBlob::CodeBlob (25 samples, 0.01%)</title><rect x="4.5021%" y="645" width="0.0111%" height="15" fill="rgb(234,36,40)" fg:x="10112" fg:w="25"/><text x="4.7521%" y="655.50"></text></g><g><title>ImmutableOopMapSet::build_from (25 samples, 0.01%)</title><rect x="4.5021%" y="629" width="0.0111%" height="15" fill="rgb(213,64,8)" fg:x="10112" fg:w="25"/><text x="4.7521%" y="639.50"></text></g><g><title>CompiledMethod::CompiledMethod (32 samples, 0.01%)</title><rect x="4.5017%" y="661" width="0.0142%" height="15" fill="rgb(210,75,36)" fg:x="10111" fg:w="32"/><text x="4.7517%" y="671.50"></text></g><g><title>G1CodeRootSet::add (28 samples, 0.01%)</title><rect x="4.5253%" y="629" width="0.0125%" height="15" fill="rgb(229,88,21)" fg:x="10164" fg:w="28"/><text x="4.7753%" y="639.50"></text></g><g><title>G1CollectedHeap::register_nmethod (45 samples, 0.02%)</title><rect x="4.5204%" y="661" width="0.0200%" height="15" fill="rgb(252,204,47)" fg:x="10153" fg:w="45"/><text x="4.7704%" y="671.50"></text></g><g><title>nmethod::oops_do (45 samples, 0.02%)</title><rect x="4.5204%" y="645" width="0.0200%" height="15" fill="rgb(208,77,27)" fg:x="10153" fg:w="45"/><text x="4.7704%" y="655.50"></text></g><g><title>nmethod::new_nmethod (428 samples, 0.19%)</title><rect x="4.3654%" y="693" width="0.1906%" height="15" fill="rgb(221,76,26)" fg:x="9805" fg:w="428"/><text x="4.6154%" y="703.50"></text></g><g><title>nmethod::nmethod (269 samples, 0.12%)</title><rect x="4.4362%" y="677" width="0.1198%" height="15" fill="rgb(225,139,18)" fg:x="9964" fg:w="269"/><text x="4.6862%" y="687.50"></text></g><g><title>ciEnv::register_method (481 samples, 0.21%)</title><rect x="4.3423%" y="709" width="0.2142%" height="15" fill="rgb(230,137,11)" fg:x="9753" fg:w="481"/><text x="4.5923%" y="719.50"></text></g><g><title>Compilation::compile_method (8,679 samples, 3.86%)</title><rect x="0.6937%" y="725" width="3.8641%" height="15" fill="rgb(212,28,1)" fg:x="1558" fg:w="8679"/><text x="0.9437%" y="735.50">Comp..</text></g><g><title>Compiler::compile_method (8,697 samples, 3.87%)</title><rect x="0.6888%" y="757" width="3.8721%" height="15" fill="rgb(248,164,17)" fg:x="1547" fg:w="8697"/><text x="0.9388%" y="767.50">Comp..</text></g><g><title>Compilation::Compilation (8,687 samples, 3.87%)</title><rect x="0.6932%" y="741" width="3.8677%" height="15" fill="rgb(222,171,42)" fg:x="1557" fg:w="8687"/><text x="0.9432%" y="751.50">Comp..</text></g><g><title>ciObjectFactory::ciObjectFactory (31 samples, 0.01%)</title><rect x="4.5814%" y="741" width="0.0138%" height="15" fill="rgb(243,84,45)" fg:x="10290" fg:w="31"/><text x="4.8314%" y="751.50"></text></g><g><title>ciEnv::ciEnv (88 samples, 0.04%)</title><rect x="4.5769%" y="757" width="0.0392%" height="15" fill="rgb(252,49,23)" fg:x="10280" fg:w="88"/><text x="4.8269%" y="767.50"></text></g><g><title>ciObjectFactory::get (47 samples, 0.02%)</title><rect x="4.5952%" y="741" width="0.0209%" height="15" fill="rgb(215,19,7)" fg:x="10321" fg:w="47"/><text x="4.8452%" y="751.50"></text></g><g><title>ciObjectFactory::get_metadata (28 samples, 0.01%)</title><rect x="4.6036%" y="725" width="0.0125%" height="15" fill="rgb(238,81,41)" fg:x="10340" fg:w="28"/><text x="4.8536%" y="735.50"></text></g><g><title>ciObjectFactory::create_new_metadata (25 samples, 0.01%)</title><rect x="4.6050%" y="709" width="0.0111%" height="15" fill="rgb(210,199,37)" fg:x="10343" fg:w="25"/><text x="4.8550%" y="719.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (28 samples, 0.01%)</title><rect x="4.6388%" y="677" width="0.0125%" height="15" fill="rgb(244,192,49)" fg:x="10419" fg:w="28"/><text x="4.8888%" y="687.50"></text></g><g><title>ciMethod::ciMethod (77 samples, 0.03%)</title><rect x="4.6192%" y="709" width="0.0343%" height="15" fill="rgb(226,211,11)" fg:x="10375" fg:w="77"/><text x="4.8692%" y="719.50"></text></g><g><title>ciSignature::ciSignature (65 samples, 0.03%)</title><rect x="4.6245%" y="693" width="0.0289%" height="15" fill="rgb(236,162,54)" fg:x="10387" fg:w="65"/><text x="4.8745%" y="703.50"></text></g><g><title>ciEnv::get_method_from_handle (91 samples, 0.04%)</title><rect x="4.6161%" y="757" width="0.0405%" height="15" fill="rgb(220,229,9)" fg:x="10368" fg:w="91"/><text x="4.8661%" y="767.50"></text></g><g><title>ciObjectFactory::get_metadata (90 samples, 0.04%)</title><rect x="4.6165%" y="741" width="0.0401%" height="15" fill="rgb(250,87,22)" fg:x="10369" fg:w="90"/><text x="4.8665%" y="751.50"></text></g><g><title>ciObjectFactory::create_new_metadata (88 samples, 0.04%)</title><rect x="4.6174%" y="725" width="0.0392%" height="15" fill="rgb(239,43,17)" fg:x="10371" fg:w="88"/><text x="4.8674%" y="735.50"></text></g><g><title>ciEnv::~ciEnv (23 samples, 0.01%)</title><rect x="4.6566%" y="757" width="0.0102%" height="15" fill="rgb(231,177,25)" fg:x="10459" fg:w="23"/><text x="4.9066%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (9,125 samples, 4.06%)</title><rect x="0.6051%" y="773" width="4.0627%" height="15" fill="rgb(219,179,1)" fg:x="1359" fg:w="9125"/><text x="0.8551%" y="783.50">Comp..</text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="4.6722%" y="725" width="0.0102%" height="15" fill="rgb(238,219,53)" fg:x="10494" fg:w="23"/><text x="4.9222%" y="735.50"></text></g><g><title>CompileBroker::possibly_add_compiler_threads (34 samples, 0.02%)</title><rect x="4.6677%" y="773" width="0.0151%" height="15" fill="rgb(232,167,36)" fg:x="10484" fg:w="34"/><text x="4.9177%" y="783.50"></text></g><g><title>os::available_memory (26 samples, 0.01%)</title><rect x="4.6713%" y="757" width="0.0116%" height="15" fill="rgb(244,19,51)" fg:x="10492" fg:w="26"/><text x="4.9213%" y="767.50"></text></g><g><title>__sysinfo (24 samples, 0.01%)</title><rect x="4.6722%" y="741" width="0.0107%" height="15" fill="rgb(224,6,22)" fg:x="10494" fg:w="24"/><text x="4.9222%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.03%)</title><rect x="4.7069%" y="517" width="0.0307%" height="15" fill="rgb(224,145,5)" fg:x="10572" fg:w="69"/><text x="4.9569%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (68 samples, 0.03%)</title><rect x="4.7074%" y="501" width="0.0303%" height="15" fill="rgb(234,130,49)" fg:x="10573" fg:w="68"/><text x="4.9574%" y="511.50"></text></g><g><title>native_write_msr (68 samples, 0.03%)</title><rect x="4.7074%" y="485" width="0.0303%" height="15" fill="rgb(254,6,2)" fg:x="10573" fg:w="68"/><text x="4.9574%" y="495.50"></text></g><g><title>finish_task_switch (73 samples, 0.03%)</title><rect x="4.7060%" y="533" width="0.0325%" height="15" fill="rgb(208,96,46)" fg:x="10570" fg:w="73"/><text x="4.9560%" y="543.50"></text></g><g><title>futex_wait_queue_me (93 samples, 0.04%)</title><rect x="4.6993%" y="581" width="0.0414%" height="15" fill="rgb(239,3,39)" fg:x="10555" fg:w="93"/><text x="4.9493%" y="591.50"></text></g><g><title>schedule (87 samples, 0.04%)</title><rect x="4.7020%" y="565" width="0.0387%" height="15" fill="rgb(233,210,1)" fg:x="10561" fg:w="87"/><text x="4.9520%" y="575.50"></text></g><g><title>__schedule (86 samples, 0.04%)</title><rect x="4.7025%" y="549" width="0.0383%" height="15" fill="rgb(244,137,37)" fg:x="10562" fg:w="86"/><text x="4.9525%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.05%)</title><rect x="4.6980%" y="661" width="0.0454%" height="15" fill="rgb(240,136,2)" fg:x="10552" fg:w="102"/><text x="4.9480%" y="671.50"></text></g><g><title>do_syscall_64 (102 samples, 0.05%)</title><rect x="4.6980%" y="645" width="0.0454%" height="15" fill="rgb(239,18,37)" fg:x="10552" fg:w="102"/><text x="4.9480%" y="655.50"></text></g><g><title>__x64_sys_futex (102 samples, 0.05%)</title><rect x="4.6980%" y="629" width="0.0454%" height="15" fill="rgb(218,185,22)" fg:x="10552" fg:w="102"/><text x="4.9480%" y="639.50"></text></g><g><title>do_futex (102 samples, 0.05%)</title><rect x="4.6980%" y="613" width="0.0454%" height="15" fill="rgb(225,218,4)" fg:x="10552" fg:w="102"/><text x="4.9480%" y="623.50"></text></g><g><title>futex_wait (101 samples, 0.04%)</title><rect x="4.6984%" y="597" width="0.0450%" height="15" fill="rgb(230,182,32)" fg:x="10553" fg:w="101"/><text x="4.9484%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (110 samples, 0.05%)</title><rect x="4.6949%" y="709" width="0.0490%" height="15" fill="rgb(242,56,43)" fg:x="10545" fg:w="110"/><text x="4.9449%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (110 samples, 0.05%)</title><rect x="4.6949%" y="693" width="0.0490%" height="15" fill="rgb(233,99,24)" fg:x="10545" fg:w="110"/><text x="4.9449%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (108 samples, 0.05%)</title><rect x="4.6958%" y="677" width="0.0481%" height="15" fill="rgb(234,209,42)" fg:x="10547" fg:w="108"/><text x="4.9458%" y="687.50"></text></g><g><title>Monitor::wait (119 samples, 0.05%)</title><rect x="4.6918%" y="757" width="0.0530%" height="15" fill="rgb(227,7,12)" fg:x="10538" fg:w="119"/><text x="4.9418%" y="767.50"></text></g><g><title>Monitor::IWait (117 samples, 0.05%)</title><rect x="4.6927%" y="741" width="0.0521%" height="15" fill="rgb(245,203,43)" fg:x="10540" fg:w="117"/><text x="4.9427%" y="751.50"></text></g><g><title>os::PlatformEvent::park (114 samples, 0.05%)</title><rect x="4.6940%" y="725" width="0.0508%" height="15" fill="rgb(238,205,33)" fg:x="10543" fg:w="114"/><text x="4.9440%" y="735.50"></text></g><g><title>TieredThresholdPolicy::select_task (40 samples, 0.02%)</title><rect x="4.7448%" y="757" width="0.0178%" height="15" fill="rgb(231,56,7)" fg:x="10657" fg:w="40"/><text x="4.9948%" y="767.50"></text></g><g><title>CompileQueue::get (182 samples, 0.08%)</title><rect x="4.6829%" y="773" width="0.0810%" height="15" fill="rgb(244,186,29)" fg:x="10518" fg:w="182"/><text x="4.9329%" y="783.50"></text></g><g><title>__GI___clone (9,356 samples, 4.17%)</title><rect x="0.6033%" y="869" width="4.1655%" height="15" fill="rgb(234,111,31)" fg:x="1355" fg:w="9356"/><text x="0.8533%" y="879.50">__GI_..</text></g><g><title>start_thread (9,356 samples, 4.17%)</title><rect x="0.6033%" y="853" width="4.1655%" height="15" fill="rgb(241,149,10)" fg:x="1355" fg:w="9356"/><text x="0.8533%" y="863.50">start..</text></g><g><title>thread_native_entry (9,356 samples, 4.17%)</title><rect x="0.6033%" y="837" width="4.1655%" height="15" fill="rgb(249,206,44)" fg:x="1355" fg:w="9356"/><text x="0.8533%" y="847.50">threa..</text></g><g><title>Thread::call_run (9,356 samples, 4.17%)</title><rect x="0.6033%" y="821" width="4.1655%" height="15" fill="rgb(251,153,30)" fg:x="1355" fg:w="9356"/><text x="0.8533%" y="831.50">Threa..</text></g><g><title>JavaThread::thread_main_inner (9,356 samples, 4.17%)</title><rect x="0.6033%" y="805" width="4.1655%" height="15" fill="rgb(239,152,38)" fg:x="1355" fg:w="9356"/><text x="0.8533%" y="815.50">JavaT..</text></g><g><title>CompileBroker::compiler_thread_loop (9,356 samples, 4.17%)</title><rect x="0.6033%" y="789" width="4.1655%" height="15" fill="rgb(249,139,47)" fg:x="1355" fg:w="9356"/><text x="0.8533%" y="799.50">Compi..</text></g><g><title>C1_CompilerThre (10,712 samples, 4.77%)</title><rect x="0.0187%" y="885" width="4.7692%" height="15" fill="rgb(244,64,35)" fg:x="42" fg:w="10712"/><text x="0.2687%" y="895.50">C1_Com..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (28 samples, 0.01%)</title><rect x="4.8147%" y="869" width="0.0125%" height="15" fill="rgb(216,46,15)" fg:x="10814" fg:w="28"/><text x="5.0647%" y="879.50"></text></g><g><title>RegMask::is_UP (27 samples, 0.01%)</title><rect x="4.8151%" y="853" width="0.0120%" height="15" fill="rgb(250,74,19)" fg:x="10815" fg:w="27"/><text x="5.0651%" y="863.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (47 samples, 0.02%)</title><rect x="4.8605%" y="869" width="0.0209%" height="15" fill="rgb(249,42,33)" fg:x="10917" fg:w="47"/><text x="5.1105%" y="879.50"></text></g><g><title>ProjNode::pinned (45 samples, 0.02%)</title><rect x="4.8614%" y="853" width="0.0200%" height="15" fill="rgb(242,149,17)" fg:x="10919" fg:w="45"/><text x="5.1114%" y="863.50"></text></g><g><title>IfTrueNode::Opcode (31 samples, 0.01%)</title><rect x="5.1130%" y="853" width="0.0138%" height="15" fill="rgb(244,29,21)" fg:x="11484" fg:w="31"/><text x="5.3630%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (28 samples, 0.01%)</title><rect x="5.1352%" y="853" width="0.0125%" height="15" fill="rgb(220,130,37)" fg:x="11534" fg:w="28"/><text x="5.3852%" y="863.50"></text></g><g><title>MultiNode::is_CFG (54 samples, 0.02%)</title><rect x="5.2688%" y="853" width="0.0240%" height="15" fill="rgb(211,67,2)" fg:x="11834" fg:w="54"/><text x="5.5188%" y="863.50"></text></g><g><title>Node::is_CFG (60 samples, 0.03%)</title><rect x="5.3178%" y="853" width="0.0267%" height="15" fill="rgb(235,68,52)" fg:x="11944" fg:w="60"/><text x="5.5678%" y="863.50"></text></g><g><title>PhiNode::Opcode (35 samples, 0.02%)</title><rect x="5.4736%" y="853" width="0.0156%" height="15" fill="rgb(246,142,3)" fg:x="12294" fg:w="35"/><text x="5.7236%" y="863.50"></text></g><g><title>RegionNode::is_CFG (37 samples, 0.02%)</title><rect x="5.5666%" y="853" width="0.0165%" height="15" fill="rgb(241,25,7)" fg:x="12503" fg:w="37"/><text x="5.8166%" y="863.50"></text></g><g><title>TypeNode::bottom_type (24 samples, 0.01%)</title><rect x="5.6757%" y="853" width="0.0107%" height="15" fill="rgb(242,119,39)" fg:x="12748" fg:w="24"/><text x="5.9257%" y="863.50"></text></g><g><title>_dl_update_slotinfo (153 samples, 0.07%)</title><rect x="5.7269%" y="853" width="0.0681%" height="15" fill="rgb(241,98,45)" fg:x="12863" fg:w="153"/><text x="5.9769%" y="863.50"></text></g><g><title>find_lowest_bit (29 samples, 0.01%)</title><rect x="5.8596%" y="853" width="0.0129%" height="15" fill="rgb(254,28,30)" fg:x="13161" fg:w="29"/><text x="6.1096%" y="863.50"></text></g><g><title>update_get_addr (60 samples, 0.03%)</title><rect x="5.9705%" y="853" width="0.0267%" height="15" fill="rgb(241,142,54)" fg:x="13410" fg:w="60"/><text x="6.2205%" y="863.50"></text></g><g><title>[anon] (2,487 samples, 1.11%)</title><rect x="4.8930%" y="869" width="1.1073%" height="15" fill="rgb(222,85,15)" fg:x="10990" fg:w="2487"/><text x="5.1430%" y="879.50"></text></g><g><title>Compile::call_generator (27 samples, 0.01%)</title><rect x="6.0145%" y="709" width="0.0120%" height="15" fill="rgb(210,85,47)" fg:x="13509" fg:w="27"/><text x="6.2645%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (27 samples, 0.01%)</title><rect x="6.0145%" y="693" width="0.0120%" height="15" fill="rgb(224,206,25)" fg:x="13509" fg:w="27"/><text x="6.2645%" y="703.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (24 samples, 0.01%)</title><rect x="6.0404%" y="597" width="0.0107%" height="15" fill="rgb(243,201,19)" fg:x="13567" fg:w="24"/><text x="6.2904%" y="607.50"></text></g><g><title>ciBytecodeStream::get_field (23 samples, 0.01%)</title><rect x="6.0408%" y="581" width="0.0102%" height="15" fill="rgb(236,59,4)" fg:x="13568" fg:w="23"/><text x="6.2908%" y="591.50"></text></g><g><title>ciObjectFactory::get_metadata (29 samples, 0.01%)</title><rect x="6.0626%" y="549" width="0.0129%" height="15" fill="rgb(254,179,45)" fg:x="13617" fg:w="29"/><text x="6.3126%" y="559.50"></text></g><g><title>ciObjectFactory::create_new_metadata (28 samples, 0.01%)</title><rect x="6.0631%" y="533" width="0.0125%" height="15" fill="rgb(226,14,10)" fg:x="13618" fg:w="28"/><text x="6.3131%" y="543.50"></text></g><g><title>ciMethod::ciMethod (27 samples, 0.01%)</title><rect x="6.0635%" y="517" width="0.0120%" height="15" fill="rgb(244,27,41)" fg:x="13619" fg:w="27"/><text x="6.3135%" y="527.50"></text></g><g><title>ciSignature::ciSignature (25 samples, 0.01%)</title><rect x="6.0644%" y="501" width="0.0111%" height="15" fill="rgb(235,35,32)" fg:x="13621" fg:w="25"/><text x="6.3144%" y="511.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (56 samples, 0.02%)</title><rect x="6.0510%" y="597" width="0.0249%" height="15" fill="rgb(218,68,31)" fg:x="13591" fg:w="56"/><text x="6.3010%" y="607.50"></text></g><g><title>ciBytecodeStream::get_method (56 samples, 0.02%)</title><rect x="6.0510%" y="581" width="0.0249%" height="15" fill="rgb(207,120,37)" fg:x="13591" fg:w="56"/><text x="6.3010%" y="591.50"></text></g><g><title>ciEnv::get_method_by_index_impl (53 samples, 0.02%)</title><rect x="6.0524%" y="565" width="0.0236%" height="15" fill="rgb(227,98,0)" fg:x="13594" fg:w="53"/><text x="6.3024%" y="575.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (92 samples, 0.04%)</title><rect x="6.0377%" y="613" width="0.0410%" height="15" fill="rgb(207,7,3)" fg:x="13561" fg:w="92"/><text x="6.2877%" y="623.50"></text></g><g><title>ciTypeFlow::df_flow_types (108 samples, 0.05%)</title><rect x="6.0319%" y="645" width="0.0481%" height="15" fill="rgb(206,98,19)" fg:x="13548" fg:w="108"/><text x="6.2819%" y="655.50"></text></g><g><title>ciTypeFlow::flow_block (108 samples, 0.05%)</title><rect x="6.0319%" y="629" width="0.0481%" height="15" fill="rgb(217,5,26)" fg:x="13548" fg:w="108"/><text x="6.2819%" y="639.50"></text></g><g><title>InlineTree::ok_to_inline (122 samples, 0.05%)</title><rect x="6.0266%" y="709" width="0.0543%" height="15" fill="rgb(235,190,38)" fg:x="13536" fg:w="122"/><text x="6.2766%" y="719.50"></text></g><g><title>ciMethod::get_flow_analysis (112 samples, 0.05%)</title><rect x="6.0310%" y="693" width="0.0499%" height="15" fill="rgb(247,86,24)" fg:x="13546" fg:w="112"/><text x="6.2810%" y="703.50"></text></g><g><title>ciTypeFlow::do_flow (112 samples, 0.05%)</title><rect x="6.0310%" y="677" width="0.0499%" height="15" fill="rgb(205,101,16)" fg:x="13546" fg:w="112"/><text x="6.2810%" y="687.50"></text></g><g><title>ciTypeFlow::flow_types (112 samples, 0.05%)</title><rect x="6.0310%" y="661" width="0.0499%" height="15" fill="rgb(246,168,33)" fg:x="13546" fg:w="112"/><text x="6.2810%" y="671.50"></text></g><g><title>Compile::call_generator (152 samples, 0.07%)</title><rect x="6.0145%" y="725" width="0.0677%" height="15" fill="rgb(231,114,1)" fg:x="13509" fg:w="152"/><text x="6.2645%" y="735.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (24 samples, 0.01%)</title><rect x="6.1316%" y="501" width="0.0107%" height="15" fill="rgb(207,184,53)" fg:x="13772" fg:w="24"/><text x="6.3816%" y="511.50"></text></g><g><title>ciBytecodeStream::get_method (23 samples, 0.01%)</title><rect x="6.1321%" y="485" width="0.0102%" height="15" fill="rgb(224,95,51)" fg:x="13773" fg:w="23"/><text x="6.3821%" y="495.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (49 samples, 0.02%)</title><rect x="6.1227%" y="517" width="0.0218%" height="15" fill="rgb(212,188,45)" fg:x="13752" fg:w="49"/><text x="6.3727%" y="527.50"></text></g><g><title>ciTypeFlow::df_flow_types (68 samples, 0.03%)</title><rect x="6.1160%" y="549" width="0.0303%" height="15" fill="rgb(223,154,38)" fg:x="13737" fg:w="68"/><text x="6.3660%" y="559.50"></text></g><g><title>ciTypeFlow::flow_block (64 samples, 0.03%)</title><rect x="6.1178%" y="533" width="0.0285%" height="15" fill="rgb(251,22,52)" fg:x="13741" fg:w="64"/><text x="6.3678%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (78 samples, 0.03%)</title><rect x="6.1138%" y="581" width="0.0347%" height="15" fill="rgb(229,209,22)" fg:x="13732" fg:w="78"/><text x="6.3638%" y="591.50"></text></g><g><title>ciTypeFlow::flow_types (78 samples, 0.03%)</title><rect x="6.1138%" y="565" width="0.0347%" height="15" fill="rgb(234,138,34)" fg:x="13732" fg:w="78"/><text x="6.3638%" y="575.50"></text></g><g><title>InlineTree::ok_to_inline (96 samples, 0.04%)</title><rect x="6.1062%" y="613" width="0.0427%" height="15" fill="rgb(212,95,11)" fg:x="13715" fg:w="96"/><text x="6.3562%" y="623.50"></text></g><g><title>ciMethod::get_flow_analysis (83 samples, 0.04%)</title><rect x="6.1120%" y="597" width="0.0370%" height="15" fill="rgb(240,179,47)" fg:x="13728" fg:w="83"/><text x="6.3620%" y="607.50"></text></g><g><title>Compile::call_generator (115 samples, 0.05%)</title><rect x="6.0996%" y="629" width="0.0512%" height="15" fill="rgb(240,163,11)" fg:x="13700" fg:w="115"/><text x="6.3496%" y="639.50"></text></g><g><title>ciTypeFlow::df_flow_types (28 samples, 0.01%)</title><rect x="6.2251%" y="453" width="0.0125%" height="15" fill="rgb(236,37,12)" fg:x="13982" fg:w="28"/><text x="6.4751%" y="463.50"></text></g><g><title>ciTypeFlow::flow_block (25 samples, 0.01%)</title><rect x="6.2265%" y="437" width="0.0111%" height="15" fill="rgb(232,164,16)" fg:x="13985" fg:w="25"/><text x="6.4765%" y="447.50"></text></g><g><title>InlineTree::ok_to_inline (45 samples, 0.02%)</title><rect x="6.2193%" y="517" width="0.0200%" height="15" fill="rgb(244,205,15)" fg:x="13969" fg:w="45"/><text x="6.4693%" y="527.50"></text></g><g><title>ciMethod::get_flow_analysis (36 samples, 0.02%)</title><rect x="6.2233%" y="501" width="0.0160%" height="15" fill="rgb(223,117,47)" fg:x="13978" fg:w="36"/><text x="6.4733%" y="511.50"></text></g><g><title>ciTypeFlow::do_flow (32 samples, 0.01%)</title><rect x="6.2251%" y="485" width="0.0142%" height="15" fill="rgb(244,107,35)" fg:x="13982" fg:w="32"/><text x="6.4751%" y="495.50"></text></g><g><title>ciTypeFlow::flow_types (32 samples, 0.01%)</title><rect x="6.2251%" y="469" width="0.0142%" height="15" fill="rgb(205,140,8)" fg:x="13982" fg:w="32"/><text x="6.4751%" y="479.50"></text></g><g><title>Compile::call_generator (54 samples, 0.02%)</title><rect x="6.2162%" y="533" width="0.0240%" height="15" fill="rgb(228,84,46)" fg:x="13962" fg:w="54"/><text x="6.4662%" y="543.50"></text></g><g><title>Parse::do_one_block (43 samples, 0.02%)</title><rect x="6.3035%" y="389" width="0.0191%" height="15" fill="rgb(254,188,9)" fg:x="14158" fg:w="43"/><text x="6.5535%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.02%)</title><rect x="6.3057%" y="373" width="0.0169%" height="15" fill="rgb(206,112,54)" fg:x="14163" fg:w="38"/><text x="6.5557%" y="383.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.02%)</title><rect x="6.3026%" y="405" width="0.0214%" height="15" fill="rgb(216,84,49)" fg:x="14156" fg:w="48"/><text x="6.5526%" y="415.50"></text></g><g><title>Parse::Parse (72 samples, 0.03%)</title><rect x="6.2986%" y="421" width="0.0321%" height="15" fill="rgb(214,194,35)" fg:x="14147" fg:w="72"/><text x="6.5486%" y="431.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.03%)</title><rect x="6.2981%" y="437" width="0.0329%" height="15" fill="rgb(249,28,3)" fg:x="14146" fg:w="74"/><text x="6.5481%" y="447.50"></text></g><g><title>Parse::do_call (148 samples, 0.07%)</title><rect x="6.2759%" y="453" width="0.0659%" height="15" fill="rgb(222,56,52)" fg:x="14096" fg:w="148"/><text x="6.5259%" y="463.50"></text></g><g><title>Parse::do_field_access (48 samples, 0.02%)</title><rect x="6.3422%" y="453" width="0.0214%" height="15" fill="rgb(245,217,50)" fg:x="14245" fg:w="48"/><text x="6.5922%" y="463.50"></text></g><g><title>Parse::do_all_blocks (264 samples, 0.12%)</title><rect x="6.2670%" y="501" width="0.1175%" height="15" fill="rgb(213,201,24)" fg:x="14076" fg:w="264"/><text x="6.5170%" y="511.50"></text></g><g><title>Parse::do_one_block (264 samples, 0.12%)</title><rect x="6.2670%" y="485" width="0.1175%" height="15" fill="rgb(248,116,28)" fg:x="14076" fg:w="264"/><text x="6.5170%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (261 samples, 0.12%)</title><rect x="6.2683%" y="469" width="0.1162%" height="15" fill="rgb(219,72,43)" fg:x="14079" fg:w="261"/><text x="6.5183%" y="479.50"></text></g><g><title>ParseGenerator::generate (298 samples, 0.13%)</title><rect x="6.2558%" y="533" width="0.1327%" height="15" fill="rgb(209,138,14)" fg:x="14051" fg:w="298"/><text x="6.5058%" y="543.50"></text></g><g><title>Parse::Parse (297 samples, 0.13%)</title><rect x="6.2563%" y="517" width="0.1322%" height="15" fill="rgb(222,18,33)" fg:x="14052" fg:w="297"/><text x="6.5063%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (38 samples, 0.02%)</title><rect x="6.3885%" y="533" width="0.0169%" height="15" fill="rgb(213,199,7)" fg:x="14349" fg:w="38"/><text x="6.6385%" y="543.50"></text></g><g><title>Parse::do_call (438 samples, 0.20%)</title><rect x="6.2153%" y="549" width="0.1950%" height="15" fill="rgb(250,110,10)" fg:x="13960" fg:w="438"/><text x="6.4653%" y="559.50"></text></g><g><title>Parse::do_get_xxx (25 samples, 0.01%)</title><rect x="6.4161%" y="533" width="0.0111%" height="15" fill="rgb(248,123,6)" fg:x="14411" fg:w="25"/><text x="6.6661%" y="543.50"></text></g><g><title>GraphKit::access_store_at (31 samples, 0.01%)</title><rect x="6.4281%" y="517" width="0.0138%" height="15" fill="rgb(206,91,31)" fg:x="14438" fg:w="31"/><text x="6.6781%" y="527.50"></text></g><g><title>BarrierSetC2::store_at (31 samples, 0.01%)</title><rect x="6.4281%" y="501" width="0.0138%" height="15" fill="rgb(211,154,13)" fg:x="14438" fg:w="31"/><text x="6.6781%" y="511.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (30 samples, 0.01%)</title><rect x="6.4286%" y="485" width="0.0134%" height="15" fill="rgb(225,148,7)" fg:x="14439" fg:w="30"/><text x="6.6786%" y="495.50"></text></g><g><title>Parse::do_put_xxx (35 samples, 0.02%)</title><rect x="6.4273%" y="533" width="0.0156%" height="15" fill="rgb(220,160,43)" fg:x="14436" fg:w="35"/><text x="6.6773%" y="543.50"></text></g><g><title>Parse::do_field_access (69 samples, 0.03%)</title><rect x="6.4130%" y="549" width="0.0307%" height="15" fill="rgb(213,52,39)" fg:x="14404" fg:w="69"/><text x="6.6630%" y="559.50"></text></g><g><title>Parse::do_one_block (614 samples, 0.27%)</title><rect x="6.1957%" y="581" width="0.2734%" height="15" fill="rgb(243,137,7)" fg:x="13916" fg:w="614"/><text x="6.4457%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (603 samples, 0.27%)</title><rect x="6.2006%" y="565" width="0.2685%" height="15" fill="rgb(230,79,13)" fg:x="13927" fg:w="603"/><text x="6.4506%" y="575.50"></text></g><g><title>Parse::do_all_blocks (625 samples, 0.28%)</title><rect x="6.1957%" y="597" width="0.2783%" height="15" fill="rgb(247,105,23)" fg:x="13916" fg:w="625"/><text x="6.4457%" y="607.50"></text></g><g><title>ParseGenerator::generate (700 samples, 0.31%)</title><rect x="6.1721%" y="629" width="0.3117%" height="15" fill="rgb(223,179,41)" fg:x="13863" fg:w="700"/><text x="6.4221%" y="639.50"></text></g><g><title>Parse::Parse (700 samples, 0.31%)</title><rect x="6.1721%" y="613" width="0.3117%" height="15" fill="rgb(218,9,34)" fg:x="13863" fg:w="700"/><text x="6.4221%" y="623.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="6.4949%" y="469" width="0.0134%" height="15" fill="rgb(222,106,8)" fg:x="14588" fg:w="30"/><text x="6.7449%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="6.4949%" y="453" width="0.0134%" height="15" fill="rgb(211,220,0)" fg:x="14588" fg:w="30"/><text x="6.7449%" y="463.50"></text></g><g><title>Parse::do_all_blocks (31 samples, 0.01%)</title><rect x="6.4949%" y="485" width="0.0138%" height="15" fill="rgb(229,52,16)" fg:x="14588" fg:w="31"/><text x="6.7449%" y="495.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.02%)</title><rect x="6.4940%" y="517" width="0.0156%" height="15" fill="rgb(212,155,18)" fg:x="14586" fg:w="35"/><text x="6.7440%" y="527.50"></text></g><g><title>Parse::Parse (35 samples, 0.02%)</title><rect x="6.4940%" y="501" width="0.0156%" height="15" fill="rgb(242,21,14)" fg:x="14586" fg:w="35"/><text x="6.7440%" y="511.50"></text></g><g><title>Parse::do_call (52 samples, 0.02%)</title><rect x="6.4909%" y="533" width="0.0232%" height="15" fill="rgb(222,19,48)" fg:x="14579" fg:w="52"/><text x="6.7409%" y="543.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.03%)</title><rect x="6.4900%" y="581" width="0.0312%" height="15" fill="rgb(232,45,27)" fg:x="14577" fg:w="70"/><text x="6.7400%" y="591.50"></text></g><g><title>Parse::do_one_block (70 samples, 0.03%)</title><rect x="6.4900%" y="565" width="0.0312%" height="15" fill="rgb(249,103,42)" fg:x="14577" fg:w="70"/><text x="6.7400%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.03%)</title><rect x="6.4909%" y="549" width="0.0303%" height="15" fill="rgb(246,81,33)" fg:x="14579" fg:w="68"/><text x="6.7409%" y="559.50"></text></g><g><title>ParseGenerator::generate (72 samples, 0.03%)</title><rect x="6.4896%" y="613" width="0.0321%" height="15" fill="rgb(252,33,42)" fg:x="14576" fg:w="72"/><text x="6.7396%" y="623.50"></text></g><g><title>Parse::Parse (72 samples, 0.03%)</title><rect x="6.4896%" y="597" width="0.0321%" height="15" fill="rgb(209,212,41)" fg:x="14576" fg:w="72"/><text x="6.7396%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (99 samples, 0.04%)</title><rect x="6.4838%" y="629" width="0.0441%" height="15" fill="rgb(207,154,6)" fg:x="14563" fg:w="99"/><text x="6.7338%" y="639.50"></text></g><g><title>Parse::do_call (980 samples, 0.44%)</title><rect x="6.0996%" y="645" width="0.4363%" height="15" fill="rgb(223,64,47)" fg:x="13700" fg:w="980"/><text x="6.3496%" y="655.50"></text></g><g><title>GraphKit::access_load_at (23 samples, 0.01%)</title><rect x="6.5475%" y="613" width="0.0102%" height="15" fill="rgb(211,161,38)" fg:x="14706" fg:w="23"/><text x="6.7975%" y="623.50"></text></g><g><title>BarrierSetC2::load_at (23 samples, 0.01%)</title><rect x="6.5475%" y="597" width="0.0102%" height="15" fill="rgb(219,138,40)" fg:x="14706" fg:w="23"/><text x="6.7975%" y="607.50"></text></g><g><title>Parse::do_get_xxx (49 samples, 0.02%)</title><rect x="6.5408%" y="629" width="0.0218%" height="15" fill="rgb(241,228,46)" fg:x="14691" fg:w="49"/><text x="6.7908%" y="639.50"></text></g><g><title>GraphKit::access_store_at (36 samples, 0.02%)</title><rect x="6.5635%" y="613" width="0.0160%" height="15" fill="rgb(223,209,38)" fg:x="14742" fg:w="36"/><text x="6.8135%" y="623.50"></text></g><g><title>BarrierSetC2::store_at (36 samples, 0.02%)</title><rect x="6.5635%" y="597" width="0.0160%" height="15" fill="rgb(236,164,45)" fg:x="14742" fg:w="36"/><text x="6.8135%" y="607.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (35 samples, 0.02%)</title><rect x="6.5639%" y="581" width="0.0156%" height="15" fill="rgb(231,15,5)" fg:x="14743" fg:w="35"/><text x="6.8139%" y="591.50"></text></g><g><title>Parse::do_put_xxx (41 samples, 0.02%)</title><rect x="6.5626%" y="629" width="0.0183%" height="15" fill="rgb(252,35,15)" fg:x="14740" fg:w="41"/><text x="6.8126%" y="639.50"></text></g><g><title>Parse::do_field_access (97 samples, 0.04%)</title><rect x="6.5390%" y="645" width="0.0432%" height="15" fill="rgb(248,181,18)" fg:x="14687" fg:w="97"/><text x="6.7890%" y="655.50"></text></g><g><title>Parse::do_all_blocks (1,154 samples, 0.51%)</title><rect x="6.0875%" y="693" width="0.5138%" height="15" fill="rgb(233,39,42)" fg:x="13673" fg:w="1154"/><text x="6.3375%" y="703.50"></text></g><g><title>Parse::do_one_block (1,153 samples, 0.51%)</title><rect x="6.0880%" y="677" width="0.5133%" height="15" fill="rgb(238,110,33)" fg:x="13674" fg:w="1153"/><text x="6.3380%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (1,145 samples, 0.51%)</title><rect x="6.0916%" y="661" width="0.5098%" height="15" fill="rgb(233,195,10)" fg:x="13682" fg:w="1145"/><text x="6.3416%" y="671.50"></text></g><g><title>ParseGenerator::generate (1,165 samples, 0.52%)</title><rect x="6.0831%" y="725" width="0.5187%" height="15" fill="rgb(254,105,3)" fg:x="13663" fg:w="1165"/><text x="6.3331%" y="735.50"></text></g><g><title>Parse::Parse (1,165 samples, 0.52%)</title><rect x="6.0831%" y="709" width="0.5187%" height="15" fill="rgb(221,225,9)" fg:x="13663" fg:w="1165"/><text x="6.3331%" y="719.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.02%)</title><rect x="6.6365%" y="469" width="0.0160%" height="15" fill="rgb(224,227,45)" fg:x="14906" fg:w="36"/><text x="6.8865%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="6.6378%" y="453" width="0.0147%" height="15" fill="rgb(229,198,43)" fg:x="14909" fg:w="33"/><text x="6.8878%" y="463.50"></text></g><g><title>Parse::do_all_blocks (37 samples, 0.02%)</title><rect x="6.6365%" y="485" width="0.0165%" height="15" fill="rgb(206,209,35)" fg:x="14906" fg:w="37"/><text x="6.8865%" y="495.50"></text></g><g><title>ParseGenerator::generate (46 samples, 0.02%)</title><rect x="6.6343%" y="517" width="0.0205%" height="15" fill="rgb(245,195,53)" fg:x="14901" fg:w="46"/><text x="6.8843%" y="527.50"></text></g><g><title>Parse::Parse (46 samples, 0.02%)</title><rect x="6.6343%" y="501" width="0.0205%" height="15" fill="rgb(240,92,26)" fg:x="14901" fg:w="46"/><text x="6.8843%" y="511.50"></text></g><g><title>Parse::do_call (72 samples, 0.03%)</title><rect x="6.6272%" y="533" width="0.0321%" height="15" fill="rgb(207,40,23)" fg:x="14885" fg:w="72"/><text x="6.8772%" y="543.50"></text></g><g><title>Parse::do_one_block (115 samples, 0.05%)</title><rect x="6.6227%" y="565" width="0.0512%" height="15" fill="rgb(223,111,35)" fg:x="14875" fg:w="115"/><text x="6.8727%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (113 samples, 0.05%)</title><rect x="6.6236%" y="549" width="0.0503%" height="15" fill="rgb(229,147,28)" fg:x="14877" fg:w="113"/><text x="6.8736%" y="559.50"></text></g><g><title>Parse::do_all_blocks (117 samples, 0.05%)</title><rect x="6.6223%" y="581" width="0.0521%" height="15" fill="rgb(211,29,28)" fg:x="14874" fg:w="117"/><text x="6.8723%" y="591.50"></text></g><g><title>ParseGenerator::generate (126 samples, 0.06%)</title><rect x="6.6191%" y="613" width="0.0561%" height="15" fill="rgb(228,72,33)" fg:x="14867" fg:w="126"/><text x="6.8691%" y="623.50"></text></g><g><title>Parse::Parse (125 samples, 0.06%)</title><rect x="6.6196%" y="597" width="0.0557%" height="15" fill="rgb(205,214,31)" fg:x="14868" fg:w="125"/><text x="6.8696%" y="607.50"></text></g><g><title>Parse::do_call (179 samples, 0.08%)</title><rect x="6.6062%" y="629" width="0.0797%" height="15" fill="rgb(224,111,15)" fg:x="14838" fg:w="179"/><text x="6.8562%" y="639.50"></text></g><g><title>Parse::do_field_access (25 samples, 0.01%)</title><rect x="6.6868%" y="629" width="0.0111%" height="15" fill="rgb(253,21,26)" fg:x="15019" fg:w="25"/><text x="6.9368%" y="639.50"></text></g><g><title>Parse::do_one_block (228 samples, 0.10%)</title><rect x="6.6022%" y="661" width="0.1015%" height="15" fill="rgb(245,139,43)" fg:x="14829" fg:w="228"/><text x="6.8522%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (228 samples, 0.10%)</title><rect x="6.6022%" y="645" width="0.1015%" height="15" fill="rgb(252,170,7)" fg:x="14829" fg:w="228"/><text x="6.8522%" y="655.50"></text></g><g><title>Parse::do_all_blocks (230 samples, 0.10%)</title><rect x="6.6022%" y="677" width="0.1024%" height="15" fill="rgb(231,118,14)" fg:x="14829" fg:w="230"/><text x="6.8522%" y="687.50"></text></g><g><title>ParseGenerator::generate (232 samples, 0.10%)</title><rect x="6.6022%" y="709" width="0.1033%" height="15" fill="rgb(238,83,0)" fg:x="14829" fg:w="232"/><text x="6.8522%" y="719.50"></text></g><g><title>Parse::Parse (232 samples, 0.10%)</title><rect x="6.6022%" y="693" width="0.1033%" height="15" fill="rgb(221,39,39)" fg:x="14829" fg:w="232"/><text x="6.8522%" y="703.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="6.7082%" y="613" width="0.0138%" height="15" fill="rgb(222,119,46)" fg:x="15067" fg:w="31"/><text x="6.9582%" y="623.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.02%)</title><rect x="6.7069%" y="661" width="0.0187%" height="15" fill="rgb(222,165,49)" fg:x="15064" fg:w="42"/><text x="6.9569%" y="671.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.02%)</title><rect x="6.7069%" y="645" width="0.0187%" height="15" fill="rgb(219,113,52)" fg:x="15064" fg:w="42"/><text x="6.9569%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.02%)</title><rect x="6.7069%" y="629" width="0.0187%" height="15" fill="rgb(214,7,15)" fg:x="15064" fg:w="42"/><text x="6.9569%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (46 samples, 0.02%)</title><rect x="6.7055%" y="709" width="0.0205%" height="15" fill="rgb(235,32,4)" fg:x="15061" fg:w="46"/><text x="6.9555%" y="719.50"></text></g><g><title>ParseGenerator::generate (46 samples, 0.02%)</title><rect x="6.7055%" y="693" width="0.0205%" height="15" fill="rgb(238,90,54)" fg:x="15061" fg:w="46"/><text x="6.9555%" y="703.50"></text></g><g><title>Parse::Parse (46 samples, 0.02%)</title><rect x="6.7055%" y="677" width="0.0205%" height="15" fill="rgb(213,208,19)" fg:x="15061" fg:w="46"/><text x="6.9555%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (280 samples, 0.12%)</title><rect x="6.6018%" y="725" width="0.1247%" height="15" fill="rgb(233,156,4)" fg:x="14828" fg:w="280"/><text x="6.8518%" y="735.50"></text></g><g><title>Parse::do_call (1,609 samples, 0.72%)</title><rect x="6.0145%" y="741" width="0.7164%" height="15" fill="rgb(207,194,5)" fg:x="13509" fg:w="1609"/><text x="6.2645%" y="751.50"></text></g><g><title>Parse::do_all_blocks (1,616 samples, 0.72%)</title><rect x="6.0136%" y="789" width="0.7195%" height="15" fill="rgb(206,111,30)" fg:x="13507" fg:w="1616"/><text x="6.2636%" y="799.50"></text></g><g><title>Parse::do_one_block (1,616 samples, 0.72%)</title><rect x="6.0136%" y="773" width="0.7195%" height="15" fill="rgb(243,70,54)" fg:x="13507" fg:w="1616"/><text x="6.2636%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (1,616 samples, 0.72%)</title><rect x="6.0136%" y="757" width="0.7195%" height="15" fill="rgb(242,28,8)" fg:x="13507" fg:w="1616"/><text x="6.2636%" y="767.50"></text></g><g><title>C2Compiler::compile_method (1,635 samples, 0.73%)</title><rect x="6.0061%" y="853" width="0.7279%" height="15" fill="rgb(219,106,18)" fg:x="13490" fg:w="1635"/><text x="6.2561%" y="863.50"></text></g><g><title>Compile::Compile (1,635 samples, 0.73%)</title><rect x="6.0061%" y="837" width="0.7279%" height="15" fill="rgb(244,222,10)" fg:x="13490" fg:w="1635"/><text x="6.2561%" y="847.50"></text></g><g><title>ParseGenerator::generate (1,618 samples, 0.72%)</title><rect x="6.0136%" y="821" width="0.7204%" height="15" fill="rgb(236,179,52)" fg:x="13507" fg:w="1618"/><text x="6.2636%" y="831.50"></text></g><g><title>Parse::Parse (1,618 samples, 0.72%)</title><rect x="6.0136%" y="805" width="0.7204%" height="15" fill="rgb(213,23,39)" fg:x="13507" fg:w="1618"/><text x="6.2636%" y="815.50"></text></g><g><title>MachSpillCopyNode::implementation (33 samples, 0.01%)</title><rect x="6.7353%" y="773" width="0.0147%" height="15" fill="rgb(238,48,10)" fg:x="15128" fg:w="33"/><text x="6.9853%" y="783.50"></text></g><g><title>Compile::Output (41 samples, 0.02%)</title><rect x="6.7349%" y="837" width="0.0183%" height="15" fill="rgb(251,196,23)" fg:x="15127" fg:w="41"/><text x="6.9849%" y="847.50"></text></g><g><title>Compile::init_buffer (41 samples, 0.02%)</title><rect x="6.7349%" y="821" width="0.0183%" height="15" fill="rgb(250,152,24)" fg:x="15127" fg:w="41"/><text x="6.9849%" y="831.50"></text></g><g><title>Compile::shorten_branches (41 samples, 0.02%)</title><rect x="6.7349%" y="805" width="0.0183%" height="15" fill="rgb(209,150,17)" fg:x="15127" fg:w="41"/><text x="6.9849%" y="815.50"></text></g><g><title>Compile::scratch_emit_size (41 samples, 0.02%)</title><rect x="6.7349%" y="789" width="0.0183%" height="15" fill="rgb(234,202,34)" fg:x="15127" fg:w="41"/><text x="6.9849%" y="799.50"></text></g><g><title>PhaseCFG::schedule_late (39 samples, 0.02%)</title><rect x="6.7581%" y="805" width="0.0174%" height="15" fill="rgb(253,148,53)" fg:x="15179" fg:w="39"/><text x="7.0081%" y="815.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (39 samples, 0.02%)</title><rect x="6.7581%" y="789" width="0.0174%" height="15" fill="rgb(218,129,16)" fg:x="15179" fg:w="39"/><text x="7.0081%" y="799.50"></text></g><g><title>MachNode::adr_type (29 samples, 0.01%)</title><rect x="6.7625%" y="773" width="0.0129%" height="15" fill="rgb(216,85,19)" fg:x="15189" fg:w="29"/><text x="7.0125%" y="783.50"></text></g><g><title>PhaseCFG::sched_call (134 samples, 0.06%)</title><rect x="6.7754%" y="789" width="0.0597%" height="15" fill="rgb(235,228,7)" fg:x="15218" fg:w="134"/><text x="7.0254%" y="799.50"></text></g><g><title>PhaseCFG::schedule_local (135 samples, 0.06%)</title><rect x="6.7754%" y="805" width="0.0601%" height="15" fill="rgb(245,175,0)" fg:x="15218" fg:w="135"/><text x="7.0254%" y="815.50"></text></g><g><title>PhaseCFG::do_global_code_motion (189 samples, 0.08%)</title><rect x="6.7572%" y="837" width="0.0841%" height="15" fill="rgb(208,168,36)" fg:x="15177" fg:w="189"/><text x="7.0072%" y="847.50"></text></g><g><title>PhaseCFG::global_code_motion (189 samples, 0.08%)</title><rect x="6.7572%" y="821" width="0.0841%" height="15" fill="rgb(246,171,24)" fg:x="15177" fg:w="189"/><text x="7.0072%" y="831.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (42 samples, 0.02%)</title><rect x="6.8444%" y="789" width="0.0187%" height="15" fill="rgb(215,142,24)" fg:x="15373" fg:w="42"/><text x="7.0944%" y="799.50"></text></g><g><title>PhaseChaitin::Split (50 samples, 0.02%)</title><rect x="6.8413%" y="821" width="0.0223%" height="15" fill="rgb(250,187,7)" fg:x="15366" fg:w="50"/><text x="7.0913%" y="831.50"></text></g><g><title>PhaseChaitin::split_USE (43 samples, 0.02%)</title><rect x="6.8444%" y="805" width="0.0191%" height="15" fill="rgb(228,66,33)" fg:x="15373" fg:w="43"/><text x="7.0944%" y="815.50"></text></g><g><title>Compile::Code_Gen (295 samples, 0.13%)</title><rect x="6.7349%" y="853" width="0.1313%" height="15" fill="rgb(234,215,21)" fg:x="15127" fg:w="295"/><text x="6.9849%" y="863.50"></text></g><g><title>PhaseChaitin::Register_Allocate (56 samples, 0.02%)</title><rect x="6.8413%" y="837" width="0.0249%" height="15" fill="rgb(222,191,20)" fg:x="15366" fg:w="56"/><text x="7.0913%" y="847.50"></text></g><g><title>OopFlow::build_oop_map (92 samples, 0.04%)</title><rect x="7.0786%" y="773" width="0.0410%" height="15" fill="rgb(245,79,54)" fg:x="15899" fg:w="92"/><text x="7.3286%" y="783.50"></text></g><g><title>OopFlow::compute_reach (158 samples, 0.07%)</title><rect x="7.0497%" y="789" width="0.0703%" height="15" fill="rgb(240,10,37)" fg:x="15834" fg:w="158"/><text x="7.2997%" y="799.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (53 samples, 0.02%)</title><rect x="7.1231%" y="789" width="0.0236%" height="15" fill="rgb(214,192,32)" fg:x="15999" fg:w="53"/><text x="7.3731%" y="799.50"></text></g><g><title>Compile::BuildOopMaps (615 samples, 0.27%)</title><rect x="6.8743%" y="805" width="0.2738%" height="15" fill="rgb(209,36,54)" fg:x="15440" fg:w="615"/><text x="7.1243%" y="815.50"></text></g><g><title>Compile::init_scratch_buffer_blob (35 samples, 0.02%)</title><rect x="7.1556%" y="789" width="0.0156%" height="15" fill="rgb(220,10,11)" fg:x="16072" fg:w="35"/><text x="7.4056%" y="799.50"></text></g><g><title>BufferBlob::create (35 samples, 0.02%)</title><rect x="7.1556%" y="773" width="0.0156%" height="15" fill="rgb(221,106,17)" fg:x="16072" fg:w="35"/><text x="7.4056%" y="783.50"></text></g><g><title>Compile::scratch_emit_size (110 samples, 0.05%)</title><rect x="7.2220%" y="773" width="0.0490%" height="15" fill="rgb(251,142,44)" fg:x="16221" fg:w="110"/><text x="7.4720%" y="783.50"></text></g><g><title>Compile::shorten_branches (247 samples, 0.11%)</title><rect x="7.1712%" y="789" width="0.1100%" height="15" fill="rgb(238,13,15)" fg:x="16107" fg:w="247"/><text x="7.4212%" y="799.50"></text></g><g><title>Compile::init_buffer (302 samples, 0.13%)</title><rect x="7.1481%" y="805" width="0.1345%" height="15" fill="rgb(208,107,27)" fg:x="16055" fg:w="302"/><text x="7.3981%" y="815.50"></text></g><g><title>Compile::Output (931 samples, 0.41%)</title><rect x="6.8685%" y="821" width="0.4145%" height="15" fill="rgb(205,136,37)" fg:x="15427" fg:w="931"/><text x="7.1185%" y="831.50"></text></g><g><title>Compile::FillLocArray (38 samples, 0.02%)</title><rect x="7.3573%" y="789" width="0.0169%" height="15" fill="rgb(250,205,27)" fg:x="16525" fg:w="38"/><text x="7.6073%" y="799.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (27 samples, 0.01%)</title><rect x="7.3787%" y="773" width="0.0120%" height="15" fill="rgb(210,80,43)" fg:x="16573" fg:w="27"/><text x="7.6287%" y="783.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (44 samples, 0.02%)</title><rect x="7.3747%" y="789" width="0.0196%" height="15" fill="rgb(247,160,36)" fg:x="16564" fg:w="44"/><text x="7.6247%" y="799.50"></text></g><g><title>DebugInformationRecorder::describe_scope (36 samples, 0.02%)</title><rect x="7.3943%" y="789" width="0.0160%" height="15" fill="rgb(234,13,49)" fg:x="16608" fg:w="36"/><text x="7.6443%" y="799.50"></text></g><g><title>Compile::Process_OopMap_Node (179 samples, 0.08%)</title><rect x="7.3431%" y="805" width="0.0797%" height="15" fill="rgb(234,122,0)" fg:x="16493" fg:w="179"/><text x="7.5931%" y="815.50"></text></g><g><title>Compile::valid_bundle_info (32 samples, 0.01%)</title><rect x="7.4254%" y="805" width="0.0142%" height="15" fill="rgb(207,146,38)" fg:x="16678" fg:w="32"/><text x="7.6754%" y="815.50"></text></g><g><title>MachSpillCopyNode::implementation (25 samples, 0.01%)</title><rect x="7.4433%" y="805" width="0.0111%" height="15" fill="rgb(207,177,25)" fg:x="16718" fg:w="25"/><text x="7.6933%" y="815.50"></text></g><g><title>Compile::fill_buffer (432 samples, 0.19%)</title><rect x="7.2830%" y="821" width="0.1923%" height="15" fill="rgb(211,178,42)" fg:x="16358" fg:w="432"/><text x="7.5330%" y="831.50"></text></g><g><title>Matcher::init_first_stack_mask (24 samples, 0.01%)</title><rect x="7.4909%" y="789" width="0.0107%" height="15" fill="rgb(230,69,54)" fg:x="16825" fg:w="24"/><text x="7.7409%" y="799.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (32 samples, 0.01%)</title><rect x="7.4878%" y="805" width="0.0142%" height="15" fill="rgb(214,135,41)" fg:x="16818" fg:w="32"/><text x="7.7378%" y="815.50"></text></g><g><title>Matcher::find_shared (255 samples, 0.11%)</title><rect x="7.5020%" y="805" width="0.1135%" height="15" fill="rgb(237,67,25)" fg:x="16850" fg:w="255"/><text x="7.7520%" y="815.50"></text></g><g><title>Arena::contains (391 samples, 0.17%)</title><rect x="7.7229%" y="789" width="0.1741%" height="15" fill="rgb(222,189,50)" fg:x="17346" fg:w="391"/><text x="7.9729%" y="799.50"></text></g><g><title>Matcher::match_tree (77 samples, 0.03%)</title><rect x="7.9192%" y="773" width="0.0343%" height="15" fill="rgb(245,148,34)" fg:x="17787" fg:w="77"/><text x="8.1692%" y="783.50"></text></g><g><title>Matcher::match_sfpt (100 samples, 0.04%)</title><rect x="7.9125%" y="789" width="0.0445%" height="15" fill="rgb(222,29,6)" fg:x="17772" fg:w="100"/><text x="8.1625%" y="799.50"></text></g><g><title>Matcher::Label_Root (45 samples, 0.02%)</title><rect x="8.0768%" y="725" width="0.0200%" height="15" fill="rgb(221,189,43)" fg:x="18141" fg:w="45"/><text x="8.3268%" y="735.50"></text></g><g><title>State::DFA (23 samples, 0.01%)</title><rect x="8.0968%" y="725" width="0.0102%" height="15" fill="rgb(207,36,27)" fg:x="18186" fg:w="23"/><text x="8.3468%" y="735.50"></text></g><g><title>Matcher::Label_Root (87 samples, 0.04%)</title><rect x="8.0697%" y="741" width="0.0387%" height="15" fill="rgb(217,90,24)" fg:x="18125" fg:w="87"/><text x="8.3197%" y="751.50"></text></g><g><title>State::_sub_Op_AddP (24 samples, 0.01%)</title><rect x="8.1164%" y="725" width="0.0107%" height="15" fill="rgb(224,66,35)" fg:x="18230" fg:w="24"/><text x="8.3664%" y="735.50"></text></g><g><title>State::DFA (49 samples, 0.02%)</title><rect x="8.1111%" y="741" width="0.0218%" height="15" fill="rgb(221,13,50)" fg:x="18218" fg:w="49"/><text x="8.3611%" y="751.50"></text></g><g><title>Matcher::Label_Root (212 samples, 0.09%)</title><rect x="8.0434%" y="757" width="0.0944%" height="15" fill="rgb(236,68,49)" fg:x="18066" fg:w="212"/><text x="8.2934%" y="767.50"></text></g><g><title>State::DFA (40 samples, 0.02%)</title><rect x="8.1383%" y="757" width="0.0178%" height="15" fill="rgb(229,146,28)" fg:x="18279" fg:w="40"/><text x="8.3883%" y="767.50"></text></g><g><title>Matcher::Label_Root (329 samples, 0.15%)</title><rect x="8.0216%" y="773" width="0.1465%" height="15" fill="rgb(225,31,38)" fg:x="18017" fg:w="329"/><text x="8.2716%" y="783.50"></text></g><g><title>Matcher::ReduceInst (29 samples, 0.01%)</title><rect x="8.1970%" y="709" width="0.0129%" height="15" fill="rgb(250,208,3)" fg:x="18411" fg:w="29"/><text x="8.4470%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (59 samples, 0.03%)</title><rect x="8.1921%" y="725" width="0.0263%" height="15" fill="rgb(246,54,23)" fg:x="18400" fg:w="59"/><text x="8.4421%" y="735.50"></text></g><g><title>Matcher::ReduceInst (93 samples, 0.04%)</title><rect x="8.1872%" y="741" width="0.0414%" height="15" fill="rgb(243,76,11)" fg:x="18389" fg:w="93"/><text x="8.4372%" y="751.50"></text></g><g><title>State::MachOperGenerator (26 samples, 0.01%)</title><rect x="8.2411%" y="741" width="0.0116%" height="15" fill="rgb(245,21,50)" fg:x="18510" fg:w="26"/><text x="8.4911%" y="751.50"></text></g><g><title>Matcher::ReduceInst_Interior (164 samples, 0.07%)</title><rect x="8.1805%" y="757" width="0.0730%" height="15" fill="rgb(228,9,43)" fg:x="18374" fg:w="164"/><text x="8.4305%" y="767.50"></text></g><g><title>State::MachNodeGenerator (57 samples, 0.03%)</title><rect x="8.2602%" y="757" width="0.0254%" height="15" fill="rgb(208,100,47)" fg:x="18553" fg:w="57"/><text x="8.5102%" y="767.50"></text></g><g><title>Matcher::ReduceInst (289 samples, 0.13%)</title><rect x="8.1681%" y="773" width="0.1287%" height="15" fill="rgb(232,26,8)" fg:x="18346" fg:w="289"/><text x="8.4181%" y="783.50"></text></g><g><title>Matcher::match_tree (775 samples, 0.35%)</title><rect x="7.9570%" y="789" width="0.3450%" height="15" fill="rgb(216,166,38)" fg:x="17872" fg:w="775"/><text x="8.2070%" y="799.50"></text></g><g><title>Node::clone (63 samples, 0.03%)</title><rect x="8.3039%" y="789" width="0.0280%" height="15" fill="rgb(251,202,51)" fg:x="18651" fg:w="63"/><text x="8.5539%" y="799.50"></text></g><g><title>Node::out_grow (37 samples, 0.02%)</title><rect x="8.3333%" y="789" width="0.0165%" height="15" fill="rgb(254,216,34)" fg:x="18717" fg:w="37"/><text x="8.5833%" y="799.50"></text></g><g><title>Matcher::xform (1,642 samples, 0.73%)</title><rect x="7.6196%" y="805" width="0.7311%" height="15" fill="rgb(251,32,27)" fg:x="17114" fg:w="1642"/><text x="7.8696%" y="815.50"></text></g><g><title>Matcher::match (1,966 samples, 0.88%)</title><rect x="7.4780%" y="821" width="0.8753%" height="15" fill="rgb(208,127,28)" fg:x="16796" fg:w="1966"/><text x="7.7280%" y="831.50"></text></g><g><title>PhaseBlockLayout::find_edges (62 samples, 0.03%)</title><rect x="8.3537%" y="805" width="0.0276%" height="15" fill="rgb(224,137,22)" fg:x="18763" fg:w="62"/><text x="8.6037%" y="815.50"></text></g><g><title>PhaseBlockLayout::grow_traces (39 samples, 0.02%)</title><rect x="8.3813%" y="805" width="0.0174%" height="15" fill="rgb(254,70,32)" fg:x="18825" fg:w="39"/><text x="8.6313%" y="815.50"></text></g><g><title>__GI___qsort_r (30 samples, 0.01%)</title><rect x="8.3854%" y="789" width="0.0134%" height="15" fill="rgb(229,75,37)" fg:x="18834" fg:w="30"/><text x="8.6354%" y="799.50"></text></g><g><title>msort_with_tmp (29 samples, 0.01%)</title><rect x="8.3858%" y="773" width="0.0129%" height="15" fill="rgb(252,64,23)" fg:x="18835" fg:w="29"/><text x="8.6358%" y="783.50"></text></g><g><title>msort_with_tmp (29 samples, 0.01%)</title><rect x="8.3858%" y="757" width="0.0129%" height="15" fill="rgb(232,162,48)" fg:x="18835" fg:w="29"/><text x="8.6358%" y="767.50"></text></g><g><title>msort_with_tmp (27 samples, 0.01%)</title><rect x="8.3867%" y="741" width="0.0120%" height="15" fill="rgb(246,160,12)" fg:x="18837" fg:w="27"/><text x="8.6367%" y="751.50"></text></g><g><title>msort_with_tmp (27 samples, 0.01%)</title><rect x="8.3867%" y="725" width="0.0120%" height="15" fill="rgb(247,166,0)" fg:x="18837" fg:w="27"/><text x="8.6367%" y="735.50"></text></g><g><title>msort_with_tmp (23 samples, 0.01%)</title><rect x="8.3885%" y="709" width="0.0102%" height="15" fill="rgb(249,219,21)" fg:x="18841" fg:w="23"/><text x="8.6385%" y="719.50"></text></g><g><title>msort_with_tmp (23 samples, 0.01%)</title><rect x="8.3885%" y="693" width="0.0102%" height="15" fill="rgb(205,209,3)" fg:x="18841" fg:w="23"/><text x="8.6385%" y="703.50"></text></g><g><title>Trace::fixup_blocks (23 samples, 0.01%)</title><rect x="8.4054%" y="789" width="0.0102%" height="15" fill="rgb(243,44,1)" fg:x="18879" fg:w="23"/><text x="8.6554%" y="799.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (144 samples, 0.06%)</title><rect x="8.3533%" y="821" width="0.0641%" height="15" fill="rgb(206,159,16)" fg:x="18762" fg:w="144"/><text x="8.6033%" y="831.50"></text></g><g><title>PhaseBlockLayout::reorder_traces (31 samples, 0.01%)</title><rect x="8.4036%" y="805" width="0.0138%" height="15" fill="rgb(244,77,30)" fg:x="18875" fg:w="31"/><text x="8.6536%" y="815.50"></text></g><g><title>PhaseCFG::PhaseCFG (123 samples, 0.05%)</title><rect x="8.4174%" y="821" width="0.0548%" height="15" fill="rgb(218,69,12)" fg:x="18906" fg:w="123"/><text x="8.6674%" y="831.50"></text></g><g><title>PhaseCFG::build_cfg (122 samples, 0.05%)</title><rect x="8.4179%" y="805" width="0.0543%" height="15" fill="rgb(212,87,7)" fg:x="18907" fg:w="122"/><text x="8.6679%" y="815.50"></text></g><g><title>PhaseCFG::do_DFS (23 samples, 0.01%)</title><rect x="8.4895%" y="789" width="0.0102%" height="15" fill="rgb(245,114,25)" fg:x="19068" fg:w="23"/><text x="8.7395%" y="799.50"></text></g><g><title>PhaseCFG::build_dominator_tree (66 samples, 0.03%)</title><rect x="8.4722%" y="805" width="0.0294%" height="15" fill="rgb(210,61,42)" fg:x="19029" fg:w="66"/><text x="8.7222%" y="815.50"></text></g><g><title>CFGLoop::compute_freq (25 samples, 0.01%)</title><rect x="8.5056%" y="789" width="0.0111%" height="15" fill="rgb(211,52,33)" fg:x="19104" fg:w="25"/><text x="8.7556%" y="799.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (48 samples, 0.02%)</title><rect x="8.5020%" y="805" width="0.0214%" height="15" fill="rgb(234,58,33)" fg:x="19096" fg:w="48"/><text x="8.7520%" y="815.50"></text></g><g><title>PhaseCFG::implicit_null_check (39 samples, 0.02%)</title><rect x="8.6489%" y="789" width="0.0174%" height="15" fill="rgb(220,115,36)" fg:x="19426" fg:w="39"/><text x="8.8989%" y="799.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (29 samples, 0.01%)</title><rect x="8.6663%" y="789" width="0.0129%" height="15" fill="rgb(243,153,54)" fg:x="19465" fg:w="29"/><text x="8.9163%" y="799.50"></text></g><g><title>Node_Backward_Iterator::next (197 samples, 0.09%)</title><rect x="8.7179%" y="773" width="0.0877%" height="15" fill="rgb(251,47,18)" fg:x="19581" fg:w="197"/><text x="8.9679%" y="783.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (71 samples, 0.03%)</title><rect x="8.8056%" y="773" width="0.0316%" height="15" fill="rgb(242,102,42)" fg:x="19778" fg:w="71"/><text x="9.0556%" y="783.50"></text></g><g><title>MachNode::adr_type (27 samples, 0.01%)</title><rect x="8.8644%" y="757" width="0.0120%" height="15" fill="rgb(234,31,38)" fg:x="19910" fg:w="27"/><text x="9.1144%" y="767.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (107 samples, 0.05%)</title><rect x="8.8373%" y="773" width="0.0476%" height="15" fill="rgb(221,117,51)" fg:x="19849" fg:w="107"/><text x="9.0873%" y="783.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (45 samples, 0.02%)</title><rect x="8.8849%" y="773" width="0.0200%" height="15" fill="rgb(212,20,18)" fg:x="19956" fg:w="45"/><text x="9.1349%" y="783.50"></text></g><g><title>Node_Array::insert (23 samples, 0.01%)</title><rect x="8.8947%" y="757" width="0.0102%" height="15" fill="rgb(245,133,36)" fg:x="19978" fg:w="23"/><text x="9.1447%" y="767.50"></text></g><g><title>PhaseCFG::schedule_late (509 samples, 0.23%)</title><rect x="8.6792%" y="789" width="0.2266%" height="15" fill="rgb(212,6,19)" fg:x="19494" fg:w="509"/><text x="8.9292%" y="799.50"></text></g><g><title>Node::is_iteratively_computed (23 samples, 0.01%)</title><rect x="8.9860%" y="773" width="0.0102%" height="15" fill="rgb(218,1,36)" fg:x="20183" fg:w="23"/><text x="9.2360%" y="783.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (39 samples, 0.02%)</title><rect x="8.9966%" y="773" width="0.0174%" height="15" fill="rgb(246,84,54)" fg:x="20207" fg:w="39"/><text x="9.2466%" y="783.50"></text></g><g><title>PhaseCFG::needed_for_next_call (24 samples, 0.01%)</title><rect x="9.0140%" y="773" width="0.0107%" height="15" fill="rgb(242,110,6)" fg:x="20246" fg:w="24"/><text x="9.2640%" y="783.50"></text></g><g><title>PhaseCFG::select (82 samples, 0.04%)</title><rect x="9.0247%" y="773" width="0.0365%" height="15" fill="rgb(214,47,5)" fg:x="20270" fg:w="82"/><text x="9.2747%" y="783.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (42 samples, 0.02%)</title><rect x="9.0612%" y="773" width="0.0187%" height="15" fill="rgb(218,159,25)" fg:x="20352" fg:w="42"/><text x="9.3112%" y="783.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (39 samples, 0.02%)</title><rect x="9.0799%" y="773" width="0.0174%" height="15" fill="rgb(215,211,28)" fg:x="20394" fg:w="39"/><text x="9.3299%" y="783.50"></text></g><g><title>PhaseCFG::schedule_local (439 samples, 0.20%)</title><rect x="8.9058%" y="789" width="0.1955%" height="15" fill="rgb(238,59,32)" fg:x="20003" fg:w="439"/><text x="9.1558%" y="799.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (24 samples, 0.01%)</title><rect x="9.1013%" y="789" width="0.0107%" height="15" fill="rgb(226,82,3)" fg:x="20442" fg:w="24"/><text x="9.3513%" y="799.50"></text></g><g><title>RegMask::Size (66 samples, 0.03%)</title><rect x="9.2188%" y="773" width="0.0294%" height="15" fill="rgb(240,164,32)" fg:x="20706" fg:w="66"/><text x="9.4688%" y="783.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (356 samples, 0.16%)</title><rect x="9.1182%" y="789" width="0.1585%" height="15" fill="rgb(232,46,7)" fg:x="20480" fg:w="356"/><text x="9.3682%" y="799.50"></text></g><g><title>PhaseChaitin::mark_ssa (75 samples, 0.03%)</title><rect x="9.2767%" y="789" width="0.0334%" height="15" fill="rgb(229,129,53)" fg:x="20836" fg:w="75"/><text x="9.5267%" y="799.50"></text></g><g><title>IndexSet::initialize (88 samples, 0.04%)</title><rect x="9.3292%" y="773" width="0.0392%" height="15" fill="rgb(234,188,29)" fg:x="20954" fg:w="88"/><text x="9.5792%" y="783.50"></text></g><g><title>PhaseIFG::init (163 samples, 0.07%)</title><rect x="9.3101%" y="789" width="0.0726%" height="15" fill="rgb(246,141,4)" fg:x="20911" fg:w="163"/><text x="9.5601%" y="799.50"></text></g><g><title>[libc-2.31.so] (32 samples, 0.01%)</title><rect x="9.3684%" y="773" width="0.0142%" height="15" fill="rgb(229,23,39)" fg:x="21042" fg:w="32"/><text x="9.6184%" y="783.50"></text></g><g><title>IndexSet::initialize (41 samples, 0.02%)</title><rect x="9.4566%" y="773" width="0.0183%" height="15" fill="rgb(206,12,3)" fg:x="21240" fg:w="41"/><text x="9.7066%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (36 samples, 0.02%)</title><rect x="9.5020%" y="757" width="0.0160%" height="15" fill="rgb(252,226,20)" fg:x="21342" fg:w="36"/><text x="9.7520%" y="767.50"></text></g><g><title>PhaseLive::add_livein (163 samples, 0.07%)</title><rect x="9.4761%" y="773" width="0.0726%" height="15" fill="rgb(216,123,35)" fg:x="21284" fg:w="163"/><text x="9.7261%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (67 samples, 0.03%)</title><rect x="9.5189%" y="757" width="0.0298%" height="15" fill="rgb(212,68,40)" fg:x="21380" fg:w="67"/><text x="9.7689%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (48 samples, 0.02%)</title><rect x="9.6079%" y="757" width="0.0214%" height="15" fill="rgb(254,125,32)" fg:x="21580" fg:w="48"/><text x="9.8579%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (77 samples, 0.03%)</title><rect x="9.6342%" y="757" width="0.0343%" height="15" fill="rgb(253,97,22)" fg:x="21639" fg:w="77"/><text x="9.8842%" y="767.50"></text></g><g><title>PhaseLive::add_liveout (270 samples, 0.12%)</title><rect x="9.5487%" y="773" width="0.1202%" height="15" fill="rgb(241,101,14)" fg:x="21447" fg:w="270"/><text x="9.7987%" y="783.50"></text></g><g><title>PhaseLive::compute (645 samples, 0.29%)</title><rect x="9.3827%" y="789" width="0.2872%" height="15" fill="rgb(238,103,29)" fg:x="21074" fg:w="645"/><text x="9.6327%" y="799.50"></text></g><g><title>PhaseCFG::do_global_code_motion (2,713 samples, 1.21%)</title><rect x="8.4722%" y="821" width="1.2079%" height="15" fill="rgb(233,195,47)" fg:x="19029" fg:w="2713"/><text x="8.7222%" y="831.50"></text></g><g><title>PhaseCFG::global_code_motion (2,598 samples, 1.16%)</title><rect x="8.5234%" y="805" width="1.1567%" height="15" fill="rgb(246,218,30)" fg:x="19144" fg:w="2598"/><text x="8.7734%" y="815.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (59 samples, 0.03%)</title><rect x="9.6872%" y="821" width="0.0263%" height="15" fill="rgb(219,145,47)" fg:x="21758" fg:w="59"/><text x="9.9372%" y="831.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (789 samples, 0.35%)</title><rect x="9.7633%" y="805" width="0.3513%" height="15" fill="rgb(243,12,26)" fg:x="21929" fg:w="789"/><text x="10.0133%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (198 samples, 0.09%)</title><rect x="10.2842%" y="789" width="0.0882%" height="15" fill="rgb(214,87,16)" fg:x="23099" fg:w="198"/><text x="10.5342%" y="799.50"></text></g><g><title>RegMask::find_first_set (27 samples, 0.01%)</title><rect x="10.4067%" y="773" width="0.0120%" height="15" fill="rgb(208,99,42)" fg:x="23374" fg:w="27"/><text x="10.6567%" y="783.50"></text></g><g><title>PhaseChaitin::bias_color (113 samples, 0.05%)</title><rect x="10.3724%" y="789" width="0.0503%" height="15" fill="rgb(253,99,2)" fg:x="23297" fg:w="113"/><text x="10.6224%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (33 samples, 0.01%)</title><rect x="10.5273%" y="773" width="0.0147%" height="15" fill="rgb(220,168,23)" fg:x="23645" fg:w="33"/><text x="10.7773%" y="783.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (55 samples, 0.02%)</title><rect x="10.5420%" y="773" width="0.0245%" height="15" fill="rgb(242,38,24)" fg:x="23678" fg:w="55"/><text x="10.7920%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (249 samples, 0.11%)</title><rect x="10.5665%" y="773" width="0.1109%" height="15" fill="rgb(225,182,9)" fg:x="23733" fg:w="249"/><text x="10.8165%" y="783.50"></text></g><g><title>PhaseIFG::re_insert (573 samples, 0.26%)</title><rect x="10.4267%" y="789" width="0.2551%" height="15" fill="rgb(243,178,37)" fg:x="23419" fg:w="573"/><text x="10.6767%" y="799.50"></text></g><g><title>RegMask::clear_to_sets (106 samples, 0.05%)</title><rect x="10.6818%" y="789" width="0.0472%" height="15" fill="rgb(232,139,19)" fg:x="23992" fg:w="106"/><text x="10.9318%" y="799.50"></text></g><g><title>PhaseChaitin::Select (1,384 samples, 0.62%)</title><rect x="10.1146%" y="805" width="0.6162%" height="15" fill="rgb(225,201,24)" fg:x="22718" fg:w="1384"/><text x="10.3646%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (224 samples, 0.10%)</title><rect x="10.8127%" y="789" width="0.0997%" height="15" fill="rgb(221,47,46)" fg:x="24286" fg:w="224"/><text x="11.0627%" y="799.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (44 samples, 0.02%)</title><rect x="11.0402%" y="773" width="0.0196%" height="15" fill="rgb(249,23,13)" fg:x="24797" fg:w="44"/><text x="11.2902%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (285 samples, 0.13%)</title><rect x="11.0598%" y="773" width="0.1269%" height="15" fill="rgb(219,9,5)" fg:x="24841" fg:w="285"/><text x="11.3098%" y="783.50"></text></g><g><title>PhaseIFG::remove_node (618 samples, 0.28%)</title><rect x="10.9124%" y="789" width="0.2751%" height="15" fill="rgb(254,171,16)" fg:x="24510" fg:w="618"/><text x="11.1624%" y="799.50"></text></g><g><title>PhaseChaitin::Simplify (1,027 samples, 0.46%)</title><rect x="10.7308%" y="805" width="0.4572%" height="15" fill="rgb(230,171,20)" fg:x="24102" fg:w="1027"/><text x="10.9808%" y="815.50"></text></g><g><title>MachNode::ideal_reg (25 samples, 0.01%)</title><rect x="12.0006%" y="773" width="0.0111%" height="15" fill="rgb(210,71,41)" fg:x="26954" fg:w="25"/><text x="12.2506%" y="783.50"></text></g><g><title>MachNode::rematerialize (110 samples, 0.05%)</title><rect x="11.9658%" y="789" width="0.0490%" height="15" fill="rgb(206,173,20)" fg:x="26876" fg:w="110"/><text x="12.2158%" y="799.50"></text></g><g><title>Node::rematerialize (107 samples, 0.05%)</title><rect x="12.0255%" y="789" width="0.0476%" height="15" fill="rgb(233,88,34)" fg:x="27010" fg:w="107"/><text x="12.2755%" y="799.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (32 samples, 0.01%)</title><rect x="12.1003%" y="789" width="0.0142%" height="15" fill="rgb(223,209,46)" fg:x="27178" fg:w="32"/><text x="12.3503%" y="799.50"></text></g><g><title>RegMask::is_aligned_pairs (28 samples, 0.01%)</title><rect x="12.1408%" y="757" width="0.0125%" height="15" fill="rgb(250,43,18)" fg:x="27269" fg:w="28"/><text x="12.3908%" y="767.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (56 samples, 0.02%)</title><rect x="12.1306%" y="773" width="0.0249%" height="15" fill="rgb(208,13,10)" fg:x="27246" fg:w="56"/><text x="12.3806%" y="783.50"></text></g><g><title>PhaseChaitin::split_USE (115 samples, 0.05%)</title><rect x="12.1145%" y="789" width="0.0512%" height="15" fill="rgb(212,200,36)" fg:x="27210" fg:w="115"/><text x="12.3645%" y="799.50"></text></g><g><title>RegMask::Size (24 samples, 0.01%)</title><rect x="12.1698%" y="789" width="0.0107%" height="15" fill="rgb(225,90,30)" fg:x="27334" fg:w="24"/><text x="12.4198%" y="799.50"></text></g><g><title>PhaseChaitin::Split (2,269 samples, 1.01%)</title><rect x="11.1880%" y="805" width="1.0102%" height="15" fill="rgb(236,182,39)" fg:x="25129" fg:w="2269"/><text x="11.4380%" y="815.50"></text></g><g><title>__tls_get_addr (26 samples, 0.01%)</title><rect x="12.5785%" y="773" width="0.0116%" height="15" fill="rgb(212,144,35)" fg:x="28252" fg:w="26"/><text x="12.8285%" y="783.50"></text></g><g><title>IndexSet::IndexSet (233 samples, 0.10%)</title><rect x="12.4872%" y="789" width="0.1037%" height="15" fill="rgb(228,63,44)" fg:x="28047" fg:w="233"/><text x="12.7372%" y="799.50"></text></g><g><title>MachNode::rematerialize (45 samples, 0.02%)</title><rect x="12.5936%" y="789" width="0.0200%" height="15" fill="rgb(228,109,6)" fg:x="28286" fg:w="45"/><text x="12.8436%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (28 samples, 0.01%)</title><rect x="12.7548%" y="773" width="0.0125%" height="15" fill="rgb(238,117,24)" fg:x="28648" fg:w="28"/><text x="13.0048%" y="783.50"></text></g><g><title>MachNode::rematerialize (64 samples, 0.03%)</title><rect x="12.7775%" y="773" width="0.0285%" height="15" fill="rgb(242,26,26)" fg:x="28699" fg:w="64"/><text x="13.0275%" y="783.50"></text></g><g><title>PhaseChaitin::raise_pressure (96 samples, 0.04%)</title><rect x="12.8113%" y="773" width="0.0427%" height="15" fill="rgb(221,92,48)" fg:x="28775" fg:w="96"/><text x="13.0613%" y="783.50"></text></g><g><title>RegMask::is_UP (43 samples, 0.02%)</title><rect x="12.8349%" y="757" width="0.0191%" height="15" fill="rgb(209,209,32)" fg:x="28828" fg:w="43"/><text x="13.0849%" y="767.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (529 samples, 0.24%)</title><rect x="12.6199%" y="789" width="0.2355%" height="15" fill="rgb(221,70,22)" fg:x="28345" fg:w="529"/><text x="12.8699%" y="799.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (41 samples, 0.02%)</title><rect x="12.8634%" y="789" width="0.0183%" height="15" fill="rgb(248,145,5)" fg:x="28892" fg:w="41"/><text x="13.1134%" y="799.50"></text></g><g><title>RegMask::Size (29 samples, 0.01%)</title><rect x="12.8688%" y="773" width="0.0129%" height="15" fill="rgb(226,116,26)" fg:x="28904" fg:w="29"/><text x="13.1188%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (122 samples, 0.05%)</title><rect x="12.9636%" y="773" width="0.0543%" height="15" fill="rgb(244,5,17)" fg:x="29117" fg:w="122"/><text x="13.2136%" y="783.50"></text></g><g><title>RegMask::is_UP (56 samples, 0.02%)</title><rect x="13.0179%" y="773" width="0.0249%" height="15" fill="rgb(252,159,33)" fg:x="29239" fg:w="56"/><text x="13.2679%" y="783.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (363 samples, 0.16%)</title><rect x="12.8817%" y="789" width="0.1616%" height="15" fill="rgb(206,71,0)" fg:x="28933" fg:w="363"/><text x="13.1317%" y="799.50"></text></g><g><title>__tls_get_addr (32 samples, 0.01%)</title><rect x="13.6452%" y="757" width="0.0142%" height="15" fill="rgb(233,118,54)" fg:x="30648" fg:w="32"/><text x="13.8952%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (101 samples, 0.04%)</title><rect x="13.6154%" y="773" width="0.0450%" height="15" fill="rgb(234,83,48)" fg:x="30581" fg:w="101"/><text x="13.8654%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (524 samples, 0.23%)</title><rect x="13.6648%" y="773" width="0.2333%" height="15" fill="rgb(228,3,54)" fg:x="30692" fg:w="524"/><text x="13.9148%" y="783.50"></text></g><g><title>PhaseChaitin::interfere_with_live (1,922 samples, 0.86%)</title><rect x="13.0433%" y="789" width="0.8557%" height="15" fill="rgb(226,155,13)" fg:x="29296" fg:w="1922"/><text x="13.2933%" y="799.50"></text></g><g><title>PhaseChaitin::lower_pressure (54 samples, 0.02%)</title><rect x="13.8990%" y="789" width="0.0240%" height="15" fill="rgb(241,28,37)" fg:x="31218" fg:w="54"/><text x="14.1490%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (146 samples, 0.07%)</title><rect x="14.0664%" y="773" width="0.0650%" height="15" fill="rgb(233,93,10)" fg:x="31594" fg:w="146"/><text x="14.3164%" y="783.50"></text></g><g><title>RegMask::Size (231 samples, 0.10%)</title><rect x="14.1314%" y="773" width="0.1028%" height="15" fill="rgb(225,113,19)" fg:x="31740" fg:w="231"/><text x="14.3814%" y="783.50"></text></g><g><title>RegMask::smear_to_sets (427 samples, 0.19%)</title><rect x="14.2343%" y="773" width="0.1901%" height="15" fill="rgb(241,2,18)" fg:x="31971" fg:w="427"/><text x="14.4843%" y="783.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (1,141 samples, 0.51%)</title><rect x="13.9230%" y="789" width="0.5080%" height="15" fill="rgb(228,207,21)" fg:x="31272" fg:w="1141"/><text x="14.1730%" y="799.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (23 samples, 0.01%)</title><rect x="14.4310%" y="789" width="0.0102%" height="15" fill="rgb(213,211,35)" fg:x="32413" fg:w="23"/><text x="14.6810%" y="799.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (5,066 samples, 2.26%)</title><rect x="12.1987%" y="805" width="2.2555%" height="15" fill="rgb(209,83,10)" fg:x="27399" fg:w="5066"/><text x="12.4487%" y="815.50">P..</text></g><g><title>PhaseChaitin::interfere_with_live (238 samples, 0.11%)</title><rect x="14.5058%" y="789" width="0.1060%" height="15" fill="rgb(209,164,1)" fg:x="32581" fg:w="238"/><text x="14.7558%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (51 samples, 0.02%)</title><rect x="14.5891%" y="773" width="0.0227%" height="15" fill="rgb(213,184,43)" fg:x="32768" fg:w="51"/><text x="14.8391%" y="783.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (355 samples, 0.16%)</title><rect x="14.4542%" y="805" width="0.1581%" height="15" fill="rgb(231,61,34)" fg:x="32465" fg:w="355"/><text x="14.7042%" y="815.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (72 samples, 0.03%)</title><rect x="14.6123%" y="805" width="0.0321%" height="15" fill="rgb(235,75,3)" fg:x="32820" fg:w="72"/><text x="14.8623%" y="815.50"></text></g><g><title>PhaseChaitin::compact (31 samples, 0.01%)</title><rect x="14.6443%" y="805" width="0.0138%" height="15" fill="rgb(220,106,47)" fg:x="32892" fg:w="31"/><text x="14.8943%" y="815.50"></text></g><g><title>PhaseChaitin::de_ssa (84 samples, 0.04%)</title><rect x="14.6581%" y="805" width="0.0374%" height="15" fill="rgb(210,196,33)" fg:x="32923" fg:w="84"/><text x="14.9081%" y="815.50"></text></g><g><title>PhaseChaitin::fixup_spills (45 samples, 0.02%)</title><rect x="14.6955%" y="805" width="0.0200%" height="15" fill="rgb(229,154,42)" fg:x="33007" fg:w="45"/><text x="14.9455%" y="815.50"></text></g><g><title>MachCallJavaNode::in_RegMask (56 samples, 0.02%)</title><rect x="15.2583%" y="789" width="0.0249%" height="15" fill="rgb(228,114,26)" fg:x="34271" fg:w="56"/><text x="15.5083%" y="799.50"></text></g><g><title>MachNode::ideal_reg (51 samples, 0.02%)</title><rect x="15.2859%" y="789" width="0.0227%" height="15" fill="rgb(208,144,1)" fg:x="34333" fg:w="51"/><text x="15.5359%" y="799.50"></text></g><g><title>MachNode::in_RegMask (58 samples, 0.03%)</title><rect x="15.3086%" y="789" width="0.0258%" height="15" fill="rgb(239,112,37)" fg:x="34384" fg:w="58"/><text x="15.5586%" y="799.50"></text></g><g><title>PhiNode::in_RegMask (27 samples, 0.01%)</title><rect x="15.3536%" y="789" width="0.0120%" height="15" fill="rgb(210,96,50)" fg:x="34485" fg:w="27"/><text x="15.6036%" y="799.50"></text></g><g><title>RegMask::Size (789 samples, 0.35%)</title><rect x="15.3687%" y="789" width="0.3513%" height="15" fill="rgb(222,178,2)" fg:x="34519" fg:w="789"/><text x="15.6187%" y="799.50"></text></g><g><title>RegMask::clear_to_sets (139 samples, 0.06%)</title><rect x="15.7200%" y="789" width="0.0619%" height="15" fill="rgb(226,74,18)" fg:x="35308" fg:w="139"/><text x="15.9700%" y="799.50"></text></g><g><title>RegMask::is_aligned_pairs (63 samples, 0.03%)</title><rect x="15.7819%" y="789" width="0.0280%" height="15" fill="rgb(225,67,54)" fg:x="35447" fg:w="63"/><text x="16.0319%" y="799.50"></text></g><g><title>RegMask::is_bound1 (102 samples, 0.05%)</title><rect x="15.8099%" y="789" width="0.0454%" height="15" fill="rgb(251,92,32)" fg:x="35510" fg:w="102"/><text x="16.0599%" y="799.50"></text></g><g><title>RegMask::is_bound_pair (66 samples, 0.03%)</title><rect x="15.8553%" y="789" width="0.0294%" height="15" fill="rgb(228,149,22)" fg:x="35612" fg:w="66"/><text x="16.1053%" y="799.50"></text></g><g><title>Dict::Insert (24 samples, 0.01%)</title><rect x="15.8945%" y="773" width="0.0107%" height="15" fill="rgb(243,54,13)" fg:x="35700" fg:w="24"/><text x="16.1445%" y="783.50"></text></g><g><title>Type::hashcons (29 samples, 0.01%)</title><rect x="15.8932%" y="789" width="0.0129%" height="15" fill="rgb(243,180,28)" fg:x="35697" fg:w="29"/><text x="16.1432%" y="799.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (2,740 samples, 1.22%)</title><rect x="14.7155%" y="805" width="1.2199%" height="15" fill="rgb(208,167,24)" fg:x="33052" fg:w="2740"/><text x="14.9655%" y="815.50"></text></g><g><title>PhaseChaitin::merge_multidefs (402 samples, 0.18%)</title><rect x="15.9355%" y="805" width="0.1790%" height="15" fill="rgb(245,73,45)" fg:x="35792" fg:w="402"/><text x="16.1855%" y="815.50"></text></g><g><title>Node::replace_by (23 samples, 0.01%)</title><rect x="16.6866%" y="789" width="0.0102%" height="15" fill="rgb(237,203,48)" fg:x="37479" fg:w="23"/><text x="16.9366%" y="799.50"></text></g><g><title>PhaseChaitin::use_prior_register (57 samples, 0.03%)</title><rect x="17.2369%" y="773" width="0.0254%" height="15" fill="rgb(211,197,16)" fg:x="38715" fg:w="57"/><text x="17.4869%" y="783.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (29 samples, 0.01%)</title><rect x="17.2622%" y="773" width="0.0129%" height="15" fill="rgb(243,99,51)" fg:x="38772" fg:w="29"/><text x="17.5122%" y="783.50"></text></g><g><title>PhaseChaitin::elide_copy (1,291 samples, 0.57%)</title><rect x="16.7048%" y="789" width="0.5748%" height="15" fill="rgb(215,123,29)" fg:x="37520" fg:w="1291"/><text x="16.9548%" y="799.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (27 samples, 0.01%)</title><rect x="17.2832%" y="789" width="0.0120%" height="15" fill="rgb(239,186,37)" fg:x="38819" fg:w="27"/><text x="17.5332%" y="799.50"></text></g><g><title>[libc-2.31.so] (66 samples, 0.03%)</title><rect x="17.2983%" y="789" width="0.0294%" height="15" fill="rgb(252,136,39)" fg:x="38853" fg:w="66"/><text x="17.5483%" y="799.50"></text></g><g><title>find_lowest_bit (260 samples, 0.12%)</title><rect x="17.3290%" y="789" width="0.1158%" height="15" fill="rgb(223,213,32)" fg:x="38922" fg:w="260"/><text x="17.5790%" y="799.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (2,991 samples, 1.33%)</title><rect x="16.1149%" y="805" width="1.3317%" height="15" fill="rgb(233,115,5)" fg:x="36195" fg:w="2991"/><text x="16.3649%" y="815.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (148 samples, 0.07%)</title><rect x="17.4466%" y="805" width="0.0659%" height="15" fill="rgb(207,226,44)" fg:x="39186" fg:w="148"/><text x="17.6966%" y="815.50"></text></g><g><title>PhaseIFG::Union (28 samples, 0.01%)</title><rect x="17.5525%" y="757" width="0.0125%" height="15" fill="rgb(208,126,0)" fg:x="39424" fg:w="28"/><text x="17.8025%" y="767.50"></text></g><g><title>PhaseCoalesce::combine_these_two (45 samples, 0.02%)</title><rect x="17.5458%" y="773" width="0.0200%" height="15" fill="rgb(244,66,21)" fg:x="39409" fg:w="45"/><text x="17.7958%" y="783.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (121 samples, 0.05%)</title><rect x="17.5129%" y="789" width="0.0539%" height="15" fill="rgb(222,97,12)" fg:x="39335" fg:w="121"/><text x="17.7629%" y="799.50"></text></g><g><title>PhaseCFG::is_uncommon (94 samples, 0.04%)</title><rect x="17.5810%" y="773" width="0.0419%" height="15" fill="rgb(219,213,19)" fg:x="39488" fg:w="94"/><text x="17.8310%" y="783.50"></text></g><g><title>Block::has_uncommon_code (24 samples, 0.01%)</title><rect x="17.6122%" y="757" width="0.0107%" height="15" fill="rgb(252,169,30)" fg:x="39558" fg:w="24"/><text x="17.8622%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (26 samples, 0.01%)</title><rect x="17.7057%" y="741" width="0.0116%" height="15" fill="rgb(206,32,51)" fg:x="39768" fg:w="26"/><text x="17.9557%" y="751.50"></text></g><g><title>IndexSet::lrg_union (193 samples, 0.09%)</title><rect x="17.6335%" y="757" width="0.0859%" height="15" fill="rgb(250,172,42)" fg:x="39606" fg:w="193"/><text x="17.8835%" y="767.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (164 samples, 0.07%)</title><rect x="17.7257%" y="757" width="0.0730%" height="15" fill="rgb(209,34,43)" fg:x="39813" fg:w="164"/><text x="17.9757%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (24 samples, 0.01%)</title><rect x="17.7880%" y="741" width="0.0107%" height="15" fill="rgb(223,11,35)" fg:x="39953" fg:w="24"/><text x="18.0380%" y="751.50"></text></g><g><title>PhaseIFG::effective_degree (44 samples, 0.02%)</title><rect x="17.7987%" y="757" width="0.0196%" height="15" fill="rgb(251,219,26)" fg:x="39977" fg:w="44"/><text x="18.0487%" y="767.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (465 samples, 0.21%)</title><rect x="17.6229%" y="773" width="0.2070%" height="15" fill="rgb(231,119,3)" fg:x="39582" fg:w="465"/><text x="17.8729%" y="783.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (714 samples, 0.32%)</title><rect x="17.5124%" y="805" width="0.3179%" height="15" fill="rgb(216,97,11)" fg:x="39334" fg:w="714"/><text x="17.7624%" y="815.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (592 samples, 0.26%)</title><rect x="17.5668%" y="789" width="0.2636%" height="15" fill="rgb(223,59,9)" fg:x="39456" fg:w="592"/><text x="17.8168%" y="799.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (42 samples, 0.02%)</title><rect x="17.9523%" y="789" width="0.0187%" height="15" fill="rgb(233,93,31)" fg:x="40322" fg:w="42"/><text x="18.2023%" y="799.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (642 samples, 0.29%)</title><rect x="17.8303%" y="805" width="0.2858%" height="15" fill="rgb(239,81,33)" fg:x="40048" fg:w="642"/><text x="18.0803%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (326 samples, 0.15%)</title><rect x="17.9710%" y="789" width="0.1451%" height="15" fill="rgb(213,120,34)" fg:x="40364" fg:w="326"/><text x="18.2210%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (36 samples, 0.02%)</title><rect x="18.2186%" y="789" width="0.0160%" height="15" fill="rgb(243,49,53)" fg:x="40920" fg:w="36"/><text x="18.4686%" y="799.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (59 samples, 0.03%)</title><rect x="18.2346%" y="789" width="0.0263%" height="15" fill="rgb(247,216,33)" fg:x="40956" fg:w="59"/><text x="18.4846%" y="799.50"></text></g><g><title>PhaseIFG::SquareUp (583 samples, 0.26%)</title><rect x="18.1162%" y="805" width="0.2596%" height="15" fill="rgb(226,26,14)" fg:x="40690" fg:w="583"/><text x="18.3662%" y="815.50"></text></g><g><title>IndexSetIterator::advance_and_next (258 samples, 0.11%)</title><rect x="18.2609%" y="789" width="0.1149%" height="15" fill="rgb(215,49,53)" fg:x="41015" fg:w="258"/><text x="18.5109%" y="799.50"></text></g><g><title>IndexSet::initialize (138 samples, 0.06%)</title><rect x="18.4149%" y="789" width="0.0614%" height="15" fill="rgb(245,162,40)" fg:x="41361" fg:w="138"/><text x="18.6649%" y="799.50"></text></g><g><title>PhaseIFG::init (271 samples, 0.12%)</title><rect x="18.3757%" y="805" width="0.1207%" height="15" fill="rgb(229,68,17)" fg:x="41273" fg:w="271"/><text x="18.6257%" y="815.50"></text></g><g><title>[libc-2.31.so] (44 samples, 0.02%)</title><rect x="18.4768%" y="789" width="0.0196%" height="15" fill="rgb(213,182,10)" fg:x="41500" fg:w="44"/><text x="18.7268%" y="799.50"></text></g><g><title>IndexSet::alloc_block_containing (54 samples, 0.02%)</title><rect x="18.9024%" y="789" width="0.0240%" height="15" fill="rgb(245,125,30)" fg:x="42456" fg:w="54"/><text x="19.1524%" y="799.50"></text></g><g><title>IndexSet::free_block (36 samples, 0.02%)</title><rect x="18.9265%" y="789" width="0.0160%" height="15" fill="rgb(232,202,2)" fg:x="42510" fg:w="36"/><text x="19.1765%" y="799.50"></text></g><g><title>IndexSet::initialize (88 samples, 0.04%)</title><rect x="18.9425%" y="789" width="0.0392%" height="15" fill="rgb(237,140,51)" fg:x="42546" fg:w="88"/><text x="19.1925%" y="799.50"></text></g><g><title>__tls_get_addr (37 samples, 0.02%)</title><rect x="19.2386%" y="757" width="0.0165%" height="15" fill="rgb(236,157,25)" fg:x="43211" fg:w="37"/><text x="19.4886%" y="767.50"></text></g><g><title>update_get_addr (28 samples, 0.01%)</title><rect x="19.2426%" y="741" width="0.0125%" height="15" fill="rgb(219,209,0)" fg:x="43220" fg:w="28"/><text x="19.4926%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (141 samples, 0.06%)</title><rect x="19.1936%" y="773" width="0.0628%" height="15" fill="rgb(240,116,54)" fg:x="43110" fg:w="141"/><text x="19.4436%" y="783.50"></text></g><g><title>IndexSet::initialize (33 samples, 0.01%)</title><rect x="19.2564%" y="773" width="0.0147%" height="15" fill="rgb(216,10,36)" fg:x="43251" fg:w="33"/><text x="19.5064%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (196 samples, 0.09%)</title><rect x="19.2724%" y="773" width="0.0873%" height="15" fill="rgb(222,72,44)" fg:x="43287" fg:w="196"/><text x="19.5224%" y="783.50"></text></g><g><title>PhaseLive::add_liveout (865 samples, 0.39%)</title><rect x="18.9817%" y="789" width="0.3851%" height="15" fill="rgb(232,159,9)" fg:x="42634" fg:w="865"/><text x="19.2317%" y="799.50"></text></g><g><title>PhaseLive::compute (1,959 samples, 0.87%)</title><rect x="18.4986%" y="805" width="0.8722%" height="15" fill="rgb(210,39,32)" fg:x="41549" fg:w="1959"/><text x="18.7486%" y="815.50"></text></g><g><title>RegMask::Size (38 samples, 0.02%)</title><rect x="19.3721%" y="805" width="0.0169%" height="15" fill="rgb(216,194,45)" fg:x="43511" fg:w="38"/><text x="19.6221%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (21,780 samples, 9.70%)</title><rect x="9.7170%" y="821" width="9.6970%" height="15" fill="rgb(218,18,35)" fg:x="21825" fg:w="21780"/><text x="9.9670%" y="831.50">PhaseChaitin::..</text></g><g><title>Compile::Code_Gen (28,220 samples, 12.56%)</title><rect x="6.8662%" y="837" width="12.5642%" height="15" fill="rgb(207,83,51)" fg:x="15422" fg:w="28220"/><text x="7.1162%" y="847.50">Compile::Code_Gen</text></g><g><title>PhasePeephole::do_transform (33 samples, 0.01%)</title><rect x="19.4158%" y="821" width="0.0147%" height="15" fill="rgb(225,63,43)" fg:x="43609" fg:w="33"/><text x="19.6658%" y="831.50"></text></g><g><title>Compile::call_generator (25 samples, 0.01%)</title><rect x="19.4420%" y="453" width="0.0111%" height="15" fill="rgb(207,57,36)" fg:x="43668" fg:w="25"/><text x="19.6920%" y="463.50"></text></g><g><title>InlineTree::ok_to_inline (24 samples, 0.01%)</title><rect x="19.4590%" y="341" width="0.0107%" height="15" fill="rgb(216,99,33)" fg:x="43706" fg:w="24"/><text x="19.7090%" y="351.50"></text></g><g><title>Compile::call_generator (30 samples, 0.01%)</title><rect x="19.4572%" y="357" width="0.0134%" height="15" fill="rgb(225,42,16)" fg:x="43702" fg:w="30"/><text x="19.7072%" y="367.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.01%)</title><rect x="19.5155%" y="117" width="0.0125%" height="15" fill="rgb(220,201,45)" fg:x="43833" fg:w="28"/><text x="19.7655%" y="127.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.01%)</title><rect x="19.5160%" y="101" width="0.0120%" height="15" fill="rgb(225,33,4)" fg:x="43834" fg:w="27"/><text x="19.7660%" y="111.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.01%)</title><rect x="19.5155%" y="133" width="0.0129%" height="15" fill="rgb(224,33,50)" fg:x="43833" fg:w="29"/><text x="19.7655%" y="143.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.02%)</title><rect x="19.5124%" y="165" width="0.0187%" height="15" fill="rgb(246,198,51)" fg:x="43826" fg:w="42"/><text x="19.7624%" y="175.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="19.5128%" y="149" width="0.0183%" height="15" fill="rgb(205,22,4)" fg:x="43827" fg:w="41"/><text x="19.7628%" y="159.50"></text></g><g><title>Parse::do_call (63 samples, 0.03%)</title><rect x="19.5044%" y="181" width="0.0280%" height="15" fill="rgb(206,3,8)" fg:x="43808" fg:w="63"/><text x="19.7544%" y="191.50"></text></g><g><title>Parse::do_all_blocks (119 samples, 0.05%)</title><rect x="19.4990%" y="229" width="0.0530%" height="15" fill="rgb(251,23,15)" fg:x="43796" fg:w="119"/><text x="19.7490%" y="239.50"></text></g><g><title>Parse::do_one_block (118 samples, 0.05%)</title><rect x="19.4995%" y="213" width="0.0525%" height="15" fill="rgb(252,88,28)" fg:x="43797" fg:w="118"/><text x="19.7495%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (115 samples, 0.05%)</title><rect x="19.5008%" y="197" width="0.0512%" height="15" fill="rgb(212,127,14)" fg:x="43800" fg:w="115"/><text x="19.7508%" y="207.50"></text></g><g><title>ParseGenerator::generate (131 samples, 0.06%)</title><rect x="19.4955%" y="261" width="0.0583%" height="15" fill="rgb(247,145,37)" fg:x="43788" fg:w="131"/><text x="19.7455%" y="271.50"></text></g><g><title>Parse::Parse (131 samples, 0.06%)</title><rect x="19.4955%" y="245" width="0.0583%" height="15" fill="rgb(209,117,53)" fg:x="43788" fg:w="131"/><text x="19.7455%" y="255.50"></text></g><g><title>Parse::do_call (166 samples, 0.07%)</title><rect x="19.4839%" y="277" width="0.0739%" height="15" fill="rgb(212,90,42)" fg:x="43762" fg:w="166"/><text x="19.7339%" y="287.50"></text></g><g><title>Parse::do_one_block (216 samples, 0.10%)</title><rect x="19.4790%" y="309" width="0.0962%" height="15" fill="rgb(218,164,37)" fg:x="43751" fg:w="216"/><text x="19.7290%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (215 samples, 0.10%)</title><rect x="19.4794%" y="293" width="0.0957%" height="15" fill="rgb(246,65,34)" fg:x="43752" fg:w="215"/><text x="19.7294%" y="303.50"></text></g><g><title>Parse::do_all_blocks (220 samples, 0.10%)</title><rect x="19.4786%" y="325" width="0.0979%" height="15" fill="rgb(231,100,33)" fg:x="43750" fg:w="220"/><text x="19.7286%" y="335.50"></text></g><g><title>ParseGenerator::generate (237 samples, 0.11%)</title><rect x="19.4745%" y="357" width="0.1055%" height="15" fill="rgb(228,126,14)" fg:x="43741" fg:w="237"/><text x="19.7245%" y="367.50"></text></g><g><title>Parse::Parse (237 samples, 0.11%)</title><rect x="19.4745%" y="341" width="0.1055%" height="15" fill="rgb(215,173,21)" fg:x="43741" fg:w="237"/><text x="19.7245%" y="351.50"></text></g><g><title>Parse::do_call (299 samples, 0.13%)</title><rect x="19.4572%" y="373" width="0.1331%" height="15" fill="rgb(210,6,40)" fg:x="43702" fg:w="299"/><text x="19.7072%" y="383.50"></text></g><g><title>Parse::do_all_blocks (343 samples, 0.15%)</title><rect x="19.4541%" y="421" width="0.1527%" height="15" fill="rgb(212,48,18)" fg:x="43695" fg:w="343"/><text x="19.7041%" y="431.50"></text></g><g><title>Parse::do_one_block (343 samples, 0.15%)</title><rect x="19.4541%" y="405" width="0.1527%" height="15" fill="rgb(230,214,11)" fg:x="43695" fg:w="343"/><text x="19.7041%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (343 samples, 0.15%)</title><rect x="19.4541%" y="389" width="0.1527%" height="15" fill="rgb(254,105,39)" fg:x="43695" fg:w="343"/><text x="19.7041%" y="399.50"></text></g><g><title>ParseGenerator::generate (345 samples, 0.15%)</title><rect x="19.4536%" y="453" width="0.1536%" height="15" fill="rgb(245,158,5)" fg:x="43694" fg:w="345"/><text x="19.7036%" y="463.50"></text></g><g><title>Parse::Parse (345 samples, 0.15%)</title><rect x="19.4536%" y="437" width="0.1536%" height="15" fill="rgb(249,208,11)" fg:x="43694" fg:w="345"/><text x="19.7036%" y="447.50"></text></g><g><title>Parse::do_call (29 samples, 0.01%)</title><rect x="19.6072%" y="357" width="0.0129%" height="15" fill="rgb(210,39,28)" fg:x="44039" fg:w="29"/><text x="19.8572%" y="367.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.01%)</title><rect x="19.6072%" y="437" width="0.0142%" height="15" fill="rgb(211,56,53)" fg:x="44039" fg:w="32"/><text x="19.8572%" y="447.50"></text></g><g><title>Parse::Parse (32 samples, 0.01%)</title><rect x="19.6072%" y="421" width="0.0142%" height="15" fill="rgb(226,201,30)" fg:x="44039" fg:w="32"/><text x="19.8572%" y="431.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="19.6072%" y="405" width="0.0142%" height="15" fill="rgb(239,101,34)" fg:x="44039" fg:w="32"/><text x="19.8572%" y="415.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="19.6072%" y="389" width="0.0142%" height="15" fill="rgb(226,209,5)" fg:x="44039" fg:w="32"/><text x="19.8572%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="19.6072%" y="373" width="0.0142%" height="15" fill="rgb(250,105,47)" fg:x="44039" fg:w="32"/><text x="19.8572%" y="383.50"></text></g><g><title>PredictedCallGenerator::generate (39 samples, 0.02%)</title><rect x="19.6072%" y="453" width="0.0174%" height="15" fill="rgb(230,72,3)" fg:x="44039" fg:w="39"/><text x="19.8572%" y="463.50"></text></g><g><title>Parse::do_call (413 samples, 0.18%)</title><rect x="19.4420%" y="469" width="0.1839%" height="15" fill="rgb(232,218,39)" fg:x="43668" fg:w="413"/><text x="19.6920%" y="479.50"></text></g><g><title>Parse::do_all_blocks (424 samples, 0.19%)</title><rect x="19.4412%" y="517" width="0.1888%" height="15" fill="rgb(248,166,6)" fg:x="43666" fg:w="424"/><text x="19.6912%" y="527.50"></text></g><g><title>Parse::do_one_block (424 samples, 0.19%)</title><rect x="19.4412%" y="501" width="0.1888%" height="15" fill="rgb(247,89,20)" fg:x="43666" fg:w="424"/><text x="19.6912%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (424 samples, 0.19%)</title><rect x="19.4412%" y="485" width="0.1888%" height="15" fill="rgb(248,130,54)" fg:x="43666" fg:w="424"/><text x="19.6912%" y="495.50"></text></g><g><title>ParseGenerator::generate (426 samples, 0.19%)</title><rect x="19.4407%" y="549" width="0.1897%" height="15" fill="rgb(234,196,4)" fg:x="43665" fg:w="426"/><text x="19.6907%" y="559.50"></text></g><g><title>Parse::Parse (426 samples, 0.19%)</title><rect x="19.4407%" y="533" width="0.1897%" height="15" fill="rgb(250,143,31)" fg:x="43665" fg:w="426"/><text x="19.6907%" y="543.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="19.6366%" y="341" width="0.0102%" height="15" fill="rgb(211,110,34)" fg:x="44105" fg:w="23"/><text x="19.8866%" y="351.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="19.6366%" y="325" width="0.0102%" height="15" fill="rgb(215,124,48)" fg:x="44105" fg:w="23"/><text x="19.8866%" y="335.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.01%)</title><rect x="19.6366%" y="309" width="0.0102%" height="15" fill="rgb(216,46,13)" fg:x="44105" fg:w="23"/><text x="19.8866%" y="319.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="19.6366%" y="293" width="0.0102%" height="15" fill="rgb(205,184,25)" fg:x="44105" fg:w="23"/><text x="19.8866%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="19.6366%" y="277" width="0.0102%" height="15" fill="rgb(228,1,10)" fg:x="44105" fg:w="23"/><text x="19.8866%" y="287.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="19.6339%" y="357" width="0.0138%" height="15" fill="rgb(213,116,27)" fg:x="44099" fg:w="31"/><text x="19.8839%" y="367.50"></text></g><g><title>ParseGenerator::generate (46 samples, 0.02%)</title><rect x="19.6322%" y="437" width="0.0205%" height="15" fill="rgb(241,95,50)" fg:x="44095" fg:w="46"/><text x="19.8822%" y="447.50"></text></g><g><title>Parse::Parse (46 samples, 0.02%)</title><rect x="19.6322%" y="421" width="0.0205%" height="15" fill="rgb(238,48,32)" fg:x="44095" fg:w="46"/><text x="19.8822%" y="431.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.02%)</title><rect x="19.6322%" y="405" width="0.0205%" height="15" fill="rgb(235,113,49)" fg:x="44095" fg:w="46"/><text x="19.8822%" y="415.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.02%)</title><rect x="19.6322%" y="389" width="0.0205%" height="15" fill="rgb(205,127,43)" fg:x="44095" fg:w="46"/><text x="19.8822%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.02%)</title><rect x="19.6322%" y="373" width="0.0205%" height="15" fill="rgb(250,162,2)" fg:x="44095" fg:w="46"/><text x="19.8822%" y="383.50"></text></g><g><title>Parse::do_call (55 samples, 0.02%)</title><rect x="19.6304%" y="453" width="0.0245%" height="15" fill="rgb(220,13,41)" fg:x="44091" fg:w="55"/><text x="19.8804%" y="463.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.03%)</title><rect x="19.6304%" y="533" width="0.0254%" height="15" fill="rgb(249,221,25)" fg:x="44091" fg:w="57"/><text x="19.8804%" y="543.50"></text></g><g><title>Parse::Parse (57 samples, 0.03%)</title><rect x="19.6304%" y="517" width="0.0254%" height="15" fill="rgb(215,208,19)" fg:x="44091" fg:w="57"/><text x="19.8804%" y="527.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.03%)</title><rect x="19.6304%" y="501" width="0.0254%" height="15" fill="rgb(236,175,2)" fg:x="44091" fg:w="57"/><text x="19.8804%" y="511.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.03%)</title><rect x="19.6304%" y="485" width="0.0254%" height="15" fill="rgb(241,52,2)" fg:x="44091" fg:w="57"/><text x="19.8804%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.03%)</title><rect x="19.6304%" y="469" width="0.0254%" height="15" fill="rgb(248,140,14)" fg:x="44091" fg:w="57"/><text x="19.8804%" y="479.50"></text></g><g><title>Parse::do_call (509 samples, 0.23%)</title><rect x="19.4323%" y="565" width="0.2266%" height="15" fill="rgb(253,22,42)" fg:x="43646" fg:w="509"/><text x="19.6823%" y="575.50"></text></g><g><title>PredictedCallGenerator::generate (64 samples, 0.03%)</title><rect x="19.6304%" y="549" width="0.0285%" height="15" fill="rgb(234,61,47)" fg:x="44091" fg:w="64"/><text x="19.8804%" y="559.50"></text></g><g><title>ParseGenerator::generate (511 samples, 0.23%)</title><rect x="19.4323%" y="645" width="0.2275%" height="15" fill="rgb(208,226,15)" fg:x="43646" fg:w="511"/><text x="19.6823%" y="655.50"></text></g><g><title>Parse::Parse (511 samples, 0.23%)</title><rect x="19.4323%" y="629" width="0.2275%" height="15" fill="rgb(217,221,4)" fg:x="43646" fg:w="511"/><text x="19.6823%" y="639.50"></text></g><g><title>Parse::do_all_blocks (511 samples, 0.23%)</title><rect x="19.4323%" y="613" width="0.2275%" height="15" fill="rgb(212,174,34)" fg:x="43646" fg:w="511"/><text x="19.6823%" y="623.50"></text></g><g><title>Parse::do_one_block (511 samples, 0.23%)</title><rect x="19.4323%" y="597" width="0.2275%" height="15" fill="rgb(253,83,4)" fg:x="43646" fg:w="511"/><text x="19.6823%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (511 samples, 0.23%)</title><rect x="19.4323%" y="581" width="0.2275%" height="15" fill="rgb(250,195,49)" fg:x="43646" fg:w="511"/><text x="19.6823%" y="591.50"></text></g><g><title>Parse::do_call (23 samples, 0.01%)</title><rect x="19.6642%" y="357" width="0.0102%" height="15" fill="rgb(241,192,25)" fg:x="44167" fg:w="23"/><text x="19.9142%" y="367.50"></text></g><g><title>ParseGenerator::generate (33 samples, 0.01%)</title><rect x="19.6638%" y="437" width="0.0147%" height="15" fill="rgb(208,124,10)" fg:x="44166" fg:w="33"/><text x="19.9138%" y="447.50"></text></g><g><title>Parse::Parse (33 samples, 0.01%)</title><rect x="19.6638%" y="421" width="0.0147%" height="15" fill="rgb(222,33,0)" fg:x="44166" fg:w="33"/><text x="19.9138%" y="431.50"></text></g><g><title>Parse::do_all_blocks (33 samples, 0.01%)</title><rect x="19.6638%" y="405" width="0.0147%" height="15" fill="rgb(234,209,28)" fg:x="44166" fg:w="33"/><text x="19.9138%" y="415.50"></text></g><g><title>Parse::do_one_block (33 samples, 0.01%)</title><rect x="19.6638%" y="389" width="0.0147%" height="15" fill="rgb(224,11,23)" fg:x="44166" fg:w="33"/><text x="19.9138%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (33 samples, 0.01%)</title><rect x="19.6638%" y="373" width="0.0147%" height="15" fill="rgb(232,99,1)" fg:x="44166" fg:w="33"/><text x="19.9138%" y="383.50"></text></g><g><title>ParseGenerator::generate (47 samples, 0.02%)</title><rect x="19.6607%" y="533" width="0.0209%" height="15" fill="rgb(237,95,45)" fg:x="44159" fg:w="47"/><text x="19.9107%" y="543.50"></text></g><g><title>Parse::Parse (47 samples, 0.02%)</title><rect x="19.6607%" y="517" width="0.0209%" height="15" fill="rgb(208,109,11)" fg:x="44159" fg:w="47"/><text x="19.9107%" y="527.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.02%)</title><rect x="19.6611%" y="501" width="0.0205%" height="15" fill="rgb(216,190,48)" fg:x="44160" fg:w="46"/><text x="19.9111%" y="511.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.02%)</title><rect x="19.6611%" y="485" width="0.0205%" height="15" fill="rgb(251,171,36)" fg:x="44160" fg:w="46"/><text x="19.9111%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.02%)</title><rect x="19.6611%" y="469" width="0.0205%" height="15" fill="rgb(230,62,22)" fg:x="44160" fg:w="46"/><text x="19.9111%" y="479.50"></text></g><g><title>Parse::do_call (45 samples, 0.02%)</title><rect x="19.6615%" y="453" width="0.0200%" height="15" fill="rgb(225,114,35)" fg:x="44161" fg:w="45"/><text x="19.9115%" y="463.50"></text></g><g><title>ParseGenerator::generate (64 samples, 0.03%)</title><rect x="19.6598%" y="629" width="0.0285%" height="15" fill="rgb(215,118,42)" fg:x="44157" fg:w="64"/><text x="19.9098%" y="639.50"></text></g><g><title>Parse::Parse (64 samples, 0.03%)</title><rect x="19.6598%" y="613" width="0.0285%" height="15" fill="rgb(243,119,21)" fg:x="44157" fg:w="64"/><text x="19.9098%" y="623.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.03%)</title><rect x="19.6598%" y="597" width="0.0285%" height="15" fill="rgb(252,177,53)" fg:x="44157" fg:w="64"/><text x="19.9098%" y="607.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.03%)</title><rect x="19.6598%" y="581" width="0.0285%" height="15" fill="rgb(237,209,29)" fg:x="44157" fg:w="64"/><text x="19.9098%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.03%)</title><rect x="19.6598%" y="565" width="0.0285%" height="15" fill="rgb(212,65,23)" fg:x="44157" fg:w="64"/><text x="19.9098%" y="575.50"></text></g><g><title>Parse::do_call (64 samples, 0.03%)</title><rect x="19.6598%" y="549" width="0.0285%" height="15" fill="rgb(230,222,46)" fg:x="44157" fg:w="64"/><text x="19.9098%" y="559.50"></text></g><g><title>Parse::do_call (586 samples, 0.26%)</title><rect x="19.4323%" y="661" width="0.2609%" height="15" fill="rgb(215,135,32)" fg:x="43646" fg:w="586"/><text x="19.6823%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (75 samples, 0.03%)</title><rect x="19.6598%" y="645" width="0.0334%" height="15" fill="rgb(246,101,22)" fg:x="44157" fg:w="75"/><text x="19.9098%" y="655.50"></text></g><g><title>ParseGenerator::generate (593 samples, 0.26%)</title><rect x="19.4323%" y="741" width="0.2640%" height="15" fill="rgb(206,107,13)" fg:x="43646" fg:w="593"/><text x="19.6823%" y="751.50"></text></g><g><title>Parse::Parse (593 samples, 0.26%)</title><rect x="19.4323%" y="725" width="0.2640%" height="15" fill="rgb(250,100,44)" fg:x="43646" fg:w="593"/><text x="19.6823%" y="735.50"></text></g><g><title>Parse::do_all_blocks (593 samples, 0.26%)</title><rect x="19.4323%" y="709" width="0.2640%" height="15" fill="rgb(231,147,38)" fg:x="43646" fg:w="593"/><text x="19.6823%" y="719.50"></text></g><g><title>Parse::do_one_block (593 samples, 0.26%)</title><rect x="19.4323%" y="693" width="0.2640%" height="15" fill="rgb(229,8,40)" fg:x="43646" fg:w="593"/><text x="19.6823%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (593 samples, 0.26%)</title><rect x="19.4323%" y="677" width="0.2640%" height="15" fill="rgb(221,135,30)" fg:x="43646" fg:w="593"/><text x="19.6823%" y="687.50"></text></g><g><title>Parse::do_call (33 samples, 0.01%)</title><rect x="19.7119%" y="261" width="0.0147%" height="15" fill="rgb(249,193,18)" fg:x="44274" fg:w="33"/><text x="19.9619%" y="271.50"></text></g><g><title>Parse::do_all_blocks (50 samples, 0.02%)</title><rect x="19.7114%" y="309" width="0.0223%" height="15" fill="rgb(209,133,39)" fg:x="44273" fg:w="50"/><text x="19.9614%" y="319.50"></text></g><g><title>Parse::do_one_block (49 samples, 0.02%)</title><rect x="19.7119%" y="293" width="0.0218%" height="15" fill="rgb(232,100,14)" fg:x="44274" fg:w="49"/><text x="19.9619%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.02%)</title><rect x="19.7119%" y="277" width="0.0218%" height="15" fill="rgb(224,185,1)" fg:x="44274" fg:w="49"/><text x="19.9619%" y="287.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.02%)</title><rect x="19.7101%" y="341" width="0.0245%" height="15" fill="rgb(223,139,8)" fg:x="44270" fg:w="55"/><text x="19.9601%" y="351.50"></text></g><g><title>Parse::Parse (55 samples, 0.02%)</title><rect x="19.7101%" y="325" width="0.0245%" height="15" fill="rgb(232,213,38)" fg:x="44270" fg:w="55"/><text x="19.9601%" y="335.50"></text></g><g><title>Parse::do_call (77 samples, 0.03%)</title><rect x="19.7029%" y="357" width="0.0343%" height="15" fill="rgb(207,94,22)" fg:x="44254" fg:w="77"/><text x="19.9529%" y="367.50"></text></g><g><title>Parse::do_one_block (95 samples, 0.04%)</title><rect x="19.7025%" y="389" width="0.0423%" height="15" fill="rgb(219,183,54)" fg:x="44253" fg:w="95"/><text x="19.9525%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (95 samples, 0.04%)</title><rect x="19.7025%" y="373" width="0.0423%" height="15" fill="rgb(216,185,54)" fg:x="44253" fg:w="95"/><text x="19.9525%" y="383.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.04%)</title><rect x="19.7025%" y="405" width="0.0427%" height="15" fill="rgb(254,217,39)" fg:x="44253" fg:w="96"/><text x="19.9525%" y="415.50"></text></g><g><title>ParseGenerator::generate (97 samples, 0.04%)</title><rect x="19.7025%" y="437" width="0.0432%" height="15" fill="rgb(240,178,23)" fg:x="44253" fg:w="97"/><text x="19.9525%" y="447.50"></text></g><g><title>Parse::Parse (97 samples, 0.04%)</title><rect x="19.7025%" y="421" width="0.0432%" height="15" fill="rgb(218,11,47)" fg:x="44253" fg:w="97"/><text x="19.9525%" y="431.50"></text></g><g><title>Parse::do_call (113 samples, 0.05%)</title><rect x="19.6994%" y="453" width="0.0503%" height="15" fill="rgb(218,51,51)" fg:x="44246" fg:w="113"/><text x="19.9494%" y="463.50"></text></g><g><title>ParseGenerator::generate (116 samples, 0.05%)</title><rect x="19.6989%" y="533" width="0.0516%" height="15" fill="rgb(238,126,27)" fg:x="44245" fg:w="116"/><text x="19.9489%" y="543.50"></text></g><g><title>Parse::Parse (116 samples, 0.05%)</title><rect x="19.6989%" y="517" width="0.0516%" height="15" fill="rgb(249,202,22)" fg:x="44245" fg:w="116"/><text x="19.9489%" y="527.50"></text></g><g><title>Parse::do_all_blocks (116 samples, 0.05%)</title><rect x="19.6989%" y="501" width="0.0516%" height="15" fill="rgb(254,195,49)" fg:x="44245" fg:w="116"/><text x="19.9489%" y="511.50"></text></g><g><title>Parse::do_one_block (116 samples, 0.05%)</title><rect x="19.6989%" y="485" width="0.0516%" height="15" fill="rgb(208,123,14)" fg:x="44245" fg:w="116"/><text x="19.9489%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (116 samples, 0.05%)</title><rect x="19.6989%" y="469" width="0.0516%" height="15" fill="rgb(224,200,8)" fg:x="44245" fg:w="116"/><text x="19.9489%" y="479.50"></text></g><g><title>Parse::do_call (135 samples, 0.06%)</title><rect x="19.6963%" y="549" width="0.0601%" height="15" fill="rgb(217,61,36)" fg:x="44239" fg:w="135"/><text x="19.9463%" y="559.50"></text></g><g><title>ParseGenerator::generate (136 samples, 0.06%)</title><rect x="19.6963%" y="629" width="0.0606%" height="15" fill="rgb(206,35,45)" fg:x="44239" fg:w="136"/><text x="19.9463%" y="639.50"></text></g><g><title>Parse::Parse (136 samples, 0.06%)</title><rect x="19.6963%" y="613" width="0.0606%" height="15" fill="rgb(217,65,33)" fg:x="44239" fg:w="136"/><text x="19.9463%" y="623.50"></text></g><g><title>Parse::do_all_blocks (136 samples, 0.06%)</title><rect x="19.6963%" y="597" width="0.0606%" height="15" fill="rgb(222,158,48)" fg:x="44239" fg:w="136"/><text x="19.9463%" y="607.50"></text></g><g><title>Parse::do_one_block (136 samples, 0.06%)</title><rect x="19.6963%" y="581" width="0.0606%" height="15" fill="rgb(254,2,54)" fg:x="44239" fg:w="136"/><text x="19.9463%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (136 samples, 0.06%)</title><rect x="19.6963%" y="565" width="0.0606%" height="15" fill="rgb(250,143,38)" fg:x="44239" fg:w="136"/><text x="19.9463%" y="575.50"></text></g><g><title>ParseGenerator::generate (152 samples, 0.07%)</title><rect x="19.6963%" y="725" width="0.0677%" height="15" fill="rgb(248,25,0)" fg:x="44239" fg:w="152"/><text x="19.9463%" y="735.50"></text></g><g><title>Parse::Parse (152 samples, 0.07%)</title><rect x="19.6963%" y="709" width="0.0677%" height="15" fill="rgb(206,152,27)" fg:x="44239" fg:w="152"/><text x="19.9463%" y="719.50"></text></g><g><title>Parse::do_all_blocks (152 samples, 0.07%)</title><rect x="19.6963%" y="693" width="0.0677%" height="15" fill="rgb(240,77,30)" fg:x="44239" fg:w="152"/><text x="19.9463%" y="703.50"></text></g><g><title>Parse::do_one_block (152 samples, 0.07%)</title><rect x="19.6963%" y="677" width="0.0677%" height="15" fill="rgb(231,5,3)" fg:x="44239" fg:w="152"/><text x="19.9463%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (152 samples, 0.07%)</title><rect x="19.6963%" y="661" width="0.0677%" height="15" fill="rgb(207,226,32)" fg:x="44239" fg:w="152"/><text x="19.9463%" y="671.50"></text></g><g><title>Parse::do_call (152 samples, 0.07%)</title><rect x="19.6963%" y="645" width="0.0677%" height="15" fill="rgb(222,207,47)" fg:x="44239" fg:w="152"/><text x="19.9463%" y="655.50"></text></g><g><title>Compile::Compile (28,996 samples, 12.91%)</title><rect x="6.8662%" y="853" width="12.9097%" height="15" fill="rgb(229,115,45)" fg:x="15422" fg:w="28996"/><text x="7.1162%" y="863.50">Compile::Compile</text></g><g><title>ParseGenerator::generate (772 samples, 0.34%)</title><rect x="19.4323%" y="837" width="0.3437%" height="15" fill="rgb(224,191,6)" fg:x="43646" fg:w="772"/><text x="19.6823%" y="847.50"></text></g><g><title>Parse::Parse (772 samples, 0.34%)</title><rect x="19.4323%" y="821" width="0.3437%" height="15" fill="rgb(230,227,24)" fg:x="43646" fg:w="772"/><text x="19.6823%" y="831.50"></text></g><g><title>Parse::do_all_blocks (772 samples, 0.34%)</title><rect x="19.4323%" y="805" width="0.3437%" height="15" fill="rgb(228,80,19)" fg:x="43646" fg:w="772"/><text x="19.6823%" y="815.50"></text></g><g><title>Parse::do_one_block (772 samples, 0.34%)</title><rect x="19.4323%" y="789" width="0.3437%" height="15" fill="rgb(247,229,0)" fg:x="43646" fg:w="772"/><text x="19.6823%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (772 samples, 0.34%)</title><rect x="19.4323%" y="773" width="0.3437%" height="15" fill="rgb(237,194,15)" fg:x="43646" fg:w="772"/><text x="19.6823%" y="783.50"></text></g><g><title>Parse::do_call (772 samples, 0.34%)</title><rect x="19.4323%" y="757" width="0.3437%" height="15" fill="rgb(219,203,20)" fg:x="43646" fg:w="772"/><text x="19.6823%" y="767.50"></text></g><g><title>PredictedCallGenerator::generate (179 samples, 0.08%)</title><rect x="19.6963%" y="741" width="0.0797%" height="15" fill="rgb(234,128,8)" fg:x="44239" fg:w="179"/><text x="19.9463%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (27 samples, 0.01%)</title><rect x="19.7639%" y="725" width="0.0120%" height="15" fill="rgb(248,202,8)" fg:x="44391" fg:w="27"/><text x="20.0139%" y="735.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="19.7639%" y="709" width="0.0120%" height="15" fill="rgb(206,104,37)" fg:x="44391" fg:w="27"/><text x="20.0139%" y="719.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="19.7639%" y="693" width="0.0120%" height="15" fill="rgb(223,8,27)" fg:x="44391" fg:w="27"/><text x="20.0139%" y="703.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.01%)</title><rect x="19.7639%" y="677" width="0.0120%" height="15" fill="rgb(216,217,28)" fg:x="44391" fg:w="27"/><text x="20.0139%" y="687.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.01%)</title><rect x="19.7639%" y="661" width="0.0120%" height="15" fill="rgb(249,199,1)" fg:x="44391" fg:w="27"/><text x="20.0139%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.01%)</title><rect x="19.7639%" y="645" width="0.0120%" height="15" fill="rgb(240,85,17)" fg:x="44391" fg:w="27"/><text x="20.0139%" y="655.50"></text></g><g><title>Parse::do_call (27 samples, 0.01%)</title><rect x="19.7639%" y="629" width="0.0120%" height="15" fill="rgb(206,108,45)" fg:x="44391" fg:w="27"/><text x="20.0139%" y="639.50"></text></g><g><title>Compile::final_graph_reshaping_impl (93 samples, 0.04%)</title><rect x="19.8249%" y="805" width="0.0414%" height="15" fill="rgb(245,210,41)" fg:x="44528" fg:w="93"/><text x="20.0749%" y="815.50"></text></g><g><title>Compile::final_graph_reshaping_walk (214 samples, 0.10%)</title><rect x="19.7777%" y="821" width="0.0953%" height="15" fill="rgb(206,13,37)" fg:x="44422" fg:w="214"/><text x="20.0277%" y="831.50"></text></g><g><title>Compile::final_graph_reshaping (219 samples, 0.10%)</title><rect x="19.7760%" y="837" width="0.0975%" height="15" fill="rgb(250,61,18)" fg:x="44418" fg:w="219"/><text x="20.0260%" y="847.50"></text></g><g><title>PhaseIterGVN::optimize (34 samples, 0.02%)</title><rect x="19.9189%" y="821" width="0.0151%" height="15" fill="rgb(235,172,48)" fg:x="44739" fg:w="34"/><text x="20.1689%" y="831.50"></text></g><g><title>PhaseIterGVN::transform_old (33 samples, 0.01%)</title><rect x="19.9193%" y="805" width="0.0147%" height="15" fill="rgb(249,201,17)" fg:x="44740" fg:w="33"/><text x="20.1693%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (37 samples, 0.02%)</title><rect x="19.9340%" y="821" width="0.0165%" height="15" fill="rgb(219,208,6)" fg:x="44773" fg:w="37"/><text x="20.1840%" y="831.50"></text></g><g><title>Compile::remove_speculative_types (166 samples, 0.07%)</title><rect x="19.8770%" y="837" width="0.0739%" height="15" fill="rgb(248,31,23)" fg:x="44645" fg:w="166"/><text x="20.1270%" y="847.50"></text></g><g><title>ConnectionGraph::add_call_node (23 samples, 0.01%)</title><rect x="19.9821%" y="805" width="0.0102%" height="15" fill="rgb(245,15,42)" fg:x="44881" fg:w="23"/><text x="20.2321%" y="815.50"></text></g><g><title>ciMethod::get_bcea (23 samples, 0.01%)</title><rect x="19.9821%" y="789" width="0.0102%" height="15" fill="rgb(222,217,39)" fg:x="44881" fg:w="23"/><text x="20.2321%" y="799.50"></text></g><g><title>ConnectionGraph::add_final_edges (26 samples, 0.01%)</title><rect x="19.9923%" y="805" width="0.0116%" height="15" fill="rgb(210,219,27)" fg:x="44904" fg:w="26"/><text x="20.2423%" y="815.50"></text></g><g><title>ConnectionGraph::process_call_arguments (23 samples, 0.01%)</title><rect x="19.9937%" y="789" width="0.0102%" height="15" fill="rgb(252,166,36)" fg:x="44907" fg:w="23"/><text x="20.2437%" y="799.50"></text></g><g><title>ciMethod::get_bcea (23 samples, 0.01%)</title><rect x="19.9937%" y="773" width="0.0102%" height="15" fill="rgb(245,132,34)" fg:x="44907" fg:w="23"/><text x="20.2437%" y="783.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (63 samples, 0.03%)</title><rect x="20.0039%" y="805" width="0.0280%" height="15" fill="rgb(236,54,3)" fg:x="44930" fg:w="63"/><text x="20.2539%" y="815.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (49 samples, 0.02%)</title><rect x="20.0475%" y="789" width="0.0218%" height="15" fill="rgb(241,173,43)" fg:x="45028" fg:w="49"/><text x="20.2975%" y="799.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (115 samples, 0.05%)</title><rect x="20.0320%" y="805" width="0.0512%" height="15" fill="rgb(215,190,9)" fg:x="44993" fg:w="115"/><text x="20.2820%" y="815.50"></text></g><g><title>ConnectionGraph::split_memory_phi (30 samples, 0.01%)</title><rect x="20.0956%" y="741" width="0.0134%" height="15" fill="rgb(242,101,16)" fg:x="45136" fg:w="30"/><text x="20.3456%" y="751.50"></text></g><g><title>ConnectionGraph::find_inst_mem (25 samples, 0.01%)</title><rect x="20.0979%" y="725" width="0.0111%" height="15" fill="rgb(223,190,21)" fg:x="45141" fg:w="25"/><text x="20.3479%" y="735.50"></text></g><g><title>ConnectionGraph::split_memory_phi (43 samples, 0.02%)</title><rect x="20.0903%" y="773" width="0.0191%" height="15" fill="rgb(215,228,25)" fg:x="45124" fg:w="43"/><text x="20.3403%" y="783.50"></text></g><g><title>ConnectionGraph::find_inst_mem (34 samples, 0.02%)</title><rect x="20.0943%" y="757" width="0.0151%" height="15" fill="rgb(225,36,22)" fg:x="45133" fg:w="34"/><text x="20.3443%" y="767.50"></text></g><g><title>ConnectionGraph::find_inst_mem (47 samples, 0.02%)</title><rect x="20.0890%" y="789" width="0.0209%" height="15" fill="rgb(251,106,46)" fg:x="45121" fg:w="47"/><text x="20.3390%" y="799.50"></text></g><g><title>ConnectionGraph::split_unique_types (62 samples, 0.03%)</title><rect x="20.0872%" y="805" width="0.0276%" height="15" fill="rgb(208,90,1)" fg:x="45117" fg:w="62"/><text x="20.3372%" y="815.50"></text></g><g><title>ConnectionGraph::do_analysis (369 samples, 0.16%)</title><rect x="19.9509%" y="837" width="0.1643%" height="15" fill="rgb(243,10,4)" fg:x="44811" fg:w="369"/><text x="20.2009%" y="847.50"></text></g><g><title>ConnectionGraph::compute_escape (366 samples, 0.16%)</title><rect x="19.9523%" y="821" width="0.1630%" height="15" fill="rgb(212,137,27)" fg:x="44814" fg:w="366"/><text x="20.2023%" y="831.50"></text></g><g><title>PhiNode::Value (32 samples, 0.01%)</title><rect x="20.2933%" y="821" width="0.0142%" height="15" fill="rgb(231,220,49)" fg:x="45580" fg:w="32"/><text x="20.5433%" y="831.50"></text></g><g><title>TypeInstPtr::add_offset (33 samples, 0.01%)</title><rect x="20.3320%" y="821" width="0.0147%" height="15" fill="rgb(237,96,20)" fg:x="45667" fg:w="33"/><text x="20.5820%" y="831.50"></text></g><g><title>PhaseCCP::analyze (545 samples, 0.24%)</title><rect x="20.1170%" y="837" width="0.2426%" height="15" fill="rgb(239,229,30)" fg:x="45184" fg:w="545"/><text x="20.3670%" y="847.50"></text></g><g><title>PhaseCCP::transform_once (62 samples, 0.03%)</title><rect x="20.3979%" y="805" width="0.0276%" height="15" fill="rgb(219,65,33)" fg:x="45815" fg:w="62"/><text x="20.6479%" y="815.50"></text></g><g><title>PhaseCCP::do_transform (151 samples, 0.07%)</title><rect x="20.3597%" y="837" width="0.0672%" height="15" fill="rgb(243,134,7)" fg:x="45729" fg:w="151"/><text x="20.6097%" y="847.50"></text></g><g><title>PhaseCCP::transform (151 samples, 0.07%)</title><rect x="20.3597%" y="821" width="0.0672%" height="15" fill="rgb(216,177,54)" fg:x="45729" fg:w="151"/><text x="20.6097%" y="831.50"></text></g><g><title>IdealLoopTree::counted_loop (35 samples, 0.02%)</title><rect x="20.4514%" y="805" width="0.0156%" height="15" fill="rgb(211,160,20)" fg:x="45935" fg:w="35"/><text x="20.7014%" y="815.50"></text></g><g><title>IdealLoopTree::counted_loop (36 samples, 0.02%)</title><rect x="20.4514%" y="821" width="0.0160%" height="15" fill="rgb(239,85,39)" fg:x="45935" fg:w="36"/><text x="20.7014%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split (27 samples, 0.01%)</title><rect x="20.4750%" y="693" width="0.0120%" height="15" fill="rgb(232,125,22)" fg:x="45988" fg:w="27"/><text x="20.7250%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (31 samples, 0.01%)</title><rect x="20.4741%" y="709" width="0.0138%" height="15" fill="rgb(244,57,34)" fg:x="45986" fg:w="31"/><text x="20.7241%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (36 samples, 0.02%)</title><rect x="20.4741%" y="725" width="0.0160%" height="15" fill="rgb(214,203,32)" fg:x="45986" fg:w="36"/><text x="20.7241%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (47 samples, 0.02%)</title><rect x="20.4741%" y="741" width="0.0209%" height="15" fill="rgb(207,58,43)" fg:x="45986" fg:w="47"/><text x="20.7241%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (58 samples, 0.03%)</title><rect x="20.4736%" y="757" width="0.0258%" height="15" fill="rgb(215,193,15)" fg:x="45985" fg:w="58"/><text x="20.7236%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (74 samples, 0.03%)</title><rect x="20.4727%" y="773" width="0.0329%" height="15" fill="rgb(232,15,44)" fg:x="45983" fg:w="74"/><text x="20.7227%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (30 samples, 0.01%)</title><rect x="20.5057%" y="773" width="0.0134%" height="15" fill="rgb(212,3,48)" fg:x="46057" fg:w="30"/><text x="20.7557%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (111 samples, 0.05%)</title><rect x="20.4705%" y="789" width="0.0494%" height="15" fill="rgb(218,128,7)" fg:x="45978" fg:w="111"/><text x="20.7205%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (30 samples, 0.01%)</title><rect x="20.5199%" y="789" width="0.0134%" height="15" fill="rgb(226,216,39)" fg:x="46089" fg:w="30"/><text x="20.7699%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (150 samples, 0.07%)</title><rect x="20.4692%" y="805" width="0.0668%" height="15" fill="rgb(243,47,51)" fg:x="45975" fg:w="150"/><text x="20.7192%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (165 samples, 0.07%)</title><rect x="20.4674%" y="821" width="0.0735%" height="15" fill="rgb(241,183,40)" fg:x="45971" fg:w="165"/><text x="20.7174%" y="831.50"></text></g><g><title>IdealLoopTree::loop_predication (25 samples, 0.01%)</title><rect x="20.5409%" y="789" width="0.0111%" height="15" fill="rgb(231,217,32)" fg:x="46136" fg:w="25"/><text x="20.7909%" y="799.50"></text></g><g><title>IdealLoopTree::loop_predication (61 samples, 0.03%)</title><rect x="20.5409%" y="805" width="0.0272%" height="15" fill="rgb(229,61,38)" fg:x="46136" fg:w="61"/><text x="20.7909%" y="815.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (36 samples, 0.02%)</title><rect x="20.5520%" y="789" width="0.0160%" height="15" fill="rgb(225,210,5)" fg:x="46161" fg:w="36"/><text x="20.8020%" y="799.50"></text></g><g><title>PathFrequency::to (27 samples, 0.01%)</title><rect x="20.5809%" y="773" width="0.0120%" height="15" fill="rgb(231,79,45)" fg:x="46226" fg:w="27"/><text x="20.8309%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (54 samples, 0.02%)</title><rect x="20.5774%" y="789" width="0.0240%" height="15" fill="rgb(224,100,7)" fg:x="46218" fg:w="54"/><text x="20.8274%" y="799.50"></text></g><g><title>IdealLoopTree::loop_predication (162 samples, 0.07%)</title><rect x="20.5409%" y="821" width="0.0721%" height="15" fill="rgb(241,198,18)" fg:x="46136" fg:w="162"/><text x="20.7909%" y="831.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (101 samples, 0.04%)</title><rect x="20.5680%" y="805" width="0.0450%" height="15" fill="rgb(252,97,53)" fg:x="46197" fg:w="101"/><text x="20.8180%" y="815.50"></text></g><g><title>NTarjan::DFS (240 samples, 0.11%)</title><rect x="20.8743%" y="805" width="0.1069%" height="15" fill="rgb(220,88,7)" fg:x="46885" fg:w="240"/><text x="21.1243%" y="815.50"></text></g><g><title>PhaseIdealLoop::Dominators (838 samples, 0.37%)</title><rect x="20.6281%" y="821" width="0.3731%" height="15" fill="rgb(213,176,14)" fg:x="46332" fg:w="838"/><text x="20.8781%" y="831.50"></text></g><g><title>PhaseIdealLoop::dom_depth (36 samples, 0.02%)</title><rect x="21.4099%" y="773" width="0.0160%" height="15" fill="rgb(246,73,7)" fg:x="48088" fg:w="36"/><text x="21.6599%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (110 samples, 0.05%)</title><rect x="21.4260%" y="773" width="0.0490%" height="15" fill="rgb(245,64,36)" fg:x="48124" fg:w="110"/><text x="21.6760%" y="783.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (289 samples, 0.13%)</title><rect x="21.3467%" y="805" width="0.1287%" height="15" fill="rgb(245,80,10)" fg:x="47946" fg:w="289"/><text x="21.5967%" y="815.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (252 samples, 0.11%)</title><rect x="21.3632%" y="789" width="0.1122%" height="15" fill="rgb(232,107,50)" fg:x="47983" fg:w="252"/><text x="21.6132%" y="799.50"></text></g><g><title>PhiNode::pinned (25 samples, 0.01%)</title><rect x="21.4758%" y="805" width="0.0111%" height="15" fill="rgb(253,3,0)" fg:x="48236" fg:w="25"/><text x="21.7258%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (1,130 samples, 0.50%)</title><rect x="21.0012%" y="821" width="0.5031%" height="15" fill="rgb(212,99,53)" fg:x="47170" fg:w="1130"/><text x="21.2512%" y="831.50"></text></g><g><title>Node_List::push (23 samples, 0.01%)</title><rect x="21.8770%" y="805" width="0.0102%" height="15" fill="rgb(249,111,54)" fg:x="49137" fg:w="23"/><text x="22.1270%" y="815.50"></text></g><g><title>Node::unique_ctrl_out (59 samples, 0.03%)</title><rect x="22.0666%" y="789" width="0.0263%" height="15" fill="rgb(249,55,30)" fg:x="49563" fg:w="59"/><text x="22.3166%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (60 samples, 0.03%)</title><rect x="22.0929%" y="789" width="0.0267%" height="15" fill="rgb(237,47,42)" fg:x="49622" fg:w="60"/><text x="22.3429%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_depth (42 samples, 0.02%)</title><rect x="22.3155%" y="741" width="0.0187%" height="15" fill="rgb(211,20,18)" fg:x="50122" fg:w="42"/><text x="22.5655%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (184 samples, 0.08%)</title><rect x="22.2906%" y="757" width="0.0819%" height="15" fill="rgb(231,203,46)" fg:x="50066" fg:w="184"/><text x="22.5406%" y="767.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (86 samples, 0.04%)</title><rect x="22.3342%" y="741" width="0.0383%" height="15" fill="rgb(237,142,3)" fg:x="50164" fg:w="86"/><text x="22.5842%" y="751.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (256 samples, 0.11%)</title><rect x="22.2674%" y="773" width="0.1140%" height="15" fill="rgb(241,107,1)" fg:x="50014" fg:w="256"/><text x="22.5174%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (79 samples, 0.04%)</title><rect x="22.3814%" y="773" width="0.0352%" height="15" fill="rgb(229,83,13)" fg:x="50270" fg:w="79"/><text x="22.6314%" y="783.50"></text></g><g><title>PhaseIdealLoop::is_dominator (1,627 samples, 0.72%)</title><rect x="22.4242%" y="773" width="0.7244%" height="15" fill="rgb(241,91,40)" fg:x="50366" fg:w="1627"/><text x="22.6742%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (366 samples, 0.16%)</title><rect x="22.9856%" y="757" width="0.1630%" height="15" fill="rgb(225,3,45)" fg:x="51627" fg:w="366"/><text x="23.2356%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (2,323 samples, 1.03%)</title><rect x="22.1196%" y="789" width="1.0343%" height="15" fill="rgb(244,223,14)" fg:x="49682" fg:w="2323"/><text x="22.3696%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_loop (33 samples, 0.01%)</title><rect x="23.1539%" y="789" width="0.0147%" height="15" fill="rgb(224,124,37)" fg:x="52005" fg:w="33"/><text x="23.4039%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (2,910 samples, 1.30%)</title><rect x="21.8877%" y="805" width="1.2956%" height="15" fill="rgb(251,171,30)" fg:x="49161" fg:w="2910"/><text x="22.1377%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (3,778 samples, 1.68%)</title><rect x="21.5043%" y="821" width="1.6821%" height="15" fill="rgb(236,46,54)" fg:x="48300" fg:w="3778"/><text x="21.7543%" y="831.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (130 samples, 0.06%)</title><rect x="23.3858%" y="805" width="0.0579%" height="15" fill="rgb(245,213,5)" fg:x="52526" fg:w="130"/><text x="23.6358%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (586 samples, 0.26%)</title><rect x="23.1877%" y="821" width="0.2609%" height="15" fill="rgb(230,144,27)" fg:x="52081" fg:w="586"/><text x="23.4377%" y="831.50"></text></g><g><title>PhaseIdealLoop::handle_use (25 samples, 0.01%)</title><rect x="23.6000%" y="789" width="0.0111%" height="15" fill="rgb(220,86,6)" fg:x="53007" fg:w="25"/><text x="23.8500%" y="799.50"></text></g><g><title>PhaseIdealLoop::do_split_if (73 samples, 0.03%)</title><rect x="23.5973%" y="805" width="0.0325%" height="15" fill="rgb(240,20,13)" fg:x="53001" fg:w="73"/><text x="23.8473%" y="815.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (166 samples, 0.07%)</title><rect x="23.6316%" y="805" width="0.0739%" height="15" fill="rgb(217,89,34)" fg:x="53078" fg:w="166"/><text x="23.8816%" y="815.50"></text></g><g><title>ConstraintCastNode::dominating_cast (52 samples, 0.02%)</title><rect x="23.7420%" y="789" width="0.0232%" height="15" fill="rgb(229,13,5)" fg:x="53326" fg:w="52"/><text x="23.9920%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (26 samples, 0.01%)</title><rect x="23.7718%" y="789" width="0.0116%" height="15" fill="rgb(244,67,35)" fg:x="53393" fg:w="26"/><text x="24.0218%" y="799.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (50 samples, 0.02%)</title><rect x="23.7834%" y="789" width="0.0223%" height="15" fill="rgb(221,40,2)" fg:x="53419" fg:w="50"/><text x="24.0334%" y="799.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (134 samples, 0.06%)</title><rect x="23.8061%" y="789" width="0.0597%" height="15" fill="rgb(237,157,21)" fg:x="53470" fg:w="134"/><text x="24.0561%" y="799.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (42 samples, 0.02%)</title><rect x="23.8471%" y="773" width="0.0187%" height="15" fill="rgb(222,94,11)" fg:x="53562" fg:w="42"/><text x="24.0971%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (41 samples, 0.02%)</title><rect x="23.9005%" y="773" width="0.0183%" height="15" fill="rgb(249,113,6)" fg:x="53682" fg:w="41"/><text x="24.1505%" y="783.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (134 samples, 0.06%)</title><rect x="23.8658%" y="789" width="0.0597%" height="15" fill="rgb(238,137,36)" fg:x="53604" fg:w="134"/><text x="24.1158%" y="799.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (527 samples, 0.23%)</title><rect x="23.7055%" y="805" width="0.2346%" height="15" fill="rgb(210,102,26)" fg:x="53244" fg:w="527"/><text x="23.9555%" y="815.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,072 samples, 0.48%)</title><rect x="23.4638%" y="821" width="0.4773%" height="15" fill="rgb(218,30,30)" fg:x="52701" fg:w="1072"/><text x="23.7138%" y="831.50"></text></g><g><title>CallNode::Ideal (24 samples, 0.01%)</title><rect x="24.0221%" y="789" width="0.0107%" height="15" fill="rgb(214,67,26)" fg:x="53955" fg:w="24"/><text x="24.2721%" y="799.50"></text></g><g><title>Node::remove_dead_region (24 samples, 0.01%)</title><rect x="24.0221%" y="773" width="0.0107%" height="15" fill="rgb(251,9,53)" fg:x="53955" fg:w="24"/><text x="24.2721%" y="783.50"></text></g><g><title>MemNode::Ideal_common (24 samples, 0.01%)</title><rect x="24.0969%" y="773" width="0.0107%" height="15" fill="rgb(228,204,25)" fg:x="54123" fg:w="24"/><text x="24.3469%" y="783.50"></text></g><g><title>LoadNode::Ideal (69 samples, 0.03%)</title><rect x="24.0911%" y="789" width="0.0307%" height="15" fill="rgb(207,153,8)" fg:x="54110" fg:w="69"/><text x="24.3411%" y="799.50"></text></g><g><title>MemNode::find_previous_store (28 samples, 0.01%)</title><rect x="24.1093%" y="773" width="0.0125%" height="15" fill="rgb(242,9,16)" fg:x="54151" fg:w="28"/><text x="24.3593%" y="783.50"></text></g><g><title>NodeHash::grow (23 samples, 0.01%)</title><rect x="24.1641%" y="773" width="0.0102%" height="15" fill="rgb(217,211,10)" fg:x="54274" fg:w="23"/><text x="24.4141%" y="783.50"></text></g><g><title>NodeHash::hash_find_insert (96 samples, 0.04%)</title><rect x="24.1360%" y="789" width="0.0427%" height="15" fill="rgb(219,228,52)" fg:x="54211" fg:w="96"/><text x="24.3860%" y="799.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (53 samples, 0.02%)</title><rect x="24.1792%" y="789" width="0.0236%" height="15" fill="rgb(231,92,29)" fg:x="54308" fg:w="53"/><text x="24.4292%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (35 samples, 0.02%)</title><rect x="24.2122%" y="773" width="0.0156%" height="15" fill="rgb(232,8,23)" fg:x="54382" fg:w="35"/><text x="24.4622%" y="783.50"></text></g><g><title>PhaseIterGVN::subsume_node (62 samples, 0.03%)</title><rect x="24.2028%" y="789" width="0.0276%" height="15" fill="rgb(216,211,34)" fg:x="54361" fg:w="62"/><text x="24.4528%" y="799.50"></text></g><g><title>PhiNode::Ideal (29 samples, 0.01%)</title><rect x="24.2309%" y="789" width="0.0129%" height="15" fill="rgb(236,151,0)" fg:x="54424" fg:w="29"/><text x="24.4809%" y="799.50"></text></g><g><title>RegionNode::is_unreachable_region (75 samples, 0.03%)</title><rect x="24.2928%" y="773" width="0.0334%" height="15" fill="rgb(209,168,3)" fg:x="54563" fg:w="75"/><text x="24.5428%" y="783.50"></text></g><g><title>RegionNode::Ideal (144 samples, 0.06%)</title><rect x="24.2625%" y="789" width="0.0641%" height="15" fill="rgb(208,129,28)" fg:x="54495" fg:w="144"/><text x="24.5125%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (23 samples, 0.01%)</title><rect x="24.3302%" y="565" width="0.0102%" height="15" fill="rgb(229,78,22)" fg:x="54647" fg:w="23"/><text x="24.5802%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (24 samples, 0.01%)</title><rect x="24.3302%" y="581" width="0.0107%" height="15" fill="rgb(228,187,13)" fg:x="54647" fg:w="24"/><text x="24.5802%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (25 samples, 0.01%)</title><rect x="24.3302%" y="597" width="0.0111%" height="15" fill="rgb(240,119,24)" fg:x="54647" fg:w="25"/><text x="24.5802%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (28 samples, 0.01%)</title><rect x="24.3302%" y="613" width="0.0125%" height="15" fill="rgb(209,194,42)" fg:x="54647" fg:w="28"/><text x="24.5802%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (29 samples, 0.01%)</title><rect x="24.3302%" y="629" width="0.0129%" height="15" fill="rgb(247,200,46)" fg:x="54647" fg:w="29"/><text x="24.5802%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (30 samples, 0.01%)</title><rect x="24.3302%" y="645" width="0.0134%" height="15" fill="rgb(218,76,16)" fg:x="54647" fg:w="30"/><text x="24.5802%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (33 samples, 0.01%)</title><rect x="24.3297%" y="677" width="0.0147%" height="15" fill="rgb(225,21,48)" fg:x="54646" fg:w="33"/><text x="24.5797%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (33 samples, 0.01%)</title><rect x="24.3297%" y="661" width="0.0147%" height="15" fill="rgb(239,223,50)" fg:x="54646" fg:w="33"/><text x="24.5797%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (34 samples, 0.02%)</title><rect x="24.3297%" y="693" width="0.0151%" height="15" fill="rgb(244,45,21)" fg:x="54646" fg:w="34"/><text x="24.5797%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (36 samples, 0.02%)</title><rect x="24.3297%" y="709" width="0.0160%" height="15" fill="rgb(232,33,43)" fg:x="54646" fg:w="36"/><text x="24.5797%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (39 samples, 0.02%)</title><rect x="24.3293%" y="725" width="0.0174%" height="15" fill="rgb(209,8,3)" fg:x="54645" fg:w="39"/><text x="24.5793%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (48 samples, 0.02%)</title><rect x="24.3293%" y="741" width="0.0214%" height="15" fill="rgb(214,25,53)" fg:x="54645" fg:w="48"/><text x="24.5793%" y="751.50"></text></g><g><title>InitializeNode::can_capture_store (49 samples, 0.02%)</title><rect x="24.3293%" y="773" width="0.0218%" height="15" fill="rgb(254,186,54)" fg:x="54645" fg:w="49"/><text x="24.5793%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.02%)</title><rect x="24.3293%" y="757" width="0.0218%" height="15" fill="rgb(208,174,49)" fg:x="54645" fg:w="49"/><text x="24.5793%" y="767.50"></text></g><g><title>StoreNode::Ideal (57 samples, 0.03%)</title><rect x="24.3293%" y="789" width="0.0254%" height="15" fill="rgb(233,191,51)" fg:x="54645" fg:w="57"/><text x="24.5793%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (922 samples, 0.41%)</title><rect x="23.9571%" y="805" width="0.4105%" height="15" fill="rgb(222,134,10)" fg:x="53809" fg:w="922"/><text x="24.2071%" y="815.50"></text></g><g><title>PhaseIterGVN::optimize (965 samples, 0.43%)</title><rect x="23.9410%" y="821" width="0.4296%" height="15" fill="rgb(230,226,20)" fg:x="53773" fg:w="965"/><text x="24.1910%" y="831.50"></text></g><g><title>SuperWord::transform_loop (26 samples, 0.01%)</title><rect x="24.3805%" y="821" width="0.0116%" height="15" fill="rgb(251,111,25)" fg:x="54760" fg:w="26"/><text x="24.6305%" y="831.50"></text></g><g><title>SuperWord::SLP_extract (26 samples, 0.01%)</title><rect x="24.3805%" y="805" width="0.0116%" height="15" fill="rgb(224,40,46)" fg:x="54760" fg:w="26"/><text x="24.6305%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (8,910 samples, 3.97%)</title><rect x="20.4344%" y="837" width="3.9669%" height="15" fill="rgb(236,108,47)" fg:x="45897" fg:w="8910"/><text x="20.6844%" y="847.50">Phas..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (50 samples, 0.02%)</title><rect x="24.4223%" y="821" width="0.0223%" height="15" fill="rgb(234,93,0)" fg:x="54854" fg:w="50"/><text x="24.6723%" y="831.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (99 samples, 0.04%)</title><rect x="24.4014%" y="837" width="0.0441%" height="15" fill="rgb(224,213,32)" fg:x="54807" fg:w="99"/><text x="24.6514%" y="847.50"></text></g><g><title>IfNode::fold_compares (23 samples, 0.01%)</title><rect x="24.5724%" y="789" width="0.0102%" height="15" fill="rgb(251,11,48)" fg:x="55191" fg:w="23"/><text x="24.8224%" y="799.50"></text></g><g><title>IfNode::search_identical (32 samples, 0.01%)</title><rect x="24.5826%" y="789" width="0.0142%" height="15" fill="rgb(236,173,5)" fg:x="55214" fg:w="32"/><text x="24.8326%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (61 samples, 0.03%)</title><rect x="24.6107%" y="773" width="0.0272%" height="15" fill="rgb(230,95,12)" fg:x="55277" fg:w="61"/><text x="24.8607%" y="783.50"></text></g><g><title>Unique_Node_List::remove (58 samples, 0.03%)</title><rect x="24.6120%" y="757" width="0.0258%" height="15" fill="rgb(232,209,1)" fg:x="55280" fg:w="58"/><text x="24.8620%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (67 samples, 0.03%)</title><rect x="24.6084%" y="789" width="0.0298%" height="15" fill="rgb(232,6,1)" fg:x="55272" fg:w="67"/><text x="24.8584%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (39 samples, 0.02%)</title><rect x="24.6512%" y="773" width="0.0174%" height="15" fill="rgb(210,224,50)" fg:x="55368" fg:w="39"/><text x="24.9012%" y="783.50"></text></g><g><title>Unique_Node_List::remove (27 samples, 0.01%)</title><rect x="24.6565%" y="757" width="0.0120%" height="15" fill="rgb(228,127,35)" fg:x="55380" fg:w="27"/><text x="24.9065%" y="767.50"></text></g><g><title>IfNode::Ideal (260 samples, 0.12%)</title><rect x="24.5581%" y="805" width="0.1158%" height="15" fill="rgb(245,102,45)" fg:x="55159" fg:w="260"/><text x="24.8081%" y="815.50"></text></g><g><title>split_if (72 samples, 0.03%)</title><rect x="24.6418%" y="789" width="0.0321%" height="15" fill="rgb(214,1,49)" fg:x="55347" fg:w="72"/><text x="24.8918%" y="799.50"></text></g><g><title>MemNode::Ideal_common (51 samples, 0.02%)</title><rect x="24.6984%" y="789" width="0.0227%" height="15" fill="rgb(226,163,40)" fg:x="55474" fg:w="51"/><text x="24.9484%" y="799.50"></text></g><g><title>MemNode::all_controls_dominate (28 samples, 0.01%)</title><rect x="24.7237%" y="773" width="0.0125%" height="15" fill="rgb(239,212,28)" fg:x="55531" fg:w="28"/><text x="24.9737%" y="783.50"></text></g><g><title>Node::dominates (28 samples, 0.01%)</title><rect x="24.7237%" y="757" width="0.0125%" height="15" fill="rgb(220,20,13)" fg:x="55531" fg:w="28"/><text x="24.9737%" y="767.50"></text></g><g><title>MemNode::find_previous_store (42 samples, 0.02%)</title><rect x="24.7220%" y="789" width="0.0187%" height="15" fill="rgb(210,164,35)" fg:x="55527" fg:w="42"/><text x="24.9720%" y="799.50"></text></g><g><title>LoadNode::Ideal (112 samples, 0.05%)</title><rect x="24.6912%" y="805" width="0.0499%" height="15" fill="rgb(248,109,41)" fg:x="55458" fg:w="112"/><text x="24.9412%" y="815.50"></text></g><g><title>LoadNode::Value (28 samples, 0.01%)</title><rect x="24.7509%" y="805" width="0.0125%" height="15" fill="rgb(238,23,50)" fg:x="55592" fg:w="28"/><text x="25.0009%" y="815.50"></text></g><g><title>MergeMemNode::Ideal (33 samples, 0.01%)</title><rect x="24.7700%" y="805" width="0.0147%" height="15" fill="rgb(211,48,49)" fg:x="55635" fg:w="33"/><text x="25.0200%" y="815.50"></text></g><g><title>NodeHash::grow (40 samples, 0.02%)</title><rect x="24.8217%" y="789" width="0.0178%" height="15" fill="rgb(223,36,21)" fg:x="55751" fg:w="40"/><text x="25.0717%" y="799.50"></text></g><g><title>NodeHash::hash_find_insert (119 samples, 0.05%)</title><rect x="24.7896%" y="805" width="0.0530%" height="15" fill="rgb(207,123,46)" fg:x="55679" fg:w="119"/><text x="25.0396%" y="815.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (36 samples, 0.02%)</title><rect x="24.8426%" y="805" width="0.0160%" height="15" fill="rgb(240,218,32)" fg:x="55798" fg:w="36"/><text x="25.0926%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (49 samples, 0.02%)</title><rect x="24.8911%" y="789" width="0.0218%" height="15" fill="rgb(252,5,43)" fg:x="55907" fg:w="49"/><text x="25.1411%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (135 samples, 0.06%)</title><rect x="24.8586%" y="805" width="0.0601%" height="15" fill="rgb(252,84,19)" fg:x="55834" fg:w="135"/><text x="25.1086%" y="815.50"></text></g><g><title>PhiNode::Ideal (96 samples, 0.04%)</title><rect x="24.9201%" y="805" width="0.0427%" height="15" fill="rgb(243,152,39)" fg:x="55972" fg:w="96"/><text x="25.1701%" y="815.50"></text></g><g><title>PhiNode::Value (30 samples, 0.01%)</title><rect x="24.9677%" y="805" width="0.0134%" height="15" fill="rgb(234,160,15)" fg:x="56079" fg:w="30"/><text x="25.2177%" y="815.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (75 samples, 0.03%)</title><rect x="25.0225%" y="773" width="0.0334%" height="15" fill="rgb(237,34,20)" fg:x="56202" fg:w="75"/><text x="25.2725%" y="783.50"></text></g><g><title>Unique_Node_List::remove (66 samples, 0.03%)</title><rect x="25.0265%" y="757" width="0.0294%" height="15" fill="rgb(229,97,13)" fg:x="56211" fg:w="66"/><text x="25.2765%" y="767.50"></text></g><g><title>PhaseIterGVN::subsume_node (89 samples, 0.04%)</title><rect x="25.0198%" y="789" width="0.0396%" height="15" fill="rgb(234,71,50)" fg:x="56196" fg:w="89"/><text x="25.2698%" y="799.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (23 samples, 0.01%)</title><rect x="25.0594%" y="789" width="0.0102%" height="15" fill="rgb(253,155,4)" fg:x="56285" fg:w="23"/><text x="25.3094%" y="799.50"></text></g><g><title>RegionNode::is_unreachable_region (64 samples, 0.03%)</title><rect x="25.0701%" y="789" width="0.0285%" height="15" fill="rgb(222,185,37)" fg:x="56309" fg:w="64"/><text x="25.3201%" y="799.50"></text></g><g><title>RegionNode::Ideal (234 samples, 0.10%)</title><rect x="24.9949%" y="805" width="0.1042%" height="15" fill="rgb(251,177,13)" fg:x="56140" fg:w="234"/><text x="25.2449%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (26 samples, 0.01%)</title><rect x="25.1035%" y="501" width="0.0116%" height="15" fill="rgb(250,179,40)" fg:x="56384" fg:w="26"/><text x="25.3535%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (39 samples, 0.02%)</title><rect x="25.1035%" y="517" width="0.0174%" height="15" fill="rgb(242,44,2)" fg:x="56384" fg:w="39"/><text x="25.3535%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (48 samples, 0.02%)</title><rect x="25.1035%" y="533" width="0.0214%" height="15" fill="rgb(216,177,13)" fg:x="56384" fg:w="48"/><text x="25.3535%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (60 samples, 0.03%)</title><rect x="25.1035%" y="549" width="0.0267%" height="15" fill="rgb(216,106,43)" fg:x="56384" fg:w="60"/><text x="25.3535%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.03%)</title><rect x="25.1035%" y="565" width="0.0307%" height="15" fill="rgb(216,183,2)" fg:x="56384" fg:w="69"/><text x="25.3535%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (76 samples, 0.03%)</title><rect x="25.1035%" y="581" width="0.0338%" height="15" fill="rgb(249,75,3)" fg:x="56384" fg:w="76"/><text x="25.3535%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (86 samples, 0.04%)</title><rect x="25.1035%" y="597" width="0.0383%" height="15" fill="rgb(219,67,39)" fg:x="56384" fg:w="86"/><text x="25.3535%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (90 samples, 0.04%)</title><rect x="25.1035%" y="613" width="0.0401%" height="15" fill="rgb(253,228,2)" fg:x="56384" fg:w="90"/><text x="25.3535%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (104 samples, 0.05%)</title><rect x="25.1035%" y="629" width="0.0463%" height="15" fill="rgb(235,138,27)" fg:x="56384" fg:w="104"/><text x="25.3535%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (115 samples, 0.05%)</title><rect x="25.1035%" y="645" width="0.0512%" height="15" fill="rgb(236,97,51)" fg:x="56384" fg:w="115"/><text x="25.3535%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (122 samples, 0.05%)</title><rect x="25.1035%" y="661" width="0.0543%" height="15" fill="rgb(240,80,30)" fg:x="56384" fg:w="122"/><text x="25.3535%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (134 samples, 0.06%)</title><rect x="25.1035%" y="677" width="0.0597%" height="15" fill="rgb(230,178,19)" fg:x="56384" fg:w="134"/><text x="25.3535%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (149 samples, 0.07%)</title><rect x="25.1031%" y="693" width="0.0663%" height="15" fill="rgb(210,190,27)" fg:x="56383" fg:w="149"/><text x="25.3531%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (159 samples, 0.07%)</title><rect x="25.1031%" y="709" width="0.0708%" height="15" fill="rgb(222,107,31)" fg:x="56383" fg:w="159"/><text x="25.3531%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (166 samples, 0.07%)</title><rect x="25.1031%" y="725" width="0.0739%" height="15" fill="rgb(216,127,34)" fg:x="56383" fg:w="166"/><text x="25.3531%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (178 samples, 0.08%)</title><rect x="25.1031%" y="741" width="0.0792%" height="15" fill="rgb(234,116,52)" fg:x="56383" fg:w="178"/><text x="25.3531%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (201 samples, 0.09%)</title><rect x="25.1031%" y="757" width="0.0895%" height="15" fill="rgb(222,124,15)" fg:x="56383" fg:w="201"/><text x="25.3531%" y="767.50"></text></g><g><title>MemNode::all_controls_dominate (23 samples, 0.01%)</title><rect x="25.1823%" y="741" width="0.0102%" height="15" fill="rgb(231,179,28)" fg:x="56561" fg:w="23"/><text x="25.4323%" y="751.50"></text></g><g><title>InitializeNode::can_capture_store (205 samples, 0.09%)</title><rect x="25.1022%" y="789" width="0.0913%" height="15" fill="rgb(226,93,45)" fg:x="56381" fg:w="205"/><text x="25.3522%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (204 samples, 0.09%)</title><rect x="25.1026%" y="773" width="0.0908%" height="15" fill="rgb(215,8,51)" fg:x="56382" fg:w="204"/><text x="25.3526%" y="783.50"></text></g><g><title>StoreNode::Ideal (225 samples, 0.10%)</title><rect x="25.1017%" y="805" width="0.1002%" height="15" fill="rgb(223,106,5)" fg:x="56380" fg:w="225"/><text x="25.3517%" y="815.50"></text></g><g><title>PhaseIterGVN::transform_old (1,684 samples, 0.75%)</title><rect x="24.4695%" y="821" width="0.7498%" height="15" fill="rgb(250,191,5)" fg:x="54960" fg:w="1684"/><text x="24.7195%" y="831.50"></text></g><g><title>PhaseIterGVN::optimize (1,751 samples, 0.78%)</title><rect x="24.4455%" y="837" width="0.7796%" height="15" fill="rgb(242,132,44)" fg:x="54906" fg:w="1751"/><text x="24.6955%" y="847.50"></text></g><g><title>PhaseIterGVN::transform_old (173 samples, 0.08%)</title><rect x="25.2375%" y="805" width="0.0770%" height="15" fill="rgb(251,152,29)" fg:x="56685" fg:w="173"/><text x="25.4875%" y="815.50"></text></g><g><title>PhaseIterGVN::optimize (178 samples, 0.08%)</title><rect x="25.2357%" y="821" width="0.0792%" height="15" fill="rgb(218,179,5)" fg:x="56681" fg:w="178"/><text x="25.4857%" y="831.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (56 samples, 0.02%)</title><rect x="25.3154%" y="821" width="0.0249%" height="15" fill="rgb(227,67,19)" fg:x="56860" fg:w="56"/><text x="25.5654%" y="831.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (266 samples, 0.12%)</title><rect x="25.2340%" y="837" width="0.1184%" height="15" fill="rgb(233,119,31)" fg:x="56677" fg:w="266"/><text x="25.4840%" y="847.50"></text></g><g><title>Compile::identify_useful_nodes (49 samples, 0.02%)</title><rect x="25.3617%" y="805" width="0.0218%" height="15" fill="rgb(241,120,22)" fg:x="56964" fg:w="49"/><text x="25.6117%" y="815.50"></text></g><g><title>Compile::remove_useless_nodes (34 samples, 0.02%)</title><rect x="25.3836%" y="805" width="0.0151%" height="15" fill="rgb(224,102,30)" fg:x="57013" fg:w="34"/><text x="25.6336%" y="815.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (108 samples, 0.05%)</title><rect x="25.3524%" y="837" width="0.0481%" height="15" fill="rgb(210,164,37)" fg:x="56943" fg:w="108"/><text x="25.6024%" y="847.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (100 samples, 0.04%)</title><rect x="25.3560%" y="821" width="0.0445%" height="15" fill="rgb(226,191,16)" fg:x="56951" fg:w="100"/><text x="25.6060%" y="831.50"></text></g><g><title>Compile::Optimize (12,637 samples, 5.63%)</title><rect x="19.7760%" y="853" width="5.6263%" height="15" fill="rgb(214,40,45)" fg:x="44418" fg:w="12637"/><text x="20.0260%" y="863.50">Compile..</text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="25.4205%" y="709" width="0.0134%" height="15" fill="rgb(244,29,26)" fg:x="57096" fg:w="30"/><text x="25.6705%" y="719.50"></text></g><g><title>Parse::do_field_access (24 samples, 0.01%)</title><rect x="25.4352%" y="709" width="0.0107%" height="15" fill="rgb(216,16,5)" fg:x="57129" fg:w="24"/><text x="25.6852%" y="719.50"></text></g><g><title>Parse::do_one_block (128 samples, 0.06%)</title><rect x="25.4098%" y="741" width="0.0570%" height="15" fill="rgb(249,76,35)" fg:x="57072" fg:w="128"/><text x="25.6598%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (119 samples, 0.05%)</title><rect x="25.4138%" y="725" width="0.0530%" height="15" fill="rgb(207,11,44)" fg:x="57081" fg:w="119"/><text x="25.6638%" y="735.50"></text></g><g><title>Parse::do_all_blocks (137 samples, 0.06%)</title><rect x="25.4085%" y="757" width="0.0610%" height="15" fill="rgb(228,190,49)" fg:x="57069" fg:w="137"/><text x="25.6585%" y="767.50"></text></g><g><title>ParseGenerator::generate (142 samples, 0.06%)</title><rect x="25.4085%" y="789" width="0.0632%" height="15" fill="rgb(214,173,12)" fg:x="57069" fg:w="142"/><text x="25.6585%" y="799.50"></text></g><g><title>Parse::Parse (142 samples, 0.06%)</title><rect x="25.4085%" y="773" width="0.0632%" height="15" fill="rgb(218,26,35)" fg:x="57069" fg:w="142"/><text x="25.6585%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (172 samples, 0.08%)</title><rect x="25.4023%" y="853" width="0.0766%" height="15" fill="rgb(220,200,19)" fg:x="57055" fg:w="172"/><text x="25.6523%" y="863.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (172 samples, 0.08%)</title><rect x="25.4023%" y="837" width="0.0766%" height="15" fill="rgb(239,95,49)" fg:x="57055" fg:w="172"/><text x="25.6523%" y="847.50"></text></g><g><title>C2Compiler::compile_method (172 samples, 0.08%)</title><rect x="25.4023%" y="821" width="0.0766%" height="15" fill="rgb(235,85,53)" fg:x="57055" fg:w="172"/><text x="25.6523%" y="831.50"></text></g><g><title>Compile::Compile (172 samples, 0.08%)</title><rect x="25.4023%" y="805" width="0.0766%" height="15" fill="rgb(233,133,31)" fg:x="57055" fg:w="172"/><text x="25.6523%" y="815.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (31 samples, 0.01%)</title><rect x="25.4869%" y="677" width="0.0138%" height="15" fill="rgb(218,25,20)" fg:x="57245" fg:w="31"/><text x="25.7369%" y="687.50"></text></g><g><title>ciBytecodeStream::get_method (31 samples, 0.01%)</title><rect x="25.4869%" y="661" width="0.0138%" height="15" fill="rgb(252,210,38)" fg:x="57245" fg:w="31"/><text x="25.7369%" y="671.50"></text></g><g><title>ciEnv::get_method_by_index_impl (29 samples, 0.01%)</title><rect x="25.4877%" y="645" width="0.0129%" height="15" fill="rgb(242,134,21)" fg:x="57247" fg:w="29"/><text x="25.7377%" y="655.50"></text></g><g><title>ciObjectFactory::get_metadata (24 samples, 0.01%)</title><rect x="25.4900%" y="629" width="0.0107%" height="15" fill="rgb(213,28,48)" fg:x="57252" fg:w="24"/><text x="25.7400%" y="639.50"></text></g><g><title>CallGenerator::for_inline (53 samples, 0.02%)</title><rect x="25.4788%" y="805" width="0.0236%" height="15" fill="rgb(250,196,2)" fg:x="57227" fg:w="53"/><text x="25.7288%" y="815.50"></text></g><g><title>InlineTree::check_can_parse (53 samples, 0.02%)</title><rect x="25.4788%" y="789" width="0.0236%" height="15" fill="rgb(227,5,17)" fg:x="57227" fg:w="53"/><text x="25.7288%" y="799.50"></text></g><g><title>ciMethod::get_flow_analysis (53 samples, 0.02%)</title><rect x="25.4788%" y="773" width="0.0236%" height="15" fill="rgb(221,226,24)" fg:x="57227" fg:w="53"/><text x="25.7288%" y="783.50"></text></g><g><title>ciTypeFlow::do_flow (53 samples, 0.02%)</title><rect x="25.4788%" y="757" width="0.0236%" height="15" fill="rgb(211,5,48)" fg:x="57227" fg:w="53"/><text x="25.7288%" y="767.50"></text></g><g><title>ciTypeFlow::flow_types (53 samples, 0.02%)</title><rect x="25.4788%" y="741" width="0.0236%" height="15" fill="rgb(219,150,6)" fg:x="57227" fg:w="53"/><text x="25.7288%" y="751.50"></text></g><g><title>ciTypeFlow::df_flow_types (53 samples, 0.02%)</title><rect x="25.4788%" y="725" width="0.0236%" height="15" fill="rgb(251,46,16)" fg:x="57227" fg:w="53"/><text x="25.7288%" y="735.50"></text></g><g><title>ciTypeFlow::flow_block (53 samples, 0.02%)</title><rect x="25.4788%" y="709" width="0.0236%" height="15" fill="rgb(220,204,40)" fg:x="57227" fg:w="53"/><text x="25.7288%" y="719.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (53 samples, 0.02%)</title><rect x="25.4788%" y="693" width="0.0236%" height="15" fill="rgb(211,85,2)" fg:x="57227" fg:w="53"/><text x="25.7288%" y="703.50"></text></g><g><title>InlineTree::try_to_inline (25 samples, 0.01%)</title><rect x="25.5300%" y="677" width="0.0111%" height="15" fill="rgb(229,17,7)" fg:x="57342" fg:w="25"/><text x="25.7800%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (53 samples, 0.02%)</title><rect x="25.5269%" y="693" width="0.0236%" height="15" fill="rgb(239,72,28)" fg:x="57335" fg:w="53"/><text x="25.7769%" y="703.50"></text></g><g><title>Compile::call_generator (68 samples, 0.03%)</title><rect x="25.5238%" y="709" width="0.0303%" height="15" fill="rgb(230,47,54)" fg:x="57328" fg:w="68"/><text x="25.7738%" y="719.50"></text></g><g><title>Parse::do_one_block (85 samples, 0.04%)</title><rect x="25.5973%" y="661" width="0.0378%" height="15" fill="rgb(214,50,8)" fg:x="57493" fg:w="85"/><text x="25.8473%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (75 samples, 0.03%)</title><rect x="25.6017%" y="645" width="0.0334%" height="15" fill="rgb(216,198,43)" fg:x="57503" fg:w="75"/><text x="25.8517%" y="655.50"></text></g><g><title>Parse::do_all_blocks (95 samples, 0.04%)</title><rect x="25.5959%" y="677" width="0.0423%" height="15" fill="rgb(234,20,35)" fg:x="57490" fg:w="95"/><text x="25.8459%" y="687.50"></text></g><g><title>ParseGenerator::generate (164 samples, 0.07%)</title><rect x="25.5781%" y="709" width="0.0730%" height="15" fill="rgb(254,45,19)" fg:x="57450" fg:w="164"/><text x="25.8281%" y="719.50"></text></g><g><title>Parse::Parse (163 samples, 0.07%)</title><rect x="25.5786%" y="693" width="0.0726%" height="15" fill="rgb(219,14,44)" fg:x="57451" fg:w="163"/><text x="25.8286%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (63 samples, 0.03%)</title><rect x="25.6511%" y="709" width="0.0280%" height="15" fill="rgb(217,220,26)" fg:x="57614" fg:w="63"/><text x="25.9011%" y="719.50"></text></g><g><title>Parse::do_call (367 samples, 0.16%)</title><rect x="25.5238%" y="725" width="0.1634%" height="15" fill="rgb(213,158,28)" fg:x="57328" fg:w="367"/><text x="25.7738%" y="735.50"></text></g><g><title>Parse::do_get_xxx (33 samples, 0.01%)</title><rect x="25.6934%" y="709" width="0.0147%" height="15" fill="rgb(252,51,52)" fg:x="57709" fg:w="33"/><text x="25.9434%" y="719.50"></text></g><g><title>Parse::do_field_access (61 samples, 0.03%)</title><rect x="25.6912%" y="725" width="0.0272%" height="15" fill="rgb(246,89,16)" fg:x="57704" fg:w="61"/><text x="25.9412%" y="735.50"></text></g><g><title>Parse::do_put_xxx (23 samples, 0.01%)</title><rect x="25.7081%" y="709" width="0.0102%" height="15" fill="rgb(216,158,49)" fg:x="57742" fg:w="23"/><text x="25.9581%" y="719.50"></text></g><g><title>Parse::do_all_blocks (527 samples, 0.23%)</title><rect x="25.5051%" y="773" width="0.2346%" height="15" fill="rgb(236,107,19)" fg:x="57286" fg:w="527"/><text x="25.7551%" y="783.50"></text></g><g><title>Parse::do_one_block (527 samples, 0.23%)</title><rect x="25.5051%" y="757" width="0.2346%" height="15" fill="rgb(228,185,30)" fg:x="57286" fg:w="527"/><text x="25.7551%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (517 samples, 0.23%)</title><rect x="25.5096%" y="741" width="0.2302%" height="15" fill="rgb(246,134,8)" fg:x="57296" fg:w="517"/><text x="25.7596%" y="751.50"></text></g><g><title>ParseGenerator::generate (535 samples, 0.24%)</title><rect x="25.5051%" y="805" width="0.2382%" height="15" fill="rgb(214,143,50)" fg:x="57286" fg:w="535"/><text x="25.7551%" y="815.50"></text></g><g><title>Parse::Parse (535 samples, 0.24%)</title><rect x="25.5051%" y="789" width="0.2382%" height="15" fill="rgb(228,75,8)" fg:x="57286" fg:w="535"/><text x="25.7551%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (611 samples, 0.27%)</title><rect x="25.4788%" y="853" width="0.2720%" height="15" fill="rgb(207,175,4)" fg:x="57227" fg:w="611"/><text x="25.7288%" y="863.50"></text></g><g><title>C2Compiler::compile_method (611 samples, 0.27%)</title><rect x="25.4788%" y="837" width="0.2720%" height="15" fill="rgb(205,108,24)" fg:x="57227" fg:w="611"/><text x="25.7288%" y="847.50"></text></g><g><title>Compile::Compile (611 samples, 0.27%)</title><rect x="25.4788%" y="821" width="0.2720%" height="15" fill="rgb(244,120,49)" fg:x="57227" fg:w="611"/><text x="25.7288%" y="831.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.02%)</title><rect x="25.7740%" y="725" width="0.0200%" height="15" fill="rgb(223,47,38)" fg:x="57890" fg:w="45"/><text x="26.0240%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.02%)</title><rect x="25.7754%" y="709" width="0.0187%" height="15" fill="rgb(229,179,11)" fg:x="57893" fg:w="42"/><text x="26.0254%" y="719.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.02%)</title><rect x="25.7731%" y="741" width="0.0218%" height="15" fill="rgb(231,122,1)" fg:x="57888" fg:w="49"/><text x="26.0231%" y="751.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.02%)</title><rect x="25.7722%" y="773" width="0.0249%" height="15" fill="rgb(245,119,9)" fg:x="57886" fg:w="56"/><text x="26.0222%" y="783.50"></text></g><g><title>Parse::Parse (56 samples, 0.02%)</title><rect x="25.7722%" y="757" width="0.0249%" height="15" fill="rgb(241,163,25)" fg:x="57886" fg:w="56"/><text x="26.0222%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (73 samples, 0.03%)</title><rect x="25.7660%" y="853" width="0.0325%" height="15" fill="rgb(217,214,3)" fg:x="57872" fg:w="73"/><text x="26.0160%" y="863.50"></text></g><g><title>CompileBroker::compiler_thread_loop (73 samples, 0.03%)</title><rect x="25.7660%" y="837" width="0.0325%" height="15" fill="rgb(240,86,28)" fg:x="57872" fg:w="73"/><text x="26.0160%" y="847.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (73 samples, 0.03%)</title><rect x="25.7660%" y="821" width="0.0325%" height="15" fill="rgb(215,47,9)" fg:x="57872" fg:w="73"/><text x="26.0160%" y="831.50"></text></g><g><title>C2Compiler::compile_method (73 samples, 0.03%)</title><rect x="25.7660%" y="805" width="0.0325%" height="15" fill="rgb(252,25,45)" fg:x="57872" fg:w="73"/><text x="26.0160%" y="815.50"></text></g><g><title>Compile::Compile (73 samples, 0.03%)</title><rect x="25.7660%" y="789" width="0.0325%" height="15" fill="rgb(251,164,9)" fg:x="57872" fg:w="73"/><text x="26.0160%" y="799.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.01%)</title><rect x="25.8056%" y="293" width="0.0116%" height="15" fill="rgb(233,194,0)" fg:x="57961" fg:w="26"/><text x="26.0556%" y="303.50"></text></g><g><title>Parse::Parse (26 samples, 0.01%)</title><rect x="25.8056%" y="277" width="0.0116%" height="15" fill="rgb(249,111,24)" fg:x="57961" fg:w="26"/><text x="26.0556%" y="287.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.01%)</title><rect x="25.8056%" y="261" width="0.0116%" height="15" fill="rgb(250,223,3)" fg:x="57961" fg:w="26"/><text x="26.0556%" y="271.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.01%)</title><rect x="25.8056%" y="245" width="0.0116%" height="15" fill="rgb(236,178,37)" fg:x="57961" fg:w="26"/><text x="26.0556%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.01%)</title><rect x="25.8056%" y="229" width="0.0116%" height="15" fill="rgb(241,158,50)" fg:x="57961" fg:w="26"/><text x="26.0556%" y="239.50"></text></g><g><title>Parse::do_call (26 samples, 0.01%)</title><rect x="25.8056%" y="213" width="0.0116%" height="15" fill="rgb(213,121,41)" fg:x="57961" fg:w="26"/><text x="26.0556%" y="223.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.01%)</title><rect x="25.8052%" y="389" width="0.0125%" height="15" fill="rgb(240,92,3)" fg:x="57960" fg:w="28"/><text x="26.0552%" y="399.50"></text></g><g><title>Parse::Parse (28 samples, 0.01%)</title><rect x="25.8052%" y="373" width="0.0125%" height="15" fill="rgb(205,123,3)" fg:x="57960" fg:w="28"/><text x="26.0552%" y="383.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.01%)</title><rect x="25.8052%" y="357" width="0.0125%" height="15" fill="rgb(205,97,47)" fg:x="57960" fg:w="28"/><text x="26.0552%" y="367.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.01%)</title><rect x="25.8052%" y="341" width="0.0125%" height="15" fill="rgb(247,152,14)" fg:x="57960" fg:w="28"/><text x="26.0552%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.01%)</title><rect x="25.8052%" y="325" width="0.0125%" height="15" fill="rgb(248,195,53)" fg:x="57960" fg:w="28"/><text x="26.0552%" y="335.50"></text></g><g><title>Parse::do_call (28 samples, 0.01%)</title><rect x="25.8052%" y="309" width="0.0125%" height="15" fill="rgb(226,201,16)" fg:x="57960" fg:w="28"/><text x="26.0552%" y="319.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.01%)</title><rect x="25.8052%" y="485" width="0.0129%" height="15" fill="rgb(205,98,0)" fg:x="57960" fg:w="29"/><text x="26.0552%" y="495.50"></text></g><g><title>Parse::Parse (29 samples, 0.01%)</title><rect x="25.8052%" y="469" width="0.0129%" height="15" fill="rgb(214,191,48)" fg:x="57960" fg:w="29"/><text x="26.0552%" y="479.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.01%)</title><rect x="25.8052%" y="453" width="0.0129%" height="15" fill="rgb(237,112,39)" fg:x="57960" fg:w="29"/><text x="26.0552%" y="463.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.01%)</title><rect x="25.8052%" y="437" width="0.0129%" height="15" fill="rgb(247,203,27)" fg:x="57960" fg:w="29"/><text x="26.0552%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.01%)</title><rect x="25.8052%" y="421" width="0.0129%" height="15" fill="rgb(235,124,28)" fg:x="57960" fg:w="29"/><text x="26.0552%" y="431.50"></text></g><g><title>Parse::do_call (29 samples, 0.01%)</title><rect x="25.8052%" y="405" width="0.0129%" height="15" fill="rgb(208,207,46)" fg:x="57960" fg:w="29"/><text x="26.0552%" y="415.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="25.8052%" y="581" width="0.0134%" height="15" fill="rgb(234,176,4)" fg:x="57960" fg:w="30"/><text x="26.0552%" y="591.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="25.8052%" y="565" width="0.0134%" height="15" fill="rgb(230,133,28)" fg:x="57960" fg:w="30"/><text x="26.0552%" y="575.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="25.8052%" y="549" width="0.0134%" height="15" fill="rgb(211,137,40)" fg:x="57960" fg:w="30"/><text x="26.0552%" y="559.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="25.8052%" y="533" width="0.0134%" height="15" fill="rgb(254,35,13)" fg:x="57960" fg:w="30"/><text x="26.0552%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="25.8052%" y="517" width="0.0134%" height="15" fill="rgb(225,49,51)" fg:x="57960" fg:w="30"/><text x="26.0552%" y="527.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="25.8052%" y="501" width="0.0134%" height="15" fill="rgb(251,10,15)" fg:x="57960" fg:w="30"/><text x="26.0552%" y="511.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.01%)</title><rect x="25.8052%" y="677" width="0.0142%" height="15" fill="rgb(228,207,15)" fg:x="57960" fg:w="32"/><text x="26.0552%" y="687.50"></text></g><g><title>Parse::Parse (32 samples, 0.01%)</title><rect x="25.8052%" y="661" width="0.0142%" height="15" fill="rgb(241,99,19)" fg:x="57960" fg:w="32"/><text x="26.0552%" y="671.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="25.8052%" y="645" width="0.0142%" height="15" fill="rgb(207,104,49)" fg:x="57960" fg:w="32"/><text x="26.0552%" y="655.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="25.8052%" y="629" width="0.0142%" height="15" fill="rgb(234,99,18)" fg:x="57960" fg:w="32"/><text x="26.0552%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="25.8052%" y="613" width="0.0142%" height="15" fill="rgb(213,191,49)" fg:x="57960" fg:w="32"/><text x="26.0552%" y="623.50"></text></g><g><title>Parse::do_call (32 samples, 0.01%)</title><rect x="25.8052%" y="597" width="0.0142%" height="15" fill="rgb(210,226,19)" fg:x="57960" fg:w="32"/><text x="26.0552%" y="607.50"></text></g><g><title>ParseGenerator::generate (40 samples, 0.02%)</title><rect x="25.8052%" y="773" width="0.0178%" height="15" fill="rgb(229,97,18)" fg:x="57960" fg:w="40"/><text x="26.0552%" y="783.50"></text></g><g><title>Parse::Parse (40 samples, 0.02%)</title><rect x="25.8052%" y="757" width="0.0178%" height="15" fill="rgb(211,167,15)" fg:x="57960" fg:w="40"/><text x="26.0552%" y="767.50"></text></g><g><title>Parse::do_all_blocks (40 samples, 0.02%)</title><rect x="25.8052%" y="741" width="0.0178%" height="15" fill="rgb(210,169,34)" fg:x="57960" fg:w="40"/><text x="26.0552%" y="751.50"></text></g><g><title>Parse::do_one_block (40 samples, 0.02%)</title><rect x="25.8052%" y="725" width="0.0178%" height="15" fill="rgb(241,121,31)" fg:x="57960" fg:w="40"/><text x="26.0552%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (40 samples, 0.02%)</title><rect x="25.8052%" y="709" width="0.0178%" height="15" fill="rgb(232,40,11)" fg:x="57960" fg:w="40"/><text x="26.0552%" y="719.50"></text></g><g><title>Parse::do_call (40 samples, 0.02%)</title><rect x="25.8052%" y="693" width="0.0178%" height="15" fill="rgb(205,86,26)" fg:x="57960" fg:w="40"/><text x="26.0552%" y="703.50"></text></g><g><title>Parse::Parse (44 samples, 0.02%)</title><rect x="25.8052%" y="853" width="0.0196%" height="15" fill="rgb(231,126,28)" fg:x="57960" fg:w="44"/><text x="26.0552%" y="863.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.02%)</title><rect x="25.8052%" y="837" width="0.0196%" height="15" fill="rgb(219,221,18)" fg:x="57960" fg:w="44"/><text x="26.0552%" y="847.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.02%)</title><rect x="25.8052%" y="821" width="0.0196%" height="15" fill="rgb(211,40,0)" fg:x="57960" fg:w="44"/><text x="26.0552%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.02%)</title><rect x="25.8052%" y="805" width="0.0196%" height="15" fill="rgb(239,85,43)" fg:x="57960" fg:w="44"/><text x="26.0552%" y="815.50"></text></g><g><title>Parse::do_call (44 samples, 0.02%)</title><rect x="25.8052%" y="789" width="0.0196%" height="15" fill="rgb(231,55,21)" fg:x="57960" fg:w="44"/><text x="26.0552%" y="799.50"></text></g><g><title>ParseGenerator::generate (26 samples, 0.01%)</title><rect x="25.8248%" y="597" width="0.0116%" height="15" fill="rgb(225,184,43)" fg:x="58004" fg:w="26"/><text x="26.0748%" y="607.50"></text></g><g><title>Parse::Parse (26 samples, 0.01%)</title><rect x="25.8248%" y="581" width="0.0116%" height="15" fill="rgb(251,158,41)" fg:x="58004" fg:w="26"/><text x="26.0748%" y="591.50"></text></g><g><title>Parse::do_all_blocks (26 samples, 0.01%)</title><rect x="25.8248%" y="565" width="0.0116%" height="15" fill="rgb(234,159,37)" fg:x="58004" fg:w="26"/><text x="26.0748%" y="575.50"></text></g><g><title>Parse::do_one_block (26 samples, 0.01%)</title><rect x="25.8248%" y="549" width="0.0116%" height="15" fill="rgb(216,204,22)" fg:x="58004" fg:w="26"/><text x="26.0748%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (26 samples, 0.01%)</title><rect x="25.8248%" y="533" width="0.0116%" height="15" fill="rgb(214,17,3)" fg:x="58004" fg:w="26"/><text x="26.0748%" y="543.50"></text></g><g><title>Parse::do_call (26 samples, 0.01%)</title><rect x="25.8248%" y="517" width="0.0116%" height="15" fill="rgb(212,111,17)" fg:x="58004" fg:w="26"/><text x="26.0748%" y="527.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="25.8248%" y="693" width="0.0120%" height="15" fill="rgb(221,157,24)" fg:x="58004" fg:w="27"/><text x="26.0748%" y="703.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="25.8248%" y="677" width="0.0120%" height="15" fill="rgb(252,16,13)" fg:x="58004" fg:w="27"/><text x="26.0748%" y="687.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.01%)</title><rect x="25.8248%" y="661" width="0.0120%" height="15" fill="rgb(221,62,2)" fg:x="58004" fg:w="27"/><text x="26.0748%" y="671.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.01%)</title><rect x="25.8248%" y="645" width="0.0120%" height="15" fill="rgb(247,87,22)" fg:x="58004" fg:w="27"/><text x="26.0748%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.01%)</title><rect x="25.8248%" y="629" width="0.0120%" height="15" fill="rgb(215,73,9)" fg:x="58004" fg:w="27"/><text x="26.0748%" y="639.50"></text></g><g><title>Parse::do_call (27 samples, 0.01%)</title><rect x="25.8248%" y="613" width="0.0120%" height="15" fill="rgb(207,175,33)" fg:x="58004" fg:w="27"/><text x="26.0748%" y="623.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="25.8248%" y="789" width="0.0134%" height="15" fill="rgb(243,129,54)" fg:x="58004" fg:w="30"/><text x="26.0748%" y="799.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="25.8248%" y="773" width="0.0134%" height="15" fill="rgb(227,119,45)" fg:x="58004" fg:w="30"/><text x="26.0748%" y="783.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="25.8248%" y="757" width="0.0134%" height="15" fill="rgb(205,109,36)" fg:x="58004" fg:w="30"/><text x="26.0748%" y="767.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="25.8248%" y="741" width="0.0134%" height="15" fill="rgb(205,6,39)" fg:x="58004" fg:w="30"/><text x="26.0748%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="25.8248%" y="725" width="0.0134%" height="15" fill="rgb(221,32,16)" fg:x="58004" fg:w="30"/><text x="26.0748%" y="735.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="25.8248%" y="709" width="0.0134%" height="15" fill="rgb(228,144,50)" fg:x="58004" fg:w="30"/><text x="26.0748%" y="719.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="25.8248%" y="853" width="0.0142%" height="15" fill="rgb(229,201,53)" fg:x="58004" fg:w="32"/><text x="26.0748%" y="863.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="25.8248%" y="837" width="0.0142%" height="15" fill="rgb(249,153,27)" fg:x="58004" fg:w="32"/><text x="26.0748%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="25.8248%" y="821" width="0.0142%" height="15" fill="rgb(227,106,25)" fg:x="58004" fg:w="32"/><text x="26.0748%" y="831.50"></text></g><g><title>Parse::do_call (32 samples, 0.01%)</title><rect x="25.8248%" y="805" width="0.0142%" height="15" fill="rgb(230,65,29)" fg:x="58004" fg:w="32"/><text x="26.0748%" y="815.50"></text></g><g><title>ParseGenerator::generate (23 samples, 0.01%)</title><rect x="25.8390%" y="741" width="0.0102%" height="15" fill="rgb(221,57,46)" fg:x="58036" fg:w="23"/><text x="26.0890%" y="751.50"></text></g><g><title>Parse::Parse (23 samples, 0.01%)</title><rect x="25.8390%" y="725" width="0.0102%" height="15" fill="rgb(229,161,17)" fg:x="58036" fg:w="23"/><text x="26.0890%" y="735.50"></text></g><g><title>Parse::do_all_blocks (23 samples, 0.01%)</title><rect x="25.8390%" y="709" width="0.0102%" height="15" fill="rgb(222,213,11)" fg:x="58036" fg:w="23"/><text x="26.0890%" y="719.50"></text></g><g><title>Parse::do_one_block (23 samples, 0.01%)</title><rect x="25.8390%" y="693" width="0.0102%" height="15" fill="rgb(235,35,13)" fg:x="58036" fg:w="23"/><text x="26.0890%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (23 samples, 0.01%)</title><rect x="25.8390%" y="677" width="0.0102%" height="15" fill="rgb(233,158,34)" fg:x="58036" fg:w="23"/><text x="26.0890%" y="687.50"></text></g><g><title>Parse::do_call (23 samples, 0.01%)</title><rect x="25.8390%" y="661" width="0.0102%" height="15" fill="rgb(215,151,48)" fg:x="58036" fg:w="23"/><text x="26.0890%" y="671.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="25.8390%" y="837" width="0.0134%" height="15" fill="rgb(229,84,14)" fg:x="58036" fg:w="30"/><text x="26.0890%" y="847.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="25.8390%" y="821" width="0.0134%" height="15" fill="rgb(229,68,14)" fg:x="58036" fg:w="30"/><text x="26.0890%" y="831.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="25.8390%" y="805" width="0.0134%" height="15" fill="rgb(243,106,26)" fg:x="58036" fg:w="30"/><text x="26.0890%" y="815.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="25.8390%" y="789" width="0.0134%" height="15" fill="rgb(206,45,38)" fg:x="58036" fg:w="30"/><text x="26.0890%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="25.8390%" y="773" width="0.0134%" height="15" fill="rgb(226,6,15)" fg:x="58036" fg:w="30"/><text x="26.0890%" y="783.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="25.8390%" y="757" width="0.0134%" height="15" fill="rgb(232,22,54)" fg:x="58036" fg:w="30"/><text x="26.0890%" y="767.50"></text></g><g><title>Parse::do_call (45 samples, 0.02%)</title><rect x="25.8390%" y="853" width="0.0200%" height="15" fill="rgb(229,222,32)" fg:x="58036" fg:w="45"/><text x="26.0890%" y="863.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.01%)</title><rect x="25.8595%" y="709" width="0.0111%" height="15" fill="rgb(228,62,29)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="719.50"></text></g><g><title>Parse::Parse (25 samples, 0.01%)</title><rect x="25.8595%" y="693" width="0.0111%" height="15" fill="rgb(251,103,34)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="703.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.01%)</title><rect x="25.8595%" y="677" width="0.0111%" height="15" fill="rgb(233,12,30)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="687.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.01%)</title><rect x="25.8595%" y="661" width="0.0111%" height="15" fill="rgb(238,52,0)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.01%)</title><rect x="25.8595%" y="645" width="0.0111%" height="15" fill="rgb(223,98,5)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="655.50"></text></g><g><title>Parse::do_call (25 samples, 0.01%)</title><rect x="25.8595%" y="629" width="0.0111%" height="15" fill="rgb(228,75,37)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="639.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.01%)</title><rect x="25.8595%" y="613" width="0.0111%" height="15" fill="rgb(205,115,49)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="623.50"></text></g><g><title>Parse::Parse (25 samples, 0.01%)</title><rect x="25.8595%" y="597" width="0.0111%" height="15" fill="rgb(250,154,43)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="607.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.01%)</title><rect x="25.8595%" y="581" width="0.0111%" height="15" fill="rgb(226,43,29)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="591.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.01%)</title><rect x="25.8595%" y="565" width="0.0111%" height="15" fill="rgb(249,228,39)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.01%)</title><rect x="25.8595%" y="549" width="0.0111%" height="15" fill="rgb(216,79,43)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="559.50"></text></g><g><title>Parse::do_call (25 samples, 0.01%)</title><rect x="25.8595%" y="533" width="0.0111%" height="15" fill="rgb(228,95,12)" fg:x="58082" fg:w="25"/><text x="26.1095%" y="543.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.01%)</title><rect x="25.8595%" y="805" width="0.0125%" height="15" fill="rgb(249,221,15)" fg:x="58082" fg:w="28"/><text x="26.1095%" y="815.50"></text></g><g><title>Parse::Parse (28 samples, 0.01%)</title><rect x="25.8595%" y="789" width="0.0125%" height="15" fill="rgb(233,34,13)" fg:x="58082" fg:w="28"/><text x="26.1095%" y="799.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.01%)</title><rect x="25.8595%" y="773" width="0.0125%" height="15" fill="rgb(214,103,39)" fg:x="58082" fg:w="28"/><text x="26.1095%" y="783.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.01%)</title><rect x="25.8595%" y="757" width="0.0125%" height="15" fill="rgb(251,126,39)" fg:x="58082" fg:w="28"/><text x="26.1095%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.01%)</title><rect x="25.8595%" y="741" width="0.0125%" height="15" fill="rgb(214,216,36)" fg:x="58082" fg:w="28"/><text x="26.1095%" y="751.50"></text></g><g><title>Parse::do_call (28 samples, 0.01%)</title><rect x="25.8595%" y="725" width="0.0125%" height="15" fill="rgb(220,221,8)" fg:x="58082" fg:w="28"/><text x="26.1095%" y="735.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="25.8591%" y="853" width="0.0142%" height="15" fill="rgb(240,216,3)" fg:x="58081" fg:w="32"/><text x="26.1091%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.01%)</title><rect x="25.8595%" y="837" width="0.0138%" height="15" fill="rgb(232,218,17)" fg:x="58082" fg:w="31"/><text x="26.1095%" y="847.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="25.8595%" y="821" width="0.0138%" height="15" fill="rgb(229,163,45)" fg:x="58082" fg:w="31"/><text x="26.1095%" y="831.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.01%)</title><rect x="25.8733%" y="629" width="0.0111%" height="15" fill="rgb(231,110,42)" fg:x="58113" fg:w="25"/><text x="26.1233%" y="639.50"></text></g><g><title>Parse::Parse (25 samples, 0.01%)</title><rect x="25.8733%" y="613" width="0.0111%" height="15" fill="rgb(208,170,48)" fg:x="58113" fg:w="25"/><text x="26.1233%" y="623.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.01%)</title><rect x="25.8733%" y="597" width="0.0111%" height="15" fill="rgb(239,116,25)" fg:x="58113" fg:w="25"/><text x="26.1233%" y="607.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.01%)</title><rect x="25.8733%" y="581" width="0.0111%" height="15" fill="rgb(219,200,50)" fg:x="58113" fg:w="25"/><text x="26.1233%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.01%)</title><rect x="25.8733%" y="565" width="0.0111%" height="15" fill="rgb(245,200,0)" fg:x="58113" fg:w="25"/><text x="26.1233%" y="575.50"></text></g><g><title>Parse::do_call (25 samples, 0.01%)</title><rect x="25.8733%" y="549" width="0.0111%" height="15" fill="rgb(245,119,33)" fg:x="58113" fg:w="25"/><text x="26.1233%" y="559.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="25.8733%" y="725" width="0.0120%" height="15" fill="rgb(231,125,12)" fg:x="58113" fg:w="27"/><text x="26.1233%" y="735.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="25.8733%" y="709" width="0.0120%" height="15" fill="rgb(216,96,41)" fg:x="58113" fg:w="27"/><text x="26.1233%" y="719.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.01%)</title><rect x="25.8733%" y="693" width="0.0120%" height="15" fill="rgb(248,43,45)" fg:x="58113" fg:w="27"/><text x="26.1233%" y="703.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.01%)</title><rect x="25.8733%" y="677" width="0.0120%" height="15" fill="rgb(217,222,7)" fg:x="58113" fg:w="27"/><text x="26.1233%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.01%)</title><rect x="25.8733%" y="661" width="0.0120%" height="15" fill="rgb(233,28,6)" fg:x="58113" fg:w="27"/><text x="26.1233%" y="671.50"></text></g><g><title>Parse::do_call (27 samples, 0.01%)</title><rect x="25.8733%" y="645" width="0.0120%" height="15" fill="rgb(231,218,15)" fg:x="58113" fg:w="27"/><text x="26.1233%" y="655.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.01%)</title><rect x="25.8733%" y="821" width="0.0125%" height="15" fill="rgb(226,171,48)" fg:x="58113" fg:w="28"/><text x="26.1233%" y="831.50"></text></g><g><title>Parse::Parse (28 samples, 0.01%)</title><rect x="25.8733%" y="805" width="0.0125%" height="15" fill="rgb(235,201,9)" fg:x="58113" fg:w="28"/><text x="26.1233%" y="815.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.01%)</title><rect x="25.8733%" y="789" width="0.0125%" height="15" fill="rgb(217,80,15)" fg:x="58113" fg:w="28"/><text x="26.1233%" y="799.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.01%)</title><rect x="25.8733%" y="773" width="0.0125%" height="15" fill="rgb(219,152,8)" fg:x="58113" fg:w="28"/><text x="26.1233%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.01%)</title><rect x="25.8733%" y="757" width="0.0125%" height="15" fill="rgb(243,107,38)" fg:x="58113" fg:w="28"/><text x="26.1233%" y="767.50"></text></g><g><title>Parse::do_call (28 samples, 0.01%)</title><rect x="25.8733%" y="741" width="0.0125%" height="15" fill="rgb(231,17,5)" fg:x="58113" fg:w="28"/><text x="26.1233%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (31 samples, 0.01%)</title><rect x="25.8733%" y="853" width="0.0138%" height="15" fill="rgb(209,25,54)" fg:x="58113" fg:w="31"/><text x="26.1233%" y="863.50"></text></g><g><title>Parse::do_call (31 samples, 0.01%)</title><rect x="25.8733%" y="837" width="0.0138%" height="15" fill="rgb(219,0,2)" fg:x="58113" fg:w="31"/><text x="26.1233%" y="847.50"></text></g><g><title>Parse::do_call (33 samples, 0.01%)</title><rect x="25.8933%" y="101" width="0.0147%" height="15" fill="rgb(246,9,5)" fg:x="58158" fg:w="33"/><text x="26.1433%" y="111.50"></text></g><g><title>ParseGenerator::generate (45 samples, 0.02%)</title><rect x="25.8925%" y="181" width="0.0200%" height="15" fill="rgb(226,159,4)" fg:x="58156" fg:w="45"/><text x="26.1425%" y="191.50"></text></g><g><title>Parse::Parse (45 samples, 0.02%)</title><rect x="25.8925%" y="165" width="0.0200%" height="15" fill="rgb(219,175,34)" fg:x="58156" fg:w="45"/><text x="26.1425%" y="175.50"></text></g><g><title>Parse::do_all_blocks (45 samples, 0.02%)</title><rect x="25.8925%" y="149" width="0.0200%" height="15" fill="rgb(236,10,46)" fg:x="58156" fg:w="45"/><text x="26.1425%" y="159.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.02%)</title><rect x="25.8925%" y="133" width="0.0200%" height="15" fill="rgb(240,211,16)" fg:x="58156" fg:w="45"/><text x="26.1425%" y="143.50"></text></g><g><title>Parse::do_one_bytecode (45 samples, 0.02%)</title><rect x="25.8925%" y="117" width="0.0200%" height="15" fill="rgb(205,3,43)" fg:x="58156" fg:w="45"/><text x="26.1425%" y="127.50"></text></g><g><title>Parse::do_call (52 samples, 0.02%)</title><rect x="25.8898%" y="197" width="0.0232%" height="15" fill="rgb(245,7,22)" fg:x="58150" fg:w="52"/><text x="26.1398%" y="207.50"></text></g><g><title>ParseGenerator::generate (54 samples, 0.02%)</title><rect x="25.8898%" y="277" width="0.0240%" height="15" fill="rgb(239,132,32)" fg:x="58150" fg:w="54"/><text x="26.1398%" y="287.50"></text></g><g><title>Parse::Parse (54 samples, 0.02%)</title><rect x="25.8898%" y="261" width="0.0240%" height="15" fill="rgb(228,202,34)" fg:x="58150" fg:w="54"/><text x="26.1398%" y="271.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.02%)</title><rect x="25.8898%" y="245" width="0.0240%" height="15" fill="rgb(254,200,22)" fg:x="58150" fg:w="54"/><text x="26.1398%" y="255.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.02%)</title><rect x="25.8898%" y="229" width="0.0240%" height="15" fill="rgb(219,10,39)" fg:x="58150" fg:w="54"/><text x="26.1398%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.02%)</title><rect x="25.8898%" y="213" width="0.0240%" height="15" fill="rgb(226,210,39)" fg:x="58150" fg:w="54"/><text x="26.1398%" y="223.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.03%)</title><rect x="25.8876%" y="373" width="0.0272%" height="15" fill="rgb(208,219,16)" fg:x="58145" fg:w="61"/><text x="26.1376%" y="383.50"></text></g><g><title>Parse::Parse (61 samples, 0.03%)</title><rect x="25.8876%" y="357" width="0.0272%" height="15" fill="rgb(216,158,51)" fg:x="58145" fg:w="61"/><text x="26.1376%" y="367.50"></text></g><g><title>Parse::do_all_blocks (61 samples, 0.03%)</title><rect x="25.8876%" y="341" width="0.0272%" height="15" fill="rgb(233,14,44)" fg:x="58145" fg:w="61"/><text x="26.1376%" y="351.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.03%)</title><rect x="25.8876%" y="325" width="0.0272%" height="15" fill="rgb(237,97,39)" fg:x="58145" fg:w="61"/><text x="26.1376%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.03%)</title><rect x="25.8876%" y="309" width="0.0272%" height="15" fill="rgb(218,198,43)" fg:x="58145" fg:w="61"/><text x="26.1376%" y="319.50"></text></g><g><title>Parse::do_call (61 samples, 0.03%)</title><rect x="25.8876%" y="293" width="0.0272%" height="15" fill="rgb(231,104,20)" fg:x="58145" fg:w="61"/><text x="26.1376%" y="303.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.03%)</title><rect x="25.8871%" y="469" width="0.0289%" height="15" fill="rgb(254,36,13)" fg:x="58144" fg:w="65"/><text x="26.1371%" y="479.50"></text></g><g><title>Parse::Parse (65 samples, 0.03%)</title><rect x="25.8871%" y="453" width="0.0289%" height="15" fill="rgb(248,14,50)" fg:x="58144" fg:w="65"/><text x="26.1371%" y="463.50"></text></g><g><title>Parse::do_all_blocks (65 samples, 0.03%)</title><rect x="25.8871%" y="437" width="0.0289%" height="15" fill="rgb(217,107,29)" fg:x="58144" fg:w="65"/><text x="26.1371%" y="447.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.03%)</title><rect x="25.8871%" y="421" width="0.0289%" height="15" fill="rgb(251,169,33)" fg:x="58144" fg:w="65"/><text x="26.1371%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.03%)</title><rect x="25.8871%" y="405" width="0.0289%" height="15" fill="rgb(217,108,32)" fg:x="58144" fg:w="65"/><text x="26.1371%" y="415.50"></text></g><g><title>Parse::do_call (65 samples, 0.03%)</title><rect x="25.8871%" y="389" width="0.0289%" height="15" fill="rgb(219,66,42)" fg:x="58144" fg:w="65"/><text x="26.1371%" y="399.50"></text></g><g><title>ParseGenerator::generate (75 samples, 0.03%)</title><rect x="25.8871%" y="565" width="0.0334%" height="15" fill="rgb(206,180,7)" fg:x="58144" fg:w="75"/><text x="26.1371%" y="575.50"></text></g><g><title>Parse::Parse (75 samples, 0.03%)</title><rect x="25.8871%" y="549" width="0.0334%" height="15" fill="rgb(208,226,31)" fg:x="58144" fg:w="75"/><text x="26.1371%" y="559.50"></text></g><g><title>Parse::do_all_blocks (75 samples, 0.03%)</title><rect x="25.8871%" y="533" width="0.0334%" height="15" fill="rgb(218,26,49)" fg:x="58144" fg:w="75"/><text x="26.1371%" y="543.50"></text></g><g><title>Parse::do_one_block (75 samples, 0.03%)</title><rect x="25.8871%" y="517" width="0.0334%" height="15" fill="rgb(233,197,48)" fg:x="58144" fg:w="75"/><text x="26.1371%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (75 samples, 0.03%)</title><rect x="25.8871%" y="501" width="0.0334%" height="15" fill="rgb(252,181,51)" fg:x="58144" fg:w="75"/><text x="26.1371%" y="511.50"></text></g><g><title>Parse::do_call (75 samples, 0.03%)</title><rect x="25.8871%" y="485" width="0.0334%" height="15" fill="rgb(253,90,19)" fg:x="58144" fg:w="75"/><text x="26.1371%" y="495.50"></text></g><g><title>ParseGenerator::generate (84 samples, 0.04%)</title><rect x="25.8871%" y="661" width="0.0374%" height="15" fill="rgb(215,171,30)" fg:x="58144" fg:w="84"/><text x="26.1371%" y="671.50"></text></g><g><title>Parse::Parse (84 samples, 0.04%)</title><rect x="25.8871%" y="645" width="0.0374%" height="15" fill="rgb(214,222,9)" fg:x="58144" fg:w="84"/><text x="26.1371%" y="655.50"></text></g><g><title>Parse::do_all_blocks (84 samples, 0.04%)</title><rect x="25.8871%" y="629" width="0.0374%" height="15" fill="rgb(223,3,22)" fg:x="58144" fg:w="84"/><text x="26.1371%" y="639.50"></text></g><g><title>Parse::do_one_block (84 samples, 0.04%)</title><rect x="25.8871%" y="613" width="0.0374%" height="15" fill="rgb(225,196,46)" fg:x="58144" fg:w="84"/><text x="26.1371%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (84 samples, 0.04%)</title><rect x="25.8871%" y="597" width="0.0374%" height="15" fill="rgb(209,110,37)" fg:x="58144" fg:w="84"/><text x="26.1371%" y="607.50"></text></g><g><title>Parse::do_call (84 samples, 0.04%)</title><rect x="25.8871%" y="581" width="0.0374%" height="15" fill="rgb(249,89,12)" fg:x="58144" fg:w="84"/><text x="26.1371%" y="591.50"></text></g><g><title>ParseGenerator::generate (101 samples, 0.04%)</title><rect x="25.8871%" y="757" width="0.0450%" height="15" fill="rgb(226,27,33)" fg:x="58144" fg:w="101"/><text x="26.1371%" y="767.50"></text></g><g><title>Parse::Parse (101 samples, 0.04%)</title><rect x="25.8871%" y="741" width="0.0450%" height="15" fill="rgb(213,82,22)" fg:x="58144" fg:w="101"/><text x="26.1371%" y="751.50"></text></g><g><title>Parse::do_all_blocks (101 samples, 0.04%)</title><rect x="25.8871%" y="725" width="0.0450%" height="15" fill="rgb(248,140,0)" fg:x="58144" fg:w="101"/><text x="26.1371%" y="735.50"></text></g><g><title>Parse::do_one_block (101 samples, 0.04%)</title><rect x="25.8871%" y="709" width="0.0450%" height="15" fill="rgb(228,106,3)" fg:x="58144" fg:w="101"/><text x="26.1371%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (101 samples, 0.04%)</title><rect x="25.8871%" y="693" width="0.0450%" height="15" fill="rgb(209,23,37)" fg:x="58144" fg:w="101"/><text x="26.1371%" y="703.50"></text></g><g><title>Parse::do_call (101 samples, 0.04%)</title><rect x="25.8871%" y="677" width="0.0450%" height="15" fill="rgb(241,93,50)" fg:x="58144" fg:w="101"/><text x="26.1371%" y="687.50"></text></g><g><title>ParseGenerator::generate (25 samples, 0.01%)</title><rect x="25.9321%" y="741" width="0.0111%" height="15" fill="rgb(253,46,43)" fg:x="58245" fg:w="25"/><text x="26.1821%" y="751.50"></text></g><g><title>Parse::Parse (25 samples, 0.01%)</title><rect x="25.9321%" y="725" width="0.0111%" height="15" fill="rgb(226,206,43)" fg:x="58245" fg:w="25"/><text x="26.1821%" y="735.50"></text></g><g><title>Parse::do_all_blocks (25 samples, 0.01%)</title><rect x="25.9321%" y="709" width="0.0111%" height="15" fill="rgb(217,54,7)" fg:x="58245" fg:w="25"/><text x="26.1821%" y="719.50"></text></g><g><title>Parse::do_one_block (25 samples, 0.01%)</title><rect x="25.9321%" y="693" width="0.0111%" height="15" fill="rgb(223,5,52)" fg:x="58245" fg:w="25"/><text x="26.1821%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (25 samples, 0.01%)</title><rect x="25.9321%" y="677" width="0.0111%" height="15" fill="rgb(206,52,46)" fg:x="58245" fg:w="25"/><text x="26.1821%" y="687.50"></text></g><g><title>Parse::do_call (25 samples, 0.01%)</title><rect x="25.9321%" y="661" width="0.0111%" height="15" fill="rgb(253,136,11)" fg:x="58245" fg:w="25"/><text x="26.1821%" y="671.50"></text></g><g><title>ParseGenerator::generate (131 samples, 0.06%)</title><rect x="25.8871%" y="853" width="0.0583%" height="15" fill="rgb(208,106,33)" fg:x="58144" fg:w="131"/><text x="26.1371%" y="863.50"></text></g><g><title>Parse::Parse (131 samples, 0.06%)</title><rect x="25.8871%" y="837" width="0.0583%" height="15" fill="rgb(206,54,4)" fg:x="58144" fg:w="131"/><text x="26.1371%" y="847.50"></text></g><g><title>Parse::do_all_blocks (131 samples, 0.06%)</title><rect x="25.8871%" y="821" width="0.0583%" height="15" fill="rgb(213,3,15)" fg:x="58144" fg:w="131"/><text x="26.1371%" y="831.50"></text></g><g><title>Parse::do_one_block (131 samples, 0.06%)</title><rect x="25.8871%" y="805" width="0.0583%" height="15" fill="rgb(252,211,39)" fg:x="58144" fg:w="131"/><text x="26.1371%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (131 samples, 0.06%)</title><rect x="25.8871%" y="789" width="0.0583%" height="15" fill="rgb(223,6,36)" fg:x="58144" fg:w="131"/><text x="26.1371%" y="799.50"></text></g><g><title>Parse::do_call (131 samples, 0.06%)</title><rect x="25.8871%" y="773" width="0.0583%" height="15" fill="rgb(252,169,45)" fg:x="58144" fg:w="131"/><text x="26.1371%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (30 samples, 0.01%)</title><rect x="25.9321%" y="757" width="0.0134%" height="15" fill="rgb(212,48,26)" fg:x="58245" fg:w="30"/><text x="26.1821%" y="767.50"></text></g><g><title>ParseGenerator::generate (32 samples, 0.01%)</title><rect x="25.9659%" y="757" width="0.0142%" height="15" fill="rgb(251,102,48)" fg:x="58321" fg:w="32"/><text x="26.2159%" y="767.50"></text></g><g><title>Parse::Parse (32 samples, 0.01%)</title><rect x="25.9659%" y="741" width="0.0142%" height="15" fill="rgb(243,208,16)" fg:x="58321" fg:w="32"/><text x="26.2159%" y="751.50"></text></g><g><title>Thread::call_run (53 samples, 0.02%)</title><rect x="25.9624%" y="853" width="0.0236%" height="15" fill="rgb(219,96,24)" fg:x="58313" fg:w="53"/><text x="26.2124%" y="863.50"></text></g><g><title>JavaThread::thread_main_inner (53 samples, 0.02%)</title><rect x="25.9624%" y="837" width="0.0236%" height="15" fill="rgb(219,33,29)" fg:x="58313" fg:w="53"/><text x="26.2124%" y="847.50"></text></g><g><title>CompileBroker::compiler_thread_loop (53 samples, 0.02%)</title><rect x="25.9624%" y="821" width="0.0236%" height="15" fill="rgb(223,176,5)" fg:x="58313" fg:w="53"/><text x="26.2124%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (53 samples, 0.02%)</title><rect x="25.9624%" y="805" width="0.0236%" height="15" fill="rgb(228,140,14)" fg:x="58313" fg:w="53"/><text x="26.2124%" y="815.50"></text></g><g><title>C2Compiler::compile_method (53 samples, 0.02%)</title><rect x="25.9624%" y="789" width="0.0236%" height="15" fill="rgb(217,179,31)" fg:x="58313" fg:w="53"/><text x="26.2124%" y="799.50"></text></g><g><title>Compile::Compile (53 samples, 0.02%)</title><rect x="25.9624%" y="773" width="0.0236%" height="15" fill="rgb(230,9,30)" fg:x="58313" fg:w="53"/><text x="26.2124%" y="783.50"></text></g><g><title>_dl_update_slotinfo (32 samples, 0.01%)</title><rect x="25.9922%" y="853" width="0.0142%" height="15" fill="rgb(230,136,20)" fg:x="58380" fg:w="32"/><text x="26.2422%" y="863.50"></text></g><g><title>start_thread (59 samples, 0.03%)</title><rect x="26.0104%" y="853" width="0.0263%" height="15" fill="rgb(215,210,22)" fg:x="58421" fg:w="59"/><text x="26.2604%" y="863.50"></text></g><g><title>thread_native_entry (59 samples, 0.03%)</title><rect x="26.0104%" y="837" width="0.0263%" height="15" fill="rgb(218,43,5)" fg:x="58421" fg:w="59"/><text x="26.2604%" y="847.50"></text></g><g><title>Thread::call_run (59 samples, 0.03%)</title><rect x="26.0104%" y="821" width="0.0263%" height="15" fill="rgb(216,11,5)" fg:x="58421" fg:w="59"/><text x="26.2604%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (59 samples, 0.03%)</title><rect x="26.0104%" y="805" width="0.0263%" height="15" fill="rgb(209,82,29)" fg:x="58421" fg:w="59"/><text x="26.2604%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (59 samples, 0.03%)</title><rect x="26.0104%" y="789" width="0.0263%" height="15" fill="rgb(244,115,12)" fg:x="58421" fg:w="59"/><text x="26.2604%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (59 samples, 0.03%)</title><rect x="26.0104%" y="773" width="0.0263%" height="15" fill="rgb(222,82,18)" fg:x="58421" fg:w="59"/><text x="26.2604%" y="783.50"></text></g><g><title>C2Compiler::compile_method (59 samples, 0.03%)</title><rect x="26.0104%" y="757" width="0.0263%" height="15" fill="rgb(249,227,8)" fg:x="58421" fg:w="59"/><text x="26.2604%" y="767.50"></text></g><g><title>Compile::Compile (59 samples, 0.03%)</title><rect x="26.0104%" y="741" width="0.0263%" height="15" fill="rgb(253,141,45)" fg:x="58421" fg:w="59"/><text x="26.2604%" y="751.50"></text></g><g><title>[unknown] (45,010 samples, 20.04%)</title><rect x="6.0061%" y="869" width="20.0395%" height="15" fill="rgb(234,184,4)" fg:x="13490" fg:w="45010"/><text x="6.2561%" y="879.50">[unknown]</text></g><g><title>Compile::inline_string_calls (23 samples, 0.01%)</title><rect x="26.0754%" y="725" width="0.0102%" height="15" fill="rgb(218,194,23)" fg:x="58567" fg:w="23"/><text x="26.3254%" y="735.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (23 samples, 0.01%)</title><rect x="26.0754%" y="709" width="0.0102%" height="15" fill="rgb(235,66,41)" fg:x="58567" fg:w="23"/><text x="26.3254%" y="719.50"></text></g><g><title>Dict::Insert (49 samples, 0.02%)</title><rect x="26.0888%" y="693" width="0.0218%" height="15" fill="rgb(245,217,1)" fg:x="58597" fg:w="49"/><text x="26.3388%" y="703.50"></text></g><g><title>CompileWrapper::CompileWrapper (56 samples, 0.02%)</title><rect x="26.0879%" y="725" width="0.0249%" height="15" fill="rgb(229,91,1)" fg:x="58595" fg:w="56"/><text x="26.3379%" y="735.50"></text></g><g><title>Type::Initialize (55 samples, 0.02%)</title><rect x="26.0884%" y="709" width="0.0245%" height="15" fill="rgb(207,101,30)" fg:x="58596" fg:w="55"/><text x="26.3384%" y="719.50"></text></g><g><title>Compile::identify_useful_nodes (131 samples, 0.06%)</title><rect x="26.1280%" y="709" width="0.0583%" height="15" fill="rgb(223,82,49)" fg:x="58685" fg:w="131"/><text x="26.3780%" y="719.50"></text></g><g><title>Compile::remove_useless_nodes (130 samples, 0.06%)</title><rect x="26.1863%" y="709" width="0.0579%" height="15" fill="rgb(218,167,17)" fg:x="58816" fg:w="130"/><text x="26.4363%" y="719.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (324 samples, 0.14%)</title><rect x="26.1133%" y="725" width="0.1443%" height="15" fill="rgb(208,103,14)" fg:x="58652" fg:w="324"/><text x="26.3633%" y="735.50"></text></g><g><title>C2Compiler::compile_method (509 samples, 0.23%)</title><rect x="26.0541%" y="757" width="0.2266%" height="15" fill="rgb(238,20,8)" fg:x="58519" fg:w="509"/><text x="26.3041%" y="767.50"></text></g><g><title>Compile::Compile (497 samples, 0.22%)</title><rect x="26.0594%" y="741" width="0.2213%" height="15" fill="rgb(218,80,54)" fg:x="58531" fg:w="497"/><text x="26.3094%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (619 samples, 0.28%)</title><rect x="26.0505%" y="773" width="0.2756%" height="15" fill="rgb(240,144,17)" fg:x="58511" fg:w="619"/><text x="26.3005%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.03%)</title><rect x="26.3604%" y="517" width="0.0254%" height="15" fill="rgb(245,27,50)" fg:x="59207" fg:w="57"/><text x="26.6104%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.03%)</title><rect x="26.3604%" y="501" width="0.0254%" height="15" fill="rgb(251,51,7)" fg:x="59207" fg:w="57"/><text x="26.6104%" y="511.50"></text></g><g><title>native_write_msr (55 samples, 0.02%)</title><rect x="26.3613%" y="485" width="0.0245%" height="15" fill="rgb(245,217,29)" fg:x="59209" fg:w="55"/><text x="26.6113%" y="495.50"></text></g><g><title>finish_task_switch (61 samples, 0.03%)</title><rect x="26.3599%" y="533" width="0.0272%" height="15" fill="rgb(221,176,29)" fg:x="59206" fg:w="61"/><text x="26.6099%" y="543.50"></text></g><g><title>futex_wait_queue_me (93 samples, 0.04%)</title><rect x="26.3506%" y="581" width="0.0414%" height="15" fill="rgb(212,180,24)" fg:x="59185" fg:w="93"/><text x="26.6006%" y="591.50"></text></g><g><title>schedule (88 samples, 0.04%)</title><rect x="26.3528%" y="565" width="0.0392%" height="15" fill="rgb(254,24,2)" fg:x="59190" fg:w="88"/><text x="26.6028%" y="575.50"></text></g><g><title>__schedule (88 samples, 0.04%)</title><rect x="26.3528%" y="549" width="0.0392%" height="15" fill="rgb(230,100,2)" fg:x="59190" fg:w="88"/><text x="26.6028%" y="559.50"></text></g><g><title>do_syscall_64 (104 samples, 0.05%)</title><rect x="26.3493%" y="645" width="0.0463%" height="15" fill="rgb(219,142,25)" fg:x="59182" fg:w="104"/><text x="26.5993%" y="655.50"></text></g><g><title>__x64_sys_futex (104 samples, 0.05%)</title><rect x="26.3493%" y="629" width="0.0463%" height="15" fill="rgb(240,73,43)" fg:x="59182" fg:w="104"/><text x="26.5993%" y="639.50"></text></g><g><title>do_futex (102 samples, 0.05%)</title><rect x="26.3501%" y="613" width="0.0454%" height="15" fill="rgb(214,114,15)" fg:x="59184" fg:w="102"/><text x="26.6001%" y="623.50"></text></g><g><title>futex_wait (101 samples, 0.04%)</title><rect x="26.3506%" y="597" width="0.0450%" height="15" fill="rgb(207,130,4)" fg:x="59185" fg:w="101"/><text x="26.6006%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (116 samples, 0.05%)</title><rect x="26.3457%" y="709" width="0.0516%" height="15" fill="rgb(221,25,40)" fg:x="59174" fg:w="116"/><text x="26.5957%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (116 samples, 0.05%)</title><rect x="26.3457%" y="693" width="0.0516%" height="15" fill="rgb(241,184,7)" fg:x="59174" fg:w="116"/><text x="26.5957%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (114 samples, 0.05%)</title><rect x="26.3466%" y="677" width="0.0508%" height="15" fill="rgb(235,159,4)" fg:x="59176" fg:w="114"/><text x="26.5966%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (108 samples, 0.05%)</title><rect x="26.3493%" y="661" width="0.0481%" height="15" fill="rgb(214,87,48)" fg:x="59182" fg:w="108"/><text x="26.5993%" y="671.50"></text></g><g><title>Monitor::wait (160 samples, 0.07%)</title><rect x="26.3328%" y="757" width="0.0712%" height="15" fill="rgb(246,198,24)" fg:x="59145" fg:w="160"/><text x="26.5828%" y="767.50"></text></g><g><title>Monitor::IWait (155 samples, 0.07%)</title><rect x="26.3350%" y="741" width="0.0690%" height="15" fill="rgb(209,66,40)" fg:x="59150" fg:w="155"/><text x="26.5850%" y="751.50"></text></g><g><title>os::PlatformEvent::park (132 samples, 0.06%)</title><rect x="26.3452%" y="725" width="0.0588%" height="15" fill="rgb(233,147,39)" fg:x="59173" fg:w="132"/><text x="26.5952%" y="735.50"></text></g><g><title>CompileQueue::get (188 samples, 0.08%)</title><rect x="26.3301%" y="773" width="0.0837%" height="15" fill="rgb(231,145,52)" fg:x="59139" fg:w="188"/><text x="26.5801%" y="783.50"></text></g><g><title>Thread::call_run (820 samples, 0.37%)</title><rect x="26.0501%" y="821" width="0.3651%" height="15" fill="rgb(206,20,26)" fg:x="58510" fg:w="820"/><text x="26.3001%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (820 samples, 0.37%)</title><rect x="26.0501%" y="805" width="0.3651%" height="15" fill="rgb(238,220,4)" fg:x="58510" fg:w="820"/><text x="26.3001%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (820 samples, 0.37%)</title><rect x="26.0501%" y="789" width="0.3651%" height="15" fill="rgb(252,195,42)" fg:x="58510" fg:w="820"/><text x="26.3001%" y="799.50"></text></g><g><title>__GI___clone (828 samples, 0.37%)</title><rect x="26.0469%" y="869" width="0.3686%" height="15" fill="rgb(209,10,6)" fg:x="58503" fg:w="828"/><text x="26.2969%" y="879.50"></text></g><g><title>start_thread (821 samples, 0.37%)</title><rect x="26.0501%" y="853" width="0.3655%" height="15" fill="rgb(229,3,52)" fg:x="58510" fg:w="821"/><text x="26.3001%" y="863.50"></text></g><g><title>thread_native_entry (821 samples, 0.37%)</title><rect x="26.0501%" y="837" width="0.3655%" height="15" fill="rgb(253,49,37)" fg:x="58510" fg:w="821"/><text x="26.3001%" y="847.50"></text></g><g><title>asm_exc_page_fault (28 samples, 0.01%)</title><rect x="26.4218%" y="869" width="0.0125%" height="15" fill="rgb(240,103,49)" fg:x="59345" fg:w="28"/><text x="26.6718%" y="879.50"></text></g><g><title>C2_CompilerThre (48,658 samples, 21.66%)</title><rect x="4.7879%" y="885" width="21.6637%" height="15" fill="rgb(250,182,30)" fg:x="10754" fg:w="48658"/><text x="5.0379%" y="895.50">C2_CompilerThre</text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="26.4877%" y="629" width="0.0111%" height="15" fill="rgb(248,8,30)" fg:x="59493" fg:w="25"/><text x="26.7377%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="26.4877%" y="613" width="0.0111%" height="15" fill="rgb(237,120,30)" fg:x="59493" fg:w="25"/><text x="26.7377%" y="623.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="26.4877%" y="597" width="0.0111%" height="15" fill="rgb(221,146,34)" fg:x="59493" fg:w="25"/><text x="26.7377%" y="607.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="26.4877%" y="645" width="0.0120%" height="15" fill="rgb(242,55,13)" fg:x="59493" fg:w="27"/><text x="26.7377%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="26.4868%" y="773" width="0.0138%" height="15" fill="rgb(242,112,31)" fg:x="59491" fg:w="31"/><text x="26.7368%" y="783.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="26.4868%" y="757" width="0.0138%" height="15" fill="rgb(249,192,27)" fg:x="59491" fg:w="31"/><text x="26.7368%" y="767.50"></text></g><g><title>__x64_sys_futex (31 samples, 0.01%)</title><rect x="26.4868%" y="741" width="0.0138%" height="15" fill="rgb(208,204,44)" fg:x="59491" fg:w="31"/><text x="26.7368%" y="751.50"></text></g><g><title>do_futex (31 samples, 0.01%)</title><rect x="26.4868%" y="725" width="0.0138%" height="15" fill="rgb(208,93,54)" fg:x="59491" fg:w="31"/><text x="26.7368%" y="735.50"></text></g><g><title>futex_wait (31 samples, 0.01%)</title><rect x="26.4868%" y="709" width="0.0138%" height="15" fill="rgb(242,1,31)" fg:x="59491" fg:w="31"/><text x="26.7368%" y="719.50"></text></g><g><title>futex_wait_queue_me (30 samples, 0.01%)</title><rect x="26.4873%" y="693" width="0.0134%" height="15" fill="rgb(241,83,25)" fg:x="59492" fg:w="30"/><text x="26.7373%" y="703.50"></text></g><g><title>schedule (29 samples, 0.01%)</title><rect x="26.4877%" y="677" width="0.0129%" height="15" fill="rgb(205,169,50)" fg:x="59493" fg:w="29"/><text x="26.7377%" y="687.50"></text></g><g><title>__schedule (29 samples, 0.01%)</title><rect x="26.4877%" y="661" width="0.0129%" height="15" fill="rgb(239,186,37)" fg:x="59493" fg:w="29"/><text x="26.7377%" y="671.50"></text></g><g><title>__pthread_cond_timedwait (34 samples, 0.02%)</title><rect x="26.4859%" y="821" width="0.0151%" height="15" fill="rgb(205,221,10)" fg:x="59489" fg:w="34"/><text x="26.7359%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (34 samples, 0.02%)</title><rect x="26.4859%" y="805" width="0.0151%" height="15" fill="rgb(218,196,15)" fg:x="59489" fg:w="34"/><text x="26.7359%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (32 samples, 0.01%)</title><rect x="26.4868%" y="789" width="0.0142%" height="15" fill="rgb(218,196,35)" fg:x="59491" fg:w="32"/><text x="26.7368%" y="799.50"></text></g><g><title>Parker::park (36 samples, 0.02%)</title><rect x="26.4855%" y="837" width="0.0160%" height="15" fill="rgb(233,63,24)" fg:x="59488" fg:w="36"/><text x="26.7355%" y="847.50"></text></g><g><title>Unsafe_Park (37 samples, 0.02%)</title><rect x="26.4855%" y="853" width="0.0165%" height="15" fill="rgb(225,8,4)" fg:x="59488" fg:w="37"/><text x="26.7355%" y="863.50"></text></g><g><title>[perf-501242.map] (114 samples, 0.05%)</title><rect x="26.4534%" y="869" width="0.0508%" height="15" fill="rgb(234,105,35)" fg:x="59416" fg:w="114"/><text x="26.7034%" y="879.50"></text></g><g><title>Command-Accumul (140 samples, 0.06%)</title><rect x="26.4517%" y="885" width="0.0623%" height="15" fill="rgb(236,21,32)" fg:x="59412" fg:w="140"/><text x="26.7017%" y="895.50"></text></g><g><title>[anon] (35 samples, 0.02%)</title><rect x="26.5287%" y="869" width="0.0156%" height="15" fill="rgb(228,109,6)" fg:x="59585" fg:w="35"/><text x="26.7787%" y="879.50"></text></g><g><title>__condvar_dec_grefs (23 samples, 0.01%)</title><rect x="27.2522%" y="789" width="0.0102%" height="15" fill="rgb(229,215,31)" fg:x="61210" fg:w="23"/><text x="27.5022%" y="799.50"></text></g><g><title>hrtimer_start_range_ns (26 samples, 0.01%)</title><rect x="27.3189%" y="677" width="0.0116%" height="15" fill="rgb(221,52,54)" fg:x="61360" fg:w="26"/><text x="27.5689%" y="687.50"></text></g><g><title>update_curr (55 samples, 0.02%)</title><rect x="27.3920%" y="613" width="0.0245%" height="15" fill="rgb(252,129,43)" fg:x="61524" fg:w="55"/><text x="27.6420%" y="623.50"></text></g><g><title>dequeue_entity (117 samples, 0.05%)</title><rect x="27.3724%" y="629" width="0.0521%" height="15" fill="rgb(248,183,27)" fg:x="61480" fg:w="117"/><text x="27.6224%" y="639.50"></text></g><g><title>dequeue_task_fair (140 samples, 0.06%)</title><rect x="27.3639%" y="645" width="0.0623%" height="15" fill="rgb(250,0,22)" fg:x="61461" fg:w="140"/><text x="27.6139%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.02%)</title><rect x="27.4316%" y="629" width="0.0236%" height="15" fill="rgb(213,166,10)" fg:x="61613" fg:w="53"/><text x="27.6816%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.02%)</title><rect x="27.4329%" y="613" width="0.0223%" height="15" fill="rgb(207,163,36)" fg:x="61616" fg:w="50"/><text x="27.6829%" y="623.50"></text></g><g><title>native_write_msr (49 samples, 0.02%)</title><rect x="27.4334%" y="597" width="0.0218%" height="15" fill="rgb(208,122,22)" fg:x="61617" fg:w="49"/><text x="27.6834%" y="607.50"></text></g><g><title>finish_task_switch (66 samples, 0.03%)</title><rect x="27.4262%" y="645" width="0.0294%" height="15" fill="rgb(207,104,49)" fg:x="61601" fg:w="66"/><text x="27.6762%" y="655.50"></text></g><g><title>psi_task_change (92 samples, 0.04%)</title><rect x="27.4685%" y="645" width="0.0410%" height="15" fill="rgb(248,211,50)" fg:x="61696" fg:w="92"/><text x="27.7185%" y="655.50"></text></g><g><title>psi_group_change (71 samples, 0.03%)</title><rect x="27.4779%" y="629" width="0.0316%" height="15" fill="rgb(217,13,45)" fg:x="61717" fg:w="71"/><text x="27.7279%" y="639.50"></text></g><g><title>futex_wait_queue_me (477 samples, 0.21%)</title><rect x="27.3078%" y="693" width="0.2124%" height="15" fill="rgb(211,216,49)" fg:x="61335" fg:w="477"/><text x="27.5578%" y="703.50"></text></g><g><title>schedule (421 samples, 0.19%)</title><rect x="27.3328%" y="677" width="0.1874%" height="15" fill="rgb(221,58,53)" fg:x="61391" fg:w="421"/><text x="27.5828%" y="687.50"></text></g><g><title>__schedule (400 samples, 0.18%)</title><rect x="27.3421%" y="661" width="0.1781%" height="15" fill="rgb(220,112,41)" fg:x="61412" fg:w="400"/><text x="27.5921%" y="671.50"></text></g><g><title>futex_wait_setup (43 samples, 0.02%)</title><rect x="27.5202%" y="693" width="0.0191%" height="15" fill="rgb(236,38,28)" fg:x="61812" fg:w="43"/><text x="27.7702%" y="703.50"></text></g><g><title>do_futex (581 samples, 0.26%)</title><rect x="27.2962%" y="725" width="0.2587%" height="15" fill="rgb(227,195,22)" fg:x="61309" fg:w="581"/><text x="27.5462%" y="735.50"></text></g><g><title>futex_wait (573 samples, 0.26%)</title><rect x="27.2998%" y="709" width="0.2551%" height="15" fill="rgb(214,55,33)" fg:x="61317" fg:w="573"/><text x="27.5498%" y="719.50"></text></g><g><title>__x64_sys_futex (599 samples, 0.27%)</title><rect x="27.2940%" y="741" width="0.2667%" height="15" fill="rgb(248,80,13)" fg:x="61304" fg:w="599"/><text x="27.5440%" y="751.50"></text></g><g><title>do_syscall_64 (603 samples, 0.27%)</title><rect x="27.2927%" y="757" width="0.2685%" height="15" fill="rgb(238,52,6)" fg:x="61301" fg:w="603"/><text x="27.5427%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (630 samples, 0.28%)</title><rect x="27.2887%" y="773" width="0.2805%" height="15" fill="rgb(224,198,47)" fg:x="61292" fg:w="630"/><text x="27.5387%" y="783.50"></text></g><g><title>__pthread_cond_timedwait (740 samples, 0.33%)</title><rect x="27.2442%" y="821" width="0.3295%" height="15" fill="rgb(233,171,20)" fg:x="61192" fg:w="740"/><text x="27.4942%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (738 samples, 0.33%)</title><rect x="27.2450%" y="805" width="0.3286%" height="15" fill="rgb(241,30,25)" fg:x="61194" fg:w="738"/><text x="27.4950%" y="815.50"></text></g><g><title>futex_abstimed_wait_cancelable (679 samples, 0.30%)</title><rect x="27.2713%" y="789" width="0.3023%" height="15" fill="rgb(207,171,38)" fg:x="61253" fg:w="679"/><text x="27.5213%" y="799.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="27.5750%" y="757" width="0.0102%" height="15" fill="rgb(234,70,1)" fg:x="61935" fg:w="23"/><text x="27.8250%" y="767.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.01%)</title><rect x="27.5750%" y="741" width="0.0102%" height="15" fill="rgb(232,178,18)" fg:x="61935" fg:w="23"/><text x="27.8250%" y="751.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.01%)</title><rect x="27.5736%" y="821" width="0.0120%" height="15" fill="rgb(241,78,40)" fg:x="61932" fg:w="27"/><text x="27.8236%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.01%)</title><rect x="27.5736%" y="805" width="0.0120%" height="15" fill="rgb(222,35,25)" fg:x="61932" fg:w="27"/><text x="27.8236%" y="815.50"></text></g><g><title>futex_wait_cancelable (26 samples, 0.01%)</title><rect x="27.5741%" y="789" width="0.0116%" height="15" fill="rgb(207,92,16)" fg:x="61933" fg:w="26"/><text x="27.8241%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.01%)</title><rect x="27.5750%" y="773" width="0.0107%" height="15" fill="rgb(216,59,51)" fg:x="61935" fg:w="24"/><text x="27.8250%" y="783.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.02%)</title><rect x="27.5977%" y="773" width="0.0156%" height="15" fill="rgb(213,80,28)" fg:x="61986" fg:w="35"/><text x="27.8477%" y="783.50"></text></g><g><title>do_futex (30 samples, 0.01%)</title><rect x="27.5999%" y="757" width="0.0134%" height="15" fill="rgb(220,93,7)" fg:x="61991" fg:w="30"/><text x="27.8499%" y="767.50"></text></g><g><title>futex_wake (29 samples, 0.01%)</title><rect x="27.6003%" y="741" width="0.0129%" height="15" fill="rgb(225,24,44)" fg:x="61992" fg:w="29"/><text x="27.8503%" y="751.50"></text></g><g><title>do_syscall_64 (37 samples, 0.02%)</title><rect x="27.5972%" y="789" width="0.0165%" height="15" fill="rgb(243,74,40)" fg:x="61985" fg:w="37"/><text x="27.8472%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.02%)</title><rect x="27.5968%" y="805" width="0.0174%" height="15" fill="rgb(228,39,7)" fg:x="61984" fg:w="39"/><text x="27.8468%" y="815.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (66 samples, 0.03%)</title><rect x="27.5856%" y="821" width="0.0294%" height="15" fill="rgb(227,79,8)" fg:x="61959" fg:w="66"/><text x="27.8356%" y="831.50"></text></g><g><title>Parker::park (963 samples, 0.43%)</title><rect x="27.2054%" y="837" width="0.4288%" height="15" fill="rgb(236,58,11)" fg:x="61105" fg:w="963"/><text x="27.4554%" y="847.50"></text></g><g><title>Unsafe_Park (1,017 samples, 0.45%)</title><rect x="27.1903%" y="853" width="0.4528%" height="15" fill="rgb(249,63,35)" fg:x="61071" fg:w="1017"/><text x="27.4403%" y="863.50"></text></g><g><title>[perf-501242.map] (2,482 samples, 1.11%)</title><rect x="26.5443%" y="869" width="1.1050%" height="15" fill="rgb(252,114,16)" fg:x="59620" fg:w="2482"/><text x="26.7943%" y="879.50"></text></g><g><title>[unknown] (39 samples, 0.02%)</title><rect x="27.6493%" y="869" width="0.0174%" height="15" fill="rgb(254,151,24)" fg:x="62102" fg:w="39"/><text x="27.8993%" y="879.50"></text></g><g><title>ForkJoinPool.co (2,571 samples, 1.14%)</title><rect x="26.5287%" y="885" width="1.1447%" height="15" fill="rgb(253,54,39)" fg:x="59585" fg:w="2571"/><text x="26.7787%" y="895.50"></text></g><g><title>__GI___clone (46 samples, 0.02%)</title><rect x="27.6738%" y="869" width="0.0205%" height="15" fill="rgb(243,25,45)" fg:x="62157" fg:w="46"/><text x="27.9238%" y="879.50"></text></g><g><title>start_thread (46 samples, 0.02%)</title><rect x="27.6738%" y="853" width="0.0205%" height="15" fill="rgb(234,134,9)" fg:x="62157" fg:w="46"/><text x="27.9238%" y="863.50"></text></g><g><title>thread_native_entry (46 samples, 0.02%)</title><rect x="27.6738%" y="837" width="0.0205%" height="15" fill="rgb(227,166,31)" fg:x="62157" fg:w="46"/><text x="27.9238%" y="847.50"></text></g><g><title>Thread::call_run (46 samples, 0.02%)</title><rect x="27.6738%" y="821" width="0.0205%" height="15" fill="rgb(245,143,41)" fg:x="62157" fg:w="46"/><text x="27.9238%" y="831.50"></text></g><g><title>GangWorker::loop (46 samples, 0.02%)</title><rect x="27.6738%" y="805" width="0.0205%" height="15" fill="rgb(238,181,32)" fg:x="62157" fg:w="46"/><text x="27.9238%" y="815.50"></text></g><g><title>G1_Conc#0 (48 samples, 0.02%)</title><rect x="27.6733%" y="885" width="0.0214%" height="15" fill="rgb(224,113,18)" fg:x="62156" fg:w="48"/><text x="27.9233%" y="895.50"></text></g><g><title>__GI___clone (36 samples, 0.02%)</title><rect x="27.6952%" y="869" width="0.0160%" height="15" fill="rgb(240,229,28)" fg:x="62205" fg:w="36"/><text x="27.9452%" y="879.50"></text></g><g><title>start_thread (36 samples, 0.02%)</title><rect x="27.6952%" y="853" width="0.0160%" height="15" fill="rgb(250,185,3)" fg:x="62205" fg:w="36"/><text x="27.9452%" y="863.50"></text></g><g><title>thread_native_entry (36 samples, 0.02%)</title><rect x="27.6952%" y="837" width="0.0160%" height="15" fill="rgb(212,59,25)" fg:x="62205" fg:w="36"/><text x="27.9452%" y="847.50"></text></g><g><title>Thread::call_run (36 samples, 0.02%)</title><rect x="27.6952%" y="821" width="0.0160%" height="15" fill="rgb(221,87,20)" fg:x="62205" fg:w="36"/><text x="27.9452%" y="831.50"></text></g><g><title>GangWorker::loop (36 samples, 0.02%)</title><rect x="27.6952%" y="805" width="0.0160%" height="15" fill="rgb(213,74,28)" fg:x="62205" fg:w="36"/><text x="27.9452%" y="815.50"></text></g><g><title>G1_Conc#1 (40 samples, 0.02%)</title><rect x="27.6947%" y="885" width="0.0178%" height="15" fill="rgb(224,132,34)" fg:x="62204" fg:w="40"/><text x="27.9447%" y="895.50"></text></g><g><title>G1BlockOffsetTablePart::forward_to_block_containing_addr_slow (25 samples, 0.01%)</title><rect x="27.7272%" y="741" width="0.0111%" height="15" fill="rgb(222,101,24)" fg:x="62277" fg:w="25"/><text x="27.9772%" y="751.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (48 samples, 0.02%)</title><rect x="27.7241%" y="773" width="0.0214%" height="15" fill="rgb(254,142,4)" fg:x="62270" fg:w="48"/><text x="27.9741%" y="783.50"></text></g><g><title>G1RemSet::refine_card_concurrently (47 samples, 0.02%)</title><rect x="27.7245%" y="757" width="0.0209%" height="15" fill="rgb(230,229,49)" fg:x="62271" fg:w="47"/><text x="27.9745%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (77 samples, 0.03%)</title><rect x="27.7241%" y="789" width="0.0343%" height="15" fill="rgb(238,70,47)" fg:x="62270" fg:w="77"/><text x="27.9741%" y="799.50"></text></g><g><title>G1_Refine#0 (89 samples, 0.04%)</title><rect x="27.7197%" y="885" width="0.0396%" height="15" fill="rgb(231,160,17)" fg:x="62260" fg:w="89"/><text x="27.9697%" y="895.50"></text></g><g><title>__GI___clone (86 samples, 0.04%)</title><rect x="27.7210%" y="869" width="0.0383%" height="15" fill="rgb(218,68,53)" fg:x="62263" fg:w="86"/><text x="27.9710%" y="879.50"></text></g><g><title>start_thread (80 samples, 0.04%)</title><rect x="27.7237%" y="853" width="0.0356%" height="15" fill="rgb(236,111,10)" fg:x="62269" fg:w="80"/><text x="27.9737%" y="863.50"></text></g><g><title>thread_native_entry (79 samples, 0.04%)</title><rect x="27.7241%" y="837" width="0.0352%" height="15" fill="rgb(224,34,41)" fg:x="62270" fg:w="79"/><text x="27.9741%" y="847.50"></text></g><g><title>Thread::call_run (79 samples, 0.04%)</title><rect x="27.7241%" y="821" width="0.0352%" height="15" fill="rgb(241,118,19)" fg:x="62270" fg:w="79"/><text x="27.9741%" y="831.50"></text></g><g><title>ConcurrentGCThread::run (79 samples, 0.04%)</title><rect x="27.7241%" y="805" width="0.0352%" height="15" fill="rgb(238,129,25)" fg:x="62270" fg:w="79"/><text x="27.9741%" y="815.50"></text></g><g><title>G1_Refine#1 (38 samples, 0.02%)</title><rect x="27.7593%" y="885" width="0.0169%" height="15" fill="rgb(238,22,31)" fg:x="62349" fg:w="38"/><text x="28.0093%" y="895.50"></text></g><g><title>__GI___clone (36 samples, 0.02%)</title><rect x="27.7602%" y="869" width="0.0160%" height="15" fill="rgb(222,174,48)" fg:x="62351" fg:w="36"/><text x="28.0102%" y="879.50"></text></g><g><title>start_thread (30 samples, 0.01%)</title><rect x="27.7628%" y="853" width="0.0134%" height="15" fill="rgb(206,152,40)" fg:x="62357" fg:w="30"/><text x="28.0128%" y="863.50"></text></g><g><title>thread_native_entry (29 samples, 0.01%)</title><rect x="27.7633%" y="837" width="0.0129%" height="15" fill="rgb(218,99,54)" fg:x="62358" fg:w="29"/><text x="28.0133%" y="847.50"></text></g><g><title>Thread::call_run (28 samples, 0.01%)</title><rect x="27.7637%" y="821" width="0.0125%" height="15" fill="rgb(220,174,26)" fg:x="62359" fg:w="28"/><text x="28.0137%" y="831.50"></text></g><g><title>ConcurrentGCThread::run (28 samples, 0.01%)</title><rect x="27.7637%" y="805" width="0.0125%" height="15" fill="rgb(245,116,9)" fg:x="62359" fg:w="28"/><text x="28.0137%" y="815.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (28 samples, 0.01%)</title><rect x="27.7637%" y="789" width="0.0125%" height="15" fill="rgb(209,72,35)" fg:x="62359" fg:w="28"/><text x="28.0137%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.01%)</title><rect x="27.8047%" y="533" width="0.0107%" height="15" fill="rgb(226,126,21)" fg:x="62451" fg:w="24"/><text x="28.0547%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="27.8047%" y="517" width="0.0107%" height="15" fill="rgb(227,192,1)" fg:x="62451" fg:w="24"/><text x="28.0547%" y="527.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="27.8047%" y="501" width="0.0107%" height="15" fill="rgb(237,180,29)" fg:x="62451" fg:w="24"/><text x="28.0547%" y="511.50"></text></g><g><title>do_syscall_64 (28 samples, 0.01%)</title><rect x="27.8038%" y="661" width="0.0125%" height="15" fill="rgb(230,197,35)" fg:x="62449" fg:w="28"/><text x="28.0538%" y="671.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.01%)</title><rect x="27.8038%" y="645" width="0.0125%" height="15" fill="rgb(246,193,31)" fg:x="62449" fg:w="28"/><text x="28.0538%" y="655.50"></text></g><g><title>do_futex (28 samples, 0.01%)</title><rect x="27.8038%" y="629" width="0.0125%" height="15" fill="rgb(241,36,4)" fg:x="62449" fg:w="28"/><text x="28.0538%" y="639.50"></text></g><g><title>futex_wait (28 samples, 0.01%)</title><rect x="27.8038%" y="613" width="0.0125%" height="15" fill="rgb(241,130,17)" fg:x="62449" fg:w="28"/><text x="28.0538%" y="623.50"></text></g><g><title>futex_wait_queue_me (27 samples, 0.01%)</title><rect x="27.8042%" y="597" width="0.0120%" height="15" fill="rgb(206,137,32)" fg:x="62450" fg:w="27"/><text x="28.0542%" y="607.50"></text></g><g><title>schedule (27 samples, 0.01%)</title><rect x="27.8042%" y="581" width="0.0120%" height="15" fill="rgb(237,228,51)" fg:x="62450" fg:w="27"/><text x="28.0542%" y="591.50"></text></g><g><title>__schedule (27 samples, 0.01%)</title><rect x="27.8042%" y="565" width="0.0120%" height="15" fill="rgb(243,6,42)" fg:x="62450" fg:w="27"/><text x="28.0542%" y="575.50"></text></g><g><title>finish_task_switch (27 samples, 0.01%)</title><rect x="27.8042%" y="549" width="0.0120%" height="15" fill="rgb(251,74,28)" fg:x="62450" fg:w="27"/><text x="28.0542%" y="559.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (56 samples, 0.02%)</title><rect x="27.7927%" y="789" width="0.0249%" height="15" fill="rgb(218,20,49)" fg:x="62424" fg:w="56"/><text x="28.0427%" y="799.50"></text></g><g><title>Monitor::wait (33 samples, 0.01%)</title><rect x="27.8029%" y="773" width="0.0147%" height="15" fill="rgb(238,28,14)" fg:x="62447" fg:w="33"/><text x="28.0529%" y="783.50"></text></g><g><title>Monitor::IWait (33 samples, 0.01%)</title><rect x="27.8029%" y="757" width="0.0147%" height="15" fill="rgb(229,40,46)" fg:x="62447" fg:w="33"/><text x="28.0529%" y="767.50"></text></g><g><title>os::PlatformEvent::park (32 samples, 0.01%)</title><rect x="27.8034%" y="741" width="0.0142%" height="15" fill="rgb(244,195,20)" fg:x="62448" fg:w="32"/><text x="28.0534%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (31 samples, 0.01%)</title><rect x="27.8038%" y="725" width="0.0138%" height="15" fill="rgb(253,56,35)" fg:x="62449" fg:w="31"/><text x="28.0538%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (31 samples, 0.01%)</title><rect x="27.8038%" y="709" width="0.0138%" height="15" fill="rgb(210,149,44)" fg:x="62449" fg:w="31"/><text x="28.0538%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (31 samples, 0.01%)</title><rect x="27.8038%" y="693" width="0.0138%" height="15" fill="rgb(240,135,12)" fg:x="62449" fg:w="31"/><text x="28.0538%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="27.8038%" y="677" width="0.0138%" height="15" fill="rgb(251,24,50)" fg:x="62449" fg:w="31"/><text x="28.0538%" y="687.50"></text></g><g><title>G1_Young_RemSet (65 samples, 0.03%)</title><rect x="27.7927%" y="885" width="0.0289%" height="15" fill="rgb(243,200,47)" fg:x="62424" fg:w="65"/><text x="28.0427%" y="895.50"></text></g><g><title>__GI___clone (65 samples, 0.03%)</title><rect x="27.7927%" y="869" width="0.0289%" height="15" fill="rgb(224,166,26)" fg:x="62424" fg:w="65"/><text x="28.0427%" y="879.50"></text></g><g><title>start_thread (65 samples, 0.03%)</title><rect x="27.7927%" y="853" width="0.0289%" height="15" fill="rgb(233,0,47)" fg:x="62424" fg:w="65"/><text x="28.0427%" y="863.50"></text></g><g><title>thread_native_entry (65 samples, 0.03%)</title><rect x="27.7927%" y="837" width="0.0289%" height="15" fill="rgb(253,80,5)" fg:x="62424" fg:w="65"/><text x="28.0427%" y="847.50"></text></g><g><title>Thread::call_run (65 samples, 0.03%)</title><rect x="27.7927%" y="821" width="0.0289%" height="15" fill="rgb(214,133,25)" fg:x="62424" fg:w="65"/><text x="28.0427%" y="831.50"></text></g><g><title>ConcurrentGCThread::run (65 samples, 0.03%)</title><rect x="27.7927%" y="805" width="0.0289%" height="15" fill="rgb(209,27,14)" fg:x="62424" fg:w="65"/><text x="28.0427%" y="815.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (56 samples, 0.02%)</title><rect x="27.8474%" y="741" width="0.0249%" height="15" fill="rgb(219,102,51)" fg:x="62547" fg:w="56"/><text x="28.0974%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (92 samples, 0.04%)</title><rect x="27.8323%" y="757" width="0.0410%" height="15" fill="rgb(237,18,16)" fg:x="62513" fg:w="92"/><text x="28.0823%" y="767.50"></text></g><g><title>SpinPause (76 samples, 0.03%)</title><rect x="27.8737%" y="757" width="0.0338%" height="15" fill="rgb(241,85,17)" fg:x="62606" fg:w="76"/><text x="28.1237%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (177 samples, 0.08%)</title><rect x="27.8296%" y="773" width="0.0788%" height="15" fill="rgb(236,90,42)" fg:x="62507" fg:w="177"/><text x="28.0796%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (51 samples, 0.02%)</title><rect x="27.9129%" y="677" width="0.0227%" height="15" fill="rgb(249,57,21)" fg:x="62694" fg:w="51"/><text x="28.1629%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (34 samples, 0.02%)</title><rect x="27.9204%" y="661" width="0.0151%" height="15" fill="rgb(243,12,36)" fg:x="62711" fg:w="34"/><text x="28.1704%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (65 samples, 0.03%)</title><rect x="27.9089%" y="693" width="0.0289%" height="15" fill="rgb(253,128,47)" fg:x="62685" fg:w="65"/><text x="28.1589%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (73 samples, 0.03%)</title><rect x="27.9089%" y="773" width="0.0325%" height="15" fill="rgb(207,33,20)" fg:x="62685" fg:w="73"/><text x="28.1589%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (73 samples, 0.03%)</title><rect x="27.9089%" y="757" width="0.0325%" height="15" fill="rgb(233,215,35)" fg:x="62685" fg:w="73"/><text x="28.1589%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (73 samples, 0.03%)</title><rect x="27.9089%" y="741" width="0.0325%" height="15" fill="rgb(249,188,52)" fg:x="62685" fg:w="73"/><text x="28.1589%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (73 samples, 0.03%)</title><rect x="27.9089%" y="725" width="0.0325%" height="15" fill="rgb(225,12,32)" fg:x="62685" fg:w="73"/><text x="28.1589%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (73 samples, 0.03%)</title><rect x="27.9089%" y="709" width="0.0325%" height="15" fill="rgb(247,98,14)" fg:x="62685" fg:w="73"/><text x="28.1589%" y="719.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (26 samples, 0.01%)</title><rect x="27.9485%" y="741" width="0.0116%" height="15" fill="rgb(247,219,48)" fg:x="62774" fg:w="26"/><text x="28.1985%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (25 samples, 0.01%)</title><rect x="27.9489%" y="725" width="0.0111%" height="15" fill="rgb(253,60,48)" fg:x="62775" fg:w="25"/><text x="28.1989%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (25 samples, 0.01%)</title><rect x="27.9489%" y="709" width="0.0111%" height="15" fill="rgb(245,15,52)" fg:x="62775" fg:w="25"/><text x="28.1989%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (23 samples, 0.01%)</title><rect x="27.9498%" y="693" width="0.0102%" height="15" fill="rgb(220,133,28)" fg:x="62777" fg:w="23"/><text x="28.1998%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (49 samples, 0.02%)</title><rect x="27.9752%" y="645" width="0.0218%" height="15" fill="rgb(217,180,4)" fg:x="62834" fg:w="49"/><text x="28.2252%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (35 samples, 0.02%)</title><rect x="27.9814%" y="629" width="0.0156%" height="15" fill="rgb(251,24,1)" fg:x="62848" fg:w="35"/><text x="28.2314%" y="639.50"></text></g><g><title>InterpreterOopMap::iterate_oop (65 samples, 0.03%)</title><rect x="27.9690%" y="677" width="0.0289%" height="15" fill="rgb(212,185,49)" fg:x="62820" fg:w="65"/><text x="28.2190%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (65 samples, 0.03%)</title><rect x="27.9690%" y="661" width="0.0289%" height="15" fill="rgb(215,175,22)" fg:x="62820" fg:w="65"/><text x="28.2190%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (114 samples, 0.05%)</title><rect x="27.9485%" y="757" width="0.0508%" height="15" fill="rgb(250,205,14)" fg:x="62774" fg:w="114"/><text x="28.1985%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (88 samples, 0.04%)</title><rect x="27.9601%" y="741" width="0.0392%" height="15" fill="rgb(225,211,22)" fg:x="62800" fg:w="88"/><text x="28.2101%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (88 samples, 0.04%)</title><rect x="27.9601%" y="725" width="0.0392%" height="15" fill="rgb(251,179,42)" fg:x="62800" fg:w="88"/><text x="28.2101%" y="735.50"></text></g><g><title>JavaThread::oops_do (88 samples, 0.04%)</title><rect x="27.9601%" y="709" width="0.0392%" height="15" fill="rgb(208,216,51)" fg:x="62800" fg:w="88"/><text x="28.2101%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (73 samples, 0.03%)</title><rect x="27.9668%" y="693" width="0.0325%" height="15" fill="rgb(235,36,11)" fg:x="62815" fg:w="73"/><text x="28.2168%" y="703.50"></text></g><g><title>G1ParTask::work (405 samples, 0.18%)</title><rect x="27.8296%" y="789" width="0.1803%" height="15" fill="rgb(213,189,28)" fg:x="62507" fg:w="405"/><text x="28.0796%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (140 samples, 0.06%)</title><rect x="27.9476%" y="773" width="0.0623%" height="15" fill="rgb(227,203,42)" fg:x="62772" fg:w="140"/><text x="28.1976%" y="783.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (73 samples, 0.03%)</title><rect x="28.0117%" y="757" width="0.0325%" height="15" fill="rgb(244,72,36)" fg:x="62916" fg:w="73"/><text x="28.2617%" y="767.50"></text></g><g><title>SpinPause (62 samples, 0.03%)</title><rect x="28.0166%" y="741" width="0.0276%" height="15" fill="rgb(213,53,17)" fg:x="62927" fg:w="62"/><text x="28.2666%" y="751.50"></text></g><g><title>RefProcPhase2Task::work (79 samples, 0.04%)</title><rect x="28.0117%" y="773" width="0.0352%" height="15" fill="rgb(207,167,3)" fg:x="62916" fg:w="79"/><text x="28.2617%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (86 samples, 0.04%)</title><rect x="28.0117%" y="789" width="0.0383%" height="15" fill="rgb(216,98,30)" fg:x="62916" fg:w="86"/><text x="28.2617%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="28.0634%" y="565" width="0.0151%" height="15" fill="rgb(236,123,15)" fg:x="63032" fg:w="34"/><text x="28.3134%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.01%)</title><rect x="28.0638%" y="549" width="0.0147%" height="15" fill="rgb(248,81,50)" fg:x="63033" fg:w="33"/><text x="28.3138%" y="559.50"></text></g><g><title>native_write_msr (31 samples, 0.01%)</title><rect x="28.0647%" y="533" width="0.0138%" height="15" fill="rgb(214,120,4)" fg:x="63035" fg:w="31"/><text x="28.3147%" y="543.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="28.0625%" y="581" width="0.0165%" height="15" fill="rgb(208,179,34)" fg:x="63030" fg:w="37"/><text x="28.3125%" y="591.50"></text></g><g><title>do_syscall_64 (43 samples, 0.02%)</title><rect x="28.0607%" y="693" width="0.0191%" height="15" fill="rgb(227,140,7)" fg:x="63026" fg:w="43"/><text x="28.3107%" y="703.50"></text></g><g><title>__x64_sys_futex (43 samples, 0.02%)</title><rect x="28.0607%" y="677" width="0.0191%" height="15" fill="rgb(214,22,6)" fg:x="63026" fg:w="43"/><text x="28.3107%" y="687.50"></text></g><g><title>do_futex (43 samples, 0.02%)</title><rect x="28.0607%" y="661" width="0.0191%" height="15" fill="rgb(207,137,27)" fg:x="63026" fg:w="43"/><text x="28.3107%" y="671.50"></text></g><g><title>futex_wait (42 samples, 0.02%)</title><rect x="28.0611%" y="645" width="0.0187%" height="15" fill="rgb(210,8,46)" fg:x="63027" fg:w="42"/><text x="28.3111%" y="655.50"></text></g><g><title>futex_wait_queue_me (42 samples, 0.02%)</title><rect x="28.0611%" y="629" width="0.0187%" height="15" fill="rgb(240,16,54)" fg:x="63027" fg:w="42"/><text x="28.3111%" y="639.50"></text></g><g><title>schedule (42 samples, 0.02%)</title><rect x="28.0611%" y="613" width="0.0187%" height="15" fill="rgb(211,209,29)" fg:x="63027" fg:w="42"/><text x="28.3111%" y="623.50"></text></g><g><title>__schedule (42 samples, 0.02%)</title><rect x="28.0611%" y="597" width="0.0187%" height="15" fill="rgb(226,228,24)" fg:x="63027" fg:w="42"/><text x="28.3111%" y="607.50"></text></g><g><title>__new_sem_wait_slow (47 samples, 0.02%)</title><rect x="28.0602%" y="757" width="0.0209%" height="15" fill="rgb(222,84,9)" fg:x="63025" fg:w="47"/><text x="28.3102%" y="767.50"></text></g><g><title>do_futex_wait (47 samples, 0.02%)</title><rect x="28.0602%" y="741" width="0.0209%" height="15" fill="rgb(234,203,30)" fg:x="63025" fg:w="47"/><text x="28.3102%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (47 samples, 0.02%)</title><rect x="28.0602%" y="725" width="0.0209%" height="15" fill="rgb(238,109,14)" fg:x="63025" fg:w="47"/><text x="28.3102%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="28.0607%" y="709" width="0.0205%" height="15" fill="rgb(233,206,34)" fg:x="63026" fg:w="46"/><text x="28.3107%" y="719.50"></text></g><g><title>__GI___clone (577 samples, 0.26%)</title><rect x="27.8247%" y="869" width="0.2569%" height="15" fill="rgb(220,167,47)" fg:x="62496" fg:w="577"/><text x="28.0747%" y="879.50"></text></g><g><title>start_thread (577 samples, 0.26%)</title><rect x="27.8247%" y="853" width="0.2569%" height="15" fill="rgb(238,105,10)" fg:x="62496" fg:w="577"/><text x="28.0747%" y="863.50"></text></g><g><title>thread_native_entry (577 samples, 0.26%)</title><rect x="27.8247%" y="837" width="0.2569%" height="15" fill="rgb(213,227,17)" fg:x="62496" fg:w="577"/><text x="28.0747%" y="847.50"></text></g><g><title>Thread::call_run (577 samples, 0.26%)</title><rect x="27.8247%" y="821" width="0.2569%" height="15" fill="rgb(217,132,38)" fg:x="62496" fg:w="577"/><text x="28.0747%" y="831.50"></text></g><g><title>GangWorker::loop (577 samples, 0.26%)</title><rect x="27.8247%" y="805" width="0.2569%" height="15" fill="rgb(242,146,4)" fg:x="62496" fg:w="577"/><text x="28.0747%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (48 samples, 0.02%)</title><rect x="28.0602%" y="789" width="0.0214%" height="15" fill="rgb(212,61,9)" fg:x="63025" fg:w="48"/><text x="28.3102%" y="799.50"></text></g><g><title>PosixSemaphore::wait (48 samples, 0.02%)</title><rect x="28.0602%" y="773" width="0.0214%" height="15" fill="rgb(247,126,22)" fg:x="63025" fg:w="48"/><text x="28.3102%" y="783.50"></text></g><g><title>GC_Thread#0 (585 samples, 0.26%)</title><rect x="27.8216%" y="885" width="0.2605%" height="15" fill="rgb(220,196,2)" fg:x="62489" fg:w="585"/><text x="28.0716%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (54 samples, 0.02%)</title><rect x="28.1163%" y="741" width="0.0240%" height="15" fill="rgb(208,46,4)" fg:x="63151" fg:w="54"/><text x="28.3663%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (104 samples, 0.05%)</title><rect x="28.0959%" y="757" width="0.0463%" height="15" fill="rgb(252,104,46)" fg:x="63105" fg:w="104"/><text x="28.3459%" y="767.50"></text></g><g><title>SpinPause (101 samples, 0.04%)</title><rect x="28.1431%" y="757" width="0.0450%" height="15" fill="rgb(237,152,48)" fg:x="63211" fg:w="101"/><text x="28.3931%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (220 samples, 0.10%)</title><rect x="28.0919%" y="773" width="0.0979%" height="15" fill="rgb(221,59,37)" fg:x="63096" fg:w="220"/><text x="28.3419%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (72 samples, 0.03%)</title><rect x="28.1929%" y="677" width="0.0321%" height="15" fill="rgb(209,202,51)" fg:x="63323" fg:w="72"/><text x="28.4429%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (43 samples, 0.02%)</title><rect x="28.2058%" y="661" width="0.0191%" height="15" fill="rgb(228,81,30)" fg:x="63352" fg:w="43"/><text x="28.4558%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (85 samples, 0.04%)</title><rect x="28.1898%" y="693" width="0.0378%" height="15" fill="rgb(227,42,39)" fg:x="63316" fg:w="85"/><text x="28.4398%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (94 samples, 0.04%)</title><rect x="28.1898%" y="773" width="0.0419%" height="15" fill="rgb(221,26,2)" fg:x="63316" fg:w="94"/><text x="28.4398%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (94 samples, 0.04%)</title><rect x="28.1898%" y="757" width="0.0419%" height="15" fill="rgb(254,61,31)" fg:x="63316" fg:w="94"/><text x="28.4398%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (94 samples, 0.04%)</title><rect x="28.1898%" y="741" width="0.0419%" height="15" fill="rgb(222,173,38)" fg:x="63316" fg:w="94"/><text x="28.4398%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (94 samples, 0.04%)</title><rect x="28.1898%" y="725" width="0.0419%" height="15" fill="rgb(218,50,12)" fg:x="63316" fg:w="94"/><text x="28.4398%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (94 samples, 0.04%)</title><rect x="28.1898%" y="709" width="0.0419%" height="15" fill="rgb(223,88,40)" fg:x="63316" fg:w="94"/><text x="28.4398%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (23 samples, 0.01%)</title><rect x="28.2317%" y="773" width="0.0102%" height="15" fill="rgb(237,54,19)" fg:x="63410" fg:w="23"/><text x="28.4817%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (23 samples, 0.01%)</title><rect x="28.2317%" y="757" width="0.0102%" height="15" fill="rgb(251,129,25)" fg:x="63410" fg:w="23"/><text x="28.4817%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (23 samples, 0.01%)</title><rect x="28.2317%" y="741" width="0.0102%" height="15" fill="rgb(238,97,19)" fg:x="63410" fg:w="23"/><text x="28.4817%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (28 samples, 0.01%)</title><rect x="28.2566%" y="645" width="0.0125%" height="15" fill="rgb(240,169,18)" fg:x="63466" fg:w="28"/><text x="28.5066%" y="655.50"></text></g><g><title>frame::oops_do_internal (37 samples, 0.02%)</title><rect x="28.2535%" y="693" width="0.0165%" height="15" fill="rgb(230,187,49)" fg:x="63459" fg:w="37"/><text x="28.5035%" y="703.50"></text></g><g><title>OopMapSet::oops_do (37 samples, 0.02%)</title><rect x="28.2535%" y="677" width="0.0165%" height="15" fill="rgb(209,44,26)" fg:x="63459" fg:w="37"/><text x="28.5035%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (37 samples, 0.02%)</title><rect x="28.2535%" y="661" width="0.0165%" height="15" fill="rgb(244,0,6)" fg:x="63459" fg:w="37"/><text x="28.5035%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (44 samples, 0.02%)</title><rect x="28.2753%" y="645" width="0.0196%" height="15" fill="rgb(248,18,21)" fg:x="63508" fg:w="44"/><text x="28.5253%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (34 samples, 0.02%)</title><rect x="28.2797%" y="629" width="0.0151%" height="15" fill="rgb(245,180,19)" fg:x="63518" fg:w="34"/><text x="28.5297%" y="639.50"></text></g><g><title>InterpreterOopMap::iterate_oop (60 samples, 0.03%)</title><rect x="28.2699%" y="677" width="0.0267%" height="15" fill="rgb(252,118,36)" fg:x="63496" fg:w="60"/><text x="28.5199%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (59 samples, 0.03%)</title><rect x="28.2704%" y="661" width="0.0263%" height="15" fill="rgb(210,224,19)" fg:x="63497" fg:w="59"/><text x="28.5204%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (106 samples, 0.05%)</title><rect x="28.2504%" y="757" width="0.0472%" height="15" fill="rgb(218,30,24)" fg:x="63452" fg:w="106"/><text x="28.5004%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (106 samples, 0.05%)</title><rect x="28.2504%" y="741" width="0.0472%" height="15" fill="rgb(219,75,50)" fg:x="63452" fg:w="106"/><text x="28.5004%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (106 samples, 0.05%)</title><rect x="28.2504%" y="725" width="0.0472%" height="15" fill="rgb(234,72,50)" fg:x="63452" fg:w="106"/><text x="28.5004%" y="735.50"></text></g><g><title>JavaThread::oops_do (105 samples, 0.05%)</title><rect x="28.2508%" y="709" width="0.0467%" height="15" fill="rgb(219,100,48)" fg:x="63453" fg:w="105"/><text x="28.5008%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (62 samples, 0.03%)</title><rect x="28.2699%" y="693" width="0.0276%" height="15" fill="rgb(253,5,41)" fg:x="63496" fg:w="62"/><text x="28.5199%" y="703.50"></text></g><g><title>G1ParTask::work (480 samples, 0.21%)</title><rect x="28.0919%" y="789" width="0.2137%" height="15" fill="rgb(247,181,11)" fg:x="63096" fg:w="480"/><text x="28.3419%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (143 samples, 0.06%)</title><rect x="28.2419%" y="773" width="0.0637%" height="15" fill="rgb(222,223,25)" fg:x="63433" fg:w="143"/><text x="28.4919%" y="783.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (64 samples, 0.03%)</title><rect x="28.3069%" y="757" width="0.0285%" height="15" fill="rgb(214,198,28)" fg:x="63579" fg:w="64"/><text x="28.5569%" y="767.50"></text></g><g><title>SpinPause (59 samples, 0.03%)</title><rect x="28.3091%" y="741" width="0.0263%" height="15" fill="rgb(230,46,43)" fg:x="63584" fg:w="59"/><text x="28.5591%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (70 samples, 0.03%)</title><rect x="28.3069%" y="789" width="0.0312%" height="15" fill="rgb(233,65,53)" fg:x="63579" fg:w="70"/><text x="28.5569%" y="799.50"></text></g><g><title>RefProcPhase2Task::work (70 samples, 0.03%)</title><rect x="28.3069%" y="773" width="0.0312%" height="15" fill="rgb(221,121,27)" fg:x="63579" fg:w="70"/><text x="28.5569%" y="783.50"></text></g><g><title>ParallelSPCleanupTask::work (30 samples, 0.01%)</title><rect x="28.3385%" y="789" width="0.0134%" height="15" fill="rgb(247,70,47)" fg:x="63650" fg:w="30"/><text x="28.5885%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (26 samples, 0.01%)</title><rect x="28.3403%" y="773" width="0.0116%" height="15" fill="rgb(228,85,35)" fg:x="63654" fg:w="26"/><text x="28.5903%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (41 samples, 0.02%)</title><rect x="28.3594%" y="565" width="0.0183%" height="15" fill="rgb(209,50,18)" fg:x="63697" fg:w="41"/><text x="28.6094%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (40 samples, 0.02%)</title><rect x="28.3599%" y="549" width="0.0178%" height="15" fill="rgb(250,19,35)" fg:x="63698" fg:w="40"/><text x="28.6099%" y="559.50"></text></g><g><title>native_write_msr (40 samples, 0.02%)</title><rect x="28.3599%" y="533" width="0.0178%" height="15" fill="rgb(253,107,29)" fg:x="63698" fg:w="40"/><text x="28.6099%" y="543.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="28.3590%" y="581" width="0.0196%" height="15" fill="rgb(252,179,29)" fg:x="63696" fg:w="44"/><text x="28.6090%" y="591.50"></text></g><g><title>futex_wait_queue_me (62 samples, 0.03%)</title><rect x="28.3541%" y="629" width="0.0276%" height="15" fill="rgb(238,194,6)" fg:x="63685" fg:w="62"/><text x="28.6041%" y="639.50"></text></g><g><title>schedule (61 samples, 0.03%)</title><rect x="28.3545%" y="613" width="0.0272%" height="15" fill="rgb(238,164,29)" fg:x="63686" fg:w="61"/><text x="28.6045%" y="623.50"></text></g><g><title>__schedule (61 samples, 0.03%)</title><rect x="28.3545%" y="597" width="0.0272%" height="15" fill="rgb(224,25,9)" fg:x="63686" fg:w="61"/><text x="28.6045%" y="607.50"></text></g><g><title>do_syscall_64 (63 samples, 0.03%)</title><rect x="28.3541%" y="693" width="0.0280%" height="15" fill="rgb(244,153,23)" fg:x="63685" fg:w="63"/><text x="28.6041%" y="703.50"></text></g><g><title>__x64_sys_futex (63 samples, 0.03%)</title><rect x="28.3541%" y="677" width="0.0280%" height="15" fill="rgb(212,203,14)" fg:x="63685" fg:w="63"/><text x="28.6041%" y="687.50"></text></g><g><title>do_futex (63 samples, 0.03%)</title><rect x="28.3541%" y="661" width="0.0280%" height="15" fill="rgb(220,164,20)" fg:x="63685" fg:w="63"/><text x="28.6041%" y="671.50"></text></g><g><title>futex_wait (63 samples, 0.03%)</title><rect x="28.3541%" y="645" width="0.0280%" height="15" fill="rgb(222,203,48)" fg:x="63685" fg:w="63"/><text x="28.6041%" y="655.50"></text></g><g><title>__GI___clone (660 samples, 0.29%)</title><rect x="28.0901%" y="869" width="0.2938%" height="15" fill="rgb(215,159,22)" fg:x="63092" fg:w="660"/><text x="28.3401%" y="879.50"></text></g><g><title>start_thread (660 samples, 0.29%)</title><rect x="28.0901%" y="853" width="0.2938%" height="15" fill="rgb(216,183,47)" fg:x="63092" fg:w="660"/><text x="28.3401%" y="863.50"></text></g><g><title>thread_native_entry (660 samples, 0.29%)</title><rect x="28.0901%" y="837" width="0.2938%" height="15" fill="rgb(229,195,25)" fg:x="63092" fg:w="660"/><text x="28.3401%" y="847.50"></text></g><g><title>Thread::call_run (660 samples, 0.29%)</title><rect x="28.0901%" y="821" width="0.2938%" height="15" fill="rgb(224,132,51)" fg:x="63092" fg:w="660"/><text x="28.3401%" y="831.50"></text></g><g><title>GangWorker::loop (660 samples, 0.29%)</title><rect x="28.0901%" y="805" width="0.2938%" height="15" fill="rgb(240,63,7)" fg:x="63092" fg:w="660"/><text x="28.3401%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (71 samples, 0.03%)</title><rect x="28.3523%" y="789" width="0.0316%" height="15" fill="rgb(249,182,41)" fg:x="63681" fg:w="71"/><text x="28.6023%" y="799.50"></text></g><g><title>PosixSemaphore::wait (70 samples, 0.03%)</title><rect x="28.3528%" y="773" width="0.0312%" height="15" fill="rgb(243,47,26)" fg:x="63682" fg:w="70"/><text x="28.6028%" y="783.50"></text></g><g><title>__new_sem_wait_slow (70 samples, 0.03%)</title><rect x="28.3528%" y="757" width="0.0312%" height="15" fill="rgb(233,48,2)" fg:x="63682" fg:w="70"/><text x="28.6028%" y="767.50"></text></g><g><title>do_futex_wait (70 samples, 0.03%)</title><rect x="28.3528%" y="741" width="0.0312%" height="15" fill="rgb(244,165,34)" fg:x="63682" fg:w="70"/><text x="28.6028%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (70 samples, 0.03%)</title><rect x="28.3528%" y="725" width="0.0312%" height="15" fill="rgb(207,89,7)" fg:x="63682" fg:w="70"/><text x="28.6028%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.03%)</title><rect x="28.3541%" y="709" width="0.0298%" height="15" fill="rgb(244,117,36)" fg:x="63685" fg:w="67"/><text x="28.6041%" y="719.50"></text></g><g><title>GC_Thread#1 (681 samples, 0.30%)</title><rect x="28.0821%" y="885" width="0.3032%" height="15" fill="rgb(226,144,34)" fg:x="63074" fg:w="681"/><text x="28.3321%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (54 samples, 0.02%)</title><rect x="28.4066%" y="741" width="0.0240%" height="15" fill="rgb(213,23,19)" fg:x="63803" fg:w="54"/><text x="28.6566%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (92 samples, 0.04%)</title><rect x="28.3919%" y="757" width="0.0410%" height="15" fill="rgb(217,75,12)" fg:x="63770" fg:w="92"/><text x="28.6419%" y="767.50"></text></g><g><title>SpinPause (62 samples, 0.03%)</title><rect x="28.4338%" y="757" width="0.0276%" height="15" fill="rgb(224,159,17)" fg:x="63864" fg:w="62"/><text x="28.6838%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (160 samples, 0.07%)</title><rect x="28.3906%" y="773" width="0.0712%" height="15" fill="rgb(217,118,1)" fg:x="63767" fg:w="160"/><text x="28.6406%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (43 samples, 0.02%)</title><rect x="28.4654%" y="677" width="0.0191%" height="15" fill="rgb(232,180,48)" fg:x="63935" fg:w="43"/><text x="28.7154%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (35 samples, 0.02%)</title><rect x="28.4690%" y="661" width="0.0156%" height="15" fill="rgb(230,27,33)" fg:x="63943" fg:w="35"/><text x="28.7190%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (55 samples, 0.02%)</title><rect x="28.4618%" y="693" width="0.0245%" height="15" fill="rgb(205,31,21)" fg:x="63927" fg:w="55"/><text x="28.7118%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (63 samples, 0.03%)</title><rect x="28.4618%" y="773" width="0.0280%" height="15" fill="rgb(253,59,4)" fg:x="63927" fg:w="63"/><text x="28.7118%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (63 samples, 0.03%)</title><rect x="28.4618%" y="757" width="0.0280%" height="15" fill="rgb(224,201,9)" fg:x="63927" fg:w="63"/><text x="28.7118%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (63 samples, 0.03%)</title><rect x="28.4618%" y="741" width="0.0280%" height="15" fill="rgb(229,206,30)" fg:x="63927" fg:w="63"/><text x="28.7118%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (63 samples, 0.03%)</title><rect x="28.4618%" y="725" width="0.0280%" height="15" fill="rgb(212,67,47)" fg:x="63927" fg:w="63"/><text x="28.7118%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (63 samples, 0.03%)</title><rect x="28.4618%" y="709" width="0.0280%" height="15" fill="rgb(211,96,50)" fg:x="63927" fg:w="63"/><text x="28.7118%" y="719.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (51 samples, 0.02%)</title><rect x="28.4961%" y="741" width="0.0227%" height="15" fill="rgb(252,114,18)" fg:x="64004" fg:w="51"/><text x="28.7461%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (50 samples, 0.02%)</title><rect x="28.4966%" y="725" width="0.0223%" height="15" fill="rgb(223,58,37)" fg:x="64005" fg:w="50"/><text x="28.7466%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (50 samples, 0.02%)</title><rect x="28.4966%" y="709" width="0.0223%" height="15" fill="rgb(237,70,4)" fg:x="64005" fg:w="50"/><text x="28.7466%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (40 samples, 0.02%)</title><rect x="28.5010%" y="693" width="0.0178%" height="15" fill="rgb(244,85,46)" fg:x="64015" fg:w="40"/><text x="28.7510%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (27 samples, 0.01%)</title><rect x="28.5068%" y="677" width="0.0120%" height="15" fill="rgb(223,39,52)" fg:x="64028" fg:w="27"/><text x="28.7568%" y="687.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (27 samples, 0.01%)</title><rect x="28.5602%" y="613" width="0.0120%" height="15" fill="rgb(218,200,14)" fg:x="64148" fg:w="27"/><text x="28.8102%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (101 samples, 0.04%)</title><rect x="28.5344%" y="645" width="0.0450%" height="15" fill="rgb(208,171,16)" fg:x="64090" fg:w="101"/><text x="28.7844%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (77 samples, 0.03%)</title><rect x="28.5451%" y="629" width="0.0343%" height="15" fill="rgb(234,200,18)" fg:x="64114" fg:w="77"/><text x="28.7951%" y="639.50"></text></g><g><title>InterpreterOopMap::iterate_oop (124 samples, 0.06%)</title><rect x="28.5255%" y="677" width="0.0552%" height="15" fill="rgb(228,45,11)" fg:x="64070" fg:w="124"/><text x="28.7755%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (124 samples, 0.06%)</title><rect x="28.5255%" y="661" width="0.0552%" height="15" fill="rgb(237,182,11)" fg:x="64070" fg:w="124"/><text x="28.7755%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (196 samples, 0.09%)</title><rect x="28.4961%" y="757" width="0.0873%" height="15" fill="rgb(241,175,49)" fg:x="64004" fg:w="196"/><text x="28.7461%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (145 samples, 0.06%)</title><rect x="28.5188%" y="741" width="0.0646%" height="15" fill="rgb(247,38,35)" fg:x="64055" fg:w="145"/><text x="28.7688%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (145 samples, 0.06%)</title><rect x="28.5188%" y="725" width="0.0646%" height="15" fill="rgb(228,39,49)" fg:x="64055" fg:w="145"/><text x="28.7688%" y="735.50"></text></g><g><title>JavaThread::oops_do (145 samples, 0.06%)</title><rect x="28.5188%" y="709" width="0.0646%" height="15" fill="rgb(226,101,26)" fg:x="64055" fg:w="145"/><text x="28.7688%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (130 samples, 0.06%)</title><rect x="28.5255%" y="693" width="0.0579%" height="15" fill="rgb(206,141,19)" fg:x="64070" fg:w="130"/><text x="28.7755%" y="703.50"></text></g><g><title>G1ParTask::work (434 samples, 0.19%)</title><rect x="28.3906%" y="789" width="0.1932%" height="15" fill="rgb(211,200,13)" fg:x="63767" fg:w="434"/><text x="28.6406%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (198 samples, 0.09%)</title><rect x="28.4957%" y="773" width="0.0882%" height="15" fill="rgb(241,121,6)" fg:x="64003" fg:w="198"/><text x="28.7457%" y="783.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (74 samples, 0.03%)</title><rect x="28.5901%" y="757" width="0.0329%" height="15" fill="rgb(234,221,29)" fg:x="64215" fg:w="74"/><text x="28.8401%" y="767.50"></text></g><g><title>SpinPause (66 samples, 0.03%)</title><rect x="28.5936%" y="741" width="0.0294%" height="15" fill="rgb(229,136,5)" fg:x="64223" fg:w="66"/><text x="28.8436%" y="751.50"></text></g><g><title>RefProcPhase2Task::work (83 samples, 0.04%)</title><rect x="28.5901%" y="773" width="0.0370%" height="15" fill="rgb(238,36,11)" fg:x="64215" fg:w="83"/><text x="28.8401%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (86 samples, 0.04%)</title><rect x="28.5901%" y="789" width="0.0383%" height="15" fill="rgb(251,55,41)" fg:x="64215" fg:w="86"/><text x="28.8401%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.03%)</title><rect x="28.6426%" y="565" width="0.0276%" height="15" fill="rgb(242,34,40)" fg:x="64333" fg:w="62"/><text x="28.8926%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.03%)</title><rect x="28.6426%" y="549" width="0.0276%" height="15" fill="rgb(215,42,17)" fg:x="64333" fg:w="62"/><text x="28.8926%" y="559.50"></text></g><g><title>native_write_msr (62 samples, 0.03%)</title><rect x="28.6426%" y="533" width="0.0276%" height="15" fill="rgb(207,44,46)" fg:x="64333" fg:w="62"/><text x="28.8926%" y="543.50"></text></g><g><title>finish_task_switch (65 samples, 0.03%)</title><rect x="28.6426%" y="581" width="0.0289%" height="15" fill="rgb(211,206,28)" fg:x="64333" fg:w="65"/><text x="28.8926%" y="591.50"></text></g><g><title>__GI___clone (637 samples, 0.28%)</title><rect x="28.3902%" y="869" width="0.2836%" height="15" fill="rgb(237,167,16)" fg:x="63766" fg:w="637"/><text x="28.6402%" y="879.50"></text></g><g><title>start_thread (637 samples, 0.28%)</title><rect x="28.3902%" y="853" width="0.2836%" height="15" fill="rgb(233,66,6)" fg:x="63766" fg:w="637"/><text x="28.6402%" y="863.50"></text></g><g><title>thread_native_entry (637 samples, 0.28%)</title><rect x="28.3902%" y="837" width="0.2836%" height="15" fill="rgb(246,123,29)" fg:x="63766" fg:w="637"/><text x="28.6402%" y="847.50"></text></g><g><title>Thread::call_run (637 samples, 0.28%)</title><rect x="28.3902%" y="821" width="0.2836%" height="15" fill="rgb(209,62,40)" fg:x="63766" fg:w="637"/><text x="28.6402%" y="831.50"></text></g><g><title>GangWorker::loop (637 samples, 0.28%)</title><rect x="28.3902%" y="805" width="0.2836%" height="15" fill="rgb(218,4,25)" fg:x="63766" fg:w="637"/><text x="28.6402%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (81 samples, 0.04%)</title><rect x="28.6377%" y="789" width="0.0361%" height="15" fill="rgb(253,91,49)" fg:x="64322" fg:w="81"/><text x="28.8877%" y="799.50"></text></g><g><title>PosixSemaphore::wait (80 samples, 0.04%)</title><rect x="28.6381%" y="773" width="0.0356%" height="15" fill="rgb(228,155,29)" fg:x="64323" fg:w="80"/><text x="28.8881%" y="783.50"></text></g><g><title>__new_sem_wait_slow (80 samples, 0.04%)</title><rect x="28.6381%" y="757" width="0.0356%" height="15" fill="rgb(243,57,37)" fg:x="64323" fg:w="80"/><text x="28.8881%" y="767.50"></text></g><g><title>do_futex_wait (80 samples, 0.04%)</title><rect x="28.6381%" y="741" width="0.0356%" height="15" fill="rgb(244,167,17)" fg:x="64323" fg:w="80"/><text x="28.8881%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (80 samples, 0.04%)</title><rect x="28.6381%" y="725" width="0.0356%" height="15" fill="rgb(207,181,38)" fg:x="64323" fg:w="80"/><text x="28.8881%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.04%)</title><rect x="28.6386%" y="709" width="0.0352%" height="15" fill="rgb(211,8,23)" fg:x="64324" fg:w="79"/><text x="28.8886%" y="719.50"></text></g><g><title>do_syscall_64 (79 samples, 0.04%)</title><rect x="28.6386%" y="693" width="0.0352%" height="15" fill="rgb(235,11,44)" fg:x="64324" fg:w="79"/><text x="28.8886%" y="703.50"></text></g><g><title>__x64_sys_futex (78 samples, 0.03%)</title><rect x="28.6390%" y="677" width="0.0347%" height="15" fill="rgb(248,18,52)" fg:x="64325" fg:w="78"/><text x="28.8890%" y="687.50"></text></g><g><title>do_futex (77 samples, 0.03%)</title><rect x="28.6395%" y="661" width="0.0343%" height="15" fill="rgb(208,4,7)" fg:x="64326" fg:w="77"/><text x="28.8895%" y="671.50"></text></g><g><title>futex_wait (76 samples, 0.03%)</title><rect x="28.6399%" y="645" width="0.0338%" height="15" fill="rgb(240,17,39)" fg:x="64327" fg:w="76"/><text x="28.8899%" y="655.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.03%)</title><rect x="28.6399%" y="629" width="0.0338%" height="15" fill="rgb(207,170,3)" fg:x="64327" fg:w="76"/><text x="28.8899%" y="639.50"></text></g><g><title>schedule (74 samples, 0.03%)</title><rect x="28.6408%" y="613" width="0.0329%" height="15" fill="rgb(236,100,52)" fg:x="64329" fg:w="74"/><text x="28.8908%" y="623.50"></text></g><g><title>__schedule (74 samples, 0.03%)</title><rect x="28.6408%" y="597" width="0.0329%" height="15" fill="rgb(246,78,51)" fg:x="64329" fg:w="74"/><text x="28.8908%" y="607.50"></text></g><g><title>GC_Thread#2 (653 samples, 0.29%)</title><rect x="28.3853%" y="885" width="0.2907%" height="15" fill="rgb(211,17,15)" fg:x="63755" fg:w="653"/><text x="28.6353%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (81 samples, 0.04%)</title><rect x="28.7143%" y="741" width="0.0361%" height="15" fill="rgb(209,59,46)" fg:x="64494" fg:w="81"/><text x="28.9643%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (145 samples, 0.06%)</title><rect x="28.6871%" y="757" width="0.0646%" height="15" fill="rgb(210,92,25)" fg:x="64433" fg:w="145"/><text x="28.9371%" y="767.50"></text></g><g><title>SpinPause (99 samples, 0.04%)</title><rect x="28.7530%" y="757" width="0.0441%" height="15" fill="rgb(238,174,52)" fg:x="64581" fg:w="99"/><text x="29.0030%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (253 samples, 0.11%)</title><rect x="28.6849%" y="773" width="0.1126%" height="15" fill="rgb(230,73,7)" fg:x="64428" fg:w="253"/><text x="28.9349%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (24 samples, 0.01%)</title><rect x="28.7975%" y="693" width="0.0107%" height="15" fill="rgb(243,124,40)" fg:x="64681" fg:w="24"/><text x="29.0475%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (29 samples, 0.01%)</title><rect x="28.7975%" y="773" width="0.0129%" height="15" fill="rgb(244,170,11)" fg:x="64681" fg:w="29"/><text x="29.0475%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (29 samples, 0.01%)</title><rect x="28.7975%" y="757" width="0.0129%" height="15" fill="rgb(207,114,54)" fg:x="64681" fg:w="29"/><text x="29.0475%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (29 samples, 0.01%)</title><rect x="28.7975%" y="741" width="0.0129%" height="15" fill="rgb(205,42,20)" fg:x="64681" fg:w="29"/><text x="29.0475%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (29 samples, 0.01%)</title><rect x="28.7975%" y="725" width="0.0129%" height="15" fill="rgb(230,30,28)" fg:x="64681" fg:w="29"/><text x="29.0475%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (29 samples, 0.01%)</title><rect x="28.7975%" y="709" width="0.0129%" height="15" fill="rgb(205,73,54)" fg:x="64681" fg:w="29"/><text x="29.0475%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (29 samples, 0.01%)</title><rect x="28.8105%" y="693" width="0.0129%" height="15" fill="rgb(254,227,23)" fg:x="64710" fg:w="29"/><text x="29.0605%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (26 samples, 0.01%)</title><rect x="28.8118%" y="677" width="0.0116%" height="15" fill="rgb(228,202,34)" fg:x="64713" fg:w="26"/><text x="29.0618%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (38 samples, 0.02%)</title><rect x="28.8105%" y="725" width="0.0169%" height="15" fill="rgb(222,225,37)" fg:x="64710" fg:w="38"/><text x="29.0605%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (38 samples, 0.02%)</title><rect x="28.8105%" y="709" width="0.0169%" height="15" fill="rgb(221,14,54)" fg:x="64710" fg:w="38"/><text x="29.0605%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (48 samples, 0.02%)</title><rect x="28.8105%" y="773" width="0.0214%" height="15" fill="rgb(254,102,2)" fg:x="64710" fg:w="48"/><text x="29.0605%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (48 samples, 0.02%)</title><rect x="28.8105%" y="757" width="0.0214%" height="15" fill="rgb(232,104,17)" fg:x="64710" fg:w="48"/><text x="29.0605%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (48 samples, 0.02%)</title><rect x="28.8105%" y="741" width="0.0214%" height="15" fill="rgb(250,220,14)" fg:x="64710" fg:w="48"/><text x="29.0605%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (23 samples, 0.01%)</title><rect x="28.8363%" y="677" width="0.0102%" height="15" fill="rgb(241,158,9)" fg:x="64768" fg:w="23"/><text x="29.0863%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (35 samples, 0.02%)</title><rect x="28.8323%" y="741" width="0.0156%" height="15" fill="rgb(246,9,43)" fg:x="64759" fg:w="35"/><text x="29.0823%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (34 samples, 0.02%)</title><rect x="28.8327%" y="725" width="0.0151%" height="15" fill="rgb(206,73,33)" fg:x="64760" fg:w="34"/><text x="29.0827%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (34 samples, 0.02%)</title><rect x="28.8327%" y="709" width="0.0151%" height="15" fill="rgb(222,79,8)" fg:x="64760" fg:w="34"/><text x="29.0827%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (31 samples, 0.01%)</title><rect x="28.8340%" y="693" width="0.0138%" height="15" fill="rgb(234,8,54)" fg:x="64763" fg:w="31"/><text x="29.0840%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (27 samples, 0.01%)</title><rect x="28.8728%" y="645" width="0.0120%" height="15" fill="rgb(209,134,38)" fg:x="64850" fg:w="27"/><text x="29.1228%" y="655.50"></text></g><g><title>InterpreterOopMap::iterate_oop (42 samples, 0.02%)</title><rect x="28.8701%" y="677" width="0.0187%" height="15" fill="rgb(230,127,29)" fg:x="64844" fg:w="42"/><text x="29.1201%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (41 samples, 0.02%)</title><rect x="28.8706%" y="661" width="0.0183%" height="15" fill="rgb(242,44,41)" fg:x="64845" fg:w="41"/><text x="29.1206%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (134 samples, 0.06%)</title><rect x="28.8323%" y="757" width="0.0597%" height="15" fill="rgb(222,56,43)" fg:x="64759" fg:w="134"/><text x="29.0823%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (99 samples, 0.04%)</title><rect x="28.8478%" y="741" width="0.0441%" height="15" fill="rgb(238,39,47)" fg:x="64794" fg:w="99"/><text x="29.0978%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (99 samples, 0.04%)</title><rect x="28.8478%" y="725" width="0.0441%" height="15" fill="rgb(226,79,43)" fg:x="64794" fg:w="99"/><text x="29.0978%" y="735.50"></text></g><g><title>JavaThread::oops_do (99 samples, 0.04%)</title><rect x="28.8478%" y="709" width="0.0441%" height="15" fill="rgb(242,105,53)" fg:x="64794" fg:w="99"/><text x="29.0978%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (57 samples, 0.03%)</title><rect x="28.8665%" y="693" width="0.0254%" height="15" fill="rgb(251,132,46)" fg:x="64836" fg:w="57"/><text x="29.1165%" y="703.50"></text></g><g><title>G1ParTask::work (477 samples, 0.21%)</title><rect x="28.6849%" y="789" width="0.2124%" height="15" fill="rgb(231,77,14)" fg:x="64428" fg:w="477"/><text x="28.9349%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (147 samples, 0.07%)</title><rect x="28.8318%" y="773" width="0.0654%" height="15" fill="rgb(240,135,9)" fg:x="64758" fg:w="147"/><text x="29.0818%" y="783.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (78 samples, 0.03%)</title><rect x="28.9017%" y="757" width="0.0347%" height="15" fill="rgb(248,109,14)" fg:x="64915" fg:w="78"/><text x="29.1517%" y="767.50"></text></g><g><title>SpinPause (67 samples, 0.03%)</title><rect x="28.9066%" y="741" width="0.0298%" height="15" fill="rgb(227,146,52)" fg:x="64926" fg:w="67"/><text x="29.1566%" y="751.50"></text></g><g><title>RefProcPhase2Task::work (84 samples, 0.04%)</title><rect x="28.9017%" y="773" width="0.0374%" height="15" fill="rgb(232,54,3)" fg:x="64915" fg:w="84"/><text x="29.1517%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (87 samples, 0.04%)</title><rect x="28.9017%" y="789" width="0.0387%" height="15" fill="rgb(229,201,43)" fg:x="64915" fg:w="87"/><text x="29.1517%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.01%)</title><rect x="28.9556%" y="565" width="0.0134%" height="15" fill="rgb(252,161,33)" fg:x="65036" fg:w="30"/><text x="29.2056%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.01%)</title><rect x="28.9556%" y="549" width="0.0134%" height="15" fill="rgb(226,146,40)" fg:x="65036" fg:w="30"/><text x="29.2056%" y="559.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="28.9556%" y="533" width="0.0134%" height="15" fill="rgb(219,47,25)" fg:x="65036" fg:w="30"/><text x="29.2056%" y="543.50"></text></g><g><title>finish_task_switch (31 samples, 0.01%)</title><rect x="28.9556%" y="581" width="0.0138%" height="15" fill="rgb(250,135,13)" fg:x="65036" fg:w="31"/><text x="29.2056%" y="591.50"></text></g><g><title>futex_wait_queue_me (41 samples, 0.02%)</title><rect x="28.9534%" y="629" width="0.0183%" height="15" fill="rgb(219,229,18)" fg:x="65031" fg:w="41"/><text x="29.2034%" y="639.50"></text></g><g><title>schedule (41 samples, 0.02%)</title><rect x="28.9534%" y="613" width="0.0183%" height="15" fill="rgb(217,152,27)" fg:x="65031" fg:w="41"/><text x="29.2034%" y="623.50"></text></g><g><title>__schedule (41 samples, 0.02%)</title><rect x="28.9534%" y="597" width="0.0183%" height="15" fill="rgb(225,71,47)" fg:x="65031" fg:w="41"/><text x="29.2034%" y="607.50"></text></g><g><title>do_syscall_64 (45 samples, 0.02%)</title><rect x="28.9520%" y="693" width="0.0200%" height="15" fill="rgb(220,139,14)" fg:x="65028" fg:w="45"/><text x="29.2020%" y="703.50"></text></g><g><title>__x64_sys_futex (45 samples, 0.02%)</title><rect x="28.9520%" y="677" width="0.0200%" height="15" fill="rgb(247,54,32)" fg:x="65028" fg:w="45"/><text x="29.2020%" y="687.50"></text></g><g><title>do_futex (45 samples, 0.02%)</title><rect x="28.9520%" y="661" width="0.0200%" height="15" fill="rgb(252,131,39)" fg:x="65028" fg:w="45"/><text x="29.2020%" y="671.50"></text></g><g><title>futex_wait (43 samples, 0.02%)</title><rect x="28.9529%" y="645" width="0.0191%" height="15" fill="rgb(210,108,39)" fg:x="65030" fg:w="43"/><text x="29.2029%" y="655.50"></text></g><g><title>__GI___clone (650 samples, 0.29%)</title><rect x="28.6836%" y="869" width="0.2894%" height="15" fill="rgb(205,23,29)" fg:x="64425" fg:w="650"/><text x="28.9336%" y="879.50"></text></g><g><title>start_thread (650 samples, 0.29%)</title><rect x="28.6836%" y="853" width="0.2894%" height="15" fill="rgb(246,139,46)" fg:x="64425" fg:w="650"/><text x="28.9336%" y="863.50"></text></g><g><title>thread_native_entry (650 samples, 0.29%)</title><rect x="28.6836%" y="837" width="0.2894%" height="15" fill="rgb(250,81,26)" fg:x="64425" fg:w="650"/><text x="28.9336%" y="847.50"></text></g><g><title>Thread::call_run (650 samples, 0.29%)</title><rect x="28.6836%" y="821" width="0.2894%" height="15" fill="rgb(214,104,7)" fg:x="64425" fg:w="650"/><text x="28.9336%" y="831.50"></text></g><g><title>GangWorker::loop (650 samples, 0.29%)</title><rect x="28.6836%" y="805" width="0.2894%" height="15" fill="rgb(233,189,8)" fg:x="64425" fg:w="650"/><text x="28.9336%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (49 samples, 0.02%)</title><rect x="28.9511%" y="789" width="0.0218%" height="15" fill="rgb(228,141,17)" fg:x="65026" fg:w="49"/><text x="29.2011%" y="799.50"></text></g><g><title>PosixSemaphore::wait (49 samples, 0.02%)</title><rect x="28.9511%" y="773" width="0.0218%" height="15" fill="rgb(247,157,1)" fg:x="65026" fg:w="49"/><text x="29.2011%" y="783.50"></text></g><g><title>__new_sem_wait_slow (49 samples, 0.02%)</title><rect x="28.9511%" y="757" width="0.0218%" height="15" fill="rgb(249,225,5)" fg:x="65026" fg:w="49"/><text x="29.2011%" y="767.50"></text></g><g><title>do_futex_wait (48 samples, 0.02%)</title><rect x="28.9516%" y="741" width="0.0214%" height="15" fill="rgb(242,55,13)" fg:x="65027" fg:w="48"/><text x="29.2016%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (48 samples, 0.02%)</title><rect x="28.9516%" y="725" width="0.0214%" height="15" fill="rgb(230,49,50)" fg:x="65027" fg:w="48"/><text x="29.2016%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.02%)</title><rect x="28.9520%" y="709" width="0.0209%" height="15" fill="rgb(241,111,38)" fg:x="65028" fg:w="47"/><text x="29.2020%" y="719.50"></text></g><g><title>GC_Thread#3 (669 samples, 0.30%)</title><rect x="28.6760%" y="885" width="0.2979%" height="15" fill="rgb(252,155,4)" fg:x="64408" fg:w="669"/><text x="28.9260%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (59 samples, 0.03%)</title><rect x="29.0050%" y="741" width="0.0263%" height="15" fill="rgb(212,69,32)" fg:x="65147" fg:w="59"/><text x="29.2550%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (102 samples, 0.05%)</title><rect x="28.9868%" y="757" width="0.0454%" height="15" fill="rgb(243,107,47)" fg:x="65106" fg:w="102"/><text x="29.2368%" y="767.50"></text></g><g><title>SpinPause (83 samples, 0.04%)</title><rect x="29.0331%" y="757" width="0.0370%" height="15" fill="rgb(247,130,12)" fg:x="65210" fg:w="83"/><text x="29.2831%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (198 samples, 0.09%)</title><rect x="28.9832%" y="773" width="0.0882%" height="15" fill="rgb(233,74,16)" fg:x="65098" fg:w="198"/><text x="29.2332%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (56 samples, 0.02%)</title><rect x="29.0767%" y="677" width="0.0249%" height="15" fill="rgb(208,58,18)" fg:x="65308" fg:w="56"/><text x="29.3267%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (41 samples, 0.02%)</title><rect x="29.0834%" y="661" width="0.0183%" height="15" fill="rgb(242,225,1)" fg:x="65323" fg:w="41"/><text x="29.3334%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (70 samples, 0.03%)</title><rect x="29.0714%" y="693" width="0.0312%" height="15" fill="rgb(249,39,40)" fg:x="65296" fg:w="70"/><text x="29.3214%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (75 samples, 0.03%)</title><rect x="29.0714%" y="773" width="0.0334%" height="15" fill="rgb(207,72,44)" fg:x="65296" fg:w="75"/><text x="29.3214%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (75 samples, 0.03%)</title><rect x="29.0714%" y="757" width="0.0334%" height="15" fill="rgb(215,193,12)" fg:x="65296" fg:w="75"/><text x="29.3214%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (75 samples, 0.03%)</title><rect x="29.0714%" y="741" width="0.0334%" height="15" fill="rgb(248,41,39)" fg:x="65296" fg:w="75"/><text x="29.3214%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (75 samples, 0.03%)</title><rect x="29.0714%" y="725" width="0.0334%" height="15" fill="rgb(253,85,4)" fg:x="65296" fg:w="75"/><text x="29.3214%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (75 samples, 0.03%)</title><rect x="29.0714%" y="709" width="0.0334%" height="15" fill="rgb(243,70,31)" fg:x="65296" fg:w="75"/><text x="29.3214%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (38 samples, 0.02%)</title><rect x="29.1047%" y="773" width="0.0169%" height="15" fill="rgb(253,195,26)" fg:x="65371" fg:w="38"/><text x="29.3547%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (38 samples, 0.02%)</title><rect x="29.1047%" y="757" width="0.0169%" height="15" fill="rgb(243,42,11)" fg:x="65371" fg:w="38"/><text x="29.3547%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (38 samples, 0.02%)</title><rect x="29.1047%" y="741" width="0.0169%" height="15" fill="rgb(239,66,17)" fg:x="65371" fg:w="38"/><text x="29.3547%" y="751.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (27 samples, 0.01%)</title><rect x="29.1217%" y="741" width="0.0120%" height="15" fill="rgb(217,132,21)" fg:x="65409" fg:w="27"/><text x="29.3717%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (27 samples, 0.01%)</title><rect x="29.1217%" y="725" width="0.0120%" height="15" fill="rgb(252,202,21)" fg:x="65409" fg:w="27"/><text x="29.3717%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (27 samples, 0.01%)</title><rect x="29.1217%" y="709" width="0.0120%" height="15" fill="rgb(233,98,36)" fg:x="65409" fg:w="27"/><text x="29.3717%" y="719.50"></text></g><g><title>G1RootProcessor::process_java_roots (66 samples, 0.03%)</title><rect x="29.1217%" y="757" width="0.0294%" height="15" fill="rgb(216,153,54)" fg:x="65409" fg:w="66"/><text x="29.3717%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (39 samples, 0.02%)</title><rect x="29.1337%" y="741" width="0.0174%" height="15" fill="rgb(250,99,7)" fg:x="65436" fg:w="39"/><text x="29.3837%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (39 samples, 0.02%)</title><rect x="29.1337%" y="725" width="0.0174%" height="15" fill="rgb(207,56,50)" fg:x="65436" fg:w="39"/><text x="29.3837%" y="735.50"></text></g><g><title>JavaThread::oops_do (39 samples, 0.02%)</title><rect x="29.1337%" y="709" width="0.0174%" height="15" fill="rgb(244,61,34)" fg:x="65436" fg:w="39"/><text x="29.3837%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (25 samples, 0.01%)</title><rect x="29.1399%" y="693" width="0.0111%" height="15" fill="rgb(241,50,38)" fg:x="65450" fg:w="25"/><text x="29.3899%" y="703.50"></text></g><g><title>G1ParTask::work (387 samples, 0.17%)</title><rect x="28.9832%" y="789" width="0.1723%" height="15" fill="rgb(212,166,30)" fg:x="65098" fg:w="387"/><text x="29.2332%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (76 samples, 0.03%)</title><rect x="29.1217%" y="773" width="0.0338%" height="15" fill="rgb(249,127,32)" fg:x="65409" fg:w="76"/><text x="29.3717%" y="783.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (81 samples, 0.04%)</title><rect x="29.1600%" y="757" width="0.0361%" height="15" fill="rgb(209,103,0)" fg:x="65495" fg:w="81"/><text x="29.4100%" y="767.50"></text></g><g><title>SpinPause (72 samples, 0.03%)</title><rect x="29.1640%" y="741" width="0.0321%" height="15" fill="rgb(238,209,51)" fg:x="65504" fg:w="72"/><text x="29.4140%" y="751.50"></text></g><g><title>RefProcPhase2Task::work (93 samples, 0.04%)</title><rect x="29.1600%" y="773" width="0.0414%" height="15" fill="rgb(237,56,23)" fg:x="65495" fg:w="93"/><text x="29.4100%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (98 samples, 0.04%)</title><rect x="29.1600%" y="789" width="0.0436%" height="15" fill="rgb(215,153,46)" fg:x="65495" fg:w="98"/><text x="29.4100%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (29 samples, 0.01%)</title><rect x="29.2036%" y="789" width="0.0129%" height="15" fill="rgb(224,49,31)" fg:x="65593" fg:w="29"/><text x="29.4536%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (27 samples, 0.01%)</title><rect x="29.2045%" y="773" width="0.0120%" height="15" fill="rgb(250,18,42)" fg:x="65595" fg:w="27"/><text x="29.4545%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.02%)</title><rect x="29.2214%" y="565" width="0.0196%" height="15" fill="rgb(215,176,39)" fg:x="65633" fg:w="44"/><text x="29.4714%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (44 samples, 0.02%)</title><rect x="29.2214%" y="549" width="0.0196%" height="15" fill="rgb(223,77,29)" fg:x="65633" fg:w="44"/><text x="29.4714%" y="559.50"></text></g><g><title>native_write_msr (43 samples, 0.02%)</title><rect x="29.2218%" y="533" width="0.0191%" height="15" fill="rgb(234,94,52)" fg:x="65634" fg:w="43"/><text x="29.4718%" y="543.50"></text></g><g><title>finish_task_switch (46 samples, 0.02%)</title><rect x="29.2214%" y="581" width="0.0205%" height="15" fill="rgb(220,154,50)" fg:x="65633" fg:w="46"/><text x="29.4714%" y="591.50"></text></g><g><title>__GI___clone (590 samples, 0.26%)</title><rect x="28.9801%" y="869" width="0.2627%" height="15" fill="rgb(212,11,10)" fg:x="65091" fg:w="590"/><text x="29.2301%" y="879.50"></text></g><g><title>start_thread (590 samples, 0.26%)</title><rect x="28.9801%" y="853" width="0.2627%" height="15" fill="rgb(205,166,19)" fg:x="65091" fg:w="590"/><text x="29.2301%" y="863.50"></text></g><g><title>thread_native_entry (590 samples, 0.26%)</title><rect x="28.9801%" y="837" width="0.2627%" height="15" fill="rgb(244,198,16)" fg:x="65091" fg:w="590"/><text x="29.2301%" y="847.50"></text></g><g><title>Thread::call_run (590 samples, 0.26%)</title><rect x="28.9801%" y="821" width="0.2627%" height="15" fill="rgb(219,69,12)" fg:x="65091" fg:w="590"/><text x="29.2301%" y="831.50"></text></g><g><title>GangWorker::loop (590 samples, 0.26%)</title><rect x="28.9801%" y="805" width="0.2627%" height="15" fill="rgb(245,30,7)" fg:x="65091" fg:w="590"/><text x="29.2301%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (58 samples, 0.03%)</title><rect x="29.2169%" y="789" width="0.0258%" height="15" fill="rgb(218,221,48)" fg:x="65623" fg:w="58"/><text x="29.4669%" y="799.50"></text></g><g><title>PosixSemaphore::wait (58 samples, 0.03%)</title><rect x="29.2169%" y="773" width="0.0258%" height="15" fill="rgb(216,66,15)" fg:x="65623" fg:w="58"/><text x="29.4669%" y="783.50"></text></g><g><title>__new_sem_wait_slow (58 samples, 0.03%)</title><rect x="29.2169%" y="757" width="0.0258%" height="15" fill="rgb(226,122,50)" fg:x="65623" fg:w="58"/><text x="29.4669%" y="767.50"></text></g><g><title>do_futex_wait (58 samples, 0.03%)</title><rect x="29.2169%" y="741" width="0.0258%" height="15" fill="rgb(239,156,16)" fg:x="65623" fg:w="58"/><text x="29.4669%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (58 samples, 0.03%)</title><rect x="29.2169%" y="725" width="0.0258%" height="15" fill="rgb(224,27,38)" fg:x="65623" fg:w="58"/><text x="29.4669%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.02%)</title><rect x="29.2178%" y="709" width="0.0249%" height="15" fill="rgb(224,39,27)" fg:x="65625" fg:w="56"/><text x="29.4678%" y="719.50"></text></g><g><title>do_syscall_64 (56 samples, 0.02%)</title><rect x="29.2178%" y="693" width="0.0249%" height="15" fill="rgb(215,92,29)" fg:x="65625" fg:w="56"/><text x="29.4678%" y="703.50"></text></g><g><title>__x64_sys_futex (55 samples, 0.02%)</title><rect x="29.2183%" y="677" width="0.0245%" height="15" fill="rgb(207,159,16)" fg:x="65626" fg:w="55"/><text x="29.4683%" y="687.50"></text></g><g><title>do_futex (55 samples, 0.02%)</title><rect x="29.2183%" y="661" width="0.0245%" height="15" fill="rgb(238,163,47)" fg:x="65626" fg:w="55"/><text x="29.4683%" y="671.50"></text></g><g><title>futex_wait (54 samples, 0.02%)</title><rect x="29.2187%" y="645" width="0.0240%" height="15" fill="rgb(219,91,49)" fg:x="65627" fg:w="54"/><text x="29.4687%" y="655.50"></text></g><g><title>futex_wait_queue_me (53 samples, 0.02%)</title><rect x="29.2192%" y="629" width="0.0236%" height="15" fill="rgb(227,167,31)" fg:x="65628" fg:w="53"/><text x="29.4692%" y="639.50"></text></g><g><title>schedule (52 samples, 0.02%)</title><rect x="29.2196%" y="613" width="0.0232%" height="15" fill="rgb(234,80,54)" fg:x="65629" fg:w="52"/><text x="29.4696%" y="623.50"></text></g><g><title>__schedule (52 samples, 0.02%)</title><rect x="29.2196%" y="597" width="0.0232%" height="15" fill="rgb(212,114,2)" fg:x="65629" fg:w="52"/><text x="29.4696%" y="607.50"></text></g><g><title>GC_Thread#4 (607 samples, 0.27%)</title><rect x="28.9738%" y="885" width="0.2703%" height="15" fill="rgb(234,50,24)" fg:x="65077" fg:w="607"/><text x="29.2238%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (52 samples, 0.02%)</title><rect x="29.2686%" y="741" width="0.0232%" height="15" fill="rgb(221,68,8)" fg:x="65739" fg:w="52"/><text x="29.5186%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (88 samples, 0.04%)</title><rect x="29.2534%" y="757" width="0.0392%" height="15" fill="rgb(254,180,31)" fg:x="65705" fg:w="88"/><text x="29.5034%" y="767.50"></text></g><g><title>SpinPause (83 samples, 0.04%)</title><rect x="29.2944%" y="757" width="0.0370%" height="15" fill="rgb(247,130,50)" fg:x="65797" fg:w="83"/><text x="29.5444%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (185 samples, 0.08%)</title><rect x="29.2512%" y="773" width="0.0824%" height="15" fill="rgb(211,109,4)" fg:x="65700" fg:w="185"/><text x="29.5012%" y="783.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (52 samples, 0.02%)</title><rect x="29.3345%" y="693" width="0.0232%" height="15" fill="rgb(238,50,21)" fg:x="65887" fg:w="52"/><text x="29.5845%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (42 samples, 0.02%)</title><rect x="29.3389%" y="677" width="0.0187%" height="15" fill="rgb(225,57,45)" fg:x="65897" fg:w="42"/><text x="29.5889%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (30 samples, 0.01%)</title><rect x="29.3443%" y="661" width="0.0134%" height="15" fill="rgb(209,196,50)" fg:x="65909" fg:w="30"/><text x="29.5943%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (58 samples, 0.03%)</title><rect x="29.3345%" y="773" width="0.0258%" height="15" fill="rgb(242,140,13)" fg:x="65887" fg:w="58"/><text x="29.5845%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (58 samples, 0.03%)</title><rect x="29.3345%" y="757" width="0.0258%" height="15" fill="rgb(217,111,7)" fg:x="65887" fg:w="58"/><text x="29.5845%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (58 samples, 0.03%)</title><rect x="29.3345%" y="741" width="0.0258%" height="15" fill="rgb(253,193,51)" fg:x="65887" fg:w="58"/><text x="29.5845%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (58 samples, 0.03%)</title><rect x="29.3345%" y="725" width="0.0258%" height="15" fill="rgb(252,70,29)" fg:x="65887" fg:w="58"/><text x="29.5845%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (58 samples, 0.03%)</title><rect x="29.3345%" y="709" width="0.0258%" height="15" fill="rgb(232,127,12)" fg:x="65887" fg:w="58"/><text x="29.5845%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (27 samples, 0.01%)</title><rect x="29.3603%" y="693" width="0.0120%" height="15" fill="rgb(211,180,21)" fg:x="65945" fg:w="27"/><text x="29.6103%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (33 samples, 0.01%)</title><rect x="29.3603%" y="709" width="0.0147%" height="15" fill="rgb(229,72,13)" fg:x="65945" fg:w="33"/><text x="29.6103%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (35 samples, 0.02%)</title><rect x="29.3603%" y="725" width="0.0156%" height="15" fill="rgb(240,211,49)" fg:x="65945" fg:w="35"/><text x="29.6103%" y="735.50"></text></g><g><title>G1RemSet::scan_rem_set (53 samples, 0.02%)</title><rect x="29.3603%" y="773" width="0.0236%" height="15" fill="rgb(219,149,40)" fg:x="65945" fg:w="53"/><text x="29.6103%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (53 samples, 0.02%)</title><rect x="29.3603%" y="757" width="0.0236%" height="15" fill="rgb(210,127,46)" fg:x="65945" fg:w="53"/><text x="29.6103%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (53 samples, 0.02%)</title><rect x="29.3603%" y="741" width="0.0236%" height="15" fill="rgb(220,106,7)" fg:x="65945" fg:w="53"/><text x="29.6103%" y="751.50"></text></g><g><title>G1RootProcessor::process_vm_roots (28 samples, 0.01%)</title><rect x="29.3924%" y="757" width="0.0125%" height="15" fill="rgb(249,31,22)" fg:x="66017" fg:w="28"/><text x="29.6424%" y="767.50"></text></g><g><title>Management::oops_do (28 samples, 0.01%)</title><rect x="29.3924%" y="741" width="0.0125%" height="15" fill="rgb(253,1,49)" fg:x="66017" fg:w="28"/><text x="29.6424%" y="751.50"></text></g><g><title>MemoryService::oops_do (28 samples, 0.01%)</title><rect x="29.3924%" y="725" width="0.0125%" height="15" fill="rgb(227,144,33)" fg:x="66017" fg:w="28"/><text x="29.6424%" y="735.50"></text></g><g><title>MemoryPool::oops_do (28 samples, 0.01%)</title><rect x="29.3924%" y="709" width="0.0125%" height="15" fill="rgb(249,163,44)" fg:x="66017" fg:w="28"/><text x="29.6424%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (28 samples, 0.01%)</title><rect x="29.3924%" y="693" width="0.0125%" height="15" fill="rgb(234,15,39)" fg:x="66017" fg:w="28"/><text x="29.6424%" y="703.50"></text></g><g><title>G1ParTask::work (350 samples, 0.16%)</title><rect x="29.2512%" y="789" width="0.1558%" height="15" fill="rgb(207,66,16)" fg:x="65700" fg:w="350"/><text x="29.5012%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (52 samples, 0.02%)</title><rect x="29.3839%" y="773" width="0.0232%" height="15" fill="rgb(233,112,24)" fg:x="65998" fg:w="52"/><text x="29.6339%" y="783.50"></text></g><g><title>RefProcPhase2Task::work (28 samples, 0.01%)</title><rect x="29.4088%" y="773" width="0.0125%" height="15" fill="rgb(230,90,22)" fg:x="66054" fg:w="28"/><text x="29.6588%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (37 samples, 0.02%)</title><rect x="29.4088%" y="789" width="0.0165%" height="15" fill="rgb(229,61,13)" fg:x="66054" fg:w="37"/><text x="29.6588%" y="799.50"></text></g><g><title>ParallelSPCleanupTask::work (27 samples, 0.01%)</title><rect x="29.4253%" y="789" width="0.0120%" height="15" fill="rgb(225,57,24)" fg:x="66091" fg:w="27"/><text x="29.6753%" y="799.50"></text></g><g><title>Threads::possibly_parallel_threads_do (26 samples, 0.01%)</title><rect x="29.4257%" y="773" width="0.0116%" height="15" fill="rgb(208,169,48)" fg:x="66092" fg:w="26"/><text x="29.6757%" y="783.50"></text></g><g><title>finish_task_switch (57 samples, 0.03%)</title><rect x="29.4413%" y="581" width="0.0254%" height="15" fill="rgb(244,218,51)" fg:x="66127" fg:w="57"/><text x="29.6913%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.03%)</title><rect x="29.4413%" y="565" width="0.0254%" height="15" fill="rgb(214,148,10)" fg:x="66127" fg:w="57"/><text x="29.6913%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.03%)</title><rect x="29.4413%" y="549" width="0.0254%" height="15" fill="rgb(225,174,27)" fg:x="66127" fg:w="57"/><text x="29.6913%" y="559.50"></text></g><g><title>native_write_msr (57 samples, 0.03%)</title><rect x="29.4413%" y="533" width="0.0254%" height="15" fill="rgb(230,96,26)" fg:x="66127" fg:w="57"/><text x="29.6913%" y="543.50"></text></g><g><title>do_syscall_64 (65 samples, 0.03%)</title><rect x="29.4391%" y="693" width="0.0289%" height="15" fill="rgb(232,10,30)" fg:x="66122" fg:w="65"/><text x="29.6891%" y="703.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.03%)</title><rect x="29.4391%" y="677" width="0.0289%" height="15" fill="rgb(222,8,50)" fg:x="66122" fg:w="65"/><text x="29.6891%" y="687.50"></text></g><g><title>do_futex (65 samples, 0.03%)</title><rect x="29.4391%" y="661" width="0.0289%" height="15" fill="rgb(213,81,27)" fg:x="66122" fg:w="65"/><text x="29.6891%" y="671.50"></text></g><g><title>futex_wait (65 samples, 0.03%)</title><rect x="29.4391%" y="645" width="0.0289%" height="15" fill="rgb(245,50,10)" fg:x="66122" fg:w="65"/><text x="29.6891%" y="655.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.03%)</title><rect x="29.4396%" y="629" width="0.0285%" height="15" fill="rgb(216,100,18)" fg:x="66123" fg:w="64"/><text x="29.6896%" y="639.50"></text></g><g><title>schedule (64 samples, 0.03%)</title><rect x="29.4396%" y="613" width="0.0285%" height="15" fill="rgb(236,147,54)" fg:x="66123" fg:w="64"/><text x="29.6896%" y="623.50"></text></g><g><title>__schedule (64 samples, 0.03%)</title><rect x="29.4396%" y="597" width="0.0285%" height="15" fill="rgb(205,143,26)" fg:x="66123" fg:w="64"/><text x="29.6896%" y="607.50"></text></g><g><title>__GI___clone (495 samples, 0.22%)</title><rect x="29.2490%" y="869" width="0.2204%" height="15" fill="rgb(236,26,9)" fg:x="65695" fg:w="495"/><text x="29.4990%" y="879.50"></text></g><g><title>start_thread (495 samples, 0.22%)</title><rect x="29.2490%" y="853" width="0.2204%" height="15" fill="rgb(221,165,53)" fg:x="65695" fg:w="495"/><text x="29.4990%" y="863.50"></text></g><g><title>thread_native_entry (495 samples, 0.22%)</title><rect x="29.2490%" y="837" width="0.2204%" height="15" fill="rgb(214,110,17)" fg:x="65695" fg:w="495"/><text x="29.4990%" y="847.50"></text></g><g><title>Thread::call_run (495 samples, 0.22%)</title><rect x="29.2490%" y="821" width="0.2204%" height="15" fill="rgb(237,197,12)" fg:x="65695" fg:w="495"/><text x="29.4990%" y="831.50"></text></g><g><title>GangWorker::loop (495 samples, 0.22%)</title><rect x="29.2490%" y="805" width="0.2204%" height="15" fill="rgb(205,84,17)" fg:x="65695" fg:w="495"/><text x="29.4990%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (71 samples, 0.03%)</title><rect x="29.4378%" y="789" width="0.0316%" height="15" fill="rgb(237,18,45)" fg:x="66119" fg:w="71"/><text x="29.6878%" y="799.50"></text></g><g><title>PosixSemaphore::wait (71 samples, 0.03%)</title><rect x="29.4378%" y="773" width="0.0316%" height="15" fill="rgb(221,87,14)" fg:x="66119" fg:w="71"/><text x="29.6878%" y="783.50"></text></g><g><title>__new_sem_wait_slow (69 samples, 0.03%)</title><rect x="29.4387%" y="757" width="0.0307%" height="15" fill="rgb(238,186,15)" fg:x="66121" fg:w="69"/><text x="29.6887%" y="767.50"></text></g><g><title>do_futex_wait (69 samples, 0.03%)</title><rect x="29.4387%" y="741" width="0.0307%" height="15" fill="rgb(208,115,11)" fg:x="66121" fg:w="69"/><text x="29.6887%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (69 samples, 0.03%)</title><rect x="29.4387%" y="725" width="0.0307%" height="15" fill="rgb(254,175,0)" fg:x="66121" fg:w="69"/><text x="29.6887%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.03%)</title><rect x="29.4391%" y="709" width="0.0303%" height="15" fill="rgb(227,24,42)" fg:x="66122" fg:w="68"/><text x="29.6891%" y="719.50"></text></g><g><title>GC_Thread#5 (507 samples, 0.23%)</title><rect x="29.2441%" y="885" width="0.2257%" height="15" fill="rgb(223,211,37)" fg:x="65684" fg:w="507"/><text x="29.4941%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (54 samples, 0.02%)</title><rect x="29.5010%" y="741" width="0.0240%" height="15" fill="rgb(235,49,27)" fg:x="66261" fg:w="54"/><text x="29.7510%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (100 samples, 0.04%)</title><rect x="29.4818%" y="757" width="0.0445%" height="15" fill="rgb(254,97,51)" fg:x="66218" fg:w="100"/><text x="29.7318%" y="767.50"></text></g><g><title>SpinPause (80 samples, 0.04%)</title><rect x="29.5286%" y="757" width="0.0356%" height="15" fill="rgb(249,51,40)" fg:x="66323" fg:w="80"/><text x="29.7786%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (201 samples, 0.09%)</title><rect x="29.4761%" y="773" width="0.0895%" height="15" fill="rgb(210,128,45)" fg:x="66205" fg:w="201"/><text x="29.7261%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (41 samples, 0.02%)</title><rect x="29.5664%" y="677" width="0.0183%" height="15" fill="rgb(224,137,50)" fg:x="66408" fg:w="41"/><text x="29.8164%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (33 samples, 0.01%)</title><rect x="29.5700%" y="661" width="0.0147%" height="15" fill="rgb(242,15,9)" fg:x="66416" fg:w="33"/><text x="29.8200%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (48 samples, 0.02%)</title><rect x="29.5656%" y="693" width="0.0214%" height="15" fill="rgb(233,187,41)" fg:x="66406" fg:w="48"/><text x="29.8156%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (57 samples, 0.03%)</title><rect x="29.5656%" y="773" width="0.0254%" height="15" fill="rgb(227,2,29)" fg:x="66406" fg:w="57"/><text x="29.8156%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (57 samples, 0.03%)</title><rect x="29.5656%" y="757" width="0.0254%" height="15" fill="rgb(222,70,3)" fg:x="66406" fg:w="57"/><text x="29.8156%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (57 samples, 0.03%)</title><rect x="29.5656%" y="741" width="0.0254%" height="15" fill="rgb(213,11,42)" fg:x="66406" fg:w="57"/><text x="29.8156%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (57 samples, 0.03%)</title><rect x="29.5656%" y="725" width="0.0254%" height="15" fill="rgb(225,150,9)" fg:x="66406" fg:w="57"/><text x="29.8156%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (57 samples, 0.03%)</title><rect x="29.5656%" y="709" width="0.0254%" height="15" fill="rgb(230,162,45)" fg:x="66406" fg:w="57"/><text x="29.8156%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (25 samples, 0.01%)</title><rect x="29.5909%" y="773" width="0.0111%" height="15" fill="rgb(222,14,52)" fg:x="66463" fg:w="25"/><text x="29.8409%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (25 samples, 0.01%)</title><rect x="29.5909%" y="757" width="0.0111%" height="15" fill="rgb(254,198,14)" fg:x="66463" fg:w="25"/><text x="29.8409%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (25 samples, 0.01%)</title><rect x="29.5909%" y="741" width="0.0111%" height="15" fill="rgb(220,217,30)" fg:x="66463" fg:w="25"/><text x="29.8409%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (65 samples, 0.03%)</title><rect x="29.6096%" y="677" width="0.0289%" height="15" fill="rgb(215,146,41)" fg:x="66505" fg:w="65"/><text x="29.8596%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (49 samples, 0.02%)</title><rect x="29.6168%" y="661" width="0.0218%" height="15" fill="rgb(217,27,36)" fg:x="66521" fg:w="49"/><text x="29.8668%" y="671.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (86 samples, 0.04%)</title><rect x="29.6021%" y="741" width="0.0383%" height="15" fill="rgb(219,218,39)" fg:x="66488" fg:w="86"/><text x="29.8521%" y="751.50"></text></g><g><title>G1CLDScanClosure::do_cld (85 samples, 0.04%)</title><rect x="29.6025%" y="725" width="0.0378%" height="15" fill="rgb(219,4,42)" fg:x="66489" fg:w="85"/><text x="29.8525%" y="735.50"></text></g><g><title>ClassLoaderData::oops_do (85 samples, 0.04%)</title><rect x="29.6025%" y="709" width="0.0378%" height="15" fill="rgb(249,119,36)" fg:x="66489" fg:w="85"/><text x="29.8525%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (80 samples, 0.04%)</title><rect x="29.6047%" y="693" width="0.0356%" height="15" fill="rgb(209,23,33)" fg:x="66494" fg:w="80"/><text x="29.8547%" y="703.50"></text></g><g><title>InterpreterOopMap::iterate_oop (24 samples, 0.01%)</title><rect x="29.6479%" y="677" width="0.0107%" height="15" fill="rgb(211,10,0)" fg:x="66591" fg:w="24"/><text x="29.8979%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (24 samples, 0.01%)</title><rect x="29.6479%" y="661" width="0.0107%" height="15" fill="rgb(208,99,37)" fg:x="66591" fg:w="24"/><text x="29.8979%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (131 samples, 0.06%)</title><rect x="29.6021%" y="757" width="0.0583%" height="15" fill="rgb(213,132,31)" fg:x="66488" fg:w="131"/><text x="29.8521%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (45 samples, 0.02%)</title><rect x="29.6403%" y="741" width="0.0200%" height="15" fill="rgb(243,129,40)" fg:x="66574" fg:w="45"/><text x="29.8903%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (45 samples, 0.02%)</title><rect x="29.6403%" y="725" width="0.0200%" height="15" fill="rgb(210,66,33)" fg:x="66574" fg:w="45"/><text x="29.8903%" y="735.50"></text></g><g><title>JavaThread::oops_do (45 samples, 0.02%)</title><rect x="29.6403%" y="709" width="0.0200%" height="15" fill="rgb(209,189,4)" fg:x="66574" fg:w="45"/><text x="29.8903%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (34 samples, 0.02%)</title><rect x="29.6452%" y="693" width="0.0151%" height="15" fill="rgb(214,107,37)" fg:x="66585" fg:w="34"/><text x="29.8952%" y="703.50"></text></g><g><title>G1ParTask::work (419 samples, 0.19%)</title><rect x="29.4761%" y="789" width="0.1865%" height="15" fill="rgb(245,88,54)" fg:x="66205" fg:w="419"/><text x="29.7261%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (136 samples, 0.06%)</title><rect x="29.6021%" y="773" width="0.0606%" height="15" fill="rgb(205,146,20)" fg:x="66488" fg:w="136"/><text x="29.8521%" y="783.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (66 samples, 0.03%)</title><rect x="29.6648%" y="757" width="0.0294%" height="15" fill="rgb(220,161,25)" fg:x="66629" fg:w="66"/><text x="29.9148%" y="767.50"></text></g><g><title>SpinPause (61 samples, 0.03%)</title><rect x="29.6671%" y="741" width="0.0272%" height="15" fill="rgb(215,152,15)" fg:x="66634" fg:w="61"/><text x="29.9171%" y="751.50"></text></g><g><title>RefProcPhase2Task::work (72 samples, 0.03%)</title><rect x="29.6648%" y="773" width="0.0321%" height="15" fill="rgb(233,192,44)" fg:x="66629" fg:w="72"/><text x="29.9148%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (76 samples, 0.03%)</title><rect x="29.6648%" y="789" width="0.0338%" height="15" fill="rgb(240,170,46)" fg:x="66629" fg:w="76"/><text x="29.9148%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.02%)</title><rect x="29.7102%" y="565" width="0.0191%" height="15" fill="rgb(207,104,33)" fg:x="66731" fg:w="43"/><text x="29.9602%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.02%)</title><rect x="29.7102%" y="549" width="0.0191%" height="15" fill="rgb(219,21,39)" fg:x="66731" fg:w="43"/><text x="29.9602%" y="559.50"></text></g><g><title>native_write_msr (43 samples, 0.02%)</title><rect x="29.7102%" y="533" width="0.0191%" height="15" fill="rgb(214,133,29)" fg:x="66731" fg:w="43"/><text x="29.9602%" y="543.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="29.7102%" y="581" width="0.0196%" height="15" fill="rgb(226,93,6)" fg:x="66731" fg:w="44"/><text x="29.9602%" y="591.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.02%)</title><rect x="29.7085%" y="629" width="0.0249%" height="15" fill="rgb(252,222,34)" fg:x="66727" fg:w="56"/><text x="29.9585%" y="639.50"></text></g><g><title>schedule (56 samples, 0.02%)</title><rect x="29.7085%" y="613" width="0.0249%" height="15" fill="rgb(252,92,48)" fg:x="66727" fg:w="56"/><text x="29.9585%" y="623.50"></text></g><g><title>__schedule (56 samples, 0.02%)</title><rect x="29.7085%" y="597" width="0.0249%" height="15" fill="rgb(245,223,24)" fg:x="66727" fg:w="56"/><text x="29.9585%" y="607.50"></text></g><g><title>do_syscall_64 (57 samples, 0.03%)</title><rect x="29.7085%" y="693" width="0.0254%" height="15" fill="rgb(205,176,3)" fg:x="66727" fg:w="57"/><text x="29.9585%" y="703.50"></text></g><g><title>__x64_sys_futex (57 samples, 0.03%)</title><rect x="29.7085%" y="677" width="0.0254%" height="15" fill="rgb(235,151,15)" fg:x="66727" fg:w="57"/><text x="29.9585%" y="687.50"></text></g><g><title>do_futex (57 samples, 0.03%)</title><rect x="29.7085%" y="661" width="0.0254%" height="15" fill="rgb(237,209,11)" fg:x="66727" fg:w="57"/><text x="29.9585%" y="671.50"></text></g><g><title>futex_wait (57 samples, 0.03%)</title><rect x="29.7085%" y="645" width="0.0254%" height="15" fill="rgb(243,227,24)" fg:x="66727" fg:w="57"/><text x="29.9585%" y="655.50"></text></g><g><title>__GI___clone (585 samples, 0.26%)</title><rect x="29.4738%" y="869" width="0.2605%" height="15" fill="rgb(239,193,16)" fg:x="66200" fg:w="585"/><text x="29.7238%" y="879.50"></text></g><g><title>start_thread (585 samples, 0.26%)</title><rect x="29.4738%" y="853" width="0.2605%" height="15" fill="rgb(231,27,9)" fg:x="66200" fg:w="585"/><text x="29.7238%" y="863.50"></text></g><g><title>thread_native_entry (585 samples, 0.26%)</title><rect x="29.4738%" y="837" width="0.2605%" height="15" fill="rgb(219,169,10)" fg:x="66200" fg:w="585"/><text x="29.7238%" y="847.50"></text></g><g><title>Thread::call_run (585 samples, 0.26%)</title><rect x="29.4738%" y="821" width="0.2605%" height="15" fill="rgb(244,229,43)" fg:x="66200" fg:w="585"/><text x="29.7238%" y="831.50"></text></g><g><title>GangWorker::loop (585 samples, 0.26%)</title><rect x="29.4738%" y="805" width="0.2605%" height="15" fill="rgb(254,38,20)" fg:x="66200" fg:w="585"/><text x="29.7238%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (59 samples, 0.03%)</title><rect x="29.7080%" y="789" width="0.0263%" height="15" fill="rgb(250,47,30)" fg:x="66726" fg:w="59"/><text x="29.9580%" y="799.50"></text></g><g><title>PosixSemaphore::wait (59 samples, 0.03%)</title><rect x="29.7080%" y="773" width="0.0263%" height="15" fill="rgb(224,124,36)" fg:x="66726" fg:w="59"/><text x="29.9580%" y="783.50"></text></g><g><title>__new_sem_wait_slow (59 samples, 0.03%)</title><rect x="29.7080%" y="757" width="0.0263%" height="15" fill="rgb(246,68,51)" fg:x="66726" fg:w="59"/><text x="29.9580%" y="767.50"></text></g><g><title>do_futex_wait (59 samples, 0.03%)</title><rect x="29.7080%" y="741" width="0.0263%" height="15" fill="rgb(253,43,49)" fg:x="66726" fg:w="59"/><text x="29.9580%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (59 samples, 0.03%)</title><rect x="29.7080%" y="725" width="0.0263%" height="15" fill="rgb(219,54,36)" fg:x="66726" fg:w="59"/><text x="29.9580%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.03%)</title><rect x="29.7085%" y="709" width="0.0258%" height="15" fill="rgb(227,133,34)" fg:x="66727" fg:w="58"/><text x="29.9585%" y="719.50"></text></g><g><title>GC_Thread#6 (599 samples, 0.27%)</title><rect x="29.4698%" y="885" width="0.2667%" height="15" fill="rgb(247,227,15)" fg:x="66191" fg:w="599"/><text x="29.7198%" y="895.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (43 samples, 0.02%)</title><rect x="29.7614%" y="741" width="0.0191%" height="15" fill="rgb(229,96,14)" fg:x="66846" fg:w="43"/><text x="30.0114%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue (90 samples, 0.04%)</title><rect x="29.7441%" y="757" width="0.0401%" height="15" fill="rgb(220,79,17)" fg:x="66807" fg:w="90"/><text x="29.9941%" y="767.50"></text></g><g><title>SpinPause (46 samples, 0.02%)</title><rect x="29.7855%" y="757" width="0.0205%" height="15" fill="rgb(205,131,53)" fg:x="66900" fg:w="46"/><text x="30.0355%" y="767.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (141 samples, 0.06%)</title><rect x="29.7436%" y="773" width="0.0628%" height="15" fill="rgb(209,50,29)" fg:x="66806" fg:w="141"/><text x="29.9936%" y="783.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (35 samples, 0.02%)</title><rect x="29.8082%" y="677" width="0.0156%" height="15" fill="rgb(245,86,46)" fg:x="66951" fg:w="35"/><text x="30.0582%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (28 samples, 0.01%)</title><rect x="29.8113%" y="661" width="0.0125%" height="15" fill="rgb(235,66,46)" fg:x="66958" fg:w="28"/><text x="30.0613%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (41 samples, 0.02%)</title><rect x="29.8064%" y="693" width="0.0183%" height="15" fill="rgb(232,148,31)" fg:x="66947" fg:w="41"/><text x="30.0564%" y="703.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (49 samples, 0.02%)</title><rect x="29.8064%" y="773" width="0.0218%" height="15" fill="rgb(217,149,8)" fg:x="66947" fg:w="49"/><text x="30.0564%" y="783.50"></text></g><g><title>G1RemSet::update_rem_set (49 samples, 0.02%)</title><rect x="29.8064%" y="757" width="0.0218%" height="15" fill="rgb(209,183,11)" fg:x="66947" fg:w="49"/><text x="30.0564%" y="767.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (49 samples, 0.02%)</title><rect x="29.8064%" y="741" width="0.0218%" height="15" fill="rgb(208,55,20)" fg:x="66947" fg:w="49"/><text x="30.0564%" y="751.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (49 samples, 0.02%)</title><rect x="29.8064%" y="725" width="0.0218%" height="15" fill="rgb(218,39,14)" fg:x="66947" fg:w="49"/><text x="30.0564%" y="735.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (49 samples, 0.02%)</title><rect x="29.8064%" y="709" width="0.0218%" height="15" fill="rgb(216,169,33)" fg:x="66947" fg:w="49"/><text x="30.0564%" y="719.50"></text></g><g><title>G1RemSet::scan_rem_set (26 samples, 0.01%)</title><rect x="29.8282%" y="773" width="0.0116%" height="15" fill="rgb(233,80,24)" fg:x="66996" fg:w="26"/><text x="30.0782%" y="783.50"></text></g><g><title>G1CollectionSet::iterate_from (26 samples, 0.01%)</title><rect x="29.8282%" y="757" width="0.0116%" height="15" fill="rgb(213,179,31)" fg:x="66996" fg:w="26"/><text x="30.0782%" y="767.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (26 samples, 0.01%)</title><rect x="29.8282%" y="741" width="0.0116%" height="15" fill="rgb(209,19,5)" fg:x="66996" fg:w="26"/><text x="30.0782%" y="751.50"></text></g><g><title>InterpreterOopMap::iterate_oop (34 samples, 0.02%)</title><rect x="29.8514%" y="677" width="0.0151%" height="15" fill="rgb(219,18,35)" fg:x="67048" fg:w="34"/><text x="30.1014%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (33 samples, 0.01%)</title><rect x="29.8518%" y="661" width="0.0147%" height="15" fill="rgb(209,169,16)" fg:x="67049" fg:w="33"/><text x="30.1018%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (61 samples, 0.03%)</title><rect x="29.8398%" y="757" width="0.0272%" height="15" fill="rgb(245,90,51)" fg:x="67022" fg:w="61"/><text x="30.0898%" y="767.50"></text></g><g><title>Threads::possibly_parallel_oops_do (42 samples, 0.02%)</title><rect x="29.8483%" y="741" width="0.0187%" height="15" fill="rgb(220,99,45)" fg:x="67041" fg:w="42"/><text x="30.0983%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (42 samples, 0.02%)</title><rect x="29.8483%" y="725" width="0.0187%" height="15" fill="rgb(249,89,25)" fg:x="67041" fg:w="42"/><text x="30.0983%" y="735.50"></text></g><g><title>JavaThread::oops_do (42 samples, 0.02%)</title><rect x="29.8483%" y="709" width="0.0187%" height="15" fill="rgb(239,193,0)" fg:x="67041" fg:w="42"/><text x="30.0983%" y="719.50"></text></g><g><title>frame::oops_interpreted_do (35 samples, 0.02%)</title><rect x="29.8514%" y="693" width="0.0156%" height="15" fill="rgb(231,126,1)" fg:x="67048" fg:w="35"/><text x="30.1014%" y="703.50"></text></g><g><title>G1ParTask::work (305 samples, 0.14%)</title><rect x="29.7436%" y="789" width="0.1358%" height="15" fill="rgb(243,166,3)" fg:x="66806" fg:w="305"/><text x="29.9936%" y="799.50"></text></g><g><title>G1RootProcessor::evacuate_roots (89 samples, 0.04%)</title><rect x="29.8398%" y="773" width="0.0396%" height="15" fill="rgb(223,22,34)" fg:x="67022" fg:w="89"/><text x="30.0898%" y="783.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (26 samples, 0.01%)</title><rect x="29.8679%" y="757" width="0.0116%" height="15" fill="rgb(251,52,51)" fg:x="67085" fg:w="26"/><text x="30.1179%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (23 samples, 0.01%)</title><rect x="29.8692%" y="741" width="0.0102%" height="15" fill="rgb(221,165,28)" fg:x="67088" fg:w="23"/><text x="30.1192%" y="751.50"></text></g><g><title>RefProcPhase2Task::work (24 samples, 0.01%)</title><rect x="29.8852%" y="773" width="0.0107%" height="15" fill="rgb(218,121,47)" fg:x="67124" fg:w="24"/><text x="30.1352%" y="783.50"></text></g><g><title>G1STWRefProcTaskProxy::work (31 samples, 0.01%)</title><rect x="29.8852%" y="789" width="0.0138%" height="15" fill="rgb(209,120,9)" fg:x="67124" fg:w="31"/><text x="30.1352%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.01%)</title><rect x="29.9102%" y="565" width="0.0142%" height="15" fill="rgb(236,68,12)" fg:x="67180" fg:w="32"/><text x="30.1602%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.01%)</title><rect x="29.9106%" y="549" width="0.0138%" height="15" fill="rgb(225,194,26)" fg:x="67181" fg:w="31"/><text x="30.1606%" y="559.50"></text></g><g><title>native_write_msr (31 samples, 0.01%)</title><rect x="29.9106%" y="533" width="0.0138%" height="15" fill="rgb(231,84,39)" fg:x="67181" fg:w="31"/><text x="30.1606%" y="543.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="29.9102%" y="581" width="0.0156%" height="15" fill="rgb(210,11,45)" fg:x="67180" fg:w="35"/><text x="30.1602%" y="591.50"></text></g><g><title>__x64_sys_futex (41 samples, 0.02%)</title><rect x="29.9084%" y="677" width="0.0183%" height="15" fill="rgb(224,54,52)" fg:x="67176" fg:w="41"/><text x="30.1584%" y="687.50"></text></g><g><title>do_futex (41 samples, 0.02%)</title><rect x="29.9084%" y="661" width="0.0183%" height="15" fill="rgb(238,102,14)" fg:x="67176" fg:w="41"/><text x="30.1584%" y="671.50"></text></g><g><title>futex_wait (40 samples, 0.02%)</title><rect x="29.9088%" y="645" width="0.0178%" height="15" fill="rgb(243,160,52)" fg:x="67177" fg:w="40"/><text x="30.1588%" y="655.50"></text></g><g><title>futex_wait_queue_me (39 samples, 0.02%)</title><rect x="29.9093%" y="629" width="0.0174%" height="15" fill="rgb(216,114,19)" fg:x="67178" fg:w="39"/><text x="30.1593%" y="639.50"></text></g><g><title>schedule (39 samples, 0.02%)</title><rect x="29.9093%" y="613" width="0.0174%" height="15" fill="rgb(244,166,37)" fg:x="67178" fg:w="39"/><text x="30.1593%" y="623.50"></text></g><g><title>__schedule (39 samples, 0.02%)</title><rect x="29.9093%" y="597" width="0.0174%" height="15" fill="rgb(246,29,44)" fg:x="67178" fg:w="39"/><text x="30.1593%" y="607.50"></text></g><g><title>do_syscall_64 (43 samples, 0.02%)</title><rect x="29.9079%" y="693" width="0.0191%" height="15" fill="rgb(215,56,53)" fg:x="67175" fg:w="43"/><text x="30.1579%" y="703.50"></text></g><g><title>__GI___clone (421 samples, 0.19%)</title><rect x="29.7410%" y="869" width="0.1874%" height="15" fill="rgb(217,60,2)" fg:x="66800" fg:w="421"/><text x="29.9910%" y="879.50"></text></g><g><title>start_thread (421 samples, 0.19%)</title><rect x="29.7410%" y="853" width="0.1874%" height="15" fill="rgb(207,26,24)" fg:x="66800" fg:w="421"/><text x="29.9910%" y="863.50"></text></g><g><title>thread_native_entry (421 samples, 0.19%)</title><rect x="29.7410%" y="837" width="0.1874%" height="15" fill="rgb(252,210,15)" fg:x="66800" fg:w="421"/><text x="29.9910%" y="847.50"></text></g><g><title>Thread::call_run (421 samples, 0.19%)</title><rect x="29.7410%" y="821" width="0.1874%" height="15" fill="rgb(253,209,26)" fg:x="66800" fg:w="421"/><text x="29.9910%" y="831.50"></text></g><g><title>GangWorker::loop (421 samples, 0.19%)</title><rect x="29.7410%" y="805" width="0.1874%" height="15" fill="rgb(238,170,14)" fg:x="66800" fg:w="421"/><text x="29.9910%" y="815.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (49 samples, 0.02%)</title><rect x="29.9066%" y="789" width="0.0218%" height="15" fill="rgb(216,178,15)" fg:x="67172" fg:w="49"/><text x="30.1566%" y="799.50"></text></g><g><title>PosixSemaphore::wait (49 samples, 0.02%)</title><rect x="29.9066%" y="773" width="0.0218%" height="15" fill="rgb(250,197,2)" fg:x="67172" fg:w="49"/><text x="30.1566%" y="783.50"></text></g><g><title>__new_sem_wait_slow (49 samples, 0.02%)</title><rect x="29.9066%" y="757" width="0.0218%" height="15" fill="rgb(212,70,42)" fg:x="67172" fg:w="49"/><text x="30.1566%" y="767.50"></text></g><g><title>do_futex_wait (49 samples, 0.02%)</title><rect x="29.9066%" y="741" width="0.0218%" height="15" fill="rgb(227,213,9)" fg:x="67172" fg:w="49"/><text x="30.1566%" y="751.50"></text></g><g><title>futex_abstimed_wait_cancelable (49 samples, 0.02%)</title><rect x="29.9066%" y="725" width="0.0218%" height="15" fill="rgb(245,99,25)" fg:x="67172" fg:w="49"/><text x="30.1566%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="29.9079%" y="709" width="0.0205%" height="15" fill="rgb(250,82,29)" fg:x="67175" fg:w="46"/><text x="30.1579%" y="719.50"></text></g><g><title>GC_Thread#7 (433 samples, 0.19%)</title><rect x="29.7365%" y="885" width="0.1928%" height="15" fill="rgb(241,226,54)" fg:x="66790" fg:w="433"/><text x="29.9865%" y="895.50"></text></g><g><title>Reference_Handl (23 samples, 0.01%)</title><rect x="29.9306%" y="885" width="0.0102%" height="15" fill="rgb(221,99,41)" fg:x="67226" fg:w="23"/><text x="30.1806%" y="895.50"></text></g><g><title>[perf-501242.map] (106 samples, 0.05%)</title><rect x="29.9431%" y="869" width="0.0472%" height="15" fill="rgb(213,90,21)" fg:x="67254" fg:w="106"/><text x="30.1931%" y="879.50"></text></g><g><title>Service_Thread (123 samples, 0.05%)</title><rect x="29.9413%" y="885" width="0.0548%" height="15" fill="rgb(205,208,24)" fg:x="67250" fg:w="123"/><text x="30.1913%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (138 samples, 0.06%)</title><rect x="30.0410%" y="533" width="0.0614%" height="15" fill="rgb(246,31,12)" fg:x="67474" fg:w="138"/><text x="30.2910%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (136 samples, 0.06%)</title><rect x="30.0419%" y="517" width="0.0606%" height="15" fill="rgb(213,154,6)" fg:x="67476" fg:w="136"/><text x="30.2919%" y="527.50"></text></g><g><title>native_write_msr (136 samples, 0.06%)</title><rect x="30.0419%" y="501" width="0.0606%" height="15" fill="rgb(222,163,29)" fg:x="67476" fg:w="136"/><text x="30.2919%" y="511.50"></text></g><g><title>finish_task_switch (151 samples, 0.07%)</title><rect x="30.0393%" y="549" width="0.0672%" height="15" fill="rgb(227,201,8)" fg:x="67470" fg:w="151"/><text x="30.2893%" y="559.50"></text></g><g><title>futex_wait_queue_me (207 samples, 0.09%)</title><rect x="30.0237%" y="597" width="0.0922%" height="15" fill="rgb(233,9,32)" fg:x="67435" fg:w="207"/><text x="30.2737%" y="607.50"></text></g><g><title>schedule (196 samples, 0.09%)</title><rect x="30.0286%" y="581" width="0.0873%" height="15" fill="rgb(217,54,24)" fg:x="67446" fg:w="196"/><text x="30.2786%" y="591.50"></text></g><g><title>__schedule (194 samples, 0.09%)</title><rect x="30.0295%" y="565" width="0.0864%" height="15" fill="rgb(235,192,0)" fg:x="67448" fg:w="194"/><text x="30.2795%" y="575.50"></text></g><g><title>do_futex (224 samples, 0.10%)</title><rect x="30.0228%" y="629" width="0.0997%" height="15" fill="rgb(235,45,9)" fg:x="67433" fg:w="224"/><text x="30.2728%" y="639.50"></text></g><g><title>futex_wait (223 samples, 0.10%)</title><rect x="30.0232%" y="613" width="0.0993%" height="15" fill="rgb(246,42,40)" fg:x="67434" fg:w="223"/><text x="30.2732%" y="623.50"></text></g><g><title>do_syscall_64 (231 samples, 0.10%)</title><rect x="30.0215%" y="661" width="0.1028%" height="15" fill="rgb(248,111,24)" fg:x="67430" fg:w="231"/><text x="30.2715%" y="671.50"></text></g><g><title>__x64_sys_futex (231 samples, 0.10%)</title><rect x="30.0215%" y="645" width="0.1028%" height="15" fill="rgb(249,65,22)" fg:x="67430" fg:w="231"/><text x="30.2715%" y="655.50"></text></g><g><title>__pthread_cond_timedwait (250 samples, 0.11%)</title><rect x="30.0152%" y="725" width="0.1113%" height="15" fill="rgb(238,111,51)" fg:x="67416" fg:w="250"/><text x="30.2652%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (250 samples, 0.11%)</title><rect x="30.0152%" y="709" width="0.1113%" height="15" fill="rgb(250,118,22)" fg:x="67416" fg:w="250"/><text x="30.2652%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (245 samples, 0.11%)</title><rect x="30.0175%" y="693" width="0.1091%" height="15" fill="rgb(234,84,26)" fg:x="67421" fg:w="245"/><text x="30.2675%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (237 samples, 0.11%)</title><rect x="30.0210%" y="677" width="0.1055%" height="15" fill="rgb(243,172,12)" fg:x="67429" fg:w="237"/><text x="30.2710%" y="687.50"></text></g><g><title>Monitor::IWait (276 samples, 0.12%)</title><rect x="30.0103%" y="757" width="0.1229%" height="15" fill="rgb(236,150,49)" fg:x="67405" fg:w="276"/><text x="30.2603%" y="767.50"></text></g><g><title>os::PlatformEvent::park (270 samples, 0.12%)</title><rect x="30.0130%" y="741" width="0.1202%" height="15" fill="rgb(225,197,26)" fg:x="67411" fg:w="270"/><text x="30.2630%" y="751.50"></text></g><g><title>Monitor::wait (278 samples, 0.12%)</title><rect x="30.0099%" y="773" width="0.1238%" height="15" fill="rgb(214,17,42)" fg:x="67404" fg:w="278"/><text x="30.2599%" y="783.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (107 samples, 0.05%)</title><rect x="30.1430%" y="725" width="0.0476%" height="15" fill="rgb(224,165,40)" fg:x="67703" fg:w="107"/><text x="30.3930%" y="735.50"></text></g><g><title>NMethodSweeper::process_compiled_method (153 samples, 0.07%)</title><rect x="30.1426%" y="741" width="0.0681%" height="15" fill="rgb(246,100,4)" fg:x="67702" fg:w="153"/><text x="30.3926%" y="751.50"></text></g><g><title>NMethodSweeper::possibly_sweep (179 samples, 0.08%)</title><rect x="30.1337%" y="773" width="0.0797%" height="15" fill="rgb(222,103,0)" fg:x="67682" fg:w="179"/><text x="30.3837%" y="783.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (172 samples, 0.08%)</title><rect x="30.1368%" y="757" width="0.0766%" height="15" fill="rgb(227,189,26)" fg:x="67689" fg:w="172"/><text x="30.3868%" y="767.50"></text></g><g><title>__GI___clone (474 samples, 0.21%)</title><rect x="30.0063%" y="869" width="0.2110%" height="15" fill="rgb(214,202,17)" fg:x="67396" fg:w="474"/><text x="30.2563%" y="879.50"></text></g><g><title>start_thread (474 samples, 0.21%)</title><rect x="30.0063%" y="853" width="0.2110%" height="15" fill="rgb(229,111,3)" fg:x="67396" fg:w="474"/><text x="30.2563%" y="863.50"></text></g><g><title>thread_native_entry (474 samples, 0.21%)</title><rect x="30.0063%" y="837" width="0.2110%" height="15" fill="rgb(229,172,15)" fg:x="67396" fg:w="474"/><text x="30.2563%" y="847.50"></text></g><g><title>Thread::call_run (474 samples, 0.21%)</title><rect x="30.0063%" y="821" width="0.2110%" height="15" fill="rgb(230,224,35)" fg:x="67396" fg:w="474"/><text x="30.2563%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (474 samples, 0.21%)</title><rect x="30.0063%" y="805" width="0.2110%" height="15" fill="rgb(251,141,6)" fg:x="67396" fg:w="474"/><text x="30.2563%" y="815.50"></text></g><g><title>NMethodSweeper::sweeper_loop (474 samples, 0.21%)</title><rect x="30.0063%" y="789" width="0.2110%" height="15" fill="rgb(225,208,6)" fg:x="67396" fg:w="474"/><text x="30.2563%" y="799.50"></text></g><g><title>Sweeper_thread (493 samples, 0.22%)</title><rect x="29.9992%" y="885" width="0.2195%" height="15" fill="rgb(246,181,16)" fg:x="67380" fg:w="493"/><text x="30.2492%" y="895.50"></text></g><g><title>finish_task_switch (43 samples, 0.02%)</title><rect x="30.2712%" y="629" width="0.0191%" height="15" fill="rgb(227,129,36)" fg:x="67991" fg:w="43"/><text x="30.5212%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.02%)</title><rect x="30.2712%" y="613" width="0.0191%" height="15" fill="rgb(248,117,24)" fg:x="67991" fg:w="43"/><text x="30.5212%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.02%)</title><rect x="30.2712%" y="597" width="0.0191%" height="15" fill="rgb(214,185,35)" fg:x="67991" fg:w="43"/><text x="30.5212%" y="607.50"></text></g><g><title>native_write_msr (43 samples, 0.02%)</title><rect x="30.2712%" y="581" width="0.0191%" height="15" fill="rgb(236,150,34)" fg:x="67991" fg:w="43"/><text x="30.5212%" y="591.50"></text></g><g><title>do_syscall_64 (48 samples, 0.02%)</title><rect x="30.2694%" y="741" width="0.0214%" height="15" fill="rgb(243,228,27)" fg:x="67987" fg:w="48"/><text x="30.5194%" y="751.50"></text></g><g><title>__x64_sys_futex (48 samples, 0.02%)</title><rect x="30.2694%" y="725" width="0.0214%" height="15" fill="rgb(245,77,44)" fg:x="67987" fg:w="48"/><text x="30.5194%" y="735.50"></text></g><g><title>do_futex (48 samples, 0.02%)</title><rect x="30.2694%" y="709" width="0.0214%" height="15" fill="rgb(235,214,42)" fg:x="67987" fg:w="48"/><text x="30.5194%" y="719.50"></text></g><g><title>futex_wait (48 samples, 0.02%)</title><rect x="30.2694%" y="693" width="0.0214%" height="15" fill="rgb(221,74,3)" fg:x="67987" fg:w="48"/><text x="30.5194%" y="703.50"></text></g><g><title>futex_wait_queue_me (46 samples, 0.02%)</title><rect x="30.2703%" y="677" width="0.0205%" height="15" fill="rgb(206,121,29)" fg:x="67989" fg:w="46"/><text x="30.5203%" y="687.50"></text></g><g><title>schedule (45 samples, 0.02%)</title><rect x="30.2708%" y="661" width="0.0200%" height="15" fill="rgb(249,131,53)" fg:x="67990" fg:w="45"/><text x="30.5208%" y="671.50"></text></g><g><title>__schedule (45 samples, 0.02%)</title><rect x="30.2708%" y="645" width="0.0200%" height="15" fill="rgb(236,170,29)" fg:x="67990" fg:w="45"/><text x="30.5208%" y="655.50"></text></g><g><title>__pthread_cond_timedwait (53 samples, 0.02%)</title><rect x="30.2681%" y="805" width="0.0236%" height="15" fill="rgb(247,96,15)" fg:x="67984" fg:w="53"/><text x="30.5181%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (53 samples, 0.02%)</title><rect x="30.2681%" y="789" width="0.0236%" height="15" fill="rgb(211,210,7)" fg:x="67984" fg:w="53"/><text x="30.5181%" y="799.50"></text></g><g><title>futex_abstimed_wait_cancelable (52 samples, 0.02%)</title><rect x="30.2686%" y="773" width="0.0232%" height="15" fill="rgb(240,88,50)" fg:x="67985" fg:w="52"/><text x="30.5186%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.02%)</title><rect x="30.2694%" y="757" width="0.0223%" height="15" fill="rgb(209,229,26)" fg:x="67987" fg:w="50"/><text x="30.5194%" y="767.50"></text></g><g><title>JVM_Sleep (54 samples, 0.02%)</title><rect x="30.2681%" y="853" width="0.0240%" height="15" fill="rgb(210,68,23)" fg:x="67984" fg:w="54"/><text x="30.5181%" y="863.50"></text></g><g><title>os::sleep (54 samples, 0.02%)</title><rect x="30.2681%" y="837" width="0.0240%" height="15" fill="rgb(229,180,13)" fg:x="67984" fg:w="54"/><text x="30.5181%" y="847.50"></text></g><g><title>os::PlatformEvent::park (54 samples, 0.02%)</title><rect x="30.2681%" y="821" width="0.0240%" height="15" fill="rgb(236,53,44)" fg:x="67984" fg:w="54"/><text x="30.5181%" y="831.50"></text></g><g><title>[perf-501242.map] (217 samples, 0.10%)</title><rect x="30.2236%" y="869" width="0.0966%" height="15" fill="rgb(244,214,29)" fg:x="67884" fg:w="217"/><text x="30.4736%" y="879.50"></text></g><g><title>Thread-0 (240 samples, 0.11%)</title><rect x="30.2187%" y="885" width="0.1069%" height="15" fill="rgb(220,75,29)" fg:x="67873" fg:w="240"/><text x="30.4687%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.01%)</title><rect x="30.3380%" y="533" width="0.0107%" height="15" fill="rgb(214,183,37)" fg:x="68141" fg:w="24"/><text x="30.5880%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="30.3380%" y="517" width="0.0107%" height="15" fill="rgb(239,117,29)" fg:x="68141" fg:w="24"/><text x="30.5880%" y="527.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="30.3380%" y="501" width="0.0107%" height="15" fill="rgb(237,171,35)" fg:x="68141" fg:w="24"/><text x="30.5880%" y="511.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="30.3371%" y="549" width="0.0125%" height="15" fill="rgb(229,178,53)" fg:x="68139" fg:w="28"/><text x="30.5871%" y="559.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.02%)</title><rect x="30.3353%" y="597" width="0.0151%" height="15" fill="rgb(210,102,19)" fg:x="68135" fg:w="34"/><text x="30.5853%" y="607.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="30.3358%" y="581" width="0.0147%" height="15" fill="rgb(235,127,22)" fg:x="68136" fg:w="33"/><text x="30.5858%" y="591.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="30.3358%" y="565" width="0.0147%" height="15" fill="rgb(244,31,31)" fg:x="68136" fg:w="33"/><text x="30.5858%" y="575.50"></text></g><g><title>__pthread_cond_timedwait (39 samples, 0.02%)</title><rect x="30.3336%" y="725" width="0.0174%" height="15" fill="rgb(231,43,21)" fg:x="68131" fg:w="39"/><text x="30.5836%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (38 samples, 0.02%)</title><rect x="30.3340%" y="709" width="0.0169%" height="15" fill="rgb(217,131,35)" fg:x="68132" fg:w="38"/><text x="30.5840%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (38 samples, 0.02%)</title><rect x="30.3340%" y="693" width="0.0169%" height="15" fill="rgb(221,149,4)" fg:x="68132" fg:w="38"/><text x="30.5840%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="30.3340%" y="677" width="0.0169%" height="15" fill="rgb(232,170,28)" fg:x="68132" fg:w="38"/><text x="30.5840%" y="687.50"></text></g><g><title>do_syscall_64 (38 samples, 0.02%)</title><rect x="30.3340%" y="661" width="0.0169%" height="15" fill="rgb(238,56,10)" fg:x="68132" fg:w="38"/><text x="30.5840%" y="671.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.02%)</title><rect x="30.3340%" y="645" width="0.0169%" height="15" fill="rgb(235,196,14)" fg:x="68132" fg:w="38"/><text x="30.5840%" y="655.50"></text></g><g><title>do_futex (37 samples, 0.02%)</title><rect x="30.3345%" y="629" width="0.0165%" height="15" fill="rgb(216,45,48)" fg:x="68133" fg:w="37"/><text x="30.5845%" y="639.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="30.3353%" y="613" width="0.0156%" height="15" fill="rgb(238,213,17)" fg:x="68135" fg:w="35"/><text x="30.5853%" y="623.50"></text></g><g><title>__GI___clone (58 samples, 0.03%)</title><rect x="30.3264%" y="869" width="0.0258%" height="15" fill="rgb(212,13,2)" fg:x="68115" fg:w="58"/><text x="30.5764%" y="879.50"></text></g><g><title>start_thread (58 samples, 0.03%)</title><rect x="30.3264%" y="853" width="0.0258%" height="15" fill="rgb(240,114,20)" fg:x="68115" fg:w="58"/><text x="30.5764%" y="863.50"></text></g><g><title>thread_native_entry (58 samples, 0.03%)</title><rect x="30.3264%" y="837" width="0.0258%" height="15" fill="rgb(228,41,40)" fg:x="68115" fg:w="58"/><text x="30.5764%" y="847.50"></text></g><g><title>Thread::call_run (58 samples, 0.03%)</title><rect x="30.3264%" y="821" width="0.0258%" height="15" fill="rgb(244,132,35)" fg:x="68115" fg:w="58"/><text x="30.5764%" y="831.50"></text></g><g><title>WatcherThread::run (58 samples, 0.03%)</title><rect x="30.3264%" y="805" width="0.0258%" height="15" fill="rgb(253,189,4)" fg:x="68115" fg:w="58"/><text x="30.5764%" y="815.50"></text></g><g><title>WatcherThread::sleep (44 samples, 0.02%)</title><rect x="30.3327%" y="789" width="0.0196%" height="15" fill="rgb(224,37,19)" fg:x="68129" fg:w="44"/><text x="30.5827%" y="799.50"></text></g><g><title>Monitor::wait (44 samples, 0.02%)</title><rect x="30.3327%" y="773" width="0.0196%" height="15" fill="rgb(235,223,18)" fg:x="68129" fg:w="44"/><text x="30.5827%" y="783.50"></text></g><g><title>Monitor::IWait (44 samples, 0.02%)</title><rect x="30.3327%" y="757" width="0.0196%" height="15" fill="rgb(235,163,25)" fg:x="68129" fg:w="44"/><text x="30.5827%" y="767.50"></text></g><g><title>os::PlatformEvent::park (44 samples, 0.02%)</title><rect x="30.3327%" y="741" width="0.0196%" height="15" fill="rgb(217,145,28)" fg:x="68129" fg:w="44"/><text x="30.5827%" y="751.50"></text></g><g><title>VM_Periodic_Tas (63 samples, 0.03%)</title><rect x="30.3255%" y="885" width="0.0280%" height="15" fill="rgb(223,223,32)" fg:x="68113" fg:w="63"/><text x="30.5755%" y="895.50"></text></g><g><title>[unknown] (74 samples, 0.03%)</title><rect x="30.3603%" y="869" width="0.0329%" height="15" fill="rgb(227,189,39)" fg:x="68191" fg:w="74"/><text x="30.6103%" y="879.50"></text></g><g><title>vframe::sender (69 samples, 0.03%)</title><rect x="30.3625%" y="853" width="0.0307%" height="15" fill="rgb(248,10,22)" fg:x="68196" fg:w="69"/><text x="30.6125%" y="863.50"></text></g><g><title>schedule_tail (42 samples, 0.02%)</title><rect x="30.3937%" y="837" width="0.0187%" height="15" fill="rgb(248,46,39)" fg:x="68266" fg:w="42"/><text x="30.6437%" y="847.50"></text></g><g><title>finish_task_switch (42 samples, 0.02%)</title><rect x="30.3937%" y="821" width="0.0187%" height="15" fill="rgb(248,113,48)" fg:x="68266" fg:w="42"/><text x="30.6437%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.02%)</title><rect x="30.3937%" y="805" width="0.0187%" height="15" fill="rgb(245,16,25)" fg:x="68266" fg:w="42"/><text x="30.6437%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (37 samples, 0.02%)</title><rect x="30.3959%" y="789" width="0.0165%" height="15" fill="rgb(249,152,16)" fg:x="68271" fg:w="37"/><text x="30.6459%" y="799.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="30.3963%" y="773" width="0.0160%" height="15" fill="rgb(250,16,1)" fg:x="68272" fg:w="36"/><text x="30.6463%" y="783.50"></text></g><g><title>ret_from_fork (43 samples, 0.02%)</title><rect x="30.3937%" y="853" width="0.0191%" height="15" fill="rgb(249,138,3)" fg:x="68266" fg:w="43"/><text x="30.6437%" y="863.50"></text></g><g><title>finish_task_switch (41 samples, 0.02%)</title><rect x="30.4208%" y="549" width="0.0183%" height="15" fill="rgb(227,71,41)" fg:x="68327" fg:w="41"/><text x="30.6708%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.02%)</title><rect x="30.4217%" y="533" width="0.0174%" height="15" fill="rgb(209,184,23)" fg:x="68329" fg:w="39"/><text x="30.6717%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (38 samples, 0.02%)</title><rect x="30.4222%" y="517" width="0.0169%" height="15" fill="rgb(223,215,31)" fg:x="68330" fg:w="38"/><text x="30.6722%" y="527.50"></text></g><g><title>native_write_msr (38 samples, 0.02%)</title><rect x="30.4222%" y="501" width="0.0169%" height="15" fill="rgb(210,146,28)" fg:x="68330" fg:w="38"/><text x="30.6722%" y="511.50"></text></g><g><title>futex_wait_queue_me (49 samples, 0.02%)</title><rect x="30.4182%" y="597" width="0.0218%" height="15" fill="rgb(209,183,41)" fg:x="68321" fg:w="49"/><text x="30.6682%" y="607.50"></text></g><g><title>schedule (45 samples, 0.02%)</title><rect x="30.4199%" y="581" width="0.0200%" height="15" fill="rgb(209,224,45)" fg:x="68325" fg:w="45"/><text x="30.6699%" y="591.50"></text></g><g><title>__schedule (45 samples, 0.02%)</title><rect x="30.4199%" y="565" width="0.0200%" height="15" fill="rgb(224,209,51)" fg:x="68325" fg:w="45"/><text x="30.6699%" y="575.50"></text></g><g><title>do_syscall_64 (52 samples, 0.02%)</title><rect x="30.4182%" y="661" width="0.0232%" height="15" fill="rgb(223,17,39)" fg:x="68321" fg:w="52"/><text x="30.6682%" y="671.50"></text></g><g><title>__x64_sys_futex (52 samples, 0.02%)</title><rect x="30.4182%" y="645" width="0.0232%" height="15" fill="rgb(234,204,37)" fg:x="68321" fg:w="52"/><text x="30.6682%" y="655.50"></text></g><g><title>do_futex (52 samples, 0.02%)</title><rect x="30.4182%" y="629" width="0.0232%" height="15" fill="rgb(236,120,5)" fg:x="68321" fg:w="52"/><text x="30.6682%" y="639.50"></text></g><g><title>futex_wait (52 samples, 0.02%)</title><rect x="30.4182%" y="613" width="0.0232%" height="15" fill="rgb(248,97,27)" fg:x="68321" fg:w="52"/><text x="30.6682%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (56 samples, 0.02%)</title><rect x="30.4168%" y="725" width="0.0249%" height="15" fill="rgb(240,66,17)" fg:x="68318" fg:w="56"/><text x="30.6668%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (56 samples, 0.02%)</title><rect x="30.4168%" y="709" width="0.0249%" height="15" fill="rgb(210,79,3)" fg:x="68318" fg:w="56"/><text x="30.6668%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (55 samples, 0.02%)</title><rect x="30.4173%" y="693" width="0.0245%" height="15" fill="rgb(214,176,27)" fg:x="68319" fg:w="55"/><text x="30.6673%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.02%)</title><rect x="30.4182%" y="677" width="0.0236%" height="15" fill="rgb(235,185,3)" fg:x="68321" fg:w="53"/><text x="30.6682%" y="687.50"></text></g><g><title>Monitor::wait (59 samples, 0.03%)</title><rect x="30.4164%" y="773" width="0.0263%" height="15" fill="rgb(227,24,12)" fg:x="68317" fg:w="59"/><text x="30.6664%" y="783.50"></text></g><g><title>Monitor::IWait (59 samples, 0.03%)</title><rect x="30.4164%" y="757" width="0.0263%" height="15" fill="rgb(252,169,48)" fg:x="68317" fg:w="59"/><text x="30.6664%" y="767.50"></text></g><g><title>os::PlatformEvent::park (59 samples, 0.03%)</title><rect x="30.4164%" y="741" width="0.0263%" height="15" fill="rgb(212,65,1)" fg:x="68317" fg:w="59"/><text x="30.6664%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.02%)</title><rect x="30.4725%" y="661" width="0.0178%" height="15" fill="rgb(242,39,24)" fg:x="68443" fg:w="40"/><text x="30.7225%" y="671.50"></text></g><g><title>do_syscall_64 (39 samples, 0.02%)</title><rect x="30.4729%" y="645" width="0.0174%" height="15" fill="rgb(249,32,23)" fg:x="68444" fg:w="39"/><text x="30.7229%" y="655.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.02%)</title><rect x="30.4729%" y="629" width="0.0174%" height="15" fill="rgb(251,195,23)" fg:x="68444" fg:w="39"/><text x="30.7229%" y="639.50"></text></g><g><title>do_futex (39 samples, 0.02%)</title><rect x="30.4729%" y="613" width="0.0174%" height="15" fill="rgb(236,174,8)" fg:x="68444" fg:w="39"/><text x="30.7229%" y="623.50"></text></g><g><title>futex_wake (38 samples, 0.02%)</title><rect x="30.4734%" y="597" width="0.0169%" height="15" fill="rgb(220,197,8)" fg:x="68445" fg:w="38"/><text x="30.7234%" y="607.50"></text></g><g><title>wake_up_q (33 samples, 0.01%)</title><rect x="30.4756%" y="581" width="0.0147%" height="15" fill="rgb(240,108,37)" fg:x="68450" fg:w="33"/><text x="30.7256%" y="591.50"></text></g><g><title>try_to_wake_up (33 samples, 0.01%)</title><rect x="30.4756%" y="565" width="0.0147%" height="15" fill="rgb(232,176,24)" fg:x="68450" fg:w="33"/><text x="30.7256%" y="575.50"></text></g><g><title>PosixSemaphore::signal (42 samples, 0.02%)</title><rect x="30.4720%" y="709" width="0.0187%" height="15" fill="rgb(243,35,29)" fg:x="68442" fg:w="42"/><text x="30.7220%" y="719.50"></text></g><g><title>__new_sem_post (42 samples, 0.02%)</title><rect x="30.4720%" y="693" width="0.0187%" height="15" fill="rgb(210,37,18)" fg:x="68442" fg:w="42"/><text x="30.7220%" y="703.50"></text></g><g><title>futex_wake (41 samples, 0.02%)</title><rect x="30.4725%" y="677" width="0.0183%" height="15" fill="rgb(224,184,40)" fg:x="68443" fg:w="41"/><text x="30.7225%" y="687.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="30.4930%" y="517" width="0.0125%" height="15" fill="rgb(236,39,29)" fg:x="68489" fg:w="28"/><text x="30.7430%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="30.4934%" y="501" width="0.0120%" height="15" fill="rgb(232,48,39)" fg:x="68490" fg:w="27"/><text x="30.7434%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.01%)</title><rect x="30.4934%" y="485" width="0.0120%" height="15" fill="rgb(236,34,42)" fg:x="68490" fg:w="27"/><text x="30.7434%" y="495.50"></text></g><g><title>native_write_msr (27 samples, 0.01%)</title><rect x="30.4934%" y="469" width="0.0120%" height="15" fill="rgb(243,106,37)" fg:x="68490" fg:w="27"/><text x="30.7434%" y="479.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (85 samples, 0.04%)</title><rect x="30.4694%" y="757" width="0.0378%" height="15" fill="rgb(218,96,6)" fg:x="68436" fg:w="85"/><text x="30.7194%" y="767.50"></text></g><g><title>WorkGang::run_task (79 samples, 0.04%)</title><rect x="30.4720%" y="741" width="0.0352%" height="15" fill="rgb(235,130,12)" fg:x="68442" fg:w="79"/><text x="30.7220%" y="751.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (79 samples, 0.04%)</title><rect x="30.4720%" y="725" width="0.0352%" height="15" fill="rgb(231,95,0)" fg:x="68442" fg:w="79"/><text x="30.7220%" y="735.50"></text></g><g><title>PosixSemaphore::wait (37 samples, 0.02%)</title><rect x="30.4907%" y="709" width="0.0165%" height="15" fill="rgb(228,12,23)" fg:x="68484" fg:w="37"/><text x="30.7407%" y="719.50"></text></g><g><title>__new_sem_wait_slow (37 samples, 0.02%)</title><rect x="30.4907%" y="693" width="0.0165%" height="15" fill="rgb(216,12,1)" fg:x="68484" fg:w="37"/><text x="30.7407%" y="703.50"></text></g><g><title>do_futex_wait (36 samples, 0.02%)</title><rect x="30.4912%" y="677" width="0.0160%" height="15" fill="rgb(219,59,3)" fg:x="68485" fg:w="36"/><text x="30.7412%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (36 samples, 0.02%)</title><rect x="30.4912%" y="661" width="0.0160%" height="15" fill="rgb(215,208,46)" fg:x="68485" fg:w="36"/><text x="30.7412%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.02%)</title><rect x="30.4912%" y="645" width="0.0160%" height="15" fill="rgb(254,224,29)" fg:x="68485" fg:w="36"/><text x="30.7412%" y="655.50"></text></g><g><title>do_syscall_64 (36 samples, 0.02%)</title><rect x="30.4912%" y="629" width="0.0160%" height="15" fill="rgb(232,14,29)" fg:x="68485" fg:w="36"/><text x="30.7412%" y="639.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.02%)</title><rect x="30.4912%" y="613" width="0.0160%" height="15" fill="rgb(208,45,52)" fg:x="68485" fg:w="36"/><text x="30.7412%" y="623.50"></text></g><g><title>do_futex (36 samples, 0.02%)</title><rect x="30.4912%" y="597" width="0.0160%" height="15" fill="rgb(234,191,28)" fg:x="68485" fg:w="36"/><text x="30.7412%" y="607.50"></text></g><g><title>futex_wait (35 samples, 0.02%)</title><rect x="30.4916%" y="581" width="0.0156%" height="15" fill="rgb(244,67,43)" fg:x="68486" fg:w="35"/><text x="30.7416%" y="591.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.02%)</title><rect x="30.4916%" y="565" width="0.0156%" height="15" fill="rgb(236,189,24)" fg:x="68486" fg:w="35"/><text x="30.7416%" y="575.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="30.4925%" y="549" width="0.0147%" height="15" fill="rgb(239,214,33)" fg:x="68488" fg:w="33"/><text x="30.7425%" y="559.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="30.4925%" y="533" width="0.0147%" height="15" fill="rgb(226,176,41)" fg:x="68488" fg:w="33"/><text x="30.7425%" y="543.50"></text></g><g><title>SafepointSynchronize::begin (177 samples, 0.08%)</title><rect x="30.4426%" y="773" width="0.0788%" height="15" fill="rgb(248,47,8)" fg:x="68376" fg:w="177"/><text x="30.6926%" y="783.50"></text></g><g><title>CodeHeap::next_used (28 samples, 0.01%)</title><rect x="30.5446%" y="693" width="0.0125%" height="15" fill="rgb(218,81,44)" fg:x="68605" fg:w="28"/><text x="30.7946%" y="703.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (40 samples, 0.02%)</title><rect x="30.5415%" y="709" width="0.0178%" height="15" fill="rgb(213,98,6)" fg:x="68598" fg:w="40"/><text x="30.7915%" y="719.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (45 samples, 0.02%)</title><rect x="30.5397%" y="725" width="0.0200%" height="15" fill="rgb(222,85,22)" fg:x="68594" fg:w="45"/><text x="30.7897%" y="735.50"></text></g><g><title>VM_Deoptimize::doit (47 samples, 0.02%)</title><rect x="30.5397%" y="741" width="0.0209%" height="15" fill="rgb(239,46,39)" fg:x="68594" fg:w="47"/><text x="30.7897%" y="751.50"></text></g><g><title>VM_G1CollectForAllocation::doit (28 samples, 0.01%)</title><rect x="30.5606%" y="741" width="0.0125%" height="15" fill="rgb(237,12,29)" fg:x="68641" fg:w="28"/><text x="30.8106%" y="751.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (28 samples, 0.01%)</title><rect x="30.5606%" y="725" width="0.0125%" height="15" fill="rgb(214,77,8)" fg:x="68641" fg:w="28"/><text x="30.8106%" y="735.50"></text></g><g><title>VMThread::evaluate_operation (110 samples, 0.05%)</title><rect x="30.5304%" y="773" width="0.0490%" height="15" fill="rgb(217,168,37)" fg:x="68573" fg:w="110"/><text x="30.7804%" y="783.50"></text></g><g><title>VM_Operation::evaluate (110 samples, 0.05%)</title><rect x="30.5304%" y="757" width="0.0490%" height="15" fill="rgb(221,217,23)" fg:x="68573" fg:w="110"/><text x="30.7804%" y="767.50"></text></g><g><title>Thread::call_run (377 samples, 0.17%)</title><rect x="30.4128%" y="821" width="0.1678%" height="15" fill="rgb(243,229,36)" fg:x="68309" fg:w="377"/><text x="30.6628%" y="831.50"></text></g><g><title>VMThread::run (377 samples, 0.17%)</title><rect x="30.4128%" y="805" width="0.1678%" height="15" fill="rgb(251,163,40)" fg:x="68309" fg:w="377"/><text x="30.6628%" y="815.50"></text></g><g><title>VMThread::loop (377 samples, 0.17%)</title><rect x="30.4128%" y="789" width="0.1678%" height="15" fill="rgb(237,222,12)" fg:x="68309" fg:w="377"/><text x="30.6628%" y="799.50"></text></g><g><title>__GI___clone (427 samples, 0.19%)</title><rect x="30.3932%" y="869" width="0.1901%" height="15" fill="rgb(248,132,6)" fg:x="68265" fg:w="427"/><text x="30.6432%" y="879.50"></text></g><g><title>start_thread (383 samples, 0.17%)</title><rect x="30.4128%" y="853" width="0.1705%" height="15" fill="rgb(227,167,50)" fg:x="68309" fg:w="383"/><text x="30.6628%" y="863.50"></text></g><g><title>thread_native_entry (383 samples, 0.17%)</title><rect x="30.4128%" y="837" width="0.1705%" height="15" fill="rgb(242,84,37)" fg:x="68309" fg:w="383"/><text x="30.6628%" y="847.50"></text></g><g><title>VM_Thread (517 samples, 0.23%)</title><rect x="30.3536%" y="885" width="0.2302%" height="15" fill="rgb(212,4,50)" fg:x="68176" fg:w="517"/><text x="30.6036%" y="895.50"></text></g><g><title>finish_task_switch (26 samples, 0.01%)</title><rect x="30.6911%" y="741" width="0.0116%" height="15" fill="rgb(230,228,32)" fg:x="68934" fg:w="26"/><text x="30.9411%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="30.6915%" y="725" width="0.0111%" height="15" fill="rgb(248,217,23)" fg:x="68935" fg:w="25"/><text x="30.9415%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="30.6920%" y="709" width="0.0107%" height="15" fill="rgb(238,197,32)" fg:x="68936" fg:w="24"/><text x="30.9420%" y="719.50"></text></g><g><title>native_write_msr (23 samples, 0.01%)</title><rect x="30.6924%" y="693" width="0.0102%" height="15" fill="rgb(236,106,1)" fg:x="68937" fg:w="23"/><text x="30.9424%" y="703.50"></text></g><g><title>schedule_hrtimeout_range_clock (32 samples, 0.01%)</title><rect x="30.6893%" y="789" width="0.0142%" height="15" fill="rgb(219,228,13)" fg:x="68930" fg:w="32"/><text x="30.9393%" y="799.50"></text></g><g><title>schedule (30 samples, 0.01%)</title><rect x="30.6902%" y="773" width="0.0134%" height="15" fill="rgb(238,30,35)" fg:x="68932" fg:w="30"/><text x="30.9402%" y="783.50"></text></g><g><title>__schedule (30 samples, 0.01%)</title><rect x="30.6902%" y="757" width="0.0134%" height="15" fill="rgb(236,70,23)" fg:x="68932" fg:w="30"/><text x="30.9402%" y="767.50"></text></g><g><title>__x64_sys_epoll_pwait (36 samples, 0.02%)</title><rect x="30.6880%" y="821" width="0.0160%" height="15" fill="rgb(249,104,48)" fg:x="68927" fg:w="36"/><text x="30.9380%" y="831.50"></text></g><g><title>do_epoll_wait (36 samples, 0.02%)</title><rect x="30.6880%" y="805" width="0.0160%" height="15" fill="rgb(254,117,50)" fg:x="68927" fg:w="36"/><text x="30.9380%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (127 samples, 0.06%)</title><rect x="30.7133%" y="709" width="0.0565%" height="15" fill="rgb(223,152,4)" fg:x="68984" fg:w="127"/><text x="30.9633%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (122 samples, 0.05%)</title><rect x="30.7156%" y="693" width="0.0543%" height="15" fill="rgb(245,6,2)" fg:x="68989" fg:w="122"/><text x="30.9656%" y="703.50"></text></g><g><title>native_write_msr (121 samples, 0.05%)</title><rect x="30.7160%" y="677" width="0.0539%" height="15" fill="rgb(249,150,24)" fg:x="68990" fg:w="121"/><text x="30.9660%" y="687.50"></text></g><g><title>finish_task_switch (140 samples, 0.06%)</title><rect x="30.7124%" y="725" width="0.0623%" height="15" fill="rgb(228,185,42)" fg:x="68982" fg:w="140"/><text x="30.9624%" y="735.50"></text></g><g><title>futex_wait_queue_me (160 samples, 0.07%)</title><rect x="30.7053%" y="773" width="0.0712%" height="15" fill="rgb(226,39,33)" fg:x="68966" fg:w="160"/><text x="30.9553%" y="783.50"></text></g><g><title>schedule (154 samples, 0.07%)</title><rect x="30.7080%" y="757" width="0.0686%" height="15" fill="rgb(221,166,19)" fg:x="68972" fg:w="154"/><text x="30.9580%" y="767.50"></text></g><g><title>__schedule (154 samples, 0.07%)</title><rect x="30.7080%" y="741" width="0.0686%" height="15" fill="rgb(209,109,2)" fg:x="68972" fg:w="154"/><text x="30.9580%" y="751.50"></text></g><g><title>futex_wait (164 samples, 0.07%)</title><rect x="30.7044%" y="789" width="0.0730%" height="15" fill="rgb(252,216,26)" fg:x="68964" fg:w="164"/><text x="30.9544%" y="799.50"></text></g><g><title>do_futex (170 samples, 0.08%)</title><rect x="30.7044%" y="805" width="0.0757%" height="15" fill="rgb(227,173,36)" fg:x="68964" fg:w="170"/><text x="30.9544%" y="815.50"></text></g><g><title>__x64_sys_futex (171 samples, 0.08%)</title><rect x="30.7044%" y="821" width="0.0761%" height="15" fill="rgb(209,90,7)" fg:x="68964" fg:w="171"/><text x="30.9544%" y="831.50"></text></g><g><title>__x64_sys_nanosleep (40 samples, 0.02%)</title><rect x="30.7846%" y="821" width="0.0178%" height="15" fill="rgb(250,194,11)" fg:x="69144" fg:w="40"/><text x="31.0346%" y="831.50"></text></g><g><title>hrtimer_nanosleep (38 samples, 0.02%)</title><rect x="30.7855%" y="805" width="0.0169%" height="15" fill="rgb(220,72,50)" fg:x="69146" fg:w="38"/><text x="31.0355%" y="815.50"></text></g><g><title>do_nanosleep (37 samples, 0.02%)</title><rect x="30.7859%" y="789" width="0.0165%" height="15" fill="rgb(222,106,48)" fg:x="69147" fg:w="37"/><text x="31.0359%" y="799.50"></text></g><g><title>schedule (30 samples, 0.01%)</title><rect x="30.7890%" y="773" width="0.0134%" height="15" fill="rgb(216,220,45)" fg:x="69154" fg:w="30"/><text x="31.0390%" y="783.50"></text></g><g><title>__schedule (29 samples, 0.01%)</title><rect x="30.7895%" y="757" width="0.0129%" height="15" fill="rgb(234,112,18)" fg:x="69155" fg:w="29"/><text x="31.0395%" y="767.50"></text></g><g><title>do_syscall_64 (280 samples, 0.12%)</title><rect x="30.6822%" y="837" width="0.1247%" height="15" fill="rgb(206,179,9)" fg:x="68914" fg:w="280"/><text x="30.9322%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (292 samples, 0.13%)</title><rect x="30.6817%" y="853" width="0.1300%" height="15" fill="rgb(215,115,40)" fg:x="68913" fg:w="292"/><text x="30.9317%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.02%)</title><rect x="30.8122%" y="805" width="0.0156%" height="15" fill="rgb(222,69,34)" fg:x="69206" fg:w="35"/><text x="31.0622%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.01%)</title><rect x="30.8135%" y="789" width="0.0142%" height="15" fill="rgb(209,161,10)" fg:x="69209" fg:w="32"/><text x="31.0635%" y="799.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="30.8135%" y="773" width="0.0142%" height="15" fill="rgb(217,6,38)" fg:x="69209" fg:w="32"/><text x="31.0635%" y="783.50"></text></g><g><title>ret_from_fork (37 samples, 0.02%)</title><rect x="30.8122%" y="853" width="0.0165%" height="15" fill="rgb(229,229,48)" fg:x="69206" fg:w="37"/><text x="31.0622%" y="863.50"></text></g><g><title>schedule_tail (37 samples, 0.02%)</title><rect x="30.8122%" y="837" width="0.0165%" height="15" fill="rgb(225,21,28)" fg:x="69206" fg:w="37"/><text x="31.0622%" y="847.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="30.8122%" y="821" width="0.0165%" height="15" fill="rgb(206,33,13)" fg:x="69206" fg:w="37"/><text x="31.0622%" y="831.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (539 samples, 0.24%)</title><rect x="30.5896%" y="869" width="0.2400%" height="15" fill="rgb(242,178,17)" fg:x="68706" fg:w="539"/><text x="30.8396%" y="879.50"></text></g><g><title>bazel (572 samples, 0.25%)</title><rect x="30.5887%" y="885" width="0.2547%" height="15" fill="rgb(220,162,5)" fg:x="68704" fg:w="572"/><text x="30.8387%" y="895.50"></text></g><g><title>_dl_map_object_from_fd (24 samples, 0.01%)</title><rect x="30.8678%" y="725" width="0.0107%" height="15" fill="rgb(210,33,43)" fg:x="69331" fg:w="24"/><text x="31.1178%" y="735.50"></text></g><g><title>_dl_map_object_deps (34 samples, 0.02%)</title><rect x="30.8647%" y="789" width="0.0151%" height="15" fill="rgb(216,116,54)" fg:x="69324" fg:w="34"/><text x="31.1147%" y="799.50"></text></g><g><title>_dl_catch_exception (34 samples, 0.02%)</title><rect x="30.8647%" y="773" width="0.0151%" height="15" fill="rgb(249,92,24)" fg:x="69324" fg:w="34"/><text x="31.1147%" y="783.50"></text></g><g><title>openaux (33 samples, 0.01%)</title><rect x="30.8652%" y="757" width="0.0147%" height="15" fill="rgb(231,189,14)" fg:x="69325" fg:w="33"/><text x="31.1152%" y="767.50"></text></g><g><title>_dl_map_object (33 samples, 0.01%)</title><rect x="30.8652%" y="741" width="0.0147%" height="15" fill="rgb(230,8,41)" fg:x="69325" fg:w="33"/><text x="31.1152%" y="751.50"></text></g><g><title>dl_new_hash (23 samples, 0.01%)</title><rect x="30.8919%" y="725" width="0.0102%" height="15" fill="rgb(249,7,27)" fg:x="69385" fg:w="23"/><text x="31.1419%" y="735.50"></text></g><g><title>_dl_lookup_symbol_x (49 samples, 0.02%)</title><rect x="30.8919%" y="741" width="0.0218%" height="15" fill="rgb(232,86,5)" fg:x="69385" fg:w="49"/><text x="31.1419%" y="751.50"></text></g><g><title>do_lookup_x (26 samples, 0.01%)</title><rect x="30.9021%" y="725" width="0.0116%" height="15" fill="rgb(224,175,18)" fg:x="69408" fg:w="26"/><text x="31.1521%" y="735.50"></text></g><g><title>elf_machine_rela (70 samples, 0.03%)</title><rect x="30.8830%" y="757" width="0.0312%" height="15" fill="rgb(220,129,12)" fg:x="69365" fg:w="70"/><text x="31.1330%" y="767.50"></text></g><g><title>_dl_relocate_object (78 samples, 0.03%)</title><rect x="30.8803%" y="789" width="0.0347%" height="15" fill="rgb(210,19,36)" fg:x="69359" fg:w="78"/><text x="31.1303%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (77 samples, 0.03%)</title><rect x="30.8807%" y="773" width="0.0343%" height="15" fill="rgb(219,96,14)" fg:x="69360" fg:w="77"/><text x="31.1307%" y="783.50"></text></g><g><title>[ld-2.31.so] (127 samples, 0.06%)</title><rect x="30.8612%" y="805" width="0.0565%" height="15" fill="rgb(249,106,1)" fg:x="69316" fg:w="127"/><text x="31.1112%" y="815.50"></text></g><g><title>_dl_start_final (135 samples, 0.06%)</title><rect x="30.8607%" y="837" width="0.0601%" height="15" fill="rgb(249,155,20)" fg:x="69315" fg:w="135"/><text x="31.1107%" y="847.50"></text></g><g><title>_dl_sysdep_start (135 samples, 0.06%)</title><rect x="30.8607%" y="821" width="0.0601%" height="15" fill="rgb(244,168,9)" fg:x="69315" fg:w="135"/><text x="31.1107%" y="831.50"></text></g><g><title>_dl_start (137 samples, 0.06%)</title><rect x="30.8607%" y="853" width="0.0610%" height="15" fill="rgb(216,23,50)" fg:x="69315" fg:w="137"/><text x="31.1107%" y="863.50"></text></g><g><title>_start (151 samples, 0.07%)</title><rect x="30.8567%" y="869" width="0.0672%" height="15" fill="rgb(224,219,20)" fg:x="69306" fg:w="151"/><text x="31.1067%" y="879.50"></text></g><g><title>build-runfiles (206 samples, 0.09%)</title><rect x="30.8433%" y="885" width="0.0917%" height="15" fill="rgb(222,156,15)" fg:x="69276" fg:w="206"/><text x="31.0933%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="30.9248%" y="869" width="0.0102%" height="15" fill="rgb(231,97,17)" fg:x="69459" fg:w="23"/><text x="31.1748%" y="879.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="30.9248%" y="853" width="0.0102%" height="15" fill="rgb(218,70,48)" fg:x="69459" fg:w="23"/><text x="31.1748%" y="863.50"></text></g><g><title>__GI___libc_malloc (33 samples, 0.01%)</title><rect x="31.0263%" y="501" width="0.0147%" height="15" fill="rgb(212,196,52)" fg:x="69687" fg:w="33"/><text x="31.2763%" y="511.50"></text></g><g><title>_int_malloc (32 samples, 0.01%)</title><rect x="31.0268%" y="485" width="0.0142%" height="15" fill="rgb(243,203,18)" fg:x="69688" fg:w="32"/><text x="31.2768%" y="495.50"></text></g><g><title>[dash] (34 samples, 0.02%)</title><rect x="31.0263%" y="517" width="0.0151%" height="15" fill="rgb(252,125,41)" fg:x="69687" fg:w="34"/><text x="31.2763%" y="527.50"></text></g><g><title>[dash] (38 samples, 0.02%)</title><rect x="31.0254%" y="533" width="0.0169%" height="15" fill="rgb(223,180,33)" fg:x="69685" fg:w="38"/><text x="31.2754%" y="543.50"></text></g><g><title>__GI_____strtol_l_internal (25 samples, 0.01%)</title><rect x="31.0428%" y="533" width="0.0111%" height="15" fill="rgb(254,159,46)" fg:x="69724" fg:w="25"/><text x="31.2928%" y="543.50"></text></g><g><title>[dash] (90 samples, 0.04%)</title><rect x="31.0237%" y="549" width="0.0401%" height="15" fill="rgb(254,38,10)" fg:x="69681" fg:w="90"/><text x="31.2737%" y="559.50"></text></g><g><title>[libc-2.31.so] (33 samples, 0.01%)</title><rect x="31.0637%" y="549" width="0.0147%" height="15" fill="rgb(208,217,32)" fg:x="69771" fg:w="33"/><text x="31.3137%" y="559.50"></text></g><g><title>new_sync_write (29 samples, 0.01%)</title><rect x="31.0904%" y="469" width="0.0129%" height="15" fill="rgb(221,120,13)" fg:x="69831" fg:w="29"/><text x="31.3404%" y="479.50"></text></g><g><title>pipe_write (27 samples, 0.01%)</title><rect x="31.0913%" y="453" width="0.0120%" height="15" fill="rgb(246,54,52)" fg:x="69833" fg:w="27"/><text x="31.3413%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.02%)</title><rect x="31.0891%" y="533" width="0.0174%" height="15" fill="rgb(242,34,25)" fg:x="69828" fg:w="39"/><text x="31.3391%" y="543.50"></text></g><g><title>do_syscall_64 (39 samples, 0.02%)</title><rect x="31.0891%" y="517" width="0.0174%" height="15" fill="rgb(247,209,9)" fg:x="69828" fg:w="39"/><text x="31.3391%" y="527.50"></text></g><g><title>ksys_write (38 samples, 0.02%)</title><rect x="31.0896%" y="501" width="0.0169%" height="15" fill="rgb(228,71,26)" fg:x="69829" fg:w="38"/><text x="31.3396%" y="511.50"></text></g><g><title>vfs_write (37 samples, 0.02%)</title><rect x="31.0900%" y="485" width="0.0165%" height="15" fill="rgb(222,145,49)" fg:x="69830" fg:w="37"/><text x="31.3400%" y="495.50"></text></g><g><title>__GI___libc_write (44 samples, 0.02%)</title><rect x="31.0878%" y="549" width="0.0196%" height="15" fill="rgb(218,121,17)" fg:x="69825" fg:w="44"/><text x="31.3378%" y="559.50"></text></g><g><title>mm_init (23 samples, 0.01%)</title><rect x="31.1203%" y="453" width="0.0102%" height="15" fill="rgb(244,50,7)" fg:x="69898" fg:w="23"/><text x="31.3703%" y="463.50"></text></g><g><title>alloc_bprm (54 samples, 0.02%)</title><rect x="31.1091%" y="469" width="0.0240%" height="15" fill="rgb(246,229,37)" fg:x="69873" fg:w="54"/><text x="31.3591%" y="479.50"></text></g><g><title>do_open_execat (34 samples, 0.02%)</title><rect x="31.1399%" y="453" width="0.0151%" height="15" fill="rgb(225,18,5)" fg:x="69942" fg:w="34"/><text x="31.3899%" y="463.50"></text></g><g><title>do_filp_open (34 samples, 0.02%)</title><rect x="31.1399%" y="437" width="0.0151%" height="15" fill="rgb(213,204,8)" fg:x="69942" fg:w="34"/><text x="31.3899%" y="447.50"></text></g><g><title>path_openat (32 samples, 0.01%)</title><rect x="31.1408%" y="421" width="0.0142%" height="15" fill="rgb(238,103,6)" fg:x="69944" fg:w="32"/><text x="31.3908%" y="431.50"></text></g><g><title>read_block_for_search.isra.0 (31 samples, 0.01%)</title><rect x="31.1839%" y="309" width="0.0138%" height="15" fill="rgb(222,25,35)" fg:x="70041" fg:w="31"/><text x="31.4339%" y="319.50"></text></g><g><title>btrfs_search_slot (59 samples, 0.03%)</title><rect x="31.1719%" y="325" width="0.0263%" height="15" fill="rgb(213,203,35)" fg:x="70014" fg:w="59"/><text x="31.4219%" y="335.50"></text></g><g><title>btrfs_lookup_xattr (69 samples, 0.03%)</title><rect x="31.1701%" y="341" width="0.0307%" height="15" fill="rgb(221,79,53)" fg:x="70010" fg:w="69"/><text x="31.4201%" y="351.50"></text></g><g><title>btrfs_getxattr (85 samples, 0.04%)</title><rect x="31.1661%" y="357" width="0.0378%" height="15" fill="rgb(243,200,35)" fg:x="70001" fg:w="85"/><text x="31.4161%" y="367.50"></text></g><g><title>begin_new_exec (105 samples, 0.05%)</title><rect x="31.1612%" y="437" width="0.0467%" height="15" fill="rgb(248,60,25)" fg:x="69990" fg:w="105"/><text x="31.4112%" y="447.50"></text></g><g><title>security_bprm_creds_from_file (102 samples, 0.05%)</title><rect x="31.1626%" y="421" width="0.0454%" height="15" fill="rgb(227,53,46)" fg:x="69993" fg:w="102"/><text x="31.4126%" y="431.50"></text></g><g><title>cap_bprm_creds_from_file (102 samples, 0.05%)</title><rect x="31.1626%" y="405" width="0.0454%" height="15" fill="rgb(216,120,32)" fg:x="69993" fg:w="102"/><text x="31.4126%" y="415.50"></text></g><g><title>get_vfs_caps_from_disk (96 samples, 0.04%)</title><rect x="31.1652%" y="389" width="0.0427%" height="15" fill="rgb(220,134,1)" fg:x="69999" fg:w="96"/><text x="31.4152%" y="399.50"></text></g><g><title>__vfs_getxattr (96 samples, 0.04%)</title><rect x="31.1652%" y="373" width="0.0427%" height="15" fill="rgb(237,168,5)" fg:x="69999" fg:w="96"/><text x="31.4152%" y="383.50"></text></g><g><title>link_path_walk.part.0 (25 samples, 0.01%)</title><rect x="31.2236%" y="373" width="0.0111%" height="15" fill="rgb(231,100,33)" fg:x="70130" fg:w="25"/><text x="31.4736%" y="383.50"></text></g><g><title>do_open_execat (46 samples, 0.02%)</title><rect x="31.2169%" y="421" width="0.0205%" height="15" fill="rgb(236,177,47)" fg:x="70115" fg:w="46"/><text x="31.4669%" y="431.50"></text></g><g><title>do_filp_open (46 samples, 0.02%)</title><rect x="31.2169%" y="405" width="0.0205%" height="15" fill="rgb(235,7,49)" fg:x="70115" fg:w="46"/><text x="31.4669%" y="415.50"></text></g><g><title>path_openat (46 samples, 0.02%)</title><rect x="31.2169%" y="389" width="0.0205%" height="15" fill="rgb(232,119,22)" fg:x="70115" fg:w="46"/><text x="31.4669%" y="399.50"></text></g><g><title>load_elf_binary (186 samples, 0.08%)</title><rect x="31.1559%" y="453" width="0.0828%" height="15" fill="rgb(254,73,53)" fg:x="69978" fg:w="186"/><text x="31.4059%" y="463.50"></text></g><g><title>open_exec (49 samples, 0.02%)</title><rect x="31.2169%" y="437" width="0.0218%" height="15" fill="rgb(251,35,20)" fg:x="70115" fg:w="49"/><text x="31.4669%" y="447.50"></text></g><g><title>__perf_event_task_sched_in (158 samples, 0.07%)</title><rect x="31.2645%" y="373" width="0.0703%" height="15" fill="rgb(241,119,20)" fg:x="70222" fg:w="158"/><text x="31.5145%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (156 samples, 0.07%)</title><rect x="31.2654%" y="357" width="0.0695%" height="15" fill="rgb(207,102,14)" fg:x="70224" fg:w="156"/><text x="31.5154%" y="367.50"></text></g><g><title>native_write_msr (155 samples, 0.07%)</title><rect x="31.2659%" y="341" width="0.0690%" height="15" fill="rgb(248,201,50)" fg:x="70225" fg:w="155"/><text x="31.5159%" y="351.50"></text></g><g><title>_cond_resched (166 samples, 0.07%)</title><rect x="31.2614%" y="421" width="0.0739%" height="15" fill="rgb(222,185,44)" fg:x="70215" fg:w="166"/><text x="31.5114%" y="431.50"></text></g><g><title>__schedule (166 samples, 0.07%)</title><rect x="31.2614%" y="405" width="0.0739%" height="15" fill="rgb(218,107,18)" fg:x="70215" fg:w="166"/><text x="31.5114%" y="415.50"></text></g><g><title>finish_task_switch (166 samples, 0.07%)</title><rect x="31.2614%" y="389" width="0.0739%" height="15" fill="rgb(237,177,39)" fg:x="70215" fg:w="166"/><text x="31.5114%" y="399.50"></text></g><g><title>sched_exec (194 samples, 0.09%)</title><rect x="31.2494%" y="453" width="0.0864%" height="15" fill="rgb(246,69,6)" fg:x="70188" fg:w="194"/><text x="31.4994%" y="463.50"></text></g><g><title>stop_one_cpu (171 samples, 0.08%)</title><rect x="31.2596%" y="437" width="0.0761%" height="15" fill="rgb(234,208,37)" fg:x="70211" fg:w="171"/><text x="31.5096%" y="447.50"></text></g><g><title>security_bprm_check (52 samples, 0.02%)</title><rect x="31.3358%" y="453" width="0.0232%" height="15" fill="rgb(225,4,6)" fg:x="70382" fg:w="52"/><text x="31.5858%" y="463.50"></text></g><g><title>tomoyo_bprm_check_security (52 samples, 0.02%)</title><rect x="31.3358%" y="437" width="0.0232%" height="15" fill="rgb(233,45,0)" fg:x="70382" fg:w="52"/><text x="31.5858%" y="447.50"></text></g><g><title>tomoyo_find_next_domain (52 samples, 0.02%)</title><rect x="31.3358%" y="421" width="0.0232%" height="15" fill="rgb(226,136,5)" fg:x="70382" fg:w="52"/><text x="31.5858%" y="431.50"></text></g><g><title>aa_dfa_leftmatch (28 samples, 0.01%)</title><rect x="31.3665%" y="389" width="0.0125%" height="15" fill="rgb(211,91,47)" fg:x="70451" fg:w="28"/><text x="31.6165%" y="399.50"></text></g><g><title>apparmor_bprm_creds_for_exec (51 samples, 0.02%)</title><rect x="31.3589%" y="437" width="0.0227%" height="15" fill="rgb(242,88,51)" fg:x="70434" fg:w="51"/><text x="31.6089%" y="447.50"></text></g><g><title>profile_transition (48 samples, 0.02%)</title><rect x="31.3602%" y="421" width="0.0214%" height="15" fill="rgb(230,91,28)" fg:x="70437" fg:w="48"/><text x="31.6102%" y="431.50"></text></g><g><title>find_attach (41 samples, 0.02%)</title><rect x="31.3634%" y="405" width="0.0183%" height="15" fill="rgb(254,186,29)" fg:x="70444" fg:w="41"/><text x="31.6134%" y="415.50"></text></g><g><title>security_bprm_creds_for_exec (52 samples, 0.02%)</title><rect x="31.3589%" y="453" width="0.0232%" height="15" fill="rgb(238,6,4)" fg:x="70434" fg:w="52"/><text x="31.6089%" y="463.50"></text></g><g><title>bprm_execve (561 samples, 0.25%)</title><rect x="31.1332%" y="469" width="0.2498%" height="15" fill="rgb(221,151,16)" fg:x="69927" fg:w="561"/><text x="31.3832%" y="479.50"></text></g><g><title>copy_string_kernel (61 samples, 0.03%)</title><rect x="31.3830%" y="469" width="0.0272%" height="15" fill="rgb(251,143,52)" fg:x="70488" fg:w="61"/><text x="31.6330%" y="479.50"></text></g><g><title>get_arg_page (58 samples, 0.03%)</title><rect x="31.3843%" y="453" width="0.0258%" height="15" fill="rgb(206,90,15)" fg:x="70491" fg:w="58"/><text x="31.6343%" y="463.50"></text></g><g><title>__get_user_pages_remote (58 samples, 0.03%)</title><rect x="31.3843%" y="437" width="0.0258%" height="15" fill="rgb(218,35,8)" fg:x="70491" fg:w="58"/><text x="31.6343%" y="447.50"></text></g><g><title>__get_user_pages (57 samples, 0.03%)</title><rect x="31.3847%" y="421" width="0.0254%" height="15" fill="rgb(239,215,6)" fg:x="70492" fg:w="57"/><text x="31.6347%" y="431.50"></text></g><g><title>handle_mm_fault (44 samples, 0.02%)</title><rect x="31.3905%" y="405" width="0.0196%" height="15" fill="rgb(245,116,39)" fg:x="70505" fg:w="44"/><text x="31.6405%" y="415.50"></text></g><g><title>copy_strings.isra.0 (38 samples, 0.02%)</title><rect x="31.4101%" y="469" width="0.0169%" height="15" fill="rgb(242,65,28)" fg:x="70549" fg:w="38"/><text x="31.6601%" y="479.50"></text></g><g><title>do_execveat_common (720 samples, 0.32%)</title><rect x="31.1083%" y="485" width="0.3206%" height="15" fill="rgb(252,132,53)" fg:x="69871" fg:w="720"/><text x="31.3583%" y="495.50"></text></g><g><title>__GI_execve (734 samples, 0.33%)</title><rect x="31.1074%" y="549" width="0.3268%" height="15" fill="rgb(224,159,50)" fg:x="69869" fg:w="734"/><text x="31.3574%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (733 samples, 0.33%)</title><rect x="31.1078%" y="533" width="0.3263%" height="15" fill="rgb(224,93,4)" fg:x="69870" fg:w="733"/><text x="31.3578%" y="543.50"></text></g><g><title>do_syscall_64 (733 samples, 0.33%)</title><rect x="31.1078%" y="517" width="0.3263%" height="15" fill="rgb(208,81,34)" fg:x="69870" fg:w="733"/><text x="31.3578%" y="527.50"></text></g><g><title>__x64_sys_execve (733 samples, 0.33%)</title><rect x="31.1078%" y="501" width="0.3263%" height="15" fill="rgb(233,92,54)" fg:x="69870" fg:w="733"/><text x="31.3578%" y="511.50"></text></g><g><title>_mm_loadu_si128 (27 samples, 0.01%)</title><rect x="31.4377%" y="517" width="0.0120%" height="15" fill="rgb(237,21,14)" fg:x="70611" fg:w="27"/><text x="31.6877%" y="527.50"></text></g><g><title>__m128i_shift_right (28 samples, 0.01%)</title><rect x="31.4377%" y="533" width="0.0125%" height="15" fill="rgb(249,128,51)" fg:x="70611" fg:w="28"/><text x="31.6877%" y="543.50"></text></g><g><title>__strcspn_sse42 (58 samples, 0.03%)</title><rect x="31.4346%" y="549" width="0.0258%" height="15" fill="rgb(223,129,24)" fg:x="70604" fg:w="58"/><text x="31.6846%" y="559.50"></text></g><g><title>[dash] (1,009 samples, 0.45%)</title><rect x="31.0139%" y="565" width="0.4492%" height="15" fill="rgb(231,168,25)" fg:x="69659" fg:w="1009"/><text x="31.2639%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (1,199 samples, 0.53%)</title><rect x="31.5054%" y="437" width="0.5338%" height="15" fill="rgb(224,39,20)" fg:x="70763" fg:w="1199"/><text x="31.7554%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,175 samples, 0.52%)</title><rect x="31.5161%" y="421" width="0.5231%" height="15" fill="rgb(225,152,53)" fg:x="70787" fg:w="1175"/><text x="31.7661%" y="431.50"></text></g><g><title>native_write_msr (1,163 samples, 0.52%)</title><rect x="31.5214%" y="405" width="0.5178%" height="15" fill="rgb(252,17,24)" fg:x="70799" fg:w="1163"/><text x="31.7714%" y="415.50"></text></g><g><title>asm_sysvec_irq_work (23 samples, 0.01%)</title><rect x="32.0392%" y="437" width="0.0102%" height="15" fill="rgb(250,114,30)" fg:x="71962" fg:w="23"/><text x="32.2892%" y="447.50"></text></g><g><title>finish_task_switch (1,247 samples, 0.56%)</title><rect x="31.4969%" y="453" width="0.5552%" height="15" fill="rgb(229,5,4)" fg:x="70744" fg:w="1247"/><text x="31.7469%" y="463.50"></text></g><g><title>schedule (1,273 samples, 0.57%)</title><rect x="31.4885%" y="485" width="0.5668%" height="15" fill="rgb(225,176,49)" fg:x="70725" fg:w="1273"/><text x="31.7385%" y="495.50"></text></g><g><title>__schedule (1,271 samples, 0.57%)</title><rect x="31.4894%" y="469" width="0.5659%" height="15" fill="rgb(224,221,49)" fg:x="70727" fg:w="1271"/><text x="31.7394%" y="479.50"></text></g><g><title>release_task (99 samples, 0.04%)</title><rect x="32.0597%" y="469" width="0.0441%" height="15" fill="rgb(253,169,27)" fg:x="72008" fg:w="99"/><text x="32.3097%" y="479.50"></text></g><g><title>do_syscall_64 (1,401 samples, 0.62%)</title><rect x="31.4805%" y="533" width="0.6238%" height="15" fill="rgb(211,206,16)" fg:x="70707" fg:w="1401"/><text x="31.7305%" y="543.50"></text></g><g><title>kernel_wait4 (1,395 samples, 0.62%)</title><rect x="31.4831%" y="517" width="0.6211%" height="15" fill="rgb(244,87,35)" fg:x="70713" fg:w="1395"/><text x="31.7331%" y="527.50"></text></g><g><title>do_wait (1,395 samples, 0.62%)</title><rect x="31.4831%" y="501" width="0.6211%" height="15" fill="rgb(246,28,10)" fg:x="70713" fg:w="1395"/><text x="31.7331%" y="511.50"></text></g><g><title>wait_consider_task (110 samples, 0.05%)</title><rect x="32.0552%" y="485" width="0.0490%" height="15" fill="rgb(229,12,44)" fg:x="71998" fg:w="110"/><text x="32.3052%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,430 samples, 0.64%)</title><rect x="31.4805%" y="549" width="0.6367%" height="15" fill="rgb(210,145,37)" fg:x="70707" fg:w="1430"/><text x="31.7305%" y="559.50"></text></g><g><title>syscall_exit_to_user_mode (29 samples, 0.01%)</title><rect x="32.1042%" y="533" width="0.0129%" height="15" fill="rgb(227,112,52)" fg:x="72108" fg:w="29"/><text x="32.3542%" y="543.50"></text></g><g><title>exit_to_user_mode_prepare (29 samples, 0.01%)</title><rect x="32.1042%" y="517" width="0.0129%" height="15" fill="rgb(238,155,34)" fg:x="72108" fg:w="29"/><text x="32.3542%" y="527.50"></text></g><g><title>arch_do_signal (29 samples, 0.01%)</title><rect x="32.1042%" y="501" width="0.0129%" height="15" fill="rgb(239,226,36)" fg:x="72108" fg:w="29"/><text x="32.3542%" y="511.50"></text></g><g><title>__GI___wait4 (1,456 samples, 0.65%)</title><rect x="31.4760%" y="565" width="0.6482%" height="15" fill="rgb(230,16,23)" fg:x="70697" fg:w="1456"/><text x="31.7260%" y="575.50"></text></g><g><title>asm_exc_page_fault (34 samples, 0.02%)</title><rect x="32.1251%" y="549" width="0.0151%" height="15" fill="rgb(236,171,36)" fg:x="72155" fg:w="34"/><text x="32.3751%" y="559.50"></text></g><g><title>exc_page_fault (34 samples, 0.02%)</title><rect x="32.1251%" y="533" width="0.0151%" height="15" fill="rgb(221,22,14)" fg:x="72155" fg:w="34"/><text x="32.3751%" y="543.50"></text></g><g><title>do_user_addr_fault (34 samples, 0.02%)</title><rect x="32.1251%" y="517" width="0.0151%" height="15" fill="rgb(242,43,11)" fg:x="72155" fg:w="34"/><text x="32.3751%" y="527.50"></text></g><g><title>handle_mm_fault (34 samples, 0.02%)</title><rect x="32.1251%" y="501" width="0.0151%" height="15" fill="rgb(232,69,23)" fg:x="72155" fg:w="34"/><text x="32.3751%" y="511.50"></text></g><g><title>filemap_map_pages (32 samples, 0.01%)</title><rect x="32.1260%" y="485" width="0.0142%" height="15" fill="rgb(216,180,54)" fg:x="72157" fg:w="32"/><text x="32.3760%" y="495.50"></text></g><g><title>__GI__setjmp (38 samples, 0.02%)</title><rect x="32.1243%" y="565" width="0.0169%" height="15" fill="rgb(216,5,24)" fg:x="72153" fg:w="38"/><text x="32.3743%" y="575.50"></text></g><g><title>asm_exc_page_fault (26 samples, 0.01%)</title><rect x="32.1487%" y="565" width="0.0116%" height="15" fill="rgb(225,89,9)" fg:x="72208" fg:w="26"/><text x="32.3987%" y="575.50"></text></g><g><title>exc_page_fault (26 samples, 0.01%)</title><rect x="32.1487%" y="549" width="0.0116%" height="15" fill="rgb(243,75,33)" fg:x="72208" fg:w="26"/><text x="32.3987%" y="559.50"></text></g><g><title>do_user_addr_fault (26 samples, 0.01%)</title><rect x="32.1487%" y="533" width="0.0116%" height="15" fill="rgb(247,141,45)" fg:x="72208" fg:w="26"/><text x="32.3987%" y="543.50"></text></g><g><title>[dash] (2,612 samples, 1.16%)</title><rect x="31.0027%" y="581" width="1.1629%" height="15" fill="rgb(232,177,36)" fg:x="69634" fg:w="2612"/><text x="31.2527%" y="591.50"></text></g><g><title>asm_exc_page_fault (23 samples, 0.01%)</title><rect x="32.1750%" y="565" width="0.0102%" height="15" fill="rgb(219,125,36)" fg:x="72267" fg:w="23"/><text x="32.4250%" y="575.50"></text></g><g><title>__longjmp_chk (26 samples, 0.01%)</title><rect x="32.1746%" y="581" width="0.0116%" height="15" fill="rgb(227,94,9)" fg:x="72266" fg:w="26"/><text x="32.4246%" y="591.50"></text></g><g><title>[dash] (2,717 samples, 1.21%)</title><rect x="30.9925%" y="597" width="1.2097%" height="15" fill="rgb(240,34,52)" fg:x="69611" fg:w="2717"/><text x="31.2425%" y="607.50"></text></g><g><title>filemap_map_pages (51 samples, 0.02%)</title><rect x="32.2498%" y="501" width="0.0227%" height="15" fill="rgb(216,45,12)" fg:x="72435" fg:w="51"/><text x="32.4998%" y="511.50"></text></g><g><title>handle_mm_fault (60 samples, 0.03%)</title><rect x="32.2471%" y="517" width="0.0267%" height="15" fill="rgb(246,21,19)" fg:x="72429" fg:w="60"/><text x="32.4971%" y="527.50"></text></g><g><title>exc_page_fault (64 samples, 0.03%)</title><rect x="32.2458%" y="549" width="0.0285%" height="15" fill="rgb(213,98,42)" fg:x="72426" fg:w="64"/><text x="32.4958%" y="559.50"></text></g><g><title>do_user_addr_fault (64 samples, 0.03%)</title><rect x="32.2458%" y="533" width="0.0285%" height="15" fill="rgb(250,136,47)" fg:x="72426" fg:w="64"/><text x="32.4958%" y="543.50"></text></g><g><title>asm_exc_page_fault (66 samples, 0.03%)</title><rect x="32.2458%" y="565" width="0.0294%" height="15" fill="rgb(251,124,27)" fg:x="72426" fg:w="66"/><text x="32.4958%" y="575.50"></text></g><g><title>__run_fork_handlers (77 samples, 0.03%)</title><rect x="32.2440%" y="581" width="0.0343%" height="15" fill="rgb(229,180,14)" fg:x="72422" fg:w="77"/><text x="32.4940%" y="591.50"></text></g><g><title>find_vma (36 samples, 0.02%)</title><rect x="32.3144%" y="517" width="0.0160%" height="15" fill="rgb(245,216,25)" fg:x="72580" fg:w="36"/><text x="32.5644%" y="527.50"></text></g><g><title>page_add_file_rmap (23 samples, 0.01%)</title><rect x="32.4159%" y="469" width="0.0102%" height="15" fill="rgb(251,43,5)" fg:x="72808" fg:w="23"/><text x="32.6659%" y="479.50"></text></g><g><title>alloc_set_pte (57 samples, 0.03%)</title><rect x="32.4016%" y="485" width="0.0254%" height="15" fill="rgb(250,128,24)" fg:x="72776" fg:w="57"/><text x="32.6516%" y="495.50"></text></g><g><title>filemap_map_pages (221 samples, 0.10%)</title><rect x="32.3553%" y="501" width="0.0984%" height="15" fill="rgb(217,117,27)" fg:x="72672" fg:w="221"/><text x="32.6053%" y="511.50"></text></g><g><title>xas_find (40 samples, 0.02%)</title><rect x="32.4359%" y="485" width="0.0178%" height="15" fill="rgb(245,147,4)" fg:x="72853" fg:w="40"/><text x="32.6859%" y="495.50"></text></g><g><title>xas_load (29 samples, 0.01%)</title><rect x="32.4408%" y="469" width="0.0129%" height="15" fill="rgb(242,201,35)" fg:x="72864" fg:w="29"/><text x="32.6908%" y="479.50"></text></g><g><title>__alloc_pages_nodemask (45 samples, 0.02%)</title><rect x="32.4542%" y="485" width="0.0200%" height="15" fill="rgb(218,181,1)" fg:x="72894" fg:w="45"/><text x="32.7042%" y="495.50"></text></g><g><title>get_page_from_freelist (27 samples, 0.01%)</title><rect x="32.4622%" y="469" width="0.0120%" height="15" fill="rgb(222,6,29)" fg:x="72912" fg:w="27"/><text x="32.7122%" y="479.50"></text></g><g><title>pte_alloc_one (47 samples, 0.02%)</title><rect x="32.4537%" y="501" width="0.0209%" height="15" fill="rgb(208,186,3)" fg:x="72893" fg:w="47"/><text x="32.7037%" y="511.50"></text></g><g><title>handle_mm_fault (325 samples, 0.14%)</title><rect x="32.3304%" y="517" width="0.1447%" height="15" fill="rgb(216,36,26)" fg:x="72616" fg:w="325"/><text x="32.5804%" y="527.50"></text></g><g><title>do_user_addr_fault (378 samples, 0.17%)</title><rect x="32.3072%" y="533" width="0.1683%" height="15" fill="rgb(248,201,23)" fg:x="72564" fg:w="378"/><text x="32.5572%" y="543.50"></text></g><g><title>exc_page_fault (380 samples, 0.17%)</title><rect x="32.3068%" y="549" width="0.1692%" height="15" fill="rgb(251,170,31)" fg:x="72563" fg:w="380"/><text x="32.5568%" y="559.50"></text></g><g><title>asm_exc_page_fault (386 samples, 0.17%)</title><rect x="32.3055%" y="565" width="0.1719%" height="15" fill="rgb(207,110,25)" fg:x="72560" fg:w="386"/><text x="32.5555%" y="575.50"></text></g><g><title>dup_fd (27 samples, 0.01%)</title><rect x="32.5227%" y="485" width="0.0120%" height="15" fill="rgb(250,54,15)" fg:x="73048" fg:w="27"/><text x="32.7727%" y="495.50"></text></g><g><title>__rb_insert_augmented (30 samples, 0.01%)</title><rect x="32.5441%" y="469" width="0.0134%" height="15" fill="rgb(227,68,33)" fg:x="73096" fg:w="30"/><text x="32.7941%" y="479.50"></text></g><g><title>kmem_cache_alloc (56 samples, 0.02%)</title><rect x="32.5824%" y="437" width="0.0249%" height="15" fill="rgb(238,34,41)" fg:x="73182" fg:w="56"/><text x="32.8324%" y="447.50"></text></g><g><title>anon_vma_clone (100 samples, 0.04%)</title><rect x="32.5641%" y="453" width="0.0445%" height="15" fill="rgb(220,11,15)" fg:x="73141" fg:w="100"/><text x="32.8141%" y="463.50"></text></g><g><title>kmem_cache_alloc (49 samples, 0.02%)</title><rect x="32.6122%" y="453" width="0.0218%" height="15" fill="rgb(246,111,35)" fg:x="73249" fg:w="49"/><text x="32.8622%" y="463.50"></text></g><g><title>anon_vma_fork (165 samples, 0.07%)</title><rect x="32.5615%" y="469" width="0.0735%" height="15" fill="rgb(209,88,53)" fg:x="73135" fg:w="165"/><text x="32.8115%" y="479.50"></text></g><g><title>__alloc_pages_nodemask (26 samples, 0.01%)</title><rect x="32.6545%" y="437" width="0.0116%" height="15" fill="rgb(231,185,47)" fg:x="73344" fg:w="26"/><text x="32.9045%" y="447.50"></text></g><g><title>__pmd_alloc (32 samples, 0.01%)</title><rect x="32.6532%" y="453" width="0.0142%" height="15" fill="rgb(233,154,1)" fg:x="73341" fg:w="32"/><text x="32.9032%" y="463.50"></text></g><g><title>__pte_alloc (37 samples, 0.02%)</title><rect x="32.6674%" y="453" width="0.0165%" height="15" fill="rgb(225,15,46)" fg:x="73373" fg:w="37"/><text x="32.9174%" y="463.50"></text></g><g><title>pte_alloc_one (34 samples, 0.02%)</title><rect x="32.6688%" y="437" width="0.0151%" height="15" fill="rgb(211,135,41)" fg:x="73376" fg:w="34"/><text x="32.9188%" y="447.50"></text></g><g><title>__alloc_pages_nodemask (34 samples, 0.02%)</title><rect x="32.6688%" y="421" width="0.0151%" height="15" fill="rgb(208,54,0)" fg:x="73376" fg:w="34"/><text x="32.9188%" y="431.50"></text></g><g><title>get_page_from_freelist (24 samples, 0.01%)</title><rect x="32.6732%" y="405" width="0.0107%" height="15" fill="rgb(244,136,14)" fg:x="73386" fg:w="24"/><text x="32.9232%" y="415.50"></text></g><g><title>__pud_alloc (40 samples, 0.02%)</title><rect x="32.6839%" y="453" width="0.0178%" height="15" fill="rgb(241,56,14)" fg:x="73410" fg:w="40"/><text x="32.9339%" y="463.50"></text></g><g><title>get_zeroed_page (33 samples, 0.01%)</title><rect x="32.6870%" y="437" width="0.0147%" height="15" fill="rgb(205,80,24)" fg:x="73417" fg:w="33"/><text x="32.9370%" y="447.50"></text></g><g><title>__alloc_pages_nodemask (33 samples, 0.01%)</title><rect x="32.6870%" y="421" width="0.0147%" height="15" fill="rgb(220,57,4)" fg:x="73417" fg:w="33"/><text x="32.9370%" y="431.50"></text></g><g><title>get_page_from_freelist (25 samples, 0.01%)</title><rect x="32.6906%" y="405" width="0.0111%" height="15" fill="rgb(226,193,50)" fg:x="73425" fg:w="25"/><text x="32.9406%" y="415.50"></text></g><g><title>copy_page_range (153 samples, 0.07%)</title><rect x="32.6349%" y="469" width="0.0681%" height="15" fill="rgb(231,168,22)" fg:x="73300" fg:w="153"/><text x="32.8849%" y="479.50"></text></g><g><title>__alloc_pages_nodemask (23 samples, 0.01%)</title><rect x="32.7133%" y="421" width="0.0102%" height="15" fill="rgb(254,215,14)" fg:x="73476" fg:w="23"/><text x="32.9633%" y="431.50"></text></g><g><title>__get_free_pages (25 samples, 0.01%)</title><rect x="32.7133%" y="437" width="0.0111%" height="15" fill="rgb(211,115,16)" fg:x="73476" fg:w="25"/><text x="32.9633%" y="447.50"></text></g><g><title>mm_init (28 samples, 0.01%)</title><rect x="32.7124%" y="469" width="0.0125%" height="15" fill="rgb(236,210,16)" fg:x="73474" fg:w="28"/><text x="32.9624%" y="479.50"></text></g><g><title>pgd_alloc (27 samples, 0.01%)</title><rect x="32.7128%" y="453" width="0.0120%" height="15" fill="rgb(221,94,12)" fg:x="73475" fg:w="27"/><text x="32.9628%" y="463.50"></text></g><g><title>memcg_slab_post_alloc_hook (25 samples, 0.01%)</title><rect x="32.7583%" y="437" width="0.0111%" height="15" fill="rgb(235,218,49)" fg:x="73577" fg:w="25"/><text x="33.0083%" y="447.50"></text></g><g><title>vm_area_dup (119 samples, 0.05%)</title><rect x="32.7302%" y="469" width="0.0530%" height="15" fill="rgb(217,114,14)" fg:x="73514" fg:w="119"/><text x="32.9802%" y="479.50"></text></g><g><title>kmem_cache_alloc (81 samples, 0.04%)</title><rect x="32.7471%" y="453" width="0.0361%" height="15" fill="rgb(216,145,22)" fg:x="73552" fg:w="81"/><text x="32.9971%" y="463.50"></text></g><g><title>dup_mm (563 samples, 0.25%)</title><rect x="32.5347%" y="485" width="0.2507%" height="15" fill="rgb(217,112,39)" fg:x="73075" fg:w="563"/><text x="32.7847%" y="495.50"></text></g><g><title>kmem_cache_alloc_node (24 samples, 0.01%)</title><rect x="32.7939%" y="485" width="0.0107%" height="15" fill="rgb(225,85,32)" fg:x="73657" fg:w="24"/><text x="33.0439%" y="495.50"></text></g><g><title>kmem_cache_alloc_trace (28 samples, 0.01%)</title><rect x="32.8322%" y="421" width="0.0125%" height="15" fill="rgb(245,209,47)" fg:x="73743" fg:w="28"/><text x="33.0822%" y="431.50"></text></g><g><title>memset_erms (27 samples, 0.01%)</title><rect x="32.8522%" y="357" width="0.0120%" height="15" fill="rgb(218,220,15)" fg:x="73788" fg:w="27"/><text x="33.1022%" y="367.50"></text></g><g><title>allocate_fake_cpuc (45 samples, 0.02%)</title><rect x="32.8455%" y="389" width="0.0200%" height="15" fill="rgb(222,202,31)" fg:x="73773" fg:w="45"/><text x="33.0955%" y="399.50"></text></g><g><title>kmem_cache_alloc_trace (37 samples, 0.02%)</title><rect x="32.8491%" y="373" width="0.0165%" height="15" fill="rgb(243,203,4)" fg:x="73781" fg:w="37"/><text x="33.0991%" y="383.50"></text></g><g><title>perf_event_alloc (117 samples, 0.05%)</title><rect x="32.8233%" y="437" width="0.0521%" height="15" fill="rgb(237,92,17)" fg:x="73723" fg:w="117"/><text x="33.0733%" y="447.50"></text></g><g><title>perf_try_init_event (69 samples, 0.03%)</title><rect x="32.8446%" y="421" width="0.0307%" height="15" fill="rgb(231,119,7)" fg:x="73771" fg:w="69"/><text x="33.0946%" y="431.50"></text></g><g><title>x86_pmu_event_init (69 samples, 0.03%)</title><rect x="32.8446%" y="405" width="0.0307%" height="15" fill="rgb(237,82,41)" fg:x="73771" fg:w="69"/><text x="33.0946%" y="415.50"></text></g><g><title>inherit_task_group.isra.0 (148 samples, 0.07%)</title><rect x="32.8103%" y="469" width="0.0659%" height="15" fill="rgb(226,81,48)" fg:x="73694" fg:w="148"/><text x="33.0603%" y="479.50"></text></g><g><title>inherit_event.constprop.0 (141 samples, 0.06%)</title><rect x="32.8135%" y="453" width="0.0628%" height="15" fill="rgb(234,70,51)" fg:x="73701" fg:w="141"/><text x="33.0635%" y="463.50"></text></g><g><title>perf_event_init_task (158 samples, 0.07%)</title><rect x="32.8086%" y="485" width="0.0703%" height="15" fill="rgb(251,86,4)" fg:x="73690" fg:w="158"/><text x="33.0586%" y="495.50"></text></g><g><title>copy_process (915 samples, 0.41%)</title><rect x="32.4787%" y="501" width="0.4074%" height="15" fill="rgb(244,144,28)" fg:x="72949" fg:w="915"/><text x="32.7287%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (926 samples, 0.41%)</title><rect x="32.4778%" y="565" width="0.4123%" height="15" fill="rgb(232,161,39)" fg:x="72947" fg:w="926"/><text x="32.7278%" y="575.50"></text></g><g><title>do_syscall_64 (926 samples, 0.41%)</title><rect x="32.4778%" y="549" width="0.4123%" height="15" fill="rgb(247,34,51)" fg:x="72947" fg:w="926"/><text x="32.7278%" y="559.50"></text></g><g><title>__do_sys_clone (926 samples, 0.41%)</title><rect x="32.4778%" y="533" width="0.4123%" height="15" fill="rgb(225,132,2)" fg:x="72947" fg:w="926"/><text x="32.7278%" y="543.50"></text></g><g><title>kernel_clone (924 samples, 0.41%)</title><rect x="32.4787%" y="517" width="0.4114%" height="15" fill="rgb(209,159,44)" fg:x="72949" fg:w="924"/><text x="32.7287%" y="527.50"></text></g><g><title>error_entry (40 samples, 0.02%)</title><rect x="32.8900%" y="565" width="0.0178%" height="15" fill="rgb(251,214,1)" fg:x="73873" fg:w="40"/><text x="33.1400%" y="575.50"></text></g><g><title>sync_regs (32 samples, 0.01%)</title><rect x="32.8936%" y="549" width="0.0142%" height="15" fill="rgb(247,84,47)" fg:x="73881" fg:w="32"/><text x="33.1436%" y="559.50"></text></g><g><title>calculate_sigpending (30 samples, 0.01%)</title><rect x="32.9092%" y="549" width="0.0134%" height="15" fill="rgb(240,111,43)" fg:x="73916" fg:w="30"/><text x="33.1592%" y="559.50"></text></g><g><title>find_vma (43 samples, 0.02%)</title><rect x="32.9884%" y="469" width="0.0191%" height="15" fill="rgb(215,214,35)" fg:x="74094" fg:w="43"/><text x="33.2384%" y="479.50"></text></g><g><title>do_wp_page (48 samples, 0.02%)</title><rect x="33.0610%" y="453" width="0.0214%" height="15" fill="rgb(248,207,23)" fg:x="74257" fg:w="48"/><text x="33.3110%" y="463.50"></text></g><g><title>__alloc_pages_nodemask (58 samples, 0.03%)</title><rect x="33.0944%" y="421" width="0.0258%" height="15" fill="rgb(214,186,4)" fg:x="74332" fg:w="58"/><text x="33.3444%" y="431.50"></text></g><g><title>get_page_from_freelist (50 samples, 0.02%)</title><rect x="33.0980%" y="405" width="0.0223%" height="15" fill="rgb(220,133,22)" fg:x="74340" fg:w="50"/><text x="33.3480%" y="415.50"></text></g><g><title>prep_new_page (23 samples, 0.01%)</title><rect x="33.1100%" y="389" width="0.0102%" height="15" fill="rgb(239,134,19)" fg:x="74367" fg:w="23"/><text x="33.3600%" y="399.50"></text></g><g><title>alloc_pages_vma (64 samples, 0.03%)</title><rect x="33.0922%" y="437" width="0.0285%" height="15" fill="rgb(250,140,9)" fg:x="74327" fg:w="64"/><text x="33.3422%" y="447.50"></text></g><g><title>handle_mm_fault (318 samples, 0.14%)</title><rect x="33.0076%" y="469" width="0.1416%" height="15" fill="rgb(225,59,14)" fg:x="74137" fg:w="318"/><text x="33.2576%" y="479.50"></text></g><g><title>wp_page_copy (140 samples, 0.06%)</title><rect x="33.0868%" y="453" width="0.0623%" height="15" fill="rgb(214,152,51)" fg:x="74315" fg:w="140"/><text x="33.3368%" y="463.50"></text></g><g><title>exc_page_fault (390 samples, 0.17%)</title><rect x="32.9777%" y="501" width="0.1736%" height="15" fill="rgb(251,227,43)" fg:x="74070" fg:w="390"/><text x="33.2277%" y="511.50"></text></g><g><title>do_user_addr_fault (389 samples, 0.17%)</title><rect x="32.9782%" y="485" width="0.1732%" height="15" fill="rgb(241,96,17)" fg:x="74071" fg:w="389"/><text x="33.2282%" y="495.50"></text></g><g><title>asm_exc_page_fault (468 samples, 0.21%)</title><rect x="32.9435%" y="517" width="0.2084%" height="15" fill="rgb(234,198,43)" fg:x="73993" fg:w="468"/><text x="33.1935%" y="527.50"></text></g><g><title>__put_user_nocheck_4 (503 samples, 0.22%)</title><rect x="32.9288%" y="533" width="0.2239%" height="15" fill="rgb(220,108,29)" fg:x="73960" fg:w="503"/><text x="33.1788%" y="543.50"></text></g><g><title>__mmdrop (84 samples, 0.04%)</title><rect x="33.2449%" y="517" width="0.0374%" height="15" fill="rgb(226,163,33)" fg:x="74670" fg:w="84"/><text x="33.4949%" y="527.50"></text></g><g><title>pgd_free (43 samples, 0.02%)</title><rect x="33.2631%" y="501" width="0.0191%" height="15" fill="rgb(205,194,45)" fg:x="74711" fg:w="43"/><text x="33.5131%" y="511.50"></text></g><g><title>_raw_spin_lock (29 samples, 0.01%)</title><rect x="33.2694%" y="485" width="0.0129%" height="15" fill="rgb(206,143,44)" fg:x="74725" fg:w="29"/><text x="33.5194%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (10,452 samples, 4.65%)</title><rect x="33.2823%" y="517" width="4.6535%" height="15" fill="rgb(236,136,36)" fg:x="74754" fg:w="10452"/><text x="33.5323%" y="527.50">__per..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (10,207 samples, 4.54%)</title><rect x="33.3914%" y="501" width="4.5444%" height="15" fill="rgb(249,172,42)" fg:x="74999" fg:w="10207"/><text x="33.6414%" y="511.50">__int..</text></g><g><title>native_write_msr (10,129 samples, 4.51%)</title><rect x="33.4261%" y="485" width="4.5097%" height="15" fill="rgb(216,139,23)" fg:x="75077" fg:w="10129"/><text x="33.6761%" y="495.50">nativ..</text></g><g><title>enqueue_task_fair (47 samples, 0.02%)</title><rect x="37.9678%" y="293" width="0.0209%" height="15" fill="rgb(207,166,20)" fg:x="85278" fg:w="47"/><text x="38.2178%" y="303.50"></text></g><g><title>enqueue_entity (41 samples, 0.02%)</title><rect x="37.9705%" y="277" width="0.0183%" height="15" fill="rgb(210,209,22)" fg:x="85284" fg:w="41"/><text x="38.2205%" y="287.50"></text></g><g><title>ttwu_do_activate (62 samples, 0.03%)</title><rect x="37.9674%" y="309" width="0.0276%" height="15" fill="rgb(232,118,20)" fg:x="85277" fg:w="62"/><text x="38.2174%" y="319.50"></text></g><g><title>__wake_up_common (80 samples, 0.04%)</title><rect x="37.9629%" y="357" width="0.0356%" height="15" fill="rgb(238,113,42)" fg:x="85267" fg:w="80"/><text x="38.2129%" y="367.50"></text></g><g><title>pollwake (79 samples, 0.04%)</title><rect x="37.9634%" y="341" width="0.0352%" height="15" fill="rgb(231,42,5)" fg:x="85268" fg:w="79"/><text x="38.2134%" y="351.50"></text></g><g><title>try_to_wake_up (79 samples, 0.04%)</title><rect x="37.9634%" y="325" width="0.0352%" height="15" fill="rgb(243,166,24)" fg:x="85268" fg:w="79"/><text x="38.2134%" y="335.50"></text></g><g><title>__wake_up_common_lock (83 samples, 0.04%)</title><rect x="37.9629%" y="373" width="0.0370%" height="15" fill="rgb(237,226,12)" fg:x="85267" fg:w="83"/><text x="38.2129%" y="383.50"></text></g><g><title>irq_work_run (87 samples, 0.04%)</title><rect x="37.9616%" y="453" width="0.0387%" height="15" fill="rgb(229,133,24)" fg:x="85264" fg:w="87"/><text x="38.2116%" y="463.50"></text></g><g><title>irq_work_run_list (86 samples, 0.04%)</title><rect x="37.9620%" y="437" width="0.0383%" height="15" fill="rgb(238,33,43)" fg:x="85265" fg:w="86"/><text x="38.2120%" y="447.50"></text></g><g><title>irq_work_single (86 samples, 0.04%)</title><rect x="37.9620%" y="421" width="0.0383%" height="15" fill="rgb(227,59,38)" fg:x="85265" fg:w="86"/><text x="38.2120%" y="431.50"></text></g><g><title>perf_pending_event (86 samples, 0.04%)</title><rect x="37.9620%" y="405" width="0.0383%" height="15" fill="rgb(230,97,0)" fg:x="85265" fg:w="86"/><text x="38.2120%" y="415.50"></text></g><g><title>perf_event_wakeup (84 samples, 0.04%)</title><rect x="37.9629%" y="389" width="0.0374%" height="15" fill="rgb(250,173,50)" fg:x="85267" fg:w="84"/><text x="38.2129%" y="399.50"></text></g><g><title>asm_call_sysvec_on_stack (90 samples, 0.04%)</title><rect x="37.9616%" y="485" width="0.0401%" height="15" fill="rgb(240,15,50)" fg:x="85264" fg:w="90"/><text x="38.2116%" y="495.50"></text></g><g><title>__sysvec_irq_work (90 samples, 0.04%)</title><rect x="37.9616%" y="469" width="0.0401%" height="15" fill="rgb(221,93,22)" fg:x="85264" fg:w="90"/><text x="38.2116%" y="479.50"></text></g><g><title>asm_sysvec_irq_work (143 samples, 0.06%)</title><rect x="37.9389%" y="517" width="0.0637%" height="15" fill="rgb(245,180,53)" fg:x="85213" fg:w="143"/><text x="38.1889%" y="527.50"></text></g><g><title>sysvec_irq_work (92 samples, 0.04%)</title><rect x="37.9616%" y="501" width="0.0410%" height="15" fill="rgb(231,88,51)" fg:x="85264" fg:w="92"/><text x="38.2116%" y="511.50"></text></g><g><title>schedule_tail (11,448 samples, 5.10%)</title><rect x="32.9225%" y="549" width="5.0969%" height="15" fill="rgb(240,58,21)" fg:x="73946" fg:w="11448"/><text x="33.1725%" y="559.50">schedu..</text></g><g><title>finish_task_switch (10,929 samples, 4.87%)</title><rect x="33.1536%" y="533" width="4.8659%" height="15" fill="rgb(237,21,10)" fg:x="74465" fg:w="10929"/><text x="33.4036%" y="543.50">finish..</text></g><g><title>kmem_cache_free (35 samples, 0.02%)</title><rect x="38.0039%" y="517" width="0.0156%" height="15" fill="rgb(218,43,11)" fg:x="85359" fg:w="35"/><text x="38.2539%" y="527.50"></text></g><g><title>ret_from_fork (11,545 samples, 5.14%)</title><rect x="32.9092%" y="565" width="5.1401%" height="15" fill="rgb(218,221,29)" fg:x="73916" fg:w="11545"/><text x="33.1592%" y="575.50">ret_fr..</text></g><g><title>syscall_exit_to_user_mode (67 samples, 0.03%)</title><rect x="38.0195%" y="549" width="0.0298%" height="15" fill="rgb(214,118,42)" fg:x="85394" fg:w="67"/><text x="38.2695%" y="559.50"></text></g><g><title>exit_to_user_mode_prepare (62 samples, 0.03%)</title><rect x="38.0217%" y="533" width="0.0276%" height="15" fill="rgb(251,200,26)" fg:x="85399" fg:w="62"/><text x="38.2717%" y="543.50"></text></g><g><title>switch_fpu_return (52 samples, 0.02%)</title><rect x="38.0261%" y="517" width="0.0232%" height="15" fill="rgb(237,101,39)" fg:x="85409" fg:w="52"/><text x="38.2761%" y="527.50"></text></g><g><title>copy_kernel_to_fpregs (40 samples, 0.02%)</title><rect x="38.0315%" y="501" width="0.0178%" height="15" fill="rgb(251,117,11)" fg:x="85421" fg:w="40"/><text x="38.2815%" y="511.50"></text></g><g><title>arch_fork (12,966 samples, 5.77%)</title><rect x="32.2783%" y="581" width="5.7728%" height="15" fill="rgb(216,223,23)" fg:x="72499" fg:w="12966"/><text x="32.5283%" y="591.50">arch_fo..</text></g><g><title>find_vma (25 samples, 0.01%)</title><rect x="38.0551%" y="533" width="0.0111%" height="15" fill="rgb(251,54,12)" fg:x="85474" fg:w="25"/><text x="38.3051%" y="543.50"></text></g><g><title>__alloc_pages_nodemask (35 samples, 0.02%)</title><rect x="38.0960%" y="485" width="0.0156%" height="15" fill="rgb(254,176,54)" fg:x="85566" fg:w="35"/><text x="38.3460%" y="495.50"></text></g><g><title>get_page_from_freelist (28 samples, 0.01%)</title><rect x="38.0992%" y="469" width="0.0125%" height="15" fill="rgb(210,32,8)" fg:x="85573" fg:w="28"/><text x="38.3492%" y="479.50"></text></g><g><title>alloc_pages_vma (42 samples, 0.02%)</title><rect x="38.0943%" y="501" width="0.0187%" height="15" fill="rgb(235,52,38)" fg:x="85562" fg:w="42"/><text x="38.3443%" y="511.50"></text></g><g><title>copy_page (24 samples, 0.01%)</title><rect x="38.1205%" y="501" width="0.0107%" height="15" fill="rgb(231,4,44)" fg:x="85621" fg:w="24"/><text x="38.3705%" y="511.50"></text></g><g><title>exc_page_fault (227 samples, 0.10%)</title><rect x="38.0515%" y="565" width="0.1011%" height="15" fill="rgb(249,2,32)" fg:x="85466" fg:w="227"/><text x="38.3015%" y="575.50"></text></g><g><title>do_user_addr_fault (227 samples, 0.10%)</title><rect x="38.0515%" y="549" width="0.1011%" height="15" fill="rgb(224,65,26)" fg:x="85466" fg:w="227"/><text x="38.3015%" y="559.50"></text></g><g><title>handle_mm_fault (194 samples, 0.09%)</title><rect x="38.0662%" y="533" width="0.0864%" height="15" fill="rgb(250,73,40)" fg:x="85499" fg:w="194"/><text x="38.3162%" y="543.50"></text></g><g><title>wp_page_copy (145 samples, 0.06%)</title><rect x="38.0880%" y="517" width="0.0646%" height="15" fill="rgb(253,177,16)" fg:x="85548" fg:w="145"/><text x="38.3380%" y="527.50"></text></g><g><title>asm_exc_page_fault (229 samples, 0.10%)</title><rect x="38.0515%" y="581" width="0.1020%" height="15" fill="rgb(217,32,34)" fg:x="85466" fg:w="229"/><text x="38.3015%" y="591.50"></text></g><g><title>__libc_fork (13,362 samples, 5.95%)</title><rect x="32.2142%" y="597" width="5.9491%" height="15" fill="rgb(212,7,10)" fg:x="72355" fg:w="13362"/><text x="32.4642%" y="607.50">__libc_f..</text></g><g><title>filemap_map_pages (61 samples, 0.03%)</title><rect x="38.1717%" y="533" width="0.0272%" height="15" fill="rgb(245,89,8)" fg:x="85736" fg:w="61"/><text x="38.4217%" y="543.50"></text></g><g><title>asm_exc_page_fault (76 samples, 0.03%)</title><rect x="38.1655%" y="597" width="0.0338%" height="15" fill="rgb(237,16,53)" fg:x="85722" fg:w="76"/><text x="38.4155%" y="607.50"></text></g><g><title>exc_page_fault (76 samples, 0.03%)</title><rect x="38.1655%" y="581" width="0.0338%" height="15" fill="rgb(250,204,30)" fg:x="85722" fg:w="76"/><text x="38.4155%" y="591.50"></text></g><g><title>do_user_addr_fault (76 samples, 0.03%)</title><rect x="38.1655%" y="565" width="0.0338%" height="15" fill="rgb(208,77,27)" fg:x="85722" fg:w="76"/><text x="38.4155%" y="575.50"></text></g><g><title>handle_mm_fault (70 samples, 0.03%)</title><rect x="38.1682%" y="549" width="0.0312%" height="15" fill="rgb(250,204,28)" fg:x="85728" fg:w="70"/><text x="38.4182%" y="559.50"></text></g><g><title>[dash] (16,210 samples, 7.22%)</title><rect x="30.9863%" y="613" width="7.2171%" height="15" fill="rgb(244,63,21)" fg:x="69597" fg:w="16210"/><text x="31.2363%" y="623.50">[dash]</text></g><g><title>alloc_file_pseudo (33 samples, 0.01%)</title><rect x="38.2278%" y="517" width="0.0147%" height="15" fill="rgb(236,85,44)" fg:x="85862" fg:w="33"/><text x="38.4778%" y="527.50"></text></g><g><title>__GI_pipe (94 samples, 0.04%)</title><rect x="38.2189%" y="613" width="0.0419%" height="15" fill="rgb(215,98,4)" fg:x="85842" fg:w="94"/><text x="38.4689%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.04%)</title><rect x="38.2189%" y="597" width="0.0419%" height="15" fill="rgb(235,38,11)" fg:x="85842" fg:w="94"/><text x="38.4689%" y="607.50"></text></g><g><title>do_syscall_64 (94 samples, 0.04%)</title><rect x="38.2189%" y="581" width="0.0419%" height="15" fill="rgb(254,186,25)" fg:x="85842" fg:w="94"/><text x="38.4689%" y="591.50"></text></g><g><title>__x64_sys_pipe (93 samples, 0.04%)</title><rect x="38.2194%" y="565" width="0.0414%" height="15" fill="rgb(225,55,31)" fg:x="85843" fg:w="93"/><text x="38.4694%" y="575.50"></text></g><g><title>do_pipe2 (92 samples, 0.04%)</title><rect x="38.2198%" y="549" width="0.0410%" height="15" fill="rgb(211,15,21)" fg:x="85844" fg:w="92"/><text x="38.4698%" y="559.50"></text></g><g><title>create_pipe_files (82 samples, 0.04%)</title><rect x="38.2243%" y="533" width="0.0365%" height="15" fill="rgb(215,187,41)" fg:x="85854" fg:w="82"/><text x="38.4743%" y="543.50"></text></g><g><title>[dash] (16,344 samples, 7.28%)</title><rect x="30.9845%" y="629" width="7.2767%" height="15" fill="rgb(248,69,32)" fg:x="69593" fg:w="16344"/><text x="31.2345%" y="639.50">[dash]</text></g><g><title>[libc-2.31.so] (25 samples, 0.01%)</title><rect x="38.2612%" y="629" width="0.0111%" height="15" fill="rgb(252,102,52)" fg:x="85937" fg:w="25"/><text x="38.5112%" y="639.50"></text></g><g><title>__strcspn_sse42 (23 samples, 0.01%)</title><rect x="38.2799%" y="629" width="0.0102%" height="15" fill="rgb(253,140,32)" fg:x="85979" fg:w="23"/><text x="38.5299%" y="639.50"></text></g><g><title>[dash] (16,426 samples, 7.31%)</title><rect x="30.9796%" y="645" width="7.3133%" height="15" fill="rgb(216,56,42)" fg:x="69582" fg:w="16426"/><text x="31.2296%" y="655.50">[dash]</text></g><g><title>filemap_map_pages (25 samples, 0.01%)</title><rect x="38.3008%" y="565" width="0.0111%" height="15" fill="rgb(216,184,14)" fg:x="86026" fg:w="25"/><text x="38.5508%" y="575.50"></text></g><g><title>asm_exc_page_fault (33 samples, 0.01%)</title><rect x="38.2982%" y="629" width="0.0147%" height="15" fill="rgb(237,187,27)" fg:x="86020" fg:w="33"/><text x="38.5482%" y="639.50"></text></g><g><title>exc_page_fault (32 samples, 0.01%)</title><rect x="38.2986%" y="613" width="0.0142%" height="15" fill="rgb(219,65,3)" fg:x="86021" fg:w="32"/><text x="38.5486%" y="623.50"></text></g><g><title>do_user_addr_fault (32 samples, 0.01%)</title><rect x="38.2986%" y="597" width="0.0142%" height="15" fill="rgb(245,83,25)" fg:x="86021" fg:w="32"/><text x="38.5486%" y="607.50"></text></g><g><title>handle_mm_fault (31 samples, 0.01%)</title><rect x="38.2991%" y="581" width="0.0138%" height="15" fill="rgb(214,205,45)" fg:x="86022" fg:w="31"/><text x="38.5491%" y="591.50"></text></g><g><title>__GI__setjmp (35 samples, 0.02%)</title><rect x="38.2977%" y="645" width="0.0156%" height="15" fill="rgb(241,20,18)" fg:x="86019" fg:w="35"/><text x="38.5477%" y="655.50"></text></g><g><title>[dash] (16,507 samples, 7.35%)</title><rect x="30.9751%" y="661" width="7.3493%" height="15" fill="rgb(232,163,23)" fg:x="69572" fg:w="16507"/><text x="31.2251%" y="671.50">[dash]</text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="38.3307%" y="645" width="0.0102%" height="15" fill="rgb(214,5,46)" fg:x="86093" fg:w="23"/><text x="38.5807%" y="655.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="38.3307%" y="629" width="0.0102%" height="15" fill="rgb(229,78,17)" fg:x="86093" fg:w="23"/><text x="38.5807%" y="639.50"></text></g><g><title>__GI___wait4 (40 samples, 0.02%)</title><rect x="38.3249%" y="661" width="0.0178%" height="15" fill="rgb(248,89,10)" fg:x="86080" fg:w="40"/><text x="38.5749%" y="671.50"></text></g><g><title>__longjmp_chk (26 samples, 0.01%)</title><rect x="38.3427%" y="661" width="0.0116%" height="15" fill="rgb(248,54,15)" fg:x="86120" fg:w="26"/><text x="38.5927%" y="671.50"></text></g><g><title>[dash] (16,603 samples, 7.39%)</title><rect x="30.9716%" y="677" width="7.3921%" height="15" fill="rgb(223,116,6)" fg:x="69564" fg:w="16603"/><text x="31.2216%" y="687.50">[dash]</text></g><g><title>asm_exc_page_fault (23 samples, 0.01%)</title><rect x="38.3734%" y="645" width="0.0102%" height="15" fill="rgb(205,125,38)" fg:x="86189" fg:w="23"/><text x="38.6234%" y="655.50"></text></g><g><title>exc_page_fault (23 samples, 0.01%)</title><rect x="38.3734%" y="629" width="0.0102%" height="15" fill="rgb(251,78,38)" fg:x="86189" fg:w="23"/><text x="38.6234%" y="639.50"></text></g><g><title>__run_fork_handlers (27 samples, 0.01%)</title><rect x="38.3734%" y="661" width="0.0120%" height="15" fill="rgb(253,78,28)" fg:x="86189" fg:w="27"/><text x="38.6234%" y="671.50"></text></g><g><title>filemap_map_pages (67 samples, 0.03%)</title><rect x="38.4095%" y="581" width="0.0298%" height="15" fill="rgb(209,120,3)" fg:x="86270" fg:w="67"/><text x="38.6595%" y="591.50"></text></g><g><title>handle_mm_fault (96 samples, 0.04%)</title><rect x="38.4024%" y="597" width="0.0427%" height="15" fill="rgb(238,229,9)" fg:x="86254" fg:w="96"/><text x="38.6524%" y="607.50"></text></g><g><title>exc_page_fault (106 samples, 0.05%)</title><rect x="38.3984%" y="629" width="0.0472%" height="15" fill="rgb(253,159,18)" fg:x="86245" fg:w="106"/><text x="38.6484%" y="639.50"></text></g><g><title>do_user_addr_fault (105 samples, 0.05%)</title><rect x="38.3988%" y="613" width="0.0467%" height="15" fill="rgb(244,42,34)" fg:x="86246" fg:w="105"/><text x="38.6488%" y="623.50"></text></g><g><title>asm_exc_page_fault (109 samples, 0.05%)</title><rect x="38.3979%" y="645" width="0.0485%" height="15" fill="rgb(224,8,7)" fg:x="86244" fg:w="109"/><text x="38.6479%" y="655.50"></text></g><g><title>anon_vma_fork (41 samples, 0.02%)</title><rect x="38.4910%" y="549" width="0.0183%" height="15" fill="rgb(210,201,45)" fg:x="86453" fg:w="41"/><text x="38.7410%" y="559.50"></text></g><g><title>copy_page_range (49 samples, 0.02%)</title><rect x="38.5092%" y="549" width="0.0218%" height="15" fill="rgb(252,185,21)" fg:x="86494" fg:w="49"/><text x="38.7592%" y="559.50"></text></g><g><title>dup_mm (154 samples, 0.07%)</title><rect x="38.4852%" y="565" width="0.0686%" height="15" fill="rgb(223,131,1)" fg:x="86440" fg:w="154"/><text x="38.7352%" y="575.50"></text></g><g><title>vm_area_dup (39 samples, 0.02%)</title><rect x="38.5364%" y="549" width="0.0174%" height="15" fill="rgb(245,141,16)" fg:x="86555" fg:w="39"/><text x="38.7864%" y="559.50"></text></g><g><title>kmem_cache_alloc (26 samples, 0.01%)</title><rect x="38.5422%" y="533" width="0.0116%" height="15" fill="rgb(229,55,45)" fg:x="86568" fg:w="26"/><text x="38.7922%" y="543.50"></text></g><g><title>perf_try_init_event (32 samples, 0.01%)</title><rect x="38.5840%" y="501" width="0.0142%" height="15" fill="rgb(208,92,15)" fg:x="86662" fg:w="32"/><text x="38.8340%" y="511.50"></text></g><g><title>x86_pmu_event_init (32 samples, 0.01%)</title><rect x="38.5840%" y="485" width="0.0142%" height="15" fill="rgb(234,185,47)" fg:x="86662" fg:w="32"/><text x="38.8340%" y="495.50"></text></g><g><title>inherit_task_group.isra.0 (65 samples, 0.03%)</title><rect x="38.5698%" y="549" width="0.0289%" height="15" fill="rgb(253,104,50)" fg:x="86630" fg:w="65"/><text x="38.8198%" y="559.50"></text></g><g><title>inherit_event.constprop.0 (62 samples, 0.03%)</title><rect x="38.5711%" y="533" width="0.0276%" height="15" fill="rgb(205,70,7)" fg:x="86633" fg:w="62"/><text x="38.8211%" y="543.50"></text></g><g><title>perf_event_alloc (50 samples, 0.02%)</title><rect x="38.5764%" y="517" width="0.0223%" height="15" fill="rgb(240,178,43)" fg:x="86645" fg:w="50"/><text x="38.8264%" y="527.50"></text></g><g><title>perf_event_init_task (73 samples, 0.03%)</title><rect x="38.5684%" y="565" width="0.0325%" height="15" fill="rgb(214,112,2)" fg:x="86627" fg:w="73"/><text x="38.8184%" y="575.50"></text></g><g><title>copy_process (354 samples, 0.16%)</title><rect x="38.4469%" y="581" width="0.1576%" height="15" fill="rgb(206,46,17)" fg:x="86354" fg:w="354"/><text x="38.6969%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (381 samples, 0.17%)</title><rect x="38.4464%" y="645" width="0.1696%" height="15" fill="rgb(225,220,16)" fg:x="86353" fg:w="381"/><text x="38.6964%" y="655.50"></text></g><g><title>do_syscall_64 (380 samples, 0.17%)</title><rect x="38.4469%" y="629" width="0.1692%" height="15" fill="rgb(238,65,40)" fg:x="86354" fg:w="380"/><text x="38.6969%" y="639.50"></text></g><g><title>__do_sys_clone (380 samples, 0.17%)</title><rect x="38.4469%" y="613" width="0.1692%" height="15" fill="rgb(230,151,21)" fg:x="86354" fg:w="380"/><text x="38.6969%" y="623.50"></text></g><g><title>kernel_clone (380 samples, 0.17%)</title><rect x="38.4469%" y="597" width="0.1692%" height="15" fill="rgb(218,58,49)" fg:x="86354" fg:w="380"/><text x="38.6969%" y="607.50"></text></g><g><title>wake_up_new_task (26 samples, 0.01%)</title><rect x="38.6045%" y="581" width="0.0116%" height="15" fill="rgb(219,179,14)" fg:x="86708" fg:w="26"/><text x="38.8545%" y="591.50"></text></g><g><title>find_vma (24 samples, 0.01%)</title><rect x="38.6526%" y="549" width="0.0107%" height="15" fill="rgb(223,72,1)" fg:x="86816" fg:w="24"/><text x="38.9026%" y="559.50"></text></g><g><title>kernel_init_free_pages (39 samples, 0.02%)</title><rect x="38.7425%" y="453" width="0.0174%" height="15" fill="rgb(238,126,10)" fg:x="87018" fg:w="39"/><text x="38.9925%" y="463.50"></text></g><g><title>clear_page_erms (34 samples, 0.02%)</title><rect x="38.7447%" y="437" width="0.0151%" height="15" fill="rgb(224,206,38)" fg:x="87023" fg:w="34"/><text x="38.9947%" y="447.50"></text></g><g><title>__alloc_pages_nodemask (121 samples, 0.05%)</title><rect x="38.7087%" y="501" width="0.0539%" height="15" fill="rgb(212,201,54)" fg:x="86942" fg:w="121"/><text x="38.9587%" y="511.50"></text></g><g><title>get_page_from_freelist (94 samples, 0.04%)</title><rect x="38.7207%" y="485" width="0.0419%" height="15" fill="rgb(218,154,48)" fg:x="86969" fg:w="94"/><text x="38.9707%" y="495.50"></text></g><g><title>prep_new_page (53 samples, 0.02%)</title><rect x="38.7389%" y="469" width="0.0236%" height="15" fill="rgb(232,93,24)" fg:x="87010" fg:w="53"/><text x="38.9889%" y="479.50"></text></g><g><title>alloc_pages_vma (140 samples, 0.06%)</title><rect x="38.7024%" y="517" width="0.0623%" height="15" fill="rgb(245,30,21)" fg:x="86928" fg:w="140"/><text x="38.9524%" y="527.50"></text></g><g><title>cgroup_throttle_swaprate (32 samples, 0.01%)</title><rect x="38.7648%" y="517" width="0.0142%" height="15" fill="rgb(242,148,29)" fg:x="87068" fg:w="32"/><text x="39.0148%" y="527.50"></text></g><g><title>copy_page (39 samples, 0.02%)</title><rect x="38.7790%" y="517" width="0.0174%" height="15" fill="rgb(244,153,54)" fg:x="87100" fg:w="39"/><text x="39.0290%" y="527.50"></text></g><g><title>mem_cgroup_charge (35 samples, 0.02%)</title><rect x="38.8013%" y="517" width="0.0156%" height="15" fill="rgb(252,87,22)" fg:x="87150" fg:w="35"/><text x="39.0513%" y="527.50"></text></g><g><title>handle_mm_fault (397 samples, 0.18%)</title><rect x="38.6633%" y="549" width="0.1768%" height="15" fill="rgb(210,51,29)" fg:x="86840" fg:w="397"/><text x="38.9133%" y="559.50"></text></g><g><title>wp_page_copy (327 samples, 0.15%)</title><rect x="38.6944%" y="533" width="0.1456%" height="15" fill="rgb(242,136,47)" fg:x="86910" fg:w="327"/><text x="38.9444%" y="543.50"></text></g><g><title>ptep_clear_flush (39 samples, 0.02%)</title><rect x="38.8226%" y="517" width="0.0174%" height="15" fill="rgb(238,68,4)" fg:x="87198" fg:w="39"/><text x="39.0726%" y="527.50"></text></g><g><title>flush_tlb_mm_range (31 samples, 0.01%)</title><rect x="38.8262%" y="501" width="0.0138%" height="15" fill="rgb(242,161,30)" fg:x="87206" fg:w="31"/><text x="39.0762%" y="511.50"></text></g><g><title>exc_page_fault (431 samples, 0.19%)</title><rect x="38.6495%" y="581" width="0.1919%" height="15" fill="rgb(218,58,44)" fg:x="86809" fg:w="431"/><text x="38.8995%" y="591.50"></text></g><g><title>do_user_addr_fault (431 samples, 0.19%)</title><rect x="38.6495%" y="565" width="0.1919%" height="15" fill="rgb(252,125,32)" fg:x="86809" fg:w="431"/><text x="38.8995%" y="575.50"></text></g><g><title>asm_exc_page_fault (459 samples, 0.20%)</title><rect x="38.6374%" y="597" width="0.2044%" height="15" fill="rgb(219,178,0)" fg:x="86782" fg:w="459"/><text x="38.8874%" y="607.50"></text></g><g><title>__put_user_nocheck_4 (478 samples, 0.21%)</title><rect x="38.6294%" y="613" width="0.2128%" height="15" fill="rgb(213,152,7)" fg:x="86764" fg:w="478"/><text x="38.8794%" y="623.50"></text></g><g><title>__free_pages_ok (38 samples, 0.02%)</title><rect x="38.9112%" y="581" width="0.0169%" height="15" fill="rgb(249,109,34)" fg:x="87397" fg:w="38"/><text x="39.1612%" y="591.50"></text></g><g><title>__mmdrop (116 samples, 0.05%)</title><rect x="38.9006%" y="597" width="0.0516%" height="15" fill="rgb(232,96,21)" fg:x="87373" fg:w="116"/><text x="39.1506%" y="607.50"></text></g><g><title>pgd_free (54 samples, 0.02%)</title><rect x="38.9282%" y="581" width="0.0240%" height="15" fill="rgb(228,27,39)" fg:x="87435" fg:w="54"/><text x="39.1782%" y="591.50"></text></g><g><title>_raw_spin_lock (31 samples, 0.01%)</title><rect x="38.9384%" y="565" width="0.0138%" height="15" fill="rgb(211,182,52)" fg:x="87458" fg:w="31"/><text x="39.1884%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (5,253 samples, 2.34%)</title><rect x="38.9522%" y="597" width="2.3388%" height="15" fill="rgb(234,178,38)" fg:x="87489" fg:w="5253"/><text x="39.2022%" y="607.50">_..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,085 samples, 2.26%)</title><rect x="39.0270%" y="581" width="2.2640%" height="15" fill="rgb(221,111,3)" fg:x="87657" fg:w="5085"/><text x="39.2770%" y="591.50">_..</text></g><g><title>native_write_msr (5,053 samples, 2.25%)</title><rect x="39.0413%" y="565" width="2.2497%" height="15" fill="rgb(228,175,21)" fg:x="87689" fg:w="5053"/><text x="39.2913%" y="575.50">n..</text></g><g><title>enqueue_task_fair (29 samples, 0.01%)</title><rect x="41.3083%" y="373" width="0.0129%" height="15" fill="rgb(228,174,43)" fg:x="92781" fg:w="29"/><text x="41.5583%" y="383.50"></text></g><g><title>ttwu_do_activate (40 samples, 0.02%)</title><rect x="41.3083%" y="389" width="0.0178%" height="15" fill="rgb(211,191,0)" fg:x="92781" fg:w="40"/><text x="41.5583%" y="399.50"></text></g><g><title>asm_call_sysvec_on_stack (56 samples, 0.02%)</title><rect x="41.3030%" y="565" width="0.0249%" height="15" fill="rgb(253,117,3)" fg:x="92769" fg:w="56"/><text x="41.5530%" y="575.50"></text></g><g><title>__sysvec_irq_work (54 samples, 0.02%)</title><rect x="41.3039%" y="549" width="0.0240%" height="15" fill="rgb(241,127,19)" fg:x="92771" fg:w="54"/><text x="41.5539%" y="559.50"></text></g><g><title>irq_work_run (54 samples, 0.02%)</title><rect x="41.3039%" y="533" width="0.0240%" height="15" fill="rgb(218,103,12)" fg:x="92771" fg:w="54"/><text x="41.5539%" y="543.50"></text></g><g><title>irq_work_run_list (54 samples, 0.02%)</title><rect x="41.3039%" y="517" width="0.0240%" height="15" fill="rgb(236,214,43)" fg:x="92771" fg:w="54"/><text x="41.5539%" y="527.50"></text></g><g><title>irq_work_single (54 samples, 0.02%)</title><rect x="41.3039%" y="501" width="0.0240%" height="15" fill="rgb(244,144,19)" fg:x="92771" fg:w="54"/><text x="41.5539%" y="511.50"></text></g><g><title>perf_pending_event (54 samples, 0.02%)</title><rect x="41.3039%" y="485" width="0.0240%" height="15" fill="rgb(246,188,10)" fg:x="92771" fg:w="54"/><text x="41.5539%" y="495.50"></text></g><g><title>perf_event_wakeup (54 samples, 0.02%)</title><rect x="41.3039%" y="469" width="0.0240%" height="15" fill="rgb(212,193,33)" fg:x="92771" fg:w="54"/><text x="41.5539%" y="479.50"></text></g><g><title>__wake_up_common_lock (53 samples, 0.02%)</title><rect x="41.3043%" y="453" width="0.0236%" height="15" fill="rgb(241,51,29)" fg:x="92772" fg:w="53"/><text x="41.5543%" y="463.50"></text></g><g><title>__wake_up_common (53 samples, 0.02%)</title><rect x="41.3043%" y="437" width="0.0236%" height="15" fill="rgb(211,58,19)" fg:x="92772" fg:w="53"/><text x="41.5543%" y="447.50"></text></g><g><title>pollwake (50 samples, 0.02%)</title><rect x="41.3057%" y="421" width="0.0223%" height="15" fill="rgb(229,111,26)" fg:x="92775" fg:w="50"/><text x="41.5557%" y="431.50"></text></g><g><title>try_to_wake_up (50 samples, 0.02%)</title><rect x="41.3057%" y="405" width="0.0223%" height="15" fill="rgb(213,115,40)" fg:x="92775" fg:w="50"/><text x="41.5557%" y="415.50"></text></g><g><title>asm_sysvec_irq_work (81 samples, 0.04%)</title><rect x="41.2932%" y="597" width="0.0361%" height="15" fill="rgb(209,56,44)" fg:x="92747" fg:w="81"/><text x="41.5432%" y="607.50"></text></g><g><title>sysvec_irq_work (60 samples, 0.03%)</title><rect x="41.3025%" y="581" width="0.0267%" height="15" fill="rgb(230,108,32)" fg:x="92768" fg:w="60"/><text x="41.5525%" y="591.50"></text></g><g><title>schedule_tail (6,081 samples, 2.71%)</title><rect x="38.6263%" y="629" width="2.7074%" height="15" fill="rgb(216,165,31)" fg:x="86757" fg:w="6081"/><text x="38.8763%" y="639.50">sc..</text></g><g><title>finish_task_switch (5,596 samples, 2.49%)</title><rect x="38.8422%" y="613" width="2.4915%" height="15" fill="rgb(218,122,21)" fg:x="87242" fg:w="5596"/><text x="39.0922%" y="623.50">fi..</text></g><g><title>ret_from_fork (6,105 samples, 2.72%)</title><rect x="38.6219%" y="645" width="2.7181%" height="15" fill="rgb(223,224,47)" fg:x="86747" fg:w="6105"/><text x="38.8719%" y="655.50">re..</text></g><g><title>arch_fork (6,638 samples, 2.96%)</title><rect x="38.3854%" y="661" width="2.9554%" height="15" fill="rgb(238,102,44)" fg:x="86216" fg:w="6638"/><text x="38.6354%" y="671.50">arc..</text></g><g><title>do_user_addr_fault (63 samples, 0.03%)</title><rect x="41.3408%" y="629" width="0.0280%" height="15" fill="rgb(236,46,40)" fg:x="92854" fg:w="63"/><text x="41.5908%" y="639.50"></text></g><g><title>handle_mm_fault (53 samples, 0.02%)</title><rect x="41.3453%" y="613" width="0.0236%" height="15" fill="rgb(247,202,50)" fg:x="92864" fg:w="53"/><text x="41.5953%" y="623.50"></text></g><g><title>wp_page_copy (40 samples, 0.02%)</title><rect x="41.3511%" y="597" width="0.0178%" height="15" fill="rgb(209,99,20)" fg:x="92877" fg:w="40"/><text x="41.6011%" y="607.50"></text></g><g><title>asm_exc_page_fault (64 samples, 0.03%)</title><rect x="41.3408%" y="661" width="0.0285%" height="15" fill="rgb(252,27,34)" fg:x="92854" fg:w="64"/><text x="41.5908%" y="671.50"></text></g><g><title>exc_page_fault (64 samples, 0.03%)</title><rect x="41.3408%" y="645" width="0.0285%" height="15" fill="rgb(215,206,23)" fg:x="92854" fg:w="64"/><text x="41.5908%" y="655.50"></text></g><g><title>__libc_fork (6,756 samples, 3.01%)</title><rect x="38.3645%" y="677" width="3.0079%" height="15" fill="rgb(212,135,36)" fg:x="86169" fg:w="6756"/><text x="38.6145%" y="687.50">__l..</text></g><g><title>[dash] (23,387 samples, 10.41%)</title><rect x="30.9658%" y="693" width="10.4125%" height="15" fill="rgb(240,189,1)" fg:x="69551" fg:w="23387"/><text x="31.2158%" y="703.50">[dash]</text></g><g><title>do_syscall_64 (40 samples, 0.02%)</title><rect x="41.3827%" y="661" width="0.0178%" height="15" fill="rgb(242,56,20)" fg:x="92948" fg:w="40"/><text x="41.6327%" y="671.50"></text></g><g><title>__x64_sys_pipe (40 samples, 0.02%)</title><rect x="41.3827%" y="645" width="0.0178%" height="15" fill="rgb(247,132,33)" fg:x="92948" fg:w="40"/><text x="41.6327%" y="655.50"></text></g><g><title>do_pipe2 (39 samples, 0.02%)</title><rect x="41.3831%" y="629" width="0.0174%" height="15" fill="rgb(208,149,11)" fg:x="92949" fg:w="39"/><text x="41.6331%" y="639.50"></text></g><g><title>create_pipe_files (35 samples, 0.02%)</title><rect x="41.3849%" y="613" width="0.0156%" height="15" fill="rgb(211,33,11)" fg:x="92953" fg:w="35"/><text x="41.6349%" y="623.50"></text></g><g><title>__GI_pipe (42 samples, 0.02%)</title><rect x="41.3822%" y="693" width="0.0187%" height="15" fill="rgb(221,29,38)" fg:x="92947" fg:w="42"/><text x="41.6322%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (42 samples, 0.02%)</title><rect x="41.3822%" y="677" width="0.0187%" height="15" fill="rgb(206,182,49)" fg:x="92947" fg:w="42"/><text x="41.6322%" y="687.50"></text></g><g><title>[dash] (23,468 samples, 10.45%)</title><rect x="30.9627%" y="709" width="10.4485%" height="15" fill="rgb(216,140,1)" fg:x="69544" fg:w="23468"/><text x="31.2127%" y="719.50">[dash]</text></g><g><title>__GI___close (43 samples, 0.02%)</title><rect x="41.4116%" y="709" width="0.0191%" height="15" fill="rgb(232,57,40)" fg:x="93013" fg:w="43"/><text x="41.6616%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (42 samples, 0.02%)</title><rect x="41.4121%" y="693" width="0.0187%" height="15" fill="rgb(224,186,18)" fg:x="93014" fg:w="42"/><text x="41.6621%" y="703.50"></text></g><g><title>syscall_exit_to_user_mode (38 samples, 0.02%)</title><rect x="41.4139%" y="677" width="0.0169%" height="15" fill="rgb(215,121,11)" fg:x="93018" fg:w="38"/><text x="41.6639%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (38 samples, 0.02%)</title><rect x="41.4139%" y="661" width="0.0169%" height="15" fill="rgb(245,147,10)" fg:x="93018" fg:w="38"/><text x="41.6639%" y="671.50"></text></g><g><title>task_work_run (36 samples, 0.02%)</title><rect x="41.4147%" y="645" width="0.0160%" height="15" fill="rgb(238,153,13)" fg:x="93020" fg:w="36"/><text x="41.6647%" y="655.50"></text></g><g><title>__fput (36 samples, 0.02%)</title><rect x="41.4147%" y="629" width="0.0160%" height="15" fill="rgb(233,108,0)" fg:x="93020" fg:w="36"/><text x="41.6647%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (431 samples, 0.19%)</title><rect x="41.4628%" y="549" width="0.1919%" height="15" fill="rgb(212,157,17)" fg:x="93128" fg:w="431"/><text x="41.7128%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (425 samples, 0.19%)</title><rect x="41.4655%" y="533" width="0.1892%" height="15" fill="rgb(225,213,38)" fg:x="93134" fg:w="425"/><text x="41.7155%" y="543.50"></text></g><g><title>native_write_msr (421 samples, 0.19%)</title><rect x="41.4673%" y="517" width="0.1874%" height="15" fill="rgb(248,16,11)" fg:x="93138" fg:w="421"/><text x="41.7173%" y="527.50"></text></g><g><title>finish_task_switch (452 samples, 0.20%)</title><rect x="41.4575%" y="565" width="0.2012%" height="15" fill="rgb(241,33,4)" fg:x="93116" fg:w="452"/><text x="41.7075%" y="575.50"></text></g><g><title>schedule (484 samples, 0.22%)</title><rect x="41.4490%" y="597" width="0.2155%" height="15" fill="rgb(222,26,43)" fg:x="93097" fg:w="484"/><text x="41.6990%" y="607.50"></text></g><g><title>__schedule (484 samples, 0.22%)</title><rect x="41.4490%" y="581" width="0.2155%" height="15" fill="rgb(243,29,36)" fg:x="93097" fg:w="484"/><text x="41.6990%" y="591.50"></text></g><g><title>new_sync_read (514 samples, 0.23%)</title><rect x="41.4392%" y="629" width="0.2288%" height="15" fill="rgb(241,9,27)" fg:x="93075" fg:w="514"/><text x="41.6892%" y="639.50"></text></g><g><title>pipe_read (511 samples, 0.23%)</title><rect x="41.4406%" y="613" width="0.2275%" height="15" fill="rgb(205,117,26)" fg:x="93078" fg:w="511"/><text x="41.6906%" y="623.50"></text></g><g><title>do_syscall_64 (529 samples, 0.24%)</title><rect x="41.4339%" y="677" width="0.2355%" height="15" fill="rgb(209,80,39)" fg:x="93063" fg:w="529"/><text x="41.6839%" y="687.50"></text></g><g><title>ksys_read (526 samples, 0.23%)</title><rect x="41.4352%" y="661" width="0.2342%" height="15" fill="rgb(239,155,6)" fg:x="93066" fg:w="526"/><text x="41.6852%" y="671.50"></text></g><g><title>vfs_read (520 samples, 0.23%)</title><rect x="41.4379%" y="645" width="0.2315%" height="15" fill="rgb(212,104,12)" fg:x="93072" fg:w="520"/><text x="41.6879%" y="655.50"></text></g><g><title>arch_do_signal (24 samples, 0.01%)</title><rect x="41.6707%" y="645" width="0.0107%" height="15" fill="rgb(234,204,3)" fg:x="93595" fg:w="24"/><text x="41.9207%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (559 samples, 0.25%)</title><rect x="41.4339%" y="693" width="0.2489%" height="15" fill="rgb(251,218,7)" fg:x="93063" fg:w="559"/><text x="41.6839%" y="703.50"></text></g><g><title>syscall_exit_to_user_mode (30 samples, 0.01%)</title><rect x="41.6694%" y="677" width="0.0134%" height="15" fill="rgb(221,81,32)" fg:x="93592" fg:w="30"/><text x="41.9194%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (28 samples, 0.01%)</title><rect x="41.6703%" y="661" width="0.0125%" height="15" fill="rgb(214,152,26)" fg:x="93594" fg:w="28"/><text x="41.9203%" y="671.50"></text></g><g><title>__GI___libc_read (580 samples, 0.26%)</title><rect x="41.4321%" y="709" width="0.2582%" height="15" fill="rgb(223,22,3)" fg:x="93059" fg:w="580"/><text x="41.6821%" y="719.50"></text></g><g><title>bprm_execve (26 samples, 0.01%)</title><rect x="41.6939%" y="629" width="0.0116%" height="15" fill="rgb(207,174,7)" fg:x="93647" fg:w="26"/><text x="41.9439%" y="639.50"></text></g><g><title>__GI_execve (31 samples, 0.01%)</title><rect x="41.6930%" y="709" width="0.0138%" height="15" fill="rgb(224,19,52)" fg:x="93645" fg:w="31"/><text x="41.9430%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="41.6930%" y="693" width="0.0138%" height="15" fill="rgb(228,24,14)" fg:x="93645" fg:w="31"/><text x="41.9430%" y="703.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="41.6930%" y="677" width="0.0138%" height="15" fill="rgb(230,153,43)" fg:x="93645" fg:w="31"/><text x="41.9430%" y="687.50"></text></g><g><title>__x64_sys_execve (31 samples, 0.01%)</title><rect x="41.6930%" y="661" width="0.0138%" height="15" fill="rgb(231,106,12)" fg:x="93645" fg:w="31"/><text x="41.9430%" y="671.50"></text></g><g><title>do_execveat_common (31 samples, 0.01%)</title><rect x="41.6930%" y="645" width="0.0138%" height="15" fill="rgb(215,92,2)" fg:x="93645" fg:w="31"/><text x="41.9430%" y="655.50"></text></g><g><title>[dash] (24,149 samples, 10.75%)</title><rect x="30.9587%" y="725" width="10.7517%" height="15" fill="rgb(249,143,25)" fg:x="69535" fg:w="24149"/><text x="31.2087%" y="735.50">[dash]</text></g><g><title>[dash] (24,169 samples, 10.76%)</title><rect x="30.9542%" y="741" width="10.7606%" height="15" fill="rgb(252,7,35)" fg:x="69525" fg:w="24169"/><text x="31.2042%" y="751.50">[dash]</text></g><g><title>[dash] (24,178 samples, 10.76%)</title><rect x="30.9506%" y="757" width="10.7646%" height="15" fill="rgb(216,69,40)" fg:x="69517" fg:w="24178"/><text x="31.2006%" y="767.50">[dash]</text></g><g><title>[dash] (24,184 samples, 10.77%)</title><rect x="30.9498%" y="773" width="10.7673%" height="15" fill="rgb(240,36,33)" fg:x="69515" fg:w="24184"/><text x="31.1998%" y="783.50">[dash]</text></g><g><title>[dash] (24,194 samples, 10.77%)</title><rect x="30.9493%" y="805" width="10.7718%" height="15" fill="rgb(231,128,14)" fg:x="69514" fg:w="24194"/><text x="31.1993%" y="815.50">[dash]</text></g><g><title>[dash] (24,193 samples, 10.77%)</title><rect x="30.9498%" y="789" width="10.7713%" height="15" fill="rgb(245,143,14)" fg:x="69515" fg:w="24193"/><text x="31.1998%" y="799.50">[dash]</text></g><g><title>__GI__exit (35 samples, 0.02%)</title><rect x="41.7219%" y="805" width="0.0156%" height="15" fill="rgb(222,130,28)" fg:x="93710" fg:w="35"/><text x="41.9719%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="41.7224%" y="789" width="0.0151%" height="15" fill="rgb(212,10,48)" fg:x="93711" fg:w="34"/><text x="41.9724%" y="799.50"></text></g><g><title>do_syscall_64 (34 samples, 0.02%)</title><rect x="41.7224%" y="773" width="0.0151%" height="15" fill="rgb(254,118,45)" fg:x="93711" fg:w="34"/><text x="41.9724%" y="783.50"></text></g><g><title>__x64_sys_exit_group (33 samples, 0.01%)</title><rect x="41.7228%" y="757" width="0.0147%" height="15" fill="rgb(228,6,45)" fg:x="93712" fg:w="33"/><text x="41.9728%" y="767.50"></text></g><g><title>do_group_exit (32 samples, 0.01%)</title><rect x="41.7233%" y="741" width="0.0142%" height="15" fill="rgb(241,18,35)" fg:x="93713" fg:w="32"/><text x="41.9733%" y="751.50"></text></g><g><title>do_exit (30 samples, 0.01%)</title><rect x="41.7242%" y="725" width="0.0134%" height="15" fill="rgb(227,214,53)" fg:x="93715" fg:w="30"/><text x="41.9742%" y="735.50"></text></g><g><title>[dash] (24,232 samples, 10.79%)</title><rect x="30.9493%" y="821" width="10.7887%" height="15" fill="rgb(224,107,51)" fg:x="69514" fg:w="24232"/><text x="31.1993%" y="831.50">[dash]</text></g><g><title>__libc_start_main (24,247 samples, 10.80%)</title><rect x="30.9484%" y="853" width="10.7953%" height="15" fill="rgb(248,60,28)" fg:x="69512" fg:w="24247"/><text x="31.1984%" y="863.50">__libc_start_main</text></g><g><title>[dash] (24,247 samples, 10.80%)</title><rect x="30.9484%" y="837" width="10.7953%" height="15" fill="rgb(249,101,23)" fg:x="69512" fg:w="24247"/><text x="31.1984%" y="847.50">[dash]</text></g><g><title>[dash] (24,260 samples, 10.80%)</title><rect x="30.9435%" y="869" width="10.8011%" height="15" fill="rgb(228,51,19)" fg:x="69501" fg:w="24260"/><text x="31.1935%" y="879.50">[dash]</text></g><g><title>[dash] (23 samples, 0.01%)</title><rect x="41.7447%" y="853" width="0.0102%" height="15" fill="rgb(213,20,6)" fg:x="93761" fg:w="23"/><text x="41.9947%" y="863.50"></text></g><g><title>[unknown] (39 samples, 0.02%)</title><rect x="41.7447%" y="869" width="0.0174%" height="15" fill="rgb(212,124,10)" fg:x="93761" fg:w="39"/><text x="41.9947%" y="879.50"></text></g><g><title>_dl_catch_exception (31 samples, 0.01%)</title><rect x="41.7687%" y="773" width="0.0138%" height="15" fill="rgb(248,3,40)" fg:x="93815" fg:w="31"/><text x="42.0187%" y="783.50"></text></g><g><title>openaux (31 samples, 0.01%)</title><rect x="41.7687%" y="757" width="0.0138%" height="15" fill="rgb(223,178,23)" fg:x="93815" fg:w="31"/><text x="42.0187%" y="767.50"></text></g><g><title>_dl_map_object (31 samples, 0.01%)</title><rect x="41.7687%" y="741" width="0.0138%" height="15" fill="rgb(240,132,45)" fg:x="93815" fg:w="31"/><text x="42.0187%" y="751.50"></text></g><g><title>_dl_map_object_from_fd (26 samples, 0.01%)</title><rect x="41.7709%" y="725" width="0.0116%" height="15" fill="rgb(245,164,36)" fg:x="93820" fg:w="26"/><text x="42.0209%" y="735.50"></text></g><g><title>_dl_map_object_deps (33 samples, 0.01%)</title><rect x="41.7683%" y="789" width="0.0147%" height="15" fill="rgb(231,188,53)" fg:x="93814" fg:w="33"/><text x="42.0183%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (31 samples, 0.01%)</title><rect x="41.7878%" y="773" width="0.0138%" height="15" fill="rgb(237,198,39)" fg:x="93858" fg:w="31"/><text x="42.0378%" y="783.50"></text></g><g><title>_dl_relocate_object (43 samples, 0.02%)</title><rect x="41.7834%" y="789" width="0.0191%" height="15" fill="rgb(223,120,35)" fg:x="93848" fg:w="43"/><text x="42.0334%" y="799.50"></text></g><g><title>[ld-2.31.so] (97 samples, 0.04%)</title><rect x="41.7678%" y="805" width="0.0432%" height="15" fill="rgb(253,107,49)" fg:x="93813" fg:w="97"/><text x="42.0178%" y="815.50"></text></g><g><title>_dl_start_final (105 samples, 0.05%)</title><rect x="41.7665%" y="837" width="0.0467%" height="15" fill="rgb(216,44,31)" fg:x="93810" fg:w="105"/><text x="42.0165%" y="847.50"></text></g><g><title>_dl_sysdep_start (104 samples, 0.05%)</title><rect x="41.7669%" y="821" width="0.0463%" height="15" fill="rgb(253,87,21)" fg:x="93811" fg:w="104"/><text x="42.0169%" y="831.50"></text></g><g><title>_dl_start (108 samples, 0.05%)</title><rect x="41.7665%" y="853" width="0.0481%" height="15" fill="rgb(226,18,2)" fg:x="93810" fg:w="108"/><text x="42.0165%" y="863.50"></text></g><g><title>_start (110 samples, 0.05%)</title><rect x="41.7660%" y="869" width="0.0490%" height="15" fill="rgb(216,8,46)" fg:x="93809" fg:w="110"/><text x="42.0160%" y="879.50"></text></g><g><title>asm_exc_page_fault (321 samples, 0.14%)</title><rect x="41.8150%" y="869" width="0.1429%" height="15" fill="rgb(226,140,39)" fg:x="93919" fg:w="321"/><text x="42.0650%" y="879.50"></text></g><g><title>unmap_page_range (49 samples, 0.02%)</title><rect x="41.9837%" y="709" width="0.0218%" height="15" fill="rgb(221,194,54)" fg:x="94298" fg:w="49"/><text x="42.2337%" y="719.50"></text></g><g><title>mmput (102 samples, 0.05%)</title><rect x="41.9615%" y="757" width="0.0454%" height="15" fill="rgb(213,92,11)" fg:x="94248" fg:w="102"/><text x="42.2115%" y="767.50"></text></g><g><title>exit_mmap (100 samples, 0.04%)</title><rect x="41.9624%" y="741" width="0.0445%" height="15" fill="rgb(229,162,46)" fg:x="94250" fg:w="100"/><text x="42.2124%" y="751.50"></text></g><g><title>unmap_vmas (52 samples, 0.02%)</title><rect x="41.9837%" y="725" width="0.0232%" height="15" fill="rgb(214,111,36)" fg:x="94298" fg:w="52"/><text x="42.2337%" y="735.50"></text></g><g><title>begin_new_exec (110 samples, 0.05%)</title><rect x="41.9601%" y="773" width="0.0490%" height="15" fill="rgb(207,6,21)" fg:x="94245" fg:w="110"/><text x="42.2101%" y="783.50"></text></g><g><title>load_elf_binary (115 samples, 0.05%)</title><rect x="41.9597%" y="789" width="0.0512%" height="15" fill="rgb(213,127,38)" fg:x="94244" fg:w="115"/><text x="42.2097%" y="799.50"></text></g><g><title>__x64_sys_execve (116 samples, 0.05%)</title><rect x="41.9597%" y="837" width="0.0516%" height="15" fill="rgb(238,118,32)" fg:x="94244" fg:w="116"/><text x="42.2097%" y="847.50"></text></g><g><title>do_execveat_common (116 samples, 0.05%)</title><rect x="41.9597%" y="821" width="0.0516%" height="15" fill="rgb(240,139,39)" fg:x="94244" fg:w="116"/><text x="42.2097%" y="831.50"></text></g><g><title>bprm_execve (116 samples, 0.05%)</title><rect x="41.9597%" y="805" width="0.0516%" height="15" fill="rgb(235,10,37)" fg:x="94244" fg:w="116"/><text x="42.2097%" y="815.50"></text></g><g><title>free_pgd_range (23 samples, 0.01%)</title><rect x="42.0234%" y="741" width="0.0102%" height="15" fill="rgb(249,171,38)" fg:x="94387" fg:w="23"/><text x="42.2734%" y="751.50"></text></g><g><title>__put_anon_vma (51 samples, 0.02%)</title><rect x="42.0434%" y="725" width="0.0227%" height="15" fill="rgb(242,144,32)" fg:x="94432" fg:w="51"/><text x="42.2934%" y="735.50"></text></g><g><title>kmem_cache_free (47 samples, 0.02%)</title><rect x="42.0452%" y="709" width="0.0209%" height="15" fill="rgb(217,117,21)" fg:x="94436" fg:w="47"/><text x="42.2952%" y="719.50"></text></g><g><title>anon_vma_interval_tree_remove (23 samples, 0.01%)</title><rect x="42.0661%" y="725" width="0.0102%" height="15" fill="rgb(249,87,1)" fg:x="94483" fg:w="23"/><text x="42.3161%" y="735.50"></text></g><g><title>__slab_free (32 samples, 0.01%)</title><rect x="42.1031%" y="709" width="0.0142%" height="15" fill="rgb(248,196,48)" fg:x="94566" fg:w="32"/><text x="42.3531%" y="719.50"></text></g><g><title>kmem_cache_free (114 samples, 0.05%)</title><rect x="42.0799%" y="725" width="0.0508%" height="15" fill="rgb(251,206,33)" fg:x="94514" fg:w="114"/><text x="42.3299%" y="735.50"></text></g><g><title>unlink_anon_vmas (221 samples, 0.10%)</title><rect x="42.0336%" y="741" width="0.0984%" height="15" fill="rgb(232,141,28)" fg:x="94410" fg:w="221"/><text x="42.2836%" y="751.50"></text></g><g><title>unlink_file_vma (51 samples, 0.02%)</title><rect x="42.1320%" y="741" width="0.0227%" height="15" fill="rgb(209,167,14)" fg:x="94631" fg:w="51"/><text x="42.3820%" y="751.50"></text></g><g><title>vma_interval_tree_remove (25 samples, 0.01%)</title><rect x="42.1436%" y="725" width="0.0111%" height="15" fill="rgb(225,11,50)" fg:x="94657" fg:w="25"/><text x="42.3936%" y="735.50"></text></g><g><title>free_pgtables (308 samples, 0.14%)</title><rect x="42.0220%" y="757" width="0.1371%" height="15" fill="rgb(209,50,20)" fg:x="94384" fg:w="308"/><text x="42.2720%" y="767.50"></text></g><g><title>lru_add_drain (25 samples, 0.01%)</title><rect x="42.1592%" y="757" width="0.0111%" height="15" fill="rgb(212,17,46)" fg:x="94692" fg:w="25"/><text x="42.4092%" y="767.50"></text></g><g><title>lru_add_drain_cpu (25 samples, 0.01%)</title><rect x="42.1592%" y="741" width="0.0111%" height="15" fill="rgb(216,101,39)" fg:x="94692" fg:w="25"/><text x="42.4092%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (23 samples, 0.01%)</title><rect x="42.1600%" y="725" width="0.0102%" height="15" fill="rgb(212,228,48)" fg:x="94694" fg:w="23"/><text x="42.4100%" y="735.50"></text></g><g><title>remove_vma (30 samples, 0.01%)</title><rect x="42.1703%" y="757" width="0.0134%" height="15" fill="rgb(250,6,50)" fg:x="94717" fg:w="30"/><text x="42.4203%" y="767.50"></text></g><g><title>free_pages_and_swap_cache (30 samples, 0.01%)</title><rect x="42.1930%" y="741" width="0.0134%" height="15" fill="rgb(250,160,48)" fg:x="94768" fg:w="30"/><text x="42.4430%" y="751.50"></text></g><g><title>tlb_finish_mmu (137 samples, 0.06%)</title><rect x="42.1836%" y="757" width="0.0610%" height="15" fill="rgb(244,216,33)" fg:x="94747" fg:w="137"/><text x="42.4336%" y="767.50"></text></g><g><title>release_pages (84 samples, 0.04%)</title><rect x="42.2072%" y="741" width="0.0374%" height="15" fill="rgb(207,157,5)" fg:x="94800" fg:w="84"/><text x="42.4572%" y="751.50"></text></g><g><title>page_remove_rmap (56 samples, 0.02%)</title><rect x="42.3212%" y="725" width="0.0249%" height="15" fill="rgb(228,199,8)" fg:x="95056" fg:w="56"/><text x="42.5712%" y="735.50"></text></g><g><title>unmap_page_range (230 samples, 0.10%)</title><rect x="42.2469%" y="741" width="0.1024%" height="15" fill="rgb(227,80,20)" fg:x="94889" fg:w="230"/><text x="42.4969%" y="751.50"></text></g><g><title>exit_mmap (749 samples, 0.33%)</title><rect x="42.0185%" y="773" width="0.3335%" height="15" fill="rgb(222,9,33)" fg:x="94376" fg:w="749"/><text x="42.2685%" y="783.50"></text></g><g><title>unmap_vmas (241 samples, 0.11%)</title><rect x="42.2446%" y="757" width="0.1073%" height="15" fill="rgb(239,44,28)" fg:x="94884" fg:w="241"/><text x="42.4946%" y="767.50"></text></g><g><title>mmput (753 samples, 0.34%)</title><rect x="42.0185%" y="789" width="0.3353%" height="15" fill="rgb(249,187,43)" fg:x="94376" fg:w="753"/><text x="42.2685%" y="799.50"></text></g><g><title>__x64_sys_exit_group (799 samples, 0.36%)</title><rect x="42.0113%" y="837" width="0.3557%" height="15" fill="rgb(216,141,28)" fg:x="94360" fg:w="799"/><text x="42.2613%" y="847.50"></text></g><g><title>do_group_exit (799 samples, 0.36%)</title><rect x="42.0113%" y="821" width="0.3557%" height="15" fill="rgb(230,154,53)" fg:x="94360" fg:w="799"/><text x="42.2613%" y="831.50"></text></g><g><title>do_exit (799 samples, 0.36%)</title><rect x="42.0113%" y="805" width="0.3557%" height="15" fill="rgb(227,82,4)" fg:x="94360" fg:w="799"/><text x="42.2613%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (923 samples, 0.41%)</title><rect x="41.9579%" y="869" width="0.4109%" height="15" fill="rgb(220,107,16)" fg:x="94240" fg:w="923"/><text x="42.2079%" y="879.50"></text></g><g><title>do_syscall_64 (922 samples, 0.41%)</title><rect x="41.9584%" y="853" width="0.4105%" height="15" fill="rgb(207,187,2)" fg:x="94241" fg:w="922"/><text x="42.2084%" y="863.50"></text></g><g><title>ret_from_fork (34 samples, 0.02%)</title><rect x="42.3715%" y="869" width="0.0151%" height="15" fill="rgb(210,162,52)" fg:x="95169" fg:w="34"/><text x="42.6215%" y="879.50"></text></g><g><title>schedule_tail (34 samples, 0.02%)</title><rect x="42.3715%" y="853" width="0.0151%" height="15" fill="rgb(217,216,49)" fg:x="95169" fg:w="34"/><text x="42.6215%" y="863.50"></text></g><g><title>finish_task_switch (34 samples, 0.02%)</title><rect x="42.3715%" y="837" width="0.0151%" height="15" fill="rgb(218,146,49)" fg:x="95169" fg:w="34"/><text x="42.6215%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.02%)</title><rect x="42.3715%" y="821" width="0.0151%" height="15" fill="rgb(216,55,40)" fg:x="95169" fg:w="34"/><text x="42.6215%" y="831.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.02%)</title><rect x="42.3715%" y="805" width="0.0151%" height="15" fill="rgb(208,196,21)" fg:x="95169" fg:w="34"/><text x="42.6215%" y="815.50"></text></g><g><title>native_write_msr (34 samples, 0.02%)</title><rect x="42.3715%" y="789" width="0.0151%" height="15" fill="rgb(242,117,42)" fg:x="95169" fg:w="34"/><text x="42.6215%" y="799.50"></text></g><g><title>c++ (25,722 samples, 11.45%)</title><rect x="30.9351%" y="885" width="11.4521%" height="15" fill="rgb(210,11,23)" fg:x="69482" fg:w="25722"/><text x="31.1851%" y="895.50">c++</text></g><g><title>[perf-501242.map] (48 samples, 0.02%)</title><rect x="42.3880%" y="869" width="0.0214%" height="15" fill="rgb(217,110,2)" fg:x="95206" fg:w="48"/><text x="42.6380%" y="879.50"></text></g><g><title>cli-update-thre (55 samples, 0.02%)</title><rect x="42.3871%" y="885" width="0.0245%" height="15" fill="rgb(229,77,54)" fg:x="95204" fg:w="55"/><text x="42.6371%" y="895.50"></text></g><g><title>JVM_Yield (28 samples, 0.01%)</title><rect x="42.5763%" y="853" width="0.0125%" height="15" fill="rgb(218,53,16)" fg:x="95629" fg:w="28"/><text x="42.8263%" y="863.50"></text></g><g><title>[perf-501242.map] (416 samples, 0.19%)</title><rect x="42.4120%" y="869" width="0.1852%" height="15" fill="rgb(215,38,13)" fg:x="95260" fg:w="416"/><text x="42.6620%" y="879.50"></text></g><g><title>find-action-loo (462 samples, 0.21%)</title><rect x="42.4116%" y="885" width="0.2057%" height="15" fill="rgb(235,42,18)" fg:x="95259" fg:w="462"/><text x="42.6616%" y="895.50"></text></g><g><title>__GI___clone (33 samples, 0.01%)</title><rect x="42.6026%" y="869" width="0.0147%" height="15" fill="rgb(219,66,54)" fg:x="95688" fg:w="33"/><text x="42.8526%" y="879.50"></text></g><g><title>[perf-501242.map] (36 samples, 0.02%)</title><rect x="42.6182%" y="869" width="0.0160%" height="15" fill="rgb(222,205,4)" fg:x="95723" fg:w="36"/><text x="42.8682%" y="879.50"></text></g><g><title>ret_from_fork (26 samples, 0.01%)</title><rect x="42.6391%" y="853" width="0.0116%" height="15" fill="rgb(227,213,46)" fg:x="95770" fg:w="26"/><text x="42.8891%" y="863.50"></text></g><g><title>schedule_tail (26 samples, 0.01%)</title><rect x="42.6391%" y="837" width="0.0116%" height="15" fill="rgb(250,145,42)" fg:x="95770" fg:w="26"/><text x="42.8891%" y="847.50"></text></g><g><title>finish_task_switch (26 samples, 0.01%)</title><rect x="42.6391%" y="821" width="0.0116%" height="15" fill="rgb(219,15,2)" fg:x="95770" fg:w="26"/><text x="42.8891%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="42.6396%" y="805" width="0.0111%" height="15" fill="rgb(231,181,52)" fg:x="95771" fg:w="25"/><text x="42.8896%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (24 samples, 0.01%)</title><rect x="42.6400%" y="789" width="0.0107%" height="15" fill="rgb(235,1,42)" fg:x="95772" fg:w="24"/><text x="42.8900%" y="799.50"></text></g><g><title>native_write_msr (24 samples, 0.01%)</title><rect x="42.6400%" y="773" width="0.0107%" height="15" fill="rgb(249,88,27)" fg:x="95772" fg:w="24"/><text x="42.8900%" y="783.50"></text></g><g><title>__GI___clone (40 samples, 0.02%)</title><rect x="42.6382%" y="869" width="0.0178%" height="15" fill="rgb(235,145,16)" fg:x="95768" fg:w="40"/><text x="42.8882%" y="879.50"></text></g><g><title>globbing_pool-0 (88 samples, 0.04%)</title><rect x="42.6173%" y="885" width="0.0392%" height="15" fill="rgb(237,114,19)" fg:x="95721" fg:w="88"/><text x="42.8673%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.03%)</title><rect x="42.7126%" y="597" width="0.0263%" height="15" fill="rgb(238,51,50)" fg:x="95935" fg:w="59"/><text x="42.9626%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.03%)</title><rect x="42.7130%" y="581" width="0.0258%" height="15" fill="rgb(205,194,25)" fg:x="95936" fg:w="58"/><text x="42.9630%" y="591.50"></text></g><g><title>native_write_msr (58 samples, 0.03%)</title><rect x="42.7130%" y="565" width="0.0258%" height="15" fill="rgb(215,203,17)" fg:x="95936" fg:w="58"/><text x="42.9630%" y="575.50"></text></g><g><title>finish_task_switch (62 samples, 0.03%)</title><rect x="42.7117%" y="613" width="0.0276%" height="15" fill="rgb(233,112,49)" fg:x="95933" fg:w="62"/><text x="42.9617%" y="623.50"></text></g><g><title>do_syscall_64 (65 samples, 0.03%)</title><rect x="42.7108%" y="725" width="0.0289%" height="15" fill="rgb(241,130,26)" fg:x="95931" fg:w="65"/><text x="42.9608%" y="735.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.03%)</title><rect x="42.7108%" y="709" width="0.0289%" height="15" fill="rgb(252,223,19)" fg:x="95931" fg:w="65"/><text x="42.9608%" y="719.50"></text></g><g><title>do_futex (65 samples, 0.03%)</title><rect x="42.7108%" y="693" width="0.0289%" height="15" fill="rgb(211,95,25)" fg:x="95931" fg:w="65"/><text x="42.9608%" y="703.50"></text></g><g><title>futex_wait (64 samples, 0.03%)</title><rect x="42.7112%" y="677" width="0.0285%" height="15" fill="rgb(251,182,27)" fg:x="95932" fg:w="64"/><text x="42.9612%" y="687.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.03%)</title><rect x="42.7112%" y="661" width="0.0285%" height="15" fill="rgb(238,24,4)" fg:x="95932" fg:w="64"/><text x="42.9612%" y="671.50"></text></g><g><title>schedule (63 samples, 0.03%)</title><rect x="42.7117%" y="645" width="0.0280%" height="15" fill="rgb(224,220,25)" fg:x="95933" fg:w="63"/><text x="42.9617%" y="655.50"></text></g><g><title>__schedule (63 samples, 0.03%)</title><rect x="42.7117%" y="629" width="0.0280%" height="15" fill="rgb(239,133,26)" fg:x="95933" fg:w="63"/><text x="42.9617%" y="639.50"></text></g><g><title>__pthread_cond_wait (69 samples, 0.03%)</title><rect x="42.7099%" y="789" width="0.0307%" height="15" fill="rgb(211,94,48)" fg:x="95929" fg:w="69"/><text x="42.9599%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (69 samples, 0.03%)</title><rect x="42.7099%" y="773" width="0.0307%" height="15" fill="rgb(239,87,6)" fg:x="95929" fg:w="69"/><text x="42.9599%" y="783.50"></text></g><g><title>futex_wait_cancelable (69 samples, 0.03%)</title><rect x="42.7099%" y="757" width="0.0307%" height="15" fill="rgb(227,62,0)" fg:x="95929" fg:w="69"/><text x="42.9599%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.03%)</title><rect x="42.7103%" y="741" width="0.0303%" height="15" fill="rgb(211,226,4)" fg:x="95930" fg:w="68"/><text x="42.9603%" y="751.50"></text></g><g><title>Monitor::lock (71 samples, 0.03%)</title><rect x="42.7099%" y="837" width="0.0316%" height="15" fill="rgb(253,38,52)" fg:x="95929" fg:w="71"/><text x="42.9599%" y="847.50"></text></g><g><title>Monitor::ILock (71 samples, 0.03%)</title><rect x="42.7099%" y="821" width="0.0316%" height="15" fill="rgb(229,126,40)" fg:x="95929" fg:w="71"/><text x="42.9599%" y="831.50"></text></g><g><title>os::PlatformEvent::park (71 samples, 0.03%)</title><rect x="42.7099%" y="805" width="0.0316%" height="15" fill="rgb(229,165,44)" fg:x="95929" fg:w="71"/><text x="42.9599%" y="815.50"></text></g><g><title>JVM_StartThread (95 samples, 0.04%)</title><rect x="42.7086%" y="853" width="0.0423%" height="15" fill="rgb(247,95,47)" fg:x="95926" fg:w="95"/><text x="42.9586%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.02%)</title><rect x="42.7531%" y="629" width="0.0196%" height="15" fill="rgb(216,140,30)" fg:x="96026" fg:w="44"/><text x="43.0031%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.02%)</title><rect x="42.7535%" y="613" width="0.0191%" height="15" fill="rgb(246,214,8)" fg:x="96027" fg:w="43"/><text x="43.0035%" y="623.50"></text></g><g><title>native_write_msr (42 samples, 0.02%)</title><rect x="42.7540%" y="597" width="0.0187%" height="15" fill="rgb(227,224,15)" fg:x="96028" fg:w="42"/><text x="43.0040%" y="607.50"></text></g><g><title>Unsafe_Park (50 samples, 0.02%)</title><rect x="42.7513%" y="853" width="0.0223%" height="15" fill="rgb(233,175,4)" fg:x="96022" fg:w="50"/><text x="43.0013%" y="863.50"></text></g><g><title>Parker::park (49 samples, 0.02%)</title><rect x="42.7518%" y="837" width="0.0218%" height="15" fill="rgb(221,66,45)" fg:x="96023" fg:w="49"/><text x="43.0018%" y="847.50"></text></g><g><title>__pthread_cond_wait (49 samples, 0.02%)</title><rect x="42.7518%" y="821" width="0.0218%" height="15" fill="rgb(221,178,18)" fg:x="96023" fg:w="49"/><text x="43.0018%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (49 samples, 0.02%)</title><rect x="42.7518%" y="805" width="0.0218%" height="15" fill="rgb(213,81,29)" fg:x="96023" fg:w="49"/><text x="43.0018%" y="815.50"></text></g><g><title>futex_wait_cancelable (49 samples, 0.02%)</title><rect x="42.7518%" y="789" width="0.0218%" height="15" fill="rgb(220,89,49)" fg:x="96023" fg:w="49"/><text x="43.0018%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.02%)</title><rect x="42.7518%" y="773" width="0.0218%" height="15" fill="rgb(227,60,33)" fg:x="96023" fg:w="49"/><text x="43.0018%" y="783.50"></text></g><g><title>do_syscall_64 (49 samples, 0.02%)</title><rect x="42.7518%" y="757" width="0.0218%" height="15" fill="rgb(205,113,12)" fg:x="96023" fg:w="49"/><text x="43.0018%" y="767.50"></text></g><g><title>__x64_sys_futex (49 samples, 0.02%)</title><rect x="42.7518%" y="741" width="0.0218%" height="15" fill="rgb(211,32,1)" fg:x="96023" fg:w="49"/><text x="43.0018%" y="751.50"></text></g><g><title>do_futex (49 samples, 0.02%)</title><rect x="42.7518%" y="725" width="0.0218%" height="15" fill="rgb(246,2,12)" fg:x="96023" fg:w="49"/><text x="43.0018%" y="735.50"></text></g><g><title>futex_wait (48 samples, 0.02%)</title><rect x="42.7522%" y="709" width="0.0214%" height="15" fill="rgb(243,37,27)" fg:x="96024" fg:w="48"/><text x="43.0022%" y="719.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.02%)</title><rect x="42.7522%" y="693" width="0.0214%" height="15" fill="rgb(248,211,31)" fg:x="96024" fg:w="48"/><text x="43.0022%" y="703.50"></text></g><g><title>schedule (48 samples, 0.02%)</title><rect x="42.7522%" y="677" width="0.0214%" height="15" fill="rgb(242,146,47)" fg:x="96024" fg:w="48"/><text x="43.0022%" y="687.50"></text></g><g><title>__schedule (48 samples, 0.02%)</title><rect x="42.7522%" y="661" width="0.0214%" height="15" fill="rgb(206,70,20)" fg:x="96024" fg:w="48"/><text x="43.0022%" y="671.50"></text></g><g><title>finish_task_switch (47 samples, 0.02%)</title><rect x="42.7526%" y="645" width="0.0209%" height="15" fill="rgb(215,10,51)" fg:x="96025" fg:w="47"/><text x="43.0026%" y="655.50"></text></g><g><title>[perf-501242.map] (244 samples, 0.11%)</title><rect x="42.6663%" y="869" width="0.1086%" height="15" fill="rgb(243,178,53)" fg:x="95831" fg:w="244"/><text x="42.9163%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (50 samples, 0.02%)</title><rect x="42.7776%" y="805" width="0.0223%" height="15" fill="rgb(233,221,20)" fg:x="96081" fg:w="50"/><text x="43.0276%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.02%)</title><rect x="42.7780%" y="789" width="0.0218%" height="15" fill="rgb(218,95,35)" fg:x="96082" fg:w="49"/><text x="43.0280%" y="799.50"></text></g><g><title>native_write_msr (49 samples, 0.02%)</title><rect x="42.7780%" y="773" width="0.0218%" height="15" fill="rgb(229,13,5)" fg:x="96082" fg:w="49"/><text x="43.0280%" y="783.50"></text></g><g><title>schedule_tail (51 samples, 0.02%)</title><rect x="42.7776%" y="837" width="0.0227%" height="15" fill="rgb(252,164,30)" fg:x="96081" fg:w="51"/><text x="43.0276%" y="847.50"></text></g><g><title>finish_task_switch (51 samples, 0.02%)</title><rect x="42.7776%" y="821" width="0.0227%" height="15" fill="rgb(232,68,36)" fg:x="96081" fg:w="51"/><text x="43.0276%" y="831.50"></text></g><g><title>ret_from_fork (52 samples, 0.02%)</title><rect x="42.7776%" y="853" width="0.0232%" height="15" fill="rgb(219,59,54)" fg:x="96081" fg:w="52"/><text x="43.0276%" y="863.50"></text></g><g><title>__GI___clone (78 samples, 0.03%)</title><rect x="42.7753%" y="869" width="0.0347%" height="15" fill="rgb(250,92,33)" fg:x="96076" fg:w="78"/><text x="43.0253%" y="879.50"></text></g><g><title>globbing_pool-1 (346 samples, 0.15%)</title><rect x="42.6565%" y="885" width="0.1540%" height="15" fill="rgb(229,162,54)" fg:x="95809" fg:w="346"/><text x="42.9065%" y="895.50"></text></g><g><title>[libunix_jni.so] (50 samples, 0.02%)</title><rect x="42.8123%" y="869" width="0.0223%" height="15" fill="rgb(244,114,52)" fg:x="96159" fg:w="50"/><text x="43.0623%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="42.8920%" y="629" width="0.0160%" height="15" fill="rgb(212,211,43)" fg:x="96338" fg:w="36"/><text x="43.1420%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="42.8920%" y="613" width="0.0160%" height="15" fill="rgb(226,147,8)" fg:x="96338" fg:w="36"/><text x="43.1420%" y="623.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="42.8920%" y="597" width="0.0160%" height="15" fill="rgb(226,23,13)" fg:x="96338" fg:w="36"/><text x="43.1420%" y="607.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="42.8920%" y="645" width="0.0165%" height="15" fill="rgb(240,63,4)" fg:x="96338" fg:w="37"/><text x="43.1420%" y="655.50"></text></g><g><title>do_syscall_64 (42 samples, 0.02%)</title><rect x="42.8902%" y="757" width="0.0187%" height="15" fill="rgb(221,1,32)" fg:x="96334" fg:w="42"/><text x="43.1402%" y="767.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.02%)</title><rect x="42.8902%" y="741" width="0.0187%" height="15" fill="rgb(242,117,10)" fg:x="96334" fg:w="42"/><text x="43.1402%" y="751.50"></text></g><g><title>do_futex (42 samples, 0.02%)</title><rect x="42.8902%" y="725" width="0.0187%" height="15" fill="rgb(249,172,44)" fg:x="96334" fg:w="42"/><text x="43.1402%" y="735.50"></text></g><g><title>futex_wait (41 samples, 0.02%)</title><rect x="42.8907%" y="709" width="0.0183%" height="15" fill="rgb(244,46,45)" fg:x="96335" fg:w="41"/><text x="43.1407%" y="719.50"></text></g><g><title>futex_wait_queue_me (40 samples, 0.02%)</title><rect x="42.8911%" y="693" width="0.0178%" height="15" fill="rgb(206,43,17)" fg:x="96336" fg:w="40"/><text x="43.1411%" y="703.50"></text></g><g><title>schedule (38 samples, 0.02%)</title><rect x="42.8920%" y="677" width="0.0169%" height="15" fill="rgb(239,218,39)" fg:x="96338" fg:w="38"/><text x="43.1420%" y="687.50"></text></g><g><title>__schedule (38 samples, 0.02%)</title><rect x="42.8920%" y="661" width="0.0169%" height="15" fill="rgb(208,169,54)" fg:x="96338" fg:w="38"/><text x="43.1420%" y="671.50"></text></g><g><title>Unsafe_Park (45 samples, 0.02%)</title><rect x="42.8893%" y="853" width="0.0200%" height="15" fill="rgb(247,25,42)" fg:x="96332" fg:w="45"/><text x="43.1393%" y="863.50"></text></g><g><title>Parker::park (44 samples, 0.02%)</title><rect x="42.8898%" y="837" width="0.0196%" height="15" fill="rgb(226,23,31)" fg:x="96333" fg:w="44"/><text x="43.1398%" y="847.50"></text></g><g><title>__pthread_cond_wait (43 samples, 0.02%)</title><rect x="42.8902%" y="821" width="0.0191%" height="15" fill="rgb(247,16,28)" fg:x="96334" fg:w="43"/><text x="43.1402%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (43 samples, 0.02%)</title><rect x="42.8902%" y="805" width="0.0191%" height="15" fill="rgb(231,147,38)" fg:x="96334" fg:w="43"/><text x="43.1402%" y="815.50"></text></g><g><title>futex_wait_cancelable (43 samples, 0.02%)</title><rect x="42.8902%" y="789" width="0.0191%" height="15" fill="rgb(253,81,48)" fg:x="96334" fg:w="43"/><text x="43.1402%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.02%)</title><rect x="42.8902%" y="773" width="0.0191%" height="15" fill="rgb(249,222,43)" fg:x="96334" fg:w="43"/><text x="43.1402%" y="783.50"></text></g><g><title>[perf-501242.map] (171 samples, 0.08%)</title><rect x="42.8346%" y="869" width="0.0761%" height="15" fill="rgb(221,3,27)" fg:x="96209" fg:w="171"/><text x="43.0846%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.03%)</title><rect x="42.9160%" y="805" width="0.0254%" height="15" fill="rgb(228,180,5)" fg:x="96392" fg:w="57"/><text x="43.1660%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.03%)</title><rect x="42.9160%" y="789" width="0.0254%" height="15" fill="rgb(227,131,42)" fg:x="96392" fg:w="57"/><text x="43.1660%" y="799.50"></text></g><g><title>native_write_msr (57 samples, 0.03%)</title><rect x="42.9160%" y="773" width="0.0254%" height="15" fill="rgb(212,3,39)" fg:x="96392" fg:w="57"/><text x="43.1660%" y="783.50"></text></g><g><title>schedule_tail (58 samples, 0.03%)</title><rect x="42.9160%" y="837" width="0.0258%" height="15" fill="rgb(226,45,5)" fg:x="96392" fg:w="58"/><text x="43.1660%" y="847.50"></text></g><g><title>finish_task_switch (58 samples, 0.03%)</title><rect x="42.9160%" y="821" width="0.0258%" height="15" fill="rgb(215,167,45)" fg:x="96392" fg:w="58"/><text x="43.1660%" y="831.50"></text></g><g><title>ret_from_fork (60 samples, 0.03%)</title><rect x="42.9156%" y="853" width="0.0267%" height="15" fill="rgb(250,218,53)" fg:x="96391" fg:w="60"/><text x="43.1656%" y="863.50"></text></g><g><title>globbing_pool-2 (315 samples, 0.14%)</title><rect x="42.8105%" y="885" width="0.1402%" height="15" fill="rgb(207,140,0)" fg:x="96155" fg:w="315"/><text x="43.0605%" y="895.50"></text></g><g><title>__GI___clone (82 samples, 0.04%)</title><rect x="42.9143%" y="869" width="0.0365%" height="15" fill="rgb(238,133,51)" fg:x="96388" fg:w="82"/><text x="43.1643%" y="879.50"></text></g><g><title>[libunix_jni.so] (25 samples, 0.01%)</title><rect x="42.9521%" y="869" width="0.0111%" height="15" fill="rgb(218,203,53)" fg:x="96473" fg:w="25"/><text x="43.2021%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.01%)</title><rect x="42.9984%" y="597" width="0.0134%" height="15" fill="rgb(226,184,25)" fg:x="96577" fg:w="30"/><text x="43.2484%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.01%)</title><rect x="42.9984%" y="581" width="0.0134%" height="15" fill="rgb(231,121,21)" fg:x="96577" fg:w="30"/><text x="43.2484%" y="591.50"></text></g><g><title>native_write_msr (29 samples, 0.01%)</title><rect x="42.9989%" y="565" width="0.0129%" height="15" fill="rgb(251,14,34)" fg:x="96578" fg:w="29"/><text x="43.2489%" y="575.50"></text></g><g><title>do_syscall_64 (32 samples, 0.01%)</title><rect x="42.9984%" y="725" width="0.0142%" height="15" fill="rgb(249,193,11)" fg:x="96577" fg:w="32"/><text x="43.2484%" y="735.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.01%)</title><rect x="42.9984%" y="709" width="0.0142%" height="15" fill="rgb(220,172,37)" fg:x="96577" fg:w="32"/><text x="43.2484%" y="719.50"></text></g><g><title>do_futex (32 samples, 0.01%)</title><rect x="42.9984%" y="693" width="0.0142%" height="15" fill="rgb(231,229,43)" fg:x="96577" fg:w="32"/><text x="43.2484%" y="703.50"></text></g><g><title>futex_wait (32 samples, 0.01%)</title><rect x="42.9984%" y="677" width="0.0142%" height="15" fill="rgb(250,161,5)" fg:x="96577" fg:w="32"/><text x="43.2484%" y="687.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.01%)</title><rect x="42.9984%" y="661" width="0.0142%" height="15" fill="rgb(218,225,18)" fg:x="96577" fg:w="32"/><text x="43.2484%" y="671.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="42.9984%" y="645" width="0.0142%" height="15" fill="rgb(245,45,42)" fg:x="96577" fg:w="32"/><text x="43.2484%" y="655.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="42.9984%" y="629" width="0.0142%" height="15" fill="rgb(211,115,1)" fg:x="96577" fg:w="32"/><text x="43.2484%" y="639.50"></text></g><g><title>finish_task_switch (32 samples, 0.01%)</title><rect x="42.9984%" y="613" width="0.0142%" height="15" fill="rgb(248,133,52)" fg:x="96577" fg:w="32"/><text x="43.2484%" y="623.50"></text></g><g><title>Monitor::lock (35 samples, 0.02%)</title><rect x="42.9984%" y="837" width="0.0156%" height="15" fill="rgb(238,100,21)" fg:x="96577" fg:w="35"/><text x="43.2484%" y="847.50"></text></g><g><title>Monitor::ILock (35 samples, 0.02%)</title><rect x="42.9984%" y="821" width="0.0156%" height="15" fill="rgb(247,144,11)" fg:x="96577" fg:w="35"/><text x="43.2484%" y="831.50"></text></g><g><title>os::PlatformEvent::park (35 samples, 0.02%)</title><rect x="42.9984%" y="805" width="0.0156%" height="15" fill="rgb(206,164,16)" fg:x="96577" fg:w="35"/><text x="43.2484%" y="815.50"></text></g><g><title>__pthread_cond_wait (35 samples, 0.02%)</title><rect x="42.9984%" y="789" width="0.0156%" height="15" fill="rgb(222,34,3)" fg:x="96577" fg:w="35"/><text x="43.2484%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (35 samples, 0.02%)</title><rect x="42.9984%" y="773" width="0.0156%" height="15" fill="rgb(248,82,4)" fg:x="96577" fg:w="35"/><text x="43.2484%" y="783.50"></text></g><g><title>futex_wait_cancelable (35 samples, 0.02%)</title><rect x="42.9984%" y="757" width="0.0156%" height="15" fill="rgb(228,81,46)" fg:x="96577" fg:w="35"/><text x="43.2484%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.02%)</title><rect x="42.9984%" y="741" width="0.0156%" height="15" fill="rgb(227,67,47)" fg:x="96577" fg:w="35"/><text x="43.2484%" y="751.50"></text></g><g><title>JVM_StartThread (47 samples, 0.02%)</title><rect x="42.9975%" y="853" width="0.0209%" height="15" fill="rgb(215,93,53)" fg:x="96575" fg:w="47"/><text x="43.2475%" y="863.50"></text></g><g><title>do_syscall_64 (51 samples, 0.02%)</title><rect x="43.0189%" y="757" width="0.0227%" height="15" fill="rgb(248,194,39)" fg:x="96623" fg:w="51"/><text x="43.2689%" y="767.50"></text></g><g><title>__x64_sys_futex (51 samples, 0.02%)</title><rect x="43.0189%" y="741" width="0.0227%" height="15" fill="rgb(215,5,19)" fg:x="96623" fg:w="51"/><text x="43.2689%" y="751.50"></text></g><g><title>do_futex (51 samples, 0.02%)</title><rect x="43.0189%" y="725" width="0.0227%" height="15" fill="rgb(226,215,51)" fg:x="96623" fg:w="51"/><text x="43.2689%" y="735.50"></text></g><g><title>futex_wait (51 samples, 0.02%)</title><rect x="43.0189%" y="709" width="0.0227%" height="15" fill="rgb(225,56,26)" fg:x="96623" fg:w="51"/><text x="43.2689%" y="719.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.02%)</title><rect x="43.0193%" y="693" width="0.0223%" height="15" fill="rgb(222,75,29)" fg:x="96624" fg:w="50"/><text x="43.2693%" y="703.50"></text></g><g><title>schedule (50 samples, 0.02%)</title><rect x="43.0193%" y="677" width="0.0223%" height="15" fill="rgb(236,139,6)" fg:x="96624" fg:w="50"/><text x="43.2693%" y="687.50"></text></g><g><title>__schedule (50 samples, 0.02%)</title><rect x="43.0193%" y="661" width="0.0223%" height="15" fill="rgb(223,137,36)" fg:x="96624" fg:w="50"/><text x="43.2693%" y="671.50"></text></g><g><title>finish_task_switch (47 samples, 0.02%)</title><rect x="43.0207%" y="645" width="0.0209%" height="15" fill="rgb(226,99,2)" fg:x="96627" fg:w="47"/><text x="43.2707%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (45 samples, 0.02%)</title><rect x="43.0216%" y="629" width="0.0200%" height="15" fill="rgb(206,133,23)" fg:x="96629" fg:w="45"/><text x="43.2716%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (44 samples, 0.02%)</title><rect x="43.0220%" y="613" width="0.0196%" height="15" fill="rgb(243,173,15)" fg:x="96630" fg:w="44"/><text x="43.2720%" y="623.50"></text></g><g><title>native_write_msr (44 samples, 0.02%)</title><rect x="43.0220%" y="597" width="0.0196%" height="15" fill="rgb(228,69,28)" fg:x="96630" fg:w="44"/><text x="43.2720%" y="607.50"></text></g><g><title>Unsafe_Park (53 samples, 0.02%)</title><rect x="43.0184%" y="853" width="0.0236%" height="15" fill="rgb(212,51,22)" fg:x="96622" fg:w="53"/><text x="43.2684%" y="863.50"></text></g><g><title>Parker::park (53 samples, 0.02%)</title><rect x="43.0184%" y="837" width="0.0236%" height="15" fill="rgb(227,113,0)" fg:x="96622" fg:w="53"/><text x="43.2684%" y="847.50"></text></g><g><title>__pthread_cond_wait (53 samples, 0.02%)</title><rect x="43.0184%" y="821" width="0.0236%" height="15" fill="rgb(252,84,27)" fg:x="96622" fg:w="53"/><text x="43.2684%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (53 samples, 0.02%)</title><rect x="43.0184%" y="805" width="0.0236%" height="15" fill="rgb(223,145,39)" fg:x="96622" fg:w="53"/><text x="43.2684%" y="815.50"></text></g><g><title>futex_wait_cancelable (53 samples, 0.02%)</title><rect x="43.0184%" y="789" width="0.0236%" height="15" fill="rgb(239,219,30)" fg:x="96622" fg:w="53"/><text x="43.2684%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.02%)</title><rect x="43.0189%" y="773" width="0.0232%" height="15" fill="rgb(224,196,39)" fg:x="96623" fg:w="52"/><text x="43.2689%" y="783.50"></text></g><g><title>[perf-501242.map] (181 samples, 0.08%)</title><rect x="42.9632%" y="869" width="0.0806%" height="15" fill="rgb(205,35,43)" fg:x="96498" fg:w="181"/><text x="43.2132%" y="879.50"></text></g><g><title>schedule_tail (30 samples, 0.01%)</title><rect x="43.0523%" y="837" width="0.0134%" height="15" fill="rgb(228,201,21)" fg:x="96698" fg:w="30"/><text x="43.3023%" y="847.50"></text></g><g><title>finish_task_switch (30 samples, 0.01%)</title><rect x="43.0523%" y="821" width="0.0134%" height="15" fill="rgb(237,118,16)" fg:x="96698" fg:w="30"/><text x="43.3023%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (30 samples, 0.01%)</title><rect x="43.0523%" y="805" width="0.0134%" height="15" fill="rgb(241,17,19)" fg:x="96698" fg:w="30"/><text x="43.3023%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (29 samples, 0.01%)</title><rect x="43.0527%" y="789" width="0.0129%" height="15" fill="rgb(214,10,25)" fg:x="96699" fg:w="29"/><text x="43.3027%" y="799.50"></text></g><g><title>native_write_msr (29 samples, 0.01%)</title><rect x="43.0527%" y="773" width="0.0129%" height="15" fill="rgb(238,37,29)" fg:x="96699" fg:w="29"/><text x="43.3027%" y="783.50"></text></g><g><title>ret_from_fork (32 samples, 0.01%)</title><rect x="43.0518%" y="853" width="0.0142%" height="15" fill="rgb(253,83,25)" fg:x="96697" fg:w="32"/><text x="43.3018%" y="863.50"></text></g><g><title>__GI___clone (53 samples, 0.02%)</title><rect x="43.0501%" y="869" width="0.0236%" height="15" fill="rgb(234,192,12)" fg:x="96693" fg:w="53"/><text x="43.3001%" y="879.50"></text></g><g><title>globbing_pool-3 (277 samples, 0.12%)</title><rect x="42.9508%" y="885" width="0.1233%" height="15" fill="rgb(241,216,45)" fg:x="96470" fg:w="277"/><text x="43.2008%" y="895.50"></text></g><g><title>[perf-501242.map] (34 samples, 0.02%)</title><rect x="43.0768%" y="869" width="0.0151%" height="15" fill="rgb(242,22,33)" fg:x="96753" fg:w="34"/><text x="43.3268%" y="879.50"></text></g><g><title>globbing_pool-4 (51 samples, 0.02%)</title><rect x="43.0741%" y="885" width="0.0227%" height="15" fill="rgb(231,105,49)" fg:x="96747" fg:w="51"/><text x="43.3241%" y="895.50"></text></g><g><title>Unsafe_Park (30 samples, 0.01%)</title><rect x="43.1093%" y="853" width="0.0134%" height="15" fill="rgb(218,204,15)" fg:x="96826" fg:w="30"/><text x="43.3593%" y="863.50"></text></g><g><title>Parker::park (30 samples, 0.01%)</title><rect x="43.1093%" y="837" width="0.0134%" height="15" fill="rgb(235,138,41)" fg:x="96826" fg:w="30"/><text x="43.3593%" y="847.50"></text></g><g><title>[perf-501242.map] (57 samples, 0.03%)</title><rect x="43.0981%" y="869" width="0.0254%" height="15" fill="rgb(246,0,9)" fg:x="96801" fg:w="57"/><text x="43.3481%" y="879.50"></text></g><g><title>globbing_pool-5 (77 samples, 0.03%)</title><rect x="43.0968%" y="885" width="0.0343%" height="15" fill="rgb(210,74,4)" fg:x="96798" fg:w="77"/><text x="43.3468%" y="895.50"></text></g><g><title>[libunix_jni.so] (31 samples, 0.01%)</title><rect x="43.1324%" y="869" width="0.0138%" height="15" fill="rgb(250,60,41)" fg:x="96878" fg:w="31"/><text x="43.3824%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (46 samples, 0.02%)</title><rect x="43.1983%" y="629" width="0.0205%" height="15" fill="rgb(220,115,12)" fg:x="97026" fg:w="46"/><text x="43.4483%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (45 samples, 0.02%)</title><rect x="43.1988%" y="613" width="0.0200%" height="15" fill="rgb(237,100,13)" fg:x="97027" fg:w="45"/><text x="43.4488%" y="623.50"></text></g><g><title>native_write_msr (45 samples, 0.02%)</title><rect x="43.1988%" y="597" width="0.0200%" height="15" fill="rgb(213,55,26)" fg:x="97027" fg:w="45"/><text x="43.4488%" y="607.50"></text></g><g><title>do_syscall_64 (51 samples, 0.02%)</title><rect x="43.1970%" y="757" width="0.0227%" height="15" fill="rgb(216,17,4)" fg:x="97023" fg:w="51"/><text x="43.4470%" y="767.50"></text></g><g><title>__x64_sys_futex (50 samples, 0.02%)</title><rect x="43.1974%" y="741" width="0.0223%" height="15" fill="rgb(220,153,47)" fg:x="97024" fg:w="50"/><text x="43.4474%" y="751.50"></text></g><g><title>do_futex (50 samples, 0.02%)</title><rect x="43.1974%" y="725" width="0.0223%" height="15" fill="rgb(215,131,9)" fg:x="97024" fg:w="50"/><text x="43.4474%" y="735.50"></text></g><g><title>futex_wait (50 samples, 0.02%)</title><rect x="43.1974%" y="709" width="0.0223%" height="15" fill="rgb(233,46,42)" fg:x="97024" fg:w="50"/><text x="43.4474%" y="719.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.02%)</title><rect x="43.1974%" y="693" width="0.0223%" height="15" fill="rgb(226,86,7)" fg:x="97024" fg:w="50"/><text x="43.4474%" y="703.50"></text></g><g><title>schedule (49 samples, 0.02%)</title><rect x="43.1979%" y="677" width="0.0218%" height="15" fill="rgb(239,226,21)" fg:x="97025" fg:w="49"/><text x="43.4479%" y="687.50"></text></g><g><title>__schedule (48 samples, 0.02%)</title><rect x="43.1983%" y="661" width="0.0214%" height="15" fill="rgb(244,137,22)" fg:x="97026" fg:w="48"/><text x="43.4483%" y="671.50"></text></g><g><title>finish_task_switch (48 samples, 0.02%)</title><rect x="43.1983%" y="645" width="0.0214%" height="15" fill="rgb(211,139,35)" fg:x="97026" fg:w="48"/><text x="43.4483%" y="655.50"></text></g><g><title>Unsafe_Park (54 samples, 0.02%)</title><rect x="43.1970%" y="853" width="0.0240%" height="15" fill="rgb(214,62,50)" fg:x="97023" fg:w="54"/><text x="43.4470%" y="863.50"></text></g><g><title>Parker::park (54 samples, 0.02%)</title><rect x="43.1970%" y="837" width="0.0240%" height="15" fill="rgb(212,113,44)" fg:x="97023" fg:w="54"/><text x="43.4470%" y="847.50"></text></g><g><title>__pthread_cond_wait (54 samples, 0.02%)</title><rect x="43.1970%" y="821" width="0.0240%" height="15" fill="rgb(226,150,43)" fg:x="97023" fg:w="54"/><text x="43.4470%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (54 samples, 0.02%)</title><rect x="43.1970%" y="805" width="0.0240%" height="15" fill="rgb(250,71,37)" fg:x="97023" fg:w="54"/><text x="43.4470%" y="815.50"></text></g><g><title>futex_wait_cancelable (54 samples, 0.02%)</title><rect x="43.1970%" y="789" width="0.0240%" height="15" fill="rgb(219,76,19)" fg:x="97023" fg:w="54"/><text x="43.4470%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.02%)</title><rect x="43.1970%" y="773" width="0.0240%" height="15" fill="rgb(250,39,11)" fg:x="97023" fg:w="54"/><text x="43.4470%" y="783.50"></text></g><g><title>[perf-501242.map] (171 samples, 0.08%)</title><rect x="43.1462%" y="869" width="0.0761%" height="15" fill="rgb(230,64,31)" fg:x="96909" fg:w="171"/><text x="43.3962%" y="879.50"></text></g><g><title>free_pcppages_bulk (37 samples, 0.02%)</title><rect x="43.2638%" y="645" width="0.0165%" height="15" fill="rgb(208,222,23)" fg:x="97173" fg:w="37"/><text x="43.5138%" y="655.50"></text></g><g><title>free_unref_page_list (47 samples, 0.02%)</title><rect x="43.2611%" y="661" width="0.0209%" height="15" fill="rgb(227,125,18)" fg:x="97167" fg:w="47"/><text x="43.5111%" y="671.50"></text></g><g><title>tlb_flush_mmu (84 samples, 0.04%)</title><rect x="43.2460%" y="693" width="0.0374%" height="15" fill="rgb(234,210,9)" fg:x="97133" fg:w="84"/><text x="43.4960%" y="703.50"></text></g><g><title>release_pages (78 samples, 0.03%)</title><rect x="43.2486%" y="677" width="0.0347%" height="15" fill="rgb(217,127,24)" fg:x="97139" fg:w="78"/><text x="43.4986%" y="687.50"></text></g><g><title>globbing_pool-6 (346 samples, 0.15%)</title><rect x="43.1311%" y="885" width="0.1540%" height="15" fill="rgb(239,141,48)" fg:x="96875" fg:w="346"/><text x="43.3811%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.05%)</title><rect x="43.2304%" y="869" width="0.0548%" height="15" fill="rgb(227,109,8)" fg:x="97098" fg:w="123"/><text x="43.4804%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (123 samples, 0.05%)</title><rect x="43.2304%" y="853" width="0.0548%" height="15" fill="rgb(235,184,23)" fg:x="97098" fg:w="123"/><text x="43.4804%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (123 samples, 0.05%)</title><rect x="43.2304%" y="837" width="0.0548%" height="15" fill="rgb(227,226,48)" fg:x="97098" fg:w="123"/><text x="43.4804%" y="847.50"></text></g><g><title>arch_do_signal (123 samples, 0.05%)</title><rect x="43.2304%" y="821" width="0.0548%" height="15" fill="rgb(206,150,11)" fg:x="97098" fg:w="123"/><text x="43.4804%" y="831.50"></text></g><g><title>get_signal (123 samples, 0.05%)</title><rect x="43.2304%" y="805" width="0.0548%" height="15" fill="rgb(254,2,33)" fg:x="97098" fg:w="123"/><text x="43.4804%" y="815.50"></text></g><g><title>do_group_exit (123 samples, 0.05%)</title><rect x="43.2304%" y="789" width="0.0548%" height="15" fill="rgb(243,160,20)" fg:x="97098" fg:w="123"/><text x="43.4804%" y="799.50"></text></g><g><title>do_exit (123 samples, 0.05%)</title><rect x="43.2304%" y="773" width="0.0548%" height="15" fill="rgb(218,208,30)" fg:x="97098" fg:w="123"/><text x="43.4804%" y="783.50"></text></g><g><title>mmput (123 samples, 0.05%)</title><rect x="43.2304%" y="757" width="0.0548%" height="15" fill="rgb(224,120,49)" fg:x="97098" fg:w="123"/><text x="43.4804%" y="767.50"></text></g><g><title>exit_mmap (123 samples, 0.05%)</title><rect x="43.2304%" y="741" width="0.0548%" height="15" fill="rgb(246,12,2)" fg:x="97098" fg:w="123"/><text x="43.4804%" y="751.50"></text></g><g><title>unmap_vmas (121 samples, 0.05%)</title><rect x="43.2313%" y="725" width="0.0539%" height="15" fill="rgb(236,117,3)" fg:x="97100" fg:w="121"/><text x="43.4813%" y="735.50"></text></g><g><title>unmap_page_range (121 samples, 0.05%)</title><rect x="43.2313%" y="709" width="0.0539%" height="15" fill="rgb(216,128,52)" fg:x="97100" fg:w="121"/><text x="43.4813%" y="719.50"></text></g><g><title>do_syscall_64 (26 samples, 0.01%)</title><rect x="43.3172%" y="725" width="0.0116%" height="15" fill="rgb(246,145,19)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="735.50"></text></g><g><title>__x64_sys_futex (26 samples, 0.01%)</title><rect x="43.3172%" y="709" width="0.0116%" height="15" fill="rgb(222,11,46)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="719.50"></text></g><g><title>do_futex (26 samples, 0.01%)</title><rect x="43.3172%" y="693" width="0.0116%" height="15" fill="rgb(245,82,36)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="703.50"></text></g><g><title>futex_wait (26 samples, 0.01%)</title><rect x="43.3172%" y="677" width="0.0116%" height="15" fill="rgb(250,73,51)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="687.50"></text></g><g><title>futex_wait_queue_me (26 samples, 0.01%)</title><rect x="43.3172%" y="661" width="0.0116%" height="15" fill="rgb(221,189,23)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="671.50"></text></g><g><title>schedule (26 samples, 0.01%)</title><rect x="43.3172%" y="645" width="0.0116%" height="15" fill="rgb(210,33,7)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="655.50"></text></g><g><title>__schedule (26 samples, 0.01%)</title><rect x="43.3172%" y="629" width="0.0116%" height="15" fill="rgb(210,107,22)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="639.50"></text></g><g><title>finish_task_switch (26 samples, 0.01%)</title><rect x="43.3172%" y="613" width="0.0116%" height="15" fill="rgb(222,116,37)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (26 samples, 0.01%)</title><rect x="43.3172%" y="597" width="0.0116%" height="15" fill="rgb(254,17,48)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (26 samples, 0.01%)</title><rect x="43.3172%" y="581" width="0.0116%" height="15" fill="rgb(224,36,32)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="591.50"></text></g><g><title>native_write_msr (26 samples, 0.01%)</title><rect x="43.3172%" y="565" width="0.0116%" height="15" fill="rgb(232,90,46)" fg:x="97293" fg:w="26"/><text x="43.5672%" y="575.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.01%)</title><rect x="43.3172%" y="789" width="0.0120%" height="15" fill="rgb(241,66,40)" fg:x="97293" fg:w="27"/><text x="43.5672%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.01%)</title><rect x="43.3172%" y="773" width="0.0120%" height="15" fill="rgb(249,184,29)" fg:x="97293" fg:w="27"/><text x="43.5672%" y="783.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.01%)</title><rect x="43.3172%" y="757" width="0.0120%" height="15" fill="rgb(231,181,1)" fg:x="97293" fg:w="27"/><text x="43.5672%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.01%)</title><rect x="43.3172%" y="741" width="0.0120%" height="15" fill="rgb(224,94,2)" fg:x="97293" fg:w="27"/><text x="43.5672%" y="751.50"></text></g><g><title>Monitor::lock (28 samples, 0.01%)</title><rect x="43.3172%" y="837" width="0.0125%" height="15" fill="rgb(229,170,15)" fg:x="97293" fg:w="28"/><text x="43.5672%" y="847.50"></text></g><g><title>Monitor::ILock (28 samples, 0.01%)</title><rect x="43.3172%" y="821" width="0.0125%" height="15" fill="rgb(240,127,35)" fg:x="97293" fg:w="28"/><text x="43.5672%" y="831.50"></text></g><g><title>os::PlatformEvent::park (28 samples, 0.01%)</title><rect x="43.3172%" y="805" width="0.0125%" height="15" fill="rgb(248,196,34)" fg:x="97293" fg:w="28"/><text x="43.5672%" y="815.50"></text></g><g><title>JVM_StartThread (32 samples, 0.01%)</title><rect x="43.3163%" y="853" width="0.0142%" height="15" fill="rgb(236,137,7)" fg:x="97291" fg:w="32"/><text x="43.5663%" y="863.50"></text></g><g><title>[perf-501242.map] (108 samples, 0.05%)</title><rect x="43.2931%" y="869" width="0.0481%" height="15" fill="rgb(235,127,16)" fg:x="97239" fg:w="108"/><text x="43.5431%" y="879.50"></text></g><g><title>ret_from_fork (25 samples, 0.01%)</title><rect x="43.3439%" y="853" width="0.0111%" height="15" fill="rgb(250,192,54)" fg:x="97353" fg:w="25"/><text x="43.5939%" y="863.50"></text></g><g><title>schedule_tail (25 samples, 0.01%)</title><rect x="43.3439%" y="837" width="0.0111%" height="15" fill="rgb(218,98,20)" fg:x="97353" fg:w="25"/><text x="43.5939%" y="847.50"></text></g><g><title>finish_task_switch (25 samples, 0.01%)</title><rect x="43.3439%" y="821" width="0.0111%" height="15" fill="rgb(230,176,47)" fg:x="97353" fg:w="25"/><text x="43.5939%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="43.3439%" y="805" width="0.0111%" height="15" fill="rgb(244,2,33)" fg:x="97353" fg:w="25"/><text x="43.5939%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="43.3439%" y="789" width="0.0111%" height="15" fill="rgb(231,100,17)" fg:x="97353" fg:w="25"/><text x="43.5939%" y="799.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="43.3439%" y="773" width="0.0111%" height="15" fill="rgb(245,23,12)" fg:x="97353" fg:w="25"/><text x="43.5939%" y="783.50"></text></g><g><title>globbing_pool-7 (169 samples, 0.08%)</title><rect x="43.2851%" y="885" width="0.0752%" height="15" fill="rgb(249,55,22)" fg:x="97221" fg:w="169"/><text x="43.5351%" y="895.50"></text></g><g><title>__GI___clone (40 samples, 0.02%)</title><rect x="43.3426%" y="869" width="0.0178%" height="15" fill="rgb(207,134,9)" fg:x="97350" fg:w="40"/><text x="43.5926%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (31 samples, 0.01%)</title><rect x="43.4125%" y="629" width="0.0138%" height="15" fill="rgb(218,134,0)" fg:x="97507" fg:w="31"/><text x="43.6625%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (30 samples, 0.01%)</title><rect x="43.4129%" y="613" width="0.0134%" height="15" fill="rgb(213,212,33)" fg:x="97508" fg:w="30"/><text x="43.6629%" y="623.50"></text></g><g><title>native_write_msr (30 samples, 0.01%)</title><rect x="43.4129%" y="597" width="0.0134%" height="15" fill="rgb(252,106,18)" fg:x="97508" fg:w="30"/><text x="43.6629%" y="607.50"></text></g><g><title>finish_task_switch (35 samples, 0.02%)</title><rect x="43.4125%" y="645" width="0.0156%" height="15" fill="rgb(208,126,42)" fg:x="97507" fg:w="35"/><text x="43.6625%" y="655.50"></text></g><g><title>do_syscall_64 (40 samples, 0.02%)</title><rect x="43.4111%" y="757" width="0.0178%" height="15" fill="rgb(246,175,29)" fg:x="97504" fg:w="40"/><text x="43.6611%" y="767.50"></text></g><g><title>__x64_sys_futex (40 samples, 0.02%)</title><rect x="43.4111%" y="741" width="0.0178%" height="15" fill="rgb(215,13,50)" fg:x="97504" fg:w="40"/><text x="43.6611%" y="751.50"></text></g><g><title>do_futex (40 samples, 0.02%)</title><rect x="43.4111%" y="725" width="0.0178%" height="15" fill="rgb(216,172,15)" fg:x="97504" fg:w="40"/><text x="43.6611%" y="735.50"></text></g><g><title>futex_wait (40 samples, 0.02%)</title><rect x="43.4111%" y="709" width="0.0178%" height="15" fill="rgb(212,103,13)" fg:x="97504" fg:w="40"/><text x="43.6611%" y="719.50"></text></g><g><title>futex_wait_queue_me (38 samples, 0.02%)</title><rect x="43.4120%" y="693" width="0.0169%" height="15" fill="rgb(231,171,36)" fg:x="97506" fg:w="38"/><text x="43.6620%" y="703.50"></text></g><g><title>schedule (38 samples, 0.02%)</title><rect x="43.4120%" y="677" width="0.0169%" height="15" fill="rgb(250,123,20)" fg:x="97506" fg:w="38"/><text x="43.6620%" y="687.50"></text></g><g><title>__schedule (38 samples, 0.02%)</title><rect x="43.4120%" y="661" width="0.0169%" height="15" fill="rgb(212,53,50)" fg:x="97506" fg:w="38"/><text x="43.6620%" y="671.50"></text></g><g><title>Unsafe_Park (42 samples, 0.02%)</title><rect x="43.4107%" y="853" width="0.0187%" height="15" fill="rgb(243,54,12)" fg:x="97503" fg:w="42"/><text x="43.6607%" y="863.50"></text></g><g><title>Parker::park (42 samples, 0.02%)</title><rect x="43.4107%" y="837" width="0.0187%" height="15" fill="rgb(234,101,34)" fg:x="97503" fg:w="42"/><text x="43.6607%" y="847.50"></text></g><g><title>__pthread_cond_wait (41 samples, 0.02%)</title><rect x="43.4111%" y="821" width="0.0183%" height="15" fill="rgb(254,67,22)" fg:x="97504" fg:w="41"/><text x="43.6611%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (41 samples, 0.02%)</title><rect x="43.4111%" y="805" width="0.0183%" height="15" fill="rgb(250,35,47)" fg:x="97504" fg:w="41"/><text x="43.6611%" y="815.50"></text></g><g><title>futex_wait_cancelable (41 samples, 0.02%)</title><rect x="43.4111%" y="789" width="0.0183%" height="15" fill="rgb(226,126,38)" fg:x="97504" fg:w="41"/><text x="43.6611%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.02%)</title><rect x="43.4111%" y="773" width="0.0183%" height="15" fill="rgb(216,138,53)" fg:x="97504" fg:w="41"/><text x="43.6611%" y="783.50"></text></g><g><title>[perf-501242.map] (154 samples, 0.07%)</title><rect x="43.3648%" y="869" width="0.0686%" height="15" fill="rgb(246,199,43)" fg:x="97400" fg:w="154"/><text x="43.6148%" y="879.50"></text></g><g><title>globbing_pool-8 (181 samples, 0.08%)</title><rect x="43.3604%" y="885" width="0.0806%" height="15" fill="rgb(232,125,11)" fg:x="97390" fg:w="181"/><text x="43.6104%" y="895.50"></text></g><g><title>[perf-501242.map] (46 samples, 0.02%)</title><rect x="43.4418%" y="869" width="0.0205%" height="15" fill="rgb(218,219,45)" fg:x="97573" fg:w="46"/><text x="43.6918%" y="879.50"></text></g><g><title>globbing_pool-9 (59 samples, 0.03%)</title><rect x="43.4410%" y="885" width="0.0263%" height="15" fill="rgb(216,102,54)" fg:x="97571" fg:w="59"/><text x="43.6910%" y="895.50"></text></g><g><title>[anon] (156 samples, 0.07%)</title><rect x="43.4721%" y="869" width="0.0695%" height="15" fill="rgb(250,228,7)" fg:x="97641" fg:w="156"/><text x="43.7221%" y="879.50"></text></g><g><title>SymbolTable::lookup_only (28 samples, 0.01%)</title><rect x="44.2798%" y="677" width="0.0125%" height="15" fill="rgb(226,125,25)" fg:x="99455" fg:w="28"/><text x="44.5298%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool (37 samples, 0.02%)</title><rect x="44.2766%" y="709" width="0.0165%" height="15" fill="rgb(224,165,27)" fg:x="99448" fg:w="37"/><text x="44.5266%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (34 samples, 0.02%)</title><rect x="44.2780%" y="693" width="0.0151%" height="15" fill="rgb(233,86,3)" fg:x="99451" fg:w="34"/><text x="44.5280%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (52 samples, 0.02%)</title><rect x="44.2766%" y="741" width="0.0232%" height="15" fill="rgb(228,116,20)" fg:x="99448" fg:w="52"/><text x="44.5266%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (52 samples, 0.02%)</title><rect x="44.2766%" y="725" width="0.0232%" height="15" fill="rgb(209,192,17)" fg:x="99448" fg:w="52"/><text x="44.5266%" y="735.50"></text></g><g><title>ClassLoader::load_class (106 samples, 0.05%)</title><rect x="44.2717%" y="773" width="0.0472%" height="15" fill="rgb(224,88,34)" fg:x="99437" fg:w="106"/><text x="44.5217%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (95 samples, 0.04%)</title><rect x="44.2766%" y="757" width="0.0423%" height="15" fill="rgb(233,38,6)" fg:x="99448" fg:w="95"/><text x="44.5266%" y="767.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (31 samples, 0.01%)</title><rect x="44.3051%" y="741" width="0.0138%" height="15" fill="rgb(212,59,30)" fg:x="99512" fg:w="31"/><text x="44.5551%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (114 samples, 0.05%)</title><rect x="44.2717%" y="789" width="0.0508%" height="15" fill="rgb(213,80,3)" fg:x="99437" fg:w="114"/><text x="44.5217%" y="799.50"></text></g><g><title>ConstantPool::klass_at_impl (124 samples, 0.06%)</title><rect x="44.2677%" y="837" width="0.0552%" height="15" fill="rgb(251,178,7)" fg:x="99428" fg:w="124"/><text x="44.5177%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (124 samples, 0.06%)</title><rect x="44.2677%" y="821" width="0.0552%" height="15" fill="rgb(213,154,26)" fg:x="99428" fg:w="124"/><text x="44.5177%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (124 samples, 0.06%)</title><rect x="44.2677%" y="805" width="0.0552%" height="15" fill="rgb(238,165,49)" fg:x="99428" fg:w="124"/><text x="44.5177%" y="815.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter0 (25 samples, 0.01%)</title><rect x="44.3354%" y="757" width="0.0111%" height="15" fill="rgb(248,91,46)" fg:x="99580" fg:w="25"/><text x="44.5854%" y="767.50"></text></g><g><title>InstanceKlass::link_methods (28 samples, 0.01%)</title><rect x="44.3345%" y="805" width="0.0125%" height="15" fill="rgb(244,21,52)" fg:x="99578" fg:w="28"/><text x="44.5845%" y="815.50"></text></g><g><title>Method::link_method (28 samples, 0.01%)</title><rect x="44.3345%" y="789" width="0.0125%" height="15" fill="rgb(247,122,20)" fg:x="99578" fg:w="28"/><text x="44.5845%" y="799.50"></text></g><g><title>AdapterHandlerLibrary::get_adapter (27 samples, 0.01%)</title><rect x="44.3350%" y="773" width="0.0120%" height="15" fill="rgb(218,27,9)" fg:x="99579" fg:w="27"/><text x="44.5850%" y="783.50"></text></g><g><title>Rewriter::rewrite (43 samples, 0.02%)</title><rect x="44.3479%" y="805" width="0.0191%" height="15" fill="rgb(246,7,6)" fg:x="99608" fg:w="43"/><text x="44.5979%" y="815.50"></text></g><g><title>Rewriter::Rewriter (39 samples, 0.02%)</title><rect x="44.3497%" y="789" width="0.0174%" height="15" fill="rgb(227,135,54)" fg:x="99612" fg:w="39"/><text x="44.5997%" y="799.50"></text></g><g><title>Rewriter::rewrite_bytecodes (26 samples, 0.01%)</title><rect x="44.3554%" y="773" width="0.0116%" height="15" fill="rgb(247,14,11)" fg:x="99625" fg:w="26"/><text x="44.6054%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (119 samples, 0.05%)</title><rect x="44.3238%" y="821" width="0.0530%" height="15" fill="rgb(206,149,34)" fg:x="99554" fg:w="119"/><text x="44.5738%" y="831.50"></text></g><g><title>InstanceKlass::initialize_impl (122 samples, 0.05%)</title><rect x="44.3238%" y="837" width="0.0543%" height="15" fill="rgb(227,228,4)" fg:x="99554" fg:w="122"/><text x="44.5738%" y="847.50"></text></g><g><title>InterpreterRuntime::_new (252 samples, 0.11%)</title><rect x="44.2664%" y="853" width="0.1122%" height="15" fill="rgb(238,218,28)" fg:x="99425" fg:w="252"/><text x="44.5164%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (44 samples, 0.02%)</title><rect x="44.3955%" y="853" width="0.0196%" height="15" fill="rgb(252,86,40)" fg:x="99715" fg:w="44"/><text x="44.6455%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (43 samples, 0.02%)</title><rect x="44.3960%" y="837" width="0.0191%" height="15" fill="rgb(251,225,11)" fg:x="99716" fg:w="43"/><text x="44.6460%" y="847.50"></text></g><g><title>TieredThresholdPolicy::event (38 samples, 0.02%)</title><rect x="44.3982%" y="821" width="0.0169%" height="15" fill="rgb(206,46,49)" fg:x="99721" fg:w="38"/><text x="44.6482%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (35 samples, 0.02%)</title><rect x="44.3995%" y="805" width="0.0156%" height="15" fill="rgb(245,128,24)" fg:x="99724" fg:w="35"/><text x="44.6495%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (25 samples, 0.01%)</title><rect x="44.4507%" y="789" width="0.0111%" height="15" fill="rgb(219,177,34)" fg:x="99839" fg:w="25"/><text x="44.7007%" y="799.50"></text></g><g><title>LinkResolver::resolve_field_access (66 samples, 0.03%)</title><rect x="44.4351%" y="821" width="0.0294%" height="15" fill="rgb(218,60,48)" fg:x="99804" fg:w="66"/><text x="44.6851%" y="831.50"></text></g><g><title>LinkResolver::resolve_field (46 samples, 0.02%)</title><rect x="44.4440%" y="805" width="0.0205%" height="15" fill="rgb(221,11,5)" fg:x="99824" fg:w="46"/><text x="44.6940%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (72 samples, 0.03%)</title><rect x="44.4338%" y="837" width="0.0321%" height="15" fill="rgb(220,148,13)" fg:x="99801" fg:w="72"/><text x="44.6838%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (25 samples, 0.01%)</title><rect x="44.4855%" y="661" width="0.0111%" height="15" fill="rgb(210,16,3)" fg:x="99917" fg:w="25"/><text x="44.7355%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (26 samples, 0.01%)</title><rect x="44.4855%" y="677" width="0.0116%" height="15" fill="rgb(236,80,2)" fg:x="99917" fg:w="26"/><text x="44.7355%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (40 samples, 0.02%)</title><rect x="44.4850%" y="709" width="0.0178%" height="15" fill="rgb(239,129,19)" fg:x="99916" fg:w="40"/><text x="44.7350%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (40 samples, 0.02%)</title><rect x="44.4850%" y="693" width="0.0178%" height="15" fill="rgb(220,106,35)" fg:x="99916" fg:w="40"/><text x="44.7350%" y="703.50"></text></g><g><title>ClassLoader::load_class (50 samples, 0.02%)</title><rect x="44.4846%" y="741" width="0.0223%" height="15" fill="rgb(252,139,45)" fg:x="99915" fg:w="50"/><text x="44.7346%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (49 samples, 0.02%)</title><rect x="44.4850%" y="725" width="0.0218%" height="15" fill="rgb(229,8,36)" fg:x="99916" fg:w="49"/><text x="44.7350%" y="735.50"></text></g><g><title>SystemDictionary::load_instance_class (55 samples, 0.02%)</title><rect x="44.4841%" y="757" width="0.0245%" height="15" fill="rgb(230,126,33)" fg:x="99914" fg:w="55"/><text x="44.7341%" y="767.50"></text></g><g><title>ConstantPool::klass_ref_at (67 samples, 0.03%)</title><rect x="44.4792%" y="805" width="0.0298%" height="15" fill="rgb(239,140,21)" fg:x="99903" fg:w="67"/><text x="44.7292%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (62 samples, 0.03%)</title><rect x="44.4814%" y="789" width="0.0276%" height="15" fill="rgb(254,104,9)" fg:x="99908" fg:w="62"/><text x="44.7314%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (61 samples, 0.03%)</title><rect x="44.4819%" y="773" width="0.0272%" height="15" fill="rgb(239,52,14)" fg:x="99909" fg:w="61"/><text x="44.7319%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (31 samples, 0.01%)</title><rect x="44.5215%" y="805" width="0.0138%" height="15" fill="rgb(208,227,44)" fg:x="99998" fg:w="31"/><text x="44.7715%" y="815.50"></text></g><g><title>Rewriter::rewrite_bytecodes (28 samples, 0.01%)</title><rect x="44.5487%" y="725" width="0.0125%" height="15" fill="rgb(246,18,19)" fg:x="100059" fg:w="28"/><text x="44.7987%" y="735.50"></text></g><g><title>Rewriter::rewrite (37 samples, 0.02%)</title><rect x="44.5451%" y="757" width="0.0165%" height="15" fill="rgb(235,228,25)" fg:x="100051" fg:w="37"/><text x="44.7951%" y="767.50"></text></g><g><title>Rewriter::Rewriter (37 samples, 0.02%)</title><rect x="44.5451%" y="741" width="0.0165%" height="15" fill="rgb(240,156,20)" fg:x="100051" fg:w="37"/><text x="44.7951%" y="751.50"></text></g><g><title>InstanceKlass::initialize_impl (67 samples, 0.03%)</title><rect x="44.5353%" y="789" width="0.0298%" height="15" fill="rgb(224,8,20)" fg:x="100029" fg:w="67"/><text x="44.7853%" y="799.50"></text></g><g><title>InstanceKlass::link_class_impl (65 samples, 0.03%)</title><rect x="44.5362%" y="773" width="0.0289%" height="15" fill="rgb(214,12,52)" fg:x="100031" fg:w="65"/><text x="44.7862%" y="783.50"></text></g><g><title>LinkResolver::resolve_static_call (80 samples, 0.04%)</title><rect x="44.5353%" y="805" width="0.0356%" height="15" fill="rgb(211,220,47)" fg:x="100029" fg:w="80"/><text x="44.7853%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (211 samples, 0.09%)</title><rect x="44.4779%" y="821" width="0.0939%" height="15" fill="rgb(250,173,5)" fg:x="99900" fg:w="211"/><text x="44.7279%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (248 samples, 0.11%)</title><rect x="44.4659%" y="837" width="0.1104%" height="15" fill="rgb(250,125,52)" fg:x="99873" fg:w="248"/><text x="44.7159%" y="847.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (30 samples, 0.01%)</title><rect x="44.5772%" y="773" width="0.0134%" height="15" fill="rgb(209,133,18)" fg:x="100123" fg:w="30"/><text x="44.8272%" y="783.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (30 samples, 0.01%)</title><rect x="44.5772%" y="757" width="0.0134%" height="15" fill="rgb(216,173,22)" fg:x="100123" fg:w="30"/><text x="44.8272%" y="767.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (40 samples, 0.02%)</title><rect x="44.5772%" y="789" width="0.0178%" height="15" fill="rgb(205,3,22)" fg:x="100123" fg:w="40"/><text x="44.8272%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (53 samples, 0.02%)</title><rect x="44.5763%" y="837" width="0.0236%" height="15" fill="rgb(248,22,20)" fg:x="100121" fg:w="53"/><text x="44.8263%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (52 samples, 0.02%)</title><rect x="44.5767%" y="821" width="0.0232%" height="15" fill="rgb(233,6,29)" fg:x="100122" fg:w="52"/><text x="44.8267%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (52 samples, 0.02%)</title><rect x="44.5767%" y="805" width="0.0232%" height="15" fill="rgb(240,22,54)" fg:x="100122" fg:w="52"/><text x="44.8267%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (390 samples, 0.17%)</title><rect x="44.4298%" y="853" width="0.1736%" height="15" fill="rgb(231,133,32)" fg:x="99792" fg:w="390"/><text x="44.6798%" y="863.50"></text></g><g><title>Bytecode_loadconstant::resolve_constant (27 samples, 0.01%)</title><rect x="44.6039%" y="837" width="0.0120%" height="15" fill="rgb(248,193,4)" fg:x="100183" fg:w="27"/><text x="44.8539%" y="847.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (27 samples, 0.01%)</title><rect x="44.6039%" y="821" width="0.0120%" height="15" fill="rgb(211,178,46)" fg:x="100183" fg:w="27"/><text x="44.8539%" y="831.50"></text></g><g><title>ConstantPool::string_at_impl (26 samples, 0.01%)</title><rect x="44.6043%" y="805" width="0.0116%" height="15" fill="rgb(224,5,42)" fg:x="100184" fg:w="26"/><text x="44.8543%" y="815.50"></text></g><g><title>StringTable::intern (24 samples, 0.01%)</title><rect x="44.6052%" y="789" width="0.0107%" height="15" fill="rgb(239,176,25)" fg:x="100186" fg:w="24"/><text x="44.8552%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (30 samples, 0.01%)</title><rect x="44.6034%" y="853" width="0.0134%" height="15" fill="rgb(245,187,50)" fg:x="100182" fg:w="30"/><text x="44.8534%" y="863.50"></text></g><g><title>JVM_FindLoadedClass (25 samples, 0.01%)</title><rect x="44.6310%" y="853" width="0.0111%" height="15" fill="rgb(248,24,15)" fg:x="100244" fg:w="25"/><text x="44.8810%" y="863.50"></text></g><g><title>Reflection::new_method (32 samples, 0.01%)</title><rect x="44.6667%" y="821" width="0.0142%" height="15" fill="rgb(205,166,13)" fg:x="100324" fg:w="32"/><text x="44.9167%" y="831.50"></text></g><g><title>JVM_GetClassDeclaredMethods (55 samples, 0.02%)</title><rect x="44.6569%" y="853" width="0.0245%" height="15" fill="rgb(208,114,23)" fg:x="100302" fg:w="55"/><text x="44.9069%" y="863.50"></text></g><g><title>get_class_declared_methods_helper (55 samples, 0.02%)</title><rect x="44.6569%" y="837" width="0.0245%" height="15" fill="rgb(239,127,18)" fg:x="100302" fg:w="55"/><text x="44.9069%" y="847.50"></text></g><g><title>JVM_InitClassName (23 samples, 0.01%)</title><rect x="44.6840%" y="853" width="0.0102%" height="15" fill="rgb(219,154,28)" fg:x="100363" fg:w="23"/><text x="44.9340%" y="863.50"></text></g><g><title>java_lang_Class::name (23 samples, 0.01%)</title><rect x="44.6840%" y="837" width="0.0102%" height="15" fill="rgb(225,157,23)" fg:x="100363" fg:w="23"/><text x="44.9340%" y="847.50"></text></g><g><title>SymbolTable::add (51 samples, 0.02%)</title><rect x="44.7499%" y="709" width="0.0227%" height="15" fill="rgb(219,8,6)" fg:x="100511" fg:w="51"/><text x="44.9999%" y="719.50"></text></g><g><title>SymbolTable::basic_add (50 samples, 0.02%)</title><rect x="44.7504%" y="693" width="0.0223%" height="15" fill="rgb(212,47,6)" fg:x="100512" fg:w="50"/><text x="45.0004%" y="703.50"></text></g><g><title>SymbolTable::lookup_only (383 samples, 0.17%)</title><rect x="44.7726%" y="709" width="0.1705%" height="15" fill="rgb(224,190,4)" fg:x="100562" fg:w="383"/><text x="45.0226%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (462 samples, 0.21%)</title><rect x="44.7379%" y="725" width="0.2057%" height="15" fill="rgb(239,183,29)" fg:x="100484" fg:w="462"/><text x="44.9879%" y="735.50"></text></g><g><title>ClassFileParser::parse_constant_pool (479 samples, 0.21%)</title><rect x="44.7312%" y="741" width="0.2133%" height="15" fill="rgb(213,57,7)" fg:x="100469" fg:w="479"/><text x="44.9812%" y="751.50"></text></g><g><title>Method::allocate (35 samples, 0.02%)</title><rect x="44.9859%" y="709" width="0.0156%" height="15" fill="rgb(216,148,1)" fg:x="101041" fg:w="35"/><text x="45.2359%" y="719.50"></text></g><g><title>ClassFileParser::parse_method (126 samples, 0.06%)</title><rect x="44.9520%" y="725" width="0.0561%" height="15" fill="rgb(236,182,29)" fg:x="100965" fg:w="126"/><text x="45.2020%" y="735.50"></text></g><g><title>ClassFileParser::parse_methods (130 samples, 0.06%)</title><rect x="44.9520%" y="741" width="0.0579%" height="15" fill="rgb(244,120,48)" fg:x="100965" fg:w="130"/><text x="45.2020%" y="751.50"></text></g><g><title>ClassFileParser::ClassFileParser (646 samples, 0.29%)</title><rect x="44.7268%" y="773" width="0.2876%" height="15" fill="rgb(206,71,34)" fg:x="100459" fg:w="646"/><text x="44.9768%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (646 samples, 0.29%)</title><rect x="44.7268%" y="757" width="0.2876%" height="15" fill="rgb(242,32,6)" fg:x="100459" fg:w="646"/><text x="44.9768%" y="767.50"></text></g><g><title>InstanceKlass::find_method (23 samples, 0.01%)</title><rect x="45.0393%" y="709" width="0.0102%" height="15" fill="rgb(241,35,3)" fg:x="101161" fg:w="23"/><text x="45.2893%" y="719.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (81 samples, 0.04%)</title><rect x="45.0286%" y="725" width="0.0361%" height="15" fill="rgb(222,62,19)" fg:x="101137" fg:w="81"/><text x="45.2786%" y="735.50"></text></g><g><title>resource_allocate_bytes (32 samples, 0.01%)</title><rect x="45.0504%" y="709" width="0.0142%" height="15" fill="rgb(223,110,41)" fg:x="101186" fg:w="32"/><text x="45.3004%" y="719.50"></text></g><g><title>DefaultMethods::generate_default_methods (115 samples, 0.05%)</title><rect x="45.0211%" y="741" width="0.0512%" height="15" fill="rgb(208,224,4)" fg:x="101120" fg:w="115"/><text x="45.2711%" y="751.50"></text></g><g><title>ClassFileParser::fill_instance_klass (157 samples, 0.07%)</title><rect x="45.0144%" y="757" width="0.0699%" height="15" fill="rgb(241,137,19)" fg:x="101105" fg:w="157"/><text x="45.2644%" y="767.50"></text></g><g><title>ClassFileParser::create_instance_klass (165 samples, 0.07%)</title><rect x="45.0144%" y="773" width="0.0735%" height="15" fill="rgb(244,24,17)" fg:x="101105" fg:w="165"/><text x="45.2644%" y="783.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (36 samples, 0.02%)</title><rect x="45.0878%" y="773" width="0.0160%" height="15" fill="rgb(245,178,49)" fg:x="101270" fg:w="36"/><text x="45.3378%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (850 samples, 0.38%)</title><rect x="44.7263%" y="789" width="0.3784%" height="15" fill="rgb(219,160,38)" fg:x="100458" fg:w="850"/><text x="44.9763%" y="799.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (37 samples, 0.02%)</title><rect x="45.1048%" y="789" width="0.0165%" height="15" fill="rgb(228,137,14)" fg:x="101308" fg:w="37"/><text x="45.3548%" y="799.50"></text></g><g><title>SystemDictionary::define_instance_class (36 samples, 0.02%)</title><rect x="45.1052%" y="773" width="0.0160%" height="15" fill="rgb(237,134,11)" fg:x="101309" fg:w="36"/><text x="45.3552%" y="783.50"></text></g><g><title>JVM_DefineClassWithSource (904 samples, 0.40%)</title><rect x="44.7205%" y="837" width="0.4025%" height="15" fill="rgb(211,126,44)" fg:x="100445" fg:w="904"/><text x="44.9705%" y="847.50"></text></g><g><title>jvm_define_class_common (903 samples, 0.40%)</title><rect x="44.7210%" y="821" width="0.4020%" height="15" fill="rgb(226,171,33)" fg:x="100446" fg:w="903"/><text x="44.9710%" y="831.50"></text></g><g><title>SystemDictionary::resolve_from_stream (892 samples, 0.40%)</title><rect x="44.7259%" y="805" width="0.3971%" height="15" fill="rgb(253,99,13)" fg:x="100457" fg:w="892"/><text x="44.9759%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (936 samples, 0.42%)</title><rect x="44.7205%" y="853" width="0.4167%" height="15" fill="rgb(244,48,7)" fg:x="100445" fg:w="936"/><text x="44.9705%" y="863.50"></text></g><g><title>ClassLoader::load_class (35 samples, 0.02%)</title><rect x="45.1426%" y="773" width="0.0156%" height="15" fill="rgb(244,217,54)" fg:x="101393" fg:w="35"/><text x="45.3926%" y="783.50"></text></g><g><title>SystemDictionary::resolve_or_null (59 samples, 0.03%)</title><rect x="45.1382%" y="821" width="0.0263%" height="15" fill="rgb(224,15,18)" fg:x="101383" fg:w="59"/><text x="45.3882%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (58 samples, 0.03%)</title><rect x="45.1386%" y="805" width="0.0258%" height="15" fill="rgb(244,99,12)" fg:x="101384" fg:w="58"/><text x="45.3886%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (49 samples, 0.02%)</title><rect x="45.1426%" y="789" width="0.0218%" height="15" fill="rgb(233,226,8)" fg:x="101393" fg:w="49"/><text x="45.3926%" y="799.50"></text></g><g><title>JVM_FindClassFromBootLoader (61 samples, 0.03%)</title><rect x="45.1377%" y="837" width="0.0272%" height="15" fill="rgb(229,211,3)" fg:x="101382" fg:w="61"/><text x="45.3877%" y="847.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (75 samples, 0.03%)</title><rect x="45.1373%" y="853" width="0.0334%" height="15" fill="rgb(216,140,21)" fg:x="101381" fg:w="75"/><text x="45.3873%" y="863.50"></text></g><g><title>MHN_resolve_Mem (23 samples, 0.01%)</title><rect x="45.1929%" y="853" width="0.0102%" height="15" fill="rgb(234,122,30)" fg:x="101506" fg:w="23"/><text x="45.4429%" y="863.50"></text></g><g><title>MethodHandles::resolve_MemberName (23 samples, 0.01%)</title><rect x="45.1929%" y="837" width="0.0102%" height="15" fill="rgb(236,25,46)" fg:x="101506" fg:w="23"/><text x="45.4429%" y="847.50"></text></g><g><title>KlassFactory::create_from_stream (33 samples, 0.01%)</title><rect x="45.2254%" y="821" width="0.0147%" height="15" fill="rgb(217,52,54)" fg:x="101579" fg:w="33"/><text x="45.4754%" y="831.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (50 samples, 0.02%)</title><rect x="45.2183%" y="853" width="0.0223%" height="15" fill="rgb(222,29,26)" fg:x="101563" fg:w="50"/><text x="45.4683%" y="863.50"></text></g><g><title>SystemDictionary::parse_stream (50 samples, 0.02%)</title><rect x="45.2183%" y="837" width="0.0223%" height="15" fill="rgb(216,177,29)" fg:x="101563" fg:w="50"/><text x="45.4683%" y="847.50"></text></g><g><title>[perf-501242.map] (3,839 samples, 1.71%)</title><rect x="43.5500%" y="869" width="1.7092%" height="15" fill="rgb(247,136,51)" fg:x="97816" fg:w="3839"/><text x="43.8000%" y="879.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (33 samples, 0.01%)</title><rect x="45.2708%" y="853" width="0.0147%" height="15" fill="rgb(231,47,47)" fg:x="101681" fg:w="33"/><text x="45.5208%" y="863.50"></text></g><g><title>new_sync_read (35 samples, 0.02%)</title><rect x="45.2980%" y="725" width="0.0156%" height="15" fill="rgb(211,192,36)" fg:x="101742" fg:w="35"/><text x="45.5480%" y="735.50"></text></g><g><title>generic_file_buffered_read (35 samples, 0.02%)</title><rect x="45.2980%" y="709" width="0.0156%" height="15" fill="rgb(229,156,32)" fg:x="101742" fg:w="35"/><text x="45.5480%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.02%)</title><rect x="45.2949%" y="789" width="0.0196%" height="15" fill="rgb(248,213,20)" fg:x="101735" fg:w="44"/><text x="45.5449%" y="799.50"></text></g><g><title>do_syscall_64 (44 samples, 0.02%)</title><rect x="45.2949%" y="773" width="0.0196%" height="15" fill="rgb(217,64,7)" fg:x="101735" fg:w="44"/><text x="45.5449%" y="783.50"></text></g><g><title>ksys_read (44 samples, 0.02%)</title><rect x="45.2949%" y="757" width="0.0196%" height="15" fill="rgb(232,142,8)" fg:x="101735" fg:w="44"/><text x="45.5449%" y="767.50"></text></g><g><title>vfs_read (39 samples, 0.02%)</title><rect x="45.2971%" y="741" width="0.0174%" height="15" fill="rgb(224,92,44)" fg:x="101740" fg:w="39"/><text x="45.5471%" y="751.50"></text></g><g><title>__libc_read (50 samples, 0.02%)</title><rect x="45.2926%" y="821" width="0.0223%" height="15" fill="rgb(214,169,17)" fg:x="101730" fg:w="50"/><text x="45.5426%" y="831.50"></text></g><g><title>__libc_read (50 samples, 0.02%)</title><rect x="45.2926%" y="805" width="0.0223%" height="15" fill="rgb(210,59,37)" fg:x="101730" fg:w="50"/><text x="45.5426%" y="815.50"></text></g><g><title>handleRead (52 samples, 0.02%)</title><rect x="45.2926%" y="837" width="0.0232%" height="15" fill="rgb(214,116,48)" fg:x="101730" fg:w="52"/><text x="45.5426%" y="847.50"></text></g><g><title>readBytes (63 samples, 0.03%)</title><rect x="45.2918%" y="853" width="0.0280%" height="15" fill="rgb(244,191,6)" fg:x="101728" fg:w="63"/><text x="45.5418%" y="863.50"></text></g><g><title>[unknown] (138 samples, 0.06%)</title><rect x="45.2593%" y="869" width="0.0614%" height="15" fill="rgb(241,50,52)" fg:x="101655" fg:w="138"/><text x="45.5093%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (212 samples, 0.09%)</title><rect x="45.3256%" y="805" width="0.0944%" height="15" fill="rgb(236,75,39)" fg:x="101804" fg:w="212"/><text x="45.5756%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (208 samples, 0.09%)</title><rect x="45.3274%" y="789" width="0.0926%" height="15" fill="rgb(236,99,0)" fg:x="101808" fg:w="208"/><text x="45.5774%" y="799.50"></text></g><g><title>native_write_msr (207 samples, 0.09%)</title><rect x="45.3278%" y="773" width="0.0922%" height="15" fill="rgb(207,202,15)" fg:x="101809" fg:w="207"/><text x="45.5778%" y="783.50"></text></g><g><title>schedule_tail (216 samples, 0.10%)</title><rect x="45.3251%" y="837" width="0.0962%" height="15" fill="rgb(233,207,14)" fg:x="101803" fg:w="216"/><text x="45.5751%" y="847.50"></text></g><g><title>finish_task_switch (216 samples, 0.10%)</title><rect x="45.3251%" y="821" width="0.0962%" height="15" fill="rgb(226,27,51)" fg:x="101803" fg:w="216"/><text x="45.5751%" y="831.50"></text></g><g><title>ret_from_fork (224 samples, 0.10%)</title><rect x="45.3238%" y="853" width="0.0997%" height="15" fill="rgb(206,104,42)" fg:x="101800" fg:w="224"/><text x="45.5738%" y="863.50"></text></g><g><title>init_globals (34 samples, 0.02%)</title><rect x="45.4244%" y="789" width="0.0151%" height="15" fill="rgb(212,225,4)" fg:x="102026" fg:w="34"/><text x="45.6744%" y="799.50"></text></g><g><title>JNI_CreateJavaVM (40 samples, 0.02%)</title><rect x="45.4235%" y="821" width="0.0178%" height="15" fill="rgb(233,96,42)" fg:x="102024" fg:w="40"/><text x="45.6735%" y="831.50"></text></g><g><title>Threads::create_vm (40 samples, 0.02%)</title><rect x="45.4235%" y="805" width="0.0178%" height="15" fill="rgb(229,21,32)" fg:x="102024" fg:w="40"/><text x="45.6735%" y="815.50"></text></g><g><title>JavaMain (41 samples, 0.02%)</title><rect x="45.4235%" y="837" width="0.0183%" height="15" fill="rgb(226,216,24)" fg:x="102024" fg:w="41"/><text x="45.6735%" y="847.50"></text></g><g><title>__GI___clone (317 samples, 0.14%)</title><rect x="45.3207%" y="869" width="0.1411%" height="15" fill="rgb(221,163,17)" fg:x="101793" fg:w="317"/><text x="45.5707%" y="879.50"></text></g><g><title>start_thread (86 samples, 0.04%)</title><rect x="45.4235%" y="853" width="0.0383%" height="15" fill="rgb(216,216,42)" fg:x="102024" fg:w="86"/><text x="45.6735%" y="863.50"></text></g><g><title>thread_native_entry (38 samples, 0.02%)</title><rect x="45.4449%" y="837" width="0.0169%" height="15" fill="rgb(240,118,7)" fg:x="102072" fg:w="38"/><text x="45.6949%" y="847.50"></text></g><g><title>java (4,505 samples, 2.01%)</title><rect x="43.4672%" y="885" width="2.0057%" height="15" fill="rgb(221,67,37)" fg:x="97630" fg:w="4505"/><text x="43.7172%" y="895.50">j..</text></g><g><title>[[heap]] (29 samples, 0.01%)</title><rect x="45.4730%" y="869" width="0.0129%" height="15" fill="rgb(241,32,44)" fg:x="102135" fg:w="29"/><text x="45.7230%" y="879.50"></text></g><g><title>[bash] (30 samples, 0.01%)</title><rect x="45.5028%" y="853" width="0.0134%" height="15" fill="rgb(235,204,43)" fg:x="102202" fg:w="30"/><text x="45.7528%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.02%)</title><rect x="45.5331%" y="69" width="0.0191%" height="15" fill="rgb(213,116,10)" fg:x="102270" fg:w="43"/><text x="45.7831%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (43 samples, 0.02%)</title><rect x="45.5331%" y="53" width="0.0191%" height="15" fill="rgb(239,15,48)" fg:x="102270" fg:w="43"/><text x="45.7831%" y="63.50"></text></g><g><title>native_write_msr (43 samples, 0.02%)</title><rect x="45.5331%" y="37" width="0.0191%" height="15" fill="rgb(207,123,36)" fg:x="102270" fg:w="43"/><text x="45.7831%" y="47.50"></text></g><g><title>execute_command (66 samples, 0.03%)</title><rect x="45.5233%" y="821" width="0.0294%" height="15" fill="rgb(209,103,30)" fg:x="102248" fg:w="66"/><text x="45.7733%" y="831.50"></text></g><g><title>execute_command_internal (66 samples, 0.03%)</title><rect x="45.5233%" y="805" width="0.0294%" height="15" fill="rgb(238,100,19)" fg:x="102248" fg:w="66"/><text x="45.7733%" y="815.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="789" width="0.0258%" height="15" fill="rgb(244,30,14)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="799.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="773" width="0.0258%" height="15" fill="rgb(249,174,6)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="783.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="757" width="0.0258%" height="15" fill="rgb(235,213,41)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="767.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="741" width="0.0258%" height="15" fill="rgb(213,118,6)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="751.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="725" width="0.0258%" height="15" fill="rgb(235,44,51)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="735.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="709" width="0.0258%" height="15" fill="rgb(217,9,53)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="719.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="693" width="0.0258%" height="15" fill="rgb(237,172,34)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="703.50"></text></g><g><title>execute_command (58 samples, 0.03%)</title><rect x="45.5268%" y="677" width="0.0258%" height="15" fill="rgb(206,206,11)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="687.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="661" width="0.0258%" height="15" fill="rgb(214,149,29)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="671.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="645" width="0.0258%" height="15" fill="rgb(208,123,3)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="655.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="629" width="0.0258%" height="15" fill="rgb(229,126,4)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="639.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="613" width="0.0258%" height="15" fill="rgb(222,92,36)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="623.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="597" width="0.0258%" height="15" fill="rgb(216,39,41)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="607.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="581" width="0.0258%" height="15" fill="rgb(253,127,28)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="591.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="565" width="0.0258%" height="15" fill="rgb(249,152,51)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="575.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="549" width="0.0258%" height="15" fill="rgb(209,123,42)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="559.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="533" width="0.0258%" height="15" fill="rgb(241,118,22)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="543.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="517" width="0.0258%" height="15" fill="rgb(208,25,7)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="527.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="501" width="0.0258%" height="15" fill="rgb(243,144,39)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="511.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="485" width="0.0258%" height="15" fill="rgb(250,50,5)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="495.50"></text></g><g><title>execute_command (58 samples, 0.03%)</title><rect x="45.5268%" y="469" width="0.0258%" height="15" fill="rgb(207,67,11)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="479.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="453" width="0.0258%" height="15" fill="rgb(245,204,40)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="463.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="437" width="0.0258%" height="15" fill="rgb(238,228,24)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="447.50"></text></g><g><title>execute_command (58 samples, 0.03%)</title><rect x="45.5268%" y="421" width="0.0258%" height="15" fill="rgb(217,116,22)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="431.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="405" width="0.0258%" height="15" fill="rgb(234,98,12)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="415.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="389" width="0.0258%" height="15" fill="rgb(242,170,50)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="399.50"></text></g><g><title>execute_command (58 samples, 0.03%)</title><rect x="45.5268%" y="373" width="0.0258%" height="15" fill="rgb(235,7,5)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="383.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="357" width="0.0258%" height="15" fill="rgb(241,114,28)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="367.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="341" width="0.0258%" height="15" fill="rgb(246,112,42)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="351.50"></text></g><g><title>execute_command (58 samples, 0.03%)</title><rect x="45.5268%" y="325" width="0.0258%" height="15" fill="rgb(248,228,14)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="335.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="309" width="0.0258%" height="15" fill="rgb(208,133,18)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="319.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="293" width="0.0258%" height="15" fill="rgb(207,35,49)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="303.50"></text></g><g><title>execute_command_internal (58 samples, 0.03%)</title><rect x="45.5268%" y="277" width="0.0258%" height="15" fill="rgb(205,68,36)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="287.50"></text></g><g><title>expand_words (58 samples, 0.03%)</title><rect x="45.5268%" y="261" width="0.0258%" height="15" fill="rgb(245,62,40)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="271.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="245" width="0.0258%" height="15" fill="rgb(228,27,24)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="255.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="229" width="0.0258%" height="15" fill="rgb(253,19,12)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="239.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="213" width="0.0258%" height="15" fill="rgb(232,28,20)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="223.50"></text></g><g><title>[bash] (58 samples, 0.03%)</title><rect x="45.5268%" y="197" width="0.0258%" height="15" fill="rgb(218,35,51)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="207.50"></text></g><g><title>command_substitute (58 samples, 0.03%)</title><rect x="45.5268%" y="181" width="0.0258%" height="15" fill="rgb(212,90,40)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="191.50"></text></g><g><title>make_child (58 samples, 0.03%)</title><rect x="45.5268%" y="165" width="0.0258%" height="15" fill="rgb(220,172,12)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="175.50"></text></g><g><title>__libc_fork (58 samples, 0.03%)</title><rect x="45.5268%" y="149" width="0.0258%" height="15" fill="rgb(226,159,20)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="159.50"></text></g><g><title>arch_fork (58 samples, 0.03%)</title><rect x="45.5268%" y="133" width="0.0258%" height="15" fill="rgb(234,205,16)" fg:x="102256" fg:w="58"/><text x="45.7768%" y="143.50"></text></g><g><title>ret_from_fork (51 samples, 0.02%)</title><rect x="45.5300%" y="117" width="0.0227%" height="15" fill="rgb(207,9,39)" fg:x="102263" fg:w="51"/><text x="45.7800%" y="127.50"></text></g><g><title>schedule_tail (50 samples, 0.02%)</title><rect x="45.5304%" y="101" width="0.0223%" height="15" fill="rgb(249,143,15)" fg:x="102264" fg:w="50"/><text x="45.7804%" y="111.50"></text></g><g><title>finish_task_switch (45 samples, 0.02%)</title><rect x="45.5326%" y="85" width="0.0200%" height="15" fill="rgb(253,133,29)" fg:x="102269" fg:w="45"/><text x="45.7826%" y="95.50"></text></g><g><title>[bash] (90 samples, 0.04%)</title><rect x="45.5228%" y="837" width="0.0401%" height="15" fill="rgb(221,187,0)" fg:x="102247" fg:w="90"/><text x="45.7728%" y="847.50"></text></g><g><title>execute_command_internal (23 samples, 0.01%)</title><rect x="45.5527%" y="821" width="0.0102%" height="15" fill="rgb(205,204,26)" fg:x="102314" fg:w="23"/><text x="45.8027%" y="831.50"></text></g><g><title>arch_fork (53 samples, 0.02%)</title><rect x="45.5665%" y="181" width="0.0236%" height="15" fill="rgb(224,68,54)" fg:x="102345" fg:w="53"/><text x="45.8165%" y="191.50"></text></g><g><title>ret_from_fork (50 samples, 0.02%)</title><rect x="45.5678%" y="165" width="0.0223%" height="15" fill="rgb(209,67,4)" fg:x="102348" fg:w="50"/><text x="45.8178%" y="175.50"></text></g><g><title>schedule_tail (50 samples, 0.02%)</title><rect x="45.5678%" y="149" width="0.0223%" height="15" fill="rgb(228,229,18)" fg:x="102348" fg:w="50"/><text x="45.8178%" y="159.50"></text></g><g><title>finish_task_switch (46 samples, 0.02%)</title><rect x="45.5696%" y="133" width="0.0205%" height="15" fill="rgb(231,89,13)" fg:x="102352" fg:w="46"/><text x="45.8196%" y="143.50"></text></g><g><title>__perf_event_task_sched_in (46 samples, 0.02%)</title><rect x="45.5696%" y="117" width="0.0205%" height="15" fill="rgb(210,182,18)" fg:x="102352" fg:w="46"/><text x="45.8196%" y="127.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.02%)</title><rect x="45.5696%" y="101" width="0.0205%" height="15" fill="rgb(240,105,2)" fg:x="102352" fg:w="46"/><text x="45.8196%" y="111.50"></text></g><g><title>native_write_msr (46 samples, 0.02%)</title><rect x="45.5696%" y="85" width="0.0205%" height="15" fill="rgb(207,170,50)" fg:x="102352" fg:w="46"/><text x="45.8196%" y="95.50"></text></g><g><title>execute_command (65 samples, 0.03%)</title><rect x="45.5629%" y="805" width="0.0289%" height="15" fill="rgb(232,133,24)" fg:x="102337" fg:w="65"/><text x="45.8129%" y="815.50"></text></g><g><title>execute_command_internal (65 samples, 0.03%)</title><rect x="45.5629%" y="789" width="0.0289%" height="15" fill="rgb(235,166,27)" fg:x="102337" fg:w="65"/><text x="45.8129%" y="799.50"></text></g><g><title>[bash] (65 samples, 0.03%)</title><rect x="45.5629%" y="773" width="0.0289%" height="15" fill="rgb(209,19,13)" fg:x="102337" fg:w="65"/><text x="45.8129%" y="783.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="757" width="0.0276%" height="15" fill="rgb(226,79,39)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="767.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="741" width="0.0276%" height="15" fill="rgb(222,163,10)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="751.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="725" width="0.0276%" height="15" fill="rgb(214,44,19)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="735.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="709" width="0.0276%" height="15" fill="rgb(210,217,13)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="719.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="693" width="0.0276%" height="15" fill="rgb(237,61,54)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="703.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="677" width="0.0276%" height="15" fill="rgb(226,184,24)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="687.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="661" width="0.0276%" height="15" fill="rgb(223,226,4)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="671.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="645" width="0.0276%" height="15" fill="rgb(210,26,41)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="655.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="629" width="0.0276%" height="15" fill="rgb(220,221,6)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="639.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="613" width="0.0276%" height="15" fill="rgb(225,89,49)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="623.50"></text></g><g><title>execute_command (62 samples, 0.03%)</title><rect x="45.5642%" y="597" width="0.0276%" height="15" fill="rgb(218,70,45)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="607.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="581" width="0.0276%" height="15" fill="rgb(238,166,21)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="591.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="565" width="0.0276%" height="15" fill="rgb(224,141,44)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="575.50"></text></g><g><title>execute_command (62 samples, 0.03%)</title><rect x="45.5642%" y="549" width="0.0276%" height="15" fill="rgb(230,12,49)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="559.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="533" width="0.0276%" height="15" fill="rgb(212,174,12)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="543.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="517" width="0.0276%" height="15" fill="rgb(246,67,9)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="527.50"></text></g><g><title>execute_command (62 samples, 0.03%)</title><rect x="45.5642%" y="501" width="0.0276%" height="15" fill="rgb(239,35,23)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="511.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="485" width="0.0276%" height="15" fill="rgb(211,167,0)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="495.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="469" width="0.0276%" height="15" fill="rgb(225,119,45)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="479.50"></text></g><g><title>execute_command (62 samples, 0.03%)</title><rect x="45.5642%" y="453" width="0.0276%" height="15" fill="rgb(210,162,6)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="463.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="437" width="0.0276%" height="15" fill="rgb(208,118,35)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="447.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="421" width="0.0276%" height="15" fill="rgb(239,4,53)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="431.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="405" width="0.0276%" height="15" fill="rgb(213,130,21)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="415.50"></text></g><g><title>expand_words (62 samples, 0.03%)</title><rect x="45.5642%" y="389" width="0.0276%" height="15" fill="rgb(235,148,0)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="399.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="373" width="0.0276%" height="15" fill="rgb(244,224,18)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="383.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="357" width="0.0276%" height="15" fill="rgb(211,214,4)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="367.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="341" width="0.0276%" height="15" fill="rgb(206,119,25)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="351.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="325" width="0.0276%" height="15" fill="rgb(243,93,47)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="335.50"></text></g><g><title>command_substitute (62 samples, 0.03%)</title><rect x="45.5642%" y="309" width="0.0276%" height="15" fill="rgb(224,194,6)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="319.50"></text></g><g><title>parse_and_execute (62 samples, 0.03%)</title><rect x="45.5642%" y="293" width="0.0276%" height="15" fill="rgb(243,229,6)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="303.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="277" width="0.0276%" height="15" fill="rgb(207,23,50)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="287.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="261" width="0.0276%" height="15" fill="rgb(253,192,32)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="271.50"></text></g><g><title>[bash] (62 samples, 0.03%)</title><rect x="45.5642%" y="245" width="0.0276%" height="15" fill="rgb(213,21,6)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="255.50"></text></g><g><title>execute_command_internal (62 samples, 0.03%)</title><rect x="45.5642%" y="229" width="0.0276%" height="15" fill="rgb(243,151,13)" fg:x="102340" fg:w="62"/><text x="45.8142%" y="239.50"></text></g><g><title>make_child (59 samples, 0.03%)</title><rect x="45.5656%" y="213" width="0.0263%" height="15" fill="rgb(233,165,41)" fg:x="102343" fg:w="59"/><text x="45.8156%" y="223.50"></text></g><g><title>__libc_fork (58 samples, 0.03%)</title><rect x="45.5660%" y="197" width="0.0258%" height="15" fill="rgb(246,176,45)" fg:x="102344" fg:w="58"/><text x="45.8160%" y="207.50"></text></g><g><title>execute_command_internal (156 samples, 0.07%)</title><rect x="45.5228%" y="853" width="0.0695%" height="15" fill="rgb(217,170,52)" fg:x="102247" fg:w="156"/><text x="45.7728%" y="863.50"></text></g><g><title>execute_command_internal (66 samples, 0.03%)</title><rect x="45.5629%" y="837" width="0.0294%" height="15" fill="rgb(214,203,54)" fg:x="102337" fg:w="66"/><text x="45.8129%" y="847.50"></text></g><g><title>[bash] (66 samples, 0.03%)</title><rect x="45.5629%" y="821" width="0.0294%" height="15" fill="rgb(248,215,49)" fg:x="102337" fg:w="66"/><text x="45.8129%" y="831.50"></text></g><g><title>[unknown] (228 samples, 0.10%)</title><rect x="45.5028%" y="869" width="0.1015%" height="15" fill="rgb(208,46,10)" fg:x="102202" fg:w="228"/><text x="45.7528%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="45.6359%" y="629" width="0.0160%" height="15" fill="rgb(254,5,31)" fg:x="102501" fg:w="36"/><text x="45.8859%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (33 samples, 0.01%)</title><rect x="45.6372%" y="613" width="0.0147%" height="15" fill="rgb(222,104,33)" fg:x="102504" fg:w="33"/><text x="45.8872%" y="623.50"></text></g><g><title>native_write_msr (33 samples, 0.01%)</title><rect x="45.6372%" y="597" width="0.0147%" height="15" fill="rgb(248,49,16)" fg:x="102504" fg:w="33"/><text x="45.8872%" y="607.50"></text></g><g><title>__libc_fork (42 samples, 0.02%)</title><rect x="45.6337%" y="709" width="0.0187%" height="15" fill="rgb(232,198,41)" fg:x="102496" fg:w="42"/><text x="45.8837%" y="719.50"></text></g><g><title>arch_fork (42 samples, 0.02%)</title><rect x="45.6337%" y="693" width="0.0187%" height="15" fill="rgb(214,125,3)" fg:x="102496" fg:w="42"/><text x="45.8837%" y="703.50"></text></g><g><title>ret_from_fork (40 samples, 0.02%)</title><rect x="45.6346%" y="677" width="0.0178%" height="15" fill="rgb(229,220,28)" fg:x="102498" fg:w="40"/><text x="45.8846%" y="687.50"></text></g><g><title>schedule_tail (39 samples, 0.02%)</title><rect x="45.6350%" y="661" width="0.0174%" height="15" fill="rgb(222,64,37)" fg:x="102499" fg:w="39"/><text x="45.8850%" y="671.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="45.6359%" y="645" width="0.0165%" height="15" fill="rgb(249,184,13)" fg:x="102501" fg:w="37"/><text x="45.8859%" y="655.50"></text></g><g><title>make_child (44 samples, 0.02%)</title><rect x="45.6337%" y="725" width="0.0196%" height="15" fill="rgb(252,176,6)" fg:x="102496" fg:w="44"/><text x="45.8837%" y="735.50"></text></g><g><title>execute_command (76 samples, 0.03%)</title><rect x="45.6199%" y="757" width="0.0338%" height="15" fill="rgb(228,153,7)" fg:x="102465" fg:w="76"/><text x="45.8699%" y="767.50"></text></g><g><title>execute_command_internal (75 samples, 0.03%)</title><rect x="45.6203%" y="741" width="0.0334%" height="15" fill="rgb(242,193,5)" fg:x="102466" fg:w="75"/><text x="45.8703%" y="751.50"></text></g><g><title>[bash] (95 samples, 0.04%)</title><rect x="45.6190%" y="773" width="0.0423%" height="15" fill="rgb(232,140,9)" fg:x="102463" fg:w="95"/><text x="45.8690%" y="783.50"></text></g><g><title>copy_command (23 samples, 0.01%)</title><rect x="45.6689%" y="373" width="0.0102%" height="15" fill="rgb(213,222,16)" fg:x="102575" fg:w="23"/><text x="45.9189%" y="383.50"></text></g><g><title>copy_command (23 samples, 0.01%)</title><rect x="45.6689%" y="357" width="0.0102%" height="15" fill="rgb(222,75,50)" fg:x="102575" fg:w="23"/><text x="45.9189%" y="367.50"></text></g><g><title>copy_command (24 samples, 0.01%)</title><rect x="45.6689%" y="389" width="0.0107%" height="15" fill="rgb(205,180,2)" fg:x="102575" fg:w="24"/><text x="45.9189%" y="399.50"></text></g><g><title>copy_command (25 samples, 0.01%)</title><rect x="45.6689%" y="405" width="0.0111%" height="15" fill="rgb(216,34,7)" fg:x="102575" fg:w="25"/><text x="45.9189%" y="415.50"></text></g><g><title>copy_command (26 samples, 0.01%)</title><rect x="45.6689%" y="437" width="0.0116%" height="15" fill="rgb(253,16,32)" fg:x="102575" fg:w="26"/><text x="45.9189%" y="447.50"></text></g><g><title>copy_command (26 samples, 0.01%)</title><rect x="45.6689%" y="421" width="0.0116%" height="15" fill="rgb(208,97,28)" fg:x="102575" fg:w="26"/><text x="45.9189%" y="431.50"></text></g><g><title>copy_command (28 samples, 0.01%)</title><rect x="45.6689%" y="485" width="0.0125%" height="15" fill="rgb(225,92,11)" fg:x="102575" fg:w="28"/><text x="45.9189%" y="495.50"></text></g><g><title>copy_command (28 samples, 0.01%)</title><rect x="45.6689%" y="469" width="0.0125%" height="15" fill="rgb(243,38,12)" fg:x="102575" fg:w="28"/><text x="45.9189%" y="479.50"></text></g><g><title>copy_command (28 samples, 0.01%)</title><rect x="45.6689%" y="453" width="0.0125%" height="15" fill="rgb(208,139,16)" fg:x="102575" fg:w="28"/><text x="45.9189%" y="463.50"></text></g><g><title>copy_command (30 samples, 0.01%)</title><rect x="45.6689%" y="517" width="0.0134%" height="15" fill="rgb(227,24,9)" fg:x="102575" fg:w="30"/><text x="45.9189%" y="527.50"></text></g><g><title>copy_command (30 samples, 0.01%)</title><rect x="45.6689%" y="501" width="0.0134%" height="15" fill="rgb(206,62,11)" fg:x="102575" fg:w="30"/><text x="45.9189%" y="511.50"></text></g><g><title>copy_command (32 samples, 0.01%)</title><rect x="45.6684%" y="581" width="0.0142%" height="15" fill="rgb(228,134,27)" fg:x="102574" fg:w="32"/><text x="45.9184%" y="591.50"></text></g><g><title>copy_command (32 samples, 0.01%)</title><rect x="45.6684%" y="565" width="0.0142%" height="15" fill="rgb(205,55,33)" fg:x="102574" fg:w="32"/><text x="45.9184%" y="575.50"></text></g><g><title>copy_command (32 samples, 0.01%)</title><rect x="45.6684%" y="549" width="0.0142%" height="15" fill="rgb(243,75,43)" fg:x="102574" fg:w="32"/><text x="45.9184%" y="559.50"></text></g><g><title>copy_command (32 samples, 0.01%)</title><rect x="45.6684%" y="533" width="0.0142%" height="15" fill="rgb(223,27,42)" fg:x="102574" fg:w="32"/><text x="45.9184%" y="543.50"></text></g><g><title>copy_command (33 samples, 0.01%)</title><rect x="45.6684%" y="597" width="0.0147%" height="15" fill="rgb(232,189,33)" fg:x="102574" fg:w="33"/><text x="45.9184%" y="607.50"></text></g><g><title>copy_command (44 samples, 0.02%)</title><rect x="45.6644%" y="613" width="0.0196%" height="15" fill="rgb(210,9,39)" fg:x="102565" fg:w="44"/><text x="45.9144%" y="623.50"></text></g><g><title>copy_command (47 samples, 0.02%)</title><rect x="45.6640%" y="629" width="0.0209%" height="15" fill="rgb(242,85,26)" fg:x="102564" fg:w="47"/><text x="45.9140%" y="639.50"></text></g><g><title>copy_command (48 samples, 0.02%)</title><rect x="45.6640%" y="645" width="0.0214%" height="15" fill="rgb(248,44,4)" fg:x="102564" fg:w="48"/><text x="45.9140%" y="655.50"></text></g><g><title>copy_command (55 samples, 0.02%)</title><rect x="45.6617%" y="709" width="0.0245%" height="15" fill="rgb(250,96,46)" fg:x="102559" fg:w="55"/><text x="45.9117%" y="719.50"></text></g><g><title>copy_command (54 samples, 0.02%)</title><rect x="45.6622%" y="693" width="0.0240%" height="15" fill="rgb(229,116,26)" fg:x="102560" fg:w="54"/><text x="45.9122%" y="703.50"></text></g><g><title>copy_command (53 samples, 0.02%)</title><rect x="45.6626%" y="677" width="0.0236%" height="15" fill="rgb(246,94,34)" fg:x="102561" fg:w="53"/><text x="45.9126%" y="687.50"></text></g><g><title>copy_command (51 samples, 0.02%)</title><rect x="45.6635%" y="661" width="0.0227%" height="15" fill="rgb(251,73,21)" fg:x="102563" fg:w="51"/><text x="45.9135%" y="671.50"></text></g><g><title>bind_function (60 samples, 0.03%)</title><rect x="45.6613%" y="773" width="0.0267%" height="15" fill="rgb(254,121,25)" fg:x="102558" fg:w="60"/><text x="45.9113%" y="783.50"></text></g><g><title>copy_command (60 samples, 0.03%)</title><rect x="45.6613%" y="757" width="0.0267%" height="15" fill="rgb(215,161,49)" fg:x="102558" fg:w="60"/><text x="45.9113%" y="767.50"></text></g><g><title>copy_command (60 samples, 0.03%)</title><rect x="45.6613%" y="741" width="0.0267%" height="15" fill="rgb(221,43,13)" fg:x="102558" fg:w="60"/><text x="45.9113%" y="751.50"></text></g><g><title>copy_command (60 samples, 0.03%)</title><rect x="45.6613%" y="725" width="0.0267%" height="15" fill="rgb(249,5,37)" fg:x="102558" fg:w="60"/><text x="45.9113%" y="735.50"></text></g><g><title>copy_command (24 samples, 0.01%)</title><rect x="45.6960%" y="453" width="0.0107%" height="15" fill="rgb(226,25,44)" fg:x="102636" fg:w="24"/><text x="45.9460%" y="463.50"></text></g><g><title>copy_command (24 samples, 0.01%)</title><rect x="45.6960%" y="437" width="0.0107%" height="15" fill="rgb(238,189,16)" fg:x="102636" fg:w="24"/><text x="45.9460%" y="447.50"></text></g><g><title>copy_command (24 samples, 0.01%)</title><rect x="45.6960%" y="421" width="0.0107%" height="15" fill="rgb(251,186,8)" fg:x="102636" fg:w="24"/><text x="45.9460%" y="431.50"></text></g><g><title>copy_command (24 samples, 0.01%)</title><rect x="45.6960%" y="405" width="0.0107%" height="15" fill="rgb(254,34,31)" fg:x="102636" fg:w="24"/><text x="45.9460%" y="415.50"></text></g><g><title>copy_command (26 samples, 0.01%)</title><rect x="45.6960%" y="469" width="0.0116%" height="15" fill="rgb(225,215,27)" fg:x="102636" fg:w="26"/><text x="45.9460%" y="479.50"></text></g><g><title>copy_command (27 samples, 0.01%)</title><rect x="45.6960%" y="501" width="0.0120%" height="15" fill="rgb(221,192,48)" fg:x="102636" fg:w="27"/><text x="45.9460%" y="511.50"></text></g><g><title>copy_command (27 samples, 0.01%)</title><rect x="45.6960%" y="485" width="0.0120%" height="15" fill="rgb(219,137,20)" fg:x="102636" fg:w="27"/><text x="45.9460%" y="495.50"></text></g><g><title>copy_command (28 samples, 0.01%)</title><rect x="45.6960%" y="517" width="0.0125%" height="15" fill="rgb(219,84,11)" fg:x="102636" fg:w="28"/><text x="45.9460%" y="527.50"></text></g><g><title>copy_command (31 samples, 0.01%)</title><rect x="45.6956%" y="533" width="0.0138%" height="15" fill="rgb(224,10,23)" fg:x="102635" fg:w="31"/><text x="45.9456%" y="543.50"></text></g><g><title>copy_command (32 samples, 0.01%)</title><rect x="45.6956%" y="549" width="0.0142%" height="15" fill="rgb(248,22,39)" fg:x="102635" fg:w="32"/><text x="45.9456%" y="559.50"></text></g><g><title>copy_command (33 samples, 0.01%)</title><rect x="45.6956%" y="565" width="0.0147%" height="15" fill="rgb(212,154,20)" fg:x="102635" fg:w="33"/><text x="45.9456%" y="575.50"></text></g><g><title>copy_command (34 samples, 0.02%)</title><rect x="45.6956%" y="581" width="0.0151%" height="15" fill="rgb(236,199,50)" fg:x="102635" fg:w="34"/><text x="45.9456%" y="591.50"></text></g><g><title>copy_command (37 samples, 0.02%)</title><rect x="45.6956%" y="597" width="0.0165%" height="15" fill="rgb(211,9,17)" fg:x="102635" fg:w="37"/><text x="45.9456%" y="607.50"></text></g><g><title>copy_command (51 samples, 0.02%)</title><rect x="45.6898%" y="677" width="0.0227%" height="15" fill="rgb(243,216,36)" fg:x="102622" fg:w="51"/><text x="45.9398%" y="687.50"></text></g><g><title>copy_command (48 samples, 0.02%)</title><rect x="45.6911%" y="661" width="0.0214%" height="15" fill="rgb(250,2,10)" fg:x="102625" fg:w="48"/><text x="45.9411%" y="671.50"></text></g><g><title>copy_command (48 samples, 0.02%)</title><rect x="45.6911%" y="645" width="0.0214%" height="15" fill="rgb(226,50,48)" fg:x="102625" fg:w="48"/><text x="45.9411%" y="655.50"></text></g><g><title>copy_command (47 samples, 0.02%)</title><rect x="45.6916%" y="629" width="0.0209%" height="15" fill="rgb(243,81,16)" fg:x="102626" fg:w="47"/><text x="45.9416%" y="639.50"></text></g><g><title>copy_command (47 samples, 0.02%)</title><rect x="45.6916%" y="613" width="0.0209%" height="15" fill="rgb(250,14,2)" fg:x="102626" fg:w="47"/><text x="45.9416%" y="623.50"></text></g><g><title>copy_function_def_contents (56 samples, 0.02%)</title><rect x="45.6889%" y="773" width="0.0249%" height="15" fill="rgb(233,135,29)" fg:x="102620" fg:w="56"/><text x="45.9389%" y="783.50"></text></g><g><title>copy_command (56 samples, 0.02%)</title><rect x="45.6889%" y="757" width="0.0249%" height="15" fill="rgb(224,64,43)" fg:x="102620" fg:w="56"/><text x="45.9389%" y="767.50"></text></g><g><title>copy_command (56 samples, 0.02%)</title><rect x="45.6889%" y="741" width="0.0249%" height="15" fill="rgb(238,84,13)" fg:x="102620" fg:w="56"/><text x="45.9389%" y="751.50"></text></g><g><title>copy_command (56 samples, 0.02%)</title><rect x="45.6889%" y="725" width="0.0249%" height="15" fill="rgb(253,48,26)" fg:x="102620" fg:w="56"/><text x="45.9389%" y="735.50"></text></g><g><title>copy_command (54 samples, 0.02%)</title><rect x="45.6898%" y="709" width="0.0240%" height="15" fill="rgb(205,223,31)" fg:x="102622" fg:w="54"/><text x="45.9398%" y="719.50"></text></g><g><title>copy_command (54 samples, 0.02%)</title><rect x="45.6898%" y="693" width="0.0240%" height="15" fill="rgb(221,41,32)" fg:x="102622" fg:w="54"/><text x="45.9398%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.02%)</title><rect x="45.7299%" y="597" width="0.0214%" height="15" fill="rgb(213,158,31)" fg:x="102712" fg:w="48"/><text x="45.9799%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (47 samples, 0.02%)</title><rect x="45.7303%" y="581" width="0.0209%" height="15" fill="rgb(245,126,43)" fg:x="102713" fg:w="47"/><text x="45.9803%" y="591.50"></text></g><g><title>native_write_msr (47 samples, 0.02%)</title><rect x="45.7303%" y="565" width="0.0209%" height="15" fill="rgb(227,7,22)" fg:x="102713" fg:w="47"/><text x="45.9803%" y="575.50"></text></g><g><title>__libc_fork (61 samples, 0.03%)</title><rect x="45.7254%" y="677" width="0.0272%" height="15" fill="rgb(252,90,44)" fg:x="102702" fg:w="61"/><text x="45.9754%" y="687.50"></text></g><g><title>arch_fork (61 samples, 0.03%)</title><rect x="45.7254%" y="661" width="0.0272%" height="15" fill="rgb(253,91,0)" fg:x="102702" fg:w="61"/><text x="45.9754%" y="671.50"></text></g><g><title>ret_from_fork (55 samples, 0.02%)</title><rect x="45.7281%" y="645" width="0.0245%" height="15" fill="rgb(252,175,49)" fg:x="102708" fg:w="55"/><text x="45.9781%" y="655.50"></text></g><g><title>schedule_tail (55 samples, 0.02%)</title><rect x="45.7281%" y="629" width="0.0245%" height="15" fill="rgb(246,150,1)" fg:x="102708" fg:w="55"/><text x="45.9781%" y="639.50"></text></g><g><title>finish_task_switch (52 samples, 0.02%)</title><rect x="45.7294%" y="613" width="0.0232%" height="15" fill="rgb(241,192,25)" fg:x="102711" fg:w="52"/><text x="45.9794%" y="623.50"></text></g><g><title>make_child (68 samples, 0.03%)</title><rect x="45.7254%" y="693" width="0.0303%" height="15" fill="rgb(239,187,11)" fg:x="102702" fg:w="68"/><text x="45.9754%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.02%)</title><rect x="45.7664%" y="565" width="0.0240%" height="15" fill="rgb(218,202,51)" fg:x="102794" fg:w="54"/><text x="46.0164%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.02%)</title><rect x="45.7664%" y="549" width="0.0240%" height="15" fill="rgb(225,176,8)" fg:x="102794" fg:w="54"/><text x="46.0164%" y="559.50"></text></g><g><title>native_write_msr (54 samples, 0.02%)</title><rect x="45.7664%" y="533" width="0.0240%" height="15" fill="rgb(219,122,41)" fg:x="102794" fg:w="54"/><text x="46.0164%" y="543.50"></text></g><g><title>__libc_fork (68 samples, 0.03%)</title><rect x="45.7606%" y="645" width="0.0303%" height="15" fill="rgb(248,140,20)" fg:x="102781" fg:w="68"/><text x="46.0106%" y="655.50"></text></g><g><title>arch_fork (67 samples, 0.03%)</title><rect x="45.7610%" y="629" width="0.0298%" height="15" fill="rgb(245,41,37)" fg:x="102782" fg:w="67"/><text x="46.0110%" y="639.50"></text></g><g><title>ret_from_fork (61 samples, 0.03%)</title><rect x="45.7637%" y="613" width="0.0272%" height="15" fill="rgb(235,82,39)" fg:x="102788" fg:w="61"/><text x="46.0137%" y="623.50"></text></g><g><title>schedule_tail (61 samples, 0.03%)</title><rect x="45.7637%" y="597" width="0.0272%" height="15" fill="rgb(230,108,42)" fg:x="102788" fg:w="61"/><text x="46.0137%" y="607.50"></text></g><g><title>finish_task_switch (57 samples, 0.03%)</title><rect x="45.7655%" y="581" width="0.0254%" height="15" fill="rgb(215,150,50)" fg:x="102792" fg:w="57"/><text x="46.0155%" y="591.50"></text></g><g><title>make_child (71 samples, 0.03%)</title><rect x="45.7597%" y="661" width="0.0316%" height="15" fill="rgb(233,212,5)" fg:x="102779" fg:w="71"/><text x="46.0097%" y="671.50"></text></g><g><title>parse_and_execute (102 samples, 0.05%)</title><rect x="45.7557%" y="693" width="0.0454%" height="15" fill="rgb(245,80,22)" fg:x="102770" fg:w="102"/><text x="46.0057%" y="703.50"></text></g><g><title>execute_command_internal (101 samples, 0.04%)</title><rect x="45.7561%" y="677" width="0.0450%" height="15" fill="rgb(238,129,16)" fg:x="102771" fg:w="101"/><text x="46.0061%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.02%)</title><rect x="45.8038%" y="517" width="0.0245%" height="15" fill="rgb(240,19,0)" fg:x="102878" fg:w="55"/><text x="46.0538%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.02%)</title><rect x="45.8038%" y="501" width="0.0245%" height="15" fill="rgb(232,42,35)" fg:x="102878" fg:w="55"/><text x="46.0538%" y="511.50"></text></g><g><title>native_write_msr (55 samples, 0.02%)</title><rect x="45.8038%" y="485" width="0.0245%" height="15" fill="rgb(223,130,24)" fg:x="102878" fg:w="55"/><text x="46.0538%" y="495.50"></text></g><g><title>do_syscall_64 (58 samples, 0.03%)</title><rect x="45.8029%" y="645" width="0.0258%" height="15" fill="rgb(237,16,22)" fg:x="102876" fg:w="58"/><text x="46.0529%" y="655.50"></text></g><g><title>ksys_read (58 samples, 0.03%)</title><rect x="45.8029%" y="629" width="0.0258%" height="15" fill="rgb(248,192,20)" fg:x="102876" fg:w="58"/><text x="46.0529%" y="639.50"></text></g><g><title>vfs_read (58 samples, 0.03%)</title><rect x="45.8029%" y="613" width="0.0258%" height="15" fill="rgb(233,167,2)" fg:x="102876" fg:w="58"/><text x="46.0529%" y="623.50"></text></g><g><title>new_sync_read (58 samples, 0.03%)</title><rect x="45.8029%" y="597" width="0.0258%" height="15" fill="rgb(252,71,44)" fg:x="102876" fg:w="58"/><text x="46.0529%" y="607.50"></text></g><g><title>pipe_read (58 samples, 0.03%)</title><rect x="45.8029%" y="581" width="0.0258%" height="15" fill="rgb(238,37,47)" fg:x="102876" fg:w="58"/><text x="46.0529%" y="591.50"></text></g><g><title>schedule (56 samples, 0.02%)</title><rect x="45.8038%" y="565" width="0.0249%" height="15" fill="rgb(214,202,54)" fg:x="102878" fg:w="56"/><text x="46.0538%" y="575.50"></text></g><g><title>__schedule (56 samples, 0.02%)</title><rect x="45.8038%" y="549" width="0.0249%" height="15" fill="rgb(254,165,40)" fg:x="102878" fg:w="56"/><text x="46.0538%" y="559.50"></text></g><g><title>finish_task_switch (56 samples, 0.02%)</title><rect x="45.8038%" y="533" width="0.0249%" height="15" fill="rgb(246,173,38)" fg:x="102878" fg:w="56"/><text x="46.0538%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.03%)</title><rect x="45.8029%" y="661" width="0.0267%" height="15" fill="rgb(215,3,27)" fg:x="102876" fg:w="60"/><text x="46.0529%" y="671.50"></text></g><g><title>expand_word_leave_quoted (244 samples, 0.11%)</title><rect x="45.7223%" y="741" width="0.1086%" height="15" fill="rgb(239,169,51)" fg:x="102695" fg:w="244"/><text x="45.9723%" y="751.50"></text></g><g><title>[bash] (244 samples, 0.11%)</title><rect x="45.7223%" y="725" width="0.1086%" height="15" fill="rgb(212,5,25)" fg:x="102695" fg:w="244"/><text x="45.9723%" y="735.50"></text></g><g><title>command_substitute (244 samples, 0.11%)</title><rect x="45.7223%" y="709" width="0.1086%" height="15" fill="rgb(243,45,17)" fg:x="102695" fg:w="244"/><text x="45.9723%" y="719.50"></text></g><g><title>zread (64 samples, 0.03%)</title><rect x="45.8024%" y="693" width="0.0285%" height="15" fill="rgb(242,97,9)" fg:x="102875" fg:w="64"/><text x="46.0524%" y="703.50"></text></g><g><title>__GI___libc_read (64 samples, 0.03%)</title><rect x="45.8024%" y="677" width="0.0285%" height="15" fill="rgb(228,71,31)" fg:x="102875" fg:w="64"/><text x="46.0524%" y="687.50"></text></g><g><title>execute_command (272 samples, 0.12%)</title><rect x="45.7138%" y="773" width="0.1211%" height="15" fill="rgb(252,184,16)" fg:x="102676" fg:w="272"/><text x="45.9638%" y="783.50"></text></g><g><title>execute_command_internal (272 samples, 0.12%)</title><rect x="45.7138%" y="757" width="0.1211%" height="15" fill="rgb(236,169,46)" fg:x="102676" fg:w="272"/><text x="45.9638%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (35 samples, 0.02%)</title><rect x="45.8434%" y="581" width="0.0156%" height="15" fill="rgb(207,17,47)" fg:x="102967" fg:w="35"/><text x="46.0934%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (35 samples, 0.02%)</title><rect x="45.8434%" y="565" width="0.0156%" height="15" fill="rgb(206,201,28)" fg:x="102967" fg:w="35"/><text x="46.0934%" y="575.50"></text></g><g><title>native_write_msr (35 samples, 0.02%)</title><rect x="45.8434%" y="549" width="0.0156%" height="15" fill="rgb(224,184,23)" fg:x="102967" fg:w="35"/><text x="46.0934%" y="559.50"></text></g><g><title>arch_fork (43 samples, 0.02%)</title><rect x="45.8403%" y="645" width="0.0191%" height="15" fill="rgb(208,139,48)" fg:x="102960" fg:w="43"/><text x="46.0903%" y="655.50"></text></g><g><title>ret_from_fork (42 samples, 0.02%)</title><rect x="45.8407%" y="629" width="0.0187%" height="15" fill="rgb(208,130,10)" fg:x="102961" fg:w="42"/><text x="46.0907%" y="639.50"></text></g><g><title>schedule_tail (42 samples, 0.02%)</title><rect x="45.8407%" y="613" width="0.0187%" height="15" fill="rgb(211,213,45)" fg:x="102961" fg:w="42"/><text x="46.0907%" y="623.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="45.8429%" y="597" width="0.0165%" height="15" fill="rgb(235,100,30)" fg:x="102966" fg:w="37"/><text x="46.0929%" y="607.50"></text></g><g><title>__libc_fork (44 samples, 0.02%)</title><rect x="45.8403%" y="661" width="0.0196%" height="15" fill="rgb(206,144,31)" fg:x="102960" fg:w="44"/><text x="46.0903%" y="671.50"></text></g><g><title>make_child (47 samples, 0.02%)</title><rect x="45.8398%" y="677" width="0.0209%" height="15" fill="rgb(224,200,26)" fg:x="102959" fg:w="47"/><text x="46.0898%" y="687.50"></text></g><g><title>__GI_execve (23 samples, 0.01%)</title><rect x="45.8661%" y="565" width="0.0102%" height="15" fill="rgb(247,104,53)" fg:x="103018" fg:w="23"/><text x="46.1161%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="45.8661%" y="549" width="0.0102%" height="15" fill="rgb(220,14,17)" fg:x="103018" fg:w="23"/><text x="46.1161%" y="559.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="45.8661%" y="533" width="0.0102%" height="15" fill="rgb(230,140,40)" fg:x="103018" fg:w="23"/><text x="46.1161%" y="543.50"></text></g><g><title>__x64_sys_execve (23 samples, 0.01%)</title><rect x="45.8661%" y="517" width="0.0102%" height="15" fill="rgb(229,2,41)" fg:x="103018" fg:w="23"/><text x="46.1161%" y="527.50"></text></g><g><title>do_execveat_common (23 samples, 0.01%)</title><rect x="45.8661%" y="501" width="0.0102%" height="15" fill="rgb(232,89,16)" fg:x="103018" fg:w="23"/><text x="46.1161%" y="511.50"></text></g><g><title>shell_execve (24 samples, 0.01%)</title><rect x="45.8661%" y="581" width="0.0107%" height="15" fill="rgb(247,59,52)" fg:x="103018" fg:w="24"/><text x="46.1161%" y="591.50"></text></g><g><title>[bash] (29 samples, 0.01%)</title><rect x="45.8643%" y="597" width="0.0129%" height="15" fill="rgb(226,110,21)" fg:x="103014" fg:w="29"/><text x="46.1143%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (112 samples, 0.05%)</title><rect x="45.8897%" y="501" width="0.0499%" height="15" fill="rgb(224,176,43)" fg:x="103071" fg:w="112"/><text x="46.1397%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.05%)</title><rect x="45.8897%" y="485" width="0.0499%" height="15" fill="rgb(221,73,6)" fg:x="103071" fg:w="112"/><text x="46.1397%" y="495.50"></text></g><g><title>native_write_msr (112 samples, 0.05%)</title><rect x="45.8897%" y="469" width="0.0499%" height="15" fill="rgb(232,78,19)" fg:x="103071" fg:w="112"/><text x="46.1397%" y="479.50"></text></g><g><title>schedule_tail (121 samples, 0.05%)</title><rect x="45.8861%" y="533" width="0.0539%" height="15" fill="rgb(233,112,48)" fg:x="103063" fg:w="121"/><text x="46.1361%" y="543.50"></text></g><g><title>finish_task_switch (115 samples, 0.05%)</title><rect x="45.8888%" y="517" width="0.0512%" height="15" fill="rgb(243,131,47)" fg:x="103069" fg:w="115"/><text x="46.1388%" y="527.50"></text></g><g><title>arch_fork (132 samples, 0.06%)</title><rect x="45.8817%" y="565" width="0.0588%" height="15" fill="rgb(226,51,1)" fg:x="103053" fg:w="132"/><text x="46.1317%" y="575.50"></text></g><g><title>ret_from_fork (122 samples, 0.05%)</title><rect x="45.8861%" y="549" width="0.0543%" height="15" fill="rgb(247,58,7)" fg:x="103063" fg:w="122"/><text x="46.1361%" y="559.50"></text></g><g><title>__libc_fork (136 samples, 0.06%)</title><rect x="45.8812%" y="581" width="0.0606%" height="15" fill="rgb(209,7,32)" fg:x="103052" fg:w="136"/><text x="46.1312%" y="591.50"></text></g><g><title>make_child (142 samples, 0.06%)</title><rect x="45.8812%" y="597" width="0.0632%" height="15" fill="rgb(209,39,41)" fg:x="103052" fg:w="142"/><text x="46.1312%" y="607.50"></text></g><g><title>parse_and_execute (211 samples, 0.09%)</title><rect x="45.8608%" y="677" width="0.0939%" height="15" fill="rgb(226,182,46)" fg:x="103006" fg:w="211"/><text x="46.1108%" y="687.50"></text></g><g><title>execute_command_internal (210 samples, 0.09%)</title><rect x="45.8612%" y="661" width="0.0935%" height="15" fill="rgb(230,219,10)" fg:x="103007" fg:w="210"/><text x="46.1112%" y="671.50"></text></g><g><title>[bash] (210 samples, 0.09%)</title><rect x="45.8612%" y="645" width="0.0935%" height="15" fill="rgb(227,175,30)" fg:x="103007" fg:w="210"/><text x="46.1112%" y="655.50"></text></g><g><title>[bash] (210 samples, 0.09%)</title><rect x="45.8612%" y="629" width="0.0935%" height="15" fill="rgb(217,2,50)" fg:x="103007" fg:w="210"/><text x="46.1112%" y="639.50"></text></g><g><title>execute_command_internal (205 samples, 0.09%)</title><rect x="45.8634%" y="613" width="0.0913%" height="15" fill="rgb(229,160,0)" fg:x="103012" fg:w="205"/><text x="46.1134%" y="623.50"></text></g><g><title>command_substitute (267 samples, 0.12%)</title><rect x="45.8380%" y="693" width="0.1189%" height="15" fill="rgb(207,78,37)" fg:x="102955" fg:w="267"/><text x="46.0880%" y="703.50"></text></g><g><title>[bash] (275 samples, 0.12%)</title><rect x="45.8354%" y="709" width="0.1224%" height="15" fill="rgb(225,57,0)" fg:x="102949" fg:w="275"/><text x="46.0854%" y="719.50"></text></g><g><title>[bash] (276 samples, 0.12%)</title><rect x="45.8354%" y="725" width="0.1229%" height="15" fill="rgb(232,154,2)" fg:x="102949" fg:w="276"/><text x="46.0854%" y="735.50"></text></g><g><title>[bash] (280 samples, 0.12%)</title><rect x="45.8349%" y="741" width="0.1247%" height="15" fill="rgb(241,212,25)" fg:x="102948" fg:w="280"/><text x="46.0849%" y="751.50"></text></g><g><title>expand_words (285 samples, 0.13%)</title><rect x="45.8349%" y="773" width="0.1269%" height="15" fill="rgb(226,69,20)" fg:x="102948" fg:w="285"/><text x="46.0849%" y="783.50"></text></g><g><title>[bash] (285 samples, 0.13%)</title><rect x="45.8349%" y="757" width="0.1269%" height="15" fill="rgb(247,184,54)" fg:x="102948" fg:w="285"/><text x="46.0849%" y="767.50"></text></g><g><title>execute_command (775 samples, 0.35%)</title><rect x="45.6181%" y="805" width="0.3450%" height="15" fill="rgb(210,145,0)" fg:x="102461" fg:w="775"/><text x="45.8681%" y="815.50"></text></g><g><title>execute_command_internal (775 samples, 0.35%)</title><rect x="45.6181%" y="789" width="0.3450%" height="15" fill="rgb(253,82,12)" fg:x="102461" fg:w="775"/><text x="45.8681%" y="799.50"></text></g><g><title>[bash] (40 samples, 0.02%)</title><rect x="46.0584%" y="725" width="0.0178%" height="15" fill="rgb(245,42,11)" fg:x="103450" fg:w="40"/><text x="46.3084%" y="735.50"></text></g><g><title>buffered_getchar (52 samples, 0.02%)</title><rect x="46.0776%" y="725" width="0.0232%" height="15" fill="rgb(219,147,32)" fg:x="103493" fg:w="52"/><text x="46.3276%" y="735.50"></text></g><g><title>[bash] (201 samples, 0.09%)</title><rect x="46.0126%" y="741" width="0.0895%" height="15" fill="rgb(246,12,7)" fg:x="103347" fg:w="201"/><text x="46.2626%" y="751.50"></text></g><g><title>[bash] (328 samples, 0.15%)</title><rect x="45.9827%" y="757" width="0.1460%" height="15" fill="rgb(243,50,9)" fg:x="103280" fg:w="328"/><text x="46.2327%" y="767.50"></text></g><g><title>reader_loop (1,191 samples, 0.53%)</title><rect x="45.6088%" y="821" width="0.5303%" height="15" fill="rgb(219,149,6)" fg:x="102440" fg:w="1191"/><text x="45.8588%" y="831.50"></text></g><g><title>read_command (395 samples, 0.18%)</title><rect x="45.9632%" y="805" width="0.1759%" height="15" fill="rgb(241,51,42)" fg:x="103236" fg:w="395"/><text x="46.2132%" y="815.50"></text></g><g><title>parse_command (395 samples, 0.18%)</title><rect x="45.9632%" y="789" width="0.1759%" height="15" fill="rgb(226,128,27)" fg:x="103236" fg:w="395"/><text x="46.2132%" y="799.50"></text></g><g><title>yyparse (395 samples, 0.18%)</title><rect x="45.9632%" y="773" width="0.1759%" height="15" fill="rgb(244,144,4)" fg:x="103236" fg:w="395"/><text x="46.2132%" y="783.50"></text></g><g><title>__libc_start_main (1,207 samples, 0.54%)</title><rect x="45.6047%" y="853" width="0.5374%" height="15" fill="rgb(221,4,13)" fg:x="102431" fg:w="1207"/><text x="45.8547%" y="863.50"></text></g><g><title>main (1,207 samples, 0.54%)</title><rect x="45.6047%" y="837" width="0.5374%" height="15" fill="rgb(208,170,28)" fg:x="102431" fg:w="1207"/><text x="45.8547%" y="847.50"></text></g><g><title>_start (1,224 samples, 0.54%)</title><rect x="45.6047%" y="869" width="0.5450%" height="15" fill="rgb(226,131,13)" fg:x="102431" fg:w="1224"/><text x="45.8547%" y="879.50"></text></g><g><title>asm_exc_page_fault (27 samples, 0.01%)</title><rect x="46.1497%" y="869" width="0.0120%" height="15" fill="rgb(215,72,41)" fg:x="103655" fg:w="27"/><text x="46.3997%" y="879.50"></text></g><g><title>mmput (29 samples, 0.01%)</title><rect x="46.1662%" y="789" width="0.0129%" height="15" fill="rgb(243,108,20)" fg:x="103692" fg:w="29"/><text x="46.4162%" y="799.50"></text></g><g><title>exit_mmap (28 samples, 0.01%)</title><rect x="46.1666%" y="773" width="0.0125%" height="15" fill="rgb(230,189,17)" fg:x="103693" fg:w="28"/><text x="46.4166%" y="783.50"></text></g><g><title>libtool (1,587 samples, 0.71%)</title><rect x="45.4730%" y="885" width="0.7066%" height="15" fill="rgb(220,50,17)" fg:x="102135" fg:w="1587"/><text x="45.7230%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.02%)</title><rect x="46.1622%" y="869" width="0.0174%" height="15" fill="rgb(248,152,48)" fg:x="103683" fg:w="39"/><text x="46.4122%" y="879.50"></text></g><g><title>do_syscall_64 (39 samples, 0.02%)</title><rect x="46.1622%" y="853" width="0.0174%" height="15" fill="rgb(244,91,11)" fg:x="103683" fg:w="39"/><text x="46.4122%" y="863.50"></text></g><g><title>__x64_sys_exit_group (30 samples, 0.01%)</title><rect x="46.1662%" y="837" width="0.0134%" height="15" fill="rgb(220,157,5)" fg:x="103692" fg:w="30"/><text x="46.4162%" y="847.50"></text></g><g><title>do_group_exit (30 samples, 0.01%)</title><rect x="46.1662%" y="821" width="0.0134%" height="15" fill="rgb(253,137,8)" fg:x="103692" fg:w="30"/><text x="46.4162%" y="831.50"></text></g><g><title>do_exit (30 samples, 0.01%)</title><rect x="46.1662%" y="805" width="0.0134%" height="15" fill="rgb(217,137,51)" fg:x="103692" fg:w="30"/><text x="46.4162%" y="815.50"></text></g><g><title>ClearSignalMask (27 samples, 0.01%)</title><rect x="46.2205%" y="789" width="0.0120%" height="15" fill="rgb(218,209,53)" fg:x="103814" fg:w="27"/><text x="46.4705%" y="799.50"></text></g><g><title>bprm_execve (37 samples, 0.02%)</title><rect x="46.2347%" y="693" width="0.0165%" height="15" fill="rgb(249,137,25)" fg:x="103846" fg:w="37"/><text x="46.4847%" y="703.50"></text></g><g><title>__execvpe_common (48 samples, 0.02%)</title><rect x="46.2334%" y="789" width="0.0214%" height="15" fill="rgb(239,155,26)" fg:x="103843" fg:w="48"/><text x="46.4834%" y="799.50"></text></g><g><title>__GI_execve (46 samples, 0.02%)</title><rect x="46.2343%" y="773" width="0.0205%" height="15" fill="rgb(227,85,46)" fg:x="103845" fg:w="46"/><text x="46.4843%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="46.2343%" y="757" width="0.0205%" height="15" fill="rgb(251,107,43)" fg:x="103845" fg:w="46"/><text x="46.4843%" y="767.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="46.2343%" y="741" width="0.0205%" height="15" fill="rgb(234,170,33)" fg:x="103845" fg:w="46"/><text x="46.4843%" y="751.50"></text></g><g><title>__x64_sys_execve (46 samples, 0.02%)</title><rect x="46.2343%" y="725" width="0.0205%" height="15" fill="rgb(206,29,35)" fg:x="103845" fg:w="46"/><text x="46.4843%" y="735.50"></text></g><g><title>do_execveat_common (46 samples, 0.02%)</title><rect x="46.2343%" y="709" width="0.0205%" height="15" fill="rgb(227,138,25)" fg:x="103845" fg:w="46"/><text x="46.4843%" y="719.50"></text></g><g><title>dup_mm (41 samples, 0.02%)</title><rect x="46.2597%" y="677" width="0.0183%" height="15" fill="rgb(249,131,35)" fg:x="103902" fg:w="41"/><text x="46.5097%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.03%)</title><rect x="46.2574%" y="757" width="0.0276%" height="15" fill="rgb(239,6,40)" fg:x="103897" fg:w="62"/><text x="46.5074%" y="767.50"></text></g><g><title>do_syscall_64 (62 samples, 0.03%)</title><rect x="46.2574%" y="741" width="0.0276%" height="15" fill="rgb(246,136,47)" fg:x="103897" fg:w="62"/><text x="46.5074%" y="751.50"></text></g><g><title>__do_sys_clone (62 samples, 0.03%)</title><rect x="46.2574%" y="725" width="0.0276%" height="15" fill="rgb(253,58,26)" fg:x="103897" fg:w="62"/><text x="46.5074%" y="735.50"></text></g><g><title>kernel_clone (62 samples, 0.03%)</title><rect x="46.2574%" y="709" width="0.0276%" height="15" fill="rgb(237,141,10)" fg:x="103897" fg:w="62"/><text x="46.5074%" y="719.50"></text></g><g><title>copy_process (62 samples, 0.03%)</title><rect x="46.2574%" y="693" width="0.0276%" height="15" fill="rgb(234,156,12)" fg:x="103897" fg:w="62"/><text x="46.5074%" y="703.50"></text></g><g><title>__put_user_nocheck_4 (43 samples, 0.02%)</title><rect x="46.2864%" y="725" width="0.0191%" height="15" fill="rgb(243,224,36)" fg:x="103962" fg:w="43"/><text x="46.5364%" y="735.50"></text></g><g><title>asm_exc_page_fault (42 samples, 0.02%)</title><rect x="46.2868%" y="709" width="0.0187%" height="15" fill="rgb(205,229,51)" fg:x="103963" fg:w="42"/><text x="46.5368%" y="719.50"></text></g><g><title>exc_page_fault (41 samples, 0.02%)</title><rect x="46.2873%" y="693" width="0.0183%" height="15" fill="rgb(223,189,4)" fg:x="103964" fg:w="41"/><text x="46.5373%" y="703.50"></text></g><g><title>do_user_addr_fault (41 samples, 0.02%)</title><rect x="46.2873%" y="677" width="0.0183%" height="15" fill="rgb(249,167,54)" fg:x="103964" fg:w="41"/><text x="46.5373%" y="687.50"></text></g><g><title>handle_mm_fault (38 samples, 0.02%)</title><rect x="46.2886%" y="661" width="0.0169%" height="15" fill="rgb(218,34,28)" fg:x="103967" fg:w="38"/><text x="46.5386%" y="671.50"></text></g><g><title>wp_page_copy (35 samples, 0.02%)</title><rect x="46.2899%" y="645" width="0.0156%" height="15" fill="rgb(232,109,42)" fg:x="103970" fg:w="35"/><text x="46.5399%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (379 samples, 0.17%)</title><rect x="46.3095%" y="709" width="0.1687%" height="15" fill="rgb(248,214,46)" fg:x="104014" fg:w="379"/><text x="46.5595%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (369 samples, 0.16%)</title><rect x="46.3140%" y="693" width="0.1643%" height="15" fill="rgb(244,216,40)" fg:x="104024" fg:w="369"/><text x="46.5640%" y="703.50"></text></g><g><title>native_write_msr (367 samples, 0.16%)</title><rect x="46.3149%" y="677" width="0.1634%" height="15" fill="rgb(231,226,31)" fg:x="104026" fg:w="367"/><text x="46.5649%" y="687.50"></text></g><g><title>schedule_tail (445 samples, 0.20%)</title><rect x="46.2864%" y="741" width="0.1981%" height="15" fill="rgb(238,38,43)" fg:x="103962" fg:w="445"/><text x="46.5364%" y="751.50"></text></g><g><title>finish_task_switch (402 samples, 0.18%)</title><rect x="46.3055%" y="725" width="0.1790%" height="15" fill="rgb(208,88,43)" fg:x="104005" fg:w="402"/><text x="46.5555%" y="735.50"></text></g><g><title>arch_fork (516 samples, 0.23%)</title><rect x="46.2557%" y="773" width="0.2297%" height="15" fill="rgb(205,136,37)" fg:x="103893" fg:w="516"/><text x="46.5057%" y="783.50"></text></g><g><title>ret_from_fork (448 samples, 0.20%)</title><rect x="46.2859%" y="757" width="0.1995%" height="15" fill="rgb(237,34,14)" fg:x="103961" fg:w="448"/><text x="46.5359%" y="767.50"></text></g><g><title>__libc_fork (522 samples, 0.23%)</title><rect x="46.2548%" y="789" width="0.2324%" height="15" fill="rgb(236,193,44)" fg:x="103891" fg:w="522"/><text x="46.5048%" y="799.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (609 samples, 0.27%)</title><rect x="46.2196%" y="821" width="0.2711%" height="15" fill="rgb(231,48,10)" fg:x="103812" fg:w="609"/><text x="46.4696%" y="831.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (609 samples, 0.27%)</title><rect x="46.2196%" y="805" width="0.2711%" height="15" fill="rgb(213,141,34)" fg:x="103812" fg:w="609"/><text x="46.4696%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (110 samples, 0.05%)</title><rect x="46.4952%" y="661" width="0.0490%" height="15" fill="rgb(249,130,34)" fg:x="104431" fg:w="110"/><text x="46.7452%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (109 samples, 0.05%)</title><rect x="46.4956%" y="645" width="0.0485%" height="15" fill="rgb(219,42,41)" fg:x="104432" fg:w="109"/><text x="46.7456%" y="655.50"></text></g><g><title>native_write_msr (109 samples, 0.05%)</title><rect x="46.4956%" y="629" width="0.0485%" height="15" fill="rgb(224,100,54)" fg:x="104432" fg:w="109"/><text x="46.7456%" y="639.50"></text></g><g><title>finish_task_switch (116 samples, 0.05%)</title><rect x="46.4934%" y="677" width="0.0516%" height="15" fill="rgb(229,200,27)" fg:x="104427" fg:w="116"/><text x="46.7434%" y="687.50"></text></g><g><title>schedule (119 samples, 0.05%)</title><rect x="46.4930%" y="709" width="0.0530%" height="15" fill="rgb(217,118,10)" fg:x="104426" fg:w="119"/><text x="46.7430%" y="719.50"></text></g><g><title>__schedule (119 samples, 0.05%)</title><rect x="46.4930%" y="693" width="0.0530%" height="15" fill="rgb(206,22,3)" fg:x="104426" fg:w="119"/><text x="46.7430%" y="703.50"></text></g><g><title>do_syscall_64 (136 samples, 0.06%)</title><rect x="46.4930%" y="757" width="0.0606%" height="15" fill="rgb(232,163,46)" fg:x="104426" fg:w="136"/><text x="46.7430%" y="767.50"></text></g><g><title>kernel_wait4 (136 samples, 0.06%)</title><rect x="46.4930%" y="741" width="0.0606%" height="15" fill="rgb(206,95,13)" fg:x="104426" fg:w="136"/><text x="46.7430%" y="751.50"></text></g><g><title>do_wait (136 samples, 0.06%)</title><rect x="46.4930%" y="725" width="0.0606%" height="15" fill="rgb(253,154,18)" fg:x="104426" fg:w="136"/><text x="46.7430%" y="735.50"></text></g><g><title>WaitChild (138 samples, 0.06%)</title><rect x="46.4925%" y="805" width="0.0614%" height="15" fill="rgb(219,32,23)" fg:x="104425" fg:w="138"/><text x="46.7425%" y="815.50"></text></g><g><title>__GI___wait4 (138 samples, 0.06%)</title><rect x="46.4925%" y="789" width="0.0614%" height="15" fill="rgb(230,191,45)" fg:x="104425" fg:w="138"/><text x="46.7425%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (137 samples, 0.06%)</title><rect x="46.4930%" y="773" width="0.0610%" height="15" fill="rgb(229,64,36)" fg:x="104426" fg:w="137"/><text x="46.7430%" y="783.50"></text></g><g><title>LegacyProcessWrapper::WaitForChild (165 samples, 0.07%)</title><rect x="46.4907%" y="821" width="0.0735%" height="15" fill="rgb(205,129,25)" fg:x="104421" fg:w="165"/><text x="46.7407%" y="831.50"></text></g><g><title>__GI_exit (23 samples, 0.01%)</title><rect x="46.5540%" y="805" width="0.0102%" height="15" fill="rgb(254,112,7)" fg:x="104563" fg:w="23"/><text x="46.8040%" y="815.50"></text></g><g><title>__run_exit_handlers (23 samples, 0.01%)</title><rect x="46.5540%" y="789" width="0.0102%" height="15" fill="rgb(226,53,48)" fg:x="104563" fg:w="23"/><text x="46.8040%" y="799.50"></text></g><g><title>__libc_start_main (791 samples, 0.35%)</title><rect x="46.2138%" y="853" width="0.3522%" height="15" fill="rgb(214,153,38)" fg:x="103799" fg:w="791"/><text x="46.4638%" y="863.50"></text></g><g><title>main (778 samples, 0.35%)</title><rect x="46.2196%" y="837" width="0.3464%" height="15" fill="rgb(243,101,7)" fg:x="103812" fg:w="778"/><text x="46.4696%" y="847.50"></text></g><g><title>__do_munmap (24 samples, 0.01%)</title><rect x="46.5753%" y="565" width="0.0107%" height="15" fill="rgb(240,140,22)" fg:x="104611" fg:w="24"/><text x="46.8253%" y="575.50"></text></g><g><title>do_mmap (39 samples, 0.02%)</title><rect x="46.5740%" y="597" width="0.0174%" height="15" fill="rgb(235,114,2)" fg:x="104608" fg:w="39"/><text x="46.8240%" y="607.50"></text></g><g><title>mmap_region (36 samples, 0.02%)</title><rect x="46.5753%" y="581" width="0.0160%" height="15" fill="rgb(242,59,12)" fg:x="104611" fg:w="36"/><text x="46.8253%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (41 samples, 0.02%)</title><rect x="46.5736%" y="629" width="0.0183%" height="15" fill="rgb(252,134,9)" fg:x="104607" fg:w="41"/><text x="46.8236%" y="639.50"></text></g><g><title>vm_mmap_pgoff (40 samples, 0.02%)</title><rect x="46.5740%" y="613" width="0.0178%" height="15" fill="rgb(236,4,44)" fg:x="104608" fg:w="40"/><text x="46.8240%" y="623.50"></text></g><g><title>do_syscall_64 (43 samples, 0.02%)</title><rect x="46.5736%" y="645" width="0.0191%" height="15" fill="rgb(254,172,41)" fg:x="104607" fg:w="43"/><text x="46.8236%" y="655.50"></text></g><g><title>_dl_map_segments (50 samples, 0.02%)</title><rect x="46.5709%" y="709" width="0.0223%" height="15" fill="rgb(244,63,20)" fg:x="104601" fg:w="50"/><text x="46.8209%" y="719.50"></text></g><g><title>__mmap64 (45 samples, 0.02%)</title><rect x="46.5731%" y="693" width="0.0200%" height="15" fill="rgb(250,73,31)" fg:x="104606" fg:w="45"/><text x="46.8231%" y="703.50"></text></g><g><title>__mmap64 (45 samples, 0.02%)</title><rect x="46.5731%" y="677" width="0.0200%" height="15" fill="rgb(241,38,36)" fg:x="104606" fg:w="45"/><text x="46.8231%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.02%)</title><rect x="46.5736%" y="661" width="0.0196%" height="15" fill="rgb(245,211,2)" fg:x="104607" fg:w="44"/><text x="46.8236%" y="671.50"></text></g><g><title>_dl_map_object_from_fd (64 samples, 0.03%)</title><rect x="46.5709%" y="725" width="0.0285%" height="15" fill="rgb(206,120,28)" fg:x="104601" fg:w="64"/><text x="46.8209%" y="735.50"></text></g><g><title>_dl_catch_exception (80 samples, 0.04%)</title><rect x="46.5687%" y="773" width="0.0356%" height="15" fill="rgb(211,59,34)" fg:x="104596" fg:w="80"/><text x="46.8187%" y="783.50"></text></g><g><title>openaux (80 samples, 0.04%)</title><rect x="46.5687%" y="757" width="0.0356%" height="15" fill="rgb(233,168,5)" fg:x="104596" fg:w="80"/><text x="46.8187%" y="767.50"></text></g><g><title>_dl_map_object (80 samples, 0.04%)</title><rect x="46.5687%" y="741" width="0.0356%" height="15" fill="rgb(234,33,13)" fg:x="104596" fg:w="80"/><text x="46.8187%" y="751.50"></text></g><g><title>_dl_map_object_deps (83 samples, 0.04%)</title><rect x="46.5682%" y="789" width="0.0370%" height="15" fill="rgb(231,150,26)" fg:x="104595" fg:w="83"/><text x="46.8182%" y="799.50"></text></g><g><title>dl_new_hash (60 samples, 0.03%)</title><rect x="46.6399%" y="725" width="0.0267%" height="15" fill="rgb(217,191,4)" fg:x="104756" fg:w="60"/><text x="46.8899%" y="735.50"></text></g><g><title>_dl_lookup_symbol_x (157 samples, 0.07%)</title><rect x="46.6377%" y="741" width="0.0699%" height="15" fill="rgb(246,198,38)" fg:x="104751" fg:w="157"/><text x="46.8877%" y="751.50"></text></g><g><title>do_lookup_x (92 samples, 0.04%)</title><rect x="46.6666%" y="725" width="0.0410%" height="15" fill="rgb(245,64,37)" fg:x="104816" fg:w="92"/><text x="46.9166%" y="735.50"></text></g><g><title>elf_machine_rela (188 samples, 0.08%)</title><rect x="46.6252%" y="757" width="0.0837%" height="15" fill="rgb(250,30,36)" fg:x="104723" fg:w="188"/><text x="46.8752%" y="767.50"></text></g><g><title>_dl_relocate_object (235 samples, 0.10%)</title><rect x="46.6083%" y="789" width="0.1046%" height="15" fill="rgb(217,86,53)" fg:x="104685" fg:w="235"/><text x="46.8583%" y="799.50"></text></g><g><title>elf_dynamic_do_Rela (224 samples, 0.10%)</title><rect x="46.6132%" y="773" width="0.0997%" height="15" fill="rgb(228,157,16)" fg:x="104696" fg:w="224"/><text x="46.8632%" y="783.50"></text></g><g><title>[ld-2.31.so] (338 samples, 0.15%)</title><rect x="46.5669%" y="805" width="0.1505%" height="15" fill="rgb(217,59,31)" fg:x="104592" fg:w="338"/><text x="46.8169%" y="815.50"></text></g><g><title>_dl_start_final (349 samples, 0.16%)</title><rect x="46.5660%" y="837" width="0.1554%" height="15" fill="rgb(237,138,41)" fg:x="104590" fg:w="349"/><text x="46.8160%" y="847.50"></text></g><g><title>_dl_sysdep_start (349 samples, 0.16%)</title><rect x="46.5660%" y="821" width="0.1554%" height="15" fill="rgb(227,91,49)" fg:x="104590" fg:w="349"/><text x="46.8160%" y="831.50"></text></g><g><title>_dl_start (351 samples, 0.16%)</title><rect x="46.5660%" y="853" width="0.1563%" height="15" fill="rgb(247,21,44)" fg:x="104590" fg:w="351"/><text x="46.8160%" y="863.50"></text></g><g><title>_start (1,146 samples, 0.51%)</title><rect x="46.2138%" y="869" width="0.5102%" height="15" fill="rgb(219,210,51)" fg:x="103799" fg:w="1146"/><text x="46.4638%" y="879.50"></text></g><g><title>begin_new_exec (26 samples, 0.01%)</title><rect x="46.7361%" y="773" width="0.0116%" height="15" fill="rgb(209,140,6)" fg:x="104972" fg:w="26"/><text x="46.9861%" y="783.50"></text></g><g><title>mmput (26 samples, 0.01%)</title><rect x="46.7361%" y="757" width="0.0116%" height="15" fill="rgb(221,188,24)" fg:x="104972" fg:w="26"/><text x="46.9861%" y="767.50"></text></g><g><title>exit_mmap (26 samples, 0.01%)</title><rect x="46.7361%" y="741" width="0.0116%" height="15" fill="rgb(232,154,20)" fg:x="104972" fg:w="26"/><text x="46.9861%" y="751.50"></text></g><g><title>__x64_sys_execve (71 samples, 0.03%)</title><rect x="46.7321%" y="837" width="0.0316%" height="15" fill="rgb(244,137,50)" fg:x="104963" fg:w="71"/><text x="46.9821%" y="847.50"></text></g><g><title>do_execveat_common (71 samples, 0.03%)</title><rect x="46.7321%" y="821" width="0.0316%" height="15" fill="rgb(225,185,43)" fg:x="104963" fg:w="71"/><text x="46.9821%" y="831.50"></text></g><g><title>bprm_execve (71 samples, 0.03%)</title><rect x="46.7321%" y="805" width="0.0316%" height="15" fill="rgb(213,205,38)" fg:x="104963" fg:w="71"/><text x="46.9821%" y="815.50"></text></g><g><title>load_elf_binary (71 samples, 0.03%)</title><rect x="46.7321%" y="789" width="0.0316%" height="15" fill="rgb(236,73,12)" fg:x="104963" fg:w="71"/><text x="46.9821%" y="799.50"></text></g><g><title>mmput (32 samples, 0.01%)</title><rect x="46.7637%" y="789" width="0.0142%" height="15" fill="rgb(235,219,13)" fg:x="105034" fg:w="32"/><text x="47.0137%" y="799.50"></text></g><g><title>exit_mmap (32 samples, 0.01%)</title><rect x="46.7637%" y="773" width="0.0142%" height="15" fill="rgb(218,59,36)" fg:x="105034" fg:w="32"/><text x="47.0137%" y="783.50"></text></g><g><title>__x64_sys_exit_group (38 samples, 0.02%)</title><rect x="46.7637%" y="837" width="0.0169%" height="15" fill="rgb(205,110,39)" fg:x="105034" fg:w="38"/><text x="47.0137%" y="847.50"></text></g><g><title>do_group_exit (38 samples, 0.02%)</title><rect x="46.7637%" y="821" width="0.0169%" height="15" fill="rgb(218,206,42)" fg:x="105034" fg:w="38"/><text x="47.0137%" y="831.50"></text></g><g><title>do_exit (38 samples, 0.02%)</title><rect x="46.7637%" y="805" width="0.0169%" height="15" fill="rgb(248,125,24)" fg:x="105034" fg:w="38"/><text x="47.0137%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.05%)</title><rect x="46.7321%" y="869" width="0.0490%" height="15" fill="rgb(242,28,27)" fg:x="104963" fg:w="110"/><text x="46.9821%" y="879.50"></text></g><g><title>do_syscall_64 (110 samples, 0.05%)</title><rect x="46.7321%" y="853" width="0.0490%" height="15" fill="rgb(216,228,15)" fg:x="104963" fg:w="110"/><text x="46.9821%" y="863.50"></text></g><g><title>process-wrapper (1,331 samples, 0.59%)</title><rect x="46.1902%" y="885" width="0.5926%" height="15" fill="rgb(235,116,46)" fg:x="103746" fg:w="1331"/><text x="46.4402%" y="895.50"></text></g><g><title>do_wait (37 samples, 0.02%)</title><rect x="46.8095%" y="773" width="0.0165%" height="15" fill="rgb(224,18,32)" fg:x="105137" fg:w="37"/><text x="47.0595%" y="783.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (38 samples, 0.02%)</title><rect x="46.8095%" y="853" width="0.0169%" height="15" fill="rgb(252,5,12)" fg:x="105137" fg:w="38"/><text x="47.0595%" y="863.50"></text></g><g><title>__GI___wait4 (38 samples, 0.02%)</title><rect x="46.8095%" y="837" width="0.0169%" height="15" fill="rgb(251,36,5)" fg:x="105137" fg:w="38"/><text x="47.0595%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.02%)</title><rect x="46.8095%" y="821" width="0.0169%" height="15" fill="rgb(217,53,14)" fg:x="105137" fg:w="38"/><text x="47.0595%" y="831.50"></text></g><g><title>do_syscall_64 (38 samples, 0.02%)</title><rect x="46.8095%" y="805" width="0.0169%" height="15" fill="rgb(215,86,45)" fg:x="105137" fg:w="38"/><text x="47.0595%" y="815.50"></text></g><g><title>kernel_wait4 (38 samples, 0.02%)</title><rect x="46.8095%" y="789" width="0.0169%" height="15" fill="rgb(242,169,11)" fg:x="105137" fg:w="38"/><text x="47.0595%" y="799.50"></text></g><g><title>[perf-501242.map] (109 samples, 0.05%)</title><rect x="46.7841%" y="869" width="0.0485%" height="15" fill="rgb(211,213,45)" fg:x="105080" fg:w="109"/><text x="47.0341%" y="879.50"></text></g><g><title>process_reaper (115 samples, 0.05%)</title><rect x="46.7828%" y="885" width="0.0512%" height="15" fill="rgb(205,88,11)" fg:x="105077" fg:w="115"/><text x="47.0328%" y="895.50"></text></g><g><title>futex_wait_queue_me (42 samples, 0.02%)</title><rect x="46.9970%" y="693" width="0.0187%" height="15" fill="rgb(252,69,26)" fg:x="105558" fg:w="42"/><text x="47.2470%" y="703.50"></text></g><g><title>schedule (40 samples, 0.02%)</title><rect x="46.9979%" y="677" width="0.0178%" height="15" fill="rgb(246,123,37)" fg:x="105560" fg:w="40"/><text x="47.2479%" y="687.50"></text></g><g><title>__schedule (37 samples, 0.02%)</title><rect x="46.9992%" y="661" width="0.0165%" height="15" fill="rgb(212,205,5)" fg:x="105563" fg:w="37"/><text x="47.2492%" y="671.50"></text></g><g><title>do_syscall_64 (49 samples, 0.02%)</title><rect x="46.9947%" y="757" width="0.0218%" height="15" fill="rgb(253,148,0)" fg:x="105553" fg:w="49"/><text x="47.2447%" y="767.50"></text></g><g><title>__x64_sys_futex (49 samples, 0.02%)</title><rect x="46.9947%" y="741" width="0.0218%" height="15" fill="rgb(239,22,4)" fg:x="105553" fg:w="49"/><text x="47.2447%" y="751.50"></text></g><g><title>do_futex (48 samples, 0.02%)</title><rect x="46.9952%" y="725" width="0.0214%" height="15" fill="rgb(226,26,53)" fg:x="105554" fg:w="48"/><text x="47.2452%" y="735.50"></text></g><g><title>futex_wait (45 samples, 0.02%)</title><rect x="46.9965%" y="709" width="0.0200%" height="15" fill="rgb(225,229,45)" fg:x="105557" fg:w="45"/><text x="47.2465%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.02%)</title><rect x="46.9947%" y="773" width="0.0240%" height="15" fill="rgb(220,60,37)" fg:x="105553" fg:w="54"/><text x="47.2447%" y="783.50"></text></g><g><title>__pthread_cond_wait (66 samples, 0.03%)</title><rect x="46.9898%" y="821" width="0.0294%" height="15" fill="rgb(217,180,35)" fg:x="105542" fg:w="66"/><text x="47.2398%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (66 samples, 0.03%)</title><rect x="46.9898%" y="805" width="0.0294%" height="15" fill="rgb(229,7,53)" fg:x="105542" fg:w="66"/><text x="47.2398%" y="815.50"></text></g><g><title>futex_wait_cancelable (63 samples, 0.03%)</title><rect x="46.9912%" y="789" width="0.0280%" height="15" fill="rgb(254,137,3)" fg:x="105545" fg:w="63"/><text x="47.2412%" y="799.50"></text></g><g><title>Parker::park (89 samples, 0.04%)</title><rect x="46.9836%" y="837" width="0.0396%" height="15" fill="rgb(215,140,41)" fg:x="105528" fg:w="89"/><text x="47.2336%" y="847.50"></text></g><g><title>Unsafe_Park (94 samples, 0.04%)</title><rect x="46.9818%" y="853" width="0.0419%" height="15" fill="rgb(250,80,15)" fg:x="105524" fg:w="94"/><text x="47.2318%" y="863.50"></text></g><g><title>[perf-501242.map] (430 samples, 0.19%)</title><rect x="46.8376%" y="869" width="0.1914%" height="15" fill="rgb(252,191,6)" fg:x="105200" fg:w="430"/><text x="47.0876%" y="879.50"></text></g><g><title>profile-writer- (458 samples, 0.20%)</title><rect x="46.8340%" y="885" width="0.2039%" height="15" fill="rgb(246,217,18)" fg:x="105192" fg:w="458"/><text x="47.0840%" y="895.50"></text></g><g><title>[python3.9] (55 samples, 0.02%)</title><rect x="47.0709%" y="853" width="0.0245%" height="15" fill="rgb(223,93,7)" fg:x="105724" fg:w="55"/><text x="47.3209%" y="863.50"></text></g><g><title>PyImport_ImportModuleLevelObject (23 samples, 0.01%)</title><rect x="47.0985%" y="837" width="0.0102%" height="15" fill="rgb(225,55,52)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="847.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (23 samples, 0.01%)</title><rect x="47.0985%" y="821" width="0.0102%" height="15" fill="rgb(240,31,24)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="831.50"></text></g><g><title>[python3.9] (23 samples, 0.01%)</title><rect x="47.0985%" y="805" width="0.0102%" height="15" fill="rgb(205,56,52)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="47.0985%" y="789" width="0.0102%" height="15" fill="rgb(246,146,12)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="47.0985%" y="773" width="0.0102%" height="15" fill="rgb(239,84,36)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="47.0985%" y="757" width="0.0102%" height="15" fill="rgb(207,41,40)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="47.0985%" y="741" width="0.0102%" height="15" fill="rgb(241,179,25)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="47.0985%" y="725" width="0.0102%" height="15" fill="rgb(210,0,34)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="47.0985%" y="709" width="0.0102%" height="15" fill="rgb(225,217,29)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="47.0985%" y="693" width="0.0102%" height="15" fill="rgb(216,191,38)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="47.0985%" y="677" width="0.0102%" height="15" fill="rgb(232,140,52)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="47.0985%" y="661" width="0.0102%" height="15" fill="rgb(223,158,51)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="671.50"></text></g><g><title>[python3.9] (23 samples, 0.01%)</title><rect x="47.0985%" y="645" width="0.0102%" height="15" fill="rgb(235,29,51)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="47.0985%" y="629" width="0.0102%" height="15" fill="rgb(215,181,18)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="639.50"></text></g><g><title>[python3.9] (23 samples, 0.01%)</title><rect x="47.0985%" y="613" width="0.0102%" height="15" fill="rgb(227,125,34)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="623.50"></text></g><g><title>[python3.9] (23 samples, 0.01%)</title><rect x="47.0985%" y="597" width="0.0102%" height="15" fill="rgb(230,197,49)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="607.50"></text></g><g><title>PyEval_EvalCode (23 samples, 0.01%)</title><rect x="47.0985%" y="581" width="0.0102%" height="15" fill="rgb(239,141,16)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="591.50"></text></g><g><title>_PyEval_EvalCodeWithName (23 samples, 0.01%)</title><rect x="47.0985%" y="565" width="0.0102%" height="15" fill="rgb(225,105,43)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="575.50"></text></g><g><title>[python3.9] (23 samples, 0.01%)</title><rect x="47.0985%" y="549" width="0.0102%" height="15" fill="rgb(214,131,14)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="47.0985%" y="533" width="0.0102%" height="15" fill="rgb(229,177,11)" fg:x="105786" fg:w="23"/><text x="47.3485%" y="543.50"></text></g><g><title>_PyFunction_Vectorcall (55 samples, 0.02%)</title><rect x="47.1176%" y="837" width="0.0245%" height="15" fill="rgb(231,180,14)" fg:x="105829" fg:w="55"/><text x="47.3676%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (43 samples, 0.02%)</title><rect x="47.1230%" y="821" width="0.0191%" height="15" fill="rgb(232,88,2)" fg:x="105841" fg:w="43"/><text x="47.3730%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (42 samples, 0.02%)</title><rect x="47.1234%" y="805" width="0.0187%" height="15" fill="rgb(205,220,8)" fg:x="105842" fg:w="42"/><text x="47.3734%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (30 samples, 0.01%)</title><rect x="47.1287%" y="789" width="0.0134%" height="15" fill="rgb(225,23,53)" fg:x="105854" fg:w="30"/><text x="47.3787%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="47.1287%" y="773" width="0.0134%" height="15" fill="rgb(213,62,29)" fg:x="105854" fg:w="30"/><text x="47.3787%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (100 samples, 0.04%)</title><rect x="47.0980%" y="853" width="0.0445%" height="15" fill="rgb(227,75,7)" fg:x="105785" fg:w="100"/><text x="47.3480%" y="863.50"></text></g><g><title>_PyFunction_Vectorcall (30 samples, 0.01%)</title><rect x="47.1426%" y="853" width="0.0134%" height="15" fill="rgb(207,105,14)" fg:x="105885" fg:w="30"/><text x="47.3926%" y="863.50"></text></g><g><title>[unknown] (262 samples, 0.12%)</title><rect x="47.0508%" y="869" width="0.1166%" height="15" fill="rgb(245,62,29)" fg:x="105679" fg:w="262"/><text x="47.3008%" y="879.50"></text></g><g><title>Py_RunMain (63 samples, 0.03%)</title><rect x="47.1675%" y="821" width="0.0280%" height="15" fill="rgb(236,202,4)" fg:x="105941" fg:w="63"/><text x="47.4175%" y="831.50"></text></g><g><title>Py_FinalizeEx (51 samples, 0.02%)</title><rect x="47.1728%" y="805" width="0.0227%" height="15" fill="rgb(250,67,1)" fg:x="105953" fg:w="51"/><text x="47.4228%" y="815.50"></text></g><g><title>PyImport_ImportModule (28 samples, 0.01%)</title><rect x="47.1982%" y="741" width="0.0125%" height="15" fill="rgb(253,115,44)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="751.50"></text></g><g><title>PyImport_Import (28 samples, 0.01%)</title><rect x="47.1982%" y="725" width="0.0125%" height="15" fill="rgb(251,139,18)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="735.50"></text></g><g><title>PyObject_CallFunction (28 samples, 0.01%)</title><rect x="47.1982%" y="709" width="0.0125%" height="15" fill="rgb(218,22,32)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="719.50"></text></g><g><title>_PyObject_MakeTpCall (28 samples, 0.01%)</title><rect x="47.1982%" y="693" width="0.0125%" height="15" fill="rgb(243,53,5)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="703.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="47.1982%" y="677" width="0.0125%" height="15" fill="rgb(227,56,16)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="687.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="47.1982%" y="661" width="0.0125%" height="15" fill="rgb(245,53,0)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="671.50"></text></g><g><title>PyImport_ImportModuleLevelObject (28 samples, 0.01%)</title><rect x="47.1982%" y="645" width="0.0125%" height="15" fill="rgb(216,170,35)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="655.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (28 samples, 0.01%)</title><rect x="47.1982%" y="629" width="0.0125%" height="15" fill="rgb(211,200,8)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="639.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="47.1982%" y="613" width="0.0125%" height="15" fill="rgb(228,204,44)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="623.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.01%)</title><rect x="47.1982%" y="597" width="0.0125%" height="15" fill="rgb(214,121,17)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.01%)</title><rect x="47.1982%" y="581" width="0.0125%" height="15" fill="rgb(233,64,38)" fg:x="106010" fg:w="28"/><text x="47.4482%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.01%)</title><rect x="47.1995%" y="565" width="0.0111%" height="15" fill="rgb(253,54,19)" fg:x="106013" fg:w="25"/><text x="47.4495%" y="575.50"></text></g><g><title>_PyEval_EvalFrameDefault (25 samples, 0.01%)</title><rect x="47.1995%" y="549" width="0.0111%" height="15" fill="rgb(253,94,18)" fg:x="106013" fg:w="25"/><text x="47.4495%" y="559.50"></text></g><g><title>_PyFunction_Vectorcall (25 samples, 0.01%)</title><rect x="47.1995%" y="533" width="0.0111%" height="15" fill="rgb(227,57,52)" fg:x="106013" fg:w="25"/><text x="47.4495%" y="543.50"></text></g><g><title>Py_InitializeFromConfig (74 samples, 0.03%)</title><rect x="47.1955%" y="789" width="0.0329%" height="15" fill="rgb(230,228,50)" fg:x="106004" fg:w="74"/><text x="47.4455%" y="799.50"></text></g><g><title>[python3.9] (74 samples, 0.03%)</title><rect x="47.1955%" y="773" width="0.0329%" height="15" fill="rgb(217,205,27)" fg:x="106004" fg:w="74"/><text x="47.4455%" y="783.50"></text></g><g><title>[python3.9] (73 samples, 0.03%)</title><rect x="47.1960%" y="757" width="0.0325%" height="15" fill="rgb(252,71,50)" fg:x="106005" fg:w="73"/><text x="47.4460%" y="767.50"></text></g><g><title>Py_BytesMain (140 samples, 0.06%)</title><rect x="47.1675%" y="837" width="0.0623%" height="15" fill="rgb(209,86,4)" fg:x="105941" fg:w="140"/><text x="47.4175%" y="847.50"></text></g><g><title>[python3.9] (77 samples, 0.03%)</title><rect x="47.1955%" y="821" width="0.0343%" height="15" fill="rgb(229,94,0)" fg:x="106004" fg:w="77"/><text x="47.4455%" y="831.50"></text></g><g><title>[python3.9] (77 samples, 0.03%)</title><rect x="47.1955%" y="805" width="0.0343%" height="15" fill="rgb(252,223,21)" fg:x="106004" fg:w="77"/><text x="47.4455%" y="815.50"></text></g><g><title>__libc_start_main (141 samples, 0.06%)</title><rect x="47.1675%" y="853" width="0.0628%" height="15" fill="rgb(230,210,4)" fg:x="105941" fg:w="141"/><text x="47.4175%" y="863.50"></text></g><g><title>_start (147 samples, 0.07%)</title><rect x="47.1675%" y="869" width="0.0654%" height="15" fill="rgb(240,149,38)" fg:x="105941" fg:w="147"/><text x="47.4175%" y="879.50"></text></g><g><title>python3 (443 samples, 0.20%)</title><rect x="47.0388%" y="885" width="0.1972%" height="15" fill="rgb(254,105,20)" fg:x="105652" fg:w="443"/><text x="47.2888%" y="895.50"></text></g><g><title>[[stack]] (30 samples, 0.01%)</title><rect x="47.2365%" y="869" width="0.0134%" height="15" fill="rgb(253,87,46)" fg:x="106096" fg:w="30"/><text x="47.4865%" y="879.50"></text></g><g><title>[sed] (27 samples, 0.01%)</title><rect x="47.2681%" y="741" width="0.0120%" height="15" fill="rgb(253,116,33)" fg:x="106167" fg:w="27"/><text x="47.5181%" y="751.50"></text></g><g><title>[sed] (54 samples, 0.02%)</title><rect x="47.2619%" y="757" width="0.0240%" height="15" fill="rgb(229,198,5)" fg:x="106153" fg:w="54"/><text x="47.5119%" y="767.50"></text></g><g><title>[sed] (90 samples, 0.04%)</title><rect x="47.2605%" y="773" width="0.0401%" height="15" fill="rgb(242,38,37)" fg:x="106150" fg:w="90"/><text x="47.5105%" y="783.50"></text></g><g><title>[sed] (100 samples, 0.04%)</title><rect x="47.2592%" y="789" width="0.0445%" height="15" fill="rgb(242,69,53)" fg:x="106147" fg:w="100"/><text x="47.5092%" y="799.50"></text></g><g><title>[sed] (122 samples, 0.05%)</title><rect x="47.2579%" y="805" width="0.0543%" height="15" fill="rgb(249,80,16)" fg:x="106144" fg:w="122"/><text x="47.5079%" y="815.50"></text></g><g><title>[sed] (129 samples, 0.06%)</title><rect x="47.2574%" y="821" width="0.0574%" height="15" fill="rgb(206,128,11)" fg:x="106143" fg:w="129"/><text x="47.5074%" y="831.50"></text></g><g><title>[sed] (142 samples, 0.06%)</title><rect x="47.2574%" y="837" width="0.0632%" height="15" fill="rgb(212,35,20)" fg:x="106143" fg:w="142"/><text x="47.5074%" y="847.50"></text></g><g><title>__libc_start_main (174 samples, 0.08%)</title><rect x="47.2574%" y="853" width="0.0775%" height="15" fill="rgb(236,79,13)" fg:x="106143" fg:w="174"/><text x="47.5074%" y="863.50"></text></g><g><title>__GI_exit (32 samples, 0.01%)</title><rect x="47.3206%" y="837" width="0.0142%" height="15" fill="rgb(233,123,3)" fg:x="106285" fg:w="32"/><text x="47.5706%" y="847.50"></text></g><g><title>__run_exit_handlers (32 samples, 0.01%)</title><rect x="47.3206%" y="821" width="0.0142%" height="15" fill="rgb(214,93,52)" fg:x="106285" fg:w="32"/><text x="47.5706%" y="831.50"></text></g><g><title>[sed] (182 samples, 0.08%)</title><rect x="47.2561%" y="869" width="0.0810%" height="15" fill="rgb(251,37,40)" fg:x="106140" fg:w="182"/><text x="47.5061%" y="879.50"></text></g><g><title>[unknown] (31 samples, 0.01%)</title><rect x="47.3371%" y="869" width="0.0138%" height="15" fill="rgb(227,80,54)" fg:x="106322" fg:w="31"/><text x="47.5871%" y="879.50"></text></g><g><title>__GI__dl_addr (122 samples, 0.05%)</title><rect x="47.3825%" y="709" width="0.0543%" height="15" fill="rgb(254,48,11)" fg:x="106424" fg:w="122"/><text x="47.6325%" y="719.50"></text></g><g><title>determine_info (119 samples, 0.05%)</title><rect x="47.3839%" y="693" width="0.0530%" height="15" fill="rgb(235,193,26)" fg:x="106427" fg:w="119"/><text x="47.6339%" y="703.50"></text></g><g><title>__fopen_internal (138 samples, 0.06%)</title><rect x="47.3767%" y="773" width="0.0614%" height="15" fill="rgb(229,99,21)" fg:x="106411" fg:w="138"/><text x="47.6267%" y="783.50"></text></g><g><title>malloc_hook_ini (126 samples, 0.06%)</title><rect x="47.3821%" y="757" width="0.0561%" height="15" fill="rgb(211,140,41)" fg:x="106423" fg:w="126"/><text x="47.6321%" y="767.50"></text></g><g><title>ptmalloc_init (126 samples, 0.06%)</title><rect x="47.3821%" y="741" width="0.0561%" height="15" fill="rgb(240,227,30)" fg:x="106423" fg:w="126"/><text x="47.6321%" y="751.50"></text></g><g><title>ptmalloc_init (126 samples, 0.06%)</title><rect x="47.3821%" y="725" width="0.0561%" height="15" fill="rgb(215,224,45)" fg:x="106423" fg:w="126"/><text x="47.6321%" y="735.50"></text></g><g><title>[libselinux.so.1] (191 samples, 0.09%)</title><rect x="47.3540%" y="805" width="0.0850%" height="15" fill="rgb(206,123,31)" fg:x="106360" fg:w="191"/><text x="47.6040%" y="815.50"></text></g><g><title>selinuxfs_exists (161 samples, 0.07%)</title><rect x="47.3674%" y="789" width="0.0717%" height="15" fill="rgb(210,138,16)" fg:x="106390" fg:w="161"/><text x="47.6174%" y="799.50"></text></g><g><title>_dl_start_user (229 samples, 0.10%)</title><rect x="47.3523%" y="869" width="0.1020%" height="15" fill="rgb(228,57,28)" fg:x="106356" fg:w="229"/><text x="47.6023%" y="879.50"></text></g><g><title>_dl_init (229 samples, 0.10%)</title><rect x="47.3523%" y="853" width="0.1020%" height="15" fill="rgb(242,170,10)" fg:x="106356" fg:w="229"/><text x="47.6023%" y="863.50"></text></g><g><title>call_init (228 samples, 0.10%)</title><rect x="47.3527%" y="837" width="0.1015%" height="15" fill="rgb(228,214,39)" fg:x="106357" fg:w="228"/><text x="47.6027%" y="847.50"></text></g><g><title>call_init (228 samples, 0.10%)</title><rect x="47.3527%" y="821" width="0.1015%" height="15" fill="rgb(218,179,33)" fg:x="106357" fg:w="228"/><text x="47.6027%" y="831.50"></text></g><g><title>__pthread_initialize_minimal_internal (45 samples, 0.02%)</title><rect x="47.4547%" y="853" width="0.0200%" height="15" fill="rgb(235,193,39)" fg:x="106586" fg:w="45"/><text x="47.7047%" y="863.50"></text></g><g><title>_init (63 samples, 0.03%)</title><rect x="47.4542%" y="869" width="0.0280%" height="15" fill="rgb(219,221,36)" fg:x="106585" fg:w="63"/><text x="47.7042%" y="879.50"></text></g><g><title>_dl_cache_libcmp (27 samples, 0.01%)</title><rect x="47.5246%" y="709" width="0.0120%" height="15" fill="rgb(248,218,19)" fg:x="106743" fg:w="27"/><text x="47.7746%" y="719.50"></text></g><g><title>_dl_sysdep_read_whole_file (29 samples, 0.01%)</title><rect x="47.5366%" y="709" width="0.0129%" height="15" fill="rgb(205,50,9)" fg:x="106770" fg:w="29"/><text x="47.7866%" y="719.50"></text></g><g><title>_dl_load_cache_lookup (87 samples, 0.04%)</title><rect x="47.5143%" y="725" width="0.0387%" height="15" fill="rgb(238,81,28)" fg:x="106720" fg:w="87"/><text x="47.7643%" y="735.50"></text></g><g><title>asm_exc_page_fault (59 samples, 0.03%)</title><rect x="47.5762%" y="677" width="0.0263%" height="15" fill="rgb(235,110,19)" fg:x="106859" fg:w="59"/><text x="47.8262%" y="687.50"></text></g><g><title>exc_page_fault (59 samples, 0.03%)</title><rect x="47.5762%" y="661" width="0.0263%" height="15" fill="rgb(214,7,14)" fg:x="106859" fg:w="59"/><text x="47.8262%" y="671.50"></text></g><g><title>do_user_addr_fault (59 samples, 0.03%)</title><rect x="47.5762%" y="645" width="0.0263%" height="15" fill="rgb(211,77,3)" fg:x="106859" fg:w="59"/><text x="47.8262%" y="655.50"></text></g><g><title>handle_mm_fault (54 samples, 0.02%)</title><rect x="47.5784%" y="629" width="0.0240%" height="15" fill="rgb(229,5,9)" fg:x="106864" fg:w="54"/><text x="47.8284%" y="639.50"></text></g><g><title>[ld-2.31.so] (75 samples, 0.03%)</title><rect x="47.5735%" y="693" width="0.0334%" height="15" fill="rgb(225,90,11)" fg:x="106853" fg:w="75"/><text x="47.8235%" y="703.50"></text></g><g><title>vma_interval_tree_insert (45 samples, 0.02%)</title><rect x="47.6425%" y="517" width="0.0200%" height="15" fill="rgb(242,56,8)" fg:x="107008" fg:w="45"/><text x="47.8925%" y="527.50"></text></g><g><title>__vma_adjust (94 samples, 0.04%)</title><rect x="47.6296%" y="533" width="0.0419%" height="15" fill="rgb(249,212,39)" fg:x="106979" fg:w="94"/><text x="47.8796%" y="543.50"></text></g><g><title>__split_vma (140 samples, 0.06%)</title><rect x="47.6274%" y="549" width="0.0623%" height="15" fill="rgb(236,90,9)" fg:x="106974" fg:w="140"/><text x="47.8774%" y="559.50"></text></g><g><title>vm_area_dup (38 samples, 0.02%)</title><rect x="47.6728%" y="533" width="0.0169%" height="15" fill="rgb(206,88,35)" fg:x="107076" fg:w="38"/><text x="47.9228%" y="543.50"></text></g><g><title>kmem_cache_alloc (31 samples, 0.01%)</title><rect x="47.6759%" y="517" width="0.0138%" height="15" fill="rgb(205,126,30)" fg:x="107083" fg:w="31"/><text x="47.9259%" y="527.50"></text></g><g><title>lru_add_drain (23 samples, 0.01%)</title><rect x="47.7080%" y="533" width="0.0102%" height="15" fill="rgb(230,176,12)" fg:x="107155" fg:w="23"/><text x="47.9580%" y="543.50"></text></g><g><title>lru_add_drain_cpu (23 samples, 0.01%)</title><rect x="47.7080%" y="517" width="0.0102%" height="15" fill="rgb(243,19,9)" fg:x="107155" fg:w="23"/><text x="47.9580%" y="527.50"></text></g><g><title>__do_munmap (235 samples, 0.10%)</title><rect x="47.6238%" y="565" width="0.1046%" height="15" fill="rgb(245,171,17)" fg:x="106966" fg:w="235"/><text x="47.8738%" y="575.50"></text></g><g><title>unmap_region (58 samples, 0.03%)</title><rect x="47.7026%" y="549" width="0.0258%" height="15" fill="rgb(227,52,21)" fg:x="107143" fg:w="58"/><text x="47.9526%" y="559.50"></text></g><g><title>perf_iterate_sb (60 samples, 0.03%)</title><rect x="47.7507%" y="549" width="0.0267%" height="15" fill="rgb(238,69,14)" fg:x="107251" fg:w="60"/><text x="48.0007%" y="559.50"></text></g><g><title>perf_iterate_ctx (54 samples, 0.02%)</title><rect x="47.7534%" y="533" width="0.0240%" height="15" fill="rgb(241,156,39)" fg:x="107257" fg:w="54"/><text x="48.0034%" y="543.50"></text></g><g><title>perf_event_mmap_output (48 samples, 0.02%)</title><rect x="47.7561%" y="517" width="0.0214%" height="15" fill="rgb(212,227,28)" fg:x="107263" fg:w="48"/><text x="48.0061%" y="527.50"></text></g><g><title>perf_event_mmap (108 samples, 0.05%)</title><rect x="47.7298%" y="565" width="0.0481%" height="15" fill="rgb(209,118,27)" fg:x="107204" fg:w="108"/><text x="47.9798%" y="575.50"></text></g><g><title>vma_link (49 samples, 0.02%)</title><rect x="47.7872%" y="565" width="0.0218%" height="15" fill="rgb(226,102,5)" fg:x="107333" fg:w="49"/><text x="48.0372%" y="575.50"></text></g><g><title>vma_interval_tree_insert (34 samples, 0.02%)</title><rect x="47.7939%" y="549" width="0.0151%" height="15" fill="rgb(223,34,3)" fg:x="107348" fg:w="34"/><text x="48.0439%" y="559.50"></text></g><g><title>do_mmap (465 samples, 0.21%)</title><rect x="47.6114%" y="597" width="0.2070%" height="15" fill="rgb(221,81,38)" fg:x="106938" fg:w="465"/><text x="47.8614%" y="607.50"></text></g><g><title>mmap_region (455 samples, 0.20%)</title><rect x="47.6158%" y="581" width="0.2026%" height="15" fill="rgb(236,219,28)" fg:x="106948" fg:w="455"/><text x="47.8658%" y="591.50"></text></g><g><title>ksys_mmap_pgoff (477 samples, 0.21%)</title><rect x="47.6096%" y="629" width="0.2124%" height="15" fill="rgb(213,200,14)" fg:x="106934" fg:w="477"/><text x="47.8596%" y="639.50"></text></g><g><title>vm_mmap_pgoff (473 samples, 0.21%)</title><rect x="47.6114%" y="613" width="0.2106%" height="15" fill="rgb(240,33,19)" fg:x="106938" fg:w="473"/><text x="47.8614%" y="623.50"></text></g><g><title>do_syscall_64 (509 samples, 0.23%)</title><rect x="47.6087%" y="645" width="0.2266%" height="15" fill="rgb(233,113,27)" fg:x="106932" fg:w="509"/><text x="47.8587%" y="655.50"></text></g><g><title>vm_mmap_pgoff (30 samples, 0.01%)</title><rect x="47.8220%" y="629" width="0.0134%" height="15" fill="rgb(220,221,18)" fg:x="107411" fg:w="30"/><text x="48.0720%" y="639.50"></text></g><g><title>do_mmap (30 samples, 0.01%)</title><rect x="47.8220%" y="613" width="0.0134%" height="15" fill="rgb(238,92,8)" fg:x="107411" fg:w="30"/><text x="48.0720%" y="623.50"></text></g><g><title>mmap_region (29 samples, 0.01%)</title><rect x="47.8224%" y="597" width="0.0129%" height="15" fill="rgb(222,164,16)" fg:x="107412" fg:w="29"/><text x="48.0724%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (511 samples, 0.23%)</title><rect x="47.6087%" y="661" width="0.2275%" height="15" fill="rgb(241,119,3)" fg:x="106932" fg:w="511"/><text x="47.8587%" y="671.50"></text></g><g><title>__mmap64 (517 samples, 0.23%)</title><rect x="47.6069%" y="677" width="0.2302%" height="15" fill="rgb(241,44,8)" fg:x="106928" fg:w="517"/><text x="47.8569%" y="687.50"></text></g><g><title>__mmap64 (518 samples, 0.23%)</title><rect x="47.6069%" y="693" width="0.2306%" height="15" fill="rgb(230,36,40)" fg:x="106928" fg:w="518"/><text x="47.8569%" y="703.50"></text></g><g><title>_dl_map_segments (602 samples, 0.27%)</title><rect x="47.5713%" y="709" width="0.2680%" height="15" fill="rgb(243,16,36)" fg:x="106848" fg:w="602"/><text x="47.8213%" y="719.50"></text></g><g><title>_dl_new_object (35 samples, 0.02%)</title><rect x="47.8393%" y="709" width="0.0156%" height="15" fill="rgb(231,4,26)" fg:x="107450" fg:w="35"/><text x="48.0893%" y="719.50"></text></g><g><title>filemap_map_pages (23 samples, 0.01%)</title><rect x="47.8616%" y="629" width="0.0102%" height="15" fill="rgb(240,9,31)" fg:x="107500" fg:w="23"/><text x="48.1116%" y="639.50"></text></g><g><title>handle_mm_fault (31 samples, 0.01%)</title><rect x="47.8594%" y="645" width="0.0138%" height="15" fill="rgb(207,173,15)" fg:x="107495" fg:w="31"/><text x="48.1094%" y="655.50"></text></g><g><title>asm_exc_page_fault (35 samples, 0.02%)</title><rect x="47.8585%" y="693" width="0.0156%" height="15" fill="rgb(224,192,53)" fg:x="107493" fg:w="35"/><text x="48.1085%" y="703.50"></text></g><g><title>exc_page_fault (35 samples, 0.02%)</title><rect x="47.8585%" y="677" width="0.0156%" height="15" fill="rgb(223,67,28)" fg:x="107493" fg:w="35"/><text x="48.1085%" y="687.50"></text></g><g><title>do_user_addr_fault (35 samples, 0.02%)</title><rect x="47.8585%" y="661" width="0.0156%" height="15" fill="rgb(211,20,47)" fg:x="107493" fg:w="35"/><text x="48.1085%" y="671.50"></text></g><g><title>_dl_setup_hash (46 samples, 0.02%)</title><rect x="47.8549%" y="709" width="0.0205%" height="15" fill="rgb(240,228,2)" fg:x="107485" fg:w="46"/><text x="48.1049%" y="719.50"></text></g><g><title>handle_mm_fault (73 samples, 0.03%)</title><rect x="47.8870%" y="645" width="0.0325%" height="15" fill="rgb(248,151,12)" fg:x="107557" fg:w="73"/><text x="48.1370%" y="655.50"></text></g><g><title>wp_page_copy (44 samples, 0.02%)</title><rect x="47.8999%" y="629" width="0.0196%" height="15" fill="rgb(244,8,39)" fg:x="107586" fg:w="44"/><text x="48.1499%" y="639.50"></text></g><g><title>asm_exc_page_fault (76 samples, 0.03%)</title><rect x="47.8865%" y="693" width="0.0338%" height="15" fill="rgb(222,26,8)" fg:x="107556" fg:w="76"/><text x="48.1365%" y="703.50"></text></g><g><title>exc_page_fault (76 samples, 0.03%)</title><rect x="47.8865%" y="677" width="0.0338%" height="15" fill="rgb(213,106,44)" fg:x="107556" fg:w="76"/><text x="48.1365%" y="687.50"></text></g><g><title>do_user_addr_fault (75 samples, 0.03%)</title><rect x="47.8870%" y="661" width="0.0334%" height="15" fill="rgb(214,129,20)" fg:x="107557" fg:w="75"/><text x="48.1370%" y="671.50"></text></g><g><title>_dl_map_object_from_fd (837 samples, 0.37%)</title><rect x="47.5530%" y="725" width="0.3727%" height="15" fill="rgb(212,32,13)" fg:x="106807" fg:w="837"/><text x="47.8030%" y="735.50"></text></g><g><title>elf_get_dynamic_info (113 samples, 0.05%)</title><rect x="47.8754%" y="709" width="0.0503%" height="15" fill="rgb(208,168,33)" fg:x="107531" fg:w="113"/><text x="48.1254%" y="719.50"></text></g><g><title>link_path_walk.part.0 (31 samples, 0.01%)</title><rect x="47.9542%" y="597" width="0.0138%" height="15" fill="rgb(231,207,8)" fg:x="107708" fg:w="31"/><text x="48.2042%" y="607.50"></text></g><g><title>do_filp_open (80 samples, 0.04%)</title><rect x="47.9399%" y="629" width="0.0356%" height="15" fill="rgb(235,219,23)" fg:x="107676" fg:w="80"/><text x="48.1899%" y="639.50"></text></g><g><title>path_openat (79 samples, 0.04%)</title><rect x="47.9404%" y="613" width="0.0352%" height="15" fill="rgb(226,216,26)" fg:x="107677" fg:w="79"/><text x="48.1904%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.04%)</title><rect x="47.9377%" y="693" width="0.0414%" height="15" fill="rgb(239,137,16)" fg:x="107671" fg:w="93"/><text x="48.1877%" y="703.50"></text></g><g><title>do_syscall_64 (93 samples, 0.04%)</title><rect x="47.9377%" y="677" width="0.0414%" height="15" fill="rgb(207,12,36)" fg:x="107671" fg:w="93"/><text x="48.1877%" y="687.50"></text></g><g><title>__x64_sys_openat (92 samples, 0.04%)</title><rect x="47.9382%" y="661" width="0.0410%" height="15" fill="rgb(210,214,24)" fg:x="107672" fg:w="92"/><text x="48.1882%" y="671.50"></text></g><g><title>do_sys_openat2 (90 samples, 0.04%)</title><rect x="47.9391%" y="645" width="0.0401%" height="15" fill="rgb(206,56,30)" fg:x="107674" fg:w="90"/><text x="48.1891%" y="655.50"></text></g><g><title>__GI___open64_nocancel (99 samples, 0.04%)</title><rect x="47.9355%" y="709" width="0.0441%" height="15" fill="rgb(228,143,26)" fg:x="107666" fg:w="99"/><text x="48.1855%" y="719.50"></text></g><g><title>open_verify (128 samples, 0.06%)</title><rect x="47.9319%" y="725" width="0.0570%" height="15" fill="rgb(216,218,46)" fg:x="107658" fg:w="128"/><text x="48.1819%" y="735.50"></text></g><g><title>_dl_catch_exception (1,109 samples, 0.49%)</title><rect x="47.5090%" y="773" width="0.4938%" height="15" fill="rgb(206,6,19)" fg:x="106708" fg:w="1109"/><text x="47.7590%" y="783.50"></text></g><g><title>openaux (1,108 samples, 0.49%)</title><rect x="47.5094%" y="757" width="0.4933%" height="15" fill="rgb(239,177,51)" fg:x="106709" fg:w="1108"/><text x="47.7594%" y="767.50"></text></g><g><title>_dl_map_object (1,108 samples, 0.49%)</title><rect x="47.5094%" y="741" width="0.4933%" height="15" fill="rgb(216,55,25)" fg:x="106709" fg:w="1108"/><text x="47.7594%" y="751.50"></text></g><g><title>strcmp (31 samples, 0.01%)</title><rect x="47.9889%" y="725" width="0.0138%" height="15" fill="rgb(231,163,29)" fg:x="107786" fg:w="31"/><text x="48.2389%" y="735.50"></text></g><g><title>_dl_map_object_deps (1,173 samples, 0.52%)</title><rect x="47.5005%" y="789" width="0.5222%" height="15" fill="rgb(232,149,50)" fg:x="106689" fg:w="1173"/><text x="47.7505%" y="799.50"></text></g><g><title>find_needed (24 samples, 0.01%)</title><rect x="48.0361%" y="725" width="0.0107%" height="15" fill="rgb(223,142,48)" fg:x="107892" fg:w="24"/><text x="48.2861%" y="735.50"></text></g><g><title>_dl_name_match_p (23 samples, 0.01%)</title><rect x="48.0366%" y="709" width="0.0102%" height="15" fill="rgb(245,83,23)" fg:x="107893" fg:w="23"/><text x="48.2866%" y="719.50"></text></g><g><title>_dl_receive_error (110 samples, 0.05%)</title><rect x="48.0237%" y="789" width="0.0490%" height="15" fill="rgb(224,63,2)" fg:x="107864" fg:w="110"/><text x="48.2737%" y="799.50"></text></g><g><title>version_check_doit (110 samples, 0.05%)</title><rect x="48.0237%" y="773" width="0.0490%" height="15" fill="rgb(218,65,53)" fg:x="107864" fg:w="110"/><text x="48.2737%" y="783.50"></text></g><g><title>_dl_check_all_versions (110 samples, 0.05%)</title><rect x="48.0237%" y="757" width="0.0490%" height="15" fill="rgb(221,84,29)" fg:x="107864" fg:w="110"/><text x="48.2737%" y="767.50"></text></g><g><title>_dl_check_map_versions (109 samples, 0.05%)</title><rect x="48.0241%" y="741" width="0.0485%" height="15" fill="rgb(234,0,32)" fg:x="107865" fg:w="109"/><text x="48.2741%" y="751.50"></text></g><g><title>match_symbol (57 samples, 0.03%)</title><rect x="48.0472%" y="725" width="0.0254%" height="15" fill="rgb(206,20,16)" fg:x="107917" fg:w="57"/><text x="48.2972%" y="735.50"></text></g><g><title>strcmp (24 samples, 0.01%)</title><rect x="48.0619%" y="709" width="0.0107%" height="15" fill="rgb(244,172,18)" fg:x="107950" fg:w="24"/><text x="48.3119%" y="719.50"></text></g><g><title>__split_vma (32 samples, 0.01%)</title><rect x="48.0757%" y="661" width="0.0142%" height="15" fill="rgb(254,133,1)" fg:x="107981" fg:w="32"/><text x="48.3257%" y="671.50"></text></g><g><title>mprotect_fixup (60 samples, 0.03%)</title><rect x="48.0753%" y="677" width="0.0267%" height="15" fill="rgb(222,206,41)" fg:x="107980" fg:w="60"/><text x="48.3253%" y="687.50"></text></g><g><title>_dl_protect_relro (68 samples, 0.03%)</title><rect x="48.0726%" y="773" width="0.0303%" height="15" fill="rgb(212,3,42)" fg:x="107974" fg:w="68"/><text x="48.3226%" y="783.50"></text></g><g><title>__mprotect (68 samples, 0.03%)</title><rect x="48.0726%" y="757" width="0.0303%" height="15" fill="rgb(241,11,4)" fg:x="107974" fg:w="68"/><text x="48.3226%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.03%)</title><rect x="48.0731%" y="741" width="0.0298%" height="15" fill="rgb(205,19,26)" fg:x="107975" fg:w="67"/><text x="48.3231%" y="751.50"></text></g><g><title>do_syscall_64 (65 samples, 0.03%)</title><rect x="48.0740%" y="725" width="0.0289%" height="15" fill="rgb(210,179,32)" fg:x="107977" fg:w="65"/><text x="48.3240%" y="735.50"></text></g><g><title>__x64_sys_mprotect (65 samples, 0.03%)</title><rect x="48.0740%" y="709" width="0.0289%" height="15" fill="rgb(227,116,49)" fg:x="107977" fg:w="65"/><text x="48.3240%" y="719.50"></text></g><g><title>do_mprotect_pkey (65 samples, 0.03%)</title><rect x="48.0740%" y="693" width="0.0289%" height="15" fill="rgb(211,146,6)" fg:x="107977" fg:w="65"/><text x="48.3240%" y="703.50"></text></g><g><title>dl_new_hash (35 samples, 0.02%)</title><rect x="48.1465%" y="725" width="0.0156%" height="15" fill="rgb(219,44,39)" fg:x="108140" fg:w="35"/><text x="48.3965%" y="735.50"></text></g><g><title>check_match (60 samples, 0.03%)</title><rect x="48.2124%" y="709" width="0.0267%" height="15" fill="rgb(234,128,11)" fg:x="108288" fg:w="60"/><text x="48.4624%" y="719.50"></text></g><g><title>strcmp (40 samples, 0.02%)</title><rect x="48.2213%" y="693" width="0.0178%" height="15" fill="rgb(220,183,53)" fg:x="108308" fg:w="40"/><text x="48.4713%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (232 samples, 0.10%)</title><rect x="48.1372%" y="741" width="0.1033%" height="15" fill="rgb(213,219,32)" fg:x="108119" fg:w="232"/><text x="48.3872%" y="751.50"></text></g><g><title>do_lookup_x (176 samples, 0.08%)</title><rect x="48.1621%" y="725" width="0.0784%" height="15" fill="rgb(232,156,16)" fg:x="108175" fg:w="176"/><text x="48.4121%" y="735.50"></text></g><g><title>elf_machine_rela (265 samples, 0.12%)</title><rect x="48.1234%" y="757" width="0.1180%" height="15" fill="rgb(246,135,34)" fg:x="108088" fg:w="265"/><text x="48.3734%" y="767.50"></text></g><g><title>asm_exc_page_fault (60 samples, 0.03%)</title><rect x="48.2583%" y="741" width="0.0267%" height="15" fill="rgb(241,99,0)" fg:x="108391" fg:w="60"/><text x="48.5083%" y="751.50"></text></g><g><title>exc_page_fault (60 samples, 0.03%)</title><rect x="48.2583%" y="725" width="0.0267%" height="15" fill="rgb(222,103,45)" fg:x="108391" fg:w="60"/><text x="48.5083%" y="735.50"></text></g><g><title>do_user_addr_fault (60 samples, 0.03%)</title><rect x="48.2583%" y="709" width="0.0267%" height="15" fill="rgb(212,57,4)" fg:x="108391" fg:w="60"/><text x="48.5083%" y="719.50"></text></g><g><title>handle_mm_fault (58 samples, 0.03%)</title><rect x="48.2592%" y="693" width="0.0258%" height="15" fill="rgb(215,68,47)" fg:x="108393" fg:w="58"/><text x="48.5092%" y="703.50"></text></g><g><title>wp_page_copy (40 samples, 0.02%)</title><rect x="48.2672%" y="677" width="0.0178%" height="15" fill="rgb(230,84,2)" fg:x="108411" fg:w="40"/><text x="48.5172%" y="687.50"></text></g><g><title>elf_machine_rela_relative (107 samples, 0.05%)</title><rect x="48.2414%" y="757" width="0.0476%" height="15" fill="rgb(220,102,14)" fg:x="108353" fg:w="107"/><text x="48.4914%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (419 samples, 0.19%)</title><rect x="48.1029%" y="773" width="0.1865%" height="15" fill="rgb(240,10,32)" fg:x="108042" fg:w="419"/><text x="48.3529%" y="783.50"></text></g><g><title>asm_exc_page_fault (39 samples, 0.02%)</title><rect x="48.2935%" y="757" width="0.0174%" height="15" fill="rgb(215,47,27)" fg:x="108470" fg:w="39"/><text x="48.5435%" y="767.50"></text></g><g><title>exc_page_fault (39 samples, 0.02%)</title><rect x="48.2935%" y="741" width="0.0174%" height="15" fill="rgb(233,188,43)" fg:x="108470" fg:w="39"/><text x="48.5435%" y="751.50"></text></g><g><title>do_user_addr_fault (39 samples, 0.02%)</title><rect x="48.2935%" y="725" width="0.0174%" height="15" fill="rgb(253,190,1)" fg:x="108470" fg:w="39"/><text x="48.5435%" y="735.50"></text></g><g><title>handle_mm_fault (31 samples, 0.01%)</title><rect x="48.2970%" y="709" width="0.0138%" height="15" fill="rgb(206,114,52)" fg:x="108478" fg:w="31"/><text x="48.5470%" y="719.50"></text></g><g><title>wp_page_copy (24 samples, 0.01%)</title><rect x="48.3001%" y="693" width="0.0107%" height="15" fill="rgb(233,120,37)" fg:x="108485" fg:w="24"/><text x="48.5501%" y="703.50"></text></g><g><title>_dl_relocate_object (537 samples, 0.24%)</title><rect x="48.0726%" y="789" width="0.2391%" height="15" fill="rgb(214,52,39)" fg:x="107974" fg:w="537"/><text x="48.3226%" y="799.50"></text></g><g><title>elf_machine_runtime_setup (50 samples, 0.02%)</title><rect x="48.2894%" y="773" width="0.0223%" height="15" fill="rgb(223,80,29)" fg:x="108461" fg:w="50"/><text x="48.5394%" y="783.50"></text></g><g><title>do_syscall_64 (45 samples, 0.02%)</title><rect x="48.3122%" y="741" width="0.0200%" height="15" fill="rgb(230,101,40)" fg:x="108512" fg:w="45"/><text x="48.5622%" y="751.50"></text></g><g><title>__x64_sys_munmap (45 samples, 0.02%)</title><rect x="48.3122%" y="725" width="0.0200%" height="15" fill="rgb(219,211,8)" fg:x="108512" fg:w="45"/><text x="48.5622%" y="735.50"></text></g><g><title>__vm_munmap (45 samples, 0.02%)</title><rect x="48.3122%" y="709" width="0.0200%" height="15" fill="rgb(252,126,28)" fg:x="108512" fg:w="45"/><text x="48.5622%" y="719.50"></text></g><g><title>__do_munmap (44 samples, 0.02%)</title><rect x="48.3126%" y="693" width="0.0196%" height="15" fill="rgb(215,56,38)" fg:x="108513" fg:w="44"/><text x="48.5626%" y="703.50"></text></g><g><title>unmap_region (37 samples, 0.02%)</title><rect x="48.3157%" y="677" width="0.0165%" height="15" fill="rgb(249,55,44)" fg:x="108520" fg:w="37"/><text x="48.5657%" y="687.50"></text></g><g><title>_dl_unload_cache (53 samples, 0.02%)</title><rect x="48.3117%" y="789" width="0.0236%" height="15" fill="rgb(220,221,32)" fg:x="108511" fg:w="53"/><text x="48.5617%" y="799.50"></text></g><g><title>munmap (52 samples, 0.02%)</title><rect x="48.3122%" y="773" width="0.0232%" height="15" fill="rgb(212,216,41)" fg:x="108512" fg:w="52"/><text x="48.5622%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.02%)</title><rect x="48.3122%" y="757" width="0.0232%" height="15" fill="rgb(228,213,43)" fg:x="108512" fg:w="52"/><text x="48.5622%" y="767.50"></text></g><g><title>asm_exc_page_fault (30 samples, 0.01%)</title><rect x="48.3482%" y="757" width="0.0134%" height="15" fill="rgb(211,31,26)" fg:x="108593" fg:w="30"/><text x="48.5982%" y="767.50"></text></g><g><title>exc_page_fault (28 samples, 0.01%)</title><rect x="48.3491%" y="741" width="0.0125%" height="15" fill="rgb(229,202,19)" fg:x="108595" fg:w="28"/><text x="48.5991%" y="751.50"></text></g><g><title>do_user_addr_fault (26 samples, 0.01%)</title><rect x="48.3500%" y="725" width="0.0116%" height="15" fill="rgb(229,105,46)" fg:x="108597" fg:w="26"/><text x="48.6000%" y="735.50"></text></g><g><title>handle_mm_fault (26 samples, 0.01%)</title><rect x="48.3500%" y="709" width="0.0116%" height="15" fill="rgb(235,108,1)" fg:x="108597" fg:w="26"/><text x="48.6000%" y="719.50"></text></g><g><title>_dl_allocate_tls_storage (62 samples, 0.03%)</title><rect x="48.3433%" y="773" width="0.0276%" height="15" fill="rgb(245,111,35)" fg:x="108582" fg:w="62"/><text x="48.5933%" y="783.50"></text></g><g><title>[ld-2.31.so] (1,991 samples, 0.89%)</title><rect x="47.4894%" y="805" width="0.8864%" height="15" fill="rgb(219,185,31)" fg:x="106664" fg:w="1991"/><text x="47.7394%" y="815.50"></text></g><g><title>init_tls (75 samples, 0.03%)</title><rect x="48.3424%" y="789" width="0.0334%" height="15" fill="rgb(214,4,43)" fg:x="108580" fg:w="75"/><text x="48.5924%" y="799.50"></text></g><g><title>_dl_start_final (2,021 samples, 0.90%)</title><rect x="47.4867%" y="837" width="0.8998%" height="15" fill="rgb(235,227,40)" fg:x="106658" fg:w="2021"/><text x="47.7367%" y="847.50"></text></g><g><title>_dl_sysdep_start (2,021 samples, 0.90%)</title><rect x="47.4867%" y="821" width="0.8998%" height="15" fill="rgb(230,88,30)" fg:x="106658" fg:w="2021"/><text x="47.7367%" y="831.50"></text></g><g><title>_dl_start (2,057 samples, 0.92%)</title><rect x="47.4863%" y="853" width="0.9158%" height="15" fill="rgb(216,217,1)" fg:x="106657" fg:w="2057"/><text x="47.7363%" y="863.50"></text></g><g><title>_start (2,103 samples, 0.94%)</title><rect x="47.4827%" y="869" width="0.9363%" height="15" fill="rgb(248,139,50)" fg:x="106649" fg:w="2103"/><text x="47.7327%" y="879.50"></text></g><g><title>asm_exc_page_fault (168 samples, 0.07%)</title><rect x="48.4190%" y="869" width="0.0748%" height="15" fill="rgb(233,1,21)" fg:x="108752" fg:w="168"/><text x="48.6690%" y="879.50"></text></g><g><title>elf_map (33 samples, 0.01%)</title><rect x="48.5201%" y="773" width="0.0147%" height="15" fill="rgb(215,183,12)" fg:x="108979" fg:w="33"/><text x="48.7701%" y="783.50"></text></g><g><title>__install_special_mapping (26 samples, 0.01%)</title><rect x="48.5370%" y="757" width="0.0116%" height="15" fill="rgb(229,104,42)" fg:x="109017" fg:w="26"/><text x="48.7870%" y="767.50"></text></g><g><title>map_vdso (30 samples, 0.01%)</title><rect x="48.5370%" y="773" width="0.0134%" height="15" fill="rgb(243,34,48)" fg:x="109017" fg:w="30"/><text x="48.7870%" y="783.50"></text></g><g><title>do_mmap (36 samples, 0.02%)</title><rect x="48.5633%" y="757" width="0.0160%" height="15" fill="rgb(239,11,44)" fg:x="109076" fg:w="36"/><text x="48.8133%" y="767.50"></text></g><g><title>mmap_region (36 samples, 0.02%)</title><rect x="48.5633%" y="741" width="0.0160%" height="15" fill="rgb(231,98,35)" fg:x="109076" fg:w="36"/><text x="48.8133%" y="751.50"></text></g><g><title>__x64_sys_execve (196 samples, 0.09%)</title><rect x="48.4938%" y="837" width="0.0873%" height="15" fill="rgb(233,28,25)" fg:x="108920" fg:w="196"/><text x="48.7438%" y="847.50"></text></g><g><title>do_execveat_common (196 samples, 0.09%)</title><rect x="48.4938%" y="821" width="0.0873%" height="15" fill="rgb(234,123,11)" fg:x="108920" fg:w="196"/><text x="48.7438%" y="831.50"></text></g><g><title>bprm_execve (196 samples, 0.09%)</title><rect x="48.4938%" y="805" width="0.0873%" height="15" fill="rgb(220,69,3)" fg:x="108920" fg:w="196"/><text x="48.7438%" y="815.50"></text></g><g><title>load_elf_binary (196 samples, 0.09%)</title><rect x="48.4938%" y="789" width="0.0873%" height="15" fill="rgb(214,64,36)" fg:x="108920" fg:w="196"/><text x="48.7438%" y="799.50"></text></g><g><title>vm_mmap_pgoff (40 samples, 0.02%)</title><rect x="48.5633%" y="773" width="0.0178%" height="15" fill="rgb(211,138,32)" fg:x="109076" fg:w="40"/><text x="48.8133%" y="783.50"></text></g><g><title>unlink_anon_vmas (43 samples, 0.02%)</title><rect x="48.5962%" y="741" width="0.0191%" height="15" fill="rgb(213,118,47)" fg:x="109150" fg:w="43"/><text x="48.8462%" y="751.50"></text></g><g><title>free_pgtables (72 samples, 0.03%)</title><rect x="48.5922%" y="757" width="0.0321%" height="15" fill="rgb(243,124,49)" fg:x="109141" fg:w="72"/><text x="48.8422%" y="767.50"></text></g><g><title>kmem_cache_free (100 samples, 0.04%)</title><rect x="48.6398%" y="741" width="0.0445%" height="15" fill="rgb(221,30,28)" fg:x="109248" fg:w="100"/><text x="48.8898%" y="751.50"></text></g><g><title>remove_vma (124 samples, 0.06%)</title><rect x="48.6300%" y="757" width="0.0552%" height="15" fill="rgb(246,37,13)" fg:x="109226" fg:w="124"/><text x="48.8800%" y="767.50"></text></g><g><title>free_unref_page_list (32 samples, 0.01%)</title><rect x="48.7507%" y="725" width="0.0142%" height="15" fill="rgb(249,66,14)" fg:x="109497" fg:w="32"/><text x="49.0007%" y="735.50"></text></g><g><title>tlb_finish_mmu (205 samples, 0.09%)</title><rect x="48.6853%" y="757" width="0.0913%" height="15" fill="rgb(213,166,5)" fg:x="109350" fg:w="205"/><text x="48.9353%" y="767.50"></text></g><g><title>release_pages (167 samples, 0.07%)</title><rect x="48.7022%" y="741" width="0.0744%" height="15" fill="rgb(221,66,24)" fg:x="109388" fg:w="167"/><text x="48.9522%" y="751.50"></text></g><g><title>mem_cgroup_uncharge_list (24 samples, 0.01%)</title><rect x="48.7658%" y="725" width="0.0107%" height="15" fill="rgb(210,132,17)" fg:x="109531" fg:w="24"/><text x="49.0158%" y="735.50"></text></g><g><title>page_remove_rmap (37 samples, 0.02%)</title><rect x="48.8166%" y="725" width="0.0165%" height="15" fill="rgb(243,202,5)" fg:x="109645" fg:w="37"/><text x="49.0666%" y="735.50"></text></g><g><title>unmap_page_range (136 samples, 0.06%)</title><rect x="48.7783%" y="741" width="0.0606%" height="15" fill="rgb(233,70,48)" fg:x="109559" fg:w="136"/><text x="49.0283%" y="751.50"></text></g><g><title>exit_mmap (568 samples, 0.25%)</title><rect x="48.5886%" y="773" width="0.2529%" height="15" fill="rgb(238,41,26)" fg:x="109133" fg:w="568"/><text x="48.8386%" y="783.50"></text></g><g><title>unmap_vmas (146 samples, 0.07%)</title><rect x="48.7765%" y="757" width="0.0650%" height="15" fill="rgb(241,19,31)" fg:x="109555" fg:w="146"/><text x="49.0265%" y="767.50"></text></g><g><title>mmput (572 samples, 0.25%)</title><rect x="48.5873%" y="789" width="0.2547%" height="15" fill="rgb(214,76,10)" fg:x="109130" fg:w="572"/><text x="48.8373%" y="799.50"></text></g><g><title>__dentry_kill (23 samples, 0.01%)</title><rect x="48.8527%" y="757" width="0.0102%" height="15" fill="rgb(254,202,22)" fg:x="109726" fg:w="23"/><text x="49.1027%" y="767.50"></text></g><g><title>__fput (71 samples, 0.03%)</title><rect x="48.8482%" y="773" width="0.0316%" height="15" fill="rgb(214,72,24)" fg:x="109716" fg:w="71"/><text x="49.0982%" y="783.50"></text></g><g><title>__x64_sys_exit_group (675 samples, 0.30%)</title><rect x="48.5811%" y="837" width="0.3005%" height="15" fill="rgb(221,92,46)" fg:x="109116" fg:w="675"/><text x="48.8311%" y="847.50"></text></g><g><title>do_group_exit (675 samples, 0.30%)</title><rect x="48.5811%" y="821" width="0.3005%" height="15" fill="rgb(246,13,50)" fg:x="109116" fg:w="675"/><text x="48.8311%" y="831.50"></text></g><g><title>do_exit (675 samples, 0.30%)</title><rect x="48.5811%" y="805" width="0.3005%" height="15" fill="rgb(240,165,38)" fg:x="109116" fg:w="675"/><text x="48.8311%" y="815.50"></text></g><g><title>task_work_run (80 samples, 0.04%)</title><rect x="48.8460%" y="789" width="0.0356%" height="15" fill="rgb(241,24,51)" fg:x="109711" fg:w="80"/><text x="49.0960%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (884 samples, 0.39%)</title><rect x="48.4938%" y="869" width="0.3936%" height="15" fill="rgb(227,51,44)" fg:x="108920" fg:w="884"/><text x="48.7438%" y="879.50"></text></g><g><title>do_syscall_64 (884 samples, 0.39%)</title><rect x="48.4938%" y="853" width="0.3936%" height="15" fill="rgb(231,121,3)" fg:x="108920" fg:w="884"/><text x="48.7438%" y="863.50"></text></g><g><title>sed (3,716 samples, 1.65%)</title><rect x="47.2360%" y="885" width="1.6545%" height="15" fill="rgb(245,3,41)" fg:x="106095" fg:w="3716"/><text x="47.4860%" y="895.50"></text></g><g><title>[anon] (408 samples, 0.18%)</title><rect x="48.8985%" y="869" width="0.1817%" height="15" fill="rgb(214,13,26)" fg:x="109829" fg:w="408"/><text x="49.1485%" y="879.50"></text></g><g><title>lookup_fast (46 samples, 0.02%)</title><rect x="49.1354%" y="709" width="0.0205%" height="15" fill="rgb(252,75,11)" fg:x="110361" fg:w="46"/><text x="49.3854%" y="719.50"></text></g><g><title>__d_lookup_rcu (40 samples, 0.02%)</title><rect x="49.1380%" y="693" width="0.0178%" height="15" fill="rgb(218,226,17)" fg:x="110367" fg:w="40"/><text x="49.3880%" y="703.50"></text></g><g><title>link_path_walk.part.0 (88 samples, 0.04%)</title><rect x="49.1198%" y="741" width="0.0392%" height="15" fill="rgb(248,89,38)" fg:x="110326" fg:w="88"/><text x="49.3698%" y="751.50"></text></g><g><title>walk_component (54 samples, 0.02%)</title><rect x="49.1349%" y="725" width="0.0240%" height="15" fill="rgb(237,73,46)" fg:x="110360" fg:w="54"/><text x="49.3849%" y="735.50"></text></g><g><title>filename_lookup (125 samples, 0.06%)</title><rect x="49.1140%" y="773" width="0.0557%" height="15" fill="rgb(242,78,33)" fg:x="110313" fg:w="125"/><text x="49.3640%" y="783.50"></text></g><g><title>path_lookupat (118 samples, 0.05%)</title><rect x="49.1171%" y="757" width="0.0525%" height="15" fill="rgb(235,60,3)" fg:x="110320" fg:w="118"/><text x="49.3671%" y="767.50"></text></g><g><title>user_path_at_empty (27 samples, 0.01%)</title><rect x="49.1768%" y="773" width="0.0120%" height="15" fill="rgb(216,172,19)" fg:x="110454" fg:w="27"/><text x="49.4268%" y="783.50"></text></g><g><title>getname_flags.part.0 (26 samples, 0.01%)</title><rect x="49.1772%" y="757" width="0.0116%" height="15" fill="rgb(227,6,42)" fg:x="110455" fg:w="26"/><text x="49.4272%" y="767.50"></text></g><g><title>__do_sys_newlstat (176 samples, 0.08%)</title><rect x="49.1113%" y="805" width="0.0784%" height="15" fill="rgb(223,207,42)" fg:x="110307" fg:w="176"/><text x="49.3613%" y="815.50"></text></g><g><title>vfs_statx (173 samples, 0.08%)</title><rect x="49.1127%" y="789" width="0.0770%" height="15" fill="rgb(246,138,30)" fg:x="110310" fg:w="173"/><text x="49.3627%" y="799.50"></text></g><g><title>do_syscall_64 (180 samples, 0.08%)</title><rect x="49.1109%" y="821" width="0.0801%" height="15" fill="rgb(251,199,47)" fg:x="110306" fg:w="180"/><text x="49.3609%" y="831.50"></text></g><g><title>__GI___lxstat (185 samples, 0.08%)</title><rect x="49.1096%" y="853" width="0.0824%" height="15" fill="rgb(228,218,44)" fg:x="110303" fg:w="185"/><text x="49.3596%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (182 samples, 0.08%)</title><rect x="49.1109%" y="837" width="0.0810%" height="15" fill="rgb(220,68,6)" fg:x="110306" fg:w="182"/><text x="49.3609%" y="847.50"></text></g><g><title>btrfs_real_readdir (46 samples, 0.02%)</title><rect x="49.2030%" y="757" width="0.0205%" height="15" fill="rgb(240,60,26)" fg:x="110513" fg:w="46"/><text x="49.4530%" y="767.50"></text></g><g><title>__GI___readdir64 (52 samples, 0.02%)</title><rect x="49.2013%" y="853" width="0.0232%" height="15" fill="rgb(211,200,19)" fg:x="110509" fg:w="52"/><text x="49.4513%" y="863.50"></text></g><g><title>__GI___getdents64 (50 samples, 0.02%)</title><rect x="49.2022%" y="837" width="0.0223%" height="15" fill="rgb(242,145,30)" fg:x="110511" fg:w="50"/><text x="49.4522%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.02%)</title><rect x="49.2022%" y="821" width="0.0223%" height="15" fill="rgb(225,64,13)" fg:x="110511" fg:w="50"/><text x="49.4522%" y="831.50"></text></g><g><title>do_syscall_64 (50 samples, 0.02%)</title><rect x="49.2022%" y="805" width="0.0223%" height="15" fill="rgb(218,103,35)" fg:x="110511" fg:w="50"/><text x="49.4522%" y="815.50"></text></g><g><title>__x64_sys_getdents64 (50 samples, 0.02%)</title><rect x="49.2022%" y="789" width="0.0223%" height="15" fill="rgb(216,93,46)" fg:x="110511" fg:w="50"/><text x="49.4522%" y="799.50"></text></g><g><title>iterate_dir (48 samples, 0.02%)</title><rect x="49.2030%" y="773" width="0.0214%" height="15" fill="rgb(225,159,27)" fg:x="110513" fg:w="48"/><text x="49.4530%" y="783.50"></text></g><g><title>lookup_fast (23 samples, 0.01%)</title><rect x="49.2436%" y="709" width="0.0102%" height="15" fill="rgb(225,204,11)" fg:x="110604" fg:w="23"/><text x="49.4936%" y="719.50"></text></g><g><title>link_path_walk.part.0 (58 samples, 0.03%)</title><rect x="49.2289%" y="741" width="0.0258%" height="15" fill="rgb(205,56,4)" fg:x="110571" fg:w="58"/><text x="49.4789%" y="751.50"></text></g><g><title>walk_component (29 samples, 0.01%)</title><rect x="49.2418%" y="725" width="0.0129%" height="15" fill="rgb(206,6,35)" fg:x="110600" fg:w="29"/><text x="49.4918%" y="735.50"></text></g><g><title>filename_lookup (66 samples, 0.03%)</title><rect x="49.2280%" y="773" width="0.0294%" height="15" fill="rgb(247,73,52)" fg:x="110569" fg:w="66"/><text x="49.4780%" y="783.50"></text></g><g><title>path_lookupat (64 samples, 0.03%)</title><rect x="49.2289%" y="757" width="0.0285%" height="15" fill="rgb(246,97,4)" fg:x="110571" fg:w="64"/><text x="49.4789%" y="767.50"></text></g><g><title>__do_sys_newstat (106 samples, 0.05%)</title><rect x="49.2249%" y="805" width="0.0472%" height="15" fill="rgb(212,37,15)" fg:x="110562" fg:w="106"/><text x="49.4749%" y="815.50"></text></g><g><title>vfs_statx (101 samples, 0.04%)</title><rect x="49.2271%" y="789" width="0.0450%" height="15" fill="rgb(208,130,40)" fg:x="110567" fg:w="101"/><text x="49.4771%" y="799.50"></text></g><g><title>do_syscall_64 (109 samples, 0.05%)</title><rect x="49.2249%" y="821" width="0.0485%" height="15" fill="rgb(236,55,29)" fg:x="110562" fg:w="109"/><text x="49.4749%" y="831.50"></text></g><g><title>__GI___xstat (114 samples, 0.05%)</title><rect x="49.2249%" y="853" width="0.0508%" height="15" fill="rgb(209,156,45)" fg:x="110562" fg:w="114"/><text x="49.4749%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (114 samples, 0.05%)</title><rect x="49.2249%" y="837" width="0.0508%" height="15" fill="rgb(249,107,4)" fg:x="110562" fg:w="114"/><text x="49.4749%" y="847.50"></text></g><g><title>__GI_remove (35 samples, 0.02%)</title><rect x="49.2756%" y="853" width="0.0156%" height="15" fill="rgb(227,7,13)" fg:x="110676" fg:w="35"/><text x="49.5256%" y="863.50"></text></g><g><title>__unlink (24 samples, 0.01%)</title><rect x="49.2805%" y="837" width="0.0107%" height="15" fill="rgb(250,129,14)" fg:x="110687" fg:w="24"/><text x="49.5305%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.01%)</title><rect x="49.2805%" y="821" width="0.0107%" height="15" fill="rgb(229,92,13)" fg:x="110687" fg:w="24"/><text x="49.5305%" y="831.50"></text></g><g><title>do_syscall_64 (24 samples, 0.01%)</title><rect x="49.2805%" y="805" width="0.0107%" height="15" fill="rgb(245,98,39)" fg:x="110687" fg:w="24"/><text x="49.5305%" y="815.50"></text></g><g><title>do_unlinkat (23 samples, 0.01%)</title><rect x="49.2810%" y="789" width="0.0102%" height="15" fill="rgb(234,135,48)" fg:x="110688" fg:w="23"/><text x="49.5310%" y="799.50"></text></g><g><title>__GI_unlinkat (23 samples, 0.01%)</title><rect x="49.2912%" y="853" width="0.0102%" height="15" fill="rgb(230,98,28)" fg:x="110711" fg:w="23"/><text x="49.5412%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.01%)</title><rect x="49.2912%" y="837" width="0.0102%" height="15" fill="rgb(223,121,0)" fg:x="110711" fg:w="23"/><text x="49.5412%" y="847.50"></text></g><g><title>do_syscall_64 (23 samples, 0.01%)</title><rect x="49.2912%" y="821" width="0.0102%" height="15" fill="rgb(234,173,33)" fg:x="110711" fg:w="23"/><text x="49.5412%" y="831.50"></text></g><g><title>do_filp_open (26 samples, 0.01%)</title><rect x="49.3224%" y="757" width="0.0116%" height="15" fill="rgb(245,47,8)" fg:x="110781" fg:w="26"/><text x="49.5724%" y="767.50"></text></g><g><title>path_openat (25 samples, 0.01%)</title><rect x="49.3228%" y="741" width="0.0111%" height="15" fill="rgb(205,17,20)" fg:x="110782" fg:w="25"/><text x="49.5728%" y="751.50"></text></g><g><title>__x64_sys_openat (33 samples, 0.01%)</title><rect x="49.3210%" y="789" width="0.0147%" height="15" fill="rgb(232,151,16)" fg:x="110778" fg:w="33"/><text x="49.5710%" y="799.50"></text></g><g><title>do_sys_openat2 (33 samples, 0.01%)</title><rect x="49.3210%" y="773" width="0.0147%" height="15" fill="rgb(208,30,32)" fg:x="110778" fg:w="33"/><text x="49.5710%" y="783.50"></text></g><g><title>__opendir (34 samples, 0.02%)</title><rect x="49.3210%" y="853" width="0.0151%" height="15" fill="rgb(254,26,3)" fg:x="110778" fg:w="34"/><text x="49.5710%" y="863.50"></text></g><g><title>__GI___open64_nocancel (34 samples, 0.02%)</title><rect x="49.3210%" y="837" width="0.0151%" height="15" fill="rgb(240,177,30)" fg:x="110778" fg:w="34"/><text x="49.5710%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.02%)</title><rect x="49.3210%" y="821" width="0.0151%" height="15" fill="rgb(248,76,44)" fg:x="110778" fg:w="34"/><text x="49.5710%" y="831.50"></text></g><g><title>do_syscall_64 (34 samples, 0.02%)</title><rect x="49.3210%" y="805" width="0.0151%" height="15" fill="rgb(241,186,54)" fg:x="110778" fg:w="34"/><text x="49.5710%" y="815.50"></text></g><g><title>JavaCalls::call_helper (25 samples, 0.01%)</title><rect x="49.3918%" y="821" width="0.0111%" height="15" fill="rgb(249,171,29)" fg:x="110937" fg:w="25"/><text x="49.6418%" y="831.50"></text></g><g><title>jni_NewObjectV (97 samples, 0.04%)</title><rect x="49.3620%" y="853" width="0.0432%" height="15" fill="rgb(237,151,44)" fg:x="110870" fg:w="97"/><text x="49.6120%" y="863.50"></text></g><g><title>jni_invoke_nonstatic (47 samples, 0.02%)</title><rect x="49.3843%" y="837" width="0.0209%" height="15" fill="rgb(228,174,30)" fg:x="110920" fg:w="47"/><text x="49.6343%" y="847.50"></text></g><g><title>[libunix_jni.so] (783 samples, 0.35%)</title><rect x="49.0802%" y="869" width="0.3486%" height="15" fill="rgb(252,14,37)" fg:x="110237" fg:w="783"/><text x="49.3302%" y="879.50"></text></g><g><title>SystemDictionary::load_instance_class (23 samples, 0.01%)</title><rect x="65.8072%" y="789" width="0.0102%" height="15" fill="rgb(207,111,40)" fg:x="147807" fg:w="23"/><text x="66.0572%" y="799.50"></text></g><g><title>ConstantPool::klass_at_impl (40 samples, 0.02%)</title><rect x="65.8010%" y="837" width="0.0178%" height="15" fill="rgb(248,171,54)" fg:x="147793" fg:w="40"/><text x="66.0510%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (36 samples, 0.02%)</title><rect x="65.8028%" y="821" width="0.0160%" height="15" fill="rgb(211,127,2)" fg:x="147797" fg:w="36"/><text x="66.0528%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (35 samples, 0.02%)</title><rect x="65.8032%" y="805" width="0.0156%" height="15" fill="rgb(236,87,47)" fg:x="147798" fg:w="35"/><text x="66.0532%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (76 samples, 0.03%)</title><rect x="65.8210%" y="821" width="0.0338%" height="15" fill="rgb(223,190,45)" fg:x="147838" fg:w="76"/><text x="66.0710%" y="831.50"></text></g><g><title>InterpreterRuntime::_new (128 samples, 0.06%)</title><rect x="65.8010%" y="853" width="0.0570%" height="15" fill="rgb(215,5,16)" fg:x="147793" fg:w="128"/><text x="66.0510%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (83 samples, 0.04%)</title><rect x="65.8210%" y="837" width="0.0370%" height="15" fill="rgb(252,82,33)" fg:x="147838" fg:w="83"/><text x="66.0710%" y="847.50"></text></g><g><title>CollectedHeap::array_allocate (37 samples, 0.02%)</title><rect x="65.8776%" y="821" width="0.0165%" height="15" fill="rgb(247,213,44)" fg:x="147965" fg:w="37"/><text x="66.1276%" y="831.50"></text></g><g><title>MemAllocator::allocate (35 samples, 0.02%)</title><rect x="65.8785%" y="805" width="0.0156%" height="15" fill="rgb(205,196,44)" fg:x="147967" fg:w="35"/><text x="66.1285%" y="815.50"></text></g><g><title>InstanceKlass::allocate_objArray (69 samples, 0.03%)</title><rect x="65.8687%" y="837" width="0.0307%" height="15" fill="rgb(237,96,54)" fg:x="147945" fg:w="69"/><text x="66.1187%" y="847.50"></text></g><g><title>InterpreterRuntime::anewarray (106 samples, 0.05%)</title><rect x="65.8580%" y="853" width="0.0472%" height="15" fill="rgb(230,113,34)" fg:x="147921" fg:w="106"/><text x="66.1080%" y="863.50"></text></g><g><title>TieredThresholdPolicy::call_event (33 samples, 0.01%)</title><rect x="65.9412%" y="789" width="0.0147%" height="15" fill="rgb(221,224,12)" fg:x="148108" fg:w="33"/><text x="66.1912%" y="799.50"></text></g><g><title>CompileBroker::compile_method_base (30 samples, 0.01%)</title><rect x="65.9586%" y="741" width="0.0134%" height="15" fill="rgb(219,112,44)" fg:x="148147" fg:w="30"/><text x="66.2086%" y="751.50"></text></g><g><title>CompileBroker::compile_method (35 samples, 0.02%)</title><rect x="65.9577%" y="757" width="0.0156%" height="15" fill="rgb(210,31,13)" fg:x="148145" fg:w="35"/><text x="66.2077%" y="767.50"></text></g><g><title>TieredThresholdPolicy::compile (40 samples, 0.02%)</title><rect x="65.9559%" y="789" width="0.0178%" height="15" fill="rgb(230,25,16)" fg:x="148141" fg:w="40"/><text x="66.2059%" y="799.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (38 samples, 0.02%)</title><rect x="65.9568%" y="773" width="0.0169%" height="15" fill="rgb(246,108,53)" fg:x="148143" fg:w="38"/><text x="66.2068%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (103 samples, 0.05%)</title><rect x="65.9288%" y="821" width="0.0459%" height="15" fill="rgb(241,172,50)" fg:x="148080" fg:w="103"/><text x="66.1788%" y="831.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (95 samples, 0.04%)</title><rect x="65.9323%" y="805" width="0.0423%" height="15" fill="rgb(235,141,10)" fg:x="148088" fg:w="95"/><text x="66.1823%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (122 samples, 0.05%)</title><rect x="65.9208%" y="853" width="0.0543%" height="15" fill="rgb(220,174,43)" fg:x="148062" fg:w="122"/><text x="66.1708%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (122 samples, 0.05%)</title><rect x="65.9208%" y="837" width="0.0543%" height="15" fill="rgb(215,181,40)" fg:x="148062" fg:w="122"/><text x="66.1708%" y="847.50"></text></g><g><title>JavaThread::pd_last_frame (29 samples, 0.01%)</title><rect x="65.9916%" y="837" width="0.0129%" height="15" fill="rgb(230,97,2)" fg:x="148221" fg:w="29"/><text x="66.2416%" y="847.50"></text></g><g><title>CodeCache::find_blob (25 samples, 0.01%)</title><rect x="65.9933%" y="821" width="0.0111%" height="15" fill="rgb(211,25,27)" fg:x="148225" fg:w="25"/><text x="66.2433%" y="831.50"></text></g><g><title>InterpreterRuntime::ldc (76 samples, 0.03%)</title><rect x="65.9751%" y="853" width="0.0338%" height="15" fill="rgb(230,87,26)" fg:x="148184" fg:w="76"/><text x="66.2251%" y="863.50"></text></g><g><title>LinkResolver::resolve_field_access (28 samples, 0.01%)</title><rect x="66.0339%" y="821" width="0.0125%" height="15" fill="rgb(227,160,17)" fg:x="148316" fg:w="28"/><text x="66.2839%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (32 samples, 0.01%)</title><rect x="66.0330%" y="837" width="0.0142%" height="15" fill="rgb(244,85,34)" fg:x="148314" fg:w="32"/><text x="66.2830%" y="847.50"></text></g><g><title>ConstantPool::klass_ref_at (25 samples, 0.01%)</title><rect x="66.0730%" y="805" width="0.0111%" height="15" fill="rgb(207,70,0)" fg:x="148404" fg:w="25"/><text x="66.3230%" y="815.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (41 samples, 0.02%)</title><rect x="66.0926%" y="805" width="0.0183%" height="15" fill="rgb(223,129,7)" fg:x="148448" fg:w="41"/><text x="66.3426%" y="815.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (34 samples, 0.02%)</title><rect x="66.1167%" y="789" width="0.0151%" height="15" fill="rgb(246,105,7)" fg:x="148502" fg:w="34"/><text x="66.3667%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (49 samples, 0.02%)</title><rect x="66.1109%" y="805" width="0.0218%" height="15" fill="rgb(215,154,42)" fg:x="148489" fg:w="49"/><text x="66.3609%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (50 samples, 0.02%)</title><rect x="66.1336%" y="773" width="0.0223%" height="15" fill="rgb(220,215,30)" fg:x="148540" fg:w="50"/><text x="66.3836%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (53 samples, 0.02%)</title><rect x="66.1331%" y="789" width="0.0236%" height="15" fill="rgb(228,81,51)" fg:x="148539" fg:w="53"/><text x="66.3831%" y="799.50"></text></g><g><title>LinkResolver::resolve_static_call (70 samples, 0.03%)</title><rect x="66.1327%" y="805" width="0.0312%" height="15" fill="rgb(247,71,54)" fg:x="148538" fg:w="70"/><text x="66.3827%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (221 samples, 0.10%)</title><rect x="66.0699%" y="821" width="0.0984%" height="15" fill="rgb(234,176,34)" fg:x="148397" fg:w="221"/><text x="66.3199%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (292 samples, 0.13%)</title><rect x="66.0472%" y="837" width="0.1300%" height="15" fill="rgb(241,103,54)" fg:x="148346" fg:w="292"/><text x="66.2972%" y="847.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (35 samples, 0.02%)</title><rect x="66.1781%" y="789" width="0.0156%" height="15" fill="rgb(228,22,34)" fg:x="148640" fg:w="35"/><text x="66.4281%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (47 samples, 0.02%)</title><rect x="66.1772%" y="837" width="0.0209%" height="15" fill="rgb(241,179,48)" fg:x="148638" fg:w="47"/><text x="66.4272%" y="847.50"></text></g><g><title>LinkResolver::resolve_invoke (45 samples, 0.02%)</title><rect x="66.1781%" y="821" width="0.0200%" height="15" fill="rgb(235,167,37)" fg:x="148640" fg:w="45"/><text x="66.4281%" y="831.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (45 samples, 0.02%)</title><rect x="66.1781%" y="805" width="0.0200%" height="15" fill="rgb(213,109,30)" fg:x="148640" fg:w="45"/><text x="66.4281%" y="815.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (379 samples, 0.17%)</title><rect x="66.0298%" y="853" width="0.1687%" height="15" fill="rgb(222,172,16)" fg:x="148307" fg:w="379"/><text x="66.2798%" y="863.50"></text></g><g><title>JVM_Clone (56 samples, 0.02%)</title><rect x="66.2097%" y="853" width="0.0249%" height="15" fill="rgb(233,192,5)" fg:x="148711" fg:w="56"/><text x="66.4597%" y="863.50"></text></g><g><title>get_parameter_types (23 samples, 0.01%)</title><rect x="66.2743%" y="805" width="0.0102%" height="15" fill="rgb(247,189,41)" fg:x="148856" fg:w="23"/><text x="66.5243%" y="815.50"></text></g><g><title>JVM_GetClassDeclaredMethods (39 samples, 0.02%)</title><rect x="66.2698%" y="853" width="0.0174%" height="15" fill="rgb(218,134,47)" fg:x="148846" fg:w="39"/><text x="66.5198%" y="863.50"></text></g><g><title>get_class_declared_methods_helper (39 samples, 0.02%)</title><rect x="66.2698%" y="837" width="0.0174%" height="15" fill="rgb(216,29,3)" fg:x="148846" fg:w="39"/><text x="66.5198%" y="847.50"></text></g><g><title>Reflection::new_method (35 samples, 0.02%)</title><rect x="66.2716%" y="821" width="0.0156%" height="15" fill="rgb(246,140,12)" fg:x="148850" fg:w="35"/><text x="66.5216%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (23 samples, 0.01%)</title><rect x="66.2961%" y="549" width="0.0102%" height="15" fill="rgb(230,136,11)" fg:x="148905" fg:w="23"/><text x="66.5461%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (23 samples, 0.01%)</title><rect x="66.2961%" y="533" width="0.0102%" height="15" fill="rgb(247,22,47)" fg:x="148905" fg:w="23"/><text x="66.5461%" y="543.50"></text></g><g><title>native_write_msr (23 samples, 0.01%)</title><rect x="66.2961%" y="517" width="0.0102%" height="15" fill="rgb(218,84,22)" fg:x="148905" fg:w="23"/><text x="66.5461%" y="527.50"></text></g><g><title>__pthread_cond_wait (25 samples, 0.01%)</title><rect x="66.2956%" y="741" width="0.0111%" height="15" fill="rgb(216,87,39)" fg:x="148904" fg:w="25"/><text x="66.5456%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (25 samples, 0.01%)</title><rect x="66.2956%" y="725" width="0.0111%" height="15" fill="rgb(221,178,8)" fg:x="148904" fg:w="25"/><text x="66.5456%" y="735.50"></text></g><g><title>futex_wait_cancelable (25 samples, 0.01%)</title><rect x="66.2956%" y="709" width="0.0111%" height="15" fill="rgb(230,42,11)" fg:x="148904" fg:w="25"/><text x="66.5456%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (24 samples, 0.01%)</title><rect x="66.2961%" y="693" width="0.0107%" height="15" fill="rgb(237,229,4)" fg:x="148905" fg:w="24"/><text x="66.5461%" y="703.50"></text></g><g><title>do_syscall_64 (24 samples, 0.01%)</title><rect x="66.2961%" y="677" width="0.0107%" height="15" fill="rgb(222,31,33)" fg:x="148905" fg:w="24"/><text x="66.5461%" y="687.50"></text></g><g><title>__x64_sys_futex (24 samples, 0.01%)</title><rect x="66.2961%" y="661" width="0.0107%" height="15" fill="rgb(210,17,39)" fg:x="148905" fg:w="24"/><text x="66.5461%" y="671.50"></text></g><g><title>do_futex (24 samples, 0.01%)</title><rect x="66.2961%" y="645" width="0.0107%" height="15" fill="rgb(244,93,20)" fg:x="148905" fg:w="24"/><text x="66.5461%" y="655.50"></text></g><g><title>futex_wait (24 samples, 0.01%)</title><rect x="66.2961%" y="629" width="0.0107%" height="15" fill="rgb(210,40,47)" fg:x="148905" fg:w="24"/><text x="66.5461%" y="639.50"></text></g><g><title>futex_wait_queue_me (24 samples, 0.01%)</title><rect x="66.2961%" y="613" width="0.0107%" height="15" fill="rgb(239,211,47)" fg:x="148905" fg:w="24"/><text x="66.5461%" y="623.50"></text></g><g><title>schedule (24 samples, 0.01%)</title><rect x="66.2961%" y="597" width="0.0107%" height="15" fill="rgb(251,223,49)" fg:x="148905" fg:w="24"/><text x="66.5461%" y="607.50"></text></g><g><title>__schedule (24 samples, 0.01%)</title><rect x="66.2961%" y="581" width="0.0107%" height="15" fill="rgb(221,149,5)" fg:x="148905" fg:w="24"/><text x="66.5461%" y="591.50"></text></g><g><title>finish_task_switch (24 samples, 0.01%)</title><rect x="66.2961%" y="565" width="0.0107%" height="15" fill="rgb(219,224,51)" fg:x="148905" fg:w="24"/><text x="66.5461%" y="575.50"></text></g><g><title>Monitor::IWait (26 samples, 0.01%)</title><rect x="66.2956%" y="773" width="0.0116%" height="15" fill="rgb(223,7,8)" fg:x="148904" fg:w="26"/><text x="66.5456%" y="783.50"></text></g><g><title>os::PlatformEvent::park (26 samples, 0.01%)</title><rect x="66.2956%" y="757" width="0.0116%" height="15" fill="rgb(241,217,22)" fg:x="148904" fg:w="26"/><text x="66.5456%" y="767.50"></text></g><g><title>Monitor::wait (27 samples, 0.01%)</title><rect x="66.2956%" y="789" width="0.0120%" height="15" fill="rgb(248,209,0)" fg:x="148904" fg:w="27"/><text x="66.5456%" y="799.50"></text></g><g><title>VMThread::execute (28 samples, 0.01%)</title><rect x="66.2956%" y="805" width="0.0125%" height="15" fill="rgb(217,205,4)" fg:x="148904" fg:w="28"/><text x="66.5456%" y="815.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (30 samples, 0.01%)</title><rect x="66.2952%" y="821" width="0.0134%" height="15" fill="rgb(228,124,39)" fg:x="148903" fg:w="30"/><text x="66.5452%" y="831.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (47 samples, 0.02%)</title><rect x="66.2885%" y="837" width="0.0209%" height="15" fill="rgb(250,116,42)" fg:x="148888" fg:w="47"/><text x="66.5385%" y="847.50"></text></g><g><title>JVM_IHashCode (55 samples, 0.02%)</title><rect x="66.2876%" y="853" width="0.0245%" height="15" fill="rgb(223,202,9)" fg:x="148886" fg:w="55"/><text x="66.5376%" y="863.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (35 samples, 0.02%)</title><rect x="66.3219%" y="821" width="0.0156%" height="15" fill="rgb(242,222,40)" fg:x="148963" fg:w="35"/><text x="66.5719%" y="831.50"></text></g><g><title>StringTable::intern (25 samples, 0.01%)</title><rect x="66.3264%" y="805" width="0.0111%" height="15" fill="rgb(229,99,46)" fg:x="148973" fg:w="25"/><text x="66.5764%" y="815.50"></text></g><g><title>JVM_InitStackTraceElementArray (41 samples, 0.02%)</title><rect x="66.3201%" y="853" width="0.0183%" height="15" fill="rgb(225,56,46)" fg:x="148959" fg:w="41"/><text x="66.5701%" y="863.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (41 samples, 0.02%)</title><rect x="66.3201%" y="837" width="0.0183%" height="15" fill="rgb(227,94,5)" fg:x="148959" fg:w="41"/><text x="66.5701%" y="847.50"></text></g><g><title>ThreadsListHandle::cv_internal_thread_to_JavaThread (26 samples, 0.01%)</title><rect x="66.3615%" y="837" width="0.0116%" height="15" fill="rgb(205,112,38)" fg:x="149052" fg:w="26"/><text x="66.6115%" y="847.50"></text></g><g><title>JVM_IsInterrupted (66 samples, 0.03%)</title><rect x="66.3477%" y="853" width="0.0294%" height="15" fill="rgb(231,133,46)" fg:x="149021" fg:w="66"/><text x="66.5977%" y="863.50"></text></g><g><title>SymbolTable::lookup_only (246 samples, 0.11%)</title><rect x="66.4386%" y="709" width="0.1095%" height="15" fill="rgb(217,16,9)" fg:x="149225" fg:w="246"/><text x="66.6886%" y="719.50"></text></g><g><title>ClassFileParser::parse_constant_pool (283 samples, 0.13%)</title><rect x="66.4225%" y="741" width="0.1260%" height="15" fill="rgb(249,173,9)" fg:x="149189" fg:w="283"/><text x="66.6725%" y="751.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (274 samples, 0.12%)</title><rect x="66.4265%" y="725" width="0.1220%" height="15" fill="rgb(205,163,53)" fg:x="149198" fg:w="274"/><text x="66.6765%" y="735.50"></text></g><g><title>ClassFileParser::parse_method (68 samples, 0.03%)</title><rect x="66.5517%" y="725" width="0.0303%" height="15" fill="rgb(217,54,41)" fg:x="149479" fg:w="68"/><text x="66.8017%" y="735.50"></text></g><g><title>ClassFileParser::parse_methods (69 samples, 0.03%)</title><rect x="66.5517%" y="741" width="0.0307%" height="15" fill="rgb(228,216,12)" fg:x="149479" fg:w="69"/><text x="66.8017%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (369 samples, 0.16%)</title><rect x="66.4212%" y="757" width="0.1643%" height="15" fill="rgb(244,228,15)" fg:x="149186" fg:w="369"/><text x="66.6712%" y="767.50"></text></g><g><title>ClassFileParser::ClassFileParser (371 samples, 0.17%)</title><rect x="66.4212%" y="773" width="0.1652%" height="15" fill="rgb(221,176,53)" fg:x="149186" fg:w="371"/><text x="66.6712%" y="783.50"></text></g><g><title>DefaultMethods::generate_default_methods (35 samples, 0.02%)</title><rect x="66.5899%" y="741" width="0.0156%" height="15" fill="rgb(205,94,34)" fg:x="149565" fg:w="35"/><text x="66.8399%" y="751.50"></text></g><g><title>ClassFileParser::fill_instance_klass (55 samples, 0.02%)</title><rect x="66.5864%" y="757" width="0.0245%" height="15" fill="rgb(213,110,48)" fg:x="149557" fg:w="55"/><text x="66.8364%" y="767.50"></text></g><g><title>ClassFileParser::create_instance_klass (59 samples, 0.03%)</title><rect x="66.5864%" y="773" width="0.0263%" height="15" fill="rgb(236,142,28)" fg:x="149557" fg:w="59"/><text x="66.8364%" y="783.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (23 samples, 0.01%)</title><rect x="66.6126%" y="773" width="0.0102%" height="15" fill="rgb(225,135,29)" fg:x="149616" fg:w="23"/><text x="66.8626%" y="783.50"></text></g><g><title>KlassFactory::create_from_stream (456 samples, 0.20%)</title><rect x="66.4208%" y="789" width="0.2030%" height="15" fill="rgb(252,45,31)" fg:x="149185" fg:w="456"/><text x="66.6708%" y="799.50"></text></g><g><title>SystemDictionary::find_or_define_instance_class (24 samples, 0.01%)</title><rect x="66.6238%" y="789" width="0.0107%" height="15" fill="rgb(211,187,50)" fg:x="149641" fg:w="24"/><text x="66.8738%" y="799.50"></text></g><g><title>SystemDictionary::define_instance_class (23 samples, 0.01%)</title><rect x="66.6242%" y="773" width="0.0102%" height="15" fill="rgb(229,109,7)" fg:x="149642" fg:w="23"/><text x="66.8742%" y="783.50"></text></g><g><title>JVM_DefineClassWithSource (488 samples, 0.22%)</title><rect x="66.4176%" y="837" width="0.2173%" height="15" fill="rgb(251,131,51)" fg:x="149178" fg:w="488"/><text x="66.6676%" y="847.50"></text></g><g><title>jvm_define_class_common (488 samples, 0.22%)</title><rect x="66.4176%" y="821" width="0.2173%" height="15" fill="rgb(251,180,35)" fg:x="149178" fg:w="488"/><text x="66.6676%" y="831.50"></text></g><g><title>SystemDictionary::resolve_from_stream (483 samples, 0.22%)</title><rect x="66.4199%" y="805" width="0.2150%" height="15" fill="rgb(211,46,32)" fg:x="149183" fg:w="483"/><text x="66.6699%" y="815.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (503 samples, 0.22%)</title><rect x="66.4167%" y="853" width="0.2239%" height="15" fill="rgb(248,123,17)" fg:x="149176" fg:w="503"/><text x="66.6667%" y="863.50"></text></g><g><title>SystemDictionary::resolve_or_null (27 samples, 0.01%)</title><rect x="66.6411%" y="821" width="0.0120%" height="15" fill="rgb(227,141,18)" fg:x="149680" fg:w="27"/><text x="66.8911%" y="831.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (27 samples, 0.01%)</title><rect x="66.6411%" y="805" width="0.0120%" height="15" fill="rgb(216,102,9)" fg:x="149680" fg:w="27"/><text x="66.8911%" y="815.50"></text></g><g><title>JVM_FindClassFromBootLoader (29 samples, 0.01%)</title><rect x="66.6407%" y="837" width="0.0129%" height="15" fill="rgb(253,47,13)" fg:x="149679" fg:w="29"/><text x="66.8907%" y="847.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (34 samples, 0.02%)</title><rect x="66.6407%" y="853" width="0.0151%" height="15" fill="rgb(226,93,23)" fg:x="149679" fg:w="34"/><text x="66.8907%" y="863.50"></text></g><g><title>copy_process (23 samples, 0.01%)</title><rect x="66.6776%" y="741" width="0.0102%" height="15" fill="rgb(247,104,17)" fg:x="149762" fg:w="23"/><text x="66.9276%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.01%)</title><rect x="66.6776%" y="805" width="0.0120%" height="15" fill="rgb(233,203,26)" fg:x="149762" fg:w="27"/><text x="66.9276%" y="815.50"></text></g><g><title>do_syscall_64 (27 samples, 0.01%)</title><rect x="66.6776%" y="789" width="0.0120%" height="15" fill="rgb(244,98,49)" fg:x="149762" fg:w="27"/><text x="66.9276%" y="799.50"></text></g><g><title>__x64_sys_vfork (27 samples, 0.01%)</title><rect x="66.6776%" y="773" width="0.0120%" height="15" fill="rgb(235,134,22)" fg:x="149762" fg:w="27"/><text x="66.9276%" y="783.50"></text></g><g><title>kernel_clone (27 samples, 0.01%)</title><rect x="66.6776%" y="757" width="0.0120%" height="15" fill="rgb(221,70,32)" fg:x="149762" fg:w="27"/><text x="66.9276%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (690 samples, 0.31%)</title><rect x="66.7021%" y="757" width="0.3072%" height="15" fill="rgb(238,15,50)" fg:x="149817" fg:w="690"/><text x="66.9521%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (678 samples, 0.30%)</title><rect x="66.7075%" y="741" width="0.3019%" height="15" fill="rgb(215,221,48)" fg:x="149829" fg:w="678"/><text x="66.9575%" y="751.50"></text></g><g><title>native_write_msr (678 samples, 0.30%)</title><rect x="66.7075%" y="725" width="0.3019%" height="15" fill="rgb(236,73,3)" fg:x="149829" fg:w="678"/><text x="66.9575%" y="735.50"></text></g><g><title>schedule_tail (711 samples, 0.32%)</title><rect x="66.6963%" y="789" width="0.3166%" height="15" fill="rgb(250,107,11)" fg:x="149804" fg:w="711"/><text x="66.9463%" y="799.50"></text></g><g><title>finish_task_switch (710 samples, 0.32%)</title><rect x="66.6968%" y="773" width="0.3161%" height="15" fill="rgb(242,39,14)" fg:x="149805" fg:w="710"/><text x="66.9468%" y="783.50"></text></g><g><title>__libc_vfork (754 samples, 0.34%)</title><rect x="66.6776%" y="821" width="0.3357%" height="15" fill="rgb(248,164,37)" fg:x="149762" fg:w="754"/><text x="66.9276%" y="831.50"></text></g><g><title>ret_from_fork (727 samples, 0.32%)</title><rect x="66.6897%" y="805" width="0.3237%" height="15" fill="rgb(217,60,12)" fg:x="149789" fg:w="727"/><text x="66.9397%" y="815.50"></text></g><g><title>sched_exec (27 samples, 0.01%)</title><rect x="67.0223%" y="693" width="0.0120%" height="15" fill="rgb(240,125,29)" fg:x="150536" fg:w="27"/><text x="67.2723%" y="703.50"></text></g><g><title>stop_one_cpu (25 samples, 0.01%)</title><rect x="67.0231%" y="677" width="0.0111%" height="15" fill="rgb(208,207,28)" fg:x="150538" fg:w="25"/><text x="67.2731%" y="687.50"></text></g><g><title>_cond_resched (24 samples, 0.01%)</title><rect x="67.0236%" y="661" width="0.0107%" height="15" fill="rgb(209,159,27)" fg:x="150539" fg:w="24"/><text x="67.2736%" y="671.50"></text></g><g><title>__schedule (24 samples, 0.01%)</title><rect x="67.0236%" y="645" width="0.0107%" height="15" fill="rgb(251,176,53)" fg:x="150539" fg:w="24"/><text x="67.2736%" y="655.50"></text></g><g><title>finish_task_switch (24 samples, 0.01%)</title><rect x="67.0236%" y="629" width="0.0107%" height="15" fill="rgb(211,85,7)" fg:x="150539" fg:w="24"/><text x="67.2736%" y="639.50"></text></g><g><title>bprm_execve (61 samples, 0.03%)</title><rect x="67.0138%" y="709" width="0.0272%" height="15" fill="rgb(216,64,54)" fg:x="150517" fg:w="61"/><text x="67.2638%" y="719.50"></text></g><g><title>do_execveat_common (80 samples, 0.04%)</title><rect x="67.0138%" y="725" width="0.0356%" height="15" fill="rgb(217,54,24)" fg:x="150517" fg:w="80"/><text x="67.2638%" y="735.50"></text></g><g><title>JDK_execvpe (82 samples, 0.04%)</title><rect x="67.0133%" y="805" width="0.0365%" height="15" fill="rgb(208,206,53)" fg:x="150516" fg:w="82"/><text x="67.2633%" y="815.50"></text></g><g><title>__GI_execve (81 samples, 0.04%)</title><rect x="67.0138%" y="789" width="0.0361%" height="15" fill="rgb(251,74,39)" fg:x="150517" fg:w="81"/><text x="67.2638%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.04%)</title><rect x="67.0138%" y="773" width="0.0361%" height="15" fill="rgb(226,47,5)" fg:x="150517" fg:w="81"/><text x="67.2638%" y="783.50"></text></g><g><title>do_syscall_64 (81 samples, 0.04%)</title><rect x="67.0138%" y="757" width="0.0361%" height="15" fill="rgb(234,111,33)" fg:x="150517" fg:w="81"/><text x="67.2638%" y="767.50"></text></g><g><title>__x64_sys_execve (81 samples, 0.04%)</title><rect x="67.0138%" y="741" width="0.0361%" height="15" fill="rgb(251,14,10)" fg:x="150517" fg:w="81"/><text x="67.2638%" y="751.50"></text></g><g><title>alloc_empty_file (25 samples, 0.01%)</title><rect x="67.0583%" y="661" width="0.0111%" height="15" fill="rgb(232,43,0)" fg:x="150617" fg:w="25"/><text x="67.3083%" y="671.50"></text></g><g><title>__alloc_file (24 samples, 0.01%)</title><rect x="67.0588%" y="645" width="0.0107%" height="15" fill="rgb(222,68,43)" fg:x="150618" fg:w="24"/><text x="67.3088%" y="655.50"></text></g><g><title>link_path_walk.part.0 (45 samples, 0.02%)</title><rect x="67.0694%" y="661" width="0.0200%" height="15" fill="rgb(217,24,23)" fg:x="150642" fg:w="45"/><text x="67.3194%" y="671.50"></text></g><g><title>walk_component (41 samples, 0.02%)</title><rect x="67.0712%" y="645" width="0.0183%" height="15" fill="rgb(229,209,14)" fg:x="150646" fg:w="41"/><text x="67.3212%" y="655.50"></text></g><g><title>step_into (27 samples, 0.01%)</title><rect x="67.0775%" y="629" width="0.0120%" height="15" fill="rgb(250,149,48)" fg:x="150660" fg:w="27"/><text x="67.3275%" y="639.50"></text></g><g><title>do_filp_open (75 samples, 0.03%)</title><rect x="67.0574%" y="693" width="0.0334%" height="15" fill="rgb(210,120,37)" fg:x="150615" fg:w="75"/><text x="67.3074%" y="703.50"></text></g><g><title>path_openat (75 samples, 0.03%)</title><rect x="67.0574%" y="677" width="0.0334%" height="15" fill="rgb(210,21,8)" fg:x="150615" fg:w="75"/><text x="67.3074%" y="687.50"></text></g><g><title>__GI___open64_nocancel (97 samples, 0.04%)</title><rect x="67.0543%" y="773" width="0.0432%" height="15" fill="rgb(243,145,7)" fg:x="150608" fg:w="97"/><text x="67.3043%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.04%)</title><rect x="67.0548%" y="757" width="0.0427%" height="15" fill="rgb(238,178,32)" fg:x="150609" fg:w="96"/><text x="67.3048%" y="767.50"></text></g><g><title>do_syscall_64 (96 samples, 0.04%)</title><rect x="67.0548%" y="741" width="0.0427%" height="15" fill="rgb(222,4,10)" fg:x="150609" fg:w="96"/><text x="67.3048%" y="751.50"></text></g><g><title>__x64_sys_openat (95 samples, 0.04%)</title><rect x="67.0552%" y="725" width="0.0423%" height="15" fill="rgb(239,7,37)" fg:x="150610" fg:w="95"/><text x="67.3052%" y="735.50"></text></g><g><title>do_sys_openat2 (94 samples, 0.04%)</title><rect x="67.0556%" y="709" width="0.0419%" height="15" fill="rgb(215,31,37)" fg:x="150611" fg:w="94"/><text x="67.3056%" y="719.50"></text></g><g><title>__opendir (99 samples, 0.04%)</title><rect x="67.0543%" y="789" width="0.0441%" height="15" fill="rgb(224,83,33)" fg:x="150608" fg:w="99"/><text x="67.3043%" y="799.50"></text></g><g><title>closeDescriptors (107 samples, 0.05%)</title><rect x="67.0521%" y="805" width="0.0476%" height="15" fill="rgb(239,55,3)" fg:x="150603" fg:w="107"/><text x="67.3021%" y="815.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (971 samples, 0.43%)</title><rect x="66.6714%" y="853" width="0.4323%" height="15" fill="rgb(247,92,11)" fg:x="149748" fg:w="971"/><text x="66.9214%" y="863.50"></text></g><g><title>vforkChild (957 samples, 0.43%)</title><rect x="66.6776%" y="837" width="0.4261%" height="15" fill="rgb(239,200,7)" fg:x="149762" fg:w="957"/><text x="66.9276%" y="847.50"></text></g><g><title>childProcess (203 samples, 0.09%)</title><rect x="67.0133%" y="821" width="0.0904%" height="15" fill="rgb(227,115,8)" fg:x="150516" fg:w="203"/><text x="67.2633%" y="831.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (24 samples, 0.01%)</title><rect x="67.1037%" y="853" width="0.0107%" height="15" fill="rgb(215,189,27)" fg:x="150719" fg:w="24"/><text x="67.3537%" y="863.50"></text></g><g><title>JVM_FillInStackTrace (24 samples, 0.01%)</title><rect x="67.1037%" y="837" width="0.0107%" height="15" fill="rgb(251,216,39)" fg:x="150719" fg:w="24"/><text x="67.3537%" y="847.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (24 samples, 0.01%)</title><rect x="67.1037%" y="821" width="0.0107%" height="15" fill="rgb(207,29,47)" fg:x="150719" fg:w="24"/><text x="67.3537%" y="831.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (24 samples, 0.01%)</title><rect x="67.1037%" y="805" width="0.0107%" height="15" fill="rgb(210,71,34)" fg:x="150719" fg:w="24"/><text x="67.3537%" y="815.50"></text></g><g><title>CollectedHeap::array_allocate (35 samples, 0.02%)</title><rect x="67.1296%" y="821" width="0.0156%" height="15" fill="rgb(253,217,51)" fg:x="150777" fg:w="35"/><text x="67.3796%" y="831.50"></text></g><g><title>MemAllocator::allocate (35 samples, 0.02%)</title><rect x="67.1296%" y="805" width="0.0156%" height="15" fill="rgb(222,117,46)" fg:x="150777" fg:w="35"/><text x="67.3796%" y="815.50"></text></g><g><title>ObjArrayAllocator::initialize (27 samples, 0.01%)</title><rect x="67.1331%" y="789" width="0.0120%" height="15" fill="rgb(226,132,6)" fg:x="150785" fg:w="27"/><text x="67.3831%" y="799.50"></text></g><g><title>InstanceKlass::allocate_objArray (36 samples, 0.02%)</title><rect x="67.1296%" y="837" width="0.0160%" height="15" fill="rgb(254,145,51)" fg:x="150777" fg:w="36"/><text x="67.3796%" y="847.50"></text></g><g><title>OptoRuntime::new_array_C (55 samples, 0.02%)</title><rect x="67.1291%" y="853" width="0.0245%" height="15" fill="rgb(231,199,27)" fg:x="150776" fg:w="55"/><text x="67.3791%" y="863.50"></text></g><g><title>OptoRuntime::new_instance_C (37 samples, 0.02%)</title><rect x="67.1589%" y="853" width="0.0165%" height="15" fill="rgb(245,158,14)" fg:x="150843" fg:w="37"/><text x="67.4089%" y="863.50"></text></g><g><title>InstanceKlass::allocate_instance (32 samples, 0.01%)</title><rect x="67.1612%" y="837" width="0.0142%" height="15" fill="rgb(240,113,14)" fg:x="150848" fg:w="32"/><text x="67.4112%" y="847.50"></text></g><g><title>CollectedHeap::obj_allocate (32 samples, 0.01%)</title><rect x="67.1612%" y="821" width="0.0142%" height="15" fill="rgb(210,20,13)" fg:x="150848" fg:w="32"/><text x="67.4112%" y="831.50"></text></g><g><title>MemAllocator::allocate (32 samples, 0.01%)</title><rect x="67.1612%" y="805" width="0.0142%" height="15" fill="rgb(241,144,13)" fg:x="150848" fg:w="32"/><text x="67.4112%" y="815.50"></text></g><g><title>CompileBroker::compile_method (24 samples, 0.01%)</title><rect x="67.2066%" y="773" width="0.0107%" height="15" fill="rgb(235,43,34)" fg:x="150950" fg:w="24"/><text x="67.4566%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (49 samples, 0.02%)</title><rect x="67.1959%" y="821" width="0.0218%" height="15" fill="rgb(208,36,20)" fg:x="150926" fg:w="49"/><text x="67.4459%" y="831.50"></text></g><g><title>TieredThresholdPolicy::compile (25 samples, 0.01%)</title><rect x="67.2066%" y="805" width="0.0111%" height="15" fill="rgb(239,204,10)" fg:x="150950" fg:w="25"/><text x="67.4566%" y="815.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (25 samples, 0.01%)</title><rect x="67.2066%" y="789" width="0.0111%" height="15" fill="rgb(217,84,43)" fg:x="150950" fg:w="25"/><text x="67.4566%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (72 samples, 0.03%)</title><rect x="67.1861%" y="837" width="0.0321%" height="15" fill="rgb(241,170,50)" fg:x="150904" fg:w="72"/><text x="67.4361%" y="847.50"></text></g><g><title>Runtime1::counter_overflow (117 samples, 0.05%)</title><rect x="67.1759%" y="853" width="0.0521%" height="15" fill="rgb(226,205,29)" fg:x="150881" fg:w="117"/><text x="67.4259%" y="863.50"></text></g><g><title>Runtime1::monitorenter (31 samples, 0.01%)</title><rect x="67.2288%" y="853" width="0.0138%" height="15" fill="rgb(233,113,1)" fg:x="151000" fg:w="31"/><text x="67.4788%" y="863.50"></text></g><g><title>InstanceKlass::allocate_instance (32 samples, 0.01%)</title><rect x="67.2515%" y="837" width="0.0142%" height="15" fill="rgb(253,98,13)" fg:x="151051" fg:w="32"/><text x="67.5015%" y="847.50"></text></g><g><title>CollectedHeap::obj_allocate (32 samples, 0.01%)</title><rect x="67.2515%" y="821" width="0.0142%" height="15" fill="rgb(211,115,12)" fg:x="151051" fg:w="32"/><text x="67.5015%" y="831.50"></text></g><g><title>MemAllocator::allocate (32 samples, 0.01%)</title><rect x="67.2515%" y="805" width="0.0142%" height="15" fill="rgb(208,12,16)" fg:x="151051" fg:w="32"/><text x="67.5015%" y="815.50"></text></g><g><title>Runtime1::new_instance (36 samples, 0.02%)</title><rect x="67.2507%" y="853" width="0.0160%" height="15" fill="rgb(237,193,54)" fg:x="151049" fg:w="36"/><text x="67.5007%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.02%)</title><rect x="67.2907%" y="613" width="0.0160%" height="15" fill="rgb(243,22,42)" fg:x="151139" fg:w="36"/><text x="67.5407%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (36 samples, 0.02%)</title><rect x="67.2907%" y="597" width="0.0160%" height="15" fill="rgb(233,151,36)" fg:x="151139" fg:w="36"/><text x="67.5407%" y="607.50"></text></g><g><title>native_write_msr (36 samples, 0.02%)</title><rect x="67.2907%" y="581" width="0.0160%" height="15" fill="rgb(237,57,45)" fg:x="151139" fg:w="36"/><text x="67.5407%" y="591.50"></text></g><g><title>finish_task_switch (37 samples, 0.02%)</title><rect x="67.2907%" y="629" width="0.0165%" height="15" fill="rgb(221,88,17)" fg:x="151139" fg:w="37"/><text x="67.5407%" y="639.50"></text></g><g><title>do_syscall_64 (38 samples, 0.02%)</title><rect x="67.2907%" y="741" width="0.0169%" height="15" fill="rgb(230,79,15)" fg:x="151139" fg:w="38"/><text x="67.5407%" y="751.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.02%)</title><rect x="67.2907%" y="725" width="0.0169%" height="15" fill="rgb(213,57,13)" fg:x="151139" fg:w="38"/><text x="67.5407%" y="735.50"></text></g><g><title>do_futex (38 samples, 0.02%)</title><rect x="67.2907%" y="709" width="0.0169%" height="15" fill="rgb(222,116,39)" fg:x="151139" fg:w="38"/><text x="67.5407%" y="719.50"></text></g><g><title>futex_wait (38 samples, 0.02%)</title><rect x="67.2907%" y="693" width="0.0169%" height="15" fill="rgb(245,107,2)" fg:x="151139" fg:w="38"/><text x="67.5407%" y="703.50"></text></g><g><title>futex_wait_queue_me (38 samples, 0.02%)</title><rect x="67.2907%" y="677" width="0.0169%" height="15" fill="rgb(238,1,10)" fg:x="151139" fg:w="38"/><text x="67.5407%" y="687.50"></text></g><g><title>schedule (38 samples, 0.02%)</title><rect x="67.2907%" y="661" width="0.0169%" height="15" fill="rgb(249,4,48)" fg:x="151139" fg:w="38"/><text x="67.5407%" y="671.50"></text></g><g><title>__schedule (38 samples, 0.02%)</title><rect x="67.2907%" y="645" width="0.0169%" height="15" fill="rgb(223,151,18)" fg:x="151139" fg:w="38"/><text x="67.5407%" y="655.50"></text></g><g><title>__pthread_cond_wait (40 samples, 0.02%)</title><rect x="67.2903%" y="805" width="0.0178%" height="15" fill="rgb(227,65,43)" fg:x="151138" fg:w="40"/><text x="67.5403%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (40 samples, 0.02%)</title><rect x="67.2903%" y="789" width="0.0178%" height="15" fill="rgb(218,40,45)" fg:x="151138" fg:w="40"/><text x="67.5403%" y="799.50"></text></g><g><title>futex_wait_cancelable (39 samples, 0.02%)</title><rect x="67.2907%" y="773" width="0.0174%" height="15" fill="rgb(252,121,31)" fg:x="151139" fg:w="39"/><text x="67.5407%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.02%)</title><rect x="67.2907%" y="757" width="0.0174%" height="15" fill="rgb(219,158,43)" fg:x="151139" fg:w="39"/><text x="67.5407%" y="767.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (78 samples, 0.03%)</title><rect x="67.2747%" y="853" width="0.0347%" height="15" fill="rgb(231,162,42)" fg:x="151103" fg:w="78"/><text x="67.5247%" y="863.50"></text></g><g><title>ObjectMonitor::enter (76 samples, 0.03%)</title><rect x="67.2756%" y="837" width="0.0338%" height="15" fill="rgb(217,179,25)" fg:x="151105" fg:w="76"/><text x="67.5256%" y="847.50"></text></g><g><title>os::PlatformEvent::park (66 samples, 0.03%)</title><rect x="67.2800%" y="821" width="0.0294%" height="15" fill="rgb(206,212,31)" fg:x="151115" fg:w="66"/><text x="67.5300%" y="831.50"></text></g><g><title>SharedRuntime::complete_monitor_unlocking_C (27 samples, 0.01%)</title><rect x="67.3094%" y="853" width="0.0120%" height="15" fill="rgb(235,144,12)" fg:x="151181" fg:w="27"/><text x="67.5594%" y="863.50"></text></g><g><title>ClassFileParser::ClassFileParser (37 samples, 0.02%)</title><rect x="67.3535%" y="805" width="0.0165%" height="15" fill="rgb(213,51,10)" fg:x="151280" fg:w="37"/><text x="67.6035%" y="815.50"></text></g><g><title>ClassFileParser::parse_stream (37 samples, 0.02%)</title><rect x="67.3535%" y="789" width="0.0165%" height="15" fill="rgb(231,145,14)" fg:x="151280" fg:w="37"/><text x="67.6035%" y="799.50"></text></g><g><title>KlassFactory::create_from_stream (52 samples, 0.02%)</title><rect x="67.3535%" y="821" width="0.0232%" height="15" fill="rgb(235,15,28)" fg:x="151280" fg:w="52"/><text x="67.6035%" y="831.50"></text></g><g><title>SystemDictionary::parse_stream (74 samples, 0.03%)</title><rect x="67.3441%" y="837" width="0.0329%" height="15" fill="rgb(237,206,10)" fg:x="151259" fg:w="74"/><text x="67.5941%" y="847.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (80 samples, 0.04%)</title><rect x="67.3428%" y="853" width="0.0356%" height="15" fill="rgb(236,227,27)" fg:x="151256" fg:w="80"/><text x="67.5928%" y="863.50"></text></g><g><title>Unsafe_DefineClass0 (27 samples, 0.01%)</title><rect x="67.3784%" y="853" width="0.0120%" height="15" fill="rgb(246,83,35)" fg:x="151336" fg:w="27"/><text x="67.6284%" y="863.50"></text></g><g><title>JVM_DefineClass (25 samples, 0.01%)</title><rect x="67.3793%" y="837" width="0.0111%" height="15" fill="rgb(220,136,24)" fg:x="151338" fg:w="25"/><text x="67.6293%" y="847.50"></text></g><g><title>jvm_define_class_common (25 samples, 0.01%)</title><rect x="67.3793%" y="821" width="0.0111%" height="15" fill="rgb(217,3,25)" fg:x="151338" fg:w="25"/><text x="67.6293%" y="831.50"></text></g><g><title>SystemDictionary::resolve_from_stream (23 samples, 0.01%)</title><rect x="67.3802%" y="805" width="0.0102%" height="15" fill="rgb(239,24,14)" fg:x="151340" fg:w="23"/><text x="67.6302%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (238 samples, 0.11%)</title><rect x="67.4189%" y="629" width="0.1060%" height="15" fill="rgb(244,16,53)" fg:x="151427" fg:w="238"/><text x="67.6689%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (236 samples, 0.11%)</title><rect x="67.4198%" y="613" width="0.1051%" height="15" fill="rgb(208,175,44)" fg:x="151429" fg:w="236"/><text x="67.6698%" y="623.50"></text></g><g><title>native_write_msr (236 samples, 0.11%)</title><rect x="67.4198%" y="597" width="0.1051%" height="15" fill="rgb(252,18,48)" fg:x="151429" fg:w="236"/><text x="67.6698%" y="607.50"></text></g><g><title>finish_task_switch (244 samples, 0.11%)</title><rect x="67.4176%" y="645" width="0.1086%" height="15" fill="rgb(234,199,32)" fg:x="151424" fg:w="244"/><text x="67.6676%" y="655.50"></text></g><g><title>futex_wait_queue_me (281 samples, 0.13%)</title><rect x="67.4069%" y="693" width="0.1251%" height="15" fill="rgb(225,77,54)" fg:x="151400" fg:w="281"/><text x="67.6569%" y="703.50"></text></g><g><title>schedule (277 samples, 0.12%)</title><rect x="67.4087%" y="677" width="0.1233%" height="15" fill="rgb(225,42,25)" fg:x="151404" fg:w="277"/><text x="67.6587%" y="687.50"></text></g><g><title>__schedule (274 samples, 0.12%)</title><rect x="67.4100%" y="661" width="0.1220%" height="15" fill="rgb(242,227,46)" fg:x="151407" fg:w="274"/><text x="67.6600%" y="671.50"></text></g><g><title>__x64_sys_futex (285 samples, 0.13%)</title><rect x="67.4056%" y="741" width="0.1269%" height="15" fill="rgb(246,197,35)" fg:x="151397" fg:w="285"/><text x="67.6556%" y="751.50"></text></g><g><title>do_futex (285 samples, 0.13%)</title><rect x="67.4056%" y="725" width="0.1269%" height="15" fill="rgb(215,159,26)" fg:x="151397" fg:w="285"/><text x="67.6556%" y="735.50"></text></g><g><title>futex_wait (284 samples, 0.13%)</title><rect x="67.4060%" y="709" width="0.1264%" height="15" fill="rgb(212,194,50)" fg:x="151398" fg:w="284"/><text x="67.6560%" y="719.50"></text></g><g><title>do_syscall_64 (288 samples, 0.13%)</title><rect x="67.4047%" y="757" width="0.1282%" height="15" fill="rgb(246,132,1)" fg:x="151395" fg:w="288"/><text x="67.6547%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (297 samples, 0.13%)</title><rect x="67.4047%" y="773" width="0.1322%" height="15" fill="rgb(217,71,7)" fg:x="151395" fg:w="297"/><text x="67.6547%" y="783.50"></text></g><g><title>__pthread_cond_wait (307 samples, 0.14%)</title><rect x="67.4007%" y="821" width="0.1367%" height="15" fill="rgb(252,59,32)" fg:x="151386" fg:w="307"/><text x="67.6507%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (307 samples, 0.14%)</title><rect x="67.4007%" y="805" width="0.1367%" height="15" fill="rgb(253,204,25)" fg:x="151386" fg:w="307"/><text x="67.6507%" y="815.50"></text></g><g><title>futex_wait_cancelable (303 samples, 0.13%)</title><rect x="67.4025%" y="789" width="0.1349%" height="15" fill="rgb(232,21,16)" fg:x="151390" fg:w="303"/><text x="67.6525%" y="799.50"></text></g><g><title>Unsafe_Park (330 samples, 0.15%)</title><rect x="67.3940%" y="853" width="0.1469%" height="15" fill="rgb(248,90,29)" fg:x="151371" fg:w="330"/><text x="67.6440%" y="863.50"></text></g><g><title>Parker::park (328 samples, 0.15%)</title><rect x="67.3949%" y="837" width="0.1460%" height="15" fill="rgb(249,223,7)" fg:x="151373" fg:w="328"/><text x="67.6449%" y="847.50"></text></g><g><title>enqueue_entity (31 samples, 0.01%)</title><rect x="67.5868%" y="661" width="0.0138%" height="15" fill="rgb(231,119,42)" fg:x="151804" fg:w="31"/><text x="67.8368%" y="671.50"></text></g><g><title>enqueue_task_fair (38 samples, 0.02%)</title><rect x="67.5850%" y="677" width="0.0169%" height="15" fill="rgb(215,41,35)" fg:x="151800" fg:w="38"/><text x="67.8350%" y="687.50"></text></g><g><title>ttwu_do_activate (74 samples, 0.03%)</title><rect x="67.5815%" y="693" width="0.0329%" height="15" fill="rgb(220,44,45)" fg:x="151792" fg:w="74"/><text x="67.8315%" y="703.50"></text></g><g><title>psi_task_change (28 samples, 0.01%)</title><rect x="67.6019%" y="677" width="0.0125%" height="15" fill="rgb(253,197,36)" fg:x="151838" fg:w="28"/><text x="67.8519%" y="687.50"></text></g><g><title>do_syscall_64 (143 samples, 0.06%)</title><rect x="67.5552%" y="789" width="0.0637%" height="15" fill="rgb(245,225,54)" fg:x="151733" fg:w="143"/><text x="67.8052%" y="799.50"></text></g><g><title>__x64_sys_futex (142 samples, 0.06%)</title><rect x="67.5556%" y="773" width="0.0632%" height="15" fill="rgb(239,94,37)" fg:x="151734" fg:w="142"/><text x="67.8056%" y="783.50"></text></g><g><title>do_futex (138 samples, 0.06%)</title><rect x="67.5574%" y="757" width="0.0614%" height="15" fill="rgb(242,217,10)" fg:x="151738" fg:w="138"/><text x="67.8074%" y="767.50"></text></g><g><title>futex_wake (136 samples, 0.06%)</title><rect x="67.5583%" y="741" width="0.0606%" height="15" fill="rgb(250,193,7)" fg:x="151740" fg:w="136"/><text x="67.8083%" y="751.50"></text></g><g><title>wake_up_q (113 samples, 0.05%)</title><rect x="67.5685%" y="725" width="0.0503%" height="15" fill="rgb(230,104,19)" fg:x="151763" fg:w="113"/><text x="67.8185%" y="735.50"></text></g><g><title>try_to_wake_up (110 samples, 0.05%)</title><rect x="67.5699%" y="709" width="0.0490%" height="15" fill="rgb(230,181,4)" fg:x="151766" fg:w="110"/><text x="67.8199%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (149 samples, 0.07%)</title><rect x="67.5552%" y="805" width="0.0663%" height="15" fill="rgb(216,219,49)" fg:x="151733" fg:w="149"/><text x="67.8052%" y="815.50"></text></g><g><title>__pthread_cond_signal (158 samples, 0.07%)</title><rect x="67.5521%" y="837" width="0.0703%" height="15" fill="rgb(254,144,0)" fg:x="151726" fg:w="158"/><text x="67.8021%" y="847.50"></text></g><g><title>futex_wake (154 samples, 0.07%)</title><rect x="67.5538%" y="821" width="0.0686%" height="15" fill="rgb(205,209,38)" fg:x="151730" fg:w="154"/><text x="67.8038%" y="831.50"></text></g><g><title>Unsafe_Unpark (183 samples, 0.08%)</title><rect x="67.5418%" y="853" width="0.0815%" height="15" fill="rgb(240,21,42)" fg:x="151703" fg:w="183"/><text x="67.7918%" y="863.50"></text></g><g><title>__alloc_pages_slowpath.constprop.0 (38 samples, 0.02%)</title><rect x="67.7293%" y="757" width="0.0169%" height="15" fill="rgb(241,132,3)" fg:x="152124" fg:w="38"/><text x="67.9793%" y="767.50"></text></g><g><title>__list_del_entry_valid (23 samples, 0.01%)</title><rect x="67.7769%" y="741" width="0.0102%" height="15" fill="rgb(225,14,2)" fg:x="152231" fg:w="23"/><text x="68.0269%" y="751.50"></text></g><g><title>kernel_init_free_pages (77 samples, 0.03%)</title><rect x="67.7907%" y="725" width="0.0343%" height="15" fill="rgb(210,141,35)" fg:x="152262" fg:w="77"/><text x="68.0407%" y="735.50"></text></g><g><title>clear_page_erms (72 samples, 0.03%)</title><rect x="67.7929%" y="709" width="0.0321%" height="15" fill="rgb(251,14,44)" fg:x="152267" fg:w="72"/><text x="68.0429%" y="719.50"></text></g><g><title>get_page_from_freelist (153 samples, 0.07%)</title><rect x="67.7582%" y="757" width="0.0681%" height="15" fill="rgb(247,48,18)" fg:x="152189" fg:w="153"/><text x="68.0082%" y="767.50"></text></g><g><title>prep_new_page (84 samples, 0.04%)</title><rect x="67.7889%" y="741" width="0.0374%" height="15" fill="rgb(225,0,40)" fg:x="152258" fg:w="84"/><text x="68.0389%" y="751.50"></text></g><g><title>__alloc_pages_nodemask (236 samples, 0.11%)</title><rect x="67.7221%" y="773" width="0.1051%" height="15" fill="rgb(221,31,33)" fg:x="152108" fg:w="236"/><text x="67.9721%" y="783.50"></text></g><g><title>alloc_pages_vma (260 samples, 0.12%)</title><rect x="67.7141%" y="789" width="0.1158%" height="15" fill="rgb(237,42,40)" fg:x="152090" fg:w="260"/><text x="67.9641%" y="799.50"></text></g><g><title>cgroup_throttle_swaprate (26 samples, 0.01%)</title><rect x="67.8299%" y="789" width="0.0116%" height="15" fill="rgb(233,51,29)" fg:x="152350" fg:w="26"/><text x="68.0799%" y="799.50"></text></g><g><title>__pagevec_lru_add_fn (43 samples, 0.02%)</title><rect x="67.8477%" y="757" width="0.0191%" height="15" fill="rgb(226,58,20)" fg:x="152390" fg:w="43"/><text x="68.0977%" y="767.50"></text></g><g><title>lru_cache_add (69 samples, 0.03%)</title><rect x="67.8415%" y="789" width="0.0307%" height="15" fill="rgb(208,98,7)" fg:x="152376" fg:w="69"/><text x="68.0915%" y="799.50"></text></g><g><title>pagevec_lru_move_fn (62 samples, 0.03%)</title><rect x="67.8446%" y="773" width="0.0276%" height="15" fill="rgb(228,143,44)" fg:x="152383" fg:w="62"/><text x="68.0946%" y="783.50"></text></g><g><title>get_mem_cgroup_from_mm (32 samples, 0.01%)</title><rect x="67.8775%" y="773" width="0.0142%" height="15" fill="rgb(246,55,38)" fg:x="152457" fg:w="32"/><text x="68.1275%" y="783.50"></text></g><g><title>mem_cgroup_charge (68 samples, 0.03%)</title><rect x="67.8731%" y="789" width="0.0303%" height="15" fill="rgb(247,87,16)" fg:x="152447" fg:w="68"/><text x="68.1231%" y="799.50"></text></g><g><title>page_add_new_anon_rmap (31 samples, 0.01%)</title><rect x="67.9091%" y="789" width="0.0138%" height="15" fill="rgb(234,129,42)" fg:x="152528" fg:w="31"/><text x="68.1591%" y="799.50"></text></g><g><title>handle_mm_fault (582 samples, 0.26%)</title><rect x="67.6656%" y="805" width="0.2591%" height="15" fill="rgb(220,82,16)" fg:x="151981" fg:w="582"/><text x="67.9156%" y="815.50"></text></g><g><title>exc_page_fault (642 samples, 0.29%)</title><rect x="67.6402%" y="837" width="0.2858%" height="15" fill="rgb(211,88,4)" fg:x="151924" fg:w="642"/><text x="67.8902%" y="847.50"></text></g><g><title>do_user_addr_fault (632 samples, 0.28%)</title><rect x="67.6447%" y="821" width="0.2814%" height="15" fill="rgb(248,151,21)" fg:x="151934" fg:w="632"/><text x="67.8947%" y="831.50"></text></g><g><title>asm_exc_page_fault (660 samples, 0.29%)</title><rect x="67.6371%" y="853" width="0.2938%" height="15" fill="rgb(238,163,6)" fg:x="151917" fg:w="660"/><text x="67.8871%" y="863.50"></text></g><g><title>tick_sched_handle (26 samples, 0.01%)</title><rect x="67.9430%" y="757" width="0.0116%" height="15" fill="rgb(209,183,11)" fg:x="152604" fg:w="26"/><text x="68.1930%" y="767.50"></text></g><g><title>update_process_times (24 samples, 0.01%)</title><rect x="67.9439%" y="741" width="0.0107%" height="15" fill="rgb(219,37,20)" fg:x="152606" fg:w="24"/><text x="68.1939%" y="751.50"></text></g><g><title>tick_sched_timer (28 samples, 0.01%)</title><rect x="67.9425%" y="773" width="0.0125%" height="15" fill="rgb(210,158,4)" fg:x="152603" fg:w="28"/><text x="68.1925%" y="783.50"></text></g><g><title>__hrtimer_run_queues (40 samples, 0.02%)</title><rect x="67.9381%" y="789" width="0.0178%" height="15" fill="rgb(221,167,53)" fg:x="152593" fg:w="40"/><text x="68.1881%" y="799.50"></text></g><g><title>hrtimer_interrupt (46 samples, 0.02%)</title><rect x="67.9359%" y="805" width="0.0205%" height="15" fill="rgb(237,151,45)" fg:x="152588" fg:w="46"/><text x="68.1859%" y="815.50"></text></g><g><title>__sysvec_apic_timer_interrupt (48 samples, 0.02%)</title><rect x="67.9354%" y="821" width="0.0214%" height="15" fill="rgb(231,39,3)" fg:x="152587" fg:w="48"/><text x="68.1854%" y="831.50"></text></g><g><title>kmem_cache_free (28 samples, 0.01%)</title><rect x="67.9608%" y="741" width="0.0125%" height="15" fill="rgb(212,167,28)" fg:x="152644" fg:w="28"/><text x="68.2108%" y="751.50"></text></g><g><title>rcu_core (46 samples, 0.02%)</title><rect x="67.9581%" y="757" width="0.0205%" height="15" fill="rgb(232,178,8)" fg:x="152638" fg:w="46"/><text x="68.2081%" y="767.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (111 samples, 0.05%)</title><rect x="67.9310%" y="853" width="0.0494%" height="15" fill="rgb(225,151,20)" fg:x="152577" fg:w="111"/><text x="68.1810%" y="863.50"></text></g><g><title>sysvec_apic_timer_interrupt (101 samples, 0.04%)</title><rect x="67.9354%" y="837" width="0.0450%" height="15" fill="rgb(238,3,37)" fg:x="152587" fg:w="101"/><text x="68.1854%" y="847.50"></text></g><g><title>irq_exit_rcu (53 samples, 0.02%)</title><rect x="67.9568%" y="821" width="0.0236%" height="15" fill="rgb(251,147,42)" fg:x="152635" fg:w="53"/><text x="68.2068%" y="831.50"></text></g><g><title>do_softirq_own_stack (53 samples, 0.02%)</title><rect x="67.9568%" y="805" width="0.0236%" height="15" fill="rgb(208,173,10)" fg:x="152635" fg:w="53"/><text x="68.2068%" y="815.50"></text></g><g><title>asm_call_sysvec_on_stack (52 samples, 0.02%)</title><rect x="67.9572%" y="789" width="0.0232%" height="15" fill="rgb(246,225,4)" fg:x="152636" fg:w="52"/><text x="68.2072%" y="799.50"></text></g><g><title>__softirqentry_text_start (52 samples, 0.02%)</title><rect x="67.9572%" y="773" width="0.0232%" height="15" fill="rgb(248,102,6)" fg:x="152636" fg:w="52"/><text x="68.2072%" y="783.50"></text></g><g><title>error_entry (69 samples, 0.03%)</title><rect x="67.9915%" y="853" width="0.0307%" height="15" fill="rgb(232,6,21)" fg:x="152713" fg:w="69"/><text x="68.2415%" y="863.50"></text></g><g><title>sync_regs (63 samples, 0.03%)</title><rect x="67.9942%" y="837" width="0.0280%" height="15" fill="rgb(221,179,22)" fg:x="152719" fg:w="63"/><text x="68.2442%" y="847.50"></text></g><g><title>__close (36 samples, 0.02%)</title><rect x="68.0222%" y="837" width="0.0160%" height="15" fill="rgb(252,50,20)" fg:x="152782" fg:w="36"/><text x="68.2722%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.01%)</title><rect x="68.0236%" y="821" width="0.0147%" height="15" fill="rgb(222,56,38)" fg:x="152785" fg:w="33"/><text x="68.2736%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (23 samples, 0.01%)</title><rect x="68.0280%" y="805" width="0.0102%" height="15" fill="rgb(206,193,29)" fg:x="152795" fg:w="23"/><text x="68.2780%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (23 samples, 0.01%)</title><rect x="68.0280%" y="789" width="0.0102%" height="15" fill="rgb(239,192,45)" fg:x="152795" fg:w="23"/><text x="68.2780%" y="799.50"></text></g><g><title>fileDescriptorClose (41 samples, 0.02%)</title><rect x="68.0222%" y="853" width="0.0183%" height="15" fill="rgb(254,18,36)" fg:x="152782" fg:w="41"/><text x="68.2722%" y="863.50"></text></g><g><title>JNU_GetStringPlatformChars (36 samples, 0.02%)</title><rect x="68.0418%" y="837" width="0.0160%" height="15" fill="rgb(221,127,11)" fg:x="152826" fg:w="36"/><text x="68.2918%" y="847.50"></text></g><g><title>alloc_empty_file (26 samples, 0.01%)</title><rect x="68.0725%" y="725" width="0.0116%" height="15" fill="rgb(234,146,35)" fg:x="152895" fg:w="26"/><text x="68.3225%" y="735.50"></text></g><g><title>link_path_walk.part.0 (46 samples, 0.02%)</title><rect x="68.0944%" y="725" width="0.0205%" height="15" fill="rgb(254,201,37)" fg:x="152944" fg:w="46"/><text x="68.3444%" y="735.50"></text></g><g><title>walk_component (27 samples, 0.01%)</title><rect x="68.1028%" y="709" width="0.0120%" height="15" fill="rgb(211,202,23)" fg:x="152963" fg:w="27"/><text x="68.3528%" y="719.50"></text></g><g><title>do_filp_open (110 samples, 0.05%)</title><rect x="68.0725%" y="757" width="0.0490%" height="15" fill="rgb(237,91,2)" fg:x="152895" fg:w="110"/><text x="68.3225%" y="767.50"></text></g><g><title>path_openat (110 samples, 0.05%)</title><rect x="68.0725%" y="741" width="0.0490%" height="15" fill="rgb(226,228,36)" fg:x="152895" fg:w="110"/><text x="68.3225%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (135 samples, 0.06%)</title><rect x="68.0685%" y="821" width="0.0601%" height="15" fill="rgb(213,63,50)" fg:x="152886" fg:w="135"/><text x="68.3185%" y="831.50"></text></g><g><title>do_syscall_64 (135 samples, 0.06%)</title><rect x="68.0685%" y="805" width="0.0601%" height="15" fill="rgb(235,194,19)" fg:x="152886" fg:w="135"/><text x="68.3185%" y="815.50"></text></g><g><title>__x64_sys_openat (135 samples, 0.06%)</title><rect x="68.0685%" y="789" width="0.0601%" height="15" fill="rgb(207,204,18)" fg:x="152886" fg:w="135"/><text x="68.3185%" y="799.50"></text></g><g><title>do_sys_openat2 (135 samples, 0.06%)</title><rect x="68.0685%" y="773" width="0.0601%" height="15" fill="rgb(248,8,7)" fg:x="152886" fg:w="135"/><text x="68.3185%" y="783.50"></text></g><g><title>__libc_open64 (138 samples, 0.06%)</title><rect x="68.0681%" y="837" width="0.0614%" height="15" fill="rgb(223,145,47)" fg:x="152885" fg:w="138"/><text x="68.3181%" y="847.50"></text></g><g><title>fileOpen (212 samples, 0.09%)</title><rect x="68.0405%" y="853" width="0.0944%" height="15" fill="rgb(228,84,11)" fg:x="152823" fg:w="212"/><text x="68.2905%" y="863.50"></text></g><g><title>jni_IsAssignableFrom (37 samples, 0.02%)</title><rect x="68.1411%" y="853" width="0.0165%" height="15" fill="rgb(218,76,45)" fg:x="153049" fg:w="37"/><text x="68.3911%" y="863.50"></text></g><g><title>os::javaTimeNanos (42 samples, 0.02%)</title><rect x="68.1585%" y="853" width="0.0187%" height="15" fill="rgb(223,80,15)" fg:x="153088" fg:w="42"/><text x="68.4085%" y="863.50"></text></g><g><title>__GI___clock_gettime (41 samples, 0.02%)</title><rect x="68.1589%" y="837" width="0.0183%" height="15" fill="rgb(219,218,33)" fg:x="153089" fg:w="41"/><text x="68.4089%" y="847.50"></text></g><g><title>__vdso_clock_gettime (29 samples, 0.01%)</title><rect x="68.1643%" y="821" width="0.0129%" height="15" fill="rgb(208,51,11)" fg:x="153101" fg:w="29"/><text x="68.4143%" y="831.50"></text></g><g><title>[perf-501242.map] (42,112 samples, 18.75%)</title><rect x="49.4288%" y="869" width="18.7493%" height="15" fill="rgb(229,165,39)" fg:x="111020" fg:w="42112"/><text x="49.6788%" y="879.50">[perf-501242.map]</text></g><g><title>SharedRuntime::find_callee_method (23 samples, 0.01%)</title><rect x="68.1972%" y="853" width="0.0102%" height="15" fill="rgb(241,100,24)" fg:x="153175" fg:w="23"/><text x="68.4472%" y="863.50"></text></g><g><title>LinkResolver::resolve_method_statically (36 samples, 0.02%)</title><rect x="68.2542%" y="805" width="0.0160%" height="15" fill="rgb(228,14,23)" fg:x="153303" fg:w="36"/><text x="68.5042%" y="815.50"></text></g><g><title>Bytecode_invoke::static_target (37 samples, 0.02%)</title><rect x="68.2542%" y="821" width="0.0165%" height="15" fill="rgb(247,116,52)" fg:x="153303" fg:w="37"/><text x="68.5042%" y="831.50"></text></g><g><title>LinkResolver::resolve_invoke (31 samples, 0.01%)</title><rect x="68.2711%" y="821" width="0.0138%" height="15" fill="rgb(216,149,33)" fg:x="153341" fg:w="31"/><text x="68.5211%" y="831.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (137 samples, 0.06%)</title><rect x="68.2515%" y="837" width="0.0610%" height="15" fill="rgb(238,142,29)" fg:x="153297" fg:w="137"/><text x="68.5015%" y="847.50"></text></g><g><title>frame::sender (41 samples, 0.02%)</title><rect x="68.2943%" y="821" width="0.0183%" height="15" fill="rgb(224,83,40)" fg:x="153393" fg:w="41"/><text x="68.5443%" y="831.50"></text></g><g><title>OopMapSet::update_register_map (41 samples, 0.02%)</title><rect x="68.2943%" y="805" width="0.0183%" height="15" fill="rgb(234,165,11)" fg:x="153393" fg:w="41"/><text x="68.5443%" y="815.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (229 samples, 0.10%)</title><rect x="68.2195%" y="853" width="0.1020%" height="15" fill="rgb(215,96,23)" fg:x="153225" fg:w="229"/><text x="68.4695%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="68.3232%" y="725" width="0.0205%" height="15" fill="rgb(233,179,26)" fg:x="153458" fg:w="46"/><text x="68.5732%" y="735.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="68.3232%" y="709" width="0.0205%" height="15" fill="rgb(225,129,33)" fg:x="153458" fg:w="46"/><text x="68.5732%" y="719.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.02%)</title><rect x="68.3232%" y="693" width="0.0205%" height="15" fill="rgb(237,49,13)" fg:x="153458" fg:w="46"/><text x="68.5732%" y="703.50"></text></g><g><title>do_futex (46 samples, 0.02%)</title><rect x="68.3232%" y="677" width="0.0205%" height="15" fill="rgb(211,3,31)" fg:x="153458" fg:w="46"/><text x="68.5732%" y="687.50"></text></g><g><title>futex_wait (46 samples, 0.02%)</title><rect x="68.3232%" y="661" width="0.0205%" height="15" fill="rgb(216,152,19)" fg:x="153458" fg:w="46"/><text x="68.5732%" y="671.50"></text></g><g><title>futex_wait_queue_me (45 samples, 0.02%)</title><rect x="68.3236%" y="645" width="0.0200%" height="15" fill="rgb(251,121,35)" fg:x="153459" fg:w="45"/><text x="68.5736%" y="655.50"></text></g><g><title>schedule (45 samples, 0.02%)</title><rect x="68.3236%" y="629" width="0.0200%" height="15" fill="rgb(210,217,47)" fg:x="153459" fg:w="45"/><text x="68.5736%" y="639.50"></text></g><g><title>__schedule (45 samples, 0.02%)</title><rect x="68.3236%" y="613" width="0.0200%" height="15" fill="rgb(244,116,22)" fg:x="153459" fg:w="45"/><text x="68.5736%" y="623.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="68.3241%" y="597" width="0.0196%" height="15" fill="rgb(228,17,21)" fg:x="153460" fg:w="44"/><text x="68.5741%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.02%)</title><rect x="68.3250%" y="581" width="0.0187%" height="15" fill="rgb(240,149,34)" fg:x="153462" fg:w="42"/><text x="68.5750%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.02%)</title><rect x="68.3250%" y="565" width="0.0187%" height="15" fill="rgb(208,125,47)" fg:x="153462" fg:w="42"/><text x="68.5750%" y="575.50"></text></g><g><title>native_write_msr (42 samples, 0.02%)</title><rect x="68.3250%" y="549" width="0.0187%" height="15" fill="rgb(249,186,39)" fg:x="153462" fg:w="42"/><text x="68.5750%" y="559.50"></text></g><g><title>__pthread_cond_wait (47 samples, 0.02%)</title><rect x="68.3232%" y="773" width="0.0209%" height="15" fill="rgb(240,220,33)" fg:x="153458" fg:w="47"/><text x="68.5732%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (47 samples, 0.02%)</title><rect x="68.3232%" y="757" width="0.0209%" height="15" fill="rgb(243,110,23)" fg:x="153458" fg:w="47"/><text x="68.5732%" y="767.50"></text></g><g><title>futex_wait_cancelable (47 samples, 0.02%)</title><rect x="68.3232%" y="741" width="0.0209%" height="15" fill="rgb(219,163,46)" fg:x="153458" fg:w="47"/><text x="68.5732%" y="751.50"></text></g><g><title>Monitor::lock_without_safepoint_check (50 samples, 0.02%)</title><rect x="68.3223%" y="821" width="0.0223%" height="15" fill="rgb(216,126,30)" fg:x="153456" fg:w="50"/><text x="68.5723%" y="831.50"></text></g><g><title>Monitor::ILock (50 samples, 0.02%)</title><rect x="68.3223%" y="805" width="0.0223%" height="15" fill="rgb(208,139,11)" fg:x="153456" fg:w="50"/><text x="68.5723%" y="815.50"></text></g><g><title>os::PlatformEvent::park (48 samples, 0.02%)</title><rect x="68.3232%" y="789" width="0.0214%" height="15" fill="rgb(213,118,36)" fg:x="153458" fg:w="48"/><text x="68.5732%" y="799.50"></text></g><g><title>SafepointSynchronize::block (55 samples, 0.02%)</title><rect x="68.3223%" y="837" width="0.0245%" height="15" fill="rgb(226,43,17)" fg:x="153456" fg:w="55"/><text x="68.5723%" y="847.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (58 samples, 0.03%)</title><rect x="68.3214%" y="853" width="0.0258%" height="15" fill="rgb(254,217,4)" fg:x="153454" fg:w="58"/><text x="68.5714%" y="863.50"></text></g><g><title>copy_user_enhanced_fast_string (108 samples, 0.05%)</title><rect x="68.3820%" y="677" width="0.0481%" height="15" fill="rgb(210,134,47)" fg:x="153590" fg:w="108"/><text x="68.6320%" y="687.50"></text></g><g><title>copy_page_to_iter (117 samples, 0.05%)</title><rect x="68.3784%" y="693" width="0.0521%" height="15" fill="rgb(237,24,49)" fg:x="153582" fg:w="117"/><text x="68.6284%" y="703.50"></text></g><g><title>pagecache_get_page (23 samples, 0.01%)</title><rect x="68.4327%" y="693" width="0.0102%" height="15" fill="rgb(251,39,46)" fg:x="153704" fg:w="23"/><text x="68.6827%" y="703.50"></text></g><g><title>generic_file_buffered_read (173 samples, 0.08%)</title><rect x="68.3735%" y="709" width="0.0770%" height="15" fill="rgb(251,220,3)" fg:x="153571" fg:w="173"/><text x="68.6235%" y="719.50"></text></g><g><title>new_sync_read (180 samples, 0.08%)</title><rect x="68.3713%" y="725" width="0.0801%" height="15" fill="rgb(228,105,12)" fg:x="153566" fg:w="180"/><text x="68.6213%" y="735.50"></text></g><g><title>do_syscall_64 (214 samples, 0.10%)</title><rect x="68.3628%" y="773" width="0.0953%" height="15" fill="rgb(215,196,1)" fg:x="153547" fg:w="214"/><text x="68.6128%" y="783.50"></text></g><g><title>ksys_read (214 samples, 0.10%)</title><rect x="68.3628%" y="757" width="0.0953%" height="15" fill="rgb(214,33,39)" fg:x="153547" fg:w="214"/><text x="68.6128%" y="767.50"></text></g><g><title>vfs_read (208 samples, 0.09%)</title><rect x="68.3655%" y="741" width="0.0926%" height="15" fill="rgb(220,19,52)" fg:x="153553" fg:w="208"/><text x="68.6155%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (217 samples, 0.10%)</title><rect x="68.3628%" y="789" width="0.0966%" height="15" fill="rgb(221,78,38)" fg:x="153547" fg:w="217"/><text x="68.6128%" y="799.50"></text></g><g><title>__libc_read (227 samples, 0.10%)</title><rect x="68.3593%" y="821" width="0.1011%" height="15" fill="rgb(253,30,16)" fg:x="153539" fg:w="227"/><text x="68.6093%" y="831.50"></text></g><g><title>__libc_read (227 samples, 0.10%)</title><rect x="68.3593%" y="805" width="0.1011%" height="15" fill="rgb(242,65,0)" fg:x="153539" fg:w="227"/><text x="68.6093%" y="815.50"></text></g><g><title>handleRead (230 samples, 0.10%)</title><rect x="68.3584%" y="837" width="0.1024%" height="15" fill="rgb(235,201,12)" fg:x="153537" fg:w="230"/><text x="68.6084%" y="847.50"></text></g><g><title>[libc-2.31.so] (33 samples, 0.01%)</title><rect x="68.4768%" y="821" width="0.0147%" height="15" fill="rgb(233,161,9)" fg:x="153803" fg:w="33"/><text x="68.7268%" y="831.50"></text></g><g><title>readBytes (309 samples, 0.14%)</title><rect x="68.3553%" y="853" width="0.1376%" height="15" fill="rgb(241,207,41)" fg:x="153530" fg:w="309"/><text x="68.6053%" y="863.50"></text></g><g><title>jni_SetByteArrayRegion (45 samples, 0.02%)</title><rect x="68.4728%" y="837" width="0.0200%" height="15" fill="rgb(212,69,46)" fg:x="153794" fg:w="45"/><text x="68.7228%" y="847.50"></text></g><g><title>[unknown] (724 samples, 0.32%)</title><rect x="68.1781%" y="869" width="0.3223%" height="15" fill="rgb(239,69,45)" fg:x="153132" fg:w="724"/><text x="68.4281%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.04%)</title><rect x="68.5044%" y="805" width="0.0378%" height="15" fill="rgb(242,117,48)" fg:x="153865" fg:w="85"/><text x="68.7544%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (85 samples, 0.04%)</title><rect x="68.5044%" y="789" width="0.0378%" height="15" fill="rgb(228,41,36)" fg:x="153865" fg:w="85"/><text x="68.7544%" y="799.50"></text></g><g><title>native_write_msr (85 samples, 0.04%)</title><rect x="68.5044%" y="773" width="0.0378%" height="15" fill="rgb(212,3,32)" fg:x="153865" fg:w="85"/><text x="68.7544%" y="783.50"></text></g><g><title>schedule_tail (91 samples, 0.04%)</title><rect x="68.5031%" y="837" width="0.0405%" height="15" fill="rgb(233,41,49)" fg:x="153862" fg:w="91"/><text x="68.7531%" y="847.50"></text></g><g><title>finish_task_switch (89 samples, 0.04%)</title><rect x="68.5040%" y="821" width="0.0396%" height="15" fill="rgb(252,170,49)" fg:x="153864" fg:w="89"/><text x="68.7540%" y="831.50"></text></g><g><title>ret_from_fork (94 samples, 0.04%)</title><rect x="68.5026%" y="853" width="0.0419%" height="15" fill="rgb(229,53,26)" fg:x="153861" fg:w="94"/><text x="68.7526%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (25 samples, 0.01%)</title><rect x="68.5520%" y="517" width="0.0111%" height="15" fill="rgb(217,157,12)" fg:x="153972" fg:w="25"/><text x="68.8020%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.01%)</title><rect x="68.5520%" y="501" width="0.0111%" height="15" fill="rgb(227,17,9)" fg:x="153972" fg:w="25"/><text x="68.8020%" y="511.50"></text></g><g><title>native_write_msr (25 samples, 0.01%)</title><rect x="68.5520%" y="485" width="0.0111%" height="15" fill="rgb(218,84,12)" fg:x="153972" fg:w="25"/><text x="68.8020%" y="495.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="68.5512%" y="645" width="0.0129%" height="15" fill="rgb(212,79,24)" fg:x="153970" fg:w="29"/><text x="68.8012%" y="655.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.01%)</title><rect x="68.5512%" y="629" width="0.0129%" height="15" fill="rgb(217,222,37)" fg:x="153970" fg:w="29"/><text x="68.8012%" y="639.50"></text></g><g><title>do_futex (29 samples, 0.01%)</title><rect x="68.5512%" y="613" width="0.0129%" height="15" fill="rgb(246,208,8)" fg:x="153970" fg:w="29"/><text x="68.8012%" y="623.50"></text></g><g><title>futex_wait (29 samples, 0.01%)</title><rect x="68.5512%" y="597" width="0.0129%" height="15" fill="rgb(244,133,10)" fg:x="153970" fg:w="29"/><text x="68.8012%" y="607.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.01%)</title><rect x="68.5516%" y="581" width="0.0125%" height="15" fill="rgb(209,219,41)" fg:x="153971" fg:w="28"/><text x="68.8016%" y="591.50"></text></g><g><title>schedule (28 samples, 0.01%)</title><rect x="68.5516%" y="565" width="0.0125%" height="15" fill="rgb(253,175,45)" fg:x="153971" fg:w="28"/><text x="68.8016%" y="575.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="68.5516%" y="549" width="0.0125%" height="15" fill="rgb(235,100,37)" fg:x="153971" fg:w="28"/><text x="68.8016%" y="559.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="68.5516%" y="533" width="0.0125%" height="15" fill="rgb(225,87,19)" fg:x="153971" fg:w="28"/><text x="68.8016%" y="543.50"></text></g><g><title>Monitor::lock (30 samples, 0.01%)</title><rect x="68.5512%" y="757" width="0.0134%" height="15" fill="rgb(217,152,17)" fg:x="153970" fg:w="30"/><text x="68.8012%" y="767.50"></text></g><g><title>Monitor::ILock (30 samples, 0.01%)</title><rect x="68.5512%" y="741" width="0.0134%" height="15" fill="rgb(235,72,13)" fg:x="153970" fg:w="30"/><text x="68.8012%" y="751.50"></text></g><g><title>os::PlatformEvent::park (30 samples, 0.01%)</title><rect x="68.5512%" y="725" width="0.0134%" height="15" fill="rgb(233,140,18)" fg:x="153970" fg:w="30"/><text x="68.8012%" y="735.50"></text></g><g><title>__pthread_cond_wait (30 samples, 0.01%)</title><rect x="68.5512%" y="709" width="0.0134%" height="15" fill="rgb(207,212,28)" fg:x="153970" fg:w="30"/><text x="68.8012%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (30 samples, 0.01%)</title><rect x="68.5512%" y="693" width="0.0134%" height="15" fill="rgb(220,130,25)" fg:x="153970" fg:w="30"/><text x="68.8012%" y="703.50"></text></g><g><title>futex_wait_cancelable (30 samples, 0.01%)</title><rect x="68.5512%" y="677" width="0.0134%" height="15" fill="rgb(205,55,34)" fg:x="153970" fg:w="30"/><text x="68.8012%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="68.5512%" y="661" width="0.0134%" height="15" fill="rgb(237,54,35)" fg:x="153970" fg:w="30"/><text x="68.8012%" y="671.50"></text></g><g><title>JavaThread::exit (33 samples, 0.01%)</title><rect x="68.5507%" y="789" width="0.0147%" height="15" fill="rgb(208,67,23)" fg:x="153969" fg:w="33"/><text x="68.8007%" y="799.50"></text></g><g><title>Threads::remove (32 samples, 0.01%)</title><rect x="68.5512%" y="773" width="0.0142%" height="15" fill="rgb(206,207,50)" fg:x="153970" fg:w="32"/><text x="68.8012%" y="783.50"></text></g><g><title>Thread::call_run (47 samples, 0.02%)</title><rect x="68.5485%" y="821" width="0.0209%" height="15" fill="rgb(213,211,42)" fg:x="153964" fg:w="47"/><text x="68.7985%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (42 samples, 0.02%)</title><rect x="68.5507%" y="805" width="0.0187%" height="15" fill="rgb(252,197,50)" fg:x="153969" fg:w="42"/><text x="68.8007%" y="815.50"></text></g><g><title>__GI___clone (166 samples, 0.07%)</title><rect x="68.5004%" y="869" width="0.0739%" height="15" fill="rgb(251,211,41)" fg:x="153856" fg:w="166"/><text x="68.7504%" y="879.50"></text></g><g><title>start_thread (67 samples, 0.03%)</title><rect x="68.5445%" y="853" width="0.0298%" height="15" fill="rgb(229,211,5)" fg:x="153955" fg:w="67"/><text x="68.7945%" y="863.50"></text></g><g><title>thread_native_entry (60 samples, 0.03%)</title><rect x="68.5476%" y="837" width="0.0267%" height="15" fill="rgb(239,36,31)" fg:x="153962" fg:w="60"/><text x="68.7976%" y="847.50"></text></g><g><title>asm_exc_page_fault (174 samples, 0.08%)</title><rect x="68.5805%" y="869" width="0.0775%" height="15" fill="rgb(248,67,31)" fg:x="154036" fg:w="174"/><text x="68.8305%" y="879.50"></text></g><g><title>skyframe-evalua (44,430 samples, 19.78%)</title><rect x="48.8905%" y="885" width="19.7813%" height="15" fill="rgb(249,55,44)" fg:x="109811" fg:w="44430"/><text x="49.1405%" y="895.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (50 samples, 0.02%)</title><rect x="68.7056%" y="629" width="0.0223%" height="15" fill="rgb(216,82,12)" fg:x="154317" fg:w="50"/><text x="68.9556%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (50 samples, 0.02%)</title><rect x="68.7056%" y="613" width="0.0223%" height="15" fill="rgb(242,174,1)" fg:x="154317" fg:w="50"/><text x="68.9556%" y="623.50"></text></g><g><title>native_write_msr (50 samples, 0.02%)</title><rect x="68.7056%" y="597" width="0.0223%" height="15" fill="rgb(208,120,29)" fg:x="154317" fg:w="50"/><text x="68.9556%" y="607.50"></text></g><g><title>finish_task_switch (53 samples, 0.02%)</title><rect x="68.7056%" y="645" width="0.0236%" height="15" fill="rgb(221,105,43)" fg:x="154317" fg:w="53"/><text x="68.9556%" y="655.50"></text></g><g><title>do_syscall_64 (56 samples, 0.02%)</title><rect x="68.7048%" y="757" width="0.0249%" height="15" fill="rgb(234,124,22)" fg:x="154315" fg:w="56"/><text x="68.9548%" y="767.50"></text></g><g><title>__x64_sys_futex (56 samples, 0.02%)</title><rect x="68.7048%" y="741" width="0.0249%" height="15" fill="rgb(212,23,30)" fg:x="154315" fg:w="56"/><text x="68.9548%" y="751.50"></text></g><g><title>do_futex (56 samples, 0.02%)</title><rect x="68.7048%" y="725" width="0.0249%" height="15" fill="rgb(219,122,53)" fg:x="154315" fg:w="56"/><text x="68.9548%" y="735.50"></text></g><g><title>futex_wait (56 samples, 0.02%)</title><rect x="68.7048%" y="709" width="0.0249%" height="15" fill="rgb(248,84,24)" fg:x="154315" fg:w="56"/><text x="68.9548%" y="719.50"></text></g><g><title>futex_wait_queue_me (56 samples, 0.02%)</title><rect x="68.7048%" y="693" width="0.0249%" height="15" fill="rgb(245,115,18)" fg:x="154315" fg:w="56"/><text x="68.9548%" y="703.50"></text></g><g><title>schedule (56 samples, 0.02%)</title><rect x="68.7048%" y="677" width="0.0249%" height="15" fill="rgb(227,176,51)" fg:x="154315" fg:w="56"/><text x="68.9548%" y="687.50"></text></g><g><title>__schedule (56 samples, 0.02%)</title><rect x="68.7048%" y="661" width="0.0249%" height="15" fill="rgb(229,63,42)" fg:x="154315" fg:w="56"/><text x="68.9548%" y="671.50"></text></g><g><title>__pthread_cond_wait (57 samples, 0.03%)</title><rect x="68.7048%" y="821" width="0.0254%" height="15" fill="rgb(247,202,24)" fg:x="154315" fg:w="57"/><text x="68.9548%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (57 samples, 0.03%)</title><rect x="68.7048%" y="805" width="0.0254%" height="15" fill="rgb(244,173,20)" fg:x="154315" fg:w="57"/><text x="68.9548%" y="815.50"></text></g><g><title>futex_wait_cancelable (57 samples, 0.03%)</title><rect x="68.7048%" y="789" width="0.0254%" height="15" fill="rgb(242,81,47)" fg:x="154315" fg:w="57"/><text x="68.9548%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.03%)</title><rect x="68.7048%" y="773" width="0.0254%" height="15" fill="rgb(231,185,54)" fg:x="154315" fg:w="57"/><text x="68.9548%" y="783.50"></text></g><g><title>Unsafe_Park (75 samples, 0.03%)</title><rect x="68.6972%" y="853" width="0.0334%" height="15" fill="rgb(243,55,32)" fg:x="154298" fg:w="75"/><text x="68.9472%" y="863.50"></text></g><g><title>Parker::park (75 samples, 0.03%)</title><rect x="68.6972%" y="837" width="0.0334%" height="15" fill="rgb(208,167,19)" fg:x="154298" fg:w="75"/><text x="68.9472%" y="847.50"></text></g><g><title>[perf-501242.map] (142 samples, 0.06%)</title><rect x="68.6731%" y="869" width="0.0632%" height="15" fill="rgb(231,72,35)" fg:x="154244" fg:w="142"/><text x="68.9231%" y="879.50"></text></g><g><title>skyframe-invali (158 samples, 0.07%)</title><rect x="68.6718%" y="885" width="0.0703%" height="15" fill="rgb(250,173,51)" fg:x="154241" fg:w="158"/><text x="68.9218%" y="895.50"></text></g><g><title>[unknown] (70 samples, 0.03%)</title><rect x="68.7515%" y="869" width="0.0312%" height="15" fill="rgb(209,5,22)" fg:x="154420" fg:w="70"/><text x="69.0015%" y="879.50"></text></g><g><title>[zig] (70 samples, 0.03%)</title><rect x="68.7515%" y="853" width="0.0312%" height="15" fill="rgb(250,174,19)" fg:x="154420" fg:w="70"/><text x="69.0015%" y="863.50"></text></g><g><title>vmacache_find (27 samples, 0.01%)</title><rect x="79.7116%" y="789" width="0.0120%" height="15" fill="rgb(217,3,49)" fg:x="179037" fg:w="27"/><text x="79.9616%" y="799.50"></text></g><g><title>find_vma (49 samples, 0.02%)</title><rect x="79.7027%" y="805" width="0.0218%" height="15" fill="rgb(218,225,5)" fg:x="179017" fg:w="49"/><text x="79.9527%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.03%)</title><rect x="79.8291%" y="677" width="0.0334%" height="15" fill="rgb(236,89,11)" fg:x="179301" fg:w="75"/><text x="80.0791%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.03%)</title><rect x="79.8291%" y="661" width="0.0334%" height="15" fill="rgb(206,33,28)" fg:x="179301" fg:w="75"/><text x="80.0791%" y="671.50"></text></g><g><title>native_write_msr (73 samples, 0.03%)</title><rect x="79.8300%" y="645" width="0.0325%" height="15" fill="rgb(241,56,42)" fg:x="179303" fg:w="73"/><text x="80.0800%" y="655.50"></text></g><g><title>finish_task_switch (78 samples, 0.03%)</title><rect x="79.8282%" y="693" width="0.0347%" height="15" fill="rgb(222,44,11)" fg:x="179299" fg:w="78"/><text x="80.0782%" y="703.50"></text></g><g><title>wait_on_page_bit_common (87 samples, 0.04%)</title><rect x="79.8265%" y="757" width="0.0387%" height="15" fill="rgb(234,111,20)" fg:x="179295" fg:w="87"/><text x="80.0765%" y="767.50"></text></g><g><title>io_schedule (84 samples, 0.04%)</title><rect x="79.8278%" y="741" width="0.0374%" height="15" fill="rgb(237,77,6)" fg:x="179298" fg:w="84"/><text x="80.0778%" y="751.50"></text></g><g><title>schedule (83 samples, 0.04%)</title><rect x="79.8282%" y="725" width="0.0370%" height="15" fill="rgb(235,111,23)" fg:x="179299" fg:w="83"/><text x="80.0782%" y="735.50"></text></g><g><title>__schedule (83 samples, 0.04%)</title><rect x="79.8282%" y="709" width="0.0370%" height="15" fill="rgb(251,135,29)" fg:x="179299" fg:w="83"/><text x="80.0782%" y="719.50"></text></g><g><title>__do_fault (116 samples, 0.05%)</title><rect x="79.8175%" y="789" width="0.0516%" height="15" fill="rgb(217,57,1)" fg:x="179275" fg:w="116"/><text x="80.0675%" y="799.50"></text></g><g><title>filemap_fault (116 samples, 0.05%)</title><rect x="79.8175%" y="773" width="0.0516%" height="15" fill="rgb(249,119,31)" fg:x="179275" fg:w="116"/><text x="80.0675%" y="783.50"></text></g><g><title>_raw_spin_lock (27 samples, 0.01%)</title><rect x="79.8763%" y="789" width="0.0120%" height="15" fill="rgb(233,164,33)" fg:x="179407" fg:w="27"/><text x="80.1263%" y="799.50"></text></g><g><title>__list_del_entry_valid (41 samples, 0.02%)</title><rect x="79.9556%" y="741" width="0.0183%" height="15" fill="rgb(250,217,43)" fg:x="179585" fg:w="41"/><text x="80.2056%" y="751.50"></text></g><g><title>kernel_init_free_pages (206 samples, 0.09%)</title><rect x="79.9796%" y="725" width="0.0917%" height="15" fill="rgb(232,154,50)" fg:x="179639" fg:w="206"/><text x="80.2296%" y="735.50"></text></g><g><title>clear_page_erms (198 samples, 0.09%)</title><rect x="79.9832%" y="709" width="0.0882%" height="15" fill="rgb(227,190,8)" fg:x="179647" fg:w="198"/><text x="80.2332%" y="719.50"></text></g><g><title>__alloc_pages_nodemask (388 samples, 0.17%)</title><rect x="79.8990%" y="773" width="0.1727%" height="15" fill="rgb(209,217,32)" fg:x="179458" fg:w="388"/><text x="80.1490%" y="783.50"></text></g><g><title>get_page_from_freelist (344 samples, 0.15%)</title><rect x="79.9186%" y="757" width="0.1532%" height="15" fill="rgb(243,203,50)" fg:x="179502" fg:w="344"/><text x="80.1686%" y="767.50"></text></g><g><title>prep_new_page (219 samples, 0.10%)</title><rect x="79.9743%" y="741" width="0.0975%" height="15" fill="rgb(232,152,27)" fg:x="179627" fg:w="219"/><text x="80.2243%" y="751.50"></text></g><g><title>alloc_pages_vma (419 samples, 0.19%)</title><rect x="79.8892%" y="789" width="0.1865%" height="15" fill="rgb(240,34,29)" fg:x="179436" fg:w="419"/><text x="80.1392%" y="799.50"></text></g><g><title>cgroup_throttle_swaprate (37 samples, 0.02%)</title><rect x="80.0767%" y="789" width="0.0165%" height="15" fill="rgb(215,185,52)" fg:x="179857" fg:w="37"/><text x="80.3267%" y="799.50"></text></g><g><title>lock_extent_bits (29 samples, 0.01%)</title><rect x="80.1363%" y="757" width="0.0129%" height="15" fill="rgb(240,89,49)" fg:x="179991" fg:w="29"/><text x="80.3863%" y="767.50"></text></g><g><title>__set_extent_bit (26 samples, 0.01%)</title><rect x="80.1377%" y="741" width="0.0116%" height="15" fill="rgb(225,12,52)" fg:x="179994" fg:w="26"/><text x="80.3877%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.03%)</title><rect x="80.1528%" y="677" width="0.0263%" height="15" fill="rgb(239,128,45)" fg:x="180028" fg:w="59"/><text x="80.4028%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.03%)</title><rect x="80.1528%" y="661" width="0.0263%" height="15" fill="rgb(211,78,47)" fg:x="180028" fg:w="59"/><text x="80.4028%" y="671.50"></text></g><g><title>native_write_msr (58 samples, 0.03%)</title><rect x="80.1532%" y="645" width="0.0258%" height="15" fill="rgb(232,31,21)" fg:x="180029" fg:w="58"/><text x="80.4032%" y="655.50"></text></g><g><title>finish_task_switch (62 samples, 0.03%)</title><rect x="80.1524%" y="693" width="0.0276%" height="15" fill="rgb(222,168,14)" fg:x="180027" fg:w="62"/><text x="80.4024%" y="703.50"></text></g><g><title>wait_on_page_bit_common (69 samples, 0.03%)</title><rect x="80.1497%" y="757" width="0.0307%" height="15" fill="rgb(209,128,24)" fg:x="180021" fg:w="69"/><text x="80.3997%" y="767.50"></text></g><g><title>io_schedule (65 samples, 0.03%)</title><rect x="80.1515%" y="741" width="0.0289%" height="15" fill="rgb(249,35,13)" fg:x="180025" fg:w="65"/><text x="80.4015%" y="751.50"></text></g><g><title>schedule (64 samples, 0.03%)</title><rect x="80.1519%" y="725" width="0.0285%" height="15" fill="rgb(218,7,2)" fg:x="180026" fg:w="64"/><text x="80.4019%" y="735.50"></text></g><g><title>__schedule (64 samples, 0.03%)</title><rect x="80.1519%" y="709" width="0.0285%" height="15" fill="rgb(238,107,27)" fg:x="180026" fg:w="64"/><text x="80.4019%" y="719.50"></text></g><g><title>do_page_mkwrite (176 samples, 0.08%)</title><rect x="80.1025%" y="789" width="0.0784%" height="15" fill="rgb(217,88,38)" fg:x="179915" fg:w="176"/><text x="80.3525%" y="799.50"></text></g><g><title>btrfs_page_mkwrite (173 samples, 0.08%)</title><rect x="80.1038%" y="773" width="0.0770%" height="15" fill="rgb(230,207,0)" fg:x="179918" fg:w="173"/><text x="80.3538%" y="783.50"></text></g><g><title>__mod_lruvec_state (33 samples, 0.01%)</title><rect x="80.4636%" y="741" width="0.0147%" height="15" fill="rgb(249,64,54)" fg:x="180726" fg:w="33"/><text x="80.7136%" y="751.50"></text></g><g><title>__mod_memcg_lruvec_state (56 samples, 0.02%)</title><rect x="80.4783%" y="741" width="0.0249%" height="15" fill="rgb(231,7,11)" fg:x="180759" fg:w="56"/><text x="80.7283%" y="751.50"></text></g><g><title>page_add_file_rmap (170 samples, 0.08%)</title><rect x="80.4355%" y="757" width="0.0757%" height="15" fill="rgb(205,149,21)" fg:x="180663" fg:w="170"/><text x="80.6855%" y="767.50"></text></g><g><title>alloc_set_pte (250 samples, 0.11%)</title><rect x="80.4048%" y="773" width="0.1113%" height="15" fill="rgb(215,126,34)" fg:x="180594" fg:w="250"/><text x="80.6548%" y="783.50"></text></g><g><title>unlock_page (59 samples, 0.03%)</title><rect x="80.5161%" y="773" width="0.0263%" height="15" fill="rgb(241,132,45)" fg:x="180844" fg:w="59"/><text x="80.7661%" y="783.50"></text></g><g><title>filemap_map_pages (834 samples, 0.37%)</title><rect x="80.1915%" y="789" width="0.3713%" height="15" fill="rgb(252,69,32)" fg:x="180115" fg:w="834"/><text x="80.4415%" y="799.50"></text></g><g><title>xas_find (46 samples, 0.02%)</title><rect x="80.5424%" y="773" width="0.0205%" height="15" fill="rgb(232,204,19)" fg:x="180903" fg:w="46"/><text x="80.7924%" y="783.50"></text></g><g><title>xas_load (39 samples, 0.02%)</title><rect x="80.5455%" y="757" width="0.0174%" height="15" fill="rgb(249,15,47)" fg:x="180910" fg:w="39"/><text x="80.7955%" y="767.50"></text></g><g><title>__pagevec_lru_add_fn (79 samples, 0.04%)</title><rect x="80.5767%" y="757" width="0.0352%" height="15" fill="rgb(209,227,23)" fg:x="180980" fg:w="79"/><text x="80.8267%" y="767.50"></text></g><g><title>lru_cache_add (125 samples, 0.06%)</title><rect x="80.5651%" y="789" width="0.0557%" height="15" fill="rgb(248,92,24)" fg:x="180954" fg:w="125"/><text x="80.8151%" y="799.50"></text></g><g><title>pagevec_lru_move_fn (103 samples, 0.05%)</title><rect x="80.5749%" y="773" width="0.0459%" height="15" fill="rgb(247,59,2)" fg:x="180976" fg:w="103"/><text x="80.8249%" y="783.50"></text></g><g><title>get_mem_cgroup_from_mm (53 samples, 0.02%)</title><rect x="80.6336%" y="773" width="0.0236%" height="15" fill="rgb(221,30,5)" fg:x="181108" fg:w="53"/><text x="80.8836%" y="783.50"></text></g><g><title>mem_cgroup_charge (135 samples, 0.06%)</title><rect x="80.6221%" y="789" width="0.0601%" height="15" fill="rgb(208,108,53)" fg:x="181082" fg:w="135"/><text x="80.8721%" y="799.50"></text></g><g><title>try_charge (35 samples, 0.02%)</title><rect x="80.6666%" y="773" width="0.0156%" height="15" fill="rgb(211,183,26)" fg:x="181182" fg:w="35"/><text x="80.9166%" y="783.50"></text></g><g><title>page_add_new_anon_rmap (57 samples, 0.03%)</title><rect x="80.6862%" y="789" width="0.0254%" height="15" fill="rgb(232,132,4)" fg:x="181226" fg:w="57"/><text x="80.9362%" y="799.50"></text></g><g><title>__mod_memcg_lruvec_state (26 samples, 0.01%)</title><rect x="80.7000%" y="773" width="0.0116%" height="15" fill="rgb(253,128,37)" fg:x="181257" fg:w="26"/><text x="80.9500%" y="783.50"></text></g><g><title>handle_mm_fault (2,275 samples, 1.01%)</title><rect x="79.7245%" y="805" width="1.0129%" height="15" fill="rgb(221,58,24)" fg:x="179066" fg:w="2275"/><text x="79.9745%" y="815.50"></text></g><g><title>do_user_addr_fault (2,401 samples, 1.07%)</title><rect x="79.6791%" y="821" width="1.0690%" height="15" fill="rgb(230,54,45)" fg:x="178964" fg:w="2401"/><text x="79.9291%" y="831.50"></text></g><g><title>exc_page_fault (2,424 samples, 1.08%)</title><rect x="79.6697%" y="837" width="1.0792%" height="15" fill="rgb(254,21,18)" fg:x="178943" fg:w="2424"/><text x="79.9197%" y="847.50"></text></g><g><title>asm_exc_page_fault (2,453 samples, 1.09%)</title><rect x="79.6582%" y="853" width="1.0921%" height="15" fill="rgb(221,108,0)" fg:x="178917" fg:w="2453"/><text x="79.9082%" y="863.50"></text></g><g><title>irqentry_exit_to_user_mode (24 samples, 0.01%)</title><rect x="80.7503%" y="837" width="0.0107%" height="15" fill="rgb(206,95,1)" fg:x="181370" fg:w="24"/><text x="81.0003%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (24 samples, 0.01%)</title><rect x="80.7503%" y="821" width="0.0107%" height="15" fill="rgb(237,52,5)" fg:x="181370" fg:w="24"/><text x="81.0003%" y="831.50"></text></g><g><title>schedule (23 samples, 0.01%)</title><rect x="80.7507%" y="805" width="0.0102%" height="15" fill="rgb(218,150,34)" fg:x="181371" fg:w="23"/><text x="81.0007%" y="815.50"></text></g><g><title>__schedule (23 samples, 0.01%)</title><rect x="80.7507%" y="789" width="0.0102%" height="15" fill="rgb(235,194,28)" fg:x="181371" fg:w="23"/><text x="81.0007%" y="799.50"></text></g><g><title>finish_task_switch (23 samples, 0.01%)</title><rect x="80.7507%" y="773" width="0.0102%" height="15" fill="rgb(245,92,18)" fg:x="181371" fg:w="23"/><text x="81.0007%" y="783.50"></text></g><g><title>__sysvec_apic_timer_interrupt (23 samples, 0.01%)</title><rect x="80.7610%" y="821" width="0.0102%" height="15" fill="rgb(253,203,53)" fg:x="181394" fg:w="23"/><text x="81.0110%" y="831.50"></text></g><g><title>kmem_cache_free (59 samples, 0.03%)</title><rect x="80.7783%" y="741" width="0.0263%" height="15" fill="rgb(249,185,47)" fg:x="181433" fg:w="59"/><text x="81.0283%" y="751.50"></text></g><g><title>rcu_core (96 samples, 0.04%)</title><rect x="80.7712%" y="757" width="0.0427%" height="15" fill="rgb(252,194,52)" fg:x="181417" fg:w="96"/><text x="81.0212%" y="767.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (145 samples, 0.06%)</title><rect x="80.7503%" y="853" width="0.0646%" height="15" fill="rgb(210,53,36)" fg:x="181370" fg:w="145"/><text x="81.0003%" y="863.50"></text></g><g><title>sysvec_apic_timer_interrupt (121 samples, 0.05%)</title><rect x="80.7610%" y="837" width="0.0539%" height="15" fill="rgb(237,37,25)" fg:x="181394" fg:w="121"/><text x="81.0110%" y="847.50"></text></g><g><title>irq_exit_rcu (98 samples, 0.04%)</title><rect x="80.7712%" y="821" width="0.0436%" height="15" fill="rgb(242,116,27)" fg:x="181417" fg:w="98"/><text x="81.0212%" y="831.50"></text></g><g><title>do_softirq_own_stack (98 samples, 0.04%)</title><rect x="80.7712%" y="805" width="0.0436%" height="15" fill="rgb(213,185,26)" fg:x="181417" fg:w="98"/><text x="81.0212%" y="815.50"></text></g><g><title>asm_call_sysvec_on_stack (98 samples, 0.04%)</title><rect x="80.7712%" y="789" width="0.0436%" height="15" fill="rgb(225,204,8)" fg:x="181417" fg:w="98"/><text x="81.0212%" y="799.50"></text></g><g><title>__softirqentry_text_start (98 samples, 0.04%)</title><rect x="80.7712%" y="773" width="0.0436%" height="15" fill="rgb(254,111,37)" fg:x="181417" fg:w="98"/><text x="81.0212%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (1,152 samples, 0.51%)</title><rect x="80.8180%" y="853" width="0.5129%" height="15" fill="rgb(242,35,9)" fg:x="181522" fg:w="1152"/><text x="81.0680%" y="863.50"></text></g><g><title>__vmalloc_node_range (34 samples, 0.02%)</title><rect x="81.5321%" y="773" width="0.0151%" height="15" fill="rgb(232,138,49)" fg:x="183126" fg:w="34"/><text x="81.7821%" y="783.50"></text></g><g><title>inherit_task_group.isra.0 (44 samples, 0.02%)</title><rect x="81.5557%" y="757" width="0.0196%" height="15" fill="rgb(247,56,4)" fg:x="183179" fg:w="44"/><text x="81.8057%" y="767.50"></text></g><g><title>inherit_event.constprop.0 (43 samples, 0.02%)</title><rect x="81.5561%" y="741" width="0.0191%" height="15" fill="rgb(226,179,17)" fg:x="183180" fg:w="43"/><text x="81.8061%" y="751.50"></text></g><g><title>perf_event_alloc (36 samples, 0.02%)</title><rect x="81.5593%" y="725" width="0.0160%" height="15" fill="rgb(216,163,45)" fg:x="183187" fg:w="36"/><text x="81.8093%" y="735.50"></text></g><g><title>perf_event_init_task (45 samples, 0.02%)</title><rect x="81.5557%" y="773" width="0.0200%" height="15" fill="rgb(211,157,3)" fg:x="183179" fg:w="45"/><text x="81.8057%" y="783.50"></text></g><g><title>copy_process (103 samples, 0.05%)</title><rect x="81.5312%" y="789" width="0.0459%" height="15" fill="rgb(234,44,20)" fg:x="183124" fg:w="103"/><text x="81.7812%" y="799.50"></text></g><g><title>__do_sys_clone (111 samples, 0.05%)</title><rect x="81.5312%" y="821" width="0.0494%" height="15" fill="rgb(254,138,23)" fg:x="183124" fg:w="111"/><text x="81.7812%" y="831.50"></text></g><g><title>kernel_clone (111 samples, 0.05%)</title><rect x="81.5312%" y="805" width="0.0494%" height="15" fill="rgb(206,119,39)" fg:x="183124" fg:w="111"/><text x="81.7812%" y="815.50"></text></g><g><title>_copy_to_user (193 samples, 0.09%)</title><rect x="81.6163%" y="789" width="0.0859%" height="15" fill="rgb(231,105,52)" fg:x="183315" fg:w="193"/><text x="81.8663%" y="799.50"></text></g><g><title>copy_user_enhanced_fast_string (171 samples, 0.08%)</title><rect x="81.6260%" y="773" width="0.0761%" height="15" fill="rgb(250,20,5)" fg:x="183337" fg:w="171"/><text x="81.8760%" y="783.50"></text></g><g><title>from_kgid_munged (29 samples, 0.01%)</title><rect x="81.7022%" y="789" width="0.0129%" height="15" fill="rgb(215,198,30)" fg:x="183508" fg:w="29"/><text x="81.9522%" y="799.50"></text></g><g><title>map_id_up (23 samples, 0.01%)</title><rect x="81.7049%" y="773" width="0.0102%" height="15" fill="rgb(246,142,8)" fg:x="183514" fg:w="23"/><text x="81.9549%" y="783.50"></text></g><g><title>cp_new_stat (309 samples, 0.14%)</title><rect x="81.5886%" y="805" width="0.1376%" height="15" fill="rgb(243,26,38)" fg:x="183253" fg:w="309"/><text x="81.8386%" y="815.50"></text></g><g><title>from_kuid_munged (25 samples, 0.01%)</title><rect x="81.7151%" y="789" width="0.0111%" height="15" fill="rgb(205,133,28)" fg:x="183537" fg:w="25"/><text x="81.9651%" y="799.50"></text></g><g><title>__fget_files (103 samples, 0.05%)</title><rect x="81.7423%" y="773" width="0.0459%" height="15" fill="rgb(212,34,0)" fg:x="183598" fg:w="103"/><text x="81.9923%" y="783.50"></text></g><g><title>__fget_light (112 samples, 0.05%)</title><rect x="81.7387%" y="789" width="0.0499%" height="15" fill="rgb(251,226,22)" fg:x="183590" fg:w="112"/><text x="81.9887%" y="799.50"></text></g><g><title>_raw_spin_lock (59 samples, 0.03%)</title><rect x="81.9221%" y="773" width="0.0263%" height="15" fill="rgb(252,119,9)" fg:x="184002" fg:w="59"/><text x="82.1721%" y="783.50"></text></g><g><title>generic_fillattr (38 samples, 0.02%)</title><rect x="81.9484%" y="773" width="0.0169%" height="15" fill="rgb(213,150,50)" fg:x="184061" fg:w="38"/><text x="82.1984%" y="783.50"></text></g><g><title>btrfs_getattr (460 samples, 0.20%)</title><rect x="81.7886%" y="789" width="0.2048%" height="15" fill="rgb(212,24,39)" fg:x="183702" fg:w="460"/><text x="82.0386%" y="799.50"></text></g><g><title>inode_get_bytes (63 samples, 0.03%)</title><rect x="81.9653%" y="773" width="0.0280%" height="15" fill="rgb(213,46,39)" fg:x="184099" fg:w="63"/><text x="82.2153%" y="783.50"></text></g><g><title>_raw_spin_lock (47 samples, 0.02%)</title><rect x="81.9724%" y="757" width="0.0209%" height="15" fill="rgb(239,106,12)" fg:x="184115" fg:w="47"/><text x="82.2224%" y="767.50"></text></g><g><title>fput_many (41 samples, 0.02%)</title><rect x="81.9938%" y="789" width="0.0183%" height="15" fill="rgb(249,229,21)" fg:x="184163" fg:w="41"/><text x="82.2438%" y="799.50"></text></g><g><title>apparmor_inode_getattr (28 samples, 0.01%)</title><rect x="82.0170%" y="773" width="0.0125%" height="15" fill="rgb(212,158,3)" fg:x="184215" fg:w="28"/><text x="82.2670%" y="783.50"></text></g><g><title>security_inode_getattr (194 samples, 0.09%)</title><rect x="82.0121%" y="789" width="0.0864%" height="15" fill="rgb(253,26,48)" fg:x="184204" fg:w="194"/><text x="82.2621%" y="799.50"></text></g><g><title>tomoyo_path_perm (154 samples, 0.07%)</title><rect x="82.0299%" y="773" width="0.0686%" height="15" fill="rgb(238,178,20)" fg:x="184244" fg:w="154"/><text x="82.2799%" y="783.50"></text></g><g><title>tomoyo_init_request_info (58 samples, 0.03%)</title><rect x="82.0726%" y="757" width="0.0258%" height="15" fill="rgb(208,86,15)" fg:x="184340" fg:w="58"/><text x="82.3226%" y="767.50"></text></g><g><title>__do_sys_newfstat (1,252 samples, 0.56%)</title><rect x="81.5806%" y="821" width="0.5574%" height="15" fill="rgb(239,42,53)" fg:x="183235" fg:w="1252"/><text x="81.8306%" y="831.50"></text></g><g><title>vfs_fstat (925 samples, 0.41%)</title><rect x="81.7262%" y="805" width="0.4118%" height="15" fill="rgb(245,226,8)" fg:x="183562" fg:w="925"/><text x="81.9762%" y="815.50"></text></g><g><title>vfs_getattr_nosec (89 samples, 0.04%)</title><rect x="82.0984%" y="789" width="0.0396%" height="15" fill="rgb(216,176,32)" fg:x="184398" fg:w="89"/><text x="82.3484%" y="799.50"></text></g><g><title>__do_sys_newstat (25 samples, 0.01%)</title><rect x="82.1381%" y="821" width="0.0111%" height="15" fill="rgb(231,186,21)" fg:x="184487" fg:w="25"/><text x="82.3881%" y="831.50"></text></g><g><title>vfs_statx (25 samples, 0.01%)</title><rect x="82.1381%" y="805" width="0.0111%" height="15" fill="rgb(205,95,49)" fg:x="184487" fg:w="25"/><text x="82.3881%" y="815.50"></text></g><g><title>__close_fd (92 samples, 0.04%)</title><rect x="82.1523%" y="805" width="0.0410%" height="15" fill="rgb(217,145,8)" fg:x="184519" fg:w="92"/><text x="82.4023%" y="815.50"></text></g><g><title>pick_file (91 samples, 0.04%)</title><rect x="82.1527%" y="789" width="0.0405%" height="15" fill="rgb(239,144,48)" fg:x="184520" fg:w="91"/><text x="82.4027%" y="799.50"></text></g><g><title>_raw_spin_lock (65 samples, 0.03%)</title><rect x="82.1643%" y="773" width="0.0289%" height="15" fill="rgb(214,189,23)" fg:x="184546" fg:w="65"/><text x="82.4143%" y="783.50"></text></g><g><title>fput_many (162 samples, 0.07%)</title><rect x="82.2013%" y="789" width="0.0721%" height="15" fill="rgb(229,157,17)" fg:x="184629" fg:w="162"/><text x="82.4513%" y="799.50"></text></g><g><title>task_work_add (99 samples, 0.04%)</title><rect x="82.2293%" y="773" width="0.0441%" height="15" fill="rgb(230,5,48)" fg:x="184692" fg:w="99"/><text x="82.4793%" y="783.50"></text></g><g><title>__x64_sys_close (304 samples, 0.14%)</title><rect x="82.1496%" y="821" width="0.1353%" height="15" fill="rgb(224,156,48)" fg:x="184513" fg:w="304"/><text x="82.3996%" y="831.50"></text></g><g><title>filp_close (206 samples, 0.09%)</title><rect x="82.1933%" y="805" width="0.0917%" height="15" fill="rgb(223,14,29)" fg:x="184611" fg:w="206"/><text x="82.4433%" y="815.50"></text></g><g><title>locks_remove_posix (26 samples, 0.01%)</title><rect x="82.2734%" y="789" width="0.0116%" height="15" fill="rgb(229,96,36)" fg:x="184791" fg:w="26"/><text x="82.5234%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (103 samples, 0.05%)</title><rect x="82.2943%" y="693" width="0.0459%" height="15" fill="rgb(231,102,53)" fg:x="184838" fg:w="103"/><text x="82.5443%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (102 samples, 0.05%)</title><rect x="82.2948%" y="677" width="0.0454%" height="15" fill="rgb(210,77,38)" fg:x="184839" fg:w="102"/><text x="82.5448%" y="687.50"></text></g><g><title>native_write_msr (102 samples, 0.05%)</title><rect x="82.2948%" y="661" width="0.0454%" height="15" fill="rgb(235,131,6)" fg:x="184839" fg:w="102"/><text x="82.5448%" y="671.50"></text></g><g><title>finish_task_switch (106 samples, 0.05%)</title><rect x="82.2943%" y="709" width="0.0472%" height="15" fill="rgb(252,55,38)" fg:x="184838" fg:w="106"/><text x="82.5443%" y="719.50"></text></g><g><title>schedule (107 samples, 0.05%)</title><rect x="82.2943%" y="741" width="0.0476%" height="15" fill="rgb(246,38,14)" fg:x="184838" fg:w="107"/><text x="82.5443%" y="751.50"></text></g><g><title>__schedule (107 samples, 0.05%)</title><rect x="82.2943%" y="725" width="0.0476%" height="15" fill="rgb(242,27,5)" fg:x="184838" fg:w="107"/><text x="82.5443%" y="735.50"></text></g><g><title>load_elf_binary (122 samples, 0.05%)</title><rect x="82.2903%" y="773" width="0.0543%" height="15" fill="rgb(228,65,35)" fg:x="184829" fg:w="122"/><text x="82.5403%" y="783.50"></text></g><g><title>begin_new_exec (122 samples, 0.05%)</title><rect x="82.2903%" y="757" width="0.0543%" height="15" fill="rgb(245,93,11)" fg:x="184829" fg:w="122"/><text x="82.5403%" y="767.50"></text></g><g><title>bprm_execve (152 samples, 0.07%)</title><rect x="82.2850%" y="789" width="0.0677%" height="15" fill="rgb(213,1,31)" fg:x="184817" fg:w="152"/><text x="82.5350%" y="799.50"></text></g><g><title>__x64_sys_execve (176 samples, 0.08%)</title><rect x="82.2850%" y="821" width="0.0784%" height="15" fill="rgb(237,205,14)" fg:x="184817" fg:w="176"/><text x="82.5350%" y="831.50"></text></g><g><title>do_execveat_common (176 samples, 0.08%)</title><rect x="82.2850%" y="805" width="0.0784%" height="15" fill="rgb(232,118,45)" fg:x="184817" fg:w="176"/><text x="82.5350%" y="815.50"></text></g><g><title>plist_add (23 samples, 0.01%)</title><rect x="82.4573%" y="757" width="0.0102%" height="15" fill="rgb(218,5,6)" fg:x="185204" fg:w="23"/><text x="82.7073%" y="767.50"></text></g><g><title>__perf_event_task_sched_out (31 samples, 0.01%)</title><rect x="82.5214%" y="725" width="0.0138%" height="15" fill="rgb(251,87,51)" fg:x="185348" fg:w="31"/><text x="82.7714%" y="735.50"></text></g><g><title>update_cfs_group (37 samples, 0.02%)</title><rect x="82.5770%" y="693" width="0.0165%" height="15" fill="rgb(207,225,20)" fg:x="185473" fg:w="37"/><text x="82.8270%" y="703.50"></text></g><g><title>__calc_delta (25 samples, 0.01%)</title><rect x="82.6158%" y="677" width="0.0111%" height="15" fill="rgb(222,78,54)" fg:x="185560" fg:w="25"/><text x="82.8658%" y="687.50"></text></g><g><title>cpuacct_charge (24 samples, 0.01%)</title><rect x="82.6296%" y="677" width="0.0107%" height="15" fill="rgb(232,85,16)" fg:x="185591" fg:w="24"/><text x="82.8796%" y="687.50"></text></g><g><title>update_curr (116 samples, 0.05%)</title><rect x="82.5935%" y="693" width="0.0516%" height="15" fill="rgb(244,25,33)" fg:x="185510" fg:w="116"/><text x="82.8435%" y="703.50"></text></g><g><title>__update_load_avg_cfs_rq (27 samples, 0.01%)</title><rect x="82.6670%" y="677" width="0.0120%" height="15" fill="rgb(233,24,36)" fg:x="185675" fg:w="27"/><text x="82.9170%" y="687.50"></text></g><g><title>__update_load_avg_se (35 samples, 0.02%)</title><rect x="82.6790%" y="677" width="0.0156%" height="15" fill="rgb(253,49,54)" fg:x="185702" fg:w="35"/><text x="82.9290%" y="687.50"></text></g><g><title>dequeue_entity (313 samples, 0.14%)</title><rect x="82.5592%" y="709" width="0.1394%" height="15" fill="rgb(245,12,22)" fg:x="185433" fg:w="313"/><text x="82.8092%" y="719.50"></text></g><g><title>update_load_avg (120 samples, 0.05%)</title><rect x="82.6452%" y="693" width="0.0534%" height="15" fill="rgb(253,141,28)" fg:x="185626" fg:w="120"/><text x="82.8952%" y="703.50"></text></g><g><title>dequeue_task_fair (361 samples, 0.16%)</title><rect x="82.5423%" y="725" width="0.1607%" height="15" fill="rgb(225,207,27)" fg:x="185395" fg:w="361"/><text x="82.7923%" y="735.50"></text></g><g><title>__mmdrop (30 samples, 0.01%)</title><rect x="82.8059%" y="709" width="0.0134%" height="15" fill="rgb(220,84,2)" fg:x="185987" fg:w="30"/><text x="83.0559%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (10,363 samples, 4.61%)</title><rect x="82.8192%" y="709" width="4.6139%" height="15" fill="rgb(224,37,37)" fg:x="186017" fg:w="10363"/><text x="83.0692%" y="719.50">__per..</text></g><g><title>__intel_pmu_enable_all.constprop.0 (10,255 samples, 4.57%)</title><rect x="82.8673%" y="693" width="4.5658%" height="15" fill="rgb(220,143,18)" fg:x="186125" fg:w="10255"/><text x="83.1173%" y="703.50">__int..</text></g><g><title>native_write_msr (10,198 samples, 4.54%)</title><rect x="82.8927%" y="677" width="4.5404%" height="15" fill="rgb(210,88,33)" fg:x="186182" fg:w="10198"/><text x="83.1427%" y="687.50">nativ..</text></g><g><title>select_task_rq_fair (25 samples, 0.01%)</title><rect x="87.4959%" y="501" width="0.0111%" height="15" fill="rgb(219,87,51)" fg:x="196521" fg:w="25"/><text x="87.7459%" y="511.50"></text></g><g><title>ttwu_do_activate (31 samples, 0.01%)</title><rect x="87.5088%" y="501" width="0.0138%" height="15" fill="rgb(211,7,35)" fg:x="196550" fg:w="31"/><text x="87.7588%" y="511.50"></text></g><g><title>__wake_up_common (85 samples, 0.04%)</title><rect x="87.4874%" y="549" width="0.0378%" height="15" fill="rgb(232,77,2)" fg:x="196502" fg:w="85"/><text x="87.7374%" y="559.50"></text></g><g><title>pollwake (79 samples, 0.04%)</title><rect x="87.4901%" y="533" width="0.0352%" height="15" fill="rgb(249,94,25)" fg:x="196508" fg:w="79"/><text x="87.7401%" y="543.50"></text></g><g><title>try_to_wake_up (77 samples, 0.03%)</title><rect x="87.4910%" y="517" width="0.0343%" height="15" fill="rgb(215,112,2)" fg:x="196510" fg:w="77"/><text x="87.7410%" y="527.50"></text></g><g><title>irq_work_run (112 samples, 0.05%)</title><rect x="87.4781%" y="645" width="0.0499%" height="15" fill="rgb(226,115,48)" fg:x="196481" fg:w="112"/><text x="87.7281%" y="655.50"></text></g><g><title>irq_work_run_list (111 samples, 0.05%)</title><rect x="87.4785%" y="629" width="0.0494%" height="15" fill="rgb(249,196,10)" fg:x="196482" fg:w="111"/><text x="87.7285%" y="639.50"></text></g><g><title>irq_work_single (107 samples, 0.05%)</title><rect x="87.4803%" y="613" width="0.0476%" height="15" fill="rgb(237,109,14)" fg:x="196486" fg:w="107"/><text x="87.7303%" y="623.50"></text></g><g><title>perf_pending_event (106 samples, 0.05%)</title><rect x="87.4807%" y="597" width="0.0472%" height="15" fill="rgb(217,103,53)" fg:x="196487" fg:w="106"/><text x="87.7307%" y="607.50"></text></g><g><title>perf_event_wakeup (96 samples, 0.04%)</title><rect x="87.4852%" y="581" width="0.0427%" height="15" fill="rgb(244,137,9)" fg:x="196497" fg:w="96"/><text x="87.7352%" y="591.50"></text></g><g><title>__wake_up_common_lock (92 samples, 0.04%)</title><rect x="87.4870%" y="565" width="0.0410%" height="15" fill="rgb(227,201,3)" fg:x="196501" fg:w="92"/><text x="87.7370%" y="575.50"></text></g><g><title>asm_call_sysvec_on_stack (125 samples, 0.06%)</title><rect x="87.4736%" y="677" width="0.0557%" height="15" fill="rgb(243,94,6)" fg:x="196471" fg:w="125"/><text x="87.7236%" y="687.50"></text></g><g><title>__sysvec_irq_work (116 samples, 0.05%)</title><rect x="87.4776%" y="661" width="0.0516%" height="15" fill="rgb(235,118,5)" fg:x="196480" fg:w="116"/><text x="87.7276%" y="671.50"></text></g><g><title>asm_sysvec_irq_work (181 samples, 0.08%)</title><rect x="87.4540%" y="709" width="0.0806%" height="15" fill="rgb(247,10,30)" fg:x="196427" fg:w="181"/><text x="87.7040%" y="719.50"></text></g><g><title>sysvec_irq_work (144 samples, 0.06%)</title><rect x="87.4705%" y="693" width="0.0641%" height="15" fill="rgb(205,26,28)" fg:x="196464" fg:w="144"/><text x="87.7205%" y="703.50"></text></g><g><title>kmem_cache_free (32 samples, 0.01%)</title><rect x="87.5351%" y="709" width="0.0142%" height="15" fill="rgb(206,99,35)" fg:x="196609" fg:w="32"/><text x="87.7851%" y="719.50"></text></g><g><title>finish_task_switch (10,907 samples, 4.86%)</title><rect x="82.7030%" y="725" width="4.8561%" height="15" fill="rgb(238,130,40)" fg:x="185756" fg:w="10907"/><text x="82.9530%" y="735.50">finish..</text></g><g><title>load_balance (23 samples, 0.01%)</title><rect x="87.5814%" y="693" width="0.0102%" height="15" fill="rgb(224,126,31)" fg:x="196713" fg:w="23"/><text x="87.8314%" y="703.50"></text></g><g><title>newidle_balance (71 samples, 0.03%)</title><rect x="87.5644%" y="709" width="0.0316%" height="15" fill="rgb(254,105,17)" fg:x="196675" fg:w="71"/><text x="87.8144%" y="719.50"></text></g><g><title>pick_next_task_fair (88 samples, 0.04%)</title><rect x="87.5591%" y="725" width="0.0392%" height="15" fill="rgb(216,87,36)" fg:x="196663" fg:w="88"/><text x="87.8091%" y="735.50"></text></g><g><title>pick_next_task_idle (36 samples, 0.02%)</title><rect x="87.5983%" y="725" width="0.0160%" height="15" fill="rgb(240,21,12)" fg:x="196751" fg:w="36"/><text x="87.8483%" y="735.50"></text></g><g><title>__update_idle_core (32 samples, 0.01%)</title><rect x="87.6001%" y="709" width="0.0142%" height="15" fill="rgb(245,192,34)" fg:x="196755" fg:w="32"/><text x="87.8501%" y="719.50"></text></g><g><title>psi_task_change (256 samples, 0.11%)</title><rect x="87.6143%" y="725" width="0.1140%" height="15" fill="rgb(226,100,49)" fg:x="196787" fg:w="256"/><text x="87.8643%" y="735.50"></text></g><g><title>psi_group_change (213 samples, 0.09%)</title><rect x="87.6335%" y="709" width="0.0948%" height="15" fill="rgb(245,188,27)" fg:x="196830" fg:w="213"/><text x="87.8835%" y="719.50"></text></g><g><title>record_times (43 samples, 0.02%)</title><rect x="87.7091%" y="693" width="0.0191%" height="15" fill="rgb(212,170,8)" fg:x="197000" fg:w="43"/><text x="87.9591%" y="703.50"></text></g><g><title>sched_clock_cpu (30 samples, 0.01%)</title><rect x="87.7149%" y="677" width="0.0134%" height="15" fill="rgb(217,113,29)" fg:x="197013" fg:w="30"/><text x="87.9649%" y="687.50"></text></g><g><title>sched_clock (29 samples, 0.01%)</title><rect x="87.7154%" y="661" width="0.0129%" height="15" fill="rgb(237,30,3)" fg:x="197014" fg:w="29"/><text x="87.9654%" y="671.50"></text></g><g><title>native_sched_clock (27 samples, 0.01%)</title><rect x="87.7163%" y="645" width="0.0120%" height="15" fill="rgb(227,19,28)" fg:x="197016" fg:w="27"/><text x="87.9663%" y="655.50"></text></g><g><title>put_prev_task_fair (24 samples, 0.01%)</title><rect x="87.7354%" y="725" width="0.0107%" height="15" fill="rgb(239,172,45)" fg:x="197059" fg:w="24"/><text x="87.9854%" y="735.50"></text></g><g><title>futex_wait_queue_me (11,974 samples, 5.33%)</title><rect x="82.4279%" y="773" width="5.3311%" height="15" fill="rgb(254,55,39)" fg:x="185138" fg:w="11974"/><text x="82.6779%" y="783.50">futex_w..</text></g><g><title>schedule (11,885 samples, 5.29%)</title><rect x="82.4675%" y="757" width="5.2915%" height="15" fill="rgb(249,208,12)" fg:x="185227" fg:w="11885"/><text x="82.7175%" y="767.50">schedu..</text></g><g><title>__schedule (11,856 samples, 5.28%)</title><rect x="82.4804%" y="741" width="5.2786%" height="15" fill="rgb(240,52,13)" fg:x="185256" fg:w="11856"/><text x="82.7304%" y="751.50">__sche..</text></g><g><title>update_rq_clock (28 samples, 0.01%)</title><rect x="87.7465%" y="725" width="0.0125%" height="15" fill="rgb(252,149,13)" fg:x="197084" fg:w="28"/><text x="87.9965%" y="735.50"></text></g><g><title>futex_wait (12,153 samples, 5.41%)</title><rect x="82.4007%" y="789" width="5.4108%" height="15" fill="rgb(232,81,48)" fg:x="185077" fg:w="12153"/><text x="82.6507%" y="799.50">futex_w..</text></g><g><title>futex_wait_setup (118 samples, 0.05%)</title><rect x="87.7590%" y="773" width="0.0525%" height="15" fill="rgb(222,144,2)" fg:x="197112" fg:w="118"/><text x="88.0090%" y="783.50"></text></g><g><title>select_task_rq_fair (66 samples, 0.03%)</title><rect x="87.8623%" y="741" width="0.0294%" height="15" fill="rgb(216,81,32)" fg:x="197344" fg:w="66"/><text x="88.1123%" y="751.50"></text></g><g><title>enqueue_entity (49 samples, 0.02%)</title><rect x="87.9006%" y="709" width="0.0218%" height="15" fill="rgb(244,78,51)" fg:x="197430" fg:w="49"/><text x="88.1506%" y="719.50"></text></g><g><title>update_load_avg (23 samples, 0.01%)</title><rect x="87.9122%" y="693" width="0.0102%" height="15" fill="rgb(217,66,21)" fg:x="197456" fg:w="23"/><text x="88.1622%" y="703.50"></text></g><g><title>enqueue_task_fair (60 samples, 0.03%)</title><rect x="87.8966%" y="725" width="0.0267%" height="15" fill="rgb(247,101,42)" fg:x="197421" fg:w="60"/><text x="88.1466%" y="735.50"></text></g><g><title>ttwu_do_activate (134 samples, 0.06%)</title><rect x="87.8944%" y="741" width="0.0597%" height="15" fill="rgb(227,81,39)" fg:x="197416" fg:w="134"/><text x="88.1444%" y="751.50"></text></g><g><title>psi_task_change (68 samples, 0.03%)</title><rect x="87.9237%" y="725" width="0.0303%" height="15" fill="rgb(220,223,44)" fg:x="197482" fg:w="68"/><text x="88.1737%" y="735.50"></text></g><g><title>psi_group_change (65 samples, 0.03%)</title><rect x="87.9251%" y="709" width="0.0289%" height="15" fill="rgb(205,218,2)" fg:x="197485" fg:w="65"/><text x="88.1751%" y="719.50"></text></g><g><title>__x64_sys_futex (12,554 samples, 5.59%)</title><rect x="82.3780%" y="821" width="5.5893%" height="15" fill="rgb(212,207,28)" fg:x="185026" fg:w="12554"/><text x="82.6280%" y="831.50">__x64_s..</text></g><g><title>do_futex (12,537 samples, 5.58%)</title><rect x="82.3856%" y="805" width="5.5818%" height="15" fill="rgb(224,12,41)" fg:x="185043" fg:w="12537"/><text x="82.6356%" y="815.50">do_futex</text></g><g><title>futex_wake (350 samples, 0.16%)</title><rect x="87.8115%" y="789" width="0.1558%" height="15" fill="rgb(216,118,12)" fg:x="197230" fg:w="350"/><text x="88.0615%" y="799.50"></text></g><g><title>wake_up_q (290 samples, 0.13%)</title><rect x="87.8383%" y="773" width="0.1291%" height="15" fill="rgb(252,97,46)" fg:x="197290" fg:w="290"/><text x="88.0883%" y="783.50"></text></g><g><title>try_to_wake_up (281 samples, 0.13%)</title><rect x="87.8423%" y="757" width="0.1251%" height="15" fill="rgb(244,206,19)" fg:x="197299" fg:w="281"/><text x="88.0923%" y="767.50"></text></g><g><title>__x64_sys_mprotect (28 samples, 0.01%)</title><rect x="87.9723%" y="821" width="0.0125%" height="15" fill="rgb(231,84,31)" fg:x="197591" fg:w="28"/><text x="88.2223%" y="831.50"></text></g><g><title>do_mprotect_pkey (28 samples, 0.01%)</title><rect x="87.9723%" y="805" width="0.0125%" height="15" fill="rgb(244,133,0)" fg:x="197591" fg:w="28"/><text x="88.2223%" y="815.50"></text></g><g><title>mprotect_fixup (26 samples, 0.01%)</title><rect x="87.9732%" y="789" width="0.0116%" height="15" fill="rgb(223,15,50)" fg:x="197593" fg:w="26"/><text x="88.2232%" y="799.50"></text></g><g><title>__vma_adjust (26 samples, 0.01%)</title><rect x="87.9901%" y="757" width="0.0116%" height="15" fill="rgb(250,118,49)" fg:x="197631" fg:w="26"/><text x="88.2401%" y="767.50"></text></g><g><title>__split_vma (63 samples, 0.03%)</title><rect x="87.9896%" y="773" width="0.0280%" height="15" fill="rgb(248,25,38)" fg:x="197630" fg:w="63"/><text x="88.2396%" y="783.50"></text></g><g><title>vm_area_dup (27 samples, 0.01%)</title><rect x="88.0057%" y="757" width="0.0120%" height="15" fill="rgb(215,70,14)" fg:x="197666" fg:w="27"/><text x="88.2557%" y="767.50"></text></g><g><title>lru_add_drain (35 samples, 0.02%)</title><rect x="88.0368%" y="757" width="0.0156%" height="15" fill="rgb(215,28,15)" fg:x="197736" fg:w="35"/><text x="88.2868%" y="767.50"></text></g><g><title>lru_add_drain_cpu (33 samples, 0.01%)</title><rect x="88.0377%" y="741" width="0.0147%" height="15" fill="rgb(243,6,28)" fg:x="197738" fg:w="33"/><text x="88.2877%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (29 samples, 0.01%)</title><rect x="88.0395%" y="725" width="0.0129%" height="15" fill="rgb(222,130,1)" fg:x="197742" fg:w="29"/><text x="88.2895%" y="735.50"></text></g><g><title>flush_tlb_func_common.constprop.0 (23 samples, 0.01%)</title><rect x="88.0555%" y="725" width="0.0102%" height="15" fill="rgb(236,166,44)" fg:x="197778" fg:w="23"/><text x="88.3055%" y="735.50"></text></g><g><title>flush_tlb_mm_range (44 samples, 0.02%)</title><rect x="88.0533%" y="741" width="0.0196%" height="15" fill="rgb(221,108,14)" fg:x="197773" fg:w="44"/><text x="88.3033%" y="751.50"></text></g><g><title>free_pcppages_bulk (33 samples, 0.01%)</title><rect x="88.1183%" y="709" width="0.0147%" height="15" fill="rgb(252,3,45)" fg:x="197919" fg:w="33"/><text x="88.3683%" y="719.50"></text></g><g><title>free_unref_page_list (68 samples, 0.03%)</title><rect x="88.1063%" y="725" width="0.0303%" height="15" fill="rgb(237,68,30)" fg:x="197892" fg:w="68"/><text x="88.3563%" y="735.50"></text></g><g><title>tlb_finish_mmu (214 samples, 0.10%)</title><rect x="88.0524%" y="757" width="0.0953%" height="15" fill="rgb(211,79,22)" fg:x="197771" fg:w="214"/><text x="88.3024%" y="767.50"></text></g><g><title>release_pages (157 samples, 0.07%)</title><rect x="88.0778%" y="741" width="0.0699%" height="15" fill="rgb(252,185,21)" fg:x="197828" fg:w="157"/><text x="88.3278%" y="751.50"></text></g><g><title>mem_cgroup_uncharge_list (24 samples, 0.01%)</title><rect x="88.1370%" y="725" width="0.0107%" height="15" fill="rgb(225,189,26)" fg:x="197961" fg:w="24"/><text x="88.3870%" y="735.50"></text></g><g><title>page_remove_rmap (46 samples, 0.02%)</title><rect x="88.1824%" y="725" width="0.0205%" height="15" fill="rgb(241,30,40)" fg:x="198063" fg:w="46"/><text x="88.4324%" y="735.50"></text></g><g><title>__do_munmap (497 samples, 0.22%)</title><rect x="87.9856%" y="789" width="0.2213%" height="15" fill="rgb(235,215,44)" fg:x="197621" fg:w="497"/><text x="88.2356%" y="799.50"></text></g><g><title>unmap_region (409 samples, 0.18%)</title><rect x="88.0248%" y="773" width="0.1821%" height="15" fill="rgb(205,8,29)" fg:x="197709" fg:w="409"/><text x="88.2748%" y="783.50"></text></g><g><title>unmap_vmas (131 samples, 0.06%)</title><rect x="88.1486%" y="757" width="0.0583%" height="15" fill="rgb(241,137,42)" fg:x="197987" fg:w="131"/><text x="88.3986%" y="767.50"></text></g><g><title>unmap_page_range (128 samples, 0.06%)</title><rect x="88.1499%" y="741" width="0.0570%" height="15" fill="rgb(237,155,2)" fg:x="197990" fg:w="128"/><text x="88.3999%" y="751.50"></text></g><g><title>__vm_munmap (510 samples, 0.23%)</title><rect x="87.9847%" y="805" width="0.2271%" height="15" fill="rgb(245,29,42)" fg:x="197619" fg:w="510"/><text x="88.2347%" y="815.50"></text></g><g><title>__x64_sys_munmap (513 samples, 0.23%)</title><rect x="87.9847%" y="821" width="0.2284%" height="15" fill="rgb(234,101,35)" fg:x="197619" fg:w="513"/><text x="88.2347%" y="831.50"></text></g><g><title>btrfs_create (23 samples, 0.01%)</title><rect x="88.2198%" y="757" width="0.0102%" height="15" fill="rgb(228,64,37)" fg:x="198147" fg:w="23"/><text x="88.4698%" y="767.50"></text></g><g><title>do_filp_open (68 samples, 0.03%)</title><rect x="88.2167%" y="789" width="0.0303%" height="15" fill="rgb(217,214,36)" fg:x="198140" fg:w="68"/><text x="88.4667%" y="799.50"></text></g><g><title>path_openat (68 samples, 0.03%)</title><rect x="88.2167%" y="773" width="0.0303%" height="15" fill="rgb(243,70,3)" fg:x="198140" fg:w="68"/><text x="88.4667%" y="783.50"></text></g><g><title>__x64_sys_open (82 samples, 0.04%)</title><rect x="88.2145%" y="821" width="0.0365%" height="15" fill="rgb(253,158,52)" fg:x="198135" fg:w="82"/><text x="88.4645%" y="831.50"></text></g><g><title>do_sys_openat2 (82 samples, 0.04%)</title><rect x="88.2145%" y="805" width="0.0365%" height="15" fill="rgb(234,111,54)" fg:x="198135" fg:w="82"/><text x="88.4645%" y="815.50"></text></g><g><title>_find_next_bit.constprop.0 (36 samples, 0.02%)</title><rect x="88.3089%" y="773" width="0.0160%" height="15" fill="rgb(217,70,32)" fg:x="198347" fg:w="36"/><text x="88.5589%" y="783.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.02%)</title><rect x="88.3249%" y="773" width="0.0245%" height="15" fill="rgb(234,18,33)" fg:x="198383" fg:w="55"/><text x="88.5749%" y="783.50"></text></g><g><title>__alloc_fd (191 samples, 0.09%)</title><rect x="88.2790%" y="789" width="0.0850%" height="15" fill="rgb(234,12,49)" fg:x="198280" fg:w="191"/><text x="88.5290%" y="799.50"></text></g><g><title>__fsnotify_parent (31 samples, 0.01%)</title><rect x="88.3707%" y="789" width="0.0138%" height="15" fill="rgb(236,10,21)" fg:x="198486" fg:w="31"/><text x="88.6207%" y="799.50"></text></g><g><title>build_open_flags (49 samples, 0.02%)</title><rect x="88.3845%" y="789" width="0.0218%" height="15" fill="rgb(248,182,45)" fg:x="198517" fg:w="49"/><text x="88.6345%" y="799.50"></text></g><g><title>__alloc_pages_nodemask (40 samples, 0.02%)</title><rect x="88.6161%" y="661" width="0.0178%" height="15" fill="rgb(217,95,36)" fg:x="199037" fg:w="40"/><text x="88.8661%" y="671.50"></text></g><g><title>get_page_from_freelist (36 samples, 0.02%)</title><rect x="88.6178%" y="645" width="0.0160%" height="15" fill="rgb(212,110,31)" fg:x="199041" fg:w="36"/><text x="88.8678%" y="655.50"></text></g><g><title>prep_new_page (28 samples, 0.01%)</title><rect x="88.6214%" y="629" width="0.0125%" height="15" fill="rgb(206,32,53)" fg:x="199049" fg:w="28"/><text x="88.8714%" y="639.50"></text></g><g><title>kernel_init_free_pages (28 samples, 0.01%)</title><rect x="88.6214%" y="613" width="0.0125%" height="15" fill="rgb(246,141,37)" fg:x="199049" fg:w="28"/><text x="88.8714%" y="623.50"></text></g><g><title>clear_page_erms (26 samples, 0.01%)</title><rect x="88.6223%" y="597" width="0.0116%" height="15" fill="rgb(219,16,7)" fg:x="199051" fg:w="26"/><text x="88.8723%" y="607.50"></text></g><g><title>allocate_slab (57 samples, 0.03%)</title><rect x="88.6134%" y="677" width="0.0254%" height="15" fill="rgb(230,205,45)" fg:x="199031" fg:w="57"/><text x="88.8634%" y="687.50"></text></g><g><title>__slab_alloc (161 samples, 0.07%)</title><rect x="88.5831%" y="709" width="0.0717%" height="15" fill="rgb(231,43,49)" fg:x="198963" fg:w="161"/><text x="88.8331%" y="719.50"></text></g><g><title>___slab_alloc (154 samples, 0.07%)</title><rect x="88.5862%" y="693" width="0.0686%" height="15" fill="rgb(212,106,34)" fg:x="198970" fg:w="154"/><text x="88.8362%" y="703.50"></text></g><g><title>get_partial_node.part.0 (36 samples, 0.02%)</title><rect x="88.6388%" y="677" width="0.0160%" height="15" fill="rgb(206,83,17)" fg:x="199088" fg:w="36"/><text x="88.8888%" y="687.50"></text></g><g><title>__mod_memcg_lruvec_state (64 samples, 0.03%)</title><rect x="88.7532%" y="693" width="0.0285%" height="15" fill="rgb(244,154,49)" fg:x="199345" fg:w="64"/><text x="89.0032%" y="703.50"></text></g><g><title>__mod_memcg_state.part.0 (45 samples, 0.02%)</title><rect x="88.7617%" y="677" width="0.0200%" height="15" fill="rgb(244,149,49)" fg:x="199364" fg:w="45"/><text x="89.0117%" y="687.50"></text></g><g><title>memcg_slab_post_alloc_hook (314 samples, 0.14%)</title><rect x="88.6552%" y="709" width="0.1398%" height="15" fill="rgb(227,134,18)" fg:x="199125" fg:w="314"/><text x="88.9052%" y="719.50"></text></g><g><title>memset_erms (45 samples, 0.02%)</title><rect x="88.7955%" y="709" width="0.0200%" height="15" fill="rgb(237,116,36)" fg:x="199440" fg:w="45"/><text x="89.0455%" y="719.50"></text></g><g><title>get_obj_cgroup_from_current (160 samples, 0.07%)</title><rect x="88.8418%" y="693" width="0.0712%" height="15" fill="rgb(205,129,40)" fg:x="199544" fg:w="160"/><text x="89.0918%" y="703.50"></text></g><g><title>kmem_cache_alloc (986 samples, 0.44%)</title><rect x="88.5195%" y="725" width="0.4390%" height="15" fill="rgb(236,178,4)" fg:x="198820" fg:w="986"/><text x="88.7695%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (317 samples, 0.14%)</title><rect x="88.8173%" y="709" width="0.1411%" height="15" fill="rgb(251,76,53)" fg:x="199489" fg:w="317"/><text x="89.0673%" y="719.50"></text></g><g><title>obj_cgroup_charge (102 samples, 0.05%)</title><rect x="88.9130%" y="693" width="0.0454%" height="15" fill="rgb(242,92,40)" fg:x="199704" fg:w="102"/><text x="89.1630%" y="703.50"></text></g><g><title>apparmor_file_alloc_security (117 samples, 0.05%)</title><rect x="88.9665%" y="709" width="0.0521%" height="15" fill="rgb(209,45,30)" fg:x="199824" fg:w="117"/><text x="89.2165%" y="719.50"></text></g><g><title>memset_erms (63 samples, 0.03%)</title><rect x="89.0506%" y="693" width="0.0280%" height="15" fill="rgb(218,157,36)" fg:x="200013" fg:w="63"/><text x="89.3006%" y="703.50"></text></g><g><title>__alloc_file (1,384 samples, 0.62%)</title><rect x="88.4767%" y="741" width="0.6162%" height="15" fill="rgb(222,186,16)" fg:x="198724" fg:w="1384"/><text x="88.7267%" y="751.50"></text></g><g><title>security_file_alloc (302 samples, 0.13%)</title><rect x="88.9584%" y="725" width="0.1345%" height="15" fill="rgb(254,72,35)" fg:x="199806" fg:w="302"/><text x="89.2084%" y="735.50"></text></g><g><title>kmem_cache_alloc (167 samples, 0.07%)</title><rect x="89.0185%" y="709" width="0.0744%" height="15" fill="rgb(224,25,35)" fg:x="199941" fg:w="167"/><text x="89.2685%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (32 samples, 0.01%)</title><rect x="89.0787%" y="693" width="0.0142%" height="15" fill="rgb(206,135,52)" fg:x="200076" fg:w="32"/><text x="89.3287%" y="703.50"></text></g><g><title>alloc_empty_file (1,417 samples, 0.63%)</title><rect x="88.4687%" y="757" width="0.6309%" height="15" fill="rgb(229,174,47)" fg:x="198706" fg:w="1417"/><text x="88.7187%" y="767.50"></text></g><g><title>__legitimize_mnt (73 samples, 0.03%)</title><rect x="89.1201%" y="709" width="0.0325%" height="15" fill="rgb(242,184,21)" fg:x="200169" fg:w="73"/><text x="89.3701%" y="719.50"></text></g><g><title>__legitimize_path (172 samples, 0.08%)</title><rect x="89.1116%" y="725" width="0.0766%" height="15" fill="rgb(213,22,45)" fg:x="200150" fg:w="172"/><text x="89.3616%" y="735.50"></text></g><g><title>lockref_get_not_dead (80 samples, 0.04%)</title><rect x="89.1526%" y="709" width="0.0356%" height="15" fill="rgb(237,81,54)" fg:x="200242" fg:w="80"/><text x="89.4026%" y="719.50"></text></g><g><title>complete_walk (215 samples, 0.10%)</title><rect x="89.0996%" y="757" width="0.0957%" height="15" fill="rgb(248,177,18)" fg:x="200123" fg:w="215"/><text x="89.3496%" y="767.50"></text></g><g><title>try_to_unlazy (206 samples, 0.09%)</title><rect x="89.1036%" y="741" width="0.0917%" height="15" fill="rgb(254,31,16)" fg:x="200132" fg:w="206"/><text x="89.3536%" y="751.50"></text></g><g><title>__fsnotify_parent (46 samples, 0.02%)</title><rect x="89.2990%" y="741" width="0.0205%" height="15" fill="rgb(235,20,31)" fg:x="200571" fg:w="46"/><text x="89.5490%" y="751.50"></text></g><g><title>errseq_sample (81 samples, 0.04%)</title><rect x="89.3213%" y="741" width="0.0361%" height="15" fill="rgb(240,56,43)" fg:x="200621" fg:w="81"/><text x="89.5713%" y="751.50"></text></g><g><title>lockref_get (66 samples, 0.03%)</title><rect x="89.3663%" y="741" width="0.0294%" height="15" fill="rgb(237,197,51)" fg:x="200722" fg:w="66"/><text x="89.6163%" y="751.50"></text></g><g><title>apparmor_file_open (119 samples, 0.05%)</title><rect x="89.4068%" y="725" width="0.0530%" height="15" fill="rgb(241,162,44)" fg:x="200813" fg:w="119"/><text x="89.6568%" y="735.50"></text></g><g><title>__srcu_read_lock (42 samples, 0.02%)</title><rect x="89.5007%" y="709" width="0.0187%" height="15" fill="rgb(224,23,20)" fg:x="201024" fg:w="42"/><text x="89.7507%" y="719.50"></text></g><g><title>__srcu_read_unlock (70 samples, 0.03%)</title><rect x="89.5194%" y="709" width="0.0312%" height="15" fill="rgb(250,109,34)" fg:x="201066" fg:w="70"/><text x="89.7694%" y="719.50"></text></g><g><title>tomoyo_check_open_permission (292 samples, 0.13%)</title><rect x="89.4598%" y="725" width="0.1300%" height="15" fill="rgb(214,175,50)" fg:x="200932" fg:w="292"/><text x="89.7098%" y="735.50"></text></g><g><title>tomoyo_init_request_info (71 samples, 0.03%)</title><rect x="89.5582%" y="709" width="0.0316%" height="15" fill="rgb(213,182,5)" fg:x="201153" fg:w="71"/><text x="89.8082%" y="719.50"></text></g><g><title>security_file_open (433 samples, 0.19%)</title><rect x="89.3997%" y="741" width="0.1928%" height="15" fill="rgb(209,199,19)" fg:x="200797" fg:w="433"/><text x="89.6497%" y="751.50"></text></g><g><title>do_dentry_open (894 samples, 0.40%)</title><rect x="89.1962%" y="757" width="0.3980%" height="15" fill="rgb(236,224,42)" fg:x="200340" fg:w="894"/><text x="89.4462%" y="767.50"></text></g><g><title>inode_permission.part.0 (238 samples, 0.11%)</title><rect x="89.7078%" y="741" width="0.1060%" height="15" fill="rgb(246,226,29)" fg:x="201489" fg:w="238"/><text x="89.9578%" y="751.50"></text></g><g><title>generic_permission (93 samples, 0.04%)</title><rect x="89.7723%" y="725" width="0.0414%" height="15" fill="rgb(227,223,11)" fg:x="201634" fg:w="93"/><text x="90.0223%" y="735.50"></text></g><g><title>__d_lookup_rcu (300 samples, 0.13%)</title><rect x="89.8974%" y="709" width="0.1336%" height="15" fill="rgb(219,7,51)" fg:x="201915" fg:w="300"/><text x="90.1474%" y="719.50"></text></g><g><title>lookup_fast (384 samples, 0.17%)</title><rect x="89.8605%" y="725" width="0.1710%" height="15" fill="rgb(245,167,10)" fg:x="201832" fg:w="384"/><text x="90.1105%" y="735.50"></text></g><g><title>link_path_walk.part.0 (1,032 samples, 0.46%)</title><rect x="89.6036%" y="757" width="0.4595%" height="15" fill="rgb(237,224,16)" fg:x="201255" fg:w="1032"/><text x="89.8536%" y="767.50"></text></g><g><title>walk_component (538 samples, 0.24%)</title><rect x="89.8235%" y="741" width="0.2395%" height="15" fill="rgb(226,132,13)" fg:x="201749" fg:w="538"/><text x="90.0735%" y="751.50"></text></g><g><title>step_into (71 samples, 0.03%)</title><rect x="90.0314%" y="725" width="0.0316%" height="15" fill="rgb(214,140,3)" fg:x="202216" fg:w="71"/><text x="90.2814%" y="735.50"></text></g><g><title>lookup_fast (464 samples, 0.21%)</title><rect x="90.0630%" y="757" width="0.2066%" height="15" fill="rgb(221,177,4)" fg:x="202287" fg:w="464"/><text x="90.3130%" y="767.50"></text></g><g><title>__d_lookup_rcu (440 samples, 0.20%)</title><rect x="90.0737%" y="741" width="0.1959%" height="15" fill="rgb(238,139,3)" fg:x="202311" fg:w="440"/><text x="90.3237%" y="751.50"></text></g><g><title>inode_permission.part.0 (113 samples, 0.05%)</title><rect x="90.3199%" y="741" width="0.0503%" height="15" fill="rgb(216,17,39)" fg:x="202864" fg:w="113"/><text x="90.5699%" y="751.50"></text></g><g><title>may_open (235 samples, 0.10%)</title><rect x="90.2696%" y="757" width="0.1046%" height="15" fill="rgb(238,120,9)" fg:x="202751" fg:w="235"/><text x="90.5196%" y="767.50"></text></g><g><title>__fget_light (117 samples, 0.05%)</title><rect x="90.4001%" y="741" width="0.0521%" height="15" fill="rgb(244,92,53)" fg:x="203044" fg:w="117"/><text x="90.6501%" y="751.50"></text></g><g><title>__fget_files (111 samples, 0.05%)</title><rect x="90.4027%" y="725" width="0.0494%" height="15" fill="rgb(224,148,33)" fg:x="203050" fg:w="111"/><text x="90.6527%" y="735.50"></text></g><g><title>path_init (228 samples, 0.10%)</title><rect x="90.3747%" y="757" width="0.1015%" height="15" fill="rgb(243,6,36)" fg:x="202987" fg:w="228"/><text x="90.6247%" y="767.50"></text></g><g><title>fput_many (52 samples, 0.02%)</title><rect x="90.4531%" y="741" width="0.0232%" height="15" fill="rgb(230,102,11)" fg:x="203163" fg:w="52"/><text x="90.7031%" y="751.50"></text></g><g><title>step_into (36 samples, 0.02%)</title><rect x="90.4780%" y="757" width="0.0160%" height="15" fill="rgb(234,148,36)" fg:x="203219" fg:w="36"/><text x="90.7280%" y="767.50"></text></g><g><title>dput (107 samples, 0.05%)</title><rect x="90.5025%" y="741" width="0.0476%" height="15" fill="rgb(251,153,25)" fg:x="203274" fg:w="107"/><text x="90.7525%" y="751.50"></text></g><g><title>lockref_put_or_lock (70 samples, 0.03%)</title><rect x="90.5190%" y="725" width="0.0312%" height="15" fill="rgb(215,129,8)" fg:x="203311" fg:w="70"/><text x="90.7690%" y="735.50"></text></g><g><title>terminate_walk (149 samples, 0.07%)</title><rect x="90.4940%" y="757" width="0.0663%" height="15" fill="rgb(224,128,35)" fg:x="203255" fg:w="149"/><text x="90.7440%" y="767.50"></text></g><g><title>do_filp_open (4,843 samples, 2.16%)</title><rect x="88.4064%" y="789" width="2.1562%" height="15" fill="rgb(237,56,52)" fg:x="198566" fg:w="4843"/><text x="88.6564%" y="799.50">d..</text></g><g><title>path_openat (4,795 samples, 2.13%)</title><rect x="88.4277%" y="773" width="2.1348%" height="15" fill="rgb(234,213,19)" fg:x="198614" fg:w="4795"/><text x="88.6777%" y="783.50">p..</text></g><g><title>get_unused_fd_flags (23 samples, 0.01%)</title><rect x="90.5657%" y="789" width="0.0102%" height="15" fill="rgb(252,82,23)" fg:x="203416" fg:w="23"/><text x="90.8157%" y="799.50"></text></g><g><title>memset_erms (511 samples, 0.23%)</title><rect x="90.6628%" y="757" width="0.2275%" height="15" fill="rgb(254,201,21)" fg:x="203634" fg:w="511"/><text x="90.9128%" y="767.50"></text></g><g><title>kmem_cache_alloc (705 samples, 0.31%)</title><rect x="90.5969%" y="773" width="0.3139%" height="15" fill="rgb(250,186,11)" fg:x="203486" fg:w="705"/><text x="90.8469%" y="783.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (46 samples, 0.02%)</title><rect x="90.8903%" y="757" width="0.0205%" height="15" fill="rgb(211,174,5)" fg:x="204145" fg:w="46"/><text x="91.1403%" y="767.50"></text></g><g><title>__check_heap_object (86 samples, 0.04%)</title><rect x="91.0238%" y="741" width="0.0383%" height="15" fill="rgb(214,121,10)" fg:x="204445" fg:w="86"/><text x="91.2738%" y="751.50"></text></g><g><title>__virt_addr_valid (88 samples, 0.04%)</title><rect x="91.0621%" y="741" width="0.0392%" height="15" fill="rgb(241,66,2)" fg:x="204531" fg:w="88"/><text x="91.3121%" y="751.50"></text></g><g><title>__check_object_size (233 samples, 0.10%)</title><rect x="90.9998%" y="757" width="0.1037%" height="15" fill="rgb(220,167,19)" fg:x="204391" fg:w="233"/><text x="91.2498%" y="767.50"></text></g><g><title>getname_flags.part.0 (1,178 samples, 0.52%)</title><rect x="90.5799%" y="789" width="0.5245%" height="15" fill="rgb(231,54,50)" fg:x="203448" fg:w="1178"/><text x="90.8299%" y="799.50"></text></g><g><title>strncpy_from_user (435 samples, 0.19%)</title><rect x="90.9108%" y="773" width="0.1937%" height="15" fill="rgb(239,217,53)" fg:x="204191" fg:w="435"/><text x="91.1608%" y="783.50"></text></g><g><title>kmem_cache_free (135 samples, 0.06%)</title><rect x="91.1044%" y="789" width="0.0601%" height="15" fill="rgb(248,8,0)" fg:x="204626" fg:w="135"/><text x="91.3544%" y="799.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (34 samples, 0.02%)</title><rect x="91.1494%" y="773" width="0.0151%" height="15" fill="rgb(229,118,37)" fg:x="204727" fg:w="34"/><text x="91.3994%" y="783.50"></text></g><g><title>__x64_sys_openat (6,552 samples, 2.92%)</title><rect x="88.2510%" y="821" width="2.9171%" height="15" fill="rgb(253,223,43)" fg:x="198217" fg:w="6552"/><text x="88.5010%" y="831.50">__..</text></g><g><title>do_sys_openat2 (6,522 samples, 2.90%)</title><rect x="88.2643%" y="805" width="2.9038%" height="15" fill="rgb(211,77,36)" fg:x="198247" fg:w="6522"/><text x="88.5143%" y="815.50">do..</text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="91.2153%" y="789" width="0.0142%" height="15" fill="rgb(219,3,53)" fg:x="204875" fg:w="32"/><text x="91.4653%" y="799.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="91.2153%" y="773" width="0.0142%" height="15" fill="rgb(244,45,42)" fg:x="204875" fg:w="32"/><text x="91.4653%" y="783.50"></text></g><g><title>finish_task_switch (32 samples, 0.01%)</title><rect x="91.2153%" y="757" width="0.0142%" height="15" fill="rgb(225,95,27)" fg:x="204875" fg:w="32"/><text x="91.4653%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.01%)</title><rect x="91.2153%" y="741" width="0.0142%" height="15" fill="rgb(207,74,8)" fg:x="204875" fg:w="32"/><text x="91.4653%" y="751.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.01%)</title><rect x="91.2153%" y="725" width="0.0142%" height="15" fill="rgb(243,63,36)" fg:x="204875" fg:w="32"/><text x="91.4653%" y="735.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="91.2153%" y="709" width="0.0142%" height="15" fill="rgb(211,180,12)" fg:x="204875" fg:w="32"/><text x="91.4653%" y="719.50"></text></g><g><title>kernel_wait4 (37 samples, 0.02%)</title><rect x="91.2135%" y="821" width="0.0165%" height="15" fill="rgb(254,166,49)" fg:x="204871" fg:w="37"/><text x="91.4635%" y="831.50"></text></g><g><title>do_wait (37 samples, 0.02%)</title><rect x="91.2135%" y="805" width="0.0165%" height="15" fill="rgb(205,19,0)" fg:x="204871" fg:w="37"/><text x="91.4635%" y="815.50"></text></g><g><title>__fget_light (589 samples, 0.26%)</title><rect x="91.4232%" y="789" width="0.2622%" height="15" fill="rgb(224,172,32)" fg:x="205342" fg:w="589"/><text x="91.6732%" y="799.50"></text></g><g><title>__fget_files (543 samples, 0.24%)</title><rect x="91.4437%" y="773" width="0.2418%" height="15" fill="rgb(254,136,30)" fg:x="205388" fg:w="543"/><text x="91.6937%" y="783.50"></text></g><g><title>_cond_resched (69 samples, 0.03%)</title><rect x="91.8306%" y="773" width="0.0307%" height="15" fill="rgb(246,19,35)" fg:x="206257" fg:w="69"/><text x="92.0806%" y="783.50"></text></g><g><title>rcu_all_qs (33 samples, 0.01%)</title><rect x="91.8466%" y="757" width="0.0147%" height="15" fill="rgb(219,24,36)" fg:x="206293" fg:w="33"/><text x="92.0966%" y="767.50"></text></g><g><title>__fdget_pos (1,203 samples, 0.54%)</title><rect x="91.3270%" y="805" width="0.5356%" height="15" fill="rgb(251,55,1)" fg:x="205126" fg:w="1203"/><text x="91.5770%" y="815.50"></text></g><g><title>mutex_lock (396 samples, 0.18%)</title><rect x="91.6863%" y="789" width="0.1763%" height="15" fill="rgb(218,117,39)" fg:x="205933" fg:w="396"/><text x="91.9363%" y="799.50"></text></g><g><title>fput_many (275 samples, 0.12%)</title><rect x="91.8711%" y="805" width="0.1224%" height="15" fill="rgb(248,169,11)" fg:x="206348" fg:w="275"/><text x="92.1211%" y="815.50"></text></g><g><title>mutex_unlock (350 samples, 0.16%)</title><rect x="91.9935%" y="805" width="0.1558%" height="15" fill="rgb(244,40,44)" fg:x="206623" fg:w="350"/><text x="92.2435%" y="815.50"></text></g><g><title>__fsnotify_parent (452 samples, 0.20%)</title><rect x="92.3902%" y="789" width="0.2012%" height="15" fill="rgb(234,62,37)" fg:x="207514" fg:w="452"/><text x="92.6402%" y="799.50"></text></g><g><title>btrfs_file_read_iter (76 samples, 0.03%)</title><rect x="92.7531%" y="773" width="0.0338%" height="15" fill="rgb(207,117,42)" fg:x="208329" fg:w="76"/><text x="93.0031%" y="783.50"></text></g><g><title>_cond_resched (76 samples, 0.03%)</title><rect x="93.2584%" y="757" width="0.0338%" height="15" fill="rgb(213,43,2)" fg:x="209464" fg:w="76"/><text x="93.5084%" y="767.50"></text></g><g><title>_cond_resched (59 samples, 0.03%)</title><rect x="93.5394%" y="741" width="0.0263%" height="15" fill="rgb(244,202,51)" fg:x="210095" fg:w="59"/><text x="93.7894%" y="751.50"></text></g><g><title>rcu_all_qs (26 samples, 0.01%)</title><rect x="93.5540%" y="725" width="0.0116%" height="15" fill="rgb(253,174,46)" fg:x="210128" fg:w="26"/><text x="93.8040%" y="735.50"></text></g><g><title>__alloc_pages_nodemask (24 samples, 0.01%)</title><rect x="94.9690%" y="645" width="0.0107%" height="15" fill="rgb(251,23,1)" fg:x="213306" fg:w="24"/><text x="95.2190%" y="655.50"></text></g><g><title>get_page_from_freelist (23 samples, 0.01%)</title><rect x="94.9694%" y="629" width="0.0102%" height="15" fill="rgb(253,26,1)" fg:x="213307" fg:w="23"/><text x="95.2194%" y="639.50"></text></g><g><title>alloc_pages_vma (25 samples, 0.01%)</title><rect x="94.9690%" y="661" width="0.0111%" height="15" fill="rgb(216,89,31)" fg:x="213306" fg:w="25"/><text x="95.2190%" y="671.50"></text></g><g><title>handle_mm_fault (61 samples, 0.03%)</title><rect x="94.9645%" y="677" width="0.0272%" height="15" fill="rgb(209,109,5)" fg:x="213296" fg:w="61"/><text x="95.2145%" y="687.50"></text></g><g><title>asm_exc_page_fault (181 samples, 0.08%)</title><rect x="94.9115%" y="725" width="0.0806%" height="15" fill="rgb(229,63,13)" fg:x="213177" fg:w="181"/><text x="95.1615%" y="735.50"></text></g><g><title>exc_page_fault (64 samples, 0.03%)</title><rect x="94.9636%" y="709" width="0.0285%" height="15" fill="rgb(238,137,54)" fg:x="213294" fg:w="64"/><text x="95.2136%" y="719.50"></text></g><g><title>do_user_addr_fault (63 samples, 0.03%)</title><rect x="94.9641%" y="693" width="0.0280%" height="15" fill="rgb(228,1,9)" fg:x="213295" fg:w="63"/><text x="95.2141%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (3,218 samples, 1.43%)</title><rect x="93.5670%" y="741" width="1.4327%" height="15" fill="rgb(249,120,48)" fg:x="210157" fg:w="3218"/><text x="93.8170%" y="751.50"></text></g><g><title>copy_page_to_iter (3,845 samples, 1.71%)</title><rect x="93.2963%" y="757" width="1.7119%" height="15" fill="rgb(209,72,36)" fg:x="209549" fg:w="3845"/><text x="93.5463%" y="767.50"></text></g><g><title>mark_page_accessed (52 samples, 0.02%)</title><rect x="95.0081%" y="757" width="0.0232%" height="15" fill="rgb(247,98,49)" fg:x="213394" fg:w="52"/><text x="95.2581%" y="767.50"></text></g><g><title>PageHuge (45 samples, 0.02%)</title><rect x="95.1212%" y="741" width="0.0200%" height="15" fill="rgb(233,75,36)" fg:x="213648" fg:w="45"/><text x="95.3712%" y="751.50"></text></g><g><title>pagecache_get_page (1,471 samples, 0.65%)</title><rect x="95.0313%" y="757" width="0.6549%" height="15" fill="rgb(225,14,24)" fg:x="213446" fg:w="1471"/><text x="95.2813%" y="767.50"></text></g><g><title>find_get_entry (1,224 samples, 0.54%)</title><rect x="95.1413%" y="741" width="0.5450%" height="15" fill="rgb(237,193,20)" fg:x="213693" fg:w="1224"/><text x="95.3913%" y="751.50"></text></g><g><title>xas_load (378 samples, 0.17%)</title><rect x="95.5179%" y="725" width="0.1683%" height="15" fill="rgb(239,122,19)" fg:x="214539" fg:w="378"/><text x="95.7679%" y="735.50"></text></g><g><title>xas_start (238 samples, 0.11%)</title><rect x="95.5803%" y="709" width="0.1060%" height="15" fill="rgb(231,220,10)" fg:x="214679" fg:w="238"/><text x="95.8303%" y="719.50"></text></g><g><title>generic_file_buffered_read (7,012 samples, 3.12%)</title><rect x="92.7869%" y="773" width="3.1219%" height="15" fill="rgb(220,66,15)" fg:x="208405" fg:w="7012"/><text x="93.0369%" y="783.50">gen..</text></g><g><title>touch_atime (500 samples, 0.22%)</title><rect x="95.6862%" y="757" width="0.2226%" height="15" fill="rgb(215,171,52)" fg:x="214917" fg:w="500"/><text x="95.9362%" y="767.50"></text></g><g><title>atime_needs_update (392 samples, 0.17%)</title><rect x="95.7343%" y="741" width="0.1745%" height="15" fill="rgb(241,169,50)" fg:x="215025" fg:w="392"/><text x="95.9843%" y="751.50"></text></g><g><title>current_time (233 samples, 0.10%)</title><rect x="95.8051%" y="725" width="0.1037%" height="15" fill="rgb(236,189,0)" fg:x="215184" fg:w="233"/><text x="96.0551%" y="735.50"></text></g><g><title>ktime_get_coarse_real_ts64 (64 samples, 0.03%)</title><rect x="95.8803%" y="709" width="0.0285%" height="15" fill="rgb(217,147,20)" fg:x="215353" fg:w="64"/><text x="96.1303%" y="719.50"></text></g><g><title>new_sync_read (7,500 samples, 3.34%)</title><rect x="92.5928%" y="789" width="3.3392%" height="15" fill="rgb(206,188,39)" fg:x="207969" fg:w="7500"/><text x="92.8428%" y="799.50">new..</text></g><g><title>iov_iter_init (52 samples, 0.02%)</title><rect x="95.9088%" y="773" width="0.0232%" height="15" fill="rgb(227,118,25)" fg:x="215417" fg:w="52"/><text x="96.1588%" y="783.50"></text></g><g><title>rw_verify_area (93 samples, 0.04%)</title><rect x="95.9320%" y="789" width="0.0414%" height="15" fill="rgb(248,171,40)" fg:x="215469" fg:w="93"/><text x="96.1820%" y="799.50"></text></g><g><title>security_file_permission (431 samples, 0.19%)</title><rect x="95.9734%" y="789" width="0.1919%" height="15" fill="rgb(251,90,54)" fg:x="215562" fg:w="431"/><text x="96.2234%" y="799.50"></text></g><g><title>apparmor_file_permission (291 samples, 0.13%)</title><rect x="96.0357%" y="773" width="0.1296%" height="15" fill="rgb(234,11,46)" fg:x="215702" fg:w="291"/><text x="96.2857%" y="783.50"></text></g><g><title>aa_file_perm (161 samples, 0.07%)</title><rect x="96.0936%" y="757" width="0.0717%" height="15" fill="rgb(229,134,13)" fg:x="215832" fg:w="161"/><text x="96.3436%" y="767.50"></text></g><g><title>ksys_read (11,079 samples, 4.93%)</title><rect x="91.2331%" y="821" width="4.9326%" height="15" fill="rgb(223,129,3)" fg:x="204915" fg:w="11079"/><text x="91.4831%" y="831.50">ksys_r..</text></g><g><title>vfs_read (9,021 samples, 4.02%)</title><rect x="92.1494%" y="805" width="4.0164%" height="15" fill="rgb(221,124,13)" fg:x="206973" fg:w="9021"/><text x="92.3994%" y="815.50">vfs_..</text></g><g><title>syscall_enter_from_user_mode (118 samples, 0.05%)</title><rect x="96.1688%" y="821" width="0.0525%" height="15" fill="rgb(234,3,18)" fg:x="216001" fg:w="118"/><text x="96.4188%" y="831.50"></text></g><g><title>get_unmapped_area (27 samples, 0.01%)</title><rect x="96.2245%" y="789" width="0.0120%" height="15" fill="rgb(249,199,20)" fg:x="216126" fg:w="27"/><text x="96.4745%" y="799.50"></text></g><g><title>arch_get_unmapped_area_topdown (27 samples, 0.01%)</title><rect x="96.2245%" y="773" width="0.0120%" height="15" fill="rgb(224,134,6)" fg:x="216126" fg:w="27"/><text x="96.4745%" y="783.50"></text></g><g><title>perf_iterate_sb (61 samples, 0.03%)</title><rect x="96.2441%" y="757" width="0.0272%" height="15" fill="rgb(254,83,26)" fg:x="216170" fg:w="61"/><text x="96.4941%" y="767.50"></text></g><g><title>perf_iterate_ctx (51 samples, 0.02%)</title><rect x="96.2485%" y="741" width="0.0227%" height="15" fill="rgb(217,88,9)" fg:x="216180" fg:w="51"/><text x="96.4985%" y="751.50"></text></g><g><title>perf_event_mmap_output (31 samples, 0.01%)</title><rect x="96.2574%" y="725" width="0.0138%" height="15" fill="rgb(225,73,2)" fg:x="216200" fg:w="31"/><text x="96.5074%" y="735.50"></text></g><g><title>perf_event_mmap (68 samples, 0.03%)</title><rect x="96.2414%" y="773" width="0.0303%" height="15" fill="rgb(226,44,39)" fg:x="216164" fg:w="68"/><text x="96.4914%" y="783.50"></text></g><g><title>__vma_adjust (33 samples, 0.01%)</title><rect x="96.2775%" y="757" width="0.0147%" height="15" fill="rgb(228,53,17)" fg:x="216245" fg:w="33"/><text x="96.5275%" y="767.50"></text></g><g><title>vma_merge (40 samples, 0.02%)</title><rect x="96.2770%" y="773" width="0.0178%" height="15" fill="rgb(212,27,27)" fg:x="216244" fg:w="40"/><text x="96.5270%" y="783.50"></text></g><g><title>do_mmap (169 samples, 0.08%)</title><rect x="96.2218%" y="805" width="0.0752%" height="15" fill="rgb(241,50,6)" fg:x="216120" fg:w="169"/><text x="96.4718%" y="815.50"></text></g><g><title>mmap_region (136 samples, 0.06%)</title><rect x="96.2365%" y="789" width="0.0606%" height="15" fill="rgb(225,28,51)" fg:x="216153" fg:w="136"/><text x="96.4865%" y="799.50"></text></g><g><title>do_syscall_64 (33,335 samples, 14.84%)</title><rect x="81.4644%" y="837" width="14.8415%" height="15" fill="rgb(215,33,16)" fg:x="182974" fg:w="33335"/><text x="81.7144%" y="847.50">do_syscall_64</text></g><g><title>vm_mmap_pgoff (190 samples, 0.08%)</title><rect x="96.2214%" y="821" width="0.0846%" height="15" fill="rgb(243,40,39)" fg:x="216119" fg:w="190"/><text x="96.4714%" y="831.50"></text></g><g><title>_raw_spin_lock_irq (31 samples, 0.01%)</title><rect x="96.4453%" y="773" width="0.0138%" height="15" fill="rgb(225,11,42)" fg:x="216622" fg:w="31"/><text x="96.6953%" y="783.50"></text></g><g><title>native_queued_spin_lock_slowpath (27 samples, 0.01%)</title><rect x="96.4471%" y="757" width="0.0120%" height="15" fill="rgb(241,220,38)" fg:x="216626" fg:w="27"/><text x="96.6971%" y="767.50"></text></g><g><title>mm_release (28 samples, 0.01%)</title><rect x="96.4743%" y="741" width="0.0125%" height="15" fill="rgb(244,52,35)" fg:x="216687" fg:w="28"/><text x="96.7243%" y="751.50"></text></g><g><title>do_group_exit (92 samples, 0.04%)</title><rect x="96.4591%" y="773" width="0.0410%" height="15" fill="rgb(246,42,46)" fg:x="216653" fg:w="92"/><text x="96.7091%" y="783.50"></text></g><g><title>do_exit (91 samples, 0.04%)</title><rect x="96.4596%" y="757" width="0.0405%" height="15" fill="rgb(205,184,13)" fg:x="216654" fg:w="91"/><text x="96.7096%" y="767.50"></text></g><g><title>taskstats_exit (28 samples, 0.01%)</title><rect x="96.4876%" y="741" width="0.0125%" height="15" fill="rgb(209,48,36)" fg:x="216717" fg:w="28"/><text x="96.7376%" y="751.50"></text></g><g><title>arch_do_signal (129 samples, 0.06%)</title><rect x="96.4431%" y="805" width="0.0574%" height="15" fill="rgb(244,34,51)" fg:x="216617" fg:w="129"/><text x="96.6931%" y="815.50"></text></g><g><title>get_signal (129 samples, 0.06%)</title><rect x="96.4431%" y="789" width="0.0574%" height="15" fill="rgb(221,107,33)" fg:x="216617" fg:w="129"/><text x="96.6931%" y="799.50"></text></g><g><title>blkcg_maybe_throttle_current (30 samples, 0.01%)</title><rect x="96.5005%" y="805" width="0.0134%" height="15" fill="rgb(224,203,12)" fg:x="216746" fg:w="30"/><text x="96.7505%" y="815.50"></text></g><g><title>fpregs_assert_state_consistent (112 samples, 0.05%)</title><rect x="96.5139%" y="805" width="0.0499%" height="15" fill="rgb(230,215,18)" fg:x="216776" fg:w="112"/><text x="96.7639%" y="815.50"></text></g><g><title>schedule (25 samples, 0.01%)</title><rect x="96.5709%" y="805" width="0.0111%" height="15" fill="rgb(206,185,35)" fg:x="216904" fg:w="25"/><text x="96.8209%" y="815.50"></text></g><g><title>__schedule (25 samples, 0.01%)</title><rect x="96.5709%" y="789" width="0.0111%" height="15" fill="rgb(228,140,34)" fg:x="216904" fg:w="25"/><text x="96.8209%" y="799.50"></text></g><g><title>finish_task_switch (23 samples, 0.01%)</title><rect x="96.5718%" y="773" width="0.0102%" height="15" fill="rgb(208,93,13)" fg:x="216906" fg:w="23"/><text x="96.8218%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (23 samples, 0.01%)</title><rect x="96.5718%" y="757" width="0.0102%" height="15" fill="rgb(221,193,39)" fg:x="216906" fg:w="23"/><text x="96.8218%" y="767.50"></text></g><g><title>switch_fpu_return (126 samples, 0.06%)</title><rect x="96.5820%" y="805" width="0.0561%" height="15" fill="rgb(241,132,34)" fg:x="216929" fg:w="126"/><text x="96.8320%" y="815.50"></text></g><g><title>copy_kernel_to_fpregs (88 samples, 0.04%)</title><rect x="96.5989%" y="789" width="0.0392%" height="15" fill="rgb(221,141,10)" fg:x="216967" fg:w="88"/><text x="96.8489%" y="799.50"></text></g><g><title>__fsnotify_parent (29 samples, 0.01%)</title><rect x="96.7160%" y="773" width="0.0129%" height="15" fill="rgb(226,90,31)" fg:x="217230" fg:w="29"/><text x="96.9660%" y="783.50"></text></g><g><title>btrfs_release_file (123 samples, 0.05%)</title><rect x="96.7312%" y="773" width="0.0548%" height="15" fill="rgb(243,75,5)" fg:x="217264" fg:w="123"/><text x="96.9812%" y="783.50"></text></g><g><title>lockref_put_or_lock (79 samples, 0.04%)</title><rect x="96.8095%" y="757" width="0.0352%" height="15" fill="rgb(227,156,21)" fg:x="217440" fg:w="79"/><text x="97.0595%" y="767.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.03%)</title><rect x="96.8193%" y="741" width="0.0254%" height="15" fill="rgb(250,195,8)" fg:x="217462" fg:w="57"/><text x="97.0693%" y="751.50"></text></g><g><title>dput (134 samples, 0.06%)</title><rect x="96.7859%" y="773" width="0.0597%" height="15" fill="rgb(220,134,5)" fg:x="217387" fg:w="134"/><text x="97.0359%" y="783.50"></text></g><g><title>kmem_cache_free (122 samples, 0.05%)</title><rect x="96.8469%" y="773" width="0.0543%" height="15" fill="rgb(246,106,34)" fg:x="217524" fg:w="122"/><text x="97.0969%" y="783.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (32 samples, 0.01%)</title><rect x="96.8870%" y="757" width="0.0142%" height="15" fill="rgb(205,1,4)" fg:x="217614" fg:w="32"/><text x="97.1370%" y="767.50"></text></g><g><title>__fput (652 samples, 0.29%)</title><rect x="96.6684%" y="789" width="0.2903%" height="15" fill="rgb(224,151,29)" fg:x="217123" fg:w="652"/><text x="96.9184%" y="799.50"></text></g><g><title>security_file_free (68 samples, 0.03%)</title><rect x="96.9284%" y="773" width="0.0303%" height="15" fill="rgb(251,196,0)" fg:x="217707" fg:w="68"/><text x="97.1784%" y="783.50"></text></g><g><title>apparmor_file_free_security (55 samples, 0.02%)</title><rect x="96.9342%" y="757" width="0.0245%" height="15" fill="rgb(212,127,0)" fg:x="217720" fg:w="55"/><text x="97.1842%" y="767.50"></text></g><g><title>_raw_spin_lock_irq (40 samples, 0.02%)</title><rect x="96.9613%" y="789" width="0.0178%" height="15" fill="rgb(236,71,53)" fg:x="217781" fg:w="40"/><text x="97.2113%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35,370 samples, 15.75%)</title><rect x="81.3309%" y="853" width="15.7476%" height="15" fill="rgb(227,99,0)" fg:x="182674" fg:w="35370"/><text x="81.5809%" y="863.50">entry_SYSCALL_64_after_h..</text></g><g><title>syscall_exit_to_user_mode (1,735 samples, 0.77%)</title><rect x="96.3060%" y="837" width="0.7725%" height="15" fill="rgb(239,89,21)" fg:x="216309" fg:w="1735"/><text x="96.5560%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (1,631 samples, 0.73%)</title><rect x="96.3523%" y="821" width="0.7262%" height="15" fill="rgb(243,122,19)" fg:x="216413" fg:w="1631"/><text x="96.6023%" y="831.50"></text></g><g><title>task_work_run (989 samples, 0.44%)</title><rect x="96.6381%" y="805" width="0.4403%" height="15" fill="rgb(229,192,45)" fg:x="217055" fg:w="989"/><text x="96.8881%" y="815.50"></text></g><g><title>call_rcu (223 samples, 0.10%)</title><rect x="96.9792%" y="789" width="0.0993%" height="15" fill="rgb(235,165,35)" fg:x="217821" fg:w="223"/><text x="97.2292%" y="799.50"></text></g><g><title>rcu_segcblist_enqueue (149 samples, 0.07%)</title><rect x="97.0121%" y="773" width="0.0663%" height="15" fill="rgb(253,202,0)" fg:x="217895" fg:w="149"/><text x="97.2621%" y="783.50"></text></g><g><title>error_entry (236 samples, 0.11%)</title><rect x="97.0784%" y="853" width="0.1051%" height="15" fill="rgb(235,51,20)" fg:x="218044" fg:w="236"/><text x="97.3284%" y="863.50"></text></g><g><title>sync_regs (201 samples, 0.09%)</title><rect x="97.0940%" y="837" width="0.0895%" height="15" fill="rgb(218,95,46)" fg:x="218079" fg:w="201"/><text x="97.3440%" y="847.50"></text></g><g><title>calculate_sigpending (23 samples, 0.01%)</title><rect x="97.1978%" y="837" width="0.0102%" height="15" fill="rgb(212,81,10)" fg:x="218312" fg:w="23"/><text x="97.4478%" y="847.50"></text></g><g><title>__mmdrop (23 samples, 0.01%)</title><rect x="97.2997%" y="805" width="0.0102%" height="15" fill="rgb(240,59,0)" fg:x="218541" fg:w="23"/><text x="97.5497%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (3,754 samples, 1.67%)</title><rect x="97.3100%" y="805" width="1.6714%" height="15" fill="rgb(212,191,42)" fg:x="218564" fg:w="3754"/><text x="97.5600%" y="815.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,645 samples, 1.62%)</title><rect x="97.3585%" y="789" width="1.6228%" height="15" fill="rgb(233,140,3)" fg:x="218673" fg:w="3645"/><text x="97.6085%" y="799.50"></text></g><g><title>native_write_msr (3,632 samples, 1.62%)</title><rect x="97.3643%" y="773" width="1.6171%" height="15" fill="rgb(215,69,23)" fg:x="218686" fg:w="3632"/><text x="97.6143%" y="783.50"></text></g><g><title>__wake_up_common (25 samples, 0.01%)</title><rect x="99.0018%" y="645" width="0.0111%" height="15" fill="rgb(240,202,20)" fg:x="222364" fg:w="25"/><text x="99.2518%" y="655.50"></text></g><g><title>pollwake (24 samples, 0.01%)</title><rect x="99.0023%" y="629" width="0.0107%" height="15" fill="rgb(209,146,50)" fg:x="222365" fg:w="24"/><text x="99.2523%" y="639.50"></text></g><g><title>try_to_wake_up (23 samples, 0.01%)</title><rect x="99.0027%" y="613" width="0.0102%" height="15" fill="rgb(253,102,54)" fg:x="222366" fg:w="23"/><text x="99.2527%" y="623.50"></text></g><g><title>irq_work_run (33 samples, 0.01%)</title><rect x="98.9987%" y="741" width="0.0147%" height="15" fill="rgb(250,173,47)" fg:x="222357" fg:w="33"/><text x="99.2487%" y="751.50"></text></g><g><title>irq_work_run_list (33 samples, 0.01%)</title><rect x="98.9987%" y="725" width="0.0147%" height="15" fill="rgb(232,142,7)" fg:x="222357" fg:w="33"/><text x="99.2487%" y="735.50"></text></g><g><title>irq_work_single (32 samples, 0.01%)</title><rect x="98.9991%" y="709" width="0.0142%" height="15" fill="rgb(230,157,47)" fg:x="222358" fg:w="32"/><text x="99.2491%" y="719.50"></text></g><g><title>perf_pending_event (31 samples, 0.01%)</title><rect x="98.9996%" y="693" width="0.0138%" height="15" fill="rgb(214,177,35)" fg:x="222359" fg:w="31"/><text x="99.2496%" y="703.50"></text></g><g><title>perf_event_wakeup (28 samples, 0.01%)</title><rect x="99.0009%" y="677" width="0.0125%" height="15" fill="rgb(234,119,46)" fg:x="222362" fg:w="28"/><text x="99.2509%" y="687.50"></text></g><g><title>__wake_up_common_lock (28 samples, 0.01%)</title><rect x="99.0009%" y="661" width="0.0125%" height="15" fill="rgb(241,180,50)" fg:x="222362" fg:w="28"/><text x="99.2509%" y="671.50"></text></g><g><title>asm_sysvec_irq_work (71 samples, 0.03%)</title><rect x="98.9822%" y="805" width="0.0316%" height="15" fill="rgb(221,54,25)" fg:x="222320" fg:w="71"/><text x="99.2322%" y="815.50"></text></g><g><title>sysvec_irq_work (41 samples, 0.02%)</title><rect x="98.9956%" y="789" width="0.0183%" height="15" fill="rgb(209,157,44)" fg:x="222350" fg:w="41"/><text x="99.2456%" y="799.50"></text></g><g><title>asm_call_sysvec_on_stack (39 samples, 0.02%)</title><rect x="98.9965%" y="773" width="0.0174%" height="15" fill="rgb(246,115,41)" fg:x="222352" fg:w="39"/><text x="99.2465%" y="783.50"></text></g><g><title>__sysvec_irq_work (34 samples, 0.02%)</title><rect x="98.9987%" y="757" width="0.0151%" height="15" fill="rgb(229,86,1)" fg:x="222357" fg:w="34"/><text x="99.2487%" y="767.50"></text></g><g><title>schedule_tail (4,071 samples, 1.81%)</title><rect x="97.2080%" y="837" width="1.8125%" height="15" fill="rgb(240,108,53)" fg:x="218335" fg:w="4071"/><text x="97.4580%" y="847.50">s..</text></g><g><title>finish_task_switch (4,063 samples, 1.81%)</title><rect x="97.2116%" y="821" width="1.8089%" height="15" fill="rgb(227,134,2)" fg:x="218343" fg:w="4063"/><text x="97.4616%" y="831.50">f..</text></g><g><title>ret_from_fork (4,142 samples, 1.84%)</title><rect x="97.1978%" y="853" width="1.8441%" height="15" fill="rgb(213,129,25)" fg:x="218312" fg:w="4142"/><text x="97.4478%" y="863.50">r..</text></g><g><title>syscall_exit_to_user_mode (48 samples, 0.02%)</title><rect x="99.0205%" y="837" width="0.0214%" height="15" fill="rgb(226,35,21)" fg:x="222406" fg:w="48"/><text x="99.2705%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (46 samples, 0.02%)</title><rect x="99.0214%" y="821" width="0.0205%" height="15" fill="rgb(208,129,26)" fg:x="222408" fg:w="46"/><text x="99.2714%" y="831.50"></text></g><g><title>switch_fpu_return (43 samples, 0.02%)</title><rect x="99.0227%" y="805" width="0.0191%" height="15" fill="rgb(224,83,6)" fg:x="222411" fg:w="43"/><text x="99.2727%" y="815.50"></text></g><g><title>copy_kernel_to_fpregs (29 samples, 0.01%)</title><rect x="99.0290%" y="789" width="0.0129%" height="15" fill="rgb(227,52,39)" fg:x="222425" fg:w="29"/><text x="99.2790%" y="799.50"></text></g><g><title>syscall_return_via_sysret (280 samples, 0.12%)</title><rect x="99.0419%" y="853" width="0.1247%" height="15" fill="rgb(241,30,17)" fg:x="222454" fg:w="280"/><text x="99.2919%" y="863.50"></text></g><g><title>[zig] (68,247 samples, 30.39%)</title><rect x="68.7827%" y="869" width="30.3852%" height="15" fill="rgb(246,186,42)" fg:x="154490" fg:w="68247"/><text x="69.0327%" y="879.50">[zig]</text></g><g><title>asm_exc_page_fault (512 samples, 0.23%)</title><rect x="99.1692%" y="869" width="0.2280%" height="15" fill="rgb(221,169,15)" fg:x="222740" fg:w="512"/><text x="99.4192%" y="879.50"></text></g><g><title>tlb_finish_mmu (37 samples, 0.02%)</title><rect x="99.4706%" y="725" width="0.0165%" height="15" fill="rgb(235,108,21)" fg:x="223417" fg:w="37"/><text x="99.7206%" y="735.50"></text></g><g><title>release_pages (24 samples, 0.01%)</title><rect x="99.4764%" y="709" width="0.0107%" height="15" fill="rgb(219,148,30)" fg:x="223430" fg:w="24"/><text x="99.7264%" y="719.50"></text></g><g><title>page_remove_rmap (56 samples, 0.02%)</title><rect x="99.5325%" y="693" width="0.0249%" height="15" fill="rgb(220,109,5)" fg:x="223556" fg:w="56"/><text x="99.7825%" y="703.50"></text></g><g><title>unmap_page_range (168 samples, 0.07%)</title><rect x="99.4871%" y="709" width="0.0748%" height="15" fill="rgb(213,203,48)" fg:x="223454" fg:w="168"/><text x="99.7371%" y="719.50"></text></g><g><title>mmput (223 samples, 0.10%)</title><rect x="99.4631%" y="757" width="0.0993%" height="15" fill="rgb(244,71,33)" fg:x="223400" fg:w="223"/><text x="99.7131%" y="767.50"></text></g><g><title>exit_mmap (222 samples, 0.10%)</title><rect x="99.4635%" y="741" width="0.0988%" height="15" fill="rgb(209,23,2)" fg:x="223401" fg:w="222"/><text x="99.7135%" y="751.50"></text></g><g><title>unmap_vmas (169 samples, 0.08%)</title><rect x="99.4871%" y="725" width="0.0752%" height="15" fill="rgb(219,97,7)" fg:x="223454" fg:w="169"/><text x="99.7371%" y="735.50"></text></g><g><title>begin_new_exec (225 samples, 0.10%)</title><rect x="99.4626%" y="773" width="0.1002%" height="15" fill="rgb(216,161,23)" fg:x="223399" fg:w="225"/><text x="99.7126%" y="783.50"></text></g><g><title>__x64_sys_execve (250 samples, 0.11%)</title><rect x="99.4591%" y="837" width="0.1113%" height="15" fill="rgb(207,45,42)" fg:x="223391" fg:w="250"/><text x="99.7091%" y="847.50"></text></g><g><title>do_execveat_common (250 samples, 0.11%)</title><rect x="99.4591%" y="821" width="0.1113%" height="15" fill="rgb(241,61,4)" fg:x="223391" fg:w="250"/><text x="99.7091%" y="831.50"></text></g><g><title>bprm_execve (250 samples, 0.11%)</title><rect x="99.4591%" y="805" width="0.1113%" height="15" fill="rgb(236,170,1)" fg:x="223391" fg:w="250"/><text x="99.7091%" y="815.50"></text></g><g><title>load_elf_binary (250 samples, 0.11%)</title><rect x="99.4591%" y="789" width="0.1113%" height="15" fill="rgb(239,72,5)" fg:x="223391" fg:w="250"/><text x="99.7091%" y="799.50"></text></g><g><title>free_pages_and_swap_cache (27 samples, 0.01%)</title><rect x="99.5779%" y="741" width="0.0120%" height="15" fill="rgb(214,13,50)" fg:x="223658" fg:w="27"/><text x="99.8279%" y="751.50"></text></g><g><title>free_unref_page_list (25 samples, 0.01%)</title><rect x="99.5989%" y="725" width="0.0111%" height="15" fill="rgb(224,88,9)" fg:x="223705" fg:w="25"/><text x="99.8489%" y="735.50"></text></g><g><title>tlb_finish_mmu (74 samples, 0.03%)</title><rect x="99.5779%" y="757" width="0.0329%" height="15" fill="rgb(238,192,34)" fg:x="223658" fg:w="74"/><text x="99.8279%" y="767.50"></text></g><g><title>release_pages (47 samples, 0.02%)</title><rect x="99.5899%" y="741" width="0.0209%" height="15" fill="rgb(217,203,50)" fg:x="223685" fg:w="47"/><text x="99.8399%" y="751.50"></text></g><g><title>page_remove_rmap (78 samples, 0.03%)</title><rect x="99.6964%" y="725" width="0.0347%" height="15" fill="rgb(241,123,32)" fg:x="223924" fg:w="78"/><text x="99.9464%" y="735.50"></text></g><g><title>tlb_flush_mmu (29 samples, 0.01%)</title><rect x="99.7315%" y="725" width="0.0129%" height="15" fill="rgb(248,151,39)" fg:x="224003" fg:w="29"/><text x="99.9815%" y="735.50"></text></g><g><title>mmput (399 samples, 0.18%)</title><rect x="99.5757%" y="789" width="0.1776%" height="15" fill="rgb(208,89,6)" fg:x="223653" fg:w="399"/><text x="99.8257%" y="799.50"></text></g><g><title>exit_mmap (399 samples, 0.18%)</title><rect x="99.5757%" y="773" width="0.1776%" height="15" fill="rgb(254,43,26)" fg:x="223653" fg:w="399"/><text x="99.8257%" y="783.50"></text></g><g><title>unmap_vmas (320 samples, 0.14%)</title><rect x="99.6109%" y="757" width="0.1425%" height="15" fill="rgb(216,158,13)" fg:x="223732" fg:w="320"/><text x="99.8609%" y="767.50"></text></g><g><title>unmap_page_range (320 samples, 0.14%)</title><rect x="99.6109%" y="741" width="0.1425%" height="15" fill="rgb(212,47,37)" fg:x="223732" fg:w="320"/><text x="99.8609%" y="751.50"></text></g><g><title>__x64_sys_exit_group (410 samples, 0.18%)</title><rect x="99.5712%" y="837" width="0.1825%" height="15" fill="rgb(254,16,10)" fg:x="223643" fg:w="410"/><text x="99.8212%" y="847.50"></text></g><g><title>do_group_exit (410 samples, 0.18%)</title><rect x="99.5712%" y="821" width="0.1825%" height="15" fill="rgb(223,228,16)" fg:x="223643" fg:w="410"/><text x="99.8212%" y="831.50"></text></g><g><title>do_exit (410 samples, 0.18%)</title><rect x="99.5712%" y="805" width="0.1825%" height="15" fill="rgb(249,108,50)" fg:x="223643" fg:w="410"/><text x="99.8212%" y="815.50"></text></g><g><title>do_syscall_64 (674 samples, 0.30%)</title><rect x="99.4591%" y="853" width="0.3001%" height="15" fill="rgb(208,220,5)" fg:x="223391" fg:w="674"/><text x="99.7091%" y="863.50"></text></g><g><title>mm_update_next_owner (40 samples, 0.02%)</title><rect x="99.7627%" y="757" width="0.0178%" height="15" fill="rgb(217,89,48)" fg:x="224073" fg:w="40"/><text x="100.0127%" y="767.50"></text></g><g><title>tlb_finish_mmu (40 samples, 0.02%)</title><rect x="99.7827%" y="725" width="0.0178%" height="15" fill="rgb(212,113,41)" fg:x="224118" fg:w="40"/><text x="100.0327%" y="735.50"></text></g><g><title>release_pages (30 samples, 0.01%)</title><rect x="99.7872%" y="709" width="0.0134%" height="15" fill="rgb(231,127,5)" fg:x="224128" fg:w="30"/><text x="100.0372%" y="719.50"></text></g><g><title>__mod_memcg_lruvec_state (25 samples, 0.01%)</title><rect x="99.8642%" y="677" width="0.0111%" height="15" fill="rgb(217,141,17)" fg:x="224301" fg:w="25"/><text x="100.1142%" y="687.50"></text></g><g><title>page_remove_rmap (85 samples, 0.04%)</title><rect x="99.8397%" y="693" width="0.0378%" height="15" fill="rgb(245,125,54)" fg:x="224246" fg:w="85"/><text x="100.0897%" y="703.50"></text></g><g><title>exit_mmap (221 samples, 0.10%)</title><rect x="99.7814%" y="741" width="0.0984%" height="15" fill="rgb(248,125,3)" fg:x="224115" fg:w="221"/><text x="100.0314%" y="751.50"></text></g><g><title>unmap_vmas (178 samples, 0.08%)</title><rect x="99.8005%" y="725" width="0.0792%" height="15" fill="rgb(236,119,51)" fg:x="224158" fg:w="178"/><text x="100.0505%" y="735.50"></text></g><g><title>unmap_page_range (178 samples, 0.08%)</title><rect x="99.8005%" y="709" width="0.0792%" height="15" fill="rgb(239,99,8)" fg:x="224158" fg:w="178"/><text x="100.0505%" y="719.50"></text></g><g><title>mmput (224 samples, 0.10%)</title><rect x="99.7805%" y="757" width="0.0997%" height="15" fill="rgb(224,228,4)" fg:x="224113" fg:w="224"/><text x="100.0305%" y="767.50"></text></g><g><title>arch_do_signal (282 samples, 0.13%)</title><rect x="99.7591%" y="821" width="0.1256%" height="15" fill="rgb(220,131,45)" fg:x="224065" fg:w="282"/><text x="100.0091%" y="831.50"></text></g><g><title>get_signal (282 samples, 0.13%)</title><rect x="99.7591%" y="805" width="0.1256%" height="15" fill="rgb(215,62,5)" fg:x="224065" fg:w="282"/><text x="100.0091%" y="815.50"></text></g><g><title>do_group_exit (282 samples, 0.13%)</title><rect x="99.7591%" y="789" width="0.1256%" height="15" fill="rgb(253,12,24)" fg:x="224065" fg:w="282"/><text x="100.0091%" y="799.50"></text></g><g><title>do_exit (282 samples, 0.13%)</title><rect x="99.7591%" y="773" width="0.1256%" height="15" fill="rgb(248,120,50)" fg:x="224065" fg:w="282"/><text x="100.0091%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,096 samples, 0.49%)</title><rect x="99.3972%" y="869" width="0.4880%" height="15" fill="rgb(245,194,10)" fg:x="223252" fg:w="1096"/><text x="99.6472%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (283 samples, 0.13%)</title><rect x="99.7591%" y="853" width="0.1260%" height="15" fill="rgb(241,149,38)" fg:x="224065" fg:w="283"/><text x="100.0091%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (283 samples, 0.13%)</title><rect x="99.7591%" y="837" width="0.1260%" height="15" fill="rgb(219,215,7)" fg:x="224065" fg:w="283"/><text x="100.0091%" y="847.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (210 samples, 0.09%)</title><rect x="99.8851%" y="869" width="0.0935%" height="15" fill="rgb(208,120,31)" fg:x="224348" fg:w="210"/><text x="100.1351%" y="879.50"></text></g><g><title>syscall_return_via_sysret (38 samples, 0.02%)</title><rect x="99.9826%" y="869" width="0.0169%" height="15" fill="rgb(244,30,8)" fg:x="224567" fg:w="38"/><text x="100.2326%" y="879.50"></text></g><g><title>all (224,606 samples, 100%)</title><rect x="0.0000%" y="901" width="100.0000%" height="15" fill="rgb(238,35,44)" fg:x="0" fg:w="224606"/><text x="0.2500%" y="911.50"></text></g><g><title>zig (70,206 samples, 31.26%)</title><rect x="68.7426%" y="885" width="31.2574%" height="15" fill="rgb(243,218,37)" fg:x="154400" fg:w="70206"/><text x="68.9926%" y="895.50">zig</text></g></svg></svg> -\ No newline at end of file